
    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_5261a805cb3737dd9f8f3aed.woff2')format("woff");}.ff1_c00000{font-family:ff1_c00000;line-height:1.109863;font-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.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c00000{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb_c00000{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);}
.mc_c00000{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);}
.m9_c00000{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);}
.md_c00000{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c00000{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);}
.m8_c00000{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4_c00000{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mf_c00000{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m10_c00000{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);}
.m5_c00000{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m2_c00000{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.me_c00000{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m3_c00000{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.m7_c00000{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m6_c00000{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,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;}
.fs1_c00000{font-size:3.456000px;}
.fs9_c00000{font-size:6.000000px;}
.fs4_c00000{font-size:6.900000px;}
.fs7_c00000{font-size:10.380000px;}
.fs3_c00000{font-size:13.800000px;}
.fs2_c00000{font-size:17.280000px;}
.fs5_c00000{font-size:20.760000px;}
.fs8_c00000{font-size:24.180000px;}
.fs0_c00000{font-size:86.400000px;}
.fs6_c00000{font-size:100.200000px;}
.y0_c00000{bottom:0.000000px;}
.y10_c00000{bottom:98.490000px;}
.y12_c00000{bottom:99.360000px;}
.y11_c00000{bottom:100.230000px;}
.yf_c00000{bottom:105.405000px;}
.ya_c00000{bottom:135.645000px;}
.ye_c00000{bottom:137.370000px;}
.yd_c00000{bottom:143.430000px;}
.yc_c00000{bottom:151.200000px;}
.y9_c00000{bottom:152.925000px;}
.yb_c00000{bottom:156.390000px;}
.y6_c00000{bottom:170.205000px;}
.y7_c00000{bottom:171.930000px;}
.y8_c00000{bottom:172.800000px;}
.y4_c00000{bottom:495.930000px;}
.y5_c00000{bottom:496.800000px;}
.y3_c00000{bottom:933.120000px;}
.y1_c00000{bottom:1011.750000px;}
.y2_c00000{bottom:1015.200000px;}
.h3_c00000{height:3.110063px;}
.hb_c00000{height:5.399414px;}
.h6_c00000{height:6.209326px;}
.h9_c00000{height:9.340986px;}
.h5_c00000{height:12.418652px;}
.h4_c00000{height:15.550313px;}
.h7_c00000{height:18.681973px;}
.ha_c00000{height:21.759639px;}
.h2_c00000{height:77.751563px;}
.h8_c00000{height:90.170215px;}
.h1_c00000{height:1508.250000px;}
.h0_c00000{height:1508.550000px;}
.w0_c00000{width:334.365000px;}
.w1_c00000{width:334.500000px;}
.x0_c00000{left:0.000000px;}
.x3_c00000{left:106.275000px;}
.x4_c00000{left:108.000000px;}
.x5_c00000{left:120.090000px;}
.x9_c00000{left:152.070000px;}
.x6_c00000{left:168.480000px;}
.xe_c00000{left:172.800000px;}
.x7_c00000{left:181.440000px;}
.xf_c00000{left:185.760000px;}
.xa_c00000{left:196.995000px;}
.x10_c00000{left:217.725000px;}
.x11_c00000{left:231.555000px;}
.x8_c00000{left:242.790000px;}
.x12_c00000{left:247.965000px;}
.xc_c00000{left:256.605000px;}
.xb_c00000{left:259.200000px;}
.x1_c00000{left:266.115000px;}
.xd_c00000{left:267.840000px;}
.x2_c00000{left:304.125000px;}
@media print{
.v0_c00000{vertical-align:0.000000pt;}
.ls0_c00000{letter-spacing:0.000000pt;}
.ws0_c00000{word-spacing:0.000000pt;}
.fs1_c00000{font-size:3.072000pt;}
.fs9_c00000{font-size:5.333333pt;}
.fs4_c00000{font-size:6.133333pt;}
.fs7_c00000{font-size:9.226667pt;}
.fs3_c00000{font-size:12.266667pt;}
.fs2_c00000{font-size:15.360000pt;}
.fs5_c00000{font-size:18.453333pt;}
.fs8_c00000{font-size:21.493333pt;}
.fs0_c00000{font-size:76.800000pt;}
.fs6_c00000{font-size:89.066667pt;}
.y0_c00000{bottom:0.000000pt;}
.y10_c00000{bottom:87.546667pt;}
.y12_c00000{bottom:88.320000pt;}
.y11_c00000{bottom:89.093333pt;}
.yf_c00000{bottom:93.693333pt;}
.ya_c00000{bottom:120.573333pt;}
.ye_c00000{bottom:122.106667pt;}
.yd_c00000{bottom:127.493333pt;}
.yc_c00000{bottom:134.400000pt;}
.y9_c00000{bottom:135.933333pt;}
.yb_c00000{bottom:139.013333pt;}
.y6_c00000{bottom:151.293333pt;}
.y7_c00000{bottom:152.826667pt;}
.y8_c00000{bottom:153.600000pt;}
.y4_c00000{bottom:440.826667pt;}
.y5_c00000{bottom:441.600000pt;}
.y3_c00000{bottom:829.440000pt;}
.y1_c00000{bottom:899.333333pt;}
.y2_c00000{bottom:902.400000pt;}
.h3_c00000{height:2.764500pt;}
.hb_c00000{height:4.799479pt;}
.h6_c00000{height:5.519401pt;}
.h9_c00000{height:8.303099pt;}
.h5_c00000{height:11.038802pt;}
.h4_c00000{height:13.822500pt;}
.h7_c00000{height:16.606198pt;}
.ha_c00000{height:19.341901pt;}
.h2_c00000{height:69.112500pt;}
.h8_c00000{height:80.151302pt;}
.h1_c00000{height:1340.666667pt;}
.h0_c00000{height:1340.933333pt;}
.w0_c00000{width:297.213333pt;}
.w1_c00000{width:297.333333pt;}
.x0_c00000{left:0.000000pt;}
.x3_c00000{left:94.466667pt;}
.x4_c00000{left:96.000000pt;}
.x5_c00000{left:106.746667pt;}
.x9_c00000{left:135.173333pt;}
.x6_c00000{left:149.760000pt;}
.xe_c00000{left:153.600000pt;}
.x7_c00000{left:161.280000pt;}
.xf_c00000{left:165.120000pt;}
.xa_c00000{left:175.106667pt;}
.x10_c00000{left:193.533333pt;}
.x11_c00000{left:205.826667pt;}
.x8_c00000{left:215.813333pt;}
.x12_c00000{left:220.413333pt;}
.xc_c00000{left:228.093333pt;}
.xb_c00000{left:230.400000pt;}
.x1_c00000{left:236.546667pt;}
.xd_c00000{left:238.080000pt;}
.x2_c00000{left:270.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00001;src:url('chunks/assets/font_9dc38a62be80eae788d4ec79.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.109863;font-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_c00001{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);}
.v0_c00001{vertical-align:0.000000px;}
.ls0_c00001{letter-spacing:0.000000px;}
.sc__c00001{text-shadow:none;}
.sc0_c00001{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00001{-webkit-text-stroke:0px transparent;}
.sc0_c00001{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00001{word-spacing:0.000000px;}
.fc0_c00001{color:transparent;}
.fs0_c00001{font-size:600.000000px;}
.y0_c00001{bottom:0.000000px;}
.y1_c00001{bottom:15.000000px;}
.h2_c00001{height:539.941406px;}
.h0_c00001{height:1523.235000px;}
.h1_c00001{height:1523.250000px;}
.w1_c00001{width:1057.500000px;}
.w0_c00001{width:1057.530000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:15.000000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ws0_c00001{word-spacing:0.000000pt;}
.fs0_c00001{font-size:533.333333pt;}
.y0_c00001{bottom:0.000000pt;}
.y1_c00001{bottom:13.333333pt;}
.h2_c00001{height:479.947917pt;}
.h0_c00001{height:1353.986667pt;}
.h1_c00001{height:1354.000000pt;}
.w1_c00001{width:940.000000pt;}
.w0_c00001{width:940.026667pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00002;src:url('chunks/assets/font_683046e2b9006e3a411ad8bb.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:1.109863;font-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_c00002{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);}
.m0_c00002{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);}
.m3_c00002{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1_c00002{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.v0_c00002{vertical-align:0.000000px;}
.ls0_c00002{letter-spacing:0.000000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:0.000000px;}
.fc0_c00002{color:transparent;}
.fs1_c00002{font-size:10.380000px;}
.fs2_c00002{font-size:31.080000px;}
.fs3_c00002{font-size:34.560000px;}
.fs0_c00002{font-size:352.500000px;}
.y0_c00002{bottom:0.000000px;}
.y4_c00002{bottom:484.710000px;}
.y2_c00002{bottom:747.360000px;}
.y3_c00002{bottom:749.085000px;}
.y1_c00002{bottom:1044.570000px;}
.h3_c00002{height:9.340986px;}
.h4_c00002{height:27.968965px;}
.h5_c00002{height:31.100625px;}
.h2_c00002{height:317.215576px;}
.h0_c00002{height:1521.510000px;}
.h1_c00002{height:1521.750000px;}
.w1_c00002{width:1057.500000px;}
.w0_c00002{width:1057.530000px;}
.x0_c00002{left:0.000000px;}
.x4_c00002{left:216.870000px;}
.x1_c00002{left:667.005000px;}
.x2_c00002{left:849.315000px;}
.x3_c00002{left:862.275000px;}
@media print{
.v0_c00002{vertical-align:0.000000pt;}
.ls0_c00002{letter-spacing:0.000000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.fs1_c00002{font-size:9.226667pt;}
.fs2_c00002{font-size:27.626667pt;}
.fs3_c00002{font-size:30.720000pt;}
.fs0_c00002{font-size:313.333333pt;}
.y0_c00002{bottom:0.000000pt;}
.y4_c00002{bottom:430.853333pt;}
.y2_c00002{bottom:664.320000pt;}
.y3_c00002{bottom:665.853333pt;}
.y1_c00002{bottom:928.506667pt;}
.h3_c00002{height:8.303099pt;}
.h4_c00002{height:24.861302pt;}
.h5_c00002{height:27.645000pt;}
.h2_c00002{height:281.969401pt;}
.h0_c00002{height:1352.453333pt;}
.h1_c00002{height:1352.666667pt;}
.w1_c00002{width:940.000000pt;}
.w0_c00002{width:940.026667pt;}
.x0_c00002{left:0.000000pt;}
.x4_c00002{left:192.773333pt;}
.x1_c00002{left:592.893333pt;}
.x2_c00002{left:754.946667pt;}
.x3_c00002{left:766.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_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;}
@font-face{font-family:ff1_c00003;src:url('chunks/assets/font_1d4aa8b6904f390cda50d849.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:1.109863;font-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_c00003{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00003{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m3_c00003{transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);}
.m2_c00003{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_c00003{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);}
.m1_c00003{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c00003{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m9_c00003{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m8_c00003{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m0_c00003{transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);}
.v0_c00003{vertical-align:0.000000px;}
.ls0_c00003{letter-spacing:0.000000px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:0.000000px;}
.fc0_c00003{color:transparent;}
.fs5_c00003{font-size:3.456000px;}
.fs7_c00003{font-size:6.000000px;}
.fs1_c00003{font-size:17.280000px;}
.fs8_c00003{font-size:24.180000px;}
.fs2_c00003{font-size:34.560000px;}
.fs6_c00003{font-size:38.040000px;}
.fs0_c00003{font-size:51.840000px;}
.fs4_c00003{font-size:79.500000px;}
.fs3_c00003{font-size:172.800000px;}
.y0_c00003{bottom:0.000000px;}
.yc_c00003{bottom:1022.115000px;}
.y7_c00003{bottom:1033.350000px;}
.y9_c00003{bottom:1034.205000px;}
.yb_c00003{bottom:1044.570000px;}
.ya_c00003{bottom:1048.890000px;}
.y5_c00003{bottom:1070.490000px;}
.y6_c00003{bottom:1082.595000px;}
.y8_c00003{bottom:1085.190000px;}
.y4_c00003{bottom:1101.600000px;}
.y3_c00003{bottom:1105.920000px;}
.y2_c00003{bottom:1123.200000px;}
.y1_c00003{bottom:1129.245000px;}
.h7_c00003{height:3.110063px;}
.h9_c00003{height:5.399414px;}
.h3_c00003{height:15.550313px;}
.ha_c00003{height:21.759639px;}
.h4_c00003{height:31.100625px;}
.h8_c00003{height:34.232285px;}
.h2_c00003{height:46.650937px;}
.h6_c00003{height:71.542236px;}
.h5_c00003{height:155.503125px;}
.h0_c00003{height:1505.955000px;}
.h1_c00003{height:1506.000000px;}
.w1_c00003{width:1086.750000px;}
.w0_c00003{width:1086.915000px;}
.x0_c00003{left:0.000000px;}
.x8_c00003{left:354.240000px;}
.x4_c00003{left:361.155000px;}
.xa_c00003{left:645.405000px;}
.xb_c00003{left:648.000000px;}
.x1_c00003{left:762.045000px;}
.x9_c00003{left:772.410000px;}
.x2_c00003{left:781.050000px;}
.x3_c00003{left:785.370000px;}
.x5_c00003{left:800.070000px;}
.x7_c00003{left:818.205000px;}
.x6_c00003{left:821.670000px;}
.xc_c00003{left:824.250000px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls0_c00003{letter-spacing:0.000000pt;}
.ws0_c00003{word-spacing:0.000000pt;}
.fs5_c00003{font-size:3.072000pt;}
.fs7_c00003{font-size:5.333333pt;}
.fs1_c00003{font-size:15.360000pt;}
.fs8_c00003{font-size:21.493333pt;}
.fs2_c00003{font-size:30.720000pt;}
.fs6_c00003{font-size:33.813333pt;}
.fs0_c00003{font-size:46.080000pt;}
.fs4_c00003{font-size:70.666667pt;}
.fs3_c00003{font-size:153.600000pt;}
.y0_c00003{bottom:0.000000pt;}
.yc_c00003{bottom:908.546667pt;}
.y7_c00003{bottom:918.533333pt;}
.y9_c00003{bottom:919.293333pt;}
.yb_c00003{bottom:928.506667pt;}
.ya_c00003{bottom:932.346667pt;}
.y5_c00003{bottom:951.546667pt;}
.y6_c00003{bottom:962.306667pt;}
.y8_c00003{bottom:964.613333pt;}
.y4_c00003{bottom:979.200000pt;}
.y3_c00003{bottom:983.040000pt;}
.y2_c00003{bottom:998.400000pt;}
.y1_c00003{bottom:1003.773333pt;}
.h7_c00003{height:2.764500pt;}
.h9_c00003{height:4.799479pt;}
.h3_c00003{height:13.822500pt;}
.ha_c00003{height:19.341901pt;}
.h4_c00003{height:27.645000pt;}
.h8_c00003{height:30.428698pt;}
.h2_c00003{height:41.467500pt;}
.h6_c00003{height:63.593099pt;}
.h5_c00003{height:138.225000pt;}
.h0_c00003{height:1338.626667pt;}
.h1_c00003{height:1338.666667pt;}
.w1_c00003{width:966.000000pt;}
.w0_c00003{width:966.146667pt;}
.x0_c00003{left:0.000000pt;}
.x8_c00003{left:314.880000pt;}
.x4_c00003{left:321.026667pt;}
.xa_c00003{left:573.693333pt;}
.xb_c00003{left:576.000000pt;}
.x1_c00003{left:677.373333pt;}
.x9_c00003{left:686.586667pt;}
.x2_c00003{left:694.266667pt;}
.x3_c00003{left:698.106667pt;}
.x5_c00003{left:711.173333pt;}
.x7_c00003{left:727.293333pt;}
.x6_c00003{left:730.373333pt;}
.xc_c00003{left:732.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f8ce5c04a72cd82ed9bac7c0.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:1.109863;font-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_c00004{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);}
.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:600.000000px;}
.y0_c00004{bottom:0.000000px;}
.y1_c00004{bottom:15.000000px;}
.h2_c00004{height:539.941406px;}
.h0_c00004{height:1521.510000px;}
.h1_c00004{height:1521.750000px;}
.w1_c00004{width:1057.500000px;}
.w0_c00004{width:1057.530000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:15.000000px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ws0_c00004{word-spacing:0.000000pt;}
.fs0_c00004{font-size:533.333333pt;}
.y0_c00004{bottom:0.000000pt;}
.y1_c00004{bottom:13.333333pt;}
.h2_c00004{height:479.947917pt;}
.h0_c00004{height:1352.453333pt;}
.h1_c00004{height:1352.666667pt;}
.w1_c00004{width:940.000000pt;}
.w0_c00004{width:940.026667pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f6757d11d046456d91cc293.woff2')format("woff");}.ff1_c00005{font-family:ff1_c00005;line-height:1.109863;font-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_c00005{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m46_c00005{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);}
.m50_c00005{transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);}
.m52_c00005{transform:matrix(0.074975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074975,0.000000,0.000000,0.250000,0,0);}
.m10_c00005{transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);}
.m4d_c00005{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);}
.m36_c00005{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);}
.m2f_c00005{transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);}
.m43_c00005{transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);}
.m17_c00005{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m20_c00005{transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);}
.m30_c00005{transform:matrix(0.141525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141525,0.000000,0.000000,0.250000,0,0);}
.m11_c00005{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00005{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.m49_c00005{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);}
.m4b_c00005{transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);}
.m3c_c00005{transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);}
.m41_c00005{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m44_c00005{transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);}
.m42_c00005{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m3f_c00005{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);}
.m18_c00005{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.m2e_c00005{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m15_c00005{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m31_c00005{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00005{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);}
.m39_c00005{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);}
.m2d_c00005{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m21_c00005{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);}
.m22_c00005{transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);}
.m4_c00005{transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);}
.m33_c00005{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);}
.m2c_c00005{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.ma_c00005{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);}
.m6_c00005{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00005{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);}
.m5_c00005{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);}
.mb_c00005{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00005{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m54_c00005{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00005{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00005{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);}
.m40_c00005{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00005{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00005{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);}
.m3b_c00005{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);}
.m8_c00005{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00005{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m32_c00005{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00005{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00005{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2b_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);}
.m4e_c00005{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00005{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);}
.m7_c00005{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00005{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00005{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);}
.m34_c00005{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m53_c00005{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1_c00005{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);}
.m1b_c00005{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00005{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m16_c00005{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m38_c00005{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m23_c00005{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);}
.m29_c00005{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00005{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00005{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);}
.m28_c00005{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.me_c00005{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m48_c00005{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m19_c00005{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.m0_c00005{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00005{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m37_c00005{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m35_c00005{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m47_c00005{transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);}
.m26_c00005{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);}
.m25_c00005{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m45_c00005{transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);}
.m51_c00005{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m55_c00005{transform:matrix(1.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.517500,0.000000,0.000000,0.250000,0,0);}
.m24_c00005{transform:matrix(1.862500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.862500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.862500,0.000000,0.000000,0.250000,0,0);}
.m13_c00005{transform:matrix(2.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.135000,0.000000,0.000000,0.250000,0,0);}
.m12_c00005{transform:matrix(2.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.175000,0.000000,0.000000,0.250000,0,0);}
.m27_c00005{transform:matrix(2.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.652500,0.000000,0.000000,0.250000,0,0);}
.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;}
.fc0_c00005{color:transparent;}
.fsc_c00005{font-size:3.456000px;}
.fsa_c00005{font-size:6.000000px;}
.fsb_c00005{font-size:6.900000px;}
.fs19_c00005{font-size:10.380000px;}
.fs11_c00005{font-size:13.800000px;}
.fs16_c00005{font-size:17.280000px;}
.fs3_c00005{font-size:20.760000px;}
.fs0_c00005{font-size:24.180000px;}
.fse_c00005{font-size:27.660000px;}
.fs9_c00005{font-size:34.560000px;}
.fs10_c00005{font-size:38.040000px;}
.fs17_c00005{font-size:41.460000px;}
.fsf_c00005{font-size:48.360000px;}
.fs18_c00005{font-size:51.840000px;}
.fsd_c00005{font-size:55.320000px;}
.fs1c_c00005{font-size:62.220000px;}
.fs20_c00005{font-size:69.120000px;}
.fs1a_c00005{font-size:72.600000px;}
.fs1_c00005{font-size:76.020000px;}
.fs21_c00005{font-size:79.500000px;}
.fs22_c00005{font-size:86.400000px;}
.fs23_c00005{font-size:93.300000px;}
.fs25_c00005{font-size:96.780000px;}
.fs12_c00005{font-size:100.200000px;}
.fs13_c00005{font-size:103.680000px;}
.fs14_c00005{font-size:107.160000px;}
.fs2_c00005{font-size:114.060000px;}
.fs29_c00005{font-size:117.480000px;}
.fs26_c00005{font-size:120.960000px;}
.fs15_c00005{font-size:124.440000px;}
.fs27_c00005{font-size:127.860000px;}
.fs24_c00005{font-size:131.340000px;}
.fs1b_c00005{font-size:138.240000px;}
.fs1f_c00005{font-size:152.040000px;}
.fs28_c00005{font-size:155.520000px;}
.fs7_c00005{font-size:165.900000px;}
.fs5_c00005{font-size:169.320000px;}
.fs4_c00005{font-size:172.800000px;}
.fs6_c00005{font-size:176.280000px;}
.fs8_c00005{font-size:179.700000px;}
.fs1e_c00005{font-size:214.260000px;}
.fs1d_c00005{font-size:259.200000px;}
.y0_c00005{bottom:0.000000px;}
.y5a_c00005{bottom:752.550000px;}
.y59_c00005{bottom:756.870000px;}
.y58_c00005{bottom:773.280000px;}
.y56_c00005{bottom:807.840000px;}
.y57_c00005{bottom:809.565000px;}
.y52_c00005{bottom:810.435000px;}
.y55_c00005{bottom:811.290000px;}
.y53_c00005{bottom:812.160000px;}
.y54_c00005{bottom:813.030000px;}
.y51_c00005{bottom:814.755000px;}
.y50_c00005{bottom:817.350000px;}
.y4f_c00005{bottom:819.075000px;}
.y4d_c00005{bottom:819.930000px;}
.y4e_c00005{bottom:828.570000px;}
.y4b_c00005{bottom:833.760000px;}
.y4a_c00005{bottom:834.630000px;}
.y49_c00005{bottom:837.210000px;}
.y48_c00005{bottom:842.400000px;}
.y4c_c00005{bottom:844.125000px;}
.y46_c00005{bottom:850.170000px;}
.y47_c00005{bottom:852.765000px;}
.y43_c00005{bottom:871.770000px;}
.y41_c00005{bottom:876.960000px;}
.y44_c00005{bottom:881.280000px;}
.y45_c00005{bottom:883.005000px;}
.y3e_c00005{bottom:883.875000px;}
.y42_c00005{bottom:885.600000px;}
.y40_c00005{bottom:889.050000px;}
.y3c_c00005{bottom:889.920000px;}
.y3f_c00005{bottom:891.645000px;}
.y3d_c00005{bottom:893.370000px;}
.y3a_c00005{bottom:903.750000px;}
.y36_c00005{bottom:904.605000px;}
.y38_c00005{bottom:905.475000px;}
.y39_c00005{bottom:907.200000px;}
.y37_c00005{bottom:908.925000px;}
.y3b_c00005{bottom:913.245000px;}
.y34_c00005{bottom:921.030000px;}
.y33_c00005{bottom:927.075000px;}
.y32_c00005{bottom:936.570000px;}
.y2e_c00005{bottom:939.165000px;}
.y2f_c00005{bottom:941.760000px;}
.y2d_c00005{bottom:952.125000px;}
.y30_c00005{bottom:959.910000px;}
.y31_c00005{bottom:977.190000px;}
.y35_c00005{bottom:978.045000px;}
.y2c_c00005{bottom:983.235000px;}
.y2a_c00005{bottom:984.960000px;}
.y2b_c00005{bottom:985.830000px;}
.y29_c00005{bottom:987.555000px;}
.y28_c00005{bottom:991.875000px;}
.y27_c00005{bottom:992.730000px;}
.y25_c00005{bottom:997.050000px;}
.y24_c00005{bottom:997.920000px;}
.y23_c00005{bottom:1000.515000px;}
.y22_c00005{bottom:1001.370000px;}
.y21_c00005{bottom:1002.240000px;}
.y20_c00005{bottom:1003.965000px;}
.y1f_c00005{bottom:1005.690000px;}
.y1e_c00005{bottom:1007.430000px;}
.y1c_c00005{bottom:1010.880000px;}
.y1b_c00005{bottom:1015.200000px;}
.y26_c00005{bottom:1018.650000px;}
.y1d_c00005{bottom:1019.520000px;}
.y1_c00005{bottom:1025.565000px;}
.y1a_c00005{bottom:1030.755000px;}
.y18_c00005{bottom:1031.610000px;}
.y19_c00005{bottom:1033.350000px;}
.y15_c00005{bottom:1034.205000px;}
.y13_c00005{bottom:1037.670000px;}
.y14_c00005{bottom:1038.525000px;}
.y11_c00005{bottom:1039.395000px;}
.y12_c00005{bottom:1040.250000px;}
.yf_c00005{bottom:1041.990000px;}
.ye_c00005{bottom:1042.845000px;}
.y17_c00005{bottom:1043.715000px;}
.yd_c00005{bottom:1045.440000px;}
.y16_c00005{bottom:1046.310000px;}
.yc_c00005{bottom:1048.035000px;}
.yb_c00005{bottom:1048.890000px;}
.ya_c00005{bottom:1049.760000px;}
.y9_c00005{bottom:1050.630000px;}
.y8_c00005{bottom:1051.485000px;}
.y7_c00005{bottom:1052.355000px;}
.y6_c00005{bottom:1053.210000px;}
.y10_c00005{bottom:1067.040000px;}
.y3_c00005{bottom:1093.830000px;}
.y5_c00005{bottom:1094.685000px;}
.y2_c00005{bottom:1095.555000px;}
.y4_c00005{bottom:1097.280000px;}
.he_c00005{height:3.110063px;}
.hc_c00005{height:5.399414px;}
.hd_c00005{height:6.209326px;}
.h1b_c00005{height:9.340986px;}
.h13_c00005{height:12.418652px;}
.h18_c00005{height:15.550313px;}
.h5_c00005{height:18.681973px;}
.h2_c00005{height:21.759639px;}
.h10_c00005{height:24.891299px;}
.hb_c00005{height:31.100625px;}
.h12_c00005{height:34.232285px;}
.h19_c00005{height:37.309951px;}
.h11_c00005{height:43.519277px;}
.h1a_c00005{height:46.650937px;}
.hf_c00005{height:49.782598px;}
.h1e_c00005{height:55.991924px;}
.h22_c00005{height:62.201250px;}
.h1c_c00005{height:65.332910px;}
.h3_c00005{height:68.410576px;}
.h23_c00005{height:71.542236px;}
.h24_c00005{height:77.751563px;}
.h25_c00005{height:83.960889px;}
.h27_c00005{height:87.092549px;}
.h14_c00005{height:90.170215px;}
.h15_c00005{height:93.301875px;}
.h16_c00005{height:96.433535px;}
.h4_c00005{height:102.642861px;}
.h2b_c00005{height:105.720527px;}
.h28_c00005{height:108.852188px;}
.h17_c00005{height:111.983848px;}
.h29_c00005{height:115.061514px;}
.h26_c00005{height:118.193174px;}
.h1d_c00005{height:124.402500px;}
.h21_c00005{height:136.821152px;}
.h2a_c00005{height:139.952812px;}
.h9_c00005{height:149.293799px;}
.h7_c00005{height:152.371465px;}
.h6_c00005{height:155.503125px;}
.h8_c00005{height:158.634785px;}
.ha_c00005{height:161.712451px;}
.h20_c00005{height:192.813076px;}
.h1f_c00005{height:233.254688px;}
.h0_c00005{height:1505.955000px;}
.h1_c00005{height:1506.000000px;}
.w1_c00005{width:1071.000000px;}
.w0_c00005{width:1071.360000px;}
.x0_c00005{left:0.000000px;}
.x1_c00005{left:50.115000px;}
.x37_c00005{left:106.275000px;}
.x40_c00005{left:108.000000px;}
.x52_c00005{left:113.190000px;}
.x47_c00005{left:114.915000px;}
.x38_c00005{left:116.640000px;}
.x59_c00005{left:133.920000px;}
.x39_c00005{left:152.070000px;}
.x3a_c00005{left:173.670000px;}
.x2f_c00005{left:177.120000px;}
.x72_c00005{left:186.630000px;}
.x21_c00005{left:190.950000px;}
.x6_c00005{left:203.910000px;}
.x12_c00005{left:209.085000px;}
.x3b_c00005{left:211.680000px;}
.x3c_c00005{left:233.280000px;}
.x48_c00005{left:241.920000px;}
.x13_c00005{left:253.155000px;}
.x53_c00005{left:255.750000px;}
.x3d_c00005{left:258.330000px;}
.x22_c00005{left:261.795000px;}
.x49_c00005{left:266.115000px;}
.x5a_c00005{left:268.710000px;}
.x54_c00005{left:272.160000px;}
.x5b_c00005{left:284.250000px;}
.x23_c00005{left:292.890000px;}
.x5c_c00005{left:301.530000px;}
.x14_c00005{left:303.270000px;}
.x4a_c00005{left:306.720000px;}
.x5d_c00005{left:314.490000px;}
.x7_c00005{left:321.405000px;}
.x15_c00005{left:332.640000px;}
.x24_c00005{left:342.150000px;}
.x55_c00005{left:348.195000px;}
.x30_c00005{left:354.240000px;}
.x5e_c00005{left:356.835000px;}
.x25_c00005{left:365.475000px;}
.x8_c00005{left:367.200000px;}
.x5f_c00005{left:386.205000px;}
.x4b_c00005{left:392.250000px;}
.x60_c00005{left:393.990000px;}
.x41_c00005{left:404.355000px;}
.x9_c00005{left:406.950000px;}
.x61_c00005{left:413.850000px;}
.x62_c00005{left:423.360000px;}
.x26_c00005{left:432.000000px;}
.x4c_c00005{left:455.325000px;}
.xa_c00005{left:457.050000px;}
.x27_c00005{left:470.010000px;}
.x16_c00005{left:479.520000px;}
.x6e_c00005{left:486.435000px;}
.x56_c00005{left:495.075000px;}
.x3e_c00005{left:517.530000px;}
.x31_c00005{left:522.720000px;}
.x2_c00005{left:526.170000px;}
.x28_c00005{left:534.810000px;}
.x4d_c00005{left:550.365000px;}
.x17_c00005{left:557.280000px;}
.xb_c00005{left:559.005000px;}
.x18_c00005{left:561.600000px;}
.x6f_c00005{left:572.835000px;}
.x3_c00005{left:578.010000px;}
.x57_c00005{left:585.795000px;}
.x19_c00005{left:595.290000px;}
.x1a_c00005{left:604.800000px;}
.x29_c00005{left:606.525000px;}
.xc_c00005{left:617.760000px;}
.x32_c00005{left:641.955000px;}
.x2a_c00005{left:647.130000px;}
.x63_c00005{left:652.320000px;}
.x4e_c00005{left:660.960000px;}
.xd_c00005{left:667.875000px;}
.x70_c00005{left:673.920000px;}
.x2b_c00005{left:680.835000px;}
.x33_c00005{left:686.010000px;}
.x4_c00005{left:709.350000px;}
.x42_c00005{left:711.930000px;}
.xe_c00005{left:717.120000px;}
.x34_c00005{left:721.440000px;}
.x4f_c00005{left:725.760000px;}
.x5_c00005{left:729.210000px;}
.x43_c00005{left:756.870000px;}
.x35_c00005{left:760.320000px;}
.x2c_c00005{left:770.685000px;}
.x50_c00005{left:774.150000px;}
.x1b_c00005{left:779.325000px;}
.x64_c00005{left:782.790000px;}
.x1c_c00005{left:786.240000px;}
.x65_c00005{left:800.070000px;}
.x44_c00005{left:805.245000px;}
.x2d_c00005{left:810.435000px;}
.x66_c00005{left:820.800000px;}
.x58_c00005{left:826.845000px;}
.xf_c00005{left:828.570000px;}
.x45_c00005{left:833.760000px;}
.x67_c00005{left:837.210000px;}
.x36_c00005{left:846.720000px;}
.x68_c00005{left:860.550000px;}
.x69_c00005{left:870.045000px;}
.x1d_c00005{left:877.830000px;}
.x6a_c00005{left:880.410000px;}
.x6b_c00005{left:895.965000px;}
.x1e_c00005{left:902.880000px;}
.x6c_c00005{left:908.070000px;}
.x6d_c00005{left:915.840000px;}
.x10_c00005{left:920.160000px;}
.x46_c00005{left:925.350000px;}
.x71_c00005{left:933.990000px;}
.x3f_c00005{left:958.170000px;}
.x51_c00005{left:976.320000px;}
.x2e_c00005{left:979.770000px;}
.x1f_c00005{left:1010.010000px;}
.x11_c00005{left:1018.650000px;}
.x20_c00005{left:1022.115000px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls0_c00005{letter-spacing:0.000000pt;}
.ws0_c00005{word-spacing:0.000000pt;}
.fsc_c00005{font-size:3.072000pt;}
.fsa_c00005{font-size:5.333333pt;}
.fsb_c00005{font-size:6.133333pt;}
.fs19_c00005{font-size:9.226667pt;}
.fs11_c00005{font-size:12.266667pt;}
.fs16_c00005{font-size:15.360000pt;}
.fs3_c00005{font-size:18.453333pt;}
.fs0_c00005{font-size:21.493333pt;}
.fse_c00005{font-size:24.586667pt;}
.fs9_c00005{font-size:30.720000pt;}
.fs10_c00005{font-size:33.813333pt;}
.fs17_c00005{font-size:36.853333pt;}
.fsf_c00005{font-size:42.986667pt;}
.fs18_c00005{font-size:46.080000pt;}
.fsd_c00005{font-size:49.173333pt;}
.fs1c_c00005{font-size:55.306667pt;}
.fs20_c00005{font-size:61.440000pt;}
.fs1a_c00005{font-size:64.533333pt;}
.fs1_c00005{font-size:67.573333pt;}
.fs21_c00005{font-size:70.666667pt;}
.fs22_c00005{font-size:76.800000pt;}
.fs23_c00005{font-size:82.933333pt;}
.fs25_c00005{font-size:86.026667pt;}
.fs12_c00005{font-size:89.066667pt;}
.fs13_c00005{font-size:92.160000pt;}
.fs14_c00005{font-size:95.253333pt;}
.fs2_c00005{font-size:101.386667pt;}
.fs29_c00005{font-size:104.426667pt;}
.fs26_c00005{font-size:107.520000pt;}
.fs15_c00005{font-size:110.613333pt;}
.fs27_c00005{font-size:113.653333pt;}
.fs24_c00005{font-size:116.746667pt;}
.fs1b_c00005{font-size:122.880000pt;}
.fs1f_c00005{font-size:135.146667pt;}
.fs28_c00005{font-size:138.240000pt;}
.fs7_c00005{font-size:147.466667pt;}
.fs5_c00005{font-size:150.506667pt;}
.fs4_c00005{font-size:153.600000pt;}
.fs6_c00005{font-size:156.693333pt;}
.fs8_c00005{font-size:159.733333pt;}
.fs1e_c00005{font-size:190.453333pt;}
.fs1d_c00005{font-size:230.400000pt;}
.y0_c00005{bottom:0.000000pt;}
.y5a_c00005{bottom:668.933333pt;}
.y59_c00005{bottom:672.773333pt;}
.y58_c00005{bottom:687.360000pt;}
.y56_c00005{bottom:718.080000pt;}
.y57_c00005{bottom:719.613333pt;}
.y52_c00005{bottom:720.386667pt;}
.y55_c00005{bottom:721.146667pt;}
.y53_c00005{bottom:721.920000pt;}
.y54_c00005{bottom:722.693333pt;}
.y51_c00005{bottom:724.226667pt;}
.y50_c00005{bottom:726.533333pt;}
.y4f_c00005{bottom:728.066667pt;}
.y4d_c00005{bottom:728.826667pt;}
.y4e_c00005{bottom:736.506667pt;}
.y4b_c00005{bottom:741.120000pt;}
.y4a_c00005{bottom:741.893333pt;}
.y49_c00005{bottom:744.186667pt;}
.y48_c00005{bottom:748.800000pt;}
.y4c_c00005{bottom:750.333333pt;}
.y46_c00005{bottom:755.706667pt;}
.y47_c00005{bottom:758.013333pt;}
.y43_c00005{bottom:774.906667pt;}
.y41_c00005{bottom:779.520000pt;}
.y44_c00005{bottom:783.360000pt;}
.y45_c00005{bottom:784.893333pt;}
.y3e_c00005{bottom:785.666667pt;}
.y42_c00005{bottom:787.200000pt;}
.y40_c00005{bottom:790.266667pt;}
.y3c_c00005{bottom:791.040000pt;}
.y3f_c00005{bottom:792.573333pt;}
.y3d_c00005{bottom:794.106667pt;}
.y3a_c00005{bottom:803.333333pt;}
.y36_c00005{bottom:804.093333pt;}
.y38_c00005{bottom:804.866667pt;}
.y39_c00005{bottom:806.400000pt;}
.y37_c00005{bottom:807.933333pt;}
.y3b_c00005{bottom:811.773333pt;}
.y34_c00005{bottom:818.693333pt;}
.y33_c00005{bottom:824.066667pt;}
.y32_c00005{bottom:832.506667pt;}
.y2e_c00005{bottom:834.813333pt;}
.y2f_c00005{bottom:837.120000pt;}
.y2d_c00005{bottom:846.333333pt;}
.y30_c00005{bottom:853.253333pt;}
.y31_c00005{bottom:868.613333pt;}
.y35_c00005{bottom:869.373333pt;}
.y2c_c00005{bottom:873.986667pt;}
.y2a_c00005{bottom:875.520000pt;}
.y2b_c00005{bottom:876.293333pt;}
.y29_c00005{bottom:877.826667pt;}
.y28_c00005{bottom:881.666667pt;}
.y27_c00005{bottom:882.426667pt;}
.y25_c00005{bottom:886.266667pt;}
.y24_c00005{bottom:887.040000pt;}
.y23_c00005{bottom:889.346667pt;}
.y22_c00005{bottom:890.106667pt;}
.y21_c00005{bottom:890.880000pt;}
.y20_c00005{bottom:892.413333pt;}
.y1f_c00005{bottom:893.946667pt;}
.y1e_c00005{bottom:895.493333pt;}
.y1c_c00005{bottom:898.560000pt;}
.y1b_c00005{bottom:902.400000pt;}
.y26_c00005{bottom:905.466667pt;}
.y1d_c00005{bottom:906.240000pt;}
.y1_c00005{bottom:911.613333pt;}
.y1a_c00005{bottom:916.226667pt;}
.y18_c00005{bottom:916.986667pt;}
.y19_c00005{bottom:918.533333pt;}
.y15_c00005{bottom:919.293333pt;}
.y13_c00005{bottom:922.373333pt;}
.y14_c00005{bottom:923.133333pt;}
.y11_c00005{bottom:923.906667pt;}
.y12_c00005{bottom:924.666667pt;}
.yf_c00005{bottom:926.213333pt;}
.ye_c00005{bottom:926.973333pt;}
.y17_c00005{bottom:927.746667pt;}
.yd_c00005{bottom:929.280000pt;}
.y16_c00005{bottom:930.053333pt;}
.yc_c00005{bottom:931.586667pt;}
.yb_c00005{bottom:932.346667pt;}
.ya_c00005{bottom:933.120000pt;}
.y9_c00005{bottom:933.893333pt;}
.y8_c00005{bottom:934.653333pt;}
.y7_c00005{bottom:935.426667pt;}
.y6_c00005{bottom:936.186667pt;}
.y10_c00005{bottom:948.480000pt;}
.y3_c00005{bottom:972.293333pt;}
.y5_c00005{bottom:973.053333pt;}
.y2_c00005{bottom:973.826667pt;}
.y4_c00005{bottom:975.360000pt;}
.he_c00005{height:2.764500pt;}
.hc_c00005{height:4.799479pt;}
.hd_c00005{height:5.519401pt;}
.h1b_c00005{height:8.303099pt;}
.h13_c00005{height:11.038802pt;}
.h18_c00005{height:13.822500pt;}
.h5_c00005{height:16.606198pt;}
.h2_c00005{height:19.341901pt;}
.h10_c00005{height:22.125599pt;}
.hb_c00005{height:27.645000pt;}
.h12_c00005{height:30.428698pt;}
.h19_c00005{height:33.164401pt;}
.h11_c00005{height:38.683802pt;}
.h1a_c00005{height:41.467500pt;}
.hf_c00005{height:44.251198pt;}
.h1e_c00005{height:49.770599pt;}
.h22_c00005{height:55.290000pt;}
.h1c_c00005{height:58.073698pt;}
.h3_c00005{height:60.809401pt;}
.h23_c00005{height:63.593099pt;}
.h24_c00005{height:69.112500pt;}
.h25_c00005{height:74.631901pt;}
.h27_c00005{height:77.415599pt;}
.h14_c00005{height:80.151302pt;}
.h15_c00005{height:82.935000pt;}
.h16_c00005{height:85.718698pt;}
.h4_c00005{height:91.238099pt;}
.h2b_c00005{height:93.973802pt;}
.h28_c00005{height:96.757500pt;}
.h17_c00005{height:99.541198pt;}
.h29_c00005{height:102.276901pt;}
.h26_c00005{height:105.060599pt;}
.h1d_c00005{height:110.580000pt;}
.h21_c00005{height:121.618802pt;}
.h2a_c00005{height:124.402500pt;}
.h9_c00005{height:132.705599pt;}
.h7_c00005{height:135.441302pt;}
.h6_c00005{height:138.225000pt;}
.h8_c00005{height:141.008698pt;}
.ha_c00005{height:143.744401pt;}
.h20_c00005{height:171.389401pt;}
.h1f_c00005{height:207.337500pt;}
.h0_c00005{height:1338.626667pt;}
.h1_c00005{height:1338.666667pt;}
.w1_c00005{width:952.000000pt;}
.w0_c00005{width:952.320000pt;}
.x0_c00005{left:0.000000pt;}
.x1_c00005{left:44.546667pt;}
.x37_c00005{left:94.466667pt;}
.x40_c00005{left:96.000000pt;}
.x52_c00005{left:100.613333pt;}
.x47_c00005{left:102.146667pt;}
.x38_c00005{left:103.680000pt;}
.x59_c00005{left:119.040000pt;}
.x39_c00005{left:135.173333pt;}
.x3a_c00005{left:154.373333pt;}
.x2f_c00005{left:157.440000pt;}
.x72_c00005{left:165.893333pt;}
.x21_c00005{left:169.733333pt;}
.x6_c00005{left:181.253333pt;}
.x12_c00005{left:185.853333pt;}
.x3b_c00005{left:188.160000pt;}
.x3c_c00005{left:207.360000pt;}
.x48_c00005{left:215.040000pt;}
.x13_c00005{left:225.026667pt;}
.x53_c00005{left:227.333333pt;}
.x3d_c00005{left:229.626667pt;}
.x22_c00005{left:232.706667pt;}
.x49_c00005{left:236.546667pt;}
.x5a_c00005{left:238.853333pt;}
.x54_c00005{left:241.920000pt;}
.x5b_c00005{left:252.666667pt;}
.x23_c00005{left:260.346667pt;}
.x5c_c00005{left:268.026667pt;}
.x14_c00005{left:269.573333pt;}
.x4a_c00005{left:272.640000pt;}
.x5d_c00005{left:279.546667pt;}
.x7_c00005{left:285.693333pt;}
.x15_c00005{left:295.680000pt;}
.x24_c00005{left:304.133333pt;}
.x55_c00005{left:309.506667pt;}
.x30_c00005{left:314.880000pt;}
.x5e_c00005{left:317.186667pt;}
.x25_c00005{left:324.866667pt;}
.x8_c00005{left:326.400000pt;}
.x5f_c00005{left:343.293333pt;}
.x4b_c00005{left:348.666667pt;}
.x60_c00005{left:350.213333pt;}
.x41_c00005{left:359.426667pt;}
.x9_c00005{left:361.733333pt;}
.x61_c00005{left:367.866667pt;}
.x62_c00005{left:376.320000pt;}
.x26_c00005{left:384.000000pt;}
.x4c_c00005{left:404.733333pt;}
.xa_c00005{left:406.266667pt;}
.x27_c00005{left:417.786667pt;}
.x16_c00005{left:426.240000pt;}
.x6e_c00005{left:432.386667pt;}
.x56_c00005{left:440.066667pt;}
.x3e_c00005{left:460.026667pt;}
.x31_c00005{left:464.640000pt;}
.x2_c00005{left:467.706667pt;}
.x28_c00005{left:475.386667pt;}
.x4d_c00005{left:489.213333pt;}
.x17_c00005{left:495.360000pt;}
.xb_c00005{left:496.893333pt;}
.x18_c00005{left:499.200000pt;}
.x6f_c00005{left:509.186667pt;}
.x3_c00005{left:513.786667pt;}
.x57_c00005{left:520.706667pt;}
.x19_c00005{left:529.146667pt;}
.x1a_c00005{left:537.600000pt;}
.x29_c00005{left:539.133333pt;}
.xc_c00005{left:549.120000pt;}
.x32_c00005{left:570.626667pt;}
.x2a_c00005{left:575.226667pt;}
.x63_c00005{left:579.840000pt;}
.x4e_c00005{left:587.520000pt;}
.xd_c00005{left:593.666667pt;}
.x70_c00005{left:599.040000pt;}
.x2b_c00005{left:605.186667pt;}
.x33_c00005{left:609.786667pt;}
.x4_c00005{left:630.533333pt;}
.x42_c00005{left:632.826667pt;}
.xe_c00005{left:637.440000pt;}
.x34_c00005{left:641.280000pt;}
.x4f_c00005{left:645.120000pt;}
.x5_c00005{left:648.186667pt;}
.x43_c00005{left:672.773333pt;}
.x35_c00005{left:675.840000pt;}
.x2c_c00005{left:685.053333pt;}
.x50_c00005{left:688.133333pt;}
.x1b_c00005{left:692.733333pt;}
.x64_c00005{left:695.813333pt;}
.x1c_c00005{left:698.880000pt;}
.x65_c00005{left:711.173333pt;}
.x44_c00005{left:715.773333pt;}
.x2d_c00005{left:720.386667pt;}
.x66_c00005{left:729.600000pt;}
.x58_c00005{left:734.973333pt;}
.xf_c00005{left:736.506667pt;}
.x45_c00005{left:741.120000pt;}
.x67_c00005{left:744.186667pt;}
.x36_c00005{left:752.640000pt;}
.x68_c00005{left:764.933333pt;}
.x69_c00005{left:773.373333pt;}
.x1d_c00005{left:780.293333pt;}
.x6a_c00005{left:782.586667pt;}
.x6b_c00005{left:796.413333pt;}
.x1e_c00005{left:802.560000pt;}
.x6c_c00005{left:807.173333pt;}
.x6d_c00005{left:814.080000pt;}
.x10_c00005{left:817.920000pt;}
.x46_c00005{left:822.533333pt;}
.x71_c00005{left:830.213333pt;}
.x3f_c00005{left:851.706667pt;}
.x51_c00005{left:867.840000pt;}
.x2e_c00005{left:870.906667pt;}
.x1f_c00005{left:897.786667pt;}
.x11_c00005{left:905.466667pt;}
.x20_c00005{left:908.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00006;src:url('chunks/assets/font_c6327dc1a930105e9906e597.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.109863;font-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_c00006{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m9_c00006{transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);}
.m5_c00006{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00006{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m0_c00006{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6_c00006{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00006{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00006{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2_c00006{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4_c00006{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_c00006{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.v0_c00006{vertical-align:0.000000px;}
.ls0_c00006{letter-spacing:0.000000px;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:0.000000px;}
.fc0_c00006{color:transparent;}
.fs6_c00006{font-size:6.000000px;}
.fs3_c00006{font-size:10.380000px;}
.fs0_c00006{font-size:20.760000px;}
.fs5_c00006{font-size:24.180000px;}
.fs1_c00006{font-size:27.660000px;}
.fs2_c00006{font-size:34.560000px;}
.fs4_c00006{font-size:107.160000px;}
.y0_c00006{bottom:0.000000px;}
.yb_c00006{bottom:247.965000px;}
.yc_c00006{bottom:251.430000px;}
.y5_c00006{bottom:837.210000px;}
.y4_c00006{bottom:871.770000px;}
.ya_c00006{bottom:891.645000px;}
.y3_c00006{bottom:926.205000px;}
.y2_c00006{bottom:963.360000px;}
.y1_c00006{bottom:965.085000px;}
.y8_c00006{bottom:1298.595000px;}
.y9_c00006{bottom:1302.915000px;}
.y6_c00006{bottom:1373.760000px;}
.y7_c00006{bottom:1374.630000px;}
.h8_c00006{height:5.399414px;}
.h5_c00006{height:9.340986px;}
.h2_c00006{height:18.681973px;}
.h7_c00006{height:21.759639px;}
.h3_c00006{height:24.891299px;}
.h4_c00006{height:31.100625px;}
.h6_c00006{height:96.433535px;}
.h0_c00006{height:1521.510000px;}
.h1_c00006{height:1521.750000px;}
.w1_c00006{width:1057.500000px;}
.w0_c00006{width:1057.530000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:179.715000px;}
.x2_c00006{left:228.960000px;}
.x4_c00006{left:616.890000px;}
.x3_c00006{left:618.630000px;}
.x5_c00006{left:737.850000px;}
.x6_c00006{left:918.435000px;}
.x7_c00006{left:930.525000px;}
.xa_c00006{left:963.360000px;}
.x8_c00006{left:998.790000px;}
.xb_c00006{left:1003.965000px;}
.x9_c00006{left:1010.880000px;}
.xc_c00006{left:1019.520000px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ws0_c00006{word-spacing:0.000000pt;}
.fs6_c00006{font-size:5.333333pt;}
.fs3_c00006{font-size:9.226667pt;}
.fs0_c00006{font-size:18.453333pt;}
.fs5_c00006{font-size:21.493333pt;}
.fs1_c00006{font-size:24.586667pt;}
.fs2_c00006{font-size:30.720000pt;}
.fs4_c00006{font-size:95.253333pt;}
.y0_c00006{bottom:0.000000pt;}
.yb_c00006{bottom:220.413333pt;}
.yc_c00006{bottom:223.493333pt;}
.y5_c00006{bottom:744.186667pt;}
.y4_c00006{bottom:774.906667pt;}
.ya_c00006{bottom:792.573333pt;}
.y3_c00006{bottom:823.293333pt;}
.y2_c00006{bottom:856.320000pt;}
.y1_c00006{bottom:857.853333pt;}
.y8_c00006{bottom:1154.306667pt;}
.y9_c00006{bottom:1158.146667pt;}
.y6_c00006{bottom:1221.120000pt;}
.y7_c00006{bottom:1221.893333pt;}
.h8_c00006{height:4.799479pt;}
.h5_c00006{height:8.303099pt;}
.h2_c00006{height:16.606198pt;}
.h7_c00006{height:19.341901pt;}
.h3_c00006{height:22.125599pt;}
.h4_c00006{height:27.645000pt;}
.h6_c00006{height:85.718698pt;}
.h0_c00006{height:1352.453333pt;}
.h1_c00006{height:1352.666667pt;}
.w1_c00006{width:940.000000pt;}
.w0_c00006{width:940.026667pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:159.746667pt;}
.x2_c00006{left:203.520000pt;}
.x4_c00006{left:548.346667pt;}
.x3_c00006{left:549.893333pt;}
.x5_c00006{left:655.866667pt;}
.x6_c00006{left:816.386667pt;}
.x7_c00006{left:827.133333pt;}
.xa_c00006{left:856.320000pt;}
.x8_c00006{left:887.813333pt;}
.xb_c00006{left:892.413333pt;}
.x9_c00006{left:898.560000pt;}
.xc_c00006{left:906.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_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;}
@font-face{font-family:ff1_c00007;src:url('chunks/assets/font_6b1239037fa7622b8eb87fa1.woff2')format("woff");}.ff1_c00007{font-family:ff1_c00007;line-height:1.109863;font-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_c00007{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00007{transform:matrix(0.051050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051050,0.000000,0.000000,0.250000,0,0);}
.mb8_c00007{transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);}
.m165_c00007{transform:matrix(0.062650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062650,0.000000,0.000000,0.250000,0,0);}
.m15e_c00007{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);}
.m159_c00007{transform:matrix(0.076050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076050,0.000000,0.000000,0.250000,0,0);}
.m1e_c00007{transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);}
.m112_c00007{transform:matrix(0.079700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079700,0.000000,0.000000,0.250000,0,0);}
.m140_c00007{transform:matrix(0.091350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091350,0.000000,0.000000,0.250000,0,0);}
.m169_c00007{transform:matrix(0.091975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091975,0.000000,0.000000,0.250000,0,0);}
.m53_c00007{transform:matrix(0.095650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095650,0.000000,0.000000,0.250000,0,0);}
.m153_c00007{transform:matrix(0.102325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102325,0.000000,0.000000,0.250000,0,0);}
.mac_c00007{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.m154_c00007{transform:matrix(0.104925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104925,0.000000,0.000000,0.250000,0,0);}
.m152_c00007{transform:matrix(0.106650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106650,0.000000,0.000000,0.250000,0,0);}
.m11e_c00007{transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);}
.m13c_c00007{transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);}
.m12e_c00007{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m135_c00007{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.md0_c00007{transform:matrix(0.117125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117125,0.000000,0.000000,0.250000,0,0);}
.m143_c00007{transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);}
.mc5_c00007{transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);}
.m11f_c00007{transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);}
.mad_c00007{transform:matrix(0.124700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124700,0.000000,0.000000,0.250000,0,0);}
.mea_c00007{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00007{transform:matrix(0.125150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125150,0.000000,0.000000,0.250000,0,0);}
.me8_c00007{transform:matrix(0.125600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125600,0.000000,0.000000,0.250000,0,0);}
.mee_c00007{transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);}
.m107_c00007{transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);}
.m6a_c00007{transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);}
.m8f_c00007{transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);}
.ma6_c00007{transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);}
.m59_c00007{transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);}
.m124_c00007{transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);}
.m64_c00007{transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);}
.m148_c00007{transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);}
.mb6_c00007{transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);}
.m13f_c00007{transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);}
.m14b_c00007{transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);}
.m123_c00007{transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);}
.m10b_c00007{transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);}
.m132_c00007{transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);}
.mbc_c00007{transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);}
.mc2_c00007{transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);}
.mb1_c00007{transform:matrix(0.141600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141600,0.000000,0.000000,0.250000,0,0);}
.m115_c00007{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00007{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);}
.m110_c00007{transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);}
.m122_c00007{transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);}
.m7_c00007{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00007{transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);}
.m97_c00007{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);}
.m129_c00007{transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);}
.mf2_c00007{transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);}
.m163_c00007{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);}
.m5a_c00007{transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);}
.mc6_c00007{transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);}
.m8a_c00007{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m7f_c00007{transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);}
.m10e_c00007{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m65_c00007{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.mcb_c00007{transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);}
.m15a_c00007{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.m13e_c00007{transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);}
.m6e_c00007{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.mf4_c00007{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);}
.m12c_c00007{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.m86_c00007{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.m10c_c00007{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.mb0_c00007{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.mcd_c00007{transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);}
.mc4_c00007{transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);}
.m5f_c00007{transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);}
.m168_c00007{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);}
.mf8_c00007{transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);}
.mff_c00007{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);}
.m15c_c00007{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.m7c_c00007{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m10_c00007{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);}
.m6d_c00007{transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);}
.m160_c00007{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);}
.m90_c00007{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.ma8_c00007{transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);}
.m1c_c00007{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.m73_c00007{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.m5e_c00007{transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);}
.m12b_c00007{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m14f_c00007{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.mb7_c00007{transform:matrix(0.164950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164950,0.000000,0.000000,0.250000,0,0);}
.md2_c00007{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00007{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.m6b_c00007{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m102_c00007{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);}
.m71_c00007{transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);}
.mef_c00007{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);}
.m3f_c00007{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m14c_c00007{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m2c_c00007{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m9f_c00007{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.m15f_c00007{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.m5b_c00007{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.md9_c00007{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);}
.m83_c00007{transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);}
.m88_c00007{transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);}
.m6f_c00007{transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);}
.m138_c00007{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);}
.m8d_c00007{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m69_c00007{transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);}
.m62_c00007{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);}
.mdf_c00007{transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);}
.m68_c00007{transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);}
.m96_c00007{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.mca_c00007{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m12a_c00007{transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);}
.m101_c00007{transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);}
.m10a_c00007{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00007{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);}
.mbd_c00007{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.m11b_c00007{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.mb4_c00007{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.m2d_c00007{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);}
.m136_c00007{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.mde_c00007{transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);}
.mdc_c00007{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.maf_c00007{transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);}
.m137_c00007{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);}
.m13d_c00007{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.ma9_c00007{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.mcc_c00007{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m164_c00007{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.m15d_c00007{transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);}
.m108_c00007{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);}
.md4_c00007{transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);}
.m94_c00007{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);}
.m105_c00007{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);}
.m89_c00007{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);}
.m75_c00007{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);}
.md7_c00007{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);}
.m11d_c00007{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m7d_c00007{transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);}
.md8_c00007{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.m14a_c00007{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);}
.m8b_c00007{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.meb_c00007{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.mfe_c00007{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.mbf_c00007{transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);}
.m77_c00007{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m30_c00007{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.mc1_c00007{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m146_c00007{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m91_c00007{transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);}
.mae_c00007{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.mc9_c00007{transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);}
.m7a_c00007{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.m39_c00007{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.m3c_c00007{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);}
.maa_c00007{transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);}
.m118_c00007{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m9d_c00007{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.mf6_c00007{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);}
.med_c00007{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.m157_c00007{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);}
.m139_c00007{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);}
.m16b_c00007{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m100_c00007{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.m141_c00007{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m57_c00007{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.me7_c00007{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);}
.m5c_c00007{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.m14e_c00007{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.ma_c00007{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.me4_c00007{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m149_c00007{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);}
.m147_c00007{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.m84_c00007{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.m10d_c00007{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m162_c00007{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);}
.m114_c00007{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m11c_c00007{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.m150_c00007{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.me0_c00007{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);}
.m158_c00007{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.m28_c00007{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m128_c00007{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.mec_c00007{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.md3_c00007{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.m48_c00007{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);}
.md5_c00007{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);}
.ma2_c00007{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);}
.m32_c00007{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.m60_c00007{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.m13b_c00007{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);}
.mce_c00007{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m56_c00007{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m111_c00007{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m66_c00007{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.ma1_c00007{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mda_c00007{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.mbb_c00007{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.md6_c00007{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m117_c00007{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.me3_c00007{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m145_c00007{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m46_c00007{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);}
.m98_c00007{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.m109_c00007{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m51_c00007{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);}
.m6c_c00007{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);}
.m12f_c00007{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);}
.me1_c00007{transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);}
.m166_c00007{transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);}
.m151_c00007{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);}
.mbe_c00007{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);}
.m9e_c00007{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m70_c00007{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.m82_c00007{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.mc0_c00007{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.mfd_c00007{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m130_c00007{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);}
.m93_c00007{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);}
.m126_c00007{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.mfb_c00007{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.mab_c00007{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);}
.me5_c00007{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m72_c00007{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);}
.m78_c00007{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);}
.m67_c00007{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);}
.m80_c00007{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);}
.mc7_c00007{transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);}
.ma7_c00007{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);}
.m22_c00007{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);}
.me6_c00007{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.m3d_c00007{transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);}
.m144_c00007{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);}
.m95_c00007{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);}
.m119_c00007{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);}
.ma4_c00007{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);}
.mb3_c00007{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);}
.m121_c00007{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m127_c00007{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);}
.m10f_c00007{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);}
.mdb_c00007{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m52_c00007{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00007{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.m103_c00007{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);}
.m142_c00007{transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);}
.m9b_c00007{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.ma3_c00007{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m106_c00007{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m14d_c00007{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);}
.mc_c00007{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);}
.mb_c00007{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m26_c00007{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);}
.m4f_c00007{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);}
.m116_c00007{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);}
.m2f_c00007{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);}
.m4c_c00007{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00007{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00007{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00007{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);}
.m55_c00007{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m36_c00007{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);}
.m9_c00007{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);}
.m79_c00007{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m33_c00007{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);}
.m4_c00007{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m35_c00007{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m47_c00007{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m81_c00007{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);}
.m3a_c00007{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);}
.mb5_c00007{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00007{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);}
.mf0_c00007{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m21_c00007{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m131_c00007{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);}
.mf9_c00007{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00007{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c00007{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00007{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m19_c00007{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00007{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m133_c00007{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m92_c00007{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m50_c00007{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);}
.m7b_c00007{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00007{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00007{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me2_c00007{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c00007{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);}
.m18_c00007{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m104_c00007{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);}
.m9c_c00007{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m17_c00007{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c00007{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m37_c00007{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00007{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);}
.m8_c00007{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mba_c00007{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);}
.m2e_c00007{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m99_c00007{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);}
.mdd_c00007{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m49_c00007{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m45_c00007{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m156_c00007{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m20_c00007{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m63_c00007{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m3_c00007{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);}
.m12d_c00007{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);}
.m31_c00007{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mf_c00007{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);}
.m74_c00007{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m34_c00007{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);}
.mb2_c00007{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1_c00007{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00007{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00007{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00007{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);}
.m11_c00007{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m76_c00007{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00007{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m43_c00007{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.me_c00007{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m23_c00007{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.md1_c00007{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);}
.mf1_c00007{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m42_c00007{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m15b_c00007{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m54_c00007{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00007{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00007{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m134_c00007{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m5_c00007{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m14_c00007{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00007{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m161_c00007{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);}
.mcf_c00007{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m41_c00007{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m58_c00007{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m44_c00007{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m24_c00007{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00007{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m155_c00007{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m61_c00007{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m167_c00007{transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);}
.m40_c00007{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00007{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m120_c00007{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00007{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00007{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m38_c00007{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00007{transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);}
.m12_c00007{transform:matrix(1.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.150000,0.000000,0.000000,0.250000,0,0);}
.m125_c00007{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m85_c00007{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00007{transform:matrix(1.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.377500,0.000000,0.000000,0.250000,0,0);}
.me9_c00007{transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00007{transform:matrix(1.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.535000,0.000000,0.000000,0.250000,0,0);}
.m2_c00007{transform:matrix(1.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.550000,0.000000,0.000000,0.250000,0,0);}
.m16a_c00007{transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);}
.m13_c00007{transform:matrix(1.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.902500,0.000000,0.000000,0.250000,0,0);}
.m87_c00007{transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);}
.m113_c00007{transform:matrix(2.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.767500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00007{transform:matrix(4.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00007{transform:matrix(4.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.752500,0.000000,0.000000,0.250000,0,0);}
.v4_c00007{vertical-align:-3.420000px;}
.v0_c00007{vertical-align:0.000000px;}
.v3_c00007{vertical-align:3.480000px;}
.v1_c00007{vertical-align:17.280000px;}
.v2_c00007{vertical-align:27.660000px;}
.ls6_c00007{letter-spacing:0.000000px;}
.ls2_c00007{letter-spacing:36.303480px;}
.ls1_c00007{letter-spacing:51.157440px;}
.ls4_c00007{letter-spacing:115.236000px;}
.ls5_c00007{letter-spacing:123.064740px;}
.ls3_c00007{letter-spacing:199.746000px;}
.ls0_c00007{letter-spacing:1308.735480px;}
.sc__c00007{text-shadow:none;}
.sc0_c00007{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00007{-webkit-text-stroke:0px transparent;}
.sc0_c00007{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00007{word-spacing:0.000000px;}
.fc0_c00007{color:transparent;}
.fs5_c00007{font-size:3.456000px;}
.fsd_c00007{font-size:6.000000px;}
.fs2_c00007{font-size:6.900000px;}
.fs4_c00007{font-size:10.380000px;}
.fs3_c00007{font-size:13.800000px;}
.fs1_c00007{font-size:17.280000px;}
.fs0_c00007{font-size:20.760000px;}
.fs21_c00007{font-size:24.180000px;}
.fs1f_c00007{font-size:27.660000px;}
.fs20_c00007{font-size:31.080000px;}
.fs10_c00007{font-size:34.560000px;}
.fs2a_c00007{font-size:38.040000px;}
.fs24_c00007{font-size:41.460000px;}
.fs11_c00007{font-size:44.940000px;}
.fs23_c00007{font-size:48.360000px;}
.fs2b_c00007{font-size:51.840000px;}
.fs29_c00007{font-size:55.320000px;}
.fs1b_c00007{font-size:58.740000px;}
.fs1a_c00007{font-size:62.220000px;}
.fs1c_c00007{font-size:65.640000px;}
.fs1d_c00007{font-size:69.120000px;}
.fs13_c00007{font-size:72.600000px;}
.fs15_c00007{font-size:76.020000px;}
.fs28_c00007{font-size:79.500000px;}
.fs17_c00007{font-size:82.920000px;}
.fs1e_c00007{font-size:86.400000px;}
.fs18_c00007{font-size:89.880000px;}
.fs12_c00007{font-size:93.300000px;}
.fs25_c00007{font-size:96.780000px;}
.fs14_c00007{font-size:100.200000px;}
.fs19_c00007{font-size:103.680000px;}
.fs27_c00007{font-size:107.160000px;}
.fs16_c00007{font-size:110.580000px;}
.fse_c00007{font-size:114.060000px;}
.fs2c_c00007{font-size:120.960000px;}
.fsf_c00007{font-size:124.440000px;}
.fs22_c00007{font-size:127.860000px;}
.fs26_c00007{font-size:131.340000px;}
.fsa_c00007{font-size:141.720000px;}
.fs6_c00007{font-size:145.140000px;}
.fsb_c00007{font-size:148.620000px;}
.fs7_c00007{font-size:155.520000px;}
.fs9_c00007{font-size:159.000000px;}
.fsc_c00007{font-size:179.700000px;}
.fs8_c00007{font-size:190.080000px;}
.y0_c00007{bottom:0.000000px;}
.y13b_c00007{bottom:118.365000px;}
.y13a_c00007{bottom:127.005000px;}
.y136_c00007{bottom:207.360000px;}
.y135_c00007{bottom:210.810000px;}
.y130_c00007{bottom:213.405000px;}
.y133_c00007{bottom:217.725000px;}
.y138_c00007{bottom:222.045000px;}
.y131_c00007{bottom:222.915000px;}
.y132_c00007{bottom:224.640000px;}
.y134_c00007{bottom:225.510000px;}
.y12f_c00007{bottom:226.365000px;}
.y125_c00007{bottom:228.090000px;}
.y139_c00007{bottom:228.960000px;}
.y137_c00007{bottom:229.830000px;}
.y127_c00007{bottom:230.685000px;}
.y12b_c00007{bottom:231.555000px;}
.y128_c00007{bottom:232.410000px;}
.y126_c00007{bottom:233.280000px;}
.y129_c00007{bottom:234.150000px;}
.y12a_c00007{bottom:235.005000px;}
.y12d_c00007{bottom:236.730000px;}
.y12c_c00007{bottom:240.195000px;}
.y12e_c00007{bottom:251.430000px;}
.y11c_c00007{bottom:252.285000px;}
.y11e_c00007{bottom:253.155000px;}
.y121_c00007{bottom:254.880000px;}
.y11d_c00007{bottom:256.605000px;}
.y122_c00007{bottom:257.475000px;}
.y123_c00007{bottom:259.200000px;}
.y124_c00007{bottom:260.925000px;}
.y11f_c00007{bottom:263.520000px;}
.y120_c00007{bottom:265.245000px;}
.y112_c00007{bottom:276.480000px;}
.y116_c00007{bottom:277.350000px;}
.y113_c00007{bottom:278.205000px;}
.y11a_c00007{bottom:279.930000px;}
.y117_c00007{bottom:281.670000px;}
.y114_c00007{bottom:282.525000px;}
.y119_c00007{bottom:283.395000px;}
.y111_c00007{bottom:285.120000px;}
.y115_c00007{bottom:285.990000px;}
.y11b_c00007{bottom:286.845000px;}
.y118_c00007{bottom:290.310000px;}
.y10a_c00007{bottom:303.270000px;}
.y10b_c00007{bottom:304.125000px;}
.y10c_c00007{bottom:304.995000px;}
.y10d_c00007{bottom:310.170000px;}
.y10e_c00007{bottom:311.910000px;}
.y110_c00007{bottom:313.635000px;}
.y10f_c00007{bottom:321.405000px;}
.y100_c00007{bottom:325.725000px;}
.yff_c00007{bottom:328.320000px;}
.y103_c00007{bottom:330.045000px;}
.y106_c00007{bottom:330.915000px;}
.yfe_c00007{bottom:332.640000px;}
.y101_c00007{bottom:333.510000px;}
.yfd_c00007{bottom:334.365000px;}
.y102_c00007{bottom:336.090000px;}
.y109_c00007{bottom:336.960000px;}
.y108_c00007{bottom:337.830000px;}
.y104_c00007{bottom:339.555000px;}
.y105_c00007{bottom:340.410000px;}
.y107_c00007{bottom:343.875000px;}
.yfc_c00007{bottom:345.600000px;}
.yf8_c00007{bottom:352.515000px;}
.yf7_c00007{bottom:353.370000px;}
.yfa_c00007{bottom:355.110000px;}
.yf9_c00007{bottom:355.965000px;}
.yf6_c00007{bottom:356.835000px;}
.yf5_c00007{bottom:357.690000px;}
.yfb_c00007{bottom:362.010000px;}
.yee_c00007{bottom:379.290000px;}
.yf0_c00007{bottom:380.160000px;}
.yf3_c00007{bottom:381.030000px;}
.yf2_c00007{bottom:381.885000px;}
.yf4_c00007{bottom:382.755000px;}
.yf1_c00007{bottom:385.350000px;}
.yef_c00007{bottom:387.075000px;}
.ye5_c00007{bottom:400.890000px;}
.ye7_c00007{bottom:401.760000px;}
.ye8_c00007{bottom:402.630000px;}
.ye4_c00007{bottom:403.485000px;}
.yea_c00007{bottom:404.355000px;}
.ye9_c00007{bottom:405.210000px;}
.yed_c00007{bottom:406.950000px;}
.ye2_c00007{bottom:408.675000px;}
.yec_c00007{bottom:409.530000px;}
.ye6_c00007{bottom:411.270000px;}
.yeb_c00007{bottom:412.125000px;}
.ye3_c00007{bottom:415.590000px;}
.ydb_c00007{bottom:427.680000px;}
.yd9_c00007{bottom:429.405000px;}
.ydd_c00007{bottom:431.130000px;}
.ydf_c00007{bottom:432.000000px;}
.yde_c00007{bottom:433.725000px;}
.yda_c00007{bottom:435.450000px;}
.ydc_c00007{bottom:437.190000px;}
.ye0_c00007{bottom:442.365000px;}
.ye1_c00007{bottom:449.280000px;}
.yd1_c00007{bottom:451.005000px;}
.yd2_c00007{bottom:452.730000px;}
.y50_c00007{bottom:453.600000px;}
.ycf_c00007{bottom:454.470000px;}
.yd3_c00007{bottom:455.325000px;}
.yd5_c00007{bottom:457.050000px;}
.yd0_c00007{bottom:458.790000px;}
.yd4_c00007{bottom:459.645000px;}
.yd8_c00007{bottom:460.515000px;}
.yd6_c00007{bottom:462.240000px;}
.yd7_c00007{bottom:471.750000px;}
.yc8_c00007{bottom:477.795000px;}
.yc6_c00007{bottom:478.650000px;}
.yc7_c00007{bottom:479.520000px;}
.ycd_c00007{bottom:480.390000px;}
.ycb_c00007{bottom:481.245000px;}
.yca_c00007{bottom:482.970000px;}
.yc9_c00007{bottom:487.290000px;}
.ycc_c00007{bottom:488.160000px;}
.yce_c00007{bottom:494.205000px;}
.ybd_c00007{bottom:503.715000px;}
.ybf_c00007{bottom:504.570000px;}
.yc2_c00007{bottom:505.440000px;}
.yc3_c00007{bottom:506.310000px;}
.ybe_c00007{bottom:507.165000px;}
.yc1_c00007{bottom:508.035000px;}
.yc5_c00007{bottom:509.760000px;}
.ybc_c00007{bottom:510.630000px;}
.yc0_c00007{bottom:512.355000px;}
.yc4_c00007{bottom:514.080000px;}
.yb3_c00007{bottom:527.910000px;}
.yb5_c00007{bottom:528.765000px;}
.yb7_c00007{bottom:529.635000px;}
.yb8_c00007{bottom:530.490000px;}
.yb9_c00007{bottom:531.360000px;}
.yba_c00007{bottom:532.230000px;}
.yb4_c00007{bottom:536.550000px;}
.yb6_c00007{bottom:537.405000px;}
.ybb_c00007{bottom:543.450000px;}
.yac_c00007{bottom:554.685000px;}
.yad_c00007{bottom:555.555000px;}
.yae_c00007{bottom:556.410000px;}
.yb0_c00007{bottom:557.280000px;}
.yab_c00007{bottom:558.150000px;}
.yb2_c00007{bottom:560.730000px;}
.yaf_c00007{bottom:563.325000px;}
.yb1_c00007{bottom:564.195000px;}
.yaa_c00007{bottom:565.920000px;}
.ya3_c00007{bottom:579.750000px;}
.ya4_c00007{bottom:581.475000px;}
.ya8_c00007{bottom:582.330000px;}
.ya9_c00007{bottom:585.795000px;}
.ya7_c00007{bottom:586.650000px;}
.ya5_c00007{bottom:588.390000px;}
.ya6_c00007{bottom:589.245000px;}
.y9f_c00007{bottom:602.205000px;}
.ya2_c00007{bottom:603.930000px;}
.y9e_c00007{bottom:605.670000px;}
.ya1_c00007{bottom:606.525000px;}
.ya0_c00007{bottom:607.395000px;}
.y9d_c00007{bottom:609.990000px;}
.y9c_c00007{bottom:611.715000px;}
.y9a_c00007{bottom:631.590000px;}
.y94_c00007{bottom:632.445000px;}
.y96_c00007{bottom:635.910000px;}
.y98_c00007{bottom:636.765000px;}
.y95_c00007{bottom:637.635000px;}
.y97_c00007{bottom:638.490000px;}
.y9b_c00007{bottom:639.360000px;}
.y99_c00007{bottom:640.230000px;}
.y93_c00007{bottom:648.000000px;}
.y8e_c00007{bottom:654.915000px;}
.y8d_c00007{bottom:656.640000px;}
.y91_c00007{bottom:657.510000px;}
.y8c_c00007{bottom:659.235000px;}
.y88_c00007{bottom:660.960000px;}
.y92_c00007{bottom:661.830000px;}
.y90_c00007{bottom:664.410000px;}
.y8f_c00007{bottom:665.280000px;}
.y8b_c00007{bottom:666.150000px;}
.y8a_c00007{bottom:667.005000px;}
.y89_c00007{bottom:672.195000px;}
.y87_c00007{bottom:674.790000px;}
.y83_c00007{bottom:681.690000px;}
.y82_c00007{bottom:682.560000px;}
.y84_c00007{bottom:683.430000px;}
.y85_c00007{bottom:686.880000px;}
.y86_c00007{bottom:696.390000px;}
.y7f_c00007{bottom:706.755000px;}
.y7b_c00007{bottom:707.610000px;}
.y7d_c00007{bottom:710.205000px;}
.y7c_c00007{bottom:713.670000px;}
.y7e_c00007{bottom:714.525000px;}
.y80_c00007{bottom:715.395000px;}
.y81_c00007{bottom:724.890000px;}
.y78_c00007{bottom:727.485000px;}
.y79_c00007{bottom:729.210000px;}
.y77_c00007{bottom:731.805000px;}
.y7a_c00007{bottom:737.850000px;}
.y74_c00007{bottom:753.405000px;}
.y75_c00007{bottom:754.275000px;}
.y76_c00007{bottom:759.450000px;}
.y73_c00007{bottom:760.320000px;}
.y72_c00007{bottom:774.150000px;}
.y6d_c00007{bottom:777.600000px;}
.y71_c00007{bottom:778.470000px;}
.y6e_c00007{bottom:781.050000px;}
.y6c_c00007{bottom:783.645000px;}
.y6f_c00007{bottom:784.515000px;}
.y70_c00007{bottom:785.370000px;}
.y68_c00007{bottom:800.070000px;}
.y66_c00007{bottom:804.390000px;}
.y69_c00007{bottom:805.245000px;}
.y67_c00007{bottom:806.970000px;}
.y6a_c00007{bottom:807.840000px;}
.y6b_c00007{bottom:810.435000px;}
.y60_c00007{bottom:825.990000px;}
.y62_c00007{bottom:826.845000px;}
.y64_c00007{bottom:827.715000px;}
.y61_c00007{bottom:828.570000px;}
.y65_c00007{bottom:829.440000px;}
.y63_c00007{bottom:831.165000px;}
.y5a_c00007{bottom:851.910000px;}
.y5c_c00007{bottom:852.765000px;}
.y5d_c00007{bottom:853.635000px;}
.y5b_c00007{bottom:856.230000px;}
.y5e_c00007{bottom:860.550000px;}
.y5f_c00007{bottom:862.275000px;}
.y54_c00007{bottom:877.830000px;}
.y52_c00007{bottom:879.555000px;}
.y56_c00007{bottom:880.410000px;}
.y58_c00007{bottom:881.280000px;}
.y4f_c00007{bottom:882.150000px;}
.y55_c00007{bottom:883.005000px;}
.y51_c00007{bottom:883.875000px;}
.y53_c00007{bottom:884.730000px;}
.y57_c00007{bottom:886.470000px;}
.y59_c00007{bottom:889.050000px;}
.y4d_c00007{bottom:924.480000px;}
.y4b_c00007{bottom:925.350000px;}
.y49_c00007{bottom:926.205000px;}
.y4a_c00007{bottom:927.930000px;}
.y4c_c00007{bottom:929.670000px;}
.y45_c00007{bottom:931.395000px;}
.y44_c00007{bottom:932.250000px;}
.y4e_c00007{bottom:933.120000px;}
.y43_c00007{bottom:933.990000px;}
.y47_c00007{bottom:934.845000px;}
.y46_c00007{bottom:935.715000px;}
.y48_c00007{bottom:936.570000px;}
.y3b_c00007{bottom:951.270000px;}
.y3c_c00007{bottom:952.995000px;}
.y40_c00007{bottom:953.850000px;}
.y41_c00007{bottom:954.720000px;}
.y3d_c00007{bottom:955.590000px;}
.y42_c00007{bottom:956.445000px;}
.y3e_c00007{bottom:963.360000px;}
.y3f_c00007{bottom:965.085000px;}
.y38_c00007{bottom:976.320000px;}
.y39_c00007{bottom:978.045000px;}
.y37_c00007{bottom:978.915000px;}
.y3a_c00007{bottom:981.510000px;}
.y34_c00007{bottom:983.235000px;}
.y35_c00007{bottom:985.830000px;}
.y32_c00007{bottom:988.410000px;}
.y33_c00007{bottom:1003.965000px;}
.y36_c00007{bottom:1008.285000px;}
.y2e_c00007{bottom:1013.475000px;}
.y30_c00007{bottom:1014.330000px;}
.y2b_c00007{bottom:1016.070000px;}
.y2c_c00007{bottom:1016.925000px;}
.y2d_c00007{bottom:1017.795000px;}
.y2f_c00007{bottom:1018.650000px;}
.y31_c00007{bottom:1026.435000px;}
.y29_c00007{bottom:1031.610000px;}
.y2a_c00007{bottom:1039.395000px;}
.y28_c00007{bottom:1046.310000px;}
.y23_c00007{bottom:1047.165000px;}
.y24_c00007{bottom:1048.035000px;}
.y27_c00007{bottom:1048.890000px;}
.y25_c00007{bottom:1049.760000px;}
.y22_c00007{bottom:1051.485000px;}
.y21_c00007{bottom:1060.125000px;}
.y26_c00007{bottom:1069.635000px;}
.y17_c00007{bottom:1072.230000px;}
.y20_c00007{bottom:1073.085000px;}
.y1d_c00007{bottom:1073.955000px;}
.y1f_c00007{bottom:1076.550000px;}
.y1b_c00007{bottom:1077.405000px;}
.y1c_c00007{bottom:1078.275000px;}
.y1a_c00007{bottom:1079.130000px;}
.y19_c00007{bottom:1080.000000px;}
.y18_c00007{bottom:1080.870000px;}
.y1e_c00007{bottom:1081.725000px;}
.y14_c00007{bottom:1083.450000px;}
.y15_c00007{bottom:1085.190000px;}
.y16_c00007{bottom:1086.915000px;}
.y12_c00007{bottom:1119.750000px;}
.y10_c00007{bottom:1121.475000px;}
.y11_c00007{bottom:1123.200000px;}
.y13_c00007{bottom:1124.070000px;}
.ya_c00007{bottom:1126.650000px;}
.yb_c00007{bottom:1127.520000px;}
.yc_c00007{bottom:1128.390000px;}
.yd_c00007{bottom:1130.115000px;}
.yf_c00007{bottom:1130.970000px;}
.ye_c00007{bottom:1131.840000px;}
.y9_c00007{bottom:1364.250000px;}
.y8_c00007{bottom:1376.355000px;}
.y7_c00007{bottom:1378.080000px;}
.y6_c00007{bottom:1384.995000px;}
.y5_c00007{bottom:1403.130000px;}
.y4_c00007{bottom:1405.725000px;}
.y3_c00007{bottom:1407.450000px;}
.y1_c00007{bottom:1420.410000px;}
.y2_c00007{bottom:1423.875000px;}
.h8_c00007{height:3.110063px;}
.h10_c00007{height:5.399414px;}
.h15_c00007{height:6.209326px;}
.h5_c00007{height:9.340986px;}
.h4_c00007{height:12.418652px;}
.h26_c00007{height:12.760986px;}
.h25_c00007{height:12.820986px;}
.h7_c00007{height:15.550313px;}
.h2_c00007{height:18.681973px;}
.h27_c00007{height:21.759639px;}
.h23_c00007{height:24.891299px;}
.h6_c00007{height:26.620986px;}
.h24_c00007{height:27.968965px;}
.h13_c00007{height:31.100625px;}
.h3_c00007{height:33.869326px;}
.h30_c00007{height:34.232285px;}
.h2a_c00007{height:37.309951px;}
.h14_c00007{height:40.441611px;}
.h29_c00007{height:43.519277px;}
.h31_c00007{height:46.650937px;}
.h2f_c00007{height:49.782598px;}
.h1f_c00007{height:52.860264px;}
.h1e_c00007{height:55.991924px;}
.h20_c00007{height:59.069590px;}
.h21_c00007{height:62.201250px;}
.h17_c00007{height:65.332910px;}
.h19_c00007{height:68.410576px;}
.h2e_c00007{height:71.542236px;}
.h1b_c00007{height:74.619902px;}
.h22_c00007{height:77.751563px;}
.h1c_c00007{height:80.883223px;}
.h16_c00007{height:83.960889px;}
.h2b_c00007{height:87.092549px;}
.h18_c00007{height:90.170215px;}
.h1d_c00007{height:93.301875px;}
.h2d_c00007{height:96.433535px;}
.h1a_c00007{height:99.511201px;}
.h11_c00007{height:102.642861px;}
.h32_c00007{height:108.852188px;}
.h12_c00007{height:111.983848px;}
.h28_c00007{height:115.061514px;}
.h2c_c00007{height:118.193174px;}
.hd_c00007{height:127.534160px;}
.h9_c00007{height:130.611826px;}
.he_c00007{height:133.743486px;}
.ha_c00007{height:139.952812px;}
.hc_c00007{height:143.084473px;}
.hf_c00007{height:161.712451px;}
.hb_c00007{height:171.053437px;}
.h0_c00007{height:1505.955000px;}
.h1_c00007{height:1506.000000px;}
.w1_c00007{width:1071.000000px;}
.w0_c00007{width:1071.360000px;}
.x0_c00007{left:0.000000px;}
.x102_c00007{left:2.595000px;}
.x60_c00007{left:4.320000px;}
.x103_c00007{left:8.640000px;}
.x9_c00007{left:59.610000px;}
.xa_c00007{left:71.715000px;}
.x49_c00007{left:90.720000px;}
.x61_c00007{left:103.680000px;}
.x4a_c00007{left:106.275000px;}
.x4b_c00007{left:175.395000px;}
.x62_c00007{left:180.570000px;}
.x91_c00007{left:201.315000px;}
.xd4_c00007{left:209.955000px;}
.xd5_c00007{left:219.450000px;}
.xa9_c00007{left:221.190000px;}
.x1_c00007{left:223.770000px;}
.xa1_c00007{left:225.510000px;}
.x87_c00007{left:228.960000px;}
.xde_c00007{left:230.685000px;}
.x2_c00007{left:233.280000px;}
.x1d_c00007{left:236.730000px;}
.x46_c00007{left:242.790000px;}
.x43_c00007{left:244.515000px;}
.xad_c00007{left:246.240000px;}
.x88_c00007{left:248.835000px;}
.x99_c00007{left:252.285000px;}
.x13_c00007{left:254.880000px;}
.xe3_c00007{left:259.200000px;}
.xb3_c00007{left:260.925000px;}
.x20_c00007{left:263.520000px;}
.x37_c00007{left:266.115000px;}
.xbc_c00007{left:268.710000px;}
.x29_c00007{left:277.350000px;}
.x9a_c00007{left:280.800000px;}
.xc3_c00007{left:284.250000px;}
.xfc_c00007{left:285.990000px;}
.x2a_c00007{left:288.570000px;}
.x38_c00007{left:291.165000px;}
.xc4_c00007{left:292.890000px;}
.xf6_c00007{left:296.355000px;}
.xaa_c00007{left:298.080000px;}
.x89_c00007{left:301.530000px;}
.xd6_c00007{left:305.850000px;}
.x39_c00007{left:313.635000px;}
.x8a_c00007{left:317.085000px;}
.x92_c00007{left:319.680000px;}
.xc5_c00007{left:324.870000px;}
.xb4_c00007{left:330.915000px;}
.x2b_c00007{left:333.510000px;}
.xb_c00007{left:335.235000px;}
.xdf_c00007{left:336.960000px;}
.xb5_c00007{left:341.280000px;}
.xae_c00007{left:344.730000px;}
.x21_c00007{left:348.195000px;}
.xa2_c00007{left:349.920000px;}
.xf7_c00007{left:352.515000px;}
.x44_c00007{left:354.240000px;}
.x22_c00007{left:357.690000px;}
.x2c_c00007{left:360.285000px;}
.xe8_c00007{left:363.750000px;}
.x83_c00007{left:367.200000px;}
.xda_c00007{left:370.650000px;}
.x52_c00007{left:374.115000px;}
.x23_c00007{left:376.710000px;}
.xc_c00007{left:379.290000px;}
.xeb_c00007{left:382.755000px;}
.xef_c00007{left:384.480000px;}
.x24_c00007{left:386.205000px;}
.xfd_c00007{left:388.800000px;}
.x14_c00007{left:392.250000px;}
.x53_c00007{left:396.570000px;}
.xa3_c00007{left:408.675000px;}
.x3a_c00007{left:410.400000px;}
.xec_c00007{left:413.850000px;}
.x15_c00007{left:418.170000px;}
.xb6_c00007{left:419.910000px;}
.x93_c00007{left:421.635000px;}
.x4d_c00007{left:423.360000px;}
.x7b_c00007{left:425.085000px;}
.x25_c00007{left:431.130000px;}
.x63_c00007{left:433.725000px;}
.x2d_c00007{left:435.450000px;}
.x4e_c00007{left:437.190000px;}
.x9b_c00007{left:440.640000px;}
.x16_c00007{left:442.365000px;}
.xdb_c00007{left:448.410000px;}
.xab_c00007{left:453.600000px;}
.x3b_c00007{left:455.325000px;}
.x1e_c00007{left:457.050000px;}
.x8b_c00007{left:459.645000px;}
.x2e_c00007{left:462.240000px;}
.x54_c00007{left:466.560000px;}
.xd_c00007{left:470.010000px;}
.xc6_c00007{left:471.750000px;}
.x17_c00007{left:475.200000px;}
.x2f_c00007{left:477.795000px;}
.x6b_c00007{left:479.520000px;}
.xb7_c00007{left:482.970000px;}
.x47_c00007{left:485.565000px;}
.xaf_c00007{left:487.290000px;}
.x55_c00007{left:489.885000px;}
.x94_c00007{left:492.480000px;}
.x5e_c00007{left:494.205000px;}
.xed_c00007{left:497.670000px;}
.x3_c00007{left:501.990000px;}
.x6c_c00007{left:505.440000px;}
.xf0_c00007{left:508.035000px;}
.xb8_c00007{left:509.760000px;}
.x9c_c00007{left:512.355000px;}
.x26_c00007{left:514.080000px;}
.x76_c00007{left:519.270000px;}
.xcc_c00007{left:520.995000px;}
.x64_c00007{left:522.720000px;}
.xf8_c00007{left:525.315000px;}
.xd7_c00007{left:527.040000px;}
.xee_c00007{left:531.360000px;}
.x27_c00007{left:533.955000px;}
.x56_c00007{left:535.680000px;}
.x4_c00007{left:538.275000px;}
.x30_c00007{left:540.000000px;}
.x65_c00007{left:541.725000px;}
.x95_c00007{left:544.320000px;}
.x48_c00007{left:547.770000px;}
.x6d_c00007{left:552.090000px;}
.x73_c00007{left:555.555000px;}
.x18_c00007{left:557.280000px;}
.xa4_c00007{left:559.875000px;}
.x19_c00007{left:565.050000px;}
.x66_c00007{left:566.790000px;}
.x5f_c00007{left:568.515000px;}
.x8c_c00007{left:570.240000px;}
.xcd_c00007{left:571.965000px;}
.x57_c00007{left:574.560000px;}
.xfe_c00007{left:579.750000px;}
.x3c_c00007{left:581.475000px;}
.xb0_c00007{left:584.925000px;}
.x7_c00007{left:595.290000px;}
.x58_c00007{left:598.755000px;}
.x6_c00007{left:600.480000px;}
.x7c_c00007{left:603.930000px;}
.x8_c00007{left:607.395000px;}
.x1a_c00007{left:609.990000px;}
.x77_c00007{left:613.440000px;}
.x31_c00007{left:618.630000px;}
.x59_c00007{left:622.080000px;}
.xce_c00007{left:625.530000px;}
.xc7_c00007{left:628.125000px;}
.xe_c00007{left:629.850000px;}
.x67_c00007{left:632.445000px;}
.xff_c00007{left:636.765000px;}
.x9d_c00007{left:638.490000px;}
.x5a_c00007{left:640.230000px;}
.xa5_c00007{left:641.955000px;}
.x84_c00007{left:643.680000px;}
.x4c_c00007{left:645.405000px;}
.xf9_c00007{left:649.725000px;}
.x96_c00007{left:654.045000px;}
.x80_c00007{left:656.640000px;}
.x5b_c00007{left:658.365000px;}
.x1f_c00007{left:660.960000px;}
.x78_c00007{left:667.875000px;}
.x8d_c00007{left:669.600000px;}
.x32_c00007{left:673.050000px;}
.x5c_c00007{left:674.790000px;}
.xc8_c00007{left:676.515000px;}
.x3d_c00007{left:678.240000px;}
.x4f_c00007{left:682.560000px;}
.x7d_c00007{left:686.010000px;}
.xf_c00007{left:688.605000px;}
.x3e_c00007{left:693.795000px;}
.x9e_c00007{left:696.390000px;}
.x5d_c00007{left:698.115000px;}
.x50_c00007{left:699.840000px;}
.x33_c00007{left:701.565000px;}
.x28_c00007{left:703.290000px;}
.x1b_c00007{left:705.030000px;}
.xe4_c00007{left:709.350000px;}
.x97_c00007{left:713.670000px;}
.x51_c00007{left:717.990000px;}
.xcf_c00007{left:724.890000px;}
.x6e_c00007{left:726.630000px;}
.xdc_c00007{left:728.355000px;}
.x34_c00007{left:730.950000px;}
.x6f_c00007{left:733.530000px;}
.x45_c00007{left:735.270000px;}
.x3f_c00007{left:737.850000px;}
.xd0_c00007{left:741.315000px;}
.x79_c00007{left:743.910000px;}
.x10_c00007{left:745.635000px;}
.x8e_c00007{left:747.360000px;}
.xbd_c00007{left:751.680000px;}
.x9f_c00007{left:753.405000px;}
.x40_c00007{left:756.000000px;}
.x35_c00007{left:758.595000px;}
.xe5_c00007{left:762.915000px;}
.x7e_c00007{left:764.640000px;}
.x68_c00007{left:768.090000px;}
.x70_c00007{left:770.685000px;}
.x7a_c00007{left:772.410000px;}
.x36_c00007{left:775.875000px;}
.xa6_c00007{left:777.600000px;}
.x41_c00007{left:779.325000px;}
.xd8_c00007{left:781.050000px;}
.xb1_c00007{left:783.645000px;}
.x81_c00007{left:786.240000px;}
.x11_c00007{left:788.835000px;}
.x8f_c00007{left:793.155000px;}
.x5_c00007{left:795.750000px;}
.x42_c00007{left:798.330000px;}
.x71_c00007{left:802.650000px;}
.xac_c00007{left:806.115000px;}
.xf1_c00007{left:807.840000px;}
.x85_c00007{left:813.030000px;}
.x72_c00007{left:815.610000px;}
.xbe_c00007{left:817.350000px;}
.xa0_c00007{left:819.075000px;}
.xe9_c00007{left:822.525000px;}
.x69_c00007{left:830.310000px;}
.x98_c00007{left:836.355000px;}
.xb9_c00007{left:838.950000px;}
.x12_c00007{left:842.400000px;}
.xdd_c00007{left:852.765000px;}
.xa7_c00007{left:864.000000px;}
.xd9_c00007{left:867.450000px;}
.x6a_c00007{left:870.045000px;}
.x74_c00007{left:871.770000px;}
.xa8_c00007{left:873.510000px;}
.x90_c00007{left:876.090000px;}
.x75_c00007{left:881.280000px;}
.x86_c00007{left:883.875000px;}
.x82_c00007{left:886.470000px;}
.x7f_c00007{left:890.790000px;}
.xbf_c00007{left:893.370000px;}
.xb2_c00007{left:902.880000px;}
.xba_c00007{left:907.200000px;}
.xfa_c00007{left:909.795000px;}
.xe0_c00007{left:912.390000px;}
.xc9_c00007{left:914.970000px;}
.xbb_c00007{left:917.565000px;}
.xc0_c00007{left:927.075000px;}
.xd1_c00007{left:928.800000px;}
.x1c_c00007{left:934.845000px;}
.xc1_c00007{left:936.570000px;}
.xf2_c00007{left:940.890000px;}
.xf3_c00007{left:943.485000px;}
.xd2_c00007{left:945.210000px;}
.x100_c00007{left:946.950000px;}
.xca_c00007{left:949.530000px;}
.xe6_c00007{left:951.270000px;}
.xea_c00007{left:953.850000px;}
.xe1_c00007{left:960.765000px;}
.xe7_c00007{left:962.490000px;}
.xfb_c00007{left:968.550000px;}
.xe2_c00007{left:971.130000px;}
.xcb_c00007{left:973.725000px;}
.xf4_c00007{left:981.510000px;}
.xd3_c00007{left:990.150000px;}
.xc2_c00007{left:991.875000px;}
.x101_c00007{left:993.600000px;}
.xf5_c00007{left:997.050000px;}
@media print{
.v4_c00007{vertical-align:-3.040000pt;}
.v0_c00007{vertical-align:0.000000pt;}
.v3_c00007{vertical-align:3.093333pt;}
.v1_c00007{vertical-align:15.360000pt;}
.v2_c00007{vertical-align:24.586667pt;}
.ls6_c00007{letter-spacing:0.000000pt;}
.ls2_c00007{letter-spacing:32.269760pt;}
.ls1_c00007{letter-spacing:45.473280pt;}
.ls4_c00007{letter-spacing:102.432000pt;}
.ls5_c00007{letter-spacing:109.390880pt;}
.ls3_c00007{letter-spacing:177.552000pt;}
.ls0_c00007{letter-spacing:1163.320427pt;}
.ws0_c00007{word-spacing:0.000000pt;}
.fs5_c00007{font-size:3.072000pt;}
.fsd_c00007{font-size:5.333333pt;}
.fs2_c00007{font-size:6.133333pt;}
.fs4_c00007{font-size:9.226667pt;}
.fs3_c00007{font-size:12.266667pt;}
.fs1_c00007{font-size:15.360000pt;}
.fs0_c00007{font-size:18.453333pt;}
.fs21_c00007{font-size:21.493333pt;}
.fs1f_c00007{font-size:24.586667pt;}
.fs20_c00007{font-size:27.626667pt;}
.fs10_c00007{font-size:30.720000pt;}
.fs2a_c00007{font-size:33.813333pt;}
.fs24_c00007{font-size:36.853333pt;}
.fs11_c00007{font-size:39.946667pt;}
.fs23_c00007{font-size:42.986667pt;}
.fs2b_c00007{font-size:46.080000pt;}
.fs29_c00007{font-size:49.173333pt;}
.fs1b_c00007{font-size:52.213333pt;}
.fs1a_c00007{font-size:55.306667pt;}
.fs1c_c00007{font-size:58.346667pt;}
.fs1d_c00007{font-size:61.440000pt;}
.fs13_c00007{font-size:64.533333pt;}
.fs15_c00007{font-size:67.573333pt;}
.fs28_c00007{font-size:70.666667pt;}
.fs17_c00007{font-size:73.706667pt;}
.fs1e_c00007{font-size:76.800000pt;}
.fs18_c00007{font-size:79.893333pt;}
.fs12_c00007{font-size:82.933333pt;}
.fs25_c00007{font-size:86.026667pt;}
.fs14_c00007{font-size:89.066667pt;}
.fs19_c00007{font-size:92.160000pt;}
.fs27_c00007{font-size:95.253333pt;}
.fs16_c00007{font-size:98.293333pt;}
.fse_c00007{font-size:101.386667pt;}
.fs2c_c00007{font-size:107.520000pt;}
.fsf_c00007{font-size:110.613333pt;}
.fs22_c00007{font-size:113.653333pt;}
.fs26_c00007{font-size:116.746667pt;}
.fsa_c00007{font-size:125.973333pt;}
.fs6_c00007{font-size:129.013333pt;}
.fsb_c00007{font-size:132.106667pt;}
.fs7_c00007{font-size:138.240000pt;}
.fs9_c00007{font-size:141.333333pt;}
.fsc_c00007{font-size:159.733333pt;}
.fs8_c00007{font-size:168.960000pt;}
.y0_c00007{bottom:0.000000pt;}
.y13b_c00007{bottom:105.213333pt;}
.y13a_c00007{bottom:112.893333pt;}
.y136_c00007{bottom:184.320000pt;}
.y135_c00007{bottom:187.386667pt;}
.y130_c00007{bottom:189.693333pt;}
.y133_c00007{bottom:193.533333pt;}
.y138_c00007{bottom:197.373333pt;}
.y131_c00007{bottom:198.146667pt;}
.y132_c00007{bottom:199.680000pt;}
.y134_c00007{bottom:200.453333pt;}
.y12f_c00007{bottom:201.213333pt;}
.y125_c00007{bottom:202.746667pt;}
.y139_c00007{bottom:203.520000pt;}
.y137_c00007{bottom:204.293333pt;}
.y127_c00007{bottom:205.053333pt;}
.y12b_c00007{bottom:205.826667pt;}
.y128_c00007{bottom:206.586667pt;}
.y126_c00007{bottom:207.360000pt;}
.y129_c00007{bottom:208.133333pt;}
.y12a_c00007{bottom:208.893333pt;}
.y12d_c00007{bottom:210.426667pt;}
.y12c_c00007{bottom:213.506667pt;}
.y12e_c00007{bottom:223.493333pt;}
.y11c_c00007{bottom:224.253333pt;}
.y11e_c00007{bottom:225.026667pt;}
.y121_c00007{bottom:226.560000pt;}
.y11d_c00007{bottom:228.093333pt;}
.y122_c00007{bottom:228.866667pt;}
.y123_c00007{bottom:230.400000pt;}
.y124_c00007{bottom:231.933333pt;}
.y11f_c00007{bottom:234.240000pt;}
.y120_c00007{bottom:235.773333pt;}
.y112_c00007{bottom:245.760000pt;}
.y116_c00007{bottom:246.533333pt;}
.y113_c00007{bottom:247.293333pt;}
.y11a_c00007{bottom:248.826667pt;}
.y117_c00007{bottom:250.373333pt;}
.y114_c00007{bottom:251.133333pt;}
.y119_c00007{bottom:251.906667pt;}
.y111_c00007{bottom:253.440000pt;}
.y115_c00007{bottom:254.213333pt;}
.y11b_c00007{bottom:254.973333pt;}
.y118_c00007{bottom:258.053333pt;}
.y10a_c00007{bottom:269.573333pt;}
.y10b_c00007{bottom:270.333333pt;}
.y10c_c00007{bottom:271.106667pt;}
.y10d_c00007{bottom:275.706667pt;}
.y10e_c00007{bottom:277.253333pt;}
.y110_c00007{bottom:278.786667pt;}
.y10f_c00007{bottom:285.693333pt;}
.y100_c00007{bottom:289.533333pt;}
.yff_c00007{bottom:291.840000pt;}
.y103_c00007{bottom:293.373333pt;}
.y106_c00007{bottom:294.146667pt;}
.yfe_c00007{bottom:295.680000pt;}
.y101_c00007{bottom:296.453333pt;}
.yfd_c00007{bottom:297.213333pt;}
.y102_c00007{bottom:298.746667pt;}
.y109_c00007{bottom:299.520000pt;}
.y108_c00007{bottom:300.293333pt;}
.y104_c00007{bottom:301.826667pt;}
.y105_c00007{bottom:302.586667pt;}
.y107_c00007{bottom:305.666667pt;}
.yfc_c00007{bottom:307.200000pt;}
.yf8_c00007{bottom:313.346667pt;}
.yf7_c00007{bottom:314.106667pt;}
.yfa_c00007{bottom:315.653333pt;}
.yf9_c00007{bottom:316.413333pt;}
.yf6_c00007{bottom:317.186667pt;}
.yf5_c00007{bottom:317.946667pt;}
.yfb_c00007{bottom:321.786667pt;}
.yee_c00007{bottom:337.146667pt;}
.yf0_c00007{bottom:337.920000pt;}
.yf3_c00007{bottom:338.693333pt;}
.yf2_c00007{bottom:339.453333pt;}
.yf4_c00007{bottom:340.226667pt;}
.yf1_c00007{bottom:342.533333pt;}
.yef_c00007{bottom:344.066667pt;}
.ye5_c00007{bottom:356.346667pt;}
.ye7_c00007{bottom:357.120000pt;}
.ye8_c00007{bottom:357.893333pt;}
.ye4_c00007{bottom:358.653333pt;}
.yea_c00007{bottom:359.426667pt;}
.ye9_c00007{bottom:360.186667pt;}
.yed_c00007{bottom:361.733333pt;}
.ye2_c00007{bottom:363.266667pt;}
.yec_c00007{bottom:364.026667pt;}
.ye6_c00007{bottom:365.573333pt;}
.yeb_c00007{bottom:366.333333pt;}
.ye3_c00007{bottom:369.413333pt;}
.ydb_c00007{bottom:380.160000pt;}
.yd9_c00007{bottom:381.693333pt;}
.ydd_c00007{bottom:383.226667pt;}
.ydf_c00007{bottom:384.000000pt;}
.yde_c00007{bottom:385.533333pt;}
.yda_c00007{bottom:387.066667pt;}
.ydc_c00007{bottom:388.613333pt;}
.ye0_c00007{bottom:393.213333pt;}
.ye1_c00007{bottom:399.360000pt;}
.yd1_c00007{bottom:400.893333pt;}
.yd2_c00007{bottom:402.426667pt;}
.y50_c00007{bottom:403.200000pt;}
.ycf_c00007{bottom:403.973333pt;}
.yd3_c00007{bottom:404.733333pt;}
.yd5_c00007{bottom:406.266667pt;}
.yd0_c00007{bottom:407.813333pt;}
.yd4_c00007{bottom:408.573333pt;}
.yd8_c00007{bottom:409.346667pt;}
.yd6_c00007{bottom:410.880000pt;}
.yd7_c00007{bottom:419.333333pt;}
.yc8_c00007{bottom:424.706667pt;}
.yc6_c00007{bottom:425.466667pt;}
.yc7_c00007{bottom:426.240000pt;}
.ycd_c00007{bottom:427.013333pt;}
.ycb_c00007{bottom:427.773333pt;}
.yca_c00007{bottom:429.306667pt;}
.yc9_c00007{bottom:433.146667pt;}
.ycc_c00007{bottom:433.920000pt;}
.yce_c00007{bottom:439.293333pt;}
.ybd_c00007{bottom:447.746667pt;}
.ybf_c00007{bottom:448.506667pt;}
.yc2_c00007{bottom:449.280000pt;}
.yc3_c00007{bottom:450.053333pt;}
.ybe_c00007{bottom:450.813333pt;}
.yc1_c00007{bottom:451.586667pt;}
.yc5_c00007{bottom:453.120000pt;}
.ybc_c00007{bottom:453.893333pt;}
.yc0_c00007{bottom:455.426667pt;}
.yc4_c00007{bottom:456.960000pt;}
.yb3_c00007{bottom:469.253333pt;}
.yb5_c00007{bottom:470.013333pt;}
.yb7_c00007{bottom:470.786667pt;}
.yb8_c00007{bottom:471.546667pt;}
.yb9_c00007{bottom:472.320000pt;}
.yba_c00007{bottom:473.093333pt;}
.yb4_c00007{bottom:476.933333pt;}
.yb6_c00007{bottom:477.693333pt;}
.ybb_c00007{bottom:483.066667pt;}
.yac_c00007{bottom:493.053333pt;}
.yad_c00007{bottom:493.826667pt;}
.yae_c00007{bottom:494.586667pt;}
.yb0_c00007{bottom:495.360000pt;}
.yab_c00007{bottom:496.133333pt;}
.yb2_c00007{bottom:498.426667pt;}
.yaf_c00007{bottom:500.733333pt;}
.yb1_c00007{bottom:501.506667pt;}
.yaa_c00007{bottom:503.040000pt;}
.ya3_c00007{bottom:515.333333pt;}
.ya4_c00007{bottom:516.866667pt;}
.ya8_c00007{bottom:517.626667pt;}
.ya9_c00007{bottom:520.706667pt;}
.ya7_c00007{bottom:521.466667pt;}
.ya5_c00007{bottom:523.013333pt;}
.ya6_c00007{bottom:523.773333pt;}
.y9f_c00007{bottom:535.293333pt;}
.ya2_c00007{bottom:536.826667pt;}
.y9e_c00007{bottom:538.373333pt;}
.ya1_c00007{bottom:539.133333pt;}
.ya0_c00007{bottom:539.906667pt;}
.y9d_c00007{bottom:542.213333pt;}
.y9c_c00007{bottom:543.746667pt;}
.y9a_c00007{bottom:561.413333pt;}
.y94_c00007{bottom:562.173333pt;}
.y96_c00007{bottom:565.253333pt;}
.y98_c00007{bottom:566.013333pt;}
.y95_c00007{bottom:566.786667pt;}
.y97_c00007{bottom:567.546667pt;}
.y9b_c00007{bottom:568.320000pt;}
.y99_c00007{bottom:569.093333pt;}
.y93_c00007{bottom:576.000000pt;}
.y8e_c00007{bottom:582.146667pt;}
.y8d_c00007{bottom:583.680000pt;}
.y91_c00007{bottom:584.453333pt;}
.y8c_c00007{bottom:585.986667pt;}
.y88_c00007{bottom:587.520000pt;}
.y92_c00007{bottom:588.293333pt;}
.y90_c00007{bottom:590.586667pt;}
.y8f_c00007{bottom:591.360000pt;}
.y8b_c00007{bottom:592.133333pt;}
.y8a_c00007{bottom:592.893333pt;}
.y89_c00007{bottom:597.506667pt;}
.y87_c00007{bottom:599.813333pt;}
.y83_c00007{bottom:605.946667pt;}
.y82_c00007{bottom:606.720000pt;}
.y84_c00007{bottom:607.493333pt;}
.y85_c00007{bottom:610.560000pt;}
.y86_c00007{bottom:619.013333pt;}
.y7f_c00007{bottom:628.226667pt;}
.y7b_c00007{bottom:628.986667pt;}
.y7d_c00007{bottom:631.293333pt;}
.y7c_c00007{bottom:634.373333pt;}
.y7e_c00007{bottom:635.133333pt;}
.y80_c00007{bottom:635.906667pt;}
.y81_c00007{bottom:644.346667pt;}
.y78_c00007{bottom:646.653333pt;}
.y79_c00007{bottom:648.186667pt;}
.y77_c00007{bottom:650.493333pt;}
.y7a_c00007{bottom:655.866667pt;}
.y74_c00007{bottom:669.693333pt;}
.y75_c00007{bottom:670.466667pt;}
.y76_c00007{bottom:675.066667pt;}
.y73_c00007{bottom:675.840000pt;}
.y72_c00007{bottom:688.133333pt;}
.y6d_c00007{bottom:691.200000pt;}
.y71_c00007{bottom:691.973333pt;}
.y6e_c00007{bottom:694.266667pt;}
.y6c_c00007{bottom:696.573333pt;}
.y6f_c00007{bottom:697.346667pt;}
.y70_c00007{bottom:698.106667pt;}
.y68_c00007{bottom:711.173333pt;}
.y66_c00007{bottom:715.013333pt;}
.y69_c00007{bottom:715.773333pt;}
.y67_c00007{bottom:717.306667pt;}
.y6a_c00007{bottom:718.080000pt;}
.y6b_c00007{bottom:720.386667pt;}
.y60_c00007{bottom:734.213333pt;}
.y62_c00007{bottom:734.973333pt;}
.y64_c00007{bottom:735.746667pt;}
.y61_c00007{bottom:736.506667pt;}
.y65_c00007{bottom:737.280000pt;}
.y63_c00007{bottom:738.813333pt;}
.y5a_c00007{bottom:757.253333pt;}
.y5c_c00007{bottom:758.013333pt;}
.y5d_c00007{bottom:758.786667pt;}
.y5b_c00007{bottom:761.093333pt;}
.y5e_c00007{bottom:764.933333pt;}
.y5f_c00007{bottom:766.466667pt;}
.y54_c00007{bottom:780.293333pt;}
.y52_c00007{bottom:781.826667pt;}
.y56_c00007{bottom:782.586667pt;}
.y58_c00007{bottom:783.360000pt;}
.y4f_c00007{bottom:784.133333pt;}
.y55_c00007{bottom:784.893333pt;}
.y51_c00007{bottom:785.666667pt;}
.y53_c00007{bottom:786.426667pt;}
.y57_c00007{bottom:787.973333pt;}
.y59_c00007{bottom:790.266667pt;}
.y4d_c00007{bottom:821.760000pt;}
.y4b_c00007{bottom:822.533333pt;}
.y49_c00007{bottom:823.293333pt;}
.y4a_c00007{bottom:824.826667pt;}
.y4c_c00007{bottom:826.373333pt;}
.y45_c00007{bottom:827.906667pt;}
.y44_c00007{bottom:828.666667pt;}
.y4e_c00007{bottom:829.440000pt;}
.y43_c00007{bottom:830.213333pt;}
.y47_c00007{bottom:830.973333pt;}
.y46_c00007{bottom:831.746667pt;}
.y48_c00007{bottom:832.506667pt;}
.y3b_c00007{bottom:845.573333pt;}
.y3c_c00007{bottom:847.106667pt;}
.y40_c00007{bottom:847.866667pt;}
.y41_c00007{bottom:848.640000pt;}
.y3d_c00007{bottom:849.413333pt;}
.y42_c00007{bottom:850.173333pt;}
.y3e_c00007{bottom:856.320000pt;}
.y3f_c00007{bottom:857.853333pt;}
.y38_c00007{bottom:867.840000pt;}
.y39_c00007{bottom:869.373333pt;}
.y37_c00007{bottom:870.146667pt;}
.y3a_c00007{bottom:872.453333pt;}
.y34_c00007{bottom:873.986667pt;}
.y35_c00007{bottom:876.293333pt;}
.y32_c00007{bottom:878.586667pt;}
.y33_c00007{bottom:892.413333pt;}
.y36_c00007{bottom:896.253333pt;}
.y2e_c00007{bottom:900.866667pt;}
.y30_c00007{bottom:901.626667pt;}
.y2b_c00007{bottom:903.173333pt;}
.y2c_c00007{bottom:903.933333pt;}
.y2d_c00007{bottom:904.706667pt;}
.y2f_c00007{bottom:905.466667pt;}
.y31_c00007{bottom:912.386667pt;}
.y29_c00007{bottom:916.986667pt;}
.y2a_c00007{bottom:923.906667pt;}
.y28_c00007{bottom:930.053333pt;}
.y23_c00007{bottom:930.813333pt;}
.y24_c00007{bottom:931.586667pt;}
.y27_c00007{bottom:932.346667pt;}
.y25_c00007{bottom:933.120000pt;}
.y22_c00007{bottom:934.653333pt;}
.y21_c00007{bottom:942.333333pt;}
.y26_c00007{bottom:950.786667pt;}
.y17_c00007{bottom:953.093333pt;}
.y20_c00007{bottom:953.853333pt;}
.y1d_c00007{bottom:954.626667pt;}
.y1f_c00007{bottom:956.933333pt;}
.y1b_c00007{bottom:957.693333pt;}
.y1c_c00007{bottom:958.466667pt;}
.y1a_c00007{bottom:959.226667pt;}
.y19_c00007{bottom:960.000000pt;}
.y18_c00007{bottom:960.773333pt;}
.y1e_c00007{bottom:961.533333pt;}
.y14_c00007{bottom:963.066667pt;}
.y15_c00007{bottom:964.613333pt;}
.y16_c00007{bottom:966.146667pt;}
.y12_c00007{bottom:995.333333pt;}
.y10_c00007{bottom:996.866667pt;}
.y11_c00007{bottom:998.400000pt;}
.y13_c00007{bottom:999.173333pt;}
.ya_c00007{bottom:1001.466667pt;}
.yb_c00007{bottom:1002.240000pt;}
.yc_c00007{bottom:1003.013333pt;}
.yd_c00007{bottom:1004.546667pt;}
.yf_c00007{bottom:1005.306667pt;}
.ye_c00007{bottom:1006.080000pt;}
.y9_c00007{bottom:1212.666667pt;}
.y8_c00007{bottom:1223.426667pt;}
.y7_c00007{bottom:1224.960000pt;}
.y6_c00007{bottom:1231.106667pt;}
.y5_c00007{bottom:1247.226667pt;}
.y4_c00007{bottom:1249.533333pt;}
.y3_c00007{bottom:1251.066667pt;}
.y1_c00007{bottom:1262.586667pt;}
.y2_c00007{bottom:1265.666667pt;}
.h8_c00007{height:2.764500pt;}
.h10_c00007{height:4.799479pt;}
.h15_c00007{height:5.519401pt;}
.h5_c00007{height:8.303099pt;}
.h4_c00007{height:11.038802pt;}
.h26_c00007{height:11.343099pt;}
.h25_c00007{height:11.396432pt;}
.h7_c00007{height:13.822500pt;}
.h2_c00007{height:16.606198pt;}
.h27_c00007{height:19.341901pt;}
.h23_c00007{height:22.125599pt;}
.h6_c00007{height:23.663099pt;}
.h24_c00007{height:24.861302pt;}
.h13_c00007{height:27.645000pt;}
.h3_c00007{height:30.106068pt;}
.h30_c00007{height:30.428698pt;}
.h2a_c00007{height:33.164401pt;}
.h14_c00007{height:35.948099pt;}
.h29_c00007{height:38.683802pt;}
.h31_c00007{height:41.467500pt;}
.h2f_c00007{height:44.251198pt;}
.h1f_c00007{height:46.986901pt;}
.h1e_c00007{height:49.770599pt;}
.h20_c00007{height:52.506302pt;}
.h21_c00007{height:55.290000pt;}
.h17_c00007{height:58.073698pt;}
.h19_c00007{height:60.809401pt;}
.h2e_c00007{height:63.593099pt;}
.h1b_c00007{height:66.328802pt;}
.h22_c00007{height:69.112500pt;}
.h1c_c00007{height:71.896198pt;}
.h16_c00007{height:74.631901pt;}
.h2b_c00007{height:77.415599pt;}
.h18_c00007{height:80.151302pt;}
.h1d_c00007{height:82.935000pt;}
.h2d_c00007{height:85.718698pt;}
.h1a_c00007{height:88.454401pt;}
.h11_c00007{height:91.238099pt;}
.h32_c00007{height:96.757500pt;}
.h12_c00007{height:99.541198pt;}
.h28_c00007{height:102.276901pt;}
.h2c_c00007{height:105.060599pt;}
.hd_c00007{height:113.363698pt;}
.h9_c00007{height:116.099401pt;}
.he_c00007{height:118.883099pt;}
.ha_c00007{height:124.402500pt;}
.hc_c00007{height:127.186198pt;}
.hf_c00007{height:143.744401pt;}
.hb_c00007{height:152.047500pt;}
.h0_c00007{height:1338.626667pt;}
.h1_c00007{height:1338.666667pt;}
.w1_c00007{width:952.000000pt;}
.w0_c00007{width:952.320000pt;}
.x0_c00007{left:0.000000pt;}
.x102_c00007{left:2.306667pt;}
.x60_c00007{left:3.840000pt;}
.x103_c00007{left:7.680000pt;}
.x9_c00007{left:52.986667pt;}
.xa_c00007{left:63.746667pt;}
.x49_c00007{left:80.640000pt;}
.x61_c00007{left:92.160000pt;}
.x4a_c00007{left:94.466667pt;}
.x4b_c00007{left:155.906667pt;}
.x62_c00007{left:160.506667pt;}
.x91_c00007{left:178.946667pt;}
.xd4_c00007{left:186.626667pt;}
.xd5_c00007{left:195.066667pt;}
.xa9_c00007{left:196.613333pt;}
.x1_c00007{left:198.906667pt;}
.xa1_c00007{left:200.453333pt;}
.x87_c00007{left:203.520000pt;}
.xde_c00007{left:205.053333pt;}
.x2_c00007{left:207.360000pt;}
.x1d_c00007{left:210.426667pt;}
.x46_c00007{left:215.813333pt;}
.x43_c00007{left:217.346667pt;}
.xad_c00007{left:218.880000pt;}
.x88_c00007{left:221.186667pt;}
.x99_c00007{left:224.253333pt;}
.x13_c00007{left:226.560000pt;}
.xe3_c00007{left:230.400000pt;}
.xb3_c00007{left:231.933333pt;}
.x20_c00007{left:234.240000pt;}
.x37_c00007{left:236.546667pt;}
.xbc_c00007{left:238.853333pt;}
.x29_c00007{left:246.533333pt;}
.x9a_c00007{left:249.600000pt;}
.xc3_c00007{left:252.666667pt;}
.xfc_c00007{left:254.213333pt;}
.x2a_c00007{left:256.506667pt;}
.x38_c00007{left:258.813333pt;}
.xc4_c00007{left:260.346667pt;}
.xf6_c00007{left:263.426667pt;}
.xaa_c00007{left:264.960000pt;}
.x89_c00007{left:268.026667pt;}
.xd6_c00007{left:271.866667pt;}
.x39_c00007{left:278.786667pt;}
.x8a_c00007{left:281.853333pt;}
.x92_c00007{left:284.160000pt;}
.xc5_c00007{left:288.773333pt;}
.xb4_c00007{left:294.146667pt;}
.x2b_c00007{left:296.453333pt;}
.xb_c00007{left:297.986667pt;}
.xdf_c00007{left:299.520000pt;}
.xb5_c00007{left:303.360000pt;}
.xae_c00007{left:306.426667pt;}
.x21_c00007{left:309.506667pt;}
.xa2_c00007{left:311.040000pt;}
.xf7_c00007{left:313.346667pt;}
.x44_c00007{left:314.880000pt;}
.x22_c00007{left:317.946667pt;}
.x2c_c00007{left:320.253333pt;}
.xe8_c00007{left:323.333333pt;}
.x83_c00007{left:326.400000pt;}
.xda_c00007{left:329.466667pt;}
.x52_c00007{left:332.546667pt;}
.x23_c00007{left:334.853333pt;}
.xc_c00007{left:337.146667pt;}
.xeb_c00007{left:340.226667pt;}
.xef_c00007{left:341.760000pt;}
.x24_c00007{left:343.293333pt;}
.xfd_c00007{left:345.600000pt;}
.x14_c00007{left:348.666667pt;}
.x53_c00007{left:352.506667pt;}
.xa3_c00007{left:363.266667pt;}
.x3a_c00007{left:364.800000pt;}
.xec_c00007{left:367.866667pt;}
.x15_c00007{left:371.706667pt;}
.xb6_c00007{left:373.253333pt;}
.x93_c00007{left:374.786667pt;}
.x4d_c00007{left:376.320000pt;}
.x7b_c00007{left:377.853333pt;}
.x25_c00007{left:383.226667pt;}
.x63_c00007{left:385.533333pt;}
.x2d_c00007{left:387.066667pt;}
.x4e_c00007{left:388.613333pt;}
.x9b_c00007{left:391.680000pt;}
.x16_c00007{left:393.213333pt;}
.xdb_c00007{left:398.586667pt;}
.xab_c00007{left:403.200000pt;}
.x3b_c00007{left:404.733333pt;}
.x1e_c00007{left:406.266667pt;}
.x8b_c00007{left:408.573333pt;}
.x2e_c00007{left:410.880000pt;}
.x54_c00007{left:414.720000pt;}
.xd_c00007{left:417.786667pt;}
.xc6_c00007{left:419.333333pt;}
.x17_c00007{left:422.400000pt;}
.x2f_c00007{left:424.706667pt;}
.x6b_c00007{left:426.240000pt;}
.xb7_c00007{left:429.306667pt;}
.x47_c00007{left:431.613333pt;}
.xaf_c00007{left:433.146667pt;}
.x55_c00007{left:435.453333pt;}
.x94_c00007{left:437.760000pt;}
.x5e_c00007{left:439.293333pt;}
.xed_c00007{left:442.373333pt;}
.x3_c00007{left:446.213333pt;}
.x6c_c00007{left:449.280000pt;}
.xf0_c00007{left:451.586667pt;}
.xb8_c00007{left:453.120000pt;}
.x9c_c00007{left:455.426667pt;}
.x26_c00007{left:456.960000pt;}
.x76_c00007{left:461.573333pt;}
.xcc_c00007{left:463.106667pt;}
.x64_c00007{left:464.640000pt;}
.xf8_c00007{left:466.946667pt;}
.xd7_c00007{left:468.480000pt;}
.xee_c00007{left:472.320000pt;}
.x27_c00007{left:474.626667pt;}
.x56_c00007{left:476.160000pt;}
.x4_c00007{left:478.466667pt;}
.x30_c00007{left:480.000000pt;}
.x65_c00007{left:481.533333pt;}
.x95_c00007{left:483.840000pt;}
.x48_c00007{left:486.906667pt;}
.x6d_c00007{left:490.746667pt;}
.x73_c00007{left:493.826667pt;}
.x18_c00007{left:495.360000pt;}
.xa4_c00007{left:497.666667pt;}
.x19_c00007{left:502.266667pt;}
.x66_c00007{left:503.813333pt;}
.x5f_c00007{left:505.346667pt;}
.x8c_c00007{left:506.880000pt;}
.xcd_c00007{left:508.413333pt;}
.x57_c00007{left:510.720000pt;}
.xfe_c00007{left:515.333333pt;}
.x3c_c00007{left:516.866667pt;}
.xb0_c00007{left:519.933333pt;}
.x7_c00007{left:529.146667pt;}
.x58_c00007{left:532.226667pt;}
.x6_c00007{left:533.760000pt;}
.x7c_c00007{left:536.826667pt;}
.x8_c00007{left:539.906667pt;}
.x1a_c00007{left:542.213333pt;}
.x77_c00007{left:545.280000pt;}
.x31_c00007{left:549.893333pt;}
.x59_c00007{left:552.960000pt;}
.xce_c00007{left:556.026667pt;}
.xc7_c00007{left:558.333333pt;}
.xe_c00007{left:559.866667pt;}
.x67_c00007{left:562.173333pt;}
.xff_c00007{left:566.013333pt;}
.x9d_c00007{left:567.546667pt;}
.x5a_c00007{left:569.093333pt;}
.xa5_c00007{left:570.626667pt;}
.x84_c00007{left:572.160000pt;}
.x4c_c00007{left:573.693333pt;}
.xf9_c00007{left:577.533333pt;}
.x96_c00007{left:581.373333pt;}
.x80_c00007{left:583.680000pt;}
.x5b_c00007{left:585.213333pt;}
.x1f_c00007{left:587.520000pt;}
.x78_c00007{left:593.666667pt;}
.x8d_c00007{left:595.200000pt;}
.x32_c00007{left:598.266667pt;}
.x5c_c00007{left:599.813333pt;}
.xc8_c00007{left:601.346667pt;}
.x3d_c00007{left:602.880000pt;}
.x4f_c00007{left:606.720000pt;}
.x7d_c00007{left:609.786667pt;}
.xf_c00007{left:612.093333pt;}
.x3e_c00007{left:616.706667pt;}
.x9e_c00007{left:619.013333pt;}
.x5d_c00007{left:620.546667pt;}
.x50_c00007{left:622.080000pt;}
.x33_c00007{left:623.613333pt;}
.x28_c00007{left:625.146667pt;}
.x1b_c00007{left:626.693333pt;}
.xe4_c00007{left:630.533333pt;}
.x97_c00007{left:634.373333pt;}
.x51_c00007{left:638.213333pt;}
.xcf_c00007{left:644.346667pt;}
.x6e_c00007{left:645.893333pt;}
.xdc_c00007{left:647.426667pt;}
.x34_c00007{left:649.733333pt;}
.x6f_c00007{left:652.026667pt;}
.x45_c00007{left:653.573333pt;}
.x3f_c00007{left:655.866667pt;}
.xd0_c00007{left:658.946667pt;}
.x79_c00007{left:661.253333pt;}
.x10_c00007{left:662.786667pt;}
.x8e_c00007{left:664.320000pt;}
.xbd_c00007{left:668.160000pt;}
.x9f_c00007{left:669.693333pt;}
.x40_c00007{left:672.000000pt;}
.x35_c00007{left:674.306667pt;}
.xe5_c00007{left:678.146667pt;}
.x7e_c00007{left:679.680000pt;}
.x68_c00007{left:682.746667pt;}
.x70_c00007{left:685.053333pt;}
.x7a_c00007{left:686.586667pt;}
.x36_c00007{left:689.666667pt;}
.xa6_c00007{left:691.200000pt;}
.x41_c00007{left:692.733333pt;}
.xd8_c00007{left:694.266667pt;}
.xb1_c00007{left:696.573333pt;}
.x81_c00007{left:698.880000pt;}
.x11_c00007{left:701.186667pt;}
.x8f_c00007{left:705.026667pt;}
.x5_c00007{left:707.333333pt;}
.x42_c00007{left:709.626667pt;}
.x71_c00007{left:713.466667pt;}
.xac_c00007{left:716.546667pt;}
.xf1_c00007{left:718.080000pt;}
.x85_c00007{left:722.693333pt;}
.x72_c00007{left:724.986667pt;}
.xbe_c00007{left:726.533333pt;}
.xa0_c00007{left:728.066667pt;}
.xe9_c00007{left:731.133333pt;}
.x69_c00007{left:738.053333pt;}
.x98_c00007{left:743.426667pt;}
.xb9_c00007{left:745.733333pt;}
.x12_c00007{left:748.800000pt;}
.xdd_c00007{left:758.013333pt;}
.xa7_c00007{left:768.000000pt;}
.xd9_c00007{left:771.066667pt;}
.x6a_c00007{left:773.373333pt;}
.x74_c00007{left:774.906667pt;}
.xa8_c00007{left:776.453333pt;}
.x90_c00007{left:778.746667pt;}
.x75_c00007{left:783.360000pt;}
.x86_c00007{left:785.666667pt;}
.x82_c00007{left:787.973333pt;}
.x7f_c00007{left:791.813333pt;}
.xbf_c00007{left:794.106667pt;}
.xb2_c00007{left:802.560000pt;}
.xba_c00007{left:806.400000pt;}
.xfa_c00007{left:808.706667pt;}
.xe0_c00007{left:811.013333pt;}
.xc9_c00007{left:813.306667pt;}
.xbb_c00007{left:815.613333pt;}
.xc0_c00007{left:824.066667pt;}
.xd1_c00007{left:825.600000pt;}
.x1c_c00007{left:830.973333pt;}
.xc1_c00007{left:832.506667pt;}
.xf2_c00007{left:836.346667pt;}
.xf3_c00007{left:838.653333pt;}
.xd2_c00007{left:840.186667pt;}
.x100_c00007{left:841.733333pt;}
.xca_c00007{left:844.026667pt;}
.xe6_c00007{left:845.573333pt;}
.xea_c00007{left:847.866667pt;}
.xe1_c00007{left:854.013333pt;}
.xe7_c00007{left:855.546667pt;}
.xfb_c00007{left:860.933333pt;}
.xe2_c00007{left:863.226667pt;}
.xcb_c00007{left:865.533333pt;}
.xf4_c00007{left:872.453333pt;}
.xd3_c00007{left:880.133333pt;}
.xc2_c00007{left:881.666667pt;}
.x101_c00007{left:883.200000pt;}
.xf5_c00007{left:886.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66310de6804a50b0344693ce.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:1.109863;font-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_c00008{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1bf_c00008{transform:matrix(0.039475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039475,0.000000,0.000000,0.250000,0,0);}
.m24_c00008{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m5_c00008{transform:matrix(0.052125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052125,0.000000,0.000000,0.250000,0,0);}
.m1e8_c00008{transform:matrix(0.054225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054225,0.000000,0.000000,0.250000,0,0);}
.m63_c00008{transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);}
.m181_c00008{transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);}
.m9d_c00008{transform:matrix(0.085650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085650,0.000000,0.000000,0.250000,0,0);}
.m18_c00008{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m184_c00008{transform:matrix(0.094100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094100,0.000000,0.000000,0.250000,0,0);}
.m1d9_c00008{transform:matrix(0.094450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094450,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00008{transform:matrix(0.096425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096425,0.000000,0.000000,0.250000,0,0);}
.m49_c00008{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);}
.m1a4_c00008{transform:matrix(0.100350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100350,0.000000,0.000000,0.250000,0,0);}
.m4a_c00008{transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00008{transform:matrix(0.103650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103650,0.000000,0.000000,0.250000,0,0);}
.m1ca_c00008{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m1cb_c00008{transform:matrix(0.104825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104825,0.000000,0.000000,0.250000,0,0);}
.m1e1_c00008{transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105000,0.000000,0.000000,0.250000,0,0);}
.m1d2_c00008{transform:matrix(0.105450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105450,0.000000,0.000000,0.250000,0,0);}
.m1eb_c00008{transform:matrix(0.106275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106275,0.000000,0.000000,0.250000,0,0);}
.m14_c00008{transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);}
.m150_c00008{transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);}
.mef_c00008{transform:matrix(0.112675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112675,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00008{transform:matrix(0.113050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113050,0.000000,0.000000,0.250000,0,0);}
.m1de_c00008{transform:matrix(0.115200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115200,0.000000,0.000000,0.250000,0,0);}
.m18f_c00008{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m187_c00008{transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00008{transform:matrix(0.118600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118600,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00008{transform:matrix(0.118725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118725,0.000000,0.000000,0.250000,0,0);}
.md_c00008{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m6e_c00008{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m1c9_c00008{transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);}
.mb5_c00008{transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);}
.m189_c00008{transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);}
.m92_c00008{transform:matrix(0.124775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124775,0.000000,0.000000,0.250000,0,0);}
.m6a_c00008{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m195_c00008{transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);}
.mb_c00008{transform:matrix(0.126550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126550,0.000000,0.000000,0.250000,0,0);}
.mf0_c00008{transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);}
.ma6_c00008{transform:matrix(0.126700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126700,0.000000,0.000000,0.250000,0,0);}
.m14b_c00008{transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);}
.m1d5_c00008{transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);}
.m1e5_c00008{transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);}
.mce_c00008{transform:matrix(0.129825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129825,0.000000,0.000000,0.250000,0,0);}
.m19d_c00008{transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);}
.m1e6_c00008{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);}
.m4d_c00008{transform:matrix(0.132725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132725,0.000000,0.000000,0.250000,0,0);}
.m166_c00008{transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);}
.m186_c00008{transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);}
.mcd_c00008{transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);}
.m98_c00008{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m30_c00008{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m16f_c00008{transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);}
.me6_c00008{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m194_c00008{transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);}
.m156_c00008{transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);}
.m182_c00008{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);}
.m1e0_c00008{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);}
.m85_c00008{transform:matrix(0.138800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138800,0.000000,0.000000,0.250000,0,0);}
.m15e_c00008{transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);}
.m177_c00008{transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00008{transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);}
.m1cc_c00008{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.m1be_c00008{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.m1df_c00008{transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);}
.m168_c00008{transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);}
.m193_c00008{transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);}
.m4c_c00008{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00008{transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);}
.m50_c00008{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.m16d_c00008{transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);}
.m3_c00008{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m188_c00008{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.mdb_c00008{transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);}
.m1e4_c00008{transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);}
.m158_c00008{transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);}
.m15c_c00008{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);}
.m93_c00008{transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);}
.m61_c00008{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m185_c00008{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.m197_c00008{transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);}
.m164_c00008{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m11a_c00008{transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);}
.m13c_c00008{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00008{transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);}
.m120_c00008{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.mfd_c00008{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);}
.m7b_c00008{transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);}
.m199_c00008{transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);}
.m16c_c00008{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);}
.m171_c00008{transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);}
.m8c_c00008{transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00008{transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);}
.meb_c00008{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.m1a_c00008{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m180_c00008{transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);}
.m183_c00008{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);}
.maf_c00008{transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);}
.m170_c00008{transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);}
.m192_c00008{transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);}
.m138_c00008{transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00008{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m17d_c00008{transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);}
.m1c0_c00008{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);}
.m130_c00008{transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);}
.m18c_c00008{transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);}
.m10e_c00008{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.m20_c00008{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.m15b_c00008{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.ma0_c00008{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);}
.ma3_c00008{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.m1cf_c00008{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);}
.m115_c00008{transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);}
.m15_c00008{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m17c_c00008{transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);}
.m67_c00008{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.mb9_c00008{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m7_c00008{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m1ea_c00008{transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);}
.m141_c00008{transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);}
.m2a_c00008{transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);}
.m1e9_c00008{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);}
.m1b1_c00008{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.m110_c00008{transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);}
.mab_c00008{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);}
.md3_c00008{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m107_c00008{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.m8_c00008{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.m31_c00008{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.m11f_c00008{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.m19c_c00008{transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00008{transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);}
.m1c7_c00008{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.mb1_c00008{transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);}
.me7_c00008{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);}
.m104_c00008{transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);}
.m9a_c00008{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.mc3_c00008{transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);}
.mf4_c00008{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.mf2_c00008{transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);}
.m13b_c00008{transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);}
.m5b_c00008{transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);}
.m86_c00008{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.m71_c00008{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m13e_c00008{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.m172_c00008{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);}
.m10d_c00008{transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);}
.m191_c00008{transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);}
.m10c_c00008{transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);}
.m9_c00008{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00008{transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);}
.m37_c00008{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m1d6_c00008{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);}
.m1d0_c00008{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.m11d_c00008{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.m6b_c00008{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.mfe_c00008{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.ma2_c00008{transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);}
.m96_c00008{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m118_c00008{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m16a_c00008{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.m59_c00008{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m58_c00008{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m12e_c00008{transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);}
.m7a_c00008{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m13f_c00008{transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);}
.mbe_c00008{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);}
.me2_c00008{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m136_c00008{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.m1d_c00008{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);}
.ma9_c00008{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m176_c00008{transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);}
.md2_c00008{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.m13d_c00008{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);}
.mf7_c00008{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.mfb_c00008{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m117_c00008{transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);}
.m19_c00008{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.md9_c00008{transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);}
.m4f_c00008{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.m64_c00008{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.m10_c00008{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);}
.m198_c00008{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m12f_c00008{transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);}
.m12d_c00008{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);}
.m142_c00008{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);}
.mbb_c00008{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);}
.m1c8_c00008{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);}
.ma4_c00008{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);}
.m17e_c00008{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m1da_c00008{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.mea_c00008{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);}
.md7_c00008{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m79_c00008{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);}
.m119_c00008{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);}
.m190_c00008{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);}
.m18d_c00008{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m95_c00008{transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);}
.m19b_c00008{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);}
.mb4_c00008{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m133_c00008{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m72_c00008{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.m3d_c00008{transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);}
.m51_c00008{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.m123_c00008{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m1c4_c00008{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m100_c00008{transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);}
.m151_c00008{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m9f_c00008{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.mfc_c00008{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m1ba_c00008{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.m18b_c00008{transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);}
.mc2_c00008{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.mc0_c00008{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m131_c00008{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m127_c00008{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m65_c00008{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);}
.mad_c00008{transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);}
.m1ce_c00008{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m6f_c00008{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);}
.m62_c00008{transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);}
.m66_c00008{transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00008{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);}
.m39_c00008{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.mfa_c00008{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mda_c00008{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.m69_c00008{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.m16b_c00008{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);}
.m149_c00008{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.m1b8_c00008{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.mbf_c00008{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00008{transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);}
.m9e_c00008{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);}
.m8b_c00008{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m19e_c00008{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.mde_c00008{transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);}
.m29_c00008{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);}
.m108_c00008{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);}
.m1c1_c00008{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.mdd_c00008{transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);}
.m1db_c00008{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m87_c00008{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m174_c00008{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m14e_c00008{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m139_c00008{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00008{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.m135_c00008{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00008{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m53_c00008{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);}
.m196_c00008{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);}
.m173_c00008{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);}
.m5c_c00008{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.m129_c00008{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.m1e2_c00008{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);}
.m56_c00008{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);}
.m1d8_c00008{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);}
.m6c_c00008{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m1ed_c00008{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);}
.m1b9_c00008{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);}
.m1ee_c00008{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m1d1_c00008{transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);}
.m109_c00008{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);}
.me0_c00008{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.m128_c00008{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.m19f_c00008{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);}
.m11_c00008{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);}
.m38_c00008{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.m111_c00008{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);}
.me4_c00008{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m1d4_c00008{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);}
.m121_c00008{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);}
.m27_c00008{transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);}
.m81_c00008{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00008{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);}
.m1ae_c00008{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m16e_c00008{transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);}
.m73_c00008{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.m1c5_c00008{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00008{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);}
.m14d_c00008{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.ma7_c00008{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.md1_c00008{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.md4_c00008{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m9b_c00008{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);}
.m1bc_c00008{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.med_c00008{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);}
.md6_c00008{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);}
.m15f_c00008{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m77_c00008{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.m82_c00008{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);}
.mcb_c00008{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.m147_c00008{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);}
.m1e3_c00008{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);}
.m3e_c00008{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.m88_c00008{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m175_c00008{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);}
.m90_c00008{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m152_c00008{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m43_c00008{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);}
.m178_c00008{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.mcc_c00008{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);}
.m143_c00008{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);}
.m42_c00008{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);}
.m1f_c00008{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.mc1_c00008{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00008{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);}
.m33_c00008{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);}
.m146_c00008{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);}
.m167_c00008{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);}
.mec_c00008{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00008{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);}
.md5_c00008{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.m10b_c00008{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);}
.m160_c00008{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);}
.m7d_c00008{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m1c6_c00008{transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);}
.m3f_c00008{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);}
.m8a_c00008{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m1dc_c00008{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);}
.m2c_c00008{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);}
.mb6_c00008{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);}
.m1e7_c00008{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);}
.m179_c00008{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);}
.m1c3_c00008{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00008{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.mac_c00008{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);}
.m14f_c00008{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.m78_c00008{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00008{transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);}
.mf9_c00008{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m116_c00008{transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);}
.maa_c00008{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1e_c00008{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);}
.mcf_c00008{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);}
.m11b_c00008{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.mbd_c00008{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);}
.m55_c00008{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);}
.m140_c00008{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00008{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.m18e_c00008{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m15d_c00008{transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);}
.m1c2_c00008{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.m12_c00008{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.m12a_c00008{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.m17f_c00008{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);}
.m112_c00008{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m41_c00008{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);}
.m13_c00008{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);}
.m68_c00008{transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);}
.m103_c00008{transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);}
.mbc_c00008{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);}
.m1bb_c00008{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);}
.m1d3_c00008{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.m4b_c00008{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m17_c00008{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);}
.m89_c00008{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);}
.mf6_c00008{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);}
.m17a_c00008{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00008{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m7c_c00008{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);}
.mba_c00008{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);}
.m1a0_c00008{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m154_c00008{transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);}
.m21_c00008{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);}
.mae_c00008{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);}
.m75_c00008{transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);}
.m124_c00008{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.me5_c00008{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);}
.m1a6_c00008{transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);}
.me8_c00008{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);}
.m7f_c00008{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m1af_c00008{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m4e_c00008{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);}
.m8d_c00008{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m2f_c00008{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);}
.m161_c00008{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);}
.m76_c00008{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m5d_c00008{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);}
.m19a_c00008{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);}
.m106_c00008{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);}
.m102_c00008{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);}
.m153_c00008{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);}
.m1cd_c00008{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.m155_c00008{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);}
.m132_c00008{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);}
.m105_c00008{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);}
.md0_c00008{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);}
.m83_c00008{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.me3_c00008{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m12b_c00008{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);}
.mb0_c00008{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);}
.mc9_c00008{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m16_c00008{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.mdc_c00008{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);}
.m3c_c00008{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);}
.m99_c00008{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);}
.m1c_c00008{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c00008{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);}
.m10f_c00008{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);}
.m2b_c00008{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);}
.m5a_c00008{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);}
.me1_c00008{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m57_c00008{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mca_c00008{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m113_c00008{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);}
.mc8_c00008{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m26_c00008{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);}
.m47_c00008{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);}
.mc_c00008{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m122_c00008{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);}
.m6_c00008{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m91_c00008{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00008{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);}
.me_c00008{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m44_c00008{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);}
.m40_c00008{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);}
.m52_c00008{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00008{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m36_c00008{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);}
.m25_c00008{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00008{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);}
.m11c_c00008{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m35_c00008{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m144_c00008{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m60_c00008{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m45_c00008{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00008{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00008{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);}
.m23_c00008{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m114_c00008{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m84_c00008{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);}
.m2e_c00008{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);}
.ma5_c00008{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m34_c00008{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);}
.m22_c00008{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md8_c00008{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m97_c00008{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);}
.mc6_c00008{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m125_c00008{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);}
.mf8_c00008{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00008{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);}
.m1a9_c00008{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mff_c00008{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m126_c00008{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m13a_c00008{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m159_c00008{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m46_c00008{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);}
.mc4_c00008{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);}
.m1ac_c00008{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m80_c00008{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);}
.m134_c00008{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m148_c00008{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m169_c00008{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00008{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00008{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00008{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1dd_c00008{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m162_c00008{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);}
.m7e_c00008{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m17b_c00008{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m145_c00008{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m14c_c00008{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m15a_c00008{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mee_c00008{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4_c00008{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);}
.m14a_c00008{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00008{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m94_c00008{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m0_c00008{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);}
.m157_c00008{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m70_c00008{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00008{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00008{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m101_c00008{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m137_c00008{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00008{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m74_c00008{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1d7_c00008{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m163_c00008{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m48_c00008{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m28_c00008{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.me9_c00008{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00008{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m18a_c00008{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);}
.m3b_c00008{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00008{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00008{transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);}
.m165_c00008{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00008{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m32_c00008{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.m1ec_c00008{transform:matrix(2.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.195000,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00008{transform:matrix(4.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.530000,0.000000,0.000000,0.250000,0,0);}
.m1_c00008{transform:matrix(13.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(13.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(13.462500,0.000000,0.000000,0.250000,0,0);}
.m2_c00008{transform:matrix(18.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(18.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(18.145000,0.000000,0.000000,0.250000,0,0);}
.v2_c00008{vertical-align:-17.280000px;}
.v0_c00008{vertical-align:0.000000px;}
.v1_c00008{vertical-align:3.480000px;}
.ls1_c00008{letter-spacing:0.000000px;}
.ls0_c00008{letter-spacing:41.024688px;}
.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;}
}
.ws3_c00008{word-spacing:-5.486880px;}
.ws5_c00008{word-spacing:0.000000px;}
.ws0_c00008{word-spacing:37.218900px;}
.ws2_c00008{word-spacing:40.194900px;}
.ws4_c00008{word-spacing:41.912304px;}
.ws1_c00008{word-spacing:177.087552px;}
._0_c00008{width:173.451600px;}
.fc0_c00008{color:transparent;}
.fs3_c00008{font-size:3.456000px;}
.fs4_c00008{font-size:6.000000px;}
.fs5_c00008{font-size:6.900000px;}
.fs1c_c00008{font-size:10.380000px;}
.fs2_c00008{font-size:13.800000px;}
.fs20_c00008{font-size:17.280000px;}
.fs1_c00008{font-size:20.760000px;}
.fs0_c00008{font-size:24.180000px;}
.fs22_c00008{font-size:27.660000px;}
.fs16_c00008{font-size:31.080000px;}
.fs19_c00008{font-size:34.560000px;}
.fs1f_c00008{font-size:38.040000px;}
.fse_c00008{font-size:41.460000px;}
.fs15_c00008{font-size:44.940000px;}
.fs18_c00008{font-size:48.360000px;}
.fs1a_c00008{font-size:51.840000px;}
.fs1d_c00008{font-size:55.320000px;}
.fs17_c00008{font-size:58.740000px;}
.fs14_c00008{font-size:62.220000px;}
.fsc_c00008{font-size:65.640000px;}
.fsf_c00008{font-size:69.120000px;}
.fsa_c00008{font-size:72.600000px;}
.fs10_c00008{font-size:76.020000px;}
.fs1b_c00008{font-size:79.500000px;}
.fs6_c00008{font-size:82.920000px;}
.fs12_c00008{font-size:86.400000px;}
.fs1e_c00008{font-size:89.880000px;}
.fs13_c00008{font-size:93.300000px;}
.fs7_c00008{font-size:96.780000px;}
.fs8_c00008{font-size:100.200000px;}
.fs11_c00008{font-size:103.680000px;}
.fs9_c00008{font-size:107.160000px;}
.fs21_c00008{font-size:110.580000px;}
.fs25_c00008{font-size:114.060000px;}
.fsb_c00008{font-size:117.480000px;}
.fs24_c00008{font-size:120.960000px;}
.fsd_c00008{font-size:124.440000px;}
.fs23_c00008{font-size:127.860000px;}
.fs26_c00008{font-size:131.340000px;}
.fs27_c00008{font-size:134.760000px;}
.y0_c00008{bottom:0.000000px;}
.y198_c00008{bottom:235.005000px;}
.y197_c00008{bottom:239.325000px;}
.y199_c00008{bottom:242.790000px;}
.y196_c00008{bottom:243.645000px;}
.y19a_c00008{bottom:245.370000px;}
.y190_c00008{bottom:247.110000px;}
.y191_c00008{bottom:247.965000px;}
.y193_c00008{bottom:248.835000px;}
.y192_c00008{bottom:249.690000px;}
.y18f_c00008{bottom:250.560000px;}
.y195_c00008{bottom:252.285000px;}
.y18c_c00008{bottom:254.010000px;}
.y18b_c00008{bottom:254.880000px;}
.y194_c00008{bottom:258.330000px;}
.y18d_c00008{bottom:259.200000px;}
.y18e_c00008{bottom:272.160000px;}
.y18a_c00008{bottom:275.610000px;}
.y186_c00008{bottom:276.480000px;}
.y188_c00008{bottom:277.350000px;}
.y189_c00008{bottom:280.800000px;}
.y187_c00008{bottom:291.165000px;}
.y17e_c00008{bottom:300.675000px;}
.y17f_c00008{bottom:301.530000px;}
.y184_c00008{bottom:303.270000px;}
.y182_c00008{bottom:304.125000px;}
.y185_c00008{bottom:304.995000px;}
.y181_c00008{bottom:307.590000px;}
.y183_c00008{bottom:308.445000px;}
.y180_c00008{bottom:315.360000px;}
.y17a_c00008{bottom:324.870000px;}
.y17d_c00008{bottom:325.725000px;}
.y17b_c00008{bottom:326.595000px;}
.y177_c00008{bottom:327.450000px;}
.y175_c00008{bottom:329.190000px;}
.y179_c00008{bottom:330.045000px;}
.y176_c00008{bottom:331.770000px;}
.y17c_c00008{bottom:332.640000px;}
.y178_c00008{bottom:333.510000px;}
.y174_c00008{bottom:348.195000px;}
.y170_c00008{bottom:349.050000px;}
.y173_c00008{bottom:350.790000px;}
.y172_c00008{bottom:351.645000px;}
.y16f_c00008{bottom:352.515000px;}
.y171_c00008{bottom:353.370000px;}
.y16e_c00008{bottom:374.115000px;}
.y16c_c00008{bottom:374.970000px;}
.y169_c00008{bottom:375.840000px;}
.y16d_c00008{bottom:378.435000px;}
.y16b_c00008{bottom:380.160000px;}
.y16a_c00008{bottom:384.480000px;}
.y168_c00008{bottom:394.845000px;}
.y164_c00008{bottom:401.760000px;}
.y15f_c00008{bottom:402.630000px;}
.y160_c00008{bottom:403.485000px;}
.y165_c00008{bottom:404.355000px;}
.y161_c00008{bottom:406.080000px;}
.y162_c00008{bottom:407.805000px;}
.y163_c00008{bottom:409.530000px;}
.y167_c00008{bottom:412.125000px;}
.y166_c00008{bottom:413.850000px;}
.y158_c00008{bottom:417.315000px;}
.y15b_c00008{bottom:418.170000px;}
.y15e_c00008{bottom:419.040000px;}
.y154_c00008{bottom:422.490000px;}
.y159_c00008{bottom:425.085000px;}
.y15a_c00008{bottom:425.955000px;}
.y157_c00008{bottom:426.810000px;}
.y15c_c00008{bottom:428.550000px;}
.y156_c00008{bottom:430.275000px;}
.y15d_c00008{bottom:431.130000px;}
.y155_c00008{bottom:435.450000px;}
.y151_c00008{bottom:449.280000px;}
.y150_c00008{bottom:450.150000px;}
.y14f_c00008{bottom:451.005000px;}
.y152_c00008{bottom:451.875000px;}
.y14e_c00008{bottom:452.730000px;}
.y153_c00008{bottom:457.050000px;}
.y14c_c00008{bottom:472.605000px;}
.y147_c00008{bottom:476.925000px;}
.y14d_c00008{bottom:477.795000px;}
.y148_c00008{bottom:478.650000px;}
.y149_c00008{bottom:481.245000px;}
.y14b_c00008{bottom:482.970000px;}
.y14a_c00008{bottom:483.840000px;}
.y141_c00008{bottom:495.075000px;}
.y13f_c00008{bottom:495.930000px;}
.y143_c00008{bottom:496.800000px;}
.y145_c00008{bottom:497.670000px;}
.y142_c00008{bottom:501.120000px;}
.y140_c00008{bottom:501.990000px;}
.y146_c00008{bottom:507.165000px;}
.y144_c00008{bottom:508.890000px;}
.y13d_c00008{bottom:525.315000px;}
.y13c_c00008{bottom:526.170000px;}
.y137_c00008{bottom:527.040000px;}
.y13a_c00008{bottom:531.360000px;}
.y13e_c00008{bottom:533.085000px;}
.y13b_c00008{bottom:533.955000px;}
.y139_c00008{bottom:534.810000px;}
.y138_c00008{bottom:535.680000px;}
.y132_c00008{bottom:551.235000px;}
.y135_c00008{bottom:552.090000px;}
.y136_c00008{bottom:552.960000px;}
.y133_c00008{bottom:554.685000px;}
.y131_c00008{bottom:555.555000px;}
.y134_c00008{bottom:556.410000px;}
.y12f_c00008{bottom:574.560000px;}
.y12c_c00008{bottom:576.285000px;}
.y12b_c00008{bottom:578.880000px;}
.y12d_c00008{bottom:580.605000px;}
.y12e_c00008{bottom:584.925000px;}
.y130_c00008{bottom:586.650000px;}
.y126_c00008{bottom:601.350000px;}
.y127_c00008{bottom:602.205000px;}
.y124_c00008{bottom:603.075000px;}
.y122_c00008{bottom:603.930000px;}
.y128_c00008{bottom:604.800000px;}
.y125_c00008{bottom:606.525000px;}
.y123_c00008{bottom:610.845000px;}
.y12a_c00008{bottom:612.570000px;}
.y129_c00008{bottom:613.440000px;}
.y121_c00008{bottom:614.310000px;}
.y11e_c00008{bottom:618.630000px;}
.y11f_c00008{bottom:619.485000px;}
.y120_c00008{bottom:623.805000px;}
.y119_c00008{bottom:625.530000px;}
.y11a_c00008{bottom:626.400000px;}
.y116_c00008{bottom:627.270000px;}
.y117_c00008{bottom:628.125000px;}
.y11d_c00008{bottom:630.720000px;}
.y11c_c00008{bottom:631.590000px;}
.y115_c00008{bottom:632.445000px;}
.y11b_c00008{bottom:633.315000px;}
.y112_c00008{bottom:635.040000px;}
.y10f_c00008{bottom:635.910000px;}
.y111_c00008{bottom:636.765000px;}
.y118_c00008{bottom:637.635000px;}
.y110_c00008{bottom:638.490000px;}
.y10e_c00008{bottom:641.085000px;}
.y114_c00008{bottom:645.405000px;}
.y10d_c00008{bottom:646.275000px;}
.y113_c00008{bottom:647.130000px;}
.y10b_c00008{bottom:652.320000px;}
.y107_c00008{bottom:653.190000px;}
.y105_c00008{bottom:654.045000px;}
.y106_c00008{bottom:654.915000px;}
.y103_c00008{bottom:655.770000px;}
.y109_c00008{bottom:658.365000px;}
.y10c_c00008{bottom:659.235000px;}
.y10a_c00008{bottom:660.090000px;}
.y108_c00008{bottom:660.960000px;}
.y102_c00008{bottom:669.600000px;}
.y104_c00008{bottom:675.645000px;}
.y100_c00008{bottom:676.515000px;}
.yff_c00008{bottom:677.370000px;}
.yf9_c00008{bottom:678.240000px;}
.yfc_c00008{bottom:681.690000px;}
.yfd_c00008{bottom:683.430000px;}
.yfe_c00008{bottom:684.285000px;}
.yfa_c00008{bottom:685.155000px;}
.yfb_c00008{bottom:686.010000px;}
.y101_c00008{bottom:690.330000px;}
.yf7_c00008{bottom:701.565000px;}
.yf4_c00008{bottom:702.435000px;}
.yf2_c00008{bottom:703.290000px;}
.yf3_c00008{bottom:704.160000px;}
.yf5_c00008{bottom:706.755000px;}
.yf6_c00008{bottom:709.350000px;}
.yf1_c00008{bottom:711.075000px;}
.yf0_c00008{bottom:713.670000px;}
.yf8_c00008{bottom:723.165000px;}
.yeb_c00008{bottom:725.760000px;}
.yee_c00008{bottom:727.485000px;}
.yec_c00008{bottom:728.355000px;}
.yef_c00008{bottom:731.805000px;}
.yea_c00008{bottom:736.125000px;}
.yed_c00008{bottom:736.995000px;}
.ye9_c00008{bottom:746.490000px;}
.ye1_c00008{bottom:748.230000px;}
.ye8_c00008{bottom:749.085000px;}
.ye5_c00008{bottom:749.955000px;}
.ye3_c00008{bottom:750.810000px;}
.ye7_c00008{bottom:752.550000px;}
.ye0_c00008{bottom:754.275000px;}
.ye4_c00008{bottom:756.870000px;}
.ye6_c00008{bottom:758.595000px;}
.ye2_c00008{bottom:759.450000px;}
.yde_c00008{bottom:774.150000px;}
.ydd_c00008{bottom:775.005000px;}
.yda_c00008{bottom:775.875000px;}
.yd7_c00008{bottom:780.195000px;}
.yd9_c00008{bottom:781.050000px;}
.ydf_c00008{bottom:781.920000px;}
.ydc_c00008{bottom:782.790000px;}
.ydb_c00008{bottom:783.645000px;}
.yd8_c00008{bottom:784.515000px;}
.yd4_c00008{bottom:798.330000px;}
.yd5_c00008{bottom:799.200000px;}
.yd3_c00008{bottom:800.925000px;}
.yd2_c00008{bottom:806.970000px;}
.yd6_c00008{bottom:807.840000px;}
.yd1_c00008{bottom:823.395000px;}
.ycf_c00008{bottom:824.250000px;}
.yd0_c00008{bottom:825.120000px;}
.ycd_c00008{bottom:827.715000px;}
.ycc_c00008{bottom:830.310000px;}
.yce_c00008{bottom:831.165000px;}
.yc9_c00008{bottom:848.445000px;}
.yca_c00008{bottom:849.315000px;}
.yc4_c00008{bottom:850.170000px;}
.yc5_c00008{bottom:851.910000px;}
.yc6_c00008{bottom:854.490000px;}
.yc3_c00008{bottom:855.360000px;}
.yc7_c00008{bottom:856.230000px;}
.yc8_c00008{bottom:857.085000px;}
.ycb_c00008{bottom:857.955000px;}
.yc2_c00008{bottom:858.810000px;}
.yc1_c00008{bottom:865.725000px;}
.ybf_c00008{bottom:873.510000px;}
.ybe_c00008{bottom:874.365000px;}
.ybc_c00008{bottom:875.235000px;}
.ybd_c00008{bottom:879.555000px;}
.yba_c00008{bottom:880.410000px;}
.ybb_c00008{bottom:883.875000px;}
.yc0_c00008{bottom:896.835000px;}
.yb7_c00008{bottom:897.690000px;}
.yb4_c00008{bottom:898.560000px;}
.yb3_c00008{bottom:899.430000px;}
.yb8_c00008{bottom:900.285000px;}
.yb5_c00008{bottom:901.155000px;}
.yb2_c00008{bottom:902.010000px;}
.yb6_c00008{bottom:906.330000px;}
.yb9_c00008{bottom:907.200000px;}
.yb1_c00008{bottom:908.070000px;}
.yae_c00008{bottom:922.755000px;}
.yad_c00008{bottom:924.480000px;}
.yab_c00008{bottom:925.350000px;}
.yaa_c00008{bottom:927.075000px;}
.yb0_c00008{bottom:928.800000px;}
.yac_c00008{bottom:929.670000px;}
.yaf_c00008{bottom:931.395000px;}
.ya9_c00008{bottom:933.120000px;}
.ya5_c00008{bottom:949.530000px;}
.ya3_c00008{bottom:950.400000px;}
.ya7_c00008{bottom:952.995000px;}
.ya1_c00008{bottom:953.850000px;}
.ya6_c00008{bottom:954.720000px;}
.ya8_c00008{bottom:956.445000px;}
.ya4_c00008{bottom:957.315000px;}
.ya2_c00008{bottom:958.170000px;}
.y9f_c00008{bottom:959.040000px;}
.ya0_c00008{bottom:965.955000px;}
.y9c_c00008{bottom:974.595000px;}
.y97_c00008{bottom:975.450000px;}
.y9d_c00008{bottom:976.320000px;}
.y99_c00008{bottom:977.190000px;}
.y9e_c00008{bottom:978.915000px;}
.y98_c00008{bottom:980.640000px;}
.y9a_c00008{bottom:981.510000px;}
.y9b_c00008{bottom:982.365000px;}
.y96_c00008{bottom:983.235000px;}
.y93_c00008{bottom:998.790000px;}
.y94_c00008{bottom:999.645000px;}
.y90_c00008{bottom:1000.515000px;}
.y92_c00008{bottom:1001.370000px;}
.y8f_c00008{bottom:1003.110000px;}
.y95_c00008{bottom:1004.835000px;}
.y8e_c00008{bottom:1007.430000px;}
.y91_c00008{bottom:1008.285000px;}
.y8b_c00008{bottom:1024.710000px;}
.y89_c00008{bottom:1025.565000px;}
.y86_c00008{bottom:1026.435000px;}
.y8c_c00008{bottom:1029.030000px;}
.y88_c00008{bottom:1029.885000px;}
.y8a_c00008{bottom:1030.755000px;}
.y87_c00008{bottom:1031.610000px;}
.y8d_c00008{bottom:1032.480000px;}
.y85_c00008{bottom:1048.890000px;}
.y80_c00008{bottom:1049.760000px;}
.y83_c00008{bottom:1054.950000px;}
.y84_c00008{bottom:1056.675000px;}
.y82_c00008{bottom:1057.530000px;}
.y81_c00008{bottom:1058.400000px;}
.y7f_c00008{bottom:1063.590000px;}
.y7c_c00008{bottom:1073.955000px;}
.y78_c00008{bottom:1074.810000px;}
.y79_c00008{bottom:1075.680000px;}
.y7d_c00008{bottom:1077.405000px;}
.y7b_c00008{bottom:1079.130000px;}
.y7e_c00008{bottom:1081.725000px;}
.y7a_c00008{bottom:1082.595000px;}
.y77_c00008{bottom:1083.450000px;}
.y75_c00008{bottom:1099.005000px;}
.y6f_c00008{bottom:1100.730000px;}
.y6e_c00008{bottom:1101.600000px;}
.y70_c00008{bottom:1102.470000px;}
.y76_c00008{bottom:1103.325000px;}
.y73_c00008{bottom:1104.195000px;}
.y71_c00008{bottom:1105.050000px;}
.y74_c00008{bottom:1106.790000px;}
.y72_c00008{bottom:1107.645000px;}
.y6b_c00008{bottom:1111.110000px;}
.y6c_c00008{bottom:1115.430000px;}
.y6d_c00008{bottom:1116.285000px;}
.y67_c00008{bottom:1122.330000px;}
.y69_c00008{bottom:1124.070000px;}
.y64_c00008{bottom:1124.925000px;}
.y65_c00008{bottom:1125.795000px;}
.y68_c00008{bottom:1126.650000px;}
.y63_c00008{bottom:1129.245000px;}
.y62_c00008{bottom:1130.970000px;}
.y66_c00008{bottom:1133.565000px;}
.y6a_c00008{bottom:1146.525000px;}
.y5b_c00008{bottom:1149.120000px;}
.y61_c00008{bottom:1149.990000px;}
.y5e_c00008{bottom:1150.845000px;}
.y5c_c00008{bottom:1152.570000px;}
.y5a_c00008{bottom:1153.440000px;}
.y60_c00008{bottom:1156.035000px;}
.y5f_c00008{bottom:1156.890000px;}
.y5d_c00008{bottom:1157.760000px;}
.y57_c00008{bottom:1173.315000px;}
.y50_c00008{bottom:1174.170000px;}
.y58_c00008{bottom:1175.040000px;}
.y56_c00008{bottom:1175.910000px;}
.y59_c00008{bottom:1177.635000px;}
.y55_c00008{bottom:1180.230000px;}
.y54_c00008{bottom:1181.085000px;}
.y52_c00008{bottom:1181.955000px;}
.y53_c00008{bottom:1182.810000px;}
.y51_c00008{bottom:1187.130000px;}
.y4f_c00008{bottom:1194.045000px;}
.y47_c00008{bottom:1198.365000px;}
.y4c_c00008{bottom:1199.235000px;}
.y4e_c00008{bottom:1200.090000px;}
.y4d_c00008{bottom:1200.960000px;}
.y48_c00008{bottom:1201.830000px;}
.y4b_c00008{bottom:1204.410000px;}
.y4a_c00008{bottom:1207.005000px;}
.y49_c00008{bottom:1207.875000px;}
.y45_c00008{bottom:1223.430000px;}
.y44_c00008{bottom:1224.285000px;}
.y41_c00008{bottom:1225.155000px;}
.y43_c00008{bottom:1227.750000px;}
.y46_c00008{bottom:1229.475000px;}
.y42_c00008{bottom:1232.925000px;}
.y40_c00008{bottom:1235.520000px;}
.y3d_c00008{bottom:1248.480000px;}
.y39_c00008{bottom:1249.350000px;}
.y3b_c00008{bottom:1250.205000px;}
.y3c_c00008{bottom:1251.930000px;}
.y3a_c00008{bottom:1254.525000px;}
.y38_c00008{bottom:1256.250000px;}
.y3e_c00008{bottom:1258.845000px;}
.y3f_c00008{bottom:1260.570000px;}
.y37_c00008{bottom:1263.165000px;}
.y30_c00008{bottom:1270.950000px;}
.y33_c00008{bottom:1272.675000px;}
.y2f_c00008{bottom:1273.530000px;}
.y32_c00008{bottom:1274.400000px;}
.y2d_c00008{bottom:1276.125000px;}
.y36_c00008{bottom:1276.995000px;}
.y31_c00008{bottom:1279.590000px;}
.y35_c00008{bottom:1280.445000px;}
.y34_c00008{bottom:1281.315000px;}
.y2e_c00008{bottom:1282.170000px;}
.y2c_c00008{bottom:1292.550000px;}
.y28_c00008{bottom:1299.450000px;}
.y26_c00008{bottom:1300.320000px;}
.y2b_c00008{bottom:1302.045000px;}
.y29_c00008{bottom:1303.770000px;}
.y2a_c00008{bottom:1305.510000px;}
.y27_c00008{bottom:1306.365000px;}
.y25_c00008{bottom:1307.235000px;}
.y24_c00008{bottom:1308.960000px;}
.y22_c00008{bottom:1321.920000px;}
.y1e_c00008{bottom:1322.790000px;}
.y1f_c00008{bottom:1323.645000px;}
.y21_c00008{bottom:1324.515000px;}
.y20_c00008{bottom:1327.965000px;}
.y23_c00008{bottom:1329.690000px;}
.y1a_c00008{bottom:1330.560000px;}
.y1b_c00008{bottom:1331.430000px;}
.y18_c00008{bottom:1332.285000px;}
.y1c_c00008{bottom:1334.880000px;}
.y19_c00008{bottom:1339.200000px;}
.y1d_c00008{bottom:1343.520000px;}
.y17_c00008{bottom:1345.245000px;}
.y10_c00008{bottom:1347.840000px;}
.yd_c00008{bottom:1348.710000px;}
.y12_c00008{bottom:1349.565000px;}
.yc_c00008{bottom:1350.435000px;}
.y15_c00008{bottom:1352.160000px;}
.y11_c00008{bottom:1353.030000px;}
.y13_c00008{bottom:1353.885000px;}
.y14_c00008{bottom:1354.755000px;}
.ye_c00008{bottom:1355.610000px;}
.yf_c00008{bottom:1356.480000px;}
.y16_c00008{bottom:1362.525000px;}
.y6_c00008{bottom:1372.035000px;}
.y9_c00008{bottom:1372.890000px;}
.y7_c00008{bottom:1373.760000px;}
.y5_c00008{bottom:1374.630000px;}
.yb_c00008{bottom:1378.080000px;}
.y4_c00008{bottom:1379.805000px;}
.ya_c00008{bottom:1380.675000px;}
.y8_c00008{bottom:1381.530000px;}
.y3_c00008{bottom:1403.130000px;}
.y2_c00008{bottom:1408.320000px;}
.y19b_c00008{bottom:1438.560000px;}
.y1_c00008{bottom:1442.880000px;}
.h1b_c00008{height:3.110063px;}
.h5_c00008{height:5.399414px;}
.h6_c00008{height:6.209326px;}
.h1a_c00008{height:6.590062px;}
.h1f_c00008{height:9.340986px;}
.h4_c00008{height:12.418652px;}
.h23_c00008{height:15.550313px;}
.h3_c00008{height:18.681973px;}
.h2_c00008{height:21.759639px;}
.h25_c00008{height:24.891299px;}
.h17_c00008{height:27.968965px;}
.h1c_c00008{height:31.100625px;}
.h22_c00008{height:34.232285px;}
.hf_c00008{height:37.309951px;}
.h16_c00008{height:40.441611px;}
.h19_c00008{height:43.519277px;}
.h1d_c00008{height:46.650937px;}
.h20_c00008{height:49.782598px;}
.h18_c00008{height:52.860264px;}
.h15_c00008{height:55.991924px;}
.hd_c00008{height:59.069590px;}
.h10_c00008{height:62.201250px;}
.hb_c00008{height:65.332910px;}
.h11_c00008{height:68.410576px;}
.h1e_c00008{height:71.542236px;}
.h7_c00008{height:74.619902px;}
.h13_c00008{height:77.751563px;}
.h21_c00008{height:80.883223px;}
.h14_c00008{height:83.960889px;}
.h8_c00008{height:87.092549px;}
.h9_c00008{height:90.170215px;}
.h12_c00008{height:93.301875px;}
.ha_c00008{height:96.433535px;}
.h24_c00008{height:99.511201px;}
.h28_c00008{height:102.642861px;}
.hc_c00008{height:105.720527px;}
.h27_c00008{height:108.852188px;}
.he_c00008{height:111.983848px;}
.h26_c00008{height:115.061514px;}
.h29_c00008{height:118.193174px;}
.h2a_c00008{height:121.270840px;}
.h1_c00008{height:1530.750000px;}
.h0_c00008{height:1531.005000px;}
.w1_c00008{width:1065.000000px;}
.w0_c00008{width:1065.315000px;}
.x0_c00008{left:0.000000px;}
.x129_c00008{left:63.075000px;}
.x126_c00008{left:64.800000px;}
.x12a_c00008{left:82.080000px;}
.x121_c00008{left:92.445000px;}
.x127_c00008{left:94.170000px;}
.x11f_c00008{left:108.000000px;}
.xc0_c00008{left:115.770000px;}
.x103_c00008{left:120.960000px;}
.x6e_c00008{left:122.685000px;}
.xf5_c00008{left:128.730000px;}
.x6f_c00008{left:130.470000px;}
.x128_c00008{left:132.195000px;}
.x64_c00008{left:133.920000px;}
.x30_c00008{left:136.515000px;}
.x4_c00008{left:138.240000px;}
.x90_c00008{left:143.430000px;}
.x97_c00008{left:145.155000px;}
.x3d_c00008{left:147.750000px;}
.x16_c00008{left:149.475000px;}
.x5_c00008{left:152.070000px;}
.x104_c00008{left:155.520000px;}
.x87_c00008{left:159.840000px;}
.x47_c00008{left:161.565000px;}
.xf6_c00008{left:163.290000px;}
.x6_c00008{left:165.885000px;}
.xe5_c00008{left:168.480000px;}
.x5c_c00008{left:170.205000px;}
.x105_c00008{left:174.525000px;}
.x88_c00008{left:176.250000px;}
.x65_c00008{left:177.990000px;}
.x3e_c00008{left:180.570000px;}
.x70_c00008{left:182.310000px;}
.x31_c00008{left:184.035000px;}
.x25_c00008{left:185.760000px;}
.xab_c00008{left:187.485000px;}
.x71_c00008{left:190.080000px;}
.x7_c00008{left:191.805000px;}
.xe9_c00008{left:195.270000px;}
.x8_c00008{left:197.850000px;}
.x10a_c00008{left:200.445000px;}
.x9f_c00008{left:202.170000px;}
.xac_c00008{left:203.910000px;}
.x9_c00008{left:206.490000px;}
.x5d_c00008{left:209.085000px;}
.x17_c00008{left:210.810000px;}
.x32_c00008{left:212.550000px;}
.x116_c00008{left:215.130000px;}
.x11d_c00008{left:220.320000px;}
.x10c_c00008{left:222.915000px;}
.x72_c00008{left:225.510000px;}
.xc9_c00008{left:228.090000px;}
.xa_c00008{left:231.555000px;}
.x5e_c00008{left:234.150000px;}
.x7c_c00008{left:237.600000px;}
.x98_c00008{left:239.325000px;}
.xea_c00008{left:241.050000px;}
.xd9_c00008{left:242.790000px;}
.x50_c00008{left:244.515000px;}
.x7d_c00008{left:249.690000px;}
.x2_c00008{left:251.430000px;}
.xda_c00008{left:253.155000px;}
.xca_c00008{left:254.880000px;}
.x66_c00008{left:256.605000px;}
.xbb_c00008{left:258.330000px;}
.x73_c00008{left:260.925000px;}
.xb1_c00008{left:263.520000px;}
.x67_c00008{left:267.840000px;}
.xf7_c00008{left:270.435000px;}
.xfa_c00008{left:273.030000px;}
.xc4_c00008{left:275.610000px;}
.xe0_c00008{left:279.075000px;}
.x18_c00008{left:281.670000px;}
.x89_c00008{left:284.250000px;}
.xd2_c00008{left:288.570000px;}
.xc1_c00008{left:292.035000px;}
.x10b_c00008{left:294.630000px;}
.x26_c00008{left:296.355000px;}
.x3f_c00008{left:298.080000px;}
.xb2_c00008{left:299.805000px;}
.x11e_c00008{left:301.530000px;}
.x110_c00008{left:303.270000px;}
.x19_c00008{left:304.995000px;}
.x99_c00008{left:306.720000px;}
.x33_c00008{left:310.170000px;}
.x74_c00008{left:311.910000px;}
.x51_c00008{left:315.360000px;}
.xb3_c00008{left:317.085000px;}
.x27_c00008{left:318.810000px;}
.x34_c00008{left:320.550000px;}
.xb_c00008{left:322.275000px;}
.x68_c00008{left:326.595000px;}
.xeb_c00008{left:332.640000px;}
.xf8_c00008{left:334.365000px;}
.x69_c00008{left:336.090000px;}
.x48_c00008{left:340.410000px;}
.x40_c00008{left:342.150000px;}
.xe1_c00008{left:344.730000px;}
.xd5_c00008{left:347.325000px;}
.x1a_c00008{left:350.790000px;}
.xfb_c00008{left:354.240000px;}
.x52_c00008{left:355.965000px;}
.xc5_c00008{left:359.430000px;}
.x1b_c00008{left:361.155000px;}
.xe6_c00008{left:362.880000px;}
.xa0_c00008{left:364.605000px;}
.xa6_c00008{left:367.200000px;}
.xf9_c00008{left:368.925000px;}
.x9a_c00008{left:373.245000px;}
.xd6_c00008{left:376.710000px;}
.xad_c00008{left:380.160000px;}
.x8a_c00008{left:381.885000px;}
.xff_c00008{left:383.610000px;}
.x5f_c00008{left:385.350000px;}
.x28_c00008{left:388.800000px;}
.xc2_c00008{left:390.525000px;}
.xf1_c00008{left:392.250000px;}
.x60_c00008{left:393.990000px;}
.x91_c00008{left:395.715000px;}
.x75_c00008{left:397.440000px;}
.x35_c00008{left:399.165000px;}
.x114_c00008{left:400.890000px;}
.xb4_c00008{left:403.485000px;}
.x36_c00008{left:409.530000px;}
.xcb_c00008{left:412.125000px;}
.xfc_c00008{left:413.850000px;}
.xd3_c00008{left:416.445000px;}
.x81_c00008{left:418.170000px;}
.xe2_c00008{left:421.635000px;}
.xa7_c00008{left:424.230000px;}
.xa1_c00008{left:426.810000px;}
.x111_c00008{left:432.000000px;}
.x53_c00008{left:437.190000px;}
.x61_c00008{left:440.640000px;}
.x82_c00008{left:442.365000px;}
.xc_c00008{left:444.090000px;}
.x8b_c00008{left:445.830000px;}
.x7e_c00008{left:448.410000px;}
.xf2_c00008{left:450.150000px;}
.x100_c00008{left:452.730000px;}
.x8c_c00008{left:456.195000px;}
.xcc_c00008{left:459.645000px;}
.x49_c00008{left:462.240000px;}
.xd_c00008{left:463.965000px;}
.xae_c00008{left:468.285000px;}
.x37_c00008{left:472.605000px;}
.x92_c00008{left:475.200000px;}
.xe7_c00008{left:476.925000px;}
.x41_c00008{left:480.390000px;}
.x1c_c00008{left:482.115000px;}
.xe8_c00008{left:484.710000px;}
.x54_c00008{left:486.435000px;}
.xc6_c00008{left:489.885000px;}
.xc3_c00008{left:491.610000px;}
.x4a_c00008{left:493.350000px;}
.x62_c00008{left:495.075000px;}
.x29_c00008{left:498.525000px;}
.x83_c00008{left:501.120000px;}
.xcd_c00008{left:503.715000px;}
.xb5_c00008{left:506.310000px;}
.x38_c00008{left:508.035000px;}
.x84_c00008{left:509.760000px;}
.x112_c00008{left:512.355000px;}
.x117_c00008{left:514.080000px;}
.x101_c00008{left:517.530000px;}
.xa8_c00008{left:521.850000px;}
.x107_c00008{left:524.445000px;}
.x108_c00008{left:526.170000px;}
.xfd_c00008{left:527.910000px;}
.x118_c00008{left:530.490000px;}
.x9b_c00008{left:532.230000px;}
.xa2_c00008{left:534.810000px;}
.xaf_c00008{left:536.550000px;}
.xce_c00008{left:538.275000px;}
.x119_c00008{left:541.725000px;}
.x2a_c00008{left:548.640000px;}
.x109_c00008{left:552.090000px;}
.x76_c00008{left:554.685000px;}
.x9c_c00008{left:556.410000px;}
.x39_c00008{left:558.150000px;}
.x8d_c00008{left:562.470000px;}
.x2b_c00008{left:564.195000px;}
.xe_c00008{left:565.920000px;}
.x55_c00008{left:570.240000px;}
.xbc_c00008{left:572.835000px;}
.x11a_c00008{left:575.430000px;}
.x1d_c00008{left:578.880000px;}
.x122_c00008{left:581.475000px;}
.xa3_c00008{left:583.200000px;}
.x6a_c00008{left:585.795000px;}
.x10d_c00008{left:587.520000px;}
.xf_c00008{left:590.115000px;}
.x6b_c00008{left:595.290000px;}
.xdb_c00008{left:599.610000px;}
.x106_c00008{left:602.205000px;}
.xec_c00008{left:604.800000px;}
.xb6_c00008{left:606.525000px;}
.x77_c00008{left:609.120000px;}
.x12b_c00008{left:610.845000px;}
.xcf_c00008{left:613.440000px;}
.x4b_c00008{left:616.035000px;}
.x1e_c00008{left:619.485000px;}
.x12c_c00008{left:621.210000px;}
.x42_c00008{left:627.270000px;}
.x3_c00008{left:629.850000px;}
.xf3_c00008{left:631.590000px;}
.xe3_c00008{left:636.765000px;}
.x56_c00008{left:638.490000px;}
.x1f_c00008{left:640.230000px;}
.xbd_c00008{left:642.810000px;}
.x8e_c00008{left:644.550000px;}
.xc7_c00008{left:648.000000px;}
.xa4_c00008{left:650.595000px;}
.x78_c00008{left:652.320000px;}
.x123_c00008{left:654.045000px;}
.x93_c00008{left:655.770000px;}
.xa9_c00008{left:658.365000px;}
.x10_c00008{left:660.960000px;}
.x7f_c00008{left:663.555000px;}
.x20_c00008{left:665.280000px;}
.x94_c00008{left:667.005000px;}
.xdc_c00008{left:670.470000px;}
.xd0_c00008{left:672.195000px;}
.xd7_c00008{left:673.920000px;}
.x120_c00008{left:676.515000px;}
.x11_c00008{left:678.240000px;}
.xb7_c00008{left:679.965000px;}
.x124_c00008{left:681.690000px;}
.x79_c00008{left:687.750000px;}
.x63_c00008{left:689.475000px;}
.xfe_c00008{left:691.200000px;}
.x95_c00008{left:692.925000px;}
.x6c_c00008{left:694.650000px;}
.xdd_c00008{left:697.245000px;}
.xed_c00008{left:698.970000px;}
.x57_c00008{left:701.565000px;}
.x4c_c00008{left:703.290000px;}
.x2c_c00008{left:705.885000px;}
.x85_c00008{left:707.610000px;}
.x43_c00008{left:709.350000px;}
.xde_c00008{left:711.075000px;}
.x3a_c00008{left:712.800000px;}
.x1_c00008{left:716.250000px;}
.x86_c00008{left:717.990000px;}
.x21_c00008{left:719.715000px;}
.x80_c00008{left:723.165000px;}
.x10e_c00008{left:724.890000px;}
.x4d_c00008{left:729.210000px;}
.x44_c00008{left:735.270000px;}
.x11b_c00008{left:737.850000px;}
.x58_c00008{left:739.590000px;}
.x2d_c00008{left:742.170000px;}
.x4e_c00008{left:744.765000px;}
.x12_c00008{left:747.360000px;}
.x45_c00008{left:752.550000px;}
.xd1_c00008{left:754.275000px;}
.x3b_c00008{left:756.870000px;}
.xbe_c00008{left:758.595000px;}
.x13_c00008{left:760.320000px;}
.xb8_c00008{left:762.915000px;}
.x9d_c00008{left:764.640000px;}
.x2e_c00008{left:767.235000px;}
.xdf_c00008{left:768.960000px;}
.xaa_c00008{left:770.685000px;}
.xbf_c00008{left:773.280000px;}
.xb0_c00008{left:775.875000px;}
.x10f_c00008{left:777.600000px;}
.xd8_c00008{left:779.325000px;}
.x125_c00008{left:781.050000px;}
.x14_c00008{left:782.790000px;}
.xb9_c00008{left:787.110000px;}
.x8f_c00008{left:791.430000px;}
.x7a_c00008{left:793.155000px;}
.x59_c00008{left:795.750000px;}
.x46_c00008{left:798.330000px;}
.x22_c00008{left:801.795000px;}
.xe4_c00008{left:804.390000px;}
.xd4_c00008{left:806.970000px;}
.x7b_c00008{left:808.710000px;}
.x9e_c00008{left:810.435000px;}
.x11c_c00008{left:812.160000px;}
.x6d_c00008{left:814.755000px;}
.x15_c00008{left:816.480000px;}
.x96_c00008{left:818.205000px;}
.x23_c00008{left:820.800000px;}
.xa5_c00008{left:822.525000px;}
.x2f_c00008{left:825.990000px;}
.xba_c00008{left:827.715000px;}
.x102_c00008{left:829.440000px;}
.x5a_c00008{left:833.760000px;}
.x3c_c00008{left:835.485000px;}
.xc8_c00008{left:842.400000px;}
.x5b_c00008{left:846.720000px;}
.xee_c00008{left:850.170000px;}
.x4f_c00008{left:851.910000px;}
.xf4_c00008{left:856.230000px;}
.x115_c00008{left:857.955000px;}
.xef_c00008{left:860.550000px;}
.x113_c00008{left:865.725000px;}
.x24_c00008{left:869.190000px;}
.xf0_c00008{left:874.365000px;}
.x12e_c00008{left:911.520000px;}
.x12f_c00008{left:928.800000px;}
.x12d_c00008{left:1038.525000px;}
@media print{
.v2_c00008{vertical-align:-15.360000pt;}
.v0_c00008{vertical-align:0.000000pt;}
.v1_c00008{vertical-align:3.093333pt;}
.ls1_c00008{letter-spacing:0.000000pt;}
.ls0_c00008{letter-spacing:36.466389pt;}
.ws3_c00008{word-spacing:-4.877227pt;}
.ws5_c00008{word-spacing:0.000000pt;}
.ws0_c00008{word-spacing:33.083467pt;}
.ws2_c00008{word-spacing:35.728800pt;}
.ws4_c00008{word-spacing:37.255381pt;}
.ws1_c00008{word-spacing:157.411157pt;}
._0_c00008{width:154.179200pt;}
.fs3_c00008{font-size:3.072000pt;}
.fs4_c00008{font-size:5.333333pt;}
.fs5_c00008{font-size:6.133333pt;}
.fs1c_c00008{font-size:9.226667pt;}
.fs2_c00008{font-size:12.266667pt;}
.fs20_c00008{font-size:15.360000pt;}
.fs1_c00008{font-size:18.453333pt;}
.fs0_c00008{font-size:21.493333pt;}
.fs22_c00008{font-size:24.586667pt;}
.fs16_c00008{font-size:27.626667pt;}
.fs19_c00008{font-size:30.720000pt;}
.fs1f_c00008{font-size:33.813333pt;}
.fse_c00008{font-size:36.853333pt;}
.fs15_c00008{font-size:39.946667pt;}
.fs18_c00008{font-size:42.986667pt;}
.fs1a_c00008{font-size:46.080000pt;}
.fs1d_c00008{font-size:49.173333pt;}
.fs17_c00008{font-size:52.213333pt;}
.fs14_c00008{font-size:55.306667pt;}
.fsc_c00008{font-size:58.346667pt;}
.fsf_c00008{font-size:61.440000pt;}
.fsa_c00008{font-size:64.533333pt;}
.fs10_c00008{font-size:67.573333pt;}
.fs1b_c00008{font-size:70.666667pt;}
.fs6_c00008{font-size:73.706667pt;}
.fs12_c00008{font-size:76.800000pt;}
.fs1e_c00008{font-size:79.893333pt;}
.fs13_c00008{font-size:82.933333pt;}
.fs7_c00008{font-size:86.026667pt;}
.fs8_c00008{font-size:89.066667pt;}
.fs11_c00008{font-size:92.160000pt;}
.fs9_c00008{font-size:95.253333pt;}
.fs21_c00008{font-size:98.293333pt;}
.fs25_c00008{font-size:101.386667pt;}
.fsb_c00008{font-size:104.426667pt;}
.fs24_c00008{font-size:107.520000pt;}
.fsd_c00008{font-size:110.613333pt;}
.fs23_c00008{font-size:113.653333pt;}
.fs26_c00008{font-size:116.746667pt;}
.fs27_c00008{font-size:119.786667pt;}
.y0_c00008{bottom:0.000000pt;}
.y198_c00008{bottom:208.893333pt;}
.y197_c00008{bottom:212.733333pt;}
.y199_c00008{bottom:215.813333pt;}
.y196_c00008{bottom:216.573333pt;}
.y19a_c00008{bottom:218.106667pt;}
.y190_c00008{bottom:219.653333pt;}
.y191_c00008{bottom:220.413333pt;}
.y193_c00008{bottom:221.186667pt;}
.y192_c00008{bottom:221.946667pt;}
.y18f_c00008{bottom:222.720000pt;}
.y195_c00008{bottom:224.253333pt;}
.y18c_c00008{bottom:225.786667pt;}
.y18b_c00008{bottom:226.560000pt;}
.y194_c00008{bottom:229.626667pt;}
.y18d_c00008{bottom:230.400000pt;}
.y18e_c00008{bottom:241.920000pt;}
.y18a_c00008{bottom:244.986667pt;}
.y186_c00008{bottom:245.760000pt;}
.y188_c00008{bottom:246.533333pt;}
.y189_c00008{bottom:249.600000pt;}
.y187_c00008{bottom:258.813333pt;}
.y17e_c00008{bottom:267.266667pt;}
.y17f_c00008{bottom:268.026667pt;}
.y184_c00008{bottom:269.573333pt;}
.y182_c00008{bottom:270.333333pt;}
.y185_c00008{bottom:271.106667pt;}
.y181_c00008{bottom:273.413333pt;}
.y183_c00008{bottom:274.173333pt;}
.y180_c00008{bottom:280.320000pt;}
.y17a_c00008{bottom:288.773333pt;}
.y17d_c00008{bottom:289.533333pt;}
.y17b_c00008{bottom:290.306667pt;}
.y177_c00008{bottom:291.066667pt;}
.y175_c00008{bottom:292.613333pt;}
.y179_c00008{bottom:293.373333pt;}
.y176_c00008{bottom:294.906667pt;}
.y17c_c00008{bottom:295.680000pt;}
.y178_c00008{bottom:296.453333pt;}
.y174_c00008{bottom:309.506667pt;}
.y170_c00008{bottom:310.266667pt;}
.y173_c00008{bottom:311.813333pt;}
.y172_c00008{bottom:312.573333pt;}
.y16f_c00008{bottom:313.346667pt;}
.y171_c00008{bottom:314.106667pt;}
.y16e_c00008{bottom:332.546667pt;}
.y16c_c00008{bottom:333.306667pt;}
.y169_c00008{bottom:334.080000pt;}
.y16d_c00008{bottom:336.386667pt;}
.y16b_c00008{bottom:337.920000pt;}
.y16a_c00008{bottom:341.760000pt;}
.y168_c00008{bottom:350.973333pt;}
.y164_c00008{bottom:357.120000pt;}
.y15f_c00008{bottom:357.893333pt;}
.y160_c00008{bottom:358.653333pt;}
.y165_c00008{bottom:359.426667pt;}
.y161_c00008{bottom:360.960000pt;}
.y162_c00008{bottom:362.493333pt;}
.y163_c00008{bottom:364.026667pt;}
.y167_c00008{bottom:366.333333pt;}
.y166_c00008{bottom:367.866667pt;}
.y158_c00008{bottom:370.946667pt;}
.y15b_c00008{bottom:371.706667pt;}
.y15e_c00008{bottom:372.480000pt;}
.y154_c00008{bottom:375.546667pt;}
.y159_c00008{bottom:377.853333pt;}
.y15a_c00008{bottom:378.626667pt;}
.y157_c00008{bottom:379.386667pt;}
.y15c_c00008{bottom:380.933333pt;}
.y156_c00008{bottom:382.466667pt;}
.y15d_c00008{bottom:383.226667pt;}
.y155_c00008{bottom:387.066667pt;}
.y151_c00008{bottom:399.360000pt;}
.y150_c00008{bottom:400.133333pt;}
.y14f_c00008{bottom:400.893333pt;}
.y152_c00008{bottom:401.666667pt;}
.y14e_c00008{bottom:402.426667pt;}
.y153_c00008{bottom:406.266667pt;}
.y14c_c00008{bottom:420.093333pt;}
.y147_c00008{bottom:423.933333pt;}
.y14d_c00008{bottom:424.706667pt;}
.y148_c00008{bottom:425.466667pt;}
.y149_c00008{bottom:427.773333pt;}
.y14b_c00008{bottom:429.306667pt;}
.y14a_c00008{bottom:430.080000pt;}
.y141_c00008{bottom:440.066667pt;}
.y13f_c00008{bottom:440.826667pt;}
.y143_c00008{bottom:441.600000pt;}
.y145_c00008{bottom:442.373333pt;}
.y142_c00008{bottom:445.440000pt;}
.y140_c00008{bottom:446.213333pt;}
.y146_c00008{bottom:450.813333pt;}
.y144_c00008{bottom:452.346667pt;}
.y13d_c00008{bottom:466.946667pt;}
.y13c_c00008{bottom:467.706667pt;}
.y137_c00008{bottom:468.480000pt;}
.y13a_c00008{bottom:472.320000pt;}
.y13e_c00008{bottom:473.853333pt;}
.y13b_c00008{bottom:474.626667pt;}
.y139_c00008{bottom:475.386667pt;}
.y138_c00008{bottom:476.160000pt;}
.y132_c00008{bottom:489.986667pt;}
.y135_c00008{bottom:490.746667pt;}
.y136_c00008{bottom:491.520000pt;}
.y133_c00008{bottom:493.053333pt;}
.y131_c00008{bottom:493.826667pt;}
.y134_c00008{bottom:494.586667pt;}
.y12f_c00008{bottom:510.720000pt;}
.y12c_c00008{bottom:512.253333pt;}
.y12b_c00008{bottom:514.560000pt;}
.y12d_c00008{bottom:516.093333pt;}
.y12e_c00008{bottom:519.933333pt;}
.y130_c00008{bottom:521.466667pt;}
.y126_c00008{bottom:534.533333pt;}
.y127_c00008{bottom:535.293333pt;}
.y124_c00008{bottom:536.066667pt;}
.y122_c00008{bottom:536.826667pt;}
.y128_c00008{bottom:537.600000pt;}
.y125_c00008{bottom:539.133333pt;}
.y123_c00008{bottom:542.973333pt;}
.y12a_c00008{bottom:544.506667pt;}
.y129_c00008{bottom:545.280000pt;}
.y121_c00008{bottom:546.053333pt;}
.y11e_c00008{bottom:549.893333pt;}
.y11f_c00008{bottom:550.653333pt;}
.y120_c00008{bottom:554.493333pt;}
.y119_c00008{bottom:556.026667pt;}
.y11a_c00008{bottom:556.800000pt;}
.y116_c00008{bottom:557.573333pt;}
.y117_c00008{bottom:558.333333pt;}
.y11d_c00008{bottom:560.640000pt;}
.y11c_c00008{bottom:561.413333pt;}
.y115_c00008{bottom:562.173333pt;}
.y11b_c00008{bottom:562.946667pt;}
.y112_c00008{bottom:564.480000pt;}
.y10f_c00008{bottom:565.253333pt;}
.y111_c00008{bottom:566.013333pt;}
.y118_c00008{bottom:566.786667pt;}
.y110_c00008{bottom:567.546667pt;}
.y10e_c00008{bottom:569.853333pt;}
.y114_c00008{bottom:573.693333pt;}
.y10d_c00008{bottom:574.466667pt;}
.y113_c00008{bottom:575.226667pt;}
.y10b_c00008{bottom:579.840000pt;}
.y107_c00008{bottom:580.613333pt;}
.y105_c00008{bottom:581.373333pt;}
.y106_c00008{bottom:582.146667pt;}
.y103_c00008{bottom:582.906667pt;}
.y109_c00008{bottom:585.213333pt;}
.y10c_c00008{bottom:585.986667pt;}
.y10a_c00008{bottom:586.746667pt;}
.y108_c00008{bottom:587.520000pt;}
.y102_c00008{bottom:595.200000pt;}
.y104_c00008{bottom:600.573333pt;}
.y100_c00008{bottom:601.346667pt;}
.yff_c00008{bottom:602.106667pt;}
.yf9_c00008{bottom:602.880000pt;}
.yfc_c00008{bottom:605.946667pt;}
.yfd_c00008{bottom:607.493333pt;}
.yfe_c00008{bottom:608.253333pt;}
.yfa_c00008{bottom:609.026667pt;}
.yfb_c00008{bottom:609.786667pt;}
.y101_c00008{bottom:613.626667pt;}
.yf7_c00008{bottom:623.613333pt;}
.yf4_c00008{bottom:624.386667pt;}
.yf2_c00008{bottom:625.146667pt;}
.yf3_c00008{bottom:625.920000pt;}
.yf5_c00008{bottom:628.226667pt;}
.yf6_c00008{bottom:630.533333pt;}
.yf1_c00008{bottom:632.066667pt;}
.yf0_c00008{bottom:634.373333pt;}
.yf8_c00008{bottom:642.813333pt;}
.yeb_c00008{bottom:645.120000pt;}
.yee_c00008{bottom:646.653333pt;}
.yec_c00008{bottom:647.426667pt;}
.yef_c00008{bottom:650.493333pt;}
.yea_c00008{bottom:654.333333pt;}
.yed_c00008{bottom:655.106667pt;}
.ye9_c00008{bottom:663.546667pt;}
.ye1_c00008{bottom:665.093333pt;}
.ye8_c00008{bottom:665.853333pt;}
.ye5_c00008{bottom:666.626667pt;}
.ye3_c00008{bottom:667.386667pt;}
.ye7_c00008{bottom:668.933333pt;}
.ye0_c00008{bottom:670.466667pt;}
.ye4_c00008{bottom:672.773333pt;}
.ye6_c00008{bottom:674.306667pt;}
.ye2_c00008{bottom:675.066667pt;}
.yde_c00008{bottom:688.133333pt;}
.ydd_c00008{bottom:688.893333pt;}
.yda_c00008{bottom:689.666667pt;}
.yd7_c00008{bottom:693.506667pt;}
.yd9_c00008{bottom:694.266667pt;}
.ydf_c00008{bottom:695.040000pt;}
.ydc_c00008{bottom:695.813333pt;}
.ydb_c00008{bottom:696.573333pt;}
.yd8_c00008{bottom:697.346667pt;}
.yd4_c00008{bottom:709.626667pt;}
.yd5_c00008{bottom:710.400000pt;}
.yd3_c00008{bottom:711.933333pt;}
.yd2_c00008{bottom:717.306667pt;}
.yd6_c00008{bottom:718.080000pt;}
.yd1_c00008{bottom:731.906667pt;}
.ycf_c00008{bottom:732.666667pt;}
.yd0_c00008{bottom:733.440000pt;}
.ycd_c00008{bottom:735.746667pt;}
.ycc_c00008{bottom:738.053333pt;}
.yce_c00008{bottom:738.813333pt;}
.yc9_c00008{bottom:754.173333pt;}
.yca_c00008{bottom:754.946667pt;}
.yc4_c00008{bottom:755.706667pt;}
.yc5_c00008{bottom:757.253333pt;}
.yc6_c00008{bottom:759.546667pt;}
.yc3_c00008{bottom:760.320000pt;}
.yc7_c00008{bottom:761.093333pt;}
.yc8_c00008{bottom:761.853333pt;}
.ycb_c00008{bottom:762.626667pt;}
.yc2_c00008{bottom:763.386667pt;}
.yc1_c00008{bottom:769.533333pt;}
.ybf_c00008{bottom:776.453333pt;}
.ybe_c00008{bottom:777.213333pt;}
.ybc_c00008{bottom:777.986667pt;}
.ybd_c00008{bottom:781.826667pt;}
.yba_c00008{bottom:782.586667pt;}
.ybb_c00008{bottom:785.666667pt;}
.yc0_c00008{bottom:797.186667pt;}
.yb7_c00008{bottom:797.946667pt;}
.yb4_c00008{bottom:798.720000pt;}
.yb3_c00008{bottom:799.493333pt;}
.yb8_c00008{bottom:800.253333pt;}
.yb5_c00008{bottom:801.026667pt;}
.yb2_c00008{bottom:801.786667pt;}
.yb6_c00008{bottom:805.626667pt;}
.yb9_c00008{bottom:806.400000pt;}
.yb1_c00008{bottom:807.173333pt;}
.yae_c00008{bottom:820.226667pt;}
.yad_c00008{bottom:821.760000pt;}
.yab_c00008{bottom:822.533333pt;}
.yaa_c00008{bottom:824.066667pt;}
.yb0_c00008{bottom:825.600000pt;}
.yac_c00008{bottom:826.373333pt;}
.yaf_c00008{bottom:827.906667pt;}
.ya9_c00008{bottom:829.440000pt;}
.ya5_c00008{bottom:844.026667pt;}
.ya3_c00008{bottom:844.800000pt;}
.ya7_c00008{bottom:847.106667pt;}
.ya1_c00008{bottom:847.866667pt;}
.ya6_c00008{bottom:848.640000pt;}
.ya8_c00008{bottom:850.173333pt;}
.ya4_c00008{bottom:850.946667pt;}
.ya2_c00008{bottom:851.706667pt;}
.y9f_c00008{bottom:852.480000pt;}
.ya0_c00008{bottom:858.626667pt;}
.y9c_c00008{bottom:866.306667pt;}
.y97_c00008{bottom:867.066667pt;}
.y9d_c00008{bottom:867.840000pt;}
.y99_c00008{bottom:868.613333pt;}
.y9e_c00008{bottom:870.146667pt;}
.y98_c00008{bottom:871.680000pt;}
.y9a_c00008{bottom:872.453333pt;}
.y9b_c00008{bottom:873.213333pt;}
.y96_c00008{bottom:873.986667pt;}
.y93_c00008{bottom:887.813333pt;}
.y94_c00008{bottom:888.573333pt;}
.y90_c00008{bottom:889.346667pt;}
.y92_c00008{bottom:890.106667pt;}
.y8f_c00008{bottom:891.653333pt;}
.y95_c00008{bottom:893.186667pt;}
.y8e_c00008{bottom:895.493333pt;}
.y91_c00008{bottom:896.253333pt;}
.y8b_c00008{bottom:910.853333pt;}
.y89_c00008{bottom:911.613333pt;}
.y86_c00008{bottom:912.386667pt;}
.y8c_c00008{bottom:914.693333pt;}
.y88_c00008{bottom:915.453333pt;}
.y8a_c00008{bottom:916.226667pt;}
.y87_c00008{bottom:916.986667pt;}
.y8d_c00008{bottom:917.760000pt;}
.y85_c00008{bottom:932.346667pt;}
.y80_c00008{bottom:933.120000pt;}
.y83_c00008{bottom:937.733333pt;}
.y84_c00008{bottom:939.266667pt;}
.y82_c00008{bottom:940.026667pt;}
.y81_c00008{bottom:940.800000pt;}
.y7f_c00008{bottom:945.413333pt;}
.y7c_c00008{bottom:954.626667pt;}
.y78_c00008{bottom:955.386667pt;}
.y79_c00008{bottom:956.160000pt;}
.y7d_c00008{bottom:957.693333pt;}
.y7b_c00008{bottom:959.226667pt;}
.y7e_c00008{bottom:961.533333pt;}
.y7a_c00008{bottom:962.306667pt;}
.y77_c00008{bottom:963.066667pt;}
.y75_c00008{bottom:976.893333pt;}
.y6f_c00008{bottom:978.426667pt;}
.y6e_c00008{bottom:979.200000pt;}
.y70_c00008{bottom:979.973333pt;}
.y76_c00008{bottom:980.733333pt;}
.y73_c00008{bottom:981.506667pt;}
.y71_c00008{bottom:982.266667pt;}
.y74_c00008{bottom:983.813333pt;}
.y72_c00008{bottom:984.573333pt;}
.y6b_c00008{bottom:987.653333pt;}
.y6c_c00008{bottom:991.493333pt;}
.y6d_c00008{bottom:992.253333pt;}
.y67_c00008{bottom:997.626667pt;}
.y69_c00008{bottom:999.173333pt;}
.y64_c00008{bottom:999.933333pt;}
.y65_c00008{bottom:1000.706667pt;}
.y68_c00008{bottom:1001.466667pt;}
.y63_c00008{bottom:1003.773333pt;}
.y62_c00008{bottom:1005.306667pt;}
.y66_c00008{bottom:1007.613333pt;}
.y6a_c00008{bottom:1019.133333pt;}
.y5b_c00008{bottom:1021.440000pt;}
.y61_c00008{bottom:1022.213333pt;}
.y5e_c00008{bottom:1022.973333pt;}
.y5c_c00008{bottom:1024.506667pt;}
.y5a_c00008{bottom:1025.280000pt;}
.y60_c00008{bottom:1027.586667pt;}
.y5f_c00008{bottom:1028.346667pt;}
.y5d_c00008{bottom:1029.120000pt;}
.y57_c00008{bottom:1042.946667pt;}
.y50_c00008{bottom:1043.706667pt;}
.y58_c00008{bottom:1044.480000pt;}
.y56_c00008{bottom:1045.253333pt;}
.y59_c00008{bottom:1046.786667pt;}
.y55_c00008{bottom:1049.093333pt;}
.y54_c00008{bottom:1049.853333pt;}
.y52_c00008{bottom:1050.626667pt;}
.y53_c00008{bottom:1051.386667pt;}
.y51_c00008{bottom:1055.226667pt;}
.y4f_c00008{bottom:1061.373333pt;}
.y47_c00008{bottom:1065.213333pt;}
.y4c_c00008{bottom:1065.986667pt;}
.y4e_c00008{bottom:1066.746667pt;}
.y4d_c00008{bottom:1067.520000pt;}
.y48_c00008{bottom:1068.293333pt;}
.y4b_c00008{bottom:1070.586667pt;}
.y4a_c00008{bottom:1072.893333pt;}
.y49_c00008{bottom:1073.666667pt;}
.y45_c00008{bottom:1087.493333pt;}
.y44_c00008{bottom:1088.253333pt;}
.y41_c00008{bottom:1089.026667pt;}
.y43_c00008{bottom:1091.333333pt;}
.y46_c00008{bottom:1092.866667pt;}
.y42_c00008{bottom:1095.933333pt;}
.y40_c00008{bottom:1098.240000pt;}
.y3d_c00008{bottom:1109.760000pt;}
.y39_c00008{bottom:1110.533333pt;}
.y3b_c00008{bottom:1111.293333pt;}
.y3c_c00008{bottom:1112.826667pt;}
.y3a_c00008{bottom:1115.133333pt;}
.y38_c00008{bottom:1116.666667pt;}
.y3e_c00008{bottom:1118.973333pt;}
.y3f_c00008{bottom:1120.506667pt;}
.y37_c00008{bottom:1122.813333pt;}
.y30_c00008{bottom:1129.733333pt;}
.y33_c00008{bottom:1131.266667pt;}
.y2f_c00008{bottom:1132.026667pt;}
.y32_c00008{bottom:1132.800000pt;}
.y2d_c00008{bottom:1134.333333pt;}
.y36_c00008{bottom:1135.106667pt;}
.y31_c00008{bottom:1137.413333pt;}
.y35_c00008{bottom:1138.173333pt;}
.y34_c00008{bottom:1138.946667pt;}
.y2e_c00008{bottom:1139.706667pt;}
.y2c_c00008{bottom:1148.933333pt;}
.y28_c00008{bottom:1155.066667pt;}
.y26_c00008{bottom:1155.840000pt;}
.y2b_c00008{bottom:1157.373333pt;}
.y29_c00008{bottom:1158.906667pt;}
.y2a_c00008{bottom:1160.453333pt;}
.y27_c00008{bottom:1161.213333pt;}
.y25_c00008{bottom:1161.986667pt;}
.y24_c00008{bottom:1163.520000pt;}
.y22_c00008{bottom:1175.040000pt;}
.y1e_c00008{bottom:1175.813333pt;}
.y1f_c00008{bottom:1176.573333pt;}
.y21_c00008{bottom:1177.346667pt;}
.y20_c00008{bottom:1180.413333pt;}
.y23_c00008{bottom:1181.946667pt;}
.y1a_c00008{bottom:1182.720000pt;}
.y1b_c00008{bottom:1183.493333pt;}
.y18_c00008{bottom:1184.253333pt;}
.y1c_c00008{bottom:1186.560000pt;}
.y19_c00008{bottom:1190.400000pt;}
.y1d_c00008{bottom:1194.240000pt;}
.y17_c00008{bottom:1195.773333pt;}
.y10_c00008{bottom:1198.080000pt;}
.yd_c00008{bottom:1198.853333pt;}
.y12_c00008{bottom:1199.613333pt;}
.yc_c00008{bottom:1200.386667pt;}
.y15_c00008{bottom:1201.920000pt;}
.y11_c00008{bottom:1202.693333pt;}
.y13_c00008{bottom:1203.453333pt;}
.y14_c00008{bottom:1204.226667pt;}
.ye_c00008{bottom:1204.986667pt;}
.yf_c00008{bottom:1205.760000pt;}
.y16_c00008{bottom:1211.133333pt;}
.y6_c00008{bottom:1219.586667pt;}
.y9_c00008{bottom:1220.346667pt;}
.y7_c00008{bottom:1221.120000pt;}
.y5_c00008{bottom:1221.893333pt;}
.yb_c00008{bottom:1224.960000pt;}
.y4_c00008{bottom:1226.493333pt;}
.ya_c00008{bottom:1227.266667pt;}
.y8_c00008{bottom:1228.026667pt;}
.y3_c00008{bottom:1247.226667pt;}
.y2_c00008{bottom:1251.840000pt;}
.y19b_c00008{bottom:1278.720000pt;}
.y1_c00008{bottom:1282.560000pt;}
.h1b_c00008{height:2.764500pt;}
.h5_c00008{height:4.799479pt;}
.h6_c00008{height:5.519401pt;}
.h1a_c00008{height:5.857833pt;}
.h1f_c00008{height:8.303099pt;}
.h4_c00008{height:11.038802pt;}
.h23_c00008{height:13.822500pt;}
.h3_c00008{height:16.606198pt;}
.h2_c00008{height:19.341901pt;}
.h25_c00008{height:22.125599pt;}
.h17_c00008{height:24.861302pt;}
.h1c_c00008{height:27.645000pt;}
.h22_c00008{height:30.428698pt;}
.hf_c00008{height:33.164401pt;}
.h16_c00008{height:35.948099pt;}
.h19_c00008{height:38.683802pt;}
.h1d_c00008{height:41.467500pt;}
.h20_c00008{height:44.251198pt;}
.h18_c00008{height:46.986901pt;}
.h15_c00008{height:49.770599pt;}
.hd_c00008{height:52.506302pt;}
.h10_c00008{height:55.290000pt;}
.hb_c00008{height:58.073698pt;}
.h11_c00008{height:60.809401pt;}
.h1e_c00008{height:63.593099pt;}
.h7_c00008{height:66.328802pt;}
.h13_c00008{height:69.112500pt;}
.h21_c00008{height:71.896198pt;}
.h14_c00008{height:74.631901pt;}
.h8_c00008{height:77.415599pt;}
.h9_c00008{height:80.151302pt;}
.h12_c00008{height:82.935000pt;}
.ha_c00008{height:85.718698pt;}
.h24_c00008{height:88.454401pt;}
.h28_c00008{height:91.238099pt;}
.hc_c00008{height:93.973802pt;}
.h27_c00008{height:96.757500pt;}
.he_c00008{height:99.541198pt;}
.h26_c00008{height:102.276901pt;}
.h29_c00008{height:105.060599pt;}
.h2a_c00008{height:107.796302pt;}
.h1_c00008{height:1360.666667pt;}
.h0_c00008{height:1360.893333pt;}
.w1_c00008{width:946.666667pt;}
.w0_c00008{width:946.946667pt;}
.x0_c00008{left:0.000000pt;}
.x129_c00008{left:56.066667pt;}
.x126_c00008{left:57.600000pt;}
.x12a_c00008{left:72.960000pt;}
.x121_c00008{left:82.173333pt;}
.x127_c00008{left:83.706667pt;}
.x11f_c00008{left:96.000000pt;}
.xc0_c00008{left:102.906667pt;}
.x103_c00008{left:107.520000pt;}
.x6e_c00008{left:109.053333pt;}
.xf5_c00008{left:114.426667pt;}
.x6f_c00008{left:115.973333pt;}
.x128_c00008{left:117.506667pt;}
.x64_c00008{left:119.040000pt;}
.x30_c00008{left:121.346667pt;}
.x4_c00008{left:122.880000pt;}
.x90_c00008{left:127.493333pt;}
.x97_c00008{left:129.026667pt;}
.x3d_c00008{left:131.333333pt;}
.x16_c00008{left:132.866667pt;}
.x5_c00008{left:135.173333pt;}
.x104_c00008{left:138.240000pt;}
.x87_c00008{left:142.080000pt;}
.x47_c00008{left:143.613333pt;}
.xf6_c00008{left:145.146667pt;}
.x6_c00008{left:147.453333pt;}
.xe5_c00008{left:149.760000pt;}
.x5c_c00008{left:151.293333pt;}
.x105_c00008{left:155.133333pt;}
.x88_c00008{left:156.666667pt;}
.x65_c00008{left:158.213333pt;}
.x3e_c00008{left:160.506667pt;}
.x70_c00008{left:162.053333pt;}
.x31_c00008{left:163.586667pt;}
.x25_c00008{left:165.120000pt;}
.xab_c00008{left:166.653333pt;}
.x71_c00008{left:168.960000pt;}
.x7_c00008{left:170.493333pt;}
.xe9_c00008{left:173.573333pt;}
.x8_c00008{left:175.866667pt;}
.x10a_c00008{left:178.173333pt;}
.x9f_c00008{left:179.706667pt;}
.xac_c00008{left:181.253333pt;}
.x9_c00008{left:183.546667pt;}
.x5d_c00008{left:185.853333pt;}
.x17_c00008{left:187.386667pt;}
.x32_c00008{left:188.933333pt;}
.x116_c00008{left:191.226667pt;}
.x11d_c00008{left:195.840000pt;}
.x10c_c00008{left:198.146667pt;}
.x72_c00008{left:200.453333pt;}
.xc9_c00008{left:202.746667pt;}
.xa_c00008{left:205.826667pt;}
.x5e_c00008{left:208.133333pt;}
.x7c_c00008{left:211.200000pt;}
.x98_c00008{left:212.733333pt;}
.xea_c00008{left:214.266667pt;}
.xd9_c00008{left:215.813333pt;}
.x50_c00008{left:217.346667pt;}
.x7d_c00008{left:221.946667pt;}
.x2_c00008{left:223.493333pt;}
.xda_c00008{left:225.026667pt;}
.xca_c00008{left:226.560000pt;}
.x66_c00008{left:228.093333pt;}
.xbb_c00008{left:229.626667pt;}
.x73_c00008{left:231.933333pt;}
.xb1_c00008{left:234.240000pt;}
.x67_c00008{left:238.080000pt;}
.xf7_c00008{left:240.386667pt;}
.xfa_c00008{left:242.693333pt;}
.xc4_c00008{left:244.986667pt;}
.xe0_c00008{left:248.066667pt;}
.x18_c00008{left:250.373333pt;}
.x89_c00008{left:252.666667pt;}
.xd2_c00008{left:256.506667pt;}
.xc1_c00008{left:259.586667pt;}
.x10b_c00008{left:261.893333pt;}
.x26_c00008{left:263.426667pt;}
.x3f_c00008{left:264.960000pt;}
.xb2_c00008{left:266.493333pt;}
.x11e_c00008{left:268.026667pt;}
.x110_c00008{left:269.573333pt;}
.x19_c00008{left:271.106667pt;}
.x99_c00008{left:272.640000pt;}
.x33_c00008{left:275.706667pt;}
.x74_c00008{left:277.253333pt;}
.x51_c00008{left:280.320000pt;}
.xb3_c00008{left:281.853333pt;}
.x27_c00008{left:283.386667pt;}
.x34_c00008{left:284.933333pt;}
.xb_c00008{left:286.466667pt;}
.x68_c00008{left:290.306667pt;}
.xeb_c00008{left:295.680000pt;}
.xf8_c00008{left:297.213333pt;}
.x69_c00008{left:298.746667pt;}
.x48_c00008{left:302.586667pt;}
.x40_c00008{left:304.133333pt;}
.xe1_c00008{left:306.426667pt;}
.xd5_c00008{left:308.733333pt;}
.x1a_c00008{left:311.813333pt;}
.xfb_c00008{left:314.880000pt;}
.x52_c00008{left:316.413333pt;}
.xc5_c00008{left:319.493333pt;}
.x1b_c00008{left:321.026667pt;}
.xe6_c00008{left:322.560000pt;}
.xa0_c00008{left:324.093333pt;}
.xa6_c00008{left:326.400000pt;}
.xf9_c00008{left:327.933333pt;}
.x9a_c00008{left:331.773333pt;}
.xd6_c00008{left:334.853333pt;}
.xad_c00008{left:337.920000pt;}
.x8a_c00008{left:339.453333pt;}
.xff_c00008{left:340.986667pt;}
.x5f_c00008{left:342.533333pt;}
.x28_c00008{left:345.600000pt;}
.xc2_c00008{left:347.133333pt;}
.xf1_c00008{left:348.666667pt;}
.x60_c00008{left:350.213333pt;}
.x91_c00008{left:351.746667pt;}
.x75_c00008{left:353.280000pt;}
.x35_c00008{left:354.813333pt;}
.x114_c00008{left:356.346667pt;}
.xb4_c00008{left:358.653333pt;}
.x36_c00008{left:364.026667pt;}
.xcb_c00008{left:366.333333pt;}
.xfc_c00008{left:367.866667pt;}
.xd3_c00008{left:370.173333pt;}
.x81_c00008{left:371.706667pt;}
.xe2_c00008{left:374.786667pt;}
.xa7_c00008{left:377.093333pt;}
.xa1_c00008{left:379.386667pt;}
.x111_c00008{left:384.000000pt;}
.x53_c00008{left:388.613333pt;}
.x61_c00008{left:391.680000pt;}
.x82_c00008{left:393.213333pt;}
.xc_c00008{left:394.746667pt;}
.x8b_c00008{left:396.293333pt;}
.x7e_c00008{left:398.586667pt;}
.xf2_c00008{left:400.133333pt;}
.x100_c00008{left:402.426667pt;}
.x8c_c00008{left:405.506667pt;}
.xcc_c00008{left:408.573333pt;}
.x49_c00008{left:410.880000pt;}
.xd_c00008{left:412.413333pt;}
.xae_c00008{left:416.253333pt;}
.x37_c00008{left:420.093333pt;}
.x92_c00008{left:422.400000pt;}
.xe7_c00008{left:423.933333pt;}
.x41_c00008{left:427.013333pt;}
.x1c_c00008{left:428.546667pt;}
.xe8_c00008{left:430.853333pt;}
.x54_c00008{left:432.386667pt;}
.xc6_c00008{left:435.453333pt;}
.xc3_c00008{left:436.986667pt;}
.x4a_c00008{left:438.533333pt;}
.x62_c00008{left:440.066667pt;}
.x29_c00008{left:443.133333pt;}
.x83_c00008{left:445.440000pt;}
.xcd_c00008{left:447.746667pt;}
.xb5_c00008{left:450.053333pt;}
.x38_c00008{left:451.586667pt;}
.x84_c00008{left:453.120000pt;}
.x112_c00008{left:455.426667pt;}
.x117_c00008{left:456.960000pt;}
.x101_c00008{left:460.026667pt;}
.xa8_c00008{left:463.866667pt;}
.x107_c00008{left:466.173333pt;}
.x108_c00008{left:467.706667pt;}
.xfd_c00008{left:469.253333pt;}
.x118_c00008{left:471.546667pt;}
.x9b_c00008{left:473.093333pt;}
.xa2_c00008{left:475.386667pt;}
.xaf_c00008{left:476.933333pt;}
.xce_c00008{left:478.466667pt;}
.x119_c00008{left:481.533333pt;}
.x2a_c00008{left:487.680000pt;}
.x109_c00008{left:490.746667pt;}
.x76_c00008{left:493.053333pt;}
.x9c_c00008{left:494.586667pt;}
.x39_c00008{left:496.133333pt;}
.x8d_c00008{left:499.973333pt;}
.x2b_c00008{left:501.506667pt;}
.xe_c00008{left:503.040000pt;}
.x55_c00008{left:506.880000pt;}
.xbc_c00008{left:509.186667pt;}
.x11a_c00008{left:511.493333pt;}
.x1d_c00008{left:514.560000pt;}
.x122_c00008{left:516.866667pt;}
.xa3_c00008{left:518.400000pt;}
.x6a_c00008{left:520.706667pt;}
.x10d_c00008{left:522.240000pt;}
.xf_c00008{left:524.546667pt;}
.x6b_c00008{left:529.146667pt;}
.xdb_c00008{left:532.986667pt;}
.x106_c00008{left:535.293333pt;}
.xec_c00008{left:537.600000pt;}
.xb6_c00008{left:539.133333pt;}
.x77_c00008{left:541.440000pt;}
.x12b_c00008{left:542.973333pt;}
.xcf_c00008{left:545.280000pt;}
.x4b_c00008{left:547.586667pt;}
.x1e_c00008{left:550.653333pt;}
.x12c_c00008{left:552.186667pt;}
.x42_c00008{left:557.573333pt;}
.x3_c00008{left:559.866667pt;}
.xf3_c00008{left:561.413333pt;}
.xe3_c00008{left:566.013333pt;}
.x56_c00008{left:567.546667pt;}
.x1f_c00008{left:569.093333pt;}
.xbd_c00008{left:571.386667pt;}
.x8e_c00008{left:572.933333pt;}
.xc7_c00008{left:576.000000pt;}
.xa4_c00008{left:578.306667pt;}
.x78_c00008{left:579.840000pt;}
.x123_c00008{left:581.373333pt;}
.x93_c00008{left:582.906667pt;}
.xa9_c00008{left:585.213333pt;}
.x10_c00008{left:587.520000pt;}
.x7f_c00008{left:589.826667pt;}
.x20_c00008{left:591.360000pt;}
.x94_c00008{left:592.893333pt;}
.xdc_c00008{left:595.973333pt;}
.xd0_c00008{left:597.506667pt;}
.xd7_c00008{left:599.040000pt;}
.x120_c00008{left:601.346667pt;}
.x11_c00008{left:602.880000pt;}
.xb7_c00008{left:604.413333pt;}
.x124_c00008{left:605.946667pt;}
.x79_c00008{left:611.333333pt;}
.x63_c00008{left:612.866667pt;}
.xfe_c00008{left:614.400000pt;}
.x95_c00008{left:615.933333pt;}
.x6c_c00008{left:617.466667pt;}
.xdd_c00008{left:619.773333pt;}
.xed_c00008{left:621.306667pt;}
.x57_c00008{left:623.613333pt;}
.x4c_c00008{left:625.146667pt;}
.x2c_c00008{left:627.453333pt;}
.x85_c00008{left:628.986667pt;}
.x43_c00008{left:630.533333pt;}
.xde_c00008{left:632.066667pt;}
.x3a_c00008{left:633.600000pt;}
.x1_c00008{left:636.666667pt;}
.x86_c00008{left:638.213333pt;}
.x21_c00008{left:639.746667pt;}
.x80_c00008{left:642.813333pt;}
.x10e_c00008{left:644.346667pt;}
.x4d_c00008{left:648.186667pt;}
.x44_c00008{left:653.573333pt;}
.x11b_c00008{left:655.866667pt;}
.x58_c00008{left:657.413333pt;}
.x2d_c00008{left:659.706667pt;}
.x4e_c00008{left:662.013333pt;}
.x12_c00008{left:664.320000pt;}
.x45_c00008{left:668.933333pt;}
.xd1_c00008{left:670.466667pt;}
.x3b_c00008{left:672.773333pt;}
.xbe_c00008{left:674.306667pt;}
.x13_c00008{left:675.840000pt;}
.xb8_c00008{left:678.146667pt;}
.x9d_c00008{left:679.680000pt;}
.x2e_c00008{left:681.986667pt;}
.xdf_c00008{left:683.520000pt;}
.xaa_c00008{left:685.053333pt;}
.xbf_c00008{left:687.360000pt;}
.xb0_c00008{left:689.666667pt;}
.x10f_c00008{left:691.200000pt;}
.xd8_c00008{left:692.733333pt;}
.x125_c00008{left:694.266667pt;}
.x14_c00008{left:695.813333pt;}
.xb9_c00008{left:699.653333pt;}
.x8f_c00008{left:703.493333pt;}
.x7a_c00008{left:705.026667pt;}
.x59_c00008{left:707.333333pt;}
.x46_c00008{left:709.626667pt;}
.x22_c00008{left:712.706667pt;}
.xe4_c00008{left:715.013333pt;}
.xd4_c00008{left:717.306667pt;}
.x7b_c00008{left:718.853333pt;}
.x9e_c00008{left:720.386667pt;}
.x11c_c00008{left:721.920000pt;}
.x6d_c00008{left:724.226667pt;}
.x15_c00008{left:725.760000pt;}
.x96_c00008{left:727.293333pt;}
.x23_c00008{left:729.600000pt;}
.xa5_c00008{left:731.133333pt;}
.x2f_c00008{left:734.213333pt;}
.xba_c00008{left:735.746667pt;}
.x102_c00008{left:737.280000pt;}
.x5a_c00008{left:741.120000pt;}
.x3c_c00008{left:742.653333pt;}
.xc8_c00008{left:748.800000pt;}
.x5b_c00008{left:752.640000pt;}
.xee_c00008{left:755.706667pt;}
.x4f_c00008{left:757.253333pt;}
.xf4_c00008{left:761.093333pt;}
.x115_c00008{left:762.626667pt;}
.xef_c00008{left:764.933333pt;}
.x113_c00008{left:769.533333pt;}
.x24_c00008{left:772.613333pt;}
.xf0_c00008{left:777.213333pt;}
.x12e_c00008{left:810.240000pt;}
.x12f_c00008{left:825.600000pt;}
.x12d_c00008{left:923.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4df1473f59cdbcee4cc8c865.woff2')format("woff");}.ff1_c00009{font-family:ff1_c00009;line-height:1.109863;font-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_c00009{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me7_c00009{transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);}
.me3_c00009{transform:matrix(0.063625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063625,0.000000,0.000000,0.250000,0,0);}
.me9_c00009{transform:matrix(0.067300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067300,0.000000,0.000000,0.250000,0,0);}
.m184_c00009{transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);}
.mf9_c00009{transform:matrix(0.069900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069900,0.000000,0.000000,0.250000,0,0);}
.mb5_c00009{transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);}
.m19e_c00009{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.me1_c00009{transform:matrix(0.086975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086975,0.000000,0.000000,0.250000,0,0);}
.m144_c00009{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m18e_c00009{transform:matrix(0.101325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101325,0.000000,0.000000,0.250000,0,0);}
.mef_c00009{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);}
.m2a_c00009{transform:matrix(0.102975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102975,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00009{transform:matrix(0.104850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104850,0.000000,0.000000,0.250000,0,0);}
.m19d_c00009{transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);}
.m191_c00009{transform:matrix(0.107375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107375,0.000000,0.000000,0.250000,0,0);}
.me2_c00009{transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);}
.mee_c00009{transform:matrix(0.108250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108250,0.000000,0.000000,0.250000,0,0);}
.m109_c00009{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.me0_c00009{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m141_c00009{transform:matrix(0.115050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115050,0.000000,0.000000,0.250000,0,0);}
.m108_c00009{transform:matrix(0.118000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118000,0.000000,0.000000,0.250000,0,0);}
.m193_c00009{transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);}
.m3d_c00009{transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);}
.m15e_c00009{transform:matrix(0.121025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121025,0.000000,0.000000,0.250000,0,0);}
.m4f_c00009{transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);}
.m189_c00009{transform:matrix(0.123275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123275,0.000000,0.000000,0.250000,0,0);}
.m16a_c00009{transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);}
.m78_c00009{transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);}
.m4c_c00009{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00009{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);}
.m13a_c00009{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);}
.m162_c00009{transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);}
.m14c_c00009{transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);}
.m100_c00009{transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);}
.m18d_c00009{transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);}
.m180_c00009{transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);}
.m11b_c00009{transform:matrix(0.131225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131225,0.000000,0.000000,0.250000,0,0);}
.mc8_c00009{transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);}
.mdc_c00009{transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00009{transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);}
.m18f_c00009{transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);}
.meb_c00009{transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);}
.md9_c00009{transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);}
.m19a_c00009{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.mae_c00009{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m119_c00009{transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);}
.m17c_c00009{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);}
.mb6_c00009{transform:matrix(0.137600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137600,0.000000,0.000000,0.250000,0,0);}
.m181_c00009{transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);}
.mcf_c00009{transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);}
.m122_c00009{transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);}
.m13f_c00009{transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);}
.m156_c00009{transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);}
.m160_c00009{transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);}
.md7_c00009{transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);}
.m190_c00009{transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);}
.m17a_c00009{transform:matrix(0.141525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141525,0.000000,0.000000,0.250000,0,0);}
.m48_c00009{transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);}
.md_c00009{transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);}
.m172_c00009{transform:matrix(0.141850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141850,0.000000,0.000000,0.250000,0,0);}
.mdd_c00009{transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);}
.m178_c00009{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m15f_c00009{transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);}
.m95_c00009{transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);}
.m84_c00009{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00009{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);}
.m58_c00009{transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);}
.m3_c00009{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m21_c00009{transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);}
.m53_c00009{transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);}
.m196_c00009{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);}
.m75_c00009{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);}
.mea_c00009{transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);}
.m2b_c00009{transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);}
.m13d_c00009{transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);}
.m199_c00009{transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);}
.m10c_c00009{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);}
.m77_c00009{transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);}
.m69_c00009{transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);}
.maf_c00009{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);}
.m179_c00009{transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);}
.mcb_c00009{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m175_c00009{transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);}
.m19c_c00009{transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);}
.m49_c00009{transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);}
.m174_c00009{transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);}
.mc0_c00009{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);}
.mdf_c00009{transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);}
.m150_c00009{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m105_c00009{transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);}
.m177_c00009{transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);}
.md8_c00009{transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);}
.m93_c00009{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.m97_c00009{transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);}
.m18a_c00009{transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);}
.m10_c00009{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.m9e_c00009{transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);}
.ma5_c00009{transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);}
.m61_c00009{transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);}
.m16f_c00009{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m12_c00009{transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);}
.m46_c00009{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m6e_c00009{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.m6_c00009{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.m16b_c00009{transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);}
.m197_c00009{transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);}
.m153_c00009{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m6d_c00009{transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);}
.mc7_c00009{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.mf_c00009{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);}
.ma0_c00009{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m94_c00009{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.md3_c00009{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.m155_c00009{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m2c_c00009{transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);}
.m13e_c00009{transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);}
.mfb_c00009{transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);}
.m142_c00009{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.m192_c00009{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.mf1_c00009{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.m54_c00009{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);}
.m12c_c00009{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.mfd_c00009{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);}
.m9f_c00009{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.m70_c00009{transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);}
.m19_c00009{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00009{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.m20_c00009{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m71_c00009{transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);}
.m125_c00009{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.md2_c00009{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.m15d_c00009{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.ma8_c00009{transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);}
.me5_c00009{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.mec_c00009{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.mab_c00009{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.m52_c00009{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.m11c_c00009{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m10e_c00009{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m28_c00009{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m173_c00009{transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);}
.m176_c00009{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m15c_c00009{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.m96_c00009{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m14_c00009{transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);}
.mbb_c00009{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);}
.m88_c00009{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m6b_c00009{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m111_c00009{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m30_c00009{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m17f_c00009{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);}
.m123_c00009{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);}
.m154_c00009{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.m3b_c00009{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);}
.m8f_c00009{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.m83_c00009{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.m146_c00009{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.m14f_c00009{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m68_c00009{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.m4e_c00009{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m166_c00009{transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);}
.m188_c00009{transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);}
.m25_c00009{transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);}
.m35_c00009{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m9d_c00009{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m6c_c00009{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m87_c00009{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m85_c00009{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.mac_c00009{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);}
.m56_c00009{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);}
.mb3_c00009{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.m128_c00009{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m137_c00009{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m11_c00009{transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);}
.mf3_c00009{transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);}
.mad_c00009{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.m39_c00009{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m2f_c00009{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.m117_c00009{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.m9b_c00009{transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);}
.m118_c00009{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.m7f_c00009{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m164_c00009{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);}
.m2e_c00009{transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);}
.ma9_c00009{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);}
.ma1_c00009{transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);}
.mb9_c00009{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.m1f_c00009{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.mc1_c00009{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.m5e_c00009{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m148_c00009{transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);}
.m8e_c00009{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m80_c00009{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.m131_c00009{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.m124_c00009{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);}
.m4b_c00009{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.m7e_c00009{transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);}
.md0_c00009{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m1e_c00009{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m11e_c00009{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m106_c00009{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);}
.me6_c00009{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m132_c00009{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.mba_c00009{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);}
.m63_c00009{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);}
.mc6_c00009{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);}
.m62_c00009{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m101_c00009{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);}
.m65_c00009{transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);}
.mf8_c00009{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m64_c00009{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.me_c00009{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);}
.m139_c00009{transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);}
.m8d_c00009{transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);}
.m18_c00009{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);}
.m170_c00009{transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);}
.m104_c00009{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m14d_c00009{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);}
.ma3_c00009{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m157_c00009{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.m113_c00009{transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);}
.m74_c00009{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);}
.m16d_c00009{transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);}
.m16e_c00009{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.m5b_c00009{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);}
.m140_c00009{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m67_c00009{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m103_c00009{transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);}
.m169_c00009{transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);}
.m15a_c00009{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m145_c00009{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.mf6_c00009{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);}
.m194_c00009{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);}
.mfc_c00009{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.m151_c00009{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m12a_c00009{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);}
.m195_c00009{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m17_c00009{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);}
.ma2_c00009{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m19b_c00009{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);}
.m13c_c00009{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);}
.m107_c00009{transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);}
.m152_c00009{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);}
.m38_c00009{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);}
.m31_c00009{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);}
.m136_c00009{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.mbc_c00009{transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);}
.mcd_c00009{transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);}
.mfa_c00009{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);}
.m6f_c00009{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00009{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);}
.m129_c00009{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m37_c00009{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);}
.m138_c00009{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);}
.me4_c00009{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.maa_c00009{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);}
.m51_c00009{transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);}
.m17d_c00009{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);}
.m1c_c00009{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);}
.mdb_c00009{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m133_c00009{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);}
.m120_c00009{transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);}
.m10d_c00009{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);}
.m3c_c00009{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.m130_c00009{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.m3e_c00009{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);}
.m11a_c00009{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);}
.m8b_c00009{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.mb8_c00009{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.md6_c00009{transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);}
.m127_c00009{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m168_c00009{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m8a_c00009{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);}
.m86_c00009{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.m116_c00009{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00009{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.m134_c00009{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);}
.m4d_c00009{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m79_c00009{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);}
.m8c_c00009{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m9_c00009{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);}
.ma_c00009{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m6a_c00009{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m186_c00009{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);}
.m4a_c00009{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m10f_c00009{transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);}
.mb4_c00009{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m5c_c00009{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);}
.mc_c00009{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);}
.m18b_c00009{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);}
.m12d_c00009{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m115_c00009{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);}
.mf5_c00009{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);}
.m7_c00009{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);}
.m27_c00009{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);}
.m1a1_c00009{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);}
.m198_c00009{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00009{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);}
.mbd_c00009{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.m7c_c00009{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);}
.m165_c00009{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);}
.m73_c00009{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m7d_c00009{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m110_c00009{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m90_c00009{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);}
.m112_c00009{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m47_c00009{transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);}
.m17b_c00009{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);}
.m57_c00009{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);}
.ma4_c00009{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.m26_c00009{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);}
.mc3_c00009{transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);}
.m89_c00009{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);}
.m1b_c00009{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);}
.mf7_c00009{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);}
.m11f_c00009{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);}
.m1aa_c00009{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.m14b_c00009{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);}
.m99_c00009{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);}
.m76_c00009{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.m1a_c00009{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);}
.mc4_c00009{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m121_c00009{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.m29_c00009{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.ma6_c00009{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m171_c00009{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);}
.me8_c00009{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);}
.m126_c00009{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);}
.ma7_c00009{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);}
.m14e_c00009{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);}
.m187_c00009{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m10b_c00009{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);}
.mfe_c00009{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.m3f_c00009{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);}
.m59_c00009{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);}
.m12e_c00009{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m114_c00009{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.m167_c00009{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.mb2_c00009{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);}
.m33_c00009{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m55_c00009{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);}
.m44_c00009{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);}
.m102_c00009{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);}
.m98_c00009{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);}
.m14a_c00009{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00009{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00009{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m42_c00009{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);}
.m1d_c00009{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);}
.m9c_c00009{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);}
.mc2_c00009{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00009{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);}
.m2d_c00009{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m81_c00009{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m82_c00009{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);}
.mbe_c00009{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m60_c00009{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);}
.m1a7_c00009{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);}
.m5a_c00009{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m147_c00009{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00009{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mca_c00009{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00009{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mff_c00009{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m143_c00009{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00009{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m182_c00009{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md1_c00009{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);}
.m23_c00009{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mce_c00009{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mbf_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);}
.med_c00009{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);}
.m11d_c00009{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00009{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m24_c00009{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);}
.m163_c00009{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00009{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m91_c00009{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);}
.m72_c00009{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m32_c00009{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mde_c00009{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m22_c00009{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);}
.mb1_c00009{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00009{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m50_c00009{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mda_c00009{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.md5_c00009{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);}
.m7b_c00009{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m92_c00009{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);}
.m15b_c00009{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m19f_c00009{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2_c00009{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m135_c00009{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m149_c00009{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00009{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m45_c00009{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_c00009{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m158_c00009{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00009{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m43_c00009{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);}
.m36_c00009{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m34_c00009{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m13b_c00009{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mb_c00009{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m161_c00009{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m16c_c00009{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);}
.m5d_c00009{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m13_c00009{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.md4_c00009{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m183_c00009{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m159_c00009{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00009{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);}
.m66_c00009{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m17e_c00009{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m4_c00009{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00009{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1_c00009{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);}
.m41_c00009{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00009{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00009{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00009{transform:matrix(1.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.185000,0.000000,0.000000,0.250000,0,0);}
.m15_c00009{transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);}
.m18c_c00009{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m185_c00009{transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);}
.m0_c00009{transform:matrix(5.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.472500,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00009{transform:matrix(6.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.555000,0.000000,0.000000,0.250000,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;}
.fs3_c00009{font-size:3.456000px;}
.fs19_c00009{font-size:6.000000px;}
.fs2_c00009{font-size:6.900000px;}
.fs0_c00009{font-size:10.380000px;}
.fs21_c00009{font-size:13.800000px;}
.fs4_c00009{font-size:17.280000px;}
.fsa_c00009{font-size:20.760000px;}
.fs1_c00009{font-size:24.180000px;}
.fs1e_c00009{font-size:27.660000px;}
.fs1a_c00009{font-size:31.080000px;}
.fs1d_c00009{font-size:34.560000px;}
.fs11_c00009{font-size:38.040000px;}
.fs1c_c00009{font-size:41.460000px;}
.fs1f_c00009{font-size:44.940000px;}
.fs17_c00009{font-size:48.360000px;}
.fs10_c00009{font-size:51.840000px;}
.fs5_c00009{font-size:55.320000px;}
.fsb_c00009{font-size:58.740000px;}
.fs8_c00009{font-size:62.220000px;}
.fs13_c00009{font-size:65.640000px;}
.fs15_c00009{font-size:69.120000px;}
.fs7_c00009{font-size:72.600000px;}
.fs12_c00009{font-size:76.020000px;}
.fsc_c00009{font-size:79.500000px;}
.fs9_c00009{font-size:82.920000px;}
.fs14_c00009{font-size:86.400000px;}
.fsf_c00009{font-size:89.880000px;}
.fs16_c00009{font-size:93.300000px;}
.fs18_c00009{font-size:96.780000px;}
.fse_c00009{font-size:100.200000px;}
.fs6_c00009{font-size:103.680000px;}
.fs20_c00009{font-size:107.160000px;}
.fs1b_c00009{font-size:110.580000px;}
.fs23_c00009{font-size:114.060000px;}
.fs24_c00009{font-size:117.480000px;}
.fsd_c00009{font-size:120.960000px;}
.fs25_c00009{font-size:124.440000px;}
.fs22_c00009{font-size:134.760000px;}
.y0_c00009{bottom:0.000000px;}
.y176_c00009{bottom:201.315000px;}
.y175_c00009{bottom:202.170000px;}
.y177_c00009{bottom:203.040000px;}
.y173_c00009{bottom:203.910000px;}
.y178_c00009{bottom:204.765000px;}
.y170_c00009{bottom:205.635000px;}
.y16c_c00009{bottom:206.490000px;}
.y168_c00009{bottom:207.360000px;}
.y171_c00009{bottom:209.085000px;}
.y169_c00009{bottom:210.810000px;}
.y16d_c00009{bottom:211.680000px;}
.y16f_c00009{bottom:213.405000px;}
.y16e_c00009{bottom:214.275000px;}
.y172_c00009{bottom:215.130000px;}
.y174_c00009{bottom:216.870000px;}
.y16b_c00009{bottom:219.450000px;}
.y16a_c00009{bottom:224.640000px;}
.y164_c00009{bottom:226.365000px;}
.y160_c00009{bottom:227.235000px;}
.y167_c00009{bottom:228.090000px;}
.y165_c00009{bottom:228.960000px;}
.y162_c00009{bottom:232.410000px;}
.y161_c00009{bottom:233.280000px;}
.y163_c00009{bottom:235.005000px;}
.y166_c00009{bottom:236.730000px;}
.y159_c00009{bottom:247.110000px;}
.y157_c00009{bottom:247.965000px;}
.y158_c00009{bottom:248.835000px;}
.y15e_c00009{bottom:250.560000px;}
.y15a_c00009{bottom:252.285000px;}
.y15c_c00009{bottom:254.010000px;}
.y156_c00009{bottom:257.475000px;}
.y15d_c00009{bottom:258.330000px;}
.y15b_c00009{bottom:260.070000px;}
.y155_c00009{bottom:266.970000px;}
.y15f_c00009{bottom:270.435000px;}
.y152_c00009{bottom:276.480000px;}
.y154_c00009{bottom:277.350000px;}
.y14c_c00009{bottom:278.205000px;}
.y151_c00009{bottom:279.075000px;}
.y150_c00009{bottom:279.930000px;}
.y14d_c00009{bottom:280.800000px;}
.y153_c00009{bottom:281.670000px;}
.y14f_c00009{bottom:285.990000px;}
.y14b_c00009{bottom:298.950000px;}
.y14e_c00009{bottom:299.805000px;}
.y148_c00009{bottom:301.530000px;}
.y147_c00009{bottom:303.270000px;}
.y149_c00009{bottom:304.125000px;}
.y146_c00009{bottom:304.995000px;}
.y14a_c00009{bottom:306.720000px;}
.y143_c00009{bottom:326.595000px;}
.y141_c00009{bottom:327.450000px;}
.y145_c00009{bottom:330.045000px;}
.y144_c00009{bottom:330.915000px;}
.y142_c00009{bottom:333.510000px;}
.y13f_c00009{bottom:351.645000px;}
.y13c_c00009{bottom:353.370000px;}
.y140_c00009{bottom:354.240000px;}
.y13e_c00009{bottom:355.965000px;}
.y13d_c00009{bottom:362.010000px;}
.y13b_c00009{bottom:376.710000px;}
.y139_c00009{bottom:377.565000px;}
.y138_c00009{bottom:379.290000px;}
.y137_c00009{bottom:381.885000px;}
.y13a_c00009{bottom:384.480000px;}
.y134_c00009{bottom:401.760000px;}
.y12e_c00009{bottom:402.630000px;}
.y130_c00009{bottom:403.485000px;}
.y135_c00009{bottom:405.210000px;}
.y133_c00009{bottom:406.080000px;}
.y132_c00009{bottom:408.675000px;}
.y12f_c00009{bottom:409.530000px;}
.y131_c00009{bottom:410.400000px;}
.y136_c00009{bottom:412.995000px;}
.y12c_c00009{bottom:425.085000px;}
.y12a_c00009{bottom:425.955000px;}
.y129_c00009{bottom:426.810000px;}
.y128_c00009{bottom:427.680000px;}
.y125_c00009{bottom:428.550000px;}
.y126_c00009{bottom:432.870000px;}
.y124_c00009{bottom:433.725000px;}
.y12b_c00009{bottom:434.595000px;}
.y127_c00009{bottom:435.450000px;}
.y12d_c00009{bottom:451.875000px;}
.y11f_c00009{bottom:452.730000px;}
.y120_c00009{bottom:453.600000px;}
.y121_c00009{bottom:454.470000px;}
.y11d_c00009{bottom:456.195000px;}
.y11e_c00009{bottom:457.050000px;}
.y122_c00009{bottom:457.920000px;}
.y123_c00009{bottom:458.790000px;}
.y11c_c00009{bottom:459.645000px;}
.y11a_c00009{bottom:476.925000px;}
.y113_c00009{bottom:477.795000px;}
.y117_c00009{bottom:478.650000px;}
.y114_c00009{bottom:479.520000px;}
.y119_c00009{bottom:482.970000px;}
.y118_c00009{bottom:484.710000px;}
.y116_c00009{bottom:485.565000px;}
.y115_c00009{bottom:486.435000px;}
.y112_c00009{bottom:488.160000px;}
.y11b_c00009{bottom:493.350000px;}
.y111_c00009{bottom:498.525000px;}
.y10d_c00009{bottom:501.120000px;}
.y10e_c00009{bottom:501.990000px;}
.y10c_c00009{bottom:502.845000px;}
.y10f_c00009{bottom:505.440000px;}
.y110_c00009{bottom:509.760000px;}
.y107_c00009{bottom:527.910000px;}
.y109_c00009{bottom:531.360000px;}
.y108_c00009{bottom:532.230000px;}
.y10b_c00009{bottom:533.085000px;}
.y10a_c00009{bottom:535.680000px;}
.y105_c00009{bottom:552.090000px;}
.y103_c00009{bottom:552.960000px;}
.y102_c00009{bottom:553.830000px;}
.y104_c00009{bottom:557.280000px;}
.y106_c00009{bottom:574.560000px;}
.y101_c00009{bottom:575.430000px;}
.yfb_c00009{bottom:578.880000px;}
.yfd_c00009{bottom:579.750000px;}
.yfe_c00009{bottom:580.605000px;}
.yff_c00009{bottom:581.475000px;}
.yfa_c00009{bottom:584.070000px;}
.y100_c00009{bottom:584.925000px;}
.yfc_c00009{bottom:586.650000px;}
.yf9_c00009{bottom:588.390000px;}
.yf3_c00009{bottom:603.930000px;}
.yf1_c00009{bottom:605.670000px;}
.yf8_c00009{bottom:606.525000px;}
.yf2_c00009{bottom:607.395000px;}
.yf7_c00009{bottom:608.250000px;}
.yf5_c00009{bottom:609.120000px;}
.yf4_c00009{bottom:610.845000px;}
.yf6_c00009{bottom:611.715000px;}
.yf0_c00009{bottom:628.125000px;}
.yec_c00009{bottom:628.995000px;}
.yea_c00009{bottom:629.850000px;}
.yef_c00009{bottom:632.445000px;}
.yed_c00009{bottom:636.765000px;}
.yee_c00009{bottom:637.635000px;}
.yeb_c00009{bottom:644.550000px;}
.ye9_c00009{bottom:653.190000px;}
.ye6_c00009{bottom:654.045000px;}
.ye8_c00009{bottom:655.770000px;}
.ye7_c00009{bottom:661.830000px;}
.ye5_c00009{bottom:677.370000px;}
.ye4_c00009{bottom:678.240000px;}
.yde_c00009{bottom:679.110000px;}
.ye2_c00009{bottom:679.965000px;}
.ye0_c00009{bottom:680.835000px;}
.ye3_c00009{bottom:682.560000px;}
.ye1_c00009{bottom:685.155000px;}
.ydf_c00009{bottom:686.880000px;}
.ydc_c00009{bottom:700.710000px;}
.yda_c00009{bottom:701.565000px;}
.yd9_c00009{bottom:704.160000px;}
.ydb_c00009{bottom:705.885000px;}
.yd8_c00009{bottom:708.480000px;}
.yd7_c00009{bottom:711.930000px;}
.ydd_c00009{bottom:724.035000px;}
.yd2_c00009{bottom:724.890000px;}
.yd4_c00009{bottom:725.760000px;}
.yd3_c00009{bottom:726.630000px;}
.yd1_c00009{bottom:728.355000px;}
.yd5_c00009{bottom:730.950000px;}
.yd0_c00009{bottom:734.400000px;}
.yd6_c00009{bottom:736.125000px;}
.ycd_c00009{bottom:748.230000px;}
.yc8_c00009{bottom:749.955000px;}
.ycb_c00009{bottom:751.680000px;}
.ycc_c00009{bottom:754.275000px;}
.yca_c00009{bottom:757.725000px;}
.yc9_c00009{bottom:758.595000px;}
.yce_c00009{bottom:766.365000px;}
.ycf_c00009{bottom:768.090000px;}
.yc7_c00009{bottom:769.830000px;}
.yc1_c00009{bottom:773.280000px;}
.yc0_c00009{bottom:774.150000px;}
.yc2_c00009{bottom:775.005000px;}
.yc5_c00009{bottom:775.875000px;}
.yc3_c00009{bottom:776.730000px;}
.yc6_c00009{bottom:777.600000px;}
.yc4_c00009{bottom:779.325000px;}
.ybe_c00009{bottom:781.050000px;}
.ybf_c00009{bottom:789.690000px;}
.ybd_c00009{bottom:796.605000px;}
.yb5_c00009{bottom:798.330000px;}
.yb8_c00009{bottom:799.200000px;}
.ybc_c00009{bottom:800.925000px;}
.yb7_c00009{bottom:806.115000px;}
.yb6_c00009{bottom:806.970000px;}
.yb9_c00009{bottom:811.290000px;}
.yba_c00009{bottom:813.885000px;}
.ybb_c00009{bottom:821.670000px;}
.yb2_c00009{bottom:823.395000px;}
.yb0_c00009{bottom:824.250000px;}
.yb1_c00009{bottom:825.120000px;}
.yb3_c00009{bottom:829.440000px;}
.yae_c00009{bottom:830.310000px;}
.yaf_c00009{bottom:832.035000px;}
.yad_c00009{bottom:832.890000px;}
.yb4_c00009{bottom:836.355000px;}
.ya7_c00009{bottom:848.445000px;}
.ya6_c00009{bottom:849.315000px;}
.ya5_c00009{bottom:850.170000px;}
.yaa_c00009{bottom:852.765000px;}
.ya9_c00009{bottom:855.360000px;}
.ya8_c00009{bottom:857.085000px;}
.ya4_c00009{bottom:857.955000px;}
.yab_c00009{bottom:864.870000px;}
.ya3_c00009{bottom:865.725000px;}
.yac_c00009{bottom:866.595000px;}
.y9e_c00009{bottom:872.640000px;}
.ya0_c00009{bottom:873.510000px;}
.y9f_c00009{bottom:874.365000px;}
.y9a_c00009{bottom:876.090000px;}
.ya1_c00009{bottom:879.555000px;}
.ya2_c00009{bottom:880.410000px;}
.y9d_c00009{bottom:881.280000px;}
.y9c_c00009{bottom:882.150000px;}
.y9b_c00009{bottom:883.005000px;}
.y97_c00009{bottom:898.560000px;}
.y91_c00009{bottom:900.285000px;}
.y92_c00009{bottom:901.155000px;}
.y94_c00009{bottom:903.750000px;}
.y95_c00009{bottom:906.330000px;}
.y96_c00009{bottom:907.200000px;}
.y93_c00009{bottom:908.070000px;}
.y98_c00009{bottom:920.160000px;}
.y99_c00009{bottom:923.610000px;}
.y8c_c00009{bottom:924.480000px;}
.y8b_c00009{bottom:925.350000px;}
.y8f_c00009{bottom:927.930000px;}
.y8d_c00009{bottom:928.800000px;}
.y8a_c00009{bottom:930.525000px;}
.y90_c00009{bottom:931.395000px;}
.y8e_c00009{bottom:932.250000px;}
.y89_c00009{bottom:933.120000px;}
.y88_c00009{bottom:937.440000px;}
.y87_c00009{bottom:947.805000px;}
.y85_c00009{bottom:948.675000px;}
.y84_c00009{bottom:949.530000px;}
.y83_c00009{bottom:952.995000px;}
.y86_c00009{bottom:953.850000px;}
.y7f_c00009{bottom:973.725000px;}
.y7e_c00009{bottom:974.595000px;}
.y7c_c00009{bottom:975.450000px;}
.y7d_c00009{bottom:976.320000px;}
.y82_c00009{bottom:978.915000px;}
.y81_c00009{bottom:980.640000px;}
.y80_c00009{bottom:981.510000px;}
.y7b_c00009{bottom:984.960000px;}
.y79_c00009{bottom:998.790000px;}
.y77_c00009{bottom:999.645000px;}
.y7a_c00009{bottom:1000.515000px;}
.y75_c00009{bottom:1001.370000px;}
.y78_c00009{bottom:1003.110000px;}
.y76_c00009{bottom:1005.690000px;}
.y6e_c00009{bottom:1023.840000px;}
.y73_c00009{bottom:1024.710000px;}
.y6d_c00009{bottom:1025.565000px;}
.y70_c00009{bottom:1026.435000px;}
.y74_c00009{bottom:1028.160000px;}
.y72_c00009{bottom:1029.030000px;}
.y6f_c00009{bottom:1031.610000px;}
.y71_c00009{bottom:1032.480000px;}
.y67_c00009{bottom:1048.890000px;}
.y65_c00009{bottom:1049.760000px;}
.y66_c00009{bottom:1050.630000px;}
.y69_c00009{bottom:1051.485000px;}
.y64_c00009{bottom:1054.080000px;}
.y6a_c00009{bottom:1055.805000px;}
.y68_c00009{bottom:1056.675000px;}
.y6b_c00009{bottom:1057.530000px;}
.y6c_c00009{bottom:1071.360000px;}
.y5e_c00009{bottom:1073.955000px;}
.y63_c00009{bottom:1074.810000px;}
.y61_c00009{bottom:1075.680000px;}
.y62_c00009{bottom:1076.550000px;}
.y60_c00009{bottom:1080.000000px;}
.y5f_c00009{bottom:1081.725000px;}
.y5d_c00009{bottom:1082.595000px;}
.y57_c00009{bottom:1099.005000px;}
.y56_c00009{bottom:1099.875000px;}
.y59_c00009{bottom:1100.730000px;}
.y5b_c00009{bottom:1102.470000px;}
.y5a_c00009{bottom:1104.195000px;}
.y58_c00009{bottom:1106.790000px;}
.y5c_c00009{bottom:1107.645000px;}
.y17d_c00009{bottom:1116.285000px;}
.y53_c00009{bottom:1124.070000px;}
.y50_c00009{bottom:1124.925000px;}
.y52_c00009{bottom:1125.795000px;}
.y4f_c00009{bottom:1126.650000px;}
.y4e_c00009{bottom:1127.520000px;}
.y51_c00009{bottom:1129.245000px;}
.y55_c00009{bottom:1130.115000px;}
.y54_c00009{bottom:1133.565000px;}
.y4b_c00009{bottom:1149.120000px;}
.y4c_c00009{bottom:1149.990000px;}
.y4a_c00009{bottom:1150.845000px;}
.y49_c00009{bottom:1152.570000px;}
.y4d_c00009{bottom:1154.310000px;}
.y48_c00009{bottom:1156.035000px;}
.y47_c00009{bottom:1156.890000px;}
.y43_c00009{bottom:1172.445000px;}
.y3f_c00009{bottom:1174.170000px;}
.y45_c00009{bottom:1175.040000px;}
.y42_c00009{bottom:1175.910000px;}
.y40_c00009{bottom:1176.765000px;}
.y41_c00009{bottom:1178.490000px;}
.y46_c00009{bottom:1180.230000px;}
.y44_c00009{bottom:1183.680000px;}
.y3b_c00009{bottom:1199.235000px;}
.y39_c00009{bottom:1200.090000px;}
.y3d_c00009{bottom:1201.830000px;}
.y3c_c00009{bottom:1203.555000px;}
.y38_c00009{bottom:1206.150000px;}
.y3a_c00009{bottom:1207.005000px;}
.y36_c00009{bottom:1208.730000px;}
.y3e_c00009{bottom:1209.600000px;}
.y37_c00009{bottom:1216.515000px;}
.y17b_c00009{bottom:1217.370000px;}
.y17c_c00009{bottom:1218.240000px;}
.y17a_c00009{bottom:1226.010000px;}
.y31_c00009{bottom:1229.475000px;}
.y32_c00009{bottom:1230.330000px;}
.y2e_c00009{bottom:1231.200000px;}
.y2d_c00009{bottom:1232.070000px;}
.y30_c00009{bottom:1232.925000px;}
.y35_c00009{bottom:1238.970000px;}
.y33_c00009{bottom:1239.840000px;}
.y179_c00009{bottom:1242.435000px;}
.y2f_c00009{bottom:1247.610000px;}
.y34_c00009{bottom:1248.480000px;}
.y29_c00009{bottom:1249.350000px;}
.y2a_c00009{bottom:1250.205000px;}
.y2c_c00009{bottom:1251.075000px;}
.y2b_c00009{bottom:1254.525000px;}
.y23_c00009{bottom:1272.675000px;}
.y22_c00009{bottom:1273.530000px;}
.y27_c00009{bottom:1275.270000px;}
.y26_c00009{bottom:1280.445000px;}
.y28_c00009{bottom:1281.315000px;}
.y24_c00009{bottom:1282.170000px;}
.y25_c00009{bottom:1283.040000px;}
.y1a_c00009{bottom:1297.725000px;}
.y1b_c00009{bottom:1298.595000px;}
.y1f_c00009{bottom:1299.450000px;}
.y1c_c00009{bottom:1302.915000px;}
.y1e_c00009{bottom:1303.770000px;}
.y19_c00009{bottom:1304.640000px;}
.y1d_c00009{bottom:1306.365000px;}
.y20_c00009{bottom:1315.005000px;}
.y21_c00009{bottom:1319.325000px;}
.y12_c00009{bottom:1322.790000px;}
.y13_c00009{bottom:1323.645000px;}
.y14_c00009{bottom:1324.515000px;}
.y18_c00009{bottom:1325.370000px;}
.y17_c00009{bottom:1327.110000px;}
.y16_c00009{bottom:1327.965000px;}
.y15_c00009{bottom:1329.690000px;}
.y11_c00009{bottom:1330.560000px;}
.yb_c00009{bottom:1346.115000px;}
.yd_c00009{bottom:1347.840000px;}
.y7_c00009{bottom:1348.710000px;}
.yc_c00009{bottom:1349.565000px;}
.ye_c00009{bottom:1350.435000px;}
.y8_c00009{bottom:1353.885000px;}
.ya_c00009{bottom:1354.755000px;}
.y9_c00009{bottom:1355.610000px;}
.y6_c00009{bottom:1356.480000px;}
.yf_c00009{bottom:1357.350000px;}
.y10_c00009{bottom:1365.990000px;}
.y5_c00009{bottom:1376.355000px;}
.y4_c00009{bottom:1377.210000px;}
.y3_c00009{bottom:1378.080000px;}
.y2_c00009{bottom:1378.950000px;}
.y1_c00009{bottom:1379.805000px;}
.y17e_c00009{bottom:1419.555000px;}
.h5_c00009{height:3.110063px;}
.h1b_c00009{height:5.399414px;}
.h4_c00009{height:6.209326px;}
.h2_c00009{height:9.340986px;}
.h23_c00009{height:12.418652px;}
.h6_c00009{height:15.550313px;}
.hc_c00009{height:18.681973px;}
.h3_c00009{height:21.759639px;}
.h20_c00009{height:24.891299px;}
.h1c_c00009{height:27.968965px;}
.h1f_c00009{height:31.100625px;}
.h13_c00009{height:34.232285px;}
.h1e_c00009{height:37.309951px;}
.h21_c00009{height:40.441611px;}
.h19_c00009{height:43.519277px;}
.h12_c00009{height:46.650937px;}
.h7_c00009{height:49.782598px;}
.hd_c00009{height:52.860264px;}
.ha_c00009{height:55.991924px;}
.h15_c00009{height:59.069590px;}
.h17_c00009{height:62.201250px;}
.h9_c00009{height:65.332910px;}
.h14_c00009{height:68.410576px;}
.he_c00009{height:71.542236px;}
.hb_c00009{height:74.619902px;}
.h16_c00009{height:77.751563px;}
.h11_c00009{height:80.883223px;}
.h18_c00009{height:83.960889px;}
.h1a_c00009{height:87.092549px;}
.h10_c00009{height:90.170215px;}
.h8_c00009{height:93.301875px;}
.h22_c00009{height:96.433535px;}
.h1d_c00009{height:99.511201px;}
.h25_c00009{height:102.642861px;}
.h26_c00009{height:105.720527px;}
.hf_c00009{height:108.852188px;}
.h27_c00009{height:111.983848px;}
.h24_c00009{height:121.270840px;}
.h0_c00009{height:1505.955000px;}
.h1_c00009{height:1506.000000px;}
.w1_c00009{width:1076.250000px;}
.w0_c00009{width:1076.550000px;}
.x0_c00009{left:0.000000px;}
.xfa_c00009{left:108.000000px;}
.xfb_c00009{left:130.470000px;}
.xfc_c00009{left:149.475000px;}
.x112_c00009{left:157.245000px;}
.xfd_c00009{left:163.290000px;}
.x104_c00009{left:165.030000px;}
.x5d_c00009{left:167.610000px;}
.xf9_c00009{left:177.120000px;}
.xa6_c00009{left:185.760000px;}
.x113_c00009{left:187.485000px;}
.x91_c00009{left:189.210000px;}
.x78_c00009{left:190.950000px;}
.xfe_c00009{left:195.270000px;}
.x8a_c00009{left:197.850000px;}
.x84_c00009{left:203.040000px;}
.xc8_c00009{left:204.765000px;}
.x99_c00009{left:209.085000px;}
.x5e_c00009{left:210.810000px;}
.xe7_c00009{left:212.550000px;}
.x3b_c00009{left:214.275000px;}
.x71_c00009{left:216.000000px;}
.xdc_c00009{left:217.725000px;}
.x85_c00009{left:220.320000px;}
.x50_c00009{left:222.045000px;}
.x7_c00009{left:224.640000px;}
.xe3_c00009{left:226.365000px;}
.x10a_c00009{left:230.685000px;}
.x8_c00009{left:239.325000px;}
.x44_c00009{left:243.645000px;}
.x17_c00009{left:246.240000px;}
.xb5_c00009{left:247.965000px;}
.x45_c00009{left:250.560000px;}
.xc1_c00009{left:259.200000px;}
.x58_c00009{left:264.390000px;}
.x46_c00009{left:266.115000px;}
.x72_c00009{left:269.565000px;}
.x1_c00009{left:271.290000px;}
.xae_c00009{left:273.030000px;}
.xee_c00009{left:279.930000px;}
.xaf_c00009{left:283.395000px;}
.x92_c00009{left:285.120000px;}
.xf6_c00009{left:286.845000px;}
.x90_c00009{left:292.035000px;}
.x9_c00009{left:295.485000px;}
.x22_c00009{left:297.210000px;}
.x66_c00009{left:301.530000px;}
.x9a_c00009{left:303.270000px;}
.x105_c00009{left:305.850000px;}
.x2e_c00009{left:310.170000px;}
.xbc_c00009{left:312.765000px;}
.x93_c00009{left:314.490000px;}
.xa7_c00009{left:317.085000px;}
.x10b_c00009{left:319.680000px;}
.x9b_c00009{left:321.405000px;}
.x5f_c00009{left:323.130000px;}
.xeb_c00009{left:324.870000px;}
.x18_c00009{left:328.320000px;}
.x73_c00009{left:331.770000px;}
.x51_c00009{left:335.235000px;}
.x109_c00009{left:336.960000px;}
.x79_c00009{left:338.685000px;}
.x23_c00009{left:342.150000px;}
.x2f_c00009{left:344.730000px;}
.x59_c00009{left:347.325000px;}
.x47_c00009{left:349.050000px;}
.x8b_c00009{left:350.790000px;}
.x67_c00009{left:353.370000px;}
.xf3_c00009{left:355.110000px;}
.x34_c00009{left:356.835000px;}
.x5a_c00009{left:358.560000px;}
.xde_c00009{left:360.285000px;}
.xf7_c00009{left:362.880000px;}
.xe8_c00009{left:364.605000px;}
.x2_c00009{left:366.330000px;}
.x10c_c00009{left:369.795000px;}
.xc2_c00009{left:374.115000px;}
.x8c_c00009{left:376.710000px;}
.x86_c00009{left:379.290000px;}
.xcf_c00009{left:381.030000px;}
.xff_c00009{left:382.755000px;}
.x9c_c00009{left:385.350000px;}
.x35_c00009{left:388.800000px;}
.x19_c00009{left:391.395000px;}
.xa_c00009{left:393.120000px;}
.xa8_c00009{left:395.715000px;}
.xd0_c00009{left:398.310000px;}
.x74_c00009{left:408.675000px;}
.x24_c00009{left:410.400000px;}
.xb_c00009{left:412.125000px;}
.xd1_c00009{left:419.040000px;}
.x100_c00009{left:420.765000px;}
.x7d_c00009{left:423.360000px;}
.x48_c00009{left:425.955000px;}
.x36_c00009{left:428.550000px;}
.x25_c00009{left:432.000000px;}
.x10d_c00009{left:434.595000px;}
.xb9_c00009{left:437.190000px;}
.x37_c00009{left:438.915000px;}
.x87_c00009{left:441.510000px;}
.xb6_c00009{left:444.090000px;}
.x5b_c00009{left:446.685000px;}
.x106_c00009{left:448.410000px;}
.xb2_c00009{left:451.005000px;}
.xc3_c00009{left:453.600000px;}
.x68_c00009{left:457.050000px;}
.xe0_c00009{left:458.790000px;}
.x7e_c00009{left:463.110000px;}
.x9d_c00009{left:465.690000px;}
.x69_c00009{left:470.880000px;}
.x60_c00009{left:472.605000px;}
.xc4_c00009{left:476.070000px;}
.x101_c00009{left:477.795000px;}
.x7f_c00009{left:479.520000px;}
.x94_c00009{left:481.245000px;}
.xf2_c00009{left:482.970000px;}
.x1a_c00009{left:484.710000px;}
.x26_c00009{left:486.435000px;}
.x5c_c00009{left:488.160000px;}
.x7a_c00009{left:489.885000px;}
.x49_c00009{left:491.610000px;}
.xc_c00009{left:494.205000px;}
.xa0_c00009{left:496.800000px;}
.xf4_c00009{left:500.250000px;}
.xd_c00009{left:505.440000px;}
.xd5_c00009{left:507.165000px;}
.x8d_c00009{left:519.270000px;}
.xc9_c00009{left:526.170000px;}
.x4a_c00009{left:528.765000px;}
.xe_c00009{left:531.360000px;}
.x3c_c00009{left:535.680000px;}
.x95_c00009{left:537.405000px;}
.x80_c00009{left:540.870000px;}
.xbd_c00009{left:543.450000px;}
.x1b_c00009{left:549.510000px;}
.xd6_c00009{left:551.235000px;}
.x9e_c00009{left:553.830000px;}
.xbe_c00009{left:555.555000px;}
.x8e_c00009{left:557.280000px;}
.xef_c00009{left:559.875000px;}
.x27_c00009{left:562.470000px;}
.x6a_c00009{left:565.050000px;}
.xb7_c00009{left:569.370000px;}
.x3d_c00009{left:571.965000px;}
.x28_c00009{left:577.155000px;}
.x52_c00009{left:579.750000px;}
.xca_c00009{left:582.330000px;}
.xa1_c00009{left:584.070000px;}
.xd2_c00009{left:589.245000px;}
.x6b_c00009{left:591.840000px;}
.x30_c00009{left:594.435000px;}
.x88_c00009{left:597.030000px;}
.x8f_c00009{left:600.480000px;}
.x102_c00009{left:603.075000px;}
.x4b_c00009{left:604.800000px;}
.xf_c00009{left:608.250000px;}
.x81_c00009{left:609.990000px;}
.xd7_c00009{left:614.310000px;}
.x1c_c00009{left:616.035000px;}
.xa9_c00009{left:621.210000px;}
.x38_c00009{left:623.805000px;}
.xb0_c00009{left:626.400000px;}
.xdf_c00009{left:628.995000px;}
.x61_c00009{left:630.720000px;}
.xa2_c00009{left:635.040000px;}
.x107_c00009{left:636.765000px;}
.xc5_c00009{left:638.490000px;}
.x29_c00009{left:641.085000px;}
.x6c_c00009{left:642.810000px;}
.xcb_c00009{left:652.320000px;}
.x96_c00009{left:654.915000px;}
.xe4_c00009{left:658.365000px;}
.x31_c00009{left:660.090000px;}
.x39_c00009{left:665.280000px;}
.xf0_c00009{left:667.005000px;}
.x10_c00009{left:668.730000px;}
.x4c_c00009{left:672.195000px;}
.xd8_c00009{left:673.920000px;}
.xc6_c00009{left:675.645000px;}
.xdd_c00009{left:678.240000px;}
.x1d_c00009{left:681.690000px;}
.x2a_c00009{left:685.155000px;}
.xe5_c00009{left:689.475000px;}
.x53_c00009{left:691.200000px;}
.x3e_c00009{left:692.925000px;}
.x54_c00009{left:696.390000px;}
.x97_c00009{left:698.115000px;}
.xcd_c00009{left:699.840000px;}
.x10e_c00009{left:701.565000px;}
.xd3_c00009{left:705.030000px;}
.xe9_c00009{left:710.205000px;}
.x6d_c00009{left:712.800000px;}
.xaa_c00009{left:716.250000px;}
.x3a_c00009{left:720.570000px;}
.x3f_c00009{left:722.310000px;}
.x11_c00009{left:725.760000px;}
.x2b_c00009{left:730.080000px;}
.xd9_c00009{left:732.675000px;}
.x62_c00009{left:735.270000px;}
.xa3_c00009{left:741.315000px;}
.xbf_c00009{left:743.040000px;}
.x1e_c00009{left:744.765000px;}
.x82_c00009{left:746.490000px;}
.x10f_c00009{left:749.085000px;}
.x98_c00009{left:750.810000px;}
.x12_c00009{left:756.870000px;}
.xb1_c00009{left:759.450000px;}
.xec_c00009{left:761.190000px;}
.x6e_c00009{left:764.640000px;}
.x103_c00009{left:766.365000px;}
.x4d_c00009{left:769.830000px;}
.xb3_c00009{left:772.410000px;}
.x40_c00009{left:774.150000px;}
.x55_c00009{left:778.470000px;}
.x2c_c00009{left:780.195000px;}
.x1f_c00009{left:782.790000px;}
.x41_c00009{left:785.370000px;}
.x56_c00009{left:787.965000px;}
.xab_c00009{left:789.690000px;}
.xe2_c00009{left:791.430000px;}
.xa4_c00009{left:795.750000px;}
.x63_c00009{left:797.475000px;}
.xd4_c00009{left:799.200000px;}
.x89_c00009{left:800.925000px;}
.xa5_c00009{left:802.650000px;}
.xda_c00009{left:804.390000px;}
.x110_c00009{left:806.970000px;}
.xb4_c00009{left:808.710000px;}
.x32_c00009{left:810.435000px;}
.x20_c00009{left:812.160000px;}
.x6f_c00009{left:813.885000px;}
.x75_c00009{left:815.610000px;}
.x33_c00009{left:819.930000px;}
.xcc_c00009{left:822.525000px;}
.x83_c00009{left:824.250000px;}
.xce_c00009{left:825.990000px;}
.x42_c00009{left:829.440000px;}
.x4e_c00009{left:831.165000px;}
.x13_c00009{left:835.485000px;}
.xb8_c00009{left:837.210000px;}
.x7b_c00009{left:839.805000px;}
.x57_c00009{left:843.270000px;}
.x111_c00009{left:844.995105px;}
.xe1_c00009{left:847.590000px;}
.x4f_c00009{left:850.170000px;}
.xf8_c00009{left:851.910000px;}
.x108_c00009{left:859.680000px;}
.xdb_c00009{left:862.275000px;}
.x14_c00009{left:864.000000px;}
.x21_c00009{left:865.725000px;}
.x43_c00009{left:867.450000px;}
.x7c_c00009{left:869.190000px;}
.xac_c00009{left:872.640000px;}
.xf5_c00009{left:874.365000px;}
.xe6_c00009{left:880.410000px;}
.x64_c00009{left:883.005000px;}
.x76_c00009{left:886.470000px;}
.x65_c00009{left:890.790000px;}
.x15_c00009{left:895.110000px;}
.xad_c00009{left:898.560000px;}
.x77_c00009{left:900.285000px;}
.x16_c00009{left:902.010000px;}
.x9f_c00009{left:904.605000px;}
.x3_c00009{left:912.390000px;}
.x70_c00009{left:914.115000px;}
.xc7_c00009{left:917.565000px;}
.xf1_c00009{left:921.030000px;}
.x4_c00009{left:926.205000px;}
.xba_c00009{left:927.930000px;}
.x5_c00009{left:931.395048px;}
.xc0_c00009{left:933.120000px;}
.x6_c00009{left:937.440000px;}
.xbb_c00009{left:939.165000px;}
.x2d_c00009{left:943.485150px;}
.xea_c00009{left:947.805000px;}
.xed_c00009{left:958.170000px;}
@media print{
.v0_c00009{vertical-align:0.000000pt;}
.ls0_c00009{letter-spacing:0.000000pt;}
.ws0_c00009{word-spacing:0.000000pt;}
.fs3_c00009{font-size:3.072000pt;}
.fs19_c00009{font-size:5.333333pt;}
.fs2_c00009{font-size:6.133333pt;}
.fs0_c00009{font-size:9.226667pt;}
.fs21_c00009{font-size:12.266667pt;}
.fs4_c00009{font-size:15.360000pt;}
.fsa_c00009{font-size:18.453333pt;}
.fs1_c00009{font-size:21.493333pt;}
.fs1e_c00009{font-size:24.586667pt;}
.fs1a_c00009{font-size:27.626667pt;}
.fs1d_c00009{font-size:30.720000pt;}
.fs11_c00009{font-size:33.813333pt;}
.fs1c_c00009{font-size:36.853333pt;}
.fs1f_c00009{font-size:39.946667pt;}
.fs17_c00009{font-size:42.986667pt;}
.fs10_c00009{font-size:46.080000pt;}
.fs5_c00009{font-size:49.173333pt;}
.fsb_c00009{font-size:52.213333pt;}
.fs8_c00009{font-size:55.306667pt;}
.fs13_c00009{font-size:58.346667pt;}
.fs15_c00009{font-size:61.440000pt;}
.fs7_c00009{font-size:64.533333pt;}
.fs12_c00009{font-size:67.573333pt;}
.fsc_c00009{font-size:70.666667pt;}
.fs9_c00009{font-size:73.706667pt;}
.fs14_c00009{font-size:76.800000pt;}
.fsf_c00009{font-size:79.893333pt;}
.fs16_c00009{font-size:82.933333pt;}
.fs18_c00009{font-size:86.026667pt;}
.fse_c00009{font-size:89.066667pt;}
.fs6_c00009{font-size:92.160000pt;}
.fs20_c00009{font-size:95.253333pt;}
.fs1b_c00009{font-size:98.293333pt;}
.fs23_c00009{font-size:101.386667pt;}
.fs24_c00009{font-size:104.426667pt;}
.fsd_c00009{font-size:107.520000pt;}
.fs25_c00009{font-size:110.613333pt;}
.fs22_c00009{font-size:119.786667pt;}
.y0_c00009{bottom:0.000000pt;}
.y176_c00009{bottom:178.946667pt;}
.y175_c00009{bottom:179.706667pt;}
.y177_c00009{bottom:180.480000pt;}
.y173_c00009{bottom:181.253333pt;}
.y178_c00009{bottom:182.013333pt;}
.y170_c00009{bottom:182.786667pt;}
.y16c_c00009{bottom:183.546667pt;}
.y168_c00009{bottom:184.320000pt;}
.y171_c00009{bottom:185.853333pt;}
.y169_c00009{bottom:187.386667pt;}
.y16d_c00009{bottom:188.160000pt;}
.y16f_c00009{bottom:189.693333pt;}
.y16e_c00009{bottom:190.466667pt;}
.y172_c00009{bottom:191.226667pt;}
.y174_c00009{bottom:192.773333pt;}
.y16b_c00009{bottom:195.066667pt;}
.y16a_c00009{bottom:199.680000pt;}
.y164_c00009{bottom:201.213333pt;}
.y160_c00009{bottom:201.986667pt;}
.y167_c00009{bottom:202.746667pt;}
.y165_c00009{bottom:203.520000pt;}
.y162_c00009{bottom:206.586667pt;}
.y161_c00009{bottom:207.360000pt;}
.y163_c00009{bottom:208.893333pt;}
.y166_c00009{bottom:210.426667pt;}
.y159_c00009{bottom:219.653333pt;}
.y157_c00009{bottom:220.413333pt;}
.y158_c00009{bottom:221.186667pt;}
.y15e_c00009{bottom:222.720000pt;}
.y15a_c00009{bottom:224.253333pt;}
.y15c_c00009{bottom:225.786667pt;}
.y156_c00009{bottom:228.866667pt;}
.y15d_c00009{bottom:229.626667pt;}
.y15b_c00009{bottom:231.173333pt;}
.y155_c00009{bottom:237.306667pt;}
.y15f_c00009{bottom:240.386667pt;}
.y152_c00009{bottom:245.760000pt;}
.y154_c00009{bottom:246.533333pt;}
.y14c_c00009{bottom:247.293333pt;}
.y151_c00009{bottom:248.066667pt;}
.y150_c00009{bottom:248.826667pt;}
.y14d_c00009{bottom:249.600000pt;}
.y153_c00009{bottom:250.373333pt;}
.y14f_c00009{bottom:254.213333pt;}
.y14b_c00009{bottom:265.733333pt;}
.y14e_c00009{bottom:266.493333pt;}
.y148_c00009{bottom:268.026667pt;}
.y147_c00009{bottom:269.573333pt;}
.y149_c00009{bottom:270.333333pt;}
.y146_c00009{bottom:271.106667pt;}
.y14a_c00009{bottom:272.640000pt;}
.y143_c00009{bottom:290.306667pt;}
.y141_c00009{bottom:291.066667pt;}
.y145_c00009{bottom:293.373333pt;}
.y144_c00009{bottom:294.146667pt;}
.y142_c00009{bottom:296.453333pt;}
.y13f_c00009{bottom:312.573333pt;}
.y13c_c00009{bottom:314.106667pt;}
.y140_c00009{bottom:314.880000pt;}
.y13e_c00009{bottom:316.413333pt;}
.y13d_c00009{bottom:321.786667pt;}
.y13b_c00009{bottom:334.853333pt;}
.y139_c00009{bottom:335.613333pt;}
.y138_c00009{bottom:337.146667pt;}
.y137_c00009{bottom:339.453333pt;}
.y13a_c00009{bottom:341.760000pt;}
.y134_c00009{bottom:357.120000pt;}
.y12e_c00009{bottom:357.893333pt;}
.y130_c00009{bottom:358.653333pt;}
.y135_c00009{bottom:360.186667pt;}
.y133_c00009{bottom:360.960000pt;}
.y132_c00009{bottom:363.266667pt;}
.y12f_c00009{bottom:364.026667pt;}
.y131_c00009{bottom:364.800000pt;}
.y136_c00009{bottom:367.106667pt;}
.y12c_c00009{bottom:377.853333pt;}
.y12a_c00009{bottom:378.626667pt;}
.y129_c00009{bottom:379.386667pt;}
.y128_c00009{bottom:380.160000pt;}
.y125_c00009{bottom:380.933333pt;}
.y126_c00009{bottom:384.773333pt;}
.y124_c00009{bottom:385.533333pt;}
.y12b_c00009{bottom:386.306667pt;}
.y127_c00009{bottom:387.066667pt;}
.y12d_c00009{bottom:401.666667pt;}
.y11f_c00009{bottom:402.426667pt;}
.y120_c00009{bottom:403.200000pt;}
.y121_c00009{bottom:403.973333pt;}
.y11d_c00009{bottom:405.506667pt;}
.y11e_c00009{bottom:406.266667pt;}
.y122_c00009{bottom:407.040000pt;}
.y123_c00009{bottom:407.813333pt;}
.y11c_c00009{bottom:408.573333pt;}
.y11a_c00009{bottom:423.933333pt;}
.y113_c00009{bottom:424.706667pt;}
.y117_c00009{bottom:425.466667pt;}
.y114_c00009{bottom:426.240000pt;}
.y119_c00009{bottom:429.306667pt;}
.y118_c00009{bottom:430.853333pt;}
.y116_c00009{bottom:431.613333pt;}
.y115_c00009{bottom:432.386667pt;}
.y112_c00009{bottom:433.920000pt;}
.y11b_c00009{bottom:438.533333pt;}
.y111_c00009{bottom:443.133333pt;}
.y10d_c00009{bottom:445.440000pt;}
.y10e_c00009{bottom:446.213333pt;}
.y10c_c00009{bottom:446.973333pt;}
.y10f_c00009{bottom:449.280000pt;}
.y110_c00009{bottom:453.120000pt;}
.y107_c00009{bottom:469.253333pt;}
.y109_c00009{bottom:472.320000pt;}
.y108_c00009{bottom:473.093333pt;}
.y10b_c00009{bottom:473.853333pt;}
.y10a_c00009{bottom:476.160000pt;}
.y105_c00009{bottom:490.746667pt;}
.y103_c00009{bottom:491.520000pt;}
.y102_c00009{bottom:492.293333pt;}
.y104_c00009{bottom:495.360000pt;}
.y106_c00009{bottom:510.720000pt;}
.y101_c00009{bottom:511.493333pt;}
.yfb_c00009{bottom:514.560000pt;}
.yfd_c00009{bottom:515.333333pt;}
.yfe_c00009{bottom:516.093333pt;}
.yff_c00009{bottom:516.866667pt;}
.yfa_c00009{bottom:519.173333pt;}
.y100_c00009{bottom:519.933333pt;}
.yfc_c00009{bottom:521.466667pt;}
.yf9_c00009{bottom:523.013333pt;}
.yf3_c00009{bottom:536.826667pt;}
.yf1_c00009{bottom:538.373333pt;}
.yf8_c00009{bottom:539.133333pt;}
.yf2_c00009{bottom:539.906667pt;}
.yf7_c00009{bottom:540.666667pt;}
.yf5_c00009{bottom:541.440000pt;}
.yf4_c00009{bottom:542.973333pt;}
.yf6_c00009{bottom:543.746667pt;}
.yf0_c00009{bottom:558.333333pt;}
.yec_c00009{bottom:559.106667pt;}
.yea_c00009{bottom:559.866667pt;}
.yef_c00009{bottom:562.173333pt;}
.yed_c00009{bottom:566.013333pt;}
.yee_c00009{bottom:566.786667pt;}
.yeb_c00009{bottom:572.933333pt;}
.ye9_c00009{bottom:580.613333pt;}
.ye6_c00009{bottom:581.373333pt;}
.ye8_c00009{bottom:582.906667pt;}
.ye7_c00009{bottom:588.293333pt;}
.ye5_c00009{bottom:602.106667pt;}
.ye4_c00009{bottom:602.880000pt;}
.yde_c00009{bottom:603.653333pt;}
.ye2_c00009{bottom:604.413333pt;}
.ye0_c00009{bottom:605.186667pt;}
.ye3_c00009{bottom:606.720000pt;}
.ye1_c00009{bottom:609.026667pt;}
.ydf_c00009{bottom:610.560000pt;}
.ydc_c00009{bottom:622.853333pt;}
.yda_c00009{bottom:623.613333pt;}
.yd9_c00009{bottom:625.920000pt;}
.ydb_c00009{bottom:627.453333pt;}
.yd8_c00009{bottom:629.760000pt;}
.yd7_c00009{bottom:632.826667pt;}
.ydd_c00009{bottom:643.586667pt;}
.yd2_c00009{bottom:644.346667pt;}
.yd4_c00009{bottom:645.120000pt;}
.yd3_c00009{bottom:645.893333pt;}
.yd1_c00009{bottom:647.426667pt;}
.yd5_c00009{bottom:649.733333pt;}
.yd0_c00009{bottom:652.800000pt;}
.yd6_c00009{bottom:654.333333pt;}
.ycd_c00009{bottom:665.093333pt;}
.yc8_c00009{bottom:666.626667pt;}
.ycb_c00009{bottom:668.160000pt;}
.ycc_c00009{bottom:670.466667pt;}
.yca_c00009{bottom:673.533333pt;}
.yc9_c00009{bottom:674.306667pt;}
.yce_c00009{bottom:681.213333pt;}
.ycf_c00009{bottom:682.746667pt;}
.yc7_c00009{bottom:684.293333pt;}
.yc1_c00009{bottom:687.360000pt;}
.yc0_c00009{bottom:688.133333pt;}
.yc2_c00009{bottom:688.893333pt;}
.yc5_c00009{bottom:689.666667pt;}
.yc3_c00009{bottom:690.426667pt;}
.yc6_c00009{bottom:691.200000pt;}
.yc4_c00009{bottom:692.733333pt;}
.ybe_c00009{bottom:694.266667pt;}
.ybf_c00009{bottom:701.946667pt;}
.ybd_c00009{bottom:708.093333pt;}
.yb5_c00009{bottom:709.626667pt;}
.yb8_c00009{bottom:710.400000pt;}
.ybc_c00009{bottom:711.933333pt;}
.yb7_c00009{bottom:716.546667pt;}
.yb6_c00009{bottom:717.306667pt;}
.yb9_c00009{bottom:721.146667pt;}
.yba_c00009{bottom:723.453333pt;}
.ybb_c00009{bottom:730.373333pt;}
.yb2_c00009{bottom:731.906667pt;}
.yb0_c00009{bottom:732.666667pt;}
.yb1_c00009{bottom:733.440000pt;}
.yb3_c00009{bottom:737.280000pt;}
.yae_c00009{bottom:738.053333pt;}
.yaf_c00009{bottom:739.586667pt;}
.yad_c00009{bottom:740.346667pt;}
.yb4_c00009{bottom:743.426667pt;}
.ya7_c00009{bottom:754.173333pt;}
.ya6_c00009{bottom:754.946667pt;}
.ya5_c00009{bottom:755.706667pt;}
.yaa_c00009{bottom:758.013333pt;}
.ya9_c00009{bottom:760.320000pt;}
.ya8_c00009{bottom:761.853333pt;}
.ya4_c00009{bottom:762.626667pt;}
.yab_c00009{bottom:768.773333pt;}
.ya3_c00009{bottom:769.533333pt;}
.yac_c00009{bottom:770.306667pt;}
.y9e_c00009{bottom:775.680000pt;}
.ya0_c00009{bottom:776.453333pt;}
.y9f_c00009{bottom:777.213333pt;}
.y9a_c00009{bottom:778.746667pt;}
.ya1_c00009{bottom:781.826667pt;}
.ya2_c00009{bottom:782.586667pt;}
.y9d_c00009{bottom:783.360000pt;}
.y9c_c00009{bottom:784.133333pt;}
.y9b_c00009{bottom:784.893333pt;}
.y97_c00009{bottom:798.720000pt;}
.y91_c00009{bottom:800.253333pt;}
.y92_c00009{bottom:801.026667pt;}
.y94_c00009{bottom:803.333333pt;}
.y95_c00009{bottom:805.626667pt;}
.y96_c00009{bottom:806.400000pt;}
.y93_c00009{bottom:807.173333pt;}
.y98_c00009{bottom:817.920000pt;}
.y99_c00009{bottom:820.986667pt;}
.y8c_c00009{bottom:821.760000pt;}
.y8b_c00009{bottom:822.533333pt;}
.y8f_c00009{bottom:824.826667pt;}
.y8d_c00009{bottom:825.600000pt;}
.y8a_c00009{bottom:827.133333pt;}
.y90_c00009{bottom:827.906667pt;}
.y8e_c00009{bottom:828.666667pt;}
.y89_c00009{bottom:829.440000pt;}
.y88_c00009{bottom:833.280000pt;}
.y87_c00009{bottom:842.493333pt;}
.y85_c00009{bottom:843.266667pt;}
.y84_c00009{bottom:844.026667pt;}
.y83_c00009{bottom:847.106667pt;}
.y86_c00009{bottom:847.866667pt;}
.y7f_c00009{bottom:865.533333pt;}
.y7e_c00009{bottom:866.306667pt;}
.y7c_c00009{bottom:867.066667pt;}
.y7d_c00009{bottom:867.840000pt;}
.y82_c00009{bottom:870.146667pt;}
.y81_c00009{bottom:871.680000pt;}
.y80_c00009{bottom:872.453333pt;}
.y7b_c00009{bottom:875.520000pt;}
.y79_c00009{bottom:887.813333pt;}
.y77_c00009{bottom:888.573333pt;}
.y7a_c00009{bottom:889.346667pt;}
.y75_c00009{bottom:890.106667pt;}
.y78_c00009{bottom:891.653333pt;}
.y76_c00009{bottom:893.946667pt;}
.y6e_c00009{bottom:910.080000pt;}
.y73_c00009{bottom:910.853333pt;}
.y6d_c00009{bottom:911.613333pt;}
.y70_c00009{bottom:912.386667pt;}
.y74_c00009{bottom:913.920000pt;}
.y72_c00009{bottom:914.693333pt;}
.y6f_c00009{bottom:916.986667pt;}
.y71_c00009{bottom:917.760000pt;}
.y67_c00009{bottom:932.346667pt;}
.y65_c00009{bottom:933.120000pt;}
.y66_c00009{bottom:933.893333pt;}
.y69_c00009{bottom:934.653333pt;}
.y64_c00009{bottom:936.960000pt;}
.y6a_c00009{bottom:938.493333pt;}
.y68_c00009{bottom:939.266667pt;}
.y6b_c00009{bottom:940.026667pt;}
.y6c_c00009{bottom:952.320000pt;}
.y5e_c00009{bottom:954.626667pt;}
.y63_c00009{bottom:955.386667pt;}
.y61_c00009{bottom:956.160000pt;}
.y62_c00009{bottom:956.933333pt;}
.y60_c00009{bottom:960.000000pt;}
.y5f_c00009{bottom:961.533333pt;}
.y5d_c00009{bottom:962.306667pt;}
.y57_c00009{bottom:976.893333pt;}
.y56_c00009{bottom:977.666667pt;}
.y59_c00009{bottom:978.426667pt;}
.y5b_c00009{bottom:979.973333pt;}
.y5a_c00009{bottom:981.506667pt;}
.y58_c00009{bottom:983.813333pt;}
.y5c_c00009{bottom:984.573333pt;}
.y17d_c00009{bottom:992.253333pt;}
.y53_c00009{bottom:999.173333pt;}
.y50_c00009{bottom:999.933333pt;}
.y52_c00009{bottom:1000.706667pt;}
.y4f_c00009{bottom:1001.466667pt;}
.y4e_c00009{bottom:1002.240000pt;}
.y51_c00009{bottom:1003.773333pt;}
.y55_c00009{bottom:1004.546667pt;}
.y54_c00009{bottom:1007.613333pt;}
.y4b_c00009{bottom:1021.440000pt;}
.y4c_c00009{bottom:1022.213333pt;}
.y4a_c00009{bottom:1022.973333pt;}
.y49_c00009{bottom:1024.506667pt;}
.y4d_c00009{bottom:1026.053333pt;}
.y48_c00009{bottom:1027.586667pt;}
.y47_c00009{bottom:1028.346667pt;}
.y43_c00009{bottom:1042.173333pt;}
.y3f_c00009{bottom:1043.706667pt;}
.y45_c00009{bottom:1044.480000pt;}
.y42_c00009{bottom:1045.253333pt;}
.y40_c00009{bottom:1046.013333pt;}
.y41_c00009{bottom:1047.546667pt;}
.y46_c00009{bottom:1049.093333pt;}
.y44_c00009{bottom:1052.160000pt;}
.y3b_c00009{bottom:1065.986667pt;}
.y39_c00009{bottom:1066.746667pt;}
.y3d_c00009{bottom:1068.293333pt;}
.y3c_c00009{bottom:1069.826667pt;}
.y38_c00009{bottom:1072.133333pt;}
.y3a_c00009{bottom:1072.893333pt;}
.y36_c00009{bottom:1074.426667pt;}
.y3e_c00009{bottom:1075.200000pt;}
.y37_c00009{bottom:1081.346667pt;}
.y17b_c00009{bottom:1082.106667pt;}
.y17c_c00009{bottom:1082.880000pt;}
.y17a_c00009{bottom:1089.786667pt;}
.y31_c00009{bottom:1092.866667pt;}
.y32_c00009{bottom:1093.626667pt;}
.y2e_c00009{bottom:1094.400000pt;}
.y2d_c00009{bottom:1095.173333pt;}
.y30_c00009{bottom:1095.933333pt;}
.y35_c00009{bottom:1101.306667pt;}
.y33_c00009{bottom:1102.080000pt;}
.y179_c00009{bottom:1104.386667pt;}
.y2f_c00009{bottom:1108.986667pt;}
.y34_c00009{bottom:1109.760000pt;}
.y29_c00009{bottom:1110.533333pt;}
.y2a_c00009{bottom:1111.293333pt;}
.y2c_c00009{bottom:1112.066667pt;}
.y2b_c00009{bottom:1115.133333pt;}
.y23_c00009{bottom:1131.266667pt;}
.y22_c00009{bottom:1132.026667pt;}
.y27_c00009{bottom:1133.573333pt;}
.y26_c00009{bottom:1138.173333pt;}
.y28_c00009{bottom:1138.946667pt;}
.y24_c00009{bottom:1139.706667pt;}
.y25_c00009{bottom:1140.480000pt;}
.y1a_c00009{bottom:1153.533333pt;}
.y1b_c00009{bottom:1154.306667pt;}
.y1f_c00009{bottom:1155.066667pt;}
.y1c_c00009{bottom:1158.146667pt;}
.y1e_c00009{bottom:1158.906667pt;}
.y19_c00009{bottom:1159.680000pt;}
.y1d_c00009{bottom:1161.213333pt;}
.y20_c00009{bottom:1168.893333pt;}
.y21_c00009{bottom:1172.733333pt;}
.y12_c00009{bottom:1175.813333pt;}
.y13_c00009{bottom:1176.573333pt;}
.y14_c00009{bottom:1177.346667pt;}
.y18_c00009{bottom:1178.106667pt;}
.y17_c00009{bottom:1179.653333pt;}
.y16_c00009{bottom:1180.413333pt;}
.y15_c00009{bottom:1181.946667pt;}
.y11_c00009{bottom:1182.720000pt;}
.yb_c00009{bottom:1196.546667pt;}
.yd_c00009{bottom:1198.080000pt;}
.y7_c00009{bottom:1198.853333pt;}
.yc_c00009{bottom:1199.613333pt;}
.ye_c00009{bottom:1200.386667pt;}
.y8_c00009{bottom:1203.453333pt;}
.ya_c00009{bottom:1204.226667pt;}
.y9_c00009{bottom:1204.986667pt;}
.y6_c00009{bottom:1205.760000pt;}
.yf_c00009{bottom:1206.533333pt;}
.y10_c00009{bottom:1214.213333pt;}
.y5_c00009{bottom:1223.426667pt;}
.y4_c00009{bottom:1224.186667pt;}
.y3_c00009{bottom:1224.960000pt;}
.y2_c00009{bottom:1225.733333pt;}
.y1_c00009{bottom:1226.493333pt;}
.y17e_c00009{bottom:1261.826667pt;}
.h5_c00009{height:2.764500pt;}
.h1b_c00009{height:4.799479pt;}
.h4_c00009{height:5.519401pt;}
.h2_c00009{height:8.303099pt;}
.h23_c00009{height:11.038802pt;}
.h6_c00009{height:13.822500pt;}
.hc_c00009{height:16.606198pt;}
.h3_c00009{height:19.341901pt;}
.h20_c00009{height:22.125599pt;}
.h1c_c00009{height:24.861302pt;}
.h1f_c00009{height:27.645000pt;}
.h13_c00009{height:30.428698pt;}
.h1e_c00009{height:33.164401pt;}
.h21_c00009{height:35.948099pt;}
.h19_c00009{height:38.683802pt;}
.h12_c00009{height:41.467500pt;}
.h7_c00009{height:44.251198pt;}
.hd_c00009{height:46.986901pt;}
.ha_c00009{height:49.770599pt;}
.h15_c00009{height:52.506302pt;}
.h17_c00009{height:55.290000pt;}
.h9_c00009{height:58.073698pt;}
.h14_c00009{height:60.809401pt;}
.he_c00009{height:63.593099pt;}
.hb_c00009{height:66.328802pt;}
.h16_c00009{height:69.112500pt;}
.h11_c00009{height:71.896198pt;}
.h18_c00009{height:74.631901pt;}
.h1a_c00009{height:77.415599pt;}
.h10_c00009{height:80.151302pt;}
.h8_c00009{height:82.935000pt;}
.h22_c00009{height:85.718698pt;}
.h1d_c00009{height:88.454401pt;}
.h25_c00009{height:91.238099pt;}
.h26_c00009{height:93.973802pt;}
.hf_c00009{height:96.757500pt;}
.h27_c00009{height:99.541198pt;}
.h24_c00009{height:107.796302pt;}
.h0_c00009{height:1338.626667pt;}
.h1_c00009{height:1338.666667pt;}
.w1_c00009{width:956.666667pt;}
.w0_c00009{width:956.933333pt;}
.x0_c00009{left:0.000000pt;}
.xfa_c00009{left:96.000000pt;}
.xfb_c00009{left:115.973333pt;}
.xfc_c00009{left:132.866667pt;}
.x112_c00009{left:139.773333pt;}
.xfd_c00009{left:145.146667pt;}
.x104_c00009{left:146.693333pt;}
.x5d_c00009{left:148.986667pt;}
.xf9_c00009{left:157.440000pt;}
.xa6_c00009{left:165.120000pt;}
.x113_c00009{left:166.653333pt;}
.x91_c00009{left:168.186667pt;}
.x78_c00009{left:169.733333pt;}
.xfe_c00009{left:173.573333pt;}
.x8a_c00009{left:175.866667pt;}
.x84_c00009{left:180.480000pt;}
.xc8_c00009{left:182.013333pt;}
.x99_c00009{left:185.853333pt;}
.x5e_c00009{left:187.386667pt;}
.xe7_c00009{left:188.933333pt;}
.x3b_c00009{left:190.466667pt;}
.x71_c00009{left:192.000000pt;}
.xdc_c00009{left:193.533333pt;}
.x85_c00009{left:195.840000pt;}
.x50_c00009{left:197.373333pt;}
.x7_c00009{left:199.680000pt;}
.xe3_c00009{left:201.213333pt;}
.x10a_c00009{left:205.053333pt;}
.x8_c00009{left:212.733333pt;}
.x44_c00009{left:216.573333pt;}
.x17_c00009{left:218.880000pt;}
.xb5_c00009{left:220.413333pt;}
.x45_c00009{left:222.720000pt;}
.xc1_c00009{left:230.400000pt;}
.x58_c00009{left:235.013333pt;}
.x46_c00009{left:236.546667pt;}
.x72_c00009{left:239.613333pt;}
.x1_c00009{left:241.146667pt;}
.xae_c00009{left:242.693333pt;}
.xee_c00009{left:248.826667pt;}
.xaf_c00009{left:251.906667pt;}
.x92_c00009{left:253.440000pt;}
.xf6_c00009{left:254.973333pt;}
.x90_c00009{left:259.586667pt;}
.x9_c00009{left:262.653333pt;}
.x22_c00009{left:264.186667pt;}
.x66_c00009{left:268.026667pt;}
.x9a_c00009{left:269.573333pt;}
.x105_c00009{left:271.866667pt;}
.x2e_c00009{left:275.706667pt;}
.xbc_c00009{left:278.013333pt;}
.x93_c00009{left:279.546667pt;}
.xa7_c00009{left:281.853333pt;}
.x10b_c00009{left:284.160000pt;}
.x9b_c00009{left:285.693333pt;}
.x5f_c00009{left:287.226667pt;}
.xeb_c00009{left:288.773333pt;}
.x18_c00009{left:291.840000pt;}
.x73_c00009{left:294.906667pt;}
.x51_c00009{left:297.986667pt;}
.x109_c00009{left:299.520000pt;}
.x79_c00009{left:301.053333pt;}
.x23_c00009{left:304.133333pt;}
.x2f_c00009{left:306.426667pt;}
.x59_c00009{left:308.733333pt;}
.x47_c00009{left:310.266667pt;}
.x8b_c00009{left:311.813333pt;}
.x67_c00009{left:314.106667pt;}
.xf3_c00009{left:315.653333pt;}
.x34_c00009{left:317.186667pt;}
.x5a_c00009{left:318.720000pt;}
.xde_c00009{left:320.253333pt;}
.xf7_c00009{left:322.560000pt;}
.xe8_c00009{left:324.093333pt;}
.x2_c00009{left:325.626667pt;}
.x10c_c00009{left:328.706667pt;}
.xc2_c00009{left:332.546667pt;}
.x8c_c00009{left:334.853333pt;}
.x86_c00009{left:337.146667pt;}
.xcf_c00009{left:338.693333pt;}
.xff_c00009{left:340.226667pt;}
.x9c_c00009{left:342.533333pt;}
.x35_c00009{left:345.600000pt;}
.x19_c00009{left:347.906667pt;}
.xa_c00009{left:349.440000pt;}
.xa8_c00009{left:351.746667pt;}
.xd0_c00009{left:354.053333pt;}
.x74_c00009{left:363.266667pt;}
.x24_c00009{left:364.800000pt;}
.xb_c00009{left:366.333333pt;}
.xd1_c00009{left:372.480000pt;}
.x100_c00009{left:374.013333pt;}
.x7d_c00009{left:376.320000pt;}
.x48_c00009{left:378.626667pt;}
.x36_c00009{left:380.933333pt;}
.x25_c00009{left:384.000000pt;}
.x10d_c00009{left:386.306667pt;}
.xb9_c00009{left:388.613333pt;}
.x37_c00009{left:390.146667pt;}
.x87_c00009{left:392.453333pt;}
.xb6_c00009{left:394.746667pt;}
.x5b_c00009{left:397.053333pt;}
.x106_c00009{left:398.586667pt;}
.xb2_c00009{left:400.893333pt;}
.xc3_c00009{left:403.200000pt;}
.x68_c00009{left:406.266667pt;}
.xe0_c00009{left:407.813333pt;}
.x7e_c00009{left:411.653333pt;}
.x9d_c00009{left:413.946667pt;}
.x69_c00009{left:418.560000pt;}
.x60_c00009{left:420.093333pt;}
.xc4_c00009{left:423.173333pt;}
.x101_c00009{left:424.706667pt;}
.x7f_c00009{left:426.240000pt;}
.x94_c00009{left:427.773333pt;}
.xf2_c00009{left:429.306667pt;}
.x1a_c00009{left:430.853333pt;}
.x26_c00009{left:432.386667pt;}
.x5c_c00009{left:433.920000pt;}
.x7a_c00009{left:435.453333pt;}
.x49_c00009{left:436.986667pt;}
.xc_c00009{left:439.293333pt;}
.xa0_c00009{left:441.600000pt;}
.xf4_c00009{left:444.666667pt;}
.xd_c00009{left:449.280000pt;}
.xd5_c00009{left:450.813333pt;}
.x8d_c00009{left:461.573333pt;}
.xc9_c00009{left:467.706667pt;}
.x4a_c00009{left:470.013333pt;}
.xe_c00009{left:472.320000pt;}
.x3c_c00009{left:476.160000pt;}
.x95_c00009{left:477.693333pt;}
.x80_c00009{left:480.773333pt;}
.xbd_c00009{left:483.066667pt;}
.x1b_c00009{left:488.453333pt;}
.xd6_c00009{left:489.986667pt;}
.x9e_c00009{left:492.293333pt;}
.xbe_c00009{left:493.826667pt;}
.x8e_c00009{left:495.360000pt;}
.xef_c00009{left:497.666667pt;}
.x27_c00009{left:499.973333pt;}
.x6a_c00009{left:502.266667pt;}
.xb7_c00009{left:506.106667pt;}
.x3d_c00009{left:508.413333pt;}
.x28_c00009{left:513.026667pt;}
.x52_c00009{left:515.333333pt;}
.xca_c00009{left:517.626667pt;}
.xa1_c00009{left:519.173333pt;}
.xd2_c00009{left:523.773333pt;}
.x6b_c00009{left:526.080000pt;}
.x30_c00009{left:528.386667pt;}
.x88_c00009{left:530.693333pt;}
.x8f_c00009{left:533.760000pt;}
.x102_c00009{left:536.066667pt;}
.x4b_c00009{left:537.600000pt;}
.xf_c00009{left:540.666667pt;}
.x81_c00009{left:542.213333pt;}
.xd7_c00009{left:546.053333pt;}
.x1c_c00009{left:547.586667pt;}
.xa9_c00009{left:552.186667pt;}
.x38_c00009{left:554.493333pt;}
.xb0_c00009{left:556.800000pt;}
.xdf_c00009{left:559.106667pt;}
.x61_c00009{left:560.640000pt;}
.xa2_c00009{left:564.480000pt;}
.x107_c00009{left:566.013333pt;}
.xc5_c00009{left:567.546667pt;}
.x29_c00009{left:569.853333pt;}
.x6c_c00009{left:571.386667pt;}
.xcb_c00009{left:579.840000pt;}
.x96_c00009{left:582.146667pt;}
.xe4_c00009{left:585.213333pt;}
.x31_c00009{left:586.746667pt;}
.x39_c00009{left:591.360000pt;}
.xf0_c00009{left:592.893333pt;}
.x10_c00009{left:594.426667pt;}
.x4c_c00009{left:597.506667pt;}
.xd8_c00009{left:599.040000pt;}
.xc6_c00009{left:600.573333pt;}
.xdd_c00009{left:602.880000pt;}
.x1d_c00009{left:605.946667pt;}
.x2a_c00009{left:609.026667pt;}
.xe5_c00009{left:612.866667pt;}
.x53_c00009{left:614.400000pt;}
.x3e_c00009{left:615.933333pt;}
.x54_c00009{left:619.013333pt;}
.x97_c00009{left:620.546667pt;}
.xcd_c00009{left:622.080000pt;}
.x10e_c00009{left:623.613333pt;}
.xd3_c00009{left:626.693333pt;}
.xe9_c00009{left:631.293333pt;}
.x6d_c00009{left:633.600000pt;}
.xaa_c00009{left:636.666667pt;}
.x3a_c00009{left:640.506667pt;}
.x3f_c00009{left:642.053333pt;}
.x11_c00009{left:645.120000pt;}
.x2b_c00009{left:648.960000pt;}
.xd9_c00009{left:651.266667pt;}
.x62_c00009{left:653.573333pt;}
.xa3_c00009{left:658.946667pt;}
.xbf_c00009{left:660.480000pt;}
.x1e_c00009{left:662.013333pt;}
.x82_c00009{left:663.546667pt;}
.x10f_c00009{left:665.853333pt;}
.x98_c00009{left:667.386667pt;}
.x12_c00009{left:672.773333pt;}
.xb1_c00009{left:675.066667pt;}
.xec_c00009{left:676.613333pt;}
.x6e_c00009{left:679.680000pt;}
.x103_c00009{left:681.213333pt;}
.x4d_c00009{left:684.293333pt;}
.xb3_c00009{left:686.586667pt;}
.x40_c00009{left:688.133333pt;}
.x55_c00009{left:691.973333pt;}
.x2c_c00009{left:693.506667pt;}
.x1f_c00009{left:695.813333pt;}
.x41_c00009{left:698.106667pt;}
.x56_c00009{left:700.413333pt;}
.xab_c00009{left:701.946667pt;}
.xe2_c00009{left:703.493333pt;}
.xa4_c00009{left:707.333333pt;}
.x63_c00009{left:708.866667pt;}
.xd4_c00009{left:710.400000pt;}
.x89_c00009{left:711.933333pt;}
.xa5_c00009{left:713.466667pt;}
.xda_c00009{left:715.013333pt;}
.x110_c00009{left:717.306667pt;}
.xb4_c00009{left:718.853333pt;}
.x32_c00009{left:720.386667pt;}
.x20_c00009{left:721.920000pt;}
.x6f_c00009{left:723.453333pt;}
.x75_c00009{left:724.986667pt;}
.x33_c00009{left:728.826667pt;}
.xcc_c00009{left:731.133333pt;}
.x83_c00009{left:732.666667pt;}
.xce_c00009{left:734.213333pt;}
.x42_c00009{left:737.280000pt;}
.x4e_c00009{left:738.813333pt;}
.x13_c00009{left:742.653333pt;}
.xb8_c00009{left:744.186667pt;}
.x7b_c00009{left:746.493333pt;}
.x57_c00009{left:749.573333pt;}
.x111_c00009{left:751.106760pt;}
.xe1_c00009{left:753.413333pt;}
.x4f_c00009{left:755.706667pt;}
.xf8_c00009{left:757.253333pt;}
.x108_c00009{left:764.160000pt;}
.xdb_c00009{left:766.466667pt;}
.x14_c00009{left:768.000000pt;}
.x21_c00009{left:769.533333pt;}
.x43_c00009{left:771.066667pt;}
.x7c_c00009{left:772.613333pt;}
.xac_c00009{left:775.680000pt;}
.xf5_c00009{left:777.213333pt;}
.xe6_c00009{left:782.586667pt;}
.x64_c00009{left:784.893333pt;}
.x76_c00009{left:787.973333pt;}
.x65_c00009{left:791.813333pt;}
.x15_c00009{left:795.653333pt;}
.xad_c00009{left:798.720000pt;}
.x77_c00009{left:800.253333pt;}
.x16_c00009{left:801.786667pt;}
.x9f_c00009{left:804.093333pt;}
.x3_c00009{left:811.013333pt;}
.x70_c00009{left:812.546667pt;}
.xc7_c00009{left:815.613333pt;}
.xf1_c00009{left:818.693333pt;}
.x4_c00009{left:823.293333pt;}
.xba_c00009{left:824.826667pt;}
.x5_c00009{left:827.906709pt;}
.xc0_c00009{left:829.440000pt;}
.x6_c00009{left:833.280000pt;}
.xbb_c00009{left:834.813333pt;}
.x2d_c00009{left:838.653467pt;}
.xea_c00009{left:842.493333pt;}
.xed_c00009{left:851.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c08e8d01f65a687294683fb3.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.109863;font-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_c00010{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00010{transform:matrix(0.080600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080600,0.000000,0.000000,0.250000,0,0);}
.mb1_c00010{transform:matrix(0.095850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095850,0.000000,0.000000,0.250000,0,0);}
.m6f_c00010{transform:matrix(0.097325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097325,0.000000,0.000000,0.250000,0,0);}
.m188_c00010{transform:matrix(0.101525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101525,0.000000,0.000000,0.250000,0,0);}
.m146_c00010{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.mab_c00010{transform:matrix(0.104600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104600,0.000000,0.000000,0.250000,0,0);}
.m165_c00010{transform:matrix(0.109550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109550,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00010{transform:matrix(0.116300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116300,0.000000,0.000000,0.250000,0,0);}
.m153_c00010{transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);}
.m6_c00010{transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);}
.m3_c00010{transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);}
.m196_c00010{transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);}
.m176_c00010{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m19e_c00010{transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);}
.m11_c00010{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00010{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m100_c00010{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);}
.m97_c00010{transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);}
.m185_c00010{transform:matrix(0.127075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127075,0.000000,0.000000,0.250000,0,0);}
.m193_c00010{transform:matrix(0.127125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127125,0.000000,0.000000,0.250000,0,0);}
.m192_c00010{transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00010{transform:matrix(0.130850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130850,0.000000,0.000000,0.250000,0,0);}
.m16c_c00010{transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);}
.m155_c00010{transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);}
.mf5_c00010{transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);}
.m6e_c00010{transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);}
.m11a_c00010{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m2a_c00010{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.m178_c00010{transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);}
.m119_c00010{transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);}
.m164_c00010{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00010{transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);}
.m88_c00010{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);}
.m190_c00010{transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);}
.m6b_c00010{transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);}
.m125_c00010{transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);}
.m151_c00010{transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);}
.m122_c00010{transform:matrix(0.141700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141700,0.000000,0.000000,0.250000,0,0);}
.m112_c00010{transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);}
.m12a_c00010{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);}
.m3e_c00010{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m13e_c00010{transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);}
.m6d_c00010{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m16d_c00010{transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);}
.m105_c00010{transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);}
.m174_c00010{transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);}
.m131_c00010{transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);}
.mb5_c00010{transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00010{transform:matrix(0.145675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145675,0.000000,0.000000,0.250000,0,0);}
.md4_c00010{transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);}
.md7_c00010{transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);}
.m143_c00010{transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);}
.m11c_c00010{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);}
.mbd_c00010{transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);}
.m4e_c00010{transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);}
.m15c_c00010{transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);}
.m4c_c00010{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);}
.m1d_c00010{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);}
.me9_c00010{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.md0_c00010{transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);}
.m87_c00010{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.m115_c00010{transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);}
.m16f_c00010{transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);}
.m109_c00010{transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);}
.mce_c00010{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.m92_c00010{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.m4b_c00010{transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);}
.m14b_c00010{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.m58_c00010{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m43_c00010{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);}
.m186_c00010{transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);}
.m14a_c00010{transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);}
.m40_c00010{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);}
.mb6_c00010{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);}
.m145_c00010{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m138_c00010{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.m10c_c00010{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.maf_c00010{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m16e_c00010{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.mc3_c00010{transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);}
.m70_c00010{transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);}
.m18f_c00010{transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);}
.m9a_c00010{transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);}
.m18e_c00010{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.m19d_c00010{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.m4a_c00010{transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);}
.m76_c00010{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.m17d_c00010{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);}
.me6_c00010{transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);}
.m142_c00010{transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);}
.m31_c00010{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m117_c00010{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m183_c00010{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.mfc_c00010{transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);}
.m8e_c00010{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.m135_c00010{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);}
.m123_c00010{transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);}
.m167_c00010{transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);}
.m77_c00010{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00010{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m144_c00010{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.m37_c00010{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.m154_c00010{transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);}
.ma_c00010{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);}
.m113_c00010{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.mda_c00010{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.mdf_c00010{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m14d_c00010{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m179_c00010{transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);}
.m15_c00010{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.m13f_c00010{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);}
.ma8_c00010{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.m95_c00010{transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);}
.m110_c00010{transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);}
.m1a_c00010{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m17c_c00010{transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);}
.m17f_c00010{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m177_c00010{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m74_c00010{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.m170_c00010{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.m36_c00010{transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);}
.m3c_c00010{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.mc_c00010{transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);}
.m106_c00010{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.m132_c00010{transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);}
.m22_c00010{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);}
.m5f_c00010{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);}
.m48_c00010{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.md5_c00010{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.mcb_c00010{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mcf_c00010{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00010{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.ma4_c00010{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.m13_c00010{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m194_c00010{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.maa_c00010{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.mae_c00010{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);}
.m18d_c00010{transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);}
.m8a_c00010{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m173_c00010{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);}
.m3a_c00010{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.mfb_c00010{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m14_c00010{transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);}
.m38_c00010{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.m0_c00010{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);}
.m158_c00010{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);}
.m195_c00010{transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);}
.m11e_c00010{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);}
.m11f_c00010{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m10e_c00010{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);}
.m157_c00010{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m136_c00010{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.md2_c00010{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);}
.md9_c00010{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00010{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);}
.m89_c00010{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.m65_c00010{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.ma9_c00010{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m129_c00010{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m10b_c00010{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.m2d_c00010{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m7b_c00010{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m45_c00010{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m13c_c00010{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);}
.me0_c00010{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);}
.mc6_c00010{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m56_c00010{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.me7_c00010{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m134_c00010{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);}
.m86_c00010{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);}
.m160_c00010{transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);}
.mcc_c00010{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);}
.m133_c00010{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);}
.m16_c00010{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);}
.m9c_c00010{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m14c_c00010{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.m15b_c00010{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m14f_c00010{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m15e_c00010{transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);}
.m6c_c00010{transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);}
.mc9_c00010{transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);}
.m114_c00010{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.m5_c00010{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);}
.m148_c00010{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);}
.m17a_c00010{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);}
.m1c_c00010{transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);}
.m73_c00010{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.mf8_c00010{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m103_c00010{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);}
.m150_c00010{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);}
.m104_c00010{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m162_c00010{transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);}
.m13d_c00010{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.m52_c00010{transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);}
.m49_c00010{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m19f_c00010{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.ma6_c00010{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m10_c00010{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_c00010{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m8f_c00010{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);}
.md1_c00010{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.me4_c00010{transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);}
.m83_c00010{transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);}
.mb7_c00010{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m18c_c00010{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.mf2_c00010{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);}
.m80_c00010{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.mbb_c00010{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);}
.m161_c00010{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.m127_c00010{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m9_c00010{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);}
.m9b_c00010{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);}
.m25_c00010{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);}
.m180_c00010{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);}
.m53_c00010{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.mbc_c00010{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m10a_c00010{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.mbe_c00010{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);}
.mdc_c00010{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m7e_c00010{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m67_c00010{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);}
.m156_c00010{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);}
.m128_c00010{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m107_c00010{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);}
.mac_c00010{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.m12e_c00010{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);}
.m63_c00010{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);}
.m9f_c00010{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);}
.m62_c00010{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);}
.m140_c00010{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);}
.mc1_c00010{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.mb8_c00010{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m2f_c00010{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);}
.m187_c00010{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.m8b_c00010{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);}
.ma2_c00010{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.me3_c00010{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m181_c00010{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);}
.m1b1_c00010{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.mba_c00010{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);}
.m1ab_c00010{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);}
.m17b_c00010{transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);}
.mff_c00010{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.m101_c00010{transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);}
.m108_c00010{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.md3_c00010{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);}
.m19c_c00010{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.m35_c00010{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m12c_c00010{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00010{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m5d_c00010{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m90_c00010{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);}
.m50_c00010{transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);}
.m152_c00010{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m32_c00010{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);}
.ma5_c00010{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m166_c00010{transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);}
.mcd_c00010{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);}
.m94_c00010{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);}
.m91_c00010{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);}
.m5c_c00010{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);}
.m14e_c00010{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m172_c00010{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);}
.m149_c00010{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.mc5_c00010{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m51_c00010{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);}
.m137_c00010{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);}
.m1ad_c00010{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m13b_c00010{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.m182_c00010{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m1e_c00010{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m159_c00010{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00010{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);}
.meb_c00010{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);}
.m198_c00010{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);}
.m10f_c00010{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m111_c00010{transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);}
.m39_c00010{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);}
.m1a1_c00010{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);}
.m5a_c00010{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);}
.m24_c00010{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.m82_c00010{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.me_c00010{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);}
.m116_c00010{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m189_c00010{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);}
.m12b_c00010{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);}
.m1a9_c00010{transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);}
.mc0_c00010{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m96_c00010{transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);}
.m121_c00010{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m197_c00010{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);}
.m19a_c00010{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m168_c00010{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.mf0_c00010{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);}
.m30_c00010{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m118_c00010{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m126_c00010{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m98_c00010{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);}
.mfd_c00010{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m3d_c00010{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);}
.me8_c00010{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);}
.m120_c00010{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);}
.m93_c00010{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m29_c00010{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);}
.m16a_c00010{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);}
.mfa_c00010{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);}
.m15f_c00010{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m16b_c00010{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.m191_c00010{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.m15d_c00010{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);}
.m8_c00010{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);}
.m184_c00010{transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);}
.mad_c00010{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.me1_c00010{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m139_c00010{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m9d_c00010{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);}
.m18b_c00010{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);}
.m2e_c00010{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00010{transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);}
.m44_c00010{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);}
.mea_c00010{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00010{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.ma3_c00010{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);}
.m175_c00010{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.m66_c00010{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m12f_c00010{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);}
.m9e_c00010{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);}
.me2_c00010{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);}
.m20_c00010{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);}
.m169_c00010{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);}
.m3f_c00010{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);}
.m11b_c00010{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);}
.mf9_c00010{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);}
.m21_c00010{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);}
.mb4_c00010{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);}
.m1a4_c00010{transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);}
.mf3_c00010{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m42_c00010{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.mf1_c00010{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);}
.m11d_c00010{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.mf6_c00010{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m41_c00010{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m17e_c00010{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);}
.mdd_c00010{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m130_c00010{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);}
.m99_c00010{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);}
.mb_c00010{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m68_c00010{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);}
.md_c00010{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);}
.m79_c00010{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);}
.m7f_c00010{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);}
.mfe_c00010{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00010{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m72_c00010{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c00010{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);}
.m84_c00010{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);}
.m61_c00010{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);}
.mca_c00010{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00010{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);}
.m4d_c00010{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md8_c00010{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m54_c00010{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);}
.m55_c00010{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c00010{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);}
.m18_c00010{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);}
.ma7_c00010{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m33_c00010{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m12_c00010{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);}
.m7c_c00010{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me5_c00010{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00010{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);}
.m8c_c00010{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c00010{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00010{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c00010{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00010{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00010{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);}
.m171_c00010{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00010{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md6_c00010{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m28_c00010{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);}
.m64_c00010{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m147_c00010{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m46_c00010{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m47_c00010{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00010{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00010{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);}
.mbf_c00010{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m71_c00010{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);}
.m57_c00010{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00010{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00010{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mde_c00010{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m102_c00010{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m69_c00010{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00010{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);}
.m18a_c00010{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);}
.mdb_c00010{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00010{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00010{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00010{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00010{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m124_c00010{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m60_c00010{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00010{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00010{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m81_c00010{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m19b_c00010{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00010{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);}
.m1_c00010{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00010{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.med_c00010{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00010{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m17_c00010{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m23_c00010{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m75_c00010{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00010{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00010{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m13a_c00010{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m141_c00010{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00010{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00010{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m199_c00010{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m163_c00010{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m85_c00010{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00010{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);}
.mb3_c00010{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m34_c00010{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mee_c00010{transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);}
.m1af_c00010{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);}
.m15a_c00010{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00010{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m78_c00010{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00010{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00010{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.mec_c00010{transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);}
.m59_c00010{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.mef_c00010{transform:matrix(2.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.657500,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;}
.fs14_c00010{font-size:3.456000px;}
.fs6_c00010{font-size:6.000000px;}
.fs18_c00010{font-size:6.900000px;}
.fs13_c00010{font-size:10.380000px;}
.fs17_c00010{font-size:13.800000px;}
.fsf_c00010{font-size:17.280000px;}
.fs1c_c00010{font-size:20.760000px;}
.fs19_c00010{font-size:24.180000px;}
.fs1a_c00010{font-size:27.660000px;}
.fs1e_c00010{font-size:31.080000px;}
.fs12_c00010{font-size:34.560000px;}
.fsd_c00010{font-size:38.040000px;}
.fs2_c00010{font-size:41.460000px;}
.fs1b_c00010{font-size:44.940000px;}
.fs1f_c00010{font-size:48.360000px;}
.fs25_c00010{font-size:51.840000px;}
.fsb_c00010{font-size:55.320000px;}
.fsc_c00010{font-size:58.740000px;}
.fsa_c00010{font-size:62.220000px;}
.fs1_c00010{font-size:65.640000px;}
.fs8_c00010{font-size:69.120000px;}
.fs4_c00010{font-size:72.600000px;}
.fse_c00010{font-size:76.020000px;}
.fs11_c00010{font-size:79.500000px;}
.fs15_c00010{font-size:82.920000px;}
.fs7_c00010{font-size:86.400000px;}
.fs9_c00010{font-size:89.880000px;}
.fs5_c00010{font-size:93.300000px;}
.fs0_c00010{font-size:96.780000px;}
.fs10_c00010{font-size:100.200000px;}
.fs1d_c00010{font-size:103.680000px;}
.fs16_c00010{font-size:107.160000px;}
.fs22_c00010{font-size:110.580000px;}
.fs24_c00010{font-size:114.060000px;}
.fs21_c00010{font-size:117.480000px;}
.fs3_c00010{font-size:120.960000px;}
.fs23_c00010{font-size:131.340000px;}
.fs20_c00010{font-size:141.720000px;}
.y0_c00010{bottom:0.000000px;}
.y188_c00010{bottom:226.365000px;}
.y189_c00010{bottom:227.235000px;}
.y180_c00010{bottom:228.960000px;}
.y184_c00010{bottom:229.830000px;}
.y185_c00010{bottom:230.685000px;}
.y187_c00010{bottom:232.410000px;}
.y186_c00010{bottom:236.730000px;}
.y183_c00010{bottom:237.600000px;}
.y182_c00010{bottom:238.470000px;}
.y181_c00010{bottom:239.325000px;}
.y179_c00010{bottom:255.750000px;}
.y177_c00010{bottom:256.605000px;}
.y17a_c00010{bottom:257.475000px;}
.y17e_c00010{bottom:258.330000px;}
.y178_c00010{bottom:259.200000px;}
.y175_c00010{bottom:260.070000px;}
.y17b_c00010{bottom:263.520000px;}
.y176_c00010{bottom:264.390000px;}
.y17c_c00010{bottom:265.245000px;}
.y17d_c00010{bottom:266.115000px;}
.y16f_c00010{bottom:277.350000px;}
.y16e_c00010{bottom:278.205000px;}
.y17f_c00010{bottom:279.930000px;}
.y170_c00010{bottom:280.800000px;}
.y171_c00010{bottom:282.525000px;}
.y173_c00010{bottom:283.395000px;}
.y16d_c00010{bottom:288.570000px;}
.y16c_c00010{bottom:289.440000px;}
.y172_c00010{bottom:290.310000px;}
.y174_c00010{bottom:294.630000px;}
.y16b_c00010{bottom:304.125000px;}
.y168_c00010{bottom:305.850000px;}
.y16a_c00010{bottom:306.720000px;}
.y163_c00010{bottom:307.590000px;}
.y165_c00010{bottom:310.170000px;}
.y169_c00010{bottom:311.910000px;}
.y167_c00010{bottom:312.765000px;}
.y166_c00010{bottom:313.635000px;}
.y164_c00010{bottom:317.085000px;}
.y161_c00010{bottom:330.045000px;}
.y15b_c00010{bottom:331.770000px;}
.y15c_c00010{bottom:332.640000px;}
.y15d_c00010{bottom:335.235000px;}
.y15f_c00010{bottom:336.090000px;}
.y162_c00010{bottom:337.830000px;}
.y160_c00010{bottom:338.685000px;}
.y15e_c00010{bottom:339.555000px;}
.y155_c00010{bottom:355.110000px;}
.y156_c00010{bottom:355.965000px;}
.y157_c00010{bottom:356.835000px;}
.y158_c00010{bottom:357.690000px;}
.y159_c00010{bottom:364.605000px;}
.y15a_c00010{bottom:367.200000px;}
.y14f_c00010{bottom:379.290000px;}
.y14e_c00010{bottom:380.160000px;}
.y154_c00010{bottom:381.030000px;}
.y150_c00010{bottom:381.885000px;}
.y152_c00010{bottom:383.610000px;}
.y14d_c00010{bottom:387.075000px;}
.y151_c00010{bottom:388.800000px;}
.y153_c00010{bottom:389.670000px;}
.y14c_c00010{bottom:390.525000px;}
.y145_c00010{bottom:405.210000px;}
.y144_c00010{bottom:406.080000px;}
.y146_c00010{bottom:406.950000px;}
.y14a_c00010{bottom:407.805000px;}
.y149_c00010{bottom:408.675000px;}
.y14b_c00010{bottom:409.530000px;}
.y147_c00010{bottom:411.270000px;}
.y148_c00010{bottom:413.850000px;}
.y13f_c00010{bottom:430.275000px;}
.y13e_c00010{bottom:431.130000px;}
.y141_c00010{bottom:432.870000px;}
.y142_c00010{bottom:433.725000px;}
.y143_c00010{bottom:436.320000px;}
.y13d_c00010{bottom:438.915000px;}
.y140_c00010{bottom:439.770000px;}
.y135_c00010{bottom:454.470000px;}
.y138_c00010{bottom:455.325000px;}
.y136_c00010{bottom:456.195000px;}
.y139_c00010{bottom:457.920000px;}
.y13a_c00010{bottom:458.790000px;}
.y13b_c00010{bottom:459.645000px;}
.y137_c00010{bottom:463.110000px;}
.y134_c00010{bottom:463.965000px;}
.y13c_c00010{bottom:469.155000px;}
.y133_c00010{bottom:472.605000px;}
.y12c_c00010{bottom:481.245000px;}
.y130_c00010{bottom:482.115000px;}
.y12b_c00010{bottom:482.970000px;}
.y12f_c00010{bottom:483.840000px;}
.y12a_c00010{bottom:484.710000px;}
.y12d_c00010{bottom:485.565000px;}
.y12e_c00010{bottom:489.030000px;}
.y131_c00010{bottom:490.755000px;}
.y132_c00010{bottom:491.610000px;}
.y129_c00010{bottom:493.350000px;}
.y124_c00010{bottom:504.570000px;}
.y122_c00010{bottom:505.440000px;}
.y11e_c00010{bottom:506.310000px;}
.y11f_c00010{bottom:507.165000px;}
.y126_c00010{bottom:508.035000px;}
.y123_c00010{bottom:509.760000px;}
.y120_c00010{bottom:511.485000px;}
.y125_c00010{bottom:512.355000px;}
.y121_c00010{bottom:513.210000px;}
.y127_c00010{bottom:516.675000px;}
.y128_c00010{bottom:517.530000px;}
.y114_c00010{bottom:522.720000px;}
.y11a_c00010{bottom:530.490000px;}
.y119_c00010{bottom:531.360000px;}
.y11b_c00010{bottom:532.230000px;}
.y11c_c00010{bottom:533.955000px;}
.y118_c00010{bottom:534.810000px;}
.y116_c00010{bottom:535.680000px;}
.y117_c00010{bottom:539.130000px;}
.y115_c00010{bottom:540.000000px;}
.y11d_c00010{bottom:541.725000px;}
.y10e_c00010{bottom:557.280000px;}
.y111_c00010{bottom:558.150000px;}
.y113_c00010{bottom:559.005000px;}
.y10f_c00010{bottom:562.470000px;}
.y110_c00010{bottom:564.195000px;}
.y112_c00010{bottom:566.790000px;}
.y10b_c00010{bottom:581.475000px;}
.y10a_c00010{bottom:582.330000px;}
.y107_c00010{bottom:583.200000px;}
.y10c_c00010{bottom:584.070000px;}
.y109_c00010{bottom:590.115000px;}
.y10d_c00010{bottom:591.840000px;}
.y108_c00010{bottom:595.290000px;}
.yfe_c00010{bottom:606.525000px;}
.yfd_c00010{bottom:607.395000px;}
.y104_c00010{bottom:609.990000px;}
.y106_c00010{bottom:610.845000px;}
.y102_c00010{bottom:611.715000px;}
.y100_c00010{bottom:612.570000px;}
.yfc_c00010{bottom:613.440000px;}
.yff_c00010{bottom:614.310000px;}
.y101_c00010{bottom:615.165000px;}
.y103_c00010{bottom:616.890000px;}
.y105_c00010{bottom:617.760000px;}
.yf7_c00010{bottom:631.590000px;}
.yf5_c00010{bottom:632.445000px;}
.yfa_c00010{bottom:635.040000px;}
.yfb_c00010{bottom:637.635000px;}
.yf6_c00010{bottom:639.360000px;}
.yf9_c00010{bottom:640.230000px;}
.yf8_c00010{bottom:641.085000px;}
.y199_c00010{bottom:648.870000px;}
.yeb_c00010{bottom:656.640000px;}
.yed_c00010{bottom:657.510000px;}
.yf1_c00010{bottom:659.235000px;}
.yee_c00010{bottom:660.090000px;}
.yf2_c00010{bottom:660.960000px;}
.yec_c00010{bottom:661.830000px;}
.yf3_c00010{bottom:662.685000px;}
.yef_c00010{bottom:664.410000px;}
.yf0_c00010{bottom:666.150000px;}
.yf4_c00010{bottom:667.005000px;}
.ye5_c00010{bottom:680.835000px;}
.ye4_c00010{bottom:681.690000px;}
.ye7_c00010{bottom:682.560000px;}
.ye9_c00010{bottom:684.285000px;}
.yea_c00010{bottom:685.155000px;}
.ye8_c00010{bottom:689.475000px;}
.ye6_c00010{bottom:691.200000px;}
.ydd_c00010{bottom:706.755000px;}
.ydf_c00010{bottom:707.610000px;}
.ye3_c00010{bottom:708.480000px;}
.ye1_c00010{bottom:710.205000px;}
.ye0_c00010{bottom:712.800000px;}
.yde_c00010{bottom:714.525000px;}
.ydc_c00010{bottom:715.395000px;}
.ye2_c00010{bottom:716.250000px;}
.y198_c00010{bottom:720.570000px;}
.yd6_c00010{bottom:730.080000px;}
.yd5_c00010{bottom:730.950000px;}
.yd4_c00010{bottom:731.805000px;}
.yd7_c00010{bottom:733.530000px;}
.yda_c00010{bottom:734.400000px;}
.yd9_c00010{bottom:736.125000px;}
.ydb_c00010{bottom:736.995000px;}
.yd8_c00010{bottom:737.850000px;}
.yd1_c00010{bottom:755.130000px;}
.ycd_c00010{bottom:756.000000px;}
.ycf_c00010{bottom:760.320000px;}
.yce_c00010{bottom:761.190000px;}
.yd0_c00010{bottom:762.045000px;}
.yd2_c00010{bottom:768.960000px;}
.yd3_c00010{bottom:772.410000px;}
.yc7_c00010{bottom:778.470000px;}
.yc5_c00010{bottom:779.325000px;}
.yc8_c00010{bottom:780.195000px;}
.yc9_c00010{bottom:781.920000px;}
.yc4_c00010{bottom:782.790000px;}
.yca_c00010{bottom:783.645000px;}
.ycc_c00010{bottom:784.515000px;}
.yc6_c00010{bottom:786.240000px;}
.ycb_c00010{bottom:787.965000px;}
.yc0_c00010{bottom:804.390000px;}
.ybe_c00010{bottom:805.245000px;}
.yc2_c00010{bottom:809.565000px;}
.ybf_c00010{bottom:810.435000px;}
.yc1_c00010{bottom:811.290000px;}
.yc3_c00010{bottom:813.885000px;}
.yb8_c00010{bottom:827.715000px;}
.yb9_c00010{bottom:828.570000px;}
.yb7_c00010{bottom:830.310000px;}
.ybd_c00010{bottom:831.165000px;}
.ybb_c00010{bottom:832.890000px;}
.yba_c00010{bottom:833.760000px;}
.ybc_c00010{bottom:835.485000px;}
.yaf_c00010{bottom:852.765000px;}
.yb1_c00010{bottom:853.635000px;}
.yb4_c00010{bottom:854.490000px;}
.yb2_c00010{bottom:855.360000px;}
.yb6_c00010{bottom:856.230000px;}
.yb3_c00010{bottom:860.550000px;}
.yb0_c00010{bottom:861.405000px;}
.yb5_c00010{bottom:862.275000px;}
.yab_c00010{bottom:877.830000px;}
.ya8_c00010{bottom:878.685000px;}
.ya6_c00010{bottom:879.555000px;}
.yac_c00010{bottom:880.410000px;}
.yaa_c00010{bottom:883.005000px;}
.ya7_c00010{bottom:885.600000px;}
.ya9_c00010{bottom:886.470000px;}
.yad_c00010{bottom:887.325000px;}
.yae_c00010{bottom:888.195000px;}
.ya5_c00010{bottom:895.965000px;}
.y9f_c00010{bottom:901.155000px;}
.ya0_c00010{bottom:903.750000px;}
.ya3_c00010{bottom:904.605000px;}
.ya1_c00010{bottom:906.330000px;}
.y9d_c00010{bottom:909.795000px;}
.y9e_c00010{bottom:910.650000px;}
.ya2_c00010{bottom:912.390000px;}
.y9c_c00010{bottom:917.565000px;}
.y9b_c00010{bottom:918.435000px;}
.y8f_c00010{bottom:927.075000px;}
.ya4_c00010{bottom:927.930000px;}
.y8e_c00010{bottom:928.800000px;}
.y92_c00010{bottom:929.670000px;}
.y91_c00010{bottom:931.395000px;}
.y94_c00010{bottom:934.845000px;}
.y90_c00010{bottom:935.715000px;}
.y96_c00010{bottom:937.440000px;}
.y9a_c00010{bottom:939.165000px;}
.y93_c00010{bottom:942.630000px;}
.y95_c00010{bottom:943.485000px;}
.y98_c00010{bottom:945.210000px;}
.y191_c00010{bottom:946.080000px;}
.y190_c00010{bottom:947.805000px;}
.y97_c00010{bottom:948.675000px;}
.y99_c00010{bottom:951.270000px;}
.y89_c00010{bottom:952.125000px;}
.y85_c00010{bottom:953.850000px;}
.y8d_c00010{bottom:954.720000px;}
.y8c_c00010{bottom:955.590000px;}
.y8b_c00010{bottom:956.445000px;}
.y88_c00010{bottom:958.170000px;}
.y87_c00010{bottom:959.040000px;}
.y8a_c00010{bottom:959.910000px;}
.y86_c00010{bottom:960.765000px;}
.y7d_c00010{bottom:978.045000px;}
.y7f_c00010{bottom:978.915000px;}
.y80_c00010{bottom:979.770000px;}
.y83_c00010{bottom:980.640000px;}
.y7e_c00010{bottom:984.960000px;}
.y81_c00010{bottom:985.830000px;}
.y82_c00010{bottom:987.555000px;}
.y84_c00010{bottom:988.410000px;}
.y79_c00010{bottom:1003.110000px;}
.y7b_c00010{bottom:1003.965000px;}
.y7a_c00010{bottom:1004.835000px;}
.y7c_c00010{bottom:1010.010000px;}
.y78_c00010{bottom:1010.880000px;}
.y77_c00010{bottom:1011.750000px;}
.y6b_c00010{bottom:1027.290000px;}
.y6c_c00010{bottom:1028.160000px;}
.y70_c00010{bottom:1029.030000px;}
.y72_c00010{bottom:1029.885000px;}
.y71_c00010{bottom:1031.610000px;}
.y6f_c00010{bottom:1032.480000px;}
.y6e_c00010{bottom:1033.350000px;}
.y6d_c00010{bottom:1036.800000px;}
.y75_c00010{bottom:1037.670000px;}
.y73_c00010{bottom:1038.525000px;}
.y76_c00010{bottom:1043.715000px;}
.y6a_c00010{bottom:1048.035000px;}
.y74_c00010{bottom:1049.760000px;}
.y62_c00010{bottom:1053.210000px;}
.y67_c00010{bottom:1054.080000px;}
.y64_c00010{bottom:1054.950000px;}
.y69_c00010{bottom:1055.805000px;}
.y68_c00010{bottom:1058.400000px;}
.y63_c00010{bottom:1059.270000px;}
.y61_c00010{bottom:1060.125000px;}
.y66_c00010{bottom:1060.995000px;}
.y65_c00010{bottom:1061.850000px;}
.y59_c00010{bottom:1075.680000px;}
.y54_c00010{bottom:1077.405000px;}
.y56_c00010{bottom:1079.130000px;}
.y5d_c00010{bottom:1080.000000px;}
.y57_c00010{bottom:1081.725000px;}
.y58_c00010{bottom:1082.595000px;}
.y5e_c00010{bottom:1083.450000px;}
.y5a_c00010{bottom:1084.320000px;}
.y5b_c00010{bottom:1085.190000px;}
.y5c_c00010{bottom:1086.045000px;}
.y5f_c00010{bottom:1086.915000px;}
.y60_c00010{bottom:1087.770000px;}
.y55_c00010{bottom:1092.090000px;}
.y4e_c00010{bottom:1103.325000px;}
.y50_c00010{bottom:1104.195000px;}
.y52_c00010{bottom:1105.050000px;}
.y53_c00010{bottom:1105.920000px;}
.y4a_c00010{bottom:1108.515000px;}
.y4f_c00010{bottom:1109.370000px;}
.y4c_c00010{bottom:1110.240000px;}
.y51_c00010{bottom:1111.110000px;}
.y4b_c00010{bottom:1116.285000px;}
.y4d_c00010{bottom:1117.155000px;}
.y197_c00010{bottom:1121.475000px;}
.y44_c00010{bottom:1127.520000px;}
.y46_c00010{bottom:1128.390000px;}
.y49_c00010{bottom:1131.840000px;}
.y48_c00010{bottom:1133.565000px;}
.y45_c00010{bottom:1135.290000px;}
.y47_c00010{bottom:1136.160000px;}
.y3e_c00010{bottom:1151.715000px;}
.y3d_c00010{bottom:1152.570000px;}
.y40_c00010{bottom:1153.440000px;}
.y42_c00010{bottom:1155.165000px;}
.y3c_c00010{bottom:1156.035000px;}
.y41_c00010{bottom:1158.630000px;}
.y3f_c00010{bottom:1160.355000px;}
.y43_c00010{bottom:1161.210000px;}
.y35_c00010{bottom:1174.170000px;}
.y37_c00010{bottom:1176.765000px;}
.y39_c00010{bottom:1177.635000px;}
.y3a_c00010{bottom:1178.490000px;}
.y3b_c00010{bottom:1179.360000px;}
.y36_c00010{bottom:1184.550000px;}
.y38_c00010{bottom:1185.405000px;}
.y2e_c00010{bottom:1201.830000px;}
.y31_c00010{bottom:1202.685000px;}
.y30_c00010{bottom:1203.555000px;}
.y32_c00010{bottom:1204.410000px;}
.y33_c00010{bottom:1205.280000px;}
.y2f_c00010{bottom:1207.875000px;}
.y34_c00010{bottom:1209.600000px;}
.y24_c00010{bottom:1226.010000px;}
.y28_c00010{bottom:1226.880000px;}
.y26_c00010{bottom:1227.750000px;}
.y29_c00010{bottom:1228.605000px;}
.y25_c00010{bottom:1230.330000px;}
.y23_c00010{bottom:1231.200000px;}
.y2b_c00010{bottom:1233.795000px;}
.y27_c00010{bottom:1234.650000px;}
.y2a_c00010{bottom:1236.390000px;}
.y2d_c00010{bottom:1241.565000px;}
.y1d_c00010{bottom:1250.205000px;}
.y2c_c00010{bottom:1251.075000px;}
.y20_c00010{bottom:1252.800000px;}
.y22_c00010{bottom:1253.670000px;}
.y1f_c00010{bottom:1256.250000px;}
.y1b_c00010{bottom:1257.990000px;}
.y1c_c00010{bottom:1258.845000px;}
.y1e_c00010{bottom:1259.715000px;}
.y21_c00010{bottom:1260.570000px;}
.y1a_c00010{bottom:1270.950000px;}
.y16_c00010{bottom:1276.995000px;}
.y18_c00010{bottom:1277.850000px;}
.y19_c00010{bottom:1280.445000px;}
.y14_c00010{bottom:1281.315000px;}
.y13_c00010{bottom:1282.170000px;}
.y15_c00010{bottom:1283.910000px;}
.y17_c00010{bottom:1284.765000px;}
.y196_c00010{bottom:1289.085000px;}
.y195_c00010{bottom:1290.810000px;}
.yf_c00010{bottom:1301.190000px;}
.y10_c00010{bottom:1302.915000px;}
.y11_c00010{bottom:1303.770000px;}
.y12_c00010{bottom:1307.235000px;}
.ye_c00010{bottom:1308.090000px;}
.y7_c00010{bottom:1326.240000px;}
.y9_c00010{bottom:1327.110000px;}
.yd_c00010{bottom:1327.965000px;}
.yc_c00010{bottom:1331.430000px;}
.y8_c00010{bottom:1332.285000px;}
.ya_c00010{bottom:1334.010000px;}
.yb_c00010{bottom:1334.880000px;}
.y194_c00010{bottom:1336.605000px;}
.y1_c00010{bottom:1350.435000px;}
.y4_c00010{bottom:1351.290000px;}
.y5_c00010{bottom:1352.160000px;}
.y6_c00010{bottom:1353.030000px;}
.y2_c00010{bottom:1357.350000px;}
.y3_c00010{bottom:1359.075000px;}
.y18e_c00010{bottom:1387.590000px;}
.y18f_c00010{bottom:1389.315000px;}
.y18d_c00010{bottom:1390.170000px;}
.y18a_c00010{bottom:1407.450000px;}
.y18b_c00010{bottom:1410.915000px;}
.y192_c00010{bottom:1416.960000px;}
.y193_c00010{bottom:1418.685000px;}
.y18c_c00010{bottom:1423.005000px;}
.h16_c00010{height:3.110063px;}
.h8_c00010{height:5.399414px;}
.h1a_c00010{height:6.209326px;}
.h15_c00010{height:9.340986px;}
.h19_c00010{height:12.418652px;}
.h11_c00010{height:15.550313px;}
.h1e_c00010{height:18.681973px;}
.h1b_c00010{height:21.759639px;}
.h1c_c00010{height:24.891299px;}
.h20_c00010{height:27.968965px;}
.h14_c00010{height:31.100625px;}
.hf_c00010{height:34.232285px;}
.h4_c00010{height:37.309951px;}
.h1d_c00010{height:40.441611px;}
.h21_c00010{height:43.519277px;}
.h27_c00010{height:46.650937px;}
.hd_c00010{height:49.782598px;}
.he_c00010{height:52.860264px;}
.hc_c00010{height:55.991924px;}
.h3_c00010{height:59.069590px;}
.ha_c00010{height:62.201250px;}
.h6_c00010{height:65.332910px;}
.h10_c00010{height:68.410576px;}
.h13_c00010{height:71.542236px;}
.h17_c00010{height:74.619902px;}
.h9_c00010{height:77.751563px;}
.hb_c00010{height:80.883223px;}
.h7_c00010{height:83.960889px;}
.h2_c00010{height:87.092549px;}
.h12_c00010{height:90.170215px;}
.h1f_c00010{height:93.301875px;}
.h18_c00010{height:96.433535px;}
.h24_c00010{height:99.511201px;}
.h26_c00010{height:102.642861px;}
.h23_c00010{height:105.720527px;}
.h5_c00010{height:108.852188px;}
.h25_c00010{height:118.193174px;}
.h22_c00010{height:127.534160px;}
.h0_c00010{height:1515.450000px;}
.h1_c00010{height:1515.750000px;}
.w1_c00010{width:1065.000000px;}
.w0_c00010{width:1065.315000px;}
.x0_c00010{left:0.000000px;}
.x10b_c00010{left:108.000000px;}
.x10c_c00010{left:120.960000px;}
.xe1_c00010{left:144.285000px;}
.xbf_c00010{left:151.200000px;}
.xc6_c00010{left:152.925000px;}
.xf7_c00010{left:163.290000px;}
.x10a_c00010{left:165.030000px;}
.x5a_c00010{left:171.075000px;}
.x21_c00010{left:172.800000px;}
.x101_c00010{left:175.395000px;}
.x2e_c00010{left:177.120000px;}
.x64_c00010{left:178.845000px;}
.x5b_c00010{left:180.570000px;}
.xe2_c00010{left:184.035000px;}
.x3a_c00010{left:186.630000px;}
.x65_c00010{left:189.210000px;}
.x5c_c00010{left:191.805000px;}
.xa3_c00010{left:194.400000px;}
.x5d_c00010{left:197.849400px;}
.x8_c00010{left:199.590000px;}
.x66_c00010{left:202.170000px;}
.x5e_c00010{left:204.764925px;}
.x12_c00010{left:207.360000px;}
.xae_c00010{left:209.085000px;}
.x2f_c00010{left:211.680000px;}
.x78_c00010{left:214.275000px;}
.x1_c00010{left:216.000000px;}
.x19_c00010{left:217.725000px;}
.x4b_c00010{left:219.450000px;}
.x9c_c00010{left:228.090000px;}
.x82_c00010{left:233.280000px;}
.xc7_c00010{left:237.600000px;}
.x4c_c00010{left:240.195000px;}
.xe4_c00010{left:241.920000px;}
.x13_c00010{left:245.370000px;}
.x9_c00010{left:248.835000px;}
.xba_c00010{left:250.560000px;}
.x22_c00010{left:253.155000px;}
.xfe_c00010{left:257.475000px;}
.xdc_c00010{left:260.925000px;}
.x94_c00010{left:263.520000px;}
.xf8_c00010{left:265.245000px;}
.xb0_c00010{left:270.435000px;}
.xc0_c00010{left:272.160000px;}
.x9d_c00010{left:273.885000px;}
.x88_c00010{left:276.480000px;}
.xe7_c00010{left:278.205000px;}
.xa4_c00010{left:279.930000px;}
.xff_c00010{left:282.525000px;}
.xed_c00010{left:285.120000px;}
.xfd_c00010{left:288.570000px;}
.x8f_c00010{left:290.310000px;}
.x1a_c00010{left:293.760000px;}
.x90_c00010{left:298.950000px;}
.x107_c00010{left:302.400000px;}
.x6f_c00010{left:304.125000px;}
.xa5_c00010{left:306.720000px;}
.xa_c00010{left:310.170000px;}
.xf1_c00010{left:311.910000px;}
.x14_c00010{left:315.360000px;}
.x83_c00010{left:317.955000px;}
.xb4_c00010{left:321.405000px;}
.x52_c00010{left:324.000000px;}
.xc8_c00010{left:325.725000px;}
.x23_c00010{left:328.320000px;}
.x100_c00010{left:330.915000px;}
.xc9_c00010{left:335.235000px;}
.xbb_c00010{left:336.960000px;}
.x3b_c00010{left:339.555000px;}
.x2_c00010{left:341.280000px;}
.x102_c00010{left:344.730000px;}
.x5f_c00010{left:346.470000px;}
.x30_c00010{left:349.050000px;}
.xb5_c00010{left:352.515000px;}
.xf9_c00010{left:354.240000px;}
.xe8_c00010{left:356.835000px;}
.xcc_c00010{left:358.560000px;}
.x44_c00010{left:361.155000px;}
.x1b_c00010{left:362.880000px;}
.xa6_c00010{left:366.330000px;}
.x3_c00010{left:368.070000px;}
.xdd_c00010{left:370.650000px;}
.x31_c00010{left:373.245000px;}
.x4d_c00010{left:375.840000px;}
.xe5_c00010{left:379.290000px;}
.x3c_c00010{left:385.350000px;}
.x4_c00010{left:387.930000px;}
.x24_c00010{left:393.120000px;}
.x9e_c00010{left:395.715000px;}
.xc1_c00010{left:397.440000px;}
.xb_c00010{left:400.035000px;}
.xf2_c00010{left:402.630000px;}
.x95_c00010{left:406.080000px;}
.xd0_c00010{left:412.125000px;}
.x70_c00010{left:414.720000px;}
.x15_c00010{left:417.315000px;}
.xfa_c00010{left:419.910000px;}
.xbc_c00010{left:424.230000px;}
.x53_c00010{left:426.810000px;}
.x89_c00010{left:429.405000px;}
.xfb_c00010{left:431.130000px;}
.xa7_c00010{left:432.870000px;}
.x67_c00010{left:434.595000px;}
.x32_c00010{left:437.190000px;}
.xfc_c00010{left:440.640000px;}
.x25_c00010{left:443.235000px;}
.xe9_c00010{left:448.410000px;}
.x3d_c00010{left:451.005000px;}
.xa8_c00010{left:452.730000px;}
.x45_c00010{left:455.325000px;}
.x26_c00010{left:458.790000px;}
.x108_c00010{left:461.370000px;}
.x68_c00010{left:465.690000px;}
.x79_c00010{left:467.430000px;}
.x1c_c00010{left:470.880000px;}
.x54_c00010{left:475.200000px;}
.xcd_c00010{left:478.650000px;}
.x91_c00010{left:480.390000px;}
.x60_c00010{left:488.160000px;}
.x46_c00010{left:491.610000px;}
.xd4_c00010{left:494.205000px;}
.x96_c00010{left:495.930000px;}
.xce_c00010{left:498.525000px;}
.x71_c00010{left:500.250000px;}
.xb1_c00010{left:501.990000px;}
.xc_c00010{left:503.715000px;}
.x7a_c00010{left:505.440000px;}
.xea_c00010{left:508.035000px;}
.x27_c00010{left:510.630000px;}
.xc2_c00010{left:512.355000px;}
.x4e_c00010{left:514.080000px;}
.x33_c00010{left:515.805000px;}
.xa9_c00010{left:518.400000px;}
.x55_c00010{left:520.995000px;}
.x61_c00010{left:527.040000px;}
.xde_c00010{left:529.635000px;}
.xb6_c00010{left:532.230000px;}
.x72_c00010{left:538.275000px;}
.x8a_c00010{left:540.870000px;}
.x7b_c00010{left:542.595000px;}
.xaa_c00010{left:544.320000px;}
.x84_c00010{left:546.915000px;}
.x105_c00010{left:548.640000px;}
.x3e_c00010{left:552.090000px;}
.x9f_c00010{left:555.555000px;}
.x28_c00010{left:557.280000px;}
.xd_c00010{left:559.875000px;}
.xab_c00010{left:561.600000px;}
.xd5_c00010{left:565.050000px;}
.x4f_c00010{left:567.645000px;}
.xb7_c00010{left:571.965000px;}
.x34_c00010{left:575.430000px;}
.x69_c00010{left:577.155000px;}
.x56_c00010{left:581.475000px;}
.xf3_c00010{left:583.200000px;}
.xa0_c00010{left:586.650000px;}
.x92_c00010{left:588.390000px;}
.xbd_c00010{left:590.115000px;}
.x73_c00010{left:591.840000px;}
.xd1_c00010{left:593.565000px;}
.x85_c00010{left:596.160000px;}
.x103_c00010{left:598.755000px;}
.x5_c00010{left:600.480000px;}
.xd8_c00010{left:603.075000px;}
.x47_c00010{left:605.670000px;}
.xee_c00010{left:609.990000px;}
.xac_c00010{left:613.440000px;}
.x74_c00010{left:616.035000px;}
.x35_c00010{left:618.630000px;}
.x50_c00010{left:621.210000px;}
.x7c_c00010{left:622.950000px;}
.xd6_c00010{left:624.675000px;}
.xe_c00010{left:626.400000px;}
.xdf_c00010{left:628.125000px;}
.x16_c00010{left:633.315000px;}
.x8b_c00010{left:635.910000px;}
.xb8_c00010{left:638.490000px;}
.xaf_c00010{left:640.230000px;}
.x6_c00010{left:643.680000px;}
.x109_c00010{left:645.405000px;}
.xc3_c00010{left:648.870000px;}
.x3f_c00010{left:650.595000px;}
.xb2_c00010{left:654.045000px;}
.x8c_c00010{left:656.640000px;}
.x62_c00010{left:659.235000px;}
.xeb_c00010{left:663.555000px;}
.x75_c00010{left:665.280000px;}
.x6a_c00010{left:667.005000px;}
.xf_c00010{left:673.050000px;}
.x7_c00010{left:675.645000px;}
.x40_c00010{left:677.370000px;}
.x86_c00010{left:680.835000px;}
.xad_c00010{left:682.560000px;}
.x48_c00010{left:685.155000px;}
.x1d_c00010{left:686.880000px;}
.x29_c00010{left:688.605000px;}
.xca_c00010{left:691.200000px;}
.x97_c00010{left:694.650000px;}
.x41_c00010{left:696.390000px;}
.xef_c00010{left:699.840000px;}
.x51_c00010{left:701.565000px;}
.xb3_c00010{left:704.160000px;}
.x98_c00010{left:706.755000px;}
.x76_c00010{left:709.350000px;}
.xa1_c00010{left:711.075000px;}
.x8d_c00010{left:712.800000px;}
.x57_c00010{left:717.990000px;}
.x2a_c00010{left:721.440000px;}
.xd9_c00010{left:724.035000px;}
.x7d_c00010{left:726.630000px;}
.x1e_c00010{left:731.805000px;}
.x10_c00010{left:733.530000px;}
.x93_c00010{left:737.850000px;}
.xd2_c00010{left:739.590000px;}
.x42_c00010{left:742.170000px;}
.x63_c00010{left:743.910000px;}
.x1f_c00010{left:747.360000px;}
.x36_c00010{left:751.680000px;}
.x87_c00010{left:753.405000px;}
.xe0_c00010{left:756.870000px;}
.x6b_c00010{left:760.320000px;}
.xb9_c00010{left:762.045000px;}
.x2b_c00010{left:764.640000px;}
.xd7_c00010{left:766.365000px;}
.xec_c00010{left:768.090000px;}
.x58_c00010{left:770.685000px;}
.x49_c00010{left:772.410000px;}
.x17_c00010{left:775.005000px;}
.x11_c00010{left:776.730000px;}
.xa2_c00010{left:780.195000px;}
.x106_c00010{left:781.920000px;}
.xf4_c00010{left:783.645000px;}
.x6c_c00010{left:785.370000px;}
.xbe_c00010{left:787.110000px;}
.x43_c00010{left:788.835000px;}
.xcb_c00010{left:790.560000px;}
.xda_c00010{left:793.155000px;}
.x59_c00010{left:795.750000px;}
.x8e_c00010{left:799.200000px;}
.x18_c00010{left:800.925000px;}
.xf0_c00010{left:802.650000px;}
.xc4_c00010{left:804.390000px;}
.x6d_c00010{left:807.840000px;}
.xdb_c00010{left:810.435000px;}
.xe6_c00010{left:813.030000px;}
.x2c_c00010{left:814.755000px;}
.x37_c00010{left:818.205000px;}
.xf6_c00010{left:819.930000px;}
.x7e_c00010{left:824.250000px;}
.x6e_c00010{left:826.845000px;}
.xd3_c00010{left:832.890000px;}
.x99_c00010{left:834.630000px;}
.xf5_c00010{left:838.950000px;}
.x9a_c00010{left:841.530000px;}
.x104_c00010{left:843.270000px;}
.xe3_c00010{left:845.850000px;}
.xc5_c00010{left:847.590000px;}
.x9b_c00010{left:851.040000px;}
.x38_c00010{left:854.490000px;}
.xcf_c00010{left:856.230000px;}
.x7f_c00010{left:858.810000px;}
.x39_c00010{left:864.870960px;}
.x2d_c00010{left:867.450000px;}
.x4a_c00010{left:869.190000px;}
.x80_c00010{left:871.770000px;}
.x10f_c00010{left:881.280000px;}
.x112_c00010{left:889.920000px;}
.x81_c00010{left:893.370000px;}
.x110_c00010{left:895.965000px;}
.x20_c00010{left:901.155000px;}
.x77_c00010{left:905.475000px;}
.x113_c00010{left:960.765000px;}
.x10d_c00010{left:991.005000px;}
.x10e_c00010{left:995.325000px;}
.x111_c00010{left:1024.710000px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws0_c00010{word-spacing:0.000000pt;}
.fs14_c00010{font-size:3.072000pt;}
.fs6_c00010{font-size:5.333333pt;}
.fs18_c00010{font-size:6.133333pt;}
.fs13_c00010{font-size:9.226667pt;}
.fs17_c00010{font-size:12.266667pt;}
.fsf_c00010{font-size:15.360000pt;}
.fs1c_c00010{font-size:18.453333pt;}
.fs19_c00010{font-size:21.493333pt;}
.fs1a_c00010{font-size:24.586667pt;}
.fs1e_c00010{font-size:27.626667pt;}
.fs12_c00010{font-size:30.720000pt;}
.fsd_c00010{font-size:33.813333pt;}
.fs2_c00010{font-size:36.853333pt;}
.fs1b_c00010{font-size:39.946667pt;}
.fs1f_c00010{font-size:42.986667pt;}
.fs25_c00010{font-size:46.080000pt;}
.fsb_c00010{font-size:49.173333pt;}
.fsc_c00010{font-size:52.213333pt;}
.fsa_c00010{font-size:55.306667pt;}
.fs1_c00010{font-size:58.346667pt;}
.fs8_c00010{font-size:61.440000pt;}
.fs4_c00010{font-size:64.533333pt;}
.fse_c00010{font-size:67.573333pt;}
.fs11_c00010{font-size:70.666667pt;}
.fs15_c00010{font-size:73.706667pt;}
.fs7_c00010{font-size:76.800000pt;}
.fs9_c00010{font-size:79.893333pt;}
.fs5_c00010{font-size:82.933333pt;}
.fs0_c00010{font-size:86.026667pt;}
.fs10_c00010{font-size:89.066667pt;}
.fs1d_c00010{font-size:92.160000pt;}
.fs16_c00010{font-size:95.253333pt;}
.fs22_c00010{font-size:98.293333pt;}
.fs24_c00010{font-size:101.386667pt;}
.fs21_c00010{font-size:104.426667pt;}
.fs3_c00010{font-size:107.520000pt;}
.fs23_c00010{font-size:116.746667pt;}
.fs20_c00010{font-size:125.973333pt;}
.y0_c00010{bottom:0.000000pt;}
.y188_c00010{bottom:201.213333pt;}
.y189_c00010{bottom:201.986667pt;}
.y180_c00010{bottom:203.520000pt;}
.y184_c00010{bottom:204.293333pt;}
.y185_c00010{bottom:205.053333pt;}
.y187_c00010{bottom:206.586667pt;}
.y186_c00010{bottom:210.426667pt;}
.y183_c00010{bottom:211.200000pt;}
.y182_c00010{bottom:211.973333pt;}
.y181_c00010{bottom:212.733333pt;}
.y179_c00010{bottom:227.333333pt;}
.y177_c00010{bottom:228.093333pt;}
.y17a_c00010{bottom:228.866667pt;}
.y17e_c00010{bottom:229.626667pt;}
.y178_c00010{bottom:230.400000pt;}
.y175_c00010{bottom:231.173333pt;}
.y17b_c00010{bottom:234.240000pt;}
.y176_c00010{bottom:235.013333pt;}
.y17c_c00010{bottom:235.773333pt;}
.y17d_c00010{bottom:236.546667pt;}
.y16f_c00010{bottom:246.533333pt;}
.y16e_c00010{bottom:247.293333pt;}
.y17f_c00010{bottom:248.826667pt;}
.y170_c00010{bottom:249.600000pt;}
.y171_c00010{bottom:251.133333pt;}
.y173_c00010{bottom:251.906667pt;}
.y16d_c00010{bottom:256.506667pt;}
.y16c_c00010{bottom:257.280000pt;}
.y172_c00010{bottom:258.053333pt;}
.y174_c00010{bottom:261.893333pt;}
.y16b_c00010{bottom:270.333333pt;}
.y168_c00010{bottom:271.866667pt;}
.y16a_c00010{bottom:272.640000pt;}
.y163_c00010{bottom:273.413333pt;}
.y165_c00010{bottom:275.706667pt;}
.y169_c00010{bottom:277.253333pt;}
.y167_c00010{bottom:278.013333pt;}
.y166_c00010{bottom:278.786667pt;}
.y164_c00010{bottom:281.853333pt;}
.y161_c00010{bottom:293.373333pt;}
.y15b_c00010{bottom:294.906667pt;}
.y15c_c00010{bottom:295.680000pt;}
.y15d_c00010{bottom:297.986667pt;}
.y15f_c00010{bottom:298.746667pt;}
.y162_c00010{bottom:300.293333pt;}
.y160_c00010{bottom:301.053333pt;}
.y15e_c00010{bottom:301.826667pt;}
.y155_c00010{bottom:315.653333pt;}
.y156_c00010{bottom:316.413333pt;}
.y157_c00010{bottom:317.186667pt;}
.y158_c00010{bottom:317.946667pt;}
.y159_c00010{bottom:324.093333pt;}
.y15a_c00010{bottom:326.400000pt;}
.y14f_c00010{bottom:337.146667pt;}
.y14e_c00010{bottom:337.920000pt;}
.y154_c00010{bottom:338.693333pt;}
.y150_c00010{bottom:339.453333pt;}
.y152_c00010{bottom:340.986667pt;}
.y14d_c00010{bottom:344.066667pt;}
.y151_c00010{bottom:345.600000pt;}
.y153_c00010{bottom:346.373333pt;}
.y14c_c00010{bottom:347.133333pt;}
.y145_c00010{bottom:360.186667pt;}
.y144_c00010{bottom:360.960000pt;}
.y146_c00010{bottom:361.733333pt;}
.y14a_c00010{bottom:362.493333pt;}
.y149_c00010{bottom:363.266667pt;}
.y14b_c00010{bottom:364.026667pt;}
.y147_c00010{bottom:365.573333pt;}
.y148_c00010{bottom:367.866667pt;}
.y13f_c00010{bottom:382.466667pt;}
.y13e_c00010{bottom:383.226667pt;}
.y141_c00010{bottom:384.773333pt;}
.y142_c00010{bottom:385.533333pt;}
.y143_c00010{bottom:387.840000pt;}
.y13d_c00010{bottom:390.146667pt;}
.y140_c00010{bottom:390.906667pt;}
.y135_c00010{bottom:403.973333pt;}
.y138_c00010{bottom:404.733333pt;}
.y136_c00010{bottom:405.506667pt;}
.y139_c00010{bottom:407.040000pt;}
.y13a_c00010{bottom:407.813333pt;}
.y13b_c00010{bottom:408.573333pt;}
.y137_c00010{bottom:411.653333pt;}
.y134_c00010{bottom:412.413333pt;}
.y13c_c00010{bottom:417.026667pt;}
.y133_c00010{bottom:420.093333pt;}
.y12c_c00010{bottom:427.773333pt;}
.y130_c00010{bottom:428.546667pt;}
.y12b_c00010{bottom:429.306667pt;}
.y12f_c00010{bottom:430.080000pt;}
.y12a_c00010{bottom:430.853333pt;}
.y12d_c00010{bottom:431.613333pt;}
.y12e_c00010{bottom:434.693333pt;}
.y131_c00010{bottom:436.226667pt;}
.y132_c00010{bottom:436.986667pt;}
.y129_c00010{bottom:438.533333pt;}
.y124_c00010{bottom:448.506667pt;}
.y122_c00010{bottom:449.280000pt;}
.y11e_c00010{bottom:450.053333pt;}
.y11f_c00010{bottom:450.813333pt;}
.y126_c00010{bottom:451.586667pt;}
.y123_c00010{bottom:453.120000pt;}
.y120_c00010{bottom:454.653333pt;}
.y125_c00010{bottom:455.426667pt;}
.y121_c00010{bottom:456.186667pt;}
.y127_c00010{bottom:459.266667pt;}
.y128_c00010{bottom:460.026667pt;}
.y114_c00010{bottom:464.640000pt;}
.y11a_c00010{bottom:471.546667pt;}
.y119_c00010{bottom:472.320000pt;}
.y11b_c00010{bottom:473.093333pt;}
.y11c_c00010{bottom:474.626667pt;}
.y118_c00010{bottom:475.386667pt;}
.y116_c00010{bottom:476.160000pt;}
.y117_c00010{bottom:479.226667pt;}
.y115_c00010{bottom:480.000000pt;}
.y11d_c00010{bottom:481.533333pt;}
.y10e_c00010{bottom:495.360000pt;}
.y111_c00010{bottom:496.133333pt;}
.y113_c00010{bottom:496.893333pt;}
.y10f_c00010{bottom:499.973333pt;}
.y110_c00010{bottom:501.506667pt;}
.y112_c00010{bottom:503.813333pt;}
.y10b_c00010{bottom:516.866667pt;}
.y10a_c00010{bottom:517.626667pt;}
.y107_c00010{bottom:518.400000pt;}
.y10c_c00010{bottom:519.173333pt;}
.y109_c00010{bottom:524.546667pt;}
.y10d_c00010{bottom:526.080000pt;}
.y108_c00010{bottom:529.146667pt;}
.yfe_c00010{bottom:539.133333pt;}
.yfd_c00010{bottom:539.906667pt;}
.y104_c00010{bottom:542.213333pt;}
.y106_c00010{bottom:542.973333pt;}
.y102_c00010{bottom:543.746667pt;}
.y100_c00010{bottom:544.506667pt;}
.yfc_c00010{bottom:545.280000pt;}
.yff_c00010{bottom:546.053333pt;}
.y101_c00010{bottom:546.813333pt;}
.y103_c00010{bottom:548.346667pt;}
.y105_c00010{bottom:549.120000pt;}
.yf7_c00010{bottom:561.413333pt;}
.yf5_c00010{bottom:562.173333pt;}
.yfa_c00010{bottom:564.480000pt;}
.yfb_c00010{bottom:566.786667pt;}
.yf6_c00010{bottom:568.320000pt;}
.yf9_c00010{bottom:569.093333pt;}
.yf8_c00010{bottom:569.853333pt;}
.y199_c00010{bottom:576.773333pt;}
.yeb_c00010{bottom:583.680000pt;}
.yed_c00010{bottom:584.453333pt;}
.yf1_c00010{bottom:585.986667pt;}
.yee_c00010{bottom:586.746667pt;}
.yf2_c00010{bottom:587.520000pt;}
.yec_c00010{bottom:588.293333pt;}
.yf3_c00010{bottom:589.053333pt;}
.yef_c00010{bottom:590.586667pt;}
.yf0_c00010{bottom:592.133333pt;}
.yf4_c00010{bottom:592.893333pt;}
.ye5_c00010{bottom:605.186667pt;}
.ye4_c00010{bottom:605.946667pt;}
.ye7_c00010{bottom:606.720000pt;}
.ye9_c00010{bottom:608.253333pt;}
.yea_c00010{bottom:609.026667pt;}
.ye8_c00010{bottom:612.866667pt;}
.ye6_c00010{bottom:614.400000pt;}
.ydd_c00010{bottom:628.226667pt;}
.ydf_c00010{bottom:628.986667pt;}
.ye3_c00010{bottom:629.760000pt;}
.ye1_c00010{bottom:631.293333pt;}
.ye0_c00010{bottom:633.600000pt;}
.yde_c00010{bottom:635.133333pt;}
.ydc_c00010{bottom:635.906667pt;}
.ye2_c00010{bottom:636.666667pt;}
.y198_c00010{bottom:640.506667pt;}
.yd6_c00010{bottom:648.960000pt;}
.yd5_c00010{bottom:649.733333pt;}
.yd4_c00010{bottom:650.493333pt;}
.yd7_c00010{bottom:652.026667pt;}
.yda_c00010{bottom:652.800000pt;}
.yd9_c00010{bottom:654.333333pt;}
.ydb_c00010{bottom:655.106667pt;}
.yd8_c00010{bottom:655.866667pt;}
.yd1_c00010{bottom:671.226667pt;}
.ycd_c00010{bottom:672.000000pt;}
.ycf_c00010{bottom:675.840000pt;}
.yce_c00010{bottom:676.613333pt;}
.yd0_c00010{bottom:677.373333pt;}
.yd2_c00010{bottom:683.520000pt;}
.yd3_c00010{bottom:686.586667pt;}
.yc7_c00010{bottom:691.973333pt;}
.yc5_c00010{bottom:692.733333pt;}
.yc8_c00010{bottom:693.506667pt;}
.yc9_c00010{bottom:695.040000pt;}
.yc4_c00010{bottom:695.813333pt;}
.yca_c00010{bottom:696.573333pt;}
.ycc_c00010{bottom:697.346667pt;}
.yc6_c00010{bottom:698.880000pt;}
.ycb_c00010{bottom:700.413333pt;}
.yc0_c00010{bottom:715.013333pt;}
.ybe_c00010{bottom:715.773333pt;}
.yc2_c00010{bottom:719.613333pt;}
.ybf_c00010{bottom:720.386667pt;}
.yc1_c00010{bottom:721.146667pt;}
.yc3_c00010{bottom:723.453333pt;}
.yb8_c00010{bottom:735.746667pt;}
.yb9_c00010{bottom:736.506667pt;}
.yb7_c00010{bottom:738.053333pt;}
.ybd_c00010{bottom:738.813333pt;}
.ybb_c00010{bottom:740.346667pt;}
.yba_c00010{bottom:741.120000pt;}
.ybc_c00010{bottom:742.653333pt;}
.yaf_c00010{bottom:758.013333pt;}
.yb1_c00010{bottom:758.786667pt;}
.yb4_c00010{bottom:759.546667pt;}
.yb2_c00010{bottom:760.320000pt;}
.yb6_c00010{bottom:761.093333pt;}
.yb3_c00010{bottom:764.933333pt;}
.yb0_c00010{bottom:765.693333pt;}
.yb5_c00010{bottom:766.466667pt;}
.yab_c00010{bottom:780.293333pt;}
.ya8_c00010{bottom:781.053333pt;}
.ya6_c00010{bottom:781.826667pt;}
.yac_c00010{bottom:782.586667pt;}
.yaa_c00010{bottom:784.893333pt;}
.ya7_c00010{bottom:787.200000pt;}
.ya9_c00010{bottom:787.973333pt;}
.yad_c00010{bottom:788.733333pt;}
.yae_c00010{bottom:789.506667pt;}
.ya5_c00010{bottom:796.413333pt;}
.y9f_c00010{bottom:801.026667pt;}
.ya0_c00010{bottom:803.333333pt;}
.ya3_c00010{bottom:804.093333pt;}
.ya1_c00010{bottom:805.626667pt;}
.y9d_c00010{bottom:808.706667pt;}
.y9e_c00010{bottom:809.466667pt;}
.ya2_c00010{bottom:811.013333pt;}
.y9c_c00010{bottom:815.613333pt;}
.y9b_c00010{bottom:816.386667pt;}
.y8f_c00010{bottom:824.066667pt;}
.ya4_c00010{bottom:824.826667pt;}
.y8e_c00010{bottom:825.600000pt;}
.y92_c00010{bottom:826.373333pt;}
.y91_c00010{bottom:827.906667pt;}
.y94_c00010{bottom:830.973333pt;}
.y90_c00010{bottom:831.746667pt;}
.y96_c00010{bottom:833.280000pt;}
.y9a_c00010{bottom:834.813333pt;}
.y93_c00010{bottom:837.893333pt;}
.y95_c00010{bottom:838.653333pt;}
.y98_c00010{bottom:840.186667pt;}
.y191_c00010{bottom:840.960000pt;}
.y190_c00010{bottom:842.493333pt;}
.y97_c00010{bottom:843.266667pt;}
.y99_c00010{bottom:845.573333pt;}
.y89_c00010{bottom:846.333333pt;}
.y85_c00010{bottom:847.866667pt;}
.y8d_c00010{bottom:848.640000pt;}
.y8c_c00010{bottom:849.413333pt;}
.y8b_c00010{bottom:850.173333pt;}
.y88_c00010{bottom:851.706667pt;}
.y87_c00010{bottom:852.480000pt;}
.y8a_c00010{bottom:853.253333pt;}
.y86_c00010{bottom:854.013333pt;}
.y7d_c00010{bottom:869.373333pt;}
.y7f_c00010{bottom:870.146667pt;}
.y80_c00010{bottom:870.906667pt;}
.y83_c00010{bottom:871.680000pt;}
.y7e_c00010{bottom:875.520000pt;}
.y81_c00010{bottom:876.293333pt;}
.y82_c00010{bottom:877.826667pt;}
.y84_c00010{bottom:878.586667pt;}
.y79_c00010{bottom:891.653333pt;}
.y7b_c00010{bottom:892.413333pt;}
.y7a_c00010{bottom:893.186667pt;}
.y7c_c00010{bottom:897.786667pt;}
.y78_c00010{bottom:898.560000pt;}
.y77_c00010{bottom:899.333333pt;}
.y6b_c00010{bottom:913.146667pt;}
.y6c_c00010{bottom:913.920000pt;}
.y70_c00010{bottom:914.693333pt;}
.y72_c00010{bottom:915.453333pt;}
.y71_c00010{bottom:916.986667pt;}
.y6f_c00010{bottom:917.760000pt;}
.y6e_c00010{bottom:918.533333pt;}
.y6d_c00010{bottom:921.600000pt;}
.y75_c00010{bottom:922.373333pt;}
.y73_c00010{bottom:923.133333pt;}
.y76_c00010{bottom:927.746667pt;}
.y6a_c00010{bottom:931.586667pt;}
.y74_c00010{bottom:933.120000pt;}
.y62_c00010{bottom:936.186667pt;}
.y67_c00010{bottom:936.960000pt;}
.y64_c00010{bottom:937.733333pt;}
.y69_c00010{bottom:938.493333pt;}
.y68_c00010{bottom:940.800000pt;}
.y63_c00010{bottom:941.573333pt;}
.y61_c00010{bottom:942.333333pt;}
.y66_c00010{bottom:943.106667pt;}
.y65_c00010{bottom:943.866667pt;}
.y59_c00010{bottom:956.160000pt;}
.y54_c00010{bottom:957.693333pt;}
.y56_c00010{bottom:959.226667pt;}
.y5d_c00010{bottom:960.000000pt;}
.y57_c00010{bottom:961.533333pt;}
.y58_c00010{bottom:962.306667pt;}
.y5e_c00010{bottom:963.066667pt;}
.y5a_c00010{bottom:963.840000pt;}
.y5b_c00010{bottom:964.613333pt;}
.y5c_c00010{bottom:965.373333pt;}
.y5f_c00010{bottom:966.146667pt;}
.y60_c00010{bottom:966.906667pt;}
.y55_c00010{bottom:970.746667pt;}
.y4e_c00010{bottom:980.733333pt;}
.y50_c00010{bottom:981.506667pt;}
.y52_c00010{bottom:982.266667pt;}
.y53_c00010{bottom:983.040000pt;}
.y4a_c00010{bottom:985.346667pt;}
.y4f_c00010{bottom:986.106667pt;}
.y4c_c00010{bottom:986.880000pt;}
.y51_c00010{bottom:987.653333pt;}
.y4b_c00010{bottom:992.253333pt;}
.y4d_c00010{bottom:993.026667pt;}
.y197_c00010{bottom:996.866667pt;}
.y44_c00010{bottom:1002.240000pt;}
.y46_c00010{bottom:1003.013333pt;}
.y49_c00010{bottom:1006.080000pt;}
.y48_c00010{bottom:1007.613333pt;}
.y45_c00010{bottom:1009.146667pt;}
.y47_c00010{bottom:1009.920000pt;}
.y3e_c00010{bottom:1023.746667pt;}
.y3d_c00010{bottom:1024.506667pt;}
.y40_c00010{bottom:1025.280000pt;}
.y42_c00010{bottom:1026.813333pt;}
.y3c_c00010{bottom:1027.586667pt;}
.y41_c00010{bottom:1029.893333pt;}
.y3f_c00010{bottom:1031.426667pt;}
.y43_c00010{bottom:1032.186667pt;}
.y35_c00010{bottom:1043.706667pt;}
.y37_c00010{bottom:1046.013333pt;}
.y39_c00010{bottom:1046.786667pt;}
.y3a_c00010{bottom:1047.546667pt;}
.y3b_c00010{bottom:1048.320000pt;}
.y36_c00010{bottom:1052.933333pt;}
.y38_c00010{bottom:1053.693333pt;}
.y2e_c00010{bottom:1068.293333pt;}
.y31_c00010{bottom:1069.053333pt;}
.y30_c00010{bottom:1069.826667pt;}
.y32_c00010{bottom:1070.586667pt;}
.y33_c00010{bottom:1071.360000pt;}
.y2f_c00010{bottom:1073.666667pt;}
.y34_c00010{bottom:1075.200000pt;}
.y24_c00010{bottom:1089.786667pt;}
.y28_c00010{bottom:1090.560000pt;}
.y26_c00010{bottom:1091.333333pt;}
.y29_c00010{bottom:1092.093333pt;}
.y25_c00010{bottom:1093.626667pt;}
.y23_c00010{bottom:1094.400000pt;}
.y2b_c00010{bottom:1096.706667pt;}
.y27_c00010{bottom:1097.466667pt;}
.y2a_c00010{bottom:1099.013333pt;}
.y2d_c00010{bottom:1103.613333pt;}
.y1d_c00010{bottom:1111.293333pt;}
.y2c_c00010{bottom:1112.066667pt;}
.y20_c00010{bottom:1113.600000pt;}
.y22_c00010{bottom:1114.373333pt;}
.y1f_c00010{bottom:1116.666667pt;}
.y1b_c00010{bottom:1118.213333pt;}
.y1c_c00010{bottom:1118.973333pt;}
.y1e_c00010{bottom:1119.746667pt;}
.y21_c00010{bottom:1120.506667pt;}
.y1a_c00010{bottom:1129.733333pt;}
.y16_c00010{bottom:1135.106667pt;}
.y18_c00010{bottom:1135.866667pt;}
.y19_c00010{bottom:1138.173333pt;}
.y14_c00010{bottom:1138.946667pt;}
.y13_c00010{bottom:1139.706667pt;}
.y15_c00010{bottom:1141.253333pt;}
.y17_c00010{bottom:1142.013333pt;}
.y196_c00010{bottom:1145.853333pt;}
.y195_c00010{bottom:1147.386667pt;}
.yf_c00010{bottom:1156.613333pt;}
.y10_c00010{bottom:1158.146667pt;}
.y11_c00010{bottom:1158.906667pt;}
.y12_c00010{bottom:1161.986667pt;}
.ye_c00010{bottom:1162.746667pt;}
.y7_c00010{bottom:1178.880000pt;}
.y9_c00010{bottom:1179.653333pt;}
.yd_c00010{bottom:1180.413333pt;}
.yc_c00010{bottom:1183.493333pt;}
.y8_c00010{bottom:1184.253333pt;}
.ya_c00010{bottom:1185.786667pt;}
.yb_c00010{bottom:1186.560000pt;}
.y194_c00010{bottom:1188.093333pt;}
.y1_c00010{bottom:1200.386667pt;}
.y4_c00010{bottom:1201.146667pt;}
.y5_c00010{bottom:1201.920000pt;}
.y6_c00010{bottom:1202.693333pt;}
.y2_c00010{bottom:1206.533333pt;}
.y3_c00010{bottom:1208.066667pt;}
.y18e_c00010{bottom:1233.413333pt;}
.y18f_c00010{bottom:1234.946667pt;}
.y18d_c00010{bottom:1235.706667pt;}
.y18a_c00010{bottom:1251.066667pt;}
.y18b_c00010{bottom:1254.146667pt;}
.y192_c00010{bottom:1259.520000pt;}
.y193_c00010{bottom:1261.053333pt;}
.y18c_c00010{bottom:1264.893333pt;}
.h16_c00010{height:2.764500pt;}
.h8_c00010{height:4.799479pt;}
.h1a_c00010{height:5.519401pt;}
.h15_c00010{height:8.303099pt;}
.h19_c00010{height:11.038802pt;}
.h11_c00010{height:13.822500pt;}
.h1e_c00010{height:16.606198pt;}
.h1b_c00010{height:19.341901pt;}
.h1c_c00010{height:22.125599pt;}
.h20_c00010{height:24.861302pt;}
.h14_c00010{height:27.645000pt;}
.hf_c00010{height:30.428698pt;}
.h4_c00010{height:33.164401pt;}
.h1d_c00010{height:35.948099pt;}
.h21_c00010{height:38.683802pt;}
.h27_c00010{height:41.467500pt;}
.hd_c00010{height:44.251198pt;}
.he_c00010{height:46.986901pt;}
.hc_c00010{height:49.770599pt;}
.h3_c00010{height:52.506302pt;}
.ha_c00010{height:55.290000pt;}
.h6_c00010{height:58.073698pt;}
.h10_c00010{height:60.809401pt;}
.h13_c00010{height:63.593099pt;}
.h17_c00010{height:66.328802pt;}
.h9_c00010{height:69.112500pt;}
.hb_c00010{height:71.896198pt;}
.h7_c00010{height:74.631901pt;}
.h2_c00010{height:77.415599pt;}
.h12_c00010{height:80.151302pt;}
.h1f_c00010{height:82.935000pt;}
.h18_c00010{height:85.718698pt;}
.h24_c00010{height:88.454401pt;}
.h26_c00010{height:91.238099pt;}
.h23_c00010{height:93.973802pt;}
.h5_c00010{height:96.757500pt;}
.h25_c00010{height:105.060599pt;}
.h22_c00010{height:113.363698pt;}
.h0_c00010{height:1347.066667pt;}
.h1_c00010{height:1347.333333pt;}
.w1_c00010{width:946.666667pt;}
.w0_c00010{width:946.946667pt;}
.x0_c00010{left:0.000000pt;}
.x10b_c00010{left:96.000000pt;}
.x10c_c00010{left:107.520000pt;}
.xe1_c00010{left:128.253333pt;}
.xbf_c00010{left:134.400000pt;}
.xc6_c00010{left:135.933333pt;}
.xf7_c00010{left:145.146667pt;}
.x10a_c00010{left:146.693333pt;}
.x5a_c00010{left:152.066667pt;}
.x21_c00010{left:153.600000pt;}
.x101_c00010{left:155.906667pt;}
.x2e_c00010{left:157.440000pt;}
.x64_c00010{left:158.973333pt;}
.x5b_c00010{left:160.506667pt;}
.xe2_c00010{left:163.586667pt;}
.x3a_c00010{left:165.893333pt;}
.x65_c00010{left:168.186667pt;}
.x5c_c00010{left:170.493333pt;}
.xa3_c00010{left:172.800000pt;}
.x5d_c00010{left:175.866133pt;}
.x8_c00010{left:177.413333pt;}
.x66_c00010{left:179.706667pt;}
.x5e_c00010{left:182.013267pt;}
.x12_c00010{left:184.320000pt;}
.xae_c00010{left:185.853333pt;}
.x2f_c00010{left:188.160000pt;}
.x78_c00010{left:190.466667pt;}
.x1_c00010{left:192.000000pt;}
.x19_c00010{left:193.533333pt;}
.x4b_c00010{left:195.066667pt;}
.x9c_c00010{left:202.746667pt;}
.x82_c00010{left:207.360000pt;}
.xc7_c00010{left:211.200000pt;}
.x4c_c00010{left:213.506667pt;}
.xe4_c00010{left:215.040000pt;}
.x13_c00010{left:218.106667pt;}
.x9_c00010{left:221.186667pt;}
.xba_c00010{left:222.720000pt;}
.x22_c00010{left:225.026667pt;}
.xfe_c00010{left:228.866667pt;}
.xdc_c00010{left:231.933333pt;}
.x94_c00010{left:234.240000pt;}
.xf8_c00010{left:235.773333pt;}
.xb0_c00010{left:240.386667pt;}
.xc0_c00010{left:241.920000pt;}
.x9d_c00010{left:243.453333pt;}
.x88_c00010{left:245.760000pt;}
.xe7_c00010{left:247.293333pt;}
.xa4_c00010{left:248.826667pt;}
.xff_c00010{left:251.133333pt;}
.xed_c00010{left:253.440000pt;}
.xfd_c00010{left:256.506667pt;}
.x8f_c00010{left:258.053333pt;}
.x1a_c00010{left:261.120000pt;}
.x90_c00010{left:265.733333pt;}
.x107_c00010{left:268.800000pt;}
.x6f_c00010{left:270.333333pt;}
.xa5_c00010{left:272.640000pt;}
.xa_c00010{left:275.706667pt;}
.xf1_c00010{left:277.253333pt;}
.x14_c00010{left:280.320000pt;}
.x83_c00010{left:282.626667pt;}
.xb4_c00010{left:285.693333pt;}
.x52_c00010{left:288.000000pt;}
.xc8_c00010{left:289.533333pt;}
.x23_c00010{left:291.840000pt;}
.x100_c00010{left:294.146667pt;}
.xc9_c00010{left:297.986667pt;}
.xbb_c00010{left:299.520000pt;}
.x3b_c00010{left:301.826667pt;}
.x2_c00010{left:303.360000pt;}
.x102_c00010{left:306.426667pt;}
.x5f_c00010{left:307.973333pt;}
.x30_c00010{left:310.266667pt;}
.xb5_c00010{left:313.346667pt;}
.xf9_c00010{left:314.880000pt;}
.xe8_c00010{left:317.186667pt;}
.xcc_c00010{left:318.720000pt;}
.x44_c00010{left:321.026667pt;}
.x1b_c00010{left:322.560000pt;}
.xa6_c00010{left:325.626667pt;}
.x3_c00010{left:327.173333pt;}
.xdd_c00010{left:329.466667pt;}
.x31_c00010{left:331.773333pt;}
.x4d_c00010{left:334.080000pt;}
.xe5_c00010{left:337.146667pt;}
.x3c_c00010{left:342.533333pt;}
.x4_c00010{left:344.826667pt;}
.x24_c00010{left:349.440000pt;}
.x9e_c00010{left:351.746667pt;}
.xc1_c00010{left:353.280000pt;}
.xb_c00010{left:355.586667pt;}
.xf2_c00010{left:357.893333pt;}
.x95_c00010{left:360.960000pt;}
.xd0_c00010{left:366.333333pt;}
.x70_c00010{left:368.640000pt;}
.x15_c00010{left:370.946667pt;}
.xfa_c00010{left:373.253333pt;}
.xbc_c00010{left:377.093333pt;}
.x53_c00010{left:379.386667pt;}
.x89_c00010{left:381.693333pt;}
.xfb_c00010{left:383.226667pt;}
.xa7_c00010{left:384.773333pt;}
.x67_c00010{left:386.306667pt;}
.x32_c00010{left:388.613333pt;}
.xfc_c00010{left:391.680000pt;}
.x25_c00010{left:393.986667pt;}
.xe9_c00010{left:398.586667pt;}
.x3d_c00010{left:400.893333pt;}
.xa8_c00010{left:402.426667pt;}
.x45_c00010{left:404.733333pt;}
.x26_c00010{left:407.813333pt;}
.x108_c00010{left:410.106667pt;}
.x68_c00010{left:413.946667pt;}
.x79_c00010{left:415.493333pt;}
.x1c_c00010{left:418.560000pt;}
.x54_c00010{left:422.400000pt;}
.xcd_c00010{left:425.466667pt;}
.x91_c00010{left:427.013333pt;}
.x60_c00010{left:433.920000pt;}
.x46_c00010{left:436.986667pt;}
.xd4_c00010{left:439.293333pt;}
.x96_c00010{left:440.826667pt;}
.xce_c00010{left:443.133333pt;}
.x71_c00010{left:444.666667pt;}
.xb1_c00010{left:446.213333pt;}
.xc_c00010{left:447.746667pt;}
.x7a_c00010{left:449.280000pt;}
.xea_c00010{left:451.586667pt;}
.x27_c00010{left:453.893333pt;}
.xc2_c00010{left:455.426667pt;}
.x4e_c00010{left:456.960000pt;}
.x33_c00010{left:458.493333pt;}
.xa9_c00010{left:460.800000pt;}
.x55_c00010{left:463.106667pt;}
.x61_c00010{left:468.480000pt;}
.xde_c00010{left:470.786667pt;}
.xb6_c00010{left:473.093333pt;}
.x72_c00010{left:478.466667pt;}
.x8a_c00010{left:480.773333pt;}
.x7b_c00010{left:482.306667pt;}
.xaa_c00010{left:483.840000pt;}
.x84_c00010{left:486.146667pt;}
.x105_c00010{left:487.680000pt;}
.x3e_c00010{left:490.746667pt;}
.x9f_c00010{left:493.826667pt;}
.x28_c00010{left:495.360000pt;}
.xd_c00010{left:497.666667pt;}
.xab_c00010{left:499.200000pt;}
.xd5_c00010{left:502.266667pt;}
.x4f_c00010{left:504.573333pt;}
.xb7_c00010{left:508.413333pt;}
.x34_c00010{left:511.493333pt;}
.x69_c00010{left:513.026667pt;}
.x56_c00010{left:516.866667pt;}
.xf3_c00010{left:518.400000pt;}
.xa0_c00010{left:521.466667pt;}
.x92_c00010{left:523.013333pt;}
.xbd_c00010{left:524.546667pt;}
.x73_c00010{left:526.080000pt;}
.xd1_c00010{left:527.613333pt;}
.x85_c00010{left:529.920000pt;}
.x103_c00010{left:532.226667pt;}
.x5_c00010{left:533.760000pt;}
.xd8_c00010{left:536.066667pt;}
.x47_c00010{left:538.373333pt;}
.xee_c00010{left:542.213333pt;}
.xac_c00010{left:545.280000pt;}
.x74_c00010{left:547.586667pt;}
.x35_c00010{left:549.893333pt;}
.x50_c00010{left:552.186667pt;}
.x7c_c00010{left:553.733333pt;}
.xd6_c00010{left:555.266667pt;}
.xe_c00010{left:556.800000pt;}
.xdf_c00010{left:558.333333pt;}
.x16_c00010{left:562.946667pt;}
.x8b_c00010{left:565.253333pt;}
.xb8_c00010{left:567.546667pt;}
.xaf_c00010{left:569.093333pt;}
.x6_c00010{left:572.160000pt;}
.x109_c00010{left:573.693333pt;}
.xc3_c00010{left:576.773333pt;}
.x3f_c00010{left:578.306667pt;}
.xb2_c00010{left:581.373333pt;}
.x8c_c00010{left:583.680000pt;}
.x62_c00010{left:585.986667pt;}
.xeb_c00010{left:589.826667pt;}
.x75_c00010{left:591.360000pt;}
.x6a_c00010{left:592.893333pt;}
.xf_c00010{left:598.266667pt;}
.x7_c00010{left:600.573333pt;}
.x40_c00010{left:602.106667pt;}
.x86_c00010{left:605.186667pt;}
.xad_c00010{left:606.720000pt;}
.x48_c00010{left:609.026667pt;}
.x1d_c00010{left:610.560000pt;}
.x29_c00010{left:612.093333pt;}
.xca_c00010{left:614.400000pt;}
.x97_c00010{left:617.466667pt;}
.x41_c00010{left:619.013333pt;}
.xef_c00010{left:622.080000pt;}
.x51_c00010{left:623.613333pt;}
.xb3_c00010{left:625.920000pt;}
.x98_c00010{left:628.226667pt;}
.x76_c00010{left:630.533333pt;}
.xa1_c00010{left:632.066667pt;}
.x8d_c00010{left:633.600000pt;}
.x57_c00010{left:638.213333pt;}
.x2a_c00010{left:641.280000pt;}
.xd9_c00010{left:643.586667pt;}
.x7d_c00010{left:645.893333pt;}
.x1e_c00010{left:650.493333pt;}
.x10_c00010{left:652.026667pt;}
.x93_c00010{left:655.866667pt;}
.xd2_c00010{left:657.413333pt;}
.x42_c00010{left:659.706667pt;}
.x63_c00010{left:661.253333pt;}
.x1f_c00010{left:664.320000pt;}
.x36_c00010{left:668.160000pt;}
.x87_c00010{left:669.693333pt;}
.xe0_c00010{left:672.773333pt;}
.x6b_c00010{left:675.840000pt;}
.xb9_c00010{left:677.373333pt;}
.x2b_c00010{left:679.680000pt;}
.xd7_c00010{left:681.213333pt;}
.xec_c00010{left:682.746667pt;}
.x58_c00010{left:685.053333pt;}
.x49_c00010{left:686.586667pt;}
.x17_c00010{left:688.893333pt;}
.x11_c00010{left:690.426667pt;}
.xa2_c00010{left:693.506667pt;}
.x106_c00010{left:695.040000pt;}
.xf4_c00010{left:696.573333pt;}
.x6c_c00010{left:698.106667pt;}
.xbe_c00010{left:699.653333pt;}
.x43_c00010{left:701.186667pt;}
.xcb_c00010{left:702.720000pt;}
.xda_c00010{left:705.026667pt;}
.x59_c00010{left:707.333333pt;}
.x8e_c00010{left:710.400000pt;}
.x18_c00010{left:711.933333pt;}
.xf0_c00010{left:713.466667pt;}
.xc4_c00010{left:715.013333pt;}
.x6d_c00010{left:718.080000pt;}
.xdb_c00010{left:720.386667pt;}
.xe6_c00010{left:722.693333pt;}
.x2c_c00010{left:724.226667pt;}
.x37_c00010{left:727.293333pt;}
.xf6_c00010{left:728.826667pt;}
.x7e_c00010{left:732.666667pt;}
.x6e_c00010{left:734.973333pt;}
.xd3_c00010{left:740.346667pt;}
.x99_c00010{left:741.893333pt;}
.xf5_c00010{left:745.733333pt;}
.x9a_c00010{left:748.026667pt;}
.x104_c00010{left:749.573333pt;}
.xe3_c00010{left:751.866667pt;}
.xc5_c00010{left:753.413333pt;}
.x9b_c00010{left:756.480000pt;}
.x38_c00010{left:759.546667pt;}
.xcf_c00010{left:761.093333pt;}
.x7f_c00010{left:763.386667pt;}
.x39_c00010{left:768.774187pt;}
.x2d_c00010{left:771.066667pt;}
.x4a_c00010{left:772.613333pt;}
.x80_c00010{left:774.906667pt;}
.x10f_c00010{left:783.360000pt;}
.x112_c00010{left:791.040000pt;}
.x81_c00010{left:794.106667pt;}
.x110_c00010{left:796.413333pt;}
.x20_c00010{left:801.026667pt;}
.x77_c00010{left:804.866667pt;}
.x113_c00010{left:854.013333pt;}
.x10d_c00010{left:880.893333pt;}
.x10e_c00010{left:884.733333pt;}
.x111_c00010{left:910.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_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_94463954d9da84f1820a9d94.woff2')format("woff");}.ff1_c00011{font-family:ff1_c00011;line-height:1.109863;font-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_c00011{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00011{transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);}
.mbb_c00011{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.m41_c00011{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m3_c00011{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.me_c00011{transform:matrix(0.090800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090800,0.000000,0.000000,0.250000,0,0);}
.m8c_c00011{transform:matrix(0.093550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093550,0.000000,0.000000,0.250000,0,0);}
.m8e_c00011{transform:matrix(0.094225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094225,0.000000,0.000000,0.250000,0,0);}
.m57_c00011{transform:matrix(0.095200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095200,0.000000,0.000000,0.250000,0,0);}
.mf5_c00011{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);}
.m10_c00011{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);}
.mb2_c00011{transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);}
.m89_c00011{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);}
.m6c_c00011{transform:matrix(0.112375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112375,0.000000,0.000000,0.250000,0,0);}
.mcd_c00011{transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);}
.mb_c00011{transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);}
.ma2_c00011{transform:matrix(0.114825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114825,0.000000,0.000000,0.250000,0,0);}
.m28_c00011{transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);}
.m11_c00011{transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);}
.md8_c00011{transform:matrix(0.120175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120175,0.000000,0.000000,0.250000,0,0);}
.mc_c00011{transform:matrix(0.123850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123850,0.000000,0.000000,0.250000,0,0);}
.m9_c00011{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00011{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m14_c00011{transform:matrix(0.126875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126875,0.000000,0.000000,0.250000,0,0);}
.me5_c00011{transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);}
.mca_c00011{transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);}
.me1_c00011{transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);}
.ma1_c00011{transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);}
.m68_c00011{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);}
.maa_c00011{transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);}
.m3c_c00011{transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);}
.mb6_c00011{transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);}
.mb3_c00011{transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);}
.md9_c00011{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.mde_c00011{transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);}
.meb_c00011{transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);}
.m13_c00011{transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);}
.md_c00011{transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);}
.m5_c00011{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m21_c00011{transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);}
.mdc_c00011{transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);}
.m5d_c00011{transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);}
.m8b_c00011{transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);}
.m51_c00011{transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);}
.m7a_c00011{transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);}
.m71_c00011{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);}
.mcb_c00011{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m35_c00011{transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);}
.ma4_c00011{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.m97_c00011{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.m72_c00011{transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);}
.mc2_c00011{transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);}
.mc7_c00011{transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);}
.m66_c00011{transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);}
.m4a_c00011{transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);}
.m47_c00011{transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);}
.m6f_c00011{transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);}
.m4e_c00011{transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);}
.mf7_c00011{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);}
.m81_c00011{transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);}
.mba_c00011{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m38_c00011{transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);}
.m7f_c00011{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);}
.m9b_c00011{transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);}
.mee_c00011{transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);}
.m39_c00011{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.m61_c00011{transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);}
.ma6_c00011{transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);}
.m53_c00011{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m99_c00011{transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);}
.m17_c00011{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.me2_c00011{transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);}
.mcf_c00011{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.m55_c00011{transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);}
.m6e_c00011{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.ma0_c00011{transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);}
.mc0_c00011{transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);}
.m9e_c00011{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.mdd_c00011{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);}
.med_c00011{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m19_c00011{transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);}
.m4d_c00011{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.m4b_c00011{transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);}
.mb7_c00011{transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);}
.m4c_c00011{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.m65_c00011{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m56_c00011{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.md0_c00011{transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);}
.m84_c00011{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);}
.m64_c00011{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);}
.md2_c00011{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);}
.mab_c00011{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.md5_c00011{transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);}
.m1b_c00011{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m7e_c00011{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);}
.mae_c00011{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);}
.m22_c00011{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);}
.mac_c00011{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.mc1_c00011{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);}
.ma8_c00011{transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);}
.m95_c00011{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.mb4_c00011{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me7_c00011{transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);}
.mc4_c00011{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m52_c00011{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m6a_c00011{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.mdb_c00011{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);}
.m1a_c00011{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.me0_c00011{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.mbf_c00011{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.m69_c00011{transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);}
.m1e_c00011{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m24_c00011{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);}
.m3d_c00011{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.mdf_c00011{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.mc3_c00011{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.mb0_c00011{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.ma3_c00011{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);}
.m93_c00011{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);}
.m91_c00011{transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);}
.m82_c00011{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);}
.mef_c00011{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);}
.m7d_c00011{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);}
.m90_c00011{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.m1d_c00011{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);}
.mb8_c00011{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);}
.m70_c00011{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00011{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);}
.md4_c00011{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.m50_c00011{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.m40_c00011{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m80_c00011{transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);}
.m85_c00011{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.md1_c00011{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);}
.m73_c00011{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);}
.mce_c00011{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.mb9_c00011{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.m7c_c00011{transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);}
.m26_c00011{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00011{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m20_c00011{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m3b_c00011{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m86_c00011{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.me6_c00011{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);}
.m6b_c00011{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.m25_c00011{transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);}
.mb1_c00011{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);}
.m58_c00011{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);}
.me9_c00011{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);}
.m9c_c00011{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m62_c00011{transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);}
.md6_c00011{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);}
.mea_c00011{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);}
.m43_c00011{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.m1c_c00011{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m27_c00011{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.md3_c00011{transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);}
.mbe_c00011{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);}
.m87_c00011{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);}
.m8f_c00011{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.m96_c00011{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);}
.md7_c00011{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.m3f_c00011{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m79_c00011{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);}
.m6d_c00011{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.mf6_c00011{transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);}
.m59_c00011{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);}
.m30_c00011{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);}
.mc6_c00011{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m46_c00011{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);}
.mbd_c00011{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m54_c00011{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);}
.m5e_c00011{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);}
.mcc_c00011{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);}
.mc8_c00011{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);}
.m9d_c00011{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.mf0_c00011{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);}
.m76_c00011{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);}
.m37_c00011{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);}
.m2e_c00011{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);}
.mb5_c00011{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m63_c00011{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);}
.mc5_c00011{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);}
.m60_c00011{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);}
.m34_c00011{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);}
.me3_c00011{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);}
.m4f_c00011{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m78_c00011{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);}
.m33_c00011{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m23_c00011{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);}
.m44_c00011{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);}
.m2a_c00011{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);}
.m48_c00011{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);}
.m32_c00011{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00011{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c00011{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);}
.mad_c00011{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00011{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);}
.mec_c00011{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);}
.m12_c00011{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00011{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00011{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);}
.me8_c00011{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);}
.mc9_c00011{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00011{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);}
.maf_c00011{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m67_c00011{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00011{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c00011{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m36_c00011{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00011{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00011{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);}
.m0_c00011{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00011{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);}
.m49_c00011{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);}
.mda_c00011{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);}
.m2d_c00011{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m15_c00011{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mf_c00011{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);}
.m83_c00011{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);}
.m6_c00011{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m88_c00011{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00011{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m92_c00011{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m98_c00011{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);}
.m31_c00011{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);}
.m2c_c00011{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00011{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m29_c00011{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m75_c00011{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);}
.m94_c00011{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c00011{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00011{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);}
.m74_c00011{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00011{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m42_c00011{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.me4_c00011{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00011{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4_c00011{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00011{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m18_c00011{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00011{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);}
.mf8_c00011{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m77_c00011{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00011{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m2_c00011{transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00011{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.ma_c00011{transform:matrix(1.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.215000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00011{transform:matrix(2.740000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.740000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.740000,0.000000,0.000000,0.250000,0,0);}
.v0_c00011{vertical-align:0.000000px;}
.ls1_c00011{letter-spacing:0.000000px;}
.ls0_c00011{letter-spacing:136.362000px;}
.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;}
.fs3_c00011{font-size:3.456000px;}
.fs1f_c00011{font-size:6.000000px;}
.fs1_c00011{font-size:6.900000px;}
.fs6_c00011{font-size:10.380000px;}
.fs4_c00011{font-size:13.800000px;}
.fs2_c00011{font-size:17.280000px;}
.fs7_c00011{font-size:20.760000px;}
.fs0_c00011{font-size:24.180000px;}
.fs15_c00011{font-size:27.660000px;}
.fs22_c00011{font-size:31.080000px;}
.fs1e_c00011{font-size:34.560000px;}
.fs20_c00011{font-size:38.040000px;}
.fs1c_c00011{font-size:41.460000px;}
.fs5_c00011{font-size:44.940000px;}
.fs1b_c00011{font-size:48.360000px;}
.fsd_c00011{font-size:51.840000px;}
.fs10_c00011{font-size:55.320000px;}
.fs1a_c00011{font-size:58.740000px;}
.fse_c00011{font-size:62.220000px;}
.fs16_c00011{font-size:65.640000px;}
.fs1d_c00011{font-size:69.120000px;}
.fs14_c00011{font-size:72.600000px;}
.fs23_c00011{font-size:76.020000px;}
.fs18_c00011{font-size:79.500000px;}
.fs13_c00011{font-size:82.920000px;}
.fs17_c00011{font-size:86.400000px;}
.fsf_c00011{font-size:89.880000px;}
.fs19_c00011{font-size:93.300000px;}
.fs12_c00011{font-size:96.780000px;}
.fs11_c00011{font-size:100.200000px;}
.fsb_c00011{font-size:103.680000px;}
.fs21_c00011{font-size:107.160000px;}
.fsa_c00011{font-size:110.580000px;}
.fs8_c00011{font-size:114.060000px;}
.fs9_c00011{font-size:117.480000px;}
.fsc_c00011{font-size:120.960000px;}
.y0_c00011{bottom:0.000000px;}
.yc7_c00011{bottom:820.800000px;}
.yc5_c00011{bottom:823.395000px;}
.yc6_c00011{bottom:825.120000px;}
.yc8_c00011{bottom:825.990000px;}
.ycb_c00011{bottom:839.805000px;}
.yca_c00011{bottom:841.530000px;}
.yc9_c00011{bottom:843.270000px;}
.ybc_c00011{bottom:844.995000px;}
.ybe_c00011{bottom:845.850000px;}
.yc0_c00011{bottom:846.720000px;}
.yba_c00011{bottom:847.590000px;}
.yc2_c00011{bottom:848.445000px;}
.yc1_c00011{bottom:849.315000px;}
.ybf_c00011{bottom:850.170000px;}
.ybb_c00011{bottom:851.040000px;}
.yc3_c00011{bottom:851.910000px;}
.ybd_c00011{bottom:853.635000px;}
.yb0_c00011{bottom:865.725000px;}
.yc4_c00011{bottom:866.595000px;}
.yb2_c00011{bottom:868.320000px;}
.yb3_c00011{bottom:870.045000px;}
.yb4_c00011{bottom:870.915000px;}
.yb9_c00011{bottom:871.770000px;}
.yb5_c00011{bottom:872.640000px;}
.yb6_c00011{bottom:873.510000px;}
.yb1_c00011{bottom:876.960000px;}
.yb8_c00011{bottom:878.685000px;}
.yb7_c00011{bottom:879.555000px;}
.ya5_c00011{bottom:893.370000px;}
.ya7_c00011{bottom:894.240000px;}
.ya8_c00011{bottom:895.110000px;}
.ya9_c00011{bottom:895.965000px;}
.yab_c00011{bottom:896.835000px;}
.yaf_c00011{bottom:900.285000px;}
.ya6_c00011{bottom:901.155000px;}
.yae_c00011{bottom:902.010000px;}
.yaa_c00011{bottom:903.750000px;}
.yad_c00011{bottom:904.605000px;}
.yac_c00011{bottom:921.030000px;}
.ya1_c00011{bottom:921.885000px;}
.y9e_c00011{bottom:923.610000px;}
.ya4_c00011{bottom:924.480000px;}
.y9d_c00011{bottom:925.350000px;}
.y9c_c00011{bottom:926.205000px;}
.y9f_c00011{bottom:927.075000px;}
.ya2_c00011{bottom:927.930000px;}
.ya3_c00011{bottom:928.800000px;}
.ya0_c00011{bottom:929.670000px;}
.y96_c00011{bottom:944.355000px;}
.y97_c00011{bottom:946.080000px;}
.y95_c00011{bottom:946.950000px;}
.y9b_c00011{bottom:948.675000px;}
.y9a_c00011{bottom:950.400000px;}
.y94_c00011{bottom:951.270000px;}
.y98_c00011{bottom:952.995000px;}
.y99_c00011{bottom:953.850000px;}
.y90_c00011{bottom:966.810000px;}
.y8d_c00011{bottom:969.405000px;}
.y8f_c00011{bottom:970.275000px;}
.y92_c00011{bottom:971.130000px;}
.y93_c00011{bottom:972.000000px;}
.y8e_c00011{bottom:975.450000px;}
.y91_c00011{bottom:976.320000px;}
.y85_c00011{bottom:992.730000px;}
.y86_c00011{bottom:994.470000px;}
.y89_c00011{bottom:996.195000px;}
.y87_c00011{bottom:997.920000px;}
.y88_c00011{bottom:999.645000px;}
.y8a_c00011{bottom:1004.835000px;}
.y8b_c00011{bottom:1006.560000px;}
.y8c_c00011{bottom:1014.330000px;}
.y7a_c00011{bottom:1018.650000px;}
.y7c_c00011{bottom:1019.520000px;}
.y80_c00011{bottom:1021.245000px;}
.y7d_c00011{bottom:1022.115000px;}
.y83_c00011{bottom:1022.970000px;}
.y7b_c00011{bottom:1023.840000px;}
.y79_c00011{bottom:1025.565000px;}
.y7e_c00011{bottom:1026.435000px;}
.y7f_c00011{bottom:1028.160000px;}
.y81_c00011{bottom:1029.030000px;}
.y82_c00011{bottom:1029.885000px;}
.y84_c00011{bottom:1031.610000px;}
.yd1_c00011{bottom:1041.990000px;}
.y71_c00011{bottom:1043.715000px;}
.y73_c00011{bottom:1044.570000px;}
.y6f_c00011{bottom:1046.310000px;}
.y72_c00011{bottom:1047.165000px;}
.y77_c00011{bottom:1048.890000px;}
.y78_c00011{bottom:1049.760000px;}
.y70_c00011{bottom:1050.630000px;}
.y74_c00011{bottom:1052.355000px;}
.y75_c00011{bottom:1054.080000px;}
.y76_c00011{bottom:1054.950000px;}
.y68_c00011{bottom:1065.315000px;}
.y67_c00011{bottom:1068.765000px;}
.y66_c00011{bottom:1069.635000px;}
.y69_c00011{bottom:1071.360000px;}
.y6a_c00011{bottom:1072.230000px;}
.y6c_c00011{bottom:1073.085000px;}
.y6d_c00011{bottom:1075.680000px;}
.y6e_c00011{bottom:1076.550000px;}
.y6b_c00011{bottom:1079.130000px;}
.y65_c00011{bottom:1085.190000px;}
.y5f_c00011{bottom:1093.830000px;}
.y5d_c00011{bottom:1095.555000px;}
.y62_c00011{bottom:1096.410000px;}
.y61_c00011{bottom:1097.280000px;}
.y5e_c00011{bottom:1098.150000px;}
.y64_c00011{bottom:1099.005000px;}
.y60_c00011{bottom:1099.875000px;}
.y63_c00011{bottom:1102.470000px;}
.y55_c00011{bottom:1118.010000px;}
.y56_c00011{bottom:1120.605000px;}
.y57_c00011{bottom:1122.330000px;}
.y59_c00011{bottom:1123.200000px;}
.y5b_c00011{bottom:1124.925000px;}
.y54_c00011{bottom:1125.795000px;}
.y58_c00011{bottom:1127.520000px;}
.y5a_c00011{bottom:1134.435000px;}
.y5c_c00011{bottom:1141.350000px;}
.y4a_c00011{bottom:1142.205000px;}
.y4b_c00011{bottom:1143.075000px;}
.y4f_c00011{bottom:1143.930000px;}
.y4d_c00011{bottom:1144.800000px;}
.y51_c00011{bottom:1146.525000px;}
.y4c_c00011{bottom:1147.395000px;}
.y52_c00011{bottom:1149.120000px;}
.y4e_c00011{bottom:1151.715000px;}
.y53_c00011{bottom:1152.570000px;}
.y50_c00011{bottom:1154.310000px;}
.y44_c00011{bottom:1168.995000px;}
.y46_c00011{bottom:1171.590000px;}
.y45_c00011{bottom:1173.315000px;}
.y49_c00011{bottom:1174.170000px;}
.y43_c00011{bottom:1175.040000px;}
.y48_c00011{bottom:1178.490000px;}
.y47_c00011{bottom:1179.360000px;}
.y3c_c00011{bottom:1194.045000px;}
.y3d_c00011{bottom:1194.915000px;}
.y3f_c00011{bottom:1195.770000px;}
.y40_c00011{bottom:1196.640000px;}
.y3e_c00011{bottom:1197.510000px;}
.y41_c00011{bottom:1198.365000px;}
.y3a_c00011{bottom:1199.235000px;}
.y3b_c00011{bottom:1200.090000px;}
.y42_c00011{bottom:1205.280000px;}
.y35_c00011{bottom:1217.370000px;}
.y33_c00011{bottom:1218.240000px;}
.y36_c00011{bottom:1220.835000px;}
.y37_c00011{bottom:1221.690000px;}
.y38_c00011{bottom:1222.560000px;}
.y32_c00011{bottom:1223.430000px;}
.y31_c00011{bottom:1224.285000px;}
.y34_c00011{bottom:1226.880000px;}
.y39_c00011{bottom:1235.520000px;}
.y28_c00011{bottom:1240.710000px;}
.y29_c00011{bottom:1242.435000px;}
.y2c_c00011{bottom:1245.030000px;}
.y2b_c00011{bottom:1246.755000px;}
.y2d_c00011{bottom:1247.610000px;}
.y2a_c00011{bottom:1251.075000px;}
.y30_c00011{bottom:1253.670000px;}
.y2f_c00011{bottom:1255.395000px;}
.ycf_c00011{bottom:1260.570000px;}
.yce_c00011{bottom:1266.630000px;}
.y2e_c00011{bottom:1270.080000px;}
.y1e_c00011{bottom:1270.950000px;}
.y25_c00011{bottom:1271.805000px;}
.y20_c00011{bottom:1272.675000px;}
.y1d_c00011{bottom:1273.530000px;}
.y1f_c00011{bottom:1274.400000px;}
.y26_c00011{bottom:1276.125000px;}
.y21_c00011{bottom:1276.995000px;}
.y22_c00011{bottom:1277.850000px;}
.y23_c00011{bottom:1278.720000px;}
.y27_c00011{bottom:1279.590000px;}
.y24_c00011{bottom:1280.445000px;}
.ycd_c00011{bottom:1282.170000px;}
.ycc_c00011{bottom:1283.910000px;}
.y16_c00011{bottom:1289.955000px;}
.y15_c00011{bottom:1290.810000px;}
.y14_c00011{bottom:1293.405000px;}
.y18_c00011{bottom:1295.130000px;}
.y1a_c00011{bottom:1296.000000px;}
.y17_c00011{bottom:1296.870000px;}
.y1b_c00011{bottom:1301.190000px;}
.y19_c00011{bottom:1302.915000px;}
.y1c_c00011{bottom:1304.640000px;}
.y10_c00011{bottom:1317.600000px;}
.y13_c00011{bottom:1319.325000px;}
.y12_c00011{bottom:1321.050000px;}
.yf_c00011{bottom:1321.920000px;}
.ye_c00011{bottom:1322.790000px;}
.y11_c00011{bottom:1323.645000px;}
.y7_c00011{bottom:1335.750000px;}
.y8_c00011{bottom:1336.605000px;}
.y9_c00011{bottom:1339.200000px;}
.yd_c00011{bottom:1340.070000px;}
.ya_c00011{bottom:1340.925000px;}
.yc_c00011{bottom:1341.795000px;}
.yb_c00011{bottom:1353.030000px;}
.y5_c00011{bottom:1363.395000px;}
.y6_c00011{bottom:1365.990000px;}
.y2_c00011{bottom:1367.715000px;}
.y3_c00011{bottom:1369.440000px;}
.y1_c00011{bottom:1371.165000px;}
.y4_c00011{bottom:1372.035000px;}
.yd0_c00011{bottom:1429.920000px;}
.h5_c00011{height:3.110063px;}
.h21_c00011{height:5.399414px;}
.h3_c00011{height:6.209326px;}
.h8_c00011{height:9.340986px;}
.h6_c00011{height:12.418652px;}
.h4_c00011{height:15.550313px;}
.h9_c00011{height:18.681973px;}
.h2_c00011{height:21.759639px;}
.h17_c00011{height:24.891299px;}
.h24_c00011{height:27.968965px;}
.h20_c00011{height:31.100625px;}
.h22_c00011{height:34.232285px;}
.h1e_c00011{height:37.309951px;}
.h7_c00011{height:40.441611px;}
.h1d_c00011{height:43.519277px;}
.hf_c00011{height:46.650937px;}
.h12_c00011{height:49.782598px;}
.h1c_c00011{height:52.860264px;}
.h10_c00011{height:55.991924px;}
.h18_c00011{height:59.069590px;}
.h1f_c00011{height:62.201250px;}
.h16_c00011{height:65.332910px;}
.h25_c00011{height:68.410576px;}
.h1a_c00011{height:71.542236px;}
.h15_c00011{height:74.619902px;}
.h19_c00011{height:77.751563px;}
.h11_c00011{height:80.883223px;}
.h1b_c00011{height:83.960889px;}
.h14_c00011{height:87.092549px;}
.h13_c00011{height:90.170215px;}
.hd_c00011{height:93.301875px;}
.h23_c00011{height:96.433535px;}
.hc_c00011{height:99.511201px;}
.ha_c00011{height:102.642861px;}
.hb_c00011{height:105.720527px;}
.he_c00011{height:108.852188px;}
.h1_c00011{height:1503.000000px;}
.h0_c00011{height:1503.360000px;}
.w1_c00011{width:1076.250000px;}
.w0_c00011{width:1076.550000px;}
.x0_c00011{left:0.000000px;}
.xc1_c00011{left:49.245000px;}
.xc0_c00011{left:128.730000px;}
.xbc_c00011{left:139.965000px;}
.xbe_c00011{left:141.690000px;}
.xbd_c00011{left:144.285000px;}
.xbf_c00011{left:155.520000px;}
.x1_c00011{left:203.040000px;}
.x22_c00011{left:213.405000px;}
.x72_c00011{left:215.130000px;}
.x73_c00011{left:220.320000px;}
.xe_c00011{left:223.770000px;}
.x7e_c00011{left:225.510000px;}
.xb1_c00011{left:227.235000px;}
.xb6_c00011{left:228.960000px;}
.x6c_c00011{left:241.920000px;}
.x65_c00011{left:244.515000px;}
.xb7_c00011{left:246.240000px;}
.x4b_c00011{left:249.690000px;}
.x7f_c00011{left:251.430000px;}
.x53_c00011{left:253.155000px;}
.x18_c00011{left:266.115000px;}
.x23_c00011{left:269.565000px;}
.x5c_c00011{left:273.885000px;}
.x19_c00011{left:279.930000px;}
.x9d_c00011{left:281.670000px;}
.x8f_c00011{left:284.250000px;}
.xb8_c00011{left:285.990000px;}
.x96_c00011{left:287.715000px;}
.x3c_c00011{left:291.165000px;}
.x2e_c00011{left:293.760000px;}
.x44_c00011{left:296.355000px;}
.x74_c00011{left:298.950000px;}
.xad_c00011{left:304.125000px;}
.x2f_c00011{left:306.720000px;}
.x54_c00011{left:309.315000px;}
.x87_c00011{left:311.910000px;}
.xb2_c00011{left:315.360000px;}
.x55_c00011{left:318.810000px;}
.x88_c00011{left:325.725000px;}
.xf_c00011{left:328.320000px;}
.x1a_c00011{left:330.045000px;}
.x5d_c00011{left:338.685000px;}
.x90_c00011{left:342.150000px;}
.x5e_c00011{left:349.920000px;}
.x45_c00011{left:355.965000px;}
.x3d_c00011{left:358.560000px;}
.x80_c00011{left:361.155000px;}
.x24_c00011{left:362.880000px;}
.x9e_c00011{left:367.200000px;}
.x97_c00011{left:368.925000px;}
.x75_c00011{left:370.650000px;}
.x81_c00011{left:373.245000px;}
.xa7_c00011{left:374.970000px;}
.x25_c00011{left:377.565000px;}
.x46_c00011{left:381.030000px;}
.x89_c00011{left:382.755000px;}
.x66_c00011{left:386.205000px;}
.x2_c00011{left:387.930000px;}
.x30_c00011{left:392.250000px;}
.xb9_c00011{left:393.990000px;}
.x67_c00011{left:397.440000px;}
.x6d_c00011{left:404.355000px;}
.x5f_c00011{left:406.950000px;}
.x26_c00011{left:408.675000px;}
.x8a_c00011{left:410.400000px;}
.x82_c00011{left:419.040000px;}
.x4c_c00011{left:420.765000px;}
.x10_c00011{left:422.490000px;}
.x31_c00011{left:424.230000px;}
.x1b_c00011{left:430.275000px;}
.x3_c00011{left:436.320000px;}
.x56_c00011{left:441.510000px;}
.x1c_c00011{left:443.235000px;}
.x9f_c00011{left:446.685000px;}
.x32_c00011{left:448.410000px;}
.x6e_c00011{left:451.875000px;}
.x83_c00011{left:457.920000px;}
.x4_c00011{left:459.645000px;}
.x27_c00011{left:461.370000px;}
.x4d_c00011{left:468.285000px;}
.x57_c00011{left:470.880000px;}
.x11_c00011{left:475.200000px;}
.xa3_c00011{left:483.840000px;}
.x28_c00011{left:486.435000px;}
.x33_c00011{left:494.205000px;}
.x98_c00011{left:499.395000px;}
.x8b_c00011{left:501.120000px;}
.x6f_c00011{left:502.845000px;}
.x91_c00011{left:506.310000px;}
.x76_c00011{left:508.035000px;}
.xa4_c00011{left:509.760000px;}
.x5_c00011{left:513.210000px;}
.xa0_c00011{left:516.675000px;}
.x4e_c00011{left:518.400000px;}
.x60_c00011{left:520.125000px;}
.x1d_c00011{left:521.850000px;}
.x8c_c00011{left:526.170000px;}
.xa1_c00011{left:530.490000px;}
.xa8_c00011{left:533.955000px;}
.x34_c00011{left:538.275000px;}
.x12_c00011{left:540.000000px;}
.xae_c00011{left:549.510000px;}
.x77_c00011{left:551.235000px;}
.x78_c00011{left:553.830000px;}
.x1e_c00011{left:559.005000px;}
.x58_c00011{left:564.195000px;}
.x13_c00011{left:568.515000px;}
.xa9_c00011{left:576.285000px;}
.x70_c00011{left:578.010000px;}
.x6_c00011{left:580.605000px;}
.x3e_c00011{left:583.200000px;}
.x99_c00011{left:586.650000px;}
.x35_c00011{left:590.115000px;}
.x7_c00011{left:592.710000px;}
.x84_c00011{left:594.435000px;}
.x29_c00011{left:597.885000px;}
.x14_c00011{left:599.610000px;}
.xaf_c00011{left:601.350000px;}
.xaa_c00011{left:609.120000px;}
.x47_c00011{left:612.570000px;}
.x61_c00011{left:614.310000px;}
.x9a_c00011{left:616.035000px;}
.x59_c00011{left:618.630000px;}
.x3f_c00011{left:623.805000px;}
.xb3_c00011{left:627.270000px;}
.x2a_c00011{left:628.995000px;}
.x92_c00011{left:630.720000px;}
.x79_c00011{left:633.315000px;}
.x4f_c00011{left:635.040000px;}
.xb0_c00011{left:637.635000px;}
.xa5_c00011{left:640.230000px;}
.x8_c00011{left:642.810000px;}
.x9b_c00011{left:648.870000px;}
.x48_c00011{left:652.320000px;}
.x8d_c00011{left:654.045000px;}
.x9_c00011{left:658.365000px;}
.xa2_c00011{left:661.830000px;}
.x1f_c00011{left:664.410000px;}
.x68_c00011{left:669.600000px;}
.x36_c00011{left:672.195000px;}
.x7a_c00011{left:673.920000px;}
.x69_c00011{left:675.645000px;}
.x7b_c00011{left:684.285000px;}
.xba_c00011{left:686.010000px;}
.x15_c00011{left:690.330000px;}
.x5a_c00011{left:693.795000px;}
.x16_c00011{left:698.115000px;}
.xa_c00011{left:700.710000px;}
.x37_c00011{left:703.290000px;}
.x8e_c00011{left:706.755000px;}
.x40_c00011{left:708.480000px;}
.x85_c00011{left:711.075000px;}
.x62_c00011{left:717.990000px;}
.x20_c00011{left:720.570000px;}
.x93_c00011{left:725.760000px;}
.x9c_c00011{left:729.210000px;}
.xab_c00011{left:730.950000px;}
.x2b_c00011{left:733.530000px;}
.x49_c00011{left:735.270000px;}
.x41_c00011{left:742.170000px;}
.x86_c00011{left:744.765000px;}
.xb_c00011{left:748.230000px;}
.x38_c00011{left:752.550000px;}
.x42_c00011{left:758.595000px;}
.x7c_c00011{left:760.320000px;}
.x50_c00011{left:764.640000px;}
.x63_c00011{left:766.365000px;}
.xc_c00011{left:768.090000px;}
.x2c_c00011{left:773.280000px;}
.x6a_c00011{left:775.005000px;}
.x21_c00011{left:785.370000px;}
.x51_c00011{left:787.110000px;}
.xac_c00011{left:794.010000px;}
.x17_c00011{left:795.750000px;}
.x6b_c00011{left:802.650000px;}
.xd_c00011{left:807.840000px;}
.x7d_c00011{left:815.610000px;}
.x39_c00011{left:818.205000px;}
.x52_c00011{left:823.395000px;}
.xa6_c00011{left:825.120000px;}
.x94_c00011{left:827.715000px;}
.x3a_c00011{left:832.035000px;}
.x71_c00011{left:833.760000px;}
.x43_c00011{left:835.485000px;}
.xb4_c00011{left:841.530000px;}
.x2d_c00011{left:843.270000px;}
.xbb_c00011{left:847.590000px;}
.x3b_c00011{left:852.765000px;}
.x64_c00011{left:855.360000px;}
.xb5_c00011{left:864.000000px;}
.x4a_c00011{left:867.450000px;}
.x95_c00011{left:873.510000px;}
.x5b_c00011{left:875.235000px;}
.xc2_c00011{left:925.350000px;}
.xc3_c00011{left:952.995000px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls1_c00011{letter-spacing:0.000000pt;}
.ls0_c00011{letter-spacing:121.210667pt;}
.ws0_c00011{word-spacing:0.000000pt;}
.fs3_c00011{font-size:3.072000pt;}
.fs1f_c00011{font-size:5.333333pt;}
.fs1_c00011{font-size:6.133333pt;}
.fs6_c00011{font-size:9.226667pt;}
.fs4_c00011{font-size:12.266667pt;}
.fs2_c00011{font-size:15.360000pt;}
.fs7_c00011{font-size:18.453333pt;}
.fs0_c00011{font-size:21.493333pt;}
.fs15_c00011{font-size:24.586667pt;}
.fs22_c00011{font-size:27.626667pt;}
.fs1e_c00011{font-size:30.720000pt;}
.fs20_c00011{font-size:33.813333pt;}
.fs1c_c00011{font-size:36.853333pt;}
.fs5_c00011{font-size:39.946667pt;}
.fs1b_c00011{font-size:42.986667pt;}
.fsd_c00011{font-size:46.080000pt;}
.fs10_c00011{font-size:49.173333pt;}
.fs1a_c00011{font-size:52.213333pt;}
.fse_c00011{font-size:55.306667pt;}
.fs16_c00011{font-size:58.346667pt;}
.fs1d_c00011{font-size:61.440000pt;}
.fs14_c00011{font-size:64.533333pt;}
.fs23_c00011{font-size:67.573333pt;}
.fs18_c00011{font-size:70.666667pt;}
.fs13_c00011{font-size:73.706667pt;}
.fs17_c00011{font-size:76.800000pt;}
.fsf_c00011{font-size:79.893333pt;}
.fs19_c00011{font-size:82.933333pt;}
.fs12_c00011{font-size:86.026667pt;}
.fs11_c00011{font-size:89.066667pt;}
.fsb_c00011{font-size:92.160000pt;}
.fs21_c00011{font-size:95.253333pt;}
.fsa_c00011{font-size:98.293333pt;}
.fs8_c00011{font-size:101.386667pt;}
.fs9_c00011{font-size:104.426667pt;}
.fsc_c00011{font-size:107.520000pt;}
.y0_c00011{bottom:0.000000pt;}
.yc7_c00011{bottom:729.600000pt;}
.yc5_c00011{bottom:731.906667pt;}
.yc6_c00011{bottom:733.440000pt;}
.yc8_c00011{bottom:734.213333pt;}
.ycb_c00011{bottom:746.493333pt;}
.yca_c00011{bottom:748.026667pt;}
.yc9_c00011{bottom:749.573333pt;}
.ybc_c00011{bottom:751.106667pt;}
.ybe_c00011{bottom:751.866667pt;}
.yc0_c00011{bottom:752.640000pt;}
.yba_c00011{bottom:753.413333pt;}
.yc2_c00011{bottom:754.173333pt;}
.yc1_c00011{bottom:754.946667pt;}
.ybf_c00011{bottom:755.706667pt;}
.ybb_c00011{bottom:756.480000pt;}
.yc3_c00011{bottom:757.253333pt;}
.ybd_c00011{bottom:758.786667pt;}
.yb0_c00011{bottom:769.533333pt;}
.yc4_c00011{bottom:770.306667pt;}
.yb2_c00011{bottom:771.840000pt;}
.yb3_c00011{bottom:773.373333pt;}
.yb4_c00011{bottom:774.146667pt;}
.yb9_c00011{bottom:774.906667pt;}
.yb5_c00011{bottom:775.680000pt;}
.yb6_c00011{bottom:776.453333pt;}
.yb1_c00011{bottom:779.520000pt;}
.yb8_c00011{bottom:781.053333pt;}
.yb7_c00011{bottom:781.826667pt;}
.ya5_c00011{bottom:794.106667pt;}
.ya7_c00011{bottom:794.880000pt;}
.ya8_c00011{bottom:795.653333pt;}
.ya9_c00011{bottom:796.413333pt;}
.yab_c00011{bottom:797.186667pt;}
.yaf_c00011{bottom:800.253333pt;}
.ya6_c00011{bottom:801.026667pt;}
.yae_c00011{bottom:801.786667pt;}
.yaa_c00011{bottom:803.333333pt;}
.yad_c00011{bottom:804.093333pt;}
.yac_c00011{bottom:818.693333pt;}
.ya1_c00011{bottom:819.453333pt;}
.y9e_c00011{bottom:820.986667pt;}
.ya4_c00011{bottom:821.760000pt;}
.y9d_c00011{bottom:822.533333pt;}
.y9c_c00011{bottom:823.293333pt;}
.y9f_c00011{bottom:824.066667pt;}
.ya2_c00011{bottom:824.826667pt;}
.ya3_c00011{bottom:825.600000pt;}
.ya0_c00011{bottom:826.373333pt;}
.y96_c00011{bottom:839.426667pt;}
.y97_c00011{bottom:840.960000pt;}
.y95_c00011{bottom:841.733333pt;}
.y9b_c00011{bottom:843.266667pt;}
.y9a_c00011{bottom:844.800000pt;}
.y94_c00011{bottom:845.573333pt;}
.y98_c00011{bottom:847.106667pt;}
.y99_c00011{bottom:847.866667pt;}
.y90_c00011{bottom:859.386667pt;}
.y8d_c00011{bottom:861.693333pt;}
.y8f_c00011{bottom:862.466667pt;}
.y92_c00011{bottom:863.226667pt;}
.y93_c00011{bottom:864.000000pt;}
.y8e_c00011{bottom:867.066667pt;}
.y91_c00011{bottom:867.840000pt;}
.y85_c00011{bottom:882.426667pt;}
.y86_c00011{bottom:883.973333pt;}
.y89_c00011{bottom:885.506667pt;}
.y87_c00011{bottom:887.040000pt;}
.y88_c00011{bottom:888.573333pt;}
.y8a_c00011{bottom:893.186667pt;}
.y8b_c00011{bottom:894.720000pt;}
.y8c_c00011{bottom:901.626667pt;}
.y7a_c00011{bottom:905.466667pt;}
.y7c_c00011{bottom:906.240000pt;}
.y80_c00011{bottom:907.773333pt;}
.y7d_c00011{bottom:908.546667pt;}
.y83_c00011{bottom:909.306667pt;}
.y7b_c00011{bottom:910.080000pt;}
.y79_c00011{bottom:911.613333pt;}
.y7e_c00011{bottom:912.386667pt;}
.y7f_c00011{bottom:913.920000pt;}
.y81_c00011{bottom:914.693333pt;}
.y82_c00011{bottom:915.453333pt;}
.y84_c00011{bottom:916.986667pt;}
.yd1_c00011{bottom:926.213333pt;}
.y71_c00011{bottom:927.746667pt;}
.y73_c00011{bottom:928.506667pt;}
.y6f_c00011{bottom:930.053333pt;}
.y72_c00011{bottom:930.813333pt;}
.y77_c00011{bottom:932.346667pt;}
.y78_c00011{bottom:933.120000pt;}
.y70_c00011{bottom:933.893333pt;}
.y74_c00011{bottom:935.426667pt;}
.y75_c00011{bottom:936.960000pt;}
.y76_c00011{bottom:937.733333pt;}
.y68_c00011{bottom:946.946667pt;}
.y67_c00011{bottom:950.013333pt;}
.y66_c00011{bottom:950.786667pt;}
.y69_c00011{bottom:952.320000pt;}
.y6a_c00011{bottom:953.093333pt;}
.y6c_c00011{bottom:953.853333pt;}
.y6d_c00011{bottom:956.160000pt;}
.y6e_c00011{bottom:956.933333pt;}
.y6b_c00011{bottom:959.226667pt;}
.y65_c00011{bottom:964.613333pt;}
.y5f_c00011{bottom:972.293333pt;}
.y5d_c00011{bottom:973.826667pt;}
.y62_c00011{bottom:974.586667pt;}
.y61_c00011{bottom:975.360000pt;}
.y5e_c00011{bottom:976.133333pt;}
.y64_c00011{bottom:976.893333pt;}
.y60_c00011{bottom:977.666667pt;}
.y63_c00011{bottom:979.973333pt;}
.y55_c00011{bottom:993.786667pt;}
.y56_c00011{bottom:996.093333pt;}
.y57_c00011{bottom:997.626667pt;}
.y59_c00011{bottom:998.400000pt;}
.y5b_c00011{bottom:999.933333pt;}
.y54_c00011{bottom:1000.706667pt;}
.y58_c00011{bottom:1002.240000pt;}
.y5a_c00011{bottom:1008.386667pt;}
.y5c_c00011{bottom:1014.533333pt;}
.y4a_c00011{bottom:1015.293333pt;}
.y4b_c00011{bottom:1016.066667pt;}
.y4f_c00011{bottom:1016.826667pt;}
.y4d_c00011{bottom:1017.600000pt;}
.y51_c00011{bottom:1019.133333pt;}
.y4c_c00011{bottom:1019.906667pt;}
.y52_c00011{bottom:1021.440000pt;}
.y4e_c00011{bottom:1023.746667pt;}
.y53_c00011{bottom:1024.506667pt;}
.y50_c00011{bottom:1026.053333pt;}
.y44_c00011{bottom:1039.106667pt;}
.y46_c00011{bottom:1041.413333pt;}
.y45_c00011{bottom:1042.946667pt;}
.y49_c00011{bottom:1043.706667pt;}
.y43_c00011{bottom:1044.480000pt;}
.y48_c00011{bottom:1047.546667pt;}
.y47_c00011{bottom:1048.320000pt;}
.y3c_c00011{bottom:1061.373333pt;}
.y3d_c00011{bottom:1062.146667pt;}
.y3f_c00011{bottom:1062.906667pt;}
.y40_c00011{bottom:1063.680000pt;}
.y3e_c00011{bottom:1064.453333pt;}
.y41_c00011{bottom:1065.213333pt;}
.y3a_c00011{bottom:1065.986667pt;}
.y3b_c00011{bottom:1066.746667pt;}
.y42_c00011{bottom:1071.360000pt;}
.y35_c00011{bottom:1082.106667pt;}
.y33_c00011{bottom:1082.880000pt;}
.y36_c00011{bottom:1085.186667pt;}
.y37_c00011{bottom:1085.946667pt;}
.y38_c00011{bottom:1086.720000pt;}
.y32_c00011{bottom:1087.493333pt;}
.y31_c00011{bottom:1088.253333pt;}
.y34_c00011{bottom:1090.560000pt;}
.y39_c00011{bottom:1098.240000pt;}
.y28_c00011{bottom:1102.853333pt;}
.y29_c00011{bottom:1104.386667pt;}
.y2c_c00011{bottom:1106.693333pt;}
.y2b_c00011{bottom:1108.226667pt;}
.y2d_c00011{bottom:1108.986667pt;}
.y2a_c00011{bottom:1112.066667pt;}
.y30_c00011{bottom:1114.373333pt;}
.y2f_c00011{bottom:1115.906667pt;}
.ycf_c00011{bottom:1120.506667pt;}
.yce_c00011{bottom:1125.893333pt;}
.y2e_c00011{bottom:1128.960000pt;}
.y1e_c00011{bottom:1129.733333pt;}
.y25_c00011{bottom:1130.493333pt;}
.y20_c00011{bottom:1131.266667pt;}
.y1d_c00011{bottom:1132.026667pt;}
.y1f_c00011{bottom:1132.800000pt;}
.y26_c00011{bottom:1134.333333pt;}
.y21_c00011{bottom:1135.106667pt;}
.y22_c00011{bottom:1135.866667pt;}
.y23_c00011{bottom:1136.640000pt;}
.y27_c00011{bottom:1137.413333pt;}
.y24_c00011{bottom:1138.173333pt;}
.ycd_c00011{bottom:1139.706667pt;}
.ycc_c00011{bottom:1141.253333pt;}
.y16_c00011{bottom:1146.626667pt;}
.y15_c00011{bottom:1147.386667pt;}
.y14_c00011{bottom:1149.693333pt;}
.y18_c00011{bottom:1151.226667pt;}
.y1a_c00011{bottom:1152.000000pt;}
.y17_c00011{bottom:1152.773333pt;}
.y1b_c00011{bottom:1156.613333pt;}
.y19_c00011{bottom:1158.146667pt;}
.y1c_c00011{bottom:1159.680000pt;}
.y10_c00011{bottom:1171.200000pt;}
.y13_c00011{bottom:1172.733333pt;}
.y12_c00011{bottom:1174.266667pt;}
.yf_c00011{bottom:1175.040000pt;}
.ye_c00011{bottom:1175.813333pt;}
.y11_c00011{bottom:1176.573333pt;}
.y7_c00011{bottom:1187.333333pt;}
.y8_c00011{bottom:1188.093333pt;}
.y9_c00011{bottom:1190.400000pt;}
.yd_c00011{bottom:1191.173333pt;}
.ya_c00011{bottom:1191.933333pt;}
.yc_c00011{bottom:1192.706667pt;}
.yb_c00011{bottom:1202.693333pt;}
.y5_c00011{bottom:1211.906667pt;}
.y6_c00011{bottom:1214.213333pt;}
.y2_c00011{bottom:1215.746667pt;}
.y3_c00011{bottom:1217.280000pt;}
.y1_c00011{bottom:1218.813333pt;}
.y4_c00011{bottom:1219.586667pt;}
.yd0_c00011{bottom:1271.040000pt;}
.h5_c00011{height:2.764500pt;}
.h21_c00011{height:4.799479pt;}
.h3_c00011{height:5.519401pt;}
.h8_c00011{height:8.303099pt;}
.h6_c00011{height:11.038802pt;}
.h4_c00011{height:13.822500pt;}
.h9_c00011{height:16.606198pt;}
.h2_c00011{height:19.341901pt;}
.h17_c00011{height:22.125599pt;}
.h24_c00011{height:24.861302pt;}
.h20_c00011{height:27.645000pt;}
.h22_c00011{height:30.428698pt;}
.h1e_c00011{height:33.164401pt;}
.h7_c00011{height:35.948099pt;}
.h1d_c00011{height:38.683802pt;}
.hf_c00011{height:41.467500pt;}
.h12_c00011{height:44.251198pt;}
.h1c_c00011{height:46.986901pt;}
.h10_c00011{height:49.770599pt;}
.h18_c00011{height:52.506302pt;}
.h1f_c00011{height:55.290000pt;}
.h16_c00011{height:58.073698pt;}
.h25_c00011{height:60.809401pt;}
.h1a_c00011{height:63.593099pt;}
.h15_c00011{height:66.328802pt;}
.h19_c00011{height:69.112500pt;}
.h11_c00011{height:71.896198pt;}
.h1b_c00011{height:74.631901pt;}
.h14_c00011{height:77.415599pt;}
.h13_c00011{height:80.151302pt;}
.hd_c00011{height:82.935000pt;}
.h23_c00011{height:85.718698pt;}
.hc_c00011{height:88.454401pt;}
.ha_c00011{height:91.238099pt;}
.hb_c00011{height:93.973802pt;}
.he_c00011{height:96.757500pt;}
.h1_c00011{height:1336.000000pt;}
.h0_c00011{height:1336.320000pt;}
.w1_c00011{width:956.666667pt;}
.w0_c00011{width:956.933333pt;}
.x0_c00011{left:0.000000pt;}
.xc1_c00011{left:43.773333pt;}
.xc0_c00011{left:114.426667pt;}
.xbc_c00011{left:124.413333pt;}
.xbe_c00011{left:125.946667pt;}
.xbd_c00011{left:128.253333pt;}
.xbf_c00011{left:138.240000pt;}
.x1_c00011{left:180.480000pt;}
.x22_c00011{left:189.693333pt;}
.x72_c00011{left:191.226667pt;}
.x73_c00011{left:195.840000pt;}
.xe_c00011{left:198.906667pt;}
.x7e_c00011{left:200.453333pt;}
.xb1_c00011{left:201.986667pt;}
.xb6_c00011{left:203.520000pt;}
.x6c_c00011{left:215.040000pt;}
.x65_c00011{left:217.346667pt;}
.xb7_c00011{left:218.880000pt;}
.x4b_c00011{left:221.946667pt;}
.x7f_c00011{left:223.493333pt;}
.x53_c00011{left:225.026667pt;}
.x18_c00011{left:236.546667pt;}
.x23_c00011{left:239.613333pt;}
.x5c_c00011{left:243.453333pt;}
.x19_c00011{left:248.826667pt;}
.x9d_c00011{left:250.373333pt;}
.x8f_c00011{left:252.666667pt;}
.xb8_c00011{left:254.213333pt;}
.x96_c00011{left:255.746667pt;}
.x3c_c00011{left:258.813333pt;}
.x2e_c00011{left:261.120000pt;}
.x44_c00011{left:263.426667pt;}
.x74_c00011{left:265.733333pt;}
.xad_c00011{left:270.333333pt;}
.x2f_c00011{left:272.640000pt;}
.x54_c00011{left:274.946667pt;}
.x87_c00011{left:277.253333pt;}
.xb2_c00011{left:280.320000pt;}
.x55_c00011{left:283.386667pt;}
.x88_c00011{left:289.533333pt;}
.xf_c00011{left:291.840000pt;}
.x1a_c00011{left:293.373333pt;}
.x5d_c00011{left:301.053333pt;}
.x90_c00011{left:304.133333pt;}
.x5e_c00011{left:311.040000pt;}
.x45_c00011{left:316.413333pt;}
.x3d_c00011{left:318.720000pt;}
.x80_c00011{left:321.026667pt;}
.x24_c00011{left:322.560000pt;}
.x9e_c00011{left:326.400000pt;}
.x97_c00011{left:327.933333pt;}
.x75_c00011{left:329.466667pt;}
.x81_c00011{left:331.773333pt;}
.xa7_c00011{left:333.306667pt;}
.x25_c00011{left:335.613333pt;}
.x46_c00011{left:338.693333pt;}
.x89_c00011{left:340.226667pt;}
.x66_c00011{left:343.293333pt;}
.x2_c00011{left:344.826667pt;}
.x30_c00011{left:348.666667pt;}
.xb9_c00011{left:350.213333pt;}
.x67_c00011{left:353.280000pt;}
.x6d_c00011{left:359.426667pt;}
.x5f_c00011{left:361.733333pt;}
.x26_c00011{left:363.266667pt;}
.x8a_c00011{left:364.800000pt;}
.x82_c00011{left:372.480000pt;}
.x4c_c00011{left:374.013333pt;}
.x10_c00011{left:375.546667pt;}
.x31_c00011{left:377.093333pt;}
.x1b_c00011{left:382.466667pt;}
.x3_c00011{left:387.840000pt;}
.x56_c00011{left:392.453333pt;}
.x1c_c00011{left:393.986667pt;}
.x9f_c00011{left:397.053333pt;}
.x32_c00011{left:398.586667pt;}
.x6e_c00011{left:401.666667pt;}
.x83_c00011{left:407.040000pt;}
.x4_c00011{left:408.573333pt;}
.x27_c00011{left:410.106667pt;}
.x4d_c00011{left:416.253333pt;}
.x57_c00011{left:418.560000pt;}
.x11_c00011{left:422.400000pt;}
.xa3_c00011{left:430.080000pt;}
.x28_c00011{left:432.386667pt;}
.x33_c00011{left:439.293333pt;}
.x98_c00011{left:443.906667pt;}
.x8b_c00011{left:445.440000pt;}
.x6f_c00011{left:446.973333pt;}
.x91_c00011{left:450.053333pt;}
.x76_c00011{left:451.586667pt;}
.xa4_c00011{left:453.120000pt;}
.x5_c00011{left:456.186667pt;}
.xa0_c00011{left:459.266667pt;}
.x4e_c00011{left:460.800000pt;}
.x60_c00011{left:462.333333pt;}
.x1d_c00011{left:463.866667pt;}
.x8c_c00011{left:467.706667pt;}
.xa1_c00011{left:471.546667pt;}
.xa8_c00011{left:474.626667pt;}
.x34_c00011{left:478.466667pt;}
.x12_c00011{left:480.000000pt;}
.xae_c00011{left:488.453333pt;}
.x77_c00011{left:489.986667pt;}
.x78_c00011{left:492.293333pt;}
.x1e_c00011{left:496.893333pt;}
.x58_c00011{left:501.506667pt;}
.x13_c00011{left:505.346667pt;}
.xa9_c00011{left:512.253333pt;}
.x70_c00011{left:513.786667pt;}
.x6_c00011{left:516.093333pt;}
.x3e_c00011{left:518.400000pt;}
.x99_c00011{left:521.466667pt;}
.x35_c00011{left:524.546667pt;}
.x7_c00011{left:526.853333pt;}
.x84_c00011{left:528.386667pt;}
.x29_c00011{left:531.453333pt;}
.x14_c00011{left:532.986667pt;}
.xaf_c00011{left:534.533333pt;}
.xaa_c00011{left:541.440000pt;}
.x47_c00011{left:544.506667pt;}
.x61_c00011{left:546.053333pt;}
.x9a_c00011{left:547.586667pt;}
.x59_c00011{left:549.893333pt;}
.x3f_c00011{left:554.493333pt;}
.xb3_c00011{left:557.573333pt;}
.x2a_c00011{left:559.106667pt;}
.x92_c00011{left:560.640000pt;}
.x79_c00011{left:562.946667pt;}
.x4f_c00011{left:564.480000pt;}
.xb0_c00011{left:566.786667pt;}
.xa5_c00011{left:569.093333pt;}
.x8_c00011{left:571.386667pt;}
.x9b_c00011{left:576.773333pt;}
.x48_c00011{left:579.840000pt;}
.x8d_c00011{left:581.373333pt;}
.x9_c00011{left:585.213333pt;}
.xa2_c00011{left:588.293333pt;}
.x1f_c00011{left:590.586667pt;}
.x68_c00011{left:595.200000pt;}
.x36_c00011{left:597.506667pt;}
.x7a_c00011{left:599.040000pt;}
.x69_c00011{left:600.573333pt;}
.x7b_c00011{left:608.253333pt;}
.xba_c00011{left:609.786667pt;}
.x15_c00011{left:613.626667pt;}
.x5a_c00011{left:616.706667pt;}
.x16_c00011{left:620.546667pt;}
.xa_c00011{left:622.853333pt;}
.x37_c00011{left:625.146667pt;}
.x8e_c00011{left:628.226667pt;}
.x40_c00011{left:629.760000pt;}
.x85_c00011{left:632.066667pt;}
.x62_c00011{left:638.213333pt;}
.x20_c00011{left:640.506667pt;}
.x93_c00011{left:645.120000pt;}
.x9c_c00011{left:648.186667pt;}
.xab_c00011{left:649.733333pt;}
.x2b_c00011{left:652.026667pt;}
.x49_c00011{left:653.573333pt;}
.x41_c00011{left:659.706667pt;}
.x86_c00011{left:662.013333pt;}
.xb_c00011{left:665.093333pt;}
.x38_c00011{left:668.933333pt;}
.x42_c00011{left:674.306667pt;}
.x7c_c00011{left:675.840000pt;}
.x50_c00011{left:679.680000pt;}
.x63_c00011{left:681.213333pt;}
.xc_c00011{left:682.746667pt;}
.x2c_c00011{left:687.360000pt;}
.x6a_c00011{left:688.893333pt;}
.x21_c00011{left:698.106667pt;}
.x51_c00011{left:699.653333pt;}
.xac_c00011{left:705.786667pt;}
.x17_c00011{left:707.333333pt;}
.x6b_c00011{left:713.466667pt;}
.xd_c00011{left:718.080000pt;}
.x7d_c00011{left:724.986667pt;}
.x39_c00011{left:727.293333pt;}
.x52_c00011{left:731.906667pt;}
.xa6_c00011{left:733.440000pt;}
.x94_c00011{left:735.746667pt;}
.x3a_c00011{left:739.586667pt;}
.x71_c00011{left:741.120000pt;}
.x43_c00011{left:742.653333pt;}
.xb4_c00011{left:748.026667pt;}
.x2d_c00011{left:749.573333pt;}
.xbb_c00011{left:753.413333pt;}
.x3b_c00011{left:758.013333pt;}
.x64_c00011{left:760.320000pt;}
.xb5_c00011{left:768.000000pt;}
.x4a_c00011{left:771.066667pt;}
.x95_c00011{left:776.453333pt;}
.x5b_c00011{left:777.986667pt;}
.xc2_c00011{left:822.533333pt;}
.xc3_c00011{left:847.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_472fa1a88ac64799cb9b1a12.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.109863;font-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_c00012{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m35_c00012{transform:matrix(0.064825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064825,0.000000,0.000000,0.250000,0,0);}
.m25_c00012{transform:matrix(0.083800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083800,0.000000,0.000000,0.250000,0,0);}
.m47_c00012{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m1f_c00012{transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);}
.m44_c00012{transform:matrix(0.120475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120475,0.000000,0.000000,0.250000,0,0);}
.m3c_c00012{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1_c00012{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m57_c00012{transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);}
.m5d_c00012{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.m1c_c00012{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m53_c00012{transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);}
.m5b_c00012{transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);}
.m3d_c00012{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.m8_c00012{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m52_c00012{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m37_c00012{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.m4e_c00012{transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);}
.m54_c00012{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m38_c00012{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);}
.m51_c00012{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m30_c00012{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m4d_c00012{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m3a_c00012{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m4_c00012{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m3f_c00012{transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);}
.m29_c00012{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.mb_c00012{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);}
.m39_c00012{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m59_c00012{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);}
.m7_c00012{transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);}
.m56_c00012{transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);}
.m58_c00012{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);}
.m3_c00012{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);}
.ma_c00012{transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);}
.m34_c00012{transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);}
.m46_c00012{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m50_c00012{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);}
.m2f_c00012{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);}
.m14_c00012{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);}
.m5f_c00012{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00012{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);}
.m41_c00012{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);}
.m5e_c00012{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);}
.m12_c00012{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00012{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m43_c00012{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);}
.m13_c00012{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00012{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);}
.m26_c00012{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m23_c00012{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m31_c00012{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);}
.m40_c00012{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);}
.me_c00012{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00012{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m20_c00012{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m24_c00012{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00012{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);}
.m22_c00012{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m21_c00012{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);}
.md_c00012{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2_c00012{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m60_c00012{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);}
.m6_c00012{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00012{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10_c00012{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m63_c00012{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m16_c00012{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m9_c00012{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m32_c00012{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);}
.m5_c00012{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);}
.m1d_c00012{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);}
.m2a_c00012{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m0_c00012{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m62_c00012{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m42_c00012{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m11_c00012{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00012{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00012{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00012{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m27_c00012{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m49_c00012{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);}
.m61_c00012{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m15_c00012{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m45_c00012{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00012{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m33_c00012{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00012{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.m36_c00012{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00012{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m17_c00012{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00012{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m28_c00012{transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);}
.m48_c00012{transform:matrix(1.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.980000,0.000000,0.000000,0.250000,0,0);}
.m18_c00012{transform:matrix(2.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.235000,0.000000,0.000000,0.250000,0,0);}
.mc_c00012{transform:matrix(2.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.390000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00012{transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00012{transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);}
.m19_c00012{transform:matrix(5.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.472500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00012{transform:matrix(22.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(22.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(22.187500,0.000000,0.000000,0.250000,0,0);}
.v1_c00012{vertical-align:-3.480000px;}
.v0_c00012{vertical-align:0.000000px;}
.v3_c00012{vertical-align:3.420000px;}
.v2_c00012{vertical-align:6.960000px;}
.ls3_c00012{letter-spacing:0.000000px;}
.ls0_c00012{letter-spacing:89.880000px;}
.ls2_c00012{letter-spacing:135.148740px;}
.ls1_c00012{letter-spacing:227.822700px;}
.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;}
}
.ws1_c00012{word-spacing:0.000000px;}
.ws0_c00012{word-spacing:152.719740px;}
.fc0_c00012{color:transparent;}
.fs11_c00012{font-size:3.456000px;}
.fs24_c00012{font-size:6.000000px;}
.fs0_c00012{font-size:6.900000px;}
.fs10_c00012{font-size:10.380000px;}
.fs9_c00012{font-size:13.800000px;}
.fs12_c00012{font-size:17.280000px;}
.fs18_c00012{font-size:20.760000px;}
.fs1a_c00012{font-size:24.180000px;}
.fs1_c00012{font-size:27.660000px;}
.fs22_c00012{font-size:31.080000px;}
.fs2_c00012{font-size:34.560000px;}
.fs20_c00012{font-size:41.460000px;}
.fs19_c00012{font-size:44.940000px;}
.fs16_c00012{font-size:55.320000px;}
.fs15_c00012{font-size:58.740000px;}
.fs1f_c00012{font-size:65.640000px;}
.fs21_c00012{font-size:69.120000px;}
.fs14_c00012{font-size:72.600000px;}
.fs1b_c00012{font-size:76.020000px;}
.fs17_c00012{font-size:79.500000px;}
.fs13_c00012{font-size:82.920000px;}
.fsd_c00012{font-size:86.400000px;}
.fsa_c00012{font-size:89.880000px;}
.fs1c_c00012{font-size:93.300000px;}
.fse_c00012{font-size:96.780000px;}
.fs1d_c00012{font-size:103.680000px;}
.fs27_c00012{font-size:107.160000px;}
.fsc_c00012{font-size:110.580000px;}
.fs1e_c00012{font-size:114.060000px;}
.fsb_c00012{font-size:117.480000px;}
.fs23_c00012{font-size:120.960000px;}
.fsf_c00012{font-size:124.440000px;}
.fs5_c00012{font-size:127.860000px;}
.fs26_c00012{font-size:131.340000px;}
.fs25_c00012{font-size:134.760000px;}
.fs3_c00012{font-size:145.140000px;}
.fs4_c00012{font-size:162.420000px;}
.fs8_c00012{font-size:165.900000px;}
.fs28_c00012{font-size:172.800000px;}
.fs6_c00012{font-size:190.080000px;}
.fs7_c00012{font-size:210.840000px;}
.y0_c00012{bottom:0.000000px;}
.y64_c00012{bottom:194.400000px;}
.y66_c00012{bottom:196.995000px;}
.y63_c00012{bottom:197.850000px;}
.y62_c00012{bottom:200.445000px;}
.y65_c00012{bottom:202.170000px;}
.y5b_c00012{bottom:901.155000px;}
.y5d_c00012{bottom:902.880000px;}
.y5c_c00012{bottom:903.750000px;}
.y58_c00012{bottom:904.605000px;}
.y5a_c00012{bottom:908.070000px;}
.y59_c00012{bottom:908.925000px;}
.y57_c00012{bottom:914.970000px;}
.y55_c00012{bottom:916.710000px;}
.y56_c00012{bottom:917.565000px;}
.y52_c00012{bottom:921.030000px;}
.y54_c00012{bottom:927.930000px;}
.y53_c00012{bottom:928.800000px;}
.y51_c00012{bottom:940.035000px;}
.y4e_c00012{bottom:952.125000px;}
.y4f_c00012{bottom:952.995000px;}
.y4a_c00012{bottom:953.850000px;}
.y49_c00012{bottom:956.445000px;}
.y4c_c00012{bottom:959.040000px;}
.y4d_c00012{bottom:961.635000px;}
.y4b_c00012{bottom:962.490000px;}
.y48_c00012{bottom:963.360000px;}
.y50_c00012{bottom:965.955000px;}
.y47_c00012{bottom:986.685000px;}
.y46_c00012{bottom:989.280000px;}
.y45_c00012{bottom:991.005000px;}
.y43_c00012{bottom:993.600000px;}
.y41_c00012{bottom:996.195000px;}
.y42_c00012{bottom:997.920000px;}
.y44_c00012{bottom:998.790000px;}
.y40_c00012{bottom:1001.370000px;}
.y3f_c00012{bottom:1003.110000px;}
.y3c_c00012{bottom:1010.010000px;}
.y3e_c00012{bottom:1012.605000px;}
.y61_c00012{bottom:1013.475000px;}
.y3d_c00012{bottom:1016.925000px;}
.y3b_c00012{bottom:1017.795000px;}
.y3a_c00012{bottom:1018.650000px;}
.y38_c00012{bottom:1021.245000px;}
.y39_c00012{bottom:1022.115000px;}
.y36_c00012{bottom:1022.970000px;}
.y37_c00012{bottom:1024.710000px;}
.y35_c00012{bottom:1037.670000px;}
.y32_c00012{bottom:1039.395000px;}
.y31_c00012{bottom:1040.250000px;}
.y30_c00012{bottom:1042.845000px;}
.y33_c00012{bottom:1045.440000px;}
.y34_c00012{bottom:1048.035000px;}
.y60_c00012{bottom:1052.355000px;}
.y5f_c00012{bottom:1053.210000px;}
.y5e_c00012{bottom:1055.805000px;}
.y2f_c00012{bottom:1062.720000px;}
.y2e_c00012{bottom:1063.590000px;}
.y2d_c00012{bottom:1065.315000px;}
.y2b_c00012{bottom:1067.040000px;}
.y2a_c00012{bottom:1067.910000px;}
.y28_c00012{bottom:1068.765000px;}
.y2c_c00012{bottom:1071.360000px;}
.y27_c00012{bottom:1072.230000px;}
.y26_c00012{bottom:1074.810000px;}
.y29_c00012{bottom:1081.725000px;}
.y24_c00012{bottom:1087.770000px;}
.y25_c00012{bottom:1092.960000px;}
.y22_c00012{bottom:1093.830000px;}
.y20_c00012{bottom:1094.685000px;}
.y23_c00012{bottom:1095.555000px;}
.y1f_c00012{bottom:1096.410000px;}
.y1e_c00012{bottom:1097.280000px;}
.y21_c00012{bottom:1098.150000px;}
.y1a_c00012{bottom:1099.005000px;}
.y1d_c00012{bottom:1099.875000px;}
.y1c_c00012{bottom:1100.730000px;}
.y1b_c00012{bottom:1101.600000px;}
.y19_c00012{bottom:1116.285000px;}
.y18_c00012{bottom:1118.010000px;}
.y17_c00012{bottom:1119.750000px;}
.y15_c00012{bottom:1120.605000px;}
.y14_c00012{bottom:1121.475000px;}
.y16_c00012{bottom:1122.330000px;}
.y11_c00012{bottom:1123.200000px;}
.y13_c00012{bottom:1125.795000px;}
.y12_c00012{bottom:1127.520000px;}
.ye_c00012{bottom:1129.245000px;}
.yd_c00012{bottom:1130.115000px;}
.y10_c00012{bottom:1130.970000px;}
.yf_c00012{bottom:1131.840000px;}
.yc_c00012{bottom:1138.755000px;}
.yb_c00012{bottom:1158.630000px;}
.ya_c00012{bottom:1159.485000px;}
.y8_c00012{bottom:1162.080000px;}
.y4_c00012{bottom:1162.950000px;}
.y5_c00012{bottom:1163.805000px;}
.y9_c00012{bottom:1165.530000px;}
.y6_c00012{bottom:1169.850000px;}
.y7_c00012{bottom:1170.720000px;}
.y2_c00012{bottom:1283.910000px;}
.y1_c00012{bottom:1288.230000px;}
.y3_c00012{bottom:1391.910000px;}
.h13_c00012{height:3.110063px;}
.h27_c00012{height:5.399414px;}
.h2_c00012{height:6.209326px;}
.h12_c00012{height:9.340986px;}
.hb_c00012{height:12.418652px;}
.h14_c00012{height:15.550313px;}
.h1a_c00012{height:18.681973px;}
.h1c_c00012{height:21.759639px;}
.h3_c00012{height:24.891299px;}
.h25_c00012{height:27.968965px;}
.h4_c00012{height:31.100625px;}
.h23_c00012{height:37.309951px;}
.h20_c00012{height:38.060625px;}
.h1b_c00012{height:40.441611px;}
.h18_c00012{height:49.782598px;}
.h17_c00012{height:52.860264px;}
.h22_c00012{height:59.069590px;}
.h24_c00012{height:62.201250px;}
.h16_c00012{height:65.332910px;}
.h1d_c00012{height:68.410576px;}
.h19_c00012{height:71.542236px;}
.h15_c00012{height:74.619902px;}
.hf_c00012{height:77.751563px;}
.hc_c00012{height:80.883223px;}
.h1e_c00012{height:83.960889px;}
.h10_c00012{height:87.092549px;}
.h1f_c00012{height:93.301875px;}
.h2a_c00012{height:96.433535px;}
.he_c00012{height:99.511201px;}
.h21_c00012{height:102.642861px;}
.hd_c00012{height:105.720527px;}
.h26_c00012{height:108.852188px;}
.h11_c00012{height:111.983848px;}
.h7_c00012{height:115.061514px;}
.h29_c00012{height:118.193174px;}
.h28_c00012{height:121.270840px;}
.h5_c00012{height:130.611826px;}
.h6_c00012{height:146.162139px;}
.ha_c00012{height:149.293799px;}
.h2b_c00012{height:155.503125px;}
.h8_c00012{height:171.053437px;}
.h9_c00012{height:189.735410px;}
.h0_c00012{height:1515.450000px;}
.h1_c00012{height:1515.750000px;}
.w1_c00012{width:1065.000000px;}
.w0_c00012{width:1065.315000px;}
.x0_c00012{left:0.000000px;}
.xd_c00012{left:191.805000px;}
.x4_c00012{left:205.635000px;}
.x5a_c00012{left:208.230000px;}
.x17_c00012{left:213.405000px;}
.x36_c00012{left:218.595000px;}
.x26_c00012{left:222.045000px;}
.x27_c00012{left:223.770000px;}
.x18_c00012{left:228.960000px;}
.x1e_c00012{left:230.685000px;}
.x28_c00012{left:235.874325px;}
.x5_c00012{left:241.920000px;}
.xe_c00012{left:244.515000px;}
.x29_c00012{left:246.240000px;}
.x37_c00012{left:251.430000px;}
.x19_c00012{left:254.880000px;}
.x1f_c00012{left:260.070000px;}
.x38_c00012{left:268.710000px;}
.x3d_c00012{left:271.290000px;}
.x4e_c00012{left:273.885000px;}
.x2a_c00012{left:276.480000px;}
.x4f_c00012{left:281.670000px;}
.x5b_c00012{left:289.440000px;}
.x20_c00012{left:293.760000px;}
.xf_c00012{left:295.485000px;}
.x39_c00012{left:297.210000px;}
.x4d_c00012{left:310.170000px;}
.x50_c00012{left:312.765000px;}
.x2b_c00012{left:314.490000px;}
.x3e_c00012{left:326.595000px;}
.x6_c00012{left:331.770000px;}
.x2c_c00012{left:333.510000px;}
.x51_c00012{left:337.830000px;}
.x43_c00012{left:339.555000px;}
.x2d_c00012{left:341.280000px;}
.x2e_c00012{left:347.325000px;}
.x10_c00012{left:354.240000px;}
.x44_c00012{left:357.690000px;}
.x3f_c00012{left:362.010000px;}
.x45_c00012{left:367.200000px;}
.x7_c00012{left:369.795000px;}
.x11_c00012{left:383.610000px;}
.x5c_c00012{left:389.670000px;}
.x46_c00012{left:403.485000px;}
.x8_c00012{left:410.400000px;}
.x52_c00012{left:422.490000px;}
.x5d_c00012{left:424.230000px;}
.x2f_c00012{left:433.725000px;}
.x12_c00012{left:438.915000px;}
.x21_c00012{left:440.640000px;}
.x3a_c00012{left:443.235000px;}
.x53_c00012{left:450.150000px;}
.x9_c00012{left:454.470000px;}
.x49_c00012{left:466.560000px;}
.x1a_c00012{left:481.245000px;}
.x40_c00012{left:482.970000px;}
.x30_c00012{left:488.160000px;}
.x47_c00012{left:498.525000px;}
.x54_c00012{left:500.250000px;}
.x13_c00012{left:507.165000px;}
.x5e_c00012{left:509.760000px;}
.x4a_c00012{left:514.950000px;}
.x31_c00012{left:520.995000px;}
.x4b_c00012{left:529.635000px;}
.x5f_c00012{left:533.955000px;}
.x64_c00012{left:537.405000px;}
.x4c_c00012{left:545.190000px;}
.x32_c00012{left:554.685000px;}
.x33_c00012{left:571.110000px;}
.x22_c00012{left:577.155000px;}
.x48_c00012{left:579.750000px;}
.x1b_c00012{left:582.330000px;}
.x3b_c00012{left:585.795000px;}
.x41_c00012{left:589.245000px;}
.x23_c00012{left:601.350000px;}
.xa_c00012{left:607.395000px;}
.x34_c00012{left:622.080000px;}
.x14_c00012{left:623.805000px;}
.x42_c00012{left:625.530000px;}
.x60_c00012{left:628.125000px;}
.x61_c00012{left:650.595000px;}
.x6e_c00012{left:654.045000px;}
.x35_c00012{left:660.090000px;}
.x3c_c00012{left:665.280000px;}
.x55_c00012{left:675.645000px;}
.x15_c00012{left:684.285000px;}
.x62_c00012{left:692.925000px;}
.x6f_c00012{left:698.115000px;}
.xb_c00012{left:700.710000px;}
.x70_c00012{left:705.030000px;}
.x1c_c00012{left:715.395000px;}
.x56_c00012{left:748.230000px;}
.x16_c00012{left:770.685000px;}
.x24_c00012{left:772.410000px;}
.xc_c00012{left:781.920000px;}
.x25_c00012{left:804.390000px;}
.x63_c00012{left:807.840000px;}
.x1d_c00012{left:810.435000px;}
.x65_c00012{left:817.350000px;}
.x66_c00012{left:819.930000px;}
.x67_c00012{left:826.845000px;}
.x57_c00012{left:830.310000px;}
.x68_c00012{left:836.355000px;}
.x69_c00012{left:844.995000px;}
.x6a_c00012{left:896.834700px;}
.x6b_c00012{left:903.750000px;}
.x3_c00012{left:909.795000px;}
.x6c_c00012{left:914.115000px;}
.x6d_c00012{left:926.205000px;}
.x58_c00012{left:933.990000px;}
.x59_c00012{left:950.400000px;}
.x1_c00012{left:1037.670000px;}
.x2_c00012{left:1054.080000px;}
@media print{
.v1_c00012{vertical-align:-3.093333pt;}
.v0_c00012{vertical-align:0.000000pt;}
.v3_c00012{vertical-align:3.040000pt;}
.v2_c00012{vertical-align:6.186667pt;}
.ls3_c00012{letter-spacing:0.000000pt;}
.ls0_c00012{letter-spacing:79.893333pt;}
.ls2_c00012{letter-spacing:120.132213pt;}
.ls1_c00012{letter-spacing:202.509067pt;}
.ws1_c00012{word-spacing:0.000000pt;}
.ws0_c00012{word-spacing:135.750880pt;}
.fs11_c00012{font-size:3.072000pt;}
.fs24_c00012{font-size:5.333333pt;}
.fs0_c00012{font-size:6.133333pt;}
.fs10_c00012{font-size:9.226667pt;}
.fs9_c00012{font-size:12.266667pt;}
.fs12_c00012{font-size:15.360000pt;}
.fs18_c00012{font-size:18.453333pt;}
.fs1a_c00012{font-size:21.493333pt;}
.fs1_c00012{font-size:24.586667pt;}
.fs22_c00012{font-size:27.626667pt;}
.fs2_c00012{font-size:30.720000pt;}
.fs20_c00012{font-size:36.853333pt;}
.fs19_c00012{font-size:39.946667pt;}
.fs16_c00012{font-size:49.173333pt;}
.fs15_c00012{font-size:52.213333pt;}
.fs1f_c00012{font-size:58.346667pt;}
.fs21_c00012{font-size:61.440000pt;}
.fs14_c00012{font-size:64.533333pt;}
.fs1b_c00012{font-size:67.573333pt;}
.fs17_c00012{font-size:70.666667pt;}
.fs13_c00012{font-size:73.706667pt;}
.fsd_c00012{font-size:76.800000pt;}
.fsa_c00012{font-size:79.893333pt;}
.fs1c_c00012{font-size:82.933333pt;}
.fse_c00012{font-size:86.026667pt;}
.fs1d_c00012{font-size:92.160000pt;}
.fs27_c00012{font-size:95.253333pt;}
.fsc_c00012{font-size:98.293333pt;}
.fs1e_c00012{font-size:101.386667pt;}
.fsb_c00012{font-size:104.426667pt;}
.fs23_c00012{font-size:107.520000pt;}
.fsf_c00012{font-size:110.613333pt;}
.fs5_c00012{font-size:113.653333pt;}
.fs26_c00012{font-size:116.746667pt;}
.fs25_c00012{font-size:119.786667pt;}
.fs3_c00012{font-size:129.013333pt;}
.fs4_c00012{font-size:144.373333pt;}
.fs8_c00012{font-size:147.466667pt;}
.fs28_c00012{font-size:153.600000pt;}
.fs6_c00012{font-size:168.960000pt;}
.fs7_c00012{font-size:187.413333pt;}
.y0_c00012{bottom:0.000000pt;}
.y64_c00012{bottom:172.800000pt;}
.y66_c00012{bottom:175.106667pt;}
.y63_c00012{bottom:175.866667pt;}
.y62_c00012{bottom:178.173333pt;}
.y65_c00012{bottom:179.706667pt;}
.y5b_c00012{bottom:801.026667pt;}
.y5d_c00012{bottom:802.560000pt;}
.y5c_c00012{bottom:803.333333pt;}
.y58_c00012{bottom:804.093333pt;}
.y5a_c00012{bottom:807.173333pt;}
.y59_c00012{bottom:807.933333pt;}
.y57_c00012{bottom:813.306667pt;}
.y55_c00012{bottom:814.853333pt;}
.y56_c00012{bottom:815.613333pt;}
.y52_c00012{bottom:818.693333pt;}
.y54_c00012{bottom:824.826667pt;}
.y53_c00012{bottom:825.600000pt;}
.y51_c00012{bottom:835.586667pt;}
.y4e_c00012{bottom:846.333333pt;}
.y4f_c00012{bottom:847.106667pt;}
.y4a_c00012{bottom:847.866667pt;}
.y49_c00012{bottom:850.173333pt;}
.y4c_c00012{bottom:852.480000pt;}
.y4d_c00012{bottom:854.786667pt;}
.y4b_c00012{bottom:855.546667pt;}
.y48_c00012{bottom:856.320000pt;}
.y50_c00012{bottom:858.626667pt;}
.y47_c00012{bottom:877.053333pt;}
.y46_c00012{bottom:879.360000pt;}
.y45_c00012{bottom:880.893333pt;}
.y43_c00012{bottom:883.200000pt;}
.y41_c00012{bottom:885.506667pt;}
.y42_c00012{bottom:887.040000pt;}
.y44_c00012{bottom:887.813333pt;}
.y40_c00012{bottom:890.106667pt;}
.y3f_c00012{bottom:891.653333pt;}
.y3c_c00012{bottom:897.786667pt;}
.y3e_c00012{bottom:900.093333pt;}
.y61_c00012{bottom:900.866667pt;}
.y3d_c00012{bottom:903.933333pt;}
.y3b_c00012{bottom:904.706667pt;}
.y3a_c00012{bottom:905.466667pt;}
.y38_c00012{bottom:907.773333pt;}
.y39_c00012{bottom:908.546667pt;}
.y36_c00012{bottom:909.306667pt;}
.y37_c00012{bottom:910.853333pt;}
.y35_c00012{bottom:922.373333pt;}
.y32_c00012{bottom:923.906667pt;}
.y31_c00012{bottom:924.666667pt;}
.y30_c00012{bottom:926.973333pt;}
.y33_c00012{bottom:929.280000pt;}
.y34_c00012{bottom:931.586667pt;}
.y60_c00012{bottom:935.426667pt;}
.y5f_c00012{bottom:936.186667pt;}
.y5e_c00012{bottom:938.493333pt;}
.y2f_c00012{bottom:944.640000pt;}
.y2e_c00012{bottom:945.413333pt;}
.y2d_c00012{bottom:946.946667pt;}
.y2b_c00012{bottom:948.480000pt;}
.y2a_c00012{bottom:949.253333pt;}
.y28_c00012{bottom:950.013333pt;}
.y2c_c00012{bottom:952.320000pt;}
.y27_c00012{bottom:953.093333pt;}
.y26_c00012{bottom:955.386667pt;}
.y29_c00012{bottom:961.533333pt;}
.y24_c00012{bottom:966.906667pt;}
.y25_c00012{bottom:971.520000pt;}
.y22_c00012{bottom:972.293333pt;}
.y20_c00012{bottom:973.053333pt;}
.y23_c00012{bottom:973.826667pt;}
.y1f_c00012{bottom:974.586667pt;}
.y1e_c00012{bottom:975.360000pt;}
.y21_c00012{bottom:976.133333pt;}
.y1a_c00012{bottom:976.893333pt;}
.y1d_c00012{bottom:977.666667pt;}
.y1c_c00012{bottom:978.426667pt;}
.y1b_c00012{bottom:979.200000pt;}
.y19_c00012{bottom:992.253333pt;}
.y18_c00012{bottom:993.786667pt;}
.y17_c00012{bottom:995.333333pt;}
.y15_c00012{bottom:996.093333pt;}
.y14_c00012{bottom:996.866667pt;}
.y16_c00012{bottom:997.626667pt;}
.y11_c00012{bottom:998.400000pt;}
.y13_c00012{bottom:1000.706667pt;}
.y12_c00012{bottom:1002.240000pt;}
.ye_c00012{bottom:1003.773333pt;}
.yd_c00012{bottom:1004.546667pt;}
.y10_c00012{bottom:1005.306667pt;}
.yf_c00012{bottom:1006.080000pt;}
.yc_c00012{bottom:1012.226667pt;}
.yb_c00012{bottom:1029.893333pt;}
.ya_c00012{bottom:1030.653333pt;}
.y8_c00012{bottom:1032.960000pt;}
.y4_c00012{bottom:1033.733333pt;}
.y5_c00012{bottom:1034.493333pt;}
.y9_c00012{bottom:1036.026667pt;}
.y6_c00012{bottom:1039.866667pt;}
.y7_c00012{bottom:1040.640000pt;}
.y2_c00012{bottom:1141.253333pt;}
.y1_c00012{bottom:1145.093333pt;}
.y3_c00012{bottom:1237.253333pt;}
.h13_c00012{height:2.764500pt;}
.h27_c00012{height:4.799479pt;}
.h2_c00012{height:5.519401pt;}
.h12_c00012{height:8.303099pt;}
.hb_c00012{height:11.038802pt;}
.h14_c00012{height:13.822500pt;}
.h1a_c00012{height:16.606198pt;}
.h1c_c00012{height:19.341901pt;}
.h3_c00012{height:22.125599pt;}
.h25_c00012{height:24.861302pt;}
.h4_c00012{height:27.645000pt;}
.h23_c00012{height:33.164401pt;}
.h20_c00012{height:33.831667pt;}
.h1b_c00012{height:35.948099pt;}
.h18_c00012{height:44.251198pt;}
.h17_c00012{height:46.986901pt;}
.h22_c00012{height:52.506302pt;}
.h24_c00012{height:55.290000pt;}
.h16_c00012{height:58.073698pt;}
.h1d_c00012{height:60.809401pt;}
.h19_c00012{height:63.593099pt;}
.h15_c00012{height:66.328802pt;}
.hf_c00012{height:69.112500pt;}
.hc_c00012{height:71.896198pt;}
.h1e_c00012{height:74.631901pt;}
.h10_c00012{height:77.415599pt;}
.h1f_c00012{height:82.935000pt;}
.h2a_c00012{height:85.718698pt;}
.he_c00012{height:88.454401pt;}
.h21_c00012{height:91.238099pt;}
.hd_c00012{height:93.973802pt;}
.h26_c00012{height:96.757500pt;}
.h11_c00012{height:99.541198pt;}
.h7_c00012{height:102.276901pt;}
.h29_c00012{height:105.060599pt;}
.h28_c00012{height:107.796302pt;}
.h5_c00012{height:116.099401pt;}
.h6_c00012{height:129.921901pt;}
.ha_c00012{height:132.705599pt;}
.h2b_c00012{height:138.225000pt;}
.h8_c00012{height:152.047500pt;}
.h9_c00012{height:168.653698pt;}
.h0_c00012{height:1347.066667pt;}
.h1_c00012{height:1347.333333pt;}
.w1_c00012{width:946.666667pt;}
.w0_c00012{width:946.946667pt;}
.x0_c00012{left:0.000000pt;}
.xd_c00012{left:170.493333pt;}
.x4_c00012{left:182.786667pt;}
.x5a_c00012{left:185.093333pt;}
.x17_c00012{left:189.693333pt;}
.x36_c00012{left:194.306667pt;}
.x26_c00012{left:197.373333pt;}
.x27_c00012{left:198.906667pt;}
.x18_c00012{left:203.520000pt;}
.x1e_c00012{left:205.053333pt;}
.x28_c00012{left:209.666067pt;}
.x5_c00012{left:215.040000pt;}
.xe_c00012{left:217.346667pt;}
.x29_c00012{left:218.880000pt;}
.x37_c00012{left:223.493333pt;}
.x19_c00012{left:226.560000pt;}
.x1f_c00012{left:231.173333pt;}
.x38_c00012{left:238.853333pt;}
.x3d_c00012{left:241.146667pt;}
.x4e_c00012{left:243.453333pt;}
.x2a_c00012{left:245.760000pt;}
.x4f_c00012{left:250.373333pt;}
.x5b_c00012{left:257.280000pt;}
.x20_c00012{left:261.120000pt;}
.xf_c00012{left:262.653333pt;}
.x39_c00012{left:264.186667pt;}
.x4d_c00012{left:275.706667pt;}
.x50_c00012{left:278.013333pt;}
.x2b_c00012{left:279.546667pt;}
.x3e_c00012{left:290.306667pt;}
.x6_c00012{left:294.906667pt;}
.x2c_c00012{left:296.453333pt;}
.x51_c00012{left:300.293333pt;}
.x43_c00012{left:301.826667pt;}
.x2d_c00012{left:303.360000pt;}
.x2e_c00012{left:308.733333pt;}
.x10_c00012{left:314.880000pt;}
.x44_c00012{left:317.946667pt;}
.x3f_c00012{left:321.786667pt;}
.x45_c00012{left:326.400000pt;}
.x7_c00012{left:328.706667pt;}
.x11_c00012{left:340.986667pt;}
.x5c_c00012{left:346.373333pt;}
.x46_c00012{left:358.653333pt;}
.x8_c00012{left:364.800000pt;}
.x52_c00012{left:375.546667pt;}
.x5d_c00012{left:377.093333pt;}
.x2f_c00012{left:385.533333pt;}
.x12_c00012{left:390.146667pt;}
.x21_c00012{left:391.680000pt;}
.x3a_c00012{left:393.986667pt;}
.x53_c00012{left:400.133333pt;}
.x9_c00012{left:403.973333pt;}
.x49_c00012{left:414.720000pt;}
.x1a_c00012{left:427.773333pt;}
.x40_c00012{left:429.306667pt;}
.x30_c00012{left:433.920000pt;}
.x47_c00012{left:443.133333pt;}
.x54_c00012{left:444.666667pt;}
.x13_c00012{left:450.813333pt;}
.x5e_c00012{left:453.120000pt;}
.x4a_c00012{left:457.733333pt;}
.x31_c00012{left:463.106667pt;}
.x4b_c00012{left:470.786667pt;}
.x5f_c00012{left:474.626667pt;}
.x64_c00012{left:477.693333pt;}
.x4c_c00012{left:484.613333pt;}
.x32_c00012{left:493.053333pt;}
.x33_c00012{left:507.653333pt;}
.x22_c00012{left:513.026667pt;}
.x48_c00012{left:515.333333pt;}
.x1b_c00012{left:517.626667pt;}
.x3b_c00012{left:520.706667pt;}
.x41_c00012{left:523.773333pt;}
.x23_c00012{left:534.533333pt;}
.xa_c00012{left:539.906667pt;}
.x34_c00012{left:552.960000pt;}
.x14_c00012{left:554.493333pt;}
.x42_c00012{left:556.026667pt;}
.x60_c00012{left:558.333333pt;}
.x61_c00012{left:578.306667pt;}
.x6e_c00012{left:581.373333pt;}
.x35_c00012{left:586.746667pt;}
.x3c_c00012{left:591.360000pt;}
.x55_c00012{left:600.573333pt;}
.x15_c00012{left:608.253333pt;}
.x62_c00012{left:615.933333pt;}
.x6f_c00012{left:620.546667pt;}
.xb_c00012{left:622.853333pt;}
.x70_c00012{left:626.693333pt;}
.x1c_c00012{left:635.906667pt;}
.x56_c00012{left:665.093333pt;}
.x16_c00012{left:685.053333pt;}
.x24_c00012{left:686.586667pt;}
.xc_c00012{left:695.040000pt;}
.x25_c00012{left:715.013333pt;}
.x63_c00012{left:718.080000pt;}
.x1d_c00012{left:720.386667pt;}
.x65_c00012{left:726.533333pt;}
.x66_c00012{left:728.826667pt;}
.x67_c00012{left:734.973333pt;}
.x57_c00012{left:738.053333pt;}
.x68_c00012{left:743.426667pt;}
.x69_c00012{left:751.106667pt;}
.x6a_c00012{left:797.186400pt;}
.x6b_c00012{left:803.333333pt;}
.x3_c00012{left:808.706667pt;}
.x6c_c00012{left:812.546667pt;}
.x6d_c00012{left:823.293333pt;}
.x58_c00012{left:830.213333pt;}
.x59_c00012{left:844.800000pt;}
.x1_c00012{left:922.373333pt;}
.x2_c00012{left:936.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_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_cf72582bec3a428fd150f7e3.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.109863;font-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_c00013{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m46_c00013{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m85_c00013{transform:matrix(0.084275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084275,0.000000,0.000000,0.250000,0,0);}
.m13_c00013{transform:matrix(0.097975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097975,0.000000,0.000000,0.250000,0,0);}
.m9f_c00013{transform:matrix(0.101375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101375,0.000000,0.000000,0.250000,0,0);}
.m18_c00013{transform:matrix(0.109775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109775,0.000000,0.000000,0.250000,0,0);}
.m1f_c00013{transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);}
.me_c00013{transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);}
.m9c_c00013{transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);}
.ma6_c00013{transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);}
.m93_c00013{transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);}
.m4b_c00013{transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);}
.m99_c00013{transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);}
.m47_c00013{transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);}
.m5d_c00013{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.m0_c00013{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m9d_c00013{transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);}
.m9e_c00013{transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);}
.mde_c00013{transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);}
.md7_c00013{transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);}
.m2_c00013{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.maa_c00013{transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);}
.mc1_c00013{transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);}
.me5_c00013{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.m14_c00013{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.m29_c00013{transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);}
.md6_c00013{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);}
.m77_c00013{transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);}
.m23_c00013{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00013{transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);}
.m3a_c00013{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.mb0_c00013{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00013{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);}
.m81_c00013{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);}
.m92_c00013{transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);}
.mac_c00013{transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);}
.ma2_c00013{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m62_c00013{transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);}
.me3_c00013{transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);}
.mb1_c00013{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.m7d_c00013{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.mad_c00013{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.m75_c00013{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.mae_c00013{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.me4_c00013{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.m68_c00013{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);}
.md4_c00013{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);}
.mc6_c00013{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m33_c00013{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.mbb_c00013{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m9a_c00013{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00013{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.mcb_c00013{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m49_c00013{transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);}
.m9b_c00013{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);}
.m4e_c00013{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m69_c00013{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);}
.mea_c00013{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m20_c00013{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);}
.me6_c00013{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);}
.m76_c00013{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m8e_c00013{transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);}
.m6c_c00013{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.me7_c00013{transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);}
.mda_c00013{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m73_c00013{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);}
.m1e_c00013{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.md3_c00013{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.mf_c00013{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m59_c00013{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);}
.m72_c00013{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.mc2_c00013{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.mdd_c00013{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);}
.m2b_c00013{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.md9_c00013{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);}
.m52_c00013{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);}
.m22_c00013{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.mbf_c00013{transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);}
.mbc_c00013{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);}
.m54_c00013{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);}
.m32_c00013{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);}
.mc7_c00013{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m4f_c00013{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);}
.meb_c00013{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m98_c00013{transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);}
.m5c_c00013{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00013{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);}
.m8c_c00013{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.mab_c00013{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);}
.m7b_c00013{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);}
.m91_c00013{transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);}
.m97_c00013{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.m89_c00013{transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);}
.md8_c00013{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);}
.m74_c00013{transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);}
.m90_c00013{transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);}
.m6d_c00013{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);}
.m65_c00013{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.me0_c00013{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m8a_c00013{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);}
.m17_c00013{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);}
.m8f_c00013{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);}
.m80_c00013{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m53_c00013{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.m79_c00013{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m66_c00013{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.m42_c00013{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);}
.m55_c00013{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);}
.ma3_c00013{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);}
.m78_c00013{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);}
.m5f_c00013{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m45_c00013{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);}
.m6e_c00013{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.m16_c00013{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.maf_c00013{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.m70_c00013{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.m30_c00013{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.ma4_c00013{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.md2_c00013{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.m83_c00013{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.mc3_c00013{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);}
.m58_c00013{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);}
.mcc_c00013{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);}
.m41_c00013{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m21_c00013{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);}
.m50_c00013{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.mce_c00013{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);}
.me9_c00013{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.mdf_c00013{transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);}
.m48_c00013{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mb2_c00013{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);}
.m2a_c00013{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);}
.m35_c00013{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.m82_c00013{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);}
.m34_c00013{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.mb9_c00013{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.md0_c00013{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);}
.m1b_c00013{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.mcf_c00013{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);}
.m39_c00013{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00013{transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);}
.mc5_c00013{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m51_c00013{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.me1_c00013{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);}
.mca_c00013{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);}
.mb4_c00013{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.m2c_c00013{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);}
.md1_c00013{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.mbd_c00013{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);}
.m44_c00013{transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);}
.m3c_c00013{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.mb6_c00013{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);}
.m3e_c00013{transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);}
.mba_c00013{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.me2_c00013{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);}
.md5_c00013{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.mb3_c00013{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);}
.m6a_c00013{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);}
.m5e_c00013{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);}
.mdb_c00013{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m8d_c00013{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m57_c00013{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);}
.m19_c00013{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m12_c00013{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);}
.m4c_c00013{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);}
.m6b_c00013{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);}
.mc8_c00013{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);}
.m1a_c00013{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00013{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00013{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc_c00013{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);}
.m7e_c00013{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m36_c00013{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);}
.m25_c00013{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);}
.m3b_c00013{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c00013{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00013{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m56_c00013{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);}
.mc9_c00013{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m60_c00013{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);}
.m4a_c00013{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);}
.m10_c00013{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00013{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m24_c00013{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);}
.m1c_c00013{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00013{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m71_c00013{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);}
.m3f_c00013{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00013{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m61_c00013{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00013{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m63_c00013{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00013{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c00013{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma_c00013{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);}
.m5a_c00013{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m43_c00013{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m88_c00013{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00013{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c00013{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);}
.m31_c00013{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);}
.mb8_c00013{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m40_c00013{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_c00013{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m95_c00013{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m8_c00013{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m26_c00013{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00013{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);}
.m1d_c00013{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m15_c00013{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.me8_c00013{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);}
.md_c00013{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00013{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3_c00013{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m64_c00013{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m96_c00013{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00013{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m84_c00013{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00013{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);}
.mbe_c00013{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);}
.mb_c00013{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00013{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00013{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00013{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00013{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m94_c00013{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m37_c00013{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00013{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.mec_c00013{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00013{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00013{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m4_c00013{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m87_c00013{transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);}
.m67_c00013{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m38_c00013{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.med_c00013{transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00013{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.m86_c00013{transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.880000,0.000000,0.000000,0.250000,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;}
.fs2_c00013{font-size:3.456000px;}
.fs17_c00013{font-size:6.000000px;}
.fs1d_c00013{font-size:6.900000px;}
.fs15_c00013{font-size:10.380000px;}
.fs16_c00013{font-size:13.800000px;}
.fs1_c00013{font-size:17.280000px;}
.fs3_c00013{font-size:20.760000px;}
.fs1c_c00013{font-size:24.180000px;}
.fs0_c00013{font-size:27.660000px;}
.fs20_c00013{font-size:31.080000px;}
.fs8_c00013{font-size:34.560000px;}
.fsa_c00013{font-size:38.040000px;}
.fs9_c00013{font-size:41.460000px;}
.fsb_c00013{font-size:44.940000px;}
.fs1b_c00013{font-size:48.360000px;}
.fs12_c00013{font-size:51.840000px;}
.fse_c00013{font-size:55.320000px;}
.fs5_c00013{font-size:58.740000px;}
.fs1a_c00013{font-size:62.220000px;}
.fs19_c00013{font-size:65.640000px;}
.fs4_c00013{font-size:69.120000px;}
.fs6_c00013{font-size:72.600000px;}
.fs11_c00013{font-size:76.020000px;}
.fs7_c00013{font-size:79.500000px;}
.fs14_c00013{font-size:82.920000px;}
.fsd_c00013{font-size:86.400000px;}
.fs10_c00013{font-size:89.880000px;}
.fs18_c00013{font-size:93.300000px;}
.fs1e_c00013{font-size:96.780000px;}
.fsf_c00013{font-size:100.200000px;}
.fs13_c00013{font-size:103.680000px;}
.fs1f_c00013{font-size:114.060000px;}
.fsc_c00013{font-size:131.340000px;}
.y0_c00013{bottom:0.000000px;}
.ye5_c00013{bottom:819.075000px;}
.yea_c00013{bottom:823.395000px;}
.ye6_c00013{bottom:824.250000px;}
.ye7_c00013{bottom:825.990000px;}
.ye9_c00013{bottom:827.715000px;}
.ye8_c00013{bottom:831.165000px;}
.ye4_c00013{bottom:838.080000px;}
.ye3_c00013{bottom:839.805000px;}
.ydb_c00013{bottom:840.675000px;}
.ye0_c00013{bottom:841.530000px;}
.ydf_c00013{bottom:842.400000px;}
.ydc_c00013{bottom:844.125000px;}
.ye1_c00013{bottom:847.590000px;}
.yde_c00013{bottom:848.445000px;}
.ydd_c00013{bottom:849.315000px;}
.yda_c00013{bottom:851.040000px;}
.ye2_c00013{bottom:858.810000px;}
.yd9_c00013{bottom:862.275000px;}
.yd5_c00013{bottom:863.130000px;}
.yd4_c00013{bottom:864.000000px;}
.yd8_c00013{bottom:864.870000px;}
.yd3_c00013{bottom:865.725000px;}
.yd7_c00013{bottom:867.450000px;}
.yd6_c00013{bottom:869.190000px;}
.yd1_c00013{bottom:882.150000px;}
.yd0_c00013{bottom:883.005000px;}
.yce_c00013{bottom:883.875000px;}
.yca_c00013{bottom:884.730000px;}
.ycb_c00013{bottom:885.600000px;}
.ycf_c00013{bottom:888.195000px;}
.ycc_c00013{bottom:889.050000px;}
.ycd_c00013{bottom:889.920000px;}
.yc9_c00013{bottom:891.645000px;}
.yd2_c00013{bottom:896.835000px;}
.yc5_c00013{bottom:904.605000px;}
.yc2_c00013{bottom:905.475000px;}
.yc8_c00013{bottom:906.330000px;}
.yc7_c00013{bottom:907.200000px;}
.yc1_c00013{bottom:908.070000px;}
.yc4_c00013{bottom:908.925000px;}
.yc6_c00013{bottom:909.795000px;}
.yc3_c00013{bottom:911.520000px;}
.ybf_c00013{bottom:923.610000px;}
.ybe_c00013{bottom:924.480000px;}
.ybd_c00013{bottom:925.350000px;}
.yb9_c00013{bottom:926.205000px;}
.yb8_c00013{bottom:927.075000px;}
.yba_c00013{bottom:927.930000px;}
.yc0_c00013{bottom:928.800000px;}
.ybc_c00013{bottom:930.525000px;}
.ybb_c00013{bottom:931.395000px;}
.yb7_c00013{bottom:933.990000px;}
.yb6_c00013{bottom:943.485000px;}
.yb3_c00013{bottom:944.355000px;}
.yb2_c00013{bottom:945.210000px;}
.yb1_c00013{bottom:946.080000px;}
.yaf_c00013{bottom:946.950000px;}
.yad_c00013{bottom:947.805000px;}
.yb5_c00013{bottom:949.530000px;}
.yb4_c00013{bottom:950.400000px;}
.yb0_c00013{bottom:951.270000px;}
.yae_c00013{bottom:952.995000px;}
.ya9_c00013{bottom:964.230000px;}
.yaa_c00013{bottom:965.085000px;}
.yab_c00013{bottom:965.955000px;}
.ya5_c00013{bottom:966.810000px;}
.ya8_c00013{bottom:970.275000px;}
.ya6_c00013{bottom:971.130000px;}
.yac_c00013{bottom:972.000000px;}
.ya7_c00013{bottom:973.725000px;}
.ya2_c00013{bottom:985.830000px;}
.y9f_c00013{bottom:986.685000px;}
.ya3_c00013{bottom:988.410000px;}
.ya1_c00013{bottom:991.005000px;}
.ya0_c00013{bottom:992.730000px;}
.ya4_c00013{bottom:999.645000px;}
.y9d_c00013{bottom:1005.690000px;}
.y98_c00013{bottom:1006.560000px;}
.y9e_c00013{bottom:1008.285000px;}
.y9b_c00013{bottom:1009.155000px;}
.y9c_c00013{bottom:1010.880000px;}
.y99_c00013{bottom:1011.750000px;}
.y9a_c00013{bottom:1012.605000px;}
.y97_c00013{bottom:1014.330000px;}
.y96_c00013{bottom:1024.710000px;}
.y94_c00013{bottom:1026.435000px;}
.y95_c00013{bottom:1028.160000px;}
.y93_c00013{bottom:1029.030000px;}
.y8e_c00013{bottom:1029.885000px;}
.y8d_c00013{bottom:1030.755000px;}
.y92_c00013{bottom:1031.610000px;}
.y91_c00013{bottom:1032.480000px;}
.y90_c00013{bottom:1033.350000px;}
.y8f_c00013{bottom:1034.205000px;}
.y8b_c00013{bottom:1041.990000px;}
.y89_c00013{bottom:1043.715000px;}
.y86_c00013{bottom:1045.440000px;}
.y8a_c00013{bottom:1046.310000px;}
.y82_c00013{bottom:1047.165000px;}
.y87_c00013{bottom:1048.035000px;}
.y88_c00013{bottom:1049.760000px;}
.y83_c00013{bottom:1052.355000px;}
.y84_c00013{bottom:1053.210000px;}
.y85_c00013{bottom:1054.080000px;}
.y8c_c00013{bottom:1056.675000px;}
.y81_c00013{bottom:1066.170000px;}
.y80_c00013{bottom:1067.040000px;}
.y7d_c00013{bottom:1067.910000px;}
.y7c_c00013{bottom:1068.765000px;}
.y7f_c00013{bottom:1069.635000px;}
.y7e_c00013{bottom:1070.490000px;}
.y7b_c00013{bottom:1071.360000px;}
.y7a_c00013{bottom:1073.085000px;}
.y79_c00013{bottom:1075.680000px;}
.y77_c00013{bottom:1086.045000px;}
.y76_c00013{bottom:1087.770000px;}
.y73_c00013{bottom:1088.640000px;}
.y72_c00013{bottom:1090.365000px;}
.y70_c00013{bottom:1091.235000px;}
.y74_c00013{bottom:1092.090000px;}
.y71_c00013{bottom:1092.960000px;}
.y75_c00013{bottom:1098.150000px;}
.y78_c00013{bottom:1099.005000px;}
.y6e_c00013{bottom:1107.645000px;}
.y6b_c00013{bottom:1109.370000px;}
.y6d_c00013{bottom:1111.965000px;}
.y6c_c00013{bottom:1112.835000px;}
.y6f_c00013{bottom:1113.690000px;}
.y69_c00013{bottom:1114.560000px;}
.y6a_c00013{bottom:1115.430000px;}
.y68_c00013{bottom:1117.155000px;}
.y67_c00013{bottom:1128.390000px;}
.y62_c00013{bottom:1129.245000px;}
.y65_c00013{bottom:1130.115000px;}
.y61_c00013{bottom:1131.840000px;}
.y66_c00013{bottom:1132.710000px;}
.y63_c00013{bottom:1133.565000px;}
.y64_c00013{bottom:1134.435000px;}
.y5c_c00013{bottom:1149.120000px;}
.y5a_c00013{bottom:1149.990000px;}
.y58_c00013{bottom:1151.715000px;}
.y56_c00013{bottom:1152.570000px;}
.y57_c00013{bottom:1153.440000px;}
.y5b_c00013{bottom:1154.310000px;}
.y5d_c00013{bottom:1155.165000px;}
.y59_c00013{bottom:1156.035000px;}
.y55_c00013{bottom:1157.760000px;}
.y54_c00013{bottom:1159.485000px;}
.y5f_c00013{bottom:1162.950000px;}
.y60_c00013{bottom:1165.530000px;}
.y5e_c00013{bottom:1167.270000px;}
.y52_c00013{bottom:1169.850000px;}
.y51_c00013{bottom:1171.590000px;}
.y53_c00013{bottom:1175.040000px;}
.y50_c00013{bottom:1175.910000px;}
.y4f_c00013{bottom:1178.490000px;}
.y4d_c00013{bottom:1188.000000px;}
.y4e_c00013{bottom:1189.725000px;}
.y4a_c00013{bottom:1190.595000px;}
.y4b_c00013{bottom:1191.450000px;}
.y48_c00013{bottom:1192.320000px;}
.y49_c00013{bottom:1194.045000px;}
.y4c_c00013{bottom:1194.915000px;}
.y46_c00013{bottom:1197.510000px;}
.y47_c00013{bottom:1199.235000px;}
.y45_c00013{bottom:1210.470000px;}
.y42_c00013{bottom:1211.325000px;}
.y44_c00013{bottom:1212.195000px;}
.y3f_c00013{bottom:1213.920000px;}
.y43_c00013{bottom:1216.515000px;}
.y41_c00013{bottom:1218.240000px;}
.y40_c00013{bottom:1219.110000px;}
.yed_c00013{bottom:1230.330000px;}
.y3c_c00013{bottom:1231.200000px;}
.y3e_c00013{bottom:1232.070000px;}
.y38_c00013{bottom:1232.925000px;}
.y3d_c00013{bottom:1233.795000px;}
.y3a_c00013{bottom:1234.650000px;}
.yec_c00013{bottom:1235.520000px;}
.y3b_c00013{bottom:1237.245000px;}
.y39_c00013{bottom:1238.115000px;}
.y37_c00013{bottom:1250.205000px;}
.y33_c00013{bottom:1251.075000px;}
.y35_c00013{bottom:1252.800000px;}
.y36_c00013{bottom:1253.670000px;}
.y32_c00013{bottom:1254.525000px;}
.y31_c00013{bottom:1256.250000px;}
.y34_c00013{bottom:1257.990000px;}
.y30_c00013{bottom:1261.440000px;}
.y2e_c00013{bottom:1270.950000px;}
.y2c_c00013{bottom:1271.805000px;}
.y28_c00013{bottom:1272.675000px;}
.y2a_c00013{bottom:1273.530000px;}
.y29_c00013{bottom:1274.400000px;}
.y2d_c00013{bottom:1276.125000px;}
.y2b_c00013{bottom:1278.720000px;}
.y2f_c00013{bottom:1283.910000px;}
.y27_c00013{bottom:1289.085000px;}
.y26_c00013{bottom:1291.680000px;}
.y25_c00013{bottom:1292.550000px;}
.y24_c00013{bottom:1294.275000px;}
.y21_c00013{bottom:1312.410000px;}
.y20_c00013{bottom:1313.280000px;}
.y22_c00013{bottom:1315.005000px;}
.y23_c00013{bottom:1315.875000px;}
.y1f_c00013{bottom:1319.325000px;}
.y1d_c00013{bottom:1327.965000px;}
.y1e_c00013{bottom:1328.835000px;}
.y18_c00013{bottom:1329.690000px;}
.y1b_c00013{bottom:1330.560000px;}
.y17_c00013{bottom:1332.285000px;}
.y15_c00013{bottom:1333.155000px;}
.y19_c00013{bottom:1334.010000px;}
.y13_c00013{bottom:1334.880000px;}
.y1a_c00013{bottom:1335.750000px;}
.y1c_c00013{bottom:1336.605000px;}
.y14_c00013{bottom:1337.475000px;}
.y16_c00013{bottom:1338.330000px;}
.yd_c00013{bottom:1348.710000px;}
.ye_c00013{bottom:1350.435000px;}
.yf_c00013{bottom:1351.290000px;}
.y12_c00013{bottom:1353.030000px;}
.y10_c00013{bottom:1355.610000px;}
.yeb_c00013{bottom:1357.350000px;}
.yc_c00013{bottom:1358.205000px;}
.yb_c00013{bottom:1359.075000px;}
.y11_c00013{bottom:1360.800000px;}
.ya_c00013{bottom:1379.805000px;}
.y9_c00013{bottom:1383.270000px;}
.y7_c00013{bottom:1384.125000px;}
.y8_c00013{bottom:1385.850000px;}
.y5_c00013{bottom:1400.550000px;}
.y6_c00013{bottom:1404.000000px;}
.y4_c00013{bottom:1406.595000px;}
.y1_c00013{bottom:1426.470000px;}
.y2_c00013{bottom:1430.790000px;}
.y3_c00013{bottom:1432.515000px;}
.h4_c00013{height:3.110063px;}
.h19_c00013{height:5.399414px;}
.h1f_c00013{height:6.209326px;}
.h17_c00013{height:9.340986px;}
.h18_c00013{height:12.418652px;}
.h3_c00013{height:15.550313px;}
.h5_c00013{height:18.681973px;}
.h1e_c00013{height:21.759639px;}
.h2_c00013{height:24.891299px;}
.h22_c00013{height:27.968965px;}
.ha_c00013{height:31.100625px;}
.hc_c00013{height:34.232285px;}
.hb_c00013{height:37.309951px;}
.hd_c00013{height:40.441611px;}
.h1d_c00013{height:43.519277px;}
.h14_c00013{height:46.650937px;}
.h10_c00013{height:49.782598px;}
.h7_c00013{height:52.860264px;}
.h1c_c00013{height:55.991924px;}
.h1b_c00013{height:59.069590px;}
.h6_c00013{height:62.201250px;}
.h8_c00013{height:65.332910px;}
.h13_c00013{height:68.410576px;}
.h9_c00013{height:71.542236px;}
.h16_c00013{height:74.619902px;}
.hf_c00013{height:77.751563px;}
.h12_c00013{height:80.883223px;}
.h1a_c00013{height:83.960889px;}
.h20_c00013{height:87.092549px;}
.h11_c00013{height:90.170215px;}
.h15_c00013{height:93.301875px;}
.h21_c00013{height:102.642861px;}
.he_c00013{height:118.193174px;}
.h1_c00013{height:1503.000000px;}
.h0_c00013{height:1503.360000px;}
.w1_c00013{width:1076.250000px;}
.w0_c00013{width:1076.550000px;}
.x0_c00013{left:0.000000px;}
.xbd_c00013{left:218.595000px;}
.xa6_c00013{left:222.045000px;}
.xc1_c00013{left:225.510000px;}
.x4f_c00013{left:230.685000px;}
.x46_c00013{left:233.280000px;}
.xa7_c00013{left:238.470000px;}
.x3a_c00013{left:247.110000px;}
.x30_c00013{left:252.285000px;}
.x5e_c00013{left:254.010000px;}
.x86_c00013{left:255.750000px;}
.x3b_c00013{left:258.330000px;}
.xae_c00013{left:263.520000px;}
.x3c_c00013{left:267.840000px;}
.x47_c00013{left:269.565000px;}
.x31_c00013{left:272.160000px;}
.xb2_c00013{left:273.885000px;}
.xaf_c00013{left:284.250000px;}
.x87_c00013{left:285.990000px;}
.x79_c00013{left:290.310000px;}
.x32_c00013{left:292.035000px;}
.x97_c00013{left:294.630000px;}
.x75_c00013{left:297.210000px;}
.x8f_c00013{left:308.445000px;}
.x55_c00013{left:311.910000px;}
.x3d_c00013{left:315.360000px;}
.xb3_c00013{left:322.275000px;}
.x7_c00013{left:325.725000px;}
.x5f_c00013{left:328.320000px;}
.xb0_c00013{left:330.045000px;}
.x70_c00013{left:331.770000px;}
.xb9_c00013{left:335.235000px;}
.x50_c00013{left:338.685000px;}
.x3e_c00013{left:342.150000px;}
.xc8_c00013{left:343.875000px;}
.x76_c00013{left:346.470000px;}
.x98_c00013{left:351.645000px;}
.x1_c00013{left:353.370000px;}
.xc_c00013{left:355.965000px;}
.xa8_c00013{left:363.750000px;}
.x8_c00013{left:365.475000px;}
.xc2_c00013{left:368.925000px;}
.x56_c00013{left:371.520000px;}
.xd_c00013{left:373.245000px;}
.x90_c00013{left:377.565000px;}
.x65_c00013{left:381.885000px;}
.xc9_c00013{left:384.480000px;}
.xe_c00013{left:386.205000px;}
.xa0_c00013{left:388.800000px;}
.x18_c00013{left:391.395000px;}
.x88_c00013{left:393.990000px;}
.x22_c00013{left:396.570000px;}
.xf_c00013{left:398.310000px;}
.x7a_c00013{left:400.890000px;}
.x9_c00013{left:403.485000px;}
.xb4_c00013{left:405.210000px;}
.x99_c00013{left:406.950000px;}
.x2b_c00013{left:412.995000px;}
.x48_c00013{left:414.720000px;}
.x3f_c00013{left:420.765000px;}
.x10_c00013{left:423.360000px;}
.x19_c00013{left:427.680000px;}
.x33_c00013{left:430.275000px;}
.x49_c00013{left:432.870000px;}
.x60_c00013{left:435.450000px;}
.x89_c00013{left:438.045000px;}
.xb5_c00013{left:444.960000px;}
.x11_c00013{left:447.555000px;}
.xc3_c00013{left:451.875000px;}
.x2_c00013{left:455.325000px;}
.x91_c00013{left:459.645000px;}
.x7b_c00013{left:461.370000px;}
.x66_c00013{left:466.560000px;}
.x34_c00013{left:472.605000px;}
.x3_c00013{left:476.070000px;}
.xb1_c00013{left:483.840000px;}
.xa1_c00013{left:485.565000px;}
.x23_c00013{left:489.885000px;}
.x71_c00013{left:491.610000px;}
.xca_c00013{left:493.350000px;}
.x57_c00013{left:495.930000px;}
.x67_c00013{left:499.395000px;}
.x4a_c00013{left:501.990000px;}
.x1a_c00013{left:503.715000px;}
.xa2_c00013{left:505.440000px;}
.x2c_c00013{left:507.165000px;}
.x51_c00013{left:508.890000px;}
.xbe_c00013{left:511.485000px;}
.xba_c00013{left:513.210000px;}
.x68_c00013{left:517.530000px;}
.x1b_c00013{left:521.850000px;}
.xa3_c00013{left:525.315000px;}
.x58_c00013{left:528.765000px;}
.xa9_c00013{left:531.360000px;}
.x35_c00013{left:533.955000px;}
.xc7_c00013{left:537.405000px;}
.x7c_c00013{left:540.000000px;}
.xbf_c00013{left:541.725000px;}
.x72_c00013{left:547.770000px;}
.xa_c00013{left:553.830000px;}
.x52_c00013{left:556.410000px;}
.x8a_c00013{left:563.325000px;}
.x61_c00013{left:565.920000px;}
.x9a_c00013{left:574.560000px;}
.x24_c00013{left:578.010000px;}
.x92_c00013{left:580.605000px;}
.xbb_c00013{left:584.925000px;}
.xb6_c00013{left:590.115000px;}
.xcb_c00013{left:592.710000px;}
.x40_c00013{left:598.755000px;}
.x1c_c00013{left:603.075000px;}
.xcc_c00013{left:609.120000px;}
.x36_c00013{left:611.715000px;}
.xa4_c00013{left:613.440000px;}
.x53_c00013{left:615.165000px;}
.x9b_c00013{left:617.760000px;}
.x2d_c00013{left:621.210000px;}
.x73_c00013{left:624.675000px;}
.x41_c00013{left:629.850000px;}
.x59_c00013{left:632.445000px;}
.x7d_c00013{left:639.360000px;}
.x25_c00013{left:641.085000px;}
.x8b_c00013{left:643.680000px;}
.x7e_c00013{left:648.870000px;}
.x1d_c00013{left:651.450000px;}
.x26_c00013{left:653.190000px;}
.xb7_c00013{left:654.915000px;}
.x4b_c00013{left:658.365000px;}
.x93_c00013{left:662.685000px;}
.x37_c00013{left:666.150000px;}
.x42_c00013{left:670.470000px;}
.x77_c00013{left:675.645000px;}
.xbc_c00013{left:679.110000px;}
.x1e_c00013{left:680.835000px;}
.x27_c00013{left:686.010000px;}
.xc4_c00013{left:690.330000px;}
.x54_c00013{left:692.925000px;}
.xb_c00013{left:697.245000px;}
.x94_c00013{left:698.970000px;}
.x69_c00013{left:705.885000px;}
.x7f_c00013{left:712.800000px;}
.x12_c00013{left:716.250000px;}
.x5a_c00013{left:720.570000px;}
.x6a_c00013{left:724.890000px;}
.x4c_c00013{left:728.355000px;}
.x62_c00013{left:730.080000px;}
.x1f_c00013{left:734.400000px;}
.xc5_c00013{left:738.720000px;}
.x95_c00013{left:741.315000px;}
.x28_c00013{left:747.360000px;}
.x80_c00013{left:749.085000px;}
.x63_c00013{left:750.810000px;}
.x38_c00013{left:754.275000px;}
.x43_c00013{left:756.870000px;}
.xaa_c00013{left:758.595000px;}
.x4d_c00013{left:762.045000px;}
.x78_c00013{left:766.365000px;}
.x44_c00013{left:768.090000px;}
.xc6_c00013{left:773.280000px;}
.xc0_c00013{left:777.600000px;}
.x8c_c00013{left:779.325000px;}
.xb8_c00013{left:785.370000px;}
.x13_c00013{left:787.110000px;}
.x6b_c00013{left:790.560000px;}
.x2e_c00013{left:793.155000px;}
.x45_c00013{left:796.605000px;}
.x29_c00013{left:799.200000px;}
.x5b_c00013{left:801.795000px;}
.xab_c00013{left:804.390000px;}
.xa5_c00013{left:806.970000px;}
.x74_c00013{left:808.710000px;}
.x6c_c00013{left:813.885000px;}
.x9c_c00013{left:819.075000px;}
.x20_c00013{left:820.800000px;}
.x5_c00013{left:826.845000px;}
.xac_c00013{left:829.440000px;}
.x6_c00013{left:835.485000px;}
.x81_c00013{left:838.080000px;}
.x4_c00013{left:840.675000px;}
.x14_c00013{left:842.400000px;}
.x21_c00013{left:844.995000px;}
.x4e_c00013{left:848.445000px;}
.x15_c00013{left:851.040000px;}
.xcd_c00013{left:855.360000px;}
.x9d_c00013{left:857.955000px;}
.xce_c00013{left:864.870000px;}
.x82_c00013{left:868.320000px;}
.x2a_c00013{left:870.915000px;}
.xcf_c00013{left:876.960000px;}
.x64_c00013{left:878.685000px;}
.x16_c00013{left:880.410000px;}
.x8d_c00013{left:882.150000px;}
.xad_c00013{left:885.600000px;}
.x83_c00013{left:890.790000px;}
.x6d_c00013{left:893.370000px;}
.x17_c00013{left:898.560000px;}
.x8e_c00013{left:901.155000px;}
.x2f_c00013{left:910.650000px;}
.x84_c00013{left:912.390000px;}
.xd1_c00013{left:917.565000px;}
.x5c_c00013{left:920.160000px;}
.x39_c00013{left:925.350000px;}
.x5d_c00013{left:929.670000px;}
.x6e_c00013{left:931.395504px;}
.x9e_c00013{left:941.760000px;}
.x6f_c00013{left:943.485000px;}
.x85_c00013{left:955.590000px;}
.x9f_c00013{left:957.315000px;}
.x96_c00013{left:968.550000px;}
.xd0_c00013{left:974.595000px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ws0_c00013{word-spacing:0.000000pt;}
.fs2_c00013{font-size:3.072000pt;}
.fs17_c00013{font-size:5.333333pt;}
.fs1d_c00013{font-size:6.133333pt;}
.fs15_c00013{font-size:9.226667pt;}
.fs16_c00013{font-size:12.266667pt;}
.fs1_c00013{font-size:15.360000pt;}
.fs3_c00013{font-size:18.453333pt;}
.fs1c_c00013{font-size:21.493333pt;}
.fs0_c00013{font-size:24.586667pt;}
.fs20_c00013{font-size:27.626667pt;}
.fs8_c00013{font-size:30.720000pt;}
.fsa_c00013{font-size:33.813333pt;}
.fs9_c00013{font-size:36.853333pt;}
.fsb_c00013{font-size:39.946667pt;}
.fs1b_c00013{font-size:42.986667pt;}
.fs12_c00013{font-size:46.080000pt;}
.fse_c00013{font-size:49.173333pt;}
.fs5_c00013{font-size:52.213333pt;}
.fs1a_c00013{font-size:55.306667pt;}
.fs19_c00013{font-size:58.346667pt;}
.fs4_c00013{font-size:61.440000pt;}
.fs6_c00013{font-size:64.533333pt;}
.fs11_c00013{font-size:67.573333pt;}
.fs7_c00013{font-size:70.666667pt;}
.fs14_c00013{font-size:73.706667pt;}
.fsd_c00013{font-size:76.800000pt;}
.fs10_c00013{font-size:79.893333pt;}
.fs18_c00013{font-size:82.933333pt;}
.fs1e_c00013{font-size:86.026667pt;}
.fsf_c00013{font-size:89.066667pt;}
.fs13_c00013{font-size:92.160000pt;}
.fs1f_c00013{font-size:101.386667pt;}
.fsc_c00013{font-size:116.746667pt;}
.y0_c00013{bottom:0.000000pt;}
.ye5_c00013{bottom:728.066667pt;}
.yea_c00013{bottom:731.906667pt;}
.ye6_c00013{bottom:732.666667pt;}
.ye7_c00013{bottom:734.213333pt;}
.ye9_c00013{bottom:735.746667pt;}
.ye8_c00013{bottom:738.813333pt;}
.ye4_c00013{bottom:744.960000pt;}
.ye3_c00013{bottom:746.493333pt;}
.ydb_c00013{bottom:747.266667pt;}
.ye0_c00013{bottom:748.026667pt;}
.ydf_c00013{bottom:748.800000pt;}
.ydc_c00013{bottom:750.333333pt;}
.ye1_c00013{bottom:753.413333pt;}
.yde_c00013{bottom:754.173333pt;}
.ydd_c00013{bottom:754.946667pt;}
.yda_c00013{bottom:756.480000pt;}
.ye2_c00013{bottom:763.386667pt;}
.yd9_c00013{bottom:766.466667pt;}
.yd5_c00013{bottom:767.226667pt;}
.yd4_c00013{bottom:768.000000pt;}
.yd8_c00013{bottom:768.773333pt;}
.yd3_c00013{bottom:769.533333pt;}
.yd7_c00013{bottom:771.066667pt;}
.yd6_c00013{bottom:772.613333pt;}
.yd1_c00013{bottom:784.133333pt;}
.yd0_c00013{bottom:784.893333pt;}
.yce_c00013{bottom:785.666667pt;}
.yca_c00013{bottom:786.426667pt;}
.ycb_c00013{bottom:787.200000pt;}
.ycf_c00013{bottom:789.506667pt;}
.ycc_c00013{bottom:790.266667pt;}
.ycd_c00013{bottom:791.040000pt;}
.yc9_c00013{bottom:792.573333pt;}
.yd2_c00013{bottom:797.186667pt;}
.yc5_c00013{bottom:804.093333pt;}
.yc2_c00013{bottom:804.866667pt;}
.yc8_c00013{bottom:805.626667pt;}
.yc7_c00013{bottom:806.400000pt;}
.yc1_c00013{bottom:807.173333pt;}
.yc4_c00013{bottom:807.933333pt;}
.yc6_c00013{bottom:808.706667pt;}
.yc3_c00013{bottom:810.240000pt;}
.ybf_c00013{bottom:820.986667pt;}
.ybe_c00013{bottom:821.760000pt;}
.ybd_c00013{bottom:822.533333pt;}
.yb9_c00013{bottom:823.293333pt;}
.yb8_c00013{bottom:824.066667pt;}
.yba_c00013{bottom:824.826667pt;}
.yc0_c00013{bottom:825.600000pt;}
.ybc_c00013{bottom:827.133333pt;}
.ybb_c00013{bottom:827.906667pt;}
.yb7_c00013{bottom:830.213333pt;}
.yb6_c00013{bottom:838.653333pt;}
.yb3_c00013{bottom:839.426667pt;}
.yb2_c00013{bottom:840.186667pt;}
.yb1_c00013{bottom:840.960000pt;}
.yaf_c00013{bottom:841.733333pt;}
.yad_c00013{bottom:842.493333pt;}
.yb5_c00013{bottom:844.026667pt;}
.yb4_c00013{bottom:844.800000pt;}
.yb0_c00013{bottom:845.573333pt;}
.yae_c00013{bottom:847.106667pt;}
.ya9_c00013{bottom:857.093333pt;}
.yaa_c00013{bottom:857.853333pt;}
.yab_c00013{bottom:858.626667pt;}
.ya5_c00013{bottom:859.386667pt;}
.ya8_c00013{bottom:862.466667pt;}
.ya6_c00013{bottom:863.226667pt;}
.yac_c00013{bottom:864.000000pt;}
.ya7_c00013{bottom:865.533333pt;}
.ya2_c00013{bottom:876.293333pt;}
.y9f_c00013{bottom:877.053333pt;}
.ya3_c00013{bottom:878.586667pt;}
.ya1_c00013{bottom:880.893333pt;}
.ya0_c00013{bottom:882.426667pt;}
.ya4_c00013{bottom:888.573333pt;}
.y9d_c00013{bottom:893.946667pt;}
.y98_c00013{bottom:894.720000pt;}
.y9e_c00013{bottom:896.253333pt;}
.y9b_c00013{bottom:897.026667pt;}
.y9c_c00013{bottom:898.560000pt;}
.y99_c00013{bottom:899.333333pt;}
.y9a_c00013{bottom:900.093333pt;}
.y97_c00013{bottom:901.626667pt;}
.y96_c00013{bottom:910.853333pt;}
.y94_c00013{bottom:912.386667pt;}
.y95_c00013{bottom:913.920000pt;}
.y93_c00013{bottom:914.693333pt;}
.y8e_c00013{bottom:915.453333pt;}
.y8d_c00013{bottom:916.226667pt;}
.y92_c00013{bottom:916.986667pt;}
.y91_c00013{bottom:917.760000pt;}
.y90_c00013{bottom:918.533333pt;}
.y8f_c00013{bottom:919.293333pt;}
.y8b_c00013{bottom:926.213333pt;}
.y89_c00013{bottom:927.746667pt;}
.y86_c00013{bottom:929.280000pt;}
.y8a_c00013{bottom:930.053333pt;}
.y82_c00013{bottom:930.813333pt;}
.y87_c00013{bottom:931.586667pt;}
.y88_c00013{bottom:933.120000pt;}
.y83_c00013{bottom:935.426667pt;}
.y84_c00013{bottom:936.186667pt;}
.y85_c00013{bottom:936.960000pt;}
.y8c_c00013{bottom:939.266667pt;}
.y81_c00013{bottom:947.706667pt;}
.y80_c00013{bottom:948.480000pt;}
.y7d_c00013{bottom:949.253333pt;}
.y7c_c00013{bottom:950.013333pt;}
.y7f_c00013{bottom:950.786667pt;}
.y7e_c00013{bottom:951.546667pt;}
.y7b_c00013{bottom:952.320000pt;}
.y7a_c00013{bottom:953.853333pt;}
.y79_c00013{bottom:956.160000pt;}
.y77_c00013{bottom:965.373333pt;}
.y76_c00013{bottom:966.906667pt;}
.y73_c00013{bottom:967.680000pt;}
.y72_c00013{bottom:969.213333pt;}
.y70_c00013{bottom:969.986667pt;}
.y74_c00013{bottom:970.746667pt;}
.y71_c00013{bottom:971.520000pt;}
.y75_c00013{bottom:976.133333pt;}
.y78_c00013{bottom:976.893333pt;}
.y6e_c00013{bottom:984.573333pt;}
.y6b_c00013{bottom:986.106667pt;}
.y6d_c00013{bottom:988.413333pt;}
.y6c_c00013{bottom:989.186667pt;}
.y6f_c00013{bottom:989.946667pt;}
.y69_c00013{bottom:990.720000pt;}
.y6a_c00013{bottom:991.493333pt;}
.y68_c00013{bottom:993.026667pt;}
.y67_c00013{bottom:1003.013333pt;}
.y62_c00013{bottom:1003.773333pt;}
.y65_c00013{bottom:1004.546667pt;}
.y61_c00013{bottom:1006.080000pt;}
.y66_c00013{bottom:1006.853333pt;}
.y63_c00013{bottom:1007.613333pt;}
.y64_c00013{bottom:1008.386667pt;}
.y5c_c00013{bottom:1021.440000pt;}
.y5a_c00013{bottom:1022.213333pt;}
.y58_c00013{bottom:1023.746667pt;}
.y56_c00013{bottom:1024.506667pt;}
.y57_c00013{bottom:1025.280000pt;}
.y5b_c00013{bottom:1026.053333pt;}
.y5d_c00013{bottom:1026.813333pt;}
.y59_c00013{bottom:1027.586667pt;}
.y55_c00013{bottom:1029.120000pt;}
.y54_c00013{bottom:1030.653333pt;}
.y5f_c00013{bottom:1033.733333pt;}
.y60_c00013{bottom:1036.026667pt;}
.y5e_c00013{bottom:1037.573333pt;}
.y52_c00013{bottom:1039.866667pt;}
.y51_c00013{bottom:1041.413333pt;}
.y53_c00013{bottom:1044.480000pt;}
.y50_c00013{bottom:1045.253333pt;}
.y4f_c00013{bottom:1047.546667pt;}
.y4d_c00013{bottom:1056.000000pt;}
.y4e_c00013{bottom:1057.533333pt;}
.y4a_c00013{bottom:1058.306667pt;}
.y4b_c00013{bottom:1059.066667pt;}
.y48_c00013{bottom:1059.840000pt;}
.y49_c00013{bottom:1061.373333pt;}
.y4c_c00013{bottom:1062.146667pt;}
.y46_c00013{bottom:1064.453333pt;}
.y47_c00013{bottom:1065.986667pt;}
.y45_c00013{bottom:1075.973333pt;}
.y42_c00013{bottom:1076.733333pt;}
.y44_c00013{bottom:1077.506667pt;}
.y3f_c00013{bottom:1079.040000pt;}
.y43_c00013{bottom:1081.346667pt;}
.y41_c00013{bottom:1082.880000pt;}
.y40_c00013{bottom:1083.653333pt;}
.yed_c00013{bottom:1093.626667pt;}
.y3c_c00013{bottom:1094.400000pt;}
.y3e_c00013{bottom:1095.173333pt;}
.y38_c00013{bottom:1095.933333pt;}
.y3d_c00013{bottom:1096.706667pt;}
.y3a_c00013{bottom:1097.466667pt;}
.yec_c00013{bottom:1098.240000pt;}
.y3b_c00013{bottom:1099.773333pt;}
.y39_c00013{bottom:1100.546667pt;}
.y37_c00013{bottom:1111.293333pt;}
.y33_c00013{bottom:1112.066667pt;}
.y35_c00013{bottom:1113.600000pt;}
.y36_c00013{bottom:1114.373333pt;}
.y32_c00013{bottom:1115.133333pt;}
.y31_c00013{bottom:1116.666667pt;}
.y34_c00013{bottom:1118.213333pt;}
.y30_c00013{bottom:1121.280000pt;}
.y2e_c00013{bottom:1129.733333pt;}
.y2c_c00013{bottom:1130.493333pt;}
.y28_c00013{bottom:1131.266667pt;}
.y2a_c00013{bottom:1132.026667pt;}
.y29_c00013{bottom:1132.800000pt;}
.y2d_c00013{bottom:1134.333333pt;}
.y2b_c00013{bottom:1136.640000pt;}
.y2f_c00013{bottom:1141.253333pt;}
.y27_c00013{bottom:1145.853333pt;}
.y26_c00013{bottom:1148.160000pt;}
.y25_c00013{bottom:1148.933333pt;}
.y24_c00013{bottom:1150.466667pt;}
.y21_c00013{bottom:1166.586667pt;}
.y20_c00013{bottom:1167.360000pt;}
.y22_c00013{bottom:1168.893333pt;}
.y23_c00013{bottom:1169.666667pt;}
.y1f_c00013{bottom:1172.733333pt;}
.y1d_c00013{bottom:1180.413333pt;}
.y1e_c00013{bottom:1181.186667pt;}
.y18_c00013{bottom:1181.946667pt;}
.y1b_c00013{bottom:1182.720000pt;}
.y17_c00013{bottom:1184.253333pt;}
.y15_c00013{bottom:1185.026667pt;}
.y19_c00013{bottom:1185.786667pt;}
.y13_c00013{bottom:1186.560000pt;}
.y1a_c00013{bottom:1187.333333pt;}
.y1c_c00013{bottom:1188.093333pt;}
.y14_c00013{bottom:1188.866667pt;}
.y16_c00013{bottom:1189.626667pt;}
.yd_c00013{bottom:1198.853333pt;}
.ye_c00013{bottom:1200.386667pt;}
.yf_c00013{bottom:1201.146667pt;}
.y12_c00013{bottom:1202.693333pt;}
.y10_c00013{bottom:1204.986667pt;}
.yeb_c00013{bottom:1206.533333pt;}
.yc_c00013{bottom:1207.293333pt;}
.yb_c00013{bottom:1208.066667pt;}
.y11_c00013{bottom:1209.600000pt;}
.ya_c00013{bottom:1226.493333pt;}
.y9_c00013{bottom:1229.573333pt;}
.y7_c00013{bottom:1230.333333pt;}
.y8_c00013{bottom:1231.866667pt;}
.y5_c00013{bottom:1244.933333pt;}
.y6_c00013{bottom:1248.000000pt;}
.y4_c00013{bottom:1250.306667pt;}
.y1_c00013{bottom:1267.973333pt;}
.y2_c00013{bottom:1271.813333pt;}
.y3_c00013{bottom:1273.346667pt;}
.h4_c00013{height:2.764500pt;}
.h19_c00013{height:4.799479pt;}
.h1f_c00013{height:5.519401pt;}
.h17_c00013{height:8.303099pt;}
.h18_c00013{height:11.038802pt;}
.h3_c00013{height:13.822500pt;}
.h5_c00013{height:16.606198pt;}
.h1e_c00013{height:19.341901pt;}
.h2_c00013{height:22.125599pt;}
.h22_c00013{height:24.861302pt;}
.ha_c00013{height:27.645000pt;}
.hc_c00013{height:30.428698pt;}
.hb_c00013{height:33.164401pt;}
.hd_c00013{height:35.948099pt;}
.h1d_c00013{height:38.683802pt;}
.h14_c00013{height:41.467500pt;}
.h10_c00013{height:44.251198pt;}
.h7_c00013{height:46.986901pt;}
.h1c_c00013{height:49.770599pt;}
.h1b_c00013{height:52.506302pt;}
.h6_c00013{height:55.290000pt;}
.h8_c00013{height:58.073698pt;}
.h13_c00013{height:60.809401pt;}
.h9_c00013{height:63.593099pt;}
.h16_c00013{height:66.328802pt;}
.hf_c00013{height:69.112500pt;}
.h12_c00013{height:71.896198pt;}
.h1a_c00013{height:74.631901pt;}
.h20_c00013{height:77.415599pt;}
.h11_c00013{height:80.151302pt;}
.h15_c00013{height:82.935000pt;}
.h21_c00013{height:91.238099pt;}
.he_c00013{height:105.060599pt;}
.h1_c00013{height:1336.000000pt;}
.h0_c00013{height:1336.320000pt;}
.w1_c00013{width:956.666667pt;}
.w0_c00013{width:956.933333pt;}
.x0_c00013{left:0.000000pt;}
.xbd_c00013{left:194.306667pt;}
.xa6_c00013{left:197.373333pt;}
.xc1_c00013{left:200.453333pt;}
.x4f_c00013{left:205.053333pt;}
.x46_c00013{left:207.360000pt;}
.xa7_c00013{left:211.973333pt;}
.x3a_c00013{left:219.653333pt;}
.x30_c00013{left:224.253333pt;}
.x5e_c00013{left:225.786667pt;}
.x86_c00013{left:227.333333pt;}
.x3b_c00013{left:229.626667pt;}
.xae_c00013{left:234.240000pt;}
.x3c_c00013{left:238.080000pt;}
.x47_c00013{left:239.613333pt;}
.x31_c00013{left:241.920000pt;}
.xb2_c00013{left:243.453333pt;}
.xaf_c00013{left:252.666667pt;}
.x87_c00013{left:254.213333pt;}
.x79_c00013{left:258.053333pt;}
.x32_c00013{left:259.586667pt;}
.x97_c00013{left:261.893333pt;}
.x75_c00013{left:264.186667pt;}
.x8f_c00013{left:274.173333pt;}
.x55_c00013{left:277.253333pt;}
.x3d_c00013{left:280.320000pt;}
.xb3_c00013{left:286.466667pt;}
.x7_c00013{left:289.533333pt;}
.x5f_c00013{left:291.840000pt;}
.xb0_c00013{left:293.373333pt;}
.x70_c00013{left:294.906667pt;}
.xb9_c00013{left:297.986667pt;}
.x50_c00013{left:301.053333pt;}
.x3e_c00013{left:304.133333pt;}
.xc8_c00013{left:305.666667pt;}
.x76_c00013{left:307.973333pt;}
.x98_c00013{left:312.573333pt;}
.x1_c00013{left:314.106667pt;}
.xc_c00013{left:316.413333pt;}
.xa8_c00013{left:323.333333pt;}
.x8_c00013{left:324.866667pt;}
.xc2_c00013{left:327.933333pt;}
.x56_c00013{left:330.240000pt;}
.xd_c00013{left:331.773333pt;}
.x90_c00013{left:335.613333pt;}
.x65_c00013{left:339.453333pt;}
.xc9_c00013{left:341.760000pt;}
.xe_c00013{left:343.293333pt;}
.xa0_c00013{left:345.600000pt;}
.x18_c00013{left:347.906667pt;}
.x88_c00013{left:350.213333pt;}
.x22_c00013{left:352.506667pt;}
.xf_c00013{left:354.053333pt;}
.x7a_c00013{left:356.346667pt;}
.x9_c00013{left:358.653333pt;}
.xb4_c00013{left:360.186667pt;}
.x99_c00013{left:361.733333pt;}
.x2b_c00013{left:367.106667pt;}
.x48_c00013{left:368.640000pt;}
.x3f_c00013{left:374.013333pt;}
.x10_c00013{left:376.320000pt;}
.x19_c00013{left:380.160000pt;}
.x33_c00013{left:382.466667pt;}
.x49_c00013{left:384.773333pt;}
.x60_c00013{left:387.066667pt;}
.x89_c00013{left:389.373333pt;}
.xb5_c00013{left:395.520000pt;}
.x11_c00013{left:397.826667pt;}
.xc3_c00013{left:401.666667pt;}
.x2_c00013{left:404.733333pt;}
.x91_c00013{left:408.573333pt;}
.x7b_c00013{left:410.106667pt;}
.x66_c00013{left:414.720000pt;}
.x34_c00013{left:420.093333pt;}
.x3_c00013{left:423.173333pt;}
.xb1_c00013{left:430.080000pt;}
.xa1_c00013{left:431.613333pt;}
.x23_c00013{left:435.453333pt;}
.x71_c00013{left:436.986667pt;}
.xca_c00013{left:438.533333pt;}
.x57_c00013{left:440.826667pt;}
.x67_c00013{left:443.906667pt;}
.x4a_c00013{left:446.213333pt;}
.x1a_c00013{left:447.746667pt;}
.xa2_c00013{left:449.280000pt;}
.x2c_c00013{left:450.813333pt;}
.x51_c00013{left:452.346667pt;}
.xbe_c00013{left:454.653333pt;}
.xba_c00013{left:456.186667pt;}
.x68_c00013{left:460.026667pt;}
.x1b_c00013{left:463.866667pt;}
.xa3_c00013{left:466.946667pt;}
.x58_c00013{left:470.013333pt;}
.xa9_c00013{left:472.320000pt;}
.x35_c00013{left:474.626667pt;}
.xc7_c00013{left:477.693333pt;}
.x7c_c00013{left:480.000000pt;}
.xbf_c00013{left:481.533333pt;}
.x72_c00013{left:486.906667pt;}
.xa_c00013{left:492.293333pt;}
.x52_c00013{left:494.586667pt;}
.x8a_c00013{left:500.733333pt;}
.x61_c00013{left:503.040000pt;}
.x9a_c00013{left:510.720000pt;}
.x24_c00013{left:513.786667pt;}
.x92_c00013{left:516.093333pt;}
.xbb_c00013{left:519.933333pt;}
.xb6_c00013{left:524.546667pt;}
.xcb_c00013{left:526.853333pt;}
.x40_c00013{left:532.226667pt;}
.x1c_c00013{left:536.066667pt;}
.xcc_c00013{left:541.440000pt;}
.x36_c00013{left:543.746667pt;}
.xa4_c00013{left:545.280000pt;}
.x53_c00013{left:546.813333pt;}
.x9b_c00013{left:549.120000pt;}
.x2d_c00013{left:552.186667pt;}
.x73_c00013{left:555.266667pt;}
.x41_c00013{left:559.866667pt;}
.x59_c00013{left:562.173333pt;}
.x7d_c00013{left:568.320000pt;}
.x25_c00013{left:569.853333pt;}
.x8b_c00013{left:572.160000pt;}
.x7e_c00013{left:576.773333pt;}
.x1d_c00013{left:579.066667pt;}
.x26_c00013{left:580.613333pt;}
.xb7_c00013{left:582.146667pt;}
.x4b_c00013{left:585.213333pt;}
.x93_c00013{left:589.053333pt;}
.x37_c00013{left:592.133333pt;}
.x42_c00013{left:595.973333pt;}
.x77_c00013{left:600.573333pt;}
.xbc_c00013{left:603.653333pt;}
.x1e_c00013{left:605.186667pt;}
.x27_c00013{left:609.786667pt;}
.xc4_c00013{left:613.626667pt;}
.x54_c00013{left:615.933333pt;}
.xb_c00013{left:619.773333pt;}
.x94_c00013{left:621.306667pt;}
.x69_c00013{left:627.453333pt;}
.x7f_c00013{left:633.600000pt;}
.x12_c00013{left:636.666667pt;}
.x5a_c00013{left:640.506667pt;}
.x6a_c00013{left:644.346667pt;}
.x4c_c00013{left:647.426667pt;}
.x62_c00013{left:648.960000pt;}
.x1f_c00013{left:652.800000pt;}
.xc5_c00013{left:656.640000pt;}
.x95_c00013{left:658.946667pt;}
.x28_c00013{left:664.320000pt;}
.x80_c00013{left:665.853333pt;}
.x63_c00013{left:667.386667pt;}
.x38_c00013{left:670.466667pt;}
.x43_c00013{left:672.773333pt;}
.xaa_c00013{left:674.306667pt;}
.x4d_c00013{left:677.373333pt;}
.x78_c00013{left:681.213333pt;}
.x44_c00013{left:682.746667pt;}
.xc6_c00013{left:687.360000pt;}
.xc0_c00013{left:691.200000pt;}
.x8c_c00013{left:692.733333pt;}
.xb8_c00013{left:698.106667pt;}
.x13_c00013{left:699.653333pt;}
.x6b_c00013{left:702.720000pt;}
.x2e_c00013{left:705.026667pt;}
.x45_c00013{left:708.093333pt;}
.x29_c00013{left:710.400000pt;}
.x5b_c00013{left:712.706667pt;}
.xab_c00013{left:715.013333pt;}
.xa5_c00013{left:717.306667pt;}
.x74_c00013{left:718.853333pt;}
.x6c_c00013{left:723.453333pt;}
.x9c_c00013{left:728.066667pt;}
.x20_c00013{left:729.600000pt;}
.x5_c00013{left:734.973333pt;}
.xac_c00013{left:737.280000pt;}
.x6_c00013{left:742.653333pt;}
.x81_c00013{left:744.960000pt;}
.x4_c00013{left:747.266667pt;}
.x14_c00013{left:748.800000pt;}
.x21_c00013{left:751.106667pt;}
.x4e_c00013{left:754.173333pt;}
.x15_c00013{left:756.480000pt;}
.xcd_c00013{left:760.320000pt;}
.x9d_c00013{left:762.626667pt;}
.xce_c00013{left:768.773333pt;}
.x82_c00013{left:771.840000pt;}
.x2a_c00013{left:774.146667pt;}
.xcf_c00013{left:779.520000pt;}
.x64_c00013{left:781.053333pt;}
.x16_c00013{left:782.586667pt;}
.x8d_c00013{left:784.133333pt;}
.xad_c00013{left:787.200000pt;}
.x83_c00013{left:791.813333pt;}
.x6d_c00013{left:794.106667pt;}
.x17_c00013{left:798.720000pt;}
.x8e_c00013{left:801.026667pt;}
.x2f_c00013{left:809.466667pt;}
.x84_c00013{left:811.013333pt;}
.xd1_c00013{left:815.613333pt;}
.x5c_c00013{left:817.920000pt;}
.x39_c00013{left:822.533333pt;}
.x5d_c00013{left:826.373333pt;}
.x6e_c00013{left:827.907115pt;}
.x9e_c00013{left:837.120000pt;}
.x6f_c00013{left:838.653333pt;}
.x85_c00013{left:849.413333pt;}
.x9f_c00013{left:850.946667pt;}
.x96_c00013{left:860.933333pt;}
.xd0_c00013{left:866.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8201dc85323c27a4940a33a3.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.109863;font-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_c00014{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00014{transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);}
.m12d_c00014{transform:matrix(0.034875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034875,0.000000,0.000000,0.250000,0,0);}
.m1c_c00014{transform:matrix(0.044650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044650,0.000000,0.000000,0.250000,0,0);}
.mae_c00014{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);}
.m115_c00014{transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);}
.m12c_c00014{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.md1_c00014{transform:matrix(0.091050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091050,0.000000,0.000000,0.250000,0,0);}
.m147_c00014{transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);}
.m8e_c00014{transform:matrix(0.098700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098700,0.000000,0.000000,0.250000,0,0);}
.m13a_c00014{transform:matrix(0.111150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111150,0.000000,0.000000,0.250000,0,0);}
.m160_c00014{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m154_c00014{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00014{transform:matrix(0.118950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118950,0.000000,0.000000,0.250000,0,0);}
.m146_c00014{transform:matrix(0.119025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119025,0.000000,0.000000,0.250000,0,0);}
.me8_c00014{transform:matrix(0.121175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121175,0.000000,0.000000,0.250000,0,0);}
.m126_c00014{transform:matrix(0.124050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124050,0.000000,0.000000,0.250000,0,0);}
.m4e_c00014{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m61_c00014{transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);}
.mde_c00014{transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);}
.m122_c00014{transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);}
.m56_c00014{transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);}
.m17_c00014{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);}
.m12_c00014{transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);}
.mb1_c00014{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m153_c00014{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.med_c00014{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m152_c00014{transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);}
.m131_c00014{transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);}
.m10b_c00014{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m47_c00014{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m130_c00014{transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);}
.m140_c00014{transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);}
.me4_c00014{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);}
.mec_c00014{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.m43_c00014{transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);}
.m90_c00014{transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);}
.m4c_c00014{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.m96_c00014{transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);}
.m11a_c00014{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.m45_c00014{transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);}
.mc0_c00014{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.md8_c00014{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.m2d_c00014{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m1b_c00014{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);}
.m6b_c00014{transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);}
.m23_c00014{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.m4f_c00014{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m12b_c00014{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.mfd_c00014{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m124_c00014{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.m8f_c00014{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.m25_c00014{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.m44_c00014{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.meb_c00014{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);}
.m11_c00014{transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);}
.m13b_c00014{transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);}
.m3c_c00014{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m121_c00014{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.m143_c00014{transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);}
.mad_c00014{transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);}
.m123_c00014{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.m103_c00014{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.m91_c00014{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.m157_c00014{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m93_c00014{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.me2_c00014{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);}
.m139_c00014{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.m94_c00014{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.mb2_c00014{transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);}
.m3f_c00014{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m8d_c00014{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m31_c00014{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.me9_c00014{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m108_c00014{transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);}
.m40_c00014{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m3e_c00014{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m125_c00014{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m14d_c00014{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);}
.m2b_c00014{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00014{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);}
.m137_c00014{transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);}
.m15e_c00014{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.m13d_c00014{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.m113_c00014{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);}
.mea_c00014{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m158_c00014{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);}
.m136_c00014{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00014{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.mf0_c00014{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);}
.m109_c00014{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m110_c00014{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m29_c00014{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00014{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);}
.m15d_c00014{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m10d_c00014{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);}
.m14a_c00014{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.m4b_c00014{transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);}
.m104_c00014{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.mc2_c00014{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.mef_c00014{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.m10c_c00014{transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);}
.m24_c00014{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);}
.m135_c00014{transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);}
.m144_c00014{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m8_c00014{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);}
.m149_c00014{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);}
.m50_c00014{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);}
.m55_c00014{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);}
.mbf_c00014{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.me3_c00014{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);}
.m105_c00014{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.m72_c00014{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m150_c00014{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m101_c00014{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);}
.m27_c00014{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);}
.m106_c00014{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);}
.m13c_c00014{transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);}
.m8a_c00014{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);}
.mc5_c00014{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.mdb_c00014{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m111_c00014{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m52_c00014{transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);}
.m102_c00014{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m26_c00014{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.mf3_c00014{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m141_c00014{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.mf6_c00014{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);}
.m58_c00014{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m3d_c00014{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.m6f_c00014{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);}
.m156_c00014{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.m15b_c00014{transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);}
.m9e_c00014{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);}
.m114_c00014{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);}
.mfc_c00014{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.md3_c00014{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);}
.m10e_c00014{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);}
.md0_c00014{transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);}
.mfe_c00014{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);}
.me5_c00014{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.mbb_c00014{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);}
.m46_c00014{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);}
.m71_c00014{transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);}
.m159_c00014{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.mb_c00014{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m2a_c00014{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.mca_c00014{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);}
.mbc_c00014{transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);}
.mf2_c00014{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);}
.md2_c00014{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);}
.m155_c00014{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.m145_c00014{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);}
.m69_c00014{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);}
.m9a_c00014{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m10a_c00014{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);}
.m142_c00014{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.mcc_c00014{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m99_c00014{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);}
.m97_c00014{transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);}
.m85_c00014{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.m18_c00014{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);}
.m98_c00014{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);}
.m68_c00014{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);}
.m5c_c00014{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.mc7_c00014{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m127_c00014{transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);}
.m9c_c00014{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);}
.m118_c00014{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);}
.m117_c00014{transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);}
.m88_c00014{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m133_c00014{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);}
.mcb_c00014{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m92_c00014{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m120_c00014{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m66_c00014{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.mc4_c00014{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);}
.m15_c00014{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.m15c_c00014{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.m63_c00014{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);}
.mb0_c00014{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);}
.mda_c00014{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);}
.m28_c00014{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.m100_c00014{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00014{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);}
.m6e_c00014{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);}
.maa_c00014{transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);}
.mfa_c00014{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);}
.mf1_c00014{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);}
.m11f_c00014{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);}
.ma5_c00014{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);}
.mf9_c00014{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.m14_c00014{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);}
.m41_c00014{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);}
.m6c_c00014{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.m14b_c00014{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);}
.m11c_c00014{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);}
.m13f_c00014{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);}
.m11e_c00014{transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);}
.mf8_c00014{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);}
.ma9_c00014{transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);}
.m14c_c00014{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);}
.mb9_c00014{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);}
.m22_c00014{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);}
.mff_c00014{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);}
.m119_c00014{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.m128_c00014{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);}
.m8b_c00014{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.me6_c00014{transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);}
.mdd_c00014{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.m11d_c00014{transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);}
.m89_c00014{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);}
.ma3_c00014{transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);}
.md7_c00014{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);}
.m151_c00014{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);}
.m11b_c00014{transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);}
.m10f_c00014{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.md5_c00014{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);}
.m9f_c00014{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.mbe_c00014{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);}
.m134_c00014{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_c00014{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);}
.m53_c00014{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);}
.mb3_c00014{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m12f_c00014{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.m1a_c00014{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.mb8_c00014{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);}
.mc3_c00014{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);}
.m74_c00014{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);}
.m8c_c00014{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.m12a_c00014{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md4_c00014{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);}
.mab_c00014{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);}
.m65_c00014{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);}
.mdf_c00014{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);}
.m30_c00014{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);}
.md9_c00014{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.me0_c00014{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.maf_c00014{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);}
.mb6_c00014{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.mf4_c00014{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mbd_c00014{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);}
.m13_c00014{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m62_c00014{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);}
.m54_c00014{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);}
.ma7_c00014{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);}
.m64_c00014{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);}
.m70_c00014{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m33_c00014{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m34_c00014{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00014{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);}
.mc1_c00014{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m16_c00014{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_c00014{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);}
.m95_c00014{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00014{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);}
.m5_c00014{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m148_c00014{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m42_c00014{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);}
.m3_c00014{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mba_c00014{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);}
.m2e_c00014{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);}
.m87_c00014{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00014{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m112_c00014{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);}
.m7a_c00014{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00014{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00014{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);}
.m5f_c00014{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c00014{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00014{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00014{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00014{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00014{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00014{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00014{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m48_c00014{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);}
.mdc_c00014{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00014{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m51_c00014{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m75_c00014{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00014{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);}
.m67_c00014{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);}
.ma1_c00014{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00014{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00014{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);}
.mce_c00014{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7_c00014{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00014{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00014{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m37_c00014{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);}
.ma_c00014{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m138_c00014{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m38_c00014{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m165_c00014{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00014{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);}
.m80_c00014{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00014{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);}
.m129_c00014{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);}
.mac_c00014{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);}
.m82_c00014{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00014{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m73_c00014{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);}
.m83_c00014{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00014{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.me_c00014{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00014{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00014{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m132_c00014{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00014{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c00014{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);}
.ma6_c00014{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md6_c00014{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00014{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00014{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.me1_c00014{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m49_c00014{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00014{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);}
.ma8_c00014{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m116_c00014{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m35_c00014{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mee_c00014{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m10_c00014{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);}
.m4d_c00014{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m0_c00014{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m84_c00014{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m20_c00014{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mf_c00014{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m81_c00014{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m36_c00014{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);}
.m79_c00014{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m57_c00014{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m15a_c00014{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.md_c00014{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00014{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m107_c00014{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m77_c00014{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);}
.m2_c00014{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m39_c00014{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m166_c00014{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00014{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00014{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m60_c00014{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m86_c00014{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m32_c00014{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc_c00014{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m161_c00014{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m78_c00014{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m14e_c00014{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m163_c00014{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00014{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m164_c00014{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.me7_c00014{transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00014{transform:matrix(2.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.050000,0.000000,0.000000,0.250000,0,0);}
.m15f_c00014{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.m162_c00014{transform:matrix(2.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.540000,0.000000,0.000000,0.250000,0,0);}
.m76_c00014{transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);}
.m1_c00014{transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);}
.m14f_c00014{transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);}
.v3_c00014{vertical-align:-6.900000px;}
.v0_c00014{vertical-align:0.000000px;}
.v4_c00014{vertical-align:3.480000px;}
.v2_c00014{vertical-align:10.380000px;}
.v1_c00014{vertical-align:41.460000px;}
.ls5_c00014{letter-spacing:0.000000px;}
.ls1_c00014{letter-spacing:17.964360px;}
.ls0_c00014{letter-spacing:54.059160px;}
.ls3_c00014{letter-spacing:131.024688px;}
.ls4_c00014{letter-spacing:646.338000px;}
.ls2_c00014{letter-spacing:1011.855167px;}
.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:3.456000px;}
.fs14_c00014{font-size:6.000000px;}
.fs1_c00014{font-size:6.900000px;}
.fsb_c00014{font-size:10.380000px;}
.fs18_c00014{font-size:13.800000px;}
.fs0_c00014{font-size:17.280000px;}
.fs1d_c00014{font-size:20.760000px;}
.fs17_c00014{font-size:24.180000px;}
.fs22_c00014{font-size:27.660000px;}
.fs16_c00014{font-size:31.080000px;}
.fse_c00014{font-size:34.560000px;}
.fs23_c00014{font-size:38.040000px;}
.fs15_c00014{font-size:41.460000px;}
.fs2_c00014{font-size:44.940000px;}
.fs11_c00014{font-size:48.360000px;}
.fsa_c00014{font-size:51.840000px;}
.fs9_c00014{font-size:55.320000px;}
.fs4_c00014{font-size:58.740000px;}
.fs3_c00014{font-size:62.220000px;}
.fs8_c00014{font-size:65.640000px;}
.fs6_c00014{font-size:69.120000px;}
.fsf_c00014{font-size:72.600000px;}
.fs7_c00014{font-size:76.020000px;}
.fs12_c00014{font-size:79.500000px;}
.fs21_c00014{font-size:82.920000px;}
.fsc_c00014{font-size:86.400000px;}
.fs13_c00014{font-size:89.880000px;}
.fs28_c00014{font-size:93.300000px;}
.fs10_c00014{font-size:96.780000px;}
.fsd_c00014{font-size:100.200000px;}
.fs1f_c00014{font-size:103.680000px;}
.fs1a_c00014{font-size:107.160000px;}
.fs1b_c00014{font-size:110.580000px;}
.fs20_c00014{font-size:114.060000px;}
.fs19_c00014{font-size:117.480000px;}
.fs27_c00014{font-size:124.440000px;}
.fs25_c00014{font-size:127.860000px;}
.fs26_c00014{font-size:138.240000px;}
.fs1c_c00014{font-size:141.720000px;}
.fs1e_c00014{font-size:148.620000px;}
.fs24_c00014{font-size:169.320000px;}
.y0_c00014{bottom:0.000000px;}
.y1bb_c00014{bottom:292.890000px;}
.y1b8_c00014{bottom:302.400000px;}
.y1b9_c00014{bottom:304.995000px;}
.y1b0_c00014{bottom:308.445000px;}
.y1af_c00014{bottom:309.315000px;}
.y1b1_c00014{bottom:310.170000px;}
.y1ba_c00014{bottom:311.040000px;}
.y1b3_c00014{bottom:311.910000px;}
.y1b2_c00014{bottom:316.230000px;}
.y1b4_c00014{bottom:317.955000px;}
.y1b5_c00014{bottom:320.550000px;}
.y1b7_c00014{bottom:322.275000px;}
.y1b6_c00014{bottom:323.130000px;}
.y1a8_c00014{bottom:325.725000px;}
.y1a7_c00014{bottom:327.450000px;}
.y1a5_c00014{bottom:329.190000px;}
.y1a9_c00014{bottom:331.770000px;}
.y1aa_c00014{bottom:332.640000px;}
.y1a6_c00014{bottom:333.510000px;}
.y1ad_c00014{bottom:334.365000px;}
.y1ab_c00014{bottom:337.830000px;}
.y1ac_c00014{bottom:338.685000px;}
.y1ae_c00014{bottom:341.280000px;}
.y19d_c00014{bottom:343.875000px;}
.y19f_c00014{bottom:344.730000px;}
.y194_c00014{bottom:348.195000px;}
.y1a0_c00014{bottom:349.050000px;}
.y196_c00014{bottom:349.920000px;}
.y19e_c00014{bottom:350.790000px;}
.y1a4_c00014{bottom:351.645000px;}
.y198_c00014{bottom:352.515000px;}
.y193_c00014{bottom:353.370000px;}
.y1a3_c00014{bottom:354.240000px;}
.y1a1_c00014{bottom:355.110000px;}
.y195_c00014{bottom:355.965000px;}
.y1a2_c00014{bottom:356.835000px;}
.y197_c00014{bottom:357.690000px;}
.y199_c00014{bottom:358.560000px;}
.y19b_c00014{bottom:359.430000px;}
.y19a_c00014{bottom:360.285000px;}
.y19c_c00014{bottom:361.155000px;}
.y18d_c00014{bottom:368.925000px;}
.y191_c00014{bottom:374.115000px;}
.y18e_c00014{bottom:374.970000px;}
.y190_c00014{bottom:375.840000px;}
.y18f_c00014{bottom:376.710000px;}
.y192_c00014{bottom:377.565000px;}
.y185_c00014{bottom:391.395000px;}
.y187_c00014{bottom:393.120000px;}
.y188_c00014{bottom:393.990000px;}
.y186_c00014{bottom:397.440000px;}
.y189_c00014{bottom:400.035000px;}
.y18a_c00014{bottom:400.890000px;}
.y18b_c00014{bottom:401.760000px;}
.y18c_c00014{bottom:402.630000px;}
.y180_c00014{bottom:408.675000px;}
.y181_c00014{bottom:409.530000px;}
.y182_c00014{bottom:411.270000px;}
.y184_c00014{bottom:413.850000px;}
.y183_c00014{bottom:419.910000px;}
.y17a_c00014{bottom:432.000000px;}
.y17d_c00014{bottom:433.725000px;}
.y179_c00014{bottom:436.320000px;}
.y17b_c00014{bottom:438.045000px;}
.y17c_c00014{bottom:438.915000px;}
.y17e_c00014{bottom:440.640000px;}
.y17f_c00014{bottom:442.365000px;}
.y177_c00014{bottom:465.690000px;}
.y16f_c00014{bottom:467.430000px;}
.y178_c00014{bottom:468.285000px;}
.y16e_c00014{bottom:470.880000px;}
.y175_c00014{bottom:472.605000px;}
.y171_c00014{bottom:476.925000px;}
.y172_c00014{bottom:477.795000px;}
.y173_c00014{bottom:479.520000px;}
.y174_c00014{bottom:480.390000px;}
.y170_c00014{bottom:482.970000px;}
.y165_c00014{bottom:503.715000px;}
.y167_c00014{bottom:505.440000px;}
.y176_c00014{bottom:508.035000px;}
.y166_c00014{bottom:509.760000px;}
.y169_c00014{bottom:510.630000px;}
.y16a_c00014{bottom:512.355000px;}
.y168_c00014{bottom:513.210000px;}
.y16d_c00014{bottom:516.675000px;}
.y16b_c00014{bottom:520.125000px;}
.y16c_c00014{bottom:520.995000px;}
.y163_c00014{bottom:552.960000px;}
.y164_c00014{bottom:556.410000px;}
.y15a_c00014{bottom:563.325000px;}
.y15b_c00014{bottom:565.050000px;}
.y15c_c00014{bottom:570.240000px;}
.y15e_c00014{bottom:571.965000px;}
.y161_c00014{bottom:578.880000px;}
.y15f_c00014{bottom:580.605000px;}
.y15d_c00014{bottom:582.330000px;}
.y160_c00014{bottom:583.200000px;}
.y152_c00014{bottom:584.070000px;}
.y154_c00014{bottom:584.925000px;}
.y155_c00014{bottom:587.520000px;}
.y162_c00014{bottom:588.390000px;}
.y153_c00014{bottom:589.245000px;}
.y157_c00014{bottom:590.970000px;}
.y158_c00014{bottom:591.840000px;}
.y156_c00014{bottom:593.565000px;}
.y159_c00014{bottom:594.435000px;}
.y151_c00014{bottom:602.205000px;}
.y147_c00014{bottom:603.930000px;}
.y14a_c00014{bottom:605.670000px;}
.y149_c00014{bottom:606.525000px;}
.y14d_c00014{bottom:609.120000px;}
.y148_c00014{bottom:609.990000px;}
.y14e_c00014{bottom:610.845000px;}
.y14b_c00014{bottom:612.570000px;}
.y14c_c00014{bottom:614.310000px;}
.y150_c00014{bottom:615.165000px;}
.y14f_c00014{bottom:616.890000px;}
.y1c2_c00014{bottom:619.485000px;}
.y141_c00014{bottom:624.675000px;}
.y142_c00014{bottom:625.530000px;}
.y140_c00014{bottom:626.400000px;}
.y143_c00014{bottom:627.270000px;}
.y145_c00014{bottom:630.720000px;}
.y144_c00014{bottom:635.040000px;}
.y146_c00014{bottom:635.910000px;}
.y133_c00014{bottom:642.810000px;}
.y136_c00014{bottom:644.550000px;}
.y134_c00014{bottom:647.130000px;}
.y138_c00014{bottom:648.000000px;}
.y139_c00014{bottom:648.870000px;}
.y135_c00014{bottom:649.725000px;}
.y13b_c00014{bottom:651.450000px;}
.y137_c00014{bottom:652.320000px;}
.y13a_c00014{bottom:653.190000px;}
.y13e_c00014{bottom:655.770000px;}
.y13d_c00014{bottom:656.640000px;}
.y13c_c00014{bottom:657.510000px;}
.y13f_c00014{bottom:662.685000px;}
.y128_c00014{bottom:664.410000px;}
.y129_c00014{bottom:665.280000px;}
.y12b_c00014{bottom:666.150000px;}
.y12c_c00014{bottom:668.730000px;}
.y12e_c00014{bottom:669.600000px;}
.y12f_c00014{bottom:670.470000px;}
.y12a_c00014{bottom:671.325000px;}
.y131_c00014{bottom:672.195000px;}
.y132_c00014{bottom:673.050000px;}
.y12d_c00014{bottom:673.920000px;}
.y130_c00014{bottom:676.515000px;}
.y11f_c00014{bottom:685.155000px;}
.y121_c00014{bottom:686.880000px;}
.y122_c00014{bottom:688.605000px;}
.y120_c00014{bottom:691.200000px;}
.y124_c00014{bottom:692.070000px;}
.y126_c00014{bottom:694.650000px;}
.y123_c00014{bottom:696.390000px;}
.y127_c00014{bottom:697.245000px;}
.y125_c00014{bottom:698.115000px;}
.y118_c00014{bottom:706.755000px;}
.y119_c00014{bottom:708.480000px;}
.y117_c00014{bottom:710.205000px;}
.y11b_c00014{bottom:711.075000px;}
.y11e_c00014{bottom:711.930000px;}
.y11a_c00014{bottom:712.800000px;}
.y11c_c00014{bottom:716.250000px;}
.y11d_c00014{bottom:717.120000px;}
.y10f_c00014{bottom:719.715000px;}
.y110_c00014{bottom:722.310000px;}
.y111_c00014{bottom:724.890000px;}
.y112_c00014{bottom:725.760000px;}
.y10e_c00014{bottom:726.630000px;}
.y114_c00014{bottom:728.355000px;}
.y116_c00014{bottom:730.080000px;}
.y113_c00014{bottom:735.270000px;}
.y115_c00014{bottom:736.995000px;}
.y104_c00014{bottom:742.170000px;}
.y107_c00014{bottom:746.490000px;}
.y108_c00014{bottom:747.360000px;}
.y105_c00014{bottom:749.085000px;}
.y106_c00014{bottom:749.955000px;}
.y10b_c00014{bottom:750.810000px;}
.y109_c00014{bottom:753.405000px;}
.y10a_c00014{bottom:755.130000px;}
.y10d_c00014{bottom:756.000000px;}
.y10c_c00014{bottom:756.870000px;}
.yf8_c00014{bottom:764.640000px;}
.yfb_c00014{bottom:765.510000px;}
.yfd_c00014{bottom:767.235000px;}
.yfc_c00014{bottom:768.090000px;}
.yfa_c00014{bottom:768.960000px;}
.yfe_c00014{bottom:770.685000px;}
.y101_c00014{bottom:772.410000px;}
.yff_c00014{bottom:774.150000px;}
.y100_c00014{bottom:775.005000px;}
.y102_c00014{bottom:777.600000px;}
.y103_c00014{bottom:780.195000px;}
.yf9_c00014{bottom:781.050000px;}
.yf0_c00014{bottom:782.790000px;}
.yf1_c00014{bottom:784.515000px;}
.yf4_c00014{bottom:787.965000px;}
.yf2_c00014{bottom:790.560000px;}
.yf3_c00014{bottom:791.430000px;}
.yf5_c00014{bottom:793.155000px;}
.yf6_c00014{bottom:795.750000px;}
.yf7_c00014{bottom:796.605000px;}
.ye8_c00014{bottom:802.650000px;}
.yea_c00014{bottom:805.245000px;}
.ye7_c00014{bottom:807.840000px;}
.yed_c00014{bottom:809.565000px;}
.yee_c00014{bottom:811.290000px;}
.yeb_c00014{bottom:812.160000px;}
.yec_c00014{bottom:813.030000px;}
.ye9_c00014{bottom:815.610000px;}
.yef_c00014{bottom:816.480000px;}
.yde_c00014{bottom:825.120000px;}
.ye0_c00014{bottom:826.845000px;}
.ydf_c00014{bottom:829.440000px;}
.ye1_c00014{bottom:831.165000px;}
.ye5_c00014{bottom:832.890000px;}
.ye2_c00014{bottom:833.760000px;}
.ye3_c00014{bottom:834.630000px;}
.ye4_c00014{bottom:836.355000px;}
.ye6_c00014{bottom:837.210000px;}
.yd7_c00014{bottom:847.590000px;}
.yd6_c00014{bottom:848.445000px;}
.yd5_c00014{bottom:850.170000px;}
.ydd_c00014{bottom:851.040000px;}
.yd8_c00014{bottom:851.910000px;}
.yd9_c00014{bottom:852.765000px;}
.yda_c00014{bottom:853.635000px;}
.ydb_c00014{bottom:854.490000px;}
.ydc_c00014{bottom:856.230000px;}
.yce_c00014{bottom:866.595000px;}
.ycd_c00014{bottom:867.450000px;}
.ycc_c00014{bottom:868.320000px;}
.yd1_c00014{bottom:870.045000px;}
.ycf_c00014{bottom:870.915000px;}
.yd4_c00014{bottom:872.640000px;}
.yd0_c00014{bottom:874.365000px;}
.yd2_c00014{bottom:875.235000px;}
.yd3_c00014{bottom:876.090000px;}
.yc2_c00014{bottom:884.730000px;}
.yc3_c00014{bottom:886.470000px;}
.yc6_c00014{bottom:889.050000px;}
.yc4_c00014{bottom:890.790000px;}
.yca_c00014{bottom:891.645000px;}
.yc5_c00014{bottom:892.515000px;}
.yc7_c00014{bottom:893.370000px;}
.yc8_c00014{bottom:895.110000px;}
.yc9_c00014{bottom:895.965000px;}
.ycb_c00014{bottom:896.835000px;}
.yb6_c00014{bottom:903.750000px;}
.yb7_c00014{bottom:904.605000px;}
.yba_c00014{bottom:905.475000px;}
.ybb_c00014{bottom:907.200000px;}
.yb8_c00014{bottom:908.925000px;}
.ybd_c00014{bottom:909.795000px;}
.yb9_c00014{bottom:910.650000px;}
.yc1_c00014{bottom:911.520000px;}
.yc0_c00014{bottom:913.245000px;}
.ybc_c00014{bottom:914.115000px;}
.ybe_c00014{bottom:916.710000px;}
.ybf_c00014{bottom:917.565000px;}
.yb5_c00014{bottom:921.030000px;}
.yae_c00014{bottom:926.205000px;}
.yaf_c00014{bottom:927.075000px;}
.yb1_c00014{bottom:927.930000px;}
.yad_c00014{bottom:928.800000px;}
.yab_c00014{bottom:930.525000px;}
.yac_c00014{bottom:931.395000px;}
.yb2_c00014{bottom:932.250000px;}
.yb0_c00014{bottom:933.120000px;}
.yb3_c00014{bottom:933.990000px;}
.yb4_c00014{bottom:937.440000px;}
.ya4_c00014{bottom:946.950000px;}
.ya6_c00014{bottom:948.675000px;}
.ya5_c00014{bottom:952.125000px;}
.ya7_c00014{bottom:952.995000px;}
.yaa_c00014{bottom:953.850000px;}
.ya8_c00014{bottom:954.720000px;}
.ya9_c00014{bottom:956.445000px;}
.y98_c00014{bottom:965.955000px;}
.y99_c00014{bottom:966.810000px;}
.y9a_c00014{bottom:967.680000px;}
.y9d_c00014{bottom:972.000000px;}
.y9e_c00014{bottom:972.870000px;}
.ya0_c00014{bottom:973.725000px;}
.y9b_c00014{bottom:974.595000px;}
.y9c_c00014{bottom:975.450000px;}
.ya2_c00014{bottom:976.320000px;}
.y9f_c00014{bottom:977.190000px;}
.ya1_c00014{bottom:978.915000px;}
.ya3_c00014{bottom:982.365000px;}
.y91_c00014{bottom:986.685000px;}
.y92_c00014{bottom:988.410000px;}
.y90_c00014{bottom:989.280000px;}
.y8f_c00014{bottom:990.150000px;}
.y95_c00014{bottom:991.875000px;}
.y93_c00014{bottom:993.600000px;}
.y94_c00014{bottom:996.195000px;}
.y96_c00014{bottom:997.920000px;}
.y97_c00014{bottom:1000.515000px;}
.y85_c00014{bottom:1003.965000px;}
.y86_c00014{bottom:1007.430000px;}
.y89_c00014{bottom:1008.285000px;}
.y88_c00014{bottom:1009.155000px;}
.y8b_c00014{bottom:1013.475000px;}
.y8a_c00014{bottom:1015.200000px;}
.y87_c00014{bottom:1016.925000px;}
.y8d_c00014{bottom:1018.650000px;}
.y8c_c00014{bottom:1020.390000px;}
.y8e_c00014{bottom:1023.840000px;}
.y7e_c00014{bottom:1029.030000px;}
.y7d_c00014{bottom:1030.755000px;}
.y1c1_c00014{bottom:1031.610000px;}
.y7f_c00014{bottom:1032.480000px;}
.y82_c00014{bottom:1034.205000px;}
.y80_c00014{bottom:1035.930000px;}
.y84_c00014{bottom:1036.800000px;}
.y81_c00014{bottom:1037.670000px;}
.y83_c00014{bottom:1039.395000px;}
.y1bf_c00014{bottom:1040.250000px;}
.y1c0_c00014{bottom:1041.120000px;}
.y78_c00014{bottom:1046.310000px;}
.y7a_c00014{bottom:1050.630000px;}
.y7b_c00014{bottom:1051.485000px;}
.y70_c00014{bottom:1052.355000px;}
.y71_c00014{bottom:1053.210000px;}
.y79_c00014{bottom:1054.080000px;}
.y44_c00014{bottom:1056.675000px;}
.y43_c00014{bottom:1057.530000px;}
.y6e_c00014{bottom:1058.400000px;}
.y7c_c00014{bottom:1059.270000px;}
.y76_c00014{bottom:1060.125000px;}
.y75_c00014{bottom:1060.995000px;}
.y6f_c00014{bottom:1061.850000px;}
.y6d_c00014{bottom:1062.720000px;}
.y73_c00014{bottom:1064.445000px;}
.y74_c00014{bottom:1066.170000px;}
.y72_c00014{bottom:1067.040000px;}
.y65_c00014{bottom:1067.910000px;}
.y67_c00014{bottom:1070.490000px;}
.y69_c00014{bottom:1071.360000px;}
.y77_c00014{bottom:1072.230000px;}
.y66_c00014{bottom:1073.955000px;}
.y6a_c00014{bottom:1074.810000px;}
.y6b_c00014{bottom:1075.680000px;}
.y68_c00014{bottom:1077.405000px;}
.y6c_c00014{bottom:1078.275000px;}
.y5d_c00014{bottom:1086.915000px;}
.y5e_c00014{bottom:1088.640000px;}
.y60_c00014{bottom:1089.510000px;}
.y5f_c00014{bottom:1092.960000px;}
.y63_c00014{bottom:1093.830000px;}
.y64_c00014{bottom:1095.555000px;}
.y61_c00014{bottom:1097.280000px;}
.y62_c00014{bottom:1098.150000px;}
.y57_c00014{bottom:1108.515000px;}
.y56_c00014{bottom:1109.370000px;}
.y54_c00014{bottom:1110.240000px;}
.y55_c00014{bottom:1112.835000px;}
.y58_c00014{bottom:1116.285000px;}
.y59_c00014{bottom:1118.010000px;}
.y5a_c00014{bottom:1119.750000px;}
.y5b_c00014{bottom:1121.475000px;}
.y5c_c00014{bottom:1124.070000px;}
.y4f_c00014{bottom:1130.970000px;}
.y51_c00014{bottom:1131.840000px;}
.y4e_c00014{bottom:1133.565000px;}
.y53_c00014{bottom:1135.290000px;}
.y50_c00014{bottom:1136.160000px;}
.y52_c00014{bottom:1137.030000px;}
.y4d_c00014{bottom:1137.885000px;}
.y1be_c00014{bottom:1141.350000px;}
.y1bd_c00014{bottom:1142.205000px;}
.y45_c00014{bottom:1152.570000px;}
.y46_c00014{bottom:1155.165000px;}
.y47_c00014{bottom:1156.035000px;}
.y4a_c00014{bottom:1156.890000px;}
.y49_c00014{bottom:1157.760000px;}
.y48_c00014{bottom:1159.485000px;}
.y4c_c00014{bottom:1162.950000px;}
.y4b_c00014{bottom:1169.850000px;}
.y3e_c00014{bottom:1172.445000px;}
.y3f_c00014{bottom:1174.170000px;}
.y3d_c00014{bottom:1176.765000px;}
.y41_c00014{bottom:1180.230000px;}
.y42_c00014{bottom:1183.680000px;}
.y40_c00014{bottom:1188.870000px;}
.y3b_c00014{bottom:1196.640000px;}
.y3c_c00014{bottom:1200.090000px;}
.y39_c00014{bottom:1209.600000px;}
.y3a_c00014{bottom:1213.920000px;}
.y33_c00014{bottom:1242.435000px;}
.y34_c00014{bottom:1246.755000px;}
.y38_c00014{bottom:1248.480000px;}
.y32_c00014{bottom:1249.350000px;}
.y36_c00014{bottom:1251.075000px;}
.y31_c00014{bottom:1253.670000px;}
.y35_c00014{bottom:1254.525000px;}
.y37_c00014{bottom:1255.395000px;}
.y1bc_c00014{bottom:1270.080000px;}
.y29_c00014{bottom:1293.405000px;}
.y2a_c00014{bottom:1295.130000px;}
.y2d_c00014{bottom:1299.450000px;}
.y2c_c00014{bottom:1301.190000px;}
.y2b_c00014{bottom:1303.770000px;}
.y2e_c00014{bottom:1307.235000px;}
.y2f_c00014{bottom:1308.090000px;}
.y21_c00014{bottom:1312.410000px;}
.y22_c00014{bottom:1313.280000px;}
.y30_c00014{bottom:1314.150000px;}
.y23_c00014{bottom:1315.005000px;}
.y20_c00014{bottom:1316.730000px;}
.y26_c00014{bottom:1317.600000px;}
.y27_c00014{bottom:1319.325000px;}
.y24_c00014{bottom:1321.920000px;}
.y25_c00014{bottom:1322.790000px;}
.y19_c00014{bottom:1329.690000px;}
.y28_c00014{bottom:1332.285000px;}
.y1b_c00014{bottom:1333.155000px;}
.y1a_c00014{bottom:1335.750000px;}
.y1c_c00014{bottom:1336.605000px;}
.y1d_c00014{bottom:1337.475000px;}
.y1e_c00014{bottom:1339.200000px;}
.y1f_c00014{bottom:1342.650000px;}
.ye_c00014{bottom:1350.435000px;}
.yf_c00014{bottom:1352.160000px;}
.y10_c00014{bottom:1353.030000px;}
.y12_c00014{bottom:1353.885000px;}
.y11_c00014{bottom:1354.755000px;}
.y15_c00014{bottom:1356.480000px;}
.y14_c00014{bottom:1357.350000px;}
.y17_c00014{bottom:1358.205000px;}
.y13_c00014{bottom:1360.800000px;}
.y16_c00014{bottom:1361.670000px;}
.y18_c00014{bottom:1364.250000px;}
.yd_c00014{bottom:1370.310000px;}
.y7_c00014{bottom:1380.675000px;}
.y5_c00014{bottom:1383.270000px;}
.y6_c00014{bottom:1384.125000px;}
.y8_c00014{bottom:1385.850000px;}
.y4_c00014{bottom:1386.720000px;}
.y9_c00014{bottom:1387.590000px;}
.ya_c00014{bottom:1388.445000px;}
.yc_c00014{bottom:1396.230000px;}
.yb_c00014{bottom:1400.550000px;}
.y2_c00014{bottom:1404.870000px;}
.y3_c00014{bottom:1406.595000px;}
.y1_c00014{bottom:1449.795000px;}
.hd_c00014{height:3.110063px;}
.h16_c00014{height:5.399414px;}
.h3_c00014{height:6.209326px;}
.h2c_c00014{height:6.590063px;}
.hc_c00014{height:9.340986px;}
.h1a_c00014{height:12.418652px;}
.h2_c00014{height:15.550313px;}
.h1f_c00014{height:18.681973px;}
.h19_c00014{height:21.759639px;}
.h24_c00014{height:24.891299px;}
.h18_c00014{height:27.968965px;}
.h10_c00014{height:31.100625px;}
.h25_c00014{height:34.232285px;}
.h17_c00014{height:37.309951px;}
.h4_c00014{height:40.441611px;}
.h13_c00014{height:43.519277px;}
.hb_c00014{height:46.650937px;}
.ha_c00014{height:49.782598px;}
.h6_c00014{height:52.860264px;}
.h5_c00014{height:55.991924px;}
.h26_c00014{height:57.030938px;}
.h9_c00014{height:59.069590px;}
.h7_c00014{height:62.201250px;}
.h11_c00014{height:65.332910px;}
.h8_c00014{height:68.410576px;}
.h14_c00014{height:71.542236px;}
.h23_c00014{height:74.619902px;}
.he_c00014{height:77.751563px;}
.h15_c00014{height:80.883223px;}
.h2b_c00014{height:83.960889px;}
.h12_c00014{height:87.092549px;}
.hf_c00014{height:90.170215px;}
.h21_c00014{height:93.301875px;}
.h1c_c00014{height:96.433535px;}
.h1d_c00014{height:99.511201px;}
.h22_c00014{height:102.642861px;}
.h1b_c00014{height:105.720527px;}
.h2a_c00014{height:111.983848px;}
.h28_c00014{height:115.061514px;}
.h29_c00014{height:124.402500px;}
.h1e_c00014{height:127.534160px;}
.h20_c00014{height:133.743486px;}
.h27_c00014{height:152.371465px;}
.h0_c00014{height:1515.450000px;}
.h1_c00014{height:1515.750000px;}
.w1_c00014{width:1065.000000px;}
.w0_c00014{width:1065.315000px;}
.x0_c00014{left:0.000000px;}
.x4e_c00014{left:107.130000px;}
.x4f_c00014{left:114.915000px;}
.xd8_c00014{left:141.690000px;}
.xd1_c00014{left:144.285000px;}
.x75_c00014{left:146.010000px;}
.x6d_c00014{left:149.475000px;}
.x112_c00014{left:152.070000px;}
.x115_c00014{left:153.795000px;}
.xcd_c00014{left:157.245000px;}
.xb9_c00014{left:165.030000px;}
.x7f_c00014{left:171.075000px;}
.x60_c00014{left:172.800000px;}
.x91_c00014{left:174.525000px;}
.x12_c00014{left:176.250000px;}
.x113_c00014{left:180.570000px;}
.xe3_c00014{left:182.310000px;}
.xd2_c00014{left:184.035000px;}
.xba_c00014{left:185.760000px;}
.x116_c00014{left:187.485000px;}
.x2a_c00014{left:191.805000px;}
.x61_c00014{left:194.400000px;}
.x13_c00014{left:196.995000px;}
.x21_c00014{left:198.720000px;}
.xbb_c00014{left:202.170000px;}
.xe0_c00014{left:205.635000px;}
.x22_c00014{left:207.360000px;}
.x5a_c00014{left:209.085000px;}
.x6e_c00014{left:210.810000px;}
.x76_c00014{left:213.405000px;}
.xce_c00014{left:215.130000px;}
.x11c_c00014{left:216.870000px;}
.x108_c00014{left:224.640000px;}
.x5b_c00014{left:228.960000px;}
.x62_c00014{left:230.685000px;}
.x23_c00014{left:233.280000px;}
.xfe_c00014{left:236.730000px;}
.xbc_c00014{left:241.050000px;}
.x6f_c00014{left:243.645000px;}
.x3f_c00014{left:246.240000px;}
.x117_c00014{left:248.835000px;}
.xe4_c00014{left:250.560000px;}
.x11d_c00014{left:254.010000px;}
.x35_c00014{left:255.750000px;}
.xee_c00014{left:260.070000px;}
.xd9_c00014{left:262.650000px;}
.x48_c00014{left:264.390000px;}
.x36_c00014{left:267.840000px;}
.xf7_c00014{left:273.030000px;}
.x8a_c00014{left:276.480000px;}
.x14_c00014{left:279.930000px;}
.xe8_c00014{left:281.670000px;}
.x92_c00014{left:284.250000px;}
.x5c_c00014{left:286.845000px;}
.x77_c00014{left:288.570000px;}
.x9a_c00014{left:290.310000px;}
.xb4_c00014{left:292.035000px;}
.x70_c00014{left:294.630000px;}
.x37_c00014{left:296.355000px;}
.x10b_c00014{left:298.080000px;}
.xb5_c00014{left:299.805000px;}
.xc7_c00014{left:302.400000px;}
.x2b_c00014{left:304.125000px;}
.x110_c00014{left:305.850000px;}
.xef_c00014{left:308.445000px;}
.x50_c00014{left:310.170000px;}
.x11e_c00014{left:311.910000px;}
.x40_c00014{left:313.635000px;}
.xc1_c00014{left:315.360000px;}
.xe5_c00014{left:317.955000px;}
.x8b_c00014{left:319.680000px;}
.xca_c00014{left:322.275000px;}
.x105_c00014{left:327.450000px;}
.x24_c00014{left:329.190000px;}
.x38_c00014{left:331.770000px;}
.xeb_c00014{left:333.510000px;}
.x101_c00014{left:335.235000px;}
.x78_c00014{left:337.830000px;}
.x2c_c00014{left:339.555000px;}
.xa3_c00014{left:341.280000px;}
.x63_c00014{left:344.730000px;}
.xe1_c00014{left:348.195000px;}
.x44_c00014{left:350.790000px;}
.x5d_c00014{left:354.240000px;}
.x51_c00014{left:356.835000px;}
.x15_c00014{left:358.560000px;}
.xe9_c00014{left:360.285000px;}
.xb0_c00014{left:367.200000px;}
.x8c_c00014{left:371.520000px;}
.xec_c00014{left:373.245000px;}
.x71_c00014{left:375.840000px;}
.x64_c00014{left:378.435000px;}
.xc8_c00014{left:381.030000px;}
.x2d_c00014{left:384.480000px;}
.x4_c00014{left:387.075000px;}
.x106_c00014{left:389.670000px;}
.xc2_c00014{left:391.395000px;}
.x118_c00014{left:395.715000px;}
.x16_c00014{left:397.440000px;}
.x80_c00014{left:400.035000px;}
.xff_c00014{left:401.760000px;}
.x11f_c00014{left:403.485000px;}
.xf8_c00014{left:405.210000px;}
.x5_c00014{left:406.950000px;}
.xb1_c00014{left:409.530000px;}
.xf0_c00014{left:412.125000px;}
.x81_c00014{left:417.315000px;}
.x10c_c00014{left:425.955000px;}
.x2_c00014{left:427.680000px;}
.xcb_c00014{left:429.405000px;}
.x6_c00014{left:432.000000px;}
.xb6_c00014{left:436.320000px;}
.x17_c00014{left:438.915000px;}
.x49_c00014{left:442.365000px;}
.xc3_c00014{left:444.090000px;}
.xde_c00014{left:445.830000px;}
.x72_c00014{left:448.410000px;}
.x93_c00014{left:451.005000px;}
.xab_c00014{left:452.730000px;}
.x39_c00014{left:455.325000px;}
.x41_c00014{left:458.790000px;}
.x94_c00014{left:460.515000px;}
.x119_c00014{left:462.240000px;}
.x107_c00014{left:463.965000px;}
.x79_c00014{left:466.560000px;}
.x7_c00014{left:468.285000px;}
.x102_c00014{left:470.010000px;}
.x3a_c00014{left:471.750000px;}
.x65_c00014{left:474.330000px;}
.xb2_c00014{left:476.070000px;}
.x82_c00014{left:478.650000px;}
.x52_c00014{left:480.390000px;}
.xf1_c00014{left:487.290000px;}
.x3_c00014{left:489.885000px;}
.xd3_c00014{left:491.610000px;}
.x8_c00014{left:493.350000px;}
.x8d_c00014{left:496.800000px;}
.x95_c00014{left:498.525000px;}
.xda_c00014{left:501.120000px;}
.x53_c00014{left:502.845000px;}
.x100_c00014{left:504.570000px;}
.x54_c00014{left:507.165000px;}
.x55_c00014{left:509.760000px;}
.xac_c00014{left:511.485000px;}
.xf2_c00014{left:513.210000px;}
.xe6_c00014{left:519.270000px;}
.xfc_c00014{left:521.850000px;}
.x9_c00014{left:523.590000px;}
.x18_c00014{left:525.315000px;}
.x83_c00014{left:527.910000px;}
.x25_c00014{left:529.635000px;}
.x2e_c00014{left:533.955000px;}
.x114_c00014{left:536.550000px;}
.xf9_c00014{left:541.725000px;}
.x9b_c00014{left:543.450000px;}
.x3b_c00014{left:545.190000px;}
.x19_c00014{left:546.915000px;}
.x1a_c00014{left:550.365000px;}
.x45_c00014{left:552.090000px;}
.x9c_c00014{left:553.830000px;}
.x10d_c00014{left:557.280000px;}
.x109_c00014{left:560.730000px;}
.x1_c00014{left:564.195000px;}
.xbd_c00014{left:565.920000px;}
.x96_c00014{left:568.515000px;}
.xa_c00014{left:570.240000px;}
.xc9_c00014{left:571.965000px;}
.x84_c00014{left:574.560000px;}
.x7a_c00014{left:578.010000px;}
.x111_c00014{left:581.475000px;}
.x26_c00014{left:583.200000px;}
.x8e_c00014{left:584.925000px;}
.xe7_c00014{left:589.245000px;}
.xb_c00014{left:593.565000px;}
.x66_c00014{left:596.160000px;}
.x2f_c00014{left:597.885000px;}
.xdf_c00014{left:600.480000px;}
.x85_c00014{left:603.075000px;}
.x1b_c00014{left:604.800000px;}
.x3c_c00014{left:607.395000px;}
.x97_c00014{left:610.845000px;}
.x8f_c00014{left:613.440000px;}
.x11a_c00014{left:616.035000px;}
.xc_c00014{left:617.760000px;}
.xa4_c00014{left:619.485000px;}
.xf3_c00014{left:621.210000px;}
.x67_c00014{left:624.675000px;}
.xdb_c00014{left:626.400000px;}
.x1c_c00014{left:628.125000px;}
.x4a_c00014{left:629.850000px;}
.x73_c00014{left:632.445000px;}
.xd4_c00014{left:635.040000px;}
.xa5_c00014{left:638.490000px;}
.xe2_c00014{left:640.230000px;}
.xd_c00014{left:641.955000px;}
.xf4_c00014{left:646.275000px;}
.xcf_c00014{left:648.000000px;}
.xc4_c00014{left:650.595000px;}
.x7b_c00014{left:653.190000px;}
.x30_c00014{left:654.915000px;}
.xe_c00014{left:658.365000px;}
.x7c_c00014{left:660.960000px;}
.x56_c00014{left:664.410000px;}
.xf5_c00014{left:666.150000px;}
.x86_c00014{left:667.875000px;}
.x11b_c00014{left:670.470000px;}
.x103_c00014{left:672.195000px;}
.x31_c00014{left:673.920000px;}
.xa6_c00014{left:676.515000px;}
.xf_c00014{left:679.965000px;}
.x7d_c00014{left:681.690000px;}
.x42_c00014{left:683.430000px;}
.xed_c00014{left:686.010000px;}
.x27_c00014{left:687.750000px;}
.xd5_c00014{left:691.200000px;}
.x43_c00014{left:693.795000px;}
.xb3_c00014{left:695.520000px;}
.x98_c00014{left:697.245000px;}
.x1d_c00014{left:698.970000px;}
.x10_c00014{left:700.709430px;}
.xc5_c00014{left:704.160000px;}
.x47_c00014{left:707.610000px;}
.x3d_c00014{left:709.350000px;}
.xfa_c00014{left:712.800000px;}
.x32_c00014{left:714.525000px;}
.x74_c00014{left:716.250000px;}
.xfd_c00014{left:717.990000px;}
.xb7_c00014{left:723.165000px;}
.xf6_c00014{left:724.890000px;}
.x5e_c00014{left:726.630000px;}
.x3e_c00014{left:730.080000px;}
.x104_c00014{left:731.805000px;}
.xc6_c00014{left:733.530000px;}
.x87_c00014{left:737.850000px;}
.xd6_c00014{left:740.445000px;}
.x99_c00014{left:742.170000px;}
.x57_c00014{left:744.765000px;}
.x4b_c00014{left:746.490000px;}
.x9d_c00014{left:749.955000px;}
.xdc_c00014{left:752.550000px;}
.xbe_c00014{left:755.130000px;}
.x9e_c00014{left:757.725000px;}
.xfb_c00014{left:759.450000px;}
.x9f_c00014{left:761.190000px;}
.x58_c00014{left:763.770000px;}
.x1e_c00014{left:768.090000px;}
.x59_c00014{left:770.685000px;}
.xa7_c00014{left:773.280000px;}
.x88_c00014{left:775.005000px;}
.x68_c00014{left:777.600000px;}
.x1f_c00014{left:779.325000px;}
.xa8_c00014{left:781.920000px;}
.x90_c00014{left:783.645000px;}
.x28_c00014{left:786.240000px;}
.xcc_c00014{left:787.965000px;}
.xb8_c00014{left:793.155000px;}
.x10e_c00014{left:794.880000px;}
.xdd_c00014{left:796.605000px;}
.xa0_c00014{left:798.330000px;}
.x11_c00014{left:800.070000px;}
.x7e_c00014{left:802.650000px;}
.x10a_c00014{left:805.245000px;}
.x33_c00014{left:806.970000px;}
.x29_c00014{left:809.565000px;}
.x46_c00014{left:811.290000px;}
.x20_c00014{left:814.755000px;}
.x4c_c00014{left:816.480000px;}
.xd0_c00014{left:819.075000px;}
.xbf_c00014{left:820.800000px;}
.x5f_c00014{left:822.525000px;}
.xad_c00014{left:824.250000px;}
.xd7_c00014{left:825.990000px;}
.x4d_c00014{left:828.570000px;}
.xa1_c00014{left:831.165000px;}
.x89_c00014{left:832.890000px;}
.xea_c00014{left:838.950000px;}
.x69_c00014{left:842.400000px;}
.xae_c00014{left:844.125000px;}
.xc0_c00014{left:845.850000px;}
.x34_c00014{left:848.445000px;}
.xaf_c00014{left:851.040000px;}
.xa2_c00014{left:852.765000px;}
.xa9_c00014{left:857.085000px;}
.x6a_c00014{left:858.810000px;}
.xaa_c00014{left:864.000000px;}
.x121_c00014{left:875.235000px;}
.x6b_c00014{left:877.830000px;}
.x122_c00014{left:879.555000px;}
.x10f_c00014{left:881.280000px;}
.x6c_c00014{left:887.325000px;}
.x126_c00014{left:900.285000px;}
.x120_c00014{left:920.160000px;}
.x123_c00014{left:1027.290000px;}
.x124_c00014{left:1037.670000px;}
.x125_c00014{left:1045.440000px;}
@media print{
.v3_c00014{vertical-align:-6.133333pt;}
.v0_c00014{vertical-align:0.000000pt;}
.v4_c00014{vertical-align:3.093333pt;}
.v2_c00014{vertical-align:9.226667pt;}
.v1_c00014{vertical-align:36.853333pt;}
.ls5_c00014{letter-spacing:0.000000pt;}
.ls1_c00014{letter-spacing:15.968320pt;}
.ls0_c00014{letter-spacing:48.052587pt;}
.ls3_c00014{letter-spacing:116.466389pt;}
.ls4_c00014{letter-spacing:574.522667pt;}
.ls2_c00014{letter-spacing:899.426815pt;}
.ws0_c00014{word-spacing:0.000000pt;}
.fs5_c00014{font-size:3.072000pt;}
.fs14_c00014{font-size:5.333333pt;}
.fs1_c00014{font-size:6.133333pt;}
.fsb_c00014{font-size:9.226667pt;}
.fs18_c00014{font-size:12.266667pt;}
.fs0_c00014{font-size:15.360000pt;}
.fs1d_c00014{font-size:18.453333pt;}
.fs17_c00014{font-size:21.493333pt;}
.fs22_c00014{font-size:24.586667pt;}
.fs16_c00014{font-size:27.626667pt;}
.fse_c00014{font-size:30.720000pt;}
.fs23_c00014{font-size:33.813333pt;}
.fs15_c00014{font-size:36.853333pt;}
.fs2_c00014{font-size:39.946667pt;}
.fs11_c00014{font-size:42.986667pt;}
.fsa_c00014{font-size:46.080000pt;}
.fs9_c00014{font-size:49.173333pt;}
.fs4_c00014{font-size:52.213333pt;}
.fs3_c00014{font-size:55.306667pt;}
.fs8_c00014{font-size:58.346667pt;}
.fs6_c00014{font-size:61.440000pt;}
.fsf_c00014{font-size:64.533333pt;}
.fs7_c00014{font-size:67.573333pt;}
.fs12_c00014{font-size:70.666667pt;}
.fs21_c00014{font-size:73.706667pt;}
.fsc_c00014{font-size:76.800000pt;}
.fs13_c00014{font-size:79.893333pt;}
.fs28_c00014{font-size:82.933333pt;}
.fs10_c00014{font-size:86.026667pt;}
.fsd_c00014{font-size:89.066667pt;}
.fs1f_c00014{font-size:92.160000pt;}
.fs1a_c00014{font-size:95.253333pt;}
.fs1b_c00014{font-size:98.293333pt;}
.fs20_c00014{font-size:101.386667pt;}
.fs19_c00014{font-size:104.426667pt;}
.fs27_c00014{font-size:110.613333pt;}
.fs25_c00014{font-size:113.653333pt;}
.fs26_c00014{font-size:122.880000pt;}
.fs1c_c00014{font-size:125.973333pt;}
.fs1e_c00014{font-size:132.106667pt;}
.fs24_c00014{font-size:150.506667pt;}
.y0_c00014{bottom:0.000000pt;}
.y1bb_c00014{bottom:260.346667pt;}
.y1b8_c00014{bottom:268.800000pt;}
.y1b9_c00014{bottom:271.106667pt;}
.y1b0_c00014{bottom:274.173333pt;}
.y1af_c00014{bottom:274.946667pt;}
.y1b1_c00014{bottom:275.706667pt;}
.y1ba_c00014{bottom:276.480000pt;}
.y1b3_c00014{bottom:277.253333pt;}
.y1b2_c00014{bottom:281.093333pt;}
.y1b4_c00014{bottom:282.626667pt;}
.y1b5_c00014{bottom:284.933333pt;}
.y1b7_c00014{bottom:286.466667pt;}
.y1b6_c00014{bottom:287.226667pt;}
.y1a8_c00014{bottom:289.533333pt;}
.y1a7_c00014{bottom:291.066667pt;}
.y1a5_c00014{bottom:292.613333pt;}
.y1a9_c00014{bottom:294.906667pt;}
.y1aa_c00014{bottom:295.680000pt;}
.y1a6_c00014{bottom:296.453333pt;}
.y1ad_c00014{bottom:297.213333pt;}
.y1ab_c00014{bottom:300.293333pt;}
.y1ac_c00014{bottom:301.053333pt;}
.y1ae_c00014{bottom:303.360000pt;}
.y19d_c00014{bottom:305.666667pt;}
.y19f_c00014{bottom:306.426667pt;}
.y194_c00014{bottom:309.506667pt;}
.y1a0_c00014{bottom:310.266667pt;}
.y196_c00014{bottom:311.040000pt;}
.y19e_c00014{bottom:311.813333pt;}
.y1a4_c00014{bottom:312.573333pt;}
.y198_c00014{bottom:313.346667pt;}
.y193_c00014{bottom:314.106667pt;}
.y1a3_c00014{bottom:314.880000pt;}
.y1a1_c00014{bottom:315.653333pt;}
.y195_c00014{bottom:316.413333pt;}
.y1a2_c00014{bottom:317.186667pt;}
.y197_c00014{bottom:317.946667pt;}
.y199_c00014{bottom:318.720000pt;}
.y19b_c00014{bottom:319.493333pt;}
.y19a_c00014{bottom:320.253333pt;}
.y19c_c00014{bottom:321.026667pt;}
.y18d_c00014{bottom:327.933333pt;}
.y191_c00014{bottom:332.546667pt;}
.y18e_c00014{bottom:333.306667pt;}
.y190_c00014{bottom:334.080000pt;}
.y18f_c00014{bottom:334.853333pt;}
.y192_c00014{bottom:335.613333pt;}
.y185_c00014{bottom:347.906667pt;}
.y187_c00014{bottom:349.440000pt;}
.y188_c00014{bottom:350.213333pt;}
.y186_c00014{bottom:353.280000pt;}
.y189_c00014{bottom:355.586667pt;}
.y18a_c00014{bottom:356.346667pt;}
.y18b_c00014{bottom:357.120000pt;}
.y18c_c00014{bottom:357.893333pt;}
.y180_c00014{bottom:363.266667pt;}
.y181_c00014{bottom:364.026667pt;}
.y182_c00014{bottom:365.573333pt;}
.y184_c00014{bottom:367.866667pt;}
.y183_c00014{bottom:373.253333pt;}
.y17a_c00014{bottom:384.000000pt;}
.y17d_c00014{bottom:385.533333pt;}
.y179_c00014{bottom:387.840000pt;}
.y17b_c00014{bottom:389.373333pt;}
.y17c_c00014{bottom:390.146667pt;}
.y17e_c00014{bottom:391.680000pt;}
.y17f_c00014{bottom:393.213333pt;}
.y177_c00014{bottom:413.946667pt;}
.y16f_c00014{bottom:415.493333pt;}
.y178_c00014{bottom:416.253333pt;}
.y16e_c00014{bottom:418.560000pt;}
.y175_c00014{bottom:420.093333pt;}
.y171_c00014{bottom:423.933333pt;}
.y172_c00014{bottom:424.706667pt;}
.y173_c00014{bottom:426.240000pt;}
.y174_c00014{bottom:427.013333pt;}
.y170_c00014{bottom:429.306667pt;}
.y165_c00014{bottom:447.746667pt;}
.y167_c00014{bottom:449.280000pt;}
.y176_c00014{bottom:451.586667pt;}
.y166_c00014{bottom:453.120000pt;}
.y169_c00014{bottom:453.893333pt;}
.y16a_c00014{bottom:455.426667pt;}
.y168_c00014{bottom:456.186667pt;}
.y16d_c00014{bottom:459.266667pt;}
.y16b_c00014{bottom:462.333333pt;}
.y16c_c00014{bottom:463.106667pt;}
.y163_c00014{bottom:491.520000pt;}
.y164_c00014{bottom:494.586667pt;}
.y15a_c00014{bottom:500.733333pt;}
.y15b_c00014{bottom:502.266667pt;}
.y15c_c00014{bottom:506.880000pt;}
.y15e_c00014{bottom:508.413333pt;}
.y161_c00014{bottom:514.560000pt;}
.y15f_c00014{bottom:516.093333pt;}
.y15d_c00014{bottom:517.626667pt;}
.y160_c00014{bottom:518.400000pt;}
.y152_c00014{bottom:519.173333pt;}
.y154_c00014{bottom:519.933333pt;}
.y155_c00014{bottom:522.240000pt;}
.y162_c00014{bottom:523.013333pt;}
.y153_c00014{bottom:523.773333pt;}
.y157_c00014{bottom:525.306667pt;}
.y158_c00014{bottom:526.080000pt;}
.y156_c00014{bottom:527.613333pt;}
.y159_c00014{bottom:528.386667pt;}
.y151_c00014{bottom:535.293333pt;}
.y147_c00014{bottom:536.826667pt;}
.y14a_c00014{bottom:538.373333pt;}
.y149_c00014{bottom:539.133333pt;}
.y14d_c00014{bottom:541.440000pt;}
.y148_c00014{bottom:542.213333pt;}
.y14e_c00014{bottom:542.973333pt;}
.y14b_c00014{bottom:544.506667pt;}
.y14c_c00014{bottom:546.053333pt;}
.y150_c00014{bottom:546.813333pt;}
.y14f_c00014{bottom:548.346667pt;}
.y1c2_c00014{bottom:550.653333pt;}
.y141_c00014{bottom:555.266667pt;}
.y142_c00014{bottom:556.026667pt;}
.y140_c00014{bottom:556.800000pt;}
.y143_c00014{bottom:557.573333pt;}
.y145_c00014{bottom:560.640000pt;}
.y144_c00014{bottom:564.480000pt;}
.y146_c00014{bottom:565.253333pt;}
.y133_c00014{bottom:571.386667pt;}
.y136_c00014{bottom:572.933333pt;}
.y134_c00014{bottom:575.226667pt;}
.y138_c00014{bottom:576.000000pt;}
.y139_c00014{bottom:576.773333pt;}
.y135_c00014{bottom:577.533333pt;}
.y13b_c00014{bottom:579.066667pt;}
.y137_c00014{bottom:579.840000pt;}
.y13a_c00014{bottom:580.613333pt;}
.y13e_c00014{bottom:582.906667pt;}
.y13d_c00014{bottom:583.680000pt;}
.y13c_c00014{bottom:584.453333pt;}
.y13f_c00014{bottom:589.053333pt;}
.y128_c00014{bottom:590.586667pt;}
.y129_c00014{bottom:591.360000pt;}
.y12b_c00014{bottom:592.133333pt;}
.y12c_c00014{bottom:594.426667pt;}
.y12e_c00014{bottom:595.200000pt;}
.y12f_c00014{bottom:595.973333pt;}
.y12a_c00014{bottom:596.733333pt;}
.y131_c00014{bottom:597.506667pt;}
.y132_c00014{bottom:598.266667pt;}
.y12d_c00014{bottom:599.040000pt;}
.y130_c00014{bottom:601.346667pt;}
.y11f_c00014{bottom:609.026667pt;}
.y121_c00014{bottom:610.560000pt;}
.y122_c00014{bottom:612.093333pt;}
.y120_c00014{bottom:614.400000pt;}
.y124_c00014{bottom:615.173333pt;}
.y126_c00014{bottom:617.466667pt;}
.y123_c00014{bottom:619.013333pt;}
.y127_c00014{bottom:619.773333pt;}
.y125_c00014{bottom:620.546667pt;}
.y118_c00014{bottom:628.226667pt;}
.y119_c00014{bottom:629.760000pt;}
.y117_c00014{bottom:631.293333pt;}
.y11b_c00014{bottom:632.066667pt;}
.y11e_c00014{bottom:632.826667pt;}
.y11a_c00014{bottom:633.600000pt;}
.y11c_c00014{bottom:636.666667pt;}
.y11d_c00014{bottom:637.440000pt;}
.y10f_c00014{bottom:639.746667pt;}
.y110_c00014{bottom:642.053333pt;}
.y111_c00014{bottom:644.346667pt;}
.y112_c00014{bottom:645.120000pt;}
.y10e_c00014{bottom:645.893333pt;}
.y114_c00014{bottom:647.426667pt;}
.y116_c00014{bottom:648.960000pt;}
.y113_c00014{bottom:653.573333pt;}
.y115_c00014{bottom:655.106667pt;}
.y104_c00014{bottom:659.706667pt;}
.y107_c00014{bottom:663.546667pt;}
.y108_c00014{bottom:664.320000pt;}
.y105_c00014{bottom:665.853333pt;}
.y106_c00014{bottom:666.626667pt;}
.y10b_c00014{bottom:667.386667pt;}
.y109_c00014{bottom:669.693333pt;}
.y10a_c00014{bottom:671.226667pt;}
.y10d_c00014{bottom:672.000000pt;}
.y10c_c00014{bottom:672.773333pt;}
.yf8_c00014{bottom:679.680000pt;}
.yfb_c00014{bottom:680.453333pt;}
.yfd_c00014{bottom:681.986667pt;}
.yfc_c00014{bottom:682.746667pt;}
.yfa_c00014{bottom:683.520000pt;}
.yfe_c00014{bottom:685.053333pt;}
.y101_c00014{bottom:686.586667pt;}
.yff_c00014{bottom:688.133333pt;}
.y100_c00014{bottom:688.893333pt;}
.y102_c00014{bottom:691.200000pt;}
.y103_c00014{bottom:693.506667pt;}
.yf9_c00014{bottom:694.266667pt;}
.yf0_c00014{bottom:695.813333pt;}
.yf1_c00014{bottom:697.346667pt;}
.yf4_c00014{bottom:700.413333pt;}
.yf2_c00014{bottom:702.720000pt;}
.yf3_c00014{bottom:703.493333pt;}
.yf5_c00014{bottom:705.026667pt;}
.yf6_c00014{bottom:707.333333pt;}
.yf7_c00014{bottom:708.093333pt;}
.ye8_c00014{bottom:713.466667pt;}
.yea_c00014{bottom:715.773333pt;}
.ye7_c00014{bottom:718.080000pt;}
.yed_c00014{bottom:719.613333pt;}
.yee_c00014{bottom:721.146667pt;}
.yeb_c00014{bottom:721.920000pt;}
.yec_c00014{bottom:722.693333pt;}
.ye9_c00014{bottom:724.986667pt;}
.yef_c00014{bottom:725.760000pt;}
.yde_c00014{bottom:733.440000pt;}
.ye0_c00014{bottom:734.973333pt;}
.ydf_c00014{bottom:737.280000pt;}
.ye1_c00014{bottom:738.813333pt;}
.ye5_c00014{bottom:740.346667pt;}
.ye2_c00014{bottom:741.120000pt;}
.ye3_c00014{bottom:741.893333pt;}
.ye4_c00014{bottom:743.426667pt;}
.ye6_c00014{bottom:744.186667pt;}
.yd7_c00014{bottom:753.413333pt;}
.yd6_c00014{bottom:754.173333pt;}
.yd5_c00014{bottom:755.706667pt;}
.ydd_c00014{bottom:756.480000pt;}
.yd8_c00014{bottom:757.253333pt;}
.yd9_c00014{bottom:758.013333pt;}
.yda_c00014{bottom:758.786667pt;}
.ydb_c00014{bottom:759.546667pt;}
.ydc_c00014{bottom:761.093333pt;}
.yce_c00014{bottom:770.306667pt;}
.ycd_c00014{bottom:771.066667pt;}
.ycc_c00014{bottom:771.840000pt;}
.yd1_c00014{bottom:773.373333pt;}
.ycf_c00014{bottom:774.146667pt;}
.yd4_c00014{bottom:775.680000pt;}
.yd0_c00014{bottom:777.213333pt;}
.yd2_c00014{bottom:777.986667pt;}
.yd3_c00014{bottom:778.746667pt;}
.yc2_c00014{bottom:786.426667pt;}
.yc3_c00014{bottom:787.973333pt;}
.yc6_c00014{bottom:790.266667pt;}
.yc4_c00014{bottom:791.813333pt;}
.yca_c00014{bottom:792.573333pt;}
.yc5_c00014{bottom:793.346667pt;}
.yc7_c00014{bottom:794.106667pt;}
.yc8_c00014{bottom:795.653333pt;}
.yc9_c00014{bottom:796.413333pt;}
.ycb_c00014{bottom:797.186667pt;}
.yb6_c00014{bottom:803.333333pt;}
.yb7_c00014{bottom:804.093333pt;}
.yba_c00014{bottom:804.866667pt;}
.ybb_c00014{bottom:806.400000pt;}
.yb8_c00014{bottom:807.933333pt;}
.ybd_c00014{bottom:808.706667pt;}
.yb9_c00014{bottom:809.466667pt;}
.yc1_c00014{bottom:810.240000pt;}
.yc0_c00014{bottom:811.773333pt;}
.ybc_c00014{bottom:812.546667pt;}
.ybe_c00014{bottom:814.853333pt;}
.ybf_c00014{bottom:815.613333pt;}
.yb5_c00014{bottom:818.693333pt;}
.yae_c00014{bottom:823.293333pt;}
.yaf_c00014{bottom:824.066667pt;}
.yb1_c00014{bottom:824.826667pt;}
.yad_c00014{bottom:825.600000pt;}
.yab_c00014{bottom:827.133333pt;}
.yac_c00014{bottom:827.906667pt;}
.yb2_c00014{bottom:828.666667pt;}
.yb0_c00014{bottom:829.440000pt;}
.yb3_c00014{bottom:830.213333pt;}
.yb4_c00014{bottom:833.280000pt;}
.ya4_c00014{bottom:841.733333pt;}
.ya6_c00014{bottom:843.266667pt;}
.ya5_c00014{bottom:846.333333pt;}
.ya7_c00014{bottom:847.106667pt;}
.yaa_c00014{bottom:847.866667pt;}
.ya8_c00014{bottom:848.640000pt;}
.ya9_c00014{bottom:850.173333pt;}
.y98_c00014{bottom:858.626667pt;}
.y99_c00014{bottom:859.386667pt;}
.y9a_c00014{bottom:860.160000pt;}
.y9d_c00014{bottom:864.000000pt;}
.y9e_c00014{bottom:864.773333pt;}
.ya0_c00014{bottom:865.533333pt;}
.y9b_c00014{bottom:866.306667pt;}
.y9c_c00014{bottom:867.066667pt;}
.ya2_c00014{bottom:867.840000pt;}
.y9f_c00014{bottom:868.613333pt;}
.ya1_c00014{bottom:870.146667pt;}
.ya3_c00014{bottom:873.213333pt;}
.y91_c00014{bottom:877.053333pt;}
.y92_c00014{bottom:878.586667pt;}
.y90_c00014{bottom:879.360000pt;}
.y8f_c00014{bottom:880.133333pt;}
.y95_c00014{bottom:881.666667pt;}
.y93_c00014{bottom:883.200000pt;}
.y94_c00014{bottom:885.506667pt;}
.y96_c00014{bottom:887.040000pt;}
.y97_c00014{bottom:889.346667pt;}
.y85_c00014{bottom:892.413333pt;}
.y86_c00014{bottom:895.493333pt;}
.y89_c00014{bottom:896.253333pt;}
.y88_c00014{bottom:897.026667pt;}
.y8b_c00014{bottom:900.866667pt;}
.y8a_c00014{bottom:902.400000pt;}
.y87_c00014{bottom:903.933333pt;}
.y8d_c00014{bottom:905.466667pt;}
.y8c_c00014{bottom:907.013333pt;}
.y8e_c00014{bottom:910.080000pt;}
.y7e_c00014{bottom:914.693333pt;}
.y7d_c00014{bottom:916.226667pt;}
.y1c1_c00014{bottom:916.986667pt;}
.y7f_c00014{bottom:917.760000pt;}
.y82_c00014{bottom:919.293333pt;}
.y80_c00014{bottom:920.826667pt;}
.y84_c00014{bottom:921.600000pt;}
.y81_c00014{bottom:922.373333pt;}
.y83_c00014{bottom:923.906667pt;}
.y1bf_c00014{bottom:924.666667pt;}
.y1c0_c00014{bottom:925.440000pt;}
.y78_c00014{bottom:930.053333pt;}
.y7a_c00014{bottom:933.893333pt;}
.y7b_c00014{bottom:934.653333pt;}
.y70_c00014{bottom:935.426667pt;}
.y71_c00014{bottom:936.186667pt;}
.y79_c00014{bottom:936.960000pt;}
.y44_c00014{bottom:939.266667pt;}
.y43_c00014{bottom:940.026667pt;}
.y6e_c00014{bottom:940.800000pt;}
.y7c_c00014{bottom:941.573333pt;}
.y76_c00014{bottom:942.333333pt;}
.y75_c00014{bottom:943.106667pt;}
.y6f_c00014{bottom:943.866667pt;}
.y6d_c00014{bottom:944.640000pt;}
.y73_c00014{bottom:946.173333pt;}
.y74_c00014{bottom:947.706667pt;}
.y72_c00014{bottom:948.480000pt;}
.y65_c00014{bottom:949.253333pt;}
.y67_c00014{bottom:951.546667pt;}
.y69_c00014{bottom:952.320000pt;}
.y77_c00014{bottom:953.093333pt;}
.y66_c00014{bottom:954.626667pt;}
.y6a_c00014{bottom:955.386667pt;}
.y6b_c00014{bottom:956.160000pt;}
.y68_c00014{bottom:957.693333pt;}
.y6c_c00014{bottom:958.466667pt;}
.y5d_c00014{bottom:966.146667pt;}
.y5e_c00014{bottom:967.680000pt;}
.y60_c00014{bottom:968.453333pt;}
.y5f_c00014{bottom:971.520000pt;}
.y63_c00014{bottom:972.293333pt;}
.y64_c00014{bottom:973.826667pt;}
.y61_c00014{bottom:975.360000pt;}
.y62_c00014{bottom:976.133333pt;}
.y57_c00014{bottom:985.346667pt;}
.y56_c00014{bottom:986.106667pt;}
.y54_c00014{bottom:986.880000pt;}
.y55_c00014{bottom:989.186667pt;}
.y58_c00014{bottom:992.253333pt;}
.y59_c00014{bottom:993.786667pt;}
.y5a_c00014{bottom:995.333333pt;}
.y5b_c00014{bottom:996.866667pt;}
.y5c_c00014{bottom:999.173333pt;}
.y4f_c00014{bottom:1005.306667pt;}
.y51_c00014{bottom:1006.080000pt;}
.y4e_c00014{bottom:1007.613333pt;}
.y53_c00014{bottom:1009.146667pt;}
.y50_c00014{bottom:1009.920000pt;}
.y52_c00014{bottom:1010.693333pt;}
.y4d_c00014{bottom:1011.453333pt;}
.y1be_c00014{bottom:1014.533333pt;}
.y1bd_c00014{bottom:1015.293333pt;}
.y45_c00014{bottom:1024.506667pt;}
.y46_c00014{bottom:1026.813333pt;}
.y47_c00014{bottom:1027.586667pt;}
.y4a_c00014{bottom:1028.346667pt;}
.y49_c00014{bottom:1029.120000pt;}
.y48_c00014{bottom:1030.653333pt;}
.y4c_c00014{bottom:1033.733333pt;}
.y4b_c00014{bottom:1039.866667pt;}
.y3e_c00014{bottom:1042.173333pt;}
.y3f_c00014{bottom:1043.706667pt;}
.y3d_c00014{bottom:1046.013333pt;}
.y41_c00014{bottom:1049.093333pt;}
.y42_c00014{bottom:1052.160000pt;}
.y40_c00014{bottom:1056.773333pt;}
.y3b_c00014{bottom:1063.680000pt;}
.y3c_c00014{bottom:1066.746667pt;}
.y39_c00014{bottom:1075.200000pt;}
.y3a_c00014{bottom:1079.040000pt;}
.y33_c00014{bottom:1104.386667pt;}
.y34_c00014{bottom:1108.226667pt;}
.y38_c00014{bottom:1109.760000pt;}
.y32_c00014{bottom:1110.533333pt;}
.y36_c00014{bottom:1112.066667pt;}
.y31_c00014{bottom:1114.373333pt;}
.y35_c00014{bottom:1115.133333pt;}
.y37_c00014{bottom:1115.906667pt;}
.y1bc_c00014{bottom:1128.960000pt;}
.y29_c00014{bottom:1149.693333pt;}
.y2a_c00014{bottom:1151.226667pt;}
.y2d_c00014{bottom:1155.066667pt;}
.y2c_c00014{bottom:1156.613333pt;}
.y2b_c00014{bottom:1158.906667pt;}
.y2e_c00014{bottom:1161.986667pt;}
.y2f_c00014{bottom:1162.746667pt;}
.y21_c00014{bottom:1166.586667pt;}
.y22_c00014{bottom:1167.360000pt;}
.y30_c00014{bottom:1168.133333pt;}
.y23_c00014{bottom:1168.893333pt;}
.y20_c00014{bottom:1170.426667pt;}
.y26_c00014{bottom:1171.200000pt;}
.y27_c00014{bottom:1172.733333pt;}
.y24_c00014{bottom:1175.040000pt;}
.y25_c00014{bottom:1175.813333pt;}
.y19_c00014{bottom:1181.946667pt;}
.y28_c00014{bottom:1184.253333pt;}
.y1b_c00014{bottom:1185.026667pt;}
.y1a_c00014{bottom:1187.333333pt;}
.y1c_c00014{bottom:1188.093333pt;}
.y1d_c00014{bottom:1188.866667pt;}
.y1e_c00014{bottom:1190.400000pt;}
.y1f_c00014{bottom:1193.466667pt;}
.ye_c00014{bottom:1200.386667pt;}
.yf_c00014{bottom:1201.920000pt;}
.y10_c00014{bottom:1202.693333pt;}
.y12_c00014{bottom:1203.453333pt;}
.y11_c00014{bottom:1204.226667pt;}
.y15_c00014{bottom:1205.760000pt;}
.y14_c00014{bottom:1206.533333pt;}
.y17_c00014{bottom:1207.293333pt;}
.y13_c00014{bottom:1209.600000pt;}
.y16_c00014{bottom:1210.373333pt;}
.y18_c00014{bottom:1212.666667pt;}
.yd_c00014{bottom:1218.053333pt;}
.y7_c00014{bottom:1227.266667pt;}
.y5_c00014{bottom:1229.573333pt;}
.y6_c00014{bottom:1230.333333pt;}
.y8_c00014{bottom:1231.866667pt;}
.y4_c00014{bottom:1232.640000pt;}
.y9_c00014{bottom:1233.413333pt;}
.ya_c00014{bottom:1234.173333pt;}
.yc_c00014{bottom:1241.093333pt;}
.yb_c00014{bottom:1244.933333pt;}
.y2_c00014{bottom:1248.773333pt;}
.y3_c00014{bottom:1250.306667pt;}
.y1_c00014{bottom:1288.706667pt;}
.hd_c00014{height:2.764500pt;}
.h16_c00014{height:4.799479pt;}
.h3_c00014{height:5.519401pt;}
.h2c_c00014{height:5.857833pt;}
.hc_c00014{height:8.303099pt;}
.h1a_c00014{height:11.038802pt;}
.h2_c00014{height:13.822500pt;}
.h1f_c00014{height:16.606198pt;}
.h19_c00014{height:19.341901pt;}
.h24_c00014{height:22.125599pt;}
.h18_c00014{height:24.861302pt;}
.h10_c00014{height:27.645000pt;}
.h25_c00014{height:30.428698pt;}
.h17_c00014{height:33.164401pt;}
.h4_c00014{height:35.948099pt;}
.h13_c00014{height:38.683802pt;}
.hb_c00014{height:41.467500pt;}
.ha_c00014{height:44.251198pt;}
.h6_c00014{height:46.986901pt;}
.h5_c00014{height:49.770599pt;}
.h26_c00014{height:50.694167pt;}
.h9_c00014{height:52.506302pt;}
.h7_c00014{height:55.290000pt;}
.h11_c00014{height:58.073698pt;}
.h8_c00014{height:60.809401pt;}
.h14_c00014{height:63.593099pt;}
.h23_c00014{height:66.328802pt;}
.he_c00014{height:69.112500pt;}
.h15_c00014{height:71.896198pt;}
.h2b_c00014{height:74.631901pt;}
.h12_c00014{height:77.415599pt;}
.hf_c00014{height:80.151302pt;}
.h21_c00014{height:82.935000pt;}
.h1c_c00014{height:85.718698pt;}
.h1d_c00014{height:88.454401pt;}
.h22_c00014{height:91.238099pt;}
.h1b_c00014{height:93.973802pt;}
.h2a_c00014{height:99.541198pt;}
.h28_c00014{height:102.276901pt;}
.h29_c00014{height:110.580000pt;}
.h1e_c00014{height:113.363698pt;}
.h20_c00014{height:118.883099pt;}
.h27_c00014{height:135.441302pt;}
.h0_c00014{height:1347.066667pt;}
.h1_c00014{height:1347.333333pt;}
.w1_c00014{width:946.666667pt;}
.w0_c00014{width:946.946667pt;}
.x0_c00014{left:0.000000pt;}
.x4e_c00014{left:95.226667pt;}
.x4f_c00014{left:102.146667pt;}
.xd8_c00014{left:125.946667pt;}
.xd1_c00014{left:128.253333pt;}
.x75_c00014{left:129.786667pt;}
.x6d_c00014{left:132.866667pt;}
.x112_c00014{left:135.173333pt;}
.x115_c00014{left:136.706667pt;}
.xcd_c00014{left:139.773333pt;}
.xb9_c00014{left:146.693333pt;}
.x7f_c00014{left:152.066667pt;}
.x60_c00014{left:153.600000pt;}
.x91_c00014{left:155.133333pt;}
.x12_c00014{left:156.666667pt;}
.x113_c00014{left:160.506667pt;}
.xe3_c00014{left:162.053333pt;}
.xd2_c00014{left:163.586667pt;}
.xba_c00014{left:165.120000pt;}
.x116_c00014{left:166.653333pt;}
.x2a_c00014{left:170.493333pt;}
.x61_c00014{left:172.800000pt;}
.x13_c00014{left:175.106667pt;}
.x21_c00014{left:176.640000pt;}
.xbb_c00014{left:179.706667pt;}
.xe0_c00014{left:182.786667pt;}
.x22_c00014{left:184.320000pt;}
.x5a_c00014{left:185.853333pt;}
.x6e_c00014{left:187.386667pt;}
.x76_c00014{left:189.693333pt;}
.xce_c00014{left:191.226667pt;}
.x11c_c00014{left:192.773333pt;}
.x108_c00014{left:199.680000pt;}
.x5b_c00014{left:203.520000pt;}
.x62_c00014{left:205.053333pt;}
.x23_c00014{left:207.360000pt;}
.xfe_c00014{left:210.426667pt;}
.xbc_c00014{left:214.266667pt;}
.x6f_c00014{left:216.573333pt;}
.x3f_c00014{left:218.880000pt;}
.x117_c00014{left:221.186667pt;}
.xe4_c00014{left:222.720000pt;}
.x11d_c00014{left:225.786667pt;}
.x35_c00014{left:227.333333pt;}
.xee_c00014{left:231.173333pt;}
.xd9_c00014{left:233.466667pt;}
.x48_c00014{left:235.013333pt;}
.x36_c00014{left:238.080000pt;}
.xf7_c00014{left:242.693333pt;}
.x8a_c00014{left:245.760000pt;}
.x14_c00014{left:248.826667pt;}
.xe8_c00014{left:250.373333pt;}
.x92_c00014{left:252.666667pt;}
.x5c_c00014{left:254.973333pt;}
.x77_c00014{left:256.506667pt;}
.x9a_c00014{left:258.053333pt;}
.xb4_c00014{left:259.586667pt;}
.x70_c00014{left:261.893333pt;}
.x37_c00014{left:263.426667pt;}
.x10b_c00014{left:264.960000pt;}
.xb5_c00014{left:266.493333pt;}
.xc7_c00014{left:268.800000pt;}
.x2b_c00014{left:270.333333pt;}
.x110_c00014{left:271.866667pt;}
.xef_c00014{left:274.173333pt;}
.x50_c00014{left:275.706667pt;}
.x11e_c00014{left:277.253333pt;}
.x40_c00014{left:278.786667pt;}
.xc1_c00014{left:280.320000pt;}
.xe5_c00014{left:282.626667pt;}
.x8b_c00014{left:284.160000pt;}
.xca_c00014{left:286.466667pt;}
.x105_c00014{left:291.066667pt;}
.x24_c00014{left:292.613333pt;}
.x38_c00014{left:294.906667pt;}
.xeb_c00014{left:296.453333pt;}
.x101_c00014{left:297.986667pt;}
.x78_c00014{left:300.293333pt;}
.x2c_c00014{left:301.826667pt;}
.xa3_c00014{left:303.360000pt;}
.x63_c00014{left:306.426667pt;}
.xe1_c00014{left:309.506667pt;}
.x44_c00014{left:311.813333pt;}
.x5d_c00014{left:314.880000pt;}
.x51_c00014{left:317.186667pt;}
.x15_c00014{left:318.720000pt;}
.xe9_c00014{left:320.253333pt;}
.xb0_c00014{left:326.400000pt;}
.x8c_c00014{left:330.240000pt;}
.xec_c00014{left:331.773333pt;}
.x71_c00014{left:334.080000pt;}
.x64_c00014{left:336.386667pt;}
.xc8_c00014{left:338.693333pt;}
.x2d_c00014{left:341.760000pt;}
.x4_c00014{left:344.066667pt;}
.x106_c00014{left:346.373333pt;}
.xc2_c00014{left:347.906667pt;}
.x118_c00014{left:351.746667pt;}
.x16_c00014{left:353.280000pt;}
.x80_c00014{left:355.586667pt;}
.xff_c00014{left:357.120000pt;}
.x11f_c00014{left:358.653333pt;}
.xf8_c00014{left:360.186667pt;}
.x5_c00014{left:361.733333pt;}
.xb1_c00014{left:364.026667pt;}
.xf0_c00014{left:366.333333pt;}
.x81_c00014{left:370.946667pt;}
.x10c_c00014{left:378.626667pt;}
.x2_c00014{left:380.160000pt;}
.xcb_c00014{left:381.693333pt;}
.x6_c00014{left:384.000000pt;}
.xb6_c00014{left:387.840000pt;}
.x17_c00014{left:390.146667pt;}
.x49_c00014{left:393.213333pt;}
.xc3_c00014{left:394.746667pt;}
.xde_c00014{left:396.293333pt;}
.x72_c00014{left:398.586667pt;}
.x93_c00014{left:400.893333pt;}
.xab_c00014{left:402.426667pt;}
.x39_c00014{left:404.733333pt;}
.x41_c00014{left:407.813333pt;}
.x94_c00014{left:409.346667pt;}
.x119_c00014{left:410.880000pt;}
.x107_c00014{left:412.413333pt;}
.x79_c00014{left:414.720000pt;}
.x7_c00014{left:416.253333pt;}
.x102_c00014{left:417.786667pt;}
.x3a_c00014{left:419.333333pt;}
.x65_c00014{left:421.626667pt;}
.xb2_c00014{left:423.173333pt;}
.x82_c00014{left:425.466667pt;}
.x52_c00014{left:427.013333pt;}
.xf1_c00014{left:433.146667pt;}
.x3_c00014{left:435.453333pt;}
.xd3_c00014{left:436.986667pt;}
.x8_c00014{left:438.533333pt;}
.x8d_c00014{left:441.600000pt;}
.x95_c00014{left:443.133333pt;}
.xda_c00014{left:445.440000pt;}
.x53_c00014{left:446.973333pt;}
.x100_c00014{left:448.506667pt;}
.x54_c00014{left:450.813333pt;}
.x55_c00014{left:453.120000pt;}
.xac_c00014{left:454.653333pt;}
.xf2_c00014{left:456.186667pt;}
.xe6_c00014{left:461.573333pt;}
.xfc_c00014{left:463.866667pt;}
.x9_c00014{left:465.413333pt;}
.x18_c00014{left:466.946667pt;}
.x83_c00014{left:469.253333pt;}
.x25_c00014{left:470.786667pt;}
.x2e_c00014{left:474.626667pt;}
.x114_c00014{left:476.933333pt;}
.xf9_c00014{left:481.533333pt;}
.x9b_c00014{left:483.066667pt;}
.x3b_c00014{left:484.613333pt;}
.x19_c00014{left:486.146667pt;}
.x1a_c00014{left:489.213333pt;}
.x45_c00014{left:490.746667pt;}
.x9c_c00014{left:492.293333pt;}
.x10d_c00014{left:495.360000pt;}
.x109_c00014{left:498.426667pt;}
.x1_c00014{left:501.506667pt;}
.xbd_c00014{left:503.040000pt;}
.x96_c00014{left:505.346667pt;}
.xa_c00014{left:506.880000pt;}
.xc9_c00014{left:508.413333pt;}
.x84_c00014{left:510.720000pt;}
.x7a_c00014{left:513.786667pt;}
.x111_c00014{left:516.866667pt;}
.x26_c00014{left:518.400000pt;}
.x8e_c00014{left:519.933333pt;}
.xe7_c00014{left:523.773333pt;}
.xb_c00014{left:527.613333pt;}
.x66_c00014{left:529.920000pt;}
.x2f_c00014{left:531.453333pt;}
.xdf_c00014{left:533.760000pt;}
.x85_c00014{left:536.066667pt;}
.x1b_c00014{left:537.600000pt;}
.x3c_c00014{left:539.906667pt;}
.x97_c00014{left:542.973333pt;}
.x8f_c00014{left:545.280000pt;}
.x11a_c00014{left:547.586667pt;}
.xc_c00014{left:549.120000pt;}
.xa4_c00014{left:550.653333pt;}
.xf3_c00014{left:552.186667pt;}
.x67_c00014{left:555.266667pt;}
.xdb_c00014{left:556.800000pt;}
.x1c_c00014{left:558.333333pt;}
.x4a_c00014{left:559.866667pt;}
.x73_c00014{left:562.173333pt;}
.xd4_c00014{left:564.480000pt;}
.xa5_c00014{left:567.546667pt;}
.xe2_c00014{left:569.093333pt;}
.xd_c00014{left:570.626667pt;}
.xf4_c00014{left:574.466667pt;}
.xcf_c00014{left:576.000000pt;}
.xc4_c00014{left:578.306667pt;}
.x7b_c00014{left:580.613333pt;}
.x30_c00014{left:582.146667pt;}
.xe_c00014{left:585.213333pt;}
.x7c_c00014{left:587.520000pt;}
.x56_c00014{left:590.586667pt;}
.xf5_c00014{left:592.133333pt;}
.x86_c00014{left:593.666667pt;}
.x11b_c00014{left:595.973333pt;}
.x103_c00014{left:597.506667pt;}
.x31_c00014{left:599.040000pt;}
.xa6_c00014{left:601.346667pt;}
.xf_c00014{left:604.413333pt;}
.x7d_c00014{left:605.946667pt;}
.x42_c00014{left:607.493333pt;}
.xed_c00014{left:609.786667pt;}
.x27_c00014{left:611.333333pt;}
.xd5_c00014{left:614.400000pt;}
.x43_c00014{left:616.706667pt;}
.xb3_c00014{left:618.240000pt;}
.x98_c00014{left:619.773333pt;}
.x1d_c00014{left:621.306667pt;}
.x10_c00014{left:622.852827pt;}
.xc5_c00014{left:625.920000pt;}
.x47_c00014{left:628.986667pt;}
.x3d_c00014{left:630.533333pt;}
.xfa_c00014{left:633.600000pt;}
.x32_c00014{left:635.133333pt;}
.x74_c00014{left:636.666667pt;}
.xfd_c00014{left:638.213333pt;}
.xb7_c00014{left:642.813333pt;}
.xf6_c00014{left:644.346667pt;}
.x5e_c00014{left:645.893333pt;}
.x3e_c00014{left:648.960000pt;}
.x104_c00014{left:650.493333pt;}
.xc6_c00014{left:652.026667pt;}
.x87_c00014{left:655.866667pt;}
.xd6_c00014{left:658.173333pt;}
.x99_c00014{left:659.706667pt;}
.x57_c00014{left:662.013333pt;}
.x4b_c00014{left:663.546667pt;}
.x9d_c00014{left:666.626667pt;}
.xdc_c00014{left:668.933333pt;}
.xbe_c00014{left:671.226667pt;}
.x9e_c00014{left:673.533333pt;}
.xfb_c00014{left:675.066667pt;}
.x9f_c00014{left:676.613333pt;}
.x58_c00014{left:678.906667pt;}
.x1e_c00014{left:682.746667pt;}
.x59_c00014{left:685.053333pt;}
.xa7_c00014{left:687.360000pt;}
.x88_c00014{left:688.893333pt;}
.x68_c00014{left:691.200000pt;}
.x1f_c00014{left:692.733333pt;}
.xa8_c00014{left:695.040000pt;}
.x90_c00014{left:696.573333pt;}
.x28_c00014{left:698.880000pt;}
.xcc_c00014{left:700.413333pt;}
.xb8_c00014{left:705.026667pt;}
.x10e_c00014{left:706.560000pt;}
.xdd_c00014{left:708.093333pt;}
.xa0_c00014{left:709.626667pt;}
.x11_c00014{left:711.173333pt;}
.x7e_c00014{left:713.466667pt;}
.x10a_c00014{left:715.773333pt;}
.x33_c00014{left:717.306667pt;}
.x29_c00014{left:719.613333pt;}
.x46_c00014{left:721.146667pt;}
.x20_c00014{left:724.226667pt;}
.x4c_c00014{left:725.760000pt;}
.xd0_c00014{left:728.066667pt;}
.xbf_c00014{left:729.600000pt;}
.x5f_c00014{left:731.133333pt;}
.xad_c00014{left:732.666667pt;}
.xd7_c00014{left:734.213333pt;}
.x4d_c00014{left:736.506667pt;}
.xa1_c00014{left:738.813333pt;}
.x89_c00014{left:740.346667pt;}
.xea_c00014{left:745.733333pt;}
.x69_c00014{left:748.800000pt;}
.xae_c00014{left:750.333333pt;}
.xc0_c00014{left:751.866667pt;}
.x34_c00014{left:754.173333pt;}
.xaf_c00014{left:756.480000pt;}
.xa2_c00014{left:758.013333pt;}
.xa9_c00014{left:761.853333pt;}
.x6a_c00014{left:763.386667pt;}
.xaa_c00014{left:768.000000pt;}
.x121_c00014{left:777.986667pt;}
.x6b_c00014{left:780.293333pt;}
.x122_c00014{left:781.826667pt;}
.x10f_c00014{left:783.360000pt;}
.x6c_c00014{left:788.733333pt;}
.x126_c00014{left:800.253333pt;}
.x120_c00014{left:817.920000pt;}
.x123_c00014{left:913.146667pt;}
.x124_c00014{left:922.373333pt;}
.x125_c00014{left:929.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_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_6328850867de119f3b18fad5.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.109863;font-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_c00015{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00015{transform:matrix(0.044650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044650,0.000000,0.000000,0.250000,0,0);}
.md2_c00015{transform:matrix(0.052675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052675,0.000000,0.000000,0.250000,0,0);}
.m8e_c00015{transform:matrix(0.089050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089050,0.000000,0.000000,0.250000,0,0);}
.md9_c00015{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.m8c_c00015{transform:matrix(0.094150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094150,0.000000,0.000000,0.250000,0,0);}
.m15_c00015{transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);}
.m72_c00015{transform:matrix(0.099425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099425,0.000000,0.000000,0.250000,0,0);}
.m8d_c00015{transform:matrix(0.099450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099450,0.000000,0.000000,0.250000,0,0);}
.mc0_c00015{transform:matrix(0.100250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00015{transform:matrix(0.105100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105100,0.000000,0.000000,0.250000,0,0);}
.m60_c00015{transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00015{transform:matrix(0.107725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107725,0.000000,0.000000,0.250000,0,0);}
.m69_c00015{transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);}
.m34_c00015{transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);}
.mad_c00015{transform:matrix(0.115975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115975,0.000000,0.000000,0.250000,0,0);}
.m6d_c00015{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);}
.mb8_c00015{transform:matrix(0.117575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117575,0.000000,0.000000,0.250000,0,0);}
.m58_c00015{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.m8a_c00015{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.mcb_c00015{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);}
.m2c_c00015{transform:matrix(0.119750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00015{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m71_c00015{transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);}
.m90_c00015{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);}
.m76_c00015{transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);}
.m61_c00015{transform:matrix(0.124225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124225,0.000000,0.000000,0.250000,0,0);}
.md0_c00015{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);}
.m68_c00015{transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);}
.m31_c00015{transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);}
.m6f_c00015{transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);}
.m6c_c00015{transform:matrix(0.131975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131975,0.000000,0.000000,0.250000,0,0);}
.m32_c00015{transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);}
.m89_c00015{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00015{transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);}
.m73_c00015{transform:matrix(0.134400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134400,0.000000,0.000000,0.250000,0,0);}
.md1_c00015{transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);}
.m9e_c00015{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00015{transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);}
.m8_c00015{transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);}
.m0_c00015{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf_c00015{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.m62_c00015{transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);}
.m17_c00015{transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);}
.m75_c00015{transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);}
.m16_c00015{transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);}
.m3_c00015{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);}
.me_c00015{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m2b_c00015{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);}
.mc9_c00015{transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);}
.m4d_c00015{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.m78_c00015{transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);}
.m74_c00015{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m57_c00015{transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);}
.mcc_c00015{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00015{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m49_c00015{transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);}
.m70_c00015{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);}
.m24_c00015{transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);}
.md3_c00015{transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);}
.mb2_c00015{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);}
.ma0_c00015{transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);}
.m30_c00015{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.mdd_c00015{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);}
.m3a_c00015{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);}
.m77_c00015{transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);}
.m63_c00015{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);}
.maa_c00015{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.m99_c00015{transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);}
.maf_c00015{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m65_c00015{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.m5e_c00015{transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);}
.m12_c00015{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.m2a_c00015{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.mc2_c00015{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);}
.m14_c00015{transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);}
.m85_c00015{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);}
.m4b_c00015{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);}
.m38_c00015{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.mb4_c00015{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);}
.mb5_c00015{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);}
.m1a_c00015{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00015{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.m8b_c00015{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.m51_c00015{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);}
.m2d_c00015{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m93_c00015{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m43_c00015{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.m1c_c00015{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);}
.m9a_c00015{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);}
.ma4_c00015{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);}
.m82_c00015{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);}
.mb6_c00015{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);}
.m33_c00015{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m66_c00015{transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);}
.m3c_c00015{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m6a_c00015{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.mcf_c00015{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);}
.m95_c00015{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.mb7_c00015{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.m92_c00015{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00015{transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);}
.mbd_c00015{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m25_c00015{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m46_c00015{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m7b_c00015{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m22_c00015{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.m81_c00015{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m9b_c00015{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);}
.m4e_c00015{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m2_c00015{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);}
.m13_c00015{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);}
.m48_c00015{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.m97_c00015{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);}
.m86_c00015{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.m9d_c00015{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);}
.mb3_c00015{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m88_c00015{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.mac_c00015{transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);}
.m5b_c00015{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);}
.mc5_c00015{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.mc6_c00015{transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);}
.ma5_c00015{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);}
.m1b_c00015{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m52_c00015{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);}
.mb9_c00015{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.m96_c00015{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);}
.ma6_c00015{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.m80_c00015{transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);}
.ma1_c00015{transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);}
.m18_c00015{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);}
.mb0_c00015{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.mbb_c00015{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);}
.m11_c00015{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);}
.m37_c00015{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);}
.ma8_c00015{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m10_c00015{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);}
.md8_c00015{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);}
.m9f_c00015{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.mab_c00015{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);}
.m7e_c00015{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.mcd_c00015{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.m94_c00015{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m27_c00015{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);}
.m64_c00015{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m21_c00015{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);}
.m55_c00015{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);}
.m7d_c00015{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);}
.ma_c00015{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);}
.m5a_c00015{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00015{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00015{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);}
.m67_c00015{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);}
.m87_c00015{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m54_c00015{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);}
.m26_c00015{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mce_c00015{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00015{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_c00015{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);}
.mdf_c00015{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);}
.m83_c00015{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mca_c00015{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00015{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00015{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00015{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m41_c00015{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c00015{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m84_c00015{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6_c00015{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);}
.m4a_c00015{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00015{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00015{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);}
.m53_c00015{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c00015{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md7_c00015{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);}
.m59_c00015{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md_c00015{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00015{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m44_c00015{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m39_c00015{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);}
.ma3_c00015{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);}
.me0_c00015{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c00015{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m19_c00015{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md6_c00015{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mae_c00015{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);}
.mba_c00015{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00015{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m56_c00015{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m91_c00015{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m98_c00015{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00015{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00015{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m45_c00015{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00015{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00015{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.md5_c00015{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);}
.m50_c00015{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00015{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m42_c00015{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.md4_c00015{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.mde_c00015{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00015{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m40_c00015{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00015{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m47_c00015{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);}
.m1e_c00015{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00015{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.m79_c00015{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);}
.m36_c00015{transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00015{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00015{transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);}
.mda_c00015{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00015{transform:matrix(1.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.267500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00015{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00015{transform:matrix(1.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00015{transform:matrix(1.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.335000,0.000000,0.000000,0.250000,0,0);}
.m35_c00015{transform:matrix(1.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.380000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00015{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00015{transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);}
.m29_c00015{transform:matrix(1.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.892500,0.000000,0.000000,0.250000,0,0);}
.m23_c00015{transform:matrix(2.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.087500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00015{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.m28_c00015{transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00015{transform:matrix(19.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(19.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(19.730000,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.v1_c00015{vertical-align:6.900000px;}
.ls1_c00015{letter-spacing:0.000000px;}
.ls0_c00015{letter-spacing:15.273480px;}
.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;}
}
.ws1_c00015{word-spacing:0.000000px;}
.ws0_c00015{word-spacing:657.027840px;}
.fc0_c00015{color:transparent;}
.fs16_c00015{font-size:3.456000px;}
.fs18_c00015{font-size:6.000000px;}
.fs13_c00015{font-size:6.900000px;}
.fs0_c00015{font-size:10.380000px;}
.fs4_c00015{font-size:13.800000px;}
.fs1_c00015{font-size:17.280000px;}
.fs3_c00015{font-size:20.760000px;}
.fs2_c00015{font-size:24.180000px;}
.fs15_c00015{font-size:27.660000px;}
.fs17_c00015{font-size:31.080000px;}
.fs23_c00015{font-size:34.560000px;}
.fsa_c00015{font-size:38.040000px;}
.fs1f_c00015{font-size:41.460000px;}
.fs22_c00015{font-size:44.940000px;}
.fs21_c00015{font-size:48.360000px;}
.fs1e_c00015{font-size:51.840000px;}
.fs7_c00015{font-size:55.320000px;}
.fs6_c00015{font-size:58.740000px;}
.fs20_c00015{font-size:62.220000px;}
.fs8_c00015{font-size:65.640000px;}
.fsb_c00015{font-size:69.120000px;}
.fs5_c00015{font-size:72.600000px;}
.fs9_c00015{font-size:76.020000px;}
.fsd_c00015{font-size:79.500000px;}
.fs24_c00015{font-size:82.920000px;}
.fsf_c00015{font-size:86.400000px;}
.fs19_c00015{font-size:89.880000px;}
.fs25_c00015{font-size:93.300000px;}
.fs1c_c00015{font-size:96.780000px;}
.fs26_c00015{font-size:100.200000px;}
.fs1a_c00015{font-size:103.680000px;}
.fs1d_c00015{font-size:110.580000px;}
.fse_c00015{font-size:114.060000px;}
.fs1b_c00015{font-size:117.480000px;}
.fs14_c00015{font-size:120.960000px;}
.fsc_c00015{font-size:124.440000px;}
.fs10_c00015{font-size:131.340000px;}
.fs28_c00015{font-size:134.760000px;}
.fs12_c00015{font-size:138.240000px;}
.fs27_c00015{font-size:148.620000px;}
.fs11_c00015{font-size:152.040000px;}
.y0_c00015{bottom:0.000000px;}
.yce_c00015{bottom:207.360000px;}
.ycd_c00015{bottom:208.230000px;}
.ycc_c00015{bottom:374.970000px;}
.ycb_c00015{bottom:380.160000px;}
.yc9_c00015{bottom:395.715000px;}
.yca_c00015{bottom:396.570000px;}
.yc8_c00015{bottom:406.950000px;}
.yc7_c00015{bottom:588.390000px;}
.yc6_c00015{bottom:609.120000px;}
.yc4_c00015{bottom:857.955000px;}
.yc5_c00015{bottom:858.810000px;}
.ybc_c00015{bottom:900.285000px;}
.ybe_c00015{bottom:905.475000px;}
.ybb_c00015{bottom:907.200000px;}
.ybd_c00015{bottom:908.070000px;}
.yb2_c00015{bottom:908.925000px;}
.yb3_c00015{bottom:910.650000px;}
.yb7_c00015{bottom:911.520000px;}
.yb4_c00015{bottom:914.115000px;}
.yb0_c00015{bottom:919.290000px;}
.yb1_c00015{bottom:926.205000px;}
.yb8_c00015{bottom:927.075000px;}
.yb5_c00015{bottom:932.250000px;}
.yb9_c00015{bottom:933.120000px;}
.yb6_c00015{bottom:936.570000px;}
.yba_c00015{bottom:937.440000px;}
.yaf_c00015{bottom:940.890000px;}
.ya9_c00015{bottom:943.485000px;}
.yad_c00015{bottom:944.355000px;}
.yae_c00015{bottom:946.950000px;}
.yab_c00015{bottom:947.805000px;}
.yaa_c00015{bottom:949.530000px;}
.yac_c00015{bottom:952.995000px;}
.ya1_c00015{bottom:979.770000px;}
.ya7_c00015{bottom:980.640000px;}
.ya4_c00015{bottom:981.510000px;}
.ya3_c00015{bottom:982.365000px;}
.y9f_c00015{bottom:983.235000px;}
.y9c_c00015{bottom:984.090000px;}
.y9d_c00015{bottom:984.960000px;}
.ya5_c00015{bottom:985.830000px;}
.y9e_c00015{bottom:986.685000px;}
.ya2_c00015{bottom:987.555000px;}
.ya6_c00015{bottom:990.150000px;}
.y96_c00015{bottom:991.875000px;}
.ya8_c00015{bottom:992.730000px;}
.ya0_c00015{bottom:997.920000px;}
.y9b_c00015{bottom:1000.515000px;}
.y98_c00015{bottom:1001.370000px;}
.y97_c00015{bottom:1002.240000px;}
.y9a_c00015{bottom:1003.965000px;}
.y99_c00015{bottom:1007.430000px;}
.y93_c00015{bottom:1019.520000px;}
.y91_c00015{bottom:1020.390000px;}
.y90_c00015{bottom:1021.245000px;}
.y8f_c00015{bottom:1022.115000px;}
.y92_c00015{bottom:1022.970000px;}
.y94_c00015{bottom:1025.565000px;}
.y8e_c00015{bottom:1027.290000px;}
.y95_c00015{bottom:1038.525000px;}
.y8b_c00015{bottom:1041.120000px;}
.y88_c00015{bottom:1041.990000px;}
.y89_c00015{bottom:1043.715000px;}
.y8c_c00015{bottom:1044.570000px;}
.y8d_c00015{bottom:1046.310000px;}
.y8a_c00015{bottom:1047.165000px;}
.y84_c00015{bottom:1060.995000px;}
.y82_c00015{bottom:1061.850000px;}
.y81_c00015{bottom:1062.720000px;}
.y87_c00015{bottom:1063.590000px;}
.y83_c00015{bottom:1066.170000px;}
.y85_c00015{bottom:1067.040000px;}
.y80_c00015{bottom:1067.910000px;}
.y86_c00015{bottom:1073.955000px;}
.y79_c00015{bottom:1082.595000px;}
.y7b_c00015{bottom:1083.450000px;}
.y7d_c00015{bottom:1084.320000px;}
.y7a_c00015{bottom:1085.190000px;}
.y7c_c00015{bottom:1086.045000px;}
.y7e_c00015{bottom:1086.915000px;}
.y7f_c00015{bottom:1092.960000px;}
.y77_c00015{bottom:1097.280000px;}
.y73_c00015{bottom:1098.150000px;}
.y76_c00015{bottom:1099.005000px;}
.y72_c00015{bottom:1099.875000px;}
.y74_c00015{bottom:1102.470000px;}
.y75_c00015{bottom:1105.050000px;}
.y78_c00015{bottom:1109.370000px;}
.yc3_c00015{bottom:1115.430000px;}
.yc2_c00015{bottom:1117.155000px;}
.y70_c00015{bottom:1122.330000px;}
.y6e_c00015{bottom:1123.200000px;}
.y71_c00015{bottom:1124.070000px;}
.y6f_c00015{bottom:1127.520000px;}
.y6d_c00015{bottom:1128.390000px;}
.y6c_c00015{bottom:1130.115000px;}
.y69_c00015{bottom:1145.670000px;}
.y6a_c00015{bottom:1146.525000px;}
.y6b_c00015{bottom:1147.395000px;}
.y67_c00015{bottom:1148.250000px;}
.y68_c00015{bottom:1149.120000px;}
.y66_c00015{bottom:1155.165000px;}
.y65_c00015{bottom:1156.890000px;}
.y64_c00015{bottom:1159.485000px;}
.y61_c00015{bottom:1164.675000px;}
.y62_c00015{bottom:1165.530000px;}
.y60_c00015{bottom:1166.400000px;}
.y4_c00015{bottom:1169.850000px;}
.y5_c00015{bottom:1172.445000px;}
.y63_c00015{bottom:1187.130000px;}
.y5c_c00015{bottom:1188.000000px;}
.y59_c00015{bottom:1188.870000px;}
.y5a_c00015{bottom:1189.725000px;}
.y58_c00015{bottom:1191.450000px;}
.y56_c00015{bottom:1193.190000px;}
.y5d_c00015{bottom:1194.915000px;}
.y5b_c00015{bottom:1196.640000px;}
.y5e_c00015{bottom:1197.510000px;}
.y5f_c00015{bottom:1203.555000px;}
.y57_c00015{bottom:1210.470000px;}
.y52_c00015{bottom:1212.195000px;}
.y50_c00015{bottom:1213.050000px;}
.y53_c00015{bottom:1213.920000px;}
.y4c_c00015{bottom:1214.790000px;}
.y51_c00015{bottom:1215.645000px;}
.y55_c00015{bottom:1218.240000px;}
.y4e_c00015{bottom:1219.110000px;}
.y4d_c00015{bottom:1219.965000px;}
.y54_c00015{bottom:1220.835000px;}
.y4f_c00015{bottom:1221.690000px;}
.y4b_c00015{bottom:1222.560000px;}
.y49_c00015{bottom:1223.430000px;}
.y4a_c00015{bottom:1227.750000px;}
.y42_c00015{bottom:1228.605000px;}
.y46_c00015{bottom:1229.475000px;}
.y44_c00015{bottom:1230.330000px;}
.y43_c00015{bottom:1232.070000px;}
.y47_c00015{bottom:1232.925000px;}
.y45_c00015{bottom:1233.795000px;}
.y48_c00015{bottom:1236.390000px;}
.y3e_c00015{bottom:1238.115000px;}
.y38_c00015{bottom:1238.970000px;}
.y3c_c00015{bottom:1239.840000px;}
.y3f_c00015{bottom:1240.710000px;}
.y39_c00015{bottom:1241.565000px;}
.y40_c00015{bottom:1242.435000px;}
.y3b_c00015{bottom:1244.160000px;}
.y3a_c00015{bottom:1245.030000px;}
.y41_c00015{bottom:1245.885000px;}
.y3d_c00015{bottom:1246.755000px;}
.y35_c00015{bottom:1249.350000px;}
.y32_c00015{bottom:1251.075000px;}
.y33_c00015{bottom:1253.670000px;}
.y2f_c00015{bottom:1254.525000px;}
.y37_c00015{bottom:1255.395000px;}
.y30_c00015{bottom:1256.250000px;}
.y31_c00015{bottom:1257.120000px;}
.y34_c00015{bottom:1258.845000px;}
.y36_c00015{bottom:1259.715000px;}
.yc1_c00015{bottom:1264.035000px;}
.y2e_c00015{bottom:1264.890000px;}
.y27_c00015{bottom:1265.760000px;}
.y2b_c00015{bottom:1266.630000px;}
.y26_c00015{bottom:1267.485000px;}
.y29_c00015{bottom:1268.355000px;}
.y2c_c00015{bottom:1269.210000px;}
.y28_c00015{bottom:1270.950000px;}
.y2a_c00015{bottom:1271.805000px;}
.y2d_c00015{bottom:1272.675000px;}
.y25_c00015{bottom:1277.850000px;}
.y22_c00015{bottom:1294.275000px;}
.y23_c00015{bottom:1295.130000px;}
.y20_c00015{bottom:1296.870000px;}
.y1f_c00015{bottom:1297.725000px;}
.y21_c00015{bottom:1298.595000px;}
.y24_c00015{bottom:1299.450000px;}
.y1d_c00015{bottom:1302.915000px;}
.y19_c00015{bottom:1303.770000px;}
.y1e_c00015{bottom:1304.640000px;}
.y1b_c00015{bottom:1308.090000px;}
.y1a_c00015{bottom:1308.960000px;}
.y1c_c00015{bottom:1309.830000px;}
.y17_c00015{bottom:1310.685000px;}
.y13_c00015{bottom:1311.555000px;}
.y16_c00015{bottom:1312.410000px;}
.y18_c00015{bottom:1314.150000px;}
.y14_c00015{bottom:1315.005000px;}
.y12_c00015{bottom:1320.195000px;}
.y15_c00015{bottom:1333.155000px;}
.y11_c00015{bottom:1342.650000px;}
.y10_c00015{bottom:1344.390000px;}
.ye_c00015{bottom:1345.245000px;}
.yf_c00015{bottom:1346.115000px;}
.yb_c00015{bottom:1349.565000px;}
.yc_c00015{bottom:1350.435000px;}
.yd_c00015{bottom:1351.290000px;}
.y8_c00015{bottom:1383.270000px;}
.y6_c00015{bottom:1384.125000px;}
.y7_c00015{bottom:1384.995000px;}
.ya_c00015{bottom:1385.850000px;}
.y9_c00015{bottom:1386.720000px;}
.ybf_c00015{bottom:1395.360000px;}
.yc0_c00015{bottom:1397.085000px;}
.y3_c00015{bottom:1420.410000px;}
.y2_c00015{bottom:1434.240000px;}
.y1_c00015{bottom:1435.110000px;}
.h18_c00015{height:3.110063px;}
.h1a_c00015{height:5.399414px;}
.h15_c00015{height:6.209326px;}
.h2_c00015{height:9.340986px;}
.h6_c00015{height:12.418652px;}
.h3_c00015{height:15.550313px;}
.h5_c00015{height:18.681973px;}
.h4_c00015{height:21.759639px;}
.h29_c00015{height:22.450312px;}
.h17_c00015{height:24.891299px;}
.h19_c00015{height:27.968965px;}
.h25_c00015{height:31.100625px;}
.hc_c00015{height:34.232285px;}
.h21_c00015{height:37.309951px;}
.h24_c00015{height:40.441611px;}
.h23_c00015{height:43.519277px;}
.h20_c00015{height:46.650937px;}
.h9_c00015{height:49.782598px;}
.h8_c00015{height:52.860264px;}
.h22_c00015{height:55.991924px;}
.ha_c00015{height:59.069590px;}
.hd_c00015{height:62.201250px;}
.h7_c00015{height:65.332910px;}
.hb_c00015{height:68.410576px;}
.hf_c00015{height:71.542236px;}
.h26_c00015{height:74.619902px;}
.h11_c00015{height:77.751563px;}
.h1b_c00015{height:80.883223px;}
.h27_c00015{height:83.960889px;}
.h1e_c00015{height:87.092549px;}
.h28_c00015{height:90.170215px;}
.h1c_c00015{height:93.301875px;}
.h1f_c00015{height:99.511201px;}
.h10_c00015{height:102.642861px;}
.h1d_c00015{height:105.720527px;}
.h16_c00015{height:108.852188px;}
.he_c00015{height:111.983848px;}
.h12_c00015{height:118.193174px;}
.h2b_c00015{height:121.270840px;}
.h14_c00015{height:124.402500px;}
.h2a_c00015{height:133.743486px;}
.h13_c00015{height:136.821152px;}
.h1_c00015{height:1503.000000px;}
.h0_c00015{height:1503.360000px;}
.w1_c00015{width:1076.250000px;}
.w0_c00015{width:1076.550000px;}
.x0_c00015{left:0.000000px;}
.xc3_c00015{left:1.725000px;}
.xc5_c00015{left:11.235000px;}
.xc4_c00015{left:12.960000px;}
.xbe_c00015{left:26.790000px;}
.xc2_c00015{left:44.925000px;}
.xbc_c00015{left:69.120000px;}
.xbd_c00015{left:77.760000px;}
.xbf_c00015{left:138.240000px;}
.xc0_c00015{left:153.795000px;}
.xc1_c00015{left:163.290000px;}
.x4_c00015{left:204.765000px;}
.x5_c00015{left:215.130000px;}
.x77_c00015{left:227.235000px;}
.x60_c00015{left:232.410000px;}
.x7d_c00015{left:235.005000px;}
.x61_c00015{left:236.730000px;}
.x47_c00015{left:239.325000px;}
.x1_c00015{left:248.835000px;}
.x33_c00015{left:254.010000px;}
.x6b_c00015{left:260.070000px;}
.x2e_c00015{left:265.245000px;}
.x2_c00015{left:266.970000px;}
.x11_c00015{left:269.565000px;}
.xa7_c00015{left:273.885000px;}
.xb2_c00015{left:278.205000px;}
.x1a_c00015{left:283.395000px;}
.x62_c00015{left:293.760000px;}
.x52_c00015{left:297.210000px;}
.x84_c00015{left:298.950000px;}
.x6c_c00015{left:301.530000px;}
.x3b_c00015{left:307.590000px;}
.x99_c00015{left:313.635000px;}
.x12_c00015{left:317.955000px;}
.x48_c00015{left:319.680000px;}
.x7e_c00015{left:322.275000px;}
.x63_c00015{left:329.190000px;}
.x22_c00015{left:336.090000px;}
.x1b_c00015{left:337.830000px;}
.x8a_c00015{left:341.280000px;}
.x53_c00015{left:343.875000px;}
.x79_c00015{left:349.050000px;}
.x13_c00015{left:355.110000px;}
.x34_c00015{left:357.690000px;}
.x7a_c00015{left:362.010000px;}
.x2f_c00015{left:367.200000px;}
.x49_c00015{left:369.795000px;}
.x3c_c00015{left:372.390000px;}
.x1c_c00015{left:374.115000px;}
.x7f_c00015{left:377.565000px;}
.x35_c00015{left:381.885000px;}
.x85_c00015{left:386.205000px;}
.xb3_c00015{left:388.800000px;}
.x74_c00015{left:392.250000px;}
.xaf_c00015{left:397.440000px;}
.x1d_c00015{left:399.165000px;}
.x93_c00015{left:402.630000px;}
.x6d_c00015{left:407.805000px;}
.x3d_c00015{left:409.530000px;}
.x6_c00015{left:412.125000px;}
.x1e_c00015{left:414.720000px;}
.x8b_c00015{left:419.910000px;}
.x14_c00015{left:423.360000px;}
.x9a_c00015{left:425.955000px;}
.x6e_c00015{left:432.000000px;}
.xb5_c00015{left:433.725000px;}
.xb6_c00015{left:440.640000px;}
.x30_c00015{left:446.685000px;}
.x4a_c00015{left:448.410000px;}
.xa8_c00015{left:451.005000px;}
.x9b_c00015{left:453.600000px;}
.x75_c00015{left:456.195000px;}
.x7_c00015{left:457.920000px;}
.x3e_c00015{left:460.515000px;}
.x64_c00015{left:465.690000px;}
.x54_c00015{left:474.330000px;}
.x8_c00015{left:480.390000px;}
.x23_c00015{left:487.290000px;}
.xb4_c00015{left:491.610000px;}
.x86_c00015{left:494.205000px;}
.x4b_c00015{left:495.930000px;}
.x6f_c00015{left:497.670000px;}
.x9_c00015{left:499.395000px;}
.x55_c00015{left:507.165000px;}
.xb7_c00015{left:508.890000px;}
.x15_c00015{left:514.080000px;}
.x24_c00015{left:517.530000px;}
.xb8_c00015{left:521.850000px;}
.x80_c00015{left:525.315000px;}
.x94_c00015{left:527.040000px;}
.x56_c00015{left:528.765000px;}
.x70_c00015{left:533.085000px;}
.xb0_c00015{left:537.405000px;}
.x16_c00015{left:540.000000px;}
.x25_c00015{left:543.450000px;}
.x3f_c00015{left:545.190000px;}
.xa_c00015{left:549.510000px;}
.x7b_c00015{left:554.685000px;}
.x8c_c00015{left:556.410000px;}
.x76_c00015{left:560.730000px;}
.xa1_c00015{left:563.325000px;}
.x36_c00015{left:565.050000px;}
.x57_c00015{left:567.645000px;}
.x1f_c00015{left:572.835000px;}
.xa9_c00015{left:576.285000px;}
.x26_c00015{left:578.010000px;}
.xb_c00015{left:582.330000px;}
.x87_c00015{left:586.650000px;}
.x81_c00015{left:591.840000px;}
.xaa_c00015{left:596.160000px;}
.xc_c00015{left:597.885000px;}
.x4c_c00015{left:602.205000px;}
.xab_c00015{left:609.990000px;}
.x65_c00015{left:611.715000px;}
.x27_c00015{left:613.440000px;}
.x95_c00015{left:615.165000px;}
.xd_c00015{left:620.355000px;}
.x66_c00015{left:622.950000px;}
.x8d_c00015{left:625.530000px;}
.x82_c00015{left:629.850000px;}
.x28_c00015{left:634.170000px;}
.xb1_c00015{left:635.910000px;}
.x78_c00015{left:641.955000px;}
.x9c_c00015{left:646.275000px;}
.x58_c00015{left:648.000000px;}
.x88_c00015{left:650.595000px;}
.x17_c00015{left:654.045000px;}
.x29_c00015{left:657.510000px;}
.x40_c00015{left:664.410000px;}
.xe_c00015{left:667.005000px;}
.x4d_c00015{left:670.470000px;}
.x18_c00015{left:672.195000px;}
.x9f_c00015{left:673.920000px;}
.x59_c00015{left:675.645000px;}
.x2a_c00015{left:679.110000px;}
.x37_c00015{left:681.690000px;}
.xf_c00015{left:689.475000px;}
.x8e_c00015{left:692.070000px;}
.x41_c00015{left:693.795000px;}
.x96_c00015{left:698.115000px;}
.x2b_c00015{left:699.840000px;}
.x5a_c00015{left:703.290000px;}
.x10_c00015{left:705.885000px;}
.x2c_c00015{left:711.075000px;}
.x5b_c00015{left:721.440000px;}
.x38_c00015{left:723.165000px;}
.xb9_c00015{left:726.630000px;}
.x20_c00015{left:733.530000px;}
.x67_c00015{left:735.270000px;}
.x9d_c00015{left:736.995000px;}
.x42_c00015{left:743.040000px;}
.x5c_c00015{left:745.635000px;}
.x68_c00015{left:750.810000px;}
.xa2_c00015{left:753.405000px;}
.x8f_c00015{left:763.770000px;}
.x39_c00015{left:767.235000px;}
.x43_c00015{left:768.960000px;}
.x31_c00015{left:772.410000px;}
.x19_c00015{left:774.150000px;}
.x5d_c00015{left:777.600000px;}
.xba_c00015{left:780.195000px;}
.x4e_c00015{left:782.790000px;}
.x5e_c00015{left:784.515000px;}
.xbb_c00015{left:786.240000px;}
.x44_c00015{left:791.430000px;}
.xac_c00015{left:797.475000px;}
.x21_c00015{left:800.070000px;}
.x69_c00015{left:802.650000px;}
.xad_c00015{left:806.970000px;}
.x32_c00015{left:809.565000px;}
.xa3_c00015{left:814.755000px;}
.x71_c00015{left:816.480000px;}
.x90_c00015{left:818.205000px;}
.x5f_c00015{left:819.930000px;}
.x4f_c00015{left:821.670000px;}
.x2d_c00015{left:824.250000px;}
.x45_c00015{left:832.035000px;}
.x3_c00015{left:833.760000px;}
.x7c_c00015{left:837.210000px;}
.x72_c00015{left:839.805000px;}
.x50_c00015{left:843.270000px;}
.x9e_c00015{left:853.635000px;}
.x83_c00015{left:855.360000px;}
.x97_c00015{left:858.810000px;}
.x46_c00015{left:863.130000px;}
.xa4_c00015{left:868.320000px;}
.x73_c00015{left:876.960000px;}
.x98_c00015{left:879.555000px;}
.x3a_c00015{left:886.470000px;}
.x6a_c00015{left:889.920000px;}
.x91_c00015{left:895.110000px;}
.x51_c00015{left:897.690000px;}
.x89_c00015{left:899.430000px;}
.xae_c00015{left:922.755000px;}
.x92_c00015{left:925.350000px;}
.xa0_c00015{left:928.800000px;}
.xa5_c00015{left:946.950000px;}
.xa6_c00015{left:1023.840000px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.v1_c00015{vertical-align:6.133333pt;}
.ls1_c00015{letter-spacing:0.000000pt;}
.ls0_c00015{letter-spacing:13.576427pt;}
.ws1_c00015{word-spacing:0.000000pt;}
.ws0_c00015{word-spacing:584.024747pt;}
.fs16_c00015{font-size:3.072000pt;}
.fs18_c00015{font-size:5.333333pt;}
.fs13_c00015{font-size:6.133333pt;}
.fs0_c00015{font-size:9.226667pt;}
.fs4_c00015{font-size:12.266667pt;}
.fs1_c00015{font-size:15.360000pt;}
.fs3_c00015{font-size:18.453333pt;}
.fs2_c00015{font-size:21.493333pt;}
.fs15_c00015{font-size:24.586667pt;}
.fs17_c00015{font-size:27.626667pt;}
.fs23_c00015{font-size:30.720000pt;}
.fsa_c00015{font-size:33.813333pt;}
.fs1f_c00015{font-size:36.853333pt;}
.fs22_c00015{font-size:39.946667pt;}
.fs21_c00015{font-size:42.986667pt;}
.fs1e_c00015{font-size:46.080000pt;}
.fs7_c00015{font-size:49.173333pt;}
.fs6_c00015{font-size:52.213333pt;}
.fs20_c00015{font-size:55.306667pt;}
.fs8_c00015{font-size:58.346667pt;}
.fsb_c00015{font-size:61.440000pt;}
.fs5_c00015{font-size:64.533333pt;}
.fs9_c00015{font-size:67.573333pt;}
.fsd_c00015{font-size:70.666667pt;}
.fs24_c00015{font-size:73.706667pt;}
.fsf_c00015{font-size:76.800000pt;}
.fs19_c00015{font-size:79.893333pt;}
.fs25_c00015{font-size:82.933333pt;}
.fs1c_c00015{font-size:86.026667pt;}
.fs26_c00015{font-size:89.066667pt;}
.fs1a_c00015{font-size:92.160000pt;}
.fs1d_c00015{font-size:98.293333pt;}
.fse_c00015{font-size:101.386667pt;}
.fs1b_c00015{font-size:104.426667pt;}
.fs14_c00015{font-size:107.520000pt;}
.fsc_c00015{font-size:110.613333pt;}
.fs10_c00015{font-size:116.746667pt;}
.fs28_c00015{font-size:119.786667pt;}
.fs12_c00015{font-size:122.880000pt;}
.fs27_c00015{font-size:132.106667pt;}
.fs11_c00015{font-size:135.146667pt;}
.y0_c00015{bottom:0.000000pt;}
.yce_c00015{bottom:184.320000pt;}
.ycd_c00015{bottom:185.093333pt;}
.ycc_c00015{bottom:333.306667pt;}
.ycb_c00015{bottom:337.920000pt;}
.yc9_c00015{bottom:351.746667pt;}
.yca_c00015{bottom:352.506667pt;}
.yc8_c00015{bottom:361.733333pt;}
.yc7_c00015{bottom:523.013333pt;}
.yc6_c00015{bottom:541.440000pt;}
.yc4_c00015{bottom:762.626667pt;}
.yc5_c00015{bottom:763.386667pt;}
.ybc_c00015{bottom:800.253333pt;}
.ybe_c00015{bottom:804.866667pt;}
.ybb_c00015{bottom:806.400000pt;}
.ybd_c00015{bottom:807.173333pt;}
.yb2_c00015{bottom:807.933333pt;}
.yb3_c00015{bottom:809.466667pt;}
.yb7_c00015{bottom:810.240000pt;}
.yb4_c00015{bottom:812.546667pt;}
.yb0_c00015{bottom:817.146667pt;}
.yb1_c00015{bottom:823.293333pt;}
.yb8_c00015{bottom:824.066667pt;}
.yb5_c00015{bottom:828.666667pt;}
.yb9_c00015{bottom:829.440000pt;}
.yb6_c00015{bottom:832.506667pt;}
.yba_c00015{bottom:833.280000pt;}
.yaf_c00015{bottom:836.346667pt;}
.ya9_c00015{bottom:838.653333pt;}
.yad_c00015{bottom:839.426667pt;}
.yae_c00015{bottom:841.733333pt;}
.yab_c00015{bottom:842.493333pt;}
.yaa_c00015{bottom:844.026667pt;}
.yac_c00015{bottom:847.106667pt;}
.ya1_c00015{bottom:870.906667pt;}
.ya7_c00015{bottom:871.680000pt;}
.ya4_c00015{bottom:872.453333pt;}
.ya3_c00015{bottom:873.213333pt;}
.y9f_c00015{bottom:873.986667pt;}
.y9c_c00015{bottom:874.746667pt;}
.y9d_c00015{bottom:875.520000pt;}
.ya5_c00015{bottom:876.293333pt;}
.y9e_c00015{bottom:877.053333pt;}
.ya2_c00015{bottom:877.826667pt;}
.ya6_c00015{bottom:880.133333pt;}
.y96_c00015{bottom:881.666667pt;}
.ya8_c00015{bottom:882.426667pt;}
.ya0_c00015{bottom:887.040000pt;}
.y9b_c00015{bottom:889.346667pt;}
.y98_c00015{bottom:890.106667pt;}
.y97_c00015{bottom:890.880000pt;}
.y9a_c00015{bottom:892.413333pt;}
.y99_c00015{bottom:895.493333pt;}
.y93_c00015{bottom:906.240000pt;}
.y91_c00015{bottom:907.013333pt;}
.y90_c00015{bottom:907.773333pt;}
.y8f_c00015{bottom:908.546667pt;}
.y92_c00015{bottom:909.306667pt;}
.y94_c00015{bottom:911.613333pt;}
.y8e_c00015{bottom:913.146667pt;}
.y95_c00015{bottom:923.133333pt;}
.y8b_c00015{bottom:925.440000pt;}
.y88_c00015{bottom:926.213333pt;}
.y89_c00015{bottom:927.746667pt;}
.y8c_c00015{bottom:928.506667pt;}
.y8d_c00015{bottom:930.053333pt;}
.y8a_c00015{bottom:930.813333pt;}
.y84_c00015{bottom:943.106667pt;}
.y82_c00015{bottom:943.866667pt;}
.y81_c00015{bottom:944.640000pt;}
.y87_c00015{bottom:945.413333pt;}
.y83_c00015{bottom:947.706667pt;}
.y85_c00015{bottom:948.480000pt;}
.y80_c00015{bottom:949.253333pt;}
.y86_c00015{bottom:954.626667pt;}
.y79_c00015{bottom:962.306667pt;}
.y7b_c00015{bottom:963.066667pt;}
.y7d_c00015{bottom:963.840000pt;}
.y7a_c00015{bottom:964.613333pt;}
.y7c_c00015{bottom:965.373333pt;}
.y7e_c00015{bottom:966.146667pt;}
.y7f_c00015{bottom:971.520000pt;}
.y77_c00015{bottom:975.360000pt;}
.y73_c00015{bottom:976.133333pt;}
.y76_c00015{bottom:976.893333pt;}
.y72_c00015{bottom:977.666667pt;}
.y74_c00015{bottom:979.973333pt;}
.y75_c00015{bottom:982.266667pt;}
.y78_c00015{bottom:986.106667pt;}
.yc3_c00015{bottom:991.493333pt;}
.yc2_c00015{bottom:993.026667pt;}
.y70_c00015{bottom:997.626667pt;}
.y6e_c00015{bottom:998.400000pt;}
.y71_c00015{bottom:999.173333pt;}
.y6f_c00015{bottom:1002.240000pt;}
.y6d_c00015{bottom:1003.013333pt;}
.y6c_c00015{bottom:1004.546667pt;}
.y69_c00015{bottom:1018.373333pt;}
.y6a_c00015{bottom:1019.133333pt;}
.y6b_c00015{bottom:1019.906667pt;}
.y67_c00015{bottom:1020.666667pt;}
.y68_c00015{bottom:1021.440000pt;}
.y66_c00015{bottom:1026.813333pt;}
.y65_c00015{bottom:1028.346667pt;}
.y64_c00015{bottom:1030.653333pt;}
.y61_c00015{bottom:1035.266667pt;}
.y62_c00015{bottom:1036.026667pt;}
.y60_c00015{bottom:1036.800000pt;}
.y4_c00015{bottom:1039.866667pt;}
.y5_c00015{bottom:1042.173333pt;}
.y63_c00015{bottom:1055.226667pt;}
.y5c_c00015{bottom:1056.000000pt;}
.y59_c00015{bottom:1056.773333pt;}
.y5a_c00015{bottom:1057.533333pt;}
.y58_c00015{bottom:1059.066667pt;}
.y56_c00015{bottom:1060.613333pt;}
.y5d_c00015{bottom:1062.146667pt;}
.y5b_c00015{bottom:1063.680000pt;}
.y5e_c00015{bottom:1064.453333pt;}
.y5f_c00015{bottom:1069.826667pt;}
.y57_c00015{bottom:1075.973333pt;}
.y52_c00015{bottom:1077.506667pt;}
.y50_c00015{bottom:1078.266667pt;}
.y53_c00015{bottom:1079.040000pt;}
.y4c_c00015{bottom:1079.813333pt;}
.y51_c00015{bottom:1080.573333pt;}
.y55_c00015{bottom:1082.880000pt;}
.y4e_c00015{bottom:1083.653333pt;}
.y4d_c00015{bottom:1084.413333pt;}
.y54_c00015{bottom:1085.186667pt;}
.y4f_c00015{bottom:1085.946667pt;}
.y4b_c00015{bottom:1086.720000pt;}
.y49_c00015{bottom:1087.493333pt;}
.y4a_c00015{bottom:1091.333333pt;}
.y42_c00015{bottom:1092.093333pt;}
.y46_c00015{bottom:1092.866667pt;}
.y44_c00015{bottom:1093.626667pt;}
.y43_c00015{bottom:1095.173333pt;}
.y47_c00015{bottom:1095.933333pt;}
.y45_c00015{bottom:1096.706667pt;}
.y48_c00015{bottom:1099.013333pt;}
.y3e_c00015{bottom:1100.546667pt;}
.y38_c00015{bottom:1101.306667pt;}
.y3c_c00015{bottom:1102.080000pt;}
.y3f_c00015{bottom:1102.853333pt;}
.y39_c00015{bottom:1103.613333pt;}
.y40_c00015{bottom:1104.386667pt;}
.y3b_c00015{bottom:1105.920000pt;}
.y3a_c00015{bottom:1106.693333pt;}
.y41_c00015{bottom:1107.453333pt;}
.y3d_c00015{bottom:1108.226667pt;}
.y35_c00015{bottom:1110.533333pt;}
.y32_c00015{bottom:1112.066667pt;}
.y33_c00015{bottom:1114.373333pt;}
.y2f_c00015{bottom:1115.133333pt;}
.y37_c00015{bottom:1115.906667pt;}
.y30_c00015{bottom:1116.666667pt;}
.y31_c00015{bottom:1117.440000pt;}
.y34_c00015{bottom:1118.973333pt;}
.y36_c00015{bottom:1119.746667pt;}
.yc1_c00015{bottom:1123.586667pt;}
.y2e_c00015{bottom:1124.346667pt;}
.y27_c00015{bottom:1125.120000pt;}
.y2b_c00015{bottom:1125.893333pt;}
.y26_c00015{bottom:1126.653333pt;}
.y29_c00015{bottom:1127.426667pt;}
.y2c_c00015{bottom:1128.186667pt;}
.y28_c00015{bottom:1129.733333pt;}
.y2a_c00015{bottom:1130.493333pt;}
.y2d_c00015{bottom:1131.266667pt;}
.y25_c00015{bottom:1135.866667pt;}
.y22_c00015{bottom:1150.466667pt;}
.y23_c00015{bottom:1151.226667pt;}
.y20_c00015{bottom:1152.773333pt;}
.y1f_c00015{bottom:1153.533333pt;}
.y21_c00015{bottom:1154.306667pt;}
.y24_c00015{bottom:1155.066667pt;}
.y1d_c00015{bottom:1158.146667pt;}
.y19_c00015{bottom:1158.906667pt;}
.y1e_c00015{bottom:1159.680000pt;}
.y1b_c00015{bottom:1162.746667pt;}
.y1a_c00015{bottom:1163.520000pt;}
.y1c_c00015{bottom:1164.293333pt;}
.y17_c00015{bottom:1165.053333pt;}
.y13_c00015{bottom:1165.826667pt;}
.y16_c00015{bottom:1166.586667pt;}
.y18_c00015{bottom:1168.133333pt;}
.y14_c00015{bottom:1168.893333pt;}
.y12_c00015{bottom:1173.506667pt;}
.y15_c00015{bottom:1185.026667pt;}
.y11_c00015{bottom:1193.466667pt;}
.y10_c00015{bottom:1195.013333pt;}
.ye_c00015{bottom:1195.773333pt;}
.yf_c00015{bottom:1196.546667pt;}
.yb_c00015{bottom:1199.613333pt;}
.yc_c00015{bottom:1200.386667pt;}
.yd_c00015{bottom:1201.146667pt;}
.y8_c00015{bottom:1229.573333pt;}
.y6_c00015{bottom:1230.333333pt;}
.y7_c00015{bottom:1231.106667pt;}
.ya_c00015{bottom:1231.866667pt;}
.y9_c00015{bottom:1232.640000pt;}
.ybf_c00015{bottom:1240.320000pt;}
.yc0_c00015{bottom:1241.853333pt;}
.y3_c00015{bottom:1262.586667pt;}
.y2_c00015{bottom:1274.880000pt;}
.y1_c00015{bottom:1275.653333pt;}
.h18_c00015{height:2.764500pt;}
.h1a_c00015{height:4.799479pt;}
.h15_c00015{height:5.519401pt;}
.h2_c00015{height:8.303099pt;}
.h6_c00015{height:11.038802pt;}
.h3_c00015{height:13.822500pt;}
.h5_c00015{height:16.606198pt;}
.h4_c00015{height:19.341901pt;}
.h29_c00015{height:19.955833pt;}
.h17_c00015{height:22.125599pt;}
.h19_c00015{height:24.861302pt;}
.h25_c00015{height:27.645000pt;}
.hc_c00015{height:30.428698pt;}
.h21_c00015{height:33.164401pt;}
.h24_c00015{height:35.948099pt;}
.h23_c00015{height:38.683802pt;}
.h20_c00015{height:41.467500pt;}
.h9_c00015{height:44.251198pt;}
.h8_c00015{height:46.986901pt;}
.h22_c00015{height:49.770599pt;}
.ha_c00015{height:52.506302pt;}
.hd_c00015{height:55.290000pt;}
.h7_c00015{height:58.073698pt;}
.hb_c00015{height:60.809401pt;}
.hf_c00015{height:63.593099pt;}
.h26_c00015{height:66.328802pt;}
.h11_c00015{height:69.112500pt;}
.h1b_c00015{height:71.896198pt;}
.h27_c00015{height:74.631901pt;}
.h1e_c00015{height:77.415599pt;}
.h28_c00015{height:80.151302pt;}
.h1c_c00015{height:82.935000pt;}
.h1f_c00015{height:88.454401pt;}
.h10_c00015{height:91.238099pt;}
.h1d_c00015{height:93.973802pt;}
.h16_c00015{height:96.757500pt;}
.he_c00015{height:99.541198pt;}
.h12_c00015{height:105.060599pt;}
.h2b_c00015{height:107.796302pt;}
.h14_c00015{height:110.580000pt;}
.h2a_c00015{height:118.883099pt;}
.h13_c00015{height:121.618802pt;}
.h1_c00015{height:1336.000000pt;}
.h0_c00015{height:1336.320000pt;}
.w1_c00015{width:956.666667pt;}
.w0_c00015{width:956.933333pt;}
.x0_c00015{left:0.000000pt;}
.xc3_c00015{left:1.533333pt;}
.xc5_c00015{left:9.986667pt;}
.xc4_c00015{left:11.520000pt;}
.xbe_c00015{left:23.813333pt;}
.xc2_c00015{left:39.933333pt;}
.xbc_c00015{left:61.440000pt;}
.xbd_c00015{left:69.120000pt;}
.xbf_c00015{left:122.880000pt;}
.xc0_c00015{left:136.706667pt;}
.xc1_c00015{left:145.146667pt;}
.x4_c00015{left:182.013333pt;}
.x5_c00015{left:191.226667pt;}
.x77_c00015{left:201.986667pt;}
.x60_c00015{left:206.586667pt;}
.x7d_c00015{left:208.893333pt;}
.x61_c00015{left:210.426667pt;}
.x47_c00015{left:212.733333pt;}
.x1_c00015{left:221.186667pt;}
.x33_c00015{left:225.786667pt;}
.x6b_c00015{left:231.173333pt;}
.x2e_c00015{left:235.773333pt;}
.x2_c00015{left:237.306667pt;}
.x11_c00015{left:239.613333pt;}
.xa7_c00015{left:243.453333pt;}
.xb2_c00015{left:247.293333pt;}
.x1a_c00015{left:251.906667pt;}
.x62_c00015{left:261.120000pt;}
.x52_c00015{left:264.186667pt;}
.x84_c00015{left:265.733333pt;}
.x6c_c00015{left:268.026667pt;}
.x3b_c00015{left:273.413333pt;}
.x99_c00015{left:278.786667pt;}
.x12_c00015{left:282.626667pt;}
.x48_c00015{left:284.160000pt;}
.x7e_c00015{left:286.466667pt;}
.x63_c00015{left:292.613333pt;}
.x22_c00015{left:298.746667pt;}
.x1b_c00015{left:300.293333pt;}
.x8a_c00015{left:303.360000pt;}
.x53_c00015{left:305.666667pt;}
.x79_c00015{left:310.266667pt;}
.x13_c00015{left:315.653333pt;}
.x34_c00015{left:317.946667pt;}
.x7a_c00015{left:321.786667pt;}
.x2f_c00015{left:326.400000pt;}
.x49_c00015{left:328.706667pt;}
.x3c_c00015{left:331.013333pt;}
.x1c_c00015{left:332.546667pt;}
.x7f_c00015{left:335.613333pt;}
.x35_c00015{left:339.453333pt;}
.x85_c00015{left:343.293333pt;}
.xb3_c00015{left:345.600000pt;}
.x74_c00015{left:348.666667pt;}
.xaf_c00015{left:353.280000pt;}
.x1d_c00015{left:354.813333pt;}
.x93_c00015{left:357.893333pt;}
.x6d_c00015{left:362.493333pt;}
.x3d_c00015{left:364.026667pt;}
.x6_c00015{left:366.333333pt;}
.x1e_c00015{left:368.640000pt;}
.x8b_c00015{left:373.253333pt;}
.x14_c00015{left:376.320000pt;}
.x9a_c00015{left:378.626667pt;}
.x6e_c00015{left:384.000000pt;}
.xb5_c00015{left:385.533333pt;}
.xb6_c00015{left:391.680000pt;}
.x30_c00015{left:397.053333pt;}
.x4a_c00015{left:398.586667pt;}
.xa8_c00015{left:400.893333pt;}
.x9b_c00015{left:403.200000pt;}
.x75_c00015{left:405.506667pt;}
.x7_c00015{left:407.040000pt;}
.x3e_c00015{left:409.346667pt;}
.x64_c00015{left:413.946667pt;}
.x54_c00015{left:421.626667pt;}
.x8_c00015{left:427.013333pt;}
.x23_c00015{left:433.146667pt;}
.xb4_c00015{left:436.986667pt;}
.x86_c00015{left:439.293333pt;}
.x4b_c00015{left:440.826667pt;}
.x6f_c00015{left:442.373333pt;}
.x9_c00015{left:443.906667pt;}
.x55_c00015{left:450.813333pt;}
.xb7_c00015{left:452.346667pt;}
.x15_c00015{left:456.960000pt;}
.x24_c00015{left:460.026667pt;}
.xb8_c00015{left:463.866667pt;}
.x80_c00015{left:466.946667pt;}
.x94_c00015{left:468.480000pt;}
.x56_c00015{left:470.013333pt;}
.x70_c00015{left:473.853333pt;}
.xb0_c00015{left:477.693333pt;}
.x16_c00015{left:480.000000pt;}
.x25_c00015{left:483.066667pt;}
.x3f_c00015{left:484.613333pt;}
.xa_c00015{left:488.453333pt;}
.x7b_c00015{left:493.053333pt;}
.x8c_c00015{left:494.586667pt;}
.x76_c00015{left:498.426667pt;}
.xa1_c00015{left:500.733333pt;}
.x36_c00015{left:502.266667pt;}
.x57_c00015{left:504.573333pt;}
.x1f_c00015{left:509.186667pt;}
.xa9_c00015{left:512.253333pt;}
.x26_c00015{left:513.786667pt;}
.xb_c00015{left:517.626667pt;}
.x87_c00015{left:521.466667pt;}
.x81_c00015{left:526.080000pt;}
.xaa_c00015{left:529.920000pt;}
.xc_c00015{left:531.453333pt;}
.x4c_c00015{left:535.293333pt;}
.xab_c00015{left:542.213333pt;}
.x65_c00015{left:543.746667pt;}
.x27_c00015{left:545.280000pt;}
.x95_c00015{left:546.813333pt;}
.xd_c00015{left:551.426667pt;}
.x66_c00015{left:553.733333pt;}
.x8d_c00015{left:556.026667pt;}
.x82_c00015{left:559.866667pt;}
.x28_c00015{left:563.706667pt;}
.xb1_c00015{left:565.253333pt;}
.x78_c00015{left:570.626667pt;}
.x9c_c00015{left:574.466667pt;}
.x58_c00015{left:576.000000pt;}
.x88_c00015{left:578.306667pt;}
.x17_c00015{left:581.373333pt;}
.x29_c00015{left:584.453333pt;}
.x40_c00015{left:590.586667pt;}
.xe_c00015{left:592.893333pt;}
.x4d_c00015{left:595.973333pt;}
.x18_c00015{left:597.506667pt;}
.x9f_c00015{left:599.040000pt;}
.x59_c00015{left:600.573333pt;}
.x2a_c00015{left:603.653333pt;}
.x37_c00015{left:605.946667pt;}
.xf_c00015{left:612.866667pt;}
.x8e_c00015{left:615.173333pt;}
.x41_c00015{left:616.706667pt;}
.x96_c00015{left:620.546667pt;}
.x2b_c00015{left:622.080000pt;}
.x5a_c00015{left:625.146667pt;}
.x10_c00015{left:627.453333pt;}
.x2c_c00015{left:632.066667pt;}
.x5b_c00015{left:641.280000pt;}
.x38_c00015{left:642.813333pt;}
.xb9_c00015{left:645.893333pt;}
.x20_c00015{left:652.026667pt;}
.x67_c00015{left:653.573333pt;}
.x9d_c00015{left:655.106667pt;}
.x42_c00015{left:660.480000pt;}
.x5c_c00015{left:662.786667pt;}
.x68_c00015{left:667.386667pt;}
.xa2_c00015{left:669.693333pt;}
.x8f_c00015{left:678.906667pt;}
.x39_c00015{left:681.986667pt;}
.x43_c00015{left:683.520000pt;}
.x31_c00015{left:686.586667pt;}
.x19_c00015{left:688.133333pt;}
.x5d_c00015{left:691.200000pt;}
.xba_c00015{left:693.506667pt;}
.x4e_c00015{left:695.813333pt;}
.x5e_c00015{left:697.346667pt;}
.xbb_c00015{left:698.880000pt;}
.x44_c00015{left:703.493333pt;}
.xac_c00015{left:708.866667pt;}
.x21_c00015{left:711.173333pt;}
.x69_c00015{left:713.466667pt;}
.xad_c00015{left:717.306667pt;}
.x32_c00015{left:719.613333pt;}
.xa3_c00015{left:724.226667pt;}
.x71_c00015{left:725.760000pt;}
.x90_c00015{left:727.293333pt;}
.x5f_c00015{left:728.826667pt;}
.x4f_c00015{left:730.373333pt;}
.x2d_c00015{left:732.666667pt;}
.x45_c00015{left:739.586667pt;}
.x3_c00015{left:741.120000pt;}
.x7c_c00015{left:744.186667pt;}
.x72_c00015{left:746.493333pt;}
.x50_c00015{left:749.573333pt;}
.x9e_c00015{left:758.786667pt;}
.x83_c00015{left:760.320000pt;}
.x97_c00015{left:763.386667pt;}
.x46_c00015{left:767.226667pt;}
.xa4_c00015{left:771.840000pt;}
.x73_c00015{left:779.520000pt;}
.x98_c00015{left:781.826667pt;}
.x3a_c00015{left:787.973333pt;}
.x6a_c00015{left:791.040000pt;}
.x91_c00015{left:795.653333pt;}
.x51_c00015{left:797.946667pt;}
.x89_c00015{left:799.493333pt;}
.xae_c00015{left:820.226667pt;}
.x92_c00015{left:822.533333pt;}
.xa0_c00015{left:825.600000pt;}
.xa5_c00015{left:841.733333pt;}
.xa6_c00015{left:910.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_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;}
@font-face{font-family:ff1_c00016;src:url('chunks/assets/font_5478c86f4cc93d39b18745a6.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.109863;font-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_c00016{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mda_c00016{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.m12_c00016{transform:matrix(0.085650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085650,0.000000,0.000000,0.250000,0,0);}
.mdf_c00016{transform:matrix(0.098350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098350,0.000000,0.000000,0.250000,0,0);}
.m39_c00016{transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);}
.m13_c00016{transform:matrix(0.116300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116300,0.000000,0.000000,0.250000,0,0);}
.mc3_c00016{transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);}
.m1a_c00016{transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);}
.m27_c00016{transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);}
.mcf_c00016{transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);}
.mad_c00016{transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);}
.md5_c00016{transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);}
.mf_c00016{transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);}
.md7_c00016{transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);}
.m21_c00016{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m5_c00016{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc_c00016{transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);}
.mbd_c00016{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);}
.mab_c00016{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m83_c00016{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);}
.m18_c00016{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);}
.mdd_c00016{transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);}
.m92_c00016{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);}
.md3_c00016{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);}
.m68_c00016{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00016{transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);}
.mb5_c00016{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m9e_c00016{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.ma3_c00016{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m2a_c00016{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.m42_c00016{transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);}
.m95_c00016{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m72_c00016{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.me0_c00016{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.m98_c00016{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.md4_c00016{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m22_c00016{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.mbb_c00016{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);}
.m97_c00016{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.m94_c00016{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m70_c00016{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);}
.me3_c00016{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);}
.m82_c00016{transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);}
.m2f_c00016{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.m14_c00016{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.mb7_c00016{transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);}
.ma6_c00016{transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);}
.m15_c00016{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.maa_c00016{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);}
.md6_c00016{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);}
.m34_c00016{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.me6_c00016{transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);}
.mb9_c00016{transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);}
.m9a_c00016{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.me8_c00016{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.mb8_c00016{transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);}
.mce_c00016{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);}
.m3d_c00016{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m4f_c00016{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);}
.mbe_c00016{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m47_c00016{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m24_c00016{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.ma5_c00016{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);}
.mb1_c00016{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m26_c00016{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00016{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.me2_c00016{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m58_c00016{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m89_c00016{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m5a_c00016{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.mde_c00016{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m9c_c00016{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.m4b_c00016{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.m51_c00016{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.mba_c00016{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m87_c00016{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.mb3_c00016{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);}
.mcd_c00016{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m86_c00016{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.mc4_c00016{transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);}
.mbc_c00016{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.m55_c00016{transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);}
.ma1_c00016{transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);}
.m93_c00016{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00016{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);}
.mb2_c00016{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m4e_c00016{transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);}
.m73_c00016{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);}
.meb_c00016{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);}
.mac_c00016{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.maf_c00016{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m28_c00016{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.mb4_c00016{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.mc2_c00016{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);}
.m77_c00016{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);}
.m52_c00016{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);}
.m4a_c00016{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);}
.m50_c00016{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m7f_c00016{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);}
.m6b_c00016{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.mc7_c00016{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);}
.m6e_c00016{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);}
.m33_c00016{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);}
.m62_c00016{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.ma9_c00016{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m6f_c00016{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m56_c00016{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);}
.m5c_c00016{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);}
.m54_c00016{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);}
.ma4_c00016{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00016{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);}
.me9_c00016{transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);}
.m61_c00016{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);}
.m6c_c00016{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.ma2_c00016{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);}
.m17_c00016{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);}
.m7b_c00016{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);}
.m20_c00016{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);}
.mc5_c00016{transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);}
.mbf_c00016{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);}
.m65_c00016{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.m63_c00016{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);}
.m37_c00016{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);}
.m90_c00016{transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);}
.m60_c00016{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.me7_c00016{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);}
.m8a_c00016{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m8c_c00016{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.m59_c00016{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.mea_c00016{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m76_c00016{transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);}
.m7e_c00016{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m3b_c00016{transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);}
.mc9_c00016{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);}
.me4_c00016{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);}
.m3a_c00016{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.mb6_c00016{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);}
.m9f_c00016{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);}
.mc0_c00016{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.mca_c00016{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.mc6_c00016{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);}
.me5_c00016{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);}
.m35_c00016{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);}
.m6d_c00016{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.mc8_c00016{transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);}
.ma8_c00016{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);}
.m38_c00016{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.m8_c00016{transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);}
.m5b_c00016{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m9_c00016{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);}
.m84_c00016{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);}
.m91_c00016{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);}
.m69_c00016{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.md1_c00016{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.md2_c00016{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);}
.mb0_c00016{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m66_c00016{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);}
.ma0_c00016{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m2c_c00016{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);}
.mcb_c00016{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);}
.m45_c00016{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);}
.m32_c00016{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m4c_c00016{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m7d_c00016{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);}
.m8f_c00016{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);}
.m3_c00016{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);}
.m4d_c00016{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m40_c00016{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);}
.mb_c00016{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);}
.m48_c00016{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);}
.m96_c00016{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00016{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m25_c00016{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00016{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);}
.m3f_c00016{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00016{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);}
.m5f_c00016{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);}
.m71_c00016{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00016{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);}
.m16_c00016{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m53_c00016{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m23_c00016{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);}
.m3e_c00016{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00016{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);}
.m2d_c00016{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md_c00016{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m41_c00016{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);}
.m79_c00016{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00016{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);}
.m64_c00016{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m78_c00016{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m46_c00016{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00016{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m74_c00016{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md0_c00016{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00016{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);}
.m30_c00016{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m31_c00016{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00016{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m49_c00016{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mae_c00016{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00016{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00016{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.ma_c00016{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m44_c00016{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m81_c00016{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m43_c00016{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00016{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);}
.m99_c00016{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m88_c00016{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00016{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00016{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);}
.me1_c00016{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);}
.m57_c00016{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4_c00016{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m85_c00016{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00016{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00016{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);}
.m8e_c00016{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m29_c00016{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00016{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);}
.m9d_c00016{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00016{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00016{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);}
.ma7_c00016{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m75_c00016{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m80_c00016{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00016{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.md9_c00016{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);}
.md8_c00016{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);}
.m11_c00016{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m19_c00016{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m1_c00016{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m36_c00016{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00016{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m67_c00016{transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls1_c00016{letter-spacing:0.000000px;}
.ls0_c00016{letter-spacing:99.984000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00016{word-spacing:0.000000px;}
.fc0_c00016{color:transparent;}
.fs5_c00016{font-size:3.456000px;}
.fs6_c00016{font-size:6.000000px;}
.fs1_c00016{font-size:6.900000px;}
.fs4_c00016{font-size:10.380000px;}
.fs14_c00016{font-size:13.800000px;}
.fs1b_c00016{font-size:17.280000px;}
.fs3_c00016{font-size:20.760000px;}
.fs0_c00016{font-size:24.180000px;}
.fs2_c00016{font-size:27.660000px;}
.fs1e_c00016{font-size:31.080000px;}
.fs16_c00016{font-size:34.560000px;}
.fs1c_c00016{font-size:38.040000px;}
.fs1d_c00016{font-size:41.460000px;}
.fs13_c00016{font-size:44.940000px;}
.fs1a_c00016{font-size:48.360000px;}
.fs18_c00016{font-size:51.840000px;}
.fs17_c00016{font-size:55.320000px;}
.fsa_c00016{font-size:58.740000px;}
.fsc_c00016{font-size:62.220000px;}
.fs9_c00016{font-size:65.640000px;}
.fs7_c00016{font-size:69.120000px;}
.fsb_c00016{font-size:72.600000px;}
.fs8_c00016{font-size:76.020000px;}
.fs19_c00016{font-size:79.500000px;}
.fsd_c00016{font-size:82.920000px;}
.fse_c00016{font-size:86.400000px;}
.fsf_c00016{font-size:89.880000px;}
.fs15_c00016{font-size:93.300000px;}
.fs26_c00016{font-size:100.200000px;}
.fs24_c00016{font-size:103.680000px;}
.fs23_c00016{font-size:107.160000px;}
.fs25_c00016{font-size:110.580000px;}
.fs12_c00016{font-size:114.060000px;}
.fs11_c00016{font-size:117.480000px;}
.fs1f_c00016{font-size:120.960000px;}
.fs10_c00016{font-size:124.440000px;}
.fs22_c00016{font-size:127.860000px;}
.fs20_c00016{font-size:131.340000px;}
.fs21_c00016{font-size:141.720000px;}
.y0_c00016{bottom:0.000000px;}
.yeb_c00016{bottom:482.970000px;}
.ye9_c00016{bottom:483.840000px;}
.yed_c00016{bottom:485.565000px;}
.yec_c00016{bottom:486.435000px;}
.yea_c00016{bottom:492.480000px;}
.ye0_c00016{bottom:512.355000px;}
.ye1_c00016{bottom:515.805000px;}
.ye4_c00016{bottom:517.530000px;}
.ye8_c00016{bottom:520.125000px;}
.ye7_c00016{bottom:521.850000px;}
.ye2_c00016{bottom:524.445000px;}
.ye3_c00016{bottom:525.315000px;}
.ye6_c00016{bottom:526.170000px;}
.ye5_c00016{bottom:527.040000px;}
.ydd_c00016{bottom:551.235000px;}
.yde_c00016{bottom:552.960000px;}
.ydf_c00016{bottom:553.830000px;}
.yda_c00016{bottom:558.150000px;}
.yd8_c00016{bottom:560.730000px;}
.yd5_c00016{bottom:562.470000px;}
.yd7_c00016{bottom:564.195000px;}
.ydb_c00016{bottom:566.790000px;}
.yd9_c00016{bottom:570.240000px;}
.yd6_c00016{bottom:571.965000px;}
.ydc_c00016{bottom:573.690000px;}
.yd4_c00016{bottom:608.250000px;}
.yca_c00016{bottom:616.035000px;}
.yc8_c00016{bottom:617.760000px;}
.yd0_c00016{bottom:618.630000px;}
.ycf_c00016{bottom:620.355000px;}
.yce_c00016{bottom:621.210000px;}
.yc7_c00016{bottom:622.080000px;}
.yc9_c00016{bottom:623.805000px;}
.ycc_c00016{bottom:624.675000px;}
.ycb_c00016{bottom:625.530000px;}
.ycd_c00016{bottom:626.400000px;}
.yd1_c00016{bottom:627.270000px;}
.yd2_c00016{bottom:630.720000px;}
.yd3_c00016{bottom:635.040000px;}
.yc0_c00016{bottom:637.635000px;}
.ybe_c00016{bottom:638.490000px;}
.ybf_c00016{bottom:639.360000px;}
.yc4_c00016{bottom:641.085000px;}
.ybd_c00016{bottom:641.955000px;}
.yc2_c00016{bottom:642.810000px;}
.yc3_c00016{bottom:643.680000px;}
.yc5_c00016{bottom:644.550000px;}
.yc1_c00016{bottom:645.405000px;}
.yc6_c00016{bottom:653.190000px;}
.yb4_c00016{bottom:658.365000px;}
.yb7_c00016{bottom:660.090000px;}
.yb8_c00016{bottom:660.960000px;}
.yb9_c00016{bottom:661.830000px;}
.ybb_c00016{bottom:662.685000px;}
.yb5_c00016{bottom:663.555000px;}
.yb6_c00016{bottom:664.410000px;}
.ybc_c00016{bottom:667.005000px;}
.yba_c00016{bottom:667.875000px;}
.yaa_c00016{bottom:679.110000px;}
.yac_c00016{bottom:680.835000px;}
.yae_c00016{bottom:681.690000px;}
.yb2_c00016{bottom:682.560000px;}
.yab_c00016{bottom:683.430000px;}
.ya9_c00016{bottom:684.285000px;}
.yb3_c00016{bottom:685.155000px;}
.yad_c00016{bottom:686.010000px;}
.yaf_c00016{bottom:686.880000px;}
.yb0_c00016{bottom:687.750000px;}
.yb1_c00016{bottom:688.605000px;}
.ya8_c00016{bottom:692.925000px;}
.ya2_c00016{bottom:701.565000px;}
.ya1_c00016{bottom:702.435000px;}
.ya7_c00016{bottom:703.290000px;}
.y9e_c00016{bottom:704.160000px;}
.y9f_c00016{bottom:705.030000px;}
.ya0_c00016{bottom:705.885000px;}
.ya3_c00016{bottom:706.755000px;}
.ya4_c00016{bottom:707.610000px;}
.ya5_c00016{bottom:708.480000px;}
.ya6_c00016{bottom:709.350000px;}
.y97_c00016{bottom:719.715000px;}
.y9a_c00016{bottom:721.440000px;}
.y9b_c00016{bottom:722.310000px;}
.y95_c00016{bottom:723.165000px;}
.y96_c00016{bottom:724.890000px;}
.y9c_c00016{bottom:725.760000px;}
.y98_c00016{bottom:726.630000px;}
.y99_c00016{bottom:727.485000px;}
.y9d_c00016{bottom:728.355000px;}
.y94_c00016{bottom:737.850000px;}
.y8f_c00016{bottom:738.720000px;}
.y90_c00016{bottom:740.445000px;}
.y93_c00016{bottom:741.315000px;}
.y91_c00016{bottom:742.170000px;}
.y8e_c00016{bottom:745.635000px;}
.y92_c00016{bottom:747.360000px;}
.y86_c00016{bottom:758.595000px;}
.y85_c00016{bottom:759.450000px;}
.y89_c00016{bottom:760.320000px;}
.y87_c00016{bottom:761.190000px;}
.y8b_c00016{bottom:762.045000px;}
.y84_c00016{bottom:762.915000px;}
.y82_c00016{bottom:763.770000px;}
.y83_c00016{bottom:764.640000px;}
.y88_c00016{bottom:766.365000px;}
.y81_c00016{bottom:768.090000px;}
.y8a_c00016{bottom:768.960000px;}
.y8c_c00016{bottom:769.830000px;}
.y8d_c00016{bottom:776.730000px;}
.y7c_c00016{bottom:779.325000px;}
.y7e_c00016{bottom:781.920000px;}
.y7d_c00016{bottom:785.370000px;}
.y80_c00016{bottom:787.110000px;}
.y7f_c00016{bottom:787.965000px;}
.y7b_c00016{bottom:788.835000px;}
.y7a_c00016{bottom:795.750000px;}
.y6f_c00016{bottom:799.200000px;}
.y70_c00016{bottom:800.070000px;}
.y76_c00016{bottom:800.925000px;}
.y72_c00016{bottom:801.795000px;}
.y78_c00016{bottom:802.650000px;}
.y71_c00016{bottom:804.390000px;}
.y73_c00016{bottom:805.245000px;}
.y74_c00016{bottom:806.115000px;}
.y77_c00016{bottom:806.970000px;}
.y79_c00016{bottom:807.840000px;}
.y75_c00016{bottom:809.565000px;}
.y6e_c00016{bottom:817.350000px;}
.y68_c00016{bottom:819.075000px;}
.y67_c00016{bottom:819.930000px;}
.y65_c00016{bottom:820.800000px;}
.y6b_c00016{bottom:821.670000px;}
.y6c_c00016{bottom:822.525000px;}
.y66_c00016{bottom:824.250000px;}
.y69_c00016{bottom:825.120000px;}
.y6a_c00016{bottom:826.845000px;}
.y6d_c00016{bottom:827.715000px;}
.y60_c00016{bottom:838.950000px;}
.y61_c00016{bottom:840.675000px;}
.y63_c00016{bottom:841.530000px;}
.y64_c00016{bottom:844.995000px;}
.y62_c00016{bottom:847.590000px;}
.y5f_c00016{bottom:849.315000px;}
.y57_c00016{bottom:858.810000px;}
.y58_c00016{bottom:859.680000px;}
.y59_c00016{bottom:860.550000px;}
.y5c_c00016{bottom:862.275000px;}
.y5e_c00016{bottom:864.000000px;}
.y5a_c00016{bottom:866.595000px;}
.y5b_c00016{bottom:867.450000px;}
.y5d_c00016{bottom:869.190000px;}
.y4e_c00016{bottom:879.555000px;}
.y4f_c00016{bottom:881.280000px;}
.y52_c00016{bottom:882.150000px;}
.y53_c00016{bottom:883.005000px;}
.y51_c00016{bottom:883.875000px;}
.y56_c00016{bottom:884.730000px;}
.y55_c00016{bottom:885.600000px;}
.y50_c00016{bottom:886.470000px;}
.y54_c00016{bottom:889.050000px;}
.y45_c00016{bottom:900.285000px;}
.y46_c00016{bottom:901.155000px;}
.y4b_c00016{bottom:902.010000px;}
.y44_c00016{bottom:902.880000px;}
.y48_c00016{bottom:904.605000px;}
.y49_c00016{bottom:905.475000px;}
.y47_c00016{bottom:907.200000px;}
.y4a_c00016{bottom:908.070000px;}
.y4c_c00016{bottom:908.925000px;}
.y4d_c00016{bottom:909.795000px;}
.y40_c00016{bottom:921.885000px;}
.y41_c00016{bottom:924.480000px;}
.y3e_c00016{bottom:925.350000px;}
.y3d_c00016{bottom:926.205000px;}
.y3f_c00016{bottom:927.075000px;}
.y42_c00016{bottom:929.670000px;}
.y43_c00016{bottom:938.310000px;}
.y38_c00016{bottom:942.630000px;}
.y3b_c00016{bottom:943.485000px;}
.y3a_c00016{bottom:945.210000px;}
.y39_c00016{bottom:946.950000px;}
.y3c_c00016{bottom:948.675000px;}
.y34_c00016{bottom:962.490000px;}
.y35_c00016{bottom:963.360000px;}
.y36_c00016{bottom:965.085000px;}
.y33_c00016{bottom:965.955000px;}
.y37_c00016{bottom:966.810000px;}
.y2b_c00016{bottom:980.640000px;}
.y2c_c00016{bottom:982.365000px;}
.y2e_c00016{bottom:984.090000px;}
.y31_c00016{bottom:984.960000px;}
.y32_c00016{bottom:986.685000px;}
.y2d_c00016{bottom:987.555000px;}
.y2f_c00016{bottom:988.410000px;}
.y30_c00016{bottom:989.280000px;}
.y22_c00016{bottom:1002.240000px;}
.y24_c00016{bottom:1003.110000px;}
.y27_c00016{bottom:1003.965000px;}
.y23_c00016{bottom:1004.835000px;}
.y26_c00016{bottom:1006.560000px;}
.y29_c00016{bottom:1007.430000px;}
.y25_c00016{bottom:1008.285000px;}
.y28_c00016{bottom:1010.880000px;}
.y2a_c00016{bottom:1011.750000px;}
.y21_c00016{bottom:1016.070000px;}
.y1a_c00016{bottom:1026.435000px;}
.y1d_c00016{bottom:1027.290000px;}
.y1c_c00016{bottom:1028.160000px;}
.y20_c00016{bottom:1029.030000px;}
.y1e_c00016{bottom:1029.885000px;}
.y1f_c00016{bottom:1030.755000px;}
.y1b_c00016{bottom:1033.350000px;}
.y17_c00016{bottom:1209.600000px;}
.y19_c00016{bottom:1226.880000px;}
.y18_c00016{bottom:1232.070000px;}
.y15_c00016{bottom:1253.670000px;}
.y16_c00016{bottom:1256.250000px;}
.y11_c00016{bottom:1342.650000px;}
.y12_c00016{bottom:1345.245000px;}
.yf_c00016{bottom:1346.970000px;}
.y10_c00016{bottom:1348.710000px;}
.y14_c00016{bottom:1354.755000px;}
.y13_c00016{bottom:1357.350000px;}
.yd_c00016{bottom:1384.125000px;}
.y8_c00016{bottom:1386.720000px;}
.yb_c00016{bottom:1387.590000px;}
.y9_c00016{bottom:1389.315000px;}
.ya_c00016{bottom:1390.170000px;}
.yc_c00016{bottom:1391.040000px;}
.ye_c00016{bottom:1400.550000px;}
.y6_c00016{bottom:1406.595000px;}
.y4_c00016{bottom:1407.450000px;}
.y5_c00016{bottom:1408.320000px;}
.y7_c00016{bottom:1410.915000px;}
.y3_c00016{bottom:1435.965000px;}
.y2_c00016{bottom:1437.690000px;}
.y1_c00016{bottom:1443.750000px;}
.h7_c00016{height:3.110063px;}
.h8_c00016{height:5.399414px;}
.h3_c00016{height:6.209326px;}
.h6_c00016{height:9.340986px;}
.h16_c00016{height:12.418652px;}
.h1d_c00016{height:15.550313px;}
.h5_c00016{height:18.681973px;}
.h2_c00016{height:21.759639px;}
.h4_c00016{height:24.891299px;}
.h20_c00016{height:27.968965px;}
.h18_c00016{height:31.100625px;}
.h1e_c00016{height:34.232285px;}
.h1f_c00016{height:37.309951px;}
.h15_c00016{height:40.441611px;}
.h1c_c00016{height:43.519277px;}
.h1a_c00016{height:46.650937px;}
.h19_c00016{height:49.782598px;}
.hc_c00016{height:52.860264px;}
.he_c00016{height:55.991924px;}
.hb_c00016{height:59.069590px;}
.h9_c00016{height:62.201250px;}
.hd_c00016{height:65.332910px;}
.ha_c00016{height:68.410576px;}
.h1b_c00016{height:71.542236px;}
.hf_c00016{height:74.619902px;}
.h10_c00016{height:77.751563px;}
.h11_c00016{height:80.883223px;}
.h17_c00016{height:83.960889px;}
.h28_c00016{height:90.170215px;}
.h26_c00016{height:93.301875px;}
.h25_c00016{height:96.433535px;}
.h27_c00016{height:99.511201px;}
.h14_c00016{height:102.642861px;}
.h13_c00016{height:105.720527px;}
.h21_c00016{height:108.852188px;}
.h12_c00016{height:111.983848px;}
.h24_c00016{height:115.061514px;}
.h22_c00016{height:118.193174px;}
.h23_c00016{height:127.534160px;}
.h0_c00016{height:1515.450000px;}
.h1_c00016{height:1515.750000px;}
.w1_c00016{width:1065.000000px;}
.w0_c00016{width:1065.315000px;}
.x0_c00016{left:0.000000px;}
.x75_c00016{left:124.410000px;}
.x81_c00016{left:132.195000px;}
.x88_c00016{left:142.560000px;}
.x76_c00016{left:145.155000px;}
.x70_c00016{left:164.160000px;}
.x77_c00016{left:178.845000px;}
.x82_c00016{left:182.310000px;}
.x3e_c00016{left:186.630000px;}
.x31_c00016{left:188.355000px;}
.x61_c00016{left:192.675000px;}
.x6b_c00016{left:194.400000px;}
.x78_c00016{left:196.125000px;}
.x45_c00016{left:197.850000px;}
.x3f_c00016{left:202.170000px;}
.x95_c00016{left:203.910000px;}
.x51_c00016{left:205.635000px;}
.x32_c00016{left:208.230000px;}
.xca_c00016{left:217.725000px;}
.x26_c00016{left:220.320000px;}
.xae_c00016{left:222.915000px;}
.x27_c00016{left:227.235000px;}
.xb4_c00016{left:230.685000px;}
.xbb_c00016{left:232.410000px;}
.x1e_c00016{left:236.730000px;}
.x89_c00016{left:239.325000px;}
.x96_c00016{left:242.790000px;}
.x71_c00016{left:244.515000px;}
.x4b_c00016{left:250.560000px;}
.x8a_c00016{left:254.880000px;}
.x59_c00016{left:257.475000px;}
.x1f_c00016{left:263.520000px;}
.x8b_c00016{left:265.245000px;}
.xb5_c00016{left:267.840000px;}
.x62_c00016{left:272.160000px;}
.xc8_c00016{left:273.885000px;}
.x52_c00016{left:276.480000px;}
.x79_c00016{left:278.205000px;}
.xc4_c00016{left:282.525000px;}
.x4c_c00016{left:285.120000px;}
.x33_c00016{left:292.890000px;}
.xa0_c00016{left:297.210000px;}
.x40_c00016{left:299.805000px;}
.x4d_c00016{left:302.400000px;}
.x28_c00016{left:304.125000px;}
.xb7_c00016{left:306.720000px;}
.x91_c00016{left:308.445000px;}
.x29_c00016{left:312.765000px;}
.xce_c00016{left:315.360000px;}
.xaf_c00016{left:317.955000px;}
.xbc_c00016{left:329.190000px;}
.x46_c00016{left:331.770000px;}
.x1_c00016{left:334.365000px;}
.x20_c00016{left:336.960000px;}
.x63_c00016{left:341.280000px;}
.x21_c00016{left:343.875000px;}
.xa1_c00016{left:348.195000px;}
.x34_c00016{left:351.645000px;}
.x8c_c00016{left:354.240000px;}
.x2a_c00016{left:357.690000px;}
.x35_c00016{left:360.285000px;}
.x83_c00016{left:363.750000px;}
.x47_c00016{left:369.795000px;}
.x97_c00016{left:374.115000px;}
.x36_c00016{left:376.710000px;}
.xb0_c00016{left:381.885000px;}
.x7a_c00016{left:383.610000px;}
.x64_c00016{left:386.205000px;}
.x12_c00016{left:387.930000px;}
.x8_c00016{left:392.250000px;}
.x92_c00016{left:393.990000px;}
.x53_c00016{left:397.440000px;}
.x2_c00016{left:401.760000px;}
.x13_c00016{left:407.805000px;}
.x5a_c00016{left:411.270000px;}
.xcf_c00016{left:414.720000px;}
.x3_c00016{left:416.445000px;}
.x84_c00016{left:420.765000px;}
.x41_c00016{left:424.230000px;}
.x65_c00016{left:427.680000px;}
.x4_c00016{left:431.130000px;}
.x5b_c00016{left:435.450000px;}
.xa2_c00016{left:440.640000px;}
.x54_c00016{left:442.365000px;}
.x14_c00016{left:444.960000px;}
.xc5_c00016{left:446.685000px;}
.xa3_c00016{left:449.280000px;}
.x5_c00016{left:451.875000px;}
.x48_c00016{left:457.920000px;}
.x22_c00016{left:459.645000px;}
.x55_c00016{left:462.240000px;}
.x37_c00016{left:465.690000px;}
.x98_c00016{left:470.010000px;}
.xb1_c00016{left:472.605000px;}
.x6_c00016{left:476.070000px;}
.xa4_c00016{left:479.520000px;}
.x7b_c00016{left:481.245000px;}
.x66_c00016{left:488.160000px;}
.x2b_c00016{left:490.755000px;}
.x99_c00016{left:492.480000px;}
.xa5_c00016{left:496.800000px;}
.x38_c00016{left:500.250000px;}
.x72_c00016{left:501.990000px;}
.xbd_c00016{left:506.310000px;}
.x9_c00016{left:509.760000px;}
.xb2_c00016{left:515.805000px;}
.x39_c00016{left:518.400000px;}
.x15_c00016{left:520.995000px;}
.x93_c00016{left:527.910000px;}
.xb6_c00016{left:530.490000px;}
.xa_c00016{left:533.085000px;}
.x7c_c00016{left:535.680000px;}
.xbe_c00016{left:539.130000px;}
.x67_c00016{left:542.595000px;}
.x6c_c00016{left:548.640000px;}
.xa6_c00016{left:550.365000px;}
.xb_c00016{left:553.830000px;}
.xa7_c00016{left:557.280000px;}
.x3a_c00016{left:568.515000px;}
.xb3_c00016{left:577.155000px;}
.xc_c00016{left:578.880000px;}
.x7_c00016{left:581.475000px;}
.x5c_c00016{left:584.070000px;}
.x9a_c00016{left:585.795000px;}
.x23_c00016{left:587.520000px;}
.xbf_c00016{left:589.245000px;}
.x6d_c00016{left:592.710000px;}
.x7d_c00016{left:595.290000px;}
.x3b_c00016{left:599.610000px;}
.xd_c00016{left:603.075000px;}
.x16_c00016{left:607.395000px;}
.xa8_c00016{left:610.845000px;}
.x49_c00016{left:612.570000px;}
.x56_c00016{left:615.165000px;}
.xc6_c00016{left:618.630000px;}
.x2c_c00016{left:621.210000px;}
.xe_c00016{left:623.805000px;}
.x24_c00016{left:628.126500px;}
.x68_c00016{left:629.850000px;}
.x9b_c00016{left:632.445000px;}
.xa9_c00016{left:635.910000px;}
.x57_c00016{left:641.085000px;}
.x42_c00016{left:642.810000px;}
.xf_c00016{left:644.550000px;}
.x5d_c00016{left:648.000000px;}
.x69_c00016{left:653.190000px;}
.x4e_c00016{left:656.640000px;}
.x10_c00016{left:658.365000px;}
.x11_c00016{left:662.685000px;}
.x6e_c00016{left:665.280000px;}
.x9c_c00016{left:667.005000px;}
.xaa_c00016{left:669.600000px;}
.x4f_c00016{left:678.240000px;}
.x3c_c00016{left:681.690000px;}
.x7e_c00016{left:689.475000px;}
.x6f_c00016{left:692.070000px;}
.x4a_c00016{left:693.795000px;}
.x94_c00016{left:698.115000px;}
.x9d_c00016{left:699.840000px;}
.x58_c00016{left:701.565000px;}
.x73_c00016{left:704.160000px;}
.x5e_c00016{left:706.755000px;}
.x8d_c00016{left:708.480000px;}
.x2d_c00016{left:710.205000px;}
.xcb_c00016{left:711.930000px;}
.xb8_c00016{left:719.715000px;}
.x85_c00016{left:725.760000px;}
.xcc_c00016{left:729.210000px;}
.x9e_c00016{left:733.530000px;}
.xab_c00016{left:736.995000px;}
.x43_c00016{left:740.445000px;}
.x2e_c00016{left:742.170000px;}
.xc7_c00016{left:743.910000px;}
.x25_c00016{left:747.360000px;}
.x7f_c00016{left:753.405000px;}
.x50_c00016{left:756.000000px;}
.x3d_c00016{left:761.190000px;}
.x86_c00016{left:763.770000px;}
.x8e_c00016{left:768.090000px;}
.xac_c00016{left:770.685000px;}
.x2f_c00016{left:772.410000px;}
.x9f_c00016{left:774.150000px;}
.x87_c00016{left:780.195000px;}
.xcd_c00016{left:781.920000px;}
.xb9_c00016{left:787.110000px;}
.x5f_c00016{left:788.835000px;}
.x6a_c00016{left:790.560000px;}
.x17_c00016{left:798.330000px;}
.xad_c00016{left:801.795000px;}
.x80_c00016{left:803.520000px;}
.x18_c00016{left:808.710000px;}
.x44_c00016{left:812.160000px;}
.xc0_c00016{left:813.885000px;}
.x60_c00016{left:815.610000px;}
.x30_c00016{left:820.800000px;}
.x74_c00016{left:830.310000px;}
.xc9_c00016{left:832.035000px;}
.x8f_c00016{left:839.805000px;}
.xba_c00016{left:851.040000px;}
.x90_c00016{left:854.490000px;}
.xc2_c00016{left:905.475000px;}
.x1c_c00016{left:1014.330000px;}
.x19_c00016{left:1022.115000px;}
.x1d_c00016{left:1027.290000px;}
.xc1_c00016{left:1029.885000px;}
.x1a_c00016{left:1033.350000px;}
.xc3_c00016{left:1036.800000px;}
.x1b_c00016{left:1057.530768px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls1_c00016{letter-spacing:0.000000pt;}
.ls0_c00016{letter-spacing:88.874667pt;}
.ws0_c00016{word-spacing:0.000000pt;}
.fs5_c00016{font-size:3.072000pt;}
.fs6_c00016{font-size:5.333333pt;}
.fs1_c00016{font-size:6.133333pt;}
.fs4_c00016{font-size:9.226667pt;}
.fs14_c00016{font-size:12.266667pt;}
.fs1b_c00016{font-size:15.360000pt;}
.fs3_c00016{font-size:18.453333pt;}
.fs0_c00016{font-size:21.493333pt;}
.fs2_c00016{font-size:24.586667pt;}
.fs1e_c00016{font-size:27.626667pt;}
.fs16_c00016{font-size:30.720000pt;}
.fs1c_c00016{font-size:33.813333pt;}
.fs1d_c00016{font-size:36.853333pt;}
.fs13_c00016{font-size:39.946667pt;}
.fs1a_c00016{font-size:42.986667pt;}
.fs18_c00016{font-size:46.080000pt;}
.fs17_c00016{font-size:49.173333pt;}
.fsa_c00016{font-size:52.213333pt;}
.fsc_c00016{font-size:55.306667pt;}
.fs9_c00016{font-size:58.346667pt;}
.fs7_c00016{font-size:61.440000pt;}
.fsb_c00016{font-size:64.533333pt;}
.fs8_c00016{font-size:67.573333pt;}
.fs19_c00016{font-size:70.666667pt;}
.fsd_c00016{font-size:73.706667pt;}
.fse_c00016{font-size:76.800000pt;}
.fsf_c00016{font-size:79.893333pt;}
.fs15_c00016{font-size:82.933333pt;}
.fs26_c00016{font-size:89.066667pt;}
.fs24_c00016{font-size:92.160000pt;}
.fs23_c00016{font-size:95.253333pt;}
.fs25_c00016{font-size:98.293333pt;}
.fs12_c00016{font-size:101.386667pt;}
.fs11_c00016{font-size:104.426667pt;}
.fs1f_c00016{font-size:107.520000pt;}
.fs10_c00016{font-size:110.613333pt;}
.fs22_c00016{font-size:113.653333pt;}
.fs20_c00016{font-size:116.746667pt;}
.fs21_c00016{font-size:125.973333pt;}
.y0_c00016{bottom:0.000000pt;}
.yeb_c00016{bottom:429.306667pt;}
.ye9_c00016{bottom:430.080000pt;}
.yed_c00016{bottom:431.613333pt;}
.yec_c00016{bottom:432.386667pt;}
.yea_c00016{bottom:437.760000pt;}
.ye0_c00016{bottom:455.426667pt;}
.ye1_c00016{bottom:458.493333pt;}
.ye4_c00016{bottom:460.026667pt;}
.ye8_c00016{bottom:462.333333pt;}
.ye7_c00016{bottom:463.866667pt;}
.ye2_c00016{bottom:466.173333pt;}
.ye3_c00016{bottom:466.946667pt;}
.ye6_c00016{bottom:467.706667pt;}
.ye5_c00016{bottom:468.480000pt;}
.ydd_c00016{bottom:489.986667pt;}
.yde_c00016{bottom:491.520000pt;}
.ydf_c00016{bottom:492.293333pt;}
.yda_c00016{bottom:496.133333pt;}
.yd8_c00016{bottom:498.426667pt;}
.yd5_c00016{bottom:499.973333pt;}
.yd7_c00016{bottom:501.506667pt;}
.ydb_c00016{bottom:503.813333pt;}
.yd9_c00016{bottom:506.880000pt;}
.yd6_c00016{bottom:508.413333pt;}
.ydc_c00016{bottom:509.946667pt;}
.yd4_c00016{bottom:540.666667pt;}
.yca_c00016{bottom:547.586667pt;}
.yc8_c00016{bottom:549.120000pt;}
.yd0_c00016{bottom:549.893333pt;}
.ycf_c00016{bottom:551.426667pt;}
.yce_c00016{bottom:552.186667pt;}
.yc7_c00016{bottom:552.960000pt;}
.yc9_c00016{bottom:554.493333pt;}
.ycc_c00016{bottom:555.266667pt;}
.ycb_c00016{bottom:556.026667pt;}
.ycd_c00016{bottom:556.800000pt;}
.yd1_c00016{bottom:557.573333pt;}
.yd2_c00016{bottom:560.640000pt;}
.yd3_c00016{bottom:564.480000pt;}
.yc0_c00016{bottom:566.786667pt;}
.ybe_c00016{bottom:567.546667pt;}
.ybf_c00016{bottom:568.320000pt;}
.yc4_c00016{bottom:569.853333pt;}
.ybd_c00016{bottom:570.626667pt;}
.yc2_c00016{bottom:571.386667pt;}
.yc3_c00016{bottom:572.160000pt;}
.yc5_c00016{bottom:572.933333pt;}
.yc1_c00016{bottom:573.693333pt;}
.yc6_c00016{bottom:580.613333pt;}
.yb4_c00016{bottom:585.213333pt;}
.yb7_c00016{bottom:586.746667pt;}
.yb8_c00016{bottom:587.520000pt;}
.yb9_c00016{bottom:588.293333pt;}
.ybb_c00016{bottom:589.053333pt;}
.yb5_c00016{bottom:589.826667pt;}
.yb6_c00016{bottom:590.586667pt;}
.ybc_c00016{bottom:592.893333pt;}
.yba_c00016{bottom:593.666667pt;}
.yaa_c00016{bottom:603.653333pt;}
.yac_c00016{bottom:605.186667pt;}
.yae_c00016{bottom:605.946667pt;}
.yb2_c00016{bottom:606.720000pt;}
.yab_c00016{bottom:607.493333pt;}
.ya9_c00016{bottom:608.253333pt;}
.yb3_c00016{bottom:609.026667pt;}
.yad_c00016{bottom:609.786667pt;}
.yaf_c00016{bottom:610.560000pt;}
.yb0_c00016{bottom:611.333333pt;}
.yb1_c00016{bottom:612.093333pt;}
.ya8_c00016{bottom:615.933333pt;}
.ya2_c00016{bottom:623.613333pt;}
.ya1_c00016{bottom:624.386667pt;}
.ya7_c00016{bottom:625.146667pt;}
.y9e_c00016{bottom:625.920000pt;}
.y9f_c00016{bottom:626.693333pt;}
.ya0_c00016{bottom:627.453333pt;}
.ya3_c00016{bottom:628.226667pt;}
.ya4_c00016{bottom:628.986667pt;}
.ya5_c00016{bottom:629.760000pt;}
.ya6_c00016{bottom:630.533333pt;}
.y97_c00016{bottom:639.746667pt;}
.y9a_c00016{bottom:641.280000pt;}
.y9b_c00016{bottom:642.053333pt;}
.y95_c00016{bottom:642.813333pt;}
.y96_c00016{bottom:644.346667pt;}
.y9c_c00016{bottom:645.120000pt;}
.y98_c00016{bottom:645.893333pt;}
.y99_c00016{bottom:646.653333pt;}
.y9d_c00016{bottom:647.426667pt;}
.y94_c00016{bottom:655.866667pt;}
.y8f_c00016{bottom:656.640000pt;}
.y90_c00016{bottom:658.173333pt;}
.y93_c00016{bottom:658.946667pt;}
.y91_c00016{bottom:659.706667pt;}
.y8e_c00016{bottom:662.786667pt;}
.y92_c00016{bottom:664.320000pt;}
.y86_c00016{bottom:674.306667pt;}
.y85_c00016{bottom:675.066667pt;}
.y89_c00016{bottom:675.840000pt;}
.y87_c00016{bottom:676.613333pt;}
.y8b_c00016{bottom:677.373333pt;}
.y84_c00016{bottom:678.146667pt;}
.y82_c00016{bottom:678.906667pt;}
.y83_c00016{bottom:679.680000pt;}
.y88_c00016{bottom:681.213333pt;}
.y81_c00016{bottom:682.746667pt;}
.y8a_c00016{bottom:683.520000pt;}
.y8c_c00016{bottom:684.293333pt;}
.y8d_c00016{bottom:690.426667pt;}
.y7c_c00016{bottom:692.733333pt;}
.y7e_c00016{bottom:695.040000pt;}
.y7d_c00016{bottom:698.106667pt;}
.y80_c00016{bottom:699.653333pt;}
.y7f_c00016{bottom:700.413333pt;}
.y7b_c00016{bottom:701.186667pt;}
.y7a_c00016{bottom:707.333333pt;}
.y6f_c00016{bottom:710.400000pt;}
.y70_c00016{bottom:711.173333pt;}
.y76_c00016{bottom:711.933333pt;}
.y72_c00016{bottom:712.706667pt;}
.y78_c00016{bottom:713.466667pt;}
.y71_c00016{bottom:715.013333pt;}
.y73_c00016{bottom:715.773333pt;}
.y74_c00016{bottom:716.546667pt;}
.y77_c00016{bottom:717.306667pt;}
.y79_c00016{bottom:718.080000pt;}
.y75_c00016{bottom:719.613333pt;}
.y6e_c00016{bottom:726.533333pt;}
.y68_c00016{bottom:728.066667pt;}
.y67_c00016{bottom:728.826667pt;}
.y65_c00016{bottom:729.600000pt;}
.y6b_c00016{bottom:730.373333pt;}
.y6c_c00016{bottom:731.133333pt;}
.y66_c00016{bottom:732.666667pt;}
.y69_c00016{bottom:733.440000pt;}
.y6a_c00016{bottom:734.973333pt;}
.y6d_c00016{bottom:735.746667pt;}
.y60_c00016{bottom:745.733333pt;}
.y61_c00016{bottom:747.266667pt;}
.y63_c00016{bottom:748.026667pt;}
.y64_c00016{bottom:751.106667pt;}
.y62_c00016{bottom:753.413333pt;}
.y5f_c00016{bottom:754.946667pt;}
.y57_c00016{bottom:763.386667pt;}
.y58_c00016{bottom:764.160000pt;}
.y59_c00016{bottom:764.933333pt;}
.y5c_c00016{bottom:766.466667pt;}
.y5e_c00016{bottom:768.000000pt;}
.y5a_c00016{bottom:770.306667pt;}
.y5b_c00016{bottom:771.066667pt;}
.y5d_c00016{bottom:772.613333pt;}
.y4e_c00016{bottom:781.826667pt;}
.y4f_c00016{bottom:783.360000pt;}
.y52_c00016{bottom:784.133333pt;}
.y53_c00016{bottom:784.893333pt;}
.y51_c00016{bottom:785.666667pt;}
.y56_c00016{bottom:786.426667pt;}
.y55_c00016{bottom:787.200000pt;}
.y50_c00016{bottom:787.973333pt;}
.y54_c00016{bottom:790.266667pt;}
.y45_c00016{bottom:800.253333pt;}
.y46_c00016{bottom:801.026667pt;}
.y4b_c00016{bottom:801.786667pt;}
.y44_c00016{bottom:802.560000pt;}
.y48_c00016{bottom:804.093333pt;}
.y49_c00016{bottom:804.866667pt;}
.y47_c00016{bottom:806.400000pt;}
.y4a_c00016{bottom:807.173333pt;}
.y4c_c00016{bottom:807.933333pt;}
.y4d_c00016{bottom:808.706667pt;}
.y40_c00016{bottom:819.453333pt;}
.y41_c00016{bottom:821.760000pt;}
.y3e_c00016{bottom:822.533333pt;}
.y3d_c00016{bottom:823.293333pt;}
.y3f_c00016{bottom:824.066667pt;}
.y42_c00016{bottom:826.373333pt;}
.y43_c00016{bottom:834.053333pt;}
.y38_c00016{bottom:837.893333pt;}
.y3b_c00016{bottom:838.653333pt;}
.y3a_c00016{bottom:840.186667pt;}
.y39_c00016{bottom:841.733333pt;}
.y3c_c00016{bottom:843.266667pt;}
.y34_c00016{bottom:855.546667pt;}
.y35_c00016{bottom:856.320000pt;}
.y36_c00016{bottom:857.853333pt;}
.y33_c00016{bottom:858.626667pt;}
.y37_c00016{bottom:859.386667pt;}
.y2b_c00016{bottom:871.680000pt;}
.y2c_c00016{bottom:873.213333pt;}
.y2e_c00016{bottom:874.746667pt;}
.y31_c00016{bottom:875.520000pt;}
.y32_c00016{bottom:877.053333pt;}
.y2d_c00016{bottom:877.826667pt;}
.y2f_c00016{bottom:878.586667pt;}
.y30_c00016{bottom:879.360000pt;}
.y22_c00016{bottom:890.880000pt;}
.y24_c00016{bottom:891.653333pt;}
.y27_c00016{bottom:892.413333pt;}
.y23_c00016{bottom:893.186667pt;}
.y26_c00016{bottom:894.720000pt;}
.y29_c00016{bottom:895.493333pt;}
.y25_c00016{bottom:896.253333pt;}
.y28_c00016{bottom:898.560000pt;}
.y2a_c00016{bottom:899.333333pt;}
.y21_c00016{bottom:903.173333pt;}
.y1a_c00016{bottom:912.386667pt;}
.y1d_c00016{bottom:913.146667pt;}
.y1c_c00016{bottom:913.920000pt;}
.y20_c00016{bottom:914.693333pt;}
.y1e_c00016{bottom:915.453333pt;}
.y1f_c00016{bottom:916.226667pt;}
.y1b_c00016{bottom:918.533333pt;}
.y17_c00016{bottom:1075.200000pt;}
.y19_c00016{bottom:1090.560000pt;}
.y18_c00016{bottom:1095.173333pt;}
.y15_c00016{bottom:1114.373333pt;}
.y16_c00016{bottom:1116.666667pt;}
.y11_c00016{bottom:1193.466667pt;}
.y12_c00016{bottom:1195.773333pt;}
.yf_c00016{bottom:1197.306667pt;}
.y10_c00016{bottom:1198.853333pt;}
.y14_c00016{bottom:1204.226667pt;}
.y13_c00016{bottom:1206.533333pt;}
.yd_c00016{bottom:1230.333333pt;}
.y8_c00016{bottom:1232.640000pt;}
.yb_c00016{bottom:1233.413333pt;}
.y9_c00016{bottom:1234.946667pt;}
.ya_c00016{bottom:1235.706667pt;}
.yc_c00016{bottom:1236.480000pt;}
.ye_c00016{bottom:1244.933333pt;}
.y6_c00016{bottom:1250.306667pt;}
.y4_c00016{bottom:1251.066667pt;}
.y5_c00016{bottom:1251.840000pt;}
.y7_c00016{bottom:1254.146667pt;}
.y3_c00016{bottom:1276.413333pt;}
.y2_c00016{bottom:1277.946667pt;}
.y1_c00016{bottom:1283.333333pt;}
.h7_c00016{height:2.764500pt;}
.h8_c00016{height:4.799479pt;}
.h3_c00016{height:5.519401pt;}
.h6_c00016{height:8.303099pt;}
.h16_c00016{height:11.038802pt;}
.h1d_c00016{height:13.822500pt;}
.h5_c00016{height:16.606198pt;}
.h2_c00016{height:19.341901pt;}
.h4_c00016{height:22.125599pt;}
.h20_c00016{height:24.861302pt;}
.h18_c00016{height:27.645000pt;}
.h1e_c00016{height:30.428698pt;}
.h1f_c00016{height:33.164401pt;}
.h15_c00016{height:35.948099pt;}
.h1c_c00016{height:38.683802pt;}
.h1a_c00016{height:41.467500pt;}
.h19_c00016{height:44.251198pt;}
.hc_c00016{height:46.986901pt;}
.he_c00016{height:49.770599pt;}
.hb_c00016{height:52.506302pt;}
.h9_c00016{height:55.290000pt;}
.hd_c00016{height:58.073698pt;}
.ha_c00016{height:60.809401pt;}
.h1b_c00016{height:63.593099pt;}
.hf_c00016{height:66.328802pt;}
.h10_c00016{height:69.112500pt;}
.h11_c00016{height:71.896198pt;}
.h17_c00016{height:74.631901pt;}
.h28_c00016{height:80.151302pt;}
.h26_c00016{height:82.935000pt;}
.h25_c00016{height:85.718698pt;}
.h27_c00016{height:88.454401pt;}
.h14_c00016{height:91.238099pt;}
.h13_c00016{height:93.973802pt;}
.h21_c00016{height:96.757500pt;}
.h12_c00016{height:99.541198pt;}
.h24_c00016{height:102.276901pt;}
.h22_c00016{height:105.060599pt;}
.h23_c00016{height:113.363698pt;}
.h0_c00016{height:1347.066667pt;}
.h1_c00016{height:1347.333333pt;}
.w1_c00016{width:946.666667pt;}
.w0_c00016{width:946.946667pt;}
.x0_c00016{left:0.000000pt;}
.x75_c00016{left:110.586667pt;}
.x81_c00016{left:117.506667pt;}
.x88_c00016{left:126.720000pt;}
.x76_c00016{left:129.026667pt;}
.x70_c00016{left:145.920000pt;}
.x77_c00016{left:158.973333pt;}
.x82_c00016{left:162.053333pt;}
.x3e_c00016{left:165.893333pt;}
.x31_c00016{left:167.426667pt;}
.x61_c00016{left:171.266667pt;}
.x6b_c00016{left:172.800000pt;}
.x78_c00016{left:174.333333pt;}
.x45_c00016{left:175.866667pt;}
.x3f_c00016{left:179.706667pt;}
.x95_c00016{left:181.253333pt;}
.x51_c00016{left:182.786667pt;}
.x32_c00016{left:185.093333pt;}
.xca_c00016{left:193.533333pt;}
.x26_c00016{left:195.840000pt;}
.xae_c00016{left:198.146667pt;}
.x27_c00016{left:201.986667pt;}
.xb4_c00016{left:205.053333pt;}
.xbb_c00016{left:206.586667pt;}
.x1e_c00016{left:210.426667pt;}
.x89_c00016{left:212.733333pt;}
.x96_c00016{left:215.813333pt;}
.x71_c00016{left:217.346667pt;}
.x4b_c00016{left:222.720000pt;}
.x8a_c00016{left:226.560000pt;}
.x59_c00016{left:228.866667pt;}
.x1f_c00016{left:234.240000pt;}
.x8b_c00016{left:235.773333pt;}
.xb5_c00016{left:238.080000pt;}
.x62_c00016{left:241.920000pt;}
.xc8_c00016{left:243.453333pt;}
.x52_c00016{left:245.760000pt;}
.x79_c00016{left:247.293333pt;}
.xc4_c00016{left:251.133333pt;}
.x4c_c00016{left:253.440000pt;}
.x33_c00016{left:260.346667pt;}
.xa0_c00016{left:264.186667pt;}
.x40_c00016{left:266.493333pt;}
.x4d_c00016{left:268.800000pt;}
.x28_c00016{left:270.333333pt;}
.xb7_c00016{left:272.640000pt;}
.x91_c00016{left:274.173333pt;}
.x29_c00016{left:278.013333pt;}
.xce_c00016{left:280.320000pt;}
.xaf_c00016{left:282.626667pt;}
.xbc_c00016{left:292.613333pt;}
.x46_c00016{left:294.906667pt;}
.x1_c00016{left:297.213333pt;}
.x20_c00016{left:299.520000pt;}
.x63_c00016{left:303.360000pt;}
.x21_c00016{left:305.666667pt;}
.xa1_c00016{left:309.506667pt;}
.x34_c00016{left:312.573333pt;}
.x8c_c00016{left:314.880000pt;}
.x2a_c00016{left:317.946667pt;}
.x35_c00016{left:320.253333pt;}
.x83_c00016{left:323.333333pt;}
.x47_c00016{left:328.706667pt;}
.x97_c00016{left:332.546667pt;}
.x36_c00016{left:334.853333pt;}
.xb0_c00016{left:339.453333pt;}
.x7a_c00016{left:340.986667pt;}
.x64_c00016{left:343.293333pt;}
.x12_c00016{left:344.826667pt;}
.x8_c00016{left:348.666667pt;}
.x92_c00016{left:350.213333pt;}
.x53_c00016{left:353.280000pt;}
.x2_c00016{left:357.120000pt;}
.x13_c00016{left:362.493333pt;}
.x5a_c00016{left:365.573333pt;}
.xcf_c00016{left:368.640000pt;}
.x3_c00016{left:370.173333pt;}
.x84_c00016{left:374.013333pt;}
.x41_c00016{left:377.093333pt;}
.x65_c00016{left:380.160000pt;}
.x4_c00016{left:383.226667pt;}
.x5b_c00016{left:387.066667pt;}
.xa2_c00016{left:391.680000pt;}
.x54_c00016{left:393.213333pt;}
.x14_c00016{left:395.520000pt;}
.xc5_c00016{left:397.053333pt;}
.xa3_c00016{left:399.360000pt;}
.x5_c00016{left:401.666667pt;}
.x48_c00016{left:407.040000pt;}
.x22_c00016{left:408.573333pt;}
.x55_c00016{left:410.880000pt;}
.x37_c00016{left:413.946667pt;}
.x98_c00016{left:417.786667pt;}
.xb1_c00016{left:420.093333pt;}
.x6_c00016{left:423.173333pt;}
.xa4_c00016{left:426.240000pt;}
.x7b_c00016{left:427.773333pt;}
.x66_c00016{left:433.920000pt;}
.x2b_c00016{left:436.226667pt;}
.x99_c00016{left:437.760000pt;}
.xa5_c00016{left:441.600000pt;}
.x38_c00016{left:444.666667pt;}
.x72_c00016{left:446.213333pt;}
.xbd_c00016{left:450.053333pt;}
.x9_c00016{left:453.120000pt;}
.xb2_c00016{left:458.493333pt;}
.x39_c00016{left:460.800000pt;}
.x15_c00016{left:463.106667pt;}
.x93_c00016{left:469.253333pt;}
.xb6_c00016{left:471.546667pt;}
.xa_c00016{left:473.853333pt;}
.x7c_c00016{left:476.160000pt;}
.xbe_c00016{left:479.226667pt;}
.x67_c00016{left:482.306667pt;}
.x6c_c00016{left:487.680000pt;}
.xa6_c00016{left:489.213333pt;}
.xb_c00016{left:492.293333pt;}
.xa7_c00016{left:495.360000pt;}
.x3a_c00016{left:505.346667pt;}
.xb3_c00016{left:513.026667pt;}
.xc_c00016{left:514.560000pt;}
.x7_c00016{left:516.866667pt;}
.x5c_c00016{left:519.173333pt;}
.x9a_c00016{left:520.706667pt;}
.x23_c00016{left:522.240000pt;}
.xbf_c00016{left:523.773333pt;}
.x6d_c00016{left:526.853333pt;}
.x7d_c00016{left:529.146667pt;}
.x3b_c00016{left:532.986667pt;}
.xd_c00016{left:536.066667pt;}
.x16_c00016{left:539.906667pt;}
.xa8_c00016{left:542.973333pt;}
.x49_c00016{left:544.506667pt;}
.x56_c00016{left:546.813333pt;}
.xc6_c00016{left:549.893333pt;}
.x2c_c00016{left:552.186667pt;}
.xe_c00016{left:554.493333pt;}
.x24_c00016{left:558.334667pt;}
.x68_c00016{left:559.866667pt;}
.x9b_c00016{left:562.173333pt;}
.xa9_c00016{left:565.253333pt;}
.x57_c00016{left:569.853333pt;}
.x42_c00016{left:571.386667pt;}
.xf_c00016{left:572.933333pt;}
.x5d_c00016{left:576.000000pt;}
.x69_c00016{left:580.613333pt;}
.x4e_c00016{left:583.680000pt;}
.x10_c00016{left:585.213333pt;}
.x11_c00016{left:589.053333pt;}
.x6e_c00016{left:591.360000pt;}
.x9c_c00016{left:592.893333pt;}
.xaa_c00016{left:595.200000pt;}
.x4f_c00016{left:602.880000pt;}
.x3c_c00016{left:605.946667pt;}
.x7e_c00016{left:612.866667pt;}
.x6f_c00016{left:615.173333pt;}
.x4a_c00016{left:616.706667pt;}
.x94_c00016{left:620.546667pt;}
.x9d_c00016{left:622.080000pt;}
.x58_c00016{left:623.613333pt;}
.x73_c00016{left:625.920000pt;}
.x5e_c00016{left:628.226667pt;}
.x8d_c00016{left:629.760000pt;}
.x2d_c00016{left:631.293333pt;}
.xcb_c00016{left:632.826667pt;}
.xb8_c00016{left:639.746667pt;}
.x85_c00016{left:645.120000pt;}
.xcc_c00016{left:648.186667pt;}
.x9e_c00016{left:652.026667pt;}
.xab_c00016{left:655.106667pt;}
.x43_c00016{left:658.173333pt;}
.x2e_c00016{left:659.706667pt;}
.xc7_c00016{left:661.253333pt;}
.x25_c00016{left:664.320000pt;}
.x7f_c00016{left:669.693333pt;}
.x50_c00016{left:672.000000pt;}
.x3d_c00016{left:676.613333pt;}
.x86_c00016{left:678.906667pt;}
.x8e_c00016{left:682.746667pt;}
.xac_c00016{left:685.053333pt;}
.x2f_c00016{left:686.586667pt;}
.x9f_c00016{left:688.133333pt;}
.x87_c00016{left:693.506667pt;}
.xcd_c00016{left:695.040000pt;}
.xb9_c00016{left:699.653333pt;}
.x5f_c00016{left:701.186667pt;}
.x6a_c00016{left:702.720000pt;}
.x17_c00016{left:709.626667pt;}
.xad_c00016{left:712.706667pt;}
.x80_c00016{left:714.240000pt;}
.x18_c00016{left:718.853333pt;}
.x44_c00016{left:721.920000pt;}
.xc0_c00016{left:723.453333pt;}
.x60_c00016{left:724.986667pt;}
.x30_c00016{left:729.600000pt;}
.x74_c00016{left:738.053333pt;}
.xc9_c00016{left:739.586667pt;}
.x8f_c00016{left:746.493333pt;}
.xba_c00016{left:756.480000pt;}
.x90_c00016{left:759.546667pt;}
.xc2_c00016{left:804.866667pt;}
.x1c_c00016{left:901.626667pt;}
.x19_c00016{left:908.546667pt;}
.x1d_c00016{left:913.146667pt;}
.xc1_c00016{left:915.453333pt;}
.x1a_c00016{left:918.533333pt;}
.xc3_c00016{left:921.600000pt;}
.x1b_c00016{left:940.027349pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3606bb02fa002757973aa96d.woff2')format("woff");}.ff1_c00017{font-family:ff1_c00017;line-height:1.109863;font-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_c00017{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c00017{transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);}
.m55_c00017{transform:matrix(0.046300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046300,0.000000,0.000000,0.250000,0,0);}
.mfd_c00017{transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);}
.ma1_c00017{transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);}
.m113_c00017{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m117_c00017{transform:matrix(0.097575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097575,0.000000,0.000000,0.250000,0,0);}
.m63_c00017{transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);}
.m13c_c00017{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m123_c00017{transform:matrix(0.126075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126075,0.000000,0.000000,0.250000,0,0);}
.m12c_c00017{transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);}
.m6e_c00017{transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);}
.m23_c00017{transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);}
.ma5_c00017{transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);}
.m129_c00017{transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);}
.ma2_c00017{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.m13e_c00017{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m8_c00017{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00017{transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);}
.ma4_c00017{transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);}
.m104_c00017{transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);}
.m87_c00017{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);}
.m1f_c00017{transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);}
.m3_c00017{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.mee_c00017{transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);}
.m11f_c00017{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.me7_c00017{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.m80_c00017{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m96_c00017{transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);}
.m89_c00017{transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);}
.mf1_c00017{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);}
.mef_c00017{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.m131_c00017{transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);}
.m2e_c00017{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.md9_c00017{transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);}
.m12e_c00017{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.ma_c00017{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m8a_c00017{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.m12b_c00017{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);}
.m14_c00017{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);}
.mfa_c00017{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.m138_c00017{transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);}
.mfb_c00017{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m21_c00017{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.m88_c00017{transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);}
.m2c_c00017{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);}
.mb3_c00017{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m139_c00017{transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);}
.m2a_c00017{transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);}
.m85_c00017{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.m122_c00017{transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);}
.m83_c00017{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);}
.m1b_c00017{transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);}
.meb_c00017{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m99_c00017{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.md4_c00017{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m8f_c00017{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);}
.m8c_c00017{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m12d_c00017{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);}
.mf5_c00017{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.mb8_c00017{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m125_c00017{transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);}
.mc8_c00017{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);}
.ma9_c00017{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m121_c00017{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);}
.m95_c00017{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m18_c00017{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);}
.m103_c00017{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m26_c00017{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);}
.m126_c00017{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m10a_c00017{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.mff_c00017{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.mac_c00017{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);}
.m136_c00017{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);}
.mf4_c00017{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.m2_c00017{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);}
.mf_c00017{transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);}
.m32_c00017{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.me1_c00017{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);}
.m9a_c00017{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.me2_c00017{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);}
.mc1_c00017{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);}
.md_c00017{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);}
.md5_c00017{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.med_c00017{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.md8_c00017{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.m73_c00017{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);}
.m137_c00017{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.me6_c00017{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);}
.m10d_c00017{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m127_c00017{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m102_c00017{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);}
.m70_c00017{transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);}
.m9b_c00017{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m120_c00017{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);}
.m112_c00017{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m42_c00017{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);}
.m12a_c00017{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);}
.m118_c00017{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00017{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m11a_c00017{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m128_c00017{transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);}
.m30_c00017{transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);}
.m22_c00017{transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);}
.m10e_c00017{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);}
.md6_c00017{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);}
.m8b_c00017{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);}
.m11e_c00017{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);}
.m86_c00017{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);}
.md3_c00017{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);}
.m101_c00017{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);}
.me5_c00017{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);}
.m107_c00017{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.md7_c00017{transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);}
.m11b_c00017{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m13_c00017{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);}
.m100_c00017{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);}
.m64_c00017{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);}
.m132_c00017{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.mf8_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);}
.me0_c00017{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m10b_c00017{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);}
.m5b_c00017{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);}
.mf0_c00017{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);}
.m6d_c00017{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);}
.m92_c00017{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);}
.m65_c00017{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m60_c00017{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00017{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);}
.m111_c00017{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.m40_c00017{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);}
.mc5_c00017{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m35_c00017{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.mbb_c00017{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.m8e_c00017{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);}
.m75_c00017{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);}
.mcc_c00017{transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);}
.m13a_c00017{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m91_c00017{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_c00017{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m10_c00017{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.m110_c00017{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.me3_c00017{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.m62_c00017{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);}
.m39_c00017{transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);}
.m3b_c00017{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.mf9_c00017{transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);}
.m133_c00017{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.m46_c00017{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m108_c00017{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.me4_c00017{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);}
.m61_c00017{transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);}
.m74_c00017{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.md2_c00017{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.m10f_c00017{transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);}
.m76_c00017{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);}
.mb0_c00017{transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);}
.maf_c00017{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);}
.m77_c00017{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.m6a_c00017{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);}
.m27_c00017{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);}
.mbe_c00017{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);}
.m81_c00017{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);}
.m82_c00017{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);}
.m15_c00017{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);}
.m47_c00017{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m48_c00017{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m130_c00017{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);}
.mc7_c00017{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);}
.m0_c00017{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m3a_c00017{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m54_c00017{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.mf3_c00017{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.maa_c00017{transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);}
.m109_c00017{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);}
.mde_c00017{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);}
.m9c_c00017{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);}
.m50_c00017{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);}
.mf7_c00017{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);}
.m20_c00017{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m93_c00017{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);}
.m11c_c00017{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);}
.m9d_c00017{transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);}
.mdd_c00017{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);}
.m3e_c00017{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.mc2_c00017{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);}
.ma6_c00017{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);}
.m7a_c00017{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.mf6_c00017{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.m106_c00017{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);}
.m105_c00017{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);}
.m10c_c00017{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);}
.m98_c00017{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m49_c00017{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.ma7_c00017{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m12f_c00017{transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);}
.mc3_c00017{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);}
.m94_c00017{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);}
.mc6_c00017{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);}
.m11d_c00017{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);}
.mc9_c00017{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);}
.m134_c00017{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m9_c00017{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m135_c00017{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.mbf_c00017{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);}
.m45_c00017{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.mea_c00017{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);}
.m69_c00017{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.mdc_c00017{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m8d_c00017{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.mdb_c00017{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m68_c00017{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);}
.me8_c00017{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);}
.m3c_c00017{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mad_c00017{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);}
.m1a_c00017{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);}
.m4e_c00017{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);}
.m71_c00017{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);}
.mb_c00017{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m56_c00017{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m38_c00017{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00017{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);}
.m5c_c00017{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m58_c00017{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);}
.m25_c00017{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);}
.m7_c00017{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md1_c00017{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);}
.m4_c00017{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m44_c00017{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c00017{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);}
.mcd_c00017{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00017{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);}
.m2d_c00017{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);}
.m1e_c00017{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m43_c00017{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m33_c00017{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);}
.m2b_c00017{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m31_c00017{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m59_c00017{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);}
.mc_c00017{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00017{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00017{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00017{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00017{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m28_c00017{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m41_c00017{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m67_c00017{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00017{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);}
.m6f_c00017{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m19_c00017{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00017{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00017{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m36_c00017{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);}
.m7e_c00017{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);}
.mb5_c00017{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00017{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mda_c00017{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);}
.mae_c00017{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00017{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00017{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00017{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.me_c00017{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);}
.mb1_c00017{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c00017{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00017{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);}
.m13d_c00017{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m57_c00017{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);}
.m66_c00017{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m13b_c00017{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);}
.m34_c00017{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00017{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m119_c00017{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m37_c00017{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00017{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m51_c00017{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);}
.m12_c00017{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00017{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mab_c00017{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m52_c00017{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m72_c00017{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m53_c00017{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00017{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);}
.m9f_c00017{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);}
.mbc_c00017{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m79_c00017{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);}
.m90_c00017{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m97_c00017{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00017{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00017{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00017{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m11_c00017{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00017{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00017{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00017{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m78_c00017{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m13f_c00017{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m124_c00017{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.me9_c00017{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.mba_c00017{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m17_c00017{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00017{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m114_c00017{transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);}
.md0_c00017{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m116_c00017{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00017{transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00017{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m1_c00017{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00017{transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00017{transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00017{transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);}
.m84_c00017{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m115_c00017{transform:matrix(1.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.827500,0.000000,0.000000,0.250000,0,0);}
.mca_c00017{transform:matrix(1.870000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.870000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.870000,0.000000,0.000000,0.250000,0,0);}
.m16_c00017{transform:matrix(1.930000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.930000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.930000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00017{transform:matrix(2.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.255000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00017{transform:matrix(2.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.257500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00017{transform:matrix(2.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.285000,0.000000,0.000000,0.250000,0,0);}
.mce_c00017{transform:matrix(3.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.045000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00017{transform:matrix(3.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.967500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00017{transform:matrix(4.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.037500,0.000000,0.000000,0.250000,0,0);}
.v2_c00017{vertical-align:-6.900000px;}
.v1_c00017{vertical-align:-3.420000px;}
.v0_c00017{vertical-align:0.000000px;}
.v3_c00017{vertical-align:3.480000px;}
.v4_c00017{vertical-align:10.380000px;}
.ls3_c00017{letter-spacing:0.000000px;}
.ls0_c00017{letter-spacing:47.255400px;}
.ls2_c00017{letter-spacing:67.297440px;}
.ls1_c00017{letter-spacing:587.343360px;}
.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;}
}
.ws1_c00017{word-spacing:-40.296960px;}
.ws2_c00017{word-spacing:-18.515760px;}
.ws0_c00017{word-spacing:-17.722080px;}
.ws4_c00017{word-spacing:-17.692800px;}
.ws3_c00017{word-spacing:-10.745760px;}
.ws5_c00017{word-spacing:0.000000px;}
._0_c00017{width:10.488000px;}
.fc0_c00017{color:transparent;}
.fs5_c00017{font-size:3.456000px;}
.fs14_c00017{font-size:6.000000px;}
.fs1_c00017{font-size:6.900000px;}
.fs11_c00017{font-size:10.380000px;}
.fs3_c00017{font-size:13.800000px;}
.fs0_c00017{font-size:17.280000px;}
.fs13_c00017{font-size:20.760000px;}
.fs15_c00017{font-size:24.180000px;}
.fs6_c00017{font-size:27.660000px;}
.fs2_c00017{font-size:31.080000px;}
.fs1d_c00017{font-size:34.560000px;}
.fs4_c00017{font-size:38.040000px;}
.fs10_c00017{font-size:41.460000px;}
.fs21_c00017{font-size:44.940000px;}
.fs1f_c00017{font-size:48.360000px;}
.fs1c_c00017{font-size:51.840000px;}
.fs17_c00017{font-size:55.320000px;}
.fs12_c00017{font-size:58.740000px;}
.fsa_c00017{font-size:62.220000px;}
.fs19_c00017{font-size:65.640000px;}
.fsd_c00017{font-size:69.120000px;}
.fs1e_c00017{font-size:72.600000px;}
.fs9_c00017{font-size:76.020000px;}
.fs1b_c00017{font-size:79.500000px;}
.fs1a_c00017{font-size:82.920000px;}
.fs7_c00017{font-size:86.400000px;}
.fsc_c00017{font-size:89.880000px;}
.fs20_c00017{font-size:93.300000px;}
.fs16_c00017{font-size:96.780000px;}
.fsf_c00017{font-size:100.200000px;}
.fs23_c00017{font-size:103.680000px;}
.fs24_c00017{font-size:110.580000px;}
.fsb_c00017{font-size:114.060000px;}
.fs18_c00017{font-size:117.480000px;}
.fs8_c00017{font-size:120.960000px;}
.fse_c00017{font-size:124.440000px;}
.fs22_c00017{font-size:152.040000px;}
.y0_c00017{bottom:0.000000px;}
.y1a5_c00017{bottom:221.190000px;}
.y1a7_c00017{bottom:222.045000px;}
.y1aa_c00017{bottom:223.770000px;}
.y1ab_c00017{bottom:224.640000px;}
.y1a8_c00017{bottom:225.510000px;}
.y1a9_c00017{bottom:233.280000px;}
.y1a6_c00017{bottom:234.150000px;}
.y19e_c00017{bottom:237.600000px;}
.y1a0_c00017{bottom:239.325000px;}
.y1a2_c00017{bottom:240.195000px;}
.y1a3_c00017{bottom:241.920000px;}
.y19f_c00017{bottom:242.790000px;}
.y1a1_c00017{bottom:244.515000px;}
.y1a4_c00017{bottom:247.965000px;}
.y197_c00017{bottom:258.330000px;}
.y198_c00017{bottom:260.070000px;}
.y199_c00017{bottom:260.925000px;}
.y19c_c00017{bottom:261.795000px;}
.y19a_c00017{bottom:263.520000px;}
.y19b_c00017{bottom:265.245000px;}
.y196_c00017{bottom:266.970000px;}
.y19d_c00017{bottom:271.290000px;}
.y18e_c00017{bottom:277.350000px;}
.y18f_c00017{bottom:278.205000px;}
.y191_c00017{bottom:279.075000px;}
.y192_c00017{bottom:279.930000px;}
.y193_c00017{bottom:280.800000px;}
.y194_c00017{bottom:281.670000px;}
.y195_c00017{bottom:283.395000px;}
.y190_c00017{bottom:284.250000px;}
.y18d_c00017{bottom:295.485000px;}
.y184_c00017{bottom:297.210000px;}
.y183_c00017{bottom:298.080000px;}
.y187_c00017{bottom:298.950000px;}
.y186_c00017{bottom:299.805000px;}
.y188_c00017{bottom:300.675000px;}
.y189_c00017{bottom:301.530000px;}
.y185_c00017{bottom:304.125000px;}
.y18b_c00017{bottom:308.445000px;}
.y18a_c00017{bottom:311.040000px;}
.y18c_c00017{bottom:312.765000px;}
.y17b_c00017{bottom:320.550000px;}
.y17e_c00017{bottom:321.405000px;}
.y17d_c00017{bottom:323.130000px;}
.y17c_c00017{bottom:324.000000px;}
.y17a_c00017{bottom:324.870000px;}
.y17f_c00017{bottom:325.725000px;}
.y180_c00017{bottom:326.595000px;}
.y181_c00017{bottom:330.045000px;}
.y182_c00017{bottom:330.915000px;}
.y174_c00017{bottom:339.555000px;}
.y175_c00017{bottom:342.150000px;}
.y173_c00017{bottom:343.005000px;}
.y177_c00017{bottom:344.730000px;}
.y176_c00017{bottom:345.600000px;}
.y179_c00017{bottom:348.195000px;}
.y178_c00017{bottom:351.645000px;}
.y172_c00017{bottom:356.835000px;}
.y16a_c00017{bottom:358.560000px;}
.y16d_c00017{bottom:360.285000px;}
.y16c_c00017{bottom:361.155000px;}
.y170_c00017{bottom:362.010000px;}
.y16e_c00017{bottom:362.880000px;}
.y16b_c00017{bottom:363.750000px;}
.y171_c00017{bottom:364.605000px;}
.y16f_c00017{bottom:367.200000px;}
.y164_c00017{bottom:380.160000px;}
.y161_c00017{bottom:381.030000px;}
.y166_c00017{bottom:381.885000px;}
.y165_c00017{bottom:384.480000px;}
.y162_c00017{bottom:385.350000px;}
.y163_c00017{bottom:386.205000px;}
.y167_c00017{bottom:387.930000px;}
.y168_c00017{bottom:390.525000px;}
.y169_c00017{bottom:392.250000px;}
.y160_c00017{bottom:395.715000px;}
.y159_c00017{bottom:400.035000px;}
.y15b_c00017{bottom:400.890000px;}
.y15a_c00017{bottom:402.630000px;}
.y158_c00017{bottom:406.080000px;}
.y15c_c00017{bottom:406.950000px;}
.y15d_c00017{bottom:407.805000px;}
.y15e_c00017{bottom:411.270000px;}
.y157_c00017{bottom:412.995000px;}
.y15f_c00017{bottom:413.850000px;}
.y14f_c00017{bottom:419.910000px;}
.y150_c00017{bottom:423.360000px;}
.y151_c00017{bottom:425.955000px;}
.y152_c00017{bottom:430.275000px;}
.y153_c00017{bottom:432.000000px;}
.y154_c00017{bottom:432.870000px;}
.y155_c00017{bottom:433.725000px;}
.y14e_c00017{bottom:435.450000px;}
.y156_c00017{bottom:436.320000px;}
.y148_c00017{bottom:441.510000px;}
.y149_c00017{bottom:443.235000px;}
.y14b_c00017{bottom:444.090000px;}
.y145_c00017{bottom:444.960000px;}
.y146_c00017{bottom:445.830000px;}
.y147_c00017{bottom:446.685000px;}
.y14a_c00017{bottom:447.555000px;}
.y14c_c00017{bottom:448.410000px;}
.y14d_c00017{bottom:449.280000px;}
.y13e_c00017{bottom:461.370000px;}
.y141_c00017{bottom:462.240000px;}
.y144_c00017{bottom:463.110000px;}
.y13f_c00017{bottom:465.690000px;}
.y140_c00017{bottom:466.560000px;}
.y142_c00017{bottom:468.285000px;}
.y143_c00017{bottom:469.155000px;}
.y137_c00017{bottom:482.115000px;}
.y13c_c00017{bottom:484.710000px;}
.y138_c00017{bottom:486.435000px;}
.y139_c00017{bottom:487.290000px;}
.y13a_c00017{bottom:488.160000px;}
.y13b_c00017{bottom:489.030000px;}
.y13d_c00017{bottom:489.885000px;}
.y1_c00017{bottom:495.930000px;}
.y134_c00017{bottom:506.310000px;}
.y133_c00017{bottom:507.165000px;}
.y135_c00017{bottom:508.890000px;}
.y136_c00017{bottom:510.630000px;}
.y12b_c00017{bottom:522.720000px;}
.y12d_c00017{bottom:523.590000px;}
.y131_c00017{bottom:524.445000px;}
.y12f_c00017{bottom:525.315000px;}
.y132_c00017{bottom:526.170000px;}
.y12a_c00017{bottom:527.040000px;}
.y12c_c00017{bottom:527.910000px;}
.y12e_c00017{bottom:528.765000px;}
.y130_c00017{bottom:529.635000px;}
.y125_c00017{bottom:544.320000px;}
.y127_c00017{bottom:546.045000px;}
.y122_c00017{bottom:546.915000px;}
.y123_c00017{bottom:547.770000px;}
.y124_c00017{bottom:548.640000px;}
.y126_c00017{bottom:550.365000px;}
.y128_c00017{bottom:551.235000px;}
.y121_c00017{bottom:556.410000px;}
.y129_c00017{bottom:558.150000px;}
.y115_c00017{bottom:562.470000px;}
.y117_c00017{bottom:563.325000px;}
.y119_c00017{bottom:564.195000px;}
.y11d_c00017{bottom:565.050000px;}
.y11c_c00017{bottom:566.790000px;}
.y116_c00017{bottom:567.645000px;}
.y118_c00017{bottom:568.515000px;}
.y11b_c00017{bottom:569.370000px;}
.y11a_c00017{bottom:570.240000px;}
.y11e_c00017{bottom:571.110000px;}
.y120_c00017{bottom:574.560000px;}
.y11f_c00017{bottom:580.605000px;}
.y110_c00017{bottom:583.200000px;}
.y114_c00017{bottom:586.650000px;}
.y10f_c00017{bottom:588.390000px;}
.y111_c00017{bottom:589.245000px;}
.y112_c00017{bottom:590.115000px;}
.y113_c00017{bottom:591.840000px;}
.y10a_c00017{bottom:604.800000px;}
.y108_c00017{bottom:608.250000px;}
.y109_c00017{bottom:609.990000px;}
.y10e_c00017{bottom:611.715000px;}
.y10c_c00017{bottom:614.310000px;}
.y10b_c00017{bottom:618.630000px;}
.y107_c00017{bottom:619.485000px;}
.y1ad_c00017{bottom:620.355000px;}
.y10d_c00017{bottom:621.210000px;}
.y100_c00017{bottom:624.675000px;}
.y1ac_c00017{bottom:625.530000px;}
.y102_c00017{bottom:626.400000px;}
.y103_c00017{bottom:628.125000px;}
.y104_c00017{bottom:629.850000px;}
.y101_c00017{bottom:630.720000px;}
.y106_c00017{bottom:633.315000px;}
.yff_c00017{bottom:642.810000px;}
.y105_c00017{bottom:646.275000px;}
.yfb_c00017{bottom:647.130000px;}
.yfa_c00017{bottom:648.000000px;}
.yfe_c00017{bottom:648.870000px;}
.yf9_c00017{bottom:650.595000px;}
.yf8_c00017{bottom:651.450000px;}
.yfc_c00017{bottom:652.320000px;}
.yfd_c00017{bottom:653.190000px;}
.yf3_c00017{bottom:665.280000px;}
.yf5_c00017{bottom:666.150000px;}
.yf4_c00017{bottom:667.005000px;}
.yf6_c00017{bottom:671.325000px;}
.yf7_c00017{bottom:682.560000px;}
.yee_c00017{bottom:685.155000px;}
.yef_c00017{bottom:686.880000px;}
.yf2_c00017{bottom:690.330000px;}
.yf0_c00017{bottom:692.070000px;}
.yf1_c00017{bottom:692.925000px;}
.yed_c00017{bottom:699.840000px;}
.yec_c00017{bottom:701.565000px;}
.ye5_c00017{bottom:705.885000px;}
.ye6_c00017{bottom:709.350000px;}
.ye7_c00017{bottom:710.205000px;}
.ye3_c00017{bottom:711.075000px;}
.ye4_c00017{bottom:711.930000px;}
.yea_c00017{bottom:714.525000px;}
.ye9_c00017{bottom:716.250000px;}
.yeb_c00017{bottom:717.990000px;}
.ye8_c00017{bottom:722.310000px;}
.ydb_c00017{bottom:723.165000px;}
.ydf_c00017{bottom:726.630000px;}
.yde_c00017{bottom:727.485000px;}
.ye2_c00017{bottom:729.210000px;}
.ydd_c00017{bottom:730.080000px;}
.ydc_c00017{bottom:730.950000px;}
.ye1_c00017{bottom:731.805000px;}
.ye0_c00017{bottom:734.400000px;}
.yd3_c00017{bottom:744.765000px;}
.yd4_c00017{bottom:749.955000px;}
.yd5_c00017{bottom:750.810000px;}
.yd6_c00017{bottom:751.680000px;}
.yd7_c00017{bottom:752.550000px;}
.yd8_c00017{bottom:753.405000px;}
.yd9_c00017{bottom:754.275000px;}
.yda_c00017{bottom:758.595000px;}
.ycd_c00017{bottom:765.510000px;}
.ycf_c00017{bottom:767.235000px;}
.yce_c00017{bottom:769.830000px;}
.yd0_c00017{bottom:772.410000px;}
.yd1_c00017{bottom:773.280000px;}
.yd2_c00017{bottom:775.005000px;}
.yc7_c00017{bottom:783.645000px;}
.yc8_c00017{bottom:785.370000px;}
.yca_c00017{bottom:786.240000px;}
.yc6_c00017{bottom:788.835000px;}
.yc9_c00017{bottom:789.690000px;}
.ycb_c00017{bottom:790.560000px;}
.ycc_c00017{bottom:791.430000px;}
.yc2_c00017{bottom:808.710000px;}
.yc5_c00017{bottom:811.290000px;}
.yc3_c00017{bottom:812.160000px;}
.yc4_c00017{bottom:813.030000px;}
.ybc_c00017{bottom:818.205000px;}
.ybe_c00017{bottom:819.930000px;}
.yc1_c00017{bottom:820.800000px;}
.yc0_c00017{bottom:821.670000px;}
.ybd_c00017{bottom:829.440000px;}
.ybf_c00017{bottom:830.310000px;}
.ybb_c00017{bottom:846.720000px;}
.yb8_c00017{bottom:867.450000px;}
.yb6_c00017{bottom:875.235000px;}
.yb7_c00017{bottom:876.090000px;}
.yaf_c00017{bottom:878.685000px;}
.yad_c00017{bottom:879.555000px;}
.yb2_c00017{bottom:881.280000px;}
.yb3_c00017{bottom:882.150000px;}
.yb1_c00017{bottom:883.875000px;}
.yae_c00017{bottom:885.600000px;}
.yb0_c00017{bottom:886.470000px;}
.yb4_c00017{bottom:888.195000px;}
.yb5_c00017{bottom:889.050000px;}
.ya6_c00017{bottom:900.285000px;}
.ya8_c00017{bottom:901.155000px;}
.ya9_c00017{bottom:902.010000px;}
.ya7_c00017{bottom:902.880000px;}
.yab_c00017{bottom:904.605000px;}
.yac_c00017{bottom:905.475000px;}
.yaa_c00017{bottom:906.330000px;}
.y1b3_c00017{bottom:916.710000px;}
.ya0_c00017{bottom:921.030000px;}
.ya1_c00017{bottom:921.885000px;}
.y9e_c00017{bottom:922.755000px;}
.y9f_c00017{bottom:923.610000px;}
.ya3_c00017{bottom:924.480000px;}
.ya4_c00017{bottom:925.350000px;}
.y9c_c00017{bottom:926.205000px;}
.y9d_c00017{bottom:927.075000px;}
.ya2_c00017{bottom:927.930000px;}
.ya5_c00017{bottom:930.525000px;}
.y9b_c00017{bottom:934.845000px;}
.y98_c00017{bottom:949.530000px;}
.y97_c00017{bottom:950.400000px;}
.y99_c00017{bottom:952.995000px;}
.y9a_c00017{bottom:954.720000px;}
.y92_c00017{bottom:955.590000px;}
.y90_c00017{bottom:958.170000px;}
.y96_c00017{bottom:959.910000px;}
.y95_c00017{bottom:962.490000px;}
.y91_c00017{bottom:963.360000px;}
.y93_c00017{bottom:965.955000px;}
.y94_c00017{bottom:966.810000px;}
.y8f_c00017{bottom:978.045000px;}
.y8c_c00017{bottom:988.410000px;}
.y8b_c00017{bottom:989.280000px;}
.y8e_c00017{bottom:991.005000px;}
.y8d_c00017{bottom:991.875000px;}
.y88_c00017{bottom:997.920000px;}
.y86_c00017{bottom:998.790000px;}
.y87_c00017{bottom:999.645000px;}
.y8a_c00017{bottom:1002.240000px;}
.y85_c00017{bottom:1003.965000px;}
.y89_c00017{bottom:1004.835000px;}
.y7e_c00017{bottom:1009.155000px;}
.y80_c00017{bottom:1010.010000px;}
.y82_c00017{bottom:1010.880000px;}
.y7f_c00017{bottom:1013.475000px;}
.y81_c00017{bottom:1014.330000px;}
.y83_c00017{bottom:1015.200000px;}
.y84_c00017{bottom:1016.070000px;}
.y1b2_c00017{bottom:1021.245000px;}
.y76_c00017{bottom:1028.160000px;}
.y75_c00017{bottom:1029.030000px;}
.y1b1_c00017{bottom:1029.885000px;}
.y77_c00017{bottom:1030.755000px;}
.y7a_c00017{bottom:1031.610000px;}
.y79_c00017{bottom:1032.480000px;}
.y74_c00017{bottom:1034.205000px;}
.y78_c00017{bottom:1035.930000px;}
.y7c_c00017{bottom:1036.800000px;}
.y7b_c00017{bottom:1037.670000px;}
.y7d_c00017{bottom:1038.525000px;}
.y6e_c00017{bottom:1049.760000px;}
.y6f_c00017{bottom:1051.485000px;}
.y73_c00017{bottom:1053.210000px;}
.y6d_c00017{bottom:1054.080000px;}
.y6c_c00017{bottom:1054.950000px;}
.y71_c00017{bottom:1055.805000px;}
.y70_c00017{bottom:1056.675000px;}
.y72_c00017{bottom:1059.270000px;}
.y65_c00017{bottom:1069.635000px;}
.y67_c00017{bottom:1070.490000px;}
.y6a_c00017{bottom:1073.085000px;}
.y68_c00017{bottom:1073.955000px;}
.y66_c00017{bottom:1074.810000px;}
.y64_c00017{bottom:1075.680000px;}
.y69_c00017{bottom:1077.405000px;}
.y6b_c00017{bottom:1079.130000px;}
.yb9_c00017{bottom:1087.770000px;}
.yba_c00017{bottom:1088.640000px;}
.y5f_c00017{bottom:1091.235000px;}
.y5e_c00017{bottom:1092.090000px;}
.y62_c00017{bottom:1094.685000px;}
.y60_c00017{bottom:1096.410000px;}
.y61_c00017{bottom:1097.280000px;}
.y63_c00017{bottom:1099.875000px;}
.y58_c00017{bottom:1111.110000px;}
.y5a_c00017{bottom:1111.965000px;}
.y56_c00017{bottom:1112.835000px;}
.y5c_c00017{bottom:1113.690000px;}
.y59_c00017{bottom:1115.430000px;}
.y57_c00017{bottom:1116.285000px;}
.y5b_c00017{bottom:1118.010000px;}
.y5d_c00017{bottom:1119.750000px;}
.y52_c00017{bottom:1130.970000px;}
.y4f_c00017{bottom:1132.710000px;}
.y51_c00017{bottom:1134.435000px;}
.y50_c00017{bottom:1136.160000px;}
.y53_c00017{bottom:1137.030000px;}
.y54_c00017{bottom:1137.885000px;}
.y55_c00017{bottom:1138.755000px;}
.y49_c00017{bottom:1151.715000px;}
.y4b_c00017{bottom:1153.440000px;}
.y4a_c00017{bottom:1154.310000px;}
.y47_c00017{bottom:1156.035000px;}
.y48_c00017{bottom:1156.890000px;}
.y4c_c00017{bottom:1159.485000px;}
.y4d_c00017{bottom:1160.355000px;}
.y4e_c00017{bottom:1162.080000px;}
.y1af_c00017{bottom:1165.530000px;}
.y1b0_c00017{bottom:1170.720000px;}
.y41_c00017{bottom:1173.315000px;}
.y45_c00017{bottom:1174.170000px;}
.y44_c00017{bottom:1175.040000px;}
.y40_c00017{bottom:1175.910000px;}
.y42_c00017{bottom:1176.765000px;}
.y43_c00017{bottom:1177.635000px;}
.y46_c00017{bottom:1179.360000px;}
.y1ae_c00017{bottom:1183.680000px;}
.y1c_c00017{bottom:1190.595000px;}
.y3b_c00017{bottom:1192.320000px;}
.y3e_c00017{bottom:1193.190000px;}
.y3c_c00017{bottom:1196.640000px;}
.y1d_c00017{bottom:1197.510000px;}
.y3d_c00017{bottom:1198.365000px;}
.y3f_c00017{bottom:1200.090000px;}
.y33_c00017{bottom:1211.325000px;}
.y37_c00017{bottom:1213.050000px;}
.y39_c00017{bottom:1214.790000px;}
.y34_c00017{bottom:1215.645000px;}
.y35_c00017{bottom:1216.515000px;}
.y36_c00017{bottom:1217.370000px;}
.y38_c00017{bottom:1218.240000px;}
.y3a_c00017{bottom:1219.965000px;}
.y2b_c00017{bottom:1229.475000px;}
.y30_c00017{bottom:1230.330000px;}
.y2f_c00017{bottom:1232.925000px;}
.y32_c00017{bottom:1233.795000px;}
.y2a_c00017{bottom:1234.650000px;}
.y2c_c00017{bottom:1236.390000px;}
.y2d_c00017{bottom:1237.245000px;}
.y2e_c00017{bottom:1238.115000px;}
.y31_c00017{bottom:1241.565000px;}
.y1e_c00017{bottom:1246.755000px;}
.y1f_c00017{bottom:1249.350000px;}
.y22_c00017{bottom:1250.205000px;}
.y26_c00017{bottom:1253.670000px;}
.y29_c00017{bottom:1254.525000px;}
.y23_c00017{bottom:1256.250000px;}
.y24_c00017{bottom:1257.120000px;}
.y25_c00017{bottom:1257.990000px;}
.y27_c00017{bottom:1259.715000px;}
.y28_c00017{bottom:1260.570000px;}
.y20_c00017{bottom:1264.035000px;}
.y21_c00017{bottom:1269.210000px;}
.y1b_c00017{bottom:1289.955000px;}
.y13_c00017{bottom:1296.870000px;}
.y14_c00017{bottom:1299.450000px;}
.y15_c00017{bottom:1300.320000px;}
.y1a_c00017{bottom:1301.190000px;}
.y16_c00017{bottom:1303.770000px;}
.y19_c00017{bottom:1304.640000px;}
.y17_c00017{bottom:1306.365000px;}
.y18_c00017{bottom:1308.960000px;}
.yd_c00017{bottom:1327.110000px;}
.yc_c00017{bottom:1329.690000px;}
.yb_c00017{bottom:1333.155000px;}
.yf_c00017{bottom:1334.010000px;}
.y10_c00017{bottom:1334.880000px;}
.y12_c00017{bottom:1335.750000px;}
.y11_c00017{bottom:1336.605000px;}
.ye_c00017{bottom:1337.475000px;}
.y9_c00017{bottom:1345.245000px;}
.y8_c00017{bottom:1350.435000px;}
.y6_c00017{bottom:1356.480000px;}
.ya_c00017{bottom:1361.670000px;}
.y7_c00017{bottom:1363.395000px;}
.y5_c00017{bottom:1366.845000px;}
.y4_c00017{bottom:1382.400000px;}
.y3_c00017{bottom:1435.110000px;}
.y2_c00017{bottom:1436.835000px;}
.h7_c00017{height:3.110063px;}
.h16_c00017{height:5.399414px;}
.h3_c00017{height:6.209326px;}
.h13_c00017{height:9.340986px;}
.h5_c00017{height:12.418652px;}
.h2_c00017{height:15.550313px;}
.h15_c00017{height:18.681973px;}
.h17_c00017{height:21.759639px;}
.h8_c00017{height:24.891299px;}
.h4_c00017{height:27.968965px;}
.h1f_c00017{height:31.100625px;}
.h6_c00017{height:34.232285px;}
.h12_c00017{height:37.309951px;}
.h23_c00017{height:40.441611px;}
.h21_c00017{height:43.519277px;}
.h1e_c00017{height:46.650937px;}
.h19_c00017{height:49.782598px;}
.h27_c00017{height:50.130938px;}
.h14_c00017{height:52.860264px;}
.h28_c00017{height:53.262598px;}
.hc_c00017{height:55.991924px;}
.h1b_c00017{height:59.069590px;}
.hf_c00017{height:62.201250px;}
.h20_c00017{height:65.332910px;}
.hb_c00017{height:68.410576px;}
.h29_c00017{height:69.449590px;}
.h1d_c00017{height:71.542236px;}
.h1c_c00017{height:74.619902px;}
.h9_c00017{height:77.751563px;}
.he_c00017{height:80.883223px;}
.h22_c00017{height:83.960889px;}
.h18_c00017{height:87.092549px;}
.h11_c00017{height:90.170215px;}
.h25_c00017{height:93.301875px;}
.h26_c00017{height:99.511201px;}
.hd_c00017{height:102.642861px;}
.h1a_c00017{height:105.720527px;}
.ha_c00017{height:108.852188px;}
.h10_c00017{height:111.983848px;}
.h24_c00017{height:136.821152px;}
.h1_c00017{height:1503.000000px;}
.h0_c00017{height:1503.360000px;}
.w1_c00017{width:1076.250000px;}
.w0_c00017{width:1076.550000px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:30.240000px;}
.x108_c00017{left:57.030000px;}
.x1e_c00017{left:60.480000px;}
.x109_c00017{left:64.800000px;}
.x1f_c00017{left:73.440000px;}
.xb1_c00017{left:144.285000px;}
.xaf_c00017{left:163.290000px;}
.xcf_c00017{left:169.350000px;}
.x20_c00017{left:171.075000px;}
.xb0_c00017{left:178.845000px;}
.x21_c00017{left:182.310000px;}
.xad_c00017{left:185.760000px;}
.xae_c00017{left:193.530000px;}
.x104_c00017{left:203.040000px;}
.xc5_c00017{left:205.635000px;}
.xc6_c00017{left:219.450000px;}
.x48_c00017{left:223.770000px;}
.x4_c00017{left:225.510000px;}
.x22_c00017{left:228.090000px;}
.x8d_c00017{left:230.685000px;}
.xdd_c00017{left:232.410000px;}
.x23_c00017{left:234.150000px;}
.x5_c00017{left:235.875000px;}
.xcc_c00017{left:240.195000px;}
.x6_c00017{left:244.515000px;}
.x9b_c00017{left:246.240000px;}
.x2b_c00017{left:247.965000px;}
.xd0_c00017{left:249.690000px;}
.xc7_c00017{left:251.430000px;}
.xd4_c00017{left:253.155000px;}
.xf4_c00017{left:254.880000px;}
.x106_c00017{left:256.605000px;}
.x24_c00017{left:258.330000px;}
.xd7_c00017{left:260.070000px;}
.x49_c00017{left:263.520000px;}
.x7c_c00017{left:266.115000px;}
.xc2_c00017{left:269.565000px;}
.x4a_c00017{left:272.160000px;}
.xa0_c00017{left:273.885000px;}
.x8e_c00017{left:276.480000px;}
.x9_c00017{left:278.205000px;}
.x97_c00017{left:284.250000px;}
.xa_c00017{left:286.845000px;}
.x37_c00017{left:289.440000px;}
.xde_c00017{left:292.035000px;}
.xe1_c00017{left:294.630000px;}
.x7_c00017{left:297.210000px;}
.x67_c00017{left:300.675000px;}
.x1d_c00017{left:304.995000px;}
.xb4_c00017{left:308.445000px;}
.x4b_c00017{left:310.170000px;}
.xca_c00017{left:312.765000px;}
.x72_c00017{left:314.490000px;}
.xbf_c00017{left:316.230000px;}
.xb_c00017{left:317.955000px;}
.x38_c00017{left:319.680000px;}
.x12_c00017{left:323.130000px;}
.x42_c00017{left:327.450000px;}
.xb9_c00017{left:330.915000px;}
.xa1_c00017{left:335.235000px;}
.xd5_c00017{left:336.960000px;}
.x2_c00017{left:338.685000px;}
.xe6_c00017{left:340.410000px;}
.x9c_c00017{left:343.005000px;}
.xa6_c00017{left:344.730000px;}
.xe7_c00017{left:346.470000px;}
.x2c_c00017{left:349.050000px;}
.xc3_c00017{left:352.515000px;}
.x3_c00017{left:354.240000px;}
.x39_c00017{left:355.965000px;}
.xcd_c00017{left:358.560000px;}
.x43_c00017{left:361.155000px;}
.x5d_c00017{left:362.880000px;}
.x85_c00017{left:364.605000px;}
.x2d_c00017{left:366.330000px;}
.x52_c00017{left:371.520000px;}
.x86_c00017{left:373.245000px;}
.xd8_c00017{left:375.840000px;}
.x68_c00017{left:377.565000px;}
.xce_c00017{left:379.290000px;}
.x5e_c00017{left:381.030000px;}
.x2e_c00017{left:382.755000px;}
.xb5_c00017{left:390.525000px;}
.x53_c00017{left:392.250000px;}
.xaa_c00017{left:394.845000px;}
.x44_c00017{left:396.570000px;}
.xe8_c00017{left:398.310000px;}
.xb6_c00017{left:401.760000px;}
.x13_c00017{left:403.485000px;}
.x87_c00017{left:406.080000px;}
.xc4_c00017{left:410.400000px;}
.xfe_c00017{left:412.995000px;}
.xed_c00017{left:414.720000px;}
.x25_c00017{left:419.910000px;}
.xe9_c00017{left:422.490000px;}
.x4c_c00017{left:426.810000px;}
.x5f_c00017{left:430.275000px;}
.xf9_c00017{left:433.725000px;}
.xba_c00017{left:435.450000px;}
.x54_c00017{left:438.045000px;}
.x60_c00017{left:439.770000px;}
.x2f_c00017{left:441.510000px;}
.x8f_c00017{left:443.235000px;}
.xb7_c00017{left:448.410000px;}
.x6c_c00017{left:450.150000px;}
.x30_c00017{left:451.875000px;}
.x88_c00017{left:453.600000px;}
.x73_c00017{left:457.920000px;}
.xa7_c00017{left:461.370000px;}
.xf5_c00017{left:463.965000px;}
.x26_c00017{left:465.690000px;}
.x14_c00017{left:467.430000px;}
.x55_c00017{left:470.010000px;}
.xc0_c00017{left:472.605000px;}
.xf0_c00017{left:475.200000px;}
.x9d_c00017{left:476.925000px;}
.xe2_c00017{left:479.520000px;}
.xd6_c00017{left:481.245000px;}
.x3a_c00017{left:483.840000px;}
.xb2_c00017{left:488.160000px;}
.xd9_c00017{left:491.610000px;}
.xa2_c00017{left:493.350000px;}
.x3b_c00017{left:495.930000px;}
.x15_c00017{left:498.525000px;}
.x7d_c00017{left:501.120000px;}
.x31_c00017{left:505.440000px;}
.x45_c00017{left:508.035000px;}
.x76_c00017{left:509.760000px;}
.xa8_c00017{left:511.485000px;}
.xd1_c00017{left:514.950000px;}
.x6d_c00017{left:516.675000px;}
.xff_c00017{left:519.270000px;}
.xc_c00017{left:520.995000px;}
.x89_c00017{left:524.445000px;}
.x4d_c00017{left:527.040000px;}
.x3c_c00017{left:531.360000px;}
.x8a_c00017{left:534.810000px;}
.xe3_c00017{left:536.550000px;}
.xb8_c00017{left:538.275000px;}
.x4e_c00017{left:540.000000px;}
.x7e_c00017{left:542.595000px;}
.xf6_c00017{left:546.915000px;}
.x27_c00017{left:549.510000px;}
.x92_c00017{left:551.235000px;}
.x98_c00017{left:553.830000px;}
.xd_c00017{left:556.410000px;}
.x6e_c00017{left:559.005000px;}
.xa9_c00017{left:564.195000px;}
.xab_c00017{left:565.920000px;}
.x8b_c00017{left:567.645000px;}
.xea_c00017{left:569.370000px;}
.x56_c00017{left:572.835000px;}
.xb3_c00017{left:577.155000px;}
.xa3_c00017{left:578.880000px;}
.x6f_c00017{left:580.605000px;}
.x61_c00017{left:582.330000px;}
.x16_c00017{left:584.070000px;}
.xe_c00017{left:590.115000px;}
.xeb_c00017{left:591.840000px;}
.x7f_c00017{left:593.565000px;}
.x3d_c00017{left:596.160000px;}
.x32_c00017{left:597.885000px;}
.x80_c00017{left:601.350000px;}
.x90_c00017{left:603.075000px;}
.x46_c00017{left:606.525000px;}
.xc8_c00017{left:609.120000px;}
.xac_c00017{left:611.715000px;}
.x62_c00017{left:614.310000px;}
.x17_c00017{left:620.355000px;}
.x28_c00017{left:622.950000px;}
.xee_c00017{left:627.270000px;}
.xa4_c00017{left:628.995000px;}
.x57_c00017{left:633.315000px;}
.x81_c00017{left:636.765000px;}
.x18_c00017{left:639.360000px;}
.x33_c00017{left:643.680000px;}
.x8_c00017{left:645.405000px;}
.x99_c00017{left:647.130000px;}
.xd2_c00017{left:648.870000px;}
.x100_c00017{left:650.595000px;}
.xf1_c00017{left:653.190000px;}
.x77_c00017{left:656.640000px;}
.x93_c00017{left:659.231544px;}
.x58_c00017{left:660.960000px;}
.x107_c00017{left:663.555000px;}
.x69_c00017{left:665.280000px;}
.x78_c00017{left:667.005000px;}
.x19_c00017{left:669.600000px;}
.x9e_c00017{left:671.325000px;}
.x3e_c00017{left:674.790000px;}
.x6a_c00017{left:676.515000px;}
.x91_c00017{left:679.110000px;}
.xdf_c00017{left:680.835000px;}
.x4f_c00017{left:682.560000px;}
.x9a_c00017{left:685.155000px;}
.x82_c00017{left:688.605000px;}
.x63_c00017{left:692.070000px;}
.x94_c00017{left:693.795000px;}
.x3f_c00017{left:696.390000px;}
.xda_c00017{left:702.435000px;}
.xef_c00017{left:704.160000px;}
.xf_c00017{left:705.885000px;}
.x59_c00017{left:708.480000px;}
.x40_c00017{left:711.075000px;}
.x10_c00017{left:717.990000px;}
.x29_c00017{left:719.715000px;}
.x34_c00017{left:722.310000px;}
.xa5_c00017{left:724.890000px;}
.x79_c00017{left:727.485000px;}
.xec_c00017{left:729.210000px;}
.x101_c00017{left:731.805000px;}
.xbb_c00017{left:733.530000px;}
.x95_c00017{left:736.125000px;}
.x9f_c00017{left:739.590000px;}
.x1a_c00017{left:742.170000px;}
.x50_c00017{left:748.230000px;}
.x11_c00017{left:749.955000px;}
.xfa_c00017{left:753.405000px;}
.x35_c00017{left:755.130000px;}
.x70_c00017{left:758.595000px;}
.x7a_c00017{left:761.190000px;}
.xf2_c00017{left:762.915000px;}
.x64_c00017{left:768.090000px;}
.x102_c00017{left:769.830000px;}
.x41_c00017{left:771.555000px;}
.x2a_c00017{left:774.150000px;}
.x65_c00017{left:776.730000px;}
.xfd_c00017{left:778.470000px;}
.x5a_c00017{left:780.195000px;}
.x96_c00017{left:782.790000px;}
.x47_c00017{left:784.515000px;}
.x6b_c00017{left:787.110000px;}
.x83_c00017{left:788.835000px;}
.xfb_c00017{left:790.560000px;}
.x74_c00017{left:793.155000px;}
.xf3_c00017{left:797.475000px;}
.xbc_c00017{left:800.070000px;}
.xf8_c00017{left:801.795000px;}
.xfc_c00017{left:803.520000px;}
.x71_c00017{left:806.115000px;}
.xd3_c00017{left:810.435000px;}
.x75_c00017{left:812.160000px;}
.x1b_c00017{left:814.755000px;}
.xf7_c00017{left:818.205000px;}
.xc9_c00017{left:820.800000px;}
.xcb_c00017{left:822.525000px;}
.x51_c00017{left:826.845000px;}
.x1c_c00017{left:830.310000px;}
.xbd_c00017{left:833.760000px;}
.x84_c00017{left:836.355000px;}
.x36_c00017{left:838.950000px;}
.x5b_c00017{left:844.125000px;}
.xe0_c00017{left:845.850000px;}
.x66_c00017{left:848.445000px;}
.xdb_c00017{left:850.170000px;}
.x8c_c00017{left:853.635000px;}
.xe5_c00017{left:855.360000px;}
.x5c_c00017{left:857.955000px;}
.xdc_c00017{left:859.680000px;}
.x7b_c00017{left:862.275000px;}
.xbe_c00017{left:867.450000px;}
.xc1_c00017{left:871.770000px;}
.x105_c00017{left:875.235000px;}
.xe4_c00017{left:878.685000px;}
.x103_c00017{left:889.050000px;}
.x112_c00017{left:891.645000px;}
.x10e_c00017{left:902.009904px;}
.x10a_c00017{left:907.200000px;}
.x111_c00017{left:908.925000px;}
.x10f_c00017{left:911.520000px;}
.x110_c00017{left:917.565000px;}
.x10c_c00017{left:919.290000px;}
.x10b_c00017{left:921.030000px;}
.x10d_c00017{left:925.350000px;}
@media print{
.v2_c00017{vertical-align:-6.133333pt;}
.v1_c00017{vertical-align:-3.040000pt;}
.v0_c00017{vertical-align:0.000000pt;}
.v3_c00017{vertical-align:3.093333pt;}
.v4_c00017{vertical-align:9.226667pt;}
.ls3_c00017{letter-spacing:0.000000pt;}
.ls0_c00017{letter-spacing:42.004800pt;}
.ls2_c00017{letter-spacing:59.819947pt;}
.ls1_c00017{letter-spacing:522.082987pt;}
.ws1_c00017{word-spacing:-35.819520pt;}
.ws2_c00017{word-spacing:-16.458453pt;}
.ws0_c00017{word-spacing:-15.752960pt;}
.ws4_c00017{word-spacing:-15.726933pt;}
.ws3_c00017{word-spacing:-9.551787pt;}
.ws5_c00017{word-spacing:0.000000pt;}
._0_c00017{width:9.322667pt;}
.fs5_c00017{font-size:3.072000pt;}
.fs14_c00017{font-size:5.333333pt;}
.fs1_c00017{font-size:6.133333pt;}
.fs11_c00017{font-size:9.226667pt;}
.fs3_c00017{font-size:12.266667pt;}
.fs0_c00017{font-size:15.360000pt;}
.fs13_c00017{font-size:18.453333pt;}
.fs15_c00017{font-size:21.493333pt;}
.fs6_c00017{font-size:24.586667pt;}
.fs2_c00017{font-size:27.626667pt;}
.fs1d_c00017{font-size:30.720000pt;}
.fs4_c00017{font-size:33.813333pt;}
.fs10_c00017{font-size:36.853333pt;}
.fs21_c00017{font-size:39.946667pt;}
.fs1f_c00017{font-size:42.986667pt;}
.fs1c_c00017{font-size:46.080000pt;}
.fs17_c00017{font-size:49.173333pt;}
.fs12_c00017{font-size:52.213333pt;}
.fsa_c00017{font-size:55.306667pt;}
.fs19_c00017{font-size:58.346667pt;}
.fsd_c00017{font-size:61.440000pt;}
.fs1e_c00017{font-size:64.533333pt;}
.fs9_c00017{font-size:67.573333pt;}
.fs1b_c00017{font-size:70.666667pt;}
.fs1a_c00017{font-size:73.706667pt;}
.fs7_c00017{font-size:76.800000pt;}
.fsc_c00017{font-size:79.893333pt;}
.fs20_c00017{font-size:82.933333pt;}
.fs16_c00017{font-size:86.026667pt;}
.fsf_c00017{font-size:89.066667pt;}
.fs23_c00017{font-size:92.160000pt;}
.fs24_c00017{font-size:98.293333pt;}
.fsb_c00017{font-size:101.386667pt;}
.fs18_c00017{font-size:104.426667pt;}
.fs8_c00017{font-size:107.520000pt;}
.fse_c00017{font-size:110.613333pt;}
.fs22_c00017{font-size:135.146667pt;}
.y0_c00017{bottom:0.000000pt;}
.y1a5_c00017{bottom:196.613333pt;}
.y1a7_c00017{bottom:197.373333pt;}
.y1aa_c00017{bottom:198.906667pt;}
.y1ab_c00017{bottom:199.680000pt;}
.y1a8_c00017{bottom:200.453333pt;}
.y1a9_c00017{bottom:207.360000pt;}
.y1a6_c00017{bottom:208.133333pt;}
.y19e_c00017{bottom:211.200000pt;}
.y1a0_c00017{bottom:212.733333pt;}
.y1a2_c00017{bottom:213.506667pt;}
.y1a3_c00017{bottom:215.040000pt;}
.y19f_c00017{bottom:215.813333pt;}
.y1a1_c00017{bottom:217.346667pt;}
.y1a4_c00017{bottom:220.413333pt;}
.y197_c00017{bottom:229.626667pt;}
.y198_c00017{bottom:231.173333pt;}
.y199_c00017{bottom:231.933333pt;}
.y19c_c00017{bottom:232.706667pt;}
.y19a_c00017{bottom:234.240000pt;}
.y19b_c00017{bottom:235.773333pt;}
.y196_c00017{bottom:237.306667pt;}
.y19d_c00017{bottom:241.146667pt;}
.y18e_c00017{bottom:246.533333pt;}
.y18f_c00017{bottom:247.293333pt;}
.y191_c00017{bottom:248.066667pt;}
.y192_c00017{bottom:248.826667pt;}
.y193_c00017{bottom:249.600000pt;}
.y194_c00017{bottom:250.373333pt;}
.y195_c00017{bottom:251.906667pt;}
.y190_c00017{bottom:252.666667pt;}
.y18d_c00017{bottom:262.653333pt;}
.y184_c00017{bottom:264.186667pt;}
.y183_c00017{bottom:264.960000pt;}
.y187_c00017{bottom:265.733333pt;}
.y186_c00017{bottom:266.493333pt;}
.y188_c00017{bottom:267.266667pt;}
.y189_c00017{bottom:268.026667pt;}
.y185_c00017{bottom:270.333333pt;}
.y18b_c00017{bottom:274.173333pt;}
.y18a_c00017{bottom:276.480000pt;}
.y18c_c00017{bottom:278.013333pt;}
.y17b_c00017{bottom:284.933333pt;}
.y17e_c00017{bottom:285.693333pt;}
.y17d_c00017{bottom:287.226667pt;}
.y17c_c00017{bottom:288.000000pt;}
.y17a_c00017{bottom:288.773333pt;}
.y17f_c00017{bottom:289.533333pt;}
.y180_c00017{bottom:290.306667pt;}
.y181_c00017{bottom:293.373333pt;}
.y182_c00017{bottom:294.146667pt;}
.y174_c00017{bottom:301.826667pt;}
.y175_c00017{bottom:304.133333pt;}
.y173_c00017{bottom:304.893333pt;}
.y177_c00017{bottom:306.426667pt;}
.y176_c00017{bottom:307.200000pt;}
.y179_c00017{bottom:309.506667pt;}
.y178_c00017{bottom:312.573333pt;}
.y172_c00017{bottom:317.186667pt;}
.y16a_c00017{bottom:318.720000pt;}
.y16d_c00017{bottom:320.253333pt;}
.y16c_c00017{bottom:321.026667pt;}
.y170_c00017{bottom:321.786667pt;}
.y16e_c00017{bottom:322.560000pt;}
.y16b_c00017{bottom:323.333333pt;}
.y171_c00017{bottom:324.093333pt;}
.y16f_c00017{bottom:326.400000pt;}
.y164_c00017{bottom:337.920000pt;}
.y161_c00017{bottom:338.693333pt;}
.y166_c00017{bottom:339.453333pt;}
.y165_c00017{bottom:341.760000pt;}
.y162_c00017{bottom:342.533333pt;}
.y163_c00017{bottom:343.293333pt;}
.y167_c00017{bottom:344.826667pt;}
.y168_c00017{bottom:347.133333pt;}
.y169_c00017{bottom:348.666667pt;}
.y160_c00017{bottom:351.746667pt;}
.y159_c00017{bottom:355.586667pt;}
.y15b_c00017{bottom:356.346667pt;}
.y15a_c00017{bottom:357.893333pt;}
.y158_c00017{bottom:360.960000pt;}
.y15c_c00017{bottom:361.733333pt;}
.y15d_c00017{bottom:362.493333pt;}
.y15e_c00017{bottom:365.573333pt;}
.y157_c00017{bottom:367.106667pt;}
.y15f_c00017{bottom:367.866667pt;}
.y14f_c00017{bottom:373.253333pt;}
.y150_c00017{bottom:376.320000pt;}
.y151_c00017{bottom:378.626667pt;}
.y152_c00017{bottom:382.466667pt;}
.y153_c00017{bottom:384.000000pt;}
.y154_c00017{bottom:384.773333pt;}
.y155_c00017{bottom:385.533333pt;}
.y14e_c00017{bottom:387.066667pt;}
.y156_c00017{bottom:387.840000pt;}
.y148_c00017{bottom:392.453333pt;}
.y149_c00017{bottom:393.986667pt;}
.y14b_c00017{bottom:394.746667pt;}
.y145_c00017{bottom:395.520000pt;}
.y146_c00017{bottom:396.293333pt;}
.y147_c00017{bottom:397.053333pt;}
.y14a_c00017{bottom:397.826667pt;}
.y14c_c00017{bottom:398.586667pt;}
.y14d_c00017{bottom:399.360000pt;}
.y13e_c00017{bottom:410.106667pt;}
.y141_c00017{bottom:410.880000pt;}
.y144_c00017{bottom:411.653333pt;}
.y13f_c00017{bottom:413.946667pt;}
.y140_c00017{bottom:414.720000pt;}
.y142_c00017{bottom:416.253333pt;}
.y143_c00017{bottom:417.026667pt;}
.y137_c00017{bottom:428.546667pt;}
.y13c_c00017{bottom:430.853333pt;}
.y138_c00017{bottom:432.386667pt;}
.y139_c00017{bottom:433.146667pt;}
.y13a_c00017{bottom:433.920000pt;}
.y13b_c00017{bottom:434.693333pt;}
.y13d_c00017{bottom:435.453333pt;}
.y1_c00017{bottom:440.826667pt;}
.y134_c00017{bottom:450.053333pt;}
.y133_c00017{bottom:450.813333pt;}
.y135_c00017{bottom:452.346667pt;}
.y136_c00017{bottom:453.893333pt;}
.y12b_c00017{bottom:464.640000pt;}
.y12d_c00017{bottom:465.413333pt;}
.y131_c00017{bottom:466.173333pt;}
.y12f_c00017{bottom:466.946667pt;}
.y132_c00017{bottom:467.706667pt;}
.y12a_c00017{bottom:468.480000pt;}
.y12c_c00017{bottom:469.253333pt;}
.y12e_c00017{bottom:470.013333pt;}
.y130_c00017{bottom:470.786667pt;}
.y125_c00017{bottom:483.840000pt;}
.y127_c00017{bottom:485.373333pt;}
.y122_c00017{bottom:486.146667pt;}
.y123_c00017{bottom:486.906667pt;}
.y124_c00017{bottom:487.680000pt;}
.y126_c00017{bottom:489.213333pt;}
.y128_c00017{bottom:489.986667pt;}
.y121_c00017{bottom:494.586667pt;}
.y129_c00017{bottom:496.133333pt;}
.y115_c00017{bottom:499.973333pt;}
.y117_c00017{bottom:500.733333pt;}
.y119_c00017{bottom:501.506667pt;}
.y11d_c00017{bottom:502.266667pt;}
.y11c_c00017{bottom:503.813333pt;}
.y116_c00017{bottom:504.573333pt;}
.y118_c00017{bottom:505.346667pt;}
.y11b_c00017{bottom:506.106667pt;}
.y11a_c00017{bottom:506.880000pt;}
.y11e_c00017{bottom:507.653333pt;}
.y120_c00017{bottom:510.720000pt;}
.y11f_c00017{bottom:516.093333pt;}
.y110_c00017{bottom:518.400000pt;}
.y114_c00017{bottom:521.466667pt;}
.y10f_c00017{bottom:523.013333pt;}
.y111_c00017{bottom:523.773333pt;}
.y112_c00017{bottom:524.546667pt;}
.y113_c00017{bottom:526.080000pt;}
.y10a_c00017{bottom:537.600000pt;}
.y108_c00017{bottom:540.666667pt;}
.y109_c00017{bottom:542.213333pt;}
.y10e_c00017{bottom:543.746667pt;}
.y10c_c00017{bottom:546.053333pt;}
.y10b_c00017{bottom:549.893333pt;}
.y107_c00017{bottom:550.653333pt;}
.y1ad_c00017{bottom:551.426667pt;}
.y10d_c00017{bottom:552.186667pt;}
.y100_c00017{bottom:555.266667pt;}
.y1ac_c00017{bottom:556.026667pt;}
.y102_c00017{bottom:556.800000pt;}
.y103_c00017{bottom:558.333333pt;}
.y104_c00017{bottom:559.866667pt;}
.y101_c00017{bottom:560.640000pt;}
.y106_c00017{bottom:562.946667pt;}
.yff_c00017{bottom:571.386667pt;}
.y105_c00017{bottom:574.466667pt;}
.yfb_c00017{bottom:575.226667pt;}
.yfa_c00017{bottom:576.000000pt;}
.yfe_c00017{bottom:576.773333pt;}
.yf9_c00017{bottom:578.306667pt;}
.yf8_c00017{bottom:579.066667pt;}
.yfc_c00017{bottom:579.840000pt;}
.yfd_c00017{bottom:580.613333pt;}
.yf3_c00017{bottom:591.360000pt;}
.yf5_c00017{bottom:592.133333pt;}
.yf4_c00017{bottom:592.893333pt;}
.yf6_c00017{bottom:596.733333pt;}
.yf7_c00017{bottom:606.720000pt;}
.yee_c00017{bottom:609.026667pt;}
.yef_c00017{bottom:610.560000pt;}
.yf2_c00017{bottom:613.626667pt;}
.yf0_c00017{bottom:615.173333pt;}
.yf1_c00017{bottom:615.933333pt;}
.yed_c00017{bottom:622.080000pt;}
.yec_c00017{bottom:623.613333pt;}
.ye5_c00017{bottom:627.453333pt;}
.ye6_c00017{bottom:630.533333pt;}
.ye7_c00017{bottom:631.293333pt;}
.ye3_c00017{bottom:632.066667pt;}
.ye4_c00017{bottom:632.826667pt;}
.yea_c00017{bottom:635.133333pt;}
.ye9_c00017{bottom:636.666667pt;}
.yeb_c00017{bottom:638.213333pt;}
.ye8_c00017{bottom:642.053333pt;}
.ydb_c00017{bottom:642.813333pt;}
.ydf_c00017{bottom:645.893333pt;}
.yde_c00017{bottom:646.653333pt;}
.ye2_c00017{bottom:648.186667pt;}
.ydd_c00017{bottom:648.960000pt;}
.ydc_c00017{bottom:649.733333pt;}
.ye1_c00017{bottom:650.493333pt;}
.ye0_c00017{bottom:652.800000pt;}
.yd3_c00017{bottom:662.013333pt;}
.yd4_c00017{bottom:666.626667pt;}
.yd5_c00017{bottom:667.386667pt;}
.yd6_c00017{bottom:668.160000pt;}
.yd7_c00017{bottom:668.933333pt;}
.yd8_c00017{bottom:669.693333pt;}
.yd9_c00017{bottom:670.466667pt;}
.yda_c00017{bottom:674.306667pt;}
.ycd_c00017{bottom:680.453333pt;}
.ycf_c00017{bottom:681.986667pt;}
.yce_c00017{bottom:684.293333pt;}
.yd0_c00017{bottom:686.586667pt;}
.yd1_c00017{bottom:687.360000pt;}
.yd2_c00017{bottom:688.893333pt;}
.yc7_c00017{bottom:696.573333pt;}
.yc8_c00017{bottom:698.106667pt;}
.yca_c00017{bottom:698.880000pt;}
.yc6_c00017{bottom:701.186667pt;}
.yc9_c00017{bottom:701.946667pt;}
.ycb_c00017{bottom:702.720000pt;}
.ycc_c00017{bottom:703.493333pt;}
.yc2_c00017{bottom:718.853333pt;}
.yc5_c00017{bottom:721.146667pt;}
.yc3_c00017{bottom:721.920000pt;}
.yc4_c00017{bottom:722.693333pt;}
.ybc_c00017{bottom:727.293333pt;}
.ybe_c00017{bottom:728.826667pt;}
.yc1_c00017{bottom:729.600000pt;}
.yc0_c00017{bottom:730.373333pt;}
.ybd_c00017{bottom:737.280000pt;}
.ybf_c00017{bottom:738.053333pt;}
.ybb_c00017{bottom:752.640000pt;}
.yb8_c00017{bottom:771.066667pt;}
.yb6_c00017{bottom:777.986667pt;}
.yb7_c00017{bottom:778.746667pt;}
.yaf_c00017{bottom:781.053333pt;}
.yad_c00017{bottom:781.826667pt;}
.yb2_c00017{bottom:783.360000pt;}
.yb3_c00017{bottom:784.133333pt;}
.yb1_c00017{bottom:785.666667pt;}
.yae_c00017{bottom:787.200000pt;}
.yb0_c00017{bottom:787.973333pt;}
.yb4_c00017{bottom:789.506667pt;}
.yb5_c00017{bottom:790.266667pt;}
.ya6_c00017{bottom:800.253333pt;}
.ya8_c00017{bottom:801.026667pt;}
.ya9_c00017{bottom:801.786667pt;}
.ya7_c00017{bottom:802.560000pt;}
.yab_c00017{bottom:804.093333pt;}
.yac_c00017{bottom:804.866667pt;}
.yaa_c00017{bottom:805.626667pt;}
.y1b3_c00017{bottom:814.853333pt;}
.ya0_c00017{bottom:818.693333pt;}
.ya1_c00017{bottom:819.453333pt;}
.y9e_c00017{bottom:820.226667pt;}
.y9f_c00017{bottom:820.986667pt;}
.ya3_c00017{bottom:821.760000pt;}
.ya4_c00017{bottom:822.533333pt;}
.y9c_c00017{bottom:823.293333pt;}
.y9d_c00017{bottom:824.066667pt;}
.ya2_c00017{bottom:824.826667pt;}
.ya5_c00017{bottom:827.133333pt;}
.y9b_c00017{bottom:830.973333pt;}
.y98_c00017{bottom:844.026667pt;}
.y97_c00017{bottom:844.800000pt;}
.y99_c00017{bottom:847.106667pt;}
.y9a_c00017{bottom:848.640000pt;}
.y92_c00017{bottom:849.413333pt;}
.y90_c00017{bottom:851.706667pt;}
.y96_c00017{bottom:853.253333pt;}
.y95_c00017{bottom:855.546667pt;}
.y91_c00017{bottom:856.320000pt;}
.y93_c00017{bottom:858.626667pt;}
.y94_c00017{bottom:859.386667pt;}
.y8f_c00017{bottom:869.373333pt;}
.y8c_c00017{bottom:878.586667pt;}
.y8b_c00017{bottom:879.360000pt;}
.y8e_c00017{bottom:880.893333pt;}
.y8d_c00017{bottom:881.666667pt;}
.y88_c00017{bottom:887.040000pt;}
.y86_c00017{bottom:887.813333pt;}
.y87_c00017{bottom:888.573333pt;}
.y8a_c00017{bottom:890.880000pt;}
.y85_c00017{bottom:892.413333pt;}
.y89_c00017{bottom:893.186667pt;}
.y7e_c00017{bottom:897.026667pt;}
.y80_c00017{bottom:897.786667pt;}
.y82_c00017{bottom:898.560000pt;}
.y7f_c00017{bottom:900.866667pt;}
.y81_c00017{bottom:901.626667pt;}
.y83_c00017{bottom:902.400000pt;}
.y84_c00017{bottom:903.173333pt;}
.y1b2_c00017{bottom:907.773333pt;}
.y76_c00017{bottom:913.920000pt;}
.y75_c00017{bottom:914.693333pt;}
.y1b1_c00017{bottom:915.453333pt;}
.y77_c00017{bottom:916.226667pt;}
.y7a_c00017{bottom:916.986667pt;}
.y79_c00017{bottom:917.760000pt;}
.y74_c00017{bottom:919.293333pt;}
.y78_c00017{bottom:920.826667pt;}
.y7c_c00017{bottom:921.600000pt;}
.y7b_c00017{bottom:922.373333pt;}
.y7d_c00017{bottom:923.133333pt;}
.y6e_c00017{bottom:933.120000pt;}
.y6f_c00017{bottom:934.653333pt;}
.y73_c00017{bottom:936.186667pt;}
.y6d_c00017{bottom:936.960000pt;}
.y6c_c00017{bottom:937.733333pt;}
.y71_c00017{bottom:938.493333pt;}
.y70_c00017{bottom:939.266667pt;}
.y72_c00017{bottom:941.573333pt;}
.y65_c00017{bottom:950.786667pt;}
.y67_c00017{bottom:951.546667pt;}
.y6a_c00017{bottom:953.853333pt;}
.y68_c00017{bottom:954.626667pt;}
.y66_c00017{bottom:955.386667pt;}
.y64_c00017{bottom:956.160000pt;}
.y69_c00017{bottom:957.693333pt;}
.y6b_c00017{bottom:959.226667pt;}
.yb9_c00017{bottom:966.906667pt;}
.yba_c00017{bottom:967.680000pt;}
.y5f_c00017{bottom:969.986667pt;}
.y5e_c00017{bottom:970.746667pt;}
.y62_c00017{bottom:973.053333pt;}
.y60_c00017{bottom:974.586667pt;}
.y61_c00017{bottom:975.360000pt;}
.y63_c00017{bottom:977.666667pt;}
.y58_c00017{bottom:987.653333pt;}
.y5a_c00017{bottom:988.413333pt;}
.y56_c00017{bottom:989.186667pt;}
.y5c_c00017{bottom:989.946667pt;}
.y59_c00017{bottom:991.493333pt;}
.y57_c00017{bottom:992.253333pt;}
.y5b_c00017{bottom:993.786667pt;}
.y5d_c00017{bottom:995.333333pt;}
.y52_c00017{bottom:1005.306667pt;}
.y4f_c00017{bottom:1006.853333pt;}
.y51_c00017{bottom:1008.386667pt;}
.y50_c00017{bottom:1009.920000pt;}
.y53_c00017{bottom:1010.693333pt;}
.y54_c00017{bottom:1011.453333pt;}
.y55_c00017{bottom:1012.226667pt;}
.y49_c00017{bottom:1023.746667pt;}
.y4b_c00017{bottom:1025.280000pt;}
.y4a_c00017{bottom:1026.053333pt;}
.y47_c00017{bottom:1027.586667pt;}
.y48_c00017{bottom:1028.346667pt;}
.y4c_c00017{bottom:1030.653333pt;}
.y4d_c00017{bottom:1031.426667pt;}
.y4e_c00017{bottom:1032.960000pt;}
.y1af_c00017{bottom:1036.026667pt;}
.y1b0_c00017{bottom:1040.640000pt;}
.y41_c00017{bottom:1042.946667pt;}
.y45_c00017{bottom:1043.706667pt;}
.y44_c00017{bottom:1044.480000pt;}
.y40_c00017{bottom:1045.253333pt;}
.y42_c00017{bottom:1046.013333pt;}
.y43_c00017{bottom:1046.786667pt;}
.y46_c00017{bottom:1048.320000pt;}
.y1ae_c00017{bottom:1052.160000pt;}
.y1c_c00017{bottom:1058.306667pt;}
.y3b_c00017{bottom:1059.840000pt;}
.y3e_c00017{bottom:1060.613333pt;}
.y3c_c00017{bottom:1063.680000pt;}
.y1d_c00017{bottom:1064.453333pt;}
.y3d_c00017{bottom:1065.213333pt;}
.y3f_c00017{bottom:1066.746667pt;}
.y33_c00017{bottom:1076.733333pt;}
.y37_c00017{bottom:1078.266667pt;}
.y39_c00017{bottom:1079.813333pt;}
.y34_c00017{bottom:1080.573333pt;}
.y35_c00017{bottom:1081.346667pt;}
.y36_c00017{bottom:1082.106667pt;}
.y38_c00017{bottom:1082.880000pt;}
.y3a_c00017{bottom:1084.413333pt;}
.y2b_c00017{bottom:1092.866667pt;}
.y30_c00017{bottom:1093.626667pt;}
.y2f_c00017{bottom:1095.933333pt;}
.y32_c00017{bottom:1096.706667pt;}
.y2a_c00017{bottom:1097.466667pt;}
.y2c_c00017{bottom:1099.013333pt;}
.y2d_c00017{bottom:1099.773333pt;}
.y2e_c00017{bottom:1100.546667pt;}
.y31_c00017{bottom:1103.613333pt;}
.y1e_c00017{bottom:1108.226667pt;}
.y1f_c00017{bottom:1110.533333pt;}
.y22_c00017{bottom:1111.293333pt;}
.y26_c00017{bottom:1114.373333pt;}
.y29_c00017{bottom:1115.133333pt;}
.y23_c00017{bottom:1116.666667pt;}
.y24_c00017{bottom:1117.440000pt;}
.y25_c00017{bottom:1118.213333pt;}
.y27_c00017{bottom:1119.746667pt;}
.y28_c00017{bottom:1120.506667pt;}
.y20_c00017{bottom:1123.586667pt;}
.y21_c00017{bottom:1128.186667pt;}
.y1b_c00017{bottom:1146.626667pt;}
.y13_c00017{bottom:1152.773333pt;}
.y14_c00017{bottom:1155.066667pt;}
.y15_c00017{bottom:1155.840000pt;}
.y1a_c00017{bottom:1156.613333pt;}
.y16_c00017{bottom:1158.906667pt;}
.y19_c00017{bottom:1159.680000pt;}
.y17_c00017{bottom:1161.213333pt;}
.y18_c00017{bottom:1163.520000pt;}
.yd_c00017{bottom:1179.653333pt;}
.yc_c00017{bottom:1181.946667pt;}
.yb_c00017{bottom:1185.026667pt;}
.yf_c00017{bottom:1185.786667pt;}
.y10_c00017{bottom:1186.560000pt;}
.y12_c00017{bottom:1187.333333pt;}
.y11_c00017{bottom:1188.093333pt;}
.ye_c00017{bottom:1188.866667pt;}
.y9_c00017{bottom:1195.773333pt;}
.y8_c00017{bottom:1200.386667pt;}
.y6_c00017{bottom:1205.760000pt;}
.ya_c00017{bottom:1210.373333pt;}
.y7_c00017{bottom:1211.906667pt;}
.y5_c00017{bottom:1214.973333pt;}
.y4_c00017{bottom:1228.800000pt;}
.y3_c00017{bottom:1275.653333pt;}
.y2_c00017{bottom:1277.186667pt;}
.h7_c00017{height:2.764500pt;}
.h16_c00017{height:4.799479pt;}
.h3_c00017{height:5.519401pt;}
.h13_c00017{height:8.303099pt;}
.h5_c00017{height:11.038802pt;}
.h2_c00017{height:13.822500pt;}
.h15_c00017{height:16.606198pt;}
.h17_c00017{height:19.341901pt;}
.h8_c00017{height:22.125599pt;}
.h4_c00017{height:24.861302pt;}
.h1f_c00017{height:27.645000pt;}
.h6_c00017{height:30.428698pt;}
.h12_c00017{height:33.164401pt;}
.h23_c00017{height:35.948099pt;}
.h21_c00017{height:38.683802pt;}
.h1e_c00017{height:41.467500pt;}
.h19_c00017{height:44.251198pt;}
.h27_c00017{height:44.560833pt;}
.h14_c00017{height:46.986901pt;}
.h28_c00017{height:47.344531pt;}
.hc_c00017{height:49.770599pt;}
.h1b_c00017{height:52.506302pt;}
.hf_c00017{height:55.290000pt;}
.h20_c00017{height:58.073698pt;}
.hb_c00017{height:60.809401pt;}
.h29_c00017{height:61.732969pt;}
.h1d_c00017{height:63.593099pt;}
.h1c_c00017{height:66.328802pt;}
.h9_c00017{height:69.112500pt;}
.he_c00017{height:71.896198pt;}
.h22_c00017{height:74.631901pt;}
.h18_c00017{height:77.415599pt;}
.h11_c00017{height:80.151302pt;}
.h25_c00017{height:82.935000pt;}
.h26_c00017{height:88.454401pt;}
.hd_c00017{height:91.238099pt;}
.h1a_c00017{height:93.973802pt;}
.ha_c00017{height:96.757500pt;}
.h10_c00017{height:99.541198pt;}
.h24_c00017{height:121.618802pt;}
.h1_c00017{height:1336.000000pt;}
.h0_c00017{height:1336.320000pt;}
.w1_c00017{width:956.666667pt;}
.w0_c00017{width:956.933333pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:26.880000pt;}
.x108_c00017{left:50.693333pt;}
.x1e_c00017{left:53.760000pt;}
.x109_c00017{left:57.600000pt;}
.x1f_c00017{left:65.280000pt;}
.xb1_c00017{left:128.253333pt;}
.xaf_c00017{left:145.146667pt;}
.xcf_c00017{left:150.533333pt;}
.x20_c00017{left:152.066667pt;}
.xb0_c00017{left:158.973333pt;}
.x21_c00017{left:162.053333pt;}
.xad_c00017{left:165.120000pt;}
.xae_c00017{left:172.026667pt;}
.x104_c00017{left:180.480000pt;}
.xc5_c00017{left:182.786667pt;}
.xc6_c00017{left:195.066667pt;}
.x48_c00017{left:198.906667pt;}
.x4_c00017{left:200.453333pt;}
.x22_c00017{left:202.746667pt;}
.x8d_c00017{left:205.053333pt;}
.xdd_c00017{left:206.586667pt;}
.x23_c00017{left:208.133333pt;}
.x5_c00017{left:209.666667pt;}
.xcc_c00017{left:213.506667pt;}
.x6_c00017{left:217.346667pt;}
.x9b_c00017{left:218.880000pt;}
.x2b_c00017{left:220.413333pt;}
.xd0_c00017{left:221.946667pt;}
.xc7_c00017{left:223.493333pt;}
.xd4_c00017{left:225.026667pt;}
.xf4_c00017{left:226.560000pt;}
.x106_c00017{left:228.093333pt;}
.x24_c00017{left:229.626667pt;}
.xd7_c00017{left:231.173333pt;}
.x49_c00017{left:234.240000pt;}
.x7c_c00017{left:236.546667pt;}
.xc2_c00017{left:239.613333pt;}
.x4a_c00017{left:241.920000pt;}
.xa0_c00017{left:243.453333pt;}
.x8e_c00017{left:245.760000pt;}
.x9_c00017{left:247.293333pt;}
.x97_c00017{left:252.666667pt;}
.xa_c00017{left:254.973333pt;}
.x37_c00017{left:257.280000pt;}
.xde_c00017{left:259.586667pt;}
.xe1_c00017{left:261.893333pt;}
.x7_c00017{left:264.186667pt;}
.x67_c00017{left:267.266667pt;}
.x1d_c00017{left:271.106667pt;}
.xb4_c00017{left:274.173333pt;}
.x4b_c00017{left:275.706667pt;}
.xca_c00017{left:278.013333pt;}
.x72_c00017{left:279.546667pt;}
.xbf_c00017{left:281.093333pt;}
.xb_c00017{left:282.626667pt;}
.x38_c00017{left:284.160000pt;}
.x12_c00017{left:287.226667pt;}
.x42_c00017{left:291.066667pt;}
.xb9_c00017{left:294.146667pt;}
.xa1_c00017{left:297.986667pt;}
.xd5_c00017{left:299.520000pt;}
.x2_c00017{left:301.053333pt;}
.xe6_c00017{left:302.586667pt;}
.x9c_c00017{left:304.893333pt;}
.xa6_c00017{left:306.426667pt;}
.xe7_c00017{left:307.973333pt;}
.x2c_c00017{left:310.266667pt;}
.xc3_c00017{left:313.346667pt;}
.x3_c00017{left:314.880000pt;}
.x39_c00017{left:316.413333pt;}
.xcd_c00017{left:318.720000pt;}
.x43_c00017{left:321.026667pt;}
.x5d_c00017{left:322.560000pt;}
.x85_c00017{left:324.093333pt;}
.x2d_c00017{left:325.626667pt;}
.x52_c00017{left:330.240000pt;}
.x86_c00017{left:331.773333pt;}
.xd8_c00017{left:334.080000pt;}
.x68_c00017{left:335.613333pt;}
.xce_c00017{left:337.146667pt;}
.x5e_c00017{left:338.693333pt;}
.x2e_c00017{left:340.226667pt;}
.xb5_c00017{left:347.133333pt;}
.x53_c00017{left:348.666667pt;}
.xaa_c00017{left:350.973333pt;}
.x44_c00017{left:352.506667pt;}
.xe8_c00017{left:354.053333pt;}
.xb6_c00017{left:357.120000pt;}
.x13_c00017{left:358.653333pt;}
.x87_c00017{left:360.960000pt;}
.xc4_c00017{left:364.800000pt;}
.xfe_c00017{left:367.106667pt;}
.xed_c00017{left:368.640000pt;}
.x25_c00017{left:373.253333pt;}
.xe9_c00017{left:375.546667pt;}
.x4c_c00017{left:379.386667pt;}
.x5f_c00017{left:382.466667pt;}
.xf9_c00017{left:385.533333pt;}
.xba_c00017{left:387.066667pt;}
.x54_c00017{left:389.373333pt;}
.x60_c00017{left:390.906667pt;}
.x2f_c00017{left:392.453333pt;}
.x8f_c00017{left:393.986667pt;}
.xb7_c00017{left:398.586667pt;}
.x6c_c00017{left:400.133333pt;}
.x30_c00017{left:401.666667pt;}
.x88_c00017{left:403.200000pt;}
.x73_c00017{left:407.040000pt;}
.xa7_c00017{left:410.106667pt;}
.xf5_c00017{left:412.413333pt;}
.x26_c00017{left:413.946667pt;}
.x14_c00017{left:415.493333pt;}
.x55_c00017{left:417.786667pt;}
.xc0_c00017{left:420.093333pt;}
.xf0_c00017{left:422.400000pt;}
.x9d_c00017{left:423.933333pt;}
.xe2_c00017{left:426.240000pt;}
.xd6_c00017{left:427.773333pt;}
.x3a_c00017{left:430.080000pt;}
.xb2_c00017{left:433.920000pt;}
.xd9_c00017{left:436.986667pt;}
.xa2_c00017{left:438.533333pt;}
.x3b_c00017{left:440.826667pt;}
.x15_c00017{left:443.133333pt;}
.x7d_c00017{left:445.440000pt;}
.x31_c00017{left:449.280000pt;}
.x45_c00017{left:451.586667pt;}
.x76_c00017{left:453.120000pt;}
.xa8_c00017{left:454.653333pt;}
.xd1_c00017{left:457.733333pt;}
.x6d_c00017{left:459.266667pt;}
.xff_c00017{left:461.573333pt;}
.xc_c00017{left:463.106667pt;}
.x89_c00017{left:466.173333pt;}
.x4d_c00017{left:468.480000pt;}
.x3c_c00017{left:472.320000pt;}
.x8a_c00017{left:475.386667pt;}
.xe3_c00017{left:476.933333pt;}
.xb8_c00017{left:478.466667pt;}
.x4e_c00017{left:480.000000pt;}
.x7e_c00017{left:482.306667pt;}
.xf6_c00017{left:486.146667pt;}
.x27_c00017{left:488.453333pt;}
.x92_c00017{left:489.986667pt;}
.x98_c00017{left:492.293333pt;}
.xd_c00017{left:494.586667pt;}
.x6e_c00017{left:496.893333pt;}
.xa9_c00017{left:501.506667pt;}
.xab_c00017{left:503.040000pt;}
.x8b_c00017{left:504.573333pt;}
.xea_c00017{left:506.106667pt;}
.x56_c00017{left:509.186667pt;}
.xb3_c00017{left:513.026667pt;}
.xa3_c00017{left:514.560000pt;}
.x6f_c00017{left:516.093333pt;}
.x61_c00017{left:517.626667pt;}
.x16_c00017{left:519.173333pt;}
.xe_c00017{left:524.546667pt;}
.xeb_c00017{left:526.080000pt;}
.x7f_c00017{left:527.613333pt;}
.x3d_c00017{left:529.920000pt;}
.x32_c00017{left:531.453333pt;}
.x80_c00017{left:534.533333pt;}
.x90_c00017{left:536.066667pt;}
.x46_c00017{left:539.133333pt;}
.xc8_c00017{left:541.440000pt;}
.xac_c00017{left:543.746667pt;}
.x62_c00017{left:546.053333pt;}
.x17_c00017{left:551.426667pt;}
.x28_c00017{left:553.733333pt;}
.xee_c00017{left:557.573333pt;}
.xa4_c00017{left:559.106667pt;}
.x57_c00017{left:562.946667pt;}
.x81_c00017{left:566.013333pt;}
.x18_c00017{left:568.320000pt;}
.x33_c00017{left:572.160000pt;}
.x8_c00017{left:573.693333pt;}
.x99_c00017{left:575.226667pt;}
.xd2_c00017{left:576.773333pt;}
.x100_c00017{left:578.306667pt;}
.xf1_c00017{left:580.613333pt;}
.x77_c00017{left:583.680000pt;}
.x93_c00017{left:585.983595pt;}
.x58_c00017{left:587.520000pt;}
.x107_c00017{left:589.826667pt;}
.x69_c00017{left:591.360000pt;}
.x78_c00017{left:592.893333pt;}
.x19_c00017{left:595.200000pt;}
.x9e_c00017{left:596.733333pt;}
.x3e_c00017{left:599.813333pt;}
.x6a_c00017{left:601.346667pt;}
.x91_c00017{left:603.653333pt;}
.xdf_c00017{left:605.186667pt;}
.x4f_c00017{left:606.720000pt;}
.x9a_c00017{left:609.026667pt;}
.x82_c00017{left:612.093333pt;}
.x63_c00017{left:615.173333pt;}
.x94_c00017{left:616.706667pt;}
.x3f_c00017{left:619.013333pt;}
.xda_c00017{left:624.386667pt;}
.xef_c00017{left:625.920000pt;}
.xf_c00017{left:627.453333pt;}
.x59_c00017{left:629.760000pt;}
.x40_c00017{left:632.066667pt;}
.x10_c00017{left:638.213333pt;}
.x29_c00017{left:639.746667pt;}
.x34_c00017{left:642.053333pt;}
.xa5_c00017{left:644.346667pt;}
.x79_c00017{left:646.653333pt;}
.xec_c00017{left:648.186667pt;}
.x101_c00017{left:650.493333pt;}
.xbb_c00017{left:652.026667pt;}
.x95_c00017{left:654.333333pt;}
.x9f_c00017{left:657.413333pt;}
.x1a_c00017{left:659.706667pt;}
.x50_c00017{left:665.093333pt;}
.x11_c00017{left:666.626667pt;}
.xfa_c00017{left:669.693333pt;}
.x35_c00017{left:671.226667pt;}
.x70_c00017{left:674.306667pt;}
.x7a_c00017{left:676.613333pt;}
.xf2_c00017{left:678.146667pt;}
.x64_c00017{left:682.746667pt;}
.x102_c00017{left:684.293333pt;}
.x41_c00017{left:685.826667pt;}
.x2a_c00017{left:688.133333pt;}
.x65_c00017{left:690.426667pt;}
.xfd_c00017{left:691.973333pt;}
.x5a_c00017{left:693.506667pt;}
.x96_c00017{left:695.813333pt;}
.x47_c00017{left:697.346667pt;}
.x6b_c00017{left:699.653333pt;}
.x83_c00017{left:701.186667pt;}
.xfb_c00017{left:702.720000pt;}
.x74_c00017{left:705.026667pt;}
.xf3_c00017{left:708.866667pt;}
.xbc_c00017{left:711.173333pt;}
.xf8_c00017{left:712.706667pt;}
.xfc_c00017{left:714.240000pt;}
.x71_c00017{left:716.546667pt;}
.xd3_c00017{left:720.386667pt;}
.x75_c00017{left:721.920000pt;}
.x1b_c00017{left:724.226667pt;}
.xf7_c00017{left:727.293333pt;}
.xc9_c00017{left:729.600000pt;}
.xcb_c00017{left:731.133333pt;}
.x51_c00017{left:734.973333pt;}
.x1c_c00017{left:738.053333pt;}
.xbd_c00017{left:741.120000pt;}
.x84_c00017{left:743.426667pt;}
.x36_c00017{left:745.733333pt;}
.x5b_c00017{left:750.333333pt;}
.xe0_c00017{left:751.866667pt;}
.x66_c00017{left:754.173333pt;}
.xdb_c00017{left:755.706667pt;}
.x8c_c00017{left:758.786667pt;}
.xe5_c00017{left:760.320000pt;}
.x5c_c00017{left:762.626667pt;}
.xdc_c00017{left:764.160000pt;}
.x7b_c00017{left:766.466667pt;}
.xbe_c00017{left:771.066667pt;}
.xc1_c00017{left:774.906667pt;}
.x105_c00017{left:777.986667pt;}
.xe4_c00017{left:781.053333pt;}
.x103_c00017{left:790.266667pt;}
.x112_c00017{left:792.573333pt;}
.x10e_c00017{left:801.786581pt;}
.x10a_c00017{left:806.400000pt;}
.x111_c00017{left:807.933333pt;}
.x10f_c00017{left:810.240000pt;}
.x110_c00017{left:815.613333pt;}
.x10c_c00017{left:817.146667pt;}
.x10b_c00017{left:818.693333pt;}
.x10d_c00017{left:822.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_174680afa52ddadc6d8fecd6.woff2')format("woff");}.ff1_c00018{font-family:ff1_c00018;line-height:1.109863;font-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_c00018{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m71_c00018{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m8a_c00018{transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);}
.md7_c00018{transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);}
.m1_c00018{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00018{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.me_c00018{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.m90_c00018{transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);}
.mb_c00018{transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);}
.m8d_c00018{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m50_c00018{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.mbf_c00018{transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);}
.m91_c00018{transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);}
.mdd_c00018{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m70_c00018{transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);}
.mbe_c00018{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.m51_c00018{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m57_c00018{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m5b_c00018{transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);}
.m94_c00018{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m81_c00018{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.m7d_c00018{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.mcf_c00018{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.mf_c00018{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);}
.m5e_c00018{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);}
.m5a_c00018{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);}
.m38_c00018{transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);}
.m26_c00018{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);}
.m3a_c00018{transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);}
.mae_c00018{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m14_c00018{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.m7a_c00018{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.mc3_c00018{transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);}
.m7c_c00018{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.m4a_c00018{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.mb7_c00018{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);}
.m49_c00018{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.mb6_c00018{transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);}
.mce_c00018{transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);}
.mb9_c00018{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);}
.m2b_c00018{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m34_c00018{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00018{transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);}
.m7b_c00018{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);}
.m39_c00018{transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);}
.mdc_c00018{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.m11_c00018{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);}
.m10_c00018{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);}
.m76_c00018{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);}
.m4f_c00018{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);}
.m83_c00018{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.mcb_c00018{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m67_c00018{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.mb1_c00018{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m3b_c00018{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.mc2_c00018{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);}
.mb8_c00018{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.mba_c00018{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.md5_c00018{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.ma3_c00018{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);}
.m43_c00018{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m5f_c00018{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_c00018{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);}
.m5c_c00018{transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);}
.m6f_c00018{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.mca_c00018{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);}
.m25_c00018{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.m7f_c00018{transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);}
.m45_c00018{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);}
.mde_c00018{transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);}
.mc1_c00018{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.mc6_c00018{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.m86_c00018{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);}
.ma8_c00018{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.mab_c00018{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.m85_c00018{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.m9e_c00018{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1a_c00018{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.mb4_c00018{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.mcd_c00018{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);}
.md0_c00018{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);}
.ma4_c00018{transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);}
.m23_c00018{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m68_c00018{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.me0_c00018{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.mb2_c00018{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.m59_c00018{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);}
.ma6_c00018{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);}
.md8_c00018{transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);}
.ma1_c00018{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m8e_c00018{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.m42_c00018{transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);}
.m65_c00018{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);}
.m9c_c00018{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);}
.m80_c00018{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);}
.m24_c00018{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);}
.m4e_c00018{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);}
.mc7_c00018{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);}
.m22_c00018{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);}
.maf_c00018{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);}
.m72_c00018{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);}
.m7e_c00018{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);}
.m9b_c00018{transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);}
.m4b_c00018{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m73_c00018{transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);}
.mc9_c00018{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);}
.m13_c00018{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.mbd_c00018{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m3f_c00018{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.md9_c00018{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);}
.m44_c00018{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);}
.m99_c00018{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m63_c00018{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);}
.ma5_c00018{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m9d_c00018{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);}
.m28_c00018{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);}
.m98_c00018{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.mc_c00018{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m88_c00018{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);}
.ma2_c00018{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.mbc_c00018{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);}
.m2d_c00018{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);}
.mac_c00018{transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);}
.m47_c00018{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m56_c00018{transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);}
.mb5_c00018{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);}
.m89_c00018{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);}
.m95_c00018{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m8f_c00018{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m9a_c00018{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);}
.m3e_c00018{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);}
.m64_c00018{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m77_c00018{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);}
.mb3_c00018{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);}
.mc8_c00018{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);}
.md2_c00018{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.mad_c00018{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);}
.m31_c00018{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m6_c00018{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m60_c00018{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);}
.mda_c00018{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);}
.m96_c00018{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);}
.mcc_c00018{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m93_c00018{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);}
.m84_c00018{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);}
.m53_c00018{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00018{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);}
.m4d_c00018{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);}
.m97_c00018{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);}
.m46_c00018{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);}
.m15_c00018{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m21_c00018{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m48_c00018{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00018{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);}
.m27_c00018{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m20_c00018{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);}
.m1d_c00018{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);}
.m62_c00018{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00018{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);}
.m0_c00018{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m35_c00018{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m87_c00018{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);}
.m66_c00018{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m74_c00018{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);}
.m17_c00018{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);}
.m18_c00018{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00018{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00018{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);}
.m3d_c00018{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00018{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);}
.m5_c00018{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00018{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00018{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00018{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m54_c00018{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m30_c00018{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m33_c00018{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00018{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m52_c00018{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00018{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md1_c00018{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00018{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);}
.m1f_c00018{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);}
.m58_c00018{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m36_c00018{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);}
.md3_c00018{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c00018{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m55_c00018{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00018{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);}
.m12_c00018{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00018{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);}
.mdb_c00018{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md4_c00018{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);}
.m32_c00018{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m75_c00018{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00018{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);}
.ma7_c00018{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00018{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m37_c00018{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m79_c00018{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00018{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00018{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00018{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.md6_c00018{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00018{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_c00018{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00018{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m82_c00018{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m41_c00018{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m19_c00018{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m61_c00018{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00018{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00018{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m29_c00018{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m69_c00018{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);}
.m5d_c00018{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);}
.me1_c00018{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00018{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00018{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3_c00018{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m92_c00018{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00018{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m40_c00018{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.maa_c00018{transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);}
.m78_c00018{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.ma_c00018{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.v2_c00018{vertical-align:3.480000px;}
.v1_c00018{vertical-align:10.320000px;}
.v3_c00018{vertical-align:13.800000px;}
.v4_c00018{vertical-align:17.280000px;}
.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;}
}
.ws2_c00018{word-spacing:-26.568000px;}
.ws1_c00018{word-spacing:-20.038260px;}
.ws3_c00018{word-spacing:-12.191400px;}
.ws0_c00018{word-spacing:-3.259680px;}
.ws4_c00018{word-spacing:0.000000px;}
.fc0_c00018{color:transparent;}
.fs0_c00018{font-size:3.456000px;}
.fs2_c00018{font-size:6.000000px;}
.fs9_c00018{font-size:6.900000px;}
.fs19_c00018{font-size:10.380000px;}
.fs3_c00018{font-size:13.800000px;}
.fs1_c00018{font-size:17.280000px;}
.fs4_c00018{font-size:20.760000px;}
.fs1c_c00018{font-size:24.180000px;}
.fs1e_c00018{font-size:27.660000px;}
.fs11_c00018{font-size:31.080000px;}
.fsf_c00018{font-size:34.560000px;}
.fs14_c00018{font-size:38.040000px;}
.fs1d_c00018{font-size:41.460000px;}
.fs18_c00018{font-size:44.940000px;}
.fs15_c00018{font-size:48.360000px;}
.fs12_c00018{font-size:51.840000px;}
.fs6_c00018{font-size:55.320000px;}
.fse_c00018{font-size:58.740000px;}
.fs10_c00018{font-size:62.220000px;}
.fs8_c00018{font-size:65.640000px;}
.fs7_c00018{font-size:69.120000px;}
.fs5_c00018{font-size:72.600000px;}
.fs13_c00018{font-size:76.020000px;}
.fsd_c00018{font-size:79.500000px;}
.fs16_c00018{font-size:82.920000px;}
.fsc_c00018{font-size:86.400000px;}
.fs17_c00018{font-size:89.880000px;}
.fs1b_c00018{font-size:93.300000px;}
.fs1a_c00018{font-size:100.200000px;}
.fsb_c00018{font-size:103.680000px;}
.fsa_c00018{font-size:107.160000px;}
.y0_c00018{bottom:0.000000px;}
.y113_c00018{bottom:691.200000px;}
.y114_c00018{bottom:692.925000px;}
.y112_c00018{bottom:696.390000px;}
.y111_c00018{bottom:699.840000px;}
.y110_c00018{bottom:705.030000px;}
.y10a_c00018{bottom:711.075000px;}
.y10f_c00018{bottom:711.930000px;}
.y10b_c00018{bottom:712.800000px;}
.y10e_c00018{bottom:713.670000px;}
.y10d_c00018{bottom:714.525000px;}
.y108_c00018{bottom:715.395000px;}
.y10c_c00018{bottom:716.250000px;}
.y105_c00018{bottom:717.120000px;}
.y107_c00018{bottom:721.440000px;}
.y106_c00018{bottom:722.310000px;}
.y109_c00018{bottom:733.530000px;}
.y104_c00018{bottom:735.270000px;}
.yfe_c00018{bottom:737.850000px;}
.y101_c00018{bottom:738.720000px;}
.y103_c00018{bottom:739.590000px;}
.y102_c00018{bottom:740.445000px;}
.yff_c00018{bottom:741.315000px;}
.y100_c00018{bottom:742.170000px;}
.yfc_c00018{bottom:743.910000px;}
.yfd_c00018{bottom:744.765000px;}
.yf8_c00018{bottom:756.000000px;}
.yf2_c00018{bottom:757.725000px;}
.yf6_c00018{bottom:758.595000px;}
.yfa_c00018{bottom:759.450000px;}
.yf7_c00018{bottom:761.190000px;}
.yf9_c00018{bottom:762.045000px;}
.yf5_c00018{bottom:762.915000px;}
.yf4_c00018{bottom:763.770000px;}
.yfb_c00018{bottom:764.640000px;}
.yf3_c00018{bottom:770.685000px;}
.yf0_c00018{bottom:775.005000px;}
.yef_c00018{bottom:775.875000px;}
.yed_c00018{bottom:776.730000px;}
.yec_c00018{bottom:777.600000px;}
.yf1_c00018{bottom:779.325000px;}
.yee_c00018{bottom:781.050000px;}
.yeb_c00018{bottom:783.645000px;}
.yea_c00018{bottom:794.880000px;}
.ye5_c00018{bottom:795.750000px;}
.ye8_c00018{bottom:796.605000px;}
.ye4_c00018{bottom:798.330000px;}
.ye7_c00018{bottom:799.200000px;}
.ye9_c00018{bottom:800.070000px;}
.ye6_c00018{bottom:800.925000px;}
.ye3_c00018{bottom:814.755000px;}
.ye1_c00018{bottom:815.610000px;}
.yde_c00018{bottom:816.480000px;}
.ydd_c00018{bottom:817.350000px;}
.ye2_c00018{bottom:818.205000px;}
.ydf_c00018{bottom:819.930000px;}
.ye0_c00018{bottom:820.800000px;}
.ydc_c00018{bottom:821.670000px;}
.yd7_c00018{bottom:836.355000px;}
.yda_c00018{bottom:837.210000px;}
.y9_c00018{bottom:839.805000px;}
.yd9_c00018{bottom:841.530000px;}
.yd8_c00018{bottom:842.400000px;}
.ydb_c00018{bottom:851.910000px;}
.yd5_c00018{bottom:855.360000px;}
.yd2_c00018{bottom:857.955000px;}
.yd3_c00018{bottom:858.810000px;}
.yd6_c00018{bottom:859.680000px;}
.yd4_c00018{bottom:862.275000px;}
.yd1_c00018{bottom:863.130000px;}
.yd0_c00018{bottom:864.000000px;}
.ycd_c00018{bottom:876.960000px;}
.ycc_c00018{bottom:877.830000px;}
.yca_c00018{bottom:879.555000px;}
.yce_c00018{bottom:882.150000px;}
.ycf_c00018{bottom:883.005000px;}
.ycb_c00018{bottom:883.875000px;}
.y11c_c00018{bottom:887.325000px;}
.y11b_c00018{bottom:890.790000px;}
.yc5_c00018{bottom:897.690000px;}
.yc7_c00018{bottom:898.560000px;}
.yc4_c00018{bottom:899.430000px;}
.yc3_c00018{bottom:900.285000px;}
.yc6_c00018{bottom:902.010000px;}
.yc8_c00018{bottom:902.880000px;}
.yc2_c00018{bottom:903.750000px;}
.yc9_c00018{bottom:904.605000px;}
.yc1_c00018{bottom:910.650000px;}
.y11a_c00018{bottom:917.565000px;}
.ybb_c00018{bottom:920.160000px;}
.ybc_c00018{bottom:923.610000px;}
.yba_c00018{bottom:924.480000px;}
.ybf_c00018{bottom:926.205000px;}
.ybd_c00018{bottom:927.930000px;}
.yc0_c00018{bottom:933.120000px;}
.ybe_c00018{bottom:936.570000px;}
.y117_c00018{bottom:937.440000px;}
.yb4_c00018{bottom:938.310000px;}
.yb7_c00018{bottom:939.165000px;}
.yb8_c00018{bottom:940.035000px;}
.yb3_c00018{bottom:940.890000px;}
.yb5_c00018{bottom:942.630000px;}
.yb9_c00018{bottom:943.485000px;}
.yb6_c00018{bottom:944.355000px;}
.yb2_c00018{bottom:945.210000px;}
.yaf_c00018{bottom:958.170000px;}
.yae_c00018{bottom:959.040000px;}
.yad_c00018{bottom:960.765000px;}
.yaa_c00018{bottom:961.635000px;}
.yb0_c00018{bottom:963.360000px;}
.yac_c00018{bottom:964.230000px;}
.yab_c00018{bottom:965.085000px;}
.yb1_c00018{bottom:965.955000px;}
.ya9_c00018{bottom:976.320000px;}
.ya5_c00018{bottom:978.915000px;}
.ya7_c00018{bottom:979.770000px;}
.ya6_c00018{bottom:980.640000px;}
.ya2_c00018{bottom:981.510000px;}
.ya3_c00018{bottom:982.365000px;}
.ya8_c00018{bottom:984.090000px;}
.ya1_c00018{bottom:984.960000px;}
.ya4_c00018{bottom:985.830000px;}
.ya0_c00018{bottom:986.685000px;}
.y9b_c00018{bottom:999.645000px;}
.y9c_c00018{bottom:1000.515000px;}
.y9f_c00018{bottom:1001.370000px;}
.y9d_c00018{bottom:1002.240000px;}
.y9e_c00018{bottom:1003.965000px;}
.y9a_c00018{bottom:1005.690000px;}
.y93_c00018{bottom:1015.200000px;}
.y98_c00018{bottom:1016.070000px;}
.y97_c00018{bottom:1017.795000px;}
.y94_c00018{bottom:1018.650000px;}
.y96_c00018{bottom:1021.245000px;}
.y95_c00018{bottom:1023.840000px;}
.y92_c00018{bottom:1025.565000px;}
.y99_c00018{bottom:1026.435000px;}
.y90_c00018{bottom:1040.250000px;}
.y8f_c00018{bottom:1041.120000px;}
.y8b_c00018{bottom:1041.990000px;}
.y8e_c00018{bottom:1042.845000px;}
.y8d_c00018{bottom:1043.715000px;}
.y91_c00018{bottom:1044.570000px;}
.y8c_c00018{bottom:1045.440000px;}
.y118_c00018{bottom:1049.760000px;}
.y119_c00018{bottom:1054.950000px;}
.y88_c00018{bottom:1060.995000px;}
.y83_c00018{bottom:1061.850000px;}
.y8a_c00018{bottom:1062.720000px;}
.y85_c00018{bottom:1063.590000px;}
.y87_c00018{bottom:1064.445000px;}
.y84_c00018{bottom:1065.315000px;}
.y89_c00018{bottom:1066.170000px;}
.y86_c00018{bottom:1067.040000px;}
.y7e_c00018{bottom:1080.000000px;}
.y7f_c00018{bottom:1080.870000px;}
.y80_c00018{bottom:1081.725000px;}
.y81_c00018{bottom:1082.595000px;}
.y7d_c00018{bottom:1083.450000px;}
.y82_c00018{bottom:1085.190000px;}
.y7c_c00018{bottom:1086.045000px;}
.y7b_c00018{bottom:1086.915000px;}
.y5_c00018{bottom:1093.830000px;}
.y79_c00018{bottom:1100.730000px;}
.y74_c00018{bottom:1101.600000px;}
.y7a_c00018{bottom:1103.325000px;}
.y76_c00018{bottom:1104.195000px;}
.y73_c00018{bottom:1105.050000px;}
.y77_c00018{bottom:1105.920000px;}
.y78_c00018{bottom:1106.790000px;}
.y75_c00018{bottom:1107.645000px;}
.y72_c00018{bottom:1108.515000px;}
.y6f_c00018{bottom:1120.605000px;}
.y6d_c00018{bottom:1121.475000px;}
.y6a_c00018{bottom:1122.330000px;}
.y68_c00018{bottom:1123.200000px;}
.y69_c00018{bottom:1124.070000px;}
.y71_c00018{bottom:1125.795000px;}
.y70_c00018{bottom:1126.650000px;}
.y6e_c00018{bottom:1127.520000px;}
.y6b_c00018{bottom:1128.390000px;}
.y6c_c00018{bottom:1129.245000px;}
.y116_c00018{bottom:1136.160000px;}
.y63_c00018{bottom:1142.205000px;}
.y64_c00018{bottom:1143.075000px;}
.y65_c00018{bottom:1143.930000px;}
.y66_c00018{bottom:1145.670000px;}
.y67_c00018{bottom:1146.525000px;}
.y62_c00018{bottom:1147.395000px;}
.y61_c00018{bottom:1148.250000px;}
.y5d_c00018{bottom:1161.210000px;}
.y5c_c00018{bottom:1162.080000px;}
.y59_c00018{bottom:1163.805000px;}
.y5f_c00018{bottom:1165.530000px;}
.y5e_c00018{bottom:1166.400000px;}
.y5a_c00018{bottom:1167.270000px;}
.y58_c00018{bottom:1168.125000px;}
.y5b_c00018{bottom:1168.995000px;}
.y60_c00018{bottom:1174.170000px;}
.y57_c00018{bottom:1181.955000px;}
.y55_c00018{bottom:1183.680000px;}
.y54_c00018{bottom:1184.550000px;}
.y56_c00018{bottom:1188.000000px;}
.y51_c00018{bottom:1188.870000px;}
.y52_c00018{bottom:1189.725000px;}
.y53_c00018{bottom:1190.595000px;}
.y4d_c00018{bottom:1201.830000px;}
.y4f_c00018{bottom:1205.280000px;}
.y4b_c00018{bottom:1206.150000px;}
.y50_c00018{bottom:1207.875000px;}
.y4c_c00018{bottom:1208.730000px;}
.y4e_c00018{bottom:1209.600000px;}
.y4a_c00018{bottom:1217.370000px;}
.y41_c00018{bottom:1222.560000px;}
.y43_c00018{bottom:1223.430000px;}
.y42_c00018{bottom:1224.285000px;}
.y44_c00018{bottom:1225.155000px;}
.y47_c00018{bottom:1226.010000px;}
.y49_c00018{bottom:1226.880000px;}
.y46_c00018{bottom:1227.750000px;}
.y48_c00018{bottom:1228.605000px;}
.y45_c00018{bottom:1229.475000px;}
.y40_c00018{bottom:1230.330000px;}
.y3d_c00018{bottom:1244.160000px;}
.y3c_c00018{bottom:1245.030000px;}
.y3a_c00018{bottom:1246.755000px;}
.y38_c00018{bottom:1247.610000px;}
.y3e_c00018{bottom:1248.480000px;}
.y3b_c00018{bottom:1249.350000px;}
.y39_c00018{bottom:1250.205000px;}
.y3f_c00018{bottom:1261.440000px;}
.y31_c00018{bottom:1264.890000px;}
.y36_c00018{bottom:1265.760000px;}
.y32_c00018{bottom:1268.355000px;}
.y37_c00018{bottom:1269.210000px;}
.y33_c00018{bottom:1270.080000px;}
.y35_c00018{bottom:1270.950000px;}
.y34_c00018{bottom:1271.805000px;}
.y30_c00018{bottom:1283.910000px;}
.y3_c00018{bottom:1285.635000px;}
.y2f_c00018{bottom:1286.490000px;}
.y2d_c00018{bottom:1287.360000px;}
.y4_c00018{bottom:1288.230000px;}
.y2e_c00018{bottom:1289.085000px;}
.y2c_c00018{bottom:1289.955000px;}
.y2b_c00018{bottom:1290.810000px;}
.y28_c00018{bottom:1304.640000px;}
.y21_c00018{bottom:1305.510000px;}
.y26_c00018{bottom:1306.365000px;}
.y25_c00018{bottom:1307.235000px;}
.y24_c00018{bottom:1308.090000px;}
.y29_c00018{bottom:1308.960000px;}
.y27_c00018{bottom:1309.830000px;}
.y22_c00018{bottom:1310.685000px;}
.y23_c00018{bottom:1311.555000px;}
.y115_c00018{bottom:1314.150000px;}
.y2a_c00018{bottom:1320.195000px;}
.y1f_c00018{bottom:1324.515000px;}
.y20_c00018{bottom:1325.370000px;}
.y1d_c00018{bottom:1326.240000px;}
.y1a_c00018{bottom:1327.110000px;}
.y1c_c00018{bottom:1327.965000px;}
.y19_c00018{bottom:1328.835000px;}
.y18_c00018{bottom:1329.690000px;}
.y1b_c00018{bottom:1330.560000px;}
.y17_c00018{bottom:1331.430000px;}
.y1e_c00018{bottom:1332.285000px;}
.y15_c00018{bottom:1346.115000px;}
.y11_c00018{bottom:1346.970000px;}
.y16_c00018{bottom:1348.710000px;}
.y12_c00018{bottom:1350.435000px;}
.y13_c00018{bottom:1351.290000px;}
.y14_c00018{bottom:1352.160000px;}
.yb_c00018{bottom:1365.990000px;}
.yc_c00018{bottom:1366.845000px;}
.y10_c00018{bottom:1369.440000px;}
.yf_c00018{bottom:1371.165000px;}
.ye_c00018{bottom:1372.035000px;}
.yd_c00018{bottom:1372.890000px;}
.ya_c00018{bottom:1380.675000px;}
.y2_c00018{bottom:1397.955000px;}
.y8_c00018{bottom:1398.810000px;}
.y1_c00018{bottom:1399.680000px;}
.y7_c00018{bottom:1434.240000px;}
.y6_c00018{bottom:1436.835000px;}
.h2_c00018{height:3.110063px;}
.h4_c00018{height:5.399414px;}
.hb_c00018{height:6.209326px;}
.h1d_c00018{height:9.340986px;}
.h5_c00018{height:12.418652px;}
.h3_c00018{height:15.550313px;}
.h6_c00018{height:18.681973px;}
.h20_c00018{height:21.759639px;}
.h22_c00018{height:24.891299px;}
.h13_c00018{height:27.968965px;}
.h11_c00018{height:31.100625px;}
.h17_c00018{height:34.232285px;}
.h21_c00018{height:37.309951px;}
.h1c_c00018{height:40.441611px;}
.h18_c00018{height:43.519277px;}
.h15_c00018{height:46.650937px;}
.h8_c00018{height:49.782598px;}
.h10_c00018{height:52.860264px;}
.h12_c00018{height:55.991924px;}
.ha_c00018{height:59.069590px;}
.h9_c00018{height:62.201250px;}
.h23_c00018{height:63.930938px;}
.h7_c00018{height:65.332910px;}
.h14_c00018{height:66.311924px;}
.h1b_c00018{height:66.660264px;}
.h16_c00018{height:68.410576px;}
.hf_c00018{height:71.542236px;}
.h19_c00018{height:74.619902px;}
.he_c00018{height:77.751563px;}
.h1a_c00018{height:80.883223px;}
.h1f_c00018{height:83.960889px;}
.h1e_c00018{height:90.170215px;}
.hd_c00018{height:93.301875px;}
.hc_c00018{height:96.433535px;}
.h0_c00018{height:1515.450000px;}
.h1_c00018{height:1515.750000px;}
.w1_c00018{width:1065.000000px;}
.w0_c00018{width:1065.315000px;}
.x0_c00018{left:0.000000px;}
.x3_c00018{left:100.230000px;}
.x4_c00018{left:108.870000px;}
.x6_c00018{left:119.235000px;}
.x5_c00018{left:120.960000px;}
.x1_c00018{left:136.515000px;}
.x2_c00018{left:143.430000px;}
.xf_c00018{left:170.205000px;}
.xb1_c00018{left:191.805000px;}
.x66_c00018{left:194.400000px;}
.x6c_c00018{left:196.995000px;}
.x71_c00018{left:200.445000px;}
.xd0_c00018{left:203.040000px;}
.x5e_c00018{left:205.635000px;}
.x33_c00018{left:207.360000px;}
.x1b_c00018{left:209.085000px;}
.x43_c00018{left:210.810000px;}
.x10_c00018{left:215.130000px;}
.xbf_c00018{left:221.190000px;}
.xd5_c00018{left:222.915000px;}
.x11_c00018{left:228.090000px;}
.xa9_c00018{left:231.555000px;}
.x44_c00018{left:234.150000px;}
.x89_c00018{left:236.730000px;}
.x34_c00018{left:239.325000px;}
.x93_c00018{left:241.050000px;}
.x28_c00018{left:243.645000px;}
.x72_c00018{left:247.965000px;}
.xb9_c00018{left:252.285000px;}
.xd6_c00018{left:254.010000px;}
.xb2_c00018{left:257.475000px;}
.x45_c00018{left:259.200000px;}
.x98_c00018{left:260.925000px;}
.x7b_c00018{left:262.650000px;}
.x5f_c00018{left:267.840000px;}
.x9_c00018{left:272.160000px;}
.x67_c00018{left:274.755000px;}
.xc5_c00018{left:276.480000px;}
.xdb_c00018{left:278.205000px;}
.x1c_c00018{left:284.250000px;}
.x7c_c00018{left:285.990000px;}
.xc0_c00018{left:288.570000px;}
.x35_c00018{left:290.310000px;}
.x94_c00018{left:294.630000px;}
.x59_c00018{left:296.355000px;}
.xa_c00018{left:298.080000px;}
.xd1_c00018{left:300.675000px;}
.x1d_c00018{left:303.270000px;}
.x5a_c00018{left:306.720000px;}
.xbb_c00018{left:309.315000px;}
.xe5_c00018{left:312.765000px;}
.xb3_c00018{left:315.360000px;}
.x29_c00018{left:322.275000px;}
.x8a_c00018{left:324.000000px;}
.x73_c00018{left:326.595000px;}
.x4f_c00018{left:328.320000px;}
.xdc_c00018{left:330.045000px;}
.xc6_c00018{left:332.640000px;}
.xaa_c00018{left:335.235000px;}
.xa6_c00018{left:338.685000px;}
.xd7_c00018{left:343.875000px;}
.x83_c00018{left:345.600000px;}
.xb_c00018{left:348.195000px;}
.x99_c00018{left:349.920000px;}
.xdd_c00018{left:353.370000px;}
.x7d_c00018{left:357.690000px;}
.x36_c00018{left:359.430000px;}
.x8b_c00018{left:361.155000px;}
.x1e_c00018{left:362.880000px;}
.xd8_c00018{left:364.605000px;}
.x2a_c00018{left:366.330000px;}
.x1f_c00018{left:369.795000px;}
.xce_c00018{left:371.520000px;}
.xc_c00018{left:374.115000px;}
.x12_c00018{left:375.840000px;}
.x60_c00018{left:378.435000px;}
.xcc_c00018{left:384.480000px;}
.x50_c00018{left:387.930000px;}
.x46_c00018{left:389.670000px;}
.x2b_c00018{left:393.990000px;}
.x20_c00018{left:395.715000px;}
.x8c_c00018{left:397.440000px;}
.x9a_c00018{left:399.165000px;}
.xb4_c00018{left:404.355000px;}
.xc1_c00018{left:406.950000px;}
.x9f_c00018{left:410.400000px;}
.x7e_c00018{left:412.995000px;}
.x2c_c00018{left:418.170000px;}
.x13_c00018{left:420.765000px;}
.x51_c00018{left:424.230000px;}
.x37_c00018{left:426.810000px;}
.x84_c00018{left:431.130000px;}
.xab_c00018{left:432.870000px;}
.x2d_c00018{left:434.595000px;}
.x85_c00018{left:438.045000px;}
.x6d_c00018{left:444.090000px;}
.xd2_c00018{left:445.830000px;}
.x47_c00018{left:447.555000px;}
.x74_c00018{left:450.150000px;}
.x8d_c00018{left:454.470000px;}
.x21_c00018{left:457.050000px;}
.x61_c00018{left:461.370000px;}
.x52_c00018{left:463.110000px;}
.x48_c00018{left:465.690000px;}
.xe6_c00018{left:473.475000px;}
.xde_c00018{left:476.070000px;}
.x53_c00018{left:477.795000px;}
.xa0_c00018{left:479.520000px;}
.x14_c00018{left:481.245000px;}
.x5b_c00018{left:483.840000px;}
.xa7_c00018{left:486.435000px;}
.xa2_c00018{left:488.160000px;}
.x5c_c00018{left:497.670000px;}
.xac_c00018{left:499.395000px;}
.x38_c00018{left:501.990000px;}
.x8e_c00018{left:504.570000px;}
.xc7_c00018{left:507.165000px;}
.x7f_c00018{left:510.630000px;}
.x49_c00018{left:512.355000px;}
.xad_c00018{left:514.080000px;}
.xa8_c00018{left:519.270000px;}
.x22_c00018{left:520.995000px;}
.xd_c00018{left:522.720000px;}
.xb5_c00018{left:534.810000px;}
.x2e_c00018{left:537.405000px;}
.x75_c00018{left:539.130000px;}
.x86_c00018{left:541.725000px;}
.x62_c00018{left:544.320000px;}
.x2f_c00018{left:546.045000px;}
.x54_c00018{left:549.510000px;}
.x39_c00018{left:553.830000px;}
.x23_c00018{left:557.280000px;}
.xa3_c00018{left:559.005000px;}
.x15_c00018{left:562.470000px;}
.xcb_c00018{left:569.370000px;}
.xc8_c00018{left:571.110000px;}
.xdf_c00018{left:573.690000px;}
.x95_c00018{left:575.430000px;}
.x3a_c00018{left:578.010000px;}
.x30_c00018{left:580.605000px;}
.xbc_c00018{left:582.330000px;}
.x4a_c00018{left:584.070000px;}
.xc9_c00018{left:586.650000px;}
.xba_c00018{left:589.245000px;}
.xbd_c00018{left:591.840000px;}
.xa1_c00018{left:595.290000px;}
.x68_c00018{left:597.030000px;}
.x55_c00018{left:601.350000px;}
.xae_c00018{left:604.800000px;}
.x63_c00018{left:606.525000px;}
.xe0_c00018{left:609.120000px;}
.x76_c00018{left:610.845000px;}
.x3b_c00018{left:613.440000px;}
.x31_c00018{left:617.760000px;}
.x16_c00018{left:622.080000px;}
.x9b_c00018{left:628.995000px;}
.x24_c00018{left:630.720000px;}
.xc2_c00018{left:634.170000px;}
.x8f_c00018{left:635.910000px;}
.xe1_c00018{left:640.230000px;}
.x6e_c00018{left:641.955000px;}
.xcd_c00018{left:648.000000px;}
.x3c_c00018{left:650.595000px;}
.x87_c00018{left:654.045000px;}
.x25_c00018{left:656.640000px;}
.x80_c00018{left:658.365000px;}
.x90_c00018{left:660.960000px;}
.xe_c00018{left:665.280000px;}
.x4b_c00018{left:668.730000px;}
.x77_c00018{left:670.470000px;}
.x69_c00018{left:679.965000px;}
.x5d_c00018{left:683.430000px;}
.x4c_c00018{left:687.750000px;}
.xbe_c00018{left:689.475000px;}
.x96_c00018{left:691.200000px;}
.x3d_c00018{left:694.650000px;}
.x64_c00018{left:697.245000px;}
.xe2_c00018{left:699.840000px;}
.x17_c00018{left:701.565000px;}
.x32_c00018{left:707.610000px;}
.xd3_c00018{left:710.205000px;}
.x9c_c00018{left:711.930000px;}
.x6f_c00018{left:713.670000px;}
.x4d_c00018{left:717.990000px;}
.xb6_c00018{left:721.440000px;}
.xe7_c00018{left:728.355000px;}
.x56_c00018{left:730.080000px;}
.xaf_c00018{left:734.400000px;}
.x65_c00018{left:736.125000px;}
.x3e_c00018{left:737.850000px;}
.xa4_c00018{left:739.590000px;}
.xd4_c00018{left:744.765000px;}
.x26_c00018{left:751.680000px;}
.xe3_c00018{left:753.405000px;}
.x57_c00018{left:755.130000px;}
.xb7_c00018{left:756.870000px;}
.x6a_c00018{left:760.320000px;}
.x4e_c00018{left:763.770000px;}
.x91_c00018{left:766.365000px;}
.x70_c00018{left:768.960000px;}
.x97_c00018{left:773.280000px;}
.x18_c00018{left:775.875000px;}
.xc3_c00018{left:778.470000px;}
.x78_c00018{left:780.195000px;}
.x3f_c00018{left:781.920000px;}
.x81_c00018{left:784.515000px;}
.xca_c00018{left:786.240000px;}
.x40_c00018{left:794.880000px;}
.xc4_c00018{left:796.605000px;}
.xa5_c00018{left:800.070000px;}
.x79_c00018{left:801.795000px;}
.x6b_c00018{left:803.520000px;}
.xd9_c00018{left:805.245000px;}
.x7_c00018{left:807.840000px;}
.x58_c00018{left:812.160000px;}
.x9d_c00018{left:813.885000px;}
.x19_c00018{left:816.480000px;}
.xb0_c00018{left:819.075000px;}
.x27_c00018{left:820.800000px;}
.x82_c00018{left:822.525000px;}
.x8_c00018{left:826.845000px;}
.x9e_c00018{left:831.165000px;}
.x1a_c00018{left:837.210000px;}
.xb8_c00018{left:838.950000px;}
.x92_c00018{left:842.400000px;}
.xcf_c00018{left:851.040000px;}
.xe4_c00018{left:852.765000px;}
.x88_c00018{left:854.490000px;}
.xda_c00018{left:856.230000px;}
.x41_c00018{left:859.680000px;}
.x7a_c00018{left:864.000000px;}
.x42_c00018{left:879.555000px;}
.xe9_c00018{left:884.730000px;}
.xed_c00018{left:902.010000px;}
.xee_c00018{left:912.390000px;}
.xea_c00018{left:921.885000px;}
.xe8_c00018{left:935.715000px;}
.xef_c00018{left:968.550000px;}
.xf0_c00018{left:971.130000px;}
.xeb_c00018{left:1025.565000px;}
.xec_c00018{left:1040.250000px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.v2_c00018{vertical-align:3.093333pt;}
.v1_c00018{vertical-align:9.173333pt;}
.v3_c00018{vertical-align:12.266667pt;}
.v4_c00018{vertical-align:15.360000pt;}
.ls0_c00018{letter-spacing:0.000000pt;}
.ws2_c00018{word-spacing:-23.616000pt;}
.ws1_c00018{word-spacing:-17.811787pt;}
.ws3_c00018{word-spacing:-10.836800pt;}
.ws0_c00018{word-spacing:-2.897493pt;}
.ws4_c00018{word-spacing:0.000000pt;}
.fs0_c00018{font-size:3.072000pt;}
.fs2_c00018{font-size:5.333333pt;}
.fs9_c00018{font-size:6.133333pt;}
.fs19_c00018{font-size:9.226667pt;}
.fs3_c00018{font-size:12.266667pt;}
.fs1_c00018{font-size:15.360000pt;}
.fs4_c00018{font-size:18.453333pt;}
.fs1c_c00018{font-size:21.493333pt;}
.fs1e_c00018{font-size:24.586667pt;}
.fs11_c00018{font-size:27.626667pt;}
.fsf_c00018{font-size:30.720000pt;}
.fs14_c00018{font-size:33.813333pt;}
.fs1d_c00018{font-size:36.853333pt;}
.fs18_c00018{font-size:39.946667pt;}
.fs15_c00018{font-size:42.986667pt;}
.fs12_c00018{font-size:46.080000pt;}
.fs6_c00018{font-size:49.173333pt;}
.fse_c00018{font-size:52.213333pt;}
.fs10_c00018{font-size:55.306667pt;}
.fs8_c00018{font-size:58.346667pt;}
.fs7_c00018{font-size:61.440000pt;}
.fs5_c00018{font-size:64.533333pt;}
.fs13_c00018{font-size:67.573333pt;}
.fsd_c00018{font-size:70.666667pt;}
.fs16_c00018{font-size:73.706667pt;}
.fsc_c00018{font-size:76.800000pt;}
.fs17_c00018{font-size:79.893333pt;}
.fs1b_c00018{font-size:82.933333pt;}
.fs1a_c00018{font-size:89.066667pt;}
.fsb_c00018{font-size:92.160000pt;}
.fsa_c00018{font-size:95.253333pt;}
.y0_c00018{bottom:0.000000pt;}
.y113_c00018{bottom:614.400000pt;}
.y114_c00018{bottom:615.933333pt;}
.y112_c00018{bottom:619.013333pt;}
.y111_c00018{bottom:622.080000pt;}
.y110_c00018{bottom:626.693333pt;}
.y10a_c00018{bottom:632.066667pt;}
.y10f_c00018{bottom:632.826667pt;}
.y10b_c00018{bottom:633.600000pt;}
.y10e_c00018{bottom:634.373333pt;}
.y10d_c00018{bottom:635.133333pt;}
.y108_c00018{bottom:635.906667pt;}
.y10c_c00018{bottom:636.666667pt;}
.y105_c00018{bottom:637.440000pt;}
.y107_c00018{bottom:641.280000pt;}
.y106_c00018{bottom:642.053333pt;}
.y109_c00018{bottom:652.026667pt;}
.y104_c00018{bottom:653.573333pt;}
.yfe_c00018{bottom:655.866667pt;}
.y101_c00018{bottom:656.640000pt;}
.y103_c00018{bottom:657.413333pt;}
.y102_c00018{bottom:658.173333pt;}
.yff_c00018{bottom:658.946667pt;}
.y100_c00018{bottom:659.706667pt;}
.yfc_c00018{bottom:661.253333pt;}
.yfd_c00018{bottom:662.013333pt;}
.yf8_c00018{bottom:672.000000pt;}
.yf2_c00018{bottom:673.533333pt;}
.yf6_c00018{bottom:674.306667pt;}
.yfa_c00018{bottom:675.066667pt;}
.yf7_c00018{bottom:676.613333pt;}
.yf9_c00018{bottom:677.373333pt;}
.yf5_c00018{bottom:678.146667pt;}
.yf4_c00018{bottom:678.906667pt;}
.yfb_c00018{bottom:679.680000pt;}
.yf3_c00018{bottom:685.053333pt;}
.yf0_c00018{bottom:688.893333pt;}
.yef_c00018{bottom:689.666667pt;}
.yed_c00018{bottom:690.426667pt;}
.yec_c00018{bottom:691.200000pt;}
.yf1_c00018{bottom:692.733333pt;}
.yee_c00018{bottom:694.266667pt;}
.yeb_c00018{bottom:696.573333pt;}
.yea_c00018{bottom:706.560000pt;}
.ye5_c00018{bottom:707.333333pt;}
.ye8_c00018{bottom:708.093333pt;}
.ye4_c00018{bottom:709.626667pt;}
.ye7_c00018{bottom:710.400000pt;}
.ye9_c00018{bottom:711.173333pt;}
.ye6_c00018{bottom:711.933333pt;}
.ye3_c00018{bottom:724.226667pt;}
.ye1_c00018{bottom:724.986667pt;}
.yde_c00018{bottom:725.760000pt;}
.ydd_c00018{bottom:726.533333pt;}
.ye2_c00018{bottom:727.293333pt;}
.ydf_c00018{bottom:728.826667pt;}
.ye0_c00018{bottom:729.600000pt;}
.ydc_c00018{bottom:730.373333pt;}
.yd7_c00018{bottom:743.426667pt;}
.yda_c00018{bottom:744.186667pt;}
.y9_c00018{bottom:746.493333pt;}
.yd9_c00018{bottom:748.026667pt;}
.yd8_c00018{bottom:748.800000pt;}
.ydb_c00018{bottom:757.253333pt;}
.yd5_c00018{bottom:760.320000pt;}
.yd2_c00018{bottom:762.626667pt;}
.yd3_c00018{bottom:763.386667pt;}
.yd6_c00018{bottom:764.160000pt;}
.yd4_c00018{bottom:766.466667pt;}
.yd1_c00018{bottom:767.226667pt;}
.yd0_c00018{bottom:768.000000pt;}
.ycd_c00018{bottom:779.520000pt;}
.ycc_c00018{bottom:780.293333pt;}
.yca_c00018{bottom:781.826667pt;}
.yce_c00018{bottom:784.133333pt;}
.ycf_c00018{bottom:784.893333pt;}
.ycb_c00018{bottom:785.666667pt;}
.y11c_c00018{bottom:788.733333pt;}
.y11b_c00018{bottom:791.813333pt;}
.yc5_c00018{bottom:797.946667pt;}
.yc7_c00018{bottom:798.720000pt;}
.yc4_c00018{bottom:799.493333pt;}
.yc3_c00018{bottom:800.253333pt;}
.yc6_c00018{bottom:801.786667pt;}
.yc8_c00018{bottom:802.560000pt;}
.yc2_c00018{bottom:803.333333pt;}
.yc9_c00018{bottom:804.093333pt;}
.yc1_c00018{bottom:809.466667pt;}
.y11a_c00018{bottom:815.613333pt;}
.ybb_c00018{bottom:817.920000pt;}
.ybc_c00018{bottom:820.986667pt;}
.yba_c00018{bottom:821.760000pt;}
.ybf_c00018{bottom:823.293333pt;}
.ybd_c00018{bottom:824.826667pt;}
.yc0_c00018{bottom:829.440000pt;}
.ybe_c00018{bottom:832.506667pt;}
.y117_c00018{bottom:833.280000pt;}
.yb4_c00018{bottom:834.053333pt;}
.yb7_c00018{bottom:834.813333pt;}
.yb8_c00018{bottom:835.586667pt;}
.yb3_c00018{bottom:836.346667pt;}
.yb5_c00018{bottom:837.893333pt;}
.yb9_c00018{bottom:838.653333pt;}
.yb6_c00018{bottom:839.426667pt;}
.yb2_c00018{bottom:840.186667pt;}
.yaf_c00018{bottom:851.706667pt;}
.yae_c00018{bottom:852.480000pt;}
.yad_c00018{bottom:854.013333pt;}
.yaa_c00018{bottom:854.786667pt;}
.yb0_c00018{bottom:856.320000pt;}
.yac_c00018{bottom:857.093333pt;}
.yab_c00018{bottom:857.853333pt;}
.yb1_c00018{bottom:858.626667pt;}
.ya9_c00018{bottom:867.840000pt;}
.ya5_c00018{bottom:870.146667pt;}
.ya7_c00018{bottom:870.906667pt;}
.ya6_c00018{bottom:871.680000pt;}
.ya2_c00018{bottom:872.453333pt;}
.ya3_c00018{bottom:873.213333pt;}
.ya8_c00018{bottom:874.746667pt;}
.ya1_c00018{bottom:875.520000pt;}
.ya4_c00018{bottom:876.293333pt;}
.ya0_c00018{bottom:877.053333pt;}
.y9b_c00018{bottom:888.573333pt;}
.y9c_c00018{bottom:889.346667pt;}
.y9f_c00018{bottom:890.106667pt;}
.y9d_c00018{bottom:890.880000pt;}
.y9e_c00018{bottom:892.413333pt;}
.y9a_c00018{bottom:893.946667pt;}
.y93_c00018{bottom:902.400000pt;}
.y98_c00018{bottom:903.173333pt;}
.y97_c00018{bottom:904.706667pt;}
.y94_c00018{bottom:905.466667pt;}
.y96_c00018{bottom:907.773333pt;}
.y95_c00018{bottom:910.080000pt;}
.y92_c00018{bottom:911.613333pt;}
.y99_c00018{bottom:912.386667pt;}
.y90_c00018{bottom:924.666667pt;}
.y8f_c00018{bottom:925.440000pt;}
.y8b_c00018{bottom:926.213333pt;}
.y8e_c00018{bottom:926.973333pt;}
.y8d_c00018{bottom:927.746667pt;}
.y91_c00018{bottom:928.506667pt;}
.y8c_c00018{bottom:929.280000pt;}
.y118_c00018{bottom:933.120000pt;}
.y119_c00018{bottom:937.733333pt;}
.y88_c00018{bottom:943.106667pt;}
.y83_c00018{bottom:943.866667pt;}
.y8a_c00018{bottom:944.640000pt;}
.y85_c00018{bottom:945.413333pt;}
.y87_c00018{bottom:946.173333pt;}
.y84_c00018{bottom:946.946667pt;}
.y89_c00018{bottom:947.706667pt;}
.y86_c00018{bottom:948.480000pt;}
.y7e_c00018{bottom:960.000000pt;}
.y7f_c00018{bottom:960.773333pt;}
.y80_c00018{bottom:961.533333pt;}
.y81_c00018{bottom:962.306667pt;}
.y7d_c00018{bottom:963.066667pt;}
.y82_c00018{bottom:964.613333pt;}
.y7c_c00018{bottom:965.373333pt;}
.y7b_c00018{bottom:966.146667pt;}
.y5_c00018{bottom:972.293333pt;}
.y79_c00018{bottom:978.426667pt;}
.y74_c00018{bottom:979.200000pt;}
.y7a_c00018{bottom:980.733333pt;}
.y76_c00018{bottom:981.506667pt;}
.y73_c00018{bottom:982.266667pt;}
.y77_c00018{bottom:983.040000pt;}
.y78_c00018{bottom:983.813333pt;}
.y75_c00018{bottom:984.573333pt;}
.y72_c00018{bottom:985.346667pt;}
.y6f_c00018{bottom:996.093333pt;}
.y6d_c00018{bottom:996.866667pt;}
.y6a_c00018{bottom:997.626667pt;}
.y68_c00018{bottom:998.400000pt;}
.y69_c00018{bottom:999.173333pt;}
.y71_c00018{bottom:1000.706667pt;}
.y70_c00018{bottom:1001.466667pt;}
.y6e_c00018{bottom:1002.240000pt;}
.y6b_c00018{bottom:1003.013333pt;}
.y6c_c00018{bottom:1003.773333pt;}
.y116_c00018{bottom:1009.920000pt;}
.y63_c00018{bottom:1015.293333pt;}
.y64_c00018{bottom:1016.066667pt;}
.y65_c00018{bottom:1016.826667pt;}
.y66_c00018{bottom:1018.373333pt;}
.y67_c00018{bottom:1019.133333pt;}
.y62_c00018{bottom:1019.906667pt;}
.y61_c00018{bottom:1020.666667pt;}
.y5d_c00018{bottom:1032.186667pt;}
.y5c_c00018{bottom:1032.960000pt;}
.y59_c00018{bottom:1034.493333pt;}
.y5f_c00018{bottom:1036.026667pt;}
.y5e_c00018{bottom:1036.800000pt;}
.y5a_c00018{bottom:1037.573333pt;}
.y58_c00018{bottom:1038.333333pt;}
.y5b_c00018{bottom:1039.106667pt;}
.y60_c00018{bottom:1043.706667pt;}
.y57_c00018{bottom:1050.626667pt;}
.y55_c00018{bottom:1052.160000pt;}
.y54_c00018{bottom:1052.933333pt;}
.y56_c00018{bottom:1056.000000pt;}
.y51_c00018{bottom:1056.773333pt;}
.y52_c00018{bottom:1057.533333pt;}
.y53_c00018{bottom:1058.306667pt;}
.y4d_c00018{bottom:1068.293333pt;}
.y4f_c00018{bottom:1071.360000pt;}
.y4b_c00018{bottom:1072.133333pt;}
.y50_c00018{bottom:1073.666667pt;}
.y4c_c00018{bottom:1074.426667pt;}
.y4e_c00018{bottom:1075.200000pt;}
.y4a_c00018{bottom:1082.106667pt;}
.y41_c00018{bottom:1086.720000pt;}
.y43_c00018{bottom:1087.493333pt;}
.y42_c00018{bottom:1088.253333pt;}
.y44_c00018{bottom:1089.026667pt;}
.y47_c00018{bottom:1089.786667pt;}
.y49_c00018{bottom:1090.560000pt;}
.y46_c00018{bottom:1091.333333pt;}
.y48_c00018{bottom:1092.093333pt;}
.y45_c00018{bottom:1092.866667pt;}
.y40_c00018{bottom:1093.626667pt;}
.y3d_c00018{bottom:1105.920000pt;}
.y3c_c00018{bottom:1106.693333pt;}
.y3a_c00018{bottom:1108.226667pt;}
.y38_c00018{bottom:1108.986667pt;}
.y3e_c00018{bottom:1109.760000pt;}
.y3b_c00018{bottom:1110.533333pt;}
.y39_c00018{bottom:1111.293333pt;}
.y3f_c00018{bottom:1121.280000pt;}
.y31_c00018{bottom:1124.346667pt;}
.y36_c00018{bottom:1125.120000pt;}
.y32_c00018{bottom:1127.426667pt;}
.y37_c00018{bottom:1128.186667pt;}
.y33_c00018{bottom:1128.960000pt;}
.y35_c00018{bottom:1129.733333pt;}
.y34_c00018{bottom:1130.493333pt;}
.y30_c00018{bottom:1141.253333pt;}
.y3_c00018{bottom:1142.786667pt;}
.y2f_c00018{bottom:1143.546667pt;}
.y2d_c00018{bottom:1144.320000pt;}
.y4_c00018{bottom:1145.093333pt;}
.y2e_c00018{bottom:1145.853333pt;}
.y2c_c00018{bottom:1146.626667pt;}
.y2b_c00018{bottom:1147.386667pt;}
.y28_c00018{bottom:1159.680000pt;}
.y21_c00018{bottom:1160.453333pt;}
.y26_c00018{bottom:1161.213333pt;}
.y25_c00018{bottom:1161.986667pt;}
.y24_c00018{bottom:1162.746667pt;}
.y29_c00018{bottom:1163.520000pt;}
.y27_c00018{bottom:1164.293333pt;}
.y22_c00018{bottom:1165.053333pt;}
.y23_c00018{bottom:1165.826667pt;}
.y115_c00018{bottom:1168.133333pt;}
.y2a_c00018{bottom:1173.506667pt;}
.y1f_c00018{bottom:1177.346667pt;}
.y20_c00018{bottom:1178.106667pt;}
.y1d_c00018{bottom:1178.880000pt;}
.y1a_c00018{bottom:1179.653333pt;}
.y1c_c00018{bottom:1180.413333pt;}
.y19_c00018{bottom:1181.186667pt;}
.y18_c00018{bottom:1181.946667pt;}
.y1b_c00018{bottom:1182.720000pt;}
.y17_c00018{bottom:1183.493333pt;}
.y1e_c00018{bottom:1184.253333pt;}
.y15_c00018{bottom:1196.546667pt;}
.y11_c00018{bottom:1197.306667pt;}
.y16_c00018{bottom:1198.853333pt;}
.y12_c00018{bottom:1200.386667pt;}
.y13_c00018{bottom:1201.146667pt;}
.y14_c00018{bottom:1201.920000pt;}
.yb_c00018{bottom:1214.213333pt;}
.yc_c00018{bottom:1214.973333pt;}
.y10_c00018{bottom:1217.280000pt;}
.yf_c00018{bottom:1218.813333pt;}
.ye_c00018{bottom:1219.586667pt;}
.yd_c00018{bottom:1220.346667pt;}
.ya_c00018{bottom:1227.266667pt;}
.y2_c00018{bottom:1242.626667pt;}
.y8_c00018{bottom:1243.386667pt;}
.y1_c00018{bottom:1244.160000pt;}
.y7_c00018{bottom:1274.880000pt;}
.y6_c00018{bottom:1277.186667pt;}
.h2_c00018{height:2.764500pt;}
.h4_c00018{height:4.799479pt;}
.hb_c00018{height:5.519401pt;}
.h1d_c00018{height:8.303099pt;}
.h5_c00018{height:11.038802pt;}
.h3_c00018{height:13.822500pt;}
.h6_c00018{height:16.606198pt;}
.h20_c00018{height:19.341901pt;}
.h22_c00018{height:22.125599pt;}
.h13_c00018{height:24.861302pt;}
.h11_c00018{height:27.645000pt;}
.h17_c00018{height:30.428698pt;}
.h21_c00018{height:33.164401pt;}
.h1c_c00018{height:35.948099pt;}
.h18_c00018{height:38.683802pt;}
.h15_c00018{height:41.467500pt;}
.h8_c00018{height:44.251198pt;}
.h10_c00018{height:46.986901pt;}
.h12_c00018{height:49.770599pt;}
.ha_c00018{height:52.506302pt;}
.h9_c00018{height:55.290000pt;}
.h23_c00018{height:56.827500pt;}
.h7_c00018{height:58.073698pt;}
.h14_c00018{height:58.943932pt;}
.h1b_c00018{height:59.253568pt;}
.h16_c00018{height:60.809401pt;}
.hf_c00018{height:63.593099pt;}
.h19_c00018{height:66.328802pt;}
.he_c00018{height:69.112500pt;}
.h1a_c00018{height:71.896198pt;}
.h1f_c00018{height:74.631901pt;}
.h1e_c00018{height:80.151302pt;}
.hd_c00018{height:82.935000pt;}
.hc_c00018{height:85.718698pt;}
.h0_c00018{height:1347.066667pt;}
.h1_c00018{height:1347.333333pt;}
.w1_c00018{width:946.666667pt;}
.w0_c00018{width:946.946667pt;}
.x0_c00018{left:0.000000pt;}
.x3_c00018{left:89.093333pt;}
.x4_c00018{left:96.773333pt;}
.x6_c00018{left:105.986667pt;}
.x5_c00018{left:107.520000pt;}
.x1_c00018{left:121.346667pt;}
.x2_c00018{left:127.493333pt;}
.xf_c00018{left:151.293333pt;}
.xb1_c00018{left:170.493333pt;}
.x66_c00018{left:172.800000pt;}
.x6c_c00018{left:175.106667pt;}
.x71_c00018{left:178.173333pt;}
.xd0_c00018{left:180.480000pt;}
.x5e_c00018{left:182.786667pt;}
.x33_c00018{left:184.320000pt;}
.x1b_c00018{left:185.853333pt;}
.x43_c00018{left:187.386667pt;}
.x10_c00018{left:191.226667pt;}
.xbf_c00018{left:196.613333pt;}
.xd5_c00018{left:198.146667pt;}
.x11_c00018{left:202.746667pt;}
.xa9_c00018{left:205.826667pt;}
.x44_c00018{left:208.133333pt;}
.x89_c00018{left:210.426667pt;}
.x34_c00018{left:212.733333pt;}
.x93_c00018{left:214.266667pt;}
.x28_c00018{left:216.573333pt;}
.x72_c00018{left:220.413333pt;}
.xb9_c00018{left:224.253333pt;}
.xd6_c00018{left:225.786667pt;}
.xb2_c00018{left:228.866667pt;}
.x45_c00018{left:230.400000pt;}
.x98_c00018{left:231.933333pt;}
.x7b_c00018{left:233.466667pt;}
.x5f_c00018{left:238.080000pt;}
.x9_c00018{left:241.920000pt;}
.x67_c00018{left:244.226667pt;}
.xc5_c00018{left:245.760000pt;}
.xdb_c00018{left:247.293333pt;}
.x1c_c00018{left:252.666667pt;}
.x7c_c00018{left:254.213333pt;}
.xc0_c00018{left:256.506667pt;}
.x35_c00018{left:258.053333pt;}
.x94_c00018{left:261.893333pt;}
.x59_c00018{left:263.426667pt;}
.xa_c00018{left:264.960000pt;}
.xd1_c00018{left:267.266667pt;}
.x1d_c00018{left:269.573333pt;}
.x5a_c00018{left:272.640000pt;}
.xbb_c00018{left:274.946667pt;}
.xe5_c00018{left:278.013333pt;}
.xb3_c00018{left:280.320000pt;}
.x29_c00018{left:286.466667pt;}
.x8a_c00018{left:288.000000pt;}
.x73_c00018{left:290.306667pt;}
.x4f_c00018{left:291.840000pt;}
.xdc_c00018{left:293.373333pt;}
.xc6_c00018{left:295.680000pt;}
.xaa_c00018{left:297.986667pt;}
.xa6_c00018{left:301.053333pt;}
.xd7_c00018{left:305.666667pt;}
.x83_c00018{left:307.200000pt;}
.xb_c00018{left:309.506667pt;}
.x99_c00018{left:311.040000pt;}
.xdd_c00018{left:314.106667pt;}
.x7d_c00018{left:317.946667pt;}
.x36_c00018{left:319.493333pt;}
.x8b_c00018{left:321.026667pt;}
.x1e_c00018{left:322.560000pt;}
.xd8_c00018{left:324.093333pt;}
.x2a_c00018{left:325.626667pt;}
.x1f_c00018{left:328.706667pt;}
.xce_c00018{left:330.240000pt;}
.xc_c00018{left:332.546667pt;}
.x12_c00018{left:334.080000pt;}
.x60_c00018{left:336.386667pt;}
.xcc_c00018{left:341.760000pt;}
.x50_c00018{left:344.826667pt;}
.x46_c00018{left:346.373333pt;}
.x2b_c00018{left:350.213333pt;}
.x20_c00018{left:351.746667pt;}
.x8c_c00018{left:353.280000pt;}
.x9a_c00018{left:354.813333pt;}
.xb4_c00018{left:359.426667pt;}
.xc1_c00018{left:361.733333pt;}
.x9f_c00018{left:364.800000pt;}
.x7e_c00018{left:367.106667pt;}
.x2c_c00018{left:371.706667pt;}
.x13_c00018{left:374.013333pt;}
.x51_c00018{left:377.093333pt;}
.x37_c00018{left:379.386667pt;}
.x84_c00018{left:383.226667pt;}
.xab_c00018{left:384.773333pt;}
.x2d_c00018{left:386.306667pt;}
.x85_c00018{left:389.373333pt;}
.x6d_c00018{left:394.746667pt;}
.xd2_c00018{left:396.293333pt;}
.x47_c00018{left:397.826667pt;}
.x74_c00018{left:400.133333pt;}
.x8d_c00018{left:403.973333pt;}
.x21_c00018{left:406.266667pt;}
.x61_c00018{left:410.106667pt;}
.x52_c00018{left:411.653333pt;}
.x48_c00018{left:413.946667pt;}
.xe6_c00018{left:420.866667pt;}
.xde_c00018{left:423.173333pt;}
.x53_c00018{left:424.706667pt;}
.xa0_c00018{left:426.240000pt;}
.x14_c00018{left:427.773333pt;}
.x5b_c00018{left:430.080000pt;}
.xa7_c00018{left:432.386667pt;}
.xa2_c00018{left:433.920000pt;}
.x5c_c00018{left:442.373333pt;}
.xac_c00018{left:443.906667pt;}
.x38_c00018{left:446.213333pt;}
.x8e_c00018{left:448.506667pt;}
.xc7_c00018{left:450.813333pt;}
.x7f_c00018{left:453.893333pt;}
.x49_c00018{left:455.426667pt;}
.xad_c00018{left:456.960000pt;}
.xa8_c00018{left:461.573333pt;}
.x22_c00018{left:463.106667pt;}
.xd_c00018{left:464.640000pt;}
.xb5_c00018{left:475.386667pt;}
.x2e_c00018{left:477.693333pt;}
.x75_c00018{left:479.226667pt;}
.x86_c00018{left:481.533333pt;}
.x62_c00018{left:483.840000pt;}
.x2f_c00018{left:485.373333pt;}
.x54_c00018{left:488.453333pt;}
.x39_c00018{left:492.293333pt;}
.x23_c00018{left:495.360000pt;}
.xa3_c00018{left:496.893333pt;}
.x15_c00018{left:499.973333pt;}
.xcb_c00018{left:506.106667pt;}
.xc8_c00018{left:507.653333pt;}
.xdf_c00018{left:509.946667pt;}
.x95_c00018{left:511.493333pt;}
.x3a_c00018{left:513.786667pt;}
.x30_c00018{left:516.093333pt;}
.xbc_c00018{left:517.626667pt;}
.x4a_c00018{left:519.173333pt;}
.xc9_c00018{left:521.466667pt;}
.xba_c00018{left:523.773333pt;}
.xbd_c00018{left:526.080000pt;}
.xa1_c00018{left:529.146667pt;}
.x68_c00018{left:530.693333pt;}
.x55_c00018{left:534.533333pt;}
.xae_c00018{left:537.600000pt;}
.x63_c00018{left:539.133333pt;}
.xe0_c00018{left:541.440000pt;}
.x76_c00018{left:542.973333pt;}
.x3b_c00018{left:545.280000pt;}
.x31_c00018{left:549.120000pt;}
.x16_c00018{left:552.960000pt;}
.x9b_c00018{left:559.106667pt;}
.x24_c00018{left:560.640000pt;}
.xc2_c00018{left:563.706667pt;}
.x8f_c00018{left:565.253333pt;}
.xe1_c00018{left:569.093333pt;}
.x6e_c00018{left:570.626667pt;}
.xcd_c00018{left:576.000000pt;}
.x3c_c00018{left:578.306667pt;}
.x87_c00018{left:581.373333pt;}
.x25_c00018{left:583.680000pt;}
.x80_c00018{left:585.213333pt;}
.x90_c00018{left:587.520000pt;}
.xe_c00018{left:591.360000pt;}
.x4b_c00018{left:594.426667pt;}
.x77_c00018{left:595.973333pt;}
.x69_c00018{left:604.413333pt;}
.x5d_c00018{left:607.493333pt;}
.x4c_c00018{left:611.333333pt;}
.xbe_c00018{left:612.866667pt;}
.x96_c00018{left:614.400000pt;}
.x3d_c00018{left:617.466667pt;}
.x64_c00018{left:619.773333pt;}
.xe2_c00018{left:622.080000pt;}
.x17_c00018{left:623.613333pt;}
.x32_c00018{left:628.986667pt;}
.xd3_c00018{left:631.293333pt;}
.x9c_c00018{left:632.826667pt;}
.x6f_c00018{left:634.373333pt;}
.x4d_c00018{left:638.213333pt;}
.xb6_c00018{left:641.280000pt;}
.xe7_c00018{left:647.426667pt;}
.x56_c00018{left:648.960000pt;}
.xaf_c00018{left:652.800000pt;}
.x65_c00018{left:654.333333pt;}
.x3e_c00018{left:655.866667pt;}
.xa4_c00018{left:657.413333pt;}
.xd4_c00018{left:662.013333pt;}
.x26_c00018{left:668.160000pt;}
.xe3_c00018{left:669.693333pt;}
.x57_c00018{left:671.226667pt;}
.xb7_c00018{left:672.773333pt;}
.x6a_c00018{left:675.840000pt;}
.x4e_c00018{left:678.906667pt;}
.x91_c00018{left:681.213333pt;}
.x70_c00018{left:683.520000pt;}
.x97_c00018{left:687.360000pt;}
.x18_c00018{left:689.666667pt;}
.xc3_c00018{left:691.973333pt;}
.x78_c00018{left:693.506667pt;}
.x3f_c00018{left:695.040000pt;}
.x81_c00018{left:697.346667pt;}
.xca_c00018{left:698.880000pt;}
.x40_c00018{left:706.560000pt;}
.xc4_c00018{left:708.093333pt;}
.xa5_c00018{left:711.173333pt;}
.x79_c00018{left:712.706667pt;}
.x6b_c00018{left:714.240000pt;}
.xd9_c00018{left:715.773333pt;}
.x7_c00018{left:718.080000pt;}
.x58_c00018{left:721.920000pt;}
.x9d_c00018{left:723.453333pt;}
.x19_c00018{left:725.760000pt;}
.xb0_c00018{left:728.066667pt;}
.x27_c00018{left:729.600000pt;}
.x82_c00018{left:731.133333pt;}
.x8_c00018{left:734.973333pt;}
.x9e_c00018{left:738.813333pt;}
.x1a_c00018{left:744.186667pt;}
.xb8_c00018{left:745.733333pt;}
.x92_c00018{left:748.800000pt;}
.xcf_c00018{left:756.480000pt;}
.xe4_c00018{left:758.013333pt;}
.x88_c00018{left:759.546667pt;}
.xda_c00018{left:761.093333pt;}
.x41_c00018{left:764.160000pt;}
.x7a_c00018{left:768.000000pt;}
.x42_c00018{left:781.826667pt;}
.xe9_c00018{left:786.426667pt;}
.xed_c00018{left:801.786667pt;}
.xee_c00018{left:811.013333pt;}
.xea_c00018{left:819.453333pt;}
.xe8_c00018{left:831.746667pt;}
.xef_c00018{left:860.933333pt;}
.xf0_c00018{left:863.226667pt;}
.xeb_c00018{left:911.613333pt;}
.xec_c00018{left:924.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e54d7519ab150ff555ebca15.woff2')format("woff");}.ff1_c00019{font-family:ff1_c00019;line-height:1.109863;font-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_c00019{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m7_c00019{transform:matrix(0.097425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097425,0.000000,0.000000,0.250000,0,0);}
.ma_c00019{transform:matrix(0.121450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121450,0.000000,0.000000,0.250000,0,0);}
.m4_c00019{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.mc_c00019{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);}
.m1f_c00019{transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00019{transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);}
.m5_c00019{transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);}
.m2b_c00019{transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);}
.m20_c00019{transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);}
.md_c00019{transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);}
.m8_c00019{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m26_c00019{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);}
.m22_c00019{transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);}
.m9_c00019{transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);}
.m23_c00019{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m14_c00019{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_c00019{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);}
.m30_c00019{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m2d_c00019{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);}
.mf_c00019{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);}
.m2f_c00019{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m28_c00019{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m11_c00019{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);}
.m10_c00019{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);}
.m16_c00019{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);}
.m17_c00019{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);}
.m21_c00019{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);}
.m6_c00019{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00019{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);}
.me_c00019{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c00019{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m27_c00019{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00019{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);}
.m24_c00019{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m18_c00019{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c00019{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);}
.m1b_c00019{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00019{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mb_c00019{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m19_c00019{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);}
.m2_c00019{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00019{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00019{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m3_c00019{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m0_c00019{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00019{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m29_c00019{transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);}
.m15_c00019{transform:matrix(2.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.617500,0.000000,0.000000,0.250000,0,0);}
.v0_c00019{vertical-align:0.000000px;}
.v1_c00019{vertical-align:3.420000px;}
.ls1_c00019{letter-spacing:0.000000px;}
.ls0_c00019{letter-spacing:226.112700px;}
.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;}
}
.ws1_c00019{word-spacing:0.000000px;}
.ws0_c00019{word-spacing:45.129840px;}
.fc0_c00019{color:transparent;}
.fs7_c00019{font-size:3.456000px;}
.fs13_c00019{font-size:6.900000px;}
.fs12_c00019{font-size:10.380000px;}
.fs15_c00019{font-size:13.800000px;}
.fs1_c00019{font-size:17.280000px;}
.fs0_c00019{font-size:20.760000px;}
.fs2_c00019{font-size:27.660000px;}
.fs14_c00019{font-size:31.080000px;}
.fs1b_c00019{font-size:34.560000px;}
.fs9_c00019{font-size:38.040000px;}
.fs1d_c00019{font-size:41.460000px;}
.fs1a_c00019{font-size:44.940000px;}
.fs11_c00019{font-size:48.360000px;}
.fs1e_c00019{font-size:51.840000px;}
.fs1c_c00019{font-size:58.740000px;}
.fsb_c00019{font-size:62.220000px;}
.fs16_c00019{font-size:65.640000px;}
.fs10_c00019{font-size:69.120000px;}
.fse_c00019{font-size:72.600000px;}
.fs5_c00019{font-size:76.020000px;}
.fs17_c00019{font-size:79.500000px;}
.fsf_c00019{font-size:82.920000px;}
.fs8_c00019{font-size:86.400000px;}
.fsc_c00019{font-size:89.880000px;}
.fs19_c00019{font-size:96.780000px;}
.fs18_c00019{font-size:100.200000px;}
.fsa_c00019{font-size:103.680000px;}
.fsd_c00019{font-size:117.480000px;}
.fs4_c00019{font-size:124.440000px;}
.fs6_c00019{font-size:152.040000px;}
.fs3_c00019{font-size:190.080000px;}
.y0_c00019{bottom:0.000000px;}
.y2f_c00019{bottom:875.235000px;}
.y33_c00019{bottom:879.555000px;}
.y30_c00019{bottom:881.280000px;}
.y31_c00019{bottom:882.150000px;}
.y32_c00019{bottom:885.600000px;}
.y2c_c00019{bottom:886.470000px;}
.y2a_c00019{bottom:891.645000px;}
.y2b_c00019{bottom:894.240000px;}
.y2d_c00019{bottom:896.835000px;}
.y2e_c00019{bottom:897.690000px;}
.y24_c00019{bottom:902.010000px;}
.y26_c00019{bottom:906.330000px;}
.y28_c00019{bottom:907.200000px;}
.y25_c00019{bottom:908.070000px;}
.y27_c00019{bottom:910.650000px;}
.y29_c00019{bottom:912.390000px;}
.y23_c00019{bottom:914.970000px;}
.y22_c00019{bottom:922.755000px;}
.y1d_c00019{bottom:932.250000px;}
.y21_c00019{bottom:941.760000px;}
.y20_c00019{bottom:942.630000px;}
.y1e_c00019{bottom:946.950000px;}
.y1f_c00019{bottom:952.125000px;}
.y1b_c00019{bottom:1043.715000px;}
.y1c_c00019{bottom:1048.890000px;}
.y17_c00019{bottom:1080.870000px;}
.y18_c00019{bottom:1086.045000px;}
.y19_c00019{bottom:1086.915000px;}
.y13_c00019{bottom:1092.090000px;}
.y12_c00019{bottom:1093.830000px;}
.y11_c00019{bottom:1095.555000px;}
.y16_c00019{bottom:1096.410000px;}
.y14_c00019{bottom:1099.875000px;}
.y15_c00019{bottom:1103.325000px;}
.ya_c00019{bottom:1110.240000px;}
.yc_c00019{bottom:1112.835000px;}
.ye_c00019{bottom:1113.690000px;}
.yf_c00019{bottom:1116.285000px;}
.y5_c00019{bottom:1117.155000px;}
.y10_c00019{bottom:1118.880000px;}
.y9_c00019{bottom:1121.475000px;}
.yb_c00019{bottom:1123.200000px;}
.yd_c00019{bottom:1124.925000px;}
.y3_c00019{bottom:1129.245000px;}
.y6_c00019{bottom:1134.435000px;}
.y8_c00019{bottom:1137.030000px;}
.y7_c00019{bottom:1147.395000px;}
.y1a_c00019{bottom:1168.125000px;}
.y4_c00019{bottom:1208.730000px;}
.y2_c00019{bottom:1308.960000px;}
.y1_c00019{bottom:1397.085000px;}
.h9_c00019{height:3.110063px;}
.h17_c00019{height:6.209326px;}
.h14_c00019{height:9.340986px;}
.h18_c00019{height:12.418652px;}
.h15_c00019{height:12.760986px;}
.h3_c00019{height:15.550313px;}
.h2_c00019{height:18.681973px;}
.h4_c00019{height:24.891299px;}
.h16_c00019{height:27.968965px;}
.h1e_c00019{height:31.100625px;}
.hb_c00019{height:34.232285px;}
.h20_c00019{height:37.309951px;}
.h1d_c00019{height:40.441611px;}
.h13_c00019{height:43.519277px;}
.h21_c00019{height:46.650937px;}
.h1f_c00019{height:52.860264px;}
.hd_c00019{height:55.991924px;}
.h19_c00019{height:59.069590px;}
.h12_c00019{height:62.201250px;}
.h10_c00019{height:65.332910px;}
.h7_c00019{height:68.410576px;}
.h1a_c00019{height:71.542236px;}
.h11_c00019{height:74.619902px;}
.ha_c00019{height:77.751563px;}
.he_c00019{height:80.883223px;}
.h1c_c00019{height:87.092549px;}
.h1b_c00019{height:90.170215px;}
.hc_c00019{height:93.301875px;}
.hf_c00019{height:105.720527px;}
.h6_c00019{height:111.983848px;}
.h8_c00019{height:136.821152px;}
.h5_c00019{height:171.053437px;}
.h1_c00019{height:1503.000000px;}
.h0_c00019{height:1503.360000px;}
.w1_c00019{width:1076.250000px;}
.w0_c00019{width:1076.550000px;}
.x0_c00019{left:0.000000px;}
.x18_c00019{left:12.960000px;}
.x3_c00019{left:33.690000px;}
.x1b_c00019{left:38.010000px;}
.x2_c00019{left:84.675000px;}
.x4_c00019{left:166.755000px;}
.x19_c00019{left:174.525000px;}
.x1a_c00019{left:188.355000px;}
.x1f_c00019{left:190.950000px;}
.x20_c00019{left:202.170000px;}
.x21_c00019{left:215.130000px;}
.x2b_c00019{left:242.790000px;}
.x22_c00019{left:247.110000px;}
.x2c_c00019{left:271.290000px;}
.x23_c00019{left:273.030000px;}
.x27_c00019{left:280.800000px;}
.x2d_c00019{left:298.080000px;}
.x2e_c00019{left:332.640000px;}
.x28_c00019{left:337.830000px;}
.x1c_c00019{left:347.325000px;}
.x2f_c00019{left:364.605000px;}
.x24_c00019{left:372.390000px;}
.x29_c00019{left:386.205000px;}
.x25_c00019{left:397.440000px;}
.x2a_c00019{left:424.230000px;}
.x26_c00019{left:480.390000px;}
.x1e_c00019{left:505.440000px;}
.x30_c00019{left:514.950000px;}
.x1d_c00019{left:520.125000px;}
.x1_c00019{left:523.590000px;}
.x5_c00019{left:545.190000px;}
.x9_c00019{left:547.770000px;}
.x15_c00019{left:561.600000px;}
.x10_c00019{left:572.835000px;}
.x6_c00019{left:580.605000px;}
.xa_c00019{left:597.885000px;}
.xb_c00019{left:632.445000px;}
.xc_c00019{left:645.405000px;}
.x11_c00019{left:648.870000px;}
.x7_c00019{left:651.450000px;}
.x16_c00019{left:679.965000px;}
.x12_c00019{left:683.430000px;}
.xd_c00019{left:697.245000px;}
.x8_c00019{left:706.755000px;}
.xe_c00019{left:757.725000px;}
.x13_c00019{left:822.525000px;}
.xf_c00019{left:861.405000px;}
.x14_c00019{left:866.595000px;}
.x17_c00019{left:873.510000px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.v1_c00019{vertical-align:3.040000pt;}
.ls1_c00019{letter-spacing:0.000000pt;}
.ls0_c00019{letter-spacing:200.989067pt;}
.ws1_c00019{word-spacing:0.000000pt;}
.ws0_c00019{word-spacing:40.115413pt;}
.fs7_c00019{font-size:3.072000pt;}
.fs13_c00019{font-size:6.133333pt;}
.fs12_c00019{font-size:9.226667pt;}
.fs15_c00019{font-size:12.266667pt;}
.fs1_c00019{font-size:15.360000pt;}
.fs0_c00019{font-size:18.453333pt;}
.fs2_c00019{font-size:24.586667pt;}
.fs14_c00019{font-size:27.626667pt;}
.fs1b_c00019{font-size:30.720000pt;}
.fs9_c00019{font-size:33.813333pt;}
.fs1d_c00019{font-size:36.853333pt;}
.fs1a_c00019{font-size:39.946667pt;}
.fs11_c00019{font-size:42.986667pt;}
.fs1e_c00019{font-size:46.080000pt;}
.fs1c_c00019{font-size:52.213333pt;}
.fsb_c00019{font-size:55.306667pt;}
.fs16_c00019{font-size:58.346667pt;}
.fs10_c00019{font-size:61.440000pt;}
.fse_c00019{font-size:64.533333pt;}
.fs5_c00019{font-size:67.573333pt;}
.fs17_c00019{font-size:70.666667pt;}
.fsf_c00019{font-size:73.706667pt;}
.fs8_c00019{font-size:76.800000pt;}
.fsc_c00019{font-size:79.893333pt;}
.fs19_c00019{font-size:86.026667pt;}
.fs18_c00019{font-size:89.066667pt;}
.fsa_c00019{font-size:92.160000pt;}
.fsd_c00019{font-size:104.426667pt;}
.fs4_c00019{font-size:110.613333pt;}
.fs6_c00019{font-size:135.146667pt;}
.fs3_c00019{font-size:168.960000pt;}
.y0_c00019{bottom:0.000000pt;}
.y2f_c00019{bottom:777.986667pt;}
.y33_c00019{bottom:781.826667pt;}
.y30_c00019{bottom:783.360000pt;}
.y31_c00019{bottom:784.133333pt;}
.y32_c00019{bottom:787.200000pt;}
.y2c_c00019{bottom:787.973333pt;}
.y2a_c00019{bottom:792.573333pt;}
.y2b_c00019{bottom:794.880000pt;}
.y2d_c00019{bottom:797.186667pt;}
.y2e_c00019{bottom:797.946667pt;}
.y24_c00019{bottom:801.786667pt;}
.y26_c00019{bottom:805.626667pt;}
.y28_c00019{bottom:806.400000pt;}
.y25_c00019{bottom:807.173333pt;}
.y27_c00019{bottom:809.466667pt;}
.y29_c00019{bottom:811.013333pt;}
.y23_c00019{bottom:813.306667pt;}
.y22_c00019{bottom:820.226667pt;}
.y1d_c00019{bottom:828.666667pt;}
.y21_c00019{bottom:837.120000pt;}
.y20_c00019{bottom:837.893333pt;}
.y1e_c00019{bottom:841.733333pt;}
.y1f_c00019{bottom:846.333333pt;}
.y1b_c00019{bottom:927.746667pt;}
.y1c_c00019{bottom:932.346667pt;}
.y17_c00019{bottom:960.773333pt;}
.y18_c00019{bottom:965.373333pt;}
.y19_c00019{bottom:966.146667pt;}
.y13_c00019{bottom:970.746667pt;}
.y12_c00019{bottom:972.293333pt;}
.y11_c00019{bottom:973.826667pt;}
.y16_c00019{bottom:974.586667pt;}
.y14_c00019{bottom:977.666667pt;}
.y15_c00019{bottom:980.733333pt;}
.ya_c00019{bottom:986.880000pt;}
.yc_c00019{bottom:989.186667pt;}
.ye_c00019{bottom:989.946667pt;}
.yf_c00019{bottom:992.253333pt;}
.y5_c00019{bottom:993.026667pt;}
.y10_c00019{bottom:994.560000pt;}
.y9_c00019{bottom:996.866667pt;}
.yb_c00019{bottom:998.400000pt;}
.yd_c00019{bottom:999.933333pt;}
.y3_c00019{bottom:1003.773333pt;}
.y6_c00019{bottom:1008.386667pt;}
.y8_c00019{bottom:1010.693333pt;}
.y7_c00019{bottom:1019.906667pt;}
.y1a_c00019{bottom:1038.333333pt;}
.y4_c00019{bottom:1074.426667pt;}
.y2_c00019{bottom:1163.520000pt;}
.y1_c00019{bottom:1241.853333pt;}
.h9_c00019{height:2.764500pt;}
.h17_c00019{height:5.519401pt;}
.h14_c00019{height:8.303099pt;}
.h18_c00019{height:11.038802pt;}
.h15_c00019{height:11.343099pt;}
.h3_c00019{height:13.822500pt;}
.h2_c00019{height:16.606198pt;}
.h4_c00019{height:22.125599pt;}
.h16_c00019{height:24.861302pt;}
.h1e_c00019{height:27.645000pt;}
.hb_c00019{height:30.428698pt;}
.h20_c00019{height:33.164401pt;}
.h1d_c00019{height:35.948099pt;}
.h13_c00019{height:38.683802pt;}
.h21_c00019{height:41.467500pt;}
.h1f_c00019{height:46.986901pt;}
.hd_c00019{height:49.770599pt;}
.h19_c00019{height:52.506302pt;}
.h12_c00019{height:55.290000pt;}
.h10_c00019{height:58.073698pt;}
.h7_c00019{height:60.809401pt;}
.h1a_c00019{height:63.593099pt;}
.h11_c00019{height:66.328802pt;}
.ha_c00019{height:69.112500pt;}
.he_c00019{height:71.896198pt;}
.h1c_c00019{height:77.415599pt;}
.h1b_c00019{height:80.151302pt;}
.hc_c00019{height:82.935000pt;}
.hf_c00019{height:93.973802pt;}
.h6_c00019{height:99.541198pt;}
.h8_c00019{height:121.618802pt;}
.h5_c00019{height:152.047500pt;}
.h1_c00019{height:1336.000000pt;}
.h0_c00019{height:1336.320000pt;}
.w1_c00019{width:956.666667pt;}
.w0_c00019{width:956.933333pt;}
.x0_c00019{left:0.000000pt;}
.x18_c00019{left:11.520000pt;}
.x3_c00019{left:29.946667pt;}
.x1b_c00019{left:33.786667pt;}
.x2_c00019{left:75.266667pt;}
.x4_c00019{left:148.226667pt;}
.x19_c00019{left:155.133333pt;}
.x1a_c00019{left:167.426667pt;}
.x1f_c00019{left:169.733333pt;}
.x20_c00019{left:179.706667pt;}
.x21_c00019{left:191.226667pt;}
.x2b_c00019{left:215.813333pt;}
.x22_c00019{left:219.653333pt;}
.x2c_c00019{left:241.146667pt;}
.x23_c00019{left:242.693333pt;}
.x27_c00019{left:249.600000pt;}
.x2d_c00019{left:264.960000pt;}
.x2e_c00019{left:295.680000pt;}
.x28_c00019{left:300.293333pt;}
.x1c_c00019{left:308.733333pt;}
.x2f_c00019{left:324.093333pt;}
.x24_c00019{left:331.013333pt;}
.x29_c00019{left:343.293333pt;}
.x25_c00019{left:353.280000pt;}
.x2a_c00019{left:377.093333pt;}
.x26_c00019{left:427.013333pt;}
.x1e_c00019{left:449.280000pt;}
.x30_c00019{left:457.733333pt;}
.x1d_c00019{left:462.333333pt;}
.x1_c00019{left:465.413333pt;}
.x5_c00019{left:484.613333pt;}
.x9_c00019{left:486.906667pt;}
.x15_c00019{left:499.200000pt;}
.x10_c00019{left:509.186667pt;}
.x6_c00019{left:516.093333pt;}
.xa_c00019{left:531.453333pt;}
.xb_c00019{left:562.173333pt;}
.xc_c00019{left:573.693333pt;}
.x11_c00019{left:576.773333pt;}
.x7_c00019{left:579.066667pt;}
.x16_c00019{left:604.413333pt;}
.x12_c00019{left:607.493333pt;}
.xd_c00019{left:619.773333pt;}
.x8_c00019{left:628.226667pt;}
.xe_c00019{left:673.533333pt;}
.x13_c00019{left:731.133333pt;}
.xf_c00019{left:765.693333pt;}
.x14_c00019{left:770.306667pt;}
.x17_c00019{left:776.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_44d65ed42780a3285527f8ab.woff2')format("woff");}.ff1_c00020{font-family:ff1_c00020;line-height:1.109863;font-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_c00020{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00020{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00020{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);}
.m4_c00020{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c00020{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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;}
.fs4_c00020{font-size:3.456000px;}
.fs0_c00020{font-size:6.900000px;}
.fs2_c00020{font-size:10.380000px;}
.fs1_c00020{font-size:17.280000px;}
.fs3_c00020{font-size:34.560000px;}
.y0_c00020{bottom:0.000000px;}
.y5_c00020{bottom:494.205000px;}
.y4_c00020{bottom:500.250000px;}
.y3_c00020{bottom:507.165000px;}
.y2_c00020{bottom:529.635000px;}
.y1_c00020{bottom:542.595000px;}
.h6_c00020{height:3.110063px;}
.h2_c00020{height:6.209326px;}
.h4_c00020{height:9.340986px;}
.h3_c00020{height:15.550313px;}
.h5_c00020{height:31.100625px;}
.h0_c00020{height:1515.450000px;}
.h1_c00020{height:1515.750000px;}
.w1_c00020{width:1065.000000px;}
.w0_c00020{width:1065.315000px;}
.x0_c00020{left:0.000000px;}
.x2_c00020{left:255.750000px;}
.x3_c00020{left:266.115000px;}
.x4_c00020{left:276.480000px;}
.x1_c00020{left:281.670000px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls0_c00020{letter-spacing:0.000000pt;}
.ws0_c00020{word-spacing:0.000000pt;}
.fs4_c00020{font-size:3.072000pt;}
.fs0_c00020{font-size:6.133333pt;}
.fs2_c00020{font-size:9.226667pt;}
.fs1_c00020{font-size:15.360000pt;}
.fs3_c00020{font-size:30.720000pt;}
.y0_c00020{bottom:0.000000pt;}
.y5_c00020{bottom:439.293333pt;}
.y4_c00020{bottom:444.666667pt;}
.y3_c00020{bottom:450.813333pt;}
.y2_c00020{bottom:470.786667pt;}
.y1_c00020{bottom:482.306667pt;}
.h6_c00020{height:2.764500pt;}
.h2_c00020{height:5.519401pt;}
.h4_c00020{height:8.303099pt;}
.h3_c00020{height:13.822500pt;}
.h5_c00020{height:27.645000pt;}
.h0_c00020{height:1347.066667pt;}
.h1_c00020{height:1347.333333pt;}
.w1_c00020{width:946.666667pt;}
.w0_c00020{width:946.946667pt;}
.x0_c00020{left:0.000000pt;}
.x2_c00020{left:227.333333pt;}
.x3_c00020{left:236.546667pt;}
.x4_c00020{left:245.760000pt;}
.x1_c00020{left:250.373333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_50975d832ef13cd4ac3fc032.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.109863;font-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_c00021{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00021{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m1c_c00021{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00021{transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);}
.m5_c00021{transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);}
.m21_c00021{transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);}
.m25_c00021{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m26_c00021{transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);}
.m29_c00021{transform:matrix(0.140075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140075,0.000000,0.000000,0.250000,0,0);}
.m23_c00021{transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);}
.m0_c00021{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00021{transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);}
.m1b_c00021{transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);}
.m15_c00021{transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);}
.m2c_c00021{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.m5a_c00021{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.m2b_c00021{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);}
.m56_c00021{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m54_c00021{transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);}
.m2_c00021{transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);}
.m1e_c00021{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m4a_c00021{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);}
.m4b_c00021{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);}
.m1d_c00021{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.m46_c00021{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);}
.m57_c00021{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.mf_c00021{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m50_c00021{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.m10_c00021{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);}
.m3e_c00021{transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);}
.m47_c00021{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);}
.m32_c00021{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);}
.m39_c00021{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);}
.m4c_c00021{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1f_c00021{transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);}
.m22_c00021{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);}
.m52_c00021{transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);}
.m59_c00021{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);}
.m3c_c00021{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);}
.m34_c00021{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);}
.m48_c00021{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);}
.m3_c00021{transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);}
.m41_c00021{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00021{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);}
.m6_c00021{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);}
.m20_c00021{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);}
.m37_c00021{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11_c00021{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00021{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m55_c00021{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);}
.m24_c00021{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00021{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);}
.m2e_c00021{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m36_c00021{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);}
.m28_c00021{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00021{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);}
.me_c00021{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00021{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00021{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);}
.mc_c00021{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c00021{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);}
.m3b_c00021{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00021{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m14_c00021{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m58_c00021{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m53_c00021{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m30_c00021{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c00021{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);}
.m18_c00021{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c00021{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m40_c00021{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m38_c00021{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m27_c00021{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);}
.m3f_c00021{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);}
.m44_c00021{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m31_c00021{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m33_c00021{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00021{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m16_c00021{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.ma_c00021{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m43_c00021{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);}
.md_c00021{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m8_c00021{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m51_c00021{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m19_c00021{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.mb_c00021{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m42_c00021{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m49_c00021{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00021{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m1_c00021{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m45_c00021{transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00021{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00021{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.m4_c00021{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c00021{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.v1_c00021{vertical-align:3.480000px;}
.ls1_c00021{letter-spacing:0.000000px;}
.ls0_c00021{letter-spacing:46.112700px;}
.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;}
.fs7_c00021{font-size:3.456000px;}
.fs8_c00021{font-size:6.000000px;}
.fs0_c00021{font-size:6.900000px;}
.fs15_c00021{font-size:10.380000px;}
.fs14_c00021{font-size:17.280000px;}
.fs5_c00021{font-size:20.760000px;}
.fs23_c00021{font-size:24.180000px;}
.fs6_c00021{font-size:27.660000px;}
.fs16_c00021{font-size:31.080000px;}
.fs25_c00021{font-size:34.560000px;}
.fs24_c00021{font-size:38.040000px;}
.fs1d_c00021{font-size:48.360000px;}
.fs20_c00021{font-size:58.740000px;}
.fs1f_c00021{font-size:62.220000px;}
.fs1b_c00021{font-size:65.640000px;}
.fs12_c00021{font-size:69.120000px;}
.fs22_c00021{font-size:72.600000px;}
.fs21_c00021{font-size:76.020000px;}
.fs13_c00021{font-size:82.920000px;}
.fs10_c00021{font-size:86.400000px;}
.fs1a_c00021{font-size:89.880000px;}
.fs1_c00021{font-size:93.300000px;}
.fsa_c00021{font-size:96.780000px;}
.fs11_c00021{font-size:100.200000px;}
.fse_c00021{font-size:103.680000px;}
.fsf_c00021{font-size:107.160000px;}
.fs18_c00021{font-size:117.480000px;}
.fs9_c00021{font-size:120.960000px;}
.fs19_c00021{font-size:124.440000px;}
.fs1c_c00021{font-size:127.860000px;}
.fsd_c00021{font-size:131.340000px;}
.fs17_c00021{font-size:134.760000px;}
.fsb_c00021{font-size:141.720000px;}
.fs1e_c00021{font-size:145.140000px;}
.fsc_c00021{font-size:152.040000px;}
.fs4_c00021{font-size:162.420000px;}
.fs3_c00021{font-size:169.320000px;}
.fs2_c00021{font-size:176.280000px;}
.y0_c00021{bottom:0.000000px;}
.y55_c00021{bottom:533.085000px;}
.y54_c00021{bottom:736.995000px;}
.y51_c00021{bottom:950.400000px;}
.y50_c00021{bottom:952.125000px;}
.y4f_c00021{bottom:959.910000px;}
.y4e_c00021{bottom:960.765000px;}
.y4d_c00021{bottom:970.275000px;}
.y4a_c00021{bottom:977.190000px;}
.y46_c00021{bottom:978.045000px;}
.y48_c00021{bottom:980.640000px;}
.y47_c00021{bottom:981.510000px;}
.y44_c00021{bottom:983.235000px;}
.y45_c00021{bottom:984.090000px;}
.y49_c00021{bottom:984.960000px;}
.y4c_c00021{bottom:987.555000px;}
.y4b_c00021{bottom:990.150000px;}
.y43_c00021{bottom:995.325000px;}
.y53_c00021{bottom:996.195000px;}
.y3c_c00021{bottom:1003.110000px;}
.y3f_c00021{bottom:1003.965000px;}
.y3d_c00021{bottom:1004.835000px;}
.y3e_c00021{bottom:1007.430000px;}
.y42_c00021{bottom:1008.285000px;}
.y40_c00021{bottom:1010.880000px;}
.y41_c00021{bottom:1011.750000px;}
.y37_c00021{bottom:1033.350000px;}
.y34_c00021{bottom:1034.205000px;}
.y36_c00021{bottom:1035.075000px;}
.y35_c00021{bottom:1035.930000px;}
.y38_c00021{bottom:1036.800000px;}
.y39_c00021{bottom:1037.670000px;}
.y3b_c00021{bottom:1054.080000px;}
.y3a_c00021{bottom:1054.950000px;}
.y33_c00021{bottom:1058.400000px;}
.y30_c00021{bottom:1060.125000px;}
.y31_c00021{bottom:1060.995000px;}
.y32_c00021{bottom:1061.850000px;}
.y2e_c00021{bottom:1093.830000px;}
.y2f_c00021{bottom:1098.150000px;}
.y2d_c00021{bottom:1101.600000px;}
.y27_c00021{bottom:1108.515000px;}
.y2b_c00021{bottom:1111.965000px;}
.y2a_c00021{bottom:1112.835000px;}
.y29_c00021{bottom:1113.690000px;}
.y26_c00021{bottom:1119.750000px;}
.y28_c00021{bottom:1121.475000px;}
.y2c_c00021{bottom:1128.390000px;}
.y25_c00021{bottom:1139.610000px;}
.y20_c00021{bottom:1144.800000px;}
.y23_c00021{bottom:1147.395000px;}
.y22_c00021{bottom:1151.715000px;}
.y21_c00021{bottom:1152.570000px;}
.y24_c00021{bottom:1156.035000px;}
.y1e_c00021{bottom:1176.765000px;}
.y1c_c00021{bottom:1178.490000px;}
.y1b_c00021{bottom:1180.230000px;}
.y1d_c00021{bottom:1185.405000px;}
.y1f_c00021{bottom:1186.275000px;}
.y18_c00021{bottom:1191.450000px;}
.y1a_c00021{bottom:1192.320000px;}
.y52_c00021{bottom:1195.770000px;}
.y19_c00021{bottom:1196.640000px;}
.y13_c00021{bottom:1217.370000px;}
.y14_c00021{bottom:1218.240000px;}
.y17_c00021{bottom:1221.690000px;}
.y15_c00021{bottom:1222.560000px;}
.y16_c00021{bottom:1223.430000px;}
.y11_c00021{bottom:1248.480000px;}
.y10_c00021{bottom:1249.350000px;}
.yd_c00021{bottom:1254.525000px;}
.ye_c00021{bottom:1257.990000px;}
.yf_c00021{bottom:1259.715000px;}
.y12_c00021{bottom:1261.440000px;}
.y9_c00021{bottom:1270.950000px;}
.y7_c00021{bottom:1276.125000px;}
.yc_c00021{bottom:1276.995000px;}
.y8_c00021{bottom:1277.850000px;}
.yb_c00021{bottom:1291.680000px;}
.ya_c00021{bottom:1292.550000px;}
.y4_c00021{bottom:1308.960000px;}
.y6_c00021{bottom:1309.830000px;}
.y1_c00021{bottom:1319.325000px;}
.y3_c00021{bottom:1328.835000px;}
.y56_c00021{bottom:1338.330000px;}
.y2_c00021{bottom:1350.435000px;}
.y5_c00021{bottom:1351.290000px;}
.h9_c00021{height:3.110063px;}
.ha_c00021{height:5.399414px;}
.h2_c00021{height:6.209326px;}
.h17_c00021{height:9.340986px;}
.h28_c00021{height:12.820986px;}
.h16_c00021{height:15.550313px;}
.h7_c00021{height:18.681973px;}
.h25_c00021{height:21.759639px;}
.h8_c00021{height:24.891299px;}
.h18_c00021{height:27.968965px;}
.h27_c00021{height:31.100625px;}
.h26_c00021{height:34.232285px;}
.h1f_c00021{height:43.519277px;}
.h22_c00021{height:52.860264px;}
.h21_c00021{height:55.991924px;}
.h1d_c00021{height:59.069590px;}
.h14_c00021{height:62.201250px;}
.h24_c00021{height:65.332910px;}
.h23_c00021{height:68.410576px;}
.h15_c00021{height:74.619902px;}
.h12_c00021{height:77.751563px;}
.h1c_c00021{height:80.883223px;}
.h3_c00021{height:83.960889px;}
.hc_c00021{height:87.092549px;}
.h13_c00021{height:90.170215px;}
.h10_c00021{height:93.301875px;}
.h11_c00021{height:96.433535px;}
.h1a_c00021{height:105.720527px;}
.hb_c00021{height:108.852188px;}
.h1b_c00021{height:111.983848px;}
.h1e_c00021{height:115.061514px;}
.hf_c00021{height:118.193174px;}
.h19_c00021{height:121.270840px;}
.hd_c00021{height:127.534160px;}
.h20_c00021{height:130.611826px;}
.he_c00021{height:136.821152px;}
.h6_c00021{height:146.162139px;}
.h5_c00021{height:152.371465px;}
.h4_c00021{height:158.634785px;}
.h1_c00021{height:1503.000000px;}
.h0_c00021{height:1503.360000px;}
.w1_c00021{width:1076.250000px;}
.w0_c00021{width:1076.550000px;}
.x0_c00021{left:0.000000px;}
.x61_c00021{left:24.195000px;}
.x60_c00021{left:41.475000px;}
.x62_c00021{left:45.795000px;}
.x5f_c00021{left:79.485000px;}
.x8_c00021{left:148.605000px;}
.xa_c00021{left:152.925000px;}
.x9_c00021{left:170.205000px;}
.x35_c00021{left:233.280000px;}
.x38_c00021{left:259.200000px;}
.xd_c00021{left:261.795000px;}
.xe_c00021{left:272.160000px;}
.x1b_c00021{left:274.755000px;}
.x4f_c00021{left:276.480000px;}
.x39_c00021{left:281.670000px;}
.x1c_c00021{left:285.120000px;}
.x16_c00021{left:289.440000px;}
.x5b_c00021{left:292.035000px;}
.x1d_c00021{left:295.485000px;}
.x3a_c00021{left:297.210000px;}
.x54_c00021{left:315.360000px;}
.x1e_c00021{left:319.680000px;}
.x3b_c00021{left:328.320000px;}
.xf_c00021{left:335.235000px;}
.x55_c00021{left:344.730000px;}
.x24_c00021{left:347.325000px;}
.x2a_c00021{left:362.880000px;}
.x10_c00021{left:366.330000px;}
.x2b_c00021{left:371.520000px;}
.x3c_c00021{left:383.610000px;}
.x1f_c00021{left:387.930000px;}
.x36_c00021{left:396.570000px;}
.x11_c00021{left:400.890000px;}
.x2c_c00021{left:408.675000px;}
.x5c_c00021{left:410.400000px;}
.x56_c00021{left:422.490000px;}
.x3d_c00021{left:424.230000px;}
.x25_c00021{left:428.550000px;}
.x17_c00021{left:440.640000px;}
.x3e_c00021{left:448.410000px;}
.x5d_c00021{left:455.325000px;}
.x20_c00021{left:459.645000px;}
.x3f_c00021{left:466.560000px;}
.x12_c00021{left:479.520000px;}
.x40_c00021{left:497.670000px;}
.x26_c00021{left:500.250000px;}
.x2d_c00021{left:508.890000px;}
.x18_c00021{left:510.630000px;}
.x21_c00021{left:517.530000px;}
.x41_c00021{left:524.445000px;}
.x2e_c00021{left:527.910000px;}
.x27_c00021{left:532.230000px;}
.x50_c00021{left:540.870000px;}
.x42_c00021{left:544.320000px;}
.x51_c00021{left:552.090000px;}
.x32_c00021{left:553.830000px;}
.x37_c00021{left:559.875000px;}
.x43_c00021{left:568.515000px;}
.x33_c00021{left:571.110000px;}
.x5e_c00021{left:579.750000px;}
.x34_c00021{left:590.115000px;}
.x13_c00021{left:601.350000px;}
.x52_c00021{left:605.670000px;}
.x2f_c00021{left:609.120000px;}
.x44_c00021{left:621.210000px;}
.x57_c00021{left:635.040000px;}
.x45_c00021{left:639.360000px;}
.x19_c00021{left:642.810000px;}
.x22_c00021{left:654.915000px;}
.x46_c00021{left:665.280000px;}
.x58_c00021{left:676.515000px;}
.x14_c00021{left:681.690000px;}
.x30_c00021{left:685.155000px;}
.xb_c00021{left:690.330000px;}
.x23_c00021{left:707.610000px;}
.x47_c00021{left:711.930000px;}
.x15_c00021{left:714.525000px;}
.x1_c00021{left:717.120000px;}
.x1a_c00021{left:724.890000px;}
.x7_c00021{left:726.630000px;}
.x2_c00021{left:730.080000px;}
.x28_c00021{left:731.805000px;}
.x31_c00021{left:738.720000px;}
.x3_c00021{left:743.040000px;}
.x48_c00021{left:760.320000px;}
.x59_c00021{left:762.915000px;}
.x4_c00021{left:773.280000px;}
.x49_c00021{left:775.875000px;}
.x29_c00021{left:779.325000px;}
.xc_c00021{left:781.920000px;}
.x4a_c00021{left:795.750000px;}
.x5a_c00021{left:800.070000px;}
.x5_c00021{left:804.390000px;}
.x4b_c00021{left:818.205000px;}
.x6_c00021{left:829.440000px;}
.x53_c00021{left:833.760000px;}
.x4c_c00021{left:838.080000px;}
.x4d_c00021{left:862.275000px;}
.x4e_c00021{left:865.725000px;}
.x64_c00021{left:896.835000px;}
.x63_c00021{left:933.990000px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.v1_c00021{vertical-align:3.093333pt;}
.ls1_c00021{letter-spacing:0.000000pt;}
.ls0_c00021{letter-spacing:40.989067pt;}
.ws0_c00021{word-spacing:0.000000pt;}
.fs7_c00021{font-size:3.072000pt;}
.fs8_c00021{font-size:5.333333pt;}
.fs0_c00021{font-size:6.133333pt;}
.fs15_c00021{font-size:9.226667pt;}
.fs14_c00021{font-size:15.360000pt;}
.fs5_c00021{font-size:18.453333pt;}
.fs23_c00021{font-size:21.493333pt;}
.fs6_c00021{font-size:24.586667pt;}
.fs16_c00021{font-size:27.626667pt;}
.fs25_c00021{font-size:30.720000pt;}
.fs24_c00021{font-size:33.813333pt;}
.fs1d_c00021{font-size:42.986667pt;}
.fs20_c00021{font-size:52.213333pt;}
.fs1f_c00021{font-size:55.306667pt;}
.fs1b_c00021{font-size:58.346667pt;}
.fs12_c00021{font-size:61.440000pt;}
.fs22_c00021{font-size:64.533333pt;}
.fs21_c00021{font-size:67.573333pt;}
.fs13_c00021{font-size:73.706667pt;}
.fs10_c00021{font-size:76.800000pt;}
.fs1a_c00021{font-size:79.893333pt;}
.fs1_c00021{font-size:82.933333pt;}
.fsa_c00021{font-size:86.026667pt;}
.fs11_c00021{font-size:89.066667pt;}
.fse_c00021{font-size:92.160000pt;}
.fsf_c00021{font-size:95.253333pt;}
.fs18_c00021{font-size:104.426667pt;}
.fs9_c00021{font-size:107.520000pt;}
.fs19_c00021{font-size:110.613333pt;}
.fs1c_c00021{font-size:113.653333pt;}
.fsd_c00021{font-size:116.746667pt;}
.fs17_c00021{font-size:119.786667pt;}
.fsb_c00021{font-size:125.973333pt;}
.fs1e_c00021{font-size:129.013333pt;}
.fsc_c00021{font-size:135.146667pt;}
.fs4_c00021{font-size:144.373333pt;}
.fs3_c00021{font-size:150.506667pt;}
.fs2_c00021{font-size:156.693333pt;}
.y0_c00021{bottom:0.000000pt;}
.y55_c00021{bottom:473.853333pt;}
.y54_c00021{bottom:655.106667pt;}
.y51_c00021{bottom:844.800000pt;}
.y50_c00021{bottom:846.333333pt;}
.y4f_c00021{bottom:853.253333pt;}
.y4e_c00021{bottom:854.013333pt;}
.y4d_c00021{bottom:862.466667pt;}
.y4a_c00021{bottom:868.613333pt;}
.y46_c00021{bottom:869.373333pt;}
.y48_c00021{bottom:871.680000pt;}
.y47_c00021{bottom:872.453333pt;}
.y44_c00021{bottom:873.986667pt;}
.y45_c00021{bottom:874.746667pt;}
.y49_c00021{bottom:875.520000pt;}
.y4c_c00021{bottom:877.826667pt;}
.y4b_c00021{bottom:880.133333pt;}
.y43_c00021{bottom:884.733333pt;}
.y53_c00021{bottom:885.506667pt;}
.y3c_c00021{bottom:891.653333pt;}
.y3f_c00021{bottom:892.413333pt;}
.y3d_c00021{bottom:893.186667pt;}
.y3e_c00021{bottom:895.493333pt;}
.y42_c00021{bottom:896.253333pt;}
.y40_c00021{bottom:898.560000pt;}
.y41_c00021{bottom:899.333333pt;}
.y37_c00021{bottom:918.533333pt;}
.y34_c00021{bottom:919.293333pt;}
.y36_c00021{bottom:920.066667pt;}
.y35_c00021{bottom:920.826667pt;}
.y38_c00021{bottom:921.600000pt;}
.y39_c00021{bottom:922.373333pt;}
.y3b_c00021{bottom:936.960000pt;}
.y3a_c00021{bottom:937.733333pt;}
.y33_c00021{bottom:940.800000pt;}
.y30_c00021{bottom:942.333333pt;}
.y31_c00021{bottom:943.106667pt;}
.y32_c00021{bottom:943.866667pt;}
.y2e_c00021{bottom:972.293333pt;}
.y2f_c00021{bottom:976.133333pt;}
.y2d_c00021{bottom:979.200000pt;}
.y27_c00021{bottom:985.346667pt;}
.y2b_c00021{bottom:988.413333pt;}
.y2a_c00021{bottom:989.186667pt;}
.y29_c00021{bottom:989.946667pt;}
.y26_c00021{bottom:995.333333pt;}
.y28_c00021{bottom:996.866667pt;}
.y2c_c00021{bottom:1003.013333pt;}
.y25_c00021{bottom:1012.986667pt;}
.y20_c00021{bottom:1017.600000pt;}
.y23_c00021{bottom:1019.906667pt;}
.y22_c00021{bottom:1023.746667pt;}
.y21_c00021{bottom:1024.506667pt;}
.y24_c00021{bottom:1027.586667pt;}
.y1e_c00021{bottom:1046.013333pt;}
.y1c_c00021{bottom:1047.546667pt;}
.y1b_c00021{bottom:1049.093333pt;}
.y1d_c00021{bottom:1053.693333pt;}
.y1f_c00021{bottom:1054.466667pt;}
.y18_c00021{bottom:1059.066667pt;}
.y1a_c00021{bottom:1059.840000pt;}
.y52_c00021{bottom:1062.906667pt;}
.y19_c00021{bottom:1063.680000pt;}
.y13_c00021{bottom:1082.106667pt;}
.y14_c00021{bottom:1082.880000pt;}
.y17_c00021{bottom:1085.946667pt;}
.y15_c00021{bottom:1086.720000pt;}
.y16_c00021{bottom:1087.493333pt;}
.y11_c00021{bottom:1109.760000pt;}
.y10_c00021{bottom:1110.533333pt;}
.yd_c00021{bottom:1115.133333pt;}
.ye_c00021{bottom:1118.213333pt;}
.yf_c00021{bottom:1119.746667pt;}
.y12_c00021{bottom:1121.280000pt;}
.y9_c00021{bottom:1129.733333pt;}
.y7_c00021{bottom:1134.333333pt;}
.yc_c00021{bottom:1135.106667pt;}
.y8_c00021{bottom:1135.866667pt;}
.yb_c00021{bottom:1148.160000pt;}
.ya_c00021{bottom:1148.933333pt;}
.y4_c00021{bottom:1163.520000pt;}
.y6_c00021{bottom:1164.293333pt;}
.y1_c00021{bottom:1172.733333pt;}
.y3_c00021{bottom:1181.186667pt;}
.y56_c00021{bottom:1189.626667pt;}
.y2_c00021{bottom:1200.386667pt;}
.y5_c00021{bottom:1201.146667pt;}
.h9_c00021{height:2.764500pt;}
.ha_c00021{height:4.799479pt;}
.h2_c00021{height:5.519401pt;}
.h17_c00021{height:8.303099pt;}
.h28_c00021{height:11.396432pt;}
.h16_c00021{height:13.822500pt;}
.h7_c00021{height:16.606198pt;}
.h25_c00021{height:19.341901pt;}
.h8_c00021{height:22.125599pt;}
.h18_c00021{height:24.861302pt;}
.h27_c00021{height:27.645000pt;}
.h26_c00021{height:30.428698pt;}
.h1f_c00021{height:38.683802pt;}
.h22_c00021{height:46.986901pt;}
.h21_c00021{height:49.770599pt;}
.h1d_c00021{height:52.506302pt;}
.h14_c00021{height:55.290000pt;}
.h24_c00021{height:58.073698pt;}
.h23_c00021{height:60.809401pt;}
.h15_c00021{height:66.328802pt;}
.h12_c00021{height:69.112500pt;}
.h1c_c00021{height:71.896198pt;}
.h3_c00021{height:74.631901pt;}
.hc_c00021{height:77.415599pt;}
.h13_c00021{height:80.151302pt;}
.h10_c00021{height:82.935000pt;}
.h11_c00021{height:85.718698pt;}
.h1a_c00021{height:93.973802pt;}
.hb_c00021{height:96.757500pt;}
.h1b_c00021{height:99.541198pt;}
.h1e_c00021{height:102.276901pt;}
.hf_c00021{height:105.060599pt;}
.h19_c00021{height:107.796302pt;}
.hd_c00021{height:113.363698pt;}
.h20_c00021{height:116.099401pt;}
.he_c00021{height:121.618802pt;}
.h6_c00021{height:129.921901pt;}
.h5_c00021{height:135.441302pt;}
.h4_c00021{height:141.008698pt;}
.h1_c00021{height:1336.000000pt;}
.h0_c00021{height:1336.320000pt;}
.w1_c00021{width:956.666667pt;}
.w0_c00021{width:956.933333pt;}
.x0_c00021{left:0.000000pt;}
.x61_c00021{left:21.506667pt;}
.x60_c00021{left:36.866667pt;}
.x62_c00021{left:40.706667pt;}
.x5f_c00021{left:70.653333pt;}
.x8_c00021{left:132.093333pt;}
.xa_c00021{left:135.933333pt;}
.x9_c00021{left:151.293333pt;}
.x35_c00021{left:207.360000pt;}
.x38_c00021{left:230.400000pt;}
.xd_c00021{left:232.706667pt;}
.xe_c00021{left:241.920000pt;}
.x1b_c00021{left:244.226667pt;}
.x4f_c00021{left:245.760000pt;}
.x39_c00021{left:250.373333pt;}
.x1c_c00021{left:253.440000pt;}
.x16_c00021{left:257.280000pt;}
.x5b_c00021{left:259.586667pt;}
.x1d_c00021{left:262.653333pt;}
.x3a_c00021{left:264.186667pt;}
.x54_c00021{left:280.320000pt;}
.x1e_c00021{left:284.160000pt;}
.x3b_c00021{left:291.840000pt;}
.xf_c00021{left:297.986667pt;}
.x55_c00021{left:306.426667pt;}
.x24_c00021{left:308.733333pt;}
.x2a_c00021{left:322.560000pt;}
.x10_c00021{left:325.626667pt;}
.x2b_c00021{left:330.240000pt;}
.x3c_c00021{left:340.986667pt;}
.x1f_c00021{left:344.826667pt;}
.x36_c00021{left:352.506667pt;}
.x11_c00021{left:356.346667pt;}
.x2c_c00021{left:363.266667pt;}
.x5c_c00021{left:364.800000pt;}
.x56_c00021{left:375.546667pt;}
.x3d_c00021{left:377.093333pt;}
.x25_c00021{left:380.933333pt;}
.x17_c00021{left:391.680000pt;}
.x3e_c00021{left:398.586667pt;}
.x5d_c00021{left:404.733333pt;}
.x20_c00021{left:408.573333pt;}
.x3f_c00021{left:414.720000pt;}
.x12_c00021{left:426.240000pt;}
.x40_c00021{left:442.373333pt;}
.x26_c00021{left:444.666667pt;}
.x2d_c00021{left:452.346667pt;}
.x18_c00021{left:453.893333pt;}
.x21_c00021{left:460.026667pt;}
.x41_c00021{left:466.173333pt;}
.x2e_c00021{left:469.253333pt;}
.x27_c00021{left:473.093333pt;}
.x50_c00021{left:480.773333pt;}
.x42_c00021{left:483.840000pt;}
.x51_c00021{left:490.746667pt;}
.x32_c00021{left:492.293333pt;}
.x37_c00021{left:497.666667pt;}
.x43_c00021{left:505.346667pt;}
.x33_c00021{left:507.653333pt;}
.x5e_c00021{left:515.333333pt;}
.x34_c00021{left:524.546667pt;}
.x13_c00021{left:534.533333pt;}
.x52_c00021{left:538.373333pt;}
.x2f_c00021{left:541.440000pt;}
.x44_c00021{left:552.186667pt;}
.x57_c00021{left:564.480000pt;}
.x45_c00021{left:568.320000pt;}
.x19_c00021{left:571.386667pt;}
.x22_c00021{left:582.146667pt;}
.x46_c00021{left:591.360000pt;}
.x58_c00021{left:601.346667pt;}
.x14_c00021{left:605.946667pt;}
.x30_c00021{left:609.026667pt;}
.xb_c00021{left:613.626667pt;}
.x23_c00021{left:628.986667pt;}
.x47_c00021{left:632.826667pt;}
.x15_c00021{left:635.133333pt;}
.x1_c00021{left:637.440000pt;}
.x1a_c00021{left:644.346667pt;}
.x7_c00021{left:645.893333pt;}
.x2_c00021{left:648.960000pt;}
.x28_c00021{left:650.493333pt;}
.x31_c00021{left:656.640000pt;}
.x3_c00021{left:660.480000pt;}
.x48_c00021{left:675.840000pt;}
.x59_c00021{left:678.146667pt;}
.x4_c00021{left:687.360000pt;}
.x49_c00021{left:689.666667pt;}
.x29_c00021{left:692.733333pt;}
.xc_c00021{left:695.040000pt;}
.x4a_c00021{left:707.333333pt;}
.x5a_c00021{left:711.173333pt;}
.x5_c00021{left:715.013333pt;}
.x4b_c00021{left:727.293333pt;}
.x6_c00021{left:737.280000pt;}
.x53_c00021{left:741.120000pt;}
.x4c_c00021{left:744.960000pt;}
.x4d_c00021{left:766.466667pt;}
.x4e_c00021{left:769.533333pt;}
.x64_c00021{left:797.186667pt;}
.x63_c00021{left:830.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35888121289e9c92755c3b6c.woff2')format("woff");}.ff1_c00022{font-family:ff1_c00022;line-height:1.109863;font-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_c00022{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m47_c00022{transform:matrix(0.098075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098075,0.000000,0.000000,0.250000,0,0);}
.m43_c00022{transform:matrix(0.127225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127225,0.000000,0.000000,0.250000,0,0);}
.m41_c00022{transform:matrix(0.129150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129150,0.000000,0.000000,0.250000,0,0);}
.m34_c00022{transform:matrix(0.130550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130550,0.000000,0.000000,0.250000,0,0);}
.m59_c00022{transform:matrix(0.132600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132600,0.000000,0.000000,0.250000,0,0);}
.m53_c00022{transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);}
.m11_c00022{transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);}
.m5d_c00022{transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);}
.m2_c00022{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00022{transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);}
.m3f_c00022{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m2e_c00022{transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);}
.m2d_c00022{transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);}
.m57_c00022{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);}
.m5a_c00022{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.m33_c00022{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);}
.m56_c00022{transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);}
.m49_c00022{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.m52_c00022{transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);}
.m26_c00022{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);}
.m1f_c00022{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m1c_c00022{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m21_c00022{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.m51_c00022{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);}
.m23_c00022{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.m4a_c00022{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);}
.m45_c00022{transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);}
.m5c_c00022{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m22_c00022{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.m36_c00022{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);}
.m60_c00022{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m17_c00022{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);}
.m48_c00022{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m1d_c00022{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);}
.m3b_c00022{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m35_c00022{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);}
.m3d_c00022{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00022{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.m3c_c00022{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00022{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m66_c00022{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m54_c00022{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.m4b_c00022{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m5f_c00022{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);}
.m16_c00022{transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);}
.m2a_c00022{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);}
.m55_c00022{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);}
.m63_c00022{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m3e_c00022{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m31_c00022{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);}
.m4f_c00022{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);}
.m15_c00022{transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);}
.m61_c00022{transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);}
.m58_c00022{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m40_c00022{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.m32_c00022{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);}
.m28_c00022{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m2b_c00022{transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);}
.m10_c00022{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);}
.m2f_c00022{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);}
.m65_c00022{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);}
.m44_c00022{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);}
.m27_c00022{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m29_c00022{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);}
.m5_c00022{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);}
.m37_c00022{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);}
.m4d_c00022{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);}
.m50_c00022{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00022{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);}
.m1_c00022{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00022{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m39_c00022{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);}
.m8_c00022{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);}
.m4_c00022{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);}
.m42_c00022{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c00022{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m25_c00022{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c00022{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00022{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00022{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m46_c00022{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c00022{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);}
.m1e_c00022{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);}
.mc_c00022{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c00022{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m9_c00022{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mb_c00022{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m12_c00022{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.ma_c00022{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m20_c00022{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m24_c00022{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m13_c00022{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m18_c00022{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);}
.m5e_c00022{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m19_c00022{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00022{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m0_c00022{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m38_c00022{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m3_c00022{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00022{transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);}
.m64_c00022{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m62_c00022{transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.465000,0.000000,0.000000,0.250000,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;}
.fs9_c00022{font-size:3.456000px;}
.fs11_c00022{font-size:6.000000px;}
.fs3_c00022{font-size:6.900000px;}
.fs0_c00022{font-size:10.380000px;}
.fs1_c00022{font-size:13.800000px;}
.fs2_c00022{font-size:17.280000px;}
.fse_c00022{font-size:20.760000px;}
.fs24_c00022{font-size:24.180000px;}
.fsf_c00022{font-size:27.660000px;}
.fsd_c00022{font-size:31.080000px;}
.fs4_c00022{font-size:55.320000px;}
.fs5_c00022{font-size:58.740000px;}
.fs7_c00022{font-size:62.220000px;}
.fs6_c00022{font-size:65.640000px;}
.fs8_c00022{font-size:69.120000px;}
.fs17_c00022{font-size:72.600000px;}
.fs18_c00022{font-size:76.020000px;}
.fs13_c00022{font-size:79.500000px;}
.fs26_c00022{font-size:82.920000px;}
.fs1f_c00022{font-size:86.400000px;}
.fs1a_c00022{font-size:89.880000px;}
.fs23_c00022{font-size:93.300000px;}
.fs1e_c00022{font-size:96.780000px;}
.fs1d_c00022{font-size:100.200000px;}
.fs19_c00022{font-size:103.680000px;}
.fs22_c00022{font-size:107.160000px;}
.fs1c_c00022{font-size:110.580000px;}
.fs20_c00022{font-size:114.060000px;}
.fs21_c00022{font-size:117.480000px;}
.fs1b_c00022{font-size:120.960000px;}
.fs14_c00022{font-size:124.440000px;}
.fsb_c00022{font-size:127.860000px;}
.fs25_c00022{font-size:131.340000px;}
.fs16_c00022{font-size:134.760000px;}
.fsc_c00022{font-size:138.240000px;}
.fsa_c00022{font-size:159.000000px;}
.fs15_c00022{font-size:186.600000px;}
.fs12_c00022{font-size:214.260000px;}
.fs10_c00022{font-size:217.740000px;}
.y0_c00022{bottom:0.000000px;}
.y58_c00022{bottom:407.805000px;}
.y57_c00022{bottom:412.995000px;}
.y5c_c00022{bottom:624.675000px;}
.y5b_c00022{bottom:628.995000px;}
.y59_c00022{bottom:634.170000px;}
.y5a_c00022{bottom:635.040000px;}
.y52_c00022{bottom:670.470000px;}
.y53_c00022{bottom:672.195000px;}
.y54_c00022{bottom:673.050000px;}
.y56_c00022{bottom:682.560000px;}
.y55_c00022{bottom:702.435000px;}
.y50_c00022{bottom:704.160000px;}
.y51_c00022{bottom:705.030000px;}
.y4e_c00022{bottom:711.075000px;}
.y4f_c00022{bottom:713.670000px;}
.y4d_c00022{bottom:733.530000px;}
.y48_c00022{bottom:734.400000px;}
.y46_c00022{bottom:735.270000px;}
.y4c_c00022{bottom:736.125000px;}
.y4a_c00022{bottom:737.850000px;}
.y47_c00022{bottom:741.315000px;}
.y4b_c00022{bottom:742.170000px;}
.y49_c00022{bottom:743.040000px;}
.y41_c00022{bottom:765.510000px;}
.y3d_c00022{bottom:766.365000px;}
.y45_c00022{bottom:767.235000px;}
.y3e_c00022{bottom:768.090000px;}
.y3f_c00022{bottom:768.960000px;}
.y44_c00022{bottom:771.555000px;}
.y43_c00022{bottom:772.410000px;}
.y40_c00022{bottom:773.280000px;}
.y42_c00022{bottom:775.875000px;}
.y3c_c00022{bottom:795.750000px;}
.y39_c00022{bottom:797.475000px;}
.y37_c00022{bottom:798.330000px;}
.y3b_c00022{bottom:799.200000px;}
.y38_c00022{bottom:806.115000px;}
.y3a_c00022{bottom:806.970000px;}
.y34_c00022{bottom:829.440000px;}
.y33_c00022{bottom:830.310000px;}
.y36_c00022{bottom:831.165000px;}
.y32_c00022{bottom:832.035000px;}
.y30_c00022{bottom:832.890000px;}
.y35_c00022{bottom:834.630000px;}
.y19_c00022{bottom:836.355000px;}
.y31_c00022{bottom:838.950000px;}
.y18_c00022{bottom:841.530000px;}
.y2e_c00022{bottom:861.405000px;}
.y27_c00022{bottom:864.000000px;}
.y26_c00022{bottom:864.870000px;}
.y29_c00022{bottom:865.725000px;}
.y2b_c00022{bottom:867.450000px;}
.y2c_c00022{bottom:868.320000px;}
.y28_c00022{bottom:871.770000px;}
.y2d_c00022{bottom:873.510000px;}
.y2f_c00022{bottom:888.195000px;}
.y2a_c00022{bottom:889.050000px;}
.y15_c00022{bottom:890.790000px;}
.y25_c00022{bottom:892.515000px;}
.y24_c00022{bottom:894.240000px;}
.y20_c00022{bottom:895.110000px;}
.y21_c00022{bottom:896.835000px;}
.y22_c00022{bottom:897.690000px;}
.y23_c00022{bottom:901.155000px;}
.y1a_c00022{bottom:904.605000px;}
.y1d_c00022{bottom:910.650000px;}
.y1f_c00022{bottom:916.710000px;}
.y1e_c00022{bottom:923.610000px;}
.y1c_c00022{bottom:928.800000px;}
.y1b_c00022{bottom:936.570000px;}
.y13_c00022{bottom:951.270000px;}
.y14_c00022{bottom:956.445000px;}
.y12_c00022{bottom:964.230000px;}
.y17_c00022{bottom:986.685000px;}
.y16_c00022{bottom:998.790000px;}
.y10_c00022{bottom:1130.115000px;}
.y11_c00022{bottom:1130.970000px;}
.yf_c00022{bottom:1217.370000px;}
.ye_c00022{bottom:1219.110000px;}
.yd_c00022{bottom:1309.830000px;}
.y1_c00022{bottom:1310.685000px;}
.yc_c00022{bottom:1311.555000px;}
.y2_c00022{bottom:1312.410000px;}
.yb_c00022{bottom:1341.795000px;}
.y9_c00022{bottom:1381.530000px;}
.ya_c00022{bottom:1393.635000px;}
.y8_c00022{bottom:1404.000000px;}
.y5_c00022{bottom:1404.870000px;}
.y6_c00022{bottom:1405.725000px;}
.y7_c00022{bottom:1406.595000px;}
.y4_c00022{bottom:1412.640000px;}
.y3_c00022{bottom:1424.730000px;}
.hb_c00022{height:3.110063px;}
.h13_c00022{height:5.399414px;}
.h5_c00022{height:6.209326px;}
.h2_c00022{height:9.340986px;}
.h3_c00022{height:12.418652px;}
.h4_c00022{height:15.550313px;}
.h10_c00022{height:18.681973px;}
.h26_c00022{height:21.759639px;}
.h11_c00022{height:24.891299px;}
.hf_c00022{height:27.968965px;}
.h6_c00022{height:49.782598px;}
.h7_c00022{height:52.860264px;}
.h9_c00022{height:55.991924px;}
.h8_c00022{height:59.069590px;}
.ha_c00022{height:62.201250px;}
.h19_c00022{height:65.332910px;}
.h1a_c00022{height:68.410576px;}
.h15_c00022{height:71.542236px;}
.h28_c00022{height:74.619902px;}
.h21_c00022{height:77.751563px;}
.h1c_c00022{height:80.883223px;}
.h25_c00022{height:83.960889px;}
.h20_c00022{height:87.092549px;}
.h1f_c00022{height:90.170215px;}
.h1b_c00022{height:93.301875px;}
.h24_c00022{height:96.433535px;}
.h1e_c00022{height:99.511201px;}
.h22_c00022{height:102.642861px;}
.h23_c00022{height:105.720527px;}
.h1d_c00022{height:108.852188px;}
.h16_c00022{height:111.983848px;}
.hd_c00022{height:115.061514px;}
.h27_c00022{height:118.193174px;}
.h18_c00022{height:121.270840px;}
.he_c00022{height:124.402500px;}
.hc_c00022{height:143.084473px;}
.h17_c00022{height:167.921777px;}
.h14_c00022{height:192.813076px;}
.h12_c00022{height:195.944736px;}
.h0_c00022{height:1515.450000px;}
.h1_c00022{height:1515.750000px;}
.w1_c00022{width:1065.000000px;}
.w0_c00022{width:1065.315000px;}
.x0_c00022{left:0.000000px;}
.x26_c00022{left:118.365000px;}
.x27_c00022{left:127.005000px;}
.x1_c00022{left:131.325000px;}
.x2_c00022{left:152.070000px;}
.x2c_c00022{left:207.360000px;}
.x42_c00022{left:209.955000px;}
.x37_c00022{left:212.550000px;}
.x55_c00022{left:214.275000px;}
.x19_c00022{left:216.870000px;}
.x1a_c00022{left:222.915000px;}
.x43_c00022{left:241.050000px;}
.x4d_c00022{left:259.200000px;}
.x2d_c00022{left:264.390000px;}
.x28_c00022{left:266.115000px;}
.x50_c00022{left:268.710000px;}
.x24_c00022{left:276.480000px;}
.x25_c00022{left:285.990000px;}
.x61_c00022{left:297.210000px;}
.x2e_c00022{left:299.805000px;}
.x4_c00022{left:304.995000px;}
.x44_c00022{left:322.275000px;}
.x51_c00022{left:324.870000px;}
.x38_c00022{left:326.595000px;}
.x5_c00022{left:328.320000px;}
.x56_c00022{left:344.730000px;}
.x63_c00022{left:361.155000px;}
.x5b_c00022{left:363.750000px;}
.x6_c00022{left:365.475000px;}
.x39_c00022{left:374.115000px;}
.x57_c00022{left:375.840000px;}
.x45_c00022{left:379.290000px;}
.x2f_c00022{left:384.480000px;}
.x7_c00022{left:387.930000px;}
.x5c_c00022{left:399.165000px;}
.x62_c00022{left:412.125000px;}
.x3a_c00022{left:417.315000px;}
.x58_c00022{left:421.635000px;}
.x29_c00022{left:425.955000px;}
.x3_c00022{left:438.045000px;}
.x8_c00022{left:448.410000px;}
.x30_c00022{left:455.325000px;}
.x3b_c00022{left:461.370000px;}
.x9_c00022{left:469.155000px;}
.x52_c00022{left:472.605000px;}
.x31_c00022{left:480.390000px;}
.xa_c00022{left:489.030000px;}
.x46_c00022{left:494.205000px;}
.xb_c00022{left:502.845000px;}
.x17_c00022{left:520.125000px;}
.xc_c00022{left:527.910000px;}
.x4e_c00022{left:533.085000px;}
.x2a_c00022{left:540.000000px;}
.x32_c00022{left:544.320000px;}
.x1b_c00022{left:546.045000px;}
.xd_c00022{left:547.770000px;}
.x53_c00022{left:559.875000px;}
.x18_c00022{left:562.470000px;}
.xe_c00022{left:571.965000px;}
.x47_c00022{left:576.285000px;}
.x33_c00022{left:584.070000px;}
.xf_c00022{left:591.840000px;}
.x48_c00022{left:601.350000px;}
.x59_c00022{left:606.525000px;}
.x4f_c00022{left:610.845000px;}
.x10_c00022{left:612.570000px;}
.x34_c00022{left:620.355000px;}
.x11_c00022{left:637.635000px;}
.x35_c00022{left:639.360000px;}
.x2b_c00022{left:641.955000px;}
.x12_c00022{left:657.510000px;}
.x5a_c00022{left:659.235000px;}
.x49_c00022{left:663.555000px;}
.x3c_c00022{left:672.195000px;}
.x13_c00022{left:678.240000px;}
.x14_c00022{left:698.970000px;}
.x5d_c00022{left:709.350000px;}
.x4a_c00022{left:717.990000px;}
.x15_c00022{left:721.440000px;}
.x16_c00022{left:741.315000px;}
.x5e_c00022{left:743.910000px;}
.x3d_c00022{left:748.230000px;}
.x36_c00022{left:750.810000px;}
.x4b_c00022{left:776.730000px;}
.x54_c00022{left:798.330000px;}
.x3e_c00022{left:803.520000px;}
.x3f_c00022{left:846.720000px;}
.x40_c00022{left:855.360000px;}
.x4c_c00022{left:859.680000px;}
.x41_c00022{left:870.045000px;}
.x1e_c00022{left:881.280000px;}
.x1f_c00022{left:897.690000px;}
.x23_c00022{left:980.640000px;}
.x5f_c00022{left:994.470000px;}
.x60_c00022{left:1007.430000px;}
.x1c_c00022{left:1013.475000px;}
.x1d_c00022{left:1025.565000px;}
.x20_c00022{left:1029.030000px;}
.x21_c00022{left:1047.165000px;}
.x22_c00022{left:1060.125000px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ws0_c00022{word-spacing:0.000000pt;}
.fs9_c00022{font-size:3.072000pt;}
.fs11_c00022{font-size:5.333333pt;}
.fs3_c00022{font-size:6.133333pt;}
.fs0_c00022{font-size:9.226667pt;}
.fs1_c00022{font-size:12.266667pt;}
.fs2_c00022{font-size:15.360000pt;}
.fse_c00022{font-size:18.453333pt;}
.fs24_c00022{font-size:21.493333pt;}
.fsf_c00022{font-size:24.586667pt;}
.fsd_c00022{font-size:27.626667pt;}
.fs4_c00022{font-size:49.173333pt;}
.fs5_c00022{font-size:52.213333pt;}
.fs7_c00022{font-size:55.306667pt;}
.fs6_c00022{font-size:58.346667pt;}
.fs8_c00022{font-size:61.440000pt;}
.fs17_c00022{font-size:64.533333pt;}
.fs18_c00022{font-size:67.573333pt;}
.fs13_c00022{font-size:70.666667pt;}
.fs26_c00022{font-size:73.706667pt;}
.fs1f_c00022{font-size:76.800000pt;}
.fs1a_c00022{font-size:79.893333pt;}
.fs23_c00022{font-size:82.933333pt;}
.fs1e_c00022{font-size:86.026667pt;}
.fs1d_c00022{font-size:89.066667pt;}
.fs19_c00022{font-size:92.160000pt;}
.fs22_c00022{font-size:95.253333pt;}
.fs1c_c00022{font-size:98.293333pt;}
.fs20_c00022{font-size:101.386667pt;}
.fs21_c00022{font-size:104.426667pt;}
.fs1b_c00022{font-size:107.520000pt;}
.fs14_c00022{font-size:110.613333pt;}
.fsb_c00022{font-size:113.653333pt;}
.fs25_c00022{font-size:116.746667pt;}
.fs16_c00022{font-size:119.786667pt;}
.fsc_c00022{font-size:122.880000pt;}
.fsa_c00022{font-size:141.333333pt;}
.fs15_c00022{font-size:165.866667pt;}
.fs12_c00022{font-size:190.453333pt;}
.fs10_c00022{font-size:193.546667pt;}
.y0_c00022{bottom:0.000000pt;}
.y58_c00022{bottom:362.493333pt;}
.y57_c00022{bottom:367.106667pt;}
.y5c_c00022{bottom:555.266667pt;}
.y5b_c00022{bottom:559.106667pt;}
.y59_c00022{bottom:563.706667pt;}
.y5a_c00022{bottom:564.480000pt;}
.y52_c00022{bottom:595.973333pt;}
.y53_c00022{bottom:597.506667pt;}
.y54_c00022{bottom:598.266667pt;}
.y56_c00022{bottom:606.720000pt;}
.y55_c00022{bottom:624.386667pt;}
.y50_c00022{bottom:625.920000pt;}
.y51_c00022{bottom:626.693333pt;}
.y4e_c00022{bottom:632.066667pt;}
.y4f_c00022{bottom:634.373333pt;}
.y4d_c00022{bottom:652.026667pt;}
.y48_c00022{bottom:652.800000pt;}
.y46_c00022{bottom:653.573333pt;}
.y4c_c00022{bottom:654.333333pt;}
.y4a_c00022{bottom:655.866667pt;}
.y47_c00022{bottom:658.946667pt;}
.y4b_c00022{bottom:659.706667pt;}
.y49_c00022{bottom:660.480000pt;}
.y41_c00022{bottom:680.453333pt;}
.y3d_c00022{bottom:681.213333pt;}
.y45_c00022{bottom:681.986667pt;}
.y3e_c00022{bottom:682.746667pt;}
.y3f_c00022{bottom:683.520000pt;}
.y44_c00022{bottom:685.826667pt;}
.y43_c00022{bottom:686.586667pt;}
.y40_c00022{bottom:687.360000pt;}
.y42_c00022{bottom:689.666667pt;}
.y3c_c00022{bottom:707.333333pt;}
.y39_c00022{bottom:708.866667pt;}
.y37_c00022{bottom:709.626667pt;}
.y3b_c00022{bottom:710.400000pt;}
.y38_c00022{bottom:716.546667pt;}
.y3a_c00022{bottom:717.306667pt;}
.y34_c00022{bottom:737.280000pt;}
.y33_c00022{bottom:738.053333pt;}
.y36_c00022{bottom:738.813333pt;}
.y32_c00022{bottom:739.586667pt;}
.y30_c00022{bottom:740.346667pt;}
.y35_c00022{bottom:741.893333pt;}
.y19_c00022{bottom:743.426667pt;}
.y31_c00022{bottom:745.733333pt;}
.y18_c00022{bottom:748.026667pt;}
.y2e_c00022{bottom:765.693333pt;}
.y27_c00022{bottom:768.000000pt;}
.y26_c00022{bottom:768.773333pt;}
.y29_c00022{bottom:769.533333pt;}
.y2b_c00022{bottom:771.066667pt;}
.y2c_c00022{bottom:771.840000pt;}
.y28_c00022{bottom:774.906667pt;}
.y2d_c00022{bottom:776.453333pt;}
.y2f_c00022{bottom:789.506667pt;}
.y2a_c00022{bottom:790.266667pt;}
.y15_c00022{bottom:791.813333pt;}
.y25_c00022{bottom:793.346667pt;}
.y24_c00022{bottom:794.880000pt;}
.y20_c00022{bottom:795.653333pt;}
.y21_c00022{bottom:797.186667pt;}
.y22_c00022{bottom:797.946667pt;}
.y23_c00022{bottom:801.026667pt;}
.y1a_c00022{bottom:804.093333pt;}
.y1d_c00022{bottom:809.466667pt;}
.y1f_c00022{bottom:814.853333pt;}
.y1e_c00022{bottom:820.986667pt;}
.y1c_c00022{bottom:825.600000pt;}
.y1b_c00022{bottom:832.506667pt;}
.y13_c00022{bottom:845.573333pt;}
.y14_c00022{bottom:850.173333pt;}
.y12_c00022{bottom:857.093333pt;}
.y17_c00022{bottom:877.053333pt;}
.y16_c00022{bottom:887.813333pt;}
.y10_c00022{bottom:1004.546667pt;}
.y11_c00022{bottom:1005.306667pt;}
.yf_c00022{bottom:1082.106667pt;}
.ye_c00022{bottom:1083.653333pt;}
.yd_c00022{bottom:1164.293333pt;}
.y1_c00022{bottom:1165.053333pt;}
.yc_c00022{bottom:1165.826667pt;}
.y2_c00022{bottom:1166.586667pt;}
.yb_c00022{bottom:1192.706667pt;}
.y9_c00022{bottom:1228.026667pt;}
.ya_c00022{bottom:1238.786667pt;}
.y8_c00022{bottom:1248.000000pt;}
.y5_c00022{bottom:1248.773333pt;}
.y6_c00022{bottom:1249.533333pt;}
.y7_c00022{bottom:1250.306667pt;}
.y4_c00022{bottom:1255.680000pt;}
.y3_c00022{bottom:1266.426667pt;}
.hb_c00022{height:2.764500pt;}
.h13_c00022{height:4.799479pt;}
.h5_c00022{height:5.519401pt;}
.h2_c00022{height:8.303099pt;}
.h3_c00022{height:11.038802pt;}
.h4_c00022{height:13.822500pt;}
.h10_c00022{height:16.606198pt;}
.h26_c00022{height:19.341901pt;}
.h11_c00022{height:22.125599pt;}
.hf_c00022{height:24.861302pt;}
.h6_c00022{height:44.251198pt;}
.h7_c00022{height:46.986901pt;}
.h9_c00022{height:49.770599pt;}
.h8_c00022{height:52.506302pt;}
.ha_c00022{height:55.290000pt;}
.h19_c00022{height:58.073698pt;}
.h1a_c00022{height:60.809401pt;}
.h15_c00022{height:63.593099pt;}
.h28_c00022{height:66.328802pt;}
.h21_c00022{height:69.112500pt;}
.h1c_c00022{height:71.896198pt;}
.h25_c00022{height:74.631901pt;}
.h20_c00022{height:77.415599pt;}
.h1f_c00022{height:80.151302pt;}
.h1b_c00022{height:82.935000pt;}
.h24_c00022{height:85.718698pt;}
.h1e_c00022{height:88.454401pt;}
.h22_c00022{height:91.238099pt;}
.h23_c00022{height:93.973802pt;}
.h1d_c00022{height:96.757500pt;}
.h16_c00022{height:99.541198pt;}
.hd_c00022{height:102.276901pt;}
.h27_c00022{height:105.060599pt;}
.h18_c00022{height:107.796302pt;}
.he_c00022{height:110.580000pt;}
.hc_c00022{height:127.186198pt;}
.h17_c00022{height:149.263802pt;}
.h14_c00022{height:171.389401pt;}
.h12_c00022{height:174.173099pt;}
.h0_c00022{height:1347.066667pt;}
.h1_c00022{height:1347.333333pt;}
.w1_c00022{width:946.666667pt;}
.w0_c00022{width:946.946667pt;}
.x0_c00022{left:0.000000pt;}
.x26_c00022{left:105.213333pt;}
.x27_c00022{left:112.893333pt;}
.x1_c00022{left:116.733333pt;}
.x2_c00022{left:135.173333pt;}
.x2c_c00022{left:184.320000pt;}
.x42_c00022{left:186.626667pt;}
.x37_c00022{left:188.933333pt;}
.x55_c00022{left:190.466667pt;}
.x19_c00022{left:192.773333pt;}
.x1a_c00022{left:198.146667pt;}
.x43_c00022{left:214.266667pt;}
.x4d_c00022{left:230.400000pt;}
.x2d_c00022{left:235.013333pt;}
.x28_c00022{left:236.546667pt;}
.x50_c00022{left:238.853333pt;}
.x24_c00022{left:245.760000pt;}
.x25_c00022{left:254.213333pt;}
.x61_c00022{left:264.186667pt;}
.x2e_c00022{left:266.493333pt;}
.x4_c00022{left:271.106667pt;}
.x44_c00022{left:286.466667pt;}
.x51_c00022{left:288.773333pt;}
.x38_c00022{left:290.306667pt;}
.x5_c00022{left:291.840000pt;}
.x56_c00022{left:306.426667pt;}
.x63_c00022{left:321.026667pt;}
.x5b_c00022{left:323.333333pt;}
.x6_c00022{left:324.866667pt;}
.x39_c00022{left:332.546667pt;}
.x57_c00022{left:334.080000pt;}
.x45_c00022{left:337.146667pt;}
.x2f_c00022{left:341.760000pt;}
.x7_c00022{left:344.826667pt;}
.x5c_c00022{left:354.813333pt;}
.x62_c00022{left:366.333333pt;}
.x3a_c00022{left:370.946667pt;}
.x58_c00022{left:374.786667pt;}
.x29_c00022{left:378.626667pt;}
.x3_c00022{left:389.373333pt;}
.x8_c00022{left:398.586667pt;}
.x30_c00022{left:404.733333pt;}
.x3b_c00022{left:410.106667pt;}
.x9_c00022{left:417.026667pt;}
.x52_c00022{left:420.093333pt;}
.x31_c00022{left:427.013333pt;}
.xa_c00022{left:434.693333pt;}
.x46_c00022{left:439.293333pt;}
.xb_c00022{left:446.973333pt;}
.x17_c00022{left:462.333333pt;}
.xc_c00022{left:469.253333pt;}
.x4e_c00022{left:473.853333pt;}
.x2a_c00022{left:480.000000pt;}
.x32_c00022{left:483.840000pt;}
.x1b_c00022{left:485.373333pt;}
.xd_c00022{left:486.906667pt;}
.x53_c00022{left:497.666667pt;}
.x18_c00022{left:499.973333pt;}
.xe_c00022{left:508.413333pt;}
.x47_c00022{left:512.253333pt;}
.x33_c00022{left:519.173333pt;}
.xf_c00022{left:526.080000pt;}
.x48_c00022{left:534.533333pt;}
.x59_c00022{left:539.133333pt;}
.x4f_c00022{left:542.973333pt;}
.x10_c00022{left:544.506667pt;}
.x34_c00022{left:551.426667pt;}
.x11_c00022{left:566.786667pt;}
.x35_c00022{left:568.320000pt;}
.x2b_c00022{left:570.626667pt;}
.x12_c00022{left:584.453333pt;}
.x5a_c00022{left:585.986667pt;}
.x49_c00022{left:589.826667pt;}
.x3c_c00022{left:597.506667pt;}
.x13_c00022{left:602.880000pt;}
.x14_c00022{left:621.306667pt;}
.x5d_c00022{left:630.533333pt;}
.x4a_c00022{left:638.213333pt;}
.x15_c00022{left:641.280000pt;}
.x16_c00022{left:658.946667pt;}
.x5e_c00022{left:661.253333pt;}
.x3d_c00022{left:665.093333pt;}
.x36_c00022{left:667.386667pt;}
.x4b_c00022{left:690.426667pt;}
.x54_c00022{left:709.626667pt;}
.x3e_c00022{left:714.240000pt;}
.x3f_c00022{left:752.640000pt;}
.x40_c00022{left:760.320000pt;}
.x4c_c00022{left:764.160000pt;}
.x41_c00022{left:773.373333pt;}
.x1e_c00022{left:783.360000pt;}
.x1f_c00022{left:797.946667pt;}
.x23_c00022{left:871.680000pt;}
.x5f_c00022{left:883.973333pt;}
.x60_c00022{left:895.493333pt;}
.x1c_c00022{left:900.866667pt;}
.x1d_c00022{left:911.613333pt;}
.x20_c00022{left:914.693333pt;}
.x21_c00022{left:930.813333pt;}
.x22_c00022{left:942.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_acfa1b9ccc7f9c1fcf97241c.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.109863;font-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_c00023{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);}
.m25_c00023{transform:matrix(0.132050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132050,0.000000,0.000000,0.250000,0,0);}
.m55_c00023{transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);}
.m24_c00023{transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);}
.m26_c00023{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m33_c00023{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m51_c00023{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);}
.m39_c00023{transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);}
.m3d_c00023{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mf_c00023{transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);}
.m2d_c00023{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.mb_c00023{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);}
.m4d_c00023{transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);}
.m4f_c00023{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);}
.m32_c00023{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m31_c00023{transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);}
.m11_c00023{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);}
.me_c00023{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.m14_c00023{transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);}
.m2b_c00023{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);}
.m28_c00023{transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);}
.m41_c00023{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m27_c00023{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);}
.m20_c00023{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);}
.m29_c00023{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m3f_c00023{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.m49_c00023{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);}
.mc_c00023{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);}
.m2f_c00023{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.m38_c00023{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);}
.m17_c00023{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);}
.m4b_c00023{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);}
.m2c_c00023{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);}
.m43_c00023{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);}
.m12_c00023{transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);}
.m53_c00023{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);}
.m5_c00023{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m10_c00023{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_c00023{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);}
.m2a_c00023{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m34_c00023{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);}
.md_c00023{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);}
.m45_c00023{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m4a_c00023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8_c00023{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m44_c00023{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);}
.m30_c00023{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00023{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_c00023{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m35_c00023{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);}
.m36_c00023{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);}
.m3c_c00023{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00023{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c00023{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00023{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);}
.m4e_c00023{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00023{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);}
.m50_c00023{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00023{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);}
.m21_c00023{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c00023{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00023{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c00023{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00023{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);}
.m54_c00023{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00023{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m3_c00023{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);}
.m9_c00023{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m42_c00023{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);}
.m46_c00023{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c00023{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m37_c00023{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00023{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m13_c00023{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m22_c00023{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);}
.m52_c00023{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00023{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m4_c00023{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m40_c00023{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);}
.m48_c00023{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m18_c00023{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m19_c00023{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);}
.m1a_c00023{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m0_c00023{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m1_c00023{transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00023{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,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;}
.fs17_c00023{font-size:3.456000px;}
.fs19_c00023{font-size:6.000000px;}
.fs18_c00023{font-size:6.900000px;}
.fs2_c00023{font-size:10.380000px;}
.fs6_c00023{font-size:13.800000px;}
.fs3_c00023{font-size:17.280000px;}
.fs0_c00023{font-size:20.760000px;}
.fs10_c00023{font-size:24.180000px;}
.fse_c00023{font-size:27.660000px;}
.fs1_c00023{font-size:31.080000px;}
.fs4_c00023{font-size:34.560000px;}
.fs16_c00023{font-size:38.040000px;}
.fsa_c00023{font-size:41.460000px;}
.fs1d_c00023{font-size:44.940000px;}
.fs12_c00023{font-size:48.360000px;}
.fsf_c00023{font-size:51.840000px;}
.fs5_c00023{font-size:55.320000px;}
.fs9_c00023{font-size:58.740000px;}
.fs14_c00023{font-size:62.220000px;}
.fs1c_c00023{font-size:65.640000px;}
.fs7_c00023{font-size:69.120000px;}
.fsb_c00023{font-size:72.600000px;}
.fsc_c00023{font-size:76.020000px;}
.fs11_c00023{font-size:79.500000px;}
.fs8_c00023{font-size:82.920000px;}
.fsd_c00023{font-size:89.880000px;}
.fs15_c00023{font-size:93.300000px;}
.fs1a_c00023{font-size:96.780000px;}
.fs13_c00023{font-size:103.680000px;}
.fs1b_c00023{font-size:110.580000px;}
.y0_c00023{bottom:0.000000px;}
.y53_c00023{bottom:210.810000px;}
.y52_c00023{bottom:216.870000px;}
.y54_c00023{bottom:231.555000px;}
.y4e_c00023{bottom:233.280000px;}
.y4f_c00023{bottom:235.875000px;}
.y4d_c00023{bottom:236.730000px;}
.y50_c00023{bottom:238.470000px;}
.y47_c00023{bottom:252.285000px;}
.y51_c00023{bottom:253.155000px;}
.y49_c00023{bottom:254.010000px;}
.y4c_c00023{bottom:254.880000px;}
.y4b_c00023{bottom:256.605000px;}
.y46_c00023{bottom:258.330000px;}
.y48_c00023{bottom:259.200000px;}
.y4a_c00023{bottom:260.925000px;}
.y45_c00023{bottom:271.290000px;}
.y3f_c00023{bottom:273.030000px;}
.y40_c00023{bottom:274.755000px;}
.y41_c00023{bottom:277.350000px;}
.y42_c00023{bottom:279.930000px;}
.y43_c00023{bottom:280.800000px;}
.y44_c00023{bottom:283.395000px;}
.y3c_c00023{bottom:295.485000px;}
.y3d_c00023{bottom:296.355000px;}
.y3a_c00023{bottom:297.210000px;}
.y3b_c00023{bottom:298.080000px;}
.y39_c00023{bottom:298.950000px;}
.y3e_c00023{bottom:300.675000px;}
.y34_c00023{bottom:311.910000px;}
.y37_c00023{bottom:313.635000px;}
.y33_c00023{bottom:317.955000px;}
.y36_c00023{bottom:318.810000px;}
.y35_c00023{bottom:319.680000px;}
.y38_c00023{bottom:324.000000px;}
.y32_c00023{bottom:342.150000px;}
.y30_c00023{bottom:1211.325000px;}
.y31_c00023{bottom:1212.195000px;}
.y2f_c00023{bottom:1217.370000px;}
.y29_c00023{bottom:1308.960000px;}
.y2b_c00023{bottom:1309.830000px;}
.y28_c00023{bottom:1310.685000px;}
.y2a_c00023{bottom:1313.280000px;}
.y27_c00023{bottom:1314.150000px;}
.y24_c00023{bottom:1315.005000px;}
.y25_c00023{bottom:1317.600000px;}
.y26_c00023{bottom:1319.325000px;}
.y23_c00023{bottom:1327.965000px;}
.y1f_c00023{bottom:1328.835000px;}
.y1e_c00023{bottom:1329.690000px;}
.y21_c00023{bottom:1331.430000px;}
.y20_c00023{bottom:1334.010000px;}
.y22_c00023{bottom:1339.200000px;}
.y15_c00023{bottom:1346.115000px;}
.y1c_c00023{bottom:1348.710000px;}
.y19_c00023{bottom:1350.435000px;}
.y1a_c00023{bottom:1351.290000px;}
.y1d_c00023{bottom:1352.160000px;}
.y14_c00023{bottom:1353.885000px;}
.y1b_c00023{bottom:1354.755000px;}
.y18_c00023{bottom:1355.610000px;}
.y17_c00023{bottom:1356.480000px;}
.y16_c00023{bottom:1357.350000px;}
.yc_c00023{bottom:1365.120000px;}
.y10_c00023{bottom:1366.845000px;}
.yd_c00023{bottom:1367.715000px;}
.ye_c00023{bottom:1368.570000px;}
.yf_c00023{bottom:1369.440000px;}
.y11_c00023{bottom:1371.165000px;}
.y13_c00023{bottom:1372.890000px;}
.y12_c00023{bottom:1374.630000px;}
.y6_c00023{bottom:1390.170000px;}
.y9_c00023{bottom:1394.490000px;}
.yb_c00023{bottom:1395.360000px;}
.y7_c00023{bottom:1396.230000px;}
.y2d_c00023{bottom:1397.085000px;}
.y8_c00023{bottom:1398.810000px;}
.y2e_c00023{bottom:1399.680000px;}
.ya_c00023{bottom:1400.550000px;}
.y2c_c00023{bottom:1404.870000px;}
.y4_c00023{bottom:1407.450000px;}
.y5_c00023{bottom:1410.045000px;}
.y2_c00023{bottom:1418.685000px;}
.y3_c00023{bottom:1419.555000px;}
.y1_c00023{bottom:1429.050000px;}
.h19_c00023{height:3.110063px;}
.h1b_c00023{height:5.399414px;}
.h1a_c00023{height:6.209326px;}
.h4_c00023{height:9.340986px;}
.h8_c00023{height:12.418652px;}
.h5_c00023{height:15.550313px;}
.h2_c00023{height:18.681973px;}
.h12_c00023{height:21.759639px;}
.h10_c00023{height:24.891299px;}
.h3_c00023{height:27.968965px;}
.h6_c00023{height:31.100625px;}
.h18_c00023{height:34.232285px;}
.hc_c00023{height:37.309951px;}
.h1f_c00023{height:40.441611px;}
.h14_c00023{height:43.519277px;}
.h11_c00023{height:46.650937px;}
.h7_c00023{height:49.782598px;}
.hb_c00023{height:52.860264px;}
.h16_c00023{height:55.991924px;}
.h1e_c00023{height:59.069590px;}
.h9_c00023{height:62.201250px;}
.hd_c00023{height:65.332910px;}
.he_c00023{height:68.410576px;}
.h13_c00023{height:71.542236px;}
.ha_c00023{height:74.619902px;}
.hf_c00023{height:80.883223px;}
.h17_c00023{height:83.960889px;}
.h1c_c00023{height:87.092549px;}
.h15_c00023{height:93.301875px;}
.h1d_c00023{height:99.511201px;}
.h1_c00023{height:1503.000000px;}
.h0_c00023{height:1503.360000px;}
.w1_c00023{width:1076.250000px;}
.w0_c00023{width:1076.550000px;}
.x0_c00023{left:0.000000px;}
.x4_c00023{left:125.280000px;}
.x5_c00023{left:145.155000px;}
.x2_c00023{left:149.475000px;}
.x39_c00023{left:161.565075px;}
.x3a_c00023{left:166.755000px;}
.x3b_c00023{left:174.525000px;}
.x3_c00023{left:179.715000px;}
.xc_c00023{left:230.685000px;}
.x19_c00023{left:241.920000px;}
.x1a_c00023{left:246.240000px;}
.x29_c00023{left:283.395000px;}
.x30_c00023{left:286.845000px;}
.x31_c00023{left:294.630000px;}
.xd_c00023{left:298.080000px;}
.x6_c00023{left:322.275000px;}
.xe_c00023{left:324.000000px;}
.x1b_c00023{left:326.595000px;}
.x7_c00023{left:336.090000px;}
.x2a_c00023{left:346.470000px;}
.xf_c00023{left:349.920000px;}
.x8_c00023{left:352.515000px;}
.x2b_c00023{left:359.430000px;}
.x32_c00023{left:362.880000px;}
.x1c_c00023{left:372.390000px;}
.x2c_c00023{left:382.755000px;}
.x10_c00023{left:391.395000px;}
.x1d_c00023{left:407.805000px;}
.x33_c00023{left:410.400000px;}
.x11_c00023{left:413.850000px;}
.x1e_c00023{left:418.170000px;}
.x1f_c00023{left:425.955000px;}
.x9_c00023{left:461.370000px;}
.x2d_c00023{left:465.690000px;}
.x20_c00023{left:475.200000px;}
.x12_c00023{left:505.440000px;}
.xa_c00023{left:508.890000px;}
.x21_c00023{left:516.675000px;}
.x13_c00023{left:549.510000px;}
.x34_c00023{left:556.410000px;}
.xb_c00023{left:563.325000px;}
.x35_c00023{left:565.920000px;}
.x22_c00023{left:567.645000px;}
.x42_c00023{left:572.835000px;}
.x3c_c00023{left:588.390000px;}
.x2e_c00023{left:596.160000px;}
.x4d_c00023{left:598.755000px;}
.x48_c00023{left:600.480000px;}
.x43_c00023{left:606.525000px;}
.x36_c00023{left:609.120000px;}
.x3d_c00023{left:615.165000px;}
.x23_c00023{left:619.485000px;}
.x14_c00023{left:623.805000px;}
.x4e_c00023{left:644.550000px;}
.x15_c00023{left:661.830000px;}
.x4f_c00023{left:665.280000px;}
.x50_c00023{left:673.920000px;}
.x49_c00023{left:675.645000px;}
.x57_c00023{left:680.835000px;}
.x44_c00023{left:685.155000px;}
.x45_c00023{left:708.480000px;}
.x3e_c00023{left:715.395000px;}
.x16_c00023{left:718.845000px;}
.x24_c00023{left:720.570000px;}
.x25_c00023{left:725.760000px;}
.x51_c00023{left:730.080000px;}
.x52_c00023{left:740.445000px;}
.x26_c00023{left:745.635000px;}
.x59_c00023{left:748.230000px;}
.x4a_c00023{left:750.810000px;}
.x17_c00023{left:764.640000px;}
.x53_c00023{left:766.365000px;}
.x46_c00023{left:768.090000px;}
.x3f_c00023{left:770.685000px;}
.x54_c00023{left:775.875000px;}
.x47_c00023{left:778.470000px;}
.x5a_c00023{left:780.195000px;}
.x27_c00023{left:785.370000px;}
.x58_c00023{left:788.835000px;}
.x55_c00023{left:796.605000px;}
.x40_c00023{left:800.070000px;}
.x4b_c00023{left:804.390000px;}
.x1_c00023{left:812.160000px;}
.x18_c00023{left:817.350000px;}
.x56_c00023{left:819.075000px;}
.x28_c00023{left:825.120000px;}
.x37_c00023{left:833.760000px;}
.x5b_c00023{left:838.080000px;}
.x38_c00023{left:856.230000px;}
.x2f_c00023{left:868.320000px;}
.x4c_c00023{left:870.045000px;}
.x41_c00023{left:872.640000px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls0_c00023{letter-spacing:0.000000pt;}
.ws0_c00023{word-spacing:0.000000pt;}
.fs17_c00023{font-size:3.072000pt;}
.fs19_c00023{font-size:5.333333pt;}
.fs18_c00023{font-size:6.133333pt;}
.fs2_c00023{font-size:9.226667pt;}
.fs6_c00023{font-size:12.266667pt;}
.fs3_c00023{font-size:15.360000pt;}
.fs0_c00023{font-size:18.453333pt;}
.fs10_c00023{font-size:21.493333pt;}
.fse_c00023{font-size:24.586667pt;}
.fs1_c00023{font-size:27.626667pt;}
.fs4_c00023{font-size:30.720000pt;}
.fs16_c00023{font-size:33.813333pt;}
.fsa_c00023{font-size:36.853333pt;}
.fs1d_c00023{font-size:39.946667pt;}
.fs12_c00023{font-size:42.986667pt;}
.fsf_c00023{font-size:46.080000pt;}
.fs5_c00023{font-size:49.173333pt;}
.fs9_c00023{font-size:52.213333pt;}
.fs14_c00023{font-size:55.306667pt;}
.fs1c_c00023{font-size:58.346667pt;}
.fs7_c00023{font-size:61.440000pt;}
.fsb_c00023{font-size:64.533333pt;}
.fsc_c00023{font-size:67.573333pt;}
.fs11_c00023{font-size:70.666667pt;}
.fs8_c00023{font-size:73.706667pt;}
.fsd_c00023{font-size:79.893333pt;}
.fs15_c00023{font-size:82.933333pt;}
.fs1a_c00023{font-size:86.026667pt;}
.fs13_c00023{font-size:92.160000pt;}
.fs1b_c00023{font-size:98.293333pt;}
.y0_c00023{bottom:0.000000pt;}
.y53_c00023{bottom:187.386667pt;}
.y52_c00023{bottom:192.773333pt;}
.y54_c00023{bottom:205.826667pt;}
.y4e_c00023{bottom:207.360000pt;}
.y4f_c00023{bottom:209.666667pt;}
.y4d_c00023{bottom:210.426667pt;}
.y50_c00023{bottom:211.973333pt;}
.y47_c00023{bottom:224.253333pt;}
.y51_c00023{bottom:225.026667pt;}
.y49_c00023{bottom:225.786667pt;}
.y4c_c00023{bottom:226.560000pt;}
.y4b_c00023{bottom:228.093333pt;}
.y46_c00023{bottom:229.626667pt;}
.y48_c00023{bottom:230.400000pt;}
.y4a_c00023{bottom:231.933333pt;}
.y45_c00023{bottom:241.146667pt;}
.y3f_c00023{bottom:242.693333pt;}
.y40_c00023{bottom:244.226667pt;}
.y41_c00023{bottom:246.533333pt;}
.y42_c00023{bottom:248.826667pt;}
.y43_c00023{bottom:249.600000pt;}
.y44_c00023{bottom:251.906667pt;}
.y3c_c00023{bottom:262.653333pt;}
.y3d_c00023{bottom:263.426667pt;}
.y3a_c00023{bottom:264.186667pt;}
.y3b_c00023{bottom:264.960000pt;}
.y39_c00023{bottom:265.733333pt;}
.y3e_c00023{bottom:267.266667pt;}
.y34_c00023{bottom:277.253333pt;}
.y37_c00023{bottom:278.786667pt;}
.y33_c00023{bottom:282.626667pt;}
.y36_c00023{bottom:283.386667pt;}
.y35_c00023{bottom:284.160000pt;}
.y38_c00023{bottom:288.000000pt;}
.y32_c00023{bottom:304.133333pt;}
.y30_c00023{bottom:1076.733333pt;}
.y31_c00023{bottom:1077.506667pt;}
.y2f_c00023{bottom:1082.106667pt;}
.y29_c00023{bottom:1163.520000pt;}
.y2b_c00023{bottom:1164.293333pt;}
.y28_c00023{bottom:1165.053333pt;}
.y2a_c00023{bottom:1167.360000pt;}
.y27_c00023{bottom:1168.133333pt;}
.y24_c00023{bottom:1168.893333pt;}
.y25_c00023{bottom:1171.200000pt;}
.y26_c00023{bottom:1172.733333pt;}
.y23_c00023{bottom:1180.413333pt;}
.y1f_c00023{bottom:1181.186667pt;}
.y1e_c00023{bottom:1181.946667pt;}
.y21_c00023{bottom:1183.493333pt;}
.y20_c00023{bottom:1185.786667pt;}
.y22_c00023{bottom:1190.400000pt;}
.y15_c00023{bottom:1196.546667pt;}
.y1c_c00023{bottom:1198.853333pt;}
.y19_c00023{bottom:1200.386667pt;}
.y1a_c00023{bottom:1201.146667pt;}
.y1d_c00023{bottom:1201.920000pt;}
.y14_c00023{bottom:1203.453333pt;}
.y1b_c00023{bottom:1204.226667pt;}
.y18_c00023{bottom:1204.986667pt;}
.y17_c00023{bottom:1205.760000pt;}
.y16_c00023{bottom:1206.533333pt;}
.yc_c00023{bottom:1213.440000pt;}
.y10_c00023{bottom:1214.973333pt;}
.yd_c00023{bottom:1215.746667pt;}
.ye_c00023{bottom:1216.506667pt;}
.yf_c00023{bottom:1217.280000pt;}
.y11_c00023{bottom:1218.813333pt;}
.y13_c00023{bottom:1220.346667pt;}
.y12_c00023{bottom:1221.893333pt;}
.y6_c00023{bottom:1235.706667pt;}
.y9_c00023{bottom:1239.546667pt;}
.yb_c00023{bottom:1240.320000pt;}
.y7_c00023{bottom:1241.093333pt;}
.y2d_c00023{bottom:1241.853333pt;}
.y8_c00023{bottom:1243.386667pt;}
.y2e_c00023{bottom:1244.160000pt;}
.ya_c00023{bottom:1244.933333pt;}
.y2c_c00023{bottom:1248.773333pt;}
.y4_c00023{bottom:1251.066667pt;}
.y5_c00023{bottom:1253.373333pt;}
.y2_c00023{bottom:1261.053333pt;}
.y3_c00023{bottom:1261.826667pt;}
.y1_c00023{bottom:1270.266667pt;}
.h19_c00023{height:2.764500pt;}
.h1b_c00023{height:4.799479pt;}
.h1a_c00023{height:5.519401pt;}
.h4_c00023{height:8.303099pt;}
.h8_c00023{height:11.038802pt;}
.h5_c00023{height:13.822500pt;}
.h2_c00023{height:16.606198pt;}
.h12_c00023{height:19.341901pt;}
.h10_c00023{height:22.125599pt;}
.h3_c00023{height:24.861302pt;}
.h6_c00023{height:27.645000pt;}
.h18_c00023{height:30.428698pt;}
.hc_c00023{height:33.164401pt;}
.h1f_c00023{height:35.948099pt;}
.h14_c00023{height:38.683802pt;}
.h11_c00023{height:41.467500pt;}
.h7_c00023{height:44.251198pt;}
.hb_c00023{height:46.986901pt;}
.h16_c00023{height:49.770599pt;}
.h1e_c00023{height:52.506302pt;}
.h9_c00023{height:55.290000pt;}
.hd_c00023{height:58.073698pt;}
.he_c00023{height:60.809401pt;}
.h13_c00023{height:63.593099pt;}
.ha_c00023{height:66.328802pt;}
.hf_c00023{height:71.896198pt;}
.h17_c00023{height:74.631901pt;}
.h1c_c00023{height:77.415599pt;}
.h15_c00023{height:82.935000pt;}
.h1d_c00023{height:88.454401pt;}
.h1_c00023{height:1336.000000pt;}
.h0_c00023{height:1336.320000pt;}
.w1_c00023{width:956.666667pt;}
.w0_c00023{width:956.933333pt;}
.x0_c00023{left:0.000000pt;}
.x4_c00023{left:111.360000pt;}
.x5_c00023{left:129.026667pt;}
.x2_c00023{left:132.866667pt;}
.x39_c00023{left:143.613400pt;}
.x3a_c00023{left:148.226667pt;}
.x3b_c00023{left:155.133333pt;}
.x3_c00023{left:159.746667pt;}
.xc_c00023{left:205.053333pt;}
.x19_c00023{left:215.040000pt;}
.x1a_c00023{left:218.880000pt;}
.x29_c00023{left:251.906667pt;}
.x30_c00023{left:254.973333pt;}
.x31_c00023{left:261.893333pt;}
.xd_c00023{left:264.960000pt;}
.x6_c00023{left:286.466667pt;}
.xe_c00023{left:288.000000pt;}
.x1b_c00023{left:290.306667pt;}
.x7_c00023{left:298.746667pt;}
.x2a_c00023{left:307.973333pt;}
.xf_c00023{left:311.040000pt;}
.x8_c00023{left:313.346667pt;}
.x2b_c00023{left:319.493333pt;}
.x32_c00023{left:322.560000pt;}
.x1c_c00023{left:331.013333pt;}
.x2c_c00023{left:340.226667pt;}
.x10_c00023{left:347.906667pt;}
.x1d_c00023{left:362.493333pt;}
.x33_c00023{left:364.800000pt;}
.x11_c00023{left:367.866667pt;}
.x1e_c00023{left:371.706667pt;}
.x1f_c00023{left:378.626667pt;}
.x9_c00023{left:410.106667pt;}
.x2d_c00023{left:413.946667pt;}
.x20_c00023{left:422.400000pt;}
.x12_c00023{left:449.280000pt;}
.xa_c00023{left:452.346667pt;}
.x21_c00023{left:459.266667pt;}
.x13_c00023{left:488.453333pt;}
.x34_c00023{left:494.586667pt;}
.xb_c00023{left:500.733333pt;}
.x35_c00023{left:503.040000pt;}
.x22_c00023{left:504.573333pt;}
.x42_c00023{left:509.186667pt;}
.x3c_c00023{left:523.013333pt;}
.x2e_c00023{left:529.920000pt;}
.x4d_c00023{left:532.226667pt;}
.x48_c00023{left:533.760000pt;}
.x43_c00023{left:539.133333pt;}
.x36_c00023{left:541.440000pt;}
.x3d_c00023{left:546.813333pt;}
.x23_c00023{left:550.653333pt;}
.x14_c00023{left:554.493333pt;}
.x4e_c00023{left:572.933333pt;}
.x15_c00023{left:588.293333pt;}
.x4f_c00023{left:591.360000pt;}
.x50_c00023{left:599.040000pt;}
.x49_c00023{left:600.573333pt;}
.x57_c00023{left:605.186667pt;}
.x44_c00023{left:609.026667pt;}
.x45_c00023{left:629.760000pt;}
.x3e_c00023{left:635.906667pt;}
.x16_c00023{left:638.973333pt;}
.x24_c00023{left:640.506667pt;}
.x25_c00023{left:645.120000pt;}
.x51_c00023{left:648.960000pt;}
.x52_c00023{left:658.173333pt;}
.x26_c00023{left:662.786667pt;}
.x59_c00023{left:665.093333pt;}
.x4a_c00023{left:667.386667pt;}
.x17_c00023{left:679.680000pt;}
.x53_c00023{left:681.213333pt;}
.x46_c00023{left:682.746667pt;}
.x3f_c00023{left:685.053333pt;}
.x54_c00023{left:689.666667pt;}
.x47_c00023{left:691.973333pt;}
.x5a_c00023{left:693.506667pt;}
.x27_c00023{left:698.106667pt;}
.x58_c00023{left:701.186667pt;}
.x55_c00023{left:708.093333pt;}
.x40_c00023{left:711.173333pt;}
.x4b_c00023{left:715.013333pt;}
.x1_c00023{left:721.920000pt;}
.x18_c00023{left:726.533333pt;}
.x56_c00023{left:728.066667pt;}
.x28_c00023{left:733.440000pt;}
.x37_c00023{left:741.120000pt;}
.x5b_c00023{left:744.960000pt;}
.x38_c00023{left:761.093333pt;}
.x2f_c00023{left:771.840000pt;}
.x4c_c00023{left:773.373333pt;}
.x41_c00023{left:775.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_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_f12a7a42fa05312b0c13f1d0.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.109863;font-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_c00024{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c00024{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00024{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);}
.m1_c00024{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00024{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00024{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);}
.mb_c00024{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma_c00024{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c00024{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);}
.m6_c00024{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md_c00024{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m9_c00024{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);}
.m8_c00024{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m4_c00024{transform:matrix(3.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.342500,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;}
.fs4_c00024{font-size:3.456000px;}
.fs3_c00024{font-size:6.900000px;}
.fs2_c00024{font-size:10.380000px;}
.fs1_c00024{font-size:17.280000px;}
.fs5_c00024{font-size:20.760000px;}
.fs0_c00024{font-size:24.180000px;}
.fs9_c00024{font-size:34.560000px;}
.fs6_c00024{font-size:51.840000px;}
.fs7_c00024{font-size:62.220000px;}
.fs8_c00024{font-size:69.120000px;}
.y0_c00024{bottom:0.000000px;}
.yc_c00024{bottom:244.515000px;}
.yd_c00024{bottom:245.370000px;}
.yb_c00024{bottom:248.835000px;}
.ya_c00024{bottom:743.040000px;}
.y9_c00024{bottom:1407.450000px;}
.y8_c00024{bottom:1409.190000px;}
.y6_c00024{bottom:1410.915000px;}
.y7_c00024{bottom:1415.235000px;}
.y4_c00024{bottom:1423.875000px;}
.y5_c00024{bottom:1424.730000px;}
.y3_c00024{bottom:1431.645000px;}
.y2_c00024{bottom:1432.515000px;}
.y1_c00024{bottom:1450.650000px;}
.h6_c00024{height:3.110063px;}
.h5_c00024{height:6.209326px;}
.h4_c00024{height:9.340986px;}
.h3_c00024{height:15.550313px;}
.h7_c00024{height:18.681973px;}
.h2_c00024{height:21.759639px;}
.hb_c00024{height:31.100625px;}
.h8_c00024{height:46.650937px;}
.h9_c00024{height:55.991924px;}
.ha_c00024{height:62.201250px;}
.h0_c00024{height:1515.450000px;}
.h1_c00024{height:1515.750000px;}
.w1_c00024{width:1065.000000px;}
.w0_c00024{width:1065.315000px;}
.x0_c00024{left:0.000000px;}
.x8_c00024{left:362.010000px;}
.x9_c00024{left:371.520000px;}
.x4_c00024{left:377.565000px;}
.xa_c00024{left:383.610000px;}
.xb_c00024{left:393.120000px;}
.x1_c00024{left:407.805000px;}
.x5_c00024{left:482.115000px;}
.xc_c00024{left:533.955000px;}
.x6_c00024{left:567.645000px;}
.x7_c00024{left:598.755000px;}
.x2_c00024{left:602.205000px;}
.x3_c00024{left:691.200000px;}
.xd_c00024{left:1017.795000px;}
.xf_c00024{left:1038.525000px;}
.xe_c00024{left:1042.845000px;}
.x10_c00024{left:1052.355000px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ws0_c00024{word-spacing:0.000000pt;}
.fs4_c00024{font-size:3.072000pt;}
.fs3_c00024{font-size:6.133333pt;}
.fs2_c00024{font-size:9.226667pt;}
.fs1_c00024{font-size:15.360000pt;}
.fs5_c00024{font-size:18.453333pt;}
.fs0_c00024{font-size:21.493333pt;}
.fs9_c00024{font-size:30.720000pt;}
.fs6_c00024{font-size:46.080000pt;}
.fs7_c00024{font-size:55.306667pt;}
.fs8_c00024{font-size:61.440000pt;}
.y0_c00024{bottom:0.000000pt;}
.yc_c00024{bottom:217.346667pt;}
.yd_c00024{bottom:218.106667pt;}
.yb_c00024{bottom:221.186667pt;}
.ya_c00024{bottom:660.480000pt;}
.y9_c00024{bottom:1251.066667pt;}
.y8_c00024{bottom:1252.613333pt;}
.y6_c00024{bottom:1254.146667pt;}
.y7_c00024{bottom:1257.986667pt;}
.y4_c00024{bottom:1265.666667pt;}
.y5_c00024{bottom:1266.426667pt;}
.y3_c00024{bottom:1272.573333pt;}
.y2_c00024{bottom:1273.346667pt;}
.y1_c00024{bottom:1289.466667pt;}
.h6_c00024{height:2.764500pt;}
.h5_c00024{height:5.519401pt;}
.h4_c00024{height:8.303099pt;}
.h3_c00024{height:13.822500pt;}
.h7_c00024{height:16.606198pt;}
.h2_c00024{height:19.341901pt;}
.hb_c00024{height:27.645000pt;}
.h8_c00024{height:41.467500pt;}
.h9_c00024{height:49.770599pt;}
.ha_c00024{height:55.290000pt;}
.h0_c00024{height:1347.066667pt;}
.h1_c00024{height:1347.333333pt;}
.w1_c00024{width:946.666667pt;}
.w0_c00024{width:946.946667pt;}
.x0_c00024{left:0.000000pt;}
.x8_c00024{left:321.786667pt;}
.x9_c00024{left:330.240000pt;}
.x4_c00024{left:335.613333pt;}
.xa_c00024{left:340.986667pt;}
.xb_c00024{left:349.440000pt;}
.x1_c00024{left:362.493333pt;}
.x5_c00024{left:428.546667pt;}
.xc_c00024{left:474.626667pt;}
.x6_c00024{left:504.573333pt;}
.x7_c00024{left:532.226667pt;}
.x2_c00024{left:535.293333pt;}
.x3_c00024{left:614.400000pt;}
.xd_c00024{left:904.706667pt;}
.xf_c00024{left:923.133333pt;}
.xe_c00024{left:926.973333pt;}
.x10_c00024{left:935.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16917cce5dad3e914dacef7b.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.109863;font-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_c00025{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);}
.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;}
.fs0_c00025{font-size:600.000000px;}
.y0_c00025{bottom:0.000000px;}
.y1_c00025{bottom:15.000000px;}
.h2_c00025{height:539.941406px;}
.h1_c00025{height:1503.000000px;}
.h0_c00025{height:1503.360000px;}
.w1_c00025{width:1076.250000px;}
.w0_c00025{width:1076.550000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:15.000000px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls0_c00025{letter-spacing:0.000000pt;}
.ws0_c00025{word-spacing:0.000000pt;}
.fs0_c00025{font-size:533.333333pt;}
.y0_c00025{bottom:0.000000pt;}
.y1_c00025{bottom:13.333333pt;}
.h2_c00025{height:479.947917pt;}
.h1_c00025{height:1336.000000pt;}
.h0_c00025{height:1336.320000pt;}
.w1_c00025{width:956.666667pt;}
.w0_c00025{width:956.933333pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbda25d68d0d23d9a6614b0b.woff2')format("woff");}.ff1_c00026{font-family:ff1_c00026;line-height:1.109863;font-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_c00026{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c00026{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);}
.m2_c00026{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);}
.m7_c00026{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c00026{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00026{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c00026{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8_c00026{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);}
.m0_c00026{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m4_c00026{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,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;}
.fs5_c00026{font-size:3.456000px;}
.fs3_c00026{font-size:6.900000px;}
.fs6_c00026{font-size:10.380000px;}
.fs2_c00026{font-size:20.760000px;}
.fs4_c00026{font-size:38.040000px;}
.fs1_c00026{font-size:41.460000px;}
.fs0_c00026{font-size:44.940000px;}
.fs7_c00026{font-size:58.740000px;}
.fs9_c00026{font-size:82.920000px;}
.fs8_c00026{font-size:93.300000px;}
.fsa_c00026{font-size:210.840000px;}
.y0_c00026{bottom:0.000000px;}
.yb_c00026{bottom:355.965000px;}
.yc_c00026{bottom:361.155000px;}
.ya_c00026{bottom:886.470000px;}
.y1_c00026{bottom:1277.850000px;}
.y9_c00026{bottom:1409.190000px;}
.y8_c00026{bottom:1412.640000px;}
.y7_c00026{bottom:1415.235000px;}
.y6_c00026{bottom:1421.280000px;}
.y5_c00026{bottom:1434.240000px;}
.y4_c00026{bottom:1438.560000px;}
.y2_c00026{bottom:1448.925000px;}
.y3_c00026{bottom:1451.520000px;}
.h7_c00026{height:3.110063px;}
.h5_c00026{height:6.209326px;}
.h8_c00026{height:9.340986px;}
.h4_c00026{height:18.681973px;}
.h6_c00026{height:34.232285px;}
.h3_c00026{height:37.309951px;}
.h2_c00026{height:40.441611px;}
.h9_c00026{height:52.860264px;}
.hb_c00026{height:74.619902px;}
.ha_c00026{height:83.960889px;}
.hc_c00026{height:189.735410px;}
.h0_c00026{height:1515.450000px;}
.h1_c00026{height:1515.750000px;}
.w1_c00026{width:1065.000000px;}
.w0_c00026{width:1065.315000px;}
.x0_c00026{left:0.000000px;}
.x7_c00026{left:345.600000px;}
.x8_c00026{left:362.880000px;}
.x9_c00026{left:397.440000px;}
.xa_c00026{left:538.275000px;}
.x5_c00026{left:542.595000px;}
.x2_c00026{left:547.770000px;}
.x3_c00026{left:609.120000px;}
.x6_c00026{left:615.165000px;}
.x4_c00026{left:622.080000px;}
.xb_c00026{left:976.320000px;}
.x1_c00026{left:1022.970000px;}
.xc_c00026{left:1041.990000px;}
.xd_c00026{left:1059.270000px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws0_c00026{word-spacing:0.000000pt;}
.fs5_c00026{font-size:3.072000pt;}
.fs3_c00026{font-size:6.133333pt;}
.fs6_c00026{font-size:9.226667pt;}
.fs2_c00026{font-size:18.453333pt;}
.fs4_c00026{font-size:33.813333pt;}
.fs1_c00026{font-size:36.853333pt;}
.fs0_c00026{font-size:39.946667pt;}
.fs7_c00026{font-size:52.213333pt;}
.fs9_c00026{font-size:73.706667pt;}
.fs8_c00026{font-size:82.933333pt;}
.fsa_c00026{font-size:187.413333pt;}
.y0_c00026{bottom:0.000000pt;}
.yb_c00026{bottom:316.413333pt;}
.yc_c00026{bottom:321.026667pt;}
.ya_c00026{bottom:787.973333pt;}
.y1_c00026{bottom:1135.866667pt;}
.y9_c00026{bottom:1252.613333pt;}
.y8_c00026{bottom:1255.680000pt;}
.y7_c00026{bottom:1257.986667pt;}
.y6_c00026{bottom:1263.360000pt;}
.y5_c00026{bottom:1274.880000pt;}
.y4_c00026{bottom:1278.720000pt;}
.y2_c00026{bottom:1287.933333pt;}
.y3_c00026{bottom:1290.240000pt;}
.h7_c00026{height:2.764500pt;}
.h5_c00026{height:5.519401pt;}
.h8_c00026{height:8.303099pt;}
.h4_c00026{height:16.606198pt;}
.h6_c00026{height:30.428698pt;}
.h3_c00026{height:33.164401pt;}
.h2_c00026{height:35.948099pt;}
.h9_c00026{height:46.986901pt;}
.hb_c00026{height:66.328802pt;}
.ha_c00026{height:74.631901pt;}
.hc_c00026{height:168.653698pt;}
.h0_c00026{height:1347.066667pt;}
.h1_c00026{height:1347.333333pt;}
.w1_c00026{width:946.666667pt;}
.w0_c00026{width:946.946667pt;}
.x0_c00026{left:0.000000pt;}
.x7_c00026{left:307.200000pt;}
.x8_c00026{left:322.560000pt;}
.x9_c00026{left:353.280000pt;}
.xa_c00026{left:478.466667pt;}
.x5_c00026{left:482.306667pt;}
.x2_c00026{left:486.906667pt;}
.x3_c00026{left:541.440000pt;}
.x6_c00026{left:546.813333pt;}
.x4_c00026{left:552.960000pt;}
.xb_c00026{left:867.840000pt;}
.x1_c00026{left:909.306667pt;}
.xc_c00026{left:926.213333pt;}
.xd_c00026{left:941.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_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_c5f4494cd4002c4497059071.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.109863;font-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_c00027{transform:matrix(0.044200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044200,0.000000,0.000000,0.250000,0,0);}
.ma_c00027{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m6_c00027{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);}
.m4_c00027{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);}
.m7_c00027{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m1_c00027{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);}
.m0_c00027{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);}
.m3_c00027{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);}
.m8_c00027{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);}
.mb_c00027{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c00027{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);}
.m9_c00027{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,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;}
.fsa_c00027{font-size:6.900000px;}
.fs0_c00027{font-size:13.800000px;}
.fs3_c00027{font-size:17.280000px;}
.fs1_c00027{font-size:24.180000px;}
.fs4_c00027{font-size:31.080000px;}
.fs2_c00027{font-size:34.560000px;}
.fs7_c00027{font-size:38.040000px;}
.fs9_c00027{font-size:51.840000px;}
.fs6_c00027{font-size:82.920000px;}
.fs8_c00027{font-size:210.840000px;}
.fs5_c00027{font-size:221.160000px;}
.y0_c00027{bottom:0.000000px;}
.yb_c00027{bottom:406.080000px;}
.yc_c00027{bottom:406.950000px;}
.ya_c00027{bottom:879.555000px;}
.y9_c00027{bottom:1122.330000px;}
.y8_c00027{bottom:1149.120000px;}
.y7_c00027{bottom:1170.720000px;}
.y6_c00027{bottom:1177.635000px;}
.y5_c00027{bottom:1270.950000px;}
.y4_c00027{bottom:1272.675000px;}
.y3_c00027{bottom:1296.870000px;}
.y2_c00027{bottom:1307.235000px;}
.y1_c00027{bottom:1335.750000px;}
.hc_c00027{height:6.209326px;}
.h2_c00027{height:12.418652px;}
.h5_c00027{height:15.550313px;}
.h3_c00027{height:21.759639px;}
.h6_c00027{height:27.968965px;}
.h4_c00027{height:31.100625px;}
.h9_c00027{height:34.232285px;}
.hb_c00027{height:46.650937px;}
.h8_c00027{height:74.619902px;}
.ha_c00027{height:189.735410px;}
.h7_c00027{height:199.022402px;}
.h1_c00027{height:1503.000000px;}
.h0_c00027{height:1503.360000px;}
.w1_c00027{width:1076.250000px;}
.w0_c00027{width:1076.550000px;}
.x0_c00027{left:0.000000px;}
.x2_c00027{left:12.960000px;}
.x5_c00027{left:67.395000px;}
.x6_c00027{left:71.715000px;}
.x4_c00027{left:125.280000px;}
.x1_c00027{left:138.240000px;}
.x3_c00027{left:172.800000px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ws0_c00027{word-spacing:0.000000pt;}
.fsa_c00027{font-size:6.133333pt;}
.fs0_c00027{font-size:12.266667pt;}
.fs3_c00027{font-size:15.360000pt;}
.fs1_c00027{font-size:21.493333pt;}
.fs4_c00027{font-size:27.626667pt;}
.fs2_c00027{font-size:30.720000pt;}
.fs7_c00027{font-size:33.813333pt;}
.fs9_c00027{font-size:46.080000pt;}
.fs6_c00027{font-size:73.706667pt;}
.fs8_c00027{font-size:187.413333pt;}
.fs5_c00027{font-size:196.586667pt;}
.y0_c00027{bottom:0.000000pt;}
.yb_c00027{bottom:360.960000pt;}
.yc_c00027{bottom:361.733333pt;}
.ya_c00027{bottom:781.826667pt;}
.y9_c00027{bottom:997.626667pt;}
.y8_c00027{bottom:1021.440000pt;}
.y7_c00027{bottom:1040.640000pt;}
.y6_c00027{bottom:1046.786667pt;}
.y5_c00027{bottom:1129.733333pt;}
.y4_c00027{bottom:1131.266667pt;}
.y3_c00027{bottom:1152.773333pt;}
.y2_c00027{bottom:1161.986667pt;}
.y1_c00027{bottom:1187.333333pt;}
.hc_c00027{height:5.519401pt;}
.h2_c00027{height:11.038802pt;}
.h5_c00027{height:13.822500pt;}
.h3_c00027{height:19.341901pt;}
.h6_c00027{height:24.861302pt;}
.h4_c00027{height:27.645000pt;}
.h9_c00027{height:30.428698pt;}
.hb_c00027{height:41.467500pt;}
.h8_c00027{height:66.328802pt;}
.ha_c00027{height:168.653698pt;}
.h7_c00027{height:176.908802pt;}
.h1_c00027{height:1336.000000pt;}
.h0_c00027{height:1336.320000pt;}
.w1_c00027{width:956.666667pt;}
.w0_c00027{width:956.933333pt;}
.x0_c00027{left:0.000000pt;}
.x2_c00027{left:11.520000pt;}
.x5_c00027{left:59.906667pt;}
.x6_c00027{left:63.746667pt;}
.x4_c00027{left:111.360000pt;}
.x1_c00027{left:122.880000pt;}
.x3_c00027{left:153.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_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;}
@font-face{font-family:ff1_c00028;src:url('chunks/assets/font_72334f6345bea8c17b710937.woff2')format("woff");}.ff1_c00028{font-family:ff1_c00028;line-height:1.109863;font-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_c00028{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.mc_c00028{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.mb_c00028{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c00028{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m18_c00028{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m5_c00028{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);}
.m36_c00028{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.m29_c00028{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);}
.m28_c00028{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00028{transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);}
.m20_c00028{transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);}
.m30_c00028{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);}
.mf_c00028{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.m27_c00028{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);}
.m25_c00028{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m19_c00028{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m4_c00028{transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);}
.m1f_c00028{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);}
.m16_c00028{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);}
.m32_c00028{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);}
.m2b_c00028{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);}
.m1d_c00028{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);}
.ma_c00028{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m34_c00028{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);}
.m1_c00028{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00028{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);}
.m12_c00028{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m21_c00028{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00028{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00028{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00028{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c00028{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c00028{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);}
.m8_c00028{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);}
.m22_c00028{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);}
.m13_c00028{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);}
.m3_c00028{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);}
.m9_c00028{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m7_c00028{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.me_c00028{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m14_c00028{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m33_c00028{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);}
.m2e_c00028{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);}
.m6_c00028{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00028{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m15_c00028{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m17_c00028{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m10_c00028{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m24_c00028{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m35_c00028{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);}
.m1a_c00028{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m23_c00028{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2_c00028{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00028{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m26_c00028{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c00028{vertical-align:0.000000px;}
.ls0_c00028{letter-spacing:0.000000px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:0.000000px;}
.fc0_c00028{color:transparent;}
.fsb_c00028{font-size:3.456000px;}
.fs1_c00028{font-size:6.000000px;}
.fs9_c00028{font-size:10.380000px;}
.fs2_c00028{font-size:17.280000px;}
.fs12_c00028{font-size:24.180000px;}
.fs0_c00028{font-size:27.660000px;}
.fsc_c00028{font-size:38.040000px;}
.fsd_c00028{font-size:41.460000px;}
.fsa_c00028{font-size:44.940000px;}
.fse_c00028{font-size:48.360000px;}
.fs16_c00028{font-size:51.840000px;}
.fs11_c00028{font-size:55.320000px;}
.fs10_c00028{font-size:58.740000px;}
.fs8_c00028{font-size:62.220000px;}
.fs7_c00028{font-size:65.640000px;}
.fs6_c00028{font-size:69.120000px;}
.fs3_c00028{font-size:72.600000px;}
.fsf_c00028{font-size:79.500000px;}
.fs18_c00028{font-size:82.920000px;}
.fs4_c00028{font-size:86.400000px;}
.fs13_c00028{font-size:89.880000px;}
.fs17_c00028{font-size:93.300000px;}
.fs15_c00028{font-size:96.780000px;}
.fs14_c00028{font-size:100.200000px;}
.fs5_c00028{font-size:103.680000px;}
.y0_c00028{bottom:0.000000px;}
.y1_c00028{bottom:544.320000px;}
.y2d_c00028{bottom:864.000000px;}
.y2b_c00028{bottom:890.790000px;}
.y2c_c00028{bottom:894.240000px;}
.y26_c00028{bottom:1016.070000px;}
.y2a_c00028{bottom:1018.650000px;}
.y29_c00028{bottom:1019.520000px;}
.y27_c00028{bottom:1020.390000px;}
.y28_c00028{bottom:1021.245000px;}
.y25_c00028{bottom:1041.990000px;}
.y24_c00028{bottom:1044.570000px;}
.y23_c00028{bottom:1045.440000px;}
.y21_c00028{bottom:1048.035000px;}
.y22_c00028{bottom:1051.485000px;}
.y1e_c00028{bottom:1057.530000px;}
.y20_c00028{bottom:1060.125000px;}
.y18_c00028{bottom:1062.720000px;}
.y1b_c00028{bottom:1063.590000px;}
.y1a_c00028{bottom:1064.445000px;}
.y1c_c00028{bottom:1065.315000px;}
.y1d_c00028{bottom:1067.910000px;}
.y19_c00028{bottom:1085.190000px;}
.y1f_c00028{bottom:1087.770000px;}
.y11_c00028{bottom:1091.235000px;}
.y14_c00028{bottom:1092.090000px;}
.y17_c00028{bottom:1093.830000px;}
.y12_c00028{bottom:1094.685000px;}
.y13_c00028{bottom:1095.555000px;}
.y16_c00028{bottom:1097.280000px;}
.y15_c00028{bottom:1098.150000px;}
.ya_c00028{bottom:1114.560000px;}
.ye_c00028{bottom:1116.285000px;}
.yf_c00028{bottom:1117.155000px;}
.yc_c00028{bottom:1119.750000px;}
.yb_c00028{bottom:1120.605000px;}
.y9_c00028{bottom:1121.475000px;}
.yd_c00028{bottom:1122.330000px;}
.y10_c00028{bottom:1123.200000px;}
.y8_c00028{bottom:1136.160000px;}
.y4_c00028{bottom:1139.610000px;}
.y3_c00028{bottom:1141.350000px;}
.y6_c00028{bottom:1144.800000px;}
.y5_c00028{bottom:1146.525000px;}
.y7_c00028{bottom:1147.395000px;}
.y2_c00028{bottom:1204.410000px;}
.hd_c00028{height:3.110063px;}
.h3_c00028{height:5.399414px;}
.hb_c00028{height:9.340986px;}
.h4_c00028{height:15.550313px;}
.h14_c00028{height:21.759639px;}
.h2_c00028{height:24.891299px;}
.he_c00028{height:34.232285px;}
.hf_c00028{height:37.309951px;}
.hc_c00028{height:40.441611px;}
.h10_c00028{height:43.519277px;}
.h18_c00028{height:46.650937px;}
.h13_c00028{height:49.782598px;}
.h12_c00028{height:52.860264px;}
.ha_c00028{height:55.991924px;}
.h9_c00028{height:59.069590px;}
.h8_c00028{height:62.201250px;}
.h5_c00028{height:65.332910px;}
.h11_c00028{height:71.542236px;}
.h1a_c00028{height:74.619902px;}
.h6_c00028{height:77.751563px;}
.h15_c00028{height:80.883223px;}
.h19_c00028{height:83.960889px;}
.h17_c00028{height:87.092549px;}
.h16_c00028{height:90.170215px;}
.h7_c00028{height:93.301875px;}
.h0_c00028{height:1515.450000px;}
.h1_c00028{height:1515.750000px;}
.w0_c00028{width:1079.130000px;}
.w1_c00028{width:1079.250000px;}
.x0_c00028{left:0.000000px;}
.x40_c00028{left:226.365000px;}
.x4_c00028{left:228.960000px;}
.x3f_c00028{left:234.150000px;}
.xe_c00028{left:241.920000px;}
.xf_c00028{left:252.285000px;}
.x24_c00028{left:265.245000px;}
.x10_c00028{left:267.840000px;}
.x2c_c00028{left:273.030000px;}
.x5_c00028{left:275.610000px;}
.x34_c00028{left:278.205408px;}
.x2d_c00028{left:281.670000px;}
.x35_c00028{left:285.990048px;}
.x36_c00028{left:293.760000px;}
.x11_c00028{left:304.125000px;}
.x37_c00028{left:314.490000px;}
.x12_c00028{left:340.410000px;}
.x13_c00028{left:354.240000px;}
.x2e_c00028{left:371.520000px;}
.x3a_c00028{left:382.755000px;}
.x14_c00028{left:385.350000px;}
.x6_c00028{left:393.990000px;}
.x25_c00028{left:399.165000px;}
.x15_c00028{left:402.630000px;}
.x16_c00028{left:419.040000px;}
.x17_c00028{left:438.045000px;}
.x7_c00028{left:443.235000px;}
.x3b_c00028{left:456.195000px;}
.x8_c00028{left:487.290000px;}
.x2f_c00028{left:505.440000px;}
.x18_c00028{left:507.165000px;}
.x26_c00028{left:510.630000px;}
.x3c_c00028{left:518.400000px;}
.x19_c00028{left:533.085000px;}
.x27_c00028{left:534.810000px;}
.x3d_c00028{left:540.000000px;}
.x9_c00028{left:544.320000px;}
.x1a_c00028{left:552.960000px;}
.x1b_c00028{left:571.110000px;}
.x38_c00028{left:579.750000px;}
.x1c_c00028{left:589.245000px;}
.x1d_c00028{left:604.800000px;}
.x3e_c00028{left:608.250000px;}
.xc_c00028{left:615.165000px;}
.xd_c00028{left:625.530000px;}
.x28_c00028{left:628.125000px;}
.x1e_c00028{left:639.360000px;}
.x1f_c00028{left:658.365000px;}
.xa_c00028{left:663.555000px;}
.x20_c00028{left:685.155000px;}
.x29_c00028{left:702.435000px;}
.x30_c00028{left:726.630000px;}
.x21_c00028{left:740.445000px;}
.x39_c00028{left:748.230000px;}
.x22_c00028{left:756.870000px;}
.x2a_c00028{left:768.090000px;}
.x2b_c00028{left:781.050000px;}
.x23_c00028{left:806.970000px;}
.x31_c00028{left:829.440000px;}
.x32_c00028{left:842.400000px;}
.xb_c00028{left:847.590000px;}
.x33_c00028{left:861.405000px;}
.x3_c00028{left:944.355000px;}
.x1_c00028{left:1013.475000px;}
.x2_c00028{left:1029.030000px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls0_c00028{letter-spacing:0.000000pt;}
.ws0_c00028{word-spacing:0.000000pt;}
.fsb_c00028{font-size:3.072000pt;}
.fs1_c00028{font-size:5.333333pt;}
.fs9_c00028{font-size:9.226667pt;}
.fs2_c00028{font-size:15.360000pt;}
.fs12_c00028{font-size:21.493333pt;}
.fs0_c00028{font-size:24.586667pt;}
.fsc_c00028{font-size:33.813333pt;}
.fsd_c00028{font-size:36.853333pt;}
.fsa_c00028{font-size:39.946667pt;}
.fse_c00028{font-size:42.986667pt;}
.fs16_c00028{font-size:46.080000pt;}
.fs11_c00028{font-size:49.173333pt;}
.fs10_c00028{font-size:52.213333pt;}
.fs8_c00028{font-size:55.306667pt;}
.fs7_c00028{font-size:58.346667pt;}
.fs6_c00028{font-size:61.440000pt;}
.fs3_c00028{font-size:64.533333pt;}
.fsf_c00028{font-size:70.666667pt;}
.fs18_c00028{font-size:73.706667pt;}
.fs4_c00028{font-size:76.800000pt;}
.fs13_c00028{font-size:79.893333pt;}
.fs17_c00028{font-size:82.933333pt;}
.fs15_c00028{font-size:86.026667pt;}
.fs14_c00028{font-size:89.066667pt;}
.fs5_c00028{font-size:92.160000pt;}
.y0_c00028{bottom:0.000000pt;}
.y1_c00028{bottom:483.840000pt;}
.y2d_c00028{bottom:768.000000pt;}
.y2b_c00028{bottom:791.813333pt;}
.y2c_c00028{bottom:794.880000pt;}
.y26_c00028{bottom:903.173333pt;}
.y2a_c00028{bottom:905.466667pt;}
.y29_c00028{bottom:906.240000pt;}
.y27_c00028{bottom:907.013333pt;}
.y28_c00028{bottom:907.773333pt;}
.y25_c00028{bottom:926.213333pt;}
.y24_c00028{bottom:928.506667pt;}
.y23_c00028{bottom:929.280000pt;}
.y21_c00028{bottom:931.586667pt;}
.y22_c00028{bottom:934.653333pt;}
.y1e_c00028{bottom:940.026667pt;}
.y20_c00028{bottom:942.333333pt;}
.y18_c00028{bottom:944.640000pt;}
.y1b_c00028{bottom:945.413333pt;}
.y1a_c00028{bottom:946.173333pt;}
.y1c_c00028{bottom:946.946667pt;}
.y1d_c00028{bottom:949.253333pt;}
.y19_c00028{bottom:964.613333pt;}
.y1f_c00028{bottom:966.906667pt;}
.y11_c00028{bottom:969.986667pt;}
.y14_c00028{bottom:970.746667pt;}
.y17_c00028{bottom:972.293333pt;}
.y12_c00028{bottom:973.053333pt;}
.y13_c00028{bottom:973.826667pt;}
.y16_c00028{bottom:975.360000pt;}
.y15_c00028{bottom:976.133333pt;}
.ya_c00028{bottom:990.720000pt;}
.ye_c00028{bottom:992.253333pt;}
.yf_c00028{bottom:993.026667pt;}
.yc_c00028{bottom:995.333333pt;}
.yb_c00028{bottom:996.093333pt;}
.y9_c00028{bottom:996.866667pt;}
.yd_c00028{bottom:997.626667pt;}
.y10_c00028{bottom:998.400000pt;}
.y8_c00028{bottom:1009.920000pt;}
.y4_c00028{bottom:1012.986667pt;}
.y3_c00028{bottom:1014.533333pt;}
.y6_c00028{bottom:1017.600000pt;}
.y5_c00028{bottom:1019.133333pt;}
.y7_c00028{bottom:1019.906667pt;}
.y2_c00028{bottom:1070.586667pt;}
.hd_c00028{height:2.764500pt;}
.h3_c00028{height:4.799479pt;}
.hb_c00028{height:8.303099pt;}
.h4_c00028{height:13.822500pt;}
.h14_c00028{height:19.341901pt;}
.h2_c00028{height:22.125599pt;}
.he_c00028{height:30.428698pt;}
.hf_c00028{height:33.164401pt;}
.hc_c00028{height:35.948099pt;}
.h10_c00028{height:38.683802pt;}
.h18_c00028{height:41.467500pt;}
.h13_c00028{height:44.251198pt;}
.h12_c00028{height:46.986901pt;}
.ha_c00028{height:49.770599pt;}
.h9_c00028{height:52.506302pt;}
.h8_c00028{height:55.290000pt;}
.h5_c00028{height:58.073698pt;}
.h11_c00028{height:63.593099pt;}
.h1a_c00028{height:66.328802pt;}
.h6_c00028{height:69.112500pt;}
.h15_c00028{height:71.896198pt;}
.h19_c00028{height:74.631901pt;}
.h17_c00028{height:77.415599pt;}
.h16_c00028{height:80.151302pt;}
.h7_c00028{height:82.935000pt;}
.h0_c00028{height:1347.066667pt;}
.h1_c00028{height:1347.333333pt;}
.w0_c00028{width:959.226667pt;}
.w1_c00028{width:959.333333pt;}
.x0_c00028{left:0.000000pt;}
.x40_c00028{left:201.213333pt;}
.x4_c00028{left:203.520000pt;}
.x3f_c00028{left:208.133333pt;}
.xe_c00028{left:215.040000pt;}
.xf_c00028{left:224.253333pt;}
.x24_c00028{left:235.773333pt;}
.x10_c00028{left:238.080000pt;}
.x2c_c00028{left:242.693333pt;}
.x5_c00028{left:244.986667pt;}
.x34_c00028{left:247.293696pt;}
.x2d_c00028{left:250.373333pt;}
.x35_c00028{left:254.213376pt;}
.x36_c00028{left:261.120000pt;}
.x11_c00028{left:270.333333pt;}
.x37_c00028{left:279.546667pt;}
.x12_c00028{left:302.586667pt;}
.x13_c00028{left:314.880000pt;}
.x2e_c00028{left:330.240000pt;}
.x3a_c00028{left:340.226667pt;}
.x14_c00028{left:342.533333pt;}
.x6_c00028{left:350.213333pt;}
.x25_c00028{left:354.813333pt;}
.x15_c00028{left:357.893333pt;}
.x16_c00028{left:372.480000pt;}
.x17_c00028{left:389.373333pt;}
.x7_c00028{left:393.986667pt;}
.x3b_c00028{left:405.506667pt;}
.x8_c00028{left:433.146667pt;}
.x2f_c00028{left:449.280000pt;}
.x18_c00028{left:450.813333pt;}
.x26_c00028{left:453.893333pt;}
.x3c_c00028{left:460.800000pt;}
.x19_c00028{left:473.853333pt;}
.x27_c00028{left:475.386667pt;}
.x3d_c00028{left:480.000000pt;}
.x9_c00028{left:483.840000pt;}
.x1a_c00028{left:491.520000pt;}
.x1b_c00028{left:507.653333pt;}
.x38_c00028{left:515.333333pt;}
.x1c_c00028{left:523.773333pt;}
.x1d_c00028{left:537.600000pt;}
.x3e_c00028{left:540.666667pt;}
.xc_c00028{left:546.813333pt;}
.xd_c00028{left:556.026667pt;}
.x28_c00028{left:558.333333pt;}
.x1e_c00028{left:568.320000pt;}
.x1f_c00028{left:585.213333pt;}
.xa_c00028{left:589.826667pt;}
.x20_c00028{left:609.026667pt;}
.x29_c00028{left:624.386667pt;}
.x30_c00028{left:645.893333pt;}
.x21_c00028{left:658.173333pt;}
.x39_c00028{left:665.093333pt;}
.x22_c00028{left:672.773333pt;}
.x2a_c00028{left:682.746667pt;}
.x2b_c00028{left:694.266667pt;}
.x23_c00028{left:717.306667pt;}
.x31_c00028{left:737.280000pt;}
.x32_c00028{left:748.800000pt;}
.xb_c00028{left:753.413333pt;}
.x33_c00028{left:765.693333pt;}
.x3_c00028{left:839.426667pt;}
.x1_c00028{left:900.866667pt;}
.x2_c00028{left:914.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_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_2499e61c29fa299b6fe414d5.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.109863;font-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.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c00029{transform:matrix(0.063325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063325,0.000000,0.000000,0.250000,0,0);}
.m5_c00029{transform:matrix(0.093500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093500,0.000000,0.000000,0.250000,0,0);}
.m7_c00029{transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);}
.m1_c00029{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.m25_c00029{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);}
.m6_c00029{transform:matrix(0.102900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102900,0.000000,0.000000,0.250000,0,0);}
.m23_c00029{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.md_c00029{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c00029{transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);}
.m16_c00029{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);}
.m1e_c00029{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);}
.m15_c00029{transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);}
.m18_c00029{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);}
.m1f_c00029{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);}
.m20_c00029{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.mb_c00029{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_c00029{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);}
.m14_c00029{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00029{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);}
.me_c00029{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00029{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13_c00029{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);}
.m10_c00029{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m21_c00029{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00029{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00029{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);}
.m17_c00029{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c00029{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);}
.m9_c00029{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c00029{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m26_c00029{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);}
.m0_c00029{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mf_c00029{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m22_c00029{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m11_c00029{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3_c00029{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m8_c00029{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m29_c00029{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00029{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00029{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m27_c00029{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m28_c00029{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m24_c00029{transform:matrix(4.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.302500,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;}
.fs7_c00029{font-size:3.456000px;}
.fsb_c00029{font-size:6.000000px;}
.fs3_c00029{font-size:10.380000px;}
.fs19_c00029{font-size:13.800000px;}
.fs17_c00029{font-size:17.280000px;}
.fs1a_c00029{font-size:20.760000px;}
.fs0_c00029{font-size:24.180000px;}
.fs16_c00029{font-size:27.660000px;}
.fs15_c00029{font-size:48.360000px;}
.fsc_c00029{font-size:55.320000px;}
.fs1_c00029{font-size:62.220000px;}
.fsd_c00029{font-size:65.640000px;}
.fs18_c00029{font-size:69.120000px;}
.fs12_c00029{font-size:79.500000px;}
.fs14_c00029{font-size:86.400000px;}
.fse_c00029{font-size:89.880000px;}
.fs13_c00029{font-size:93.300000px;}
.fs9_c00029{font-size:96.780000px;}
.fsf_c00029{font-size:100.200000px;}
.fsa_c00029{font-size:107.160000px;}
.fs8_c00029{font-size:114.060000px;}
.fs10_c00029{font-size:117.480000px;}
.fs4_c00029{font-size:134.760000px;}
.fs11_c00029{font-size:138.240000px;}
.fs6_c00029{font-size:190.080000px;}
.fs2_c00029{font-size:196.980000px;}
.fs5_c00029{font-size:203.880000px;}
.y0_c00029{bottom:0.000000px;}
.y2d_c00029{bottom:196.995000px;}
.y2c_c00029{bottom:455.325000px;}
.y2b_c00029{bottom:465.690000px;}
.y29_c00029{bottom:472.605000px;}
.y2a_c00029{bottom:476.070000px;}
.y22_c00029{bottom:560.730000px;}
.y24_c00029{bottom:561.600000px;}
.y25_c00029{bottom:566.790000px;}
.y23_c00029{bottom:571.110000px;}
.y20_c00029{bottom:575.430000px;}
.y21_c00029{bottom:581.475000px;}
.y1f_c00029{bottom:605.670000px;}
.y1e_c00029{bottom:616.035000px;}
.y1d_c00029{bottom:646.275000px;}
.y1c_c00029{bottom:648.000000px;}
.y1a_c00029{bottom:673.050000px;}
.y1b_c00029{bottom:678.240000px;}
.y2_c00029{bottom:679.110000px;}
.y3_c00029{bottom:682.560000px;}
.y1_c00029{bottom:698.970000px;}
.y17_c00029{bottom:700.710000px;}
.y19_c00029{bottom:703.290000px;}
.y18_c00029{bottom:707.610000px;}
.y15_c00029{bottom:732.675000px;}
.y14_c00029{bottom:740.445000px;}
.y13_c00029{bottom:742.170000px;}
.y16_c00029{bottom:745.635000px;}
.y12_c00029{bottom:770.685000px;}
.y11_c00029{bottom:771.555000px;}
.y10_c00029{bottom:772.410000px;}
.y26_c00029{bottom:800.070000px;}
.yc_c00029{bottom:800.925000px;}
.yf_c00029{bottom:802.650000px;}
.yd_c00029{bottom:803.520000px;}
.ye_c00029{bottom:811.290000px;}
.yb_c00029{bottom:813.885000px;}
.ya_c00029{bottom:814.755000px;}
.y6_c00029{bottom:817.350000px;}
.y7_c00029{bottom:818.205000px;}
.y5_c00029{bottom:831.165000px;}
.y9_c00029{bottom:839.805000px;}
.y8_c00029{bottom:848.445000px;}
.y28_c00029{bottom:857.085000px;}
.y27_c00029{bottom:862.275000px;}
.y4_c00029{bottom:864.870000px;}
.h9_c00029{height:3.110063px;}
.hd_c00029{height:5.399414px;}
.h5_c00029{height:9.340986px;}
.h1b_c00029{height:12.418652px;}
.h19_c00029{height:15.550313px;}
.h1c_c00029{height:18.681973px;}
.h2_c00029{height:21.759639px;}
.h18_c00029{height:24.891299px;}
.h17_c00029{height:43.519277px;}
.he_c00029{height:49.782598px;}
.h3_c00029{height:55.991924px;}
.hf_c00029{height:59.069590px;}
.h1a_c00029{height:62.201250px;}
.h14_c00029{height:71.542236px;}
.h16_c00029{height:77.751563px;}
.h10_c00029{height:80.883223px;}
.h15_c00029{height:83.960889px;}
.hb_c00029{height:87.092549px;}
.h11_c00029{height:90.170215px;}
.hc_c00029{height:96.433535px;}
.ha_c00029{height:102.642861px;}
.h12_c00029{height:105.720527px;}
.h6_c00029{height:121.270840px;}
.h13_c00029{height:124.402500px;}
.h8_c00029{height:171.053437px;}
.h4_c00029{height:177.262764px;}
.h7_c00029{height:183.472090px;}
.h1_c00029{height:1507.500000px;}
.h0_c00029{height:1507.680000px;}
.w1_c00029{width:1059.000000px;}
.w0_c00029{width:1059.270000px;}
.x0_c00029{left:0.000000px;}
.x2e_c00029{left:12.090000px;}
.x2_c00029{left:37.155000px;}
.x1_c00029{left:44.925000px;}
.x2d_c00029{left:48.390000px;}
.x2b_c00029{left:55.290000px;}
.x2c_c00029{left:66.525000px;}
.x26_c00029{left:73.440000px;}
.x27_c00029{left:84.675000px;}
.x3_c00029{left:101.955000px;}
.x4_c00029{left:211.680000px;}
.x28_c00029{left:216.870000px;}
.x5_c00029{left:227.235000px;}
.x29_c00029{left:247.965000px;}
.x6_c00029{left:279.075000px;}
.x2a_c00029{left:325.725000px;}
.x7_c00029{left:330.045000px;}
.xb_c00029{left:374.970000px;}
.xc_c00029{left:444.090000px;}
.xd_c00029{left:462.240000px;}
.x8_c00029{left:478.650000px;}
.xf_c00029{left:489.885000px;}
.x10_c00029{left:517.530000px;}
.xe_c00029{left:532.230000px;}
.x20_c00029{left:539.130000px;}
.x9_c00029{left:556.410000px;}
.x11_c00029{left:560.730000px;}
.xa_c00029{left:570.240000px;}
.x13_c00029{left:583.200000px;}
.x1a_c00029{left:584.925000px;}
.x21_c00029{left:652.320000px;}
.x14_c00029{left:665.280000px;}
.x22_c00029{left:668.730000px;}
.x1e_c00029{left:679.110000px;}
.x1c_c00029{left:695.520000px;}
.x17_c00029{left:710.205000px;}
.x12_c00029{left:733.530000px;}
.x18_c00029{left:736.995000px;}
.x1d_c00029{left:748.230000px;}
.x15_c00029{left:753.405000px;}
.x23_c00029{left:794.880000px;}
.x1b_c00029{left:810.435000px;}
.x19_c00029{left:831.165000px;}
.x1f_c00029{left:839.805000px;}
.x16_c00029{left:857.955000px;}
.x24_c00029{left:877.830000px;}
.x25_c00029{left:884.730000px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls0_c00029{letter-spacing:0.000000pt;}
.ws0_c00029{word-spacing:0.000000pt;}
.fs7_c00029{font-size:3.072000pt;}
.fsb_c00029{font-size:5.333333pt;}
.fs3_c00029{font-size:9.226667pt;}
.fs19_c00029{font-size:12.266667pt;}
.fs17_c00029{font-size:15.360000pt;}
.fs1a_c00029{font-size:18.453333pt;}
.fs0_c00029{font-size:21.493333pt;}
.fs16_c00029{font-size:24.586667pt;}
.fs15_c00029{font-size:42.986667pt;}
.fsc_c00029{font-size:49.173333pt;}
.fs1_c00029{font-size:55.306667pt;}
.fsd_c00029{font-size:58.346667pt;}
.fs18_c00029{font-size:61.440000pt;}
.fs12_c00029{font-size:70.666667pt;}
.fs14_c00029{font-size:76.800000pt;}
.fse_c00029{font-size:79.893333pt;}
.fs13_c00029{font-size:82.933333pt;}
.fs9_c00029{font-size:86.026667pt;}
.fsf_c00029{font-size:89.066667pt;}
.fsa_c00029{font-size:95.253333pt;}
.fs8_c00029{font-size:101.386667pt;}
.fs10_c00029{font-size:104.426667pt;}
.fs4_c00029{font-size:119.786667pt;}
.fs11_c00029{font-size:122.880000pt;}
.fs6_c00029{font-size:168.960000pt;}
.fs2_c00029{font-size:175.093333pt;}
.fs5_c00029{font-size:181.226667pt;}
.y0_c00029{bottom:0.000000pt;}
.y2d_c00029{bottom:175.106667pt;}
.y2c_c00029{bottom:404.733333pt;}
.y2b_c00029{bottom:413.946667pt;}
.y29_c00029{bottom:420.093333pt;}
.y2a_c00029{bottom:423.173333pt;}
.y22_c00029{bottom:498.426667pt;}
.y24_c00029{bottom:499.200000pt;}
.y25_c00029{bottom:503.813333pt;}
.y23_c00029{bottom:507.653333pt;}
.y20_c00029{bottom:511.493333pt;}
.y21_c00029{bottom:516.866667pt;}
.y1f_c00029{bottom:538.373333pt;}
.y1e_c00029{bottom:547.586667pt;}
.y1d_c00029{bottom:574.466667pt;}
.y1c_c00029{bottom:576.000000pt;}
.y1a_c00029{bottom:598.266667pt;}
.y1b_c00029{bottom:602.880000pt;}
.y2_c00029{bottom:603.653333pt;}
.y3_c00029{bottom:606.720000pt;}
.y1_c00029{bottom:621.306667pt;}
.y17_c00029{bottom:622.853333pt;}
.y19_c00029{bottom:625.146667pt;}
.y18_c00029{bottom:628.986667pt;}
.y15_c00029{bottom:651.266667pt;}
.y14_c00029{bottom:658.173333pt;}
.y13_c00029{bottom:659.706667pt;}
.y16_c00029{bottom:662.786667pt;}
.y12_c00029{bottom:685.053333pt;}
.y11_c00029{bottom:685.826667pt;}
.y10_c00029{bottom:686.586667pt;}
.y26_c00029{bottom:711.173333pt;}
.yc_c00029{bottom:711.933333pt;}
.yf_c00029{bottom:713.466667pt;}
.yd_c00029{bottom:714.240000pt;}
.ye_c00029{bottom:721.146667pt;}
.yb_c00029{bottom:723.453333pt;}
.ya_c00029{bottom:724.226667pt;}
.y6_c00029{bottom:726.533333pt;}
.y7_c00029{bottom:727.293333pt;}
.y5_c00029{bottom:738.813333pt;}
.y9_c00029{bottom:746.493333pt;}
.y8_c00029{bottom:754.173333pt;}
.y28_c00029{bottom:761.853333pt;}
.y27_c00029{bottom:766.466667pt;}
.y4_c00029{bottom:768.773333pt;}
.h9_c00029{height:2.764500pt;}
.hd_c00029{height:4.799479pt;}
.h5_c00029{height:8.303099pt;}
.h1b_c00029{height:11.038802pt;}
.h19_c00029{height:13.822500pt;}
.h1c_c00029{height:16.606198pt;}
.h2_c00029{height:19.341901pt;}
.h18_c00029{height:22.125599pt;}
.h17_c00029{height:38.683802pt;}
.he_c00029{height:44.251198pt;}
.h3_c00029{height:49.770599pt;}
.hf_c00029{height:52.506302pt;}
.h1a_c00029{height:55.290000pt;}
.h14_c00029{height:63.593099pt;}
.h16_c00029{height:69.112500pt;}
.h10_c00029{height:71.896198pt;}
.h15_c00029{height:74.631901pt;}
.hb_c00029{height:77.415599pt;}
.h11_c00029{height:80.151302pt;}
.hc_c00029{height:85.718698pt;}
.ha_c00029{height:91.238099pt;}
.h12_c00029{height:93.973802pt;}
.h6_c00029{height:107.796302pt;}
.h13_c00029{height:110.580000pt;}
.h8_c00029{height:152.047500pt;}
.h4_c00029{height:157.566901pt;}
.h7_c00029{height:163.086302pt;}
.h1_c00029{height:1340.000000pt;}
.h0_c00029{height:1340.160000pt;}
.w1_c00029{width:941.333333pt;}
.w0_c00029{width:941.573333pt;}
.x0_c00029{left:0.000000pt;}
.x2e_c00029{left:10.746667pt;}
.x2_c00029{left:33.026667pt;}
.x1_c00029{left:39.933333pt;}
.x2d_c00029{left:43.013333pt;}
.x2b_c00029{left:49.146667pt;}
.x2c_c00029{left:59.133333pt;}
.x26_c00029{left:65.280000pt;}
.x27_c00029{left:75.266667pt;}
.x3_c00029{left:90.626667pt;}
.x4_c00029{left:188.160000pt;}
.x28_c00029{left:192.773333pt;}
.x5_c00029{left:201.986667pt;}
.x29_c00029{left:220.413333pt;}
.x6_c00029{left:248.066667pt;}
.x2a_c00029{left:289.533333pt;}
.x7_c00029{left:293.373333pt;}
.xb_c00029{left:333.306667pt;}
.xc_c00029{left:394.746667pt;}
.xd_c00029{left:410.880000pt;}
.x8_c00029{left:425.466667pt;}
.xf_c00029{left:435.453333pt;}
.x10_c00029{left:460.026667pt;}
.xe_c00029{left:473.093333pt;}
.x20_c00029{left:479.226667pt;}
.x9_c00029{left:494.586667pt;}
.x11_c00029{left:498.426667pt;}
.xa_c00029{left:506.880000pt;}
.x13_c00029{left:518.400000pt;}
.x1a_c00029{left:519.933333pt;}
.x21_c00029{left:579.840000pt;}
.x14_c00029{left:591.360000pt;}
.x22_c00029{left:594.426667pt;}
.x1e_c00029{left:603.653333pt;}
.x1c_c00029{left:618.240000pt;}
.x17_c00029{left:631.293333pt;}
.x12_c00029{left:652.026667pt;}
.x18_c00029{left:655.106667pt;}
.x1d_c00029{left:665.093333pt;}
.x15_c00029{left:669.693333pt;}
.x23_c00029{left:706.560000pt;}
.x1b_c00029{left:720.386667pt;}
.x19_c00029{left:738.813333pt;}
.x1f_c00029{left:746.493333pt;}
.x16_c00029{left:762.626667pt;}
.x24_c00029{left:780.293333pt;}
.x25_c00029{left:786.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00030;src:url('chunks/assets/font_6ada09e0d3e64f543395d5b1.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:1.109863;font-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_c00030{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m9_c00030{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.mc_c00030{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00030{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.mb_c00030{transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);}
.ma_c00030{transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);}
.m8_c00030{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.m4_c00030{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_c00030{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c00030{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m6_c00030{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);}
.me_c00030{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mf_c00030{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.md_c00030{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c00030{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m3_c00030{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.v0_c00030{vertical-align:0.000000px;}
.ls0_c00030{letter-spacing:0.000000px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00030{word-spacing:0.000000px;}
.fc0_c00030{color:transparent;}
.fs5_c00030{font-size:3.456000px;}
.fsa_c00030{font-size:6.000000px;}
.fs3_c00030{font-size:17.280000px;}
.fs6_c00030{font-size:20.760000px;}
.fs0_c00030{font-size:31.080000px;}
.fsb_c00030{font-size:34.560000px;}
.fs4_c00030{font-size:38.040000px;}
.fs8_c00030{font-size:51.840000px;}
.fs2_c00030{font-size:55.320000px;}
.fs1_c00030{font-size:58.740000px;}
.fs9_c00030{font-size:65.640000px;}
.fs7_c00030{font-size:69.120000px;}
.y0_c00030{bottom:0.000000px;}
.y12_c00030{bottom:95.910000px;}
.y11_c00030{bottom:98.490000px;}
.y10_c00030{bottom:101.085000px;}
.yf_c00030{bottom:1033.350000px;}
.yc_c00030{bottom:1205.280000px;}
.ye_c00030{bottom:1208.730000px;}
.yd_c00030{bottom:1212.195000px;}
.yb_c00030{bottom:1213.920000px;}
.ya_c00030{bottom:1231.200000px;}
.y7_c00030{bottom:1247.610000px;}
.y8_c00030{bottom:1249.350000px;}
.y9_c00030{bottom:1251.930000px;}
.y4_c00030{bottom:1264.035000px;}
.y6_c00030{bottom:1266.630000px;}
.y5_c00030{bottom:1267.485000px;}
.y3_c00030{bottom:1303.770000px;}
.y2_c00030{bottom:1408.320000px;}
.y1_c00030{bottom:1448.070000px;}
.h7_c00030{height:3.110063px;}
.hc_c00030{height:5.399414px;}
.h5_c00030{height:15.550313px;}
.h8_c00030{height:18.681973px;}
.h2_c00030{height:27.968965px;}
.hd_c00030{height:31.100625px;}
.h6_c00030{height:34.232285px;}
.ha_c00030{height:46.650937px;}
.h4_c00030{height:49.782598px;}
.h3_c00030{height:52.860264px;}
.hb_c00030{height:59.069590px;}
.h9_c00030{height:62.201250px;}
.h0_c00030{height:1515.450000px;}
.h1_c00030{height:1515.750000px;}
.w0_c00030{width:1079.130000px;}
.w1_c00030{width:1079.250000px;}
.x0_c00030{left:0.000000px;}
.xd_c00030{left:398.310000px;}
.xe_c00030{left:413.850000px;}
.xf_c00030{left:432.870000px;}
.x2_c00030{left:697.245000px;}
.x3_c00030{left:796.605000px;}
.x4_c00030{left:959.040000px;}
.xc_c00030{left:992.731650px;}
.x5_c00030{left:1003.110000px;}
.x6_c00030{left:1023.840000px;}
.x7_c00030{left:1038.525000px;}
.x8_c00030{left:1040.250000px;}
.xa_c00030{left:1054.080000px;}
.x1_c00030{left:1055.805000px;}
.x9_c00030{left:1062.720000px;}
.xb_c00030{left:1072.230000px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls0_c00030{letter-spacing:0.000000pt;}
.ws0_c00030{word-spacing:0.000000pt;}
.fs5_c00030{font-size:3.072000pt;}
.fsa_c00030{font-size:5.333333pt;}
.fs3_c00030{font-size:15.360000pt;}
.fs6_c00030{font-size:18.453333pt;}
.fs0_c00030{font-size:27.626667pt;}
.fsb_c00030{font-size:30.720000pt;}
.fs4_c00030{font-size:33.813333pt;}
.fs8_c00030{font-size:46.080000pt;}
.fs2_c00030{font-size:49.173333pt;}
.fs1_c00030{font-size:52.213333pt;}
.fs9_c00030{font-size:58.346667pt;}
.fs7_c00030{font-size:61.440000pt;}
.y0_c00030{bottom:0.000000pt;}
.y12_c00030{bottom:85.253333pt;}
.y11_c00030{bottom:87.546667pt;}
.y10_c00030{bottom:89.853333pt;}
.yf_c00030{bottom:918.533333pt;}
.yc_c00030{bottom:1071.360000pt;}
.ye_c00030{bottom:1074.426667pt;}
.yd_c00030{bottom:1077.506667pt;}
.yb_c00030{bottom:1079.040000pt;}
.ya_c00030{bottom:1094.400000pt;}
.y7_c00030{bottom:1108.986667pt;}
.y8_c00030{bottom:1110.533333pt;}
.y9_c00030{bottom:1112.826667pt;}
.y4_c00030{bottom:1123.586667pt;}
.y6_c00030{bottom:1125.893333pt;}
.y5_c00030{bottom:1126.653333pt;}
.y3_c00030{bottom:1158.906667pt;}
.y2_c00030{bottom:1251.840000pt;}
.y1_c00030{bottom:1287.173333pt;}
.h7_c00030{height:2.764500pt;}
.hc_c00030{height:4.799479pt;}
.h5_c00030{height:13.822500pt;}
.h8_c00030{height:16.606198pt;}
.h2_c00030{height:24.861302pt;}
.hd_c00030{height:27.645000pt;}
.h6_c00030{height:30.428698pt;}
.ha_c00030{height:41.467500pt;}
.h4_c00030{height:44.251198pt;}
.h3_c00030{height:46.986901pt;}
.hb_c00030{height:52.506302pt;}
.h9_c00030{height:55.290000pt;}
.h0_c00030{height:1347.066667pt;}
.h1_c00030{height:1347.333333pt;}
.w0_c00030{width:959.226667pt;}
.w1_c00030{width:959.333333pt;}
.x0_c00030{left:0.000000pt;}
.xd_c00030{left:354.053333pt;}
.xe_c00030{left:367.866667pt;}
.xf_c00030{left:384.773333pt;}
.x2_c00030{left:619.773333pt;}
.x3_c00030{left:708.093333pt;}
.x4_c00030{left:852.480000pt;}
.xc_c00030{left:882.428133pt;}
.x5_c00030{left:891.653333pt;}
.x6_c00030{left:910.080000pt;}
.x7_c00030{left:923.133333pt;}
.x8_c00030{left:924.666667pt;}
.xa_c00030{left:936.960000pt;}
.x1_c00030{left:938.493333pt;}
.x9_c00030{left:944.640000pt;}
.xb_c00030{left:953.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45c0e071569442d09381d619.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:1.109863;font-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_c00031{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m9_c00031{transform:matrix(0.095550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095550,0.000000,0.000000,0.250000,0,0);}
.m0_c00031{transform:matrix(0.095600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095600,0.000000,0.000000,0.250000,0,0);}
.m2_c00031{transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);}
.m12_c00031{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.me_c00031{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);}
.m1_c00031{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.md_c00031{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m4_c00031{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);}
.mf_c00031{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);}
.m6_c00031{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c00031{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);}
.m8_c00031{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);}
.m7_c00031{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);}
.m3_c00031{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m10_c00031{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5_c00031{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.mb_c00031{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.mc_c00031{transform:matrix(1.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.242500,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;}
.fsa_c00031{font-size:10.380000px;}
.fs6_c00031{font-size:17.280000px;}
.fs8_c00031{font-size:27.660000px;}
.fs3_c00031{font-size:31.080000px;}
.fs4_c00031{font-size:34.560000px;}
.fs5_c00031{font-size:38.040000px;}
.fs7_c00031{font-size:51.840000px;}
.fsb_c00031{font-size:55.320000px;}
.fs2_c00031{font-size:72.600000px;}
.fs1_c00031{font-size:107.160000px;}
.fs9_c00031{font-size:190.080000px;}
.fs0_c00031{font-size:207.360000px;}
.y0_c00031{bottom:0.000000px;}
.y13_c00031{bottom:820.800000px;}
.y12_c00031{bottom:837.210000px;}
.yf_c00031{bottom:844.995000px;}
.y10_c00031{bottom:846.720000px;}
.y11_c00031{bottom:851.040000px;}
.yb_c00031{bottom:851.910000px;}
.yd_c00031{bottom:859.680000px;}
.ye_c00031{bottom:861.405000px;}
.yc_c00031{bottom:868.320000px;}
.ya_c00031{bottom:1048.890000px;}
.y8_c00031{bottom:1059.270000px;}
.y9_c00031{bottom:1060.125000px;}
.y6_c00031{bottom:1071.360000px;}
.y7_c00031{bottom:1073.955000px;}
.y5_c00031{bottom:1080.870000px;}
.y4_c00031{bottom:1081.725000px;}
.y3_c00031{bottom:1095.555000px;}
.y2_c00031{bottom:1101.600000px;}
.y1_c00031{bottom:1151.715000px;}
.hc_c00031{height:9.340986px;}
.h8_c00031{height:15.550313px;}
.ha_c00031{height:24.891299px;}
.h5_c00031{height:27.968965px;}
.h6_c00031{height:31.100625px;}
.h7_c00031{height:34.232285px;}
.h9_c00031{height:46.650937px;}
.hd_c00031{height:49.782598px;}
.h4_c00031{height:65.332910px;}
.h3_c00031{height:96.433535px;}
.hb_c00031{height:171.053437px;}
.h2_c00031{height:186.603750px;}
.h1_c00031{height:1507.500000px;}
.h0_c00031{height:1507.680000px;}
.w1_c00031{width:1059.000000px;}
.w0_c00031{width:1059.270000px;}
.x0_c00031{left:0.000000px;}
.x3_c00031{left:2.595000px;}
.x4_c00031{left:10.365000px;}
.x1_c00031{left:12.960000px;}
.x5_c00031{left:17.280000px;}
.x6_c00031{left:30.240000px;}
.x2_c00031{left:45.795000px;}
.x8_c00031{left:55.290000px;}
.x7_c00031{left:58.755000px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls0_c00031{letter-spacing:0.000000pt;}
.ws0_c00031{word-spacing:0.000000pt;}
.fsa_c00031{font-size:9.226667pt;}
.fs6_c00031{font-size:15.360000pt;}
.fs8_c00031{font-size:24.586667pt;}
.fs3_c00031{font-size:27.626667pt;}
.fs4_c00031{font-size:30.720000pt;}
.fs5_c00031{font-size:33.813333pt;}
.fs7_c00031{font-size:46.080000pt;}
.fsb_c00031{font-size:49.173333pt;}
.fs2_c00031{font-size:64.533333pt;}
.fs1_c00031{font-size:95.253333pt;}
.fs9_c00031{font-size:168.960000pt;}
.fs0_c00031{font-size:184.320000pt;}
.y0_c00031{bottom:0.000000pt;}
.y13_c00031{bottom:729.600000pt;}
.y12_c00031{bottom:744.186667pt;}
.yf_c00031{bottom:751.106667pt;}
.y10_c00031{bottom:752.640000pt;}
.y11_c00031{bottom:756.480000pt;}
.yb_c00031{bottom:757.253333pt;}
.yd_c00031{bottom:764.160000pt;}
.ye_c00031{bottom:765.693333pt;}
.yc_c00031{bottom:771.840000pt;}
.ya_c00031{bottom:932.346667pt;}
.y8_c00031{bottom:941.573333pt;}
.y9_c00031{bottom:942.333333pt;}
.y6_c00031{bottom:952.320000pt;}
.y7_c00031{bottom:954.626667pt;}
.y5_c00031{bottom:960.773333pt;}
.y4_c00031{bottom:961.533333pt;}
.y3_c00031{bottom:973.826667pt;}
.y2_c00031{bottom:979.200000pt;}
.y1_c00031{bottom:1023.746667pt;}
.hc_c00031{height:8.303099pt;}
.h8_c00031{height:13.822500pt;}
.ha_c00031{height:22.125599pt;}
.h5_c00031{height:24.861302pt;}
.h6_c00031{height:27.645000pt;}
.h7_c00031{height:30.428698pt;}
.h9_c00031{height:41.467500pt;}
.hd_c00031{height:44.251198pt;}
.h4_c00031{height:58.073698pt;}
.h3_c00031{height:85.718698pt;}
.hb_c00031{height:152.047500pt;}
.h2_c00031{height:165.870000pt;}
.h1_c00031{height:1340.000000pt;}
.h0_c00031{height:1340.160000pt;}
.w1_c00031{width:941.333333pt;}
.w0_c00031{width:941.573333pt;}
.x0_c00031{left:0.000000pt;}
.x3_c00031{left:2.306667pt;}
.x4_c00031{left:9.213333pt;}
.x1_c00031{left:11.520000pt;}
.x5_c00031{left:15.360000pt;}
.x6_c00031{left:26.880000pt;}
.x2_c00031{left:40.706667pt;}
.x8_c00031{left:49.146667pt;}
.x7_c00031{left:52.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_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_54e87627d2d2ceb12cb5f156.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:1.109863;font-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_c00032{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c00032{transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);}
.ma_c00032{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);}
.m9_c00032{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);}
.m0_c00032{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m3_c00032{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c00032{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00032{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);}
.m1_c00032{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m4_c00032{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);}
.mb_c00032{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m6_c00032{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mc_c00032{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,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;}
.fs5_c00032{font-size:3.456000px;}
.fs6_c00032{font-size:13.800000px;}
.fsb_c00032{font-size:20.760000px;}
.fsa_c00032{font-size:24.180000px;}
.fs9_c00032{font-size:34.560000px;}
.fs8_c00032{font-size:44.940000px;}
.fs4_c00032{font-size:51.840000px;}
.fs0_c00032{font-size:55.320000px;}
.fs3_c00032{font-size:58.740000px;}
.fs1_c00032{font-size:62.220000px;}
.fs2_c00032{font-size:69.120000px;}
.fs7_c00032{font-size:72.600000px;}
.y0_c00032{bottom:0.000000px;}
.y9_c00032{bottom:664.410000px;}
.ya_c00032{bottom:666.150000px;}
.y8_c00032{bottom:762.045000px;}
.y5_c00032{bottom:775.875000px;}
.y7_c00032{bottom:778.470000px;}
.y6_c00032{bottom:781.050000px;}
.y3_c00032{bottom:1009.155000px;}
.y4_c00032{bottom:1011.750000px;}
.y2_c00032{bottom:1402.275000px;}
.y1_c00032{bottom:1403.130000px;}
.h7_c00032{height:3.110063px;}
.h8_c00032{height:12.418652px;}
.hd_c00032{height:18.681973px;}
.hc_c00032{height:21.759639px;}
.hb_c00032{height:31.100625px;}
.ha_c00032{height:40.441611px;}
.h6_c00032{height:46.650937px;}
.h2_c00032{height:49.782598px;}
.h5_c00032{height:52.860264px;}
.h3_c00032{height:55.991924px;}
.h4_c00032{height:62.201250px;}
.h9_c00032{height:65.332910px;}
.h0_c00032{height:1515.450000px;}
.h1_c00032{height:1515.750000px;}
.w0_c00032{width:1079.130000px;}
.w1_c00032{width:1079.250000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:309.315000px;}
.x2_c00032{left:340.410000px;}
.x3_c00032{left:483.840000px;}
.x4_c00032{left:690.330000px;}
.x5_c00032{left:789.690000px;}
.xb_c00032{left:966.810000px;}
.xc_c00032{left:1006.560000px;}
.x8_c00032{left:1022.970000px;}
.x9_c00032{left:1041.120000px;}
.xa_c00032{left:1051.485000px;}
.x6_c00032{left:1057.530000px;}
.x7_c00032{left:1066.170000px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ws0_c00032{word-spacing:0.000000pt;}
.fs5_c00032{font-size:3.072000pt;}
.fs6_c00032{font-size:12.266667pt;}
.fsb_c00032{font-size:18.453333pt;}
.fsa_c00032{font-size:21.493333pt;}
.fs9_c00032{font-size:30.720000pt;}
.fs8_c00032{font-size:39.946667pt;}
.fs4_c00032{font-size:46.080000pt;}
.fs0_c00032{font-size:49.173333pt;}
.fs3_c00032{font-size:52.213333pt;}
.fs1_c00032{font-size:55.306667pt;}
.fs2_c00032{font-size:61.440000pt;}
.fs7_c00032{font-size:64.533333pt;}
.y0_c00032{bottom:0.000000pt;}
.y9_c00032{bottom:590.586667pt;}
.ya_c00032{bottom:592.133333pt;}
.y8_c00032{bottom:677.373333pt;}
.y5_c00032{bottom:689.666667pt;}
.y7_c00032{bottom:691.973333pt;}
.y6_c00032{bottom:694.266667pt;}
.y3_c00032{bottom:897.026667pt;}
.y4_c00032{bottom:899.333333pt;}
.y2_c00032{bottom:1246.466667pt;}
.y1_c00032{bottom:1247.226667pt;}
.h7_c00032{height:2.764500pt;}
.h8_c00032{height:11.038802pt;}
.hd_c00032{height:16.606198pt;}
.hc_c00032{height:19.341901pt;}
.hb_c00032{height:27.645000pt;}
.ha_c00032{height:35.948099pt;}
.h6_c00032{height:41.467500pt;}
.h2_c00032{height:44.251198pt;}
.h5_c00032{height:46.986901pt;}
.h3_c00032{height:49.770599pt;}
.h4_c00032{height:55.290000pt;}
.h9_c00032{height:58.073698pt;}
.h0_c00032{height:1347.066667pt;}
.h1_c00032{height:1347.333333pt;}
.w0_c00032{width:959.226667pt;}
.w1_c00032{width:959.333333pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:274.946667pt;}
.x2_c00032{left:302.586667pt;}
.x3_c00032{left:430.080000pt;}
.x4_c00032{left:613.626667pt;}
.x5_c00032{left:701.946667pt;}
.xb_c00032{left:859.386667pt;}
.xc_c00032{left:894.720000pt;}
.x8_c00032{left:909.306667pt;}
.x9_c00032{left:925.440000pt;}
.xa_c00032{left:934.653333pt;}
.x6_c00032{left:940.026667pt;}
.x7_c00032{left:947.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d39f13aa75822acbc4a67da.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:1.109863;font-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_c00033{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.md_c00033{transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);}
.mc_c00033{transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);}
.mb_c00033{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00033{transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);}
.ma_c00033{transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);}
.m1_c00033{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.me_c00033{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);}
.mf_c00033{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m6_c00033{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);}
.m7_c00033{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);}
.m4_c00033{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00033{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c00033{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);}
.m2_c00033{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m5_c00033{transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.445000,0.000000,0.000000,0.250000,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;}
.fs9_c00033{font-size:3.456000px;}
.fsc_c00033{font-size:6.000000px;}
.fs0_c00033{font-size:6.900000px;}
.fs2_c00033{font-size:10.380000px;}
.fs4_c00033{font-size:13.800000px;}
.fs5_c00033{font-size:17.280000px;}
.fs6_c00033{font-size:20.760000px;}
.fs8_c00033{font-size:27.660000px;}
.fsb_c00033{font-size:34.560000px;}
.fs3_c00033{font-size:55.320000px;}
.fs7_c00033{font-size:58.740000px;}
.fsa_c00033{font-size:69.120000px;}
.fs1_c00033{font-size:72.600000px;}
.y0_c00033{bottom:0.000000px;}
.ye_c00033{bottom:292.035000px;}
.yf_c00033{bottom:298.950000px;}
.yb_c00033{bottom:301.530000px;}
.yc_c00033{bottom:306.720000px;}
.yd_c00033{bottom:307.590000px;}
.y9_c00033{bottom:324.870000px;}
.ya_c00033{bottom:333.510000px;}
.y7_c00033{bottom:339.555000px;}
.y8_c00033{bottom:345.600000px;}
.y6_c00033{bottom:351.645000px;}
.y5_c00033{bottom:353.370000px;}
.y4_c00033{bottom:1073.955000px;}
.y2_c00033{bottom:1092.960000px;}
.y1_c00033{bottom:1096.410000px;}
.y3_c00033{bottom:1100.730000px;}
.hb_c00033{height:3.110063px;}
.he_c00033{height:5.399414px;}
.h2_c00033{height:6.209326px;}
.h4_c00033{height:9.340986px;}
.h6_c00033{height:12.418652px;}
.h7_c00033{height:15.550313px;}
.h8_c00033{height:18.681973px;}
.ha_c00033{height:24.891299px;}
.hd_c00033{height:31.100625px;}
.h5_c00033{height:49.782598px;}
.h9_c00033{height:52.860264px;}
.hc_c00033{height:62.201250px;}
.h3_c00033{height:65.332910px;}
.h1_c00033{height:1507.500000px;}
.h0_c00033{height:1507.680000px;}
.w1_c00033{width:1059.000000px;}
.w0_c00033{width:1059.270000px;}
.x0_c00033{left:0.000000px;}
.x3_c00033{left:5.190000px;}
.x1_c00033{left:8.640000px;}
.x4_c00033{left:13.830000px;}
.x9_c00033{left:18.150000px;}
.x7_c00033{left:31.110000px;}
.x5_c00033{left:32.835000px;}
.xa_c00033{left:50.970000px;}
.x2_c00033{left:57.030000px;}
.x6_c00033{left:59.610000px;}
.x8_c00033{left:69.120000px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls0_c00033{letter-spacing:0.000000pt;}
.ws0_c00033{word-spacing:0.000000pt;}
.fs9_c00033{font-size:3.072000pt;}
.fsc_c00033{font-size:5.333333pt;}
.fs0_c00033{font-size:6.133333pt;}
.fs2_c00033{font-size:9.226667pt;}
.fs4_c00033{font-size:12.266667pt;}
.fs5_c00033{font-size:15.360000pt;}
.fs6_c00033{font-size:18.453333pt;}
.fs8_c00033{font-size:24.586667pt;}
.fsb_c00033{font-size:30.720000pt;}
.fs3_c00033{font-size:49.173333pt;}
.fs7_c00033{font-size:52.213333pt;}
.fsa_c00033{font-size:61.440000pt;}
.fs1_c00033{font-size:64.533333pt;}
.y0_c00033{bottom:0.000000pt;}
.ye_c00033{bottom:259.586667pt;}
.yf_c00033{bottom:265.733333pt;}
.yb_c00033{bottom:268.026667pt;}
.yc_c00033{bottom:272.640000pt;}
.yd_c00033{bottom:273.413333pt;}
.y9_c00033{bottom:288.773333pt;}
.ya_c00033{bottom:296.453333pt;}
.y7_c00033{bottom:301.826667pt;}
.y8_c00033{bottom:307.200000pt;}
.y6_c00033{bottom:312.573333pt;}
.y5_c00033{bottom:314.106667pt;}
.y4_c00033{bottom:954.626667pt;}
.y2_c00033{bottom:971.520000pt;}
.y1_c00033{bottom:974.586667pt;}
.y3_c00033{bottom:978.426667pt;}
.hb_c00033{height:2.764500pt;}
.he_c00033{height:4.799479pt;}
.h2_c00033{height:5.519401pt;}
.h4_c00033{height:8.303099pt;}
.h6_c00033{height:11.038802pt;}
.h7_c00033{height:13.822500pt;}
.h8_c00033{height:16.606198pt;}
.ha_c00033{height:22.125599pt;}
.hd_c00033{height:27.645000pt;}
.h5_c00033{height:44.251198pt;}
.h9_c00033{height:46.986901pt;}
.hc_c00033{height:55.290000pt;}
.h3_c00033{height:58.073698pt;}
.h1_c00033{height:1340.000000pt;}
.h0_c00033{height:1340.160000pt;}
.w1_c00033{width:941.333333pt;}
.w0_c00033{width:941.573333pt;}
.x0_c00033{left:0.000000pt;}
.x3_c00033{left:4.613333pt;}
.x1_c00033{left:7.680000pt;}
.x4_c00033{left:12.293333pt;}
.x9_c00033{left:16.133333pt;}
.x7_c00033{left:27.653333pt;}
.x5_c00033{left:29.186667pt;}
.xa_c00033{left:45.306667pt;}
.x2_c00033{left:50.693333pt;}
.x6_c00033{left:52.986667pt;}
.x8_c00033{left:61.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_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_844a6e381e70243462a9056e.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:1.109863;font-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_c00034{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c00034{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m8_c00034{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c00034{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.mb_c00034{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);}
.mc_c00034{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00034{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);}
.m7_c00034{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);}
.m4_c00034{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma_c00034{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m0_c00034{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1_c00034{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m3_c00034{transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757500,0.000000,0.000000,0.250000,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;}
.fs1_c00034{font-size:6.000000px;}
.fs7_c00034{font-size:6.900000px;}
.fs0_c00034{font-size:17.280000px;}
.fs2_c00034{font-size:20.760000px;}
.fs6_c00034{font-size:31.080000px;}
.fs8_c00034{font-size:34.560000px;}
.fs5_c00034{font-size:48.360000px;}
.fs4_c00034{font-size:62.220000px;}
.fs3_c00034{font-size:65.640000px;}
.y0_c00034{bottom:0.000000px;}
.ye_c00034{bottom:637.635000px;}
.yd_c00034{bottom:646.275000px;}
.yc_c00034{bottom:648.000000px;}
.ya_c00034{bottom:660.090000px;}
.yb_c00034{bottom:664.410000px;}
.y8_c00034{bottom:673.050000px;}
.y9_c00034{bottom:673.920000px;}
.y7_c00034{bottom:675.645000px;}
.y6_c00034{bottom:689.475000px;}
.y4_c00034{bottom:690.330000px;}
.y5_c00034{bottom:691.200000px;}
.y3_c00034{bottom:705.030000px;}
.y2_c00034{bottom:1302.915000px;}
.y1_c00034{bottom:1357.350000px;}
.h3_c00034{height:5.399414px;}
.h9_c00034{height:6.209326px;}
.h2_c00034{height:15.550313px;}
.h4_c00034{height:18.681973px;}
.h8_c00034{height:27.968965px;}
.ha_c00034{height:31.100625px;}
.h7_c00034{height:43.519277px;}
.h6_c00034{height:55.991924px;}
.h5_c00034{height:59.069590px;}
.h0_c00034{height:1515.450000px;}
.h1_c00034{height:1515.750000px;}
.w0_c00034{width:1079.130000px;}
.w1_c00034{width:1079.250000px;}
.x0_c00034{left:0.000000px;}
.x2_c00034{left:933.990000px;}
.xb_c00034{left:1013.475000px;}
.x1_c00034{left:1018.650000px;}
.x9_c00034{left:1022.115000px;}
.x6_c00034{left:1025.565000px;}
.x3_c00034{left:1030.755000px;}
.x7_c00034{left:1043.715000px;}
.xa_c00034{left:1061.850000px;}
.x4_c00034{left:1065.315000px;}
.x8_c00034{left:1073.955000px;}
.x5_c00034{left:1077.405000px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls0_c00034{letter-spacing:0.000000pt;}
.ws0_c00034{word-spacing:0.000000pt;}
.fs1_c00034{font-size:5.333333pt;}
.fs7_c00034{font-size:6.133333pt;}
.fs0_c00034{font-size:15.360000pt;}
.fs2_c00034{font-size:18.453333pt;}
.fs6_c00034{font-size:27.626667pt;}
.fs8_c00034{font-size:30.720000pt;}
.fs5_c00034{font-size:42.986667pt;}
.fs4_c00034{font-size:55.306667pt;}
.fs3_c00034{font-size:58.346667pt;}
.y0_c00034{bottom:0.000000pt;}
.ye_c00034{bottom:566.786667pt;}
.yd_c00034{bottom:574.466667pt;}
.yc_c00034{bottom:576.000000pt;}
.ya_c00034{bottom:586.746667pt;}
.yb_c00034{bottom:590.586667pt;}
.y8_c00034{bottom:598.266667pt;}
.y9_c00034{bottom:599.040000pt;}
.y7_c00034{bottom:600.573333pt;}
.y6_c00034{bottom:612.866667pt;}
.y4_c00034{bottom:613.626667pt;}
.y5_c00034{bottom:614.400000pt;}
.y3_c00034{bottom:626.693333pt;}
.y2_c00034{bottom:1158.146667pt;}
.y1_c00034{bottom:1206.533333pt;}
.h3_c00034{height:4.799479pt;}
.h9_c00034{height:5.519401pt;}
.h2_c00034{height:13.822500pt;}
.h4_c00034{height:16.606198pt;}
.h8_c00034{height:24.861302pt;}
.ha_c00034{height:27.645000pt;}
.h7_c00034{height:38.683802pt;}
.h6_c00034{height:49.770599pt;}
.h5_c00034{height:52.506302pt;}
.h0_c00034{height:1347.066667pt;}
.h1_c00034{height:1347.333333pt;}
.w0_c00034{width:959.226667pt;}
.w1_c00034{width:959.333333pt;}
.x0_c00034{left:0.000000pt;}
.x2_c00034{left:830.213333pt;}
.xb_c00034{left:900.866667pt;}
.x1_c00034{left:905.466667pt;}
.x9_c00034{left:908.546667pt;}
.x6_c00034{left:911.613333pt;}
.x3_c00034{left:916.226667pt;}
.x7_c00034{left:927.746667pt;}
.xa_c00034{left:943.866667pt;}
.x4_c00034{left:946.946667pt;}
.x8_c00034{left:954.626667pt;}
.x5_c00034{left:957.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_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_6c967f367cdc9ff32424e6ab.woff2')format("woff");}.ff1_c00035{font-family:ff1_c00035;line-height:1.109863;font-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_c00035{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00035{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m10_c00035{transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);}
.m57_c00035{transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);}
.m11_c00035{transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);}
.mb1_c00035{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.m21_c00035{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.ma0_c00035{transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);}
.m89_c00035{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.maa_c00035{transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);}
.m16_c00035{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);}
.m12_c00035{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);}
.mae_c00035{transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);}
.m64_c00035{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00035{transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);}
.md_c00035{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00035{transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);}
.m67_c00035{transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);}
.ma9_c00035{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.mf_c00035{transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);}
.m40_c00035{transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);}
.me_c00035{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.m7a_c00035{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.m7c_c00035{transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);}
.mb0_c00035{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.m87_c00035{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m4a_c00035{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);}
.ma3_c00035{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.m7e_c00035{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);}
.m69_c00035{transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);}
.m9c_c00035{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m9a_c00035{transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);}
.mb2_c00035{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m4d_c00035{transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);}
.m68_c00035{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);}
.m72_c00035{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);}
.m85_c00035{transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);}
.m5f_c00035{transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);}
.m26_c00035{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m3f_c00035{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.m17_c00035{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m2d_c00035{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00035{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);}
.m22_c00035{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);}
.m49_c00035{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.mab_c00035{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.m2c_c00035{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);}
.ma1_c00035{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);}
.m47_c00035{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);}
.m9b_c00035{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.m7f_c00035{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.m3d_c00035{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.m7d_c00035{transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);}
.m30_c00035{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m2a_c00035{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);}
.m98_c00035{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m5b_c00035{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);}
.m1a_c00035{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m54_c00035{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);}
.ma_c00035{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.m65_c00035{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.m32_c00035{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.m99_c00035{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.m28_c00035{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);}
.m80_c00035{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.m95_c00035{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);}
.m6b_c00035{transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);}
.m2f_c00035{transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);}
.m18_c00035{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m3c_c00035{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);}
.m96_c00035{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.m1c_c00035{transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);}
.m4e_c00035{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);}
.m66_c00035{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);}
.m7b_c00035{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m4f_c00035{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);}
.m51_c00035{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);}
.m5c_c00035{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);}
.m5e_c00035{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);}
.m9d_c00035{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);}
.ma6_c00035{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);}
.m4_c00035{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.maf_c00035{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);}
.m14_c00035{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);}
.m73_c00035{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);}
.m46_c00035{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);}
.m1e_c00035{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);}
.ma2_c00035{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00035{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00035{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);}
.m25_c00035{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m63_c00035{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);}
.m39_c00035{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m43_c00035{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);}
.mb_c00035{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m31_c00035{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m76_c00035{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);}
.m79_c00035{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);}
.m5_c00035{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);}
.m62_c00035{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m58_c00035{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00035{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);}
.m37_c00035{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m77_c00035{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00035{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m45_c00035{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m91_c00035{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00035{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m48_c00035{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);}
.m1_c00035{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00035{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33_c00035{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);}
.m82_c00035{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);}
.m97_c00035{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00035{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c00035{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);}
.m81_c00035{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m74_c00035{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00035{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);}
.m15_c00035{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m3_c00035{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);}
.m5d_c00035{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m13_c00035{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m90_c00035{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m92_c00035{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m86_c00035{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);}
.m93_c00035{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);}
.m55_c00035{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);}
.m44_c00035{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00035{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00035{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m50_c00035{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00035{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m27_c00035{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);}
.m20_c00035{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00035{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00035{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m34_c00035{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m71_c00035{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m42_c00035{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);}
.m75_c00035{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00035{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m60_c00035{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m59_c00035{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);}
.m41_c00035{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);}
.m88_c00035{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00035{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);}
.m8c_c00035{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00035{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00035{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m19_c00035{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m0_c00035{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m23_c00035{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m38_c00035{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m2_c00035{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m78_c00035{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m7_c00035{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00035{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);}
.m6c_c00035{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00035{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.mad_c00035{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m83_c00035{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m52_c00035{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m61_c00035{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);}
.m70_c00035{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.mac_c00035{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00035{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m94_c00035{transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);}
.m53_c00035{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00035{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00035{transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);}
.m84_c00035{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m24_c00035{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m56_c00035{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00035{transform:matrix(1.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.572500,0.000000,0.000000,0.250000,0,0);}
.m8_c00035{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m35_c00035{transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);}
.m36_c00035{transform:matrix(3.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.887500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00035{transform:matrix(4.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.775000,0.000000,0.000000,0.250000,0,0);}
.v1_c00035{vertical-align:-3.480000px;}
.v0_c00035{vertical-align:0.000000px;}
.v2_c00035{vertical-align:3.420000px;}
.v3_c00035{vertical-align:10.380000px;}
.v4_c00035{vertical-align:13.860000px;}
.ls3_c00035{letter-spacing:0.000000px;}
.ls1_c00035{letter-spacing:30.852960px;}
.ls0_c00035{letter-spacing:226.698576px;}
.ls2_c00035{letter-spacing:234.665760px;}
.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:-15.561600px;}
.ws2_c00035{word-spacing:0.000000px;}
.ws1_c00035{word-spacing:44.115180px;}
.fc0_c00035{color:transparent;}
.fs8_c00035{font-size:3.456000px;}
.fs13_c00035{font-size:6.000000px;}
.fs2_c00035{font-size:6.900000px;}
.fs7_c00035{font-size:10.380000px;}
.fs12_c00035{font-size:13.800000px;}
.fs0_c00035{font-size:17.280000px;}
.fs16_c00035{font-size:20.760000px;}
.fse_c00035{font-size:24.180000px;}
.fs15_c00035{font-size:27.660000px;}
.fs9_c00035{font-size:31.080000px;}
.fs10_c00035{font-size:34.560000px;}
.fs1_c00035{font-size:38.040000px;}
.fs19_c00035{font-size:41.460000px;}
.fs11_c00035{font-size:44.940000px;}
.fs14_c00035{font-size:48.360000px;}
.fsd_c00035{font-size:51.840000px;}
.fs5_c00035{font-size:55.320000px;}
.fs17_c00035{font-size:62.220000px;}
.fs4_c00035{font-size:65.640000px;}
.fs3_c00035{font-size:69.120000px;}
.fs18_c00035{font-size:72.600000px;}
.fsa_c00035{font-size:76.020000px;}
.fsc_c00035{font-size:79.500000px;}
.fs6_c00035{font-size:82.920000px;}
.fsb_c00035{font-size:86.400000px;}
.fsf_c00035{font-size:89.880000px;}
.fs22_c00035{font-size:93.300000px;}
.fs1a_c00035{font-size:100.200000px;}
.fs1d_c00035{font-size:103.680000px;}
.fs1b_c00035{font-size:107.160000px;}
.fs23_c00035{font-size:110.580000px;}
.fs21_c00035{font-size:114.060000px;}
.fs1c_c00035{font-size:117.480000px;}
.fs1e_c00035{font-size:120.960000px;}
.fs20_c00035{font-size:127.860000px;}
.fs1f_c00035{font-size:134.760000px;}
.y0_c00035{bottom:0.000000px;}
.yaa_c00035{bottom:376.710000px;}
.ya7_c00035{bottom:388.800000px;}
.ya8_c00035{bottom:391.395000px;}
.ya9_c00035{bottom:406.080000px;}
.ya6_c00035{bottom:408.675000px;}
.ya5_c00035{bottom:420.765000px;}
.ya4_c00035{bottom:426.810000px;}
.ya1_c00035{bottom:441.510000px;}
.ya3_c00035{bottom:444.090000px;}
.ya2_c00035{bottom:447.555000px;}
.y9e_c00035{bottom:449.280000px;}
.y9f_c00035{bottom:452.730000px;}
.ya0_c00035{bottom:455.325000px;}
.y9c_c00035{bottom:476.925000px;}
.y9d_c00035{bottom:490.755000px;}
.y99_c00035{bottom:492.480000px;}
.y9a_c00035{bottom:495.930000px;}
.y9b_c00035{bottom:498.525000px;}
.y98_c00035{bottom:514.950000px;}
.y95_c00035{bottom:880.410000px;}
.y96_c00035{bottom:882.150000px;}
.y97_c00035{bottom:903.750000px;}
.y93_c00035{bottom:905.475000px;}
.y94_c00035{bottom:907.200000px;}
.y92_c00035{bottom:908.070000px;}
.y90_c00035{bottom:940.035000px;}
.y8f_c00035{bottom:941.760000px;}
.y91_c00035{bottom:946.950000px;}
.yad_c00035{bottom:952.995000px;}
.y8d_c00035{bottom:971.130000px;}
.y8e_c00035{bottom:972.000000px;}
.y89_c00035{bottom:974.595000px;}
.y8a_c00035{bottom:977.190000px;}
.y8c_c00035{bottom:978.915000px;}
.y8b_c00035{bottom:979.770000px;}
.y88_c00035{bottom:990.150000px;}
.y87_c00035{bottom:1000.515000px;}
.y85_c00035{bottom:1003.110000px;}
.y86_c00035{bottom:1004.835000px;}
.y84_c00035{bottom:1035.930000px;}
.y82_c00035{bottom:1037.670000px;}
.y81_c00035{bottom:1043.715000px;}
.y83_c00035{bottom:1045.440000px;}
.y7e_c00035{bottom:1067.910000px;}
.y7f_c00035{bottom:1069.635000px;}
.y7d_c00035{bottom:1070.490000px;}
.y80_c00035{bottom:1071.360000px;}
.y76_c00035{bottom:1075.680000px;}
.y75_c00035{bottom:1076.550000px;}
.y74_c00035{bottom:1077.405000px;}
.y77_c00035{bottom:1078.275000px;}
.y78_c00035{bottom:1079.130000px;}
.y72_c00035{bottom:1080.870000px;}
.y73_c00035{bottom:1082.595000px;}
.y7c_c00035{bottom:1099.005000px;}
.y7a_c00035{bottom:1099.875000px;}
.y7b_c00035{bottom:1100.730000px;}
.y79_c00035{bottom:1105.920000px;}
.y71_c00035{bottom:1123.200000px;}
.y6f_c00035{bottom:1138.755000px;}
.y70_c00035{bottom:1143.075000px;}
.y6c_c00035{bottom:1147.395000px;}
.y6d_c00035{bottom:1153.440000px;}
.y6e_c00035{bottom:1166.400000px;}
.y6a_c00035{bottom:1168.995000px;}
.y6b_c00035{bottom:1173.315000px;}
.y69_c00035{bottom:1178.490000px;}
.yab_c00035{bottom:1196.640000px;}
.yac_c00035{bottom:1200.090000px;}
.y65_c00035{bottom:1245.030000px;}
.y60_c00035{bottom:1247.610000px;}
.y68_c00035{bottom:1248.480000px;}
.y62_c00035{bottom:1249.350000px;}
.y61_c00035{bottom:1250.205000px;}
.y64_c00035{bottom:1251.075000px;}
.y66_c00035{bottom:1251.930000px;}
.y63_c00035{bottom:1252.800000px;}
.y5c_c00035{bottom:1253.670000px;}
.y67_c00035{bottom:1255.395000px;}
.y5a_c00035{bottom:1257.990000px;}
.y5d_c00035{bottom:1259.715000px;}
.y55_c00035{bottom:1260.570000px;}
.y56_c00035{bottom:1261.440000px;}
.y59_c00035{bottom:1262.310000px;}
.y5e_c00035{bottom:1263.165000px;}
.y57_c00035{bottom:1264.035000px;}
.y58_c00035{bottom:1264.890000px;}
.y5b_c00035{bottom:1265.760000px;}
.y5f_c00035{bottom:1270.080000px;}
.y51_c00035{bottom:1271.805000px;}
.y4c_c00035{bottom:1272.675000px;}
.y4f_c00035{bottom:1273.530000px;}
.y4d_c00035{bottom:1274.400000px;}
.y4e_c00035{bottom:1275.270000px;}
.y54_c00035{bottom:1276.125000px;}
.y50_c00035{bottom:1279.590000px;}
.y53_c00035{bottom:1280.445000px;}
.y52_c00035{bottom:1282.170000px;}
.y46_c00035{bottom:1296.000000px;}
.y4a_c00035{bottom:1296.870000px;}
.y47_c00035{bottom:1297.725000px;}
.y48_c00035{bottom:1300.320000px;}
.y1_c00035{bottom:1301.190000px;}
.y49_c00035{bottom:1302.915000px;}
.y44_c00035{bottom:1303.770000px;}
.y4b_c00035{bottom:1304.640000px;}
.y45_c00035{bottom:1308.960000px;}
.y43_c00035{bottom:1309.830000px;}
.y3d_c00035{bottom:1310.685000px;}
.y3e_c00035{bottom:1311.555000px;}
.y3f_c00035{bottom:1312.410000px;}
.y40_c00035{bottom:1313.280000px;}
.y41_c00035{bottom:1314.150000px;}
.y42_c00035{bottom:1315.005000px;}
.y3c_c00035{bottom:1316.730000px;}
.y3a_c00035{bottom:1317.600000px;}
.y3b_c00035{bottom:1321.050000px;}
.y33_c00035{bottom:1321.920000px;}
.y38_c00035{bottom:1322.790000px;}
.y35_c00035{bottom:1323.645000px;}
.y34_c00035{bottom:1324.515000px;}
.y37_c00035{bottom:1327.965000px;}
.y36_c00035{bottom:1328.835000px;}
.y39_c00035{bottom:1329.690000px;}
.y30_c00035{bottom:1330.560000px;}
.y29_c00035{bottom:1336.605000px;}
.y2b_c00035{bottom:1337.475000px;}
.y2e_c00035{bottom:1338.330000px;}
.y2c_c00035{bottom:1339.200000px;}
.y2d_c00035{bottom:1340.070000px;}
.y2f_c00035{bottom:1340.925000px;}
.y26_c00035{bottom:1341.795000px;}
.y32_c00035{bottom:1342.650000px;}
.y31_c00035{bottom:1343.520000px;}
.y22_c00035{bottom:1346.115000px;}
.y2a_c00035{bottom:1348.710000px;}
.y21_c00035{bottom:1349.565000px;}
.y23_c00035{bottom:1350.435000px;}
.y20_c00035{bottom:1351.290000px;}
.y28_c00035{bottom:1352.160000px;}
.y27_c00035{bottom:1353.030000px;}
.y25_c00035{bottom:1353.885000px;}
.y24_c00035{bottom:1354.755000px;}
.y18_c00035{bottom:1355.610000px;}
.y1f_c00035{bottom:1357.350000px;}
.y1d_c00035{bottom:1358.205000px;}
.y17_c00035{bottom:1359.075000px;}
.y1c_c00035{bottom:1359.930000px;}
.y1a_c00035{bottom:1363.395000px;}
.y19_c00035{bottom:1364.250000px;}
.y1e_c00035{bottom:1365.120000px;}
.y1b_c00035{bottom:1365.990000px;}
.yf_c00035{bottom:1371.165000px;}
.y10_c00035{bottom:1373.760000px;}
.y11_c00035{bottom:1374.630000px;}
.y12_c00035{bottom:1375.485000px;}
.y13_c00035{bottom:1376.355000px;}
.y15_c00035{bottom:1379.805000px;}
.y16_c00035{bottom:1380.675000px;}
.y14_c00035{bottom:1383.270000px;}
.yd_c00035{bottom:1398.810000px;}
.ye_c00035{bottom:1399.680000px;}
.yc_c00035{bottom:1400.550000px;}
.y4_c00035{bottom:1402.275000px;}
.yb_c00035{bottom:1403.130000px;}
.y7_c00035{bottom:1404.000000px;}
.y5_c00035{bottom:1405.725000px;}
.y8_c00035{bottom:1407.450000px;}
.y6_c00035{bottom:1408.320000px;}
.ya_c00035{bottom:1416.960000px;}
.y9_c00035{bottom:1419.555000px;}
.y2_c00035{bottom:1420.410000px;}
.y3_c00035{bottom:1423.875000px;}
.ha_c00035{height:3.110063px;}
.h15_c00035{height:5.399414px;}
.h4_c00035{height:6.209326px;}
.h9_c00035{height:9.340986px;}
.h14_c00035{height:12.418652px;}
.h2_c00035{height:15.550313px;}
.h1b_c00035{height:16.589326px;}
.h18_c00035{height:18.681973px;}
.h10_c00035{height:21.759639px;}
.h17_c00035{height:24.891299px;}
.hb_c00035{height:27.968965px;}
.h12_c00035{height:31.100625px;}
.h3_c00035{height:34.232285px;}
.h1c_c00035{height:37.309951px;}
.h13_c00035{height:40.441611px;}
.h16_c00035{height:43.519277px;}
.hf_c00035{height:46.650937px;}
.h7_c00035{height:49.782598px;}
.h19_c00035{height:55.991924px;}
.h6_c00035{height:59.069590px;}
.h5_c00035{height:62.201250px;}
.h1a_c00035{height:65.332910px;}
.hc_c00035{height:68.410576px;}
.he_c00035{height:71.542236px;}
.h8_c00035{height:74.619902px;}
.hd_c00035{height:77.751563px;}
.h11_c00035{height:80.883223px;}
.h25_c00035{height:83.960889px;}
.h1d_c00035{height:90.170215px;}
.h20_c00035{height:93.301875px;}
.h1e_c00035{height:96.433535px;}
.h26_c00035{height:99.511201px;}
.h24_c00035{height:102.642861px;}
.h1f_c00035{height:105.720527px;}
.h21_c00035{height:108.852188px;}
.h23_c00035{height:115.061514px;}
.h22_c00035{height:121.270840px;}
.h1_c00035{height:1507.500000px;}
.h0_c00035{height:1507.680000px;}
.w1_c00035{width:1059.000000px;}
.w0_c00035{width:1059.270000px;}
.x0_c00035{left:0.000000px;}
.x7a_c00035{left:2.595000px;}
.x97_c00035{left:5.190000px;}
.x94_c00035{left:6.915000px;}
.x7b_c00035{left:13.830000px;}
.x99_c00035{left:19.875000px;}
.x7e_c00035{left:21.600000px;}
.x9d_c00035{left:24.195000px;}
.x9c_c00035{left:25.920000px;}
.x95_c00035{left:27.645000px;}
.x7c_c00035{left:36.285000px;}
.x9b_c00035{left:38.880000px;}
.x9a_c00035{left:41.475000px;}
.x98_c00035{left:52.710000px;}
.x96_c00035{left:55.290000px;}
.x1_c00035{left:69.120000px;}
.x7d_c00035{left:71.715000px;}
.x7f_c00035{left:133.050000px;}
.x80_c00035{left:145.155000px;}
.x39_c00035{left:213.405000px;}
.x10_c00035{left:218.595000px;}
.x1b_c00035{left:222.045000px;}
.x67_c00035{left:223.770000px;}
.x3a_c00035{left:229.830000px;}
.x6c_c00035{left:231.555000px;}
.x51_c00035{left:240.195000px;}
.x68_c00035{left:249.690000px;}
.x3b_c00035{left:251.430000px;}
.x2c_c00035{left:253.155000px;}
.x3c_c00035{left:255.750000px;}
.x1c_c00035{left:262.650000px;}
.x52_c00035{left:265.245000px;}
.x11_c00035{left:275.610000px;}
.x2d_c00035{left:279.930000px;}
.x2_c00035{left:289.440000px;}
.x6d_c00035{left:292.035000px;}
.x5e_c00035{left:293.760000px;}
.x4_c00035{left:297.210000px;}
.x3d_c00035{left:304.125000px;}
.x2e_c00035{left:312.765000px;}
.x1d_c00035{left:314.490000px;}
.x53_c00035{left:319.680000px;}
.x81_c00035{left:326.595000px;}
.x3e_c00035{left:329.190000px;}
.x6e_c00035{left:336.960000px;}
.x2f_c00035{left:338.685000px;}
.x1e_c00035{left:344.730000px;}
.x5_c00035{left:346.470000px;}
.x3f_c00035{left:349.050000px;}
.x5f_c00035{left:351.645000px;}
.x12_c00035{left:354.240000px;}
.x4b_c00035{left:355.965000px;}
.x1f_c00035{left:358.560000px;}
.x6f_c00035{left:365.475000px;}
.x69_c00035{left:371.520000px;}
.x54_c00035{left:375.840000px;}
.x70_c00035{left:377.565000px;}
.x40_c00035{left:381.030000px;}
.x30_c00035{left:384.480000px;}
.x60_c00035{left:386.205000px;}
.x20_c00035{left:390.525000px;}
.x13_c00035{left:397.440000px;}
.x41_c00035{left:400.890000px;}
.x55_c00035{left:406.080000px;}
.x21_c00035{left:414.720000px;}
.x56_c00035{left:423.360000px;}
.x78_c00035{left:432.870000px;}
.x22_c00035{left:437.190000px;}
.x4c_c00035{left:440.640000px;}
.x42_c00035{left:442.365000px;}
.x71_c00035{left:453.600000px;}
.x4d_c00035{left:456.195000px;}
.x23_c00035{left:459.645000px;}
.x79_c00035{left:462.240000px;}
.x61_c00035{left:464.835000px;}
.x31_c00035{left:466.560000px;}
.x24_c00035{left:473.475000px;}
.x43_c00035{left:483.840000px;}
.x72_c00035{left:486.435000px;}
.x44_c00035{left:488.160000px;}
.x32_c00035{left:489.885000px;}
.x25_c00035{left:493.350000px;}
.x57_c00035{left:495.930000px;}
.x14_c00035{left:498.525000px;}
.x33_c00035{left:506.310000px;}
.x6a_c00035{left:513.210000px;}
.x45_c00035{left:516.675000px;}
.x6_c00035{left:519.270000px;}
.x26_c00035{left:527.910000px;}
.x15_c00035{left:540.870000px;}
.x7_c00035{left:544.320000px;}
.x27_c00035{left:547.770000px;}
.x58_c00035{left:555.555000px;}
.x16_c00035{left:559.875000px;}
.x34_c00035{left:561.600000px;}
.x8d_c00035{left:574.560000px;}
.x73_c00035{left:578.880000px;}
.x87_c00035{left:583.200000px;}
.x28_c00035{left:586.650000px;}
.xd_c00035{left:588.390000px;}
.x59_c00035{left:596.160000px;}
.x46_c00035{left:601.350000px;}
.x82_c00035{left:604.800000px;}
.x47_c00035{left:613.440000px;}
.x35_c00035{left:615.165000px;}
.x8b_c00035{left:624.675000px;}
.x29_c00035{left:629.850000px;}
.x48_c00035{left:634.170000px;}
.x74_c00035{left:642.810000px;}
.x4e_c00035{left:646.275000px;}
.x8_c00035{left:648.870000px;}
.x88_c00035{left:652.320000px;}
.x5a_c00035{left:655.770000px;}
.x84_c00035{left:657.510000px;}
.x62_c00035{left:660.960000px;}
.x49_c00035{left:669.600000px;}
.x5b_c00035{left:675.645000px;}
.x17_c00035{left:678.240000px;}
.x18_c00035{left:684.285000px;}
.x2a_c00035{left:686.010000px;}
.x63_c00035{left:688.605000px;}
.xe_c00035{left:697.245000px;}
.x4f_c00035{left:700.710000px;}
.x36_c00035{left:704.160000px;}
.x85_c00035{left:711.930000px;}
.x89_c00035{left:715.395000px;}
.x64_c00035{left:719.715000px;}
.x6b_c00035{left:724.035000px;}
.x75_c00035{left:734.400000px;}
.x8c_c00035{left:739.590000px;}
.x19_c00035{left:741.315000px;}
.x86_c00035{left:750.810000px;}
.x3_c00035{left:756.000000px;}
.x5c_c00035{left:757.725000px;}
.x2b_c00035{left:766.365000px;}
.x65_c00035{left:768.090000px;}
.x50_c00035{left:773.280000px;}
.x9_c00035{left:777.600000px;}
.x37_c00035{left:779.325000px;}
.x66_c00035{left:788.835000px;}
.x92_c00035{left:794.880000px;}
.x38_c00035{left:798.330000px;}
.xf_c00035{left:800.070000px;}
.x8a_c00035{left:803.520000px;}
.xa_c00035{left:806.970000px;}
.x4a_c00035{left:812.160000px;}
.x91_c00035{left:818.205000px;}
.x1a_c00035{left:821.670000px;}
.xb_c00035{left:823.395000px;}
.x5d_c00035{left:830.310000px;}
.x76_c00035{left:832.890000px;}
.x8e_c00035{left:834.630000px;}
.xc_c00035{left:838.080000px;}
.x77_c00035{left:844.994325px;}
.x93_c00035{left:849.315000px;}
.x83_c00035{left:851.040000px;}
.x9e_c00035{left:868.320000px;}
.x8f_c00035{left:874.365000px;}
.x9f_c00035{left:878.685000px;}
.x90_c00035{left:889.050000px;}
.xa0_c00035{left:907.200000px;}
@media print{
.v1_c00035{vertical-align:-3.093333pt;}
.v0_c00035{vertical-align:0.000000pt;}
.v2_c00035{vertical-align:3.040000pt;}
.v3_c00035{vertical-align:9.226667pt;}
.v4_c00035{vertical-align:12.320000pt;}
.ls3_c00035{letter-spacing:0.000000pt;}
.ls1_c00035{letter-spacing:27.424853pt;}
.ls0_c00035{letter-spacing:201.509845pt;}
.ls2_c00035{letter-spacing:208.591787pt;}
.ws0_c00035{word-spacing:-13.832533pt;}
.ws2_c00035{word-spacing:0.000000pt;}
.ws1_c00035{word-spacing:39.213493pt;}
.fs8_c00035{font-size:3.072000pt;}
.fs13_c00035{font-size:5.333333pt;}
.fs2_c00035{font-size:6.133333pt;}
.fs7_c00035{font-size:9.226667pt;}
.fs12_c00035{font-size:12.266667pt;}
.fs0_c00035{font-size:15.360000pt;}
.fs16_c00035{font-size:18.453333pt;}
.fse_c00035{font-size:21.493333pt;}
.fs15_c00035{font-size:24.586667pt;}
.fs9_c00035{font-size:27.626667pt;}
.fs10_c00035{font-size:30.720000pt;}
.fs1_c00035{font-size:33.813333pt;}
.fs19_c00035{font-size:36.853333pt;}
.fs11_c00035{font-size:39.946667pt;}
.fs14_c00035{font-size:42.986667pt;}
.fsd_c00035{font-size:46.080000pt;}
.fs5_c00035{font-size:49.173333pt;}
.fs17_c00035{font-size:55.306667pt;}
.fs4_c00035{font-size:58.346667pt;}
.fs3_c00035{font-size:61.440000pt;}
.fs18_c00035{font-size:64.533333pt;}
.fsa_c00035{font-size:67.573333pt;}
.fsc_c00035{font-size:70.666667pt;}
.fs6_c00035{font-size:73.706667pt;}
.fsb_c00035{font-size:76.800000pt;}
.fsf_c00035{font-size:79.893333pt;}
.fs22_c00035{font-size:82.933333pt;}
.fs1a_c00035{font-size:89.066667pt;}
.fs1d_c00035{font-size:92.160000pt;}
.fs1b_c00035{font-size:95.253333pt;}
.fs23_c00035{font-size:98.293333pt;}
.fs21_c00035{font-size:101.386667pt;}
.fs1c_c00035{font-size:104.426667pt;}
.fs1e_c00035{font-size:107.520000pt;}
.fs20_c00035{font-size:113.653333pt;}
.fs1f_c00035{font-size:119.786667pt;}
.y0_c00035{bottom:0.000000pt;}
.yaa_c00035{bottom:334.853333pt;}
.ya7_c00035{bottom:345.600000pt;}
.ya8_c00035{bottom:347.906667pt;}
.ya9_c00035{bottom:360.960000pt;}
.ya6_c00035{bottom:363.266667pt;}
.ya5_c00035{bottom:374.013333pt;}
.ya4_c00035{bottom:379.386667pt;}
.ya1_c00035{bottom:392.453333pt;}
.ya3_c00035{bottom:394.746667pt;}
.ya2_c00035{bottom:397.826667pt;}
.y9e_c00035{bottom:399.360000pt;}
.y9f_c00035{bottom:402.426667pt;}
.ya0_c00035{bottom:404.733333pt;}
.y9c_c00035{bottom:423.933333pt;}
.y9d_c00035{bottom:436.226667pt;}
.y99_c00035{bottom:437.760000pt;}
.y9a_c00035{bottom:440.826667pt;}
.y9b_c00035{bottom:443.133333pt;}
.y98_c00035{bottom:457.733333pt;}
.y95_c00035{bottom:782.586667pt;}
.y96_c00035{bottom:784.133333pt;}
.y97_c00035{bottom:803.333333pt;}
.y93_c00035{bottom:804.866667pt;}
.y94_c00035{bottom:806.400000pt;}
.y92_c00035{bottom:807.173333pt;}
.y90_c00035{bottom:835.586667pt;}
.y8f_c00035{bottom:837.120000pt;}
.y91_c00035{bottom:841.733333pt;}
.yad_c00035{bottom:847.106667pt;}
.y8d_c00035{bottom:863.226667pt;}
.y8e_c00035{bottom:864.000000pt;}
.y89_c00035{bottom:866.306667pt;}
.y8a_c00035{bottom:868.613333pt;}
.y8c_c00035{bottom:870.146667pt;}
.y8b_c00035{bottom:870.906667pt;}
.y88_c00035{bottom:880.133333pt;}
.y87_c00035{bottom:889.346667pt;}
.y85_c00035{bottom:891.653333pt;}
.y86_c00035{bottom:893.186667pt;}
.y84_c00035{bottom:920.826667pt;}
.y82_c00035{bottom:922.373333pt;}
.y81_c00035{bottom:927.746667pt;}
.y83_c00035{bottom:929.280000pt;}
.y7e_c00035{bottom:949.253333pt;}
.y7f_c00035{bottom:950.786667pt;}
.y7d_c00035{bottom:951.546667pt;}
.y80_c00035{bottom:952.320000pt;}
.y76_c00035{bottom:956.160000pt;}
.y75_c00035{bottom:956.933333pt;}
.y74_c00035{bottom:957.693333pt;}
.y77_c00035{bottom:958.466667pt;}
.y78_c00035{bottom:959.226667pt;}
.y72_c00035{bottom:960.773333pt;}
.y73_c00035{bottom:962.306667pt;}
.y7c_c00035{bottom:976.893333pt;}
.y7a_c00035{bottom:977.666667pt;}
.y7b_c00035{bottom:978.426667pt;}
.y79_c00035{bottom:983.040000pt;}
.y71_c00035{bottom:998.400000pt;}
.y6f_c00035{bottom:1012.226667pt;}
.y70_c00035{bottom:1016.066667pt;}
.y6c_c00035{bottom:1019.906667pt;}
.y6d_c00035{bottom:1025.280000pt;}
.y6e_c00035{bottom:1036.800000pt;}
.y6a_c00035{bottom:1039.106667pt;}
.y6b_c00035{bottom:1042.946667pt;}
.y69_c00035{bottom:1047.546667pt;}
.yab_c00035{bottom:1063.680000pt;}
.yac_c00035{bottom:1066.746667pt;}
.y65_c00035{bottom:1106.693333pt;}
.y60_c00035{bottom:1108.986667pt;}
.y68_c00035{bottom:1109.760000pt;}
.y62_c00035{bottom:1110.533333pt;}
.y61_c00035{bottom:1111.293333pt;}
.y64_c00035{bottom:1112.066667pt;}
.y66_c00035{bottom:1112.826667pt;}
.y63_c00035{bottom:1113.600000pt;}
.y5c_c00035{bottom:1114.373333pt;}
.y67_c00035{bottom:1115.906667pt;}
.y5a_c00035{bottom:1118.213333pt;}
.y5d_c00035{bottom:1119.746667pt;}
.y55_c00035{bottom:1120.506667pt;}
.y56_c00035{bottom:1121.280000pt;}
.y59_c00035{bottom:1122.053333pt;}
.y5e_c00035{bottom:1122.813333pt;}
.y57_c00035{bottom:1123.586667pt;}
.y58_c00035{bottom:1124.346667pt;}
.y5b_c00035{bottom:1125.120000pt;}
.y5f_c00035{bottom:1128.960000pt;}
.y51_c00035{bottom:1130.493333pt;}
.y4c_c00035{bottom:1131.266667pt;}
.y4f_c00035{bottom:1132.026667pt;}
.y4d_c00035{bottom:1132.800000pt;}
.y4e_c00035{bottom:1133.573333pt;}
.y54_c00035{bottom:1134.333333pt;}
.y50_c00035{bottom:1137.413333pt;}
.y53_c00035{bottom:1138.173333pt;}
.y52_c00035{bottom:1139.706667pt;}
.y46_c00035{bottom:1152.000000pt;}
.y4a_c00035{bottom:1152.773333pt;}
.y47_c00035{bottom:1153.533333pt;}
.y48_c00035{bottom:1155.840000pt;}
.y1_c00035{bottom:1156.613333pt;}
.y49_c00035{bottom:1158.146667pt;}
.y44_c00035{bottom:1158.906667pt;}
.y4b_c00035{bottom:1159.680000pt;}
.y45_c00035{bottom:1163.520000pt;}
.y43_c00035{bottom:1164.293333pt;}
.y3d_c00035{bottom:1165.053333pt;}
.y3e_c00035{bottom:1165.826667pt;}
.y3f_c00035{bottom:1166.586667pt;}
.y40_c00035{bottom:1167.360000pt;}
.y41_c00035{bottom:1168.133333pt;}
.y42_c00035{bottom:1168.893333pt;}
.y3c_c00035{bottom:1170.426667pt;}
.y3a_c00035{bottom:1171.200000pt;}
.y3b_c00035{bottom:1174.266667pt;}
.y33_c00035{bottom:1175.040000pt;}
.y38_c00035{bottom:1175.813333pt;}
.y35_c00035{bottom:1176.573333pt;}
.y34_c00035{bottom:1177.346667pt;}
.y37_c00035{bottom:1180.413333pt;}
.y36_c00035{bottom:1181.186667pt;}
.y39_c00035{bottom:1181.946667pt;}
.y30_c00035{bottom:1182.720000pt;}
.y29_c00035{bottom:1188.093333pt;}
.y2b_c00035{bottom:1188.866667pt;}
.y2e_c00035{bottom:1189.626667pt;}
.y2c_c00035{bottom:1190.400000pt;}
.y2d_c00035{bottom:1191.173333pt;}
.y2f_c00035{bottom:1191.933333pt;}
.y26_c00035{bottom:1192.706667pt;}
.y32_c00035{bottom:1193.466667pt;}
.y31_c00035{bottom:1194.240000pt;}
.y22_c00035{bottom:1196.546667pt;}
.y2a_c00035{bottom:1198.853333pt;}
.y21_c00035{bottom:1199.613333pt;}
.y23_c00035{bottom:1200.386667pt;}
.y20_c00035{bottom:1201.146667pt;}
.y28_c00035{bottom:1201.920000pt;}
.y27_c00035{bottom:1202.693333pt;}
.y25_c00035{bottom:1203.453333pt;}
.y24_c00035{bottom:1204.226667pt;}
.y18_c00035{bottom:1204.986667pt;}
.y1f_c00035{bottom:1206.533333pt;}
.y1d_c00035{bottom:1207.293333pt;}
.y17_c00035{bottom:1208.066667pt;}
.y1c_c00035{bottom:1208.826667pt;}
.y1a_c00035{bottom:1211.906667pt;}
.y19_c00035{bottom:1212.666667pt;}
.y1e_c00035{bottom:1213.440000pt;}
.y1b_c00035{bottom:1214.213333pt;}
.yf_c00035{bottom:1218.813333pt;}
.y10_c00035{bottom:1221.120000pt;}
.y11_c00035{bottom:1221.893333pt;}
.y12_c00035{bottom:1222.653333pt;}
.y13_c00035{bottom:1223.426667pt;}
.y15_c00035{bottom:1226.493333pt;}
.y16_c00035{bottom:1227.266667pt;}
.y14_c00035{bottom:1229.573333pt;}
.yd_c00035{bottom:1243.386667pt;}
.ye_c00035{bottom:1244.160000pt;}
.yc_c00035{bottom:1244.933333pt;}
.y4_c00035{bottom:1246.466667pt;}
.yb_c00035{bottom:1247.226667pt;}
.y7_c00035{bottom:1248.000000pt;}
.y5_c00035{bottom:1249.533333pt;}
.y8_c00035{bottom:1251.066667pt;}
.y6_c00035{bottom:1251.840000pt;}
.ya_c00035{bottom:1259.520000pt;}
.y9_c00035{bottom:1261.826667pt;}
.y2_c00035{bottom:1262.586667pt;}
.y3_c00035{bottom:1265.666667pt;}
.ha_c00035{height:2.764500pt;}
.h15_c00035{height:4.799479pt;}
.h4_c00035{height:5.519401pt;}
.h9_c00035{height:8.303099pt;}
.h14_c00035{height:11.038802pt;}
.h2_c00035{height:13.822500pt;}
.h1b_c00035{height:14.746068pt;}
.h18_c00035{height:16.606198pt;}
.h10_c00035{height:19.341901pt;}
.h17_c00035{height:22.125599pt;}
.hb_c00035{height:24.861302pt;}
.h12_c00035{height:27.645000pt;}
.h3_c00035{height:30.428698pt;}
.h1c_c00035{height:33.164401pt;}
.h13_c00035{height:35.948099pt;}
.h16_c00035{height:38.683802pt;}
.hf_c00035{height:41.467500pt;}
.h7_c00035{height:44.251198pt;}
.h19_c00035{height:49.770599pt;}
.h6_c00035{height:52.506302pt;}
.h5_c00035{height:55.290000pt;}
.h1a_c00035{height:58.073698pt;}
.hc_c00035{height:60.809401pt;}
.he_c00035{height:63.593099pt;}
.h8_c00035{height:66.328802pt;}
.hd_c00035{height:69.112500pt;}
.h11_c00035{height:71.896198pt;}
.h25_c00035{height:74.631901pt;}
.h1d_c00035{height:80.151302pt;}
.h20_c00035{height:82.935000pt;}
.h1e_c00035{height:85.718698pt;}
.h26_c00035{height:88.454401pt;}
.h24_c00035{height:91.238099pt;}
.h1f_c00035{height:93.973802pt;}
.h21_c00035{height:96.757500pt;}
.h23_c00035{height:102.276901pt;}
.h22_c00035{height:107.796302pt;}
.h1_c00035{height:1340.000000pt;}
.h0_c00035{height:1340.160000pt;}
.w1_c00035{width:941.333333pt;}
.w0_c00035{width:941.573333pt;}
.x0_c00035{left:0.000000pt;}
.x7a_c00035{left:2.306667pt;}
.x97_c00035{left:4.613333pt;}
.x94_c00035{left:6.146667pt;}
.x7b_c00035{left:12.293333pt;}
.x99_c00035{left:17.666667pt;}
.x7e_c00035{left:19.200000pt;}
.x9d_c00035{left:21.506667pt;}
.x9c_c00035{left:23.040000pt;}
.x95_c00035{left:24.573333pt;}
.x7c_c00035{left:32.253333pt;}
.x9b_c00035{left:34.560000pt;}
.x9a_c00035{left:36.866667pt;}
.x98_c00035{left:46.853333pt;}
.x96_c00035{left:49.146667pt;}
.x1_c00035{left:61.440000pt;}
.x7d_c00035{left:63.746667pt;}
.x7f_c00035{left:118.266667pt;}
.x80_c00035{left:129.026667pt;}
.x39_c00035{left:189.693333pt;}
.x10_c00035{left:194.306667pt;}
.x1b_c00035{left:197.373333pt;}
.x67_c00035{left:198.906667pt;}
.x3a_c00035{left:204.293333pt;}
.x6c_c00035{left:205.826667pt;}
.x51_c00035{left:213.506667pt;}
.x68_c00035{left:221.946667pt;}
.x3b_c00035{left:223.493333pt;}
.x2c_c00035{left:225.026667pt;}
.x3c_c00035{left:227.333333pt;}
.x1c_c00035{left:233.466667pt;}
.x52_c00035{left:235.773333pt;}
.x11_c00035{left:244.986667pt;}
.x2d_c00035{left:248.826667pt;}
.x2_c00035{left:257.280000pt;}
.x6d_c00035{left:259.586667pt;}
.x5e_c00035{left:261.120000pt;}
.x4_c00035{left:264.186667pt;}
.x3d_c00035{left:270.333333pt;}
.x2e_c00035{left:278.013333pt;}
.x1d_c00035{left:279.546667pt;}
.x53_c00035{left:284.160000pt;}
.x81_c00035{left:290.306667pt;}
.x3e_c00035{left:292.613333pt;}
.x6e_c00035{left:299.520000pt;}
.x2f_c00035{left:301.053333pt;}
.x1e_c00035{left:306.426667pt;}
.x5_c00035{left:307.973333pt;}
.x3f_c00035{left:310.266667pt;}
.x5f_c00035{left:312.573333pt;}
.x12_c00035{left:314.880000pt;}
.x4b_c00035{left:316.413333pt;}
.x1f_c00035{left:318.720000pt;}
.x6f_c00035{left:324.866667pt;}
.x69_c00035{left:330.240000pt;}
.x54_c00035{left:334.080000pt;}
.x70_c00035{left:335.613333pt;}
.x40_c00035{left:338.693333pt;}
.x30_c00035{left:341.760000pt;}
.x60_c00035{left:343.293333pt;}
.x20_c00035{left:347.133333pt;}
.x13_c00035{left:353.280000pt;}
.x41_c00035{left:356.346667pt;}
.x55_c00035{left:360.960000pt;}
.x21_c00035{left:368.640000pt;}
.x56_c00035{left:376.320000pt;}
.x78_c00035{left:384.773333pt;}
.x22_c00035{left:388.613333pt;}
.x4c_c00035{left:391.680000pt;}
.x42_c00035{left:393.213333pt;}
.x71_c00035{left:403.200000pt;}
.x4d_c00035{left:405.506667pt;}
.x23_c00035{left:408.573333pt;}
.x79_c00035{left:410.880000pt;}
.x61_c00035{left:413.186667pt;}
.x31_c00035{left:414.720000pt;}
.x24_c00035{left:420.866667pt;}
.x43_c00035{left:430.080000pt;}
.x72_c00035{left:432.386667pt;}
.x44_c00035{left:433.920000pt;}
.x32_c00035{left:435.453333pt;}
.x25_c00035{left:438.533333pt;}
.x57_c00035{left:440.826667pt;}
.x14_c00035{left:443.133333pt;}
.x33_c00035{left:450.053333pt;}
.x6a_c00035{left:456.186667pt;}
.x45_c00035{left:459.266667pt;}
.x6_c00035{left:461.573333pt;}
.x26_c00035{left:469.253333pt;}
.x15_c00035{left:480.773333pt;}
.x7_c00035{left:483.840000pt;}
.x27_c00035{left:486.906667pt;}
.x58_c00035{left:493.826667pt;}
.x16_c00035{left:497.666667pt;}
.x34_c00035{left:499.200000pt;}
.x8d_c00035{left:510.720000pt;}
.x73_c00035{left:514.560000pt;}
.x87_c00035{left:518.400000pt;}
.x28_c00035{left:521.466667pt;}
.xd_c00035{left:523.013333pt;}
.x59_c00035{left:529.920000pt;}
.x46_c00035{left:534.533333pt;}
.x82_c00035{left:537.600000pt;}
.x47_c00035{left:545.280000pt;}
.x35_c00035{left:546.813333pt;}
.x8b_c00035{left:555.266667pt;}
.x29_c00035{left:559.866667pt;}
.x48_c00035{left:563.706667pt;}
.x74_c00035{left:571.386667pt;}
.x4e_c00035{left:574.466667pt;}
.x8_c00035{left:576.773333pt;}
.x88_c00035{left:579.840000pt;}
.x5a_c00035{left:582.906667pt;}
.x84_c00035{left:584.453333pt;}
.x62_c00035{left:587.520000pt;}
.x49_c00035{left:595.200000pt;}
.x5b_c00035{left:600.573333pt;}
.x17_c00035{left:602.880000pt;}
.x18_c00035{left:608.253333pt;}
.x2a_c00035{left:609.786667pt;}
.x63_c00035{left:612.093333pt;}
.xe_c00035{left:619.773333pt;}
.x4f_c00035{left:622.853333pt;}
.x36_c00035{left:625.920000pt;}
.x85_c00035{left:632.826667pt;}
.x89_c00035{left:635.906667pt;}
.x64_c00035{left:639.746667pt;}
.x6b_c00035{left:643.586667pt;}
.x75_c00035{left:652.800000pt;}
.x8c_c00035{left:657.413333pt;}
.x19_c00035{left:658.946667pt;}
.x86_c00035{left:667.386667pt;}
.x3_c00035{left:672.000000pt;}
.x5c_c00035{left:673.533333pt;}
.x2b_c00035{left:681.213333pt;}
.x65_c00035{left:682.746667pt;}
.x50_c00035{left:687.360000pt;}
.x9_c00035{left:691.200000pt;}
.x37_c00035{left:692.733333pt;}
.x66_c00035{left:701.186667pt;}
.x92_c00035{left:706.560000pt;}
.x38_c00035{left:709.626667pt;}
.xf_c00035{left:711.173333pt;}
.x8a_c00035{left:714.240000pt;}
.xa_c00035{left:717.306667pt;}
.x4a_c00035{left:721.920000pt;}
.x91_c00035{left:727.293333pt;}
.x1a_c00035{left:730.373333pt;}
.xb_c00035{left:731.906667pt;}
.x5d_c00035{left:738.053333pt;}
.x76_c00035{left:740.346667pt;}
.x8e_c00035{left:741.893333pt;}
.xc_c00035{left:744.960000pt;}
.x77_c00035{left:751.106067pt;}
.x93_c00035{left:754.946667pt;}
.x83_c00035{left:756.480000pt;}
.x9e_c00035{left:771.840000pt;}
.x8f_c00035{left:777.213333pt;}
.x9f_c00035{left:781.053333pt;}
.x90_c00035{left:790.266667pt;}
.xa0_c00035{left:806.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_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;}
@font-face{font-family:ff1_c00036;src:url('chunks/assets/font_0549578294bd38d5f8f10ae9.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.109863;font-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_c00036{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);}
.v0_c00036{vertical-align:0.000000px;}
.ls0_c00036{letter-spacing:0.000000px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00036{word-spacing:0.000000px;}
.fc0_c00036{color:transparent;}
.fs0_c00036{font-size:600.000000px;}
.y0_c00036{bottom:0.000000px;}
.y1_c00036{bottom:15.000000px;}
.h2_c00036{height:539.941406px;}
.h0_c00036{height:1515.450000px;}
.h1_c00036{height:1515.750000px;}
.w0_c00036{width:1079.130000px;}
.w1_c00036{width:1079.250000px;}
.x0_c00036{left:0.000000px;}
.x1_c00036{left:15.000000px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ws0_c00036{word-spacing:0.000000pt;}
.fs0_c00036{font-size:533.333333pt;}
.y0_c00036{bottom:0.000000pt;}
.y1_c00036{bottom:13.333333pt;}
.h2_c00036{height:479.947917pt;}
.h0_c00036{height:1347.066667pt;}
.h1_c00036{height:1347.333333pt;}
.w0_c00036{width:959.226667pt;}
.w1_c00036{width:959.333333pt;}
.x0_c00036{left:0.000000pt;}
.x1_c00036{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a7bed5370c552d698f2d7088.woff2')format("woff");}.ff1_c00037{font-family:ff1_c00037;line-height:1.109863;font-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_c00037{transform:matrix(0.116650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116650,0.000000,0.000000,0.250000,0,0);}
.mc_c00037{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c00037{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.m5_c00037{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.mb_c00037{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);}
.m9_c00037{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);}
.ma_c00037{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c00037{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c00037{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m8_c00037{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3_c00037{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m6_c00037{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1_c00037{transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.057500,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;}
.fs8_c00037{font-size:6.000000px;}
.fs2_c00037{font-size:10.380000px;}
.fs3_c00037{font-size:13.800000px;}
.fs0_c00037{font-size:17.280000px;}
.fs1_c00037{font-size:20.760000px;}
.fs6_c00037{font-size:27.660000px;}
.fs5_c00037{font-size:38.040000px;}
.fs4_c00037{font-size:55.320000px;}
.fs7_c00037{font-size:69.120000px;}
.y0_c00037{bottom:0.000000px;}
.y9_c00037{bottom:721.440000px;}
.yb_c00037{bottom:730.080000px;}
.ya_c00037{bottom:733.530000px;}
.yc_c00037{bottom:737.850000px;}
.y8_c00037{bottom:952.995000px;}
.y7_c00037{bottom:1079.130000px;}
.y4_c00037{bottom:1095.555000px;}
.y5_c00037{bottom:1097.280000px;}
.y6_c00037{bottom:1101.600000px;}
.y2_c00037{bottom:1108.515000px;}
.y3_c00037{bottom:1109.370000px;}
.y1_c00037{bottom:1341.795000px;}
.ha_c00037{height:5.399414px;}
.h4_c00037{height:9.340986px;}
.h5_c00037{height:12.418652px;}
.h2_c00037{height:15.550313px;}
.h3_c00037{height:18.681973px;}
.h8_c00037{height:24.891299px;}
.h7_c00037{height:34.232285px;}
.h6_c00037{height:49.782598px;}
.h9_c00037{height:62.201250px;}
.h1_c00037{height:1507.500000px;}
.h0_c00037{height:1507.680000px;}
.w1_c00037{width:1059.000000px;}
.w0_c00037{width:1059.270000px;}
.x0_c00037{left:0.000000px;}
.x5_c00037{left:6.045000px;}
.x2_c00037{left:10.365000px;}
.x8_c00037{left:19.005000px;}
.x6_c00037{left:33.690000px;}
.x3_c00037{left:38.880000px;}
.x7_c00037{left:47.520000px;}
.x4_c00037{left:51.840000px;}
.x9_c00037{left:101.955000px;}
.xa_c00037{left:140.835000px;}
.xb_c00037{left:142.560000px;}
.xc_c00037{left:150.330000px;}
.x1_c00037{left:185.760000px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ws0_c00037{word-spacing:0.000000pt;}
.fs8_c00037{font-size:5.333333pt;}
.fs2_c00037{font-size:9.226667pt;}
.fs3_c00037{font-size:12.266667pt;}
.fs0_c00037{font-size:15.360000pt;}
.fs1_c00037{font-size:18.453333pt;}
.fs6_c00037{font-size:24.586667pt;}
.fs5_c00037{font-size:33.813333pt;}
.fs4_c00037{font-size:49.173333pt;}
.fs7_c00037{font-size:61.440000pt;}
.y0_c00037{bottom:0.000000pt;}
.y9_c00037{bottom:641.280000pt;}
.yb_c00037{bottom:648.960000pt;}
.ya_c00037{bottom:652.026667pt;}
.yc_c00037{bottom:655.866667pt;}
.y8_c00037{bottom:847.106667pt;}
.y7_c00037{bottom:959.226667pt;}
.y4_c00037{bottom:973.826667pt;}
.y5_c00037{bottom:975.360000pt;}
.y6_c00037{bottom:979.200000pt;}
.y2_c00037{bottom:985.346667pt;}
.y3_c00037{bottom:986.106667pt;}
.y1_c00037{bottom:1192.706667pt;}
.ha_c00037{height:4.799479pt;}
.h4_c00037{height:8.303099pt;}
.h5_c00037{height:11.038802pt;}
.h2_c00037{height:13.822500pt;}
.h3_c00037{height:16.606198pt;}
.h8_c00037{height:22.125599pt;}
.h7_c00037{height:30.428698pt;}
.h6_c00037{height:44.251198pt;}
.h9_c00037{height:55.290000pt;}
.h1_c00037{height:1340.000000pt;}
.h0_c00037{height:1340.160000pt;}
.w1_c00037{width:941.333333pt;}
.w0_c00037{width:941.573333pt;}
.x0_c00037{left:0.000000pt;}
.x5_c00037{left:5.373333pt;}
.x2_c00037{left:9.213333pt;}
.x8_c00037{left:16.893333pt;}
.x6_c00037{left:29.946667pt;}
.x3_c00037{left:34.560000pt;}
.x7_c00037{left:42.240000pt;}
.x4_c00037{left:46.080000pt;}
.x9_c00037{left:90.626667pt;}
.xa_c00037{left:125.186667pt;}
.xb_c00037{left:126.720000pt;}
.xc_c00037{left:133.626667pt;}
.x1_c00037{left:165.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_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_4a60a3c5b1e29c2a5a47dcd9.woff2')format("woff");}.ff1_c00038{font-family:ff1_c00038;line-height:1.109863;font-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_c00038{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);}
.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;}
.fs0_c00038{font-size:600.000000px;}
.y0_c00038{bottom:0.000000px;}
.y1_c00038{bottom:15.000000px;}
.h2_c00038{height:539.941406px;}
.h0_c00038{height:1515.450000px;}
.h1_c00038{height:1515.750000px;}
.w0_c00038{width:1079.130000px;}
.w1_c00038{width:1079.250000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:15.000000px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls0_c00038{letter-spacing:0.000000pt;}
.ws0_c00038{word-spacing:0.000000pt;}
.fs0_c00038{font-size:533.333333pt;}
.y0_c00038{bottom:0.000000pt;}
.y1_c00038{bottom:13.333333pt;}
.h2_c00038{height:479.947917pt;}
.h0_c00038{height:1347.066667pt;}
.h1_c00038{height:1347.333333pt;}
.w0_c00038{width:959.226667pt;}
.w1_c00038{width:959.333333pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00039;src:url('chunks/assets/font_6873621e65386af89f8ef072.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.109863;font-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_c00039{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me_c00039{transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);}
.m0_c00039{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.mb_c00039{transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);}
.m1_c00039{transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);}
.m5_c00039{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma_c00039{transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);}
.mf_c00039{transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);}
.m2_c00039{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m3_c00039{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m13_c00039{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m10_c00039{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.mc_c00039{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);}
.m7_c00039{transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);}
.m15_c00039{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m14_c00039{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);}
.m6_c00039{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);}
.m9_c00039{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m16_c00039{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00039{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c00039{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00039{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);}
.m12_c00039{transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);}
.v0_c00039{vertical-align:0.000000px;}
.ls0_c00039{letter-spacing:0.000000px;}
.sc__c00039{text-shadow:none;}
.sc0_c00039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00039{-webkit-text-stroke:0px transparent;}
.sc0_c00039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00039{word-spacing:0.000000px;}
.fc0_c00039{color:transparent;}
.fsc_c00039{font-size:6.900000px;}
.fs10_c00039{font-size:10.380000px;}
.fs4_c00039{font-size:17.280000px;}
.fsb_c00039{font-size:20.760000px;}
.fs7_c00039{font-size:24.180000px;}
.fs5_c00039{font-size:27.660000px;}
.fs6_c00039{font-size:31.080000px;}
.fs9_c00039{font-size:34.560000px;}
.fs8_c00039{font-size:38.040000px;}
.fs3_c00039{font-size:41.460000px;}
.fsf_c00039{font-size:44.940000px;}
.fsa_c00039{font-size:48.360000px;}
.fs1_c00039{font-size:51.840000px;}
.fse_c00039{font-size:58.740000px;}
.fs2_c00039{font-size:62.220000px;}
.fs0_c00039{font-size:69.120000px;}
.fs11_c00039{font-size:72.600000px;}
.fsd_c00039{font-size:86.400000px;}
.y0_c00039{bottom:0.000000px;}
.y19_c00039{bottom:885.600000px;}
.y18_c00039{bottom:891.645000px;}
.y16_c00039{bottom:922.755000px;}
.y17_c00039{bottom:935.715000px;}
.y14_c00039{bottom:936.570000px;}
.y15_c00039{bottom:941.760000px;}
.y12_c00039{bottom:984.090000px;}
.y10_c00039{bottom:992.730000px;}
.y11_c00039{bottom:996.195000px;}
.yf_c00039{bottom:1010.880000px;}
.y13_c00039{bottom:1015.200000px;}
.yd_c00039{bottom:1261.440000px;}
.ye_c00039{bottom:1265.760000px;}
.yb_c00039{bottom:1274.400000px;}
.yc_c00039{bottom:1276.125000px;}
.y8_c00039{bottom:1288.230000px;}
.ya_c00039{bottom:1291.680000px;}
.y9_c00039{bottom:1294.275000px;}
.y5_c00039{bottom:1296.000000px;}
.y7_c00039{bottom:1297.725000px;}
.y6_c00039{bottom:1302.045000px;}
.y4_c00039{bottom:1326.240000px;}
.y3_c00039{bottom:1327.965000px;}
.y1_c00039{bottom:1342.650000px;}
.y2_c00039{bottom:1344.390000px;}
.he_c00039{height:6.209326px;}
.h12_c00039{height:9.340986px;}
.h6_c00039{height:15.550313px;}
.hd_c00039{height:18.681973px;}
.h9_c00039{height:21.759639px;}
.h7_c00039{height:24.891299px;}
.h8_c00039{height:27.968965px;}
.hb_c00039{height:31.100625px;}
.ha_c00039{height:34.232285px;}
.h5_c00039{height:37.309951px;}
.h11_c00039{height:40.441611px;}
.hc_c00039{height:43.519277px;}
.h3_c00039{height:46.650937px;}
.h10_c00039{height:52.860264px;}
.h4_c00039{height:55.991924px;}
.h2_c00039{height:62.201250px;}
.h13_c00039{height:65.332910px;}
.hf_c00039{height:77.751563px;}
.h1_c00039{height:1507.500000px;}
.h0_c00039{height:1507.680000px;}
.w1_c00039{width:1059.000000px;}
.w0_c00039{width:1059.270000px;}
.x0_c00039{left:0.000000px;}
.xc_c00039{left:2.595000px;}
.x1_c00039{left:4.320000px;}
.x5_c00039{left:19.005000px;}
.x6_c00039{left:20.730000px;}
.x2_c00039{left:23.325000px;}
.x3_c00039{left:25.050000px;}
.x9_c00039{left:33.690000px;}
.x4_c00039{left:35.430000px;}
.xd_c00039{left:46.650000px;}
.xf_c00039{left:91.589700px;}
.xe_c00039{left:94.170300px;}
.x7_c00039{left:99.360000px;}
.x8_c00039{left:108.000000px;}
.xa_c00039{left:166.755000px;}
.xb_c00039{left:185.760000px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls0_c00039{letter-spacing:0.000000pt;}
.ws0_c00039{word-spacing:0.000000pt;}
.fsc_c00039{font-size:6.133333pt;}
.fs10_c00039{font-size:9.226667pt;}
.fs4_c00039{font-size:15.360000pt;}
.fsb_c00039{font-size:18.453333pt;}
.fs7_c00039{font-size:21.493333pt;}
.fs5_c00039{font-size:24.586667pt;}
.fs6_c00039{font-size:27.626667pt;}
.fs9_c00039{font-size:30.720000pt;}
.fs8_c00039{font-size:33.813333pt;}
.fs3_c00039{font-size:36.853333pt;}
.fsf_c00039{font-size:39.946667pt;}
.fsa_c00039{font-size:42.986667pt;}
.fs1_c00039{font-size:46.080000pt;}
.fse_c00039{font-size:52.213333pt;}
.fs2_c00039{font-size:55.306667pt;}
.fs0_c00039{font-size:61.440000pt;}
.fs11_c00039{font-size:64.533333pt;}
.fsd_c00039{font-size:76.800000pt;}
.y0_c00039{bottom:0.000000pt;}
.y19_c00039{bottom:787.200000pt;}
.y18_c00039{bottom:792.573333pt;}
.y16_c00039{bottom:820.226667pt;}
.y17_c00039{bottom:831.746667pt;}
.y14_c00039{bottom:832.506667pt;}
.y15_c00039{bottom:837.120000pt;}
.y12_c00039{bottom:874.746667pt;}
.y10_c00039{bottom:882.426667pt;}
.y11_c00039{bottom:885.506667pt;}
.yf_c00039{bottom:898.560000pt;}
.y13_c00039{bottom:902.400000pt;}
.yd_c00039{bottom:1121.280000pt;}
.ye_c00039{bottom:1125.120000pt;}
.yb_c00039{bottom:1132.800000pt;}
.yc_c00039{bottom:1134.333333pt;}
.y8_c00039{bottom:1145.093333pt;}
.ya_c00039{bottom:1148.160000pt;}
.y9_c00039{bottom:1150.466667pt;}
.y5_c00039{bottom:1152.000000pt;}
.y7_c00039{bottom:1153.533333pt;}
.y6_c00039{bottom:1157.373333pt;}
.y4_c00039{bottom:1178.880000pt;}
.y3_c00039{bottom:1180.413333pt;}
.y1_c00039{bottom:1193.466667pt;}
.y2_c00039{bottom:1195.013333pt;}
.he_c00039{height:5.519401pt;}
.h12_c00039{height:8.303099pt;}
.h6_c00039{height:13.822500pt;}
.hd_c00039{height:16.606198pt;}
.h9_c00039{height:19.341901pt;}
.h7_c00039{height:22.125599pt;}
.h8_c00039{height:24.861302pt;}
.hb_c00039{height:27.645000pt;}
.ha_c00039{height:30.428698pt;}
.h5_c00039{height:33.164401pt;}
.h11_c00039{height:35.948099pt;}
.hc_c00039{height:38.683802pt;}
.h3_c00039{height:41.467500pt;}
.h10_c00039{height:46.986901pt;}
.h4_c00039{height:49.770599pt;}
.h2_c00039{height:55.290000pt;}
.h13_c00039{height:58.073698pt;}
.hf_c00039{height:69.112500pt;}
.h1_c00039{height:1340.000000pt;}
.h0_c00039{height:1340.160000pt;}
.w1_c00039{width:941.333333pt;}
.w0_c00039{width:941.573333pt;}
.x0_c00039{left:0.000000pt;}
.xc_c00039{left:2.306667pt;}
.x1_c00039{left:3.840000pt;}
.x5_c00039{left:16.893333pt;}
.x6_c00039{left:18.426667pt;}
.x2_c00039{left:20.733333pt;}
.x3_c00039{left:22.266667pt;}
.x9_c00039{left:29.946667pt;}
.x4_c00039{left:31.493333pt;}
.xd_c00039{left:41.466667pt;}
.xf_c00039{left:81.413067pt;}
.xe_c00039{left:83.706933pt;}
.x7_c00039{left:88.320000pt;}
.x8_c00039{left:96.000000pt;}
.xa_c00039{left:148.226667pt;}
.xb_c00039{left:165.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_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_ef39e86e5e5fabc78542ad28.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.109863;font-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_c00040{transform:matrix(0.172225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172225,0.000000,0.000000,0.250000,0,0);}
.m5_c00040{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.m3_c00040{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m2_c00040{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00040{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1_c00040{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4_c00040{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m7_c00040{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m8_c00040{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m9_c00040{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.ma_c00040{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);}
.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;}
.fs2_c00040{font-size:6.900000px;}
.fs1_c00040{font-size:13.800000px;}
.fs0_c00040{font-size:17.280000px;}
.fs7_c00040{font-size:20.760000px;}
.fs6_c00040{font-size:24.180000px;}
.fs5_c00040{font-size:51.840000px;}
.fs3_c00040{font-size:55.320000px;}
.fs4_c00040{font-size:58.740000px;}
.y0_c00040{bottom:0.000000px;}
.yb_c00040{bottom:229.830000px;}
.ya_c00040{bottom:286.845000px;}
.y9_c00040{bottom:337.830000px;}
.y6_c00040{bottom:349.050000px;}
.y7_c00040{bottom:349.920000px;}
.y8_c00040{bottom:355.965000px;}
.y5_c00040{bottom:362.880000px;}
.y4_c00040{bottom:363.750000px;}
.y3_c00040{bottom:971.130000px;}
.y1_c00040{bottom:984.960000px;}
.y2_c00040{bottom:987.555000px;}
.h4_c00040{height:6.209326px;}
.h3_c00040{height:12.418652px;}
.h2_c00040{height:15.550313px;}
.h9_c00040{height:18.681973px;}
.h8_c00040{height:21.759639px;}
.h7_c00040{height:46.650937px;}
.h5_c00040{height:49.782598px;}
.h6_c00040{height:52.860264px;}
.h0_c00040{height:1515.450000px;}
.h1_c00040{height:1515.750000px;}
.w0_c00040{width:1079.130000px;}
.w1_c00040{width:1079.250000px;}
.x0_c00040{left:0.000000px;}
.xb_c00040{left:994.470000px;}
.x8_c00040{left:1024.710000px;}
.x6_c00040{left:1029.885000px;}
.x5_c00040{left:1035.075000px;}
.x1_c00040{left:1039.395000px;}
.x9_c00040{left:1042.845000px;}
.x2_c00040{left:1050.630000px;}
.x7_c00040{left:1059.270000px;}
.x3_c00040{left:1061.850000px;}
.x4_c00040{left:1072.230000px;}
.xa_c00040{left:1074.810000px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ws0_c00040{word-spacing:0.000000pt;}
.fs2_c00040{font-size:6.133333pt;}
.fs1_c00040{font-size:12.266667pt;}
.fs0_c00040{font-size:15.360000pt;}
.fs7_c00040{font-size:18.453333pt;}
.fs6_c00040{font-size:21.493333pt;}
.fs5_c00040{font-size:46.080000pt;}
.fs3_c00040{font-size:49.173333pt;}
.fs4_c00040{font-size:52.213333pt;}
.y0_c00040{bottom:0.000000pt;}
.yb_c00040{bottom:204.293333pt;}
.ya_c00040{bottom:254.973333pt;}
.y9_c00040{bottom:300.293333pt;}
.y6_c00040{bottom:310.266667pt;}
.y7_c00040{bottom:311.040000pt;}
.y8_c00040{bottom:316.413333pt;}
.y5_c00040{bottom:322.560000pt;}
.y4_c00040{bottom:323.333333pt;}
.y3_c00040{bottom:863.226667pt;}
.y1_c00040{bottom:875.520000pt;}
.y2_c00040{bottom:877.826667pt;}
.h4_c00040{height:5.519401pt;}
.h3_c00040{height:11.038802pt;}
.h2_c00040{height:13.822500pt;}
.h9_c00040{height:16.606198pt;}
.h8_c00040{height:19.341901pt;}
.h7_c00040{height:41.467500pt;}
.h5_c00040{height:44.251198pt;}
.h6_c00040{height:46.986901pt;}
.h0_c00040{height:1347.066667pt;}
.h1_c00040{height:1347.333333pt;}
.w0_c00040{width:959.226667pt;}
.w1_c00040{width:959.333333pt;}
.x0_c00040{left:0.000000pt;}
.xb_c00040{left:883.973333pt;}
.x8_c00040{left:910.853333pt;}
.x6_c00040{left:915.453333pt;}
.x5_c00040{left:920.066667pt;}
.x1_c00040{left:923.906667pt;}
.x9_c00040{left:926.973333pt;}
.x2_c00040{left:933.893333pt;}
.x7_c00040{left:941.573333pt;}
.x3_c00040{left:943.866667pt;}
.x4_c00040{left:953.093333pt;}
.xa_c00040{left:955.386667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00041;src:url('chunks/assets/font_024bd867f9d5b42d3c115937.woff2')format("woff");}.ff1_c00041{font-family:ff1_c00041;line-height:1.109863;font-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_c00041{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);}
.v0_c00041{vertical-align:0.000000px;}
.ls0_c00041{letter-spacing:0.000000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:0.000000px;}
.fc0_c00041{color:transparent;}
.fs0_c00041{font-size:600.000000px;}
.y0_c00041{bottom:0.000000px;}
.y1_c00041{bottom:15.000000px;}
.h2_c00041{height:539.941406px;}
.h1_c00041{height:1507.500000px;}
.h0_c00041{height:1507.680000px;}
.w1_c00041{width:1059.000000px;}
.w0_c00041{width:1059.270000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:15.000000px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ws0_c00041{word-spacing:0.000000pt;}
.fs0_c00041{font-size:533.333333pt;}
.y0_c00041{bottom:0.000000pt;}
.y1_c00041{bottom:13.333333pt;}
.h2_c00041{height:479.947917pt;}
.h1_c00041{height:1340.000000pt;}
.h0_c00041{height:1340.160000pt;}
.w1_c00041{width:941.333333pt;}
.w0_c00041{width:941.573333pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aba49e05fee3ca618c984200.woff2')format("woff");}.ff1_c00042{font-family:ff1_c00042;line-height:1.109863;font-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_c00042{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);}
.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;}
.fs0_c00042{font-size:600.000000px;}
.y0_c00042{bottom:0.000000px;}
.y1_c00042{bottom:15.000000px;}
.h2_c00042{height:539.941406px;}
.h0_c00042{height:1515.450000px;}
.h1_c00042{height:1515.750000px;}
.w0_c00042{width:1079.130000px;}
.w1_c00042{width:1079.250000px;}
.x0_c00042{left:0.000000px;}
.x1_c00042{left:15.000000px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls0_c00042{letter-spacing:0.000000pt;}
.ws0_c00042{word-spacing:0.000000pt;}
.fs0_c00042{font-size:533.333333pt;}
.y0_c00042{bottom:0.000000pt;}
.y1_c00042{bottom:13.333333pt;}
.h2_c00042{height:479.947917pt;}
.h0_c00042{height:1347.066667pt;}
.h1_c00042{height:1347.333333pt;}
.w0_c00042{width:959.226667pt;}
.w1_c00042{width:959.333333pt;}
.x0_c00042{left:0.000000pt;}
.x1_c00042{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00043;src:url('chunks/assets/font_9ded85661d38ba42036ff0f8.woff2')format("woff");}.ff1_c00043{font-family:ff1_c00043;line-height:1.109863;font-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_c00043{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mf_c00043{transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);}
.m10_c00043{transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);}
.md_c00043{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m16_c00043{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);}
.m1a_c00043{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m12_c00043{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);}
.ma_c00043{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.m18_c00043{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);}
.m13_c00043{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);}
.m14_c00043{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);}
.m5_c00043{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);}
.m19_c00043{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);}
.mb_c00043{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);}
.me_c00043{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);}
.mc_c00043{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00043{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00043{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);}
.m1_c00043{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2_c00043{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m17_c00043{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3_c00043{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4_c00043{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m8_c00043{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m9_c00043{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m6_c00043{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m15_c00043{transform:matrix(1.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.535000,0.000000,0.000000,0.250000,0,0);}
.v0_c00043{vertical-align:0.000000px;}
.ls0_c00043{letter-spacing:0.000000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00043{word-spacing:0.000000px;}
.fc0_c00043{color:transparent;}
.fs9_c00043{font-size:3.456000px;}
.fs0_c00043{font-size:6.000000px;}
.fsc_c00043{font-size:6.900000px;}
.fs2_c00043{font-size:10.380000px;}
.fs3_c00043{font-size:17.280000px;}
.fsb_c00043{font-size:20.760000px;}
.fs1_c00043{font-size:24.180000px;}
.fs8_c00043{font-size:34.560000px;}
.fs7_c00043{font-size:41.460000px;}
.fs6_c00043{font-size:44.940000px;}
.fsa_c00043{font-size:48.360000px;}
.fs5_c00043{font-size:51.840000px;}
.fs4_c00043{font-size:55.320000px;}
.y0_c00043{bottom:0.000000px;}
.y1d_c00043{bottom:345.600000px;}
.y1e_c00043{bottom:347.325000px;}
.y1a_c00043{bottom:365.475000px;}
.y1c_c00043{bottom:366.330000px;}
.y1b_c00043{bottom:370.650000px;}
.y17_c00043{bottom:378.435000px;}
.y18_c00043{bottom:379.290000px;}
.y19_c00043{bottom:381.885000px;}
.y15_c00043{bottom:407.805000px;}
.y16_c00043{bottom:408.675000px;}
.y14_c00043{bottom:421.635000px;}
.y13_c00043{bottom:425.085000px;}
.y12_c00043{bottom:428.550000px;}
.y10_c00043{bottom:569.370000px;}
.y11_c00043{bottom:571.110000px;}
.yf_c00043{bottom:619.485000px;}
.yb_c00043{bottom:627.270000px;}
.yc_c00043{bottom:629.850000px;}
.ye_c00043{bottom:632.445000px;}
.yd_c00043{bottom:636.765000px;}
.ya_c00043{bottom:924.480000px;}
.y9_c00043{bottom:941.760000px;}
.y7_c00043{bottom:1200.960000px;}
.y8_c00043{bottom:1201.830000px;}
.y6_c00043{bottom:1210.470000px;}
.y5_c00043{bottom:1219.110000px;}
.y4_c00043{bottom:1339.200000px;}
.y3_c00043{bottom:1373.760000px;}
.y2_c00043{bottom:1379.805000px;}
.y1_c00043{bottom:1392.765000px;}
.hb_c00043{height:3.110063px;}
.h2_c00043{height:5.399414px;}
.he_c00043{height:6.209326px;}
.h4_c00043{height:9.340986px;}
.h5_c00043{height:15.550313px;}
.hd_c00043{height:18.681973px;}
.h3_c00043{height:21.759639px;}
.ha_c00043{height:31.100625px;}
.h9_c00043{height:37.309951px;}
.h8_c00043{height:40.441611px;}
.hc_c00043{height:43.519277px;}
.h7_c00043{height:46.650937px;}
.h6_c00043{height:49.782598px;}
.h1_c00043{height:1507.500000px;}
.h0_c00043{height:1507.680000px;}
.w1_c00043{width:1059.000000px;}
.w0_c00043{width:1059.270000px;}
.x0_c00043{left:0.000000px;}
.x11_c00043{left:1.725000px;}
.x13_c00043{left:5.190000px;}
.x15_c00043{left:12.960000px;}
.x17_c00043{left:14.685000px;}
.xc_c00043{left:17.280000px;}
.x1_c00043{left:22.470000px;}
.x16_c00043{left:27.645000px;}
.x2_c00043{left:31.110000px;}
.x12_c00043{left:35.430000px;}
.xd_c00043{left:49.245000px;}
.x14_c00043{left:55.290000px;}
.xf_c00043{left:68.250000px;}
.xe_c00043{left:69.990000px;}
.x10_c00043{left:82.080000px;}
.xb_c00043{left:119.235000px;}
.xa_c00043{left:123.555000px;}
.x5_c00043{left:147.750000px;}
.x3_c00043{left:940.035000px;}
.x4_c00043{left:952.125000px;}
.x6_c00043{left:958.170000px;}
.x8_c00043{left:960.765000px;}
.x9_c00043{left:971.130000px;}
.x7_c00043{left:985.830000px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls0_c00043{letter-spacing:0.000000pt;}
.ws0_c00043{word-spacing:0.000000pt;}
.fs9_c00043{font-size:3.072000pt;}
.fs0_c00043{font-size:5.333333pt;}
.fsc_c00043{font-size:6.133333pt;}
.fs2_c00043{font-size:9.226667pt;}
.fs3_c00043{font-size:15.360000pt;}
.fsb_c00043{font-size:18.453333pt;}
.fs1_c00043{font-size:21.493333pt;}
.fs8_c00043{font-size:30.720000pt;}
.fs7_c00043{font-size:36.853333pt;}
.fs6_c00043{font-size:39.946667pt;}
.fsa_c00043{font-size:42.986667pt;}
.fs5_c00043{font-size:46.080000pt;}
.fs4_c00043{font-size:49.173333pt;}
.y0_c00043{bottom:0.000000pt;}
.y1d_c00043{bottom:307.200000pt;}
.y1e_c00043{bottom:308.733333pt;}
.y1a_c00043{bottom:324.866667pt;}
.y1c_c00043{bottom:325.626667pt;}
.y1b_c00043{bottom:329.466667pt;}
.y17_c00043{bottom:336.386667pt;}
.y18_c00043{bottom:337.146667pt;}
.y19_c00043{bottom:339.453333pt;}
.y15_c00043{bottom:362.493333pt;}
.y16_c00043{bottom:363.266667pt;}
.y14_c00043{bottom:374.786667pt;}
.y13_c00043{bottom:377.853333pt;}
.y12_c00043{bottom:380.933333pt;}
.y10_c00043{bottom:506.106667pt;}
.y11_c00043{bottom:507.653333pt;}
.yf_c00043{bottom:550.653333pt;}
.yb_c00043{bottom:557.573333pt;}
.yc_c00043{bottom:559.866667pt;}
.ye_c00043{bottom:562.173333pt;}
.yd_c00043{bottom:566.013333pt;}
.ya_c00043{bottom:821.760000pt;}
.y9_c00043{bottom:837.120000pt;}
.y7_c00043{bottom:1067.520000pt;}
.y8_c00043{bottom:1068.293333pt;}
.y6_c00043{bottom:1075.973333pt;}
.y5_c00043{bottom:1083.653333pt;}
.y4_c00043{bottom:1190.400000pt;}
.y3_c00043{bottom:1221.120000pt;}
.y2_c00043{bottom:1226.493333pt;}
.y1_c00043{bottom:1238.013333pt;}
.hb_c00043{height:2.764500pt;}
.h2_c00043{height:4.799479pt;}
.he_c00043{height:5.519401pt;}
.h4_c00043{height:8.303099pt;}
.h5_c00043{height:13.822500pt;}
.hd_c00043{height:16.606198pt;}
.h3_c00043{height:19.341901pt;}
.ha_c00043{height:27.645000pt;}
.h9_c00043{height:33.164401pt;}
.h8_c00043{height:35.948099pt;}
.hc_c00043{height:38.683802pt;}
.h7_c00043{height:41.467500pt;}
.h6_c00043{height:44.251198pt;}
.h1_c00043{height:1340.000000pt;}
.h0_c00043{height:1340.160000pt;}
.w1_c00043{width:941.333333pt;}
.w0_c00043{width:941.573333pt;}
.x0_c00043{left:0.000000pt;}
.x11_c00043{left:1.533333pt;}
.x13_c00043{left:4.613333pt;}
.x15_c00043{left:11.520000pt;}
.x17_c00043{left:13.053333pt;}
.xc_c00043{left:15.360000pt;}
.x1_c00043{left:19.973333pt;}
.x16_c00043{left:24.573333pt;}
.x2_c00043{left:27.653333pt;}
.x12_c00043{left:31.493333pt;}
.xd_c00043{left:43.773333pt;}
.x14_c00043{left:49.146667pt;}
.xf_c00043{left:60.666667pt;}
.xe_c00043{left:62.213333pt;}
.x10_c00043{left:72.960000pt;}
.xb_c00043{left:105.986667pt;}
.xa_c00043{left:109.826667pt;}
.x5_c00043{left:131.333333pt;}
.x3_c00043{left:835.586667pt;}
.x4_c00043{left:846.333333pt;}
.x6_c00043{left:851.706667pt;}
.x8_c00043{left:854.013333pt;}
.x9_c00043{left:863.226667pt;}
.x7_c00043{left:876.293333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_028145499427b40129b035a7.woff2')format("woff");}.ff1_c00044{font-family:ff1_c00044;line-height:1.109863;font-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_c00044{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c00044{transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);}
.m8_c00044{transform:matrix(0.127225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127225,0.000000,0.000000,0.250000,0,0);}
.m6_c00044{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m3_c00044{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_c00044{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00044{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00044{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);}
.m1_c00044{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00044{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c00044{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.ma_c00044{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,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;}
.fs8_c00044{font-size:3.456000px;}
.fs9_c00044{font-size:17.280000px;}
.fsa_c00044{font-size:24.180000px;}
.fs0_c00044{font-size:31.080000px;}
.fs6_c00044{font-size:41.460000px;}
.fs5_c00044{font-size:55.320000px;}
.fs1_c00044{font-size:62.220000px;}
.fs7_c00044{font-size:69.120000px;}
.fs4_c00044{font-size:82.920000px;}
.fs2_c00044{font-size:86.400000px;}
.fs3_c00044{font-size:96.780000px;}
.y0_c00044{bottom:0.000000px;}
.yb_c00044{bottom:366.330000px;}
.ya_c00044{bottom:371.520000px;}
.y9_c00044{bottom:904.605000px;}
.y8_c00044{bottom:1023.840000px;}
.y6_c00044{bottom:1069.635000px;}
.y7_c00044{bottom:1085.190000px;}
.y5_c00044{bottom:1089.510000px;}
.y4_c00044{bottom:1091.235000px;}
.y3_c00044{bottom:1407.450000px;}
.y2_c00044{bottom:1408.320000px;}
.y1_c00044{bottom:1436.835000px;}
.ha_c00044{height:3.110063px;}
.hb_c00044{height:15.550313px;}
.hc_c00044{height:21.759639px;}
.h2_c00044{height:27.968965px;}
.h8_c00044{height:37.309951px;}
.h7_c00044{height:49.782598px;}
.h3_c00044{height:55.991924px;}
.h9_c00044{height:62.201250px;}
.h6_c00044{height:74.619902px;}
.h4_c00044{height:77.751563px;}
.h5_c00044{height:87.092549px;}
.h0_c00044{height:1515.450000px;}
.h1_c00044{height:1515.750000px;}
.w0_c00044{width:1079.130000px;}
.w1_c00044{width:1079.250000px;}
.x0_c00044{left:0.000000px;}
.x2_c00044{left:302.400000px;}
.x3_c00044{left:336.090000px;}
.x1_c00044{left:353.370000px;}
.x4_c00044{left:464.835000px;}
.x5_c00044{left:669.600000px;}
.x6_c00044{left:768.960000px;}
.xb_c00044{left:986.685000px;}
.xd_c00044{left:1004.835000px;}
.xc_c00044{left:1007.430000px;}
.x7_c00044{left:1028.160000px;}
.x8_c00044{left:1041.990000px;}
.xa_c00044{left:1048.890000px;}
.x9_c00044{left:1067.040000px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls0_c00044{letter-spacing:0.000000pt;}
.ws0_c00044{word-spacing:0.000000pt;}
.fs8_c00044{font-size:3.072000pt;}
.fs9_c00044{font-size:15.360000pt;}
.fsa_c00044{font-size:21.493333pt;}
.fs0_c00044{font-size:27.626667pt;}
.fs6_c00044{font-size:36.853333pt;}
.fs5_c00044{font-size:49.173333pt;}
.fs1_c00044{font-size:55.306667pt;}
.fs7_c00044{font-size:61.440000pt;}
.fs4_c00044{font-size:73.706667pt;}
.fs2_c00044{font-size:76.800000pt;}
.fs3_c00044{font-size:86.026667pt;}
.y0_c00044{bottom:0.000000pt;}
.yb_c00044{bottom:325.626667pt;}
.ya_c00044{bottom:330.240000pt;}
.y9_c00044{bottom:804.093333pt;}
.y8_c00044{bottom:910.080000pt;}
.y6_c00044{bottom:950.786667pt;}
.y7_c00044{bottom:964.613333pt;}
.y5_c00044{bottom:968.453333pt;}
.y4_c00044{bottom:969.986667pt;}
.y3_c00044{bottom:1251.066667pt;}
.y2_c00044{bottom:1251.840000pt;}
.y1_c00044{bottom:1277.186667pt;}
.ha_c00044{height:2.764500pt;}
.hb_c00044{height:13.822500pt;}
.hc_c00044{height:19.341901pt;}
.h2_c00044{height:24.861302pt;}
.h8_c00044{height:33.164401pt;}
.h7_c00044{height:44.251198pt;}
.h3_c00044{height:49.770599pt;}
.h9_c00044{height:55.290000pt;}
.h6_c00044{height:66.328802pt;}
.h4_c00044{height:69.112500pt;}
.h5_c00044{height:77.415599pt;}
.h0_c00044{height:1347.066667pt;}
.h1_c00044{height:1347.333333pt;}
.w0_c00044{width:959.226667pt;}
.w1_c00044{width:959.333333pt;}
.x0_c00044{left:0.000000pt;}
.x2_c00044{left:268.800000pt;}
.x3_c00044{left:298.746667pt;}
.x1_c00044{left:314.106667pt;}
.x4_c00044{left:413.186667pt;}
.x5_c00044{left:595.200000pt;}
.x6_c00044{left:683.520000pt;}
.xb_c00044{left:877.053333pt;}
.xd_c00044{left:893.186667pt;}
.xc_c00044{left:895.493333pt;}
.x7_c00044{left:913.920000pt;}
.x8_c00044{left:926.213333pt;}
.xa_c00044{left:932.346667pt;}
.x9_c00044{left:948.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_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;}
@font-face{font-family:ff1_c00045;src:url('chunks/assets/font_f7582b99ca94b2914647f149.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.109863;font-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_c00045{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00045{transform:matrix(0.109950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109950,0.000000,0.000000,0.250000,0,0);}
.m4e_c00045{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m1a_c00045{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);}
.m0_c00045{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m2f_c00045{transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);}
.m26_c00045{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m2_c00045{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m30_c00045{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);}
.m10_c00045{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);}
.m25_c00045{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m28_c00045{transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);}
.m38_c00045{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m44_c00045{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m4f_c00045{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);}
.m1c_c00045{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m36_c00045{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m43_c00045{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);}
.m45_c00045{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m3a_c00045{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m29_c00045{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.m3b_c00045{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.m41_c00045{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);}
.m37_c00045{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.m34_c00045{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.m40_c00045{transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);}
.m50_c00045{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m33_c00045{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.m27_c00045{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);}
.mf_c00045{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m24_c00045{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);}
.m1b_c00045{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);}
.m3d_c00045{transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);}
.m12_c00045{transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);}
.m42_c00045{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);}
.m2e_c00045{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);}
.m11_c00045{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);}
.m23_c00045{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c00045{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c00045{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c00045{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m20_c00045{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);}
.m2b_c00045{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);}
.mb_c00045{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m22_c00045{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00045{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c00045{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c00045{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c00045{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m16_c00045{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00045{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c00045{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m31_c00045{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);}
.m46_c00045{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);}
.m39_c00045{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);}
.m3c_c00045{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1_c00045{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m5_c00045{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);}
.m1f_c00045{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m13_c00045{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00045{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);}
.m49_c00045{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m17_c00045{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m4_c00045{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mc_c00045{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m48_c00045{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00045{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00045{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);}
.m47_c00045{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m8_c00045{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00045{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.md_c00045{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);}
.m3f_c00045{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m35_c00045{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma_c00045{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.m19_c00045{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00045{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);}
.m4d_c00045{transform:matrix(1.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.665000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00045{transform:matrix(1.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.667500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00045{transform:matrix(1.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.880000,0.000000,0.000000,0.250000,0,0);}
.m32_c00045{transform:matrix(3.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.655000,0.000000,0.000000,0.250000,0,0);}
.v0_c00045{vertical-align:0.000000px;}
.ls0_c00045{letter-spacing:0.000000px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00045{word-spacing:0.000000px;}
.fc0_c00045{color:transparent;}
.fs17_c00045{font-size:3.456000px;}
.fs2_c00045{font-size:6.000000px;}
.fs6_c00045{font-size:6.900000px;}
.fs21_c00045{font-size:10.380000px;}
.fs1f_c00045{font-size:13.800000px;}
.fs1_c00045{font-size:17.280000px;}
.fs1e_c00045{font-size:20.760000px;}
.fs0_c00045{font-size:24.180000px;}
.fs1c_c00045{font-size:31.080000px;}
.fs15_c00045{font-size:34.560000px;}
.fsb_c00045{font-size:38.040000px;}
.fsf_c00045{font-size:41.460000px;}
.fse_c00045{font-size:44.940000px;}
.fsd_c00045{font-size:48.360000px;}
.fs8_c00045{font-size:51.840000px;}
.fs7_c00045{font-size:55.320000px;}
.fsa_c00045{font-size:58.740000px;}
.fs9_c00045{font-size:62.220000px;}
.fs3_c00045{font-size:65.640000px;}
.fs5_c00045{font-size:69.120000px;}
.fs10_c00045{font-size:72.600000px;}
.fs4_c00045{font-size:76.020000px;}
.fs19_c00045{font-size:79.500000px;}
.fs18_c00045{font-size:82.920000px;}
.fs12_c00045{font-size:86.400000px;}
.fs20_c00045{font-size:89.880000px;}
.fsc_c00045{font-size:93.300000px;}
.fs16_c00045{font-size:96.780000px;}
.fs14_c00045{font-size:107.160000px;}
.fs11_c00045{font-size:110.580000px;}
.fs1a_c00045{font-size:114.060000px;}
.fs1d_c00045{font-size:117.480000px;}
.fs13_c00045{font-size:120.960000px;}
.fs1b_c00045{font-size:134.760000px;}
.fs22_c00045{font-size:145.140000px;}
.y0_c00045{bottom:0.000000px;}
.y4c_c00045{bottom:228.090000px;}
.y4b_c00045{bottom:230.685000px;}
.y48_c00045{bottom:235.875000px;}
.y49_c00045{bottom:240.195000px;}
.y4a_c00045{bottom:242.790000px;}
.y46_c00045{bottom:249.690000px;}
.y47_c00045{bottom:250.560000px;}
.y44_c00045{bottom:263.520000px;}
.y45_c00045{bottom:265.245000px;}
.y41_c00045{bottom:298.950000px;}
.y42_c00045{bottom:303.270000px;}
.y43_c00045{bottom:315.360000px;}
.y40_c00045{bottom:319.680000px;}
.y3f_c00045{bottom:320.550000px;}
.y3e_c00045{bottom:342.150000px;}
.y3c_c00045{bottom:607.395000px;}
.y3d_c00045{bottom:608.250000px;}
.y3a_c00045{bottom:715.395000px;}
.y3b_c00045{bottom:718.845000px;}
.y25_c00045{bottom:775.875000px;}
.y24_c00045{bottom:778.470000px;}
.y26_c00045{bottom:781.050000px;}
.y38_c00045{bottom:781.920000px;}
.y27_c00045{bottom:782.790000px;}
.y22_c00045{bottom:795.750000px;}
.y21_c00045{bottom:801.795000px;}
.y39_c00045{bottom:802.650000px;}
.y20_c00045{bottom:803.520000px;}
.y35_c00045{bottom:804.390000px;}
.y23_c00045{bottom:805.245000px;}
.y34_c00045{bottom:806.970000px;}
.y1f_c00045{bottom:807.840000px;}
.y1d_c00045{bottom:809.565000px;}
.y37_c00045{bottom:811.290000px;}
.y36_c00045{bottom:812.160000px;}
.y1e_c00045{bottom:813.030000px;}
.y1b_c00045{bottom:826.845000px;}
.y1a_c00045{bottom:827.715000px;}
.y1c_c00045{bottom:832.890000px;}
.y33_c00045{bottom:836.355000px;}
.y32_c00045{bottom:837.210000px;}
.y14_c00045{bottom:838.950000px;}
.y17_c00045{bottom:839.805000px;}
.y15_c00045{bottom:841.530000px;}
.y16_c00045{bottom:843.270000px;}
.y18_c00045{bottom:844.125000px;}
.y19_c00045{bottom:845.850000px;}
.y2f_c00045{bottom:861.405000px;}
.y30_c00045{bottom:862.275000px;}
.y31_c00045{bottom:864.870000px;}
.ye_c00045{bottom:866.595000px;}
.y2e_c00045{bottom:869.190000px;}
.y13_c00045{bottom:870.915000px;}
.yf_c00045{bottom:872.640000px;}
.y11_c00045{bottom:875.235000px;}
.y2d_c00045{bottom:876.090000px;}
.yc_c00045{bottom:876.960000px;}
.y10_c00045{bottom:877.830000px;}
.y12_c00045{bottom:878.685000px;}
.y2c_c00045{bottom:879.555000px;}
.yd_c00045{bottom:891.645000px;}
.y28_c00045{bottom:900.285000px;}
.y29_c00045{bottom:901.155000px;}
.y1_c00045{bottom:902.010000px;}
.y2a_c00045{bottom:903.750000px;}
.ya_c00045{bottom:909.795000px;}
.y8_c00045{bottom:910.650000px;}
.y7_c00045{bottom:911.520000px;}
.y9_c00045{bottom:912.390000px;}
.yb_c00045{bottom:913.245000px;}
.y6_c00045{bottom:916.710000px;}
.y2b_c00045{bottom:933.120000px;}
.y4_c00045{bottom:940.890000px;}
.y5_c00045{bottom:941.760000px;}
.y2_c00045{bottom:961.635000px;}
.y3_c00045{bottom:964.230000px;}
.h19_c00045{height:3.110063px;}
.h4_c00045{height:5.399414px;}
.h8_c00045{height:6.209326px;}
.h23_c00045{height:9.340986px;}
.h21_c00045{height:12.418652px;}
.h3_c00045{height:15.550313px;}
.h20_c00045{height:18.681973px;}
.h2_c00045{height:21.759639px;}
.h1e_c00045{height:27.968965px;}
.h17_c00045{height:31.100625px;}
.hd_c00045{height:34.232285px;}
.h11_c00045{height:37.309951px;}
.h10_c00045{height:40.441611px;}
.hf_c00045{height:43.519277px;}
.ha_c00045{height:46.650937px;}
.h9_c00045{height:49.782598px;}
.hc_c00045{height:52.860264px;}
.hb_c00045{height:55.991924px;}
.h5_c00045{height:59.069590px;}
.h7_c00045{height:62.201250px;}
.h12_c00045{height:65.332910px;}
.h6_c00045{height:68.410576px;}
.h1b_c00045{height:71.542236px;}
.h1a_c00045{height:74.619902px;}
.h14_c00045{height:77.751563px;}
.h22_c00045{height:80.883223px;}
.he_c00045{height:83.960889px;}
.h18_c00045{height:87.092549px;}
.h16_c00045{height:96.433535px;}
.h13_c00045{height:99.511201px;}
.h1c_c00045{height:102.642861px;}
.h1f_c00045{height:105.720527px;}
.h15_c00045{height:108.852188px;}
.h1d_c00045{height:121.270840px;}
.h24_c00045{height:130.611826px;}
.h1_c00045{height:1507.500000px;}
.h0_c00045{height:1507.680000px;}
.w1_c00045{width:1059.000000px;}
.w0_c00045{width:1059.270000px;}
.x0_c00045{left:0.000000px;}
.x4b_c00045{left:1.725000px;}
.x48_c00045{left:4.320000px;}
.x50_c00045{left:6.045000px;}
.x49_c00045{left:8.640000px;}
.x51_c00045{left:14.685000px;}
.x4f_c00045{left:19.005000px;}
.x4c_c00045{left:27.645000px;}
.x52_c00045{left:29.370000px;}
.x4d_c00045{left:39.750000px;}
.x4a_c00045{left:42.330000px;}
.x4e_c00045{left:53.565000px;}
.x1_c00045{left:120.960000px;}
.x46_c00045{left:192.675000px;}
.x47_c00045{left:203.040000px;}
.x4_c00045{left:215.130000px;}
.x5_c00045{left:224.640000px;}
.x9_c00045{left:231.555000px;}
.x22_c00045{left:240.195000px;}
.xa_c00045{left:241.920000px;}
.x17_c00045{left:244.515000px;}
.xb_c00045{left:257.475000px;}
.x19_c00045{left:264.390000px;}
.xc_c00045{left:271.290000px;}
.x23_c00045{left:285.120000px;}
.xd_c00045{left:291.165000px;}
.x2d_c00045{left:296.355000px;}
.xe_c00045{left:306.720000px;}
.x6_c00045{left:310.170000px;}
.x1a_c00045{left:311.910000px;}
.x2a_c00045{left:313.635000px;}
.x24_c00045{left:317.085000px;}
.x27_c00045{left:321.405000px;}
.xf_c00045{left:325.725000px;}
.x2f_c00045{left:336.090000px;}
.x10_c00045{left:338.685000px;}
.x11_c00045{left:349.920000px;}
.x25_c00045{left:353.370000px;}
.x7_c00045{left:359.430000px;}
.x18_c00045{left:362.010000px;}
.x1b_c00045{left:365.475000px;}
.x8_c00045{left:386.205000px;}
.x1c_c00045{left:392.250000px;}
.x12_c00045{left:395.715000px;}
.x13_c00045{left:410.400000px;}
.x2b_c00045{left:414.720000px;}
.x1d_c00045{left:419.910000px;}
.x2_c00045{left:427.680000px;}
.x1e_c00045{left:439.770000px;}
.x3_c00045{left:448.410000px;}
.x30_c00045{left:450.150000px;}
.x14_c00045{left:457.920000px;}
.x1f_c00045{left:463.110000px;}
.x28_c00045{left:464.835000px;}
.x15_c00045{left:475.200000px;}
.x16_c00045{left:493.350000px;}
.x26_c00045{left:505.440000px;}
.x20_c00045{left:511.485000px;}
.x2c_c00045{left:514.080000px;}
.x21_c00045{left:521.850000px;}
.x2e_c00045{left:523.590000px;}
.x29_c00045{left:556.410000px;}
.x40_c00045{left:585.795000px;}
.x3d_c00045{left:589.245000px;}
.x31_c00045{left:590.970000px;}
.x39_c00045{left:605.670000px;}
.x35_c00045{left:622.080000px;}
.x36_c00045{left:638.490000px;}
.x3a_c00045{left:657.510000px;}
.x43_c00045{left:660.090000px;}
.x44_c00045{left:674.790000px;}
.x32_c00045{left:680.835000px;}
.x3e_c00045{left:711.930000px;}
.x45_c00045{left:768.960000px;}
.x33_c00045{left:771.555000px;}
.x41_c00045{left:777.600000px;}
.x37_c00045{left:793.155000px;}
.x3b_c00045{left:811.290000px;}
.x38_c00045{left:819.075000px;}
.x3f_c00045{left:824.250000px;}
.x42_c00045{left:853.635000px;}
.x3c_c00045{left:859.680000px;}
.x34_c00045{left:869.190000px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls0_c00045{letter-spacing:0.000000pt;}
.ws0_c00045{word-spacing:0.000000pt;}
.fs17_c00045{font-size:3.072000pt;}
.fs2_c00045{font-size:5.333333pt;}
.fs6_c00045{font-size:6.133333pt;}
.fs21_c00045{font-size:9.226667pt;}
.fs1f_c00045{font-size:12.266667pt;}
.fs1_c00045{font-size:15.360000pt;}
.fs1e_c00045{font-size:18.453333pt;}
.fs0_c00045{font-size:21.493333pt;}
.fs1c_c00045{font-size:27.626667pt;}
.fs15_c00045{font-size:30.720000pt;}
.fsb_c00045{font-size:33.813333pt;}
.fsf_c00045{font-size:36.853333pt;}
.fse_c00045{font-size:39.946667pt;}
.fsd_c00045{font-size:42.986667pt;}
.fs8_c00045{font-size:46.080000pt;}
.fs7_c00045{font-size:49.173333pt;}
.fsa_c00045{font-size:52.213333pt;}
.fs9_c00045{font-size:55.306667pt;}
.fs3_c00045{font-size:58.346667pt;}
.fs5_c00045{font-size:61.440000pt;}
.fs10_c00045{font-size:64.533333pt;}
.fs4_c00045{font-size:67.573333pt;}
.fs19_c00045{font-size:70.666667pt;}
.fs18_c00045{font-size:73.706667pt;}
.fs12_c00045{font-size:76.800000pt;}
.fs20_c00045{font-size:79.893333pt;}
.fsc_c00045{font-size:82.933333pt;}
.fs16_c00045{font-size:86.026667pt;}
.fs14_c00045{font-size:95.253333pt;}
.fs11_c00045{font-size:98.293333pt;}
.fs1a_c00045{font-size:101.386667pt;}
.fs1d_c00045{font-size:104.426667pt;}
.fs13_c00045{font-size:107.520000pt;}
.fs1b_c00045{font-size:119.786667pt;}
.fs22_c00045{font-size:129.013333pt;}
.y0_c00045{bottom:0.000000pt;}
.y4c_c00045{bottom:202.746667pt;}
.y4b_c00045{bottom:205.053333pt;}
.y48_c00045{bottom:209.666667pt;}
.y49_c00045{bottom:213.506667pt;}
.y4a_c00045{bottom:215.813333pt;}
.y46_c00045{bottom:221.946667pt;}
.y47_c00045{bottom:222.720000pt;}
.y44_c00045{bottom:234.240000pt;}
.y45_c00045{bottom:235.773333pt;}
.y41_c00045{bottom:265.733333pt;}
.y42_c00045{bottom:269.573333pt;}
.y43_c00045{bottom:280.320000pt;}
.y40_c00045{bottom:284.160000pt;}
.y3f_c00045{bottom:284.933333pt;}
.y3e_c00045{bottom:304.133333pt;}
.y3c_c00045{bottom:539.906667pt;}
.y3d_c00045{bottom:540.666667pt;}
.y3a_c00045{bottom:635.906667pt;}
.y3b_c00045{bottom:638.973333pt;}
.y25_c00045{bottom:689.666667pt;}
.y24_c00045{bottom:691.973333pt;}
.y26_c00045{bottom:694.266667pt;}
.y38_c00045{bottom:695.040000pt;}
.y27_c00045{bottom:695.813333pt;}
.y22_c00045{bottom:707.333333pt;}
.y21_c00045{bottom:712.706667pt;}
.y39_c00045{bottom:713.466667pt;}
.y20_c00045{bottom:714.240000pt;}
.y35_c00045{bottom:715.013333pt;}
.y23_c00045{bottom:715.773333pt;}
.y34_c00045{bottom:717.306667pt;}
.y1f_c00045{bottom:718.080000pt;}
.y1d_c00045{bottom:719.613333pt;}
.y37_c00045{bottom:721.146667pt;}
.y36_c00045{bottom:721.920000pt;}
.y1e_c00045{bottom:722.693333pt;}
.y1b_c00045{bottom:734.973333pt;}
.y1a_c00045{bottom:735.746667pt;}
.y1c_c00045{bottom:740.346667pt;}
.y33_c00045{bottom:743.426667pt;}
.y32_c00045{bottom:744.186667pt;}
.y14_c00045{bottom:745.733333pt;}
.y17_c00045{bottom:746.493333pt;}
.y15_c00045{bottom:748.026667pt;}
.y16_c00045{bottom:749.573333pt;}
.y18_c00045{bottom:750.333333pt;}
.y19_c00045{bottom:751.866667pt;}
.y2f_c00045{bottom:765.693333pt;}
.y30_c00045{bottom:766.466667pt;}
.y31_c00045{bottom:768.773333pt;}
.ye_c00045{bottom:770.306667pt;}
.y2e_c00045{bottom:772.613333pt;}
.y13_c00045{bottom:774.146667pt;}
.yf_c00045{bottom:775.680000pt;}
.y11_c00045{bottom:777.986667pt;}
.y2d_c00045{bottom:778.746667pt;}
.yc_c00045{bottom:779.520000pt;}
.y10_c00045{bottom:780.293333pt;}
.y12_c00045{bottom:781.053333pt;}
.y2c_c00045{bottom:781.826667pt;}
.yd_c00045{bottom:792.573333pt;}
.y28_c00045{bottom:800.253333pt;}
.y29_c00045{bottom:801.026667pt;}
.y1_c00045{bottom:801.786667pt;}
.y2a_c00045{bottom:803.333333pt;}
.ya_c00045{bottom:808.706667pt;}
.y8_c00045{bottom:809.466667pt;}
.y7_c00045{bottom:810.240000pt;}
.y9_c00045{bottom:811.013333pt;}
.yb_c00045{bottom:811.773333pt;}
.y6_c00045{bottom:814.853333pt;}
.y2b_c00045{bottom:829.440000pt;}
.y4_c00045{bottom:836.346667pt;}
.y5_c00045{bottom:837.120000pt;}
.y2_c00045{bottom:854.786667pt;}
.y3_c00045{bottom:857.093333pt;}
.h19_c00045{height:2.764500pt;}
.h4_c00045{height:4.799479pt;}
.h8_c00045{height:5.519401pt;}
.h23_c00045{height:8.303099pt;}
.h21_c00045{height:11.038802pt;}
.h3_c00045{height:13.822500pt;}
.h20_c00045{height:16.606198pt;}
.h2_c00045{height:19.341901pt;}
.h1e_c00045{height:24.861302pt;}
.h17_c00045{height:27.645000pt;}
.hd_c00045{height:30.428698pt;}
.h11_c00045{height:33.164401pt;}
.h10_c00045{height:35.948099pt;}
.hf_c00045{height:38.683802pt;}
.ha_c00045{height:41.467500pt;}
.h9_c00045{height:44.251198pt;}
.hc_c00045{height:46.986901pt;}
.hb_c00045{height:49.770599pt;}
.h5_c00045{height:52.506302pt;}
.h7_c00045{height:55.290000pt;}
.h12_c00045{height:58.073698pt;}
.h6_c00045{height:60.809401pt;}
.h1b_c00045{height:63.593099pt;}
.h1a_c00045{height:66.328802pt;}
.h14_c00045{height:69.112500pt;}
.h22_c00045{height:71.896198pt;}
.he_c00045{height:74.631901pt;}
.h18_c00045{height:77.415599pt;}
.h16_c00045{height:85.718698pt;}
.h13_c00045{height:88.454401pt;}
.h1c_c00045{height:91.238099pt;}
.h1f_c00045{height:93.973802pt;}
.h15_c00045{height:96.757500pt;}
.h1d_c00045{height:107.796302pt;}
.h24_c00045{height:116.099401pt;}
.h1_c00045{height:1340.000000pt;}
.h0_c00045{height:1340.160000pt;}
.w1_c00045{width:941.333333pt;}
.w0_c00045{width:941.573333pt;}
.x0_c00045{left:0.000000pt;}
.x4b_c00045{left:1.533333pt;}
.x48_c00045{left:3.840000pt;}
.x50_c00045{left:5.373333pt;}
.x49_c00045{left:7.680000pt;}
.x51_c00045{left:13.053333pt;}
.x4f_c00045{left:16.893333pt;}
.x4c_c00045{left:24.573333pt;}
.x52_c00045{left:26.106667pt;}
.x4d_c00045{left:35.333333pt;}
.x4a_c00045{left:37.626667pt;}
.x4e_c00045{left:47.613333pt;}
.x1_c00045{left:107.520000pt;}
.x46_c00045{left:171.266667pt;}
.x47_c00045{left:180.480000pt;}
.x4_c00045{left:191.226667pt;}
.x5_c00045{left:199.680000pt;}
.x9_c00045{left:205.826667pt;}
.x22_c00045{left:213.506667pt;}
.xa_c00045{left:215.040000pt;}
.x17_c00045{left:217.346667pt;}
.xb_c00045{left:228.866667pt;}
.x19_c00045{left:235.013333pt;}
.xc_c00045{left:241.146667pt;}
.x23_c00045{left:253.440000pt;}
.xd_c00045{left:258.813333pt;}
.x2d_c00045{left:263.426667pt;}
.xe_c00045{left:272.640000pt;}
.x6_c00045{left:275.706667pt;}
.x1a_c00045{left:277.253333pt;}
.x2a_c00045{left:278.786667pt;}
.x24_c00045{left:281.853333pt;}
.x27_c00045{left:285.693333pt;}
.xf_c00045{left:289.533333pt;}
.x2f_c00045{left:298.746667pt;}
.x10_c00045{left:301.053333pt;}
.x11_c00045{left:311.040000pt;}
.x25_c00045{left:314.106667pt;}
.x7_c00045{left:319.493333pt;}
.x18_c00045{left:321.786667pt;}
.x1b_c00045{left:324.866667pt;}
.x8_c00045{left:343.293333pt;}
.x1c_c00045{left:348.666667pt;}
.x12_c00045{left:351.746667pt;}
.x13_c00045{left:364.800000pt;}
.x2b_c00045{left:368.640000pt;}
.x1d_c00045{left:373.253333pt;}
.x2_c00045{left:380.160000pt;}
.x1e_c00045{left:390.906667pt;}
.x3_c00045{left:398.586667pt;}
.x30_c00045{left:400.133333pt;}
.x14_c00045{left:407.040000pt;}
.x1f_c00045{left:411.653333pt;}
.x28_c00045{left:413.186667pt;}
.x15_c00045{left:422.400000pt;}
.x16_c00045{left:438.533333pt;}
.x26_c00045{left:449.280000pt;}
.x20_c00045{left:454.653333pt;}
.x2c_c00045{left:456.960000pt;}
.x21_c00045{left:463.866667pt;}
.x2e_c00045{left:465.413333pt;}
.x29_c00045{left:494.586667pt;}
.x40_c00045{left:520.706667pt;}
.x3d_c00045{left:523.773333pt;}
.x31_c00045{left:525.306667pt;}
.x39_c00045{left:538.373333pt;}
.x35_c00045{left:552.960000pt;}
.x36_c00045{left:567.546667pt;}
.x3a_c00045{left:584.453333pt;}
.x43_c00045{left:586.746667pt;}
.x44_c00045{left:599.813333pt;}
.x32_c00045{left:605.186667pt;}
.x3e_c00045{left:632.826667pt;}
.x45_c00045{left:683.520000pt;}
.x33_c00045{left:685.826667pt;}
.x41_c00045{left:691.200000pt;}
.x37_c00045{left:705.026667pt;}
.x3b_c00045{left:721.146667pt;}
.x38_c00045{left:728.066667pt;}
.x3f_c00045{left:732.666667pt;}
.x42_c00045{left:758.786667pt;}
.x3c_c00045{left:764.160000pt;}
.x34_c00045{left:772.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_318f2f8f3e8a28b576f8aba5.woff2')format("woff");}.ff1_c00046{font-family:ff1_c00046;line-height:1.109863;font-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_c00046{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);}
.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;}
.fs0_c00046{font-size:600.000000px;}
.y0_c00046{bottom:0.000000px;}
.y1_c00046{bottom:15.000000px;}
.h2_c00046{height:539.941406px;}
.h0_c00046{height:1515.450000px;}
.h1_c00046{height:1515.750000px;}
.w0_c00046{width:1079.130000px;}
.w1_c00046{width:1079.250000px;}
.x0_c00046{left:0.000000px;}
.x1_c00046{left:15.000000px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ws0_c00046{word-spacing:0.000000pt;}
.fs0_c00046{font-size:533.333333pt;}
.y0_c00046{bottom:0.000000pt;}
.y1_c00046{bottom:13.333333pt;}
.h2_c00046{height:479.947917pt;}
.h0_c00046{height:1347.066667pt;}
.h1_c00046{height:1347.333333pt;}
.w0_c00046{width:959.226667pt;}
.w1_c00046{width:959.333333pt;}
.x0_c00046{left:0.000000pt;}
.x1_c00046{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9322652b9a418456b87d33e.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.109863;font-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_c00047{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m6_c00047{transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);}
.m4_c00047{transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);}
.m1_c00047{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00047{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);}
.m8_c00047{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);}
.m0_c00047{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00047{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c00047{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);}
.mb_c00047{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma_c00047{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m5_c00047{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,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;}
.fs5_c00047{font-size:3.456000px;}
.fs6_c00047{font-size:6.900000px;}
.fs0_c00047{font-size:10.380000px;}
.fs1_c00047{font-size:17.280000px;}
.fs9_c00047{font-size:20.760000px;}
.fs8_c00047{font-size:34.560000px;}
.fs4_c00047{font-size:55.320000px;}
.fs3_c00047{font-size:58.740000px;}
.fs2_c00047{font-size:69.120000px;}
.fs7_c00047{font-size:89.880000px;}
.y0_c00047{bottom:0.000000px;}
.yf_c00047{bottom:324.000000px;}
.ye_c00047{bottom:330.915000px;}
.yd_c00047{bottom:354.240000px;}
.yc_c00047{bottom:707.610000px;}
.ya_c00047{bottom:786.240000px;}
.yb_c00047{bottom:787.965000px;}
.y9_c00047{bottom:853.635000px;}
.y7_c00047{bottom:938.310000px;}
.y8_c00047{bottom:951.270000px;}
.y4_c00047{bottom:952.995000px;}
.y5_c00047{bottom:953.850000px;}
.y6_c00047{bottom:958.170000px;}
.y1_c00047{bottom:1042.845000px;}
.y2_c00047{bottom:1043.715000px;}
.y3_c00047{bottom:1045.440000px;}
.h7_c00047{height:3.110063px;}
.h8_c00047{height:6.209326px;}
.h2_c00047{height:9.340986px;}
.h3_c00047{height:15.550313px;}
.hb_c00047{height:18.681973px;}
.ha_c00047{height:31.100625px;}
.h6_c00047{height:49.782598px;}
.h5_c00047{height:52.860264px;}
.h4_c00047{height:62.201250px;}
.h9_c00047{height:80.883223px;}
.h1_c00047{height:1507.500000px;}
.h0_c00047{height:1507.680000px;}
.w1_c00047{width:1059.000000px;}
.w0_c00047{width:1059.270000px;}
.x0_c00047{left:0.000000px;}
.x4_c00047{left:4.320000px;}
.xe_c00047{left:25.920000px;}
.x5_c00047{left:29.370000px;}
.xd_c00047{left:31.965000px;}
.xc_c00047{left:40.605000px;}
.x9_c00047{left:49.245000px;}
.x6_c00047{left:52.710000px;}
.x7_c00047{left:57.030000px;}
.xa_c00047{left:59.610000px;}
.xb_c00047{left:73.440000px;}
.x8_c00047{left:139.110000px;}
.x1_c00047{left:146.880000px;}
.x2_c00047{left:158.970000px;}
.x3_c00047{left:167.610000px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ws0_c00047{word-spacing:0.000000pt;}
.fs5_c00047{font-size:3.072000pt;}
.fs6_c00047{font-size:6.133333pt;}
.fs0_c00047{font-size:9.226667pt;}
.fs1_c00047{font-size:15.360000pt;}
.fs9_c00047{font-size:18.453333pt;}
.fs8_c00047{font-size:30.720000pt;}
.fs4_c00047{font-size:49.173333pt;}
.fs3_c00047{font-size:52.213333pt;}
.fs2_c00047{font-size:61.440000pt;}
.fs7_c00047{font-size:79.893333pt;}
.y0_c00047{bottom:0.000000pt;}
.yf_c00047{bottom:288.000000pt;}
.ye_c00047{bottom:294.146667pt;}
.yd_c00047{bottom:314.880000pt;}
.yc_c00047{bottom:628.986667pt;}
.ya_c00047{bottom:698.880000pt;}
.yb_c00047{bottom:700.413333pt;}
.y9_c00047{bottom:758.786667pt;}
.y7_c00047{bottom:834.053333pt;}
.y8_c00047{bottom:845.573333pt;}
.y4_c00047{bottom:847.106667pt;}
.y5_c00047{bottom:847.866667pt;}
.y6_c00047{bottom:851.706667pt;}
.y1_c00047{bottom:926.973333pt;}
.y2_c00047{bottom:927.746667pt;}
.y3_c00047{bottom:929.280000pt;}
.h7_c00047{height:2.764500pt;}
.h8_c00047{height:5.519401pt;}
.h2_c00047{height:8.303099pt;}
.h3_c00047{height:13.822500pt;}
.hb_c00047{height:16.606198pt;}
.ha_c00047{height:27.645000pt;}
.h6_c00047{height:44.251198pt;}
.h5_c00047{height:46.986901pt;}
.h4_c00047{height:55.290000pt;}
.h9_c00047{height:71.896198pt;}
.h1_c00047{height:1340.000000pt;}
.h0_c00047{height:1340.160000pt;}
.w1_c00047{width:941.333333pt;}
.w0_c00047{width:941.573333pt;}
.x0_c00047{left:0.000000pt;}
.x4_c00047{left:3.840000pt;}
.xe_c00047{left:23.040000pt;}
.x5_c00047{left:26.106667pt;}
.xd_c00047{left:28.413333pt;}
.xc_c00047{left:36.093333pt;}
.x9_c00047{left:43.773333pt;}
.x6_c00047{left:46.853333pt;}
.x7_c00047{left:50.693333pt;}
.xa_c00047{left:52.986667pt;}
.xb_c00047{left:65.280000pt;}
.x8_c00047{left:123.653333pt;}
.x1_c00047{left:130.560000pt;}
.x2_c00047{left:141.306667pt;}
.x3_c00047{left:148.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_984a8587203ef5ecb3875aaf.woff2')format("woff");}.ff1_c00048{font-family:ff1_c00048;line-height:1.109863;font-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_c00048{transform:matrix(0.026450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026450,0.000000,0.000000,0.250000,0,0);}
.mb_c00048{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00048{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c00048{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00048{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00048{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);}
.m3_c00048{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mc_c00048{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);}
.m6_c00048{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4_c00048{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m7_c00048{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5_c00048{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);}
.m9_c00048{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.md_c00048{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1_c00048{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v1_c00048{vertical-align:-3.420000px;}
.v0_c00048{vertical-align:0.000000px;}
.ls1_c00048{letter-spacing:0.000000px;}
.ls0_c00048{letter-spacing:13.458600px;}
.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;}
.fc0_c00048{color:transparent;}
.fs7_c00048{font-size:6.000000px;}
.fs1_c00048{font-size:6.900000px;}
.fsb_c00048{font-size:10.380000px;}
.fs0_c00048{font-size:13.800000px;}
.fs6_c00048{font-size:17.280000px;}
.fs9_c00048{font-size:24.180000px;}
.fs8_c00048{font-size:27.660000px;}
.fsa_c00048{font-size:31.080000px;}
.fs5_c00048{font-size:51.840000px;}
.fs4_c00048{font-size:55.320000px;}
.fs2_c00048{font-size:62.220000px;}
.fs3_c00048{font-size:65.640000px;}
.fsc_c00048{font-size:176.280000px;}
.y0_c00048{bottom:0.000000px;}
.yc_c00048{bottom:421.635000px;}
.yb_c00048{bottom:438.915000px;}
.ya_c00048{bottom:743.910000px;}
.y9_c00048{bottom:795.750000px;}
.y8_c00048{bottom:1051.485000px;}
.y6_c00048{bottom:1058.400000px;}
.y7_c00048{bottom:1059.270000px;}
.y1_c00048{bottom:1250.205000px;}
.y3_c00048{bottom:1408.320000px;}
.y5_c00048{bottom:1409.190000px;}
.y4_c00048{bottom:1410.045000px;}
.y2_c00048{bottom:1422.150000px;}
.h9_c00048{height:5.399414px;}
.h3_c00048{height:6.209326px;}
.hd_c00048{height:9.340986px;}
.h2_c00048{height:12.418652px;}
.h8_c00048{height:15.550313px;}
.hb_c00048{height:21.759639px;}
.ha_c00048{height:24.891299px;}
.hc_c00048{height:27.968965px;}
.h7_c00048{height:46.650937px;}
.h6_c00048{height:49.782598px;}
.h4_c00048{height:55.991924px;}
.h5_c00048{height:59.069590px;}
.he_c00048{height:158.634785px;}
.h0_c00048{height:1515.450000px;}
.h1_c00048{height:1515.750000px;}
.w0_c00048{width:1079.130000px;}
.w1_c00048{width:1079.250000px;}
.x0_c00048{left:0.000000px;}
.x2_c00048{left:279.930000px;}
.x3_c00048{left:290.310000px;}
.x4_c00048{left:324.000000px;}
.x5_c00048{left:442.365000px;}
.x6_c00048{left:466.560000px;}
.x7_c00048{left:505.440000px;}
.x8_c00048{left:579.750000px;}
.x9_c00048{left:673.920000px;}
.xa_c00048{left:765.510000px;}
.xb_c00048{left:777.600000px;}
.xc_c00048{left:894.240000px;}
.x10_c00048{left:933.120000px;}
.xf_c00048{left:970.275000px;}
.xd_c00048{left:1007.430000px;}
.xe_c00048{left:1016.070000px;}
.x1_c00048{left:1022.970000px;}
.x11_c00048{left:1060.995000px;}
.x12_c00048{left:1076.550000px;}
@media print{
.v1_c00048{vertical-align:-3.040000pt;}
.v0_c00048{vertical-align:0.000000pt;}
.ls1_c00048{letter-spacing:0.000000pt;}
.ls0_c00048{letter-spacing:11.963200pt;}
.ws0_c00048{word-spacing:0.000000pt;}
.fs7_c00048{font-size:5.333333pt;}
.fs1_c00048{font-size:6.133333pt;}
.fsb_c00048{font-size:9.226667pt;}
.fs0_c00048{font-size:12.266667pt;}
.fs6_c00048{font-size:15.360000pt;}
.fs9_c00048{font-size:21.493333pt;}
.fs8_c00048{font-size:24.586667pt;}
.fsa_c00048{font-size:27.626667pt;}
.fs5_c00048{font-size:46.080000pt;}
.fs4_c00048{font-size:49.173333pt;}
.fs2_c00048{font-size:55.306667pt;}
.fs3_c00048{font-size:58.346667pt;}
.fsc_c00048{font-size:156.693333pt;}
.y0_c00048{bottom:0.000000pt;}
.yc_c00048{bottom:374.786667pt;}
.yb_c00048{bottom:390.146667pt;}
.ya_c00048{bottom:661.253333pt;}
.y9_c00048{bottom:707.333333pt;}
.y8_c00048{bottom:934.653333pt;}
.y6_c00048{bottom:940.800000pt;}
.y7_c00048{bottom:941.573333pt;}
.y1_c00048{bottom:1111.293333pt;}
.y3_c00048{bottom:1251.840000pt;}
.y5_c00048{bottom:1252.613333pt;}
.y4_c00048{bottom:1253.373333pt;}
.y2_c00048{bottom:1264.133333pt;}
.h9_c00048{height:4.799479pt;}
.h3_c00048{height:5.519401pt;}
.hd_c00048{height:8.303099pt;}
.h2_c00048{height:11.038802pt;}
.h8_c00048{height:13.822500pt;}
.hb_c00048{height:19.341901pt;}
.ha_c00048{height:22.125599pt;}
.hc_c00048{height:24.861302pt;}
.h7_c00048{height:41.467500pt;}
.h6_c00048{height:44.251198pt;}
.h4_c00048{height:49.770599pt;}
.h5_c00048{height:52.506302pt;}
.he_c00048{height:141.008698pt;}
.h0_c00048{height:1347.066667pt;}
.h1_c00048{height:1347.333333pt;}
.w0_c00048{width:959.226667pt;}
.w1_c00048{width:959.333333pt;}
.x0_c00048{left:0.000000pt;}
.x2_c00048{left:248.826667pt;}
.x3_c00048{left:258.053333pt;}
.x4_c00048{left:288.000000pt;}
.x5_c00048{left:393.213333pt;}
.x6_c00048{left:414.720000pt;}
.x7_c00048{left:449.280000pt;}
.x8_c00048{left:515.333333pt;}
.x9_c00048{left:599.040000pt;}
.xa_c00048{left:680.453333pt;}
.xb_c00048{left:691.200000pt;}
.xc_c00048{left:794.880000pt;}
.x10_c00048{left:829.440000pt;}
.xf_c00048{left:862.466667pt;}
.xd_c00048{left:895.493333pt;}
.xe_c00048{left:903.173333pt;}
.x1_c00048{left:909.306667pt;}
.x11_c00048{left:943.106667pt;}
.x12_c00048{left:956.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00049;src:url('chunks/assets/font_2a4ecfb0a212d0f99764fa87.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.109863;font-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_c00049{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);}
.v0_c00049{vertical-align:0.000000px;}
.ls0_c00049{letter-spacing:0.000000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:0.000000px;}
.fc0_c00049{color:transparent;}
.fs0_c00049{font-size:600.000000px;}
.y0_c00049{bottom:0.000000px;}
.y1_c00049{bottom:15.000000px;}
.h2_c00049{height:539.941406px;}
.h1_c00049{height:1507.500000px;}
.h0_c00049{height:1507.680000px;}
.w1_c00049{width:1059.000000px;}
.w0_c00049{width:1059.270000px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:15.000000px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws0_c00049{word-spacing:0.000000pt;}
.fs0_c00049{font-size:533.333333pt;}
.y0_c00049{bottom:0.000000pt;}
.y1_c00049{bottom:13.333333pt;}
.h2_c00049{height:479.947917pt;}
.h1_c00049{height:1340.000000pt;}
.h0_c00049{height:1340.160000pt;}
.w1_c00049{width:941.333333pt;}
.w0_c00049{width:941.573333pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c9815ae668a35047469805c.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.109863;font-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_c00050{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m14_c00050{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m3f_c00050{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m1e_c00050{transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);}
.m7_c00050{transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);}
.m20_c00050{transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);}
.m1a_c00050{transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);}
.m40_c00050{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.m29_c00050{transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);}
.m2_c00050{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00050{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);}
.m28_c00050{transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);}
.m36_c00050{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m19_c00050{transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);}
.m1b_c00050{transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);}
.m2a_c00050{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);}
.m37_c00050{transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);}
.m23_c00050{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m10_c00050{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);}
.m3b_c00050{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);}
.m2f_c00050{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.m44_c00050{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m50_c00050{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);}
.m4e_c00050{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);}
.m1c_c00050{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);}
.m41_c00050{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);}
.ma_c00050{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);}
.m31_c00050{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);}
.m4a_c00050{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);}
.m2b_c00050{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m3e_c00050{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.m3d_c00050{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m9_c00050{transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);}
.m25_c00050{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);}
.m22_c00050{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m35_c00050{transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);}
.m4b_c00050{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);}
.m13_c00050{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);}
.m17_c00050{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);}
.m39_c00050{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);}
.m2c_c00050{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00050{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00050{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);}
.m5_c00050{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m43_c00050{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);}
.m1_c00050{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c00050{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);}
.m11_c00050{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m45_c00050{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);}
.m49_c00050{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);}
.m18_c00050{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m34_c00050{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);}
.m32_c00050{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00050{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c00050{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c00050{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00050{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);}
.m1f_c00050{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m26_c00050{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);}
.m21_c00050{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m33_c00050{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.me_c00050{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m48_c00050{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);}
.m2e_c00050{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m6_c00050{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m4_c00050{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mf_c00050{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m8_c00050{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m42_c00050{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);}
.m0_c00050{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m46_c00050{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00050{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);}
.mb_c00050{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);}
.m30_c00050{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m27_c00050{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mc_c00050{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m24_c00050{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m47_c00050{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.md_c00050{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00050{transform:matrix(0.922500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.922500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.922500,0.000000,0.000000,0.250000,0,0);}
.m38_c00050{transform:matrix(1.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.992500,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;}
.fs0_c00050{font-size:3.456000px;}
.fs19_c00050{font-size:6.000000px;}
.fs20_c00050{font-size:6.900000px;}
.fs16_c00050{font-size:10.380000px;}
.fs1c_c00050{font-size:13.800000px;}
.fse_c00050{font-size:17.280000px;}
.fs1b_c00050{font-size:20.760000px;}
.fs1f_c00050{font-size:24.180000px;}
.fs1a_c00050{font-size:31.080000px;}
.fs15_c00050{font-size:34.560000px;}
.fs18_c00050{font-size:38.040000px;}
.fs14_c00050{font-size:41.460000px;}
.fs11_c00050{font-size:44.940000px;}
.fsc_c00050{font-size:51.840000px;}
.fs9_c00050{font-size:55.320000px;}
.fsa_c00050{font-size:58.740000px;}
.fsb_c00050{font-size:62.220000px;}
.fs1e_c00050{font-size:65.640000px;}
.fs6_c00050{font-size:69.120000px;}
.fs12_c00050{font-size:72.600000px;}
.fs17_c00050{font-size:76.020000px;}
.fs2_c00050{font-size:79.500000px;}
.fs4_c00050{font-size:82.920000px;}
.fs1_c00050{font-size:86.400000px;}
.fs10_c00050{font-size:89.880000px;}
.fs3_c00050{font-size:96.780000px;}
.fsf_c00050{font-size:100.200000px;}
.fsd_c00050{font-size:103.680000px;}
.fs5_c00050{font-size:107.160000px;}
.fs8_c00050{font-size:110.580000px;}
.fs7_c00050{font-size:117.480000px;}
.fs13_c00050{font-size:120.960000px;}
.fs1d_c00050{font-size:131.340000px;}
.y0_c00050{bottom:0.000000px;}
.y4f_c00050{bottom:395.715000px;}
.y4e_c00050{bottom:412.125000px;}
.y4d_c00050{bottom:429.405000px;}
.y4c_c00050{bottom:430.275000px;}
.y49_c00050{bottom:444.960000px;}
.y4b_c00050{bottom:451.005000px;}
.y4a_c00050{bottom:451.875000px;}
.y46_c00050{bottom:453.600000px;}
.y47_c00050{bottom:456.195000px;}
.y48_c00050{bottom:464.835000px;}
.y42_c00050{bottom:1060.995000px;}
.y45_c00050{bottom:1078.275000px;}
.y44_c00050{bottom:1086.045000px;}
.y40_c00050{bottom:1092.960000px;}
.y3f_c00050{bottom:1095.555000px;}
.y41_c00050{bottom:1097.280000px;}
.y3e_c00050{bottom:1099.005000px;}
.y3a_c00050{bottom:1099.875000px;}
.y38_c00050{bottom:1100.730000px;}
.y37_c00050{bottom:1103.325000px;}
.y36_c00050{bottom:1105.050000px;}
.y3b_c00050{bottom:1106.790000px;}
.y39_c00050{bottom:1107.645000px;}
.y3d_c00050{bottom:1114.560000px;}
.y3c_c00050{bottom:1115.430000px;}
.y34_c00050{bottom:1120.605000px;}
.y33_c00050{bottom:1124.925000px;}
.y35_c00050{bottom:1125.795000px;}
.y31_c00050{bottom:1126.650000px;}
.y30_c00050{bottom:1130.115000px;}
.y2d_c00050{bottom:1130.970000px;}
.y32_c00050{bottom:1131.840000px;}
.y2e_c00050{bottom:1132.710000px;}
.y2a_c00050{bottom:1133.565000px;}
.y2b_c00050{bottom:1137.885000px;}
.y2f_c00050{bottom:1139.610000px;}
.y25_c00050{bottom:1140.480000px;}
.y2c_c00050{bottom:1143.930000px;}
.y29_c00050{bottom:1146.525000px;}
.y28_c00050{bottom:1148.250000px;}
.y26_c00050{bottom:1149.990000px;}
.y27_c00050{bottom:1156.890000px;}
.y24_c00050{bottom:1158.630000px;}
.y23_c00050{bottom:1159.485000px;}
.y1d_c00050{bottom:1162.950000px;}
.y21_c00050{bottom:1163.805000px;}
.y1c_c00050{bottom:1164.675000px;}
.y19_c00050{bottom:1166.400000px;}
.y20_c00050{bottom:1171.590000px;}
.y1e_c00050{bottom:1172.445000px;}
.y1a_c00050{bottom:1175.910000px;}
.y1f_c00050{bottom:1183.680000px;}
.y22_c00050{bottom:1184.550000px;}
.y1b_c00050{bottom:1187.130000px;}
.y16_c00050{bottom:1190.595000px;}
.y17_c00050{bottom:1194.915000px;}
.yd_c00050{bottom:1195.770000px;}
.y18_c00050{bottom:1196.640000px;}
.y10_c00050{bottom:1197.510000px;}
.y15_c00050{bottom:1198.365000px;}
.ye_c00050{bottom:1200.090000px;}
.y11_c00050{bottom:1201.830000px;}
.y12_c00050{bottom:1203.555000px;}
.yf_c00050{bottom:1204.410000px;}
.y13_c00050{bottom:1205.280000px;}
.y14_c00050{bottom:1206.150000px;}
.y8_c00050{bottom:1226.880000px;}
.y9_c00050{bottom:1227.750000px;}
.yb_c00050{bottom:1229.475000px;}
.yc_c00050{bottom:1231.200000px;}
.ya_c00050{bottom:1232.070000px;}
.y43_c00050{bottom:1259.715000px;}
.y7_c00050{bottom:1262.310000px;}
.y6_c00050{bottom:1263.165000px;}
.y4_c00050{bottom:1266.630000px;}
.y5_c00050{bottom:1270.950000px;}
.y3_c00050{bottom:1272.675000px;}
.y2_c00050{bottom:1294.275000px;}
.y1_c00050{bottom:1296.870000px;}
.h2_c00050{height:3.110063px;}
.h1b_c00050{height:5.399414px;}
.h22_c00050{height:6.209326px;}
.h18_c00050{height:9.340986px;}
.h1e_c00050{height:12.418652px;}
.h10_c00050{height:15.550313px;}
.h1d_c00050{height:18.681973px;}
.h21_c00050{height:21.759639px;}
.h1c_c00050{height:27.968965px;}
.h17_c00050{height:31.100625px;}
.h1a_c00050{height:34.232285px;}
.h16_c00050{height:37.309951px;}
.h13_c00050{height:40.441611px;}
.he_c00050{height:46.650937px;}
.hb_c00050{height:49.782598px;}
.hc_c00050{height:52.860264px;}
.hd_c00050{height:55.991924px;}
.h20_c00050{height:59.069590px;}
.h8_c00050{height:62.201250px;}
.h14_c00050{height:65.332910px;}
.h19_c00050{height:68.410576px;}
.h4_c00050{height:71.542236px;}
.h6_c00050{height:74.619902px;}
.h3_c00050{height:77.751563px;}
.h12_c00050{height:80.883223px;}
.h5_c00050{height:87.092549px;}
.h11_c00050{height:90.170215px;}
.hf_c00050{height:93.301875px;}
.h7_c00050{height:96.433535px;}
.ha_c00050{height:99.511201px;}
.h9_c00050{height:105.720527px;}
.h15_c00050{height:108.852188px;}
.h1f_c00050{height:118.193174px;}
.h0_c00050{height:1515.450000px;}
.h1_c00050{height:1515.750000px;}
.w0_c00050{width:1079.130000px;}
.w1_c00050{width:1079.250000px;}
.x0_c00050{left:0.000000px;}
.x20_c00050{left:171.930000px;}
.x21_c00050{left:225.510000px;}
.x4_c00050{left:235.005000px;}
.x22_c00050{left:242.790000px;}
.x3f_c00050{left:251.430000px;}
.x34_c00050{left:257.475000px;}
.xa_c00050{left:259.200000px;}
.x44_c00050{left:262.650000px;}
.x29_c00050{left:264.390000px;}
.x1_c00050{left:280.800000px;}
.x35_c00050{left:282.525000px;}
.x11_c00050{left:302.400000px;}
.x23_c00050{left:306.720000px;}
.x2_c00050{left:317.085000px;}
.x5_c00050{left:320.550000px;}
.x12_c00050{left:330.915000px;}
.x2a_c00050{left:343.875000px;}
.x45_c00050{left:348.195000px;}
.x13_c00050{left:357.690000px;}
.x6_c00050{left:370.650000px;}
.x24_c00050{left:375.840000px;}
.x40_c00050{left:390.525000px;}
.x36_c00050{left:400.035000px;}
.x2b_c00050{left:405.210000px;}
.x7_c00050{left:409.530000px;}
.x14_c00050{left:415.590000px;}
.x41_c00050{left:418.170000px;}
.x2c_c00050{left:427.680000px;}
.x15_c00050{left:432.870000px;}
.x37_c00050{left:450.150000px;}
.x16_c00050{left:454.470000px;}
.x2d_c00050{left:463.110000px;}
.x25_c00050{left:470.010000px;}
.x46_c00050{left:474.330000px;}
.xb_c00050{left:477.795000px;}
.x38_c00050{left:484.710000px;}
.x42_c00050{left:489.030000px;}
.x3_c00050{left:508.890000px;}
.x17_c00050{left:538.275000px;}
.x2e_c00050{left:540.000000px;}
.x47_c00050{left:552.090000px;}
.x8_c00050{left:554.685000px;}
.x18_c00050{left:564.195000px;}
.x26_c00050{left:571.110000px;}
.xc_c00050{left:572.835000px;}
.x9_c00050{left:584.925000px;}
.x2f_c00050{left:587.520000px;}
.xd_c00050{left:591.840000px;}
.x19_c00050{left:626.400000px;}
.xe_c00050{left:636.765000px;}
.x39_c00050{left:656.640000px;}
.x30_c00050{left:673.050000px;}
.xf_c00050{left:677.370000px;}
.x1a_c00050{left:679.110000px;}
.x3a_c00050{left:686.880000px;}
.x27_c00050{left:692.070000px;}
.x1b_c00050{left:715.395000px;}
.x28_c00050{left:729.210000px;}
.x31_c00050{left:735.270000px;}
.x1c_c00050{left:743.910000px;}
.x3b_c00050{left:754.275000px;}
.x3c_c00050{left:768.960000px;}
.x1d_c00050{left:786.240000px;}
.x10_c00050{left:791.430000px;}
.x4a_c00050{left:816.480000px;}
.x48_c00050{left:821.670000px;}
.x1e_c00050{left:823.395000px;}
.x3d_c00050{left:844.125000px;}
.x49_c00050{left:849.315000px;}
.x32_c00050{left:876.090000px;}
.x1f_c00050{left:883.875000px;}
.x3e_c00050{left:898.560000px;}
.x43_c00050{left:908.925000px;}
.x33_c00050{left:927.075000px;}
.x4b_c00050{left:1035.075000px;}
.x50_c00050{left:1051.485000px;}
.x4e_c00050{left:1054.080000px;}
.x4c_c00050{left:1058.400000px;}
.x4d_c00050{left:1071.360000px;}
.x4f_c00050{left:1078.275000px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws0_c00050{word-spacing:0.000000pt;}
.fs0_c00050{font-size:3.072000pt;}
.fs19_c00050{font-size:5.333333pt;}
.fs20_c00050{font-size:6.133333pt;}
.fs16_c00050{font-size:9.226667pt;}
.fs1c_c00050{font-size:12.266667pt;}
.fse_c00050{font-size:15.360000pt;}
.fs1b_c00050{font-size:18.453333pt;}
.fs1f_c00050{font-size:21.493333pt;}
.fs1a_c00050{font-size:27.626667pt;}
.fs15_c00050{font-size:30.720000pt;}
.fs18_c00050{font-size:33.813333pt;}
.fs14_c00050{font-size:36.853333pt;}
.fs11_c00050{font-size:39.946667pt;}
.fsc_c00050{font-size:46.080000pt;}
.fs9_c00050{font-size:49.173333pt;}
.fsa_c00050{font-size:52.213333pt;}
.fsb_c00050{font-size:55.306667pt;}
.fs1e_c00050{font-size:58.346667pt;}
.fs6_c00050{font-size:61.440000pt;}
.fs12_c00050{font-size:64.533333pt;}
.fs17_c00050{font-size:67.573333pt;}
.fs2_c00050{font-size:70.666667pt;}
.fs4_c00050{font-size:73.706667pt;}
.fs1_c00050{font-size:76.800000pt;}
.fs10_c00050{font-size:79.893333pt;}
.fs3_c00050{font-size:86.026667pt;}
.fsf_c00050{font-size:89.066667pt;}
.fsd_c00050{font-size:92.160000pt;}
.fs5_c00050{font-size:95.253333pt;}
.fs8_c00050{font-size:98.293333pt;}
.fs7_c00050{font-size:104.426667pt;}
.fs13_c00050{font-size:107.520000pt;}
.fs1d_c00050{font-size:116.746667pt;}
.y0_c00050{bottom:0.000000pt;}
.y4f_c00050{bottom:351.746667pt;}
.y4e_c00050{bottom:366.333333pt;}
.y4d_c00050{bottom:381.693333pt;}
.y4c_c00050{bottom:382.466667pt;}
.y49_c00050{bottom:395.520000pt;}
.y4b_c00050{bottom:400.893333pt;}
.y4a_c00050{bottom:401.666667pt;}
.y46_c00050{bottom:403.200000pt;}
.y47_c00050{bottom:405.506667pt;}
.y48_c00050{bottom:413.186667pt;}
.y42_c00050{bottom:943.106667pt;}
.y45_c00050{bottom:958.466667pt;}
.y44_c00050{bottom:965.373333pt;}
.y40_c00050{bottom:971.520000pt;}
.y3f_c00050{bottom:973.826667pt;}
.y41_c00050{bottom:975.360000pt;}
.y3e_c00050{bottom:976.893333pt;}
.y3a_c00050{bottom:977.666667pt;}
.y38_c00050{bottom:978.426667pt;}
.y37_c00050{bottom:980.733333pt;}
.y36_c00050{bottom:982.266667pt;}
.y3b_c00050{bottom:983.813333pt;}
.y39_c00050{bottom:984.573333pt;}
.y3d_c00050{bottom:990.720000pt;}
.y3c_c00050{bottom:991.493333pt;}
.y34_c00050{bottom:996.093333pt;}
.y33_c00050{bottom:999.933333pt;}
.y35_c00050{bottom:1000.706667pt;}
.y31_c00050{bottom:1001.466667pt;}
.y30_c00050{bottom:1004.546667pt;}
.y2d_c00050{bottom:1005.306667pt;}
.y32_c00050{bottom:1006.080000pt;}
.y2e_c00050{bottom:1006.853333pt;}
.y2a_c00050{bottom:1007.613333pt;}
.y2b_c00050{bottom:1011.453333pt;}
.y2f_c00050{bottom:1012.986667pt;}
.y25_c00050{bottom:1013.760000pt;}
.y2c_c00050{bottom:1016.826667pt;}
.y29_c00050{bottom:1019.133333pt;}
.y28_c00050{bottom:1020.666667pt;}
.y26_c00050{bottom:1022.213333pt;}
.y27_c00050{bottom:1028.346667pt;}
.y24_c00050{bottom:1029.893333pt;}
.y23_c00050{bottom:1030.653333pt;}
.y1d_c00050{bottom:1033.733333pt;}
.y21_c00050{bottom:1034.493333pt;}
.y1c_c00050{bottom:1035.266667pt;}
.y19_c00050{bottom:1036.800000pt;}
.y20_c00050{bottom:1041.413333pt;}
.y1e_c00050{bottom:1042.173333pt;}
.y1a_c00050{bottom:1045.253333pt;}
.y1f_c00050{bottom:1052.160000pt;}
.y22_c00050{bottom:1052.933333pt;}
.y1b_c00050{bottom:1055.226667pt;}
.y16_c00050{bottom:1058.306667pt;}
.y17_c00050{bottom:1062.146667pt;}
.yd_c00050{bottom:1062.906667pt;}
.y18_c00050{bottom:1063.680000pt;}
.y10_c00050{bottom:1064.453333pt;}
.y15_c00050{bottom:1065.213333pt;}
.ye_c00050{bottom:1066.746667pt;}
.y11_c00050{bottom:1068.293333pt;}
.y12_c00050{bottom:1069.826667pt;}
.yf_c00050{bottom:1070.586667pt;}
.y13_c00050{bottom:1071.360000pt;}
.y14_c00050{bottom:1072.133333pt;}
.y8_c00050{bottom:1090.560000pt;}
.y9_c00050{bottom:1091.333333pt;}
.yb_c00050{bottom:1092.866667pt;}
.yc_c00050{bottom:1094.400000pt;}
.ya_c00050{bottom:1095.173333pt;}
.y43_c00050{bottom:1119.746667pt;}
.y7_c00050{bottom:1122.053333pt;}
.y6_c00050{bottom:1122.813333pt;}
.y4_c00050{bottom:1125.893333pt;}
.y5_c00050{bottom:1129.733333pt;}
.y3_c00050{bottom:1131.266667pt;}
.y2_c00050{bottom:1150.466667pt;}
.y1_c00050{bottom:1152.773333pt;}
.h2_c00050{height:2.764500pt;}
.h1b_c00050{height:4.799479pt;}
.h22_c00050{height:5.519401pt;}
.h18_c00050{height:8.303099pt;}
.h1e_c00050{height:11.038802pt;}
.h10_c00050{height:13.822500pt;}
.h1d_c00050{height:16.606198pt;}
.h21_c00050{height:19.341901pt;}
.h1c_c00050{height:24.861302pt;}
.h17_c00050{height:27.645000pt;}
.h1a_c00050{height:30.428698pt;}
.h16_c00050{height:33.164401pt;}
.h13_c00050{height:35.948099pt;}
.he_c00050{height:41.467500pt;}
.hb_c00050{height:44.251198pt;}
.hc_c00050{height:46.986901pt;}
.hd_c00050{height:49.770599pt;}
.h20_c00050{height:52.506302pt;}
.h8_c00050{height:55.290000pt;}
.h14_c00050{height:58.073698pt;}
.h19_c00050{height:60.809401pt;}
.h4_c00050{height:63.593099pt;}
.h6_c00050{height:66.328802pt;}
.h3_c00050{height:69.112500pt;}
.h12_c00050{height:71.896198pt;}
.h5_c00050{height:77.415599pt;}
.h11_c00050{height:80.151302pt;}
.hf_c00050{height:82.935000pt;}
.h7_c00050{height:85.718698pt;}
.ha_c00050{height:88.454401pt;}
.h9_c00050{height:93.973802pt;}
.h15_c00050{height:96.757500pt;}
.h1f_c00050{height:105.060599pt;}
.h0_c00050{height:1347.066667pt;}
.h1_c00050{height:1347.333333pt;}
.w0_c00050{width:959.226667pt;}
.w1_c00050{width:959.333333pt;}
.x0_c00050{left:0.000000pt;}
.x20_c00050{left:152.826667pt;}
.x21_c00050{left:200.453333pt;}
.x4_c00050{left:208.893333pt;}
.x22_c00050{left:215.813333pt;}
.x3f_c00050{left:223.493333pt;}
.x34_c00050{left:228.866667pt;}
.xa_c00050{left:230.400000pt;}
.x44_c00050{left:233.466667pt;}
.x29_c00050{left:235.013333pt;}
.x1_c00050{left:249.600000pt;}
.x35_c00050{left:251.133333pt;}
.x11_c00050{left:268.800000pt;}
.x23_c00050{left:272.640000pt;}
.x2_c00050{left:281.853333pt;}
.x5_c00050{left:284.933333pt;}
.x12_c00050{left:294.146667pt;}
.x2a_c00050{left:305.666667pt;}
.x45_c00050{left:309.506667pt;}
.x13_c00050{left:317.946667pt;}
.x6_c00050{left:329.466667pt;}
.x24_c00050{left:334.080000pt;}
.x40_c00050{left:347.133333pt;}
.x36_c00050{left:355.586667pt;}
.x2b_c00050{left:360.186667pt;}
.x7_c00050{left:364.026667pt;}
.x14_c00050{left:369.413333pt;}
.x41_c00050{left:371.706667pt;}
.x2c_c00050{left:380.160000pt;}
.x15_c00050{left:384.773333pt;}
.x37_c00050{left:400.133333pt;}
.x16_c00050{left:403.973333pt;}
.x2d_c00050{left:411.653333pt;}
.x25_c00050{left:417.786667pt;}
.x46_c00050{left:421.626667pt;}
.xb_c00050{left:424.706667pt;}
.x38_c00050{left:430.853333pt;}
.x42_c00050{left:434.693333pt;}
.x3_c00050{left:452.346667pt;}
.x17_c00050{left:478.466667pt;}
.x2e_c00050{left:480.000000pt;}
.x47_c00050{left:490.746667pt;}
.x8_c00050{left:493.053333pt;}
.x18_c00050{left:501.506667pt;}
.x26_c00050{left:507.653333pt;}
.xc_c00050{left:509.186667pt;}
.x9_c00050{left:519.933333pt;}
.x2f_c00050{left:522.240000pt;}
.xd_c00050{left:526.080000pt;}
.x19_c00050{left:556.800000pt;}
.xe_c00050{left:566.013333pt;}
.x39_c00050{left:583.680000pt;}
.x30_c00050{left:598.266667pt;}
.xf_c00050{left:602.106667pt;}
.x1a_c00050{left:603.653333pt;}
.x3a_c00050{left:610.560000pt;}
.x27_c00050{left:615.173333pt;}
.x1b_c00050{left:635.906667pt;}
.x28_c00050{left:648.186667pt;}
.x31_c00050{left:653.573333pt;}
.x1c_c00050{left:661.253333pt;}
.x3b_c00050{left:670.466667pt;}
.x3c_c00050{left:683.520000pt;}
.x1d_c00050{left:698.880000pt;}
.x10_c00050{left:703.493333pt;}
.x4a_c00050{left:725.760000pt;}
.x48_c00050{left:730.373333pt;}
.x1e_c00050{left:731.906667pt;}
.x3d_c00050{left:750.333333pt;}
.x49_c00050{left:754.946667pt;}
.x32_c00050{left:778.746667pt;}
.x1f_c00050{left:785.666667pt;}
.x3e_c00050{left:798.720000pt;}
.x43_c00050{left:807.933333pt;}
.x33_c00050{left:824.066667pt;}
.x4b_c00050{left:920.066667pt;}
.x50_c00050{left:934.653333pt;}
.x4e_c00050{left:936.960000pt;}
.x4c_c00050{left:940.800000pt;}
.x4d_c00050{left:952.320000pt;}
.x4f_c00050{left:958.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_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_3dbb99fef27ac51f7da1254b.woff2')format("woff");}.ff1_c00051{font-family:ff1_c00051;line-height:1.109863;font-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_c00051{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);}
.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;}
.fs0_c00051{font-size:600.000000px;}
.y0_c00051{bottom:0.000000px;}
.y1_c00051{bottom:15.000000px;}
.h2_c00051{height:539.941406px;}
.h1_c00051{height:1507.500000px;}
.h0_c00051{height:1507.680000px;}
.w1_c00051{width:1059.000000px;}
.w0_c00051{width:1059.270000px;}
.x0_c00051{left:0.000000px;}
.x1_c00051{left:15.000000px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws0_c00051{word-spacing:0.000000pt;}
.fs0_c00051{font-size:533.333333pt;}
.y0_c00051{bottom:0.000000pt;}
.y1_c00051{bottom:13.333333pt;}
.h2_c00051{height:479.947917pt;}
.h1_c00051{height:1340.000000pt;}
.h0_c00051{height:1340.160000pt;}
.w1_c00051{width:941.333333pt;}
.w0_c00051{width:941.573333pt;}
.x0_c00051{left:0.000000pt;}
.x1_c00051{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00052;src:url('chunks/assets/font_8c67ab347d41b4c7eef4058c.woff2')format("woff");}.ff1_c00052{font-family:ff1_c00052;line-height:1.109863;font-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_c00052{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c00052{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m8_c00052{transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);}
.m9_c00052{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00052{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c00052{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c00052{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m3_c00052{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m6_c00052{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1_c00052{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.v0_c00052{vertical-align:0.000000px;}
.ls0_c00052{letter-spacing:0.000000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00052{word-spacing:0.000000px;}
.ws0_c00052{word-spacing:29.081100px;}
.fc0_c00052{color:transparent;}
.fsa_c00052{font-size:3.456000px;}
.fs0_c00052{font-size:6.000000px;}
.fs6_c00052{font-size:6.900000px;}
.fs1_c00052{font-size:10.380000px;}
.fs5_c00052{font-size:17.280000px;}
.fs2_c00052{font-size:24.180000px;}
.fs3_c00052{font-size:27.660000px;}
.fs7_c00052{font-size:31.080000px;}
.fs8_c00052{font-size:34.560000px;}
.fs9_c00052{font-size:38.040000px;}
.fs4_c00052{font-size:51.840000px;}
.y0_c00052{bottom:0.000000px;}
.y9_c00052{bottom:1055.805000px;}
.ya_c00052{bottom:1061.850000px;}
.y7_c00052{bottom:1071.360000px;}
.y8_c00052{bottom:1074.810000px;}
.y5_c00052{bottom:1076.550000px;}
.y6_c00052{bottom:1085.190000px;}
.y4_c00052{bottom:1252.800000px;}
.y2_c00052{bottom:1290.810000px;}
.y1_c00052{bottom:1296.000000px;}
.y3_c00052{bottom:1354.755000px;}
.hc_c00052{height:3.110063px;}
.h2_c00052{height:5.399414px;}
.h8_c00052{height:6.209326px;}
.h3_c00052{height:9.340986px;}
.h7_c00052{height:15.550313px;}
.h4_c00052{height:21.759639px;}
.h5_c00052{height:24.891299px;}
.h9_c00052{height:27.968965px;}
.ha_c00052{height:31.100625px;}
.hb_c00052{height:34.232285px;}
.h6_c00052{height:46.650937px;}
.h0_c00052{height:1515.450000px;}
.h1_c00052{height:1515.750000px;}
.w0_c00052{width:1079.130000px;}
.w1_c00052{width:1079.250000px;}
.x0_c00052{left:0.000000px;}
.x2_c00052{left:884.730000px;}
.x3_c00052{left:909.795000px;}
.x8_c00052{left:1026.435000px;}
.x4_c00052{left:1029.030000px;}
.x1_c00052{left:1032.480000px;}
.x6_c00052{left:1035.930000px;}
.x7_c00052{left:1048.890000px;}
.x5_c00052{left:1054.950000px;}
.x9_c00052{left:1063.590000px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls0_c00052{letter-spacing:0.000000pt;}
.ws1_c00052{word-spacing:0.000000pt;}
.ws0_c00052{word-spacing:25.849866pt;}
.fsa_c00052{font-size:3.072000pt;}
.fs0_c00052{font-size:5.333333pt;}
.fs6_c00052{font-size:6.133333pt;}
.fs1_c00052{font-size:9.226667pt;}
.fs5_c00052{font-size:15.360000pt;}
.fs2_c00052{font-size:21.493333pt;}
.fs3_c00052{font-size:24.586667pt;}
.fs7_c00052{font-size:27.626667pt;}
.fs8_c00052{font-size:30.720000pt;}
.fs9_c00052{font-size:33.813333pt;}
.fs4_c00052{font-size:46.080000pt;}
.y0_c00052{bottom:0.000000pt;}
.y9_c00052{bottom:938.493333pt;}
.ya_c00052{bottom:943.866667pt;}
.y7_c00052{bottom:952.320000pt;}
.y8_c00052{bottom:955.386667pt;}
.y5_c00052{bottom:956.933333pt;}
.y6_c00052{bottom:964.613333pt;}
.y4_c00052{bottom:1113.600000pt;}
.y2_c00052{bottom:1147.386667pt;}
.y1_c00052{bottom:1152.000000pt;}
.y3_c00052{bottom:1204.226667pt;}
.hc_c00052{height:2.764500pt;}
.h2_c00052{height:4.799479pt;}
.h8_c00052{height:5.519401pt;}
.h3_c00052{height:8.303099pt;}
.h7_c00052{height:13.822500pt;}
.h4_c00052{height:19.341901pt;}
.h5_c00052{height:22.125599pt;}
.h9_c00052{height:24.861302pt;}
.ha_c00052{height:27.645000pt;}
.hb_c00052{height:30.428698pt;}
.h6_c00052{height:41.467500pt;}
.h0_c00052{height:1347.066667pt;}
.h1_c00052{height:1347.333333pt;}
.w0_c00052{width:959.226667pt;}
.w1_c00052{width:959.333333pt;}
.x0_c00052{left:0.000000pt;}
.x2_c00052{left:786.426667pt;}
.x3_c00052{left:808.706667pt;}
.x8_c00052{left:912.386667pt;}
.x4_c00052{left:914.693333pt;}
.x1_c00052{left:917.760000pt;}
.x6_c00052{left:920.826667pt;}
.x7_c00052{left:932.346667pt;}
.x5_c00052{left:937.733333pt;}
.x9_c00052{left:945.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00053;src:url('chunks/assets/font_f0969dc6f370532758d7bea8.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.109863;font-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_c00053{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);}
.v0_c00053{vertical-align:0.000000px;}
.ls0_c00053{letter-spacing:0.000000px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00053{word-spacing:0.000000px;}
.fc0_c00053{color:transparent;}
.fs0_c00053{font-size:600.000000px;}
.y0_c00053{bottom:0.000000px;}
.y1_c00053{bottom:15.000000px;}
.h2_c00053{height:539.941406px;}
.h1_c00053{height:1507.500000px;}
.h0_c00053{height:1507.680000px;}
.w1_c00053{width:1059.000000px;}
.w0_c00053{width:1059.270000px;}
.x0_c00053{left:0.000000px;}
.x1_c00053{left:15.000000px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ws0_c00053{word-spacing:0.000000pt;}
.fs0_c00053{font-size:533.333333pt;}
.y0_c00053{bottom:0.000000pt;}
.y1_c00053{bottom:13.333333pt;}
.h2_c00053{height:479.947917pt;}
.h1_c00053{height:1340.000000pt;}
.h0_c00053{height:1340.160000pt;}
.w1_c00053{width:941.333333pt;}
.w0_c00053{width:941.573333pt;}
.x0_c00053{left:0.000000pt;}
.x1_c00053{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4243f0345913bf620e71a3a0.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.109863;font-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_c00054{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);}
.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;}
.fs0_c00054{font-size:600.000000px;}
.y0_c00054{bottom:0.000000px;}
.y1_c00054{bottom:15.000000px;}
.h2_c00054{height:539.941406px;}
.h0_c00054{height:1515.450000px;}
.h1_c00054{height:1515.750000px;}
.w0_c00054{width:1079.130000px;}
.w1_c00054{width:1079.250000px;}
.x0_c00054{left:0.000000px;}
.x1_c00054{left:15.000000px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ws0_c00054{word-spacing:0.000000pt;}
.fs0_c00054{font-size:533.333333pt;}
.y0_c00054{bottom:0.000000pt;}
.y1_c00054{bottom:13.333333pt;}
.h2_c00054{height:479.947917pt;}
.h0_c00054{height:1347.066667pt;}
.h1_c00054{height:1347.333333pt;}
.w0_c00054{width:959.226667pt;}
.w1_c00054{width:959.333333pt;}
.x0_c00054{left:0.000000pt;}
.x1_c00054{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00055;src:url('chunks/assets/font_8729de75ab6a6c54df139e03.woff2')format("woff");}.ff1_c00055{font-family:ff1_c00055;line-height:1.109863;font-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_c00055{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c00055{transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);}
.m6_c00055{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf_c00055{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);}
.mb_c00055{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.md_c00055{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);}
.ma_c00055{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);}
.m1_c00055{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);}
.m2_c00055{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00055{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);}
.m4_c00055{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);}
.mc_c00055{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me_c00055{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m10_c00055{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m0_c00055{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m9_c00055{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m7_c00055{transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls0_c00055{letter-spacing:0.000000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00055{word-spacing:0.000000px;}
.fc0_c00055{color:transparent;}
.fs2_c00055{font-size:6.900000px;}
.fs9_c00055{font-size:10.380000px;}
.fs8_c00055{font-size:13.800000px;}
.fs5_c00055{font-size:17.280000px;}
.fs1_c00055{font-size:20.760000px;}
.fs0_c00055{font-size:27.660000px;}
.fs4_c00055{font-size:31.080000px;}
.fs6_c00055{font-size:34.560000px;}
.fs3_c00055{font-size:38.040000px;}
.fsa_c00055{font-size:41.460000px;}
.fs7_c00055{font-size:48.360000px;}
.fsb_c00055{font-size:51.840000px;}
.y0_c00055{bottom:0.000000px;}
.y12_c00055{bottom:464.835000px;}
.y11_c00055{bottom:467.430000px;}
.yf_c00055{bottom:481.245000px;}
.y10_c00055{bottom:485.565000px;}
.ye_c00055{bottom:493.350000px;}
.yc_c00055{bottom:497.670000px;}
.yd_c00055{bottom:500.250000px;}
.ya_c00055{bottom:508.035000px;}
.yb_c00055{bottom:510.630000px;}
.y9_c00055{bottom:522.720000px;}
.y8_c00055{bottom:724.890000px;}
.y7_c00055{bottom:805.245000px;}
.y6_c00055{bottom:807.840000px;}
.y5_c00055{bottom:1048.890000px;}
.y4_c00055{bottom:1417.830000px;}
.y1_c00055{bottom:1418.685000px;}
.y2_c00055{bottom:1424.730000px;}
.y3_c00055{bottom:1426.470000px;}
.h4_c00055{height:6.209326px;}
.hb_c00055{height:9.340986px;}
.ha_c00055{height:12.418652px;}
.h7_c00055{height:15.550313px;}
.h3_c00055{height:18.681973px;}
.h2_c00055{height:24.891299px;}
.h6_c00055{height:27.968965px;}
.h8_c00055{height:31.100625px;}
.h5_c00055{height:34.232285px;}
.hc_c00055{height:37.309951px;}
.h9_c00055{height:43.519277px;}
.hd_c00055{height:46.650937px;}
.h1_c00055{height:1507.500000px;}
.h0_c00055{height:1507.680000px;}
.w1_c00055{width:1059.000000px;}
.w0_c00055{width:1059.270000px;}
.x0_c00055{left:0.000000px;}
.xb_c00055{left:11.235000px;}
.x9_c00055{left:19.005000px;}
.xd_c00055{left:20.730000px;}
.xa_c00055{left:25.050000px;}
.x1_c00055{left:27.645000px;}
.xc_c00055{left:38.880000px;}
.x8_c00055{left:56.160000px;}
.x6_c00055{left:114.915000px;}
.x7_c00055{left:131.325000px;}
.x5_c00055{left:152.070000px;}
.x2_c00055{left:168.480000px;}
.x3_c00055{left:190.080000px;}
.x4_c00055{left:208.230000px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws0_c00055{word-spacing:0.000000pt;}
.fs2_c00055{font-size:6.133333pt;}
.fs9_c00055{font-size:9.226667pt;}
.fs8_c00055{font-size:12.266667pt;}
.fs5_c00055{font-size:15.360000pt;}
.fs1_c00055{font-size:18.453333pt;}
.fs0_c00055{font-size:24.586667pt;}
.fs4_c00055{font-size:27.626667pt;}
.fs6_c00055{font-size:30.720000pt;}
.fs3_c00055{font-size:33.813333pt;}
.fsa_c00055{font-size:36.853333pt;}
.fs7_c00055{font-size:42.986667pt;}
.fsb_c00055{font-size:46.080000pt;}
.y0_c00055{bottom:0.000000pt;}
.y12_c00055{bottom:413.186667pt;}
.y11_c00055{bottom:415.493333pt;}
.yf_c00055{bottom:427.773333pt;}
.y10_c00055{bottom:431.613333pt;}
.ye_c00055{bottom:438.533333pt;}
.yc_c00055{bottom:442.373333pt;}
.yd_c00055{bottom:444.666667pt;}
.ya_c00055{bottom:451.586667pt;}
.yb_c00055{bottom:453.893333pt;}
.y9_c00055{bottom:464.640000pt;}
.y8_c00055{bottom:644.346667pt;}
.y7_c00055{bottom:715.773333pt;}
.y6_c00055{bottom:718.080000pt;}
.y5_c00055{bottom:932.346667pt;}
.y4_c00055{bottom:1260.293333pt;}
.y1_c00055{bottom:1261.053333pt;}
.y2_c00055{bottom:1266.426667pt;}
.y3_c00055{bottom:1267.973333pt;}
.h4_c00055{height:5.519401pt;}
.hb_c00055{height:8.303099pt;}
.ha_c00055{height:11.038802pt;}
.h7_c00055{height:13.822500pt;}
.h3_c00055{height:16.606198pt;}
.h2_c00055{height:22.125599pt;}
.h6_c00055{height:24.861302pt;}
.h8_c00055{height:27.645000pt;}
.h5_c00055{height:30.428698pt;}
.hc_c00055{height:33.164401pt;}
.h9_c00055{height:38.683802pt;}
.hd_c00055{height:41.467500pt;}
.h1_c00055{height:1340.000000pt;}
.h0_c00055{height:1340.160000pt;}
.w1_c00055{width:941.333333pt;}
.w0_c00055{width:941.573333pt;}
.x0_c00055{left:0.000000pt;}
.xb_c00055{left:9.986667pt;}
.x9_c00055{left:16.893333pt;}
.xd_c00055{left:18.426667pt;}
.xa_c00055{left:22.266667pt;}
.x1_c00055{left:24.573333pt;}
.xc_c00055{left:34.560000pt;}
.x8_c00055{left:49.920000pt;}
.x6_c00055{left:102.146667pt;}
.x7_c00055{left:116.733333pt;}
.x5_c00055{left:135.173333pt;}
.x2_c00055{left:149.760000pt;}
.x3_c00055{left:168.960000pt;}
.x4_c00055{left:185.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c8f64d76bd735d500b148d5.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.109863;font-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_c00056{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1fe_c00056{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);}
.m1de_c00056{transform:matrix(0.052625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052625,0.000000,0.000000,0.250000,0,0);}
.m151_c00056{transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);}
.m200_c00056{transform:matrix(0.067300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067300,0.000000,0.000000,0.250000,0,0);}
.m18_c00056{transform:matrix(0.068375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068375,0.000000,0.000000,0.250000,0,0);}
.m101_c00056{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00056{transform:matrix(0.084225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084225,0.000000,0.000000,0.250000,0,0);}
.m1e0_c00056{transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00056{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m13b_c00056{transform:matrix(0.091575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091575,0.000000,0.000000,0.250000,0,0);}
.ma3_c00056{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);}
.m213_c00056{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.m1fd_c00056{transform:matrix(0.098325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098325,0.000000,0.000000,0.250000,0,0);}
.m1d0_c00056{transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);}
.m223_c00056{transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);}
.m181_c00056{transform:matrix(0.107550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107550,0.000000,0.000000,0.250000,0,0);}
.m185_c00056{transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);}
.m1e3_c00056{transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);}
.m1e1_c00056{transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);}
.m177_c00056{transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);}
.m48_c00056{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m98_c00056{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);}
.m202_c00056{transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);}
.m214_c00056{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m7b_c00056{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m57_c00056{transform:matrix(0.114325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114325,0.000000,0.000000,0.250000,0,0);}
.m14c_c00056{transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);}
.m1df_c00056{transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);}
.m203_c00056{transform:matrix(0.116275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116275,0.000000,0.000000,0.250000,0,0);}
.m1f6_c00056{transform:matrix(0.117150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117150,0.000000,0.000000,0.250000,0,0);}
.m117_c00056{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);}
.mb6_c00056{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.m107_c00056{transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);}
.m240_c00056{transform:matrix(0.118600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118600,0.000000,0.000000,0.250000,0,0);}
.mcd_c00056{transform:matrix(0.118900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118900,0.000000,0.000000,0.250000,0,0);}
.me6_c00056{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00056{transform:matrix(0.120025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120025,0.000000,0.000000,0.250000,0,0);}
.m19b_c00056{transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);}
.m127_c00056{transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);}
.m103_c00056{transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);}
.m1dd_c00056{transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);}
.m1_c00056{transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00056{transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);}
.m70_c00056{transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);}
.m1db_c00056{transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);}
.m172_c00056{transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);}
.m12e_c00056{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m156_c00056{transform:matrix(0.125325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125325,0.000000,0.000000,0.250000,0,0);}
.m1da_c00056{transform:matrix(0.125775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125775,0.000000,0.000000,0.250000,0,0);}
.m158_c00056{transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);}
.m61_c00056{transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);}
.m201_c00056{transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);}
.m1ff_c00056{transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);}
.m244_c00056{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m21f_c00056{transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);}
.m7_c00056{transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);}
.m9a_c00056{transform:matrix(0.130925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130925,0.000000,0.000000,0.250000,0,0);}
.m23f_c00056{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);}
.m1d1_c00056{transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00056{transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);}
.md4_c00056{transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);}
.m62_c00056{transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);}
.m211_c00056{transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);}
.m145_c00056{transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);}
.mff_c00056{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.mda_c00056{transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);}
.m136_c00056{transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);}
.mea_c00056{transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);}
.mb3_c00056{transform:matrix(0.135975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135975,0.000000,0.000000,0.250000,0,0);}
.m13a_c00056{transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00056{transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);}
.m1f3_c00056{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m1d2_c00056{transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);}
.m24_c00056{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m1d9_c00056{transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00056{transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);}
.m235_c00056{transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);}
.m55_c00056{transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);}
.m9_c00056{transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);}
.m149_c00056{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.md_c00056{transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);}
.m81_c00056{transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);}
.m13c_c00056{transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);}
.m1fc_c00056{transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);}
.me7_c00056{transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);}
.m1c3_c00056{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m5b_c00056{transform:matrix(0.143125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143125,0.000000,0.000000,0.250000,0,0);}
.mdb_c00056{transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);}
.m28_c00056{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m199_c00056{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);}
.m14b_c00056{transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);}
.m131_c00056{transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);}
.m1cf_c00056{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);}
.m19c_c00056{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);}
.m17f_c00056{transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);}
.m241_c00056{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.md0_c00056{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m80_c00056{transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);}
.mf_c00056{transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);}
.m125_c00056{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);}
.m1ca_c00056{transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);}
.m14a_c00056{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m14_c00056{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m14d_c00056{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.m10_c00056{transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);}
.m2e_c00056{transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);}
.m209_c00056{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m210_c00056{transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);}
.m20a_c00056{transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);}
.m184_c00056{transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);}
.m219_c00056{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);}
.m21a_c00056{transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);}
.m126_c00056{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.mce_c00056{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);}
.md8_c00056{transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);}
.m11f_c00056{transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);}
.m12f_c00056{transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);}
.m5d_c00056{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.m3d_c00056{transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00056{transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);}
.mfe_c00056{transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00056{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00056{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);}
.m17e_c00056{transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);}
.m18b_c00056{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m13d_c00056{transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);}
.m1cc_c00056{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m77_c00056{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.mab_c00056{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.mcc_c00056{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.m1ee_c00056{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m60_c00056{transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);}
.maa_c00056{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);}
.m1b6_c00056{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.m191_c00056{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m5f_c00056{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m19a_c00056{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.m102_c00056{transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);}
.m1b9_c00056{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m215_c00056{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);}
.m246_c00056{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.m1d4_c00056{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);}
.ma_c00056{transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);}
.m22a_c00056{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);}
.m12a_c00056{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m1e6_c00056{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00056{transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);}
.m147_c00056{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.m11e_c00056{transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);}
.mf4_c00056{transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);}
.m1dc_c00056{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m26_c00056{transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);}
.m196_c00056{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);}
.m1f9_c00056{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);}
.m144_c00056{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m167_c00056{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.m157_c00056{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.m56_c00056{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m188_c00056{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);}
.m128_c00056{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m129_c00056{transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);}
.m206_c00056{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.m59_c00056{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.me_c00056{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.mf7_c00056{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m106_c00056{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m1cb_c00056{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m1d6_c00056{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m109_c00056{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);}
.m226_c00056{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mb8_c00056{transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);}
.m198_c00056{transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00056{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.m10a_c00056{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00056{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.m1e2_c00056{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m22f_c00056{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.mc9_c00056{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);}
.m176_c00056{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m64_c00056{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m222_c00056{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00056{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m20d_c00056{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.m175_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);}
.m14e_c00056{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);}
.mb9_c00056{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.m113_c00056{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);}
.mfd_c00056{transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);}
.m1c2_c00056{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m43_c00056{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00056{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m12d_c00056{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.m11d_c00056{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m218_c00056{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);}
.md1_c00056{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.mc6_c00056{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m100_c00056{transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);}
.m16e_c00056{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m108_c00056{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m53_c00056{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);}
.m178_c00056{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.mfc_c00056{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m1d3_c00056{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);}
.m238_c00056{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m75_c00056{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);}
.m23b_c00056{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);}
.m52_c00056{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);}
.m227_c00056{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m143_c00056{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);}
.m233_c00056{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.md6_c00056{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m165_c00056{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);}
.m153_c00056{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);}
.m7e_c00056{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.m193_c00056{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);}
.m242_c00056{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.mfa_c00056{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);}
.m146_c00056{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.maf_c00056{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.m25_c00056{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);}
.m15d_c00056{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.ma2_c00056{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.m22c_c00056{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.mfb_c00056{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);}
.m1a7_c00056{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.md3_c00056{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);}
.m1e8_c00056{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);}
.m228_c00056{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m243_c00056{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);}
.m208_c00056{transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);}
.m1ba_c00056{transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);}
.m1d5_c00056{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.m1cd_c00056{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);}
.m84_c00056{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);}
.m17_c00056{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m9c_c00056{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.m10d_c00056{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);}
.m51_c00056{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);}
.mbf_c00056{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m4f_c00056{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m231_c00056{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.mb2_c00056{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);}
.m23e_c00056{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m17d_c00056{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);}
.m1a4_c00056{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mbb_c00056{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1af_c00056{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);}
.m205_c00056{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);}
.m1e7_c00056{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.ma1_c00056{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.m6a_c00056{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m12_c00056{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m1e9_c00056{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m190_c00056{transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);}
.md5_c00056{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);}
.mee_c00056{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);}
.med_c00056{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m44_c00056{transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);}
.mb_c00056{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.m124_c00056{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m220_c00056{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m19d_c00056{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);}
.m169_c00056{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m23d_c00056{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.mad_c00056{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);}
.m14f_c00056{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);}
.md9_c00056{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m180_c00056{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.mae_c00056{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.mdc_c00056{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m192_c00056{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);}
.m1b3_c00056{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);}
.m10c_c00056{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);}
.m232_c00056{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);}
.m20b_c00056{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);}
.m42_c00056{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m182_c00056{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);}
.m141_c00056{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.m20f_c00056{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m15e_c00056{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.m63_c00056{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);}
.m17c_c00056{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.mb5_c00056{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);}
.m15f_c00056{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);}
.m17a_c00056{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m12b_c00056{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);}
.me2_c00056{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);}
.m173_c00056{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);}
.m1f0_c00056{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);}
.m23c_c00056{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);}
.m155_c00056{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.m166_c00056{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.m11a_c00056{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m40_c00056{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);}
.m217_c00056{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m21c_c00056{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m216_c00056{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.m1fb_c00056{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);}
.m225_c00056{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);}
.mcf_c00056{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);}
.m36_c00056{transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);}
.m236_c00056{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.m5c_c00056{transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);}
.m1d7_c00056{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.m186_c00056{transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);}
.m54_c00056{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);}
.m17b_c00056{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_c00056{transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);}
.m179_c00056{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.meb_c00056{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);}
.m112_c00056{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m163_c00056{transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);}
.ma8_c00056{transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);}
.m1ef_c00056{transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);}
.m15_c00056{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m10b_c00056{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);}
.m111_c00056{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);}
.m6d_c00056{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);}
.m97_c00056{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.m150_c00056{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.m11c_c00056{transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);}
.m8b_c00056{transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);}
.m1e5_c00056{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);}
.me5_c00056{transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);}
.m65_c00056{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);}
.m18d_c00056{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m195_c00056{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);}
.m1bf_c00056{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);}
.m120_c00056{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.mf5_c00056{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);}
.m1f4_c00056{transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);}
.m4c_c00056{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m104_c00056{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);}
.m1c6_c00056{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);}
.m212_c00056{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m27_c00056{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);}
.m230_c00056{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m154_c00056{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);}
.m152_c00056{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);}
.m123_c00056{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);}
.mf9_c00056{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);}
.m21b_c00056{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.m20c_c00056{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);}
.m1d8_c00056{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.m18f_c00056{transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);}
.m73_c00056{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);}
.mf6_c00056{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);}
.m1ea_c00056{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m8a_c00056{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);}
.m3_c00056{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m140_c00056{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);}
.mb1_c00056{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);}
.mc4_c00056{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m10e_c00056{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);}
.m1a6_c00056{transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);}
.m7c_c00056{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);}
.m160_c00056{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);}
.m1a1_c00056{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);}
.m1c0_c00056{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);}
.mb0_c00056{transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);}
.m105_c00056{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);}
.m1c8_c00056{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);}
.m148_c00056{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);}
.m221_c00056{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m234_c00056{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mca_c00056{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);}
.ma6_c00056{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m204_c00056{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);}
.m2d_c00056{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);}
.m34_c00056{transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);}
.m49_c00056{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);}
.m15a_c00056{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00056{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m91_c00056{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);}
.m168_c00056{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m138_c00056{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m1c1_c00056{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);}
.me1_c00056{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m133_c00056{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);}
.m31_c00056{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);}
.m1f1_c00056{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);}
.m8d_c00056{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);}
.m1f2_c00056{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);}
.mf1_c00056{transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);}
.mc8_c00056{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);}
.m1fa_c00056{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);}
.mf8_c00056{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);}
.m189_c00056{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);}
.m20e_c00056{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m130_c00056{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);}
.m47_c00056{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);}
.m1b8_c00056{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.md7_c00056{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);}
.m207_c00056{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);}
.m1f5_c00056{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);}
.m142_c00056{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m229_c00056{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);}
.m1eb_c00056{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.mc3_c00056{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.mcb_c00056{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m58_c00056{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);}
.m2c_c00056{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00056{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);}
.m85_c00056{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);}
.m69_c00056{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);}
.mc1_c00056{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);}
.m41_c00056{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m68_c00056{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c00056{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c00056{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);}
.m82_c00056{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me4_c00056{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);}
.m1e_c00056{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);}
.m67_c00056{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c00056{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);}
.m13_c00056{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00056{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00056{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);}
.m6e_c00056{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00056{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);}
.m2f_c00056{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);}
.m139_c00056{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00056{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00056{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);}
.m50_c00056{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00056{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m33_c00056{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);}
.m122_c00056{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00056{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c00056{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00056{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m194_c00056{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m164_c00056{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m161_c00056{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m21_c00056{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m22_c00056{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);}
.me9_c00056{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m32_c00056{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6_c00056{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00056{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m89_c00056{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);}
.m1c_c00056{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);}
.m16a_c00056{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00056{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m121_c00056{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);}
.m1a2_c00056{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00056{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mba_c00056{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m86_c00056{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m20_c00056{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c00056{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);}
.m4_c00056{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00056{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m15c_c00056{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);}
.m72_c00056{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00056{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m78_c00056{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);}
.m11b_c00056{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00056{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc_c00056{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00056{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m35_c00056{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m16b_c00056{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00056{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_c00056{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);}
.m7f_c00056{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m46_c00056{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);}
.m30_c00056{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m74_c00056{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m8_c00056{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);}
.m1bc_c00056{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00056{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m45_c00056{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m115_c00056{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00056{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m110_c00056{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m96_c00056{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m16_c00056{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);}
.m2a_c00056{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md2_c00056{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1bb_c00056{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m16f_c00056{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m76_c00056{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00056{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m37_c00056{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00056{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.me0_c00056{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m170_c00056{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00056{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m1c9_c00056{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);}
.m1c4_c00056{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m159_c00056{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m162_c00056{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.me8_c00056{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m99_c00056{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m18a_c00056{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);}
.mef_c00056{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);}
.m1ce_c00056{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m197_c00056{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);}
.m9b_c00056{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m174_c00056{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00056{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m88_c00056{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);}
.m13f_c00056{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1e4_c00056{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00056{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m92_c00056{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00056{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m114_c00056{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1c5_c00056{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m119_c00056{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m66_c00056{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m16c_c00056{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00056{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m39_c00056{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00056{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m94_c00056{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m21e_c00056{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00056{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00056{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m21d_c00056{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m1be_c00056{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00056{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00056{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m38_c00056{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m1f8_c00056{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m18e_c00056{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00056{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00056{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.mac_c00056{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);}
.m187_c00056{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.m15b_c00056{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m79_c00056{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.me3_c00056{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00056{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00056{transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.742500,0.000000,0.000000,0.250000,0,0);}
.m171_c00056{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m23a_c00056{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);}
.mde_c00056{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m1c7_c00056{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m87_c00056{transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);}
.m1f7_c00056{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m118_c00056{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.m18c_c00056{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m95_c00056{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00056{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m93_c00056{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00056{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m132_c00056{transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00056{transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);}
.m22d_c00056{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.m224_c00056{transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);}
.mec_c00056{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00056{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);}
.m16d_c00056{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.m237_c00056{transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);}
.m135_c00056{transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);}
.m183_c00056{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m239_c00056{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.m22e_c00056{transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00056{transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);}
.m90_c00056{transform:matrix(1.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040000,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00056{transform:matrix(1.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.067500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00056{transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);}
.m245_c00056{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m83_c00056{transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);}
.m134_c00056{transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00056{transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);}
.m71_c00056{transform:matrix(1.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.237500,0.000000,0.000000,0.250000,0,0);}
.m137_c00056{transform:matrix(1.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.340000,0.000000,0.000000,0.250000,0,0);}
.m1ec_c00056{transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);}
.m1ed_c00056{transform:matrix(1.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.592500,0.000000,0.000000,0.250000,0,0);}
.m29_c00056{transform:matrix(1.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.652500,0.000000,0.000000,0.250000,0,0);}
.m247_c00056{transform:matrix(1.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.667500,0.000000,0.000000,0.250000,0,0);}
.m19f_c00056{transform:matrix(1.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.695000,0.000000,0.000000,0.250000,0,0);}
.m116_c00056{transform:matrix(1.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.732500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00056{transform:matrix(2.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.102500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00056{transform:matrix(2.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.257500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00056{transform:matrix(2.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.502500,0.000000,0.000000,0.250000,0,0);}
.m22b_c00056{transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00056{transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00056{transform:matrix(3.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.277500,0.000000,0.000000,0.250000,0,0);}
.m19e_c00056{transform:matrix(7.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.632500,0.000000,0.000000,0.250000,0,0);}
.v2_c00056{vertical-align:-6.960000px;}
.v0_c00056{vertical-align:0.000000px;}
.v1_c00056{vertical-align:3.420000px;}
.v3_c00056{vertical-align:10.380000px;}
.ls2_c00056{letter-spacing:0.000000px;}
.ls0_c00056{letter-spacing:44.201400px;}
.ls1_c00056{letter-spacing:107.066688px;}
.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;}
}
.ws8_c00056{word-spacing:0.000000px;}
.ws2_c00056{word-spacing:1.154880px;}
.ws5_c00056{word-spacing:6.967609px;}
.ws3_c00056{word-spacing:9.522144px;}
.ws7_c00056{word-spacing:37.424160px;}
.ws1_c00056{word-spacing:40.805880px;}
.ws0_c00056{word-spacing:81.070507px;}
.ws4_c00056{word-spacing:115.806720px;}
.ws6_c00056{word-spacing:165.285840px;}
.fc0_c00056{color:transparent;}
.fs18_c00056{font-size:3.456000px;}
.fs1f_c00056{font-size:6.000000px;}
.fs2_c00056{font-size:6.900000px;}
.fs1a_c00056{font-size:10.380000px;}
.fs1b_c00056{font-size:13.800000px;}
.fs1d_c00056{font-size:17.280000px;}
.fs1c_c00056{font-size:20.760000px;}
.fs12_c00056{font-size:24.180000px;}
.fs17_c00056{font-size:27.660000px;}
.fs15_c00056{font-size:31.080000px;}
.fs0_c00056{font-size:34.560000px;}
.fs16_c00056{font-size:38.040000px;}
.fs19_c00056{font-size:41.460000px;}
.fs14_c00056{font-size:44.940000px;}
.fs13_c00056{font-size:48.360000px;}
.fsb_c00056{font-size:51.840000px;}
.fse_c00056{font-size:55.320000px;}
.fs3_c00056{font-size:58.740000px;}
.fs4_c00056{font-size:62.220000px;}
.fs5_c00056{font-size:65.640000px;}
.fs6_c00056{font-size:69.120000px;}
.fs10_c00056{font-size:72.600000px;}
.fsf_c00056{font-size:76.020000px;}
.fsc_c00056{font-size:79.500000px;}
.fsa_c00056{font-size:82.920000px;}
.fs1_c00056{font-size:86.400000px;}
.fs1e_c00056{font-size:89.880000px;}
.fsd_c00056{font-size:93.300000px;}
.fs7_c00056{font-size:96.780000px;}
.fs11_c00056{font-size:100.200000px;}
.fs9_c00056{font-size:103.680000px;}
.fs8_c00056{font-size:107.160000px;}
.fs20_c00056{font-size:110.580000px;}
.fs22_c00056{font-size:114.060000px;}
.fs21_c00056{font-size:124.440000px;}
.y0_c00056{bottom:0.000000px;}
.y29f_c00056{bottom:227.235000px;}
.y2a5_c00056{bottom:229.830000px;}
.y29e_c00056{bottom:230.685000px;}
.y2a4_c00056{bottom:231.555000px;}
.y2a3_c00056{bottom:232.410000px;}
.y2a2_c00056{bottom:233.280000px;}
.y2a6_c00056{bottom:234.150000px;}
.y2a0_c00056{bottom:235.005000px;}
.y298_c00056{bottom:235.875000px;}
.y2a1_c00056{bottom:242.790000px;}
.y299_c00056{bottom:244.515000px;}
.y297_c00056{bottom:245.370000px;}
.y29b_c00056{bottom:246.240000px;}
.y29d_c00056{bottom:248.835000px;}
.y29c_c00056{bottom:249.690000px;}
.y29a_c00056{bottom:250.560000px;}
.y291_c00056{bottom:253.155000px;}
.y28e_c00056{bottom:254.010000px;}
.y290_c00056{bottom:255.750000px;}
.y28d_c00056{bottom:256.605000px;}
.y28f_c00056{bottom:258.330000px;}
.y292_c00056{bottom:259.200000px;}
.y294_c00056{bottom:260.925000px;}
.y296_c00056{bottom:261.795000px;}
.y293_c00056{bottom:262.650000px;}
.y295_c00056{bottom:264.390000px;}
.y28b_c00056{bottom:270.435000px;}
.y28c_c00056{bottom:273.885000px;}
.y287_c00056{bottom:274.755000px;}
.y289_c00056{bottom:275.610000px;}
.y28a_c00056{bottom:276.480000px;}
.y288_c00056{bottom:277.350000px;}
.y281_c00056{bottom:278.205000px;}
.y282_c00056{bottom:279.075000px;}
.y286_c00056{bottom:283.395000px;}
.y283_c00056{bottom:285.990000px;}
.y284_c00056{bottom:286.845000px;}
.y285_c00056{bottom:288.570000px;}
.y27c_c00056{bottom:295.485000px;}
.y27a_c00056{bottom:296.355000px;}
.y279_c00056{bottom:297.210000px;}
.y27b_c00056{bottom:298.080000px;}
.y271_c00056{bottom:298.950000px;}
.y273_c00056{bottom:299.805000px;}
.y275_c00056{bottom:300.675000px;}
.y280_c00056{bottom:301.530000px;}
.y27d_c00056{bottom:302.400000px;}
.y27e_c00056{bottom:303.270000px;}
.y270_c00056{bottom:306.720000px;}
.y27f_c00056{bottom:308.445000px;}
.y278_c00056{bottom:309.315000px;}
.y26f_c00056{bottom:310.170000px;}
.y274_c00056{bottom:311.040000px;}
.y272_c00056{bottom:311.910000px;}
.y277_c00056{bottom:312.765000px;}
.y276_c00056{bottom:314.490000px;}
.y26c_c00056{bottom:315.360000px;}
.y268_c00056{bottom:316.230000px;}
.y26a_c00056{bottom:317.085000px;}
.y26b_c00056{bottom:319.680000px;}
.y269_c00056{bottom:320.550000px;}
.y26d_c00056{bottom:324.000000px;}
.y26e_c00056{bottom:325.725000px;}
.y261_c00056{bottom:331.770000px;}
.y263_c00056{bottom:332.640000px;}
.y266_c00056{bottom:334.365000px;}
.y265_c00056{bottom:335.235000px;}
.y25f_c00056{bottom:336.090000px;}
.y260_c00056{bottom:336.960000px;}
.y25e_c00056{bottom:339.555000px;}
.y267_c00056{bottom:340.410000px;}
.y262_c00056{bottom:341.280000px;}
.y264_c00056{bottom:342.150000px;}
.y258_c00056{bottom:355.110000px;}
.y256_c00056{bottom:356.835000px;}
.y25c_c00056{bottom:359.430000px;}
.y259_c00056{bottom:361.155000px;}
.y257_c00056{bottom:362.010000px;}
.y25b_c00056{bottom:363.750000px;}
.y25a_c00056{bottom:364.605000px;}
.y25d_c00056{bottom:367.200000px;}
.y24f_c00056{bottom:374.115000px;}
.y253_c00056{bottom:374.970000px;}
.y254_c00056{bottom:376.710000px;}
.y251_c00056{bottom:377.565000px;}
.y255_c00056{bottom:378.435000px;}
.y250_c00056{bottom:379.290000px;}
.y24e_c00056{bottom:381.030000px;}
.y252_c00056{bottom:381.885000px;}
.y24b_c00056{bottom:391.395000px;}
.y245_c00056{bottom:395.715000px;}
.y246_c00056{bottom:397.440000px;}
.y244_c00056{bottom:398.310000px;}
.y248_c00056{bottom:400.890000px;}
.y23d_c00056{bottom:401.760000px;}
.y247_c00056{bottom:402.630000px;}
.y249_c00056{bottom:403.485000px;}
.y24a_c00056{bottom:404.355000px;}
.y24d_c00056{bottom:407.805000px;}
.y23c_c00056{bottom:408.675000px;}
.y23f_c00056{bottom:409.530000px;}
.y237_c00056{bottom:411.270000px;}
.y241_c00056{bottom:412.125000px;}
.y24c_c00056{bottom:412.995000px;}
.y243_c00056{bottom:413.850000px;}
.y23e_c00056{bottom:414.720000px;}
.y242_c00056{bottom:415.590000px;}
.y240_c00056{bottom:416.445000px;}
.y236_c00056{bottom:417.315000px;}
.y239_c00056{bottom:418.170000px;}
.y235_c00056{bottom:419.040000px;}
.y23a_c00056{bottom:420.765000px;}
.y234_c00056{bottom:421.635000px;}
.y238_c00056{bottom:423.360000px;}
.y23b_c00056{bottom:427.680000px;}
.y22b_c00056{bottom:433.725000px;}
.y22c_c00056{bottom:434.595000px;}
.y22d_c00056{bottom:435.450000px;}
.y230_c00056{bottom:437.190000px;}
.y22f_c00056{bottom:438.045000px;}
.y22e_c00056{bottom:438.915000px;}
.y233_c00056{bottom:439.770000px;}
.y232_c00056{bottom:441.510000px;}
.y231_c00056{bottom:444.090000px;}
.y221_c00056{bottom:457.050000px;}
.y222_c00056{bottom:457.920000px;}
.y226_c00056{bottom:458.790000px;}
.y22a_c00056{bottom:461.370000px;}
.y223_c00056{bottom:463.965000px;}
.y224_c00056{bottom:464.835000px;}
.y229_c00056{bottom:465.690000px;}
.y228_c00056{bottom:467.430000px;}
.y225_c00056{bottom:468.285000px;}
.y227_c00056{bottom:469.155000px;}
.y21a_c00056{bottom:474.330000px;}
.y21c_c00056{bottom:475.200000px;}
.y21b_c00056{bottom:476.070000px;}
.y21f_c00056{bottom:478.650000px;}
.y21d_c00056{bottom:479.520000px;}
.y217_c00056{bottom:481.245000px;}
.y219_c00056{bottom:482.115000px;}
.y218_c00056{bottom:483.840000px;}
.y21e_c00056{bottom:485.565000px;}
.y220_c00056{bottom:487.290000px;}
.y216_c00056{bottom:494.205000px;}
.y212_c00056{bottom:498.525000px;}
.y211_c00056{bottom:500.250000px;}
.y214_c00056{bottom:502.845000px;}
.y209_c00056{bottom:503.715000px;}
.y213_c00056{bottom:504.570000px;}
.y210_c00056{bottom:508.035000px;}
.y215_c00056{bottom:510.630000px;}
.y20c_c00056{bottom:511.485000px;}
.y20d_c00056{bottom:512.355000px;}
.y20f_c00056{bottom:514.080000px;}
.y20b_c00056{bottom:514.950000px;}
.y20e_c00056{bottom:515.805000px;}
.y20a_c00056{bottom:516.675000px;}
.y1ff_c00056{bottom:518.400000px;}
.y206_c00056{bottom:519.270000px;}
.y202_c00056{bottom:520.125000px;}
.y1fe_c00056{bottom:520.995000px;}
.y201_c00056{bottom:522.720000px;}
.y200_c00056{bottom:523.590000px;}
.y204_c00056{bottom:524.445000px;}
.y203_c00056{bottom:525.315000px;}
.y205_c00056{bottom:526.170000px;}
.y208_c00056{bottom:527.040000px;}
.y1fd_c00056{bottom:529.635000px;}
.y207_c00056{bottom:530.490000px;}
.y1f3_c00056{bottom:532.230000px;}
.y1f2_c00056{bottom:533.085000px;}
.y1f4_c00056{bottom:533.955000px;}
.y1f9_c00056{bottom:534.810000px;}
.y1f8_c00056{bottom:537.405000px;}
.y1f6_c00056{bottom:538.275000px;}
.y1fa_c00056{bottom:540.000000px;}
.y1fb_c00056{bottom:540.870000px;}
.y1fc_c00056{bottom:541.725000px;}
.y1f7_c00056{bottom:544.320000px;}
.y1f5_c00056{bottom:545.190000px;}
.y1e9_c00056{bottom:550.365000px;}
.y1ea_c00056{bottom:552.090000px;}
.y1ef_c00056{bottom:552.960000px;}
.y1f1_c00056{bottom:553.830000px;}
.y1ed_c00056{bottom:555.555000px;}
.y1eb_c00056{bottom:556.410000px;}
.y1ec_c00056{bottom:557.280000px;}
.y1f0_c00056{bottom:558.150000px;}
.y1ee_c00056{bottom:559.005000px;}
.y1e3_c00056{bottom:559.875000px;}
.y1e5_c00056{bottom:560.730000px;}
.y1e4_c00056{bottom:561.600000px;}
.y1e1_c00056{bottom:563.325000px;}
.y1e2_c00056{bottom:564.195000px;}
.y1e0_c00056{bottom:565.050000px;}
.y1e7_c00056{bottom:567.645000px;}
.y1e8_c00056{bottom:570.240000px;}
.y1e6_c00056{bottom:572.835000px;}
.y1d9_c00056{bottom:574.560000px;}
.y1da_c00056{bottom:577.155000px;}
.y1dc_c00056{bottom:578.010000px;}
.y1dd_c00056{bottom:578.880000px;}
.y1de_c00056{bottom:579.750000px;}
.y1df_c00056{bottom:580.605000px;}
.y1db_c00056{bottom:583.200000px;}
.y1d1_c00056{bottom:585.795000px;}
.y1d3_c00056{bottom:586.650000px;}
.y1d7_c00056{bottom:589.245000px;}
.y1d0_c00056{bottom:590.115000px;}
.y1d2_c00056{bottom:591.840000px;}
.y1d5_c00056{bottom:592.710000px;}
.y1d6_c00056{bottom:594.435000px;}
.y1d8_c00056{bottom:597.030000px;}
.y2b4_c00056{bottom:599.610000px;}
.y2b3_c00056{bottom:600.480000px;}
.y1d4_c00056{bottom:604.800000px;}
.y1c7_c00056{bottom:606.525000px;}
.y1c8_c00056{bottom:607.395000px;}
.y1c9_c00056{bottom:612.570000px;}
.y1ca_c00056{bottom:614.310000px;}
.y1ce_c00056{bottom:615.165000px;}
.y1cc_c00056{bottom:616.035000px;}
.y1cf_c00056{bottom:616.890000px;}
.y1cd_c00056{bottom:617.760000px;}
.y1cb_c00056{bottom:618.630000px;}
.y1c1_c00056{bottom:619.485000px;}
.y1bf_c00056{bottom:620.355000px;}
.y1bc_c00056{bottom:621.210000px;}
.y1bd_c00056{bottom:622.950000px;}
.y1c4_c00056{bottom:623.805000px;}
.y1bb_c00056{bottom:626.400000px;}
.y1b5_c00056{bottom:627.270000px;}
.y1b8_c00056{bottom:628.125000px;}
.y1be_c00056{bottom:628.995000px;}
.y1c0_c00056{bottom:630.720000px;}
.y1c2_c00056{bottom:631.590000px;}
.y1c3_c00056{bottom:633.315000px;}
.y1b7_c00056{bottom:635.040000px;}
.y1c6_c00056{bottom:635.910000px;}
.y1c5_c00056{bottom:636.765000px;}
.y1b4_c00056{bottom:637.635000px;}
.y1b6_c00056{bottom:639.360000px;}
.y1b9_c00056{bottom:641.955000px;}
.y1ad_c00056{bottom:642.810000px;}
.y1ac_c00056{bottom:643.680000px;}
.y1ba_c00056{bottom:644.550000px;}
.y1ae_c00056{bottom:645.405000px;}
.y1af_c00056{bottom:646.275000px;}
.y1b0_c00056{bottom:648.870000px;}
.y1b3_c00056{bottom:649.725000px;}
.y1b1_c00056{bottom:653.190000px;}
.y2b2_c00056{bottom:654.045000px;}
.y1b2_c00056{bottom:657.510000px;}
.y1a5_c00056{bottom:665.280000px;}
.y1a7_c00056{bottom:667.005000px;}
.y19b_c00056{bottom:667.875000px;}
.y1a4_c00056{bottom:668.730000px;}
.y1a9_c00056{bottom:669.600000px;}
.y1a8_c00056{bottom:670.470000px;}
.y1a6_c00056{bottom:671.325000px;}
.y1a3_c00056{bottom:672.195000px;}
.y1aa_c00056{bottom:675.645000px;}
.y1ab_c00056{bottom:676.515000px;}
.y19d_c00056{bottom:677.370000px;}
.y19e_c00056{bottom:678.240000px;}
.y1a0_c00056{bottom:679.965000px;}
.y1a2_c00056{bottom:680.835000px;}
.y1a1_c00056{bottom:681.690000px;}
.y193_c00056{bottom:682.560000px;}
.y195_c00056{bottom:683.430000px;}
.y19f_c00056{bottom:684.285000px;}
.y19c_c00056{bottom:686.010000px;}
.y191_c00056{bottom:687.750000px;}
.y192_c00056{bottom:688.605000px;}
.y196_c00056{bottom:689.475000px;}
.y194_c00056{bottom:691.200000px;}
.y199_c00056{bottom:692.070000px;}
.y19a_c00056{bottom:692.925000px;}
.y197_c00056{bottom:693.795000px;}
.y2b1_c00056{bottom:694.650000px;}
.y198_c00056{bottom:696.390000px;}
.y18e_c00056{bottom:697.245000px;}
.y18a_c00056{bottom:702.435000px;}
.y18c_c00056{bottom:703.290000px;}
.y18b_c00056{bottom:705.030000px;}
.y18f_c00056{bottom:705.885000px;}
.y189_c00056{bottom:706.755000px;}
.y180_c00056{bottom:707.610000px;}
.y186_c00056{bottom:709.350000px;}
.y18d_c00056{bottom:710.205000px;}
.y2b0_c00056{bottom:711.930000px;}
.y190_c00056{bottom:713.670000px;}
.y183_c00056{bottom:714.525000px;}
.y182_c00056{bottom:715.395000px;}
.y184_c00056{bottom:716.250000px;}
.y188_c00056{bottom:718.845000px;}
.y181_c00056{bottom:719.715000px;}
.y185_c00056{bottom:720.570000px;}
.y187_c00056{bottom:721.440000px;}
.y178_c00056{bottom:723.165000px;}
.y179_c00056{bottom:725.760000px;}
.y17d_c00056{bottom:727.485000px;}
.y17f_c00056{bottom:729.210000px;}
.y17a_c00056{bottom:730.080000px;}
.y17e_c00056{bottom:730.950000px;}
.y17c_c00056{bottom:731.805000px;}
.y17b_c00056{bottom:732.675000px;}
.y16f_c00056{bottom:736.995000px;}
.y172_c00056{bottom:739.590000px;}
.y173_c00056{bottom:740.445000px;}
.y175_c00056{bottom:741.315000px;}
.y170_c00056{bottom:743.040000px;}
.y171_c00056{bottom:743.910000px;}
.y176_c00056{bottom:744.765000px;}
.y174_c00056{bottom:745.635000px;}
.y177_c00056{bottom:746.490000px;}
.y167_c00056{bottom:763.770000px;}
.y169_c00056{bottom:764.640000px;}
.y16c_c00056{bottom:765.510000px;}
.y16a_c00056{bottom:766.365000px;}
.y168_c00056{bottom:768.090000px;}
.y16b_c00056{bottom:769.830000px;}
.y16d_c00056{bottom:771.555000px;}
.y16e_c00056{bottom:776.730000px;}
.y15e_c00056{bottom:782.790000px;}
.y160_c00056{bottom:783.645000px;}
.y15c_c00056{bottom:784.515000px;}
.y15b_c00056{bottom:787.110000px;}
.y15f_c00056{bottom:788.835000px;}
.y163_c00056{bottom:790.560000px;}
.y165_c00056{bottom:792.285000px;}
.y162_c00056{bottom:793.155000px;}
.y161_c00056{bottom:794.010000px;}
.y164_c00056{bottom:795.750000px;}
.y166_c00056{bottom:797.475000px;}
.y15d_c00056{bottom:800.925000px;}
.y152_c00056{bottom:801.795000px;}
.y155_c00056{bottom:803.520000px;}
.y157_c00056{bottom:805.245000px;}
.y158_c00056{bottom:806.115000px;}
.y153_c00056{bottom:806.970000px;}
.y154_c00056{bottom:807.840000px;}
.y159_c00056{bottom:808.710000px;}
.y156_c00056{bottom:811.290000px;}
.y14e_c00056{bottom:820.800000px;}
.y15a_c00056{bottom:821.670000px;}
.y14c_c00056{bottom:823.395000px;}
.y148_c00056{bottom:824.250000px;}
.y149_c00056{bottom:825.120000px;}
.y14b_c00056{bottom:825.990000px;}
.y14a_c00056{bottom:827.715000px;}
.y14d_c00056{bottom:828.570000px;}
.y150_c00056{bottom:831.165000px;}
.y151_c00056{bottom:832.035000px;}
.y14f_c00056{bottom:832.890000px;}
.y147_c00056{bottom:837.210000px;}
.y13f_c00056{bottom:838.950000px;}
.y145_c00056{bottom:840.675000px;}
.y140_c00056{bottom:841.530000px;}
.y144_c00056{bottom:843.270000px;}
.y143_c00056{bottom:844.125000px;}
.y142_c00056{bottom:844.995000px;}
.y146_c00056{bottom:845.850000px;}
.y13e_c00056{bottom:847.590000px;}
.y141_c00056{bottom:850.170000px;}
.y138_c00056{bottom:863.130000px;}
.y137_c00056{bottom:864.000000px;}
.y13a_c00056{bottom:864.870000px;}
.y136_c00056{bottom:867.450000px;}
.y135_c00056{bottom:868.320000px;}
.y134_c00056{bottom:869.190000px;}
.y139_c00056{bottom:870.045000px;}
.y13b_c00056{bottom:871.770000px;}
.y13c_c00056{bottom:872.640000px;}
.y13d_c00056{bottom:878.685000px;}
.y12e_c00056{bottom:883.005000px;}
.y130_c00056{bottom:884.730000px;}
.y12f_c00056{bottom:888.195000px;}
.y12d_c00056{bottom:889.050000px;}
.y131_c00056{bottom:889.920000px;}
.y132_c00056{bottom:890.790000px;}
.y133_c00056{bottom:896.835000px;}
.y127_c00056{bottom:902.880000px;}
.y129_c00056{bottom:903.750000px;}
.y125_c00056{bottom:907.200000px;}
.y128_c00056{bottom:908.070000px;}
.y126_c00056{bottom:908.925000px;}
.y11d_c00056{bottom:909.795000px;}
.y12a_c00056{bottom:910.650000px;}
.y12c_c00056{bottom:911.520000px;}
.y12b_c00056{bottom:914.970000px;}
.y122_c00056{bottom:916.710000px;}
.y124_c00056{bottom:918.435000px;}
.y11e_c00056{bottom:919.290000px;}
.y11f_c00056{bottom:920.160000px;}
.y11c_c00056{bottom:921.030000px;}
.y120_c00056{bottom:921.885000px;}
.y123_c00056{bottom:922.755000px;}
.y112_c00056{bottom:923.610000px;}
.y114_c00056{bottom:924.480000px;}
.y111_c00056{bottom:925.350000px;}
.y121_c00056{bottom:926.205000px;}
.y116_c00056{bottom:927.930000px;}
.y117_c00056{bottom:928.800000px;}
.y11a_c00056{bottom:929.670000px;}
.y113_c00056{bottom:930.525000px;}
.y119_c00056{bottom:931.395000px;}
.y118_c00056{bottom:932.250000px;}
.y11b_c00056{bottom:933.120000px;}
.y115_c00056{bottom:935.715000px;}
.y105_c00056{bottom:938.310000px;}
.y108_c00056{bottom:940.035000px;}
.y107_c00056{bottom:940.890000px;}
.y103_c00056{bottom:941.760000px;}
.y10f_c00056{bottom:942.630000px;}
.y10a_c00056{bottom:943.485000px;}
.y10e_c00056{bottom:944.355000px;}
.y10b_c00056{bottom:945.210000px;}
.y10d_c00056{bottom:946.080000px;}
.y10c_c00056{bottom:946.950000px;}
.y104_c00056{bottom:947.805000px;}
.y106_c00056{bottom:949.530000px;}
.y109_c00056{bottom:951.270000px;}
.y110_c00056{bottom:959.040000px;}
.yfa_c00056{bottom:965.955000px;}
.yfd_c00056{bottom:966.810000px;}
.yff_c00056{bottom:968.550000px;}
.y101_c00056{bottom:969.405000px;}
.yfb_c00056{bottom:971.130000px;}
.yfc_c00056{bottom:972.000000px;}
.y100_c00056{bottom:972.870000px;}
.y102_c00056{bottom:973.725000px;}
.yfe_c00056{bottom:981.510000px;}
.yf7_c00056{bottom:986.685000px;}
.yf1_c00056{bottom:987.555000px;}
.yf2_c00056{bottom:989.280000px;}
.yf3_c00056{bottom:990.150000px;}
.yf4_c00056{bottom:991.005000px;}
.yf5_c00056{bottom:991.875000px;}
.yf6_c00056{bottom:992.730000px;}
.yf9_c00056{bottom:993.600000px;}
.yf8_c00056{bottom:994.470000px;}
.yf0_c00056{bottom:996.195000px;}
.yec_c00056{bottom:1004.835000px;}
.yed_c00056{bottom:1007.430000px;}
.yee_c00056{bottom:1008.285000px;}
.yef_c00056{bottom:1009.155000px;}
.ye4_c00056{bottom:1010.010000px;}
.ye2_c00056{bottom:1010.880000px;}
.ye5_c00056{bottom:1011.750000px;}
.yeb_c00056{bottom:1012.605000px;}
.ye1_c00056{bottom:1016.070000px;}
.yde_c00056{bottom:1016.925000px;}
.ye3_c00056{bottom:1017.795000px;}
.ye0_c00056{bottom:1018.650000px;}
.ye6_c00056{bottom:1019.520000px;}
.ydf_c00056{bottom:1020.390000px;}
.ye7_c00056{bottom:1021.245000px;}
.ye8_c00056{bottom:1023.840000px;}
.ye9_c00056{bottom:1026.435000px;}
.yea_c00056{bottom:1027.290000px;}
.yd7_c00056{bottom:1028.160000px;}
.yd8_c00056{bottom:1029.030000px;}
.yda_c00056{bottom:1029.885000px;}
.yd9_c00056{bottom:1030.755000px;}
.yd6_c00056{bottom:1031.610000px;}
.ydb_c00056{bottom:1032.480000px;}
.ydd_c00056{bottom:1033.350000px;}
.ydc_c00056{bottom:1034.205000px;}
.yd0_c00056{bottom:1041.120000px;}
.ycf_c00056{bottom:1041.990000px;}
.yd4_c00056{bottom:1043.715000px;}
.yd5_c00056{bottom:1044.570000px;}
.yd3_c00056{bottom:1045.440000px;}
.yd1_c00056{bottom:1047.165000px;}
.ycd_c00056{bottom:1048.890000px;}
.yce_c00056{bottom:1049.760000px;}
.yd2_c00056{bottom:1054.080000px;}
.yc4_c00056{bottom:1062.720000px;}
.yca_c00056{bottom:1065.315000px;}
.yc3_c00056{bottom:1066.170000px;}
.yc8_c00056{bottom:1067.040000px;}
.yc5_c00056{bottom:1067.910000px;}
.yc9_c00056{bottom:1068.765000px;}
.yc6_c00056{bottom:1069.635000px;}
.yc2_c00056{bottom:1070.490000px;}
.ycb_c00056{bottom:1073.955000px;}
.ycc_c00056{bottom:1074.810000px;}
.yc7_c00056{bottom:1080.000000px;}
.ybe_c00056{bottom:1085.190000px;}
.ybb_c00056{bottom:1086.915000px;}
.ybc_c00056{bottom:1091.235000px;}
.yc0_c00056{bottom:1092.090000px;}
.ybd_c00056{bottom:1092.960000px;}
.y2af_c00056{bottom:1093.830000px;}
.yb7_c00056{bottom:1094.685000px;}
.yc1_c00056{bottom:1095.555000px;}
.ybf_c00056{bottom:1096.410000px;}
.yb9_c00056{bottom:1098.150000px;}
.y2ae_c00056{bottom:1099.875000px;}
.yb8_c00056{bottom:1104.195000px;}
.yba_c00056{bottom:1105.050000px;}
.yaf_c00056{bottom:1105.920000px;}
.yb6_c00056{bottom:1106.790000px;}
.yb5_c00056{bottom:1107.645000px;}
.yb1_c00056{bottom:1108.515000px;}
.yae_c00056{bottom:1111.965000px;}
.yb0_c00056{bottom:1113.690000px;}
.yb2_c00056{bottom:1117.155000px;}
.y2ad_c00056{bottom:1118.010000px;}
.yb3_c00056{bottom:1118.880000px;}
.yb4_c00056{bottom:1120.605000px;}
.yab_c00056{bottom:1123.200000px;}
.ya9_c00056{bottom:1124.070000px;}
.yad_c00056{bottom:1124.925000px;}
.ya5_c00056{bottom:1126.650000px;}
.ya7_c00056{bottom:1127.520000px;}
.ya6_c00056{bottom:1128.390000px;}
.yaa_c00056{bottom:1129.245000px;}
.yac_c00056{bottom:1132.710000px;}
.ya1_c00056{bottom:1133.565000px;}
.ya2_c00056{bottom:1134.435000px;}
.ya3_c00056{bottom:1136.160000px;}
.ya8_c00056{bottom:1137.885000px;}
.ya4_c00056{bottom:1143.075000px;}
.y9f_c00056{bottom:1143.930000px;}
.ya0_c00056{bottom:1144.800000px;}
.y9d_c00056{bottom:1145.670000px;}
.y92_c00056{bottom:1146.525000px;}
.y9e_c00056{bottom:1148.250000px;}
.y93_c00056{bottom:1149.120000px;}
.y91_c00056{bottom:1150.845000px;}
.y90_c00056{bottom:1152.570000px;}
.y96_c00056{bottom:1154.310000px;}
.y94_c00056{bottom:1155.165000px;}
.y95_c00056{bottom:1156.035000px;}
.y99_c00056{bottom:1156.890000px;}
.y97_c00056{bottom:1157.760000px;}
.y9a_c00056{bottom:1158.630000px;}
.y98_c00056{bottom:1159.485000px;}
.y9b_c00056{bottom:1160.355000px;}
.y8f_c00056{bottom:1162.080000px;}
.y8b_c00056{bottom:1164.675000px;}
.y9c_c00056{bottom:1165.530000px;}
.y89_c00056{bottom:1166.400000px;}
.y8e_c00056{bottom:1170.720000px;}
.y8d_c00056{bottom:1171.590000px;}
.y81_c00056{bottom:1173.315000px;}
.y8a_c00056{bottom:1174.170000px;}
.y8c_c00056{bottom:1175.040000px;}
.y82_c00056{bottom:1175.910000px;}
.y83_c00056{bottom:1176.765000px;}
.y85_c00056{bottom:1180.230000px;}
.y86_c00056{bottom:1181.085000px;}
.y88_c00056{bottom:1181.955000px;}
.y7e_c00056{bottom:1182.810000px;}
.y84_c00056{bottom:1183.680000px;}
.y7f_c00056{bottom:1184.550000px;}
.y80_c00056{bottom:1185.405000px;}
.y87_c00056{bottom:1186.275000px;}
.y78_c00056{bottom:1188.000000px;}
.y76_c00056{bottom:1189.725000px;}
.y79_c00056{bottom:1190.595000px;}
.y7d_c00056{bottom:1191.450000px;}
.y77_c00056{bottom:1192.320000px;}
.y7c_c00056{bottom:1193.190000px;}
.y70_c00056{bottom:1194.045000px;}
.y75_c00056{bottom:1194.915000px;}
.y71_c00056{bottom:1195.770000px;}
.y7a_c00056{bottom:1196.640000px;}
.y7b_c00056{bottom:1199.235000px;}
.y6f_c00056{bottom:1202.685000px;}
.y72_c00056{bottom:1205.280000px;}
.y74_c00056{bottom:1207.005000px;}
.y65_c00056{bottom:1208.730000px;}
.y73_c00056{bottom:1209.600000px;}
.y67_c00056{bottom:1210.470000px;}
.y66_c00056{bottom:1213.920000px;}
.y68_c00056{bottom:1215.645000px;}
.y6c_c00056{bottom:1216.515000px;}
.y64_c00056{bottom:1217.370000px;}
.y6d_c00056{bottom:1220.835000px;}
.y6a_c00056{bottom:1221.690000px;}
.y6b_c00056{bottom:1222.560000px;}
.y6e_c00056{bottom:1224.285000px;}
.y69_c00056{bottom:1225.155000px;}
.y5d_c00056{bottom:1228.605000px;}
.y61_c00056{bottom:1229.475000px;}
.y5c_c00056{bottom:1230.330000px;}
.y62_c00056{bottom:1231.200000px;}
.y5f_c00056{bottom:1232.925000px;}
.y60_c00056{bottom:1233.795000px;}
.y57_c00056{bottom:1234.650000px;}
.y55_c00056{bottom:1235.520000px;}
.y58_c00056{bottom:1236.390000px;}
.y5e_c00056{bottom:1237.245000px;}
.y56_c00056{bottom:1241.565000px;}
.y63_c00056{bottom:1243.290000px;}
.y5a_c00056{bottom:1245.030000px;}
.y5b_c00056{bottom:1245.885000px;}
.y59_c00056{bottom:1246.755000px;}
.y4c_c00056{bottom:1248.480000px;}
.y4e_c00056{bottom:1249.350000px;}
.y4b_c00056{bottom:1250.205000px;}
.y4d_c00056{bottom:1251.075000px;}
.y50_c00056{bottom:1251.930000px;}
.y4f_c00056{bottom:1252.800000px;}
.y54_c00056{bottom:1253.670000px;}
.y52_c00056{bottom:1254.525000px;}
.y4a_c00056{bottom:1255.395000px;}
.y53_c00056{bottom:1258.845000px;}
.y51_c00056{bottom:1259.715000px;}
.y43_c00056{bottom:1266.630000px;}
.y48_c00056{bottom:1267.485000px;}
.y46_c00056{bottom:1269.210000px;}
.y47_c00056{bottom:1270.080000px;}
.y45_c00056{bottom:1270.950000px;}
.y42_c00056{bottom:1272.675000px;}
.y49_c00056{bottom:1273.530000px;}
.y44_c00056{bottom:1275.270000px;}
.y3e_c00056{bottom:1292.550000px;}
.y3a_c00056{bottom:1293.405000px;}
.y3b_c00056{bottom:1295.130000px;}
.y3c_c00056{bottom:1296.000000px;}
.y3d_c00056{bottom:1296.870000px;}
.y3f_c00056{bottom:1297.725000px;}
.y40_c00056{bottom:1301.190000px;}
.y41_c00056{bottom:1308.090000px;}
.y2e_c00056{bottom:1309.830000px;}
.y2f_c00056{bottom:1310.685000px;}
.y30_c00056{bottom:1311.555000px;}
.y2c_c00056{bottom:1312.410000px;}
.y2d_c00056{bottom:1315.875000px;}
.y37_c00056{bottom:1317.600000px;}
.y39_c00056{bottom:1318.470000px;}
.y32_c00056{bottom:1319.325000px;}
.y33_c00056{bottom:1320.195000px;}
.y34_c00056{bottom:1321.050000px;}
.y31_c00056{bottom:1321.920000px;}
.y36_c00056{bottom:1322.790000px;}
.y38_c00056{bottom:1323.645000px;}
.y2a9_c00056{bottom:1325.370000px;}
.y35_c00056{bottom:1326.240000px;}
.y23_c00056{bottom:1329.690000px;}
.y25_c00056{bottom:1330.560000px;}
.y26_c00056{bottom:1331.430000px;}
.y27_c00056{bottom:1332.285000px;}
.y29_c00056{bottom:1333.155000px;}
.y28_c00056{bottom:1334.010000px;}
.y2a_c00056{bottom:1334.880000px;}
.y24_c00056{bottom:1335.750000px;}
.y2b_c00056{bottom:1336.605000px;}
.y1e_c00056{bottom:1338.330000px;}
.y13_c00056{bottom:1340.925000px;}
.yf_c00056{bottom:1342.650000px;}
.y1c_c00056{bottom:1345.245000px;}
.y1f_c00056{bottom:1346.115000px;}
.y1b_c00056{bottom:1346.970000px;}
.y20_c00056{bottom:1348.710000px;}
.y1d_c00056{bottom:1349.565000px;}
.y10_c00056{bottom:1350.435000px;}
.y21_c00056{bottom:1351.290000px;}
.y22_c00056{bottom:1352.160000px;}
.y12_c00056{bottom:1353.030000px;}
.y15_c00056{bottom:1354.755000px;}
.ye_c00056{bottom:1355.610000px;}
.y16_c00056{bottom:1356.480000px;}
.y11_c00056{bottom:1357.350000px;}
.y14_c00056{bottom:1358.205000px;}
.y18_c00056{bottom:1359.075000px;}
.y1a_c00056{bottom:1359.930000px;}
.y17_c00056{bottom:1361.670000px;}
.y19_c00056{bottom:1362.525000px;}
.y7_c00056{bottom:1365.990000px;}
.y9_c00056{bottom:1367.715000px;}
.y2ac_c00056{bottom:1369.440000px;}
.ya_c00056{bottom:1370.310000px;}
.yd_c00056{bottom:1372.035000px;}
.yb_c00056{bottom:1372.890000px;}
.y8_c00056{bottom:1376.355000px;}
.yc_c00056{bottom:1378.080000px;}
.y2_c00056{bottom:1394.490000px;}
.y3_c00056{bottom:1397.085000px;}
.y6_c00056{bottom:1402.275000px;}
.y5_c00056{bottom:1403.130000px;}
.y4_c00056{bottom:1404.000000px;}
.y1_c00056{bottom:1423.875000px;}
.y2ab_c00056{bottom:1426.470000px;}
.y2aa_c00056{bottom:1430.790000px;}
.y2a8_c00056{bottom:1442.010000px;}
.y2a7_c00056{bottom:1446.330000px;}
.h1a_c00056{height:3.110063px;}
.h21_c00056{height:5.399414px;}
.h4_c00056{height:6.209326px;}
.h28_c00056{height:8.650313px;}
.h1c_c00056{height:9.340986px;}
.h1d_c00056{height:12.418652px;}
.h1f_c00056{height:15.550313px;}
.h1e_c00056{height:18.681973px;}
.h14_c00056{height:21.759639px;}
.h19_c00056{height:24.891299px;}
.h26_c00056{height:25.930313px;}
.h17_c00056{height:27.968965px;}
.h2_c00056{height:31.100625px;}
.h18_c00056{height:34.232285px;}
.h24_c00056{height:34.520625px;}
.h1b_c00056{height:37.309951px;}
.h16_c00056{height:40.441611px;}
.h15_c00056{height:43.519277px;}
.hd_c00056{height:46.650937px;}
.h10_c00056{height:49.782598px;}
.h5_c00056{height:52.860264px;}
.h22_c00056{height:53.202598px;}
.h6_c00056{height:55.991924px;}
.h7_c00056{height:59.069590px;}
.h8_c00056{height:62.201250px;}
.h12_c00056{height:65.332910px;}
.h11_c00056{height:68.410576px;}
.he_c00056{height:71.542236px;}
.hc_c00056{height:74.619902px;}
.h3_c00056{height:77.751563px;}
.h20_c00056{height:80.883223px;}
.hf_c00056{height:83.960889px;}
.h9_c00056{height:87.092549px;}
.h13_c00056{height:90.170215px;}
.hb_c00056{height:93.301875px;}
.ha_c00056{height:96.433535px;}
.h23_c00056{height:99.511201px;}
.h27_c00056{height:102.642861px;}
.h25_c00056{height:111.983848px;}
.h0_c00056{height:1515.450000px;}
.h1_c00056{height:1515.750000px;}
.w0_c00056{width:1079.130000px;}
.w1_c00056{width:1079.250000px;}
.x0_c00056{left:0.000000px;}
.x11a_c00056{left:159.840000px;}
.x7b_c00056{left:163.290000px;}
.x11d_c00056{left:165.885000px;}
.x119_c00056{left:175.395000px;}
.x8a_c00056{left:177.120000px;}
.xda_c00056{left:182.310000px;}
.x14a_c00056{left:185.760000px;}
.xd2_c00056{left:188.355000px;}
.x130_c00056{left:190.080000px;}
.x126_c00056{left:195.270000px;}
.x121_c00056{left:201.315000px;}
.x127_c00056{left:206.490000px;}
.xae_c00056{left:208.230000px;}
.x122_c00056{left:211.680000px;}
.x8_c00056{left:214.275000px;}
.x9a_c00056{left:216.000000px;}
.xc3_c00056{left:217.725000px;}
.xf9_c00056{left:219.450000px;}
.x139_c00056{left:221.190000px;}
.x2_c00056{left:223.770000px;}
.x13_c00056{left:225.510000px;}
.xa4_c00056{left:227.235000px;}
.xaf_c00056{left:229.830000px;}
.x12a_c00056{left:231.555000px;}
.xdb_c00056{left:233.280000px;}
.xb0_c00056{left:235.874400px;}
.x112_c00056{left:237.600000px;}
.x12e_c00056{left:240.195000px;}
.x2c_c00056{left:241.907856px;}
.x144_c00056{left:246.240000px;}
.xd3_c00056{left:250.560000px;}
.x5f_c00056{left:253.155000px;}
.x12b_c00056{left:255.750000px;}
.x10b_c00056{left:257.475000px;}
.x6a_c00056{left:260.070000px;}
.x8b_c00056{left:261.795000px;}
.x51_c00056{left:266.115000px;}
.x14_c00056{left:268.710000px;}
.xea_c00056{left:270.435000px;}
.x146_c00056{left:272.160000px;}
.x6b_c00056{left:273.885000px;}
.xe5_c00056{left:275.610000px;}
.x15_c00056{left:279.075000px;}
.x9_c00056{left:280.800000px;}
.xdc_c00056{left:283.395000px;}
.x60_c00056{left:285.990000px;}
.xf3_c00056{left:288.570000px;}
.x13b_c00056{left:290.310000px;}
.x7c_c00056{left:292.890000px;}
.x2d_c00056{left:294.630000px;}
.xc4_c00056{left:296.355000px;}
.xa5_c00056{left:298.080000px;}
.xa_c00056{left:299.805000px;}
.x42_c00056{left:303.270000px;}
.xe3_c00056{left:304.995000px;}
.x35_c00056{left:306.720000px;}
.x3_c00056{left:310.170000px;}
.x43_c00056{left:311.910000px;}
.x7d_c00056{left:313.635000px;}
.xd4_c00056{left:316.230000px;}
.x143_c00056{left:317.955000px;}
.xbe_c00056{left:319.680000px;}
.x52_c00056{left:321.405000px;}
.x4_c00056{left:324.000000px;}
.x108_c00056{left:326.595000px;}
.x8c_c00056{left:330.045000px;}
.x36_c00056{left:332.640000px;}
.x118_c00056{left:335.235000px;}
.xa6_c00056{left:336.960000px;}
.x128_c00056{left:338.685000px;}
.x16_c00056{left:340.410000px;}
.x44_c00056{left:343.875000px;}
.xba_c00056{left:345.600000px;}
.x12f_c00056{left:348.195000px;}
.xcc_c00056{left:350.790000px;}
.x61_c00056{left:352.515000px;}
.x147_c00056{left:354.240000px;}
.x5_c00056{left:355.965000px;}
.x13f_c00056{left:358.560000px;}
.x6c_c00056{left:360.285000px;}
.x92_c00056{left:362.010000px;}
.x13c_c00056{left:363.750000px;}
.x5a_c00056{left:365.475000px;}
.x17_c00056{left:368.070000px;}
.x9b_c00056{left:371.520000px;}
.x71_c00056{left:374.115000px;}
.xbb_c00056{left:376.710000px;}
.xc5_c00056{left:380.160000px;}
.x62_c00056{left:382.755000px;}
.x53_c00056{left:387.075000px;}
.x37_c00056{left:389.670000px;}
.x13d_c00056{left:391.395000px;}
.xb4_c00056{left:393.120000px;}
.xdf_c00056{left:394.845000px;}
.x123_c00056{left:398.310000px;}
.xe6_c00056{left:400.035000px;}
.xbf_c00056{left:402.630000px;}
.x63_c00056{left:406.080000px;}
.x18_c00056{left:407.805000px;}
.xef_c00056{left:409.530000px;}
.xf4_c00056{left:411.270000px;}
.x11e_c00056{left:412.995000px;}
.x8d_c00056{left:414.720000px;}
.x45_c00056{left:417.315000px;}
.x19_c00056{left:419.040000px;}
.xe7_c00056{left:421.635000px;}
.x2e_c00056{left:424.230000px;}
.x111_c00056{left:426.810000px;}
.x7e_c00056{left:428.550000px;}
.x100_c00056{left:430.275000px;}
.x10c_c00056{left:432.000000px;}
.xb_c00056{left:433.725000px;}
.x9c_c00056{left:437.190000px;}
.x1a_c00056{left:438.915000px;}
.x72_c00056{left:441.510000px;}
.x134_c00056{left:443.235000px;}
.xc6_c00056{left:444.960000px;}
.x84_c00056{left:446.685000px;}
.xca_c00056{left:449.280000px;}
.x54_c00056{left:451.005000px;}
.xe0_c00056{left:452.730000px;}
.x129_c00056{left:454.470000px;}
.x46_c00056{left:457.050000px;}
.x113_c00056{left:459.645000px;}
.xfa_c00056{left:462.240000px;}
.x73_c00056{left:464.835000px;}
.xcd_c00056{left:467.430000px;}
.x93_c00056{left:469.155000px;}
.xa7_c00056{left:470.880000px;}
.x101_c00056{left:473.475000px;}
.x9d_c00056{left:476.070000px;}
.xc7_c00056{left:477.795000px;}
.x64_c00056{left:479.520000px;}
.x6d_c00056{left:482.115000px;}
.x55_c00056{left:483.840000px;}
.x140_c00056{left:485.565000px;}
.xce_c00056{left:488.160000px;}
.x2f_c00056{left:490.755000px;}
.x10e_c00056{left:492.480000px;}
.x1b_c00056{left:494.205000px;}
.x6_c00056{left:496.800000px;}
.x7f_c00056{left:499.395000px;}
.x9e_c00056{left:502.845000px;}
.x1c_c00056{left:505.440000px;}
.xb1_c00056{left:507.165000px;}
.xee_c00056{left:509.760000px;}
.x94_c00056{left:512.355000px;}
.x11b_c00056{left:515.805000px;}
.xb5_c00056{left:517.530000px;}
.x135_c00056{left:522.720000px;}
.xc_c00056{left:526.170000px;}
.x80_c00056{left:527.910000px;}
.xe8_c00056{left:531.360000px;}
.x12c_c00056{left:533.955000px;}
.xc8_c00056{left:539.130000px;}
.xfb_c00056{left:540.870000px;}
.xeb_c00056{left:542.595000px;}
.x38_c00056{left:545.190000px;}
.xd_c00056{left:546.915000px;}
.x1d_c00056{left:548.640000px;}
.xb2_c00056{left:551.235000px;}
.xf7_c00056{left:552.960000px;}
.x85_c00056{left:555.555000px;}
.x137_c00056{left:557.280000px;}
.x148_c00056{left:559.005000px;}
.x124_c00056{left:560.730000px;}
.x65_c00056{left:562.470000px;}
.x1e_c00056{left:564.195000px;}
.x74_c00056{left:565.920000px;}
.x109_c00056{left:567.645000px;}
.x131_c00056{left:569.370000px;}
.x56_c00056{left:571.110000px;}
.x47_c00056{left:572.835000px;}
.x11c_c00056{left:574.560000px;}
.x39_c00056{left:576.285000px;}
.x86_c00056{left:578.880000px;}
.xf0_c00056{left:581.475000px;}
.x6e_c00056{left:583.200000px;}
.xa8_c00056{left:584.925000px;}
.x48_c00056{left:587.520000px;}
.x75_c00056{left:590.970000px;}
.x81_c00056{left:592.710000px;}
.x66_c00056{left:595.290000px;}
.x116_c00056{left:597.030000px;}
.xb6_c00056{left:598.755000px;}
.x141_c00056{left:600.480000px;}
.x95_c00056{left:603.075000px;}
.xcf_c00056{left:604.800000px;}
.x3a_c00056{left:607.395000px;}
.x76_c00056{left:609.990000px;}
.xe_c00056{left:613.440000px;}
.xd5_c00056{left:615.165000px;}
.xe4_c00056{left:617.760000px;}
.x1f_c00056{left:619.485000px;}
.x5b_c00056{left:622.080000px;}
.xdd_c00056{left:623.805000px;}
.xc0_c00056{left:625.530000px;}
.xf8_c00056{left:627.270000px;}
.xc9_c00056{left:629.850000px;}
.x67_c00056{left:632.445000px;}
.x105_c00056{left:635.040000px;}
.x103_c00056{left:636.765000px;}
.xe2_c00056{left:638.490000px;}
.x20_c00056{left:641.085000px;}
.x3b_c00056{left:642.810000px;}
.xd6_c00056{left:645.405000px;}
.x82_c00056{left:649.725000px;}
.x142_c00056{left:651.450000px;}
.x96_c00056{left:653.190000px;}
.xa9_c00056{left:654.915000px;}
.x68_c00056{left:656.640000px;}
.x11f_c00056{left:658.365000px;}
.x57_c00056{left:660.090000px;}
.xf1_c00056{left:661.830000px;}
.xfc_c00056{left:663.555000px;}
.x49_c00056{left:665.280000px;}
.xb7_c00056{left:667.005000px;}
.x114_c00056{left:668.730000px;}
.xe1_c00056{left:672.195000px;}
.x4a_c00056{left:673.920000px;}
.x97_c00056{left:675.645000px;}
.x9f_c00056{left:677.370000px;}
.xfe_c00056{left:679.110000px;}
.xc1_c00056{left:682.560000px;}
.xf_c00056{left:684.285000px;}
.x3c_c00056{left:686.880000px;}
.x125_c00056{left:688.605000px;}
.x30_c00056{left:690.330000px;}
.x58_c00056{left:692.925000px;}
.xaa_c00056{left:694.650000px;}
.x106_c00056{left:697.245000px;}
.x7_c00056{left:699.840000px;}
.x5c_c00056{left:702.435000px;}
.x87_c00056{left:704.160000px;}
.xcb_c00056{left:706.755000px;}
.x138_c00056{left:708.480000px;}
.xd0_c00056{left:711.930000px;}
.x77_c00056{left:713.670000px;}
.xc2_c00056{left:716.250000px;}
.x31_c00056{left:720.570000px;}
.xb3_c00056{left:722.310000px;}
.x88_c00056{left:727.485000px;}
.xde_c00056{left:729.210000px;}
.x3d_c00056{left:730.950000px;}
.xab_c00056{left:732.675000px;}
.xec_c00056{left:734.400000px;}
.x132_c00056{left:736.125000px;}
.x149_c00056{left:738.720000px;}
.x6f_c00056{left:740.445000px;}
.xa0_c00056{left:743.040000px;}
.x13e_c00056{left:744.765000px;}
.x145_c00056{left:746.490000px;}
.x1_c00056{left:748.230000px;}
.x136_c00056{left:750.810000px;}
.x4b_c00056{left:752.550000px;}
.x21_c00056{left:754.275000px;}
.xb8_c00056{left:756.000000px;}
.xa1_c00056{left:758.595000px;}
.x10a_c00056{left:761.190000px;}
.x12d_c00056{left:762.915000px;}
.x3e_c00056{left:764.640000px;}
.x104_c00056{left:766.365000px;}
.x22_c00056{left:768.960000px;}
.xbc_c00056{left:771.555000px;}
.xed_c00056{left:773.280000px;}
.x3f_c00056{left:775.875000px;}
.x78_c00056{left:778.470000px;}
.x98_c00056{left:781.050000px;}
.x5d_c00056{left:782.790000px;}
.x107_c00056{left:785.370000px;}
.xd7_c00056{left:787.110000px;}
.xf5_c00056{left:789.690000px;}
.x5e_c00056{left:791.430000px;}
.x23_c00056{left:793.155000px;}
.x13a_c00056{left:794.880000px;}
.x69_c00056{left:796.605000px;}
.x4c_c00056{left:798.330000px;}
.x40_c00056{left:800.925000px;}
.x24_c00056{left:803.520000px;}
.x25_c00056{left:806.970000px;}
.x115_c00056{left:808.710000px;}
.xbd_c00056{left:811.290000px;}
.x10_c00056{left:813.030000px;}
.x79_c00056{left:814.755000px;}
.x83_c00056{left:817.350000px;}
.xd8_c00056{left:819.075000px;}
.x70_c00056{left:820.800000px;}
.x89_c00056{left:824.250000px;}
.x32_c00056{left:826.845000px;}
.x26_c00056{left:828.570000px;}
.xfd_c00056{left:831.165000px;}
.xff_c00056{left:832.890000px;}
.x7a_c00056{left:835.485000px;}
.x27_c00056{left:838.950000px;}
.xf2_c00056{left:840.675000px;}
.x11_c00056{left:844.995000px;}
.x41_c00056{left:846.720000px;}
.x10f_c00056{left:849.315000px;}
.xac_c00056{left:851.910000px;}
.xd9_c00056{left:854.490000px;}
.x133_c00056{left:856.230000px;}
.xd1_c00056{left:859.680000px;}
.x59_c00056{left:861.405000px;}
.x102_c00056{left:863.130000px;}
.x120_c00056{left:864.870000px;}
.x28_c00056{left:868.320000px;}
.x4d_c00056{left:870.045000px;}
.xad_c00056{left:871.770000px;}
.xa2_c00056{left:874.365000px;}
.x8e_c00056{left:876.090000px;}
.xf6_c00056{left:877.830000px;}
.x4e_c00056{left:881.280000px;}
.x29_c00056{left:883.875000px;}
.x10d_c00056{left:885.600000px;}
.x99_c00056{left:887.325000px;}
.x33_c00056{left:889.920000px;}
.x8f_c00056{left:891.645000px;}
.xb9_c00056{left:895.110000px;}
.xe9_c00056{left:898.560000px;}
.x90_c00056{left:901.155000px;}
.x4f_c00056{left:904.605000px;}
.x34_c00056{left:910.650000px;}
.x91_c00056{left:912.390000px;}
.x14b_c00056{left:914.115000px;}
.x2a_c00056{left:915.840000px;}
.x50_c00056{left:919.290000px;}
.xa3_c00056{left:921.885000px;}
.x110_c00056{left:924.480000px;}
.x117_c00056{left:926.205000px;}
.x12_c00056{left:932.250000px;}
.x2b_c00056{left:946.950000px;}
.x157_c00056{left:957.315000px;}
.x158_c00056{left:963.360000px;}
.x159_c00056{left:985.830000px;}
.x14d_c00056{left:992.730000px;}
.x151_c00056{left:998.790000px;}
.x153_c00056{left:1009.155000px;}
.x152_c00056{left:1011.750000px;}
.x14c_c00056{left:1032.480000px;}
.x14f_c00056{left:1040.250000px;}
.x150_c00056{left:1048.890000px;}
.x15a_c00056{left:1057.530000px;}
.x14e_c00056{left:1059.270000px;}
.x154_c00056{left:1062.720000px;}
.x155_c00056{left:1070.490000px;}
.x156_c00056{left:1072.230000px;}
@media print{
.v2_c00056{vertical-align:-6.186667pt;}
.v0_c00056{vertical-align:0.000000pt;}
.v1_c00056{vertical-align:3.040000pt;}
.v3_c00056{vertical-align:9.226667pt;}
.ls2_c00056{letter-spacing:0.000000pt;}
.ls0_c00056{letter-spacing:39.290133pt;}
.ls1_c00056{letter-spacing:95.170389pt;}
.ws8_c00056{word-spacing:0.000000pt;}
.ws2_c00056{word-spacing:1.026560pt;}
.ws5_c00056{word-spacing:6.193431pt;}
.ws3_c00056{word-spacing:8.464128pt;}
.ws7_c00056{word-spacing:33.265920pt;}
.ws1_c00056{word-spacing:36.271893pt;}
.ws0_c00056{word-spacing:72.062673pt;}
.ws4_c00056{word-spacing:102.939307pt;}
.ws6_c00056{word-spacing:146.920747pt;}
.fs18_c00056{font-size:3.072000pt;}
.fs1f_c00056{font-size:5.333333pt;}
.fs2_c00056{font-size:6.133333pt;}
.fs1a_c00056{font-size:9.226667pt;}
.fs1b_c00056{font-size:12.266667pt;}
.fs1d_c00056{font-size:15.360000pt;}
.fs1c_c00056{font-size:18.453333pt;}
.fs12_c00056{font-size:21.493333pt;}
.fs17_c00056{font-size:24.586667pt;}
.fs15_c00056{font-size:27.626667pt;}
.fs0_c00056{font-size:30.720000pt;}
.fs16_c00056{font-size:33.813333pt;}
.fs19_c00056{font-size:36.853333pt;}
.fs14_c00056{font-size:39.946667pt;}
.fs13_c00056{font-size:42.986667pt;}
.fsb_c00056{font-size:46.080000pt;}
.fse_c00056{font-size:49.173333pt;}
.fs3_c00056{font-size:52.213333pt;}
.fs4_c00056{font-size:55.306667pt;}
.fs5_c00056{font-size:58.346667pt;}
.fs6_c00056{font-size:61.440000pt;}
.fs10_c00056{font-size:64.533333pt;}
.fsf_c00056{font-size:67.573333pt;}
.fsc_c00056{font-size:70.666667pt;}
.fsa_c00056{font-size:73.706667pt;}
.fs1_c00056{font-size:76.800000pt;}
.fs1e_c00056{font-size:79.893333pt;}
.fsd_c00056{font-size:82.933333pt;}
.fs7_c00056{font-size:86.026667pt;}
.fs11_c00056{font-size:89.066667pt;}
.fs9_c00056{font-size:92.160000pt;}
.fs8_c00056{font-size:95.253333pt;}
.fs20_c00056{font-size:98.293333pt;}
.fs22_c00056{font-size:101.386667pt;}
.fs21_c00056{font-size:110.613333pt;}
.y0_c00056{bottom:0.000000pt;}
.y29f_c00056{bottom:201.986667pt;}
.y2a5_c00056{bottom:204.293333pt;}
.y29e_c00056{bottom:205.053333pt;}
.y2a4_c00056{bottom:205.826667pt;}
.y2a3_c00056{bottom:206.586667pt;}
.y2a2_c00056{bottom:207.360000pt;}
.y2a6_c00056{bottom:208.133333pt;}
.y2a0_c00056{bottom:208.893333pt;}
.y298_c00056{bottom:209.666667pt;}
.y2a1_c00056{bottom:215.813333pt;}
.y299_c00056{bottom:217.346667pt;}
.y297_c00056{bottom:218.106667pt;}
.y29b_c00056{bottom:218.880000pt;}
.y29d_c00056{bottom:221.186667pt;}
.y29c_c00056{bottom:221.946667pt;}
.y29a_c00056{bottom:222.720000pt;}
.y291_c00056{bottom:225.026667pt;}
.y28e_c00056{bottom:225.786667pt;}
.y290_c00056{bottom:227.333333pt;}
.y28d_c00056{bottom:228.093333pt;}
.y28f_c00056{bottom:229.626667pt;}
.y292_c00056{bottom:230.400000pt;}
.y294_c00056{bottom:231.933333pt;}
.y296_c00056{bottom:232.706667pt;}
.y293_c00056{bottom:233.466667pt;}
.y295_c00056{bottom:235.013333pt;}
.y28b_c00056{bottom:240.386667pt;}
.y28c_c00056{bottom:243.453333pt;}
.y287_c00056{bottom:244.226667pt;}
.y289_c00056{bottom:244.986667pt;}
.y28a_c00056{bottom:245.760000pt;}
.y288_c00056{bottom:246.533333pt;}
.y281_c00056{bottom:247.293333pt;}
.y282_c00056{bottom:248.066667pt;}
.y286_c00056{bottom:251.906667pt;}
.y283_c00056{bottom:254.213333pt;}
.y284_c00056{bottom:254.973333pt;}
.y285_c00056{bottom:256.506667pt;}
.y27c_c00056{bottom:262.653333pt;}
.y27a_c00056{bottom:263.426667pt;}
.y279_c00056{bottom:264.186667pt;}
.y27b_c00056{bottom:264.960000pt;}
.y271_c00056{bottom:265.733333pt;}
.y273_c00056{bottom:266.493333pt;}
.y275_c00056{bottom:267.266667pt;}
.y280_c00056{bottom:268.026667pt;}
.y27d_c00056{bottom:268.800000pt;}
.y27e_c00056{bottom:269.573333pt;}
.y270_c00056{bottom:272.640000pt;}
.y27f_c00056{bottom:274.173333pt;}
.y278_c00056{bottom:274.946667pt;}
.y26f_c00056{bottom:275.706667pt;}
.y274_c00056{bottom:276.480000pt;}
.y272_c00056{bottom:277.253333pt;}
.y277_c00056{bottom:278.013333pt;}
.y276_c00056{bottom:279.546667pt;}
.y26c_c00056{bottom:280.320000pt;}
.y268_c00056{bottom:281.093333pt;}
.y26a_c00056{bottom:281.853333pt;}
.y26b_c00056{bottom:284.160000pt;}
.y269_c00056{bottom:284.933333pt;}
.y26d_c00056{bottom:288.000000pt;}
.y26e_c00056{bottom:289.533333pt;}
.y261_c00056{bottom:294.906667pt;}
.y263_c00056{bottom:295.680000pt;}
.y266_c00056{bottom:297.213333pt;}
.y265_c00056{bottom:297.986667pt;}
.y25f_c00056{bottom:298.746667pt;}
.y260_c00056{bottom:299.520000pt;}
.y25e_c00056{bottom:301.826667pt;}
.y267_c00056{bottom:302.586667pt;}
.y262_c00056{bottom:303.360000pt;}
.y264_c00056{bottom:304.133333pt;}
.y258_c00056{bottom:315.653333pt;}
.y256_c00056{bottom:317.186667pt;}
.y25c_c00056{bottom:319.493333pt;}
.y259_c00056{bottom:321.026667pt;}
.y257_c00056{bottom:321.786667pt;}
.y25b_c00056{bottom:323.333333pt;}
.y25a_c00056{bottom:324.093333pt;}
.y25d_c00056{bottom:326.400000pt;}
.y24f_c00056{bottom:332.546667pt;}
.y253_c00056{bottom:333.306667pt;}
.y254_c00056{bottom:334.853333pt;}
.y251_c00056{bottom:335.613333pt;}
.y255_c00056{bottom:336.386667pt;}
.y250_c00056{bottom:337.146667pt;}
.y24e_c00056{bottom:338.693333pt;}
.y252_c00056{bottom:339.453333pt;}
.y24b_c00056{bottom:347.906667pt;}
.y245_c00056{bottom:351.746667pt;}
.y246_c00056{bottom:353.280000pt;}
.y244_c00056{bottom:354.053333pt;}
.y248_c00056{bottom:356.346667pt;}
.y23d_c00056{bottom:357.120000pt;}
.y247_c00056{bottom:357.893333pt;}
.y249_c00056{bottom:358.653333pt;}
.y24a_c00056{bottom:359.426667pt;}
.y24d_c00056{bottom:362.493333pt;}
.y23c_c00056{bottom:363.266667pt;}
.y23f_c00056{bottom:364.026667pt;}
.y237_c00056{bottom:365.573333pt;}
.y241_c00056{bottom:366.333333pt;}
.y24c_c00056{bottom:367.106667pt;}
.y243_c00056{bottom:367.866667pt;}
.y23e_c00056{bottom:368.640000pt;}
.y242_c00056{bottom:369.413333pt;}
.y240_c00056{bottom:370.173333pt;}
.y236_c00056{bottom:370.946667pt;}
.y239_c00056{bottom:371.706667pt;}
.y235_c00056{bottom:372.480000pt;}
.y23a_c00056{bottom:374.013333pt;}
.y234_c00056{bottom:374.786667pt;}
.y238_c00056{bottom:376.320000pt;}
.y23b_c00056{bottom:380.160000pt;}
.y22b_c00056{bottom:385.533333pt;}
.y22c_c00056{bottom:386.306667pt;}
.y22d_c00056{bottom:387.066667pt;}
.y230_c00056{bottom:388.613333pt;}
.y22f_c00056{bottom:389.373333pt;}
.y22e_c00056{bottom:390.146667pt;}
.y233_c00056{bottom:390.906667pt;}
.y232_c00056{bottom:392.453333pt;}
.y231_c00056{bottom:394.746667pt;}
.y221_c00056{bottom:406.266667pt;}
.y222_c00056{bottom:407.040000pt;}
.y226_c00056{bottom:407.813333pt;}
.y22a_c00056{bottom:410.106667pt;}
.y223_c00056{bottom:412.413333pt;}
.y224_c00056{bottom:413.186667pt;}
.y229_c00056{bottom:413.946667pt;}
.y228_c00056{bottom:415.493333pt;}
.y225_c00056{bottom:416.253333pt;}
.y227_c00056{bottom:417.026667pt;}
.y21a_c00056{bottom:421.626667pt;}
.y21c_c00056{bottom:422.400000pt;}
.y21b_c00056{bottom:423.173333pt;}
.y21f_c00056{bottom:425.466667pt;}
.y21d_c00056{bottom:426.240000pt;}
.y217_c00056{bottom:427.773333pt;}
.y219_c00056{bottom:428.546667pt;}
.y218_c00056{bottom:430.080000pt;}
.y21e_c00056{bottom:431.613333pt;}
.y220_c00056{bottom:433.146667pt;}
.y216_c00056{bottom:439.293333pt;}
.y212_c00056{bottom:443.133333pt;}
.y211_c00056{bottom:444.666667pt;}
.y214_c00056{bottom:446.973333pt;}
.y209_c00056{bottom:447.746667pt;}
.y213_c00056{bottom:448.506667pt;}
.y210_c00056{bottom:451.586667pt;}
.y215_c00056{bottom:453.893333pt;}
.y20c_c00056{bottom:454.653333pt;}
.y20d_c00056{bottom:455.426667pt;}
.y20f_c00056{bottom:456.960000pt;}
.y20b_c00056{bottom:457.733333pt;}
.y20e_c00056{bottom:458.493333pt;}
.y20a_c00056{bottom:459.266667pt;}
.y1ff_c00056{bottom:460.800000pt;}
.y206_c00056{bottom:461.573333pt;}
.y202_c00056{bottom:462.333333pt;}
.y1fe_c00056{bottom:463.106667pt;}
.y201_c00056{bottom:464.640000pt;}
.y200_c00056{bottom:465.413333pt;}
.y204_c00056{bottom:466.173333pt;}
.y203_c00056{bottom:466.946667pt;}
.y205_c00056{bottom:467.706667pt;}
.y208_c00056{bottom:468.480000pt;}
.y1fd_c00056{bottom:470.786667pt;}
.y207_c00056{bottom:471.546667pt;}
.y1f3_c00056{bottom:473.093333pt;}
.y1f2_c00056{bottom:473.853333pt;}
.y1f4_c00056{bottom:474.626667pt;}
.y1f9_c00056{bottom:475.386667pt;}
.y1f8_c00056{bottom:477.693333pt;}
.y1f6_c00056{bottom:478.466667pt;}
.y1fa_c00056{bottom:480.000000pt;}
.y1fb_c00056{bottom:480.773333pt;}
.y1fc_c00056{bottom:481.533333pt;}
.y1f7_c00056{bottom:483.840000pt;}
.y1f5_c00056{bottom:484.613333pt;}
.y1e9_c00056{bottom:489.213333pt;}
.y1ea_c00056{bottom:490.746667pt;}
.y1ef_c00056{bottom:491.520000pt;}
.y1f1_c00056{bottom:492.293333pt;}
.y1ed_c00056{bottom:493.826667pt;}
.y1eb_c00056{bottom:494.586667pt;}
.y1ec_c00056{bottom:495.360000pt;}
.y1f0_c00056{bottom:496.133333pt;}
.y1ee_c00056{bottom:496.893333pt;}
.y1e3_c00056{bottom:497.666667pt;}
.y1e5_c00056{bottom:498.426667pt;}
.y1e4_c00056{bottom:499.200000pt;}
.y1e1_c00056{bottom:500.733333pt;}
.y1e2_c00056{bottom:501.506667pt;}
.y1e0_c00056{bottom:502.266667pt;}
.y1e7_c00056{bottom:504.573333pt;}
.y1e8_c00056{bottom:506.880000pt;}
.y1e6_c00056{bottom:509.186667pt;}
.y1d9_c00056{bottom:510.720000pt;}
.y1da_c00056{bottom:513.026667pt;}
.y1dc_c00056{bottom:513.786667pt;}
.y1dd_c00056{bottom:514.560000pt;}
.y1de_c00056{bottom:515.333333pt;}
.y1df_c00056{bottom:516.093333pt;}
.y1db_c00056{bottom:518.400000pt;}
.y1d1_c00056{bottom:520.706667pt;}
.y1d3_c00056{bottom:521.466667pt;}
.y1d7_c00056{bottom:523.773333pt;}
.y1d0_c00056{bottom:524.546667pt;}
.y1d2_c00056{bottom:526.080000pt;}
.y1d5_c00056{bottom:526.853333pt;}
.y1d6_c00056{bottom:528.386667pt;}
.y1d8_c00056{bottom:530.693333pt;}
.y2b4_c00056{bottom:532.986667pt;}
.y2b3_c00056{bottom:533.760000pt;}
.y1d4_c00056{bottom:537.600000pt;}
.y1c7_c00056{bottom:539.133333pt;}
.y1c8_c00056{bottom:539.906667pt;}
.y1c9_c00056{bottom:544.506667pt;}
.y1ca_c00056{bottom:546.053333pt;}
.y1ce_c00056{bottom:546.813333pt;}
.y1cc_c00056{bottom:547.586667pt;}
.y1cf_c00056{bottom:548.346667pt;}
.y1cd_c00056{bottom:549.120000pt;}
.y1cb_c00056{bottom:549.893333pt;}
.y1c1_c00056{bottom:550.653333pt;}
.y1bf_c00056{bottom:551.426667pt;}
.y1bc_c00056{bottom:552.186667pt;}
.y1bd_c00056{bottom:553.733333pt;}
.y1c4_c00056{bottom:554.493333pt;}
.y1bb_c00056{bottom:556.800000pt;}
.y1b5_c00056{bottom:557.573333pt;}
.y1b8_c00056{bottom:558.333333pt;}
.y1be_c00056{bottom:559.106667pt;}
.y1c0_c00056{bottom:560.640000pt;}
.y1c2_c00056{bottom:561.413333pt;}
.y1c3_c00056{bottom:562.946667pt;}
.y1b7_c00056{bottom:564.480000pt;}
.y1c6_c00056{bottom:565.253333pt;}
.y1c5_c00056{bottom:566.013333pt;}
.y1b4_c00056{bottom:566.786667pt;}
.y1b6_c00056{bottom:568.320000pt;}
.y1b9_c00056{bottom:570.626667pt;}
.y1ad_c00056{bottom:571.386667pt;}
.y1ac_c00056{bottom:572.160000pt;}
.y1ba_c00056{bottom:572.933333pt;}
.y1ae_c00056{bottom:573.693333pt;}
.y1af_c00056{bottom:574.466667pt;}
.y1b0_c00056{bottom:576.773333pt;}
.y1b3_c00056{bottom:577.533333pt;}
.y1b1_c00056{bottom:580.613333pt;}
.y2b2_c00056{bottom:581.373333pt;}
.y1b2_c00056{bottom:584.453333pt;}
.y1a5_c00056{bottom:591.360000pt;}
.y1a7_c00056{bottom:592.893333pt;}
.y19b_c00056{bottom:593.666667pt;}
.y1a4_c00056{bottom:594.426667pt;}
.y1a9_c00056{bottom:595.200000pt;}
.y1a8_c00056{bottom:595.973333pt;}
.y1a6_c00056{bottom:596.733333pt;}
.y1a3_c00056{bottom:597.506667pt;}
.y1aa_c00056{bottom:600.573333pt;}
.y1ab_c00056{bottom:601.346667pt;}
.y19d_c00056{bottom:602.106667pt;}
.y19e_c00056{bottom:602.880000pt;}
.y1a0_c00056{bottom:604.413333pt;}
.y1a2_c00056{bottom:605.186667pt;}
.y1a1_c00056{bottom:605.946667pt;}
.y193_c00056{bottom:606.720000pt;}
.y195_c00056{bottom:607.493333pt;}
.y19f_c00056{bottom:608.253333pt;}
.y19c_c00056{bottom:609.786667pt;}
.y191_c00056{bottom:611.333333pt;}
.y192_c00056{bottom:612.093333pt;}
.y196_c00056{bottom:612.866667pt;}
.y194_c00056{bottom:614.400000pt;}
.y199_c00056{bottom:615.173333pt;}
.y19a_c00056{bottom:615.933333pt;}
.y197_c00056{bottom:616.706667pt;}
.y2b1_c00056{bottom:617.466667pt;}
.y198_c00056{bottom:619.013333pt;}
.y18e_c00056{bottom:619.773333pt;}
.y18a_c00056{bottom:624.386667pt;}
.y18c_c00056{bottom:625.146667pt;}
.y18b_c00056{bottom:626.693333pt;}
.y18f_c00056{bottom:627.453333pt;}
.y189_c00056{bottom:628.226667pt;}
.y180_c00056{bottom:628.986667pt;}
.y186_c00056{bottom:630.533333pt;}
.y18d_c00056{bottom:631.293333pt;}
.y2b0_c00056{bottom:632.826667pt;}
.y190_c00056{bottom:634.373333pt;}
.y183_c00056{bottom:635.133333pt;}
.y182_c00056{bottom:635.906667pt;}
.y184_c00056{bottom:636.666667pt;}
.y188_c00056{bottom:638.973333pt;}
.y181_c00056{bottom:639.746667pt;}
.y185_c00056{bottom:640.506667pt;}
.y187_c00056{bottom:641.280000pt;}
.y178_c00056{bottom:642.813333pt;}
.y179_c00056{bottom:645.120000pt;}
.y17d_c00056{bottom:646.653333pt;}
.y17f_c00056{bottom:648.186667pt;}
.y17a_c00056{bottom:648.960000pt;}
.y17e_c00056{bottom:649.733333pt;}
.y17c_c00056{bottom:650.493333pt;}
.y17b_c00056{bottom:651.266667pt;}
.y16f_c00056{bottom:655.106667pt;}
.y172_c00056{bottom:657.413333pt;}
.y173_c00056{bottom:658.173333pt;}
.y175_c00056{bottom:658.946667pt;}
.y170_c00056{bottom:660.480000pt;}
.y171_c00056{bottom:661.253333pt;}
.y176_c00056{bottom:662.013333pt;}
.y174_c00056{bottom:662.786667pt;}
.y177_c00056{bottom:663.546667pt;}
.y167_c00056{bottom:678.906667pt;}
.y169_c00056{bottom:679.680000pt;}
.y16c_c00056{bottom:680.453333pt;}
.y16a_c00056{bottom:681.213333pt;}
.y168_c00056{bottom:682.746667pt;}
.y16b_c00056{bottom:684.293333pt;}
.y16d_c00056{bottom:685.826667pt;}
.y16e_c00056{bottom:690.426667pt;}
.y15e_c00056{bottom:695.813333pt;}
.y160_c00056{bottom:696.573333pt;}
.y15c_c00056{bottom:697.346667pt;}
.y15b_c00056{bottom:699.653333pt;}
.y15f_c00056{bottom:701.186667pt;}
.y163_c00056{bottom:702.720000pt;}
.y165_c00056{bottom:704.253333pt;}
.y162_c00056{bottom:705.026667pt;}
.y161_c00056{bottom:705.786667pt;}
.y164_c00056{bottom:707.333333pt;}
.y166_c00056{bottom:708.866667pt;}
.y15d_c00056{bottom:711.933333pt;}
.y152_c00056{bottom:712.706667pt;}
.y155_c00056{bottom:714.240000pt;}
.y157_c00056{bottom:715.773333pt;}
.y158_c00056{bottom:716.546667pt;}
.y153_c00056{bottom:717.306667pt;}
.y154_c00056{bottom:718.080000pt;}
.y159_c00056{bottom:718.853333pt;}
.y156_c00056{bottom:721.146667pt;}
.y14e_c00056{bottom:729.600000pt;}
.y15a_c00056{bottom:730.373333pt;}
.y14c_c00056{bottom:731.906667pt;}
.y148_c00056{bottom:732.666667pt;}
.y149_c00056{bottom:733.440000pt;}
.y14b_c00056{bottom:734.213333pt;}
.y14a_c00056{bottom:735.746667pt;}
.y14d_c00056{bottom:736.506667pt;}
.y150_c00056{bottom:738.813333pt;}
.y151_c00056{bottom:739.586667pt;}
.y14f_c00056{bottom:740.346667pt;}
.y147_c00056{bottom:744.186667pt;}
.y13f_c00056{bottom:745.733333pt;}
.y145_c00056{bottom:747.266667pt;}
.y140_c00056{bottom:748.026667pt;}
.y144_c00056{bottom:749.573333pt;}
.y143_c00056{bottom:750.333333pt;}
.y142_c00056{bottom:751.106667pt;}
.y146_c00056{bottom:751.866667pt;}
.y13e_c00056{bottom:753.413333pt;}
.y141_c00056{bottom:755.706667pt;}
.y138_c00056{bottom:767.226667pt;}
.y137_c00056{bottom:768.000000pt;}
.y13a_c00056{bottom:768.773333pt;}
.y136_c00056{bottom:771.066667pt;}
.y135_c00056{bottom:771.840000pt;}
.y134_c00056{bottom:772.613333pt;}
.y139_c00056{bottom:773.373333pt;}
.y13b_c00056{bottom:774.906667pt;}
.y13c_c00056{bottom:775.680000pt;}
.y13d_c00056{bottom:781.053333pt;}
.y12e_c00056{bottom:784.893333pt;}
.y130_c00056{bottom:786.426667pt;}
.y12f_c00056{bottom:789.506667pt;}
.y12d_c00056{bottom:790.266667pt;}
.y131_c00056{bottom:791.040000pt;}
.y132_c00056{bottom:791.813333pt;}
.y133_c00056{bottom:797.186667pt;}
.y127_c00056{bottom:802.560000pt;}
.y129_c00056{bottom:803.333333pt;}
.y125_c00056{bottom:806.400000pt;}
.y128_c00056{bottom:807.173333pt;}
.y126_c00056{bottom:807.933333pt;}
.y11d_c00056{bottom:808.706667pt;}
.y12a_c00056{bottom:809.466667pt;}
.y12c_c00056{bottom:810.240000pt;}
.y12b_c00056{bottom:813.306667pt;}
.y122_c00056{bottom:814.853333pt;}
.y124_c00056{bottom:816.386667pt;}
.y11e_c00056{bottom:817.146667pt;}
.y11f_c00056{bottom:817.920000pt;}
.y11c_c00056{bottom:818.693333pt;}
.y120_c00056{bottom:819.453333pt;}
.y123_c00056{bottom:820.226667pt;}
.y112_c00056{bottom:820.986667pt;}
.y114_c00056{bottom:821.760000pt;}
.y111_c00056{bottom:822.533333pt;}
.y121_c00056{bottom:823.293333pt;}
.y116_c00056{bottom:824.826667pt;}
.y117_c00056{bottom:825.600000pt;}
.y11a_c00056{bottom:826.373333pt;}
.y113_c00056{bottom:827.133333pt;}
.y119_c00056{bottom:827.906667pt;}
.y118_c00056{bottom:828.666667pt;}
.y11b_c00056{bottom:829.440000pt;}
.y115_c00056{bottom:831.746667pt;}
.y105_c00056{bottom:834.053333pt;}
.y108_c00056{bottom:835.586667pt;}
.y107_c00056{bottom:836.346667pt;}
.y103_c00056{bottom:837.120000pt;}
.y10f_c00056{bottom:837.893333pt;}
.y10a_c00056{bottom:838.653333pt;}
.y10e_c00056{bottom:839.426667pt;}
.y10b_c00056{bottom:840.186667pt;}
.y10d_c00056{bottom:840.960000pt;}
.y10c_c00056{bottom:841.733333pt;}
.y104_c00056{bottom:842.493333pt;}
.y106_c00056{bottom:844.026667pt;}
.y109_c00056{bottom:845.573333pt;}
.y110_c00056{bottom:852.480000pt;}
.yfa_c00056{bottom:858.626667pt;}
.yfd_c00056{bottom:859.386667pt;}
.yff_c00056{bottom:860.933333pt;}
.y101_c00056{bottom:861.693333pt;}
.yfb_c00056{bottom:863.226667pt;}
.yfc_c00056{bottom:864.000000pt;}
.y100_c00056{bottom:864.773333pt;}
.y102_c00056{bottom:865.533333pt;}
.yfe_c00056{bottom:872.453333pt;}
.yf7_c00056{bottom:877.053333pt;}
.yf1_c00056{bottom:877.826667pt;}
.yf2_c00056{bottom:879.360000pt;}
.yf3_c00056{bottom:880.133333pt;}
.yf4_c00056{bottom:880.893333pt;}
.yf5_c00056{bottom:881.666667pt;}
.yf6_c00056{bottom:882.426667pt;}
.yf9_c00056{bottom:883.200000pt;}
.yf8_c00056{bottom:883.973333pt;}
.yf0_c00056{bottom:885.506667pt;}
.yec_c00056{bottom:893.186667pt;}
.yed_c00056{bottom:895.493333pt;}
.yee_c00056{bottom:896.253333pt;}
.yef_c00056{bottom:897.026667pt;}
.ye4_c00056{bottom:897.786667pt;}
.ye2_c00056{bottom:898.560000pt;}
.ye5_c00056{bottom:899.333333pt;}
.yeb_c00056{bottom:900.093333pt;}
.ye1_c00056{bottom:903.173333pt;}
.yde_c00056{bottom:903.933333pt;}
.ye3_c00056{bottom:904.706667pt;}
.ye0_c00056{bottom:905.466667pt;}
.ye6_c00056{bottom:906.240000pt;}
.ydf_c00056{bottom:907.013333pt;}
.ye7_c00056{bottom:907.773333pt;}
.ye8_c00056{bottom:910.080000pt;}
.ye9_c00056{bottom:912.386667pt;}
.yea_c00056{bottom:913.146667pt;}
.yd7_c00056{bottom:913.920000pt;}
.yd8_c00056{bottom:914.693333pt;}
.yda_c00056{bottom:915.453333pt;}
.yd9_c00056{bottom:916.226667pt;}
.yd6_c00056{bottom:916.986667pt;}
.ydb_c00056{bottom:917.760000pt;}
.ydd_c00056{bottom:918.533333pt;}
.ydc_c00056{bottom:919.293333pt;}
.yd0_c00056{bottom:925.440000pt;}
.ycf_c00056{bottom:926.213333pt;}
.yd4_c00056{bottom:927.746667pt;}
.yd5_c00056{bottom:928.506667pt;}
.yd3_c00056{bottom:929.280000pt;}
.yd1_c00056{bottom:930.813333pt;}
.ycd_c00056{bottom:932.346667pt;}
.yce_c00056{bottom:933.120000pt;}
.yd2_c00056{bottom:936.960000pt;}
.yc4_c00056{bottom:944.640000pt;}
.yca_c00056{bottom:946.946667pt;}
.yc3_c00056{bottom:947.706667pt;}
.yc8_c00056{bottom:948.480000pt;}
.yc5_c00056{bottom:949.253333pt;}
.yc9_c00056{bottom:950.013333pt;}
.yc6_c00056{bottom:950.786667pt;}
.yc2_c00056{bottom:951.546667pt;}
.ycb_c00056{bottom:954.626667pt;}
.ycc_c00056{bottom:955.386667pt;}
.yc7_c00056{bottom:960.000000pt;}
.ybe_c00056{bottom:964.613333pt;}
.ybb_c00056{bottom:966.146667pt;}
.ybc_c00056{bottom:969.986667pt;}
.yc0_c00056{bottom:970.746667pt;}
.ybd_c00056{bottom:971.520000pt;}
.y2af_c00056{bottom:972.293333pt;}
.yb7_c00056{bottom:973.053333pt;}
.yc1_c00056{bottom:973.826667pt;}
.ybf_c00056{bottom:974.586667pt;}
.yb9_c00056{bottom:976.133333pt;}
.y2ae_c00056{bottom:977.666667pt;}
.yb8_c00056{bottom:981.506667pt;}
.yba_c00056{bottom:982.266667pt;}
.yaf_c00056{bottom:983.040000pt;}
.yb6_c00056{bottom:983.813333pt;}
.yb5_c00056{bottom:984.573333pt;}
.yb1_c00056{bottom:985.346667pt;}
.yae_c00056{bottom:988.413333pt;}
.yb0_c00056{bottom:989.946667pt;}
.yb2_c00056{bottom:993.026667pt;}
.y2ad_c00056{bottom:993.786667pt;}
.yb3_c00056{bottom:994.560000pt;}
.yb4_c00056{bottom:996.093333pt;}
.yab_c00056{bottom:998.400000pt;}
.ya9_c00056{bottom:999.173333pt;}
.yad_c00056{bottom:999.933333pt;}
.ya5_c00056{bottom:1001.466667pt;}
.ya7_c00056{bottom:1002.240000pt;}
.ya6_c00056{bottom:1003.013333pt;}
.yaa_c00056{bottom:1003.773333pt;}
.yac_c00056{bottom:1006.853333pt;}
.ya1_c00056{bottom:1007.613333pt;}
.ya2_c00056{bottom:1008.386667pt;}
.ya3_c00056{bottom:1009.920000pt;}
.ya8_c00056{bottom:1011.453333pt;}
.ya4_c00056{bottom:1016.066667pt;}
.y9f_c00056{bottom:1016.826667pt;}
.ya0_c00056{bottom:1017.600000pt;}
.y9d_c00056{bottom:1018.373333pt;}
.y92_c00056{bottom:1019.133333pt;}
.y9e_c00056{bottom:1020.666667pt;}
.y93_c00056{bottom:1021.440000pt;}
.y91_c00056{bottom:1022.973333pt;}
.y90_c00056{bottom:1024.506667pt;}
.y96_c00056{bottom:1026.053333pt;}
.y94_c00056{bottom:1026.813333pt;}
.y95_c00056{bottom:1027.586667pt;}
.y99_c00056{bottom:1028.346667pt;}
.y97_c00056{bottom:1029.120000pt;}
.y9a_c00056{bottom:1029.893333pt;}
.y98_c00056{bottom:1030.653333pt;}
.y9b_c00056{bottom:1031.426667pt;}
.y8f_c00056{bottom:1032.960000pt;}
.y8b_c00056{bottom:1035.266667pt;}
.y9c_c00056{bottom:1036.026667pt;}
.y89_c00056{bottom:1036.800000pt;}
.y8e_c00056{bottom:1040.640000pt;}
.y8d_c00056{bottom:1041.413333pt;}
.y81_c00056{bottom:1042.946667pt;}
.y8a_c00056{bottom:1043.706667pt;}
.y8c_c00056{bottom:1044.480000pt;}
.y82_c00056{bottom:1045.253333pt;}
.y83_c00056{bottom:1046.013333pt;}
.y85_c00056{bottom:1049.093333pt;}
.y86_c00056{bottom:1049.853333pt;}
.y88_c00056{bottom:1050.626667pt;}
.y7e_c00056{bottom:1051.386667pt;}
.y84_c00056{bottom:1052.160000pt;}
.y7f_c00056{bottom:1052.933333pt;}
.y80_c00056{bottom:1053.693333pt;}
.y87_c00056{bottom:1054.466667pt;}
.y78_c00056{bottom:1056.000000pt;}
.y76_c00056{bottom:1057.533333pt;}
.y79_c00056{bottom:1058.306667pt;}
.y7d_c00056{bottom:1059.066667pt;}
.y77_c00056{bottom:1059.840000pt;}
.y7c_c00056{bottom:1060.613333pt;}
.y70_c00056{bottom:1061.373333pt;}
.y75_c00056{bottom:1062.146667pt;}
.y71_c00056{bottom:1062.906667pt;}
.y7a_c00056{bottom:1063.680000pt;}
.y7b_c00056{bottom:1065.986667pt;}
.y6f_c00056{bottom:1069.053333pt;}
.y72_c00056{bottom:1071.360000pt;}
.y74_c00056{bottom:1072.893333pt;}
.y65_c00056{bottom:1074.426667pt;}
.y73_c00056{bottom:1075.200000pt;}
.y67_c00056{bottom:1075.973333pt;}
.y66_c00056{bottom:1079.040000pt;}
.y68_c00056{bottom:1080.573333pt;}
.y6c_c00056{bottom:1081.346667pt;}
.y64_c00056{bottom:1082.106667pt;}
.y6d_c00056{bottom:1085.186667pt;}
.y6a_c00056{bottom:1085.946667pt;}
.y6b_c00056{bottom:1086.720000pt;}
.y6e_c00056{bottom:1088.253333pt;}
.y69_c00056{bottom:1089.026667pt;}
.y5d_c00056{bottom:1092.093333pt;}
.y61_c00056{bottom:1092.866667pt;}
.y5c_c00056{bottom:1093.626667pt;}
.y62_c00056{bottom:1094.400000pt;}
.y5f_c00056{bottom:1095.933333pt;}
.y60_c00056{bottom:1096.706667pt;}
.y57_c00056{bottom:1097.466667pt;}
.y55_c00056{bottom:1098.240000pt;}
.y58_c00056{bottom:1099.013333pt;}
.y5e_c00056{bottom:1099.773333pt;}
.y56_c00056{bottom:1103.613333pt;}
.y63_c00056{bottom:1105.146667pt;}
.y5a_c00056{bottom:1106.693333pt;}
.y5b_c00056{bottom:1107.453333pt;}
.y59_c00056{bottom:1108.226667pt;}
.y4c_c00056{bottom:1109.760000pt;}
.y4e_c00056{bottom:1110.533333pt;}
.y4b_c00056{bottom:1111.293333pt;}
.y4d_c00056{bottom:1112.066667pt;}
.y50_c00056{bottom:1112.826667pt;}
.y4f_c00056{bottom:1113.600000pt;}
.y54_c00056{bottom:1114.373333pt;}
.y52_c00056{bottom:1115.133333pt;}
.y4a_c00056{bottom:1115.906667pt;}
.y53_c00056{bottom:1118.973333pt;}
.y51_c00056{bottom:1119.746667pt;}
.y43_c00056{bottom:1125.893333pt;}
.y48_c00056{bottom:1126.653333pt;}
.y46_c00056{bottom:1128.186667pt;}
.y47_c00056{bottom:1128.960000pt;}
.y45_c00056{bottom:1129.733333pt;}
.y42_c00056{bottom:1131.266667pt;}
.y49_c00056{bottom:1132.026667pt;}
.y44_c00056{bottom:1133.573333pt;}
.y3e_c00056{bottom:1148.933333pt;}
.y3a_c00056{bottom:1149.693333pt;}
.y3b_c00056{bottom:1151.226667pt;}
.y3c_c00056{bottom:1152.000000pt;}
.y3d_c00056{bottom:1152.773333pt;}
.y3f_c00056{bottom:1153.533333pt;}
.y40_c00056{bottom:1156.613333pt;}
.y41_c00056{bottom:1162.746667pt;}
.y2e_c00056{bottom:1164.293333pt;}
.y2f_c00056{bottom:1165.053333pt;}
.y30_c00056{bottom:1165.826667pt;}
.y2c_c00056{bottom:1166.586667pt;}
.y2d_c00056{bottom:1169.666667pt;}
.y37_c00056{bottom:1171.200000pt;}
.y39_c00056{bottom:1171.973333pt;}
.y32_c00056{bottom:1172.733333pt;}
.y33_c00056{bottom:1173.506667pt;}
.y34_c00056{bottom:1174.266667pt;}
.y31_c00056{bottom:1175.040000pt;}
.y36_c00056{bottom:1175.813333pt;}
.y38_c00056{bottom:1176.573333pt;}
.y2a9_c00056{bottom:1178.106667pt;}
.y35_c00056{bottom:1178.880000pt;}
.y23_c00056{bottom:1181.946667pt;}
.y25_c00056{bottom:1182.720000pt;}
.y26_c00056{bottom:1183.493333pt;}
.y27_c00056{bottom:1184.253333pt;}
.y29_c00056{bottom:1185.026667pt;}
.y28_c00056{bottom:1185.786667pt;}
.y2a_c00056{bottom:1186.560000pt;}
.y24_c00056{bottom:1187.333333pt;}
.y2b_c00056{bottom:1188.093333pt;}
.y1e_c00056{bottom:1189.626667pt;}
.y13_c00056{bottom:1191.933333pt;}
.yf_c00056{bottom:1193.466667pt;}
.y1c_c00056{bottom:1195.773333pt;}
.y1f_c00056{bottom:1196.546667pt;}
.y1b_c00056{bottom:1197.306667pt;}
.y20_c00056{bottom:1198.853333pt;}
.y1d_c00056{bottom:1199.613333pt;}
.y10_c00056{bottom:1200.386667pt;}
.y21_c00056{bottom:1201.146667pt;}
.y22_c00056{bottom:1201.920000pt;}
.y12_c00056{bottom:1202.693333pt;}
.y15_c00056{bottom:1204.226667pt;}
.ye_c00056{bottom:1204.986667pt;}
.y16_c00056{bottom:1205.760000pt;}
.y11_c00056{bottom:1206.533333pt;}
.y14_c00056{bottom:1207.293333pt;}
.y18_c00056{bottom:1208.066667pt;}
.y1a_c00056{bottom:1208.826667pt;}
.y17_c00056{bottom:1210.373333pt;}
.y19_c00056{bottom:1211.133333pt;}
.y7_c00056{bottom:1214.213333pt;}
.y9_c00056{bottom:1215.746667pt;}
.y2ac_c00056{bottom:1217.280000pt;}
.ya_c00056{bottom:1218.053333pt;}
.yd_c00056{bottom:1219.586667pt;}
.yb_c00056{bottom:1220.346667pt;}
.y8_c00056{bottom:1223.426667pt;}
.yc_c00056{bottom:1224.960000pt;}
.y2_c00056{bottom:1239.546667pt;}
.y3_c00056{bottom:1241.853333pt;}
.y6_c00056{bottom:1246.466667pt;}
.y5_c00056{bottom:1247.226667pt;}
.y4_c00056{bottom:1248.000000pt;}
.y1_c00056{bottom:1265.666667pt;}
.y2ab_c00056{bottom:1267.973333pt;}
.y2aa_c00056{bottom:1271.813333pt;}
.y2a8_c00056{bottom:1281.786667pt;}
.y2a7_c00056{bottom:1285.626667pt;}
.h1a_c00056{height:2.764500pt;}
.h21_c00056{height:4.799479pt;}
.h4_c00056{height:5.519401pt;}
.h28_c00056{height:7.689167pt;}
.h1c_c00056{height:8.303099pt;}
.h1d_c00056{height:11.038802pt;}
.h1f_c00056{height:13.822500pt;}
.h1e_c00056{height:16.606198pt;}
.h14_c00056{height:19.341901pt;}
.h19_c00056{height:22.125599pt;}
.h26_c00056{height:23.049167pt;}
.h17_c00056{height:24.861302pt;}
.h2_c00056{height:27.645000pt;}
.h18_c00056{height:30.428698pt;}
.h24_c00056{height:30.685000pt;}
.h1b_c00056{height:33.164401pt;}
.h16_c00056{height:35.948099pt;}
.h15_c00056{height:38.683802pt;}
.hd_c00056{height:41.467500pt;}
.h10_c00056{height:44.251198pt;}
.h5_c00056{height:46.986901pt;}
.h22_c00056{height:47.291198pt;}
.h6_c00056{height:49.770599pt;}
.h7_c00056{height:52.506302pt;}
.h8_c00056{height:55.290000pt;}
.h12_c00056{height:58.073698pt;}
.h11_c00056{height:60.809401pt;}
.he_c00056{height:63.593099pt;}
.hc_c00056{height:66.328802pt;}
.h3_c00056{height:69.112500pt;}
.h20_c00056{height:71.896198pt;}
.hf_c00056{height:74.631901pt;}
.h9_c00056{height:77.415599pt;}
.h13_c00056{height:80.151302pt;}
.hb_c00056{height:82.935000pt;}
.ha_c00056{height:85.718698pt;}
.h23_c00056{height:88.454401pt;}
.h27_c00056{height:91.238099pt;}
.h25_c00056{height:99.541198pt;}
.h0_c00056{height:1347.066667pt;}
.h1_c00056{height:1347.333333pt;}
.w0_c00056{width:959.226667pt;}
.w1_c00056{width:959.333333pt;}
.x0_c00056{left:0.000000pt;}
.x11a_c00056{left:142.080000pt;}
.x7b_c00056{left:145.146667pt;}
.x11d_c00056{left:147.453333pt;}
.x119_c00056{left:155.906667pt;}
.x8a_c00056{left:157.440000pt;}
.xda_c00056{left:162.053333pt;}
.x14a_c00056{left:165.120000pt;}
.xd2_c00056{left:167.426667pt;}
.x130_c00056{left:168.960000pt;}
.x126_c00056{left:173.573333pt;}
.x121_c00056{left:178.946667pt;}
.x127_c00056{left:183.546667pt;}
.xae_c00056{left:185.093333pt;}
.x122_c00056{left:188.160000pt;}
.x8_c00056{left:190.466667pt;}
.x9a_c00056{left:192.000000pt;}
.xc3_c00056{left:193.533333pt;}
.xf9_c00056{left:195.066667pt;}
.x139_c00056{left:196.613333pt;}
.x2_c00056{left:198.906667pt;}
.x13_c00056{left:200.453333pt;}
.xa4_c00056{left:201.986667pt;}
.xaf_c00056{left:204.293333pt;}
.x12a_c00056{left:205.826667pt;}
.xdb_c00056{left:207.360000pt;}
.xb0_c00056{left:209.666133pt;}
.x112_c00056{left:211.200000pt;}
.x12e_c00056{left:213.506667pt;}
.x2c_c00056{left:215.029205pt;}
.x144_c00056{left:218.880000pt;}
.xd3_c00056{left:222.720000pt;}
.x5f_c00056{left:225.026667pt;}
.x12b_c00056{left:227.333333pt;}
.x10b_c00056{left:228.866667pt;}
.x6a_c00056{left:231.173333pt;}
.x8b_c00056{left:232.706667pt;}
.x51_c00056{left:236.546667pt;}
.x14_c00056{left:238.853333pt;}
.xea_c00056{left:240.386667pt;}
.x146_c00056{left:241.920000pt;}
.x6b_c00056{left:243.453333pt;}
.xe5_c00056{left:244.986667pt;}
.x15_c00056{left:248.066667pt;}
.x9_c00056{left:249.600000pt;}
.xdc_c00056{left:251.906667pt;}
.x60_c00056{left:254.213333pt;}
.xf3_c00056{left:256.506667pt;}
.x13b_c00056{left:258.053333pt;}
.x7c_c00056{left:260.346667pt;}
.x2d_c00056{left:261.893333pt;}
.xc4_c00056{left:263.426667pt;}
.xa5_c00056{left:264.960000pt;}
.xa_c00056{left:266.493333pt;}
.x42_c00056{left:269.573333pt;}
.xe3_c00056{left:271.106667pt;}
.x35_c00056{left:272.640000pt;}
.x3_c00056{left:275.706667pt;}
.x43_c00056{left:277.253333pt;}
.x7d_c00056{left:278.786667pt;}
.xd4_c00056{left:281.093333pt;}
.x143_c00056{left:282.626667pt;}
.xbe_c00056{left:284.160000pt;}
.x52_c00056{left:285.693333pt;}
.x4_c00056{left:288.000000pt;}
.x108_c00056{left:290.306667pt;}
.x8c_c00056{left:293.373333pt;}
.x36_c00056{left:295.680000pt;}
.x118_c00056{left:297.986667pt;}
.xa6_c00056{left:299.520000pt;}
.x128_c00056{left:301.053333pt;}
.x16_c00056{left:302.586667pt;}
.x44_c00056{left:305.666667pt;}
.xba_c00056{left:307.200000pt;}
.x12f_c00056{left:309.506667pt;}
.xcc_c00056{left:311.813333pt;}
.x61_c00056{left:313.346667pt;}
.x147_c00056{left:314.880000pt;}
.x5_c00056{left:316.413333pt;}
.x13f_c00056{left:318.720000pt;}
.x6c_c00056{left:320.253333pt;}
.x92_c00056{left:321.786667pt;}
.x13c_c00056{left:323.333333pt;}
.x5a_c00056{left:324.866667pt;}
.x17_c00056{left:327.173333pt;}
.x9b_c00056{left:330.240000pt;}
.x71_c00056{left:332.546667pt;}
.xbb_c00056{left:334.853333pt;}
.xc5_c00056{left:337.920000pt;}
.x62_c00056{left:340.226667pt;}
.x53_c00056{left:344.066667pt;}
.x37_c00056{left:346.373333pt;}
.x13d_c00056{left:347.906667pt;}
.xb4_c00056{left:349.440000pt;}
.xdf_c00056{left:350.973333pt;}
.x123_c00056{left:354.053333pt;}
.xe6_c00056{left:355.586667pt;}
.xbf_c00056{left:357.893333pt;}
.x63_c00056{left:360.960000pt;}
.x18_c00056{left:362.493333pt;}
.xef_c00056{left:364.026667pt;}
.xf4_c00056{left:365.573333pt;}
.x11e_c00056{left:367.106667pt;}
.x8d_c00056{left:368.640000pt;}
.x45_c00056{left:370.946667pt;}
.x19_c00056{left:372.480000pt;}
.xe7_c00056{left:374.786667pt;}
.x2e_c00056{left:377.093333pt;}
.x111_c00056{left:379.386667pt;}
.x7e_c00056{left:380.933333pt;}
.x100_c00056{left:382.466667pt;}
.x10c_c00056{left:384.000000pt;}
.xb_c00056{left:385.533333pt;}
.x9c_c00056{left:388.613333pt;}
.x1a_c00056{left:390.146667pt;}
.x72_c00056{left:392.453333pt;}
.x134_c00056{left:393.986667pt;}
.xc6_c00056{left:395.520000pt;}
.x84_c00056{left:397.053333pt;}
.xca_c00056{left:399.360000pt;}
.x54_c00056{left:400.893333pt;}
.xe0_c00056{left:402.426667pt;}
.x129_c00056{left:403.973333pt;}
.x46_c00056{left:406.266667pt;}
.x113_c00056{left:408.573333pt;}
.xfa_c00056{left:410.880000pt;}
.x73_c00056{left:413.186667pt;}
.xcd_c00056{left:415.493333pt;}
.x93_c00056{left:417.026667pt;}
.xa7_c00056{left:418.560000pt;}
.x101_c00056{left:420.866667pt;}
.x9d_c00056{left:423.173333pt;}
.xc7_c00056{left:424.706667pt;}
.x64_c00056{left:426.240000pt;}
.x6d_c00056{left:428.546667pt;}
.x55_c00056{left:430.080000pt;}
.x140_c00056{left:431.613333pt;}
.xce_c00056{left:433.920000pt;}
.x2f_c00056{left:436.226667pt;}
.x10e_c00056{left:437.760000pt;}
.x1b_c00056{left:439.293333pt;}
.x6_c00056{left:441.600000pt;}
.x7f_c00056{left:443.906667pt;}
.x9e_c00056{left:446.973333pt;}
.x1c_c00056{left:449.280000pt;}
.xb1_c00056{left:450.813333pt;}
.xee_c00056{left:453.120000pt;}
.x94_c00056{left:455.426667pt;}
.x11b_c00056{left:458.493333pt;}
.xb5_c00056{left:460.026667pt;}
.x135_c00056{left:464.640000pt;}
.xc_c00056{left:467.706667pt;}
.x80_c00056{left:469.253333pt;}
.xe8_c00056{left:472.320000pt;}
.x12c_c00056{left:474.626667pt;}
.xc8_c00056{left:479.226667pt;}
.xfb_c00056{left:480.773333pt;}
.xeb_c00056{left:482.306667pt;}
.x38_c00056{left:484.613333pt;}
.xd_c00056{left:486.146667pt;}
.x1d_c00056{left:487.680000pt;}
.xb2_c00056{left:489.986667pt;}
.xf7_c00056{left:491.520000pt;}
.x85_c00056{left:493.826667pt;}
.x137_c00056{left:495.360000pt;}
.x148_c00056{left:496.893333pt;}
.x124_c00056{left:498.426667pt;}
.x65_c00056{left:499.973333pt;}
.x1e_c00056{left:501.506667pt;}
.x74_c00056{left:503.040000pt;}
.x109_c00056{left:504.573333pt;}
.x131_c00056{left:506.106667pt;}
.x56_c00056{left:507.653333pt;}
.x47_c00056{left:509.186667pt;}
.x11c_c00056{left:510.720000pt;}
.x39_c00056{left:512.253333pt;}
.x86_c00056{left:514.560000pt;}
.xf0_c00056{left:516.866667pt;}
.x6e_c00056{left:518.400000pt;}
.xa8_c00056{left:519.933333pt;}
.x48_c00056{left:522.240000pt;}
.x75_c00056{left:525.306667pt;}
.x81_c00056{left:526.853333pt;}
.x66_c00056{left:529.146667pt;}
.x116_c00056{left:530.693333pt;}
.xb6_c00056{left:532.226667pt;}
.x141_c00056{left:533.760000pt;}
.x95_c00056{left:536.066667pt;}
.xcf_c00056{left:537.600000pt;}
.x3a_c00056{left:539.906667pt;}
.x76_c00056{left:542.213333pt;}
.xe_c00056{left:545.280000pt;}
.xd5_c00056{left:546.813333pt;}
.xe4_c00056{left:549.120000pt;}
.x1f_c00056{left:550.653333pt;}
.x5b_c00056{left:552.960000pt;}
.xdd_c00056{left:554.493333pt;}
.xc0_c00056{left:556.026667pt;}
.xf8_c00056{left:557.573333pt;}
.xc9_c00056{left:559.866667pt;}
.x67_c00056{left:562.173333pt;}
.x105_c00056{left:564.480000pt;}
.x103_c00056{left:566.013333pt;}
.xe2_c00056{left:567.546667pt;}
.x20_c00056{left:569.853333pt;}
.x3b_c00056{left:571.386667pt;}
.xd6_c00056{left:573.693333pt;}
.x82_c00056{left:577.533333pt;}
.x142_c00056{left:579.066667pt;}
.x96_c00056{left:580.613333pt;}
.xa9_c00056{left:582.146667pt;}
.x68_c00056{left:583.680000pt;}
.x11f_c00056{left:585.213333pt;}
.x57_c00056{left:586.746667pt;}
.xf1_c00056{left:588.293333pt;}
.xfc_c00056{left:589.826667pt;}
.x49_c00056{left:591.360000pt;}
.xb7_c00056{left:592.893333pt;}
.x114_c00056{left:594.426667pt;}
.xe1_c00056{left:597.506667pt;}
.x4a_c00056{left:599.040000pt;}
.x97_c00056{left:600.573333pt;}
.x9f_c00056{left:602.106667pt;}
.xfe_c00056{left:603.653333pt;}
.xc1_c00056{left:606.720000pt;}
.xf_c00056{left:608.253333pt;}
.x3c_c00056{left:610.560000pt;}
.x125_c00056{left:612.093333pt;}
.x30_c00056{left:613.626667pt;}
.x58_c00056{left:615.933333pt;}
.xaa_c00056{left:617.466667pt;}
.x106_c00056{left:619.773333pt;}
.x7_c00056{left:622.080000pt;}
.x5c_c00056{left:624.386667pt;}
.x87_c00056{left:625.920000pt;}
.xcb_c00056{left:628.226667pt;}
.x138_c00056{left:629.760000pt;}
.xd0_c00056{left:632.826667pt;}
.x77_c00056{left:634.373333pt;}
.xc2_c00056{left:636.666667pt;}
.x31_c00056{left:640.506667pt;}
.xb3_c00056{left:642.053333pt;}
.x88_c00056{left:646.653333pt;}
.xde_c00056{left:648.186667pt;}
.x3d_c00056{left:649.733333pt;}
.xab_c00056{left:651.266667pt;}
.xec_c00056{left:652.800000pt;}
.x132_c00056{left:654.333333pt;}
.x149_c00056{left:656.640000pt;}
.x6f_c00056{left:658.173333pt;}
.xa0_c00056{left:660.480000pt;}
.x13e_c00056{left:662.013333pt;}
.x145_c00056{left:663.546667pt;}
.x1_c00056{left:665.093333pt;}
.x136_c00056{left:667.386667pt;}
.x4b_c00056{left:668.933333pt;}
.x21_c00056{left:670.466667pt;}
.xb8_c00056{left:672.000000pt;}
.xa1_c00056{left:674.306667pt;}
.x10a_c00056{left:676.613333pt;}
.x12d_c00056{left:678.146667pt;}
.x3e_c00056{left:679.680000pt;}
.x104_c00056{left:681.213333pt;}
.x22_c00056{left:683.520000pt;}
.xbc_c00056{left:685.826667pt;}
.xed_c00056{left:687.360000pt;}
.x3f_c00056{left:689.666667pt;}
.x78_c00056{left:691.973333pt;}
.x98_c00056{left:694.266667pt;}
.x5d_c00056{left:695.813333pt;}
.x107_c00056{left:698.106667pt;}
.xd7_c00056{left:699.653333pt;}
.xf5_c00056{left:701.946667pt;}
.x5e_c00056{left:703.493333pt;}
.x23_c00056{left:705.026667pt;}
.x13a_c00056{left:706.560000pt;}
.x69_c00056{left:708.093333pt;}
.x4c_c00056{left:709.626667pt;}
.x40_c00056{left:711.933333pt;}
.x24_c00056{left:714.240000pt;}
.x25_c00056{left:717.306667pt;}
.x115_c00056{left:718.853333pt;}
.xbd_c00056{left:721.146667pt;}
.x10_c00056{left:722.693333pt;}
.x79_c00056{left:724.226667pt;}
.x83_c00056{left:726.533333pt;}
.xd8_c00056{left:728.066667pt;}
.x70_c00056{left:729.600000pt;}
.x89_c00056{left:732.666667pt;}
.x32_c00056{left:734.973333pt;}
.x26_c00056{left:736.506667pt;}
.xfd_c00056{left:738.813333pt;}
.xff_c00056{left:740.346667pt;}
.x7a_c00056{left:742.653333pt;}
.x27_c00056{left:745.733333pt;}
.xf2_c00056{left:747.266667pt;}
.x11_c00056{left:751.106667pt;}
.x41_c00056{left:752.640000pt;}
.x10f_c00056{left:754.946667pt;}
.xac_c00056{left:757.253333pt;}
.xd9_c00056{left:759.546667pt;}
.x133_c00056{left:761.093333pt;}
.xd1_c00056{left:764.160000pt;}
.x59_c00056{left:765.693333pt;}
.x102_c00056{left:767.226667pt;}
.x120_c00056{left:768.773333pt;}
.x28_c00056{left:771.840000pt;}
.x4d_c00056{left:773.373333pt;}
.xad_c00056{left:774.906667pt;}
.xa2_c00056{left:777.213333pt;}
.x8e_c00056{left:778.746667pt;}
.xf6_c00056{left:780.293333pt;}
.x4e_c00056{left:783.360000pt;}
.x29_c00056{left:785.666667pt;}
.x10d_c00056{left:787.200000pt;}
.x99_c00056{left:788.733333pt;}
.x33_c00056{left:791.040000pt;}
.x8f_c00056{left:792.573333pt;}
.xb9_c00056{left:795.653333pt;}
.xe9_c00056{left:798.720000pt;}
.x90_c00056{left:801.026667pt;}
.x4f_c00056{left:804.093333pt;}
.x34_c00056{left:809.466667pt;}
.x91_c00056{left:811.013333pt;}
.x14b_c00056{left:812.546667pt;}
.x2a_c00056{left:814.080000pt;}
.x50_c00056{left:817.146667pt;}
.xa3_c00056{left:819.453333pt;}
.x110_c00056{left:821.760000pt;}
.x117_c00056{left:823.293333pt;}
.x12_c00056{left:828.666667pt;}
.x2b_c00056{left:841.733333pt;}
.x157_c00056{left:850.946667pt;}
.x158_c00056{left:856.320000pt;}
.x159_c00056{left:876.293333pt;}
.x14d_c00056{left:882.426667pt;}
.x151_c00056{left:887.813333pt;}
.x153_c00056{left:897.026667pt;}
.x152_c00056{left:899.333333pt;}
.x14c_c00056{left:917.760000pt;}
.x14f_c00056{left:924.666667pt;}
.x150_c00056{left:932.346667pt;}
.x15a_c00056{left:940.026667pt;}
.x14e_c00056{left:941.573333pt;}
.x154_c00056{left:944.640000pt;}
.x155_c00056{left:951.546667pt;}
.x156_c00056{left:953.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5bbe954048d3124fe9fb3476.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.109863;font-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_c00057{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m9_c00057{transform:matrix(0.080425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080425,0.000000,0.000000,0.250000,0,0);}
.mb_c00057{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);}
.mc_c00057{transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);}
.md_c00057{transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);}
.m1c_c00057{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m24_c00057{transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);}
.m1e_c00057{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.me_c00057{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m6_c00057{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m25_c00057{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);}
.m12_c00057{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);}
.m7_c00057{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);}
.mf_c00057{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);}
.ma_c00057{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);}
.m15_c00057{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c00057{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);}
.m18_c00057{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);}
.m8_c00057{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);}
.m4_c00057{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m22_c00057{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m14_c00057{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2_c00057{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);}
.m1b_c00057{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m19_c00057{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m23_c00057{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00057{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);}
.m16_c00057{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);}
.m0_c00057{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m21_c00057{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m10_c00057{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m17_c00057{transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);}
.m1_c00057{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m11_c00057{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00057{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m3_c00057{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m26_c00057{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m20_c00057{transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00057{transform:matrix(4.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.550000,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;}
.fs12_c00057{font-size:3.456000px;}
.fs4_c00057{font-size:6.000000px;}
.fs9_c00057{font-size:6.900000px;}
.fs13_c00057{font-size:10.380000px;}
.fs2_c00057{font-size:13.800000px;}
.fs0_c00057{font-size:17.280000px;}
.fsf_c00057{font-size:20.760000px;}
.fs1_c00057{font-size:24.180000px;}
.fsd_c00057{font-size:27.660000px;}
.fs3_c00057{font-size:34.560000px;}
.fsc_c00057{font-size:38.040000px;}
.fse_c00057{font-size:41.460000px;}
.fs6_c00057{font-size:48.360000px;}
.fs7_c00057{font-size:51.840000px;}
.fs5_c00057{font-size:55.320000px;}
.fs10_c00057{font-size:58.740000px;}
.fs11_c00057{font-size:65.640000px;}
.fsa_c00057{font-size:69.120000px;}
.fsb_c00057{font-size:72.600000px;}
.fs8_c00057{font-size:96.780000px;}
.fs15_c00057{font-size:100.200000px;}
.fs14_c00057{font-size:110.580000px;}
.y0_c00057{bottom:0.000000px;}
.y19_c00057{bottom:529.635000px;}
.y18_c00057{bottom:540.000000px;}
.y27_c00057{bottom:592.710000px;}
.y28_c00057{bottom:602.205000px;}
.y29_c00057{bottom:603.075000px;}
.y20_c00057{bottom:615.165000px;}
.y1f_c00057{bottom:618.630000px;}
.y26_c00057{bottom:619.485000px;}
.y1e_c00057{bottom:621.210000px;}
.y25_c00057{bottom:622.080000px;}
.y24_c00057{bottom:623.805000px;}
.y22_c00057{bottom:625.530000px;}
.y23_c00057{bottom:627.270000px;}
.y21_c00057{bottom:628.125000px;}
.y1d_c00057{bottom:632.445000px;}
.y16_c00057{bottom:633.315000px;}
.y15_c00057{bottom:634.170000px;}
.y1c_c00057{bottom:635.040000px;}
.y14_c00057{bottom:643.680000px;}
.y13_c00057{bottom:646.275000px;}
.y1b_c00057{bottom:651.450000px;}
.y12_c00057{bottom:654.915000px;}
.y11_c00057{bottom:655.770000px;}
.ye_c00057{bottom:667.005000px;}
.yd_c00057{bottom:669.600000px;}
.yf_c00057{bottom:673.050000px;}
.y10_c00057{bottom:673.920000px;}
.yc_c00057{bottom:691.200000px;}
.y17_c00057{bottom:692.070000px;}
.yb_c00057{bottom:693.795000px;}
.ya_c00057{bottom:822.525000px;}
.y9_c00057{bottom:847.590000px;}
.y8_c00057{bottom:956.445000px;}
.y7_c00057{bottom:971.130000px;}
.y5_c00057{bottom:980.640000px;}
.y6_c00057{bottom:983.235000px;}
.y4_c00057{bottom:984.960000px;}
.y3_c00057{bottom:1011.750000px;}
.y2_c00057{bottom:1018.650000px;}
.y1a_c00057{bottom:1423.875000px;}
.y1_c00057{bottom:1434.240000px;}
.h14_c00057{height:3.110063px;}
.h6_c00057{height:5.399414px;}
.hb_c00057{height:6.209326px;}
.h15_c00057{height:9.340986px;}
.h4_c00057{height:12.418652px;}
.h2_c00057{height:15.550313px;}
.h11_c00057{height:18.681973px;}
.h3_c00057{height:21.759639px;}
.hf_c00057{height:24.891299px;}
.h5_c00057{height:31.100625px;}
.he_c00057{height:34.232285px;}
.h10_c00057{height:37.309951px;}
.h8_c00057{height:43.519277px;}
.h9_c00057{height:46.650937px;}
.h7_c00057{height:49.782598px;}
.h12_c00057{height:52.860264px;}
.h13_c00057{height:59.069590px;}
.hc_c00057{height:62.201250px;}
.hd_c00057{height:65.332910px;}
.ha_c00057{height:87.092549px;}
.h17_c00057{height:90.170215px;}
.h16_c00057{height:99.511201px;}
.h1_c00057{height:1507.500000px;}
.h0_c00057{height:1507.680000px;}
.w1_c00057{width:1059.000000px;}
.w0_c00057{width:1059.270000px;}
.x0_c00057{left:0.000000px;}
.x5_c00057{left:1.725000px;}
.x6_c00057{left:9.510000px;}
.x1_c00057{left:12.090000px;}
.x3_c00057{left:13.830000px;}
.x7_c00057{left:19.875000px;}
.x8_c00057{left:33.690000px;}
.x4_c00057{left:45.795000px;}
.xa_c00057{left:57.030000px;}
.x9_c00057{left:59.610000px;}
.x2_c00057{left:121.830000px;}
.xe_c00057{left:123.555000px;}
.xc_c00057{left:127.875000px;}
.xb_c00057{left:146.880000px;}
.xd_c00057{left:165.885000px;}
.xf_c00057{left:197.850000px;}
.x13_c00057{left:229.830000px;}
.x14_c00057{left:236.730000px;}
.x10_c00057{left:238.470000px;}
.x11_c00057{left:307.590000px;}
.x15_c00057{left:333.510000px;}
.x16_c00057{left:355.110000px;}
.x17_c00057{left:371.520000px;}
.x1d_c00057{left:383.610000px;}
.x18_c00057{left:390.525000px;}
.x12_c00057{left:401.760000px;}
.x19_c00057{left:444.090000px;}
.x1a_c00057{left:492.480000px;}
.x1b_c00057{left:527.910000px;}
.x1c_c00057{left:554.685000px;}
.x1e_c00057{left:559.875000px;}
.x1f_c00057{left:565.920000px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws0_c00057{word-spacing:0.000000pt;}
.fs12_c00057{font-size:3.072000pt;}
.fs4_c00057{font-size:5.333333pt;}
.fs9_c00057{font-size:6.133333pt;}
.fs13_c00057{font-size:9.226667pt;}
.fs2_c00057{font-size:12.266667pt;}
.fs0_c00057{font-size:15.360000pt;}
.fsf_c00057{font-size:18.453333pt;}
.fs1_c00057{font-size:21.493333pt;}
.fsd_c00057{font-size:24.586667pt;}
.fs3_c00057{font-size:30.720000pt;}
.fsc_c00057{font-size:33.813333pt;}
.fse_c00057{font-size:36.853333pt;}
.fs6_c00057{font-size:42.986667pt;}
.fs7_c00057{font-size:46.080000pt;}
.fs5_c00057{font-size:49.173333pt;}
.fs10_c00057{font-size:52.213333pt;}
.fs11_c00057{font-size:58.346667pt;}
.fsa_c00057{font-size:61.440000pt;}
.fsb_c00057{font-size:64.533333pt;}
.fs8_c00057{font-size:86.026667pt;}
.fs15_c00057{font-size:89.066667pt;}
.fs14_c00057{font-size:98.293333pt;}
.y0_c00057{bottom:0.000000pt;}
.y19_c00057{bottom:470.786667pt;}
.y18_c00057{bottom:480.000000pt;}
.y27_c00057{bottom:526.853333pt;}
.y28_c00057{bottom:535.293333pt;}
.y29_c00057{bottom:536.066667pt;}
.y20_c00057{bottom:546.813333pt;}
.y1f_c00057{bottom:549.893333pt;}
.y26_c00057{bottom:550.653333pt;}
.y1e_c00057{bottom:552.186667pt;}
.y25_c00057{bottom:552.960000pt;}
.y24_c00057{bottom:554.493333pt;}
.y22_c00057{bottom:556.026667pt;}
.y23_c00057{bottom:557.573333pt;}
.y21_c00057{bottom:558.333333pt;}
.y1d_c00057{bottom:562.173333pt;}
.y16_c00057{bottom:562.946667pt;}
.y15_c00057{bottom:563.706667pt;}
.y1c_c00057{bottom:564.480000pt;}
.y14_c00057{bottom:572.160000pt;}
.y13_c00057{bottom:574.466667pt;}
.y1b_c00057{bottom:579.066667pt;}
.y12_c00057{bottom:582.146667pt;}
.y11_c00057{bottom:582.906667pt;}
.ye_c00057{bottom:592.893333pt;}
.yd_c00057{bottom:595.200000pt;}
.yf_c00057{bottom:598.266667pt;}
.y10_c00057{bottom:599.040000pt;}
.yc_c00057{bottom:614.400000pt;}
.y17_c00057{bottom:615.173333pt;}
.yb_c00057{bottom:616.706667pt;}
.ya_c00057{bottom:731.133333pt;}
.y9_c00057{bottom:753.413333pt;}
.y8_c00057{bottom:850.173333pt;}
.y7_c00057{bottom:863.226667pt;}
.y5_c00057{bottom:871.680000pt;}
.y6_c00057{bottom:873.986667pt;}
.y4_c00057{bottom:875.520000pt;}
.y3_c00057{bottom:899.333333pt;}
.y2_c00057{bottom:905.466667pt;}
.y1a_c00057{bottom:1265.666667pt;}
.y1_c00057{bottom:1274.880000pt;}
.h14_c00057{height:2.764500pt;}
.h6_c00057{height:4.799479pt;}
.hb_c00057{height:5.519401pt;}
.h15_c00057{height:8.303099pt;}
.h4_c00057{height:11.038802pt;}
.h2_c00057{height:13.822500pt;}
.h11_c00057{height:16.606198pt;}
.h3_c00057{height:19.341901pt;}
.hf_c00057{height:22.125599pt;}
.h5_c00057{height:27.645000pt;}
.he_c00057{height:30.428698pt;}
.h10_c00057{height:33.164401pt;}
.h8_c00057{height:38.683802pt;}
.h9_c00057{height:41.467500pt;}
.h7_c00057{height:44.251198pt;}
.h12_c00057{height:46.986901pt;}
.h13_c00057{height:52.506302pt;}
.hc_c00057{height:55.290000pt;}
.hd_c00057{height:58.073698pt;}
.ha_c00057{height:77.415599pt;}
.h17_c00057{height:80.151302pt;}
.h16_c00057{height:88.454401pt;}
.h1_c00057{height:1340.000000pt;}
.h0_c00057{height:1340.160000pt;}
.w1_c00057{width:941.333333pt;}
.w0_c00057{width:941.573333pt;}
.x0_c00057{left:0.000000pt;}
.x5_c00057{left:1.533333pt;}
.x6_c00057{left:8.453333pt;}
.x1_c00057{left:10.746667pt;}
.x3_c00057{left:12.293333pt;}
.x7_c00057{left:17.666667pt;}
.x8_c00057{left:29.946667pt;}
.x4_c00057{left:40.706667pt;}
.xa_c00057{left:50.693333pt;}
.x9_c00057{left:52.986667pt;}
.x2_c00057{left:108.293333pt;}
.xe_c00057{left:109.826667pt;}
.xc_c00057{left:113.666667pt;}
.xb_c00057{left:130.560000pt;}
.xd_c00057{left:147.453333pt;}
.xf_c00057{left:175.866667pt;}
.x13_c00057{left:204.293333pt;}
.x14_c00057{left:210.426667pt;}
.x10_c00057{left:211.973333pt;}
.x11_c00057{left:273.413333pt;}
.x15_c00057{left:296.453333pt;}
.x16_c00057{left:315.653333pt;}
.x17_c00057{left:330.240000pt;}
.x1d_c00057{left:340.986667pt;}
.x18_c00057{left:347.133333pt;}
.x12_c00057{left:357.120000pt;}
.x19_c00057{left:394.746667pt;}
.x1a_c00057{left:437.760000pt;}
.x1b_c00057{left:469.253333pt;}
.x1c_c00057{left:493.053333pt;}
.x1e_c00057{left:497.666667pt;}
.x1f_c00057{left:503.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_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_4a39accf9565cf2780f8bec2.woff2')format("woff");}.ff1_c00058{font-family:ff1_c00058;line-height:1.109863;font-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_c00058{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma_c00058{transform:matrix(0.074250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074250,0.000000,0.000000,0.250000,0,0);}
.m3_c00058{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c00058{transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);}
.m10_c00058{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);}
.m14_c00058{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.m16_c00058{transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);}
.m13_c00058{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m9_c00058{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m15_c00058{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.m17_c00058{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.m11_c00058{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);}
.m8_c00058{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mb_c00058{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);}
.me_c00058{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c00058{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1_c00058{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mf_c00058{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m0_c00058{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m6_c00058{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m7_c00058{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);}
.mc_c00058{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m5_c00058{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.md_c00058{transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);}
.v0_c00058{vertical-align:0.000000px;}
.v1_c00058{vertical-align:3.480000px;}
.ls1_c00058{letter-spacing:0.000000px;}
.ls0_c00058{letter-spacing:73.315440px;}
.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;}
.fs2_c00058{font-size:3.456000px;}
.fs1_c00058{font-size:6.900000px;}
.fs9_c00058{font-size:10.380000px;}
.fs3_c00058{font-size:17.280000px;}
.fs6_c00058{font-size:20.760000px;}
.fsc_c00058{font-size:24.180000px;}
.fs5_c00058{font-size:27.660000px;}
.fs0_c00058{font-size:31.080000px;}
.fsb_c00058{font-size:38.040000px;}
.fs8_c00058{font-size:41.460000px;}
.fs10_c00058{font-size:44.940000px;}
.fse_c00058{font-size:48.360000px;}
.fsf_c00058{font-size:51.840000px;}
.fsa_c00058{font-size:58.740000px;}
.fsd_c00058{font-size:62.220000px;}
.fs7_c00058{font-size:89.880000px;}
.fs4_c00058{font-size:176.280000px;}
.y0_c00058{bottom:0.000000px;}
.y1a_c00058{bottom:729.210000px;}
.y19_c00058{bottom:747.360000px;}
.y18_c00058{bottom:762.045000px;}
.y15_c00058{bottom:778.470000px;}
.y17_c00058{bottom:779.325000px;}
.y16_c00058{bottom:782.790000px;}
.y14_c00058{bottom:789.690000px;}
.y13_c00058{bottom:793.155000px;}
.y10_c00058{bottom:806.970000px;}
.y11_c00058{bottom:807.840000px;}
.y12_c00058{bottom:808.710000px;}
.yf_c00058{bottom:814.755000px;}
.yd_c00058{bottom:1085.190000px;}
.ye_c00058{bottom:1086.045000px;}
.yb_c00058{bottom:1144.800000px;}
.yc_c00058{bottom:1146.525000px;}
.ya_c00058{bottom:1164.675000px;}
.y8_c00058{bottom:1187.130000px;}
.y9_c00058{bottom:1193.190000px;}
.y6_c00058{bottom:1206.150000px;}
.y7_c00058{bottom:1207.005000px;}
.y4_c00058{bottom:1213.050000px;}
.y5_c00058{bottom:1225.155000px;}
.y1_c00058{bottom:1243.290000px;}
.y3_c00058{bottom:1244.160000px;}
.y2_c00058{bottom:1247.610000px;}
.h4_c00058{height:3.110063px;}
.h3_c00058{height:6.209326px;}
.hb_c00058{height:9.340986px;}
.h5_c00058{height:15.550313px;}
.h8_c00058{height:18.681973px;}
.he_c00058{height:21.759639px;}
.h7_c00058{height:24.891299px;}
.h2_c00058{height:27.968965px;}
.hd_c00058{height:34.232285px;}
.ha_c00058{height:37.309951px;}
.h12_c00058{height:40.441611px;}
.h10_c00058{height:43.519277px;}
.h11_c00058{height:46.650937px;}
.hc_c00058{height:52.860264px;}
.hf_c00058{height:55.991924px;}
.h9_c00058{height:80.883223px;}
.h6_c00058{height:158.634785px;}
.h0_c00058{height:1515.450000px;}
.h1_c00058{height:1515.750000px;}
.w0_c00058{width:1079.130000px;}
.w1_c00058{width:1079.250000px;}
.x0_c00058{left:0.000000px;}
.x1_c00058{left:889.920000px;}
.xb_c00058{left:901.155000px;}
.x2_c00058{left:905.475000px;}
.xc_c00058{left:928.800000px;}
.x3_c00058{left:967.680000px;}
.x4_c00058{left:976.320000px;}
.x6_c00058{left:993.600000px;}
.x11_c00058{left:1016.925000px;}
.x14_c00058{left:1019.520000px;}
.x10_c00058{left:1022.115000px;}
.xf_c00058{left:1026.435000px;}
.x12_c00058{left:1029.030000px;}
.xd_c00058{left:1038.525000px;}
.x8_c00058{left:1045.440000px;}
.x15_c00058{left:1048.035000px;}
.xe_c00058{left:1050.630000px;}
.x7_c00058{left:1052.355000px;}
.x13_c00058{left:1062.720000px;}
.xa_c00058{left:1067.910000px;}
.x5_c00058{left:1069.635000px;}
.x9_c00058{left:1071.360000px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.v1_c00058{vertical-align:3.093333pt;}
.ls1_c00058{letter-spacing:0.000000pt;}
.ls0_c00058{letter-spacing:65.169280pt;}
.ws0_c00058{word-spacing:0.000000pt;}
.fs2_c00058{font-size:3.072000pt;}
.fs1_c00058{font-size:6.133333pt;}
.fs9_c00058{font-size:9.226667pt;}
.fs3_c00058{font-size:15.360000pt;}
.fs6_c00058{font-size:18.453333pt;}
.fsc_c00058{font-size:21.493333pt;}
.fs5_c00058{font-size:24.586667pt;}
.fs0_c00058{font-size:27.626667pt;}
.fsb_c00058{font-size:33.813333pt;}
.fs8_c00058{font-size:36.853333pt;}
.fs10_c00058{font-size:39.946667pt;}
.fse_c00058{font-size:42.986667pt;}
.fsf_c00058{font-size:46.080000pt;}
.fsa_c00058{font-size:52.213333pt;}
.fsd_c00058{font-size:55.306667pt;}
.fs7_c00058{font-size:79.893333pt;}
.fs4_c00058{font-size:156.693333pt;}
.y0_c00058{bottom:0.000000pt;}
.y1a_c00058{bottom:648.186667pt;}
.y19_c00058{bottom:664.320000pt;}
.y18_c00058{bottom:677.373333pt;}
.y15_c00058{bottom:691.973333pt;}
.y17_c00058{bottom:692.733333pt;}
.y16_c00058{bottom:695.813333pt;}
.y14_c00058{bottom:701.946667pt;}
.y13_c00058{bottom:705.026667pt;}
.y10_c00058{bottom:717.306667pt;}
.y11_c00058{bottom:718.080000pt;}
.y12_c00058{bottom:718.853333pt;}
.yf_c00058{bottom:724.226667pt;}
.yd_c00058{bottom:964.613333pt;}
.ye_c00058{bottom:965.373333pt;}
.yb_c00058{bottom:1017.600000pt;}
.yc_c00058{bottom:1019.133333pt;}
.ya_c00058{bottom:1035.266667pt;}
.y8_c00058{bottom:1055.226667pt;}
.y9_c00058{bottom:1060.613333pt;}
.y6_c00058{bottom:1072.133333pt;}
.y7_c00058{bottom:1072.893333pt;}
.y4_c00058{bottom:1078.266667pt;}
.y5_c00058{bottom:1089.026667pt;}
.y1_c00058{bottom:1105.146667pt;}
.y3_c00058{bottom:1105.920000pt;}
.y2_c00058{bottom:1108.986667pt;}
.h4_c00058{height:2.764500pt;}
.h3_c00058{height:5.519401pt;}
.hb_c00058{height:8.303099pt;}
.h5_c00058{height:13.822500pt;}
.h8_c00058{height:16.606198pt;}
.he_c00058{height:19.341901pt;}
.h7_c00058{height:22.125599pt;}
.h2_c00058{height:24.861302pt;}
.hd_c00058{height:30.428698pt;}
.ha_c00058{height:33.164401pt;}
.h12_c00058{height:35.948099pt;}
.h10_c00058{height:38.683802pt;}
.h11_c00058{height:41.467500pt;}
.hc_c00058{height:46.986901pt;}
.hf_c00058{height:49.770599pt;}
.h9_c00058{height:71.896198pt;}
.h6_c00058{height:141.008698pt;}
.h0_c00058{height:1347.066667pt;}
.h1_c00058{height:1347.333333pt;}
.w0_c00058{width:959.226667pt;}
.w1_c00058{width:959.333333pt;}
.x0_c00058{left:0.000000pt;}
.x1_c00058{left:791.040000pt;}
.xb_c00058{left:801.026667pt;}
.x2_c00058{left:804.866667pt;}
.xc_c00058{left:825.600000pt;}
.x3_c00058{left:860.160000pt;}
.x4_c00058{left:867.840000pt;}
.x6_c00058{left:883.200000pt;}
.x11_c00058{left:903.933333pt;}
.x14_c00058{left:906.240000pt;}
.x10_c00058{left:908.546667pt;}
.xf_c00058{left:912.386667pt;}
.x12_c00058{left:914.693333pt;}
.xd_c00058{left:923.133333pt;}
.x8_c00058{left:929.280000pt;}
.x15_c00058{left:931.586667pt;}
.xe_c00058{left:933.893333pt;}
.x7_c00058{left:935.426667pt;}
.x13_c00058{left:944.640000pt;}
.xa_c00058{left:949.253333pt;}
.x5_c00058{left:950.786667pt;}
.x9_c00058{left:952.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_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_4773f25f561d90f5ca15a355.woff2')format("woff");}.ff1_c00059{font-family:ff1_c00059;line-height:1.109863;font-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.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);}
.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;}
.fs0_c00059{font-size:600.000000px;}
.y0_c00059{bottom:0.000000px;}
.y1_c00059{bottom:15.000000px;}
.h2_c00059{height:539.941406px;}
.h1_c00059{height:1507.500000px;}
.h0_c00059{height:1507.680000px;}
.w1_c00059{width:1059.000000px;}
.w0_c00059{width:1059.270000px;}
.x0_c00059{left:0.000000px;}
.x1_c00059{left:15.000000px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls0_c00059{letter-spacing:0.000000pt;}
.ws0_c00059{word-spacing:0.000000pt;}
.fs0_c00059{font-size:533.333333pt;}
.y0_c00059{bottom:0.000000pt;}
.y1_c00059{bottom:13.333333pt;}
.h2_c00059{height:479.947917pt;}
.h1_c00059{height:1340.000000pt;}
.h0_c00059{height:1340.160000pt;}
.w1_c00059{width:941.333333pt;}
.w0_c00059{width:941.573333pt;}
.x0_c00059{left:0.000000pt;}
.x1_c00059{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c44b274134e3a31f9d41a7b.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.109863;font-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_c00060{transform:matrix(0.038400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038400,0.000000,0.000000,0.250000,0,0);}
.m2_c00060{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.mc_c00060{transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);}
.m4_c00060{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);}
.m9_c00060{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00060{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m5_c00060{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6_c00060{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mb_c00060{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m7_c00060{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m0_c00060{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);}
.m1_c00060{transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);}
.ma_c00060{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,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;}
.fs8_c00060{font-size:6.000000px;}
.fs9_c00060{font-size:6.900000px;}
.fs5_c00060{font-size:17.280000px;}
.fs6_c00060{font-size:20.760000px;}
.fs1_c00060{font-size:31.080000px;}
.fs0_c00060{font-size:34.560000px;}
.fs3_c00060{font-size:55.320000px;}
.fs4_c00060{font-size:62.220000px;}
.fs2_c00060{font-size:72.600000px;}
.fsa_c00060{font-size:86.400000px;}
.fs7_c00060{font-size:162.420000px;}
.y0_c00060{bottom:0.000000px;}
.yd_c00060{bottom:426.810000px;}
.yc_c00060{bottom:438.045000px;}
.yb_c00060{bottom:449.280000px;}
.ya_c00060{bottom:452.730000px;}
.y9_c00060{bottom:486.435000px;}
.y8_c00060{bottom:690.330000px;}
.y7_c00060{bottom:717.990000px;}
.y6_c00060{bottom:828.570000px;}
.y5_c00060{bottom:984.960000px;}
.y3_c00060{bottom:998.790000px;}
.y4_c00060{bottom:1002.240000px;}
.y1_c00060{bottom:1235.520000px;}
.y2_c00060{bottom:1372.890000px;}
.ha_c00060{height:5.399414px;}
.hb_c00060{height:6.209326px;}
.h7_c00060{height:15.550313px;}
.h8_c00060{height:18.681973px;}
.h3_c00060{height:27.968965px;}
.h2_c00060{height:31.100625px;}
.h5_c00060{height:49.782598px;}
.h6_c00060{height:55.991924px;}
.h4_c00060{height:65.332910px;}
.hc_c00060{height:77.751563px;}
.h9_c00060{height:146.162139px;}
.h0_c00060{height:1515.450000px;}
.h1_c00060{height:1515.750000px;}
.w0_c00060{width:1079.130000px;}
.w1_c00060{width:1079.250000px;}
.x0_c00060{left:0.000000px;}
.xc_c00060{left:260.925000px;}
.xd_c00060{left:269.565000px;}
.xa_c00060{left:281.670000px;}
.xb_c00060{left:352.515000px;}
.x9_c00060{left:956.445000px;}
.x6_c00060{left:966.810000px;}
.x8_c00060{left:982.365000px;}
.x7_c00060{left:1014.330000px;}
.x5_c00060{left:1016.070000px;}
.x3_c00060{left:1017.795000px;}
.x4_c00060{left:1038.525000px;}
.x2_c00060{left:1046.310000px;}
.x1_c00060{left:1067.910000px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws0_c00060{word-spacing:0.000000pt;}
.fs8_c00060{font-size:5.333333pt;}
.fs9_c00060{font-size:6.133333pt;}
.fs5_c00060{font-size:15.360000pt;}
.fs6_c00060{font-size:18.453333pt;}
.fs1_c00060{font-size:27.626667pt;}
.fs0_c00060{font-size:30.720000pt;}
.fs3_c00060{font-size:49.173333pt;}
.fs4_c00060{font-size:55.306667pt;}
.fs2_c00060{font-size:64.533333pt;}
.fsa_c00060{font-size:76.800000pt;}
.fs7_c00060{font-size:144.373333pt;}
.y0_c00060{bottom:0.000000pt;}
.yd_c00060{bottom:379.386667pt;}
.yc_c00060{bottom:389.373333pt;}
.yb_c00060{bottom:399.360000pt;}
.ya_c00060{bottom:402.426667pt;}
.y9_c00060{bottom:432.386667pt;}
.y8_c00060{bottom:613.626667pt;}
.y7_c00060{bottom:638.213333pt;}
.y6_c00060{bottom:736.506667pt;}
.y5_c00060{bottom:875.520000pt;}
.y3_c00060{bottom:887.813333pt;}
.y4_c00060{bottom:890.880000pt;}
.y1_c00060{bottom:1098.240000pt;}
.y2_c00060{bottom:1220.346667pt;}
.ha_c00060{height:4.799479pt;}
.hb_c00060{height:5.519401pt;}
.h7_c00060{height:13.822500pt;}
.h8_c00060{height:16.606198pt;}
.h3_c00060{height:24.861302pt;}
.h2_c00060{height:27.645000pt;}
.h5_c00060{height:44.251198pt;}
.h6_c00060{height:49.770599pt;}
.h4_c00060{height:58.073698pt;}
.hc_c00060{height:69.112500pt;}
.h9_c00060{height:129.921901pt;}
.h0_c00060{height:1347.066667pt;}
.h1_c00060{height:1347.333333pt;}
.w0_c00060{width:959.226667pt;}
.w1_c00060{width:959.333333pt;}
.x0_c00060{left:0.000000pt;}
.xc_c00060{left:231.933333pt;}
.xd_c00060{left:239.613333pt;}
.xa_c00060{left:250.373333pt;}
.xb_c00060{left:313.346667pt;}
.x9_c00060{left:850.173333pt;}
.x6_c00060{left:859.386667pt;}
.x8_c00060{left:873.213333pt;}
.x7_c00060{left:901.626667pt;}
.x5_c00060{left:903.173333pt;}
.x3_c00060{left:904.706667pt;}
.x4_c00060{left:923.133333pt;}
.x2_c00060{left:930.053333pt;}
.x1_c00060{left:949.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00061;src:url('chunks/assets/font_241c62a5e8aaf7a962252139.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.109863;font-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_c00061{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m51_c00061{transform:matrix(0.085250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085250,0.000000,0.000000,0.250000,0,0);}
.m31_c00061{transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);}
.m26_c00061{transform:matrix(0.110450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110450,0.000000,0.000000,0.250000,0,0);}
.m30_c00061{transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);}
.m1a_c00061{transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);}
.m1_c00061{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m3_c00061{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00061{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);}
.m5e_c00061{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);}
.m4_c00061{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m28_c00061{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00061{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m57_c00061{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.m46_c00061{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m41_c00061{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);}
.m22_c00061{transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);}
.m63_c00061{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m62_c00061{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.m40_c00061{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);}
.m6_c00061{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00061{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m37_c00061{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m32_c00061{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m68_c00061{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m5b_c00061{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m56_c00061{transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);}
.m5a_c00061{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.m4b_c00061{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.m65_c00061{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.m23_c00061{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.m43_c00061{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m61_c00061{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m48_c00061{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m54_c00061{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);}
.m67_c00061{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00061{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);}
.m1f_c00061{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);}
.m2d_c00061{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);}
.m4d_c00061{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.m55_c00061{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m44_c00061{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m20_c00061{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.m27_c00061{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);}
.m59_c00061{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);}
.m1c_c00061{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);}
.m5f_c00061{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m42_c00061{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);}
.mb_c00061{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);}
.m4c_c00061{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);}
.m5d_c00061{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00061{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00061{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00061{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);}
.m39_c00061{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);}
.m8_c00061{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m25_c00061{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);}
.m35_c00061{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00061{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00061{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);}
.m69_c00061{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);}
.m36_c00061{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);}
.m3a_c00061{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00061{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m45_c00061{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);}
.m49_c00061{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00061{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00061{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00061{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m58_c00061{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m24_c00061{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m47_c00061{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00061{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c00061{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c00061{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);}
.m13_c00061{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);}
.m21_c00061{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5_c00061{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);}
.m3d_c00061{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);}
.mc_c00061{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00061{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m17_c00061{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma_c00061{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m12_c00061{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m18_c00061{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00061{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);}
.m6a_c00061{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m14_c00061{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m66_c00061{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);}
.m3f_c00061{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c00061{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m19_c00061{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m64_c00061{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m38_c00061{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mf_c00061{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);}
.m29_c00061{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m0_c00061{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.me_c00061{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);}
.m16_c00061{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);}
.m2a_c00061{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00061{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m33_c00061{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m60_c00061{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m34_c00061{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.m7_c00061{transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);}
.m53_c00061{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m50_c00061{transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00061{transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);}
.v0_c00061{vertical-align:0.000000px;}
.ls0_c00061{letter-spacing:0.000000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:0.000000px;}
.fc0_c00061{color:transparent;}
.fs3_c00061{font-size:3.456000px;}
.fs19_c00061{font-size:6.000000px;}
.fs2_c00061{font-size:6.900000px;}
.fs17_c00061{font-size:10.380000px;}
.fs12_c00061{font-size:13.800000px;}
.fs1a_c00061{font-size:17.280000px;}
.fsb_c00061{font-size:20.760000px;}
.fs0_c00061{font-size:24.180000px;}
.fs14_c00061{font-size:27.660000px;}
.fs6_c00061{font-size:31.080000px;}
.fs4_c00061{font-size:34.560000px;}
.fs13_c00061{font-size:38.040000px;}
.fs15_c00061{font-size:41.460000px;}
.fsf_c00061{font-size:44.940000px;}
.fsc_c00061{font-size:48.360000px;}
.fsa_c00061{font-size:51.840000px;}
.fs7_c00061{font-size:55.320000px;}
.fs9_c00061{font-size:58.740000px;}
.fsd_c00061{font-size:62.220000px;}
.fs8_c00061{font-size:69.120000px;}
.fs5_c00061{font-size:72.600000px;}
.fse_c00061{font-size:76.020000px;}
.fs18_c00061{font-size:82.920000px;}
.fs16_c00061{font-size:86.400000px;}
.fs11_c00061{font-size:89.880000px;}
.fs10_c00061{font-size:93.300000px;}
.fs1_c00061{font-size:96.780000px;}
.y0_c00061{bottom:0.000000px;}
.y70_c00061{bottom:918.435000px;}
.y71_c00061{bottom:921.030000px;}
.y6e_c00061{bottom:993.600000px;}
.y6f_c00061{bottom:997.050000px;}
.y6d_c00061{bottom:1010.010000px;}
.y6b_c00061{bottom:1011.750000px;}
.y6a_c00061{bottom:1013.475000px;}
.y6c_c00061{bottom:1026.435000px;}
.y65_c00061{bottom:1030.755000px;}
.y67_c00061{bottom:1031.610000px;}
.y64_c00061{bottom:1035.075000px;}
.y66_c00061{bottom:1035.930000px;}
.y68_c00061{bottom:1037.670000px;}
.y69_c00061{bottom:1040.250000px;}
.y5e_c00061{bottom:1047.165000px;}
.y62_c00061{bottom:1051.485000px;}
.y61_c00061{bottom:1053.210000px;}
.y57_c00061{bottom:1054.950000px;}
.y5b_c00061{bottom:1056.675000px;}
.y5f_c00061{bottom:1057.530000px;}
.y59_c00061{bottom:1058.400000px;}
.y60_c00061{bottom:1062.720000px;}
.y5a_c00061{bottom:1065.315000px;}
.y5d_c00061{bottom:1066.170000px;}
.y56_c00061{bottom:1067.040000px;}
.y58_c00061{bottom:1068.765000px;}
.y63_c00061{bottom:1069.635000px;}
.y50_c00061{bottom:1070.490000px;}
.y5c_c00061{bottom:1071.360000px;}
.y54_c00061{bottom:1073.085000px;}
.y53_c00061{bottom:1073.955000px;}
.y51_c00061{bottom:1075.680000px;}
.y52_c00061{bottom:1076.550000px;}
.y55_c00061{bottom:1077.405000px;}
.y49_c00061{bottom:1078.275000px;}
.y4a_c00061{bottom:1079.130000px;}
.y4c_c00061{bottom:1092.090000px;}
.y4d_c00061{bottom:1095.555000px;}
.y4b_c00061{bottom:1096.410000px;}
.y4f_c00061{bottom:1097.280000px;}
.y4e_c00061{bottom:1099.005000px;}
.y48_c00061{bottom:1119.750000px;}
.y47_c00061{bottom:1123.200000px;}
.y44_c00061{bottom:1128.390000px;}
.y45_c00061{bottom:1137.885000px;}
.y46_c00061{bottom:1138.755000px;}
.y41_c00061{bottom:1172.445000px;}
.y42_c00061{bottom:1178.490000px;}
.y43_c00061{bottom:1180.230000px;}
.y3c_c00061{bottom:1194.915000px;}
.y40_c00061{bottom:1195.770000px;}
.y3e_c00061{bottom:1197.510000px;}
.y3d_c00061{bottom:1198.365000px;}
.y3b_c00061{bottom:1199.235000px;}
.y3f_c00061{bottom:1200.960000px;}
.y37_c00061{bottom:1217.370000px;}
.y35_c00061{bottom:1219.110000px;}
.y38_c00061{bottom:1219.965000px;}
.y36_c00061{bottom:1220.835000px;}
.y39_c00061{bottom:1221.690000px;}
.y3a_c00061{bottom:1226.880000px;}
.y30_c00061{bottom:1232.925000px;}
.y34_c00061{bottom:1234.650000px;}
.y2e_c00061{bottom:1236.390000px;}
.y33_c00061{bottom:1237.245000px;}
.y2d_c00061{bottom:1239.840000px;}
.y2f_c00061{bottom:1240.710000px;}
.y32_c00061{bottom:1241.565000px;}
.y31_c00061{bottom:1242.435000px;}
.y2b_c00061{bottom:1257.120000px;}
.y2c_c00061{bottom:1259.715000px;}
.y2a_c00061{bottom:1260.570000px;}
.y24_c00061{bottom:1261.440000px;}
.y29_c00061{bottom:1265.760000px;}
.y25_c00061{bottom:1267.485000px;}
.y26_c00061{bottom:1269.210000px;}
.y27_c00061{bottom:1271.805000px;}
.y28_c00061{bottom:1273.530000px;}
.y20_c00061{bottom:1276.995000px;}
.y22_c00061{bottom:1280.445000px;}
.y1f_c00061{bottom:1281.315000px;}
.y21_c00061{bottom:1282.170000px;}
.y23_c00061{bottom:1288.230000px;}
.y1a_c00061{bottom:1296.000000px;}
.y1b_c00061{bottom:1296.870000px;}
.y19_c00061{bottom:1297.725000px;}
.y1c_c00061{bottom:1299.450000px;}
.y1d_c00061{bottom:1300.320000px;}
.y17_c00061{bottom:1301.190000px;}
.y18_c00061{bottom:1302.045000px;}
.y1e_c00061{bottom:1305.510000px;}
.y15_c00061{bottom:1328.835000px;}
.y14_c00061{bottom:1340.925000px;}
.y16_c00061{bottom:1341.795000px;}
.y13_c00061{bottom:1360.800000px;}
.y12_c00061{bottom:1367.715000px;}
.ya_c00061{bottom:1370.310000px;}
.y11_c00061{bottom:1381.530000px;}
.yb_c00061{bottom:1383.270000px;}
.yc_c00061{bottom:1384.125000px;}
.yd_c00061{bottom:1384.995000px;}
.ye_c00061{bottom:1385.850000px;}
.yf_c00061{bottom:1386.720000px;}
.y10_c00061{bottom:1387.590000px;}
.y2_c00061{bottom:1410.045000px;}
.y3_c00061{bottom:1419.555000px;}
.y1_c00061{bottom:1426.470000px;}
.y9_c00061{bottom:1430.790000px;}
.y8_c00061{bottom:1433.370000px;}
.y6_c00061{bottom:1436.835000px;}
.y7_c00061{bottom:1439.430000px;}
.y5_c00061{bottom:1447.200000px;}
.y4_c00061{bottom:1454.970000px;}
.h5_c00061{height:3.110063px;}
.h1b_c00061{height:5.399414px;}
.h4_c00061{height:6.209326px;}
.h19_c00061{height:9.340986px;}
.h14_c00061{height:12.418652px;}
.h1c_c00061{height:15.550313px;}
.hd_c00061{height:18.681973px;}
.h2_c00061{height:21.759639px;}
.h16_c00061{height:24.891299px;}
.h8_c00061{height:27.968965px;}
.h6_c00061{height:31.100625px;}
.h15_c00061{height:34.232285px;}
.h17_c00061{height:37.309951px;}
.h11_c00061{height:40.441611px;}
.he_c00061{height:43.519277px;}
.hc_c00061{height:46.650937px;}
.h9_c00061{height:49.782598px;}
.hb_c00061{height:52.860264px;}
.hf_c00061{height:55.991924px;}
.ha_c00061{height:62.201250px;}
.h7_c00061{height:65.332910px;}
.h10_c00061{height:68.410576px;}
.h1a_c00061{height:74.619902px;}
.h18_c00061{height:77.751563px;}
.h13_c00061{height:80.883223px;}
.h12_c00061{height:83.960889px;}
.h3_c00061{height:87.092549px;}
.h1_c00061{height:1507.500000px;}
.h0_c00061{height:1507.680000px;}
.w1_c00061{width:1059.000000px;}
.w0_c00061{width:1059.270000px;}
.x0_c00061{left:0.000000px;}
.x73_c00061{left:13.830000px;}
.x72_c00061{left:26.790000px;}
.x1_c00061{left:35.430000px;}
.x2_c00061{left:92.445000px;}
.x3_c00061{left:105.405000px;}
.x5c_c00061{left:154.650000px;}
.x5a_c00061{left:163.290000px;}
.x5b_c00061{left:170.205000px;}
.xa_c00061{left:189.210000px;}
.x1c_c00061{left:285.120000px;}
.x1d_c00061{left:299.805000px;}
.x56_c00061{left:305.850000px;}
.xb_c00061{left:356.835000px;}
.x4_c00061{left:363.750000px;}
.x5_c00061{left:370.650000px;}
.x6_c00061{left:390.525000px;}
.xc_c00061{left:392.250000px;}
.xd_c00061{left:406.080000px;}
.x18_c00061{left:413.850000px;}
.x1e_c00061{left:415.590000px;}
.x8_c00061{left:419.040000px;}
.x7_c00061{left:423.360000px;}
.x57_c00061{left:425.955000px;}
.x9_c00061{left:428.550000px;}
.xe_c00061{left:441.510000px;}
.x1a_c00061{left:445.830000px;}
.xf_c00061{left:464.835000px;}
.x10_c00061{left:515.805000px;}
.x19_c00061{left:529.637232px;}
.x1b_c00061{left:532.230000px;}
.x11_c00061{left:536.550000px;}
.x3d_c00061{left:543.450000px;}
.x30_c00061{left:551.235000px;}
.x12_c00061{left:555.555000px;}
.x38_c00061{left:566.790000px;}
.x3e_c00061{left:571.965000px;}
.x13_c00061{left:578.880000px;}
.x64_c00061{left:584.070000px;}
.x60_c00061{left:585.795000px;}
.x55_c00061{left:596.160000px;}
.x14_c00061{left:599.610000px;}
.x51_c00061{left:601.350000px;}
.x5d_c00061{left:604.800000px;}
.x69_c00061{left:608.250000px;}
.x44_c00061{left:609.990000px;}
.x25_c00061{left:611.715000px;}
.x52_c00061{left:615.165000px;}
.x45_c00061{left:621.210000px;}
.x15_c00061{left:622.950000px;}
.x31_c00061{left:624.675000px;}
.x1f_c00061{left:626.400000px;}
.x61_c00061{left:629.850000px;}
.x32_c00061{left:635.040000px;}
.x16_c00061{left:636.765000px;}
.x3f_c00061{left:639.360000px;}
.x58_c00061{left:641.955000px;}
.x4d_c00061{left:644.550000px;}
.x20_c00061{left:648.870000px;}
.x40_c00061{left:651.450000px;}
.x46_c00061{left:653.190000px;}
.x17_c00061{left:656.640000px;}
.x26_c00061{left:661.830000px;}
.x21_c00061{left:664.410000px;}
.x62_c00061{left:672.195000px;}
.x4e_c00061{left:674.790000px;}
.x71_c00061{left:676.515000px;}
.x22_c00061{left:680.835000px;}
.x33_c00061{left:685.155000px;}
.x39_c00061{left:686.880000px;}
.x6a_c00061{left:691.200000px;}
.x27_c00061{left:693.795000px;}
.x23_c00061{left:697.245000px;}
.x6e_c00061{left:702.435000px;}
.x65_c00061{left:709.350000px;}
.x28_c00061{left:712.800000px;}
.x34_c00061{left:715.395000px;}
.x41_c00061{left:718.845000px;}
.x47_c00061{left:720.570000px;}
.x24_c00061{left:727.485000px;}
.x6f_c00061{left:729.210000px;}
.x59_c00061{left:732.675000px;}
.x53_c00061{left:736.995000px;}
.x3a_c00061{left:738.720000px;}
.x48_c00061{left:740.445000px;}
.x42_c00061{left:751.680000px;}
.x49_c00061{left:754.275000px;}
.x66_c00061{left:760.320000px;}
.x4a_c00061{left:763.770000px;}
.x29_c00061{left:767.235000px;}
.x35_c00061{left:768.960000px;}
.x3b_c00061{left:778.470000px;}
.x4f_c00061{left:780.195000px;}
.x36_c00061{left:781.920000px;}
.x54_c00061{left:784.515000px;}
.x6b_c00061{left:801.795000px;}
.x4b_c00061{left:811.290000px;}
.x5e_c00061{left:816.480000px;}
.x3c_c00061{left:821.670900px;}
.x2a_c00061{left:824.250000px;}
.x6c_c00061{left:828.570000px;}
.x50_c00061{left:837.210000px;}
.x70_c00061{left:841.530000px;}
.x2b_c00061{left:850.170000px;}
.x5f_c00061{left:851.910000px;}
.x67_c00061{left:854.490000px;}
.x37_c00061{left:864.870000px;}
.x68_c00061{left:868.320000px;}
.x2c_c00061{left:870.045000px;}
.x43_c00061{left:871.770000px;}
.x4c_c00061{left:879.555000px;}
.x2d_c00061{left:883.005000px;}
.x2e_c00061{left:890.790000px;}
.x6d_c00061{left:902.880000px;}
.x63_c00061{left:914.115000px;}
.x2f_c00061{left:915.840000px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls0_c00061{letter-spacing:0.000000pt;}
.ws0_c00061{word-spacing:0.000000pt;}
.fs3_c00061{font-size:3.072000pt;}
.fs19_c00061{font-size:5.333333pt;}
.fs2_c00061{font-size:6.133333pt;}
.fs17_c00061{font-size:9.226667pt;}
.fs12_c00061{font-size:12.266667pt;}
.fs1a_c00061{font-size:15.360000pt;}
.fsb_c00061{font-size:18.453333pt;}
.fs0_c00061{font-size:21.493333pt;}
.fs14_c00061{font-size:24.586667pt;}
.fs6_c00061{font-size:27.626667pt;}
.fs4_c00061{font-size:30.720000pt;}
.fs13_c00061{font-size:33.813333pt;}
.fs15_c00061{font-size:36.853333pt;}
.fsf_c00061{font-size:39.946667pt;}
.fsc_c00061{font-size:42.986667pt;}
.fsa_c00061{font-size:46.080000pt;}
.fs7_c00061{font-size:49.173333pt;}
.fs9_c00061{font-size:52.213333pt;}
.fsd_c00061{font-size:55.306667pt;}
.fs8_c00061{font-size:61.440000pt;}
.fs5_c00061{font-size:64.533333pt;}
.fse_c00061{font-size:67.573333pt;}
.fs18_c00061{font-size:73.706667pt;}
.fs16_c00061{font-size:76.800000pt;}
.fs11_c00061{font-size:79.893333pt;}
.fs10_c00061{font-size:82.933333pt;}
.fs1_c00061{font-size:86.026667pt;}
.y0_c00061{bottom:0.000000pt;}
.y70_c00061{bottom:816.386667pt;}
.y71_c00061{bottom:818.693333pt;}
.y6e_c00061{bottom:883.200000pt;}
.y6f_c00061{bottom:886.266667pt;}
.y6d_c00061{bottom:897.786667pt;}
.y6b_c00061{bottom:899.333333pt;}
.y6a_c00061{bottom:900.866667pt;}
.y6c_c00061{bottom:912.386667pt;}
.y65_c00061{bottom:916.226667pt;}
.y67_c00061{bottom:916.986667pt;}
.y64_c00061{bottom:920.066667pt;}
.y66_c00061{bottom:920.826667pt;}
.y68_c00061{bottom:922.373333pt;}
.y69_c00061{bottom:924.666667pt;}
.y5e_c00061{bottom:930.813333pt;}
.y62_c00061{bottom:934.653333pt;}
.y61_c00061{bottom:936.186667pt;}
.y57_c00061{bottom:937.733333pt;}
.y5b_c00061{bottom:939.266667pt;}
.y5f_c00061{bottom:940.026667pt;}
.y59_c00061{bottom:940.800000pt;}
.y60_c00061{bottom:944.640000pt;}
.y5a_c00061{bottom:946.946667pt;}
.y5d_c00061{bottom:947.706667pt;}
.y56_c00061{bottom:948.480000pt;}
.y58_c00061{bottom:950.013333pt;}
.y63_c00061{bottom:950.786667pt;}
.y50_c00061{bottom:951.546667pt;}
.y5c_c00061{bottom:952.320000pt;}
.y54_c00061{bottom:953.853333pt;}
.y53_c00061{bottom:954.626667pt;}
.y51_c00061{bottom:956.160000pt;}
.y52_c00061{bottom:956.933333pt;}
.y55_c00061{bottom:957.693333pt;}
.y49_c00061{bottom:958.466667pt;}
.y4a_c00061{bottom:959.226667pt;}
.y4c_c00061{bottom:970.746667pt;}
.y4d_c00061{bottom:973.826667pt;}
.y4b_c00061{bottom:974.586667pt;}
.y4f_c00061{bottom:975.360000pt;}
.y4e_c00061{bottom:976.893333pt;}
.y48_c00061{bottom:995.333333pt;}
.y47_c00061{bottom:998.400000pt;}
.y44_c00061{bottom:1003.013333pt;}
.y45_c00061{bottom:1011.453333pt;}
.y46_c00061{bottom:1012.226667pt;}
.y41_c00061{bottom:1042.173333pt;}
.y42_c00061{bottom:1047.546667pt;}
.y43_c00061{bottom:1049.093333pt;}
.y3c_c00061{bottom:1062.146667pt;}
.y40_c00061{bottom:1062.906667pt;}
.y3e_c00061{bottom:1064.453333pt;}
.y3d_c00061{bottom:1065.213333pt;}
.y3b_c00061{bottom:1065.986667pt;}
.y3f_c00061{bottom:1067.520000pt;}
.y37_c00061{bottom:1082.106667pt;}
.y35_c00061{bottom:1083.653333pt;}
.y38_c00061{bottom:1084.413333pt;}
.y36_c00061{bottom:1085.186667pt;}
.y39_c00061{bottom:1085.946667pt;}
.y3a_c00061{bottom:1090.560000pt;}
.y30_c00061{bottom:1095.933333pt;}
.y34_c00061{bottom:1097.466667pt;}
.y2e_c00061{bottom:1099.013333pt;}
.y33_c00061{bottom:1099.773333pt;}
.y2d_c00061{bottom:1102.080000pt;}
.y2f_c00061{bottom:1102.853333pt;}
.y32_c00061{bottom:1103.613333pt;}
.y31_c00061{bottom:1104.386667pt;}
.y2b_c00061{bottom:1117.440000pt;}
.y2c_c00061{bottom:1119.746667pt;}
.y2a_c00061{bottom:1120.506667pt;}
.y24_c00061{bottom:1121.280000pt;}
.y29_c00061{bottom:1125.120000pt;}
.y25_c00061{bottom:1126.653333pt;}
.y26_c00061{bottom:1128.186667pt;}
.y27_c00061{bottom:1130.493333pt;}
.y28_c00061{bottom:1132.026667pt;}
.y20_c00061{bottom:1135.106667pt;}
.y22_c00061{bottom:1138.173333pt;}
.y1f_c00061{bottom:1138.946667pt;}
.y21_c00061{bottom:1139.706667pt;}
.y23_c00061{bottom:1145.093333pt;}
.y1a_c00061{bottom:1152.000000pt;}
.y1b_c00061{bottom:1152.773333pt;}
.y19_c00061{bottom:1153.533333pt;}
.y1c_c00061{bottom:1155.066667pt;}
.y1d_c00061{bottom:1155.840000pt;}
.y17_c00061{bottom:1156.613333pt;}
.y18_c00061{bottom:1157.373333pt;}
.y1e_c00061{bottom:1160.453333pt;}
.y15_c00061{bottom:1181.186667pt;}
.y14_c00061{bottom:1191.933333pt;}
.y16_c00061{bottom:1192.706667pt;}
.y13_c00061{bottom:1209.600000pt;}
.y12_c00061{bottom:1215.746667pt;}
.ya_c00061{bottom:1218.053333pt;}
.y11_c00061{bottom:1228.026667pt;}
.yb_c00061{bottom:1229.573333pt;}
.yc_c00061{bottom:1230.333333pt;}
.yd_c00061{bottom:1231.106667pt;}
.ye_c00061{bottom:1231.866667pt;}
.yf_c00061{bottom:1232.640000pt;}
.y10_c00061{bottom:1233.413333pt;}
.y2_c00061{bottom:1253.373333pt;}
.y3_c00061{bottom:1261.826667pt;}
.y1_c00061{bottom:1267.973333pt;}
.y9_c00061{bottom:1271.813333pt;}
.y8_c00061{bottom:1274.106667pt;}
.y6_c00061{bottom:1277.186667pt;}
.y7_c00061{bottom:1279.493333pt;}
.y5_c00061{bottom:1286.400000pt;}
.y4_c00061{bottom:1293.306667pt;}
.h5_c00061{height:2.764500pt;}
.h1b_c00061{height:4.799479pt;}
.h4_c00061{height:5.519401pt;}
.h19_c00061{height:8.303099pt;}
.h14_c00061{height:11.038802pt;}
.h1c_c00061{height:13.822500pt;}
.hd_c00061{height:16.606198pt;}
.h2_c00061{height:19.341901pt;}
.h16_c00061{height:22.125599pt;}
.h8_c00061{height:24.861302pt;}
.h6_c00061{height:27.645000pt;}
.h15_c00061{height:30.428698pt;}
.h17_c00061{height:33.164401pt;}
.h11_c00061{height:35.948099pt;}
.he_c00061{height:38.683802pt;}
.hc_c00061{height:41.467500pt;}
.h9_c00061{height:44.251198pt;}
.hb_c00061{height:46.986901pt;}
.hf_c00061{height:49.770599pt;}
.ha_c00061{height:55.290000pt;}
.h7_c00061{height:58.073698pt;}
.h10_c00061{height:60.809401pt;}
.h1a_c00061{height:66.328802pt;}
.h18_c00061{height:69.112500pt;}
.h13_c00061{height:71.896198pt;}
.h12_c00061{height:74.631901pt;}
.h3_c00061{height:77.415599pt;}
.h1_c00061{height:1340.000000pt;}
.h0_c00061{height:1340.160000pt;}
.w1_c00061{width:941.333333pt;}
.w0_c00061{width:941.573333pt;}
.x0_c00061{left:0.000000pt;}
.x73_c00061{left:12.293333pt;}
.x72_c00061{left:23.813333pt;}
.x1_c00061{left:31.493333pt;}
.x2_c00061{left:82.173333pt;}
.x3_c00061{left:93.693333pt;}
.x5c_c00061{left:137.466667pt;}
.x5a_c00061{left:145.146667pt;}
.x5b_c00061{left:151.293333pt;}
.xa_c00061{left:168.186667pt;}
.x1c_c00061{left:253.440000pt;}
.x1d_c00061{left:266.493333pt;}
.x56_c00061{left:271.866667pt;}
.xb_c00061{left:317.186667pt;}
.x4_c00061{left:323.333333pt;}
.x5_c00061{left:329.466667pt;}
.x6_c00061{left:347.133333pt;}
.xc_c00061{left:348.666667pt;}
.xd_c00061{left:360.960000pt;}
.x18_c00061{left:367.866667pt;}
.x1e_c00061{left:369.413333pt;}
.x8_c00061{left:372.480000pt;}
.x7_c00061{left:376.320000pt;}
.x57_c00061{left:378.626667pt;}
.x9_c00061{left:380.933333pt;}
.xe_c00061{left:392.453333pt;}
.x1a_c00061{left:396.293333pt;}
.xf_c00061{left:413.186667pt;}
.x10_c00061{left:458.493333pt;}
.x19_c00061{left:470.788651pt;}
.x1b_c00061{left:473.093333pt;}
.x11_c00061{left:476.933333pt;}
.x3d_c00061{left:483.066667pt;}
.x30_c00061{left:489.986667pt;}
.x12_c00061{left:493.826667pt;}
.x38_c00061{left:503.813333pt;}
.x3e_c00061{left:508.413333pt;}
.x13_c00061{left:514.560000pt;}
.x64_c00061{left:519.173333pt;}
.x60_c00061{left:520.706667pt;}
.x55_c00061{left:529.920000pt;}
.x14_c00061{left:532.986667pt;}
.x51_c00061{left:534.533333pt;}
.x5d_c00061{left:537.600000pt;}
.x69_c00061{left:540.666667pt;}
.x44_c00061{left:542.213333pt;}
.x25_c00061{left:543.746667pt;}
.x52_c00061{left:546.813333pt;}
.x45_c00061{left:552.186667pt;}
.x15_c00061{left:553.733333pt;}
.x31_c00061{left:555.266667pt;}
.x1f_c00061{left:556.800000pt;}
.x61_c00061{left:559.866667pt;}
.x32_c00061{left:564.480000pt;}
.x16_c00061{left:566.013333pt;}
.x3f_c00061{left:568.320000pt;}
.x58_c00061{left:570.626667pt;}
.x4d_c00061{left:572.933333pt;}
.x20_c00061{left:576.773333pt;}
.x40_c00061{left:579.066667pt;}
.x46_c00061{left:580.613333pt;}
.x17_c00061{left:583.680000pt;}
.x26_c00061{left:588.293333pt;}
.x21_c00061{left:590.586667pt;}
.x62_c00061{left:597.506667pt;}
.x4e_c00061{left:599.813333pt;}
.x71_c00061{left:601.346667pt;}
.x22_c00061{left:605.186667pt;}
.x33_c00061{left:609.026667pt;}
.x39_c00061{left:610.560000pt;}
.x6a_c00061{left:614.400000pt;}
.x27_c00061{left:616.706667pt;}
.x23_c00061{left:619.773333pt;}
.x6e_c00061{left:624.386667pt;}
.x65_c00061{left:630.533333pt;}
.x28_c00061{left:633.600000pt;}
.x34_c00061{left:635.906667pt;}
.x41_c00061{left:638.973333pt;}
.x47_c00061{left:640.506667pt;}
.x24_c00061{left:646.653333pt;}
.x6f_c00061{left:648.186667pt;}
.x59_c00061{left:651.266667pt;}
.x53_c00061{left:655.106667pt;}
.x3a_c00061{left:656.640000pt;}
.x48_c00061{left:658.173333pt;}
.x42_c00061{left:668.160000pt;}
.x49_c00061{left:670.466667pt;}
.x66_c00061{left:675.840000pt;}
.x4a_c00061{left:678.906667pt;}
.x29_c00061{left:681.986667pt;}
.x35_c00061{left:683.520000pt;}
.x3b_c00061{left:691.973333pt;}
.x4f_c00061{left:693.506667pt;}
.x36_c00061{left:695.040000pt;}
.x54_c00061{left:697.346667pt;}
.x6b_c00061{left:712.706667pt;}
.x4b_c00061{left:721.146667pt;}
.x5e_c00061{left:725.760000pt;}
.x3c_c00061{left:730.374133pt;}
.x2a_c00061{left:732.666667pt;}
.x6c_c00061{left:736.506667pt;}
.x50_c00061{left:744.186667pt;}
.x70_c00061{left:748.026667pt;}
.x2b_c00061{left:755.706667pt;}
.x5f_c00061{left:757.253333pt;}
.x67_c00061{left:759.546667pt;}
.x37_c00061{left:768.773333pt;}
.x68_c00061{left:771.840000pt;}
.x2c_c00061{left:773.373333pt;}
.x43_c00061{left:774.906667pt;}
.x4c_c00061{left:781.826667pt;}
.x2d_c00061{left:784.893333pt;}
.x2e_c00061{left:791.813333pt;}
.x6d_c00061{left:802.560000pt;}
.x63_c00061{left:812.546667pt;}
.x2f_c00061{left:814.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_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_4a467ebfed3be321eaeacdf1.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.109863;font-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_c00062{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c00062{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10_c00062{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);}
.mf_c00062{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.md_c00062{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);}
.m4_c00062{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.m12_c00062{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);}
.m11_c00062{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);}
.mc_c00062{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);}
.m6_c00062{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);}
.m18_c00062{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);}
.ma_c00062{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);}
.m5_c00062{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00062{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c00062{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m14_c00062{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00062{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00062{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00062{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00062{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m19_c00062{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);}
.m17_c00062{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);}
.m1_c00062{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m15_c00062{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m13_c00062{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c00062{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.mb_c00062{transform:matrix(1.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.292500,0.000000,0.000000,0.250000,0,0);}
.v0_c00062{vertical-align:0.000000px;}
.v1_c00062{vertical-align:13.860000px;}
.ls1_c00062{letter-spacing:0.000000px;}
.ls0_c00062{letter-spacing:108.204093px;}
.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;}
.fs3_c00062{font-size:3.456000px;}
.fs13_c00062{font-size:6.000000px;}
.fsf_c00062{font-size:6.900000px;}
.fs2_c00062{font-size:10.380000px;}
.fs5_c00062{font-size:13.800000px;}
.fs1_c00062{font-size:17.280000px;}
.fs0_c00062{font-size:20.760000px;}
.fs11_c00062{font-size:24.180000px;}
.fsb_c00062{font-size:55.320000px;}
.fsc_c00062{font-size:62.220000px;}
.fs6_c00062{font-size:65.640000px;}
.fsa_c00062{font-size:69.120000px;}
.fs12_c00062{font-size:72.600000px;}
.fs9_c00062{font-size:76.020000px;}
.fs4_c00062{font-size:79.500000px;}
.fs8_c00062{font-size:82.920000px;}
.fs7_c00062{font-size:89.880000px;}
.fsd_c00062{font-size:124.440000px;}
.fse_c00062{font-size:134.760000px;}
.fs10_c00062{font-size:148.620000px;}
.y0_c00062{bottom:0.000000px;}
.y15_c00062{bottom:1248.480000px;}
.y17_c00062{bottom:1250.205000px;}
.y18_c00062{bottom:1251.075000px;}
.y14_c00062{bottom:1254.525000px;}
.y13_c00062{bottom:1256.250000px;}
.y16_c00062{bottom:1269.210000px;}
.y19_c00062{bottom:1273.530000px;}
.y10_c00062{bottom:1284.765000px;}
.ye_c00062{bottom:1291.680000px;}
.yf_c00062{bottom:1295.130000px;}
.yc_c00062{bottom:1322.790000px;}
.yb_c00062{bottom:1327.965000px;}
.yd_c00062{bottom:1337.475000px;}
.y12_c00062{bottom:1360.800000px;}
.ya_c00062{bottom:1361.670000px;}
.y11_c00062{bottom:1368.570000px;}
.y5_c00062{bottom:1383.270000px;}
.y7_c00062{bottom:1384.995000px;}
.y9_c00062{bottom:1385.850000px;}
.y8_c00062{bottom:1386.720000px;}
.y4_c00062{bottom:1388.445000px;}
.y6_c00062{bottom:1399.680000px;}
.y3_c00062{bottom:1413.510000px;}
.y2_c00062{bottom:1414.365000px;}
.y1_c00062{bottom:1428.195000px;}
.h15_c00062{height:5.399414px;}
.h11_c00062{height:6.209326px;}
.h4_c00062{height:9.340986px;}
.h7_c00062{height:12.418652px;}
.h3_c00062{height:15.550313px;}
.h5_c00062{height:16.970062px;}
.h2_c00062{height:18.681973px;}
.h13_c00062{height:21.759639px;}
.hd_c00062{height:49.782598px;}
.he_c00062{height:55.991924px;}
.h8_c00062{height:59.069590px;}
.hc_c00062{height:62.201250px;}
.h14_c00062{height:65.332910px;}
.hb_c00062{height:68.410576px;}
.h6_c00062{height:71.542236px;}
.ha_c00062{height:74.619902px;}
.h9_c00062{height:80.883223px;}
.hf_c00062{height:111.983848px;}
.h10_c00062{height:121.270840px;}
.h12_c00062{height:133.743486px;}
.h0_c00062{height:1515.450000px;}
.h1_c00062{height:1515.750000px;}
.w0_c00062{width:1079.130000px;}
.w1_c00062{width:1079.250000px;}
.x0_c00062{left:0.000000px;}
.x4_c00062{left:186.630000px;}
.x14_c00062{left:212.550000px;}
.x5_c00062{left:218.595000px;}
.xe_c00062{left:233.280000px;}
.xc_c00062{left:254.880000px;}
.x6_c00062{left:266.115000px;}
.x7_c00062{left:274.755000px;}
.x8_c00062{left:314.490000px;}
.x12_c00062{left:338.685000px;}
.x15_c00062{left:385.350000px;}
.xd_c00062{left:451.875000px;}
.x9_c00062{left:456.195000px;}
.x16_c00062{left:540.870000px;}
.x11_c00062{left:544.320000px;}
.xf_c00062{left:548.640000px;}
.xa_c00062{left:567.645000px;}
.x18_c00062{left:644.550000px;}
.xb_c00062{left:660.960000px;}
.x17_c00062{left:691.200000px;}
.x19_c00062{left:732.675000px;}
.x1a_c00062{left:759.450000px;}
.x1c_c00062{left:809.565000px;}
.x1b_c00062{left:829.440000px;}
.x2_c00062{left:833.760000px;}
.x13_c00062{left:838.080000px;}
.x3_c00062{left:841.530000px;}
.x10_c00062{left:855.360000px;}
.x1_c00062{left:901.155000px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.v1_c00062{vertical-align:12.320000pt;}
.ls1_c00062{letter-spacing:0.000000pt;}
.ls0_c00062{letter-spacing:96.181416pt;}
.ws0_c00062{word-spacing:0.000000pt;}
.fs3_c00062{font-size:3.072000pt;}
.fs13_c00062{font-size:5.333333pt;}
.fsf_c00062{font-size:6.133333pt;}
.fs2_c00062{font-size:9.226667pt;}
.fs5_c00062{font-size:12.266667pt;}
.fs1_c00062{font-size:15.360000pt;}
.fs0_c00062{font-size:18.453333pt;}
.fs11_c00062{font-size:21.493333pt;}
.fsb_c00062{font-size:49.173333pt;}
.fsc_c00062{font-size:55.306667pt;}
.fs6_c00062{font-size:58.346667pt;}
.fsa_c00062{font-size:61.440000pt;}
.fs12_c00062{font-size:64.533333pt;}
.fs9_c00062{font-size:67.573333pt;}
.fs4_c00062{font-size:70.666667pt;}
.fs8_c00062{font-size:73.706667pt;}
.fs7_c00062{font-size:79.893333pt;}
.fsd_c00062{font-size:110.613333pt;}
.fse_c00062{font-size:119.786667pt;}
.fs10_c00062{font-size:132.106667pt;}
.y0_c00062{bottom:0.000000pt;}
.y15_c00062{bottom:1109.760000pt;}
.y17_c00062{bottom:1111.293333pt;}
.y18_c00062{bottom:1112.066667pt;}
.y14_c00062{bottom:1115.133333pt;}
.y13_c00062{bottom:1116.666667pt;}
.y16_c00062{bottom:1128.186667pt;}
.y19_c00062{bottom:1132.026667pt;}
.y10_c00062{bottom:1142.013333pt;}
.ye_c00062{bottom:1148.160000pt;}
.yf_c00062{bottom:1151.226667pt;}
.yc_c00062{bottom:1175.813333pt;}
.yb_c00062{bottom:1180.413333pt;}
.yd_c00062{bottom:1188.866667pt;}
.y12_c00062{bottom:1209.600000pt;}
.ya_c00062{bottom:1210.373333pt;}
.y11_c00062{bottom:1216.506667pt;}
.y5_c00062{bottom:1229.573333pt;}
.y7_c00062{bottom:1231.106667pt;}
.y9_c00062{bottom:1231.866667pt;}
.y8_c00062{bottom:1232.640000pt;}
.y4_c00062{bottom:1234.173333pt;}
.y6_c00062{bottom:1244.160000pt;}
.y3_c00062{bottom:1256.453333pt;}
.y2_c00062{bottom:1257.213333pt;}
.y1_c00062{bottom:1269.506667pt;}
.h15_c00062{height:4.799479pt;}
.h11_c00062{height:5.519401pt;}
.h4_c00062{height:8.303099pt;}
.h7_c00062{height:11.038802pt;}
.h3_c00062{height:13.822500pt;}
.h5_c00062{height:15.084500pt;}
.h2_c00062{height:16.606198pt;}
.h13_c00062{height:19.341901pt;}
.hd_c00062{height:44.251198pt;}
.he_c00062{height:49.770599pt;}
.h8_c00062{height:52.506302pt;}
.hc_c00062{height:55.290000pt;}
.h14_c00062{height:58.073698pt;}
.hb_c00062{height:60.809401pt;}
.h6_c00062{height:63.593099pt;}
.ha_c00062{height:66.328802pt;}
.h9_c00062{height:71.896198pt;}
.hf_c00062{height:99.541198pt;}
.h10_c00062{height:107.796302pt;}
.h12_c00062{height:118.883099pt;}
.h0_c00062{height:1347.066667pt;}
.h1_c00062{height:1347.333333pt;}
.w0_c00062{width:959.226667pt;}
.w1_c00062{width:959.333333pt;}
.x0_c00062{left:0.000000pt;}
.x4_c00062{left:165.893333pt;}
.x14_c00062{left:188.933333pt;}
.x5_c00062{left:194.306667pt;}
.xe_c00062{left:207.360000pt;}
.xc_c00062{left:226.560000pt;}
.x6_c00062{left:236.546667pt;}
.x7_c00062{left:244.226667pt;}
.x8_c00062{left:279.546667pt;}
.x12_c00062{left:301.053333pt;}
.x15_c00062{left:342.533333pt;}
.xd_c00062{left:401.666667pt;}
.x9_c00062{left:405.506667pt;}
.x16_c00062{left:480.773333pt;}
.x11_c00062{left:483.840000pt;}
.xf_c00062{left:487.680000pt;}
.xa_c00062{left:504.573333pt;}
.x18_c00062{left:572.933333pt;}
.xb_c00062{left:587.520000pt;}
.x17_c00062{left:614.400000pt;}
.x19_c00062{left:651.266667pt;}
.x1a_c00062{left:675.066667pt;}
.x1c_c00062{left:719.613333pt;}
.x1b_c00062{left:737.280000pt;}
.x2_c00062{left:741.120000pt;}
.x13_c00062{left:744.960000pt;}
.x3_c00062{left:748.026667pt;}
.x10_c00062{left:760.320000pt;}
.x1_c00062{left:801.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00063;src:url('chunks/assets/font_d87a03727b7cda5033aa1623.woff2')format("woff");}.ff1_c00063{font-family:ff1_c00063;line-height:1.109863;font-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_c00063{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c00063{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00063{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c00063{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);}
.m4_c00063{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls0_c00063{letter-spacing:0.000000px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00063{word-spacing:0.000000px;}
.fc0_c00063{color:transparent;}
.fs1_c00063{font-size:10.380000px;}
.fs2_c00063{font-size:13.800000px;}
.fs0_c00063{font-size:17.280000px;}
.fs3_c00063{font-size:24.180000px;}
.fs4_c00063{font-size:27.660000px;}
.y0_c00063{bottom:0.000000px;}
.y8_c00063{bottom:1360.800000px;}
.y7_c00063{bottom:1370.310000px;}
.y4_c00063{bottom:1404.870000px;}
.y1_c00063{bottom:1410.045000px;}
.y2_c00063{bottom:1410.915000px;}
.y3_c00063{bottom:1411.770000px;}
.y6_c00063{bottom:1421.280000px;}
.y5_c00063{bottom:1425.600000px;}
.h3_c00063{height:9.340986px;}
.h4_c00063{height:12.418652px;}
.h2_c00063{height:15.550313px;}
.h5_c00063{height:21.759639px;}
.h6_c00063{height:24.891299px;}
.h1_c00063{height:1507.500000px;}
.h0_c00063{height:1507.680000px;}
.w1_c00063{width:1059.000000px;}
.w0_c00063{width:1059.270000px;}
.x0_c00063{left:0.000000px;}
.x5_c00063{left:35.430000px;}
.x6_c00063{left:171.075000px;}
.x7_c00063{left:177.120000px;}
.x4_c00063{left:355.965000px;}
.x1_c00063{left:358.560000px;}
.x2_c00063{left:417.315000px;}
.x3_c00063{left:432.870000px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls0_c00063{letter-spacing:0.000000pt;}
.ws0_c00063{word-spacing:0.000000pt;}
.fs1_c00063{font-size:9.226667pt;}
.fs2_c00063{font-size:12.266667pt;}
.fs0_c00063{font-size:15.360000pt;}
.fs3_c00063{font-size:21.493333pt;}
.fs4_c00063{font-size:24.586667pt;}
.y0_c00063{bottom:0.000000pt;}
.y8_c00063{bottom:1209.600000pt;}
.y7_c00063{bottom:1218.053333pt;}
.y4_c00063{bottom:1248.773333pt;}
.y1_c00063{bottom:1253.373333pt;}
.y2_c00063{bottom:1254.146667pt;}
.y3_c00063{bottom:1254.906667pt;}
.y6_c00063{bottom:1263.360000pt;}
.y5_c00063{bottom:1267.200000pt;}
.h3_c00063{height:8.303099pt;}
.h4_c00063{height:11.038802pt;}
.h2_c00063{height:13.822500pt;}
.h5_c00063{height:19.341901pt;}
.h6_c00063{height:22.125599pt;}
.h1_c00063{height:1340.000000pt;}
.h0_c00063{height:1340.160000pt;}
.w1_c00063{width:941.333333pt;}
.w0_c00063{width:941.573333pt;}
.x0_c00063{left:0.000000pt;}
.x5_c00063{left:31.493333pt;}
.x6_c00063{left:152.066667pt;}
.x7_c00063{left:157.440000pt;}
.x4_c00063{left:316.413333pt;}
.x1_c00063{left:318.720000pt;}
.x2_c00063{left:370.946667pt;}
.x3_c00063{left:384.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d11bc7fee9a6ece7e81ada57.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.109863;font-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_c00064{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00064{transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);}
.m1ca_c00064{transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);}
.m8a_c00064{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);}
.m80_c00064{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m136_c00064{transform:matrix(0.090950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090950,0.000000,0.000000,0.250000,0,0);}
.mfb_c00064{transform:matrix(0.091900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091900,0.000000,0.000000,0.250000,0,0);}
.mba_c00064{transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);}
.m13e_c00064{transform:matrix(0.098125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098125,0.000000,0.000000,0.250000,0,0);}
.m201_c00064{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);}
.m11_c00064{transform:matrix(0.101925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101925,0.000000,0.000000,0.250000,0,0);}
.m178_c00064{transform:matrix(0.103200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103200,0.000000,0.000000,0.250000,0,0);}
.m17d_c00064{transform:matrix(0.103725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103725,0.000000,0.000000,0.250000,0,0);}
.m8b_c00064{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00064{transform:matrix(0.104525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104525,0.000000,0.000000,0.250000,0,0);}
.m18b_c00064{transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);}
.m1ea_c00064{transform:matrix(0.107975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107975,0.000000,0.000000,0.250000,0,0);}
.m11b_c00064{transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);}
.m10_c00064{transform:matrix(0.110850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110850,0.000000,0.000000,0.250000,0,0);}
.m6f_c00064{transform:matrix(0.111075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111075,0.000000,0.000000,0.250000,0,0);}
.mc1_c00064{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m9_c00064{transform:matrix(0.111450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111450,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00064{transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);}
.m73_c00064{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m1e3_c00064{transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);}
.m47_c00064{transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);}
.m176_c00064{transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);}
.m72_c00064{transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);}
.m13c_c00064{transform:matrix(0.117075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117075,0.000000,0.000000,0.250000,0,0);}
.ma7_c00064{transform:matrix(0.117300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117300,0.000000,0.000000,0.250000,0,0);}
.maa_c00064{transform:matrix(0.118675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118675,0.000000,0.000000,0.250000,0,0);}
.m1d9_c00064{transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);}
.m173_c00064{transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);}
.m198_c00064{transform:matrix(0.122850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122850,0.000000,0.000000,0.250000,0,0);}
.m98_c00064{transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);}
.m1e2_c00064{transform:matrix(0.124050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124050,0.000000,0.000000,0.250000,0,0);}
.m1ce_c00064{transform:matrix(0.124700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124700,0.000000,0.000000,0.250000,0,0);}
.m1fd_c00064{transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);}
.m93_c00064{transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);}
.ma9_c00064{transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);}
.m11d_c00064{transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);}
.m67_c00064{transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);}
.m101_c00064{transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);}
.m91_c00064{transform:matrix(0.127775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127775,0.000000,0.000000,0.250000,0,0);}
.mb5_c00064{transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00064{transform:matrix(0.129150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129150,0.000000,0.000000,0.250000,0,0);}
.md_c00064{transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);}
.m197_c00064{transform:matrix(0.130825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130825,0.000000,0.000000,0.250000,0,0);}
.m55_c00064{transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00064{transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);}
.m113_c00064{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.m14b_c00064{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);}
.m17_c00064{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.m1af_c00064{transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);}
.me0_c00064{transform:matrix(0.134825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134825,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00064{transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);}
.m177_c00064{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.m129_c00064{transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);}
.m192_c00064{transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);}
.m155_c00064{transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);}
.m174_c00064{transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);}
.m10a_c00064{transform:matrix(0.136950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136950,0.000000,0.000000,0.250000,0,0);}
.mfc_c00064{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.m1d4_c00064{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.mf_c00064{transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);}
.m1c6_c00064{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m76_c00064{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m163_c00064{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.mb_c00064{transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);}
.mff_c00064{transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);}
.m68_c00064{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m202_c00064{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m1ec_c00064{transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);}
.m92_c00064{transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);}
.m4c_c00064{transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);}
.m20_c00064{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m18a_c00064{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.m182_c00064{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);}
.m186_c00064{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.m104_c00064{transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);}
.m112_c00064{transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);}
.m183_c00064{transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);}
.m106_c00064{transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);}
.m1c1_c00064{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m4b_c00064{transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);}
.m194_c00064{transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);}
.m12d_c00064{transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);}
.m1f_c00064{transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);}
.m1bc_c00064{transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);}
.m6e_c00064{transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00064{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);}
.m89_c00064{transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);}
.m18e_c00064{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.m135_c00064{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.mcc_c00064{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.m175_c00064{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);}
.m1d2_c00064{transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);}
.m12_c00064{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m1de_c00064{transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);}
.m1e5_c00064{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);}
.m12c_c00064{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.m117_c00064{transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);}
.mb3_c00064{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m1f7_c00064{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);}
.m1e6_c00064{transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);}
.m193_c00064{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);}
.ma8_c00064{transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);}
.m138_c00064{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m1e1_c00064{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);}
.m1ac_c00064{transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00064{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.mc8_c00064{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m166_c00064{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m191_c00064{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m17e_c00064{transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);}
.m12b_c00064{transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);}
.me6_c00064{transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);}
.mab_c00064{transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);}
.m170_c00064{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.m115_c00064{transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);}
.mf5_c00064{transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);}
.m100_c00064{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m185_c00064{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.m10b_c00064{transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);}
.m1e7_c00064{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.m187_c00064{transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);}
.m1f6_c00064{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m1d0_c00064{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m196_c00064{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.m188_c00064{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.m161_c00064{transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);}
.m110_c00064{transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);}
.maf_c00064{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m1b8_c00064{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);}
.m114_c00064{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);}
.m1d1_c00064{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m16_c00064{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m1db_c00064{transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);}
.m18d_c00064{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.m199_c00064{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.m7d_c00064{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m13a_c00064{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.m189_c00064{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m200_c00064{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);}
.m14e_c00064{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.mb8_c00064{transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);}
.m13d_c00064{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.md9_c00064{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m1da_c00064{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);}
.m1cf_c00064{transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);}
.m103_c00064{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);}
.m15c_c00064{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);}
.mbd_c00064{transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);}
.m190_c00064{transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);}
.m1d7_c00064{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);}
.m9e_c00064{transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00064{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);}
.m147_c00064{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m13b_c00064{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);}
.m153_c00064{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m181_c00064{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m1bb_c00064{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.mae_c00064{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m14d_c00064{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m149_c00064{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.m1f2_c00064{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m1e4_c00064{transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);}
.m111_c00064{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00064{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00064{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m1f9_c00064{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.ma6_c00064{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);}
.m7_c00064{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);}
.mca_c00064{transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);}
.m15e_c00064{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);}
.me3_c00064{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.ma2_c00064{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);}
.m1e9_c00064{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.mbe_c00064{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.me4_c00064{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.mf8_c00064{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m1fa_c00064{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00064{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);}
.m10c_c00064{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);}
.m15_c00064{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m6d_c00064{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m77_c00064{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m6c_c00064{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.m118_c00064{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m146_c00064{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m13_c00064{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);}
.m180_c00064{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);}
.m116_c00064{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m195_c00064{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m12a_c00064{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);}
.m1e0_c00064{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.m18c_c00064{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);}
.m1ff_c00064{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m10e_c00064{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m1c2_c00064{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.m16f_c00064{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00064{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);}
.m184_c00064{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m144_c00064{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00064{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);}
.me7_c00064{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);}
.m49_c00064{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);}
.m24_c00064{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m1dc_c00064{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.mc0_c00064{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);}
.m12f_c00064{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.mb2_c00064{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m10d_c00064{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);}
.m121_c00064{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1f1_c00064{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);}
.m74_c00064{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);}
.m19c_c00064{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m109_c00064{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);}
.me5_c00064{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);}
.m10f_c00064{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);}
.m1a9_c00064{transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);}
.m60_c00064{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1c4_c00064{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);}
.m1dd_c00064{transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);}
.m125_c00064{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);}
.m167_c00064{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);}
.m1b0_c00064{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m65_c00064{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);}
.m1b2_c00064{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);}
.m19a_c00064{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.mcb_c00064{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m127_c00064{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);}
.m71_c00064{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m139_c00064{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.m3a_c00064{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.m1df_c00064{transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);}
.me2_c00064{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m158_c00064{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.m9f_c00064{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);}
.m126_c00064{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.md8_c00064{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m15b_c00064{transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);}
.mb9_c00064{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m1ba_c00064{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);}
.m1c5_c00064{transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);}
.m87_c00064{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);}
.m2a_c00064{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m179_c00064{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);}
.mfa_c00064{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m11a_c00064{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m8_c00064{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m1d5_c00064{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.m1b9_c00064{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.m95_c00064{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);}
.m1fc_c00064{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m7a_c00064{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);}
.m1c0_c00064{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.m18f_c00064{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);}
.m14a_c00064{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);}
.m171_c00064{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);}
.m1e_c00064{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m148_c00064{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.mb0_c00064{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00064{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m70_c00064{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);}
.m168_c00064{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.mac_c00064{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);}
.m17c_c00064{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);}
.m1d8_c00064{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);}
.m133_c00064{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m8c_c00064{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);}
.ma4_c00064{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m156_c00064{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m1bf_c00064{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);}
.m88_c00064{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);}
.m46_c00064{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m1cb_c00064{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);}
.m151_c00064{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);}
.mad_c00064{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);}
.m172_c00064{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m0_c00064{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);}
.m48_c00064{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);}
.m150_c00064{transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);}
.m1f4_c00064{transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);}
.m61_c00064{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);}
.m19e_c00064{transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);}
.m108_c00064{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.m19f_c00064{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);}
.m69_c00064{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.m79_c00064{transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);}
.m132_c00064{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m75_c00064{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);}
.m122_c00064{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.me9_c00064{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);}
.m1a8_c00064{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.m8d_c00064{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.m4d_c00064{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);}
.m169_c00064{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.mf7_c00064{transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);}
.m8f_c00064{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mdd_c00064{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m62_c00064{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00064{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);}
.m81_c00064{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.m143_c00064{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);}
.m1b1_c00064{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);}
.m1c9_c00064{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00064{transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);}
.m19b_c00064{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.m137_c00064{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.mc3_c00064{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);}
.m1be_c00064{transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);}
.m1c3_c00064{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.m1d6_c00064{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);}
.md1_c00064{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);}
.m5c_c00064{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);}
.m14c_c00064{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);}
.m1ed_c00064{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);}
.m5d_c00064{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);}
.md6_c00064{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);}
.ma3_c00064{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);}
.m1c8_c00064{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);}
.m162_c00064{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);}
.m154_c00064{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);}
.m131_c00064{transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);}
.mee_c00064{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);}
.m86_c00064{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);}
.m1d3_c00064{transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);}
.m165_c00064{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m1eb_c00064{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);}
.m14f_c00064{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.m2d_c00064{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);}
.m1a4_c00064{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m44_c00064{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);}
.mc6_c00064{transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);}
.m58_c00064{transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);}
.m1c_c00064{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m1e8_c00064{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m124_c00064{transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);}
.m130_c00064{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);}
.m11c_c00064{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);}
.mc9_c00064{transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);}
.m119_c00064{transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);}
.m1ef_c00064{transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);}
.m34_c00064{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);}
.m159_c00064{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);}
.m1f0_c00064{transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);}
.m1cd_c00064{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);}
.m1cc_c00064{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m128_c00064{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);}
.m96_c00064{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m15d_c00064{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);}
.m63_c00064{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.mf4_c00064{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m15a_c00064{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);}
.m1f8_c00064{transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);}
.m17a_c00064{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);}
.mef_c00064{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);}
.m152_c00064{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);}
.m4_c00064{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);}
.m107_c00064{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);}
.mfe_c00064{transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);}
.m1f3_c00064{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.mbf_c00064{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);}
.mf9_c00064{transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);}
.m6b_c00064{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m7c_c00064{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m164_c00064{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);}
.mbc_c00064{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);}
.m97_c00064{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00064{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);}
.m1_c00064{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);}
.ma5_c00064{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);}
.m4f_c00064{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);}
.m90_c00064{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m83_c00064{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m40_c00064{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m145_c00064{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);}
.m1d_c00064{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15f_c00064{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);}
.m4e_c00064{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);}
.m45_c00064{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00064{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);}
.m19_c00064{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c00064{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m23_c00064{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);}
.m42_c00064{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00064{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);}
.m26_c00064{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);}
.m43_c00064{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00064{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m37_c00064{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);}
.m35_c00064{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md4_c00064{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00064{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);}
.mc2_c00064{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00064{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00064{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00064{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00064{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00064{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00064{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m78_c00064{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c00064{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);}
.m22_c00064{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00064{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m17b_c00064{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00064{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c00064{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);}
.mbb_c00064{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);}
.m7b_c00064{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m21_c00064{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00064{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);}
.m5f_c00064{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m84_c00064{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c00064{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m27_c00064{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00064{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc_c00064{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);}
.m5e_c00064{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00064{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m94_c00064{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);}
.m51_c00064{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m28_c00064{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00064{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m16a_c00064{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m36_c00064{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00064{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mde_c00064{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m160_c00064{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00064{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);}
.m102_c00064{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);}
.m1a7_c00064{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00064{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1fb_c00064{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);}
.me8_c00064{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00064{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m18_c00064{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md7_c00064{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00064{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00064{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1c7_c00064{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00064{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_c00064{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1fe_c00064{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.me1_c00064{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00064{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m66_c00064{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.md3_c00064{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m39_c00064{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);}
.mf1_c00064{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md5_c00064{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.md2_c00064{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00064{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m19d_c00064{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m85_c00064{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m38_c00064{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);}
.m31_c00064{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);}
.m30_c00064{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m134_c00064{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);}
.m1a0_c00064{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m41_c00064{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mda_c00064{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1ee_c00064{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mea_c00064{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00064{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m157_c00064{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m59_c00064{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);}
.md0_c00064{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00064{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00064{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m13f_c00064{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00064{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m16d_c00064{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00064{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m29_c00064{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);}
.m17f_c00064{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.meb_c00064{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00064{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00064{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m64_c00064{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);}
.m105_c00064{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00064{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00064{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m140_c00064{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00064{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m142_c00064{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m57_c00064{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.mce_c00064{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);}
.m16e_c00064{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m52_c00064{transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);}
.m56_c00064{transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);}
.m32_c00064{transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);}
.m82_c00064{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00064{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);}
.mec_c00064{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.m53_c00064{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.m16b_c00064{transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);}
.m16c_c00064{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00064{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);}
.m6_c00064{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m25_c00064{transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);}
.m120_c00064{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m123_c00064{transform:matrix(1.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.162500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00064{transform:matrix(1.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.257500,0.000000,0.000000,0.250000,0,0);}
.m54_c00064{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00064{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.m141_c00064{transform:matrix(1.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.472500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00064{transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);}
.m99_c00064{transform:matrix(1.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.722500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00064{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m50_c00064{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.med_c00064{transform:matrix(2.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.250000,0.000000,0.000000,0.250000,0,0);}
.m1f5_c00064{transform:matrix(2.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.730000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00064{transform:matrix(4.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.435000,0.000000,0.000000,0.250000,0,0);}
.v1_c00064{vertical-align:-3.480000px;}
.v0_c00064{vertical-align:0.000000px;}
.ls1_c00064{letter-spacing:0.000000px;}
.ls0_c00064{letter-spacing:134.011310px;}
.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:-34.245420px;}
.ws1_c00064{word-spacing:0.000000px;}
._0_c00064{width:9.433440px;}
.fc0_c00064{color:transparent;}
.fs10_c00064{font-size:3.456000px;}
.fs1c_c00064{font-size:6.000000px;}
.fs6_c00064{font-size:6.900000px;}
.fs1b_c00064{font-size:10.380000px;}
.fs2_c00064{font-size:13.800000px;}
.fs15_c00064{font-size:17.280000px;}
.fs20_c00064{font-size:20.760000px;}
.fs16_c00064{font-size:24.180000px;}
.fs18_c00064{font-size:27.660000px;}
.fs14_c00064{font-size:31.080000px;}
.fs19_c00064{font-size:34.560000px;}
.fs12_c00064{font-size:38.040000px;}
.fsa_c00064{font-size:41.460000px;}
.fs13_c00064{font-size:44.940000px;}
.fs1a_c00064{font-size:48.360000px;}
.fsc_c00064{font-size:51.840000px;}
.fs1_c00064{font-size:55.320000px;}
.fs17_c00064{font-size:58.740000px;}
.fs1d_c00064{font-size:62.220000px;}
.fs3_c00064{font-size:65.640000px;}
.fse_c00064{font-size:69.120000px;}
.fs11_c00064{font-size:72.600000px;}
.fs0_c00064{font-size:76.020000px;}
.fsb_c00064{font-size:79.500000px;}
.fs9_c00064{font-size:82.920000px;}
.fs7_c00064{font-size:86.400000px;}
.fs1f_c00064{font-size:89.880000px;}
.fs5_c00064{font-size:93.300000px;}
.fs8_c00064{font-size:96.780000px;}
.fs4_c00064{font-size:100.200000px;}
.fsf_c00064{font-size:103.680000px;}
.fs1e_c00064{font-size:110.580000px;}
.fs21_c00064{font-size:114.060000px;}
.fsd_c00064{font-size:117.480000px;}
.fs22_c00064{font-size:120.960000px;}
.y0_c00064{bottom:0.000000px;}
.y275_c00064{bottom:196.995000px;}
.y274_c00064{bottom:200.445000px;}
.y26c_c00064{bottom:222.915000px;}
.y26d_c00064{bottom:223.770000px;}
.y269_c00064{bottom:230.685000px;}
.y26b_c00064{bottom:232.410000px;}
.y26a_c00064{bottom:234.150000px;}
.y267_c00064{bottom:247.110000px;}
.y268_c00064{bottom:248.835000px;}
.y266_c00064{bottom:249.690000px;}
.y265_c00064{bottom:255.750000px;}
.y264_c00064{bottom:272.160000px;}
.y263_c00064{bottom:273.885000px;}
.y262_c00064{bottom:274.755000px;}
.y261_c00064{bottom:275.610000px;}
.y25f_c00064{bottom:291.165000px;}
.y25e_c00064{bottom:292.035000px;}
.y260_c00064{bottom:293.760000px;}
.y25a_c00064{bottom:309.315000px;}
.y25c_c00064{bottom:310.170000px;}
.y258_c00064{bottom:311.910000px;}
.y25d_c00064{bottom:312.765000px;}
.y25b_c00064{bottom:313.635000px;}
.y257_c00064{bottom:315.360000px;}
.y259_c00064{bottom:316.230000px;}
.y256_c00064{bottom:317.085000px;}
.y255_c00064{bottom:327.450000px;}
.y254_c00064{bottom:331.770000px;}
.y253_c00064{bottom:336.090000px;}
.y252_c00064{bottom:337.830000px;}
.y24e_c00064{bottom:349.050000px;}
.y24c_c00064{bottom:350.790000px;}
.y24b_c00064{bottom:352.515000px;}
.y251_c00064{bottom:353.370000px;}
.y24f_c00064{bottom:354.240000px;}
.y24d_c00064{bottom:355.110000px;}
.y250_c00064{bottom:367.200000px;}
.y247_c00064{bottom:369.795000px;}
.y246_c00064{bottom:373.245000px;}
.y244_c00064{bottom:374.115000px;}
.y248_c00064{bottom:374.970000px;}
.y249_c00064{bottom:375.840000px;}
.y24a_c00064{bottom:376.710000px;}
.y245_c00064{bottom:377.565000px;}
.y241_c00064{bottom:380.160000px;}
.y240_c00064{bottom:381.885000px;}
.y23f_c00064{bottom:388.800000px;}
.y243_c00064{bottom:390.525000px;}
.y242_c00064{bottom:391.395000px;}
.y23b_c00064{bottom:392.250000px;}
.y23c_c00064{bottom:393.120000px;}
.y23d_c00064{bottom:393.990000px;}
.y23e_c00064{bottom:394.845000px;}
.y239_c00064{bottom:397.440000px;}
.y238_c00064{bottom:398.310000px;}
.y23a_c00064{bottom:399.165000px;}
.y236_c00064{bottom:400.035000px;}
.y237_c00064{bottom:401.760000px;}
.y235_c00064{bottom:403.485000px;}
.y233_c00064{bottom:404.355000px;}
.y232_c00064{bottom:405.210000px;}
.y234_c00064{bottom:406.080000px;}
.y22f_c00064{bottom:407.805000px;}
.y230_c00064{bottom:410.400000px;}
.y231_c00064{bottom:415.590000px;}
.y22e_c00064{bottom:425.085000px;}
.y22d_c00064{bottom:425.955000px;}
.y22c_c00064{bottom:426.810000px;}
.y229_c00064{bottom:430.275000px;}
.y228_c00064{bottom:431.130000px;}
.y227_c00064{bottom:432.000000px;}
.y22a_c00064{bottom:432.870000px;}
.y22b_c00064{bottom:433.725000px;}
.y226_c00064{bottom:438.045000px;}
.y223_c00064{bottom:450.150000px;}
.y220_c00064{bottom:451.005000px;}
.y224_c00064{bottom:451.875000px;}
.y21f_c00064{bottom:452.730000px;}
.y225_c00064{bottom:453.600000px;}
.y21d_c00064{bottom:454.470000px;}
.y221_c00064{bottom:456.195000px;}
.y222_c00064{bottom:457.050000px;}
.y21e_c00064{bottom:457.920000px;}
.y21b_c00064{bottom:463.110000px;}
.y21a_c00064{bottom:463.965000px;}
.y21c_c00064{bottom:464.835000px;}
.y216_c00064{bottom:466.560000px;}
.y215_c00064{bottom:467.430000px;}
.y219_c00064{bottom:468.285000px;}
.y218_c00064{bottom:469.155000px;}
.y217_c00064{bottom:470.010000px;}
.y212_c00064{bottom:470.880000px;}
.y213_c00064{bottom:472.605000px;}
.y214_c00064{bottom:473.475000px;}
.y211_c00064{bottom:474.330000px;}
.y20c_c00064{bottom:476.925000px;}
.y210_c00064{bottom:477.795000px;}
.y20f_c00064{bottom:478.650000px;}
.y20a_c00064{bottom:479.520000px;}
.y209_c00064{bottom:480.390000px;}
.y20d_c00064{bottom:481.245000px;}
.y20e_c00064{bottom:482.115000px;}
.y207_c00064{bottom:483.840000px;}
.y20b_c00064{bottom:484.710000px;}
.y206_c00064{bottom:486.435000px;}
.y204_c00064{bottom:489.030000px;}
.y203_c00064{bottom:489.885000px;}
.y205_c00064{bottom:490.755000px;}
.y208_c00064{bottom:492.480000px;}
.y200_c00064{bottom:493.350000px;}
.y1ff_c00064{bottom:494.205000px;}
.y201_c00064{bottom:495.930000px;}
.y202_c00064{bottom:496.800000px;}
.y1fb_c00064{bottom:498.525000px;}
.y1fe_c00064{bottom:499.395000px;}
.y1fd_c00064{bottom:501.120000px;}
.y1f9_c00064{bottom:501.990000px;}
.y1f7_c00064{bottom:502.845000px;}
.y1fa_c00064{bottom:503.715000px;}
.y1fc_c00064{bottom:504.570000px;}
.y1f8_c00064{bottom:505.440000px;}
.y1f4_c00064{bottom:508.035000px;}
.y1f2_c00064{bottom:511.485000px;}
.y1f6_c00064{bottom:513.210000px;}
.y1f1_c00064{bottom:516.675000px;}
.y1f5_c00064{bottom:517.530000px;}
.y1f3_c00064{bottom:519.270000px;}
.y1ef_c00064{bottom:523.590000px;}
.y1ee_c00064{bottom:526.170000px;}
.y1ec_c00064{bottom:527.910000px;}
.y1ed_c00064{bottom:528.765000px;}
.y1e9_c00064{bottom:529.635000px;}
.y1e8_c00064{bottom:530.490000px;}
.y1eb_c00064{bottom:533.085000px;}
.y1ea_c00064{bottom:535.680000px;}
.y1e7_c00064{bottom:536.550000px;}
.y1e5_c00064{bottom:540.000000px;}
.y1e6_c00064{bottom:540.870000px;}
.y1f0_c00064{bottom:542.595000px;}
.y1e3_c00064{bottom:551.235000px;}
.y1df_c00064{bottom:552.090000px;}
.y1de_c00064{bottom:553.830000px;}
.y1db_c00064{bottom:554.685000px;}
.y1e4_c00064{bottom:555.555000px;}
.y1e2_c00064{bottom:556.410000px;}
.y1e1_c00064{bottom:557.280000px;}
.y1e0_c00064{bottom:558.150000px;}
.y1dc_c00064{bottom:559.005000px;}
.y1dd_c00064{bottom:559.875000px;}
.y1d6_c00064{bottom:572.835000px;}
.y1d7_c00064{bottom:577.155000px;}
.y1d4_c00064{bottom:579.750000px;}
.y1d5_c00064{bottom:580.605000px;}
.y1d8_c00064{bottom:583.200000px;}
.y1da_c00064{bottom:584.070000px;}
.y1d9_c00064{bottom:584.925000px;}
.y1d1_c00064{bottom:587.520000px;}
.y1d3_c00064{bottom:590.115000px;}
.y1cf_c00064{bottom:590.970000px;}
.y1d2_c00064{bottom:592.710000px;}
.y1d0_c00064{bottom:594.435000px;}
.y1ce_c00064{bottom:595.290000px;}
.y1cb_c00064{bottom:596.160000px;}
.y1ca_c00064{bottom:597.030000px;}
.y1cd_c00064{bottom:597.885000px;}
.y1cc_c00064{bottom:598.755000px;}
.y1c7_c00064{bottom:600.480000px;}
.y1c4_c00064{bottom:601.350000px;}
.y1c9_c00064{bottom:602.205000px;}
.y1c5_c00064{bottom:603.075000px;}
.y1c3_c00064{bottom:605.670000px;}
.y1c2_c00064{bottom:606.525000px;}
.y1c1_c00064{bottom:609.120000px;}
.y1c8_c00064{bottom:609.990000px;}
.y1bf_c00064{bottom:610.845000px;}
.y1c0_c00064{bottom:611.715000px;}
.y1c6_c00064{bottom:616.035000px;}
.y1be_c00064{bottom:622.080000px;}
.y1bd_c00064{bottom:626.400000px;}
.y1ba_c00064{bottom:628.995000px;}
.y1b8_c00064{bottom:629.850000px;}
.y1b9_c00064{bottom:630.720000px;}
.y1bb_c00064{bottom:631.590000px;}
.y1bc_c00064{bottom:632.445000px;}
.y1b6_c00064{bottom:633.315000px;}
.y1b7_c00064{bottom:635.910000px;}
.y1b5_c00064{bottom:646.275000px;}
.y1b4_c00064{bottom:652.320000px;}
.y1b0_c00064{bottom:654.915000px;}
.y1af_c00064{bottom:655.770000px;}
.y1ab_c00064{bottom:656.640000px;}
.y1b3_c00064{bottom:657.510000px;}
.y1b1_c00064{bottom:658.365000px;}
.y1ad_c00064{bottom:659.235000px;}
.y1b2_c00064{bottom:660.090000px;}
.y1ae_c00064{bottom:660.960000px;}
.y1ac_c00064{bottom:661.830000px;}
.y1aa_c00064{bottom:662.685000px;}
.y1a9_c00064{bottom:667.005000px;}
.y1a8_c00064{bottom:668.730000px;}
.y1a7_c00064{bottom:669.600000px;}
.y1a6_c00064{bottom:670.470000px;}
.y1a3_c00064{bottom:671.325000px;}
.y1a1_c00064{bottom:672.195000px;}
.y19f_c00064{bottom:673.050000px;}
.y1a4_c00064{bottom:673.920000px;}
.y1a5_c00064{bottom:675.645000px;}
.y1a2_c00064{bottom:676.515000px;}
.y1a0_c00064{bottom:681.690000px;}
.y19e_c00064{bottom:682.560000px;}
.y273_c00064{bottom:684.285000px;}
.y19d_c00064{bottom:690.330000px;}
.y19c_c00064{bottom:692.070000px;}
.y198_c00064{bottom:694.650000px;}
.y19b_c00064{bottom:695.520000px;}
.y197_c00064{bottom:696.390000px;}
.y19a_c00064{bottom:697.245000px;}
.y199_c00064{bottom:698.115000px;}
.y194_c00064{bottom:699.840000px;}
.y193_c00064{bottom:702.435000px;}
.y196_c00064{bottom:703.290000px;}
.y191_c00064{bottom:704.160000px;}
.y192_c00064{bottom:705.030000px;}
.y190_c00064{bottom:706.755000px;}
.y195_c00064{bottom:707.610000px;}
.y18f_c00064{bottom:708.480000px;}
.y18d_c00064{bottom:710.205000px;}
.y18b_c00064{bottom:714.525000px;}
.y187_c00064{bottom:715.395000px;}
.y18e_c00064{bottom:717.120000px;}
.y18c_c00064{bottom:719.715000px;}
.y18a_c00064{bottom:721.440000px;}
.y189_c00064{bottom:722.310000px;}
.y188_c00064{bottom:723.165000px;}
.y185_c00064{bottom:734.400000px;}
.y183_c00064{bottom:736.995000px;}
.y182_c00064{bottom:738.720000px;}
.y186_c00064{bottom:739.590000px;}
.y184_c00064{bottom:742.170000px;}
.y180_c00064{bottom:747.360000px;}
.y17f_c00064{bottom:753.405000px;}
.y17c_c00064{bottom:759.450000px;}
.y177_c00064{bottom:760.320000px;}
.y17d_c00064{bottom:761.190000px;}
.y17e_c00064{bottom:762.045000px;}
.y17a_c00064{bottom:762.915000px;}
.y181_c00064{bottom:764.640000px;}
.y17b_c00064{bottom:765.510000px;}
.y179_c00064{bottom:768.960000px;}
.y178_c00064{bottom:769.830000px;}
.y174_c00064{bottom:773.280000px;}
.y173_c00064{bottom:774.150000px;}
.y171_c00064{bottom:775.005000px;}
.y16f_c00064{bottom:776.730000px;}
.y170_c00064{bottom:777.600000px;}
.y172_c00064{bottom:779.325000px;}
.y16e_c00064{bottom:782.790000px;}
.y175_c00064{bottom:783.645000px;}
.y176_c00064{bottom:788.835000px;}
.y16d_c00064{bottom:793.155000px;}
.y16c_c00064{bottom:794.010000px;}
.y16a_c00064{bottom:794.880000px;}
.y16b_c00064{bottom:795.750000px;}
.y166_c00064{bottom:798.330000px;}
.y169_c00064{bottom:799.200000px;}
.y168_c00064{bottom:800.070000px;}
.y167_c00064{bottom:800.925000px;}
.y165_c00064{bottom:806.970000px;}
.y164_c00064{bottom:813.030000px;}
.y15f_c00064{bottom:814.755000px;}
.y161_c00064{bottom:815.610000px;}
.y162_c00064{bottom:816.480000px;}
.y163_c00064{bottom:818.205000px;}
.y160_c00064{bottom:822.525000px;}
.y15e_c00064{bottom:824.250000px;}
.y15d_c00064{bottom:826.845000px;}
.y159_c00064{bottom:827.715000px;}
.y15c_c00064{bottom:829.440000px;}
.y157_c00064{bottom:830.310000px;}
.y156_c00064{bottom:831.165000px;}
.y15a_c00064{bottom:832.035000px;}
.y15b_c00064{bottom:832.890000px;}
.y155_c00064{bottom:834.630000px;}
.y158_c00064{bottom:838.080000px;}
.y14e_c00064{bottom:838.950000px;}
.y14c_c00064{bottom:839.805000px;}
.y154_c00064{bottom:840.675000px;}
.y150_c00064{bottom:841.530000px;}
.y14b_c00064{bottom:842.400000px;}
.y153_c00064{bottom:843.270000px;}
.y151_c00064{bottom:844.125000px;}
.y14f_c00064{bottom:844.995000px;}
.y14d_c00064{bottom:845.850000px;}
.y152_c00064{bottom:847.590000px;}
.y14a_c00064{bottom:849.315000px;}
.y149_c00064{bottom:851.910000px;}
.y147_c00064{bottom:852.765000px;}
.y145_c00064{bottom:853.635000px;}
.y148_c00064{bottom:855.360000px;}
.y141_c00064{bottom:856.230000px;}
.y143_c00064{bottom:857.085000px;}
.y146_c00064{bottom:857.955000px;}
.y144_c00064{bottom:858.810000px;}
.y142_c00064{bottom:860.550000px;}
.y140_c00064{bottom:862.275000px;}
.y13e_c00064{bottom:868.320000px;}
.y13a_c00064{bottom:870.045000px;}
.y13f_c00064{bottom:870.915000px;}
.y139_c00064{bottom:872.640000px;}
.y138_c00064{bottom:874.365000px;}
.y135_c00064{bottom:876.090000px;}
.y136_c00064{bottom:876.960000px;}
.y13d_c00064{bottom:877.830000px;}
.y13c_c00064{bottom:878.685000px;}
.y137_c00064{bottom:880.410000px;}
.y13b_c00064{bottom:882.150000px;}
.y134_c00064{bottom:883.005000px;}
.y131_c00064{bottom:889.050000px;}
.y132_c00064{bottom:889.920000px;}
.y12f_c00064{bottom:890.790000px;}
.y130_c00064{bottom:891.645000px;}
.y133_c00064{bottom:892.515000px;}
.y12c_c00064{bottom:893.370000px;}
.y12e_c00064{bottom:894.240000px;}
.y12d_c00064{bottom:895.110000px;}
.y12a_c00064{bottom:895.965000px;}
.y12b_c00064{bottom:897.690000px;}
.y127_c00064{bottom:898.560000px;}
.y129_c00064{bottom:900.285000px;}
.y128_c00064{bottom:901.155000px;}
.y123_c00064{bottom:903.750000px;}
.y126_c00064{bottom:905.475000px;}
.y124_c00064{bottom:908.925000px;}
.y125_c00064{bottom:909.795000px;}
.y120_c00064{bottom:912.390000px;}
.y11c_c00064{bottom:913.245000px;}
.y122_c00064{bottom:915.840000px;}
.y11e_c00064{bottom:917.565000px;}
.y121_c00064{bottom:920.160000px;}
.y11f_c00064{bottom:921.030000px;}
.y11d_c00064{bottom:922.755000px;}
.y11a_c00064{bottom:927.075000px;}
.y117_c00064{bottom:929.670000px;}
.y11b_c00064{bottom:930.525000px;}
.y113_c00064{bottom:931.395000px;}
.y110_c00064{bottom:933.120000px;}
.y119_c00064{bottom:933.990000px;}
.y115_c00064{bottom:934.845000px;}
.y116_c00064{bottom:935.715000px;}
.y111_c00064{bottom:939.165000px;}
.y114_c00064{bottom:940.035000px;}
.y112_c00064{bottom:941.760000px;}
.y118_c00064{bottom:944.355000px;}
.y10a_c00064{bottom:952.125000px;}
.y10c_c00064{bottom:952.995000px;}
.y10d_c00064{bottom:953.850000px;}
.y10e_c00064{bottom:954.720000px;}
.y108_c00064{bottom:955.590000px;}
.y10b_c00064{bottom:957.315000px;}
.y104_c00064{bottom:958.170000px;}
.y106_c00064{bottom:959.040000px;}
.y107_c00064{bottom:960.765000px;}
.y109_c00064{bottom:961.635000px;}
.y105_c00064{bottom:962.490000px;}
.y10f_c00064{bottom:966.810000px;}
.y103_c00064{bottom:967.680000px;}
.y102_c00064{bottom:971.130000px;}
.yfa_c00064{bottom:978.045000px;}
.yff_c00064{bottom:978.915000px;}
.yfe_c00064{bottom:979.770000px;}
.yfd_c00064{bottom:980.640000px;}
.yfc_c00064{bottom:981.510000px;}
.yfb_c00064{bottom:982.365000px;}
.yf8_c00064{bottom:983.235000px;}
.y101_c00064{bottom:984.090000px;}
.y100_c00064{bottom:984.960000px;}
.yf6_c00064{bottom:991.005000px;}
.yf2_c00064{bottom:991.875000px;}
.yf7_c00064{bottom:993.600000px;}
.yf5_c00064{bottom:994.470000px;}
.yf4_c00064{bottom:995.325000px;}
.yf3_c00064{bottom:996.195000px;}
.yf0_c00064{bottom:997.050000px;}
.yf9_c00064{bottom:997.920000px;}
.yf1_c00064{bottom:998.790000px;}
.ye8_c00064{bottom:1001.370000px;}
.yef_c00064{bottom:1002.240000px;}
.yec_c00064{bottom:1003.110000px;}
.yed_c00064{bottom:1003.965000px;}
.yea_c00064{bottom:1004.835000px;}
.yee_c00064{bottom:1008.285000px;}
.ye7_c00064{bottom:1009.155000px;}
.yeb_c00064{bottom:1010.010000px;}
.ye5_c00064{bottom:1010.880000px;}
.ye9_c00064{bottom:1012.605000px;}
.ye6_c00064{bottom:1013.475000px;}
.yde_c00064{bottom:1016.070000px;}
.ye2_c00064{bottom:1016.925000px;}
.ydf_c00064{bottom:1017.795000px;}
.ye4_c00064{bottom:1018.650000px;}
.ye3_c00064{bottom:1019.520000px;}
.ye1_c00064{bottom:1020.390000px;}
.ye0_c00064{bottom:1021.245000px;}
.ydd_c00064{bottom:1022.115000px;}
.ydc_c00064{bottom:1022.970000px;}
.yd9_c00064{bottom:1028.160000px;}
.yd8_c00064{bottom:1029.885000px;}
.yda_c00064{bottom:1030.755000px;}
.yd5_c00064{bottom:1032.480000px;}
.ydb_c00064{bottom:1033.350000px;}
.yd6_c00064{bottom:1034.205000px;}
.yd3_c00064{bottom:1035.930000px;}
.yd7_c00064{bottom:1038.525000px;}
.yd2_c00064{bottom:1041.120000px;}
.yd1_c00064{bottom:1041.990000px;}
.yca_c00064{bottom:1042.845000px;}
.yd4_c00064{bottom:1043.715000px;}
.yd0_c00064{bottom:1044.570000px;}
.ycf_c00064{bottom:1045.440000px;}
.ycc_c00064{bottom:1049.760000px;}
.yc8_c00064{bottom:1051.485000px;}
.yce_c00064{bottom:1052.355000px;}
.ycd_c00064{bottom:1053.210000px;}
.ycb_c00064{bottom:1054.080000px;}
.yc9_c00064{bottom:1055.805000px;}
.yc4_c00064{bottom:1057.530000px;}
.yc3_c00064{bottom:1058.400000px;}
.yc7_c00064{bottom:1059.270000px;}
.yc2_c00064{bottom:1060.125000px;}
.yc6_c00064{bottom:1060.995000px;}
.yc5_c00064{bottom:1061.850000px;}
.ybb_c00064{bottom:1062.720000px;}
.yc0_c00064{bottom:1066.170000px;}
.ybf_c00064{bottom:1067.040000px;}
.yc1_c00064{bottom:1068.765000px;}
.ybe_c00064{bottom:1069.635000px;}
.ybd_c00064{bottom:1071.360000px;}
.ybc_c00064{bottom:1072.230000px;}
.yba_c00064{bottom:1074.810000px;}
.yb5_c00064{bottom:1077.405000px;}
.yb9_c00064{bottom:1078.275000px;}
.yb2_c00064{bottom:1079.130000px;}
.yb3_c00064{bottom:1080.000000px;}
.yb6_c00064{bottom:1081.725000px;}
.yb4_c00064{bottom:1082.595000px;}
.yb8_c00064{bottom:1084.320000px;}
.yb7_c00064{bottom:1085.190000px;}
.yb0_c00064{bottom:1093.830000px;}
.yac_c00064{bottom:1094.685000px;}
.yaf_c00064{bottom:1095.555000px;}
.yae_c00064{bottom:1097.280000px;}
.yab_c00064{bottom:1098.150000px;}
.yaa_c00064{bottom:1099.875000px;}
.ya9_c00064{bottom:1100.730000px;}
.yb1_c00064{bottom:1101.600000px;}
.ya8_c00064{bottom:1102.470000px;}
.ya2_c00064{bottom:1103.325000px;}
.ya6_c00064{bottom:1104.195000px;}
.ya7_c00064{bottom:1105.050000px;}
.ya5_c00064{bottom:1105.920000px;}
.yad_c00064{bottom:1106.790000px;}
.ya4_c00064{bottom:1107.645000px;}
.y9e_c00064{bottom:1111.110000px;}
.ya3_c00064{bottom:1111.965000px;}
.ya0_c00064{bottom:1112.835000px;}
.y9d_c00064{bottom:1113.690000px;}
.y9b_c00064{bottom:1114.560000px;}
.y9f_c00064{bottom:1115.430000px;}
.ya1_c00064{bottom:1116.285000px;}
.y97_c00064{bottom:1117.155000px;}
.y95_c00064{bottom:1118.010000px;}
.y9c_c00064{bottom:1118.880000px;}
.y9a_c00064{bottom:1120.605000px;}
.y98_c00064{bottom:1121.475000px;}
.y99_c00064{bottom:1122.330000px;}
.y96_c00064{bottom:1124.070000px;}
.y94_c00064{bottom:1128.390000px;}
.y90_c00064{bottom:1130.115000px;}
.y91_c00064{bottom:1131.840000px;}
.y92_c00064{bottom:1132.710000px;}
.y8f_c00064{bottom:1133.565000px;}
.y8e_c00064{bottom:1134.435000px;}
.y8d_c00064{bottom:1135.290000px;}
.y93_c00064{bottom:1139.610000px;}
.y8b_c00064{bottom:1141.350000px;}
.y8c_c00064{bottom:1145.670000px;}
.y8a_c00064{bottom:1149.990000px;}
.y89_c00064{bottom:1154.310000px;}
.y85_c00064{bottom:1155.165000px;}
.y88_c00064{bottom:1156.035000px;}
.y84_c00064{bottom:1157.760000px;}
.y82_c00064{bottom:1158.630000px;}
.y87_c00064{bottom:1159.485000px;}
.y86_c00064{bottom:1162.950000px;}
.y83_c00064{bottom:1163.805000px;}
.y7a_c00064{bottom:1164.675000px;}
.y81_c00064{bottom:1165.530000px;}
.y7f_c00064{bottom:1166.400000px;}
.y7d_c00064{bottom:1168.125000px;}
.y80_c00064{bottom:1168.995000px;}
.y7e_c00064{bottom:1170.720000px;}
.y7c_c00064{bottom:1171.590000px;}
.y7b_c00064{bottom:1172.445000px;}
.y79_c00064{bottom:1175.910000px;}
.y77_c00064{bottom:1176.765000px;}
.y75_c00064{bottom:1177.635000px;}
.y71_c00064{bottom:1178.490000px;}
.y74_c00064{bottom:1180.230000px;}
.y78_c00064{bottom:1181.085000px;}
.y73_c00064{bottom:1181.955000px;}
.y72_c00064{bottom:1183.680000px;}
.y76_c00064{bottom:1184.550000px;}
.y70_c00064{bottom:1185.405000px;}
.y6f_c00064{bottom:1192.320000px;}
.y6b_c00064{bottom:1193.190000px;}
.y6d_c00064{bottom:1194.045000px;}
.y6e_c00064{bottom:1195.770000px;}
.y6a_c00064{bottom:1196.640000px;}
.y68_c00064{bottom:1200.960000px;}
.y6c_c00064{bottom:1201.830000px;}
.y69_c00064{bottom:1202.685000px;}
.y66_c00064{bottom:1204.410000px;}
.y67_c00064{bottom:1205.280000px;}
.y65_c00064{bottom:1206.150000px;}
.y62_c00064{bottom:1207.875000px;}
.y5e_c00064{bottom:1209.600000px;}
.y60_c00064{bottom:1210.470000px;}
.y5d_c00064{bottom:1212.195000px;}
.y64_c00064{bottom:1215.645000px;}
.y5c_c00064{bottom:1218.240000px;}
.y63_c00064{bottom:1219.110000px;}
.y5b_c00064{bottom:1219.965000px;}
.y5f_c00064{bottom:1220.835000px;}
.y61_c00064{bottom:1222.560000px;}
.y5a_c00064{bottom:1223.430000px;}
.y59_c00064{bottom:1225.155000px;}
.y55_c00064{bottom:1227.750000px;}
.y57_c00064{bottom:1230.330000px;}
.y54_c00064{bottom:1231.200000px;}
.y56_c00064{bottom:1232.070000px;}
.y58_c00064{bottom:1232.925000px;}
.y53_c00064{bottom:1233.795000px;}
.y52_c00064{bottom:1235.520000px;}
.y4e_c00064{bottom:1237.245000px;}
.y4d_c00064{bottom:1238.115000px;}
.y4f_c00064{bottom:1238.970000px;}
.y51_c00064{bottom:1239.840000px;}
.y50_c00064{bottom:1240.710000px;}
.y26f_c00064{bottom:1241.565000px;}
.y270_c00064{bottom:1242.435000px;}
.y4c_c00064{bottom:1253.670000px;}
.y4b_c00064{bottom:1254.525000px;}
.y48_c00064{bottom:1256.250000px;}
.y49_c00064{bottom:1257.120000px;}
.y4a_c00064{bottom:1257.990000px;}
.y44_c00064{bottom:1259.715000px;}
.y42_c00064{bottom:1260.570000px;}
.y45_c00064{bottom:1261.440000px;}
.y46_c00064{bottom:1264.035000px;}
.y39_c00064{bottom:1264.890000px;}
.y43_c00064{bottom:1265.760000px;}
.y38_c00064{bottom:1266.630000px;}
.y47_c00064{bottom:1267.485000px;}
.y41_c00064{bottom:1268.355000px;}
.y3f_c00064{bottom:1269.210000px;}
.y3a_c00064{bottom:1270.080000px;}
.y40_c00064{bottom:1270.950000px;}
.y3c_c00064{bottom:1271.805000px;}
.y3d_c00064{bottom:1272.675000px;}
.y3e_c00064{bottom:1273.530000px;}
.y36_c00064{bottom:1274.400000px;}
.y3b_c00064{bottom:1275.270000px;}
.y33_c00064{bottom:1278.720000px;}
.y37_c00064{bottom:1281.315000px;}
.y30_c00064{bottom:1282.170000px;}
.y35_c00064{bottom:1283.040000px;}
.y34_c00064{bottom:1283.910000px;}
.y32_c00064{bottom:1284.765000px;}
.y31_c00064{bottom:1286.490000px;}
.y2f_c00064{bottom:1288.230000px;}
.y2d_c00064{bottom:1295.130000px;}
.y2e_c00064{bottom:1296.000000px;}
.y271_c00064{bottom:1296.870000px;}
.y2a_c00064{bottom:1297.725000px;}
.y272_c00064{bottom:1298.595000px;}
.y2b_c00064{bottom:1300.320000px;}
.y29_c00064{bottom:1301.190000px;}
.y28_c00064{bottom:1303.770000px;}
.y22_c00064{bottom:1304.640000px;}
.y21_c00064{bottom:1305.510000px;}
.y20_c00064{bottom:1306.365000px;}
.y2c_c00064{bottom:1308.090000px;}
.y27_c00064{bottom:1308.960000px;}
.y26_c00064{bottom:1309.830000px;}
.y1c_c00064{bottom:1310.685000px;}
.y24_c00064{bottom:1311.555000px;}
.y25_c00064{bottom:1312.410000px;}
.y23_c00064{bottom:1315.005000px;}
.y1e_c00064{bottom:1315.875000px;}
.y1d_c00064{bottom:1316.730000px;}
.y1b_c00064{bottom:1319.325000px;}
.y1a_c00064{bottom:1321.050000px;}
.y1f_c00064{bottom:1325.370000px;}
.y19_c00064{bottom:1326.240000px;}
.y17_c00064{bottom:1329.690000px;}
.y16_c00064{bottom:1330.560000px;}
.y14_c00064{bottom:1332.285000px;}
.y15_c00064{bottom:1333.155000px;}
.y10_c00064{bottom:1335.750000px;}
.y12_c00064{bottom:1337.475000px;}
.y13_c00064{bottom:1338.330000px;}
.y11_c00064{bottom:1342.650000px;}
.y18_c00064{bottom:1343.520000px;}
.yf_c00064{bottom:1353.885000px;}
.yb_c00064{bottom:1355.610000px;}
.yc_c00064{bottom:1357.350000px;}
.yd_c00064{bottom:1358.205000px;}
.y9_c00064{bottom:1359.075000px;}
.ye_c00064{bottom:1359.930000px;}
.y8_c00064{bottom:1360.800000px;}
.ya_c00064{bottom:1365.990000px;}
.y7_c00064{bottom:1366.845000px;}
.y26e_c00064{bottom:1369.440000px;}
.y6_c00064{bottom:1384.125000px;}
.y5_c00064{bottom:1389.315000px;}
.y4_c00064{bottom:1390.170000px;}
.y1_c00064{bottom:1391.040000px;}
.y3_c00064{bottom:1393.635000px;}
.y2_c00064{bottom:1395.360000px;}
.h12_c00064{height:3.110063px;}
.h1e_c00064{height:5.399414px;}
.h8_c00064{height:6.209326px;}
.h1d_c00064{height:9.340986px;}
.h4_c00064{height:12.418652px;}
.h17_c00064{height:15.550313px;}
.h22_c00064{height:18.681973px;}
.h18_c00064{height:21.759639px;}
.h1a_c00064{height:24.891299px;}
.h16_c00064{height:27.968965px;}
.h1b_c00064{height:31.100625px;}
.h14_c00064{height:34.232285px;}
.hc_c00064{height:37.309951px;}
.h15_c00064{height:40.441611px;}
.h1c_c00064{height:43.519277px;}
.he_c00064{height:46.650937px;}
.h3_c00064{height:49.782598px;}
.h19_c00064{height:52.860264px;}
.h1f_c00064{height:55.991924px;}
.h5_c00064{height:59.069590px;}
.h10_c00064{height:62.201250px;}
.h13_c00064{height:65.332910px;}
.h2_c00064{height:68.410576px;}
.hd_c00064{height:71.542236px;}
.hb_c00064{height:74.619902px;}
.h9_c00064{height:77.751563px;}
.h21_c00064{height:80.883223px;}
.h7_c00064{height:83.960889px;}
.ha_c00064{height:87.092549px;}
.h6_c00064{height:90.170215px;}
.h11_c00064{height:93.301875px;}
.h20_c00064{height:99.511201px;}
.h23_c00064{height:102.642861px;}
.hf_c00064{height:105.720527px;}
.h24_c00064{height:108.852188px;}
.h0_c00064{height:1517.190000px;}
.h1_c00064{height:1517.250000px;}
.w0_c00064{width:1073.085000px;}
.w1_c00064{width:1073.250000px;}
.x0_c00064{left:0.000000px;}
.x129_c00064{left:76.035000px;}
.x12a_c00064{left:140.835000px;}
.x12b_c00064{left:152.070000px;}
.x12c_c00064{left:157.245000px;}
.x12d_c00064{left:170.205000px;}
.x11e_c00064{left:175.395000px;}
.x124_c00064{left:180.570000px;}
.x122_c00064{left:183.165000px;}
.x55_c00064{left:189.210000px;}
.x10d_c00064{left:190.950000px;}
.xd5_c00064{left:192.675000px;}
.xa1_c00064{left:196.125000px;}
.x6a_c00064{left:198.720000px;}
.x3f_c00064{left:201.315000px;}
.xb7_c00064{left:203.040000px;}
.xc4_c00064{left:204.765000px;}
.x7c_c00064{left:207.360000px;}
.x8_c00064{left:209.085000px;}
.x1_c00064{left:210.810000px;}
.xef_c00064{left:213.405000px;}
.x11f_c00064{left:215.130000px;}
.x103_c00064{left:217.725000px;}
.xc7_c00064{left:219.450000px;}
.x111_c00064{left:224.640000px;}
.x105_c00064{left:227.235000px;}
.x90_c00064{left:230.685000px;}
.xf3_c00064{left:233.280000px;}
.xfb_c00064{left:235.875000px;}
.x9_c00064{left:238.470000px;}
.xda_c00064{left:240.195000px;}
.xc1_c00064{left:242.790000px;}
.xc8_c00064{left:245.370000px;}
.xb8_c00064{left:248.835000px;}
.x48_c00064{left:250.560000px;}
.xe3_c00064{left:253.155000px;}
.xd3_c00064{left:255.750000px;}
.x9a_c00064{left:259.200000px;}
.x2c_c00064{left:261.795000px;}
.x88_c00064{left:263.520000px;}
.xf6_c00064{left:265.245000px;}
.x2_c00064{left:266.970000px;}
.xa2_c00064{left:268.710000px;}
.x128_c00064{left:270.435000px;}
.x5f_c00064{left:273.030000px;}
.x3_c00064{left:275.610000px;}
.xf1_c00064{left:277.350000px;}
.x112_c00064{left:280.800000px;}
.x56_c00064{left:282.525000px;}
.x49_c00064{left:284.250000px;}
.x74_c00064{left:286.845000px;}
.xc2_c00064{left:289.440000px;}
.xc5_c00064{left:292.035000px;}
.x35_c00064{left:293.760000px;}
.xa_c00064{left:296.355000px;}
.x20_c00064{left:298.080000px;}
.x4_c00064{left:299.805000px;}
.x123_c00064{left:301.530000px;}
.x100_c00064{left:303.270000px;}
.xa3_c00064{left:304.995000px;}
.x82_c00064{left:307.590000px;}
.x57_c00064{left:309.315000px;}
.x9b_c00064{left:311.910000px;}
.xab_c00064{left:317.085000px;}
.xf2_c00064{left:319.680000px;}
.x117_c00064{left:321.405000px;}
.x89_c00064{left:324.000000px;}
.xbd_c00064{left:326.595000px;}
.xac_c00064{left:328.320000px;}
.x75_c00064{left:330.045000px;}
.x2d_c00064{left:332.640000px;}
.x101_c00064{left:335.235000px;}
.xcc_c00064{left:336.960000px;}
.x7d_c00064{left:341.280000px;}
.x106_c00064{left:343.875000px;}
.xa4_c00064{left:345.600000px;}
.x36_c00064{left:347.325000px;}
.x21_c00064{left:349.920000px;}
.x125_c00064{left:352.515000px;}
.xfc_c00064{left:354.240000px;}
.x76_c00064{left:356.835000px;}
.x60_c00064{left:359.430000px;}
.xb_c00064{left:361.155000px;}
.x8a_c00064{left:362.880000px;}
.x94_c00064{left:365.475000px;}
.x22_c00064{left:370.650000px;}
.xea_c00064{left:372.390000px;}
.x4a_c00064{left:374.970000px;}
.x40_c00064{left:377.565000px;}
.xad_c00064{left:381.030000px;}
.xf7_c00064{left:382.755000px;}
.x18_c00064{left:384.480000px;}
.x41_c00064{left:388.800000px;}
.x127_c00064{left:391.395000px;}
.x4b_c00064{left:393.120000px;}
.x2e_c00064{left:395.715000px;}
.x61_c00064{left:397.440000px;}
.x10e_c00064{left:400.890000px;}
.x8b_c00064{left:403.485000px;}
.xdd_c00064{left:405.210000px;}
.x95_c00064{left:406.950000px;}
.xf4_c00064{left:408.675000px;}
.xc_c00064{left:410.400000px;}
.x4c_c00064{left:413.850000px;}
.xcd_c00064{left:417.315000px;}
.x118_c00064{left:419.040000px;}
.x2f_c00064{left:420.765000px;}
.xd7_c00064{left:423.360000px;}
.x19_c00064{left:425.955000px;}
.x6b_c00064{left:427.680000px;}
.xc9_c00064{left:429.405000px;}
.x9c_c00064{left:431.130000px;}
.x10b_c00064{left:433.725000px;}
.x77_c00064{left:436.320000px;}
.x7e_c00064{left:438.045000px;}
.x5_c00064{left:441.510000px;}
.x4d_c00064{left:444.090000px;}
.x8c_c00064{left:447.555000px;}
.x10f_c00064{left:450.150000px;}
.x30_c00064{left:452.730000px;}
.x126_c00064{left:455.325000px;}
.xd_c00064{left:457.050000px;}
.x4e_c00064{left:458.790000px;}
.x62_c00064{left:460.515000px;}
.xb2_c00064{left:463.110000px;}
.xdb_c00064{left:464.835000px;}
.x9d_c00064{left:467.430000px;}
.x58_c00064{left:469.155000px;}
.x1a_c00064{left:470.880000px;}
.x31_c00064{left:472.605000px;}
.xbe_c00064{left:476.070000px;}
.xf8_c00064{left:477.795000px;}
.xe_c00064{left:479.520000px;}
.x91_c00064{left:482.115000px;}
.x1b_c00064{left:486.435000px;}
.x23_c00064{left:489.030000px;}
.xca_c00064{left:490.755000px;}
.x104_c00064{left:493.350000px;}
.x7f_c00064{left:495.075000px;}
.x114_c00064{left:496.800000px;}
.x1c_c00064{left:499.395000px;}
.x83_c00064{left:501.120000px;}
.xf9_c00064{left:507.165000px;}
.xae_c00064{left:508.890000px;}
.x42_c00064{left:510.630000px;}
.xf_c00064{left:512.355000px;}
.x10c_c00064{left:515.805000px;}
.xeb_c00064{left:517.530000px;}
.x115_c00064{left:519.270000px;}
.x78_c00064{left:521.850000px;}
.xfd_c00064{left:523.590000px;}
.x63_c00064{left:526.170000px;}
.x59_c00064{left:528.765000px;}
.x10_c00064{left:530.490000px;}
.xa5_c00064{left:532.230000px;}
.x96_c00064{left:533.955000px;}
.xb3_c00064{left:535.680000px;}
.x84_c00064{left:537.405000px;}
.xce_c00064{left:540.000000px;}
.xd8_c00064{left:541.725000px;}
.x43_c00064{left:545.190000px;}
.x6c_c00064{left:546.915000px;}
.xaf_c00064{left:548.640000px;}
.x92_c00064{left:550.365000px;}
.x97_c00064{left:552.960000px;}
.xb9_c00064{left:554.685000px;}
.x1d_c00064{left:558.150000px;}
.x107_c00064{left:559.875000px;}
.x24_c00064{left:561.600000px;}
.x8d_c00064{left:564.195000px;}
.x9e_c00064{left:565.920000px;}
.xcb_c00064{left:568.515000px;}
.xe4_c00064{left:570.240000px;}
.x64_c00064{left:571.965000px;}
.x5a_c00064{left:573.690000px;}
.x44_c00064{left:575.430000px;}
.x32_c00064{left:577.155000px;}
.x37_c00064{left:578.880000px;}
.x108_c00064{left:580.605000px;}
.x6d_c00064{left:582.330000px;}
.xcf_c00064{left:584.925000px;}
.x38_c00064{left:586.650000px;}
.xde_c00064{left:588.390000px;}
.xba_c00064{left:590.970000px;}
.x65_c00064{left:594.435000px;}
.x25_c00064{left:597.030000px;}
.x79_c00064{left:600.480000px;}
.xbf_c00064{left:603.075000px;}
.xfe_c00064{left:604.800000px;}
.xbb_c00064{left:608.250000px;}
.x45_c00064{left:609.990000px;}
.x11_c00064{left:612.570000px;}
.x109_c00064{left:614.310000px;}
.xc6_c00064{left:616.890000px;}
.x8e_c00064{left:619.485000px;}
.xe5_c00064{left:621.210000px;}
.x6e_c00064{left:622.950000px;}
.xa6_c00064{left:625.530000px;}
.x1e_c00064{left:627.270000px;}
.x119_c00064{left:628.995000px;}
.xa7_c00064{left:631.590000px;}
.x33_c00064{left:635.040000px;}
.x5b_c00064{left:637.635000px;}
.x4f_c00064{left:640.230000px;}
.x6_c00064{left:642.810000px;}
.x12_c00064{left:645.405000px;}
.x6f_c00064{left:647.130000px;}
.x50_c00064{left:648.870000px;}
.x66_c00064{left:652.320000px;}
.xb0_c00064{left:654.915000px;}
.xb4_c00064{left:656.640000px;}
.x11c_c00064{left:658.365000px;}
.xa8_c00064{left:661.830000px;}
.x39_c00064{left:664.410000px;}
.xec_c00064{left:667.005000px;}
.xe6_c00064{left:669.600000px;}
.x13_c00064{left:671.325000px;}
.x51_c00064{left:673.050000px;}
.xd0_c00064{left:676.515000px;}
.x26_c00064{left:678.240000px;}
.xa9_c00064{left:680.835000px;}
.x3a_c00064{left:683.430000px;}
.xdf_c00064{left:685.155000px;}
.x93_c00064{left:687.750000px;}
.xdc_c00064{left:692.070000px;}
.x5c_c00064{left:694.650000px;}
.x80_c00064{left:696.390000px;}
.x11a_c00064{left:698.970000px;}
.x3b_c00064{left:700.710000px;}
.x27_c00064{left:704.160000px;}
.x102_c00064{left:705.885000px;}
.x14_c00064{left:707.610000px;}
.x9f_c00064{left:709.350000px;}
.x34_c00064{left:711.075000px;}
.x113_c00064{left:712.800000px;}
.x28_c00064{left:714.525000px;}
.xb1_c00064{left:716.250000px;}
.x3c_c00064{left:719.715000px;}
.x29_c00064{left:722.310000px;}
.x11b_c00064{left:724.035000px;}
.x116_c00064{left:725.760000px;}
.x7a_c00064{left:727.485000px;}
.x46_c00064{left:730.080000px;}
.x7b_c00064{left:732.675000px;}
.xc3_c00064{left:735.270000px;}
.x67_c00064{left:736.995000px;}
.x70_c00064{left:739.590000px;}
.x10a_c00064{left:743.040000px;}
.x8f_c00064{left:744.765000px;}
.xd1_c00064{left:749.955000px;}
.x121_c00064{left:751.680000px;}
.x68_c00064{left:753.405000px;}
.x2a_c00064{left:756.000000px;}
.x52_c00064{left:758.595000px;}
.x3d_c00064{left:760.320000px;}
.x15_c00064{left:762.915000px;}
.x98_c00064{left:764.640000px;}
.x1f_c00064{left:767.235000px;}
.xe0_c00064{left:768.960000px;}
.x53_c00064{left:771.555000px;}
.x71_c00064{left:773.280000px;}
.xb5_c00064{left:775.875000px;}
.x16_c00064{left:777.600000px;}
.x47_c00064{left:781.050000px;}
.xd4_c00064{left:782.790000px;}
.x85_c00064{left:785.370000px;}
.x69_c00064{left:787.110000px;}
.x5d_c00064{left:789.690000px;}
.x11d_c00064{left:792.285000px;}
.x110_c00064{left:794.010000px;}
.x3e_c00064{left:796.605000px;}
.xe1_c00064{left:799.200000px;}
.x5e_c00064{left:800.925000px;}
.xbc_c00064{left:802.650000px;}
.x54_c00064{left:804.390000px;}
.xb6_c00064{left:806.115000px;}
.x86_c00064{left:807.840000px;}
.xe2_c00064{left:810.435000px;}
.x72_c00064{left:812.160000px;}
.x99_c00064{left:817.350000px;}
.x17_c00064{left:819.930000px;}
.x81_c00064{left:821.670000px;}
.x2b_c00064{left:824.250000px;}
.x7_c00064{left:829.440000px;}
.xc0_c00064{left:831.165000px;}
.x73_c00064{left:832.890000px;}
.xfa_c00064{left:837.210000px;}
.x87_c00064{left:842.400000px;}
.xed_c00064{left:844.125000px;}
.xd9_c00064{left:845.850000px;}
.x120_c00064{left:847.590000px;}
.xe7_c00064{left:850.170000px;}
.xa0_c00064{left:858.810000px;}
.xd2_c00064{left:863.130000px;}
.xe8_c00064{left:864.870000px;}
.xf0_c00064{left:867.450000px;}
.xd6_c00064{left:870.915000px;}
.xaa_c00064{left:876.960900px;}
.xee_c00064{left:884.730000px;}
.xe9_c00064{left:888.195000px;}
.xf5_c00064{left:897.690000px;}
.xff_c00064{left:931.395000px;}
.x130_c00064{left:996.195000px;}
.x12f_c00064{left:1004.835000px;}
.x131_c00064{left:1010.880000px;}
.x12e_c00064{left:1038.525000px;}
@media print{
.v1_c00064{vertical-align:-3.093333pt;}
.v0_c00064{vertical-align:0.000000pt;}
.ls1_c00064{letter-spacing:0.000000pt;}
.ls0_c00064{letter-spacing:119.121165pt;}
.ws0_c00064{word-spacing:-30.440373pt;}
.ws1_c00064{word-spacing:0.000000pt;}
._0_c00064{width:8.385280pt;}
.fs10_c00064{font-size:3.072000pt;}
.fs1c_c00064{font-size:5.333333pt;}
.fs6_c00064{font-size:6.133333pt;}
.fs1b_c00064{font-size:9.226667pt;}
.fs2_c00064{font-size:12.266667pt;}
.fs15_c00064{font-size:15.360000pt;}
.fs20_c00064{font-size:18.453333pt;}
.fs16_c00064{font-size:21.493333pt;}
.fs18_c00064{font-size:24.586667pt;}
.fs14_c00064{font-size:27.626667pt;}
.fs19_c00064{font-size:30.720000pt;}
.fs12_c00064{font-size:33.813333pt;}
.fsa_c00064{font-size:36.853333pt;}
.fs13_c00064{font-size:39.946667pt;}
.fs1a_c00064{font-size:42.986667pt;}
.fsc_c00064{font-size:46.080000pt;}
.fs1_c00064{font-size:49.173333pt;}
.fs17_c00064{font-size:52.213333pt;}
.fs1d_c00064{font-size:55.306667pt;}
.fs3_c00064{font-size:58.346667pt;}
.fse_c00064{font-size:61.440000pt;}
.fs11_c00064{font-size:64.533333pt;}
.fs0_c00064{font-size:67.573333pt;}
.fsb_c00064{font-size:70.666667pt;}
.fs9_c00064{font-size:73.706667pt;}
.fs7_c00064{font-size:76.800000pt;}
.fs1f_c00064{font-size:79.893333pt;}
.fs5_c00064{font-size:82.933333pt;}
.fs8_c00064{font-size:86.026667pt;}
.fs4_c00064{font-size:89.066667pt;}
.fsf_c00064{font-size:92.160000pt;}
.fs1e_c00064{font-size:98.293333pt;}
.fs21_c00064{font-size:101.386667pt;}
.fsd_c00064{font-size:104.426667pt;}
.fs22_c00064{font-size:107.520000pt;}
.y0_c00064{bottom:0.000000pt;}
.y275_c00064{bottom:175.106667pt;}
.y274_c00064{bottom:178.173333pt;}
.y26c_c00064{bottom:198.146667pt;}
.y26d_c00064{bottom:198.906667pt;}
.y269_c00064{bottom:205.053333pt;}
.y26b_c00064{bottom:206.586667pt;}
.y26a_c00064{bottom:208.133333pt;}
.y267_c00064{bottom:219.653333pt;}
.y268_c00064{bottom:221.186667pt;}
.y266_c00064{bottom:221.946667pt;}
.y265_c00064{bottom:227.333333pt;}
.y264_c00064{bottom:241.920000pt;}
.y263_c00064{bottom:243.453333pt;}
.y262_c00064{bottom:244.226667pt;}
.y261_c00064{bottom:244.986667pt;}
.y25f_c00064{bottom:258.813333pt;}
.y25e_c00064{bottom:259.586667pt;}
.y260_c00064{bottom:261.120000pt;}
.y25a_c00064{bottom:274.946667pt;}
.y25c_c00064{bottom:275.706667pt;}
.y258_c00064{bottom:277.253333pt;}
.y25d_c00064{bottom:278.013333pt;}
.y25b_c00064{bottom:278.786667pt;}
.y257_c00064{bottom:280.320000pt;}
.y259_c00064{bottom:281.093333pt;}
.y256_c00064{bottom:281.853333pt;}
.y255_c00064{bottom:291.066667pt;}
.y254_c00064{bottom:294.906667pt;}
.y253_c00064{bottom:298.746667pt;}
.y252_c00064{bottom:300.293333pt;}
.y24e_c00064{bottom:310.266667pt;}
.y24c_c00064{bottom:311.813333pt;}
.y24b_c00064{bottom:313.346667pt;}
.y251_c00064{bottom:314.106667pt;}
.y24f_c00064{bottom:314.880000pt;}
.y24d_c00064{bottom:315.653333pt;}
.y250_c00064{bottom:326.400000pt;}
.y247_c00064{bottom:328.706667pt;}
.y246_c00064{bottom:331.773333pt;}
.y244_c00064{bottom:332.546667pt;}
.y248_c00064{bottom:333.306667pt;}
.y249_c00064{bottom:334.080000pt;}
.y24a_c00064{bottom:334.853333pt;}
.y245_c00064{bottom:335.613333pt;}
.y241_c00064{bottom:337.920000pt;}
.y240_c00064{bottom:339.453333pt;}
.y23f_c00064{bottom:345.600000pt;}
.y243_c00064{bottom:347.133333pt;}
.y242_c00064{bottom:347.906667pt;}
.y23b_c00064{bottom:348.666667pt;}
.y23c_c00064{bottom:349.440000pt;}
.y23d_c00064{bottom:350.213333pt;}
.y23e_c00064{bottom:350.973333pt;}
.y239_c00064{bottom:353.280000pt;}
.y238_c00064{bottom:354.053333pt;}
.y23a_c00064{bottom:354.813333pt;}
.y236_c00064{bottom:355.586667pt;}
.y237_c00064{bottom:357.120000pt;}
.y235_c00064{bottom:358.653333pt;}
.y233_c00064{bottom:359.426667pt;}
.y232_c00064{bottom:360.186667pt;}
.y234_c00064{bottom:360.960000pt;}
.y22f_c00064{bottom:362.493333pt;}
.y230_c00064{bottom:364.800000pt;}
.y231_c00064{bottom:369.413333pt;}
.y22e_c00064{bottom:377.853333pt;}
.y22d_c00064{bottom:378.626667pt;}
.y22c_c00064{bottom:379.386667pt;}
.y229_c00064{bottom:382.466667pt;}
.y228_c00064{bottom:383.226667pt;}
.y227_c00064{bottom:384.000000pt;}
.y22a_c00064{bottom:384.773333pt;}
.y22b_c00064{bottom:385.533333pt;}
.y226_c00064{bottom:389.373333pt;}
.y223_c00064{bottom:400.133333pt;}
.y220_c00064{bottom:400.893333pt;}
.y224_c00064{bottom:401.666667pt;}
.y21f_c00064{bottom:402.426667pt;}
.y225_c00064{bottom:403.200000pt;}
.y21d_c00064{bottom:403.973333pt;}
.y221_c00064{bottom:405.506667pt;}
.y222_c00064{bottom:406.266667pt;}
.y21e_c00064{bottom:407.040000pt;}
.y21b_c00064{bottom:411.653333pt;}
.y21a_c00064{bottom:412.413333pt;}
.y21c_c00064{bottom:413.186667pt;}
.y216_c00064{bottom:414.720000pt;}
.y215_c00064{bottom:415.493333pt;}
.y219_c00064{bottom:416.253333pt;}
.y218_c00064{bottom:417.026667pt;}
.y217_c00064{bottom:417.786667pt;}
.y212_c00064{bottom:418.560000pt;}
.y213_c00064{bottom:420.093333pt;}
.y214_c00064{bottom:420.866667pt;}
.y211_c00064{bottom:421.626667pt;}
.y20c_c00064{bottom:423.933333pt;}
.y210_c00064{bottom:424.706667pt;}
.y20f_c00064{bottom:425.466667pt;}
.y20a_c00064{bottom:426.240000pt;}
.y209_c00064{bottom:427.013333pt;}
.y20d_c00064{bottom:427.773333pt;}
.y20e_c00064{bottom:428.546667pt;}
.y207_c00064{bottom:430.080000pt;}
.y20b_c00064{bottom:430.853333pt;}
.y206_c00064{bottom:432.386667pt;}
.y204_c00064{bottom:434.693333pt;}
.y203_c00064{bottom:435.453333pt;}
.y205_c00064{bottom:436.226667pt;}
.y208_c00064{bottom:437.760000pt;}
.y200_c00064{bottom:438.533333pt;}
.y1ff_c00064{bottom:439.293333pt;}
.y201_c00064{bottom:440.826667pt;}
.y202_c00064{bottom:441.600000pt;}
.y1fb_c00064{bottom:443.133333pt;}
.y1fe_c00064{bottom:443.906667pt;}
.y1fd_c00064{bottom:445.440000pt;}
.y1f9_c00064{bottom:446.213333pt;}
.y1f7_c00064{bottom:446.973333pt;}
.y1fa_c00064{bottom:447.746667pt;}
.y1fc_c00064{bottom:448.506667pt;}
.y1f8_c00064{bottom:449.280000pt;}
.y1f4_c00064{bottom:451.586667pt;}
.y1f2_c00064{bottom:454.653333pt;}
.y1f6_c00064{bottom:456.186667pt;}
.y1f1_c00064{bottom:459.266667pt;}
.y1f5_c00064{bottom:460.026667pt;}
.y1f3_c00064{bottom:461.573333pt;}
.y1ef_c00064{bottom:465.413333pt;}
.y1ee_c00064{bottom:467.706667pt;}
.y1ec_c00064{bottom:469.253333pt;}
.y1ed_c00064{bottom:470.013333pt;}
.y1e9_c00064{bottom:470.786667pt;}
.y1e8_c00064{bottom:471.546667pt;}
.y1eb_c00064{bottom:473.853333pt;}
.y1ea_c00064{bottom:476.160000pt;}
.y1e7_c00064{bottom:476.933333pt;}
.y1e5_c00064{bottom:480.000000pt;}
.y1e6_c00064{bottom:480.773333pt;}
.y1f0_c00064{bottom:482.306667pt;}
.y1e3_c00064{bottom:489.986667pt;}
.y1df_c00064{bottom:490.746667pt;}
.y1de_c00064{bottom:492.293333pt;}
.y1db_c00064{bottom:493.053333pt;}
.y1e4_c00064{bottom:493.826667pt;}
.y1e2_c00064{bottom:494.586667pt;}
.y1e1_c00064{bottom:495.360000pt;}
.y1e0_c00064{bottom:496.133333pt;}
.y1dc_c00064{bottom:496.893333pt;}
.y1dd_c00064{bottom:497.666667pt;}
.y1d6_c00064{bottom:509.186667pt;}
.y1d7_c00064{bottom:513.026667pt;}
.y1d4_c00064{bottom:515.333333pt;}
.y1d5_c00064{bottom:516.093333pt;}
.y1d8_c00064{bottom:518.400000pt;}
.y1da_c00064{bottom:519.173333pt;}
.y1d9_c00064{bottom:519.933333pt;}
.y1d1_c00064{bottom:522.240000pt;}
.y1d3_c00064{bottom:524.546667pt;}
.y1cf_c00064{bottom:525.306667pt;}
.y1d2_c00064{bottom:526.853333pt;}
.y1d0_c00064{bottom:528.386667pt;}
.y1ce_c00064{bottom:529.146667pt;}
.y1cb_c00064{bottom:529.920000pt;}
.y1ca_c00064{bottom:530.693333pt;}
.y1cd_c00064{bottom:531.453333pt;}
.y1cc_c00064{bottom:532.226667pt;}
.y1c7_c00064{bottom:533.760000pt;}
.y1c4_c00064{bottom:534.533333pt;}
.y1c9_c00064{bottom:535.293333pt;}
.y1c5_c00064{bottom:536.066667pt;}
.y1c3_c00064{bottom:538.373333pt;}
.y1c2_c00064{bottom:539.133333pt;}
.y1c1_c00064{bottom:541.440000pt;}
.y1c8_c00064{bottom:542.213333pt;}
.y1bf_c00064{bottom:542.973333pt;}
.y1c0_c00064{bottom:543.746667pt;}
.y1c6_c00064{bottom:547.586667pt;}
.y1be_c00064{bottom:552.960000pt;}
.y1bd_c00064{bottom:556.800000pt;}
.y1ba_c00064{bottom:559.106667pt;}
.y1b8_c00064{bottom:559.866667pt;}
.y1b9_c00064{bottom:560.640000pt;}
.y1bb_c00064{bottom:561.413333pt;}
.y1bc_c00064{bottom:562.173333pt;}
.y1b6_c00064{bottom:562.946667pt;}
.y1b7_c00064{bottom:565.253333pt;}
.y1b5_c00064{bottom:574.466667pt;}
.y1b4_c00064{bottom:579.840000pt;}
.y1b0_c00064{bottom:582.146667pt;}
.y1af_c00064{bottom:582.906667pt;}
.y1ab_c00064{bottom:583.680000pt;}
.y1b3_c00064{bottom:584.453333pt;}
.y1b1_c00064{bottom:585.213333pt;}
.y1ad_c00064{bottom:585.986667pt;}
.y1b2_c00064{bottom:586.746667pt;}
.y1ae_c00064{bottom:587.520000pt;}
.y1ac_c00064{bottom:588.293333pt;}
.y1aa_c00064{bottom:589.053333pt;}
.y1a9_c00064{bottom:592.893333pt;}
.y1a8_c00064{bottom:594.426667pt;}
.y1a7_c00064{bottom:595.200000pt;}
.y1a6_c00064{bottom:595.973333pt;}
.y1a3_c00064{bottom:596.733333pt;}
.y1a1_c00064{bottom:597.506667pt;}
.y19f_c00064{bottom:598.266667pt;}
.y1a4_c00064{bottom:599.040000pt;}
.y1a5_c00064{bottom:600.573333pt;}
.y1a2_c00064{bottom:601.346667pt;}
.y1a0_c00064{bottom:605.946667pt;}
.y19e_c00064{bottom:606.720000pt;}
.y273_c00064{bottom:608.253333pt;}
.y19d_c00064{bottom:613.626667pt;}
.y19c_c00064{bottom:615.173333pt;}
.y198_c00064{bottom:617.466667pt;}
.y19b_c00064{bottom:618.240000pt;}
.y197_c00064{bottom:619.013333pt;}
.y19a_c00064{bottom:619.773333pt;}
.y199_c00064{bottom:620.546667pt;}
.y194_c00064{bottom:622.080000pt;}
.y193_c00064{bottom:624.386667pt;}
.y196_c00064{bottom:625.146667pt;}
.y191_c00064{bottom:625.920000pt;}
.y192_c00064{bottom:626.693333pt;}
.y190_c00064{bottom:628.226667pt;}
.y195_c00064{bottom:628.986667pt;}
.y18f_c00064{bottom:629.760000pt;}
.y18d_c00064{bottom:631.293333pt;}
.y18b_c00064{bottom:635.133333pt;}
.y187_c00064{bottom:635.906667pt;}
.y18e_c00064{bottom:637.440000pt;}
.y18c_c00064{bottom:639.746667pt;}
.y18a_c00064{bottom:641.280000pt;}
.y189_c00064{bottom:642.053333pt;}
.y188_c00064{bottom:642.813333pt;}
.y185_c00064{bottom:652.800000pt;}
.y183_c00064{bottom:655.106667pt;}
.y182_c00064{bottom:656.640000pt;}
.y186_c00064{bottom:657.413333pt;}
.y184_c00064{bottom:659.706667pt;}
.y180_c00064{bottom:664.320000pt;}
.y17f_c00064{bottom:669.693333pt;}
.y17c_c00064{bottom:675.066667pt;}
.y177_c00064{bottom:675.840000pt;}
.y17d_c00064{bottom:676.613333pt;}
.y17e_c00064{bottom:677.373333pt;}
.y17a_c00064{bottom:678.146667pt;}
.y181_c00064{bottom:679.680000pt;}
.y17b_c00064{bottom:680.453333pt;}
.y179_c00064{bottom:683.520000pt;}
.y178_c00064{bottom:684.293333pt;}
.y174_c00064{bottom:687.360000pt;}
.y173_c00064{bottom:688.133333pt;}
.y171_c00064{bottom:688.893333pt;}
.y16f_c00064{bottom:690.426667pt;}
.y170_c00064{bottom:691.200000pt;}
.y172_c00064{bottom:692.733333pt;}
.y16e_c00064{bottom:695.813333pt;}
.y175_c00064{bottom:696.573333pt;}
.y176_c00064{bottom:701.186667pt;}
.y16d_c00064{bottom:705.026667pt;}
.y16c_c00064{bottom:705.786667pt;}
.y16a_c00064{bottom:706.560000pt;}
.y16b_c00064{bottom:707.333333pt;}
.y166_c00064{bottom:709.626667pt;}
.y169_c00064{bottom:710.400000pt;}
.y168_c00064{bottom:711.173333pt;}
.y167_c00064{bottom:711.933333pt;}
.y165_c00064{bottom:717.306667pt;}
.y164_c00064{bottom:722.693333pt;}
.y15f_c00064{bottom:724.226667pt;}
.y161_c00064{bottom:724.986667pt;}
.y162_c00064{bottom:725.760000pt;}
.y163_c00064{bottom:727.293333pt;}
.y160_c00064{bottom:731.133333pt;}
.y15e_c00064{bottom:732.666667pt;}
.y15d_c00064{bottom:734.973333pt;}
.y159_c00064{bottom:735.746667pt;}
.y15c_c00064{bottom:737.280000pt;}
.y157_c00064{bottom:738.053333pt;}
.y156_c00064{bottom:738.813333pt;}
.y15a_c00064{bottom:739.586667pt;}
.y15b_c00064{bottom:740.346667pt;}
.y155_c00064{bottom:741.893333pt;}
.y158_c00064{bottom:744.960000pt;}
.y14e_c00064{bottom:745.733333pt;}
.y14c_c00064{bottom:746.493333pt;}
.y154_c00064{bottom:747.266667pt;}
.y150_c00064{bottom:748.026667pt;}
.y14b_c00064{bottom:748.800000pt;}
.y153_c00064{bottom:749.573333pt;}
.y151_c00064{bottom:750.333333pt;}
.y14f_c00064{bottom:751.106667pt;}
.y14d_c00064{bottom:751.866667pt;}
.y152_c00064{bottom:753.413333pt;}
.y14a_c00064{bottom:754.946667pt;}
.y149_c00064{bottom:757.253333pt;}
.y147_c00064{bottom:758.013333pt;}
.y145_c00064{bottom:758.786667pt;}
.y148_c00064{bottom:760.320000pt;}
.y141_c00064{bottom:761.093333pt;}
.y143_c00064{bottom:761.853333pt;}
.y146_c00064{bottom:762.626667pt;}
.y144_c00064{bottom:763.386667pt;}
.y142_c00064{bottom:764.933333pt;}
.y140_c00064{bottom:766.466667pt;}
.y13e_c00064{bottom:771.840000pt;}
.y13a_c00064{bottom:773.373333pt;}
.y13f_c00064{bottom:774.146667pt;}
.y139_c00064{bottom:775.680000pt;}
.y138_c00064{bottom:777.213333pt;}
.y135_c00064{bottom:778.746667pt;}
.y136_c00064{bottom:779.520000pt;}
.y13d_c00064{bottom:780.293333pt;}
.y13c_c00064{bottom:781.053333pt;}
.y137_c00064{bottom:782.586667pt;}
.y13b_c00064{bottom:784.133333pt;}
.y134_c00064{bottom:784.893333pt;}
.y131_c00064{bottom:790.266667pt;}
.y132_c00064{bottom:791.040000pt;}
.y12f_c00064{bottom:791.813333pt;}
.y130_c00064{bottom:792.573333pt;}
.y133_c00064{bottom:793.346667pt;}
.y12c_c00064{bottom:794.106667pt;}
.y12e_c00064{bottom:794.880000pt;}
.y12d_c00064{bottom:795.653333pt;}
.y12a_c00064{bottom:796.413333pt;}
.y12b_c00064{bottom:797.946667pt;}
.y127_c00064{bottom:798.720000pt;}
.y129_c00064{bottom:800.253333pt;}
.y128_c00064{bottom:801.026667pt;}
.y123_c00064{bottom:803.333333pt;}
.y126_c00064{bottom:804.866667pt;}
.y124_c00064{bottom:807.933333pt;}
.y125_c00064{bottom:808.706667pt;}
.y120_c00064{bottom:811.013333pt;}
.y11c_c00064{bottom:811.773333pt;}
.y122_c00064{bottom:814.080000pt;}
.y11e_c00064{bottom:815.613333pt;}
.y121_c00064{bottom:817.920000pt;}
.y11f_c00064{bottom:818.693333pt;}
.y11d_c00064{bottom:820.226667pt;}
.y11a_c00064{bottom:824.066667pt;}
.y117_c00064{bottom:826.373333pt;}
.y11b_c00064{bottom:827.133333pt;}
.y113_c00064{bottom:827.906667pt;}
.y110_c00064{bottom:829.440000pt;}
.y119_c00064{bottom:830.213333pt;}
.y115_c00064{bottom:830.973333pt;}
.y116_c00064{bottom:831.746667pt;}
.y111_c00064{bottom:834.813333pt;}
.y114_c00064{bottom:835.586667pt;}
.y112_c00064{bottom:837.120000pt;}
.y118_c00064{bottom:839.426667pt;}
.y10a_c00064{bottom:846.333333pt;}
.y10c_c00064{bottom:847.106667pt;}
.y10d_c00064{bottom:847.866667pt;}
.y10e_c00064{bottom:848.640000pt;}
.y108_c00064{bottom:849.413333pt;}
.y10b_c00064{bottom:850.946667pt;}
.y104_c00064{bottom:851.706667pt;}
.y106_c00064{bottom:852.480000pt;}
.y107_c00064{bottom:854.013333pt;}
.y109_c00064{bottom:854.786667pt;}
.y105_c00064{bottom:855.546667pt;}
.y10f_c00064{bottom:859.386667pt;}
.y103_c00064{bottom:860.160000pt;}
.y102_c00064{bottom:863.226667pt;}
.yfa_c00064{bottom:869.373333pt;}
.yff_c00064{bottom:870.146667pt;}
.yfe_c00064{bottom:870.906667pt;}
.yfd_c00064{bottom:871.680000pt;}
.yfc_c00064{bottom:872.453333pt;}
.yfb_c00064{bottom:873.213333pt;}
.yf8_c00064{bottom:873.986667pt;}
.y101_c00064{bottom:874.746667pt;}
.y100_c00064{bottom:875.520000pt;}
.yf6_c00064{bottom:880.893333pt;}
.yf2_c00064{bottom:881.666667pt;}
.yf7_c00064{bottom:883.200000pt;}
.yf5_c00064{bottom:883.973333pt;}
.yf4_c00064{bottom:884.733333pt;}
.yf3_c00064{bottom:885.506667pt;}
.yf0_c00064{bottom:886.266667pt;}
.yf9_c00064{bottom:887.040000pt;}
.yf1_c00064{bottom:887.813333pt;}
.ye8_c00064{bottom:890.106667pt;}
.yef_c00064{bottom:890.880000pt;}
.yec_c00064{bottom:891.653333pt;}
.yed_c00064{bottom:892.413333pt;}
.yea_c00064{bottom:893.186667pt;}
.yee_c00064{bottom:896.253333pt;}
.ye7_c00064{bottom:897.026667pt;}
.yeb_c00064{bottom:897.786667pt;}
.ye5_c00064{bottom:898.560000pt;}
.ye9_c00064{bottom:900.093333pt;}
.ye6_c00064{bottom:900.866667pt;}
.yde_c00064{bottom:903.173333pt;}
.ye2_c00064{bottom:903.933333pt;}
.ydf_c00064{bottom:904.706667pt;}
.ye4_c00064{bottom:905.466667pt;}
.ye3_c00064{bottom:906.240000pt;}
.ye1_c00064{bottom:907.013333pt;}
.ye0_c00064{bottom:907.773333pt;}
.ydd_c00064{bottom:908.546667pt;}
.ydc_c00064{bottom:909.306667pt;}
.yd9_c00064{bottom:913.920000pt;}
.yd8_c00064{bottom:915.453333pt;}
.yda_c00064{bottom:916.226667pt;}
.yd5_c00064{bottom:917.760000pt;}
.ydb_c00064{bottom:918.533333pt;}
.yd6_c00064{bottom:919.293333pt;}
.yd3_c00064{bottom:920.826667pt;}
.yd7_c00064{bottom:923.133333pt;}
.yd2_c00064{bottom:925.440000pt;}
.yd1_c00064{bottom:926.213333pt;}
.yca_c00064{bottom:926.973333pt;}
.yd4_c00064{bottom:927.746667pt;}
.yd0_c00064{bottom:928.506667pt;}
.ycf_c00064{bottom:929.280000pt;}
.ycc_c00064{bottom:933.120000pt;}
.yc8_c00064{bottom:934.653333pt;}
.yce_c00064{bottom:935.426667pt;}
.ycd_c00064{bottom:936.186667pt;}
.ycb_c00064{bottom:936.960000pt;}
.yc9_c00064{bottom:938.493333pt;}
.yc4_c00064{bottom:940.026667pt;}
.yc3_c00064{bottom:940.800000pt;}
.yc7_c00064{bottom:941.573333pt;}
.yc2_c00064{bottom:942.333333pt;}
.yc6_c00064{bottom:943.106667pt;}
.yc5_c00064{bottom:943.866667pt;}
.ybb_c00064{bottom:944.640000pt;}
.yc0_c00064{bottom:947.706667pt;}
.ybf_c00064{bottom:948.480000pt;}
.yc1_c00064{bottom:950.013333pt;}
.ybe_c00064{bottom:950.786667pt;}
.ybd_c00064{bottom:952.320000pt;}
.ybc_c00064{bottom:953.093333pt;}
.yba_c00064{bottom:955.386667pt;}
.yb5_c00064{bottom:957.693333pt;}
.yb9_c00064{bottom:958.466667pt;}
.yb2_c00064{bottom:959.226667pt;}
.yb3_c00064{bottom:960.000000pt;}
.yb6_c00064{bottom:961.533333pt;}
.yb4_c00064{bottom:962.306667pt;}
.yb8_c00064{bottom:963.840000pt;}
.yb7_c00064{bottom:964.613333pt;}
.yb0_c00064{bottom:972.293333pt;}
.yac_c00064{bottom:973.053333pt;}
.yaf_c00064{bottom:973.826667pt;}
.yae_c00064{bottom:975.360000pt;}
.yab_c00064{bottom:976.133333pt;}
.yaa_c00064{bottom:977.666667pt;}
.ya9_c00064{bottom:978.426667pt;}
.yb1_c00064{bottom:979.200000pt;}
.ya8_c00064{bottom:979.973333pt;}
.ya2_c00064{bottom:980.733333pt;}
.ya6_c00064{bottom:981.506667pt;}
.ya7_c00064{bottom:982.266667pt;}
.ya5_c00064{bottom:983.040000pt;}
.yad_c00064{bottom:983.813333pt;}
.ya4_c00064{bottom:984.573333pt;}
.y9e_c00064{bottom:987.653333pt;}
.ya3_c00064{bottom:988.413333pt;}
.ya0_c00064{bottom:989.186667pt;}
.y9d_c00064{bottom:989.946667pt;}
.y9b_c00064{bottom:990.720000pt;}
.y9f_c00064{bottom:991.493333pt;}
.ya1_c00064{bottom:992.253333pt;}
.y97_c00064{bottom:993.026667pt;}
.y95_c00064{bottom:993.786667pt;}
.y9c_c00064{bottom:994.560000pt;}
.y9a_c00064{bottom:996.093333pt;}
.y98_c00064{bottom:996.866667pt;}
.y99_c00064{bottom:997.626667pt;}
.y96_c00064{bottom:999.173333pt;}
.y94_c00064{bottom:1003.013333pt;}
.y90_c00064{bottom:1004.546667pt;}
.y91_c00064{bottom:1006.080000pt;}
.y92_c00064{bottom:1006.853333pt;}
.y8f_c00064{bottom:1007.613333pt;}
.y8e_c00064{bottom:1008.386667pt;}
.y8d_c00064{bottom:1009.146667pt;}
.y93_c00064{bottom:1012.986667pt;}
.y8b_c00064{bottom:1014.533333pt;}
.y8c_c00064{bottom:1018.373333pt;}
.y8a_c00064{bottom:1022.213333pt;}
.y89_c00064{bottom:1026.053333pt;}
.y85_c00064{bottom:1026.813333pt;}
.y88_c00064{bottom:1027.586667pt;}
.y84_c00064{bottom:1029.120000pt;}
.y82_c00064{bottom:1029.893333pt;}
.y87_c00064{bottom:1030.653333pt;}
.y86_c00064{bottom:1033.733333pt;}
.y83_c00064{bottom:1034.493333pt;}
.y7a_c00064{bottom:1035.266667pt;}
.y81_c00064{bottom:1036.026667pt;}
.y7f_c00064{bottom:1036.800000pt;}
.y7d_c00064{bottom:1038.333333pt;}
.y80_c00064{bottom:1039.106667pt;}
.y7e_c00064{bottom:1040.640000pt;}
.y7c_c00064{bottom:1041.413333pt;}
.y7b_c00064{bottom:1042.173333pt;}
.y79_c00064{bottom:1045.253333pt;}
.y77_c00064{bottom:1046.013333pt;}
.y75_c00064{bottom:1046.786667pt;}
.y71_c00064{bottom:1047.546667pt;}
.y74_c00064{bottom:1049.093333pt;}
.y78_c00064{bottom:1049.853333pt;}
.y73_c00064{bottom:1050.626667pt;}
.y72_c00064{bottom:1052.160000pt;}
.y76_c00064{bottom:1052.933333pt;}
.y70_c00064{bottom:1053.693333pt;}
.y6f_c00064{bottom:1059.840000pt;}
.y6b_c00064{bottom:1060.613333pt;}
.y6d_c00064{bottom:1061.373333pt;}
.y6e_c00064{bottom:1062.906667pt;}
.y6a_c00064{bottom:1063.680000pt;}
.y68_c00064{bottom:1067.520000pt;}
.y6c_c00064{bottom:1068.293333pt;}
.y69_c00064{bottom:1069.053333pt;}
.y66_c00064{bottom:1070.586667pt;}
.y67_c00064{bottom:1071.360000pt;}
.y65_c00064{bottom:1072.133333pt;}
.y62_c00064{bottom:1073.666667pt;}
.y5e_c00064{bottom:1075.200000pt;}
.y60_c00064{bottom:1075.973333pt;}
.y5d_c00064{bottom:1077.506667pt;}
.y64_c00064{bottom:1080.573333pt;}
.y5c_c00064{bottom:1082.880000pt;}
.y63_c00064{bottom:1083.653333pt;}
.y5b_c00064{bottom:1084.413333pt;}
.y5f_c00064{bottom:1085.186667pt;}
.y61_c00064{bottom:1086.720000pt;}
.y5a_c00064{bottom:1087.493333pt;}
.y59_c00064{bottom:1089.026667pt;}
.y55_c00064{bottom:1091.333333pt;}
.y57_c00064{bottom:1093.626667pt;}
.y54_c00064{bottom:1094.400000pt;}
.y56_c00064{bottom:1095.173333pt;}
.y58_c00064{bottom:1095.933333pt;}
.y53_c00064{bottom:1096.706667pt;}
.y52_c00064{bottom:1098.240000pt;}
.y4e_c00064{bottom:1099.773333pt;}
.y4d_c00064{bottom:1100.546667pt;}
.y4f_c00064{bottom:1101.306667pt;}
.y51_c00064{bottom:1102.080000pt;}
.y50_c00064{bottom:1102.853333pt;}
.y26f_c00064{bottom:1103.613333pt;}
.y270_c00064{bottom:1104.386667pt;}
.y4c_c00064{bottom:1114.373333pt;}
.y4b_c00064{bottom:1115.133333pt;}
.y48_c00064{bottom:1116.666667pt;}
.y49_c00064{bottom:1117.440000pt;}
.y4a_c00064{bottom:1118.213333pt;}
.y44_c00064{bottom:1119.746667pt;}
.y42_c00064{bottom:1120.506667pt;}
.y45_c00064{bottom:1121.280000pt;}
.y46_c00064{bottom:1123.586667pt;}
.y39_c00064{bottom:1124.346667pt;}
.y43_c00064{bottom:1125.120000pt;}
.y38_c00064{bottom:1125.893333pt;}
.y47_c00064{bottom:1126.653333pt;}
.y41_c00064{bottom:1127.426667pt;}
.y3f_c00064{bottom:1128.186667pt;}
.y3a_c00064{bottom:1128.960000pt;}
.y40_c00064{bottom:1129.733333pt;}
.y3c_c00064{bottom:1130.493333pt;}
.y3d_c00064{bottom:1131.266667pt;}
.y3e_c00064{bottom:1132.026667pt;}
.y36_c00064{bottom:1132.800000pt;}
.y3b_c00064{bottom:1133.573333pt;}
.y33_c00064{bottom:1136.640000pt;}
.y37_c00064{bottom:1138.946667pt;}
.y30_c00064{bottom:1139.706667pt;}
.y35_c00064{bottom:1140.480000pt;}
.y34_c00064{bottom:1141.253333pt;}
.y32_c00064{bottom:1142.013333pt;}
.y31_c00064{bottom:1143.546667pt;}
.y2f_c00064{bottom:1145.093333pt;}
.y2d_c00064{bottom:1151.226667pt;}
.y2e_c00064{bottom:1152.000000pt;}
.y271_c00064{bottom:1152.773333pt;}
.y2a_c00064{bottom:1153.533333pt;}
.y272_c00064{bottom:1154.306667pt;}
.y2b_c00064{bottom:1155.840000pt;}
.y29_c00064{bottom:1156.613333pt;}
.y28_c00064{bottom:1158.906667pt;}
.y22_c00064{bottom:1159.680000pt;}
.y21_c00064{bottom:1160.453333pt;}
.y20_c00064{bottom:1161.213333pt;}
.y2c_c00064{bottom:1162.746667pt;}
.y27_c00064{bottom:1163.520000pt;}
.y26_c00064{bottom:1164.293333pt;}
.y1c_c00064{bottom:1165.053333pt;}
.y24_c00064{bottom:1165.826667pt;}
.y25_c00064{bottom:1166.586667pt;}
.y23_c00064{bottom:1168.893333pt;}
.y1e_c00064{bottom:1169.666667pt;}
.y1d_c00064{bottom:1170.426667pt;}
.y1b_c00064{bottom:1172.733333pt;}
.y1a_c00064{bottom:1174.266667pt;}
.y1f_c00064{bottom:1178.106667pt;}
.y19_c00064{bottom:1178.880000pt;}
.y17_c00064{bottom:1181.946667pt;}
.y16_c00064{bottom:1182.720000pt;}
.y14_c00064{bottom:1184.253333pt;}
.y15_c00064{bottom:1185.026667pt;}
.y10_c00064{bottom:1187.333333pt;}
.y12_c00064{bottom:1188.866667pt;}
.y13_c00064{bottom:1189.626667pt;}
.y11_c00064{bottom:1193.466667pt;}
.y18_c00064{bottom:1194.240000pt;}
.yf_c00064{bottom:1203.453333pt;}
.yb_c00064{bottom:1204.986667pt;}
.yc_c00064{bottom:1206.533333pt;}
.yd_c00064{bottom:1207.293333pt;}
.y9_c00064{bottom:1208.066667pt;}
.ye_c00064{bottom:1208.826667pt;}
.y8_c00064{bottom:1209.600000pt;}
.ya_c00064{bottom:1214.213333pt;}
.y7_c00064{bottom:1214.973333pt;}
.y26e_c00064{bottom:1217.280000pt;}
.y6_c00064{bottom:1230.333333pt;}
.y5_c00064{bottom:1234.946667pt;}
.y4_c00064{bottom:1235.706667pt;}
.y1_c00064{bottom:1236.480000pt;}
.y3_c00064{bottom:1238.786667pt;}
.y2_c00064{bottom:1240.320000pt;}
.h12_c00064{height:2.764500pt;}
.h1e_c00064{height:4.799479pt;}
.h8_c00064{height:5.519401pt;}
.h1d_c00064{height:8.303099pt;}
.h4_c00064{height:11.038802pt;}
.h17_c00064{height:13.822500pt;}
.h22_c00064{height:16.606198pt;}
.h18_c00064{height:19.341901pt;}
.h1a_c00064{height:22.125599pt;}
.h16_c00064{height:24.861302pt;}
.h1b_c00064{height:27.645000pt;}
.h14_c00064{height:30.428698pt;}
.hc_c00064{height:33.164401pt;}
.h15_c00064{height:35.948099pt;}
.h1c_c00064{height:38.683802pt;}
.he_c00064{height:41.467500pt;}
.h3_c00064{height:44.251198pt;}
.h19_c00064{height:46.986901pt;}
.h1f_c00064{height:49.770599pt;}
.h5_c00064{height:52.506302pt;}
.h10_c00064{height:55.290000pt;}
.h13_c00064{height:58.073698pt;}
.h2_c00064{height:60.809401pt;}
.hd_c00064{height:63.593099pt;}
.hb_c00064{height:66.328802pt;}
.h9_c00064{height:69.112500pt;}
.h21_c00064{height:71.896198pt;}
.h7_c00064{height:74.631901pt;}
.ha_c00064{height:77.415599pt;}
.h6_c00064{height:80.151302pt;}
.h11_c00064{height:82.935000pt;}
.h20_c00064{height:88.454401pt;}
.h23_c00064{height:91.238099pt;}
.hf_c00064{height:93.973802pt;}
.h24_c00064{height:96.757500pt;}
.h0_c00064{height:1348.613333pt;}
.h1_c00064{height:1348.666667pt;}
.w0_c00064{width:953.853333pt;}
.w1_c00064{width:954.000000pt;}
.x0_c00064{left:0.000000pt;}
.x129_c00064{left:67.586667pt;}
.x12a_c00064{left:125.186667pt;}
.x12b_c00064{left:135.173333pt;}
.x12c_c00064{left:139.773333pt;}
.x12d_c00064{left:151.293333pt;}
.x11e_c00064{left:155.906667pt;}
.x124_c00064{left:160.506667pt;}
.x122_c00064{left:162.813333pt;}
.x55_c00064{left:168.186667pt;}
.x10d_c00064{left:169.733333pt;}
.xd5_c00064{left:171.266667pt;}
.xa1_c00064{left:174.333333pt;}
.x6a_c00064{left:176.640000pt;}
.x3f_c00064{left:178.946667pt;}
.xb7_c00064{left:180.480000pt;}
.xc4_c00064{left:182.013333pt;}
.x7c_c00064{left:184.320000pt;}
.x8_c00064{left:185.853333pt;}
.x1_c00064{left:187.386667pt;}
.xef_c00064{left:189.693333pt;}
.x11f_c00064{left:191.226667pt;}
.x103_c00064{left:193.533333pt;}
.xc7_c00064{left:195.066667pt;}
.x111_c00064{left:199.680000pt;}
.x105_c00064{left:201.986667pt;}
.x90_c00064{left:205.053333pt;}
.xf3_c00064{left:207.360000pt;}
.xfb_c00064{left:209.666667pt;}
.x9_c00064{left:211.973333pt;}
.xda_c00064{left:213.506667pt;}
.xc1_c00064{left:215.813333pt;}
.xc8_c00064{left:218.106667pt;}
.xb8_c00064{left:221.186667pt;}
.x48_c00064{left:222.720000pt;}
.xe3_c00064{left:225.026667pt;}
.xd3_c00064{left:227.333333pt;}
.x9a_c00064{left:230.400000pt;}
.x2c_c00064{left:232.706667pt;}
.x88_c00064{left:234.240000pt;}
.xf6_c00064{left:235.773333pt;}
.x2_c00064{left:237.306667pt;}
.xa2_c00064{left:238.853333pt;}
.x128_c00064{left:240.386667pt;}
.x5f_c00064{left:242.693333pt;}
.x3_c00064{left:244.986667pt;}
.xf1_c00064{left:246.533333pt;}
.x112_c00064{left:249.600000pt;}
.x56_c00064{left:251.133333pt;}
.x49_c00064{left:252.666667pt;}
.x74_c00064{left:254.973333pt;}
.xc2_c00064{left:257.280000pt;}
.xc5_c00064{left:259.586667pt;}
.x35_c00064{left:261.120000pt;}
.xa_c00064{left:263.426667pt;}
.x20_c00064{left:264.960000pt;}
.x4_c00064{left:266.493333pt;}
.x123_c00064{left:268.026667pt;}
.x100_c00064{left:269.573333pt;}
.xa3_c00064{left:271.106667pt;}
.x82_c00064{left:273.413333pt;}
.x57_c00064{left:274.946667pt;}
.x9b_c00064{left:277.253333pt;}
.xab_c00064{left:281.853333pt;}
.xf2_c00064{left:284.160000pt;}
.x117_c00064{left:285.693333pt;}
.x89_c00064{left:288.000000pt;}
.xbd_c00064{left:290.306667pt;}
.xac_c00064{left:291.840000pt;}
.x75_c00064{left:293.373333pt;}
.x2d_c00064{left:295.680000pt;}
.x101_c00064{left:297.986667pt;}
.xcc_c00064{left:299.520000pt;}
.x7d_c00064{left:303.360000pt;}
.x106_c00064{left:305.666667pt;}
.xa4_c00064{left:307.200000pt;}
.x36_c00064{left:308.733333pt;}
.x21_c00064{left:311.040000pt;}
.x125_c00064{left:313.346667pt;}
.xfc_c00064{left:314.880000pt;}
.x76_c00064{left:317.186667pt;}
.x60_c00064{left:319.493333pt;}
.xb_c00064{left:321.026667pt;}
.x8a_c00064{left:322.560000pt;}
.x94_c00064{left:324.866667pt;}
.x22_c00064{left:329.466667pt;}
.xea_c00064{left:331.013333pt;}
.x4a_c00064{left:333.306667pt;}
.x40_c00064{left:335.613333pt;}
.xad_c00064{left:338.693333pt;}
.xf7_c00064{left:340.226667pt;}
.x18_c00064{left:341.760000pt;}
.x41_c00064{left:345.600000pt;}
.x127_c00064{left:347.906667pt;}
.x4b_c00064{left:349.440000pt;}
.x2e_c00064{left:351.746667pt;}
.x61_c00064{left:353.280000pt;}
.x10e_c00064{left:356.346667pt;}
.x8b_c00064{left:358.653333pt;}
.xdd_c00064{left:360.186667pt;}
.x95_c00064{left:361.733333pt;}
.xf4_c00064{left:363.266667pt;}
.xc_c00064{left:364.800000pt;}
.x4c_c00064{left:367.866667pt;}
.xcd_c00064{left:370.946667pt;}
.x118_c00064{left:372.480000pt;}
.x2f_c00064{left:374.013333pt;}
.xd7_c00064{left:376.320000pt;}
.x19_c00064{left:378.626667pt;}
.x6b_c00064{left:380.160000pt;}
.xc9_c00064{left:381.693333pt;}
.x9c_c00064{left:383.226667pt;}
.x10b_c00064{left:385.533333pt;}
.x77_c00064{left:387.840000pt;}
.x7e_c00064{left:389.373333pt;}
.x5_c00064{left:392.453333pt;}
.x4d_c00064{left:394.746667pt;}
.x8c_c00064{left:397.826667pt;}
.x10f_c00064{left:400.133333pt;}
.x30_c00064{left:402.426667pt;}
.x126_c00064{left:404.733333pt;}
.xd_c00064{left:406.266667pt;}
.x4e_c00064{left:407.813333pt;}
.x62_c00064{left:409.346667pt;}
.xb2_c00064{left:411.653333pt;}
.xdb_c00064{left:413.186667pt;}
.x9d_c00064{left:415.493333pt;}
.x58_c00064{left:417.026667pt;}
.x1a_c00064{left:418.560000pt;}
.x31_c00064{left:420.093333pt;}
.xbe_c00064{left:423.173333pt;}
.xf8_c00064{left:424.706667pt;}
.xe_c00064{left:426.240000pt;}
.x91_c00064{left:428.546667pt;}
.x1b_c00064{left:432.386667pt;}
.x23_c00064{left:434.693333pt;}
.xca_c00064{left:436.226667pt;}
.x104_c00064{left:438.533333pt;}
.x7f_c00064{left:440.066667pt;}
.x114_c00064{left:441.600000pt;}
.x1c_c00064{left:443.906667pt;}
.x83_c00064{left:445.440000pt;}
.xf9_c00064{left:450.813333pt;}
.xae_c00064{left:452.346667pt;}
.x42_c00064{left:453.893333pt;}
.xf_c00064{left:455.426667pt;}
.x10c_c00064{left:458.493333pt;}
.xeb_c00064{left:460.026667pt;}
.x115_c00064{left:461.573333pt;}
.x78_c00064{left:463.866667pt;}
.xfd_c00064{left:465.413333pt;}
.x63_c00064{left:467.706667pt;}
.x59_c00064{left:470.013333pt;}
.x10_c00064{left:471.546667pt;}
.xa5_c00064{left:473.093333pt;}
.x96_c00064{left:474.626667pt;}
.xb3_c00064{left:476.160000pt;}
.x84_c00064{left:477.693333pt;}
.xce_c00064{left:480.000000pt;}
.xd8_c00064{left:481.533333pt;}
.x43_c00064{left:484.613333pt;}
.x6c_c00064{left:486.146667pt;}
.xaf_c00064{left:487.680000pt;}
.x92_c00064{left:489.213333pt;}
.x97_c00064{left:491.520000pt;}
.xb9_c00064{left:493.053333pt;}
.x1d_c00064{left:496.133333pt;}
.x107_c00064{left:497.666667pt;}
.x24_c00064{left:499.200000pt;}
.x8d_c00064{left:501.506667pt;}
.x9e_c00064{left:503.040000pt;}
.xcb_c00064{left:505.346667pt;}
.xe4_c00064{left:506.880000pt;}
.x64_c00064{left:508.413333pt;}
.x5a_c00064{left:509.946667pt;}
.x44_c00064{left:511.493333pt;}
.x32_c00064{left:513.026667pt;}
.x37_c00064{left:514.560000pt;}
.x108_c00064{left:516.093333pt;}
.x6d_c00064{left:517.626667pt;}
.xcf_c00064{left:519.933333pt;}
.x38_c00064{left:521.466667pt;}
.xde_c00064{left:523.013333pt;}
.xba_c00064{left:525.306667pt;}
.x65_c00064{left:528.386667pt;}
.x25_c00064{left:530.693333pt;}
.x79_c00064{left:533.760000pt;}
.xbf_c00064{left:536.066667pt;}
.xfe_c00064{left:537.600000pt;}
.xbb_c00064{left:540.666667pt;}
.x45_c00064{left:542.213333pt;}
.x11_c00064{left:544.506667pt;}
.x109_c00064{left:546.053333pt;}
.xc6_c00064{left:548.346667pt;}
.x8e_c00064{left:550.653333pt;}
.xe5_c00064{left:552.186667pt;}
.x6e_c00064{left:553.733333pt;}
.xa6_c00064{left:556.026667pt;}
.x1e_c00064{left:557.573333pt;}
.x119_c00064{left:559.106667pt;}
.xa7_c00064{left:561.413333pt;}
.x33_c00064{left:564.480000pt;}
.x5b_c00064{left:566.786667pt;}
.x4f_c00064{left:569.093333pt;}
.x6_c00064{left:571.386667pt;}
.x12_c00064{left:573.693333pt;}
.x6f_c00064{left:575.226667pt;}
.x50_c00064{left:576.773333pt;}
.x66_c00064{left:579.840000pt;}
.xb0_c00064{left:582.146667pt;}
.xb4_c00064{left:583.680000pt;}
.x11c_c00064{left:585.213333pt;}
.xa8_c00064{left:588.293333pt;}
.x39_c00064{left:590.586667pt;}
.xec_c00064{left:592.893333pt;}
.xe6_c00064{left:595.200000pt;}
.x13_c00064{left:596.733333pt;}
.x51_c00064{left:598.266667pt;}
.xd0_c00064{left:601.346667pt;}
.x26_c00064{left:602.880000pt;}
.xa9_c00064{left:605.186667pt;}
.x3a_c00064{left:607.493333pt;}
.xdf_c00064{left:609.026667pt;}
.x93_c00064{left:611.333333pt;}
.xdc_c00064{left:615.173333pt;}
.x5c_c00064{left:617.466667pt;}
.x80_c00064{left:619.013333pt;}
.x11a_c00064{left:621.306667pt;}
.x3b_c00064{left:622.853333pt;}
.x27_c00064{left:625.920000pt;}
.x102_c00064{left:627.453333pt;}
.x14_c00064{left:628.986667pt;}
.x9f_c00064{left:630.533333pt;}
.x34_c00064{left:632.066667pt;}
.x113_c00064{left:633.600000pt;}
.x28_c00064{left:635.133333pt;}
.xb1_c00064{left:636.666667pt;}
.x3c_c00064{left:639.746667pt;}
.x29_c00064{left:642.053333pt;}
.x11b_c00064{left:643.586667pt;}
.x116_c00064{left:645.120000pt;}
.x7a_c00064{left:646.653333pt;}
.x46_c00064{left:648.960000pt;}
.x7b_c00064{left:651.266667pt;}
.xc3_c00064{left:653.573333pt;}
.x67_c00064{left:655.106667pt;}
.x70_c00064{left:657.413333pt;}
.x10a_c00064{left:660.480000pt;}
.x8f_c00064{left:662.013333pt;}
.xd1_c00064{left:666.626667pt;}
.x121_c00064{left:668.160000pt;}
.x68_c00064{left:669.693333pt;}
.x2a_c00064{left:672.000000pt;}
.x52_c00064{left:674.306667pt;}
.x3d_c00064{left:675.840000pt;}
.x15_c00064{left:678.146667pt;}
.x98_c00064{left:679.680000pt;}
.x1f_c00064{left:681.986667pt;}
.xe0_c00064{left:683.520000pt;}
.x53_c00064{left:685.826667pt;}
.x71_c00064{left:687.360000pt;}
.xb5_c00064{left:689.666667pt;}
.x16_c00064{left:691.200000pt;}
.x47_c00064{left:694.266667pt;}
.xd4_c00064{left:695.813333pt;}
.x85_c00064{left:698.106667pt;}
.x69_c00064{left:699.653333pt;}
.x5d_c00064{left:701.946667pt;}
.x11d_c00064{left:704.253333pt;}
.x110_c00064{left:705.786667pt;}
.x3e_c00064{left:708.093333pt;}
.xe1_c00064{left:710.400000pt;}
.x5e_c00064{left:711.933333pt;}
.xbc_c00064{left:713.466667pt;}
.x54_c00064{left:715.013333pt;}
.xb6_c00064{left:716.546667pt;}
.x86_c00064{left:718.080000pt;}
.xe2_c00064{left:720.386667pt;}
.x72_c00064{left:721.920000pt;}
.x99_c00064{left:726.533333pt;}
.x17_c00064{left:728.826667pt;}
.x81_c00064{left:730.373333pt;}
.x2b_c00064{left:732.666667pt;}
.x7_c00064{left:737.280000pt;}
.xc0_c00064{left:738.813333pt;}
.x73_c00064{left:740.346667pt;}
.xfa_c00064{left:744.186667pt;}
.x87_c00064{left:748.800000pt;}
.xed_c00064{left:750.333333pt;}
.xd9_c00064{left:751.866667pt;}
.x120_c00064{left:753.413333pt;}
.xe7_c00064{left:755.706667pt;}
.xa0_c00064{left:763.386667pt;}
.xd2_c00064{left:767.226667pt;}
.xe8_c00064{left:768.773333pt;}
.xf0_c00064{left:771.066667pt;}
.xd6_c00064{left:774.146667pt;}
.xaa_c00064{left:779.520800pt;}
.xee_c00064{left:786.426667pt;}
.xe9_c00064{left:789.506667pt;}
.xf5_c00064{left:797.946667pt;}
.xff_c00064{left:827.906667pt;}
.x130_c00064{left:885.506667pt;}
.x12f_c00064{left:893.186667pt;}
.x131_c00064{left:898.560000pt;}
.x12e_c00064{left:923.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00065;src:url('chunks/assets/font_76dd49be48236ff1095bbcf5.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.109863;font-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_c00065{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c00065{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);}
.m3_c00065{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1_c00065{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);}
.m0_c00065{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2_c00065{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c00065{vertical-align:0.000000px;}
.ls0_c00065{letter-spacing:0.000000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00065{word-spacing:0.000000px;}
.fc0_c00065{color:transparent;}
.fs2_c00065{font-size:17.280000px;}
.fs4_c00065{font-size:34.560000px;}
.fs3_c00065{font-size:48.360000px;}
.fs0_c00065{font-size:65.640000px;}
.fs1_c00065{font-size:69.120000px;}
.y0_c00065{bottom:0.000000px;}
.y6_c00065{bottom:588.390000px;}
.y5_c00065{bottom:597.030000px;}
.y4_c00065{bottom:604.800000px;}
.y2_c00065{bottom:1380.675000px;}
.y1_c00065{bottom:1382.400000px;}
.y3_c00065{bottom:1395.360000px;}
.h4_c00065{height:15.550313px;}
.h6_c00065{height:31.100625px;}
.h5_c00065{height:43.519277px;}
.h2_c00065{height:59.069590px;}
.h3_c00065{height:62.201250px;}
.h0_c00065{height:1505.955000px;}
.h1_c00065{height:1506.000000px;}
.w0_c00065{width:1094.685000px;}
.w1_c00065{width:1095.000000px;}
.x0_c00065{left:0.000000px;}
.x1_c00065{left:487.290000px;}
.x2_c00065{left:540.000000px;}
.x3_c00065{left:747.360000px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ws0_c00065{word-spacing:0.000000pt;}
.fs2_c00065{font-size:15.360000pt;}
.fs4_c00065{font-size:30.720000pt;}
.fs3_c00065{font-size:42.986667pt;}
.fs0_c00065{font-size:58.346667pt;}
.fs1_c00065{font-size:61.440000pt;}
.y0_c00065{bottom:0.000000pt;}
.y6_c00065{bottom:523.013333pt;}
.y5_c00065{bottom:530.693333pt;}
.y4_c00065{bottom:537.600000pt;}
.y2_c00065{bottom:1227.266667pt;}
.y1_c00065{bottom:1228.800000pt;}
.y3_c00065{bottom:1240.320000pt;}
.h4_c00065{height:13.822500pt;}
.h6_c00065{height:27.645000pt;}
.h5_c00065{height:38.683802pt;}
.h2_c00065{height:52.506302pt;}
.h3_c00065{height:55.290000pt;}
.h0_c00065{height:1338.626667pt;}
.h1_c00065{height:1338.666667pt;}
.w0_c00065{width:973.053333pt;}
.w1_c00065{width:973.333333pt;}
.x0_c00065{left:0.000000pt;}
.x1_c00065{left:433.146667pt;}
.x2_c00065{left:480.000000pt;}
.x3_c00065{left:664.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_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_71db78d551d2de55cd226c76.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.109863;font-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_c00066{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);}
.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;}
.fs0_c00066{font-size:600.000000px;}
.y0_c00066{bottom:0.000000px;}
.y1_c00066{bottom:15.000000px;}
.h2_c00066{height:539.941406px;}
.h0_c00066{height:1517.190000px;}
.h1_c00066{height:1517.250000px;}
.w0_c00066{width:1079.130000px;}
.w1_c00066{width:1079.250000px;}
.x0_c00066{left:0.000000px;}
.x1_c00066{left:15.000000px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls0_c00066{letter-spacing:0.000000pt;}
.ws0_c00066{word-spacing:0.000000pt;}
.fs0_c00066{font-size:533.333333pt;}
.y0_c00066{bottom:0.000000pt;}
.y1_c00066{bottom:13.333333pt;}
.h2_c00066{height:479.947917pt;}
.h0_c00066{height:1348.613333pt;}
.h1_c00066{height:1348.666667pt;}
.w0_c00066{width:959.226667pt;}
.w1_c00066{width:959.333333pt;}
.x0_c00066{left:0.000000pt;}
.x1_c00066{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a92096e7f72c4c6a494c6f5.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.109863;font-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_c00067{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);}
.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:600.000000px;}
.y0_c00067{bottom:0.000000px;}
.y1_c00067{bottom:15.000000px;}
.h2_c00067{height:539.941406px;}
.h1_c00067{height:1503.000000px;}
.h0_c00067{height:1503.360000px;}
.w0_c00067{width:1094.685000px;}
.w1_c00067{width:1095.000000px;}
.x0_c00067{left:0.000000px;}
.x1_c00067{left:15.000000px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls0_c00067{letter-spacing:0.000000pt;}
.ws0_c00067{word-spacing:0.000000pt;}
.fs0_c00067{font-size:533.333333pt;}
.y0_c00067{bottom:0.000000pt;}
.y1_c00067{bottom:13.333333pt;}
.h2_c00067{height:479.947917pt;}
.h1_c00067{height:1336.000000pt;}
.h0_c00067{height:1336.320000pt;}
.w0_c00067{width:973.053333pt;}
.w1_c00067{width:973.333333pt;}
.x0_c00067{left:0.000000pt;}
.x1_c00067{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05a2af35529e04612cc077e3.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.109863;font-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.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m51_c00068{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m55_c00068{transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);}
.m45_c00068{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);}
.m4d_c00068{transform:matrix(0.091775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091775,0.000000,0.000000,0.250000,0,0);}
.m9e_c00068{transform:matrix(0.102825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102825,0.000000,0.000000,0.250000,0,0);}
.m94_c00068{transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);}
.m26_c00068{transform:matrix(0.121825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121825,0.000000,0.000000,0.250000,0,0);}
.ma6_c00068{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m25_c00068{transform:matrix(0.128400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128400,0.000000,0.000000,0.250000,0,0);}
.m2d_c00068{transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);}
.m80_c00068{transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);}
.m15_c00068{transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);}
.m38_c00068{transform:matrix(0.138275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138275,0.000000,0.000000,0.250000,0,0);}
.m2c_c00068{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.m42_c00068{transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);}
.m2_c00068{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00068{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.m97_c00068{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);}
.ma7_c00068{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m3a_c00068{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);}
.m2e_c00068{transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);}
.m7f_c00068{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.md5_c00068{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);}
.m12_c00068{transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);}
.ma9_c00068{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m0_c00068{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m8b_c00068{transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);}
.m21_c00068{transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);}
.m95_c00068{transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);}
.m33_c00068{transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);}
.mbf_c00068{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.m7c_c00068{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.mce_c00068{transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);}
.m8a_c00068{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);}
.m56_c00068{transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);}
.m70_c00068{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.m7e_c00068{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.m4c_c00068{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00068{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.mbc_c00068{transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);}
.mae_c00068{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m98_c00068{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);}
.m7a_c00068{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.mb0_c00068{transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);}
.m9a_c00068{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);}
.m99_c00068{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);}
.m27_c00068{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.m8e_c00068{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);}
.m6a_c00068{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mac_c00068{transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);}
.mb9_c00068{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.mca_c00068{transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);}
.m66_c00068{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.ma3_c00068{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.m74_c00068{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.m53_c00068{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.mbb_c00068{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);}
.m9f_c00068{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m8d_c00068{transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);}
.m13_c00068{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m82_c00068{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);}
.m87_c00068{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00068{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);}
.m37_c00068{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m40_c00068{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);}
.m3b_c00068{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.mb6_c00068{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.m9d_c00068{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);}
.mb2_c00068{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.m1d_c00068{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m29_c00068{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);}
.m3e_c00068{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);}
.md2_c00068{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m43_c00068{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.maa_c00068{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.mbe_c00068{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);}
.md1_c00068{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);}
.md4_c00068{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.m6b_c00068{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m90_c00068{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);}
.m22_c00068{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.mbd_c00068{transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);}
.m17_c00068{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.m96_c00068{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00068{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m7d_c00068{transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);}
.m75_c00068{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);}
.mcc_c00068{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.m64_c00068{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);}
.m86_c00068{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.mb4_c00068{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);}
.m34_c00068{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.mad_c00068{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);}
.m6c_c00068{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m91_c00068{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);}
.m88_c00068{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);}
.m3f_c00068{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);}
.m57_c00068{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);}
.m92_c00068{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.m4_c00068{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m85_c00068{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.ma0_c00068{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m2f_c00068{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.mcf_c00068{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);}
.m7b_c00068{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);}
.mcd_c00068{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m10_c00068{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m31_c00068{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);}
.m44_c00068{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.maf_c00068{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.mb8_c00068{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.mb7_c00068{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);}
.mba_c00068{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);}
.m69_c00068{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);}
.mab_c00068{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);}
.m4b_c00068{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);}
.m5e_c00068{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);}
.mc8_c00068{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.mc3_c00068{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);}
.m9b_c00068{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);}
.m8f_c00068{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.m52_c00068{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.ma5_c00068{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);}
.m41_c00068{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);}
.ma1_c00068{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.m93_c00068{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.mb3_c00068{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.md0_c00068{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);}
.m68_c00068{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);}
.m83_c00068{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m67_c00068{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);}
.m28_c00068{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);}
.ma8_c00068{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);}
.m63_c00068{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c00068{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m39_c00068{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00068{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);}
.m46_c00068{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00068{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);}
.m6f_c00068{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);}
.m48_c00068{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m73_c00068{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);}
.m24_c00068{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m79_c00068{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);}
.mc2_c00068{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00068{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);}
.m3_c00068{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);}
.m35_c00068{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m36_c00068{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00068{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);}
.m19_c00068{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00068{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m58_c00068{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);}
.m59_c00068{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00068{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00068{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m76_c00068{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m71_c00068{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00068{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md3_c00068{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);}
.m6_c00068{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m49_c00068{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m78_c00068{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00068{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);}
.m1f_c00068{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);}
.m23_c00068{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m20_c00068{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m50_c00068{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);}
.m1c_c00068{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00068{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c00068{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m81_c00068{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);}
.m6e_c00068{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00068{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);}
.m77_c00068{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mb_c00068{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);}
.m2a_c00068{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c00068{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m16_c00068{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);}
.m89_c00068{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);}
.md_c00068{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00068{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00068{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1_c00068{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md8_c00068{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m65_c00068{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.me_c00068{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);}
.m5a_c00068{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m47_c00068{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00068{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m61_c00068{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mf_c00068{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00068{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);}
.md6_c00068{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m60_c00068{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);}
.mc_c00068{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);}
.mcb_c00068{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00068{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m84_c00068{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00068{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m32_c00068{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.md9_c00068{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m72_c00068{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m9_c00068{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m8_c00068{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m18_c00068{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.ma_c00068{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.md7_c00068{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00068{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00068{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m54_c00068{transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00068{transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);}
.m30_c00068{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00068{transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00068{transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00068{transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);}
.m62_c00068{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.v1_c00068{vertical-align:-34.560000px;}
.v0_c00068{vertical-align:0.000000px;}
.v2_c00068{vertical-align:17.280000px;}
.ls1_c00068{letter-spacing:0.000000px;}
.ls0_c00068{letter-spacing:7.761480px;}
.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:-48.342360px;}
.ws1_c00068{word-spacing:0.000000px;}
._0_c00068{width:5.237640px;}
.fc0_c00068{color:transparent;}
.fs2_c00068{font-size:3.456000px;}
.fs7_c00068{font-size:6.000000px;}
.fs1_c00068{font-size:6.900000px;}
.fs17_c00068{font-size:10.380000px;}
.fsd_c00068{font-size:13.800000px;}
.fs9_c00068{font-size:17.280000px;}
.fs0_c00068{font-size:20.760000px;}
.fs29_c00068{font-size:24.180000px;}
.fs1b_c00068{font-size:27.660000px;}
.fs25_c00068{font-size:31.080000px;}
.fs28_c00068{font-size:34.560000px;}
.fs27_c00068{font-size:38.040000px;}
.fs24_c00068{font-size:41.460000px;}
.fs8_c00068{font-size:44.940000px;}
.fs20_c00068{font-size:48.360000px;}
.fs15_c00068{font-size:51.840000px;}
.fs11_c00068{font-size:55.320000px;}
.fs5_c00068{font-size:58.740000px;}
.fs12_c00068{font-size:62.220000px;}
.fs13_c00068{font-size:65.640000px;}
.fsb_c00068{font-size:69.120000px;}
.fsc_c00068{font-size:72.600000px;}
.fs6_c00068{font-size:76.020000px;}
.fs3_c00068{font-size:79.500000px;}
.fsa_c00068{font-size:82.920000px;}
.fs19_c00068{font-size:86.400000px;}
.fs1e_c00068{font-size:89.880000px;}
.fs4_c00068{font-size:93.300000px;}
.fs10_c00068{font-size:96.780000px;}
.fs14_c00068{font-size:100.200000px;}
.fs26_c00068{font-size:103.680000px;}
.fse_c00068{font-size:107.160000px;}
.fs1c_c00068{font-size:110.580000px;}
.fs21_c00068{font-size:114.060000px;}
.fs18_c00068{font-size:117.480000px;}
.fsf_c00068{font-size:120.960000px;}
.fs1f_c00068{font-size:124.440000px;}
.fs16_c00068{font-size:127.860000px;}
.fs1d_c00068{font-size:131.340000px;}
.fs1a_c00068{font-size:138.240000px;}
.fs22_c00068{font-size:145.140000px;}
.fs23_c00068{font-size:179.700000px;}
.fs2a_c00068{font-size:255.720000px;}
.y0_c00068{bottom:0.000000px;}
.yf0_c00068{bottom:501.990000px;}
.yef_c00068{bottom:529.635000px;}
.yec_c00068{bottom:580.605000px;}
.yea_c00068{bottom:596.160000px;}
.yeb_c00068{bottom:599.610000px;}
.ye7_c00068{bottom:610.845000px;}
.ye8_c00068{bottom:612.570000px;}
.ye6_c00068{bottom:618.630000px;}
.ye5_c00068{bottom:622.950000px;}
.ye4_c00068{bottom:629.850000px;}
.ye9_c00068{bottom:632.445000px;}
.ye3_c00068{bottom:638.490000px;}
.ye2_c00068{bottom:640.230000px;}
.ye0_c00068{bottom:641.955000px;}
.ydf_c00068{bottom:642.810000px;}
.ye1_c00068{bottom:646.275000px;}
.yde_c00068{bottom:648.000000px;}
.ydd_c00068{bottom:660.090000px;}
.ydb_c00068{bottom:661.830000px;}
.ydc_c00068{bottom:667.005000px;}
.yd7_c00068{bottom:667.875000px;}
.yd9_c00068{bottom:670.470000px;}
.yda_c00068{bottom:671.325000px;}
.yd8_c00068{bottom:673.050000px;}
.yd4_c00068{bottom:673.920000px;}
.yd5_c00068{bottom:674.790000px;}
.yd6_c00068{bottom:678.240000px;}
.yd3_c00068{bottom:680.835000px;}
.yd2_c00068{bottom:688.605000px;}
.yd1_c00068{bottom:696.390000px;}
.yce_c00068{bottom:697.245000px;}
.yd0_c00068{bottom:698.970000px;}
.ycf_c00068{bottom:700.710000px;}
.ycc_c00068{bottom:702.435000px;}
.ycd_c00068{bottom:705.885000px;}
.yca_c00068{bottom:714.525000px;}
.yc7_c00068{bottom:715.395000px;}
.yc8_c00068{bottom:717.990000px;}
.yc9_c00068{bottom:718.845000px;}
.yc6_c00068{bottom:719.715000px;}
.ycb_c00068{bottom:720.570000px;}
.yc5_c00068{bottom:721.440000px;}
.yc4_c00068{bottom:722.310000px;}
.yc3_c00068{bottom:723.165000px;}
.yc1_c00068{bottom:735.270000px;}
.yc0_c00068{bottom:736.995000px;}
.yc2_c00068{bottom:737.850000px;}
.ybe_c00068{bottom:739.590000px;}
.ybc_c00068{bottom:741.315000px;}
.ybd_c00068{bottom:742.170000px;}
.ybf_c00068{bottom:743.040000px;}
.ybb_c00068{bottom:746.490000px;}
.yb9_c00068{bottom:747.360000px;}
.yba_c00068{bottom:749.955000px;}
.yb7_c00068{bottom:762.915000px;}
.yb8_c00068{bottom:766.365000px;}
.yb6_c00068{bottom:768.090000px;}
.yb2_c00068{bottom:769.830000px;}
.yb1_c00068{bottom:770.685000px;}
.yb4_c00068{bottom:771.555000px;}
.yb5_c00068{bottom:772.410000px;}
.yb3_c00068{bottom:774.150000px;}
.yb0_c00068{bottom:779.325000px;}
.yae_c00068{bottom:785.370000px;}
.yad_c00068{bottom:787.110000px;}
.yac_c00068{bottom:787.965000px;}
.yab_c00068{bottom:788.835000px;}
.yaa_c00068{bottom:790.560000px;}
.ya9_c00068{bottom:791.430000px;}
.yaf_c00068{bottom:792.285000px;}
.ya8_c00068{bottom:793.155000px;}
.ya6_c00068{bottom:794.010000px;}
.ya7_c00068{bottom:794.880000px;}
.ya3_c00068{bottom:796.605000px;}
.ya5_c00068{bottom:797.475000px;}
.ya4_c00068{bottom:800.070000px;}
.ya2_c00068{bottom:803.520000px;}
.ya0_c00068{bottom:812.160000px;}
.y9e_c00068{bottom:813.885000px;}
.y9d_c00068{bottom:814.755000px;}
.y9c_c00068{bottom:815.610000px;}
.y9b_c00068{bottom:817.350000px;}
.y99_c00068{bottom:819.930000px;}
.y9f_c00068{bottom:820.800000px;}
.y98_c00068{bottom:821.670000px;}
.ya1_c00068{bottom:825.120000px;}
.y9a_c00068{bottom:825.990000px;}
.y95_c00068{bottom:836.355000px;}
.y97_c00068{bottom:837.210000px;}
.y93_c00068{bottom:838.080000px;}
.y92_c00068{bottom:840.675000px;}
.y91_c00068{bottom:841.530000px;}
.y96_c00068{bottom:842.400000px;}
.y94_c00068{bottom:844.125000px;}
.y8f_c00068{bottom:845.850000px;}
.y90_c00068{bottom:846.720000px;}
.y8e_c00068{bottom:864.870000px;}
.y8a_c00068{bottom:865.725000px;}
.y8d_c00068{bottom:867.450000px;}
.y8c_c00068{bottom:868.320000px;}
.y89_c00068{bottom:869.190000px;}
.y87_c00068{bottom:870.045000px;}
.y8b_c00068{bottom:870.915000px;}
.y88_c00068{bottom:874.365000px;}
.yed_c00068{bottom:882.150000px;}
.yee_c00068{bottom:883.875000px;}
.y84_c00068{bottom:886.470000px;}
.y82_c00068{bottom:888.195000px;}
.y83_c00068{bottom:889.920000px;}
.y7e_c00068{bottom:892.515000px;}
.y85_c00068{bottom:893.370000px;}
.y7d_c00068{bottom:895.965000px;}
.y81_c00068{bottom:896.835000px;}
.y80_c00068{bottom:897.690000px;}
.y7f_c00068{bottom:898.560000px;}
.y86_c00068{bottom:905.475000px;}
.y7c_c00068{bottom:914.115000px;}
.y79_c00068{bottom:916.710000px;}
.y7b_c00068{bottom:917.565000px;}
.y76_c00068{bottom:918.435000px;}
.y77_c00068{bottom:919.290000px;}
.y7a_c00068{bottom:920.160000px;}
.y78_c00068{bottom:921.030000px;}
.y75_c00068{bottom:922.755000px;}
.y69_c00068{bottom:923.610000px;}
.y74_c00068{bottom:924.480000px;}
.y73_c00068{bottom:927.930000px;}
.y72_c00068{bottom:936.570000px;}
.y71_c00068{bottom:937.440000px;}
.y70_c00068{bottom:940.890000px;}
.y6e_c00068{bottom:941.760000px;}
.y6f_c00068{bottom:946.080000px;}
.y6c_c00068{bottom:946.950000px;}
.y6d_c00068{bottom:950.400000px;}
.y6a_c00068{bottom:951.270000px;}
.y6b_c00068{bottom:952.125000px;}
.y66_c00068{bottom:964.230000px;}
.y64_c00068{bottom:966.810000px;}
.y62_c00068{bottom:969.405000px;}
.y61_c00068{bottom:972.870000px;}
.y67_c00068{bottom:973.725000px;}
.y65_c00068{bottom:976.320000px;}
.y68_c00068{bottom:978.915000px;}
.y63_c00068{bottom:985.830000px;}
.y60_c00068{bottom:987.555000px;}
.y5e_c00068{bottom:989.280000px;}
.y5f_c00068{bottom:990.150000px;}
.y5d_c00068{bottom:995.325000px;}
.y5c_c00068{bottom:996.195000px;}
.y58_c00068{bottom:1036.800000px;}
.y59_c00068{bottom:1040.250000px;}
.y57_c00068{bottom:1044.570000px;}
.y5a_c00068{bottom:1045.440000px;}
.y5b_c00068{bottom:1046.310000px;}
.y56_c00068{bottom:1054.080000px;}
.y55_c00068{bottom:1054.950000px;}
.y52_c00068{bottom:1064.445000px;}
.y4e_c00068{bottom:1073.955000px;}
.y4d_c00068{bottom:1074.810000px;}
.y54_c00068{bottom:1075.680000px;}
.y50_c00068{bottom:1077.405000px;}
.y4f_c00068{bottom:1078.275000px;}
.y49_c00068{bottom:1080.000000px;}
.y53_c00068{bottom:1081.725000px;}
.y51_c00068{bottom:1082.595000px;}
.y4b_c00068{bottom:1083.450000px;}
.y4a_c00068{bottom:1084.320000px;}
.y4c_c00068{bottom:1085.190000px;}
.y48_c00068{bottom:1093.830000px;}
.y45_c00068{bottom:1105.050000px;}
.y47_c00068{bottom:1106.790000px;}
.y44_c00068{bottom:1107.645000px;}
.y46_c00068{bottom:1108.515000px;}
.y41_c00068{bottom:1109.370000px;}
.y42_c00068{bottom:1113.690000px;}
.y43_c00068{bottom:1115.430000px;}
.y40_c00068{bottom:1118.010000px;}
.y3f_c00068{bottom:1121.475000px;}
.y3e_c00068{bottom:1130.970000px;}
.y3c_c00068{bottom:1136.160000px;}
.y3b_c00068{bottom:1137.030000px;}
.y33_c00068{bottom:1139.610000px;}
.y35_c00068{bottom:1141.350000px;}
.y3d_c00068{bottom:1142.205000px;}
.y38_c00068{bottom:1143.075000px;}
.y34_c00068{bottom:1143.930000px;}
.y39_c00068{bottom:1144.800000px;}
.y3a_c00068{bottom:1145.670000px;}
.y32_c00068{bottom:1147.395000px;}
.y36_c00068{bottom:1148.250000px;}
.y37_c00068{bottom:1154.310000px;}
.y2f_c00068{bottom:1167.270000px;}
.y2e_c00068{bottom:1169.850000px;}
.y31_c00068{bottom:1171.590000px;}
.y2b_c00068{bottom:1174.170000px;}
.y2d_c00068{bottom:1175.910000px;}
.y30_c00068{bottom:1176.765000px;}
.y28_c00068{bottom:1177.635000px;}
.y2a_c00068{bottom:1179.360000px;}
.y2c_c00068{bottom:1180.230000px;}
.y29_c00068{bottom:1182.810000px;}
.y26_c00068{bottom:1198.365000px;}
.y27_c00068{bottom:1204.410000px;}
.y25_c00068{bottom:1205.280000px;}
.y23_c00068{bottom:1207.005000px;}
.y22_c00068{bottom:1209.600000px;}
.y24_c00068{bottom:1213.050000px;}
.yc_c00068{bottom:1214.790000px;}
.ya_c00068{bottom:1222.560000px;}
.y21_c00068{bottom:1224.285000px;}
.yb_c00068{bottom:1226.880000px;}
.y1e_c00068{bottom:1232.925000px;}
.y18_c00068{bottom:1238.970000px;}
.y17_c00068{bottom:1240.710000px;}
.y1d_c00068{bottom:1241.565000px;}
.y20_c00068{bottom:1242.435000px;}
.y1f_c00068{bottom:1243.290000px;}
.y1b_c00068{bottom:1244.160000px;}
.y1c_c00068{bottom:1245.030000px;}
.y1a_c00068{bottom:1245.885000px;}
.y19_c00068{bottom:1246.755000px;}
.y16_c00068{bottom:1251.930000px;}
.y15_c00068{bottom:1269.210000px;}
.y14_c00068{bottom:1272.675000px;}
.y13_c00068{bottom:1273.530000px;}
.y12_c00068{bottom:1274.400000px;}
.y11_c00068{bottom:1276.995000px;}
.y10_c00068{bottom:1281.315000px;}
.yf_c00068{bottom:1296.870000px;}
.ye_c00068{bottom:1302.045000px;}
.yd_c00068{bottom:1304.640000px;}
.y9_c00068{bottom:1364.250000px;}
.yf1_c00068{bottom:1377.210000px;}
.y7_c00068{bottom:1404.000000px;}
.y5_c00068{bottom:1404.870000px;}
.y6_c00068{bottom:1407.450000px;}
.y1_c00068{bottom:1409.190000px;}
.y4_c00068{bottom:1412.640000px;}
.y8_c00068{bottom:1417.830000px;}
.y3_c00068{bottom:1429.920000px;}
.y2_c00068{bottom:1435.965000px;}
.h4_c00068{height:3.110063px;}
.h9_c00068{height:5.399414px;}
.h3_c00068{height:6.209326px;}
.h19_c00068{height:9.340986px;}
.hf_c00068{height:12.418652px;}
.hb_c00068{height:15.550313px;}
.h2_c00068{height:18.681973px;}
.h2c_c00068{height:20.390063px;}
.h2b_c00068{height:21.759639px;}
.h1d_c00068{height:24.891299px;}
.h27_c00068{height:27.968965px;}
.h2a_c00068{height:31.100625px;}
.h29_c00068{height:34.232285px;}
.h26_c00068{height:37.309951px;}
.ha_c00068{height:40.441611px;}
.h22_c00068{height:43.519277px;}
.h17_c00068{height:46.650937px;}
.h13_c00068{height:49.782598px;}
.h7_c00068{height:52.860264px;}
.h14_c00068{height:55.991924px;}
.h15_c00068{height:59.069590px;}
.hd_c00068{height:62.201250px;}
.he_c00068{height:65.332910px;}
.h8_c00068{height:68.410576px;}
.h5_c00068{height:71.542236px;}
.hc_c00068{height:74.619902px;}
.h1b_c00068{height:77.751563px;}
.h20_c00068{height:80.883223px;}
.h6_c00068{height:83.960889px;}
.h12_c00068{height:87.092549px;}
.h16_c00068{height:90.170215px;}
.h28_c00068{height:93.301875px;}
.h10_c00068{height:96.433535px;}
.h1e_c00068{height:99.511201px;}
.h23_c00068{height:102.642861px;}
.h1a_c00068{height:105.720527px;}
.h11_c00068{height:108.852188px;}
.h21_c00068{height:111.983848px;}
.h18_c00068{height:115.061514px;}
.h1f_c00068{height:118.193174px;}
.h1c_c00068{height:124.402500px;}
.h24_c00068{height:130.611826px;}
.h25_c00068{height:161.712451px;}
.h2d_c00068{height:230.123027px;}
.h0_c00068{height:1517.190000px;}
.h1_c00068{height:1517.250000px;}
.w0_c00068{width:1079.130000px;}
.w1_c00068{width:1079.250000px;}
.x0_c00068{left:0.000000px;}
.xd_c00068{left:113.190000px;}
.xb_c00068{left:116.640000px;}
.xc_c00068{left:148.605000px;}
.x1_c00068{left:152.925000px;}
.x9_c00068{left:176.250000px;}
.xa_c00068{left:182.310000px;}
.x29_c00068{left:192.675000px;}
.xaf_c00068{left:199.590000px;}
.x92_c00068{left:206.490000px;}
.x44_c00068{left:208.230000px;}
.xa1_c00068{left:211.680000px;}
.x4d_c00068{left:213.405000px;}
.x9c_c00068{left:215.130000px;}
.x8c_c00068{left:216.870000px;}
.x6c_c00068{left:219.450000px;}
.x45_c00068{left:222.045000px;}
.x4e_c00068{left:224.639592px;}
.x11_c00068{left:230.685000px;}
.x46_c00068{left:234.150000px;}
.x4f_c00068{left:244.515000px;}
.x39_c00068{left:246.240000px;}
.x73_c00068{left:247.965000px;}
.x5e_c00068{left:249.690000px;}
.x2a_c00068{left:252.285000px;}
.x18_c00068{left:254.880000px;}
.x93_c00068{left:257.475000px;}
.x65_c00068{left:267.840000px;}
.x6d_c00068{left:271.290000px;}
.x19_c00068{left:275.610000px;}
.x94_c00068{left:279.075000px;}
.x8d_c00068{left:281.670000px;}
.xe_c00068{left:289.440150px;}
.x4_c00068{left:292.035000px;}
.x47_c00068{left:297.210000px;}
.xa2_c00068{left:298.950000px;}
.xa8_c00068{left:304.995000px;}
.x95_c00068{left:307.590000px;}
.x5f_c00068{left:309.315000px;}
.x3a_c00068{left:312.765000px;}
.x6e_c00068{left:314.490000px;}
.x2_c00068{left:321.405000px;}
.x6f_c00068{left:327.450000px;}
.x3b_c00068{left:330.045000px;}
.x66_c00068{left:335.235000px;}
.x96_c00068{left:336.960000px;}
.x50_c00068{left:343.005000px;}
.x1a_c00068{left:345.600000px;}
.x9d_c00068{left:351.645000px;}
.x2b_c00068{left:357.690000px;}
.x31_c00068{left:360.285000px;}
.xb9_c00068{left:362.010000px;}
.xa9_c00068{left:366.330000px;}
.x79_c00068{left:373.245000px;}
.x8e_c00068{left:378.435000px;}
.x48_c00068{left:388.800000px;}
.x12_c00068{left:390.525000px;}
.x86_c00068{left:393.120000px;}
.x9e_c00068{left:402.630000px;}
.xf_c00068{left:405.210000px;}
.x5_c00068{left:406.950000px;}
.x3c_c00068{left:410.400000px;}
.x51_c00068{left:415.590000px;}
.x97_c00068{left:417.315000px;}
.x32_c00068{left:419.040000px;}
.x74_c00068{left:427.680000px;}
.x33_c00068{left:429.405000px;}
.xb0_c00068{left:431.130000px;}
.xaa_c00068{left:433.725000px;}
.x49_c00068{left:440.640000px;}
.x67_c00068{left:444.960000px;}
.x8f_c00068{left:449.280000px;}
.x75_c00068{left:451.005000px;}
.x87_c00068{left:454.470000px;}
.x16_c00068{left:456.195000px;}
.x3d_c00068{left:459.645000px;}
.x52_c00068{left:461.370000px;}
.x82_c00068{left:467.430000px;}
.xb1_c00068{left:475.200000px;}
.x83_c00068{left:476.925000px;}
.x7a_c00068{left:478.650000px;}
.xa3_c00068{left:482.115000px;}
.x53_c00068{left:486.435000px;}
.x1b_c00068{left:489.885000px;}
.x60_c00068{left:492.480000px;}
.x4a_c00068{left:495.075000px;}
.x2c_c00068{left:502.845000px;}
.x9f_c00068{left:508.035000px;}
.x7b_c00068{left:509.760000px;}
.x61_c00068{left:511.485000px;}
.x98_c00068{left:513.210000px;}
.x90_c00068{left:516.675000px;}
.xa4_c00068{left:519.270000px;}
.xb4_c00068{left:531.360000px;}
.x54_c00068{left:535.680000px;}
.xab_c00068{left:537.405000px;}
.x1c_c00068{left:539.130000px;}
.x3e_c00068{left:543.450000px;}
.x84_c00068{left:546.045000px;}
.x34_c00068{left:547.770000px;}
.x13_c00068{left:550.365000px;}
.xba_c00068{left:552.090000px;}
.x68_c00068{left:554.685000px;}
.x3f_c00068{left:562.470000px;}
.x1d_c00068{left:564.195000px;}
.x2d_c00068{left:565.920000px;}
.xb5_c00068{left:571.110000px;}
.x3_c00068{left:575.430000px;}
.x7c_c00068{left:578.880000px;}
.x1e_c00068{left:582.330000px;}
.xac_c00068{left:584.925000px;}
.x17_c00068{left:590.115000px;}
.x7d_c00068{left:591.840000px;}
.x63_c00068{left:593.565000px;}
.x1f_c00068{left:601.350000px;}
.x6_c00068{left:603.075000px;}
.x55_c00068{left:609.120000px;}
.xa5_c00068{left:613.440000px;}
.x76_c00068{left:616.035000px;}
.x40_c00068{left:617.760000px;}
.x20_c00068{left:624.675000px;}
.xad_c00068{left:627.270000px;}
.xb6_c00068{left:628.995000px;}
.x85_c00068{left:631.590000px;}
.x14_c00068{left:635.040000px;}
.xa6_c00068{left:638.490000px;}
.x56_c00068{left:642.810000px;}
.x7_c00068{left:644.550000px;}
.x70_c00068{left:646.275000px;}
.x71_c00068{left:648.000000px;}
.x57_c00068{left:656.640000px;}
.x10_c00068{left:658.365000px;}
.x21_c00068{left:665.280000px;}
.x99_c00068{left:669.600000px;}
.x4b_c00068{left:672.195000px;}
.x7e_c00068{left:673.920000px;}
.x35_c00068{left:675.645000px;}
.x2e_c00068{left:677.370000px;}
.x22_c00068{left:681.690000px;}
.x88_c00068{left:683.430000px;}
.x23_c00068{left:692.925000px;}
.x41_c00068{left:696.390000px;}
.x58_c00068{left:699.840000px;}
.x91_c00068{left:702.435000px;}
.x2f_c00068{left:704.160000px;}
.x7f_c00068{left:708.480000px;}
.x36_c00068{left:710.205000px;}
.x77_c00068{left:713.670000px;}
.x64_c00068{left:715.395000px;}
.x59_c00068{left:719.715000px;}
.xbb_c00068{left:721.440000px;}
.x42_c00068{left:725.760000px;}
.x89_c00068{left:730.950000px;}
.xb7_c00068{left:735.270000px;}
.x69_c00068{left:738.720000px;}
.x24_c00068{left:740.445000px;}
.x9a_c00068{left:742.170000px;}
.x5a_c00068{left:744.765000px;}
.x62_c00068{left:748.230000px;}
.x25_c00068{left:757.725000px;}
.x72_c00068{left:760.320000px;}
.xb2_c00068{left:762.045000px;}
.xae_c00068{left:764.640000px;}
.x15_c00068{left:768.960000px;}
.xa0_c00068{left:773.280000px;}
.x6a_c00068{left:777.600000px;}
.x5b_c00068{left:800.070000px;}
.xa7_c00068{left:802.650000px;}
.x26_c00068{left:804.390000px;}
.x80_c00068{left:807.840000px;}
.x30_c00068{left:810.435000px;}
.x5c_c00068{left:813.030000px;}
.xbc_c00068{left:814.755000px;}
.x4c_c00068{left:819.930000px;}
.x27_c00068{left:823.395000px;}
.x6b_c00068{left:825.120000px;}
.xb8_c00068{left:826.845000px;}
.xbd_c00068{left:831.165000px;}
.x8_c00068{left:833.760000px;}
.x78_c00068{left:836.355000px;}
.x43_c00068{left:838.080000px;}
.x28_c00068{left:841.530000px;}
.x37_c00068{left:854.490000px;}
.x9b_c00068{left:863.130000px;}
.xb3_c00068{left:864.870000px;}
.x81_c00068{left:867.450000px;}
.x38_c00068{left:879.555000px;}
.x8a_c00068{left:894.240000px;}
.xbe_c00068{left:896.835000px;}
.x8b_c00068{left:905.475000px;}
.x5d_c00068{left:912.390000px;}
.xc1_c00068{left:917.565000px;}
.xc0_c00068{left:919.290000px;}
.xbf_c00068{left:922.755000px;}
.xc2_c00068{left:927.930000px;}
.xc4_c00068{left:933.990000px;}
.xc3_c00068{left:952.125000px;}
.xc5_c00068{left:1021.245000px;}
@media print{
.v1_c00068{vertical-align:-30.720000pt;}
.v0_c00068{vertical-align:0.000000pt;}
.v2_c00068{vertical-align:15.360000pt;}
.ls1_c00068{letter-spacing:0.000000pt;}
.ls0_c00068{letter-spacing:6.899093pt;}
.ws0_c00068{word-spacing:-42.970987pt;}
.ws1_c00068{word-spacing:0.000000pt;}
._0_c00068{width:4.655680pt;}
.fs2_c00068{font-size:3.072000pt;}
.fs7_c00068{font-size:5.333333pt;}
.fs1_c00068{font-size:6.133333pt;}
.fs17_c00068{font-size:9.226667pt;}
.fsd_c00068{font-size:12.266667pt;}
.fs9_c00068{font-size:15.360000pt;}
.fs0_c00068{font-size:18.453333pt;}
.fs29_c00068{font-size:21.493333pt;}
.fs1b_c00068{font-size:24.586667pt;}
.fs25_c00068{font-size:27.626667pt;}
.fs28_c00068{font-size:30.720000pt;}
.fs27_c00068{font-size:33.813333pt;}
.fs24_c00068{font-size:36.853333pt;}
.fs8_c00068{font-size:39.946667pt;}
.fs20_c00068{font-size:42.986667pt;}
.fs15_c00068{font-size:46.080000pt;}
.fs11_c00068{font-size:49.173333pt;}
.fs5_c00068{font-size:52.213333pt;}
.fs12_c00068{font-size:55.306667pt;}
.fs13_c00068{font-size:58.346667pt;}
.fsb_c00068{font-size:61.440000pt;}
.fsc_c00068{font-size:64.533333pt;}
.fs6_c00068{font-size:67.573333pt;}
.fs3_c00068{font-size:70.666667pt;}
.fsa_c00068{font-size:73.706667pt;}
.fs19_c00068{font-size:76.800000pt;}
.fs1e_c00068{font-size:79.893333pt;}
.fs4_c00068{font-size:82.933333pt;}
.fs10_c00068{font-size:86.026667pt;}
.fs14_c00068{font-size:89.066667pt;}
.fs26_c00068{font-size:92.160000pt;}
.fse_c00068{font-size:95.253333pt;}
.fs1c_c00068{font-size:98.293333pt;}
.fs21_c00068{font-size:101.386667pt;}
.fs18_c00068{font-size:104.426667pt;}
.fsf_c00068{font-size:107.520000pt;}
.fs1f_c00068{font-size:110.613333pt;}
.fs16_c00068{font-size:113.653333pt;}
.fs1d_c00068{font-size:116.746667pt;}
.fs1a_c00068{font-size:122.880000pt;}
.fs22_c00068{font-size:129.013333pt;}
.fs23_c00068{font-size:159.733333pt;}
.fs2a_c00068{font-size:227.306667pt;}
.y0_c00068{bottom:0.000000pt;}
.yf0_c00068{bottom:446.213333pt;}
.yef_c00068{bottom:470.786667pt;}
.yec_c00068{bottom:516.093333pt;}
.yea_c00068{bottom:529.920000pt;}
.yeb_c00068{bottom:532.986667pt;}
.ye7_c00068{bottom:542.973333pt;}
.ye8_c00068{bottom:544.506667pt;}
.ye6_c00068{bottom:549.893333pt;}
.ye5_c00068{bottom:553.733333pt;}
.ye4_c00068{bottom:559.866667pt;}
.ye9_c00068{bottom:562.173333pt;}
.ye3_c00068{bottom:567.546667pt;}
.ye2_c00068{bottom:569.093333pt;}
.ye0_c00068{bottom:570.626667pt;}
.ydf_c00068{bottom:571.386667pt;}
.ye1_c00068{bottom:574.466667pt;}
.yde_c00068{bottom:576.000000pt;}
.ydd_c00068{bottom:586.746667pt;}
.ydb_c00068{bottom:588.293333pt;}
.ydc_c00068{bottom:592.893333pt;}
.yd7_c00068{bottom:593.666667pt;}
.yd9_c00068{bottom:595.973333pt;}
.yda_c00068{bottom:596.733333pt;}
.yd8_c00068{bottom:598.266667pt;}
.yd4_c00068{bottom:599.040000pt;}
.yd5_c00068{bottom:599.813333pt;}
.yd6_c00068{bottom:602.880000pt;}
.yd3_c00068{bottom:605.186667pt;}
.yd2_c00068{bottom:612.093333pt;}
.yd1_c00068{bottom:619.013333pt;}
.yce_c00068{bottom:619.773333pt;}
.yd0_c00068{bottom:621.306667pt;}
.ycf_c00068{bottom:622.853333pt;}
.ycc_c00068{bottom:624.386667pt;}
.ycd_c00068{bottom:627.453333pt;}
.yca_c00068{bottom:635.133333pt;}
.yc7_c00068{bottom:635.906667pt;}
.yc8_c00068{bottom:638.213333pt;}
.yc9_c00068{bottom:638.973333pt;}
.yc6_c00068{bottom:639.746667pt;}
.ycb_c00068{bottom:640.506667pt;}
.yc5_c00068{bottom:641.280000pt;}
.yc4_c00068{bottom:642.053333pt;}
.yc3_c00068{bottom:642.813333pt;}
.yc1_c00068{bottom:653.573333pt;}
.yc0_c00068{bottom:655.106667pt;}
.yc2_c00068{bottom:655.866667pt;}
.ybe_c00068{bottom:657.413333pt;}
.ybc_c00068{bottom:658.946667pt;}
.ybd_c00068{bottom:659.706667pt;}
.ybf_c00068{bottom:660.480000pt;}
.ybb_c00068{bottom:663.546667pt;}
.yb9_c00068{bottom:664.320000pt;}
.yba_c00068{bottom:666.626667pt;}
.yb7_c00068{bottom:678.146667pt;}
.yb8_c00068{bottom:681.213333pt;}
.yb6_c00068{bottom:682.746667pt;}
.yb2_c00068{bottom:684.293333pt;}
.yb1_c00068{bottom:685.053333pt;}
.yb4_c00068{bottom:685.826667pt;}
.yb5_c00068{bottom:686.586667pt;}
.yb3_c00068{bottom:688.133333pt;}
.yb0_c00068{bottom:692.733333pt;}
.yae_c00068{bottom:698.106667pt;}
.yad_c00068{bottom:699.653333pt;}
.yac_c00068{bottom:700.413333pt;}
.yab_c00068{bottom:701.186667pt;}
.yaa_c00068{bottom:702.720000pt;}
.ya9_c00068{bottom:703.493333pt;}
.yaf_c00068{bottom:704.253333pt;}
.ya8_c00068{bottom:705.026667pt;}
.ya6_c00068{bottom:705.786667pt;}
.ya7_c00068{bottom:706.560000pt;}
.ya3_c00068{bottom:708.093333pt;}
.ya5_c00068{bottom:708.866667pt;}
.ya4_c00068{bottom:711.173333pt;}
.ya2_c00068{bottom:714.240000pt;}
.ya0_c00068{bottom:721.920000pt;}
.y9e_c00068{bottom:723.453333pt;}
.y9d_c00068{bottom:724.226667pt;}
.y9c_c00068{bottom:724.986667pt;}
.y9b_c00068{bottom:726.533333pt;}
.y99_c00068{bottom:728.826667pt;}
.y9f_c00068{bottom:729.600000pt;}
.y98_c00068{bottom:730.373333pt;}
.ya1_c00068{bottom:733.440000pt;}
.y9a_c00068{bottom:734.213333pt;}
.y95_c00068{bottom:743.426667pt;}
.y97_c00068{bottom:744.186667pt;}
.y93_c00068{bottom:744.960000pt;}
.y92_c00068{bottom:747.266667pt;}
.y91_c00068{bottom:748.026667pt;}
.y96_c00068{bottom:748.800000pt;}
.y94_c00068{bottom:750.333333pt;}
.y8f_c00068{bottom:751.866667pt;}
.y90_c00068{bottom:752.640000pt;}
.y8e_c00068{bottom:768.773333pt;}
.y8a_c00068{bottom:769.533333pt;}
.y8d_c00068{bottom:771.066667pt;}
.y8c_c00068{bottom:771.840000pt;}
.y89_c00068{bottom:772.613333pt;}
.y87_c00068{bottom:773.373333pt;}
.y8b_c00068{bottom:774.146667pt;}
.y88_c00068{bottom:777.213333pt;}
.yed_c00068{bottom:784.133333pt;}
.yee_c00068{bottom:785.666667pt;}
.y84_c00068{bottom:787.973333pt;}
.y82_c00068{bottom:789.506667pt;}
.y83_c00068{bottom:791.040000pt;}
.y7e_c00068{bottom:793.346667pt;}
.y85_c00068{bottom:794.106667pt;}
.y7d_c00068{bottom:796.413333pt;}
.y81_c00068{bottom:797.186667pt;}
.y80_c00068{bottom:797.946667pt;}
.y7f_c00068{bottom:798.720000pt;}
.y86_c00068{bottom:804.866667pt;}
.y7c_c00068{bottom:812.546667pt;}
.y79_c00068{bottom:814.853333pt;}
.y7b_c00068{bottom:815.613333pt;}
.y76_c00068{bottom:816.386667pt;}
.y77_c00068{bottom:817.146667pt;}
.y7a_c00068{bottom:817.920000pt;}
.y78_c00068{bottom:818.693333pt;}
.y75_c00068{bottom:820.226667pt;}
.y69_c00068{bottom:820.986667pt;}
.y74_c00068{bottom:821.760000pt;}
.y73_c00068{bottom:824.826667pt;}
.y72_c00068{bottom:832.506667pt;}
.y71_c00068{bottom:833.280000pt;}
.y70_c00068{bottom:836.346667pt;}
.y6e_c00068{bottom:837.120000pt;}
.y6f_c00068{bottom:840.960000pt;}
.y6c_c00068{bottom:841.733333pt;}
.y6d_c00068{bottom:844.800000pt;}
.y6a_c00068{bottom:845.573333pt;}
.y6b_c00068{bottom:846.333333pt;}
.y66_c00068{bottom:857.093333pt;}
.y64_c00068{bottom:859.386667pt;}
.y62_c00068{bottom:861.693333pt;}
.y61_c00068{bottom:864.773333pt;}
.y67_c00068{bottom:865.533333pt;}
.y65_c00068{bottom:867.840000pt;}
.y68_c00068{bottom:870.146667pt;}
.y63_c00068{bottom:876.293333pt;}
.y60_c00068{bottom:877.826667pt;}
.y5e_c00068{bottom:879.360000pt;}
.y5f_c00068{bottom:880.133333pt;}
.y5d_c00068{bottom:884.733333pt;}
.y5c_c00068{bottom:885.506667pt;}
.y58_c00068{bottom:921.600000pt;}
.y59_c00068{bottom:924.666667pt;}
.y57_c00068{bottom:928.506667pt;}
.y5a_c00068{bottom:929.280000pt;}
.y5b_c00068{bottom:930.053333pt;}
.y56_c00068{bottom:936.960000pt;}
.y55_c00068{bottom:937.733333pt;}
.y52_c00068{bottom:946.173333pt;}
.y4e_c00068{bottom:954.626667pt;}
.y4d_c00068{bottom:955.386667pt;}
.y54_c00068{bottom:956.160000pt;}
.y50_c00068{bottom:957.693333pt;}
.y4f_c00068{bottom:958.466667pt;}
.y49_c00068{bottom:960.000000pt;}
.y53_c00068{bottom:961.533333pt;}
.y51_c00068{bottom:962.306667pt;}
.y4b_c00068{bottom:963.066667pt;}
.y4a_c00068{bottom:963.840000pt;}
.y4c_c00068{bottom:964.613333pt;}
.y48_c00068{bottom:972.293333pt;}
.y45_c00068{bottom:982.266667pt;}
.y47_c00068{bottom:983.813333pt;}
.y44_c00068{bottom:984.573333pt;}
.y46_c00068{bottom:985.346667pt;}
.y41_c00068{bottom:986.106667pt;}
.y42_c00068{bottom:989.946667pt;}
.y43_c00068{bottom:991.493333pt;}
.y40_c00068{bottom:993.786667pt;}
.y3f_c00068{bottom:996.866667pt;}
.y3e_c00068{bottom:1005.306667pt;}
.y3c_c00068{bottom:1009.920000pt;}
.y3b_c00068{bottom:1010.693333pt;}
.y33_c00068{bottom:1012.986667pt;}
.y35_c00068{bottom:1014.533333pt;}
.y3d_c00068{bottom:1015.293333pt;}
.y38_c00068{bottom:1016.066667pt;}
.y34_c00068{bottom:1016.826667pt;}
.y39_c00068{bottom:1017.600000pt;}
.y3a_c00068{bottom:1018.373333pt;}
.y32_c00068{bottom:1019.906667pt;}
.y36_c00068{bottom:1020.666667pt;}
.y37_c00068{bottom:1026.053333pt;}
.y2f_c00068{bottom:1037.573333pt;}
.y2e_c00068{bottom:1039.866667pt;}
.y31_c00068{bottom:1041.413333pt;}
.y2b_c00068{bottom:1043.706667pt;}
.y2d_c00068{bottom:1045.253333pt;}
.y30_c00068{bottom:1046.013333pt;}
.y28_c00068{bottom:1046.786667pt;}
.y2a_c00068{bottom:1048.320000pt;}
.y2c_c00068{bottom:1049.093333pt;}
.y29_c00068{bottom:1051.386667pt;}
.y26_c00068{bottom:1065.213333pt;}
.y27_c00068{bottom:1070.586667pt;}
.y25_c00068{bottom:1071.360000pt;}
.y23_c00068{bottom:1072.893333pt;}
.y22_c00068{bottom:1075.200000pt;}
.y24_c00068{bottom:1078.266667pt;}
.yc_c00068{bottom:1079.813333pt;}
.ya_c00068{bottom:1086.720000pt;}
.y21_c00068{bottom:1088.253333pt;}
.yb_c00068{bottom:1090.560000pt;}
.y1e_c00068{bottom:1095.933333pt;}
.y18_c00068{bottom:1101.306667pt;}
.y17_c00068{bottom:1102.853333pt;}
.y1d_c00068{bottom:1103.613333pt;}
.y20_c00068{bottom:1104.386667pt;}
.y1f_c00068{bottom:1105.146667pt;}
.y1b_c00068{bottom:1105.920000pt;}
.y1c_c00068{bottom:1106.693333pt;}
.y1a_c00068{bottom:1107.453333pt;}
.y19_c00068{bottom:1108.226667pt;}
.y16_c00068{bottom:1112.826667pt;}
.y15_c00068{bottom:1128.186667pt;}
.y14_c00068{bottom:1131.266667pt;}
.y13_c00068{bottom:1132.026667pt;}
.y12_c00068{bottom:1132.800000pt;}
.y11_c00068{bottom:1135.106667pt;}
.y10_c00068{bottom:1138.946667pt;}
.yf_c00068{bottom:1152.773333pt;}
.ye_c00068{bottom:1157.373333pt;}
.yd_c00068{bottom:1159.680000pt;}
.y9_c00068{bottom:1212.666667pt;}
.yf1_c00068{bottom:1224.186667pt;}
.y7_c00068{bottom:1248.000000pt;}
.y5_c00068{bottom:1248.773333pt;}
.y6_c00068{bottom:1251.066667pt;}
.y1_c00068{bottom:1252.613333pt;}
.y4_c00068{bottom:1255.680000pt;}
.y8_c00068{bottom:1260.293333pt;}
.y3_c00068{bottom:1271.040000pt;}
.y2_c00068{bottom:1276.413333pt;}
.h4_c00068{height:2.764500pt;}
.h9_c00068{height:4.799479pt;}
.h3_c00068{height:5.519401pt;}
.h19_c00068{height:8.303099pt;}
.hf_c00068{height:11.038802pt;}
.hb_c00068{height:13.822500pt;}
.h2_c00068{height:16.606198pt;}
.h2c_c00068{height:18.124500pt;}
.h2b_c00068{height:19.341901pt;}
.h1d_c00068{height:22.125599pt;}
.h27_c00068{height:24.861302pt;}
.h2a_c00068{height:27.645000pt;}
.h29_c00068{height:30.428698pt;}
.h26_c00068{height:33.164401pt;}
.ha_c00068{height:35.948099pt;}
.h22_c00068{height:38.683802pt;}
.h17_c00068{height:41.467500pt;}
.h13_c00068{height:44.251198pt;}
.h7_c00068{height:46.986901pt;}
.h14_c00068{height:49.770599pt;}
.h15_c00068{height:52.506302pt;}
.hd_c00068{height:55.290000pt;}
.he_c00068{height:58.073698pt;}
.h8_c00068{height:60.809401pt;}
.h5_c00068{height:63.593099pt;}
.hc_c00068{height:66.328802pt;}
.h1b_c00068{height:69.112500pt;}
.h20_c00068{height:71.896198pt;}
.h6_c00068{height:74.631901pt;}
.h12_c00068{height:77.415599pt;}
.h16_c00068{height:80.151302pt;}
.h28_c00068{height:82.935000pt;}
.h10_c00068{height:85.718698pt;}
.h1e_c00068{height:88.454401pt;}
.h23_c00068{height:91.238099pt;}
.h1a_c00068{height:93.973802pt;}
.h11_c00068{height:96.757500pt;}
.h21_c00068{height:99.541198pt;}
.h18_c00068{height:102.276901pt;}
.h1f_c00068{height:105.060599pt;}
.h1c_c00068{height:110.580000pt;}
.h24_c00068{height:116.099401pt;}
.h25_c00068{height:143.744401pt;}
.h2d_c00068{height:204.553802pt;}
.h0_c00068{height:1348.613333pt;}
.h1_c00068{height:1348.666667pt;}
.w0_c00068{width:959.226667pt;}
.w1_c00068{width:959.333333pt;}
.x0_c00068{left:0.000000pt;}
.xd_c00068{left:100.613333pt;}
.xb_c00068{left:103.680000pt;}
.xc_c00068{left:132.093333pt;}
.x1_c00068{left:135.933333pt;}
.x9_c00068{left:156.666667pt;}
.xa_c00068{left:162.053333pt;}
.x29_c00068{left:171.266667pt;}
.xaf_c00068{left:177.413333pt;}
.x92_c00068{left:183.546667pt;}
.x44_c00068{left:185.093333pt;}
.xa1_c00068{left:188.160000pt;}
.x4d_c00068{left:189.693333pt;}
.x9c_c00068{left:191.226667pt;}
.x8c_c00068{left:192.773333pt;}
.x6c_c00068{left:195.066667pt;}
.x45_c00068{left:197.373333pt;}
.x4e_c00068{left:199.679637pt;}
.x11_c00068{left:205.053333pt;}
.x46_c00068{left:208.133333pt;}
.x4f_c00068{left:217.346667pt;}
.x39_c00068{left:218.880000pt;}
.x73_c00068{left:220.413333pt;}
.x5e_c00068{left:221.946667pt;}
.x2a_c00068{left:224.253333pt;}
.x18_c00068{left:226.560000pt;}
.x93_c00068{left:228.866667pt;}
.x65_c00068{left:238.080000pt;}
.x6d_c00068{left:241.146667pt;}
.x19_c00068{left:244.986667pt;}
.x94_c00068{left:248.066667pt;}
.x8d_c00068{left:250.373333pt;}
.xe_c00068{left:257.280133pt;}
.x4_c00068{left:259.586667pt;}
.x47_c00068{left:264.186667pt;}
.xa2_c00068{left:265.733333pt;}
.xa8_c00068{left:271.106667pt;}
.x95_c00068{left:273.413333pt;}
.x5f_c00068{left:274.946667pt;}
.x3a_c00068{left:278.013333pt;}
.x6e_c00068{left:279.546667pt;}
.x2_c00068{left:285.693333pt;}
.x6f_c00068{left:291.066667pt;}
.x3b_c00068{left:293.373333pt;}
.x66_c00068{left:297.986667pt;}
.x96_c00068{left:299.520000pt;}
.x50_c00068{left:304.893333pt;}
.x1a_c00068{left:307.200000pt;}
.x9d_c00068{left:312.573333pt;}
.x2b_c00068{left:317.946667pt;}
.x31_c00068{left:320.253333pt;}
.xb9_c00068{left:321.786667pt;}
.xa9_c00068{left:325.626667pt;}
.x79_c00068{left:331.773333pt;}
.x8e_c00068{left:336.386667pt;}
.x48_c00068{left:345.600000pt;}
.x12_c00068{left:347.133333pt;}
.x86_c00068{left:349.440000pt;}
.x9e_c00068{left:357.893333pt;}
.xf_c00068{left:360.186667pt;}
.x5_c00068{left:361.733333pt;}
.x3c_c00068{left:364.800000pt;}
.x51_c00068{left:369.413333pt;}
.x97_c00068{left:370.946667pt;}
.x32_c00068{left:372.480000pt;}
.x74_c00068{left:380.160000pt;}
.x33_c00068{left:381.693333pt;}
.xb0_c00068{left:383.226667pt;}
.xaa_c00068{left:385.533333pt;}
.x49_c00068{left:391.680000pt;}
.x67_c00068{left:395.520000pt;}
.x8f_c00068{left:399.360000pt;}
.x75_c00068{left:400.893333pt;}
.x87_c00068{left:403.973333pt;}
.x16_c00068{left:405.506667pt;}
.x3d_c00068{left:408.573333pt;}
.x52_c00068{left:410.106667pt;}
.x82_c00068{left:415.493333pt;}
.xb1_c00068{left:422.400000pt;}
.x83_c00068{left:423.933333pt;}
.x7a_c00068{left:425.466667pt;}
.xa3_c00068{left:428.546667pt;}
.x53_c00068{left:432.386667pt;}
.x1b_c00068{left:435.453333pt;}
.x60_c00068{left:437.760000pt;}
.x4a_c00068{left:440.066667pt;}
.x2c_c00068{left:446.973333pt;}
.x9f_c00068{left:451.586667pt;}
.x7b_c00068{left:453.120000pt;}
.x61_c00068{left:454.653333pt;}
.x98_c00068{left:456.186667pt;}
.x90_c00068{left:459.266667pt;}
.xa4_c00068{left:461.573333pt;}
.xb4_c00068{left:472.320000pt;}
.x54_c00068{left:476.160000pt;}
.xab_c00068{left:477.693333pt;}
.x1c_c00068{left:479.226667pt;}
.x3e_c00068{left:483.066667pt;}
.x84_c00068{left:485.373333pt;}
.x34_c00068{left:486.906667pt;}
.x13_c00068{left:489.213333pt;}
.xba_c00068{left:490.746667pt;}
.x68_c00068{left:493.053333pt;}
.x3f_c00068{left:499.973333pt;}
.x1d_c00068{left:501.506667pt;}
.x2d_c00068{left:503.040000pt;}
.xb5_c00068{left:507.653333pt;}
.x3_c00068{left:511.493333pt;}
.x7c_c00068{left:514.560000pt;}
.x1e_c00068{left:517.626667pt;}
.xac_c00068{left:519.933333pt;}
.x17_c00068{left:524.546667pt;}
.x7d_c00068{left:526.080000pt;}
.x63_c00068{left:527.613333pt;}
.x1f_c00068{left:534.533333pt;}
.x6_c00068{left:536.066667pt;}
.x55_c00068{left:541.440000pt;}
.xa5_c00068{left:545.280000pt;}
.x76_c00068{left:547.586667pt;}
.x40_c00068{left:549.120000pt;}
.x20_c00068{left:555.266667pt;}
.xad_c00068{left:557.573333pt;}
.xb6_c00068{left:559.106667pt;}
.x85_c00068{left:561.413333pt;}
.x14_c00068{left:564.480000pt;}
.xa6_c00068{left:567.546667pt;}
.x56_c00068{left:571.386667pt;}
.x7_c00068{left:572.933333pt;}
.x70_c00068{left:574.466667pt;}
.x71_c00068{left:576.000000pt;}
.x57_c00068{left:583.680000pt;}
.x10_c00068{left:585.213333pt;}
.x21_c00068{left:591.360000pt;}
.x99_c00068{left:595.200000pt;}
.x4b_c00068{left:597.506667pt;}
.x7e_c00068{left:599.040000pt;}
.x35_c00068{left:600.573333pt;}
.x2e_c00068{left:602.106667pt;}
.x22_c00068{left:605.946667pt;}
.x88_c00068{left:607.493333pt;}
.x23_c00068{left:615.933333pt;}
.x41_c00068{left:619.013333pt;}
.x58_c00068{left:622.080000pt;}
.x91_c00068{left:624.386667pt;}
.x2f_c00068{left:625.920000pt;}
.x7f_c00068{left:629.760000pt;}
.x36_c00068{left:631.293333pt;}
.x77_c00068{left:634.373333pt;}
.x64_c00068{left:635.906667pt;}
.x59_c00068{left:639.746667pt;}
.xbb_c00068{left:641.280000pt;}
.x42_c00068{left:645.120000pt;}
.x89_c00068{left:649.733333pt;}
.xb7_c00068{left:653.573333pt;}
.x69_c00068{left:656.640000pt;}
.x24_c00068{left:658.173333pt;}
.x9a_c00068{left:659.706667pt;}
.x5a_c00068{left:662.013333pt;}
.x62_c00068{left:665.093333pt;}
.x25_c00068{left:673.533333pt;}
.x72_c00068{left:675.840000pt;}
.xb2_c00068{left:677.373333pt;}
.xae_c00068{left:679.680000pt;}
.x15_c00068{left:683.520000pt;}
.xa0_c00068{left:687.360000pt;}
.x6a_c00068{left:691.200000pt;}
.x5b_c00068{left:711.173333pt;}
.xa7_c00068{left:713.466667pt;}
.x26_c00068{left:715.013333pt;}
.x80_c00068{left:718.080000pt;}
.x30_c00068{left:720.386667pt;}
.x5c_c00068{left:722.693333pt;}
.xbc_c00068{left:724.226667pt;}
.x4c_c00068{left:728.826667pt;}
.x27_c00068{left:731.906667pt;}
.x6b_c00068{left:733.440000pt;}
.xb8_c00068{left:734.973333pt;}
.xbd_c00068{left:738.813333pt;}
.x8_c00068{left:741.120000pt;}
.x78_c00068{left:743.426667pt;}
.x43_c00068{left:744.960000pt;}
.x28_c00068{left:748.026667pt;}
.x37_c00068{left:759.546667pt;}
.x9b_c00068{left:767.226667pt;}
.xb3_c00068{left:768.773333pt;}
.x81_c00068{left:771.066667pt;}
.x38_c00068{left:781.826667pt;}
.x8a_c00068{left:794.880000pt;}
.xbe_c00068{left:797.186667pt;}
.x8b_c00068{left:804.866667pt;}
.x5d_c00068{left:811.013333pt;}
.xc1_c00068{left:815.613333pt;}
.xc0_c00068{left:817.146667pt;}
.xbf_c00068{left:820.226667pt;}
.xc2_c00068{left:824.826667pt;}
.xc4_c00068{left:830.213333pt;}
.xc3_c00068{left:846.333333pt;}
.xc5_c00068{left:907.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb0d907d27a8bb2a2acab4e4.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.109863;font-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_c00069{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me_c00069{transform:matrix(0.032225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032225,0.000000,0.000000,0.250000,0,0);}
.md_c00069{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m10_c00069{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m9_c00069{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc_c00069{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);}
.ma_c00069{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00069{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00069{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c00069{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00069{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00069{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);}
.m2_c00069{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);}
.m12_c00069{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5_c00069{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mb_c00069{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m0_c00069{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m13_c00069{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m11_c00069{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1_c00069{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.v0_c00069{vertical-align:0.000000px;}
.v1_c00069{vertical-align:17.280000px;}
.ls1_c00069{letter-spacing:0.000000px;}
.ls0_c00069{letter-spacing:7.791480px;}
.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;}
.fsb_c00069{font-size:3.456000px;}
.fs5_c00069{font-size:6.000000px;}
.fse_c00069{font-size:6.900000px;}
.fs9_c00069{font-size:10.380000px;}
.fsd_c00069{font-size:17.280000px;}
.fs6_c00069{font-size:20.760000px;}
.fs0_c00069{font-size:31.080000px;}
.fs1_c00069{font-size:34.560000px;}
.fsc_c00069{font-size:44.940000px;}
.fs4_c00069{font-size:51.840000px;}
.fs2_c00069{font-size:55.320000px;}
.fs3_c00069{font-size:58.740000px;}
.fs8_c00069{font-size:65.640000px;}
.fs7_c00069{font-size:72.600000px;}
.fsa_c00069{font-size:96.780000px;}
.y0_c00069{bottom:0.000000px;}
.y11_c00069{bottom:921.885000px;}
.y12_c00069{bottom:922.755000px;}
.yf_c00069{bottom:926.205000px;}
.y10_c00069{bottom:929.670000px;}
.ye_c00069{bottom:949.530000px;}
.yd_c00069{bottom:1216.515000px;}
.yc_c00069{bottom:1227.750000px;}
.yb_c00069{bottom:1228.605000px;}
.ya_c00069{bottom:1232.925000px;}
.y9_c00069{bottom:1327.110000px;}
.y8_c00069{bottom:1344.390000px;}
.y7_c00069{bottom:1374.630000px;}
.y6_c00069{bottom:1403.130000px;}
.y4_c00069{bottom:1407.450000px;}
.y3_c00069{bottom:1408.320000px;}
.y5_c00069{bottom:1409.190000px;}
.y2_c00069{bottom:1435.110000px;}
.y1_c00069{bottom:1445.475000px;}
.hd_c00069{height:3.110063px;}
.h7_c00069{height:5.399414px;}
.h11_c00069{height:6.209326px;}
.hb_c00069{height:9.340986px;}
.h10_c00069{height:15.550313px;}
.h8_c00069{height:18.681973px;}
.hf_c00069{height:20.390063px;}
.h2_c00069{height:27.968965px;}
.h3_c00069{height:31.100625px;}
.he_c00069{height:40.441611px;}
.h6_c00069{height:46.650937px;}
.h4_c00069{height:49.782598px;}
.h5_c00069{height:52.860264px;}
.ha_c00069{height:59.069590px;}
.h9_c00069{height:65.332910px;}
.hc_c00069{height:87.092549px;}
.h1_c00069{height:1503.000000px;}
.h0_c00069{height:1503.360000px;}
.w0_c00069{width:1094.685000px;}
.w1_c00069{width:1095.000000px;}
.x0_c00069{left:0.000000px;}
.x13_c00069{left:56.160000px;}
.x12_c00069{left:59.610000px;}
.x11_c00069{left:101.955000px;}
.x10_c00069{left:104.550000px;}
.xe_c00069{left:108.870000px;}
.xf_c00069{left:113.190000px;}
.x14_c00069{left:134.790000px;}
.xd_c00069{left:158.115000px;}
.x2_c00069{left:408.675000px;}
.x1_c00069{left:417.315000px;}
.x3_c00069{left:436.320000px;}
.x4_c00069{left:458.790000px;}
.x5_c00069{left:496.800000px;}
.x6_c00069{left:519.270000px;}
.x7_c00069{left:573.690000px;}
.x8_c00069{left:591.840000px;}
.x9_c00069{left:614.310000px;}
.xa_c00069{left:632.445000px;}
.xb_c00069{left:840.675000px;}
.xc_c00069{left:850.170000px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.v1_c00069{vertical-align:15.360000pt;}
.ls1_c00069{letter-spacing:0.000000pt;}
.ls0_c00069{letter-spacing:6.925760pt;}
.ws0_c00069{word-spacing:0.000000pt;}
.fsb_c00069{font-size:3.072000pt;}
.fs5_c00069{font-size:5.333333pt;}
.fse_c00069{font-size:6.133333pt;}
.fs9_c00069{font-size:9.226667pt;}
.fsd_c00069{font-size:15.360000pt;}
.fs6_c00069{font-size:18.453333pt;}
.fs0_c00069{font-size:27.626667pt;}
.fs1_c00069{font-size:30.720000pt;}
.fsc_c00069{font-size:39.946667pt;}
.fs4_c00069{font-size:46.080000pt;}
.fs2_c00069{font-size:49.173333pt;}
.fs3_c00069{font-size:52.213333pt;}
.fs8_c00069{font-size:58.346667pt;}
.fs7_c00069{font-size:64.533333pt;}
.fsa_c00069{font-size:86.026667pt;}
.y0_c00069{bottom:0.000000pt;}
.y11_c00069{bottom:819.453333pt;}
.y12_c00069{bottom:820.226667pt;}
.yf_c00069{bottom:823.293333pt;}
.y10_c00069{bottom:826.373333pt;}
.ye_c00069{bottom:844.026667pt;}
.yd_c00069{bottom:1081.346667pt;}
.yc_c00069{bottom:1091.333333pt;}
.yb_c00069{bottom:1092.093333pt;}
.ya_c00069{bottom:1095.933333pt;}
.y9_c00069{bottom:1179.653333pt;}
.y8_c00069{bottom:1195.013333pt;}
.y7_c00069{bottom:1221.893333pt;}
.y6_c00069{bottom:1247.226667pt;}
.y4_c00069{bottom:1251.066667pt;}
.y3_c00069{bottom:1251.840000pt;}
.y5_c00069{bottom:1252.613333pt;}
.y2_c00069{bottom:1275.653333pt;}
.y1_c00069{bottom:1284.866667pt;}
.hd_c00069{height:2.764500pt;}
.h7_c00069{height:4.799479pt;}
.h11_c00069{height:5.519401pt;}
.hb_c00069{height:8.303099pt;}
.h10_c00069{height:13.822500pt;}
.h8_c00069{height:16.606198pt;}
.hf_c00069{height:18.124500pt;}
.h2_c00069{height:24.861302pt;}
.h3_c00069{height:27.645000pt;}
.he_c00069{height:35.948099pt;}
.h6_c00069{height:41.467500pt;}
.h4_c00069{height:44.251198pt;}
.h5_c00069{height:46.986901pt;}
.ha_c00069{height:52.506302pt;}
.h9_c00069{height:58.073698pt;}
.hc_c00069{height:77.415599pt;}
.h1_c00069{height:1336.000000pt;}
.h0_c00069{height:1336.320000pt;}
.w0_c00069{width:973.053333pt;}
.w1_c00069{width:973.333333pt;}
.x0_c00069{left:0.000000pt;}
.x13_c00069{left:49.920000pt;}
.x12_c00069{left:52.986667pt;}
.x11_c00069{left:90.626667pt;}
.x10_c00069{left:92.933333pt;}
.xe_c00069{left:96.773333pt;}
.xf_c00069{left:100.613333pt;}
.x14_c00069{left:119.813333pt;}
.xd_c00069{left:140.546667pt;}
.x2_c00069{left:363.266667pt;}
.x1_c00069{left:370.946667pt;}
.x3_c00069{left:387.840000pt;}
.x4_c00069{left:407.813333pt;}
.x5_c00069{left:441.600000pt;}
.x6_c00069{left:461.573333pt;}
.x7_c00069{left:509.946667pt;}
.x8_c00069{left:526.080000pt;}
.x9_c00069{left:546.053333pt;}
.xa_c00069{left:562.173333pt;}
.xb_c00069{left:747.266667pt;}
.xc_c00069{left:755.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_899a4daa53a6009b9b5bc3c8.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.109863;font-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_c00070{transform:matrix(0.056875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056875,0.000000,0.000000,0.250000,0,0);}
.m1_c00070{transform:matrix(0.057600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057600,0.000000,0.000000,0.250000,0,0);}
.m0_c00070{transform:matrix(0.075225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075225,0.000000,0.000000,0.250000,0,0);}
.m3_c00070{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);}
.m2_c00070{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5_c00070{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);}
.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;}
.fs5_c00070{font-size:24.180000px;}
.fs2_c00070{font-size:34.560000px;}
.fs0_c00070{font-size:41.460000px;}
.fs3_c00070{font-size:62.220000px;}
.fs1_c00070{font-size:162.420000px;}
.fs4_c00070{font-size:228.120000px;}
.y0_c00070{bottom:0.000000px;}
.y6_c00070{bottom:147.750000px;}
.y5_c00070{bottom:773.280000px;}
.y4_c00070{bottom:794.010000px;}
.y3_c00070{bottom:848.445000px;}
.y2_c00070{bottom:1230.330000px;}
.y1_c00070{bottom:1275.270000px;}
.h7_c00070{height:21.759639px;}
.h4_c00070{height:31.100625px;}
.h2_c00070{height:37.309951px;}
.h5_c00070{height:55.991924px;}
.h3_c00070{height:146.162139px;}
.h6_c00070{height:205.285723px;}
.h0_c00070{height:1517.190000px;}
.h1_c00070{height:1517.250000px;}
.w0_c00070{width:1079.130000px;}
.w1_c00070{width:1079.250000px;}
.x0_c00070{left:0.000000px;}
.x2_c00070{left:892.515000px;}
.x3_c00070{left:919.290000px;}
.x4_c00070{left:971.130000px;}
.x1_c00070{left:976.320000px;}
.x5_c00070{left:1022.970000px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls0_c00070{letter-spacing:0.000000pt;}
.ws0_c00070{word-spacing:0.000000pt;}
.fs5_c00070{font-size:21.493333pt;}
.fs2_c00070{font-size:30.720000pt;}
.fs0_c00070{font-size:36.853333pt;}
.fs3_c00070{font-size:55.306667pt;}
.fs1_c00070{font-size:144.373333pt;}
.fs4_c00070{font-size:202.773333pt;}
.y0_c00070{bottom:0.000000pt;}
.y6_c00070{bottom:131.333333pt;}
.y5_c00070{bottom:687.360000pt;}
.y4_c00070{bottom:705.786667pt;}
.y3_c00070{bottom:754.173333pt;}
.y2_c00070{bottom:1093.626667pt;}
.y1_c00070{bottom:1133.573333pt;}
.h7_c00070{height:19.341901pt;}
.h4_c00070{height:27.645000pt;}
.h2_c00070{height:33.164401pt;}
.h5_c00070{height:49.770599pt;}
.h3_c00070{height:129.921901pt;}
.h6_c00070{height:182.476198pt;}
.h0_c00070{height:1348.613333pt;}
.h1_c00070{height:1348.666667pt;}
.w0_c00070{width:959.226667pt;}
.w1_c00070{width:959.333333pt;}
.x0_c00070{left:0.000000pt;}
.x2_c00070{left:793.346667pt;}
.x3_c00070{left:817.146667pt;}
.x4_c00070{left:863.226667pt;}
.x1_c00070{left:867.840000pt;}
.x5_c00070{left:909.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d08c3b03c4ae256fc4951588.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.109863;font-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_c00071{transform:matrix(0.058850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058850,0.000000,0.000000,0.250000,0,0);}
.m6_c00071{transform:matrix(0.072200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072200,0.000000,0.000000,0.250000,0,0);}
.m9_c00071{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m5_c00071{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m2_c00071{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00071{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);}
.m0_c00071{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);}
.m4_c00071{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);}
.m8_c00071{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c00071{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c00071{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,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;}
.fs3_c00071{font-size:10.380000px;}
.fs2_c00071{font-size:13.800000px;}
.fs7_c00071{font-size:17.280000px;}
.fs1_c00071{font-size:20.760000px;}
.fs4_c00071{font-size:24.180000px;}
.fs9_c00071{font-size:31.080000px;}
.fs0_c00071{font-size:48.360000px;}
.fs5_c00071{font-size:55.320000px;}
.fs8_c00071{font-size:72.600000px;}
.fsa_c00071{font-size:159.000000px;}
.fs6_c00071{font-size:259.200000px;}
.y0_c00071{bottom:0.000000px;}
.yb_c00071{bottom:755.130000px;}
.ya_c00071{bottom:757.725000px;}
.y9_c00071{bottom:766.365000px;}
.y7_c00071{bottom:793.155000px;}
.y8_c00071{bottom:825.990000px;}
.y6_c00071{bottom:832.035000px;}
.y5_c00071{bottom:836.355000px;}
.y3_c00071{bottom:877.830000px;}
.y4_c00071{bottom:880.410000px;}
.y2_c00071{bottom:1029.885000px;}
.ye_c00071{bottom:1229.475000px;}
.yd_c00071{bottom:1273.530000px;}
.yc_c00071{bottom:1405.725000px;}
.y1_c00071{bottom:1416.960000px;}
.h5_c00071{height:9.340986px;}
.h4_c00071{height:12.418652px;}
.h9_c00071{height:15.550313px;}
.h3_c00071{height:18.681973px;}
.h6_c00071{height:21.759639px;}
.hb_c00071{height:27.968965px;}
.h2_c00071{height:43.519277px;}
.h7_c00071{height:49.782598px;}
.ha_c00071{height:65.332910px;}
.hc_c00071{height:143.084473px;}
.h8_c00071{height:233.254688px;}
.h1_c00071{height:1503.000000px;}
.h0_c00071{height:1503.360000px;}
.w0_c00071{width:1094.685000px;}
.w1_c00071{width:1095.000000px;}
.x0_c00071{left:0.000000px;}
.x1_c00071{left:38.010000px;}
.x3_c00071{left:54.435000px;}
.x7_c00071{left:56.160000px;}
.x4_c00071{left:67.395000px;}
.x2_c00071{left:76.890000px;}
.x8_c00071{left:95.040000px;}
.x9_c00071{left:108.000000px;}
.xa_c00071{left:113.190000px;}
.xb_c00071{left:133.050000px;}
.x5_c00071{left:144.285000px;}
.x6_c00071{left:151.200000px;}
.xc_c00071{left:505.440000px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.ws0_c00071{word-spacing:0.000000pt;}
.fs3_c00071{font-size:9.226667pt;}
.fs2_c00071{font-size:12.266667pt;}
.fs7_c00071{font-size:15.360000pt;}
.fs1_c00071{font-size:18.453333pt;}
.fs4_c00071{font-size:21.493333pt;}
.fs9_c00071{font-size:27.626667pt;}
.fs0_c00071{font-size:42.986667pt;}
.fs5_c00071{font-size:49.173333pt;}
.fs8_c00071{font-size:64.533333pt;}
.fsa_c00071{font-size:141.333333pt;}
.fs6_c00071{font-size:230.400000pt;}
.y0_c00071{bottom:0.000000pt;}
.yb_c00071{bottom:671.226667pt;}
.ya_c00071{bottom:673.533333pt;}
.y9_c00071{bottom:681.213333pt;}
.y7_c00071{bottom:705.026667pt;}
.y8_c00071{bottom:734.213333pt;}
.y6_c00071{bottom:739.586667pt;}
.y5_c00071{bottom:743.426667pt;}
.y3_c00071{bottom:780.293333pt;}
.y4_c00071{bottom:782.586667pt;}
.y2_c00071{bottom:915.453333pt;}
.ye_c00071{bottom:1092.866667pt;}
.yd_c00071{bottom:1132.026667pt;}
.yc_c00071{bottom:1249.533333pt;}
.y1_c00071{bottom:1259.520000pt;}
.h5_c00071{height:8.303099pt;}
.h4_c00071{height:11.038802pt;}
.h9_c00071{height:13.822500pt;}
.h3_c00071{height:16.606198pt;}
.h6_c00071{height:19.341901pt;}
.hb_c00071{height:24.861302pt;}
.h2_c00071{height:38.683802pt;}
.h7_c00071{height:44.251198pt;}
.ha_c00071{height:58.073698pt;}
.hc_c00071{height:127.186198pt;}
.h8_c00071{height:207.337500pt;}
.h1_c00071{height:1336.000000pt;}
.h0_c00071{height:1336.320000pt;}
.w0_c00071{width:973.053333pt;}
.w1_c00071{width:973.333333pt;}
.x0_c00071{left:0.000000pt;}
.x1_c00071{left:33.786667pt;}
.x3_c00071{left:48.386667pt;}
.x7_c00071{left:49.920000pt;}
.x4_c00071{left:59.906667pt;}
.x2_c00071{left:68.346667pt;}
.x8_c00071{left:84.480000pt;}
.x9_c00071{left:96.000000pt;}
.xa_c00071{left:100.613333pt;}
.xb_c00071{left:118.266667pt;}
.x5_c00071{left:128.253333pt;}
.x6_c00071{left:134.400000pt;}
.xc_c00071{left:449.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_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_00aa9684495ed91578896d75.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.109863;font-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_c00072{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);}
.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;}
.fs0_c00072{font-size:600.000000px;}
.y0_c00072{bottom:0.000000px;}
.y1_c00072{bottom:15.000000px;}
.h2_c00072{height:539.941406px;}
.h0_c00072{height:1517.190000px;}
.h1_c00072{height:1517.250000px;}
.w0_c00072{width:1079.130000px;}
.w1_c00072{width:1079.250000px;}
.x0_c00072{left:0.000000px;}
.x1_c00072{left:15.000000px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls0_c00072{letter-spacing:0.000000pt;}
.ws0_c00072{word-spacing:0.000000pt;}
.fs0_c00072{font-size:533.333333pt;}
.y0_c00072{bottom:0.000000pt;}
.y1_c00072{bottom:13.333333pt;}
.h2_c00072{height:479.947917pt;}
.h0_c00072{height:1348.613333pt;}
.h1_c00072{height:1348.666667pt;}
.w0_c00072{width:959.226667pt;}
.w1_c00072{width:959.333333pt;}
.x0_c00072{left:0.000000pt;}
.x1_c00072{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9c2bc233b9863b28c9b85d0.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.109863;font-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_c00073{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.mf_c00073{transform:matrix(0.077000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077000,0.000000,0.000000,0.250000,0,0);}
.m12_c00073{transform:matrix(0.087825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087825,0.000000,0.000000,0.250000,0,0);}
.md_c00073{transform:matrix(0.096575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096575,0.000000,0.000000,0.250000,0,0);}
.mc_c00073{transform:matrix(0.101975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101975,0.000000,0.000000,0.250000,0,0);}
.m9_c00073{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c00073{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);}
.m14_c00073{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m7_c00073{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.me_c00073{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_c00073{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00073{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00073{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00073{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c00073{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00073{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00073{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m10_c00073{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);}
.m8_c00073{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c00073{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m13_c00073{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m15_c00073{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,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;}
.fs4_c00073{font-size:3.456000px;}
.fsd_c00073{font-size:6.000000px;}
.fsa_c00073{font-size:10.380000px;}
.fs11_c00073{font-size:17.280000px;}
.fsc_c00073{font-size:20.760000px;}
.fs3_c00073{font-size:24.180000px;}
.fs8_c00073{font-size:27.660000px;}
.fsf_c00073{font-size:34.560000px;}
.fs12_c00073{font-size:41.460000px;}
.fs5_c00073{font-size:44.940000px;}
.fse_c00073{font-size:48.360000px;}
.fs6_c00073{font-size:51.840000px;}
.fs2_c00073{font-size:55.320000px;}
.fs0_c00073{font-size:58.740000px;}
.fs1_c00073{font-size:62.220000px;}
.fs7_c00073{font-size:72.600000px;}
.fs10_c00073{font-size:82.920000px;}
.fs9_c00073{font-size:103.680000px;}
.fsb_c00073{font-size:134.760000px;}
.y0_c00073{bottom:0.000000px;}
.y15_c00073{bottom:885.600000px;}
.y14_c00073{bottom:1122.330000px;}
.y13_c00073{bottom:1126.650000px;}
.y12_c00073{bottom:1148.250000px;}
.y11_c00073{bottom:1157.760000px;}
.ye_c00073{bottom:1169.850000px;}
.yf_c00073{bottom:1179.360000px;}
.y10_c00073{bottom:1186.275000px;}
.yb_c00073{bottom:1204.410000px;}
.yd_c00073{bottom:1215.645000px;}
.yc_c00073{bottom:1227.750000px;}
.ya_c00073{bottom:1239.840000px;}
.y9_c00073{bottom:1251.075000px;}
.y8_c00073{bottom:1274.400000px;}
.y7_c00073{bottom:1289.085000px;}
.y5_c00073{bottom:1318.470000px;}
.y6_c00073{bottom:1323.645000px;}
.y4_c00073{bottom:1393.635000px;}
.y2_c00073{bottom:1394.490000px;}
.y3_c00073{bottom:1395.360000px;}
.y1_c00073{bottom:1396.230000px;}
.h6_c00073{height:3.110063px;}
.hf_c00073{height:5.399414px;}
.hc_c00073{height:9.340986px;}
.h13_c00073{height:15.550313px;}
.he_c00073{height:18.681973px;}
.h5_c00073{height:21.759639px;}
.ha_c00073{height:24.891299px;}
.h11_c00073{height:31.100625px;}
.h14_c00073{height:37.309951px;}
.h7_c00073{height:40.441611px;}
.h10_c00073{height:43.519277px;}
.h8_c00073{height:46.650937px;}
.h4_c00073{height:49.782598px;}
.h2_c00073{height:52.860264px;}
.h3_c00073{height:55.991924px;}
.h9_c00073{height:65.332910px;}
.h12_c00073{height:74.619902px;}
.hb_c00073{height:93.301875px;}
.hd_c00073{height:121.270840px;}
.h1_c00073{height:1503.000000px;}
.h0_c00073{height:1503.360000px;}
.w0_c00073{width:1094.685000px;}
.w1_c00073{width:1095.000000px;}
.x0_c00073{left:0.000000px;}
.x11_c00073{left:10.365000px;}
.xd_c00073{left:25.050000px;}
.xe_c00073{left:34.560000px;}
.xf_c00073{left:59.610000px;}
.x10_c00073{left:71.715000px;}
.xb_c00073{left:115.770000px;}
.xc_c00073{left:125.280000px;}
.x9_c00073{left:154.650000px;}
.xa_c00073{left:162.435000px;}
.x1_c00073{left:457.920000px;}
.x2_c00073{left:515.805000px;}
.x3_c00073{left:557.280000px;}
.x4_c00073{left:571.965000px;}
.x5_c00073{left:592.710000px;}
.x6_c00073{left:611.715000px;}
.x7_c00073{left:634.170000px;}
.x8_c00073{left:652.320000px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ws0_c00073{word-spacing:0.000000pt;}
.fs4_c00073{font-size:3.072000pt;}
.fsd_c00073{font-size:5.333333pt;}
.fsa_c00073{font-size:9.226667pt;}
.fs11_c00073{font-size:15.360000pt;}
.fsc_c00073{font-size:18.453333pt;}
.fs3_c00073{font-size:21.493333pt;}
.fs8_c00073{font-size:24.586667pt;}
.fsf_c00073{font-size:30.720000pt;}
.fs12_c00073{font-size:36.853333pt;}
.fs5_c00073{font-size:39.946667pt;}
.fse_c00073{font-size:42.986667pt;}
.fs6_c00073{font-size:46.080000pt;}
.fs2_c00073{font-size:49.173333pt;}
.fs0_c00073{font-size:52.213333pt;}
.fs1_c00073{font-size:55.306667pt;}
.fs7_c00073{font-size:64.533333pt;}
.fs10_c00073{font-size:73.706667pt;}
.fs9_c00073{font-size:92.160000pt;}
.fsb_c00073{font-size:119.786667pt;}
.y0_c00073{bottom:0.000000pt;}
.y15_c00073{bottom:787.200000pt;}
.y14_c00073{bottom:997.626667pt;}
.y13_c00073{bottom:1001.466667pt;}
.y12_c00073{bottom:1020.666667pt;}
.y11_c00073{bottom:1029.120000pt;}
.ye_c00073{bottom:1039.866667pt;}
.yf_c00073{bottom:1048.320000pt;}
.y10_c00073{bottom:1054.466667pt;}
.yb_c00073{bottom:1070.586667pt;}
.yd_c00073{bottom:1080.573333pt;}
.yc_c00073{bottom:1091.333333pt;}
.ya_c00073{bottom:1102.080000pt;}
.y9_c00073{bottom:1112.066667pt;}
.y8_c00073{bottom:1132.800000pt;}
.y7_c00073{bottom:1145.853333pt;}
.y5_c00073{bottom:1171.973333pt;}
.y6_c00073{bottom:1176.573333pt;}
.y4_c00073{bottom:1238.786667pt;}
.y2_c00073{bottom:1239.546667pt;}
.y3_c00073{bottom:1240.320000pt;}
.y1_c00073{bottom:1241.093333pt;}
.h6_c00073{height:2.764500pt;}
.hf_c00073{height:4.799479pt;}
.hc_c00073{height:8.303099pt;}
.h13_c00073{height:13.822500pt;}
.he_c00073{height:16.606198pt;}
.h5_c00073{height:19.341901pt;}
.ha_c00073{height:22.125599pt;}
.h11_c00073{height:27.645000pt;}
.h14_c00073{height:33.164401pt;}
.h7_c00073{height:35.948099pt;}
.h10_c00073{height:38.683802pt;}
.h8_c00073{height:41.467500pt;}
.h4_c00073{height:44.251198pt;}
.h2_c00073{height:46.986901pt;}
.h3_c00073{height:49.770599pt;}
.h9_c00073{height:58.073698pt;}
.h12_c00073{height:66.328802pt;}
.hb_c00073{height:82.935000pt;}
.hd_c00073{height:107.796302pt;}
.h1_c00073{height:1336.000000pt;}
.h0_c00073{height:1336.320000pt;}
.w0_c00073{width:973.053333pt;}
.w1_c00073{width:973.333333pt;}
.x0_c00073{left:0.000000pt;}
.x11_c00073{left:9.213333pt;}
.xd_c00073{left:22.266667pt;}
.xe_c00073{left:30.720000pt;}
.xf_c00073{left:52.986667pt;}
.x10_c00073{left:63.746667pt;}
.xb_c00073{left:102.906667pt;}
.xc_c00073{left:111.360000pt;}
.x9_c00073{left:137.466667pt;}
.xa_c00073{left:144.386667pt;}
.x1_c00073{left:407.040000pt;}
.x2_c00073{left:458.493333pt;}
.x3_c00073{left:495.360000pt;}
.x4_c00073{left:508.413333pt;}
.x5_c00073{left:526.853333pt;}
.x6_c00073{left:543.746667pt;}
.x7_c00073{left:563.706667pt;}
.x8_c00073{left:579.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_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_d1d2fe850ed73da7880e92cd.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.109863;font-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_c00074{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);}
.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;}
.fs0_c00074{font-size:600.000000px;}
.y0_c00074{bottom:0.000000px;}
.y1_c00074{bottom:15.000000px;}
.h2_c00074{height:539.941406px;}
.h0_c00074{height:1517.190000px;}
.h1_c00074{height:1517.250000px;}
.w0_c00074{width:1079.130000px;}
.w1_c00074{width:1079.250000px;}
.x0_c00074{left:0.000000px;}
.x1_c00074{left:15.000000px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ws0_c00074{word-spacing:0.000000pt;}
.fs0_c00074{font-size:533.333333pt;}
.y0_c00074{bottom:0.000000pt;}
.y1_c00074{bottom:13.333333pt;}
.h2_c00074{height:479.947917pt;}
.h0_c00074{height:1348.613333pt;}
.h1_c00074{height:1348.666667pt;}
.w0_c00074{width:959.226667pt;}
.w1_c00074{width:959.333333pt;}
.x0_c00074{left:0.000000pt;}
.x1_c00074{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00075;src:url('chunks/assets/font_471680dc9b0007b9e908b3de.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.109863;font-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_c00075{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);}
.v0_c00075{vertical-align:0.000000px;}
.ls0_c00075{letter-spacing:0.000000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00075{word-spacing:0.000000px;}
.fc0_c00075{color:transparent;}
.fs0_c00075{font-size:600.000000px;}
.y0_c00075{bottom:0.000000px;}
.y1_c00075{bottom:15.000000px;}
.h2_c00075{height:539.941406px;}
.h1_c00075{height:1503.000000px;}
.h0_c00075{height:1503.360000px;}
.w0_c00075{width:1094.685000px;}
.w1_c00075{width:1095.000000px;}
.x0_c00075{left:0.000000px;}
.x1_c00075{left:15.000000px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ws0_c00075{word-spacing:0.000000pt;}
.fs0_c00075{font-size:533.333333pt;}
.y0_c00075{bottom:0.000000pt;}
.y1_c00075{bottom:13.333333pt;}
.h2_c00075{height:479.947917pt;}
.h1_c00075{height:1336.000000pt;}
.h0_c00075{height:1336.320000pt;}
.w0_c00075{width:973.053333pt;}
.w1_c00075{width:973.333333pt;}
.x0_c00075{left:0.000000pt;}
.x1_c00075{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a8d2f09be49f11c5ef1d6a40.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.109863;font-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_c00076{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);}
.m7_c00076{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00076{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00076{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00076{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c00076{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00076{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c00076{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.me_c00076{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);}
.m8_c00076{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m0_c00076{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mb_c00076{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);}
.mc_c00076{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.ma_c00076{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.md_c00076{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,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;}
.fs3_c00076{font-size:3.456000px;}
.fs5_c00076{font-size:17.280000px;}
.fs7_c00076{font-size:20.760000px;}
.fs4_c00076{font-size:24.180000px;}
.fs6_c00076{font-size:27.660000px;}
.fs0_c00076{font-size:55.320000px;}
.fs1_c00076{font-size:58.740000px;}
.fs2_c00076{font-size:69.120000px;}
.y0_c00076{bottom:0.000000px;}
.yb_c00076{bottom:482.970000px;}
.ya_c00076{bottom:483.840000px;}
.y8_c00076{bottom:1324.515000px;}
.y9_c00076{bottom:1355.610000px;}
.y7_c00076{bottom:1405.725000px;}
.y6_c00076{bottom:1408.320000px;}
.y5_c00076{bottom:1409.190000px;}
.y2_c00076{bottom:1410.045000px;}
.y1_c00076{bottom:1410.915000px;}
.y3_c00076{bottom:1411.770000px;}
.y4_c00076{bottom:1417.830000px;}
.h5_c00076{height:3.110063px;}
.h7_c00076{height:15.550313px;}
.h9_c00076{height:18.681973px;}
.h6_c00076{height:21.759639px;}
.h8_c00076{height:24.891299px;}
.h2_c00076{height:49.782598px;}
.h3_c00076{height:52.860264px;}
.h4_c00076{height:62.201250px;}
.h0_c00076{height:1517.190000px;}
.h1_c00076{height:1517.250000px;}
.w0_c00076{width:1079.130000px;}
.w1_c00076{width:1079.250000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:301.530000px;}
.x2_c00076{left:321.405000px;}
.x3_c00076{left:337.830000px;}
.x4_c00076{left:355.965000px;}
.x5_c00076{left:384.480000px;}
.x6_c00076{left:404.355000px;}
.x7_c00076{left:418.170000px;}
.x8_c00076{left:432.870000px;}
.x9_c00076{left:450.150000px;}
.xa_c00076{left:470.010000px;}
.xb_c00076{left:485.565000px;}
.xc_c00076{left:520.995000px;}
.xd_c00076{left:538.275000px;}
.xe_c00076{left:548.640000px;}
.xf_c00076{left:565.920000px;}
.x10_c00076{left:584.925000px;}
.x11_c00076{left:946.950000px;}
.x12_c00076{left:1005.690000px;}
.x13_c00076{left:1069.635000px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws0_c00076{word-spacing:0.000000pt;}
.fs3_c00076{font-size:3.072000pt;}
.fs5_c00076{font-size:15.360000pt;}
.fs7_c00076{font-size:18.453333pt;}
.fs4_c00076{font-size:21.493333pt;}
.fs6_c00076{font-size:24.586667pt;}
.fs0_c00076{font-size:49.173333pt;}
.fs1_c00076{font-size:52.213333pt;}
.fs2_c00076{font-size:61.440000pt;}
.y0_c00076{bottom:0.000000pt;}
.yb_c00076{bottom:429.306667pt;}
.ya_c00076{bottom:430.080000pt;}
.y8_c00076{bottom:1177.346667pt;}
.y9_c00076{bottom:1204.986667pt;}
.y7_c00076{bottom:1249.533333pt;}
.y6_c00076{bottom:1251.840000pt;}
.y5_c00076{bottom:1252.613333pt;}
.y2_c00076{bottom:1253.373333pt;}
.y1_c00076{bottom:1254.146667pt;}
.y3_c00076{bottom:1254.906667pt;}
.y4_c00076{bottom:1260.293333pt;}
.h5_c00076{height:2.764500pt;}
.h7_c00076{height:13.822500pt;}
.h9_c00076{height:16.606198pt;}
.h6_c00076{height:19.341901pt;}
.h8_c00076{height:22.125599pt;}
.h2_c00076{height:44.251198pt;}
.h3_c00076{height:46.986901pt;}
.h4_c00076{height:55.290000pt;}
.h0_c00076{height:1348.613333pt;}
.h1_c00076{height:1348.666667pt;}
.w0_c00076{width:959.226667pt;}
.w1_c00076{width:959.333333pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:268.026667pt;}
.x2_c00076{left:285.693333pt;}
.x3_c00076{left:300.293333pt;}
.x4_c00076{left:316.413333pt;}
.x5_c00076{left:341.760000pt;}
.x6_c00076{left:359.426667pt;}
.x7_c00076{left:371.706667pt;}
.x8_c00076{left:384.773333pt;}
.x9_c00076{left:400.133333pt;}
.xa_c00076{left:417.786667pt;}
.xb_c00076{left:431.613333pt;}
.xc_c00076{left:463.106667pt;}
.xd_c00076{left:478.466667pt;}
.xe_c00076{left:487.680000pt;}
.xf_c00076{left:503.040000pt;}
.x10_c00076{left:519.933333pt;}
.x11_c00076{left:841.733333pt;}
.x12_c00076{left:893.946667pt;}
.x13_c00076{left:950.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00077;src:url('chunks/assets/font_3132f7c90b51d41f12d6be45.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.109863;font-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_c00077{transform:matrix(0.026050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026050,0.000000,0.000000,0.250000,0,0);}
.mc_c00077{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);}
.m1_c00077{transform:matrix(0.048425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048425,0.000000,0.000000,0.250000,0,0);}
.m15_c00077{transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);}
.m4_c00077{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);}
.m8_c00077{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00077{transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);}
.me_c00077{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);}
.ma_c00077{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.md_c00077{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);}
.m10_c00077{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);}
.m9_c00077{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);}
.m6_c00077{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);}
.m2_c00077{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00077{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mb_c00077{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);}
.m11_c00077{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c00077{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m13_c00077{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mf_c00077{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m12_c00077{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m3_c00077{transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.ls0_c00077{letter-spacing:0.000000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00077{word-spacing:0.000000px;}
.fc0_c00077{color:transparent;}
.fsd_c00077{font-size:3.456000px;}
.fs7_c00077{font-size:6.000000px;}
.fs2_c00077{font-size:10.380000px;}
.fs3_c00077{font-size:13.800000px;}
.fs0_c00077{font-size:17.280000px;}
.fs5_c00077{font-size:24.180000px;}
.fs4_c00077{font-size:27.660000px;}
.fs9_c00077{font-size:31.080000px;}
.fse_c00077{font-size:38.040000px;}
.fs6_c00077{font-size:41.460000px;}
.fsb_c00077{font-size:44.940000px;}
.fs8_c00077{font-size:69.120000px;}
.fs1_c00077{font-size:107.160000px;}
.fsc_c00077{font-size:120.960000px;}
.fsf_c00077{font-size:165.900000px;}
.fsa_c00077{font-size:179.700000px;}
.fs10_c00077{font-size:241.920000px;}
.y0_c00077{bottom:0.000000px;}
.y16_c00077{bottom:879.555000px;}
.y15_c00077{bottom:973.725000px;}
.y14_c00077{bottom:1047.165000px;}
.y13_c00077{bottom:1065.315000px;}
.y12_c00077{bottom:1070.490000px;}
.y11_c00077{bottom:1076.550000px;}
.y10_c00077{bottom:1122.330000px;}
.yf_c00077{bottom:1149.120000px;}
.ye_c00077{bottom:1156.035000px;}
.yd_c00077{bottom:1161.210000px;}
.yc_c00077{bottom:1210.470000px;}
.yb_c00077{bottom:1224.285000px;}
.ya_c00077{bottom:1253.670000px;}
.y9_c00077{bottom:1254.525000px;}
.y8_c00077{bottom:1296.870000px;}
.y7_c00077{bottom:1322.790000px;}
.y6_c00077{bottom:1353.030000px;}
.y5_c00077{bottom:1372.035000px;}
.y4_c00077{bottom:1374.630000px;}
.y2_c00077{bottom:1413.510000px;}
.y1_c00077{bottom:1421.280000px;}
.y3_c00077{bottom:1428.195000px;}
.hf_c00077{height:3.110063px;}
.h9_c00077{height:5.399414px;}
.h4_c00077{height:9.340986px;}
.h5_c00077{height:12.418652px;}
.h2_c00077{height:15.550313px;}
.h7_c00077{height:21.759639px;}
.h6_c00077{height:24.891299px;}
.hb_c00077{height:27.968965px;}
.h10_c00077{height:34.232285px;}
.h8_c00077{height:37.309951px;}
.hd_c00077{height:40.441611px;}
.ha_c00077{height:62.201250px;}
.h3_c00077{height:96.433535px;}
.he_c00077{height:108.852188px;}
.h11_c00077{height:149.293799px;}
.hc_c00077{height:161.712451px;}
.h12_c00077{height:217.704375px;}
.h1_c00077{height:1503.000000px;}
.h0_c00077{height:1503.360000px;}
.w0_c00077{width:1094.685000px;}
.w1_c00077{width:1095.000000px;}
.x0_c00077{left:0.000000px;}
.x7_c00077{left:2.595000px;}
.x1_c00077{left:43.200000px;}
.x2_c00077{left:116.640000px;}
.x5_c00077{left:124.410000px;}
.x3_c00077{left:128.730000px;}
.x6_c00077{left:131.325000px;}
.xa_c00077{left:136.515000px;}
.xb_c00077{left:139.110000px;}
.x4_c00077{left:142.560000px;}
.x9_c00077{left:168.480000px;}
.x8_c00077{left:198.720000px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls0_c00077{letter-spacing:0.000000pt;}
.ws0_c00077{word-spacing:0.000000pt;}
.fsd_c00077{font-size:3.072000pt;}
.fs7_c00077{font-size:5.333333pt;}
.fs2_c00077{font-size:9.226667pt;}
.fs3_c00077{font-size:12.266667pt;}
.fs0_c00077{font-size:15.360000pt;}
.fs5_c00077{font-size:21.493333pt;}
.fs4_c00077{font-size:24.586667pt;}
.fs9_c00077{font-size:27.626667pt;}
.fse_c00077{font-size:33.813333pt;}
.fs6_c00077{font-size:36.853333pt;}
.fsb_c00077{font-size:39.946667pt;}
.fs8_c00077{font-size:61.440000pt;}
.fs1_c00077{font-size:95.253333pt;}
.fsc_c00077{font-size:107.520000pt;}
.fsf_c00077{font-size:147.466667pt;}
.fsa_c00077{font-size:159.733333pt;}
.fs10_c00077{font-size:215.040000pt;}
.y0_c00077{bottom:0.000000pt;}
.y16_c00077{bottom:781.826667pt;}
.y15_c00077{bottom:865.533333pt;}
.y14_c00077{bottom:930.813333pt;}
.y13_c00077{bottom:946.946667pt;}
.y12_c00077{bottom:951.546667pt;}
.y11_c00077{bottom:956.933333pt;}
.y10_c00077{bottom:997.626667pt;}
.yf_c00077{bottom:1021.440000pt;}
.ye_c00077{bottom:1027.586667pt;}
.yd_c00077{bottom:1032.186667pt;}
.yc_c00077{bottom:1075.973333pt;}
.yb_c00077{bottom:1088.253333pt;}
.ya_c00077{bottom:1114.373333pt;}
.y9_c00077{bottom:1115.133333pt;}
.y8_c00077{bottom:1152.773333pt;}
.y7_c00077{bottom:1175.813333pt;}
.y6_c00077{bottom:1202.693333pt;}
.y5_c00077{bottom:1219.586667pt;}
.y4_c00077{bottom:1221.893333pt;}
.y2_c00077{bottom:1256.453333pt;}
.y1_c00077{bottom:1263.360000pt;}
.y3_c00077{bottom:1269.506667pt;}
.hf_c00077{height:2.764500pt;}
.h9_c00077{height:4.799479pt;}
.h4_c00077{height:8.303099pt;}
.h5_c00077{height:11.038802pt;}
.h2_c00077{height:13.822500pt;}
.h7_c00077{height:19.341901pt;}
.h6_c00077{height:22.125599pt;}
.hb_c00077{height:24.861302pt;}
.h10_c00077{height:30.428698pt;}
.h8_c00077{height:33.164401pt;}
.hd_c00077{height:35.948099pt;}
.ha_c00077{height:55.290000pt;}
.h3_c00077{height:85.718698pt;}
.he_c00077{height:96.757500pt;}
.h11_c00077{height:132.705599pt;}
.hc_c00077{height:143.744401pt;}
.h12_c00077{height:193.515000pt;}
.h1_c00077{height:1336.000000pt;}
.h0_c00077{height:1336.320000pt;}
.w0_c00077{width:973.053333pt;}
.w1_c00077{width:973.333333pt;}
.x0_c00077{left:0.000000pt;}
.x7_c00077{left:2.306667pt;}
.x1_c00077{left:38.400000pt;}
.x2_c00077{left:103.680000pt;}
.x5_c00077{left:110.586667pt;}
.x3_c00077{left:114.426667pt;}
.x6_c00077{left:116.733333pt;}
.xa_c00077{left:121.346667pt;}
.xb_c00077{left:123.653333pt;}
.x4_c00077{left:126.720000pt;}
.x9_c00077{left:149.760000pt;}
.x8_c00077{left:176.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_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_a0708ab24a3ed9c3ba1aec73.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.109863;font-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_c00078{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);}
.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:600.000000px;}
.y0_c00078{bottom:0.000000px;}
.y1_c00078{bottom:15.000000px;}
.h2_c00078{height:539.941406px;}
.h0_c00078{height:1517.190000px;}
.h1_c00078{height:1517.250000px;}
.w0_c00078{width:1079.130000px;}
.w1_c00078{width:1079.250000px;}
.x0_c00078{left:0.000000px;}
.x1_c00078{left:15.000000px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ws0_c00078{word-spacing:0.000000pt;}
.fs0_c00078{font-size:533.333333pt;}
.y0_c00078{bottom:0.000000pt;}
.y1_c00078{bottom:13.333333pt;}
.h2_c00078{height:479.947917pt;}
.h0_c00078{height:1348.613333pt;}
.h1_c00078{height:1348.666667pt;}
.w0_c00078{width:959.226667pt;}
.w1_c00078{width:959.333333pt;}
.x0_c00078{left:0.000000pt;}
.x1_c00078{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00079;src:url('chunks/assets/font_6ab79bec6651eac8aa02ce0b.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.109863;font-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_c00079{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);}
.v0_c00079{vertical-align:0.000000px;}
.ls0_c00079{letter-spacing:0.000000px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00079{word-spacing:0.000000px;}
.fc0_c00079{color:transparent;}
.fs0_c00079{font-size:600.000000px;}
.y0_c00079{bottom:0.000000px;}
.y1_c00079{bottom:15.000000px;}
.h2_c00079{height:539.941406px;}
.h1_c00079{height:1503.000000px;}
.h0_c00079{height:1503.360000px;}
.w0_c00079{width:1094.685000px;}
.w1_c00079{width:1095.000000px;}
.x0_c00079{left:0.000000px;}
.x1_c00079{left:15.000000px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls0_c00079{letter-spacing:0.000000pt;}
.ws0_c00079{word-spacing:0.000000pt;}
.fs0_c00079{font-size:533.333333pt;}
.y0_c00079{bottom:0.000000pt;}
.y1_c00079{bottom:13.333333pt;}
.h2_c00079{height:479.947917pt;}
.h1_c00079{height:1336.000000pt;}
.h0_c00079{height:1336.320000pt;}
.w0_c00079{width:973.053333pt;}
.w1_c00079{width:973.333333pt;}
.x0_c00079{left:0.000000pt;}
.x1_c00079{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00080;src:url('chunks/assets/font_39ba27d823220d3b5f3a515d.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.109863;font-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_c00080{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m3_c00080{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00080{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1_c00080{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m4_c00080{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls0_c00080{letter-spacing:0.000000px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00080{word-spacing:0.000000px;}
.fc0_c00080{color:transparent;}
.fs3_c00080{font-size:3.456000px;}
.fs1_c00080{font-size:20.760000px;}
.fs2_c00080{font-size:38.040000px;}
.fs0_c00080{font-size:62.220000px;}
.y0_c00080{bottom:0.000000px;}
.y5_c00080{bottom:423.360000px;}
.y3_c00080{bottom:692.070000px;}
.y4_c00080{bottom:696.390000px;}
.y2_c00080{bottom:1216.515000px;}
.y1_c00080{bottom:1417.830000px;}
.h5_c00080{height:3.110063px;}
.h3_c00080{height:18.681973px;}
.h4_c00080{height:34.232285px;}
.h2_c00080{height:55.991924px;}
.h0_c00080{height:1517.190000px;}
.h1_c00080{height:1517.250000px;}
.w0_c00080{width:1079.130000px;}
.w1_c00080{width:1079.250000px;}
.x0_c00080{left:0.000000px;}
.x1_c00080{left:298.080000px;}
.x2_c00080{left:959.910000px;}
.x3_c00080{left:990.150000px;}
.x4_c00080{left:1003.965000px;}
.x5_c00080{left:1010.880000px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls0_c00080{letter-spacing:0.000000pt;}
.ws0_c00080{word-spacing:0.000000pt;}
.fs3_c00080{font-size:3.072000pt;}
.fs1_c00080{font-size:18.453333pt;}
.fs2_c00080{font-size:33.813333pt;}
.fs0_c00080{font-size:55.306667pt;}
.y0_c00080{bottom:0.000000pt;}
.y5_c00080{bottom:376.320000pt;}
.y3_c00080{bottom:615.173333pt;}
.y4_c00080{bottom:619.013333pt;}
.y2_c00080{bottom:1081.346667pt;}
.y1_c00080{bottom:1260.293333pt;}
.h5_c00080{height:2.764500pt;}
.h3_c00080{height:16.606198pt;}
.h4_c00080{height:30.428698pt;}
.h2_c00080{height:49.770599pt;}
.h0_c00080{height:1348.613333pt;}
.h1_c00080{height:1348.666667pt;}
.w0_c00080{width:959.226667pt;}
.w1_c00080{width:959.333333pt;}
.x0_c00080{left:0.000000pt;}
.x1_c00080{left:264.960000pt;}
.x2_c00080{left:853.253333pt;}
.x3_c00080{left:880.133333pt;}
.x4_c00080{left:892.413333pt;}
.x5_c00080{left:898.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_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;}
@font-face{font-family:ff1_c00081;src:url('chunks/assets/font_584e6b0377df6ed7d0160bc6.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.109863;font-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_c00081{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me_c00081{transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);}
.m10_c00081{transform:matrix(0.044650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044650,0.000000,0.000000,0.250000,0,0);}
.md_c00081{transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);}
.m2_c00081{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf_c00081{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m8_c00081{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);}
.ma_c00081{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.m13_c00081{transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);}
.m12_c00081{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);}
.m9_c00081{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c00081{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);}
.m4_c00081{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00081{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00081{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00081{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m5_c00081{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mb_c00081{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m11_c00081{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mc_c00081{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c00081{vertical-align:0.000000px;}
.ls0_c00081{letter-spacing:0.000000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00081{word-spacing:0.000000px;}
.fc0_c00081{color:transparent;}
.fs1_c00081{font-size:3.456000px;}
.fs9_c00081{font-size:20.760000px;}
.fs6_c00081{font-size:27.660000px;}
.fs7_c00081{font-size:31.080000px;}
.fsc_c00081{font-size:34.560000px;}
.fs8_c00081{font-size:38.040000px;}
.fse_c00081{font-size:41.460000px;}
.fs4_c00081{font-size:51.840000px;}
.fs3_c00081{font-size:55.320000px;}
.fs2_c00081{font-size:58.740000px;}
.fs0_c00081{font-size:62.220000px;}
.fs5_c00081{font-size:65.640000px;}
.fsd_c00081{font-size:96.780000px;}
.fsb_c00081{font-size:124.440000px;}
.fsa_c00081{font-size:207.360000px;}
.y0_c00081{bottom:0.000000px;}
.y10_c00081{bottom:980.640000px;}
.yf_c00081{bottom:1005.690000px;}
.ye_c00081{bottom:1030.755000px;}
.yd_c00081{bottom:1055.805000px;}
.yc_c00081{bottom:1080.870000px;}
.yb_c00081{bottom:1104.195000px;}
.ya_c00081{bottom:1151.715000px;}
.y8_c00081{bottom:1204.410000px;}
.y9_c00081{bottom:1213.920000px;}
.y7_c00081{bottom:1281.315000px;}
.y6_c00081{bottom:1290.810000px;}
.y3_c00081{bottom:1403.130000px;}
.y1_c00081{bottom:1404.000000px;}
.y2_c00081{bottom:1404.870000px;}
.y5_c00081{bottom:1405.725000px;}
.y4_c00081{bottom:1409.190000px;}
.h3_c00081{height:3.110063px;}
.hb_c00081{height:18.681973px;}
.h8_c00081{height:24.891299px;}
.h9_c00081{height:27.968965px;}
.he_c00081{height:31.100625px;}
.ha_c00081{height:34.232285px;}
.h10_c00081{height:37.309951px;}
.h6_c00081{height:46.650937px;}
.h5_c00081{height:49.782598px;}
.h4_c00081{height:52.860264px;}
.h2_c00081{height:55.991924px;}
.h7_c00081{height:59.069590px;}
.hf_c00081{height:87.092549px;}
.hd_c00081{height:111.983848px;}
.hc_c00081{height:186.603750px;}
.h1_c00081{height:1503.000000px;}
.h0_c00081{height:1503.360000px;}
.w0_c00081{width:1094.685000px;}
.w1_c00081{width:1095.000000px;}
.x0_c00081{left:0.000000px;}
.xa_c00081{left:96.765000px;}
.x1_c00081{left:433.725000px;}
.x2_c00081{left:456.195000px;}
.x3_c00081{left:477.795000px;}
.x4_c00081{left:485.565000px;}
.x5_c00081{left:492.480000px;}
.x6_c00081{left:514.950000px;}
.x7_c00081{left:571.110000px;}
.x8_c00081{left:612.570000px;}
.x9_c00081{left:629.850000px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.ws0_c00081{word-spacing:0.000000pt;}
.fs1_c00081{font-size:3.072000pt;}
.fs9_c00081{font-size:18.453333pt;}
.fs6_c00081{font-size:24.586667pt;}
.fs7_c00081{font-size:27.626667pt;}
.fsc_c00081{font-size:30.720000pt;}
.fs8_c00081{font-size:33.813333pt;}
.fse_c00081{font-size:36.853333pt;}
.fs4_c00081{font-size:46.080000pt;}
.fs3_c00081{font-size:49.173333pt;}
.fs2_c00081{font-size:52.213333pt;}
.fs0_c00081{font-size:55.306667pt;}
.fs5_c00081{font-size:58.346667pt;}
.fsd_c00081{font-size:86.026667pt;}
.fsb_c00081{font-size:110.613333pt;}
.fsa_c00081{font-size:184.320000pt;}
.y0_c00081{bottom:0.000000pt;}
.y10_c00081{bottom:871.680000pt;}
.yf_c00081{bottom:893.946667pt;}
.ye_c00081{bottom:916.226667pt;}
.yd_c00081{bottom:938.493333pt;}
.yc_c00081{bottom:960.773333pt;}
.yb_c00081{bottom:981.506667pt;}
.ya_c00081{bottom:1023.746667pt;}
.y8_c00081{bottom:1070.586667pt;}
.y9_c00081{bottom:1079.040000pt;}
.y7_c00081{bottom:1138.946667pt;}
.y6_c00081{bottom:1147.386667pt;}
.y3_c00081{bottom:1247.226667pt;}
.y1_c00081{bottom:1248.000000pt;}
.y2_c00081{bottom:1248.773333pt;}
.y5_c00081{bottom:1249.533333pt;}
.y4_c00081{bottom:1252.613333pt;}
.h3_c00081{height:2.764500pt;}
.hb_c00081{height:16.606198pt;}
.h8_c00081{height:22.125599pt;}
.h9_c00081{height:24.861302pt;}
.he_c00081{height:27.645000pt;}
.ha_c00081{height:30.428698pt;}
.h10_c00081{height:33.164401pt;}
.h6_c00081{height:41.467500pt;}
.h5_c00081{height:44.251198pt;}
.h4_c00081{height:46.986901pt;}
.h2_c00081{height:49.770599pt;}
.h7_c00081{height:52.506302pt;}
.hf_c00081{height:77.415599pt;}
.hd_c00081{height:99.541198pt;}
.hc_c00081{height:165.870000pt;}
.h1_c00081{height:1336.000000pt;}
.h0_c00081{height:1336.320000pt;}
.w0_c00081{width:973.053333pt;}
.w1_c00081{width:973.333333pt;}
.x0_c00081{left:0.000000pt;}
.xa_c00081{left:86.013333pt;}
.x1_c00081{left:385.533333pt;}
.x2_c00081{left:405.506667pt;}
.x3_c00081{left:424.706667pt;}
.x4_c00081{left:431.613333pt;}
.x5_c00081{left:437.760000pt;}
.x6_c00081{left:457.733333pt;}
.x7_c00081{left:507.653333pt;}
.x8_c00081{left:544.506667pt;}
.x9_c00081{left:559.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_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_b5c21ed806b4ce99a077cd6d.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.109863;font-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_c00082{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);}
.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:600.000000px;}
.y0_c00082{bottom:0.000000px;}
.y1_c00082{bottom:15.000000px;}
.h2_c00082{height:539.941406px;}
.h0_c00082{height:1517.190000px;}
.h1_c00082{height:1517.250000px;}
.w0_c00082{width:1079.130000px;}
.w1_c00082{width:1079.250000px;}
.x0_c00082{left:0.000000px;}
.x1_c00082{left:15.000000px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ws0_c00082{word-spacing:0.000000pt;}
.fs0_c00082{font-size:533.333333pt;}
.y0_c00082{bottom:0.000000pt;}
.y1_c00082{bottom:13.333333pt;}
.h2_c00082{height:479.947917pt;}
.h0_c00082{height:1348.613333pt;}
.h1_c00082{height:1348.666667pt;}
.w0_c00082{width:959.226667pt;}
.w1_c00082{width:959.333333pt;}
.x0_c00082{left:0.000000pt;}
.x1_c00082{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00083;src:url('chunks/assets/font_f5ec79d95151ab0fb71b48eb.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.109863;font-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_c00083{transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);}
.m7_c00083{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m5_c00083{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m1_c00083{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m6_c00083{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m4_c00083{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);}
.m8_c00083{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);}
.m0_c00083{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);}
.m2_c00083{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);}
.v0_c00083{vertical-align:0.000000px;}
.ls0_c00083{letter-spacing:0.000000px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00083{word-spacing:0.000000px;}
.fc0_c00083{color:transparent;}
.fs2_c00083{font-size:17.280000px;}
.fs0_c00083{font-size:24.180000px;}
.fs6_c00083{font-size:31.080000px;}
.fs4_c00083{font-size:51.840000px;}
.fs1_c00083{font-size:65.640000px;}
.fs5_c00083{font-size:69.120000px;}
.fs3_c00083{font-size:124.440000px;}
.y0_c00083{bottom:0.000000px;}
.y9_c00083{bottom:1098.150000px;}
.y8_c00083{bottom:1111.110000px;}
.y7_c00083{bottom:1124.070000px;}
.y6_c00083{bottom:1139.610000px;}
.y5_c00083{bottom:1188.870000px;}
.y4_c00083{bottom:1201.830000px;}
.y2_c00083{bottom:1274.400000px;}
.y3_c00083{bottom:1276.125000px;}
.y1_c00083{bottom:1298.595000px;}
.h4_c00083{height:15.550313px;}
.h2_c00083{height:21.759639px;}
.h8_c00083{height:27.968965px;}
.h6_c00083{height:46.650937px;}
.h3_c00083{height:59.069590px;}
.h7_c00083{height:62.201250px;}
.h5_c00083{height:111.983848px;}
.h1_c00083{height:1503.000000px;}
.h0_c00083{height:1503.360000px;}
.w0_c00083{width:1094.685000px;}
.w1_c00083{width:1095.000000px;}
.x0_c00083{left:0.000000px;}
.x2_c00083{left:6.045000px;}
.x1_c00083{left:96.765000px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ws0_c00083{word-spacing:0.000000pt;}
.fs2_c00083{font-size:15.360000pt;}
.fs0_c00083{font-size:21.493333pt;}
.fs6_c00083{font-size:27.626667pt;}
.fs4_c00083{font-size:46.080000pt;}
.fs1_c00083{font-size:58.346667pt;}
.fs5_c00083{font-size:61.440000pt;}
.fs3_c00083{font-size:110.613333pt;}
.y0_c00083{bottom:0.000000pt;}
.y9_c00083{bottom:976.133333pt;}
.y8_c00083{bottom:987.653333pt;}
.y7_c00083{bottom:999.173333pt;}
.y6_c00083{bottom:1012.986667pt;}
.y5_c00083{bottom:1056.773333pt;}
.y4_c00083{bottom:1068.293333pt;}
.y2_c00083{bottom:1132.800000pt;}
.y3_c00083{bottom:1134.333333pt;}
.y1_c00083{bottom:1154.306667pt;}
.h4_c00083{height:13.822500pt;}
.h2_c00083{height:19.341901pt;}
.h8_c00083{height:24.861302pt;}
.h6_c00083{height:41.467500pt;}
.h3_c00083{height:52.506302pt;}
.h7_c00083{height:55.290000pt;}
.h5_c00083{height:99.541198pt;}
.h1_c00083{height:1336.000000pt;}
.h0_c00083{height:1336.320000pt;}
.w0_c00083{width:973.053333pt;}
.w1_c00083{width:973.333333pt;}
.x0_c00083{left:0.000000pt;}
.x2_c00083{left:5.373333pt;}
.x1_c00083{left:86.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_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_127dec13ca710491e191106b.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.109863;font-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_c00084{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);}
.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;}
.fs0_c00084{font-size:600.000000px;}
.y0_c00084{bottom:0.000000px;}
.y1_c00084{bottom:15.000000px;}
.h2_c00084{height:539.941406px;}
.h0_c00084{height:1517.190000px;}
.h1_c00084{height:1517.250000px;}
.w0_c00084{width:1079.130000px;}
.w1_c00084{width:1079.250000px;}
.x0_c00084{left:0.000000px;}
.x1_c00084{left:15.000000px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls0_c00084{letter-spacing:0.000000pt;}
.ws0_c00084{word-spacing:0.000000pt;}
.fs0_c00084{font-size:533.333333pt;}
.y0_c00084{bottom:0.000000pt;}
.y1_c00084{bottom:13.333333pt;}
.h2_c00084{height:479.947917pt;}
.h0_c00084{height:1348.613333pt;}
.h1_c00084{height:1348.666667pt;}
.w0_c00084{width:959.226667pt;}
.w1_c00084{width:959.333333pt;}
.x0_c00084{left:0.000000pt;}
.x1_c00084{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00085;src:url('chunks/assets/font_cbf3a56fc2fe84ef838a9a07.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.109863;font-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_c00085{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);}
.v0_c00085{vertical-align:0.000000px;}
.ls0_c00085{letter-spacing:0.000000px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00085{word-spacing:0.000000px;}
.fc0_c00085{color:transparent;}
.fs0_c00085{font-size:600.000000px;}
.y0_c00085{bottom:0.000000px;}
.y1_c00085{bottom:15.000000px;}
.h2_c00085{height:539.941406px;}
.h1_c00085{height:1503.000000px;}
.h0_c00085{height:1503.360000px;}
.w0_c00085{width:1094.685000px;}
.w1_c00085{width:1095.000000px;}
.x0_c00085{left:0.000000px;}
.x1_c00085{left:15.000000px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls0_c00085{letter-spacing:0.000000pt;}
.ws0_c00085{word-spacing:0.000000pt;}
.fs0_c00085{font-size:533.333333pt;}
.y0_c00085{bottom:0.000000pt;}
.y1_c00085{bottom:13.333333pt;}
.h2_c00085{height:479.947917pt;}
.h1_c00085{height:1336.000000pt;}
.h0_c00085{height:1336.320000pt;}
.w0_c00085{width:973.053333pt;}
.w1_c00085{width:973.333333pt;}
.x0_c00085{left:0.000000pt;}
.x1_c00085{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_14fb65a3ac782412159e4e73.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.109863;font-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_c00086{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);}
.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;}
.fs0_c00086{font-size:600.000000px;}
.y0_c00086{bottom:0.000000px;}
.y1_c00086{bottom:15.000000px;}
.h2_c00086{height:539.941406px;}
.h0_c00086{height:1517.190000px;}
.h1_c00086{height:1517.250000px;}
.w0_c00086{width:1079.130000px;}
.w1_c00086{width:1079.250000px;}
.x0_c00086{left:0.000000px;}
.x1_c00086{left:15.000000px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ws0_c00086{word-spacing:0.000000pt;}
.fs0_c00086{font-size:533.333333pt;}
.y0_c00086{bottom:0.000000pt;}
.y1_c00086{bottom:13.333333pt;}
.h2_c00086{height:479.947917pt;}
.h0_c00086{height:1348.613333pt;}
.h1_c00086{height:1348.666667pt;}
.w0_c00086{width:959.226667pt;}
.w1_c00086{width:959.333333pt;}
.x0_c00086{left:0.000000pt;}
.x1_c00086{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00087;src:url('chunks/assets/font_092351109a87a8cd46a9121d.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.109863;font-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_c00087{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m13_c00087{transform:matrix(0.031325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031325,0.000000,0.000000,0.250000,0,0);}
.m1e_c00087{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);}
.m11_c00087{transform:matrix(0.048775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048775,0.000000,0.000000,0.250000,0,0);}
.m18_c00087{transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);}
.m1d_c00087{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.mc_c00087{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.md_c00087{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c00087{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_c00087{transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);}
.m1b_c00087{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m2_c00087{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);}
.m6_c00087{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);}
.m16_c00087{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m1a_c00087{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);}
.m4_c00087{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00087{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);}
.m1_c00087{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);}
.m14_c00087{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);}
.m10_c00087{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00087{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);}
.m7_c00087{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m17_c00087{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);}
.m12_c00087{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.ma_c00087{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m8_c00087{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m19_c00087{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);}
.m1c_c00087{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.me_c00087{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mb_c00087{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m0_c00087{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.v0_c00087{vertical-align:0.000000px;}
.ls0_c00087{letter-spacing:0.000000px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00087{word-spacing:0.000000px;}
.fc0_c00087{color:transparent;}
.fse_c00087{font-size:6.000000px;}
.fs0_c00087{font-size:6.900000px;}
.fs8_c00087{font-size:13.800000px;}
.fs3_c00087{font-size:17.280000px;}
.fs7_c00087{font-size:20.760000px;}
.fs9_c00087{font-size:27.660000px;}
.fs1_c00087{font-size:31.080000px;}
.fsd_c00087{font-size:34.560000px;}
.fs6_c00087{font-size:38.040000px;}
.fsb_c00087{font-size:41.460000px;}
.fs4_c00087{font-size:44.940000px;}
.fs2_c00087{font-size:48.360000px;}
.fsf_c00087{font-size:58.740000px;}
.fs10_c00087{font-size:62.220000px;}
.fs5_c00087{font-size:65.640000px;}
.fs11_c00087{font-size:69.120000px;}
.fsa_c00087{font-size:141.720000px;}
.fsc_c00087{font-size:172.800000px;}
.y0_c00087{bottom:0.000000px;}
.y25_c00087{bottom:993.600000px;}
.y24_c00087{bottom:1010.880000px;}
.y23_c00087{bottom:1029.030000px;}
.y22_c00087{bottom:1036.800000px;}
.y21_c00087{bottom:1054.080000px;}
.y20_c00087{bottom:1056.675000px;}
.y1f_c00087{bottom:1068.765000px;}
.y1e_c00087{bottom:1079.130000px;}
.y1d_c00087{bottom:1086.045000px;}
.y1c_c00087{bottom:1087.770000px;}
.y1a_c00087{bottom:1103.325000px;}
.y1b_c00087{bottom:1105.920000px;}
.y18_c00087{bottom:1118.880000px;}
.y19_c00087{bottom:1122.330000px;}
.y17_c00087{bottom:1141.350000px;}
.y16_c00087{bottom:1152.570000px;}
.y15_c00087{bottom:1161.210000px;}
.y14_c00087{bottom:1188.870000px;}
.y13_c00087{bottom:1194.915000px;}
.y12_c00087{bottom:1240.710000px;}
.y11_c00087{bottom:1254.525000px;}
.y10_c00087{bottom:1255.395000px;}
.yd_c00087{bottom:1270.950000px;}
.yf_c00087{bottom:1273.530000px;}
.ye_c00087{bottom:1275.270000px;}
.yc_c00087{bottom:1295.130000px;}
.yb_c00087{bottom:1301.190000px;}
.ya_c00087{bottom:1306.365000px;}
.y9_c00087{bottom:1313.280000px;}
.y7_c00087{bottom:1321.050000px;}
.y8_c00087{bottom:1324.515000px;}
.y6_c00087{bottom:1346.115000px;}
.y4_c00087{bottom:1365.120000px;}
.y3_c00087{bottom:1366.845000px;}
.y5_c00087{bottom:1369.440000px;}
.y2_c00087{bottom:1378.950000px;}
.y1_c00087{bottom:1380.675000px;}
.h10_c00087{height:5.399414px;}
.h2_c00087{height:6.209326px;}
.ha_c00087{height:12.418652px;}
.h5_c00087{height:15.550313px;}
.h9_c00087{height:18.681973px;}
.hb_c00087{height:24.891299px;}
.h3_c00087{height:27.968965px;}
.hf_c00087{height:31.100625px;}
.h8_c00087{height:34.232285px;}
.hd_c00087{height:37.309951px;}
.h6_c00087{height:40.441611px;}
.h4_c00087{height:43.519277px;}
.h11_c00087{height:52.860264px;}
.h12_c00087{height:55.991924px;}
.h7_c00087{height:59.069590px;}
.h13_c00087{height:62.201250px;}
.hc_c00087{height:127.534160px;}
.he_c00087{height:155.503125px;}
.h1_c00087{height:1503.000000px;}
.h0_c00087{height:1503.360000px;}
.w0_c00087{width:1094.685000px;}
.w1_c00087{width:1095.000000px;}
.x0_c00087{left:0.000000px;}
.x1_c00087{left:2.595000px;}
.x9_c00087{left:5.190000px;}
.x2_c00087{left:7.770000px;}
.x3_c00087{left:17.280000px;}
.xb_c00087{left:21.600000px;}
.x4_c00087{left:26.790000px;}
.xc_c00087{left:52.710000px;}
.xd_c00087{left:95.040000px;}
.xa_c00087{left:142.560000px;}
.x7_c00087{left:174.525000px;}
.x8_c00087{left:181.440000px;}
.x6_c00087{left:210.810000px;}
.x5_c00087{left:215.130000px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls0_c00087{letter-spacing:0.000000pt;}
.ws0_c00087{word-spacing:0.000000pt;}
.fse_c00087{font-size:5.333333pt;}
.fs0_c00087{font-size:6.133333pt;}
.fs8_c00087{font-size:12.266667pt;}
.fs3_c00087{font-size:15.360000pt;}
.fs7_c00087{font-size:18.453333pt;}
.fs9_c00087{font-size:24.586667pt;}
.fs1_c00087{font-size:27.626667pt;}
.fsd_c00087{font-size:30.720000pt;}
.fs6_c00087{font-size:33.813333pt;}
.fsb_c00087{font-size:36.853333pt;}
.fs4_c00087{font-size:39.946667pt;}
.fs2_c00087{font-size:42.986667pt;}
.fsf_c00087{font-size:52.213333pt;}
.fs10_c00087{font-size:55.306667pt;}
.fs5_c00087{font-size:58.346667pt;}
.fs11_c00087{font-size:61.440000pt;}
.fsa_c00087{font-size:125.973333pt;}
.fsc_c00087{font-size:153.600000pt;}
.y0_c00087{bottom:0.000000pt;}
.y25_c00087{bottom:883.200000pt;}
.y24_c00087{bottom:898.560000pt;}
.y23_c00087{bottom:914.693333pt;}
.y22_c00087{bottom:921.600000pt;}
.y21_c00087{bottom:936.960000pt;}
.y20_c00087{bottom:939.266667pt;}
.y1f_c00087{bottom:950.013333pt;}
.y1e_c00087{bottom:959.226667pt;}
.y1d_c00087{bottom:965.373333pt;}
.y1c_c00087{bottom:966.906667pt;}
.y1a_c00087{bottom:980.733333pt;}
.y1b_c00087{bottom:983.040000pt;}
.y18_c00087{bottom:994.560000pt;}
.y19_c00087{bottom:997.626667pt;}
.y17_c00087{bottom:1014.533333pt;}
.y16_c00087{bottom:1024.506667pt;}
.y15_c00087{bottom:1032.186667pt;}
.y14_c00087{bottom:1056.773333pt;}
.y13_c00087{bottom:1062.146667pt;}
.y12_c00087{bottom:1102.853333pt;}
.y11_c00087{bottom:1115.133333pt;}
.y10_c00087{bottom:1115.906667pt;}
.yd_c00087{bottom:1129.733333pt;}
.yf_c00087{bottom:1132.026667pt;}
.ye_c00087{bottom:1133.573333pt;}
.yc_c00087{bottom:1151.226667pt;}
.yb_c00087{bottom:1156.613333pt;}
.ya_c00087{bottom:1161.213333pt;}
.y9_c00087{bottom:1167.360000pt;}
.y7_c00087{bottom:1174.266667pt;}
.y8_c00087{bottom:1177.346667pt;}
.y6_c00087{bottom:1196.546667pt;}
.y4_c00087{bottom:1213.440000pt;}
.y3_c00087{bottom:1214.973333pt;}
.y5_c00087{bottom:1217.280000pt;}
.y2_c00087{bottom:1225.733333pt;}
.y1_c00087{bottom:1227.266667pt;}
.h10_c00087{height:4.799479pt;}
.h2_c00087{height:5.519401pt;}
.ha_c00087{height:11.038802pt;}
.h5_c00087{height:13.822500pt;}
.h9_c00087{height:16.606198pt;}
.hb_c00087{height:22.125599pt;}
.h3_c00087{height:24.861302pt;}
.hf_c00087{height:27.645000pt;}
.h8_c00087{height:30.428698pt;}
.hd_c00087{height:33.164401pt;}
.h6_c00087{height:35.948099pt;}
.h4_c00087{height:38.683802pt;}
.h11_c00087{height:46.986901pt;}
.h12_c00087{height:49.770599pt;}
.h7_c00087{height:52.506302pt;}
.h13_c00087{height:55.290000pt;}
.hc_c00087{height:113.363698pt;}
.he_c00087{height:138.225000pt;}
.h1_c00087{height:1336.000000pt;}
.h0_c00087{height:1336.320000pt;}
.w0_c00087{width:973.053333pt;}
.w1_c00087{width:973.333333pt;}
.x0_c00087{left:0.000000pt;}
.x1_c00087{left:2.306667pt;}
.x9_c00087{left:4.613333pt;}
.x2_c00087{left:6.906667pt;}
.x3_c00087{left:15.360000pt;}
.xb_c00087{left:19.200000pt;}
.x4_c00087{left:23.813333pt;}
.xc_c00087{left:46.853333pt;}
.xd_c00087{left:84.480000pt;}
.xa_c00087{left:126.720000pt;}
.x7_c00087{left:155.133333pt;}
.x8_c00087{left:161.280000pt;}
.x6_c00087{left:187.386667pt;}
.x5_c00087{left:191.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_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_55e583f22053974a5d36a7e1.woff2')format("woff");}.ff1_c00088{font-family:ff1_c00088;line-height:1.109863;font-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_c00088{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,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;}
.fs0_c00088{font-size:3.456000px;}
.y0_c00088{bottom:0.000000px;}
.y1_c00088{bottom:553.830000px;}
.h2_c00088{height:3.110063px;}
.h0_c00088{height:1517.190000px;}
.h1_c00088{height:1517.250000px;}
.w0_c00088{width:1079.130000px;}
.w1_c00088{width:1079.250000px;}
.x0_c00088{left:0.000000px;}
.x1_c00088{left:1052.355000px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ws0_c00088{word-spacing:0.000000pt;}
.fs0_c00088{font-size:3.072000pt;}
.y0_c00088{bottom:0.000000pt;}
.y1_c00088{bottom:492.293333pt;}
.h2_c00088{height:2.764500pt;}
.h0_c00088{height:1348.613333pt;}
.h1_c00088{height:1348.666667pt;}
.w0_c00088{width:959.226667pt;}
.w1_c00088{width:959.333333pt;}
.x0_c00088{left:0.000000pt;}
.x1_c00088{left:935.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00089;src:url('chunks/assets/font_e41610f3b77ff139c3a80a06.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.109863;font-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_c00089{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);}
.v0_c00089{vertical-align:0.000000px;}
.ls0_c00089{letter-spacing:0.000000px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00089{word-spacing:0.000000px;}
.fc0_c00089{color:transparent;}
.fs0_c00089{font-size:600.000000px;}
.y0_c00089{bottom:0.000000px;}
.y1_c00089{bottom:15.000000px;}
.h2_c00089{height:539.941406px;}
.h1_c00089{height:1503.000000px;}
.h0_c00089{height:1503.360000px;}
.w0_c00089{width:1094.685000px;}
.w1_c00089{width:1095.000000px;}
.x0_c00089{left:0.000000px;}
.x1_c00089{left:15.000000px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls0_c00089{letter-spacing:0.000000pt;}
.ws0_c00089{word-spacing:0.000000pt;}
.fs0_c00089{font-size:533.333333pt;}
.y0_c00089{bottom:0.000000pt;}
.y1_c00089{bottom:13.333333pt;}
.h2_c00089{height:479.947917pt;}
.h1_c00089{height:1336.000000pt;}
.h0_c00089{height:1336.320000pt;}
.w0_c00089{width:973.053333pt;}
.w1_c00089{width:973.333333pt;}
.x0_c00089{left:0.000000pt;}
.x1_c00089{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ed757219961a1c9a137d875.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.109863;font-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_c00090{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);}
.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;}
.fs0_c00090{font-size:600.000000px;}
.y0_c00090{bottom:0.000000px;}
.y1_c00090{bottom:15.000000px;}
.h2_c00090{height:539.941406px;}
.h0_c00090{height:1517.190000px;}
.h1_c00090{height:1517.250000px;}
.w0_c00090{width:1079.130000px;}
.w1_c00090{width:1079.250000px;}
.x0_c00090{left:0.000000px;}
.x1_c00090{left:15.000000px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls0_c00090{letter-spacing:0.000000pt;}
.ws0_c00090{word-spacing:0.000000pt;}
.fs0_c00090{font-size:533.333333pt;}
.y0_c00090{bottom:0.000000pt;}
.y1_c00090{bottom:13.333333pt;}
.h2_c00090{height:479.947917pt;}
.h0_c00090{height:1348.613333pt;}
.h1_c00090{height:1348.666667pt;}
.w0_c00090{width:959.226667pt;}
.w1_c00090{width:959.333333pt;}
.x0_c00090{left:0.000000pt;}
.x1_c00090{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_78445eed60dd72a42631db05.woff2')format("woff");}.ff1_c00091{font-family:ff1_c00091;line-height:1.109863;font-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_c00091{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);}
.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;}
.fs0_c00091{font-size:600.000000px;}
.y0_c00091{bottom:0.000000px;}
.y1_c00091{bottom:15.000000px;}
.h2_c00091{height:539.941406px;}
.h1_c00091{height:1503.000000px;}
.h0_c00091{height:1503.360000px;}
.w0_c00091{width:1094.685000px;}
.w1_c00091{width:1095.000000px;}
.x0_c00091{left:0.000000px;}
.x1_c00091{left:15.000000px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls0_c00091{letter-spacing:0.000000pt;}
.ws0_c00091{word-spacing:0.000000pt;}
.fs0_c00091{font-size:533.333333pt;}
.y0_c00091{bottom:0.000000pt;}
.y1_c00091{bottom:13.333333pt;}
.h2_c00091{height:479.947917pt;}
.h1_c00091{height:1336.000000pt;}
.h0_c00091{height:1336.320000pt;}
.w0_c00091{width:973.053333pt;}
.w1_c00091{width:973.333333pt;}
.x0_c00091{left:0.000000pt;}
.x1_c00091{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00092;src:url('chunks/assets/font_a5758318765c510cc5517d7f.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.109863;font-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_c00092{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);}
.v0_c00092{vertical-align:0.000000px;}
.ls0_c00092{letter-spacing:0.000000px;}
.sc__c00092{text-shadow:none;}
.sc0_c00092{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00092{-webkit-text-stroke:0px transparent;}
.sc0_c00092{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00092{word-spacing:0.000000px;}
.fc0_c00092{color:transparent;}
.fs0_c00092{font-size:600.000000px;}
.y0_c00092{bottom:0.000000px;}
.y1_c00092{bottom:15.000000px;}
.h2_c00092{height:539.941406px;}
.h0_c00092{height:1517.190000px;}
.h1_c00092{height:1517.250000px;}
.w0_c00092{width:1079.130000px;}
.w1_c00092{width:1079.250000px;}
.x0_c00092{left:0.000000px;}
.x1_c00092{left:15.000000px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls0_c00092{letter-spacing:0.000000pt;}
.ws0_c00092{word-spacing:0.000000pt;}
.fs0_c00092{font-size:533.333333pt;}
.y0_c00092{bottom:0.000000pt;}
.y1_c00092{bottom:13.333333pt;}
.h2_c00092{height:479.947917pt;}
.h0_c00092{height:1348.613333pt;}
.h1_c00092{height:1348.666667pt;}
.w0_c00092{width:959.226667pt;}
.w1_c00092{width:959.333333pt;}
.x0_c00092{left:0.000000pt;}
.x1_c00092{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00093;src:url('chunks/assets/font_742a1cee874cfe8756be3913.woff2')format("woff");}.ff1_c00093{font-family:ff1_c00093;line-height:1.109863;font-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_c00093{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);}
.v0_c00093{vertical-align:0.000000px;}
.ls0_c00093{letter-spacing:0.000000px;}
.sc__c00093{text-shadow:none;}
.sc0_c00093{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00093{-webkit-text-stroke:0px transparent;}
.sc0_c00093{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00093{word-spacing:0.000000px;}
.fc0_c00093{color:transparent;}
.fs0_c00093{font-size:600.000000px;}
.y0_c00093{bottom:0.000000px;}
.y1_c00093{bottom:15.000000px;}
.h2_c00093{height:539.941406px;}
.h1_c00093{height:1503.000000px;}
.h0_c00093{height:1503.360000px;}
.w0_c00093{width:1094.685000px;}
.w1_c00093{width:1095.000000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:15.000000px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ws0_c00093{word-spacing:0.000000pt;}
.fs0_c00093{font-size:533.333333pt;}
.y0_c00093{bottom:0.000000pt;}
.y1_c00093{bottom:13.333333pt;}
.h2_c00093{height:479.947917pt;}
.h1_c00093{height:1336.000000pt;}
.h0_c00093{height:1336.320000pt;}
.w0_c00093{width:973.053333pt;}
.w1_c00093{width:973.333333pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f887ac41550db8fddc08e93.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.109863;font-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_c00094{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);}
.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;}
.fs0_c00094{font-size:600.000000px;}
.y0_c00094{bottom:0.000000px;}
.y1_c00094{bottom:15.000000px;}
.h2_c00094{height:539.941406px;}
.h0_c00094{height:1517.190000px;}
.h1_c00094{height:1517.250000px;}
.w0_c00094{width:1079.130000px;}
.w1_c00094{width:1079.250000px;}
.x0_c00094{left:0.000000px;}
.x1_c00094{left:15.000000px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls0_c00094{letter-spacing:0.000000pt;}
.ws0_c00094{word-spacing:0.000000pt;}
.fs0_c00094{font-size:533.333333pt;}
.y0_c00094{bottom:0.000000pt;}
.y1_c00094{bottom:13.333333pt;}
.h2_c00094{height:479.947917pt;}
.h0_c00094{height:1348.613333pt;}
.h1_c00094{height:1348.666667pt;}
.w0_c00094{width:959.226667pt;}
.w1_c00094{width:959.333333pt;}
.x0_c00094{left:0.000000pt;}
.x1_c00094{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_199923bef22a766433ca4419.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.109863;font-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_c00095{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);}
.m9_c00095{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m7_c00095{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c00095{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.ma_c00095{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.m3_c00095{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00095{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c00095{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00095{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00095{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00095{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);}
.m5_c00095{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m8_c00095{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c00095{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);}
.v1_c00095{vertical-align:-3.420000px;}
.v0_c00095{vertical-align:0.000000px;}
.ls1_c00095{letter-spacing:0.000000px;}
.ls0_c00095{letter-spacing:573.013573px;}
.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;}
.fs6_c00095{font-size:3.456000px;}
.fs5_c00095{font-size:10.380000px;}
.fs9_c00095{font-size:17.280000px;}
.fsa_c00095{font-size:27.660000px;}
.fs7_c00095{font-size:38.040000px;}
.fs4_c00095{font-size:41.460000px;}
.fs0_c00095{font-size:51.840000px;}
.fs3_c00095{font-size:55.320000px;}
.fs1_c00095{font-size:58.740000px;}
.fs2_c00095{font-size:69.120000px;}
.fs8_c00095{font-size:307.560000px;}
.y0_c00095{bottom:0.000000px;}
.yf_c00095{bottom:1058.400000px;}
.ye_c00095{bottom:1246.755000px;}
.y9_c00095{bottom:1260.570000px;}
.yd_c00095{bottom:1267.485000px;}
.yc_c00095{bottom:1274.400000px;}
.yb_c00095{bottom:1332.285000px;}
.ya_c00095{bottom:1336.605000px;}
.y6_c00095{bottom:1394.490000px;}
.y2_c00095{bottom:1396.230000px;}
.y1_c00095{bottom:1397.085000px;}
.y3_c00095{bottom:1397.955000px;}
.y4_c00095{bottom:1410.045000px;}
.y5_c00095{bottom:1411.770000px;}
.y8_c00095{bottom:1419.555000px;}
.y7_c00095{bottom:1423.875000px;}
.h8_c00095{height:3.110063px;}
.h7_c00095{height:9.340986px;}
.hb_c00095{height:15.550313px;}
.hc_c00095{height:24.891299px;}
.h9_c00095{height:34.232285px;}
.h6_c00095{height:37.309951px;}
.h2_c00095{height:46.650937px;}
.h5_c00095{height:49.782598px;}
.h3_c00095{height:52.860264px;}
.h4_c00095{height:62.201250px;}
.ha_c00095{height:276.773965px;}
.h1_c00095{height:1503.000000px;}
.h0_c00095{height:1503.360000px;}
.w0_c00095{width:1094.685000px;}
.w1_c00095{width:1095.000000px;}
.x0_c00095{left:0.000000px;}
.x10_c00095{left:76.890000px;}
.x11_c00095{left:79.485000px;}
.xd_c00095{left:114.045000px;}
.x13_c00095{left:155.520000px;}
.x12_c00095{left:164.160075px;}
.xe_c00095{left:211.680000px;}
.xf_c00095{left:222.045000px;}
.x1_c00095{left:496.800000px;}
.x2_c00095{left:522.720000px;}
.x9_c00095{left:527.917008px;}
.x3_c00095{left:562.470000px;}
.x4_c00095{left:584.925000px;}
.x5_c00095{left:628.125000px;}
.x6_c00095{left:648.870000px;}
.x7_c00095{left:686.880000px;}
.xa_c00095{left:702.435000px;}
.x8_c00095{left:720.570000px;}
.xb_c00095{left:737.848965px;}
.xc_c00095{left:756.000000px;}
@media print{
.v1_c00095{vertical-align:-3.040000pt;}
.v0_c00095{vertical-align:0.000000pt;}
.ls1_c00095{letter-spacing:0.000000pt;}
.ls0_c00095{letter-spacing:509.345399pt;}
.ws0_c00095{word-spacing:0.000000pt;}
.fs6_c00095{font-size:3.072000pt;}
.fs5_c00095{font-size:9.226667pt;}
.fs9_c00095{font-size:15.360000pt;}
.fsa_c00095{font-size:24.586667pt;}
.fs7_c00095{font-size:33.813333pt;}
.fs4_c00095{font-size:36.853333pt;}
.fs0_c00095{font-size:46.080000pt;}
.fs3_c00095{font-size:49.173333pt;}
.fs1_c00095{font-size:52.213333pt;}
.fs2_c00095{font-size:61.440000pt;}
.fs8_c00095{font-size:273.386667pt;}
.y0_c00095{bottom:0.000000pt;}
.yf_c00095{bottom:940.800000pt;}
.ye_c00095{bottom:1108.226667pt;}
.y9_c00095{bottom:1120.506667pt;}
.yd_c00095{bottom:1126.653333pt;}
.yc_c00095{bottom:1132.800000pt;}
.yb_c00095{bottom:1184.253333pt;}
.ya_c00095{bottom:1188.093333pt;}
.y6_c00095{bottom:1239.546667pt;}
.y2_c00095{bottom:1241.093333pt;}
.y1_c00095{bottom:1241.853333pt;}
.y3_c00095{bottom:1242.626667pt;}
.y4_c00095{bottom:1253.373333pt;}
.y5_c00095{bottom:1254.906667pt;}
.y8_c00095{bottom:1261.826667pt;}
.y7_c00095{bottom:1265.666667pt;}
.h8_c00095{height:2.764500pt;}
.h7_c00095{height:8.303099pt;}
.hb_c00095{height:13.822500pt;}
.hc_c00095{height:22.125599pt;}
.h9_c00095{height:30.428698pt;}
.h6_c00095{height:33.164401pt;}
.h2_c00095{height:41.467500pt;}
.h5_c00095{height:44.251198pt;}
.h3_c00095{height:46.986901pt;}
.h4_c00095{height:55.290000pt;}
.ha_c00095{height:246.021302pt;}
.h1_c00095{height:1336.000000pt;}
.h0_c00095{height:1336.320000pt;}
.w0_c00095{width:973.053333pt;}
.w1_c00095{width:973.333333pt;}
.x0_c00095{left:0.000000pt;}
.x10_c00095{left:68.346667pt;}
.x11_c00095{left:70.653333pt;}
.xd_c00095{left:101.373333pt;}
.x13_c00095{left:138.240000pt;}
.x12_c00095{left:145.920067pt;}
.xe_c00095{left:188.160000pt;}
.xf_c00095{left:197.373333pt;}
.x1_c00095{left:441.600000pt;}
.x2_c00095{left:464.640000pt;}
.x9_c00095{left:469.259563pt;}
.x3_c00095{left:499.973333pt;}
.x4_c00095{left:519.933333pt;}
.x5_c00095{left:558.333333pt;}
.x6_c00095{left:576.773333pt;}
.x7_c00095{left:610.560000pt;}
.xa_c00095{left:624.386667pt;}
.x8_c00095{left:640.506667pt;}
.xb_c00095{left:655.865747pt;}
.xc_c00095{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_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_4676c176dfaa314d57293376.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.109863;font-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_c00096{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);}
.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:600.000000px;}
.y0_c00096{bottom:0.000000px;}
.y1_c00096{bottom:15.000000px;}
.h2_c00096{height:539.941406px;}
.h0_c00096{height:1517.190000px;}
.h1_c00096{height:1517.250000px;}
.w0_c00096{width:1079.130000px;}
.w1_c00096{width:1079.250000px;}
.x0_c00096{left:0.000000px;}
.x1_c00096{left:15.000000px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls0_c00096{letter-spacing:0.000000pt;}
.ws0_c00096{word-spacing:0.000000pt;}
.fs0_c00096{font-size:533.333333pt;}
.y0_c00096{bottom:0.000000pt;}
.y1_c00096{bottom:13.333333pt;}
.h2_c00096{height:479.947917pt;}
.h0_c00096{height:1348.613333pt;}
.h1_c00096{height:1348.666667pt;}
.w0_c00096{width:959.226667pt;}
.w1_c00096{width:959.333333pt;}
.x0_c00096{left:0.000000pt;}
.x1_c00096{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00097;src:url('chunks/assets/font_4eef110f6bd4cf6d8a68c125.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.109863;font-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_c00097{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c00097{transform:matrix(0.030625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030625,0.000000,0.000000,0.250000,0,0);}
.m7_c00097{transform:matrix(0.067300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067300,0.000000,0.000000,0.250000,0,0);}
.m4_c00097{transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);}
.m5_c00097{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1_c00097{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.md_c00097{transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);}
.me_c00097{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.m2_c00097{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc_c00097{transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);}
.mf_c00097{transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);}
.mb_c00097{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m6_c00097{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00097{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c00097{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c00097{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00097{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.v0_c00097{vertical-align:0.000000px;}
.ls0_c00097{letter-spacing:0.000000px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00097{word-spacing:0.000000px;}
.fc0_c00097{color:transparent;}
.fsf_c00097{font-size:3.456000px;}
.fse_c00097{font-size:6.000000px;}
.fs2_c00097{font-size:10.380000px;}
.fs1_c00097{font-size:17.280000px;}
.fs8_c00097{font-size:20.760000px;}
.fs0_c00097{font-size:24.180000px;}
.fs5_c00097{font-size:27.660000px;}
.fs6_c00097{font-size:38.040000px;}
.fs9_c00097{font-size:58.740000px;}
.fsa_c00097{font-size:69.120000px;}
.fsb_c00097{font-size:86.400000px;}
.fs7_c00097{font-size:89.880000px;}
.fsd_c00097{font-size:93.300000px;}
.fsc_c00097{font-size:100.200000px;}
.fs4_c00097{font-size:103.680000px;}
.fs3_c00097{font-size:169.320000px;}
.y0_c00097{bottom:0.000000px;}
.y8_c00097{bottom:593.565000px;}
.y7_c00097{bottom:615.165000px;}
.y6_c00097{bottom:625.530000px;}
.y4_c00097{bottom:632.445000px;}
.ya_c00097{bottom:643.680000px;}
.y9_c00097{bottom:644.550000px;}
.y10_c00097{bottom:646.275000px;}
.y11_c00097{bottom:647.130000px;}
.yc_c00097{bottom:649.725000px;}
.yd_c00097{bottom:651.450000px;}
.y5_c00097{bottom:653.190000px;}
.ye_c00097{bottom:654.045000px;}
.yb_c00097{bottom:657.510000px;}
.yf_c00097{bottom:674.790000px;}
.y2_c00097{bottom:1378.950000px;}
.y3_c00097{bottom:1379.805000px;}
.y1_c00097{bottom:1440.285000px;}
.h11_c00097{height:3.110063px;}
.h10_c00097{height:5.399414px;}
.h4_c00097{height:9.340986px;}
.h3_c00097{height:15.550313px;}
.ha_c00097{height:18.681973px;}
.h2_c00097{height:21.759639px;}
.h7_c00097{height:24.891299px;}
.h8_c00097{height:34.232285px;}
.hb_c00097{height:52.860264px;}
.hc_c00097{height:62.201250px;}
.hd_c00097{height:77.751563px;}
.h9_c00097{height:80.883223px;}
.hf_c00097{height:83.960889px;}
.he_c00097{height:90.170215px;}
.h6_c00097{height:93.301875px;}
.h5_c00097{height:152.371465px;}
.h1_c00097{height:1503.000000px;}
.h0_c00097{height:1503.360000px;}
.w0_c00097{width:1094.685000px;}
.w1_c00097{width:1095.000000px;}
.x0_c00097{left:0.000000px;}
.x2_c00097{left:11.235000px;}
.x3_c00097{left:266.970000px;}
.x4_c00097{left:279.075000px;}
.x5_c00097{left:308.445000px;}
.x6_c00097{left:323.130000px;}
.x7_c00097{left:343.005000px;}
.x8_c00097{left:365.475000px;}
.x9_c00097{left:412.995000px;}
.xc_c00097{left:416.445000px;}
.x1_c00097{left:446.685000px;}
.xd_c00097{left:457.920000px;}
.xa_c00097{left:463.110000px;}
.xb_c00097{left:507.165000px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls0_c00097{letter-spacing:0.000000pt;}
.ws0_c00097{word-spacing:0.000000pt;}
.fsf_c00097{font-size:3.072000pt;}
.fse_c00097{font-size:5.333333pt;}
.fs2_c00097{font-size:9.226667pt;}
.fs1_c00097{font-size:15.360000pt;}
.fs8_c00097{font-size:18.453333pt;}
.fs0_c00097{font-size:21.493333pt;}
.fs5_c00097{font-size:24.586667pt;}
.fs6_c00097{font-size:33.813333pt;}
.fs9_c00097{font-size:52.213333pt;}
.fsa_c00097{font-size:61.440000pt;}
.fsb_c00097{font-size:76.800000pt;}
.fs7_c00097{font-size:79.893333pt;}
.fsd_c00097{font-size:82.933333pt;}
.fsc_c00097{font-size:89.066667pt;}
.fs4_c00097{font-size:92.160000pt;}
.fs3_c00097{font-size:150.506667pt;}
.y0_c00097{bottom:0.000000pt;}
.y8_c00097{bottom:527.613333pt;}
.y7_c00097{bottom:546.813333pt;}
.y6_c00097{bottom:556.026667pt;}
.y4_c00097{bottom:562.173333pt;}
.ya_c00097{bottom:572.160000pt;}
.y9_c00097{bottom:572.933333pt;}
.y10_c00097{bottom:574.466667pt;}
.y11_c00097{bottom:575.226667pt;}
.yc_c00097{bottom:577.533333pt;}
.yd_c00097{bottom:579.066667pt;}
.y5_c00097{bottom:580.613333pt;}
.ye_c00097{bottom:581.373333pt;}
.yb_c00097{bottom:584.453333pt;}
.yf_c00097{bottom:599.813333pt;}
.y2_c00097{bottom:1225.733333pt;}
.y3_c00097{bottom:1226.493333pt;}
.y1_c00097{bottom:1280.253333pt;}
.h11_c00097{height:2.764500pt;}
.h10_c00097{height:4.799479pt;}
.h4_c00097{height:8.303099pt;}
.h3_c00097{height:13.822500pt;}
.ha_c00097{height:16.606198pt;}
.h2_c00097{height:19.341901pt;}
.h7_c00097{height:22.125599pt;}
.h8_c00097{height:30.428698pt;}
.hb_c00097{height:46.986901pt;}
.hc_c00097{height:55.290000pt;}
.hd_c00097{height:69.112500pt;}
.h9_c00097{height:71.896198pt;}
.hf_c00097{height:74.631901pt;}
.he_c00097{height:80.151302pt;}
.h6_c00097{height:82.935000pt;}
.h5_c00097{height:135.441302pt;}
.h1_c00097{height:1336.000000pt;}
.h0_c00097{height:1336.320000pt;}
.w0_c00097{width:973.053333pt;}
.w1_c00097{width:973.333333pt;}
.x0_c00097{left:0.000000pt;}
.x2_c00097{left:9.986667pt;}
.x3_c00097{left:237.306667pt;}
.x4_c00097{left:248.066667pt;}
.x5_c00097{left:274.173333pt;}
.x6_c00097{left:287.226667pt;}
.x7_c00097{left:304.893333pt;}
.x8_c00097{left:324.866667pt;}
.x9_c00097{left:367.106667pt;}
.xc_c00097{left:370.173333pt;}
.x1_c00097{left:397.053333pt;}
.xd_c00097{left:407.040000pt;}
.xa_c00097{left:411.653333pt;}
.xb_c00097{left:450.813333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75a22cb2576f505f16a9ad6c.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.109863;font-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_c00098{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);}
.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;}
.fs0_c00098{font-size:600.000000px;}
.y0_c00098{bottom:0.000000px;}
.y1_c00098{bottom:15.000000px;}
.h2_c00098{height:539.941406px;}
.h0_c00098{height:1517.190000px;}
.h1_c00098{height:1517.250000px;}
.w0_c00098{width:1079.130000px;}
.w1_c00098{width:1079.250000px;}
.x0_c00098{left:0.000000px;}
.x1_c00098{left:15.000000px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ws0_c00098{word-spacing:0.000000pt;}
.fs0_c00098{font-size:533.333333pt;}
.y0_c00098{bottom:0.000000pt;}
.y1_c00098{bottom:13.333333pt;}
.h2_c00098{height:479.947917pt;}
.h0_c00098{height:1348.613333pt;}
.h1_c00098{height:1348.666667pt;}
.w0_c00098{width:959.226667pt;}
.w1_c00098{width:959.333333pt;}
.x0_c00098{left:0.000000pt;}
.x1_c00098{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00099;src:url('chunks/assets/font_f0cf824dc382decc46735c7b.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.109863;font-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_c00099{transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);}
.m11_c00099{transform:matrix(0.125600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125600,0.000000,0.000000,0.250000,0,0);}
.m2_c00099{transform:matrix(0.125950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125950,0.000000,0.000000,0.250000,0,0);}
.m3_c00099{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m29_c00099{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);}
.m6_c00099{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m1f_c00099{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.m19_c00099{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);}
.m26_c00099{transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);}
.m1a_c00099{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.mf_c00099{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.m34_c00099{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m32_c00099{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);}
.m1d_c00099{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);}
.m3a_c00099{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);}
.m9_c00099{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.m38_c00099{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.m21_c00099{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.m1c_c00099{transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);}
.m25_c00099{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);}
.m36_c00099{transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);}
.m30_c00099{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);}
.m27_c00099{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.m1e_c00099{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.m1_c00099{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m35_c00099{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.mc_c00099{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m1b_c00099{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.m5_c00099{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);}
.md_c00099{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00099{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m18_c00099{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);}
.m10_c00099{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m39_c00099{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);}
.m2a_c00099{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00099{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00099{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m23_c00099{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);}
.m2b_c00099{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c00099{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00099{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c00099{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m31_c00099{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00099{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00099{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c00099{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00099{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m33_c00099{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c00099{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);}
.m8_c00099{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mb_c00099{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00099{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m12_c00099{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m20_c00099{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m16_c00099{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);}
.m24_c00099{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m13_c00099{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m28_c00099{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00099{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m37_c00099{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m14_c00099{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.v1_c00099{vertical-align:-10.380000px;}
.v2_c00099{vertical-align:-3.420000px;}
.v0_c00099{vertical-align:0.000000px;}
.ls1_c00099{letter-spacing:0.000000px;}
.ls0_c00099{letter-spacing:31.080000px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00099{word-spacing:-17.828880px;}
.ws1_c00099{word-spacing:0.000000px;}
.fc0_c00099{color:transparent;}
.fsc_c00099{font-size:3.456000px;}
.fs0_c00099{font-size:6.000000px;}
.fsd_c00099{font-size:6.900000px;}
.fs1_c00099{font-size:10.380000px;}
.fs4_c00099{font-size:13.800000px;}
.fs2_c00099{font-size:20.760000px;}
.fs12_c00099{font-size:24.180000px;}
.fs13_c00099{font-size:31.080000px;}
.fs8_c00099{font-size:34.560000px;}
.fsf_c00099{font-size:38.040000px;}
.fse_c00099{font-size:44.940000px;}
.fs17_c00099{font-size:48.360000px;}
.fs6_c00099{font-size:51.840000px;}
.fs5_c00099{font-size:55.320000px;}
.fs3_c00099{font-size:58.740000px;}
.fs14_c00099{font-size:62.220000px;}
.fs16_c00099{font-size:65.640000px;}
.fs15_c00099{font-size:69.120000px;}
.fsb_c00099{font-size:72.600000px;}
.fs10_c00099{font-size:76.020000px;}
.fs9_c00099{font-size:79.500000px;}
.fsa_c00099{font-size:82.920000px;}
.fs11_c00099{font-size:96.780000px;}
.fs7_c00099{font-size:155.520000px;}
.y0_c00099{bottom:0.000000px;}
.y35_c00099{bottom:841.530000px;}
.y33_c00099{bottom:842.400000px;}
.y31_c00099{bottom:844.125000px;}
.y36_c00099{bottom:846.720000px;}
.y34_c00099{bottom:847.590000px;}
.y32_c00099{bottom:849.315000px;}
.y2f_c00099{bottom:862.275000px;}
.y2e_c00099{bottom:866.595000px;}
.y30_c00099{bottom:876.090000px;}
.y2b_c00099{bottom:883.005000px;}
.y2a_c00099{bottom:883.875000px;}
.y2d_c00099{bottom:884.730000px;}
.y29_c00099{bottom:885.600000px;}
.y2c_c00099{bottom:888.195000px;}
.y28_c00099{bottom:889.920000px;}
.y27_c00099{bottom:907.200000px;}
.y25_c00099{bottom:908.070000px;}
.y26_c00099{bottom:908.925000px;}
.y24_c00099{bottom:909.795000px;}
.y23_c00099{bottom:910.650000px;}
.y22_c00099{bottom:918.435000px;}
.y21_c00099{bottom:922.755000px;}
.y20_c00099{bottom:924.480000px;}
.y1f_c00099{bottom:927.075000px;}
.y1d_c00099{bottom:929.670000px;}
.y1e_c00099{bottom:930.525000px;}
.y1a_c00099{bottom:943.485000px;}
.y19_c00099{bottom:944.355000px;}
.y18_c00099{bottom:945.210000px;}
.y1c_c00099{bottom:947.805000px;}
.y1b_c00099{bottom:948.675000px;}
.y15_c00099{bottom:962.490000px;}
.y17_c00099{bottom:965.955000px;}
.y12_c00099{bottom:966.810000px;}
.y7_c00099{bottom:968.550000px;}
.y14_c00099{bottom:969.405000px;}
.y13_c00099{bottom:970.275000px;}
.y11_c00099{bottom:971.130000px;}
.y16_c00099{bottom:973.725000px;}
.y10_c00099{bottom:974.595000px;}
.yc_c00099{bottom:984.090000px;}
.y9_c00099{bottom:984.960000px;}
.yf_c00099{bottom:985.830000px;}
.yb_c00099{bottom:989.280000px;}
.ya_c00099{bottom:990.150000px;}
.y8_c00099{bottom:991.005000px;}
.ye_c00099{bottom:1000.515000px;}
.yd_c00099{bottom:1003.110000px;}
.y5_c00099{bottom:1004.835000px;}
.y6_c00099{bottom:1005.690000px;}
.y4_c00099{bottom:1011.750000px;}
.y3_c00099{bottom:1016.070000px;}
.y2_c00099{bottom:1092.090000px;}
.y1_c00099{bottom:1350.435000px;}
.he_c00099{height:3.110063px;}
.h2_c00099{height:5.399414px;}
.hf_c00099{height:6.209326px;}
.h6_c00099{height:9.340986px;}
.h5_c00099{height:12.418652px;}
.h3_c00099{height:18.681973px;}
.h14_c00099{height:21.759639px;}
.h15_c00099{height:27.968965px;}
.ha_c00099{height:31.100625px;}
.h11_c00099{height:34.232285px;}
.h10_c00099{height:40.441611px;}
.h19_c00099{height:43.519277px;}
.h8_c00099{height:46.650937px;}
.h7_c00099{height:49.782598px;}
.h4_c00099{height:52.860264px;}
.h16_c00099{height:55.991924px;}
.h18_c00099{height:59.069590px;}
.h17_c00099{height:62.201250px;}
.hd_c00099{height:65.332910px;}
.h12_c00099{height:68.410576px;}
.hb_c00099{height:71.542236px;}
.hc_c00099{height:74.619902px;}
.h13_c00099{height:87.092549px;}
.h9_c00099{height:139.952812px;}
.h1_c00099{height:1503.000000px;}
.h0_c00099{height:1503.360000px;}
.w0_c00099{width:1094.685000px;}
.w1_c00099{width:1095.000000px;}
.x0_c00099{left:0.000000px;}
.x1_c00099{left:31.965000px;}
.x2_c00099{left:48.390000px;}
.x3_c00099{left:236.730000px;}
.x4_c00099{left:241.050000px;}
.x5_c00099{left:333.510000px;}
.x6_c00099{left:355.965000px;}
.x7_c00099{left:374.115000px;}
.x8_c00099{left:393.120000px;}
.x9_c00099{left:414.720000px;}
.x29_c00099{left:578.010000px;}
.x39_c00099{left:579.750000px;}
.x17_c00099{left:581.475000px;}
.x1d_c00099{left:588.390000px;}
.xa_c00099{left:590.115000px;}
.x1e_c00099{left:619.485000px;}
.x23_c00099{left:621.210000px;}
.x2a_c00099{left:624.675000px;}
.x35_c00099{left:631.590000px;}
.xb_c00099{left:633.315000px;}
.xc_c00099{left:650.595000px;}
.x2f_c00099{left:656.640000px;}
.xd_c00099{left:665.280000px;}
.x30_c00099{left:670.470000px;}
.x24_c00099{left:678.240000px;}
.x2b_c00099{left:685.155000px;}
.x25_c00099{left:686.880000px;}
.x1f_c00099{left:690.330000px;}
.x31_c00099{left:706.755000px;}
.xe_c00099{left:712.800000px;}
.x3a_c00099{left:715.395000px;}
.x36_c00099{left:718.845000px;}
.x2c_c00099{left:730.080000px;}
.xf_c00099{left:736.125000px;}
.x18_c00099{left:747.360000px;}
.x32_c00099{left:757.725000px;}
.x19_c00099{left:759.450000px;}
.x26_c00099{left:761.190000px;}
.x20_c00099{left:773.280000px;}
.x10_c00099{left:780.195000px;}
.x2d_c00099{left:782.790000px;}
.x37_c00099{left:799.200000px;}
.x33_c00099{left:802.650000px;}
.x2e_c00099{left:819.930000px;}
.x1a_c00099{left:825.120000px;}
.x27_c00099{left:844.125000px;}
.x11_c00099{left:845.850000px;}
.x34_c00099{left:849.315000px;}
.x21_c00099{left:856.230000px;}
.x1b_c00099{left:858.810000px;}
.x12_c00099{left:862.275000px;}
.x28_c00099{left:880.410000px;}
.x38_c00099{left:889.050000px;}
.x3b_c00099{left:892.515000px;}
.x13_c00099{left:894.240000px;}
.x22_c00099{left:901.155000px;}
.x1c_c00099{left:949.530000px;}
.x14_c00099{left:952.995000px;}
.x15_c00099{left:963.360000px;}
.x16_c00099{left:969.405000px;}
@media print{
.v1_c00099{vertical-align:-9.226667pt;}
.v2_c00099{vertical-align:-3.040000pt;}
.v0_c00099{vertical-align:0.000000pt;}
.ls1_c00099{letter-spacing:0.000000pt;}
.ls0_c00099{letter-spacing:27.626667pt;}
.ws0_c00099{word-spacing:-15.847893pt;}
.ws1_c00099{word-spacing:0.000000pt;}
.fsc_c00099{font-size:3.072000pt;}
.fs0_c00099{font-size:5.333333pt;}
.fsd_c00099{font-size:6.133333pt;}
.fs1_c00099{font-size:9.226667pt;}
.fs4_c00099{font-size:12.266667pt;}
.fs2_c00099{font-size:18.453333pt;}
.fs12_c00099{font-size:21.493333pt;}
.fs13_c00099{font-size:27.626667pt;}
.fs8_c00099{font-size:30.720000pt;}
.fsf_c00099{font-size:33.813333pt;}
.fse_c00099{font-size:39.946667pt;}
.fs17_c00099{font-size:42.986667pt;}
.fs6_c00099{font-size:46.080000pt;}
.fs5_c00099{font-size:49.173333pt;}
.fs3_c00099{font-size:52.213333pt;}
.fs14_c00099{font-size:55.306667pt;}
.fs16_c00099{font-size:58.346667pt;}
.fs15_c00099{font-size:61.440000pt;}
.fsb_c00099{font-size:64.533333pt;}
.fs10_c00099{font-size:67.573333pt;}
.fs9_c00099{font-size:70.666667pt;}
.fsa_c00099{font-size:73.706667pt;}
.fs11_c00099{font-size:86.026667pt;}
.fs7_c00099{font-size:138.240000pt;}
.y0_c00099{bottom:0.000000pt;}
.y35_c00099{bottom:748.026667pt;}
.y33_c00099{bottom:748.800000pt;}
.y31_c00099{bottom:750.333333pt;}
.y36_c00099{bottom:752.640000pt;}
.y34_c00099{bottom:753.413333pt;}
.y32_c00099{bottom:754.946667pt;}
.y2f_c00099{bottom:766.466667pt;}
.y2e_c00099{bottom:770.306667pt;}
.y30_c00099{bottom:778.746667pt;}
.y2b_c00099{bottom:784.893333pt;}
.y2a_c00099{bottom:785.666667pt;}
.y2d_c00099{bottom:786.426667pt;}
.y29_c00099{bottom:787.200000pt;}
.y2c_c00099{bottom:789.506667pt;}
.y28_c00099{bottom:791.040000pt;}
.y27_c00099{bottom:806.400000pt;}
.y25_c00099{bottom:807.173333pt;}
.y26_c00099{bottom:807.933333pt;}
.y24_c00099{bottom:808.706667pt;}
.y23_c00099{bottom:809.466667pt;}
.y22_c00099{bottom:816.386667pt;}
.y21_c00099{bottom:820.226667pt;}
.y20_c00099{bottom:821.760000pt;}
.y1f_c00099{bottom:824.066667pt;}
.y1d_c00099{bottom:826.373333pt;}
.y1e_c00099{bottom:827.133333pt;}
.y1a_c00099{bottom:838.653333pt;}
.y19_c00099{bottom:839.426667pt;}
.y18_c00099{bottom:840.186667pt;}
.y1c_c00099{bottom:842.493333pt;}
.y1b_c00099{bottom:843.266667pt;}
.y15_c00099{bottom:855.546667pt;}
.y17_c00099{bottom:858.626667pt;}
.y12_c00099{bottom:859.386667pt;}
.y7_c00099{bottom:860.933333pt;}
.y14_c00099{bottom:861.693333pt;}
.y13_c00099{bottom:862.466667pt;}
.y11_c00099{bottom:863.226667pt;}
.y16_c00099{bottom:865.533333pt;}
.y10_c00099{bottom:866.306667pt;}
.yc_c00099{bottom:874.746667pt;}
.y9_c00099{bottom:875.520000pt;}
.yf_c00099{bottom:876.293333pt;}
.yb_c00099{bottom:879.360000pt;}
.ya_c00099{bottom:880.133333pt;}
.y8_c00099{bottom:880.893333pt;}
.ye_c00099{bottom:889.346667pt;}
.yd_c00099{bottom:891.653333pt;}
.y5_c00099{bottom:893.186667pt;}
.y6_c00099{bottom:893.946667pt;}
.y4_c00099{bottom:899.333333pt;}
.y3_c00099{bottom:903.173333pt;}
.y2_c00099{bottom:970.746667pt;}
.y1_c00099{bottom:1200.386667pt;}
.he_c00099{height:2.764500pt;}
.h2_c00099{height:4.799479pt;}
.hf_c00099{height:5.519401pt;}
.h6_c00099{height:8.303099pt;}
.h5_c00099{height:11.038802pt;}
.h3_c00099{height:16.606198pt;}
.h14_c00099{height:19.341901pt;}
.h15_c00099{height:24.861302pt;}
.ha_c00099{height:27.645000pt;}
.h11_c00099{height:30.428698pt;}
.h10_c00099{height:35.948099pt;}
.h19_c00099{height:38.683802pt;}
.h8_c00099{height:41.467500pt;}
.h7_c00099{height:44.251198pt;}
.h4_c00099{height:46.986901pt;}
.h16_c00099{height:49.770599pt;}
.h18_c00099{height:52.506302pt;}
.h17_c00099{height:55.290000pt;}
.hd_c00099{height:58.073698pt;}
.h12_c00099{height:60.809401pt;}
.hb_c00099{height:63.593099pt;}
.hc_c00099{height:66.328802pt;}
.h13_c00099{height:77.415599pt;}
.h9_c00099{height:124.402500pt;}
.h1_c00099{height:1336.000000pt;}
.h0_c00099{height:1336.320000pt;}
.w0_c00099{width:973.053333pt;}
.w1_c00099{width:973.333333pt;}
.x0_c00099{left:0.000000pt;}
.x1_c00099{left:28.413333pt;}
.x2_c00099{left:43.013333pt;}
.x3_c00099{left:210.426667pt;}
.x4_c00099{left:214.266667pt;}
.x5_c00099{left:296.453333pt;}
.x6_c00099{left:316.413333pt;}
.x7_c00099{left:332.546667pt;}
.x8_c00099{left:349.440000pt;}
.x9_c00099{left:368.640000pt;}
.x29_c00099{left:513.786667pt;}
.x39_c00099{left:515.333333pt;}
.x17_c00099{left:516.866667pt;}
.x1d_c00099{left:523.013333pt;}
.xa_c00099{left:524.546667pt;}
.x1e_c00099{left:550.653333pt;}
.x23_c00099{left:552.186667pt;}
.x2a_c00099{left:555.266667pt;}
.x35_c00099{left:561.413333pt;}
.xb_c00099{left:562.946667pt;}
.xc_c00099{left:578.306667pt;}
.x2f_c00099{left:583.680000pt;}
.xd_c00099{left:591.360000pt;}
.x30_c00099{left:595.973333pt;}
.x24_c00099{left:602.880000pt;}
.x2b_c00099{left:609.026667pt;}
.x25_c00099{left:610.560000pt;}
.x1f_c00099{left:613.626667pt;}
.x31_c00099{left:628.226667pt;}
.xe_c00099{left:633.600000pt;}
.x3a_c00099{left:635.906667pt;}
.x36_c00099{left:638.973333pt;}
.x2c_c00099{left:648.960000pt;}
.xf_c00099{left:654.333333pt;}
.x18_c00099{left:664.320000pt;}
.x32_c00099{left:673.533333pt;}
.x19_c00099{left:675.066667pt;}
.x26_c00099{left:676.613333pt;}
.x20_c00099{left:687.360000pt;}
.x10_c00099{left:693.506667pt;}
.x2d_c00099{left:695.813333pt;}
.x37_c00099{left:710.400000pt;}
.x33_c00099{left:713.466667pt;}
.x2e_c00099{left:728.826667pt;}
.x1a_c00099{left:733.440000pt;}
.x27_c00099{left:750.333333pt;}
.x11_c00099{left:751.866667pt;}
.x34_c00099{left:754.946667pt;}
.x21_c00099{left:761.093333pt;}
.x1b_c00099{left:763.386667pt;}
.x12_c00099{left:766.466667pt;}
.x28_c00099{left:782.586667pt;}
.x38_c00099{left:790.266667pt;}
.x3b_c00099{left:793.346667pt;}
.x13_c00099{left:794.880000pt;}
.x22_c00099{left:801.026667pt;}
.x1c_c00099{left:844.026667pt;}
.x14_c00099{left:847.106667pt;}
.x15_c00099{left:856.320000pt;}
.x16_c00099{left:861.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_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_dc79fa9cefd4c59ea22d9023.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.109863;font-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.128700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);}
.m4_c00100{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);}
.m5_c00100{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1_c00100{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2_c00100{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m0_c00100{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,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;}
.fs1_c00100{font-size:13.800000px;}
.fs3_c00100{font-size:17.280000px;}
.fs2_c00100{font-size:20.760000px;}
.fs0_c00100{font-size:24.180000px;}
.fs4_c00100{font-size:34.560000px;}
.y0_c00100{bottom:0.000000px;}
.y6_c00100{bottom:1359.075000px;}
.y5_c00100{bottom:1371.165000px;}
.y3_c00100{bottom:1372.035000px;}
.y2_c00100{bottom:1374.630000px;}
.y4_c00100{bottom:1378.080000px;}
.y1_c00100{bottom:1388.445000px;}
.h3_c00100{height:12.418652px;}
.h5_c00100{height:15.550313px;}
.h4_c00100{height:18.681973px;}
.h2_c00100{height:21.759639px;}
.h6_c00100{height:31.100625px;}
.h0_c00100{height:1517.190000px;}
.h1_c00100{height:1517.250000px;}
.w0_c00100{width:1090.365000px;}
.w1_c00100{width:1090.500000px;}
.x0_c00100{left:0.000000px;}
.x2_c00100{left:117.510000px;}
.x6_c00100{left:127.005000px;}
.x3_c00100{left:137.370000px;}
.x4_c00100{left:150.330000px;}
.x5_c00100{left:158.970000px;}
.x1_c00100{left:1080.000000px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:0.000000pt;}
.fs1_c00100{font-size:12.266667pt;}
.fs3_c00100{font-size:15.360000pt;}
.fs2_c00100{font-size:18.453333pt;}
.fs0_c00100{font-size:21.493333pt;}
.fs4_c00100{font-size:30.720000pt;}
.y0_c00100{bottom:0.000000pt;}
.y6_c00100{bottom:1208.066667pt;}
.y5_c00100{bottom:1218.813333pt;}
.y3_c00100{bottom:1219.586667pt;}
.y2_c00100{bottom:1221.893333pt;}
.y4_c00100{bottom:1224.960000pt;}
.y1_c00100{bottom:1234.173333pt;}
.h3_c00100{height:11.038802pt;}
.h5_c00100{height:13.822500pt;}
.h4_c00100{height:16.606198pt;}
.h2_c00100{height:19.341901pt;}
.h6_c00100{height:27.645000pt;}
.h0_c00100{height:1348.613333pt;}
.h1_c00100{height:1348.666667pt;}
.w0_c00100{width:969.213333pt;}
.w1_c00100{width:969.333333pt;}
.x0_c00100{left:0.000000pt;}
.x2_c00100{left:104.453333pt;}
.x6_c00100{left:112.893333pt;}
.x3_c00100{left:122.106667pt;}
.x4_c00100{left:133.626667pt;}
.x5_c00100{left:141.306667pt;}
.x1_c00100{left:960.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_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_7d1a50c1d0423e1f53c23032.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.109863;font-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_c00101{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m6_c00101{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c00101{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);}
.m8_c00101{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);}
.m7_c00101{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00101{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4_c00101{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m2_c00101{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1_c00101{transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757500,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;}
.fs2_c00101{font-size:3.456000px;}
.fs1_c00101{font-size:10.380000px;}
.fs0_c00101{font-size:13.800000px;}
.fs5_c00101{font-size:17.280000px;}
.fs6_c00101{font-size:20.760000px;}
.fs4_c00101{font-size:27.660000px;}
.fs3_c00101{font-size:169.320000px;}
.y0_c00101{bottom:0.000000px;}
.y9_c00101{bottom:996.195000px;}
.y8_c00101{bottom:999.645000px;}
.y7_c00101{bottom:1002.240000px;}
.y6_c00101{bottom:1015.200000px;}
.y4_c00101{bottom:1021.245000px;}
.y5_c00101{bottom:1060.125000px;}
.y3_c00101{bottom:1092.090000px;}
.y2_c00101{bottom:1097.280000px;}
.y1_c00101{bottom:1113.690000px;}
.h4_c00101{height:3.110063px;}
.h3_c00101{height:9.340986px;}
.h2_c00101{height:12.418652px;}
.h7_c00101{height:15.550313px;}
.h8_c00101{height:18.681973px;}
.h6_c00101{height:24.891299px;}
.h5_c00101{height:152.371465px;}
.h1_c00101{height:1503.000000px;}
.h0_c00101{height:1503.360000px;}
.w0_c00101{width:1088.640000px;}
.w1_c00101{width:1089.000000px;}
.x0_c00101{left:0.000000px;}
.x7_c00101{left:13.830000px;}
.x1_c00101{left:28.515000px;}
.x8_c00101{left:38.880000px;}
.x4_c00101{left:102.810000px;}
.x2_c00101{left:168.480000px;}
.x3_c00101{left:172.800000px;}
.x6_c00101{left:177.120000px;}
.x5_c00101{left:221.190000px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls0_c00101{letter-spacing:0.000000pt;}
.ws0_c00101{word-spacing:0.000000pt;}
.fs2_c00101{font-size:3.072000pt;}
.fs1_c00101{font-size:9.226667pt;}
.fs0_c00101{font-size:12.266667pt;}
.fs5_c00101{font-size:15.360000pt;}
.fs6_c00101{font-size:18.453333pt;}
.fs4_c00101{font-size:24.586667pt;}
.fs3_c00101{font-size:150.506667pt;}
.y0_c00101{bottom:0.000000pt;}
.y9_c00101{bottom:885.506667pt;}
.y8_c00101{bottom:888.573333pt;}
.y7_c00101{bottom:890.880000pt;}
.y6_c00101{bottom:902.400000pt;}
.y4_c00101{bottom:907.773333pt;}
.y5_c00101{bottom:942.333333pt;}
.y3_c00101{bottom:970.746667pt;}
.y2_c00101{bottom:975.360000pt;}
.y1_c00101{bottom:989.946667pt;}
.h4_c00101{height:2.764500pt;}
.h3_c00101{height:8.303099pt;}
.h2_c00101{height:11.038802pt;}
.h7_c00101{height:13.822500pt;}
.h8_c00101{height:16.606198pt;}
.h6_c00101{height:22.125599pt;}
.h5_c00101{height:135.441302pt;}
.h1_c00101{height:1336.000000pt;}
.h0_c00101{height:1336.320000pt;}
.w0_c00101{width:967.680000pt;}
.w1_c00101{width:968.000000pt;}
.x0_c00101{left:0.000000pt;}
.x7_c00101{left:12.293333pt;}
.x1_c00101{left:25.346667pt;}
.x8_c00101{left:34.560000pt;}
.x4_c00101{left:91.386667pt;}
.x2_c00101{left:149.760000pt;}
.x3_c00101{left:153.600000pt;}
.x6_c00101{left:157.440000pt;}
.x5_c00101{left:196.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8c47e63a3ea995e6586c57f.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.109863;font-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_c00102{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);}
.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:600.000000px;}
.y0_c00102{bottom:0.000000px;}
.y1_c00102{bottom:15.000000px;}
.h2_c00102{height:539.941406px;}
.h0_c00102{height:1517.190000px;}
.h1_c00102{height:1517.250000px;}
.w0_c00102{width:1090.365000px;}
.w1_c00102{width:1090.500000px;}
.x0_c00102{left:0.000000px;}
.x1_c00102{left:15.000000px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ws0_c00102{word-spacing:0.000000pt;}
.fs0_c00102{font-size:533.333333pt;}
.y0_c00102{bottom:0.000000pt;}
.y1_c00102{bottom:13.333333pt;}
.h2_c00102{height:479.947917pt;}
.h0_c00102{height:1348.613333pt;}
.h1_c00102{height:1348.666667pt;}
.w0_c00102{width:969.213333pt;}
.w1_c00102{width:969.333333pt;}
.x0_c00102{left:0.000000pt;}
.x1_c00102{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec710cfcd5d8105ed8cb985f.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.109863;font-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_c00103{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);}
.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:600.000000px;}
.y0_c00103{bottom:0.000000px;}
.y1_c00103{bottom:15.000000px;}
.h2_c00103{height:539.941406px;}
.h1_c00103{height:1503.000000px;}
.h0_c00103{height:1503.360000px;}
.w0_c00103{width:1088.640000px;}
.w1_c00103{width:1089.000000px;}
.x0_c00103{left:0.000000px;}
.x1_c00103{left:15.000000px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws0_c00103{word-spacing:0.000000pt;}
.fs0_c00103{font-size:533.333333pt;}
.y0_c00103{bottom:0.000000pt;}
.y1_c00103{bottom:13.333333pt;}
.h2_c00103{height:479.947917pt;}
.h1_c00103{height:1336.000000pt;}
.h0_c00103{height:1336.320000pt;}
.w0_c00103{width:967.680000pt;}
.w1_c00103{width:968.000000pt;}
.x0_c00103{left:0.000000pt;}
.x1_c00103{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_10ffc9baf5bc2a3c6afe4f01.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.109863;font-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_c00104{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);}
.m0_c00104{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00104{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);}
.m1_c00104{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);}
.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;}
.fs1_c00104{font-size:6.900000px;}
.fs0_c00104{font-size:48.360000px;}
.fs3_c00104{font-size:55.320000px;}
.fs2_c00104{font-size:96.780000px;}
.y0_c00104{bottom:0.000000px;}
.y3_c00104{bottom:393.120000px;}
.y1_c00104{bottom:1042.845000px;}
.y2_c00104{bottom:1047.165000px;}
.h3_c00104{height:6.209326px;}
.h2_c00104{height:43.519277px;}
.h5_c00104{height:49.782598px;}
.h4_c00104{height:87.092549px;}
.h0_c00104{height:1517.190000px;}
.h1_c00104{height:1517.250000px;}
.w0_c00104{width:1090.365000px;}
.w1_c00104{width:1090.500000px;}
.x0_c00104{left:0.000000px;}
.x3_c00104{left:314.490000px;}
.x4_c00104{left:418.170000px;}
.x1_c00104{left:1052.355000px;}
.x2_c00104{left:1070.490000px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ws0_c00104{word-spacing:0.000000pt;}
.fs1_c00104{font-size:6.133333pt;}
.fs0_c00104{font-size:42.986667pt;}
.fs3_c00104{font-size:49.173333pt;}
.fs2_c00104{font-size:86.026667pt;}
.y0_c00104{bottom:0.000000pt;}
.y3_c00104{bottom:349.440000pt;}
.y1_c00104{bottom:926.973333pt;}
.y2_c00104{bottom:930.813333pt;}
.h3_c00104{height:5.519401pt;}
.h2_c00104{height:38.683802pt;}
.h5_c00104{height:44.251198pt;}
.h4_c00104{height:77.415599pt;}
.h0_c00104{height:1348.613333pt;}
.h1_c00104{height:1348.666667pt;}
.w0_c00104{width:969.213333pt;}
.w1_c00104{width:969.333333pt;}
.x0_c00104{left:0.000000pt;}
.x3_c00104{left:279.546667pt;}
.x4_c00104{left:371.706667pt;}
.x1_c00104{left:935.426667pt;}
.x2_c00104{left:951.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00105;src:url('chunks/assets/font_73b6ee20dd29fac971f528de.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.109863;font-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_c00105{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb_c00105{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);}
.m9_c00105{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m5_c00105{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);}
.m0_c00105{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00105{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);}
.m1_c00105{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00105{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00105{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00105{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);}
.m8_c00105{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);}
.ma_c00105{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.md_c00105{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me_c00105{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m3_c00105{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.v0_c00105{vertical-align:0.000000px;}
.ls0_c00105{letter-spacing:0.000000px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00105{word-spacing:0.000000px;}
.fc0_c00105{color:transparent;}
.fs9_c00105{font-size:10.380000px;}
.fs1_c00105{font-size:13.800000px;}
.fs0_c00105{font-size:17.280000px;}
.fs8_c00105{font-size:20.760000px;}
.fsa_c00105{font-size:27.660000px;}
.fs7_c00105{font-size:31.080000px;}
.fs6_c00105{font-size:51.840000px;}
.fs5_c00105{font-size:55.320000px;}
.fs2_c00105{font-size:58.740000px;}
.fs4_c00105{font-size:62.220000px;}
.fs3_c00105{font-size:65.640000px;}
.y0_c00105{bottom:0.000000px;}
.yc_c00105{bottom:1209.600000px;}
.yb_c00105{bottom:1210.470000px;}
.ya_c00105{bottom:1219.110000px;}
.y9_c00105{bottom:1222.560000px;}
.y3_c00105{bottom:1370.310000px;}
.y4_c00105{bottom:1371.165000px;}
.y6_c00105{bottom:1372.035000px;}
.y5_c00105{bottom:1372.890000px;}
.y7_c00105{bottom:1373.760000px;}
.y8_c00105{bottom:1374.630000px;}
.y1_c00105{bottom:1418.685000px;}
.y2_c00105{bottom:1421.280000px;}
.hb_c00105{height:9.340986px;}
.h3_c00105{height:12.418652px;}
.h2_c00105{height:15.550313px;}
.ha_c00105{height:18.681973px;}
.hc_c00105{height:24.891299px;}
.h9_c00105{height:27.968965px;}
.h8_c00105{height:46.650937px;}
.h7_c00105{height:49.782598px;}
.h4_c00105{height:52.860264px;}
.h6_c00105{height:55.991924px;}
.h5_c00105{height:59.069590px;}
.h1_c00105{height:1503.000000px;}
.h0_c00105{height:1503.360000px;}
.w0_c00105{width:1088.640000px;}
.w1_c00105{width:1089.000000px;}
.x0_c00105{left:0.000000px;}
.xd_c00105{left:4.320000px;}
.xe_c00105{left:38.880000px;}
.xf_c00105{left:43.200000px;}
.x1_c00105{left:60.480000px;}
.x2_c00105{left:76.035000px;}
.x3_c00105{left:287.715000px;}
.x4_c00105{left:318.810000px;}
.x5_c00105{left:356.835000px;}
.x6_c00105{left:377.565000px;}
.x7_c00105{left:395.715000px;}
.x8_c00105{left:420.765000px;}
.x9_c00105{left:440.640000px;}
.xa_c00105{left:462.240000px;}
.xb_c00105{left:479.520000px;}
.xc_c00105{left:494.205000px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls0_c00105{letter-spacing:0.000000pt;}
.ws0_c00105{word-spacing:0.000000pt;}
.fs9_c00105{font-size:9.226667pt;}
.fs1_c00105{font-size:12.266667pt;}
.fs0_c00105{font-size:15.360000pt;}
.fs8_c00105{font-size:18.453333pt;}
.fsa_c00105{font-size:24.586667pt;}
.fs7_c00105{font-size:27.626667pt;}
.fs6_c00105{font-size:46.080000pt;}
.fs5_c00105{font-size:49.173333pt;}
.fs2_c00105{font-size:52.213333pt;}
.fs4_c00105{font-size:55.306667pt;}
.fs3_c00105{font-size:58.346667pt;}
.y0_c00105{bottom:0.000000pt;}
.yc_c00105{bottom:1075.200000pt;}
.yb_c00105{bottom:1075.973333pt;}
.ya_c00105{bottom:1083.653333pt;}
.y9_c00105{bottom:1086.720000pt;}
.y3_c00105{bottom:1218.053333pt;}
.y4_c00105{bottom:1218.813333pt;}
.y6_c00105{bottom:1219.586667pt;}
.y5_c00105{bottom:1220.346667pt;}
.y7_c00105{bottom:1221.120000pt;}
.y8_c00105{bottom:1221.893333pt;}
.y1_c00105{bottom:1261.053333pt;}
.y2_c00105{bottom:1263.360000pt;}
.hb_c00105{height:8.303099pt;}
.h3_c00105{height:11.038802pt;}
.h2_c00105{height:13.822500pt;}
.ha_c00105{height:16.606198pt;}
.hc_c00105{height:22.125599pt;}
.h9_c00105{height:24.861302pt;}
.h8_c00105{height:41.467500pt;}
.h7_c00105{height:44.251198pt;}
.h4_c00105{height:46.986901pt;}
.h6_c00105{height:49.770599pt;}
.h5_c00105{height:52.506302pt;}
.h1_c00105{height:1336.000000pt;}
.h0_c00105{height:1336.320000pt;}
.w0_c00105{width:967.680000pt;}
.w1_c00105{width:968.000000pt;}
.x0_c00105{left:0.000000pt;}
.xd_c00105{left:3.840000pt;}
.xe_c00105{left:34.560000pt;}
.xf_c00105{left:38.400000pt;}
.x1_c00105{left:53.760000pt;}
.x2_c00105{left:67.586667pt;}
.x3_c00105{left:255.746667pt;}
.x4_c00105{left:283.386667pt;}
.x5_c00105{left:317.186667pt;}
.x6_c00105{left:335.613333pt;}
.x7_c00105{left:351.746667pt;}
.x8_c00105{left:374.013333pt;}
.x9_c00105{left:391.680000pt;}
.xa_c00105{left:410.880000pt;}
.xb_c00105{left:426.240000pt;}
.xc_c00105{left:439.293333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00106;src:url('chunks/assets/font_f1b7610821bb660e2175632b.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.109863;font-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_c00106{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c00106{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00106{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);}
.m4_c00106{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00106{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00106{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);}
.m8_c00106{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2_c00106{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);}
.m1_c00106{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma_c00106{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c00106{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);}
.mb_c00106{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.v0_c00106{vertical-align:0.000000px;}
.ls0_c00106{letter-spacing:0.000000px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00106{word-spacing:0.000000px;}
.fc0_c00106{color:transparent;}
.fs0_c00106{font-size:3.456000px;}
.fs4_c00106{font-size:10.380000px;}
.fs8_c00106{font-size:17.280000px;}
.fs7_c00106{font-size:20.760000px;}
.fs5_c00106{font-size:31.080000px;}
.fs2_c00106{font-size:34.560000px;}
.fs3_c00106{font-size:41.460000px;}
.fs6_c00106{font-size:48.360000px;}
.fs1_c00106{font-size:55.320000px;}
.y0_c00106{bottom:0.000000px;}
.y5_c00106{bottom:759.450000px;}
.y4_c00106{bottom:762.045000px;}
.y2_c00106{bottom:762.915000px;}
.y3_c00106{bottom:763.770000px;}
.y7_c00106{bottom:766.365000px;}
.y1_c00106{bottom:769.830000px;}
.y6_c00106{bottom:779.325000px;}
.y9_c00106{bottom:780.195000px;}
.y8_c00106{bottom:781.920000px;}
.h2_c00106{height:3.110063px;}
.h6_c00106{height:9.340986px;}
.ha_c00106{height:15.550313px;}
.h9_c00106{height:18.681973px;}
.h7_c00106{height:27.968965px;}
.h4_c00106{height:31.100625px;}
.h5_c00106{height:37.309951px;}
.h8_c00106{height:43.519277px;}
.h3_c00106{height:49.782598px;}
.h0_c00106{height:1517.190000px;}
.h1_c00106{height:1517.250000px;}
.w0_c00106{width:1090.365000px;}
.w1_c00106{width:1090.500000px;}
.x0_c00106{left:0.000000px;}
.x1_c00106{left:308.445000px;}
.x2_c00106{left:315.360000px;}
.x3_c00106{left:335.235000px;}
.x4_c00106{left:351.645000px;}
.x5_c00106{left:366.330000px;}
.x6_c00106{left:382.755000px;}
.x7_c00106{left:400.890000px;}
.x8_c00106{left:419.040000px;}
.x9_c00106{left:440.640000px;}
.xb_c00106{left:769.830000px;}
.xa_c00106{left:783.645000px;}
.xc_c00106{left:884.730000px;}
.xd_c00106{left:892.515000px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls0_c00106{letter-spacing:0.000000pt;}
.ws0_c00106{word-spacing:0.000000pt;}
.fs0_c00106{font-size:3.072000pt;}
.fs4_c00106{font-size:9.226667pt;}
.fs8_c00106{font-size:15.360000pt;}
.fs7_c00106{font-size:18.453333pt;}
.fs5_c00106{font-size:27.626667pt;}
.fs2_c00106{font-size:30.720000pt;}
.fs3_c00106{font-size:36.853333pt;}
.fs6_c00106{font-size:42.986667pt;}
.fs1_c00106{font-size:49.173333pt;}
.y0_c00106{bottom:0.000000pt;}
.y5_c00106{bottom:675.066667pt;}
.y4_c00106{bottom:677.373333pt;}
.y2_c00106{bottom:678.146667pt;}
.y3_c00106{bottom:678.906667pt;}
.y7_c00106{bottom:681.213333pt;}
.y1_c00106{bottom:684.293333pt;}
.y6_c00106{bottom:692.733333pt;}
.y9_c00106{bottom:693.506667pt;}
.y8_c00106{bottom:695.040000pt;}
.h2_c00106{height:2.764500pt;}
.h6_c00106{height:8.303099pt;}
.ha_c00106{height:13.822500pt;}
.h9_c00106{height:16.606198pt;}
.h7_c00106{height:24.861302pt;}
.h4_c00106{height:27.645000pt;}
.h5_c00106{height:33.164401pt;}
.h8_c00106{height:38.683802pt;}
.h3_c00106{height:44.251198pt;}
.h0_c00106{height:1348.613333pt;}
.h1_c00106{height:1348.666667pt;}
.w0_c00106{width:969.213333pt;}
.w1_c00106{width:969.333333pt;}
.x0_c00106{left:0.000000pt;}
.x1_c00106{left:274.173333pt;}
.x2_c00106{left:280.320000pt;}
.x3_c00106{left:297.986667pt;}
.x4_c00106{left:312.573333pt;}
.x5_c00106{left:325.626667pt;}
.x6_c00106{left:340.226667pt;}
.x7_c00106{left:356.346667pt;}
.x8_c00106{left:372.480000pt;}
.x9_c00106{left:391.680000pt;}
.xb_c00106{left:684.293333pt;}
.xa_c00106{left:696.573333pt;}
.xc_c00106{left:786.426667pt;}
.xd_c00106{left:793.346667pt;}
}





    body { margin: 0; background: #f3f4f6; }
    #page-container { margin: 0 auto; }
    .pf_c00107 {
      width: 900px;
      min-height: 280px;
      margin: 16px auto;
      background: #fff;
      border: 1px solid #e5e7eb;
      box-shadow: 0 8px 22px rgba(15, 23, 42, .08);
      position: relative;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }
    .scieee-page-failed_c00107 {
      padding: 42px;
      color: #374151;
      font-size: 14px;
      line-height: 1.45;
    }
    .scieee-page-failed_c00107 b {
      display: block;
      margin-bottom: 8px;
      font-size: 18px;
      color: #111827;
    }
    .scieee-page-failed_c00107 code {
      display: block;
      margin-top: 12px;
      white-space: pre-wrap;
      color: #6b7280;
      font-size: 12px;
    }
  




/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_158e1cf0a15152f088c8db89.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.109863;font-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.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);}
.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:600.000000px;}
.y0_c00108{bottom:0.000000px;}
.y1_c00108{bottom:15.000000px;}
.h2_c00108{height:539.941406px;}
.h0_c00108{height:1517.190000px;}
.h1_c00108{height:1517.250000px;}
.w0_c00108{width:1090.365000px;}
.w1_c00108{width:1090.500000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:15.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:533.333333pt;}
.y0_c00108{bottom:0.000000pt;}
.y1_c00108{bottom:13.333333pt;}
.h2_c00108{height:479.947917pt;}
.h0_c00108{height:1348.613333pt;}
.h1_c00108{height:1348.666667pt;}
.w0_c00108{width:969.213333pt;}
.w1_c00108{width:969.333333pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_872eab2320dca6e7b281eddc.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.109863;font-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_c00109{transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);}
.m4_c00109{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m3_c00109{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00109{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);}
.m1_c00109{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2_c00109{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m5_c00109{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);}
.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:27.660000px;}
.fs1_c00109{font-size:41.460000px;}
.fs2_c00109{font-size:55.320000px;}
.fs3_c00109{font-size:65.640000px;}
.fs4_c00109{font-size:72.600000px;}
.y0_c00109{bottom:0.000000px;}
.y6_c00109{bottom:590.970000px;}
.y5_c00109{bottom:591.840000px;}
.y4_c00109{bottom:592.710000px;}
.y3_c00109{bottom:593.565000px;}
.y2_c00109{bottom:1339.200000px;}
.y1_c00109{bottom:1342.650000px;}
.h2_c00109{height:24.891299px;}
.h3_c00109{height:37.309951px;}
.h4_c00109{height:49.782598px;}
.h5_c00109{height:59.069590px;}
.h6_c00109{height:65.332910px;}
.h1_c00109{height:1503.000000px;}
.h0_c00109{height:1503.360000px;}
.w0_c00109{width:1088.640000px;}
.w1_c00109{width:1089.000000px;}
.x0_c00109{left:0.000000px;}
.x1_c00109{left:20.730000px;}
.x2_c00109{left:37.155000px;}
.x3_c00109{left:319.680000px;}
.x4_c00109{left:340.410000px;}
.x5_c00109{left:358.560000px;}
.x6_c00109{left:377.565000px;}
.x7_c00109{left:444.090000px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ws0_c00109{word-spacing:0.000000pt;}
.fs0_c00109{font-size:24.586667pt;}
.fs1_c00109{font-size:36.853333pt;}
.fs2_c00109{font-size:49.173333pt;}
.fs3_c00109{font-size:58.346667pt;}
.fs4_c00109{font-size:64.533333pt;}
.y0_c00109{bottom:0.000000pt;}
.y6_c00109{bottom:525.306667pt;}
.y5_c00109{bottom:526.080000pt;}
.y4_c00109{bottom:526.853333pt;}
.y3_c00109{bottom:527.613333pt;}
.y2_c00109{bottom:1190.400000pt;}
.y1_c00109{bottom:1193.466667pt;}
.h2_c00109{height:22.125599pt;}
.h3_c00109{height:33.164401pt;}
.h4_c00109{height:44.251198pt;}
.h5_c00109{height:52.506302pt;}
.h6_c00109{height:58.073698pt;}
.h1_c00109{height:1336.000000pt;}
.h0_c00109{height:1336.320000pt;}
.w0_c00109{width:967.680000pt;}
.w1_c00109{width:968.000000pt;}
.x0_c00109{left:0.000000pt;}
.x1_c00109{left:18.426667pt;}
.x2_c00109{left:33.026667pt;}
.x3_c00109{left:284.160000pt;}
.x4_c00109{left:302.586667pt;}
.x5_c00109{left:318.720000pt;}
.x6_c00109{left:335.613333pt;}
.x7_c00109{left:394.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_758e9aff6d7aa1988b55d52c.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.109863;font-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_c00110{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);}
.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:600.000000px;}
.y0_c00110{bottom:0.000000px;}
.y1_c00110{bottom:15.000000px;}
.h2_c00110{height:539.941406px;}
.h0_c00110{height:1517.190000px;}
.h1_c00110{height:1517.250000px;}
.w0_c00110{width:1090.365000px;}
.w1_c00110{width:1090.500000px;}
.x0_c00110{left:0.000000px;}
.x1_c00110{left:15.000000px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.ws0_c00110{word-spacing:0.000000pt;}
.fs0_c00110{font-size:533.333333pt;}
.y0_c00110{bottom:0.000000pt;}
.y1_c00110{bottom:13.333333pt;}
.h2_c00110{height:479.947917pt;}
.h0_c00110{height:1348.613333pt;}
.h1_c00110{height:1348.666667pt;}
.w0_c00110{width:969.213333pt;}
.w1_c00110{width:969.333333pt;}
.x0_c00110{left:0.000000pt;}
.x1_c00110{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d746c443333e01a2996aebb.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.109863;font-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_c00111{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);}
.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:600.000000px;}
.y0_c00111{bottom:0.000000px;}
.y1_c00111{bottom:15.000000px;}
.h2_c00111{height:539.941406px;}
.h1_c00111{height:1503.000000px;}
.h0_c00111{height:1503.360000px;}
.w0_c00111{width:1088.640000px;}
.w1_c00111{width:1089.000000px;}
.x0_c00111{left:0.000000px;}
.x1_c00111{left:15.000000px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ws0_c00111{word-spacing:0.000000pt;}
.fs0_c00111{font-size:533.333333pt;}
.y0_c00111{bottom:0.000000pt;}
.y1_c00111{bottom:13.333333pt;}
.h2_c00111{height:479.947917pt;}
.h1_c00111{height:1336.000000pt;}
.h0_c00111{height:1336.320000pt;}
.w0_c00111{width:967.680000pt;}
.w1_c00111{width:968.000000pt;}
.x0_c00111{left:0.000000pt;}
.x1_c00111{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00112;src:url('chunks/assets/font_db11cfcec7087957c14492a5.woff2')format("woff");}.ff1_c00112{font-family:ff1_c00112;line-height:1.109863;font-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_c00112{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);}
.v0_c00112{vertical-align:0.000000px;}
.ls0_c00112{letter-spacing:0.000000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00112{word-spacing:0.000000px;}
.fc0_c00112{color:transparent;}
.fs0_c00112{font-size:600.000000px;}
.y0_c00112{bottom:0.000000px;}
.y1_c00112{bottom:15.000000px;}
.h2_c00112{height:539.941406px;}
.h0_c00112{height:1517.190000px;}
.h1_c00112{height:1517.250000px;}
.w0_c00112{width:1090.365000px;}
.w1_c00112{width:1090.500000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:15.000000px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls0_c00112{letter-spacing:0.000000pt;}
.ws0_c00112{word-spacing:0.000000pt;}
.fs0_c00112{font-size:533.333333pt;}
.y0_c00112{bottom:0.000000pt;}
.y1_c00112{bottom:13.333333pt;}
.h2_c00112{height:479.947917pt;}
.h0_c00112{height:1348.613333pt;}
.h1_c00112{height:1348.666667pt;}
.w0_c00112{width:969.213333pt;}
.w1_c00112{width:969.333333pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57793abc9e86793bcd930031.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.109863;font-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_c00113{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);}
.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:600.000000px;}
.y0_c00113{bottom:0.000000px;}
.y1_c00113{bottom:15.000000px;}
.h2_c00113{height:539.941406px;}
.h1_c00113{height:1503.000000px;}
.h0_c00113{height:1503.360000px;}
.w0_c00113{width:1088.640000px;}
.w1_c00113{width:1089.000000px;}
.x0_c00113{left:0.000000px;}
.x1_c00113{left:15.000000px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls0_c00113{letter-spacing:0.000000pt;}
.ws0_c00113{word-spacing:0.000000pt;}
.fs0_c00113{font-size:533.333333pt;}
.y0_c00113{bottom:0.000000pt;}
.y1_c00113{bottom:13.333333pt;}
.h2_c00113{height:479.947917pt;}
.h1_c00113{height:1336.000000pt;}
.h0_c00113{height:1336.320000pt;}
.w0_c00113{width:967.680000pt;}
.w1_c00113{width:968.000000pt;}
.x0_c00113{left:0.000000pt;}
.x1_c00113{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8b4c81686a4777accbbf2335.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.109863;font-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_c00114{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c00114{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);}
.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;}
.fs2_c00114{font-size:3.456000px;}
.fs1_c00114{font-size:20.760000px;}
.fs0_c00114{font-size:31.080000px;}
.y0_c00114{bottom:0.000000px;}
.y2_c00114{bottom:716.250000px;}
.y3_c00114{bottom:721.440000px;}
.y1_c00114{bottom:1123.200000px;}
.h4_c00114{height:3.110063px;}
.h3_c00114{height:18.681973px;}
.h2_c00114{height:27.968965px;}
.h0_c00114{height:1517.190000px;}
.h1_c00114{height:1517.250000px;}
.w0_c00114{width:1090.365000px;}
.w1_c00114{width:1090.500000px;}
.x0_c00114{left:0.000000px;}
.x2_c00114{left:1073.085000px;}
.x1_c00114{left:1083.450000px;}
.x3_c00114{left:1086.045000px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls0_c00114{letter-spacing:0.000000pt;}
.ws0_c00114{word-spacing:0.000000pt;}
.fs2_c00114{font-size:3.072000pt;}
.fs1_c00114{font-size:18.453333pt;}
.fs0_c00114{font-size:27.626667pt;}
.y0_c00114{bottom:0.000000pt;}
.y2_c00114{bottom:636.666667pt;}
.y3_c00114{bottom:641.280000pt;}
.y1_c00114{bottom:998.400000pt;}
.h4_c00114{height:2.764500pt;}
.h3_c00114{height:16.606198pt;}
.h2_c00114{height:24.861302pt;}
.h0_c00114{height:1348.613333pt;}
.h1_c00114{height:1348.666667pt;}
.w0_c00114{width:969.213333pt;}
.w1_c00114{width:969.333333pt;}
.x0_c00114{left:0.000000pt;}
.x2_c00114{left:953.853333pt;}
.x1_c00114{left:963.066667pt;}
.x3_c00114{left:965.373333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3c3a35a295f0ec1dc74813b.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.109863;font-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_c00115{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.md_c00115{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);}
.m8_c00115{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m5_c00115{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00115{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c00115{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);}
.m9_c00115{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00115{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00115{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00115{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00115{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c00115{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);}
.m6_c00115{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);}
.ma_c00115{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m0_c00115{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.mb_c00115{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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;}
.fs5_c00115{font-size:17.280000px;}
.fs0_c00115{font-size:41.460000px;}
.fs6_c00115{font-size:51.840000px;}
.fs3_c00115{font-size:55.320000px;}
.fs2_c00115{font-size:58.740000px;}
.fs1_c00115{font-size:62.220000px;}
.fs4_c00115{font-size:79.500000px;}
.y0_c00115{bottom:0.000000px;}
.y9_c00115{bottom:1316.730000px;}
.ya_c00115{bottom:1318.470000px;}
.y7_c00115{bottom:1321.050000px;}
.y8_c00115{bottom:1322.790000px;}
.y6_c00115{bottom:1346.970000px;}
.y5_c00115{bottom:1370.310000px;}
.y2_c00115{bottom:1373.760000px;}
.y3_c00115{bottom:1374.630000px;}
.y4_c00115{bottom:1375.485000px;}
.y1_c00115{bottom:1433.370000px;}
.h7_c00115{height:15.550313px;}
.h2_c00115{height:37.309951px;}
.h8_c00115{height:46.650937px;}
.h5_c00115{height:49.782598px;}
.h4_c00115{height:52.860264px;}
.h3_c00115{height:55.991924px;}
.h6_c00115{height:71.542236px;}
.h1_c00115{height:1503.000000px;}
.h0_c00115{height:1503.360000px;}
.w0_c00115{width:1088.640000px;}
.w1_c00115{width:1089.000000px;}
.x0_c00115{left:0.000000px;}
.x2_c00115{left:292.890000px;}
.x3_c00115{left:322.275000px;}
.xd_c00115{left:332.640000px;}
.x4_c00115{left:343.005000px;}
.xe_c00115{left:354.240000px;}
.x5_c00115{left:361.155000px;}
.xf_c00115{left:372.390000px;}
.x6_c00115{left:386.205000px;}
.x1_c00115{left:390.525000px;}
.x7_c00115{left:405.210000px;}
.x10_c00115{left:412.125000px;}
.xc_c00115{left:415.590000px;}
.x8_c00115{left:451.875000px;}
.x11_c00115{left:457.050000px;}
.x9_c00115{left:475.200000px;}
.xa_c00115{left:486.435000px;}
.xb_c00115{left:507.165000px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls0_c00115{letter-spacing:0.000000pt;}
.ws0_c00115{word-spacing:0.000000pt;}
.fs5_c00115{font-size:15.360000pt;}
.fs0_c00115{font-size:36.853333pt;}
.fs6_c00115{font-size:46.080000pt;}
.fs3_c00115{font-size:49.173333pt;}
.fs2_c00115{font-size:52.213333pt;}
.fs1_c00115{font-size:55.306667pt;}
.fs4_c00115{font-size:70.666667pt;}
.y0_c00115{bottom:0.000000pt;}
.y9_c00115{bottom:1170.426667pt;}
.ya_c00115{bottom:1171.973333pt;}
.y7_c00115{bottom:1174.266667pt;}
.y8_c00115{bottom:1175.813333pt;}
.y6_c00115{bottom:1197.306667pt;}
.y5_c00115{bottom:1218.053333pt;}
.y2_c00115{bottom:1221.120000pt;}
.y3_c00115{bottom:1221.893333pt;}
.y4_c00115{bottom:1222.653333pt;}
.y1_c00115{bottom:1274.106667pt;}
.h7_c00115{height:13.822500pt;}
.h2_c00115{height:33.164401pt;}
.h8_c00115{height:41.467500pt;}
.h5_c00115{height:44.251198pt;}
.h4_c00115{height:46.986901pt;}
.h3_c00115{height:49.770599pt;}
.h6_c00115{height:63.593099pt;}
.h1_c00115{height:1336.000000pt;}
.h0_c00115{height:1336.320000pt;}
.w0_c00115{width:967.680000pt;}
.w1_c00115{width:968.000000pt;}
.x0_c00115{left:0.000000pt;}
.x2_c00115{left:260.346667pt;}
.x3_c00115{left:286.466667pt;}
.xd_c00115{left:295.680000pt;}
.x4_c00115{left:304.893333pt;}
.xe_c00115{left:314.880000pt;}
.x5_c00115{left:321.026667pt;}
.xf_c00115{left:331.013333pt;}
.x6_c00115{left:343.293333pt;}
.x1_c00115{left:347.133333pt;}
.x7_c00115{left:360.186667pt;}
.x10_c00115{left:366.333333pt;}
.xc_c00115{left:369.413333pt;}
.x8_c00115{left:401.666667pt;}
.x11_c00115{left:406.266667pt;}
.x9_c00115{left:422.400000pt;}
.xa_c00115{left:432.386667pt;}
.xb_c00115{left:450.813333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f7b0f6b500855a838ace61a.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.109863;font-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_c00116{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c00116{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c00116{transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);}
.m6_c00116{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);}
.mc_c00116{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.ma_c00116{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);}
.me_c00116{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);}
.mf_c00116{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);}
.m7_c00116{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);}
.mb_c00116{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00116{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00116{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c00116{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m0_c00116{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md_c00116{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m3_c00116{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);}
.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:3.456000px;}
.fs7_c00116{font-size:6.900000px;}
.fs2_c00116{font-size:10.380000px;}
.fs0_c00116{font-size:13.800000px;}
.fs3_c00116{font-size:20.760000px;}
.fsb_c00116{font-size:38.040000px;}
.fs9_c00116{font-size:41.460000px;}
.fsa_c00116{font-size:44.940000px;}
.fs5_c00116{font-size:51.840000px;}
.fs4_c00116{font-size:58.740000px;}
.fs6_c00116{font-size:72.600000px;}
.fs8_c00116{font-size:76.020000px;}
.y0_c00116{bottom:0.000000px;}
.y14_c00116{bottom:283.395000px;}
.y13_c00116{bottom:295.485000px;}
.y12_c00116{bottom:300.675000px;}
.y11_c00116{bottom:307.590000px;}
.y10_c00116{bottom:323.130000px;}
.ye_c00116{bottom:330.045000px;}
.yf_c00116{bottom:336.090000px;}
.yd_c00116{bottom:336.960000px;}
.yc_c00116{bottom:350.790000px;}
.ya_c00116{bottom:356.835000px;}
.yb_c00116{bottom:357.690000px;}
.y9_c00116{bottom:693.795000px;}
.y7_c00116{bottom:696.390000px;}
.y8_c00116{bottom:697.245000px;}
.y6_c00116{bottom:712.800000px;}
.y4_c00116{bottom:1171.590000px;}
.y3_c00116{bottom:1172.445000px;}
.y5_c00116{bottom:1174.170000px;}
.y2_c00116{bottom:1340.925000px;}
.y1_c00116{bottom:1342.650000px;}
.h3_c00116{height:3.110063px;}
.h9_c00116{height:6.209326px;}
.h4_c00116{height:9.340986px;}
.h2_c00116{height:12.418652px;}
.h5_c00116{height:18.681973px;}
.hd_c00116{height:34.232285px;}
.hb_c00116{height:37.309951px;}
.hc_c00116{height:40.441611px;}
.h7_c00116{height:46.650937px;}
.h6_c00116{height:52.860264px;}
.h8_c00116{height:65.332910px;}
.ha_c00116{height:68.410576px;}
.h0_c00116{height:1517.190000px;}
.h1_c00116{height:1517.250000px;}
.w0_c00116{width:1090.365000px;}
.w1_c00116{width:1090.500000px;}
.x0_c00116{left:0.000000px;}
.x7_c00116{left:354.240000px;}
.x6_c00116{left:367.200000px;}
.x8_c00116{left:382.755000px;}
.x9_c00116{left:402.630000px;}
.x3_c00116{left:1015.200000px;}
.xc_c00116{left:1018.650000px;}
.x4_c00116{left:1023.840000px;}
.x5_c00116{left:1035.075000px;}
.xd_c00116{left:1040.250000px;}
.xe_c00116{left:1043.715000px;}
.xb_c00116{left:1046.310000px;}
.x1_c00116{left:1062.720000px;}
.x2_c00116{left:1075.680000px;}
.xa_c00116{left:1088.640000px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls0_c00116{letter-spacing:0.000000pt;}
.ws0_c00116{word-spacing:0.000000pt;}
.fs1_c00116{font-size:3.072000pt;}
.fs7_c00116{font-size:6.133333pt;}
.fs2_c00116{font-size:9.226667pt;}
.fs0_c00116{font-size:12.266667pt;}
.fs3_c00116{font-size:18.453333pt;}
.fsb_c00116{font-size:33.813333pt;}
.fs9_c00116{font-size:36.853333pt;}
.fsa_c00116{font-size:39.946667pt;}
.fs5_c00116{font-size:46.080000pt;}
.fs4_c00116{font-size:52.213333pt;}
.fs6_c00116{font-size:64.533333pt;}
.fs8_c00116{font-size:67.573333pt;}
.y0_c00116{bottom:0.000000pt;}
.y14_c00116{bottom:251.906667pt;}
.y13_c00116{bottom:262.653333pt;}
.y12_c00116{bottom:267.266667pt;}
.y11_c00116{bottom:273.413333pt;}
.y10_c00116{bottom:287.226667pt;}
.ye_c00116{bottom:293.373333pt;}
.yf_c00116{bottom:298.746667pt;}
.yd_c00116{bottom:299.520000pt;}
.yc_c00116{bottom:311.813333pt;}
.ya_c00116{bottom:317.186667pt;}
.yb_c00116{bottom:317.946667pt;}
.y9_c00116{bottom:616.706667pt;}
.y7_c00116{bottom:619.013333pt;}
.y8_c00116{bottom:619.773333pt;}
.y6_c00116{bottom:633.600000pt;}
.y4_c00116{bottom:1041.413333pt;}
.y3_c00116{bottom:1042.173333pt;}
.y5_c00116{bottom:1043.706667pt;}
.y2_c00116{bottom:1191.933333pt;}
.y1_c00116{bottom:1193.466667pt;}
.h3_c00116{height:2.764500pt;}
.h9_c00116{height:5.519401pt;}
.h4_c00116{height:8.303099pt;}
.h2_c00116{height:11.038802pt;}
.h5_c00116{height:16.606198pt;}
.hd_c00116{height:30.428698pt;}
.hb_c00116{height:33.164401pt;}
.hc_c00116{height:35.948099pt;}
.h7_c00116{height:41.467500pt;}
.h6_c00116{height:46.986901pt;}
.h8_c00116{height:58.073698pt;}
.ha_c00116{height:60.809401pt;}
.h0_c00116{height:1348.613333pt;}
.h1_c00116{height:1348.666667pt;}
.w0_c00116{width:969.213333pt;}
.w1_c00116{width:969.333333pt;}
.x0_c00116{left:0.000000pt;}
.x7_c00116{left:314.880000pt;}
.x6_c00116{left:326.400000pt;}
.x8_c00116{left:340.226667pt;}
.x9_c00116{left:357.893333pt;}
.x3_c00116{left:902.400000pt;}
.xc_c00116{left:905.466667pt;}
.x4_c00116{left:910.080000pt;}
.x5_c00116{left:920.066667pt;}
.xd_c00116{left:924.666667pt;}
.xe_c00116{left:927.746667pt;}
.xb_c00116{left:930.053333pt;}
.x1_c00116{left:944.640000pt;}
.x2_c00116{left:956.160000pt;}
.xa_c00116{left:967.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_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;}
@font-face{font-family:ff1_c00117;src:url('chunks/assets/font_0d32dcbccf1162e8571e9996.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.109863;font-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_c00117{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c00117{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c00117{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);}
.m6_c00117{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c00117{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00117{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);}
.m9_c00117{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);}
.m1_c00117{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3_c00117{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c00117{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.v0_c00117{vertical-align:0.000000px;}
.ls1_c00117{letter-spacing:0.000000px;}
.ls0_c00117{letter-spacing:45.603000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00117{word-spacing:0.000000px;}
.fc0_c00117{color:transparent;}
.fs2_c00117{font-size:3.456000px;}
.fs5_c00117{font-size:6.000000px;}
.fs7_c00117{font-size:6.900000px;}
.fs6_c00117{font-size:10.380000px;}
.fs8_c00117{font-size:13.800000px;}
.fs3_c00117{font-size:17.280000px;}
.fs0_c00117{font-size:24.180000px;}
.fs1_c00117{font-size:44.940000px;}
.fs4_c00117{font-size:114.060000px;}
.y0_c00117{bottom:0.000000px;}
.yb_c00117{bottom:243.645000px;}
.ya_c00117{bottom:249.690000px;}
.y9_c00117{bottom:426.810000px;}
.y7_c00117{bottom:800.070000px;}
.y8_c00117{bottom:801.795000px;}
.y6_c00117{bottom:1076.550000px;}
.y4_c00117{bottom:1107.645000px;}
.y5_c00117{bottom:1108.515000px;}
.y3_c00117{bottom:1109.370000px;}
.y2_c00117{bottom:1199.235000px;}
.y1_c00117{bottom:1212.195000px;}
.h4_c00117{height:3.110063px;}
.h7_c00117{height:5.399414px;}
.h8_c00117{height:9.340986px;}
.h9_c00117{height:12.418652px;}
.h5_c00117{height:15.550313px;}
.h2_c00117{height:21.759639px;}
.h3_c00117{height:40.441611px;}
.h6_c00117{height:102.642861px;}
.h1_c00117{height:1503.000000px;}
.h0_c00117{height:1503.360000px;}
.w0_c00117{width:1088.640000px;}
.w1_c00117{width:1089.000000px;}
.x0_c00117{left:0.000000px;}
.x1_c00117{left:12.090000px;}
.xc_c00117{left:34.559184px;}
.xd_c00117{left:38.880000px;}
.xb_c00117{left:42.330000px;}
.x2_c00117{left:45.795000px;}
.x8_c00117{left:134.790000px;}
.x9_c00117{left:142.560000px;}
.xa_c00117{left:151.200000px;}
.x7_c00117{left:237.600000px;}
.x3_c00117{left:322.275000px;}
.x4_c00117{left:355.965000px;}
.x5_c00117{left:474.330000px;}
.x6_c00117{left:482.970000px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls1_c00117{letter-spacing:0.000000pt;}
.ls0_c00117{letter-spacing:40.536000pt;}
.ws0_c00117{word-spacing:0.000000pt;}
.fs2_c00117{font-size:3.072000pt;}
.fs5_c00117{font-size:5.333333pt;}
.fs7_c00117{font-size:6.133333pt;}
.fs6_c00117{font-size:9.226667pt;}
.fs8_c00117{font-size:12.266667pt;}
.fs3_c00117{font-size:15.360000pt;}
.fs0_c00117{font-size:21.493333pt;}
.fs1_c00117{font-size:39.946667pt;}
.fs4_c00117{font-size:101.386667pt;}
.y0_c00117{bottom:0.000000pt;}
.yb_c00117{bottom:216.573333pt;}
.ya_c00117{bottom:221.946667pt;}
.y9_c00117{bottom:379.386667pt;}
.y7_c00117{bottom:711.173333pt;}
.y8_c00117{bottom:712.706667pt;}
.y6_c00117{bottom:956.933333pt;}
.y4_c00117{bottom:984.573333pt;}
.y5_c00117{bottom:985.346667pt;}
.y3_c00117{bottom:986.106667pt;}
.y2_c00117{bottom:1065.986667pt;}
.y1_c00117{bottom:1077.506667pt;}
.h4_c00117{height:2.764500pt;}
.h7_c00117{height:4.799479pt;}
.h8_c00117{height:8.303099pt;}
.h9_c00117{height:11.038802pt;}
.h5_c00117{height:13.822500pt;}
.h2_c00117{height:19.341901pt;}
.h3_c00117{height:35.948099pt;}
.h6_c00117{height:91.238099pt;}
.h1_c00117{height:1336.000000pt;}
.h0_c00117{height:1336.320000pt;}
.w0_c00117{width:967.680000pt;}
.w1_c00117{width:968.000000pt;}
.x0_c00117{left:0.000000pt;}
.x1_c00117{left:10.746667pt;}
.xc_c00117{left:30.719275pt;}
.xd_c00117{left:34.560000pt;}
.xb_c00117{left:37.626667pt;}
.x2_c00117{left:40.706667pt;}
.x8_c00117{left:119.813333pt;}
.x9_c00117{left:126.720000pt;}
.xa_c00117{left:134.400000pt;}
.x7_c00117{left:211.200000pt;}
.x3_c00117{left:286.466667pt;}
.x4_c00117{left:316.413333pt;}
.x5_c00117{left:421.626667pt;}
.x6_c00117{left:429.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00118;src:url('chunks/assets/font_0457750c1a4ce700e436e30b.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.109863;font-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_c00118{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m2e_c00118{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);}
.m1c_c00118{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);}
.m1d_c00118{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);}
.m4_c00118{transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);}
.m39_c00118{transform:matrix(0.133975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133975,0.000000,0.000000,0.250000,0,0);}
.m1_c00118{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00118{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m19_c00118{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);}
.m12_c00118{transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);}
.mc_c00118{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m38_c00118{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);}
.m32_c00118{transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);}
.m34_c00118{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);}
.m36_c00118{transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);}
.mb_c00118{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);}
.m1a_c00118{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);}
.m27_c00118{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m23_c00118{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.mf_c00118{transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);}
.m29_c00118{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);}
.m31_c00118{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.m10_c00118{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.m9_c00118{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);}
.m2b_c00118{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m1f_c00118{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m25_c00118{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);}
.m2f_c00118{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.m37_c00118{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);}
.m30_c00118{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);}
.m18_c00118{transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);}
.m7_c00118{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);}
.m1e_c00118{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);}
.m33_c00118{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);}
.m11_c00118{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);}
.m2a_c00118{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00118{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c00118{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00118{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);}
.ma_c00118{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c00118{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);}
.m15_c00118{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m26_c00118{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);}
.m3_c00118{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);}
.m28_c00118{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00118{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17_c00118{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00118{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00118{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m22_c00118{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m5_c00118{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m6_c00118{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m24_c00118{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00118{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m35_c00118{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m21_c00118{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m20_c00118{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m8_c00118{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.v0_c00118{vertical-align:0.000000px;}
.ls0_c00118{letter-spacing:0.000000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00118{word-spacing:0.000000px;}
.fc0_c00118{color:transparent;}
.fsa_c00118{font-size:3.456000px;}
.fsc_c00118{font-size:6.000000px;}
.fs12_c00118{font-size:6.900000px;}
.fs1_c00118{font-size:10.380000px;}
.fsf_c00118{font-size:13.800000px;}
.fse_c00118{font-size:17.280000px;}
.fs5_c00118{font-size:20.760000px;}
.fs11_c00118{font-size:24.180000px;}
.fs0_c00118{font-size:27.660000px;}
.fs13_c00118{font-size:31.080000px;}
.fs8_c00118{font-size:34.560000px;}
.fsd_c00118{font-size:38.040000px;}
.fs7_c00118{font-size:41.460000px;}
.fs6_c00118{font-size:44.940000px;}
.fsb_c00118{font-size:48.360000px;}
.fs9_c00118{font-size:51.840000px;}
.fs10_c00118{font-size:55.320000px;}
.fs2_c00118{font-size:58.740000px;}
.fs3_c00118{font-size:62.220000px;}
.fs14_c00118{font-size:69.120000px;}
.fs4_c00118{font-size:76.020000px;}
.y0_c00118{bottom:0.000000px;}
.y3f_c00118{bottom:216.000000px;}
.y3e_c00118{bottom:233.280000px;}
.y3d_c00118{bottom:235.005000px;}
.y3c_c00118{bottom:249.690000px;}
.y3b_c00118{bottom:250.560000px;}
.y3a_c00118{bottom:260.925000px;}
.y39_c00118{bottom:274.755000px;}
.y38_c00118{bottom:290.310000px;}
.y37_c00118{bottom:293.760000px;}
.y35_c00118{bottom:304.125000px;}
.y36_c00118{bottom:308.445000px;}
.y32_c00118{bottom:319.680000px;}
.y33_c00118{bottom:320.550000px;}
.y34_c00118{bottom:322.275000px;}
.y31_c00118{bottom:332.640000px;}
.y30_c00118{bottom:333.510000px;}
.y2f_c00118{bottom:348.195000px;}
.y2e_c00118{bottom:642.810000px;}
.y2d_c00118{bottom:646.275000px;}
.y2c_c00118{bottom:659.235000px;}
.y2b_c00118{bottom:660.090000px;}
.y2a_c00118{bottom:670.470000px;}
.y28_c00118{bottom:685.155000px;}
.y29_c00118{bottom:690.330000px;}
.y27_c00118{bottom:699.840000px;}
.y26_c00118{bottom:717.990000px;}
.y24_c00118{bottom:730.080000px;}
.y25_c00118{bottom:732.675000px;}
.y23_c00118{bottom:739.590000px;}
.y21_c00118{bottom:743.040000px;}
.y22_c00118{bottom:747.360000px;}
.y1f_c00118{bottom:756.870000px;}
.y20_c00118{bottom:757.725000px;}
.y1e_c00118{bottom:929.670000px;}
.y1d_c00118{bottom:936.570000px;}
.y1c_c00118{bottom:941.760000px;}
.y1b_c00118{bottom:956.445000px;}
.y18_c00118{bottom:971.130000px;}
.y19_c00118{bottom:972.870000px;}
.y1a_c00118{bottom:973.725000px;}
.y17_c00118{bottom:1171.590000px;}
.y16_c00118{bottom:1175.040000px;}
.y15_c00118{bottom:1270.080000px;}
.y13_c00118{bottom:1276.125000px;}
.y14_c00118{bottom:1281.315000px;}
.y11_c00118{bottom:1292.550000px;}
.y12_c00118{bottom:1295.130000px;}
.y10_c00118{bottom:1303.770000px;}
.yf_c00118{bottom:1307.235000px;}
.ye_c00118{bottom:1321.920000px;}
.yc_c00118{bottom:1332.285000px;}
.yd_c00118{bottom:1334.010000px;}
.yb_c00118{bottom:1347.840000px;}
.ya_c00118{bottom:1364.250000px;}
.y9_c00118{bottom:1373.760000px;}
.y8_c00118{bottom:1398.810000px;}
.y5_c00118{bottom:1401.405000px;}
.y7_c00118{bottom:1403.130000px;}
.y4_c00118{bottom:1404.000000px;}
.y6_c00118{bottom:1404.870000px;}
.y3_c00118{bottom:1405.725000px;}
.y1_c00118{bottom:1437.690000px;}
.y2_c00118{bottom:1440.285000px;}
.hc_c00118{height:3.110063px;}
.he_c00118{height:5.399414px;}
.h14_c00118{height:6.209326px;}
.h3_c00118{height:9.340986px;}
.h11_c00118{height:12.418652px;}
.h10_c00118{height:15.550313px;}
.h7_c00118{height:18.681973px;}
.h13_c00118{height:21.759639px;}
.h2_c00118{height:24.891299px;}
.h15_c00118{height:27.968965px;}
.ha_c00118{height:31.100625px;}
.hf_c00118{height:34.232285px;}
.h9_c00118{height:37.309951px;}
.h8_c00118{height:40.441611px;}
.hd_c00118{height:43.519277px;}
.hb_c00118{height:46.650937px;}
.h12_c00118{height:49.782598px;}
.h4_c00118{height:52.860264px;}
.h5_c00118{height:55.991924px;}
.h16_c00118{height:62.201250px;}
.h6_c00118{height:68.410576px;}
.h0_c00118{height:1517.190000px;}
.h1_c00118{height:1517.250000px;}
.w0_c00118{width:1090.365000px;}
.w1_c00118{width:1090.500000px;}
.x0_c00118{left:0.000000px;}
.x3_c00118{left:376.710000px;}
.x4_c00118{left:400.035000px;}
.x5_c00118{left:423.360000px;}
.x6_c00118{left:444.960000px;}
.x7_c00118{left:468.285000px;}
.x8_c00118{left:512.355000px;}
.x9_c00118{left:527.040000px;}
.x1_c00118{left:926.205000px;}
.x2_c00118{left:946.080000px;}
.x1a_c00118{left:1016.925000px;}
.x17_c00118{left:1026.435000px;}
.xe_c00118{left:1028.160000px;}
.x18_c00118{left:1034.205000px;}
.xa_c00118{left:1035.930000px;}
.xc_c00118{left:1037.670000px;}
.x11_c00118{left:1043.715000px;}
.x1b_c00118{left:1048.035000px;}
.x13_c00118{left:1049.760000px;}
.x12_c00118{left:1051.485000px;}
.x1e_c00118{left:1055.805000px;}
.xf_c00118{left:1058.400000px;}
.x15_c00118{left:1062.720000px;}
.x16_c00118{left:1065.315000px;}
.x1d_c00118{left:1068.765000px;}
.x1c_c00118{left:1070.490000px;}
.x19_c00118{left:1072.230000px;}
.xd_c00118{left:1074.810000px;}
.x14_c00118{left:1077.405000px;}
.xb_c00118{left:1079.130000px;}
.x10_c00118{left:1085.190000px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls0_c00118{letter-spacing:0.000000pt;}
.ws0_c00118{word-spacing:0.000000pt;}
.fsa_c00118{font-size:3.072000pt;}
.fsc_c00118{font-size:5.333333pt;}
.fs12_c00118{font-size:6.133333pt;}
.fs1_c00118{font-size:9.226667pt;}
.fsf_c00118{font-size:12.266667pt;}
.fse_c00118{font-size:15.360000pt;}
.fs5_c00118{font-size:18.453333pt;}
.fs11_c00118{font-size:21.493333pt;}
.fs0_c00118{font-size:24.586667pt;}
.fs13_c00118{font-size:27.626667pt;}
.fs8_c00118{font-size:30.720000pt;}
.fsd_c00118{font-size:33.813333pt;}
.fs7_c00118{font-size:36.853333pt;}
.fs6_c00118{font-size:39.946667pt;}
.fsb_c00118{font-size:42.986667pt;}
.fs9_c00118{font-size:46.080000pt;}
.fs10_c00118{font-size:49.173333pt;}
.fs2_c00118{font-size:52.213333pt;}
.fs3_c00118{font-size:55.306667pt;}
.fs14_c00118{font-size:61.440000pt;}
.fs4_c00118{font-size:67.573333pt;}
.y0_c00118{bottom:0.000000pt;}
.y3f_c00118{bottom:192.000000pt;}
.y3e_c00118{bottom:207.360000pt;}
.y3d_c00118{bottom:208.893333pt;}
.y3c_c00118{bottom:221.946667pt;}
.y3b_c00118{bottom:222.720000pt;}
.y3a_c00118{bottom:231.933333pt;}
.y39_c00118{bottom:244.226667pt;}
.y38_c00118{bottom:258.053333pt;}
.y37_c00118{bottom:261.120000pt;}
.y35_c00118{bottom:270.333333pt;}
.y36_c00118{bottom:274.173333pt;}
.y32_c00118{bottom:284.160000pt;}
.y33_c00118{bottom:284.933333pt;}
.y34_c00118{bottom:286.466667pt;}
.y31_c00118{bottom:295.680000pt;}
.y30_c00118{bottom:296.453333pt;}
.y2f_c00118{bottom:309.506667pt;}
.y2e_c00118{bottom:571.386667pt;}
.y2d_c00118{bottom:574.466667pt;}
.y2c_c00118{bottom:585.986667pt;}
.y2b_c00118{bottom:586.746667pt;}
.y2a_c00118{bottom:595.973333pt;}
.y28_c00118{bottom:609.026667pt;}
.y29_c00118{bottom:613.626667pt;}
.y27_c00118{bottom:622.080000pt;}
.y26_c00118{bottom:638.213333pt;}
.y24_c00118{bottom:648.960000pt;}
.y25_c00118{bottom:651.266667pt;}
.y23_c00118{bottom:657.413333pt;}
.y21_c00118{bottom:660.480000pt;}
.y22_c00118{bottom:664.320000pt;}
.y1f_c00118{bottom:672.773333pt;}
.y20_c00118{bottom:673.533333pt;}
.y1e_c00118{bottom:826.373333pt;}
.y1d_c00118{bottom:832.506667pt;}
.y1c_c00118{bottom:837.120000pt;}
.y1b_c00118{bottom:850.173333pt;}
.y18_c00118{bottom:863.226667pt;}
.y19_c00118{bottom:864.773333pt;}
.y1a_c00118{bottom:865.533333pt;}
.y17_c00118{bottom:1041.413333pt;}
.y16_c00118{bottom:1044.480000pt;}
.y15_c00118{bottom:1128.960000pt;}
.y13_c00118{bottom:1134.333333pt;}
.y14_c00118{bottom:1138.946667pt;}
.y11_c00118{bottom:1148.933333pt;}
.y12_c00118{bottom:1151.226667pt;}
.y10_c00118{bottom:1158.906667pt;}
.yf_c00118{bottom:1161.986667pt;}
.ye_c00118{bottom:1175.040000pt;}
.yc_c00118{bottom:1184.253333pt;}
.yd_c00118{bottom:1185.786667pt;}
.yb_c00118{bottom:1198.080000pt;}
.ya_c00118{bottom:1212.666667pt;}
.y9_c00118{bottom:1221.120000pt;}
.y8_c00118{bottom:1243.386667pt;}
.y5_c00118{bottom:1245.693333pt;}
.y7_c00118{bottom:1247.226667pt;}
.y4_c00118{bottom:1248.000000pt;}
.y6_c00118{bottom:1248.773333pt;}
.y3_c00118{bottom:1249.533333pt;}
.y1_c00118{bottom:1277.946667pt;}
.y2_c00118{bottom:1280.253333pt;}
.hc_c00118{height:2.764500pt;}
.he_c00118{height:4.799479pt;}
.h14_c00118{height:5.519401pt;}
.h3_c00118{height:8.303099pt;}
.h11_c00118{height:11.038802pt;}
.h10_c00118{height:13.822500pt;}
.h7_c00118{height:16.606198pt;}
.h13_c00118{height:19.341901pt;}
.h2_c00118{height:22.125599pt;}
.h15_c00118{height:24.861302pt;}
.ha_c00118{height:27.645000pt;}
.hf_c00118{height:30.428698pt;}
.h9_c00118{height:33.164401pt;}
.h8_c00118{height:35.948099pt;}
.hd_c00118{height:38.683802pt;}
.hb_c00118{height:41.467500pt;}
.h12_c00118{height:44.251198pt;}
.h4_c00118{height:46.986901pt;}
.h5_c00118{height:49.770599pt;}
.h16_c00118{height:55.290000pt;}
.h6_c00118{height:60.809401pt;}
.h0_c00118{height:1348.613333pt;}
.h1_c00118{height:1348.666667pt;}
.w0_c00118{width:969.213333pt;}
.w1_c00118{width:969.333333pt;}
.x0_c00118{left:0.000000pt;}
.x3_c00118{left:334.853333pt;}
.x4_c00118{left:355.586667pt;}
.x5_c00118{left:376.320000pt;}
.x6_c00118{left:395.520000pt;}
.x7_c00118{left:416.253333pt;}
.x8_c00118{left:455.426667pt;}
.x9_c00118{left:468.480000pt;}
.x1_c00118{left:823.293333pt;}
.x2_c00118{left:840.960000pt;}
.x1a_c00118{left:903.933333pt;}
.x17_c00118{left:912.386667pt;}
.xe_c00118{left:913.920000pt;}
.x18_c00118{left:919.293333pt;}
.xa_c00118{left:920.826667pt;}
.xc_c00118{left:922.373333pt;}
.x11_c00118{left:927.746667pt;}
.x1b_c00118{left:931.586667pt;}
.x13_c00118{left:933.120000pt;}
.x12_c00118{left:934.653333pt;}
.x1e_c00118{left:938.493333pt;}
.xf_c00118{left:940.800000pt;}
.x15_c00118{left:944.640000pt;}
.x16_c00118{left:946.946667pt;}
.x1d_c00118{left:950.013333pt;}
.x1c_c00118{left:951.546667pt;}
.x19_c00118{left:953.093333pt;}
.xd_c00118{left:955.386667pt;}
.x14_c00118{left:957.693333pt;}
.xb_c00118{left:959.226667pt;}
.x10_c00118{left:964.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a506913c91c71f907cf5e60c.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.109863;font-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_c00119{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mc_c00119{transform:matrix(0.025025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025025,0.000000,0.000000,0.250000,0,0);}
.m131_c00119{transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);}
.m176_c00119{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.mb_c00119{transform:matrix(0.051200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051200,0.000000,0.000000,0.250000,0,0);}
.m6_c00119{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);}
.me_c00119{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m3_c00119{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00119{transform:matrix(0.107975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107975,0.000000,0.000000,0.250000,0,0);}
.m17f_c00119{transform:matrix(0.109500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00119{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m29_c00119{transform:matrix(0.113175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113175,0.000000,0.000000,0.250000,0,0);}
.m101_c00119{transform:matrix(0.114225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114225,0.000000,0.000000,0.250000,0,0);}
.m185_c00119{transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);}
.m1f_c00119{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m142_c00119{transform:matrix(0.116425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116425,0.000000,0.000000,0.250000,0,0);}
.m4d_c00119{transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);}
.m69_c00119{transform:matrix(0.118400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118400,0.000000,0.000000,0.250000,0,0);}
.m19b_c00119{transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);}
.m11e_c00119{transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);}
.mf9_c00119{transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);}
.m17d_c00119{transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);}
.me7_c00119{transform:matrix(0.121725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121725,0.000000,0.000000,0.250000,0,0);}
.m160_c00119{transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);}
.m4e_c00119{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m180_c00119{transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);}
.m154_c00119{transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);}
.m12c_c00119{transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);}
.m146_c00119{transform:matrix(0.130925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130925,0.000000,0.000000,0.250000,0,0);}
.m13d_c00119{transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);}
.m60_c00119{transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);}
.m46_c00119{transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);}
.m89_c00119{transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);}
.m195_c00119{transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);}
.m183_c00119{transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);}
.m14a_c00119{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.me8_c00119{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.mdd_c00119{transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);}
.m86_c00119{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00119{transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);}
.m66_c00119{transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);}
.m192_c00119{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);}
.m9_c00119{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m100_c00119{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);}
.m127_c00119{transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);}
.m13a_c00119{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);}
.m67_c00119{transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);}
.m15_c00119{transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);}
.m103_c00119{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.m14e_c00119{transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);}
.m45_c00119{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);}
.m172_c00119{transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);}
.m8b_c00119{transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);}
.m85_c00119{transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);}
.m4b_c00119{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00119{transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00119{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m16d_c00119{transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);}
.m64_c00119{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);}
.mfa_c00119{transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);}
.m11a_c00119{transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);}
.mfb_c00119{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);}
.m141_c00119{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00119{transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);}
.m115_c00119{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);}
.mfc_c00119{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.md7_c00119{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.m184_c00119{transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);}
.m1e_c00119{transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);}
.m135_c00119{transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);}
.m153_c00119{transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);}
.m14f_c00119{transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);}
.m4_c00119{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.m155_c00119{transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);}
.m8c_c00119{transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);}
.m44_c00119{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m16_c00119{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);}
.m166_c00119{transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);}
.m173_c00119{transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);}
.m83_c00119{transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);}
.m33_c00119{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.m19a_c00119{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m43_c00119{transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);}
.m181_c00119{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.m5b_c00119{transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);}
.m5f_c00119{transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);}
.m193_c00119{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m13b_c00119{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m151_c00119{transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);}
.m149_c00119{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.mdf_c00119{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);}
.m126_c00119{transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);}
.mfe_c00119{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);}
.m17b_c00119{transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);}
.m174_c00119{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m97_c00119{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m182_c00119{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m157_c00119{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);}
.m158_c00119{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m128_c00119{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m22_c00119{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m8d_c00119{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m168_c00119{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m26_c00119{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m140_c00119{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);}
.me9_c00119{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m12b_c00119{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);}
.m16c_c00119{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.m137_c00119{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);}
.mdb_c00119{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m87_c00119{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m48_c00119{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);}
.m36_c00119{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m5d_c00119{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m177_c00119{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);}
.md8_c00119{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m164_c00119{transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);}
.m170_c00119{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.mdc_c00119{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);}
.m16e_c00119{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m144_c00119{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.m5e_c00119{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.mc7_c00119{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m18f_c00119{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.m12f_c00119{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.mc1_c00119{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m132_c00119{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m14d_c00119{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);}
.m16b_c00119{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m10e_c00119{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.m15a_c00119{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.md1_c00119{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m187_c00119{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m1c_c00119{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m59_c00119{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);}
.m27_c00119{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m13e_c00119{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);}
.m10d_c00119{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.md9_c00119{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);}
.m14c_c00119{transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);}
.m20_c00119{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m88_c00119{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);}
.m16f_c00119{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);}
.m190_c00119{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m6b_c00119{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);}
.m18e_c00119{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.m116_c00119{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);}
.maf_c00119{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m32_c00119{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m1b_c00119{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);}
.m171_c00119{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);}
.mda_c00119{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);}
.m109_c00119{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m90_c00119{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);}
.m145_c00119{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m11f_c00119{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);}
.m49_c00119{transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);}
.mcd_c00119{transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);}
.m175_c00119{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.m18c_c00119{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);}
.m47_c00119{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.m92_c00119{transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);}
.m161_c00119{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m15b_c00119{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.m18d_c00119{transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);}
.m110_c00119{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);}
.m19c_c00119{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);}
.m8f_c00119{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.mba_c00119{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m124_c00119{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m9f_c00119{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);}
.mc2_c00119{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.m130_c00119{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);}
.ma0_c00119{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);}
.m178_c00119{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m119_c00119{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);}
.m70_c00119{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.m111_c00119{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.m199_c00119{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);}
.m179_c00119{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.m10a_c00119{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.m120_c00119{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);}
.m84_c00119{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);}
.m24_c00119{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.mbf_c00119{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);}
.m17e_c00119{transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);}
.m162_c00119{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.m15d_c00119{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);}
.mcf_c00119{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);}
.md5_c00119{transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);}
.m106_c00119{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);}
.m25_c00119{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);}
.md0_c00119{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m11d_c00119{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);}
.m134_c00119{transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);}
.m5c_c00119{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);}
.m96_c00119{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);}
.m104_c00119{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);}
.m8a_c00119{transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);}
.m143_c00119{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00119{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);}
.ma4_c00119{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);}
.m121_c00119{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m7a_c00119{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);}
.mbb_c00119{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.ma1_c00119{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.mf7_c00119{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m40_c00119{transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);}
.m147_c00119{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);}
.m4f_c00119{transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);}
.me1_c00119{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m98_c00119{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);}
.m8e_c00119{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);}
.m14b_c00119{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m94_c00119{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);}
.m80_c00119{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);}
.m9c_c00119{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);}
.mb9_c00119{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);}
.m139_c00119{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);}
.m58_c00119{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m112_c00119{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m186_c00119{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.mab_c00119{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);}
.m81_c00119{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);}
.m10b_c00119{transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);}
.mf5_c00119{transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);}
.mde_c00119{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mb2_c00119{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m148_c00119{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);}
.ma_c00119{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);}
.ma2_c00119{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m2c_c00119{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);}
.m123_c00119{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);}
.m79_c00119{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);}
.mb3_c00119{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);}
.mae_c00119{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m150_c00119{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.m152_c00119{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);}
.mea_c00119{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.m38_c00119{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m71_c00119{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m65_c00119{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);}
.ma6_c00119{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.m10f_c00119{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.mee_c00119{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m95_c00119{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);}
.mc8_c00119{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.mb8_c00119{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);}
.mb6_c00119{transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);}
.mc5_c00119{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.maa_c00119{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m13c_c00119{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);}
.m159_c00119{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);}
.mec_c00119{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);}
.m12d_c00119{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);}
.m136_c00119{transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);}
.m9b_c00119{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);}
.m117_c00119{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.m11c_c00119{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);}
.m10c_c00119{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);}
.mf1_c00119{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);}
.m2a_c00119{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.mc3_c00119{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);}
.m18a_c00119{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);}
.mb0_c00119{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.mb7_c00119{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m13f_c00119{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);}
.m129_c00119{transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);}
.m12e_c00119{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);}
.mef_c00119{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.mb4_c00119{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m194_c00119{transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);}
.m107_c00119{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);}
.m1d_c00119{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);}
.m189_c00119{transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);}
.m191_c00119{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);}
.mcb_c00119{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.me6_c00119{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);}
.m93_c00119{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.mf2_c00119{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);}
.m108_c00119{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);}
.m105_c00119{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.m17a_c00119{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.me5_c00119{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);}
.m17_c00119{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.md4_c00119{transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);}
.m138_c00119{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);}
.m82_c00119{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m7b_c00119{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m56_c00119{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);}
.m125_c00119{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.mc0_c00119{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.me0_c00119{transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);}
.mf8_c00119{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m15e_c00119{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);}
.mad_c00119{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m188_c00119{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);}
.m57_c00119{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m156_c00119{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);}
.mac_c00119{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);}
.m118_c00119{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);}
.m15f_c00119{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);}
.mcc_c00119{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.ma7_c00119{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);}
.m163_c00119{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);}
.m165_c00119{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m122_c00119{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);}
.mf3_c00119{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m21_c00119{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);}
.m41_c00119{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00119{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);}
.m72_c00119{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);}
.m6a_c00119{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);}
.md2_c00119{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);}
.m14_c00119{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00119{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m37_c00119{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m74_c00119{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);}
.m62_c00119{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m76_c00119{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);}
.m4c_c00119{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);}
.m75_c00119{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m31_c00119{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);}
.m2_c00119{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00119{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m53_c00119{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);}
.m7f_c00119{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m18_c00119{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);}
.m23_c00119{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);}
.m42_c00119{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c00119{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00119{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);}
.m52_c00119{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00119{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00119{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);}
.m13_c00119{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m54_c00119{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00119{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00119{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m19_c00119{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m55_c00119{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m34_c00119{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00119{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00119{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);}
.me2_c00119{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m73_c00119{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00119{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.meb_c00119{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00119{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);}
.mf_c00119{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);}
.m12_c00119{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19d_c00119{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md_c00119{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);}
.me4_c00119{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m113_c00119{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m133_c00119{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00119{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m5_c00119{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);}
.m1a_c00119{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m99_c00119{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m102_c00119{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m15c_c00119{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);}
.m169_c00119{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mce_c00119{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m68_c00119{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.md3_c00119{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m167_c00119{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m63_c00119{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);}
.ma8_c00119{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);}
.mff_c00119{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00119{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);}
.mca_c00119{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m78_c00119{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);}
.m28_c00119{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m10_c00119{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m7_c00119{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m114_c00119{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m50_c00119{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m17c_c00119{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00119{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00119{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00119{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00119{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);}
.m0_c00119{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md6_c00119{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00119{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mb5_c00119{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m91_c00119{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00119{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00119{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m51_c00119{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00119{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00119{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);}
.m7c_c00119{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00119{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m61_c00119{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00119{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);}
.me3_c00119{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00119{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);}
.m30_c00119{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00119{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m11_c00119{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m35_c00119{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m77_c00119{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.med_c00119{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m18b_c00119{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m1_c00119{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00119{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00119{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00119{transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);}
.m196_c00119{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m16a_c00119{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.m198_c00119{transform:matrix(3.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.152500,0.000000,0.000000,0.250000,0,0);}
.m197_c00119{transform:matrix(5.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.920000,0.000000,0.000000,0.250000,0,0);}
.v1_c00119{vertical-align:-6.960000px;}
.v0_c00119{vertical-align:0.000000px;}
.v2_c00119{vertical-align:3.480000px;}
.ls1_c00119{letter-spacing:0.000000px;}
.ls0_c00119{letter-spacing:379.284300px;}
.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.825840px;}
.ws1_c00119{word-spacing:0.000000px;}
.fc0_c00119{color:transparent;}
.fs6_c00119{font-size:3.456000px;}
.fs23_c00119{font-size:6.000000px;}
.fs1_c00119{font-size:6.900000px;}
.fs1b_c00119{font-size:10.380000px;}
.fs0_c00119{font-size:13.800000px;}
.fs9_c00119{font-size:17.280000px;}
.fs5_c00119{font-size:20.760000px;}
.fs1a_c00119{font-size:24.180000px;}
.fs1e_c00119{font-size:27.660000px;}
.fs3_c00119{font-size:31.080000px;}
.fs4_c00119{font-size:34.560000px;}
.fs18_c00119{font-size:38.040000px;}
.fs22_c00119{font-size:41.460000px;}
.fs2_c00119{font-size:44.940000px;}
.fs19_c00119{font-size:48.360000px;}
.fsc_c00119{font-size:51.840000px;}
.fsf_c00119{font-size:55.320000px;}
.fs1c_c00119{font-size:58.740000px;}
.fs17_c00119{font-size:62.220000px;}
.fs1f_c00119{font-size:65.640000px;}
.fsb_c00119{font-size:69.120000px;}
.fs14_c00119{font-size:72.600000px;}
.fs7_c00119{font-size:76.020000px;}
.fsa_c00119{font-size:79.500000px;}
.fs10_c00119{font-size:82.920000px;}
.fsd_c00119{font-size:86.400000px;}
.fs15_c00119{font-size:89.880000px;}
.fs20_c00119{font-size:93.300000px;}
.fs13_c00119{font-size:96.780000px;}
.fs16_c00119{font-size:100.200000px;}
.fs8_c00119{font-size:103.680000px;}
.fse_c00119{font-size:107.160000px;}
.fs21_c00119{font-size:110.580000px;}
.fs1d_c00119{font-size:114.060000px;}
.fs11_c00119{font-size:117.480000px;}
.fs12_c00119{font-size:120.960000px;}
.y0_c00119{bottom:0.000000px;}
.y1dd_c00119{bottom:196.125000px;}
.y1dc_c00119{bottom:203.040000px;}
.y1db_c00119{bottom:211.680000px;}
.y1d9_c00119{bottom:214.275000px;}
.y1da_c00119{bottom:215.130000px;}
.y1d1_c00119{bottom:216.870000px;}
.y1d6_c00119{bottom:217.725000px;}
.y1d3_c00119{bottom:221.190000px;}
.y1d5_c00119{bottom:223.770000px;}
.y1d4_c00119{bottom:224.640000px;}
.y1d8_c00119{bottom:225.510000px;}
.y1d2_c00119{bottom:226.365000px;}
.y1d7_c00119{bottom:227.235000px;}
.y1ce_c00119{bottom:241.050000px;}
.y1cb_c00119{bottom:241.920000px;}
.y1cd_c00119{bottom:242.790000px;}
.y1d0_c00119{bottom:243.645000px;}
.y1cc_c00119{bottom:244.515000px;}
.y1ca_c00119{bottom:246.240000px;}
.y1c9_c00119{bottom:247.965000px;}
.y1cf_c00119{bottom:249.690000px;}
.y1c2_c00119{bottom:257.475000px;}
.y1bf_c00119{bottom:259.200000px;}
.y1c3_c00119{bottom:260.070000px;}
.y1c8_c00119{bottom:260.925000px;}
.y1c1_c00119{bottom:262.650000px;}
.y1c0_c00119{bottom:263.520000px;}
.y1c6_c00119{bottom:266.115000px;}
.y1c5_c00119{bottom:266.970000px;}
.y1c7_c00119{bottom:268.710000px;}
.y1c4_c00119{bottom:279.075000px;}
.y1ba_c00119{bottom:281.670000px;}
.y1bc_c00119{bottom:282.525000px;}
.y1b8_c00119{bottom:283.395000px;}
.y1bd_c00119{bottom:284.250000px;}
.y1b6_c00119{bottom:285.120000px;}
.y1b5_c00119{bottom:285.990000px;}
.y1bb_c00119{bottom:286.845000px;}
.y1b9_c00119{bottom:287.715000px;}
.y1b7_c00119{bottom:288.570000px;}
.y1be_c00119{bottom:292.035000px;}
.y1b4_c00119{bottom:297.210000px;}
.y1b3_c00119{bottom:298.080000px;}
.y1ab_c00119{bottom:298.950000px;}
.y1b0_c00119{bottom:299.805000px;}
.y1ae_c00119{bottom:300.675000px;}
.y1ac_c00119{bottom:301.530000px;}
.y1aa_c00119{bottom:303.270000px;}
.y1b1_c00119{bottom:306.720000px;}
.y1af_c00119{bottom:307.590000px;}
.y1ad_c00119{bottom:308.445000px;}
.y1b2_c00119{bottom:313.635000px;}
.y1a9_c00119{bottom:317.085000px;}
.y1a5_c00119{bottom:317.955000px;}
.y1a4_c00119{bottom:320.550000px;}
.y1a6_c00119{bottom:321.405000px;}
.y1a7_c00119{bottom:322.275000px;}
.y1a1_c00119{bottom:324.000000px;}
.y1a8_c00119{bottom:325.725000px;}
.y1a3_c00119{bottom:326.595000px;}
.y1a2_c00119{bottom:327.450000px;}
.y19f_c00119{bottom:328.320000px;}
.y1a0_c00119{bottom:330.045000px;}
.y19d_c00119{bottom:343.875000px;}
.y199_c00119{bottom:344.730000px;}
.y195_c00119{bottom:345.600000px;}
.y19c_c00119{bottom:346.470000px;}
.y19e_c00119{bottom:347.325000px;}
.y19a_c00119{bottom:348.195000px;}
.y197_c00119{bottom:349.050000px;}
.y198_c00119{bottom:349.920000px;}
.y196_c00119{bottom:350.790000px;}
.y19b_c00119{bottom:351.645000px;}
.y190_c00119{bottom:362.010000px;}
.y191_c00119{bottom:362.880000px;}
.y194_c00119{bottom:364.605000px;}
.y193_c00119{bottom:365.475000px;}
.y18f_c00119{bottom:366.330000px;}
.y192_c00119{bottom:368.070000px;}
.y18d_c00119{bottom:372.390000px;}
.y18e_c00119{bottom:378.435000px;}
.y18a_c00119{bottom:383.610000px;}
.y18c_c00119{bottom:384.480000px;}
.y187_c00119{bottom:387.075000px;}
.y18b_c00119{bottom:387.930000px;}
.y189_c00119{bottom:389.670000px;}
.y188_c00119{bottom:390.525000px;}
.y181_c00119{bottom:400.035000px;}
.y185_c00119{bottom:400.890000px;}
.y186_c00119{bottom:403.485000px;}
.y182_c00119{bottom:405.210000px;}
.y184_c00119{bottom:409.530000px;}
.y183_c00119{bottom:410.400000px;}
.y180_c00119{bottom:421.635000px;}
.y17c_c00119{bottom:422.490000px;}
.y17b_c00119{bottom:423.360000px;}
.y17d_c00119{bottom:425.085000px;}
.y17f_c00119{bottom:429.405000px;}
.y17e_c00119{bottom:430.275000px;}
.y179_c00119{bottom:444.090000px;}
.y177_c00119{bottom:444.960000px;}
.y174_c00119{bottom:445.830000px;}
.y17a_c00119{bottom:446.685000px;}
.y176_c00119{bottom:447.555000px;}
.y173_c00119{bottom:449.280000px;}
.y175_c00119{bottom:451.005000px;}
.y178_c00119{bottom:454.470000px;}
.y16f_c00119{bottom:463.965000px;}
.y171_c00119{bottom:464.835000px;}
.y16b_c00119{bottom:465.690000px;}
.y170_c00119{bottom:466.560000px;}
.y16c_c00119{bottom:467.430000px;}
.y172_c00119{bottom:469.155000px;}
.y16e_c00119{bottom:470.010000px;}
.y16d_c00119{bottom:470.880000px;}
.y16a_c00119{bottom:471.750000px;}
.y167_c00119{bottom:482.115000px;}
.y165_c00119{bottom:482.970000px;}
.y164_c00119{bottom:483.840000px;}
.y163_c00119{bottom:489.030000px;}
.y169_c00119{bottom:489.885000px;}
.y168_c00119{bottom:490.755000px;}
.y166_c00119{bottom:491.610000px;}
.y162_c00119{bottom:492.480000px;}
.y15c_c00119{bottom:501.990000px;}
.y160_c00119{bottom:502.845000px;}
.y15b_c00119{bottom:503.715000px;}
.y161_c00119{bottom:504.570000px;}
.y15e_c00119{bottom:506.310000px;}
.y15a_c00119{bottom:507.165000px;}
.y158_c00119{bottom:508.035000px;}
.y15d_c00119{bottom:511.485000px;}
.y159_c00119{bottom:512.355000px;}
.y15f_c00119{bottom:526.170000px;}
.y154_c00119{bottom:527.040000px;}
.y155_c00119{bottom:527.910000px;}
.y156_c00119{bottom:529.635000px;}
.y152_c00119{bottom:531.360000px;}
.y153_c00119{bottom:532.230000px;}
.y157_c00119{bottom:541.725000px;}
.y151_c00119{bottom:546.045000px;}
.y149_c00119{bottom:546.915000px;}
.y14b_c00119{bottom:547.770000px;}
.y150_c00119{bottom:548.640000px;}
.y14e_c00119{bottom:549.510000px;}
.y14c_c00119{bottom:550.365000px;}
.y14f_c00119{bottom:552.090000px;}
.y14a_c00119{bottom:552.960000px;}
.y14d_c00119{bottom:553.830000px;}
.y146_c00119{bottom:566.790000px;}
.y145_c00119{bottom:567.645000px;}
.y148_c00119{bottom:570.240000px;}
.y147_c00119{bottom:571.965000px;}
.y143_c00119{bottom:572.835000px;}
.y144_c00119{bottom:573.690000px;}
.y142_c00119{bottom:587.520000px;}
.y13c_c00119{bottom:588.390000px;}
.y13e_c00119{bottom:590.970000px;}
.y141_c00119{bottom:591.840000px;}
.y140_c00119{bottom:592.710000px;}
.y13f_c00119{bottom:593.565000px;}
.y13d_c00119{bottom:594.435000px;}
.y136_c00119{bottom:606.525000px;}
.y13b_c00119{bottom:607.395000px;}
.y137_c00119{bottom:608.250000px;}
.y133_c00119{bottom:609.990000px;}
.y138_c00119{bottom:610.845000px;}
.y13a_c00119{bottom:611.715000px;}
.y139_c00119{bottom:613.440000px;}
.y134_c00119{bottom:614.310000px;}
.y135_c00119{bottom:615.165000px;}
.y131_c00119{bottom:616.035000px;}
.y132_c00119{bottom:618.630000px;}
.y12d_c00119{bottom:628.125000px;}
.y12f_c00119{bottom:630.720000px;}
.y130_c00119{bottom:631.590000px;}
.y12e_c00119{bottom:635.910000px;}
.y12c_c00119{bottom:641.085000px;}
.y12a_c00119{bottom:648.870000px;}
.y127_c00119{bottom:649.725000px;}
.y128_c00119{bottom:650.595000px;}
.y124_c00119{bottom:652.320000px;}
.y129_c00119{bottom:653.190000px;}
.y12b_c00119{bottom:654.045000px;}
.y125_c00119{bottom:654.915000px;}
.y126_c00119{bottom:655.770000px;}
.y122_c00119{bottom:667.875000px;}
.y123_c00119{bottom:668.730000px;}
.y11c_c00119{bottom:669.600000px;}
.y121_c00119{bottom:670.470000px;}
.y11e_c00119{bottom:671.325000px;}
.y11d_c00119{bottom:673.920000px;}
.y11f_c00119{bottom:674.790000px;}
.y120_c00119{bottom:675.645000px;}
.y114_c00119{bottom:684.285000px;}
.y115_c00119{bottom:685.155000px;}
.y116_c00119{bottom:686.880000px;}
.y11b_c00119{bottom:689.475000px;}
.y119_c00119{bottom:691.200000px;}
.y118_c00119{bottom:692.925000px;}
.y11a_c00119{bottom:693.795000px;}
.y117_c00119{bottom:694.650000px;}
.y111_c00119{bottom:708.480000px;}
.y10c_c00119{bottom:709.350000px;}
.y10a_c00119{bottom:710.205000px;}
.y10f_c00119{bottom:711.075000px;}
.y10d_c00119{bottom:711.930000px;}
.y112_c00119{bottom:712.800000px;}
.y110_c00119{bottom:713.670000px;}
.y10e_c00119{bottom:714.525000px;}
.y10b_c00119{bottom:715.395000px;}
.y113_c00119{bottom:724.890000px;}
.y102_c00119{bottom:728.355000px;}
.y103_c00119{bottom:729.210000px;}
.y107_c00119{bottom:730.950000px;}
.y108_c00119{bottom:731.805000px;}
.y106_c00119{bottom:733.530000px;}
.y104_c00119{bottom:734.400000px;}
.y105_c00119{bottom:735.270000px;}
.y101_c00119{bottom:737.850000px;}
.y109_c00119{bottom:740.445000px;}
.yfb_c00119{bottom:749.085000px;}
.yfd_c00119{bottom:749.955000px;}
.yf9_c00119{bottom:750.810000px;}
.yf7_c00119{bottom:751.680000px;}
.y100_c00119{bottom:752.550000px;}
.yff_c00119{bottom:753.405000px;}
.yfe_c00119{bottom:754.275000px;}
.yfa_c00119{bottom:755.130000px;}
.yf8_c00119{bottom:756.870000px;}
.yfc_c00119{bottom:757.725000px;}
.yf2_c00119{bottom:768.960000px;}
.yf1_c00119{bottom:769.830000px;}
.yf3_c00119{bottom:770.685000px;}
.yf0_c00119{bottom:771.555000px;}
.yf4_c00119{bottom:772.410000px;}
.yf6_c00119{bottom:773.280000px;}
.yef_c00119{bottom:774.150000px;}
.yee_c00119{bottom:775.005000px;}
.yf5_c00119{bottom:775.875000px;}
.ye9_c00119{bottom:785.370000px;}
.yea_c00119{bottom:787.110000px;}
.y15_c00119{bottom:788.835000px;}
.yed_c00119{bottom:792.285000px;}
.yec_c00119{bottom:793.155000px;}
.y14_c00119{bottom:794.010000px;}
.yeb_c00119{bottom:796.605000px;}
.ye7_c00119{bottom:806.970000px;}
.ye4_c00119{bottom:807.840000px;}
.ye2_c00119{bottom:809.565000px;}
.ye3_c00119{bottom:810.435000px;}
.ye8_c00119{bottom:811.290000px;}
.ye5_c00119{bottom:812.160000px;}
.ye6_c00119{bottom:813.030000px;}
.ye1_c00119{bottom:813.885000px;}
.y13_c00119{bottom:821.670000px;}
.ydc_c00119{bottom:825.990000px;}
.ye0_c00119{bottom:826.845000px;}
.yde_c00119{bottom:827.715000px;}
.ydf_c00119{bottom:832.035000px;}
.ydb_c00119{bottom:832.890000px;}
.yda_c00119{bottom:833.760000px;}
.ydd_c00119{bottom:834.630000px;}
.yd3_c00119{bottom:845.850000px;}
.yd5_c00119{bottom:848.445000px;}
.yd7_c00119{bottom:849.315000px;}
.yd9_c00119{bottom:850.170000px;}
.yd8_c00119{bottom:851.040000px;}
.yd4_c00119{bottom:852.765000px;}
.yd2_c00119{bottom:853.635000px;}
.yd6_c00119{bottom:854.490000px;}
.yd1_c00119{bottom:864.870000px;}
.yd0_c00119{bottom:866.595000px;}
.ycc_c00119{bottom:869.190000px;}
.ycd_c00119{bottom:870.915000px;}
.yce_c00119{bottom:872.640000px;}
.ycf_c00119{bottom:873.510000px;}
.yca_c00119{bottom:874.365000px;}
.ycb_c00119{bottom:875.235000px;}
.yc9_c00119{bottom:878.685000px;}
.yc8_c00119{bottom:889.050000px;}
.yc6_c00119{bottom:891.645000px;}
.yc5_c00119{bottom:893.370000px;}
.yc7_c00119{bottom:894.240000px;}
.yc4_c00119{bottom:895.110000px;}
.yc1_c00119{bottom:909.795000px;}
.ybe_c00119{bottom:911.520000px;}
.yc3_c00119{bottom:912.390000px;}
.yc2_c00119{bottom:914.115000px;}
.yc0_c00119{bottom:914.970000px;}
.ybf_c00119{bottom:915.840000px;}
.y1e4_c00119{bottom:927.930000px;}
.yba_c00119{bottom:929.670000px;}
.yb9_c00119{bottom:930.525000px;}
.ybc_c00119{bottom:931.395000px;}
.ybd_c00119{bottom:933.990000px;}
.yb8_c00119{bottom:934.845000px;}
.yb7_c00119{bottom:935.715000px;}
.ybb_c00119{bottom:936.570000px;}
.y1e3_c00119{bottom:940.035000px;}
.yb6_c00119{bottom:946.080000px;}
.yb1_c00119{bottom:949.530000px;}
.yb2_c00119{bottom:950.400000px;}
.yb3_c00119{bottom:951.270000px;}
.yb5_c00119{bottom:952.125000px;}
.yb4_c00119{bottom:952.995000px;}
.y1e2_c00119{bottom:954.720000px;}
.yaf_c00119{bottom:955.590000px;}
.yae_c00119{bottom:956.445000px;}
.yb0_c00119{bottom:957.315000px;}
.yad_c00119{bottom:969.405000px;}
.ya7_c00119{bottom:970.275000px;}
.yab_c00119{bottom:971.130000px;}
.ya8_c00119{bottom:972.000000px;}
.ya9_c00119{bottom:975.450000px;}
.yaa_c00119{bottom:976.320000px;}
.yac_c00119{bottom:977.190000px;}
.y1e0_c00119{bottom:981.510000px;}
.y1e1_c00119{bottom:984.960000px;}
.ya1_c00119{bottom:991.005000px;}
.ya3_c00119{bottom:991.875000px;}
.ya5_c00119{bottom:993.600000px;}
.ya2_c00119{bottom:996.195000px;}
.ya0_c00119{bottom:997.050000px;}
.ya6_c00119{bottom:997.920000px;}
.ya4_c00119{bottom:1003.965000px;}
.y9a_c00119{bottom:1010.880000px;}
.y9c_c00119{bottom:1012.605000px;}
.y9b_c00119{bottom:1016.070000px;}
.y99_c00119{bottom:1016.925000px;}
.y9d_c00119{bottom:1017.795000px;}
.y9e_c00119{bottom:1020.390000px;}
.y9f_c00119{bottom:1021.245000px;}
.y96_c00119{bottom:1031.610000px;}
.y95_c00119{bottom:1033.350000px;}
.y98_c00119{bottom:1034.205000px;}
.y94_c00119{bottom:1035.930000px;}
.y93_c00119{bottom:1036.800000px;}
.y97_c00119{bottom:1038.525000px;}
.y91_c00119{bottom:1051.485000px;}
.y8f_c00119{bottom:1052.355000px;}
.y8e_c00119{bottom:1053.210000px;}
.y8c_c00119{bottom:1054.950000px;}
.y92_c00119{bottom:1055.805000px;}
.y8d_c00119{bottom:1056.675000px;}
.y8b_c00119{bottom:1057.530000px;}
.y90_c00119{bottom:1060.995000px;}
.y88_c00119{bottom:1072.230000px;}
.y89_c00119{bottom:1073.085000px;}
.y87_c00119{bottom:1077.405000px;}
.y86_c00119{bottom:1078.275000px;}
.y8a_c00119{bottom:1079.130000px;}
.y10_c00119{bottom:1082.595000px;}
.y80_c00119{bottom:1086.915000px;}
.y83_c00119{bottom:1089.510000px;}
.y82_c00119{bottom:1090.365000px;}
.y12_c00119{bottom:1091.235000px;}
.y81_c00119{bottom:1092.960000px;}
.y85_c00119{bottom:1094.685000px;}
.y84_c00119{bottom:1098.150000px;}
.y11_c00119{bottom:1100.730000px;}
.y7a_c00119{bottom:1112.835000px;}
.y7c_c00119{bottom:1113.690000px;}
.y7f_c00119{bottom:1114.560000px;}
.y7b_c00119{bottom:1115.430000px;}
.y7d_c00119{bottom:1116.285000px;}
.y79_c00119{bottom:1118.010000px;}
.y78_c00119{bottom:1118.880000px;}
.y7e_c00119{bottom:1120.605000px;}
.yf_c00119{bottom:1124.925000px;}
.ye_c00119{bottom:1126.650000px;}
.y71_c00119{bottom:1133.565000px;}
.y73_c00119{bottom:1134.435000px;}
.y77_c00119{bottom:1135.290000px;}
.y72_c00119{bottom:1138.755000px;}
.y74_c00119{bottom:1139.610000px;}
.y75_c00119{bottom:1140.480000px;}
.y76_c00119{bottom:1141.350000px;}
.y6b_c00119{bottom:1153.440000px;}
.y69_c00119{bottom:1154.310000px;}
.y70_c00119{bottom:1155.165000px;}
.y6e_c00119{bottom:1156.035000px;}
.y6c_c00119{bottom:1156.890000px;}
.y6a_c00119{bottom:1158.630000px;}
.y67_c00119{bottom:1159.485000px;}
.y68_c00119{bottom:1160.355000px;}
.y6d_c00119{bottom:1161.210000px;}
.y6f_c00119{bottom:1162.080000px;}
.yd_c00119{bottom:1164.675000px;}
.y1df_c00119{bottom:1169.850000px;}
.y1de_c00119{bottom:1173.315000px;}
.y63_c00119{bottom:1174.170000px;}
.y65_c00119{bottom:1175.040000px;}
.y62_c00119{bottom:1179.360000px;}
.y64_c00119{bottom:1180.230000px;}
.y66_c00119{bottom:1181.085000px;}
.yc_c00119{bottom:1184.550000px;}
.y5b_c00119{bottom:1194.045000px;}
.y5f_c00119{bottom:1195.770000px;}
.y60_c00119{bottom:1196.640000px;}
.y5d_c00119{bottom:1200.090000px;}
.y5c_c00119{bottom:1200.960000px;}
.y61_c00119{bottom:1201.830000px;}
.y5e_c00119{bottom:1202.685000px;}
.y53_c00119{bottom:1206.150000px;}
.y58_c00119{bottom:1211.325000px;}
.y55_c00119{bottom:1212.195000px;}
.y56_c00119{bottom:1213.920000px;}
.y52_c00119{bottom:1215.645000px;}
.y57_c00119{bottom:1216.515000px;}
.y54_c00119{bottom:1220.835000px;}
.y5a_c00119{bottom:1221.690000px;}
.y59_c00119{bottom:1222.560000px;}
.ya_c00119{bottom:1228.605000px;}
.yb_c00119{bottom:1229.475000px;}
.y51_c00119{bottom:1232.070000px;}
.y4c_c00119{bottom:1232.925000px;}
.y4e_c00119{bottom:1233.795000px;}
.y4b_c00119{bottom:1234.650000px;}
.y8_c00119{bottom:1237.245000px;}
.y4f_c00119{bottom:1238.115000px;}
.y9_c00119{bottom:1240.710000px;}
.y50_c00119{bottom:1242.435000px;}
.y4d_c00119{bottom:1245.030000px;}
.y43_c00119{bottom:1253.670000px;}
.y46_c00119{bottom:1256.250000px;}
.y4a_c00119{bottom:1257.120000px;}
.y48_c00119{bottom:1257.990000px;}
.y47_c00119{bottom:1259.715000px;}
.y44_c00119{bottom:1260.570000px;}
.y45_c00119{bottom:1262.310000px;}
.y49_c00119{bottom:1264.035000px;}
.y7_c00119{bottom:1265.760000px;}
.y42_c00119{bottom:1268.355000px;}
.y3b_c00119{bottom:1270.080000px;}
.y3c_c00119{bottom:1270.950000px;}
.y39_c00119{bottom:1271.805000px;}
.y41_c00119{bottom:1272.675000px;}
.y38_c00119{bottom:1273.530000px;}
.y3d_c00119{bottom:1275.270000px;}
.y3a_c00119{bottom:1276.125000px;}
.y40_c00119{bottom:1281.315000px;}
.y3e_c00119{bottom:1282.170000px;}
.y3f_c00119{bottom:1283.040000px;}
.y6_c00119{bottom:1286.490000px;}
.y37_c00119{bottom:1296.870000px;}
.y36_c00119{bottom:1297.725000px;}
.y31_c00119{bottom:1300.320000px;}
.y33_c00119{bottom:1301.190000px;}
.y34_c00119{bottom:1302.915000px;}
.y35_c00119{bottom:1303.770000px;}
.y32_c00119{bottom:1305.510000px;}
.y30_c00119{bottom:1314.150000px;}
.y29_c00119{bottom:1315.005000px;}
.y2a_c00119{bottom:1315.875000px;}
.y5_c00119{bottom:1316.730000px;}
.y2e_c00119{bottom:1317.600000px;}
.y2f_c00119{bottom:1318.470000px;}
.y4_c00119{bottom:1319.325000px;}
.y2b_c00119{bottom:1321.920000px;}
.y2c_c00119{bottom:1322.790000px;}
.y2d_c00119{bottom:1324.515000px;}
.y3_c00119{bottom:1326.240000px;}
.y20_c00119{bottom:1330.560000px;}
.y28_c00119{bottom:1332.285000px;}
.y22_c00119{bottom:1334.010000px;}
.y26_c00119{bottom:1335.750000px;}
.y21_c00119{bottom:1336.605000px;}
.y24_c00119{bottom:1338.330000px;}
.y25_c00119{bottom:1339.200000px;}
.y27_c00119{bottom:1342.650000px;}
.y23_c00119{bottom:1343.520000px;}
.y1e_c00119{bottom:1358.205000px;}
.y1b_c00119{bottom:1359.075000px;}
.y1c_c00119{bottom:1362.525000px;}
.y1a_c00119{bottom:1363.395000px;}
.y1d_c00119{bottom:1364.250000px;}
.y2_c00119{bottom:1365.990000px;}
.y1f_c00119{bottom:1367.715000px;}
.y1_c00119{bottom:1369.440000px;}
.y16_c00119{bottom:1386.720000px;}
.y19_c00119{bottom:1387.590000px;}
.y18_c00119{bottom:1389.315000px;}
.y17_c00119{bottom:1401.405000px;}
.h8_c00119{height:3.110063px;}
.h25_c00119{height:5.399414px;}
.h3_c00119{height:6.209326px;}
.h26_c00119{height:6.590063px;}
.h1d_c00119{height:9.340986px;}
.h2_c00119{height:12.418652px;}
.hb_c00119{height:15.550313px;}
.h7_c00119{height:18.681973px;}
.h1c_c00119{height:21.759639px;}
.h20_c00119{height:24.891299px;}
.h5_c00119{height:27.968965px;}
.h6_c00119{height:31.100625px;}
.h1a_c00119{height:34.232285px;}
.h24_c00119{height:37.309951px;}
.h4_c00119{height:40.441611px;}
.h1b_c00119{height:43.519277px;}
.he_c00119{height:46.650937px;}
.h11_c00119{height:49.782598px;}
.h1e_c00119{height:52.860264px;}
.h19_c00119{height:55.991924px;}
.h21_c00119{height:59.069590px;}
.hd_c00119{height:62.201250px;}
.h16_c00119{height:65.332910px;}
.h9_c00119{height:68.410576px;}
.hc_c00119{height:71.542236px;}
.h12_c00119{height:74.619902px;}
.hf_c00119{height:77.751563px;}
.h17_c00119{height:80.883223px;}
.h22_c00119{height:83.960889px;}
.h15_c00119{height:87.092549px;}
.h18_c00119{height:90.170215px;}
.ha_c00119{height:93.301875px;}
.h10_c00119{height:96.433535px;}
.h23_c00119{height:99.511201px;}
.h1f_c00119{height:102.642861px;}
.h13_c00119{height:105.720527px;}
.h14_c00119{height:108.852188px;}
.h1_c00119{height:1503.000000px;}
.h0_c00119{height:1503.360000px;}
.w0_c00119{width:1088.640000px;}
.w1_c00119{width:1089.000000px;}
.x0_c00119{left:0.000000px;}
.x4_c00119{left:1.725000px;}
.x1_c00119{left:4.320000px;}
.x5_c00119{left:7.770000px;}
.x6_c00119{left:12.960000px;}
.x2_c00119{left:20.730000px;}
.x3_c00119{left:38.880000px;}
.x7_c00119{left:95.910000px;}
.x8_c00119{left:116.640000px;}
.x9_c00119{left:127.874592px;}
.xdb_c00119{left:141.690000px;}
.x126_c00119{left:151.200000px;}
.x32_c00119{left:152.925000px;}
.xbf_c00119{left:158.115000px;}
.xf_c00119{left:159.840000px;}
.x109_c00119{left:162.435000px;}
.x44_c00119{left:168.480000px;}
.xc0_c00119{left:171.930000px;}
.x124_c00119{left:174.525000px;}
.x122_c00119{left:176.250000px;}
.xba_c00119{left:178.845000px;}
.xd4_c00119{left:182.310000px;}
.x123_c00119{left:184.035000px;}
.xeb_c00119{left:185.760000px;}
.x121_c00119{left:187.485000px;}
.x125_c00119{left:190.080000px;}
.xe2_c00119{left:194.400000px;}
.x111_c00119{left:196.995000px;}
.xc1_c00119{left:198.720000px;}
.xe6_c00119{left:200.445000px;}
.x11c_c00119{left:202.170000px;}
.x112_c00119{left:208.230000px;}
.x22_c00119{left:213.405000px;}
.xf1_c00119{left:217.725000px;}
.x118_c00119{left:219.450000px;}
.x3c_c00119{left:221.190000px;}
.x10_c00119{left:223.770000px;}
.xec_c00119{left:236.730000px;}
.x8f_c00119{left:241.920000px;}
.x76_c00119{left:244.515000px;}
.x89_c00119{left:250.560000px;}
.x5b_c00119{left:253.155000px;}
.x52_c00119{left:254.880000px;}
.x23_c00119{left:257.475000px;}
.x48_c00119{left:260.070000px;}
.xc6_c00119{left:261.795000px;}
.xf5_c00119{left:263.520000px;}
.xaa_c00119{left:266.115000px;}
.x63_c00119{left:269.565000px;}
.xd5_c00119{left:272.160000px;}
.xab_c00119{left:273.885000px;}
.xe7_c00119{left:275.610000px;}
.xe3_c00119{left:277.350000px;}
.xc7_c00119{left:279.075000px;}
.x6f_c00119{left:282.525000px;}
.xb4_c00119{left:285.120000px;}
.xc9_c00119{left:286.845000px;}
.x3d_c00119{left:288.570000px;}
.x45_c00119{left:291.165000px;}
.xa5_c00119{left:292.890000px;}
.xed_c00119{left:294.630000px;}
.x7f_c00119{left:298.080000px;}
.x33_c00119{left:300.675000px;}
.x1b_c00119{left:302.400000px;}
.xd6_c00119{left:304.125000px;}
.x97_c00119{left:305.850000px;}
.x77_c00119{left:307.590000px;}
.x49_c00119{left:311.910000px;}
.x67_c00119{left:313.635000px;}
.xac_c00119{left:317.085000px;}
.x70_c00119{left:318.810000px;}
.x8a_c00119{left:321.405000px;}
.xa0_c00119{left:324.000000px;}
.x78_c00119{left:325.725000px;}
.xb9_c00119{left:328.320000px;}
.xee_c00119{left:330.045000px;}
.x5c_c00119{left:332.640000px;}
.x108_c00119{left:334.365000px;}
.xbb_c00119{left:336.960000px;}
.x34_c00119{left:339.555000px;}
.xe4_c00119{left:341.280000px;}
.x68_c00119{left:343.875000px;}
.xe8_c00119{left:345.600000px;}
.x24_c00119{left:347.325000px;}
.x11_c00119{left:350.790000px;}
.xa_c00119{left:353.370000px;}
.x71_c00119{left:355.110000px;}
.xf9_c00119{left:356.835000px;}
.xad_c00119{left:359.430000px;}
.xf6_c00119{left:362.010000px;}
.xc2_c00119{left:363.750000px;}
.xf2_c00119{left:366.330000px;}
.x25_c00119{left:368.070000px;}
.x79_c00119{left:370.650000px;}
.x93_c00119{left:373.245000px;}
.x4a_c00119{left:374.970000px;}
.xa6_c00119{left:377.565000px;}
.x10e_c00119{left:379.290000px;}
.x72_c00119{left:381.885000px;}
.x53_c00119{left:386.205000px;}
.xde_c00119{left:388.800000px;}
.xa1_c00119{left:391.395000px;}
.x35_c00119{left:393.120000px;}
.x80_c00119{left:396.570000px;}
.x102_c00119{left:398.310000px;}
.xe1_c00119{left:400.035000px;}
.xb5_c00119{left:401.760000px;}
.x69_c00119{left:406.080000px;}
.xd7_c00119{left:408.675000px;}
.x104_c00119{left:411.270000px;}
.x26_c00119{left:412.995000px;}
.x54_c00119{left:415.590000px;}
.xf7_c00119{left:418.170000px;}
.xd8_c00119{left:421.635000px;}
.x1c_c00119{left:424.230000px;}
.x98_c00119{left:425.955000px;}
.x10f_c00119{left:429.405000px;}
.x64_c00119{left:431.130000px;}
.x7a_c00119{left:432.870000px;}
.x3e_c00119{left:434.595000px;}
.xa7_c00119{left:438.045000px;}
.xb_c00119{left:439.770000px;}
.xff_c00119{left:443.235000px;}
.x7b_c00119{left:444.960000px;}
.x55_c00119{left:446.685000px;}
.x11f_c00119{left:449.280000px;}
.x12_c00119{left:451.875000px;}
.xc_c00119{left:454.470000px;}
.x73_c00119{left:456.195000px;}
.x4b_c00119{left:461.370000px;}
.xfd_c00119{left:463.965000px;}
.x5d_c00119{left:465.690000px;}
.x106_c00119{left:467.430000px;}
.x8b_c00119{left:469.155000px;}
.x81_c00119{left:471.750000px;}
.xbc_c00119{left:475.200000px;}
.x1d_c00119{left:477.795000px;}
.xae_c00119{left:480.390000px;}
.x90_c00119{left:483.840000px;}
.x100_c00119{left:486.435000px;}
.x13_c00119{left:488.160000px;}
.x8c_c00119{left:490.755000px;}
.xa8_c00119{left:493.350000px;}
.xa2_c00119{left:498.525000px;}
.xfa_c00119{left:502.845000px;}
.x3f_c00119{left:505.440000px;}
.x103_c00119{left:507.165000px;}
.x82_c00119{left:508.890000px;}
.x27_c00119{left:515.805000px;}
.xaf_c00119{left:517.530000px;}
.x4c_c00119{left:523.590000px;}
.x91_c00119{left:525.315000px;}
.x83_c00119{left:535.680000px;}
.x14_c00119{left:537.405000px;}
.x101_c00119{left:540.000000px;}
.xb0_c00119{left:542.595000px;}
.x10a_c00119{left:544.320000px;}
.xfb_c00119{left:546.045000px;}
.x7c_c00119{left:547.770000px;}
.x28_c00119{left:551.235000px;}
.xc8_c00119{left:553.830000px;}
.x15_c00119{left:555.555000px;}
.x36_c00119{left:557.280000px;}
.xef_c00119{left:559.005000px;}
.x119_c00119{left:575.430000px;}
.x84_c00119{left:577.155000px;}
.x11a_c00119{left:580.605000px;}
.x29_c00119{left:584.070000px;}
.xbd_c00119{left:587.520000px;}
.x5e_c00119{left:590.115000px;}
.xf0_c00119{left:591.840000px;}
.x16_c00119{left:594.435000px;}
.x4d_c00119{left:597.030000px;}
.x74_c00119{left:600.480000px;}
.x6a_c00119{left:603.075000px;}
.xa3_c00119{left:604.800000px;}
.x107_c00119{left:606.525000px;}
.x2a_c00119{left:608.250000px;}
.xdc_c00119{left:609.990000px;}
.x56_c00119{left:611.715000px;}
.x6b_c00119{left:614.310000px;}
.x99_c00119{left:617.760000px;}
.xd1_c00119{left:621.210000px;}
.x37_c00119{left:622.950000px;}
.xca_c00119{left:624.675000px;}
.x4e_c00119{left:626.400000px;}
.x5f_c00119{left:628.125000px;}
.x65_c00119{left:630.720000px;}
.xb1_c00119{left:632.445000px;}
.x6c_c00119{left:635.040000px;}
.x1e_c00119{left:636.765000px;}
.x2b_c00119{left:639.360000px;}
.xd_c00119{left:641.085000px;}
.x17_c00119{left:643.680000px;}
.xcb_c00119{left:645.405000px;}
.x75_c00119{left:648.870000px;}
.xfe_c00119{left:652.320000px;}
.x9a_c00119{left:655.770000px;}
.x66_c00119{left:657.510000px;}
.xc3_c00119{left:660.960000px;}
.xd9_c00119{left:663.555000px;}
.x85_c00119{left:667.005000px;}
.x115_c00119{left:668.730000px;}
.x6d_c00119{left:671.325000px;}
.x57_c00119{left:673.050000px;}
.xb2_c00119{left:677.370000px;}
.x9b_c00119{left:679.965000px;}
.xb6_c00119{left:682.560000px;}
.xe9_c00119{left:685.155000px;}
.x116_c00119{left:686.880000px;}
.xcc_c00119{left:689.475000px;}
.x4f_c00119{left:692.070000px;}
.x38_c00119{left:695.520000px;}
.xce_c00119{left:697.245000px;}
.xf3_c00119{left:701.565000px;}
.x40_c00119{left:704.160000px;}
.x60_c00119{left:706.755000px;}
.x86_c00119{left:709.350000px;}
.x46_c00119{left:711.930000px;}
.x41_c00119{left:715.395000px;}
.xe5_c00119{left:717.990000px;}
.x8d_c00119{left:722.310000px;}
.x120_c00119{left:724.035000px;}
.x94_c00119{left:726.630000px;}
.xa4_c00119{left:730.950000px;}
.x58_c00119{left:732.675000px;}
.x47_c00119{left:734.400000px;}
.x2c_c00119{left:737.850000px;}
.x1f_c00119{left:741.315000px;}
.x61_c00119{left:743.910000px;}
.x18_c00119{left:747.360000px;}
.x59_c00119{left:750.810000px;}
.x7d_c00119{left:753.405000px;}
.xea_c00119{left:755.130000px;}
.x8e_c00119{left:756.870000px;}
.x11d_c00119{left:760.320000px;}
.x6e_c00119{left:763.770000px;}
.x50_c00119{left:766.365000px;}
.x95_c00119{left:768.960000px;}
.xf4_c00119{left:771.555000px;}
.x87_c00119{left:773.280000px;}
.x7e_c00119{left:775.005000px;}
.x2d_c00119{left:778.470000px;}
.xc4_c00119{left:780.195000px;}
.x9c_c00119{left:781.920000px;}
.x20_c00119{left:784.515000px;}
.x51_c00119{left:787.110000px;}
.xdd_c00119{left:788.835000px;}
.x9d_c00119{left:790.560000px;}
.x2e_c00119{left:793.155000px;}
.xa9_c00119{left:794.880000px;}
.x39_c00119{left:797.475000px;}
.x5a_c00119{left:800.070000px;}
.x11b_c00119{left:801.795000px;}
.x92_c00119{left:805.245000px;}
.x21_c00119{left:807.840000px;}
.x42_c00119{left:809.565000px;}
.xcf_c00119{left:811.290000px;}
.x2f_c00119{left:813.885000px;}
.x19_c00119{left:816.480000px;}
.xda_c00119{left:819.075000px;}
.x105_c00119{left:820.800000px;}
.xb3_c00119{left:823.395000px;}
.x3a_c00119{left:825.990000px;}
.x88_c00119{left:829.440000px;}
.x11e_c00119{left:832.890000px;}
.x43_c00119{left:834.630000px;}
.x3b_c00119{left:837.210000px;}
.xe_c00119{left:839.805000px;}
.x30_c00119{left:842.400000px;}
.x10b_c00119{left:844.125000px;}
.xdf_c00119{left:847.590000px;}
.x96_c00119{left:849.315000px;}
.xcd_c00119{left:851.040000px;}
.x62_c00119{left:855.360000px;}
.xc5_c00119{left:857.955000px;}
.x9e_c00119{left:859.680000px;}
.x1a_c00119{left:864.000000px;}
.x9f_c00119{left:865.725000px;}
.xbe_c00119{left:868.320000px;}
.xd2_c00119{left:870.045000px;}
.x31_c00119{left:871.770000px;}
.xb7_c00119{left:874.365000px;}
.x113_c00119{left:876.960000px;}
.xf8_c00119{left:879.555000px;}
.xfc_c00119{left:888.195000px;}
.xb8_c00119{left:890.790000px;}
.x10c_c00119{left:892.515000px;}
.xd0_c00119{left:894.240000px;}
.x110_c00119{left:896.835000px;}
.xd3_c00119{left:902.880000px;}
.xe0_c00119{left:910.650000px;}
.x117_c00119{left:916.710000px;}
.x10d_c00119{left:919.290000px;}
.x114_c00119{left:923.610000px;}
@media print{
.v1_c00119{vertical-align:-6.186667pt;}
.v0_c00119{vertical-align:0.000000pt;}
.v2_c00119{vertical-align:3.093333pt;}
.ls1_c00119{letter-spacing:0.000000pt;}
.ls0_c00119{letter-spacing:337.141600pt;}
.ws0_c00119{word-spacing:-0.734080pt;}
.ws1_c00119{word-spacing:0.000000pt;}
.fs6_c00119{font-size:3.072000pt;}
.fs23_c00119{font-size:5.333333pt;}
.fs1_c00119{font-size:6.133333pt;}
.fs1b_c00119{font-size:9.226667pt;}
.fs0_c00119{font-size:12.266667pt;}
.fs9_c00119{font-size:15.360000pt;}
.fs5_c00119{font-size:18.453333pt;}
.fs1a_c00119{font-size:21.493333pt;}
.fs1e_c00119{font-size:24.586667pt;}
.fs3_c00119{font-size:27.626667pt;}
.fs4_c00119{font-size:30.720000pt;}
.fs18_c00119{font-size:33.813333pt;}
.fs22_c00119{font-size:36.853333pt;}
.fs2_c00119{font-size:39.946667pt;}
.fs19_c00119{font-size:42.986667pt;}
.fsc_c00119{font-size:46.080000pt;}
.fsf_c00119{font-size:49.173333pt;}
.fs1c_c00119{font-size:52.213333pt;}
.fs17_c00119{font-size:55.306667pt;}
.fs1f_c00119{font-size:58.346667pt;}
.fsb_c00119{font-size:61.440000pt;}
.fs14_c00119{font-size:64.533333pt;}
.fs7_c00119{font-size:67.573333pt;}
.fsa_c00119{font-size:70.666667pt;}
.fs10_c00119{font-size:73.706667pt;}
.fsd_c00119{font-size:76.800000pt;}
.fs15_c00119{font-size:79.893333pt;}
.fs20_c00119{font-size:82.933333pt;}
.fs13_c00119{font-size:86.026667pt;}
.fs16_c00119{font-size:89.066667pt;}
.fs8_c00119{font-size:92.160000pt;}
.fse_c00119{font-size:95.253333pt;}
.fs21_c00119{font-size:98.293333pt;}
.fs1d_c00119{font-size:101.386667pt;}
.fs11_c00119{font-size:104.426667pt;}
.fs12_c00119{font-size:107.520000pt;}
.y0_c00119{bottom:0.000000pt;}
.y1dd_c00119{bottom:174.333333pt;}
.y1dc_c00119{bottom:180.480000pt;}
.y1db_c00119{bottom:188.160000pt;}
.y1d9_c00119{bottom:190.466667pt;}
.y1da_c00119{bottom:191.226667pt;}
.y1d1_c00119{bottom:192.773333pt;}
.y1d6_c00119{bottom:193.533333pt;}
.y1d3_c00119{bottom:196.613333pt;}
.y1d5_c00119{bottom:198.906667pt;}
.y1d4_c00119{bottom:199.680000pt;}
.y1d8_c00119{bottom:200.453333pt;}
.y1d2_c00119{bottom:201.213333pt;}
.y1d7_c00119{bottom:201.986667pt;}
.y1ce_c00119{bottom:214.266667pt;}
.y1cb_c00119{bottom:215.040000pt;}
.y1cd_c00119{bottom:215.813333pt;}
.y1d0_c00119{bottom:216.573333pt;}
.y1cc_c00119{bottom:217.346667pt;}
.y1ca_c00119{bottom:218.880000pt;}
.y1c9_c00119{bottom:220.413333pt;}
.y1cf_c00119{bottom:221.946667pt;}
.y1c2_c00119{bottom:228.866667pt;}
.y1bf_c00119{bottom:230.400000pt;}
.y1c3_c00119{bottom:231.173333pt;}
.y1c8_c00119{bottom:231.933333pt;}
.y1c1_c00119{bottom:233.466667pt;}
.y1c0_c00119{bottom:234.240000pt;}
.y1c6_c00119{bottom:236.546667pt;}
.y1c5_c00119{bottom:237.306667pt;}
.y1c7_c00119{bottom:238.853333pt;}
.y1c4_c00119{bottom:248.066667pt;}
.y1ba_c00119{bottom:250.373333pt;}
.y1bc_c00119{bottom:251.133333pt;}
.y1b8_c00119{bottom:251.906667pt;}
.y1bd_c00119{bottom:252.666667pt;}
.y1b6_c00119{bottom:253.440000pt;}
.y1b5_c00119{bottom:254.213333pt;}
.y1bb_c00119{bottom:254.973333pt;}
.y1b9_c00119{bottom:255.746667pt;}
.y1b7_c00119{bottom:256.506667pt;}
.y1be_c00119{bottom:259.586667pt;}
.y1b4_c00119{bottom:264.186667pt;}
.y1b3_c00119{bottom:264.960000pt;}
.y1ab_c00119{bottom:265.733333pt;}
.y1b0_c00119{bottom:266.493333pt;}
.y1ae_c00119{bottom:267.266667pt;}
.y1ac_c00119{bottom:268.026667pt;}
.y1aa_c00119{bottom:269.573333pt;}
.y1b1_c00119{bottom:272.640000pt;}
.y1af_c00119{bottom:273.413333pt;}
.y1ad_c00119{bottom:274.173333pt;}
.y1b2_c00119{bottom:278.786667pt;}
.y1a9_c00119{bottom:281.853333pt;}
.y1a5_c00119{bottom:282.626667pt;}
.y1a4_c00119{bottom:284.933333pt;}
.y1a6_c00119{bottom:285.693333pt;}
.y1a7_c00119{bottom:286.466667pt;}
.y1a1_c00119{bottom:288.000000pt;}
.y1a8_c00119{bottom:289.533333pt;}
.y1a3_c00119{bottom:290.306667pt;}
.y1a2_c00119{bottom:291.066667pt;}
.y19f_c00119{bottom:291.840000pt;}
.y1a0_c00119{bottom:293.373333pt;}
.y19d_c00119{bottom:305.666667pt;}
.y199_c00119{bottom:306.426667pt;}
.y195_c00119{bottom:307.200000pt;}
.y19c_c00119{bottom:307.973333pt;}
.y19e_c00119{bottom:308.733333pt;}
.y19a_c00119{bottom:309.506667pt;}
.y197_c00119{bottom:310.266667pt;}
.y198_c00119{bottom:311.040000pt;}
.y196_c00119{bottom:311.813333pt;}
.y19b_c00119{bottom:312.573333pt;}
.y190_c00119{bottom:321.786667pt;}
.y191_c00119{bottom:322.560000pt;}
.y194_c00119{bottom:324.093333pt;}
.y193_c00119{bottom:324.866667pt;}
.y18f_c00119{bottom:325.626667pt;}
.y192_c00119{bottom:327.173333pt;}
.y18d_c00119{bottom:331.013333pt;}
.y18e_c00119{bottom:336.386667pt;}
.y18a_c00119{bottom:340.986667pt;}
.y18c_c00119{bottom:341.760000pt;}
.y187_c00119{bottom:344.066667pt;}
.y18b_c00119{bottom:344.826667pt;}
.y189_c00119{bottom:346.373333pt;}
.y188_c00119{bottom:347.133333pt;}
.y181_c00119{bottom:355.586667pt;}
.y185_c00119{bottom:356.346667pt;}
.y186_c00119{bottom:358.653333pt;}
.y182_c00119{bottom:360.186667pt;}
.y184_c00119{bottom:364.026667pt;}
.y183_c00119{bottom:364.800000pt;}
.y180_c00119{bottom:374.786667pt;}
.y17c_c00119{bottom:375.546667pt;}
.y17b_c00119{bottom:376.320000pt;}
.y17d_c00119{bottom:377.853333pt;}
.y17f_c00119{bottom:381.693333pt;}
.y17e_c00119{bottom:382.466667pt;}
.y179_c00119{bottom:394.746667pt;}
.y177_c00119{bottom:395.520000pt;}
.y174_c00119{bottom:396.293333pt;}
.y17a_c00119{bottom:397.053333pt;}
.y176_c00119{bottom:397.826667pt;}
.y173_c00119{bottom:399.360000pt;}
.y175_c00119{bottom:400.893333pt;}
.y178_c00119{bottom:403.973333pt;}
.y16f_c00119{bottom:412.413333pt;}
.y171_c00119{bottom:413.186667pt;}
.y16b_c00119{bottom:413.946667pt;}
.y170_c00119{bottom:414.720000pt;}
.y16c_c00119{bottom:415.493333pt;}
.y172_c00119{bottom:417.026667pt;}
.y16e_c00119{bottom:417.786667pt;}
.y16d_c00119{bottom:418.560000pt;}
.y16a_c00119{bottom:419.333333pt;}
.y167_c00119{bottom:428.546667pt;}
.y165_c00119{bottom:429.306667pt;}
.y164_c00119{bottom:430.080000pt;}
.y163_c00119{bottom:434.693333pt;}
.y169_c00119{bottom:435.453333pt;}
.y168_c00119{bottom:436.226667pt;}
.y166_c00119{bottom:436.986667pt;}
.y162_c00119{bottom:437.760000pt;}
.y15c_c00119{bottom:446.213333pt;}
.y160_c00119{bottom:446.973333pt;}
.y15b_c00119{bottom:447.746667pt;}
.y161_c00119{bottom:448.506667pt;}
.y15e_c00119{bottom:450.053333pt;}
.y15a_c00119{bottom:450.813333pt;}
.y158_c00119{bottom:451.586667pt;}
.y15d_c00119{bottom:454.653333pt;}
.y159_c00119{bottom:455.426667pt;}
.y15f_c00119{bottom:467.706667pt;}
.y154_c00119{bottom:468.480000pt;}
.y155_c00119{bottom:469.253333pt;}
.y156_c00119{bottom:470.786667pt;}
.y152_c00119{bottom:472.320000pt;}
.y153_c00119{bottom:473.093333pt;}
.y157_c00119{bottom:481.533333pt;}
.y151_c00119{bottom:485.373333pt;}
.y149_c00119{bottom:486.146667pt;}
.y14b_c00119{bottom:486.906667pt;}
.y150_c00119{bottom:487.680000pt;}
.y14e_c00119{bottom:488.453333pt;}
.y14c_c00119{bottom:489.213333pt;}
.y14f_c00119{bottom:490.746667pt;}
.y14a_c00119{bottom:491.520000pt;}
.y14d_c00119{bottom:492.293333pt;}
.y146_c00119{bottom:503.813333pt;}
.y145_c00119{bottom:504.573333pt;}
.y148_c00119{bottom:506.880000pt;}
.y147_c00119{bottom:508.413333pt;}
.y143_c00119{bottom:509.186667pt;}
.y144_c00119{bottom:509.946667pt;}
.y142_c00119{bottom:522.240000pt;}
.y13c_c00119{bottom:523.013333pt;}
.y13e_c00119{bottom:525.306667pt;}
.y141_c00119{bottom:526.080000pt;}
.y140_c00119{bottom:526.853333pt;}
.y13f_c00119{bottom:527.613333pt;}
.y13d_c00119{bottom:528.386667pt;}
.y136_c00119{bottom:539.133333pt;}
.y13b_c00119{bottom:539.906667pt;}
.y137_c00119{bottom:540.666667pt;}
.y133_c00119{bottom:542.213333pt;}
.y138_c00119{bottom:542.973333pt;}
.y13a_c00119{bottom:543.746667pt;}
.y139_c00119{bottom:545.280000pt;}
.y134_c00119{bottom:546.053333pt;}
.y135_c00119{bottom:546.813333pt;}
.y131_c00119{bottom:547.586667pt;}
.y132_c00119{bottom:549.893333pt;}
.y12d_c00119{bottom:558.333333pt;}
.y12f_c00119{bottom:560.640000pt;}
.y130_c00119{bottom:561.413333pt;}
.y12e_c00119{bottom:565.253333pt;}
.y12c_c00119{bottom:569.853333pt;}
.y12a_c00119{bottom:576.773333pt;}
.y127_c00119{bottom:577.533333pt;}
.y128_c00119{bottom:578.306667pt;}
.y124_c00119{bottom:579.840000pt;}
.y129_c00119{bottom:580.613333pt;}
.y12b_c00119{bottom:581.373333pt;}
.y125_c00119{bottom:582.146667pt;}
.y126_c00119{bottom:582.906667pt;}
.y122_c00119{bottom:593.666667pt;}
.y123_c00119{bottom:594.426667pt;}
.y11c_c00119{bottom:595.200000pt;}
.y121_c00119{bottom:595.973333pt;}
.y11e_c00119{bottom:596.733333pt;}
.y11d_c00119{bottom:599.040000pt;}
.y11f_c00119{bottom:599.813333pt;}
.y120_c00119{bottom:600.573333pt;}
.y114_c00119{bottom:608.253333pt;}
.y115_c00119{bottom:609.026667pt;}
.y116_c00119{bottom:610.560000pt;}
.y11b_c00119{bottom:612.866667pt;}
.y119_c00119{bottom:614.400000pt;}
.y118_c00119{bottom:615.933333pt;}
.y11a_c00119{bottom:616.706667pt;}
.y117_c00119{bottom:617.466667pt;}
.y111_c00119{bottom:629.760000pt;}
.y10c_c00119{bottom:630.533333pt;}
.y10a_c00119{bottom:631.293333pt;}
.y10f_c00119{bottom:632.066667pt;}
.y10d_c00119{bottom:632.826667pt;}
.y112_c00119{bottom:633.600000pt;}
.y110_c00119{bottom:634.373333pt;}
.y10e_c00119{bottom:635.133333pt;}
.y10b_c00119{bottom:635.906667pt;}
.y113_c00119{bottom:644.346667pt;}
.y102_c00119{bottom:647.426667pt;}
.y103_c00119{bottom:648.186667pt;}
.y107_c00119{bottom:649.733333pt;}
.y108_c00119{bottom:650.493333pt;}
.y106_c00119{bottom:652.026667pt;}
.y104_c00119{bottom:652.800000pt;}
.y105_c00119{bottom:653.573333pt;}
.y101_c00119{bottom:655.866667pt;}
.y109_c00119{bottom:658.173333pt;}
.yfb_c00119{bottom:665.853333pt;}
.yfd_c00119{bottom:666.626667pt;}
.yf9_c00119{bottom:667.386667pt;}
.yf7_c00119{bottom:668.160000pt;}
.y100_c00119{bottom:668.933333pt;}
.yff_c00119{bottom:669.693333pt;}
.yfe_c00119{bottom:670.466667pt;}
.yfa_c00119{bottom:671.226667pt;}
.yf8_c00119{bottom:672.773333pt;}
.yfc_c00119{bottom:673.533333pt;}
.yf2_c00119{bottom:683.520000pt;}
.yf1_c00119{bottom:684.293333pt;}
.yf3_c00119{bottom:685.053333pt;}
.yf0_c00119{bottom:685.826667pt;}
.yf4_c00119{bottom:686.586667pt;}
.yf6_c00119{bottom:687.360000pt;}
.yef_c00119{bottom:688.133333pt;}
.yee_c00119{bottom:688.893333pt;}
.yf5_c00119{bottom:689.666667pt;}
.ye9_c00119{bottom:698.106667pt;}
.yea_c00119{bottom:699.653333pt;}
.y15_c00119{bottom:701.186667pt;}
.yed_c00119{bottom:704.253333pt;}
.yec_c00119{bottom:705.026667pt;}
.y14_c00119{bottom:705.786667pt;}
.yeb_c00119{bottom:708.093333pt;}
.ye7_c00119{bottom:717.306667pt;}
.ye4_c00119{bottom:718.080000pt;}
.ye2_c00119{bottom:719.613333pt;}
.ye3_c00119{bottom:720.386667pt;}
.ye8_c00119{bottom:721.146667pt;}
.ye5_c00119{bottom:721.920000pt;}
.ye6_c00119{bottom:722.693333pt;}
.ye1_c00119{bottom:723.453333pt;}
.y13_c00119{bottom:730.373333pt;}
.ydc_c00119{bottom:734.213333pt;}
.ye0_c00119{bottom:734.973333pt;}
.yde_c00119{bottom:735.746667pt;}
.ydf_c00119{bottom:739.586667pt;}
.ydb_c00119{bottom:740.346667pt;}
.yda_c00119{bottom:741.120000pt;}
.ydd_c00119{bottom:741.893333pt;}
.yd3_c00119{bottom:751.866667pt;}
.yd5_c00119{bottom:754.173333pt;}
.yd7_c00119{bottom:754.946667pt;}
.yd9_c00119{bottom:755.706667pt;}
.yd8_c00119{bottom:756.480000pt;}
.yd4_c00119{bottom:758.013333pt;}
.yd2_c00119{bottom:758.786667pt;}
.yd6_c00119{bottom:759.546667pt;}
.yd1_c00119{bottom:768.773333pt;}
.yd0_c00119{bottom:770.306667pt;}
.ycc_c00119{bottom:772.613333pt;}
.ycd_c00119{bottom:774.146667pt;}
.yce_c00119{bottom:775.680000pt;}
.ycf_c00119{bottom:776.453333pt;}
.yca_c00119{bottom:777.213333pt;}
.ycb_c00119{bottom:777.986667pt;}
.yc9_c00119{bottom:781.053333pt;}
.yc8_c00119{bottom:790.266667pt;}
.yc6_c00119{bottom:792.573333pt;}
.yc5_c00119{bottom:794.106667pt;}
.yc7_c00119{bottom:794.880000pt;}
.yc4_c00119{bottom:795.653333pt;}
.yc1_c00119{bottom:808.706667pt;}
.ybe_c00119{bottom:810.240000pt;}
.yc3_c00119{bottom:811.013333pt;}
.yc2_c00119{bottom:812.546667pt;}
.yc0_c00119{bottom:813.306667pt;}
.ybf_c00119{bottom:814.080000pt;}
.y1e4_c00119{bottom:824.826667pt;}
.yba_c00119{bottom:826.373333pt;}
.yb9_c00119{bottom:827.133333pt;}
.ybc_c00119{bottom:827.906667pt;}
.ybd_c00119{bottom:830.213333pt;}
.yb8_c00119{bottom:830.973333pt;}
.yb7_c00119{bottom:831.746667pt;}
.ybb_c00119{bottom:832.506667pt;}
.y1e3_c00119{bottom:835.586667pt;}
.yb6_c00119{bottom:840.960000pt;}
.yb1_c00119{bottom:844.026667pt;}
.yb2_c00119{bottom:844.800000pt;}
.yb3_c00119{bottom:845.573333pt;}
.yb5_c00119{bottom:846.333333pt;}
.yb4_c00119{bottom:847.106667pt;}
.y1e2_c00119{bottom:848.640000pt;}
.yaf_c00119{bottom:849.413333pt;}
.yae_c00119{bottom:850.173333pt;}
.yb0_c00119{bottom:850.946667pt;}
.yad_c00119{bottom:861.693333pt;}
.ya7_c00119{bottom:862.466667pt;}
.yab_c00119{bottom:863.226667pt;}
.ya8_c00119{bottom:864.000000pt;}
.ya9_c00119{bottom:867.066667pt;}
.yaa_c00119{bottom:867.840000pt;}
.yac_c00119{bottom:868.613333pt;}
.y1e0_c00119{bottom:872.453333pt;}
.y1e1_c00119{bottom:875.520000pt;}
.ya1_c00119{bottom:880.893333pt;}
.ya3_c00119{bottom:881.666667pt;}
.ya5_c00119{bottom:883.200000pt;}
.ya2_c00119{bottom:885.506667pt;}
.ya0_c00119{bottom:886.266667pt;}
.ya6_c00119{bottom:887.040000pt;}
.ya4_c00119{bottom:892.413333pt;}
.y9a_c00119{bottom:898.560000pt;}
.y9c_c00119{bottom:900.093333pt;}
.y9b_c00119{bottom:903.173333pt;}
.y99_c00119{bottom:903.933333pt;}
.y9d_c00119{bottom:904.706667pt;}
.y9e_c00119{bottom:907.013333pt;}
.y9f_c00119{bottom:907.773333pt;}
.y96_c00119{bottom:916.986667pt;}
.y95_c00119{bottom:918.533333pt;}
.y98_c00119{bottom:919.293333pt;}
.y94_c00119{bottom:920.826667pt;}
.y93_c00119{bottom:921.600000pt;}
.y97_c00119{bottom:923.133333pt;}
.y91_c00119{bottom:934.653333pt;}
.y8f_c00119{bottom:935.426667pt;}
.y8e_c00119{bottom:936.186667pt;}
.y8c_c00119{bottom:937.733333pt;}
.y92_c00119{bottom:938.493333pt;}
.y8d_c00119{bottom:939.266667pt;}
.y8b_c00119{bottom:940.026667pt;}
.y90_c00119{bottom:943.106667pt;}
.y88_c00119{bottom:953.093333pt;}
.y89_c00119{bottom:953.853333pt;}
.y87_c00119{bottom:957.693333pt;}
.y86_c00119{bottom:958.466667pt;}
.y8a_c00119{bottom:959.226667pt;}
.y10_c00119{bottom:962.306667pt;}
.y80_c00119{bottom:966.146667pt;}
.y83_c00119{bottom:968.453333pt;}
.y82_c00119{bottom:969.213333pt;}
.y12_c00119{bottom:969.986667pt;}
.y81_c00119{bottom:971.520000pt;}
.y85_c00119{bottom:973.053333pt;}
.y84_c00119{bottom:976.133333pt;}
.y11_c00119{bottom:978.426667pt;}
.y7a_c00119{bottom:989.186667pt;}
.y7c_c00119{bottom:989.946667pt;}
.y7f_c00119{bottom:990.720000pt;}
.y7b_c00119{bottom:991.493333pt;}
.y7d_c00119{bottom:992.253333pt;}
.y79_c00119{bottom:993.786667pt;}
.y78_c00119{bottom:994.560000pt;}
.y7e_c00119{bottom:996.093333pt;}
.yf_c00119{bottom:999.933333pt;}
.ye_c00119{bottom:1001.466667pt;}
.y71_c00119{bottom:1007.613333pt;}
.y73_c00119{bottom:1008.386667pt;}
.y77_c00119{bottom:1009.146667pt;}
.y72_c00119{bottom:1012.226667pt;}
.y74_c00119{bottom:1012.986667pt;}
.y75_c00119{bottom:1013.760000pt;}
.y76_c00119{bottom:1014.533333pt;}
.y6b_c00119{bottom:1025.280000pt;}
.y69_c00119{bottom:1026.053333pt;}
.y70_c00119{bottom:1026.813333pt;}
.y6e_c00119{bottom:1027.586667pt;}
.y6c_c00119{bottom:1028.346667pt;}
.y6a_c00119{bottom:1029.893333pt;}
.y67_c00119{bottom:1030.653333pt;}
.y68_c00119{bottom:1031.426667pt;}
.y6d_c00119{bottom:1032.186667pt;}
.y6f_c00119{bottom:1032.960000pt;}
.yd_c00119{bottom:1035.266667pt;}
.y1df_c00119{bottom:1039.866667pt;}
.y1de_c00119{bottom:1042.946667pt;}
.y63_c00119{bottom:1043.706667pt;}
.y65_c00119{bottom:1044.480000pt;}
.y62_c00119{bottom:1048.320000pt;}
.y64_c00119{bottom:1049.093333pt;}
.y66_c00119{bottom:1049.853333pt;}
.yc_c00119{bottom:1052.933333pt;}
.y5b_c00119{bottom:1061.373333pt;}
.y5f_c00119{bottom:1062.906667pt;}
.y60_c00119{bottom:1063.680000pt;}
.y5d_c00119{bottom:1066.746667pt;}
.y5c_c00119{bottom:1067.520000pt;}
.y61_c00119{bottom:1068.293333pt;}
.y5e_c00119{bottom:1069.053333pt;}
.y53_c00119{bottom:1072.133333pt;}
.y58_c00119{bottom:1076.733333pt;}
.y55_c00119{bottom:1077.506667pt;}
.y56_c00119{bottom:1079.040000pt;}
.y52_c00119{bottom:1080.573333pt;}
.y57_c00119{bottom:1081.346667pt;}
.y54_c00119{bottom:1085.186667pt;}
.y5a_c00119{bottom:1085.946667pt;}
.y59_c00119{bottom:1086.720000pt;}
.ya_c00119{bottom:1092.093333pt;}
.yb_c00119{bottom:1092.866667pt;}
.y51_c00119{bottom:1095.173333pt;}
.y4c_c00119{bottom:1095.933333pt;}
.y4e_c00119{bottom:1096.706667pt;}
.y4b_c00119{bottom:1097.466667pt;}
.y8_c00119{bottom:1099.773333pt;}
.y4f_c00119{bottom:1100.546667pt;}
.y9_c00119{bottom:1102.853333pt;}
.y50_c00119{bottom:1104.386667pt;}
.y4d_c00119{bottom:1106.693333pt;}
.y43_c00119{bottom:1114.373333pt;}
.y46_c00119{bottom:1116.666667pt;}
.y4a_c00119{bottom:1117.440000pt;}
.y48_c00119{bottom:1118.213333pt;}
.y47_c00119{bottom:1119.746667pt;}
.y44_c00119{bottom:1120.506667pt;}
.y45_c00119{bottom:1122.053333pt;}
.y49_c00119{bottom:1123.586667pt;}
.y7_c00119{bottom:1125.120000pt;}
.y42_c00119{bottom:1127.426667pt;}
.y3b_c00119{bottom:1128.960000pt;}
.y3c_c00119{bottom:1129.733333pt;}
.y39_c00119{bottom:1130.493333pt;}
.y41_c00119{bottom:1131.266667pt;}
.y38_c00119{bottom:1132.026667pt;}
.y3d_c00119{bottom:1133.573333pt;}
.y3a_c00119{bottom:1134.333333pt;}
.y40_c00119{bottom:1138.946667pt;}
.y3e_c00119{bottom:1139.706667pt;}
.y3f_c00119{bottom:1140.480000pt;}
.y6_c00119{bottom:1143.546667pt;}
.y37_c00119{bottom:1152.773333pt;}
.y36_c00119{bottom:1153.533333pt;}
.y31_c00119{bottom:1155.840000pt;}
.y33_c00119{bottom:1156.613333pt;}
.y34_c00119{bottom:1158.146667pt;}
.y35_c00119{bottom:1158.906667pt;}
.y32_c00119{bottom:1160.453333pt;}
.y30_c00119{bottom:1168.133333pt;}
.y29_c00119{bottom:1168.893333pt;}
.y2a_c00119{bottom:1169.666667pt;}
.y5_c00119{bottom:1170.426667pt;}
.y2e_c00119{bottom:1171.200000pt;}
.y2f_c00119{bottom:1171.973333pt;}
.y4_c00119{bottom:1172.733333pt;}
.y2b_c00119{bottom:1175.040000pt;}
.y2c_c00119{bottom:1175.813333pt;}
.y2d_c00119{bottom:1177.346667pt;}
.y3_c00119{bottom:1178.880000pt;}
.y20_c00119{bottom:1182.720000pt;}
.y28_c00119{bottom:1184.253333pt;}
.y22_c00119{bottom:1185.786667pt;}
.y26_c00119{bottom:1187.333333pt;}
.y21_c00119{bottom:1188.093333pt;}
.y24_c00119{bottom:1189.626667pt;}
.y25_c00119{bottom:1190.400000pt;}
.y27_c00119{bottom:1193.466667pt;}
.y23_c00119{bottom:1194.240000pt;}
.y1e_c00119{bottom:1207.293333pt;}
.y1b_c00119{bottom:1208.066667pt;}
.y1c_c00119{bottom:1211.133333pt;}
.y1a_c00119{bottom:1211.906667pt;}
.y1d_c00119{bottom:1212.666667pt;}
.y2_c00119{bottom:1214.213333pt;}
.y1f_c00119{bottom:1215.746667pt;}
.y1_c00119{bottom:1217.280000pt;}
.y16_c00119{bottom:1232.640000pt;}
.y19_c00119{bottom:1233.413333pt;}
.y18_c00119{bottom:1234.946667pt;}
.y17_c00119{bottom:1245.693333pt;}
.h8_c00119{height:2.764500pt;}
.h25_c00119{height:4.799479pt;}
.h3_c00119{height:5.519401pt;}
.h26_c00119{height:5.857833pt;}
.h1d_c00119{height:8.303099pt;}
.h2_c00119{height:11.038802pt;}
.hb_c00119{height:13.822500pt;}
.h7_c00119{height:16.606198pt;}
.h1c_c00119{height:19.341901pt;}
.h20_c00119{height:22.125599pt;}
.h5_c00119{height:24.861302pt;}
.h6_c00119{height:27.645000pt;}
.h1a_c00119{height:30.428698pt;}
.h24_c00119{height:33.164401pt;}
.h4_c00119{height:35.948099pt;}
.h1b_c00119{height:38.683802pt;}
.he_c00119{height:41.467500pt;}
.h11_c00119{height:44.251198pt;}
.h1e_c00119{height:46.986901pt;}
.h19_c00119{height:49.770599pt;}
.h21_c00119{height:52.506302pt;}
.hd_c00119{height:55.290000pt;}
.h16_c00119{height:58.073698pt;}
.h9_c00119{height:60.809401pt;}
.hc_c00119{height:63.593099pt;}
.h12_c00119{height:66.328802pt;}
.hf_c00119{height:69.112500pt;}
.h17_c00119{height:71.896198pt;}
.h22_c00119{height:74.631901pt;}
.h15_c00119{height:77.415599pt;}
.h18_c00119{height:80.151302pt;}
.ha_c00119{height:82.935000pt;}
.h10_c00119{height:85.718698pt;}
.h23_c00119{height:88.454401pt;}
.h1f_c00119{height:91.238099pt;}
.h13_c00119{height:93.973802pt;}
.h14_c00119{height:96.757500pt;}
.h1_c00119{height:1336.000000pt;}
.h0_c00119{height:1336.320000pt;}
.w0_c00119{width:967.680000pt;}
.w1_c00119{width:968.000000pt;}
.x0_c00119{left:0.000000pt;}
.x4_c00119{left:1.533333pt;}
.x1_c00119{left:3.840000pt;}
.x5_c00119{left:6.906667pt;}
.x6_c00119{left:11.520000pt;}
.x2_c00119{left:18.426667pt;}
.x3_c00119{left:34.560000pt;}
.x7_c00119{left:85.253333pt;}
.x8_c00119{left:103.680000pt;}
.x9_c00119{left:113.666304pt;}
.xdb_c00119{left:125.946667pt;}
.x126_c00119{left:134.400000pt;}
.x32_c00119{left:135.933333pt;}
.xbf_c00119{left:140.546667pt;}
.xf_c00119{left:142.080000pt;}
.x109_c00119{left:144.386667pt;}
.x44_c00119{left:149.760000pt;}
.xc0_c00119{left:152.826667pt;}
.x124_c00119{left:155.133333pt;}
.x122_c00119{left:156.666667pt;}
.xba_c00119{left:158.973333pt;}
.xd4_c00119{left:162.053333pt;}
.x123_c00119{left:163.586667pt;}
.xeb_c00119{left:165.120000pt;}
.x121_c00119{left:166.653333pt;}
.x125_c00119{left:168.960000pt;}
.xe2_c00119{left:172.800000pt;}
.x111_c00119{left:175.106667pt;}
.xc1_c00119{left:176.640000pt;}
.xe6_c00119{left:178.173333pt;}
.x11c_c00119{left:179.706667pt;}
.x112_c00119{left:185.093333pt;}
.x22_c00119{left:189.693333pt;}
.xf1_c00119{left:193.533333pt;}
.x118_c00119{left:195.066667pt;}
.x3c_c00119{left:196.613333pt;}
.x10_c00119{left:198.906667pt;}
.xec_c00119{left:210.426667pt;}
.x8f_c00119{left:215.040000pt;}
.x76_c00119{left:217.346667pt;}
.x89_c00119{left:222.720000pt;}
.x5b_c00119{left:225.026667pt;}
.x52_c00119{left:226.560000pt;}
.x23_c00119{left:228.866667pt;}
.x48_c00119{left:231.173333pt;}
.xc6_c00119{left:232.706667pt;}
.xf5_c00119{left:234.240000pt;}
.xaa_c00119{left:236.546667pt;}
.x63_c00119{left:239.613333pt;}
.xd5_c00119{left:241.920000pt;}
.xab_c00119{left:243.453333pt;}
.xe7_c00119{left:244.986667pt;}
.xe3_c00119{left:246.533333pt;}
.xc7_c00119{left:248.066667pt;}
.x6f_c00119{left:251.133333pt;}
.xb4_c00119{left:253.440000pt;}
.xc9_c00119{left:254.973333pt;}
.x3d_c00119{left:256.506667pt;}
.x45_c00119{left:258.813333pt;}
.xa5_c00119{left:260.346667pt;}
.xed_c00119{left:261.893333pt;}
.x7f_c00119{left:264.960000pt;}
.x33_c00119{left:267.266667pt;}
.x1b_c00119{left:268.800000pt;}
.xd6_c00119{left:270.333333pt;}
.x97_c00119{left:271.866667pt;}
.x77_c00119{left:273.413333pt;}
.x49_c00119{left:277.253333pt;}
.x67_c00119{left:278.786667pt;}
.xac_c00119{left:281.853333pt;}
.x70_c00119{left:283.386667pt;}
.x8a_c00119{left:285.693333pt;}
.xa0_c00119{left:288.000000pt;}
.x78_c00119{left:289.533333pt;}
.xb9_c00119{left:291.840000pt;}
.xee_c00119{left:293.373333pt;}
.x5c_c00119{left:295.680000pt;}
.x108_c00119{left:297.213333pt;}
.xbb_c00119{left:299.520000pt;}
.x34_c00119{left:301.826667pt;}
.xe4_c00119{left:303.360000pt;}
.x68_c00119{left:305.666667pt;}
.xe8_c00119{left:307.200000pt;}
.x24_c00119{left:308.733333pt;}
.x11_c00119{left:311.813333pt;}
.xa_c00119{left:314.106667pt;}
.x71_c00119{left:315.653333pt;}
.xf9_c00119{left:317.186667pt;}
.xad_c00119{left:319.493333pt;}
.xf6_c00119{left:321.786667pt;}
.xc2_c00119{left:323.333333pt;}
.xf2_c00119{left:325.626667pt;}
.x25_c00119{left:327.173333pt;}
.x79_c00119{left:329.466667pt;}
.x93_c00119{left:331.773333pt;}
.x4a_c00119{left:333.306667pt;}
.xa6_c00119{left:335.613333pt;}
.x10e_c00119{left:337.146667pt;}
.x72_c00119{left:339.453333pt;}
.x53_c00119{left:343.293333pt;}
.xde_c00119{left:345.600000pt;}
.xa1_c00119{left:347.906667pt;}
.x35_c00119{left:349.440000pt;}
.x80_c00119{left:352.506667pt;}
.x102_c00119{left:354.053333pt;}
.xe1_c00119{left:355.586667pt;}
.xb5_c00119{left:357.120000pt;}
.x69_c00119{left:360.960000pt;}
.xd7_c00119{left:363.266667pt;}
.x104_c00119{left:365.573333pt;}
.x26_c00119{left:367.106667pt;}
.x54_c00119{left:369.413333pt;}
.xf7_c00119{left:371.706667pt;}
.xd8_c00119{left:374.786667pt;}
.x1c_c00119{left:377.093333pt;}
.x98_c00119{left:378.626667pt;}
.x10f_c00119{left:381.693333pt;}
.x64_c00119{left:383.226667pt;}
.x7a_c00119{left:384.773333pt;}
.x3e_c00119{left:386.306667pt;}
.xa7_c00119{left:389.373333pt;}
.xb_c00119{left:390.906667pt;}
.xff_c00119{left:393.986667pt;}
.x7b_c00119{left:395.520000pt;}
.x55_c00119{left:397.053333pt;}
.x11f_c00119{left:399.360000pt;}
.x12_c00119{left:401.666667pt;}
.xc_c00119{left:403.973333pt;}
.x73_c00119{left:405.506667pt;}
.x4b_c00119{left:410.106667pt;}
.xfd_c00119{left:412.413333pt;}
.x5d_c00119{left:413.946667pt;}
.x106_c00119{left:415.493333pt;}
.x8b_c00119{left:417.026667pt;}
.x81_c00119{left:419.333333pt;}
.xbc_c00119{left:422.400000pt;}
.x1d_c00119{left:424.706667pt;}
.xae_c00119{left:427.013333pt;}
.x90_c00119{left:430.080000pt;}
.x100_c00119{left:432.386667pt;}
.x13_c00119{left:433.920000pt;}
.x8c_c00119{left:436.226667pt;}
.xa8_c00119{left:438.533333pt;}
.xa2_c00119{left:443.133333pt;}
.xfa_c00119{left:446.973333pt;}
.x3f_c00119{left:449.280000pt;}
.x103_c00119{left:450.813333pt;}
.x82_c00119{left:452.346667pt;}
.x27_c00119{left:458.493333pt;}
.xaf_c00119{left:460.026667pt;}
.x4c_c00119{left:465.413333pt;}
.x91_c00119{left:466.946667pt;}
.x83_c00119{left:476.160000pt;}
.x14_c00119{left:477.693333pt;}
.x101_c00119{left:480.000000pt;}
.xb0_c00119{left:482.306667pt;}
.x10a_c00119{left:483.840000pt;}
.xfb_c00119{left:485.373333pt;}
.x7c_c00119{left:486.906667pt;}
.x28_c00119{left:489.986667pt;}
.xc8_c00119{left:492.293333pt;}
.x15_c00119{left:493.826667pt;}
.x36_c00119{left:495.360000pt;}
.xef_c00119{left:496.893333pt;}
.x119_c00119{left:511.493333pt;}
.x84_c00119{left:513.026667pt;}
.x11a_c00119{left:516.093333pt;}
.x29_c00119{left:519.173333pt;}
.xbd_c00119{left:522.240000pt;}
.x5e_c00119{left:524.546667pt;}
.xf0_c00119{left:526.080000pt;}
.x16_c00119{left:528.386667pt;}
.x4d_c00119{left:530.693333pt;}
.x74_c00119{left:533.760000pt;}
.x6a_c00119{left:536.066667pt;}
.xa3_c00119{left:537.600000pt;}
.x107_c00119{left:539.133333pt;}
.x2a_c00119{left:540.666667pt;}
.xdc_c00119{left:542.213333pt;}
.x56_c00119{left:543.746667pt;}
.x6b_c00119{left:546.053333pt;}
.x99_c00119{left:549.120000pt;}
.xd1_c00119{left:552.186667pt;}
.x37_c00119{left:553.733333pt;}
.xca_c00119{left:555.266667pt;}
.x4e_c00119{left:556.800000pt;}
.x5f_c00119{left:558.333333pt;}
.x65_c00119{left:560.640000pt;}
.xb1_c00119{left:562.173333pt;}
.x6c_c00119{left:564.480000pt;}
.x1e_c00119{left:566.013333pt;}
.x2b_c00119{left:568.320000pt;}
.xd_c00119{left:569.853333pt;}
.x17_c00119{left:572.160000pt;}
.xcb_c00119{left:573.693333pt;}
.x75_c00119{left:576.773333pt;}
.xfe_c00119{left:579.840000pt;}
.x9a_c00119{left:582.906667pt;}
.x66_c00119{left:584.453333pt;}
.xc3_c00119{left:587.520000pt;}
.xd9_c00119{left:589.826667pt;}
.x85_c00119{left:592.893333pt;}
.x115_c00119{left:594.426667pt;}
.x6d_c00119{left:596.733333pt;}
.x57_c00119{left:598.266667pt;}
.xb2_c00119{left:602.106667pt;}
.x9b_c00119{left:604.413333pt;}
.xb6_c00119{left:606.720000pt;}
.xe9_c00119{left:609.026667pt;}
.x116_c00119{left:610.560000pt;}
.xcc_c00119{left:612.866667pt;}
.x4f_c00119{left:615.173333pt;}
.x38_c00119{left:618.240000pt;}
.xce_c00119{left:619.773333pt;}
.xf3_c00119{left:623.613333pt;}
.x40_c00119{left:625.920000pt;}
.x60_c00119{left:628.226667pt;}
.x86_c00119{left:630.533333pt;}
.x46_c00119{left:632.826667pt;}
.x41_c00119{left:635.906667pt;}
.xe5_c00119{left:638.213333pt;}
.x8d_c00119{left:642.053333pt;}
.x120_c00119{left:643.586667pt;}
.x94_c00119{left:645.893333pt;}
.xa4_c00119{left:649.733333pt;}
.x58_c00119{left:651.266667pt;}
.x47_c00119{left:652.800000pt;}
.x2c_c00119{left:655.866667pt;}
.x1f_c00119{left:658.946667pt;}
.x61_c00119{left:661.253333pt;}
.x18_c00119{left:664.320000pt;}
.x59_c00119{left:667.386667pt;}
.x7d_c00119{left:669.693333pt;}
.xea_c00119{left:671.226667pt;}
.x8e_c00119{left:672.773333pt;}
.x11d_c00119{left:675.840000pt;}
.x6e_c00119{left:678.906667pt;}
.x50_c00119{left:681.213333pt;}
.x95_c00119{left:683.520000pt;}
.xf4_c00119{left:685.826667pt;}
.x87_c00119{left:687.360000pt;}
.x7e_c00119{left:688.893333pt;}
.x2d_c00119{left:691.973333pt;}
.xc4_c00119{left:693.506667pt;}
.x9c_c00119{left:695.040000pt;}
.x20_c00119{left:697.346667pt;}
.x51_c00119{left:699.653333pt;}
.xdd_c00119{left:701.186667pt;}
.x9d_c00119{left:702.720000pt;}
.x2e_c00119{left:705.026667pt;}
.xa9_c00119{left:706.560000pt;}
.x39_c00119{left:708.866667pt;}
.x5a_c00119{left:711.173333pt;}
.x11b_c00119{left:712.706667pt;}
.x92_c00119{left:715.773333pt;}
.x21_c00119{left:718.080000pt;}
.x42_c00119{left:719.613333pt;}
.xcf_c00119{left:721.146667pt;}
.x2f_c00119{left:723.453333pt;}
.x19_c00119{left:725.760000pt;}
.xda_c00119{left:728.066667pt;}
.x105_c00119{left:729.600000pt;}
.xb3_c00119{left:731.906667pt;}
.x3a_c00119{left:734.213333pt;}
.x88_c00119{left:737.280000pt;}
.x11e_c00119{left:740.346667pt;}
.x43_c00119{left:741.893333pt;}
.x3b_c00119{left:744.186667pt;}
.xe_c00119{left:746.493333pt;}
.x30_c00119{left:748.800000pt;}
.x10b_c00119{left:750.333333pt;}
.xdf_c00119{left:753.413333pt;}
.x96_c00119{left:754.946667pt;}
.xcd_c00119{left:756.480000pt;}
.x62_c00119{left:760.320000pt;}
.xc5_c00119{left:762.626667pt;}
.x9e_c00119{left:764.160000pt;}
.x1a_c00119{left:768.000000pt;}
.x9f_c00119{left:769.533333pt;}
.xbe_c00119{left:771.840000pt;}
.xd2_c00119{left:773.373333pt;}
.x31_c00119{left:774.906667pt;}
.xb7_c00119{left:777.213333pt;}
.x113_c00119{left:779.520000pt;}
.xf8_c00119{left:781.826667pt;}
.xfc_c00119{left:789.506667pt;}
.xb8_c00119{left:791.813333pt;}
.x10c_c00119{left:793.346667pt;}
.xd0_c00119{left:794.880000pt;}
.x110_c00119{left:797.186667pt;}
.xd3_c00119{left:802.560000pt;}
.xe0_c00119{left:809.466667pt;}
.x117_c00119{left:814.853333pt;}
.x10d_c00119{left:817.146667pt;}
.x114_c00119{left:820.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0fec682256fc3e13e78e2709.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.109863;font-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_c00120{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.md1_c00120{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m59_c00120{transform:matrix(0.092550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092550,0.000000,0.000000,0.250000,0,0);}
.m4d_c00120{transform:matrix(0.092825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092825,0.000000,0.000000,0.250000,0,0);}
.m87_c00120{transform:matrix(0.094700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094700,0.000000,0.000000,0.250000,0,0);}
.m10a_c00120{transform:matrix(0.103125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103125,0.000000,0.000000,0.250000,0,0);}
.mf9_c00120{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.mc0_c00120{transform:matrix(0.108225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108225,0.000000,0.000000,0.250000,0,0);}
.m2c_c00120{transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);}
.me1_c00120{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.me9_c00120{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m105_c00120{transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);}
.mfc_c00120{transform:matrix(0.121525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121525,0.000000,0.000000,0.250000,0,0);}
.m176_c00120{transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);}
.m149_c00120{transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);}
.m57_c00120{transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);}
.m108_c00120{transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);}
.m106_c00120{transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);}
.m44_c00120{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.m16_c00120{transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);}
.m17f_c00120{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m6f_c00120{transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);}
.m157_c00120{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.mef_c00120{transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);}
.m3f_c00120{transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);}
.m85_c00120{transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);}
.m1e_c00120{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m164_c00120{transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);}
.m8e_c00120{transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);}
.m54_c00120{transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);}
.m12c_c00120{transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);}
.m4b_c00120{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m104_c00120{transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);}
.m2_c00120{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m154_c00120{transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);}
.m1d_c00120{transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);}
.m9e_c00120{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.m1a_c00120{transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);}
.mf6_c00120{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);}
.m8d_c00120{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);}
.m116_c00120{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.mc4_c00120{transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);}
.m58_c00120{transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);}
.m88_c00120{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m187_c00120{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.ma2_c00120{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m53_c00120{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);}
.m14d_c00120{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.m9f_c00120{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.m175_c00120{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);}
.m17b_c00120{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m47_c00120{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.ma0_c00120{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.m9c_c00120{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00120{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.mcd_c00120{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.mdb_c00120{transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);}
.m14c_c00120{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m119_c00120{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m86_c00120{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.m12d_c00120{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.m4a_c00120{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);}
.m150_c00120{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m17a_c00120{transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);}
.mc8_c00120{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m170_c00120{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.m37_c00120{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);}
.m180_c00120{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);}
.m14b_c00120{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.m145_c00120{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.m49_c00120{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);}
.m97_c00120{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.mf4_c00120{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.m109_c00120{transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);}
.m90_c00120{transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);}
.m169_c00120{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m94_c00120{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m36_c00120{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.mdf_c00120{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.mbe_c00120{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);}
.m8a_c00120{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m12f_c00120{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);}
.m12b_c00120{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);}
.mf7_c00120{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);}
.m127_c00120{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);}
.m4f_c00120{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m133_c00120{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);}
.m152_c00120{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m3e_c00120{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);}
.m167_c00120{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.m190_c00120{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m13d_c00120{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);}
.m48_c00120{transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);}
.m9d_c00120{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.mab_c00120{transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);}
.m10c_c00120{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m18e_c00120{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);}
.m3_c00120{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m4c_c00120{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m131_c00120{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);}
.m148_c00120{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);}
.m77_c00120{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m3a_c00120{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.m24_c00120{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m46_c00120{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.mbf_c00120{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m153_c00120{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m15e_c00120{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m189_c00120{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.mb2_c00120{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00120{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);}
.m100_c00120{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.mb1_c00120{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m182_c00120{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);}
.m120_c00120{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.mcf_c00120{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);}
.mbc_c00120{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);}
.ma3_c00120{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.md9_c00120{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);}
.m13a_c00120{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m166_c00120{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);}
.mea_c00120{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);}
.m165_c00120{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);}
.m102_c00120{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.md6_c00120{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);}
.m7c_c00120{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m10b_c00120{transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);}
.m8c_c00120{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m18_c00120{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);}
.m161_c00120{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);}
.m188_c00120{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m179_c00120{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);}
.mfb_c00120{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.m146_c00120{transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);}
.mfa_c00120{transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);}
.m101_c00120{transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);}
.m13c_c00120{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);}
.mec_c00120{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.m64_c00120{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m134_c00120{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);}
.m139_c00120{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);}
.mf0_c00120{transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);}
.m7d_c00120{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);}
.m142_c00120{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);}
.me4_c00120{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);}
.m17d_c00120{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.m2e_c00120{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m112_c00120{transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);}
.m118_c00120{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.mcc_c00120{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);}
.m144_c00120{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);}
.m66_c00120{transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);}
.m18a_c00120{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);}
.m14e_c00120{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);}
.m162_c00120{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);}
.m159_c00120{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);}
.m11e_c00120{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m124_c00120{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);}
.m15d_c00120{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.mb4_c00120{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);}
.m13_c00120{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m99_c00120{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.me_c00120{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);}
.m96_c00120{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);}
.md2_c00120{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.m115_c00120{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);}
.m173_c00120{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);}
.m11c_c00120{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.me7_c00120{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m186_c00120{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);}
.m138_c00120{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.m18c_c00120{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.me6_c00120{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00120{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.mf2_c00120{transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);}
.mb5_c00120{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);}
.m184_c00120{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.m6e_c00120{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);}
.m25_c00120{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m23_c00120{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);}
.m13f_c00120{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);}
.m33_c00120{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);}
.m13b_c00120{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m117_c00120{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);}
.mb9_c00120{transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);}
.mdd_c00120{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);}
.m147_c00120{transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);}
.me0_c00120{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);}
.m160_c00120{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);}
.m111_c00120{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);}
.m132_c00120{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m129_c00120{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);}
.m81_c00120{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m130_c00120{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.m141_c00120{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.med_c00120{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.me3_c00120{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);}
.m80_c00120{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.mee_c00120{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);}
.m171_c00120{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.m158_c00120{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.mb3_c00120{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);}
.m123_c00120{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m38_c00120{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m95_c00120{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);}
.m18f_c00120{transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);}
.mba_c00120{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);}
.mf_c00120{transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);}
.m13e_c00120{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);}
.m126_c00120{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);}
.m6d_c00120{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);}
.m192_c00120{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.m32_c00120{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);}
.m41_c00120{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);}
.m72_c00120{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.mce_c00120{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.mbd_c00120{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);}
.m140_c00120{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);}
.ma9_c00120{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);}
.m11f_c00120{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);}
.m5d_c00120{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);}
.m15a_c00120{transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);}
.mac_c00120{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);}
.mad_c00120{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);}
.meb_c00120{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00120{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);}
.mf8_c00120{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m2d_c00120{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.m121_c00120{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.maa_c00120{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.m12e_c00120{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m155_c00120{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.md7_c00120{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m163_c00120{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mc9_c00120{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);}
.m5a_c00120{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.mb6_c00120{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);}
.m79_c00120{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m181_c00120{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);}
.mff_c00120{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m174_c00120{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);}
.m191_c00120{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);}
.m42_c00120{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc3_c00120{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);}
.m113_c00120{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);}
.m168_c00120{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);}
.m3b_c00120{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.m84_c00120{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);}
.md5_c00120{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);}
.m78_c00120{transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);}
.m6a_c00120{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);}
.m55_c00120{transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);}
.m151_c00120{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.mde_c00120{transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);}
.m17c_c00120{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.ma7_c00120{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m143_c00120{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);}
.ma5_c00120{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);}
.m10d_c00120{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);}
.m16f_c00120{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m67_c00120{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);}
.m193_c00120{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);}
.m1b_c00120{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m137_c00120{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);}
.m7b_c00120{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);}
.m11b_c00120{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);}
.mb7_c00120{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);}
.m103_c00120{transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);}
.m107_c00120{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);}
.md0_c00120{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m15f_c00120{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);}
.m185_c00120{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);}
.m156_c00120{transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);}
.m18d_c00120{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.m183_c00120{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);}
.md3_c00120{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);}
.me5_c00120{transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);}
.m15c_c00120{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.m75_c00120{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_c00120{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);}
.mc1_c00120{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m17e_c00120{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.ma6_c00120{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);}
.m92_c00120{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);}
.mcb_c00120{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);}
.mc6_c00120{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.ma8_c00120{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);}
.m7a_c00120{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);}
.m9b_c00120{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);}
.mc5_c00120{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);}
.md_c00120{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.mc_c00120{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);}
.m45_c00120{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.maf_c00120{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);}
.m11_c00120{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);}
.m28_c00120{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);}
.m20_c00120{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);}
.m10_c00120{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00120{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m26_c00120{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00120{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);}
.m56_c00120{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00120{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);}
.m2f_c00120{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);}
.m27_c00120{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00120{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);}
.m17_c00120{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00120{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00120{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);}
.m63_c00120{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m71_c00120{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);}
.m50_c00120{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);}
.m34_c00120{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c00120{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3c_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);}
.m21_c00120{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m76_c00120{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m31_c00120{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);}
.m40_c00120{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m30_c00120{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00120{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mae_c00120{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m62_c00120{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00120{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m68_c00120{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c00120{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00120{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);}
.m22_c00120{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00120{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c00120{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00120{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00120{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);}
.m70_c00120{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);}
.m14a_c00120{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m98_c00120{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);}
.md8_c00120{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00120{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00120{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m65_c00120{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00120{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);}
.m60_c00120{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m7_c00120{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m14f_c00120{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md4_c00120{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.ma_c00120{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00120{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5_c00120{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);}
.m178_c00120{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);}
.m9a_c00120{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.me2_c00120{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);}
.m7f_c00120{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m136_c00120{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m29_c00120{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);}
.m11a_c00120{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m35_c00120{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m69_c00120{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m74_c00120{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m172_c00120{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mca_c00120{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m73_c00120{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m16d_c00120{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m61_c00120{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);}
.m82_c00120{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m52_c00120{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00120{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00120{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m89_c00120{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m110_c00120{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00120{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m10e_c00120{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m91_c00120{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);}
.m125_c00120{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m93_c00120{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m122_c00120{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m51_c00120{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m39_c00120{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);}
.m5e_c00120{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);}
.m135_c00120{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m15b_c00120{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00120{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);}
.mfe_c00120{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mda_c00120{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00120{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m114_c00120{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m0_c00120{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m43_c00120{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00120{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);}
.me8_c00120{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m9_c00120{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m1_c00120{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m18b_c00120{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m16a_c00120{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00120{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00120{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00120{transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00120{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m4_c00120{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00120{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m177_c00120{transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);}
.m128_c00120{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m16b_c00120{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.m83_c00120{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m16c_c00120{transform:matrix(3.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.167500,0.000000,0.000000,0.250000,0,0);}
.m16e_c00120{transform:matrix(6.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.317500,0.000000,0.000000,0.250000,0,0);}
.v1_c00120{vertical-align:-13.860000px;}
.v0_c00120{vertical-align:0.000000px;}
.ls1_c00120{letter-spacing:0.000000px;}
.ls0_c00120{letter-spacing:35.255400px;}
.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:-6.895200px;}
.ws2_c00120{word-spacing:0.000000px;}
.ws1_c00120{word-spacing:148.398900px;}
._0_c00120{width:281.661600px;}
.fc0_c00120{color:transparent;}
.fs2_c00120{font-size:3.456000px;}
.fs7_c00120{font-size:6.000000px;}
.fs1d_c00120{font-size:6.900000px;}
.fs17_c00120{font-size:10.380000px;}
.fs1b_c00120{font-size:13.800000px;}
.fs0_c00120{font-size:17.280000px;}
.fs15_c00120{font-size:20.760000px;}
.fs1_c00120{font-size:24.180000px;}
.fs1f_c00120{font-size:27.660000px;}
.fs18_c00120{font-size:31.080000px;}
.fs12_c00120{font-size:34.560000px;}
.fs3_c00120{font-size:38.040000px;}
.fs8_c00120{font-size:41.460000px;}
.fs1a_c00120{font-size:44.940000px;}
.fsf_c00120{font-size:48.360000px;}
.fs11_c00120{font-size:51.840000px;}
.fs4_c00120{font-size:55.320000px;}
.fsb_c00120{font-size:58.740000px;}
.fs9_c00120{font-size:62.220000px;}
.fsa_c00120{font-size:65.640000px;}
.fsc_c00120{font-size:69.120000px;}
.fs16_c00120{font-size:72.600000px;}
.fsd_c00120{font-size:76.020000px;}
.fs6_c00120{font-size:79.500000px;}
.fs14_c00120{font-size:82.920000px;}
.fs5_c00120{font-size:86.400000px;}
.fse_c00120{font-size:89.880000px;}
.fs10_c00120{font-size:93.300000px;}
.fs20_c00120{font-size:96.780000px;}
.fs13_c00120{font-size:100.200000px;}
.fs1e_c00120{font-size:103.680000px;}
.fs19_c00120{font-size:107.160000px;}
.fs1c_c00120{font-size:110.580000px;}
.fs21_c00120{font-size:114.060000px;}
.y0_c00120{bottom:0.000000px;}
.y214_c00120{bottom:221.190000px;}
.y211_c00120{bottom:222.045000px;}
.y213_c00120{bottom:225.510000px;}
.y210_c00120{bottom:226.365000px;}
.y212_c00120{bottom:227.235000px;}
.y20f_c00120{bottom:230.685000px;}
.y20d_c00120{bottom:242.790000px;}
.y20a_c00120{bottom:244.515000px;}
.y20e_c00120{bottom:245.370000px;}
.y208_c00120{bottom:246.240000px;}
.y20c_c00120{bottom:247.965000px;}
.y206_c00120{bottom:248.835000px;}
.y209_c00120{bottom:249.690000px;}
.y20b_c00120{bottom:251.430000px;}
.y207_c00120{bottom:253.155000px;}
.y205_c00120{bottom:256.605000px;}
.y203_c00120{bottom:265.245000px;}
.y204_c00120{bottom:266.115000px;}
.y202_c00120{bottom:266.970000px;}
.y200_c00120{bottom:269.565000px;}
.y1ff_c00120{bottom:271.290000px;}
.y201_c00120{bottom:272.160000px;}
.y1fd_c00120{bottom:282.525000px;}
.y1fe_c00120{bottom:284.250000px;}
.y1fb_c00120{bottom:285.120000px;}
.y1f9_c00120{bottom:285.990000px;}
.y1f8_c00120{bottom:286.845000px;}
.y1f7_c00120{bottom:288.570000px;}
.y1fc_c00120{bottom:289.440000px;}
.y1fa_c00120{bottom:291.165000px;}
.y1f6_c00120{bottom:298.950000px;}
.y1f5_c00120{bottom:305.850000px;}
.y1f4_c00120{bottom:306.720000px;}
.y1f3_c00120{bottom:307.590000px;}
.y1f2_c00120{bottom:308.445000px;}
.y1f1_c00120{bottom:310.170000px;}
.y1ed_c00120{bottom:311.040000px;}
.y1ef_c00120{bottom:311.910000px;}
.y1ee_c00120{bottom:312.765000px;}
.y1ec_c00120{bottom:313.635000px;}
.y1ea_c00120{bottom:315.360000px;}
.y1eb_c00120{bottom:316.230000px;}
.y1e9_c00120{bottom:317.955000px;}
.y1f0_c00120{bottom:321.405000px;}
.y1e7_c00120{bottom:323.130000px;}
.y1e8_c00120{bottom:324.870000px;}
.y1e3_c00120{bottom:325.725000px;}
.y1e1_c00120{bottom:328.320000px;}
.y1e6_c00120{bottom:329.190000px;}
.y1e2_c00120{bottom:330.045000px;}
.y1e5_c00120{bottom:330.915000px;}
.y1e4_c00120{bottom:331.770000px;}
.y1e0_c00120{bottom:332.640000px;}
.y1dd_c00120{bottom:333.510000px;}
.y1dc_c00120{bottom:334.365000px;}
.y1de_c00120{bottom:340.410000px;}
.y1db_c00120{bottom:342.150000px;}
.y1da_c00120{bottom:343.005000px;}
.y1df_c00120{bottom:344.730000px;}
.y1d9_c00120{bottom:346.470000px;}
.y1d1_c00120{bottom:347.325000px;}
.y1d4_c00120{bottom:348.195000px;}
.y1d2_c00120{bottom:349.050000px;}
.y1d8_c00120{bottom:350.790000px;}
.y1d6_c00120{bottom:351.645000px;}
.y1d7_c00120{bottom:352.515000px;}
.y1d5_c00120{bottom:353.370000px;}
.y1d3_c00120{bottom:355.110000px;}
.y1d0_c00120{bottom:365.475000px;}
.y1cc_c00120{bottom:367.200000px;}
.y1cb_c00120{bottom:368.925000px;}
.y1cf_c00120{bottom:369.795000px;}
.y1ce_c00120{bottom:370.650000px;}
.y1cd_c00120{bottom:372.390000px;}
.y1c8_c00120{bottom:373.245000px;}
.y1ca_c00120{bottom:374.115000px;}
.y1c7_c00120{bottom:374.970000px;}
.y1c9_c00120{bottom:376.710000px;}
.y1bd_c00120{bottom:386.205000px;}
.y1c6_c00120{bottom:387.075000px;}
.y1c5_c00120{bottom:387.930000px;}
.y1c4_c00120{bottom:388.800000px;}
.y1c1_c00120{bottom:389.670000px;}
.y1be_c00120{bottom:390.525000px;}
.y1c0_c00120{bottom:391.395000px;}
.y1c3_c00120{bottom:393.120000px;}
.y1bf_c00120{bottom:393.990000px;}
.y1c2_c00120{bottom:394.845000px;}
.y1bb_c00120{bottom:406.950000px;}
.y1ba_c00120{bottom:408.675000px;}
.y1bc_c00120{bottom:410.400000px;}
.y1b8_c00120{bottom:411.270000px;}
.y1b4_c00120{bottom:412.125000px;}
.y1b9_c00120{bottom:413.850000px;}
.y1b6_c00120{bottom:414.720000px;}
.y1b5_c00120{bottom:415.590000px;}
.y1b7_c00120{bottom:416.445000px;}
.y1b0_c00120{bottom:420.765000px;}
.y1b3_c00120{bottom:421.635000px;}
.y1ae_c00120{bottom:424.230000px;}
.y1aa_c00120{bottom:425.955000px;}
.y1ad_c00120{bottom:426.810000px;}
.y1af_c00120{bottom:427.680000px;}
.y1b1_c00120{bottom:428.550000px;}
.y1a9_c00120{bottom:430.275000px;}
.y1ac_c00120{bottom:435.450000px;}
.y1ab_c00120{bottom:436.320000px;}
.y1b2_c00120{bottom:437.190000px;}
.y1a8_c00120{bottom:446.685000px;}
.y1a7_c00120{bottom:447.555000px;}
.y1a6_c00120{bottom:448.410000px;}
.y1a5_c00120{bottom:450.150000px;}
.y1a4_c00120{bottom:451.875000px;}
.y1a2_c00120{bottom:452.730000px;}
.y1a3_c00120{bottom:454.470000px;}
.y1a1_c00120{bottom:457.920000px;}
.y1a0_c00120{bottom:468.285000px;}
.y19d_c00120{bottom:469.155000px;}
.y19b_c00120{bottom:470.880000px;}
.y19c_c00120{bottom:472.605000px;}
.y19a_c00120{bottom:473.475000px;}
.y19f_c00120{bottom:474.330000px;}
.y19e_c00120{bottom:476.070000px;}
.y198_c00120{bottom:490.755000px;}
.y194_c00120{bottom:492.480000px;}
.y199_c00120{bottom:493.350000px;}
.y196_c00120{bottom:495.075000px;}
.y193_c00120{bottom:495.930000px;}
.y195_c00120{bottom:496.800000px;}
.y197_c00120{bottom:506.310000px;}
.y192_c00120{bottom:508.890000px;}
.y18e_c00120{bottom:511.485000px;}
.y18b_c00120{bottom:512.355000px;}
.y190_c00120{bottom:514.080000px;}
.y191_c00120{bottom:514.950000px;}
.y18f_c00120{bottom:515.805000px;}
.y18d_c00120{bottom:516.675000px;}
.y18c_c00120{bottom:517.530000px;}
.y18a_c00120{bottom:518.400000px;}
.y189_c00120{bottom:520.125000px;}
.y188_c00120{bottom:528.765000px;}
.y186_c00120{bottom:529.635000px;}
.y184_c00120{bottom:531.360000px;}
.y181_c00120{bottom:532.230000px;}
.y182_c00120{bottom:533.955000px;}
.y187_c00120{bottom:534.810000px;}
.y185_c00120{bottom:535.680000px;}
.y180_c00120{bottom:536.550000px;}
.y183_c00120{bottom:537.405000px;}
.y17f_c00120{bottom:540.000000px;}
.y17e_c00120{bottom:547.770000px;}
.y17d_c00120{bottom:549.510000px;}
.y17b_c00120{bottom:551.235000px;}
.y178_c00120{bottom:552.090000px;}
.y179_c00120{bottom:553.830000px;}
.y177_c00120{bottom:555.555000px;}
.y17c_c00120{bottom:558.150000px;}
.y17a_c00120{bottom:559.005000px;}
.y176_c00120{bottom:570.240000px;}
.y172_c00120{bottom:572.835000px;}
.y174_c00120{bottom:575.430000px;}
.y175_c00120{bottom:576.285000px;}
.y16f_c00120{bottom:577.155000px;}
.y173_c00120{bottom:578.010000px;}
.y171_c00120{bottom:578.880000px;}
.y170_c00120{bottom:579.750000px;}
.y16e_c00120{bottom:581.475000px;}
.y16d_c00120{bottom:591.840000px;}
.y16b_c00120{bottom:593.565000px;}
.y169_c00120{bottom:595.290000px;}
.y168_c00120{bottom:596.160000px;}
.y167_c00120{bottom:597.030000px;}
.y16a_c00120{bottom:600.480000px;}
.y16c_c00120{bottom:609.990000px;}
.y162_c00120{bottom:611.715000px;}
.y163_c00120{bottom:612.570000px;}
.y161_c00120{bottom:613.440000px;}
.y15e_c00120{bottom:615.165000px;}
.y164_c00120{bottom:616.035000px;}
.y15c_c00120{bottom:617.760000px;}
.y160_c00120{bottom:618.630000px;}
.y15f_c00120{bottom:619.485000px;}
.y15d_c00120{bottom:620.355000px;}
.y166_c00120{bottom:622.950000px;}
.y165_c00120{bottom:626.400000px;}
.y15b_c00120{bottom:627.270000px;}
.y159_c00120{bottom:632.445000px;}
.y15a_c00120{bottom:635.040000px;}
.y152_c00120{bottom:636.765000px;}
.y155_c00120{bottom:637.635000px;}
.y158_c00120{bottom:638.490000px;}
.y156_c00120{bottom:639.360000px;}
.y157_c00120{bottom:640.230000px;}
.y154_c00120{bottom:641.085000px;}
.y153_c00120{bottom:641.955000px;}
.y151_c00120{bottom:642.810000px;}
.y150_c00120{bottom:645.405000px;}
.y14e_c00120{bottom:652.320000px;}
.y14f_c00120{bottom:653.190000px;}
.y14d_c00120{bottom:654.915000px;}
.y14c_c00120{bottom:655.770000px;}
.y14a_c00120{bottom:656.640000px;}
.y147_c00120{bottom:659.235000px;}
.y148_c00120{bottom:660.090000px;}
.y14b_c00120{bottom:660.960000px;}
.y149_c00120{bottom:661.830000px;}
.y144_c00120{bottom:667.875000px;}
.y142_c00120{bottom:668.730000px;}
.y141_c00120{bottom:669.600000px;}
.y13c_c00120{bottom:672.195000px;}
.y13b_c00120{bottom:673.050000px;}
.y145_c00120{bottom:674.790000px;}
.y13e_c00120{bottom:675.645000px;}
.y140_c00120{bottom:676.515000px;}
.y146_c00120{bottom:677.370000px;}
.y143_c00120{bottom:678.240000px;}
.y13f_c00120{bottom:679.110000px;}
.y13d_c00120{bottom:679.965000px;}
.y139_c00120{bottom:692.070000px;}
.y138_c00120{bottom:692.925000px;}
.y136_c00120{bottom:695.520000px;}
.y135_c00120{bottom:696.390000px;}
.y13a_c00120{bottom:697.245000px;}
.y134_c00120{bottom:698.970000px;}
.y137_c00120{bottom:699.840000px;}
.y133_c00120{bottom:710.205000px;}
.y132_c00120{bottom:711.930000px;}
.y131_c00120{bottom:713.670000px;}
.y130_c00120{bottom:714.525000px;}
.y12f_c00120{bottom:715.395000px;}
.y12e_c00120{bottom:716.250000px;}
.y12a_c00120{bottom:717.120000px;}
.y129_c00120{bottom:717.990000px;}
.y125_c00120{bottom:718.845000px;}
.y127_c00120{bottom:719.715000px;}
.y122_c00120{bottom:720.570000px;}
.y12d_c00120{bottom:721.440000px;}
.y12c_c00120{bottom:724.890000px;}
.y126_c00120{bottom:727.485000px;}
.y12b_c00120{bottom:728.355000px;}
.y123_c00120{bottom:730.080000px;}
.y124_c00120{bottom:730.950000px;}
.y128_c00120{bottom:733.530000px;}
.y11d_c00120{bottom:734.400000px;}
.y11b_c00120{bottom:736.125000px;}
.y120_c00120{bottom:736.995000px;}
.y11f_c00120{bottom:737.850000px;}
.y11e_c00120{bottom:738.720000px;}
.y11c_c00120{bottom:739.590000px;}
.y121_c00120{bottom:744.765000px;}
.y11a_c00120{bottom:752.550000px;}
.y118_c00120{bottom:754.275000px;}
.y115_c00120{bottom:755.130000px;}
.y119_c00120{bottom:756.000000px;}
.y116_c00120{bottom:756.870000px;}
.y112_c00120{bottom:757.725000px;}
.y117_c00120{bottom:759.450000px;}
.y114_c00120{bottom:761.190000px;}
.y113_c00120{bottom:762.915000px;}
.y111_c00120{bottom:764.640000px;}
.y219_c00120{bottom:768.090000px;}
.y218_c00120{bottom:768.960000px;}
.y110_c00120{bottom:774.150000px;}
.y10e_c00120{bottom:775.005000px;}
.y10c_c00120{bottom:775.875000px;}
.y10a_c00120{bottom:776.730000px;}
.y10d_c00120{bottom:777.600000px;}
.y10f_c00120{bottom:779.325000px;}
.y106_c00120{bottom:780.195000px;}
.y10b_c00120{bottom:781.050000px;}
.y108_c00120{bottom:781.920000px;}
.y109_c00120{bottom:783.645000px;}
.y107_c00120{bottom:794.010000px;}
.y101_c00120{bottom:796.605000px;}
.yff_c00120{bottom:797.475000px;}
.y105_c00120{bottom:799.200000px;}
.y103_c00120{bottom:800.070000px;}
.y104_c00120{bottom:800.925000px;}
.y102_c00120{bottom:801.795000px;}
.y100_c00120{bottom:803.520000px;}
.yfe_c00120{bottom:806.970000px;}
.yfd_c00120{bottom:813.030000px;}
.yf9_c00120{bottom:816.480000px;}
.yf8_c00120{bottom:817.350000px;}
.yf6_c00120{bottom:819.075000px;}
.yfc_c00120{bottom:819.930000px;}
.yf5_c00120{bottom:820.800000px;}
.yfa_c00120{bottom:821.670000px;}
.yf7_c00120{bottom:822.525000px;}
.yfb_c00120{bottom:823.395000px;}
.yf4_c00120{bottom:824.250000px;}
.yf3_c00120{bottom:825.120000px;}
.yf2_c00120{bottom:833.760000px;}
.yf0_c00120{bottom:836.355000px;}
.yef_c00120{bottom:839.805000px;}
.yed_c00120{bottom:840.675000px;}
.yf1_c00120{bottom:842.400000px;}
.yee_c00120{bottom:843.270000px;}
.yec_c00120{bottom:845.850000px;}
.yeb_c00120{bottom:857.085000px;}
.ye7_c00120{bottom:857.955000px;}
.ye5_c00120{bottom:858.810000px;}
.yea_c00120{bottom:861.405000px;}
.ye9_c00120{bottom:862.275000px;}
.ye8_c00120{bottom:863.130000px;}
.ye6_c00120{bottom:864.000000px;}
.ye4_c00120{bottom:864.870000px;}
.ye3_c00120{bottom:865.725000px;}
.ye1_c00120{bottom:876.960000px;}
.ydd_c00120{bottom:877.830000px;}
.ye0_c00120{bottom:878.685000px;}
.ydc_c00120{bottom:880.410000px;}
.yd9_c00120{bottom:881.280000px;}
.ye2_c00120{bottom:882.150000px;}
.ydf_c00120{bottom:883.005000px;}
.yde_c00120{bottom:883.875000px;}
.yda_c00120{bottom:884.730000px;}
.ydb_c00120{bottom:892.515000px;}
.yd8_c00120{bottom:895.965000px;}
.yd2_c00120{bottom:898.560000px;}
.yd5_c00120{bottom:899.430000px;}
.yd3_c00120{bottom:900.285000px;}
.yd7_c00120{bottom:902.010000px;}
.yd6_c00120{bottom:902.880000px;}
.yd4_c00120{bottom:903.750000px;}
.yd1_c00120{bottom:904.605000px;}
.yd0_c00120{bottom:906.330000px;}
.yce_c00120{bottom:915.840000px;}
.ycc_c00120{bottom:916.710000px;}
.ycd_c00120{bottom:918.435000px;}
.yca_c00120{bottom:919.290000px;}
.yc9_c00120{bottom:920.160000px;}
.yc8_c00120{bottom:921.885000px;}
.ycf_c00120{bottom:922.755000px;}
.ycb_c00120{bottom:924.480000px;}
.yc7_c00120{bottom:930.525000px;}
.yc4_c00120{bottom:940.890000px;}
.yc2_c00120{bottom:942.630000px;}
.yc6_c00120{bottom:943.485000px;}
.yc5_c00120{bottom:944.355000px;}
.yc3_c00120{bottom:945.210000px;}
.yc1_c00120{bottom:946.080000px;}
.yc0_c00120{bottom:957.315000px;}
.ybd_c00120{bottom:959.910000px;}
.yba_c00120{bottom:960.765000px;}
.ybf_c00120{bottom:961.635000px;}
.yb7_c00120{bottom:962.490000px;}
.ybb_c00120{bottom:963.360000px;}
.ybe_c00120{bottom:964.230000px;}
.ybc_c00120{bottom:965.085000px;}
.yb8_c00120{bottom:965.955000px;}
.yb9_c00120{bottom:966.810000px;}
.yb6_c00120{bottom:978.045000px;}
.yb5_c00120{bottom:979.770000px;}
.yaf_c00120{bottom:981.510000px;}
.yb3_c00120{bottom:982.365000px;}
.yb4_c00120{bottom:984.090000px;}
.yb2_c00120{bottom:984.960000px;}
.yb1_c00120{bottom:985.830000px;}
.yb0_c00120{bottom:986.685000px;}
.yae_c00120{bottom:991.005000px;}
.yad_c00120{bottom:998.790000px;}
.yac_c00120{bottom:1001.370000px;}
.ya9_c00120{bottom:1002.240000px;}
.ya6_c00120{bottom:1003.110000px;}
.ya7_c00120{bottom:1003.965000px;}
.yaa_c00120{bottom:1004.835000px;}
.yab_c00120{bottom:1005.690000px;}
.ya8_c00120{bottom:1006.560000px;}
.ya5_c00120{bottom:1007.430000px;}
.ya4_c00120{bottom:1008.285000px;}
.ya3_c00120{bottom:1019.520000px;}
.ya0_c00120{bottom:1021.245000px;}
.y9d_c00120{bottom:1022.115000px;}
.y9f_c00120{bottom:1024.710000px;}
.ya2_c00120{bottom:1025.565000px;}
.ya1_c00120{bottom:1026.435000px;}
.y9e_c00120{bottom:1027.290000px;}
.y9c_c00120{bottom:1028.160000px;}
.y99_c00120{bottom:1034.205000px;}
.y98_c00120{bottom:1036.800000px;}
.y97_c00120{bottom:1037.670000px;}
.y94_c00120{bottom:1039.395000px;}
.y91_c00120{bottom:1040.250000px;}
.y93_c00120{bottom:1044.570000px;}
.y95_c00120{bottom:1046.310000px;}
.y96_c00120{bottom:1047.165000px;}
.y92_c00120{bottom:1048.890000px;}
.y9b_c00120{bottom:1050.630000px;}
.y9a_c00120{bottom:1051.485000px;}
.y90_c00120{bottom:1060.995000px;}
.y8e_c00120{bottom:1061.850000px;}
.y8c_c00120{bottom:1062.720000px;}
.y8b_c00120{bottom:1064.445000px;}
.y8f_c00120{bottom:1067.040000px;}
.y8a_c00120{bottom:1068.765000px;}
.y89_c00120{bottom:1069.635000px;}
.y8d_c00120{bottom:1078.275000px;}
.y88_c00120{bottom:1080.870000px;}
.y87_c00120{bottom:1083.450000px;}
.y85_c00120{bottom:1084.320000px;}
.y84_c00120{bottom:1086.915000px;}
.y86_c00120{bottom:1087.770000px;}
.y83_c00120{bottom:1088.640000px;}
.y82_c00120{bottom:1094.685000px;}
.y7e_c00120{bottom:1097.280000px;}
.y81_c00120{bottom:1098.150000px;}
.y7a_c00120{bottom:1099.875000px;}
.y7b_c00120{bottom:1100.730000px;}
.y7c_c00120{bottom:1101.600000px;}
.y79_c00120{bottom:1104.195000px;}
.y80_c00120{bottom:1106.790000px;}
.y7f_c00120{bottom:1107.645000px;}
.y7d_c00120{bottom:1108.515000px;}
.y77_c00120{bottom:1110.240000px;}
.y78_c00120{bottom:1111.110000px;}
.y75_c00120{bottom:1121.475000px;}
.y72_c00120{bottom:1122.330000px;}
.y74_c00120{bottom:1123.200000px;}
.y70_c00120{bottom:1124.070000px;}
.y6f_c00120{bottom:1124.925000px;}
.y76_c00120{bottom:1126.650000px;}
.y73_c00120{bottom:1127.520000px;}
.y217_c00120{bottom:1128.390000px;}
.y71_c00120{bottom:1129.245000px;}
.y6e_c00120{bottom:1143.075000px;}
.y68_c00120{bottom:1144.800000px;}
.y6a_c00120{bottom:1145.670000px;}
.y69_c00120{bottom:1146.525000px;}
.y6d_c00120{bottom:1147.395000px;}
.y6c_c00120{bottom:1148.250000px;}
.y6b_c00120{bottom:1149.120000px;}
.y67_c00120{bottom:1149.990000px;}
.y66_c00120{bottom:1161.210000px;}
.y63_c00120{bottom:1165.530000px;}
.y65_c00120{bottom:1167.270000px;}
.y64_c00120{bottom:1168.995000px;}
.y62_c00120{bottom:1169.850000px;}
.y61_c00120{bottom:1170.720000px;}
.y60_c00120{bottom:1173.315000px;}
.y5f_c00120{bottom:1182.810000px;}
.y5d_c00120{bottom:1183.680000px;}
.y5a_c00120{bottom:1184.550000px;}
.y5b_c00120{bottom:1186.275000px;}
.y5e_c00120{bottom:1188.000000px;}
.y5c_c00120{bottom:1188.870000px;}
.y59_c00120{bottom:1190.595000px;}
.y58_c00120{bottom:1192.320000px;}
.y56_c00120{bottom:1198.365000px;}
.y57_c00120{bottom:1201.830000px;}
.y54_c00120{bottom:1204.410000px;}
.y53_c00120{bottom:1206.150000px;}
.y51_c00120{bottom:1207.005000px;}
.y4d_c00120{bottom:1208.730000px;}
.y52_c00120{bottom:1209.600000px;}
.y4f_c00120{bottom:1210.470000px;}
.y50_c00120{bottom:1211.325000px;}
.y4e_c00120{bottom:1212.195000px;}
.y55_c00120{bottom:1217.370000px;}
.y4c_c00120{bottom:1224.285000px;}
.y47_c00120{bottom:1225.155000px;}
.y49_c00120{bottom:1226.880000px;}
.y4b_c00120{bottom:1227.750000px;}
.y4a_c00120{bottom:1228.605000px;}
.y48_c00120{bottom:1230.330000px;}
.y46_c00120{bottom:1231.200000px;}
.y44_c00120{bottom:1232.070000px;}
.y45_c00120{bottom:1232.925000px;}
.y43_c00120{bottom:1243.290000px;}
.y3e_c00120{bottom:1245.885000px;}
.y3d_c00120{bottom:1246.755000px;}
.y42_c00120{bottom:1249.350000px;}
.y41_c00120{bottom:1250.205000px;}
.y40_c00120{bottom:1251.075000px;}
.y3f_c00120{bottom:1251.930000px;}
.y3c_c00120{bottom:1257.990000px;}
.y3b_c00120{bottom:1260.570000px;}
.y37_c00120{bottom:1261.440000px;}
.y38_c00120{bottom:1263.165000px;}
.y34_c00120{bottom:1264.035000px;}
.y3a_c00120{bottom:1266.630000px;}
.y39_c00120{bottom:1267.485000px;}
.y35_c00120{bottom:1271.805000px;}
.y36_c00120{bottom:1272.675000px;}
.y33_c00120{bottom:1273.530000px;}
.y216_c00120{bottom:1275.270000px;}
.y32_c00120{bottom:1276.995000px;}
.y30_c00120{bottom:1278.720000px;}
.y2c_c00120{bottom:1282.170000px;}
.y2f_c00120{bottom:1283.040000px;}
.y31_c00120{bottom:1283.910000px;}
.y2e_c00120{bottom:1286.490000px;}
.y2d_c00120{bottom:1292.550000px;}
.y29_c00120{bottom:1302.915000px;}
.y2b_c00120{bottom:1305.510000px;}
.y26_c00120{bottom:1307.235000px;}
.y24_c00120{bottom:1308.090000px;}
.y25_c00120{bottom:1309.830000px;}
.y2a_c00120{bottom:1311.555000px;}
.y28_c00120{bottom:1312.410000px;}
.y27_c00120{bottom:1313.280000px;}
.y1e_c00120{bottom:1327.110000px;}
.y21_c00120{bottom:1327.965000px;}
.y1f_c00120{bottom:1329.690000px;}
.y1d_c00120{bottom:1330.560000px;}
.y23_c00120{bottom:1331.430000px;}
.y22_c00120{bottom:1332.285000px;}
.y20_c00120{bottom:1333.155000px;}
.y215_c00120{bottom:1339.200000px;}
.y1c_c00120{bottom:1344.390000px;}
.y17_c00120{bottom:1347.840000px;}
.y18_c00120{bottom:1348.710000px;}
.y1a_c00120{bottom:1349.565000px;}
.y1b_c00120{bottom:1351.290000px;}
.y19_c00120{bottom:1352.160000px;}
.y16_c00120{bottom:1353.030000px;}
.y15_c00120{bottom:1353.885000px;}
.y13_c00120{bottom:1359.930000px;}
.y14_c00120{bottom:1363.395000px;}
.y12_c00120{bottom:1365.990000px;}
.yd_c00120{bottom:1367.715000px;}
.ye_c00120{bottom:1368.570000px;}
.y11_c00120{bottom:1370.310000px;}
.yc_c00120{bottom:1371.165000px;}
.y10_c00120{bottom:1373.760000px;}
.yf_c00120{bottom:1374.630000px;}
.ya_c00120{bottom:1392.765000px;}
.yb_c00120{bottom:1396.230000px;}
.y9_c00120{bottom:1399.680000px;}
.y8_c00120{bottom:1400.550000px;}
.y7_c00120{bottom:1402.275000px;}
.y5_c00120{bottom:1419.555000px;}
.y4_c00120{bottom:1420.410000px;}
.y6_c00120{bottom:1423.005000px;}
.y3_c00120{bottom:1423.875000px;}
.y2_c00120{bottom:1431.645000px;}
.y1_c00120{bottom:1433.370000px;}
.h4_c00120{height:3.110063px;}
.h9_c00120{height:5.399414px;}
.h1f_c00120{height:6.209326px;}
.h19_c00120{height:9.340986px;}
.h1d_c00120{height:12.418652px;}
.h2_c00120{height:15.550313px;}
.h17_c00120{height:18.681973px;}
.h3_c00120{height:21.759639px;}
.h21_c00120{height:24.891299px;}
.h1a_c00120{height:27.968965px;}
.h14_c00120{height:31.100625px;}
.h5_c00120{height:34.232285px;}
.ha_c00120{height:37.309951px;}
.h1c_c00120{height:40.441611px;}
.h11_c00120{height:43.519277px;}
.h13_c00120{height:46.650937px;}
.h6_c00120{height:49.782598px;}
.hd_c00120{height:52.860264px;}
.hb_c00120{height:55.991924px;}
.hc_c00120{height:59.069590px;}
.he_c00120{height:62.201250px;}
.h18_c00120{height:65.332910px;}
.hf_c00120{height:68.410576px;}
.h8_c00120{height:71.542236px;}
.h16_c00120{height:74.619902px;}
.h7_c00120{height:77.751563px;}
.h10_c00120{height:80.883223px;}
.h12_c00120{height:83.960889px;}
.h22_c00120{height:87.092549px;}
.h15_c00120{height:90.170215px;}
.h20_c00120{height:93.301875px;}
.h1b_c00120{height:96.433535px;}
.h1e_c00120{height:99.511201px;}
.h23_c00120{height:102.642861px;}
.h0_c00120{height:1517.190000px;}
.h1_c00120{height:1517.250000px;}
.w0_c00120{width:1090.365000px;}
.w1_c00120{width:1090.500000px;}
.x0_c00120{left:0.000000px;}
.x124_c00120{left:117.510000px;}
.x125_c00120{left:119.235000px;}
.x126_c00120{left:136.515000px;}
.x127_c00120{left:149.475000px;}
.x11e_c00120{left:160.710000px;}
.x120_c00120{left:162.435000px;}
.x115_c00120{left:164.160000px;}
.xdc_c00120{left:169.350000px;}
.xaf_c00120{left:173.670000px;}
.x86_c00120{left:176.250000px;}
.x6b_c00120{left:187.485000px;}
.x11b_c00120{left:192.675000px;}
.xd6_c00120{left:198.720000px;}
.xe_c00120{left:204.765000px;}
.xe0_c00120{left:211.680000px;}
.xbc_c00120{left:214.275000px;}
.x116_c00120{left:216.000000px;}
.x87_c00120{left:217.725000px;}
.x12d_c00120{left:220.320000px;}
.x99_c00120{left:224.640000px;}
.xd7_c00120{left:226.365000px;}
.x6c_c00120{left:228.090000px;}
.xdd_c00120{left:230.685000px;}
.x4a_c00120{left:233.280000px;}
.xbf_c00120{left:235.875000px;}
.xb4_c00120{left:237.600000px;}
.x77_c00120{left:239.325000px;}
.xf_c00120{left:241.050000px;}
.x11f_c00120{left:254.880000px;}
.x6d_c00120{left:258.330000px;}
.x89_c00120{left:260.925000px;}
.xf9_c00120{left:263.520000px;}
.x100_c00120{left:266.115000px;}
.x95_c00120{left:267.840000px;}
.x56_c00120{left:269.565000px;}
.x21_c00120{left:271.290000px;}
.x5f_c00120{left:275.610000px;}
.x44_c00120{left:277.350000px;}
.x10_c00120{left:279.075000px;}
.x78_c00120{left:280.800000px;}
.xf1_c00120{left:284.250000px;}
.x57_c00120{left:287.715000px;}
.xc0_c00120{left:289.440000px;}
.xfa_c00120{left:291.165000px;}
.x60_c00120{left:293.760000px;}
.xf5_c00120{left:297.210000px;}
.x3f_c00120{left:298.950000px;}
.x9a_c00120{left:302.400000px;}
.x82_c00120{left:304.995000px;}
.xa4_c00120{left:307.590000px;}
.x2e_c00120{left:309.315000px;}
.x34_c00120{left:311.040000px;}
.xb5_c00120{left:312.765000px;}
.x6e_c00120{left:315.360000px;}
.xbd_c00120{left:317.085000px;}
.x9f_c00120{left:318.810000px;}
.xcb_c00120{left:321.405000px;}
.x130_c00120{left:324.000000px;}
.x8a_c00120{left:325.725000px;}
.xa5_c00120{left:327.450000px;}
.x8_c00120{left:332.640000px;}
.x22_c00120{left:335.235000px;}
.xb8_c00120{left:336.960000px;}
.xc1_c00120{left:338.685000px;}
.x11_c00120{left:342.150000px;}
.xd2_c00120{left:343.875000px;}
.x4b_c00120{left:345.600000px;}
.x61_c00120{left:349.050000px;}
.x8b_c00120{left:350.790000px;}
.xb6_c00120{left:352.515000px;}
.xb9_c00120{left:354.240000px;}
.xc8_c00120{left:356.835000px;}
.x40_c00120{left:358.560000px;}
.x121_c00120{left:360.285000px;}
.xe5_c00120{left:362.880000px;}
.xd8_c00120{left:366.330000px;}
.x23_c00120{left:368.070000px;}
.x101_c00120{left:369.795000px;}
.xba_c00120{left:371.520000px;}
.xce_c00120{left:373.245000px;}
.x9_c00120{left:374.970000px;}
.xe1_c00120{left:377.565000px;}
.x12_c00120{left:380.160000px;}
.xa0_c00120{left:382.755000px;}
.x35_c00120{left:385.350000px;}
.x117_c00120{left:387.075000px;}
.x131_c00120{left:388.800000px;}
.x10d_c00120{left:390.525000px;}
.x83_c00120{left:393.990000px;}
.xcc_c00120{left:396.570000px;}
.xa1_c00120{left:400.035000px;}
.x45_c00120{left:403.485000px;}
.xb0_c00120{left:405.210000px;}
.x2f_c00120{left:406.950000px;}
.x79_c00120{left:408.675000px;}
.x128_c00120{left:410.400000px;}
.xcf_c00120{left:412.125000px;}
.x13_c00120{left:413.850000px;}
.xa6_c00120{left:415.590000px;}
.x7d_c00120{left:417.315000px;}
.x62_c00120{left:421.635000px;}
.x24_c00120{left:423.360000px;}
.x112_c00120{left:425.955000px;}
.xe2_c00120{left:427.680000px;}
.xf2_c00120{left:429.405000px;}
.x8c_c00120{left:432.000000px;}
.x4c_c00120{left:434.595000px;}
.x7a_c00120{left:436.320000px;}
.xfb_c00120{left:438.045000px;}
.x14_c00120{left:439.770000px;}
.x25_c00120{left:442.365000px;}
.x46_c00120{left:445.830000px;}
.x6f_c00120{left:447.555000px;}
.x30_c00120{left:451.875000px;}
.x88_c00120{left:453.600000px;}
.x4d_c00120{left:457.050000px;}
.x84_c00120{left:458.790000px;}
.x58_c00120{left:461.370000px;}
.x7e_c00120{left:463.965000px;}
.x129_c00120{left:465.690000px;}
.x41_c00120{left:467.430000px;}
.x93_c00120{left:469.155000px;}
.xc2_c00120{left:470.880000px;}
.x36_c00120{left:473.475000px;}
.xb1_c00120{left:475.200000px;}
.x15_c00120{left:477.795000px;}
.xa2_c00120{left:483.840000px;}
.xfc_c00120{left:487.290000px;}
.x16_c00120{left:489.030000px;}
.x42_c00120{left:490.755000px;}
.xa7_c00120{left:493.350000px;}
.x31_c00120{left:495.075000px;}
.x37_c00120{left:496.800000px;}
.x11c_c00120{left:499.395000px;}
.x70_c00120{left:501.990000px;}
.xa8_c00120{left:503.715000px;}
.x4e_c00120{left:506.310000px;}
.x59_c00120{left:508.035000px;}
.xb7_c00120{left:509.760000px;}
.x107_c00120{left:511.485000px;}
.x71_c00120{left:513.210000px;}
.xd9_c00120{left:514.950000px;}
.x26_c00120{left:517.530000px;}
.x7b_c00120{left:519.270000px;}
.xe9_c00120{left:520.995000px;}
.x5a_c00120{left:525.315000px;}
.xf6_c00120{left:527.910000px;}
.xa9_c00120{left:529.635000px;}
.x12a_c00120{left:531.360000px;}
.x17_c00120{left:533.955000px;}
.x63_c00120{left:540.000000px;}
.x10b_c00120{left:545.190000px;}
.xd3_c00120{left:548.640000px;}
.x8d_c00120{left:550.365000px;}
.x18_c00120{left:552.960000px;}
.x96_c00120{left:556.410000px;}
.xa_c00120{left:560.730000px;}
.x10f_c00120{left:562.470000px;}
.x4f_c00120{left:564.195000px;}
.xde_c00120{left:565.920000px;}
.xa3_c00120{left:567.645000px;}
.x5b_c00120{left:569.370000px;}
.x19_c00120{left:571.110000px;}
.xea_c00120{left:575.430000px;}
.x8e_c00120{left:578.880000px;}
.x110_c00120{left:583.200000px;}
.xbb_c00120{left:587.520000px;}
.x3_c00120{left:589.245000px;}
.x122_c00120{left:593.565000px;}
.xd4_c00120{left:597.030000px;}
.xf7_c00120{left:598.755000px;}
.xb_c00120{left:602.205000px;}
.xb2_c00120{left:603.930000px;}
.x38_c00120{left:605.670000px;}
.x7f_c00120{left:607.395000px;}
.x47_c00120{left:609.120000px;}
.x1a_c00120{left:610.845000px;}
.xc3_c00120{left:613.440000px;}
.x7c_c00120{left:616.035000px;}
.x27_c00120{left:620.355000px;}
.x72_c00120{left:622.080000px;}
.x10e_c00120{left:623.805000px;}
.xd0_c00120{left:625.530000px;}
.x48_c00120{left:628.125000px;}
.x32_c00120{left:630.720000px;}
.x50_c00120{left:632.445000px;}
.xc4_c00120{left:634.170000px;}
.x10c_c00120{left:638.490000px;}
.xe6_c00120{left:641.085000px;}
.x64_c00120{left:642.810000px;}
.x104_c00120{left:644.550000px;}
.x43_c00120{left:647.130000px;}
.xc_c00120{left:649.725000px;}
.x65_c00120{left:651.450000px;}
.x94_c00120{left:654.045000px;}
.x97_c00120{left:656.640000px;}
.x39_c00120{left:660.090000px;}
.x8f_c00120{left:661.830000px;}
.x51_c00120{left:665.280000px;}
.x90_c00120{left:667.875000px;}
.xc9_c00120{left:669.600000px;}
.x73_c00120{left:671.325000px;}
.x80_c00120{left:673.050000px;}
.xb3_c00120{left:675.645000px;}
.xfd_c00120{left:679.965000px;}
.x49_c00120{left:681.690000px;}
.xeb_c00120{left:684.285000px;}
.x52_c00120{left:686.880000px;}
.x1b_c00120{left:689.475000px;}
.x109_c00120{left:691.200000px;}
.x3a_c00120{left:693.795000px;}
.x28_c00120{left:696.390000px;}
.xec_c00120{left:699.840000px;}
.x1_c00120{left:702.435000px;}
.x74_c00120{left:704.160000px;}
.x118_c00120{left:705.885000px;}
.x12c_c00120{left:707.610000px;}
.xaa_c00120{left:710.205000px;}
.x29_c00120{left:712.800000px;}
.xc5_c00120{left:717.120000px;}
.x98_c00120{left:718.845000px;}
.x66_c00120{left:721.440000px;}
.x53_c00120{left:723.165000px;}
.x12b_c00120{left:725.760000px;}
.x1c_c00120{left:729.210000px;}
.x85_c00120{left:731.805000px;}
.x4_c00120{left:734.400000px;}
.xd5_c00120{left:738.720000px;}
.x5c_c00120{left:740.445000px;}
.x75_c00120{left:743.040000px;}
.xd_c00120{left:747.360000px;}
.xfe_c00120{left:749.085000px;}
.x5_c00120{left:751.680000px;}
.xdf_c00120{left:753.405000px;}
.xc6_c00120{left:755.130000px;}
.x54_c00120{left:756.870000px;}
.x33_c00120{left:758.595000px;}
.xf3_c00120{left:760.320000px;}
.x10a_c00120{left:762.045000px;}
.x67_c00120{left:763.770000px;}
.xda_c00120{left:765.510000px;}
.xc7_c00120{left:767.235000px;}
.x102_c00120{left:768.960000px;}
.x108_c00120{left:771.555000px;}
.x6_c00120{left:773.280000px;}
.x3b_c00120{left:775.005000px;}
.x5d_c00120{left:777.600000px;}
.xab_c00120{left:780.195000px;}
.x7_c00120{left:784.515000px;}
.xe3_c00120{left:787.110000px;}
.xcd_c00120{left:788.835000px;}
.x2_c00120{left:791.430000px;}
.x2a_c00120{left:793.155000px;}
.x5e_c00120{left:794.880000px;}
.xd1_c00120{left:796.605000px;}
.x55_c00120{left:798.330000px;}
.x123_c00120{left:801.795000px;}
.xac_c00120{left:803.520000px;}
.x9b_c00120{left:805.245000px;}
.x12e_c00120{left:808.710000px;}
.x1d_c00120{left:812.160000px;}
.x105_c00120{left:813.885000px;}
.x2b_c00120{left:817.350000px;}
.x68_c00120{left:819.930000px;}
.xbe_c00120{left:824.250000px;}
.x9c_c00120{left:827.715000px;}
.x11d_c00120{left:830.310000px;}
.xdb_c00120{left:832.890000px;}
.x81_c00120{left:835.485000px;}
.x76_c00120{left:838.080000px;}
.xad_c00120{left:839.805000px;}
.x12f_c00120{left:842.400000px;}
.x69_c00120{left:844.125000px;}
.x3c_c00120{left:846.720000px;}
.xca_c00120{left:848.445000px;}
.x1e_c00120{left:850.170000px;}
.x91_c00120{left:851.910000px;}
.x111_c00120{left:856.230000px;}
.xee_c00120{left:858.810000px;}
.xf8_c00120{left:860.550000px;}
.x2c_c00120{left:863.130000px;}
.xed_c00120{left:867.450000px;}
.x92_c00120{left:870.045000px;}
.x113_c00120{left:875.235000px;}
.xff_c00120{left:876.960000px;}
.xf4_c00120{left:878.685000px;}
.x2d_c00120{left:880.410000px;}
.x1f_c00120{left:882.150000px;}
.x106_c00120{left:889.050000px;}
.x9d_c00120{left:890.790000px;}
.xe4_c00120{left:894.240000px;}
.x119_c00120{left:898.560000px;}
.x9e_c00120{left:902.880000px;}
.xe7_c00120{left:904.605000px;}
.x3d_c00120{left:907.200000px;}
.xef_c00120{left:908.925000px;}
.xae_c00120{left:913.245000px;}
.x20_c00120{left:916.710000px;}
.xf0_c00120{left:918.435000px;}
.x11a_c00120{left:920.160000px;}
.x114_c00120{left:921.885000px;}
.x3e_c00120{left:926.205000px;}
.x103_c00120{left:931.395000px;}
.xe8_c00120{left:933.120000px;}
.x6a_c00120{left:946.080000px;}
.x136_c00120{left:984.960000px;}
.x133_c00120{left:991.005000px;}
.x137_c00120{left:996.195000px;}
.x132_c00120{left:1041.120000px;}
.x134_c00120{left:1067.910000px;}
.x135_c00120{left:1073.085000px;}
@media print{
.v1_c00120{vertical-align:-12.320000pt;}
.v0_c00120{vertical-align:0.000000pt;}
.ls1_c00120{letter-spacing:0.000000pt;}
.ls0_c00120{letter-spacing:31.338133pt;}
.ws0_c00120{word-spacing:-6.129067pt;}
.ws2_c00120{word-spacing:0.000000pt;}
.ws1_c00120{word-spacing:131.910133pt;}
._0_c00120{width:250.365867pt;}
.fs2_c00120{font-size:3.072000pt;}
.fs7_c00120{font-size:5.333333pt;}
.fs1d_c00120{font-size:6.133333pt;}
.fs17_c00120{font-size:9.226667pt;}
.fs1b_c00120{font-size:12.266667pt;}
.fs0_c00120{font-size:15.360000pt;}
.fs15_c00120{font-size:18.453333pt;}
.fs1_c00120{font-size:21.493333pt;}
.fs1f_c00120{font-size:24.586667pt;}
.fs18_c00120{font-size:27.626667pt;}
.fs12_c00120{font-size:30.720000pt;}
.fs3_c00120{font-size:33.813333pt;}
.fs8_c00120{font-size:36.853333pt;}
.fs1a_c00120{font-size:39.946667pt;}
.fsf_c00120{font-size:42.986667pt;}
.fs11_c00120{font-size:46.080000pt;}
.fs4_c00120{font-size:49.173333pt;}
.fsb_c00120{font-size:52.213333pt;}
.fs9_c00120{font-size:55.306667pt;}
.fsa_c00120{font-size:58.346667pt;}
.fsc_c00120{font-size:61.440000pt;}
.fs16_c00120{font-size:64.533333pt;}
.fsd_c00120{font-size:67.573333pt;}
.fs6_c00120{font-size:70.666667pt;}
.fs14_c00120{font-size:73.706667pt;}
.fs5_c00120{font-size:76.800000pt;}
.fse_c00120{font-size:79.893333pt;}
.fs10_c00120{font-size:82.933333pt;}
.fs20_c00120{font-size:86.026667pt;}
.fs13_c00120{font-size:89.066667pt;}
.fs1e_c00120{font-size:92.160000pt;}
.fs19_c00120{font-size:95.253333pt;}
.fs1c_c00120{font-size:98.293333pt;}
.fs21_c00120{font-size:101.386667pt;}
.y0_c00120{bottom:0.000000pt;}
.y214_c00120{bottom:196.613333pt;}
.y211_c00120{bottom:197.373333pt;}
.y213_c00120{bottom:200.453333pt;}
.y210_c00120{bottom:201.213333pt;}
.y212_c00120{bottom:201.986667pt;}
.y20f_c00120{bottom:205.053333pt;}
.y20d_c00120{bottom:215.813333pt;}
.y20a_c00120{bottom:217.346667pt;}
.y20e_c00120{bottom:218.106667pt;}
.y208_c00120{bottom:218.880000pt;}
.y20c_c00120{bottom:220.413333pt;}
.y206_c00120{bottom:221.186667pt;}
.y209_c00120{bottom:221.946667pt;}
.y20b_c00120{bottom:223.493333pt;}
.y207_c00120{bottom:225.026667pt;}
.y205_c00120{bottom:228.093333pt;}
.y203_c00120{bottom:235.773333pt;}
.y204_c00120{bottom:236.546667pt;}
.y202_c00120{bottom:237.306667pt;}
.y200_c00120{bottom:239.613333pt;}
.y1ff_c00120{bottom:241.146667pt;}
.y201_c00120{bottom:241.920000pt;}
.y1fd_c00120{bottom:251.133333pt;}
.y1fe_c00120{bottom:252.666667pt;}
.y1fb_c00120{bottom:253.440000pt;}
.y1f9_c00120{bottom:254.213333pt;}
.y1f8_c00120{bottom:254.973333pt;}
.y1f7_c00120{bottom:256.506667pt;}
.y1fc_c00120{bottom:257.280000pt;}
.y1fa_c00120{bottom:258.813333pt;}
.y1f6_c00120{bottom:265.733333pt;}
.y1f5_c00120{bottom:271.866667pt;}
.y1f4_c00120{bottom:272.640000pt;}
.y1f3_c00120{bottom:273.413333pt;}
.y1f2_c00120{bottom:274.173333pt;}
.y1f1_c00120{bottom:275.706667pt;}
.y1ed_c00120{bottom:276.480000pt;}
.y1ef_c00120{bottom:277.253333pt;}
.y1ee_c00120{bottom:278.013333pt;}
.y1ec_c00120{bottom:278.786667pt;}
.y1ea_c00120{bottom:280.320000pt;}
.y1eb_c00120{bottom:281.093333pt;}
.y1e9_c00120{bottom:282.626667pt;}
.y1f0_c00120{bottom:285.693333pt;}
.y1e7_c00120{bottom:287.226667pt;}
.y1e8_c00120{bottom:288.773333pt;}
.y1e3_c00120{bottom:289.533333pt;}
.y1e1_c00120{bottom:291.840000pt;}
.y1e6_c00120{bottom:292.613333pt;}
.y1e2_c00120{bottom:293.373333pt;}
.y1e5_c00120{bottom:294.146667pt;}
.y1e4_c00120{bottom:294.906667pt;}
.y1e0_c00120{bottom:295.680000pt;}
.y1dd_c00120{bottom:296.453333pt;}
.y1dc_c00120{bottom:297.213333pt;}
.y1de_c00120{bottom:302.586667pt;}
.y1db_c00120{bottom:304.133333pt;}
.y1da_c00120{bottom:304.893333pt;}
.y1df_c00120{bottom:306.426667pt;}
.y1d9_c00120{bottom:307.973333pt;}
.y1d1_c00120{bottom:308.733333pt;}
.y1d4_c00120{bottom:309.506667pt;}
.y1d2_c00120{bottom:310.266667pt;}
.y1d8_c00120{bottom:311.813333pt;}
.y1d6_c00120{bottom:312.573333pt;}
.y1d7_c00120{bottom:313.346667pt;}
.y1d5_c00120{bottom:314.106667pt;}
.y1d3_c00120{bottom:315.653333pt;}
.y1d0_c00120{bottom:324.866667pt;}
.y1cc_c00120{bottom:326.400000pt;}
.y1cb_c00120{bottom:327.933333pt;}
.y1cf_c00120{bottom:328.706667pt;}
.y1ce_c00120{bottom:329.466667pt;}
.y1cd_c00120{bottom:331.013333pt;}
.y1c8_c00120{bottom:331.773333pt;}
.y1ca_c00120{bottom:332.546667pt;}
.y1c7_c00120{bottom:333.306667pt;}
.y1c9_c00120{bottom:334.853333pt;}
.y1bd_c00120{bottom:343.293333pt;}
.y1c6_c00120{bottom:344.066667pt;}
.y1c5_c00120{bottom:344.826667pt;}
.y1c4_c00120{bottom:345.600000pt;}
.y1c1_c00120{bottom:346.373333pt;}
.y1be_c00120{bottom:347.133333pt;}
.y1c0_c00120{bottom:347.906667pt;}
.y1c3_c00120{bottom:349.440000pt;}
.y1bf_c00120{bottom:350.213333pt;}
.y1c2_c00120{bottom:350.973333pt;}
.y1bb_c00120{bottom:361.733333pt;}
.y1ba_c00120{bottom:363.266667pt;}
.y1bc_c00120{bottom:364.800000pt;}
.y1b8_c00120{bottom:365.573333pt;}
.y1b4_c00120{bottom:366.333333pt;}
.y1b9_c00120{bottom:367.866667pt;}
.y1b6_c00120{bottom:368.640000pt;}
.y1b5_c00120{bottom:369.413333pt;}
.y1b7_c00120{bottom:370.173333pt;}
.y1b0_c00120{bottom:374.013333pt;}
.y1b3_c00120{bottom:374.786667pt;}
.y1ae_c00120{bottom:377.093333pt;}
.y1aa_c00120{bottom:378.626667pt;}
.y1ad_c00120{bottom:379.386667pt;}
.y1af_c00120{bottom:380.160000pt;}
.y1b1_c00120{bottom:380.933333pt;}
.y1a9_c00120{bottom:382.466667pt;}
.y1ac_c00120{bottom:387.066667pt;}
.y1ab_c00120{bottom:387.840000pt;}
.y1b2_c00120{bottom:388.613333pt;}
.y1a8_c00120{bottom:397.053333pt;}
.y1a7_c00120{bottom:397.826667pt;}
.y1a6_c00120{bottom:398.586667pt;}
.y1a5_c00120{bottom:400.133333pt;}
.y1a4_c00120{bottom:401.666667pt;}
.y1a2_c00120{bottom:402.426667pt;}
.y1a3_c00120{bottom:403.973333pt;}
.y1a1_c00120{bottom:407.040000pt;}
.y1a0_c00120{bottom:416.253333pt;}
.y19d_c00120{bottom:417.026667pt;}
.y19b_c00120{bottom:418.560000pt;}
.y19c_c00120{bottom:420.093333pt;}
.y19a_c00120{bottom:420.866667pt;}
.y19f_c00120{bottom:421.626667pt;}
.y19e_c00120{bottom:423.173333pt;}
.y198_c00120{bottom:436.226667pt;}
.y194_c00120{bottom:437.760000pt;}
.y199_c00120{bottom:438.533333pt;}
.y196_c00120{bottom:440.066667pt;}
.y193_c00120{bottom:440.826667pt;}
.y195_c00120{bottom:441.600000pt;}
.y197_c00120{bottom:450.053333pt;}
.y192_c00120{bottom:452.346667pt;}
.y18e_c00120{bottom:454.653333pt;}
.y18b_c00120{bottom:455.426667pt;}
.y190_c00120{bottom:456.960000pt;}
.y191_c00120{bottom:457.733333pt;}
.y18f_c00120{bottom:458.493333pt;}
.y18d_c00120{bottom:459.266667pt;}
.y18c_c00120{bottom:460.026667pt;}
.y18a_c00120{bottom:460.800000pt;}
.y189_c00120{bottom:462.333333pt;}
.y188_c00120{bottom:470.013333pt;}
.y186_c00120{bottom:470.786667pt;}
.y184_c00120{bottom:472.320000pt;}
.y181_c00120{bottom:473.093333pt;}
.y182_c00120{bottom:474.626667pt;}
.y187_c00120{bottom:475.386667pt;}
.y185_c00120{bottom:476.160000pt;}
.y180_c00120{bottom:476.933333pt;}
.y183_c00120{bottom:477.693333pt;}
.y17f_c00120{bottom:480.000000pt;}
.y17e_c00120{bottom:486.906667pt;}
.y17d_c00120{bottom:488.453333pt;}
.y17b_c00120{bottom:489.986667pt;}
.y178_c00120{bottom:490.746667pt;}
.y179_c00120{bottom:492.293333pt;}
.y177_c00120{bottom:493.826667pt;}
.y17c_c00120{bottom:496.133333pt;}
.y17a_c00120{bottom:496.893333pt;}
.y176_c00120{bottom:506.880000pt;}
.y172_c00120{bottom:509.186667pt;}
.y174_c00120{bottom:511.493333pt;}
.y175_c00120{bottom:512.253333pt;}
.y16f_c00120{bottom:513.026667pt;}
.y173_c00120{bottom:513.786667pt;}
.y171_c00120{bottom:514.560000pt;}
.y170_c00120{bottom:515.333333pt;}
.y16e_c00120{bottom:516.866667pt;}
.y16d_c00120{bottom:526.080000pt;}
.y16b_c00120{bottom:527.613333pt;}
.y169_c00120{bottom:529.146667pt;}
.y168_c00120{bottom:529.920000pt;}
.y167_c00120{bottom:530.693333pt;}
.y16a_c00120{bottom:533.760000pt;}
.y16c_c00120{bottom:542.213333pt;}
.y162_c00120{bottom:543.746667pt;}
.y163_c00120{bottom:544.506667pt;}
.y161_c00120{bottom:545.280000pt;}
.y15e_c00120{bottom:546.813333pt;}
.y164_c00120{bottom:547.586667pt;}
.y15c_c00120{bottom:549.120000pt;}
.y160_c00120{bottom:549.893333pt;}
.y15f_c00120{bottom:550.653333pt;}
.y15d_c00120{bottom:551.426667pt;}
.y166_c00120{bottom:553.733333pt;}
.y165_c00120{bottom:556.800000pt;}
.y15b_c00120{bottom:557.573333pt;}
.y159_c00120{bottom:562.173333pt;}
.y15a_c00120{bottom:564.480000pt;}
.y152_c00120{bottom:566.013333pt;}
.y155_c00120{bottom:566.786667pt;}
.y158_c00120{bottom:567.546667pt;}
.y156_c00120{bottom:568.320000pt;}
.y157_c00120{bottom:569.093333pt;}
.y154_c00120{bottom:569.853333pt;}
.y153_c00120{bottom:570.626667pt;}
.y151_c00120{bottom:571.386667pt;}
.y150_c00120{bottom:573.693333pt;}
.y14e_c00120{bottom:579.840000pt;}
.y14f_c00120{bottom:580.613333pt;}
.y14d_c00120{bottom:582.146667pt;}
.y14c_c00120{bottom:582.906667pt;}
.y14a_c00120{bottom:583.680000pt;}
.y147_c00120{bottom:585.986667pt;}
.y148_c00120{bottom:586.746667pt;}
.y14b_c00120{bottom:587.520000pt;}
.y149_c00120{bottom:588.293333pt;}
.y144_c00120{bottom:593.666667pt;}
.y142_c00120{bottom:594.426667pt;}
.y141_c00120{bottom:595.200000pt;}
.y13c_c00120{bottom:597.506667pt;}
.y13b_c00120{bottom:598.266667pt;}
.y145_c00120{bottom:599.813333pt;}
.y13e_c00120{bottom:600.573333pt;}
.y140_c00120{bottom:601.346667pt;}
.y146_c00120{bottom:602.106667pt;}
.y143_c00120{bottom:602.880000pt;}
.y13f_c00120{bottom:603.653333pt;}
.y13d_c00120{bottom:604.413333pt;}
.y139_c00120{bottom:615.173333pt;}
.y138_c00120{bottom:615.933333pt;}
.y136_c00120{bottom:618.240000pt;}
.y135_c00120{bottom:619.013333pt;}
.y13a_c00120{bottom:619.773333pt;}
.y134_c00120{bottom:621.306667pt;}
.y137_c00120{bottom:622.080000pt;}
.y133_c00120{bottom:631.293333pt;}
.y132_c00120{bottom:632.826667pt;}
.y131_c00120{bottom:634.373333pt;}
.y130_c00120{bottom:635.133333pt;}
.y12f_c00120{bottom:635.906667pt;}
.y12e_c00120{bottom:636.666667pt;}
.y12a_c00120{bottom:637.440000pt;}
.y129_c00120{bottom:638.213333pt;}
.y125_c00120{bottom:638.973333pt;}
.y127_c00120{bottom:639.746667pt;}
.y122_c00120{bottom:640.506667pt;}
.y12d_c00120{bottom:641.280000pt;}
.y12c_c00120{bottom:644.346667pt;}
.y126_c00120{bottom:646.653333pt;}
.y12b_c00120{bottom:647.426667pt;}
.y123_c00120{bottom:648.960000pt;}
.y124_c00120{bottom:649.733333pt;}
.y128_c00120{bottom:652.026667pt;}
.y11d_c00120{bottom:652.800000pt;}
.y11b_c00120{bottom:654.333333pt;}
.y120_c00120{bottom:655.106667pt;}
.y11f_c00120{bottom:655.866667pt;}
.y11e_c00120{bottom:656.640000pt;}
.y11c_c00120{bottom:657.413333pt;}
.y121_c00120{bottom:662.013333pt;}
.y11a_c00120{bottom:668.933333pt;}
.y118_c00120{bottom:670.466667pt;}
.y115_c00120{bottom:671.226667pt;}
.y119_c00120{bottom:672.000000pt;}
.y116_c00120{bottom:672.773333pt;}
.y112_c00120{bottom:673.533333pt;}
.y117_c00120{bottom:675.066667pt;}
.y114_c00120{bottom:676.613333pt;}
.y113_c00120{bottom:678.146667pt;}
.y111_c00120{bottom:679.680000pt;}
.y219_c00120{bottom:682.746667pt;}
.y218_c00120{bottom:683.520000pt;}
.y110_c00120{bottom:688.133333pt;}
.y10e_c00120{bottom:688.893333pt;}
.y10c_c00120{bottom:689.666667pt;}
.y10a_c00120{bottom:690.426667pt;}
.y10d_c00120{bottom:691.200000pt;}
.y10f_c00120{bottom:692.733333pt;}
.y106_c00120{bottom:693.506667pt;}
.y10b_c00120{bottom:694.266667pt;}
.y108_c00120{bottom:695.040000pt;}
.y109_c00120{bottom:696.573333pt;}
.y107_c00120{bottom:705.786667pt;}
.y101_c00120{bottom:708.093333pt;}
.yff_c00120{bottom:708.866667pt;}
.y105_c00120{bottom:710.400000pt;}
.y103_c00120{bottom:711.173333pt;}
.y104_c00120{bottom:711.933333pt;}
.y102_c00120{bottom:712.706667pt;}
.y100_c00120{bottom:714.240000pt;}
.yfe_c00120{bottom:717.306667pt;}
.yfd_c00120{bottom:722.693333pt;}
.yf9_c00120{bottom:725.760000pt;}
.yf8_c00120{bottom:726.533333pt;}
.yf6_c00120{bottom:728.066667pt;}
.yfc_c00120{bottom:728.826667pt;}
.yf5_c00120{bottom:729.600000pt;}
.yfa_c00120{bottom:730.373333pt;}
.yf7_c00120{bottom:731.133333pt;}
.yfb_c00120{bottom:731.906667pt;}
.yf4_c00120{bottom:732.666667pt;}
.yf3_c00120{bottom:733.440000pt;}
.yf2_c00120{bottom:741.120000pt;}
.yf0_c00120{bottom:743.426667pt;}
.yef_c00120{bottom:746.493333pt;}
.yed_c00120{bottom:747.266667pt;}
.yf1_c00120{bottom:748.800000pt;}
.yee_c00120{bottom:749.573333pt;}
.yec_c00120{bottom:751.866667pt;}
.yeb_c00120{bottom:761.853333pt;}
.ye7_c00120{bottom:762.626667pt;}
.ye5_c00120{bottom:763.386667pt;}
.yea_c00120{bottom:765.693333pt;}
.ye9_c00120{bottom:766.466667pt;}
.ye8_c00120{bottom:767.226667pt;}
.ye6_c00120{bottom:768.000000pt;}
.ye4_c00120{bottom:768.773333pt;}
.ye3_c00120{bottom:769.533333pt;}
.ye1_c00120{bottom:779.520000pt;}
.ydd_c00120{bottom:780.293333pt;}
.ye0_c00120{bottom:781.053333pt;}
.ydc_c00120{bottom:782.586667pt;}
.yd9_c00120{bottom:783.360000pt;}
.ye2_c00120{bottom:784.133333pt;}
.ydf_c00120{bottom:784.893333pt;}
.yde_c00120{bottom:785.666667pt;}
.yda_c00120{bottom:786.426667pt;}
.ydb_c00120{bottom:793.346667pt;}
.yd8_c00120{bottom:796.413333pt;}
.yd2_c00120{bottom:798.720000pt;}
.yd5_c00120{bottom:799.493333pt;}
.yd3_c00120{bottom:800.253333pt;}
.yd7_c00120{bottom:801.786667pt;}
.yd6_c00120{bottom:802.560000pt;}
.yd4_c00120{bottom:803.333333pt;}
.yd1_c00120{bottom:804.093333pt;}
.yd0_c00120{bottom:805.626667pt;}
.yce_c00120{bottom:814.080000pt;}
.ycc_c00120{bottom:814.853333pt;}
.ycd_c00120{bottom:816.386667pt;}
.yca_c00120{bottom:817.146667pt;}
.yc9_c00120{bottom:817.920000pt;}
.yc8_c00120{bottom:819.453333pt;}
.ycf_c00120{bottom:820.226667pt;}
.ycb_c00120{bottom:821.760000pt;}
.yc7_c00120{bottom:827.133333pt;}
.yc4_c00120{bottom:836.346667pt;}
.yc2_c00120{bottom:837.893333pt;}
.yc6_c00120{bottom:838.653333pt;}
.yc5_c00120{bottom:839.426667pt;}
.yc3_c00120{bottom:840.186667pt;}
.yc1_c00120{bottom:840.960000pt;}
.yc0_c00120{bottom:850.946667pt;}
.ybd_c00120{bottom:853.253333pt;}
.yba_c00120{bottom:854.013333pt;}
.ybf_c00120{bottom:854.786667pt;}
.yb7_c00120{bottom:855.546667pt;}
.ybb_c00120{bottom:856.320000pt;}
.ybe_c00120{bottom:857.093333pt;}
.ybc_c00120{bottom:857.853333pt;}
.yb8_c00120{bottom:858.626667pt;}
.yb9_c00120{bottom:859.386667pt;}
.yb6_c00120{bottom:869.373333pt;}
.yb5_c00120{bottom:870.906667pt;}
.yaf_c00120{bottom:872.453333pt;}
.yb3_c00120{bottom:873.213333pt;}
.yb4_c00120{bottom:874.746667pt;}
.yb2_c00120{bottom:875.520000pt;}
.yb1_c00120{bottom:876.293333pt;}
.yb0_c00120{bottom:877.053333pt;}
.yae_c00120{bottom:880.893333pt;}
.yad_c00120{bottom:887.813333pt;}
.yac_c00120{bottom:890.106667pt;}
.ya9_c00120{bottom:890.880000pt;}
.ya6_c00120{bottom:891.653333pt;}
.ya7_c00120{bottom:892.413333pt;}
.yaa_c00120{bottom:893.186667pt;}
.yab_c00120{bottom:893.946667pt;}
.ya8_c00120{bottom:894.720000pt;}
.ya5_c00120{bottom:895.493333pt;}
.ya4_c00120{bottom:896.253333pt;}
.ya3_c00120{bottom:906.240000pt;}
.ya0_c00120{bottom:907.773333pt;}
.y9d_c00120{bottom:908.546667pt;}
.y9f_c00120{bottom:910.853333pt;}
.ya2_c00120{bottom:911.613333pt;}
.ya1_c00120{bottom:912.386667pt;}
.y9e_c00120{bottom:913.146667pt;}
.y9c_c00120{bottom:913.920000pt;}
.y99_c00120{bottom:919.293333pt;}
.y98_c00120{bottom:921.600000pt;}
.y97_c00120{bottom:922.373333pt;}
.y94_c00120{bottom:923.906667pt;}
.y91_c00120{bottom:924.666667pt;}
.y93_c00120{bottom:928.506667pt;}
.y95_c00120{bottom:930.053333pt;}
.y96_c00120{bottom:930.813333pt;}
.y92_c00120{bottom:932.346667pt;}
.y9b_c00120{bottom:933.893333pt;}
.y9a_c00120{bottom:934.653333pt;}
.y90_c00120{bottom:943.106667pt;}
.y8e_c00120{bottom:943.866667pt;}
.y8c_c00120{bottom:944.640000pt;}
.y8b_c00120{bottom:946.173333pt;}
.y8f_c00120{bottom:948.480000pt;}
.y8a_c00120{bottom:950.013333pt;}
.y89_c00120{bottom:950.786667pt;}
.y8d_c00120{bottom:958.466667pt;}
.y88_c00120{bottom:960.773333pt;}
.y87_c00120{bottom:963.066667pt;}
.y85_c00120{bottom:963.840000pt;}
.y84_c00120{bottom:966.146667pt;}
.y86_c00120{bottom:966.906667pt;}
.y83_c00120{bottom:967.680000pt;}
.y82_c00120{bottom:973.053333pt;}
.y7e_c00120{bottom:975.360000pt;}
.y81_c00120{bottom:976.133333pt;}
.y7a_c00120{bottom:977.666667pt;}
.y7b_c00120{bottom:978.426667pt;}
.y7c_c00120{bottom:979.200000pt;}
.y79_c00120{bottom:981.506667pt;}
.y80_c00120{bottom:983.813333pt;}
.y7f_c00120{bottom:984.573333pt;}
.y7d_c00120{bottom:985.346667pt;}
.y77_c00120{bottom:986.880000pt;}
.y78_c00120{bottom:987.653333pt;}
.y75_c00120{bottom:996.866667pt;}
.y72_c00120{bottom:997.626667pt;}
.y74_c00120{bottom:998.400000pt;}
.y70_c00120{bottom:999.173333pt;}
.y6f_c00120{bottom:999.933333pt;}
.y76_c00120{bottom:1001.466667pt;}
.y73_c00120{bottom:1002.240000pt;}
.y217_c00120{bottom:1003.013333pt;}
.y71_c00120{bottom:1003.773333pt;}
.y6e_c00120{bottom:1016.066667pt;}
.y68_c00120{bottom:1017.600000pt;}
.y6a_c00120{bottom:1018.373333pt;}
.y69_c00120{bottom:1019.133333pt;}
.y6d_c00120{bottom:1019.906667pt;}
.y6c_c00120{bottom:1020.666667pt;}
.y6b_c00120{bottom:1021.440000pt;}
.y67_c00120{bottom:1022.213333pt;}
.y66_c00120{bottom:1032.186667pt;}
.y63_c00120{bottom:1036.026667pt;}
.y65_c00120{bottom:1037.573333pt;}
.y64_c00120{bottom:1039.106667pt;}
.y62_c00120{bottom:1039.866667pt;}
.y61_c00120{bottom:1040.640000pt;}
.y60_c00120{bottom:1042.946667pt;}
.y5f_c00120{bottom:1051.386667pt;}
.y5d_c00120{bottom:1052.160000pt;}
.y5a_c00120{bottom:1052.933333pt;}
.y5b_c00120{bottom:1054.466667pt;}
.y5e_c00120{bottom:1056.000000pt;}
.y5c_c00120{bottom:1056.773333pt;}
.y59_c00120{bottom:1058.306667pt;}
.y58_c00120{bottom:1059.840000pt;}
.y56_c00120{bottom:1065.213333pt;}
.y57_c00120{bottom:1068.293333pt;}
.y54_c00120{bottom:1070.586667pt;}
.y53_c00120{bottom:1072.133333pt;}
.y51_c00120{bottom:1072.893333pt;}
.y4d_c00120{bottom:1074.426667pt;}
.y52_c00120{bottom:1075.200000pt;}
.y4f_c00120{bottom:1075.973333pt;}
.y50_c00120{bottom:1076.733333pt;}
.y4e_c00120{bottom:1077.506667pt;}
.y55_c00120{bottom:1082.106667pt;}
.y4c_c00120{bottom:1088.253333pt;}
.y47_c00120{bottom:1089.026667pt;}
.y49_c00120{bottom:1090.560000pt;}
.y4b_c00120{bottom:1091.333333pt;}
.y4a_c00120{bottom:1092.093333pt;}
.y48_c00120{bottom:1093.626667pt;}
.y46_c00120{bottom:1094.400000pt;}
.y44_c00120{bottom:1095.173333pt;}
.y45_c00120{bottom:1095.933333pt;}
.y43_c00120{bottom:1105.146667pt;}
.y3e_c00120{bottom:1107.453333pt;}
.y3d_c00120{bottom:1108.226667pt;}
.y42_c00120{bottom:1110.533333pt;}
.y41_c00120{bottom:1111.293333pt;}
.y40_c00120{bottom:1112.066667pt;}
.y3f_c00120{bottom:1112.826667pt;}
.y3c_c00120{bottom:1118.213333pt;}
.y3b_c00120{bottom:1120.506667pt;}
.y37_c00120{bottom:1121.280000pt;}
.y38_c00120{bottom:1122.813333pt;}
.y34_c00120{bottom:1123.586667pt;}
.y3a_c00120{bottom:1125.893333pt;}
.y39_c00120{bottom:1126.653333pt;}
.y35_c00120{bottom:1130.493333pt;}
.y36_c00120{bottom:1131.266667pt;}
.y33_c00120{bottom:1132.026667pt;}
.y216_c00120{bottom:1133.573333pt;}
.y32_c00120{bottom:1135.106667pt;}
.y30_c00120{bottom:1136.640000pt;}
.y2c_c00120{bottom:1139.706667pt;}
.y2f_c00120{bottom:1140.480000pt;}
.y31_c00120{bottom:1141.253333pt;}
.y2e_c00120{bottom:1143.546667pt;}
.y2d_c00120{bottom:1148.933333pt;}
.y29_c00120{bottom:1158.146667pt;}
.y2b_c00120{bottom:1160.453333pt;}
.y26_c00120{bottom:1161.986667pt;}
.y24_c00120{bottom:1162.746667pt;}
.y25_c00120{bottom:1164.293333pt;}
.y2a_c00120{bottom:1165.826667pt;}
.y28_c00120{bottom:1166.586667pt;}
.y27_c00120{bottom:1167.360000pt;}
.y1e_c00120{bottom:1179.653333pt;}
.y21_c00120{bottom:1180.413333pt;}
.y1f_c00120{bottom:1181.946667pt;}
.y1d_c00120{bottom:1182.720000pt;}
.y23_c00120{bottom:1183.493333pt;}
.y22_c00120{bottom:1184.253333pt;}
.y20_c00120{bottom:1185.026667pt;}
.y215_c00120{bottom:1190.400000pt;}
.y1c_c00120{bottom:1195.013333pt;}
.y17_c00120{bottom:1198.080000pt;}
.y18_c00120{bottom:1198.853333pt;}
.y1a_c00120{bottom:1199.613333pt;}
.y1b_c00120{bottom:1201.146667pt;}
.y19_c00120{bottom:1201.920000pt;}
.y16_c00120{bottom:1202.693333pt;}
.y15_c00120{bottom:1203.453333pt;}
.y13_c00120{bottom:1208.826667pt;}
.y14_c00120{bottom:1211.906667pt;}
.y12_c00120{bottom:1214.213333pt;}
.yd_c00120{bottom:1215.746667pt;}
.ye_c00120{bottom:1216.506667pt;}
.y11_c00120{bottom:1218.053333pt;}
.yc_c00120{bottom:1218.813333pt;}
.y10_c00120{bottom:1221.120000pt;}
.yf_c00120{bottom:1221.893333pt;}
.ya_c00120{bottom:1238.013333pt;}
.yb_c00120{bottom:1241.093333pt;}
.y9_c00120{bottom:1244.160000pt;}
.y8_c00120{bottom:1244.933333pt;}
.y7_c00120{bottom:1246.466667pt;}
.y5_c00120{bottom:1261.826667pt;}
.y4_c00120{bottom:1262.586667pt;}
.y6_c00120{bottom:1264.893333pt;}
.y3_c00120{bottom:1265.666667pt;}
.y2_c00120{bottom:1272.573333pt;}
.y1_c00120{bottom:1274.106667pt;}
.h4_c00120{height:2.764500pt;}
.h9_c00120{height:4.799479pt;}
.h1f_c00120{height:5.519401pt;}
.h19_c00120{height:8.303099pt;}
.h1d_c00120{height:11.038802pt;}
.h2_c00120{height:13.822500pt;}
.h17_c00120{height:16.606198pt;}
.h3_c00120{height:19.341901pt;}
.h21_c00120{height:22.125599pt;}
.h1a_c00120{height:24.861302pt;}
.h14_c00120{height:27.645000pt;}
.h5_c00120{height:30.428698pt;}
.ha_c00120{height:33.164401pt;}
.h1c_c00120{height:35.948099pt;}
.h11_c00120{height:38.683802pt;}
.h13_c00120{height:41.467500pt;}
.h6_c00120{height:44.251198pt;}
.hd_c00120{height:46.986901pt;}
.hb_c00120{height:49.770599pt;}
.hc_c00120{height:52.506302pt;}
.he_c00120{height:55.290000pt;}
.h18_c00120{height:58.073698pt;}
.hf_c00120{height:60.809401pt;}
.h8_c00120{height:63.593099pt;}
.h16_c00120{height:66.328802pt;}
.h7_c00120{height:69.112500pt;}
.h10_c00120{height:71.896198pt;}
.h12_c00120{height:74.631901pt;}
.h22_c00120{height:77.415599pt;}
.h15_c00120{height:80.151302pt;}
.h20_c00120{height:82.935000pt;}
.h1b_c00120{height:85.718698pt;}
.h1e_c00120{height:88.454401pt;}
.h23_c00120{height:91.238099pt;}
.h0_c00120{height:1348.613333pt;}
.h1_c00120{height:1348.666667pt;}
.w0_c00120{width:969.213333pt;}
.w1_c00120{width:969.333333pt;}
.x0_c00120{left:0.000000pt;}
.x124_c00120{left:104.453333pt;}
.x125_c00120{left:105.986667pt;}
.x126_c00120{left:121.346667pt;}
.x127_c00120{left:132.866667pt;}
.x11e_c00120{left:142.853333pt;}
.x120_c00120{left:144.386667pt;}
.x115_c00120{left:145.920000pt;}
.xdc_c00120{left:150.533333pt;}
.xaf_c00120{left:154.373333pt;}
.x86_c00120{left:156.666667pt;}
.x6b_c00120{left:166.653333pt;}
.x11b_c00120{left:171.266667pt;}
.xd6_c00120{left:176.640000pt;}
.xe_c00120{left:182.013333pt;}
.xe0_c00120{left:188.160000pt;}
.xbc_c00120{left:190.466667pt;}
.x116_c00120{left:192.000000pt;}
.x87_c00120{left:193.533333pt;}
.x12d_c00120{left:195.840000pt;}
.x99_c00120{left:199.680000pt;}
.xd7_c00120{left:201.213333pt;}
.x6c_c00120{left:202.746667pt;}
.xdd_c00120{left:205.053333pt;}
.x4a_c00120{left:207.360000pt;}
.xbf_c00120{left:209.666667pt;}
.xb4_c00120{left:211.200000pt;}
.x77_c00120{left:212.733333pt;}
.xf_c00120{left:214.266667pt;}
.x11f_c00120{left:226.560000pt;}
.x6d_c00120{left:229.626667pt;}
.x89_c00120{left:231.933333pt;}
.xf9_c00120{left:234.240000pt;}
.x100_c00120{left:236.546667pt;}
.x95_c00120{left:238.080000pt;}
.x56_c00120{left:239.613333pt;}
.x21_c00120{left:241.146667pt;}
.x5f_c00120{left:244.986667pt;}
.x44_c00120{left:246.533333pt;}
.x10_c00120{left:248.066667pt;}
.x78_c00120{left:249.600000pt;}
.xf1_c00120{left:252.666667pt;}
.x57_c00120{left:255.746667pt;}
.xc0_c00120{left:257.280000pt;}
.xfa_c00120{left:258.813333pt;}
.x60_c00120{left:261.120000pt;}
.xf5_c00120{left:264.186667pt;}
.x3f_c00120{left:265.733333pt;}
.x9a_c00120{left:268.800000pt;}
.x82_c00120{left:271.106667pt;}
.xa4_c00120{left:273.413333pt;}
.x2e_c00120{left:274.946667pt;}
.x34_c00120{left:276.480000pt;}
.xb5_c00120{left:278.013333pt;}
.x6e_c00120{left:280.320000pt;}
.xbd_c00120{left:281.853333pt;}
.x9f_c00120{left:283.386667pt;}
.xcb_c00120{left:285.693333pt;}
.x130_c00120{left:288.000000pt;}
.x8a_c00120{left:289.533333pt;}
.xa5_c00120{left:291.066667pt;}
.x8_c00120{left:295.680000pt;}
.x22_c00120{left:297.986667pt;}
.xb8_c00120{left:299.520000pt;}
.xc1_c00120{left:301.053333pt;}
.x11_c00120{left:304.133333pt;}
.xd2_c00120{left:305.666667pt;}
.x4b_c00120{left:307.200000pt;}
.x61_c00120{left:310.266667pt;}
.x8b_c00120{left:311.813333pt;}
.xb6_c00120{left:313.346667pt;}
.xb9_c00120{left:314.880000pt;}
.xc8_c00120{left:317.186667pt;}
.x40_c00120{left:318.720000pt;}
.x121_c00120{left:320.253333pt;}
.xe5_c00120{left:322.560000pt;}
.xd8_c00120{left:325.626667pt;}
.x23_c00120{left:327.173333pt;}
.x101_c00120{left:328.706667pt;}
.xba_c00120{left:330.240000pt;}
.xce_c00120{left:331.773333pt;}
.x9_c00120{left:333.306667pt;}
.xe1_c00120{left:335.613333pt;}
.x12_c00120{left:337.920000pt;}
.xa0_c00120{left:340.226667pt;}
.x35_c00120{left:342.533333pt;}
.x117_c00120{left:344.066667pt;}
.x131_c00120{left:345.600000pt;}
.x10d_c00120{left:347.133333pt;}
.x83_c00120{left:350.213333pt;}
.xcc_c00120{left:352.506667pt;}
.xa1_c00120{left:355.586667pt;}
.x45_c00120{left:358.653333pt;}
.xb0_c00120{left:360.186667pt;}
.x2f_c00120{left:361.733333pt;}
.x79_c00120{left:363.266667pt;}
.x128_c00120{left:364.800000pt;}
.xcf_c00120{left:366.333333pt;}
.x13_c00120{left:367.866667pt;}
.xa6_c00120{left:369.413333pt;}
.x7d_c00120{left:370.946667pt;}
.x62_c00120{left:374.786667pt;}
.x24_c00120{left:376.320000pt;}
.x112_c00120{left:378.626667pt;}
.xe2_c00120{left:380.160000pt;}
.xf2_c00120{left:381.693333pt;}
.x8c_c00120{left:384.000000pt;}
.x4c_c00120{left:386.306667pt;}
.x7a_c00120{left:387.840000pt;}
.xfb_c00120{left:389.373333pt;}
.x14_c00120{left:390.906667pt;}
.x25_c00120{left:393.213333pt;}
.x46_c00120{left:396.293333pt;}
.x6f_c00120{left:397.826667pt;}
.x30_c00120{left:401.666667pt;}
.x88_c00120{left:403.200000pt;}
.x4d_c00120{left:406.266667pt;}
.x84_c00120{left:407.813333pt;}
.x58_c00120{left:410.106667pt;}
.x7e_c00120{left:412.413333pt;}
.x129_c00120{left:413.946667pt;}
.x41_c00120{left:415.493333pt;}
.x93_c00120{left:417.026667pt;}
.xc2_c00120{left:418.560000pt;}
.x36_c00120{left:420.866667pt;}
.xb1_c00120{left:422.400000pt;}
.x15_c00120{left:424.706667pt;}
.xa2_c00120{left:430.080000pt;}
.xfc_c00120{left:433.146667pt;}
.x16_c00120{left:434.693333pt;}
.x42_c00120{left:436.226667pt;}
.xa7_c00120{left:438.533333pt;}
.x31_c00120{left:440.066667pt;}
.x37_c00120{left:441.600000pt;}
.x11c_c00120{left:443.906667pt;}
.x70_c00120{left:446.213333pt;}
.xa8_c00120{left:447.746667pt;}
.x4e_c00120{left:450.053333pt;}
.x59_c00120{left:451.586667pt;}
.xb7_c00120{left:453.120000pt;}
.x107_c00120{left:454.653333pt;}
.x71_c00120{left:456.186667pt;}
.xd9_c00120{left:457.733333pt;}
.x26_c00120{left:460.026667pt;}
.x7b_c00120{left:461.573333pt;}
.xe9_c00120{left:463.106667pt;}
.x5a_c00120{left:466.946667pt;}
.xf6_c00120{left:469.253333pt;}
.xa9_c00120{left:470.786667pt;}
.x12a_c00120{left:472.320000pt;}
.x17_c00120{left:474.626667pt;}
.x63_c00120{left:480.000000pt;}
.x10b_c00120{left:484.613333pt;}
.xd3_c00120{left:487.680000pt;}
.x8d_c00120{left:489.213333pt;}
.x18_c00120{left:491.520000pt;}
.x96_c00120{left:494.586667pt;}
.xa_c00120{left:498.426667pt;}
.x10f_c00120{left:499.973333pt;}
.x4f_c00120{left:501.506667pt;}
.xde_c00120{left:503.040000pt;}
.xa3_c00120{left:504.573333pt;}
.x5b_c00120{left:506.106667pt;}
.x19_c00120{left:507.653333pt;}
.xea_c00120{left:511.493333pt;}
.x8e_c00120{left:514.560000pt;}
.x110_c00120{left:518.400000pt;}
.xbb_c00120{left:522.240000pt;}
.x3_c00120{left:523.773333pt;}
.x122_c00120{left:527.613333pt;}
.xd4_c00120{left:530.693333pt;}
.xf7_c00120{left:532.226667pt;}
.xb_c00120{left:535.293333pt;}
.xb2_c00120{left:536.826667pt;}
.x38_c00120{left:538.373333pt;}
.x7f_c00120{left:539.906667pt;}
.x47_c00120{left:541.440000pt;}
.x1a_c00120{left:542.973333pt;}
.xc3_c00120{left:545.280000pt;}
.x7c_c00120{left:547.586667pt;}
.x27_c00120{left:551.426667pt;}
.x72_c00120{left:552.960000pt;}
.x10e_c00120{left:554.493333pt;}
.xd0_c00120{left:556.026667pt;}
.x48_c00120{left:558.333333pt;}
.x32_c00120{left:560.640000pt;}
.x50_c00120{left:562.173333pt;}
.xc4_c00120{left:563.706667pt;}
.x10c_c00120{left:567.546667pt;}
.xe6_c00120{left:569.853333pt;}
.x64_c00120{left:571.386667pt;}
.x104_c00120{left:572.933333pt;}
.x43_c00120{left:575.226667pt;}
.xc_c00120{left:577.533333pt;}
.x65_c00120{left:579.066667pt;}
.x94_c00120{left:581.373333pt;}
.x97_c00120{left:583.680000pt;}
.x39_c00120{left:586.746667pt;}
.x8f_c00120{left:588.293333pt;}
.x51_c00120{left:591.360000pt;}
.x90_c00120{left:593.666667pt;}
.xc9_c00120{left:595.200000pt;}
.x73_c00120{left:596.733333pt;}
.x80_c00120{left:598.266667pt;}
.xb3_c00120{left:600.573333pt;}
.xfd_c00120{left:604.413333pt;}
.x49_c00120{left:605.946667pt;}
.xeb_c00120{left:608.253333pt;}
.x52_c00120{left:610.560000pt;}
.x1b_c00120{left:612.866667pt;}
.x109_c00120{left:614.400000pt;}
.x3a_c00120{left:616.706667pt;}
.x28_c00120{left:619.013333pt;}
.xec_c00120{left:622.080000pt;}
.x1_c00120{left:624.386667pt;}
.x74_c00120{left:625.920000pt;}
.x118_c00120{left:627.453333pt;}
.x12c_c00120{left:628.986667pt;}
.xaa_c00120{left:631.293333pt;}
.x29_c00120{left:633.600000pt;}
.xc5_c00120{left:637.440000pt;}
.x98_c00120{left:638.973333pt;}
.x66_c00120{left:641.280000pt;}
.x53_c00120{left:642.813333pt;}
.x12b_c00120{left:645.120000pt;}
.x1c_c00120{left:648.186667pt;}
.x85_c00120{left:650.493333pt;}
.x4_c00120{left:652.800000pt;}
.xd5_c00120{left:656.640000pt;}
.x5c_c00120{left:658.173333pt;}
.x75_c00120{left:660.480000pt;}
.xd_c00120{left:664.320000pt;}
.xfe_c00120{left:665.853333pt;}
.x5_c00120{left:668.160000pt;}
.xdf_c00120{left:669.693333pt;}
.xc6_c00120{left:671.226667pt;}
.x54_c00120{left:672.773333pt;}
.x33_c00120{left:674.306667pt;}
.xf3_c00120{left:675.840000pt;}
.x10a_c00120{left:677.373333pt;}
.x67_c00120{left:678.906667pt;}
.xda_c00120{left:680.453333pt;}
.xc7_c00120{left:681.986667pt;}
.x102_c00120{left:683.520000pt;}
.x108_c00120{left:685.826667pt;}
.x6_c00120{left:687.360000pt;}
.x3b_c00120{left:688.893333pt;}
.x5d_c00120{left:691.200000pt;}
.xab_c00120{left:693.506667pt;}
.x7_c00120{left:697.346667pt;}
.xe3_c00120{left:699.653333pt;}
.xcd_c00120{left:701.186667pt;}
.x2_c00120{left:703.493333pt;}
.x2a_c00120{left:705.026667pt;}
.x5e_c00120{left:706.560000pt;}
.xd1_c00120{left:708.093333pt;}
.x55_c00120{left:709.626667pt;}
.x123_c00120{left:712.706667pt;}
.xac_c00120{left:714.240000pt;}
.x9b_c00120{left:715.773333pt;}
.x12e_c00120{left:718.853333pt;}
.x1d_c00120{left:721.920000pt;}
.x105_c00120{left:723.453333pt;}
.x2b_c00120{left:726.533333pt;}
.x68_c00120{left:728.826667pt;}
.xbe_c00120{left:732.666667pt;}
.x9c_c00120{left:735.746667pt;}
.x11d_c00120{left:738.053333pt;}
.xdb_c00120{left:740.346667pt;}
.x81_c00120{left:742.653333pt;}
.x76_c00120{left:744.960000pt;}
.xad_c00120{left:746.493333pt;}
.x12f_c00120{left:748.800000pt;}
.x69_c00120{left:750.333333pt;}
.x3c_c00120{left:752.640000pt;}
.xca_c00120{left:754.173333pt;}
.x1e_c00120{left:755.706667pt;}
.x91_c00120{left:757.253333pt;}
.x111_c00120{left:761.093333pt;}
.xee_c00120{left:763.386667pt;}
.xf8_c00120{left:764.933333pt;}
.x2c_c00120{left:767.226667pt;}
.xed_c00120{left:771.066667pt;}
.x92_c00120{left:773.373333pt;}
.x113_c00120{left:777.986667pt;}
.xff_c00120{left:779.520000pt;}
.xf4_c00120{left:781.053333pt;}
.x2d_c00120{left:782.586667pt;}
.x1f_c00120{left:784.133333pt;}
.x106_c00120{left:790.266667pt;}
.x9d_c00120{left:791.813333pt;}
.xe4_c00120{left:794.880000pt;}
.x119_c00120{left:798.720000pt;}
.x9e_c00120{left:802.560000pt;}
.xe7_c00120{left:804.093333pt;}
.x3d_c00120{left:806.400000pt;}
.xef_c00120{left:807.933333pt;}
.xae_c00120{left:811.773333pt;}
.x20_c00120{left:814.853333pt;}
.xf0_c00120{left:816.386667pt;}
.x11a_c00120{left:817.920000pt;}
.x114_c00120{left:819.453333pt;}
.x3e_c00120{left:823.293333pt;}
.x103_c00120{left:827.906667pt;}
.xe8_c00120{left:829.440000pt;}
.x6a_c00120{left:840.960000pt;}
.x136_c00120{left:875.520000pt;}
.x133_c00120{left:880.893333pt;}
.x137_c00120{left:885.506667pt;}
.x132_c00120{left:925.440000pt;}
.x134_c00120{left:949.253333pt;}
.x135_c00120{left:953.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_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;}
@font-face{font-family:ff1_c00121;src:url('chunks/assets/font_e4e02a771c159d15f7b1f25b.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.109863;font-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_c00121{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m36_c00121{transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);}
.m17e_c00121{transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);}
.m4f_c00121{transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);}
.m159_c00121{transform:matrix(0.067025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067025,0.000000,0.000000,0.250000,0,0);}
.m11b_c00121{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.md_c00121{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);}
.m11c_c00121{transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);}
.m18a_c00121{transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);}
.m10_c00121{transform:matrix(0.079350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079350,0.000000,0.000000,0.250000,0,0);}
.m9b_c00121{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m101_c00121{transform:matrix(0.086650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086650,0.000000,0.000000,0.250000,0,0);}
.m14e_c00121{transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00121{transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);}
.m1ba_c00121{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m149_c00121{transform:matrix(0.099850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099850,0.000000,0.000000,0.250000,0,0);}
.m148_c00121{transform:matrix(0.101450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101450,0.000000,0.000000,0.250000,0,0);}
.m147_c00121{transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);}
.m5c_c00121{transform:matrix(0.103550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103550,0.000000,0.000000,0.250000,0,0);}
.m14b_c00121{transform:matrix(0.104450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104450,0.000000,0.000000,0.250000,0,0);}
.m60_c00121{transform:matrix(0.104525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104525,0.000000,0.000000,0.250000,0,0);}
.m40_c00121{transform:matrix(0.105475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105475,0.000000,0.000000,0.250000,0,0);}
.m1b9_c00121{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m33_c00121{transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00121{transform:matrix(0.109600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109600,0.000000,0.000000,0.250000,0,0);}
.mb0_c00121{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m1bc_c00121{transform:matrix(0.115350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115350,0.000000,0.000000,0.250000,0,0);}
.m14c_c00121{transform:matrix(0.115875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115875,0.000000,0.000000,0.250000,0,0);}
.ma1_c00121{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m1bb_c00121{transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);}
.m12e_c00121{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.m127_c00121{transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);}
.m138_c00121{transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);}
.m38_c00121{transform:matrix(0.128325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128325,0.000000,0.000000,0.250000,0,0);}
.m19a_c00121{transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);}
.m10f_c00121{transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);}
.m131_c00121{transform:matrix(0.129875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129875,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00121{transform:matrix(0.130100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130100,0.000000,0.000000,0.250000,0,0);}
.m182_c00121{transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);}
.m14a_c00121{transform:matrix(0.132575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132575,0.000000,0.000000,0.250000,0,0);}
.m190_c00121{transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);}
.maf_c00121{transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);}
.m116_c00121{transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00121{transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);}
.m132_c00121{transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);}
.m56_c00121{transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);}
.m13c_c00121{transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);}
.m12b_c00121{transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);}
.m13e_c00121{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);}
.m1b3_c00121{transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);}
.m192_c00121{transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);}
.m61_c00121{transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);}
.mee_c00121{transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);}
.m108_c00121{transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);}
.m156_c00121{transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);}
.ma_c00121{transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);}
.m140_c00121{transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00121{transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);}
.m126_c00121{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);}
.m136_c00121{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m6_c00121{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m18c_c00121{transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00121{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);}
.m5_c00121{transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);}
.me4_c00121{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);}
.m157_c00121{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m19f_c00121{transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);}
.m3b_c00121{transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);}
.m197_c00121{transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);}
.m163_c00121{transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);}
.m152_c00121{transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00121{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m1c2_c00121{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m13f_c00121{transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00121{transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);}
.mcd_c00121{transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00121{transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);}
.m143_c00121{transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);}
.m1c0_c00121{transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);}
.ma3_c00121{transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);}
.m106_c00121{transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);}
.m12c_c00121{transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);}
.m1be_c00121{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.m5a_c00121{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m19b_c00121{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m14d_c00121{transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);}
.m160_c00121{transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);}
.m18d_c00121{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.m15d_c00121{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.m5e_c00121{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);}
.m5b_c00121{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);}
.m35_c00121{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);}
.m128_c00121{transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);}
.m13a_c00121{transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);}
.m154_c00121{transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);}
.m191_c00121{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m114_c00121{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00121{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);}
.m10c_c00121{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m185_c00121{transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);}
.m15a_c00121{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m9f_c00121{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m13b_c00121{transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);}
.meb_c00121{transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);}
.m86_c00121{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.m14f_c00121{transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);}
.m17c_c00121{transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);}
.m130_c00121{transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);}
.m199_c00121{transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00121{transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);}
.m133_c00121{transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);}
.m15f_c00121{transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);}
.m158_c00121{transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);}
.mc4_c00121{transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);}
.ma5_c00121{transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);}
.m150_c00121{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.m145_c00121{transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00121{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m43_c00121{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.mc2_c00121{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m82_c00121{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);}
.m15c_c00121{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);}
.mb4_c00121{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.m196_c00121{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);}
.m78_c00121{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);}
.m19c_c00121{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m4c_c00121{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.mec_c00121{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);}
.m105_c00121{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.md9_c00121{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m166_c00121{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m12d_c00121{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m179_c00121{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.ma2_c00121{transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);}
.m137_c00121{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);}
.md1_c00121{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);}
.m1ae_c00121{transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);}
.m118_c00121{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00121{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);}
.m1ac_c00121{transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);}
.m144_c00121{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m172_c00121{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);}
.m153_c00121{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.m9a_c00121{transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);}
.m165_c00121{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);}
.m10d_c00121{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);}
.md8_c00121{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m12a_c00121{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.m15e_c00121{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m175_c00121{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.m12f_c00121{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m19d_c00121{transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);}
.m142_c00121{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.m141_c00121{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);}
.m11f_c00121{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);}
.mba_c00121{transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00121{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00121{transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);}
.m42_c00121{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);}
.m99_c00121{transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);}
.mc5_c00121{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m189_c00121{transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);}
.mf8_c00121{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m63_c00121{transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);}
.m161_c00121{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);}
.m11_c00121{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m135_c00121{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m5f_c00121{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);}
.m62_c00121{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m170_c00121{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);}
.m168_c00121{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);}
.m1a1_c00121{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);}
.m174_c00121{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.m195_c00121{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m115_c00121{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);}
.ma0_c00121{transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);}
.m11a_c00121{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);}
.mb9_c00121{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.mf_c00121{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m124_c00121{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);}
.mf5_c00121{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.m13d_c00121{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);}
.m10e_c00121{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.m16d_c00121{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m15b_c00121{transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);}
.m17d_c00121{transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);}
.m58_c00121{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m146_c00121{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);}
.m41_c00121{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);}
.m16c_c00121{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.m1af_c00121{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.m17_c00121{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mb_c00121{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.mce_c00121{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);}
.mc8_c00121{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m71_c00121{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.mfe_c00121{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);}
.m34_c00121{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m98_c00121{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);}
.m90_c00121{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m177_c00121{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.m180_c00121{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.m122_c00121{transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);}
.m162_c00121{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);}
.m92_c00121{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);}
.m184_c00121{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m14_c00121{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.mfa_c00121{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00121{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.mbe_c00121{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.md6_c00121{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);}
.m1b8_c00121{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m4e_c00121{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);}
.m0_c00121{transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);}
.mf6_c00121{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.m12_c00121{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);}
.mf0_c00121{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);}
.me0_c00121{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.m193_c00121{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.med_c00121{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m97_c00121{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m8c_c00121{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.mf4_c00121{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m123_c00121{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);}
.m110_c00121{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);}
.m139_c00121{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);}
.mf2_c00121{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);}
.m6f_c00121{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.mb7_c00121{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);}
.ma7_c00121{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);}
.m53_c00121{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);}
.mff_c00121{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);}
.m18b_c00121{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);}
.mcf_c00121{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.mda_c00121{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);}
.m89_c00121{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m119_c00121{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);}
.m176_c00121{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m79_c00121{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m25_c00121{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m47_c00121{transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);}
.me6_c00121{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m109_c00121{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.mf9_c00121{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);}
.m6d_c00121{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);}
.m16f_c00121{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m3a_c00121{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);}
.m129_c00121{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);}
.me3_c00121{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m112_c00121{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m21_c00121{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);}
.m73_c00121{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.mc9_c00121{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);}
.m187_c00121{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);}
.m198_c00121{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.mcc_c00121{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);}
.m3d_c00121{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00121{transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);}
.m54_c00121{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);}
.mbd_c00121{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);}
.m84_c00121{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);}
.md0_c00121{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.me2_c00121{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.mc3_c00121{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.m8b_c00121{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);}
.m46_c00121{transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);}
.m95_c00121{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);}
.m103_c00121{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.m1c_c00121{transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);}
.m94_c00121{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m151_c00121{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m100_c00121{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m17b_c00121{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m26_c00121{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m87_c00121{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);}
.m113_c00121{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);}
.mdd_c00121{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);}
.mc7_c00121{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m117_c00121{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);}
.mde_c00121{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m15_c00121{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);}
.mc0_c00121{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m188_c00121{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);}
.m39_c00121{transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);}
.m7e_c00121{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);}
.m104_c00121{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.mb8_c00121{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.mae_c00121{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);}
.mea_c00121{transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00121{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.m10a_c00121{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);}
.md5_c00121{transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);}
.m16a_c00121{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m186_c00121{transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);}
.m80_c00121{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.m121_c00121{transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);}
.m44_c00121{transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);}
.m8a_c00121{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);}
.m111_c00121{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);}
.m4b_c00121{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m16_c00121{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);}
.m1a5_c00121{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);}
.m59_c00121{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);}
.md2_c00121{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.mf3_c00121{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);}
.m181_c00121{transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);}
.me8_c00121{transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);}
.m17f_c00121{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);}
.mac_c00121{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m8f_c00121{transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);}
.mc6_c00121{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);}
.m7c_c00121{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);}
.mb3_c00121{transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);}
.m88_c00121{transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);}
.me1_c00121{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);}
.m85_c00121{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);}
.m1a2_c00121{transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);}
.maa_c00121{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);}
.m18e_c00121{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.me9_c00121{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m1a_c00121{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);}
.mf7_c00121{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);}
.m171_c00121{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);}
.m125_c00121{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);}
.mdb_c00121{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m18f_c00121{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);}
.md4_c00121{transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);}
.m1f_c00121{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.m16e_c00121{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);}
.mfb_c00121{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);}
.mdf_c00121{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.m9c_c00121{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);}
.mbf_c00121{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);}
.mca_c00121{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m27_c00121{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);}
.m16b_c00121{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.mbb_c00121{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);}
.mad_c00121{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m45_c00121{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);}
.m5d_c00121{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m83_c00121{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);}
.mdc_c00121{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);}
.m7b_c00121{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);}
.m4d_c00121{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);}
.m6c_c00121{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00121{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m81_c00121{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00121{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);}
.m76_c00121{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00121{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);}
.m50_c00121{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);}
.m6b_c00121{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c00121{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);}
.m4_c00121{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00121{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00121{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);}
.m72_c00121{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m96_c00121{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);}
.m22_c00121{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);}
.mb1_c00121{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00121{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00121{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);}
.m3_c00121{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m55_c00121{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m57_c00121{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);}
.m70_c00121{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00121{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c00121{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c00121{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m68_c00121{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c00121{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00121{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00121{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00121{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);}
.m52_c00121{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00121{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2_c00121{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m75_c00121{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00121{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);}
.m7_c00121{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);}
.m49_c00121{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m18_c00121{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m120_c00121{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);}
.m8e_c00121{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m67_c00121{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00121{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00121{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00121{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);}
.m1b_c00121{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m194_c00121{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);}
.m167_c00121{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00121{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);}
.m164_c00121{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m30_c00121{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m134_c00121{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00121{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.md3_c00121{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);}
.m64_c00121{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);}
.m48_c00121{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);}
.mb5_c00121{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m74_c00121{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m69_c00121{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);}
.m65_c00121{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m9_c00121{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m178_c00121{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00121{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m66_c00121{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);}
.m13_c00121{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00121{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m51_c00121{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.md7_c00121{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00121{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m17a_c00121{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m19_c00121{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m32_c00121{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);}
.m1a8_c00121{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00121{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00121{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00121{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);}
.m9d_c00121{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m91_c00121{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.me5_c00121{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m77_c00121{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00121{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m29_c00121{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.mc_c00121{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m28_c00121{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.me7_c00121{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m183_c00121{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);}
.m3f_c00121{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m173_c00121{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m1c1_c00121{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00121{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.mab_c00121{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00121{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m8_c00121{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mef_c00121{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);}
.m169_c00121{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00121{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00121{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);}
.m155_c00121{transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);}
.m107_c00121{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00121{transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00121{transform:matrix(1.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.260000,0.000000,0.000000,0.250000,0,0);}
.m102_c00121{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m19e_c00121{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m93_c00121{transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00121{transform:matrix(1.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.780000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00121{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00121{transform:matrix(4.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.282500,0.000000,0.000000,0.250000,0,0);}
.m1bf_c00121{transform:matrix(5.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.152500,0.000000,0.000000,0.250000,0,0);}
.v2_c00121{vertical-align:-13.800000px;}
.v4_c00121{vertical-align:-3.480000px;}
.v0_c00121{vertical-align:0.000000px;}
.v1_c00121{vertical-align:3.420000px;}
.v3_c00121{vertical-align:13.800000px;}
.ls1_c00121{letter-spacing:0.000000px;}
.ls0_c00121{letter-spacing:26.718000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c00121{word-spacing:-13.041840px;}
.ws0_c00121{word-spacing:-12.422640px;}
.ws1_c00121{word-spacing:-9.793800px;}
.ws4_c00121{word-spacing:0.000000px;}
.ws2_c00121{word-spacing:243.195552px;}
.fc0_c00121{color:transparent;}
.fs12_c00121{font-size:3.456000px;}
.fs4_c00121{font-size:6.000000px;}
.fs2_c00121{font-size:6.900000px;}
.fs6_c00121{font-size:10.380000px;}
.fs11_c00121{font-size:13.800000px;}
.fs1b_c00121{font-size:17.280000px;}
.fsb_c00121{font-size:20.760000px;}
.fs5_c00121{font-size:24.180000px;}
.fsa_c00121{font-size:27.660000px;}
.fs10_c00121{font-size:31.080000px;}
.fs1_c00121{font-size:34.560000px;}
.fse_c00121{font-size:38.040000px;}
.fsd_c00121{font-size:41.460000px;}
.fs9_c00121{font-size:44.940000px;}
.fs0_c00121{font-size:48.360000px;}
.fs7_c00121{font-size:51.840000px;}
.fsf_c00121{font-size:55.320000px;}
.fsc_c00121{font-size:58.740000px;}
.fs8_c00121{font-size:62.220000px;}
.fs3_c00121{font-size:65.640000px;}
.fs1c_c00121{font-size:69.120000px;}
.fs13_c00121{font-size:72.600000px;}
.fs14_c00121{font-size:76.020000px;}
.fs1e_c00121{font-size:79.500000px;}
.fs17_c00121{font-size:82.920000px;}
.fs1a_c00121{font-size:86.400000px;}
.fs15_c00121{font-size:89.880000px;}
.fs19_c00121{font-size:93.300000px;}
.fs1d_c00121{font-size:96.780000px;}
.fs1f_c00121{font-size:100.200000px;}
.fs20_c00121{font-size:103.680000px;}
.fs16_c00121{font-size:107.160000px;}
.fs18_c00121{font-size:114.060000px;}
.y0_c00121{bottom:0.000000px;}
.y226_c00121{bottom:207.360000px;}
.y225_c00121{bottom:209.955000px;}
.y224_c00121{bottom:212.550000px;}
.y221_c00121{bottom:220.320000px;}
.y220_c00121{bottom:222.045000px;}
.y21b_c00121{bottom:223.770000px;}
.y222_c00121{bottom:224.640000px;}
.y223_c00121{bottom:225.510000px;}
.y21c_c00121{bottom:227.235000px;}
.y21d_c00121{bottom:228.090000px;}
.y21e_c00121{bottom:229.830000px;}
.y21a_c00121{bottom:235.875000px;}
.y21f_c00121{bottom:247.110000px;}
.y214_c00121{bottom:249.690000px;}
.y215_c00121{bottom:250.560000px;}
.y217_c00121{bottom:251.430000px;}
.y219_c00121{bottom:252.285000px;}
.y216_c00121{bottom:253.155000px;}
.y213_c00121{bottom:254.880000px;}
.y212_c00121{bottom:256.605000px;}
.y218_c00121{bottom:257.475000px;}
.y208_c00121{bottom:264.390000px;}
.y207_c00121{bottom:265.245000px;}
.y20b_c00121{bottom:266.970000px;}
.y209_c00121{bottom:267.840000px;}
.y20e_c00121{bottom:268.710000px;}
.y20f_c00121{bottom:269.565000px;}
.y210_c00121{bottom:270.435000px;}
.y20a_c00121{bottom:271.290000px;}
.y206_c00121{bottom:272.160000px;}
.y20d_c00121{bottom:273.885000px;}
.y211_c00121{bottom:275.610000px;}
.y1fb_c00121{bottom:285.990000px;}
.y20c_c00121{bottom:286.845000px;}
.y1fd_c00121{bottom:287.715000px;}
.y1fe_c00121{bottom:288.570000px;}
.y202_c00121{bottom:291.165000px;}
.y200_c00121{bottom:292.035000px;}
.y1fc_c00121{bottom:292.890000px;}
.y1ff_c00121{bottom:293.760000px;}
.y204_c00121{bottom:296.355000px;}
.y203_c00121{bottom:297.210000px;}
.y201_c00121{bottom:298.080000px;}
.y205_c00121{bottom:298.950000px;}
.y1ee_c00121{bottom:300.675000px;}
.y1ef_c00121{bottom:301.530000px;}
.y1f4_c00121{bottom:304.995000px;}
.y1f3_c00121{bottom:305.850000px;}
.y1f5_c00121{bottom:307.590000px;}
.y1f0_c00121{bottom:308.445000px;}
.y1f2_c00121{bottom:309.315000px;}
.y1f8_c00121{bottom:310.170000px;}
.y1fa_c00121{bottom:311.040000px;}
.y1f7_c00121{bottom:311.910000px;}
.y1f1_c00121{bottom:312.765000px;}
.y1f9_c00121{bottom:314.490000px;}
.y1f6_c00121{bottom:315.360000px;}
.y1e1_c00121{bottom:325.725000px;}
.y1e2_c00121{bottom:326.595000px;}
.y1e5_c00121{bottom:327.450000px;}
.y1e4_c00121{bottom:328.320000px;}
.y1e6_c00121{bottom:329.190000px;}
.y1ea_c00121{bottom:330.045000px;}
.y1e9_c00121{bottom:330.915000px;}
.y1eb_c00121{bottom:331.770000px;}
.y1e3_c00121{bottom:332.640000px;}
.y1e7_c00121{bottom:333.510000px;}
.y1ec_c00121{bottom:335.235000px;}
.y1e8_c00121{bottom:336.960000px;}
.y1ed_c00121{bottom:338.685000px;}
.y1db_c00121{bottom:348.195000px;}
.y1da_c00121{bottom:349.050000px;}
.y1dc_c00121{bottom:349.920000px;}
.y1e0_c00121{bottom:351.645000px;}
.y1dd_c00121{bottom:353.370000px;}
.y1de_c00121{bottom:354.240000px;}
.y1d9_c00121{bottom:355.110000px;}
.y1df_c00121{bottom:355.965000px;}
.y1d8_c00121{bottom:358.560000px;}
.y1d0_c00121{bottom:368.070000px;}
.y1d1_c00121{bottom:368.925000px;}
.y1d4_c00121{bottom:369.795000px;}
.y1d2_c00121{bottom:371.520000px;}
.y1d7_c00121{bottom:372.390000px;}
.y1cf_c00121{bottom:373.245000px;}
.y1ce_c00121{bottom:374.115000px;}
.y1d3_c00121{bottom:374.970000px;}
.y1d6_c00121{bottom:375.840000px;}
.y1d5_c00121{bottom:378.435000px;}
.y1c5_c00121{bottom:388.800000px;}
.y1c9_c00121{bottom:389.670000px;}
.y1c7_c00121{bottom:390.525000px;}
.y1c6_c00121{bottom:392.250000px;}
.y1c4_c00121{bottom:393.120000px;}
.y1cb_c00121{bottom:394.845000px;}
.y1c8_c00121{bottom:395.715000px;}
.y1ca_c00121{bottom:396.570000px;}
.y1cc_c00121{bottom:397.440000px;}
.y1cd_c00121{bottom:398.310000px;}
.y1c3_c00121{bottom:399.165000px;}
.y1bb_c00121{bottom:409.530000px;}
.y1bc_c00121{bottom:410.400000px;}
.y1bd_c00121{bottom:411.270000px;}
.y1c1_c00121{bottom:412.995000px;}
.y1c0_c00121{bottom:413.850000px;}
.y1be_c00121{bottom:415.590000px;}
.y1bf_c00121{bottom:418.170000px;}
.y1c2_c00121{bottom:419.910000px;}
.y1b6_c00121{bottom:431.130000px;}
.y1ba_c00121{bottom:432.000000px;}
.y1b7_c00121{bottom:432.870000px;}
.y1b9_c00121{bottom:433.725000px;}
.y1b8_c00121{bottom:435.450000px;}
.y1b1_c00121{bottom:447.555000px;}
.y1b5_c00121{bottom:450.150000px;}
.y1b2_c00121{bottom:451.005000px;}
.y1b4_c00121{bottom:462.240000px;}
.y1b3_c00121{bottom:463.110000px;}
.y1a7_c00121{bottom:468.285000px;}
.y1a9_c00121{bottom:469.155000px;}
.y1aa_c00121{bottom:470.010000px;}
.y1ad_c00121{bottom:471.750000px;}
.y1ac_c00121{bottom:472.605000px;}
.y1a8_c00121{bottom:473.475000px;}
.y1af_c00121{bottom:475.200000px;}
.y1ae_c00121{bottom:476.070000px;}
.y1b0_c00121{bottom:478.650000px;}
.y1ab_c00121{bottom:482.115000px;}
.y19f_c00121{bottom:488.160000px;}
.y1a0_c00121{bottom:489.030000px;}
.y1a2_c00121{bottom:492.480000px;}
.y1a6_c00121{bottom:493.350000px;}
.y1a5_c00121{bottom:495.075000px;}
.y1a4_c00121{bottom:495.930000px;}
.y1a3_c00121{bottom:496.800000px;}
.y1a1_c00121{bottom:502.845000px;}
.y196_c00121{bottom:508.035000px;}
.y197_c00121{bottom:508.890000px;}
.y198_c00121{bottom:511.485000px;}
.y19a_c00121{bottom:512.355000px;}
.y19b_c00121{bottom:513.210000px;}
.y19c_c00121{bottom:514.080000px;}
.y19d_c00121{bottom:514.950000px;}
.y19e_c00121{bottom:515.805000px;}
.y199_c00121{bottom:518.400000px;}
.y18f_c00121{bottom:524.445000px;}
.y190_c00121{bottom:526.170000px;}
.y191_c00121{bottom:527.910000px;}
.y192_c00121{bottom:528.765000px;}
.y193_c00121{bottom:529.635000px;}
.y194_c00121{bottom:531.360000px;}
.y195_c00121{bottom:533.085000px;}
.y18e_c00121{bottom:534.810000px;}
.y189_c00121{bottom:550.365000px;}
.y18a_c00121{bottom:552.960000px;}
.y18b_c00121{bottom:553.830000px;}
.y18c_c00121{bottom:554.685000px;}
.y184_c00121{bottom:567.645000px;}
.y18d_c00121{bottom:569.370000px;}
.y187_c00121{bottom:571.965000px;}
.y185_c00121{bottom:572.835000px;}
.y188_c00121{bottom:574.560000px;}
.y186_c00121{bottom:583.200000px;}
.y17f_c00121{bottom:590.970000px;}
.y180_c00121{bottom:595.290000px;}
.y17e_c00121{bottom:596.160000px;}
.y181_c00121{bottom:597.030000px;}
.y183_c00121{bottom:597.885000px;}
.y182_c00121{bottom:600.480000px;}
.y177_c00121{bottom:609.120000px;}
.y178_c00121{bottom:613.440000px;}
.y17d_c00121{bottom:615.165000px;}
.y179_c00121{bottom:616.035000px;}
.y17a_c00121{bottom:616.890000px;}
.y17b_c00121{bottom:622.080000px;}
.y2e_c00121{bottom:623.805000px;}
.y17c_c00121{bottom:624.675000px;}
.y2d_c00121{bottom:626.400000px;}
.y173_c00121{bottom:631.590000px;}
.y175_c00121{bottom:632.445000px;}
.y174_c00121{bottom:634.170000px;}
.y2f_c00121{bottom:635.040000px;}
.y176_c00121{bottom:636.765000px;}
.y2c_c00121{bottom:639.360000px;}
.y2b_c00121{bottom:641.085000px;}
.y2a_c00121{bottom:650.595000px;}
.y29_c00121{bottom:652.320000px;}
.y16d_c00121{bottom:654.915000px;}
.y170_c00121{bottom:655.770000px;}
.y171_c00121{bottom:657.510000px;}
.y172_c00121{bottom:659.235000px;}
.y16e_c00121{bottom:660.090000px;}
.y27_c00121{bottom:666.150000px;}
.y16f_c00121{bottom:667.875000px;}
.y16a_c00121{bottom:673.920000px;}
.y28_c00121{bottom:676.515000px;}
.y169_c00121{bottom:677.370000px;}
.y16c_c00121{bottom:679.110000px;}
.y26_c00121{bottom:679.965000px;}
.y16b_c00121{bottom:682.560000px;}
.y25_c00121{bottom:683.430000px;}
.y167_c00121{bottom:691.200000px;}
.y166_c00121{bottom:692.070000px;}
.y15c_c00121{bottom:692.925000px;}
.y15e_c00121{bottom:693.795000px;}
.y15f_c00121{bottom:694.650000px;}
.y23_c00121{bottom:695.520000px;}
.y15d_c00121{bottom:696.390000px;}
.y24_c00121{bottom:697.245000px;}
.y168_c00121{bottom:698.970000px;}
.y163_c00121{bottom:700.710000px;}
.y162_c00121{bottom:701.565000px;}
.y164_c00121{bottom:702.435000px;}
.y165_c00121{bottom:703.290000px;}
.y160_c00121{bottom:707.610000px;}
.y22_c00121{bottom:708.480000px;}
.y161_c00121{bottom:709.350000px;}
.y15b_c00121{bottom:710.205000px;}
.y152_c00121{bottom:711.930000px;}
.y21_c00121{bottom:712.800000px;}
.y153_c00121{bottom:714.525000px;}
.y155_c00121{bottom:715.395000px;}
.y154_c00121{bottom:716.250000px;}
.y156_c00121{bottom:717.120000px;}
.y158_c00121{bottom:717.990000px;}
.y15a_c00121{bottom:719.715000px;}
.y157_c00121{bottom:720.570000px;}
.y20_c00121{bottom:723.165000px;}
.y1f_c00121{bottom:726.630000px;}
.y159_c00121{bottom:728.355000px;}
.y14d_c00121{bottom:733.530000px;}
.y14e_c00121{bottom:734.400000px;}
.y14f_c00121{bottom:735.270000px;}
.y1d_c00121{bottom:736.125000px;}
.y14b_c00121{bottom:736.995000px;}
.y151_c00121{bottom:737.850000px;}
.y14c_c00121{bottom:739.590000px;}
.y1c_c00121{bottom:740.445000px;}
.y1e_c00121{bottom:741.315000px;}
.y150_c00121{bottom:747.360000px;}
.y14a_c00121{bottom:749.085000px;}
.y1a_c00121{bottom:749.955000px;}
.y142_c00121{bottom:750.810000px;}
.y1b_c00121{bottom:751.680000px;}
.y143_c00121{bottom:753.405000px;}
.y144_c00121{bottom:756.000000px;}
.y147_c00121{bottom:756.870000px;}
.y145_c00121{bottom:757.725000px;}
.y146_c00121{bottom:762.045000px;}
.y149_c00121{bottom:762.915000px;}
.y138_c00121{bottom:768.960000px;}
.y137_c00121{bottom:770.685000px;}
.y148_c00121{bottom:773.280000px;}
.y13c_c00121{bottom:774.150000px;}
.y13a_c00121{bottom:775.005000px;}
.y140_c00121{bottom:775.875000px;}
.y13b_c00121{bottom:776.730000px;}
.y139_c00121{bottom:777.600000px;}
.y13d_c00121{bottom:778.470000px;}
.y13f_c00121{bottom:779.325000px;}
.y13e_c00121{bottom:780.195000px;}
.y141_c00121{bottom:789.690000px;}
.y12f_c00121{bottom:791.430000px;}
.y130_c00121{bottom:792.285000px;}
.y12e_c00121{bottom:793.155000px;}
.y132_c00121{bottom:794.010000px;}
.y133_c00121{bottom:795.750000px;}
.y131_c00121{bottom:796.605000px;}
.y136_c00121{bottom:797.475000px;}
.y134_c00121{bottom:799.200000px;}
.y135_c00121{bottom:800.925000px;}
.y125_c00121{bottom:809.565000px;}
.y127_c00121{bottom:811.290000px;}
.y129_c00121{bottom:813.030000px;}
.y128_c00121{bottom:813.885000px;}
.y12a_c00121{bottom:814.755000px;}
.y12c_c00121{bottom:815.610000px;}
.y126_c00121{bottom:816.480000px;}
.y12b_c00121{bottom:819.930000px;}
.y12d_c00121{bottom:825.990000px;}
.y11e_c00121{bottom:830.310000px;}
.y11d_c00121{bottom:832.035000px;}
.y11c_c00121{bottom:832.890000px;}
.y124_c00121{bottom:833.760000px;}
.y11f_c00121{bottom:835.485000px;}
.y120_c00121{bottom:836.355000px;}
.y121_c00121{bottom:838.080000px;}
.y123_c00121{bottom:838.950000px;}
.y122_c00121{bottom:841.530000px;}
.y119_c00121{bottom:852.765000px;}
.y115_c00121{bottom:853.635000px;}
.y112_c00121{bottom:854.490000px;}
.y114_c00121{bottom:856.230000px;}
.y113_c00121{bottom:857.085000px;}
.y117_c00121{bottom:857.955000px;}
.y118_c00121{bottom:858.810000px;}
.y11b_c00121{bottom:860.550000px;}
.y11a_c00121{bottom:861.405000px;}
.y116_c00121{bottom:862.275000px;}
.y10a_c00121{bottom:870.915000px;}
.y10b_c00121{bottom:873.510000px;}
.y10c_c00121{bottom:874.365000px;}
.y10f_c00121{bottom:875.235000px;}
.y109_c00121{bottom:876.090000px;}
.y10d_c00121{bottom:876.960000px;}
.y10e_c00121{bottom:878.685000px;}
.y110_c00121{bottom:880.410000px;}
.y111_c00121{bottom:881.280000px;}
.y105_c00121{bottom:892.515000px;}
.y102_c00121{bottom:893.370000px;}
.y108_c00121{bottom:895.965000px;}
.y104_c00121{bottom:896.835000px;}
.y103_c00121{bottom:897.690000px;}
.y106_c00121{bottom:900.285000px;}
.y107_c00121{bottom:901.155000px;}
.yfe_c00121{bottom:912.390000px;}
.yfd_c00121{bottom:913.245000px;}
.yfc_c00121{bottom:914.115000px;}
.yff_c00121{bottom:915.840000px;}
.yfb_c00121{bottom:916.710000px;}
.yfa_c00121{bottom:917.565000px;}
.y101_c00121{bottom:918.435000px;}
.y100_c00121{bottom:921.030000px;}
.yf3_c00121{bottom:933.990000px;}
.yf4_c00121{bottom:934.845000px;}
.yf1_c00121{bottom:937.440000px;}
.yf2_c00121{bottom:938.310000px;}
.yf5_c00121{bottom:939.165000px;}
.yf8_c00121{bottom:940.035000px;}
.yf6_c00121{bottom:940.890000px;}
.yf9_c00121{bottom:942.630000px;}
.yf7_c00121{bottom:951.270000px;}
.yeb_c00121{bottom:953.850000px;}
.ye9_c00121{bottom:954.720000px;}
.yec_c00121{bottom:955.590000px;}
.yee_c00121{bottom:956.445000px;}
.yea_c00121{bottom:957.315000px;}
.yf0_c00121{bottom:959.040000px;}
.yed_c00121{bottom:960.765000px;}
.yef_c00121{bottom:962.490000px;}
.ye2_c00121{bottom:972.000000px;}
.ye6_c00121{bottom:974.595000px;}
.ye7_c00121{bottom:977.190000px;}
.ye8_c00121{bottom:978.045000px;}
.ye3_c00121{bottom:978.915000px;}
.ye4_c00121{bottom:980.640000px;}
.ye5_c00121{bottom:981.510000px;}
.yda_c00121{bottom:994.470000px;}
.ydd_c00121{bottom:995.325000px;}
.ydf_c00121{bottom:997.050000px;}
.ydb_c00121{bottom:997.920000px;}
.ydc_c00121{bottom:998.790000px;}
.ye1_c00121{bottom:1000.515000px;}
.yde_c00121{bottom:1001.370000px;}
.ye0_c00121{bottom:1003.965000px;}
.yd4_c00121{bottom:1017.795000px;}
.yd5_c00121{bottom:1018.650000px;}
.yd7_c00121{bottom:1020.390000px;}
.yd6_c00121{bottom:1021.245000px;}
.yd8_c00121{bottom:1024.710000px;}
.yd9_c00121{bottom:1029.030000px;}
.ycc_c00121{bottom:1034.205000px;}
.ycb_c00121{bottom:1036.800000px;}
.yd0_c00121{bottom:1037.670000px;}
.yd3_c00121{bottom:1039.395000px;}
.ycd_c00121{bottom:1040.250000px;}
.yce_c00121{bottom:1041.120000px;}
.ycf_c00121{bottom:1041.990000px;}
.yd1_c00121{bottom:1042.845000px;}
.yd2_c00121{bottom:1044.570000px;}
.yc1_c00121{bottom:1054.080000px;}
.ybf_c00121{bottom:1054.950000px;}
.yc2_c00121{bottom:1055.805000px;}
.yc3_c00121{bottom:1057.530000px;}
.yc0_c00121{bottom:1059.270000px;}
.yc9_c00121{bottom:1060.125000px;}
.yc6_c00121{bottom:1060.995000px;}
.yc4_c00121{bottom:1061.850000px;}
.yc5_c00121{bottom:1062.720000px;}
.yc7_c00121{bottom:1063.590000px;}
.yc8_c00121{bottom:1064.445000px;}
.yca_c00121{bottom:1071.360000px;}
.yb6_c00121{bottom:1076.550000px;}
.yb8_c00121{bottom:1079.130000px;}
.yb7_c00121{bottom:1080.000000px;}
.ybd_c00121{bottom:1080.870000px;}
.ybc_c00121{bottom:1081.725000px;}
.yba_c00121{bottom:1082.595000px;}
.yb9_c00121{bottom:1083.450000px;}
.ybb_c00121{bottom:1084.320000px;}
.ybe_c00121{bottom:1088.640000px;}
.yab_c00121{bottom:1089.510000px;}
.yb1_c00121{bottom:1091.235000px;}
.yac_c00121{bottom:1092.090000px;}
.yb2_c00121{bottom:1094.685000px;}
.yb3_c00121{bottom:1097.280000px;}
.yaf_c00121{bottom:1098.150000px;}
.yaa_c00121{bottom:1099.005000px;}
.yad_c00121{bottom:1099.875000px;}
.yae_c00121{bottom:1100.730000px;}
.yb0_c00121{bottom:1101.600000px;}
.yb4_c00121{bottom:1105.920000px;}
.yb5_c00121{bottom:1106.790000px;}
.ya3_c00121{bottom:1115.430000px;}
.ya5_c00121{bottom:1117.155000px;}
.ya1_c00121{bottom:1118.880000px;}
.ya7_c00121{bottom:1119.750000px;}
.ya2_c00121{bottom:1120.605000px;}
.ya8_c00121{bottom:1121.475000px;}
.ya4_c00121{bottom:1122.330000px;}
.ya6_c00121{bottom:1124.070000px;}
.ya0_c00121{bottom:1125.795000px;}
.y98_c00121{bottom:1137.030000px;}
.y9a_c00121{bottom:1137.885000px;}
.y99_c00121{bottom:1138.755000px;}
.ya9_c00121{bottom:1139.610000px;}
.y97_c00121{bottom:1140.480000px;}
.y9f_c00121{bottom:1141.350000px;}
.y9d_c00121{bottom:1142.205000px;}
.y9b_c00121{bottom:1143.930000px;}
.y9c_c00121{bottom:1144.800000px;}
.y9e_c00121{bottom:1147.395000px;}
.y8d_c00121{bottom:1156.890000px;}
.y90_c00121{bottom:1158.630000px;}
.y93_c00121{bottom:1160.355000px;}
.y8e_c00121{bottom:1162.080000px;}
.y8f_c00121{bottom:1162.950000px;}
.y92_c00121{bottom:1165.530000px;}
.y95_c00121{bottom:1166.400000px;}
.y94_c00121{bottom:1167.270000px;}
.y96_c00121{bottom:1168.995000px;}
.y91_c00121{bottom:1170.720000px;}
.y83_c00121{bottom:1176.765000px;}
.y85_c00121{bottom:1177.635000px;}
.y88_c00121{bottom:1178.490000px;}
.y82_c00121{bottom:1179.360000px;}
.y87_c00121{bottom:1180.230000px;}
.y81_c00121{bottom:1181.085000px;}
.y89_c00121{bottom:1181.955000px;}
.y84_c00121{bottom:1182.810000px;}
.y86_c00121{bottom:1183.680000px;}
.y8c_c00121{bottom:1184.550000px;}
.y8a_c00121{bottom:1186.275000px;}
.y8b_c00121{bottom:1188.000000px;}
.y78_c00121{bottom:1197.510000px;}
.y7a_c00121{bottom:1199.235000px;}
.y79_c00121{bottom:1201.830000px;}
.y7d_c00121{bottom:1202.685000px;}
.y7b_c00121{bottom:1203.555000px;}
.y7c_c00121{bottom:1204.410000px;}
.y7e_c00121{bottom:1206.150000px;}
.y80_c00121{bottom:1207.005000px;}
.y7f_c00121{bottom:1213.920000px;}
.y19_c00121{bottom:1215.645000px;}
.y70_c00121{bottom:1217.370000px;}
.y6f_c00121{bottom:1219.965000px;}
.y72_c00121{bottom:1220.835000px;}
.y75_c00121{bottom:1222.560000px;}
.y71_c00121{bottom:1223.430000px;}
.y73_c00121{bottom:1224.285000px;}
.y74_c00121{bottom:1225.155000px;}
.y76_c00121{bottom:1226.010000px;}
.y17_c00121{bottom:1226.880000px;}
.y18_c00121{bottom:1227.750000px;}
.y77_c00121{bottom:1235.520000px;}
.y229_c00121{bottom:1237.245000px;}
.y6b_c00121{bottom:1238.970000px;}
.y68_c00121{bottom:1239.840000px;}
.y16_c00121{bottom:1241.565000px;}
.y6d_c00121{bottom:1242.435000px;}
.y69_c00121{bottom:1243.290000px;}
.y6a_c00121{bottom:1245.030000px;}
.y6c_c00121{bottom:1245.885000px;}
.y6e_c00121{bottom:1247.610000px;}
.y13_c00121{bottom:1256.250000px;}
.y63_c00121{bottom:1259.715000px;}
.y14_c00121{bottom:1260.570000px;}
.y15_c00121{bottom:1261.440000px;}
.y62_c00121{bottom:1262.310000px;}
.y64_c00121{bottom:1264.035000px;}
.y66_c00121{bottom:1264.890000px;}
.y65_c00121{bottom:1265.760000px;}
.y67_c00121{bottom:1266.630000px;}
.y12_c00121{bottom:1267.485000px;}
.y11_c00121{bottom:1268.355000px;}
.y59_c00121{bottom:1274.400000px;}
.y5a_c00121{bottom:1276.125000px;}
.y5d_c00121{bottom:1276.995000px;}
.y61_c00121{bottom:1278.720000px;}
.y60_c00121{bottom:1279.590000px;}
.y5c_c00121{bottom:1280.445000px;}
.y5f_c00121{bottom:1283.910000px;}
.y10_c00121{bottom:1284.765000px;}
.y5b_c00121{bottom:1285.635000px;}
.ye_c00121{bottom:1286.490000px;}
.y5e_c00121{bottom:1287.360000px;}
.yd_c00121{bottom:1289.085000px;}
.yf_c00121{bottom:1289.955000px;}
.y52_c00121{bottom:1293.405000px;}
.y54_c00121{bottom:1300.320000px;}
.yb_c00121{bottom:1301.190000px;}
.y56_c00121{bottom:1302.045000px;}
.y53_c00121{bottom:1302.915000px;}
.ya_c00121{bottom:1303.770000px;}
.yc_c00121{bottom:1306.365000px;}
.y55_c00121{bottom:1307.235000px;}
.y58_c00121{bottom:1308.090000px;}
.y57_c00121{bottom:1308.960000px;}
.y9_c00121{bottom:1311.555000px;}
.y8_c00121{bottom:1317.600000px;}
.y48_c00121{bottom:1318.470000px;}
.y49_c00121{bottom:1319.325000px;}
.y47_c00121{bottom:1320.195000px;}
.y4a_c00121{bottom:1321.050000px;}
.y7_c00121{bottom:1321.920000px;}
.y4f_c00121{bottom:1323.645000px;}
.y4e_c00121{bottom:1324.515000px;}
.y4d_c00121{bottom:1325.370000px;}
.y6_c00121{bottom:1326.240000px;}
.y4c_c00121{bottom:1327.110000px;}
.y4b_c00121{bottom:1327.965000px;}
.y5_c00121{bottom:1328.835000px;}
.y51_c00121{bottom:1332.285000px;}
.y50_c00121{bottom:1336.605000px;}
.y41_c00121{bottom:1337.475000px;}
.y43_c00121{bottom:1338.330000px;}
.y42_c00121{bottom:1340.925000px;}
.y46_c00121{bottom:1342.650000px;}
.y2_c00121{bottom:1343.520000px;}
.y3_c00121{bottom:1344.390000px;}
.y4_c00121{bottom:1346.115000px;}
.y45_c00121{bottom:1346.970000px;}
.y44_c00121{bottom:1357.350000px;}
.y1_c00121{bottom:1358.205000px;}
.y38_c00121{bottom:1359.075000px;}
.y36_c00121{bottom:1361.670000px;}
.y3c_c00121{bottom:1362.525000px;}
.y37_c00121{bottom:1363.395000px;}
.y39_c00121{bottom:1365.120000px;}
.y3a_c00121{bottom:1367.715000px;}
.y3b_c00121{bottom:1368.570000px;}
.y3d_c00121{bottom:1369.440000px;}
.y40_c00121{bottom:1380.675000px;}
.y3e_c00121{bottom:1388.445000px;}
.y33_c00121{bottom:1391.040000px;}
.y34_c00121{bottom:1392.765000px;}
.y3f_c00121{bottom:1393.635000px;}
.y35_c00121{bottom:1394.490000px;}
.y227_c00121{bottom:1404.870000px;}
.y30_c00121{bottom:1405.725000px;}
.y228_c00121{bottom:1406.595000px;}
.y31_c00121{bottom:1412.640000px;}
.y32_c00121{bottom:1413.510000px;}
.h14_c00121{height:3.110063px;}
.h6_c00121{height:5.399414px;}
.h4_c00121{height:6.209326px;}
.h8_c00121{height:9.340986px;}
.h13_c00121{height:12.418652px;}
.h1d_c00121{height:15.550313px;}
.hd_c00121{height:18.681973px;}
.h7_c00121{height:21.759639px;}
.hc_c00121{height:24.891299px;}
.h12_c00121{height:27.968965px;}
.h3_c00121{height:31.100625px;}
.h10_c00121{height:34.232285px;}
.hf_c00121{height:37.309951px;}
.hb_c00121{height:40.441611px;}
.h2_c00121{height:43.519277px;}
.h9_c00121{height:46.650937px;}
.h11_c00121{height:49.782598px;}
.h20_c00121{height:50.070938px;}
.he_c00121{height:52.860264px;}
.ha_c00121{height:55.991924px;}
.h5_c00121{height:59.069590px;}
.h1e_c00121{height:62.201250px;}
.h15_c00121{height:65.332910px;}
.h22_c00121{height:66.660264px;}
.h16_c00121{height:68.410576px;}
.h21_c00121{height:71.542236px;}
.h19_c00121{height:74.619902px;}
.h1c_c00121{height:77.751563px;}
.h17_c00121{height:80.883223px;}
.h1b_c00121{height:83.960889px;}
.h1f_c00121{height:87.092549px;}
.h23_c00121{height:90.170215px;}
.h24_c00121{height:93.301875px;}
.h18_c00121{height:96.433535px;}
.h1a_c00121{height:102.642861px;}
.h1_c00121{height:1503.000000px;}
.h0_c00121{height:1503.360000px;}
.w0_c00121{width:1088.640000px;}
.w1_c00121{width:1089.000000px;}
.x0_c00121{left:0.000000px;}
.x10_c00121{left:1.725000px;}
.xe_c00121{left:3.450000px;}
.x2_c00121{left:5.190000px;}
.x1_c00121{left:6.915000px;}
.x6_c00121{left:8.640000px;}
.xc_c00121{left:19.005000px;}
.x5_c00121{left:22.470000px;}
.xd_c00121{left:29.370000px;}
.x7_c00121{left:31.965000px;}
.x3_c00121{left:33.690000px;}
.x9_c00121{left:38.010000px;}
.xb_c00121{left:48.390000px;}
.x4_c00121{left:51.840000px;}
.x8_c00121{left:57.030000px;}
.xa_c00121{left:58.755000px;}
.xf_c00121{left:75.165000px;}
.x135_c00121{left:139.965000px;}
.x136_c00121{left:144.285000px;}
.x127_c00121{left:158.970000px;}
.x120_c00121{left:162.435000px;}
.x17_c00121{left:165.885000px;}
.x124_c00121{left:169.350000px;}
.x12c_c00121{left:175.395000px;}
.xe3_c00121{left:177.120000px;}
.xe6_c00121{left:182.310000px;}
.xeb_c00121{left:186.630000px;}
.x85_c00121{left:192.675000px;}
.xef_c00121{left:194.400000px;}
.x128_c00121{left:198.720000px;}
.x30_c00121{left:200.445000px;}
.x3f_c00121{left:204.765000px;}
.x8a_c00121{left:208.230000px;}
.xca_c00121{left:210.810000px;}
.x11b_c00121{left:215.130000px;}
.xe7_c00121{left:217.725000px;}
.x31_c00121{left:220.319592px;}
.x65_c00121{left:222.045000px;}
.x48_c00121{left:224.640000px;}
.x32_c00121{left:227.235000px;}
.x18_c00121{left:228.960000px;}
.x110_c00121{left:230.685000px;}
.x131_c00121{left:238.459224px;}
.x12d_c00121{left:240.195000px;}
.xcb_c00121{left:241.920000px;}
.x94_c00121{left:243.645000px;}
.x132_c00121{left:246.240000px;}
.xa2_c00121{left:252.285000px;}
.x8b_c00121{left:254.880000px;}
.xc4_c00121{left:258.330000px;}
.xbe_c00121{left:260.070000px;}
.xe8_c00121{left:261.795000px;}
.xcc_c00121{left:263.520000px;}
.x19_c00121{left:265.245000px;}
.x52_c00121{left:270.435000px;}
.x49_c00121{left:273.030000px;}
.x6d_c00121{left:275.610000px;}
.xf4_c00121{left:278.205000px;}
.x112_c00121{left:280.800000px;}
.x28_c00121{left:283.395000px;}
.xb7_c00121{left:285.120000px;}
.x6e_c00121{left:286.845000px;}
.x95_c00121{left:290.310000px;}
.x107_c00121{left:292.035000px;}
.x40_c00121{left:293.760000px;}
.x8c_c00121{left:295.485000px;}
.x9d_c00121{left:298.080000px;}
.x12e_c00121{left:300.675000px;}
.xdf_c00121{left:304.125000px;}
.xb9_c00121{left:306.720000px;}
.x66_c00121{left:308.445000px;}
.xd6_c00121{left:311.910000px;}
.xe0_c00121{left:313.635000px;}
.x6f_c00121{left:315.360000px;}
.x73_c00121{left:317.085000px;}
.xbf_c00121{left:319.680000px;}
.x53_c00121{left:322.275000px;}
.x96_c00121{left:324.000000px;}
.x121_c00121{left:325.725000px;}
.xd0_c00121{left:327.450000px;}
.x29_c00121{left:333.510000px;}
.x11_c00121{left:336.960000px;}
.x54_c00121{left:339.555000px;}
.x14_c00121{left:341.280000px;}
.x67_c00121{left:343.005000px;}
.x74_c00121{left:345.600000px;}
.xc0_c00121{left:347.325000px;}
.x122_c00121{left:350.790000px;}
.x102_c00121{left:352.515000px;}
.x12b_c00121{left:354.240000px;}
.x97_c00121{left:356.835000px;}
.x1a_c00121{left:358.560000px;}
.xd7_c00121{left:360.285000px;}
.x70_c00121{left:362.880000px;}
.xf0_c00121{left:364.605000px;}
.x1b_c00121{left:370.650000px;}
.x10d_c00121{left:373.245000px;}
.xe1_c00121{left:374.970000px;}
.xba_c00121{left:377.565000px;}
.x4a_c00121{left:379.290000px;}
.xd1_c00121{left:381.030000px;}
.xec_c00121{left:382.755000px;}
.xa3_c00121{left:384.480000px;}
.x55_c00121{left:386.205000px;}
.x9e_c00121{left:388.800000px;}
.x5b_c00121{left:391.395000px;}
.x68_c00121{left:393.120000px;}
.x7d_c00121{left:394.845000px;}
.xc5_c00121{left:396.570000px;}
.xd2_c00121{left:399.165000px;}
.xa8_c00121{left:402.630000px;}
.x69_c00121{left:406.950000px;}
.xbb_c00121{left:408.675000px;}
.xed_c00121{left:411.270000px;}
.x8d_c00121{left:415.590000px;}
.x113_c00121{left:417.315000px;}
.x41_c00121{left:419.040000px;}
.x5c_c00121{left:420.765000px;}
.xb1_c00121{left:423.360000px;}
.x114_c00121{left:428.550000px;}
.x11c_c00121{left:430.275000px;}
.x1c_c00121{left:432.870000px;}
.xcd_c00121{left:434.595000px;}
.x129_c00121{left:436.320000px;}
.x4b_c00121{left:439.770000px;}
.xc6_c00121{left:441.510000px;}
.x7e_c00121{left:444.090000px;}
.x75_c00121{left:446.685000px;}
.x33_c00121{left:448.410000px;}
.x56_c00121{left:451.875000px;}
.xbc_c00121{left:453.600000px;}
.x12_c00121{left:455.325000px;}
.xdc_c00121{left:457.050000px;}
.xc7_c00121{left:458.790000px;}
.x115_c00121{left:461.370000px;}
.xa4_c00121{left:463.110000px;}
.x76_c00121{left:464.835000px;}
.x123_c00121{left:466.560000px;}
.x57_c00121{left:470.880000px;}
.xfd_c00121{left:473.475000px;}
.xd8_c00121{left:475.200000px;}
.x8e_c00121{left:480.390000px;}
.x12a_c00121{left:482.115000px;}
.x4c_c00121{left:483.840000px;}
.x5d_c00121{left:485.565000px;}
.xc1_c00121{left:488.160000px;}
.xc8_c00121{left:491.610000px;}
.x34_c00121{left:495.930000px;}
.x10c_c00121{left:498.525000px;}
.x42_c00121{left:500.250000px;}
.xb8_c00121{left:501.990000px;}
.xa9_c00121{left:503.715000px;}
.x104_c00121{left:506.310000px;}
.x77_c00121{left:508.035000px;}
.xfb_c00121{left:509.760000px;}
.x71_c00121{left:513.210000px;}
.x58_c00121{left:516.675000px;}
.x86_c00121{left:526.170000px;}
.x7f_c00121{left:535.680000px;}
.x6a_c00121{left:537.405000px;}
.x1d_c00121{left:540.000000px;}
.x116_c00121{left:541.725000px;}
.xb2_c00121{left:544.320000px;}
.x35_c00121{left:547.770000px;}
.x2a_c00121{left:550.365000px;}
.xf9_c00121{left:552.090000px;}
.x8f_c00121{left:553.830000px;}
.xa5_c00121{left:555.555000px;}
.x98_c00121{left:557.280000px;}
.x1e_c00121{left:559.005000px;}
.x6b_c00121{left:560.730000px;}
.x108_c00121{left:563.325000px;}
.x5e_c00121{left:570.240000px;}
.xce_c00121{left:575.430000px;}
.xc9_c00121{left:578.010000px;}
.x117_c00121{left:581.475000px;}
.xf1_c00121{left:584.925000px;}
.xb3_c00121{left:586.650000px;}
.x5f_c00121{left:590.970000px;}
.xe2_c00121{left:592.710000px;}
.x36_c00121{left:594.435000px;}
.xd3_c00121{left:596.160000px;}
.x4d_c00121{left:598.755000px;}
.xc2_c00121{left:604.800000px;}
.x43_c00121{left:608.250000px;}
.x78_c00121{left:610.845000px;}
.x37_c00121{left:613.440000px;}
.x1f_c00121{left:615.165000px;}
.x125_c00121{left:617.760000px;}
.xa6_c00121{left:620.355000px;}
.x2b_c00121{left:623.805000px;}
.x90_c00121{left:625.530000px;}
.xaa_c00121{left:627.270000px;}
.x6c_c00121{left:629.850000px;}
.x60_c00121{left:634.170000px;}
.xdd_c00121{left:635.910000px;}
.x105_c00121{left:639.360000px;}
.x15_c00121{left:641.955000px;}
.x44_c00121{left:644.550000px;}
.x80_c00121{left:648.000000px;}
.x118_c00121{left:651.450000px;}
.x12f_c00121{left:654.045000px;}
.x61_c00121{left:655.770000px;}
.x4e_c00121{left:657.510000px;}
.x20_c00121{left:659.235000px;}
.xb4_c00121{left:661.830000px;}
.x4f_c00121{left:666.150000px;}
.xd9_c00121{left:668.730000px;}
.x13_c00121{left:671.325000px;}
.x79_c00121{left:673.050000px;}
.xab_c00121{left:674.790000px;}
.x119_c00121{left:678.240000px;}
.x38_c00121{left:679.965000px;}
.xf5_c00121{left:682.560000px;}
.xda_c00121{left:684.285000px;}
.x91_c00121{left:686.880000px;}
.x72_c00121{left:689.475000px;}
.x11d_c00121{left:692.070000px;}
.x45_c00121{left:693.795000px;}
.xf6_c00121{left:695.520000px;}
.xee_c00121{left:697.245000px;}
.x21_c00121{left:703.290000px;}
.x2c_c00121{left:705.030000px;}
.x99_c00121{left:707.610000px;}
.x7a_c00121{left:717.120000px;}
.xa7_c00121{left:720.570000px;}
.xcf_c00121{left:722.310000px;}
.xbd_c00121{left:726.630000px;}
.x62_c00121{left:730.950000px;}
.x11e_c00121{left:736.995000px;}
.x92_c00121{left:738.720000px;}
.x22_c00121{left:741.315000px;}
.x59_c00121{left:744.765000px;}
.xf7_c00121{left:748.230000px;}
.xfe_c00121{left:749.955000px;}
.x9f_c00121{left:751.680000px;}
.x9a_c00121{left:754.275000px;}
.x87_c00121{left:756.000000px;}
.x10e_c00121{left:761.190000px;}
.x81_c00121{left:762.915000px;}
.xc3_c00121{left:766.365000px;}
.x39_c00121{left:768.090000px;}
.xac_c00121{left:769.830000px;}
.x82_c00121{left:772.410000px;}
.xde_c00121{left:775.005000px;}
.xdb_c00121{left:777.600000px;}
.x3a_c00121{left:779.325000px;}
.xb5_c00121{left:781.920000px;}
.x2d_c00121{left:785.370000px;}
.x11f_c00121{left:787.965000px;}
.x23_c00121{left:790.560000px;}
.xb6_c00121{left:793.155000px;}
.x7b_c00121{left:794.880000px;}
.xd4_c00121{left:799.200000px;}
.x63_c00121{left:800.925000px;}
.x7c_c00121{left:803.520000px;}
.xe9_c00121{left:805.245000px;}
.xff_c00121{left:807.840000px;}
.x11a_c00121{left:809.565000px;}
.x46_c00121{left:811.290000px;}
.x50_c00121{left:814.755000px;}
.x16_c00121{left:816.480000px;}
.xae_c00121{left:819.930000px;}
.xd5_c00121{left:821.670000px;}
.xf2_c00121{left:824.250000px;}
.x9b_c00121{left:825.990000px;}
.xea_c00121{left:827.715000px;}
.xe4_c00121{left:829.440000px;}
.x3b_c00121{left:831.165000px;}
.xad_c00121{left:833.760000px;}
.xfc_c00121{left:835.485000px;}
.x88_c00121{left:838.080000px;}
.x5a_c00121{left:840.675000px;}
.x64_c00121{left:844.125000px;}
.x93_c00121{left:847.590000px;}
.x51_c00121{left:849.315000px;}
.xa0_c00121{left:856.230000px;}
.xaf_c00121{left:858.810000px;}
.x130_c00121{left:862.275000px;}
.xa1_c00121{left:864.000000px;}
.x47_c00121{left:869.190000px;}
.x83_c00121{left:871.770000px;}
.x24_c00121{left:874.365000px;}
.xb0_c00121{left:876.960000px;}
.x84_c00121{left:879.555000px;}
.x10f_c00121{left:881.280000px;}
.x3c_c00121{left:885.600000px;}
.x109_c00121{left:887.325000px;}
.x89_c00121{left:889.050000px;}
.x25_c00121{left:890.790504px;}
.xfa_c00121{left:893.370000px;}
.x101_c00121{left:895.110000px;}
.x2e_c00121{left:897.690000px;}
.xe5_c00121{left:900.285000px;}
.x103_c00121{left:904.605000px;}
.xf8_c00121{left:906.330000px;}
.x26_c00121{left:908.925000px;}
.x100_c00121{left:911.520000px;}
.x3d_c00121{left:914.970000px;}
.xf3_c00121{left:916.710000px;}
.x27_c00121{left:918.435000px;}
.x3e_c00121{left:922.755000px;}
.x2f_c00121{left:924.480000px;}
.x9c_c00121{left:927.075000px;}
.x111_c00121{left:933.990000px;}
.x10a_c00121{left:935.715000px;}
.x106_c00121{left:939.165000px;}
.x126_c00121{left:945.210000px;}
.x133_c00121{left:948.675000px;}
.x10b_c00121{left:952.995000px;}
.x134_c00121{left:963.360000px;}
@media print{
.v2_c00121{vertical-align:-12.266667pt;}
.v4_c00121{vertical-align:-3.093333pt;}
.v0_c00121{vertical-align:0.000000pt;}
.v1_c00121{vertical-align:3.040000pt;}
.v3_c00121{vertical-align:12.266667pt;}
.ls1_c00121{letter-spacing:0.000000pt;}
.ls0_c00121{letter-spacing:23.749333pt;}
.ws3_c00121{word-spacing:-11.592747pt;}
.ws0_c00121{word-spacing:-11.042347pt;}
.ws1_c00121{word-spacing:-8.705600pt;}
.ws4_c00121{word-spacing:0.000000pt;}
.ws2_c00121{word-spacing:216.173824pt;}
.fs12_c00121{font-size:3.072000pt;}
.fs4_c00121{font-size:5.333333pt;}
.fs2_c00121{font-size:6.133333pt;}
.fs6_c00121{font-size:9.226667pt;}
.fs11_c00121{font-size:12.266667pt;}
.fs1b_c00121{font-size:15.360000pt;}
.fsb_c00121{font-size:18.453333pt;}
.fs5_c00121{font-size:21.493333pt;}
.fsa_c00121{font-size:24.586667pt;}
.fs10_c00121{font-size:27.626667pt;}
.fs1_c00121{font-size:30.720000pt;}
.fse_c00121{font-size:33.813333pt;}
.fsd_c00121{font-size:36.853333pt;}
.fs9_c00121{font-size:39.946667pt;}
.fs0_c00121{font-size:42.986667pt;}
.fs7_c00121{font-size:46.080000pt;}
.fsf_c00121{font-size:49.173333pt;}
.fsc_c00121{font-size:52.213333pt;}
.fs8_c00121{font-size:55.306667pt;}
.fs3_c00121{font-size:58.346667pt;}
.fs1c_c00121{font-size:61.440000pt;}
.fs13_c00121{font-size:64.533333pt;}
.fs14_c00121{font-size:67.573333pt;}
.fs1e_c00121{font-size:70.666667pt;}
.fs17_c00121{font-size:73.706667pt;}
.fs1a_c00121{font-size:76.800000pt;}
.fs15_c00121{font-size:79.893333pt;}
.fs19_c00121{font-size:82.933333pt;}
.fs1d_c00121{font-size:86.026667pt;}
.fs1f_c00121{font-size:89.066667pt;}
.fs20_c00121{font-size:92.160000pt;}
.fs16_c00121{font-size:95.253333pt;}
.fs18_c00121{font-size:101.386667pt;}
.y0_c00121{bottom:0.000000pt;}
.y226_c00121{bottom:184.320000pt;}
.y225_c00121{bottom:186.626667pt;}
.y224_c00121{bottom:188.933333pt;}
.y221_c00121{bottom:195.840000pt;}
.y220_c00121{bottom:197.373333pt;}
.y21b_c00121{bottom:198.906667pt;}
.y222_c00121{bottom:199.680000pt;}
.y223_c00121{bottom:200.453333pt;}
.y21c_c00121{bottom:201.986667pt;}
.y21d_c00121{bottom:202.746667pt;}
.y21e_c00121{bottom:204.293333pt;}
.y21a_c00121{bottom:209.666667pt;}
.y21f_c00121{bottom:219.653333pt;}
.y214_c00121{bottom:221.946667pt;}
.y215_c00121{bottom:222.720000pt;}
.y217_c00121{bottom:223.493333pt;}
.y219_c00121{bottom:224.253333pt;}
.y216_c00121{bottom:225.026667pt;}
.y213_c00121{bottom:226.560000pt;}
.y212_c00121{bottom:228.093333pt;}
.y218_c00121{bottom:228.866667pt;}
.y208_c00121{bottom:235.013333pt;}
.y207_c00121{bottom:235.773333pt;}
.y20b_c00121{bottom:237.306667pt;}
.y209_c00121{bottom:238.080000pt;}
.y20e_c00121{bottom:238.853333pt;}
.y20f_c00121{bottom:239.613333pt;}
.y210_c00121{bottom:240.386667pt;}
.y20a_c00121{bottom:241.146667pt;}
.y206_c00121{bottom:241.920000pt;}
.y20d_c00121{bottom:243.453333pt;}
.y211_c00121{bottom:244.986667pt;}
.y1fb_c00121{bottom:254.213333pt;}
.y20c_c00121{bottom:254.973333pt;}
.y1fd_c00121{bottom:255.746667pt;}
.y1fe_c00121{bottom:256.506667pt;}
.y202_c00121{bottom:258.813333pt;}
.y200_c00121{bottom:259.586667pt;}
.y1fc_c00121{bottom:260.346667pt;}
.y1ff_c00121{bottom:261.120000pt;}
.y204_c00121{bottom:263.426667pt;}
.y203_c00121{bottom:264.186667pt;}
.y201_c00121{bottom:264.960000pt;}
.y205_c00121{bottom:265.733333pt;}
.y1ee_c00121{bottom:267.266667pt;}
.y1ef_c00121{bottom:268.026667pt;}
.y1f4_c00121{bottom:271.106667pt;}
.y1f3_c00121{bottom:271.866667pt;}
.y1f5_c00121{bottom:273.413333pt;}
.y1f0_c00121{bottom:274.173333pt;}
.y1f2_c00121{bottom:274.946667pt;}
.y1f8_c00121{bottom:275.706667pt;}
.y1fa_c00121{bottom:276.480000pt;}
.y1f7_c00121{bottom:277.253333pt;}
.y1f1_c00121{bottom:278.013333pt;}
.y1f9_c00121{bottom:279.546667pt;}
.y1f6_c00121{bottom:280.320000pt;}
.y1e1_c00121{bottom:289.533333pt;}
.y1e2_c00121{bottom:290.306667pt;}
.y1e5_c00121{bottom:291.066667pt;}
.y1e4_c00121{bottom:291.840000pt;}
.y1e6_c00121{bottom:292.613333pt;}
.y1ea_c00121{bottom:293.373333pt;}
.y1e9_c00121{bottom:294.146667pt;}
.y1eb_c00121{bottom:294.906667pt;}
.y1e3_c00121{bottom:295.680000pt;}
.y1e7_c00121{bottom:296.453333pt;}
.y1ec_c00121{bottom:297.986667pt;}
.y1e8_c00121{bottom:299.520000pt;}
.y1ed_c00121{bottom:301.053333pt;}
.y1db_c00121{bottom:309.506667pt;}
.y1da_c00121{bottom:310.266667pt;}
.y1dc_c00121{bottom:311.040000pt;}
.y1e0_c00121{bottom:312.573333pt;}
.y1dd_c00121{bottom:314.106667pt;}
.y1de_c00121{bottom:314.880000pt;}
.y1d9_c00121{bottom:315.653333pt;}
.y1df_c00121{bottom:316.413333pt;}
.y1d8_c00121{bottom:318.720000pt;}
.y1d0_c00121{bottom:327.173333pt;}
.y1d1_c00121{bottom:327.933333pt;}
.y1d4_c00121{bottom:328.706667pt;}
.y1d2_c00121{bottom:330.240000pt;}
.y1d7_c00121{bottom:331.013333pt;}
.y1cf_c00121{bottom:331.773333pt;}
.y1ce_c00121{bottom:332.546667pt;}
.y1d3_c00121{bottom:333.306667pt;}
.y1d6_c00121{bottom:334.080000pt;}
.y1d5_c00121{bottom:336.386667pt;}
.y1c5_c00121{bottom:345.600000pt;}
.y1c9_c00121{bottom:346.373333pt;}
.y1c7_c00121{bottom:347.133333pt;}
.y1c6_c00121{bottom:348.666667pt;}
.y1c4_c00121{bottom:349.440000pt;}
.y1cb_c00121{bottom:350.973333pt;}
.y1c8_c00121{bottom:351.746667pt;}
.y1ca_c00121{bottom:352.506667pt;}
.y1cc_c00121{bottom:353.280000pt;}
.y1cd_c00121{bottom:354.053333pt;}
.y1c3_c00121{bottom:354.813333pt;}
.y1bb_c00121{bottom:364.026667pt;}
.y1bc_c00121{bottom:364.800000pt;}
.y1bd_c00121{bottom:365.573333pt;}
.y1c1_c00121{bottom:367.106667pt;}
.y1c0_c00121{bottom:367.866667pt;}
.y1be_c00121{bottom:369.413333pt;}
.y1bf_c00121{bottom:371.706667pt;}
.y1c2_c00121{bottom:373.253333pt;}
.y1b6_c00121{bottom:383.226667pt;}
.y1ba_c00121{bottom:384.000000pt;}
.y1b7_c00121{bottom:384.773333pt;}
.y1b9_c00121{bottom:385.533333pt;}
.y1b8_c00121{bottom:387.066667pt;}
.y1b1_c00121{bottom:397.826667pt;}
.y1b5_c00121{bottom:400.133333pt;}
.y1b2_c00121{bottom:400.893333pt;}
.y1b4_c00121{bottom:410.880000pt;}
.y1b3_c00121{bottom:411.653333pt;}
.y1a7_c00121{bottom:416.253333pt;}
.y1a9_c00121{bottom:417.026667pt;}
.y1aa_c00121{bottom:417.786667pt;}
.y1ad_c00121{bottom:419.333333pt;}
.y1ac_c00121{bottom:420.093333pt;}
.y1a8_c00121{bottom:420.866667pt;}
.y1af_c00121{bottom:422.400000pt;}
.y1ae_c00121{bottom:423.173333pt;}
.y1b0_c00121{bottom:425.466667pt;}
.y1ab_c00121{bottom:428.546667pt;}
.y19f_c00121{bottom:433.920000pt;}
.y1a0_c00121{bottom:434.693333pt;}
.y1a2_c00121{bottom:437.760000pt;}
.y1a6_c00121{bottom:438.533333pt;}
.y1a5_c00121{bottom:440.066667pt;}
.y1a4_c00121{bottom:440.826667pt;}
.y1a3_c00121{bottom:441.600000pt;}
.y1a1_c00121{bottom:446.973333pt;}
.y196_c00121{bottom:451.586667pt;}
.y197_c00121{bottom:452.346667pt;}
.y198_c00121{bottom:454.653333pt;}
.y19a_c00121{bottom:455.426667pt;}
.y19b_c00121{bottom:456.186667pt;}
.y19c_c00121{bottom:456.960000pt;}
.y19d_c00121{bottom:457.733333pt;}
.y19e_c00121{bottom:458.493333pt;}
.y199_c00121{bottom:460.800000pt;}
.y18f_c00121{bottom:466.173333pt;}
.y190_c00121{bottom:467.706667pt;}
.y191_c00121{bottom:469.253333pt;}
.y192_c00121{bottom:470.013333pt;}
.y193_c00121{bottom:470.786667pt;}
.y194_c00121{bottom:472.320000pt;}
.y195_c00121{bottom:473.853333pt;}
.y18e_c00121{bottom:475.386667pt;}
.y189_c00121{bottom:489.213333pt;}
.y18a_c00121{bottom:491.520000pt;}
.y18b_c00121{bottom:492.293333pt;}
.y18c_c00121{bottom:493.053333pt;}
.y184_c00121{bottom:504.573333pt;}
.y18d_c00121{bottom:506.106667pt;}
.y187_c00121{bottom:508.413333pt;}
.y185_c00121{bottom:509.186667pt;}
.y188_c00121{bottom:510.720000pt;}
.y186_c00121{bottom:518.400000pt;}
.y17f_c00121{bottom:525.306667pt;}
.y180_c00121{bottom:529.146667pt;}
.y17e_c00121{bottom:529.920000pt;}
.y181_c00121{bottom:530.693333pt;}
.y183_c00121{bottom:531.453333pt;}
.y182_c00121{bottom:533.760000pt;}
.y177_c00121{bottom:541.440000pt;}
.y178_c00121{bottom:545.280000pt;}
.y17d_c00121{bottom:546.813333pt;}
.y179_c00121{bottom:547.586667pt;}
.y17a_c00121{bottom:548.346667pt;}
.y17b_c00121{bottom:552.960000pt;}
.y2e_c00121{bottom:554.493333pt;}
.y17c_c00121{bottom:555.266667pt;}
.y2d_c00121{bottom:556.800000pt;}
.y173_c00121{bottom:561.413333pt;}
.y175_c00121{bottom:562.173333pt;}
.y174_c00121{bottom:563.706667pt;}
.y2f_c00121{bottom:564.480000pt;}
.y176_c00121{bottom:566.013333pt;}
.y2c_c00121{bottom:568.320000pt;}
.y2b_c00121{bottom:569.853333pt;}
.y2a_c00121{bottom:578.306667pt;}
.y29_c00121{bottom:579.840000pt;}
.y16d_c00121{bottom:582.146667pt;}
.y170_c00121{bottom:582.906667pt;}
.y171_c00121{bottom:584.453333pt;}
.y172_c00121{bottom:585.986667pt;}
.y16e_c00121{bottom:586.746667pt;}
.y27_c00121{bottom:592.133333pt;}
.y16f_c00121{bottom:593.666667pt;}
.y16a_c00121{bottom:599.040000pt;}
.y28_c00121{bottom:601.346667pt;}
.y169_c00121{bottom:602.106667pt;}
.y16c_c00121{bottom:603.653333pt;}
.y26_c00121{bottom:604.413333pt;}
.y16b_c00121{bottom:606.720000pt;}
.y25_c00121{bottom:607.493333pt;}
.y167_c00121{bottom:614.400000pt;}
.y166_c00121{bottom:615.173333pt;}
.y15c_c00121{bottom:615.933333pt;}
.y15e_c00121{bottom:616.706667pt;}
.y15f_c00121{bottom:617.466667pt;}
.y23_c00121{bottom:618.240000pt;}
.y15d_c00121{bottom:619.013333pt;}
.y24_c00121{bottom:619.773333pt;}
.y168_c00121{bottom:621.306667pt;}
.y163_c00121{bottom:622.853333pt;}
.y162_c00121{bottom:623.613333pt;}
.y164_c00121{bottom:624.386667pt;}
.y165_c00121{bottom:625.146667pt;}
.y160_c00121{bottom:628.986667pt;}
.y22_c00121{bottom:629.760000pt;}
.y161_c00121{bottom:630.533333pt;}
.y15b_c00121{bottom:631.293333pt;}
.y152_c00121{bottom:632.826667pt;}
.y21_c00121{bottom:633.600000pt;}
.y153_c00121{bottom:635.133333pt;}
.y155_c00121{bottom:635.906667pt;}
.y154_c00121{bottom:636.666667pt;}
.y156_c00121{bottom:637.440000pt;}
.y158_c00121{bottom:638.213333pt;}
.y15a_c00121{bottom:639.746667pt;}
.y157_c00121{bottom:640.506667pt;}
.y20_c00121{bottom:642.813333pt;}
.y1f_c00121{bottom:645.893333pt;}
.y159_c00121{bottom:647.426667pt;}
.y14d_c00121{bottom:652.026667pt;}
.y14e_c00121{bottom:652.800000pt;}
.y14f_c00121{bottom:653.573333pt;}
.y1d_c00121{bottom:654.333333pt;}
.y14b_c00121{bottom:655.106667pt;}
.y151_c00121{bottom:655.866667pt;}
.y14c_c00121{bottom:657.413333pt;}
.y1c_c00121{bottom:658.173333pt;}
.y1e_c00121{bottom:658.946667pt;}
.y150_c00121{bottom:664.320000pt;}
.y14a_c00121{bottom:665.853333pt;}
.y1a_c00121{bottom:666.626667pt;}
.y142_c00121{bottom:667.386667pt;}
.y1b_c00121{bottom:668.160000pt;}
.y143_c00121{bottom:669.693333pt;}
.y144_c00121{bottom:672.000000pt;}
.y147_c00121{bottom:672.773333pt;}
.y145_c00121{bottom:673.533333pt;}
.y146_c00121{bottom:677.373333pt;}
.y149_c00121{bottom:678.146667pt;}
.y138_c00121{bottom:683.520000pt;}
.y137_c00121{bottom:685.053333pt;}
.y148_c00121{bottom:687.360000pt;}
.y13c_c00121{bottom:688.133333pt;}
.y13a_c00121{bottom:688.893333pt;}
.y140_c00121{bottom:689.666667pt;}
.y13b_c00121{bottom:690.426667pt;}
.y139_c00121{bottom:691.200000pt;}
.y13d_c00121{bottom:691.973333pt;}
.y13f_c00121{bottom:692.733333pt;}
.y13e_c00121{bottom:693.506667pt;}
.y141_c00121{bottom:701.946667pt;}
.y12f_c00121{bottom:703.493333pt;}
.y130_c00121{bottom:704.253333pt;}
.y12e_c00121{bottom:705.026667pt;}
.y132_c00121{bottom:705.786667pt;}
.y133_c00121{bottom:707.333333pt;}
.y131_c00121{bottom:708.093333pt;}
.y136_c00121{bottom:708.866667pt;}
.y134_c00121{bottom:710.400000pt;}
.y135_c00121{bottom:711.933333pt;}
.y125_c00121{bottom:719.613333pt;}
.y127_c00121{bottom:721.146667pt;}
.y129_c00121{bottom:722.693333pt;}
.y128_c00121{bottom:723.453333pt;}
.y12a_c00121{bottom:724.226667pt;}
.y12c_c00121{bottom:724.986667pt;}
.y126_c00121{bottom:725.760000pt;}
.y12b_c00121{bottom:728.826667pt;}
.y12d_c00121{bottom:734.213333pt;}
.y11e_c00121{bottom:738.053333pt;}
.y11d_c00121{bottom:739.586667pt;}
.y11c_c00121{bottom:740.346667pt;}
.y124_c00121{bottom:741.120000pt;}
.y11f_c00121{bottom:742.653333pt;}
.y120_c00121{bottom:743.426667pt;}
.y121_c00121{bottom:744.960000pt;}
.y123_c00121{bottom:745.733333pt;}
.y122_c00121{bottom:748.026667pt;}
.y119_c00121{bottom:758.013333pt;}
.y115_c00121{bottom:758.786667pt;}
.y112_c00121{bottom:759.546667pt;}
.y114_c00121{bottom:761.093333pt;}
.y113_c00121{bottom:761.853333pt;}
.y117_c00121{bottom:762.626667pt;}
.y118_c00121{bottom:763.386667pt;}
.y11b_c00121{bottom:764.933333pt;}
.y11a_c00121{bottom:765.693333pt;}
.y116_c00121{bottom:766.466667pt;}
.y10a_c00121{bottom:774.146667pt;}
.y10b_c00121{bottom:776.453333pt;}
.y10c_c00121{bottom:777.213333pt;}
.y10f_c00121{bottom:777.986667pt;}
.y109_c00121{bottom:778.746667pt;}
.y10d_c00121{bottom:779.520000pt;}
.y10e_c00121{bottom:781.053333pt;}
.y110_c00121{bottom:782.586667pt;}
.y111_c00121{bottom:783.360000pt;}
.y105_c00121{bottom:793.346667pt;}
.y102_c00121{bottom:794.106667pt;}
.y108_c00121{bottom:796.413333pt;}
.y104_c00121{bottom:797.186667pt;}
.y103_c00121{bottom:797.946667pt;}
.y106_c00121{bottom:800.253333pt;}
.y107_c00121{bottom:801.026667pt;}
.yfe_c00121{bottom:811.013333pt;}
.yfd_c00121{bottom:811.773333pt;}
.yfc_c00121{bottom:812.546667pt;}
.yff_c00121{bottom:814.080000pt;}
.yfb_c00121{bottom:814.853333pt;}
.yfa_c00121{bottom:815.613333pt;}
.y101_c00121{bottom:816.386667pt;}
.y100_c00121{bottom:818.693333pt;}
.yf3_c00121{bottom:830.213333pt;}
.yf4_c00121{bottom:830.973333pt;}
.yf1_c00121{bottom:833.280000pt;}
.yf2_c00121{bottom:834.053333pt;}
.yf5_c00121{bottom:834.813333pt;}
.yf8_c00121{bottom:835.586667pt;}
.yf6_c00121{bottom:836.346667pt;}
.yf9_c00121{bottom:837.893333pt;}
.yf7_c00121{bottom:845.573333pt;}
.yeb_c00121{bottom:847.866667pt;}
.ye9_c00121{bottom:848.640000pt;}
.yec_c00121{bottom:849.413333pt;}
.yee_c00121{bottom:850.173333pt;}
.yea_c00121{bottom:850.946667pt;}
.yf0_c00121{bottom:852.480000pt;}
.yed_c00121{bottom:854.013333pt;}
.yef_c00121{bottom:855.546667pt;}
.ye2_c00121{bottom:864.000000pt;}
.ye6_c00121{bottom:866.306667pt;}
.ye7_c00121{bottom:868.613333pt;}
.ye8_c00121{bottom:869.373333pt;}
.ye3_c00121{bottom:870.146667pt;}
.ye4_c00121{bottom:871.680000pt;}
.ye5_c00121{bottom:872.453333pt;}
.yda_c00121{bottom:883.973333pt;}
.ydd_c00121{bottom:884.733333pt;}
.ydf_c00121{bottom:886.266667pt;}
.ydb_c00121{bottom:887.040000pt;}
.ydc_c00121{bottom:887.813333pt;}
.ye1_c00121{bottom:889.346667pt;}
.yde_c00121{bottom:890.106667pt;}
.ye0_c00121{bottom:892.413333pt;}
.yd4_c00121{bottom:904.706667pt;}
.yd5_c00121{bottom:905.466667pt;}
.yd7_c00121{bottom:907.013333pt;}
.yd6_c00121{bottom:907.773333pt;}
.yd8_c00121{bottom:910.853333pt;}
.yd9_c00121{bottom:914.693333pt;}
.ycc_c00121{bottom:919.293333pt;}
.ycb_c00121{bottom:921.600000pt;}
.yd0_c00121{bottom:922.373333pt;}
.yd3_c00121{bottom:923.906667pt;}
.ycd_c00121{bottom:924.666667pt;}
.yce_c00121{bottom:925.440000pt;}
.ycf_c00121{bottom:926.213333pt;}
.yd1_c00121{bottom:926.973333pt;}
.yd2_c00121{bottom:928.506667pt;}
.yc1_c00121{bottom:936.960000pt;}
.ybf_c00121{bottom:937.733333pt;}
.yc2_c00121{bottom:938.493333pt;}
.yc3_c00121{bottom:940.026667pt;}
.yc0_c00121{bottom:941.573333pt;}
.yc9_c00121{bottom:942.333333pt;}
.yc6_c00121{bottom:943.106667pt;}
.yc4_c00121{bottom:943.866667pt;}
.yc5_c00121{bottom:944.640000pt;}
.yc7_c00121{bottom:945.413333pt;}
.yc8_c00121{bottom:946.173333pt;}
.yca_c00121{bottom:952.320000pt;}
.yb6_c00121{bottom:956.933333pt;}
.yb8_c00121{bottom:959.226667pt;}
.yb7_c00121{bottom:960.000000pt;}
.ybd_c00121{bottom:960.773333pt;}
.ybc_c00121{bottom:961.533333pt;}
.yba_c00121{bottom:962.306667pt;}
.yb9_c00121{bottom:963.066667pt;}
.ybb_c00121{bottom:963.840000pt;}
.ybe_c00121{bottom:967.680000pt;}
.yab_c00121{bottom:968.453333pt;}
.yb1_c00121{bottom:969.986667pt;}
.yac_c00121{bottom:970.746667pt;}
.yb2_c00121{bottom:973.053333pt;}
.yb3_c00121{bottom:975.360000pt;}
.yaf_c00121{bottom:976.133333pt;}
.yaa_c00121{bottom:976.893333pt;}
.yad_c00121{bottom:977.666667pt;}
.yae_c00121{bottom:978.426667pt;}
.yb0_c00121{bottom:979.200000pt;}
.yb4_c00121{bottom:983.040000pt;}
.yb5_c00121{bottom:983.813333pt;}
.ya3_c00121{bottom:991.493333pt;}
.ya5_c00121{bottom:993.026667pt;}
.ya1_c00121{bottom:994.560000pt;}
.ya7_c00121{bottom:995.333333pt;}
.ya2_c00121{bottom:996.093333pt;}
.ya8_c00121{bottom:996.866667pt;}
.ya4_c00121{bottom:997.626667pt;}
.ya6_c00121{bottom:999.173333pt;}
.ya0_c00121{bottom:1000.706667pt;}
.y98_c00121{bottom:1010.693333pt;}
.y9a_c00121{bottom:1011.453333pt;}
.y99_c00121{bottom:1012.226667pt;}
.ya9_c00121{bottom:1012.986667pt;}
.y97_c00121{bottom:1013.760000pt;}
.y9f_c00121{bottom:1014.533333pt;}
.y9d_c00121{bottom:1015.293333pt;}
.y9b_c00121{bottom:1016.826667pt;}
.y9c_c00121{bottom:1017.600000pt;}
.y9e_c00121{bottom:1019.906667pt;}
.y8d_c00121{bottom:1028.346667pt;}
.y90_c00121{bottom:1029.893333pt;}
.y93_c00121{bottom:1031.426667pt;}
.y8e_c00121{bottom:1032.960000pt;}
.y8f_c00121{bottom:1033.733333pt;}
.y92_c00121{bottom:1036.026667pt;}
.y95_c00121{bottom:1036.800000pt;}
.y94_c00121{bottom:1037.573333pt;}
.y96_c00121{bottom:1039.106667pt;}
.y91_c00121{bottom:1040.640000pt;}
.y83_c00121{bottom:1046.013333pt;}
.y85_c00121{bottom:1046.786667pt;}
.y88_c00121{bottom:1047.546667pt;}
.y82_c00121{bottom:1048.320000pt;}
.y87_c00121{bottom:1049.093333pt;}
.y81_c00121{bottom:1049.853333pt;}
.y89_c00121{bottom:1050.626667pt;}
.y84_c00121{bottom:1051.386667pt;}
.y86_c00121{bottom:1052.160000pt;}
.y8c_c00121{bottom:1052.933333pt;}
.y8a_c00121{bottom:1054.466667pt;}
.y8b_c00121{bottom:1056.000000pt;}
.y78_c00121{bottom:1064.453333pt;}
.y7a_c00121{bottom:1065.986667pt;}
.y79_c00121{bottom:1068.293333pt;}
.y7d_c00121{bottom:1069.053333pt;}
.y7b_c00121{bottom:1069.826667pt;}
.y7c_c00121{bottom:1070.586667pt;}
.y7e_c00121{bottom:1072.133333pt;}
.y80_c00121{bottom:1072.893333pt;}
.y7f_c00121{bottom:1079.040000pt;}
.y19_c00121{bottom:1080.573333pt;}
.y70_c00121{bottom:1082.106667pt;}
.y6f_c00121{bottom:1084.413333pt;}
.y72_c00121{bottom:1085.186667pt;}
.y75_c00121{bottom:1086.720000pt;}
.y71_c00121{bottom:1087.493333pt;}
.y73_c00121{bottom:1088.253333pt;}
.y74_c00121{bottom:1089.026667pt;}
.y76_c00121{bottom:1089.786667pt;}
.y17_c00121{bottom:1090.560000pt;}
.y18_c00121{bottom:1091.333333pt;}
.y77_c00121{bottom:1098.240000pt;}
.y229_c00121{bottom:1099.773333pt;}
.y6b_c00121{bottom:1101.306667pt;}
.y68_c00121{bottom:1102.080000pt;}
.y16_c00121{bottom:1103.613333pt;}
.y6d_c00121{bottom:1104.386667pt;}
.y69_c00121{bottom:1105.146667pt;}
.y6a_c00121{bottom:1106.693333pt;}
.y6c_c00121{bottom:1107.453333pt;}
.y6e_c00121{bottom:1108.986667pt;}
.y13_c00121{bottom:1116.666667pt;}
.y63_c00121{bottom:1119.746667pt;}
.y14_c00121{bottom:1120.506667pt;}
.y15_c00121{bottom:1121.280000pt;}
.y62_c00121{bottom:1122.053333pt;}
.y64_c00121{bottom:1123.586667pt;}
.y66_c00121{bottom:1124.346667pt;}
.y65_c00121{bottom:1125.120000pt;}
.y67_c00121{bottom:1125.893333pt;}
.y12_c00121{bottom:1126.653333pt;}
.y11_c00121{bottom:1127.426667pt;}
.y59_c00121{bottom:1132.800000pt;}
.y5a_c00121{bottom:1134.333333pt;}
.y5d_c00121{bottom:1135.106667pt;}
.y61_c00121{bottom:1136.640000pt;}
.y60_c00121{bottom:1137.413333pt;}
.y5c_c00121{bottom:1138.173333pt;}
.y5f_c00121{bottom:1141.253333pt;}
.y10_c00121{bottom:1142.013333pt;}
.y5b_c00121{bottom:1142.786667pt;}
.ye_c00121{bottom:1143.546667pt;}
.y5e_c00121{bottom:1144.320000pt;}
.yd_c00121{bottom:1145.853333pt;}
.yf_c00121{bottom:1146.626667pt;}
.y52_c00121{bottom:1149.693333pt;}
.y54_c00121{bottom:1155.840000pt;}
.yb_c00121{bottom:1156.613333pt;}
.y56_c00121{bottom:1157.373333pt;}
.y53_c00121{bottom:1158.146667pt;}
.ya_c00121{bottom:1158.906667pt;}
.yc_c00121{bottom:1161.213333pt;}
.y55_c00121{bottom:1161.986667pt;}
.y58_c00121{bottom:1162.746667pt;}
.y57_c00121{bottom:1163.520000pt;}
.y9_c00121{bottom:1165.826667pt;}
.y8_c00121{bottom:1171.200000pt;}
.y48_c00121{bottom:1171.973333pt;}
.y49_c00121{bottom:1172.733333pt;}
.y47_c00121{bottom:1173.506667pt;}
.y4a_c00121{bottom:1174.266667pt;}
.y7_c00121{bottom:1175.040000pt;}
.y4f_c00121{bottom:1176.573333pt;}
.y4e_c00121{bottom:1177.346667pt;}
.y4d_c00121{bottom:1178.106667pt;}
.y6_c00121{bottom:1178.880000pt;}
.y4c_c00121{bottom:1179.653333pt;}
.y4b_c00121{bottom:1180.413333pt;}
.y5_c00121{bottom:1181.186667pt;}
.y51_c00121{bottom:1184.253333pt;}
.y50_c00121{bottom:1188.093333pt;}
.y41_c00121{bottom:1188.866667pt;}
.y43_c00121{bottom:1189.626667pt;}
.y42_c00121{bottom:1191.933333pt;}
.y46_c00121{bottom:1193.466667pt;}
.y2_c00121{bottom:1194.240000pt;}
.y3_c00121{bottom:1195.013333pt;}
.y4_c00121{bottom:1196.546667pt;}
.y45_c00121{bottom:1197.306667pt;}
.y44_c00121{bottom:1206.533333pt;}
.y1_c00121{bottom:1207.293333pt;}
.y38_c00121{bottom:1208.066667pt;}
.y36_c00121{bottom:1210.373333pt;}
.y3c_c00121{bottom:1211.133333pt;}
.y37_c00121{bottom:1211.906667pt;}
.y39_c00121{bottom:1213.440000pt;}
.y3a_c00121{bottom:1215.746667pt;}
.y3b_c00121{bottom:1216.506667pt;}
.y3d_c00121{bottom:1217.280000pt;}
.y40_c00121{bottom:1227.266667pt;}
.y3e_c00121{bottom:1234.173333pt;}
.y33_c00121{bottom:1236.480000pt;}
.y34_c00121{bottom:1238.013333pt;}
.y3f_c00121{bottom:1238.786667pt;}
.y35_c00121{bottom:1239.546667pt;}
.y227_c00121{bottom:1248.773333pt;}
.y30_c00121{bottom:1249.533333pt;}
.y228_c00121{bottom:1250.306667pt;}
.y31_c00121{bottom:1255.680000pt;}
.y32_c00121{bottom:1256.453333pt;}
.h14_c00121{height:2.764500pt;}
.h6_c00121{height:4.799479pt;}
.h4_c00121{height:5.519401pt;}
.h8_c00121{height:8.303099pt;}
.h13_c00121{height:11.038802pt;}
.h1d_c00121{height:13.822500pt;}
.hd_c00121{height:16.606198pt;}
.h7_c00121{height:19.341901pt;}
.hc_c00121{height:22.125599pt;}
.h12_c00121{height:24.861302pt;}
.h3_c00121{height:27.645000pt;}
.h10_c00121{height:30.428698pt;}
.hf_c00121{height:33.164401pt;}
.hb_c00121{height:35.948099pt;}
.h2_c00121{height:38.683802pt;}
.h9_c00121{height:41.467500pt;}
.h11_c00121{height:44.251198pt;}
.h20_c00121{height:44.507500pt;}
.he_c00121{height:46.986901pt;}
.ha_c00121{height:49.770599pt;}
.h5_c00121{height:52.506302pt;}
.h1e_c00121{height:55.290000pt;}
.h15_c00121{height:58.073698pt;}
.h22_c00121{height:59.253568pt;}
.h16_c00121{height:60.809401pt;}
.h21_c00121{height:63.593099pt;}
.h19_c00121{height:66.328802pt;}
.h1c_c00121{height:69.112500pt;}
.h17_c00121{height:71.896198pt;}
.h1b_c00121{height:74.631901pt;}
.h1f_c00121{height:77.415599pt;}
.h23_c00121{height:80.151302pt;}
.h24_c00121{height:82.935000pt;}
.h18_c00121{height:85.718698pt;}
.h1a_c00121{height:91.238099pt;}
.h1_c00121{height:1336.000000pt;}
.h0_c00121{height:1336.320000pt;}
.w0_c00121{width:967.680000pt;}
.w1_c00121{width:968.000000pt;}
.x0_c00121{left:0.000000pt;}
.x10_c00121{left:1.533333pt;}
.xe_c00121{left:3.066667pt;}
.x2_c00121{left:4.613333pt;}
.x1_c00121{left:6.146667pt;}
.x6_c00121{left:7.680000pt;}
.xc_c00121{left:16.893333pt;}
.x5_c00121{left:19.973333pt;}
.xd_c00121{left:26.106667pt;}
.x7_c00121{left:28.413333pt;}
.x3_c00121{left:29.946667pt;}
.x9_c00121{left:33.786667pt;}
.xb_c00121{left:43.013333pt;}
.x4_c00121{left:46.080000pt;}
.x8_c00121{left:50.693333pt;}
.xa_c00121{left:52.226667pt;}
.xf_c00121{left:66.813333pt;}
.x135_c00121{left:124.413333pt;}
.x136_c00121{left:128.253333pt;}
.x127_c00121{left:141.306667pt;}
.x120_c00121{left:144.386667pt;}
.x17_c00121{left:147.453333pt;}
.x124_c00121{left:150.533333pt;}
.x12c_c00121{left:155.906667pt;}
.xe3_c00121{left:157.440000pt;}
.xe6_c00121{left:162.053333pt;}
.xeb_c00121{left:165.893333pt;}
.x85_c00121{left:171.266667pt;}
.xef_c00121{left:172.800000pt;}
.x128_c00121{left:176.640000pt;}
.x30_c00121{left:178.173333pt;}
.x3f_c00121{left:182.013333pt;}
.x8a_c00121{left:185.093333pt;}
.xca_c00121{left:187.386667pt;}
.x11b_c00121{left:191.226667pt;}
.xe7_c00121{left:193.533333pt;}
.x31_c00121{left:195.839637pt;}
.x65_c00121{left:197.373333pt;}
.x48_c00121{left:199.680000pt;}
.x32_c00121{left:201.986667pt;}
.x18_c00121{left:203.520000pt;}
.x110_c00121{left:205.053333pt;}
.x131_c00121{left:211.963755pt;}
.x12d_c00121{left:213.506667pt;}
.xcb_c00121{left:215.040000pt;}
.x94_c00121{left:216.573333pt;}
.x132_c00121{left:218.880000pt;}
.xa2_c00121{left:224.253333pt;}
.x8b_c00121{left:226.560000pt;}
.xc4_c00121{left:229.626667pt;}
.xbe_c00121{left:231.173333pt;}
.xe8_c00121{left:232.706667pt;}
.xcc_c00121{left:234.240000pt;}
.x19_c00121{left:235.773333pt;}
.x52_c00121{left:240.386667pt;}
.x49_c00121{left:242.693333pt;}
.x6d_c00121{left:244.986667pt;}
.xf4_c00121{left:247.293333pt;}
.x112_c00121{left:249.600000pt;}
.x28_c00121{left:251.906667pt;}
.xb7_c00121{left:253.440000pt;}
.x6e_c00121{left:254.973333pt;}
.x95_c00121{left:258.053333pt;}
.x107_c00121{left:259.586667pt;}
.x40_c00121{left:261.120000pt;}
.x8c_c00121{left:262.653333pt;}
.x9d_c00121{left:264.960000pt;}
.x12e_c00121{left:267.266667pt;}
.xdf_c00121{left:270.333333pt;}
.xb9_c00121{left:272.640000pt;}
.x66_c00121{left:274.173333pt;}
.xd6_c00121{left:277.253333pt;}
.xe0_c00121{left:278.786667pt;}
.x6f_c00121{left:280.320000pt;}
.x73_c00121{left:281.853333pt;}
.xbf_c00121{left:284.160000pt;}
.x53_c00121{left:286.466667pt;}
.x96_c00121{left:288.000000pt;}
.x121_c00121{left:289.533333pt;}
.xd0_c00121{left:291.066667pt;}
.x29_c00121{left:296.453333pt;}
.x11_c00121{left:299.520000pt;}
.x54_c00121{left:301.826667pt;}
.x14_c00121{left:303.360000pt;}
.x67_c00121{left:304.893333pt;}
.x74_c00121{left:307.200000pt;}
.xc0_c00121{left:308.733333pt;}
.x122_c00121{left:311.813333pt;}
.x102_c00121{left:313.346667pt;}
.x12b_c00121{left:314.880000pt;}
.x97_c00121{left:317.186667pt;}
.x1a_c00121{left:318.720000pt;}
.xd7_c00121{left:320.253333pt;}
.x70_c00121{left:322.560000pt;}
.xf0_c00121{left:324.093333pt;}
.x1b_c00121{left:329.466667pt;}
.x10d_c00121{left:331.773333pt;}
.xe1_c00121{left:333.306667pt;}
.xba_c00121{left:335.613333pt;}
.x4a_c00121{left:337.146667pt;}
.xd1_c00121{left:338.693333pt;}
.xec_c00121{left:340.226667pt;}
.xa3_c00121{left:341.760000pt;}
.x55_c00121{left:343.293333pt;}
.x9e_c00121{left:345.600000pt;}
.x5b_c00121{left:347.906667pt;}
.x68_c00121{left:349.440000pt;}
.x7d_c00121{left:350.973333pt;}
.xc5_c00121{left:352.506667pt;}
.xd2_c00121{left:354.813333pt;}
.xa8_c00121{left:357.893333pt;}
.x69_c00121{left:361.733333pt;}
.xbb_c00121{left:363.266667pt;}
.xed_c00121{left:365.573333pt;}
.x8d_c00121{left:369.413333pt;}
.x113_c00121{left:370.946667pt;}
.x41_c00121{left:372.480000pt;}
.x5c_c00121{left:374.013333pt;}
.xb1_c00121{left:376.320000pt;}
.x114_c00121{left:380.933333pt;}
.x11c_c00121{left:382.466667pt;}
.x1c_c00121{left:384.773333pt;}
.xcd_c00121{left:386.306667pt;}
.x129_c00121{left:387.840000pt;}
.x4b_c00121{left:390.906667pt;}
.xc6_c00121{left:392.453333pt;}
.x7e_c00121{left:394.746667pt;}
.x75_c00121{left:397.053333pt;}
.x33_c00121{left:398.586667pt;}
.x56_c00121{left:401.666667pt;}
.xbc_c00121{left:403.200000pt;}
.x12_c00121{left:404.733333pt;}
.xdc_c00121{left:406.266667pt;}
.xc7_c00121{left:407.813333pt;}
.x115_c00121{left:410.106667pt;}
.xa4_c00121{left:411.653333pt;}
.x76_c00121{left:413.186667pt;}
.x123_c00121{left:414.720000pt;}
.x57_c00121{left:418.560000pt;}
.xfd_c00121{left:420.866667pt;}
.xd8_c00121{left:422.400000pt;}
.x8e_c00121{left:427.013333pt;}
.x12a_c00121{left:428.546667pt;}
.x4c_c00121{left:430.080000pt;}
.x5d_c00121{left:431.613333pt;}
.xc1_c00121{left:433.920000pt;}
.xc8_c00121{left:436.986667pt;}
.x34_c00121{left:440.826667pt;}
.x10c_c00121{left:443.133333pt;}
.x42_c00121{left:444.666667pt;}
.xb8_c00121{left:446.213333pt;}
.xa9_c00121{left:447.746667pt;}
.x104_c00121{left:450.053333pt;}
.x77_c00121{left:451.586667pt;}
.xfb_c00121{left:453.120000pt;}
.x71_c00121{left:456.186667pt;}
.x58_c00121{left:459.266667pt;}
.x86_c00121{left:467.706667pt;}
.x7f_c00121{left:476.160000pt;}
.x6a_c00121{left:477.693333pt;}
.x1d_c00121{left:480.000000pt;}
.x116_c00121{left:481.533333pt;}
.xb2_c00121{left:483.840000pt;}
.x35_c00121{left:486.906667pt;}
.x2a_c00121{left:489.213333pt;}
.xf9_c00121{left:490.746667pt;}
.x8f_c00121{left:492.293333pt;}
.xa5_c00121{left:493.826667pt;}
.x98_c00121{left:495.360000pt;}
.x1e_c00121{left:496.893333pt;}
.x6b_c00121{left:498.426667pt;}
.x108_c00121{left:500.733333pt;}
.x5e_c00121{left:506.880000pt;}
.xce_c00121{left:511.493333pt;}
.xc9_c00121{left:513.786667pt;}
.x117_c00121{left:516.866667pt;}
.xf1_c00121{left:519.933333pt;}
.xb3_c00121{left:521.466667pt;}
.x5f_c00121{left:525.306667pt;}
.xe2_c00121{left:526.853333pt;}
.x36_c00121{left:528.386667pt;}
.xd3_c00121{left:529.920000pt;}
.x4d_c00121{left:532.226667pt;}
.xc2_c00121{left:537.600000pt;}
.x43_c00121{left:540.666667pt;}
.x78_c00121{left:542.973333pt;}
.x37_c00121{left:545.280000pt;}
.x1f_c00121{left:546.813333pt;}
.x125_c00121{left:549.120000pt;}
.xa6_c00121{left:551.426667pt;}
.x2b_c00121{left:554.493333pt;}
.x90_c00121{left:556.026667pt;}
.xaa_c00121{left:557.573333pt;}
.x6c_c00121{left:559.866667pt;}
.x60_c00121{left:563.706667pt;}
.xdd_c00121{left:565.253333pt;}
.x105_c00121{left:568.320000pt;}
.x15_c00121{left:570.626667pt;}
.x44_c00121{left:572.933333pt;}
.x80_c00121{left:576.000000pt;}
.x118_c00121{left:579.066667pt;}
.x12f_c00121{left:581.373333pt;}
.x61_c00121{left:582.906667pt;}
.x4e_c00121{left:584.453333pt;}
.x20_c00121{left:585.986667pt;}
.xb4_c00121{left:588.293333pt;}
.x4f_c00121{left:592.133333pt;}
.xd9_c00121{left:594.426667pt;}
.x13_c00121{left:596.733333pt;}
.x79_c00121{left:598.266667pt;}
.xab_c00121{left:599.813333pt;}
.x119_c00121{left:602.880000pt;}
.x38_c00121{left:604.413333pt;}
.xf5_c00121{left:606.720000pt;}
.xda_c00121{left:608.253333pt;}
.x91_c00121{left:610.560000pt;}
.x72_c00121{left:612.866667pt;}
.x11d_c00121{left:615.173333pt;}
.x45_c00121{left:616.706667pt;}
.xf6_c00121{left:618.240000pt;}
.xee_c00121{left:619.773333pt;}
.x21_c00121{left:625.146667pt;}
.x2c_c00121{left:626.693333pt;}
.x99_c00121{left:628.986667pt;}
.x7a_c00121{left:637.440000pt;}
.xa7_c00121{left:640.506667pt;}
.xcf_c00121{left:642.053333pt;}
.xbd_c00121{left:645.893333pt;}
.x62_c00121{left:649.733333pt;}
.x11e_c00121{left:655.106667pt;}
.x92_c00121{left:656.640000pt;}
.x22_c00121{left:658.946667pt;}
.x59_c00121{left:662.013333pt;}
.xf7_c00121{left:665.093333pt;}
.xfe_c00121{left:666.626667pt;}
.x9f_c00121{left:668.160000pt;}
.x9a_c00121{left:670.466667pt;}
.x87_c00121{left:672.000000pt;}
.x10e_c00121{left:676.613333pt;}
.x81_c00121{left:678.146667pt;}
.xc3_c00121{left:681.213333pt;}
.x39_c00121{left:682.746667pt;}
.xac_c00121{left:684.293333pt;}
.x82_c00121{left:686.586667pt;}
.xde_c00121{left:688.893333pt;}
.xdb_c00121{left:691.200000pt;}
.x3a_c00121{left:692.733333pt;}
.xb5_c00121{left:695.040000pt;}
.x2d_c00121{left:698.106667pt;}
.x11f_c00121{left:700.413333pt;}
.x23_c00121{left:702.720000pt;}
.xb6_c00121{left:705.026667pt;}
.x7b_c00121{left:706.560000pt;}
.xd4_c00121{left:710.400000pt;}
.x63_c00121{left:711.933333pt;}
.x7c_c00121{left:714.240000pt;}
.xe9_c00121{left:715.773333pt;}
.xff_c00121{left:718.080000pt;}
.x11a_c00121{left:719.613333pt;}
.x46_c00121{left:721.146667pt;}
.x50_c00121{left:724.226667pt;}
.x16_c00121{left:725.760000pt;}
.xae_c00121{left:728.826667pt;}
.xd5_c00121{left:730.373333pt;}
.xf2_c00121{left:732.666667pt;}
.x9b_c00121{left:734.213333pt;}
.xea_c00121{left:735.746667pt;}
.xe4_c00121{left:737.280000pt;}
.x3b_c00121{left:738.813333pt;}
.xad_c00121{left:741.120000pt;}
.xfc_c00121{left:742.653333pt;}
.x88_c00121{left:744.960000pt;}
.x5a_c00121{left:747.266667pt;}
.x64_c00121{left:750.333333pt;}
.x93_c00121{left:753.413333pt;}
.x51_c00121{left:754.946667pt;}
.xa0_c00121{left:761.093333pt;}
.xaf_c00121{left:763.386667pt;}
.x130_c00121{left:766.466667pt;}
.xa1_c00121{left:768.000000pt;}
.x47_c00121{left:772.613333pt;}
.x83_c00121{left:774.906667pt;}
.x24_c00121{left:777.213333pt;}
.xb0_c00121{left:779.520000pt;}
.x84_c00121{left:781.826667pt;}
.x10f_c00121{left:783.360000pt;}
.x3c_c00121{left:787.200000pt;}
.x109_c00121{left:788.733333pt;}
.x89_c00121{left:790.266667pt;}
.x25_c00121{left:791.813781pt;}
.xfa_c00121{left:794.106667pt;}
.x101_c00121{left:795.653333pt;}
.x2e_c00121{left:797.946667pt;}
.xe5_c00121{left:800.253333pt;}
.x103_c00121{left:804.093333pt;}
.xf8_c00121{left:805.626667pt;}
.x26_c00121{left:807.933333pt;}
.x100_c00121{left:810.240000pt;}
.x3d_c00121{left:813.306667pt;}
.xf3_c00121{left:814.853333pt;}
.x27_c00121{left:816.386667pt;}
.x3e_c00121{left:820.226667pt;}
.x2f_c00121{left:821.760000pt;}
.x9c_c00121{left:824.066667pt;}
.x111_c00121{left:830.213333pt;}
.x10a_c00121{left:831.746667pt;}
.x106_c00121{left:834.813333pt;}
.x126_c00121{left:840.186667pt;}
.x133_c00121{left:843.266667pt;}
.x10b_c00121{left:847.106667pt;}
.x134_c00121{left:856.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_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_2d76b716281d93a6971cebcf.woff2')format("woff");}.ff1_c00122{font-family:ff1_c00122;line-height:1.109863;font-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_c00122{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m24_c00122{transform:matrix(0.033325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033325,0.000000,0.000000,0.250000,0,0);}
.mf1_c00122{transform:matrix(0.039475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039475,0.000000,0.000000,0.250000,0,0);}
.mf9_c00122{transform:matrix(0.057300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057300,0.000000,0.000000,0.250000,0,0);}
.mfd_c00122{transform:matrix(0.069725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069725,0.000000,0.000000,0.250000,0,0);}
.m161_c00122{transform:matrix(0.082425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082425,0.000000,0.000000,0.250000,0,0);}
.maa_c00122{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m69_c00122{transform:matrix(0.089900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089900,0.000000,0.000000,0.250000,0,0);}
.mc7_c00122{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m185_c00122{transform:matrix(0.094925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094925,0.000000,0.000000,0.250000,0,0);}
.m19f_c00122{transform:matrix(0.096125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096125,0.000000,0.000000,0.250000,0,0);}
.m1a_c00122{transform:matrix(0.096800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096800,0.000000,0.000000,0.250000,0,0);}
.mef_c00122{transform:matrix(0.099400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099400,0.000000,0.000000,0.250000,0,0);}
.m189_c00122{transform:matrix(0.100150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100150,0.000000,0.000000,0.250000,0,0);}
.m27_c00122{transform:matrix(0.101650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101650,0.000000,0.000000,0.250000,0,0);}
.mf7_c00122{transform:matrix(0.105075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105075,0.000000,0.000000,0.250000,0,0);}
.ma8_c00122{transform:matrix(0.105475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105475,0.000000,0.000000,0.250000,0,0);}
.m6_c00122{transform:matrix(0.108225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108225,0.000000,0.000000,0.250000,0,0);}
.m15f_c00122{transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);}
.m188_c00122{transform:matrix(0.110600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110600,0.000000,0.000000,0.250000,0,0);}
.m196_c00122{transform:matrix(0.111650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111650,0.000000,0.000000,0.250000,0,0);}
.m117_c00122{transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);}
.m136_c00122{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);}
.m139_c00122{transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);}
.m184_c00122{transform:matrix(0.115725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115725,0.000000,0.000000,0.250000,0,0);}
.m67_c00122{transform:matrix(0.116525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116525,0.000000,0.000000,0.250000,0,0);}
.m15d_c00122{transform:matrix(0.116950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116950,0.000000,0.000000,0.250000,0,0);}
.m15e_c00122{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);}
.m183_c00122{transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);}
.m13c_c00122{transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);}
.m195_c00122{transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);}
.m198_c00122{transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);}
.m187_c00122{transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);}
.m18a_c00122{transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00122{transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);}
.m199_c00122{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.m16d_c00122{transform:matrix(0.134550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134550,0.000000,0.000000,0.250000,0,0);}
.m17e_c00122{transform:matrix(0.134775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134775,0.000000,0.000000,0.250000,0,0);}
.m19b_c00122{transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);}
.m13e_c00122{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.m66_c00122{transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);}
.mf3_c00122{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00122{transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);}
.m193_c00122{transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);}
.mb_c00122{transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);}
.m76_c00122{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.m181_c00122{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m28_c00122{transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);}
.mdc_c00122{transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);}
.m182_c00122{transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);}
.m18b_c00122{transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);}
.m19e_c00122{transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);}
.m107_c00122{transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);}
.m14f_c00122{transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);}
.m18_c00122{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00122{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);}
.m102_c00122{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m165_c00122{transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);}
.m19d_c00122{transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);}
.m148_c00122{transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);}
.m35_c00122{transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00122{transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);}
.m70_c00122{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);}
.m164_c00122{transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);}
.mac_c00122{transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);}
.m18f_c00122{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.m26_c00122{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);}
.ma4_c00122{transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);}
.m13f_c00122{transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);}
.m21_c00122{transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);}
.m186_c00122{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);}
.m17d_c00122{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.m106_c00122{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m1f_c00122{transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);}
.m15b_c00122{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);}
.m16c_c00122{transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);}
.m179_c00122{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);}
.m171_c00122{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.m152_c00122{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.mc2_c00122{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m11d_c00122{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.m15a_c00122{transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);}
.m197_c00122{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);}
.mc3_c00122{transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);}
.m17f_c00122{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00122{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00122{transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);}
.m14_c00122{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m101_c00122{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.m6a_c00122{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.mdd_c00122{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m71_c00122{transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00122{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m180_c00122{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);}
.m103_c00122{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.m72_c00122{transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);}
.m140_c00122{transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);}
.mab_c00122{transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);}
.m1b_c00122{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.m105_c00122{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.m19a_c00122{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m6b_c00122{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);}
.m14e_c00122{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);}
.ma6_c00122{transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00122{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);}
.ma0_c00122{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.m168_c00122{transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);}
.m127_c00122{transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);}
.m150_c00122{transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);}
.m2f_c00122{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m81_c00122{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.m138_c00122{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m86_c00122{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.mf0_c00122{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.ma3_c00122{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.m17_c00122{transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);}
.m7c_c00122{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);}
.m173_c00122{transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);}
.m178_c00122{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m17c_c00122{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m16b_c00122{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);}
.m13a_c00122{transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);}
.m191_c00122{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.m177_c00122{transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);}
.m151_c00122{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.m15_c00122{transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);}
.m9c_c00122{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.m166_c00122{transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);}
.m23_c00122{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.m61_c00122{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m80_c00122{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.md2_c00122{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);}
.mb8_c00122{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m95_c00122{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m13d_c00122{transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);}
.m172_c00122{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.m125_c00122{transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);}
.m11e_c00122{transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);}
.m192_c00122{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m160_c00122{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m128_c00122{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);}
.m110_c00122{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m131_c00122{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);}
.mb6_c00122{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m1c_c00122{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.med_c00122{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m13b_c00122{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);}
.m149_c00122{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);}
.m20_c00122{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);}
.mca_c00122{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m10d_c00122{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);}
.m129_c00122{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.m63_c00122{transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);}
.m108_c00122{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);}
.m170_c00122{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m121_c00122{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);}
.m16f_c00122{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.m153_c00122{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);}
.m142_c00122{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.md3_c00122{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);}
.m92_c00122{transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);}
.m14c_c00122{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.me1_c00122{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);}
.mb9_c00122{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.m98_c00122{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);}
.m132_c00122{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);}
.m157_c00122{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.me4_c00122{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m1e_c00122{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m2c_c00122{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.me8_c00122{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);}
.m8f_c00122{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00122{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);}
.m75_c00122{transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);}
.m126_c00122{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m159_c00122{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);}
.me9_c00122{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);}
.m144_c00122{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m3e_c00122{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.mc6_c00122{transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00122{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);}
.m73_c00122{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);}
.m111_c00122{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.mba_c00122{transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);}
.m16e_c00122{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.mfc_c00122{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);}
.mda_c00122{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m5c_c00122{transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);}
.m4a_c00122{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m145_c00122{transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);}
.m60_c00122{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.me6_c00122{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);}
.mc1_c00122{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);}
.m17b_c00122{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.md1_c00122{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mee_c00122{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);}
.mea_c00122{transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);}
.m4b_c00122{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.m3b_c00122{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00122{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m8a_c00122{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m43_c00122{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m74_c00122{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);}
.m12e_c00122{transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);}
.m123_c00122{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.m34_c00122{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.m176_c00122{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m85_c00122{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.m2a_c00122{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m51_c00122{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.mff_c00122{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.m15c_c00122{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m13_c00122{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m104_c00122{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);}
.m6d_c00122{transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);}
.m84_c00122{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);}
.m39_c00122{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);}
.m190_c00122{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);}
.m11f_c00122{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);}
.m156_c00122{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);}
.md7_c00122{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);}
.m96_c00122{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);}
.m59_c00122{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m11b_c00122{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);}
.m9f_c00122{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00122{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.m65_c00122{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m175_c00122{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.ma_c00122{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);}
.m40_c00122{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);}
.m114_c00122{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.md6_c00122{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.m124_c00122{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.mfa_c00122{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);}
.m163_c00122{transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);}
.m99_c00122{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);}
.m134_c00122{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.mbe_c00122{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);}
.m19c_c00122{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);}
.m146_c00122{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);}
.m5a_c00122{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m8e_c00122{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.mc4_c00122{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.ma7_c00122{transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);}
.mcd_c00122{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);}
.m154_c00122{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m3f_c00122{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.m3c_c00122{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);}
.m112_c00122{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);}
.m18e_c00122{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);}
.m118_c00122{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);}
.m158_c00122{transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);}
.me5_c00122{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);}
.mc5_c00122{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.ma2_c00122{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00122{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);}
.m135_c00122{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);}
.m119_c00122{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);}
.me2_c00122{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.m174_c00122{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m130_c00122{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.mbd_c00122{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);}
.m7a_c00122{transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);}
.mdf_c00122{transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);}
.m169_c00122{transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);}
.m8d_c00122{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);}
.m54_c00122{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mb2_c00122{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);}
.mc8_c00122{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);}
.m9d_c00122{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.md4_c00122{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);}
.m3_c00122{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);}
.maf_c00122{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m53_c00122{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);}
.mb5_c00122{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.mcc_c00122{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.m2b_c00122{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);}
.m89_c00122{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00122{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.me7_c00122{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.md0_c00122{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.m122_c00122{transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);}
.m143_c00122{transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);}
.m12b_c00122{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m58_c00122{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);}
.mbf_c00122{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);}
.m5e_c00122{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.mce_c00122{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.mec_c00122{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.m14b_c00122{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);}
.m25_c00122{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);}
.mdb_c00122{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.m12f_c00122{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);}
.md9_c00122{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);}
.m52_c00122{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);}
.m155_c00122{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.me0_c00122{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);}
.m167_c00122{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00122{transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);}
.m3d_c00122{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);}
.m11a_c00122{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);}
.ma9_c00122{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);}
.m57_c00122{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);}
.mc9_c00122{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);}
.mcf_c00122{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m5d_c00122{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m97_c00122{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);}
.m12a_c00122{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);}
.m90_c00122{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);}
.m79_c00122{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);}
.m120_c00122{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);}
.m7e_c00122{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);}
.m12c_c00122{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);}
.mde_c00122{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);}
.m8b_c00122{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);}
.m10a_c00122{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);}
.ma1_c00122{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);}
.m14d_c00122{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00122{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m115_c00122{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);}
.mad_c00122{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);}
.me3_c00122{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.meb_c00122{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m12d_c00122{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m83_c00122{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);}
.m29_c00122{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9_c00122{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_c00122{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);}
.m42_c00122{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);}
.m12_c00122{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);}
.m78_c00122{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c00122{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mae_c00122{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m82_c00122{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);}
.m16a_c00122{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00122{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);}
.m7d_c00122{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);}
.m45_c00122{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00122{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);}
.m19_c00122{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00122{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mf_c00122{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);}
.m16_c00122{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m41_c00122{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);}
.m48_c00122{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);}
.m8_c00122{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m47_c00122{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m37_c00122{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);}
.m38_c00122{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c00122{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00122{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);}
.m0_c00122{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m88_c00122{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00122{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c00122{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00122{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m100_c00122{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00122{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00122{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m113_c00122{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);}
.mfb_c00122{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m31_c00122{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m55_c00122{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m62_c00122{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00122{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);}
.m10_c00122{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);}
.m4_c00122{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00122{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);}
.m87_c00122{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c00122{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md_c00122{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00122{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m194_c00122{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m68_c00122{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);}
.m6e_c00122{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m147_c00122{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);}
.m14a_c00122{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m11_c00122{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);}
.md5_c00122{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m109_c00122{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m50_c00122{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00122{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00122{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);}
.m6c_c00122{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);}
.m133_c00122{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.md8_c00122{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m137_c00122{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);}
.mb0_c00122{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00122{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00122{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m93_c00122{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);}
.m49_c00122{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00122{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m36_c00122{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m56_c00122{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00122{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m162_c00122{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m77_c00122{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m94_c00122{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m91_c00122{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);}
.m64_c00122{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00122{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m44_c00122{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);}
.m8c_c00122{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m17a_c00122{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);}
.m11c_c00122{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m30_c00122{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00122{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00122{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00122{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m18d_c00122{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m33_c00122{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m5_c00122{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00122{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m18c_c00122{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m1_c00122{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00122{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m116_c00122{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00122{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);}
.m1a0_c00122{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);}
.m9a_c00122{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00122{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00122{transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00122{transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);}
.m141_c00122{transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.680000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00122{transform:matrix(1.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c00122{vertical-align:0.000000px;}
.v1_c00122{vertical-align:3.480000px;}
.v2_c00122{vertical-align:6.960000px;}
.ls1_c00122{letter-spacing:0.000000px;}
.ls0_c00122{letter-spacing:85.213440px;}
.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;}
}
.ws1_c00122{word-spacing:-17.034720px;}
.ws0_c00122{word-spacing:-12.487668px;}
.ws2_c00122{word-spacing:0.000000px;}
.fc0_c00122{color:transparent;}
.fs10_c00122{font-size:3.456000px;}
.fs12_c00122{font-size:6.000000px;}
.fs1d_c00122{font-size:6.900000px;}
.fs7_c00122{font-size:10.380000px;}
.fs1f_c00122{font-size:13.800000px;}
.fs1a_c00122{font-size:17.280000px;}
.fs1_c00122{font-size:20.760000px;}
.fs2_c00122{font-size:24.180000px;}
.fs0_c00122{font-size:27.660000px;}
.fs19_c00122{font-size:31.080000px;}
.fs3_c00122{font-size:34.560000px;}
.fs1c_c00122{font-size:38.040000px;}
.fs1e_c00122{font-size:41.460000px;}
.fs1b_c00122{font-size:44.940000px;}
.fs4_c00122{font-size:48.360000px;}
.fsf_c00122{font-size:51.840000px;}
.fs8_c00122{font-size:55.320000px;}
.fsd_c00122{font-size:58.740000px;}
.fsc_c00122{font-size:62.220000px;}
.fs9_c00122{font-size:65.640000px;}
.fsa_c00122{font-size:69.120000px;}
.fse_c00122{font-size:72.600000px;}
.fs11_c00122{font-size:76.020000px;}
.fs16_c00122{font-size:79.500000px;}
.fsb_c00122{font-size:82.920000px;}
.fs17_c00122{font-size:86.400000px;}
.fs15_c00122{font-size:89.880000px;}
.fs5_c00122{font-size:93.300000px;}
.fs14_c00122{font-size:96.780000px;}
.fs18_c00122{font-size:100.200000px;}
.fs6_c00122{font-size:103.680000px;}
.fs20_c00122{font-size:107.160000px;}
.fs21_c00122{font-size:114.060000px;}
.fs13_c00122{font-size:117.480000px;}
.y0_c00122{bottom:0.000000px;}
.y1a8_c00122{bottom:410.400000px;}
.y1a9_c00122{bottom:411.270000px;}
.y1a5_c00122{bottom:412.995000px;}
.y1a4_c00122{bottom:413.850000px;}
.y1a3_c00122{bottom:418.170000px;}
.y1a7_c00122{bottom:428.550000px;}
.y1a6_c00122{bottom:430.275000px;}
.y1a1_c00122{bottom:431.130000px;}
.y1a2_c00122{bottom:432.000000px;}
.y19f_c00122{bottom:432.870000px;}
.y19e_c00122{bottom:433.725000px;}
.y1a0_c00122{bottom:444.090000px;}
.y19c_c00122{bottom:448.410000px;}
.y19a_c00122{bottom:449.280000px;}
.y198_c00122{bottom:450.150000px;}
.y19b_c00122{bottom:451.005000px;}
.y199_c00122{bottom:451.875000px;}
.y19d_c00122{bottom:452.730000px;}
.y197_c00122{bottom:467.430000px;}
.y196_c00122{bottom:471.750000px;}
.y195_c00122{bottom:474.330000px;}
.y192_c00122{bottom:476.070000px;}
.y194_c00122{bottom:476.925000px;}
.y193_c00122{bottom:477.795000px;}
.y18e_c00122{bottom:486.435000px;}
.y190_c00122{bottom:487.290000px;}
.y191_c00122{bottom:488.160000px;}
.y18f_c00122{bottom:489.030000px;}
.y18c_c00122{bottom:491.610000px;}
.y18b_c00122{bottom:492.480000px;}
.y18a_c00122{bottom:493.350000px;}
.y189_c00122{bottom:495.075000px;}
.y18d_c00122{bottom:495.930000px;}
.y187_c00122{bottom:507.165000px;}
.y186_c00122{bottom:509.760000px;}
.y185_c00122{bottom:512.355000px;}
.y183_c00122{bottom:513.210000px;}
.y184_c00122{bottom:514.080000px;}
.y182_c00122{bottom:515.805000px;}
.y188_c00122{bottom:531.360000px;}
.y180_c00122{bottom:533.085000px;}
.y17f_c00122{bottom:533.955000px;}
.y17c_c00122{bottom:534.810000px;}
.y17b_c00122{bottom:535.680000px;}
.y17a_c00122{bottom:536.550000px;}
.y17e_c00122{bottom:537.405000px;}
.y17d_c00122{bottom:542.595000px;}
.y181_c00122{bottom:543.450000px;}
.y179_c00122{bottom:551.235000px;}
.y178_c00122{bottom:554.685000px;}
.y173_c00122{bottom:556.410000px;}
.y174_c00122{bottom:557.280000px;}
.y175_c00122{bottom:558.150000px;}
.y176_c00122{bottom:559.875000px;}
.y177_c00122{bottom:560.730000px;}
.y172_c00122{bottom:573.690000px;}
.y170_c00122{bottom:574.560000px;}
.y16e_c00122{bottom:575.430000px;}
.y16c_c00122{bottom:577.155000px;}
.y16b_c00122{bottom:578.010000px;}
.y16d_c00122{bottom:578.880000px;}
.y171_c00122{bottom:579.750000px;}
.y16f_c00122{bottom:581.475000px;}
.y16a_c00122{bottom:589.245000px;}
.y168_c00122{bottom:593.565000px;}
.y166_c00122{bottom:594.435000px;}
.y169_c00122{bottom:595.290000px;}
.y164_c00122{bottom:597.885000px;}
.y165_c00122{bottom:598.755000px;}
.y167_c00122{bottom:599.610000px;}
.y162_c00122{bottom:600.480000px;}
.y163_c00122{bottom:603.930000px;}
.y161_c00122{bottom:611.715000px;}
.y160_c00122{bottom:614.310000px;}
.y15f_c00122{bottom:615.165000px;}
.y15e_c00122{bottom:616.035000px;}
.y15d_c00122{bottom:618.630000px;}
.y15c_c00122{bottom:634.170000px;}
.y15b_c00122{bottom:636.765000px;}
.y157_c00122{bottom:637.635000px;}
.y155_c00122{bottom:638.490000px;}
.y15a_c00122{bottom:639.360000px;}
.y158_c00122{bottom:640.230000px;}
.y159_c00122{bottom:641.085000px;}
.y156_c00122{bottom:644.550000px;}
.y153_c00122{bottom:654.045000px;}
.y154_c00122{bottom:654.915000px;}
.y14f_c00122{bottom:656.640000px;}
.y151_c00122{bottom:657.510000px;}
.y150_c00122{bottom:658.365000px;}
.y14d_c00122{bottom:659.235000px;}
.y152_c00122{bottom:660.090000px;}
.y14e_c00122{bottom:663.555000px;}
.y14c_c00122{bottom:673.050000px;}
.y149_c00122{bottom:674.790000px;}
.y14a_c00122{bottom:676.515000px;}
.y146_c00122{bottom:678.240000px;}
.y148_c00122{bottom:679.110000px;}
.y144_c00122{bottom:679.965000px;}
.y145_c00122{bottom:680.835000px;}
.y147_c00122{bottom:683.430000px;}
.y14b_c00122{bottom:685.155000px;}
.y140_c00122{bottom:690.330000px;}
.y141_c00122{bottom:692.070000px;}
.y13e_c00122{bottom:692.925000px;}
.y13d_c00122{bottom:694.650000px;}
.y13c_c00122{bottom:695.520000px;}
.y13a_c00122{bottom:696.390000px;}
.y139_c00122{bottom:697.245000px;}
.y142_c00122{bottom:698.970000px;}
.y13f_c00122{bottom:703.290000px;}
.y13b_c00122{bottom:705.030000px;}
.y143_c00122{bottom:707.610000px;}
.y138_c00122{bottom:712.800000px;}
.y136_c00122{bottom:714.525000px;}
.y134_c00122{bottom:717.120000px;}
.y132_c00122{bottom:717.990000px;}
.y130_c00122{bottom:718.845000px;}
.y133_c00122{bottom:719.715000px;}
.y137_c00122{bottom:720.570000px;}
.y131_c00122{bottom:721.440000px;}
.y135_c00122{bottom:722.310000px;}
.y12e_c00122{bottom:735.270000px;}
.y12a_c00122{bottom:737.850000px;}
.y12b_c00122{bottom:738.720000px;}
.y12f_c00122{bottom:739.590000px;}
.y12d_c00122{bottom:743.040000px;}
.y12c_c00122{bottom:743.910000px;}
.y129_c00122{bottom:754.275000px;}
.y128_c00122{bottom:755.130000px;}
.y127_c00122{bottom:756.000000px;}
.y125_c00122{bottom:756.870000px;}
.y126_c00122{bottom:758.595000px;}
.y123_c00122{bottom:761.190000px;}
.y122_c00122{bottom:763.770000px;}
.y124_c00122{bottom:764.640000px;}
.y121_c00122{bottom:774.150000px;}
.y11f_c00122{bottom:776.730000px;}
.y11d_c00122{bottom:777.600000px;}
.y11c_c00122{bottom:778.470000px;}
.y120_c00122{bottom:779.325000px;}
.y11a_c00122{bottom:781.050000px;}
.y11e_c00122{bottom:781.920000px;}
.y119_c00122{bottom:782.790000px;}
.y11b_c00122{bottom:784.515000px;}
.y118_c00122{bottom:787.110000px;}
.y117_c00122{bottom:794.880000px;}
.y115_c00122{bottom:796.605000px;}
.y114_c00122{bottom:797.475000px;}
.y112_c00122{bottom:798.330000px;}
.y10f_c00122{bottom:799.200000px;}
.y116_c00122{bottom:800.070000px;}
.y110_c00122{bottom:800.925000px;}
.y113_c00122{bottom:801.795000px;}
.y10e_c00122{bottom:802.650000px;}
.y111_c00122{bottom:803.520000px;}
.y10c_c00122{bottom:815.610000px;}
.y106_c00122{bottom:817.350000px;}
.y10d_c00122{bottom:819.075000px;}
.y1ad_c00122{bottom:819.930000px;}
.y105_c00122{bottom:820.800000px;}
.y10b_c00122{bottom:821.670000px;}
.y108_c00122{bottom:822.525000px;}
.y109_c00122{bottom:823.395000px;}
.y107_c00122{bottom:824.250000px;}
.y10a_c00122{bottom:832.035000px;}
.y104_c00122{bottom:834.630000px;}
.y102_c00122{bottom:837.210000px;}
.y101_c00122{bottom:838.080000px;}
.y100_c00122{bottom:838.950000px;}
.yff_c00122{bottom:839.805000px;}
.y103_c00122{bottom:840.675000px;}
.yfe_c00122{bottom:848.445000px;}
.yfc_c00122{bottom:851.040000px;}
.yf8_c00122{bottom:852.765000px;}
.yf6_c00122{bottom:853.635000px;}
.yf4_c00122{bottom:857.085000px;}
.yf9_c00122{bottom:857.955000px;}
.yfd_c00122{bottom:858.810000px;}
.yfb_c00122{bottom:862.275000px;}
.yfa_c00122{bottom:864.000000px;}
.yf5_c00122{bottom:868.320000px;}
.yf7_c00122{bottom:871.770000px;}
.yf3_c00122{bottom:874.365000px;}
.yf1_c00122{bottom:876.090000px;}
.yf0_c00122{bottom:876.960000px;}
.yee_c00122{bottom:877.830000px;}
.yed_c00122{bottom:878.685000px;}
.yeb_c00122{bottom:880.410000px;}
.yea_c00122{bottom:881.280000px;}
.yec_c00122{bottom:883.875000px;}
.yef_c00122{bottom:884.730000px;}
.yf2_c00122{bottom:889.920000px;}
.ye8_c00122{bottom:895.965000px;}
.ye5_c00122{bottom:898.560000px;}
.ye4_c00122{bottom:899.430000px;}
.ye7_c00122{bottom:900.285000px;}
.ye3_c00122{bottom:901.155000px;}
.ye6_c00122{bottom:902.010000px;}
.ye9_c00122{bottom:913.245000px;}
.ye0_c00122{bottom:916.710000px;}
.ye2_c00122{bottom:918.435000px;}
.ydf_c00122{bottom:920.160000px;}
.ydd_c00122{bottom:921.030000px;}
.ydc_c00122{bottom:921.885000px;}
.ye1_c00122{bottom:922.755000px;}
.ydb_c00122{bottom:923.610000px;}
.yde_c00122{bottom:924.480000px;}
.yda_c00122{bottom:925.350000px;}
.yd9_c00122{bottom:926.205000px;}
.yd7_c00122{bottom:936.570000px;}
.yd8_c00122{bottom:937.440000px;}
.yd3_c00122{bottom:939.165000px;}
.yd1_c00122{bottom:940.035000px;}
.yd2_c00122{bottom:940.890000px;}
.yd6_c00122{bottom:941.760000px;}
.yd4_c00122{bottom:945.210000px;}
.yd5_c00122{bottom:946.080000px;}
.ycf_c00122{bottom:957.315000px;}
.ycd_c00122{bottom:959.040000px;}
.ycb_c00122{bottom:959.910000px;}
.yca_c00122{bottom:960.765000px;}
.yd0_c00122{bottom:961.635000px;}
.yc9_c00122{bottom:962.490000px;}
.yce_c00122{bottom:963.360000px;}
.ycc_c00122{bottom:965.085000px;}
.yc6_c00122{bottom:977.190000px;}
.yc7_c00122{bottom:978.045000px;}
.yc3_c00122{bottom:978.915000px;}
.yc5_c00122{bottom:979.770000px;}
.yc2_c00122{bottom:980.640000px;}
.yc8_c00122{bottom:982.365000px;}
.yc0_c00122{bottom:985.830000px;}
.yc4_c00122{bottom:986.685000px;}
.yc1_c00122{bottom:989.280000px;}
.ybe_c00122{bottom:997.920000px;}
.ybc_c00122{bottom:999.645000px;}
.yb7_c00122{bottom:1001.370000px;}
.ybf_c00122{bottom:1002.240000px;}
.ybd_c00122{bottom:1003.965000px;}
.yb9_c00122{bottom:1004.835000px;}
.yba_c00122{bottom:1005.690000px;}
.ybb_c00122{bottom:1006.560000px;}
.yb8_c00122{bottom:1013.475000px;}
.yb4_c00122{bottom:1017.795000px;}
.yb3_c00122{bottom:1019.520000px;}
.yae_c00122{bottom:1020.390000px;}
.yaf_c00122{bottom:1021.245000px;}
.yb1_c00122{bottom:1022.970000px;}
.yb0_c00122{bottom:1023.840000px;}
.yb2_c00122{bottom:1024.710000px;}
.yad_c00122{bottom:1026.435000px;}
.y1ab_c00122{bottom:1028.160000px;}
.yb5_c00122{bottom:1030.755000px;}
.yb6_c00122{bottom:1037.670000px;}
.yac_c00122{bottom:1038.525000px;}
.ya9_c00122{bottom:1040.250000px;}
.ya5_c00122{bottom:1041.120000px;}
.ya2_c00122{bottom:1041.990000px;}
.yab_c00122{bottom:1042.845000px;}
.ya8_c00122{bottom:1043.715000px;}
.yaa_c00122{bottom:1044.570000px;}
.ya6_c00122{bottom:1046.310000px;}
.ya4_c00122{bottom:1047.165000px;}
.ya7_c00122{bottom:1048.035000px;}
.ya3_c00122{bottom:1052.355000px;}
.ya0_c00122{bottom:1058.400000px;}
.y1aa_c00122{bottom:1059.270000px;}
.y9e_c00122{bottom:1060.995000px;}
.y9b_c00122{bottom:1063.590000px;}
.y9c_c00122{bottom:1064.445000px;}
.y9f_c00122{bottom:1065.315000px;}
.ya1_c00122{bottom:1066.170000px;}
.y9a_c00122{bottom:1069.635000px;}
.y9d_c00122{bottom:1071.360000px;}
.y99_c00122{bottom:1074.810000px;}
.y95_c00122{bottom:1075.680000px;}
.y94_c00122{bottom:1076.550000px;}
.y91_c00122{bottom:1077.405000px;}
.y90_c00122{bottom:1079.130000px;}
.y97_c00122{bottom:1080.000000px;}
.y92_c00122{bottom:1080.870000px;}
.y98_c00122{bottom:1083.450000px;}
.y93_c00122{bottom:1084.320000px;}
.y96_c00122{bottom:1085.190000px;}
.y8f_c00122{bottom:1088.640000px;}
.y8e_c00122{bottom:1099.005000px;}
.y8d_c00122{bottom:1100.730000px;}
.y8a_c00122{bottom:1101.600000px;}
.y89_c00122{bottom:1104.195000px;}
.y8b_c00122{bottom:1105.050000px;}
.y8c_c00122{bottom:1106.790000px;}
.y88_c00122{bottom:1108.515000px;}
.y87_c00122{bottom:1111.965000px;}
.y83_c00122{bottom:1118.880000px;}
.y85_c00122{bottom:1119.750000px;}
.y82_c00122{bottom:1120.605000px;}
.y84_c00122{bottom:1121.475000px;}
.y7f_c00122{bottom:1122.330000px;}
.y81_c00122{bottom:1123.200000px;}
.y7d_c00122{bottom:1124.070000px;}
.y7c_c00122{bottom:1124.925000px;}
.y7e_c00122{bottom:1127.520000px;}
.y80_c00122{bottom:1128.390000px;}
.y86_c00122{bottom:1134.435000px;}
.y78_c00122{bottom:1138.755000px;}
.y7a_c00122{bottom:1139.610000px;}
.y77_c00122{bottom:1140.480000px;}
.y7b_c00122{bottom:1141.350000px;}
.y74_c00122{bottom:1142.205000px;}
.y73_c00122{bottom:1143.075000px;}
.y79_c00122{bottom:1144.800000px;}
.y75_c00122{bottom:1148.250000px;}
.y76_c00122{bottom:1153.440000px;}
.y72_c00122{bottom:1159.485000px;}
.y71_c00122{bottom:1160.355000px;}
.y70_c00122{bottom:1162.080000px;}
.y6e_c00122{bottom:1162.950000px;}
.y6f_c00122{bottom:1163.805000px;}
.y6c_c00122{bottom:1164.675000px;}
.y6a_c00122{bottom:1165.530000px;}
.y6d_c00122{bottom:1166.400000px;}
.y6b_c00122{bottom:1168.125000px;}
.y69_c00122{bottom:1169.850000px;}
.y68_c00122{bottom:1170.720000px;}
.y67_c00122{bottom:1178.490000px;}
.y64_c00122{bottom:1180.230000px;}
.y66_c00122{bottom:1181.955000px;}
.y65_c00122{bottom:1182.810000px;}
.y62_c00122{bottom:1183.680000px;}
.y5f_c00122{bottom:1184.550000px;}
.y60_c00122{bottom:1186.275000px;}
.y61_c00122{bottom:1188.000000px;}
.y63_c00122{bottom:1188.870000px;}
.y5b_c00122{bottom:1200.960000px;}
.y57_c00122{bottom:1201.830000px;}
.y5d_c00122{bottom:1202.685000px;}
.y58_c00122{bottom:1203.555000px;}
.y59_c00122{bottom:1204.410000px;}
.y5e_c00122{bottom:1205.280000px;}
.y5c_c00122{bottom:1206.150000px;}
.y55_c00122{bottom:1207.875000px;}
.y5a_c00122{bottom:1208.730000px;}
.y56_c00122{bottom:1209.600000px;}
.y54_c00122{bottom:1214.790000px;}
.y53_c00122{bottom:1215.645000px;}
.y52_c00122{bottom:1217.370000px;}
.y50_c00122{bottom:1218.240000px;}
.y4f_c00122{bottom:1219.110000px;}
.y4e_c00122{bottom:1220.835000px;}
.y51_c00122{bottom:1226.010000px;}
.y4d_c00122{bottom:1226.880000px;}
.y4c_c00122{bottom:1228.605000px;}
.y4b_c00122{bottom:1240.710000px;}
.y49_c00122{bottom:1241.565000px;}
.y4a_c00122{bottom:1242.435000px;}
.y46_c00122{bottom:1243.290000px;}
.y42_c00122{bottom:1244.160000px;}
.y48_c00122{bottom:1245.885000px;}
.y45_c00122{bottom:1246.755000px;}
.y44_c00122{bottom:1250.205000px;}
.y47_c00122{bottom:1259.715000px;}
.y41_c00122{bottom:1260.570000px;}
.y43_c00122{bottom:1262.310000px;}
.y3f_c00122{bottom:1263.165000px;}
.y3a_c00122{bottom:1264.890000px;}
.y3c_c00122{bottom:1265.760000px;}
.y40_c00122{bottom:1266.630000px;}
.y3b_c00122{bottom:1267.485000px;}
.y3e_c00122{bottom:1268.355000px;}
.y3d_c00122{bottom:1269.210000px;}
.y39_c00122{bottom:1274.400000px;}
.y36_c00122{bottom:1283.040000px;}
.y38_c00122{bottom:1283.910000px;}
.y37_c00122{bottom:1284.765000px;}
.y35_c00122{bottom:1286.490000px;}
.y31_c00122{bottom:1287.360000px;}
.y32_c00122{bottom:1288.230000px;}
.y34_c00122{bottom:1289.085000px;}
.y33_c00122{bottom:1289.955000px;}
.y30_c00122{bottom:1293.405000px;}
.y2f_c00122{bottom:1296.000000px;}
.y2d_c00122{bottom:1302.045000px;}
.y2c_c00122{bottom:1302.915000px;}
.y29_c00122{bottom:1303.770000px;}
.y28_c00122{bottom:1304.640000px;}
.y2e_c00122{bottom:1305.510000px;}
.y27_c00122{bottom:1307.235000px;}
.y2b_c00122{bottom:1308.960000px;}
.y2a_c00122{bottom:1309.830000px;}
.y23_c00122{bottom:1322.790000px;}
.y21_c00122{bottom:1323.645000px;}
.y22_c00122{bottom:1324.515000px;}
.y25_c00122{bottom:1327.110000px;}
.y26_c00122{bottom:1327.965000px;}
.y24_c00122{bottom:1328.835000px;}
.y20_c00122{bottom:1329.690000px;}
.y1f_c00122{bottom:1330.560000px;}
.y1ac_c00122{bottom:1339.200000px;}
.y1e_c00122{bottom:1342.650000px;}
.y1c_c00122{bottom:1343.520000px;}
.y1a_c00122{bottom:1345.245000px;}
.y1b_c00122{bottom:1346.970000px;}
.y1d_c00122{bottom:1348.710000px;}
.y18_c00122{bottom:1349.565000px;}
.y19_c00122{bottom:1351.290000px;}
.y16_c00122{bottom:1362.525000px;}
.y15_c00122{bottom:1363.395000px;}
.y14_c00122{bottom:1364.250000px;}
.y17_c00122{bottom:1365.120000px;}
.yf_c00122{bottom:1366.845000px;}
.ye_c00122{bottom:1367.715000px;}
.y13_c00122{bottom:1368.570000px;}
.y10_c00122{bottom:1369.440000px;}
.y12_c00122{bottom:1370.310000px;}
.y11_c00122{bottom:1371.165000px;}
.yd_c00122{bottom:1387.590000px;}
.yb_c00122{bottom:1391.910000px;}
.ya_c00122{bottom:1392.765000px;}
.y6_c00122{bottom:1394.490000px;}
.y8_c00122{bottom:1395.360000px;}
.y5_c00122{bottom:1396.230000px;}
.y7_c00122{bottom:1397.085000px;}
.y9_c00122{bottom:1397.955000px;}
.yc_c00122{bottom:1405.725000px;}
.y4_c00122{bottom:1413.510000px;}
.y2_c00122{bottom:1421.280000px;}
.y3_c00122{bottom:1423.875000px;}
.y1_c00122{bottom:1438.560000px;}
.h12_c00122{height:3.110063px;}
.h14_c00122{height:5.399414px;}
.h1f_c00122{height:6.209326px;}
.h9_c00122{height:9.340986px;}
.h21_c00122{height:12.418652px;}
.h1c_c00122{height:15.550313px;}
.h3_c00122{height:18.681973px;}
.h4_c00122{height:21.759639px;}
.h2_c00122{height:24.891299px;}
.h1b_c00122{height:27.968965px;}
.h5_c00122{height:31.100625px;}
.h1e_c00122{height:34.232285px;}
.h20_c00122{height:37.309951px;}
.h1d_c00122{height:40.441611px;}
.h6_c00122{height:43.519277px;}
.h11_c00122{height:46.650937px;}
.ha_c00122{height:49.782598px;}
.h23_c00122{height:50.130938px;}
.hf_c00122{height:52.860264px;}
.he_c00122{height:55.991924px;}
.hb_c00122{height:59.069590px;}
.hc_c00122{height:62.201250px;}
.h10_c00122{height:65.332910px;}
.h13_c00122{height:68.410576px;}
.h18_c00122{height:71.542236px;}
.hd_c00122{height:74.619902px;}
.h19_c00122{height:77.751563px;}
.h17_c00122{height:80.883223px;}
.h7_c00122{height:83.960889px;}
.h16_c00122{height:87.092549px;}
.h1a_c00122{height:90.170215px;}
.h8_c00122{height:93.301875px;}
.h22_c00122{height:96.433535px;}
.h24_c00122{height:102.642861px;}
.h15_c00122{height:105.720527px;}
.h0_c00122{height:1517.190000px;}
.h1_c00122{height:1517.250000px;}
.w0_c00122{width:1090.365000px;}
.w1_c00122{width:1090.500000px;}
.x0_c00122{left:0.000000px;}
.xc9_c00122{left:137.370000px;}
.x10b_c00122{left:141.690000px;}
.x10e_c00122{left:144.285000px;}
.xca_c00122{left:155.520000px;}
.x10c_c00122{left:157.245000px;}
.x61_c00122{left:160.710000px;}
.x6b_c00122{left:166.755000px;}
.xdd_c00122{left:169.350000px;}
.xd9_c00122{left:171.075000px;}
.x38_c00122{left:173.670000px;}
.x40_c00122{left:177.120000px;}
.xeb_c00122{left:180.570000px;}
.x56_c00122{left:183.165000px;}
.xc2_c00122{left:185.760000px;}
.xb5_c00122{left:188.355000px;}
.x41_c00122{left:190.950000px;}
.xbb_c00122{left:196.125000px;}
.xad_c00122{left:199.590000px;}
.x101_c00122{left:203.910000px;}
.x8f_c00122{left:205.635000px;}
.xb2_c00122{left:208.230000px;}
.xa8_c00122{left:211.680000px;}
.xb6_c00122{left:213.405000px;}
.x75_c00122{left:216.000000px;}
.x62_c00122{left:219.450000px;}
.xb3_c00122{left:221.190000px;}
.x4b_c00122{left:222.915000px;}
.x98_c00122{left:225.510000px;}
.x1c_c00122{left:228.090000px;}
.xbc_c00122{left:229.830000px;}
.xe2_c00122{left:231.555000px;}
.xa0_c00122{left:233.280000px;}
.x7_c00122{left:235.005000px;}
.x1d_c00122{left:237.600000px;}
.x3_c00122{left:245.370000px;}
.xd3_c00122{left:252.285000px;}
.xe7_c00122{left:256.605000px;}
.xa9_c00122{left:259.200000px;}
.x57_c00122{left:260.925000px;}
.x30_c00122{left:262.650000px;}
.xcb_c00122{left:264.390000px;}
.x7f_c00122{left:266.970000px;}
.x99_c00122{left:268.710000px;}
.x8_c00122{left:273.030000px;}
.x80_c00122{left:274.755000px;}
.xf3_c00122{left:279.075000px;}
.x4c_c00122{left:280.800000px;}
.x76_c00122{left:283.395000px;}
.x39_c00122{left:285.120000px;}
.x2b_c00122{left:286.845000px;}
.x9_c00122{left:288.570000px;}
.x106_c00122{left:291.165000px;}
.x81_c00122{left:292.890000px;}
.x42_c00122{left:295.485000px;}
.xae_c00122{left:297.210000px;}
.x1e_c00122{left:299.805000px;}
.x77_c00122{left:304.995000px;}
.xb7_c00122{left:308.445000px;}
.xc3_c00122{left:311.040000px;}
.x63_c00122{left:314.490000px;}
.x109_c00122{left:316.230000px;}
.x90_c00122{left:317.955000px;}
.x107_c00122{left:321.405000px;}
.xa_c00122{left:323.130000px;}
.x2c_c00122{left:324.870000px;}
.x1f_c00122{left:328.320000px;}
.x31_c00122{left:330.915000px;}
.x102_c00122{left:332.640000px;}
.xe3_c00122{left:336.090000px;}
.x91_c00122{left:338.685000px;}
.xb_c00122{left:341.280000px;}
.xc4_c00122{left:343.005000px;}
.xfe_c00122{left:345.600000px;}
.xda_c00122{left:347.325000px;}
.xcc_c00122{left:349.050000px;}
.x78_c00122{left:351.645000px;}
.x79_c00122{left:355.110000px;}
.xfb_c00122{left:356.835000px;}
.xc_c00122{left:363.750000px;}
.x43_c00122{left:366.330000px;}
.x3a_c00122{left:371.520000px;}
.x4d_c00122{left:373.245000px;}
.xf4_c00122{left:375.840000px;}
.x64_c00122{left:378.435000px;}
.xf0_c00122{left:380.160000px;}
.x4e_c00122{left:381.885000px;}
.x20_c00122{left:385.350000px;}
.x58_c00122{left:387.075000px;}
.x21_c00122{left:389.670000px;}
.x6c_c00122{left:391.395000px;}
.x92_c00122{left:393.120000px;}
.x59_c00122{left:395.715000px;}
.xd0_c00122{left:397.440000px;}
.x82_c00122{left:400.890000px;}
.xa5_c00122{left:404.355000px;}
.x10a_c00122{left:408.675000px;}
.x10d_c00122{left:412.125000px;}
.xbd_c00122{left:413.850000px;}
.x32_c00122{left:415.590000px;}
.x4f_c00122{left:418.170000px;}
.xd_c00122{left:420.765000px;}
.xe4_c00122{left:423.360000px;}
.xc5_c00122{left:425.085000px;}
.xb8_c00122{left:427.680000px;}
.x22_c00122{left:431.130000px;}
.x7a_c00122{left:432.870000px;}
.x9a_c00122{left:436.320000px;}
.xd4_c00122{left:438.045000px;}
.xe_c00122{left:441.510000px;}
.x44_c00122{left:444.960000px;}
.xbe_c00122{left:447.555000px;}
.x7b_c00122{left:449.280000px;}
.x2d_c00122{left:451.005000px;}
.x3b_c00122{left:452.730000px;}
.x9b_c00122{left:454.470000px;}
.x45_c00122{left:456.195000px;}
.x50_c00122{left:460.515000px;}
.x87_c00122{left:462.240000px;}
.xf_c00122{left:463.965000px;}
.x23_c00122{left:467.430000px;}
.xdb_c00122{left:470.010000px;}
.x5a_c00122{left:474.330000px;}
.x93_c00122{left:476.070000px;}
.xaa_c00122{left:479.520000px;}
.x10_c00122{left:484.710000px;}
.x6d_c00122{left:486.435000px;}
.xec_c00122{left:488.160000px;}
.xa1_c00122{left:491.610000px;}
.xde_c00122{left:495.075000px;}
.xfc_c00122{left:497.670000px;}
.xb9_c00122{left:500.250000px;}
.xc6_c00122{left:501.990000px;}
.x11_c00122{left:503.715000px;}
.x4_c00122{left:507.165000px;}
.x9c_c00122{left:508.890000px;}
.x51_c00122{left:512.355000px;}
.xf9_c00122{left:514.080000px;}
.xab_c00122{left:515.805000px;}
.x24_c00122{left:517.530000px;}
.x104_c00122{left:519.270000px;}
.x88_c00122{left:524.445000px;}
.x1_c00122{left:534.810000px;}
.xe8_c00122{left:543.450000px;}
.x12_c00122{left:547.770000px;}
.x52_c00122{left:549.510000px;}
.x89_c00122{left:552.960000px;}
.xdf_c00122{left:554.685000px;}
.x65_c00122{left:557.280000px;}
.x94_c00122{left:559.005000px;}
.x8a_c00122{left:561.600000px;}
.x25_c00122{left:564.195000px;}
.x3c_c00122{left:565.920000px;}
.x2_c00122{left:578.010000px;}
.x2e_c00122{left:583.200000px;}
.xf5_c00122{left:584.925000px;}
.xd5_c00122{left:587.520000px;}
.x13_c00122{left:589.245000px;}
.x9d_c00122{left:591.840000px;}
.x33_c00122{left:596.160000px;}
.x95_c00122{left:598.755000px;}
.xed_c00122{left:602.205000px;}
.xf1_c00122{left:604.800000px;}
.xe0_c00122{left:606.525000px;}
.x14_c00122{left:609.120000px;}
.xff_c00122{left:610.845000px;}
.x5b_c00122{left:612.570000px;}
.x46_c00122{left:617.760000px;}
.x3d_c00122{left:619.485000px;}
.x53_c00122{left:622.080000px;}
.xba_c00122{left:623.805000px;}
.x15_c00122{left:626.400000px;}
.xcd_c00122{left:628.125000px;}
.x34_c00122{left:629.850000px;}
.x26_c00122{left:637.635000px;}
.x47_c00122{left:640.230000px;}
.x16_c00122{left:642.810000px;}
.x27_c00122{left:645.405000px;}
.xd6_c00122{left:647.130000px;}
.x48_c00122{left:648.870000px;}
.xaf_c00122{left:650.595000px;}
.xa2_c00122{left:658.365000px;}
.xe9_c00122{left:660.090000px;}
.x6e_c00122{left:661.830000px;}
.xa6_c00122{left:663.555000px;}
.x17_c00122{left:667.005000px;}
.x28_c00122{left:669.600000px;}
.x8b_c00122{left:671.325000px;}
.x5c_c00122{left:675.645000px;}
.x5_c00122{left:677.370000px;}
.x3e_c00122{left:679.110000px;}
.xb0_c00122{left:681.690000px;}
.x9e_c00122{left:688.605000px;}
.xc7_c00122{left:690.330000px;}
.xf2_c00122{left:692.070000px;}
.x18_c00122{left:694.650000px;}
.x35_c00122{left:697.245000px;}
.x49_c00122{left:698.970000px;}
.x66_c00122{left:701.565000px;}
.xbf_c00122{left:705.030000px;}
.xc8_c00122{left:707.610000px;}
.xb4_c00122{left:709.350000px;}
.x6f_c00122{left:711.075000px;}
.xd7_c00122{left:713.670000px;}
.x7c_c00122{left:717.120000px;}
.x70_c00122{left:718.845000px;}
.x29_c00122{left:724.035000px;}
.xe5_c00122{left:726.630000px;}
.x5d_c00122{left:728.355000px;}
.x9f_c00122{left:734.400000px;}
.x54_c00122{left:736.995000px;}
.xa3_c00122{left:743.040000px;}
.x67_c00122{left:744.765000px;}
.xe1_c00122{left:746.490000px;}
.xee_c00122{left:749.085000px;}
.x36_c00122{left:750.810000px;}
.xce_c00122{left:752.550000px;}
.x19_c00122{left:755.130000px;}
.x83_c00122{left:757.725000px;}
.x6_c00122{left:759.450000px;}
.xf6_c00122{left:762.045000px;}
.x3f_c00122{left:764.640000px;}
.xd8_c00122{left:768.960000px;}
.xdc_c00122{left:770.685000px;}
.x68_c00122{left:775.005000px;}
.x96_c00122{left:776.730000px;}
.xea_c00122{left:779.325000px;}
.x5e_c00122{left:781.920000px;}
.x2f_c00122{left:785.370000px;}
.x84_c00122{left:787.110000px;}
.xc0_c00122{left:789.690000px;}
.x37_c00122{left:791.430000px;}
.x7d_c00122{left:794.880000px;}
.x4a_c00122{left:799.200000px;}
.x55_c00122{left:804.390000px;}
.x71_c00122{left:806.115000px;}
.x1a_c00122{left:808.710000px;}
.xef_c00122{left:810.435000px;}
.x2a_c00122{left:816.480000px;}
.x5f_c00122{left:818.205000px;}
.xc1_c00122{left:819.930000px;}
.x103_c00122{left:821.670000px;}
.xd1_c00122{left:824.250000px;}
.xfd_c00122{left:827.715000px;}
.x8c_c00122{left:829.440000px;}
.x72_c00122{left:832.035000px;}
.xd2_c00122{left:833.760000px;}
.xa4_c00122{left:835.485000px;}
.x100_c00122{left:838.080000px;}
.xac_c00122{left:842.400000px;}
.x1b_c00122{left:844.995000px;}
.xe6_c00122{left:846.720000px;}
.x97_c00122{left:851.910000px;}
.x60_c00122{left:855.360000px;}
.x73_c00122{left:860.550000px;}
.x7e_c00122{left:864.000000px;}
.x108_c00122{left:869.190000px;}
.xfa_c00122{left:872.640000px;}
.x85_c00122{left:874.365000px;}
.x74_c00122{left:876.090000px;}
.x105_c00122{left:879.555000px;}
.x69_c00122{left:883.875000px;}
.xb1_c00122{left:886.470000px;}
.x8d_c00122{left:888.195000px;}
.xa7_c00122{left:889.920000px;}
.xf7_c00122{left:895.110000px;}
.xf8_c00122{left:899.430000px;}
.x8e_c00122{left:906.330000px;}
.x86_c00122{left:912.390000px;}
.x6a_c00122{left:925.350000px;}
.xcf_c00122{left:927.930000px;}
.x10f_c00122{left:974.595000px;}
.x113_c00122{left:977.190000px;}
.x114_c00122{left:1013.475000px;}
.x110_c00122{left:1054.080000px;}
.x115_c00122{left:1064.445816px;}
.x112_c00122{left:1076.550000px;}
.x111_c00122{left:1089.510000px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.v1_c00122{vertical-align:3.093333pt;}
.v2_c00122{vertical-align:6.186667pt;}
.ls1_c00122{letter-spacing:0.000000pt;}
.ls0_c00122{letter-spacing:75.745280pt;}
.ws1_c00122{word-spacing:-15.141973pt;}
.ws0_c00122{word-spacing:-11.100150pt;}
.ws2_c00122{word-spacing:0.000000pt;}
.fs10_c00122{font-size:3.072000pt;}
.fs12_c00122{font-size:5.333333pt;}
.fs1d_c00122{font-size:6.133333pt;}
.fs7_c00122{font-size:9.226667pt;}
.fs1f_c00122{font-size:12.266667pt;}
.fs1a_c00122{font-size:15.360000pt;}
.fs1_c00122{font-size:18.453333pt;}
.fs2_c00122{font-size:21.493333pt;}
.fs0_c00122{font-size:24.586667pt;}
.fs19_c00122{font-size:27.626667pt;}
.fs3_c00122{font-size:30.720000pt;}
.fs1c_c00122{font-size:33.813333pt;}
.fs1e_c00122{font-size:36.853333pt;}
.fs1b_c00122{font-size:39.946667pt;}
.fs4_c00122{font-size:42.986667pt;}
.fsf_c00122{font-size:46.080000pt;}
.fs8_c00122{font-size:49.173333pt;}
.fsd_c00122{font-size:52.213333pt;}
.fsc_c00122{font-size:55.306667pt;}
.fs9_c00122{font-size:58.346667pt;}
.fsa_c00122{font-size:61.440000pt;}
.fse_c00122{font-size:64.533333pt;}
.fs11_c00122{font-size:67.573333pt;}
.fs16_c00122{font-size:70.666667pt;}
.fsb_c00122{font-size:73.706667pt;}
.fs17_c00122{font-size:76.800000pt;}
.fs15_c00122{font-size:79.893333pt;}
.fs5_c00122{font-size:82.933333pt;}
.fs14_c00122{font-size:86.026667pt;}
.fs18_c00122{font-size:89.066667pt;}
.fs6_c00122{font-size:92.160000pt;}
.fs20_c00122{font-size:95.253333pt;}
.fs21_c00122{font-size:101.386667pt;}
.fs13_c00122{font-size:104.426667pt;}
.y0_c00122{bottom:0.000000pt;}
.y1a8_c00122{bottom:364.800000pt;}
.y1a9_c00122{bottom:365.573333pt;}
.y1a5_c00122{bottom:367.106667pt;}
.y1a4_c00122{bottom:367.866667pt;}
.y1a3_c00122{bottom:371.706667pt;}
.y1a7_c00122{bottom:380.933333pt;}
.y1a6_c00122{bottom:382.466667pt;}
.y1a1_c00122{bottom:383.226667pt;}
.y1a2_c00122{bottom:384.000000pt;}
.y19f_c00122{bottom:384.773333pt;}
.y19e_c00122{bottom:385.533333pt;}
.y1a0_c00122{bottom:394.746667pt;}
.y19c_c00122{bottom:398.586667pt;}
.y19a_c00122{bottom:399.360000pt;}
.y198_c00122{bottom:400.133333pt;}
.y19b_c00122{bottom:400.893333pt;}
.y199_c00122{bottom:401.666667pt;}
.y19d_c00122{bottom:402.426667pt;}
.y197_c00122{bottom:415.493333pt;}
.y196_c00122{bottom:419.333333pt;}
.y195_c00122{bottom:421.626667pt;}
.y192_c00122{bottom:423.173333pt;}
.y194_c00122{bottom:423.933333pt;}
.y193_c00122{bottom:424.706667pt;}
.y18e_c00122{bottom:432.386667pt;}
.y190_c00122{bottom:433.146667pt;}
.y191_c00122{bottom:433.920000pt;}
.y18f_c00122{bottom:434.693333pt;}
.y18c_c00122{bottom:436.986667pt;}
.y18b_c00122{bottom:437.760000pt;}
.y18a_c00122{bottom:438.533333pt;}
.y189_c00122{bottom:440.066667pt;}
.y18d_c00122{bottom:440.826667pt;}
.y187_c00122{bottom:450.813333pt;}
.y186_c00122{bottom:453.120000pt;}
.y185_c00122{bottom:455.426667pt;}
.y183_c00122{bottom:456.186667pt;}
.y184_c00122{bottom:456.960000pt;}
.y182_c00122{bottom:458.493333pt;}
.y188_c00122{bottom:472.320000pt;}
.y180_c00122{bottom:473.853333pt;}
.y17f_c00122{bottom:474.626667pt;}
.y17c_c00122{bottom:475.386667pt;}
.y17b_c00122{bottom:476.160000pt;}
.y17a_c00122{bottom:476.933333pt;}
.y17e_c00122{bottom:477.693333pt;}
.y17d_c00122{bottom:482.306667pt;}
.y181_c00122{bottom:483.066667pt;}
.y179_c00122{bottom:489.986667pt;}
.y178_c00122{bottom:493.053333pt;}
.y173_c00122{bottom:494.586667pt;}
.y174_c00122{bottom:495.360000pt;}
.y175_c00122{bottom:496.133333pt;}
.y176_c00122{bottom:497.666667pt;}
.y177_c00122{bottom:498.426667pt;}
.y172_c00122{bottom:509.946667pt;}
.y170_c00122{bottom:510.720000pt;}
.y16e_c00122{bottom:511.493333pt;}
.y16c_c00122{bottom:513.026667pt;}
.y16b_c00122{bottom:513.786667pt;}
.y16d_c00122{bottom:514.560000pt;}
.y171_c00122{bottom:515.333333pt;}
.y16f_c00122{bottom:516.866667pt;}
.y16a_c00122{bottom:523.773333pt;}
.y168_c00122{bottom:527.613333pt;}
.y166_c00122{bottom:528.386667pt;}
.y169_c00122{bottom:529.146667pt;}
.y164_c00122{bottom:531.453333pt;}
.y165_c00122{bottom:532.226667pt;}
.y167_c00122{bottom:532.986667pt;}
.y162_c00122{bottom:533.760000pt;}
.y163_c00122{bottom:536.826667pt;}
.y161_c00122{bottom:543.746667pt;}
.y160_c00122{bottom:546.053333pt;}
.y15f_c00122{bottom:546.813333pt;}
.y15e_c00122{bottom:547.586667pt;}
.y15d_c00122{bottom:549.893333pt;}
.y15c_c00122{bottom:563.706667pt;}
.y15b_c00122{bottom:566.013333pt;}
.y157_c00122{bottom:566.786667pt;}
.y155_c00122{bottom:567.546667pt;}
.y15a_c00122{bottom:568.320000pt;}
.y158_c00122{bottom:569.093333pt;}
.y159_c00122{bottom:569.853333pt;}
.y156_c00122{bottom:572.933333pt;}
.y153_c00122{bottom:581.373333pt;}
.y154_c00122{bottom:582.146667pt;}
.y14f_c00122{bottom:583.680000pt;}
.y151_c00122{bottom:584.453333pt;}
.y150_c00122{bottom:585.213333pt;}
.y14d_c00122{bottom:585.986667pt;}
.y152_c00122{bottom:586.746667pt;}
.y14e_c00122{bottom:589.826667pt;}
.y14c_c00122{bottom:598.266667pt;}
.y149_c00122{bottom:599.813333pt;}
.y14a_c00122{bottom:601.346667pt;}
.y146_c00122{bottom:602.880000pt;}
.y148_c00122{bottom:603.653333pt;}
.y144_c00122{bottom:604.413333pt;}
.y145_c00122{bottom:605.186667pt;}
.y147_c00122{bottom:607.493333pt;}
.y14b_c00122{bottom:609.026667pt;}
.y140_c00122{bottom:613.626667pt;}
.y141_c00122{bottom:615.173333pt;}
.y13e_c00122{bottom:615.933333pt;}
.y13d_c00122{bottom:617.466667pt;}
.y13c_c00122{bottom:618.240000pt;}
.y13a_c00122{bottom:619.013333pt;}
.y139_c00122{bottom:619.773333pt;}
.y142_c00122{bottom:621.306667pt;}
.y13f_c00122{bottom:625.146667pt;}
.y13b_c00122{bottom:626.693333pt;}
.y143_c00122{bottom:628.986667pt;}
.y138_c00122{bottom:633.600000pt;}
.y136_c00122{bottom:635.133333pt;}
.y134_c00122{bottom:637.440000pt;}
.y132_c00122{bottom:638.213333pt;}
.y130_c00122{bottom:638.973333pt;}
.y133_c00122{bottom:639.746667pt;}
.y137_c00122{bottom:640.506667pt;}
.y131_c00122{bottom:641.280000pt;}
.y135_c00122{bottom:642.053333pt;}
.y12e_c00122{bottom:653.573333pt;}
.y12a_c00122{bottom:655.866667pt;}
.y12b_c00122{bottom:656.640000pt;}
.y12f_c00122{bottom:657.413333pt;}
.y12d_c00122{bottom:660.480000pt;}
.y12c_c00122{bottom:661.253333pt;}
.y129_c00122{bottom:670.466667pt;}
.y128_c00122{bottom:671.226667pt;}
.y127_c00122{bottom:672.000000pt;}
.y125_c00122{bottom:672.773333pt;}
.y126_c00122{bottom:674.306667pt;}
.y123_c00122{bottom:676.613333pt;}
.y122_c00122{bottom:678.906667pt;}
.y124_c00122{bottom:679.680000pt;}
.y121_c00122{bottom:688.133333pt;}
.y11f_c00122{bottom:690.426667pt;}
.y11d_c00122{bottom:691.200000pt;}
.y11c_c00122{bottom:691.973333pt;}
.y120_c00122{bottom:692.733333pt;}
.y11a_c00122{bottom:694.266667pt;}
.y11e_c00122{bottom:695.040000pt;}
.y119_c00122{bottom:695.813333pt;}
.y11b_c00122{bottom:697.346667pt;}
.y118_c00122{bottom:699.653333pt;}
.y117_c00122{bottom:706.560000pt;}
.y115_c00122{bottom:708.093333pt;}
.y114_c00122{bottom:708.866667pt;}
.y112_c00122{bottom:709.626667pt;}
.y10f_c00122{bottom:710.400000pt;}
.y116_c00122{bottom:711.173333pt;}
.y110_c00122{bottom:711.933333pt;}
.y113_c00122{bottom:712.706667pt;}
.y10e_c00122{bottom:713.466667pt;}
.y111_c00122{bottom:714.240000pt;}
.y10c_c00122{bottom:724.986667pt;}
.y106_c00122{bottom:726.533333pt;}
.y10d_c00122{bottom:728.066667pt;}
.y1ad_c00122{bottom:728.826667pt;}
.y105_c00122{bottom:729.600000pt;}
.y10b_c00122{bottom:730.373333pt;}
.y108_c00122{bottom:731.133333pt;}
.y109_c00122{bottom:731.906667pt;}
.y107_c00122{bottom:732.666667pt;}
.y10a_c00122{bottom:739.586667pt;}
.y104_c00122{bottom:741.893333pt;}
.y102_c00122{bottom:744.186667pt;}
.y101_c00122{bottom:744.960000pt;}
.y100_c00122{bottom:745.733333pt;}
.yff_c00122{bottom:746.493333pt;}
.y103_c00122{bottom:747.266667pt;}
.yfe_c00122{bottom:754.173333pt;}
.yfc_c00122{bottom:756.480000pt;}
.yf8_c00122{bottom:758.013333pt;}
.yf6_c00122{bottom:758.786667pt;}
.yf4_c00122{bottom:761.853333pt;}
.yf9_c00122{bottom:762.626667pt;}
.yfd_c00122{bottom:763.386667pt;}
.yfb_c00122{bottom:766.466667pt;}
.yfa_c00122{bottom:768.000000pt;}
.yf5_c00122{bottom:771.840000pt;}
.yf7_c00122{bottom:774.906667pt;}
.yf3_c00122{bottom:777.213333pt;}
.yf1_c00122{bottom:778.746667pt;}
.yf0_c00122{bottom:779.520000pt;}
.yee_c00122{bottom:780.293333pt;}
.yed_c00122{bottom:781.053333pt;}
.yeb_c00122{bottom:782.586667pt;}
.yea_c00122{bottom:783.360000pt;}
.yec_c00122{bottom:785.666667pt;}
.yef_c00122{bottom:786.426667pt;}
.yf2_c00122{bottom:791.040000pt;}
.ye8_c00122{bottom:796.413333pt;}
.ye5_c00122{bottom:798.720000pt;}
.ye4_c00122{bottom:799.493333pt;}
.ye7_c00122{bottom:800.253333pt;}
.ye3_c00122{bottom:801.026667pt;}
.ye6_c00122{bottom:801.786667pt;}
.ye9_c00122{bottom:811.773333pt;}
.ye0_c00122{bottom:814.853333pt;}
.ye2_c00122{bottom:816.386667pt;}
.ydf_c00122{bottom:817.920000pt;}
.ydd_c00122{bottom:818.693333pt;}
.ydc_c00122{bottom:819.453333pt;}
.ye1_c00122{bottom:820.226667pt;}
.ydb_c00122{bottom:820.986667pt;}
.yde_c00122{bottom:821.760000pt;}
.yda_c00122{bottom:822.533333pt;}
.yd9_c00122{bottom:823.293333pt;}
.yd7_c00122{bottom:832.506667pt;}
.yd8_c00122{bottom:833.280000pt;}
.yd3_c00122{bottom:834.813333pt;}
.yd1_c00122{bottom:835.586667pt;}
.yd2_c00122{bottom:836.346667pt;}
.yd6_c00122{bottom:837.120000pt;}
.yd4_c00122{bottom:840.186667pt;}
.yd5_c00122{bottom:840.960000pt;}
.ycf_c00122{bottom:850.946667pt;}
.ycd_c00122{bottom:852.480000pt;}
.ycb_c00122{bottom:853.253333pt;}
.yca_c00122{bottom:854.013333pt;}
.yd0_c00122{bottom:854.786667pt;}
.yc9_c00122{bottom:855.546667pt;}
.yce_c00122{bottom:856.320000pt;}
.ycc_c00122{bottom:857.853333pt;}
.yc6_c00122{bottom:868.613333pt;}
.yc7_c00122{bottom:869.373333pt;}
.yc3_c00122{bottom:870.146667pt;}
.yc5_c00122{bottom:870.906667pt;}
.yc2_c00122{bottom:871.680000pt;}
.yc8_c00122{bottom:873.213333pt;}
.yc0_c00122{bottom:876.293333pt;}
.yc4_c00122{bottom:877.053333pt;}
.yc1_c00122{bottom:879.360000pt;}
.ybe_c00122{bottom:887.040000pt;}
.ybc_c00122{bottom:888.573333pt;}
.yb7_c00122{bottom:890.106667pt;}
.ybf_c00122{bottom:890.880000pt;}
.ybd_c00122{bottom:892.413333pt;}
.yb9_c00122{bottom:893.186667pt;}
.yba_c00122{bottom:893.946667pt;}
.ybb_c00122{bottom:894.720000pt;}
.yb8_c00122{bottom:900.866667pt;}
.yb4_c00122{bottom:904.706667pt;}
.yb3_c00122{bottom:906.240000pt;}
.yae_c00122{bottom:907.013333pt;}
.yaf_c00122{bottom:907.773333pt;}
.yb1_c00122{bottom:909.306667pt;}
.yb0_c00122{bottom:910.080000pt;}
.yb2_c00122{bottom:910.853333pt;}
.yad_c00122{bottom:912.386667pt;}
.y1ab_c00122{bottom:913.920000pt;}
.yb5_c00122{bottom:916.226667pt;}
.yb6_c00122{bottom:922.373333pt;}
.yac_c00122{bottom:923.133333pt;}
.ya9_c00122{bottom:924.666667pt;}
.ya5_c00122{bottom:925.440000pt;}
.ya2_c00122{bottom:926.213333pt;}
.yab_c00122{bottom:926.973333pt;}
.ya8_c00122{bottom:927.746667pt;}
.yaa_c00122{bottom:928.506667pt;}
.ya6_c00122{bottom:930.053333pt;}
.ya4_c00122{bottom:930.813333pt;}
.ya7_c00122{bottom:931.586667pt;}
.ya3_c00122{bottom:935.426667pt;}
.ya0_c00122{bottom:940.800000pt;}
.y1aa_c00122{bottom:941.573333pt;}
.y9e_c00122{bottom:943.106667pt;}
.y9b_c00122{bottom:945.413333pt;}
.y9c_c00122{bottom:946.173333pt;}
.y9f_c00122{bottom:946.946667pt;}
.ya1_c00122{bottom:947.706667pt;}
.y9a_c00122{bottom:950.786667pt;}
.y9d_c00122{bottom:952.320000pt;}
.y99_c00122{bottom:955.386667pt;}
.y95_c00122{bottom:956.160000pt;}
.y94_c00122{bottom:956.933333pt;}
.y91_c00122{bottom:957.693333pt;}
.y90_c00122{bottom:959.226667pt;}
.y97_c00122{bottom:960.000000pt;}
.y92_c00122{bottom:960.773333pt;}
.y98_c00122{bottom:963.066667pt;}
.y93_c00122{bottom:963.840000pt;}
.y96_c00122{bottom:964.613333pt;}
.y8f_c00122{bottom:967.680000pt;}
.y8e_c00122{bottom:976.893333pt;}
.y8d_c00122{bottom:978.426667pt;}
.y8a_c00122{bottom:979.200000pt;}
.y89_c00122{bottom:981.506667pt;}
.y8b_c00122{bottom:982.266667pt;}
.y8c_c00122{bottom:983.813333pt;}
.y88_c00122{bottom:985.346667pt;}
.y87_c00122{bottom:988.413333pt;}
.y83_c00122{bottom:994.560000pt;}
.y85_c00122{bottom:995.333333pt;}
.y82_c00122{bottom:996.093333pt;}
.y84_c00122{bottom:996.866667pt;}
.y7f_c00122{bottom:997.626667pt;}
.y81_c00122{bottom:998.400000pt;}
.y7d_c00122{bottom:999.173333pt;}
.y7c_c00122{bottom:999.933333pt;}
.y7e_c00122{bottom:1002.240000pt;}
.y80_c00122{bottom:1003.013333pt;}
.y86_c00122{bottom:1008.386667pt;}
.y78_c00122{bottom:1012.226667pt;}
.y7a_c00122{bottom:1012.986667pt;}
.y77_c00122{bottom:1013.760000pt;}
.y7b_c00122{bottom:1014.533333pt;}
.y74_c00122{bottom:1015.293333pt;}
.y73_c00122{bottom:1016.066667pt;}
.y79_c00122{bottom:1017.600000pt;}
.y75_c00122{bottom:1020.666667pt;}
.y76_c00122{bottom:1025.280000pt;}
.y72_c00122{bottom:1030.653333pt;}
.y71_c00122{bottom:1031.426667pt;}
.y70_c00122{bottom:1032.960000pt;}
.y6e_c00122{bottom:1033.733333pt;}
.y6f_c00122{bottom:1034.493333pt;}
.y6c_c00122{bottom:1035.266667pt;}
.y6a_c00122{bottom:1036.026667pt;}
.y6d_c00122{bottom:1036.800000pt;}
.y6b_c00122{bottom:1038.333333pt;}
.y69_c00122{bottom:1039.866667pt;}
.y68_c00122{bottom:1040.640000pt;}
.y67_c00122{bottom:1047.546667pt;}
.y64_c00122{bottom:1049.093333pt;}
.y66_c00122{bottom:1050.626667pt;}
.y65_c00122{bottom:1051.386667pt;}
.y62_c00122{bottom:1052.160000pt;}
.y5f_c00122{bottom:1052.933333pt;}
.y60_c00122{bottom:1054.466667pt;}
.y61_c00122{bottom:1056.000000pt;}
.y63_c00122{bottom:1056.773333pt;}
.y5b_c00122{bottom:1067.520000pt;}
.y57_c00122{bottom:1068.293333pt;}
.y5d_c00122{bottom:1069.053333pt;}
.y58_c00122{bottom:1069.826667pt;}
.y59_c00122{bottom:1070.586667pt;}
.y5e_c00122{bottom:1071.360000pt;}
.y5c_c00122{bottom:1072.133333pt;}
.y55_c00122{bottom:1073.666667pt;}
.y5a_c00122{bottom:1074.426667pt;}
.y56_c00122{bottom:1075.200000pt;}
.y54_c00122{bottom:1079.813333pt;}
.y53_c00122{bottom:1080.573333pt;}
.y52_c00122{bottom:1082.106667pt;}
.y50_c00122{bottom:1082.880000pt;}
.y4f_c00122{bottom:1083.653333pt;}
.y4e_c00122{bottom:1085.186667pt;}
.y51_c00122{bottom:1089.786667pt;}
.y4d_c00122{bottom:1090.560000pt;}
.y4c_c00122{bottom:1092.093333pt;}
.y4b_c00122{bottom:1102.853333pt;}
.y49_c00122{bottom:1103.613333pt;}
.y4a_c00122{bottom:1104.386667pt;}
.y46_c00122{bottom:1105.146667pt;}
.y42_c00122{bottom:1105.920000pt;}
.y48_c00122{bottom:1107.453333pt;}
.y45_c00122{bottom:1108.226667pt;}
.y44_c00122{bottom:1111.293333pt;}
.y47_c00122{bottom:1119.746667pt;}
.y41_c00122{bottom:1120.506667pt;}
.y43_c00122{bottom:1122.053333pt;}
.y3f_c00122{bottom:1122.813333pt;}
.y3a_c00122{bottom:1124.346667pt;}
.y3c_c00122{bottom:1125.120000pt;}
.y40_c00122{bottom:1125.893333pt;}
.y3b_c00122{bottom:1126.653333pt;}
.y3e_c00122{bottom:1127.426667pt;}
.y3d_c00122{bottom:1128.186667pt;}
.y39_c00122{bottom:1132.800000pt;}
.y36_c00122{bottom:1140.480000pt;}
.y38_c00122{bottom:1141.253333pt;}
.y37_c00122{bottom:1142.013333pt;}
.y35_c00122{bottom:1143.546667pt;}
.y31_c00122{bottom:1144.320000pt;}
.y32_c00122{bottom:1145.093333pt;}
.y34_c00122{bottom:1145.853333pt;}
.y33_c00122{bottom:1146.626667pt;}
.y30_c00122{bottom:1149.693333pt;}
.y2f_c00122{bottom:1152.000000pt;}
.y2d_c00122{bottom:1157.373333pt;}
.y2c_c00122{bottom:1158.146667pt;}
.y29_c00122{bottom:1158.906667pt;}
.y28_c00122{bottom:1159.680000pt;}
.y2e_c00122{bottom:1160.453333pt;}
.y27_c00122{bottom:1161.986667pt;}
.y2b_c00122{bottom:1163.520000pt;}
.y2a_c00122{bottom:1164.293333pt;}
.y23_c00122{bottom:1175.813333pt;}
.y21_c00122{bottom:1176.573333pt;}
.y22_c00122{bottom:1177.346667pt;}
.y25_c00122{bottom:1179.653333pt;}
.y26_c00122{bottom:1180.413333pt;}
.y24_c00122{bottom:1181.186667pt;}
.y20_c00122{bottom:1181.946667pt;}
.y1f_c00122{bottom:1182.720000pt;}
.y1ac_c00122{bottom:1190.400000pt;}
.y1e_c00122{bottom:1193.466667pt;}
.y1c_c00122{bottom:1194.240000pt;}
.y1a_c00122{bottom:1195.773333pt;}
.y1b_c00122{bottom:1197.306667pt;}
.y1d_c00122{bottom:1198.853333pt;}
.y18_c00122{bottom:1199.613333pt;}
.y19_c00122{bottom:1201.146667pt;}
.y16_c00122{bottom:1211.133333pt;}
.y15_c00122{bottom:1211.906667pt;}
.y14_c00122{bottom:1212.666667pt;}
.y17_c00122{bottom:1213.440000pt;}
.yf_c00122{bottom:1214.973333pt;}
.ye_c00122{bottom:1215.746667pt;}
.y13_c00122{bottom:1216.506667pt;}
.y10_c00122{bottom:1217.280000pt;}
.y12_c00122{bottom:1218.053333pt;}
.y11_c00122{bottom:1218.813333pt;}
.yd_c00122{bottom:1233.413333pt;}
.yb_c00122{bottom:1237.253333pt;}
.ya_c00122{bottom:1238.013333pt;}
.y6_c00122{bottom:1239.546667pt;}
.y8_c00122{bottom:1240.320000pt;}
.y5_c00122{bottom:1241.093333pt;}
.y7_c00122{bottom:1241.853333pt;}
.y9_c00122{bottom:1242.626667pt;}
.yc_c00122{bottom:1249.533333pt;}
.y4_c00122{bottom:1256.453333pt;}
.y2_c00122{bottom:1263.360000pt;}
.y3_c00122{bottom:1265.666667pt;}
.y1_c00122{bottom:1278.720000pt;}
.h12_c00122{height:2.764500pt;}
.h14_c00122{height:4.799479pt;}
.h1f_c00122{height:5.519401pt;}
.h9_c00122{height:8.303099pt;}
.h21_c00122{height:11.038802pt;}
.h1c_c00122{height:13.822500pt;}
.h3_c00122{height:16.606198pt;}
.h4_c00122{height:19.341901pt;}
.h2_c00122{height:22.125599pt;}
.h1b_c00122{height:24.861302pt;}
.h5_c00122{height:27.645000pt;}
.h1e_c00122{height:30.428698pt;}
.h20_c00122{height:33.164401pt;}
.h1d_c00122{height:35.948099pt;}
.h6_c00122{height:38.683802pt;}
.h11_c00122{height:41.467500pt;}
.ha_c00122{height:44.251198pt;}
.h23_c00122{height:44.560833pt;}
.hf_c00122{height:46.986901pt;}
.he_c00122{height:49.770599pt;}
.hb_c00122{height:52.506302pt;}
.hc_c00122{height:55.290000pt;}
.h10_c00122{height:58.073698pt;}
.h13_c00122{height:60.809401pt;}
.h18_c00122{height:63.593099pt;}
.hd_c00122{height:66.328802pt;}
.h19_c00122{height:69.112500pt;}
.h17_c00122{height:71.896198pt;}
.h7_c00122{height:74.631901pt;}
.h16_c00122{height:77.415599pt;}
.h1a_c00122{height:80.151302pt;}
.h8_c00122{height:82.935000pt;}
.h22_c00122{height:85.718698pt;}
.h24_c00122{height:91.238099pt;}
.h15_c00122{height:93.973802pt;}
.h0_c00122{height:1348.613333pt;}
.h1_c00122{height:1348.666667pt;}
.w0_c00122{width:969.213333pt;}
.w1_c00122{width:969.333333pt;}
.x0_c00122{left:0.000000pt;}
.xc9_c00122{left:122.106667pt;}
.x10b_c00122{left:125.946667pt;}
.x10e_c00122{left:128.253333pt;}
.xca_c00122{left:138.240000pt;}
.x10c_c00122{left:139.773333pt;}
.x61_c00122{left:142.853333pt;}
.x6b_c00122{left:148.226667pt;}
.xdd_c00122{left:150.533333pt;}
.xd9_c00122{left:152.066667pt;}
.x38_c00122{left:154.373333pt;}
.x40_c00122{left:157.440000pt;}
.xeb_c00122{left:160.506667pt;}
.x56_c00122{left:162.813333pt;}
.xc2_c00122{left:165.120000pt;}
.xb5_c00122{left:167.426667pt;}
.x41_c00122{left:169.733333pt;}
.xbb_c00122{left:174.333333pt;}
.xad_c00122{left:177.413333pt;}
.x101_c00122{left:181.253333pt;}
.x8f_c00122{left:182.786667pt;}
.xb2_c00122{left:185.093333pt;}
.xa8_c00122{left:188.160000pt;}
.xb6_c00122{left:189.693333pt;}
.x75_c00122{left:192.000000pt;}
.x62_c00122{left:195.066667pt;}
.xb3_c00122{left:196.613333pt;}
.x4b_c00122{left:198.146667pt;}
.x98_c00122{left:200.453333pt;}
.x1c_c00122{left:202.746667pt;}
.xbc_c00122{left:204.293333pt;}
.xe2_c00122{left:205.826667pt;}
.xa0_c00122{left:207.360000pt;}
.x7_c00122{left:208.893333pt;}
.x1d_c00122{left:211.200000pt;}
.x3_c00122{left:218.106667pt;}
.xd3_c00122{left:224.253333pt;}
.xe7_c00122{left:228.093333pt;}
.xa9_c00122{left:230.400000pt;}
.x57_c00122{left:231.933333pt;}
.x30_c00122{left:233.466667pt;}
.xcb_c00122{left:235.013333pt;}
.x7f_c00122{left:237.306667pt;}
.x99_c00122{left:238.853333pt;}
.x8_c00122{left:242.693333pt;}
.x80_c00122{left:244.226667pt;}
.xf3_c00122{left:248.066667pt;}
.x4c_c00122{left:249.600000pt;}
.x76_c00122{left:251.906667pt;}
.x39_c00122{left:253.440000pt;}
.x2b_c00122{left:254.973333pt;}
.x9_c00122{left:256.506667pt;}
.x106_c00122{left:258.813333pt;}
.x81_c00122{left:260.346667pt;}
.x42_c00122{left:262.653333pt;}
.xae_c00122{left:264.186667pt;}
.x1e_c00122{left:266.493333pt;}
.x77_c00122{left:271.106667pt;}
.xb7_c00122{left:274.173333pt;}
.xc3_c00122{left:276.480000pt;}
.x63_c00122{left:279.546667pt;}
.x109_c00122{left:281.093333pt;}
.x90_c00122{left:282.626667pt;}
.x107_c00122{left:285.693333pt;}
.xa_c00122{left:287.226667pt;}
.x2c_c00122{left:288.773333pt;}
.x1f_c00122{left:291.840000pt;}
.x31_c00122{left:294.146667pt;}
.x102_c00122{left:295.680000pt;}
.xe3_c00122{left:298.746667pt;}
.x91_c00122{left:301.053333pt;}
.xb_c00122{left:303.360000pt;}
.xc4_c00122{left:304.893333pt;}
.xfe_c00122{left:307.200000pt;}
.xda_c00122{left:308.733333pt;}
.xcc_c00122{left:310.266667pt;}
.x78_c00122{left:312.573333pt;}
.x79_c00122{left:315.653333pt;}
.xfb_c00122{left:317.186667pt;}
.xc_c00122{left:323.333333pt;}
.x43_c00122{left:325.626667pt;}
.x3a_c00122{left:330.240000pt;}
.x4d_c00122{left:331.773333pt;}
.xf4_c00122{left:334.080000pt;}
.x64_c00122{left:336.386667pt;}
.xf0_c00122{left:337.920000pt;}
.x4e_c00122{left:339.453333pt;}
.x20_c00122{left:342.533333pt;}
.x58_c00122{left:344.066667pt;}
.x21_c00122{left:346.373333pt;}
.x6c_c00122{left:347.906667pt;}
.x92_c00122{left:349.440000pt;}
.x59_c00122{left:351.746667pt;}
.xd0_c00122{left:353.280000pt;}
.x82_c00122{left:356.346667pt;}
.xa5_c00122{left:359.426667pt;}
.x10a_c00122{left:363.266667pt;}
.x10d_c00122{left:366.333333pt;}
.xbd_c00122{left:367.866667pt;}
.x32_c00122{left:369.413333pt;}
.x4f_c00122{left:371.706667pt;}
.xd_c00122{left:374.013333pt;}
.xe4_c00122{left:376.320000pt;}
.xc5_c00122{left:377.853333pt;}
.xb8_c00122{left:380.160000pt;}
.x22_c00122{left:383.226667pt;}
.x7a_c00122{left:384.773333pt;}
.x9a_c00122{left:387.840000pt;}
.xd4_c00122{left:389.373333pt;}
.xe_c00122{left:392.453333pt;}
.x44_c00122{left:395.520000pt;}
.xbe_c00122{left:397.826667pt;}
.x7b_c00122{left:399.360000pt;}
.x2d_c00122{left:400.893333pt;}
.x3b_c00122{left:402.426667pt;}
.x9b_c00122{left:403.973333pt;}
.x45_c00122{left:405.506667pt;}
.x50_c00122{left:409.346667pt;}
.x87_c00122{left:410.880000pt;}
.xf_c00122{left:412.413333pt;}
.x23_c00122{left:415.493333pt;}
.xdb_c00122{left:417.786667pt;}
.x5a_c00122{left:421.626667pt;}
.x93_c00122{left:423.173333pt;}
.xaa_c00122{left:426.240000pt;}
.x10_c00122{left:430.853333pt;}
.x6d_c00122{left:432.386667pt;}
.xec_c00122{left:433.920000pt;}
.xa1_c00122{left:436.986667pt;}
.xde_c00122{left:440.066667pt;}
.xfc_c00122{left:442.373333pt;}
.xb9_c00122{left:444.666667pt;}
.xc6_c00122{left:446.213333pt;}
.x11_c00122{left:447.746667pt;}
.x4_c00122{left:450.813333pt;}
.x9c_c00122{left:452.346667pt;}
.x51_c00122{left:455.426667pt;}
.xf9_c00122{left:456.960000pt;}
.xab_c00122{left:458.493333pt;}
.x24_c00122{left:460.026667pt;}
.x104_c00122{left:461.573333pt;}
.x88_c00122{left:466.173333pt;}
.x1_c00122{left:475.386667pt;}
.xe8_c00122{left:483.066667pt;}
.x12_c00122{left:486.906667pt;}
.x52_c00122{left:488.453333pt;}
.x89_c00122{left:491.520000pt;}
.xdf_c00122{left:493.053333pt;}
.x65_c00122{left:495.360000pt;}
.x94_c00122{left:496.893333pt;}
.x8a_c00122{left:499.200000pt;}
.x25_c00122{left:501.506667pt;}
.x3c_c00122{left:503.040000pt;}
.x2_c00122{left:513.786667pt;}
.x2e_c00122{left:518.400000pt;}
.xf5_c00122{left:519.933333pt;}
.xd5_c00122{left:522.240000pt;}
.x13_c00122{left:523.773333pt;}
.x9d_c00122{left:526.080000pt;}
.x33_c00122{left:529.920000pt;}
.x95_c00122{left:532.226667pt;}
.xed_c00122{left:535.293333pt;}
.xf1_c00122{left:537.600000pt;}
.xe0_c00122{left:539.133333pt;}
.x14_c00122{left:541.440000pt;}
.xff_c00122{left:542.973333pt;}
.x5b_c00122{left:544.506667pt;}
.x46_c00122{left:549.120000pt;}
.x3d_c00122{left:550.653333pt;}
.x53_c00122{left:552.960000pt;}
.xba_c00122{left:554.493333pt;}
.x15_c00122{left:556.800000pt;}
.xcd_c00122{left:558.333333pt;}
.x34_c00122{left:559.866667pt;}
.x26_c00122{left:566.786667pt;}
.x47_c00122{left:569.093333pt;}
.x16_c00122{left:571.386667pt;}
.x27_c00122{left:573.693333pt;}
.xd6_c00122{left:575.226667pt;}
.x48_c00122{left:576.773333pt;}
.xaf_c00122{left:578.306667pt;}
.xa2_c00122{left:585.213333pt;}
.xe9_c00122{left:586.746667pt;}
.x6e_c00122{left:588.293333pt;}
.xa6_c00122{left:589.826667pt;}
.x17_c00122{left:592.893333pt;}
.x28_c00122{left:595.200000pt;}
.x8b_c00122{left:596.733333pt;}
.x5c_c00122{left:600.573333pt;}
.x5_c00122{left:602.106667pt;}
.x3e_c00122{left:603.653333pt;}
.xb0_c00122{left:605.946667pt;}
.x9e_c00122{left:612.093333pt;}
.xc7_c00122{left:613.626667pt;}
.xf2_c00122{left:615.173333pt;}
.x18_c00122{left:617.466667pt;}
.x35_c00122{left:619.773333pt;}
.x49_c00122{left:621.306667pt;}
.x66_c00122{left:623.613333pt;}
.xbf_c00122{left:626.693333pt;}
.xc8_c00122{left:628.986667pt;}
.xb4_c00122{left:630.533333pt;}
.x6f_c00122{left:632.066667pt;}
.xd7_c00122{left:634.373333pt;}
.x7c_c00122{left:637.440000pt;}
.x70_c00122{left:638.973333pt;}
.x29_c00122{left:643.586667pt;}
.xe5_c00122{left:645.893333pt;}
.x5d_c00122{left:647.426667pt;}
.x9f_c00122{left:652.800000pt;}
.x54_c00122{left:655.106667pt;}
.xa3_c00122{left:660.480000pt;}
.x67_c00122{left:662.013333pt;}
.xe1_c00122{left:663.546667pt;}
.xee_c00122{left:665.853333pt;}
.x36_c00122{left:667.386667pt;}
.xce_c00122{left:668.933333pt;}
.x19_c00122{left:671.226667pt;}
.x83_c00122{left:673.533333pt;}
.x6_c00122{left:675.066667pt;}
.xf6_c00122{left:677.373333pt;}
.x3f_c00122{left:679.680000pt;}
.xd8_c00122{left:683.520000pt;}
.xdc_c00122{left:685.053333pt;}
.x68_c00122{left:688.893333pt;}
.x96_c00122{left:690.426667pt;}
.xea_c00122{left:692.733333pt;}
.x5e_c00122{left:695.040000pt;}
.x2f_c00122{left:698.106667pt;}
.x84_c00122{left:699.653333pt;}
.xc0_c00122{left:701.946667pt;}
.x37_c00122{left:703.493333pt;}
.x7d_c00122{left:706.560000pt;}
.x4a_c00122{left:710.400000pt;}
.x55_c00122{left:715.013333pt;}
.x71_c00122{left:716.546667pt;}
.x1a_c00122{left:718.853333pt;}
.xef_c00122{left:720.386667pt;}
.x2a_c00122{left:725.760000pt;}
.x5f_c00122{left:727.293333pt;}
.xc1_c00122{left:728.826667pt;}
.x103_c00122{left:730.373333pt;}
.xd1_c00122{left:732.666667pt;}
.xfd_c00122{left:735.746667pt;}
.x8c_c00122{left:737.280000pt;}
.x72_c00122{left:739.586667pt;}
.xd2_c00122{left:741.120000pt;}
.xa4_c00122{left:742.653333pt;}
.x100_c00122{left:744.960000pt;}
.xac_c00122{left:748.800000pt;}
.x1b_c00122{left:751.106667pt;}
.xe6_c00122{left:752.640000pt;}
.x97_c00122{left:757.253333pt;}
.x60_c00122{left:760.320000pt;}
.x73_c00122{left:764.933333pt;}
.x7e_c00122{left:768.000000pt;}
.x108_c00122{left:772.613333pt;}
.xfa_c00122{left:775.680000pt;}
.x85_c00122{left:777.213333pt;}
.x74_c00122{left:778.746667pt;}
.x105_c00122{left:781.826667pt;}
.x69_c00122{left:785.666667pt;}
.xb1_c00122{left:787.973333pt;}
.x8d_c00122{left:789.506667pt;}
.xa7_c00122{left:791.040000pt;}
.xf7_c00122{left:795.653333pt;}
.xf8_c00122{left:799.493333pt;}
.x8e_c00122{left:805.626667pt;}
.x86_c00122{left:811.013333pt;}
.x6a_c00122{left:822.533333pt;}
.xcf_c00122{left:824.826667pt;}
.x10f_c00122{left:866.306667pt;}
.x113_c00122{left:868.613333pt;}
.x114_c00122{left:900.866667pt;}
.x110_c00122{left:936.960000pt;}
.x115_c00122{left:946.174059pt;}
.x112_c00122{left:956.933333pt;}
.x111_c00122{left:968.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0ec31dc35a03093430861493.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.109863;font-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_c00123{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m54_c00123{transform:matrix(0.056200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056200,0.000000,0.000000,0.250000,0,0);}
.m2e_c00123{transform:matrix(0.067825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067825,0.000000,0.000000,0.250000,0,0);}
.m4f_c00123{transform:matrix(0.068125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068125,0.000000,0.000000,0.250000,0,0);}
.m52_c00123{transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);}
.m55_c00123{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m13_c00123{transform:matrix(0.109625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109625,0.000000,0.000000,0.250000,0,0);}
.m37_c00123{transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);}
.m35_c00123{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.m5_c00123{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m5d_c00123{transform:matrix(0.140075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140075,0.000000,0.000000,0.250000,0,0);}
.m0_c00123{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m26_c00123{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m56_c00123{transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);}
.mc_c00123{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m19_c00123{transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);}
.m48_c00123{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);}
.m66_c00123{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m51_c00123{transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);}
.m65_c00123{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.m64_c00123{transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);}
.m5a_c00123{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);}
.md_c00123{transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);}
.m42_c00123{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m62_c00123{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00123{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.m1e_c00123{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);}
.m5c_c00123{transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);}
.m43_c00123{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);}
.m45_c00123{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00123{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);}
.m12_c00123{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);}
.m63_c00123{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.mf_c00123{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);}
.m61_c00123{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00123{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);}
.m20_c00123{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m10_c00123{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);}
.m18_c00123{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00123{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);}
.m22_c00123{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.m2a_c00123{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);}
.m1c_c00123{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);}
.m28_c00123{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb_c00123{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);}
.m2d_c00123{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);}
.m5b_c00123{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);}
.m46_c00123{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00123{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m17_c00123{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m50_c00123{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);}
.m57_c00123{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00123{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m47_c00123{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m34_c00123{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);}
.m44_c00123{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);}
.m3_c00123{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);}
.m21_c00123{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m29_c00123{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00123{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);}
.m6_c00123{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00123{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m41_c00123{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00123{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);}
.m1f_c00123{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00123{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m49_c00123{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);}
.m14_c00123{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4_c00123{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);}
.m3a_c00123{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00123{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m27_c00123{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m60_c00123{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);}
.ma_c00123{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m53_c00123{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m38_c00123{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);}
.m5f_c00123{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);}
.me_c00123{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m15_c00123{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);}
.m67_c00123{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m7_c00123{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m36_c00123{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);}
.m1_c00123{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00123{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m40_c00123{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m59_c00123{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00123{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);}
.m3e_c00123{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m33_c00123{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m58_c00123{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m39_c00123{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00123{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);}
.m8_c00123{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m32_c00123{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00123{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m24_c00123{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);}
.m4a_c00123{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00123{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);}
.m23_c00123{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00123{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m31_c00123{transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);}
.m30_c00123{transform:matrix(2.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.725000,0.000000,0.000000,0.250000,0,0);}
.m9_c00123{transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.000000,0.000000,0.000000,0.250000,0,0);}
.m25_c00123{transform:matrix(5.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.112500,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.v1_c00123{vertical-align:3.480000px;}
.ls1_c00123{letter-spacing:0.000000px;}
.ls0_c00123{letter-spacing:59.309400px;}
.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;}
}
.ws1_c00123{word-spacing:0.000000px;}
.ws0_c00123{word-spacing:251.687400px;}
.fc0_c00123{color:transparent;}
.fs6_c00123{font-size:3.456000px;}
.fs16_c00123{font-size:6.000000px;}
.fs7_c00123{font-size:6.900000px;}
.fs0_c00123{font-size:10.380000px;}
.fs13_c00123{font-size:13.800000px;}
.fs1_c00123{font-size:17.280000px;}
.fs14_c00123{font-size:20.760000px;}
.fs15_c00123{font-size:24.180000px;}
.fs20_c00123{font-size:27.660000px;}
.fs4_c00123{font-size:31.080000px;}
.fs3_c00123{font-size:34.560000px;}
.fs22_c00123{font-size:38.040000px;}
.fs24_c00123{font-size:41.460000px;}
.fs21_c00123{font-size:44.940000px;}
.fs25_c00123{font-size:48.360000px;}
.fs8_c00123{font-size:51.840000px;}
.fs23_c00123{font-size:55.320000px;}
.fs1d_c00123{font-size:58.740000px;}
.fs2_c00123{font-size:62.220000px;}
.fs5_c00123{font-size:65.640000px;}
.fs28_c00123{font-size:69.120000px;}
.fs1c_c00123{font-size:72.600000px;}
.fs2a_c00123{font-size:79.500000px;}
.fs1f_c00123{font-size:82.920000px;}
.fs1b_c00123{font-size:86.400000px;}
.fs1e_c00123{font-size:89.880000px;}
.fs1a_c00123{font-size:93.300000px;}
.fs18_c00123{font-size:96.780000px;}
.fs2c_c00123{font-size:100.200000px;}
.fs17_c00123{font-size:110.580000px;}
.fs11_c00123{font-size:114.060000px;}
.fsf_c00123{font-size:117.480000px;}
.fsc_c00123{font-size:120.960000px;}
.fsa_c00123{font-size:124.440000px;}
.fs2b_c00123{font-size:127.860000px;}
.fs19_c00123{font-size:131.340000px;}
.fs29_c00123{font-size:138.240000px;}
.fsd_c00123{font-size:145.140000px;}
.fs10_c00123{font-size:148.620000px;}
.fs12_c00123{font-size:159.000000px;}
.fs9_c00123{font-size:165.900000px;}
.fse_c00123{font-size:169.320000px;}
.fsb_c00123{font-size:179.700000px;}
.fs27_c00123{font-size:183.180000px;}
.fs26_c00123{font-size:196.980000px;}
.y0_c00123{bottom:0.000000px;}
.y61_c00123{bottom:817.350000px;}
.y60_c00123{bottom:861.405000px;}
.y5f_c00123{bottom:883.875000px;}
.y5e_c00123{bottom:887.325000px;}
.y5d_c00123{bottom:911.520000px;}
.y5c_c00123{bottom:919.290000px;}
.y5b_c00123{bottom:931.395000px;}
.y5a_c00123{bottom:946.950000px;}
.y59_c00123{bottom:994.470000px;}
.y58_c00123{bottom:1023.840000px;}
.y57_c00123{bottom:1025.565000px;}
.y56_c00123{bottom:1043.715000px;}
.y55_c00123{bottom:1054.950000px;}
.y54_c00123{bottom:1079.130000px;}
.y71_c00123{bottom:1090.365000px;}
.y72_c00123{bottom:1091.235000px;}
.y6f_c00123{bottom:1092.960000px;}
.y70_c00123{bottom:1093.830000px;}
.y6c_c00123{bottom:1098.150000px;}
.y6e_c00123{bottom:1100.730000px;}
.y6d_c00123{bottom:1101.600000px;}
.y53_c00123{bottom:1107.645000px;}
.y52_c00123{bottom:1109.370000px;}
.y69_c00123{bottom:1111.965000px;}
.y68_c00123{bottom:1114.560000px;}
.y6b_c00123{bottom:1117.155000px;}
.y67_c00123{bottom:1119.750000px;}
.y66_c00123{bottom:1121.475000px;}
.y6a_c00123{bottom:1124.925000px;}
.y64_c00123{bottom:1125.795000px;}
.y51_c00123{bottom:1130.115000px;}
.y65_c00123{bottom:1131.840000px;}
.y50_c00123{bottom:1138.755000px;}
.y4b_c00123{bottom:1143.930000px;}
.y4e_c00123{bottom:1158.630000px;}
.y4f_c00123{bottom:1160.355000px;}
.y4c_c00123{bottom:1162.950000px;}
.y4d_c00123{bottom:1167.270000px;}
.y3b_c00123{bottom:1172.445000px;}
.y3d_c00123{bottom:1175.040000px;}
.y39_c00123{bottom:1176.765000px;}
.y40_c00123{bottom:1177.635000px;}
.y3a_c00123{bottom:1178.490000px;}
.y3c_c00123{bottom:1179.360000px;}
.y3e_c00123{bottom:1180.230000px;}
.y3f_c00123{bottom:1181.085000px;}
.y49_c00123{bottom:1187.130000px;}
.y35_c00123{bottom:1188.870000px;}
.y30_c00123{bottom:1189.725000px;}
.y34_c00123{bottom:1190.595000px;}
.y38_c00123{bottom:1191.450000px;}
.y48_c00123{bottom:1192.320000px;}
.y37_c00123{bottom:1193.190000px;}
.y36_c00123{bottom:1194.045000px;}
.y32_c00123{bottom:1195.770000px;}
.y31_c00123{bottom:1196.640000px;}
.y4a_c00123{bottom:1197.510000px;}
.y33_c00123{bottom:1198.365000px;}
.y2b_c00123{bottom:1200.960000px;}
.y2c_c00123{bottom:1201.830000px;}
.y2d_c00123{bottom:1202.685000px;}
.y2e_c00123{bottom:1203.555000px;}
.y47_c00123{bottom:1207.005000px;}
.y62_c00123{bottom:1207.875000px;}
.y2f_c00123{bottom:1208.730000px;}
.y63_c00123{bottom:1213.050000px;}
.y27_c00123{bottom:1227.750000px;}
.y46_c00123{bottom:1228.605000px;}
.y2a_c00123{bottom:1229.475000px;}
.y29_c00123{bottom:1230.330000px;}
.y26_c00123{bottom:1231.200000px;}
.y28_c00123{bottom:1232.070000px;}
.y25_c00123{bottom:1232.925000px;}
.y24_c00123{bottom:1233.795000px;}
.y1f_c00123{bottom:1234.650000px;}
.y22_c00123{bottom:1235.520000px;}
.y21_c00123{bottom:1237.245000px;}
.y41_c00123{bottom:1238.970000px;}
.y42_c00123{bottom:1240.710000px;}
.y20_c00123{bottom:1255.395000px;}
.y23_c00123{bottom:1256.250000px;}
.y1d_c00123{bottom:1266.630000px;}
.y1a_c00123{bottom:1267.485000px;}
.y1b_c00123{bottom:1268.355000px;}
.y19_c00123{bottom:1270.080000px;}
.y1e_c00123{bottom:1271.805000px;}
.y18_c00123{bottom:1272.675000px;}
.y1c_c00123{bottom:1273.530000px;}
.y16_c00123{bottom:1274.400000px;}
.y15_c00123{bottom:1276.125000px;}
.y12_c00123{bottom:1276.995000px;}
.y13_c00123{bottom:1278.720000px;}
.y14_c00123{bottom:1279.590000px;}
.y11_c00123{bottom:1306.365000px;}
.y17_c00123{bottom:1318.470000px;}
.y45_c00123{bottom:1319.325000px;}
.yf_c00123{bottom:1321.920000px;}
.y10_c00123{bottom:1322.790000px;}
.y44_c00123{bottom:1323.645000px;}
.y43_c00123{bottom:1327.965000px;}
.yd_c00123{bottom:1349.565000px;}
.ye_c00123{bottom:1363.395000px;}
.y9_c00123{bottom:1384.995000px;}
.yb_c00123{bottom:1390.170000px;}
.y7_c00123{bottom:1391.040000px;}
.y8_c00123{bottom:1391.910000px;}
.ya_c00123{bottom:1392.765000px;}
.yc_c00123{bottom:1393.635000px;}
.y4_c00123{bottom:1394.490000px;}
.y6_c00123{bottom:1400.550000px;}
.y5_c00123{bottom:1404.870000px;}
.y3_c00123{bottom:1413.510000px;}
.y1_c00123{bottom:1430.790000px;}
.y2_c00123{bottom:1432.515000px;}
.h8_c00123{height:3.110063px;}
.h18_c00123{height:5.399414px;}
.h9_c00123{height:6.209326px;}
.h22_c00123{height:8.879414px;}
.h2_c00123{height:9.340986px;}
.h15_c00123{height:12.418652px;}
.h2a_c00123{height:12.760986px;}
.h3_c00123{height:15.550313px;}
.h16_c00123{height:18.681973px;}
.h17_c00123{height:21.759639px;}
.h23_c00123{height:24.891299px;}
.h6_c00123{height:27.968965px;}
.h5_c00123{height:31.100625px;}
.h25_c00123{height:34.232285px;}
.h27_c00123{height:37.309951px;}
.h24_c00123{height:40.441611px;}
.h28_c00123{height:43.519277px;}
.ha_c00123{height:46.650937px;}
.h26_c00123{height:49.782598px;}
.h1f_c00123{height:52.860264px;}
.h4_c00123{height:55.991924px;}
.h7_c00123{height:59.069590px;}
.h2c_c00123{height:62.201250px;}
.h1e_c00123{height:65.332910px;}
.h2e_c00123{height:71.542236px;}
.h21_c00123{height:74.619902px;}
.h1d_c00123{height:77.751563px;}
.h20_c00123{height:80.883223px;}
.h1c_c00123{height:83.960889px;}
.h1a_c00123{height:87.092549px;}
.h30_c00123{height:90.170215px;}
.h19_c00123{height:99.511201px;}
.h13_c00123{height:102.642861px;}
.h11_c00123{height:105.720527px;}
.he_c00123{height:108.852188px;}
.hc_c00123{height:111.983848px;}
.h2f_c00123{height:115.061514px;}
.h1b_c00123{height:118.193174px;}
.h2d_c00123{height:124.402500px;}
.hf_c00123{height:130.611826px;}
.h12_c00123{height:133.743486px;}
.h14_c00123{height:143.084473px;}
.hb_c00123{height:149.293799px;}
.h10_c00123{height:152.371465px;}
.hd_c00123{height:161.712451px;}
.h2b_c00123{height:164.844111px;}
.h29_c00123{height:177.262764px;}
.h1_c00123{height:1503.000000px;}
.h0_c00123{height:1503.360000px;}
.w0_c00123{width:1088.640000px;}
.w1_c00123{width:1089.000000px;}
.x0_c00123{left:0.000000px;}
.x67_c00123{left:1.725000px;}
.x6d_c00123{left:12.960000px;}
.x63_c00123{left:15.555000px;}
.x68_c00123{left:17.280000px;}
.x65_c00123{left:28.515000px;}
.x77_c00123{left:31.965000px;}
.x6e_c00123{left:33.690000px;}
.x70_c00123{left:38.880000px;}
.x64_c00123{left:41.475000px;}
.x74_c00123{left:45.795000px;}
.x76_c00123{left:52.710000px;}
.x6f_c00123{left:58.755000px;}
.x71_c00123{left:99.360000px;}
.x73_c00123{left:101.955000px;}
.x69_c00123{left:103.680000px;}
.x66_c00123{left:119.235000px;}
.x72_c00123{left:132.195000px;}
.x75_c00123{left:137.370000px;}
.x60_c00123{left:139.110000px;}
.x5_c00123{left:142.560000px;}
.x61_c00123{left:154.650000px;}
.x4_c00123{left:164.159400px;}
.x62_c00123{left:165.885000px;}
.x5f_c00123{left:178.845000px;}
.x6b_c00123{left:210.810000px;}
.x6a_c00123{left:215.130000px;}
.x6c_c00123{left:217.725000px;}
.x16_c00123{left:230.685000px;}
.x15_c00123{left:235.875000px;}
.x13_c00123{left:240.195000px;}
.x9_c00123{left:245.370000px;}
.x5c_c00123{left:247.110000px;}
.x17_c00123{left:255.750000px;}
.x7a_c00123{left:265.245000px;}
.x23_c00123{left:267.840000px;}
.x24_c00123{left:273.030000px;}
.x2a_c00123{left:289.440000px;}
.x31_c00123{left:293.760000px;}
.x46_c00123{left:298.950000px;}
.x18_c00123{left:301.530000px;}
.xa_c00123{left:305.850000px;}
.x32_c00123{left:308.445000px;}
.x84_c00123{left:310.170000px;}
.x3a_c00123{left:311.910000px;}
.xb_c00123{left:317.955000px;}
.x7b_c00123{left:324.000000px;}
.x3b_c00123{left:332.640000px;}
.x33_c00123{left:334.365000px;}
.x85_c00123{left:343.005000px;}
.x19_c00123{left:345.600000px;}
.x3c_c00123{left:355.110000px;}
.x7c_c00123{left:366.330000px;}
.x25_c00123{left:374.970000px;}
.x8b_c00123{left:382.755000px;}
.x86_c00123{left:388.800000px;}
.x1a_c00123{left:391.395000px;}
.x26_c00123{left:393.120000px;}
.x7d_c00123{left:403.485000px;}
.x3d_c00123{left:411.270000px;}
.x47_c00123{left:413.850000px;}
.x48_c00123{left:419.910000px;}
.xc_c00123{left:423.360000px;}
.x2b_c00123{left:432.000000px;}
.x4f_c00123{left:438.915000px;}
.x2c_c00123{left:441.510000px;}
.x1b_c00123{left:446.685000px;}
.x7e_c00123{left:451.005000px;}
.x50_c00123{left:453.600000px;}
.x51_c00123{left:468.285000px;}
.x3e_c00123{left:475.200000px;}
.x2d_c00123{left:477.795000px;}
.x3f_c00123{left:482.970000px;}
.x34_c00123{left:490.755000px;}
.x87_c00123{left:492.480000px;}
.x1c_c00123{left:495.075000px;}
.x52_c00123{left:496.800000px;}
.x49_c00123{left:503.715000px;}
.x88_c00123{left:506.310000px;}
.x53_c00123{left:514.080000px;}
.x54_c00123{left:526.170000px;}
.x1_c00123{left:531.360000px;}
.x6_c00123{left:537.405000px;}
.x2_c00123{left:543.450000px;}
.xd_c00123{left:547.770000px;}
.x4a_c00123{left:551.235000px;}
.x3_c00123{left:557.280000px;}
.x7_c00123{left:559.005000px;}
.x35_c00123{left:562.470000px;}
.x55_c00123{left:567.645000px;}
.x7f_c00123{left:570.240000px;}
.x56_c00123{left:584.070000px;}
.x89_c00123{left:586.650000px;}
.x80_c00123{left:590.970000px;}
.x57_c00123{left:597.885000px;}
.x81_c00123{left:602.205000px;}
.x2e_c00123{left:604.800000px;}
.x58_c00123{left:612.570000px;}
.x82_c00123{left:626.400000px;}
.x40_c00123{left:629.850000px;}
.x1d_c00123{left:632.445000px;}
.x4b_c00123{left:641.085075px;}
.x59_c00123{left:643.680000px;}
.x41_c00123{left:654.915000px;}
.x4c_c00123{left:658.365000px;}
.x5a_c00123{left:660.090000px;}
.x8a_c00123{left:661.830000px;}
.x36_c00123{left:667.875000px;}
.x8_c00123{left:674.790000px;}
.x1e_c00123{left:682.560000px;}
.x2f_c00123{left:685.155000px;}
.x8c_c00123{left:686.880000px;}
.xe_c00123{left:692.070000px;}
.x42_c00123{left:695.520000px;}
.x30_c00123{left:697.245000px;}
.x4d_c00123{left:699.840000px;}
.x43_c00123{left:705.030000px;}
.x8d_c00123{left:712.800000px;}
.xf_c00123{left:730.950000px;}
.x1f_c00123{left:738.720000px;}
.x44_c00123{left:743.910000px;}
.x10_c00123{left:756.870864px;}
.x20_c00123{left:772.410000px;}
.x83_c00123{left:775.005000px;}
.x11_c00123{left:778.470000px;}
.x27_c00123{left:781.920000px;}
.x28_c00123{left:791.430000px;}
.x4e_c00123{left:794.880000px;}
.x37_c00123{left:802.650000px;}
.x21_c00123{left:808.710000px;}
.x5b_c00123{left:814.755000px;}
.x45_c00123{left:817.350000px;}
.x38_c00123{left:857.955000px;}
.x39_c00123{left:862.275000px;}
.x29_c00123{left:867.450000px;}
.x22_c00123{left:878.685000px;}
.x14_c00123{left:889.050000px;}
.x12_c00123{left:890.790000px;}
.x78_c00123{left:979.770000px;}
.x5d_c00123{left:988.410000px;}
.x5e_c00123{left:990.150000px;}
.x79_c00123{left:992.730000px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.v1_c00123{vertical-align:3.093333pt;}
.ls1_c00123{letter-spacing:0.000000pt;}
.ls0_c00123{letter-spacing:52.719467pt;}
.ws1_c00123{word-spacing:0.000000pt;}
.ws0_c00123{word-spacing:223.722133pt;}
.fs6_c00123{font-size:3.072000pt;}
.fs16_c00123{font-size:5.333333pt;}
.fs7_c00123{font-size:6.133333pt;}
.fs0_c00123{font-size:9.226667pt;}
.fs13_c00123{font-size:12.266667pt;}
.fs1_c00123{font-size:15.360000pt;}
.fs14_c00123{font-size:18.453333pt;}
.fs15_c00123{font-size:21.493333pt;}
.fs20_c00123{font-size:24.586667pt;}
.fs4_c00123{font-size:27.626667pt;}
.fs3_c00123{font-size:30.720000pt;}
.fs22_c00123{font-size:33.813333pt;}
.fs24_c00123{font-size:36.853333pt;}
.fs21_c00123{font-size:39.946667pt;}
.fs25_c00123{font-size:42.986667pt;}
.fs8_c00123{font-size:46.080000pt;}
.fs23_c00123{font-size:49.173333pt;}
.fs1d_c00123{font-size:52.213333pt;}
.fs2_c00123{font-size:55.306667pt;}
.fs5_c00123{font-size:58.346667pt;}
.fs28_c00123{font-size:61.440000pt;}
.fs1c_c00123{font-size:64.533333pt;}
.fs2a_c00123{font-size:70.666667pt;}
.fs1f_c00123{font-size:73.706667pt;}
.fs1b_c00123{font-size:76.800000pt;}
.fs1e_c00123{font-size:79.893333pt;}
.fs1a_c00123{font-size:82.933333pt;}
.fs18_c00123{font-size:86.026667pt;}
.fs2c_c00123{font-size:89.066667pt;}
.fs17_c00123{font-size:98.293333pt;}
.fs11_c00123{font-size:101.386667pt;}
.fsf_c00123{font-size:104.426667pt;}
.fsc_c00123{font-size:107.520000pt;}
.fsa_c00123{font-size:110.613333pt;}
.fs2b_c00123{font-size:113.653333pt;}
.fs19_c00123{font-size:116.746667pt;}
.fs29_c00123{font-size:122.880000pt;}
.fsd_c00123{font-size:129.013333pt;}
.fs10_c00123{font-size:132.106667pt;}
.fs12_c00123{font-size:141.333333pt;}
.fs9_c00123{font-size:147.466667pt;}
.fse_c00123{font-size:150.506667pt;}
.fsb_c00123{font-size:159.733333pt;}
.fs27_c00123{font-size:162.826667pt;}
.fs26_c00123{font-size:175.093333pt;}
.y0_c00123{bottom:0.000000pt;}
.y61_c00123{bottom:726.533333pt;}
.y60_c00123{bottom:765.693333pt;}
.y5f_c00123{bottom:785.666667pt;}
.y5e_c00123{bottom:788.733333pt;}
.y5d_c00123{bottom:810.240000pt;}
.y5c_c00123{bottom:817.146667pt;}
.y5b_c00123{bottom:827.906667pt;}
.y5a_c00123{bottom:841.733333pt;}
.y59_c00123{bottom:883.973333pt;}
.y58_c00123{bottom:910.080000pt;}
.y57_c00123{bottom:911.613333pt;}
.y56_c00123{bottom:927.746667pt;}
.y55_c00123{bottom:937.733333pt;}
.y54_c00123{bottom:959.226667pt;}
.y71_c00123{bottom:969.213333pt;}
.y72_c00123{bottom:969.986667pt;}
.y6f_c00123{bottom:971.520000pt;}
.y70_c00123{bottom:972.293333pt;}
.y6c_c00123{bottom:976.133333pt;}
.y6e_c00123{bottom:978.426667pt;}
.y6d_c00123{bottom:979.200000pt;}
.y53_c00123{bottom:984.573333pt;}
.y52_c00123{bottom:986.106667pt;}
.y69_c00123{bottom:988.413333pt;}
.y68_c00123{bottom:990.720000pt;}
.y6b_c00123{bottom:993.026667pt;}
.y67_c00123{bottom:995.333333pt;}
.y66_c00123{bottom:996.866667pt;}
.y6a_c00123{bottom:999.933333pt;}
.y64_c00123{bottom:1000.706667pt;}
.y51_c00123{bottom:1004.546667pt;}
.y65_c00123{bottom:1006.080000pt;}
.y50_c00123{bottom:1012.226667pt;}
.y4b_c00123{bottom:1016.826667pt;}
.y4e_c00123{bottom:1029.893333pt;}
.y4f_c00123{bottom:1031.426667pt;}
.y4c_c00123{bottom:1033.733333pt;}
.y4d_c00123{bottom:1037.573333pt;}
.y3b_c00123{bottom:1042.173333pt;}
.y3d_c00123{bottom:1044.480000pt;}
.y39_c00123{bottom:1046.013333pt;}
.y40_c00123{bottom:1046.786667pt;}
.y3a_c00123{bottom:1047.546667pt;}
.y3c_c00123{bottom:1048.320000pt;}
.y3e_c00123{bottom:1049.093333pt;}
.y3f_c00123{bottom:1049.853333pt;}
.y49_c00123{bottom:1055.226667pt;}
.y35_c00123{bottom:1056.773333pt;}
.y30_c00123{bottom:1057.533333pt;}
.y34_c00123{bottom:1058.306667pt;}
.y38_c00123{bottom:1059.066667pt;}
.y48_c00123{bottom:1059.840000pt;}
.y37_c00123{bottom:1060.613333pt;}
.y36_c00123{bottom:1061.373333pt;}
.y32_c00123{bottom:1062.906667pt;}
.y31_c00123{bottom:1063.680000pt;}
.y4a_c00123{bottom:1064.453333pt;}
.y33_c00123{bottom:1065.213333pt;}
.y2b_c00123{bottom:1067.520000pt;}
.y2c_c00123{bottom:1068.293333pt;}
.y2d_c00123{bottom:1069.053333pt;}
.y2e_c00123{bottom:1069.826667pt;}
.y47_c00123{bottom:1072.893333pt;}
.y62_c00123{bottom:1073.666667pt;}
.y2f_c00123{bottom:1074.426667pt;}
.y63_c00123{bottom:1078.266667pt;}
.y27_c00123{bottom:1091.333333pt;}
.y46_c00123{bottom:1092.093333pt;}
.y2a_c00123{bottom:1092.866667pt;}
.y29_c00123{bottom:1093.626667pt;}
.y26_c00123{bottom:1094.400000pt;}
.y28_c00123{bottom:1095.173333pt;}
.y25_c00123{bottom:1095.933333pt;}
.y24_c00123{bottom:1096.706667pt;}
.y1f_c00123{bottom:1097.466667pt;}
.y22_c00123{bottom:1098.240000pt;}
.y21_c00123{bottom:1099.773333pt;}
.y41_c00123{bottom:1101.306667pt;}
.y42_c00123{bottom:1102.853333pt;}
.y20_c00123{bottom:1115.906667pt;}
.y23_c00123{bottom:1116.666667pt;}
.y1d_c00123{bottom:1125.893333pt;}
.y1a_c00123{bottom:1126.653333pt;}
.y1b_c00123{bottom:1127.426667pt;}
.y19_c00123{bottom:1128.960000pt;}
.y1e_c00123{bottom:1130.493333pt;}
.y18_c00123{bottom:1131.266667pt;}
.y1c_c00123{bottom:1132.026667pt;}
.y16_c00123{bottom:1132.800000pt;}
.y15_c00123{bottom:1134.333333pt;}
.y12_c00123{bottom:1135.106667pt;}
.y13_c00123{bottom:1136.640000pt;}
.y14_c00123{bottom:1137.413333pt;}
.y11_c00123{bottom:1161.213333pt;}
.y17_c00123{bottom:1171.973333pt;}
.y45_c00123{bottom:1172.733333pt;}
.yf_c00123{bottom:1175.040000pt;}
.y10_c00123{bottom:1175.813333pt;}
.y44_c00123{bottom:1176.573333pt;}
.y43_c00123{bottom:1180.413333pt;}
.yd_c00123{bottom:1199.613333pt;}
.ye_c00123{bottom:1211.906667pt;}
.y9_c00123{bottom:1231.106667pt;}
.yb_c00123{bottom:1235.706667pt;}
.y7_c00123{bottom:1236.480000pt;}
.y8_c00123{bottom:1237.253333pt;}
.ya_c00123{bottom:1238.013333pt;}
.yc_c00123{bottom:1238.786667pt;}
.y4_c00123{bottom:1239.546667pt;}
.y6_c00123{bottom:1244.933333pt;}
.y5_c00123{bottom:1248.773333pt;}
.y3_c00123{bottom:1256.453333pt;}
.y1_c00123{bottom:1271.813333pt;}
.y2_c00123{bottom:1273.346667pt;}
.h8_c00123{height:2.764500pt;}
.h18_c00123{height:4.799479pt;}
.h9_c00123{height:5.519401pt;}
.h22_c00123{height:7.892812pt;}
.h2_c00123{height:8.303099pt;}
.h15_c00123{height:11.038802pt;}
.h2a_c00123{height:11.343099pt;}
.h3_c00123{height:13.822500pt;}
.h16_c00123{height:16.606198pt;}
.h17_c00123{height:19.341901pt;}
.h23_c00123{height:22.125599pt;}
.h6_c00123{height:24.861302pt;}
.h5_c00123{height:27.645000pt;}
.h25_c00123{height:30.428698pt;}
.h27_c00123{height:33.164401pt;}
.h24_c00123{height:35.948099pt;}
.h28_c00123{height:38.683802pt;}
.ha_c00123{height:41.467500pt;}
.h26_c00123{height:44.251198pt;}
.h1f_c00123{height:46.986901pt;}
.h4_c00123{height:49.770599pt;}
.h7_c00123{height:52.506302pt;}
.h2c_c00123{height:55.290000pt;}
.h1e_c00123{height:58.073698pt;}
.h2e_c00123{height:63.593099pt;}
.h21_c00123{height:66.328802pt;}
.h1d_c00123{height:69.112500pt;}
.h20_c00123{height:71.896198pt;}
.h1c_c00123{height:74.631901pt;}
.h1a_c00123{height:77.415599pt;}
.h30_c00123{height:80.151302pt;}
.h19_c00123{height:88.454401pt;}
.h13_c00123{height:91.238099pt;}
.h11_c00123{height:93.973802pt;}
.he_c00123{height:96.757500pt;}
.hc_c00123{height:99.541198pt;}
.h2f_c00123{height:102.276901pt;}
.h1b_c00123{height:105.060599pt;}
.h2d_c00123{height:110.580000pt;}
.hf_c00123{height:116.099401pt;}
.h12_c00123{height:118.883099pt;}
.h14_c00123{height:127.186198pt;}
.hb_c00123{height:132.705599pt;}
.h10_c00123{height:135.441302pt;}
.hd_c00123{height:143.744401pt;}
.h2b_c00123{height:146.528099pt;}
.h29_c00123{height:157.566901pt;}
.h1_c00123{height:1336.000000pt;}
.h0_c00123{height:1336.320000pt;}
.w0_c00123{width:967.680000pt;}
.w1_c00123{width:968.000000pt;}
.x0_c00123{left:0.000000pt;}
.x67_c00123{left:1.533333pt;}
.x6d_c00123{left:11.520000pt;}
.x63_c00123{left:13.826667pt;}
.x68_c00123{left:15.360000pt;}
.x65_c00123{left:25.346667pt;}
.x77_c00123{left:28.413333pt;}
.x6e_c00123{left:29.946667pt;}
.x70_c00123{left:34.560000pt;}
.x64_c00123{left:36.866667pt;}
.x74_c00123{left:40.706667pt;}
.x76_c00123{left:46.853333pt;}
.x6f_c00123{left:52.226667pt;}
.x71_c00123{left:88.320000pt;}
.x73_c00123{left:90.626667pt;}
.x69_c00123{left:92.160000pt;}
.x66_c00123{left:105.986667pt;}
.x72_c00123{left:117.506667pt;}
.x75_c00123{left:122.106667pt;}
.x60_c00123{left:123.653333pt;}
.x5_c00123{left:126.720000pt;}
.x61_c00123{left:137.466667pt;}
.x4_c00123{left:145.919467pt;}
.x62_c00123{left:147.453333pt;}
.x5f_c00123{left:158.973333pt;}
.x6b_c00123{left:187.386667pt;}
.x6a_c00123{left:191.226667pt;}
.x6c_c00123{left:193.533333pt;}
.x16_c00123{left:205.053333pt;}
.x15_c00123{left:209.666667pt;}
.x13_c00123{left:213.506667pt;}
.x9_c00123{left:218.106667pt;}
.x5c_c00123{left:219.653333pt;}
.x17_c00123{left:227.333333pt;}
.x7a_c00123{left:235.773333pt;}
.x23_c00123{left:238.080000pt;}
.x24_c00123{left:242.693333pt;}
.x2a_c00123{left:257.280000pt;}
.x31_c00123{left:261.120000pt;}
.x46_c00123{left:265.733333pt;}
.x18_c00123{left:268.026667pt;}
.xa_c00123{left:271.866667pt;}
.x32_c00123{left:274.173333pt;}
.x84_c00123{left:275.706667pt;}
.x3a_c00123{left:277.253333pt;}
.xb_c00123{left:282.626667pt;}
.x7b_c00123{left:288.000000pt;}
.x3b_c00123{left:295.680000pt;}
.x33_c00123{left:297.213333pt;}
.x85_c00123{left:304.893333pt;}
.x19_c00123{left:307.200000pt;}
.x3c_c00123{left:315.653333pt;}
.x7c_c00123{left:325.626667pt;}
.x25_c00123{left:333.306667pt;}
.x8b_c00123{left:340.226667pt;}
.x86_c00123{left:345.600000pt;}
.x1a_c00123{left:347.906667pt;}
.x26_c00123{left:349.440000pt;}
.x7d_c00123{left:358.653333pt;}
.x3d_c00123{left:365.573333pt;}
.x47_c00123{left:367.866667pt;}
.x48_c00123{left:373.253333pt;}
.xc_c00123{left:376.320000pt;}
.x2b_c00123{left:384.000000pt;}
.x4f_c00123{left:390.146667pt;}
.x2c_c00123{left:392.453333pt;}
.x1b_c00123{left:397.053333pt;}
.x7e_c00123{left:400.893333pt;}
.x50_c00123{left:403.200000pt;}
.x51_c00123{left:416.253333pt;}
.x3e_c00123{left:422.400000pt;}
.x2d_c00123{left:424.706667pt;}
.x3f_c00123{left:429.306667pt;}
.x34_c00123{left:436.226667pt;}
.x87_c00123{left:437.760000pt;}
.x1c_c00123{left:440.066667pt;}
.x52_c00123{left:441.600000pt;}
.x49_c00123{left:447.746667pt;}
.x88_c00123{left:450.053333pt;}
.x53_c00123{left:456.960000pt;}
.x54_c00123{left:467.706667pt;}
.x1_c00123{left:472.320000pt;}
.x6_c00123{left:477.693333pt;}
.x2_c00123{left:483.066667pt;}
.xd_c00123{left:486.906667pt;}
.x4a_c00123{left:489.986667pt;}
.x3_c00123{left:495.360000pt;}
.x7_c00123{left:496.893333pt;}
.x35_c00123{left:499.973333pt;}
.x55_c00123{left:504.573333pt;}
.x7f_c00123{left:506.880000pt;}
.x56_c00123{left:519.173333pt;}
.x89_c00123{left:521.466667pt;}
.x80_c00123{left:525.306667pt;}
.x57_c00123{left:531.453333pt;}
.x81_c00123{left:535.293333pt;}
.x2e_c00123{left:537.600000pt;}
.x58_c00123{left:544.506667pt;}
.x82_c00123{left:556.800000pt;}
.x40_c00123{left:559.866667pt;}
.x1d_c00123{left:562.173333pt;}
.x4b_c00123{left:569.853400pt;}
.x59_c00123{left:572.160000pt;}
.x41_c00123{left:582.146667pt;}
.x4c_c00123{left:585.213333pt;}
.x5a_c00123{left:586.746667pt;}
.x8a_c00123{left:588.293333pt;}
.x36_c00123{left:593.666667pt;}
.x8_c00123{left:599.813333pt;}
.x1e_c00123{left:606.720000pt;}
.x2f_c00123{left:609.026667pt;}
.x8c_c00123{left:610.560000pt;}
.xe_c00123{left:615.173333pt;}
.x42_c00123{left:618.240000pt;}
.x30_c00123{left:619.773333pt;}
.x4d_c00123{left:622.080000pt;}
.x43_c00123{left:626.693333pt;}
.x8d_c00123{left:633.600000pt;}
.xf_c00123{left:649.733333pt;}
.x1f_c00123{left:656.640000pt;}
.x44_c00123{left:661.253333pt;}
.x10_c00123{left:672.774101pt;}
.x20_c00123{left:686.586667pt;}
.x83_c00123{left:688.893333pt;}
.x11_c00123{left:691.973333pt;}
.x27_c00123{left:695.040000pt;}
.x28_c00123{left:703.493333pt;}
.x4e_c00123{left:706.560000pt;}
.x37_c00123{left:713.466667pt;}
.x21_c00123{left:718.853333pt;}
.x5b_c00123{left:724.226667pt;}
.x45_c00123{left:726.533333pt;}
.x38_c00123{left:762.626667pt;}
.x39_c00123{left:766.466667pt;}
.x29_c00123{left:771.066667pt;}
.x22_c00123{left:781.053333pt;}
.x14_c00123{left:790.266667pt;}
.x12_c00123{left:791.813333pt;}
.x78_c00123{left:870.906667pt;}
.x5d_c00123{left:878.586667pt;}
.x5e_c00123{left:880.133333pt;}
.x79_c00123{left:882.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_624dbfc6ab5129f9ba25af6c.woff2')format("woff");}.ff1_c00124{font-family:ff1_c00124;line-height:1.109863;font-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_c00124{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m117_c00124{transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);}
.m113_c00124{transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);}
.m115_c00124{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);}
.m167_c00124{transform:matrix(0.056525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056525,0.000000,0.000000,0.250000,0,0);}
.mb3_c00124{transform:matrix(0.061550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061550,0.000000,0.000000,0.250000,0,0);}
.m11f_c00124{transform:matrix(0.062750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062750,0.000000,0.000000,0.250000,0,0);}
.m184_c00124{transform:matrix(0.065975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065975,0.000000,0.000000,0.250000,0,0);}
.mf3_c00124{transform:matrix(0.070200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070200,0.000000,0.000000,0.250000,0,0);}
.m14b_c00124{transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072500,0.000000,0.000000,0.250000,0,0);}
.m116_c00124{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.m130_c00124{transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077250,0.000000,0.000000,0.250000,0,0);}
.m68_c00124{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m16d_c00124{transform:matrix(0.082250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082250,0.000000,0.000000,0.250000,0,0);}
.m13c_c00124{transform:matrix(0.084525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084525,0.000000,0.000000,0.250000,0,0);}
.me4_c00124{transform:matrix(0.086875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086875,0.000000,0.000000,0.250000,0,0);}
.m17e_c00124{transform:matrix(0.090750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090750,0.000000,0.000000,0.250000,0,0);}
.m175_c00124{transform:matrix(0.092275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092275,0.000000,0.000000,0.250000,0,0);}
.m15_c00124{transform:matrix(0.092425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092425,0.000000,0.000000,0.250000,0,0);}
.m17b_c00124{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.m183_c00124{transform:matrix(0.093925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093925,0.000000,0.000000,0.250000,0,0);}
.m8e_c00124{transform:matrix(0.093975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093975,0.000000,0.000000,0.250000,0,0);}
.meb_c00124{transform:matrix(0.094075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094075,0.000000,0.000000,0.250000,0,0);}
.mec_c00124{transform:matrix(0.095650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095650,0.000000,0.000000,0.250000,0,0);}
.m14d_c00124{transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);}
.mcf_c00124{transform:matrix(0.099375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099375,0.000000,0.000000,0.250000,0,0);}
.m6b_c00124{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);}
.m149_c00124{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);}
.m156_c00124{transform:matrix(0.101650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101650,0.000000,0.000000,0.250000,0,0);}
.m19e_c00124{transform:matrix(0.103425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103425,0.000000,0.000000,0.250000,0,0);}
.m17c_c00124{transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);}
.m87_c00124{transform:matrix(0.104825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104825,0.000000,0.000000,0.250000,0,0);}
.m71_c00124{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m30_c00124{transform:matrix(0.108925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108925,0.000000,0.000000,0.250000,0,0);}
.m16f_c00124{transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);}
.m86_c00124{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00124{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m6c_c00124{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00124{transform:matrix(0.112100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112100,0.000000,0.000000,0.250000,0,0);}
.m88_c00124{transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);}
.m80_c00124{transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);}
.m19d_c00124{transform:matrix(0.112625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112625,0.000000,0.000000,0.250000,0,0);}
.mef_c00124{transform:matrix(0.114200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114200,0.000000,0.000000,0.250000,0,0);}
.m14c_c00124{transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);}
.mf_c00124{transform:matrix(0.115725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115725,0.000000,0.000000,0.250000,0,0);}
.m138_c00124{transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);}
.m16c_c00124{transform:matrix(0.117025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117025,0.000000,0.000000,0.250000,0,0);}
.m33_c00124{transform:matrix(0.117175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117175,0.000000,0.000000,0.250000,0,0);}
.m13f_c00124{transform:matrix(0.118150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118150,0.000000,0.000000,0.250000,0,0);}
.m177_c00124{transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);}
.m6e_c00124{transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);}
.me8_c00124{transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);}
.m6f_c00124{transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);}
.m10c_c00124{transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);}
.me6_c00124{transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);}
.m10_c00124{transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);}
.m13d_c00124{transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00124{transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);}
.m125_c00124{transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);}
.m182_c00124{transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);}
.mc2_c00124{transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);}
.m82_c00124{transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);}
.mab_c00124{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m179_c00124{transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);}
.m17d_c00124{transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);}
.m2e_c00124{transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);}
.m148_c00124{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00124{transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);}
.m140_c00124{transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);}
.mee_c00124{transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);}
.m6d_c00124{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);}
.m17a_c00124{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);}
.m11e_c00124{transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);}
.m1b_c00124{transform:matrix(0.127575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127575,0.000000,0.000000,0.250000,0,0);}
.mc1_c00124{transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);}
.mdb_c00124{transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);}
.ma0_c00124{transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);}
.mb7_c00124{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m119_c00124{transform:matrix(0.130400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130400,0.000000,0.000000,0.250000,0,0);}
.m144_c00124{transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);}
.m142_c00124{transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);}
.ma4_c00124{transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);}
.m122_c00124{transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);}
.mff_c00124{transform:matrix(0.132125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132125,0.000000,0.000000,0.250000,0,0);}
.mf8_c00124{transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);}
.m14_c00124{transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);}
.m11b_c00124{transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);}
.m13_c00124{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.m109_c00124{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);}
.m12b_c00124{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);}
.m57_c00124{transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);}
.m196_c00124{transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);}
.m104_c00124{transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);}
.m103_c00124{transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);}
.m98_c00124{transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);}
.m100_c00124{transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);}
.m90_c00124{transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);}
.mac_c00124{transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);}
.m141_c00124{transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);}
.m174_c00124{transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);}
.m93_c00124{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);}
.mbf_c00124{transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);}
.m9c_c00124{transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);}
.m10a_c00124{transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);}
.me2_c00124{transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);}
.md9_c00124{transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);}
.m181_c00124{transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);}
.m8a_c00124{transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);}
.m158_c00124{transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);}
.m9b_c00124{transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);}
.m133_c00124{transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);}
.m134_c00124{transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);}
.m178_c00124{transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);}
.m176_c00124{transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);}
.m11a_c00124{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);}
.m17f_c00124{transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);}
.mc3_c00124{transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);}
.m54_c00124{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m92_c00124{transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);}
.m4_c00124{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.mc0_c00124{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.m2_c00124{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m132_c00124{transform:matrix(0.144300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144300,0.000000,0.000000,0.250000,0,0);}
.m166_c00124{transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);}
.m21_c00124{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);}
.mde_c00124{transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);}
.mfe_c00124{transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);}
.m10e_c00124{transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);}
.m16e_c00124{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m94_c00124{transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);}
.me9_c00124{transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);}
.m194_c00124{transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);}
.mf5_c00124{transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);}
.m160_c00124{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m18b_c00124{transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);}
.m12_c00124{transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);}
.m2d_c00124{transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);}
.m12a_c00124{transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);}
.m7e_c00124{transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);}
.m170_c00124{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00124{transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);}
.mc6_c00124{transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);}
.ma8_c00124{transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);}
.m135_c00124{transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);}
.m10f_c00124{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.m9d_c00124{transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);}
.mdd_c00124{transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);}
.m12c_c00124{transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);}
.m8c_c00124{transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);}
.m154_c00124{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.m1d_c00124{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);}
.m147_c00124{transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);}
.m101_c00124{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.mcd_c00124{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.m32_c00124{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);}
.m81_c00124{transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);}
.m189_c00124{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);}
.m13e_c00124{transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);}
.mb0_c00124{transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);}
.m153_c00124{transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);}
.m7a_c00124{transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);}
.m10b_c00124{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m5d_c00124{transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);}
.mf0_c00124{transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);}
.mfb_c00124{transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);}
.m23_c00124{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.mbc_c00124{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m186_c00124{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.maf_c00124{transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);}
.m180_c00124{transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);}
.me5_c00124{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00124{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.m12e_c00124{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m187_c00124{transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);}
.m89_c00124{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m168_c00124{transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);}
.m14f_c00124{transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);}
.m146_c00124{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.mf1_c00124{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);}
.mbb_c00124{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.md7_c00124{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.m193_c00124{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m36_c00124{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.m28_c00124{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);}
.m118_c00124{transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);}
.m16_c00124{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.md4_c00124{transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);}
.m191_c00124{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.mfa_c00124{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);}
.m112_c00124{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m143_c00124{transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);}
.mea_c00124{transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);}
.m102_c00124{transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);}
.md5_c00124{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.me1_c00124{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);}
.m152_c00124{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m15c_c00124{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.mf2_c00124{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.mdf_c00124{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);}
.m61_c00124{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.m111_c00124{transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);}
.m6a_c00124{transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);}
.mb2_c00124{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.mb_c00124{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);}
.m9f_c00124{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.mce_c00124{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m16a_c00124{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.m96_c00124{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m16b_c00124{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.mdc_c00124{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);}
.m19f_c00124{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m120_c00124{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.m171_c00124{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);}
.m7_c00124{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.mf7_c00124{transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);}
.mb5_c00124{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.mb8_c00124{transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);}
.m108_c00124{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m127_c00124{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m18c_c00124{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.m161_c00124{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m24_c00124{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);}
.m1c_c00124{transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);}
.mfc_c00124{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m97_c00124{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);}
.m19c_c00124{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m3d_c00124{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.mf9_c00124{transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);}
.med_c00124{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m163_c00124{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.m58_c00124{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m190_c00124{transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);}
.m150_c00124{transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);}
.m9a_c00124{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m4d_c00124{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m19_c00124{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);}
.m169_c00124{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);}
.m77_c00124{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);}
.m3b_c00124{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m7c_c00124{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.m173_c00124{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.m40_c00124{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);}
.md3_c00124{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);}
.mcb_c00124{transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);}
.m2b_c00124{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);}
.m123_c00124{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.mae_c00124{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);}
.mf4_c00124{transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);}
.mda_c00124{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.m5e_c00124{transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);}
.m7f_c00124{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.m2a_c00124{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m121_c00124{transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);}
.m66_c00124{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);}
.mba_c00124{transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);}
.m185_c00124{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m165_c00124{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);}
.md8_c00124{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.mb9_c00124{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.mc7_c00124{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);}
.m1a0_c00124{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.mc8_c00124{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m124_c00124{transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);}
.m29_c00124{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m164_c00124{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);}
.m75_c00124{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);}
.m126_c00124{transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);}
.m27_c00124{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m99_c00124{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);}
.m7b_c00124{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);}
.m60_c00124{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);}
.m2c_c00124{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);}
.m52_c00124{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.mca_c00124{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);}
.mb6_c00124{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m11c_c00124{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m162_c00124{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.mc9_c00124{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.m20_c00124{transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);}
.m4b_c00124{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.ma6_c00124{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);}
.m11d_c00124{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);}
.m74_c00124{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m107_c00124{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);}
.m18a_c00124{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.m73_c00124{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);}
.m46_c00124{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.m78_c00124{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.m188_c00124{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);}
.m15a_c00124{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);}
.m137_c00124{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);}
.md0_c00124{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);}
.me0_c00124{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_c00124{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);}
.m106_c00124{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m151_c00124{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);}
.m5f_c00124{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m1f_c00124{transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);}
.me_c00124{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);}
.m91_c00124{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m39_c00124{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);}
.m22_c00124{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m47_c00124{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);}
.m6_c00124{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);}
.m3e_c00124{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m145_c00124{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);}
.mfd_c00124{transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);}
.m15f_c00124{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.m41_c00124{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);}
.m67_c00124{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);}
.m10d_c00124{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.m4e_c00124{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);}
.m3c_c00124{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);}
.m4a_c00124{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);}
.md6_c00124{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);}
.m172_c00124{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);}
.m35_c00124{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.m14e_c00124{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);}
.m157_c00124{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.mb4_c00124{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);}
.ma2_c00124{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00124{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);}
.mcc_c00124{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);}
.m139_c00124{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);}
.m18d_c00124{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);}
.m110_c00124{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m9e_c00124{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);}
.m12d_c00124{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);}
.m79_c00124{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);}
.m198_c00124{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m38_c00124{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m63_c00124{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);}
.mbd_c00124{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m65_c00124{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.maa_c00124{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);}
.me3_c00124{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);}
.m26_c00124{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m155_c00124{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);}
.m25_c00124{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);}
.m44_c00124{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);}
.m11_c00124{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m42_c00124{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00124{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m76_c00124{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);}
.m83_c00124{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc_c00124{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);}
.m5c_c00124{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);}
.m5b_c00124{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m48_c00124{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);}
.m0_c00124{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00124{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);}
.m4f_c00124{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m53_c00124{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);}
.m69_c00124{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);}
.mb1_c00124{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m43_c00124{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);}
.m37_c00124{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m50_c00124{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15b_c00124{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);}
.m59_c00124{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00124{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mad_c00124{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00124{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m49_c00124{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00124{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m131_c00124{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);}
.m4c_c00124{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me7_c00124{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00124{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);}
.m1a1_c00124{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00124{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);}
.m62_c00124{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m55_c00124{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00124{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m95_c00124{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);}
.m18e_c00124{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);}
.m2f_c00124{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);}
.m192_c00124{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5_c00124{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma_c00124{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c00124{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m64_c00124{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00124{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);}
.m3_c00124{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m85_c00124{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);}
.m84_c00124{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);}
.m8f_c00124{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00124{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m8_c00124{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m195_c00124{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m70_c00124{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00124{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m72_c00124{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.md1_c00124{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m1_c00124{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m15e_c00124{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m199_c00124{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m9_c00124{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00124{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m19b_c00124{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m136_c00124{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00124{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);}
.m15d_c00124{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m18_c00124{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.md2_c00124{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);}
.m19a_c00124{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m129_c00124{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.m14a_c00124{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m105_c00124{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00124{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m197_c00124{transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00124{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m128_c00124{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m114_c00124{transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);}
.m159_c00124{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m18f_c00124{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m17_c00124{transform:matrix(2.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.055000,0.000000,0.000000,0.250000,0,0);}
.m51_c00124{transform:matrix(2.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.257500,0.000000,0.000000,0.250000,0,0);}
.m31_c00124{transform:matrix(2.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.447500,0.000000,0.000000,0.250000,0,0);}
.v1_c00124{vertical-align:-20.760000px;}
.v3_c00124{vertical-align:-6.900000px;}
.v0_c00124{vertical-align:0.000000px;}
.v2_c00124{vertical-align:3.480000px;}
.ls4_c00124{letter-spacing:0.000000px;}
.ls2_c00124{letter-spacing:6.245760px;}
.ls3_c00124{letter-spacing:32.597460px;}
.ls0_c00124{letter-spacing:80.222688px;}
.ls1_c00124{letter-spacing:173.000688px;}
.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:-11.669400px;}
.ws1_c00124{word-spacing:0.000000px;}
.fc0_c00124{color:transparent;}
.fs2_c00124{font-size:3.456000px;}
.fs27_c00124{font-size:6.000000px;}
.fs5_c00124{font-size:6.900000px;}
.fs1c_c00124{font-size:10.380000px;}
.fs4_c00124{font-size:13.800000px;}
.fs8_c00124{font-size:17.280000px;}
.fs1_c00124{font-size:20.760000px;}
.fs3_c00124{font-size:24.180000px;}
.fs26_c00124{font-size:27.660000px;}
.fs28_c00124{font-size:31.080000px;}
.fs0_c00124{font-size:34.560000px;}
.fs7_c00124{font-size:38.040000px;}
.fs20_c00124{font-size:41.460000px;}
.fs1a_c00124{font-size:44.940000px;}
.fs23_c00124{font-size:48.360000px;}
.fs1f_c00124{font-size:51.840000px;}
.fs6_c00124{font-size:55.320000px;}
.fs19_c00124{font-size:58.740000px;}
.fs10_c00124{font-size:62.220000px;}
.fsa_c00124{font-size:65.640000px;}
.fs1b_c00124{font-size:69.120000px;}
.fs18_c00124{font-size:72.600000px;}
.fs15_c00124{font-size:76.020000px;}
.fs1d_c00124{font-size:79.500000px;}
.fs21_c00124{font-size:82.920000px;}
.fs17_c00124{font-size:86.400000px;}
.fsd_c00124{font-size:89.880000px;}
.fs16_c00124{font-size:93.300000px;}
.fsc_c00124{font-size:96.780000px;}
.fsb_c00124{font-size:100.200000px;}
.fs14_c00124{font-size:103.680000px;}
.fse_c00124{font-size:107.160000px;}
.fs11_c00124{font-size:110.580000px;}
.fs12_c00124{font-size:114.060000px;}
.fs1e_c00124{font-size:117.480000px;}
.fsf_c00124{font-size:120.960000px;}
.fs9_c00124{font-size:124.440000px;}
.fs13_c00124{font-size:127.860000px;}
.fs22_c00124{font-size:131.340000px;}
.fs25_c00124{font-size:134.760000px;}
.fs24_c00124{font-size:152.040000px;}
.y0_c00124{bottom:0.000000px;}
.y19a_c00124{bottom:194.400000px;}
.y19b_c00124{bottom:195.270000px;}
.y199_c00124{bottom:199.590000px;}
.y197_c00124{bottom:200.445000px;}
.y198_c00124{bottom:203.910000px;}
.y191_c00124{bottom:212.550000px;}
.y18b_c00124{bottom:215.130000px;}
.y196_c00124{bottom:216.000000px;}
.y18e_c00124{bottom:216.870000px;}
.y18c_c00124{bottom:217.725000px;}
.y18a_c00124{bottom:218.595000px;}
.y194_c00124{bottom:219.450000px;}
.y18f_c00124{bottom:220.320000px;}
.y193_c00124{bottom:221.190000px;}
.y18d_c00124{bottom:222.045000px;}
.y189_c00124{bottom:222.915000px;}
.y195_c00124{bottom:223.770000px;}
.y190_c00124{bottom:225.510000px;}
.y192_c00124{bottom:226.365000px;}
.y186_c00124{bottom:228.090000px;}
.y188_c00124{bottom:229.830000px;}
.y184_c00124{bottom:230.685000px;}
.y185_c00124{bottom:232.410000px;}
.y181_c00124{bottom:234.150000px;}
.y187_c00124{bottom:235.875000px;}
.y180_c00124{bottom:236.730000px;}
.y183_c00124{bottom:237.600000px;}
.y182_c00124{bottom:238.470000px;}
.y17e_c00124{bottom:247.965000px;}
.y17d_c00124{bottom:253.155000px;}
.y17c_c00124{bottom:254.880000px;}
.y17b_c00124{bottom:255.750000px;}
.y178_c00124{bottom:257.475000px;}
.y179_c00124{bottom:258.330000px;}
.y17a_c00124{bottom:264.390000px;}
.y17f_c00124{bottom:268.710000px;}
.y177_c00124{bottom:273.030000px;}
.y175_c00124{bottom:274.755000px;}
.y174_c00124{bottom:275.610000px;}
.y173_c00124{bottom:279.075000px;}
.y176_c00124{bottom:279.930000px;}
.y172_c00124{bottom:299.805000px;}
.y171_c00124{bottom:304.125000px;}
.y16f_c00124{bottom:321.405000px;}
.y170_c00124{bottom:322.275000px;}
.y16e_c00124{bottom:327.450000px;}
.y16d_c00124{bottom:336.960000px;}
.y16c_c00124{bottom:348.195000px;}
.y169_c00124{bottom:353.370000px;}
.y16b_c00124{bottom:354.240000px;}
.y168_c00124{bottom:355.110000px;}
.y167_c00124{bottom:355.965000px;}
.y165_c00124{bottom:356.835000px;}
.y16a_c00124{bottom:358.560000px;}
.y164_c00124{bottom:361.155000px;}
.y166_c00124{bottom:365.475000px;}
.y163_c00124{bottom:369.795000px;}
.y162_c00124{bottom:374.115000px;}
.y161_c00124{bottom:380.160000px;}
.y15e_c00124{bottom:381.030000px;}
.y160_c00124{bottom:381.885000px;}
.y15d_c00124{bottom:383.610000px;}
.y15f_c00124{bottom:385.350000px;}
.y15c_c00124{bottom:399.165000px;}
.y15a_c00124{bottom:406.080000px;}
.y15b_c00124{bottom:406.950000px;}
.y157_c00124{bottom:407.805000px;}
.y153_c00124{bottom:411.270000px;}
.y150_c00124{bottom:412.995000px;}
.y159_c00124{bottom:413.850000px;}
.y14e_c00124{bottom:414.720000px;}
.y14d_c00124{bottom:415.590000px;}
.y156_c00124{bottom:416.445000px;}
.y155_c00124{bottom:417.315000px;}
.y158_c00124{bottom:418.170000px;}
.y151_c00124{bottom:419.910000px;}
.y154_c00124{bottom:420.765000px;}
.y152_c00124{bottom:422.490000px;}
.y14a_c00124{bottom:424.230000px;}
.y14f_c00124{bottom:425.085000px;}
.y149_c00124{bottom:427.680000px;}
.y14c_c00124{bottom:428.550000px;}
.y146_c00124{bottom:429.405000px;}
.y145_c00124{bottom:430.275000px;}
.y14b_c00124{bottom:431.130000px;}
.y141_c00124{bottom:432.000000px;}
.y144_c00124{bottom:432.870000px;}
.y148_c00124{bottom:433.725000px;}
.y140_c00124{bottom:434.595000px;}
.y143_c00124{bottom:436.320000px;}
.y147_c00124{bottom:437.190000px;}
.y142_c00124{bottom:438.045000px;}
.y13e_c00124{bottom:439.770000px;}
.y13d_c00124{bottom:440.640000px;}
.y13f_c00124{bottom:444.090000px;}
.y13c_c00124{bottom:448.410000px;}
.y13b_c00124{bottom:451.005000px;}
.y13a_c00124{bottom:453.600000px;}
.y138_c00124{bottom:454.470000px;}
.y139_c00124{bottom:455.325000px;}
.y136_c00124{bottom:461.370000px;}
.y137_c00124{bottom:463.110000px;}
.y135_c00124{bottom:470.010000px;}
.y133_c00124{bottom:474.330000px;}
.y132_c00124{bottom:476.070000px;}
.y131_c00124{bottom:476.925000px;}
.y130_c00124{bottom:479.520000px;}
.y12f_c00124{bottom:481.245000px;}
.y12e_c00124{bottom:482.115000px;}
.y12d_c00124{bottom:482.970000px;}
.y134_c00124{bottom:493.350000px;}
.y12b_c00124{bottom:500.250000px;}
.y12c_c00124{bottom:503.715000px;}
.y128_c00124{bottom:508.035000px;}
.y129_c00124{bottom:510.630000px;}
.y12a_c00124{bottom:511.485000px;}
.y127_c00124{bottom:527.040000px;}
.y126_c00124{bottom:530.490000px;}
.y123_c00124{bottom:533.085000px;}
.y124_c00124{bottom:535.680000px;}
.y125_c00124{bottom:539.130000px;}
.y120_c00124{bottom:547.770000px;}
.y121_c00124{bottom:550.365000px;}
.y11f_c00124{bottom:551.235000px;}
.y11e_c00124{bottom:553.830000px;}
.y122_c00124{bottom:554.685000px;}
.y11c_c00124{bottom:558.150000px;}
.y11a_c00124{bottom:562.470000px;}
.y11d_c00124{bottom:564.195000px;}
.y11b_c00124{bottom:565.920000px;}
.y118_c00124{bottom:574.560000px;}
.y119_c00124{bottom:575.430000px;}
.y116_c00124{bottom:577.155000px;}
.y117_c00124{bottom:578.880000px;}
.y113_c00124{bottom:579.750000px;}
.y114_c00124{bottom:581.475000px;}
.y112_c00124{bottom:582.330000px;}
.y111_c00124{bottom:583.200000px;}
.y110_c00124{bottom:584.070000px;}
.y115_c00124{bottom:587.520000px;}
.y10f_c00124{bottom:592.710000px;}
.y10d_c00124{bottom:599.610000px;}
.y10e_c00124{bottom:601.350000px;}
.y10b_c00124{bottom:602.205000px;}
.y10c_c00124{bottom:603.075000px;}
.y10a_c00124{bottom:604.800000px;}
.y109_c00124{bottom:605.670000px;}
.y106_c00124{bottom:607.395000px;}
.y104_c00124{bottom:611.715000px;}
.y108_c00124{bottom:612.570000px;}
.y102_c00124{bottom:613.440000px;}
.y107_c00124{bottom:615.165000px;}
.y105_c00124{bottom:616.035000px;}
.y103_c00124{bottom:619.485000px;}
.y101_c00124{bottom:627.270000px;}
.y100_c00124{bottom:629.850000px;}
.yff_c00124{bottom:632.445000px;}
.yfd_c00124{bottom:635.040000px;}
.yfe_c00124{bottom:636.765000px;}
.yfb_c00124{bottom:645.405000px;}
.yfc_c00124{bottom:648.000000px;}
.yfa_c00124{bottom:650.595000px;}
.yf9_c00124{bottom:653.190000px;}
.yf8_c00124{bottom:656.640000px;}
.yf7_c00124{bottom:658.365000px;}
.yf6_c00124{bottom:661.830000px;}
.yf3_c00124{bottom:662.685000px;}
.yf4_c00124{bottom:665.280000px;}
.yf5_c00124{bottom:669.600000px;}
.yf2_c00124{bottom:674.790000px;}
.yf1_c00124{bottom:676.515000px;}
.yf0_c00124{bottom:679.965000px;}
.yee_c00124{bottom:682.560000px;}
.yef_c00124{bottom:683.430000px;}
.yed_c00124{bottom:699.840000px;}
.yec_c00124{bottom:702.435000px;}
.yeb_c00124{bottom:704.160000px;}
.yea_c00124{bottom:705.885000px;}
.ye9_c00124{bottom:706.755000px;}
.ye7_c00124{bottom:711.075000px;}
.ye8_c00124{bottom:715.395000px;}
.ye5_c00124{bottom:724.035000px;}
.ye4_c00124{bottom:725.760000px;}
.ye3_c00124{bottom:726.630000px;}
.ye2_c00124{bottom:727.485000px;}
.ye1_c00124{bottom:728.355000px;}
.yde_c00124{bottom:729.210000px;}
.ye6_c00124{bottom:730.080000px;}
.ydd_c00124{bottom:731.805000px;}
.ye0_c00124{bottom:733.530000px;}
.ydf_c00124{bottom:738.720000px;}
.ydb_c00124{bottom:749.085000px;}
.ydc_c00124{bottom:749.955000px;}
.yd8_c00124{bottom:750.810000px;}
.yd7_c00124{bottom:756.000000px;}
.yd6_c00124{bottom:757.725000px;}
.yd9_c00124{bottom:758.595000px;}
.yda_c00124{bottom:760.320000px;}
.yd4_c00124{bottom:775.005000px;}
.yd3_c00124{bottom:777.600000px;}
.yd1_c00124{bottom:780.195000px;}
.yd2_c00124{bottom:781.050000px;}
.ycf_c00124{bottom:781.920000px;}
.yd0_c00124{bottom:782.790000px;}
.yd5_c00124{bottom:791.430000px;}
.ycc_c00124{bottom:798.330000px;}
.ycb_c00124{bottom:801.795000px;}
.yca_c00124{bottom:802.650000px;}
.yc9_c00124{bottom:803.520000px;}
.yce_c00124{bottom:805.245000px;}
.ycd_c00124{bottom:806.115000px;}
.yc8_c00124{bottom:807.840000px;}
.yc7_c00124{bottom:809.565000px;}
.yc6_c00124{bottom:825.120000px;}
.yc4_c00124{bottom:825.990000px;}
.yc3_c00124{bottom:828.570000px;}
.yc5_c00124{bottom:829.440000px;}
.yc2_c00124{bottom:832.035000px;}
.yc1_c00124{bottom:839.805000px;}
.yc0_c00124{bottom:848.445000px;}
.ybf_c00124{bottom:849.315000px;}
.ybe_c00124{bottom:850.170000px;}
.ybd_c00124{bottom:851.040000px;}
.ybc_c00124{bottom:851.910000px;}
.yba_c00124{bottom:857.085000px;}
.yb9_c00124{bottom:859.680000px;}
.ybb_c00124{bottom:860.550000px;}
.yb8_c00124{bottom:871.770000px;}
.yb7_c00124{bottom:873.510000px;}
.yb6_c00124{bottom:874.365000px;}
.yb4_c00124{bottom:875.235000px;}
.yb5_c00124{bottom:878.685000px;}
.yb2_c00124{bottom:879.555000px;}
.yb1_c00124{bottom:880.410000px;}
.yb3_c00124{bottom:886.470000px;}
.yb0_c00124{bottom:887.325000px;}
.yaf_c00124{bottom:896.835000px;}
.yae_c00124{bottom:898.560000px;}
.yad_c00124{bottom:899.430000px;}
.yac_c00124{bottom:923.610000px;}
.yab_c00124{bottom:926.205000px;}
.ya9_c00124{bottom:949.530000px;}
.ya8_c00124{bottom:951.270000px;}
.ya7_c00124{bottom:952.125000px;}
.ya5_c00124{bottom:952.995000px;}
.yaa_c00124{bottom:956.445000px;}
.ya6_c00124{bottom:957.315000px;}
.ya4_c00124{bottom:973.725000px;}
.ya0_c00124{bottom:976.320000px;}
.y9e_c00124{bottom:977.190000px;}
.y9c_c00124{bottom:978.045000px;}
.y9a_c00124{bottom:978.915000px;}
.ya3_c00124{bottom:979.770000px;}
.y9f_c00124{bottom:981.510000px;}
.ya2_c00124{bottom:983.235000px;}
.ya1_c00124{bottom:984.090000px;}
.y9d_c00124{bottom:985.830000px;}
.y9b_c00124{bottom:986.685000px;}
.y97_c00124{bottom:998.790000px;}
.y94_c00124{bottom:1002.240000px;}
.y93_c00124{bottom:1003.110000px;}
.y98_c00124{bottom:1003.965000px;}
.y91_c00124{bottom:1004.835000px;}
.y95_c00124{bottom:1005.690000px;}
.y99_c00124{bottom:1006.560000px;}
.y96_c00124{bottom:1009.155000px;}
.y90_c00124{bottom:1010.010000px;}
.y92_c00124{bottom:1010.880000px;}
.y8b_c00124{bottom:1025.565000px;}
.y89_c00124{bottom:1027.290000px;}
.y88_c00124{bottom:1028.160000px;}
.y87_c00124{bottom:1029.030000px;}
.y86_c00124{bottom:1030.755000px;}
.y8d_c00124{bottom:1031.610000px;}
.y8c_c00124{bottom:1032.480000px;}
.y8a_c00124{bottom:1034.205000px;}
.y85_c00124{bottom:1041.120000px;}
.y8f_c00124{bottom:1044.570000px;}
.y8e_c00124{bottom:1045.440000px;}
.y84_c00124{bottom:1048.890000px;}
.y81_c00124{bottom:1049.760000px;}
.y80_c00124{bottom:1051.485000px;}
.y7f_c00124{bottom:1052.355000px;}
.y7d_c00124{bottom:1053.210000px;}
.y83_c00124{bottom:1054.080000px;}
.y7b_c00124{bottom:1055.805000px;}
.y7c_c00124{bottom:1056.675000px;}
.y82_c00124{bottom:1057.530000px;}
.y7e_c00124{bottom:1060.995000px;}
.y7a_c00124{bottom:1069.635000px;}
.y79_c00124{bottom:1070.490000px;}
.y76_c00124{bottom:1071.360000px;}
.y74_c00124{bottom:1073.955000px;}
.y75_c00124{bottom:1075.680000px;}
.y77_c00124{bottom:1082.595000px;}
.y78_c00124{bottom:1083.450000px;}
.y73_c00124{bottom:1098.150000px;}
.y71_c00124{bottom:1100.730000px;}
.y6e_c00124{bottom:1103.325000px;}
.y72_c00124{bottom:1104.195000px;}
.y6c_c00124{bottom:1105.050000px;}
.y70_c00124{bottom:1108.515000px;}
.y6f_c00124{bottom:1110.240000px;}
.y6a_c00124{bottom:1111.110000px;}
.y6d_c00124{bottom:1111.965000px;}
.y6b_c00124{bottom:1113.690000px;}
.y67_c00124{bottom:1117.155000px;}
.y68_c00124{bottom:1118.010000px;}
.y66_c00124{bottom:1120.605000px;}
.y64_c00124{bottom:1122.330000px;}
.y69_c00124{bottom:1123.200000px;}
.y61_c00124{bottom:1124.070000px;}
.y62_c00124{bottom:1129.245000px;}
.y63_c00124{bottom:1130.115000px;}
.y65_c00124{bottom:1134.435000px;}
.y60_c00124{bottom:1141.350000px;}
.y5e_c00124{bottom:1147.395000px;}
.y5d_c00124{bottom:1149.990000px;}
.y5b_c00124{bottom:1151.715000px;}
.y58_c00124{bottom:1152.570000px;}
.y5f_c00124{bottom:1153.440000px;}
.y59_c00124{bottom:1156.035000px;}
.y5a_c00124{bottom:1156.890000px;}
.y5c_c00124{bottom:1157.760000px;}
.y57_c00124{bottom:1175.910000px;}
.y56_c00124{bottom:1176.765000px;}
.y53_c00124{bottom:1184.550000px;}
.y54_c00124{bottom:1185.405000px;}
.y55_c00124{bottom:1186.275000px;}
.y50_c00124{bottom:1198.365000px;}
.y4e_c00124{bottom:1200.960000px;}
.y4c_c00124{bottom:1203.555000px;}
.y51_c00124{bottom:1206.150000px;}
.y4f_c00124{bottom:1208.730000px;}
.y4b_c00124{bottom:1209.600000px;}
.y4d_c00124{bottom:1210.470000px;}
.y52_c00124{bottom:1212.195000px;}
.y47_c00124{bottom:1226.010000px;}
.y43_c00124{bottom:1227.750000px;}
.y44_c00124{bottom:1229.475000px;}
.y4a_c00124{bottom:1230.330000px;}
.y49_c00124{bottom:1231.200000px;}
.y48_c00124{bottom:1232.070000px;}
.y45_c00124{bottom:1232.925000px;}
.y46_c00124{bottom:1233.795000px;}
.y41_c00124{bottom:1234.650000px;}
.y40_c00124{bottom:1235.520000px;}
.y42_c00124{bottom:1237.245000px;}
.y3d_c00124{bottom:1252.800000px;}
.y3a_c00124{bottom:1254.525000px;}
.y3b_c00124{bottom:1255.395000px;}
.y3e_c00124{bottom:1256.250000px;}
.y3c_c00124{bottom:1258.845000px;}
.y39_c00124{bottom:1261.440000px;}
.y3f_c00124{bottom:1263.165000px;}
.y38_c00124{bottom:1270.080000px;}
.y36_c00124{bottom:1274.400000px;}
.y34_c00124{bottom:1275.270000px;}
.y32_c00124{bottom:1276.125000px;}
.y30_c00124{bottom:1276.995000px;}
.y31_c00124{bottom:1277.850000px;}
.y2e_c00124{bottom:1279.590000px;}
.y35_c00124{bottom:1282.170000px;}
.y33_c00124{bottom:1283.040000px;}
.y2f_c00124{bottom:1287.360000px;}
.y37_c00124{bottom:1290.810000px;}
.y2a_c00124{bottom:1296.870000px;}
.y29_c00124{bottom:1301.190000px;}
.y28_c00124{bottom:1302.045000px;}
.y2b_c00124{bottom:1302.915000px;}
.y2c_c00124{bottom:1303.770000px;}
.y26_c00124{bottom:1304.640000px;}
.y2d_c00124{bottom:1305.510000px;}
.y27_c00124{bottom:1310.685000px;}
.y25_c00124{bottom:1311.555000px;}
.y24_c00124{bottom:1312.410000px;}
.y22_c00124{bottom:1324.515000px;}
.y21_c00124{bottom:1325.370000px;}
.y23_c00124{bottom:1326.240000px;}
.y1f_c00124{bottom:1327.110000px;}
.y1e_c00124{bottom:1327.965000px;}
.y1c_c00124{bottom:1328.835000px;}
.y20_c00124{bottom:1335.750000px;}
.y1d_c00124{bottom:1336.605000px;}
.y19_c00124{bottom:1348.710000px;}
.y18_c00124{bottom:1349.565000px;}
.y17_c00124{bottom:1351.290000px;}
.y16_c00124{bottom:1352.160000px;}
.y13_c00124{bottom:1353.030000px;}
.y1b_c00124{bottom:1353.885000px;}
.y14_c00124{bottom:1354.755000px;}
.y12_c00124{bottom:1355.610000px;}
.y1a_c00124{bottom:1359.075000px;}
.y15_c00124{bottom:1359.930000px;}
.y11_c00124{bottom:1378.950000px;}
.y10_c00124{bottom:1383.270000px;}
.yf_c00124{bottom:1385.850000px;}
.ye_c00124{bottom:1386.720000px;}
.y19e_c00124{bottom:1393.635000px;}
.y19d_c00124{bottom:1394.490000px;}
.yd_c00124{bottom:1408.320000px;}
.y8_c00124{bottom:1414.365000px;}
.yb_c00124{bottom:1417.830000px;}
.yc_c00124{bottom:1423.875000px;}
.y9_c00124{bottom:1424.730000px;}
.y19c_c00124{bottom:1426.470000px;}
.y7_c00124{bottom:1427.325000px;}
.ya_c00124{bottom:1428.195000px;}
.y6_c00124{bottom:1429.050000px;}
.y2_c00124{bottom:1441.155000px;}
.y4_c00124{bottom:1442.010000px;}
.y1_c00124{bottom:1443.750000px;}
.y3_c00124{bottom:1446.330000px;}
.y5_c00124{bottom:1450.650000px;}
.h4_c00124{height:3.110063px;}
.h29_c00124{height:5.399414px;}
.h7_c00124{height:6.209326px;}
.h2a_c00124{height:6.590063px;}
.h1e_c00124{height:9.340986px;}
.h6_c00124{height:12.418652px;}
.ha_c00124{height:15.550313px;}
.h3_c00124{height:18.681973px;}
.h5_c00124{height:21.759639px;}
.h28_c00124{height:24.891299px;}
.h2b_c00124{height:27.968965px;}
.h2_c00124{height:31.100625px;}
.h9_c00124{height:34.232285px;}
.h22_c00124{height:37.309951px;}
.h1c_c00124{height:40.441611px;}
.h25_c00124{height:43.519277px;}
.h21_c00124{height:46.650937px;}
.h8_c00124{height:49.782598px;}
.h1b_c00124{height:52.860264px;}
.h12_c00124{height:55.991924px;}
.hc_c00124{height:59.069590px;}
.h1d_c00124{height:62.201250px;}
.h1a_c00124{height:65.332910px;}
.h17_c00124{height:68.410576px;}
.h1f_c00124{height:71.542236px;}
.h23_c00124{height:74.619902px;}
.h19_c00124{height:77.751563px;}
.hf_c00124{height:80.883223px;}
.h18_c00124{height:83.960889px;}
.he_c00124{height:87.092549px;}
.hd_c00124{height:90.170215px;}
.h16_c00124{height:93.301875px;}
.h10_c00124{height:96.433535px;}
.h13_c00124{height:99.511201px;}
.h14_c00124{height:102.642861px;}
.h20_c00124{height:105.720527px;}
.h11_c00124{height:108.852188px;}
.hb_c00124{height:111.983848px;}
.h15_c00124{height:115.061514px;}
.h24_c00124{height:118.193174px;}
.h27_c00124{height:121.270840px;}
.h26_c00124{height:136.821152px;}
.h0_c00124{height:1517.190000px;}
.h1_c00124{height:1517.250000px;}
.w0_c00124{width:1090.365000px;}
.w1_c00124{width:1090.500000px;}
.x0_c00124{left:0.000000px;}
.xf1_c00124{left:107.130000px;}
.xf2_c00124{left:110.595000px;}
.x107_c00124{left:114.915000px;}
.x111_c00124{left:116.640000px;}
.x108_c00124{left:120.960000px;}
.xd2_c00124{left:123.555000px;}
.xe1_c00124{left:126.150000px;}
.xca_c00124{left:128.730000px;}
.xd3_c00124{left:131.325000px;}
.x104_c00124{left:135.645000px;}
.xce_c00124{left:139.110000px;}
.xe4_c00124{left:140.835000px;}
.x66_c00124{left:142.560000px;}
.xd4_c00124{left:144.285000px;}
.xe2_c00124{left:146.880000px;}
.xcb_c00124{left:148.605000px;}
.xbc_c00124{left:150.330000px;}
.xe5_c00124{left:152.925000px;}
.x85_c00124{left:154.650000px;}
.x67_c00124{left:157.244925px;}
.xd5_c00124{left:158.970000px;}
.x112_c00124{left:160.710000px;}
.x68_c00124{left:162.435000px;}
.xdc_c00124{left:165.030000px;}
.xd6_c00124{left:166.755000px;}
.x105_c00124{left:168.480000px;}
.xcf_c00124{left:170.205000px;}
.x5b_c00124{left:172.800000px;}
.x6d_c00124{left:176.250000px;}
.xd7_c00124{left:177.990000px;}
.x6e_c00124{left:184.035000px;}
.xd8_c00124{left:185.760000px;}
.x5c_c00124{left:187.485000px;}
.xd0_c00124{left:191.805000px;}
.xea_c00124{left:193.530000px;}
.xfc_c00124{left:196.995000px;}
.xd9_c00124{left:200.445000px;}
.x11_c00124{left:202.170000px;}
.xb5_c00124{left:203.909592px;}
.xf3_c00124{left:205.635000px;}
.xfd_c00124{left:207.360000px;}
.x109_c00124{left:209.085000px;}
.x4a_c00124{left:211.680000px;}
.xeb_c00124{left:213.405000px;}
.x6f_c00124{left:215.130000px;}
.x42_c00124{left:216.870450px;}
.xa7_c00124{left:218.595000px;}
.x8d_c00124{left:220.320000px;}
.xa3_c00124{left:222.045000px;}
.x1e_c00124{left:223.770000px;}
.x78_c00124{left:225.510000px;}
.x2a_c00124{left:227.235000px;}
.xf4_c00124{left:228.960000px;}
.x115_c00124{left:231.555000px;}
.x106_c00124{left:238.470000px;}
.xc0_c00124{left:244.515000px;}
.x15_c00124{left:246.240000px;}
.x2b_c00124{left:251.430000px;}
.x116_c00124{left:255.750000px;}
.xfe_c00124{left:257.475000px;}
.xe6_c00124{left:259.200000px;}
.x16_c00124{left:261.795000px;}
.xf5_c00124{left:263.520000px;}
.x54_c00124{left:265.245000px;}
.x8e_c00124{left:267.840000px;}
.x86_c00124{left:270.435000px;}
.x70_c00124{left:275.610000px;}
.x9_c00124{left:277.341000px;}
.x5d_c00124{left:279.930000px;}
.xa8_c00124{left:282.525000px;}
.x43_c00124{left:285.120000px;}
.x71_c00124{left:290.310000px;}
.xa_c00124{left:294.630000px;}
.xf6_c00124{left:296.355000px;}
.xcc_c00124{left:298.080000px;}
.xd1_c00124{left:299.805000px;}
.xe8_c00124{left:302.400000px;}
.xc7_c00124{left:304.995000px;}
.x2c_c00124{left:306.720000px;}
.xa9_c00124{left:308.445000px;}
.x17_c00124{left:311.040000px;}
.x55_c00124{left:313.635000px;}
.x4b_c00124{left:315.360000px;}
.x113_c00124{left:317.085000px;}
.xbd_c00124{left:318.810000px;}
.x87_c00124{left:322.275000px;}
.x5e_c00124{left:324.000000px;}
.x36_c00124{left:325.725000px;}
.x117_c00124{left:327.450000px;}
.x96_c00124{left:332.640000px;}
.xb7_c00124{left:335.235000px;}
.x12_c00124{left:336.960000px;}
.x9f_c00124{left:338.685000px;}
.x10a_c00124{left:341.280000px;}
.x37_c00124{left:345.600000px;}
.x1f_c00124{left:349.050000px;}
.x11b_c00124{left:351.645000px;}
.x56_c00124{left:353.370000px;}
.x20_c00124{left:355.965000px;}
.x2d_c00124{left:359.430000px;}
.x1_c00124{left:367.200000px;}
.x38_c00124{left:368.925000px;}
.xb_c00124{left:372.390000px;}
.x72_c00124{left:374.115000px;}
.x8f_c00124{left:375.840000px;}
.x7e_c00124{left:377.565000px;}
.x69_c00124{left:379.290000px;}
.x118_c00124{left:382.755000px;}
.xc1_c00124{left:389.670000px;}
.xdd_c00124{left:393.120000px;}
.xaa_c00124{left:397.440000px;}
.xad_c00124{left:400.890000px;}
.x10f_c00124{left:406.080000px;}
.x18_c00124{left:408.675000px;}
.x6a_c00124{left:410.400000px;}
.x2e_c00124{left:412.995000px;}
.xc2_c00124{left:416.445000px;}
.x10b_c00124{left:418.170000px;}
.x2f_c00124{left:419.910000px;}
.x97_c00124{left:424.230000px;}
.x21_c00124{left:426.810000px;}
.x10c_c00124{left:429.405000px;}
.x7f_c00124{left:432.000000px;}
.x119_c00124{left:433.725000px;}
.xb0_c00124{left:436.320000px;}
.xbe_c00124{left:438.045000px;}
.x39_c00124{left:447.555000px;}
.x114_c00124{left:449.280000px;}
.x79_c00124{left:451.005000px;}
.x19_c00124{left:453.600000px;}
.x11a_c00124{left:456.195000px;}
.xc_c00124{left:459.645000px;}
.x73_c00124{left:463.110000px;}
.x13_c00124{left:467.430000px;}
.xc8_c00124{left:469.155000px;}
.xec_c00124{left:472.605000px;}
.x90_c00124{left:476.070000px;}
.x44_c00124{left:477.795000px;}
.x2_c00124{left:480.390000px;}
.xd_c00124{left:482.115000px;}
.xc3_c00124{left:489.030000px;}
.x30_c00124{left:492.480000px;}
.x62_c00124{left:495.075000px;}
.x91_c00124{left:496.800000px;}
.x3a_c00124{left:500.250000px;}
.xe_c00124{left:501.990000px;}
.xe7_c00124{left:503.715000px;}
.x80_c00124{left:506.310000px;}
.x103_c00124{left:510.630000px;}
.x5f_c00124{left:513.210000px;}
.x1a_c00124{left:518.400000px;}
.x98_c00124{left:520.995000px;}
.x7a_c00124{left:522.720000px;}
.xf7_c00124{left:526.170000px;}
.xff_c00124{left:527.910000px;}
.x74_c00124{left:530.490000px;}
.xc4_c00124{left:536.550000px;}
.xa0_c00124{left:538.275000px;}
.x22_c00124{left:541.725000px;}
.xc9_c00124{left:545.190000px;}
.x23_c00124{left:546.915000px;}
.x57_c00124{left:548.640000px;}
.x4c_c00124{left:551.235000px;}
.xde_c00124{left:557.280000px;}
.x45_c00124{left:559.005000px;}
.x88_c00124{left:563.325000px;}
.x58_c00124{left:568.515000px;}
.xa4_c00124{left:576.285000px;}
.x92_c00124{left:579.750000px;}
.x3_c00124{left:582.330000px;}
.xc5_c00124{left:584.070000px;}
.x99_c00124{left:585.795000px;}
.x4d_c00124{left:588.390000px;}
.x24_c00124{left:590.115000px;}
.x4_c00124{left:597.030000px;}
.xf_c00124{left:598.755000px;}
.xb3_c00124{left:601.350000px;}
.x46_c00124{left:603.075000px;}
.x93_c00124{left:604.800000px;}
.x4e_c00124{left:607.395000px;}
.x59_c00124{left:609.990000px;}
.x10d_c00124{left:613.440000px;}
.x89_c00124{left:617.760000px;}
.x63_c00124{left:619.485000px;}
.xcd_c00124{left:621.210000px;}
.x25_c00124{left:622.950000px;}
.x3b_c00124{left:625.530000px;}
.x4f_c00124{left:629.850000px;}
.xb8_c00124{left:635.040000px;}
.x14_c00124{left:636.765000px;}
.x64_c00124{left:643.680000px;}
.xda_c00124{left:645.405000px;}
.x5a_c00124{left:648.000000px;}
.x100_c00124{left:654.045000px;}
.xb9_c00124{left:655.770000px;}
.xb1_c00124{left:657.510000px;}
.xae_c00124{left:659.235000px;}
.x3c_c00124{left:662.685000px;}
.x94_c00124{left:668.730000px;}
.xf8_c00124{left:670.470000px;}
.x31_c00124{left:672.195000px;}
.xdf_c00124{left:673.920000px;}
.x95_c00124{left:677.370000px;}
.x10_c00124{left:679.965000px;}
.xe3_c00124{left:682.560000px;}
.x65_c00124{left:685.155000px;}
.x47_c00124{left:686.880000px;}
.xef_c00124{left:689.475000px;}
.x1b_c00124{left:691.200000px;}
.xf0_c00124{left:693.795000px;}
.x3d_c00124{left:695.520000px;}
.x75_c00124{left:699.840000px;}
.xab_c00124{left:703.290000px;}
.x3e_c00124{left:705.030000px;}
.x26_c00124{left:711.075000px;}
.x50_c00124{left:712.800000px;}
.x81_c00124{left:714.525000px;}
.x3f_c00124{left:717.120000px;}
.x10e_c00124{left:718.845000px;}
.xa5_c00124{left:725.760000px;}
.x101_c00124{left:731.805000px;}
.xb2_c00124{left:733.530000px;}
.xc6_c00124{left:735.270000px;}
.x76_c00124{left:736.995000px;}
.xf9_c00124{left:739.590000px;}
.x9a_c00124{left:743.910000px;}
.xed_c00124{left:747.360000px;}
.xaf_c00124{left:749.955000px;}
.x5_c00124{left:752.550000px;}
.x102_c00124{left:755.130000px;}
.x82_c00124{left:756.870000px;}
.x8a_c00124{left:759.450000px;}
.x6b_c00124{left:761.190000px;}
.x27_c00124{left:764.640000px;}
.x9b_c00124{left:770.685000px;}
.x60_c00124{left:772.410000px;}
.x83_c00124{left:774.150000px;}
.x51_c00124{left:775.875000px;}
.x6_c00124{left:777.600000px;}
.x7b_c00124{left:780.195000px;}
.xfa_c00124{left:782.790000px;}
.xba_c00124{left:787.110000px;}
.x7_c00124{left:788.835000px;}
.xfb_c00124{left:790.560000px;}
.xbf_c00124{left:792.285000px;}
.x48_c00124{left:794.880000px;}
.xa1_c00124{left:796.605000px;}
.xac_c00124{left:798.330000px;}
.x8_c00124{left:800.925000px;}
.xa6_c00124{left:802.650000px;}
.xe9_c00124{left:805.245000px;}
.x28_c00124{left:807.840000px;}
.x77_c00124{left:812.160000px;}
.x52_c00124{left:817.350000px;}
.x40_c00124{left:819.075000px;}
.x84_c00124{left:821.670000px;}
.x7c_c00124{left:825.120000px;}
.xdb_c00124{left:826.845000px;}
.x9c_c00124{left:828.570000px;}
.xbb_c00124{left:834.630000px;}
.x9d_c00124{left:836.355000px;}
.xa2_c00124{left:838.950000px;}
.x110_c00124{left:843.270000px;}
.x7d_c00124{left:851.910000px;}
.x53_c00124{left:858.810000px;}
.xee_c00124{left:861.405000px;}
.x8b_c00124{left:863.130000px;}
.x9e_c00124{left:864.870000px;}
.x32_c00124{left:866.595000px;}
.xb4_c00124{left:868.320000px;}
.x1c_c00124{left:870.915000px;}
.x61_c00124{left:872.640000px;}
.x8c_c00124{left:874.365000px;}
.xb6_c00124{left:876.960000px;}
.x49_c00124{left:879.555000px;}
.x33_c00124{left:882.150000px;}
.x6c_c00124{left:886.470000px;}
.x29_c00124{left:889.050000px;}
.x41_c00124{left:892.515000px;}
.x34_c00124{left:895.965000px;}
.x35_c00124{left:908.925000px;}
.x1d_c00124{left:912.390000px;}
.x11c_c00124{left:914.115000px;}
.xe0_c00124{left:920.160000px;}
.x11d_c00124{left:937.440000px;}
.x11e_c00124{left:952.125000px;}
.x11f_c00124{left:960.765000px;}
.x121_c00124{left:1018.650000px;}
.x120_c00124{left:1066.170000px;}
@media print{
.v1_c00124{vertical-align:-18.453333pt;}
.v3_c00124{vertical-align:-6.133333pt;}
.v0_c00124{vertical-align:0.000000pt;}
.v2_c00124{vertical-align:3.093333pt;}
.ls4_c00124{letter-spacing:0.000000pt;}
.ls2_c00124{letter-spacing:5.551787pt;}
.ls3_c00124{letter-spacing:28.975520pt;}
.ls0_c00124{letter-spacing:71.309056pt;}
.ls1_c00124{letter-spacing:153.778389pt;}
.ws0_c00124{word-spacing:-10.372800pt;}
.ws1_c00124{word-spacing:0.000000pt;}
.fs2_c00124{font-size:3.072000pt;}
.fs27_c00124{font-size:5.333333pt;}
.fs5_c00124{font-size:6.133333pt;}
.fs1c_c00124{font-size:9.226667pt;}
.fs4_c00124{font-size:12.266667pt;}
.fs8_c00124{font-size:15.360000pt;}
.fs1_c00124{font-size:18.453333pt;}
.fs3_c00124{font-size:21.493333pt;}
.fs26_c00124{font-size:24.586667pt;}
.fs28_c00124{font-size:27.626667pt;}
.fs0_c00124{font-size:30.720000pt;}
.fs7_c00124{font-size:33.813333pt;}
.fs20_c00124{font-size:36.853333pt;}
.fs1a_c00124{font-size:39.946667pt;}
.fs23_c00124{font-size:42.986667pt;}
.fs1f_c00124{font-size:46.080000pt;}
.fs6_c00124{font-size:49.173333pt;}
.fs19_c00124{font-size:52.213333pt;}
.fs10_c00124{font-size:55.306667pt;}
.fsa_c00124{font-size:58.346667pt;}
.fs1b_c00124{font-size:61.440000pt;}
.fs18_c00124{font-size:64.533333pt;}
.fs15_c00124{font-size:67.573333pt;}
.fs1d_c00124{font-size:70.666667pt;}
.fs21_c00124{font-size:73.706667pt;}
.fs17_c00124{font-size:76.800000pt;}
.fsd_c00124{font-size:79.893333pt;}
.fs16_c00124{font-size:82.933333pt;}
.fsc_c00124{font-size:86.026667pt;}
.fsb_c00124{font-size:89.066667pt;}
.fs14_c00124{font-size:92.160000pt;}
.fse_c00124{font-size:95.253333pt;}
.fs11_c00124{font-size:98.293333pt;}
.fs12_c00124{font-size:101.386667pt;}
.fs1e_c00124{font-size:104.426667pt;}
.fsf_c00124{font-size:107.520000pt;}
.fs9_c00124{font-size:110.613333pt;}
.fs13_c00124{font-size:113.653333pt;}
.fs22_c00124{font-size:116.746667pt;}
.fs25_c00124{font-size:119.786667pt;}
.fs24_c00124{font-size:135.146667pt;}
.y0_c00124{bottom:0.000000pt;}
.y19a_c00124{bottom:172.800000pt;}
.y19b_c00124{bottom:173.573333pt;}
.y199_c00124{bottom:177.413333pt;}
.y197_c00124{bottom:178.173333pt;}
.y198_c00124{bottom:181.253333pt;}
.y191_c00124{bottom:188.933333pt;}
.y18b_c00124{bottom:191.226667pt;}
.y196_c00124{bottom:192.000000pt;}
.y18e_c00124{bottom:192.773333pt;}
.y18c_c00124{bottom:193.533333pt;}
.y18a_c00124{bottom:194.306667pt;}
.y194_c00124{bottom:195.066667pt;}
.y18f_c00124{bottom:195.840000pt;}
.y193_c00124{bottom:196.613333pt;}
.y18d_c00124{bottom:197.373333pt;}
.y189_c00124{bottom:198.146667pt;}
.y195_c00124{bottom:198.906667pt;}
.y190_c00124{bottom:200.453333pt;}
.y192_c00124{bottom:201.213333pt;}
.y186_c00124{bottom:202.746667pt;}
.y188_c00124{bottom:204.293333pt;}
.y184_c00124{bottom:205.053333pt;}
.y185_c00124{bottom:206.586667pt;}
.y181_c00124{bottom:208.133333pt;}
.y187_c00124{bottom:209.666667pt;}
.y180_c00124{bottom:210.426667pt;}
.y183_c00124{bottom:211.200000pt;}
.y182_c00124{bottom:211.973333pt;}
.y17e_c00124{bottom:220.413333pt;}
.y17d_c00124{bottom:225.026667pt;}
.y17c_c00124{bottom:226.560000pt;}
.y17b_c00124{bottom:227.333333pt;}
.y178_c00124{bottom:228.866667pt;}
.y179_c00124{bottom:229.626667pt;}
.y17a_c00124{bottom:235.013333pt;}
.y17f_c00124{bottom:238.853333pt;}
.y177_c00124{bottom:242.693333pt;}
.y175_c00124{bottom:244.226667pt;}
.y174_c00124{bottom:244.986667pt;}
.y173_c00124{bottom:248.066667pt;}
.y176_c00124{bottom:248.826667pt;}
.y172_c00124{bottom:266.493333pt;}
.y171_c00124{bottom:270.333333pt;}
.y16f_c00124{bottom:285.693333pt;}
.y170_c00124{bottom:286.466667pt;}
.y16e_c00124{bottom:291.066667pt;}
.y16d_c00124{bottom:299.520000pt;}
.y16c_c00124{bottom:309.506667pt;}
.y169_c00124{bottom:314.106667pt;}
.y16b_c00124{bottom:314.880000pt;}
.y168_c00124{bottom:315.653333pt;}
.y167_c00124{bottom:316.413333pt;}
.y165_c00124{bottom:317.186667pt;}
.y16a_c00124{bottom:318.720000pt;}
.y164_c00124{bottom:321.026667pt;}
.y166_c00124{bottom:324.866667pt;}
.y163_c00124{bottom:328.706667pt;}
.y162_c00124{bottom:332.546667pt;}
.y161_c00124{bottom:337.920000pt;}
.y15e_c00124{bottom:338.693333pt;}
.y160_c00124{bottom:339.453333pt;}
.y15d_c00124{bottom:340.986667pt;}
.y15f_c00124{bottom:342.533333pt;}
.y15c_c00124{bottom:354.813333pt;}
.y15a_c00124{bottom:360.960000pt;}
.y15b_c00124{bottom:361.733333pt;}
.y157_c00124{bottom:362.493333pt;}
.y153_c00124{bottom:365.573333pt;}
.y150_c00124{bottom:367.106667pt;}
.y159_c00124{bottom:367.866667pt;}
.y14e_c00124{bottom:368.640000pt;}
.y14d_c00124{bottom:369.413333pt;}
.y156_c00124{bottom:370.173333pt;}
.y155_c00124{bottom:370.946667pt;}
.y158_c00124{bottom:371.706667pt;}
.y151_c00124{bottom:373.253333pt;}
.y154_c00124{bottom:374.013333pt;}
.y152_c00124{bottom:375.546667pt;}
.y14a_c00124{bottom:377.093333pt;}
.y14f_c00124{bottom:377.853333pt;}
.y149_c00124{bottom:380.160000pt;}
.y14c_c00124{bottom:380.933333pt;}
.y146_c00124{bottom:381.693333pt;}
.y145_c00124{bottom:382.466667pt;}
.y14b_c00124{bottom:383.226667pt;}
.y141_c00124{bottom:384.000000pt;}
.y144_c00124{bottom:384.773333pt;}
.y148_c00124{bottom:385.533333pt;}
.y140_c00124{bottom:386.306667pt;}
.y143_c00124{bottom:387.840000pt;}
.y147_c00124{bottom:388.613333pt;}
.y142_c00124{bottom:389.373333pt;}
.y13e_c00124{bottom:390.906667pt;}
.y13d_c00124{bottom:391.680000pt;}
.y13f_c00124{bottom:394.746667pt;}
.y13c_c00124{bottom:398.586667pt;}
.y13b_c00124{bottom:400.893333pt;}
.y13a_c00124{bottom:403.200000pt;}
.y138_c00124{bottom:403.973333pt;}
.y139_c00124{bottom:404.733333pt;}
.y136_c00124{bottom:410.106667pt;}
.y137_c00124{bottom:411.653333pt;}
.y135_c00124{bottom:417.786667pt;}
.y133_c00124{bottom:421.626667pt;}
.y132_c00124{bottom:423.173333pt;}
.y131_c00124{bottom:423.933333pt;}
.y130_c00124{bottom:426.240000pt;}
.y12f_c00124{bottom:427.773333pt;}
.y12e_c00124{bottom:428.546667pt;}
.y12d_c00124{bottom:429.306667pt;}
.y134_c00124{bottom:438.533333pt;}
.y12b_c00124{bottom:444.666667pt;}
.y12c_c00124{bottom:447.746667pt;}
.y128_c00124{bottom:451.586667pt;}
.y129_c00124{bottom:453.893333pt;}
.y12a_c00124{bottom:454.653333pt;}
.y127_c00124{bottom:468.480000pt;}
.y126_c00124{bottom:471.546667pt;}
.y123_c00124{bottom:473.853333pt;}
.y124_c00124{bottom:476.160000pt;}
.y125_c00124{bottom:479.226667pt;}
.y120_c00124{bottom:486.906667pt;}
.y121_c00124{bottom:489.213333pt;}
.y11f_c00124{bottom:489.986667pt;}
.y11e_c00124{bottom:492.293333pt;}
.y122_c00124{bottom:493.053333pt;}
.y11c_c00124{bottom:496.133333pt;}
.y11a_c00124{bottom:499.973333pt;}
.y11d_c00124{bottom:501.506667pt;}
.y11b_c00124{bottom:503.040000pt;}
.y118_c00124{bottom:510.720000pt;}
.y119_c00124{bottom:511.493333pt;}
.y116_c00124{bottom:513.026667pt;}
.y117_c00124{bottom:514.560000pt;}
.y113_c00124{bottom:515.333333pt;}
.y114_c00124{bottom:516.866667pt;}
.y112_c00124{bottom:517.626667pt;}
.y111_c00124{bottom:518.400000pt;}
.y110_c00124{bottom:519.173333pt;}
.y115_c00124{bottom:522.240000pt;}
.y10f_c00124{bottom:526.853333pt;}
.y10d_c00124{bottom:532.986667pt;}
.y10e_c00124{bottom:534.533333pt;}
.y10b_c00124{bottom:535.293333pt;}
.y10c_c00124{bottom:536.066667pt;}
.y10a_c00124{bottom:537.600000pt;}
.y109_c00124{bottom:538.373333pt;}
.y106_c00124{bottom:539.906667pt;}
.y104_c00124{bottom:543.746667pt;}
.y108_c00124{bottom:544.506667pt;}
.y102_c00124{bottom:545.280000pt;}
.y107_c00124{bottom:546.813333pt;}
.y105_c00124{bottom:547.586667pt;}
.y103_c00124{bottom:550.653333pt;}
.y101_c00124{bottom:557.573333pt;}
.y100_c00124{bottom:559.866667pt;}
.yff_c00124{bottom:562.173333pt;}
.yfd_c00124{bottom:564.480000pt;}
.yfe_c00124{bottom:566.013333pt;}
.yfb_c00124{bottom:573.693333pt;}
.yfc_c00124{bottom:576.000000pt;}
.yfa_c00124{bottom:578.306667pt;}
.yf9_c00124{bottom:580.613333pt;}
.yf8_c00124{bottom:583.680000pt;}
.yf7_c00124{bottom:585.213333pt;}
.yf6_c00124{bottom:588.293333pt;}
.yf3_c00124{bottom:589.053333pt;}
.yf4_c00124{bottom:591.360000pt;}
.yf5_c00124{bottom:595.200000pt;}
.yf2_c00124{bottom:599.813333pt;}
.yf1_c00124{bottom:601.346667pt;}
.yf0_c00124{bottom:604.413333pt;}
.yee_c00124{bottom:606.720000pt;}
.yef_c00124{bottom:607.493333pt;}
.yed_c00124{bottom:622.080000pt;}
.yec_c00124{bottom:624.386667pt;}
.yeb_c00124{bottom:625.920000pt;}
.yea_c00124{bottom:627.453333pt;}
.ye9_c00124{bottom:628.226667pt;}
.ye7_c00124{bottom:632.066667pt;}
.ye8_c00124{bottom:635.906667pt;}
.ye5_c00124{bottom:643.586667pt;}
.ye4_c00124{bottom:645.120000pt;}
.ye3_c00124{bottom:645.893333pt;}
.ye2_c00124{bottom:646.653333pt;}
.ye1_c00124{bottom:647.426667pt;}
.yde_c00124{bottom:648.186667pt;}
.ye6_c00124{bottom:648.960000pt;}
.ydd_c00124{bottom:650.493333pt;}
.ye0_c00124{bottom:652.026667pt;}
.ydf_c00124{bottom:656.640000pt;}
.ydb_c00124{bottom:665.853333pt;}
.ydc_c00124{bottom:666.626667pt;}
.yd8_c00124{bottom:667.386667pt;}
.yd7_c00124{bottom:672.000000pt;}
.yd6_c00124{bottom:673.533333pt;}
.yd9_c00124{bottom:674.306667pt;}
.yda_c00124{bottom:675.840000pt;}
.yd4_c00124{bottom:688.893333pt;}
.yd3_c00124{bottom:691.200000pt;}
.yd1_c00124{bottom:693.506667pt;}
.yd2_c00124{bottom:694.266667pt;}
.ycf_c00124{bottom:695.040000pt;}
.yd0_c00124{bottom:695.813333pt;}
.yd5_c00124{bottom:703.493333pt;}
.ycc_c00124{bottom:709.626667pt;}
.ycb_c00124{bottom:712.706667pt;}
.yca_c00124{bottom:713.466667pt;}
.yc9_c00124{bottom:714.240000pt;}
.yce_c00124{bottom:715.773333pt;}
.ycd_c00124{bottom:716.546667pt;}
.yc8_c00124{bottom:718.080000pt;}
.yc7_c00124{bottom:719.613333pt;}
.yc6_c00124{bottom:733.440000pt;}
.yc4_c00124{bottom:734.213333pt;}
.yc3_c00124{bottom:736.506667pt;}
.yc5_c00124{bottom:737.280000pt;}
.yc2_c00124{bottom:739.586667pt;}
.yc1_c00124{bottom:746.493333pt;}
.yc0_c00124{bottom:754.173333pt;}
.ybf_c00124{bottom:754.946667pt;}
.ybe_c00124{bottom:755.706667pt;}
.ybd_c00124{bottom:756.480000pt;}
.ybc_c00124{bottom:757.253333pt;}
.yba_c00124{bottom:761.853333pt;}
.yb9_c00124{bottom:764.160000pt;}
.ybb_c00124{bottom:764.933333pt;}
.yb8_c00124{bottom:774.906667pt;}
.yb7_c00124{bottom:776.453333pt;}
.yb6_c00124{bottom:777.213333pt;}
.yb4_c00124{bottom:777.986667pt;}
.yb5_c00124{bottom:781.053333pt;}
.yb2_c00124{bottom:781.826667pt;}
.yb1_c00124{bottom:782.586667pt;}
.yb3_c00124{bottom:787.973333pt;}
.yb0_c00124{bottom:788.733333pt;}
.yaf_c00124{bottom:797.186667pt;}
.yae_c00124{bottom:798.720000pt;}
.yad_c00124{bottom:799.493333pt;}
.yac_c00124{bottom:820.986667pt;}
.yab_c00124{bottom:823.293333pt;}
.ya9_c00124{bottom:844.026667pt;}
.ya8_c00124{bottom:845.573333pt;}
.ya7_c00124{bottom:846.333333pt;}
.ya5_c00124{bottom:847.106667pt;}
.yaa_c00124{bottom:850.173333pt;}
.ya6_c00124{bottom:850.946667pt;}
.ya4_c00124{bottom:865.533333pt;}
.ya0_c00124{bottom:867.840000pt;}
.y9e_c00124{bottom:868.613333pt;}
.y9c_c00124{bottom:869.373333pt;}
.y9a_c00124{bottom:870.146667pt;}
.ya3_c00124{bottom:870.906667pt;}
.y9f_c00124{bottom:872.453333pt;}
.ya2_c00124{bottom:873.986667pt;}
.ya1_c00124{bottom:874.746667pt;}
.y9d_c00124{bottom:876.293333pt;}
.y9b_c00124{bottom:877.053333pt;}
.y97_c00124{bottom:887.813333pt;}
.y94_c00124{bottom:890.880000pt;}
.y93_c00124{bottom:891.653333pt;}
.y98_c00124{bottom:892.413333pt;}
.y91_c00124{bottom:893.186667pt;}
.y95_c00124{bottom:893.946667pt;}
.y99_c00124{bottom:894.720000pt;}
.y96_c00124{bottom:897.026667pt;}
.y90_c00124{bottom:897.786667pt;}
.y92_c00124{bottom:898.560000pt;}
.y8b_c00124{bottom:911.613333pt;}
.y89_c00124{bottom:913.146667pt;}
.y88_c00124{bottom:913.920000pt;}
.y87_c00124{bottom:914.693333pt;}
.y86_c00124{bottom:916.226667pt;}
.y8d_c00124{bottom:916.986667pt;}
.y8c_c00124{bottom:917.760000pt;}
.y8a_c00124{bottom:919.293333pt;}
.y85_c00124{bottom:925.440000pt;}
.y8f_c00124{bottom:928.506667pt;}
.y8e_c00124{bottom:929.280000pt;}
.y84_c00124{bottom:932.346667pt;}
.y81_c00124{bottom:933.120000pt;}
.y80_c00124{bottom:934.653333pt;}
.y7f_c00124{bottom:935.426667pt;}
.y7d_c00124{bottom:936.186667pt;}
.y83_c00124{bottom:936.960000pt;}
.y7b_c00124{bottom:938.493333pt;}
.y7c_c00124{bottom:939.266667pt;}
.y82_c00124{bottom:940.026667pt;}
.y7e_c00124{bottom:943.106667pt;}
.y7a_c00124{bottom:950.786667pt;}
.y79_c00124{bottom:951.546667pt;}
.y76_c00124{bottom:952.320000pt;}
.y74_c00124{bottom:954.626667pt;}
.y75_c00124{bottom:956.160000pt;}
.y77_c00124{bottom:962.306667pt;}
.y78_c00124{bottom:963.066667pt;}
.y73_c00124{bottom:976.133333pt;}
.y71_c00124{bottom:978.426667pt;}
.y6e_c00124{bottom:980.733333pt;}
.y72_c00124{bottom:981.506667pt;}
.y6c_c00124{bottom:982.266667pt;}
.y70_c00124{bottom:985.346667pt;}
.y6f_c00124{bottom:986.880000pt;}
.y6a_c00124{bottom:987.653333pt;}
.y6d_c00124{bottom:988.413333pt;}
.y6b_c00124{bottom:989.946667pt;}
.y67_c00124{bottom:993.026667pt;}
.y68_c00124{bottom:993.786667pt;}
.y66_c00124{bottom:996.093333pt;}
.y64_c00124{bottom:997.626667pt;}
.y69_c00124{bottom:998.400000pt;}
.y61_c00124{bottom:999.173333pt;}
.y62_c00124{bottom:1003.773333pt;}
.y63_c00124{bottom:1004.546667pt;}
.y65_c00124{bottom:1008.386667pt;}
.y60_c00124{bottom:1014.533333pt;}
.y5e_c00124{bottom:1019.906667pt;}
.y5d_c00124{bottom:1022.213333pt;}
.y5b_c00124{bottom:1023.746667pt;}
.y58_c00124{bottom:1024.506667pt;}
.y5f_c00124{bottom:1025.280000pt;}
.y59_c00124{bottom:1027.586667pt;}
.y5a_c00124{bottom:1028.346667pt;}
.y5c_c00124{bottom:1029.120000pt;}
.y57_c00124{bottom:1045.253333pt;}
.y56_c00124{bottom:1046.013333pt;}
.y53_c00124{bottom:1052.933333pt;}
.y54_c00124{bottom:1053.693333pt;}
.y55_c00124{bottom:1054.466667pt;}
.y50_c00124{bottom:1065.213333pt;}
.y4e_c00124{bottom:1067.520000pt;}
.y4c_c00124{bottom:1069.826667pt;}
.y51_c00124{bottom:1072.133333pt;}
.y4f_c00124{bottom:1074.426667pt;}
.y4b_c00124{bottom:1075.200000pt;}
.y4d_c00124{bottom:1075.973333pt;}
.y52_c00124{bottom:1077.506667pt;}
.y47_c00124{bottom:1089.786667pt;}
.y43_c00124{bottom:1091.333333pt;}
.y44_c00124{bottom:1092.866667pt;}
.y4a_c00124{bottom:1093.626667pt;}
.y49_c00124{bottom:1094.400000pt;}
.y48_c00124{bottom:1095.173333pt;}
.y45_c00124{bottom:1095.933333pt;}
.y46_c00124{bottom:1096.706667pt;}
.y41_c00124{bottom:1097.466667pt;}
.y40_c00124{bottom:1098.240000pt;}
.y42_c00124{bottom:1099.773333pt;}
.y3d_c00124{bottom:1113.600000pt;}
.y3a_c00124{bottom:1115.133333pt;}
.y3b_c00124{bottom:1115.906667pt;}
.y3e_c00124{bottom:1116.666667pt;}
.y3c_c00124{bottom:1118.973333pt;}
.y39_c00124{bottom:1121.280000pt;}
.y3f_c00124{bottom:1122.813333pt;}
.y38_c00124{bottom:1128.960000pt;}
.y36_c00124{bottom:1132.800000pt;}
.y34_c00124{bottom:1133.573333pt;}
.y32_c00124{bottom:1134.333333pt;}
.y30_c00124{bottom:1135.106667pt;}
.y31_c00124{bottom:1135.866667pt;}
.y2e_c00124{bottom:1137.413333pt;}
.y35_c00124{bottom:1139.706667pt;}
.y33_c00124{bottom:1140.480000pt;}
.y2f_c00124{bottom:1144.320000pt;}
.y37_c00124{bottom:1147.386667pt;}
.y2a_c00124{bottom:1152.773333pt;}
.y29_c00124{bottom:1156.613333pt;}
.y28_c00124{bottom:1157.373333pt;}
.y2b_c00124{bottom:1158.146667pt;}
.y2c_c00124{bottom:1158.906667pt;}
.y26_c00124{bottom:1159.680000pt;}
.y2d_c00124{bottom:1160.453333pt;}
.y27_c00124{bottom:1165.053333pt;}
.y25_c00124{bottom:1165.826667pt;}
.y24_c00124{bottom:1166.586667pt;}
.y22_c00124{bottom:1177.346667pt;}
.y21_c00124{bottom:1178.106667pt;}
.y23_c00124{bottom:1178.880000pt;}
.y1f_c00124{bottom:1179.653333pt;}
.y1e_c00124{bottom:1180.413333pt;}
.y1c_c00124{bottom:1181.186667pt;}
.y20_c00124{bottom:1187.333333pt;}
.y1d_c00124{bottom:1188.093333pt;}
.y19_c00124{bottom:1198.853333pt;}
.y18_c00124{bottom:1199.613333pt;}
.y17_c00124{bottom:1201.146667pt;}
.y16_c00124{bottom:1201.920000pt;}
.y13_c00124{bottom:1202.693333pt;}
.y1b_c00124{bottom:1203.453333pt;}
.y14_c00124{bottom:1204.226667pt;}
.y12_c00124{bottom:1204.986667pt;}
.y1a_c00124{bottom:1208.066667pt;}
.y15_c00124{bottom:1208.826667pt;}
.y11_c00124{bottom:1225.733333pt;}
.y10_c00124{bottom:1229.573333pt;}
.yf_c00124{bottom:1231.866667pt;}
.ye_c00124{bottom:1232.640000pt;}
.y19e_c00124{bottom:1238.786667pt;}
.y19d_c00124{bottom:1239.546667pt;}
.yd_c00124{bottom:1251.840000pt;}
.y8_c00124{bottom:1257.213333pt;}
.yb_c00124{bottom:1260.293333pt;}
.yc_c00124{bottom:1265.666667pt;}
.y9_c00124{bottom:1266.426667pt;}
.y19c_c00124{bottom:1267.973333pt;}
.y7_c00124{bottom:1268.733333pt;}
.ya_c00124{bottom:1269.506667pt;}
.y6_c00124{bottom:1270.266667pt;}
.y2_c00124{bottom:1281.026667pt;}
.y4_c00124{bottom:1281.786667pt;}
.y1_c00124{bottom:1283.333333pt;}
.y3_c00124{bottom:1285.626667pt;}
.y5_c00124{bottom:1289.466667pt;}
.h4_c00124{height:2.764500pt;}
.h29_c00124{height:4.799479pt;}
.h7_c00124{height:5.519401pt;}
.h2a_c00124{height:5.857833pt;}
.h1e_c00124{height:8.303099pt;}
.h6_c00124{height:11.038802pt;}
.ha_c00124{height:13.822500pt;}
.h3_c00124{height:16.606198pt;}
.h5_c00124{height:19.341901pt;}
.h28_c00124{height:22.125599pt;}
.h2b_c00124{height:24.861302pt;}
.h2_c00124{height:27.645000pt;}
.h9_c00124{height:30.428698pt;}
.h22_c00124{height:33.164401pt;}
.h1c_c00124{height:35.948099pt;}
.h25_c00124{height:38.683802pt;}
.h21_c00124{height:41.467500pt;}
.h8_c00124{height:44.251198pt;}
.h1b_c00124{height:46.986901pt;}
.h12_c00124{height:49.770599pt;}
.hc_c00124{height:52.506302pt;}
.h1d_c00124{height:55.290000pt;}
.h1a_c00124{height:58.073698pt;}
.h17_c00124{height:60.809401pt;}
.h1f_c00124{height:63.593099pt;}
.h23_c00124{height:66.328802pt;}
.h19_c00124{height:69.112500pt;}
.hf_c00124{height:71.896198pt;}
.h18_c00124{height:74.631901pt;}
.he_c00124{height:77.415599pt;}
.hd_c00124{height:80.151302pt;}
.h16_c00124{height:82.935000pt;}
.h10_c00124{height:85.718698pt;}
.h13_c00124{height:88.454401pt;}
.h14_c00124{height:91.238099pt;}
.h20_c00124{height:93.973802pt;}
.h11_c00124{height:96.757500pt;}
.hb_c00124{height:99.541198pt;}
.h15_c00124{height:102.276901pt;}
.h24_c00124{height:105.060599pt;}
.h27_c00124{height:107.796302pt;}
.h26_c00124{height:121.618802pt;}
.h0_c00124{height:1348.613333pt;}
.h1_c00124{height:1348.666667pt;}
.w0_c00124{width:969.213333pt;}
.w1_c00124{width:969.333333pt;}
.x0_c00124{left:0.000000pt;}
.xf1_c00124{left:95.226667pt;}
.xf2_c00124{left:98.306667pt;}
.x107_c00124{left:102.146667pt;}
.x111_c00124{left:103.680000pt;}
.x108_c00124{left:107.520000pt;}
.xd2_c00124{left:109.826667pt;}
.xe1_c00124{left:112.133333pt;}
.xca_c00124{left:114.426667pt;}
.xd3_c00124{left:116.733333pt;}
.x104_c00124{left:120.573333pt;}
.xce_c00124{left:123.653333pt;}
.xe4_c00124{left:125.186667pt;}
.x66_c00124{left:126.720000pt;}
.xd4_c00124{left:128.253333pt;}
.xe2_c00124{left:130.560000pt;}
.xcb_c00124{left:132.093333pt;}
.xbc_c00124{left:133.626667pt;}
.xe5_c00124{left:135.933333pt;}
.x85_c00124{left:137.466667pt;}
.x67_c00124{left:139.773267pt;}
.xd5_c00124{left:141.306667pt;}
.x112_c00124{left:142.853333pt;}
.x68_c00124{left:144.386667pt;}
.xdc_c00124{left:146.693333pt;}
.xd6_c00124{left:148.226667pt;}
.x105_c00124{left:149.760000pt;}
.xcf_c00124{left:151.293333pt;}
.x5b_c00124{left:153.600000pt;}
.x6d_c00124{left:156.666667pt;}
.xd7_c00124{left:158.213333pt;}
.x6e_c00124{left:163.586667pt;}
.xd8_c00124{left:165.120000pt;}
.x5c_c00124{left:166.653333pt;}
.xd0_c00124{left:170.493333pt;}
.xea_c00124{left:172.026667pt;}
.xfc_c00124{left:175.106667pt;}
.xd9_c00124{left:178.173333pt;}
.x11_c00124{left:179.706667pt;}
.xb5_c00124{left:181.252971pt;}
.xf3_c00124{left:182.786667pt;}
.xfd_c00124{left:184.320000pt;}
.x109_c00124{left:185.853333pt;}
.x4a_c00124{left:188.160000pt;}
.xeb_c00124{left:189.693333pt;}
.x6f_c00124{left:191.226667pt;}
.x42_c00124{left:192.773733pt;}
.xa7_c00124{left:194.306667pt;}
.x8d_c00124{left:195.840000pt;}
.xa3_c00124{left:197.373333pt;}
.x1e_c00124{left:198.906667pt;}
.x78_c00124{left:200.453333pt;}
.x2a_c00124{left:201.986667pt;}
.xf4_c00124{left:203.520000pt;}
.x115_c00124{left:205.826667pt;}
.x106_c00124{left:211.973333pt;}
.xc0_c00124{left:217.346667pt;}
.x15_c00124{left:218.880000pt;}
.x2b_c00124{left:223.493333pt;}
.x116_c00124{left:227.333333pt;}
.xfe_c00124{left:228.866667pt;}
.xe6_c00124{left:230.400000pt;}
.x16_c00124{left:232.706667pt;}
.xf5_c00124{left:234.240000pt;}
.x54_c00124{left:235.773333pt;}
.x8e_c00124{left:238.080000pt;}
.x86_c00124{left:240.386667pt;}
.x70_c00124{left:244.986667pt;}
.x9_c00124{left:246.525333pt;}
.x5d_c00124{left:248.826667pt;}
.xa8_c00124{left:251.133333pt;}
.x43_c00124{left:253.440000pt;}
.x71_c00124{left:258.053333pt;}
.xa_c00124{left:261.893333pt;}
.xf6_c00124{left:263.426667pt;}
.xcc_c00124{left:264.960000pt;}
.xd1_c00124{left:266.493333pt;}
.xe8_c00124{left:268.800000pt;}
.xc7_c00124{left:271.106667pt;}
.x2c_c00124{left:272.640000pt;}
.xa9_c00124{left:274.173333pt;}
.x17_c00124{left:276.480000pt;}
.x55_c00124{left:278.786667pt;}
.x4b_c00124{left:280.320000pt;}
.x113_c00124{left:281.853333pt;}
.xbd_c00124{left:283.386667pt;}
.x87_c00124{left:286.466667pt;}
.x5e_c00124{left:288.000000pt;}
.x36_c00124{left:289.533333pt;}
.x117_c00124{left:291.066667pt;}
.x96_c00124{left:295.680000pt;}
.xb7_c00124{left:297.986667pt;}
.x12_c00124{left:299.520000pt;}
.x9f_c00124{left:301.053333pt;}
.x10a_c00124{left:303.360000pt;}
.x37_c00124{left:307.200000pt;}
.x1f_c00124{left:310.266667pt;}
.x11b_c00124{left:312.573333pt;}
.x56_c00124{left:314.106667pt;}
.x20_c00124{left:316.413333pt;}
.x2d_c00124{left:319.493333pt;}
.x1_c00124{left:326.400000pt;}
.x38_c00124{left:327.933333pt;}
.xb_c00124{left:331.013333pt;}
.x72_c00124{left:332.546667pt;}
.x8f_c00124{left:334.080000pt;}
.x7e_c00124{left:335.613333pt;}
.x69_c00124{left:337.146667pt;}
.x118_c00124{left:340.226667pt;}
.xc1_c00124{left:346.373333pt;}
.xdd_c00124{left:349.440000pt;}
.xaa_c00124{left:353.280000pt;}
.xad_c00124{left:356.346667pt;}
.x10f_c00124{left:360.960000pt;}
.x18_c00124{left:363.266667pt;}
.x6a_c00124{left:364.800000pt;}
.x2e_c00124{left:367.106667pt;}
.xc2_c00124{left:370.173333pt;}
.x10b_c00124{left:371.706667pt;}
.x2f_c00124{left:373.253333pt;}
.x97_c00124{left:377.093333pt;}
.x21_c00124{left:379.386667pt;}
.x10c_c00124{left:381.693333pt;}
.x7f_c00124{left:384.000000pt;}
.x119_c00124{left:385.533333pt;}
.xb0_c00124{left:387.840000pt;}
.xbe_c00124{left:389.373333pt;}
.x39_c00124{left:397.826667pt;}
.x114_c00124{left:399.360000pt;}
.x79_c00124{left:400.893333pt;}
.x19_c00124{left:403.200000pt;}
.x11a_c00124{left:405.506667pt;}
.xc_c00124{left:408.573333pt;}
.x73_c00124{left:411.653333pt;}
.x13_c00124{left:415.493333pt;}
.xc8_c00124{left:417.026667pt;}
.xec_c00124{left:420.093333pt;}
.x90_c00124{left:423.173333pt;}
.x44_c00124{left:424.706667pt;}
.x2_c00124{left:427.013333pt;}
.xd_c00124{left:428.546667pt;}
.xc3_c00124{left:434.693333pt;}
.x30_c00124{left:437.760000pt;}
.x62_c00124{left:440.066667pt;}
.x91_c00124{left:441.600000pt;}
.x3a_c00124{left:444.666667pt;}
.xe_c00124{left:446.213333pt;}
.xe7_c00124{left:447.746667pt;}
.x80_c00124{left:450.053333pt;}
.x103_c00124{left:453.893333pt;}
.x5f_c00124{left:456.186667pt;}
.x1a_c00124{left:460.800000pt;}
.x98_c00124{left:463.106667pt;}
.x7a_c00124{left:464.640000pt;}
.xf7_c00124{left:467.706667pt;}
.xff_c00124{left:469.253333pt;}
.x74_c00124{left:471.546667pt;}
.xc4_c00124{left:476.933333pt;}
.xa0_c00124{left:478.466667pt;}
.x22_c00124{left:481.533333pt;}
.xc9_c00124{left:484.613333pt;}
.x23_c00124{left:486.146667pt;}
.x57_c00124{left:487.680000pt;}
.x4c_c00124{left:489.986667pt;}
.xde_c00124{left:495.360000pt;}
.x45_c00124{left:496.893333pt;}
.x88_c00124{left:500.733333pt;}
.x58_c00124{left:505.346667pt;}
.xa4_c00124{left:512.253333pt;}
.x92_c00124{left:515.333333pt;}
.x3_c00124{left:517.626667pt;}
.xc5_c00124{left:519.173333pt;}
.x99_c00124{left:520.706667pt;}
.x4d_c00124{left:523.013333pt;}
.x24_c00124{left:524.546667pt;}
.x4_c00124{left:530.693333pt;}
.xf_c00124{left:532.226667pt;}
.xb3_c00124{left:534.533333pt;}
.x46_c00124{left:536.066667pt;}
.x93_c00124{left:537.600000pt;}
.x4e_c00124{left:539.906667pt;}
.x59_c00124{left:542.213333pt;}
.x10d_c00124{left:545.280000pt;}
.x89_c00124{left:549.120000pt;}
.x63_c00124{left:550.653333pt;}
.xcd_c00124{left:552.186667pt;}
.x25_c00124{left:553.733333pt;}
.x3b_c00124{left:556.026667pt;}
.x4f_c00124{left:559.866667pt;}
.xb8_c00124{left:564.480000pt;}
.x14_c00124{left:566.013333pt;}
.x64_c00124{left:572.160000pt;}
.xda_c00124{left:573.693333pt;}
.x5a_c00124{left:576.000000pt;}
.x100_c00124{left:581.373333pt;}
.xb9_c00124{left:582.906667pt;}
.xb1_c00124{left:584.453333pt;}
.xae_c00124{left:585.986667pt;}
.x3c_c00124{left:589.053333pt;}
.x94_c00124{left:594.426667pt;}
.xf8_c00124{left:595.973333pt;}
.x31_c00124{left:597.506667pt;}
.xdf_c00124{left:599.040000pt;}
.x95_c00124{left:602.106667pt;}
.x10_c00124{left:604.413333pt;}
.xe3_c00124{left:606.720000pt;}
.x65_c00124{left:609.026667pt;}
.x47_c00124{left:610.560000pt;}
.xef_c00124{left:612.866667pt;}
.x1b_c00124{left:614.400000pt;}
.xf0_c00124{left:616.706667pt;}
.x3d_c00124{left:618.240000pt;}
.x75_c00124{left:622.080000pt;}
.xab_c00124{left:625.146667pt;}
.x3e_c00124{left:626.693333pt;}
.x26_c00124{left:632.066667pt;}
.x50_c00124{left:633.600000pt;}
.x81_c00124{left:635.133333pt;}
.x3f_c00124{left:637.440000pt;}
.x10e_c00124{left:638.973333pt;}
.xa5_c00124{left:645.120000pt;}
.x101_c00124{left:650.493333pt;}
.xb2_c00124{left:652.026667pt;}
.xc6_c00124{left:653.573333pt;}
.x76_c00124{left:655.106667pt;}
.xf9_c00124{left:657.413333pt;}
.x9a_c00124{left:661.253333pt;}
.xed_c00124{left:664.320000pt;}
.xaf_c00124{left:666.626667pt;}
.x5_c00124{left:668.933333pt;}
.x102_c00124{left:671.226667pt;}
.x82_c00124{left:672.773333pt;}
.x8a_c00124{left:675.066667pt;}
.x6b_c00124{left:676.613333pt;}
.x27_c00124{left:679.680000pt;}
.x9b_c00124{left:685.053333pt;}
.x60_c00124{left:686.586667pt;}
.x83_c00124{left:688.133333pt;}
.x51_c00124{left:689.666667pt;}
.x6_c00124{left:691.200000pt;}
.x7b_c00124{left:693.506667pt;}
.xfa_c00124{left:695.813333pt;}
.xba_c00124{left:699.653333pt;}
.x7_c00124{left:701.186667pt;}
.xfb_c00124{left:702.720000pt;}
.xbf_c00124{left:704.253333pt;}
.x48_c00124{left:706.560000pt;}
.xa1_c00124{left:708.093333pt;}
.xac_c00124{left:709.626667pt;}
.x8_c00124{left:711.933333pt;}
.xa6_c00124{left:713.466667pt;}
.xe9_c00124{left:715.773333pt;}
.x28_c00124{left:718.080000pt;}
.x77_c00124{left:721.920000pt;}
.x52_c00124{left:726.533333pt;}
.x40_c00124{left:728.066667pt;}
.x84_c00124{left:730.373333pt;}
.x7c_c00124{left:733.440000pt;}
.xdb_c00124{left:734.973333pt;}
.x9c_c00124{left:736.506667pt;}
.xbb_c00124{left:741.893333pt;}
.x9d_c00124{left:743.426667pt;}
.xa2_c00124{left:745.733333pt;}
.x110_c00124{left:749.573333pt;}
.x7d_c00124{left:757.253333pt;}
.x53_c00124{left:763.386667pt;}
.xee_c00124{left:765.693333pt;}
.x8b_c00124{left:767.226667pt;}
.x9e_c00124{left:768.773333pt;}
.x32_c00124{left:770.306667pt;}
.xb4_c00124{left:771.840000pt;}
.x1c_c00124{left:774.146667pt;}
.x61_c00124{left:775.680000pt;}
.x8c_c00124{left:777.213333pt;}
.xb6_c00124{left:779.520000pt;}
.x49_c00124{left:781.826667pt;}
.x33_c00124{left:784.133333pt;}
.x6c_c00124{left:787.973333pt;}
.x29_c00124{left:790.266667pt;}
.x41_c00124{left:793.346667pt;}
.x34_c00124{left:796.413333pt;}
.x35_c00124{left:807.933333pt;}
.x1d_c00124{left:811.013333pt;}
.x11c_c00124{left:812.546667pt;}
.xe0_c00124{left:817.920000pt;}
.x11d_c00124{left:833.280000pt;}
.x11e_c00124{left:846.333333pt;}
.x11f_c00124{left:854.013333pt;}
.x121_c00124{left:905.466667pt;}
.x120_c00124{left:947.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_485e2057fb64447e17ab4ff7.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.109863;font-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_c00125{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00125{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.mf8_c00125{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);}
.m9a_c00125{transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);}
.mc5_c00125{transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);}
.m104_c00125{transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);}
.ma2_c00125{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.mc8_c00125{transform:matrix(0.119300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119300,0.000000,0.000000,0.250000,0,0);}
.mec_c00125{transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);}
.m10_c00125{transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);}
.mcf_c00125{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00125{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00125{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m102_c00125{transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);}
.m106_c00125{transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);}
.mea_c00125{transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);}
.m81_c00125{transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);}
.m6f_c00125{transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);}
.m9c_c00125{transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);}
.m70_c00125{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.m62_c00125{transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);}
.m105_c00125{transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);}
.m4_c00125{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me5_c00125{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);}
.m99_c00125{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.me9_c00125{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.mf6_c00125{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.m34_c00125{transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);}
.m6e_c00125{transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);}
.m98_c00125{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mef_c00125{transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);}
.mf1_c00125{transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);}
.me1_c00125{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.m77_c00125{transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);}
.md4_c00125{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.ma8_c00125{transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);}
.md9_c00125{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.m15_c00125{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.mf0_c00125{transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);}
.m94_c00125{transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);}
.m6c_c00125{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);}
.ma7_c00125{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.m86_c00125{transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);}
.m9b_c00125{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.mfc_c00125{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.mac_c00125{transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);}
.m100_c00125{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.me6_c00125{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);}
.mff_c00125{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.me2_c00125{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.m51_c00125{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);}
.m95_c00125{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00125{transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);}
.mb7_c00125{transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);}
.mba_c00125{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.mf4_c00125{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m2b_c00125{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.mca_c00125{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);}
.md7_c00125{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.m6d_c00125{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);}
.mdc_c00125{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m8_c00125{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.mf_c00125{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m7_c00125{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.me7_c00125{transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);}
.mad_c00125{transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);}
.m42_c00125{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.mc3_c00125{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);}
.mf7_c00125{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m52_c00125{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.mcc_c00125{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.mfd_c00125{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m21_c00125{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m58_c00125{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00125{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.mfb_c00125{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.m2d_c00125{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.meb_c00125{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.mdd_c00125{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);}
.me4_c00125{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m2e_c00125{transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);}
.m24_c00125{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.m11_c00125{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.m20_c00125{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);}
.m83_c00125{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.m7a_c00125{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.m8a_c00125{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);}
.m54_c00125{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.m3c_c00125{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m108_c00125{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.mc2_c00125{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m8c_c00125{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.mb6_c00125{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.mb4_c00125{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.mc7_c00125{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.md1_c00125{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);}
.m68_c00125{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);}
.me8_c00125{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.mfa_c00125{transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);}
.m57_c00125{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);}
.m7e_c00125{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.mb1_c00125{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m45_c00125{transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);}
.m27_c00125{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.mbf_c00125{transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);}
.m36_c00125{transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);}
.md0_c00125{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.m33_c00125{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.mc1_c00125{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00125{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);}
.m49_c00125{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mc0_c00125{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);}
.mb0_c00125{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.mb2_c00125{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.m29_c00125{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m7c_c00125{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m17_c00125{transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);}
.m5c_c00125{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);}
.m4b_c00125{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);}
.m6b_c00125{transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);}
.mb8_c00125{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m72_c00125{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);}
.ma3_c00125{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);}
.m93_c00125{transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);}
.mee_c00125{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m16_c00125{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);}
.m89_c00125{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);}
.m22_c00125{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);}
.m13_c00125{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.md3_c00125{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);}
.m67_c00125{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mda_c00125{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.mbe_c00125{transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);}
.m87_c00125{transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);}
.ma4_c00125{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);}
.m7b_c00125{transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);}
.m90_c00125{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m65_c00125{transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);}
.mf5_c00125{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);}
.m35_c00125{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m8f_c00125{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.ma0_c00125{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);}
.m18_c00125{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);}
.m2a_c00125{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);}
.m53_c00125{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);}
.m59_c00125{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.mde_c00125{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m76_c00125{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.mb3_c00125{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m5d_c00125{transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);}
.m85_c00125{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);}
.mb5_c00125{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);}
.md2_c00125{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);}
.maa_c00125{transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);}
.mab_c00125{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);}
.mf3_c00125{transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);}
.me0_c00125{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);}
.ma9_c00125{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);}
.mc9_c00125{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);}
.m56_c00125{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.m103_c00125{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);}
.mbb_c00125{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);}
.m101_c00125{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m64_c00125{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m9f_c00125{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.md6_c00125{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.m5b_c00125{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m63_c00125{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);}
.m23_c00125{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m1c_c00125{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);}
.med_c00125{transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);}
.m9_c00125{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);}
.mf2_c00125{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);}
.m74_c00125{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m41_c00125{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);}
.mcd_c00125{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.mc4_c00125{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);}
.m8b_c00125{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);}
.m96_c00125{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.m3b_c00125{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);}
.m8e_c00125{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);}
.ma1_c00125{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);}
.m4c_c00125{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);}
.m48_c00125{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);}
.m61_c00125{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);}
.m38_c00125{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);}
.m3f_c00125{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);}
.m5a_c00125{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00125{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);}
.m75_c00125{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);}
.m46_c00125{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);}
.m9e_c00125{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);}
.mc6_c00125{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m40_c00125{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m50_c00125{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m32_c00125{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);}
.m47_c00125{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00125{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);}
.m71_c00125{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);}
.me_c00125{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00125{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);}
.m1_c00125{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m88_c00125{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00125{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);}
.m44_c00125{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m55_c00125{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);}
.me3_c00125{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);}
.m1e_c00125{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m60_c00125{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);}
.m1f_c00125{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00125{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m37_c00125{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);}
.m14_c00125{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m78_c00125{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00125{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m80_c00125{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m19_c00125{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00125{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m73_c00125{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m91_c00125{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m39_c00125{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);}
.m31_c00125{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m26_c00125{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m82_c00125{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);}
.mdf_c00125{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m84_c00125{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.maf_c00125{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00125{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00125{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00125{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);}
.m1a_c00125{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mb_c00125{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mc_c00125{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00125{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00125{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m69_c00125{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00125{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m92_c00125{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);}
.mbd_c00125{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m97_c00125{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);}
.md8_c00125{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.md_c00125{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m0_c00125{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00125{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);}
.m28_c00125{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00125{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m6_c00125{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00125{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m25_c00125{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00125{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);}
.m30_c00125{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m43_c00125{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.md5_c00125{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);}
.ma_c00125{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00125{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m109_c00125{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);}
.mdb_c00125{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3_c00125{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00125{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m107_c00125{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m79_c00125{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mae_c00125{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m66_c00125{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m2_c00125{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00125{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00125{transform:matrix(1.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.475000,0.000000,0.000000,0.250000,0,0);}
.mce_c00125{transform:matrix(2.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.127500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00125{transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);}
.v1_c00125{vertical-align:-3.480000px;}
.v0_c00125{vertical-align:0.000000px;}
.ls1_c00125{letter-spacing:0.000000px;}
.ls0_c00125{letter-spacing:113.000688px;}
.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;}
}
.ws1_c00125{word-spacing:0.000000px;}
.ws0_c00125{word-spacing:83.964000px;}
.fc0_c00125{color:transparent;}
.fs2_c00125{font-size:3.456000px;}
.fs3_c00125{font-size:6.000000px;}
.fs0_c00125{font-size:6.900000px;}
.fs1c_c00125{font-size:10.380000px;}
.fs4_c00125{font-size:13.800000px;}
.fs1_c00125{font-size:17.280000px;}
.fs1f_c00125{font-size:20.760000px;}
.fs20_c00125{font-size:24.180000px;}
.fs11_c00125{font-size:27.660000px;}
.fse_c00125{font-size:31.080000px;}
.fs6_c00125{font-size:34.560000px;}
.fs12_c00125{font-size:38.040000px;}
.fs18_c00125{font-size:41.460000px;}
.fs1d_c00125{font-size:44.940000px;}
.fs23_c00125{font-size:48.360000px;}
.fs13_c00125{font-size:51.840000px;}
.fs1a_c00125{font-size:55.320000px;}
.fs1e_c00125{font-size:58.740000px;}
.fs8_c00125{font-size:62.220000px;}
.fs5_c00125{font-size:65.640000px;}
.fs14_c00125{font-size:69.120000px;}
.fs9_c00125{font-size:72.600000px;}
.fs15_c00125{font-size:76.020000px;}
.fs7_c00125{font-size:79.500000px;}
.fsa_c00125{font-size:82.920000px;}
.fs1b_c00125{font-size:86.400000px;}
.fs17_c00125{font-size:89.880000px;}
.fsf_c00125{font-size:93.300000px;}
.fs10_c00125{font-size:96.780000px;}
.fsd_c00125{font-size:100.200000px;}
.fs19_c00125{font-size:103.680000px;}
.fsc_c00125{font-size:107.160000px;}
.fsb_c00125{font-size:110.580000px;}
.fs16_c00125{font-size:114.060000px;}
.fs22_c00125{font-size:117.480000px;}
.fs21_c00125{font-size:127.860000px;}
.y0_c00125{bottom:0.000000px;}
.y152_c00125{bottom:220.320000px;}
.y151_c00125{bottom:222.045000px;}
.y14f_c00125{bottom:224.640000px;}
.y14a_c00125{bottom:226.365000px;}
.y14b_c00125{bottom:228.090000px;}
.y150_c00125{bottom:228.960000px;}
.y14c_c00125{bottom:233.280000px;}
.y14e_c00125{bottom:235.005000px;}
.y14d_c00125{bottom:235.875000px;}
.y149_c00125{bottom:239.325000px;}
.y146_c00125{bottom:241.920000px;}
.y147_c00125{bottom:242.790000px;}
.y144_c00125{bottom:246.240000px;}
.y148_c00125{bottom:247.110000px;}
.y145_c00125{bottom:249.690000px;}
.y13e_c00125{bottom:267.840000px;}
.y13d_c00125{bottom:269.565000px;}
.y13b_c00125{bottom:270.435000px;}
.y13c_c00125{bottom:272.160000px;}
.y140_c00125{bottom:274.755000px;}
.y13f_c00125{bottom:275.610000px;}
.y141_c00125{bottom:277.350000px;}
.y143_c00125{bottom:286.845000px;}
.y142_c00125{bottom:288.570000px;}
.y136_c00125{bottom:292.890000px;}
.y133_c00125{bottom:293.760000px;}
.y137_c00125{bottom:295.485000px;}
.y135_c00125{bottom:296.355000px;}
.y132_c00125{bottom:298.950000px;}
.y134_c00125{bottom:299.805000px;}
.y13a_c00125{bottom:304.125000px;}
.y138_c00125{bottom:314.490000px;}
.y139_c00125{bottom:315.360000px;}
.y12f_c00125{bottom:317.955000px;}
.y131_c00125{bottom:318.810000px;}
.y12e_c00125{bottom:319.680000px;}
.y12a_c00125{bottom:320.550000px;}
.y127_c00125{bottom:322.275000px;}
.y12c_c00125{bottom:323.130000px;}
.y128_c00125{bottom:324.000000px;}
.y12d_c00125{bottom:324.870000px;}
.y130_c00125{bottom:325.725000px;}
.y12b_c00125{bottom:327.450000px;}
.y129_c00125{bottom:328.320000px;}
.y125_c00125{bottom:339.555000px;}
.y126_c00125{bottom:341.280000px;}
.y124_c00125{bottom:343.875000px;}
.y122_c00125{bottom:344.730000px;}
.y123_c00125{bottom:346.470000px;}
.y120_c00125{bottom:367.200000px;}
.y11f_c00125{bottom:368.925000px;}
.y121_c00125{bottom:369.795000px;}
.y11c_c00125{bottom:371.520000px;}
.y11e_c00125{bottom:375.840000px;}
.y11d_c00125{bottom:378.435000px;}
.y11b_c00125{bottom:379.290000px;}
.y9_c00125{bottom:385.350000px;}
.y8_c00125{bottom:389.670000px;}
.y118_c00125{bottom:394.845000px;}
.y115_c00125{bottom:397.440000px;}
.y119_c00125{bottom:398.310000px;}
.y11a_c00125{bottom:400.035000px;}
.y117_c00125{bottom:403.485000px;}
.y116_c00125{bottom:404.355000px;}
.y114_c00125{bottom:405.210000px;}
.y111_c00125{bottom:419.910000px;}
.y112_c00125{bottom:425.955000px;}
.y10f_c00125{bottom:427.680000px;}
.y110_c00125{bottom:429.405000px;}
.y113_c00125{bottom:438.915000px;}
.y10b_c00125{bottom:443.235000px;}
.y109_c00125{bottom:444.960000px;}
.y105_c00125{bottom:447.555000px;}
.y10c_c00125{bottom:448.410000px;}
.y108_c00125{bottom:449.280000px;}
.y10d_c00125{bottom:451.005000px;}
.y10a_c00125{bottom:451.875000px;}
.y106_c00125{bottom:452.730000px;}
.y107_c00125{bottom:453.600000px;}
.y10e_c00125{bottom:465.690000px;}
.y102_c00125{bottom:468.285000px;}
.yfd_c00125{bottom:471.750000px;}
.y100_c00125{bottom:473.475000px;}
.y101_c00125{bottom:476.070000px;}
.yff_c00125{bottom:478.650000px;}
.yfe_c00125{bottom:479.520000px;}
.y154_c00125{bottom:482.115000px;}
.y153_c00125{bottom:484.710000px;}
.y104_c00125{bottom:488.160000px;}
.y103_c00125{bottom:489.030000px;}
.yfc_c00125{bottom:492.480000px;}
.yfb_c00125{bottom:493.350000px;}
.yf8_c00125{bottom:494.205000px;}
.yf9_c00125{bottom:495.075000px;}
.yf6_c00125{bottom:495.930000px;}
.yf4_c00125{bottom:496.800000px;}
.yf7_c00125{bottom:498.525000px;}
.yfa_c00125{bottom:501.120000px;}
.yf5_c00125{bottom:503.715000px;}
.yf1_c00125{bottom:520.125000px;}
.yf3_c00125{bottom:520.995000px;}
.yf2_c00125{bottom:521.850000px;}
.yee_c00125{bottom:522.720000px;}
.yf0_c00125{bottom:524.445000px;}
.yef_c00125{bottom:525.315000px;}
.yeb_c00125{bottom:526.170000px;}
.yed_c00125{bottom:527.040000px;}
.ye9_c00125{bottom:527.910000px;}
.yec_c00125{bottom:528.765000px;}
.yea_c00125{bottom:529.635000px;}
.ye7_c00125{bottom:545.190000px;}
.ye2_c00125{bottom:546.915000px;}
.ye6_c00125{bottom:547.770000px;}
.ye0_c00125{bottom:548.640000px;}
.ye1_c00125{bottom:550.365000px;}
.ye5_c00125{bottom:551.235000px;}
.ye8_c00125{bottom:552.090000px;}
.ye3_c00125{bottom:554.685000px;}
.ye4_c00125{bottom:555.555000px;}
.ydf_c00125{bottom:569.370000px;}
.yde_c00125{bottom:570.240000px;}
.ydd_c00125{bottom:571.110000px;}
.yda_c00125{bottom:572.835000px;}
.yd8_c00125{bottom:574.560000px;}
.yd9_c00125{bottom:577.155000px;}
.ydb_c00125{bottom:578.010000px;}
.ydc_c00125{bottom:579.750000px;}
.yd6_c00125{bottom:597.030000px;}
.yd3_c00125{bottom:597.885000px;}
.yd5_c00125{bottom:600.480000px;}
.yd7_c00125{bottom:601.350000px;}
.yd2_c00125{bottom:605.670000px;}
.yd4_c00125{bottom:606.525000px;}
.yd0_c00125{bottom:620.355000px;}
.yd1_c00125{bottom:625.530000px;}
.ycf_c00125{bottom:628.995000px;}
.yce_c00125{bottom:629.850000px;}
.ycd_c00125{bottom:630.720000px;}
.ycc_c00125{bottom:644.550000px;}
.ycb_c00125{bottom:646.275000px;}
.yca_c00125{bottom:648.870000px;}
.yc8_c00125{bottom:649.725000px;}
.yc6_c00125{bottom:652.320000px;}
.yc9_c00125{bottom:655.770000px;}
.yc7_c00125{bottom:656.640000px;}
.yc5_c00125{bottom:669.600000px;}
.yc3_c00125{bottom:670.470000px;}
.yc2_c00125{bottom:671.325000px;}
.yc4_c00125{bottom:676.515000px;}
.yc1_c00125{bottom:678.240000px;}
.yc0_c00125{bottom:679.965000px;}
.ybe_c00125{bottom:693.795000px;}
.yba_c00125{bottom:695.520000px;}
.yb9_c00125{bottom:696.390000px;}
.ybb_c00125{bottom:697.245000px;}
.ybc_c00125{bottom:698.115000px;}
.ybd_c00125{bottom:703.290000px;}
.yb7_c00125{bottom:704.160000px;}
.ybf_c00125{bottom:705.030000px;}
.yb8_c00125{bottom:705.885000px;}
.yb6_c00125{bottom:707.610000px;}
.yb2_c00125{bottom:723.165000px;}
.yb4_c00125{bottom:724.890000px;}
.yae_c00125{bottom:725.760000px;}
.yb5_c00125{bottom:726.630000px;}
.yb1_c00125{bottom:727.485000px;}
.yb3_c00125{bottom:728.355000px;}
.yaf_c00125{bottom:729.210000px;}
.yb0_c00125{bottom:730.080000px;}
.yad_c00125{bottom:743.910000px;}
.yac_c00125{bottom:744.765000px;}
.yaa_c00125{bottom:745.635000px;}
.ya9_c00125{bottom:746.490000px;}
.ya7_c00125{bottom:747.360000px;}
.ya8_c00125{bottom:751.680000px;}
.yab_c00125{bottom:752.550000px;}
.ya6_c00125{bottom:755.130000px;}
.ya5_c00125{bottom:762.915000px;}
.ya3_c00125{bottom:768.960000px;}
.ya4_c00125{bottom:770.685000px;}
.ya1_c00125{bottom:771.555000px;}
.y9e_c00125{bottom:772.410000px;}
.y9f_c00125{bottom:773.280000px;}
.ya2_c00125{bottom:776.730000px;}
.y9d_c00125{bottom:778.470000px;}
.ya0_c00125{bottom:779.325000px;}
.y9b_c00125{bottom:793.155000px;}
.y9a_c00125{bottom:794.010000px;}
.y9c_c00125{bottom:795.750000px;}
.y96_c00125{bottom:796.605000px;}
.y98_c00125{bottom:800.925000px;}
.y99_c00125{bottom:801.795000px;}
.y97_c00125{bottom:802.650000px;}
.y94_c00125{bottom:815.610000px;}
.y95_c00125{bottom:817.350000px;}
.y92_c00125{bottom:819.075000px;}
.y91_c00125{bottom:819.930000px;}
.y8e_c00125{bottom:820.800000px;}
.y93_c00125{bottom:823.395000px;}
.y8f_c00125{bottom:824.250000px;}
.y90_c00125{bottom:826.845000px;}
.y8d_c00125{bottom:828.570000px;}
.y8c_c00125{bottom:829.440000px;}
.y8b_c00125{bottom:841.530000px;}
.y86_c00125{bottom:844.995000px;}
.y8a_c00125{bottom:849.315000px;}
.y89_c00125{bottom:850.170000px;}
.y87_c00125{bottom:851.910000px;}
.y88_c00125{bottom:852.765000px;}
.y85_c00125{bottom:853.635000px;}
.y83_c00125{bottom:867.450000px;}
.y80_c00125{bottom:869.190000px;}
.y7e_c00125{bottom:870.915000px;}
.y7c_c00125{bottom:871.770000px;}
.y81_c00125{bottom:872.640000px;}
.y7d_c00125{bottom:875.235000px;}
.y82_c00125{bottom:876.090000px;}
.y7f_c00125{bottom:878.685000px;}
.y7b_c00125{bottom:879.555000px;}
.y84_c00125{bottom:883.875000px;}
.y7a_c00125{bottom:891.645000px;}
.y75_c00125{bottom:896.835000px;}
.y74_c00125{bottom:898.560000px;}
.y79_c00125{bottom:901.155000px;}
.y78_c00125{bottom:902.010000px;}
.y77_c00125{bottom:902.880000px;}
.y76_c00125{bottom:903.750000px;}
.y72_c00125{bottom:914.115000px;}
.y71_c00125{bottom:916.710000px;}
.y6f_c00125{bottom:917.565000px;}
.y70_c00125{bottom:925.350000px;}
.y73_c00125{bottom:926.205000px;}
.y6e_c00125{bottom:929.670000px;}
.y6c_c00125{bottom:944.355000px;}
.y6d_c00125{bottom:945.210000px;}
.y68_c00125{bottom:946.080000px;}
.y67_c00125{bottom:946.950000px;}
.y6b_c00125{bottom:952.125000px;}
.y6a_c00125{bottom:952.995000px;}
.y69_c00125{bottom:953.850000px;}
.y65_c00125{bottom:971.130000px;}
.y63_c00125{bottom:972.000000px;}
.y66_c00125{bottom:977.190000px;}
.y64_c00125{bottom:978.915000px;}
.y62_c00125{bottom:979.770000px;}
.y5f_c00125{bottom:995.325000px;}
.y5d_c00125{bottom:996.195000px;}
.y57_c00125{bottom:997.920000px;}
.y59_c00125{bottom:999.645000px;}
.y61_c00125{bottom:1000.515000px;}
.y58_c00125{bottom:1003.965000px;}
.y5e_c00125{bottom:1004.835000px;}
.y60_c00125{bottom:1005.690000px;}
.y5a_c00125{bottom:1008.285000px;}
.y5b_c00125{bottom:1016.070000px;}
.y5c_c00125{bottom:1017.795000px;}
.y54_c00125{bottom:1019.520000px;}
.y55_c00125{bottom:1020.390000px;}
.y52_c00125{bottom:1022.115000px;}
.y56_c00125{bottom:1022.970000px;}
.y51_c00125{bottom:1026.435000px;}
.y50_c00125{bottom:1028.160000px;}
.y53_c00125{bottom:1029.030000px;}
.y4f_c00125{bottom:1044.570000px;}
.y4e_c00125{bottom:1046.310000px;}
.y4d_c00125{bottom:1052.355000px;}
.y4a_c00125{bottom:1070.490000px;}
.y48_c00125{bottom:1071.360000px;}
.y4b_c00125{bottom:1073.085000px;}
.y4c_c00125{bottom:1074.810000px;}
.y46_c00125{bottom:1075.680000px;}
.y49_c00125{bottom:1076.550000px;}
.y47_c00125{bottom:1080.000000px;}
.y45_c00125{bottom:1096.410000px;}
.y42_c00125{bottom:1097.280000px;}
.y40_c00125{bottom:1098.150000px;}
.y43_c00125{bottom:1099.875000px;}
.y41_c00125{bottom:1101.600000px;}
.y44_c00125{bottom:1104.195000px;}
.y3f_c00125{bottom:1105.920000px;}
.y3e_c00125{bottom:1120.605000px;}
.y3a_c00125{bottom:1122.330000px;}
.y38_c00125{bottom:1123.200000px;}
.y39_c00125{bottom:1125.795000px;}
.y3b_c00125{bottom:1126.650000px;}
.y3d_c00125{bottom:1128.390000px;}
.y3c_c00125{bottom:1130.115000px;}
.y37_c00125{bottom:1143.930000px;}
.y33_c00125{bottom:1147.395000px;}
.y2e_c00125{bottom:1148.250000px;}
.y32_c00125{bottom:1149.120000px;}
.y2f_c00125{bottom:1150.845000px;}
.y36_c00125{bottom:1151.715000px;}
.y2d_c00125{bottom:1152.570000px;}
.y34_c00125{bottom:1154.310000px;}
.y35_c00125{bottom:1155.165000px;}
.y31_c00125{bottom:1156.035000px;}
.y30_c00125{bottom:1156.890000px;}
.y2c_c00125{bottom:1172.445000px;}
.y26_c00125{bottom:1173.315000px;}
.y28_c00125{bottom:1174.170000px;}
.y2b_c00125{bottom:1175.910000px;}
.y27_c00125{bottom:1176.765000px;}
.y2a_c00125{bottom:1180.230000px;}
.y29_c00125{bottom:1181.085000px;}
.y25_c00125{bottom:1181.955000px;}
.y24_c00125{bottom:1197.510000px;}
.y1f_c00125{bottom:1199.235000px;}
.y21_c00125{bottom:1200.960000px;}
.y23_c00125{bottom:1202.685000px;}
.y22_c00125{bottom:1205.280000px;}
.y20_c00125{bottom:1206.150000px;}
.y1e_c00125{bottom:1219.110000px;}
.y1d_c00125{bottom:1223.430000px;}
.y19_c00125{bottom:1227.750000px;}
.y1c_c00125{bottom:1229.475000px;}
.y1a_c00125{bottom:1231.200000px;}
.y1b_c00125{bottom:1232.070000px;}
.y17_c00125{bottom:1263.165000px;}
.y15_c00125{bottom:1266.630000px;}
.y16_c00125{bottom:1268.355000px;}
.y18_c00125{bottom:1271.805000px;}
.y14_c00125{bottom:1274.400000px;}
.y13_c00125{bottom:1283.040000px;}
.y10_c00125{bottom:1302.915000px;}
.y12_c00125{bottom:1303.770000px;}
.y11_c00125{bottom:1306.365000px;}
.yf_c00125{bottom:1327.965000px;}
.ye_c00125{bottom:1331.430000px;}
.yd_c00125{bottom:1333.155000px;}
.yc_c00125{bottom:1334.010000px;}
.ya_c00125{bottom:1334.880000px;}
.yb_c00125{bottom:1335.750000px;}
.y7_c00125{bottom:1379.805000px;}
.y6_c00125{bottom:1384.995000px;}
.y5_c00125{bottom:1397.955000px;}
.y2_c00125{bottom:1421.280000px;}
.y3_c00125{bottom:1422.150000px;}
.y1_c00125{bottom:1423.005000px;}
.y4_c00125{bottom:1424.730000px;}
.h4_c00125{height:3.110063px;}
.h5_c00125{height:5.399414px;}
.h2_c00125{height:6.209326px;}
.h1e_c00125{height:9.340986px;}
.h6_c00125{height:12.418652px;}
.h3_c00125{height:15.550313px;}
.h21_c00125{height:18.681973px;}
.h22_c00125{height:21.759639px;}
.h13_c00125{height:24.891299px;}
.h10_c00125{height:27.968965px;}
.h8_c00125{height:31.100625px;}
.h14_c00125{height:34.232285px;}
.h1a_c00125{height:37.309951px;}
.h1f_c00125{height:40.441611px;}
.h25_c00125{height:43.519277px;}
.h15_c00125{height:46.650937px;}
.h1c_c00125{height:49.782598px;}
.h20_c00125{height:52.860264px;}
.ha_c00125{height:55.991924px;}
.h7_c00125{height:59.069590px;}
.h16_c00125{height:62.201250px;}
.hb_c00125{height:65.332910px;}
.h17_c00125{height:68.410576px;}
.h9_c00125{height:71.542236px;}
.hc_c00125{height:74.619902px;}
.h1d_c00125{height:77.751563px;}
.h19_c00125{height:80.883223px;}
.h11_c00125{height:83.960889px;}
.h12_c00125{height:87.092549px;}
.hf_c00125{height:90.170215px;}
.h1b_c00125{height:93.301875px;}
.he_c00125{height:96.433535px;}
.hd_c00125{height:99.511201px;}
.h18_c00125{height:102.642861px;}
.h24_c00125{height:105.720527px;}
.h23_c00125{height:115.061514px;}
.h1_c00125{height:1503.000000px;}
.h0_c00125{height:1503.360000px;}
.w0_c00125{width:1088.640000px;}
.w1_c00125{width:1089.000000px;}
.x0_c00125{left:0.000000px;}
.x1_c00125{left:38.880000px;}
.x2_c00125{left:49.245000px;}
.x3_c00125{left:62.205000px;}
.x4_c00125{left:76.890000px;}
.xf9_c00125{left:126.150000px;}
.xfa_c00125{left:134.790000px;}
.xfb_c00125{left:145.155000px;}
.x9_c00125{left:152.925000px;}
.xa_c00125{left:162.435000px;}
.x98_c00125{left:221.190000px;}
.xa5_c00125{left:223.770000px;}
.x8e_c00125{left:227.235000px;}
.xac_c00125{left:228.960000px;}
.xee_c00125{left:230.685000px;}
.xb_c00125{left:233.280000px;}
.x69_c00125{left:235.875000px;}
.x50_c00125{left:237.600000px;}
.x32_c00125{left:239.325000px;}
.x1c_c00125{left:241.920000px;}
.xdb_c00125{left:247.965000px;}
.x3d_c00125{left:252.285000px;}
.xa0_c00125{left:254.880000px;}
.x33_c00125{left:256.605000px;}
.x89_c00125{left:259.200000px;}
.x45_c00125{left:260.925000px;}
.x10_c00125{left:268.710000px;}
.xdf_c00125{left:273.885000px;}
.xa1_c00125{left:275.610000px;}
.x6e_c00125{left:277.350000px;}
.x83_c00125{left:279.075000px;}
.xe5_c00125{left:280.800000px;}
.xd7_c00125{left:282.525000px;}
.x8f_c00125{left:285.120000px;}
.xb9_c00125{left:288.570000px;}
.xf5_c00125{left:290.310000px;}
.x72_c00125{left:294.630000px;}
.x4b_c00125{left:298.950000px;}
.x62_c00125{left:300.675000px;}
.xb3_c00125{left:302.400000px;}
.xc9_c00125{left:306.720000px;}
.x59_c00125{left:311.040000px;}
.xdc_c00125{left:313.635000px;}
.x34_c00125{left:315.360000px;}
.x90_c00125{left:317.955000px;}
.x46_c00125{left:320.550000px;}
.x84_c00125{left:322.275000px;}
.x54_c00125{left:324.000000px;}
.xb4_c00125{left:327.450000px;}
.xca_c00125{left:330.045000px;}
.xe1_c00125{left:331.770000px;}
.x77_c00125{left:333.510000px;}
.x51_c00125{left:336.960000px;}
.x99_c00125{left:341.280000px;}
.xc_c00125{left:343.005000px;}
.xad_c00125{left:345.600000px;}
.x35_c00125{left:349.920000px;}
.x1d_c00125{left:351.645000px;}
.x63_c00125{left:356.835000px;}
.x6f_c00125{left:360.285000px;}
.x5a_c00125{left:362.010000px;}
.xe2_c00125{left:363.750000px;}
.x73_c00125{left:367.200000px;}
.x78_c00125{left:369.795000px;}
.x36_c00125{left:372.390000px;}
.xe6_c00125{left:374.115000px;}
.x4c_c00125{left:375.840000px;}
.x9a_c00125{left:384.480000px;}
.x15_c00125{left:387.075000px;}
.x47_c00125{left:389.670000px;}
.x18_c00125{left:393.990000px;}
.x55_c00125{left:395.715000px;}
.xd_c00125{left:400.890000px;}
.x2b_c00125{left:403.485000px;}
.x6a_c00125{left:406.080000px;}
.x91_c00125{left:412.125000px;}
.x23_c00125{left:415.590000px;}
.x70_c00125{left:418.170000px;}
.xbb_c00125{left:419.910000px;}
.xa2_c00125{left:421.635000px;}
.xef_c00125{left:425.085000px;}
.x74_c00125{left:428.550000px;}
.x11_c00125{left:430.275000px;}
.x19_c00125{left:433.725000px;}
.x8a_c00125{left:436.320000px;}
.x79_c00125{left:438.045000px;}
.x24_c00125{left:439.770000px;}
.xb7_c00125{left:441.510000px;}
.x1a_c00125{left:444.090000px;}
.x16_c00125{left:449.280000px;}
.x92_c00125{left:456.195000px;}
.x1e_c00125{left:457.920000px;}
.xbc_c00125{left:460.515000px;}
.xd8_c00125{left:462.240000px;}
.x37_c00125{left:464.835000px;}
.xd3_c00125{left:466.560000px;}
.x8b_c00125{left:470.010000px;}
.x3e_c00125{left:473.475000px;}
.x12_c00125{left:476.925000px;}
.xe7_c00125{left:483.840000px;}
.xae_c00125{left:489.885000px;}
.x25_c00125{left:494.205000px;}
.x64_c00125{left:496.800000px;}
.x48_c00125{left:498.525000px;}
.x1f_c00125{left:501.120000px;}
.x3f_c00125{left:507.165000px;}
.x2c_c00125{left:509.760000px;}
.x56_c00125{left:512.355000px;}
.x75_c00125{left:514.080000px;}
.x9b_c00125{left:516.675000px;}
.x17_c00125{left:518.400000px;}
.x65_c00125{left:520.995000px;}
.x93_c00125{left:522.720000px;}
.x38_c00125{left:525.315000px;}
.xc1_c00125{left:527.040000px;}
.x7a_c00125{left:528.765000px;}
.xdd_c00125{left:530.490000px;}
.x6b_c00125{left:532.230000px;}
.xe3_c00125{left:533.955000px;}
.x26_c00125{left:536.550000px;}
.x80_c00125{left:538.275000px;}
.xe8_c00125{left:540.000000px;}
.x4d_c00125{left:551.235000px;}
.xbd_c00125{left:557.280000px;}
.x1b_c00125{left:559.005000px;}
.xaa_c00125{left:560.730000px;}
.x5b_c00125{left:563.325000px;}
.x6c_c00125{left:571.965000px;}
.x27_c00125{left:573.690000px;}
.x94_c00125{left:575.430000px;}
.x5c_c00125{left:579.750000px;}
.x85_c00125{left:583.200000px;}
.x2d_c00125{left:586.650000px;}
.x52_c00125{left:595.290000px;}
.xaf_c00125{left:597.885000px;}
.x4e_c00125{left:600.480000px;}
.xe_c00125{left:603.075000px;}
.xc2_c00125{left:604.800000px;}
.x95_c00125{left:609.120000px;}
.xcb_c00125{left:612.570000px;}
.xf6_c00125{left:614.310000px;}
.x20_c00125{left:616.890000px;}
.x57_c00125{left:618.630000px;}
.x9c_c00125{left:622.080000px;}
.xc3_c00125{left:623.805000px;}
.x40_c00125{left:626.400000px;}
.x8c_c00125{left:628.995000px;}
.x39_c00125{left:630.720000px;}
.xbe_c00125{left:632.445000px;}
.x81_c00125{left:635.910000px;}
.x13_c00125{left:639.360000px;}
.xb0_c00125{left:641.085000px;}
.x5d_c00125{left:644.550000px;}
.x2e_c00125{left:647.130000px;}
.x9d_c00125{left:648.870000px;}
.x3a_c00125{left:650.595000px;}
.x4f_c00125{left:654.045000px;}
.xa3_c00125{left:655.770000px;}
.xd4_c00125{left:657.510000px;}
.x5e_c00125{left:659.235000px;}
.x14_c00125{left:663.555000px;}
.x86_c00125{left:665.280000px;}
.x2f_c00125{left:667.005000px;}
.xc7_c00125{left:673.920000px;}
.x66_c00125{left:675.645000px;}
.x21_c00125{left:677.370000px;}
.xf0_c00125{left:679.110000px;}
.x41_c00125{left:680.835000px;}
.x49_c00125{left:683.430000px;}
.x6d_c00125{left:686.010000px;}
.xd9_c00125{left:687.750000px;}
.xa4_c00125{left:690.330000px;}
.x7b_c00125{left:692.925000px;}
.x58_c00125{left:695.520000px;}
.x4a_c00125{left:698.970000px;}
.xa6_c00125{left:705.885000px;}
.x5f_c00125{left:707.610000px;}
.x67_c00125{left:711.075000px;}
.x7c_c00125{left:714.525000px;}
.xe9_c00125{left:716.250000px;}
.xb1_c00125{left:722.310000px;}
.x8d_c00125{left:724.035000px;}
.x28_c00125{left:725.760000px;}
.x87_c00125{left:727.485000px;}
.x30_c00125{left:729.210000px;}
.x96_c00125{left:732.675000px;}
.x76_c00125{left:735.270000px;}
.xf_c00125{left:736.995000px;}
.x9e_c00125{left:740.445000px;}
.xf1_c00125{left:743.040000px;}
.xbf_c00125{left:744.765000px;}
.x60_c00125{left:748.230960px;}
.xde_c00125{left:749.955000px;}
.x53_c00125{left:754.275000px;}
.x29_c00125{left:757.725000px;}
.x22_c00125{left:760.320000px;}
.xd5_c00125{left:762.915000px;}
.xcc_c00125{left:764.640000px;}
.x88_c00125{left:767.235000px;}
.xf7_c00125{left:768.960000px;}
.x7d_c00125{left:770.685000px;}
.x82_c00125{left:776.730000px;}
.x42_c00125{left:780.195000px;}
.xc4_c00125{left:781.920000px;}
.xa7_c00125{left:786.240000px;}
.x3b_c00125{left:793.155000px;}
.xba_c00125{left:794.880000px;}
.xb5_c00125{left:797.475000px;}
.xe4_c00125{left:800.070000px;}
.xeb_c00125{left:801.795000px;}
.xda_c00125{left:803.520000px;}
.xf2_c00125{left:805.245000px;}
.x5_c00125{left:812.160000px;}
.xcd_c00125{left:813.885000px;}
.xa8_c00125{left:819.930000px;}
.x43_c00125{left:827.715000px;}
.x6_c00125{left:831.165000px;}
.x7_c00125{left:832.890000px;}
.x7e_c00125{left:836.355000px;}
.x71_c00125{left:838.080000px;}
.xc0_c00125{left:839.805000px;}
.xb8_c00125{left:842.400000px;}
.x97_c00125{left:846.720000px;}
.x3c_c00125{left:849.315000px;}
.xb2_c00125{left:851.910000px;}
.x8_c00125{left:854.490000px;}
.x44_c00125{left:859.680000px;}
.xab_c00125{left:864.000000px;}
.xe0_c00125{left:867.450000px;}
.x2a_c00125{left:870.045000px;}
.x61_c00125{left:871.770000px;}
.xa9_c00125{left:874.365000px;}
.xb6_c00125{left:876.090000px;}
.xec_c00125{left:879.555000px;}
.xf3_c00125{left:883.005000px;}
.x7f_c00125{left:884.730000px;}
.xed_c00125{left:888.195000px;}
.x9f_c00125{left:890.790000px;}
.xf4_c00125{left:894.240000px;}
.xea_c00125{left:896.835000px;}
.xd1_c00125{left:901.155000px;}
.x68_c00125{left:902.880000px;}
.x31_c00125{left:908.070000px;}
.xce_c00125{left:910.650000px;}
.xd6_c00125{left:914.115000px;}
.xcf_c00125{left:921.885000px;}
.xc5_c00125{left:928.800000px;}
.xd0_c00125{left:941.760000px;}
.xc8_c00125{left:954.720000px;}
.xf8_c00125{left:956.445000px;}
.xd2_c00125{left:981.510000px;}
.xc6_c00125{left:989.280000px;}
@media print{
.v1_c00125{vertical-align:-3.093333pt;}
.v0_c00125{vertical-align:0.000000pt;}
.ls1_c00125{letter-spacing:0.000000pt;}
.ls0_c00125{letter-spacing:100.445056pt;}
.ws1_c00125{word-spacing:0.000000pt;}
.ws0_c00125{word-spacing:74.634667pt;}
.fs2_c00125{font-size:3.072000pt;}
.fs3_c00125{font-size:5.333333pt;}
.fs0_c00125{font-size:6.133333pt;}
.fs1c_c00125{font-size:9.226667pt;}
.fs4_c00125{font-size:12.266667pt;}
.fs1_c00125{font-size:15.360000pt;}
.fs1f_c00125{font-size:18.453333pt;}
.fs20_c00125{font-size:21.493333pt;}
.fs11_c00125{font-size:24.586667pt;}
.fse_c00125{font-size:27.626667pt;}
.fs6_c00125{font-size:30.720000pt;}
.fs12_c00125{font-size:33.813333pt;}
.fs18_c00125{font-size:36.853333pt;}
.fs1d_c00125{font-size:39.946667pt;}
.fs23_c00125{font-size:42.986667pt;}
.fs13_c00125{font-size:46.080000pt;}
.fs1a_c00125{font-size:49.173333pt;}
.fs1e_c00125{font-size:52.213333pt;}
.fs8_c00125{font-size:55.306667pt;}
.fs5_c00125{font-size:58.346667pt;}
.fs14_c00125{font-size:61.440000pt;}
.fs9_c00125{font-size:64.533333pt;}
.fs15_c00125{font-size:67.573333pt;}
.fs7_c00125{font-size:70.666667pt;}
.fsa_c00125{font-size:73.706667pt;}
.fs1b_c00125{font-size:76.800000pt;}
.fs17_c00125{font-size:79.893333pt;}
.fsf_c00125{font-size:82.933333pt;}
.fs10_c00125{font-size:86.026667pt;}
.fsd_c00125{font-size:89.066667pt;}
.fs19_c00125{font-size:92.160000pt;}
.fsc_c00125{font-size:95.253333pt;}
.fsb_c00125{font-size:98.293333pt;}
.fs16_c00125{font-size:101.386667pt;}
.fs22_c00125{font-size:104.426667pt;}
.fs21_c00125{font-size:113.653333pt;}
.y0_c00125{bottom:0.000000pt;}
.y152_c00125{bottom:195.840000pt;}
.y151_c00125{bottom:197.373333pt;}
.y14f_c00125{bottom:199.680000pt;}
.y14a_c00125{bottom:201.213333pt;}
.y14b_c00125{bottom:202.746667pt;}
.y150_c00125{bottom:203.520000pt;}
.y14c_c00125{bottom:207.360000pt;}
.y14e_c00125{bottom:208.893333pt;}
.y14d_c00125{bottom:209.666667pt;}
.y149_c00125{bottom:212.733333pt;}
.y146_c00125{bottom:215.040000pt;}
.y147_c00125{bottom:215.813333pt;}
.y144_c00125{bottom:218.880000pt;}
.y148_c00125{bottom:219.653333pt;}
.y145_c00125{bottom:221.946667pt;}
.y13e_c00125{bottom:238.080000pt;}
.y13d_c00125{bottom:239.613333pt;}
.y13b_c00125{bottom:240.386667pt;}
.y13c_c00125{bottom:241.920000pt;}
.y140_c00125{bottom:244.226667pt;}
.y13f_c00125{bottom:244.986667pt;}
.y141_c00125{bottom:246.533333pt;}
.y143_c00125{bottom:254.973333pt;}
.y142_c00125{bottom:256.506667pt;}
.y136_c00125{bottom:260.346667pt;}
.y133_c00125{bottom:261.120000pt;}
.y137_c00125{bottom:262.653333pt;}
.y135_c00125{bottom:263.426667pt;}
.y132_c00125{bottom:265.733333pt;}
.y134_c00125{bottom:266.493333pt;}
.y13a_c00125{bottom:270.333333pt;}
.y138_c00125{bottom:279.546667pt;}
.y139_c00125{bottom:280.320000pt;}
.y12f_c00125{bottom:282.626667pt;}
.y131_c00125{bottom:283.386667pt;}
.y12e_c00125{bottom:284.160000pt;}
.y12a_c00125{bottom:284.933333pt;}
.y127_c00125{bottom:286.466667pt;}
.y12c_c00125{bottom:287.226667pt;}
.y128_c00125{bottom:288.000000pt;}
.y12d_c00125{bottom:288.773333pt;}
.y130_c00125{bottom:289.533333pt;}
.y12b_c00125{bottom:291.066667pt;}
.y129_c00125{bottom:291.840000pt;}
.y125_c00125{bottom:301.826667pt;}
.y126_c00125{bottom:303.360000pt;}
.y124_c00125{bottom:305.666667pt;}
.y122_c00125{bottom:306.426667pt;}
.y123_c00125{bottom:307.973333pt;}
.y120_c00125{bottom:326.400000pt;}
.y11f_c00125{bottom:327.933333pt;}
.y121_c00125{bottom:328.706667pt;}
.y11c_c00125{bottom:330.240000pt;}
.y11e_c00125{bottom:334.080000pt;}
.y11d_c00125{bottom:336.386667pt;}
.y11b_c00125{bottom:337.146667pt;}
.y9_c00125{bottom:342.533333pt;}
.y8_c00125{bottom:346.373333pt;}
.y118_c00125{bottom:350.973333pt;}
.y115_c00125{bottom:353.280000pt;}
.y119_c00125{bottom:354.053333pt;}
.y11a_c00125{bottom:355.586667pt;}
.y117_c00125{bottom:358.653333pt;}
.y116_c00125{bottom:359.426667pt;}
.y114_c00125{bottom:360.186667pt;}
.y111_c00125{bottom:373.253333pt;}
.y112_c00125{bottom:378.626667pt;}
.y10f_c00125{bottom:380.160000pt;}
.y110_c00125{bottom:381.693333pt;}
.y113_c00125{bottom:390.146667pt;}
.y10b_c00125{bottom:393.986667pt;}
.y109_c00125{bottom:395.520000pt;}
.y105_c00125{bottom:397.826667pt;}
.y10c_c00125{bottom:398.586667pt;}
.y108_c00125{bottom:399.360000pt;}
.y10d_c00125{bottom:400.893333pt;}
.y10a_c00125{bottom:401.666667pt;}
.y106_c00125{bottom:402.426667pt;}
.y107_c00125{bottom:403.200000pt;}
.y10e_c00125{bottom:413.946667pt;}
.y102_c00125{bottom:416.253333pt;}
.yfd_c00125{bottom:419.333333pt;}
.y100_c00125{bottom:420.866667pt;}
.y101_c00125{bottom:423.173333pt;}
.yff_c00125{bottom:425.466667pt;}
.yfe_c00125{bottom:426.240000pt;}
.y154_c00125{bottom:428.546667pt;}
.y153_c00125{bottom:430.853333pt;}
.y104_c00125{bottom:433.920000pt;}
.y103_c00125{bottom:434.693333pt;}
.yfc_c00125{bottom:437.760000pt;}
.yfb_c00125{bottom:438.533333pt;}
.yf8_c00125{bottom:439.293333pt;}
.yf9_c00125{bottom:440.066667pt;}
.yf6_c00125{bottom:440.826667pt;}
.yf4_c00125{bottom:441.600000pt;}
.yf7_c00125{bottom:443.133333pt;}
.yfa_c00125{bottom:445.440000pt;}
.yf5_c00125{bottom:447.746667pt;}
.yf1_c00125{bottom:462.333333pt;}
.yf3_c00125{bottom:463.106667pt;}
.yf2_c00125{bottom:463.866667pt;}
.yee_c00125{bottom:464.640000pt;}
.yf0_c00125{bottom:466.173333pt;}
.yef_c00125{bottom:466.946667pt;}
.yeb_c00125{bottom:467.706667pt;}
.yed_c00125{bottom:468.480000pt;}
.ye9_c00125{bottom:469.253333pt;}
.yec_c00125{bottom:470.013333pt;}
.yea_c00125{bottom:470.786667pt;}
.ye7_c00125{bottom:484.613333pt;}
.ye2_c00125{bottom:486.146667pt;}
.ye6_c00125{bottom:486.906667pt;}
.ye0_c00125{bottom:487.680000pt;}
.ye1_c00125{bottom:489.213333pt;}
.ye5_c00125{bottom:489.986667pt;}
.ye8_c00125{bottom:490.746667pt;}
.ye3_c00125{bottom:493.053333pt;}
.ye4_c00125{bottom:493.826667pt;}
.ydf_c00125{bottom:506.106667pt;}
.yde_c00125{bottom:506.880000pt;}
.ydd_c00125{bottom:507.653333pt;}
.yda_c00125{bottom:509.186667pt;}
.yd8_c00125{bottom:510.720000pt;}
.yd9_c00125{bottom:513.026667pt;}
.ydb_c00125{bottom:513.786667pt;}
.ydc_c00125{bottom:515.333333pt;}
.yd6_c00125{bottom:530.693333pt;}
.yd3_c00125{bottom:531.453333pt;}
.yd5_c00125{bottom:533.760000pt;}
.yd7_c00125{bottom:534.533333pt;}
.yd2_c00125{bottom:538.373333pt;}
.yd4_c00125{bottom:539.133333pt;}
.yd0_c00125{bottom:551.426667pt;}
.yd1_c00125{bottom:556.026667pt;}
.ycf_c00125{bottom:559.106667pt;}
.yce_c00125{bottom:559.866667pt;}
.ycd_c00125{bottom:560.640000pt;}
.ycc_c00125{bottom:572.933333pt;}
.ycb_c00125{bottom:574.466667pt;}
.yca_c00125{bottom:576.773333pt;}
.yc8_c00125{bottom:577.533333pt;}
.yc6_c00125{bottom:579.840000pt;}
.yc9_c00125{bottom:582.906667pt;}
.yc7_c00125{bottom:583.680000pt;}
.yc5_c00125{bottom:595.200000pt;}
.yc3_c00125{bottom:595.973333pt;}
.yc2_c00125{bottom:596.733333pt;}
.yc4_c00125{bottom:601.346667pt;}
.yc1_c00125{bottom:602.880000pt;}
.yc0_c00125{bottom:604.413333pt;}
.ybe_c00125{bottom:616.706667pt;}
.yba_c00125{bottom:618.240000pt;}
.yb9_c00125{bottom:619.013333pt;}
.ybb_c00125{bottom:619.773333pt;}
.ybc_c00125{bottom:620.546667pt;}
.ybd_c00125{bottom:625.146667pt;}
.yb7_c00125{bottom:625.920000pt;}
.ybf_c00125{bottom:626.693333pt;}
.yb8_c00125{bottom:627.453333pt;}
.yb6_c00125{bottom:628.986667pt;}
.yb2_c00125{bottom:642.813333pt;}
.yb4_c00125{bottom:644.346667pt;}
.yae_c00125{bottom:645.120000pt;}
.yb5_c00125{bottom:645.893333pt;}
.yb1_c00125{bottom:646.653333pt;}
.yb3_c00125{bottom:647.426667pt;}
.yaf_c00125{bottom:648.186667pt;}
.yb0_c00125{bottom:648.960000pt;}
.yad_c00125{bottom:661.253333pt;}
.yac_c00125{bottom:662.013333pt;}
.yaa_c00125{bottom:662.786667pt;}
.ya9_c00125{bottom:663.546667pt;}
.ya7_c00125{bottom:664.320000pt;}
.ya8_c00125{bottom:668.160000pt;}
.yab_c00125{bottom:668.933333pt;}
.ya6_c00125{bottom:671.226667pt;}
.ya5_c00125{bottom:678.146667pt;}
.ya3_c00125{bottom:683.520000pt;}
.ya4_c00125{bottom:685.053333pt;}
.ya1_c00125{bottom:685.826667pt;}
.y9e_c00125{bottom:686.586667pt;}
.y9f_c00125{bottom:687.360000pt;}
.ya2_c00125{bottom:690.426667pt;}
.y9d_c00125{bottom:691.973333pt;}
.ya0_c00125{bottom:692.733333pt;}
.y9b_c00125{bottom:705.026667pt;}
.y9a_c00125{bottom:705.786667pt;}
.y9c_c00125{bottom:707.333333pt;}
.y96_c00125{bottom:708.093333pt;}
.y98_c00125{bottom:711.933333pt;}
.y99_c00125{bottom:712.706667pt;}
.y97_c00125{bottom:713.466667pt;}
.y94_c00125{bottom:724.986667pt;}
.y95_c00125{bottom:726.533333pt;}
.y92_c00125{bottom:728.066667pt;}
.y91_c00125{bottom:728.826667pt;}
.y8e_c00125{bottom:729.600000pt;}
.y93_c00125{bottom:731.906667pt;}
.y8f_c00125{bottom:732.666667pt;}
.y90_c00125{bottom:734.973333pt;}
.y8d_c00125{bottom:736.506667pt;}
.y8c_c00125{bottom:737.280000pt;}
.y8b_c00125{bottom:748.026667pt;}
.y86_c00125{bottom:751.106667pt;}
.y8a_c00125{bottom:754.946667pt;}
.y89_c00125{bottom:755.706667pt;}
.y87_c00125{bottom:757.253333pt;}
.y88_c00125{bottom:758.013333pt;}
.y85_c00125{bottom:758.786667pt;}
.y83_c00125{bottom:771.066667pt;}
.y80_c00125{bottom:772.613333pt;}
.y7e_c00125{bottom:774.146667pt;}
.y7c_c00125{bottom:774.906667pt;}
.y81_c00125{bottom:775.680000pt;}
.y7d_c00125{bottom:777.986667pt;}
.y82_c00125{bottom:778.746667pt;}
.y7f_c00125{bottom:781.053333pt;}
.y7b_c00125{bottom:781.826667pt;}
.y84_c00125{bottom:785.666667pt;}
.y7a_c00125{bottom:792.573333pt;}
.y75_c00125{bottom:797.186667pt;}
.y74_c00125{bottom:798.720000pt;}
.y79_c00125{bottom:801.026667pt;}
.y78_c00125{bottom:801.786667pt;}
.y77_c00125{bottom:802.560000pt;}
.y76_c00125{bottom:803.333333pt;}
.y72_c00125{bottom:812.546667pt;}
.y71_c00125{bottom:814.853333pt;}
.y6f_c00125{bottom:815.613333pt;}
.y70_c00125{bottom:822.533333pt;}
.y73_c00125{bottom:823.293333pt;}
.y6e_c00125{bottom:826.373333pt;}
.y6c_c00125{bottom:839.426667pt;}
.y6d_c00125{bottom:840.186667pt;}
.y68_c00125{bottom:840.960000pt;}
.y67_c00125{bottom:841.733333pt;}
.y6b_c00125{bottom:846.333333pt;}
.y6a_c00125{bottom:847.106667pt;}
.y69_c00125{bottom:847.866667pt;}
.y65_c00125{bottom:863.226667pt;}
.y63_c00125{bottom:864.000000pt;}
.y66_c00125{bottom:868.613333pt;}
.y64_c00125{bottom:870.146667pt;}
.y62_c00125{bottom:870.906667pt;}
.y5f_c00125{bottom:884.733333pt;}
.y5d_c00125{bottom:885.506667pt;}
.y57_c00125{bottom:887.040000pt;}
.y59_c00125{bottom:888.573333pt;}
.y61_c00125{bottom:889.346667pt;}
.y58_c00125{bottom:892.413333pt;}
.y5e_c00125{bottom:893.186667pt;}
.y60_c00125{bottom:893.946667pt;}
.y5a_c00125{bottom:896.253333pt;}
.y5b_c00125{bottom:903.173333pt;}
.y5c_c00125{bottom:904.706667pt;}
.y54_c00125{bottom:906.240000pt;}
.y55_c00125{bottom:907.013333pt;}
.y52_c00125{bottom:908.546667pt;}
.y56_c00125{bottom:909.306667pt;}
.y51_c00125{bottom:912.386667pt;}
.y50_c00125{bottom:913.920000pt;}
.y53_c00125{bottom:914.693333pt;}
.y4f_c00125{bottom:928.506667pt;}
.y4e_c00125{bottom:930.053333pt;}
.y4d_c00125{bottom:935.426667pt;}
.y4a_c00125{bottom:951.546667pt;}
.y48_c00125{bottom:952.320000pt;}
.y4b_c00125{bottom:953.853333pt;}
.y4c_c00125{bottom:955.386667pt;}
.y46_c00125{bottom:956.160000pt;}
.y49_c00125{bottom:956.933333pt;}
.y47_c00125{bottom:960.000000pt;}
.y45_c00125{bottom:974.586667pt;}
.y42_c00125{bottom:975.360000pt;}
.y40_c00125{bottom:976.133333pt;}
.y43_c00125{bottom:977.666667pt;}
.y41_c00125{bottom:979.200000pt;}
.y44_c00125{bottom:981.506667pt;}
.y3f_c00125{bottom:983.040000pt;}
.y3e_c00125{bottom:996.093333pt;}
.y3a_c00125{bottom:997.626667pt;}
.y38_c00125{bottom:998.400000pt;}
.y39_c00125{bottom:1000.706667pt;}
.y3b_c00125{bottom:1001.466667pt;}
.y3d_c00125{bottom:1003.013333pt;}
.y3c_c00125{bottom:1004.546667pt;}
.y37_c00125{bottom:1016.826667pt;}
.y33_c00125{bottom:1019.906667pt;}
.y2e_c00125{bottom:1020.666667pt;}
.y32_c00125{bottom:1021.440000pt;}
.y2f_c00125{bottom:1022.973333pt;}
.y36_c00125{bottom:1023.746667pt;}
.y2d_c00125{bottom:1024.506667pt;}
.y34_c00125{bottom:1026.053333pt;}
.y35_c00125{bottom:1026.813333pt;}
.y31_c00125{bottom:1027.586667pt;}
.y30_c00125{bottom:1028.346667pt;}
.y2c_c00125{bottom:1042.173333pt;}
.y26_c00125{bottom:1042.946667pt;}
.y28_c00125{bottom:1043.706667pt;}
.y2b_c00125{bottom:1045.253333pt;}
.y27_c00125{bottom:1046.013333pt;}
.y2a_c00125{bottom:1049.093333pt;}
.y29_c00125{bottom:1049.853333pt;}
.y25_c00125{bottom:1050.626667pt;}
.y24_c00125{bottom:1064.453333pt;}
.y1f_c00125{bottom:1065.986667pt;}
.y21_c00125{bottom:1067.520000pt;}
.y23_c00125{bottom:1069.053333pt;}
.y22_c00125{bottom:1071.360000pt;}
.y20_c00125{bottom:1072.133333pt;}
.y1e_c00125{bottom:1083.653333pt;}
.y1d_c00125{bottom:1087.493333pt;}
.y19_c00125{bottom:1091.333333pt;}
.y1c_c00125{bottom:1092.866667pt;}
.y1a_c00125{bottom:1094.400000pt;}
.y1b_c00125{bottom:1095.173333pt;}
.y17_c00125{bottom:1122.813333pt;}
.y15_c00125{bottom:1125.893333pt;}
.y16_c00125{bottom:1127.426667pt;}
.y18_c00125{bottom:1130.493333pt;}
.y14_c00125{bottom:1132.800000pt;}
.y13_c00125{bottom:1140.480000pt;}
.y10_c00125{bottom:1158.146667pt;}
.y12_c00125{bottom:1158.906667pt;}
.y11_c00125{bottom:1161.213333pt;}
.yf_c00125{bottom:1180.413333pt;}
.ye_c00125{bottom:1183.493333pt;}
.yd_c00125{bottom:1185.026667pt;}
.yc_c00125{bottom:1185.786667pt;}
.ya_c00125{bottom:1186.560000pt;}
.yb_c00125{bottom:1187.333333pt;}
.y7_c00125{bottom:1226.493333pt;}
.y6_c00125{bottom:1231.106667pt;}
.y5_c00125{bottom:1242.626667pt;}
.y2_c00125{bottom:1263.360000pt;}
.y3_c00125{bottom:1264.133333pt;}
.y1_c00125{bottom:1264.893333pt;}
.y4_c00125{bottom:1266.426667pt;}
.h4_c00125{height:2.764500pt;}
.h5_c00125{height:4.799479pt;}
.h2_c00125{height:5.519401pt;}
.h1e_c00125{height:8.303099pt;}
.h6_c00125{height:11.038802pt;}
.h3_c00125{height:13.822500pt;}
.h21_c00125{height:16.606198pt;}
.h22_c00125{height:19.341901pt;}
.h13_c00125{height:22.125599pt;}
.h10_c00125{height:24.861302pt;}
.h8_c00125{height:27.645000pt;}
.h14_c00125{height:30.428698pt;}
.h1a_c00125{height:33.164401pt;}
.h1f_c00125{height:35.948099pt;}
.h25_c00125{height:38.683802pt;}
.h15_c00125{height:41.467500pt;}
.h1c_c00125{height:44.251198pt;}
.h20_c00125{height:46.986901pt;}
.ha_c00125{height:49.770599pt;}
.h7_c00125{height:52.506302pt;}
.h16_c00125{height:55.290000pt;}
.hb_c00125{height:58.073698pt;}
.h17_c00125{height:60.809401pt;}
.h9_c00125{height:63.593099pt;}
.hc_c00125{height:66.328802pt;}
.h1d_c00125{height:69.112500pt;}
.h19_c00125{height:71.896198pt;}
.h11_c00125{height:74.631901pt;}
.h12_c00125{height:77.415599pt;}
.hf_c00125{height:80.151302pt;}
.h1b_c00125{height:82.935000pt;}
.he_c00125{height:85.718698pt;}
.hd_c00125{height:88.454401pt;}
.h18_c00125{height:91.238099pt;}
.h24_c00125{height:93.973802pt;}
.h23_c00125{height:102.276901pt;}
.h1_c00125{height:1336.000000pt;}
.h0_c00125{height:1336.320000pt;}
.w0_c00125{width:967.680000pt;}
.w1_c00125{width:968.000000pt;}
.x0_c00125{left:0.000000pt;}
.x1_c00125{left:34.560000pt;}
.x2_c00125{left:43.773333pt;}
.x3_c00125{left:55.293333pt;}
.x4_c00125{left:68.346667pt;}
.xf9_c00125{left:112.133333pt;}
.xfa_c00125{left:119.813333pt;}
.xfb_c00125{left:129.026667pt;}
.x9_c00125{left:135.933333pt;}
.xa_c00125{left:144.386667pt;}
.x98_c00125{left:196.613333pt;}
.xa5_c00125{left:198.906667pt;}
.x8e_c00125{left:201.986667pt;}
.xac_c00125{left:203.520000pt;}
.xee_c00125{left:205.053333pt;}
.xb_c00125{left:207.360000pt;}
.x69_c00125{left:209.666667pt;}
.x50_c00125{left:211.200000pt;}
.x32_c00125{left:212.733333pt;}
.x1c_c00125{left:215.040000pt;}
.xdb_c00125{left:220.413333pt;}
.x3d_c00125{left:224.253333pt;}
.xa0_c00125{left:226.560000pt;}
.x33_c00125{left:228.093333pt;}
.x89_c00125{left:230.400000pt;}
.x45_c00125{left:231.933333pt;}
.x10_c00125{left:238.853333pt;}
.xdf_c00125{left:243.453333pt;}
.xa1_c00125{left:244.986667pt;}
.x6e_c00125{left:246.533333pt;}
.x83_c00125{left:248.066667pt;}
.xe5_c00125{left:249.600000pt;}
.xd7_c00125{left:251.133333pt;}
.x8f_c00125{left:253.440000pt;}
.xb9_c00125{left:256.506667pt;}
.xf5_c00125{left:258.053333pt;}
.x72_c00125{left:261.893333pt;}
.x4b_c00125{left:265.733333pt;}
.x62_c00125{left:267.266667pt;}
.xb3_c00125{left:268.800000pt;}
.xc9_c00125{left:272.640000pt;}
.x59_c00125{left:276.480000pt;}
.xdc_c00125{left:278.786667pt;}
.x34_c00125{left:280.320000pt;}
.x90_c00125{left:282.626667pt;}
.x46_c00125{left:284.933333pt;}
.x84_c00125{left:286.466667pt;}
.x54_c00125{left:288.000000pt;}
.xb4_c00125{left:291.066667pt;}
.xca_c00125{left:293.373333pt;}
.xe1_c00125{left:294.906667pt;}
.x77_c00125{left:296.453333pt;}
.x51_c00125{left:299.520000pt;}
.x99_c00125{left:303.360000pt;}
.xc_c00125{left:304.893333pt;}
.xad_c00125{left:307.200000pt;}
.x35_c00125{left:311.040000pt;}
.x1d_c00125{left:312.573333pt;}
.x63_c00125{left:317.186667pt;}
.x6f_c00125{left:320.253333pt;}
.x5a_c00125{left:321.786667pt;}
.xe2_c00125{left:323.333333pt;}
.x73_c00125{left:326.400000pt;}
.x78_c00125{left:328.706667pt;}
.x36_c00125{left:331.013333pt;}
.xe6_c00125{left:332.546667pt;}
.x4c_c00125{left:334.080000pt;}
.x9a_c00125{left:341.760000pt;}
.x15_c00125{left:344.066667pt;}
.x47_c00125{left:346.373333pt;}
.x18_c00125{left:350.213333pt;}
.x55_c00125{left:351.746667pt;}
.xd_c00125{left:356.346667pt;}
.x2b_c00125{left:358.653333pt;}
.x6a_c00125{left:360.960000pt;}
.x91_c00125{left:366.333333pt;}
.x23_c00125{left:369.413333pt;}
.x70_c00125{left:371.706667pt;}
.xbb_c00125{left:373.253333pt;}
.xa2_c00125{left:374.786667pt;}
.xef_c00125{left:377.853333pt;}
.x74_c00125{left:380.933333pt;}
.x11_c00125{left:382.466667pt;}
.x19_c00125{left:385.533333pt;}
.x8a_c00125{left:387.840000pt;}
.x79_c00125{left:389.373333pt;}
.x24_c00125{left:390.906667pt;}
.xb7_c00125{left:392.453333pt;}
.x1a_c00125{left:394.746667pt;}
.x16_c00125{left:399.360000pt;}
.x92_c00125{left:405.506667pt;}
.x1e_c00125{left:407.040000pt;}
.xbc_c00125{left:409.346667pt;}
.xd8_c00125{left:410.880000pt;}
.x37_c00125{left:413.186667pt;}
.xd3_c00125{left:414.720000pt;}
.x8b_c00125{left:417.786667pt;}
.x3e_c00125{left:420.866667pt;}
.x12_c00125{left:423.933333pt;}
.xe7_c00125{left:430.080000pt;}
.xae_c00125{left:435.453333pt;}
.x25_c00125{left:439.293333pt;}
.x64_c00125{left:441.600000pt;}
.x48_c00125{left:443.133333pt;}
.x1f_c00125{left:445.440000pt;}
.x3f_c00125{left:450.813333pt;}
.x2c_c00125{left:453.120000pt;}
.x56_c00125{left:455.426667pt;}
.x75_c00125{left:456.960000pt;}
.x9b_c00125{left:459.266667pt;}
.x17_c00125{left:460.800000pt;}
.x65_c00125{left:463.106667pt;}
.x93_c00125{left:464.640000pt;}
.x38_c00125{left:466.946667pt;}
.xc1_c00125{left:468.480000pt;}
.x7a_c00125{left:470.013333pt;}
.xdd_c00125{left:471.546667pt;}
.x6b_c00125{left:473.093333pt;}
.xe3_c00125{left:474.626667pt;}
.x26_c00125{left:476.933333pt;}
.x80_c00125{left:478.466667pt;}
.xe8_c00125{left:480.000000pt;}
.x4d_c00125{left:489.986667pt;}
.xbd_c00125{left:495.360000pt;}
.x1b_c00125{left:496.893333pt;}
.xaa_c00125{left:498.426667pt;}
.x5b_c00125{left:500.733333pt;}
.x6c_c00125{left:508.413333pt;}
.x27_c00125{left:509.946667pt;}
.x94_c00125{left:511.493333pt;}
.x5c_c00125{left:515.333333pt;}
.x85_c00125{left:518.400000pt;}
.x2d_c00125{left:521.466667pt;}
.x52_c00125{left:529.146667pt;}
.xaf_c00125{left:531.453333pt;}
.x4e_c00125{left:533.760000pt;}
.xe_c00125{left:536.066667pt;}
.xc2_c00125{left:537.600000pt;}
.x95_c00125{left:541.440000pt;}
.xcb_c00125{left:544.506667pt;}
.xf6_c00125{left:546.053333pt;}
.x20_c00125{left:548.346667pt;}
.x57_c00125{left:549.893333pt;}
.x9c_c00125{left:552.960000pt;}
.xc3_c00125{left:554.493333pt;}
.x40_c00125{left:556.800000pt;}
.x8c_c00125{left:559.106667pt;}
.x39_c00125{left:560.640000pt;}
.xbe_c00125{left:562.173333pt;}
.x81_c00125{left:565.253333pt;}
.x13_c00125{left:568.320000pt;}
.xb0_c00125{left:569.853333pt;}
.x5d_c00125{left:572.933333pt;}
.x2e_c00125{left:575.226667pt;}
.x9d_c00125{left:576.773333pt;}
.x3a_c00125{left:578.306667pt;}
.x4f_c00125{left:581.373333pt;}
.xa3_c00125{left:582.906667pt;}
.xd4_c00125{left:584.453333pt;}
.x5e_c00125{left:585.986667pt;}
.x14_c00125{left:589.826667pt;}
.x86_c00125{left:591.360000pt;}
.x2f_c00125{left:592.893333pt;}
.xc7_c00125{left:599.040000pt;}
.x66_c00125{left:600.573333pt;}
.x21_c00125{left:602.106667pt;}
.xf0_c00125{left:603.653333pt;}
.x41_c00125{left:605.186667pt;}
.x49_c00125{left:607.493333pt;}
.x6d_c00125{left:609.786667pt;}
.xd9_c00125{left:611.333333pt;}
.xa4_c00125{left:613.626667pt;}
.x7b_c00125{left:615.933333pt;}
.x58_c00125{left:618.240000pt;}
.x4a_c00125{left:621.306667pt;}
.xa6_c00125{left:627.453333pt;}
.x5f_c00125{left:628.986667pt;}
.x67_c00125{left:632.066667pt;}
.x7c_c00125{left:635.133333pt;}
.xe9_c00125{left:636.666667pt;}
.xb1_c00125{left:642.053333pt;}
.x8d_c00125{left:643.586667pt;}
.x28_c00125{left:645.120000pt;}
.x87_c00125{left:646.653333pt;}
.x30_c00125{left:648.186667pt;}
.x96_c00125{left:651.266667pt;}
.x76_c00125{left:653.573333pt;}
.xf_c00125{left:655.106667pt;}
.x9e_c00125{left:658.173333pt;}
.xf1_c00125{left:660.480000pt;}
.xbf_c00125{left:662.013333pt;}
.x60_c00125{left:665.094187pt;}
.xde_c00125{left:666.626667pt;}
.x53_c00125{left:670.466667pt;}
.x29_c00125{left:673.533333pt;}
.x22_c00125{left:675.840000pt;}
.xd5_c00125{left:678.146667pt;}
.xcc_c00125{left:679.680000pt;}
.x88_c00125{left:681.986667pt;}
.xf7_c00125{left:683.520000pt;}
.x7d_c00125{left:685.053333pt;}
.x82_c00125{left:690.426667pt;}
.x42_c00125{left:693.506667pt;}
.xc4_c00125{left:695.040000pt;}
.xa7_c00125{left:698.880000pt;}
.x3b_c00125{left:705.026667pt;}
.xba_c00125{left:706.560000pt;}
.xb5_c00125{left:708.866667pt;}
.xe4_c00125{left:711.173333pt;}
.xeb_c00125{left:712.706667pt;}
.xda_c00125{left:714.240000pt;}
.xf2_c00125{left:715.773333pt;}
.x5_c00125{left:721.920000pt;}
.xcd_c00125{left:723.453333pt;}
.xa8_c00125{left:728.826667pt;}
.x43_c00125{left:735.746667pt;}
.x6_c00125{left:738.813333pt;}
.x7_c00125{left:740.346667pt;}
.x7e_c00125{left:743.426667pt;}
.x71_c00125{left:744.960000pt;}
.xc0_c00125{left:746.493333pt;}
.xb8_c00125{left:748.800000pt;}
.x97_c00125{left:752.640000pt;}
.x3c_c00125{left:754.946667pt;}
.xb2_c00125{left:757.253333pt;}
.x8_c00125{left:759.546667pt;}
.x44_c00125{left:764.160000pt;}
.xab_c00125{left:768.000000pt;}
.xe0_c00125{left:771.066667pt;}
.x2a_c00125{left:773.373333pt;}
.x61_c00125{left:774.906667pt;}
.xa9_c00125{left:777.213333pt;}
.xb6_c00125{left:778.746667pt;}
.xec_c00125{left:781.826667pt;}
.xf3_c00125{left:784.893333pt;}
.x7f_c00125{left:786.426667pt;}
.xed_c00125{left:789.506667pt;}
.x9f_c00125{left:791.813333pt;}
.xf4_c00125{left:794.880000pt;}
.xea_c00125{left:797.186667pt;}
.xd1_c00125{left:801.026667pt;}
.x68_c00125{left:802.560000pt;}
.x31_c00125{left:807.173333pt;}
.xce_c00125{left:809.466667pt;}
.xd6_c00125{left:812.546667pt;}
.xcf_c00125{left:819.453333pt;}
.xc5_c00125{left:825.600000pt;}
.xd0_c00125{left:837.120000pt;}
.xc8_c00125{left:848.640000pt;}
.xf8_c00125{left:850.173333pt;}
.xd2_c00125{left:872.453333pt;}
.xc6_c00125{left:879.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_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_db44b4efdb251c6fdbf18abe.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.109863;font-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_c00126{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m129_c00126{transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);}
.m12a_c00126{transform:matrix(0.059275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059275,0.000000,0.000000,0.250000,0,0);}
.m1_c00126{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m13d_c00126{transform:matrix(0.100925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100925,0.000000,0.000000,0.250000,0,0);}
.m10b_c00126{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00126{transform:matrix(0.125700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125700,0.000000,0.000000,0.250000,0,0);}
.m132_c00126{transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);}
.m7f_c00126{transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);}
.mfb_c00126{transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);}
.mf9_c00126{transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);}
.m7c_c00126{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mdf_c00126{transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);}
.m87_c00126{transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);}
.m1b_c00126{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m136_c00126{transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);}
.m13c_c00126{transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);}
.m102_c00126{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.m131_c00126{transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);}
.m2f_c00126{transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);}
.mfc_c00126{transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);}
.mff_c00126{transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);}
.m52_c00126{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m37_c00126{transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);}
.m45_c00126{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m13b_c00126{transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);}
.m81_c00126{transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);}
.m10f_c00126{transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);}
.m28_c00126{transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);}
.m1c_c00126{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);}
.md0_c00126{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.m13e_c00126{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00126{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m24_c00126{transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);}
.m12c_c00126{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.m134_c00126{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m21_c00126{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);}
.m49_c00126{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.m69_c00126{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.mc7_c00126{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);}
.mda_c00126{transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);}
.m3e_c00126{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.m108_c00126{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);}
.m27_c00126{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m91_c00126{transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);}
.m7b_c00126{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m2e_c00126{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.md6_c00126{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m2a_c00126{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.md7_c00126{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);}
.m72_c00126{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.m140_c00126{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.m11_c00126{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m12d_c00126{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);}
.m3a_c00126{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m11b_c00126{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mdb_c00126{transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);}
.mf2_c00126{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.me6_c00126{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m78_c00126{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m32_c00126{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);}
.m133_c00126{transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);}
.m54_c00126{transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);}
.me1_c00126{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);}
.m5b_c00126{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m142_c00126{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m122_c00126{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);}
.m9d_c00126{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m85_c00126{transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);}
.m86_c00126{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.md8_c00126{transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);}
.m83_c00126{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);}
.mea_c00126{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);}
.m63_c00126{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.mc0_c00126{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m42_c00126{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.m31_c00126{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);}
.mf5_c00126{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.me2_c00126{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.mde_c00126{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);}
.m7a_c00126{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.m135_c00126{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.ma5_c00126{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.ma1_c00126{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.me5_c00126{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);}
.m97_c00126{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);}
.m11c_c00126{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);}
.me4_c00126{transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);}
.meb_c00126{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);}
.m39_c00126{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.m22_c00126{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);}
.m12f_c00126{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.md1_c00126{transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);}
.m4e_c00126{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);}
.m10c_c00126{transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);}
.m12b_c00126{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.mec_c00126{transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);}
.m116_c00126{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00126{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);}
.m141_c00126{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.mc5_c00126{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m13_c00126{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.m93_c00126{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);}
.m11e_c00126{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);}
.m34_c00126{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.m125_c00126{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m9f_c00126{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);}
.m47_c00126{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);}
.m121_c00126{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.mca_c00126{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.m10d_c00126{transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);}
.m12e_c00126{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.mc4_c00126{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);}
.me7_c00126{transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);}
.m98_c00126{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.m64_c00126{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00126{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m120_c00126{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m95_c00126{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);}
.m118_c00126{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);}
.m138_c00126{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.mb8_c00126{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);}
.mab_c00126{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.m40_c00126{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.m2d_c00126{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);}
.md4_c00126{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m8e_c00126{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);}
.mf4_c00126{transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208225,0.000000,0.000000,0.250000,0,0);}
.m35_c00126{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.ma2_c00126{transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);}
.m1f_c00126{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);}
.mb7_c00126{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m11f_c00126{transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);}
.mc1_c00126{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);}
.m9c_c00126{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);}
.m29_c00126{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);}
.m100_c00126{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);}
.m123_c00126{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);}
.mb3_c00126{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);}
.ma8_c00126{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m94_c00126{transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);}
.me0_c00126{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.mf6_c00126{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);}
.mb4_c00126{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m107_c00126{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);}
.m41_c00126{transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);}
.mbd_c00126{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);}
.m103_c00126{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00126{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);}
.m56_c00126{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);}
.m105_c00126{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);}
.m127_c00126{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);}
.mbe_c00126{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);}
.m4d_c00126{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);}
.m71_c00126{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);}
.md5_c00126{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.m96_c00126{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);}
.mbf_c00126{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);}
.m6a_c00126{transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);}
.m11d_c00126{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.mbc_c00126{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m88_c00126{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.mef_c00126{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);}
.mf0_c00126{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m115_c00126{transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);}
.maa_c00126{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);}
.m114_c00126{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);}
.m111_c00126{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m7d_c00126{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m101_c00126{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);}
.m48_c00126{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.mac_c00126{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m110_c00126{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00126{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m2_c00126{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.m8f_c00126{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);}
.m117_c00126{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);}
.mdc_c00126{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m51_c00126{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);}
.ma7_c00126{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);}
.m3b_c00126{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);}
.m25_c00126{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);}
.m33_c00126{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);}
.m113_c00126{transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);}
.ma4_c00126{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);}
.m119_c00126{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.me9_c00126{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.md9_c00126{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);}
.m124_c00126{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);}
.m109_c00126{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);}
.m6c_c00126{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.m74_c00126{transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);}
.m8d_c00126{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.mc6_c00126{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);}
.mcd_c00126{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);}
.med_c00126{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);}
.m126_c00126{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);}
.mb0_c00126{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00126{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);}
.m79_c00126{transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);}
.m6b_c00126{transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);}
.m139_c00126{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);}
.m38_c00126{transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);}
.mad_c00126{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m106_c00126{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);}
.mf3_c00126{transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);}
.m57_c00126{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);}
.m11a_c00126{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);}
.m137_c00126{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.mbb_c00126{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);}
.mfe_c00126{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);}
.m104_c00126{transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);}
.m89_c00126{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00126{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);}
.m4a_c00126{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);}
.me3_c00126{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);}
.m92_c00126{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);}
.mfa_c00126{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);}
.m60_c00126{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);}
.m55_c00126{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);}
.m10a_c00126{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m13a_c00126{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);}
.m13f_c00126{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);}
.mb1_c00126{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);}
.mee_c00126{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.mc2_c00126{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);}
.m70_c00126{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);}
.mf1_c00126{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);}
.m10_c00126{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);}
.m4f_c00126{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m68_c00126{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);}
.mf_c00126{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);}
.mb9_c00126{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);}
.m9_c00126{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);}
.m30_c00126{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m20_c00126{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00126{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00126{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);}
.m6d_c00126{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m36_c00126{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);}
.m43_c00126{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);}
.m23_c00126{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00126{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_c00126{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m58_c00126{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00126{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);}
.m5e_c00126{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00126{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);}
.mb_c00126{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);}
.m2b_c00126{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00126{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m65_c00126{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);}
.m26_c00126{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00126{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m62_c00126{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);}
.m5a_c00126{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c00126{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00126{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00126{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m84_c00126{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00126{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00126{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00126{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m67_c00126{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m16_c00126{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00126{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);}
.m12_c00126{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00126{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00126{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);}
.m53_c00126{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c00126{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m59_c00126{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);}
.m73_c00126{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00126{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00126{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00126{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00126{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00126{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00126{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m130_c00126{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);}
.mce_c00126{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);}
.m76_c00126{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00126{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);}
.mae_c00126{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00126{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);}
.m14_c00126{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m44_c00126{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00126{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4_c00126{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00126{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.maf_c00126{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00126{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m15_c00126{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma_c00126{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m112_c00126{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.md3_c00126{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m80_c00126{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00126{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m99_c00126{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00126{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m61_c00126{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m90_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);}
.m46_c00126{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00126{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m143_c00126{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m77_c00126{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m19_c00126{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m75_c00126{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m82_c00126{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m66_c00126{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);}
.m50_c00126{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m7_c00126{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00126{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m0_c00126{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.me8_c00126{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mba_c00126{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m144_c00126{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.md2_c00126{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00126{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m5_c00126{transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00126{transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00126{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m6_c00126{transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);}
.me_c00126{transform:matrix(2.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.260000,0.000000,0.000000,0.250000,0,0);}
.m128_c00126{transform:matrix(3.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.570000,0.000000,0.000000,0.250000,0,0);}
.v1_c00126{vertical-align:-3.420000px;}
.v0_c00126{vertical-align:0.000000px;}
.ls1_c00126{letter-spacing:0.000000px;}
.ls0_c00126{letter-spacing:951.543333px;}
.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:-34.245420px;}
.ws1_c00126{word-spacing:-24.368880px;}
.ws2_c00126{word-spacing:0.000000px;}
._0_c00126{width:4.780790px;}
.fc0_c00126{color:transparent;}
.fs3_c00126{font-size:3.456000px;}
.fs4_c00126{font-size:6.000000px;}
.fs6_c00126{font-size:6.900000px;}
.fs7_c00126{font-size:10.380000px;}
.fs10_c00126{font-size:13.800000px;}
.fs1f_c00126{font-size:17.280000px;}
.fs20_c00126{font-size:20.760000px;}
.fs1d_c00126{font-size:24.180000px;}
.fs0_c00126{font-size:27.660000px;}
.fsa_c00126{font-size:31.080000px;}
.fsf_c00126{font-size:34.560000px;}
.fs19_c00126{font-size:38.040000px;}
.fs5_c00126{font-size:41.460000px;}
.fs1e_c00126{font-size:44.940000px;}
.fs11_c00126{font-size:48.360000px;}
.fs2_c00126{font-size:51.840000px;}
.fs8_c00126{font-size:55.320000px;}
.fs18_c00126{font-size:58.740000px;}
.fs13_c00126{font-size:62.220000px;}
.fse_c00126{font-size:65.640000px;}
.fsb_c00126{font-size:69.120000px;}
.fs9_c00126{font-size:72.600000px;}
.fs1_c00126{font-size:76.020000px;}
.fsd_c00126{font-size:79.500000px;}
.fsc_c00126{font-size:82.920000px;}
.fs1a_c00126{font-size:86.400000px;}
.fs1c_c00126{font-size:89.880000px;}
.fs16_c00126{font-size:93.300000px;}
.fs1b_c00126{font-size:96.780000px;}
.fs17_c00126{font-size:100.200000px;}
.fs12_c00126{font-size:103.680000px;}
.fs15_c00126{font-size:107.160000px;}
.fs21_c00126{font-size:110.580000px;}
.fs22_c00126{font-size:114.060000px;}
.fs14_c00126{font-size:120.960000px;}
.fs23_c00126{font-size:131.340000px;}
.y0_c00126{bottom:0.000000px;}
.y15b_c00126{bottom:216.000000px;}
.y15a_c00126{bottom:221.190000px;}
.y15d_c00126{bottom:222.045000px;}
.y161_c00126{bottom:222.915000px;}
.y159_c00126{bottom:223.770000px;}
.y15e_c00126{bottom:225.510000px;}
.y160_c00126{bottom:227.235000px;}
.y15f_c00126{bottom:228.960000px;}
.y15c_c00126{bottom:230.685000px;}
.y156_c00126{bottom:247.110000px;}
.y153_c00126{bottom:249.690000px;}
.y158_c00126{bottom:252.285000px;}
.y157_c00126{bottom:253.155000px;}
.y155_c00126{bottom:255.750000px;}
.y154_c00126{bottom:256.605000px;}
.y14f_c00126{bottom:271.290000px;}
.y151_c00126{bottom:272.160000px;}
.y150_c00126{bottom:273.030000px;}
.y152_c00126{bottom:278.205000px;}
.y14e_c00126{bottom:296.355000px;}
.y14c_c00126{bottom:297.210000px;}
.y14a_c00126{bottom:298.080000px;}
.y149_c00126{bottom:298.950000px;}
.y147_c00126{bottom:299.805000px;}
.y148_c00126{bottom:300.675000px;}
.y143_c00126{bottom:302.400000px;}
.y14d_c00126{bottom:304.125000px;}
.y14b_c00126{bottom:304.995000px;}
.y146_c00126{bottom:305.850000px;}
.y145_c00126{bottom:306.720000px;}
.y144_c00126{bottom:307.590000px;}
.y13d_c00126{bottom:324.870000px;}
.y141_c00126{bottom:325.725000px;}
.y13f_c00126{bottom:327.450000px;}
.y13e_c00126{bottom:336.960000px;}
.y142_c00126{bottom:339.555000px;}
.y140_c00126{bottom:341.280000px;}
.y13a_c00126{bottom:349.050000px;}
.y136_c00126{bottom:350.790000px;}
.y135_c00126{bottom:351.645000px;}
.y13c_c00126{bottom:352.515000px;}
.y13b_c00126{bottom:353.370000px;}
.y137_c00126{bottom:354.240000px;}
.y138_c00126{bottom:357.690000px;}
.y139_c00126{bottom:358.560000px;}
.y133_c00126{bottom:373.245000px;}
.y131_c00126{bottom:374.970000px;}
.y12f_c00126{bottom:375.840000px;}
.y130_c00126{bottom:376.710000px;}
.y12e_c00126{bottom:379.290000px;}
.y132_c00126{bottom:381.885000px;}
.y134_c00126{bottom:384.480000px;}
.y12c_c00126{bottom:399.165000px;}
.y12a_c00126{bottom:400.035000px;}
.y12b_c00126{bottom:400.890000px;}
.y12d_c00126{bottom:404.355000px;}
.y128_c00126{bottom:405.210000px;}
.y129_c00126{bottom:408.675000px;}
.y127_c00126{bottom:409.530000px;}
.y126_c00126{bottom:422.490000px;}
.y124_c00126{bottom:425.085000px;}
.y121_c00126{bottom:426.810000px;}
.y125_c00126{bottom:427.680000px;}
.y123_c00126{bottom:432.870000px;}
.y122_c00126{bottom:433.725000px;}
.y120_c00126{bottom:448.410000px;}
.y11f_c00126{bottom:449.280000px;}
.y11e_c00126{bottom:450.150000px;}
.y11c_c00126{bottom:452.730000px;}
.y11d_c00126{bottom:455.325000px;}
.y11a_c00126{bottom:457.050000px;}
.y11b_c00126{bottom:458.790000px;}
.y119_c00126{bottom:473.475000px;}
.y112_c00126{bottom:474.330000px;}
.y116_c00126{bottom:475.200000px;}
.y113_c00126{bottom:476.925000px;}
.y110_c00126{bottom:478.650000px;}
.y118_c00126{bottom:481.245000px;}
.y117_c00126{bottom:482.970000px;}
.y115_c00126{bottom:483.840000px;}
.y114_c00126{bottom:484.710000px;}
.y111_c00126{bottom:489.030000px;}
.y10d_c00126{bottom:501.120000px;}
.y10c_c00126{bottom:503.715000px;}
.y10f_c00126{bottom:504.570000px;}
.y10a_c00126{bottom:505.440000px;}
.y10e_c00126{bottom:507.165000px;}
.y10b_c00126{bottom:508.890000px;}
.y109_c00126{bottom:513.210000px;}
.y108_c00126{bottom:523.590000px;}
.y106_c00126{bottom:524.445000px;}
.yfe_c00126{bottom:526.170000px;}
.y103_c00126{bottom:527.040000px;}
.y101_c00126{bottom:527.910000px;}
.y104_c00126{bottom:529.635000px;}
.yff_c00126{bottom:530.490000px;}
.y107_c00126{bottom:532.230000px;}
.y105_c00126{bottom:533.085000px;}
.y100_c00126{bottom:533.955000px;}
.y102_c00126{bottom:534.810000px;}
.yfb_c00126{bottom:547.770000px;}
.yf8_c00126{bottom:548.640000px;}
.yf9_c00126{bottom:549.510000px;}
.yfa_c00126{bottom:552.090000px;}
.yfc_c00126{bottom:552.960000px;}
.yfd_c00126{bottom:556.410000px;}
.yf7_c00126{bottom:557.280000px;}
.yf6_c00126{bottom:558.150000px;}
.yf5_c00126{bottom:559.005000px;}
.yf4_c00126{bottom:559.875000px;}
.yf3_c00126{bottom:574.560000px;}
.yf1_c00126{bottom:575.430000px;}
.yef_c00126{bottom:576.285000px;}
.yec_c00126{bottom:578.880000px;}
.yf2_c00126{bottom:581.475000px;}
.yf0_c00126{bottom:583.200000px;}
.yee_c00126{bottom:584.070000px;}
.yed_c00126{bottom:584.925000px;}
.yea_c00126{bottom:599.610000px;}
.ye8_c00126{bottom:600.480000px;}
.ye6_c00126{bottom:601.350000px;}
.yeb_c00126{bottom:606.525000px;}
.ye9_c00126{bottom:607.395000px;}
.ye7_c00126{bottom:608.250000px;}
.ye5_c00126{bottom:609.120000px;}
.ye4_c00126{bottom:624.675000px;}
.ye1_c00126{bottom:626.400000px;}
.ydf_c00126{bottom:627.270000px;}
.yde_c00126{bottom:628.995000px;}
.ye3_c00126{bottom:629.850000px;}
.ye2_c00126{bottom:632.445000px;}
.ye0_c00126{bottom:634.170000px;}
.ydc_c00126{bottom:651.450000px;}
.ydb_c00126{bottom:653.190000px;}
.yda_c00126{bottom:655.770000px;}
.ydd_c00126{bottom:656.640000px;}
.yd9_c00126{bottom:657.510000px;}
.yd8_c00126{bottom:660.090000px;}
.yd6_c00126{bottom:674.790000px;}
.yd5_c00126{bottom:676.515000px;}
.yd4_c00126{bottom:677.370000px;}
.ycf_c00126{bottom:678.240000px;}
.yd7_c00126{bottom:679.110000px;}
.yd2_c00126{bottom:681.690000px;}
.yd1_c00126{bottom:682.560000px;}
.yd3_c00126{bottom:683.430000px;}
.yd0_c00126{bottom:684.285000px;}
.yce_c00126{bottom:698.115000px;}
.ycd_c00126{bottom:700.710000px;}
.ycb_c00126{bottom:701.565000px;}
.ycc_c00126{bottom:703.290000px;}
.yc8_c00126{bottom:705.885000px;}
.yca_c00126{bottom:708.480000px;}
.yc9_c00126{bottom:709.350000px;}
.yc7_c00126{bottom:710.205000px;}
.yc6_c00126{bottom:716.250000px;}
.yc3_c00126{bottom:723.165000px;}
.yc5_c00126{bottom:724.035000px;}
.yc4_c00126{bottom:724.890000px;}
.ybf_c00126{bottom:725.760000px;}
.yc0_c00126{bottom:727.485000px;}
.yc2_c00126{bottom:730.080000px;}
.yc1_c00126{bottom:733.530000px;}
.ybe_c00126{bottom:749.085000px;}
.ybd_c00126{bottom:749.955000px;}
.yb9_c00126{bottom:751.680000px;}
.yb8_c00126{bottom:752.550000px;}
.ybb_c00126{bottom:753.405000px;}
.yba_c00126{bottom:755.130000px;}
.ybc_c00126{bottom:758.595000px;}
.y169_c00126{bottom:764.640000px;}
.y16a_c00126{bottom:766.365000px;}
.yb6_c00126{bottom:775.005000px;}
.yb5_c00126{bottom:775.875000px;}
.yb7_c00126{bottom:778.470000px;}
.yb2_c00126{bottom:780.195000px;}
.yb3_c00126{bottom:781.920000px;}
.yb4_c00126{bottom:783.645000px;}
.yb0_c00126{bottom:800.070000px;}
.yb1_c00126{bottom:800.925000px;}
.yae_c00126{bottom:806.970000px;}
.yaf_c00126{bottom:807.840000px;}
.yac_c00126{bottom:824.250000px;}
.ya6_c00126{bottom:825.120000px;}
.yad_c00126{bottom:826.845000px;}
.ya5_c00126{bottom:827.715000px;}
.yab_c00126{bottom:828.570000px;}
.ya9_c00126{bottom:829.440000px;}
.ya8_c00126{bottom:831.165000px;}
.yaa_c00126{bottom:832.035000px;}
.ya7_c00126{bottom:832.890000px;}
.ya4_c00126{bottom:848.445000px;}
.ya2_c00126{bottom:850.170000px;}
.y9e_c00126{bottom:851.910000px;}
.ya0_c00126{bottom:853.635000px;}
.ya3_c00126{bottom:856.230000px;}
.ya1_c00126{bottom:857.085000px;}
.y9f_c00126{bottom:857.955000px;}
.y9d_c00126{bottom:874.365000px;}
.y99_c00126{bottom:875.235000px;}
.y9b_c00126{bottom:878.685000px;}
.y97_c00126{bottom:879.555000px;}
.y9a_c00126{bottom:881.280000px;}
.y9c_c00126{bottom:882.150000px;}
.y98_c00126{bottom:883.005000px;}
.y94_c00126{bottom:899.430000px;}
.y93_c00126{bottom:900.285000px;}
.y96_c00126{bottom:906.330000px;}
.y95_c00126{bottom:907.200000px;}
.y92_c00126{bottom:908.070000px;}
.y91_c00126{bottom:908.925000px;}
.y8e_c00126{bottom:925.350000px;}
.y8b_c00126{bottom:926.205000px;}
.y8c_c00126{bottom:929.670000px;}
.y90_c00126{bottom:931.395000px;}
.y8f_c00126{bottom:932.250000px;}
.y8d_c00126{bottom:933.120000px;}
.y89_c00126{bottom:949.530000px;}
.y88_c00126{bottom:951.270000px;}
.y8a_c00126{bottom:953.850000px;}
.y168_c00126{bottom:963.360000px;}
.y87_c00126{bottom:974.595000px;}
.y86_c00126{bottom:975.450000px;}
.y85_c00126{bottom:976.320000px;}
.y82_c00126{bottom:979.770000px;}
.y80_c00126{bottom:982.365000px;}
.y83_c00126{bottom:983.235000px;}
.y84_c00126{bottom:984.090000px;}
.y81_c00126{bottom:985.830000px;}
.y7b_c00126{bottom:1001.370000px;}
.y7d_c00126{bottom:1003.965000px;}
.y78_c00126{bottom:1004.835000px;}
.y79_c00126{bottom:1005.690000px;}
.y7c_c00126{bottom:1007.430000px;}
.y7a_c00126{bottom:1008.285000px;}
.y77_c00126{bottom:1009.155000px;}
.y7e_c00126{bottom:1010.010000px;}
.y7f_c00126{bottom:1016.070000px;}
.y76_c00126{bottom:1024.710000px;}
.y71_c00126{bottom:1025.565000px;}
.y74_c00126{bottom:1026.435000px;}
.y73_c00126{bottom:1030.755000px;}
.y75_c00126{bottom:1032.480000px;}
.y72_c00126{bottom:1033.350000px;}
.y6f_c00126{bottom:1050.630000px;}
.y6d_c00126{bottom:1051.485000px;}
.y6e_c00126{bottom:1053.210000px;}
.y6b_c00126{bottom:1057.530000px;}
.y6a_c00126{bottom:1058.400000px;}
.y6c_c00126{bottom:1059.270000px;}
.y69_c00126{bottom:1063.590000px;}
.y70_c00126{bottom:1071.360000px;}
.y68_c00126{bottom:1072.230000px;}
.y67_c00126{bottom:1073.955000px;}
.y5e_c00126{bottom:1074.810000px;}
.y60_c00126{bottom:1075.680000px;}
.y62_c00126{bottom:1080.000000px;}
.y64_c00126{bottom:1080.870000px;}
.y5f_c00126{bottom:1083.450000px;}
.y61_c00126{bottom:1084.320000px;}
.y65_c00126{bottom:1092.090000px;}
.y66_c00126{bottom:1098.150000px;}
.y63_c00126{bottom:1099.005000px;}
.y57_c00126{bottom:1101.600000px;}
.y59_c00126{bottom:1102.470000px;}
.y5d_c00126{bottom:1105.050000px;}
.y58_c00126{bottom:1105.920000px;}
.y5c_c00126{bottom:1107.645000px;}
.y5b_c00126{bottom:1108.515000px;}
.y5a_c00126{bottom:1109.370000px;}
.y55_c00126{bottom:1124.925000px;}
.y54_c00126{bottom:1125.795000px;}
.y51_c00126{bottom:1126.650000px;}
.y50_c00126{bottom:1127.520000px;}
.y52_c00126{bottom:1130.970000px;}
.y56_c00126{bottom:1131.840000px;}
.y53_c00126{bottom:1132.710000px;}
.y4f_c00126{bottom:1133.565000px;}
.y4e_c00126{bottom:1134.435000px;}
.y4d_c00126{bottom:1144.800000px;}
.y4a_c00126{bottom:1151.715000px;}
.y4c_c00126{bottom:1154.310000px;}
.y4b_c00126{bottom:1157.760000px;}
.y49_c00126{bottom:1158.630000px;}
.y48_c00126{bottom:1159.485000px;}
.y167_c00126{bottom:1162.950000px;}
.y166_c00126{bottom:1164.675000px;}
.y42_c00126{bottom:1177.635000px;}
.y46_c00126{bottom:1179.360000px;}
.y45_c00126{bottom:1181.955000px;}
.y47_c00126{bottom:1182.810000px;}
.y43_c00126{bottom:1183.680000px;}
.y44_c00126{bottom:1184.550000px;}
.y41_c00126{bottom:1186.275000px;}
.y40_c00126{bottom:1200.090000px;}
.y3d_c00126{bottom:1202.685000px;}
.y3f_c00126{bottom:1203.555000px;}
.y3e_c00126{bottom:1204.410000px;}
.y3a_c00126{bottom:1205.280000px;}
.y3b_c00126{bottom:1207.875000px;}
.y3c_c00126{bottom:1209.600000px;}
.y39_c00126{bottom:1224.285000px;}
.y38_c00126{bottom:1225.155000px;}
.y36_c00126{bottom:1226.010000px;}
.y35_c00126{bottom:1226.880000px;}
.y37_c00126{bottom:1232.925000px;}
.y34_c00126{bottom:1234.650000px;}
.y33_c00126{bottom:1235.520000px;}
.y164_c00126{bottom:1249.350000px;}
.y2e_c00126{bottom:1250.205000px;}
.y165_c00126{bottom:1252.800000px;}
.y163_c00126{bottom:1254.525000px;}
.y2f_c00126{bottom:1255.395000px;}
.y32_c00126{bottom:1256.250000px;}
.y31_c00126{bottom:1259.715000px;}
.y30_c00126{bottom:1260.570000px;}
.y2b_c00126{bottom:1276.125000px;}
.y26_c00126{bottom:1276.995000px;}
.y28_c00126{bottom:1277.850000px;}
.y2c_c00126{bottom:1279.590000px;}
.y27_c00126{bottom:1282.170000px;}
.y2d_c00126{bottom:1283.910000px;}
.y29_c00126{bottom:1284.765000px;}
.y2a_c00126{bottom:1285.635000px;}
.y162_c00126{bottom:1286.490000px;}
.y25_c00126{bottom:1301.190000px;}
.y20_c00126{bottom:1302.045000px;}
.y22_c00126{bottom:1302.915000px;}
.y21_c00126{bottom:1307.235000px;}
.y24_c00126{bottom:1308.090000px;}
.y23_c00126{bottom:1309.830000px;}
.y1b_c00126{bottom:1325.370000px;}
.y18_c00126{bottom:1326.240000px;}
.y1f_c00126{bottom:1327.110000px;}
.y1c_c00126{bottom:1328.835000px;}
.y1d_c00126{bottom:1331.430000px;}
.y1a_c00126{bottom:1333.155000px;}
.y1e_c00126{bottom:1334.010000px;}
.y19_c00126{bottom:1334.880000px;}
.y17_c00126{bottom:1352.160000px;}
.y16_c00126{bottom:1353.030000px;}
.y13_c00126{bottom:1358.205000px;}
.y14_c00126{bottom:1359.075000px;}
.y15_c00126{bottom:1359.930000px;}
.y11_c00126{bottom:1380.675000px;}
.y12_c00126{bottom:1384.125000px;}
.y10_c00126{bottom:1384.995000px;}
.yb_c00126{bottom:1387.590000px;}
.ya_c00126{bottom:1391.040000px;}
.yd_c00126{bottom:1391.910000px;}
.yc_c00126{bottom:1392.765000px;}
.yf_c00126{bottom:1396.230000px;}
.ye_c00126{bottom:1401.405000px;}
.y9_c00126{bottom:1410.045000px;}
.y8_c00126{bottom:1412.640000px;}
.y6_c00126{bottom:1413.510000px;}
.y7_c00126{bottom:1416.090000px;}
.y2_c00126{bottom:1419.555000px;}
.y1_c00126{bottom:1422.150000px;}
.y4_c00126{bottom:1427.325000px;}
.y5_c00126{bottom:1434.240000px;}
.y3_c00126{bottom:1441.155000px;}
.h5_c00126{height:3.110063px;}
.h6_c00126{height:5.399414px;}
.h8_c00126{height:6.209326px;}
.h9_c00126{height:9.340986px;}
.h12_c00126{height:12.418652px;}
.h21_c00126{height:15.550313px;}
.h22_c00126{height:18.681973px;}
.h1f_c00126{height:21.759639px;}
.h2_c00126{height:24.891299px;}
.hc_c00126{height:27.968965px;}
.h11_c00126{height:31.100625px;}
.h1b_c00126{height:34.232285px;}
.h7_c00126{height:37.309951px;}
.h20_c00126{height:40.441611px;}
.h13_c00126{height:43.519277px;}
.h4_c00126{height:46.650937px;}
.ha_c00126{height:49.782598px;}
.h1a_c00126{height:52.860264px;}
.h15_c00126{height:55.991924px;}
.h10_c00126{height:59.069590px;}
.hd_c00126{height:62.201250px;}
.hb_c00126{height:65.332910px;}
.h3_c00126{height:68.410576px;}
.hf_c00126{height:71.542236px;}
.he_c00126{height:74.619902px;}
.h1c_c00126{height:77.751563px;}
.h1e_c00126{height:80.883223px;}
.h18_c00126{height:83.960889px;}
.h1d_c00126{height:87.092549px;}
.h19_c00126{height:90.170215px;}
.h14_c00126{height:93.301875px;}
.h17_c00126{height:96.433535px;}
.h23_c00126{height:99.511201px;}
.h24_c00126{height:102.642861px;}
.h16_c00126{height:108.852188px;}
.h25_c00126{height:118.193174px;}
.h0_c00126{height:1517.190000px;}
.h1_c00126{height:1517.250000px;}
.w0_c00126{width:1090.365000px;}
.w1_c00126{width:1090.500000px;}
.x0_c00126{left:0.000000px;}
.x90_c00126{left:200.445000px;}
.xe2_c00126{left:203.910000px;}
.xe0_c00126{left:205.635000px;}
.x91_c00126{left:209.955000px;}
.xe3_c00126{left:213.405000px;}
.xcc_c00126{left:215.130000px;}
.x53_c00126{left:216.870000px;}
.x68_c00126{left:219.450000px;}
.x5e_c00126{left:221.190000px;}
.x3d_c00126{left:223.770000px;}
.xe_c00126{left:226.365000px;}
.x28_c00126{left:228.090000px;}
.xbd_c00126{left:234.150000px;}
.x7a_c00126{left:236.730000px;}
.xee_c00126{left:239.325000px;}
.xbe_c00126{left:246.240000px;}
.xf3_c00126{left:248.835000px;}
.x20_c00126{left:254.880000px;}
.x54_c00126{left:256.605000px;}
.x5f_c00126{left:258.330000px;}
.xc4_c00126{left:260.925000px;}
.x6f_c00126{left:264.390000px;}
.x9b_c00126{left:266.115000px;}
.x59_c00126{left:270.435000px;}
.xef_c00126{left:273.030000px;}
.x43_c00126{left:275.610000px;}
.x9f_c00126{left:279.930000px;}
.xa4_c00126{left:281.670000px;}
.xcd_c00126{left:284.250000px;}
.x69_c00126{left:285.990000px;}
.x89_c00126{left:289.440000px;}
.x7b_c00126{left:292.890000px;}
.x21_c00126{left:295.485000px;}
.x36_c00126{left:297.210000px;}
.xd2_c00126{left:300.675000px;}
.xe9_c00126{left:302.400000px;}
.x29_c00126{left:305.850000px;}
.x7c_c00126{left:307.590000px;}
.x44_c00126{left:310.170000px;}
.xa9_c00126{left:315.360000px;}
.xe7_c00126{left:317.085000px;}
.x6a_c00126{left:318.810000px;}
.x92_c00126{left:320.550000px;}
.x5a_c00126{left:323.130000px;}
.x83_c00126{left:324.870000px;}
.x8a_c00126{left:327.450000px;}
.x60_c00126{left:331.770000px;}
.xf_c00126{left:334.365000px;}
.x1e_c00126{left:336.090000px;}
.xbf_c00126{left:337.830000px;}
.xa0_c00126{left:339.555000px;}
.xea_c00126{left:342.150000px;}
.x84_c00126{left:343.875000px;}
.x22_c00126{left:345.600000px;}
.xd3_c00126{left:347.325000px;}
.x9c_c00126{left:349.050000px;}
.x55_c00126{left:350.790000px;}
.x32_c00126{left:354.240000px;}
.xa5_c00126{left:357.690000px;}
.x23_c00126{left:364.605000px;}
.xf0_c00126{left:367.200000px;}
.xb0_c00126{left:368.925000px;}
.x2a_c00126{left:370.650000px;}
.xb7_c00126{left:372.390000px;}
.xc0_c00126{left:375.840000px;}
.x37_c00126{left:379.290000px;}
.x7d_c00126{left:381.030000px;}
.xc5_c00126{left:383.610000px;}
.x4e_c00126{left:387.075000px;}
.x9d_c00126{left:391.395000px;}
.x93_c00126{left:393.990000px;}
.x10_c00126{left:395.715000px;}
.xaa_c00126{left:399.165000px;}
.x24_c00126{left:402.630000px;}
.x94_c00126{left:404.355000px;}
.x33_c00126{left:407.805000px;}
.x8b_c00126{left:409.530000px;}
.xed_c00126{left:411.270000px;}
.xdb_c00126{left:413.850000px;}
.x61_c00126{left:415.590000px;}
.x97_c00126{left:418.170000px;}
.x11_c00126{left:420.765000px;}
.x85_c00126{left:423.360000px;}
.x56_c00126{left:425.955000px;}
.x8_c00126{left:428.550000px;}
.x2b_c00126{left:431.130000px;}
.x7e_c00126{left:436.320000px;}
.xd4_c00126{left:438.045000px;}
.xb4_c00126{left:439.770000px;}
.x12_c00126{left:442.365000px;}
.x5b_c00126{left:444.960000px;}
.x70_c00126{left:446.685000px;}
.x4f_c00126{left:450.150000px;}
.x2c_c00126{left:453.600000px;}
.xb1_c00126{left:457.920000px;}
.x45_c00126{left:459.645000px;}
.xeb_c00126{left:462.240000px;}
.x57_c00126{left:466.560000px;}
.xca_c00126{left:468.285000px;}
.x6b_c00126{left:470.010000px;}
.x7f_c00126{left:472.605000px;}
.xce_c00126{left:475.200000px;}
.xa2_c00126{left:477.795000px;}
.x98_c00126{left:481.245000px;}
.xe4_c00126{left:485.565000px;}
.x2d_c00126{left:489.030000px;}
.x9e_c00126{left:491.610000px;}
.x71_c00126{left:493.350000px;}
.x1f_c00126{left:495.075000px;}
.xf4_c00126{left:498.525000px;}
.x38_c00126{left:501.120000px;}
.x13_c00126{left:503.715000px;}
.xdc_c00126{left:505.440000px;}
.x46_c00126{left:508.035000px;}
.x25_c00126{left:513.210000px;}
.xc6_c00126{left:517.530000px;}
.x62_c00126{left:520.995000px;}
.xab_c00126{left:527.040000px;}
.x47_c00126{left:529.635000px;}
.x72_c00126{left:533.955000px;}
.xb8_c00126{left:538.275000px;}
.x80_c00126{left:541.725000px;}
.x73_c00126{left:544.320000px;}
.x34_c00126{left:546.915000px;}
.x8c_c00126{left:548.640000px;}
.xd5_c00126{left:550.365000px;}
.xa3_c00126{left:552.090000px;}
.xb2_c00126{left:553.830000px;}
.x6c_c00126{left:556.410000px;}
.xc1_c00126{left:558.150000px;}
.xe6_c00126{left:559.875000px;}
.x74_c00126{left:561.600000px;}
.x63_c00126{left:564.195000px;}
.xdd_c00126{left:566.790000px;}
.x99_c00126{left:569.370000px;}
.xa6_c00126{left:571.110000px;}
.x64_c00126{left:572.835000px;}
.x14_c00126{left:575.430000px;}
.x75_c00126{left:578.010000px;}
.xb5_c00126{left:579.750000px;}
.xa7_c00126{left:581.475000px;}
.x2e_c00126{left:583.200000px;}
.xc7_c00126{left:584.925000px;}
.x3e_c00126{left:586.650000px;}
.xc2_c00126{left:589.245000px;}
.xde_c00126{left:592.710000px;}
.x15_c00126{left:595.290000px;}
.xf1_c00126{left:598.755000px;}
.x86_c00126{left:601.350000px;}
.x76_c00126{left:603.930000px;}
.x48_c00126{left:605.670000px;}
.xb9_c00126{left:608.250000px;}
.x16_c00126{left:613.440000px;}
.xd6_c00126{left:617.760000px;}
.x50_c00126{left:622.080000px;}
.xb3_c00126{left:623.805000px;}
.xba_c00126{left:625.530000px;}
.x3f_c00126{left:628.125000px;}
.x39_c00126{left:629.850000px;}
.x77_c00126{left:632.445000px;}
.xf5_c00126{left:634.170000px;}
.xc8_c00126{left:636.765000px;}
.x2f_c00126{left:638.490000px;}
.xf2_c00126{left:641.085000px;}
.x49_c00126{left:649.725000px;}
.x26_c00126{left:651.450000px;}
.x9a_c00126{left:656.640000px;}
.x17_c00126{left:659.235000px;}
.xd0_c00126{left:660.960000px;}
.x40_c00126{left:662.685000px;}
.x6d_c00126{left:665.280000px;}
.x5c_c00126{left:667.875000px;}
.xd7_c00126{left:674.790000px;}
.x65_c00126{left:678.240000px;}
.x1_c00126{left:680.835000px;}
.x78_c00126{left:685.155000px;}
.x18_c00126{left:688.605000px;}
.xa8_c00126{left:690.330000px;}
.xb6_c00126{left:692.070000px;}
.x58_c00126{left:697.245000px;}
.xd8_c00126{left:698.970000px;}
.x9_c00126{left:700.710000px;}
.x51_c00126{left:704.160000px;}
.x2_c00126{left:706.755000px;}
.x4a_c00126{left:708.480000px;}
.x3a_c00126{left:711.930000px;}
.x19_c00126{left:714.525000px;}
.xa_c00126{left:717.120000px;}
.xbb_c00126{left:720.570000px;}
.x5d_c00126{left:722.310000px;}
.x3_c00126{left:724.035000px;}
.xb_c00126{left:725.760000px;}
.x30_c00126{left:727.485000px;}
.xc_c00126{left:729.210000px;}
.x79_c00126{left:736.995000px;}
.xd_c00126{left:740.445000px;}
.x81_c00126{left:742.170000px;}
.x1a_c00126{left:743.910000px;}
.x4b_c00126{left:745.635000px;}
.x3b_c00126{left:747.360000px;}
.x41_c00126{left:750.810000px;}
.xdf_c00126{left:752.550000px;}
.xe8_c00126{left:754.275000px;}
.x31_c00126{left:756.000000px;}
.xd9_c00126{left:757.725000px;}
.x42_c00126{left:760.320000px;}
.x4_c00126{left:762.915000px;}
.xc3_c00126{left:764.640000px;}
.xac_c00126{left:774.150000px;}
.xcb_c00126{left:775.875000px;}
.x87_c00126{left:777.600000px;}
.x5_c00126{left:781.050000px;}
.x52_c00126{left:785.370000px;}
.xad_c00126{left:787.110000px;}
.xa1_c00126{left:788.835000px;}
.x1b_c00126{left:790.560000px;}
.x6e_c00126{left:794.880000px;}
.x3c_c00126{left:798.330000px;}
.x4c_c00126{left:800.925000px;}
.x8d_c00126{left:805.245000px;}
.xe5_c00126{left:806.970000px;}
.xc9_c00126{left:808.710000px;}
.x1c_c00126{left:810.435000px;}
.x66_c00126{left:812.160000px;}
.x27_c00126{left:815.610000px;}
.xae_c00126{left:818.205000px;}
.x96_c00126{left:820.800000px;}
.x95_c00126{left:823.395000px;}
.xda_c00126{left:825.120000px;}
.xcf_c00126{left:826.845000px;}
.x82_c00126{left:828.570000px;}
.xd1_c00126{left:830.310000px;}
.x6_c00126{left:832.890000px;}
.x35_c00126{left:835.485000px;}
.x67_c00126{left:837.210000px;}
.x88_c00126{left:838.950000px;}
.x1d_c00126{left:841.530000px;}
.xe1_c00126{left:845.850000px;}
.x8e_c00126{left:855.360000px;}
.xaf_c00126{left:857.085000px;}
.xbc_c00126{left:863.130000px;}
.x8f_c00126{left:865.725000px;}
.xec_c00126{left:869.190000px;}
.x4d_c00126{left:874.365000px;}
.x7_c00126{left:876.960000px;}
.xfe_c00126{left:911.520000px;}
.xff_c00126{left:914.970000px;}
.xf6_c00126{left:921.030000px;}
.x100_c00126{left:924.480000px;}
.xf7_c00126{left:933.120000px;}
.xf8_c00126{left:1020.390000px;}
.xf9_c00126{left:1030.755000px;}
.xfa_c00126{left:1042.845000px;}
.xfb_c00126{left:1052.355000px;}
.xfc_c00126{left:1054.950000px;}
.xfd_c00126{left:1072.230000px;}
@media print{
.v1_c00126{vertical-align:-3.040000pt;}
.v0_c00126{vertical-align:0.000000pt;}
.ls1_c00126{letter-spacing:0.000000pt;}
.ls0_c00126{letter-spacing:845.816296pt;}
.ws0_c00126{word-spacing:-30.440373pt;}
.ws1_c00126{word-spacing:-21.661227pt;}
.ws2_c00126{word-spacing:0.000000pt;}
._0_c00126{width:4.249591pt;}
.fs3_c00126{font-size:3.072000pt;}
.fs4_c00126{font-size:5.333333pt;}
.fs6_c00126{font-size:6.133333pt;}
.fs7_c00126{font-size:9.226667pt;}
.fs10_c00126{font-size:12.266667pt;}
.fs1f_c00126{font-size:15.360000pt;}
.fs20_c00126{font-size:18.453333pt;}
.fs1d_c00126{font-size:21.493333pt;}
.fs0_c00126{font-size:24.586667pt;}
.fsa_c00126{font-size:27.626667pt;}
.fsf_c00126{font-size:30.720000pt;}
.fs19_c00126{font-size:33.813333pt;}
.fs5_c00126{font-size:36.853333pt;}
.fs1e_c00126{font-size:39.946667pt;}
.fs11_c00126{font-size:42.986667pt;}
.fs2_c00126{font-size:46.080000pt;}
.fs8_c00126{font-size:49.173333pt;}
.fs18_c00126{font-size:52.213333pt;}
.fs13_c00126{font-size:55.306667pt;}
.fse_c00126{font-size:58.346667pt;}
.fsb_c00126{font-size:61.440000pt;}
.fs9_c00126{font-size:64.533333pt;}
.fs1_c00126{font-size:67.573333pt;}
.fsd_c00126{font-size:70.666667pt;}
.fsc_c00126{font-size:73.706667pt;}
.fs1a_c00126{font-size:76.800000pt;}
.fs1c_c00126{font-size:79.893333pt;}
.fs16_c00126{font-size:82.933333pt;}
.fs1b_c00126{font-size:86.026667pt;}
.fs17_c00126{font-size:89.066667pt;}
.fs12_c00126{font-size:92.160000pt;}
.fs15_c00126{font-size:95.253333pt;}
.fs21_c00126{font-size:98.293333pt;}
.fs22_c00126{font-size:101.386667pt;}
.fs14_c00126{font-size:107.520000pt;}
.fs23_c00126{font-size:116.746667pt;}
.y0_c00126{bottom:0.000000pt;}
.y15b_c00126{bottom:192.000000pt;}
.y15a_c00126{bottom:196.613333pt;}
.y15d_c00126{bottom:197.373333pt;}
.y161_c00126{bottom:198.146667pt;}
.y159_c00126{bottom:198.906667pt;}
.y15e_c00126{bottom:200.453333pt;}
.y160_c00126{bottom:201.986667pt;}
.y15f_c00126{bottom:203.520000pt;}
.y15c_c00126{bottom:205.053333pt;}
.y156_c00126{bottom:219.653333pt;}
.y153_c00126{bottom:221.946667pt;}
.y158_c00126{bottom:224.253333pt;}
.y157_c00126{bottom:225.026667pt;}
.y155_c00126{bottom:227.333333pt;}
.y154_c00126{bottom:228.093333pt;}
.y14f_c00126{bottom:241.146667pt;}
.y151_c00126{bottom:241.920000pt;}
.y150_c00126{bottom:242.693333pt;}
.y152_c00126{bottom:247.293333pt;}
.y14e_c00126{bottom:263.426667pt;}
.y14c_c00126{bottom:264.186667pt;}
.y14a_c00126{bottom:264.960000pt;}
.y149_c00126{bottom:265.733333pt;}
.y147_c00126{bottom:266.493333pt;}
.y148_c00126{bottom:267.266667pt;}
.y143_c00126{bottom:268.800000pt;}
.y14d_c00126{bottom:270.333333pt;}
.y14b_c00126{bottom:271.106667pt;}
.y146_c00126{bottom:271.866667pt;}
.y145_c00126{bottom:272.640000pt;}
.y144_c00126{bottom:273.413333pt;}
.y13d_c00126{bottom:288.773333pt;}
.y141_c00126{bottom:289.533333pt;}
.y13f_c00126{bottom:291.066667pt;}
.y13e_c00126{bottom:299.520000pt;}
.y142_c00126{bottom:301.826667pt;}
.y140_c00126{bottom:303.360000pt;}
.y13a_c00126{bottom:310.266667pt;}
.y136_c00126{bottom:311.813333pt;}
.y135_c00126{bottom:312.573333pt;}
.y13c_c00126{bottom:313.346667pt;}
.y13b_c00126{bottom:314.106667pt;}
.y137_c00126{bottom:314.880000pt;}
.y138_c00126{bottom:317.946667pt;}
.y139_c00126{bottom:318.720000pt;}
.y133_c00126{bottom:331.773333pt;}
.y131_c00126{bottom:333.306667pt;}
.y12f_c00126{bottom:334.080000pt;}
.y130_c00126{bottom:334.853333pt;}
.y12e_c00126{bottom:337.146667pt;}
.y132_c00126{bottom:339.453333pt;}
.y134_c00126{bottom:341.760000pt;}
.y12c_c00126{bottom:354.813333pt;}
.y12a_c00126{bottom:355.586667pt;}
.y12b_c00126{bottom:356.346667pt;}
.y12d_c00126{bottom:359.426667pt;}
.y128_c00126{bottom:360.186667pt;}
.y129_c00126{bottom:363.266667pt;}
.y127_c00126{bottom:364.026667pt;}
.y126_c00126{bottom:375.546667pt;}
.y124_c00126{bottom:377.853333pt;}
.y121_c00126{bottom:379.386667pt;}
.y125_c00126{bottom:380.160000pt;}
.y123_c00126{bottom:384.773333pt;}
.y122_c00126{bottom:385.533333pt;}
.y120_c00126{bottom:398.586667pt;}
.y11f_c00126{bottom:399.360000pt;}
.y11e_c00126{bottom:400.133333pt;}
.y11c_c00126{bottom:402.426667pt;}
.y11d_c00126{bottom:404.733333pt;}
.y11a_c00126{bottom:406.266667pt;}
.y11b_c00126{bottom:407.813333pt;}
.y119_c00126{bottom:420.866667pt;}
.y112_c00126{bottom:421.626667pt;}
.y116_c00126{bottom:422.400000pt;}
.y113_c00126{bottom:423.933333pt;}
.y110_c00126{bottom:425.466667pt;}
.y118_c00126{bottom:427.773333pt;}
.y117_c00126{bottom:429.306667pt;}
.y115_c00126{bottom:430.080000pt;}
.y114_c00126{bottom:430.853333pt;}
.y111_c00126{bottom:434.693333pt;}
.y10d_c00126{bottom:445.440000pt;}
.y10c_c00126{bottom:447.746667pt;}
.y10f_c00126{bottom:448.506667pt;}
.y10a_c00126{bottom:449.280000pt;}
.y10e_c00126{bottom:450.813333pt;}
.y10b_c00126{bottom:452.346667pt;}
.y109_c00126{bottom:456.186667pt;}
.y108_c00126{bottom:465.413333pt;}
.y106_c00126{bottom:466.173333pt;}
.yfe_c00126{bottom:467.706667pt;}
.y103_c00126{bottom:468.480000pt;}
.y101_c00126{bottom:469.253333pt;}
.y104_c00126{bottom:470.786667pt;}
.yff_c00126{bottom:471.546667pt;}
.y107_c00126{bottom:473.093333pt;}
.y105_c00126{bottom:473.853333pt;}
.y100_c00126{bottom:474.626667pt;}
.y102_c00126{bottom:475.386667pt;}
.yfb_c00126{bottom:486.906667pt;}
.yf8_c00126{bottom:487.680000pt;}
.yf9_c00126{bottom:488.453333pt;}
.yfa_c00126{bottom:490.746667pt;}
.yfc_c00126{bottom:491.520000pt;}
.yfd_c00126{bottom:494.586667pt;}
.yf7_c00126{bottom:495.360000pt;}
.yf6_c00126{bottom:496.133333pt;}
.yf5_c00126{bottom:496.893333pt;}
.yf4_c00126{bottom:497.666667pt;}
.yf3_c00126{bottom:510.720000pt;}
.yf1_c00126{bottom:511.493333pt;}
.yef_c00126{bottom:512.253333pt;}
.yec_c00126{bottom:514.560000pt;}
.yf2_c00126{bottom:516.866667pt;}
.yf0_c00126{bottom:518.400000pt;}
.yee_c00126{bottom:519.173333pt;}
.yed_c00126{bottom:519.933333pt;}
.yea_c00126{bottom:532.986667pt;}
.ye8_c00126{bottom:533.760000pt;}
.ye6_c00126{bottom:534.533333pt;}
.yeb_c00126{bottom:539.133333pt;}
.ye9_c00126{bottom:539.906667pt;}
.ye7_c00126{bottom:540.666667pt;}
.ye5_c00126{bottom:541.440000pt;}
.ye4_c00126{bottom:555.266667pt;}
.ye1_c00126{bottom:556.800000pt;}
.ydf_c00126{bottom:557.573333pt;}
.yde_c00126{bottom:559.106667pt;}
.ye3_c00126{bottom:559.866667pt;}
.ye2_c00126{bottom:562.173333pt;}
.ye0_c00126{bottom:563.706667pt;}
.ydc_c00126{bottom:579.066667pt;}
.ydb_c00126{bottom:580.613333pt;}
.yda_c00126{bottom:582.906667pt;}
.ydd_c00126{bottom:583.680000pt;}
.yd9_c00126{bottom:584.453333pt;}
.yd8_c00126{bottom:586.746667pt;}
.yd6_c00126{bottom:599.813333pt;}
.yd5_c00126{bottom:601.346667pt;}
.yd4_c00126{bottom:602.106667pt;}
.ycf_c00126{bottom:602.880000pt;}
.yd7_c00126{bottom:603.653333pt;}
.yd2_c00126{bottom:605.946667pt;}
.yd1_c00126{bottom:606.720000pt;}
.yd3_c00126{bottom:607.493333pt;}
.yd0_c00126{bottom:608.253333pt;}
.yce_c00126{bottom:620.546667pt;}
.ycd_c00126{bottom:622.853333pt;}
.ycb_c00126{bottom:623.613333pt;}
.ycc_c00126{bottom:625.146667pt;}
.yc8_c00126{bottom:627.453333pt;}
.yca_c00126{bottom:629.760000pt;}
.yc9_c00126{bottom:630.533333pt;}
.yc7_c00126{bottom:631.293333pt;}
.yc6_c00126{bottom:636.666667pt;}
.yc3_c00126{bottom:642.813333pt;}
.yc5_c00126{bottom:643.586667pt;}
.yc4_c00126{bottom:644.346667pt;}
.ybf_c00126{bottom:645.120000pt;}
.yc0_c00126{bottom:646.653333pt;}
.yc2_c00126{bottom:648.960000pt;}
.yc1_c00126{bottom:652.026667pt;}
.ybe_c00126{bottom:665.853333pt;}
.ybd_c00126{bottom:666.626667pt;}
.yb9_c00126{bottom:668.160000pt;}
.yb8_c00126{bottom:668.933333pt;}
.ybb_c00126{bottom:669.693333pt;}
.yba_c00126{bottom:671.226667pt;}
.ybc_c00126{bottom:674.306667pt;}
.y169_c00126{bottom:679.680000pt;}
.y16a_c00126{bottom:681.213333pt;}
.yb6_c00126{bottom:688.893333pt;}
.yb5_c00126{bottom:689.666667pt;}
.yb7_c00126{bottom:691.973333pt;}
.yb2_c00126{bottom:693.506667pt;}
.yb3_c00126{bottom:695.040000pt;}
.yb4_c00126{bottom:696.573333pt;}
.yb0_c00126{bottom:711.173333pt;}
.yb1_c00126{bottom:711.933333pt;}
.yae_c00126{bottom:717.306667pt;}
.yaf_c00126{bottom:718.080000pt;}
.yac_c00126{bottom:732.666667pt;}
.ya6_c00126{bottom:733.440000pt;}
.yad_c00126{bottom:734.973333pt;}
.ya5_c00126{bottom:735.746667pt;}
.yab_c00126{bottom:736.506667pt;}
.ya9_c00126{bottom:737.280000pt;}
.ya8_c00126{bottom:738.813333pt;}
.yaa_c00126{bottom:739.586667pt;}
.ya7_c00126{bottom:740.346667pt;}
.ya4_c00126{bottom:754.173333pt;}
.ya2_c00126{bottom:755.706667pt;}
.y9e_c00126{bottom:757.253333pt;}
.ya0_c00126{bottom:758.786667pt;}
.ya3_c00126{bottom:761.093333pt;}
.ya1_c00126{bottom:761.853333pt;}
.y9f_c00126{bottom:762.626667pt;}
.y9d_c00126{bottom:777.213333pt;}
.y99_c00126{bottom:777.986667pt;}
.y9b_c00126{bottom:781.053333pt;}
.y97_c00126{bottom:781.826667pt;}
.y9a_c00126{bottom:783.360000pt;}
.y9c_c00126{bottom:784.133333pt;}
.y98_c00126{bottom:784.893333pt;}
.y94_c00126{bottom:799.493333pt;}
.y93_c00126{bottom:800.253333pt;}
.y96_c00126{bottom:805.626667pt;}
.y95_c00126{bottom:806.400000pt;}
.y92_c00126{bottom:807.173333pt;}
.y91_c00126{bottom:807.933333pt;}
.y8e_c00126{bottom:822.533333pt;}
.y8b_c00126{bottom:823.293333pt;}
.y8c_c00126{bottom:826.373333pt;}
.y90_c00126{bottom:827.906667pt;}
.y8f_c00126{bottom:828.666667pt;}
.y8d_c00126{bottom:829.440000pt;}
.y89_c00126{bottom:844.026667pt;}
.y88_c00126{bottom:845.573333pt;}
.y8a_c00126{bottom:847.866667pt;}
.y168_c00126{bottom:856.320000pt;}
.y87_c00126{bottom:866.306667pt;}
.y86_c00126{bottom:867.066667pt;}
.y85_c00126{bottom:867.840000pt;}
.y82_c00126{bottom:870.906667pt;}
.y80_c00126{bottom:873.213333pt;}
.y83_c00126{bottom:873.986667pt;}
.y84_c00126{bottom:874.746667pt;}
.y81_c00126{bottom:876.293333pt;}
.y7b_c00126{bottom:890.106667pt;}
.y7d_c00126{bottom:892.413333pt;}
.y78_c00126{bottom:893.186667pt;}
.y79_c00126{bottom:893.946667pt;}
.y7c_c00126{bottom:895.493333pt;}
.y7a_c00126{bottom:896.253333pt;}
.y77_c00126{bottom:897.026667pt;}
.y7e_c00126{bottom:897.786667pt;}
.y7f_c00126{bottom:903.173333pt;}
.y76_c00126{bottom:910.853333pt;}
.y71_c00126{bottom:911.613333pt;}
.y74_c00126{bottom:912.386667pt;}
.y73_c00126{bottom:916.226667pt;}
.y75_c00126{bottom:917.760000pt;}
.y72_c00126{bottom:918.533333pt;}
.y6f_c00126{bottom:933.893333pt;}
.y6d_c00126{bottom:934.653333pt;}
.y6e_c00126{bottom:936.186667pt;}
.y6b_c00126{bottom:940.026667pt;}
.y6a_c00126{bottom:940.800000pt;}
.y6c_c00126{bottom:941.573333pt;}
.y69_c00126{bottom:945.413333pt;}
.y70_c00126{bottom:952.320000pt;}
.y68_c00126{bottom:953.093333pt;}
.y67_c00126{bottom:954.626667pt;}
.y5e_c00126{bottom:955.386667pt;}
.y60_c00126{bottom:956.160000pt;}
.y62_c00126{bottom:960.000000pt;}
.y64_c00126{bottom:960.773333pt;}
.y5f_c00126{bottom:963.066667pt;}
.y61_c00126{bottom:963.840000pt;}
.y65_c00126{bottom:970.746667pt;}
.y66_c00126{bottom:976.133333pt;}
.y63_c00126{bottom:976.893333pt;}
.y57_c00126{bottom:979.200000pt;}
.y59_c00126{bottom:979.973333pt;}
.y5d_c00126{bottom:982.266667pt;}
.y58_c00126{bottom:983.040000pt;}
.y5c_c00126{bottom:984.573333pt;}
.y5b_c00126{bottom:985.346667pt;}
.y5a_c00126{bottom:986.106667pt;}
.y55_c00126{bottom:999.933333pt;}
.y54_c00126{bottom:1000.706667pt;}
.y51_c00126{bottom:1001.466667pt;}
.y50_c00126{bottom:1002.240000pt;}
.y52_c00126{bottom:1005.306667pt;}
.y56_c00126{bottom:1006.080000pt;}
.y53_c00126{bottom:1006.853333pt;}
.y4f_c00126{bottom:1007.613333pt;}
.y4e_c00126{bottom:1008.386667pt;}
.y4d_c00126{bottom:1017.600000pt;}
.y4a_c00126{bottom:1023.746667pt;}
.y4c_c00126{bottom:1026.053333pt;}
.y4b_c00126{bottom:1029.120000pt;}
.y49_c00126{bottom:1029.893333pt;}
.y48_c00126{bottom:1030.653333pt;}
.y167_c00126{bottom:1033.733333pt;}
.y166_c00126{bottom:1035.266667pt;}
.y42_c00126{bottom:1046.786667pt;}
.y46_c00126{bottom:1048.320000pt;}
.y45_c00126{bottom:1050.626667pt;}
.y47_c00126{bottom:1051.386667pt;}
.y43_c00126{bottom:1052.160000pt;}
.y44_c00126{bottom:1052.933333pt;}
.y41_c00126{bottom:1054.466667pt;}
.y40_c00126{bottom:1066.746667pt;}
.y3d_c00126{bottom:1069.053333pt;}
.y3f_c00126{bottom:1069.826667pt;}
.y3e_c00126{bottom:1070.586667pt;}
.y3a_c00126{bottom:1071.360000pt;}
.y3b_c00126{bottom:1073.666667pt;}
.y3c_c00126{bottom:1075.200000pt;}
.y39_c00126{bottom:1088.253333pt;}
.y38_c00126{bottom:1089.026667pt;}
.y36_c00126{bottom:1089.786667pt;}
.y35_c00126{bottom:1090.560000pt;}
.y37_c00126{bottom:1095.933333pt;}
.y34_c00126{bottom:1097.466667pt;}
.y33_c00126{bottom:1098.240000pt;}
.y164_c00126{bottom:1110.533333pt;}
.y2e_c00126{bottom:1111.293333pt;}
.y165_c00126{bottom:1113.600000pt;}
.y163_c00126{bottom:1115.133333pt;}
.y2f_c00126{bottom:1115.906667pt;}
.y32_c00126{bottom:1116.666667pt;}
.y31_c00126{bottom:1119.746667pt;}
.y30_c00126{bottom:1120.506667pt;}
.y2b_c00126{bottom:1134.333333pt;}
.y26_c00126{bottom:1135.106667pt;}
.y28_c00126{bottom:1135.866667pt;}
.y2c_c00126{bottom:1137.413333pt;}
.y27_c00126{bottom:1139.706667pt;}
.y2d_c00126{bottom:1141.253333pt;}
.y29_c00126{bottom:1142.013333pt;}
.y2a_c00126{bottom:1142.786667pt;}
.y162_c00126{bottom:1143.546667pt;}
.y25_c00126{bottom:1156.613333pt;}
.y20_c00126{bottom:1157.373333pt;}
.y22_c00126{bottom:1158.146667pt;}
.y21_c00126{bottom:1161.986667pt;}
.y24_c00126{bottom:1162.746667pt;}
.y23_c00126{bottom:1164.293333pt;}
.y1b_c00126{bottom:1178.106667pt;}
.y18_c00126{bottom:1178.880000pt;}
.y1f_c00126{bottom:1179.653333pt;}
.y1c_c00126{bottom:1181.186667pt;}
.y1d_c00126{bottom:1183.493333pt;}
.y1a_c00126{bottom:1185.026667pt;}
.y1e_c00126{bottom:1185.786667pt;}
.y19_c00126{bottom:1186.560000pt;}
.y17_c00126{bottom:1201.920000pt;}
.y16_c00126{bottom:1202.693333pt;}
.y13_c00126{bottom:1207.293333pt;}
.y14_c00126{bottom:1208.066667pt;}
.y15_c00126{bottom:1208.826667pt;}
.y11_c00126{bottom:1227.266667pt;}
.y12_c00126{bottom:1230.333333pt;}
.y10_c00126{bottom:1231.106667pt;}
.yb_c00126{bottom:1233.413333pt;}
.ya_c00126{bottom:1236.480000pt;}
.yd_c00126{bottom:1237.253333pt;}
.yc_c00126{bottom:1238.013333pt;}
.yf_c00126{bottom:1241.093333pt;}
.ye_c00126{bottom:1245.693333pt;}
.y9_c00126{bottom:1253.373333pt;}
.y8_c00126{bottom:1255.680000pt;}
.y6_c00126{bottom:1256.453333pt;}
.y7_c00126{bottom:1258.746667pt;}
.y2_c00126{bottom:1261.826667pt;}
.y1_c00126{bottom:1264.133333pt;}
.y4_c00126{bottom:1268.733333pt;}
.y5_c00126{bottom:1274.880000pt;}
.y3_c00126{bottom:1281.026667pt;}
.h5_c00126{height:2.764500pt;}
.h6_c00126{height:4.799479pt;}
.h8_c00126{height:5.519401pt;}
.h9_c00126{height:8.303099pt;}
.h12_c00126{height:11.038802pt;}
.h21_c00126{height:13.822500pt;}
.h22_c00126{height:16.606198pt;}
.h1f_c00126{height:19.341901pt;}
.h2_c00126{height:22.125599pt;}
.hc_c00126{height:24.861302pt;}
.h11_c00126{height:27.645000pt;}
.h1b_c00126{height:30.428698pt;}
.h7_c00126{height:33.164401pt;}
.h20_c00126{height:35.948099pt;}
.h13_c00126{height:38.683802pt;}
.h4_c00126{height:41.467500pt;}
.ha_c00126{height:44.251198pt;}
.h1a_c00126{height:46.986901pt;}
.h15_c00126{height:49.770599pt;}
.h10_c00126{height:52.506302pt;}
.hd_c00126{height:55.290000pt;}
.hb_c00126{height:58.073698pt;}
.h3_c00126{height:60.809401pt;}
.hf_c00126{height:63.593099pt;}
.he_c00126{height:66.328802pt;}
.h1c_c00126{height:69.112500pt;}
.h1e_c00126{height:71.896198pt;}
.h18_c00126{height:74.631901pt;}
.h1d_c00126{height:77.415599pt;}
.h19_c00126{height:80.151302pt;}
.h14_c00126{height:82.935000pt;}
.h17_c00126{height:85.718698pt;}
.h23_c00126{height:88.454401pt;}
.h24_c00126{height:91.238099pt;}
.h16_c00126{height:96.757500pt;}
.h25_c00126{height:105.060599pt;}
.h0_c00126{height:1348.613333pt;}
.h1_c00126{height:1348.666667pt;}
.w0_c00126{width:969.213333pt;}
.w1_c00126{width:969.333333pt;}
.x0_c00126{left:0.000000pt;}
.x90_c00126{left:178.173333pt;}
.xe2_c00126{left:181.253333pt;}
.xe0_c00126{left:182.786667pt;}
.x91_c00126{left:186.626667pt;}
.xe3_c00126{left:189.693333pt;}
.xcc_c00126{left:191.226667pt;}
.x53_c00126{left:192.773333pt;}
.x68_c00126{left:195.066667pt;}
.x5e_c00126{left:196.613333pt;}
.x3d_c00126{left:198.906667pt;}
.xe_c00126{left:201.213333pt;}
.x28_c00126{left:202.746667pt;}
.xbd_c00126{left:208.133333pt;}
.x7a_c00126{left:210.426667pt;}
.xee_c00126{left:212.733333pt;}
.xbe_c00126{left:218.880000pt;}
.xf3_c00126{left:221.186667pt;}
.x20_c00126{left:226.560000pt;}
.x54_c00126{left:228.093333pt;}
.x5f_c00126{left:229.626667pt;}
.xc4_c00126{left:231.933333pt;}
.x6f_c00126{left:235.013333pt;}
.x9b_c00126{left:236.546667pt;}
.x59_c00126{left:240.386667pt;}
.xef_c00126{left:242.693333pt;}
.x43_c00126{left:244.986667pt;}
.x9f_c00126{left:248.826667pt;}
.xa4_c00126{left:250.373333pt;}
.xcd_c00126{left:252.666667pt;}
.x69_c00126{left:254.213333pt;}
.x89_c00126{left:257.280000pt;}
.x7b_c00126{left:260.346667pt;}
.x21_c00126{left:262.653333pt;}
.x36_c00126{left:264.186667pt;}
.xd2_c00126{left:267.266667pt;}
.xe9_c00126{left:268.800000pt;}
.x29_c00126{left:271.866667pt;}
.x7c_c00126{left:273.413333pt;}
.x44_c00126{left:275.706667pt;}
.xa9_c00126{left:280.320000pt;}
.xe7_c00126{left:281.853333pt;}
.x6a_c00126{left:283.386667pt;}
.x92_c00126{left:284.933333pt;}
.x5a_c00126{left:287.226667pt;}
.x83_c00126{left:288.773333pt;}
.x8a_c00126{left:291.066667pt;}
.x60_c00126{left:294.906667pt;}
.xf_c00126{left:297.213333pt;}
.x1e_c00126{left:298.746667pt;}
.xbf_c00126{left:300.293333pt;}
.xa0_c00126{left:301.826667pt;}
.xea_c00126{left:304.133333pt;}
.x84_c00126{left:305.666667pt;}
.x22_c00126{left:307.200000pt;}
.xd3_c00126{left:308.733333pt;}
.x9c_c00126{left:310.266667pt;}
.x55_c00126{left:311.813333pt;}
.x32_c00126{left:314.880000pt;}
.xa5_c00126{left:317.946667pt;}
.x23_c00126{left:324.093333pt;}
.xf0_c00126{left:326.400000pt;}
.xb0_c00126{left:327.933333pt;}
.x2a_c00126{left:329.466667pt;}
.xb7_c00126{left:331.013333pt;}
.xc0_c00126{left:334.080000pt;}
.x37_c00126{left:337.146667pt;}
.x7d_c00126{left:338.693333pt;}
.xc5_c00126{left:340.986667pt;}
.x4e_c00126{left:344.066667pt;}
.x9d_c00126{left:347.906667pt;}
.x93_c00126{left:350.213333pt;}
.x10_c00126{left:351.746667pt;}
.xaa_c00126{left:354.813333pt;}
.x24_c00126{left:357.893333pt;}
.x94_c00126{left:359.426667pt;}
.x33_c00126{left:362.493333pt;}
.x8b_c00126{left:364.026667pt;}
.xed_c00126{left:365.573333pt;}
.xdb_c00126{left:367.866667pt;}
.x61_c00126{left:369.413333pt;}
.x97_c00126{left:371.706667pt;}
.x11_c00126{left:374.013333pt;}
.x85_c00126{left:376.320000pt;}
.x56_c00126{left:378.626667pt;}
.x8_c00126{left:380.933333pt;}
.x2b_c00126{left:383.226667pt;}
.x7e_c00126{left:387.840000pt;}
.xd4_c00126{left:389.373333pt;}
.xb4_c00126{left:390.906667pt;}
.x12_c00126{left:393.213333pt;}
.x5b_c00126{left:395.520000pt;}
.x70_c00126{left:397.053333pt;}
.x4f_c00126{left:400.133333pt;}
.x2c_c00126{left:403.200000pt;}
.xb1_c00126{left:407.040000pt;}
.x45_c00126{left:408.573333pt;}
.xeb_c00126{left:410.880000pt;}
.x57_c00126{left:414.720000pt;}
.xca_c00126{left:416.253333pt;}
.x6b_c00126{left:417.786667pt;}
.x7f_c00126{left:420.093333pt;}
.xce_c00126{left:422.400000pt;}
.xa2_c00126{left:424.706667pt;}
.x98_c00126{left:427.773333pt;}
.xe4_c00126{left:431.613333pt;}
.x2d_c00126{left:434.693333pt;}
.x9e_c00126{left:436.986667pt;}
.x71_c00126{left:438.533333pt;}
.x1f_c00126{left:440.066667pt;}
.xf4_c00126{left:443.133333pt;}
.x38_c00126{left:445.440000pt;}
.x13_c00126{left:447.746667pt;}
.xdc_c00126{left:449.280000pt;}
.x46_c00126{left:451.586667pt;}
.x25_c00126{left:456.186667pt;}
.xc6_c00126{left:460.026667pt;}
.x62_c00126{left:463.106667pt;}
.xab_c00126{left:468.480000pt;}
.x47_c00126{left:470.786667pt;}
.x72_c00126{left:474.626667pt;}
.xb8_c00126{left:478.466667pt;}
.x80_c00126{left:481.533333pt;}
.x73_c00126{left:483.840000pt;}
.x34_c00126{left:486.146667pt;}
.x8c_c00126{left:487.680000pt;}
.xd5_c00126{left:489.213333pt;}
.xa3_c00126{left:490.746667pt;}
.xb2_c00126{left:492.293333pt;}
.x6c_c00126{left:494.586667pt;}
.xc1_c00126{left:496.133333pt;}
.xe6_c00126{left:497.666667pt;}
.x74_c00126{left:499.200000pt;}
.x63_c00126{left:501.506667pt;}
.xdd_c00126{left:503.813333pt;}
.x99_c00126{left:506.106667pt;}
.xa6_c00126{left:507.653333pt;}
.x64_c00126{left:509.186667pt;}
.x14_c00126{left:511.493333pt;}
.x75_c00126{left:513.786667pt;}
.xb5_c00126{left:515.333333pt;}
.xa7_c00126{left:516.866667pt;}
.x2e_c00126{left:518.400000pt;}
.xc7_c00126{left:519.933333pt;}
.x3e_c00126{left:521.466667pt;}
.xc2_c00126{left:523.773333pt;}
.xde_c00126{left:526.853333pt;}
.x15_c00126{left:529.146667pt;}
.xf1_c00126{left:532.226667pt;}
.x86_c00126{left:534.533333pt;}
.x76_c00126{left:536.826667pt;}
.x48_c00126{left:538.373333pt;}
.xb9_c00126{left:540.666667pt;}
.x16_c00126{left:545.280000pt;}
.xd6_c00126{left:549.120000pt;}
.x50_c00126{left:552.960000pt;}
.xb3_c00126{left:554.493333pt;}
.xba_c00126{left:556.026667pt;}
.x3f_c00126{left:558.333333pt;}
.x39_c00126{left:559.866667pt;}
.x77_c00126{left:562.173333pt;}
.xf5_c00126{left:563.706667pt;}
.xc8_c00126{left:566.013333pt;}
.x2f_c00126{left:567.546667pt;}
.xf2_c00126{left:569.853333pt;}
.x49_c00126{left:577.533333pt;}
.x26_c00126{left:579.066667pt;}
.x9a_c00126{left:583.680000pt;}
.x17_c00126{left:585.986667pt;}
.xd0_c00126{left:587.520000pt;}
.x40_c00126{left:589.053333pt;}
.x6d_c00126{left:591.360000pt;}
.x5c_c00126{left:593.666667pt;}
.xd7_c00126{left:599.813333pt;}
.x65_c00126{left:602.880000pt;}
.x1_c00126{left:605.186667pt;}
.x78_c00126{left:609.026667pt;}
.x18_c00126{left:612.093333pt;}
.xa8_c00126{left:613.626667pt;}
.xb6_c00126{left:615.173333pt;}
.x58_c00126{left:619.773333pt;}
.xd8_c00126{left:621.306667pt;}
.x9_c00126{left:622.853333pt;}
.x51_c00126{left:625.920000pt;}
.x2_c00126{left:628.226667pt;}
.x4a_c00126{left:629.760000pt;}
.x3a_c00126{left:632.826667pt;}
.x19_c00126{left:635.133333pt;}
.xa_c00126{left:637.440000pt;}
.xbb_c00126{left:640.506667pt;}
.x5d_c00126{left:642.053333pt;}
.x3_c00126{left:643.586667pt;}
.xb_c00126{left:645.120000pt;}
.x30_c00126{left:646.653333pt;}
.xc_c00126{left:648.186667pt;}
.x79_c00126{left:655.106667pt;}
.xd_c00126{left:658.173333pt;}
.x81_c00126{left:659.706667pt;}
.x1a_c00126{left:661.253333pt;}
.x4b_c00126{left:662.786667pt;}
.x3b_c00126{left:664.320000pt;}
.x41_c00126{left:667.386667pt;}
.xdf_c00126{left:668.933333pt;}
.xe8_c00126{left:670.466667pt;}
.x31_c00126{left:672.000000pt;}
.xd9_c00126{left:673.533333pt;}
.x42_c00126{left:675.840000pt;}
.x4_c00126{left:678.146667pt;}
.xc3_c00126{left:679.680000pt;}
.xac_c00126{left:688.133333pt;}
.xcb_c00126{left:689.666667pt;}
.x87_c00126{left:691.200000pt;}
.x5_c00126{left:694.266667pt;}
.x52_c00126{left:698.106667pt;}
.xad_c00126{left:699.653333pt;}
.xa1_c00126{left:701.186667pt;}
.x1b_c00126{left:702.720000pt;}
.x6e_c00126{left:706.560000pt;}
.x3c_c00126{left:709.626667pt;}
.x4c_c00126{left:711.933333pt;}
.x8d_c00126{left:715.773333pt;}
.xe5_c00126{left:717.306667pt;}
.xc9_c00126{left:718.853333pt;}
.x1c_c00126{left:720.386667pt;}
.x66_c00126{left:721.920000pt;}
.x27_c00126{left:724.986667pt;}
.xae_c00126{left:727.293333pt;}
.x96_c00126{left:729.600000pt;}
.x95_c00126{left:731.906667pt;}
.xda_c00126{left:733.440000pt;}
.xcf_c00126{left:734.973333pt;}
.x82_c00126{left:736.506667pt;}
.xd1_c00126{left:738.053333pt;}
.x6_c00126{left:740.346667pt;}
.x35_c00126{left:742.653333pt;}
.x67_c00126{left:744.186667pt;}
.x88_c00126{left:745.733333pt;}
.x1d_c00126{left:748.026667pt;}
.xe1_c00126{left:751.866667pt;}
.x8e_c00126{left:760.320000pt;}
.xaf_c00126{left:761.853333pt;}
.xbc_c00126{left:767.226667pt;}
.x8f_c00126{left:769.533333pt;}
.xec_c00126{left:772.613333pt;}
.x4d_c00126{left:777.213333pt;}
.x7_c00126{left:779.520000pt;}
.xfe_c00126{left:810.240000pt;}
.xff_c00126{left:813.306667pt;}
.xf6_c00126{left:818.693333pt;}
.x100_c00126{left:821.760000pt;}
.xf7_c00126{left:829.440000pt;}
.xf8_c00126{left:907.013333pt;}
.xf9_c00126{left:916.226667pt;}
.xfa_c00126{left:926.973333pt;}
.xfb_c00126{left:935.426667pt;}
.xfc_c00126{left:937.733333pt;}
.xfd_c00126{left:953.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00127;src:url('chunks/assets/font_4b44dcc538d63d55e5a50cd0.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.109863;font-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_c00127{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00127{transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);}
.m178_c00127{transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);}
.mc0_c00127{transform:matrix(0.071175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071175,0.000000,0.000000,0.250000,0,0);}
.m13a_c00127{transform:matrix(0.072125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072125,0.000000,0.000000,0.250000,0,0);}
.ma8_c00127{transform:matrix(0.079625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079625,0.000000,0.000000,0.250000,0,0);}
.m179_c00127{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m35_c00127{transform:matrix(0.089100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089100,0.000000,0.000000,0.250000,0,0);}
.m54_c00127{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.m165_c00127{transform:matrix(0.092850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092850,0.000000,0.000000,0.250000,0,0);}
.m17e_c00127{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.m16c_c00127{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);}
.m9c_c00127{transform:matrix(0.098900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098900,0.000000,0.000000,0.250000,0,0);}
.m149_c00127{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);}
.m139_c00127{transform:matrix(0.102350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102350,0.000000,0.000000,0.250000,0,0);}
.m143_c00127{transform:matrix(0.103425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103425,0.000000,0.000000,0.250000,0,0);}
.m105_c00127{transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);}
.m114_c00127{transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);}
.m39_c00127{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m33_c00127{transform:matrix(0.111975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111975,0.000000,0.000000,0.250000,0,0);}
.mb3_c00127{transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);}
.m117_c00127{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);}
.m64_c00127{transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);}
.m16a_c00127{transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);}
.m4c_c00127{transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);}
.m26_c00127{transform:matrix(0.118850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118850,0.000000,0.000000,0.250000,0,0);}
.m15_c00127{transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);}
.m38_c00127{transform:matrix(0.123875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123875,0.000000,0.000000,0.250000,0,0);}
.m16b_c00127{transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);}
.m18_c00127{transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);}
.m135_c00127{transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);}
.m8d_c00127{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m187_c00127{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m86_c00127{transform:matrix(0.127200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127200,0.000000,0.000000,0.250000,0,0);}
.m154_c00127{transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);}
.m14_c00127{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00127{transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);}
.m11_c00127{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.mba_c00127{transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);}
.m3c_c00127{transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);}
.m14f_c00127{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.m43_c00127{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);}
.m120_c00127{transform:matrix(0.132725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132725,0.000000,0.000000,0.250000,0,0);}
.m11a_c00127{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.m17d_c00127{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);}
.md9_c00127{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.me5_c00127{transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);}
.m167_c00127{transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);}
.ma7_c00127{transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);}
.mbf_c00127{transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);}
.m16d_c00127{transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);}
.m157_c00127{transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);}
.m7c_c00127{transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);}
.m147_c00127{transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);}
.m127_c00127{transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);}
.mb5_c00127{transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);}
.mfc_c00127{transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);}
.m129_c00127{transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);}
.m82_c00127{transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);}
.m14d_c00127{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m125_c00127{transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);}
.mf7_c00127{transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);}
.m3a_c00127{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00127{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m137_c00127{transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);}
.m8_c00127{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00127{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.m119_c00127{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);}
.mf1_c00127{transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);}
.m48_c00127{transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);}
.m141_c00127{transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);}
.m12c_c00127{transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);}
.m8e_c00127{transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);}
.m7a_c00127{transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);}
.m3d_c00127{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);}
.mbc_c00127{transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);}
.m15e_c00127{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);}
.ma_c00127{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);}
.m4d_c00127{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m14c_c00127{transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);}
.mc2_c00127{transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);}
.mde_c00127{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.m16_c00127{transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);}
.mbe_c00127{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00127{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.mca_c00127{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00127{transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);}
.mcd_c00127{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.m169_c00127{transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);}
.m94_c00127{transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);}
.m52_c00127{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m177_c00127{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.mc6_c00127{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);}
.m163_c00127{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m126_c00127{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.m45_c00127{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.me3_c00127{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);}
.md_c00127{transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);}
.m2f_c00127{transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);}
.m15a_c00127{transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);}
.m60_c00127{transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);}
.m150_c00127{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);}
.m134_c00127{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);}
.m12b_c00127{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);}
.m124_c00127{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.m84_c00127{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);}
.mc1_c00127{transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);}
.m14a_c00127{transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);}
.m1f_c00127{transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);}
.m13d_c00127{transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);}
.ma5_c00127{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m115_c00127{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m164_c00127{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mdf_c00127{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.m118_c00127{transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);}
.mea_c00127{transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);}
.m8b_c00127{transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);}
.mec_c00127{transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);}
.m4a_c00127{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);}
.m133_c00127{transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);}
.m51_c00127{transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);}
.mb_c00127{transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);}
.mcf_c00127{transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);}
.mf6_c00127{transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);}
.m98_c00127{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.m101_c00127{transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);}
.m3b_c00127{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m67_c00127{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m109_c00127{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.m128_c00127{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.mad_c00127{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m11f_c00127{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.m4b_c00127{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);}
.md1_c00127{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00127{transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);}
.mda_c00127{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m146_c00127{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);}
.mab_c00127{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m6_c00127{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.ma6_c00127{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);}
.m176_c00127{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m168_c00127{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);}
.mdd_c00127{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.m138_c00127{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.ma3_c00127{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);}
.m4e_c00127{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m34_c00127{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);}
.ma0_c00127{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);}
.m102_c00127{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.m122_c00127{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m11e_c00127{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.m30_c00127{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.m8a_c00127{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);}
.m148_c00127{transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);}
.m9a_c00127{transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);}
.me2_c00127{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.m121_c00127{transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);}
.m8c_c00127{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.me8_c00127{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.m7f_c00127{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m10a_c00127{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);}
.mdc_c00127{transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);}
.m174_c00127{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);}
.m158_c00127{transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);}
.med_c00127{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.me0_c00127{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);}
.mc7_c00127{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.mfa_c00127{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m9b_c00127{transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);}
.m1a_c00127{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.me7_c00127{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);}
.md3_c00127{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.mdb_c00127{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m75_c00127{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.mcc_c00127{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);}
.m62_c00127{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m153_c00127{transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);}
.mff_c00127{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);}
.m85_c00127{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);}
.m1b_c00127{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m14b_c00127{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.m56_c00127{transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);}
.m53_c00127{transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);}
.mf5_c00127{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m171_c00127{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);}
.m83_c00127{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.m93_c00127{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);}
.m2d_c00127{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m90_c00127{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.maf_c00127{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.mc4_c00127{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m14e_c00127{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m10c_c00127{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.m145_c00127{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m161_c00127{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);}
.m170_c00127{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);}
.m186_c00127{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.m175_c00127{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.m15b_c00127{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m136_c00127{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);}
.m10b_c00127{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);}
.m116_c00127{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.mb4_c00127{transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);}
.m92_c00127{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.mfe_c00127{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);}
.m5d_c00127{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);}
.m17_c00127{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);}
.me4_c00127{transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);}
.m160_c00127{transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);}
.mc8_c00127{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.m6a_c00127{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m88_c00127{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m166_c00127{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);}
.m159_c00127{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);}
.m46_c00127{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);}
.m9f_c00127{transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);}
.mb7_c00127{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m42_c00127{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.md2_c00127{transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);}
.m6d_c00127{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m107_c00127{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);}
.m36_c00127{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m95_c00127{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.m10e_c00127{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.maa_c00127{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m20_c00127{transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);}
.m15f_c00127{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);}
.mcb_c00127{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.m155_c00127{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);}
.m5e_c00127{transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);}
.mfb_c00127{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.m4f_c00127{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.m97_c00127{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.mc_c00127{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);}
.m7_c00127{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m9_c00127{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m13f_c00127{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.mce_c00127{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);}
.m70_c00127{transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);}
.m57_c00127{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);}
.m73_c00127{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.mf2_c00127{transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);}
.m106_c00127{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m8f_c00127{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);}
.m81_c00127{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);}
.m100_c00127{transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);}
.ma2_c00127{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m2e_c00127{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.mb8_c00127{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m183_c00127{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);}
.m144_c00127{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.mfd_c00127{transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);}
.mb6_c00127{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.m59_c00127{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf4_c00127{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);}
.mc9_c00127{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);}
.m80_c00127{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m140_c00127{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.mb2_c00127{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m72_c00127{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);}
.m63_c00127{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.mc5_c00127{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m151_c00127{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);}
.mb9_c00127{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);}
.mf8_c00127{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m152_c00127{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.m104_c00127{transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);}
.mf9_c00127{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);}
.m172_c00127{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);}
.mac_c00127{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m13_c00127{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.m76_c00127{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);}
.m44_c00127{transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);}
.m15c_c00127{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m16e_c00127{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);}
.md4_c00127{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);}
.m162_c00127{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);}
.m79_c00127{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);}
.m108_c00127{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);}
.m9e_c00127{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);}
.mb0_c00127{transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);}
.m7e_c00127{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m110_c00127{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);}
.m13c_c00127{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);}
.m87_c00127{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.md5_c00127{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.mb1_c00127{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);}
.m6e_c00127{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m12d_c00127{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m10f_c00127{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);}
.m25_c00127{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);}
.ma1_c00127{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m99_c00127{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);}
.m66_c00127{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);}
.m1c_c00127{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);}
.m61_c00127{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);}
.m0_c00127{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00127{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00127{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mee_c00127{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);}
.m7b_c00127{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m69_c00127{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);}
.m71_c00127{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);}
.m29_c00127{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00127{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);}
.m1_c00127{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m77_c00127{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m55_c00127{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);}
.m22_c00127{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00127{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);}
.m91_c00127{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);}
.m9d_c00127{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00127{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m41_c00127{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);}
.m96_c00127{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m21_c00127{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m113_c00127{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);}
.m13e_c00127{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m58_c00127{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00127{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m68_c00127{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m131_c00127{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m23_c00127{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00127{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m111_c00127{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m112_c00127{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);}
.m142_c00127{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md0_c00127{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m40_c00127{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00127{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);}
.mae_c00127{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);}
.m5c_c00127{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m89_c00127{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);}
.m2b_c00127{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m32_c00127{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3_c00127{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);}
.m6c_c00127{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m65_c00127{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m184_c00127{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);}
.m13b_c00127{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m50_c00127{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m28_c00127{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.me9_c00127{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);}
.m6f_c00127{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.me6_c00127{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);}
.mf0_c00127{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.md6_c00127{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c00127{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c00127{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m24_c00127{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.me_c00127{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m49_c00127{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00127{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00127{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00127{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00127{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.md7_c00127{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);}
.m17f_c00127{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00127{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m31_c00127{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00127{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);}
.m12a_c00127{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00127{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m182_c00127{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m103_c00127{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mef_c00127{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m47_c00127{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m37_c00127{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4_c00127{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m15d_c00127{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m74_c00127{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);}
.m78_c00127{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m132_c00127{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m16f_c00127{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m181_c00127{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m185_c00127{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00127{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m123_c00127{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m173_c00127{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m180_c00127{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.md8_c00127{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.me1_c00127{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m156_c00127{transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);}
.m27_c00127{transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);}
.m17c_c00127{transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);}
.m17b_c00127{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.meb_c00127{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00127{transform:matrix(1.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.305000,0.000000,0.000000,0.250000,0,0);}
.m17a_c00127{transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);}
.m12_c00127{transform:matrix(2.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.105000,0.000000,0.000000,0.250000,0,0);}
.m130_c00127{transform:matrix(2.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.447500,0.000000,0.000000,0.250000,0,0);}
.m10_c00127{transform:matrix(14.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(14.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(14.040000,0.000000,0.000000,0.250000,0,0);}
.v3_c00127{vertical-align:-3.420000px;}
.v0_c00127{vertical-align:0.000000px;}
.v2_c00127{vertical-align:3.480000px;}
.v4_c00127{vertical-align:6.900000px;}
.v1_c00127{vertical-align:10.320000px;}
.ls4_c00127{letter-spacing:0.000000px;}
.ls1_c00127{letter-spacing:57.985152px;}
.ls3_c00127{letter-spacing:62.490000px;}
.ls0_c00127{letter-spacing:68.525460px;}
.ls2_c00127{letter-spacing:72.256740px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00127{word-spacing:-6.443040px;}
.ws1_c00127{word-spacing:0.000000px;}
.fc0_c00127{color:transparent;}
.fs10_c00127{font-size:3.456000px;}
.fs6_c00127{font-size:6.000000px;}
.fsc_c00127{font-size:6.900000px;}
.fs1_c00127{font-size:10.380000px;}
.fs2_c00127{font-size:13.800000px;}
.fse_c00127{font-size:17.280000px;}
.fsf_c00127{font-size:20.760000px;}
.fsd_c00127{font-size:24.180000px;}
.fsb_c00127{font-size:27.660000px;}
.fs25_c00127{font-size:31.080000px;}
.fs19_c00127{font-size:34.560000px;}
.fs14_c00127{font-size:38.040000px;}
.fs3_c00127{font-size:41.460000px;}
.fs1b_c00127{font-size:44.940000px;}
.fs0_c00127{font-size:48.360000px;}
.fs20_c00127{font-size:51.840000px;}
.fs24_c00127{font-size:55.320000px;}
.fs17_c00127{font-size:58.740000px;}
.fs4_c00127{font-size:62.220000px;}
.fs15_c00127{font-size:65.640000px;}
.fs16_c00127{font-size:69.120000px;}
.fs1f_c00127{font-size:72.600000px;}
.fs18_c00127{font-size:76.020000px;}
.fs22_c00127{font-size:79.500000px;}
.fs7_c00127{font-size:82.920000px;}
.fs8_c00127{font-size:86.400000px;}
.fs21_c00127{font-size:89.880000px;}
.fs1a_c00127{font-size:93.300000px;}
.fs12_c00127{font-size:96.780000px;}
.fs5_c00127{font-size:100.200000px;}
.fs1e_c00127{font-size:103.680000px;}
.fsa_c00127{font-size:107.160000px;}
.fs23_c00127{font-size:110.580000px;}
.fs9_c00127{font-size:114.060000px;}
.fs13_c00127{font-size:117.480000px;}
.fs1c_c00127{font-size:120.960000px;}
.fs11_c00127{font-size:124.440000px;}
.fs1d_c00127{font-size:131.340000px;}
.y0_c00127{bottom:0.000000px;}
.y170_c00127{bottom:217.725000px;}
.y16f_c00127{bottom:218.595000px;}
.y16e_c00127{bottom:223.770000px;}
.y171_c00127{bottom:227.235000px;}
.y16a_c00127{bottom:228.960000px;}
.y169_c00127{bottom:229.830000px;}
.y16d_c00127{bottom:230.685000px;}
.y168_c00127{bottom:233.280000px;}
.y16b_c00127{bottom:238.470000px;}
.y16c_c00127{bottom:246.240000px;}
.y163_c00127{bottom:253.155000px;}
.y161_c00127{bottom:254.010000px;}
.y164_c00127{bottom:254.880000px;}
.y162_c00127{bottom:255.750000px;}
.y165_c00127{bottom:260.925000px;}
.y167_c00127{bottom:264.390000px;}
.y166_c00127{bottom:268.710000px;}
.y15b_c00127{bottom:273.030000px;}
.y15d_c00127{bottom:273.885000px;}
.y15c_c00127{bottom:274.755000px;}
.y15e_c00127{bottom:275.610000px;}
.y15f_c00127{bottom:277.350000px;}
.y160_c00127{bottom:281.670000px;}
.y159_c00127{bottom:301.530000px;}
.y157_c00127{bottom:302.400000px;}
.y15a_c00127{bottom:303.270000px;}
.y158_c00127{bottom:305.850000px;}
.y18d_c00127{bottom:306.720000px;}
.y156_c00127{bottom:308.445000px;}
.y155_c00127{bottom:311.910000px;}
.y14f_c00127{bottom:331.770000px;}
.y150_c00127{bottom:333.510000px;}
.y154_c00127{bottom:335.235000px;}
.y153_c00127{bottom:336.090000px;}
.y152_c00127{bottom:336.960000px;}
.y151_c00127{bottom:340.410000px;}
.y14a_c00127{bottom:352.515000px;}
.y14d_c00127{bottom:354.240000px;}
.y14c_c00127{bottom:355.110000px;}
.y14b_c00127{bottom:355.965000px;}
.y14e_c00127{bottom:358.560000px;}
.y147_c00127{bottom:362.880000px;}
.y149_c00127{bottom:365.475000px;}
.y148_c00127{bottom:374.970000px;}
.y145_c00127{bottom:378.435000px;}
.y141_c00127{bottom:379.290000px;}
.y143_c00127{bottom:381.030000px;}
.y146_c00127{bottom:381.885000px;}
.y144_c00127{bottom:383.610000px;}
.y13f_c00127{bottom:384.480000px;}
.y142_c00127{bottom:388.800000px;}
.y140_c00127{bottom:389.670000px;}
.y13e_c00127{bottom:401.760000px;}
.y138_c00127{bottom:402.630000px;}
.y13a_c00127{bottom:403.485000px;}
.y13d_c00127{bottom:404.355000px;}
.y139_c00127{bottom:405.210000px;}
.y137_c00127{bottom:406.080000px;}
.y13c_c00127{bottom:406.950000px;}
.y13b_c00127{bottom:410.400000px;}
.y133_c00127{bottom:429.405000px;}
.y132_c00127{bottom:430.275000px;}
.y134_c00127{bottom:431.130000px;}
.y185_c00127{bottom:441.510000px;}
.y135_c00127{bottom:444.960000px;}
.y136_c00127{bottom:452.730000px;}
.y12e_c00127{bottom:453.600000px;}
.y12c_c00127{bottom:454.470000px;}
.y129_c00127{bottom:457.050000px;}
.y12f_c00127{bottom:457.920000px;}
.y128_c00127{bottom:458.790000px;}
.y12d_c00127{bottom:459.645000px;}
.y12b_c00127{bottom:461.370000px;}
.y12a_c00127{bottom:462.240000px;}
.y130_c00127{bottom:465.690000px;}
.y131_c00127{bottom:468.285000px;}
.y127_c00127{bottom:469.155000px;}
.y124_c00127{bottom:476.925000px;}
.y123_c00127{bottom:477.795000px;}
.y11e_c00127{bottom:478.650000px;}
.y11f_c00127{bottom:480.390000px;}
.y120_c00127{bottom:481.245000px;}
.y121_c00127{bottom:482.115000px;}
.y125_c00127{bottom:482.970000px;}
.y122_c00127{bottom:485.565000px;}
.y126_c00127{bottom:493.350000px;}
.y11d_c00127{bottom:494.205000px;}
.y118_c00127{bottom:501.990000px;}
.y116_c00127{bottom:502.845000px;}
.y11a_c00127{bottom:503.715000px;}
.y11b_c00127{bottom:504.570000px;}
.y119_c00127{bottom:505.440000px;}
.y115_c00127{bottom:506.310000px;}
.y11c_c00127{bottom:509.760000px;}
.y117_c00127{bottom:511.485000px;}
.y114_c00127{bottom:514.080000px;}
.y113_c00127{bottom:529.635000px;}
.y112_c00127{bottom:530.490000px;}
.y111_c00127{bottom:531.360000px;}
.y10f_c00127{bottom:553.830000px;}
.y10d_c00127{bottom:555.555000px;}
.y10c_c00127{bottom:558.150000px;}
.y10e_c00127{bottom:560.730000px;}
.y110_c00127{bottom:580.605000px;}
.y109_c00127{bottom:581.475000px;}
.y104_c00127{bottom:582.330000px;}
.y10a_c00127{bottom:584.070000px;}
.y108_c00127{bottom:584.925000px;}
.y107_c00127{bottom:585.795000px;}
.y10b_c00127{bottom:586.650000px;}
.y106_c00127{bottom:587.520000px;}
.y105_c00127{bottom:588.390000px;}
.y101_c00127{bottom:606.525000px;}
.yff_c00127{bottom:608.250000px;}
.y102_c00127{bottom:609.990000px;}
.y103_c00127{bottom:610.845000px;}
.yfe_c00127{bottom:611.715000px;}
.y100_c00127{bottom:612.570000px;}
.y183_c00127{bottom:614.310000px;}
.y184_c00127{bottom:615.165000px;}
.y182_c00127{bottom:623.805000px;}
.yfc_c00127{bottom:628.995000px;}
.yfb_c00127{bottom:631.590000px;}
.yfd_c00127{bottom:632.445000px;}
.yf8_c00127{bottom:633.315000px;}
.yf9_c00127{bottom:634.170000px;}
.yf7_c00127{bottom:635.910000px;}
.yfa_c00127{bottom:637.635000px;}
.yf6_c00127{bottom:654.045000px;}
.yf3_c00127{bottom:654.915000px;}
.yf4_c00127{bottom:656.640000px;}
.yf5_c00127{bottom:657.510000px;}
.yf2_c00127{bottom:661.830000px;}
.yf1_c00127{bottom:667.875000px;}
.yef_c00127{bottom:679.110000px;}
.yed_c00127{bottom:679.965000px;}
.yee_c00127{bottom:680.835000px;}
.yf0_c00127{bottom:681.690000px;}
.ye8_c00127{bottom:702.435000px;}
.yea_c00127{bottom:704.160000px;}
.ye6_c00127{bottom:705.030000px;}
.ye9_c00127{bottom:708.480000px;}
.ye4_c00127{bottom:709.350000px;}
.ye5_c00127{bottom:710.205000px;}
.yeb_c00127{bottom:711.075000px;}
.ye7_c00127{bottom:711.930000px;}
.ye3_c00127{bottom:713.670000px;}
.yec_c00127{bottom:717.120000px;}
.ye2_c00127{bottom:717.990000px;}
.yde_c00127{bottom:726.630000px;}
.yd8_c00127{bottom:728.355000px;}
.ydc_c00127{bottom:729.210000px;}
.yda_c00127{bottom:730.080000px;}
.yd9_c00127{bottom:730.950000px;}
.ydb_c00127{bottom:731.805000px;}
.ye0_c00127{bottom:734.400000px;}
.ydd_c00127{bottom:735.270000px;}
.ydf_c00127{bottom:736.995000px;}
.ye1_c00127{bottom:738.720000px;}
.yd7_c00127{bottom:749.085000px;}
.yd5_c00127{bottom:751.680000px;}
.yd1_c00127{bottom:752.550000px;}
.yce_c00127{bottom:753.405000px;}
.yd6_c00127{bottom:754.275000px;}
.yd4_c00127{bottom:756.870000px;}
.yd0_c00127{bottom:757.725000px;}
.ycd_c00127{bottom:758.595000px;}
.yd2_c00127{bottom:759.450000px;}
.ycf_c00127{bottom:760.320000px;}
.yd3_c00127{bottom:761.190000px;}
.y180_c00127{bottom:762.915000px;}
.y181_c00127{bottom:763.770000px;}
.ycc_c00127{bottom:776.730000px;}
.yc5_c00127{bottom:777.600000px;}
.yc6_c00127{bottom:778.470000px;}
.yc9_c00127{bottom:779.325000px;}
.yc4_c00127{bottom:781.920000px;}
.yc8_c00127{bottom:783.645000px;}
.yc7_c00127{bottom:784.515000px;}
.ycb_c00127{bottom:785.370000px;}
.yca_c00127{bottom:797.475000px;}
.yc0_c00127{bottom:800.070000px;}
.ybd_c00127{bottom:800.925000px;}
.yc1_c00127{bottom:801.795000px;}
.ybf_c00127{bottom:802.650000px;}
.ybe_c00127{bottom:803.520000px;}
.y17f_c00127{bottom:804.390000px;}
.ybc_c00127{bottom:806.115000px;}
.ybb_c00127{bottom:807.840000px;}
.yc2_c00127{bottom:809.565000px;}
.y17e_c00127{bottom:813.885000px;}
.yc3_c00127{bottom:819.930000px;}
.yb7_c00127{bottom:825.990000px;}
.yb9_c00127{bottom:826.845000px;}
.yb6_c00127{bottom:832.890000px;}
.yb8_c00127{bottom:833.760000px;}
.y17d_c00127{bottom:840.675000px;}
.yba_c00127{bottom:843.270000px;}
.yb5_c00127{bottom:845.850000px;}
.yb2_c00127{bottom:849.315000px;}
.yb0_c00127{bottom:851.040000px;}
.yb3_c00127{bottom:851.910000px;}
.yb1_c00127{bottom:853.635000px;}
.yaf_c00127{bottom:857.955000px;}
.yb4_c00127{bottom:863.130000px;}
.yae_c00127{bottom:871.770000px;}
.yac_c00127{bottom:875.235000px;}
.ya9_c00127{bottom:876.090000px;}
.yaa_c00127{bottom:877.830000px;}
.yab_c00127{bottom:879.555000px;}
.yad_c00127{bottom:886.470000px;}
.ya8_c00127{bottom:901.155000px;}
.ya7_c00127{bottom:902.010000px;}
.ya4_c00127{bottom:903.750000px;}
.ya6_c00127{bottom:904.605000px;}
.ya5_c00127{bottom:905.475000px;}
.ya3_c00127{bottom:906.330000px;}
.ya0_c00127{bottom:924.480000px;}
.y9c_c00127{bottom:926.205000px;}
.y9d_c00127{bottom:927.075000px;}
.ya1_c00127{bottom:928.800000px;}
.y9e_c00127{bottom:929.670000px;}
.ya2_c00127{bottom:931.395000px;}
.y9f_c00127{bottom:932.250000px;}
.y17c_c00127{bottom:933.120000px;}
.y17b_c00127{bottom:936.570000px;}
.y9b_c00127{bottom:941.760000px;}
.y97_c00127{bottom:950.400000px;}
.y96_c00127{bottom:951.270000px;}
.y98_c00127{bottom:952.125000px;}
.y9a_c00127{bottom:952.995000px;}
.y99_c00127{bottom:957.315000px;}
.y8e_c00127{bottom:975.450000px;}
.y90_c00127{bottom:976.320000px;}
.y94_c00127{bottom:978.045000px;}
.y8f_c00127{bottom:979.770000px;}
.y91_c00127{bottom:981.510000px;}
.y92_c00127{bottom:982.365000px;}
.y93_c00127{bottom:984.090000px;}
.y95_c00127{bottom:984.960000px;}
.y8b_c00127{bottom:1001.370000px;}
.y8a_c00127{bottom:1002.240000px;}
.y89_c00127{bottom:1006.560000px;}
.y8c_c00127{bottom:1007.430000px;}
.y8d_c00127{bottom:1011.750000px;}
.y18b_c00127{bottom:1014.330000px;}
.y88_c00127{bottom:1016.070000px;}
.y18c_c00127{bottom:1018.650000px;}
.y81_c00127{bottom:1025.565000px;}
.y83_c00127{bottom:1027.290000px;}
.y84_c00127{bottom:1028.160000px;}
.y17a_c00127{bottom:1029.030000px;}
.y82_c00127{bottom:1029.885000px;}
.y87_c00127{bottom:1032.480000px;}
.y86_c00127{bottom:1033.350000px;}
.y85_c00127{bottom:1034.205000px;}
.y7b_c00127{bottom:1051.485000px;}
.y7a_c00127{bottom:1053.210000px;}
.y7d_c00127{bottom:1054.080000px;}
.y79_c00127{bottom:1054.950000px;}
.y7e_c00127{bottom:1055.805000px;}
.y7c_c00127{bottom:1056.675000px;}
.y7f_c00127{bottom:1060.995000px;}
.y78_c00127{bottom:1063.590000px;}
.y80_c00127{bottom:1068.765000px;}
.y75_c00127{bottom:1079.130000px;}
.y72_c00127{bottom:1080.000000px;}
.y74_c00127{bottom:1080.870000px;}
.y73_c00127{bottom:1083.450000px;}
.y76_c00127{bottom:1084.320000px;}
.y77_c00127{bottom:1090.365000px;}
.y6b_c00127{bottom:1101.600000px;}
.y6e_c00127{bottom:1103.325000px;}
.y70_c00127{bottom:1104.195000px;}
.y6d_c00127{bottom:1105.920000px;}
.y6f_c00127{bottom:1106.790000px;}
.y179_c00127{bottom:1107.645000px;}
.y6c_c00127{bottom:1109.370000px;}
.y71_c00127{bottom:1117.155000px;}
.y66_c00127{bottom:1126.650000px;}
.y65_c00127{bottom:1130.115000px;}
.y6a_c00127{bottom:1130.970000px;}
.y68_c00127{bottom:1131.840000px;}
.y67_c00127{bottom:1134.435000px;}
.y69_c00127{bottom:1137.030000px;}
.y5e_c00127{bottom:1151.715000px;}
.y5f_c00127{bottom:1152.570000px;}
.y64_c00127{bottom:1153.440000px;}
.y63_c00127{bottom:1154.310000px;}
.y61_c00127{bottom:1156.890000px;}
.y60_c00127{bottom:1160.355000px;}
.y62_c00127{bottom:1161.210000px;}
.y57_c00127{bottom:1176.765000px;}
.y59_c00127{bottom:1177.635000px;}
.y5b_c00127{bottom:1178.490000px;}
.y58_c00127{bottom:1179.360000px;}
.y54_c00127{bottom:1181.085000px;}
.y55_c00127{bottom:1181.955000px;}
.y5c_c00127{bottom:1182.810000px;}
.y56_c00127{bottom:1183.680000px;}
.y5d_c00127{bottom:1184.550000px;}
.y5a_c00127{bottom:1187.130000px;}
.y4d_c00127{bottom:1198.365000px;}
.y4c_c00127{bottom:1200.090000px;}
.y52_c00127{bottom:1200.960000px;}
.y53_c00127{bottom:1201.830000px;}
.y50_c00127{bottom:1203.555000px;}
.y51_c00127{bottom:1208.730000px;}
.y4e_c00127{bottom:1221.690000px;}
.y4f_c00127{bottom:1225.155000px;}
.y4a_c00127{bottom:1226.010000px;}
.y4b_c00127{bottom:1226.880000px;}
.y48_c00127{bottom:1227.750000px;}
.y49_c00127{bottom:1232.925000px;}
.y177_c00127{bottom:1247.610000px;}
.y178_c00127{bottom:1248.480000px;}
.y176_c00127{bottom:1251.930000px;}
.y47_c00127{bottom:1254.525000px;}
.y46_c00127{bottom:1255.395000px;}
.y45_c00127{bottom:1256.250000px;}
.y3f_c00127{bottom:1257.990000px;}
.y40_c00127{bottom:1258.845000px;}
.y42_c00127{bottom:1259.715000px;}
.y41_c00127{bottom:1260.570000px;}
.y43_c00127{bottom:1261.440000px;}
.y44_c00127{bottom:1262.310000px;}
.y35_c00127{bottom:1271.805000px;}
.y3b_c00127{bottom:1272.675000px;}
.y37_c00127{bottom:1273.530000px;}
.y3a_c00127{bottom:1274.400000px;}
.y3e_c00127{bottom:1275.270000px;}
.y36_c00127{bottom:1276.125000px;}
.y33_c00127{bottom:1277.850000px;}
.y38_c00127{bottom:1278.720000px;}
.y3c_c00127{bottom:1279.590000px;}
.y39_c00127{bottom:1283.040000px;}
.y3d_c00127{bottom:1283.910000px;}
.y34_c00127{bottom:1286.490000px;}
.y18a_c00127{bottom:1289.085000px;}
.y2f_c00127{bottom:1302.915000px;}
.y31_c00127{bottom:1303.770000px;}
.y30_c00127{bottom:1304.640000px;}
.y2c_c00127{bottom:1306.365000px;}
.y2b_c00127{bottom:1307.235000px;}
.y2d_c00127{bottom:1308.090000px;}
.y2e_c00127{bottom:1309.830000px;}
.y32_c00127{bottom:1310.685000px;}
.y174_c00127{bottom:1323.645000px;}
.y1f_c00127{bottom:1325.370000px;}
.y175_c00127{bottom:1326.240000px;}
.y21_c00127{bottom:1327.110000px;}
.y22_c00127{bottom:1327.965000px;}
.y28_c00127{bottom:1331.430000px;}
.y1e_c00127{bottom:1333.155000px;}
.y20_c00127{bottom:1334.010000px;}
.y26_c00127{bottom:1334.880000px;}
.y23_c00127{bottom:1335.750000px;}
.y24_c00127{bottom:1336.605000px;}
.y25_c00127{bottom:1337.475000px;}
.y27_c00127{bottom:1338.330000px;}
.y2a_c00127{bottom:1339.200000px;}
.y189_c00127{bottom:1340.070000px;}
.y29_c00127{bottom:1344.390000px;}
.y19_c00127{bottom:1346.970000px;}
.y188_c00127{bottom:1347.840000px;}
.y18_c00127{bottom:1349.565000px;}
.y1a_c00127{bottom:1350.435000px;}
.y1d_c00127{bottom:1351.290000px;}
.y1b_c00127{bottom:1353.885000px;}
.y17_c00127{bottom:1357.350000px;}
.y1c_c00127{bottom:1362.525000px;}
.y15_c00127{bottom:1368.570000px;}
.y16_c00127{bottom:1369.440000px;}
.y11_c00127{bottom:1378.950000px;}
.y13_c00127{bottom:1380.675000px;}
.y14_c00127{bottom:1381.530000px;}
.y12_c00127{bottom:1382.400000px;}
.yd_c00127{bottom:1384.995000px;}
.y6_c00127{bottom:1385.850000px;}
.yc_c00127{bottom:1386.720000px;}
.y8_c00127{bottom:1387.590000px;}
.yb_c00127{bottom:1388.445000px;}
.y7_c00127{bottom:1391.910000px;}
.y9_c00127{bottom:1392.765000px;}
.ye_c00127{bottom:1398.810000px;}
.ya_c00127{bottom:1404.000000px;}
.y10_c00127{bottom:1404.870000px;}
.yf_c00127{bottom:1407.450000px;}
.y4_c00127{bottom:1410.915000px;}
.y3_c00127{bottom:1412.640000px;}
.y5_c00127{bottom:1413.510000px;}
.y173_c00127{bottom:1416.960000px;}
.y1_c00127{bottom:1422.150000px;}
.y172_c00127{bottom:1423.005000px;}
.y187_c00127{bottom:1424.730000px;}
.y2_c00127{bottom:1430.790000px;}
.y186_c00127{bottom:1445.475000px;}
.h13_c00127{height:3.110063px;}
.h8_c00127{height:5.399414px;}
.h11_c00127{height:6.209326px;}
.h3_c00127{height:9.340986px;}
.h4_c00127{height:12.418652px;}
.h10_c00127{height:15.550313px;}
.h2a_c00127{height:16.240986px;}
.he_c00127{height:16.529326px;}
.h12_c00127{height:18.681973px;}
.hf_c00127{height:21.759639px;}
.hd_c00127{height:24.891299px;}
.h28_c00127{height:27.968965px;}
.h1c_c00127{height:31.100625px;}
.h17_c00127{height:34.232285px;}
.h5_c00127{height:37.309951px;}
.h1e_c00127{height:40.441611px;}
.h2_c00127{height:43.519277px;}
.h23_c00127{height:46.650937px;}
.h27_c00127{height:49.782598px;}
.h1a_c00127{height:52.860264px;}
.h29_c00127{height:53.262598px;}
.h6_c00127{height:55.991924px;}
.h18_c00127{height:59.069590px;}
.h19_c00127{height:62.201250px;}
.h22_c00127{height:65.332910px;}
.h1b_c00127{height:68.410576px;}
.h25_c00127{height:71.542236px;}
.h9_c00127{height:74.619902px;}
.ha_c00127{height:77.751563px;}
.h24_c00127{height:80.883223px;}
.h1d_c00127{height:83.960889px;}
.h15_c00127{height:87.092549px;}
.h7_c00127{height:90.170215px;}
.h21_c00127{height:93.301875px;}
.hc_c00127{height:96.433535px;}
.h26_c00127{height:99.511201px;}
.hb_c00127{height:102.642861px;}
.h16_c00127{height:105.720527px;}
.h1f_c00127{height:108.852188px;}
.h14_c00127{height:111.983848px;}
.h20_c00127{height:118.193174px;}
.h1_c00127{height:1503.000000px;}
.h0_c00127{height:1503.360000px;}
.w0_c00127{width:1088.640000px;}
.w1_c00127{width:1089.000000px;}
.x0_c00127{left:0.000000px;}
.xfd_c00127{left:2.595000px;}
.xfe_c00127{left:14.685000px;}
.x10a_c00127{left:38.880000px;}
.x10b_c00127{left:49.245000px;}
.x10c_c00127{left:121.830000px;}
.x104_c00127{left:125.280000px;}
.x107_c00127{left:127.875000px;}
.xff_c00127{left:129.600000px;}
.xeb_c00127{left:133.920000px;}
.x103_c00127{left:136.515000px;}
.x13_c00127{left:138.240000px;}
.x106_c00127{left:139.965000px;}
.x105_c00127{left:141.690000px;}
.x101_c00127{left:145.155000px;}
.xec_c00127{left:146.880000px;}
.x108_c00127{left:148.605000px;}
.x100_c00127{left:151.200000px;}
.x102_c00127{left:155.520000px;}
.x56_c00127{left:157.245000px;}
.x109_c00127{left:158.970000px;}
.x10d_c00127{left:164.160000px;}
.x57_c00127{left:166.755000px;}
.xf2_c00127{left:170.205000px;}
.xed_c00127{left:174.525000px;}
.x10f_c00127{left:176.250000px;}
.x1a_c00127{left:182.310000px;}
.xf3_c00127{left:185.760000px;}
.x1b_c00127{left:190.950000px;}
.xc7_c00127{left:197.850000px;}
.x58_c00127{left:199.590000px;}
.xc8_c00127{left:203.910000px;}
.xae_c00127{left:207.360000px;}
.x59_c00127{left:211.680000px;}
.xc4_c00127{left:215.129850px;}
.x9f_c00127{left:216.870000px;}
.x95_c00127{left:219.450000px;}
.x3d_c00127{left:222.045000px;}
.x5e_c00127{left:225.497952px;}
.x1c_c00127{left:227.235000px;}
.xf4_c00127{left:228.960000px;}
.xc9_c00127{left:230.685000px;}
.x3e_c00127{left:232.410000px;}
.x9b_c00127{left:234.150000px;}
.x97_c00127{left:235.875000px;}
.x67_c00127{left:237.600000px;}
.x51_c00127{left:240.195000px;}
.x1d_c00127{left:241.920000px;}
.x32_c00127{left:243.645000px;}
.x33_c00127{left:251.430000px;}
.xb2_c00127{left:254.880000px;}
.x81_c00127{left:259.200000px;}
.x48_c00127{left:265.245000px;}
.xa8_c00127{left:267.840000px;}
.x8a_c00127{left:269.565000px;}
.x7b_c00127{left:273.885000px;}
.x26_c00127{left:278.205000px;}
.x14_c00127{left:281.670000px;}
.x5f_c00127{left:285.990000px;}
.x85_c00127{left:287.715000px;}
.xb3_c00127{left:291.165000px;}
.x34_c00127{left:293.760000px;}
.x7c_c00127{left:295.485000px;}
.xd6_c00127{left:298.080000px;}
.x1e_c00127{left:300.675000px;}
.x8d_c00127{left:302.400000px;}
.x68_c00127{left:304.995000px;}
.xa3_c00127{left:306.720000px;}
.xb7_c00127{left:309.315000px;}
.x73_c00127{left:314.490000px;}
.x27_c00127{left:316.230000px;}
.xee_c00127{left:318.810000px;}
.x5a_c00127{left:321.405000px;}
.xe0_c00127{left:323.130000px;}
.xf6_c00127{left:327.450000px;}
.x60_c00127{left:330.045000px;}
.x8e_c00127{left:334.365000px;}
.x35_c00127{left:336.090000px;}
.xda_c00127{left:338.685000px;}
.xaf_c00127{left:341.280000px;}
.xa0_c00127{left:343.875000px;}
.x8b_c00127{left:346.470000px;}
.xf5_c00127{left:349.920000px;}
.x98_c00127{left:353.370000px;}
.x69_c00127{left:359.430000px;}
.x99_c00127{left:361.155000px;}
.x3f_c00127{left:362.880000px;}
.xd0_c00127{left:365.475000px;}
.x74_c00127{left:367.200000px;}
.xa9_c00127{left:369.795000px;}
.x36_c00127{left:371.520000px;}
.xf7_c00127{left:374.115000px;}
.xb4_c00127{left:377.565000px;}
.x28_c00127{left:380.160000px;}
.xe8_c00127{left:381.885000px;}
.xb8_c00127{left:383.610000px;}
.xdb_c00127{left:386.205000px;}
.x37_c00127{left:391.395000px;}
.x6_c00127{left:393.990000px;}
.x61_c00127{left:402.630000px;}
.x52_c00127{left:410.400000px;}
.x49_c00127{left:414.720000px;}
.x53_c00127{left:419.040000px;}
.xef_c00127{left:421.635000px;}
.x92_c00127{left:429.405000px;}
.x6a_c00127{left:433.725000px;}
.x1f_c00127{left:435.450000px;}
.xbe_c00127{left:440.640000px;}
.x29_c00127{left:442.365000px;}
.x4a_c00127{left:451.005000px;}
.x7_c00127{left:454.470000px;}
.xb5_c00127{left:457.920000px;}
.xa4_c00127{left:460.515000px;}
.x40_c00127{left:462.240000px;}
.xaa_c00127{left:464.835000px;}
.xbf_c00127{left:466.560000px;}
.x75_c00127{left:470.880000px;}
.x15_c00127{left:474.330000px;}
.x8_c00127{left:477.795000px;}
.x76_c00127{left:479.520000px;}
.x20_c00127{left:483.840000px;}
.xd5_c00127{left:485.565000px;}
.x2a_c00127{left:487.290000px;}
.x38_c00127{left:489.030000px;}
.xb9_c00127{left:493.350000px;}
.x70_c00127{left:501.990000px;}
.x21_c00127{left:504.570000px;}
.x5b_c00127{left:506.310000px;}
.x9c_c00127{left:509.760000px;}
.x6b_c00127{left:512.355000px;}
.xa5_c00127{left:514.080000px;}
.x77_c00127{left:516.675000px;}
.x1_c00127{left:518.400000px;}
.x4b_c00127{left:521.850000px;}
.x3_c00127{left:523.590000px;}
.x41_c00127{left:527.040000px;}
.xc5_c00127{left:530.490000px;}
.xcc_c00127{left:533.085000px;}
.xba_c00127{left:535.680000px;}
.x2_c00127{left:537.405000px;}
.x22_c00127{left:541.725000px;}
.x78_c00127{left:546.045000px;}
.xc0_c00127{left:549.510000px;}
.x9_c00127{left:554.685000px;}
.xab_c00127{left:557.280000px;}
.x62_c00127{left:559.005000px;}
.xa1_c00127{left:563.325000px;}
.xa_c00127{left:565.050000px;}
.x8f_c00127{left:569.370000px;}
.x4c_c00127{left:571.965000px;}
.xd1_c00127{left:576.285000px;}
.x7d_c00127{left:581.475000px;}
.xcd_c00127{left:583.200000px;}
.x6c_c00127{left:590.970000px;}
.x93_c00127{left:594.435000px;}
.x2b_c00127{left:599.610000px;}
.x39_c00127{left:602.205000px;}
.x16_c00127{left:607.395000px;}
.x63_c00127{left:610.845000px;}
.x90_c00127{left:613.440000px;}
.xb_c00127{left:615.165000px;}
.x4d_c00127{left:616.890000px;}
.x6d_c00127{left:622.950000px;}
.xca_c00127{left:624.675000px;}
.x4e_c00127{left:626.400000px;}
.x42_c00127{left:629.850000px;}
.x23_c00127{left:635.040000px;}
.xc_c00127{left:639.360000px;}
.xc1_c00127{left:643.680000px;}
.x82_c00127{left:648.000000px;}
.x96_c00127{left:650.595000px;}
.xc2_c00127{left:654.045000px;}
.x24_c00127{left:656.640000px;}
.x86_c00127{left:658.365000px;}
.x64_c00127{left:660.090000px;}
.xd_c00127{left:661.830000px;}
.x7e_c00127{left:666.150000px;}
.x17_c00127{left:669.600000px;}
.x54_c00127{left:671.325000px;}
.x2c_c00127{left:673.920000px;}
.x79_c00127{left:682.560000px;}
.xf0_c00127{left:685.155000px;}
.x4f_c00127{left:687.750000px;}
.xe_c00127{left:689.475000px;}
.x2d_c00127{left:692.070000px;}
.x87_c00127{left:698.115000px;}
.xf8_c00127{left:705.030000px;}
.x2e_c00127{left:708.480000px;}
.xd2_c00127{left:710.205000px;}
.x50_c00127{left:714.525000px;}
.xac_c00127{left:723.165000px;}
.xf1_c00127{left:724.890000px;}
.x71_c00127{left:726.630000px;}
.x83_c00127{left:729.210000px;}
.xce_c00127{left:734.400000px;}
.x3a_c00127{left:736.995000px;}
.x9a_c00127{left:738.720000px;}
.x91_c00127{left:741.315000px;}
.xa6_c00127{left:743.040000px;}
.xe9_c00127{left:747.360000px;}
.x88_c00127{left:749.955000px;}
.x43_c00127{left:756.000000px;}
.xc3_c00127{left:762.915000px;}
.x7f_c00127{left:764.640000px;}
.x55_c00127{left:767.235000px;}
.xe1_c00127{left:769.830000px;}
.x89_c00127{left:772.410000px;}
.x25_c00127{left:775.005000px;}
.xcb_c00127{left:777.600000px;}
.xe5_c00127{left:780.195000px;}
.xbb_c00127{left:781.920000px;}
.x94_c00127{left:786.240000px;}
.x18_c00127{left:787.965000px;}
.x2f_c00127{left:791.430000px;}
.x65_c00127{left:794.010000px;}
.xbc_c00127{left:798.330000px;}
.x44_c00127{left:800.070000px;}
.xb0_c00127{left:803.520000px;}
.x4_c00127{left:809.565000px;}
.xcf_c00127{left:812.160000px;}
.x30_c00127{left:815.610000px;}
.x45_c00127{left:817.350000px;}
.x84_c00127{left:819.075000px;}
.xc6_c00127{left:820.800000px;}
.xf9_c00127{left:822.525000px;}
.x3b_c00127{left:825.120000px;}
.xd3_c00127{left:826.845000px;}
.x80_c00127{left:828.570000px;}
.x5c_c00127{left:833.760000px;}
.xb1_c00127{left:835.485000px;}
.xa2_c00127{left:838.080000px;}
.x46_c00127{left:839.805000px;}
.x31_c00127{left:841.530000px;}
.xb6_c00127{left:844.995000px;}
.xf_c00127{left:846.720000px;}
.x3c_c00127{left:850.170000px;}
.x9d_c00127{left:853.635000px;}
.xd4_c00127{left:858.810000px;}
.x66_c00127{left:861.405000px;}
.xbd_c00127{left:867.450000px;}
.x7a_c00127{left:879.555000px;}
.x19_c00127{left:883.005000px;}
.x8c_c00127{left:884.730000px;}
.x6e_c00127{left:886.470000px;}
.xad_c00127{left:888.195000px;}
.x72_c00127{left:889.920000px;}
.xa7_c00127{left:891.645000px;}
.x6f_c00127{left:894.240000px;}
.x5d_c00127{left:898.560000px;}
.x47_c00127{left:902.010000px;}
.x10_c00127{left:903.750000px;}
.xea_c00127{left:908.070000px;}
.x9e_c00127{left:910.650000px;}
.xe6_c00127{left:913.245000px;}
.xfa_c00127{left:918.435000px;}
.xd7_c00127{left:921.885000px;}
.xe2_c00127{left:926.205000px;}
.x11_c00127{left:929.670000px;}
.x10e_c00127{left:937.440000px;}
.xdc_c00127{left:940.035000px;}
.x12_c00127{left:941.760000px;}
.xfc_c00127{left:944.355000px;}
.xfb_c00127{left:946.950000px;}
.xdd_c00127{left:953.850000px;}
.x5_c00127{left:959.040000px;}
.xd8_c00127{left:960.765000px;}
.xe3_c00127{left:968.550000px;}
.xde_c00127{left:970.275000px;}
.xe7_c00127{left:972.870000px;}
.xe4_c00127{left:978.915000px;}
.xdf_c00127{left:986.684952px;}
.xd9_c00127{left:991.005000px;}
@media print{
.v3_c00127{vertical-align:-3.040000pt;}
.v0_c00127{vertical-align:0.000000pt;}
.v2_c00127{vertical-align:3.093333pt;}
.v4_c00127{vertical-align:6.133333pt;}
.v1_c00127{vertical-align:9.173333pt;}
.ls4_c00127{letter-spacing:0.000000pt;}
.ls1_c00127{letter-spacing:51.542357pt;}
.ls3_c00127{letter-spacing:55.546667pt;}
.ls0_c00127{letter-spacing:60.911520pt;}
.ls2_c00127{letter-spacing:64.228213pt;}
.ws0_c00127{word-spacing:-5.727147pt;}
.ws1_c00127{word-spacing:0.000000pt;}
.fs10_c00127{font-size:3.072000pt;}
.fs6_c00127{font-size:5.333333pt;}
.fsc_c00127{font-size:6.133333pt;}
.fs1_c00127{font-size:9.226667pt;}
.fs2_c00127{font-size:12.266667pt;}
.fse_c00127{font-size:15.360000pt;}
.fsf_c00127{font-size:18.453333pt;}
.fsd_c00127{font-size:21.493333pt;}
.fsb_c00127{font-size:24.586667pt;}
.fs25_c00127{font-size:27.626667pt;}
.fs19_c00127{font-size:30.720000pt;}
.fs14_c00127{font-size:33.813333pt;}
.fs3_c00127{font-size:36.853333pt;}
.fs1b_c00127{font-size:39.946667pt;}
.fs0_c00127{font-size:42.986667pt;}
.fs20_c00127{font-size:46.080000pt;}
.fs24_c00127{font-size:49.173333pt;}
.fs17_c00127{font-size:52.213333pt;}
.fs4_c00127{font-size:55.306667pt;}
.fs15_c00127{font-size:58.346667pt;}
.fs16_c00127{font-size:61.440000pt;}
.fs1f_c00127{font-size:64.533333pt;}
.fs18_c00127{font-size:67.573333pt;}
.fs22_c00127{font-size:70.666667pt;}
.fs7_c00127{font-size:73.706667pt;}
.fs8_c00127{font-size:76.800000pt;}
.fs21_c00127{font-size:79.893333pt;}
.fs1a_c00127{font-size:82.933333pt;}
.fs12_c00127{font-size:86.026667pt;}
.fs5_c00127{font-size:89.066667pt;}
.fs1e_c00127{font-size:92.160000pt;}
.fsa_c00127{font-size:95.253333pt;}
.fs23_c00127{font-size:98.293333pt;}
.fs9_c00127{font-size:101.386667pt;}
.fs13_c00127{font-size:104.426667pt;}
.fs1c_c00127{font-size:107.520000pt;}
.fs11_c00127{font-size:110.613333pt;}
.fs1d_c00127{font-size:116.746667pt;}
.y0_c00127{bottom:0.000000pt;}
.y170_c00127{bottom:193.533333pt;}
.y16f_c00127{bottom:194.306667pt;}
.y16e_c00127{bottom:198.906667pt;}
.y171_c00127{bottom:201.986667pt;}
.y16a_c00127{bottom:203.520000pt;}
.y169_c00127{bottom:204.293333pt;}
.y16d_c00127{bottom:205.053333pt;}
.y168_c00127{bottom:207.360000pt;}
.y16b_c00127{bottom:211.973333pt;}
.y16c_c00127{bottom:218.880000pt;}
.y163_c00127{bottom:225.026667pt;}
.y161_c00127{bottom:225.786667pt;}
.y164_c00127{bottom:226.560000pt;}
.y162_c00127{bottom:227.333333pt;}
.y165_c00127{bottom:231.933333pt;}
.y167_c00127{bottom:235.013333pt;}
.y166_c00127{bottom:238.853333pt;}
.y15b_c00127{bottom:242.693333pt;}
.y15d_c00127{bottom:243.453333pt;}
.y15c_c00127{bottom:244.226667pt;}
.y15e_c00127{bottom:244.986667pt;}
.y15f_c00127{bottom:246.533333pt;}
.y160_c00127{bottom:250.373333pt;}
.y159_c00127{bottom:268.026667pt;}
.y157_c00127{bottom:268.800000pt;}
.y15a_c00127{bottom:269.573333pt;}
.y158_c00127{bottom:271.866667pt;}
.y18d_c00127{bottom:272.640000pt;}
.y156_c00127{bottom:274.173333pt;}
.y155_c00127{bottom:277.253333pt;}
.y14f_c00127{bottom:294.906667pt;}
.y150_c00127{bottom:296.453333pt;}
.y154_c00127{bottom:297.986667pt;}
.y153_c00127{bottom:298.746667pt;}
.y152_c00127{bottom:299.520000pt;}
.y151_c00127{bottom:302.586667pt;}
.y14a_c00127{bottom:313.346667pt;}
.y14d_c00127{bottom:314.880000pt;}
.y14c_c00127{bottom:315.653333pt;}
.y14b_c00127{bottom:316.413333pt;}
.y14e_c00127{bottom:318.720000pt;}
.y147_c00127{bottom:322.560000pt;}
.y149_c00127{bottom:324.866667pt;}
.y148_c00127{bottom:333.306667pt;}
.y145_c00127{bottom:336.386667pt;}
.y141_c00127{bottom:337.146667pt;}
.y143_c00127{bottom:338.693333pt;}
.y146_c00127{bottom:339.453333pt;}
.y144_c00127{bottom:340.986667pt;}
.y13f_c00127{bottom:341.760000pt;}
.y142_c00127{bottom:345.600000pt;}
.y140_c00127{bottom:346.373333pt;}
.y13e_c00127{bottom:357.120000pt;}
.y138_c00127{bottom:357.893333pt;}
.y13a_c00127{bottom:358.653333pt;}
.y13d_c00127{bottom:359.426667pt;}
.y139_c00127{bottom:360.186667pt;}
.y137_c00127{bottom:360.960000pt;}
.y13c_c00127{bottom:361.733333pt;}
.y13b_c00127{bottom:364.800000pt;}
.y133_c00127{bottom:381.693333pt;}
.y132_c00127{bottom:382.466667pt;}
.y134_c00127{bottom:383.226667pt;}
.y185_c00127{bottom:392.453333pt;}
.y135_c00127{bottom:395.520000pt;}
.y136_c00127{bottom:402.426667pt;}
.y12e_c00127{bottom:403.200000pt;}
.y12c_c00127{bottom:403.973333pt;}
.y129_c00127{bottom:406.266667pt;}
.y12f_c00127{bottom:407.040000pt;}
.y128_c00127{bottom:407.813333pt;}
.y12d_c00127{bottom:408.573333pt;}
.y12b_c00127{bottom:410.106667pt;}
.y12a_c00127{bottom:410.880000pt;}
.y130_c00127{bottom:413.946667pt;}
.y131_c00127{bottom:416.253333pt;}
.y127_c00127{bottom:417.026667pt;}
.y124_c00127{bottom:423.933333pt;}
.y123_c00127{bottom:424.706667pt;}
.y11e_c00127{bottom:425.466667pt;}
.y11f_c00127{bottom:427.013333pt;}
.y120_c00127{bottom:427.773333pt;}
.y121_c00127{bottom:428.546667pt;}
.y125_c00127{bottom:429.306667pt;}
.y122_c00127{bottom:431.613333pt;}
.y126_c00127{bottom:438.533333pt;}
.y11d_c00127{bottom:439.293333pt;}
.y118_c00127{bottom:446.213333pt;}
.y116_c00127{bottom:446.973333pt;}
.y11a_c00127{bottom:447.746667pt;}
.y11b_c00127{bottom:448.506667pt;}
.y119_c00127{bottom:449.280000pt;}
.y115_c00127{bottom:450.053333pt;}
.y11c_c00127{bottom:453.120000pt;}
.y117_c00127{bottom:454.653333pt;}
.y114_c00127{bottom:456.960000pt;}
.y113_c00127{bottom:470.786667pt;}
.y112_c00127{bottom:471.546667pt;}
.y111_c00127{bottom:472.320000pt;}
.y10f_c00127{bottom:492.293333pt;}
.y10d_c00127{bottom:493.826667pt;}
.y10c_c00127{bottom:496.133333pt;}
.y10e_c00127{bottom:498.426667pt;}
.y110_c00127{bottom:516.093333pt;}
.y109_c00127{bottom:516.866667pt;}
.y104_c00127{bottom:517.626667pt;}
.y10a_c00127{bottom:519.173333pt;}
.y108_c00127{bottom:519.933333pt;}
.y107_c00127{bottom:520.706667pt;}
.y10b_c00127{bottom:521.466667pt;}
.y106_c00127{bottom:522.240000pt;}
.y105_c00127{bottom:523.013333pt;}
.y101_c00127{bottom:539.133333pt;}
.yff_c00127{bottom:540.666667pt;}
.y102_c00127{bottom:542.213333pt;}
.y103_c00127{bottom:542.973333pt;}
.yfe_c00127{bottom:543.746667pt;}
.y100_c00127{bottom:544.506667pt;}
.y183_c00127{bottom:546.053333pt;}
.y184_c00127{bottom:546.813333pt;}
.y182_c00127{bottom:554.493333pt;}
.yfc_c00127{bottom:559.106667pt;}
.yfb_c00127{bottom:561.413333pt;}
.yfd_c00127{bottom:562.173333pt;}
.yf8_c00127{bottom:562.946667pt;}
.yf9_c00127{bottom:563.706667pt;}
.yf7_c00127{bottom:565.253333pt;}
.yfa_c00127{bottom:566.786667pt;}
.yf6_c00127{bottom:581.373333pt;}
.yf3_c00127{bottom:582.146667pt;}
.yf4_c00127{bottom:583.680000pt;}
.yf5_c00127{bottom:584.453333pt;}
.yf2_c00127{bottom:588.293333pt;}
.yf1_c00127{bottom:593.666667pt;}
.yef_c00127{bottom:603.653333pt;}
.yed_c00127{bottom:604.413333pt;}
.yee_c00127{bottom:605.186667pt;}
.yf0_c00127{bottom:605.946667pt;}
.ye8_c00127{bottom:624.386667pt;}
.yea_c00127{bottom:625.920000pt;}
.ye6_c00127{bottom:626.693333pt;}
.ye9_c00127{bottom:629.760000pt;}
.ye4_c00127{bottom:630.533333pt;}
.ye5_c00127{bottom:631.293333pt;}
.yeb_c00127{bottom:632.066667pt;}
.ye7_c00127{bottom:632.826667pt;}
.ye3_c00127{bottom:634.373333pt;}
.yec_c00127{bottom:637.440000pt;}
.ye2_c00127{bottom:638.213333pt;}
.yde_c00127{bottom:645.893333pt;}
.yd8_c00127{bottom:647.426667pt;}
.ydc_c00127{bottom:648.186667pt;}
.yda_c00127{bottom:648.960000pt;}
.yd9_c00127{bottom:649.733333pt;}
.ydb_c00127{bottom:650.493333pt;}
.ye0_c00127{bottom:652.800000pt;}
.ydd_c00127{bottom:653.573333pt;}
.ydf_c00127{bottom:655.106667pt;}
.ye1_c00127{bottom:656.640000pt;}
.yd7_c00127{bottom:665.853333pt;}
.yd5_c00127{bottom:668.160000pt;}
.yd1_c00127{bottom:668.933333pt;}
.yce_c00127{bottom:669.693333pt;}
.yd6_c00127{bottom:670.466667pt;}
.yd4_c00127{bottom:672.773333pt;}
.yd0_c00127{bottom:673.533333pt;}
.ycd_c00127{bottom:674.306667pt;}
.yd2_c00127{bottom:675.066667pt;}
.ycf_c00127{bottom:675.840000pt;}
.yd3_c00127{bottom:676.613333pt;}
.y180_c00127{bottom:678.146667pt;}
.y181_c00127{bottom:678.906667pt;}
.ycc_c00127{bottom:690.426667pt;}
.yc5_c00127{bottom:691.200000pt;}
.yc6_c00127{bottom:691.973333pt;}
.yc9_c00127{bottom:692.733333pt;}
.yc4_c00127{bottom:695.040000pt;}
.yc8_c00127{bottom:696.573333pt;}
.yc7_c00127{bottom:697.346667pt;}
.ycb_c00127{bottom:698.106667pt;}
.yca_c00127{bottom:708.866667pt;}
.yc0_c00127{bottom:711.173333pt;}
.ybd_c00127{bottom:711.933333pt;}
.yc1_c00127{bottom:712.706667pt;}
.ybf_c00127{bottom:713.466667pt;}
.ybe_c00127{bottom:714.240000pt;}
.y17f_c00127{bottom:715.013333pt;}
.ybc_c00127{bottom:716.546667pt;}
.ybb_c00127{bottom:718.080000pt;}
.yc2_c00127{bottom:719.613333pt;}
.y17e_c00127{bottom:723.453333pt;}
.yc3_c00127{bottom:728.826667pt;}
.yb7_c00127{bottom:734.213333pt;}
.yb9_c00127{bottom:734.973333pt;}
.yb6_c00127{bottom:740.346667pt;}
.yb8_c00127{bottom:741.120000pt;}
.y17d_c00127{bottom:747.266667pt;}
.yba_c00127{bottom:749.573333pt;}
.yb5_c00127{bottom:751.866667pt;}
.yb2_c00127{bottom:754.946667pt;}
.yb0_c00127{bottom:756.480000pt;}
.yb3_c00127{bottom:757.253333pt;}
.yb1_c00127{bottom:758.786667pt;}
.yaf_c00127{bottom:762.626667pt;}
.yb4_c00127{bottom:767.226667pt;}
.yae_c00127{bottom:774.906667pt;}
.yac_c00127{bottom:777.986667pt;}
.ya9_c00127{bottom:778.746667pt;}
.yaa_c00127{bottom:780.293333pt;}
.yab_c00127{bottom:781.826667pt;}
.yad_c00127{bottom:787.973333pt;}
.ya8_c00127{bottom:801.026667pt;}
.ya7_c00127{bottom:801.786667pt;}
.ya4_c00127{bottom:803.333333pt;}
.ya6_c00127{bottom:804.093333pt;}
.ya5_c00127{bottom:804.866667pt;}
.ya3_c00127{bottom:805.626667pt;}
.ya0_c00127{bottom:821.760000pt;}
.y9c_c00127{bottom:823.293333pt;}
.y9d_c00127{bottom:824.066667pt;}
.ya1_c00127{bottom:825.600000pt;}
.y9e_c00127{bottom:826.373333pt;}
.ya2_c00127{bottom:827.906667pt;}
.y9f_c00127{bottom:828.666667pt;}
.y17c_c00127{bottom:829.440000pt;}
.y17b_c00127{bottom:832.506667pt;}
.y9b_c00127{bottom:837.120000pt;}
.y97_c00127{bottom:844.800000pt;}
.y96_c00127{bottom:845.573333pt;}
.y98_c00127{bottom:846.333333pt;}
.y9a_c00127{bottom:847.106667pt;}
.y99_c00127{bottom:850.946667pt;}
.y8e_c00127{bottom:867.066667pt;}
.y90_c00127{bottom:867.840000pt;}
.y94_c00127{bottom:869.373333pt;}
.y8f_c00127{bottom:870.906667pt;}
.y91_c00127{bottom:872.453333pt;}
.y92_c00127{bottom:873.213333pt;}
.y93_c00127{bottom:874.746667pt;}
.y95_c00127{bottom:875.520000pt;}
.y8b_c00127{bottom:890.106667pt;}
.y8a_c00127{bottom:890.880000pt;}
.y89_c00127{bottom:894.720000pt;}
.y8c_c00127{bottom:895.493333pt;}
.y8d_c00127{bottom:899.333333pt;}
.y18b_c00127{bottom:901.626667pt;}
.y88_c00127{bottom:903.173333pt;}
.y18c_c00127{bottom:905.466667pt;}
.y81_c00127{bottom:911.613333pt;}
.y83_c00127{bottom:913.146667pt;}
.y84_c00127{bottom:913.920000pt;}
.y17a_c00127{bottom:914.693333pt;}
.y82_c00127{bottom:915.453333pt;}
.y87_c00127{bottom:917.760000pt;}
.y86_c00127{bottom:918.533333pt;}
.y85_c00127{bottom:919.293333pt;}
.y7b_c00127{bottom:934.653333pt;}
.y7a_c00127{bottom:936.186667pt;}
.y7d_c00127{bottom:936.960000pt;}
.y79_c00127{bottom:937.733333pt;}
.y7e_c00127{bottom:938.493333pt;}
.y7c_c00127{bottom:939.266667pt;}
.y7f_c00127{bottom:943.106667pt;}
.y78_c00127{bottom:945.413333pt;}
.y80_c00127{bottom:950.013333pt;}
.y75_c00127{bottom:959.226667pt;}
.y72_c00127{bottom:960.000000pt;}
.y74_c00127{bottom:960.773333pt;}
.y73_c00127{bottom:963.066667pt;}
.y76_c00127{bottom:963.840000pt;}
.y77_c00127{bottom:969.213333pt;}
.y6b_c00127{bottom:979.200000pt;}
.y6e_c00127{bottom:980.733333pt;}
.y70_c00127{bottom:981.506667pt;}
.y6d_c00127{bottom:983.040000pt;}
.y6f_c00127{bottom:983.813333pt;}
.y179_c00127{bottom:984.573333pt;}
.y6c_c00127{bottom:986.106667pt;}
.y71_c00127{bottom:993.026667pt;}
.y66_c00127{bottom:1001.466667pt;}
.y65_c00127{bottom:1004.546667pt;}
.y6a_c00127{bottom:1005.306667pt;}
.y68_c00127{bottom:1006.080000pt;}
.y67_c00127{bottom:1008.386667pt;}
.y69_c00127{bottom:1010.693333pt;}
.y5e_c00127{bottom:1023.746667pt;}
.y5f_c00127{bottom:1024.506667pt;}
.y64_c00127{bottom:1025.280000pt;}
.y63_c00127{bottom:1026.053333pt;}
.y61_c00127{bottom:1028.346667pt;}
.y60_c00127{bottom:1031.426667pt;}
.y62_c00127{bottom:1032.186667pt;}
.y57_c00127{bottom:1046.013333pt;}
.y59_c00127{bottom:1046.786667pt;}
.y5b_c00127{bottom:1047.546667pt;}
.y58_c00127{bottom:1048.320000pt;}
.y54_c00127{bottom:1049.853333pt;}
.y55_c00127{bottom:1050.626667pt;}
.y5c_c00127{bottom:1051.386667pt;}
.y56_c00127{bottom:1052.160000pt;}
.y5d_c00127{bottom:1052.933333pt;}
.y5a_c00127{bottom:1055.226667pt;}
.y4d_c00127{bottom:1065.213333pt;}
.y4c_c00127{bottom:1066.746667pt;}
.y52_c00127{bottom:1067.520000pt;}
.y53_c00127{bottom:1068.293333pt;}
.y50_c00127{bottom:1069.826667pt;}
.y51_c00127{bottom:1074.426667pt;}
.y4e_c00127{bottom:1085.946667pt;}
.y4f_c00127{bottom:1089.026667pt;}
.y4a_c00127{bottom:1089.786667pt;}
.y4b_c00127{bottom:1090.560000pt;}
.y48_c00127{bottom:1091.333333pt;}
.y49_c00127{bottom:1095.933333pt;}
.y177_c00127{bottom:1108.986667pt;}
.y178_c00127{bottom:1109.760000pt;}
.y176_c00127{bottom:1112.826667pt;}
.y47_c00127{bottom:1115.133333pt;}
.y46_c00127{bottom:1115.906667pt;}
.y45_c00127{bottom:1116.666667pt;}
.y3f_c00127{bottom:1118.213333pt;}
.y40_c00127{bottom:1118.973333pt;}
.y42_c00127{bottom:1119.746667pt;}
.y41_c00127{bottom:1120.506667pt;}
.y43_c00127{bottom:1121.280000pt;}
.y44_c00127{bottom:1122.053333pt;}
.y35_c00127{bottom:1130.493333pt;}
.y3b_c00127{bottom:1131.266667pt;}
.y37_c00127{bottom:1132.026667pt;}
.y3a_c00127{bottom:1132.800000pt;}
.y3e_c00127{bottom:1133.573333pt;}
.y36_c00127{bottom:1134.333333pt;}
.y33_c00127{bottom:1135.866667pt;}
.y38_c00127{bottom:1136.640000pt;}
.y3c_c00127{bottom:1137.413333pt;}
.y39_c00127{bottom:1140.480000pt;}
.y3d_c00127{bottom:1141.253333pt;}
.y34_c00127{bottom:1143.546667pt;}
.y18a_c00127{bottom:1145.853333pt;}
.y2f_c00127{bottom:1158.146667pt;}
.y31_c00127{bottom:1158.906667pt;}
.y30_c00127{bottom:1159.680000pt;}
.y2c_c00127{bottom:1161.213333pt;}
.y2b_c00127{bottom:1161.986667pt;}
.y2d_c00127{bottom:1162.746667pt;}
.y2e_c00127{bottom:1164.293333pt;}
.y32_c00127{bottom:1165.053333pt;}
.y174_c00127{bottom:1176.573333pt;}
.y1f_c00127{bottom:1178.106667pt;}
.y175_c00127{bottom:1178.880000pt;}
.y21_c00127{bottom:1179.653333pt;}
.y22_c00127{bottom:1180.413333pt;}
.y28_c00127{bottom:1183.493333pt;}
.y1e_c00127{bottom:1185.026667pt;}
.y20_c00127{bottom:1185.786667pt;}
.y26_c00127{bottom:1186.560000pt;}
.y23_c00127{bottom:1187.333333pt;}
.y24_c00127{bottom:1188.093333pt;}
.y25_c00127{bottom:1188.866667pt;}
.y27_c00127{bottom:1189.626667pt;}
.y2a_c00127{bottom:1190.400000pt;}
.y189_c00127{bottom:1191.173333pt;}
.y29_c00127{bottom:1195.013333pt;}
.y19_c00127{bottom:1197.306667pt;}
.y188_c00127{bottom:1198.080000pt;}
.y18_c00127{bottom:1199.613333pt;}
.y1a_c00127{bottom:1200.386667pt;}
.y1d_c00127{bottom:1201.146667pt;}
.y1b_c00127{bottom:1203.453333pt;}
.y17_c00127{bottom:1206.533333pt;}
.y1c_c00127{bottom:1211.133333pt;}
.y15_c00127{bottom:1216.506667pt;}
.y16_c00127{bottom:1217.280000pt;}
.y11_c00127{bottom:1225.733333pt;}
.y13_c00127{bottom:1227.266667pt;}
.y14_c00127{bottom:1228.026667pt;}
.y12_c00127{bottom:1228.800000pt;}
.yd_c00127{bottom:1231.106667pt;}
.y6_c00127{bottom:1231.866667pt;}
.yc_c00127{bottom:1232.640000pt;}
.y8_c00127{bottom:1233.413333pt;}
.yb_c00127{bottom:1234.173333pt;}
.y7_c00127{bottom:1237.253333pt;}
.y9_c00127{bottom:1238.013333pt;}
.ye_c00127{bottom:1243.386667pt;}
.ya_c00127{bottom:1248.000000pt;}
.y10_c00127{bottom:1248.773333pt;}
.yf_c00127{bottom:1251.066667pt;}
.y4_c00127{bottom:1254.146667pt;}
.y3_c00127{bottom:1255.680000pt;}
.y5_c00127{bottom:1256.453333pt;}
.y173_c00127{bottom:1259.520000pt;}
.y1_c00127{bottom:1264.133333pt;}
.y172_c00127{bottom:1264.893333pt;}
.y187_c00127{bottom:1266.426667pt;}
.y2_c00127{bottom:1271.813333pt;}
.y186_c00127{bottom:1284.866667pt;}
.h13_c00127{height:2.764500pt;}
.h8_c00127{height:4.799479pt;}
.h11_c00127{height:5.519401pt;}
.h3_c00127{height:8.303099pt;}
.h4_c00127{height:11.038802pt;}
.h10_c00127{height:13.822500pt;}
.h2a_c00127{height:14.436432pt;}
.he_c00127{height:14.692734pt;}
.h12_c00127{height:16.606198pt;}
.hf_c00127{height:19.341901pt;}
.hd_c00127{height:22.125599pt;}
.h28_c00127{height:24.861302pt;}
.h1c_c00127{height:27.645000pt;}
.h17_c00127{height:30.428698pt;}
.h5_c00127{height:33.164401pt;}
.h1e_c00127{height:35.948099pt;}
.h2_c00127{height:38.683802pt;}
.h23_c00127{height:41.467500pt;}
.h27_c00127{height:44.251198pt;}
.h1a_c00127{height:46.986901pt;}
.h29_c00127{height:47.344531pt;}
.h6_c00127{height:49.770599pt;}
.h18_c00127{height:52.506302pt;}
.h19_c00127{height:55.290000pt;}
.h22_c00127{height:58.073698pt;}
.h1b_c00127{height:60.809401pt;}
.h25_c00127{height:63.593099pt;}
.h9_c00127{height:66.328802pt;}
.ha_c00127{height:69.112500pt;}
.h24_c00127{height:71.896198pt;}
.h1d_c00127{height:74.631901pt;}
.h15_c00127{height:77.415599pt;}
.h7_c00127{height:80.151302pt;}
.h21_c00127{height:82.935000pt;}
.hc_c00127{height:85.718698pt;}
.h26_c00127{height:88.454401pt;}
.hb_c00127{height:91.238099pt;}
.h16_c00127{height:93.973802pt;}
.h1f_c00127{height:96.757500pt;}
.h14_c00127{height:99.541198pt;}
.h20_c00127{height:105.060599pt;}
.h1_c00127{height:1336.000000pt;}
.h0_c00127{height:1336.320000pt;}
.w0_c00127{width:967.680000pt;}
.w1_c00127{width:968.000000pt;}
.x0_c00127{left:0.000000pt;}
.xfd_c00127{left:2.306667pt;}
.xfe_c00127{left:13.053333pt;}
.x10a_c00127{left:34.560000pt;}
.x10b_c00127{left:43.773333pt;}
.x10c_c00127{left:108.293333pt;}
.x104_c00127{left:111.360000pt;}
.x107_c00127{left:113.666667pt;}
.xff_c00127{left:115.200000pt;}
.xeb_c00127{left:119.040000pt;}
.x103_c00127{left:121.346667pt;}
.x13_c00127{left:122.880000pt;}
.x106_c00127{left:124.413333pt;}
.x105_c00127{left:125.946667pt;}
.x101_c00127{left:129.026667pt;}
.xec_c00127{left:130.560000pt;}
.x108_c00127{left:132.093333pt;}
.x100_c00127{left:134.400000pt;}
.x102_c00127{left:138.240000pt;}
.x56_c00127{left:139.773333pt;}
.x109_c00127{left:141.306667pt;}
.x10d_c00127{left:145.920000pt;}
.x57_c00127{left:148.226667pt;}
.xf2_c00127{left:151.293333pt;}
.xed_c00127{left:155.133333pt;}
.x10f_c00127{left:156.666667pt;}
.x1a_c00127{left:162.053333pt;}
.xf3_c00127{left:165.120000pt;}
.x1b_c00127{left:169.733333pt;}
.xc7_c00127{left:175.866667pt;}
.x58_c00127{left:177.413333pt;}
.xc8_c00127{left:181.253333pt;}
.xae_c00127{left:184.320000pt;}
.x59_c00127{left:188.160000pt;}
.xc4_c00127{left:191.226533pt;}
.x9f_c00127{left:192.773333pt;}
.x95_c00127{left:195.066667pt;}
.x3d_c00127{left:197.373333pt;}
.x5e_c00127{left:200.442624pt;}
.x1c_c00127{left:201.986667pt;}
.xf4_c00127{left:203.520000pt;}
.xc9_c00127{left:205.053333pt;}
.x3e_c00127{left:206.586667pt;}
.x9b_c00127{left:208.133333pt;}
.x97_c00127{left:209.666667pt;}
.x67_c00127{left:211.200000pt;}
.x51_c00127{left:213.506667pt;}
.x1d_c00127{left:215.040000pt;}
.x32_c00127{left:216.573333pt;}
.x33_c00127{left:223.493333pt;}
.xb2_c00127{left:226.560000pt;}
.x81_c00127{left:230.400000pt;}
.x48_c00127{left:235.773333pt;}
.xa8_c00127{left:238.080000pt;}
.x8a_c00127{left:239.613333pt;}
.x7b_c00127{left:243.453333pt;}
.x26_c00127{left:247.293333pt;}
.x14_c00127{left:250.373333pt;}
.x5f_c00127{left:254.213333pt;}
.x85_c00127{left:255.746667pt;}
.xb3_c00127{left:258.813333pt;}
.x34_c00127{left:261.120000pt;}
.x7c_c00127{left:262.653333pt;}
.xd6_c00127{left:264.960000pt;}
.x1e_c00127{left:267.266667pt;}
.x8d_c00127{left:268.800000pt;}
.x68_c00127{left:271.106667pt;}
.xa3_c00127{left:272.640000pt;}
.xb7_c00127{left:274.946667pt;}
.x73_c00127{left:279.546667pt;}
.x27_c00127{left:281.093333pt;}
.xee_c00127{left:283.386667pt;}
.x5a_c00127{left:285.693333pt;}
.xe0_c00127{left:287.226667pt;}
.xf6_c00127{left:291.066667pt;}
.x60_c00127{left:293.373333pt;}
.x8e_c00127{left:297.213333pt;}
.x35_c00127{left:298.746667pt;}
.xda_c00127{left:301.053333pt;}
.xaf_c00127{left:303.360000pt;}
.xa0_c00127{left:305.666667pt;}
.x8b_c00127{left:307.973333pt;}
.xf5_c00127{left:311.040000pt;}
.x98_c00127{left:314.106667pt;}
.x69_c00127{left:319.493333pt;}
.x99_c00127{left:321.026667pt;}
.x3f_c00127{left:322.560000pt;}
.xd0_c00127{left:324.866667pt;}
.x74_c00127{left:326.400000pt;}
.xa9_c00127{left:328.706667pt;}
.x36_c00127{left:330.240000pt;}
.xf7_c00127{left:332.546667pt;}
.xb4_c00127{left:335.613333pt;}
.x28_c00127{left:337.920000pt;}
.xe8_c00127{left:339.453333pt;}
.xb8_c00127{left:340.986667pt;}
.xdb_c00127{left:343.293333pt;}
.x37_c00127{left:347.906667pt;}
.x6_c00127{left:350.213333pt;}
.x61_c00127{left:357.893333pt;}
.x52_c00127{left:364.800000pt;}
.x49_c00127{left:368.640000pt;}
.x53_c00127{left:372.480000pt;}
.xef_c00127{left:374.786667pt;}
.x92_c00127{left:381.693333pt;}
.x6a_c00127{left:385.533333pt;}
.x1f_c00127{left:387.066667pt;}
.xbe_c00127{left:391.680000pt;}
.x29_c00127{left:393.213333pt;}
.x4a_c00127{left:400.893333pt;}
.x7_c00127{left:403.973333pt;}
.xb5_c00127{left:407.040000pt;}
.xa4_c00127{left:409.346667pt;}
.x40_c00127{left:410.880000pt;}
.xaa_c00127{left:413.186667pt;}
.xbf_c00127{left:414.720000pt;}
.x75_c00127{left:418.560000pt;}
.x15_c00127{left:421.626667pt;}
.x8_c00127{left:424.706667pt;}
.x76_c00127{left:426.240000pt;}
.x20_c00127{left:430.080000pt;}
.xd5_c00127{left:431.613333pt;}
.x2a_c00127{left:433.146667pt;}
.x38_c00127{left:434.693333pt;}
.xb9_c00127{left:438.533333pt;}
.x70_c00127{left:446.213333pt;}
.x21_c00127{left:448.506667pt;}
.x5b_c00127{left:450.053333pt;}
.x9c_c00127{left:453.120000pt;}
.x6b_c00127{left:455.426667pt;}
.xa5_c00127{left:456.960000pt;}
.x77_c00127{left:459.266667pt;}
.x1_c00127{left:460.800000pt;}
.x4b_c00127{left:463.866667pt;}
.x3_c00127{left:465.413333pt;}
.x41_c00127{left:468.480000pt;}
.xc5_c00127{left:471.546667pt;}
.xcc_c00127{left:473.853333pt;}
.xba_c00127{left:476.160000pt;}
.x2_c00127{left:477.693333pt;}
.x22_c00127{left:481.533333pt;}
.x78_c00127{left:485.373333pt;}
.xc0_c00127{left:488.453333pt;}
.x9_c00127{left:493.053333pt;}
.xab_c00127{left:495.360000pt;}
.x62_c00127{left:496.893333pt;}
.xa1_c00127{left:500.733333pt;}
.xa_c00127{left:502.266667pt;}
.x8f_c00127{left:506.106667pt;}
.x4c_c00127{left:508.413333pt;}
.xd1_c00127{left:512.253333pt;}
.x7d_c00127{left:516.866667pt;}
.xcd_c00127{left:518.400000pt;}
.x6c_c00127{left:525.306667pt;}
.x93_c00127{left:528.386667pt;}
.x2b_c00127{left:532.986667pt;}
.x39_c00127{left:535.293333pt;}
.x16_c00127{left:539.906667pt;}
.x63_c00127{left:542.973333pt;}
.x90_c00127{left:545.280000pt;}
.xb_c00127{left:546.813333pt;}
.x4d_c00127{left:548.346667pt;}
.x6d_c00127{left:553.733333pt;}
.xca_c00127{left:555.266667pt;}
.x4e_c00127{left:556.800000pt;}
.x42_c00127{left:559.866667pt;}
.x23_c00127{left:564.480000pt;}
.xc_c00127{left:568.320000pt;}
.xc1_c00127{left:572.160000pt;}
.x82_c00127{left:576.000000pt;}
.x96_c00127{left:578.306667pt;}
.xc2_c00127{left:581.373333pt;}
.x24_c00127{left:583.680000pt;}
.x86_c00127{left:585.213333pt;}
.x64_c00127{left:586.746667pt;}
.xd_c00127{left:588.293333pt;}
.x7e_c00127{left:592.133333pt;}
.x17_c00127{left:595.200000pt;}
.x54_c00127{left:596.733333pt;}
.x2c_c00127{left:599.040000pt;}
.x79_c00127{left:606.720000pt;}
.xf0_c00127{left:609.026667pt;}
.x4f_c00127{left:611.333333pt;}
.xe_c00127{left:612.866667pt;}
.x2d_c00127{left:615.173333pt;}
.x87_c00127{left:620.546667pt;}
.xf8_c00127{left:626.693333pt;}
.x2e_c00127{left:629.760000pt;}
.xd2_c00127{left:631.293333pt;}
.x50_c00127{left:635.133333pt;}
.xac_c00127{left:642.813333pt;}
.xf1_c00127{left:644.346667pt;}
.x71_c00127{left:645.893333pt;}
.x83_c00127{left:648.186667pt;}
.xce_c00127{left:652.800000pt;}
.x3a_c00127{left:655.106667pt;}
.x9a_c00127{left:656.640000pt;}
.x91_c00127{left:658.946667pt;}
.xa6_c00127{left:660.480000pt;}
.xe9_c00127{left:664.320000pt;}
.x88_c00127{left:666.626667pt;}
.x43_c00127{left:672.000000pt;}
.xc3_c00127{left:678.146667pt;}
.x7f_c00127{left:679.680000pt;}
.x55_c00127{left:681.986667pt;}
.xe1_c00127{left:684.293333pt;}
.x89_c00127{left:686.586667pt;}
.x25_c00127{left:688.893333pt;}
.xcb_c00127{left:691.200000pt;}
.xe5_c00127{left:693.506667pt;}
.xbb_c00127{left:695.040000pt;}
.x94_c00127{left:698.880000pt;}
.x18_c00127{left:700.413333pt;}
.x2f_c00127{left:703.493333pt;}
.x65_c00127{left:705.786667pt;}
.xbc_c00127{left:709.626667pt;}
.x44_c00127{left:711.173333pt;}
.xb0_c00127{left:714.240000pt;}
.x4_c00127{left:719.613333pt;}
.xcf_c00127{left:721.920000pt;}
.x30_c00127{left:724.986667pt;}
.x45_c00127{left:726.533333pt;}
.x84_c00127{left:728.066667pt;}
.xc6_c00127{left:729.600000pt;}
.xf9_c00127{left:731.133333pt;}
.x3b_c00127{left:733.440000pt;}
.xd3_c00127{left:734.973333pt;}
.x80_c00127{left:736.506667pt;}
.x5c_c00127{left:741.120000pt;}
.xb1_c00127{left:742.653333pt;}
.xa2_c00127{left:744.960000pt;}
.x46_c00127{left:746.493333pt;}
.x31_c00127{left:748.026667pt;}
.xb6_c00127{left:751.106667pt;}
.xf_c00127{left:752.640000pt;}
.x3c_c00127{left:755.706667pt;}
.x9d_c00127{left:758.786667pt;}
.xd4_c00127{left:763.386667pt;}
.x66_c00127{left:765.693333pt;}
.xbd_c00127{left:771.066667pt;}
.x7a_c00127{left:781.826667pt;}
.x19_c00127{left:784.893333pt;}
.x8c_c00127{left:786.426667pt;}
.x6e_c00127{left:787.973333pt;}
.xad_c00127{left:789.506667pt;}
.x72_c00127{left:791.040000pt;}
.xa7_c00127{left:792.573333pt;}
.x6f_c00127{left:794.880000pt;}
.x5d_c00127{left:798.720000pt;}
.x47_c00127{left:801.786667pt;}
.x10_c00127{left:803.333333pt;}
.xea_c00127{left:807.173333pt;}
.x9e_c00127{left:809.466667pt;}
.xe6_c00127{left:811.773333pt;}
.xfa_c00127{left:816.386667pt;}
.xd7_c00127{left:819.453333pt;}
.xe2_c00127{left:823.293333pt;}
.x11_c00127{left:826.373333pt;}
.x10e_c00127{left:833.280000pt;}
.xdc_c00127{left:835.586667pt;}
.x12_c00127{left:837.120000pt;}
.xfc_c00127{left:839.426667pt;}
.xfb_c00127{left:841.733333pt;}
.xdd_c00127{left:847.866667pt;}
.x5_c00127{left:852.480000pt;}
.xd8_c00127{left:854.013333pt;}
.xe3_c00127{left:860.933333pt;}
.xde_c00127{left:862.466667pt;}
.xe7_c00127{left:864.773333pt;}
.xe4_c00127{left:870.146667pt;}
.xdf_c00127{left:877.053291pt;}
.xd9_c00127{left:880.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dda90ceaf5efcf5536f893ad.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.109863;font-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_c00128{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00128{transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);}
.m191_c00128{transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);}
.m105_c00128{transform:matrix(0.068975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068975,0.000000,0.000000,0.250000,0,0);}
.m18e_c00128{transform:matrix(0.084625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084625,0.000000,0.000000,0.250000,0,0);}
.m190_c00128{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00128{transform:matrix(0.096525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096525,0.000000,0.000000,0.250000,0,0);}
.m86_c00128{transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);}
.mfa_c00128{transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);}
.m14c_c00128{transform:matrix(0.116275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116275,0.000000,0.000000,0.250000,0,0);}
.mf7_c00128{transform:matrix(0.116350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116350,0.000000,0.000000,0.250000,0,0);}
.m25_c00128{transform:matrix(0.116950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116950,0.000000,0.000000,0.250000,0,0);}
.m162_c00128{transform:matrix(0.119425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119425,0.000000,0.000000,0.250000,0,0);}
.m16f_c00128{transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);}
.m18a_c00128{transform:matrix(0.121100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121100,0.000000,0.000000,0.250000,0,0);}
.mfe_c00128{transform:matrix(0.121825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121825,0.000000,0.000000,0.250000,0,0);}
.m16e_c00128{transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);}
.m85_c00128{transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);}
.mda_c00128{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m158_c00128{transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);}
.m180_c00128{transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);}
.m197_c00128{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m130_c00128{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m17a_c00128{transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);}
.m56_c00128{transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);}
.m4d_c00128{transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);}
.m57_c00128{transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);}
.m49_c00128{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.mab_c00128{transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);}
.m31_c00128{transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);}
.m139_c00128{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.m186_c00128{transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);}
.m83_c00128{transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);}
.m54_c00128{transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);}
.mba_c00128{transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);}
.md1_c00128{transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);}
.m61_c00128{transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);}
.m8c_c00128{transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);}
.m110_c00128{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m4_c00128{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m188_c00128{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.m39_c00128{transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);}
.m15f_c00128{transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);}
.m168_c00128{transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);}
.mc5_c00128{transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);}
.m7f_c00128{transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);}
.mc8_c00128{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);}
.m18d_c00128{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);}
.m24_c00128{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.ma0_c00128{transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);}
.m179_c00128{transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);}
.m118_c00128{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.m51_c00128{transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);}
.m11a_c00128{transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);}
.m164_c00128{transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);}
.m4b_c00128{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.m133_c00128{transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);}
.m65_c00128{transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);}
.m18b_c00128{transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);}
.med_c00128{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);}
.m165_c00128{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m15c_c00128{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m14b_c00128{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.md9_c00128{transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);}
.m102_c00128{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.meb_c00128{transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);}
.m7b_c00128{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.mb9_c00128{transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);}
.m87_c00128{transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);}
.m170_c00128{transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);}
.md4_c00128{transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);}
.m6e_c00128{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.mc2_c00128{transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);}
.m119_c00128{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.m114_c00128{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mff_c00128{transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);}
.m144_c00128{transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);}
.m113_c00128{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.mfb_c00128{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);}
.mdb_c00128{transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);}
.mc6_c00128{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);}
.m10f_c00128{transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);}
.mf8_c00128{transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);}
.m68_c00128{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m154_c00128{transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);}
.m6f_c00128{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.mbb_c00128{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.m150_c00128{transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);}
.mbf_c00128{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);}
.m4e_c00128{transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);}
.m29_c00128{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m171_c00128{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);}
.m13a_c00128{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);}
.m8e_c00128{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.mb4_c00128{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.mbd_c00128{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.m6d_c00128{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m160_c00128{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);}
.m126_c00128{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);}
.ma2_c00128{transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);}
.m13e_c00128{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.me8_c00128{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m10e_c00128{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m16c_c00128{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m169_c00128{transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);}
.ma6_c00128{transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);}
.m178_c00128{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.mc7_c00128{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m12b_c00128{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m122_c00128{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.me1_c00128{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m21_c00128{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m123_c00128{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m5a_c00128{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00128{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);}
.m9c_c00128{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);}
.m183_c00128{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.mcb_c00128{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);}
.mf5_c00128{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);}
.m143_c00128{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.mf6_c00128{transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);}
.m16b_c00128{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);}
.m174_c00128{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);}
.me2_c00128{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);}
.mbe_c00128{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m6a_c00128{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);}
.mdc_c00128{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.mad_c00128{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.md8_c00128{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.m7c_c00128{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);}
.m189_c00128{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.m12e_c00128{transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);}
.m163_c00128{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);}
.m73_c00128{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);}
.mcc_c00128{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m176_c00128{transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);}
.m99_c00128{transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);}
.m127_c00128{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m60_c00128{transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);}
.mf3_c00128{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);}
.m10b_c00128{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m9d_c00128{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.m146_c00128{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);}
.m50_c00128{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m40_c00128{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m15b_c00128{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);}
.m182_c00128{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);}
.m13_c00128{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.md3_c00128{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.mc4_c00128{transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);}
.me0_c00128{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m134_c00128{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m69_c00128{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);}
.mf2_c00128{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m159_c00128{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.me3_c00128{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);}
.m161_c00128{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);}
.m184_c00128{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.m12a_c00128{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.md2_c00128{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);}
.m48_c00128{transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);}
.m42_c00128{transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);}
.m177_c00128{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.md7_c00128{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);}
.me7_c00128{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);}
.m59_c00128{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);}
.m140_c00128{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m120_c00128{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.mc_c00128{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);}
.m16a_c00128{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);}
.m175_c00128{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.m167_c00128{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m14e_c00128{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);}
.mb7_c00128{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);}
.m95_c00128{transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);}
.me5_c00128{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m96_c00128{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m14a_c00128{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m11f_c00128{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);}
.m138_c00128{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.mce_c00128{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);}
.m11c_c00128{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);}
.m5e_c00128{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);}
.m17d_c00128{transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);}
.m12c_c00128{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);}
.m1c_c00128{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00128{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);}
.m58_c00128{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);}
.m9b_c00128{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);}
.mca_c00128{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);}
.m181_c00128{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);}
.m33_c00128{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);}
.mf4_c00128{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.mb3_c00128{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);}
.m81_c00128{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m77_c00128{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);}
.m107_c00128{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.m10d_c00128{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);}
.ma3_c00128{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m145_c00128{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.mb1_c00128{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.m135_c00128{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);}
.m4a_c00128{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.m74_c00128{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);}
.m17e_c00128{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.me9_c00128{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m12d_c00128{transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);}
.mfd_c00128{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);}
.m10a_c00128{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m6c_c00128{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.m82_c00128{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);}
.m5f_c00128{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);}
.m63_c00128{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);}
.mdd_c00128{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.ma9_c00128{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.mb6_c00128{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m38_c00128{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);}
.m1e_c00128{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);}
.m7e_c00128{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.m26_c00128{transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);}
.m17f_c00128{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);}
.m41_c00128{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.m14d_c00128{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);}
.m1f_c00128{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00128{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.m3c_c00128{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);}
.m64_c00128{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);}
.m155_c00128{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m101_c00128{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.m104_c00128{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m22_c00128{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.mf0_c00128{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);}
.m16d_c00128{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m148_c00128{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m129_c00128{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);}
.mfc_c00128{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.md_c00128{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);}
.m79_c00128{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m8a_c00128{transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);}
.mae_c00128{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);}
.m3b_c00128{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.m152_c00128{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m147_c00128{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);}
.mec_c00128{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);}
.m28_c00128{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.m142_c00128{transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);}
.me6_c00128{transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);}
.m1d_c00128{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.md5_c00128{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);}
.m103_c00128{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);}
.m2d_c00128{transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);}
.m15e_c00128{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);}
.ma1_c00128{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m128_c00128{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m52_c00128{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);}
.m115_c00128{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m62_c00128{transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);}
.m13b_c00128{transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);}
.m166_c00128{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);}
.m131_c00128{transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);}
.ma8_c00128{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);}
.m32_c00128{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);}
.m88_c00128{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);}
.m72_c00128{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);}
.m36_c00128{transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);}
.mbc_c00128{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);}
.m1a_c00128{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m2c_c00128{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);}
.ma4_c00128{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.m157_c00128{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m46_c00128{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);}
.m19_c00128{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);}
.m14f_c00128{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);}
.m53_c00128{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m100_c00128{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m80_c00128{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);}
.m3e_c00128{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);}
.m141_c00128{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.m116_c00128{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);}
.m149_c00128{transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);}
.m125_c00128{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);}
.m16_c00128{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);}
.m13d_c00128{transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);}
.mf1_c00128{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.mb5_c00128{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);}
.m15d_c00128{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.m93_c00128{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);}
.mcf_c00128{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.m78_c00128{transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);}
.m153_c00128{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m11d_c00128{transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);}
.mde_c00128{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.mcd_c00128{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m8d_c00128{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);}
.m185_c00128{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);}
.m11e_c00128{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);}
.m111_c00128{transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);}
.m3a_c00128{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);}
.m15a_c00128{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);}
.mac_c00128{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);}
.m151_c00128{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);}
.m84_c00128{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);}
.m76_c00128{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m98_c00128{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);}
.m106_c00128{transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);}
.mb0_c00128{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);}
.m7_c00128{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m67_c00128{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.mf9_c00128{transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);}
.m17c_c00128{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m4f_c00128{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);}
.m108_c00128{transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);}
.m121_c00128{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.mdf_c00128{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);}
.mea_c00128{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);}
.m13f_c00128{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m156_c00128{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m7d_c00128{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);}
.ma7_c00128{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00128{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);}
.m5_c00128{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);}
.m3d_c00128{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);}
.m7a_c00128{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);}
.m4c_c00128{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m172_c00128{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00128{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00128{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);}
.m47_c00128{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m92_c00128{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);}
.m44_c00128{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);}
.m136_c00128{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00128{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m27_c00128{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m187_c00128{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);}
.m94_c00128{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c00128{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);}
.m2a_c00128{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);}
.m45_c00128{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mef_c00128{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m55_c00128{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);}
.m30_c00128{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c00128{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c00128{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);}
.m173_c00128{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00128{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00128{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m109_c00128{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00128{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m90_c00128{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00128{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00128{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00128{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);}
.m43_c00128{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me4_c00128{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md0_c00128{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m112_c00128{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13c_c00128{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);}
.maf_c00128{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m66_c00128{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);}
.maa_c00128{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m15_c00128{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);}
.m11b_c00128{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00128{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m14_c00128{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m97_c00128{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00128{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m75_c00128{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.md6_c00128{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m89_c00128{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);}
.m132_c00128{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);}
.m137_c00128{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00128{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00128{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m37_c00128{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3_c00128{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00128{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m70_c00128{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m17_c00128{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);}
.m71_c00128{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mee_c00128{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m193_c00128{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m11_c00128{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m124_c00128{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00128{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m91_c00128{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m194_c00128{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);}
.m5d_c00128{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00128{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00128{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m18c_c00128{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m12_c00128{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m20_c00128{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m8_c00128{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m195_c00128{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00128{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m117_c00128{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m6_c00128{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m2_c00128{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m196_c00128{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.me_c00128{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m9_c00128{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.mb_c00128{transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);}
.m18f_c00128{transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);}
.m17b_c00128{transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);}
.m192_c00128{transform:matrix(2.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.037500,0.000000,0.000000,0.250000,0,0);}
.m18_c00128{transform:matrix(4.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.015000,0.000000,0.000000,0.250000,0,0);}
.mf_c00128{transform:matrix(4.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.772500,0.000000,0.000000,0.250000,0,0);}
.ma_c00128{transform:matrix(16.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(16.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(16.272500,0.000000,0.000000,0.250000,0,0);}
.v1_c00128{vertical-align:-3.480000px;}
.v0_c00128{vertical-align:0.000000px;}
.v2_c00128{vertical-align:3.480000px;}
.ls3_c00128{letter-spacing:0.000000px;}
.ls0_c00128{letter-spacing:39.178740px;}
.ls2_c00128{letter-spacing:72.273480px;}
.ls1_c00128{letter-spacing:149.300688px;}
.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;}
}
.ws1_c00128{word-spacing:0.000000px;}
.ws0_c00128{word-spacing:41.335152px;}
.fc0_c00128{color:transparent;}
.fs5_c00128{font-size:3.456000px;}
.fs1_c00128{font-size:6.000000px;}
.fs7_c00128{font-size:6.900000px;}
.fsf_c00128{font-size:10.380000px;}
.fs0_c00128{font-size:13.800000px;}
.fs3_c00128{font-size:17.280000px;}
.fs8_c00128{font-size:20.760000px;}
.fs9_c00128{font-size:24.180000px;}
.fs10_c00128{font-size:27.660000px;}
.fs2_c00128{font-size:31.080000px;}
.fs6_c00128{font-size:34.560000px;}
.fs4_c00128{font-size:38.040000px;}
.fs18_c00128{font-size:41.460000px;}
.fs11_c00128{font-size:44.940000px;}
.fs20_c00128{font-size:48.360000px;}
.fs23_c00128{font-size:51.840000px;}
.fs24_c00128{font-size:55.320000px;}
.fs16_c00128{font-size:58.740000px;}
.fs19_c00128{font-size:62.220000px;}
.fsd_c00128{font-size:65.640000px;}
.fsb_c00128{font-size:69.120000px;}
.fse_c00128{font-size:72.600000px;}
.fsa_c00128{font-size:76.020000px;}
.fs1a_c00128{font-size:79.500000px;}
.fsc_c00128{font-size:82.920000px;}
.fs14_c00128{font-size:86.400000px;}
.fs13_c00128{font-size:89.880000px;}
.fs17_c00128{font-size:93.300000px;}
.fs12_c00128{font-size:96.780000px;}
.fs15_c00128{font-size:100.200000px;}
.fs1b_c00128{font-size:103.680000px;}
.fs1d_c00128{font-size:107.160000px;}
.fs1f_c00128{font-size:110.580000px;}
.fs1c_c00128{font-size:114.060000px;}
.fs1e_c00128{font-size:117.480000px;}
.fs21_c00128{font-size:120.960000px;}
.fs22_c00128{font-size:124.440000px;}
.fs25_c00128{font-size:131.340000px;}
.y0_c00128{bottom:0.000000px;}
.y187_c00128{bottom:229.830000px;}
.y186_c00128{bottom:232.410000px;}
.y185_c00128{bottom:234.150000px;}
.y184_c00128{bottom:235.005000px;}
.y183_c00128{bottom:251.430000px;}
.y182_c00128{bottom:253.155000px;}
.y178_c00128{bottom:254.010000px;}
.y17d_c00128{bottom:254.880000px;}
.y180_c00128{bottom:255.750000px;}
.y179_c00128{bottom:259.200000px;}
.y17a_c00128{bottom:260.070000px;}
.y177_c00128{bottom:261.795000px;}
.y17e_c00128{bottom:262.650000px;}
.y17b_c00128{bottom:263.520000px;}
.y17f_c00128{bottom:264.390000px;}
.y17c_c00128{bottom:268.710000px;}
.y174_c00128{bottom:272.160000px;}
.y170_c00128{bottom:273.885000px;}
.y181_c00128{bottom:274.755000px;}
.y172_c00128{bottom:275.610000px;}
.y173_c00128{bottom:276.480000px;}
.y175_c00128{bottom:278.205000px;}
.y171_c00128{bottom:284.250000px;}
.y176_c00128{bottom:292.035000px;}
.y16c_c00128{bottom:304.125000px;}
.y16e_c00128{bottom:305.850000px;}
.y16a_c00128{bottom:308.445000px;}
.y16f_c00128{bottom:309.315000px;}
.y16b_c00128{bottom:311.040000px;}
.y16d_c00128{bottom:313.635000px;}
.y165_c00128{bottom:330.045000px;}
.y166_c00128{bottom:331.770000px;}
.y164_c00128{bottom:332.640000px;}
.y169_c00128{bottom:333.510000px;}
.y167_c00128{bottom:334.365000px;}
.y168_c00128{bottom:336.090000px;}
.y163_c00128{bottom:343.005000px;}
.y15f_c00128{bottom:353.370000px;}
.y162_c00128{bottom:355.110000px;}
.y161_c00128{bottom:355.965000px;}
.y160_c00128{bottom:356.835000px;}
.y15e_c00128{bottom:360.285000px;}
.y15c_c00128{bottom:380.160000px;}
.y15d_c00128{bottom:381.030000px;}
.y15b_c00128{bottom:384.480000px;}
.y157_c00128{bottom:402.630000px;}
.y159_c00128{bottom:403.485000px;}
.y158_c00128{bottom:405.210000px;}
.y15a_c00128{bottom:406.080000px;}
.y156_c00128{bottom:430.275000px;}
.y153_c00128{bottom:431.130000px;}
.y155_c00128{bottom:432.000000px;}
.y154_c00128{bottom:435.450000px;}
.y14f_c00128{bottom:455.325000px;}
.y150_c00128{bottom:456.195000px;}
.y151_c00128{bottom:457.050000px;}
.y152_c00128{bottom:460.515000px;}
.y148_c00128{bottom:479.520000px;}
.y149_c00128{bottom:480.390000px;}
.y14b_c00128{bottom:481.245000px;}
.y14d_c00128{bottom:482.115000px;}
.y14a_c00128{bottom:484.710000px;}
.y147_c00128{bottom:486.435000px;}
.y14c_c00128{bottom:489.030000px;}
.y14e_c00128{bottom:501.120000px;}
.y142_c00128{bottom:504.570000px;}
.y140_c00128{bottom:505.440000px;}
.y145_c00128{bottom:506.310000px;}
.y13f_c00128{bottom:507.165000px;}
.y144_c00128{bottom:509.760000px;}
.y143_c00128{bottom:510.630000px;}
.y141_c00128{bottom:513.210000px;}
.y146_c00128{bottom:526.170000px;}
.y13a_c00128{bottom:529.635000px;}
.y13b_c00128{bottom:530.490000px;}
.y13e_c00128{bottom:531.360000px;}
.y13c_c00128{bottom:532.230000px;}
.y139_c00128{bottom:537.405000px;}
.y13d_c00128{bottom:538.275000px;}
.y134_c00128{bottom:555.555000px;}
.y132_c00128{bottom:556.410000px;}
.y137_c00128{bottom:557.280000px;}
.y135_c00128{bottom:558.150000px;}
.y136_c00128{bottom:559.875000px;}
.y138_c00128{bottom:560.730000px;}
.y133_c00128{bottom:563.325000px;}
.y12c_c00128{bottom:580.605000px;}
.y12b_c00128{bottom:584.070000px;}
.y130_c00128{bottom:584.925000px;}
.y12e_c00128{bottom:586.650000px;}
.y131_c00128{bottom:587.520000px;}
.y12d_c00128{bottom:588.390000px;}
.y12f_c00128{bottom:589.245000px;}
.y124_c00128{bottom:605.670000px;}
.y123_c00128{bottom:607.395000px;}
.y12a_c00128{bottom:609.120000px;}
.y126_c00128{bottom:609.990000px;}
.y127_c00128{bottom:610.845000px;}
.y125_c00128{bottom:613.440000px;}
.y128_c00128{bottom:615.165000px;}
.y122_c00128{bottom:616.890000px;}
.y129_c00128{bottom:622.950000px;}
.y11d_c00128{bottom:630.720000px;}
.y11c_c00128{bottom:631.590000px;}
.y11e_c00128{bottom:632.445000px;}
.y120_c00128{bottom:634.170000px;}
.y11f_c00128{bottom:635.910000px;}
.y121_c00128{bottom:636.765000px;}
.y11b_c00128{bottom:638.490000px;}
.y113_c00128{bottom:654.045000px;}
.y111_c00128{bottom:654.915000px;}
.y112_c00128{bottom:655.770000px;}
.y115_c00128{bottom:656.640000px;}
.y117_c00128{bottom:657.510000px;}
.y119_c00128{bottom:658.365000px;}
.y114_c00128{bottom:663.555000px;}
.y116_c00128{bottom:664.410000px;}
.y118_c00128{bottom:665.280000px;}
.y11a_c00128{bottom:667.005000px;}
.y108_c00128{bottom:679.110000px;}
.y10a_c00128{bottom:680.835000px;}
.y110_c00128{bottom:682.560000px;}
.y10d_c00128{bottom:683.430000px;}
.y109_c00128{bottom:684.285000px;}
.y10e_c00128{bottom:685.155000px;}
.y10b_c00128{bottom:687.750000px;}
.y10c_c00128{bottom:688.605000px;}
.y10f_c00128{bottom:690.330000px;}
.y102_c00128{bottom:704.160000px;}
.y103_c00128{bottom:705.030000px;}
.y106_c00128{bottom:705.885000px;}
.y104_c00128{bottom:711.930000px;}
.y105_c00128{bottom:712.800000px;}
.y107_c00128{bottom:716.250000px;}
.yfc_c00128{bottom:729.210000px;}
.y100_c00128{bottom:730.950000px;}
.yfa_c00128{bottom:732.675000px;}
.y101_c00128{bottom:734.400000px;}
.yfb_c00128{bottom:735.270000px;}
.yfd_c00128{bottom:736.125000px;}
.yfe_c00128{bottom:736.995000px;}
.yff_c00128{bottom:737.850000px;}
.yf8_c00128{bottom:753.405000px;}
.yf3_c00128{bottom:754.275000px;}
.yf5_c00128{bottom:755.130000px;}
.yf9_c00128{bottom:756.000000px;}
.yf1_c00128{bottom:758.595000px;}
.yf2_c00128{bottom:761.190000px;}
.yf4_c00128{bottom:762.045000px;}
.yf6_c00128{bottom:762.915000px;}
.yf7_c00128{bottom:763.770000px;}
.yed_c00128{bottom:772.410000px;}
.yf0_c00128{bottom:773.280000px;}
.yeb_c00128{bottom:778.470000px;}
.yec_c00128{bottom:780.195000px;}
.yef_c00128{bottom:781.920000px;}
.yea_c00128{bottom:785.370000px;}
.yee_c00128{bottom:787.110000px;}
.ye3_c00128{bottom:801.795000px;}
.ye5_c00128{bottom:802.650000px;}
.ye6_c00128{bottom:803.520000px;}
.ye7_c00128{bottom:804.390000px;}
.ye9_c00128{bottom:805.245000px;}
.ye8_c00128{bottom:806.115000px;}
.ye4_c00128{bottom:810.435000px;}
.yde_c00128{bottom:826.845000px;}
.ydf_c00128{bottom:827.715000px;}
.ye0_c00128{bottom:828.570000px;}
.ye2_c00128{bottom:829.440000px;}
.ye1_c00128{bottom:834.630000px;}
.ydd_c00128{bottom:846.720000px;}
.yd5_c00128{bottom:850.170000px;}
.yd2_c00128{bottom:851.910000px;}
.yd9_c00128{bottom:853.635000px;}
.yda_c00128{bottom:854.490000px;}
.yd7_c00128{bottom:855.360000px;}
.yd3_c00128{bottom:856.230000px;}
.yd4_c00128{bottom:858.810000px;}
.yd6_c00128{bottom:859.680000px;}
.ydb_c00128{bottom:860.550000px;}
.yd8_c00128{bottom:861.405000px;}
.ydc_c00128{bottom:871.770000px;}
.yca_c00128{bottom:876.960000px;}
.ycd_c00128{bottom:877.830000px;}
.yd0_c00128{bottom:878.685000px;}
.ycc_c00128{bottom:879.555000px;}
.ycf_c00128{bottom:880.410000px;}
.ycb_c00128{bottom:883.875000px;}
.yce_c00128{bottom:884.730000px;}
.yd1_c00128{bottom:891.645000px;}
.yc3_c00128{bottom:902.010000px;}
.yc7_c00128{bottom:903.750000px;}
.yc8_c00128{bottom:904.605000px;}
.yc2_c00128{bottom:906.330000px;}
.yc6_c00128{bottom:907.200000px;}
.yc1_c00128{bottom:908.925000px;}
.yc4_c00128{bottom:909.795000px;}
.yc5_c00128{bottom:911.520000px;}
.yc9_c00128{bottom:914.115000px;}
.yc0_c00128{bottom:914.970000px;}
.yb9_c00128{bottom:926.205000px;}
.yba_c00128{bottom:927.075000px;}
.ybc_c00128{bottom:927.930000px;}
.ybd_c00128{bottom:928.800000px;}
.yb8_c00128{bottom:929.670000px;}
.ybe_c00128{bottom:930.525000px;}
.yb7_c00128{bottom:933.990000px;}
.ybb_c00128{bottom:935.715000px;}
.ybf_c00128{bottom:936.570000px;}
.y18d_c00128{bottom:937.440000px;}
.y18c_c00128{bottom:945.210000px;}
.yae_c00128{bottom:950.400000px;}
.yad_c00128{bottom:951.270000px;}
.yaf_c00128{bottom:952.125000px;}
.yb2_c00128{bottom:953.850000px;}
.yb3_c00128{bottom:954.720000px;}
.yb0_c00128{bottom:955.590000px;}
.yac_c00128{bottom:959.910000px;}
.yb1_c00128{bottom:960.765000px;}
.yb6_c00128{bottom:967.680000px;}
.yb4_c00128{bottom:968.550000px;}
.yb5_c00128{bottom:977.190000px;}
.ya8_c00128{bottom:978.045000px;}
.ya9_c00128{bottom:978.915000px;}
.yab_c00128{bottom:979.770000px;}
.yaa_c00128{bottom:980.640000px;}
.ya4_c00128{bottom:981.510000px;}
.ya7_c00128{bottom:983.235000px;}
.ya5_c00128{bottom:984.090000px;}
.ya6_c00128{bottom:984.960000px;}
.y9f_c00128{bottom:1001.370000px;}
.y9d_c00128{bottom:1002.240000px;}
.ya1_c00128{bottom:1003.965000px;}
.y9c_c00128{bottom:1004.835000px;}
.ya2_c00128{bottom:1008.285000px;}
.y9e_c00128{bottom:1009.155000px;}
.ya0_c00128{bottom:1010.010000px;}
.y9b_c00128{bottom:1010.880000px;}
.ya3_c00128{bottom:1011.750000px;}
.y9a_c00128{bottom:1026.435000px;}
.y94_c00128{bottom:1027.290000px;}
.y96_c00128{bottom:1028.160000px;}
.y97_c00128{bottom:1029.030000px;}
.y95_c00128{bottom:1032.480000px;}
.y98_c00128{bottom:1035.930000px;}
.y99_c00128{bottom:1036.800000px;}
.y8d_c00128{bottom:1051.485000px;}
.y92_c00128{bottom:1052.355000px;}
.y91_c00128{bottom:1053.210000px;}
.y93_c00128{bottom:1054.080000px;}
.y8e_c00128{bottom:1055.805000px;}
.y8c_c00128{bottom:1058.400000px;}
.y90_c00128{bottom:1060.125000px;}
.y8f_c00128{bottom:1060.995000px;}
.y88_c00128{bottom:1077.405000px;}
.y89_c00128{bottom:1078.275000px;}
.y87_c00128{bottom:1081.725000px;}
.y85_c00128{bottom:1082.595000px;}
.y86_c00128{bottom:1083.450000px;}
.y8a_c00128{bottom:1085.190000px;}
.y8b_c00128{bottom:1086.915000px;}
.y80_c00128{bottom:1100.730000px;}
.y7f_c00128{bottom:1101.600000px;}
.y18a_c00128{bottom:1102.470000px;}
.y82_c00128{bottom:1103.325000px;}
.y18b_c00128{bottom:1105.050000px;}
.y84_c00128{bottom:1105.920000px;}
.y81_c00128{bottom:1108.515000px;}
.y83_c00128{bottom:1110.240000px;}
.y7e_c00128{bottom:1124.925000px;}
.y77_c00128{bottom:1126.650000px;}
.y78_c00128{bottom:1127.520000px;}
.y7b_c00128{bottom:1128.390000px;}
.y7d_c00128{bottom:1129.245000px;}
.y79_c00128{bottom:1132.710000px;}
.y76_c00128{bottom:1133.565000px;}
.y7a_c00128{bottom:1135.290000px;}
.y7c_c00128{bottom:1136.160000px;}
.y75_c00128{bottom:1145.670000px;}
.y6d_c00128{bottom:1149.990000px;}
.y6e_c00128{bottom:1150.845000px;}
.y6f_c00128{bottom:1151.715000px;}
.y72_c00128{bottom:1152.570000px;}
.y71_c00128{bottom:1153.440000px;}
.y73_c00128{bottom:1155.165000px;}
.y70_c00128{bottom:1157.760000px;}
.y6c_c00128{bottom:1160.355000px;}
.y74_c00128{bottom:1161.210000px;}
.y64_c00128{bottom:1175.040000px;}
.y65_c00128{bottom:1176.765000px;}
.y69_c00128{bottom:1177.635000px;}
.y67_c00128{bottom:1178.490000px;}
.y68_c00128{bottom:1179.360000px;}
.y62_c00128{bottom:1182.810000px;}
.y63_c00128{bottom:1183.680000px;}
.y66_c00128{bottom:1184.550000px;}
.y6a_c00128{bottom:1186.275000px;}
.y6b_c00128{bottom:1188.870000px;}
.y61_c00128{bottom:1194.915000px;}
.y59_c00128{bottom:1200.960000px;}
.y5a_c00128{bottom:1201.830000px;}
.y5e_c00128{bottom:1202.685000px;}
.y5f_c00128{bottom:1203.555000px;}
.y5c_c00128{bottom:1205.280000px;}
.y60_c00128{bottom:1207.875000px;}
.y5b_c00128{bottom:1208.730000px;}
.y5d_c00128{bottom:1210.470000px;}
.y4e_c00128{bottom:1221.690000px;}
.y51_c00128{bottom:1222.560000px;}
.y53_c00128{bottom:1223.430000px;}
.y57_c00128{bottom:1224.285000px;}
.y4f_c00128{bottom:1226.010000px;}
.y4d_c00128{bottom:1226.880000px;}
.y56_c00128{bottom:1227.750000px;}
.y52_c00128{bottom:1228.605000px;}
.y50_c00128{bottom:1232.925000px;}
.y54_c00128{bottom:1234.650000px;}
.y55_c00128{bottom:1235.520000px;}
.y58_c00128{bottom:1237.245000px;}
.y44_c00128{bottom:1251.075000px;}
.y48_c00128{bottom:1251.930000px;}
.y4c_c00128{bottom:1252.800000px;}
.y4a_c00128{bottom:1253.670000px;}
.y49_c00128{bottom:1255.395000px;}
.y47_c00128{bottom:1256.250000px;}
.y46_c00128{bottom:1257.120000px;}
.y45_c00128{bottom:1257.990000px;}
.y4b_c00128{bottom:1260.570000px;}
.y3d_c00128{bottom:1276.125000px;}
.y41_c00128{bottom:1276.995000px;}
.y3c_c00128{bottom:1277.850000px;}
.y42_c00128{bottom:1278.720000px;}
.y3f_c00128{bottom:1282.170000px;}
.y3e_c00128{bottom:1283.040000px;}
.y40_c00128{bottom:1286.490000px;}
.y43_c00128{bottom:1299.450000px;}
.y37_c00128{bottom:1301.190000px;}
.y39_c00128{bottom:1302.915000px;}
.y3b_c00128{bottom:1303.770000px;}
.y38_c00128{bottom:1308.960000px;}
.y3a_c00128{bottom:1311.555000px;}
.y2e_c00128{bottom:1324.515000px;}
.y2f_c00128{bottom:1325.370000px;}
.y32_c00128{bottom:1327.110000px;}
.y36_c00128{bottom:1328.835000px;}
.y33_c00128{bottom:1331.430000px;}
.y189_c00128{bottom:1332.285000px;}
.y30_c00128{bottom:1333.155000px;}
.y31_c00128{bottom:1334.880000px;}
.y35_c00128{bottom:1335.750000px;}
.y34_c00128{bottom:1336.605000px;}
.y2c_c00128{bottom:1347.840000px;}
.y2d_c00128{bottom:1349.565000px;}
.y25_c00128{bottom:1350.435000px;}
.y29_c00128{bottom:1351.290000px;}
.y26_c00128{bottom:1352.160000px;}
.y27_c00128{bottom:1354.755000px;}
.y28_c00128{bottom:1355.610000px;}
.y1_c00128{bottom:1356.480000px;}
.y2a_c00128{bottom:1360.800000px;}
.y2b_c00128{bottom:1361.670000px;}
.y2_c00128{bottom:1362.525000px;}
.y20_c00128{bottom:1378.080000px;}
.y1f_c00128{bottom:1378.950000px;}
.y1e_c00128{bottom:1379.805000px;}
.y1a_c00128{bottom:1380.675000px;}
.y23_c00128{bottom:1381.530000px;}
.y21_c00128{bottom:1383.270000px;}
.y1c_c00128{bottom:1384.125000px;}
.y1d_c00128{bottom:1385.850000px;}
.y22_c00128{bottom:1386.720000px;}
.y1b_c00128{bottom:1387.590000px;}
.y17_c00128{bottom:1389.315000px;}
.y18_c00128{bottom:1390.170000px;}
.y24_c00128{bottom:1391.040000px;}
.y19_c00128{bottom:1392.765000px;}
.y13_c00128{bottom:1407.450000px;}
.y16_c00128{bottom:1408.320000px;}
.y14_c00128{bottom:1409.190000px;}
.y15_c00128{bottom:1411.770000px;}
.yb_c00128{bottom:1414.365000px;}
.yc_c00128{bottom:1417.830000px;}
.yd_c00128{bottom:1418.685000px;}
.y10_c00128{bottom:1423.005000px;}
.ye_c00128{bottom:1424.730000px;}
.y12_c00128{bottom:1425.600000px;}
.yf_c00128{bottom:1429.920000px;}
.y11_c00128{bottom:1433.370000px;}
.y4_c00128{bottom:1438.560000px;}
.y6_c00128{bottom:1439.430000px;}
.y188_c00128{bottom:1444.605000px;}
.y5_c00128{bottom:1445.475000px;}
.y9_c00128{bottom:1448.070000px;}
.y8_c00128{bottom:1449.795000px;}
.y7_c00128{bottom:1450.650000px;}
.ya_c00128{bottom:1451.520000px;}
.y3_c00128{bottom:1457.565000px;}
.h7_c00128{height:3.110063px;}
.h3_c00128{height:5.399414px;}
.h9_c00128{height:6.209326px;}
.h11_c00128{height:9.340986px;}
.h2_c00128{height:12.418652px;}
.h5_c00128{height:15.550313px;}
.ha_c00128{height:18.681973px;}
.hb_c00128{height:21.759639px;}
.h12_c00128{height:24.891299px;}
.h4_c00128{height:27.968965px;}
.h8_c00128{height:31.100625px;}
.h6_c00128{height:34.232285px;}
.h1a_c00128{height:37.309951px;}
.h13_c00128{height:40.441611px;}
.h22_c00128{height:43.519277px;}
.h25_c00128{height:46.650937px;}
.h26_c00128{height:49.782598px;}
.h18_c00128{height:52.860264px;}
.h1b_c00128{height:55.991924px;}
.hf_c00128{height:59.069590px;}
.hd_c00128{height:62.201250px;}
.h10_c00128{height:65.332910px;}
.hc_c00128{height:68.410576px;}
.h1c_c00128{height:71.542236px;}
.he_c00128{height:74.619902px;}
.h16_c00128{height:77.751563px;}
.h15_c00128{height:80.883223px;}
.h19_c00128{height:83.960889px;}
.h14_c00128{height:87.092549px;}
.h17_c00128{height:90.170215px;}
.h1d_c00128{height:93.301875px;}
.h1f_c00128{height:96.433535px;}
.h21_c00128{height:99.511201px;}
.h1e_c00128{height:102.642861px;}
.h20_c00128{height:105.720527px;}
.h23_c00128{height:108.852188px;}
.h24_c00128{height:111.983848px;}
.h27_c00128{height:118.193174px;}
.h0_c00128{height:1517.190000px;}
.h1_c00128{height:1517.250000px;}
.w0_c00128{width:1090.365000px;}
.w1_c00128{width:1090.500000px;}
.x0_c00128{left:0.000000px;}
.x1_c00128{left:167.610000px;}
.x2_c00128{left:174.525000px;}
.x35_c00128{left:188.355000px;}
.xd0_c00128{left:192.675000px;}
.x36_c00128{left:199.590000px;}
.x73_c00128{left:202.170000px;}
.x53_c00128{left:206.490000px;}
.x96_c00128{left:212.550000px;}
.xa9_c00128{left:215.130000px;}
.x54_c00128{left:216.870000px;}
.x13_c00128{left:219.450000px;}
.xb_c00128{left:222.045000px;}
.xc4_c00128{left:224.640000px;}
.x89_c00128{left:226.365000px;}
.x5e_c00128{left:228.960000px;}
.x19_c00128{left:230.684550px;}
.x14_c00128{left:232.410000px;}
.x37_c00128{left:234.150000px;}
.x1f_c00128{left:239.325000px;}
.xaa_c00128{left:243.645000px;}
.xab_c00128{left:249.690000px;}
.x5f_c00128{left:252.285000px;}
.xc5_c00128{left:255.750000px;}
.xa2_c00128{left:258.330000px;}
.x4_c00128{left:260.070000px;}
.x85_c00128{left:262.650000px;}
.xc9_c00128{left:264.390000px;}
.x5_c00128{left:266.970000px;}
.x20_c00128{left:269.565000px;}
.x6_c00128{left:272.160000px;}
.x38_c00128{left:274.755000px;}
.x6b_c00128{left:278.205000px;}
.x55_c00128{left:281.670000px;}
.x1a_c00128{left:284.250000px;}
.x21_c00128{left:285.990000px;}
.xb8_c00128{left:287.715000px;}
.xd1_c00128{left:293.760000px;}
.x97_c00128{left:295.485000px;}
.xca_c00128{left:301.530000px;}
.xc2_c00128{left:304.125000px;}
.x2c_c00128{left:306.720000px;}
.x4a_c00128{left:313.635000px;}
.x80_c00128{left:315.360000px;}
.xce_c00128{left:317.085000px;}
.xae_c00128{left:319.680000px;}
.xec_c00128{left:321.405000px;}
.x60_c00128{left:323.130000px;}
.x39_c00128{left:325.725000px;}
.xbc_c00128{left:327.450000px;}
.x8a_c00128{left:329.190000px;}
.x56_c00128{left:330.915000px;}
.x79_c00128{left:333.510000px;}
.x4b_c00128{left:335.235000px;}
.xde_c00128{left:336.960000px;}
.x8d_c00128{left:341.280000px;}
.x61_c00128{left:344.730000px;}
.x8e_c00128{left:347.325000px;}
.xdf_c00128{left:349.920000px;}
.x42_c00128{left:355.110000px;}
.xb9_c00128{left:356.835000px;}
.x6c_c00128{left:360.285000px;}
.xaf_c00128{left:362.880000px;}
.xc6_c00128{left:364.605000px;}
.xd9_c00128{left:371.520000px;}
.x1b_c00128{left:373.245000px;}
.xd2_c00128{left:374.970000px;}
.x4c_c00128{left:377.565000px;}
.x22_c00128{left:379.290000px;}
.xcb_c00128{left:382.755000px;}
.xe8_c00128{left:384.480000px;}
.x15_c00128{left:388.800000px;}
.xbd_c00128{left:390.525000px;}
.x2d_c00128{left:393.990000px;}
.x7a_c00128{left:397.440000px;}
.x62_c00128{left:399.165000px;}
.xa3_c00128{left:401.760000px;}
.x23_c00128{left:405.210000px;}
.xda_c00128{left:406.950000px;}
.x2e_c00128{left:411.270000px;}
.x43_c00128{left:414.720000px;}
.x4d_c00128{left:419.910000px;}
.x9b_c00128{left:422.490000px;}
.x63_c00128{left:424.230000px;}
.xbf_c00128{left:428.550000px;}
.xe0_c00128{left:432.000000px;}
.x9e_c00128{left:434.595000px;}
.xe2_c00128{left:437.190000px;}
.xdc_c00128{left:438.915000px;}
.x16_c00128{left:440.640000px;}
.x3e_c00128{left:444.960000px;}
.x81_c00128{left:446.685000px;}
.x57_c00128{left:449.280000px;}
.xb0_c00128{left:451.005000px;}
.xba_c00128{left:453.600000px;}
.x64_c00128{left:455.325000px;}
.x82_c00128{left:457.920000px;}
.xa4_c00128{left:462.240000px;}
.x2f_c00128{left:463.965000px;}
.x8f_c00128{left:465.690000px;}
.x65_c00128{left:471.750000px;}
.xee_c00128{left:475.200000px;}
.x1c_c00128{left:477.795000px;}
.xc3_c00128{left:479.520000px;}
.xe6_c00128{left:481.245000px;}
.xa5_c00128{left:484.710000px;}
.x7b_c00128{left:487.290000px;}
.xe3_c00128{left:492.480000px;}
.x58_c00128{left:494.205000px;}
.x44_c00128{left:496.800000px;}
.xe1_c00128{left:499.395000px;}
.x24_c00128{left:501.990000px;}
.x3a_c00128{left:503.715000px;}
.x74_c00128{left:505.440000px;}
.x4e_c00128{left:509.760000px;}
.xed_c00128{left:511.485000px;}
.x3f_c00128{left:513.210000px;}
.x98_c00128{left:517.530000px;}
.xb1_c00128{left:520.995000px;}
.x66_c00128{left:522.720000px;}
.xe4_c00128{left:527.040000px;}
.x25_c00128{left:528.765000px;}
.xc_c00128{left:531.360000px;}
.x90_c00128{left:533.085000px;}
.x7c_c00128{left:535.680000px;}
.xdd_c00128{left:537.405000px;}
.xac_c00128{left:540.870000px;}
.x3b_c00128{left:544.320000px;}
.x59_c00128{left:546.045000px;}
.x45_c00128{left:549.510000px;}
.x4f_c00128{left:554.685000px;}
.x7_c00128{left:557.280000px;}
.x91_c00128{left:559.005000px;}
.xb4_c00128{left:560.730000px;}
.xf0_c00128{left:563.325000px;}
.x6d_c00128{left:565.920000px;}
.x8_c00128{left:568.515000px;}
.x67_c00128{left:571.110000px;}
.x46_c00128{left:574.560000px;}
.x9c_c00128{left:580.605000px;}
.x68_c00128{left:583.200000px;}
.x30_c00128{left:587.520000px;}
.x50_c00128{left:589.245000px;}
.xad_c00128{left:591.840000px;}
.xe7_c00128{left:593.565000px;}
.x3c_c00128{left:595.290000px;}
.x6e_c00128{left:597.030000px;}
.xb5_c00128{left:600.480000px;}
.x99_c00128{left:602.205000px;}
.xcc_c00128{left:605.670000px;}
.xa6_c00128{left:607.395000px;}
.xc0_c00128{left:609.120000px;}
.x86_c00128{left:610.845000px;}
.x3d_c00128{left:612.570000px;}
.x51_c00128{left:615.165000px;}
.x1d_c00128{left:616.890000px;}
.x92_c00128{left:620.355000px;}
.x6f_c00128{left:622.950000px;}
.x8b_c00128{left:624.675000px;}
.x40_c00128{left:626.400000px;}
.x17_c00128{left:630.720000px;}
.xd6_c00128{left:635.040000px;}
.x7d_c00128{left:638.490000px;}
.xc7_c00128{left:641.085000px;}
.x83_c00128{left:644.550000px;}
.x41_c00128{left:648.870000px;}
.x93_c00128{left:656.640000px;}
.xb2_c00128{left:658.365000px;}
.xd_c00128{left:660.960000px;}
.x75_c00128{left:662.685000px;}
.xbe_c00128{left:665.280000px;}
.xc1_c00128{left:667.875000px;}
.x9a_c00128{left:673.050000px;}
.x18_c00128{left:674.790000px;}
.xe_c00128{left:678.240000px;}
.x7e_c00128{left:683.430000px;}
.xf_c00128{left:689.475000px;}
.x26_c00128{left:691.200000px;}
.x47_c00128{left:692.925000px;}
.xe5_c00128{left:694.650000px;}
.x10_c00128{left:696.390000px;}
.x27_c00128{left:698.970000px;}
.xea_c00128{left:701.565000px;}
.x76_c00128{left:703.290000px;}
.x9d_c00128{left:708.480000px;}
.x94_c00128{left:711.075000px;}
.x9_c00128{left:714.525000px;}
.x3_c00128{left:718.845000px;}
.x31_c00128{left:720.570000px;}
.x8c_c00128{left:723.165000px;}
.x5a_c00128{left:725.760000px;}
.xf1_c00128{left:730.080000px;}
.xa_c00128{left:732.675000px;}
.x28_c00128{left:734.400000px;}
.xcd_c00128{left:736.125000px;}
.xbb_c00128{left:737.850000px;}
.xd3_c00128{left:742.170000px;}
.x77_c00128{left:745.635000px;}
.xd7_c00128{left:747.360000px;}
.x5b_c00128{left:749.085000px;}
.x32_c00128{left:750.810000px;}
.x87_c00128{left:752.550000px;}
.xc8_c00128{left:755.130000px;}
.x33_c00128{left:758.595000px;}
.x11_c00128{left:761.190000px;}
.x69_c00128{left:764.640000px;}
.xb3_c00128{left:767.235000px;}
.x29_c00128{left:769.830000px;}
.xa7_c00128{left:771.555000px;}
.x7f_c00128{left:775.005000px;}
.x12_c00128{left:781.050000px;}
.x78_c00128{left:787.110000px;}
.x48_c00128{left:788.835000px;}
.xf4_c00128{left:792.285000px;}
.x52_c00128{left:795.750000px;}
.x95_c00128{left:797.475000px;}
.x84_c00128{left:800.070000px;}
.xeb_c00128{left:801.795000px;}
.x1e_c00128{left:803.520000px;}
.x70_c00128{left:805.245000px;}
.xd8_c00128{left:806.970000px;}
.xf2_c00128{left:808.710000px;}
.xa8_c00128{left:811.290000px;}
.xf3_c00128{left:813.885000px;}
.x9f_c00128{left:816.480000px;}
.xb6_c00128{left:819.930000px;}
.xdb_c00128{left:822.525000px;}
.x6a_c00128{left:826.845000px;}
.xd4_c00128{left:828.570000px;}
.x71_c00128{left:830.310000px;}
.x34_c00128{left:833.760000px;}
.x5c_c00128{left:837.210000px;}
.xcf_c00128{left:840.675000px;}
.x88_c00128{left:844.125000px;}
.xb7_c00128{left:845.850000px;}
.x2a_c00128{left:850.170000px;}
.xf5_c00128{left:858.810000px;}
.xd5_c00128{left:861.405000px;}
.x2b_c00128{left:864.000000px;}
.xef_c00128{left:872.640000px;}
.x49_c00128{left:875.235000px;}
.x72_c00128{left:877.830000px;}
.x5d_c00128{left:880.410000px;}
.xe9_c00128{left:882.150000px;}
.xa0_c00128{left:889.920000px;}
.xa1_c00128{left:907.200000px;}
.xfa_c00128{left:910.650000px;}
.xfb_c00128{left:930.525000px;}
.xf8_c00128{left:940.035000px;}
.xf9_c00128{left:946.080000px;}
.xfd_c00128{left:951.270000px;}
.xfc_c00128{left:952.995000px;}
.xf6_c00128{left:979.770000px;}
.xf7_c00128{left:993.600000px;}
@media print{
.v1_c00128{vertical-align:-3.093333pt;}
.v0_c00128{vertical-align:0.000000pt;}
.v2_c00128{vertical-align:3.093333pt;}
.ls3_c00128{letter-spacing:0.000000pt;}
.ls0_c00128{letter-spacing:34.825547pt;}
.ls2_c00128{letter-spacing:64.243093pt;}
.ls1_c00128{letter-spacing:132.711723pt;}
.ws1_c00128{word-spacing:0.000000pt;}
.ws0_c00128{word-spacing:36.742357pt;}
.fs5_c00128{font-size:3.072000pt;}
.fs1_c00128{font-size:5.333333pt;}
.fs7_c00128{font-size:6.133333pt;}
.fsf_c00128{font-size:9.226667pt;}
.fs0_c00128{font-size:12.266667pt;}
.fs3_c00128{font-size:15.360000pt;}
.fs8_c00128{font-size:18.453333pt;}
.fs9_c00128{font-size:21.493333pt;}
.fs10_c00128{font-size:24.586667pt;}
.fs2_c00128{font-size:27.626667pt;}
.fs6_c00128{font-size:30.720000pt;}
.fs4_c00128{font-size:33.813333pt;}
.fs18_c00128{font-size:36.853333pt;}
.fs11_c00128{font-size:39.946667pt;}
.fs20_c00128{font-size:42.986667pt;}
.fs23_c00128{font-size:46.080000pt;}
.fs24_c00128{font-size:49.173333pt;}
.fs16_c00128{font-size:52.213333pt;}
.fs19_c00128{font-size:55.306667pt;}
.fsd_c00128{font-size:58.346667pt;}
.fsb_c00128{font-size:61.440000pt;}
.fse_c00128{font-size:64.533333pt;}
.fsa_c00128{font-size:67.573333pt;}
.fs1a_c00128{font-size:70.666667pt;}
.fsc_c00128{font-size:73.706667pt;}
.fs14_c00128{font-size:76.800000pt;}
.fs13_c00128{font-size:79.893333pt;}
.fs17_c00128{font-size:82.933333pt;}
.fs12_c00128{font-size:86.026667pt;}
.fs15_c00128{font-size:89.066667pt;}
.fs1b_c00128{font-size:92.160000pt;}
.fs1d_c00128{font-size:95.253333pt;}
.fs1f_c00128{font-size:98.293333pt;}
.fs1c_c00128{font-size:101.386667pt;}
.fs1e_c00128{font-size:104.426667pt;}
.fs21_c00128{font-size:107.520000pt;}
.fs22_c00128{font-size:110.613333pt;}
.fs25_c00128{font-size:116.746667pt;}
.y0_c00128{bottom:0.000000pt;}
.y187_c00128{bottom:204.293333pt;}
.y186_c00128{bottom:206.586667pt;}
.y185_c00128{bottom:208.133333pt;}
.y184_c00128{bottom:208.893333pt;}
.y183_c00128{bottom:223.493333pt;}
.y182_c00128{bottom:225.026667pt;}
.y178_c00128{bottom:225.786667pt;}
.y17d_c00128{bottom:226.560000pt;}
.y180_c00128{bottom:227.333333pt;}
.y179_c00128{bottom:230.400000pt;}
.y17a_c00128{bottom:231.173333pt;}
.y177_c00128{bottom:232.706667pt;}
.y17e_c00128{bottom:233.466667pt;}
.y17b_c00128{bottom:234.240000pt;}
.y17f_c00128{bottom:235.013333pt;}
.y17c_c00128{bottom:238.853333pt;}
.y174_c00128{bottom:241.920000pt;}
.y170_c00128{bottom:243.453333pt;}
.y181_c00128{bottom:244.226667pt;}
.y172_c00128{bottom:244.986667pt;}
.y173_c00128{bottom:245.760000pt;}
.y175_c00128{bottom:247.293333pt;}
.y171_c00128{bottom:252.666667pt;}
.y176_c00128{bottom:259.586667pt;}
.y16c_c00128{bottom:270.333333pt;}
.y16e_c00128{bottom:271.866667pt;}
.y16a_c00128{bottom:274.173333pt;}
.y16f_c00128{bottom:274.946667pt;}
.y16b_c00128{bottom:276.480000pt;}
.y16d_c00128{bottom:278.786667pt;}
.y165_c00128{bottom:293.373333pt;}
.y166_c00128{bottom:294.906667pt;}
.y164_c00128{bottom:295.680000pt;}
.y169_c00128{bottom:296.453333pt;}
.y167_c00128{bottom:297.213333pt;}
.y168_c00128{bottom:298.746667pt;}
.y163_c00128{bottom:304.893333pt;}
.y15f_c00128{bottom:314.106667pt;}
.y162_c00128{bottom:315.653333pt;}
.y161_c00128{bottom:316.413333pt;}
.y160_c00128{bottom:317.186667pt;}
.y15e_c00128{bottom:320.253333pt;}
.y15c_c00128{bottom:337.920000pt;}
.y15d_c00128{bottom:338.693333pt;}
.y15b_c00128{bottom:341.760000pt;}
.y157_c00128{bottom:357.893333pt;}
.y159_c00128{bottom:358.653333pt;}
.y158_c00128{bottom:360.186667pt;}
.y15a_c00128{bottom:360.960000pt;}
.y156_c00128{bottom:382.466667pt;}
.y153_c00128{bottom:383.226667pt;}
.y155_c00128{bottom:384.000000pt;}
.y154_c00128{bottom:387.066667pt;}
.y14f_c00128{bottom:404.733333pt;}
.y150_c00128{bottom:405.506667pt;}
.y151_c00128{bottom:406.266667pt;}
.y152_c00128{bottom:409.346667pt;}
.y148_c00128{bottom:426.240000pt;}
.y149_c00128{bottom:427.013333pt;}
.y14b_c00128{bottom:427.773333pt;}
.y14d_c00128{bottom:428.546667pt;}
.y14a_c00128{bottom:430.853333pt;}
.y147_c00128{bottom:432.386667pt;}
.y14c_c00128{bottom:434.693333pt;}
.y14e_c00128{bottom:445.440000pt;}
.y142_c00128{bottom:448.506667pt;}
.y140_c00128{bottom:449.280000pt;}
.y145_c00128{bottom:450.053333pt;}
.y13f_c00128{bottom:450.813333pt;}
.y144_c00128{bottom:453.120000pt;}
.y143_c00128{bottom:453.893333pt;}
.y141_c00128{bottom:456.186667pt;}
.y146_c00128{bottom:467.706667pt;}
.y13a_c00128{bottom:470.786667pt;}
.y13b_c00128{bottom:471.546667pt;}
.y13e_c00128{bottom:472.320000pt;}
.y13c_c00128{bottom:473.093333pt;}
.y139_c00128{bottom:477.693333pt;}
.y13d_c00128{bottom:478.466667pt;}
.y134_c00128{bottom:493.826667pt;}
.y132_c00128{bottom:494.586667pt;}
.y137_c00128{bottom:495.360000pt;}
.y135_c00128{bottom:496.133333pt;}
.y136_c00128{bottom:497.666667pt;}
.y138_c00128{bottom:498.426667pt;}
.y133_c00128{bottom:500.733333pt;}
.y12c_c00128{bottom:516.093333pt;}
.y12b_c00128{bottom:519.173333pt;}
.y130_c00128{bottom:519.933333pt;}
.y12e_c00128{bottom:521.466667pt;}
.y131_c00128{bottom:522.240000pt;}
.y12d_c00128{bottom:523.013333pt;}
.y12f_c00128{bottom:523.773333pt;}
.y124_c00128{bottom:538.373333pt;}
.y123_c00128{bottom:539.906667pt;}
.y12a_c00128{bottom:541.440000pt;}
.y126_c00128{bottom:542.213333pt;}
.y127_c00128{bottom:542.973333pt;}
.y125_c00128{bottom:545.280000pt;}
.y128_c00128{bottom:546.813333pt;}
.y122_c00128{bottom:548.346667pt;}
.y129_c00128{bottom:553.733333pt;}
.y11d_c00128{bottom:560.640000pt;}
.y11c_c00128{bottom:561.413333pt;}
.y11e_c00128{bottom:562.173333pt;}
.y120_c00128{bottom:563.706667pt;}
.y11f_c00128{bottom:565.253333pt;}
.y121_c00128{bottom:566.013333pt;}
.y11b_c00128{bottom:567.546667pt;}
.y113_c00128{bottom:581.373333pt;}
.y111_c00128{bottom:582.146667pt;}
.y112_c00128{bottom:582.906667pt;}
.y115_c00128{bottom:583.680000pt;}
.y117_c00128{bottom:584.453333pt;}
.y119_c00128{bottom:585.213333pt;}
.y114_c00128{bottom:589.826667pt;}
.y116_c00128{bottom:590.586667pt;}
.y118_c00128{bottom:591.360000pt;}
.y11a_c00128{bottom:592.893333pt;}
.y108_c00128{bottom:603.653333pt;}
.y10a_c00128{bottom:605.186667pt;}
.y110_c00128{bottom:606.720000pt;}
.y10d_c00128{bottom:607.493333pt;}
.y109_c00128{bottom:608.253333pt;}
.y10e_c00128{bottom:609.026667pt;}
.y10b_c00128{bottom:611.333333pt;}
.y10c_c00128{bottom:612.093333pt;}
.y10f_c00128{bottom:613.626667pt;}
.y102_c00128{bottom:625.920000pt;}
.y103_c00128{bottom:626.693333pt;}
.y106_c00128{bottom:627.453333pt;}
.y104_c00128{bottom:632.826667pt;}
.y105_c00128{bottom:633.600000pt;}
.y107_c00128{bottom:636.666667pt;}
.yfc_c00128{bottom:648.186667pt;}
.y100_c00128{bottom:649.733333pt;}
.yfa_c00128{bottom:651.266667pt;}
.y101_c00128{bottom:652.800000pt;}
.yfb_c00128{bottom:653.573333pt;}
.yfd_c00128{bottom:654.333333pt;}
.yfe_c00128{bottom:655.106667pt;}
.yff_c00128{bottom:655.866667pt;}
.yf8_c00128{bottom:669.693333pt;}
.yf3_c00128{bottom:670.466667pt;}
.yf5_c00128{bottom:671.226667pt;}
.yf9_c00128{bottom:672.000000pt;}
.yf1_c00128{bottom:674.306667pt;}
.yf2_c00128{bottom:676.613333pt;}
.yf4_c00128{bottom:677.373333pt;}
.yf6_c00128{bottom:678.146667pt;}
.yf7_c00128{bottom:678.906667pt;}
.yed_c00128{bottom:686.586667pt;}
.yf0_c00128{bottom:687.360000pt;}
.yeb_c00128{bottom:691.973333pt;}
.yec_c00128{bottom:693.506667pt;}
.yef_c00128{bottom:695.040000pt;}
.yea_c00128{bottom:698.106667pt;}
.yee_c00128{bottom:699.653333pt;}
.ye3_c00128{bottom:712.706667pt;}
.ye5_c00128{bottom:713.466667pt;}
.ye6_c00128{bottom:714.240000pt;}
.ye7_c00128{bottom:715.013333pt;}
.ye9_c00128{bottom:715.773333pt;}
.ye8_c00128{bottom:716.546667pt;}
.ye4_c00128{bottom:720.386667pt;}
.yde_c00128{bottom:734.973333pt;}
.ydf_c00128{bottom:735.746667pt;}
.ye0_c00128{bottom:736.506667pt;}
.ye2_c00128{bottom:737.280000pt;}
.ye1_c00128{bottom:741.893333pt;}
.ydd_c00128{bottom:752.640000pt;}
.yd5_c00128{bottom:755.706667pt;}
.yd2_c00128{bottom:757.253333pt;}
.yd9_c00128{bottom:758.786667pt;}
.yda_c00128{bottom:759.546667pt;}
.yd7_c00128{bottom:760.320000pt;}
.yd3_c00128{bottom:761.093333pt;}
.yd4_c00128{bottom:763.386667pt;}
.yd6_c00128{bottom:764.160000pt;}
.ydb_c00128{bottom:764.933333pt;}
.yd8_c00128{bottom:765.693333pt;}
.ydc_c00128{bottom:774.906667pt;}
.yca_c00128{bottom:779.520000pt;}
.ycd_c00128{bottom:780.293333pt;}
.yd0_c00128{bottom:781.053333pt;}
.ycc_c00128{bottom:781.826667pt;}
.ycf_c00128{bottom:782.586667pt;}
.ycb_c00128{bottom:785.666667pt;}
.yce_c00128{bottom:786.426667pt;}
.yd1_c00128{bottom:792.573333pt;}
.yc3_c00128{bottom:801.786667pt;}
.yc7_c00128{bottom:803.333333pt;}
.yc8_c00128{bottom:804.093333pt;}
.yc2_c00128{bottom:805.626667pt;}
.yc6_c00128{bottom:806.400000pt;}
.yc1_c00128{bottom:807.933333pt;}
.yc4_c00128{bottom:808.706667pt;}
.yc5_c00128{bottom:810.240000pt;}
.yc9_c00128{bottom:812.546667pt;}
.yc0_c00128{bottom:813.306667pt;}
.yb9_c00128{bottom:823.293333pt;}
.yba_c00128{bottom:824.066667pt;}
.ybc_c00128{bottom:824.826667pt;}
.ybd_c00128{bottom:825.600000pt;}
.yb8_c00128{bottom:826.373333pt;}
.ybe_c00128{bottom:827.133333pt;}
.yb7_c00128{bottom:830.213333pt;}
.ybb_c00128{bottom:831.746667pt;}
.ybf_c00128{bottom:832.506667pt;}
.y18d_c00128{bottom:833.280000pt;}
.y18c_c00128{bottom:840.186667pt;}
.yae_c00128{bottom:844.800000pt;}
.yad_c00128{bottom:845.573333pt;}
.yaf_c00128{bottom:846.333333pt;}
.yb2_c00128{bottom:847.866667pt;}
.yb3_c00128{bottom:848.640000pt;}
.yb0_c00128{bottom:849.413333pt;}
.yac_c00128{bottom:853.253333pt;}
.yb1_c00128{bottom:854.013333pt;}
.yb6_c00128{bottom:860.160000pt;}
.yb4_c00128{bottom:860.933333pt;}
.yb5_c00128{bottom:868.613333pt;}
.ya8_c00128{bottom:869.373333pt;}
.ya9_c00128{bottom:870.146667pt;}
.yab_c00128{bottom:870.906667pt;}
.yaa_c00128{bottom:871.680000pt;}
.ya4_c00128{bottom:872.453333pt;}
.ya7_c00128{bottom:873.986667pt;}
.ya5_c00128{bottom:874.746667pt;}
.ya6_c00128{bottom:875.520000pt;}
.y9f_c00128{bottom:890.106667pt;}
.y9d_c00128{bottom:890.880000pt;}
.ya1_c00128{bottom:892.413333pt;}
.y9c_c00128{bottom:893.186667pt;}
.ya2_c00128{bottom:896.253333pt;}
.y9e_c00128{bottom:897.026667pt;}
.ya0_c00128{bottom:897.786667pt;}
.y9b_c00128{bottom:898.560000pt;}
.ya3_c00128{bottom:899.333333pt;}
.y9a_c00128{bottom:912.386667pt;}
.y94_c00128{bottom:913.146667pt;}
.y96_c00128{bottom:913.920000pt;}
.y97_c00128{bottom:914.693333pt;}
.y95_c00128{bottom:917.760000pt;}
.y98_c00128{bottom:920.826667pt;}
.y99_c00128{bottom:921.600000pt;}
.y8d_c00128{bottom:934.653333pt;}
.y92_c00128{bottom:935.426667pt;}
.y91_c00128{bottom:936.186667pt;}
.y93_c00128{bottom:936.960000pt;}
.y8e_c00128{bottom:938.493333pt;}
.y8c_c00128{bottom:940.800000pt;}
.y90_c00128{bottom:942.333333pt;}
.y8f_c00128{bottom:943.106667pt;}
.y88_c00128{bottom:957.693333pt;}
.y89_c00128{bottom:958.466667pt;}
.y87_c00128{bottom:961.533333pt;}
.y85_c00128{bottom:962.306667pt;}
.y86_c00128{bottom:963.066667pt;}
.y8a_c00128{bottom:964.613333pt;}
.y8b_c00128{bottom:966.146667pt;}
.y80_c00128{bottom:978.426667pt;}
.y7f_c00128{bottom:979.200000pt;}
.y18a_c00128{bottom:979.973333pt;}
.y82_c00128{bottom:980.733333pt;}
.y18b_c00128{bottom:982.266667pt;}
.y84_c00128{bottom:983.040000pt;}
.y81_c00128{bottom:985.346667pt;}
.y83_c00128{bottom:986.880000pt;}
.y7e_c00128{bottom:999.933333pt;}
.y77_c00128{bottom:1001.466667pt;}
.y78_c00128{bottom:1002.240000pt;}
.y7b_c00128{bottom:1003.013333pt;}
.y7d_c00128{bottom:1003.773333pt;}
.y79_c00128{bottom:1006.853333pt;}
.y76_c00128{bottom:1007.613333pt;}
.y7a_c00128{bottom:1009.146667pt;}
.y7c_c00128{bottom:1009.920000pt;}
.y75_c00128{bottom:1018.373333pt;}
.y6d_c00128{bottom:1022.213333pt;}
.y6e_c00128{bottom:1022.973333pt;}
.y6f_c00128{bottom:1023.746667pt;}
.y72_c00128{bottom:1024.506667pt;}
.y71_c00128{bottom:1025.280000pt;}
.y73_c00128{bottom:1026.813333pt;}
.y70_c00128{bottom:1029.120000pt;}
.y6c_c00128{bottom:1031.426667pt;}
.y74_c00128{bottom:1032.186667pt;}
.y64_c00128{bottom:1044.480000pt;}
.y65_c00128{bottom:1046.013333pt;}
.y69_c00128{bottom:1046.786667pt;}
.y67_c00128{bottom:1047.546667pt;}
.y68_c00128{bottom:1048.320000pt;}
.y62_c00128{bottom:1051.386667pt;}
.y63_c00128{bottom:1052.160000pt;}
.y66_c00128{bottom:1052.933333pt;}
.y6a_c00128{bottom:1054.466667pt;}
.y6b_c00128{bottom:1056.773333pt;}
.y61_c00128{bottom:1062.146667pt;}
.y59_c00128{bottom:1067.520000pt;}
.y5a_c00128{bottom:1068.293333pt;}
.y5e_c00128{bottom:1069.053333pt;}
.y5f_c00128{bottom:1069.826667pt;}
.y5c_c00128{bottom:1071.360000pt;}
.y60_c00128{bottom:1073.666667pt;}
.y5b_c00128{bottom:1074.426667pt;}
.y5d_c00128{bottom:1075.973333pt;}
.y4e_c00128{bottom:1085.946667pt;}
.y51_c00128{bottom:1086.720000pt;}
.y53_c00128{bottom:1087.493333pt;}
.y57_c00128{bottom:1088.253333pt;}
.y4f_c00128{bottom:1089.786667pt;}
.y4d_c00128{bottom:1090.560000pt;}
.y56_c00128{bottom:1091.333333pt;}
.y52_c00128{bottom:1092.093333pt;}
.y50_c00128{bottom:1095.933333pt;}
.y54_c00128{bottom:1097.466667pt;}
.y55_c00128{bottom:1098.240000pt;}
.y58_c00128{bottom:1099.773333pt;}
.y44_c00128{bottom:1112.066667pt;}
.y48_c00128{bottom:1112.826667pt;}
.y4c_c00128{bottom:1113.600000pt;}
.y4a_c00128{bottom:1114.373333pt;}
.y49_c00128{bottom:1115.906667pt;}
.y47_c00128{bottom:1116.666667pt;}
.y46_c00128{bottom:1117.440000pt;}
.y45_c00128{bottom:1118.213333pt;}
.y4b_c00128{bottom:1120.506667pt;}
.y3d_c00128{bottom:1134.333333pt;}
.y41_c00128{bottom:1135.106667pt;}
.y3c_c00128{bottom:1135.866667pt;}
.y42_c00128{bottom:1136.640000pt;}
.y3f_c00128{bottom:1139.706667pt;}
.y3e_c00128{bottom:1140.480000pt;}
.y40_c00128{bottom:1143.546667pt;}
.y43_c00128{bottom:1155.066667pt;}
.y37_c00128{bottom:1156.613333pt;}
.y39_c00128{bottom:1158.146667pt;}
.y3b_c00128{bottom:1158.906667pt;}
.y38_c00128{bottom:1163.520000pt;}
.y3a_c00128{bottom:1165.826667pt;}
.y2e_c00128{bottom:1177.346667pt;}
.y2f_c00128{bottom:1178.106667pt;}
.y32_c00128{bottom:1179.653333pt;}
.y36_c00128{bottom:1181.186667pt;}
.y33_c00128{bottom:1183.493333pt;}
.y189_c00128{bottom:1184.253333pt;}
.y30_c00128{bottom:1185.026667pt;}
.y31_c00128{bottom:1186.560000pt;}
.y35_c00128{bottom:1187.333333pt;}
.y34_c00128{bottom:1188.093333pt;}
.y2c_c00128{bottom:1198.080000pt;}
.y2d_c00128{bottom:1199.613333pt;}
.y25_c00128{bottom:1200.386667pt;}
.y29_c00128{bottom:1201.146667pt;}
.y26_c00128{bottom:1201.920000pt;}
.y27_c00128{bottom:1204.226667pt;}
.y28_c00128{bottom:1204.986667pt;}
.y1_c00128{bottom:1205.760000pt;}
.y2a_c00128{bottom:1209.600000pt;}
.y2b_c00128{bottom:1210.373333pt;}
.y2_c00128{bottom:1211.133333pt;}
.y20_c00128{bottom:1224.960000pt;}
.y1f_c00128{bottom:1225.733333pt;}
.y1e_c00128{bottom:1226.493333pt;}
.y1a_c00128{bottom:1227.266667pt;}
.y23_c00128{bottom:1228.026667pt;}
.y21_c00128{bottom:1229.573333pt;}
.y1c_c00128{bottom:1230.333333pt;}
.y1d_c00128{bottom:1231.866667pt;}
.y22_c00128{bottom:1232.640000pt;}
.y1b_c00128{bottom:1233.413333pt;}
.y17_c00128{bottom:1234.946667pt;}
.y18_c00128{bottom:1235.706667pt;}
.y24_c00128{bottom:1236.480000pt;}
.y19_c00128{bottom:1238.013333pt;}
.y13_c00128{bottom:1251.066667pt;}
.y16_c00128{bottom:1251.840000pt;}
.y14_c00128{bottom:1252.613333pt;}
.y15_c00128{bottom:1254.906667pt;}
.yb_c00128{bottom:1257.213333pt;}
.yc_c00128{bottom:1260.293333pt;}
.yd_c00128{bottom:1261.053333pt;}
.y10_c00128{bottom:1264.893333pt;}
.ye_c00128{bottom:1266.426667pt;}
.y12_c00128{bottom:1267.200000pt;}
.yf_c00128{bottom:1271.040000pt;}
.y11_c00128{bottom:1274.106667pt;}
.y4_c00128{bottom:1278.720000pt;}
.y6_c00128{bottom:1279.493333pt;}
.y188_c00128{bottom:1284.093333pt;}
.y5_c00128{bottom:1284.866667pt;}
.y9_c00128{bottom:1287.173333pt;}
.y8_c00128{bottom:1288.706667pt;}
.y7_c00128{bottom:1289.466667pt;}
.ya_c00128{bottom:1290.240000pt;}
.y3_c00128{bottom:1295.613333pt;}
.h7_c00128{height:2.764500pt;}
.h3_c00128{height:4.799479pt;}
.h9_c00128{height:5.519401pt;}
.h11_c00128{height:8.303099pt;}
.h2_c00128{height:11.038802pt;}
.h5_c00128{height:13.822500pt;}
.ha_c00128{height:16.606198pt;}
.hb_c00128{height:19.341901pt;}
.h12_c00128{height:22.125599pt;}
.h4_c00128{height:24.861302pt;}
.h8_c00128{height:27.645000pt;}
.h6_c00128{height:30.428698pt;}
.h1a_c00128{height:33.164401pt;}
.h13_c00128{height:35.948099pt;}
.h22_c00128{height:38.683802pt;}
.h25_c00128{height:41.467500pt;}
.h26_c00128{height:44.251198pt;}
.h18_c00128{height:46.986901pt;}
.h1b_c00128{height:49.770599pt;}
.hf_c00128{height:52.506302pt;}
.hd_c00128{height:55.290000pt;}
.h10_c00128{height:58.073698pt;}
.hc_c00128{height:60.809401pt;}
.h1c_c00128{height:63.593099pt;}
.he_c00128{height:66.328802pt;}
.h16_c00128{height:69.112500pt;}
.h15_c00128{height:71.896198pt;}
.h19_c00128{height:74.631901pt;}
.h14_c00128{height:77.415599pt;}
.h17_c00128{height:80.151302pt;}
.h1d_c00128{height:82.935000pt;}
.h1f_c00128{height:85.718698pt;}
.h21_c00128{height:88.454401pt;}
.h1e_c00128{height:91.238099pt;}
.h20_c00128{height:93.973802pt;}
.h23_c00128{height:96.757500pt;}
.h24_c00128{height:99.541198pt;}
.h27_c00128{height:105.060599pt;}
.h0_c00128{height:1348.613333pt;}
.h1_c00128{height:1348.666667pt;}
.w0_c00128{width:969.213333pt;}
.w1_c00128{width:969.333333pt;}
.x0_c00128{left:0.000000pt;}
.x1_c00128{left:148.986667pt;}
.x2_c00128{left:155.133333pt;}
.x35_c00128{left:167.426667pt;}
.xd0_c00128{left:171.266667pt;}
.x36_c00128{left:177.413333pt;}
.x73_c00128{left:179.706667pt;}
.x53_c00128{left:183.546667pt;}
.x96_c00128{left:188.933333pt;}
.xa9_c00128{left:191.226667pt;}
.x54_c00128{left:192.773333pt;}
.x13_c00128{left:195.066667pt;}
.xb_c00128{left:197.373333pt;}
.xc4_c00128{left:199.680000pt;}
.x89_c00128{left:201.213333pt;}
.x5e_c00128{left:203.520000pt;}
.x19_c00128{left:205.052933pt;}
.x14_c00128{left:206.586667pt;}
.x37_c00128{left:208.133333pt;}
.x1f_c00128{left:212.733333pt;}
.xaa_c00128{left:216.573333pt;}
.xab_c00128{left:221.946667pt;}
.x5f_c00128{left:224.253333pt;}
.xc5_c00128{left:227.333333pt;}
.xa2_c00128{left:229.626667pt;}
.x4_c00128{left:231.173333pt;}
.x85_c00128{left:233.466667pt;}
.xc9_c00128{left:235.013333pt;}
.x5_c00128{left:237.306667pt;}
.x20_c00128{left:239.613333pt;}
.x6_c00128{left:241.920000pt;}
.x38_c00128{left:244.226667pt;}
.x6b_c00128{left:247.293333pt;}
.x55_c00128{left:250.373333pt;}
.x1a_c00128{left:252.666667pt;}
.x21_c00128{left:254.213333pt;}
.xb8_c00128{left:255.746667pt;}
.xd1_c00128{left:261.120000pt;}
.x97_c00128{left:262.653333pt;}
.xca_c00128{left:268.026667pt;}
.xc2_c00128{left:270.333333pt;}
.x2c_c00128{left:272.640000pt;}
.x4a_c00128{left:278.786667pt;}
.x80_c00128{left:280.320000pt;}
.xce_c00128{left:281.853333pt;}
.xae_c00128{left:284.160000pt;}
.xec_c00128{left:285.693333pt;}
.x60_c00128{left:287.226667pt;}
.x39_c00128{left:289.533333pt;}
.xbc_c00128{left:291.066667pt;}
.x8a_c00128{left:292.613333pt;}
.x56_c00128{left:294.146667pt;}
.x79_c00128{left:296.453333pt;}
.x4b_c00128{left:297.986667pt;}
.xde_c00128{left:299.520000pt;}
.x8d_c00128{left:303.360000pt;}
.x61_c00128{left:306.426667pt;}
.x8e_c00128{left:308.733333pt;}
.xdf_c00128{left:311.040000pt;}
.x42_c00128{left:315.653333pt;}
.xb9_c00128{left:317.186667pt;}
.x6c_c00128{left:320.253333pt;}
.xaf_c00128{left:322.560000pt;}
.xc6_c00128{left:324.093333pt;}
.xd9_c00128{left:330.240000pt;}
.x1b_c00128{left:331.773333pt;}
.xd2_c00128{left:333.306667pt;}
.x4c_c00128{left:335.613333pt;}
.x22_c00128{left:337.146667pt;}
.xcb_c00128{left:340.226667pt;}
.xe8_c00128{left:341.760000pt;}
.x15_c00128{left:345.600000pt;}
.xbd_c00128{left:347.133333pt;}
.x2d_c00128{left:350.213333pt;}
.x7a_c00128{left:353.280000pt;}
.x62_c00128{left:354.813333pt;}
.xa3_c00128{left:357.120000pt;}
.x23_c00128{left:360.186667pt;}
.xda_c00128{left:361.733333pt;}
.x2e_c00128{left:365.573333pt;}
.x43_c00128{left:368.640000pt;}
.x4d_c00128{left:373.253333pt;}
.x9b_c00128{left:375.546667pt;}
.x63_c00128{left:377.093333pt;}
.xbf_c00128{left:380.933333pt;}
.xe0_c00128{left:384.000000pt;}
.x9e_c00128{left:386.306667pt;}
.xe2_c00128{left:388.613333pt;}
.xdc_c00128{left:390.146667pt;}
.x16_c00128{left:391.680000pt;}
.x3e_c00128{left:395.520000pt;}
.x81_c00128{left:397.053333pt;}
.x57_c00128{left:399.360000pt;}
.xb0_c00128{left:400.893333pt;}
.xba_c00128{left:403.200000pt;}
.x64_c00128{left:404.733333pt;}
.x82_c00128{left:407.040000pt;}
.xa4_c00128{left:410.880000pt;}
.x2f_c00128{left:412.413333pt;}
.x8f_c00128{left:413.946667pt;}
.x65_c00128{left:419.333333pt;}
.xee_c00128{left:422.400000pt;}
.x1c_c00128{left:424.706667pt;}
.xc3_c00128{left:426.240000pt;}
.xe6_c00128{left:427.773333pt;}
.xa5_c00128{left:430.853333pt;}
.x7b_c00128{left:433.146667pt;}
.xe3_c00128{left:437.760000pt;}
.x58_c00128{left:439.293333pt;}
.x44_c00128{left:441.600000pt;}
.xe1_c00128{left:443.906667pt;}
.x24_c00128{left:446.213333pt;}
.x3a_c00128{left:447.746667pt;}
.x74_c00128{left:449.280000pt;}
.x4e_c00128{left:453.120000pt;}
.xed_c00128{left:454.653333pt;}
.x3f_c00128{left:456.186667pt;}
.x98_c00128{left:460.026667pt;}
.xb1_c00128{left:463.106667pt;}
.x66_c00128{left:464.640000pt;}
.xe4_c00128{left:468.480000pt;}
.x25_c00128{left:470.013333pt;}
.xc_c00128{left:472.320000pt;}
.x90_c00128{left:473.853333pt;}
.x7c_c00128{left:476.160000pt;}
.xdd_c00128{left:477.693333pt;}
.xac_c00128{left:480.773333pt;}
.x3b_c00128{left:483.840000pt;}
.x59_c00128{left:485.373333pt;}
.x45_c00128{left:488.453333pt;}
.x4f_c00128{left:493.053333pt;}
.x7_c00128{left:495.360000pt;}
.x91_c00128{left:496.893333pt;}
.xb4_c00128{left:498.426667pt;}
.xf0_c00128{left:500.733333pt;}
.x6d_c00128{left:503.040000pt;}
.x8_c00128{left:505.346667pt;}
.x67_c00128{left:507.653333pt;}
.x46_c00128{left:510.720000pt;}
.x9c_c00128{left:516.093333pt;}
.x68_c00128{left:518.400000pt;}
.x30_c00128{left:522.240000pt;}
.x50_c00128{left:523.773333pt;}
.xad_c00128{left:526.080000pt;}
.xe7_c00128{left:527.613333pt;}
.x3c_c00128{left:529.146667pt;}
.x6e_c00128{left:530.693333pt;}
.xb5_c00128{left:533.760000pt;}
.x99_c00128{left:535.293333pt;}
.xcc_c00128{left:538.373333pt;}
.xa6_c00128{left:539.906667pt;}
.xc0_c00128{left:541.440000pt;}
.x86_c00128{left:542.973333pt;}
.x3d_c00128{left:544.506667pt;}
.x51_c00128{left:546.813333pt;}
.x1d_c00128{left:548.346667pt;}
.x92_c00128{left:551.426667pt;}
.x6f_c00128{left:553.733333pt;}
.x8b_c00128{left:555.266667pt;}
.x40_c00128{left:556.800000pt;}
.x17_c00128{left:560.640000pt;}
.xd6_c00128{left:564.480000pt;}
.x7d_c00128{left:567.546667pt;}
.xc7_c00128{left:569.853333pt;}
.x83_c00128{left:572.933333pt;}
.x41_c00128{left:576.773333pt;}
.x93_c00128{left:583.680000pt;}
.xb2_c00128{left:585.213333pt;}
.xd_c00128{left:587.520000pt;}
.x75_c00128{left:589.053333pt;}
.xbe_c00128{left:591.360000pt;}
.xc1_c00128{left:593.666667pt;}
.x9a_c00128{left:598.266667pt;}
.x18_c00128{left:599.813333pt;}
.xe_c00128{left:602.880000pt;}
.x7e_c00128{left:607.493333pt;}
.xf_c00128{left:612.866667pt;}
.x26_c00128{left:614.400000pt;}
.x47_c00128{left:615.933333pt;}
.xe5_c00128{left:617.466667pt;}
.x10_c00128{left:619.013333pt;}
.x27_c00128{left:621.306667pt;}
.xea_c00128{left:623.613333pt;}
.x76_c00128{left:625.146667pt;}
.x9d_c00128{left:629.760000pt;}
.x94_c00128{left:632.066667pt;}
.x9_c00128{left:635.133333pt;}
.x3_c00128{left:638.973333pt;}
.x31_c00128{left:640.506667pt;}
.x8c_c00128{left:642.813333pt;}
.x5a_c00128{left:645.120000pt;}
.xf1_c00128{left:648.960000pt;}
.xa_c00128{left:651.266667pt;}
.x28_c00128{left:652.800000pt;}
.xcd_c00128{left:654.333333pt;}
.xbb_c00128{left:655.866667pt;}
.xd3_c00128{left:659.706667pt;}
.x77_c00128{left:662.786667pt;}
.xd7_c00128{left:664.320000pt;}
.x5b_c00128{left:665.853333pt;}
.x32_c00128{left:667.386667pt;}
.x87_c00128{left:668.933333pt;}
.xc8_c00128{left:671.226667pt;}
.x33_c00128{left:674.306667pt;}
.x11_c00128{left:676.613333pt;}
.x69_c00128{left:679.680000pt;}
.xb3_c00128{left:681.986667pt;}
.x29_c00128{left:684.293333pt;}
.xa7_c00128{left:685.826667pt;}
.x7f_c00128{left:688.893333pt;}
.x12_c00128{left:694.266667pt;}
.x78_c00128{left:699.653333pt;}
.x48_c00128{left:701.186667pt;}
.xf4_c00128{left:704.253333pt;}
.x52_c00128{left:707.333333pt;}
.x95_c00128{left:708.866667pt;}
.x84_c00128{left:711.173333pt;}
.xeb_c00128{left:712.706667pt;}
.x1e_c00128{left:714.240000pt;}
.x70_c00128{left:715.773333pt;}
.xd8_c00128{left:717.306667pt;}
.xf2_c00128{left:718.853333pt;}
.xa8_c00128{left:721.146667pt;}
.xf3_c00128{left:723.453333pt;}
.x9f_c00128{left:725.760000pt;}
.xb6_c00128{left:728.826667pt;}
.xdb_c00128{left:731.133333pt;}
.x6a_c00128{left:734.973333pt;}
.xd4_c00128{left:736.506667pt;}
.x71_c00128{left:738.053333pt;}
.x34_c00128{left:741.120000pt;}
.x5c_c00128{left:744.186667pt;}
.xcf_c00128{left:747.266667pt;}
.x88_c00128{left:750.333333pt;}
.xb7_c00128{left:751.866667pt;}
.x2a_c00128{left:755.706667pt;}
.xf5_c00128{left:763.386667pt;}
.xd5_c00128{left:765.693333pt;}
.x2b_c00128{left:768.000000pt;}
.xef_c00128{left:775.680000pt;}
.x49_c00128{left:777.986667pt;}
.x72_c00128{left:780.293333pt;}
.x5d_c00128{left:782.586667pt;}
.xe9_c00128{left:784.133333pt;}
.xa0_c00128{left:791.040000pt;}
.xa1_c00128{left:806.400000pt;}
.xfa_c00128{left:809.466667pt;}
.xfb_c00128{left:827.133333pt;}
.xf8_c00128{left:835.586667pt;}
.xf9_c00128{left:840.960000pt;}
.xfd_c00128{left:845.573333pt;}
.xfc_c00128{left:847.106667pt;}
.xf6_c00128{left:870.906667pt;}
.xf7_c00128{left:883.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_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_0a492078d158fd7cf49b6b7a.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.109863;font-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_c00129{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m82_c00129{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m75_c00129{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m18_c00129{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);}
.m11c_c00129{transform:matrix(0.079625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079625,0.000000,0.000000,0.250000,0,0);}
.m76_c00129{transform:matrix(0.082275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082275,0.000000,0.000000,0.250000,0,0);}
.m185_c00129{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m73_c00129{transform:matrix(0.099800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099800,0.000000,0.000000,0.250000,0,0);}
.mcd_c00129{transform:matrix(0.100075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100075,0.000000,0.000000,0.250000,0,0);}
.m3c_c00129{transform:matrix(0.103575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103575,0.000000,0.000000,0.250000,0,0);}
.ma8_c00129{transform:matrix(0.103600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103600,0.000000,0.000000,0.250000,0,0);}
.m98_c00129{transform:matrix(0.103950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103950,0.000000,0.000000,0.250000,0,0);}
.m37_c00129{transform:matrix(0.105700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105700,0.000000,0.000000,0.250000,0,0);}
.m4b_c00129{transform:matrix(0.105875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105875,0.000000,0.000000,0.250000,0,0);}
.m100_c00129{transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);}
.m32_c00129{transform:matrix(0.108800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108800,0.000000,0.000000,0.250000,0,0);}
.m170_c00129{transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);}
.m9a_c00129{transform:matrix(0.112025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112025,0.000000,0.000000,0.250000,0,0);}
.m174_c00129{transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);}
.m9f_c00129{transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00129{transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);}
.m7c_c00129{transform:matrix(0.113525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113525,0.000000,0.000000,0.250000,0,0);}
.m17_c00129{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m135_c00129{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m55_c00129{transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);}
.ma_c00129{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.m78_c00129{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);}
.m140_c00129{transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);}
.m16c_c00129{transform:matrix(0.121900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121900,0.000000,0.000000,0.250000,0,0);}
.m77_c00129{transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);}
.me6_c00129{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);}
.m158_c00129{transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);}
.md3_c00129{transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);}
.m138_c00129{transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);}
.m183_c00129{transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);}
.m54_c00129{transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);}
.m36_c00129{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m16d_c00129{transform:matrix(0.127075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127075,0.000000,0.000000,0.250000,0,0);}
.m17a_c00129{transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);}
.m159_c00129{transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);}
.m6b_c00129{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m115_c00129{transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);}
.m49_c00129{transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);}
.m92_c00129{transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);}
.m44_c00129{transform:matrix(0.131775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131775,0.000000,0.000000,0.250000,0,0);}
.m173_c00129{transform:matrix(0.131925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131925,0.000000,0.000000,0.250000,0,0);}
.m53_c00129{transform:matrix(0.132050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132050,0.000000,0.000000,0.250000,0,0);}
.m130_c00129{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.me7_c00129{transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);}
.m128_c00129{transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);}
.m134_c00129{transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);}
.m10c_c00129{transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);}
.m33_c00129{transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);}
.m58_c00129{transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);}
.m137_c00129{transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);}
.m10e_c00129{transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);}
.m5_c00129{transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);}
.m117_c00129{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00129{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m4d_c00129{transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);}
.m96_c00129{transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);}
.m104_c00129{transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);}
.m13e_c00129{transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);}
.m1d_c00129{transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);}
.me3_c00129{transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);}
.m74_c00129{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.m9c_c00129{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.mc1_c00129{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);}
.mc_c00129{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00129{transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);}
.mbb_c00129{transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);}
.m107_c00129{transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);}
.mf0_c00129{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m120_c00129{transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);}
.m8e_c00129{transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);}
.m43_c00129{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m168_c00129{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.mc0_c00129{transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);}
.mae_c00129{transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);}
.m11_c00129{transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);}
.m12d_c00129{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);}
.m6e_c00129{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);}
.m124_c00129{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m136_c00129{transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);}
.m114_c00129{transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);}
.m122_c00129{transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);}
.m10d_c00129{transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);}
.m157_c00129{transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);}
.m84_c00129{transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);}
.mad_c00129{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);}
.me5_c00129{transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);}
.m155_c00129{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m178_c00129{transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);}
.m118_c00129{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.m14f_c00129{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.mc2_c00129{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.m99_c00129{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);}
.m68_c00129{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.ma5_c00129{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.m12c_c00129{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.mdf_c00129{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m20_c00129{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);}
.m4e_c00129{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.mbf_c00129{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);}
.m156_c00129{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.mba_c00129{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);}
.mb7_c00129{transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);}
.mb4_c00129{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);}
.m12f_c00129{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.mb2_c00129{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m143_c00129{transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);}
.m45_c00129{transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);}
.m13d_c00129{transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);}
.mac_c00129{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.mdb_c00129{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);}
.m89_c00129{transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);}
.m17c_c00129{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);}
.mdc_c00129{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.m142_c00129{transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);}
.m7d_c00129{transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);}
.m132_c00129{transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);}
.m3b_c00129{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m148_c00129{transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);}
.m11d_c00129{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.m15a_c00129{transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);}
.m70_c00129{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.m175_c00129{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);}
.m16f_c00129{transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);}
.m110_c00129{transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);}
.med_c00129{transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);}
.m11a_c00129{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m10_c00129{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.mca_c00129{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m16e_c00129{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);}
.m8b_c00129{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m108_c00129{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.md0_c00129{transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);}
.m14a_c00129{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);}
.m145_c00129{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);}
.m17d_c00129{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);}
.m39_c00129{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.m14e_c00129{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.mb3_c00129{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00129{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.m8f_c00129{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);}
.m147_c00129{transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);}
.m109_c00129{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m7a_c00129{transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);}
.mf1_c00129{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m131_c00129{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m153_c00129{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m14d_c00129{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m6a_c00129{transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);}
.m7e_c00129{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);}
.mfb_c00129{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m125_c00129{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);}
.m10b_c00129{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.ma7_c00129{transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);}
.m7f_c00129{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.m11b_c00129{transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);}
.m167_c00129{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.m144_c00129{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);}
.mce_c00129{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);}
.m12b_c00129{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m42_c00129{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);}
.m80_c00129{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.m121_c00129{transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);}
.me0_c00129{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);}
.m17e_c00129{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m8c_c00129{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.mc9_c00129{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);}
.m5a_c00129{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.mcb_c00129{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);}
.m187_c00129{transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);}
.m162_c00129{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m69_c00129{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m1b_c00129{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00129{transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);}
.m165_c00129{transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);}
.m15c_c00129{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m127_c00129{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m126_c00129{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.m14_c00129{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);}
.m101_c00129{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);}
.mf2_c00129{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m119_c00129{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);}
.m103_c00129{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m129_c00129{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m10a_c00129{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m169_c00129{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.m13b_c00129{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.m150_c00129{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);}
.ma6_c00129{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.m15d_c00129{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);}
.mb5_c00129{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);}
.m86_c00129{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.m81_c00129{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mab_c00129{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m102_c00129{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m139_c00129{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);}
.m149_c00129{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);}
.m105_c00129{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m10f_c00129{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);}
.mfa_c00129{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);}
.m17f_c00129{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);}
.m141_c00129{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.mc6_c00129{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);}
.mbc_c00129{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);}
.md2_c00129{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.m171_c00129{transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);}
.m161_c00129{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.m15f_c00129{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);}
.m176_c00129{transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);}
.m172_c00129{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.m179_c00129{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);}
.m4c_c00129{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.mbd_c00129{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m160_c00129{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.m133_c00129{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.mdd_c00129{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m71_c00129{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m97_c00129{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);}
.m13a_c00129{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);}
.m152_c00129{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);}
.m3d_c00129{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.md8_c00129{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m91_c00129{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.mec_c00129{transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);}
.m180_c00129{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.meb_c00129{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);}
.mb8_c00129{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.m5b_c00129{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);}
.m17b_c00129{transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);}
.m12a_c00129{transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);}
.m15b_c00129{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);}
.mcc_c00129{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.maf_c00129{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);}
.m14c_c00129{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);}
.mb0_c00129{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);}
.m146_c00129{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m164_c00129{transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);}
.m16b_c00129{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.m9b_c00129{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);}
.mf7_c00129{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);}
.m8d_c00129{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);}
.m6_c00129{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);}
.m1f_c00129{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);}
.m13f_c00129{transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);}
.m50_c00129{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);}
.me1_c00129{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);}
.m88_c00129{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);}
.m106_c00129{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.m151_c00129{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);}
.md4_c00129{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);}
.m166_c00129{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);}
.me8_c00129{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);}
.ma4_c00129{transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);}
.mf6_c00129{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);}
.mda_c00129{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);}
.m47_c00129{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);}
.me9_c00129{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);}
.m2a_c00129{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m13_c00129{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00129{transform:matrix(0.237600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237600,0.000000,0.000000,0.250000,0,0);}
.mb6_c00129{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);}
.m9d_c00129{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);}
.m64_c00129{transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);}
.m8a_c00129{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);}
.me4_c00129{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);}
.mc8_c00129{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m163_c00129{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);}
.m59_c00129{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);}
.m95_c00129{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);}
.m14b_c00129{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);}
.m16a_c00129{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m13c_c00129{transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);}
.m40_c00129{transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);}
.md1_c00129{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.md9_c00129{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m30_c00129{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);}
.m123_c00129{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00129{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);}
.m90_c00129{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);}
.m2_c00129{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);}
.m1e_c00129{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);}
.m4a_c00129{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m72_c00129{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mff_c00129{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00129{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);}
.ma1_c00129{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00129{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);}
.m34_c00129{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me2_c00129{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);}
.m19_c00129{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00129{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);}
.m65_c00129{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);}
.m61_c00129{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);}
.m11e_c00129{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00129{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mea_c00129{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);}
.mfc_c00129{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m188_c00129{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00129{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);}
.m48_c00129{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md5_c00129{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m21_c00129{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m41_c00129{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00129{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c00129{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mef_c00129{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m46_c00129{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);}
.m63_c00129{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c00129{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m51_c00129{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00129{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m116_c00129{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);}
.m16_c00129{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00129{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m85_c00129{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb_c00129{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00129{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.me_c00129{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);}
.m15e_c00129{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00129{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00129{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);}
.m24_c00129{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00129{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00129{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00129{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m52_c00129{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);}
.m5d_c00129{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);}
.m11f_c00129{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);}
.m112_c00129{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m0_c00129{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.maa_c00129{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m25_c00129{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m87_c00129{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);}
.mde_c00129{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00129{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00129{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m111_c00129{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00129{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m154_c00129{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m38_c00129{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m67_c00129{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m22_c00129{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);}
.m15_c00129{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.md7_c00129{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00129{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.md_c00129{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);}
.m93_c00129{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00129{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00129{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m57_c00129{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00129{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m60_c00129{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m35_c00129{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);}
.m177_c00129{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m66_c00129{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m79_c00129{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.mf_c00129{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m28_c00129{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00129{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00129{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m12_c00129{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m31_c00129{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m62_c00129{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00129{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00129{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m56_c00129{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m29_c00129{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m182_c00129{transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00129{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);}
.m181_c00129{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00129{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m27_c00129{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00129{transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);}
.mee_c00129{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m23_c00129{transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00129{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.m1_c00129{transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);}
.m94_c00129{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00129{transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00129{transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);}
.m184_c00129{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00129{transform:matrix(1.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.655000,0.000000,0.000000,0.250000,0,0);}
.md6_c00129{transform:matrix(1.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.715000,0.000000,0.000000,0.250000,0,0);}
.m83_c00129{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00129{transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00129{transform:matrix(7.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.762500,0.000000,0.000000,0.250000,0,0);}
.m113_c00129{transform:matrix(8.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.352500,0.000000,0.000000,0.250000,0,0);}
.m26_c00129{transform:matrix(15.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(15.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(15.352500,0.000000,0.000000,0.250000,0,0);}
.m186_c00129{transform:matrix(18.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(18.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(18.125000,0.000000,0.000000,0.250000,0,0);}
.v1_c00129{vertical-align:-6.900000px;}
.v0_c00129{vertical-align:0.000000px;}
.ls2_c00129{letter-spacing:0.000000px;}
.ls1_c00129{letter-spacing:38.598000px;}
.ls0_c00129{letter-spacing:76.158000px;}
.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;}
}
.ws1_c00129{word-spacing:0.000000px;}
.ws0_c00129{word-spacing:28.118700px;}
.fc0_c00129{color:transparent;}
.fsf_c00129{font-size:3.456000px;}
.fs10_c00129{font-size:6.000000px;}
.fs0_c00129{font-size:6.900000px;}
.fs18_c00129{font-size:10.380000px;}
.fsc_c00129{font-size:13.800000px;}
.fs9_c00129{font-size:17.280000px;}
.fs1_c00129{font-size:20.760000px;}
.fs14_c00129{font-size:24.180000px;}
.fsa_c00129{font-size:27.660000px;}
.fsd_c00129{font-size:31.080000px;}
.fs6_c00129{font-size:34.560000px;}
.fsb_c00129{font-size:38.040000px;}
.fs16_c00129{font-size:41.460000px;}
.fse_c00129{font-size:44.940000px;}
.fs19_c00129{font-size:48.360000px;}
.fs24_c00129{font-size:51.840000px;}
.fs15_c00129{font-size:55.320000px;}
.fs17_c00129{font-size:58.740000px;}
.fs3_c00129{font-size:62.220000px;}
.fs4_c00129{font-size:65.640000px;}
.fs2_c00129{font-size:69.120000px;}
.fs7_c00129{font-size:72.600000px;}
.fs5_c00129{font-size:76.020000px;}
.fs12_c00129{font-size:79.500000px;}
.fs8_c00129{font-size:82.920000px;}
.fs23_c00129{font-size:86.400000px;}
.fs22_c00129{font-size:89.880000px;}
.fs11_c00129{font-size:93.300000px;}
.fs1c_c00129{font-size:96.780000px;}
.fs1d_c00129{font-size:100.200000px;}
.fs1a_c00129{font-size:103.680000px;}
.fs13_c00129{font-size:107.160000px;}
.fs1b_c00129{font-size:110.580000px;}
.fs27_c00129{font-size:114.060000px;}
.fs26_c00129{font-size:117.480000px;}
.fs1f_c00129{font-size:120.960000px;}
.fs29_c00129{font-size:124.440000px;}
.fs28_c00129{font-size:127.860000px;}
.fs25_c00129{font-size:131.340000px;}
.fs2a_c00129{font-size:134.760000px;}
.fs21_c00129{font-size:141.720000px;}
.fs20_c00129{font-size:145.140000px;}
.fs1e_c00129{font-size:148.620000px;}
.y0_c00129{bottom:0.000000px;}
.y18d_c00129{bottom:192.675000px;}
.y18c_c00129{bottom:210.810000px;}
.y185_c00129{bottom:212.550000px;}
.y18b_c00129{bottom:214.275000px;}
.y184_c00129{bottom:215.130000px;}
.y183_c00129{bottom:216.000000px;}
.y18a_c00129{bottom:216.870000px;}
.y186_c00129{bottom:220.320000px;}
.y187_c00129{bottom:222.915000px;}
.y188_c00129{bottom:223.770000px;}
.y189_c00129{bottom:228.960000px;}
.y182_c00129{bottom:239.325000px;}
.y17e_c00129{bottom:243.645000px;}
.y181_c00129{bottom:244.515000px;}
.y180_c00129{bottom:246.240000px;}
.y17f_c00129{bottom:247.965000px;}
.y17c_c00129{bottom:262.650000px;}
.y96_c00129{bottom:264.390000px;}
.y17b_c00129{bottom:266.970000px;}
.y177_c00129{bottom:267.840000px;}
.y179_c00129{bottom:268.710000px;}
.y178_c00129{bottom:269.565000px;}
.y95_c00129{bottom:270.435000px;}
.y17a_c00129{bottom:272.160000px;}
.y17d_c00129{bottom:277.350000px;}
.y16f_c00129{bottom:283.395000px;}
.y175_c00129{bottom:284.250000px;}
.y16e_c00129{bottom:285.120000px;}
.y172_c00129{bottom:285.990000px;}
.y171_c00129{bottom:288.570000px;}
.y174_c00129{bottom:289.440000px;}
.y173_c00129{bottom:292.035000px;}
.y176_c00129{bottom:293.760000px;}
.y170_c00129{bottom:298.950000px;}
.y16d_c00129{bottom:311.910000px;}
.y16b_c00129{bottom:315.360000px;}
.y16a_c00129{bottom:316.230000px;}
.y16c_c00129{bottom:317.085000px;}
.y169_c00129{bottom:318.810000px;}
.y167_c00129{bottom:319.680000px;}
.y168_c00129{bottom:321.405000px;}
.y166_c00129{bottom:341.280000px;}
.y163_c00129{bottom:343.875000px;}
.y165_c00129{bottom:344.730000px;}
.y162_c00129{bottom:345.600000px;}
.y161_c00129{bottom:346.470000px;}
.y164_c00129{bottom:348.195000px;}
.y15f_c00129{bottom:362.880000px;}
.y15d_c00129{bottom:365.475000px;}
.y15e_c00129{bottom:366.330000px;}
.y15a_c00129{bottom:368.070000px;}
.y15b_c00129{bottom:369.795000px;}
.y160_c00129{bottom:370.650000px;}
.y15c_c00129{bottom:374.115000px;}
.y159_c00129{bottom:376.710000px;}
.y157_c00129{bottom:384.480000px;}
.y156_c00129{bottom:385.350000px;}
.y154_c00129{bottom:386.205000px;}
.y152_c00129{bottom:387.075000px;}
.y153_c00129{bottom:387.930000px;}
.y158_c00129{bottom:388.800000px;}
.y150_c00129{bottom:395.715000px;}
.y155_c00129{bottom:396.570000px;}
.y151_c00129{bottom:401.760000px;}
.y14d_c00129{bottom:412.125000px;}
.y14c_c00129{bottom:412.995000px;}
.y14f_c00129{bottom:413.850000px;}
.y14b_c00129{bottom:419.040000px;}
.y149_c00129{bottom:419.910000px;}
.y14e_c00129{bottom:420.765000px;}
.y14a_c00129{bottom:423.360000px;}
.y190_c00129{bottom:426.810000px;}
.y148_c00129{bottom:435.450000px;}
.y146_c00129{bottom:438.045000px;}
.y147_c00129{bottom:438.915000px;}
.y144_c00129{bottom:439.770000px;}
.y142_c00129{bottom:440.640000px;}
.y141_c00129{bottom:442.365000px;}
.y143_c00129{bottom:443.235000px;}
.y145_c00129{bottom:445.830000px;}
.y13f_c00129{bottom:448.410000px;}
.y140_c00129{bottom:450.150000px;}
.y13b_c00129{bottom:462.240000px;}
.y13a_c00129{bottom:463.965000px;}
.y139_c00129{bottom:465.690000px;}
.y13c_c00129{bottom:469.155000px;}
.y13d_c00129{bottom:470.010000px;}
.y13e_c00129{bottom:471.750000px;}
.y138_c00129{bottom:475.200000px;}
.y136_c00129{bottom:482.970000px;}
.y137_c00129{bottom:488.160000px;}
.y131_c00129{bottom:489.030000px;}
.y135_c00129{bottom:489.885000px;}
.y133_c00129{bottom:492.480000px;}
.y12f_c00129{bottom:493.350000px;}
.y130_c00129{bottom:494.205000px;}
.y132_c00129{bottom:495.075000px;}
.y134_c00129{bottom:495.930000px;}
.y12e_c00129{bottom:507.165000px;}
.y12b_c00129{bottom:513.210000px;}
.y12a_c00129{bottom:514.080000px;}
.y128_c00129{bottom:514.950000px;}
.y129_c00129{bottom:517.530000px;}
.y12d_c00129{bottom:518.400000px;}
.y127_c00129{bottom:519.270000px;}
.y12c_c00129{bottom:524.445000px;}
.y126_c00129{bottom:528.765000px;}
.y125_c00129{bottom:537.405000px;}
.y124_c00129{bottom:538.275000px;}
.y122_c00129{bottom:542.595000px;}
.y123_c00129{bottom:543.450000px;}
.y121_c00129{bottom:551.235000px;}
.y11d_c00129{bottom:565.050000px;}
.y11e_c00129{bottom:565.920000px;}
.y11c_c00129{bottom:566.790000px;}
.y11f_c00129{bottom:567.645000px;}
.y11b_c00129{bottom:569.370000px;}
.y120_c00129{bottom:570.240000px;}
.y11a_c00129{bottom:571.110000px;}
.y119_c00129{bottom:576.285000px;}
.y114_c00129{bottom:589.245000px;}
.y115_c00129{bottom:590.115000px;}
.y112_c00129{bottom:590.970000px;}
.y111_c00129{bottom:592.710000px;}
.y116_c00129{bottom:593.565000px;}
.y10f_c00129{bottom:594.435000px;}
.y117_c00129{bottom:597.030000px;}
.y113_c00129{bottom:598.755000px;}
.y110_c00129{bottom:601.350000px;}
.y118_c00129{bottom:603.075000px;}
.y10b_c00129{bottom:611.715000px;}
.y109_c00129{bottom:612.570000px;}
.y10d_c00129{bottom:614.310000px;}
.y108_c00129{bottom:616.035000px;}
.y10c_c00129{bottom:617.760000px;}
.y10e_c00129{bottom:620.355000px;}
.y10a_c00129{bottom:621.210000px;}
.y102_c00129{bottom:638.490000px;}
.y107_c00129{bottom:641.955000px;}
.y101_c00129{bottom:642.810000px;}
.y106_c00129{bottom:643.680000px;}
.yff_c00129{bottom:644.550000px;}
.y104_c00129{bottom:645.405000px;}
.y103_c00129{bottom:646.275000px;}
.y105_c00129{bottom:648.000000px;}
.y100_c00129{bottom:649.725000px;}
.yfe_c00129{bottom:659.235000px;}
.yfd_c00129{bottom:662.685000px;}
.yfa_c00129{bottom:666.150000px;}
.yf7_c00129{bottom:667.875000px;}
.yfc_c00129{bottom:668.730000px;}
.yfb_c00129{bottom:671.325000px;}
.yf9_c00129{bottom:675.645000px;}
.yf8_c00129{bottom:676.515000px;}
.yf6_c00129{bottom:678.240000px;}
.yf4_c00129{bottom:687.750000px;}
.yf2_c00129{bottom:689.475000px;}
.yf0_c00129{bottom:692.070000px;}
.yef_c00129{bottom:692.925000px;}
.yf1_c00129{bottom:694.650000px;}
.yf3_c00129{bottom:695.520000px;}
.yee_c00129{bottom:699.840000px;}
.yf5_c00129{bottom:701.565000px;}
.yed_c00129{bottom:714.525000px;}
.yea_c00129{bottom:715.395000px;}
.ye7_c00129{bottom:717.120000px;}
.ye9_c00129{bottom:717.990000px;}
.yec_c00129{bottom:721.440000px;}
.yeb_c00129{bottom:722.310000px;}
.ye6_c00129{bottom:723.165000px;}
.ye8_c00129{bottom:724.890000px;}
.ye5_c00129{bottom:726.630000px;}
.ye2_c00129{bottom:727.485000px;}
.ye1_c00129{bottom:728.355000px;}
.ydf_c00129{bottom:729.210000px;}
.ye3_c00129{bottom:730.080000px;}
.ye4_c00129{bottom:730.950000px;}
.ye0_c00129{bottom:731.805000px;}
.ydc_c00129{bottom:732.675000px;}
.yde_c00129{bottom:733.530000px;}
.ydd_c00129{bottom:734.400000px;}
.yd9_c00129{bottom:736.125000px;}
.ydb_c00129{bottom:739.590000px;}
.yd8_c00129{bottom:740.445000px;}
.yda_c00129{bottom:757.725000px;}
.yd7_c00129{bottom:762.045000px;}
.yd4_c00129{bottom:766.365000px;}
.yd6_c00129{bottom:768.960000px;}
.yd5_c00129{bottom:769.830000px;}
.yd2_c00129{bottom:771.555000px;}
.yd3_c00129{bottom:774.150000px;}
.yd0_c00129{bottom:787.965000px;}
.yce_c00129{bottom:788.835000px;}
.ycd_c00129{bottom:789.690000px;}
.ycf_c00129{bottom:791.430000px;}
.yc9_c00129{bottom:792.285000px;}
.yca_c00129{bottom:794.010000px;}
.yd1_c00129{bottom:794.880000px;}
.ycc_c00129{bottom:796.605000px;}
.ycb_c00129{bottom:797.475000px;}
.yc5_c00129{bottom:810.435000px;}
.yc8_c00129{bottom:811.290000px;}
.yc6_c00129{bottom:812.160000px;}
.yc7_c00129{bottom:813.885000px;}
.yc3_c00129{bottom:814.755000px;}
.ybf_c00129{bottom:815.610000px;}
.ybd_c00129{bottom:816.480000px;}
.yc4_c00129{bottom:818.205000px;}
.yc2_c00129{bottom:819.075000px;}
.yc0_c00129{bottom:819.930000px;}
.yc1_c00129{bottom:823.395000px;}
.ybe_c00129{bottom:824.250000px;}
.ybb_c00129{bottom:834.630000px;}
.yba_c00129{bottom:841.530000px;}
.yb9_c00129{bottom:845.850000px;}
.yb8_c00129{bottom:849.315000px;}
.ybc_c00129{bottom:851.040000px;}
.yb7_c00129{bottom:851.910000px;}
.yb6_c00129{bottom:854.490000px;}
.yb4_c00129{bottom:859.680000px;}
.yb5_c00129{bottom:860.550000px;}
.yb3_c00129{bottom:863.130000px;}
.yb0_c00129{bottom:869.190000px;}
.yb2_c00129{bottom:871.770000px;}
.yb1_c00129{bottom:875.235000px;}
.yad_c00129{bottom:884.730000px;}
.yab_c00129{bottom:889.050000px;}
.yac_c00129{bottom:890.790000px;}
.yae_c00129{bottom:892.515000px;}
.yaf_c00129{bottom:894.240000px;}
.yaa_c00129{bottom:900.285000px;}
.ya9_c00129{bottom:908.070000px;}
.ya7_c00129{bottom:909.795000px;}
.ya4_c00129{bottom:910.650000px;}
.ya2_c00129{bottom:912.390000px;}
.ya5_c00129{bottom:913.245000px;}
.ya3_c00129{bottom:914.115000px;}
.ya1_c00129{bottom:917.565000px;}
.ya6_c00129{bottom:921.885000px;}
.ya0_c00129{bottom:924.480000px;}
.ya8_c00129{bottom:927.075000px;}
.y18f_c00129{bottom:930.525000px;}
.y9d_c00129{bottom:935.715000px;}
.y9c_c00129{bottom:937.440000px;}
.y9e_c00129{bottom:940.035000px;}
.y9a_c00129{bottom:943.485000px;}
.y9b_c00129{bottom:944.355000px;}
.y18e_c00129{bottom:946.080000px;}
.y9f_c00129{bottom:959.040000px;}
.y99_c00129{bottom:971.130000px;}
.y98_c00129{bottom:972.000000px;}
.y97_c00129{bottom:978.045000px;}
.y93_c00129{bottom:1036.800000px;}
.y90_c00129{bottom:1041.990000px;}
.y8b_c00129{bottom:1043.715000px;}
.y94_c00129{bottom:1046.310000px;}
.y8e_c00129{bottom:1047.165000px;}
.y8f_c00129{bottom:1048.890000px;}
.y8c_c00129{bottom:1049.760000px;}
.y91_c00129{bottom:1051.485000px;}
.y92_c00129{bottom:1052.355000px;}
.y8d_c00129{bottom:1057.530000px;}
.y7c_c00129{bottom:1063.590000px;}
.y88_c00129{bottom:1066.170000px;}
.y89_c00129{bottom:1067.040000px;}
.y7f_c00129{bottom:1067.910000px;}
.y81_c00129{bottom:1069.635000px;}
.y86_c00129{bottom:1070.490000px;}
.y7b_c00129{bottom:1071.360000px;}
.y82_c00129{bottom:1072.230000px;}
.y80_c00129{bottom:1073.085000px;}
.y7e_c00129{bottom:1073.955000px;}
.y7d_c00129{bottom:1074.810000px;}
.y84_c00129{bottom:1077.405000px;}
.y85_c00129{bottom:1078.275000px;}
.y87_c00129{bottom:1079.130000px;}
.y83_c00129{bottom:1080.870000px;}
.y8a_c00129{bottom:1085.190000px;}
.y7a_c00129{bottom:1086.045000px;}
.y2_c00129{bottom:1089.510000px;}
.y1_c00129{bottom:1092.090000px;}
.y77_c00129{bottom:1092.960000px;}
.y78_c00129{bottom:1093.830000px;}
.y76_c00129{bottom:1094.685000px;}
.y79_c00129{bottom:1095.555000px;}
.y73_c00129{bottom:1096.410000px;}
.y75_c00129{bottom:1097.280000px;}
.y72_c00129{bottom:1101.600000px;}
.y70_c00129{bottom:1105.920000px;}
.y6f_c00129{bottom:1111.965000px;}
.y74_c00129{bottom:1112.835000px;}
.y6c_c00129{bottom:1114.560000px;}
.y6a_c00129{bottom:1115.430000px;}
.y6d_c00129{bottom:1116.285000px;}
.y6e_c00129{bottom:1117.155000px;}
.y71_c00129{bottom:1118.010000px;}
.y6b_c00129{bottom:1121.475000px;}
.y68_c00129{bottom:1130.970000px;}
.y67_c00129{bottom:1132.710000px;}
.y66_c00129{bottom:1134.435000px;}
.y64_c00129{bottom:1135.290000px;}
.y65_c00129{bottom:1138.755000px;}
.y69_c00129{bottom:1153.440000px;}
.y62_c00129{bottom:1162.950000px;}
.y61_c00129{bottom:1163.805000px;}
.y63_c00129{bottom:1166.400000px;}
.y60_c00129{bottom:1171.590000px;}
.y5d_c00129{bottom:1175.040000px;}
.y5e_c00129{bottom:1175.910000px;}
.y5f_c00129{bottom:1181.085000px;}
.y5b_c00129{bottom:1185.405000px;}
.y5c_c00129{bottom:1186.275000px;}
.y5a_c00129{bottom:1187.130000px;}
.y58_c00129{bottom:1192.320000px;}
.y59_c00129{bottom:1193.190000px;}
.y54_c00129{bottom:1195.770000px;}
.y55_c00129{bottom:1203.555000px;}
.y53_c00129{bottom:1204.410000px;}
.y51_c00129{bottom:1205.280000px;}
.y4d_c00129{bottom:1206.150000px;}
.y4e_c00129{bottom:1207.005000px;}
.y50_c00129{bottom:1207.875000px;}
.y56_c00129{bottom:1208.730000px;}
.y52_c00129{bottom:1209.600000px;}
.y57_c00129{bottom:1210.470000px;}
.y4f_c00129{bottom:1211.325000px;}
.y47_c00129{bottom:1213.920000px;}
.y48_c00129{bottom:1214.790000px;}
.y4b_c00129{bottom:1215.645000px;}
.y49_c00129{bottom:1217.370000px;}
.y4c_c00129{bottom:1218.240000px;}
.y4a_c00129{bottom:1219.965000px;}
.y46_c00129{bottom:1238.115000px;}
.y41_c00129{bottom:1238.970000px;}
.y40_c00129{bottom:1239.840000px;}
.y45_c00129{bottom:1242.435000px;}
.y42_c00129{bottom:1243.290000px;}
.y44_c00129{bottom:1245.885000px;}
.y43_c00129{bottom:1246.755000px;}
.y3e_c00129{bottom:1247.610000px;}
.y3f_c00129{bottom:1248.480000px;}
.y3c_c00129{bottom:1261.440000px;}
.y3b_c00129{bottom:1262.310000px;}
.y3d_c00129{bottom:1264.035000px;}
.y3a_c00129{bottom:1264.890000px;}
.y39_c00129{bottom:1272.675000px;}
.y37_c00129{bottom:1287.360000px;}
.y34_c00129{bottom:1288.230000px;}
.y33_c00129{bottom:1289.085000px;}
.y30_c00129{bottom:1289.955000px;}
.y32_c00129{bottom:1292.550000px;}
.y2d_c00129{bottom:1293.405000px;}
.y2e_c00129{bottom:1294.275000px;}
.y35_c00129{bottom:1295.130000px;}
.y38_c00129{bottom:1296.000000px;}
.y2c_c00129{bottom:1297.725000px;}
.y36_c00129{bottom:1298.595000px;}
.y2b_c00129{bottom:1300.320000px;}
.y31_c00129{bottom:1301.190000px;}
.y2f_c00129{bottom:1302.045000px;}
.y2a_c00129{bottom:1302.915000px;}
.y25_c00129{bottom:1303.770000px;}
.y28_c00129{bottom:1304.640000px;}
.y26_c00129{bottom:1306.365000px;}
.y29_c00129{bottom:1308.090000px;}
.y27_c00129{bottom:1308.960000px;}
.y23_c00129{bottom:1311.555000px;}
.y24_c00129{bottom:1313.280000px;}
.y1e_c00129{bottom:1315.005000px;}
.y1f_c00129{bottom:1315.875000px;}
.y20_c00129{bottom:1318.470000px;}
.y1c_c00129{bottom:1319.325000px;}
.y1d_c00129{bottom:1320.195000px;}
.y21_c00129{bottom:1321.920000px;}
.y22_c00129{bottom:1322.790000px;}
.y1b_c00129{bottom:1324.515000px;}
.y18_c00129{bottom:1339.200000px;}
.y16_c00129{bottom:1340.070000px;}
.y17_c00129{bottom:1341.795000px;}
.y13_c00129{bottom:1342.650000px;}
.y1a_c00129{bottom:1343.520000px;}
.y19_c00129{bottom:1344.390000px;}
.y15_c00129{bottom:1345.245000px;}
.y14_c00129{bottom:1346.970000px;}
.yf_c00129{bottom:1349.565000px;}
.ye_c00129{bottom:1350.435000px;}
.y10_c00129{bottom:1352.160000px;}
.y12_c00129{bottom:1353.030000px;}
.y11_c00129{bottom:1357.350000px;}
.yd_c00129{bottom:1366.845000px;}
.yc_c00129{bottom:1369.440000px;}
.yb_c00129{bottom:1374.630000px;}
.ya_c00129{bottom:1375.485000px;}
.y8_c00129{bottom:1376.355000px;}
.y7_c00129{bottom:1377.210000px;}
.y5_c00129{bottom:1378.080000px;}
.y3_c00129{bottom:1378.950000px;}
.y4_c00129{bottom:1379.805000px;}
.y6_c00129{bottom:1386.720000px;}
.y9_c00129{bottom:1393.635000px;}
.h11_c00129{height:3.110063px;}
.h12_c00129{height:5.399414px;}
.h2_c00129{height:6.209326px;}
.h1a_c00129{height:9.340986px;}
.he_c00129{height:12.418652px;}
.hb_c00129{height:15.550313px;}
.h3_c00129{height:18.681973px;}
.h16_c00129{height:21.759639px;}
.hc_c00129{height:24.891299px;}
.hf_c00129{height:27.968965px;}
.h8_c00129{height:31.100625px;}
.hd_c00129{height:34.232285px;}
.h18_c00129{height:37.309951px;}
.h10_c00129{height:40.441611px;}
.h1b_c00129{height:43.519277px;}
.h26_c00129{height:46.650937px;}
.h17_c00129{height:49.782598px;}
.h19_c00129{height:52.860264px;}
.h5_c00129{height:55.991924px;}
.h6_c00129{height:59.069590px;}
.h4_c00129{height:62.201250px;}
.h9_c00129{height:65.332910px;}
.h7_c00129{height:68.410576px;}
.h14_c00129{height:71.542236px;}
.ha_c00129{height:74.619902px;}
.h25_c00129{height:77.751563px;}
.h24_c00129{height:80.883223px;}
.h13_c00129{height:83.960889px;}
.h1e_c00129{height:87.092549px;}
.h1f_c00129{height:90.170215px;}
.h1c_c00129{height:93.301875px;}
.h15_c00129{height:96.433535px;}
.h1d_c00129{height:99.511201px;}
.h29_c00129{height:102.642861px;}
.h28_c00129{height:105.720527px;}
.h21_c00129{height:108.852188px;}
.h2b_c00129{height:111.983848px;}
.h2a_c00129{height:115.061514px;}
.h27_c00129{height:118.193174px;}
.h2c_c00129{height:121.270840px;}
.h23_c00129{height:127.534160px;}
.h22_c00129{height:130.611826px;}
.h20_c00129{height:133.743486px;}
.h1_c00129{height:1503.000000px;}
.h0_c00129{height:1503.360000px;}
.w0_c00129{width:1088.640000px;}
.w1_c00129{width:1089.000000px;}
.x0_c00129{left:0.000000px;}
.x113_c00129{left:62.205000px;}
.x114_c00129{left:68.250000px;}
.x115_c00129{left:74.310000px;}
.x1_c00129{left:123.555000px;}
.x2_c00129{left:145.155000px;}
.x111_c00129{left:148.605000px;}
.x110_c00129{left:152.925000px;}
.x98_c00129{left:155.520000px;}
.x99_c00129{left:171.930000px;}
.x112_c00129{left:174.525000px;}
.xf6_c00129{left:184.890000px;}
.xcf_c00129{left:186.630000px;}
.xea_c00129{left:190.950000px;}
.xec_c00129{left:193.530000px;}
.xee_c00129{left:197.850000px;}
.xe5_c00129{left:203.910000px;}
.xd5_c00129{left:208.230000px;}
.x7e_c00129{left:211.680000px;}
.xd6_c00129{left:213.405000px;}
.xef_c00129{left:216.000000px;}
.x7f_c00129{left:218.595000px;}
.x80_c00129{left:220.320000px;}
.xf0_c00129{left:222.045000px;}
.x29_c00129{left:223.770000px;}
.xa9_c00129{left:225.510000px;}
.x91_c00129{left:227.235000px;}
.x33_c00129{left:230.685000px;}
.x1c_c00129{left:233.280000px;}
.x10e_c00129{left:235.005000px;}
.x4f_c00129{left:236.730000px;}
.x74_c00129{left:239.325000px;}
.x1d_c00129{left:241.920000px;}
.x71_c00129{left:245.370000px;}
.xd3_c00129{left:247.965000px;}
.x75_c00129{left:249.690000px;}
.x81_c00129{left:252.285000px;}
.xb0_c00129{left:256.605000px;}
.xbc_c00129{left:260.070000px;}
.xac_c00129{left:263.520000px;}
.x92_c00129{left:265.245000px;}
.x34_c00129{left:266.970000px;}
.x76_c00129{left:270.435000px;}
.x1e_c00129{left:277.350000px;}
.xf7_c00129{left:279.075000px;}
.x77_c00129{left:283.395000px;}
.xe0_c00129{left:285.120000px;}
.xc4_c00129{left:289.440000px;}
.xad_c00129{left:291.165000px;}
.xeb_c00129{left:293.760000px;}
.xe6_c00129{left:297.210000px;}
.x2a_c00129{left:299.805000px;}
.x72_c00129{left:302.400000px;}
.xa4_c00129{left:307.590000px;}
.xc5_c00129{left:309.315000px;}
.x9c_c00129{left:311.040000px;}
.xa5_c00129{left:315.360000px;}
.x2b_c00129{left:321.405000px;}
.x73_c00129{left:324.000000px;}
.x104_c00129{left:325.725000px;}
.x35_c00129{left:327.450000px;}
.x9d_c00129{left:330.045000px;}
.xae_c00129{left:333.510000px;}
.x54_c00129{left:335.235000px;}
.x50_c00129{left:336.960000px;}
.x60_c00129{left:339.555000px;}
.x109_c00129{left:341.280000px;}
.x36_c00129{left:345.600000px;}
.xc6_c00129{left:355.110000px;}
.x55_c00129{left:356.835000px;}
.x1f_c00129{left:360.285000px;}
.xb8_c00129{left:362.010000px;}
.xfb_c00129{left:367.200000px;}
.x93_c00129{left:369.795000px;}
.xda_c00129{left:371.520000px;}
.xff_c00129{left:374.115000px;}
.x3e_c00129{left:375.840000px;}
.x86_c00129{left:377.565000px;}
.x65_c00129{left:379.290000px;}
.x78_c00129{left:382.755000px;}
.x7c_c00129{left:384.480000px;}
.xc0_c00129{left:387.075000px;}
.xc7_c00129{left:390.525000px;}
.x37_c00129{left:393.120000px;}
.x66_c00129{left:394.845000px;}
.xb1_c00129{left:396.570000px;}
.x108_c00129{left:398.310000px;}
.x56_c00129{left:402.630000px;}
.x82_c00129{left:404.355000px;}
.x3f_c00129{left:406.080000px;}
.x94_c00129{left:407.805000px;}
.xb9_c00129{left:411.270000px;}
.x57_c00129{left:413.850000px;}
.x67_c00129{left:421.635000px;}
.xa6_c00129{left:423.360000px;}
.xf8_c00129{left:427.680000px;}
.xba_c00129{left:430.275000px;}
.x83_c00129{left:432.870000px;}
.xe1_c00129{left:436.320000px;}
.xd0_c00129{left:438.045000px;}
.xfc_c00129{left:439.770000px;}
.xa0_c00129{left:443.235000px;}
.x87_c00129{left:447.555000px;}
.x105_c00129{left:449.280000px;}
.x88_c00129{left:451.005000px;}
.xe7_c00129{left:455.325000px;}
.x79_c00129{left:457.920000px;}
.x58_c00129{left:461.370000px;}
.x3_c00129{left:463.110000px;}
.x40_c00129{left:464.835000px;}
.x38_c00129{left:467.430000px;}
.x95_c00129{left:470.880000px;}
.x7d_c00129{left:475.200000px;}
.x39_c00129{left:476.925000px;}
.xd7_c00129{left:479.520000px;}
.xc2_c00129{left:481.245000px;}
.x20_c00129{left:483.840000px;}
.xed_c00129{left:486.435000px;}
.x4_c00129{left:488.160000px;}
.x10a_c00129{left:489.885000px;}
.x68_c00129{left:491.610000px;}
.xaa_c00129{left:494.205000px;}
.x89_c00129{left:495.930000px;}
.x51_c00129{left:498.525000px;}
.x96_c00129{left:500.250000px;}
.x21_c00129{left:503.715000px;}
.xdb_c00129{left:505.440000px;}
.x3a_c00129{left:507.165000px;}
.x10b_c00129{left:509.760000px;}
.x5_c00129{left:512.355000px;}
.x12_c00129{left:515.805000px;}
.xf9_c00129{left:517.530000px;}
.x101_c00129{left:519.270000px;}
.x106_c00129{left:522.720000px;}
.x8a_c00129{left:525.315000px;}
.xb2_c00129{left:527.040000px;}
.x6_c00129{left:531.360000px;}
.xdc_c00129{left:536.550000px;}
.x13_c00129{left:539.130000px;}
.x11_c00129{left:542.595000px;}
.x41_c00129{left:546.045000px;}
.x14_c00129{left:547.770000px;}
.x42_c00129{left:551.235000px;}
.xe_c00129{left:552.960000px;}
.x15_c00129{left:554.685000px;}
.xd1_c00129{left:557.280000px;}
.xd8_c00129{left:560.730000px;}
.x16_c00129{left:563.325000px;}
.x61_c00129{left:565.920000px;}
.x7_c00129{left:567.645000px;}
.x103_c00129{left:570.240000px;}
.x43_c00129{left:572.835000px;}
.xe2_c00129{left:576.285000px;}
.x8_c00129{left:578.880000px;}
.x17_c00129{left:581.475000px;}
.x69_c00129{left:583.200000px;}
.xb3_c00129{left:584.925000px;}
.x30_c00129{left:587.520000px;}
.x18_c00129{left:589.245000px;}
.x59_c00129{left:590.970000px;}
.xe3_c00129{left:594.435000px;}
.x22_c00129{left:596.160000px;}
.x6a_c00129{left:598.755000px;}
.x23_c00129{left:601.350000px;}
.x19_c00129{left:603.075000px;}
.xbb_c00129{left:604.800000px;}
.x9a_c00129{left:606.525000px;}
.xc8_c00129{left:609.120000px;}
.x1a_c00129{left:614.310000px;}
.x44_c00129{left:618.630000px;}
.x1b_c00129{left:623.805000px;}
.x107_c00129{left:625.530000px;}
.x9_c00129{left:628.125000px;}
.x5a_c00129{left:629.850000px;}
.xb4_c00129{left:631.590000px;}
.xc9_c00129{left:634.170000px;}
.x10c_c00129{left:637.635000px;}
.x3b_c00129{left:640.230000px;}
.x7a_c00129{left:641.955000px;}
.x45_c00129{left:643.680000px;}
.xbd_c00129{left:645.405000px;}
.x5b_c00129{left:647.130000px;}
.xa_c00129{left:650.595000px;}
.x31_c00129{left:652.320000px;}
.x9e_c00129{left:654.915000px;}
.x6b_c00129{left:656.640000px;}
.xfa_c00129{left:660.090000px;}
.xd2_c00129{left:661.830000px;}
.xc3_c00129{left:663.555000px;}
.xe4_c00129{left:665.280000px;}
.xca_c00129{left:667.005000px;}
.x6c_c00129{left:669.600000px;}
.x46_c00129{left:673.920000px;}
.x24_c00129{left:676.515000px;}
.xd4_c00129{left:678.240000px;}
.x52_c00129{left:679.965000px;}
.x25_c00129{left:688.605000px;}
.x47_c00129{left:690.330000px;}
.x6d_c00129{left:694.650000px;}
.xcb_c00129{left:698.115000px;}
.xcc_c00129{left:699.840000px;}
.xf_c00129{left:704.160000px;}
.xb_c00129{left:707.610000px;}
.xfe_c00129{left:709.350000px;}
.xf1_c00129{left:715.395000px;}
.x10f_c00129{left:717.120000px;}
.xb5_c00129{left:724.035000px;}
.xc_c00129{left:725.760000px;}
.x6e_c00129{left:727.485000px;}
.x26_c00129{left:734.400000px;}
.x97_c00129{left:738.720000px;}
.xf2_c00129{left:741.315000px;}
.x10_c00129{left:743.040000px;}
.x48_c00129{left:745.635000px;}
.xcd_c00129{left:747.360000px;}
.xd_c00129{left:749.085000px;}
.x5c_c00129{left:751.680000px;}
.x62_c00129{left:756.000000px;}
.xb6_c00129{left:757.725000px;}
.x100_c00129{left:760.320000px;}
.x63_c00129{left:762.045000px;}
.xe8_c00129{left:764.640000px;}
.x49_c00129{left:767.235000px;}
.x3c_c00129{left:768.960000px;}
.x8b_c00129{left:770.685000px;}
.x8c_c00129{left:772.410000px;}
.xdd_c00129{left:777.600000px;}
.x4a_c00129{left:779.325000px;}
.x84_c00129{left:781.920000px;}
.xde_c00129{left:783.645000px;}
.xf3_c00129{left:787.965000px;}
.x8d_c00129{left:789.690000px;}
.x6f_c00129{left:792.285000px;}
.x5d_c00129{left:797.475000px;}
.x27_c00129{left:800.070000px;}
.x102_c00129{left:804.390000px;}
.x10d_c00129{left:806.970000px;}
.x3d_c00129{left:808.710000px;}
.x4b_c00129{left:813.030000px;}
.x64_c00129{left:817.350000px;}
.x4c_c00129{left:819.075000px;}
.x8e_c00129{left:821.670000px;}
.xe9_c00129{left:824.250000px;}
.x5e_c00129{left:825.990000px;}
.x4d_c00129{left:829.440000px;}
.xa7_c00129{left:831.165000px;}
.xdf_c00129{left:834.630000px;}
.x70_c00129{left:836.355000px;}
.x85_c00129{left:838.080000px;}
.x8f_c00129{left:839.805000px;}
.xd9_c00129{left:841.530000px;}
.x4e_c00129{left:843.270000px;}
.x5f_c00129{left:844.995000px;}
.x2c_c00129{left:846.720000px;}
.x2d_c00129{left:850.170000px;}
.xce_c00129{left:851.910000px;}
.xbe_c00129{left:853.635000px;}
.x9b_c00129{left:859.680000px;}
.xbf_c00129{left:862.275000px;}
.x90_c00129{left:868.320000px;}
.xf4_c00129{left:870.915000px;}
.xfd_c00129{left:872.640000px;}
.xc1_c00129{left:875.235000px;}
.xa8_c00129{left:877.830000px;}
.xab_c00129{left:880.410000px;}
.x2e_c00129{left:883.875000px;}
.xaf_c00129{left:885.600000px;}
.xb7_c00129{left:888.195000px;}
.x53_c00129{left:889.920000px;}
.xa1_c00129{left:893.370000px;}
.xf5_c00129{left:895.110000px;}
.x7b_c00129{left:907.200000px;}
.xa2_c00129{left:908.925000px;}
.x2f_c00129{left:911.520000px;}
.x28_c00129{left:919.290000px;}
.xa3_c00129{left:921.030000px;}
.x32_c00129{left:926.205000px;}
.x9f_c00129{left:929.670000px;}
@media print{
.v1_c00129{vertical-align:-6.133333pt;}
.v0_c00129{vertical-align:0.000000pt;}
.ls2_c00129{letter-spacing:0.000000pt;}
.ls1_c00129{letter-spacing:34.309333pt;}
.ls0_c00129{letter-spacing:67.696000pt;}
.ws1_c00129{word-spacing:0.000000pt;}
.ws0_c00129{word-spacing:24.994400pt;}
.fsf_c00129{font-size:3.072000pt;}
.fs10_c00129{font-size:5.333333pt;}
.fs0_c00129{font-size:6.133333pt;}
.fs18_c00129{font-size:9.226667pt;}
.fsc_c00129{font-size:12.266667pt;}
.fs9_c00129{font-size:15.360000pt;}
.fs1_c00129{font-size:18.453333pt;}
.fs14_c00129{font-size:21.493333pt;}
.fsa_c00129{font-size:24.586667pt;}
.fsd_c00129{font-size:27.626667pt;}
.fs6_c00129{font-size:30.720000pt;}
.fsb_c00129{font-size:33.813333pt;}
.fs16_c00129{font-size:36.853333pt;}
.fse_c00129{font-size:39.946667pt;}
.fs19_c00129{font-size:42.986667pt;}
.fs24_c00129{font-size:46.080000pt;}
.fs15_c00129{font-size:49.173333pt;}
.fs17_c00129{font-size:52.213333pt;}
.fs3_c00129{font-size:55.306667pt;}
.fs4_c00129{font-size:58.346667pt;}
.fs2_c00129{font-size:61.440000pt;}
.fs7_c00129{font-size:64.533333pt;}
.fs5_c00129{font-size:67.573333pt;}
.fs12_c00129{font-size:70.666667pt;}
.fs8_c00129{font-size:73.706667pt;}
.fs23_c00129{font-size:76.800000pt;}
.fs22_c00129{font-size:79.893333pt;}
.fs11_c00129{font-size:82.933333pt;}
.fs1c_c00129{font-size:86.026667pt;}
.fs1d_c00129{font-size:89.066667pt;}
.fs1a_c00129{font-size:92.160000pt;}
.fs13_c00129{font-size:95.253333pt;}
.fs1b_c00129{font-size:98.293333pt;}
.fs27_c00129{font-size:101.386667pt;}
.fs26_c00129{font-size:104.426667pt;}
.fs1f_c00129{font-size:107.520000pt;}
.fs29_c00129{font-size:110.613333pt;}
.fs28_c00129{font-size:113.653333pt;}
.fs25_c00129{font-size:116.746667pt;}
.fs2a_c00129{font-size:119.786667pt;}
.fs21_c00129{font-size:125.973333pt;}
.fs20_c00129{font-size:129.013333pt;}
.fs1e_c00129{font-size:132.106667pt;}
.y0_c00129{bottom:0.000000pt;}
.y18d_c00129{bottom:171.266667pt;}
.y18c_c00129{bottom:187.386667pt;}
.y185_c00129{bottom:188.933333pt;}
.y18b_c00129{bottom:190.466667pt;}
.y184_c00129{bottom:191.226667pt;}
.y183_c00129{bottom:192.000000pt;}
.y18a_c00129{bottom:192.773333pt;}
.y186_c00129{bottom:195.840000pt;}
.y187_c00129{bottom:198.146667pt;}
.y188_c00129{bottom:198.906667pt;}
.y189_c00129{bottom:203.520000pt;}
.y182_c00129{bottom:212.733333pt;}
.y17e_c00129{bottom:216.573333pt;}
.y181_c00129{bottom:217.346667pt;}
.y180_c00129{bottom:218.880000pt;}
.y17f_c00129{bottom:220.413333pt;}
.y17c_c00129{bottom:233.466667pt;}
.y96_c00129{bottom:235.013333pt;}
.y17b_c00129{bottom:237.306667pt;}
.y177_c00129{bottom:238.080000pt;}
.y179_c00129{bottom:238.853333pt;}
.y178_c00129{bottom:239.613333pt;}
.y95_c00129{bottom:240.386667pt;}
.y17a_c00129{bottom:241.920000pt;}
.y17d_c00129{bottom:246.533333pt;}
.y16f_c00129{bottom:251.906667pt;}
.y175_c00129{bottom:252.666667pt;}
.y16e_c00129{bottom:253.440000pt;}
.y172_c00129{bottom:254.213333pt;}
.y171_c00129{bottom:256.506667pt;}
.y174_c00129{bottom:257.280000pt;}
.y173_c00129{bottom:259.586667pt;}
.y176_c00129{bottom:261.120000pt;}
.y170_c00129{bottom:265.733333pt;}
.y16d_c00129{bottom:277.253333pt;}
.y16b_c00129{bottom:280.320000pt;}
.y16a_c00129{bottom:281.093333pt;}
.y16c_c00129{bottom:281.853333pt;}
.y169_c00129{bottom:283.386667pt;}
.y167_c00129{bottom:284.160000pt;}
.y168_c00129{bottom:285.693333pt;}
.y166_c00129{bottom:303.360000pt;}
.y163_c00129{bottom:305.666667pt;}
.y165_c00129{bottom:306.426667pt;}
.y162_c00129{bottom:307.200000pt;}
.y161_c00129{bottom:307.973333pt;}
.y164_c00129{bottom:309.506667pt;}
.y15f_c00129{bottom:322.560000pt;}
.y15d_c00129{bottom:324.866667pt;}
.y15e_c00129{bottom:325.626667pt;}
.y15a_c00129{bottom:327.173333pt;}
.y15b_c00129{bottom:328.706667pt;}
.y160_c00129{bottom:329.466667pt;}
.y15c_c00129{bottom:332.546667pt;}
.y159_c00129{bottom:334.853333pt;}
.y157_c00129{bottom:341.760000pt;}
.y156_c00129{bottom:342.533333pt;}
.y154_c00129{bottom:343.293333pt;}
.y152_c00129{bottom:344.066667pt;}
.y153_c00129{bottom:344.826667pt;}
.y158_c00129{bottom:345.600000pt;}
.y150_c00129{bottom:351.746667pt;}
.y155_c00129{bottom:352.506667pt;}
.y151_c00129{bottom:357.120000pt;}
.y14d_c00129{bottom:366.333333pt;}
.y14c_c00129{bottom:367.106667pt;}
.y14f_c00129{bottom:367.866667pt;}
.y14b_c00129{bottom:372.480000pt;}
.y149_c00129{bottom:373.253333pt;}
.y14e_c00129{bottom:374.013333pt;}
.y14a_c00129{bottom:376.320000pt;}
.y190_c00129{bottom:379.386667pt;}
.y148_c00129{bottom:387.066667pt;}
.y146_c00129{bottom:389.373333pt;}
.y147_c00129{bottom:390.146667pt;}
.y144_c00129{bottom:390.906667pt;}
.y142_c00129{bottom:391.680000pt;}
.y141_c00129{bottom:393.213333pt;}
.y143_c00129{bottom:393.986667pt;}
.y145_c00129{bottom:396.293333pt;}
.y13f_c00129{bottom:398.586667pt;}
.y140_c00129{bottom:400.133333pt;}
.y13b_c00129{bottom:410.880000pt;}
.y13a_c00129{bottom:412.413333pt;}
.y139_c00129{bottom:413.946667pt;}
.y13c_c00129{bottom:417.026667pt;}
.y13d_c00129{bottom:417.786667pt;}
.y13e_c00129{bottom:419.333333pt;}
.y138_c00129{bottom:422.400000pt;}
.y136_c00129{bottom:429.306667pt;}
.y137_c00129{bottom:433.920000pt;}
.y131_c00129{bottom:434.693333pt;}
.y135_c00129{bottom:435.453333pt;}
.y133_c00129{bottom:437.760000pt;}
.y12f_c00129{bottom:438.533333pt;}
.y130_c00129{bottom:439.293333pt;}
.y132_c00129{bottom:440.066667pt;}
.y134_c00129{bottom:440.826667pt;}
.y12e_c00129{bottom:450.813333pt;}
.y12b_c00129{bottom:456.186667pt;}
.y12a_c00129{bottom:456.960000pt;}
.y128_c00129{bottom:457.733333pt;}
.y129_c00129{bottom:460.026667pt;}
.y12d_c00129{bottom:460.800000pt;}
.y127_c00129{bottom:461.573333pt;}
.y12c_c00129{bottom:466.173333pt;}
.y126_c00129{bottom:470.013333pt;}
.y125_c00129{bottom:477.693333pt;}
.y124_c00129{bottom:478.466667pt;}
.y122_c00129{bottom:482.306667pt;}
.y123_c00129{bottom:483.066667pt;}
.y121_c00129{bottom:489.986667pt;}
.y11d_c00129{bottom:502.266667pt;}
.y11e_c00129{bottom:503.040000pt;}
.y11c_c00129{bottom:503.813333pt;}
.y11f_c00129{bottom:504.573333pt;}
.y11b_c00129{bottom:506.106667pt;}
.y120_c00129{bottom:506.880000pt;}
.y11a_c00129{bottom:507.653333pt;}
.y119_c00129{bottom:512.253333pt;}
.y114_c00129{bottom:523.773333pt;}
.y115_c00129{bottom:524.546667pt;}
.y112_c00129{bottom:525.306667pt;}
.y111_c00129{bottom:526.853333pt;}
.y116_c00129{bottom:527.613333pt;}
.y10f_c00129{bottom:528.386667pt;}
.y117_c00129{bottom:530.693333pt;}
.y113_c00129{bottom:532.226667pt;}
.y110_c00129{bottom:534.533333pt;}
.y118_c00129{bottom:536.066667pt;}
.y10b_c00129{bottom:543.746667pt;}
.y109_c00129{bottom:544.506667pt;}
.y10d_c00129{bottom:546.053333pt;}
.y108_c00129{bottom:547.586667pt;}
.y10c_c00129{bottom:549.120000pt;}
.y10e_c00129{bottom:551.426667pt;}
.y10a_c00129{bottom:552.186667pt;}
.y102_c00129{bottom:567.546667pt;}
.y107_c00129{bottom:570.626667pt;}
.y101_c00129{bottom:571.386667pt;}
.y106_c00129{bottom:572.160000pt;}
.yff_c00129{bottom:572.933333pt;}
.y104_c00129{bottom:573.693333pt;}
.y103_c00129{bottom:574.466667pt;}
.y105_c00129{bottom:576.000000pt;}
.y100_c00129{bottom:577.533333pt;}
.yfe_c00129{bottom:585.986667pt;}
.yfd_c00129{bottom:589.053333pt;}
.yfa_c00129{bottom:592.133333pt;}
.yf7_c00129{bottom:593.666667pt;}
.yfc_c00129{bottom:594.426667pt;}
.yfb_c00129{bottom:596.733333pt;}
.yf9_c00129{bottom:600.573333pt;}
.yf8_c00129{bottom:601.346667pt;}
.yf6_c00129{bottom:602.880000pt;}
.yf4_c00129{bottom:611.333333pt;}
.yf2_c00129{bottom:612.866667pt;}
.yf0_c00129{bottom:615.173333pt;}
.yef_c00129{bottom:615.933333pt;}
.yf1_c00129{bottom:617.466667pt;}
.yf3_c00129{bottom:618.240000pt;}
.yee_c00129{bottom:622.080000pt;}
.yf5_c00129{bottom:623.613333pt;}
.yed_c00129{bottom:635.133333pt;}
.yea_c00129{bottom:635.906667pt;}
.ye7_c00129{bottom:637.440000pt;}
.ye9_c00129{bottom:638.213333pt;}
.yec_c00129{bottom:641.280000pt;}
.yeb_c00129{bottom:642.053333pt;}
.ye6_c00129{bottom:642.813333pt;}
.ye8_c00129{bottom:644.346667pt;}
.ye5_c00129{bottom:645.893333pt;}
.ye2_c00129{bottom:646.653333pt;}
.ye1_c00129{bottom:647.426667pt;}
.ydf_c00129{bottom:648.186667pt;}
.ye3_c00129{bottom:648.960000pt;}
.ye4_c00129{bottom:649.733333pt;}
.ye0_c00129{bottom:650.493333pt;}
.ydc_c00129{bottom:651.266667pt;}
.yde_c00129{bottom:652.026667pt;}
.ydd_c00129{bottom:652.800000pt;}
.yd9_c00129{bottom:654.333333pt;}
.ydb_c00129{bottom:657.413333pt;}
.yd8_c00129{bottom:658.173333pt;}
.yda_c00129{bottom:673.533333pt;}
.yd7_c00129{bottom:677.373333pt;}
.yd4_c00129{bottom:681.213333pt;}
.yd6_c00129{bottom:683.520000pt;}
.yd5_c00129{bottom:684.293333pt;}
.yd2_c00129{bottom:685.826667pt;}
.yd3_c00129{bottom:688.133333pt;}
.yd0_c00129{bottom:700.413333pt;}
.yce_c00129{bottom:701.186667pt;}
.ycd_c00129{bottom:701.946667pt;}
.ycf_c00129{bottom:703.493333pt;}
.yc9_c00129{bottom:704.253333pt;}
.yca_c00129{bottom:705.786667pt;}
.yd1_c00129{bottom:706.560000pt;}
.ycc_c00129{bottom:708.093333pt;}
.ycb_c00129{bottom:708.866667pt;}
.yc5_c00129{bottom:720.386667pt;}
.yc8_c00129{bottom:721.146667pt;}
.yc6_c00129{bottom:721.920000pt;}
.yc7_c00129{bottom:723.453333pt;}
.yc3_c00129{bottom:724.226667pt;}
.ybf_c00129{bottom:724.986667pt;}
.ybd_c00129{bottom:725.760000pt;}
.yc4_c00129{bottom:727.293333pt;}
.yc2_c00129{bottom:728.066667pt;}
.yc0_c00129{bottom:728.826667pt;}
.yc1_c00129{bottom:731.906667pt;}
.ybe_c00129{bottom:732.666667pt;}
.ybb_c00129{bottom:741.893333pt;}
.yba_c00129{bottom:748.026667pt;}
.yb9_c00129{bottom:751.866667pt;}
.yb8_c00129{bottom:754.946667pt;}
.ybc_c00129{bottom:756.480000pt;}
.yb7_c00129{bottom:757.253333pt;}
.yb6_c00129{bottom:759.546667pt;}
.yb4_c00129{bottom:764.160000pt;}
.yb5_c00129{bottom:764.933333pt;}
.yb3_c00129{bottom:767.226667pt;}
.yb0_c00129{bottom:772.613333pt;}
.yb2_c00129{bottom:774.906667pt;}
.yb1_c00129{bottom:777.986667pt;}
.yad_c00129{bottom:786.426667pt;}
.yab_c00129{bottom:790.266667pt;}
.yac_c00129{bottom:791.813333pt;}
.yae_c00129{bottom:793.346667pt;}
.yaf_c00129{bottom:794.880000pt;}
.yaa_c00129{bottom:800.253333pt;}
.ya9_c00129{bottom:807.173333pt;}
.ya7_c00129{bottom:808.706667pt;}
.ya4_c00129{bottom:809.466667pt;}
.ya2_c00129{bottom:811.013333pt;}
.ya5_c00129{bottom:811.773333pt;}
.ya3_c00129{bottom:812.546667pt;}
.ya1_c00129{bottom:815.613333pt;}
.ya6_c00129{bottom:819.453333pt;}
.ya0_c00129{bottom:821.760000pt;}
.ya8_c00129{bottom:824.066667pt;}
.y18f_c00129{bottom:827.133333pt;}
.y9d_c00129{bottom:831.746667pt;}
.y9c_c00129{bottom:833.280000pt;}
.y9e_c00129{bottom:835.586667pt;}
.y9a_c00129{bottom:838.653333pt;}
.y9b_c00129{bottom:839.426667pt;}
.y18e_c00129{bottom:840.960000pt;}
.y9f_c00129{bottom:852.480000pt;}
.y99_c00129{bottom:863.226667pt;}
.y98_c00129{bottom:864.000000pt;}
.y97_c00129{bottom:869.373333pt;}
.y93_c00129{bottom:921.600000pt;}
.y90_c00129{bottom:926.213333pt;}
.y8b_c00129{bottom:927.746667pt;}
.y94_c00129{bottom:930.053333pt;}
.y8e_c00129{bottom:930.813333pt;}
.y8f_c00129{bottom:932.346667pt;}
.y8c_c00129{bottom:933.120000pt;}
.y91_c00129{bottom:934.653333pt;}
.y92_c00129{bottom:935.426667pt;}
.y8d_c00129{bottom:940.026667pt;}
.y7c_c00129{bottom:945.413333pt;}
.y88_c00129{bottom:947.706667pt;}
.y89_c00129{bottom:948.480000pt;}
.y7f_c00129{bottom:949.253333pt;}
.y81_c00129{bottom:950.786667pt;}
.y86_c00129{bottom:951.546667pt;}
.y7b_c00129{bottom:952.320000pt;}
.y82_c00129{bottom:953.093333pt;}
.y80_c00129{bottom:953.853333pt;}
.y7e_c00129{bottom:954.626667pt;}
.y7d_c00129{bottom:955.386667pt;}
.y84_c00129{bottom:957.693333pt;}
.y85_c00129{bottom:958.466667pt;}
.y87_c00129{bottom:959.226667pt;}
.y83_c00129{bottom:960.773333pt;}
.y8a_c00129{bottom:964.613333pt;}
.y7a_c00129{bottom:965.373333pt;}
.y2_c00129{bottom:968.453333pt;}
.y1_c00129{bottom:970.746667pt;}
.y77_c00129{bottom:971.520000pt;}
.y78_c00129{bottom:972.293333pt;}
.y76_c00129{bottom:973.053333pt;}
.y79_c00129{bottom:973.826667pt;}
.y73_c00129{bottom:974.586667pt;}
.y75_c00129{bottom:975.360000pt;}
.y72_c00129{bottom:979.200000pt;}
.y70_c00129{bottom:983.040000pt;}
.y6f_c00129{bottom:988.413333pt;}
.y74_c00129{bottom:989.186667pt;}
.y6c_c00129{bottom:990.720000pt;}
.y6a_c00129{bottom:991.493333pt;}
.y6d_c00129{bottom:992.253333pt;}
.y6e_c00129{bottom:993.026667pt;}
.y71_c00129{bottom:993.786667pt;}
.y6b_c00129{bottom:996.866667pt;}
.y68_c00129{bottom:1005.306667pt;}
.y67_c00129{bottom:1006.853333pt;}
.y66_c00129{bottom:1008.386667pt;}
.y64_c00129{bottom:1009.146667pt;}
.y65_c00129{bottom:1012.226667pt;}
.y69_c00129{bottom:1025.280000pt;}
.y62_c00129{bottom:1033.733333pt;}
.y61_c00129{bottom:1034.493333pt;}
.y63_c00129{bottom:1036.800000pt;}
.y60_c00129{bottom:1041.413333pt;}
.y5d_c00129{bottom:1044.480000pt;}
.y5e_c00129{bottom:1045.253333pt;}
.y5f_c00129{bottom:1049.853333pt;}
.y5b_c00129{bottom:1053.693333pt;}
.y5c_c00129{bottom:1054.466667pt;}
.y5a_c00129{bottom:1055.226667pt;}
.y58_c00129{bottom:1059.840000pt;}
.y59_c00129{bottom:1060.613333pt;}
.y54_c00129{bottom:1062.906667pt;}
.y55_c00129{bottom:1069.826667pt;}
.y53_c00129{bottom:1070.586667pt;}
.y51_c00129{bottom:1071.360000pt;}
.y4d_c00129{bottom:1072.133333pt;}
.y4e_c00129{bottom:1072.893333pt;}
.y50_c00129{bottom:1073.666667pt;}
.y56_c00129{bottom:1074.426667pt;}
.y52_c00129{bottom:1075.200000pt;}
.y57_c00129{bottom:1075.973333pt;}
.y4f_c00129{bottom:1076.733333pt;}
.y47_c00129{bottom:1079.040000pt;}
.y48_c00129{bottom:1079.813333pt;}
.y4b_c00129{bottom:1080.573333pt;}
.y49_c00129{bottom:1082.106667pt;}
.y4c_c00129{bottom:1082.880000pt;}
.y4a_c00129{bottom:1084.413333pt;}
.y46_c00129{bottom:1100.546667pt;}
.y41_c00129{bottom:1101.306667pt;}
.y40_c00129{bottom:1102.080000pt;}
.y45_c00129{bottom:1104.386667pt;}
.y42_c00129{bottom:1105.146667pt;}
.y44_c00129{bottom:1107.453333pt;}
.y43_c00129{bottom:1108.226667pt;}
.y3e_c00129{bottom:1108.986667pt;}
.y3f_c00129{bottom:1109.760000pt;}
.y3c_c00129{bottom:1121.280000pt;}
.y3b_c00129{bottom:1122.053333pt;}
.y3d_c00129{bottom:1123.586667pt;}
.y3a_c00129{bottom:1124.346667pt;}
.y39_c00129{bottom:1131.266667pt;}
.y37_c00129{bottom:1144.320000pt;}
.y34_c00129{bottom:1145.093333pt;}
.y33_c00129{bottom:1145.853333pt;}
.y30_c00129{bottom:1146.626667pt;}
.y32_c00129{bottom:1148.933333pt;}
.y2d_c00129{bottom:1149.693333pt;}
.y2e_c00129{bottom:1150.466667pt;}
.y35_c00129{bottom:1151.226667pt;}
.y38_c00129{bottom:1152.000000pt;}
.y2c_c00129{bottom:1153.533333pt;}
.y36_c00129{bottom:1154.306667pt;}
.y2b_c00129{bottom:1155.840000pt;}
.y31_c00129{bottom:1156.613333pt;}
.y2f_c00129{bottom:1157.373333pt;}
.y2a_c00129{bottom:1158.146667pt;}
.y25_c00129{bottom:1158.906667pt;}
.y28_c00129{bottom:1159.680000pt;}
.y26_c00129{bottom:1161.213333pt;}
.y29_c00129{bottom:1162.746667pt;}
.y27_c00129{bottom:1163.520000pt;}
.y23_c00129{bottom:1165.826667pt;}
.y24_c00129{bottom:1167.360000pt;}
.y1e_c00129{bottom:1168.893333pt;}
.y1f_c00129{bottom:1169.666667pt;}
.y20_c00129{bottom:1171.973333pt;}
.y1c_c00129{bottom:1172.733333pt;}
.y1d_c00129{bottom:1173.506667pt;}
.y21_c00129{bottom:1175.040000pt;}
.y22_c00129{bottom:1175.813333pt;}
.y1b_c00129{bottom:1177.346667pt;}
.y18_c00129{bottom:1190.400000pt;}
.y16_c00129{bottom:1191.173333pt;}
.y17_c00129{bottom:1192.706667pt;}
.y13_c00129{bottom:1193.466667pt;}
.y1a_c00129{bottom:1194.240000pt;}
.y19_c00129{bottom:1195.013333pt;}
.y15_c00129{bottom:1195.773333pt;}
.y14_c00129{bottom:1197.306667pt;}
.yf_c00129{bottom:1199.613333pt;}
.ye_c00129{bottom:1200.386667pt;}
.y10_c00129{bottom:1201.920000pt;}
.y12_c00129{bottom:1202.693333pt;}
.y11_c00129{bottom:1206.533333pt;}
.yd_c00129{bottom:1214.973333pt;}
.yc_c00129{bottom:1217.280000pt;}
.yb_c00129{bottom:1221.893333pt;}
.ya_c00129{bottom:1222.653333pt;}
.y8_c00129{bottom:1223.426667pt;}
.y7_c00129{bottom:1224.186667pt;}
.y5_c00129{bottom:1224.960000pt;}
.y3_c00129{bottom:1225.733333pt;}
.y4_c00129{bottom:1226.493333pt;}
.y6_c00129{bottom:1232.640000pt;}
.y9_c00129{bottom:1238.786667pt;}
.h11_c00129{height:2.764500pt;}
.h12_c00129{height:4.799479pt;}
.h2_c00129{height:5.519401pt;}
.h1a_c00129{height:8.303099pt;}
.he_c00129{height:11.038802pt;}
.hb_c00129{height:13.822500pt;}
.h3_c00129{height:16.606198pt;}
.h16_c00129{height:19.341901pt;}
.hc_c00129{height:22.125599pt;}
.hf_c00129{height:24.861302pt;}
.h8_c00129{height:27.645000pt;}
.hd_c00129{height:30.428698pt;}
.h18_c00129{height:33.164401pt;}
.h10_c00129{height:35.948099pt;}
.h1b_c00129{height:38.683802pt;}
.h26_c00129{height:41.467500pt;}
.h17_c00129{height:44.251198pt;}
.h19_c00129{height:46.986901pt;}
.h5_c00129{height:49.770599pt;}
.h6_c00129{height:52.506302pt;}
.h4_c00129{height:55.290000pt;}
.h9_c00129{height:58.073698pt;}
.h7_c00129{height:60.809401pt;}
.h14_c00129{height:63.593099pt;}
.ha_c00129{height:66.328802pt;}
.h25_c00129{height:69.112500pt;}
.h24_c00129{height:71.896198pt;}
.h13_c00129{height:74.631901pt;}
.h1e_c00129{height:77.415599pt;}
.h1f_c00129{height:80.151302pt;}
.h1c_c00129{height:82.935000pt;}
.h15_c00129{height:85.718698pt;}
.h1d_c00129{height:88.454401pt;}
.h29_c00129{height:91.238099pt;}
.h28_c00129{height:93.973802pt;}
.h21_c00129{height:96.757500pt;}
.h2b_c00129{height:99.541198pt;}
.h2a_c00129{height:102.276901pt;}
.h27_c00129{height:105.060599pt;}
.h2c_c00129{height:107.796302pt;}
.h23_c00129{height:113.363698pt;}
.h22_c00129{height:116.099401pt;}
.h20_c00129{height:118.883099pt;}
.h1_c00129{height:1336.000000pt;}
.h0_c00129{height:1336.320000pt;}
.w0_c00129{width:967.680000pt;}
.w1_c00129{width:968.000000pt;}
.x0_c00129{left:0.000000pt;}
.x113_c00129{left:55.293333pt;}
.x114_c00129{left:60.666667pt;}
.x115_c00129{left:66.053333pt;}
.x1_c00129{left:109.826667pt;}
.x2_c00129{left:129.026667pt;}
.x111_c00129{left:132.093333pt;}
.x110_c00129{left:135.933333pt;}
.x98_c00129{left:138.240000pt;}
.x99_c00129{left:152.826667pt;}
.x112_c00129{left:155.133333pt;}
.xf6_c00129{left:164.346667pt;}
.xcf_c00129{left:165.893333pt;}
.xea_c00129{left:169.733333pt;}
.xec_c00129{left:172.026667pt;}
.xee_c00129{left:175.866667pt;}
.xe5_c00129{left:181.253333pt;}
.xd5_c00129{left:185.093333pt;}
.x7e_c00129{left:188.160000pt;}
.xd6_c00129{left:189.693333pt;}
.xef_c00129{left:192.000000pt;}
.x7f_c00129{left:194.306667pt;}
.x80_c00129{left:195.840000pt;}
.xf0_c00129{left:197.373333pt;}
.x29_c00129{left:198.906667pt;}
.xa9_c00129{left:200.453333pt;}
.x91_c00129{left:201.986667pt;}
.x33_c00129{left:205.053333pt;}
.x1c_c00129{left:207.360000pt;}
.x10e_c00129{left:208.893333pt;}
.x4f_c00129{left:210.426667pt;}
.x74_c00129{left:212.733333pt;}
.x1d_c00129{left:215.040000pt;}
.x71_c00129{left:218.106667pt;}
.xd3_c00129{left:220.413333pt;}
.x75_c00129{left:221.946667pt;}
.x81_c00129{left:224.253333pt;}
.xb0_c00129{left:228.093333pt;}
.xbc_c00129{left:231.173333pt;}
.xac_c00129{left:234.240000pt;}
.x92_c00129{left:235.773333pt;}
.x34_c00129{left:237.306667pt;}
.x76_c00129{left:240.386667pt;}
.x1e_c00129{left:246.533333pt;}
.xf7_c00129{left:248.066667pt;}
.x77_c00129{left:251.906667pt;}
.xe0_c00129{left:253.440000pt;}
.xc4_c00129{left:257.280000pt;}
.xad_c00129{left:258.813333pt;}
.xeb_c00129{left:261.120000pt;}
.xe6_c00129{left:264.186667pt;}
.x2a_c00129{left:266.493333pt;}
.x72_c00129{left:268.800000pt;}
.xa4_c00129{left:273.413333pt;}
.xc5_c00129{left:274.946667pt;}
.x9c_c00129{left:276.480000pt;}
.xa5_c00129{left:280.320000pt;}
.x2b_c00129{left:285.693333pt;}
.x73_c00129{left:288.000000pt;}
.x104_c00129{left:289.533333pt;}
.x35_c00129{left:291.066667pt;}
.x9d_c00129{left:293.373333pt;}
.xae_c00129{left:296.453333pt;}
.x54_c00129{left:297.986667pt;}
.x50_c00129{left:299.520000pt;}
.x60_c00129{left:301.826667pt;}
.x109_c00129{left:303.360000pt;}
.x36_c00129{left:307.200000pt;}
.xc6_c00129{left:315.653333pt;}
.x55_c00129{left:317.186667pt;}
.x1f_c00129{left:320.253333pt;}
.xb8_c00129{left:321.786667pt;}
.xfb_c00129{left:326.400000pt;}
.x93_c00129{left:328.706667pt;}
.xda_c00129{left:330.240000pt;}
.xff_c00129{left:332.546667pt;}
.x3e_c00129{left:334.080000pt;}
.x86_c00129{left:335.613333pt;}
.x65_c00129{left:337.146667pt;}
.x78_c00129{left:340.226667pt;}
.x7c_c00129{left:341.760000pt;}
.xc0_c00129{left:344.066667pt;}
.xc7_c00129{left:347.133333pt;}
.x37_c00129{left:349.440000pt;}
.x66_c00129{left:350.973333pt;}
.xb1_c00129{left:352.506667pt;}
.x108_c00129{left:354.053333pt;}
.x56_c00129{left:357.893333pt;}
.x82_c00129{left:359.426667pt;}
.x3f_c00129{left:360.960000pt;}
.x94_c00129{left:362.493333pt;}
.xb9_c00129{left:365.573333pt;}
.x57_c00129{left:367.866667pt;}
.x67_c00129{left:374.786667pt;}
.xa6_c00129{left:376.320000pt;}
.xf8_c00129{left:380.160000pt;}
.xba_c00129{left:382.466667pt;}
.x83_c00129{left:384.773333pt;}
.xe1_c00129{left:387.840000pt;}
.xd0_c00129{left:389.373333pt;}
.xfc_c00129{left:390.906667pt;}
.xa0_c00129{left:393.986667pt;}
.x87_c00129{left:397.826667pt;}
.x105_c00129{left:399.360000pt;}
.x88_c00129{left:400.893333pt;}
.xe7_c00129{left:404.733333pt;}
.x79_c00129{left:407.040000pt;}
.x58_c00129{left:410.106667pt;}
.x3_c00129{left:411.653333pt;}
.x40_c00129{left:413.186667pt;}
.x38_c00129{left:415.493333pt;}
.x95_c00129{left:418.560000pt;}
.x7d_c00129{left:422.400000pt;}
.x39_c00129{left:423.933333pt;}
.xd7_c00129{left:426.240000pt;}
.xc2_c00129{left:427.773333pt;}
.x20_c00129{left:430.080000pt;}
.xed_c00129{left:432.386667pt;}
.x4_c00129{left:433.920000pt;}
.x10a_c00129{left:435.453333pt;}
.x68_c00129{left:436.986667pt;}
.xaa_c00129{left:439.293333pt;}
.x89_c00129{left:440.826667pt;}
.x51_c00129{left:443.133333pt;}
.x96_c00129{left:444.666667pt;}
.x21_c00129{left:447.746667pt;}
.xdb_c00129{left:449.280000pt;}
.x3a_c00129{left:450.813333pt;}
.x10b_c00129{left:453.120000pt;}
.x5_c00129{left:455.426667pt;}
.x12_c00129{left:458.493333pt;}
.xf9_c00129{left:460.026667pt;}
.x101_c00129{left:461.573333pt;}
.x106_c00129{left:464.640000pt;}
.x8a_c00129{left:466.946667pt;}
.xb2_c00129{left:468.480000pt;}
.x6_c00129{left:472.320000pt;}
.xdc_c00129{left:476.933333pt;}
.x13_c00129{left:479.226667pt;}
.x11_c00129{left:482.306667pt;}
.x41_c00129{left:485.373333pt;}
.x14_c00129{left:486.906667pt;}
.x42_c00129{left:489.986667pt;}
.xe_c00129{left:491.520000pt;}
.x15_c00129{left:493.053333pt;}
.xd1_c00129{left:495.360000pt;}
.xd8_c00129{left:498.426667pt;}
.x16_c00129{left:500.733333pt;}
.x61_c00129{left:503.040000pt;}
.x7_c00129{left:504.573333pt;}
.x103_c00129{left:506.880000pt;}
.x43_c00129{left:509.186667pt;}
.xe2_c00129{left:512.253333pt;}
.x8_c00129{left:514.560000pt;}
.x17_c00129{left:516.866667pt;}
.x69_c00129{left:518.400000pt;}
.xb3_c00129{left:519.933333pt;}
.x30_c00129{left:522.240000pt;}
.x18_c00129{left:523.773333pt;}
.x59_c00129{left:525.306667pt;}
.xe3_c00129{left:528.386667pt;}
.x22_c00129{left:529.920000pt;}
.x6a_c00129{left:532.226667pt;}
.x23_c00129{left:534.533333pt;}
.x19_c00129{left:536.066667pt;}
.xbb_c00129{left:537.600000pt;}
.x9a_c00129{left:539.133333pt;}
.xc8_c00129{left:541.440000pt;}
.x1a_c00129{left:546.053333pt;}
.x44_c00129{left:549.893333pt;}
.x1b_c00129{left:554.493333pt;}
.x107_c00129{left:556.026667pt;}
.x9_c00129{left:558.333333pt;}
.x5a_c00129{left:559.866667pt;}
.xb4_c00129{left:561.413333pt;}
.xc9_c00129{left:563.706667pt;}
.x10c_c00129{left:566.786667pt;}
.x3b_c00129{left:569.093333pt;}
.x7a_c00129{left:570.626667pt;}
.x45_c00129{left:572.160000pt;}
.xbd_c00129{left:573.693333pt;}
.x5b_c00129{left:575.226667pt;}
.xa_c00129{left:578.306667pt;}
.x31_c00129{left:579.840000pt;}
.x9e_c00129{left:582.146667pt;}
.x6b_c00129{left:583.680000pt;}
.xfa_c00129{left:586.746667pt;}
.xd2_c00129{left:588.293333pt;}
.xc3_c00129{left:589.826667pt;}
.xe4_c00129{left:591.360000pt;}
.xca_c00129{left:592.893333pt;}
.x6c_c00129{left:595.200000pt;}
.x46_c00129{left:599.040000pt;}
.x24_c00129{left:601.346667pt;}
.xd4_c00129{left:602.880000pt;}
.x52_c00129{left:604.413333pt;}
.x25_c00129{left:612.093333pt;}
.x47_c00129{left:613.626667pt;}
.x6d_c00129{left:617.466667pt;}
.xcb_c00129{left:620.546667pt;}
.xcc_c00129{left:622.080000pt;}
.xf_c00129{left:625.920000pt;}
.xb_c00129{left:628.986667pt;}
.xfe_c00129{left:630.533333pt;}
.xf1_c00129{left:635.906667pt;}
.x10f_c00129{left:637.440000pt;}
.xb5_c00129{left:643.586667pt;}
.xc_c00129{left:645.120000pt;}
.x6e_c00129{left:646.653333pt;}
.x26_c00129{left:652.800000pt;}
.x97_c00129{left:656.640000pt;}
.xf2_c00129{left:658.946667pt;}
.x10_c00129{left:660.480000pt;}
.x48_c00129{left:662.786667pt;}
.xcd_c00129{left:664.320000pt;}
.xd_c00129{left:665.853333pt;}
.x5c_c00129{left:668.160000pt;}
.x62_c00129{left:672.000000pt;}
.xb6_c00129{left:673.533333pt;}
.x100_c00129{left:675.840000pt;}
.x63_c00129{left:677.373333pt;}
.xe8_c00129{left:679.680000pt;}
.x49_c00129{left:681.986667pt;}
.x3c_c00129{left:683.520000pt;}
.x8b_c00129{left:685.053333pt;}
.x8c_c00129{left:686.586667pt;}
.xdd_c00129{left:691.200000pt;}
.x4a_c00129{left:692.733333pt;}
.x84_c00129{left:695.040000pt;}
.xde_c00129{left:696.573333pt;}
.xf3_c00129{left:700.413333pt;}
.x8d_c00129{left:701.946667pt;}
.x6f_c00129{left:704.253333pt;}
.x5d_c00129{left:708.866667pt;}
.x27_c00129{left:711.173333pt;}
.x102_c00129{left:715.013333pt;}
.x10d_c00129{left:717.306667pt;}
.x3d_c00129{left:718.853333pt;}
.x4b_c00129{left:722.693333pt;}
.x64_c00129{left:726.533333pt;}
.x4c_c00129{left:728.066667pt;}
.x8e_c00129{left:730.373333pt;}
.xe9_c00129{left:732.666667pt;}
.x5e_c00129{left:734.213333pt;}
.x4d_c00129{left:737.280000pt;}
.xa7_c00129{left:738.813333pt;}
.xdf_c00129{left:741.893333pt;}
.x70_c00129{left:743.426667pt;}
.x85_c00129{left:744.960000pt;}
.x8f_c00129{left:746.493333pt;}
.xd9_c00129{left:748.026667pt;}
.x4e_c00129{left:749.573333pt;}
.x5f_c00129{left:751.106667pt;}
.x2c_c00129{left:752.640000pt;}
.x2d_c00129{left:755.706667pt;}
.xce_c00129{left:757.253333pt;}
.xbe_c00129{left:758.786667pt;}
.x9b_c00129{left:764.160000pt;}
.xbf_c00129{left:766.466667pt;}
.x90_c00129{left:771.840000pt;}
.xf4_c00129{left:774.146667pt;}
.xfd_c00129{left:775.680000pt;}
.xc1_c00129{left:777.986667pt;}
.xa8_c00129{left:780.293333pt;}
.xab_c00129{left:782.586667pt;}
.x2e_c00129{left:785.666667pt;}
.xaf_c00129{left:787.200000pt;}
.xb7_c00129{left:789.506667pt;}
.x53_c00129{left:791.040000pt;}
.xa1_c00129{left:794.106667pt;}
.xf5_c00129{left:795.653333pt;}
.x7b_c00129{left:806.400000pt;}
.xa2_c00129{left:807.933333pt;}
.x2f_c00129{left:810.240000pt;}
.x28_c00129{left:817.146667pt;}
.xa3_c00129{left:818.693333pt;}
.x32_c00129{left:823.293333pt;}
.x9f_c00129{left:826.373333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_07899c86584516b090360b01.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.109863;font-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_c00130{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00130{transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);}
.m147_c00130{transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);}
.mff_c00130{transform:matrix(0.054375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054375,0.000000,0.000000,0.250000,0,0);}
.mfd_c00130{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m59_c00130{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);}
.m115_c00130{transform:matrix(0.070350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070350,0.000000,0.000000,0.250000,0,0);}
.m18_c00130{transform:matrix(0.084400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084400,0.000000,0.000000,0.250000,0,0);}
.mb3_c00130{transform:matrix(0.088525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088525,0.000000,0.000000,0.250000,0,0);}
.m157_c00130{transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);}
.m172_c00130{transform:matrix(0.095075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095075,0.000000,0.000000,0.250000,0,0);}
.m5b_c00130{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m12e_c00130{transform:matrix(0.098075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098075,0.000000,0.000000,0.250000,0,0);}
.ma5_c00130{transform:matrix(0.098950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098950,0.000000,0.000000,0.250000,0,0);}
.m29_c00130{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);}
.m78_c00130{transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);}
.mbe_c00130{transform:matrix(0.103125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103125,0.000000,0.000000,0.250000,0,0);}
.m5c_c00130{transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);}
.ma2_c00130{transform:matrix(0.105600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105600,0.000000,0.000000,0.250000,0,0);}
.m8f_c00130{transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);}
.ma7_c00130{transform:matrix(0.107525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107525,0.000000,0.000000,0.250000,0,0);}
.m2e_c00130{transform:matrix(0.108225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108225,0.000000,0.000000,0.250000,0,0);}
.m170_c00130{transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);}
.m8d_c00130{transform:matrix(0.110025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110025,0.000000,0.000000,0.250000,0,0);}
.m9f_c00130{transform:matrix(0.114750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114750,0.000000,0.000000,0.250000,0,0);}
.ma1_c00130{transform:matrix(0.114925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114925,0.000000,0.000000,0.250000,0,0);}
.m15a_c00130{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m130_c00130{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m100_c00130{transform:matrix(0.117550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117550,0.000000,0.000000,0.250000,0,0);}
.mfa_c00130{transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);}
.m173_c00130{transform:matrix(0.118525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118525,0.000000,0.000000,0.250000,0,0);}
.m10f_c00130{transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);}
.m8e_c00130{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m142_c00130{transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);}
.m69_c00130{transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);}
.m51_c00130{transform:matrix(0.121625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121625,0.000000,0.000000,0.250000,0,0);}
.mb4_c00130{transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);}
.m70_c00130{transform:matrix(0.121825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121825,0.000000,0.000000,0.250000,0,0);}
.m11e_c00130{transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);}
.m6f_c00130{transform:matrix(0.122025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122025,0.000000,0.000000,0.250000,0,0);}
.m13_c00130{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00130{transform:matrix(0.124150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124150,0.000000,0.000000,0.250000,0,0);}
.m1c_c00130{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m49_c00130{transform:matrix(0.126200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126200,0.000000,0.000000,0.250000,0,0);}
.mc2_c00130{transform:matrix(0.126875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126875,0.000000,0.000000,0.250000,0,0);}
.m124_c00130{transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);}
.m9b_c00130{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m123_c00130{transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);}
.ma6_c00130{transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);}
.m12f_c00130{transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00130{transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);}
.mb1_c00130{transform:matrix(0.132600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132600,0.000000,0.000000,0.250000,0,0);}
.mc3_c00130{transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);}
.m13f_c00130{transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);}
.m16a_c00130{transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);}
.m72_c00130{transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);}
.m4d_c00130{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00130{transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);}
.m76_c00130{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m129_c00130{transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);}
.m10c_c00130{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m58_c00130{transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);}
.m146_c00130{transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);}
.m118_c00130{transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);}
.m119_c00130{transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);}
.mf5_c00130{transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);}
.m34_c00130{transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);}
.md8_c00130{transform:matrix(0.139125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139125,0.000000,0.000000,0.250000,0,0);}
.m14a_c00130{transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);}
.mcf_c00130{transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);}
.m174_c00130{transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);}
.m9a_c00130{transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);}
.mfb_c00130{transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);}
.m167_c00130{transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);}
.m112_c00130{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);}
.m45_c00130{transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);}
.m6e_c00130{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);}
.m11b_c00130{transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);}
.m169_c00130{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.m60_c00130{transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);}
.ma9_c00130{transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);}
.md_c00130{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00130{transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);}
.m62_c00130{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.m14e_c00130{transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);}
.m10d_c00130{transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);}
.m36_c00130{transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);}
.mcb_c00130{transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);}
.mdb_c00130{transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);}
.m57_c00130{transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);}
.m108_c00130{transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);}
.mf0_c00130{transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);}
.m12d_c00130{transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);}
.m71_c00130{transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);}
.m6d_c00130{transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);}
.m14c_c00130{transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);}
.md9_c00130{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);}
.m14f_c00130{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.m11d_c00130{transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);}
.m56_c00130{transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);}
.m15e_c00130{transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);}
.mae_c00130{transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);}
.mce_c00130{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.mf7_c00130{transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);}
.me8_c00130{transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);}
.m3a_c00130{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.m107_c00130{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);}
.m65_c00130{transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);}
.m152_c00130{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m92_c00130{transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);}
.mc7_c00130{transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);}
.m13c_c00130{transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);}
.mde_c00130{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);}
.m90_c00130{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m122_c00130{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m168_c00130{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.m135_c00130{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.mbc_c00130{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.m77_c00130{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.m126_c00130{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.m158_c00130{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);}
.m175_c00130{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m134_c00130{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.m95_c00130{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);}
.m2f_c00130{transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);}
.md5_c00130{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.m138_c00130{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);}
.m11f_c00130{transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);}
.m166_c00130{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);}
.m10e_c00130{transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);}
.m54_c00130{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m11a_c00130{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.mf6_c00130{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.mb0_c00130{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m94_c00130{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);}
.mcd_c00130{transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);}
.m66_c00130{transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);}
.mfc_c00130{transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);}
.m52_c00130{transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);}
.m5e_c00130{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);}
.me6_c00130{transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);}
.mb5_c00130{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);}
.m39_c00130{transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);}
.m32_c00130{transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);}
.mf3_c00130{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);}
.m148_c00130{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.m150_c00130{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.md7_c00130{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.m162_c00130{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.m156_c00130{transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);}
.maf_c00130{transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);}
.med_c00130{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.m75_c00130{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.m104_c00130{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m11c_c00130{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.me7_c00130{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);}
.mc5_c00130{transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);}
.m159_c00130{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);}
.m35_c00130{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);}
.m12b_c00130{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);}
.m42_c00130{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m16e_c00130{transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);}
.m120_c00130{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m137_c00130{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.m110_c00130{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);}
.mf2_c00130{transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);}
.m2c_c00130{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.mea_c00130{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);}
.m7d_c00130{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m117_c00130{transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);}
.m16f_c00130{transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);}
.m105_c00130{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);}
.m8a_c00130{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m46_c00130{transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);}
.m4f_c00130{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);}
.m50_c00130{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m15c_c00130{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.m121_c00130{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m131_c00130{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00130{transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);}
.maa_c00130{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);}
.m7c_c00130{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.m16d_c00130{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);}
.m47_c00130{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m3d_c00130{transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);}
.m5f_c00130{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);}
.mc1_c00130{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m143_c00130{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.mca_c00130{transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);}
.m101_c00130{transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);}
.m164_c00130{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);}
.md2_c00130{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.mab_c00130{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m6c_c00130{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m10_c00130{transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);}
.mec_c00130{transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);}
.m15f_c00130{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m88_c00130{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);}
.m160_c00130{transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);}
.m13e_c00130{transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);}
.m139_c00130{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.m151_c00130{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.m31_c00130{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.me5_c00130{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);}
.mb2_c00130{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);}
.md4_c00130{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m93_c00130{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);}
.m12a_c00130{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);}
.m140_c00130{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m153_c00130{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.m155_c00130{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m8b_c00130{transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);}
.m97_c00130{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m53_c00130{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.mbb_c00130{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.m4e_c00130{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.m85_c00130{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.m74_c00130{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);}
.me9_c00130{transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);}
.mef_c00130{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);}
.m7b_c00130{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);}
.m15b_c00130{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);}
.mf_c00130{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m7a_c00130{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.m98_c00130{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);}
.m136_c00130{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.m16c_c00130{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.m2a_c00130{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);}
.m87_c00130{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);}
.m89_c00130{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);}
.mac_c00130{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m3f_c00130{transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);}
.md1_c00130{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m9c_c00130{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);}
.mdd_c00130{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.m171_c00130{transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);}
.m9e_c00130{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.md3_c00130{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.mbd_c00130{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);}
.mda_c00130{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);}
.m12c_c00130{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);}
.m63_c00130{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m145_c00130{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);}
.m41_c00130{transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);}
.ma4_c00130{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);}
.m102_c00130{transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);}
.m25_c00130{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);}
.m2b_c00130{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);}
.mb8_c00130{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);}
.mf4_c00130{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);}
.m15d_c00130{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);}
.m109_c00130{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.m127_c00130{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);}
.m81_c00130{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m154_c00130{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);}
.m144_c00130{transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);}
.m165_c00130{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.me0_c00130{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);}
.mb9_c00130{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);}
.m83_c00130{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);}
.mb_c00130{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m21_c00130{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.mc8_c00130{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);}
.mb7_c00130{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);}
.m17_c00130{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);}
.m82_c00130{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.m7_c00130{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mee_c00130{transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);}
.mf1_c00130{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m149_c00130{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);}
.m14d_c00130{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);}
.mdf_c00130{transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);}
.mba_c00130{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);}
.m44_c00130{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m133_c00130{transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);}
.mbf_c00130{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m5a_c00130{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m103_c00130{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.md6_c00130{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);}
.m80_c00130{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);}
.ma3_c00130{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);}
.md0_c00130{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);}
.m5_c00130{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m61_c00130{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);}
.m96_c00130{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);}
.me2_c00130{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.mc_c00130{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m43_c00130{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);}
.m2_c00130{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);}
.m116_c00130{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00130{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);}
.m64_c00130{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);}
.m13d_c00130{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);}
.m13a_c00130{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);}
.m11_c00130{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m38_c00130{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m84_c00130{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m91_c00130{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);}
.m24_c00130{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m161_c00130{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);}
.meb_c00130{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);}
.m8_c00130{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00130{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);}
.m48_c00130{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me3_c00130{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);}
.m13b_c00130{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);}
.m6_c00130{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00130{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);}
.mcc_c00130{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m15_c00130{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00130{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);}
.m86_c00130{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m99_c00130{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c00130{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00130{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m20_c00130{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00130{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me4_c00130{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);}
.m12_c00130{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m114_c00130{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m14b_c00130{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c00130{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m33_c00130{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);}
.m37_c00130{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);}
.me_c00130{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);}
.m125_c00130{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m73_c00130{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00130{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);}
.m4a_c00130{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00130{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.me1_c00130{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);}
.mc0_c00130{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);}
.m8c_c00130{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);}
.mdc_c00130{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m163_c00130{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m27_c00130{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00130{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00130{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m0_c00130{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);}
.m1f_c00130{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m111_c00130{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m79_c00130{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00130{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m132_c00130{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00130{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);}
.m55_c00130{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);}
.m4b_c00130{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1_c00130{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00130{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00130{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00130{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00130{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);}
.m28_c00130{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m141_c00130{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m16b_c00130{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);}
.m9_c00130{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m3_c00130{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mad_c00130{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m40_c00130{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m23_c00130{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00130{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m26_c00130{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m4_c00130{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m68_c00130{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.m128_c00130{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m30_c00130{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m106_c00130{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.ma_c00130{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);}
.m5d_c00130{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00130{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.m22_c00130{transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00130{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m67_c00130{transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);}
.m19_c00130{transform:matrix(2.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.355000,0.000000,0.000000,0.250000,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;}
}
.ws2_c00130{word-spacing:0.000000px;}
.ws0_c00130{word-spacing:30.466652px;}
.ws1_c00130{word-spacing:80.986173px;}
.fc0_c00130{color:transparent;}
.fs11_c00130{font-size:3.456000px;}
.fs10_c00130{font-size:6.000000px;}
.fs3_c00130{font-size:6.900000px;}
.fs2_c00130{font-size:10.380000px;}
.fs8_c00130{font-size:13.800000px;}
.fs0_c00130{font-size:17.280000px;}
.fsa_c00130{font-size:20.760000px;}
.fs12_c00130{font-size:24.180000px;}
.fs6_c00130{font-size:27.660000px;}
.fs5_c00130{font-size:31.080000px;}
.fs21_c00130{font-size:34.560000px;}
.fsf_c00130{font-size:38.040000px;}
.fse_c00130{font-size:41.460000px;}
.fs4_c00130{font-size:44.940000px;}
.fs23_c00130{font-size:48.360000px;}
.fsb_c00130{font-size:51.840000px;}
.fs26_c00130{font-size:55.320000px;}
.fs19_c00130{font-size:58.740000px;}
.fs16_c00130{font-size:62.220000px;}
.fs1c_c00130{font-size:65.640000px;}
.fsd_c00130{font-size:69.120000px;}
.fs9_c00130{font-size:72.600000px;}
.fs1_c00130{font-size:76.020000px;}
.fs1d_c00130{font-size:79.500000px;}
.fs1a_c00130{font-size:82.920000px;}
.fs7_c00130{font-size:86.400000px;}
.fs1b_c00130{font-size:89.880000px;}
.fsc_c00130{font-size:93.300000px;}
.fs15_c00130{font-size:96.780000px;}
.fs13_c00130{font-size:100.200000px;}
.fs1f_c00130{font-size:103.680000px;}
.fs18_c00130{font-size:107.160000px;}
.fs1e_c00130{font-size:110.580000px;}
.fs20_c00130{font-size:114.060000px;}
.fs22_c00130{font-size:117.480000px;}
.fs17_c00130{font-size:120.960000px;}
.fs14_c00130{font-size:124.440000px;}
.fs24_c00130{font-size:127.860000px;}
.fs25_c00130{font-size:138.240000px;}
.y0_c00130{bottom:0.000000px;}
.y162_c00130{bottom:209.955000px;}
.y164_c00130{bottom:210.810000px;}
.y167_c00130{bottom:213.405000px;}
.y163_c00130{bottom:216.870000px;}
.y165_c00130{bottom:220.320000px;}
.y166_c00130{bottom:222.915000px;}
.y160_c00130{bottom:223.770000px;}
.y161_c00130{bottom:224.640000px;}
.y15f_c00130{bottom:229.830000px;}
.y168_c00130{bottom:235.005000px;}
.y159_c00130{bottom:240.195000px;}
.y15b_c00130{bottom:241.920000px;}
.y15c_c00130{bottom:242.790000px;}
.y15d_c00130{bottom:243.645000px;}
.y15e_c00130{bottom:244.515000px;}
.y15a_c00130{bottom:245.370000px;}
.y158_c00130{bottom:261.795000px;}
.y155_c00130{bottom:266.970000px;}
.y151_c00130{bottom:267.840000px;}
.y156_c00130{bottom:268.710000px;}
.y153_c00130{bottom:269.565000px;}
.y152_c00130{bottom:271.290000px;}
.y157_c00130{bottom:273.030000px;}
.y154_c00130{bottom:275.610000px;}
.y14a_c00130{bottom:291.165000px;}
.y14f_c00130{bottom:292.035000px;}
.y14d_c00130{bottom:293.760000px;}
.y14e_c00130{bottom:294.630000px;}
.y14b_c00130{bottom:295.485000px;}
.y14c_c00130{bottom:298.950000px;}
.y150_c00130{bottom:301.530000px;}
.y144_c00130{bottom:317.955000px;}
.y146_c00130{bottom:318.810000px;}
.y145_c00130{bottom:319.680000px;}
.y148_c00130{bottom:321.405000px;}
.y147_c00130{bottom:323.130000px;}
.y149_c00130{bottom:325.725000px;}
.y141_c00130{bottom:342.150000px;}
.y13d_c00130{bottom:343.005000px;}
.y143_c00130{bottom:343.875000px;}
.y140_c00130{bottom:344.730000px;}
.y13e_c00130{bottom:347.325000px;}
.y142_c00130{bottom:349.050000px;}
.y13f_c00130{bottom:351.645000px;}
.y13c_c00130{bottom:361.155000px;}
.y135_c00130{bottom:366.330000px;}
.y138_c00130{bottom:368.070000px;}
.y137_c00130{bottom:368.925000px;}
.y13a_c00130{bottom:369.795000px;}
.y13b_c00130{bottom:372.390000px;}
.y136_c00130{bottom:376.710000px;}
.y139_c00130{bottom:377.565000px;}
.y134_c00130{bottom:378.435000px;}
.y12f_c00130{bottom:391.395000px;}
.y12e_c00130{bottom:393.120000px;}
.y131_c00130{bottom:394.845000px;}
.y132_c00130{bottom:395.715000px;}
.y133_c00130{bottom:396.570000px;}
.y130_c00130{bottom:400.035000px;}
.y127_c00130{bottom:419.040000px;}
.y12c_c00130{bottom:419.910000px;}
.y126_c00130{bottom:420.765000px;}
.y129_c00130{bottom:421.635000px;}
.y12b_c00130{bottom:422.490000px;}
.y12a_c00130{bottom:423.360000px;}
.y125_c00130{bottom:424.230000px;}
.y128_c00130{bottom:425.085000px;}
.y12d_c00130{bottom:429.405000px;}
.y120_c00130{bottom:437.190000px;}
.y121_c00130{bottom:438.915000px;}
.y123_c00130{bottom:439.770000px;}
.y122_c00130{bottom:440.640000px;}
.y124_c00130{bottom:441.510000px;}
.y11b_c00130{bottom:470.010000px;}
.y11e_c00130{bottom:470.880000px;}
.y11d_c00130{bottom:474.330000px;}
.y11c_c00130{bottom:475.200000px;}
.y11f_c00130{bottom:478.650000px;}
.y10f_c00130{bottom:494.205000px;}
.y112_c00130{bottom:495.075000px;}
.y114_c00130{bottom:495.930000px;}
.y110_c00130{bottom:496.800000px;}
.y119_c00130{bottom:497.670000px;}
.y116_c00130{bottom:498.525000px;}
.y113_c00130{bottom:500.250000px;}
.y111_c00130{bottom:501.120000px;}
.y115_c00130{bottom:502.845000px;}
.y118_c00130{bottom:503.715000px;}
.y117_c00130{bottom:504.570000px;}
.y11a_c00130{bottom:505.440000px;}
.y109_c00130{bottom:520.125000px;}
.y10a_c00130{bottom:520.995000px;}
.y10b_c00130{bottom:521.850000px;}
.y10c_c00130{bottom:522.720000px;}
.y108_c00130{bottom:527.040000px;}
.y10d_c00130{bottom:528.765000px;}
.y10e_c00130{bottom:537.405000px;}
.y101_c00130{bottom:544.320000px;}
.y102_c00130{bottom:546.045000px;}
.y103_c00130{bottom:546.915000px;}
.y104_c00130{bottom:547.770000px;}
.y106_c00130{bottom:548.640000px;}
.y105_c00130{bottom:552.090000px;}
.y100_c00130{bottom:553.830000px;}
.yff_c00130{bottom:556.410000px;}
.yfe_c00130{bottom:561.600000px;}
.yf7_c00130{bottom:568.515000px;}
.yfb_c00130{bottom:569.370000px;}
.y107_c00130{bottom:570.240000px;}
.yfd_c00130{bottom:571.965000px;}
.yfc_c00130{bottom:572.835000px;}
.yf8_c00130{bottom:574.560000px;}
.yf9_c00130{bottom:576.285000px;}
.yfa_c00130{bottom:578.010000px;}
.yf5_c00130{bottom:581.475000px;}
.yf6_c00130{bottom:588.390000px;}
.yf0_c00130{bottom:595.290000px;}
.yf2_c00130{bottom:597.030000px;}
.yf4_c00130{bottom:597.885000px;}
.yf1_c00130{bottom:601.350000px;}
.yee_c00130{bottom:603.075000px;}
.yef_c00130{bottom:608.250000px;}
.yf3_c00130{bottom:609.990000px;}
.yea_c00130{bottom:619.485000px;}
.yeb_c00130{bottom:621.210000px;}
.yed_c00130{bottom:624.675000px;}
.ye7_c00130{bottom:629.850000px;}
.yec_c00130{bottom:632.445000px;}
.ye8_c00130{bottom:635.040000px;}
.ye9_c00130{bottom:637.635000px;}
.ye4_c00130{bottom:645.405000px;}
.ye5_c00130{bottom:646.275000px;}
.ye3_c00130{bottom:647.130000px;}
.ye6_c00130{bottom:651.450000px;}
.ydd_c00130{bottom:670.470000px;}
.ye0_c00130{bottom:673.050000px;}
.yde_c00130{bottom:674.790000px;}
.ydf_c00130{bottom:675.645000px;}
.ye1_c00130{bottom:677.370000px;}
.ydc_c00130{bottom:681.690000px;}
.ye2_c00130{bottom:687.750000px;}
.yd6_c00130{bottom:693.795000px;}
.yd4_c00130{bottom:695.520000px;}
.yd8_c00130{bottom:696.390000px;}
.yd7_c00130{bottom:698.115000px;}
.yd5_c00130{bottom:698.970000px;}
.yda_c00130{bottom:703.290000px;}
.yd9_c00130{bottom:704.160000px;}
.ydb_c00130{bottom:705.030000px;}
.yce_c00130{bottom:718.845000px;}
.ycd_c00130{bottom:719.715000px;}
.yd2_c00130{bottom:720.570000px;}
.ycf_c00130{bottom:721.440000px;}
.yd3_c00130{bottom:727.485000px;}
.yd0_c00130{bottom:728.355000px;}
.yd1_c00130{bottom:729.210000px;}
.ycc_c00130{bottom:730.950000px;}
.yc6_c00130{bottom:743.910000px;}
.yca_c00130{bottom:744.765000px;}
.yc7_c00130{bottom:745.635000px;}
.ycb_c00130{bottom:746.490000px;}
.yc9_c00130{bottom:747.360000px;}
.yc8_c00130{bottom:752.550000px;}
.yc5_c00130{bottom:753.405000px;}
.yc0_c00130{bottom:768.960000px;}
.yc1_c00130{bottom:769.830000px;}
.yc3_c00130{bottom:771.555000px;}
.yc2_c00130{bottom:777.600000px;}
.yc4_c00130{bottom:779.325000px;}
.ybf_c00130{bottom:786.240000px;}
.yba_c00130{bottom:794.010000px;}
.ybb_c00130{bottom:795.750000px;}
.ybd_c00130{bottom:796.605000px;}
.ybe_c00130{bottom:797.475000px;}
.yb9_c00130{bottom:800.925000px;}
.ybc_c00130{bottom:801.795000px;}
.yad_c00130{bottom:816.480000px;}
.yb1_c00130{bottom:817.350000px;}
.yae_c00130{bottom:818.205000px;}
.yb2_c00130{bottom:819.075000px;}
.yb4_c00130{bottom:820.800000px;}
.yb7_c00130{bottom:821.670000px;}
.yb3_c00130{bottom:822.525000px;}
.yac_c00130{bottom:823.395000px;}
.yb0_c00130{bottom:824.250000px;}
.yaf_c00130{bottom:825.120000px;}
.yb6_c00130{bottom:827.715000px;}
.yb5_c00130{bottom:828.570000px;}
.yb8_c00130{bottom:829.440000px;}
.ya7_c00130{bottom:843.270000px;}
.yaa_c00130{bottom:844.995000px;}
.ya5_c00130{bottom:845.850000px;}
.ya9_c00130{bottom:847.590000px;}
.yab_c00130{bottom:848.445000px;}
.ya8_c00130{bottom:849.315000px;}
.ya6_c00130{bottom:851.040000px;}
.ya3_c00130{bottom:852.765000px;}
.ya4_c00130{bottom:854.490000px;}
.y9e_c00130{bottom:869.190000px;}
.y9d_c00130{bottom:870.045000px;}
.ya0_c00130{bottom:870.915000px;}
.y9f_c00130{bottom:871.770000px;}
.ya1_c00130{bottom:876.090000px;}
.ya2_c00130{bottom:876.960000px;}
.y99_c00130{bottom:894.240000px;}
.y9a_c00130{bottom:895.965000px;}
.y9c_c00130{bottom:896.835000px;}
.y9b_c00130{bottom:897.690000px;}
.y98_c00130{bottom:898.560000px;}
.y97_c00130{bottom:899.430000px;}
.y96_c00130{bottom:902.880000px;}
.y90_c00130{bottom:912.390000px;}
.y8f_c00130{bottom:914.115000px;}
.y94_c00130{bottom:915.840000px;}
.y95_c00130{bottom:916.710000px;}
.y91_c00130{bottom:917.565000px;}
.y8e_c00130{bottom:924.480000px;}
.y93_c00130{bottom:925.350000px;}
.y92_c00130{bottom:926.205000px;}
.y84_c00130{bottom:936.570000px;}
.y8a_c00130{bottom:937.440000px;}
.y89_c00130{bottom:938.310000px;}
.y8d_c00130{bottom:940.890000px;}
.y8c_c00130{bottom:942.630000px;}
.y87_c00130{bottom:946.080000px;}
.y88_c00130{bottom:946.950000px;}
.y8b_c00130{bottom:949.530000px;}
.y86_c00130{bottom:950.400000px;}
.y85_c00130{bottom:958.170000px;}
.y80_c00130{bottom:968.550000px;}
.y82_c00130{bottom:969.405000px;}
.y83_c00130{bottom:970.275000px;}
.y81_c00130{bottom:985.830000px;}
.y7b_c00130{bottom:989.280000px;}
.y7c_c00130{bottom:990.150000px;}
.y7d_c00130{bottom:991.005000px;}
.y7e_c00130{bottom:991.875000px;}
.y7a_c00130{bottom:992.730000px;}
.y7f_c00130{bottom:993.600000px;}
.y79_c00130{bottom:1012.605000px;}
.y76_c00130{bottom:1019.520000px;}
.y77_c00130{bottom:1021.245000px;}
.y75_c00130{bottom:1022.115000px;}
.y78_c00130{bottom:1022.970000px;}
.y74_c00130{bottom:1023.840000px;}
.y6e_c00130{bottom:1046.310000px;}
.y6b_c00130{bottom:1047.165000px;}
.y6c_c00130{bottom:1048.035000px;}
.y6f_c00130{bottom:1048.890000px;}
.y71_c00130{bottom:1049.760000px;}
.y6d_c00130{bottom:1050.630000px;}
.y72_c00130{bottom:1053.210000px;}
.y70_c00130{bottom:1054.080000px;}
.y73_c00130{bottom:1055.805000px;}
.y68_c00130{bottom:1067.910000px;}
.y69_c00130{bottom:1068.765000px;}
.y6a_c00130{bottom:1071.360000px;}
.y67_c00130{bottom:1072.230000px;}
.y66_c00130{bottom:1083.450000px;}
.y5f_c00130{bottom:1092.960000px;}
.y60_c00130{bottom:1093.830000px;}
.y65_c00130{bottom:1094.685000px;}
.y61_c00130{bottom:1095.555000px;}
.y62_c00130{bottom:1099.005000px;}
.y63_c00130{bottom:1102.470000px;}
.y64_c00130{bottom:1105.050000px;}
.y5a_c00130{bottom:1118.880000px;}
.y59_c00130{bottom:1120.605000px;}
.y5e_c00130{bottom:1121.475000px;}
.y5d_c00130{bottom:1122.330000px;}
.y5b_c00130{bottom:1124.925000px;}
.y169_c00130{bottom:1125.795000px;}
.y5c_c00130{bottom:1126.650000px;}
.y56_c00130{bottom:1143.930000px;}
.y57_c00130{bottom:1145.670000px;}
.y58_c00130{bottom:1150.845000px;}
.y54_c00130{bottom:1152.570000px;}
.y55_c00130{bottom:1160.355000px;}
.y53_c00130{bottom:1162.080000px;}
.y4d_c00130{bottom:1168.125000px;}
.y4e_c00130{bottom:1169.850000px;}
.y4f_c00130{bottom:1171.590000px;}
.y51_c00130{bottom:1174.170000px;}
.y50_c00130{bottom:1176.765000px;}
.y52_c00130{bottom:1177.635000px;}
.y4c_c00130{bottom:1178.490000px;}
.y45_c00130{bottom:1192.320000px;}
.y47_c00130{bottom:1193.190000px;}
.y46_c00130{bottom:1194.915000px;}
.y44_c00130{bottom:1195.770000px;}
.y48_c00130{bottom:1196.640000px;}
.y4b_c00130{bottom:1197.510000px;}
.y49_c00130{bottom:1200.090000px;}
.y43_c00130{bottom:1202.685000px;}
.y4a_c00130{bottom:1209.600000px;}
.y40_c00130{bottom:1219.110000px;}
.y3f_c00130{bottom:1219.965000px;}
.y41_c00130{bottom:1221.690000px;}
.y42_c00130{bottom:1222.560000px;}
.y3e_c00130{bottom:1224.285000px;}
.y3c_c00130{bottom:1245.030000px;}
.y3d_c00130{bottom:1245.885000px;}
.y3a_c00130{bottom:1252.800000px;}
.y3b_c00130{bottom:1257.990000px;}
.y35_c00130{bottom:1266.630000px;}
.y38_c00130{bottom:1268.355000px;}
.y37_c00130{bottom:1270.080000px;}
.y36_c00130{bottom:1275.270000px;}
.y39_c00130{bottom:1279.590000px;}
.y34_c00130{bottom:1291.680000px;}
.y2c_c00130{bottom:1295.130000px;}
.y31_c00130{bottom:1296.000000px;}
.y30_c00130{bottom:1297.725000px;}
.y2f_c00130{bottom:1299.450000px;}
.y2d_c00130{bottom:1302.045000px;}
.y2e_c00130{bottom:1302.915000px;}
.y2a_c00130{bottom:1307.235000px;}
.y32_c00130{bottom:1311.555000px;}
.y33_c00130{bottom:1315.875000px;}
.y2b_c00130{bottom:1316.730000px;}
.y24_c00130{bottom:1319.325000px;}
.y26_c00130{bottom:1320.195000px;}
.y25_c00130{bottom:1321.050000px;}
.y28_c00130{bottom:1327.110000px;}
.y29_c00130{bottom:1327.965000px;}
.y27_c00130{bottom:1330.560000px;}
.y23_c00130{bottom:1335.750000px;}
.y1e_c00130{bottom:1346.115000px;}
.y1f_c00130{bottom:1347.840000px;}
.y1c_c00130{bottom:1349.565000px;}
.y1d_c00130{bottom:1350.435000px;}
.y21_c00130{bottom:1352.160000px;}
.y20_c00130{bottom:1353.030000px;}
.y22_c00130{bottom:1353.885000px;}
.y18_c00130{bottom:1377.210000px;}
.y19_c00130{bottom:1378.080000px;}
.y1b_c00130{bottom:1378.950000px;}
.yc_c00130{bottom:1381.530000px;}
.y1a_c00130{bottom:1382.400000px;}
.y11_c00130{bottom:1383.270000px;}
.y10_c00130{bottom:1384.125000px;}
.y12_c00130{bottom:1384.995000px;}
.y13_c00130{bottom:1385.850000px;}
.y15_c00130{bottom:1386.720000px;}
.ye_c00130{bottom:1387.590000px;}
.yf_c00130{bottom:1388.445000px;}
.y14_c00130{bottom:1389.315000px;}
.y16_c00130{bottom:1390.170000px;}
.y17_c00130{bottom:1392.765000px;}
.yd_c00130{bottom:1397.085000px;}
.ya_c00130{bottom:1409.190000px;}
.y8_c00130{bottom:1410.045000px;}
.y6_c00130{bottom:1411.770000px;}
.yb_c00130{bottom:1412.640000px;}
.y7_c00130{bottom:1421.280000px;}
.y9_c00130{bottom:1422.150000px;}
.y3_c00130{bottom:1433.370000px;}
.y4_c00130{bottom:1435.110000px;}
.y5_c00130{bottom:1441.155000px;}
.y1_c00130{bottom:1442.010000px;}
.y2_c00130{bottom:1445.475000px;}
.h13_c00130{height:3.110063px;}
.h12_c00130{height:5.399414px;}
.h5_c00130{height:6.209326px;}
.h4_c00130{height:9.340986px;}
.ha_c00130{height:12.418652px;}
.h2_c00130{height:15.550313px;}
.hc_c00130{height:18.681973px;}
.h14_c00130{height:21.759639px;}
.h8_c00130{height:24.891299px;}
.h7_c00130{height:27.968965px;}
.h23_c00130{height:31.100625px;}
.h11_c00130{height:34.232285px;}
.h10_c00130{height:37.309951px;}
.h6_c00130{height:40.441611px;}
.h25_c00130{height:43.519277px;}
.hd_c00130{height:46.650937px;}
.h28_c00130{height:49.782598px;}
.h1b_c00130{height:52.860264px;}
.h18_c00130{height:55.991924px;}
.h1e_c00130{height:59.069590px;}
.hf_c00130{height:62.201250px;}
.hb_c00130{height:65.332910px;}
.h3_c00130{height:68.410576px;}
.h1f_c00130{height:71.542236px;}
.h1c_c00130{height:74.619902px;}
.h9_c00130{height:77.751563px;}
.h1d_c00130{height:80.883223px;}
.he_c00130{height:83.960889px;}
.h17_c00130{height:87.092549px;}
.h15_c00130{height:90.170215px;}
.h21_c00130{height:93.301875px;}
.h1a_c00130{height:96.433535px;}
.h20_c00130{height:99.511201px;}
.h22_c00130{height:102.642861px;}
.h24_c00130{height:105.720527px;}
.h19_c00130{height:108.852188px;}
.h16_c00130{height:111.983848px;}
.h26_c00130{height:115.061514px;}
.h27_c00130{height:124.402500px;}
.h0_c00130{height:1517.190000px;}
.h1_c00130{height:1517.250000px;}
.w0_c00130{width:1090.365000px;}
.w1_c00130{width:1090.500000px;}
.x0_c00130{left:0.000000px;}
.xcd_c00130{left:158.970000px;}
.x51_c00130{left:161.565000px;}
.xce_c00130{left:183.165000px;}
.xc4_c00130{left:192.675000px;}
.x40_c00130{left:197.850000px;}
.xc0_c00130{left:199.590000px;}
.x38_c00130{left:201.315000px;}
.x64_c00130{left:203.040000px;}
.x4b_c00130{left:206.490000px;}
.x30_c00130{left:209.085000px;}
.x92_c00130{left:210.810000px;}
.x6a_c00130{left:212.550000px;}
.x97_c00130{left:215.129475px;}
.xab_c00130{left:216.870000px;}
.x52_c00130{left:220.320000px;}
.x71_c00130{left:222.915000px;}
.x57_c00130{left:224.640000px;}
.x81_c00130{left:226.365000px;}
.x41_c00130{left:228.960000px;}
.x90_c00130{left:230.685000px;}
.xe_c00130{left:232.410000px;}
.x5f_c00130{left:235.005000px;}
.x39_c00130{left:237.600000px;}
.x4c_c00130{left:239.325000px;}
.x7c_c00130{left:241.050000px;}
.x7_c00130{left:242.790000px;}
.x72_c00130{left:252.285000px;}
.x31_c00130{left:259.200000px;}
.xcf_c00130{left:260.925000px;}
.x73_c00130{left:263.520000px;}
.xd2_c00130{left:265.245000px;}
.x42_c00130{left:272.160000px;}
.x8_c00130{left:279.075000px;}
.xa0_c00130{left:281.670000px;}
.x76_c00130{left:285.120000px;}
.x85_c00130{left:289.440000px;}
.x77_c00130{left:301.530000px;}
.x43_c00130{left:304.995000px;}
.x74_c00130{left:307.590000px;}
.xe7_c00130{left:311.910000px;}
.x86_c00130{left:313.635000px;}
.x1d_c00130{left:316.230000px;}
.x82_c00130{left:318.810000px;}
.xd3_c00130{left:324.000000px;}
.xdb_c00130{left:325.725000px;}
.xd4_c00130{left:327.450000px;}
.x7d_c00130{left:330.045000px;}
.x6b_c00130{left:332.640000px;}
.xec_c00130{left:335.235000px;}
.xf_c00130{left:338.685000px;}
.xe4_c00130{left:341.280000px;}
.xe0_c00130{left:343.875000px;}
.xb6_c00130{left:345.600000px;}
.xd5_c00130{left:347.325000px;}
.x10_c00130{left:352.515000px;}
.x53_c00130{left:355.110000px;}
.xd9_c00130{left:357.690000px;}
.xbe_c00130{left:359.430000px;}
.x93_c00130{left:361.155000px;}
.x1e_c00130{left:362.880000px;}
.x11_c00130{left:365.475000px;}
.x87_c00130{left:368.070000px;}
.x66_c00130{left:369.795000px;}
.x1f_c00130{left:371.520000px;}
.xa1_c00130{left:374.970000px;}
.x1_c00130{left:376.710000px;}
.x58_c00130{left:379.290000px;}
.x12_c00130{left:382.755000px;}
.x78_c00130{left:385.350000px;}
.x60_c00130{left:393.990000px;}
.xa7_c00130{left:395.715000px;}
.x20_c00130{left:397.440000px;}
.xdd_c00130{left:401.760000px;}
.x3_c00130{left:403.485000px;}
.x7e_c00130{left:406.080000px;}
.x13_c00130{left:409.530000px;}
.x67_c00130{left:411.270000px;}
.x21_c00130{left:415.590000px;}
.x88_c00130{left:417.315000px;}
.x4_c00130{left:420.765000px;}
.xac_c00130{left:423.360000px;}
.x22_c00130{left:425.955000px;}
.xd6_c00130{left:427.680000px;}
.xe5_c00130{left:431.130000px;}
.x68_c00130{left:432.870000px;}
.x4d_c00130{left:435.450000px;}
.xc1_c00130{left:437.190000px;}
.x69_c00130{left:438.915000px;}
.xad_c00130{left:444.090000px;}
.x44_c00130{left:445.830000px;}
.x89_c00130{left:448.410000px;}
.x23_c00130{left:450.150000px;}
.x83_c00130{left:452.730000px;}
.xae_c00130{left:456.195000px;}
.xcb_c00130{left:458.790000px;}
.x9_c00130{left:461.370000px;}
.x59_c00130{left:463.110000px;}
.xe8_c00130{left:465.690000px;}
.x24_c00130{left:467.430000px;}
.xd0_c00130{left:470.010000px;}
.x14_c00130{left:471.750000px;}
.x98_c00130{left:473.475000px;}
.x25_c00130{left:476.925000px;}
.xb7_c00130{left:479.520000px;}
.xbb_c00130{left:482.115000px;}
.xa_c00130{left:483.840000px;}
.x45_c00130{left:488.160000px;}
.x94_c00130{left:489.885000px;}
.x26_c00130{left:491.610000px;}
.xa8_c00130{left:494.205000px;}
.x32_c00130{left:496.800000px;}
.xe1_c00130{left:500.250000px;}
.x33_c00130{left:501.990000px;}
.xc5_c00130{left:504.570000px;}
.xb0_c00130{left:507.165000px;}
.x6c_c00130{left:509.760000px;}
.xc2_c00130{left:512.355000px;}
.xd7_c00130{left:515.805000px;}
.x5_c00130{left:517.530000px;}
.x3a_c00130{left:520.995000px;}
.x99_c00130{left:522.720000px;}
.x61_c00130{left:524.445000px;}
.xed_c00130{left:526.170000px;}
.xc6_c00130{left:529.635000px;}
.xde_c00130{left:531.360000px;}
.x15_c00130{left:533.955000px;}
.x6d_c00130{left:537.405000px;}
.x79_c00130{left:539.130000px;}
.x4e_c00130{left:541.725000px;}
.xdf_c00130{left:543.450000px;}
.x27_c00130{left:545.190000px;}
.xb1_c00130{left:547.770000px;}
.xdc_c00130{left:552.090000px;}
.xe6_c00130{left:554.685000px;}
.xa4_c00130{left:556.410000px;}
.xb2_c00130{left:559.005000px;}
.x46_c00130{left:560.730000px;}
.x65_c00130{left:564.195000px;}
.x28_c00130{left:565.920000px;}
.x9a_c00130{left:574.560000px;}
.x29_c00130{left:578.010000px;}
.xa5_c00130{left:583.200000px;}
.xe2_c00130{left:587.520000px;}
.x4f_c00130{left:590.970000px;}
.xe9_c00130{left:593.565000px;}
.xc7_c00130{left:600.480000px;}
.x2a_c00130{left:603.075000px;}
.x34_c00130{left:606.525000px;}
.xbc_c00130{left:608.250000px;}
.x16_c00130{left:610.845000px;}
.x2b_c00130{left:615.165000px;}
.xb3_c00130{left:617.760000px;}
.xe3_c00130{left:622.080000px;}
.x17_c00130{left:628.995000px;}
.xa2_c00130{left:631.590000px;}
.x8c_c00130{left:633.315000px;}
.x2c_c00130{left:635.040000px;}
.xef_c00130{left:637.635000px;}
.x8a_c00130{left:639.360000px;}
.xa6_c00130{left:644.550000px;}
.x54_c00130{left:646.275000px;}
.x7a_c00130{left:648.870000px;}
.x7f_c00130{left:651.450000px;}
.x18_c00130{left:654.045000px;}
.xb_c00130{left:657.510000px;}
.x8b_c00130{left:662.685000px;}
.x75_c00130{left:665.280000px;}
.x8d_c00130{left:667.875000px;}
.x9b_c00130{left:671.325000px;}
.xc_c00130{left:679.965000px;}
.x8e_c00130{left:685.155000px;}
.x84_c00130{left:686.880000px;}
.xbd_c00130{left:691.200000px;}
.x62_c00130{left:695.520000px;}
.xb8_c00130{left:697.245000px;}
.x35_c00130{left:699.840000px;}
.x19_c00130{left:701.565000px;}
.x36_c00130{left:705.885000px;}
.x6_c00130{left:708.480000px;}
.x7b_c00130{left:711.930000px;}
.x2_c00130{left:713.670000px;}
.x55_c00130{left:720.570000px;}
.x9c_c00130{left:722.310000px;}
.x2d_c00130{left:724.890000px;}
.xa3_c00130{left:726.630000px;}
.x80_c00130{left:730.080000px;}
.x1a_c00130{left:732.675000px;}
.x2e_c00130{left:734.400000px;}
.x63_c00130{left:741.315000px;}
.xb9_c00130{left:744.765000px;}
.xaf_c00130{left:747.360000px;}
.xcc_c00130{left:749.085000px;}
.x1b_c00130{left:750.810000px;}
.x91_c00130{left:754.275000px;}
.xb4_c00130{left:756.000000px;}
.xd_c00130{left:768.090000px;}
.xeb_c00130{left:771.555000px;}
.x47_c00130{left:774.150000px;}
.xa9_c00130{left:781.050000px;}
.x9d_c00130{left:783.645000px;}
.x37_c00130{left:787.110000px;}
.xc8_c00130{left:789.690000px;}
.x9e_c00130{left:795.750000px;}
.x6e_c00130{left:797.475000px;}
.x1c_c00130{left:799.200000px;}
.xaa_c00130{left:802.650000px;}
.xee_c00130{left:805.245000px;}
.x3b_c00130{left:809.565000px;}
.xc9_c00130{left:813.030000px;}
.xd1_c00130{left:815.610000px;}
.x5a_c00130{left:822.525000px;}
.x3c_c00130{left:826.845000px;}
.x48_c00130{left:832.035000px;}
.x56_c00130{left:833.760000px;}
.xea_c00130{left:838.950000px;}
.x2f_c00130{left:841.530000px;}
.x5b_c00130{left:844.125000px;}
.x8f_c00130{left:846.720000px;}
.x3d_c00130{left:848.445000px;}
.xb5_c00130{left:850.170000px;}
.xca_c00130{left:852.765000px;}
.x5c_c00130{left:855.360000px;}
.xba_c00130{left:859.680000px;}
.x3e_c00130{left:861.405000px;}
.xd8_c00130{left:872.640000px;}
.x5d_c00130{left:874.365000px;}
.x50_c00130{left:887.325000px;}
.x6f_c00130{left:889.050000px;}
.x5e_c00130{left:891.645000px;}
.x3f_c00130{left:895.110000px;}
.x70_c00130{left:897.690000px;}
.xbf_c00130{left:899.430000px;}
.x9f_c00130{left:903.750000px;}
.x95_c00130{left:905.475000px;}
.xda_c00130{left:908.070000px;}
.x49_c00130{left:911.520000px;}
.x96_c00130{left:919.290000px;}
.xc3_c00130{left:928.800000px;}
.x4a_c00130{left:939.165000px;}
.xf0_c00130{left:1054.950000px;}
.xf1_c00130{left:1079.130000px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws2_c00130{word-spacing:0.000000pt;}
.ws0_c00130{word-spacing:27.081468pt;}
.ws1_c00130{word-spacing:71.987710pt;}
.fs11_c00130{font-size:3.072000pt;}
.fs10_c00130{font-size:5.333333pt;}
.fs3_c00130{font-size:6.133333pt;}
.fs2_c00130{font-size:9.226667pt;}
.fs8_c00130{font-size:12.266667pt;}
.fs0_c00130{font-size:15.360000pt;}
.fsa_c00130{font-size:18.453333pt;}
.fs12_c00130{font-size:21.493333pt;}
.fs6_c00130{font-size:24.586667pt;}
.fs5_c00130{font-size:27.626667pt;}
.fs21_c00130{font-size:30.720000pt;}
.fsf_c00130{font-size:33.813333pt;}
.fse_c00130{font-size:36.853333pt;}
.fs4_c00130{font-size:39.946667pt;}
.fs23_c00130{font-size:42.986667pt;}
.fsb_c00130{font-size:46.080000pt;}
.fs26_c00130{font-size:49.173333pt;}
.fs19_c00130{font-size:52.213333pt;}
.fs16_c00130{font-size:55.306667pt;}
.fs1c_c00130{font-size:58.346667pt;}
.fsd_c00130{font-size:61.440000pt;}
.fs9_c00130{font-size:64.533333pt;}
.fs1_c00130{font-size:67.573333pt;}
.fs1d_c00130{font-size:70.666667pt;}
.fs1a_c00130{font-size:73.706667pt;}
.fs7_c00130{font-size:76.800000pt;}
.fs1b_c00130{font-size:79.893333pt;}
.fsc_c00130{font-size:82.933333pt;}
.fs15_c00130{font-size:86.026667pt;}
.fs13_c00130{font-size:89.066667pt;}
.fs1f_c00130{font-size:92.160000pt;}
.fs18_c00130{font-size:95.253333pt;}
.fs1e_c00130{font-size:98.293333pt;}
.fs20_c00130{font-size:101.386667pt;}
.fs22_c00130{font-size:104.426667pt;}
.fs17_c00130{font-size:107.520000pt;}
.fs14_c00130{font-size:110.613333pt;}
.fs24_c00130{font-size:113.653333pt;}
.fs25_c00130{font-size:122.880000pt;}
.y0_c00130{bottom:0.000000pt;}
.y162_c00130{bottom:186.626667pt;}
.y164_c00130{bottom:187.386667pt;}
.y167_c00130{bottom:189.693333pt;}
.y163_c00130{bottom:192.773333pt;}
.y165_c00130{bottom:195.840000pt;}
.y166_c00130{bottom:198.146667pt;}
.y160_c00130{bottom:198.906667pt;}
.y161_c00130{bottom:199.680000pt;}
.y15f_c00130{bottom:204.293333pt;}
.y168_c00130{bottom:208.893333pt;}
.y159_c00130{bottom:213.506667pt;}
.y15b_c00130{bottom:215.040000pt;}
.y15c_c00130{bottom:215.813333pt;}
.y15d_c00130{bottom:216.573333pt;}
.y15e_c00130{bottom:217.346667pt;}
.y15a_c00130{bottom:218.106667pt;}
.y158_c00130{bottom:232.706667pt;}
.y155_c00130{bottom:237.306667pt;}
.y151_c00130{bottom:238.080000pt;}
.y156_c00130{bottom:238.853333pt;}
.y153_c00130{bottom:239.613333pt;}
.y152_c00130{bottom:241.146667pt;}
.y157_c00130{bottom:242.693333pt;}
.y154_c00130{bottom:244.986667pt;}
.y14a_c00130{bottom:258.813333pt;}
.y14f_c00130{bottom:259.586667pt;}
.y14d_c00130{bottom:261.120000pt;}
.y14e_c00130{bottom:261.893333pt;}
.y14b_c00130{bottom:262.653333pt;}
.y14c_c00130{bottom:265.733333pt;}
.y150_c00130{bottom:268.026667pt;}
.y144_c00130{bottom:282.626667pt;}
.y146_c00130{bottom:283.386667pt;}
.y145_c00130{bottom:284.160000pt;}
.y148_c00130{bottom:285.693333pt;}
.y147_c00130{bottom:287.226667pt;}
.y149_c00130{bottom:289.533333pt;}
.y141_c00130{bottom:304.133333pt;}
.y13d_c00130{bottom:304.893333pt;}
.y143_c00130{bottom:305.666667pt;}
.y140_c00130{bottom:306.426667pt;}
.y13e_c00130{bottom:308.733333pt;}
.y142_c00130{bottom:310.266667pt;}
.y13f_c00130{bottom:312.573333pt;}
.y13c_c00130{bottom:321.026667pt;}
.y135_c00130{bottom:325.626667pt;}
.y138_c00130{bottom:327.173333pt;}
.y137_c00130{bottom:327.933333pt;}
.y13a_c00130{bottom:328.706667pt;}
.y13b_c00130{bottom:331.013333pt;}
.y136_c00130{bottom:334.853333pt;}
.y139_c00130{bottom:335.613333pt;}
.y134_c00130{bottom:336.386667pt;}
.y12f_c00130{bottom:347.906667pt;}
.y12e_c00130{bottom:349.440000pt;}
.y131_c00130{bottom:350.973333pt;}
.y132_c00130{bottom:351.746667pt;}
.y133_c00130{bottom:352.506667pt;}
.y130_c00130{bottom:355.586667pt;}
.y127_c00130{bottom:372.480000pt;}
.y12c_c00130{bottom:373.253333pt;}
.y126_c00130{bottom:374.013333pt;}
.y129_c00130{bottom:374.786667pt;}
.y12b_c00130{bottom:375.546667pt;}
.y12a_c00130{bottom:376.320000pt;}
.y125_c00130{bottom:377.093333pt;}
.y128_c00130{bottom:377.853333pt;}
.y12d_c00130{bottom:381.693333pt;}
.y120_c00130{bottom:388.613333pt;}
.y121_c00130{bottom:390.146667pt;}
.y123_c00130{bottom:390.906667pt;}
.y122_c00130{bottom:391.680000pt;}
.y124_c00130{bottom:392.453333pt;}
.y11b_c00130{bottom:417.786667pt;}
.y11e_c00130{bottom:418.560000pt;}
.y11d_c00130{bottom:421.626667pt;}
.y11c_c00130{bottom:422.400000pt;}
.y11f_c00130{bottom:425.466667pt;}
.y10f_c00130{bottom:439.293333pt;}
.y112_c00130{bottom:440.066667pt;}
.y114_c00130{bottom:440.826667pt;}
.y110_c00130{bottom:441.600000pt;}
.y119_c00130{bottom:442.373333pt;}
.y116_c00130{bottom:443.133333pt;}
.y113_c00130{bottom:444.666667pt;}
.y111_c00130{bottom:445.440000pt;}
.y115_c00130{bottom:446.973333pt;}
.y118_c00130{bottom:447.746667pt;}
.y117_c00130{bottom:448.506667pt;}
.y11a_c00130{bottom:449.280000pt;}
.y109_c00130{bottom:462.333333pt;}
.y10a_c00130{bottom:463.106667pt;}
.y10b_c00130{bottom:463.866667pt;}
.y10c_c00130{bottom:464.640000pt;}
.y108_c00130{bottom:468.480000pt;}
.y10d_c00130{bottom:470.013333pt;}
.y10e_c00130{bottom:477.693333pt;}
.y101_c00130{bottom:483.840000pt;}
.y102_c00130{bottom:485.373333pt;}
.y103_c00130{bottom:486.146667pt;}
.y104_c00130{bottom:486.906667pt;}
.y106_c00130{bottom:487.680000pt;}
.y105_c00130{bottom:490.746667pt;}
.y100_c00130{bottom:492.293333pt;}
.yff_c00130{bottom:494.586667pt;}
.yfe_c00130{bottom:499.200000pt;}
.yf7_c00130{bottom:505.346667pt;}
.yfb_c00130{bottom:506.106667pt;}
.y107_c00130{bottom:506.880000pt;}
.yfd_c00130{bottom:508.413333pt;}
.yfc_c00130{bottom:509.186667pt;}
.yf8_c00130{bottom:510.720000pt;}
.yf9_c00130{bottom:512.253333pt;}
.yfa_c00130{bottom:513.786667pt;}
.yf5_c00130{bottom:516.866667pt;}
.yf6_c00130{bottom:523.013333pt;}
.yf0_c00130{bottom:529.146667pt;}
.yf2_c00130{bottom:530.693333pt;}
.yf4_c00130{bottom:531.453333pt;}
.yf1_c00130{bottom:534.533333pt;}
.yee_c00130{bottom:536.066667pt;}
.yef_c00130{bottom:540.666667pt;}
.yf3_c00130{bottom:542.213333pt;}
.yea_c00130{bottom:550.653333pt;}
.yeb_c00130{bottom:552.186667pt;}
.yed_c00130{bottom:555.266667pt;}
.ye7_c00130{bottom:559.866667pt;}
.yec_c00130{bottom:562.173333pt;}
.ye8_c00130{bottom:564.480000pt;}
.ye9_c00130{bottom:566.786667pt;}
.ye4_c00130{bottom:573.693333pt;}
.ye5_c00130{bottom:574.466667pt;}
.ye3_c00130{bottom:575.226667pt;}
.ye6_c00130{bottom:579.066667pt;}
.ydd_c00130{bottom:595.973333pt;}
.ye0_c00130{bottom:598.266667pt;}
.yde_c00130{bottom:599.813333pt;}
.ydf_c00130{bottom:600.573333pt;}
.ye1_c00130{bottom:602.106667pt;}
.ydc_c00130{bottom:605.946667pt;}
.ye2_c00130{bottom:611.333333pt;}
.yd6_c00130{bottom:616.706667pt;}
.yd4_c00130{bottom:618.240000pt;}
.yd8_c00130{bottom:619.013333pt;}
.yd7_c00130{bottom:620.546667pt;}
.yd5_c00130{bottom:621.306667pt;}
.yda_c00130{bottom:625.146667pt;}
.yd9_c00130{bottom:625.920000pt;}
.ydb_c00130{bottom:626.693333pt;}
.yce_c00130{bottom:638.973333pt;}
.ycd_c00130{bottom:639.746667pt;}
.yd2_c00130{bottom:640.506667pt;}
.ycf_c00130{bottom:641.280000pt;}
.yd3_c00130{bottom:646.653333pt;}
.yd0_c00130{bottom:647.426667pt;}
.yd1_c00130{bottom:648.186667pt;}
.ycc_c00130{bottom:649.733333pt;}
.yc6_c00130{bottom:661.253333pt;}
.yca_c00130{bottom:662.013333pt;}
.yc7_c00130{bottom:662.786667pt;}
.ycb_c00130{bottom:663.546667pt;}
.yc9_c00130{bottom:664.320000pt;}
.yc8_c00130{bottom:668.933333pt;}
.yc5_c00130{bottom:669.693333pt;}
.yc0_c00130{bottom:683.520000pt;}
.yc1_c00130{bottom:684.293333pt;}
.yc3_c00130{bottom:685.826667pt;}
.yc2_c00130{bottom:691.200000pt;}
.yc4_c00130{bottom:692.733333pt;}
.ybf_c00130{bottom:698.880000pt;}
.yba_c00130{bottom:705.786667pt;}
.ybb_c00130{bottom:707.333333pt;}
.ybd_c00130{bottom:708.093333pt;}
.ybe_c00130{bottom:708.866667pt;}
.yb9_c00130{bottom:711.933333pt;}
.ybc_c00130{bottom:712.706667pt;}
.yad_c00130{bottom:725.760000pt;}
.yb1_c00130{bottom:726.533333pt;}
.yae_c00130{bottom:727.293333pt;}
.yb2_c00130{bottom:728.066667pt;}
.yb4_c00130{bottom:729.600000pt;}
.yb7_c00130{bottom:730.373333pt;}
.yb3_c00130{bottom:731.133333pt;}
.yac_c00130{bottom:731.906667pt;}
.yb0_c00130{bottom:732.666667pt;}
.yaf_c00130{bottom:733.440000pt;}
.yb6_c00130{bottom:735.746667pt;}
.yb5_c00130{bottom:736.506667pt;}
.yb8_c00130{bottom:737.280000pt;}
.ya7_c00130{bottom:749.573333pt;}
.yaa_c00130{bottom:751.106667pt;}
.ya5_c00130{bottom:751.866667pt;}
.ya9_c00130{bottom:753.413333pt;}
.yab_c00130{bottom:754.173333pt;}
.ya8_c00130{bottom:754.946667pt;}
.ya6_c00130{bottom:756.480000pt;}
.ya3_c00130{bottom:758.013333pt;}
.ya4_c00130{bottom:759.546667pt;}
.y9e_c00130{bottom:772.613333pt;}
.y9d_c00130{bottom:773.373333pt;}
.ya0_c00130{bottom:774.146667pt;}
.y9f_c00130{bottom:774.906667pt;}
.ya1_c00130{bottom:778.746667pt;}
.ya2_c00130{bottom:779.520000pt;}
.y99_c00130{bottom:794.880000pt;}
.y9a_c00130{bottom:796.413333pt;}
.y9c_c00130{bottom:797.186667pt;}
.y9b_c00130{bottom:797.946667pt;}
.y98_c00130{bottom:798.720000pt;}
.y97_c00130{bottom:799.493333pt;}
.y96_c00130{bottom:802.560000pt;}
.y90_c00130{bottom:811.013333pt;}
.y8f_c00130{bottom:812.546667pt;}
.y94_c00130{bottom:814.080000pt;}
.y95_c00130{bottom:814.853333pt;}
.y91_c00130{bottom:815.613333pt;}
.y8e_c00130{bottom:821.760000pt;}
.y93_c00130{bottom:822.533333pt;}
.y92_c00130{bottom:823.293333pt;}
.y84_c00130{bottom:832.506667pt;}
.y8a_c00130{bottom:833.280000pt;}
.y89_c00130{bottom:834.053333pt;}
.y8d_c00130{bottom:836.346667pt;}
.y8c_c00130{bottom:837.893333pt;}
.y87_c00130{bottom:840.960000pt;}
.y88_c00130{bottom:841.733333pt;}
.y8b_c00130{bottom:844.026667pt;}
.y86_c00130{bottom:844.800000pt;}
.y85_c00130{bottom:851.706667pt;}
.y80_c00130{bottom:860.933333pt;}
.y82_c00130{bottom:861.693333pt;}
.y83_c00130{bottom:862.466667pt;}
.y81_c00130{bottom:876.293333pt;}
.y7b_c00130{bottom:879.360000pt;}
.y7c_c00130{bottom:880.133333pt;}
.y7d_c00130{bottom:880.893333pt;}
.y7e_c00130{bottom:881.666667pt;}
.y7a_c00130{bottom:882.426667pt;}
.y7f_c00130{bottom:883.200000pt;}
.y79_c00130{bottom:900.093333pt;}
.y76_c00130{bottom:906.240000pt;}
.y77_c00130{bottom:907.773333pt;}
.y75_c00130{bottom:908.546667pt;}
.y78_c00130{bottom:909.306667pt;}
.y74_c00130{bottom:910.080000pt;}
.y6e_c00130{bottom:930.053333pt;}
.y6b_c00130{bottom:930.813333pt;}
.y6c_c00130{bottom:931.586667pt;}
.y6f_c00130{bottom:932.346667pt;}
.y71_c00130{bottom:933.120000pt;}
.y6d_c00130{bottom:933.893333pt;}
.y72_c00130{bottom:936.186667pt;}
.y70_c00130{bottom:936.960000pt;}
.y73_c00130{bottom:938.493333pt;}
.y68_c00130{bottom:949.253333pt;}
.y69_c00130{bottom:950.013333pt;}
.y6a_c00130{bottom:952.320000pt;}
.y67_c00130{bottom:953.093333pt;}
.y66_c00130{bottom:963.066667pt;}
.y5f_c00130{bottom:971.520000pt;}
.y60_c00130{bottom:972.293333pt;}
.y65_c00130{bottom:973.053333pt;}
.y61_c00130{bottom:973.826667pt;}
.y62_c00130{bottom:976.893333pt;}
.y63_c00130{bottom:979.973333pt;}
.y64_c00130{bottom:982.266667pt;}
.y5a_c00130{bottom:994.560000pt;}
.y59_c00130{bottom:996.093333pt;}
.y5e_c00130{bottom:996.866667pt;}
.y5d_c00130{bottom:997.626667pt;}
.y5b_c00130{bottom:999.933333pt;}
.y169_c00130{bottom:1000.706667pt;}
.y5c_c00130{bottom:1001.466667pt;}
.y56_c00130{bottom:1016.826667pt;}
.y57_c00130{bottom:1018.373333pt;}
.y58_c00130{bottom:1022.973333pt;}
.y54_c00130{bottom:1024.506667pt;}
.y55_c00130{bottom:1031.426667pt;}
.y53_c00130{bottom:1032.960000pt;}
.y4d_c00130{bottom:1038.333333pt;}
.y4e_c00130{bottom:1039.866667pt;}
.y4f_c00130{bottom:1041.413333pt;}
.y51_c00130{bottom:1043.706667pt;}
.y50_c00130{bottom:1046.013333pt;}
.y52_c00130{bottom:1046.786667pt;}
.y4c_c00130{bottom:1047.546667pt;}
.y45_c00130{bottom:1059.840000pt;}
.y47_c00130{bottom:1060.613333pt;}
.y46_c00130{bottom:1062.146667pt;}
.y44_c00130{bottom:1062.906667pt;}
.y48_c00130{bottom:1063.680000pt;}
.y4b_c00130{bottom:1064.453333pt;}
.y49_c00130{bottom:1066.746667pt;}
.y43_c00130{bottom:1069.053333pt;}
.y4a_c00130{bottom:1075.200000pt;}
.y40_c00130{bottom:1083.653333pt;}
.y3f_c00130{bottom:1084.413333pt;}
.y41_c00130{bottom:1085.946667pt;}
.y42_c00130{bottom:1086.720000pt;}
.y3e_c00130{bottom:1088.253333pt;}
.y3c_c00130{bottom:1106.693333pt;}
.y3d_c00130{bottom:1107.453333pt;}
.y3a_c00130{bottom:1113.600000pt;}
.y3b_c00130{bottom:1118.213333pt;}
.y35_c00130{bottom:1125.893333pt;}
.y38_c00130{bottom:1127.426667pt;}
.y37_c00130{bottom:1128.960000pt;}
.y36_c00130{bottom:1133.573333pt;}
.y39_c00130{bottom:1137.413333pt;}
.y34_c00130{bottom:1148.160000pt;}
.y2c_c00130{bottom:1151.226667pt;}
.y31_c00130{bottom:1152.000000pt;}
.y30_c00130{bottom:1153.533333pt;}
.y2f_c00130{bottom:1155.066667pt;}
.y2d_c00130{bottom:1157.373333pt;}
.y2e_c00130{bottom:1158.146667pt;}
.y2a_c00130{bottom:1161.986667pt;}
.y32_c00130{bottom:1165.826667pt;}
.y33_c00130{bottom:1169.666667pt;}
.y2b_c00130{bottom:1170.426667pt;}
.y24_c00130{bottom:1172.733333pt;}
.y26_c00130{bottom:1173.506667pt;}
.y25_c00130{bottom:1174.266667pt;}
.y28_c00130{bottom:1179.653333pt;}
.y29_c00130{bottom:1180.413333pt;}
.y27_c00130{bottom:1182.720000pt;}
.y23_c00130{bottom:1187.333333pt;}
.y1e_c00130{bottom:1196.546667pt;}
.y1f_c00130{bottom:1198.080000pt;}
.y1c_c00130{bottom:1199.613333pt;}
.y1d_c00130{bottom:1200.386667pt;}
.y21_c00130{bottom:1201.920000pt;}
.y20_c00130{bottom:1202.693333pt;}
.y22_c00130{bottom:1203.453333pt;}
.y18_c00130{bottom:1224.186667pt;}
.y19_c00130{bottom:1224.960000pt;}
.y1b_c00130{bottom:1225.733333pt;}
.yc_c00130{bottom:1228.026667pt;}
.y1a_c00130{bottom:1228.800000pt;}
.y11_c00130{bottom:1229.573333pt;}
.y10_c00130{bottom:1230.333333pt;}
.y12_c00130{bottom:1231.106667pt;}
.y13_c00130{bottom:1231.866667pt;}
.y15_c00130{bottom:1232.640000pt;}
.ye_c00130{bottom:1233.413333pt;}
.yf_c00130{bottom:1234.173333pt;}
.y14_c00130{bottom:1234.946667pt;}
.y16_c00130{bottom:1235.706667pt;}
.y17_c00130{bottom:1238.013333pt;}
.yd_c00130{bottom:1241.853333pt;}
.ya_c00130{bottom:1252.613333pt;}
.y8_c00130{bottom:1253.373333pt;}
.y6_c00130{bottom:1254.906667pt;}
.yb_c00130{bottom:1255.680000pt;}
.y7_c00130{bottom:1263.360000pt;}
.y9_c00130{bottom:1264.133333pt;}
.y3_c00130{bottom:1274.106667pt;}
.y4_c00130{bottom:1275.653333pt;}
.y5_c00130{bottom:1281.026667pt;}
.y1_c00130{bottom:1281.786667pt;}
.y2_c00130{bottom:1284.866667pt;}
.h13_c00130{height:2.764500pt;}
.h12_c00130{height:4.799479pt;}
.h5_c00130{height:5.519401pt;}
.h4_c00130{height:8.303099pt;}
.ha_c00130{height:11.038802pt;}
.h2_c00130{height:13.822500pt;}
.hc_c00130{height:16.606198pt;}
.h14_c00130{height:19.341901pt;}
.h8_c00130{height:22.125599pt;}
.h7_c00130{height:24.861302pt;}
.h23_c00130{height:27.645000pt;}
.h11_c00130{height:30.428698pt;}
.h10_c00130{height:33.164401pt;}
.h6_c00130{height:35.948099pt;}
.h25_c00130{height:38.683802pt;}
.hd_c00130{height:41.467500pt;}
.h28_c00130{height:44.251198pt;}
.h1b_c00130{height:46.986901pt;}
.h18_c00130{height:49.770599pt;}
.h1e_c00130{height:52.506302pt;}
.hf_c00130{height:55.290000pt;}
.hb_c00130{height:58.073698pt;}
.h3_c00130{height:60.809401pt;}
.h1f_c00130{height:63.593099pt;}
.h1c_c00130{height:66.328802pt;}
.h9_c00130{height:69.112500pt;}
.h1d_c00130{height:71.896198pt;}
.he_c00130{height:74.631901pt;}
.h17_c00130{height:77.415599pt;}
.h15_c00130{height:80.151302pt;}
.h21_c00130{height:82.935000pt;}
.h1a_c00130{height:85.718698pt;}
.h20_c00130{height:88.454401pt;}
.h22_c00130{height:91.238099pt;}
.h24_c00130{height:93.973802pt;}
.h19_c00130{height:96.757500pt;}
.h16_c00130{height:99.541198pt;}
.h26_c00130{height:102.276901pt;}
.h27_c00130{height:110.580000pt;}
.h0_c00130{height:1348.613333pt;}
.h1_c00130{height:1348.666667pt;}
.w0_c00130{width:969.213333pt;}
.w1_c00130{width:969.333333pt;}
.x0_c00130{left:0.000000pt;}
.xcd_c00130{left:141.306667pt;}
.x51_c00130{left:143.613333pt;}
.xce_c00130{left:162.813333pt;}
.xc4_c00130{left:171.266667pt;}
.x40_c00130{left:175.866667pt;}
.xc0_c00130{left:177.413333pt;}
.x38_c00130{left:178.946667pt;}
.x64_c00130{left:180.480000pt;}
.x4b_c00130{left:183.546667pt;}
.x30_c00130{left:185.853333pt;}
.x92_c00130{left:187.386667pt;}
.x6a_c00130{left:188.933333pt;}
.x97_c00130{left:191.226200pt;}
.xab_c00130{left:192.773333pt;}
.x52_c00130{left:195.840000pt;}
.x71_c00130{left:198.146667pt;}
.x57_c00130{left:199.680000pt;}
.x81_c00130{left:201.213333pt;}
.x41_c00130{left:203.520000pt;}
.x90_c00130{left:205.053333pt;}
.xe_c00130{left:206.586667pt;}
.x5f_c00130{left:208.893333pt;}
.x39_c00130{left:211.200000pt;}
.x4c_c00130{left:212.733333pt;}
.x7c_c00130{left:214.266667pt;}
.x7_c00130{left:215.813333pt;}
.x72_c00130{left:224.253333pt;}
.x31_c00130{left:230.400000pt;}
.xcf_c00130{left:231.933333pt;}
.x73_c00130{left:234.240000pt;}
.xd2_c00130{left:235.773333pt;}
.x42_c00130{left:241.920000pt;}
.x8_c00130{left:248.066667pt;}
.xa0_c00130{left:250.373333pt;}
.x76_c00130{left:253.440000pt;}
.x85_c00130{left:257.280000pt;}
.x77_c00130{left:268.026667pt;}
.x43_c00130{left:271.106667pt;}
.x74_c00130{left:273.413333pt;}
.xe7_c00130{left:277.253333pt;}
.x86_c00130{left:278.786667pt;}
.x1d_c00130{left:281.093333pt;}
.x82_c00130{left:283.386667pt;}
.xd3_c00130{left:288.000000pt;}
.xdb_c00130{left:289.533333pt;}
.xd4_c00130{left:291.066667pt;}
.x7d_c00130{left:293.373333pt;}
.x6b_c00130{left:295.680000pt;}
.xec_c00130{left:297.986667pt;}
.xf_c00130{left:301.053333pt;}
.xe4_c00130{left:303.360000pt;}
.xe0_c00130{left:305.666667pt;}
.xb6_c00130{left:307.200000pt;}
.xd5_c00130{left:308.733333pt;}
.x10_c00130{left:313.346667pt;}
.x53_c00130{left:315.653333pt;}
.xd9_c00130{left:317.946667pt;}
.xbe_c00130{left:319.493333pt;}
.x93_c00130{left:321.026667pt;}
.x1e_c00130{left:322.560000pt;}
.x11_c00130{left:324.866667pt;}
.x87_c00130{left:327.173333pt;}
.x66_c00130{left:328.706667pt;}
.x1f_c00130{left:330.240000pt;}
.xa1_c00130{left:333.306667pt;}
.x1_c00130{left:334.853333pt;}
.x58_c00130{left:337.146667pt;}
.x12_c00130{left:340.226667pt;}
.x78_c00130{left:342.533333pt;}
.x60_c00130{left:350.213333pt;}
.xa7_c00130{left:351.746667pt;}
.x20_c00130{left:353.280000pt;}
.xdd_c00130{left:357.120000pt;}
.x3_c00130{left:358.653333pt;}
.x7e_c00130{left:360.960000pt;}
.x13_c00130{left:364.026667pt;}
.x67_c00130{left:365.573333pt;}
.x21_c00130{left:369.413333pt;}
.x88_c00130{left:370.946667pt;}
.x4_c00130{left:374.013333pt;}
.xac_c00130{left:376.320000pt;}
.x22_c00130{left:378.626667pt;}
.xd6_c00130{left:380.160000pt;}
.xe5_c00130{left:383.226667pt;}
.x68_c00130{left:384.773333pt;}
.x4d_c00130{left:387.066667pt;}
.xc1_c00130{left:388.613333pt;}
.x69_c00130{left:390.146667pt;}
.xad_c00130{left:394.746667pt;}
.x44_c00130{left:396.293333pt;}
.x89_c00130{left:398.586667pt;}
.x23_c00130{left:400.133333pt;}
.x83_c00130{left:402.426667pt;}
.xae_c00130{left:405.506667pt;}
.xcb_c00130{left:407.813333pt;}
.x9_c00130{left:410.106667pt;}
.x59_c00130{left:411.653333pt;}
.xe8_c00130{left:413.946667pt;}
.x24_c00130{left:415.493333pt;}
.xd0_c00130{left:417.786667pt;}
.x14_c00130{left:419.333333pt;}
.x98_c00130{left:420.866667pt;}
.x25_c00130{left:423.933333pt;}
.xb7_c00130{left:426.240000pt;}
.xbb_c00130{left:428.546667pt;}
.xa_c00130{left:430.080000pt;}
.x45_c00130{left:433.920000pt;}
.x94_c00130{left:435.453333pt;}
.x26_c00130{left:436.986667pt;}
.xa8_c00130{left:439.293333pt;}
.x32_c00130{left:441.600000pt;}
.xe1_c00130{left:444.666667pt;}
.x33_c00130{left:446.213333pt;}
.xc5_c00130{left:448.506667pt;}
.xb0_c00130{left:450.813333pt;}
.x6c_c00130{left:453.120000pt;}
.xc2_c00130{left:455.426667pt;}
.xd7_c00130{left:458.493333pt;}
.x5_c00130{left:460.026667pt;}
.x3a_c00130{left:463.106667pt;}
.x99_c00130{left:464.640000pt;}
.x61_c00130{left:466.173333pt;}
.xed_c00130{left:467.706667pt;}
.xc6_c00130{left:470.786667pt;}
.xde_c00130{left:472.320000pt;}
.x15_c00130{left:474.626667pt;}
.x6d_c00130{left:477.693333pt;}
.x79_c00130{left:479.226667pt;}
.x4e_c00130{left:481.533333pt;}
.xdf_c00130{left:483.066667pt;}
.x27_c00130{left:484.613333pt;}
.xb1_c00130{left:486.906667pt;}
.xdc_c00130{left:490.746667pt;}
.xe6_c00130{left:493.053333pt;}
.xa4_c00130{left:494.586667pt;}
.xb2_c00130{left:496.893333pt;}
.x46_c00130{left:498.426667pt;}
.x65_c00130{left:501.506667pt;}
.x28_c00130{left:503.040000pt;}
.x9a_c00130{left:510.720000pt;}
.x29_c00130{left:513.786667pt;}
.xa5_c00130{left:518.400000pt;}
.xe2_c00130{left:522.240000pt;}
.x4f_c00130{left:525.306667pt;}
.xe9_c00130{left:527.613333pt;}
.xc7_c00130{left:533.760000pt;}
.x2a_c00130{left:536.066667pt;}
.x34_c00130{left:539.133333pt;}
.xbc_c00130{left:540.666667pt;}
.x16_c00130{left:542.973333pt;}
.x2b_c00130{left:546.813333pt;}
.xb3_c00130{left:549.120000pt;}
.xe3_c00130{left:552.960000pt;}
.x17_c00130{left:559.106667pt;}
.xa2_c00130{left:561.413333pt;}
.x8c_c00130{left:562.946667pt;}
.x2c_c00130{left:564.480000pt;}
.xef_c00130{left:566.786667pt;}
.x8a_c00130{left:568.320000pt;}
.xa6_c00130{left:572.933333pt;}
.x54_c00130{left:574.466667pt;}
.x7a_c00130{left:576.773333pt;}
.x7f_c00130{left:579.066667pt;}
.x18_c00130{left:581.373333pt;}
.xb_c00130{left:584.453333pt;}
.x8b_c00130{left:589.053333pt;}
.x75_c00130{left:591.360000pt;}
.x8d_c00130{left:593.666667pt;}
.x9b_c00130{left:596.733333pt;}
.xc_c00130{left:604.413333pt;}
.x8e_c00130{left:609.026667pt;}
.x84_c00130{left:610.560000pt;}
.xbd_c00130{left:614.400000pt;}
.x62_c00130{left:618.240000pt;}
.xb8_c00130{left:619.773333pt;}
.x35_c00130{left:622.080000pt;}
.x19_c00130{left:623.613333pt;}
.x36_c00130{left:627.453333pt;}
.x6_c00130{left:629.760000pt;}
.x7b_c00130{left:632.826667pt;}
.x2_c00130{left:634.373333pt;}
.x55_c00130{left:640.506667pt;}
.x9c_c00130{left:642.053333pt;}
.x2d_c00130{left:644.346667pt;}
.xa3_c00130{left:645.893333pt;}
.x80_c00130{left:648.960000pt;}
.x1a_c00130{left:651.266667pt;}
.x2e_c00130{left:652.800000pt;}
.x63_c00130{left:658.946667pt;}
.xb9_c00130{left:662.013333pt;}
.xaf_c00130{left:664.320000pt;}
.xcc_c00130{left:665.853333pt;}
.x1b_c00130{left:667.386667pt;}
.x91_c00130{left:670.466667pt;}
.xb4_c00130{left:672.000000pt;}
.xd_c00130{left:682.746667pt;}
.xeb_c00130{left:685.826667pt;}
.x47_c00130{left:688.133333pt;}
.xa9_c00130{left:694.266667pt;}
.x9d_c00130{left:696.573333pt;}
.x37_c00130{left:699.653333pt;}
.xc8_c00130{left:701.946667pt;}
.x9e_c00130{left:707.333333pt;}
.x6e_c00130{left:708.866667pt;}
.x1c_c00130{left:710.400000pt;}
.xaa_c00130{left:713.466667pt;}
.xee_c00130{left:715.773333pt;}
.x3b_c00130{left:719.613333pt;}
.xc9_c00130{left:722.693333pt;}
.xd1_c00130{left:724.986667pt;}
.x5a_c00130{left:731.133333pt;}
.x3c_c00130{left:734.973333pt;}
.x48_c00130{left:739.586667pt;}
.x56_c00130{left:741.120000pt;}
.xea_c00130{left:745.733333pt;}
.x2f_c00130{left:748.026667pt;}
.x5b_c00130{left:750.333333pt;}
.x8f_c00130{left:752.640000pt;}
.x3d_c00130{left:754.173333pt;}
.xb5_c00130{left:755.706667pt;}
.xca_c00130{left:758.013333pt;}
.x5c_c00130{left:760.320000pt;}
.xba_c00130{left:764.160000pt;}
.x3e_c00130{left:765.693333pt;}
.xd8_c00130{left:775.680000pt;}
.x5d_c00130{left:777.213333pt;}
.x50_c00130{left:788.733333pt;}
.x6f_c00130{left:790.266667pt;}
.x5e_c00130{left:792.573333pt;}
.x3f_c00130{left:795.653333pt;}
.x70_c00130{left:797.946667pt;}
.xbf_c00130{left:799.493333pt;}
.x9f_c00130{left:803.333333pt;}
.x95_c00130{left:804.866667pt;}
.xda_c00130{left:807.173333pt;}
.x49_c00130{left:810.240000pt;}
.x96_c00130{left:817.146667pt;}
.xc3_c00130{left:825.600000pt;}
.x4a_c00130{left:834.813333pt;}
.xf0_c00130{left:937.733333pt;}
.xf1_c00130{left:959.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_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_40aeef5027511deb3eb36ba8.woff2')format("woff");}.ff1_c00131{font-family:ff1_c00131;line-height:1.109863;font-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_c00131{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m15a_c00131{transform:matrix(0.048950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048950,0.000000,0.000000,0.250000,0,0);}
.m15e_c00131{transform:matrix(0.074050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074050,0.000000,0.000000,0.250000,0,0);}
.m19_c00131{transform:matrix(0.074975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074975,0.000000,0.000000,0.250000,0,0);}
.m13b_c00131{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);}
.m25_c00131{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m85_c00131{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.mf6_c00131{transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);}
.m160_c00131{transform:matrix(0.106000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106000,0.000000,0.000000,0.250000,0,0);}
.m15c_c00131{transform:matrix(0.108850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108850,0.000000,0.000000,0.250000,0,0);}
.mf5_c00131{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00131{transform:matrix(0.112425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112425,0.000000,0.000000,0.250000,0,0);}
.m148_c00131{transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);}
.m161_c00131{transform:matrix(0.118550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118550,0.000000,0.000000,0.250000,0,0);}
.m18_c00131{transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00131{transform:matrix(0.119625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119625,0.000000,0.000000,0.250000,0,0);}
.mdb_c00131{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00131{transform:matrix(0.120300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120300,0.000000,0.000000,0.250000,0,0);}
.m49_c00131{transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00131{transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);}
.m14e_c00131{transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);}
.m45_c00131{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.m13e_c00131{transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);}
.md9_c00131{transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);}
.m14f_c00131{transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);}
.m7a_c00131{transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);}
.m11f_c00131{transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);}
.m159_c00131{transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);}
.m37_c00131{transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);}
.m96_c00131{transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);}
.m13c_c00131{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);}
.m84_c00131{transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);}
.mf3_c00131{transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);}
.m11d_c00131{transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);}
.m140_c00131{transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);}
.mae_c00131{transform:matrix(0.140975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140975,0.000000,0.000000,0.250000,0,0);}
.m15d_c00131{transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);}
.m33_c00131{transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);}
.m11_c00131{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);}
.mfb_c00131{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.m70_c00131{transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);}
.mea_c00131{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.m77_c00131{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.m2_c00131{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m158_c00131{transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);}
.m143_c00131{transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);}
.m142_c00131{transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);}
.m75_c00131{transform:matrix(0.145050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145050,0.000000,0.000000,0.250000,0,0);}
.m52_c00131{transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);}
.m78_c00131{transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);}
.m109_c00131{transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);}
.m54_c00131{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m23_c00131{transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);}
.m5b_c00131{transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);}
.m13f_c00131{transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);}
.m135_c00131{transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);}
.m146_c00131{transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);}
.m147_c00131{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);}
.m10d_c00131{transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);}
.m43_c00131{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.maa_c00131{transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);}
.mac_c00131{transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);}
.mf9_c00131{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.m149_c00131{transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);}
.m57_c00131{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.m120_c00131{transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);}
.m128_c00131{transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);}
.mb2_c00131{transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);}
.mad_c00131{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);}
.mb0_c00131{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m14d_c00131{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);}
.m2c_c00131{transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);}
.ma2_c00131{transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);}
.m62_c00131{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.m162_c00131{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m4a_c00131{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.m10f_c00131{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m137_c00131{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);}
.m7c_c00131{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.m11b_c00131{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);}
.m8c_c00131{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);}
.m2b_c00131{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);}
.m44_c00131{transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);}
.mff_c00131{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m32_c00131{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00131{transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);}
.m46_c00131{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.m11e_c00131{transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);}
.m59_c00131{transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);}
.m151_c00131{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00131{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);}
.m108_c00131{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.m81_c00131{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);}
.m14a_c00131{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.mbe_c00131{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m13a_c00131{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.m150_c00131{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m113_c00131{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m24_c00131{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);}
.mee_c00131{transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);}
.m10a_c00131{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);}
.m133_c00131{transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);}
.m8a_c00131{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.me5_c00131{transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);}
.m136_c00131{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.mbb_c00131{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.mf4_c00131{transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);}
.m7b_c00131{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);}
.m31_c00131{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m131_c00131{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.mb5_c00131{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m115_c00131{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.mab_c00131{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.mbc_c00131{transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);}
.m50_c00131{transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);}
.m8f_c00131{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);}
.m139_c00131{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m14c_c00131{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);}
.m9f_c00131{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m66_c00131{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);}
.mf_c00131{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.mdc_c00131{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.mb9_c00131{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.m112_c00131{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m110_c00131{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);}
.maf_c00131{transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);}
.m53_c00131{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);}
.mc4_c00131{transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);}
.m74_c00131{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.md0_c00131{transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);}
.m71_c00131{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.m12f_c00131{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.mdd_c00131{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m130_c00131{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);}
.mc2_c00131{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.mca_c00131{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.mcf_c00131{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m116_c00131{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);}
.m76_c00131{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m14_c00131{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m163_c00131{transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);}
.m1b_c00131{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m47_c00131{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.mf7_c00131{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.mdf_c00131{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m138_c00131{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);}
.m94_c00131{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);}
.mba_c00131{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.mce_c00131{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m10e_c00131{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m60_c00131{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.mb4_c00131{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);}
.md1_c00131{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);}
.mc5_c00131{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.mf8_c00131{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m114_c00131{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m7f_c00131{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);}
.m13d_c00131{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);}
.md5_c00131{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);}
.ma8_c00131{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00131{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m11a_c00131{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);}
.mc8_c00131{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);}
.mb1_c00131{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);}
.mc7_c00131{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);}
.m1a_c00131{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.mfa_c00131{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.md4_c00131{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);}
.m8b_c00131{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00131{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.mcc_c00131{transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);}
.m152_c00131{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.m21_c00131{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m14b_c00131{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);}
.me8_c00131{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);}
.m51_c00131{transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);}
.m69_c00131{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m58_c00131{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00131{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.me6_c00131{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.ma6_c00131{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);}
.m7e_c00131{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);}
.m4e_c00131{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m12e_c00131{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m0_c00131{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.md7_c00131{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);}
.m9b_c00131{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m157_c00131{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.me3_c00131{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m95_c00131{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);}
.m89_c00131{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);}
.mbf_c00131{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);}
.mde_c00131{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);}
.m64_c00131{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.ma9_c00131{transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);}
.ma4_c00131{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);}
.m42_c00131{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);}
.m12c_c00131{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);}
.m122_c00131{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);}
.m65_c00131{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m90_c00131{transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);}
.mb3_c00131{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.m82_c00131{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);}
.m6a_c00131{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);}
.mfc_c00131{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.m156_c00131{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);}
.mc0_c00131{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);}
.m13_c00131{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);}
.mf1_c00131{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);}
.m93_c00131{transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);}
.ma0_c00131{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00131{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);}
.m1d_c00131{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);}
.m117_c00131{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.m11c_c00131{transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);}
.mb8_c00131{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);}
.m6f_c00131{transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);}
.me9_c00131{transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);}
.mc1_c00131{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m119_c00131{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);}
.md8_c00131{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);}
.m144_c00131{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m73_c00131{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.m83_c00131{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m5d_c00131{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);}
.m7d_c00131{transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);}
.m56_c00131{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);}
.ma5_c00131{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);}
.m6b_c00131{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);}
.m12d_c00131{transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);}
.m12b_c00131{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_c00131{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);}
.m5f_c00131{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m145_c00131{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);}
.m86_c00131{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);}
.m154_c00131{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.m132_c00131{transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);}
.m6e_c00131{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);}
.m104_c00131{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m12_c00131{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);}
.m106_c00131{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1_c00131{transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);}
.m27_c00131{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);}
.m12a_c00131{transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);}
.mec_c00131{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);}
.me_c00131{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.md6_c00131{transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);}
.md_c00131{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);}
.m118_c00131{transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);}
.md3_c00131{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);}
.m72_c00131{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);}
.m98_c00131{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);}
.me2_c00131{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.mb6_c00131{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m29_c00131{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);}
.m6c_c00131{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);}
.m36_c00131{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00131{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);}
.md2_c00131{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);}
.mcd_c00131{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);}
.m34_c00131{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m17_c00131{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);}
.m9c_c00131{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);}
.m129_c00131{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);}
.m99_c00131{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);}
.m92_c00131{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.med_c00131{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m91_c00131{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c00131{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);}
.m3a_c00131{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00131{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);}
.m1c_c00131{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);}
.m26_c00131{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00131{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);}
.m5_c00131{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m155_c00131{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m35_c00131{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m10_c00131{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);}
.m68_c00131{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);}
.m20_c00131{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00131{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00131{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);}
.ma1_c00131{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00131{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00131{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);}
.m80_c00131{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m88_c00131{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00131{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m41_c00131{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00131{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00131{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c00131{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m28_c00131{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);}
.m3c_c00131{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00131{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m40_c00131{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m22_c00131{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m97_c00131{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);}
.m4d_c00131{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.me0_c00131{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m67_c00131{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);}
.mda_c00131{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mef_c00131{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.ma_c00131{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00131{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);}
.m63_c00131{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00131{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc_c00131{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00131{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00131{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m87_c00131{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m15_c00131{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00131{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m9_c00131{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m30_c00131{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);}
.m1e_c00131{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);}
.m39_c00131{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m61_c00131{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00131{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);}
.m6d_c00131{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3_c00131{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00131{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00131{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);}
.m126_c00131{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4_c00131{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00131{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.me7_c00131{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m134_c00131{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m48_c00131{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);}
.me1_c00131{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00131{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m79_c00131{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m55_c00131{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m103_c00131{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);}
.m8e_c00131{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m7_c00131{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m111_c00131{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00131{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);}
.m141_c00131{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m153_c00131{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m8_c00131{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.me4_c00131{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m125_c00131{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.m15f_c00131{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m101_c00131{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);}
.m127_c00131{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m105_c00131{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.meb_c00131{transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);}
.m15b_c00131{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m121_c00131{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m100_c00131{transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00131{transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);}
.m124_c00131{transform:matrix(1.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.222500,0.000000,0.000000,0.250000,0,0);}
.m123_c00131{transform:matrix(1.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.237500,0.000000,0.000000,0.250000,0,0);}
.m102_c00131{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m107_c00131{transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.760000,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;}
.fs2_c00131{font-size:3.456000px;}
.fs21_c00131{font-size:6.000000px;}
.fs3_c00131{font-size:6.900000px;}
.fs5_c00131{font-size:10.380000px;}
.fs4_c00131{font-size:13.800000px;}
.fs1_c00131{font-size:17.280000px;}
.fs1f_c00131{font-size:20.760000px;}
.fs1c_c00131{font-size:24.180000px;}
.fs24_c00131{font-size:27.660000px;}
.fs23_c00131{font-size:31.080000px;}
.fs1d_c00131{font-size:34.560000px;}
.fs1b_c00131{font-size:38.040000px;}
.fs16_c00131{font-size:41.460000px;}
.fs22_c00131{font-size:44.940000px;}
.fs17_c00131{font-size:48.360000px;}
.fsa_c00131{font-size:51.840000px;}
.fs11_c00131{font-size:55.320000px;}
.fs7_c00131{font-size:58.740000px;}
.fs0_c00131{font-size:62.220000px;}
.fs8_c00131{font-size:65.640000px;}
.fs6_c00131{font-size:69.120000px;}
.fsd_c00131{font-size:72.600000px;}
.fs9_c00131{font-size:76.020000px;}
.fs18_c00131{font-size:79.500000px;}
.fsb_c00131{font-size:82.920000px;}
.fsf_c00131{font-size:86.400000px;}
.fs19_c00131{font-size:89.880000px;}
.fs15_c00131{font-size:93.300000px;}
.fs12_c00131{font-size:96.780000px;}
.fs10_c00131{font-size:100.200000px;}
.fs14_c00131{font-size:103.680000px;}
.fs13_c00131{font-size:107.160000px;}
.fs1a_c00131{font-size:110.580000px;}
.fsc_c00131{font-size:114.060000px;}
.fs25_c00131{font-size:117.480000px;}
.fs20_c00131{font-size:120.960000px;}
.fse_c00131{font-size:124.440000px;}
.fs1e_c00131{font-size:131.340000px;}
.y0_c00131{bottom:0.000000px;}
.y14d_c00131{bottom:103.680000px;}
.y14e_c00131{bottom:104.550000px;}
.y14c_c00131{bottom:107.130000px;}
.y14f_c00131{bottom:110.595000px;}
.y14b_c00131{bottom:114.045000px;}
.y14a_c00131{bottom:116.640000px;}
.y148_c00131{bottom:432.000000px;}
.y147_c00131{bottom:434.595000px;}
.y146_c00131{bottom:436.320000px;}
.y141_c00131{bottom:438.045000px;}
.y142_c00131{bottom:442.365000px;}
.y140_c00131{bottom:443.235000px;}
.y144_c00131{bottom:444.960000px;}
.y145_c00131{bottom:447.555000px;}
.y149_c00131{bottom:448.410000px;}
.y139_c00131{bottom:450.150000px;}
.y143_c00131{bottom:454.470000px;}
.y13a_c00131{bottom:457.920000px;}
.y13c_c00131{bottom:458.790000px;}
.y13b_c00131{bottom:459.645000px;}
.y13d_c00131{bottom:460.515000px;}
.y13f_c00131{bottom:462.240000px;}
.y5_c00131{bottom:464.835000px;}
.y6_c00131{bottom:466.560000px;}
.y13e_c00131{bottom:468.285000px;}
.y134_c00131{bottom:476.070000px;}
.y138_c00131{bottom:476.925000px;}
.y132_c00131{bottom:477.795000px;}
.y133_c00131{bottom:478.650000px;}
.y137_c00131{bottom:480.390000px;}
.y135_c00131{bottom:482.970000px;}
.y136_c00131{bottom:485.565000px;}
.y130_c00131{bottom:502.845000px;}
.y12b_c00131{bottom:503.715000px;}
.y12d_c00131{bottom:504.570000px;}
.y12e_c00131{bottom:505.440000px;}
.y12a_c00131{bottom:506.310000px;}
.y129_c00131{bottom:507.165000px;}
.y12f_c00131{bottom:508.035000px;}
.y12c_c00131{bottom:508.890000px;}
.y131_c00131{bottom:511.485000px;}
.y123_c00131{bottom:524.445000px;}
.y125_c00131{bottom:526.170000px;}
.y124_c00131{bottom:527.040000px;}
.y128_c00131{bottom:529.635000px;}
.y126_c00131{bottom:534.810000px;}
.y127_c00131{bottom:540.870000px;}
.y11b_c00131{bottom:551.235000px;}
.y11d_c00131{bottom:552.090000px;}
.y11e_c00131{bottom:552.960000px;}
.y11c_c00131{bottom:553.830000px;}
.y120_c00131{bottom:555.555000px;}
.y122_c00131{bottom:556.410000px;}
.y11f_c00131{bottom:558.150000px;}
.y121_c00131{bottom:559.005000px;}
.y11a_c00131{bottom:559.875000px;}
.y114_c00131{bottom:563.325000px;}
.y119_c00131{bottom:564.195000px;}
.y115_c00131{bottom:566.790000px;}
.y112_c00131{bottom:567.645000px;}
.y113_c00131{bottom:568.515000px;}
.y116_c00131{bottom:569.370000px;}
.y117_c00131{bottom:570.240000px;}
.y109_c00131{bottom:573.690000px;}
.y10b_c00131{bottom:574.560000px;}
.y118_c00131{bottom:575.430000px;}
.y10e_c00131{bottom:576.285000px;}
.y10c_c00131{bottom:577.155000px;}
.y110_c00131{bottom:578.010000px;}
.y10f_c00131{bottom:580.605000px;}
.y10a_c00131{bottom:582.330000px;}
.y111_c00131{bottom:583.200000px;}
.y10d_c00131{bottom:584.925000px;}
.y103_c00131{bottom:599.610000px;}
.y105_c00131{bottom:601.350000px;}
.y104_c00131{bottom:602.205000px;}
.y102_c00131{bottom:603.075000px;}
.y106_c00131{bottom:603.930000px;}
.y107_c00131{bottom:606.525000px;}
.y108_c00131{bottom:620.355000px;}
.yfc_c00131{bottom:624.675000px;}
.y101_c00131{bottom:626.400000px;}
.yff_c00131{bottom:627.270000px;}
.yfd_c00131{bottom:628.995000px;}
.y100_c00131{bottom:629.850000px;}
.yfe_c00131{bottom:631.590000px;}
.yfb_c00131{bottom:635.040000px;}
.yfa_c00131{bottom:635.910000px;}
.yf6_c00131{bottom:640.230000px;}
.yf4_c00131{bottom:642.810000px;}
.yf3_c00131{bottom:643.680000px;}
.yf5_c00131{bottom:644.550000px;}
.yf7_c00131{bottom:647.130000px;}
.yf8_c00131{bottom:648.000000px;}
.yf9_c00131{bottom:649.725000px;}
.ye7_c00131{bottom:650.595000px;}
.yea_c00131{bottom:651.450000px;}
.ye8_c00131{bottom:652.320000px;}
.ye9_c00131{bottom:653.190000px;}
.yee_c00131{bottom:654.045000px;}
.yef_c00131{bottom:654.915000px;}
.yf0_c00131{bottom:655.770000px;}
.yec_c00131{bottom:656.640000px;}
.yed_c00131{bottom:658.365000px;}
.ye6_c00131{bottom:660.090000px;}
.yeb_c00131{bottom:660.960000px;}
.yf2_c00131{bottom:666.150000px;}
.yf1_c00131{bottom:674.790000px;}
.ydb_c00131{bottom:675.645000px;}
.ydc_c00131{bottom:677.370000px;}
.ye0_c00131{bottom:679.110000px;}
.yda_c00131{bottom:679.965000px;}
.ye1_c00131{bottom:680.835000px;}
.yd8_c00131{bottom:682.560000px;}
.yd9_c00131{bottom:683.430000px;}
.ye5_c00131{bottom:684.285000px;}
.ye2_c00131{bottom:686.010000px;}
.ye3_c00131{bottom:686.880000px;}
.ydd_c00131{bottom:687.750000px;}
.ye4_c00131{bottom:689.475000px;}
.ydf_c00131{bottom:690.330000px;}
.yd7_c00131{bottom:692.070000px;}
.yde_c00131{bottom:693.795000px;}
.yd0_c00131{bottom:699.840000px;}
.yd4_c00131{bottom:701.565000px;}
.yd2_c00131{bottom:705.030000px;}
.ycf_c00131{bottom:705.885000px;}
.yd1_c00131{bottom:707.610000px;}
.yd3_c00131{bottom:708.480000px;}
.yd5_c00131{bottom:711.075000px;}
.yd6_c00131{bottom:713.670000px;}
.y4_c00131{bottom:717.990000px;}
.yc9_c00131{bottom:721.440000px;}
.ycc_c00131{bottom:724.035000px;}
.ycb_c00131{bottom:724.890000px;}
.yc8_c00131{bottom:729.210000px;}
.yca_c00131{bottom:730.950000px;}
.ycd_c00131{bottom:733.530000px;}
.yce_c00131{bottom:734.400000px;}
.yc2_c00131{bottom:749.085000px;}
.yc5_c00131{bottom:749.955000px;}
.yc7_c00131{bottom:751.680000px;}
.yc1_c00131{bottom:753.405000px;}
.yc3_c00131{bottom:754.275000px;}
.yc4_c00131{bottom:757.725000px;}
.yc6_c00131{bottom:758.595000px;}
.ybb_c00131{bottom:772.410000px;}
.ybe_c00131{bottom:775.875000px;}
.ybc_c00131{bottom:778.470000px;}
.yc0_c00131{bottom:779.325000px;}
.ybd_c00131{bottom:781.050000px;}
.ybf_c00131{bottom:781.920000px;}
.yb4_c00131{bottom:796.605000px;}
.yb5_c00131{bottom:797.475000px;}
.yb6_c00131{bottom:798.330000px;}
.yba_c00131{bottom:799.200000px;}
.yb8_c00131{bottom:804.390000px;}
.yb7_c00131{bottom:805.245000px;}
.yb9_c00131{bottom:806.115000px;}
.yac_c00131{bottom:821.670000px;}
.yb0_c00131{bottom:822.525000px;}
.yb3_c00131{bottom:823.395000px;}
.yad_c00131{bottom:824.250000px;}
.yb1_c00131{bottom:825.990000px;}
.yaf_c00131{bottom:827.715000px;}
.yae_c00131{bottom:828.570000px;}
.yb2_c00131{bottom:830.310000px;}
.ya2_c00131{bottom:845.850000px;}
.ya6_c00131{bottom:846.720000px;}
.ya4_c00131{bottom:847.590000px;}
.ya7_c00131{bottom:848.445000px;}
.yaa_c00131{bottom:849.315000px;}
.ya5_c00131{bottom:851.910000px;}
.ya3_c00131{bottom:852.765000px;}
.ya8_c00131{bottom:854.490000px;}
.ya9_c00131{bottom:855.360000px;}
.yab_c00131{bottom:861.405000px;}
.y9f_c00131{bottom:869.190000px;}
.y9e_c00131{bottom:870.915000px;}
.ya0_c00131{bottom:871.770000px;}
.ya1_c00131{bottom:875.235000px;}
.y9b_c00131{bottom:895.965000px;}
.y99_c00131{bottom:896.835000px;}
.y9c_c00131{bottom:897.690000px;}
.y9d_c00131{bottom:898.560000px;}
.y98_c00131{bottom:899.430000px;}
.y9a_c00131{bottom:902.880000px;}
.y90_c00131{bottom:920.160000px;}
.y92_c00131{bottom:921.885000px;}
.y93_c00131{bottom:922.755000px;}
.y95_c00131{bottom:923.610000px;}
.y91_c00131{bottom:924.480000px;}
.y94_c00131{bottom:927.930000px;}
.y96_c00131{bottom:929.670000px;}
.y97_c00131{bottom:937.440000px;}
.y89_c00131{bottom:945.210000px;}
.y88_c00131{bottom:946.080000px;}
.y8a_c00131{bottom:947.805000px;}
.y8f_c00131{bottom:949.530000px;}
.y87_c00131{bottom:952.125000px;}
.y8b_c00131{bottom:952.995000px;}
.y8c_c00131{bottom:954.720000px;}
.y8d_c00131{bottom:955.590000px;}
.y8e_c00131{bottom:956.445000px;}
.y84_c00131{bottom:965.085000px;}
.y82_c00131{bottom:970.275000px;}
.y83_c00131{bottom:972.870000px;}
.y85_c00131{bottom:979.770000px;}
.y86_c00131{bottom:981.510000px;}
.y7c_c00131{bottom:995.325000px;}
.y7d_c00131{bottom:997.050000px;}
.y2_c00131{bottom:998.790000px;}
.y7f_c00131{bottom:1001.370000px;}
.y3_c00131{bottom:1002.240000px;}
.y7e_c00131{bottom:1003.965000px;}
.y80_c00131{bottom:1006.560000px;}
.y81_c00131{bottom:1009.155000px;}
.y77_c00131{bottom:1022.115000px;}
.y78_c00131{bottom:1023.840000px;}
.y76_c00131{bottom:1027.290000px;}
.y75_c00131{bottom:1028.160000px;}
.y7a_c00131{bottom:1030.755000px;}
.y79_c00131{bottom:1031.610000px;}
.y7b_c00131{bottom:1040.250000px;}
.y6f_c00131{bottom:1046.310000px;}
.y71_c00131{bottom:1047.165000px;}
.y73_c00131{bottom:1048.035000px;}
.y72_c00131{bottom:1049.760000px;}
.y70_c00131{bottom:1055.805000px;}
.y74_c00131{bottom:1066.170000px;}
.y6a_c00131{bottom:1071.360000px;}
.y6b_c00131{bottom:1072.230000px;}
.y6e_c00131{bottom:1073.085000px;}
.y6d_c00131{bottom:1075.680000px;}
.y6c_c00131{bottom:1080.870000px;}
.y64_c00131{bottom:1096.410000px;}
.y63_c00131{bottom:1097.280000px;}
.y67_c00131{bottom:1098.150000px;}
.y68_c00131{bottom:1099.875000px;}
.y62_c00131{bottom:1100.730000px;}
.y66_c00131{bottom:1101.600000px;}
.y65_c00131{bottom:1105.050000px;}
.y69_c00131{bottom:1106.790000px;}
.y5c_c00131{bottom:1122.330000px;}
.y5b_c00131{bottom:1123.200000px;}
.y60_c00131{bottom:1124.070000px;}
.y61_c00131{bottom:1124.925000px;}
.y5a_c00131{bottom:1127.520000px;}
.y5d_c00131{bottom:1130.115000px;}
.y5e_c00131{bottom:1130.970000px;}
.y5f_c00131{bottom:1131.840000px;}
.y52_c00131{bottom:1146.525000px;}
.y55_c00131{bottom:1149.120000px;}
.y58_c00131{bottom:1149.990000px;}
.y53_c00131{bottom:1154.310000px;}
.y54_c00131{bottom:1155.165000px;}
.y59_c00131{bottom:1156.035000px;}
.y56_c00131{bottom:1156.890000px;}
.y57_c00131{bottom:1157.760000px;}
.y4a_c00131{bottom:1171.590000px;}
.y4d_c00131{bottom:1172.445000px;}
.y4c_c00131{bottom:1173.315000px;}
.y47_c00131{bottom:1174.170000px;}
.y4e_c00131{bottom:1175.040000px;}
.y49_c00131{bottom:1175.910000px;}
.y48_c00131{bottom:1178.490000px;}
.y4b_c00131{bottom:1180.230000px;}
.y4f_c00131{bottom:1181.085000px;}
.y1_c00131{bottom:1181.955000px;}
.y50_c00131{bottom:1183.680000px;}
.y51_c00131{bottom:1190.595000px;}
.y44_c00131{bottom:1195.770000px;}
.y42_c00131{bottom:1197.510000px;}
.y46_c00131{bottom:1199.235000px;}
.y40_c00131{bottom:1200.090000px;}
.y45_c00131{bottom:1200.960000px;}
.y43_c00131{bottom:1203.555000px;}
.y41_c00131{bottom:1204.410000px;}
.y3b_c00131{bottom:1221.690000px;}
.y38_c00131{bottom:1223.430000px;}
.y3c_c00131{bottom:1224.285000px;}
.y3d_c00131{bottom:1225.155000px;}
.y37_c00131{bottom:1226.880000px;}
.y39_c00131{bottom:1227.750000px;}
.y3a_c00131{bottom:1228.605000px;}
.y3f_c00131{bottom:1231.200000px;}
.y3e_c00131{bottom:1232.925000px;}
.y2e_c00131{bottom:1248.480000px;}
.y30_c00131{bottom:1249.350000px;}
.y33_c00131{bottom:1250.205000px;}
.y2f_c00131{bottom:1252.800000px;}
.y31_c00131{bottom:1253.670000px;}
.y32_c00131{bottom:1255.395000px;}
.y34_c00131{bottom:1256.250000px;}
.y35_c00131{bottom:1257.120000px;}
.y36_c00131{bottom:1257.990000px;}
.y26_c00131{bottom:1266.630000px;}
.y27_c00131{bottom:1267.485000px;}
.y2b_c00131{bottom:1269.210000px;}
.y28_c00131{bottom:1270.080000px;}
.y29_c00131{bottom:1271.805000px;}
.y2c_c00131{bottom:1272.675000px;}
.y2d_c00131{bottom:1279.590000px;}
.y2a_c00131{bottom:1283.040000px;}
.y1e_c00131{bottom:1295.130000px;}
.y20_c00131{bottom:1296.870000px;}
.y21_c00131{bottom:1298.595000px;}
.y22_c00131{bottom:1299.450000px;}
.y24_c00131{bottom:1300.320000px;}
.y1d_c00131{bottom:1302.045000px;}
.y25_c00131{bottom:1304.640000px;}
.y1f_c00131{bottom:1305.510000px;}
.y23_c00131{bottom:1307.235000px;}
.y14_c00131{bottom:1320.195000px;}
.y16_c00131{bottom:1321.050000px;}
.y1c_c00131{bottom:1322.790000px;}
.y18_c00131{bottom:1323.645000px;}
.y19_c00131{bottom:1324.515000px;}
.y17_c00131{bottom:1326.240000px;}
.y15_c00131{bottom:1327.965000px;}
.y1b_c00131{bottom:1329.690000px;}
.y1a_c00131{bottom:1331.430000px;}
.yf_c00131{bottom:1347.840000px;}
.y13_c00131{bottom:1349.565000px;}
.y12_c00131{bottom:1351.290000px;}
.ye_c00131{bottom:1352.160000px;}
.y10_c00131{bottom:1353.885000px;}
.y11_c00131{bottom:1356.480000px;}
.yd_c00131{bottom:1357.350000px;}
.yc_c00131{bottom:1385.850000px;}
.y7_c00131{bottom:1386.720000px;}
.yb_c00131{bottom:1387.590000px;}
.y9_c00131{bottom:1388.445000px;}
.y8_c00131{bottom:1389.315000px;}
.ya_c00131{bottom:1390.170000px;}
.h4_c00131{height:3.110063px;}
.h23_c00131{height:5.399414px;}
.h5_c00131{height:6.209326px;}
.h7_c00131{height:9.340986px;}
.h6_c00131{height:12.418652px;}
.h3_c00131{height:15.550313px;}
.h21_c00131{height:18.681973px;}
.h1e_c00131{height:21.759639px;}
.h26_c00131{height:24.891299px;}
.h25_c00131{height:27.968965px;}
.h1f_c00131{height:31.100625px;}
.h1d_c00131{height:34.232285px;}
.h18_c00131{height:37.309951px;}
.h24_c00131{height:40.441611px;}
.h19_c00131{height:43.519277px;}
.hc_c00131{height:46.650937px;}
.h13_c00131{height:49.782598px;}
.h9_c00131{height:52.860264px;}
.h2_c00131{height:55.991924px;}
.ha_c00131{height:59.069590px;}
.h8_c00131{height:62.201250px;}
.hf_c00131{height:65.332910px;}
.hb_c00131{height:68.410576px;}
.h1a_c00131{height:71.542236px;}
.hd_c00131{height:74.619902px;}
.h11_c00131{height:77.751563px;}
.h1b_c00131{height:80.883223px;}
.h17_c00131{height:83.960889px;}
.h14_c00131{height:87.092549px;}
.h12_c00131{height:90.170215px;}
.h16_c00131{height:93.301875px;}
.h15_c00131{height:96.433535px;}
.h1c_c00131{height:99.511201px;}
.he_c00131{height:102.642861px;}
.h27_c00131{height:105.720527px;}
.h22_c00131{height:108.852188px;}
.h10_c00131{height:111.983848px;}
.h20_c00131{height:118.193174px;}
.h1_c00131{height:1503.000000px;}
.h0_c00131{height:1503.360000px;}
.w0_c00131{width:1088.640000px;}
.w1_c00131{width:1089.000000px;}
.x0_c00131{left:0.000000px;}
.x1_c00131{left:93.315000px;}
.x4_c00131{left:138.240408px;}
.x2_c00131{left:169.350000px;}
.x5_c00131{left:180.570000px;}
.x3_c00131{left:188.355000px;}
.x6_c00131{left:197.850000px;}
.x10_c00131{left:214.275000px;}
.x35_c00131{left:216.000000px;}
.xb5_c00131{left:220.320000px;}
.x90_c00131{left:224.640000px;}
.x97_c00131{left:226.365000px;}
.x84_c00131{left:228.090000px;}
.x11_c00131{left:229.830000px;}
.x64_c00131{left:231.555000px;}
.x19_c00131{left:233.280000px;}
.xe8_c00131{left:235.875000px;}
.xd7_c00131{left:243.645000px;}
.x6a_c00131{left:250.560000px;}
.xe1_c00131{left:252.285000px;}
.x91_c00131{left:254.880000px;}
.x24_c00131{left:257.475000px;}
.x41_c00131{left:260.925000px;}
.xa9_c00131{left:264.390000px;}
.x42_c00131{left:268.710000px;}
.x65_c00131{left:272.160000px;}
.xda_c00131{left:273.885000px;}
.x6b_c00131{left:276.480000px;}
.x2c_c00131{left:283.395000px;}
.xb6_c00131{left:285.120000px;}
.x36_c00131{left:290.310000px;}
.x5b_c00131{left:292.035000px;}
.x43_c00131{left:293.760000px;}
.xb0_c00131{left:296.355000px;}
.xa4_c00131{left:298.080000px;}
.x37_c00131{left:300.675000px;}
.xe5_c00131{left:303.270000px;}
.x99_c00131{left:304.995000px;}
.x1a_c00131{left:307.590000px;}
.x79_c00131{left:311.040000px;}
.x6c_c00131{left:316.230000px;}
.xd4_c00131{left:317.955000px;}
.x92_c00131{left:319.680000px;}
.xb7_c00131{left:322.275000px;}
.x7e_c00131{left:324.000000px;}
.x1b_c00131{left:327.450000px;}
.x86_c00131{left:329.190000px;}
.x8c_c00131{left:333.510000px;}
.x4d_c00131{left:336.090000px;}
.x93_c00131{left:338.685000px;}
.xc4_c00131{left:343.875000px;}
.xa0_c00131{left:345.600000px;}
.x4e_c00131{left:347.325000px;}
.x38_c00131{left:354.240000px;}
.x53_c00131{left:358.560000px;}
.x2d_c00131{left:362.880000px;}
.x8d_c00131{left:364.605000px;}
.x25_c00131{left:366.330000px;}
.x54_c00131{left:368.070000px;}
.x12_c00131{left:369.795000px;}
.xaa_c00131{left:371.520000px;}
.xdb_c00131{left:373.245000px;}
.x39_c00131{left:375.840000px;}
.x9a_c00131{left:377.565000px;}
.x44_c00131{left:382.755000px;}
.xa1_c00131{left:384.480000px;}
.x1c_c00131{left:387.930000px;}
.x4f_c00131{left:390.525000px;}
.xe9_c00131{left:392.250000px;}
.x45_c00131{left:393.990000px;}
.x94_c00131{left:401.760000px;}
.x6d_c00131{left:406.080000px;}
.x71_c00131{left:410.400000px;}
.xc5_c00131{left:412.995000px;}
.x7f_c00131{left:415.590000px;}
.x5c_c00131{left:422.490000px;}
.x6e_c00131{left:427.680000px;}
.xa2_c00131{left:430.275000px;}
.x55_c00131{left:435.450000px;}
.x26_c00131{left:438.915000px;}
.x7_c00131{left:441.510000px;}
.xbb_c00131{left:444.090000px;}
.x98_c00131{left:445.830000px;}
.xcc_c00131{left:451.005000px;}
.x13_c00131{left:453.600000px;}
.x3a_c00131{left:463.110000px;}
.xa3_c00131{left:464.835000px;}
.x2e_c00131{left:469.155000px;}
.x56_c00131{left:470.880000px;}
.xab_c00131{left:472.605000px;}
.x1d_c00131{left:474.330000px;}
.xce_c00131{left:476.925000px;}
.x46_c00131{left:481.245000px;}
.x6f_c00131{left:484.710000px;}
.x5d_c00131{left:486.435000px;}
.xbc_c00131{left:490.755000px;}
.x8_c00131{left:492.480000px;}
.x3b_c00131{left:495.930000px;}
.xd1_c00131{left:498.525000px;}
.xcf_c00131{left:500.250000px;}
.x14_c00131{left:501.990000px;}
.xe2_c00131{left:507.165000px;}
.x9_c00131{left:512.355000px;}
.x1e_c00131{left:514.080000px;}
.x3c_c00131{left:518.400000px;}
.xdc_c00131{left:520.125000px;}
.x2f_c00131{left:522.720000px;}
.x72_c00131{left:527.040000px;}
.x7a_c00131{left:529.635000px;}
.x87_c00131{left:532.230000px;}
.xd5_c00131{left:535.680000px;}
.x15_c00131{left:539.130000px;}
.xa_c00131{left:544.320000px;}
.xbf_c00131{left:546.915000px;}
.x47_c00131{left:548.640000px;}
.xc6_c00131{left:551.235000px;}
.x1f_c00131{left:552.960000px;}
.x27_c00131{left:554.685000px;}
.xd6_c00131{left:557.280000px;}
.xb_c00131{left:559.875000px;}
.x28_c00131{left:565.920000px;}
.xb1_c00131{left:568.515000px;}
.x70_c00131{left:571.110000px;}
.xb8_c00131{left:572.835000px;}
.x16_c00131{left:577.155000px;}
.x7b_c00131{left:579.750000px;}
.xc_c00131{left:583.200000px;}
.x73_c00131{left:584.925000px;}
.x66_c00131{left:586.650000px;}
.x5e_c00131{left:590.970000px;}
.x30_c00131{left:594.435000px;}
.x3d_c00131{left:596.160000px;}
.x17_c00131{left:600.480000px;}
.xb2_c00131{left:602.205000px;}
.x9b_c00131{left:603.930000px;}
.x67_c00131{left:607.395000px;}
.xd_c00131{left:610.845000px;}
.xb3_c00131{left:613.440000px;}
.x9c_c00131{left:615.165000px;}
.x80_c00131{left:617.760000px;}
.x3e_c00131{left:619.485000px;}
.x48_c00131{left:622.080000px;}
.xdd_c00131{left:625.530000px;}
.x88_c00131{left:628.995000px;}
.xc0_c00131{left:630.720000px;}
.xb9_c00131{left:633.315000px;}
.xac_c00131{left:639.360000px;}
.x31_c00131{left:641.085000px;}
.xc7_c00131{left:644.550000px;}
.xea_c00131{left:654.045000px;}
.xe_c00131{left:655.770000px;}
.x74_c00131{left:660.960000px;}
.x50_c00131{left:662.685000px;}
.x20_c00131{left:665.280000px;}
.xe6_c00131{left:667.005000px;}
.x68_c00131{left:669.600000px;}
.x5f_c00131{left:671.325000px;}
.xa5_c00131{left:677.370000px;}
.xd0_c00131{left:679.965000px;}
.x18_c00131{left:681.690000px;}
.x95_c00131{left:684.285000px;}
.xcd_c00131{left:686.010000px;}
.x49_c00131{left:688.605000px;}
.x29_c00131{left:690.330000px;}
.x60_c00131{left:692.925000px;}
.x21_c00131{left:695.520000px;}
.x7c_c00131{left:697.245000px;}
.x9d_c00131{left:699.840000px;}
.x3f_c00131{left:701.565000px;}
.x75_c00131{left:704.160000px;}
.x89_c00131{left:708.480000px;}
.xad_c00131{left:711.075000px;}
.x61_c00131{left:712.800000px;}
.xa6_c00131{left:716.250000px;}
.x32_c00131{left:719.715000px;}
.x9e_c00131{left:721.440000px;}
.xe3_c00131{left:724.035000px;}
.xc8_c00131{left:725.760000px;}
.xd8_c00131{left:727.485000px;}
.x51_c00131{left:729.210000px;}
.x4a_c00131{left:731.805000px;}
.x2a_c00131{left:734.400000px;}
.xd2_c00131{left:736.125000px;}
.xde_c00131{left:738.720000px;}
.xeb_c00131{left:741.315000px;}
.xc9_c00131{left:749.085000px;}
.x22_c00131{left:751.680000px;}
.x8e_c00131{left:756.870000px;}
.x40_c00131{left:758.595000px;}
.x76_c00131{left:761.190000px;}
.xa7_c00131{left:762.915000px;}
.x96_c00131{left:764.640000px;}
.x8a_c00131{left:766.365000px;}
.x52_c00131{left:768.960000px;}
.x85_c00131{left:772.410000px;}
.x23_c00131{left:774.150000px;}
.x4b_c00131{left:775.875000px;}
.x57_c00131{left:778.470000px;}
.x33_c00131{left:781.050000px;}
.xdf_c00131{left:787.110000px;}
.x81_c00131{left:789.690000px;}
.x8b_c00131{left:792.285000px;}
.xbd_c00131{left:796.605000px;}
.xd9_c00131{left:800.070000px;}
.xe4_c00131{left:802.650000px;}
.xae_c00131{left:804.390000px;}
.x4c_c00131{left:806.115000px;}
.x62_c00131{left:812.160000px;}
.xc1_c00131{left:815.610000px;}
.xa8_c00131{left:818.205000px;}
.xb4_c00131{left:820.800000px;}
.xc2_c00131{left:826.845000px;}
.x82_c00131{left:829.440000px;}
.xba_c00131{left:832.035000px;}
.x63_c00131{left:833.760000px;}
.x34_c00131{left:836.355000px;}
.x77_c00131{left:841.530000px;}
.xc3_c00131{left:845.850000px;}
.xaf_c00131{left:847.590000px;}
.x58_c00131{left:849.315000px;}
.xf_c00131{left:851.910000px;}
.xe7_c00131{left:854.490000px;}
.x59_c00131{left:859.680000px;}
.x69_c00131{left:865.725000px;}
.xbe_c00131{left:868.320000px;}
.x9f_c00131{left:870.045000px;}
.x83_c00131{left:871.770000px;}
.x5a_c00131{left:874.365000px;}
.x78_c00131{left:876.960000px;}
.xd3_c00131{left:878.685000px;}
.x2b_c00131{left:881.280000px;}
.xe0_c00131{left:884.730000px;}
.x8f_c00131{left:887.325000px;}
.xca_c00131{left:890.790000px;}
.x7d_c00131{left:897.690000px;}
.xcb_c00131{left:907.200000px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ws0_c00131{word-spacing:0.000000pt;}
.fs2_c00131{font-size:3.072000pt;}
.fs21_c00131{font-size:5.333333pt;}
.fs3_c00131{font-size:6.133333pt;}
.fs5_c00131{font-size:9.226667pt;}
.fs4_c00131{font-size:12.266667pt;}
.fs1_c00131{font-size:15.360000pt;}
.fs1f_c00131{font-size:18.453333pt;}
.fs1c_c00131{font-size:21.493333pt;}
.fs24_c00131{font-size:24.586667pt;}
.fs23_c00131{font-size:27.626667pt;}
.fs1d_c00131{font-size:30.720000pt;}
.fs1b_c00131{font-size:33.813333pt;}
.fs16_c00131{font-size:36.853333pt;}
.fs22_c00131{font-size:39.946667pt;}
.fs17_c00131{font-size:42.986667pt;}
.fsa_c00131{font-size:46.080000pt;}
.fs11_c00131{font-size:49.173333pt;}
.fs7_c00131{font-size:52.213333pt;}
.fs0_c00131{font-size:55.306667pt;}
.fs8_c00131{font-size:58.346667pt;}
.fs6_c00131{font-size:61.440000pt;}
.fsd_c00131{font-size:64.533333pt;}
.fs9_c00131{font-size:67.573333pt;}
.fs18_c00131{font-size:70.666667pt;}
.fsb_c00131{font-size:73.706667pt;}
.fsf_c00131{font-size:76.800000pt;}
.fs19_c00131{font-size:79.893333pt;}
.fs15_c00131{font-size:82.933333pt;}
.fs12_c00131{font-size:86.026667pt;}
.fs10_c00131{font-size:89.066667pt;}
.fs14_c00131{font-size:92.160000pt;}
.fs13_c00131{font-size:95.253333pt;}
.fs1a_c00131{font-size:98.293333pt;}
.fsc_c00131{font-size:101.386667pt;}
.fs25_c00131{font-size:104.426667pt;}
.fs20_c00131{font-size:107.520000pt;}
.fse_c00131{font-size:110.613333pt;}
.fs1e_c00131{font-size:116.746667pt;}
.y0_c00131{bottom:0.000000pt;}
.y14d_c00131{bottom:92.160000pt;}
.y14e_c00131{bottom:92.933333pt;}
.y14c_c00131{bottom:95.226667pt;}
.y14f_c00131{bottom:98.306667pt;}
.y14b_c00131{bottom:101.373333pt;}
.y14a_c00131{bottom:103.680000pt;}
.y148_c00131{bottom:384.000000pt;}
.y147_c00131{bottom:386.306667pt;}
.y146_c00131{bottom:387.840000pt;}
.y141_c00131{bottom:389.373333pt;}
.y142_c00131{bottom:393.213333pt;}
.y140_c00131{bottom:393.986667pt;}
.y144_c00131{bottom:395.520000pt;}
.y145_c00131{bottom:397.826667pt;}
.y149_c00131{bottom:398.586667pt;}
.y139_c00131{bottom:400.133333pt;}
.y143_c00131{bottom:403.973333pt;}
.y13a_c00131{bottom:407.040000pt;}
.y13c_c00131{bottom:407.813333pt;}
.y13b_c00131{bottom:408.573333pt;}
.y13d_c00131{bottom:409.346667pt;}
.y13f_c00131{bottom:410.880000pt;}
.y5_c00131{bottom:413.186667pt;}
.y6_c00131{bottom:414.720000pt;}
.y13e_c00131{bottom:416.253333pt;}
.y134_c00131{bottom:423.173333pt;}
.y138_c00131{bottom:423.933333pt;}
.y132_c00131{bottom:424.706667pt;}
.y133_c00131{bottom:425.466667pt;}
.y137_c00131{bottom:427.013333pt;}
.y135_c00131{bottom:429.306667pt;}
.y136_c00131{bottom:431.613333pt;}
.y130_c00131{bottom:446.973333pt;}
.y12b_c00131{bottom:447.746667pt;}
.y12d_c00131{bottom:448.506667pt;}
.y12e_c00131{bottom:449.280000pt;}
.y12a_c00131{bottom:450.053333pt;}
.y129_c00131{bottom:450.813333pt;}
.y12f_c00131{bottom:451.586667pt;}
.y12c_c00131{bottom:452.346667pt;}
.y131_c00131{bottom:454.653333pt;}
.y123_c00131{bottom:466.173333pt;}
.y125_c00131{bottom:467.706667pt;}
.y124_c00131{bottom:468.480000pt;}
.y128_c00131{bottom:470.786667pt;}
.y126_c00131{bottom:475.386667pt;}
.y127_c00131{bottom:480.773333pt;}
.y11b_c00131{bottom:489.986667pt;}
.y11d_c00131{bottom:490.746667pt;}
.y11e_c00131{bottom:491.520000pt;}
.y11c_c00131{bottom:492.293333pt;}
.y120_c00131{bottom:493.826667pt;}
.y122_c00131{bottom:494.586667pt;}
.y11f_c00131{bottom:496.133333pt;}
.y121_c00131{bottom:496.893333pt;}
.y11a_c00131{bottom:497.666667pt;}
.y114_c00131{bottom:500.733333pt;}
.y119_c00131{bottom:501.506667pt;}
.y115_c00131{bottom:503.813333pt;}
.y112_c00131{bottom:504.573333pt;}
.y113_c00131{bottom:505.346667pt;}
.y116_c00131{bottom:506.106667pt;}
.y117_c00131{bottom:506.880000pt;}
.y109_c00131{bottom:509.946667pt;}
.y10b_c00131{bottom:510.720000pt;}
.y118_c00131{bottom:511.493333pt;}
.y10e_c00131{bottom:512.253333pt;}
.y10c_c00131{bottom:513.026667pt;}
.y110_c00131{bottom:513.786667pt;}
.y10f_c00131{bottom:516.093333pt;}
.y10a_c00131{bottom:517.626667pt;}
.y111_c00131{bottom:518.400000pt;}
.y10d_c00131{bottom:519.933333pt;}
.y103_c00131{bottom:532.986667pt;}
.y105_c00131{bottom:534.533333pt;}
.y104_c00131{bottom:535.293333pt;}
.y102_c00131{bottom:536.066667pt;}
.y106_c00131{bottom:536.826667pt;}
.y107_c00131{bottom:539.133333pt;}
.y108_c00131{bottom:551.426667pt;}
.yfc_c00131{bottom:555.266667pt;}
.y101_c00131{bottom:556.800000pt;}
.yff_c00131{bottom:557.573333pt;}
.yfd_c00131{bottom:559.106667pt;}
.y100_c00131{bottom:559.866667pt;}
.yfe_c00131{bottom:561.413333pt;}
.yfb_c00131{bottom:564.480000pt;}
.yfa_c00131{bottom:565.253333pt;}
.yf6_c00131{bottom:569.093333pt;}
.yf4_c00131{bottom:571.386667pt;}
.yf3_c00131{bottom:572.160000pt;}
.yf5_c00131{bottom:572.933333pt;}
.yf7_c00131{bottom:575.226667pt;}
.yf8_c00131{bottom:576.000000pt;}
.yf9_c00131{bottom:577.533333pt;}
.ye7_c00131{bottom:578.306667pt;}
.yea_c00131{bottom:579.066667pt;}
.ye8_c00131{bottom:579.840000pt;}
.ye9_c00131{bottom:580.613333pt;}
.yee_c00131{bottom:581.373333pt;}
.yef_c00131{bottom:582.146667pt;}
.yf0_c00131{bottom:582.906667pt;}
.yec_c00131{bottom:583.680000pt;}
.yed_c00131{bottom:585.213333pt;}
.ye6_c00131{bottom:586.746667pt;}
.yeb_c00131{bottom:587.520000pt;}
.yf2_c00131{bottom:592.133333pt;}
.yf1_c00131{bottom:599.813333pt;}
.ydb_c00131{bottom:600.573333pt;}
.ydc_c00131{bottom:602.106667pt;}
.ye0_c00131{bottom:603.653333pt;}
.yda_c00131{bottom:604.413333pt;}
.ye1_c00131{bottom:605.186667pt;}
.yd8_c00131{bottom:606.720000pt;}
.yd9_c00131{bottom:607.493333pt;}
.ye5_c00131{bottom:608.253333pt;}
.ye2_c00131{bottom:609.786667pt;}
.ye3_c00131{bottom:610.560000pt;}
.ydd_c00131{bottom:611.333333pt;}
.ye4_c00131{bottom:612.866667pt;}
.ydf_c00131{bottom:613.626667pt;}
.yd7_c00131{bottom:615.173333pt;}
.yde_c00131{bottom:616.706667pt;}
.yd0_c00131{bottom:622.080000pt;}
.yd4_c00131{bottom:623.613333pt;}
.yd2_c00131{bottom:626.693333pt;}
.ycf_c00131{bottom:627.453333pt;}
.yd1_c00131{bottom:628.986667pt;}
.yd3_c00131{bottom:629.760000pt;}
.yd5_c00131{bottom:632.066667pt;}
.yd6_c00131{bottom:634.373333pt;}
.y4_c00131{bottom:638.213333pt;}
.yc9_c00131{bottom:641.280000pt;}
.ycc_c00131{bottom:643.586667pt;}
.ycb_c00131{bottom:644.346667pt;}
.yc8_c00131{bottom:648.186667pt;}
.yca_c00131{bottom:649.733333pt;}
.ycd_c00131{bottom:652.026667pt;}
.yce_c00131{bottom:652.800000pt;}
.yc2_c00131{bottom:665.853333pt;}
.yc5_c00131{bottom:666.626667pt;}
.yc7_c00131{bottom:668.160000pt;}
.yc1_c00131{bottom:669.693333pt;}
.yc3_c00131{bottom:670.466667pt;}
.yc4_c00131{bottom:673.533333pt;}
.yc6_c00131{bottom:674.306667pt;}
.ybb_c00131{bottom:686.586667pt;}
.ybe_c00131{bottom:689.666667pt;}
.ybc_c00131{bottom:691.973333pt;}
.yc0_c00131{bottom:692.733333pt;}
.ybd_c00131{bottom:694.266667pt;}
.ybf_c00131{bottom:695.040000pt;}
.yb4_c00131{bottom:708.093333pt;}
.yb5_c00131{bottom:708.866667pt;}
.yb6_c00131{bottom:709.626667pt;}
.yba_c00131{bottom:710.400000pt;}
.yb8_c00131{bottom:715.013333pt;}
.yb7_c00131{bottom:715.773333pt;}
.yb9_c00131{bottom:716.546667pt;}
.yac_c00131{bottom:730.373333pt;}
.yb0_c00131{bottom:731.133333pt;}
.yb3_c00131{bottom:731.906667pt;}
.yad_c00131{bottom:732.666667pt;}
.yb1_c00131{bottom:734.213333pt;}
.yaf_c00131{bottom:735.746667pt;}
.yae_c00131{bottom:736.506667pt;}
.yb2_c00131{bottom:738.053333pt;}
.ya2_c00131{bottom:751.866667pt;}
.ya6_c00131{bottom:752.640000pt;}
.ya4_c00131{bottom:753.413333pt;}
.ya7_c00131{bottom:754.173333pt;}
.yaa_c00131{bottom:754.946667pt;}
.ya5_c00131{bottom:757.253333pt;}
.ya3_c00131{bottom:758.013333pt;}
.ya8_c00131{bottom:759.546667pt;}
.ya9_c00131{bottom:760.320000pt;}
.yab_c00131{bottom:765.693333pt;}
.y9f_c00131{bottom:772.613333pt;}
.y9e_c00131{bottom:774.146667pt;}
.ya0_c00131{bottom:774.906667pt;}
.ya1_c00131{bottom:777.986667pt;}
.y9b_c00131{bottom:796.413333pt;}
.y99_c00131{bottom:797.186667pt;}
.y9c_c00131{bottom:797.946667pt;}
.y9d_c00131{bottom:798.720000pt;}
.y98_c00131{bottom:799.493333pt;}
.y9a_c00131{bottom:802.560000pt;}
.y90_c00131{bottom:817.920000pt;}
.y92_c00131{bottom:819.453333pt;}
.y93_c00131{bottom:820.226667pt;}
.y95_c00131{bottom:820.986667pt;}
.y91_c00131{bottom:821.760000pt;}
.y94_c00131{bottom:824.826667pt;}
.y96_c00131{bottom:826.373333pt;}
.y97_c00131{bottom:833.280000pt;}
.y89_c00131{bottom:840.186667pt;}
.y88_c00131{bottom:840.960000pt;}
.y8a_c00131{bottom:842.493333pt;}
.y8f_c00131{bottom:844.026667pt;}
.y87_c00131{bottom:846.333333pt;}
.y8b_c00131{bottom:847.106667pt;}
.y8c_c00131{bottom:848.640000pt;}
.y8d_c00131{bottom:849.413333pt;}
.y8e_c00131{bottom:850.173333pt;}
.y84_c00131{bottom:857.853333pt;}
.y82_c00131{bottom:862.466667pt;}
.y83_c00131{bottom:864.773333pt;}
.y85_c00131{bottom:870.906667pt;}
.y86_c00131{bottom:872.453333pt;}
.y7c_c00131{bottom:884.733333pt;}
.y7d_c00131{bottom:886.266667pt;}
.y2_c00131{bottom:887.813333pt;}
.y7f_c00131{bottom:890.106667pt;}
.y3_c00131{bottom:890.880000pt;}
.y7e_c00131{bottom:892.413333pt;}
.y80_c00131{bottom:894.720000pt;}
.y81_c00131{bottom:897.026667pt;}
.y77_c00131{bottom:908.546667pt;}
.y78_c00131{bottom:910.080000pt;}
.y76_c00131{bottom:913.146667pt;}
.y75_c00131{bottom:913.920000pt;}
.y7a_c00131{bottom:916.226667pt;}
.y79_c00131{bottom:916.986667pt;}
.y7b_c00131{bottom:924.666667pt;}
.y6f_c00131{bottom:930.053333pt;}
.y71_c00131{bottom:930.813333pt;}
.y73_c00131{bottom:931.586667pt;}
.y72_c00131{bottom:933.120000pt;}
.y70_c00131{bottom:938.493333pt;}
.y74_c00131{bottom:947.706667pt;}
.y6a_c00131{bottom:952.320000pt;}
.y6b_c00131{bottom:953.093333pt;}
.y6e_c00131{bottom:953.853333pt;}
.y6d_c00131{bottom:956.160000pt;}
.y6c_c00131{bottom:960.773333pt;}
.y64_c00131{bottom:974.586667pt;}
.y63_c00131{bottom:975.360000pt;}
.y67_c00131{bottom:976.133333pt;}
.y68_c00131{bottom:977.666667pt;}
.y62_c00131{bottom:978.426667pt;}
.y66_c00131{bottom:979.200000pt;}
.y65_c00131{bottom:982.266667pt;}
.y69_c00131{bottom:983.813333pt;}
.y5c_c00131{bottom:997.626667pt;}
.y5b_c00131{bottom:998.400000pt;}
.y60_c00131{bottom:999.173333pt;}
.y61_c00131{bottom:999.933333pt;}
.y5a_c00131{bottom:1002.240000pt;}
.y5d_c00131{bottom:1004.546667pt;}
.y5e_c00131{bottom:1005.306667pt;}
.y5f_c00131{bottom:1006.080000pt;}
.y52_c00131{bottom:1019.133333pt;}
.y55_c00131{bottom:1021.440000pt;}
.y58_c00131{bottom:1022.213333pt;}
.y53_c00131{bottom:1026.053333pt;}
.y54_c00131{bottom:1026.813333pt;}
.y59_c00131{bottom:1027.586667pt;}
.y56_c00131{bottom:1028.346667pt;}
.y57_c00131{bottom:1029.120000pt;}
.y4a_c00131{bottom:1041.413333pt;}
.y4d_c00131{bottom:1042.173333pt;}
.y4c_c00131{bottom:1042.946667pt;}
.y47_c00131{bottom:1043.706667pt;}
.y4e_c00131{bottom:1044.480000pt;}
.y49_c00131{bottom:1045.253333pt;}
.y48_c00131{bottom:1047.546667pt;}
.y4b_c00131{bottom:1049.093333pt;}
.y4f_c00131{bottom:1049.853333pt;}
.y1_c00131{bottom:1050.626667pt;}
.y50_c00131{bottom:1052.160000pt;}
.y51_c00131{bottom:1058.306667pt;}
.y44_c00131{bottom:1062.906667pt;}
.y42_c00131{bottom:1064.453333pt;}
.y46_c00131{bottom:1065.986667pt;}
.y40_c00131{bottom:1066.746667pt;}
.y45_c00131{bottom:1067.520000pt;}
.y43_c00131{bottom:1069.826667pt;}
.y41_c00131{bottom:1070.586667pt;}
.y3b_c00131{bottom:1085.946667pt;}
.y38_c00131{bottom:1087.493333pt;}
.y3c_c00131{bottom:1088.253333pt;}
.y3d_c00131{bottom:1089.026667pt;}
.y37_c00131{bottom:1090.560000pt;}
.y39_c00131{bottom:1091.333333pt;}
.y3a_c00131{bottom:1092.093333pt;}
.y3f_c00131{bottom:1094.400000pt;}
.y3e_c00131{bottom:1095.933333pt;}
.y2e_c00131{bottom:1109.760000pt;}
.y30_c00131{bottom:1110.533333pt;}
.y33_c00131{bottom:1111.293333pt;}
.y2f_c00131{bottom:1113.600000pt;}
.y31_c00131{bottom:1114.373333pt;}
.y32_c00131{bottom:1115.906667pt;}
.y34_c00131{bottom:1116.666667pt;}
.y35_c00131{bottom:1117.440000pt;}
.y36_c00131{bottom:1118.213333pt;}
.y26_c00131{bottom:1125.893333pt;}
.y27_c00131{bottom:1126.653333pt;}
.y2b_c00131{bottom:1128.186667pt;}
.y28_c00131{bottom:1128.960000pt;}
.y29_c00131{bottom:1130.493333pt;}
.y2c_c00131{bottom:1131.266667pt;}
.y2d_c00131{bottom:1137.413333pt;}
.y2a_c00131{bottom:1140.480000pt;}
.y1e_c00131{bottom:1151.226667pt;}
.y20_c00131{bottom:1152.773333pt;}
.y21_c00131{bottom:1154.306667pt;}
.y22_c00131{bottom:1155.066667pt;}
.y24_c00131{bottom:1155.840000pt;}
.y1d_c00131{bottom:1157.373333pt;}
.y25_c00131{bottom:1159.680000pt;}
.y1f_c00131{bottom:1160.453333pt;}
.y23_c00131{bottom:1161.986667pt;}
.y14_c00131{bottom:1173.506667pt;}
.y16_c00131{bottom:1174.266667pt;}
.y1c_c00131{bottom:1175.813333pt;}
.y18_c00131{bottom:1176.573333pt;}
.y19_c00131{bottom:1177.346667pt;}
.y17_c00131{bottom:1178.880000pt;}
.y15_c00131{bottom:1180.413333pt;}
.y1b_c00131{bottom:1181.946667pt;}
.y1a_c00131{bottom:1183.493333pt;}
.yf_c00131{bottom:1198.080000pt;}
.y13_c00131{bottom:1199.613333pt;}
.y12_c00131{bottom:1201.146667pt;}
.ye_c00131{bottom:1201.920000pt;}
.y10_c00131{bottom:1203.453333pt;}
.y11_c00131{bottom:1205.760000pt;}
.yd_c00131{bottom:1206.533333pt;}
.yc_c00131{bottom:1231.866667pt;}
.y7_c00131{bottom:1232.640000pt;}
.yb_c00131{bottom:1233.413333pt;}
.y9_c00131{bottom:1234.173333pt;}
.y8_c00131{bottom:1234.946667pt;}
.ya_c00131{bottom:1235.706667pt;}
.h4_c00131{height:2.764500pt;}
.h23_c00131{height:4.799479pt;}
.h5_c00131{height:5.519401pt;}
.h7_c00131{height:8.303099pt;}
.h6_c00131{height:11.038802pt;}
.h3_c00131{height:13.822500pt;}
.h21_c00131{height:16.606198pt;}
.h1e_c00131{height:19.341901pt;}
.h26_c00131{height:22.125599pt;}
.h25_c00131{height:24.861302pt;}
.h1f_c00131{height:27.645000pt;}
.h1d_c00131{height:30.428698pt;}
.h18_c00131{height:33.164401pt;}
.h24_c00131{height:35.948099pt;}
.h19_c00131{height:38.683802pt;}
.hc_c00131{height:41.467500pt;}
.h13_c00131{height:44.251198pt;}
.h9_c00131{height:46.986901pt;}
.h2_c00131{height:49.770599pt;}
.ha_c00131{height:52.506302pt;}
.h8_c00131{height:55.290000pt;}
.hf_c00131{height:58.073698pt;}
.hb_c00131{height:60.809401pt;}
.h1a_c00131{height:63.593099pt;}
.hd_c00131{height:66.328802pt;}
.h11_c00131{height:69.112500pt;}
.h1b_c00131{height:71.896198pt;}
.h17_c00131{height:74.631901pt;}
.h14_c00131{height:77.415599pt;}
.h12_c00131{height:80.151302pt;}
.h16_c00131{height:82.935000pt;}
.h15_c00131{height:85.718698pt;}
.h1c_c00131{height:88.454401pt;}
.he_c00131{height:91.238099pt;}
.h27_c00131{height:93.973802pt;}
.h22_c00131{height:96.757500pt;}
.h10_c00131{height:99.541198pt;}
.h20_c00131{height:105.060599pt;}
.h1_c00131{height:1336.000000pt;}
.h0_c00131{height:1336.320000pt;}
.w0_c00131{width:967.680000pt;}
.w1_c00131{width:968.000000pt;}
.x0_c00131{left:0.000000pt;}
.x1_c00131{left:82.946667pt;}
.x4_c00131{left:122.880363pt;}
.x2_c00131{left:150.533333pt;}
.x5_c00131{left:160.506667pt;}
.x3_c00131{left:167.426667pt;}
.x6_c00131{left:175.866667pt;}
.x10_c00131{left:190.466667pt;}
.x35_c00131{left:192.000000pt;}
.xb5_c00131{left:195.840000pt;}
.x90_c00131{left:199.680000pt;}
.x97_c00131{left:201.213333pt;}
.x84_c00131{left:202.746667pt;}
.x11_c00131{left:204.293333pt;}
.x64_c00131{left:205.826667pt;}
.x19_c00131{left:207.360000pt;}
.xe8_c00131{left:209.666667pt;}
.xd7_c00131{left:216.573333pt;}
.x6a_c00131{left:222.720000pt;}
.xe1_c00131{left:224.253333pt;}
.x91_c00131{left:226.560000pt;}
.x24_c00131{left:228.866667pt;}
.x41_c00131{left:231.933333pt;}
.xa9_c00131{left:235.013333pt;}
.x42_c00131{left:238.853333pt;}
.x65_c00131{left:241.920000pt;}
.xda_c00131{left:243.453333pt;}
.x6b_c00131{left:245.760000pt;}
.x2c_c00131{left:251.906667pt;}
.xb6_c00131{left:253.440000pt;}
.x36_c00131{left:258.053333pt;}
.x5b_c00131{left:259.586667pt;}
.x43_c00131{left:261.120000pt;}
.xb0_c00131{left:263.426667pt;}
.xa4_c00131{left:264.960000pt;}
.x37_c00131{left:267.266667pt;}
.xe5_c00131{left:269.573333pt;}
.x99_c00131{left:271.106667pt;}
.x1a_c00131{left:273.413333pt;}
.x79_c00131{left:276.480000pt;}
.x6c_c00131{left:281.093333pt;}
.xd4_c00131{left:282.626667pt;}
.x92_c00131{left:284.160000pt;}
.xb7_c00131{left:286.466667pt;}
.x7e_c00131{left:288.000000pt;}
.x1b_c00131{left:291.066667pt;}
.x86_c00131{left:292.613333pt;}
.x8c_c00131{left:296.453333pt;}
.x4d_c00131{left:298.746667pt;}
.x93_c00131{left:301.053333pt;}
.xc4_c00131{left:305.666667pt;}
.xa0_c00131{left:307.200000pt;}
.x4e_c00131{left:308.733333pt;}
.x38_c00131{left:314.880000pt;}
.x53_c00131{left:318.720000pt;}
.x2d_c00131{left:322.560000pt;}
.x8d_c00131{left:324.093333pt;}
.x25_c00131{left:325.626667pt;}
.x54_c00131{left:327.173333pt;}
.x12_c00131{left:328.706667pt;}
.xaa_c00131{left:330.240000pt;}
.xdb_c00131{left:331.773333pt;}
.x39_c00131{left:334.080000pt;}
.x9a_c00131{left:335.613333pt;}
.x44_c00131{left:340.226667pt;}
.xa1_c00131{left:341.760000pt;}
.x1c_c00131{left:344.826667pt;}
.x4f_c00131{left:347.133333pt;}
.xe9_c00131{left:348.666667pt;}
.x45_c00131{left:350.213333pt;}
.x94_c00131{left:357.120000pt;}
.x6d_c00131{left:360.960000pt;}
.x71_c00131{left:364.800000pt;}
.xc5_c00131{left:367.106667pt;}
.x7f_c00131{left:369.413333pt;}
.x5c_c00131{left:375.546667pt;}
.x6e_c00131{left:380.160000pt;}
.xa2_c00131{left:382.466667pt;}
.x55_c00131{left:387.066667pt;}
.x26_c00131{left:390.146667pt;}
.x7_c00131{left:392.453333pt;}
.xbb_c00131{left:394.746667pt;}
.x98_c00131{left:396.293333pt;}
.xcc_c00131{left:400.893333pt;}
.x13_c00131{left:403.200000pt;}
.x3a_c00131{left:411.653333pt;}
.xa3_c00131{left:413.186667pt;}
.x2e_c00131{left:417.026667pt;}
.x56_c00131{left:418.560000pt;}
.xab_c00131{left:420.093333pt;}
.x1d_c00131{left:421.626667pt;}
.xce_c00131{left:423.933333pt;}
.x46_c00131{left:427.773333pt;}
.x6f_c00131{left:430.853333pt;}
.x5d_c00131{left:432.386667pt;}
.xbc_c00131{left:436.226667pt;}
.x8_c00131{left:437.760000pt;}
.x3b_c00131{left:440.826667pt;}
.xd1_c00131{left:443.133333pt;}
.xcf_c00131{left:444.666667pt;}
.x14_c00131{left:446.213333pt;}
.xe2_c00131{left:450.813333pt;}
.x9_c00131{left:455.426667pt;}
.x1e_c00131{left:456.960000pt;}
.x3c_c00131{left:460.800000pt;}
.xdc_c00131{left:462.333333pt;}
.x2f_c00131{left:464.640000pt;}
.x72_c00131{left:468.480000pt;}
.x7a_c00131{left:470.786667pt;}
.x87_c00131{left:473.093333pt;}
.xd5_c00131{left:476.160000pt;}
.x15_c00131{left:479.226667pt;}
.xa_c00131{left:483.840000pt;}
.xbf_c00131{left:486.146667pt;}
.x47_c00131{left:487.680000pt;}
.xc6_c00131{left:489.986667pt;}
.x1f_c00131{left:491.520000pt;}
.x27_c00131{left:493.053333pt;}
.xd6_c00131{left:495.360000pt;}
.xb_c00131{left:497.666667pt;}
.x28_c00131{left:503.040000pt;}
.xb1_c00131{left:505.346667pt;}
.x70_c00131{left:507.653333pt;}
.xb8_c00131{left:509.186667pt;}
.x16_c00131{left:513.026667pt;}
.x7b_c00131{left:515.333333pt;}
.xc_c00131{left:518.400000pt;}
.x73_c00131{left:519.933333pt;}
.x66_c00131{left:521.466667pt;}
.x5e_c00131{left:525.306667pt;}
.x30_c00131{left:528.386667pt;}
.x3d_c00131{left:529.920000pt;}
.x17_c00131{left:533.760000pt;}
.xb2_c00131{left:535.293333pt;}
.x9b_c00131{left:536.826667pt;}
.x67_c00131{left:539.906667pt;}
.xd_c00131{left:542.973333pt;}
.xb3_c00131{left:545.280000pt;}
.x9c_c00131{left:546.813333pt;}
.x80_c00131{left:549.120000pt;}
.x3e_c00131{left:550.653333pt;}
.x48_c00131{left:552.960000pt;}
.xdd_c00131{left:556.026667pt;}
.x88_c00131{left:559.106667pt;}
.xc0_c00131{left:560.640000pt;}
.xb9_c00131{left:562.946667pt;}
.xac_c00131{left:568.320000pt;}
.x31_c00131{left:569.853333pt;}
.xc7_c00131{left:572.933333pt;}
.xea_c00131{left:581.373333pt;}
.xe_c00131{left:582.906667pt;}
.x74_c00131{left:587.520000pt;}
.x50_c00131{left:589.053333pt;}
.x20_c00131{left:591.360000pt;}
.xe6_c00131{left:592.893333pt;}
.x68_c00131{left:595.200000pt;}
.x5f_c00131{left:596.733333pt;}
.xa5_c00131{left:602.106667pt;}
.xd0_c00131{left:604.413333pt;}
.x18_c00131{left:605.946667pt;}
.x95_c00131{left:608.253333pt;}
.xcd_c00131{left:609.786667pt;}
.x49_c00131{left:612.093333pt;}
.x29_c00131{left:613.626667pt;}
.x60_c00131{left:615.933333pt;}
.x21_c00131{left:618.240000pt;}
.x7c_c00131{left:619.773333pt;}
.x9d_c00131{left:622.080000pt;}
.x3f_c00131{left:623.613333pt;}
.x75_c00131{left:625.920000pt;}
.x89_c00131{left:629.760000pt;}
.xad_c00131{left:632.066667pt;}
.x61_c00131{left:633.600000pt;}
.xa6_c00131{left:636.666667pt;}
.x32_c00131{left:639.746667pt;}
.x9e_c00131{left:641.280000pt;}
.xe3_c00131{left:643.586667pt;}
.xc8_c00131{left:645.120000pt;}
.xd8_c00131{left:646.653333pt;}
.x51_c00131{left:648.186667pt;}
.x4a_c00131{left:650.493333pt;}
.x2a_c00131{left:652.800000pt;}
.xd2_c00131{left:654.333333pt;}
.xde_c00131{left:656.640000pt;}
.xeb_c00131{left:658.946667pt;}
.xc9_c00131{left:665.853333pt;}
.x22_c00131{left:668.160000pt;}
.x8e_c00131{left:672.773333pt;}
.x40_c00131{left:674.306667pt;}
.x76_c00131{left:676.613333pt;}
.xa7_c00131{left:678.146667pt;}
.x96_c00131{left:679.680000pt;}
.x8a_c00131{left:681.213333pt;}
.x52_c00131{left:683.520000pt;}
.x85_c00131{left:686.586667pt;}
.x23_c00131{left:688.133333pt;}
.x4b_c00131{left:689.666667pt;}
.x57_c00131{left:691.973333pt;}
.x33_c00131{left:694.266667pt;}
.xdf_c00131{left:699.653333pt;}
.x81_c00131{left:701.946667pt;}
.x8b_c00131{left:704.253333pt;}
.xbd_c00131{left:708.093333pt;}
.xd9_c00131{left:711.173333pt;}
.xe4_c00131{left:713.466667pt;}
.xae_c00131{left:715.013333pt;}
.x4c_c00131{left:716.546667pt;}
.x62_c00131{left:721.920000pt;}
.xc1_c00131{left:724.986667pt;}
.xa8_c00131{left:727.293333pt;}
.xb4_c00131{left:729.600000pt;}
.xc2_c00131{left:734.973333pt;}
.x82_c00131{left:737.280000pt;}
.xba_c00131{left:739.586667pt;}
.x63_c00131{left:741.120000pt;}
.x34_c00131{left:743.426667pt;}
.x77_c00131{left:748.026667pt;}
.xc3_c00131{left:751.866667pt;}
.xaf_c00131{left:753.413333pt;}
.x58_c00131{left:754.946667pt;}
.xf_c00131{left:757.253333pt;}
.xe7_c00131{left:759.546667pt;}
.x59_c00131{left:764.160000pt;}
.x69_c00131{left:769.533333pt;}
.xbe_c00131{left:771.840000pt;}
.x9f_c00131{left:773.373333pt;}
.x83_c00131{left:774.906667pt;}
.x5a_c00131{left:777.213333pt;}
.x78_c00131{left:779.520000pt;}
.xd3_c00131{left:781.053333pt;}
.x2b_c00131{left:783.360000pt;}
.xe0_c00131{left:786.426667pt;}
.x8f_c00131{left:788.733333pt;}
.xca_c00131{left:791.813333pt;}
.x7d_c00131{left:797.946667pt;}
.xcb_c00131{left:806.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_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_99900e9505e9db6b75164006.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m192_c00132{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m169_c00132{transform:matrix(0.094650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094650,0.000000,0.000000,0.250000,0,0);}
.m183_c00132{transform:matrix(0.095800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095800,0.000000,0.000000,0.250000,0,0);}
.m1a_c00132{transform:matrix(0.097175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097175,0.000000,0.000000,0.250000,0,0);}
.m72_c00132{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);}
.m36_c00132{transform:matrix(0.102875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102875,0.000000,0.000000,0.250000,0,0);}
.m47_c00132{transform:matrix(0.103450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103450,0.000000,0.000000,0.250000,0,0);}
.m42_c00132{transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);}
.mcd_c00132{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m152_c00132{transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);}
.m15_c00132{transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);}
.m167_c00132{transform:matrix(0.116325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116325,0.000000,0.000000,0.250000,0,0);}
.m10d_c00132{transform:matrix(0.116375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116375,0.000000,0.000000,0.250000,0,0);}
.mf0_c00132{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m35_c00132{transform:matrix(0.121600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121600,0.000000,0.000000,0.250000,0,0);}
.m4a_c00132{transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);}
.m16f_c00132{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m110_c00132{transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);}
.m10a_c00132{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00132{transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);}
.m1_c00132{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m174_c00132{transform:matrix(0.130125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130125,0.000000,0.000000,0.250000,0,0);}
.m18c_c00132{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m182_c00132{transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);}
.ma2_c00132{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.m32_c00132{transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);}
.m16e_c00132{transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);}
.m44_c00132{transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);}
.m3d_c00132{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);}
.m33_c00132{transform:matrix(0.138400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138400,0.000000,0.000000,0.250000,0,0);}
.med_c00132{transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);}
.m165_c00132{transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);}
.mcf_c00132{transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);}
.m159_c00132{transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);}
.m168_c00132{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m17f_c00132{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);}
.mc5_c00132{transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);}
.ma_c00132{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.m170_c00132{transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);}
.m1e_c00132{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00132{transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);}
.m18_c00132{transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);}
.mb4_c00132{transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);}
.m7c_c00132{transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);}
.m1d_c00132{transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);}
.m177_c00132{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);}
.m3_c00132{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m185_c00132{transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);}
.m13e_c00132{transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);}
.m166_c00132{transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);}
.m80_c00132{transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);}
.m14e_c00132{transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);}
.m48_c00132{transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);}
.m4b_c00132{transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);}
.mf7_c00132{transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);}
.m142_c00132{transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);}
.m16b_c00132{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);}
.mdb_c00132{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m164_c00132{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.m29_c00132{transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);}
.m11a_c00132{transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);}
.m3b_c00132{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.m51_c00132{transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);}
.m15b_c00132{transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);}
.m106_c00132{transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);}
.m2e_c00132{transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);}
.m153_c00132{transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);}
.m17e_c00132{transform:matrix(0.153575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153575,0.000000,0.000000,0.250000,0,0);}
.m7b_c00132{transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);}
.m3c_c00132{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m184_c00132{transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);}
.m124_c00132{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m15d_c00132{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m133_c00132{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.m121_c00132{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.md4_c00132{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.m78_c00132{transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);}
.m14d_c00132{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.m7e_c00132{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.mf2_c00132{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);}
.m176_c00132{transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);}
.m150_c00132{transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);}
.m34_c00132{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.maa_c00132{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);}
.m2c_c00132{transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);}
.m7f_c00132{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.mf9_c00132{transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);}
.m158_c00132{transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);}
.m49_c00132{transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);}
.m109_c00132{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m84_c00132{transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);}
.m15a_c00132{transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);}
.m68_c00132{transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);}
.m45_c00132{transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);}
.m6f_c00132{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.mfb_c00132{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);}
.m131_c00132{transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);}
.m151_c00132{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);}
.m126_c00132{transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);}
.m98_c00132{transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);}
.me7_c00132{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m13d_c00132{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.m5b_c00132{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.m66_c00132{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.m8a_c00132{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m18f_c00132{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);}
.m187_c00132{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);}
.mb6_c00132{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);}
.m120_c00132{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m23_c00132{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00132{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.m13f_c00132{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.me0_c00132{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m20_c00132{transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);}
.m111_c00132{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m17b_c00132{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.mbb_c00132{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);}
.m3f_c00132{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);}
.m37_c00132{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.m79_c00132{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m5a_c00132{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.m69_c00132{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m11f_c00132{transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);}
.m16a_c00132{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);}
.m103_c00132{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.me3_c00132{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);}
.m74_c00132{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);}
.mda_c00132{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m73_c00132{transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);}
.md0_c00132{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);}
.m171_c00132{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);}
.m118_c00132{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.m7d_c00132{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);}
.m130_c00132{transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);}
.m91_c00132{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.mfc_c00132{transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);}
.m5c_c00132{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.m6a_c00132{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.m77_c00132{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m94_c00132{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);}
.m39_c00132{transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);}
.m17a_c00132{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.mb7_c00132{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);}
.m8c_c00132{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m189_c00132{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);}
.me9_c00132{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m112_c00132{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);}
.m16c_c00132{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);}
.m11b_c00132{transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);}
.m19_c00132{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);}
.m5d_c00132{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.mcb_c00132{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m5f_c00132{transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);}
.m12a_c00132{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.m132_c00132{transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);}
.mb9_c00132{transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);}
.m12c_c00132{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.mec_c00132{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.mba_c00132{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);}
.mb8_c00132{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m186_c00132{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);}
.me6_c00132{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m15c_c00132{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.m143_c00132{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);}
.m105_c00132{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);}
.m17_c00132{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00132{transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);}
.mac_c00132{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);}
.mab_c00132{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.m17d_c00132{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.md5_c00132{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);}
.m122_c00132{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.mc9_c00132{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);}
.m6c_c00132{transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);}
.m12b_c00132{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m178_c00132{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);}
.m11d_c00132{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);}
.m18b_c00132{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_c00132{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.md9_c00132{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.m138_c00132{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00132{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);}
.mbe_c00132{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m137_c00132{transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);}
.m86_c00132{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);}
.m6e_c00132{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m81_c00132{transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);}
.meb_c00132{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);}
.me2_c00132{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.m9e_c00132{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);}
.m125_c00132{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m162_c00132{transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);}
.m123_c00132{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m144_c00132{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m180_c00132{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m76_c00132{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.mca_c00132{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m61_c00132{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);}
.m25_c00132{transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);}
.m70_c00132{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);}
.m63_c00132{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m4c_c00132{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);}
.m96_c00132{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m88_c00132{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);}
.m43_c00132{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m92_c00132{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);}
.m5e_c00132{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.m146_c00132{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);}
.m11e_c00132{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.m12f_c00132{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m155_c00132{transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);}
.m10_c00132{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);}
.mfd_c00132{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m14b_c00132{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);}
.m2f_c00132{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m1c_c00132{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.me4_c00132{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.m85_c00132{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);}
.m13b_c00132{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.mf4_c00132{transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);}
.m160_c00132{transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);}
.m9d_c00132{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.m115_c00132{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.mea_c00132{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.m161_c00132{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m59_c00132{transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);}
.ma4_c00132{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);}
.m71_c00132{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);}
.me_c00132{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m102_c00132{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);}
.m188_c00132{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);}
.m107_c00132{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m135_c00132{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);}
.mc8_c00132{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);}
.mee_c00132{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mad_c00132{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.mf8_c00132{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);}
.m139_c00132{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.mbd_c00132{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m175_c00132{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);}
.m128_c00132{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);}
.me5_c00132{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.mc2_c00132{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);}
.mf6_c00132{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);}
.m10b_c00132{transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);}
.m134_c00132{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m2b_c00132{transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);}
.m114_c00132{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.mff_c00132{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);}
.m83_c00132{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);}
.m163_c00132{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.m140_c00132{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m18d_c00132{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);}
.m8d_c00132{transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);}
.m13c_c00132{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);}
.m129_c00132{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);}
.m9f_c00132{transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);}
.m154_c00132{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);}
.m17c_c00132{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);}
.md3_c00132{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m56_c00132{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);}
.md_c00132{transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);}
.m24_c00132{transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);}
.m82_c00132{transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);}
.m116_c00132{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_c00132{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);}
.m18e_c00132{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);}
.ma0_c00132{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);}
.m179_c00132{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.m6b_c00132{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.m157_c00132{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);}
.m1f_c00132{transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);}
.me8_c00132{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);}
.m119_c00132{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.m41_c00132{transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);}
.m108_c00132{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);}
.m3a_c00132{transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);}
.m15e_c00132{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);}
.m8b_c00132{transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);}
.m16_c00132{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);}
.md7_c00132{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);}
.m127_c00132{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.mfe_c00132{transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);}
.m15f_c00132{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);}
.md1_c00132{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);}
.m136_c00132{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m9c_c00132{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.mce_c00132{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);}
.m90_c00132{transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);}
.m95_c00132{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mc6_c00132{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);}
.m141_c00132{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m8_c00132{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);}
.m181_c00132{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);}
.mdc_c00132{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);}
.m0_c00132{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);}
.maf_c00132{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m62_c00132{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);}
.m4d_c00132{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);}
.mcc_c00132{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);}
.m104_c00132{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.mf3_c00132{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);}
.m16d_c00132{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);}
.mc0_c00132{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m89_c00132{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.m53_c00132{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);}
.ma5_c00132{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);}
.m3e_c00132{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);}
.m93_c00132{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.mfa_c00132{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m99_c00132{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m12e_c00132{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);}
.m14c_c00132{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m26_c00132{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);}
.m57_c00132{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m87_c00132{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);}
.m67_c00132{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);}
.m75_c00132{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);}
.m4f_c00132{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);}
.ma1_c00132{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00132{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m64_c00132{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.md6_c00132{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);}
.m11_c00132{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9_c00132{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);}
.m54_c00132{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);}
.m52_c00132{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m55_c00132{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);}
.m6_c00132{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00132{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mde_c00132{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);}
.m173_c00132{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00132{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);}
.ma7_c00132{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);}
.mc3_c00132{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00132{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00132{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);}
.m4_c00132{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00132{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m113_c00132{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);}
.mb5_c00132{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00132{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00132{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m60_c00132{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m50_c00132{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m65_c00132{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00132{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me1_c00132{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);}
.m9a_c00132{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00132{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c00132{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mef_c00132{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00132{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m46_c00132{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md2_c00132{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m100_c00132{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00132{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m58_c00132{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);}
.m27_c00132{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m30_c00132{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);}
.m18a_c00132{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m97_c00132{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m13_c00132{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);}
.m5_c00132{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00132{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mae_c00132{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m14f_c00132{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m101_c00132{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00132{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00132{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);}
.mf5_c00132{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00132{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);}
.m2d_c00132{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf_c00132{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00132{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00132{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00132{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_c00132{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m14a_c00132{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m22_c00132{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00132{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m156_c00132{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00132{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m117_c00132{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m28_c00132{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00132{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m193_c00132{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m190_c00132{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);}
.md8_c00132{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m38_c00132{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m172_c00132{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);}
.m9b_c00132{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00132{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m40_c00132{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m14_c00132{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00132{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m31_c00132{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m191_c00132{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m13a_c00132{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m147_c00132{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m148_c00132{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);}
.m11c_c00132{transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);}
.m145_c00132{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m149_c00132{transform:matrix(2.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.002500,0.000000,0.000000,0.250000,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;}
.fs6_c00132{font-size:3.456000px;}
.fs28_c00132{font-size:6.000000px;}
.fs1f_c00132{font-size:6.900000px;}
.fs21_c00132{font-size:10.380000px;}
.fs24_c00132{font-size:13.800000px;}
.fs0_c00132{font-size:17.280000px;}
.fs23_c00132{font-size:20.760000px;}
.fs1_c00132{font-size:24.180000px;}
.fs1e_c00132{font-size:27.660000px;}
.fs5_c00132{font-size:31.080000px;}
.fs20_c00132{font-size:34.560000px;}
.fs11_c00132{font-size:38.040000px;}
.fs3_c00132{font-size:41.460000px;}
.fs7_c00132{font-size:44.940000px;}
.fs16_c00132{font-size:48.360000px;}
.fs1c_c00132{font-size:51.840000px;}
.fs1a_c00132{font-size:55.320000px;}
.fs14_c00132{font-size:58.740000px;}
.fs1d_c00132{font-size:62.220000px;}
.fsb_c00132{font-size:65.640000px;}
.fs9_c00132{font-size:69.120000px;}
.fs8_c00132{font-size:72.600000px;}
.fsa_c00132{font-size:76.020000px;}
.fs1b_c00132{font-size:79.500000px;}
.fs13_c00132{font-size:82.920000px;}
.fs15_c00132{font-size:86.400000px;}
.fs12_c00132{font-size:89.880000px;}
.fs4_c00132{font-size:93.300000px;}
.fs10_c00132{font-size:96.780000px;}
.fsd_c00132{font-size:100.200000px;}
.fsf_c00132{font-size:103.680000px;}
.fs22_c00132{font-size:107.160000px;}
.fs19_c00132{font-size:110.580000px;}
.fs17_c00132{font-size:114.060000px;}
.fse_c00132{font-size:117.480000px;}
.fs27_c00132{font-size:120.960000px;}
.fs18_c00132{font-size:124.440000px;}
.fs26_c00132{font-size:127.860000px;}
.fs25_c00132{font-size:131.340000px;}
.fsc_c00132{font-size:138.240000px;}
.fs2_c00132{font-size:159.000000px;}
.y0_c00132{bottom:0.000000px;}
.y174_c00132{bottom:95.910000px;}
.y173_c00132{bottom:109.725000px;}
.y172_c00132{bottom:146.880000px;}
.y170_c00132{bottom:155.520000px;}
.y171_c00132{bottom:158.970000px;}
.y16b_c00132{bottom:205.635000px;}
.y16a_c00132{bottom:211.680000px;}
.y168_c00132{bottom:220.320000px;}
.y166_c00132{bottom:221.190000px;}
.y169_c00132{bottom:222.915000px;}
.y167_c00132{bottom:223.770000px;}
.y163_c00132{bottom:224.640000px;}
.y15f_c00132{bottom:225.510000px;}
.y165_c00132{bottom:226.365000px;}
.y160_c00132{bottom:227.235000px;}
.y162_c00132{bottom:228.960000px;}
.y164_c00132{bottom:229.830000px;}
.y161_c00132{bottom:230.685000px;}
.y15e_c00132{bottom:246.240000px;}
.y15d_c00132{bottom:248.835000px;}
.y15b_c00132{bottom:254.880000px;}
.y15c_c00132{bottom:256.605000px;}
.y15a_c00132{bottom:273.885000px;}
.y159_c00132{bottom:276.480000px;}
.y158_c00132{bottom:277.350000px;}
.y156_c00132{bottom:278.205000px;}
.y157_c00132{bottom:279.075000px;}
.y155_c00132{bottom:285.120000px;}
.y154_c00132{bottom:299.805000px;}
.y153_c00132{bottom:301.530000px;}
.y14f_c00132{bottom:304.125000px;}
.y150_c00132{bottom:305.850000px;}
.y151_c00132{bottom:306.720000px;}
.y152_c00132{bottom:310.170000px;}
.y14e_c00132{bottom:318.810000px;}
.y14d_c00132{bottom:322.275000px;}
.y143_c00132{bottom:324.870000px;}
.y14a_c00132{bottom:326.595000px;}
.y149_c00132{bottom:327.450000px;}
.y148_c00132{bottom:328.320000px;}
.y142_c00132{bottom:330.915000px;}
.y14b_c00132{bottom:331.770000px;}
.y145_c00132{bottom:332.640000px;}
.y146_c00132{bottom:335.235000px;}
.y147_c00132{bottom:336.090000px;}
.y144_c00132{bottom:336.960000px;}
.y140_c00132{bottom:348.195000px;}
.y14c_c00132{bottom:349.050000px;}
.y13f_c00132{bottom:350.790000px;}
.y13e_c00132{bottom:351.645000px;}
.y13a_c00132{bottom:354.240000px;}
.y141_c00132{bottom:355.110000px;}
.y13d_c00132{bottom:355.965000px;}
.y13c_c00132{bottom:362.010000px;}
.y13b_c00132{bottom:362.880000px;}
.y139_c00132{bottom:373.245000px;}
.y138_c00132{bottom:374.970000px;}
.y137_c00132{bottom:376.710000px;}
.y136_c00132{bottom:378.435000px;}
.y135_c00132{bottom:380.160000px;}
.y134_c00132{bottom:388.800000px;}
.y132_c00132{bottom:402.630000px;}
.y131_c00132{bottom:403.485000px;}
.y12f_c00132{bottom:404.355000px;}
.y133_c00132{bottom:405.210000px;}
.y12c_c00132{bottom:406.080000px;}
.y130_c00132{bottom:406.950000px;}
.y12e_c00132{bottom:408.675000px;}
.y12d_c00132{bottom:412.995000px;}
.y12a_c00132{bottom:425.955000px;}
.y127_c00132{bottom:428.550000px;}
.y125_c00132{bottom:429.405000px;}
.y12b_c00132{bottom:430.275000px;}
.y126_c00132{bottom:431.130000px;}
.y129_c00132{bottom:433.725000px;}
.y128_c00132{bottom:435.450000px;}
.y120_c00132{bottom:455.325000px;}
.y123_c00132{bottom:456.195000px;}
.y122_c00132{bottom:457.920000px;}
.y121_c00132{bottom:458.790000px;}
.y11f_c00132{bottom:472.605000px;}
.y124_c00132{bottom:473.475000px;}
.y11e_c00132{bottom:475.200000px;}
.y11d_c00132{bottom:478.650000px;}
.y11c_c00132{bottom:480.390000px;}
.y11b_c00132{bottom:482.115000px;}
.y118_c00132{bottom:482.970000px;}
.y11a_c00132{bottom:488.160000px;}
.y119_c00132{bottom:489.030000px;}
.y117_c00132{bottom:498.525000px;}
.y115_c00132{bottom:502.845000px;}
.y113_c00132{bottom:505.440000px;}
.y111_c00132{bottom:507.165000px;}
.y116_c00132{bottom:508.035000px;}
.y112_c00132{bottom:511.485000px;}
.y114_c00132{bottom:512.355000px;}
.y110_c00132{bottom:525.315000px;}
.y10d_c00132{bottom:528.765000px;}
.y10b_c00132{bottom:529.635000px;}
.y106_c00132{bottom:530.490000px;}
.y109_c00132{bottom:531.360000px;}
.y10a_c00132{bottom:532.230000px;}
.y10f_c00132{bottom:533.085000px;}
.y10e_c00132{bottom:533.955000px;}
.y10c_c00132{bottom:534.810000px;}
.y107_c00132{bottom:535.680000px;}
.y108_c00132{bottom:536.550000px;}
.y104_c00132{bottom:551.235000px;}
.y103_c00132{bottom:552.960000px;}
.y100_c00132{bottom:554.685000px;}
.y105_c00132{bottom:555.555000px;}
.yfe_c00132{bottom:560.730000px;}
.y102_c00132{bottom:561.600000px;}
.yff_c00132{bottom:562.470000px;}
.y101_c00132{bottom:563.325000px;}
.yfd_c00132{bottom:576.285000px;}
.yfc_c00132{bottom:579.750000px;}
.yfb_c00132{bottom:580.605000px;}
.yfa_c00132{bottom:583.200000px;}
.yf9_c00132{bottom:602.205000px;}
.yf8_c00132{bottom:603.075000px;}
.yf7_c00132{bottom:605.670000px;}
.yf5_c00132{bottom:610.845000px;}
.yf6_c00132{bottom:612.570000px;}
.yf2_c00132{bottom:628.995000px;}
.yf1_c00132{bottom:629.850000px;}
.yee_c00132{bottom:632.445000px;}
.yf0_c00132{bottom:637.635000px;}
.yf3_c00132{bottom:638.490000px;}
.yef_c00132{bottom:640.230000px;}
.yf4_c00132{bottom:642.810000px;}
.yeb_c00132{bottom:654.045000px;}
.yed_c00132{bottom:656.640000px;}
.ye7_c00132{bottom:657.510000px;}
.yec_c00132{bottom:658.365000px;}
.yea_c00132{bottom:659.235000px;}
.ye9_c00132{bottom:660.960000px;}
.ye8_c00132{bottom:661.830000px;}
.ye6_c00132{bottom:673.050000px;}
.ye3_c00132{bottom:674.790000px;}
.ye5_c00132{bottom:676.515000px;}
.ye1_c00132{bottom:677.370000px;}
.ye0_c00132{bottom:679.110000px;}
.ye4_c00132{bottom:681.690000px;}
.ye2_c00132{bottom:686.880000px;}
.ydf_c00132{bottom:696.390000px;}
.yde_c00132{bottom:702.435000px;}
.ydd_c00132{bottom:704.160000px;}
.ydb_c00132{bottom:705.030000px;}
.yd8_c00132{bottom:706.755000px;}
.yd7_c00132{bottom:708.480000px;}
.yd9_c00132{bottom:709.350000px;}
.ydc_c00132{bottom:711.075000px;}
.yda_c00132{bottom:711.930000px;}
.yd3_c00132{bottom:727.485000px;}
.yd6_c00132{bottom:728.355000px;}
.yd1_c00132{bottom:729.210000px;}
.yce_c00132{bottom:730.950000px;}
.yd5_c00132{bottom:731.805000px;}
.yd4_c00132{bottom:732.675000px;}
.ycd_c00132{bottom:734.400000px;}
.yd2_c00132{bottom:736.125000px;}
.yd0_c00132{bottom:736.995000px;}
.ycf_c00132{bottom:737.850000px;}
.ycc_c00132{bottom:750.810000px;}
.ycb_c00132{bottom:752.550000px;}
.yc8_c00132{bottom:755.130000px;}
.yc7_c00132{bottom:756.000000px;}
.yc5_c00132{bottom:756.870000px;}
.yca_c00132{bottom:757.725000px;}
.yc9_c00132{bottom:760.320000px;}
.yc6_c00132{bottom:762.045000px;}
.yc0_c00132{bottom:777.600000px;}
.yc2_c00132{bottom:778.470000px;}
.ybf_c00132{bottom:780.195000px;}
.ybe_c00132{bottom:781.050000px;}
.yc4_c00132{bottom:781.920000px;}
.ybc_c00132{bottom:782.790000px;}
.ybd_c00132{bottom:783.645000px;}
.yc3_c00132{bottom:784.515000px;}
.yc1_c00132{bottom:785.370000px;}
.ybb_c00132{bottom:801.795000px;}
.yba_c00132{bottom:802.650000px;}
.yb5_c00132{bottom:803.520000px;}
.yb6_c00132{bottom:805.245000px;}
.yb8_c00132{bottom:806.115000px;}
.yb9_c00132{bottom:806.970000px;}
.yb4_c00132{bottom:807.840000px;}
.yb7_c00132{bottom:811.290000px;}
.yb3_c00132{bottom:812.160000px;}
.yb2_c00132{bottom:813.030000px;}
.yb0_c00132{bottom:825.990000px;}
.yaf_c00132{bottom:826.845000px;}
.yae_c00132{bottom:827.715000px;}
.yaa_c00132{bottom:831.165000px;}
.yad_c00132{bottom:832.035000px;}
.yab_c00132{bottom:833.760000px;}
.yb1_c00132{bottom:834.630000px;}
.yac_c00132{bottom:835.485000px;}
.ya9_c00132{bottom:851.040000px;}
.ya8_c00132{bottom:851.910000px;}
.ya5_c00132{bottom:852.765000px;}
.ya6_c00132{bottom:853.635000px;}
.ya7_c00132{bottom:854.490000px;}
.ya2_c00132{bottom:857.955000px;}
.ya3_c00132{bottom:859.680000px;}
.ya1_c00132{bottom:860.550000px;}
.ya4_c00132{bottom:861.405000px;}
.ya0_c00132{bottom:862.275000px;}
.y9c_c00132{bottom:876.960000px;}
.y9b_c00132{bottom:877.830000px;}
.y9a_c00132{bottom:879.555000px;}
.y9f_c00132{bottom:882.150000px;}
.y9e_c00132{bottom:883.875000px;}
.y9d_c00132{bottom:884.730000px;}
.y99_c00132{bottom:887.325000px;}
.y95_c00132{bottom:902.880000px;}
.y96_c00132{bottom:903.750000px;}
.y94_c00132{bottom:904.605000px;}
.y97_c00132{bottom:906.330000px;}
.y91_c00132{bottom:908.070000px;}
.y98_c00132{bottom:908.925000px;}
.y93_c00132{bottom:909.795000px;}
.y92_c00132{bottom:911.520000px;}
.y90_c00132{bottom:924.480000px;}
.y8c_c00132{bottom:927.930000px;}
.y87_c00132{bottom:928.800000px;}
.y8b_c00132{bottom:929.670000px;}
.y8e_c00132{bottom:930.525000px;}
.y8f_c00132{bottom:931.395000px;}
.y8d_c00132{bottom:932.250000px;}
.y89_c00132{bottom:933.990000px;}
.y8a_c00132{bottom:935.715000px;}
.y88_c00132{bottom:936.570000px;}
.y86_c00132{bottom:937.440000px;}
.y83_c00132{bottom:953.850000px;}
.y80_c00132{bottom:954.720000px;}
.y16f_c00132{bottom:956.445000px;}
.y84_c00132{bottom:957.315000px;}
.y82_c00132{bottom:959.040000px;}
.y85_c00132{bottom:960.765000px;}
.y81_c00132{bottom:961.635000px;}
.y7e_c00132{bottom:977.190000px;}
.y7a_c00132{bottom:978.915000px;}
.y7f_c00132{bottom:979.770000px;}
.y78_c00132{bottom:980.640000px;}
.y7d_c00132{bottom:981.510000px;}
.y77_c00132{bottom:983.235000px;}
.y7b_c00132{bottom:984.960000px;}
.y7c_c00132{bottom:985.830000px;}
.y79_c00132{bottom:986.685000px;}
.y76_c00132{bottom:1003.110000px;}
.y74_c00132{bottom:1003.965000px;}
.y73_c00132{bottom:1004.835000px;}
.y71_c00132{bottom:1008.285000px;}
.y75_c00132{bottom:1009.155000px;}
.y72_c00132{bottom:1010.880000px;}
.y70_c00132{bottom:1012.605000px;}
.y6f_c00132{bottom:1029.030000px;}
.y6b_c00132{bottom:1029.885000px;}
.y6d_c00132{bottom:1030.755000px;}
.y6c_c00132{bottom:1032.480000px;}
.y6a_c00132{bottom:1033.350000px;}
.y6e_c00132{bottom:1037.670000px;}
.y69_c00132{bottom:1054.080000px;}
.y65_c00132{bottom:1055.805000px;}
.y64_c00132{bottom:1058.400000px;}
.y68_c00132{bottom:1059.270000px;}
.y66_c00132{bottom:1060.995000px;}
.y67_c00132{bottom:1061.850000px;}
.y60_c00132{bottom:1080.000000px;}
.y5e_c00132{bottom:1080.870000px;}
.y63_c00132{bottom:1084.320000px;}
.y5f_c00132{bottom:1085.190000px;}
.y61_c00132{bottom:1086.045000px;}
.y62_c00132{bottom:1086.915000px;}
.y5c_c00132{bottom:1103.325000px;}
.y5b_c00132{bottom:1104.195000px;}
.y59_c00132{bottom:1105.050000px;}
.y57_c00132{bottom:1105.920000px;}
.y5a_c00132{bottom:1106.790000px;}
.y58_c00132{bottom:1109.370000px;}
.y16e_c00132{bottom:1110.240000px;}
.y5d_c00132{bottom:1111.965000px;}
.y56_c00132{bottom:1128.390000px;}
.y55_c00132{bottom:1129.245000px;}
.y53_c00132{bottom:1130.115000px;}
.y52_c00132{bottom:1130.970000px;}
.y51_c00132{bottom:1131.840000px;}
.y4f_c00132{bottom:1132.710000px;}
.y54_c00132{bottom:1135.290000px;}
.y50_c00132{bottom:1137.030000px;}
.y4e_c00132{bottom:1154.310000px;}
.y49_c00132{bottom:1155.165000px;}
.y4c_c00132{bottom:1156.035000px;}
.y4d_c00132{bottom:1157.760000px;}
.y4b_c00132{bottom:1158.630000px;}
.y48_c00132{bottom:1159.485000px;}
.y4a_c00132{bottom:1162.950000px;}
.y46_c00132{bottom:1175.910000px;}
.y44_c00132{bottom:1178.490000px;}
.y47_c00132{bottom:1179.360000px;}
.y41_c00132{bottom:1181.085000px;}
.y40_c00132{bottom:1183.680000px;}
.y3f_c00132{bottom:1185.405000px;}
.y45_c00132{bottom:1186.275000px;}
.y43_c00132{bottom:1188.000000px;}
.y42_c00132{bottom:1188.870000px;}
.y3e_c00132{bottom:1203.555000px;}
.y3d_c00132{bottom:1204.410000px;}
.y3b_c00132{bottom:1206.150000px;}
.y3a_c00132{bottom:1207.005000px;}
.y3c_c00132{bottom:1207.875000px;}
.y38_c00132{bottom:1211.325000px;}
.y39_c00132{bottom:1213.050000px;}
.y37_c00132{bottom:1227.750000px;}
.y34_c00132{bottom:1228.605000px;}
.y32_c00132{bottom:1230.330000px;}
.y31_c00132{bottom:1231.200000px;}
.y36_c00132{bottom:1233.795000px;}
.y35_c00132{bottom:1237.245000px;}
.y33_c00132{bottom:1238.115000px;}
.y16d_c00132{bottom:1240.710000px;}
.y2f_c00132{bottom:1248.480000px;}
.y2a_c00132{bottom:1250.205000px;}
.y2c_c00132{bottom:1251.075000px;}
.y2d_c00132{bottom:1251.930000px;}
.y30_c00132{bottom:1252.800000px;}
.y2e_c00132{bottom:1254.525000px;}
.y29_c00132{bottom:1256.250000px;}
.y2b_c00132{bottom:1263.165000px;}
.y22_c00132{bottom:1279.590000px;}
.y24_c00132{bottom:1280.445000px;}
.y26_c00132{bottom:1281.315000px;}
.y23_c00132{bottom:1284.765000px;}
.y25_c00132{bottom:1286.490000px;}
.y27_c00132{bottom:1288.230000px;}
.y28_c00132{bottom:1289.085000px;}
.y20_c00132{bottom:1300.320000px;}
.y1f_c00132{bottom:1301.190000px;}
.y1e_c00132{bottom:1302.045000px;}
.y1a_c00132{bottom:1304.640000px;}
.y17_c00132{bottom:1305.510000px;}
.y1b_c00132{bottom:1306.365000px;}
.y18_c00132{bottom:1308.090000px;}
.y1d_c00132{bottom:1309.830000px;}
.y19_c00132{bottom:1312.410000px;}
.y1c_c00132{bottom:1313.280000px;}
.y21_c00132{bottom:1325.370000px;}
.y16_c00132{bottom:1328.835000px;}
.y11_c00132{bottom:1330.560000px;}
.y13_c00132{bottom:1331.430000px;}
.y14_c00132{bottom:1335.750000px;}
.y15_c00132{bottom:1337.475000px;}
.y12_c00132{bottom:1338.330000px;}
.y16c_c00132{bottom:1348.710000px;}
.ye_c00132{bottom:1351.290000px;}
.yd_c00132{bottom:1352.160000px;}
.yf_c00132{bottom:1354.755000px;}
.yc_c00132{bottom:1355.610000px;}
.y10_c00132{bottom:1366.845000px;}
.y8_c00132{bottom:1391.910000px;}
.y9_c00132{bottom:1392.765000px;}
.ya_c00132{bottom:1393.635000px;}
.yb_c00132{bottom:1394.490000px;}
.y5_c00132{bottom:1410.045000px;}
.y6_c00132{bottom:1419.555000px;}
.y4_c00132{bottom:1422.150000px;}
.y7_c00132{bottom:1428.195000px;}
.y3_c00132{bottom:1432.515000px;}
.y2_c00132{bottom:1446.330000px;}
.y1_c00132{bottom:1447.200000px;}
.h8_c00132{height:3.110063px;}
.h2a_c00132{height:5.399414px;}
.h21_c00132{height:6.209326px;}
.h23_c00132{height:9.340986px;}
.h26_c00132{height:12.418652px;}
.h2_c00132{height:15.550313px;}
.h25_c00132{height:18.681973px;}
.h3_c00132{height:21.759639px;}
.h20_c00132{height:24.891299px;}
.h7_c00132{height:27.968965px;}
.h22_c00132{height:31.100625px;}
.h13_c00132{height:34.232285px;}
.h5_c00132{height:37.309951px;}
.h9_c00132{height:40.441611px;}
.h18_c00132{height:43.519277px;}
.h1e_c00132{height:46.650937px;}
.h1c_c00132{height:49.782598px;}
.h16_c00132{height:52.860264px;}
.h1f_c00132{height:55.991924px;}
.hd_c00132{height:59.069590px;}
.hb_c00132{height:62.201250px;}
.ha_c00132{height:65.332910px;}
.hc_c00132{height:68.410576px;}
.h1d_c00132{height:71.542236px;}
.h15_c00132{height:74.619902px;}
.h17_c00132{height:77.751563px;}
.h14_c00132{height:80.883223px;}
.h6_c00132{height:83.960889px;}
.h12_c00132{height:87.092549px;}
.hf_c00132{height:90.170215px;}
.h11_c00132{height:93.301875px;}
.h24_c00132{height:96.433535px;}
.h1b_c00132{height:99.511201px;}
.h19_c00132{height:102.642861px;}
.h10_c00132{height:105.720527px;}
.h29_c00132{height:108.852188px;}
.h1a_c00132{height:111.983848px;}
.h28_c00132{height:115.061514px;}
.h27_c00132{height:118.193174px;}
.he_c00132{height:124.402500px;}
.h4_c00132{height:143.084473px;}
.h0_c00132{height:1517.190000px;}
.h1_c00132{height:1517.250000px;}
.w0_c00132{width:1090.365000px;}
.w1_c00132{width:1090.500000px;}
.x0_c00132{left:0.000000px;}
.x1_c00132{left:146.010000px;}
.x2_c00132{left:150.330000px;}
.xd4_c00132{left:194.400000px;}
.xb3_c00132{left:205.635000px;}
.xc9_c00132{left:216.000000px;}
.xd1_c00132{left:220.320000px;}
.x49_c00132{left:222.045000px;}
.x7d_c00132{left:224.640000px;}
.xcd_c00132{left:226.365000px;}
.xb4_c00132{left:228.960000px;}
.x28_c00132{left:230.685000px;}
.x9e_c00132{left:232.410000px;}
.x8_c00132{left:234.150000px;}
.x14_c00132{left:236.730000px;}
.x6d_c00132{left:246.240000px;}
.xee_c00132{left:250.560000px;}
.xd6_c00132{left:254.880000px;}
.x29_c00132{left:258.330000px;}
.x88_c00132{left:261.795000px;}
.x76_c00132{left:263.520000px;}
.xb5_c00132{left:265.245000px;}
.x3c_c00132{left:266.970000px;}
.x4a_c00132{left:269.565000px;}
.xd2_c00132{left:271.290000px;}
.xc5_c00132{left:274.755000px;}
.x50_c00132{left:281.670000px;}
.x1d_c00132{left:283.395000px;}
.x90_c00132{left:287.715000px;}
.x3d_c00132{left:289.440000px;}
.x43_c00132{left:291.165000px;}
.x9f_c00132{left:292.890000px;}
.x63_c00132{left:294.630000px;}
.x6e_c00132{left:296.355000px;}
.xca_c00132{left:302.400000px;}
.x97_c00132{left:304.125000px;}
.xce_c00132{left:307.590000px;}
.xe8_c00132{left:309.315000px;}
.x91_c00132{left:311.910000px;}
.x73_c00132{left:314.490000px;}
.x6f_c00132{left:316.230000px;}
.xb8_c00132{left:319.680000px;}
.x3e_c00132{left:325.725000px;}
.x77_c00132{left:330.045000px;}
.xd9_c00132{left:338.685000px;}
.x64_c00132{left:340.410000px;}
.x8e_c00132{left:343.005000px;}
.x5e_c00132{left:344.730000px;}
.x4b_c00132{left:347.325000px;}
.xbb_c00132{left:349.920000px;}
.xda_c00132{left:351.645000px;}
.x70_c00132{left:353.370000px;}
.x44_c00132{left:355.110000px;}
.xcf_c00132{left:358.560000px;}
.x2a_c00132{left:362.010000px;}
.xac_c00132{left:363.750000px;}
.xbf_c00132{left:365.475000px;}
.x9_c00132{left:367.200000px;}
.xa0_c00132{left:371.520000px;}
.x36_c00132{left:374.115000px;}
.xa4_c00132{left:376.710000px;}
.x89_c00132{left:378.435000px;}
.x15_c00132{left:380.160000px;}
.xe1_c00132{left:382.755000px;}
.x92_c00132{left:384.480000px;}
.x7e_c00132{left:387.930000px;}
.x58_c00132{left:392.250000px;}
.x93_c00132{left:394.845000px;}
.xa_c00132{left:397.440000px;}
.x1e_c00132{left:399.165000px;}
.x2b_c00132{left:402.630000px;}
.x51_c00132{left:406.080000px;}
.xb6_c00132{left:408.675000px;}
.x65_c00132{left:410.400000px;}
.xae_c00132{left:413.850000px;}
.xeb_c00132{left:416.445000px;}
.xa5_c00132{left:419.910000px;}
.x94_c00132{left:421.635000px;}
.xb_c00132{left:425.085000px;}
.x71_c00132{left:427.680000px;}
.x2c_c00132{left:429.405000px;}
.x1f_c00132{left:432.000000px;}
.xe6_c00132{left:436.320000px;}
.x45_c00132{left:438.045000px;}
.x3f_c00132{left:440.640000px;}
.xd0_c00132{left:442.365000px;}
.x4c_c00132{left:444.960000px;}
.x66_c00132{left:446.685000px;}
.x82_c00132{left:448.410000px;}
.x59_c00132{left:450.150000px;}
.xc6_c00132{left:452.730000px;}
.x98_c00132{left:457.050000px;}
.xcb_c00132{left:460.515000px;}
.x78_c00132{left:463.110000px;}
.x83_c00132{left:464.835000px;}
.xc_c00132{left:467.430000px;}
.x52_c00132{left:471.750000px;}
.x2d_c00132{left:476.070000px;}
.xa6_c00132{left:477.795000px;}
.xc0_c00132{left:479.520000px;}
.x20_c00132{left:482.115000px;}
.xec_c00132{left:485.565000px;}
.x16_c00132{left:487.290000px;}
.xe2_c00132{left:489.030000px;}
.x5a_c00132{left:492.480000px;}
.xdf_c00132{left:495.075000px;}
.x46_c00132{left:496.800000px;}
.x40_c00132{left:498.525000px;}
.xd_c00132{left:506.310000px;}
.x53_c00132{left:508.035000px;}
.xdd_c00132{left:511.485000px;}
.x81_c00132{left:514.080000px;}
.xd3_c00132{left:515.805000px;}
.x2e_c00132{left:519.270000px;}
.x5f_c00132{left:522.720000px;}
.xc7_c00132{left:527.040000px;}
.x67_c00132{left:531.360000px;}
.xe_c00132{left:533.955000px;}
.x4d_c00132{left:535.680000px;}
.xe3_c00132{left:538.275000px;}
.xc3_c00132{left:540.000000px;}
.xdb_c00132{left:542.595000px;}
.x37_c00132{left:544.320000px;}
.xa7_c00132{left:546.915000px;}
.x21_c00132{left:548.640000px;}
.xf_c00132{left:557.280000px;}
.xd7_c00132{left:559.005000px;}
.x54_c00132{left:561.600000px;}
.xe9_c00132{left:564.195000px;}
.x2f_c00132{left:568.515000px;}
.xe7_c00132{left:570.240000px;}
.x17_c00132{left:573.690000px;}
.xb7_c00132{left:575.430000px;}
.x30_c00132{left:578.010000px;}
.x10_c00132{left:579.750000px;}
.xc8_c00132{left:581.475000px;}
.xaf_c00132{left:583.200000px;}
.xb9_c00132{left:585.795000px;}
.x60_c00132{left:588.390000px;}
.x22_c00132{left:593.565000px;}
.xa1_c00132{left:596.160000px;}
.x74_c00132{left:598.755000px;}
.x11_c00132{left:600.480000px;}
.x7f_c00132{left:602.205000px;}
.x5b_c00132{left:604.800000px;}
.x55_c00132{left:607.395000px;}
.x18_c00132{left:610.845000px;}
.xa8_c00132{left:613.440000px;}
.x31_c00132{left:618.630000px;}
.xa2_c00132{left:622.080000px;}
.x99_c00132{left:624.675000px;}
.xad_c00132{left:626.400000px;}
.xed_c00132{left:628.995000px;}
.x84_c00132{left:631.590000px;}
.xb0_c00132{left:634.170000px;}
.x4_c00132{left:637.635000px;}
.x80_c00132{left:639.360000px;}
.xe0_c00132{left:641.085000px;}
.x41_c00132{left:643.680000px;}
.x12_c00132{left:647.130000px;}
.x61_c00132{left:649.725000px;}
.xb1_c00132{left:652.320000px;}
.x47_c00132{left:654.045000px;}
.x95_c00132{left:658.365000px;}
.x75_c00132{left:660.090000px;}
.x23_c00132{left:665.280000px;}
.x8f_c00132{left:667.005000px;}
.x5c_c00132{left:668.730000px;}
.xea_c00132{left:670.470000px;}
.x56_c00132{left:672.195000px;}
.x8a_c00132{left:673.920000px;}
.xef_c00132{left:675.645000px;}
.x79_c00132{left:677.370000px;}
.x5_c00132{left:679.965000px;}
.x32_c00132{left:682.560000px;}
.xbc_c00132{left:686.880000px;}
.xcc_c00132{left:688.605000px;}
.x57_c00132{left:690.330000px;}
.x7a_c00132{left:692.070000px;}
.x85_c00132{left:694.650000px;}
.xd8_c00132{left:697.245000px;}
.xdc_c00132{left:704.160000px;}
.x3_c00132{left:708.480000px;}
.xc1_c00132{left:711.930000px;}
.x68_c00132{left:713.670000px;}
.x6b_c00132{left:716.250000px;}
.x38_c00132{left:717.990000px;}
.xd5_c00132{left:719.715000px;}
.xa9_c00132{left:721.440000px;}
.xe4_c00132{left:724.890000px;}
.x33_c00132{left:730.080000px;}
.x24_c00132{left:731.805000px;}
.x19_c00132{left:733.530000px;}
.xba_c00132{left:739.590000px;}
.x8b_c00132{left:741.315000px;}
.x13_c00132{left:743.040000px;}
.x96_c00132{left:744.765000px;}
.x9a_c00132{left:747.360000px;}
.x42_c00132{left:749.085000px;}
.xe5_c00132{left:751.680000px;}
.xde_c00132{left:756.000000px;}
.x48_c00132{left:757.725000px;}
.xaa_c00132{left:762.915000px;}
.x4e_c00132{left:766.365000px;}
.x6c_c00132{left:769.830000px;}
.x39_c00132{left:773.280000px;}
.x1a_c00132{left:776.730000px;}
.x25_c00132{left:778.470000px;}
.xa3_c00132{left:781.920000px;}
.x86_c00132{left:786.240000px;}
.xc2_c00132{left:787.965000px;}
.x9b_c00132{left:790.560000px;}
.xb2_c00132{left:794.880000px;}
.x7b_c00132{left:797.475000px;}
.xbd_c00132{left:799.200000px;}
.x34_c00132{left:800.925000px;}
.x26_c00132{left:803.520000px;}
.x69_c00132{left:806.115000px;}
.xc4_c00132{left:808.710000px;}
.x9c_c00132{left:810.435000px;}
.x5d_c00132{left:814.755000px;}
.x72_c00132{left:816.480000px;}
.x62_c00132{left:819.075000px;}
.xab_c00132{left:827.715000px;}
.x8c_c00132{left:829.440000px;}
.x9d_c00132{left:832.035000px;}
.xf6_c00132{left:833.760000px;}
.x3a_c00132{left:835.485000px;}
.x27_c00132{left:838.950000px;}
.x4f_c00132{left:841.530000px;}
.xbe_c00132{left:843.270000px;}
.x1b_c00132{left:844.995000px;}
.x8d_c00132{left:848.445000px;}
.x6_c00132{left:851.040000px;}
.x87_c00132{left:855.360000px;}
.x6a_c00132{left:859.680000px;}
.x3b_c00132{left:868.320000px;}
.x7_c00132{left:872.640000px;}
.x7c_c00132{left:883.005000px;}
.x1c_c00132{left:884.730000px;}
.x35_c00132{left:895.965000px;}
.xf1_c00132{left:916.710000px;}
.xf0_c00132{left:944.355000px;}
.xf4_c00132{left:981.510000px;}
.xf5_c00132{left:996.195000px;}
.xf3_c00132{left:1033.350000px;}
.xf2_c00132{left:1073.955000px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls0_c00132{letter-spacing:0.000000pt;}
.ws0_c00132{word-spacing:0.000000pt;}
.fs6_c00132{font-size:3.072000pt;}
.fs28_c00132{font-size:5.333333pt;}
.fs1f_c00132{font-size:6.133333pt;}
.fs21_c00132{font-size:9.226667pt;}
.fs24_c00132{font-size:12.266667pt;}
.fs0_c00132{font-size:15.360000pt;}
.fs23_c00132{font-size:18.453333pt;}
.fs1_c00132{font-size:21.493333pt;}
.fs1e_c00132{font-size:24.586667pt;}
.fs5_c00132{font-size:27.626667pt;}
.fs20_c00132{font-size:30.720000pt;}
.fs11_c00132{font-size:33.813333pt;}
.fs3_c00132{font-size:36.853333pt;}
.fs7_c00132{font-size:39.946667pt;}
.fs16_c00132{font-size:42.986667pt;}
.fs1c_c00132{font-size:46.080000pt;}
.fs1a_c00132{font-size:49.173333pt;}
.fs14_c00132{font-size:52.213333pt;}
.fs1d_c00132{font-size:55.306667pt;}
.fsb_c00132{font-size:58.346667pt;}
.fs9_c00132{font-size:61.440000pt;}
.fs8_c00132{font-size:64.533333pt;}
.fsa_c00132{font-size:67.573333pt;}
.fs1b_c00132{font-size:70.666667pt;}
.fs13_c00132{font-size:73.706667pt;}
.fs15_c00132{font-size:76.800000pt;}
.fs12_c00132{font-size:79.893333pt;}
.fs4_c00132{font-size:82.933333pt;}
.fs10_c00132{font-size:86.026667pt;}
.fsd_c00132{font-size:89.066667pt;}
.fsf_c00132{font-size:92.160000pt;}
.fs22_c00132{font-size:95.253333pt;}
.fs19_c00132{font-size:98.293333pt;}
.fs17_c00132{font-size:101.386667pt;}
.fse_c00132{font-size:104.426667pt;}
.fs27_c00132{font-size:107.520000pt;}
.fs18_c00132{font-size:110.613333pt;}
.fs26_c00132{font-size:113.653333pt;}
.fs25_c00132{font-size:116.746667pt;}
.fsc_c00132{font-size:122.880000pt;}
.fs2_c00132{font-size:141.333333pt;}
.y0_c00132{bottom:0.000000pt;}
.y174_c00132{bottom:85.253333pt;}
.y173_c00132{bottom:97.533333pt;}
.y172_c00132{bottom:130.560000pt;}
.y170_c00132{bottom:138.240000pt;}
.y171_c00132{bottom:141.306667pt;}
.y16b_c00132{bottom:182.786667pt;}
.y16a_c00132{bottom:188.160000pt;}
.y168_c00132{bottom:195.840000pt;}
.y166_c00132{bottom:196.613333pt;}
.y169_c00132{bottom:198.146667pt;}
.y167_c00132{bottom:198.906667pt;}
.y163_c00132{bottom:199.680000pt;}
.y15f_c00132{bottom:200.453333pt;}
.y165_c00132{bottom:201.213333pt;}
.y160_c00132{bottom:201.986667pt;}
.y162_c00132{bottom:203.520000pt;}
.y164_c00132{bottom:204.293333pt;}
.y161_c00132{bottom:205.053333pt;}
.y15e_c00132{bottom:218.880000pt;}
.y15d_c00132{bottom:221.186667pt;}
.y15b_c00132{bottom:226.560000pt;}
.y15c_c00132{bottom:228.093333pt;}
.y15a_c00132{bottom:243.453333pt;}
.y159_c00132{bottom:245.760000pt;}
.y158_c00132{bottom:246.533333pt;}
.y156_c00132{bottom:247.293333pt;}
.y157_c00132{bottom:248.066667pt;}
.y155_c00132{bottom:253.440000pt;}
.y154_c00132{bottom:266.493333pt;}
.y153_c00132{bottom:268.026667pt;}
.y14f_c00132{bottom:270.333333pt;}
.y150_c00132{bottom:271.866667pt;}
.y151_c00132{bottom:272.640000pt;}
.y152_c00132{bottom:275.706667pt;}
.y14e_c00132{bottom:283.386667pt;}
.y14d_c00132{bottom:286.466667pt;}
.y143_c00132{bottom:288.773333pt;}
.y14a_c00132{bottom:290.306667pt;}
.y149_c00132{bottom:291.066667pt;}
.y148_c00132{bottom:291.840000pt;}
.y142_c00132{bottom:294.146667pt;}
.y14b_c00132{bottom:294.906667pt;}
.y145_c00132{bottom:295.680000pt;}
.y146_c00132{bottom:297.986667pt;}
.y147_c00132{bottom:298.746667pt;}
.y144_c00132{bottom:299.520000pt;}
.y140_c00132{bottom:309.506667pt;}
.y14c_c00132{bottom:310.266667pt;}
.y13f_c00132{bottom:311.813333pt;}
.y13e_c00132{bottom:312.573333pt;}
.y13a_c00132{bottom:314.880000pt;}
.y141_c00132{bottom:315.653333pt;}
.y13d_c00132{bottom:316.413333pt;}
.y13c_c00132{bottom:321.786667pt;}
.y13b_c00132{bottom:322.560000pt;}
.y139_c00132{bottom:331.773333pt;}
.y138_c00132{bottom:333.306667pt;}
.y137_c00132{bottom:334.853333pt;}
.y136_c00132{bottom:336.386667pt;}
.y135_c00132{bottom:337.920000pt;}
.y134_c00132{bottom:345.600000pt;}
.y132_c00132{bottom:357.893333pt;}
.y131_c00132{bottom:358.653333pt;}
.y12f_c00132{bottom:359.426667pt;}
.y133_c00132{bottom:360.186667pt;}
.y12c_c00132{bottom:360.960000pt;}
.y130_c00132{bottom:361.733333pt;}
.y12e_c00132{bottom:363.266667pt;}
.y12d_c00132{bottom:367.106667pt;}
.y12a_c00132{bottom:378.626667pt;}
.y127_c00132{bottom:380.933333pt;}
.y125_c00132{bottom:381.693333pt;}
.y12b_c00132{bottom:382.466667pt;}
.y126_c00132{bottom:383.226667pt;}
.y129_c00132{bottom:385.533333pt;}
.y128_c00132{bottom:387.066667pt;}
.y120_c00132{bottom:404.733333pt;}
.y123_c00132{bottom:405.506667pt;}
.y122_c00132{bottom:407.040000pt;}
.y121_c00132{bottom:407.813333pt;}
.y11f_c00132{bottom:420.093333pt;}
.y124_c00132{bottom:420.866667pt;}
.y11e_c00132{bottom:422.400000pt;}
.y11d_c00132{bottom:425.466667pt;}
.y11c_c00132{bottom:427.013333pt;}
.y11b_c00132{bottom:428.546667pt;}
.y118_c00132{bottom:429.306667pt;}
.y11a_c00132{bottom:433.920000pt;}
.y119_c00132{bottom:434.693333pt;}
.y117_c00132{bottom:443.133333pt;}
.y115_c00132{bottom:446.973333pt;}
.y113_c00132{bottom:449.280000pt;}
.y111_c00132{bottom:450.813333pt;}
.y116_c00132{bottom:451.586667pt;}
.y112_c00132{bottom:454.653333pt;}
.y114_c00132{bottom:455.426667pt;}
.y110_c00132{bottom:466.946667pt;}
.y10d_c00132{bottom:470.013333pt;}
.y10b_c00132{bottom:470.786667pt;}
.y106_c00132{bottom:471.546667pt;}
.y109_c00132{bottom:472.320000pt;}
.y10a_c00132{bottom:473.093333pt;}
.y10f_c00132{bottom:473.853333pt;}
.y10e_c00132{bottom:474.626667pt;}
.y10c_c00132{bottom:475.386667pt;}
.y107_c00132{bottom:476.160000pt;}
.y108_c00132{bottom:476.933333pt;}
.y104_c00132{bottom:489.986667pt;}
.y103_c00132{bottom:491.520000pt;}
.y100_c00132{bottom:493.053333pt;}
.y105_c00132{bottom:493.826667pt;}
.yfe_c00132{bottom:498.426667pt;}
.y102_c00132{bottom:499.200000pt;}
.yff_c00132{bottom:499.973333pt;}
.y101_c00132{bottom:500.733333pt;}
.yfd_c00132{bottom:512.253333pt;}
.yfc_c00132{bottom:515.333333pt;}
.yfb_c00132{bottom:516.093333pt;}
.yfa_c00132{bottom:518.400000pt;}
.yf9_c00132{bottom:535.293333pt;}
.yf8_c00132{bottom:536.066667pt;}
.yf7_c00132{bottom:538.373333pt;}
.yf5_c00132{bottom:542.973333pt;}
.yf6_c00132{bottom:544.506667pt;}
.yf2_c00132{bottom:559.106667pt;}
.yf1_c00132{bottom:559.866667pt;}
.yee_c00132{bottom:562.173333pt;}
.yf0_c00132{bottom:566.786667pt;}
.yf3_c00132{bottom:567.546667pt;}
.yef_c00132{bottom:569.093333pt;}
.yf4_c00132{bottom:571.386667pt;}
.yeb_c00132{bottom:581.373333pt;}
.yed_c00132{bottom:583.680000pt;}
.ye7_c00132{bottom:584.453333pt;}
.yec_c00132{bottom:585.213333pt;}
.yea_c00132{bottom:585.986667pt;}
.ye9_c00132{bottom:587.520000pt;}
.ye8_c00132{bottom:588.293333pt;}
.ye6_c00132{bottom:598.266667pt;}
.ye3_c00132{bottom:599.813333pt;}
.ye5_c00132{bottom:601.346667pt;}
.ye1_c00132{bottom:602.106667pt;}
.ye0_c00132{bottom:603.653333pt;}
.ye4_c00132{bottom:605.946667pt;}
.ye2_c00132{bottom:610.560000pt;}
.ydf_c00132{bottom:619.013333pt;}
.yde_c00132{bottom:624.386667pt;}
.ydd_c00132{bottom:625.920000pt;}
.ydb_c00132{bottom:626.693333pt;}
.yd8_c00132{bottom:628.226667pt;}
.yd7_c00132{bottom:629.760000pt;}
.yd9_c00132{bottom:630.533333pt;}
.ydc_c00132{bottom:632.066667pt;}
.yda_c00132{bottom:632.826667pt;}
.yd3_c00132{bottom:646.653333pt;}
.yd6_c00132{bottom:647.426667pt;}
.yd1_c00132{bottom:648.186667pt;}
.yce_c00132{bottom:649.733333pt;}
.yd5_c00132{bottom:650.493333pt;}
.yd4_c00132{bottom:651.266667pt;}
.ycd_c00132{bottom:652.800000pt;}
.yd2_c00132{bottom:654.333333pt;}
.yd0_c00132{bottom:655.106667pt;}
.ycf_c00132{bottom:655.866667pt;}
.ycc_c00132{bottom:667.386667pt;}
.ycb_c00132{bottom:668.933333pt;}
.yc8_c00132{bottom:671.226667pt;}
.yc7_c00132{bottom:672.000000pt;}
.yc5_c00132{bottom:672.773333pt;}
.yca_c00132{bottom:673.533333pt;}
.yc9_c00132{bottom:675.840000pt;}
.yc6_c00132{bottom:677.373333pt;}
.yc0_c00132{bottom:691.200000pt;}
.yc2_c00132{bottom:691.973333pt;}
.ybf_c00132{bottom:693.506667pt;}
.ybe_c00132{bottom:694.266667pt;}
.yc4_c00132{bottom:695.040000pt;}
.ybc_c00132{bottom:695.813333pt;}
.ybd_c00132{bottom:696.573333pt;}
.yc3_c00132{bottom:697.346667pt;}
.yc1_c00132{bottom:698.106667pt;}
.ybb_c00132{bottom:712.706667pt;}
.yba_c00132{bottom:713.466667pt;}
.yb5_c00132{bottom:714.240000pt;}
.yb6_c00132{bottom:715.773333pt;}
.yb8_c00132{bottom:716.546667pt;}
.yb9_c00132{bottom:717.306667pt;}
.yb4_c00132{bottom:718.080000pt;}
.yb7_c00132{bottom:721.146667pt;}
.yb3_c00132{bottom:721.920000pt;}
.yb2_c00132{bottom:722.693333pt;}
.yb0_c00132{bottom:734.213333pt;}
.yaf_c00132{bottom:734.973333pt;}
.yae_c00132{bottom:735.746667pt;}
.yaa_c00132{bottom:738.813333pt;}
.yad_c00132{bottom:739.586667pt;}
.yab_c00132{bottom:741.120000pt;}
.yb1_c00132{bottom:741.893333pt;}
.yac_c00132{bottom:742.653333pt;}
.ya9_c00132{bottom:756.480000pt;}
.ya8_c00132{bottom:757.253333pt;}
.ya5_c00132{bottom:758.013333pt;}
.ya6_c00132{bottom:758.786667pt;}
.ya7_c00132{bottom:759.546667pt;}
.ya2_c00132{bottom:762.626667pt;}
.ya3_c00132{bottom:764.160000pt;}
.ya1_c00132{bottom:764.933333pt;}
.ya4_c00132{bottom:765.693333pt;}
.ya0_c00132{bottom:766.466667pt;}
.y9c_c00132{bottom:779.520000pt;}
.y9b_c00132{bottom:780.293333pt;}
.y9a_c00132{bottom:781.826667pt;}
.y9f_c00132{bottom:784.133333pt;}
.y9e_c00132{bottom:785.666667pt;}
.y9d_c00132{bottom:786.426667pt;}
.y99_c00132{bottom:788.733333pt;}
.y95_c00132{bottom:802.560000pt;}
.y96_c00132{bottom:803.333333pt;}
.y94_c00132{bottom:804.093333pt;}
.y97_c00132{bottom:805.626667pt;}
.y91_c00132{bottom:807.173333pt;}
.y98_c00132{bottom:807.933333pt;}
.y93_c00132{bottom:808.706667pt;}
.y92_c00132{bottom:810.240000pt;}
.y90_c00132{bottom:821.760000pt;}
.y8c_c00132{bottom:824.826667pt;}
.y87_c00132{bottom:825.600000pt;}
.y8b_c00132{bottom:826.373333pt;}
.y8e_c00132{bottom:827.133333pt;}
.y8f_c00132{bottom:827.906667pt;}
.y8d_c00132{bottom:828.666667pt;}
.y89_c00132{bottom:830.213333pt;}
.y8a_c00132{bottom:831.746667pt;}
.y88_c00132{bottom:832.506667pt;}
.y86_c00132{bottom:833.280000pt;}
.y83_c00132{bottom:847.866667pt;}
.y80_c00132{bottom:848.640000pt;}
.y16f_c00132{bottom:850.173333pt;}
.y84_c00132{bottom:850.946667pt;}
.y82_c00132{bottom:852.480000pt;}
.y85_c00132{bottom:854.013333pt;}
.y81_c00132{bottom:854.786667pt;}
.y7e_c00132{bottom:868.613333pt;}
.y7a_c00132{bottom:870.146667pt;}
.y7f_c00132{bottom:870.906667pt;}
.y78_c00132{bottom:871.680000pt;}
.y7d_c00132{bottom:872.453333pt;}
.y77_c00132{bottom:873.986667pt;}
.y7b_c00132{bottom:875.520000pt;}
.y7c_c00132{bottom:876.293333pt;}
.y79_c00132{bottom:877.053333pt;}
.y76_c00132{bottom:891.653333pt;}
.y74_c00132{bottom:892.413333pt;}
.y73_c00132{bottom:893.186667pt;}
.y71_c00132{bottom:896.253333pt;}
.y75_c00132{bottom:897.026667pt;}
.y72_c00132{bottom:898.560000pt;}
.y70_c00132{bottom:900.093333pt;}
.y6f_c00132{bottom:914.693333pt;}
.y6b_c00132{bottom:915.453333pt;}
.y6d_c00132{bottom:916.226667pt;}
.y6c_c00132{bottom:917.760000pt;}
.y6a_c00132{bottom:918.533333pt;}
.y6e_c00132{bottom:922.373333pt;}
.y69_c00132{bottom:936.960000pt;}
.y65_c00132{bottom:938.493333pt;}
.y64_c00132{bottom:940.800000pt;}
.y68_c00132{bottom:941.573333pt;}
.y66_c00132{bottom:943.106667pt;}
.y67_c00132{bottom:943.866667pt;}
.y60_c00132{bottom:960.000000pt;}
.y5e_c00132{bottom:960.773333pt;}
.y63_c00132{bottom:963.840000pt;}
.y5f_c00132{bottom:964.613333pt;}
.y61_c00132{bottom:965.373333pt;}
.y62_c00132{bottom:966.146667pt;}
.y5c_c00132{bottom:980.733333pt;}
.y5b_c00132{bottom:981.506667pt;}
.y59_c00132{bottom:982.266667pt;}
.y57_c00132{bottom:983.040000pt;}
.y5a_c00132{bottom:983.813333pt;}
.y58_c00132{bottom:986.106667pt;}
.y16e_c00132{bottom:986.880000pt;}
.y5d_c00132{bottom:988.413333pt;}
.y56_c00132{bottom:1003.013333pt;}
.y55_c00132{bottom:1003.773333pt;}
.y53_c00132{bottom:1004.546667pt;}
.y52_c00132{bottom:1005.306667pt;}
.y51_c00132{bottom:1006.080000pt;}
.y4f_c00132{bottom:1006.853333pt;}
.y54_c00132{bottom:1009.146667pt;}
.y50_c00132{bottom:1010.693333pt;}
.y4e_c00132{bottom:1026.053333pt;}
.y49_c00132{bottom:1026.813333pt;}
.y4c_c00132{bottom:1027.586667pt;}
.y4d_c00132{bottom:1029.120000pt;}
.y4b_c00132{bottom:1029.893333pt;}
.y48_c00132{bottom:1030.653333pt;}
.y4a_c00132{bottom:1033.733333pt;}
.y46_c00132{bottom:1045.253333pt;}
.y44_c00132{bottom:1047.546667pt;}
.y47_c00132{bottom:1048.320000pt;}
.y41_c00132{bottom:1049.853333pt;}
.y40_c00132{bottom:1052.160000pt;}
.y3f_c00132{bottom:1053.693333pt;}
.y45_c00132{bottom:1054.466667pt;}
.y43_c00132{bottom:1056.000000pt;}
.y42_c00132{bottom:1056.773333pt;}
.y3e_c00132{bottom:1069.826667pt;}
.y3d_c00132{bottom:1070.586667pt;}
.y3b_c00132{bottom:1072.133333pt;}
.y3a_c00132{bottom:1072.893333pt;}
.y3c_c00132{bottom:1073.666667pt;}
.y38_c00132{bottom:1076.733333pt;}
.y39_c00132{bottom:1078.266667pt;}
.y37_c00132{bottom:1091.333333pt;}
.y34_c00132{bottom:1092.093333pt;}
.y32_c00132{bottom:1093.626667pt;}
.y31_c00132{bottom:1094.400000pt;}
.y36_c00132{bottom:1096.706667pt;}
.y35_c00132{bottom:1099.773333pt;}
.y33_c00132{bottom:1100.546667pt;}
.y16d_c00132{bottom:1102.853333pt;}
.y2f_c00132{bottom:1109.760000pt;}
.y2a_c00132{bottom:1111.293333pt;}
.y2c_c00132{bottom:1112.066667pt;}
.y2d_c00132{bottom:1112.826667pt;}
.y30_c00132{bottom:1113.600000pt;}
.y2e_c00132{bottom:1115.133333pt;}
.y29_c00132{bottom:1116.666667pt;}
.y2b_c00132{bottom:1122.813333pt;}
.y22_c00132{bottom:1137.413333pt;}
.y24_c00132{bottom:1138.173333pt;}
.y26_c00132{bottom:1138.946667pt;}
.y23_c00132{bottom:1142.013333pt;}
.y25_c00132{bottom:1143.546667pt;}
.y27_c00132{bottom:1145.093333pt;}
.y28_c00132{bottom:1145.853333pt;}
.y20_c00132{bottom:1155.840000pt;}
.y1f_c00132{bottom:1156.613333pt;}
.y1e_c00132{bottom:1157.373333pt;}
.y1a_c00132{bottom:1159.680000pt;}
.y17_c00132{bottom:1160.453333pt;}
.y1b_c00132{bottom:1161.213333pt;}
.y18_c00132{bottom:1162.746667pt;}
.y1d_c00132{bottom:1164.293333pt;}
.y19_c00132{bottom:1166.586667pt;}
.y1c_c00132{bottom:1167.360000pt;}
.y21_c00132{bottom:1178.106667pt;}
.y16_c00132{bottom:1181.186667pt;}
.y11_c00132{bottom:1182.720000pt;}
.y13_c00132{bottom:1183.493333pt;}
.y14_c00132{bottom:1187.333333pt;}
.y15_c00132{bottom:1188.866667pt;}
.y12_c00132{bottom:1189.626667pt;}
.y16c_c00132{bottom:1198.853333pt;}
.ye_c00132{bottom:1201.146667pt;}
.yd_c00132{bottom:1201.920000pt;}
.yf_c00132{bottom:1204.226667pt;}
.yc_c00132{bottom:1204.986667pt;}
.y10_c00132{bottom:1214.973333pt;}
.y8_c00132{bottom:1237.253333pt;}
.y9_c00132{bottom:1238.013333pt;}
.ya_c00132{bottom:1238.786667pt;}
.yb_c00132{bottom:1239.546667pt;}
.y5_c00132{bottom:1253.373333pt;}
.y6_c00132{bottom:1261.826667pt;}
.y4_c00132{bottom:1264.133333pt;}
.y7_c00132{bottom:1269.506667pt;}
.y3_c00132{bottom:1273.346667pt;}
.y2_c00132{bottom:1285.626667pt;}
.y1_c00132{bottom:1286.400000pt;}
.h8_c00132{height:2.764500pt;}
.h2a_c00132{height:4.799479pt;}
.h21_c00132{height:5.519401pt;}
.h23_c00132{height:8.303099pt;}
.h26_c00132{height:11.038802pt;}
.h2_c00132{height:13.822500pt;}
.h25_c00132{height:16.606198pt;}
.h3_c00132{height:19.341901pt;}
.h20_c00132{height:22.125599pt;}
.h7_c00132{height:24.861302pt;}
.h22_c00132{height:27.645000pt;}
.h13_c00132{height:30.428698pt;}
.h5_c00132{height:33.164401pt;}
.h9_c00132{height:35.948099pt;}
.h18_c00132{height:38.683802pt;}
.h1e_c00132{height:41.467500pt;}
.h1c_c00132{height:44.251198pt;}
.h16_c00132{height:46.986901pt;}
.h1f_c00132{height:49.770599pt;}
.hd_c00132{height:52.506302pt;}
.hb_c00132{height:55.290000pt;}
.ha_c00132{height:58.073698pt;}
.hc_c00132{height:60.809401pt;}
.h1d_c00132{height:63.593099pt;}
.h15_c00132{height:66.328802pt;}
.h17_c00132{height:69.112500pt;}
.h14_c00132{height:71.896198pt;}
.h6_c00132{height:74.631901pt;}
.h12_c00132{height:77.415599pt;}
.hf_c00132{height:80.151302pt;}
.h11_c00132{height:82.935000pt;}
.h24_c00132{height:85.718698pt;}
.h1b_c00132{height:88.454401pt;}
.h19_c00132{height:91.238099pt;}
.h10_c00132{height:93.973802pt;}
.h29_c00132{height:96.757500pt;}
.h1a_c00132{height:99.541198pt;}
.h28_c00132{height:102.276901pt;}
.h27_c00132{height:105.060599pt;}
.he_c00132{height:110.580000pt;}
.h4_c00132{height:127.186198pt;}
.h0_c00132{height:1348.613333pt;}
.h1_c00132{height:1348.666667pt;}
.w0_c00132{width:969.213333pt;}
.w1_c00132{width:969.333333pt;}
.x0_c00132{left:0.000000pt;}
.x1_c00132{left:129.786667pt;}
.x2_c00132{left:133.626667pt;}
.xd4_c00132{left:172.800000pt;}
.xb3_c00132{left:182.786667pt;}
.xc9_c00132{left:192.000000pt;}
.xd1_c00132{left:195.840000pt;}
.x49_c00132{left:197.373333pt;}
.x7d_c00132{left:199.680000pt;}
.xcd_c00132{left:201.213333pt;}
.xb4_c00132{left:203.520000pt;}
.x28_c00132{left:205.053333pt;}
.x9e_c00132{left:206.586667pt;}
.x8_c00132{left:208.133333pt;}
.x14_c00132{left:210.426667pt;}
.x6d_c00132{left:218.880000pt;}
.xee_c00132{left:222.720000pt;}
.xd6_c00132{left:226.560000pt;}
.x29_c00132{left:229.626667pt;}
.x88_c00132{left:232.706667pt;}
.x76_c00132{left:234.240000pt;}
.xb5_c00132{left:235.773333pt;}
.x3c_c00132{left:237.306667pt;}
.x4a_c00132{left:239.613333pt;}
.xd2_c00132{left:241.146667pt;}
.xc5_c00132{left:244.226667pt;}
.x50_c00132{left:250.373333pt;}
.x1d_c00132{left:251.906667pt;}
.x90_c00132{left:255.746667pt;}
.x3d_c00132{left:257.280000pt;}
.x43_c00132{left:258.813333pt;}
.x9f_c00132{left:260.346667pt;}
.x63_c00132{left:261.893333pt;}
.x6e_c00132{left:263.426667pt;}
.xca_c00132{left:268.800000pt;}
.x97_c00132{left:270.333333pt;}
.xce_c00132{left:273.413333pt;}
.xe8_c00132{left:274.946667pt;}
.x91_c00132{left:277.253333pt;}
.x73_c00132{left:279.546667pt;}
.x6f_c00132{left:281.093333pt;}
.xb8_c00132{left:284.160000pt;}
.x3e_c00132{left:289.533333pt;}
.x77_c00132{left:293.373333pt;}
.xd9_c00132{left:301.053333pt;}
.x64_c00132{left:302.586667pt;}
.x8e_c00132{left:304.893333pt;}
.x5e_c00132{left:306.426667pt;}
.x4b_c00132{left:308.733333pt;}
.xbb_c00132{left:311.040000pt;}
.xda_c00132{left:312.573333pt;}
.x70_c00132{left:314.106667pt;}
.x44_c00132{left:315.653333pt;}
.xcf_c00132{left:318.720000pt;}
.x2a_c00132{left:321.786667pt;}
.xac_c00132{left:323.333333pt;}
.xbf_c00132{left:324.866667pt;}
.x9_c00132{left:326.400000pt;}
.xa0_c00132{left:330.240000pt;}
.x36_c00132{left:332.546667pt;}
.xa4_c00132{left:334.853333pt;}
.x89_c00132{left:336.386667pt;}
.x15_c00132{left:337.920000pt;}
.xe1_c00132{left:340.226667pt;}
.x92_c00132{left:341.760000pt;}
.x7e_c00132{left:344.826667pt;}
.x58_c00132{left:348.666667pt;}
.x93_c00132{left:350.973333pt;}
.xa_c00132{left:353.280000pt;}
.x1e_c00132{left:354.813333pt;}
.x2b_c00132{left:357.893333pt;}
.x51_c00132{left:360.960000pt;}
.xb6_c00132{left:363.266667pt;}
.x65_c00132{left:364.800000pt;}
.xae_c00132{left:367.866667pt;}
.xeb_c00132{left:370.173333pt;}
.xa5_c00132{left:373.253333pt;}
.x94_c00132{left:374.786667pt;}
.xb_c00132{left:377.853333pt;}
.x71_c00132{left:380.160000pt;}
.x2c_c00132{left:381.693333pt;}
.x1f_c00132{left:384.000000pt;}
.xe6_c00132{left:387.840000pt;}
.x45_c00132{left:389.373333pt;}
.x3f_c00132{left:391.680000pt;}
.xd0_c00132{left:393.213333pt;}
.x4c_c00132{left:395.520000pt;}
.x66_c00132{left:397.053333pt;}
.x82_c00132{left:398.586667pt;}
.x59_c00132{left:400.133333pt;}
.xc6_c00132{left:402.426667pt;}
.x98_c00132{left:406.266667pt;}
.xcb_c00132{left:409.346667pt;}
.x78_c00132{left:411.653333pt;}
.x83_c00132{left:413.186667pt;}
.xc_c00132{left:415.493333pt;}
.x52_c00132{left:419.333333pt;}
.x2d_c00132{left:423.173333pt;}
.xa6_c00132{left:424.706667pt;}
.xc0_c00132{left:426.240000pt;}
.x20_c00132{left:428.546667pt;}
.xec_c00132{left:431.613333pt;}
.x16_c00132{left:433.146667pt;}
.xe2_c00132{left:434.693333pt;}
.x5a_c00132{left:437.760000pt;}
.xdf_c00132{left:440.066667pt;}
.x46_c00132{left:441.600000pt;}
.x40_c00132{left:443.133333pt;}
.xd_c00132{left:450.053333pt;}
.x53_c00132{left:451.586667pt;}
.xdd_c00132{left:454.653333pt;}
.x81_c00132{left:456.960000pt;}
.xd3_c00132{left:458.493333pt;}
.x2e_c00132{left:461.573333pt;}
.x5f_c00132{left:464.640000pt;}
.xc7_c00132{left:468.480000pt;}
.x67_c00132{left:472.320000pt;}
.xe_c00132{left:474.626667pt;}
.x4d_c00132{left:476.160000pt;}
.xe3_c00132{left:478.466667pt;}
.xc3_c00132{left:480.000000pt;}
.xdb_c00132{left:482.306667pt;}
.x37_c00132{left:483.840000pt;}
.xa7_c00132{left:486.146667pt;}
.x21_c00132{left:487.680000pt;}
.xf_c00132{left:495.360000pt;}
.xd7_c00132{left:496.893333pt;}
.x54_c00132{left:499.200000pt;}
.xe9_c00132{left:501.506667pt;}
.x2f_c00132{left:505.346667pt;}
.xe7_c00132{left:506.880000pt;}
.x17_c00132{left:509.946667pt;}
.xb7_c00132{left:511.493333pt;}
.x30_c00132{left:513.786667pt;}
.x10_c00132{left:515.333333pt;}
.xc8_c00132{left:516.866667pt;}
.xaf_c00132{left:518.400000pt;}
.xb9_c00132{left:520.706667pt;}
.x60_c00132{left:523.013333pt;}
.x22_c00132{left:527.613333pt;}
.xa1_c00132{left:529.920000pt;}
.x74_c00132{left:532.226667pt;}
.x11_c00132{left:533.760000pt;}
.x7f_c00132{left:535.293333pt;}
.x5b_c00132{left:537.600000pt;}
.x55_c00132{left:539.906667pt;}
.x18_c00132{left:542.973333pt;}
.xa8_c00132{left:545.280000pt;}
.x31_c00132{left:549.893333pt;}
.xa2_c00132{left:552.960000pt;}
.x99_c00132{left:555.266667pt;}
.xad_c00132{left:556.800000pt;}
.xed_c00132{left:559.106667pt;}
.x84_c00132{left:561.413333pt;}
.xb0_c00132{left:563.706667pt;}
.x4_c00132{left:566.786667pt;}
.x80_c00132{left:568.320000pt;}
.xe0_c00132{left:569.853333pt;}
.x41_c00132{left:572.160000pt;}
.x12_c00132{left:575.226667pt;}
.x61_c00132{left:577.533333pt;}
.xb1_c00132{left:579.840000pt;}
.x47_c00132{left:581.373333pt;}
.x95_c00132{left:585.213333pt;}
.x75_c00132{left:586.746667pt;}
.x23_c00132{left:591.360000pt;}
.x8f_c00132{left:592.893333pt;}
.x5c_c00132{left:594.426667pt;}
.xea_c00132{left:595.973333pt;}
.x56_c00132{left:597.506667pt;}
.x8a_c00132{left:599.040000pt;}
.xef_c00132{left:600.573333pt;}
.x79_c00132{left:602.106667pt;}
.x5_c00132{left:604.413333pt;}
.x32_c00132{left:606.720000pt;}
.xbc_c00132{left:610.560000pt;}
.xcc_c00132{left:612.093333pt;}
.x57_c00132{left:613.626667pt;}
.x7a_c00132{left:615.173333pt;}
.x85_c00132{left:617.466667pt;}
.xd8_c00132{left:619.773333pt;}
.xdc_c00132{left:625.920000pt;}
.x3_c00132{left:629.760000pt;}
.xc1_c00132{left:632.826667pt;}
.x68_c00132{left:634.373333pt;}
.x6b_c00132{left:636.666667pt;}
.x38_c00132{left:638.213333pt;}
.xd5_c00132{left:639.746667pt;}
.xa9_c00132{left:641.280000pt;}
.xe4_c00132{left:644.346667pt;}
.x33_c00132{left:648.960000pt;}
.x24_c00132{left:650.493333pt;}
.x19_c00132{left:652.026667pt;}
.xba_c00132{left:657.413333pt;}
.x8b_c00132{left:658.946667pt;}
.x13_c00132{left:660.480000pt;}
.x96_c00132{left:662.013333pt;}
.x9a_c00132{left:664.320000pt;}
.x42_c00132{left:665.853333pt;}
.xe5_c00132{left:668.160000pt;}
.xde_c00132{left:672.000000pt;}
.x48_c00132{left:673.533333pt;}
.xaa_c00132{left:678.146667pt;}
.x4e_c00132{left:681.213333pt;}
.x6c_c00132{left:684.293333pt;}
.x39_c00132{left:687.360000pt;}
.x1a_c00132{left:690.426667pt;}
.x25_c00132{left:691.973333pt;}
.xa3_c00132{left:695.040000pt;}
.x86_c00132{left:698.880000pt;}
.xc2_c00132{left:700.413333pt;}
.x9b_c00132{left:702.720000pt;}
.xb2_c00132{left:706.560000pt;}
.x7b_c00132{left:708.866667pt;}
.xbd_c00132{left:710.400000pt;}
.x34_c00132{left:711.933333pt;}
.x26_c00132{left:714.240000pt;}
.x69_c00132{left:716.546667pt;}
.xc4_c00132{left:718.853333pt;}
.x9c_c00132{left:720.386667pt;}
.x5d_c00132{left:724.226667pt;}
.x72_c00132{left:725.760000pt;}
.x62_c00132{left:728.066667pt;}
.xab_c00132{left:735.746667pt;}
.x8c_c00132{left:737.280000pt;}
.x9d_c00132{left:739.586667pt;}
.xf6_c00132{left:741.120000pt;}
.x3a_c00132{left:742.653333pt;}
.x27_c00132{left:745.733333pt;}
.x4f_c00132{left:748.026667pt;}
.xbe_c00132{left:749.573333pt;}
.x1b_c00132{left:751.106667pt;}
.x8d_c00132{left:754.173333pt;}
.x6_c00132{left:756.480000pt;}
.x87_c00132{left:760.320000pt;}
.x6a_c00132{left:764.160000pt;}
.x3b_c00132{left:771.840000pt;}
.x7_c00132{left:775.680000pt;}
.x7c_c00132{left:784.893333pt;}
.x1c_c00132{left:786.426667pt;}
.x35_c00132{left:796.413333pt;}
.xf1_c00132{left:814.853333pt;}
.xf0_c00132{left:839.426667pt;}
.xf4_c00132{left:872.453333pt;}
.xf5_c00132{left:885.506667pt;}
.xf3_c00132{left:918.533333pt;}
.xf2_c00132{left:954.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_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_e51d2d9990b21b97a50735f6.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.109863;font-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_c00133{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m16a_c00133{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);}
.m1e_c00133{transform:matrix(0.053450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053450,0.000000,0.000000,0.250000,0,0);}
.m8d_c00133{transform:matrix(0.058000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058000,0.000000,0.000000,0.250000,0,0);}
.m14f_c00133{transform:matrix(0.069400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069400,0.000000,0.000000,0.250000,0,0);}
.mcc_c00133{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.mae_c00133{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);}
.m13d_c00133{transform:matrix(0.086275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086275,0.000000,0.000000,0.250000,0,0);}
.mab_c00133{transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);}
.m38_c00133{transform:matrix(0.092400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092400,0.000000,0.000000,0.250000,0,0);}
.mad_c00133{transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);}
.m3f_c00133{transform:matrix(0.094025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094025,0.000000,0.000000,0.250000,0,0);}
.m3b_c00133{transform:matrix(0.094200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094200,0.000000,0.000000,0.250000,0,0);}
.m91_c00133{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.m113_c00133{transform:matrix(0.100850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100850,0.000000,0.000000,0.250000,0,0);}
.m147_c00133{transform:matrix(0.102300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102300,0.000000,0.000000,0.250000,0,0);}
.m172_c00133{transform:matrix(0.103775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103775,0.000000,0.000000,0.250000,0,0);}
.m6c_c00133{transform:matrix(0.107600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107600,0.000000,0.000000,0.250000,0,0);}
.mde_c00133{transform:matrix(0.109800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109800,0.000000,0.000000,0.250000,0,0);}
.m3a_c00133{transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);}
.m23_c00133{transform:matrix(0.109925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109925,0.000000,0.000000,0.250000,0,0);}
.m144_c00133{transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);}
.m16f_c00133{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m110_c00133{transform:matrix(0.111550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111550,0.000000,0.000000,0.250000,0,0);}
.m26_c00133{transform:matrix(0.112200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112200,0.000000,0.000000,0.250000,0,0);}
.mee_c00133{transform:matrix(0.112300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112300,0.000000,0.000000,0.250000,0,0);}
.m28_c00133{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);}
.m52_c00133{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.md4_c00133{transform:matrix(0.119600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119600,0.000000,0.000000,0.250000,0,0);}
.m10d_c00133{transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);}
.m68_c00133{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);}
.m13c_c00133{transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);}
.m2b_c00133{transform:matrix(0.123625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123625,0.000000,0.000000,0.250000,0,0);}
.me8_c00133{transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);}
.m25_c00133{transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);}
.m94_c00133{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m37_c00133{transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);}
.mb5_c00133{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00133{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);}
.m90_c00133{transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);}
.me4_c00133{transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);}
.m4e_c00133{transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);}
.m54_c00133{transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);}
.m9d_c00133{transform:matrix(0.131125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131125,0.000000,0.000000,0.250000,0,0);}
.m109_c00133{transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);}
.m6d_c00133{transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);}
.m107_c00133{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.m16e_c00133{transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);}
.m10a_c00133{transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);}
.m104_c00133{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.mc7_c00133{transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);}
.m24_c00133{transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);}
.m6e_c00133{transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);}
.m16d_c00133{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.mfe_c00133{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.mb0_c00133{transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);}
.maf_c00133{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);}
.m84_c00133{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00133{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.me7_c00133{transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);}
.med_c00133{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m146_c00133{transform:matrix(0.141525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141525,0.000000,0.000000,0.250000,0,0);}
.m2f_c00133{transform:matrix(0.141600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141600,0.000000,0.000000,0.250000,0,0);}
.m10e_c00133{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m8c_c00133{transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);}
.m5c_c00133{transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);}
.mdd_c00133{transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);}
.m21_c00133{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m159_c00133{transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);}
.m155_c00133{transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);}
.m14b_c00133{transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);}
.m141_c00133{transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);}
.m92_c00133{transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);}
.md6_c00133{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);}
.m10f_c00133{transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);}
.m115_c00133{transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);}
.m101_c00133{transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);}
.mc3_c00133{transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);}
.m88_c00133{transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);}
.m12a_c00133{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);}
.mcd_c00133{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.mb7_c00133{transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);}
.m8a_c00133{transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);}
.m8e_c00133{transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);}
.m51_c00133{transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);}
.me_c00133{transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);}
.mf_c00133{transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);}
.me6_c00133{transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);}
.m9c_c00133{transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);}
.mf5_c00133{transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);}
.mc1_c00133{transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);}
.mcb_c00133{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00133{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.m130_c00133{transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);}
.m36_c00133{transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);}
.m118_c00133{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m149_c00133{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m85_c00133{transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);}
.m89_c00133{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.me3_c00133{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);}
.m6f_c00133{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.ma5_c00133{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);}
.mb4_c00133{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);}
.maa_c00133{transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);}
.m13e_c00133{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m6a_c00133{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m2c_c00133{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m105_c00133{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);}
.m168_c00133{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m73_c00133{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.m66_c00133{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.m58_c00133{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);}
.ma1_c00133{transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);}
.m127_c00133{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.m145_c00133{transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);}
.m11f_c00133{transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);}
.mf7_c00133{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.m60_c00133{transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);}
.me5_c00133{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);}
.m129_c00133{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m62_c00133{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);}
.m136_c00133{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.m108_c00133{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);}
.mbc_c00133{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.md_c00133{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);}
.m116_c00133{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.mb9_c00133{transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);}
.m1a_c00133{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m121_c00133{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m120_c00133{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);}
.m59_c00133{transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);}
.m165_c00133{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.mfb_c00133{transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);}
.mce_c00133{transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);}
.mf3_c00133{transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);}
.m157_c00133{transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);}
.mb6_c00133{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.m122_c00133{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);}
.m44_c00133{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);}
.mf8_c00133{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.mf4_c00133{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.m156_c00133{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m134_c00133{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.m13b_c00133{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);}
.m12b_c00133{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.me1_c00133{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m65_c00133{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m11a_c00133{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);}
.mf6_c00133{transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);}
.m119_c00133{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m1d_c00133{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m112_c00133{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m125_c00133{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m124_c00133{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m137_c00133{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);}
.m22_c00133{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00133{transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);}
.ma8_c00133{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);}
.m128_c00133{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);}
.md9_c00133{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);}
.m133_c00133{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00133{transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);}
.mba_c00133{transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);}
.m117_c00133{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m77_c00133{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m10c_c00133{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.mc6_c00133{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);}
.m43_c00133{transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);}
.mdb_c00133{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.mec_c00133{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);}
.mfa_c00133{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m123_c00133{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m132_c00133{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.mcf_c00133{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);}
.m11d_c00133{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m126_c00133{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);}
.m97_c00133{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);}
.me2_c00133{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);}
.m16b_c00133{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.m164_c00133{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.m11c_c00133{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);}
.m64_c00133{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);}
.m74_c00133{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);}
.m15c_c00133{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.ma3_c00133{transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);}
.m12d_c00133{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m139_c00133{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);}
.m15a_c00133{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);}
.m143_c00133{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m8b_c00133{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m7b_c00133{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m8f_c00133{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);}
.ma7_c00133{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.mbb_c00133{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m100_c00133{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.m12c_c00133{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);}
.mf2_c00133{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);}
.m14_c00133{transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);}
.m83_c00133{transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);}
.ma2_c00133{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.m14a_c00133{transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);}
.m78_c00133{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);}
.mdc_c00133{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);}
.m46_c00133{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m14c_c00133{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);}
.md0_c00133{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);}
.m47_c00133{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);}
.m11_c00133{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);}
.mdf_c00133{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m35_c00133{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.mfd_c00133{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m82_c00133{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.mda_c00133{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);}
.mc5_c00133{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);}
.m4f_c00133{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);}
.m10b_c00133{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.m16c_c00133{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);}
.m2e_c00133{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_c00133{transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);}
.mb1_c00133{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);}
.m14d_c00133{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);}
.m12e_c00133{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);}
.mbe_c00133{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.mb2_c00133{transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);}
.mbf_c00133{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);}
.m169_c00133{transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);}
.m142_c00133{transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);}
.m42_c00133{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m86_c00133{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);}
.m131_c00133{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.m152_c00133{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);}
.m9_c00133{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);}
.m56_c00133{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);}
.m17_c00133{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m76_c00133{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);}
.ma_c00133{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);}
.m135_c00133{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m171_c00133{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m48_c00133{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);}
.m98_c00133{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);}
.m5d_c00133{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.m70_c00133{transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);}
.mf0_c00133{transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);}
.m81_c00133{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);}
.m111_c00133{transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);}
.mac_c00133{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m10_c00133{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m138_c00133{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m18_c00133{transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);}
.m19_c00133{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);}
.m158_c00133{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m167_c00133{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);}
.md3_c00133{transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);}
.m5b_c00133{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);}
.m11b_c00133{transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);}
.m15e_c00133{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m79_c00133{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);}
.m63_c00133{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);}
.mca_c00133{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);}
.mef_c00133{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);}
.m93_c00133{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m15_c00133{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);}
.mb8_c00133{transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);}
.mc9_c00133{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);}
.md1_c00133{transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);}
.m15b_c00133{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);}
.mff_c00133{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m154_c00133{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);}
.m33_c00133{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);}
.md2_c00133{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);}
.meb_c00133{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);}
.m34_c00133{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.mc4_c00133{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);}
.m16_c00133{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);}
.mc2_c00133{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);}
.m14e_c00133{transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);}
.ma0_c00133{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m2a_c00133{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);}
.md8_c00133{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m12f_c00133{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);}
.mc8_c00133{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m12_c00133{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);}
.m57_c00133{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);}
.md7_c00133{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);}
.m9b_c00133{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00133{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00133{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m50_c00133{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);}
.m6_c00133{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c00133{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);}
.m13a_c00133{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00133{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);}
.m1_c00133{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00133{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m41_c00133{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);}
.m7_c00133{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15d_c00133{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);}
.m45_c00133{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);}
.m55_c00133{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00133{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m40_c00133{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);}
.m5e_c00133{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mea_c00133{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me9_c00133{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);}
.m75_c00133{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c00133{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m53_c00133{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00133{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m69_c00133{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00133{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m102_c00133{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00133{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);}
.mf1_c00133{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00133{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00133{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);}
.m71_c00133{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m49_c00133{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);}
.mfc_c00133{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m30_c00133{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m95_c00133{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m87_c00133{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00133{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m99_c00133{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m32_c00133{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m106_c00133{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m61_c00133{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m80_c00133{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00133{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);}
.mbd_c00133{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);}
.m162_c00133{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);}
.m72_c00133{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c00133{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mc_c00133{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m173_c00133{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00133{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00133{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m13_c00133{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);}
.m7c_c00133{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00133{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m151_c00133{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.me0_c00133{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m160_c00133{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m103_c00133{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m31_c00133{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);}
.m67_c00133{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m114_c00133{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m27_c00133{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00133{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m2_c00133{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m174_c00133{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m161_c00133{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m163_c00133{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m153_c00133{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m39_c00133{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m13f_c00133{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00133{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m15f_c00133{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00133{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m20_c00133{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00133{transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);}
.m96_c00133{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00133{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m140_c00133{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00133{transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);}
.m5_c00133{transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);}
.md5_c00133{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m148_c00133{transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);}
.m4_c00133{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m150_c00133{transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00133{transform:matrix(1.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.555000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00133{transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);}
.m166_c00133{transform:matrix(3.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.102500,0.000000,0.000000,0.250000,0,0);}
.m170_c00133{transform:matrix(9.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.792500,0.000000,0.000000,0.250000,0,0);}
.v1_c00133{vertical-align:-6.900000px;}
.v0_c00133{vertical-align:0.000000px;}
.v2_c00133{vertical-align:44.940000px;}
.ls1_c00133{letter-spacing:0.000000px;}
.ls0_c00133{letter-spacing:37.350000px;}
.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;}
}
.ws1_c00133{word-spacing:-48.342360px;}
.ws0_c00133{word-spacing:-25.197350px;}
.ws2_c00133{word-spacing:0.000000px;}
._0_c00133{width:12.568920px;}
.fc0_c00133{color:transparent;}
.fs0_c00133{font-size:3.456000px;}
.fs1d_c00133{font-size:6.000000px;}
.fs22_c00133{font-size:6.900000px;}
.fs4_c00133{font-size:10.380000px;}
.fs2_c00133{font-size:13.800000px;}
.fs1_c00133{font-size:17.280000px;}
.fs3_c00133{font-size:20.760000px;}
.fs7_c00133{font-size:24.180000px;}
.fs1c_c00133{font-size:27.660000px;}
.fs21_c00133{font-size:31.080000px;}
.fs1e_c00133{font-size:34.560000px;}
.fs1a_c00133{font-size:38.040000px;}
.fse_c00133{font-size:41.460000px;}
.fs11_c00133{font-size:44.940000px;}
.fs1f_c00133{font-size:48.360000px;}
.fs10_c00133{font-size:51.840000px;}
.fs20_c00133{font-size:55.320000px;}
.fs6_c00133{font-size:58.740000px;}
.fs19_c00133{font-size:62.220000px;}
.fs1b_c00133{font-size:65.640000px;}
.fs5_c00133{font-size:69.120000px;}
.fs17_c00133{font-size:72.600000px;}
.fs15_c00133{font-size:76.020000px;}
.fs8_c00133{font-size:79.500000px;}
.fs9_c00133{font-size:82.920000px;}
.fsf_c00133{font-size:86.400000px;}
.fs18_c00133{font-size:89.880000px;}
.fsc_c00133{font-size:93.300000px;}
.fsd_c00133{font-size:96.780000px;}
.fsa_c00133{font-size:100.200000px;}
.fs16_c00133{font-size:103.680000px;}
.fs12_c00133{font-size:107.160000px;}
.fsb_c00133{font-size:110.580000px;}
.fs23_c00133{font-size:117.480000px;}
.fs13_c00133{font-size:120.960000px;}
.fs14_c00133{font-size:131.340000px;}
.y0_c00133{bottom:0.000000px;}
.y194_c00133{bottom:215.130000px;}
.y191_c00133{bottom:218.595000px;}
.y193_c00133{bottom:219.450000px;}
.y192_c00133{bottom:220.320000px;}
.y195_c00133{bottom:221.190000px;}
.y18e_c00133{bottom:222.045000px;}
.y190_c00133{bottom:222.915000px;}
.y18f_c00133{bottom:223.770000px;}
.y18d_c00133{bottom:226.365000px;}
.y188_c00133{bottom:227.235000px;}
.y189_c00133{bottom:231.555000px;}
.y187_c00133{bottom:234.150000px;}
.y18c_c00133{bottom:236.730000px;}
.y18b_c00133{bottom:241.050000px;}
.y18a_c00133{bottom:243.645000px;}
.y182_c00133{bottom:247.110000px;}
.y184_c00133{bottom:247.965000px;}
.y183_c00133{bottom:248.835000px;}
.y180_c00133{bottom:252.285000px;}
.y185_c00133{bottom:254.010000px;}
.y186_c00133{bottom:256.605000px;}
.y181_c00133{bottom:261.795000px;}
.y17e_c00133{bottom:273.885000px;}
.y17d_c00133{bottom:278.205000px;}
.y17c_c00133{bottom:279.075000px;}
.y17b_c00133{bottom:282.525000px;}
.y17f_c00133{bottom:288.570000px;}
.y172_c00133{bottom:297.210000px;}
.y171_c00133{bottom:298.950000px;}
.y173_c00133{bottom:303.270000px;}
.y175_c00133{bottom:305.850000px;}
.y174_c00133{bottom:306.720000px;}
.y176_c00133{bottom:308.445000px;}
.y177_c00133{bottom:312.765000px;}
.y178_c00133{bottom:313.635000px;}
.y179_c00133{bottom:314.490000px;}
.y17a_c00133{bottom:316.230000px;}
.y16a_c00133{bottom:323.130000px;}
.y16d_c00133{bottom:324.000000px;}
.y16f_c00133{bottom:324.870000px;}
.y16e_c00133{bottom:326.595000px;}
.y16b_c00133{bottom:327.450000px;}
.y16c_c00133{bottom:330.915000px;}
.y170_c00133{bottom:343.875000px;}
.y162_c00133{bottom:348.195000px;}
.y163_c00133{bottom:349.050000px;}
.y160_c00133{bottom:351.645000px;}
.y165_c00133{bottom:352.515000px;}
.y161_c00133{bottom:354.240000px;}
.y164_c00133{bottom:355.110000px;}
.y166_c00133{bottom:356.835000px;}
.y167_c00133{bottom:358.560000px;}
.y168_c00133{bottom:362.880000px;}
.y169_c00133{bottom:365.475000px;}
.y158_c00133{bottom:369.795000px;}
.y155_c00133{bottom:370.650000px;}
.y159_c00133{bottom:371.520000px;}
.y15a_c00133{bottom:373.245000px;}
.y15c_c00133{bottom:374.970000px;}
.y15d_c00133{bottom:375.840000px;}
.y15e_c00133{bottom:378.435000px;}
.y154_c00133{bottom:379.290000px;}
.y15b_c00133{bottom:381.885000px;}
.y157_c00133{bottom:382.755000px;}
.y156_c00133{bottom:383.610000px;}
.y15f_c00133{bottom:396.570000px;}
.y14d_c00133{bottom:399.165000px;}
.y14f_c00133{bottom:400.035000px;}
.y151_c00133{bottom:401.760000px;}
.y152_c00133{bottom:402.630000px;}
.y14c_c00133{bottom:403.485000px;}
.y14e_c00133{bottom:405.210000px;}
.y150_c00133{bottom:410.400000px;}
.y153_c00133{bottom:414.720000px;}
.y14b_c00133{bottom:415.590000px;}
.y142_c00133{bottom:420.765000px;}
.y143_c00133{bottom:423.360000px;}
.y146_c00133{bottom:424.230000px;}
.y144_c00133{bottom:425.085000px;}
.y149_c00133{bottom:427.680000px;}
.y145_c00133{bottom:428.550000px;}
.y141_c00133{bottom:430.275000px;}
.y147_c00133{bottom:432.000000px;}
.y148_c00133{bottom:432.870000px;}
.y14a_c00133{bottom:444.090000px;}
.y13b_c00133{bottom:448.410000px;}
.y13d_c00133{bottom:449.280000px;}
.y13c_c00133{bottom:451.005000px;}
.y13f_c00133{bottom:452.730000px;}
.y13e_c00133{bottom:456.195000px;}
.y140_c00133{bottom:458.790000px;}
.y13a_c00133{bottom:467.430000px;}
.y134_c00133{bottom:472.605000px;}
.y135_c00133{bottom:473.475000px;}
.y133_c00133{bottom:476.070000px;}
.y137_c00133{bottom:476.925000px;}
.y136_c00133{bottom:477.795000px;}
.y138_c00133{bottom:484.710000px;}
.y139_c00133{bottom:485.565000px;}
.y12e_c00133{bottom:497.670000px;}
.y12f_c00133{bottom:498.525000px;}
.y130_c00133{bottom:500.250000px;}
.y12d_c00133{bottom:501.120000px;}
.y132_c00133{bottom:501.990000px;}
.y131_c00133{bottom:503.715000px;}
.y12c_c00133{bottom:520.125000px;}
.y126_c00133{bottom:521.850000px;}
.y127_c00133{bottom:522.720000px;}
.y128_c00133{bottom:525.315000px;}
.y12a_c00133{bottom:526.170000px;}
.y12b_c00133{bottom:527.040000px;}
.y125_c00133{bottom:529.635000px;}
.y129_c00133{bottom:533.955000px;}
.y120_c00133{bottom:546.045000px;}
.y121_c00133{bottom:548.640000px;}
.y122_c00133{bottom:550.365000px;}
.y123_c00133{bottom:551.235000px;}
.y124_c00133{bottom:552.960000px;}
.y114_c00133{bottom:571.110000px;}
.y113_c00133{bottom:572.835000px;}
.y116_c00133{bottom:573.690000px;}
.y11e_c00133{bottom:575.430000px;}
.y11f_c00133{bottom:576.285000px;}
.y11b_c00133{bottom:577.155000px;}
.y11a_c00133{bottom:578.880000px;}
.y118_c00133{bottom:579.750000px;}
.y115_c00133{bottom:580.605000px;}
.y11c_c00133{bottom:586.650000px;}
.y11d_c00133{bottom:589.245000px;}
.y117_c00133{bottom:590.115000px;}
.y10c_c00133{bottom:593.565000px;}
.y10a_c00133{bottom:594.435000px;}
.y119_c00133{bottom:595.290000px;}
.y10d_c00133{bottom:596.160000px;}
.y10e_c00133{bottom:597.030000px;}
.y109_c00133{bottom:597.885000px;}
.y10f_c00133{bottom:600.480000px;}
.y110_c00133{bottom:603.075000px;}
.y10b_c00133{bottom:604.800000px;}
.y111_c00133{bottom:605.670000px;}
.y112_c00133{bottom:617.760000px;}
.y101_c00133{bottom:622.080000px;}
.y102_c00133{bottom:623.805000px;}
.y100_c00133{bottom:624.675000px;}
.y105_c00133{bottom:625.530000px;}
.y106_c00133{bottom:627.270000px;}
.yff_c00133{bottom:628.125000px;}
.y104_c00133{bottom:628.995000px;}
.y107_c00133{bottom:629.850000px;}
.y103_c00133{bottom:631.590000px;}
.y108_c00133{bottom:632.445000px;}
.yfe_c00133{bottom:642.810000px;}
.yf9_c00133{bottom:648.000000px;}
.yfb_c00133{bottom:649.725000px;}
.yfa_c00133{bottom:652.320000px;}
.yfc_c00133{bottom:653.190000px;}
.yfd_c00133{bottom:657.510000px;}
.yf5_c00133{bottom:674.790000px;}
.yf3_c00133{bottom:676.515000px;}
.yf7_c00133{bottom:677.370000px;}
.yf4_c00133{bottom:679.110000px;}
.yf8_c00133{bottom:679.965000px;}
.yf6_c00133{bottom:684.285000px;}
.yf2_c00133{bottom:689.475000px;}
.yeb_c00133{bottom:697.245000px;}
.ye8_c00133{bottom:698.115000px;}
.yee_c00133{bottom:698.970000px;}
.yef_c00133{bottom:699.840000px;}
.yf0_c00133{bottom:701.565000px;}
.yec_c00133{bottom:704.160000px;}
.yed_c00133{bottom:705.030000px;}
.ye9_c00133{bottom:705.885000px;}
.yf1_c00133{bottom:709.350000px;}
.yea_c00133{bottom:716.250000px;}
.ye2_c00133{bottom:721.440000px;}
.ye3_c00133{bottom:722.310000px;}
.ye4_c00133{bottom:724.035000px;}
.ye5_c00133{bottom:726.630000px;}
.ye7_c00133{bottom:727.485000px;}
.ye6_c00133{bottom:728.355000px;}
.ydd_c00133{bottom:747.360000px;}
.ydf_c00133{bottom:749.955000px;}
.ydc_c00133{bottom:750.810000px;}
.ye0_c00133{bottom:751.680000px;}
.ye1_c00133{bottom:752.550000px;}
.yde_c00133{bottom:754.275000px;}
.yd6_c00133{bottom:770.685000px;}
.yd5_c00133{bottom:771.555000px;}
.yd1_c00133{bottom:772.410000px;}
.yd8_c00133{bottom:774.150000px;}
.yd2_c00133{bottom:776.730000px;}
.yd3_c00133{bottom:777.600000px;}
.yd4_c00133{bottom:778.470000px;}
.yd7_c00133{bottom:779.325000px;}
.yd9_c00133{bottom:780.195000px;}
.yda_c00133{bottom:781.050000px;}
.ydb_c00133{bottom:781.920000px;}
.ycd_c00133{bottom:793.155000px;}
.yce_c00133{bottom:794.880000px;}
.ycf_c00133{bottom:799.200000px;}
.yd0_c00133{bottom:811.290000px;}
.yc7_c00133{bottom:819.075000px;}
.yc5_c00133{bottom:819.930000px;}
.ycc_c00133{bottom:824.250000px;}
.yc6_c00133{bottom:825.120000px;}
.yc9_c00133{bottom:825.990000px;}
.yc4_c00133{bottom:826.845000px;}
.yc8_c00133{bottom:828.570000px;}
.yca_c00133{bottom:829.440000px;}
.ycb_c00133{bottom:831.165000px;}
.yc1_c00133{bottom:844.995000px;}
.ybf_c00133{bottom:845.850000px;}
.yc2_c00133{bottom:846.720000px;}
.yc3_c00133{bottom:848.445000px;}
.yc0_c00133{bottom:849.315000px;}
.ybb_c00133{bottom:870.045000px;}
.yba_c00133{bottom:870.915000px;}
.yb8_c00133{bottom:871.770000px;}
.ybc_c00133{bottom:873.510000px;}
.yb9_c00133{bottom:876.960000px;}
.ybd_c00133{bottom:889.920000px;}
.yb3_c00133{bottom:895.110000px;}
.yb4_c00133{bottom:895.965000px;}
.ybe_c00133{bottom:896.835000px;}
.yb5_c00133{bottom:899.430000px;}
.yb7_c00133{bottom:901.155000px;}
.yb2_c00133{bottom:904.605000px;}
.yb6_c00133{bottom:906.330000px;}
.yaa_c00133{bottom:916.710000px;}
.ya8_c00133{bottom:918.435000px;}
.ya7_c00133{bottom:919.290000px;}
.yac_c00133{bottom:921.030000px;}
.ya6_c00133{bottom:921.885000px;}
.yaf_c00133{bottom:922.755000px;}
.ya9_c00133{bottom:923.610000px;}
.yab_c00133{bottom:924.480000px;}
.yb0_c00133{bottom:925.350000px;}
.y9b_c00133{bottom:927.075000px;}
.yb1_c00133{bottom:928.800000px;}
.yae_c00133{bottom:929.670000px;}
.yad_c00133{bottom:932.250000px;}
.y9d_c00133{bottom:933.990000px;}
.y9e_c00133{bottom:936.570000px;}
.y9c_c00133{bottom:937.440000px;}
.ya1_c00133{bottom:938.310000px;}
.ya4_c00133{bottom:939.165000px;}
.y9a_c00133{bottom:940.035000px;}
.ya0_c00133{bottom:940.890000px;}
.y9f_c00133{bottom:941.760000px;}
.y94_c00133{bottom:942.630000px;}
.ya2_c00133{bottom:944.355000px;}
.ya3_c00133{bottom:945.210000px;}
.ya5_c00133{bottom:946.080000px;}
.y95_c00133{bottom:946.950000px;}
.y96_c00133{bottom:947.805000px;}
.y97_c00133{bottom:948.675000px;}
.y98_c00133{bottom:949.530000px;}
.y99_c00133{bottom:952.125000px;}
.y19a_c00133{bottom:954.720000px;}
.y93_c00133{bottom:955.590000px;}
.y8c_c00133{bottom:970.275000px;}
.y8d_c00133{bottom:972.870000px;}
.y90_c00133{bottom:974.595000px;}
.y92_c00133{bottom:975.450000px;}
.y91_c00133{bottom:976.320000px;}
.y8f_c00133{bottom:980.640000px;}
.y8e_c00133{bottom:991.005000px;}
.y85_c00133{bottom:995.325000px;}
.y86_c00133{bottom:996.195000px;}
.y89_c00133{bottom:997.920000px;}
.y87_c00133{bottom:998.790000px;}
.y8a_c00133{bottom:999.645000px;}
.y88_c00133{bottom:1000.515000px;}
.y82_c00133{bottom:1005.690000px;}
.y83_c00133{bottom:1006.560000px;}
.y8b_c00133{bottom:1007.430000px;}
.y80_c00133{bottom:1014.330000px;}
.y81_c00133{bottom:1015.200000px;}
.y7e_c00133{bottom:1018.650000px;}
.y7d_c00133{bottom:1019.520000px;}
.y7c_c00133{bottom:1020.390000px;}
.y84_c00133{bottom:1021.245000px;}
.y7f_c00133{bottom:1022.115000px;}
.y79_c00133{bottom:1023.840000px;}
.y77_c00133{bottom:1024.710000px;}
.y78_c00133{bottom:1026.435000px;}
.y7a_c00133{bottom:1028.160000px;}
.y7b_c00133{bottom:1031.610000px;}
.y6f_c00133{bottom:1044.570000px;}
.y73_c00133{bottom:1047.165000px;}
.y71_c00133{bottom:1048.890000px;}
.y74_c00133{bottom:1049.760000px;}
.y6e_c00133{bottom:1050.630000px;}
.y70_c00133{bottom:1052.355000px;}
.y75_c00133{bottom:1053.210000px;}
.y72_c00133{bottom:1054.080000px;}
.y76_c00133{bottom:1065.315000px;}
.y6a_c00133{bottom:1070.490000px;}
.y6b_c00133{bottom:1071.360000px;}
.y6c_c00133{bottom:1073.955000px;}
.y6d_c00133{bottom:1074.810000px;}
.y69_c00133{bottom:1076.550000px;}
.y60_c00133{bottom:1094.685000px;}
.y62_c00133{bottom:1097.280000px;}
.y65_c00133{bottom:1099.005000px;}
.y68_c00133{bottom:1099.875000px;}
.y5f_c00133{bottom:1100.730000px;}
.y61_c00133{bottom:1101.600000px;}
.y63_c00133{bottom:1104.195000px;}
.y64_c00133{bottom:1105.050000px;}
.y66_c00133{bottom:1105.920000px;}
.y67_c00133{bottom:1107.645000px;}
.y5a_c00133{bottom:1120.605000px;}
.y59_c00133{bottom:1121.475000px;}
.y5d_c00133{bottom:1124.070000px;}
.y5b_c00133{bottom:1127.520000px;}
.y5c_c00133{bottom:1129.245000px;}
.y5e_c00133{bottom:1131.840000px;}
.y4_c00133{bottom:1144.800000px;}
.y54_c00133{bottom:1145.670000px;}
.y56_c00133{bottom:1149.990000px;}
.y53_c00133{bottom:1151.715000px;}
.y55_c00133{bottom:1153.440000px;}
.y57_c00133{bottom:1156.890000px;}
.y58_c00133{bottom:1164.675000px;}
.y4b_c00133{bottom:1171.590000px;}
.y4c_c00133{bottom:1173.315000px;}
.y49_c00133{bottom:1175.040000px;}
.y45_c00133{bottom:1175.910000px;}
.y46_c00133{bottom:1176.765000px;}
.y47_c00133{bottom:1177.635000px;}
.y48_c00133{bottom:1178.490000px;}
.y4a_c00133{bottom:1179.360000px;}
.y4f_c00133{bottom:1180.230000px;}
.y4d_c00133{bottom:1181.085000px;}
.y4e_c00133{bottom:1181.955000px;}
.y51_c00133{bottom:1182.810000px;}
.y50_c00133{bottom:1183.680000px;}
.y52_c00133{bottom:1184.550000px;}
.y3e_c00133{bottom:1195.770000px;}
.y41_c00133{bottom:1197.510000px;}
.y40_c00133{bottom:1200.090000px;}
.y3f_c00133{bottom:1200.960000px;}
.y42_c00133{bottom:1201.830000px;}
.y44_c00133{bottom:1207.005000px;}
.y43_c00133{bottom:1207.875000px;}
.y39_c00133{bottom:1219.965000px;}
.y36_c00133{bottom:1220.835000px;}
.y38_c00133{bottom:1221.690000px;}
.y3a_c00133{bottom:1223.430000px;}
.y3b_c00133{bottom:1225.155000px;}
.y35_c00133{bottom:1226.010000px;}
.y37_c00133{bottom:1229.475000px;}
.y3c_c00133{bottom:1232.070000px;}
.y34_c00133{bottom:1232.925000px;}
.y3d_c00133{bottom:1241.565000px;}
.y2d_c00133{bottom:1243.290000px;}
.y2e_c00133{bottom:1244.160000px;}
.y2c_c00133{bottom:1245.030000px;}
.y31_c00133{bottom:1246.755000px;}
.y2b_c00133{bottom:1247.610000px;}
.y30_c00133{bottom:1251.075000px;}
.y33_c00133{bottom:1254.525000px;}
.y2f_c00133{bottom:1255.395000px;}
.y32_c00133{bottom:1256.250000px;}
.y23_c00133{bottom:1265.760000px;}
.y21_c00133{bottom:1266.630000px;}
.y26_c00133{bottom:1267.485000px;}
.y24_c00133{bottom:1268.355000px;}
.y29_c00133{bottom:1270.950000px;}
.y2a_c00133{bottom:1271.805000px;}
.y25_c00133{bottom:1272.675000px;}
.y27_c00133{bottom:1277.850000px;}
.y28_c00133{bottom:1281.315000px;}
.y20_c00133{bottom:1289.955000px;}
.y22_c00133{bottom:1291.680000px;}
.y17_c00133{bottom:1296.000000px;}
.y18_c00133{bottom:1297.725000px;}
.y19_c00133{bottom:1299.450000px;}
.y197_c00133{bottom:1301.190000px;}
.y1f_c00133{bottom:1303.770000px;}
.y198_c00133{bottom:1304.640000px;}
.y1d_c00133{bottom:1306.365000px;}
.y1a_c00133{bottom:1308.960000px;}
.y1e_c00133{bottom:1309.830000px;}
.y196_c00133{bottom:1311.555000px;}
.y1c_c00133{bottom:1314.150000px;}
.y1b_c00133{bottom:1315.005000px;}
.yf_c00133{bottom:1319.325000px;}
.y10_c00133{bottom:1320.195000px;}
.y11_c00133{bottom:1321.920000px;}
.y13_c00133{bottom:1324.515000px;}
.y14_c00133{bottom:1326.240000px;}
.y16_c00133{bottom:1327.965000px;}
.y15_c00133{bottom:1329.690000px;}
.y12_c00133{bottom:1330.560000px;}
.y199_c00133{bottom:1346.115000px;}
.yc_c00133{bottom:1347.840000px;}
.yd_c00133{bottom:1348.710000px;}
.ye_c00133{bottom:1350.435000px;}
.y9_c00133{bottom:1378.080000px;}
.ya_c00133{bottom:1378.950000px;}
.yb_c00133{bottom:1379.805000px;}
.y6_c00133{bottom:1384.125000px;}
.y7_c00133{bottom:1385.850000px;}
.y8_c00133{bottom:1386.720000px;}
.y5_c00133{bottom:1406.595000px;}
.y1_c00133{bottom:1410.045000px;}
.y2_c00133{bottom:1410.915000px;}
.y3_c00133{bottom:1416.960000px;}
.h2_c00133{height:3.110063px;}
.h20_c00133{height:5.399414px;}
.h25_c00133{height:6.209326px;}
.h6_c00133{height:9.340986px;}
.h5_c00133{height:11.781973px;}
.h4_c00133{height:12.418652px;}
.h3_c00133{height:15.550313px;}
.h1c_c00133{height:18.681973px;}
.h9_c00133{height:21.759639px;}
.h1f_c00133{height:24.891299px;}
.h24_c00133{height:27.968965px;}
.h21_c00133{height:31.100625px;}
.h1d_c00133{height:34.232285px;}
.h10_c00133{height:37.309951px;}
.h13_c00133{height:40.441611px;}
.h22_c00133{height:43.519277px;}
.h12_c00133{height:46.650937px;}
.h23_c00133{height:49.782598px;}
.h8_c00133{height:52.860264px;}
.h1b_c00133{height:55.991924px;}
.h1e_c00133{height:59.069590px;}
.h7_c00133{height:62.201250px;}
.h19_c00133{height:65.332910px;}
.h17_c00133{height:68.410576px;}
.ha_c00133{height:71.542236px;}
.hb_c00133{height:74.619902px;}
.h11_c00133{height:77.751563px;}
.h1a_c00133{height:80.883223px;}
.he_c00133{height:83.960889px;}
.hf_c00133{height:87.092549px;}
.hc_c00133{height:90.170215px;}
.h18_c00133{height:93.301875px;}
.h14_c00133{height:96.433535px;}
.h27_c00133{height:97.800264px;}
.hd_c00133{height:99.511201px;}
.h26_c00133{height:105.720527px;}
.h15_c00133{height:108.852188px;}
.h16_c00133{height:118.193174px;}
.h1_c00133{height:1503.000000px;}
.h0_c00133{height:1503.360000px;}
.w0_c00133{width:1088.640000px;}
.w1_c00133{width:1089.000000px;}
.x0_c00133{left:0.000000px;}
.x113_c00133{left:69.120000px;}
.x114_c00133{left:106.275000px;}
.x115_c00133{left:120.960000px;}
.x116_c00133{left:132.195000px;}
.x5_c00133{left:139.965000px;}
.xd6_c00133{left:184.890000px;}
.xce_c00133{left:189.210000px;}
.xcf_c00133{left:201.315000px;}
.x1_c00133{left:207.360000px;}
.xca_c00133{left:209.085000px;}
.x2_c00133{left:212.550000px;}
.x37_c00133{left:214.275000px;}
.xd0_c00133{left:216.870000px;}
.xa5_c00133{left:219.449925px;}
.x25_c00133{left:226.365000px;}
.x43_c00133{left:228.090000px;}
.x11_c00133{left:230.685000px;}
.xa6_c00133{left:232.410000px;}
.x75_c00133{left:234.150000px;}
.x59_c00133{left:235.875000px;}
.x14_c00133{left:237.600000px;}
.xeb_c00133{left:239.325000px;}
.x101_c00133{left:241.050000px;}
.xfa_c00133{left:242.790000px;}
.xc6_c00133{left:247.110000px;}
.x8c_c00133{left:248.835000px;}
.x26_c00133{left:253.155000px;}
.x64_c00133{left:255.750000px;}
.x27_c00133{left:257.475000px;}
.x49_c00133{left:260.925000px;}
.xaf_c00133{left:263.520000px;}
.x4a_c00133{left:266.970000px;}
.x65_c00133{left:268.710000px;}
.x5a_c00133{left:271.290000px;}
.x79_c00133{left:273.885000px;}
.xd7_c00133{left:278.205000px;}
.x2f_c00133{left:282.525000px;}
.xcb_c00133{left:284.250000px;}
.xf0_c00133{left:285.990000px;}
.x38_c00133{left:287.715000px;}
.x44_c00133{left:290.310000px;}
.x1c_c00133{left:292.890000px;}
.xbd_c00133{left:294.630000px;}
.x8d_c00133{left:298.080000px;}
.xbb_c00133{left:299.805000px;}
.x9c_c00133{left:302.400000px;}
.x102_c00133{left:304.995000px;}
.xae_c00133{left:307.590000px;}
.x81_c00133{left:310.170000px;}
.x4b_c00133{left:311.910000px;}
.xe9_c00133{left:313.635000px;}
.x15_c00133{left:315.360000px;}
.xb0_c00133{left:317.955000px;}
.xcc_c00133{left:320.550000px;}
.x8_c00133{left:324.000000px;}
.x66_c00133{left:325.725000px;}
.x109_c00133{left:328.320000px;}
.xb1_c00133{left:330.045000px;}
.x4c_c00133{left:332.640000px;}
.x8e_c00133{left:335.235000px;}
.x5f_c00133{left:336.960000px;}
.x1d_c00133{left:339.555000px;}
.xbe_c00133{left:341.280000px;}
.xf1_c00133{left:345.600000px;}
.xb2_c00133{left:348.195000px;}
.xd4_c00133{left:352.515000px;}
.x8f_c00133{left:355.110000px;}
.x4d_c00133{left:358.560000px;}
.x28_c00133{left:361.155000px;}
.x9d_c00133{left:365.475000px;}
.x30_c00133{left:367.200000px;}
.x6_c00133{left:369.795000px;}
.x10b_c00133{left:371.520000px;}
.x39_c00133{left:376.710000px;}
.x12_c00133{left:378.435000px;}
.x4e_c00133{left:380.160000px;}
.x90_c00133{left:382.755000px;}
.x3a_c00133{left:384.480000px;}
.x45_c00133{left:386.205000px;}
.x4f_c00133{left:387.930000px;}
.xa9_c00133{left:389.670000px;}
.x60_c00133{left:391.395000px;}
.x5b_c00133{left:393.990000px;}
.x76_c00133{left:395.715000px;}
.x50_c00133{left:397.440000px;}
.xb3_c00133{left:400.035000px;}
.xed_c00133{left:401.760000px;}
.xdd_c00133{left:403.485000px;}
.x9_c00133{left:407.805000px;}
.x103_c00133{left:409.530000px;}
.xbc_c00133{left:411.270000px;}
.xd8_c00133{left:414.720000px;}
.xc7_c00133{left:416.445000px;}
.xa_c00133{left:419.040000px;}
.x16_c00133{left:421.635000px;}
.x7a_c00133{left:423.360000px;}
.x31_c00133{left:425.955000px;}
.x3b_c00133{left:428.550000px;}
.x51_c00133{left:432.000000px;}
.x9e_c00133{left:434.595000px;}
.x61_c00133{left:436.320000px;}
.xb_c00133{left:440.640000px;}
.x62_c00133{left:443.235000px;}
.x52_c00133{left:444.960000px;}
.xf2_c00133{left:451.005000px;}
.xbf_c00133{left:453.600000px;}
.x9f_c00133{left:457.920000px;}
.xc0_c00133{left:460.515000px;}
.x17_c00133{left:464.835000px;}
.x67_c00133{left:467.430000px;}
.x73_c00133{left:470.010000px;}
.xb4_c00133{left:472.605000px;}
.x7b_c00133{left:474.330000px;}
.x100_c00133{left:476.070000px;}
.x77_c00133{left:479.520000px;}
.x53_c00133{left:482.115000px;}
.x3c_c00133{left:483.840000px;}
.x10e_c00133{left:486.435000px;}
.xaa_c00133{left:488.160000px;}
.x7_c00133{left:489.885000px;}
.xc8_c00133{left:495.930000px;}
.x46_c00133{left:498.525000px;}
.x91_c00133{left:501.120210px;}
.xa7_c00133{left:504.570000px;}
.x68_c00133{left:506.310000px;}
.x18_c00133{left:509.760000px;}
.x92_c00133{left:512.355000px;}
.xe6_c00133{left:514.950000px;}
.x10c_c00133{left:516.675000px;}
.x69_c00133{left:518.400000px;}
.x10d_c00133{left:523.590000px;}
.xfb_c00133{left:528.765000px;}
.x32_c00133{left:530.490000px;}
.x82_c00133{left:532.230000px;}
.xec_c00133{left:533.955000px;}
.xc1_c00133{left:538.275000px;}
.xf3_c00133{left:540.870000px;}
.x93_c00133{left:542.595000px;}
.xee_c00133{left:546.915000px;}
.xda_c00133{left:548.640000px;}
.x33_c00133{left:551.235000px;}
.x6a_c00133{left:552.960000px;}
.xd1_c00133{left:555.555000px;}
.x54_c00133{left:557.280000px;}
.xc2_c00133{left:562.470000px;}
.x10a_c00133{left:564.195000px;}
.x47_c00133{left:565.920000px;}
.xde_c00133{left:567.645000px;}
.xd_c00133{left:570.240000px;}
.xdb_c00133{left:574.560000px;}
.x55_c00133{left:576.285000px;}
.x89_c00133{left:578.880000px;}
.x6b_c00133{left:580.605000px;}
.x94_c00133{left:582.330000px;}
.x34_c00133{left:584.070000px;}
.xf6_c00133{left:590.970000px;}
.xd2_c00133{left:592.710000px;}
.x74_c00133{left:597.885000px;}
.x6c_c00133{left:599.610000px;}
.xc3_c00133{left:604.800000px;}
.xfe_c00133{left:609.120000px;}
.x95_c00133{left:611.715000px;}
.xe7_c00133{left:613.440000px;}
.x56_c00133{left:616.035000px;}
.xa0_c00133{left:621.210000px;}
.x19_c00133{left:624.675000px;}
.x7c_c00133{left:629.850000px;}
.x5c_c00133{left:631.590000px;}
.x108_c00133{left:635.910000px;}
.xfc_c00133{left:639.360000px;}
.xdf_c00133{left:641.085000px;}
.xe8_c00133{left:642.810000px;}
.x72_c00133{left:649.725000px;}
.x3d_c00133{left:651.450000px;}
.xe_c00133{left:654.915000px;}
.x96_c00133{left:658.365000px;}
.xb5_c00133{left:661.830000px;}
.x84_c00133{left:664.410000px;}
.x1a_c00133{left:666.150000px;}
.x13_c00133{left:667.875000px;}
.x3e_c00133{left:671.325000px;}
.x7d_c00133{left:673.920000px;}
.xfd_c00133{left:678.240000px;}
.x29_c00133{left:679.965000px;}
.xf_c00133{left:683.430000px;}
.x6d_c00133{left:685.155000px;}
.x78_c00133{left:687.750000px;}
.xa1_c00133{left:689.475000px;}
.xe0_c00133{left:693.795000px;}
.x85_c00133{left:695.520000px;}
.x1b_c00133{left:698.115000px;}
.xf7_c00133{left:700.710000px;}
.xe1_c00133{left:705.030000px;}
.x104_c00133{left:708.480000px;}
.x2a_c00133{left:713.670000px;}
.x1e_c00133{left:715.395000px;}
.x6e_c00133{left:719.715000px;}
.xb6_c00133{left:721.440000px;}
.x3f_c00133{left:725.760000px;}
.x10_c00133{left:728.355000px;}
.xf8_c00133{left:730.950000px;}
.x97_c00133{left:734.400000px;}
.xd5_c00133{left:736.125000px;}
.x7e_c00133{left:737.850000px;}
.xab_c00133{left:739.590000px;}
.xa2_c00133{left:741.315000px;}
.x98_c00133{left:744.765000px;}
.xe2_c00133{left:746.490525px;}
.x1f_c00133{left:748.230000px;}
.xf4_c00133{left:749.955000px;}
.xb7_c00133{left:753.405000px;}
.xf9_c00133{left:755.130000px;}
.xe3_c00133{left:756.869850px;}
.xc9_c00133{left:762.915000px;}
.xe4_c00133{left:765.510000px;}
.x7f_c00133{left:768.960000px;}
.x40_c00133{left:772.410000px;}
.x83_c00133{left:775.005000px;}
.x20_c00133{left:777.600000px;}
.x105_c00133{left:779.325000px;}
.x6f_c00133{left:781.920000px;}
.xb8_c00133{left:783.645000px;}
.x21_c00133{left:785.370000px;}
.xff_c00133{left:787.110000px;}
.x48_c00133{left:789.690000px;}
.x99_c00133{left:791.430000px;}
.x70_c00133{left:794.880000px;}
.x80_c00133{left:796.605000px;}
.xc4_c00133{left:798.330000px;}
.x8a_c00133{left:801.795000px;}
.x71_c00133{left:803.520000px;}
.x106_c00133{left:806.115000px;}
.x22_c00133{left:807.840000px;}
.xcd_c00133{left:813.885000px;}
.xa3_c00133{left:816.480000px;}
.x23_c00133{left:819.075000px;}
.xef_c00133{left:821.670000px;}
.x107_c00133{left:823.395000px;}
.x2b_c00133{left:825.990000px;}
.x86_c00133{left:828.570000px;}
.x57_c00133{left:830.310000px;}
.x9a_c00133{left:832.035000px;}
.x2c_c00133{left:834.630000px;}
.x35_c00133{left:838.080000px;}
.xea_c00133{left:841.530000px;}
.x58_c00133{left:843.270000px;}
.xc_c00133{left:846.720000px;}
.x9b_c00133{left:850.170000px;}
.xb9_c00133{left:853.635000px;}
.xba_c00133{left:855.360000px;}
.x41_c00133{left:857.955000px;}
.xc5_c00133{left:860.550000px;}
.x2d_c00133{left:865.725000px;}
.xe5_c00133{left:868.320000px;}
.x24_c00133{left:874.365000px;}
.xd3_c00133{left:876.090000px;}
.x5d_c00133{left:880.410000px;}
.x2e_c00133{left:882.150000px;}
.xa4_c00133{left:883.875000px;}
.xdc_c00133{left:885.600000px;}
.x87_c00133{left:887.325000px;}
.xac_c00133{left:889.920000px;}
.xf5_c00133{left:892.515000px;}
.xd9_c00133{left:894.240000px;}
.x8b_c00133{left:895.965000px;}
.x36_c00133{left:897.690000px;}
.x63_c00133{left:899.430000px;}
.x5e_c00133{left:901.155000px;}
.xa8_c00133{left:902.880000px;}
.x88_c00133{left:910.650000px;}
.x3_c00133{left:918.435000px;}
.x42_c00133{left:923.610000px;}
.xad_c00133{left:929.670000px;}
.x4_c00133{left:937.440000px;}
.x10f_c00133{left:940.890000px;}
.x110_c00133{left:946.080000px;}
.x111_c00133{left:966.810000px;}
.x112_c00133{left:986.685000px;}
@media print{
.v1_c00133{vertical-align:-6.133333pt;}
.v0_c00133{vertical-align:0.000000pt;}
.v2_c00133{vertical-align:39.946667pt;}
.ls1_c00133{letter-spacing:0.000000pt;}
.ls0_c00133{letter-spacing:33.200000pt;}
.ws1_c00133{word-spacing:-42.970987pt;}
.ws0_c00133{word-spacing:-22.397645pt;}
.ws2_c00133{word-spacing:0.000000pt;}
._0_c00133{width:11.172373pt;}
.fs0_c00133{font-size:3.072000pt;}
.fs1d_c00133{font-size:5.333333pt;}
.fs22_c00133{font-size:6.133333pt;}
.fs4_c00133{font-size:9.226667pt;}
.fs2_c00133{font-size:12.266667pt;}
.fs1_c00133{font-size:15.360000pt;}
.fs3_c00133{font-size:18.453333pt;}
.fs7_c00133{font-size:21.493333pt;}
.fs1c_c00133{font-size:24.586667pt;}
.fs21_c00133{font-size:27.626667pt;}
.fs1e_c00133{font-size:30.720000pt;}
.fs1a_c00133{font-size:33.813333pt;}
.fse_c00133{font-size:36.853333pt;}
.fs11_c00133{font-size:39.946667pt;}
.fs1f_c00133{font-size:42.986667pt;}
.fs10_c00133{font-size:46.080000pt;}
.fs20_c00133{font-size:49.173333pt;}
.fs6_c00133{font-size:52.213333pt;}
.fs19_c00133{font-size:55.306667pt;}
.fs1b_c00133{font-size:58.346667pt;}
.fs5_c00133{font-size:61.440000pt;}
.fs17_c00133{font-size:64.533333pt;}
.fs15_c00133{font-size:67.573333pt;}
.fs8_c00133{font-size:70.666667pt;}
.fs9_c00133{font-size:73.706667pt;}
.fsf_c00133{font-size:76.800000pt;}
.fs18_c00133{font-size:79.893333pt;}
.fsc_c00133{font-size:82.933333pt;}
.fsd_c00133{font-size:86.026667pt;}
.fsa_c00133{font-size:89.066667pt;}
.fs16_c00133{font-size:92.160000pt;}
.fs12_c00133{font-size:95.253333pt;}
.fsb_c00133{font-size:98.293333pt;}
.fs23_c00133{font-size:104.426667pt;}
.fs13_c00133{font-size:107.520000pt;}
.fs14_c00133{font-size:116.746667pt;}
.y0_c00133{bottom:0.000000pt;}
.y194_c00133{bottom:191.226667pt;}
.y191_c00133{bottom:194.306667pt;}
.y193_c00133{bottom:195.066667pt;}
.y192_c00133{bottom:195.840000pt;}
.y195_c00133{bottom:196.613333pt;}
.y18e_c00133{bottom:197.373333pt;}
.y190_c00133{bottom:198.146667pt;}
.y18f_c00133{bottom:198.906667pt;}
.y18d_c00133{bottom:201.213333pt;}
.y188_c00133{bottom:201.986667pt;}
.y189_c00133{bottom:205.826667pt;}
.y187_c00133{bottom:208.133333pt;}
.y18c_c00133{bottom:210.426667pt;}
.y18b_c00133{bottom:214.266667pt;}
.y18a_c00133{bottom:216.573333pt;}
.y182_c00133{bottom:219.653333pt;}
.y184_c00133{bottom:220.413333pt;}
.y183_c00133{bottom:221.186667pt;}
.y180_c00133{bottom:224.253333pt;}
.y185_c00133{bottom:225.786667pt;}
.y186_c00133{bottom:228.093333pt;}
.y181_c00133{bottom:232.706667pt;}
.y17e_c00133{bottom:243.453333pt;}
.y17d_c00133{bottom:247.293333pt;}
.y17c_c00133{bottom:248.066667pt;}
.y17b_c00133{bottom:251.133333pt;}
.y17f_c00133{bottom:256.506667pt;}
.y172_c00133{bottom:264.186667pt;}
.y171_c00133{bottom:265.733333pt;}
.y173_c00133{bottom:269.573333pt;}
.y175_c00133{bottom:271.866667pt;}
.y174_c00133{bottom:272.640000pt;}
.y176_c00133{bottom:274.173333pt;}
.y177_c00133{bottom:278.013333pt;}
.y178_c00133{bottom:278.786667pt;}
.y179_c00133{bottom:279.546667pt;}
.y17a_c00133{bottom:281.093333pt;}
.y16a_c00133{bottom:287.226667pt;}
.y16d_c00133{bottom:288.000000pt;}
.y16f_c00133{bottom:288.773333pt;}
.y16e_c00133{bottom:290.306667pt;}
.y16b_c00133{bottom:291.066667pt;}
.y16c_c00133{bottom:294.146667pt;}
.y170_c00133{bottom:305.666667pt;}
.y162_c00133{bottom:309.506667pt;}
.y163_c00133{bottom:310.266667pt;}
.y160_c00133{bottom:312.573333pt;}
.y165_c00133{bottom:313.346667pt;}
.y161_c00133{bottom:314.880000pt;}
.y164_c00133{bottom:315.653333pt;}
.y166_c00133{bottom:317.186667pt;}
.y167_c00133{bottom:318.720000pt;}
.y168_c00133{bottom:322.560000pt;}
.y169_c00133{bottom:324.866667pt;}
.y158_c00133{bottom:328.706667pt;}
.y155_c00133{bottom:329.466667pt;}
.y159_c00133{bottom:330.240000pt;}
.y15a_c00133{bottom:331.773333pt;}
.y15c_c00133{bottom:333.306667pt;}
.y15d_c00133{bottom:334.080000pt;}
.y15e_c00133{bottom:336.386667pt;}
.y154_c00133{bottom:337.146667pt;}
.y15b_c00133{bottom:339.453333pt;}
.y157_c00133{bottom:340.226667pt;}
.y156_c00133{bottom:340.986667pt;}
.y15f_c00133{bottom:352.506667pt;}
.y14d_c00133{bottom:354.813333pt;}
.y14f_c00133{bottom:355.586667pt;}
.y151_c00133{bottom:357.120000pt;}
.y152_c00133{bottom:357.893333pt;}
.y14c_c00133{bottom:358.653333pt;}
.y14e_c00133{bottom:360.186667pt;}
.y150_c00133{bottom:364.800000pt;}
.y153_c00133{bottom:368.640000pt;}
.y14b_c00133{bottom:369.413333pt;}
.y142_c00133{bottom:374.013333pt;}
.y143_c00133{bottom:376.320000pt;}
.y146_c00133{bottom:377.093333pt;}
.y144_c00133{bottom:377.853333pt;}
.y149_c00133{bottom:380.160000pt;}
.y145_c00133{bottom:380.933333pt;}
.y141_c00133{bottom:382.466667pt;}
.y147_c00133{bottom:384.000000pt;}
.y148_c00133{bottom:384.773333pt;}
.y14a_c00133{bottom:394.746667pt;}
.y13b_c00133{bottom:398.586667pt;}
.y13d_c00133{bottom:399.360000pt;}
.y13c_c00133{bottom:400.893333pt;}
.y13f_c00133{bottom:402.426667pt;}
.y13e_c00133{bottom:405.506667pt;}
.y140_c00133{bottom:407.813333pt;}
.y13a_c00133{bottom:415.493333pt;}
.y134_c00133{bottom:420.093333pt;}
.y135_c00133{bottom:420.866667pt;}
.y133_c00133{bottom:423.173333pt;}
.y137_c00133{bottom:423.933333pt;}
.y136_c00133{bottom:424.706667pt;}
.y138_c00133{bottom:430.853333pt;}
.y139_c00133{bottom:431.613333pt;}
.y12e_c00133{bottom:442.373333pt;}
.y12f_c00133{bottom:443.133333pt;}
.y130_c00133{bottom:444.666667pt;}
.y12d_c00133{bottom:445.440000pt;}
.y132_c00133{bottom:446.213333pt;}
.y131_c00133{bottom:447.746667pt;}
.y12c_c00133{bottom:462.333333pt;}
.y126_c00133{bottom:463.866667pt;}
.y127_c00133{bottom:464.640000pt;}
.y128_c00133{bottom:466.946667pt;}
.y12a_c00133{bottom:467.706667pt;}
.y12b_c00133{bottom:468.480000pt;}
.y125_c00133{bottom:470.786667pt;}
.y129_c00133{bottom:474.626667pt;}
.y120_c00133{bottom:485.373333pt;}
.y121_c00133{bottom:487.680000pt;}
.y122_c00133{bottom:489.213333pt;}
.y123_c00133{bottom:489.986667pt;}
.y124_c00133{bottom:491.520000pt;}
.y114_c00133{bottom:507.653333pt;}
.y113_c00133{bottom:509.186667pt;}
.y116_c00133{bottom:509.946667pt;}
.y11e_c00133{bottom:511.493333pt;}
.y11f_c00133{bottom:512.253333pt;}
.y11b_c00133{bottom:513.026667pt;}
.y11a_c00133{bottom:514.560000pt;}
.y118_c00133{bottom:515.333333pt;}
.y115_c00133{bottom:516.093333pt;}
.y11c_c00133{bottom:521.466667pt;}
.y11d_c00133{bottom:523.773333pt;}
.y117_c00133{bottom:524.546667pt;}
.y10c_c00133{bottom:527.613333pt;}
.y10a_c00133{bottom:528.386667pt;}
.y119_c00133{bottom:529.146667pt;}
.y10d_c00133{bottom:529.920000pt;}
.y10e_c00133{bottom:530.693333pt;}
.y109_c00133{bottom:531.453333pt;}
.y10f_c00133{bottom:533.760000pt;}
.y110_c00133{bottom:536.066667pt;}
.y10b_c00133{bottom:537.600000pt;}
.y111_c00133{bottom:538.373333pt;}
.y112_c00133{bottom:549.120000pt;}
.y101_c00133{bottom:552.960000pt;}
.y102_c00133{bottom:554.493333pt;}
.y100_c00133{bottom:555.266667pt;}
.y105_c00133{bottom:556.026667pt;}
.y106_c00133{bottom:557.573333pt;}
.yff_c00133{bottom:558.333333pt;}
.y104_c00133{bottom:559.106667pt;}
.y107_c00133{bottom:559.866667pt;}
.y103_c00133{bottom:561.413333pt;}
.y108_c00133{bottom:562.173333pt;}
.yfe_c00133{bottom:571.386667pt;}
.yf9_c00133{bottom:576.000000pt;}
.yfb_c00133{bottom:577.533333pt;}
.yfa_c00133{bottom:579.840000pt;}
.yfc_c00133{bottom:580.613333pt;}
.yfd_c00133{bottom:584.453333pt;}
.yf5_c00133{bottom:599.813333pt;}
.yf3_c00133{bottom:601.346667pt;}
.yf7_c00133{bottom:602.106667pt;}
.yf4_c00133{bottom:603.653333pt;}
.yf8_c00133{bottom:604.413333pt;}
.yf6_c00133{bottom:608.253333pt;}
.yf2_c00133{bottom:612.866667pt;}
.yeb_c00133{bottom:619.773333pt;}
.ye8_c00133{bottom:620.546667pt;}
.yee_c00133{bottom:621.306667pt;}
.yef_c00133{bottom:622.080000pt;}
.yf0_c00133{bottom:623.613333pt;}
.yec_c00133{bottom:625.920000pt;}
.yed_c00133{bottom:626.693333pt;}
.ye9_c00133{bottom:627.453333pt;}
.yf1_c00133{bottom:630.533333pt;}
.yea_c00133{bottom:636.666667pt;}
.ye2_c00133{bottom:641.280000pt;}
.ye3_c00133{bottom:642.053333pt;}
.ye4_c00133{bottom:643.586667pt;}
.ye5_c00133{bottom:645.893333pt;}
.ye7_c00133{bottom:646.653333pt;}
.ye6_c00133{bottom:647.426667pt;}
.ydd_c00133{bottom:664.320000pt;}
.ydf_c00133{bottom:666.626667pt;}
.ydc_c00133{bottom:667.386667pt;}
.ye0_c00133{bottom:668.160000pt;}
.ye1_c00133{bottom:668.933333pt;}
.yde_c00133{bottom:670.466667pt;}
.yd6_c00133{bottom:685.053333pt;}
.yd5_c00133{bottom:685.826667pt;}
.yd1_c00133{bottom:686.586667pt;}
.yd8_c00133{bottom:688.133333pt;}
.yd2_c00133{bottom:690.426667pt;}
.yd3_c00133{bottom:691.200000pt;}
.yd4_c00133{bottom:691.973333pt;}
.yd7_c00133{bottom:692.733333pt;}
.yd9_c00133{bottom:693.506667pt;}
.yda_c00133{bottom:694.266667pt;}
.ydb_c00133{bottom:695.040000pt;}
.ycd_c00133{bottom:705.026667pt;}
.yce_c00133{bottom:706.560000pt;}
.ycf_c00133{bottom:710.400000pt;}
.yd0_c00133{bottom:721.146667pt;}
.yc7_c00133{bottom:728.066667pt;}
.yc5_c00133{bottom:728.826667pt;}
.ycc_c00133{bottom:732.666667pt;}
.yc6_c00133{bottom:733.440000pt;}
.yc9_c00133{bottom:734.213333pt;}
.yc4_c00133{bottom:734.973333pt;}
.yc8_c00133{bottom:736.506667pt;}
.yca_c00133{bottom:737.280000pt;}
.ycb_c00133{bottom:738.813333pt;}
.yc1_c00133{bottom:751.106667pt;}
.ybf_c00133{bottom:751.866667pt;}
.yc2_c00133{bottom:752.640000pt;}
.yc3_c00133{bottom:754.173333pt;}
.yc0_c00133{bottom:754.946667pt;}
.ybb_c00133{bottom:773.373333pt;}
.yba_c00133{bottom:774.146667pt;}
.yb8_c00133{bottom:774.906667pt;}
.ybc_c00133{bottom:776.453333pt;}
.yb9_c00133{bottom:779.520000pt;}
.ybd_c00133{bottom:791.040000pt;}
.yb3_c00133{bottom:795.653333pt;}
.yb4_c00133{bottom:796.413333pt;}
.ybe_c00133{bottom:797.186667pt;}
.yb5_c00133{bottom:799.493333pt;}
.yb7_c00133{bottom:801.026667pt;}
.yb2_c00133{bottom:804.093333pt;}
.yb6_c00133{bottom:805.626667pt;}
.yaa_c00133{bottom:814.853333pt;}
.ya8_c00133{bottom:816.386667pt;}
.ya7_c00133{bottom:817.146667pt;}
.yac_c00133{bottom:818.693333pt;}
.ya6_c00133{bottom:819.453333pt;}
.yaf_c00133{bottom:820.226667pt;}
.ya9_c00133{bottom:820.986667pt;}
.yab_c00133{bottom:821.760000pt;}
.yb0_c00133{bottom:822.533333pt;}
.y9b_c00133{bottom:824.066667pt;}
.yb1_c00133{bottom:825.600000pt;}
.yae_c00133{bottom:826.373333pt;}
.yad_c00133{bottom:828.666667pt;}
.y9d_c00133{bottom:830.213333pt;}
.y9e_c00133{bottom:832.506667pt;}
.y9c_c00133{bottom:833.280000pt;}
.ya1_c00133{bottom:834.053333pt;}
.ya4_c00133{bottom:834.813333pt;}
.y9a_c00133{bottom:835.586667pt;}
.ya0_c00133{bottom:836.346667pt;}
.y9f_c00133{bottom:837.120000pt;}
.y94_c00133{bottom:837.893333pt;}
.ya2_c00133{bottom:839.426667pt;}
.ya3_c00133{bottom:840.186667pt;}
.ya5_c00133{bottom:840.960000pt;}
.y95_c00133{bottom:841.733333pt;}
.y96_c00133{bottom:842.493333pt;}
.y97_c00133{bottom:843.266667pt;}
.y98_c00133{bottom:844.026667pt;}
.y99_c00133{bottom:846.333333pt;}
.y19a_c00133{bottom:848.640000pt;}
.y93_c00133{bottom:849.413333pt;}
.y8c_c00133{bottom:862.466667pt;}
.y8d_c00133{bottom:864.773333pt;}
.y90_c00133{bottom:866.306667pt;}
.y92_c00133{bottom:867.066667pt;}
.y91_c00133{bottom:867.840000pt;}
.y8f_c00133{bottom:871.680000pt;}
.y8e_c00133{bottom:880.893333pt;}
.y85_c00133{bottom:884.733333pt;}
.y86_c00133{bottom:885.506667pt;}
.y89_c00133{bottom:887.040000pt;}
.y87_c00133{bottom:887.813333pt;}
.y8a_c00133{bottom:888.573333pt;}
.y88_c00133{bottom:889.346667pt;}
.y82_c00133{bottom:893.946667pt;}
.y83_c00133{bottom:894.720000pt;}
.y8b_c00133{bottom:895.493333pt;}
.y80_c00133{bottom:901.626667pt;}
.y81_c00133{bottom:902.400000pt;}
.y7e_c00133{bottom:905.466667pt;}
.y7d_c00133{bottom:906.240000pt;}
.y7c_c00133{bottom:907.013333pt;}
.y84_c00133{bottom:907.773333pt;}
.y7f_c00133{bottom:908.546667pt;}
.y79_c00133{bottom:910.080000pt;}
.y77_c00133{bottom:910.853333pt;}
.y78_c00133{bottom:912.386667pt;}
.y7a_c00133{bottom:913.920000pt;}
.y7b_c00133{bottom:916.986667pt;}
.y6f_c00133{bottom:928.506667pt;}
.y73_c00133{bottom:930.813333pt;}
.y71_c00133{bottom:932.346667pt;}
.y74_c00133{bottom:933.120000pt;}
.y6e_c00133{bottom:933.893333pt;}
.y70_c00133{bottom:935.426667pt;}
.y75_c00133{bottom:936.186667pt;}
.y72_c00133{bottom:936.960000pt;}
.y76_c00133{bottom:946.946667pt;}
.y6a_c00133{bottom:951.546667pt;}
.y6b_c00133{bottom:952.320000pt;}
.y6c_c00133{bottom:954.626667pt;}
.y6d_c00133{bottom:955.386667pt;}
.y69_c00133{bottom:956.933333pt;}
.y60_c00133{bottom:973.053333pt;}
.y62_c00133{bottom:975.360000pt;}
.y65_c00133{bottom:976.893333pt;}
.y68_c00133{bottom:977.666667pt;}
.y5f_c00133{bottom:978.426667pt;}
.y61_c00133{bottom:979.200000pt;}
.y63_c00133{bottom:981.506667pt;}
.y64_c00133{bottom:982.266667pt;}
.y66_c00133{bottom:983.040000pt;}
.y67_c00133{bottom:984.573333pt;}
.y5a_c00133{bottom:996.093333pt;}
.y59_c00133{bottom:996.866667pt;}
.y5d_c00133{bottom:999.173333pt;}
.y5b_c00133{bottom:1002.240000pt;}
.y5c_c00133{bottom:1003.773333pt;}
.y5e_c00133{bottom:1006.080000pt;}
.y4_c00133{bottom:1017.600000pt;}
.y54_c00133{bottom:1018.373333pt;}
.y56_c00133{bottom:1022.213333pt;}
.y53_c00133{bottom:1023.746667pt;}
.y55_c00133{bottom:1025.280000pt;}
.y57_c00133{bottom:1028.346667pt;}
.y58_c00133{bottom:1035.266667pt;}
.y4b_c00133{bottom:1041.413333pt;}
.y4c_c00133{bottom:1042.946667pt;}
.y49_c00133{bottom:1044.480000pt;}
.y45_c00133{bottom:1045.253333pt;}
.y46_c00133{bottom:1046.013333pt;}
.y47_c00133{bottom:1046.786667pt;}
.y48_c00133{bottom:1047.546667pt;}
.y4a_c00133{bottom:1048.320000pt;}
.y4f_c00133{bottom:1049.093333pt;}
.y4d_c00133{bottom:1049.853333pt;}
.y4e_c00133{bottom:1050.626667pt;}
.y51_c00133{bottom:1051.386667pt;}
.y50_c00133{bottom:1052.160000pt;}
.y52_c00133{bottom:1052.933333pt;}
.y3e_c00133{bottom:1062.906667pt;}
.y41_c00133{bottom:1064.453333pt;}
.y40_c00133{bottom:1066.746667pt;}
.y3f_c00133{bottom:1067.520000pt;}
.y42_c00133{bottom:1068.293333pt;}
.y44_c00133{bottom:1072.893333pt;}
.y43_c00133{bottom:1073.666667pt;}
.y39_c00133{bottom:1084.413333pt;}
.y36_c00133{bottom:1085.186667pt;}
.y38_c00133{bottom:1085.946667pt;}
.y3a_c00133{bottom:1087.493333pt;}
.y3b_c00133{bottom:1089.026667pt;}
.y35_c00133{bottom:1089.786667pt;}
.y37_c00133{bottom:1092.866667pt;}
.y3c_c00133{bottom:1095.173333pt;}
.y34_c00133{bottom:1095.933333pt;}
.y3d_c00133{bottom:1103.613333pt;}
.y2d_c00133{bottom:1105.146667pt;}
.y2e_c00133{bottom:1105.920000pt;}
.y2c_c00133{bottom:1106.693333pt;}
.y31_c00133{bottom:1108.226667pt;}
.y2b_c00133{bottom:1108.986667pt;}
.y30_c00133{bottom:1112.066667pt;}
.y33_c00133{bottom:1115.133333pt;}
.y2f_c00133{bottom:1115.906667pt;}
.y32_c00133{bottom:1116.666667pt;}
.y23_c00133{bottom:1125.120000pt;}
.y21_c00133{bottom:1125.893333pt;}
.y26_c00133{bottom:1126.653333pt;}
.y24_c00133{bottom:1127.426667pt;}
.y29_c00133{bottom:1129.733333pt;}
.y2a_c00133{bottom:1130.493333pt;}
.y25_c00133{bottom:1131.266667pt;}
.y27_c00133{bottom:1135.866667pt;}
.y28_c00133{bottom:1138.946667pt;}
.y20_c00133{bottom:1146.626667pt;}
.y22_c00133{bottom:1148.160000pt;}
.y17_c00133{bottom:1152.000000pt;}
.y18_c00133{bottom:1153.533333pt;}
.y19_c00133{bottom:1155.066667pt;}
.y197_c00133{bottom:1156.613333pt;}
.y1f_c00133{bottom:1158.906667pt;}
.y198_c00133{bottom:1159.680000pt;}
.y1d_c00133{bottom:1161.213333pt;}
.y1a_c00133{bottom:1163.520000pt;}
.y1e_c00133{bottom:1164.293333pt;}
.y196_c00133{bottom:1165.826667pt;}
.y1c_c00133{bottom:1168.133333pt;}
.y1b_c00133{bottom:1168.893333pt;}
.yf_c00133{bottom:1172.733333pt;}
.y10_c00133{bottom:1173.506667pt;}
.y11_c00133{bottom:1175.040000pt;}
.y13_c00133{bottom:1177.346667pt;}
.y14_c00133{bottom:1178.880000pt;}
.y16_c00133{bottom:1180.413333pt;}
.y15_c00133{bottom:1181.946667pt;}
.y12_c00133{bottom:1182.720000pt;}
.y199_c00133{bottom:1196.546667pt;}
.yc_c00133{bottom:1198.080000pt;}
.yd_c00133{bottom:1198.853333pt;}
.ye_c00133{bottom:1200.386667pt;}
.y9_c00133{bottom:1224.960000pt;}
.ya_c00133{bottom:1225.733333pt;}
.yb_c00133{bottom:1226.493333pt;}
.y6_c00133{bottom:1230.333333pt;}
.y7_c00133{bottom:1231.866667pt;}
.y8_c00133{bottom:1232.640000pt;}
.y5_c00133{bottom:1250.306667pt;}
.y1_c00133{bottom:1253.373333pt;}
.y2_c00133{bottom:1254.146667pt;}
.y3_c00133{bottom:1259.520000pt;}
.h2_c00133{height:2.764500pt;}
.h20_c00133{height:4.799479pt;}
.h25_c00133{height:5.519401pt;}
.h6_c00133{height:8.303099pt;}
.h5_c00133{height:10.472865pt;}
.h4_c00133{height:11.038802pt;}
.h3_c00133{height:13.822500pt;}
.h1c_c00133{height:16.606198pt;}
.h9_c00133{height:19.341901pt;}
.h1f_c00133{height:22.125599pt;}
.h24_c00133{height:24.861302pt;}
.h21_c00133{height:27.645000pt;}
.h1d_c00133{height:30.428698pt;}
.h10_c00133{height:33.164401pt;}
.h13_c00133{height:35.948099pt;}
.h22_c00133{height:38.683802pt;}
.h12_c00133{height:41.467500pt;}
.h23_c00133{height:44.251198pt;}
.h8_c00133{height:46.986901pt;}
.h1b_c00133{height:49.770599pt;}
.h1e_c00133{height:52.506302pt;}
.h7_c00133{height:55.290000pt;}
.h19_c00133{height:58.073698pt;}
.h17_c00133{height:60.809401pt;}
.ha_c00133{height:63.593099pt;}
.hb_c00133{height:66.328802pt;}
.h11_c00133{height:69.112500pt;}
.h1a_c00133{height:71.896198pt;}
.he_c00133{height:74.631901pt;}
.hf_c00133{height:77.415599pt;}
.hc_c00133{height:80.151302pt;}
.h18_c00133{height:82.935000pt;}
.h14_c00133{height:85.718698pt;}
.h27_c00133{height:86.933568pt;}
.hd_c00133{height:88.454401pt;}
.h26_c00133{height:93.973802pt;}
.h15_c00133{height:96.757500pt;}
.h16_c00133{height:105.060599pt;}
.h1_c00133{height:1336.000000pt;}
.h0_c00133{height:1336.320000pt;}
.w0_c00133{width:967.680000pt;}
.w1_c00133{width:968.000000pt;}
.x0_c00133{left:0.000000pt;}
.x113_c00133{left:61.440000pt;}
.x114_c00133{left:94.466667pt;}
.x115_c00133{left:107.520000pt;}
.x116_c00133{left:117.506667pt;}
.x5_c00133{left:124.413333pt;}
.xd6_c00133{left:164.346667pt;}
.xce_c00133{left:168.186667pt;}
.xcf_c00133{left:178.946667pt;}
.x1_c00133{left:184.320000pt;}
.xca_c00133{left:185.853333pt;}
.x2_c00133{left:188.933333pt;}
.x37_c00133{left:190.466667pt;}
.xd0_c00133{left:192.773333pt;}
.xa5_c00133{left:195.066600pt;}
.x25_c00133{left:201.213333pt;}
.x43_c00133{left:202.746667pt;}
.x11_c00133{left:205.053333pt;}
.xa6_c00133{left:206.586667pt;}
.x75_c00133{left:208.133333pt;}
.x59_c00133{left:209.666667pt;}
.x14_c00133{left:211.200000pt;}
.xeb_c00133{left:212.733333pt;}
.x101_c00133{left:214.266667pt;}
.xfa_c00133{left:215.813333pt;}
.xc6_c00133{left:219.653333pt;}
.x8c_c00133{left:221.186667pt;}
.x26_c00133{left:225.026667pt;}
.x64_c00133{left:227.333333pt;}
.x27_c00133{left:228.866667pt;}
.x49_c00133{left:231.933333pt;}
.xaf_c00133{left:234.240000pt;}
.x4a_c00133{left:237.306667pt;}
.x65_c00133{left:238.853333pt;}
.x5a_c00133{left:241.146667pt;}
.x79_c00133{left:243.453333pt;}
.xd7_c00133{left:247.293333pt;}
.x2f_c00133{left:251.133333pt;}
.xcb_c00133{left:252.666667pt;}
.xf0_c00133{left:254.213333pt;}
.x38_c00133{left:255.746667pt;}
.x44_c00133{left:258.053333pt;}
.x1c_c00133{left:260.346667pt;}
.xbd_c00133{left:261.893333pt;}
.x8d_c00133{left:264.960000pt;}
.xbb_c00133{left:266.493333pt;}
.x9c_c00133{left:268.800000pt;}
.x102_c00133{left:271.106667pt;}
.xae_c00133{left:273.413333pt;}
.x81_c00133{left:275.706667pt;}
.x4b_c00133{left:277.253333pt;}
.xe9_c00133{left:278.786667pt;}
.x15_c00133{left:280.320000pt;}
.xb0_c00133{left:282.626667pt;}
.xcc_c00133{left:284.933333pt;}
.x8_c00133{left:288.000000pt;}
.x66_c00133{left:289.533333pt;}
.x109_c00133{left:291.840000pt;}
.xb1_c00133{left:293.373333pt;}
.x4c_c00133{left:295.680000pt;}
.x8e_c00133{left:297.986667pt;}
.x5f_c00133{left:299.520000pt;}
.x1d_c00133{left:301.826667pt;}
.xbe_c00133{left:303.360000pt;}
.xf1_c00133{left:307.200000pt;}
.xb2_c00133{left:309.506667pt;}
.xd4_c00133{left:313.346667pt;}
.x8f_c00133{left:315.653333pt;}
.x4d_c00133{left:318.720000pt;}
.x28_c00133{left:321.026667pt;}
.x9d_c00133{left:324.866667pt;}
.x30_c00133{left:326.400000pt;}
.x6_c00133{left:328.706667pt;}
.x10b_c00133{left:330.240000pt;}
.x39_c00133{left:334.853333pt;}
.x12_c00133{left:336.386667pt;}
.x4e_c00133{left:337.920000pt;}
.x90_c00133{left:340.226667pt;}
.x3a_c00133{left:341.760000pt;}
.x45_c00133{left:343.293333pt;}
.x4f_c00133{left:344.826667pt;}
.xa9_c00133{left:346.373333pt;}
.x60_c00133{left:347.906667pt;}
.x5b_c00133{left:350.213333pt;}
.x76_c00133{left:351.746667pt;}
.x50_c00133{left:353.280000pt;}
.xb3_c00133{left:355.586667pt;}
.xed_c00133{left:357.120000pt;}
.xdd_c00133{left:358.653333pt;}
.x9_c00133{left:362.493333pt;}
.x103_c00133{left:364.026667pt;}
.xbc_c00133{left:365.573333pt;}
.xd8_c00133{left:368.640000pt;}
.xc7_c00133{left:370.173333pt;}
.xa_c00133{left:372.480000pt;}
.x16_c00133{left:374.786667pt;}
.x7a_c00133{left:376.320000pt;}
.x31_c00133{left:378.626667pt;}
.x3b_c00133{left:380.933333pt;}
.x51_c00133{left:384.000000pt;}
.x9e_c00133{left:386.306667pt;}
.x61_c00133{left:387.840000pt;}
.xb_c00133{left:391.680000pt;}
.x62_c00133{left:393.986667pt;}
.x52_c00133{left:395.520000pt;}
.xf2_c00133{left:400.893333pt;}
.xbf_c00133{left:403.200000pt;}
.x9f_c00133{left:407.040000pt;}
.xc0_c00133{left:409.346667pt;}
.x17_c00133{left:413.186667pt;}
.x67_c00133{left:415.493333pt;}
.x73_c00133{left:417.786667pt;}
.xb4_c00133{left:420.093333pt;}
.x7b_c00133{left:421.626667pt;}
.x100_c00133{left:423.173333pt;}
.x77_c00133{left:426.240000pt;}
.x53_c00133{left:428.546667pt;}
.x3c_c00133{left:430.080000pt;}
.x10e_c00133{left:432.386667pt;}
.xaa_c00133{left:433.920000pt;}
.x7_c00133{left:435.453333pt;}
.xc8_c00133{left:440.826667pt;}
.x46_c00133{left:443.133333pt;}
.x91_c00133{left:445.440187pt;}
.xa7_c00133{left:448.506667pt;}
.x68_c00133{left:450.053333pt;}
.x18_c00133{left:453.120000pt;}
.x92_c00133{left:455.426667pt;}
.xe6_c00133{left:457.733333pt;}
.x10c_c00133{left:459.266667pt;}
.x69_c00133{left:460.800000pt;}
.x10d_c00133{left:465.413333pt;}
.xfb_c00133{left:470.013333pt;}
.x32_c00133{left:471.546667pt;}
.x82_c00133{left:473.093333pt;}
.xec_c00133{left:474.626667pt;}
.xc1_c00133{left:478.466667pt;}
.xf3_c00133{left:480.773333pt;}
.x93_c00133{left:482.306667pt;}
.xee_c00133{left:486.146667pt;}
.xda_c00133{left:487.680000pt;}
.x33_c00133{left:489.986667pt;}
.x6a_c00133{left:491.520000pt;}
.xd1_c00133{left:493.826667pt;}
.x54_c00133{left:495.360000pt;}
.xc2_c00133{left:499.973333pt;}
.x10a_c00133{left:501.506667pt;}
.x47_c00133{left:503.040000pt;}
.xde_c00133{left:504.573333pt;}
.xd_c00133{left:506.880000pt;}
.xdb_c00133{left:510.720000pt;}
.x55_c00133{left:512.253333pt;}
.x89_c00133{left:514.560000pt;}
.x6b_c00133{left:516.093333pt;}
.x94_c00133{left:517.626667pt;}
.x34_c00133{left:519.173333pt;}
.xf6_c00133{left:525.306667pt;}
.xd2_c00133{left:526.853333pt;}
.x74_c00133{left:531.453333pt;}
.x6c_c00133{left:532.986667pt;}
.xc3_c00133{left:537.600000pt;}
.xfe_c00133{left:541.440000pt;}
.x95_c00133{left:543.746667pt;}
.xe7_c00133{left:545.280000pt;}
.x56_c00133{left:547.586667pt;}
.xa0_c00133{left:552.186667pt;}
.x19_c00133{left:555.266667pt;}
.x7c_c00133{left:559.866667pt;}
.x5c_c00133{left:561.413333pt;}
.x108_c00133{left:565.253333pt;}
.xfc_c00133{left:568.320000pt;}
.xdf_c00133{left:569.853333pt;}
.xe8_c00133{left:571.386667pt;}
.x72_c00133{left:577.533333pt;}
.x3d_c00133{left:579.066667pt;}
.xe_c00133{left:582.146667pt;}
.x96_c00133{left:585.213333pt;}
.xb5_c00133{left:588.293333pt;}
.x84_c00133{left:590.586667pt;}
.x1a_c00133{left:592.133333pt;}
.x13_c00133{left:593.666667pt;}
.x3e_c00133{left:596.733333pt;}
.x7d_c00133{left:599.040000pt;}
.xfd_c00133{left:602.880000pt;}
.x29_c00133{left:604.413333pt;}
.xf_c00133{left:607.493333pt;}
.x6d_c00133{left:609.026667pt;}
.x78_c00133{left:611.333333pt;}
.xa1_c00133{left:612.866667pt;}
.xe0_c00133{left:616.706667pt;}
.x85_c00133{left:618.240000pt;}
.x1b_c00133{left:620.546667pt;}
.xf7_c00133{left:622.853333pt;}
.xe1_c00133{left:626.693333pt;}
.x104_c00133{left:629.760000pt;}
.x2a_c00133{left:634.373333pt;}
.x1e_c00133{left:635.906667pt;}
.x6e_c00133{left:639.746667pt;}
.xb6_c00133{left:641.280000pt;}
.x3f_c00133{left:645.120000pt;}
.x10_c00133{left:647.426667pt;}
.xf8_c00133{left:649.733333pt;}
.x97_c00133{left:652.800000pt;}
.xd5_c00133{left:654.333333pt;}
.x7e_c00133{left:655.866667pt;}
.xab_c00133{left:657.413333pt;}
.xa2_c00133{left:658.946667pt;}
.x98_c00133{left:662.013333pt;}
.xe2_c00133{left:663.547133pt;}
.x1f_c00133{left:665.093333pt;}
.xf4_c00133{left:666.626667pt;}
.xb7_c00133{left:669.693333pt;}
.xf9_c00133{left:671.226667pt;}
.xe3_c00133{left:672.773200pt;}
.xc9_c00133{left:678.146667pt;}
.xe4_c00133{left:680.453333pt;}
.x7f_c00133{left:683.520000pt;}
.x40_c00133{left:686.586667pt;}
.x83_c00133{left:688.893333pt;}
.x20_c00133{left:691.200000pt;}
.x105_c00133{left:692.733333pt;}
.x6f_c00133{left:695.040000pt;}
.xb8_c00133{left:696.573333pt;}
.x21_c00133{left:698.106667pt;}
.xff_c00133{left:699.653333pt;}
.x48_c00133{left:701.946667pt;}
.x99_c00133{left:703.493333pt;}
.x70_c00133{left:706.560000pt;}
.x80_c00133{left:708.093333pt;}
.xc4_c00133{left:709.626667pt;}
.x8a_c00133{left:712.706667pt;}
.x71_c00133{left:714.240000pt;}
.x106_c00133{left:716.546667pt;}
.x22_c00133{left:718.080000pt;}
.xcd_c00133{left:723.453333pt;}
.xa3_c00133{left:725.760000pt;}
.x23_c00133{left:728.066667pt;}
.xef_c00133{left:730.373333pt;}
.x107_c00133{left:731.906667pt;}
.x2b_c00133{left:734.213333pt;}
.x86_c00133{left:736.506667pt;}
.x57_c00133{left:738.053333pt;}
.x9a_c00133{left:739.586667pt;}
.x2c_c00133{left:741.893333pt;}
.x35_c00133{left:744.960000pt;}
.xea_c00133{left:748.026667pt;}
.x58_c00133{left:749.573333pt;}
.xc_c00133{left:752.640000pt;}
.x9b_c00133{left:755.706667pt;}
.xb9_c00133{left:758.786667pt;}
.xba_c00133{left:760.320000pt;}
.x41_c00133{left:762.626667pt;}
.xc5_c00133{left:764.933333pt;}
.x2d_c00133{left:769.533333pt;}
.xe5_c00133{left:771.840000pt;}
.x24_c00133{left:777.213333pt;}
.xd3_c00133{left:778.746667pt;}
.x5d_c00133{left:782.586667pt;}
.x2e_c00133{left:784.133333pt;}
.xa4_c00133{left:785.666667pt;}
.xdc_c00133{left:787.200000pt;}
.x87_c00133{left:788.733333pt;}
.xac_c00133{left:791.040000pt;}
.xf5_c00133{left:793.346667pt;}
.xd9_c00133{left:794.880000pt;}
.x8b_c00133{left:796.413333pt;}
.x36_c00133{left:797.946667pt;}
.x63_c00133{left:799.493333pt;}
.x5e_c00133{left:801.026667pt;}
.xa8_c00133{left:802.560000pt;}
.x88_c00133{left:809.466667pt;}
.x3_c00133{left:816.386667pt;}
.x42_c00133{left:820.986667pt;}
.xad_c00133{left:826.373333pt;}
.x4_c00133{left:833.280000pt;}
.x10f_c00133{left:836.346667pt;}
.x110_c00133{left:840.960000pt;}
.x111_c00133{left:859.386667pt;}
.x112_c00133{left:877.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4cf2da761a46ac06a38306ed.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.109863;font-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_c00134{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mca_c00134{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00134{transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);}
.ma1_c00134{transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);}
.m16b_c00134{transform:matrix(0.059275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059275,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00134{transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);}
.m52_c00134{transform:matrix(0.071850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071850,0.000000,0.000000,0.250000,0,0);}
.m6d_c00134{transform:matrix(0.075475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075475,0.000000,0.000000,0.250000,0,0);}
.m94_c00134{transform:matrix(0.079050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079050,0.000000,0.000000,0.250000,0,0);}
.m9e_c00134{transform:matrix(0.080400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080400,0.000000,0.000000,0.250000,0,0);}
.m6e_c00134{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.ma2_c00134{transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);}
.m5b_c00134{transform:matrix(0.087125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087125,0.000000,0.000000,0.250000,0,0);}
.m11_c00134{transform:matrix(0.092850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092850,0.000000,0.000000,0.250000,0,0);}
.m143_c00134{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m5d_c00134{transform:matrix(0.103400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103400,0.000000,0.000000,0.250000,0,0);}
.md6_c00134{transform:matrix(0.106350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106350,0.000000,0.000000,0.250000,0,0);}
.m36_c00134{transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);}
.m22_c00134{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00134{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00134{transform:matrix(0.109100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109100,0.000000,0.000000,0.250000,0,0);}
.m144_c00134{transform:matrix(0.109750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109750,0.000000,0.000000,0.250000,0,0);}
.mc6_c00134{transform:matrix(0.111200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111200,0.000000,0.000000,0.250000,0,0);}
.m5c_c00134{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m40_c00134{transform:matrix(0.112575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112575,0.000000,0.000000,0.250000,0,0);}
.m3f_c00134{transform:matrix(0.112850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112850,0.000000,0.000000,0.250000,0,0);}
.m196_c00134{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.m66_c00134{transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);}
.m15f_c00134{transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);}
.m124_c00134{transform:matrix(0.117050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117050,0.000000,0.000000,0.250000,0,0);}
.m53_c00134{transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00134{transform:matrix(0.117875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117875,0.000000,0.000000,0.250000,0,0);}
.m192_c00134{transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);}
.m188_c00134{transform:matrix(0.118100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118100,0.000000,0.000000,0.250000,0,0);}
.m11e_c00134{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.m193_c00134{transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);}
.mb2_c00134{transform:matrix(0.119475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119475,0.000000,0.000000,0.250000,0,0);}
.m7e_c00134{transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00134{transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);}
.m103_c00134{transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);}
.m19e_c00134{transform:matrix(0.121050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121050,0.000000,0.000000,0.250000,0,0);}
.m18c_c00134{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);}
.m93_c00134{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.me0_c00134{transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);}
.m39_c00134{transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);}
.m149_c00134{transform:matrix(0.124775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124775,0.000000,0.000000,0.250000,0,0);}
.m28_c00134{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00134{transform:matrix(0.125600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125600,0.000000,0.000000,0.250000,0,0);}
.md3_c00134{transform:matrix(0.125775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125775,0.000000,0.000000,0.250000,0,0);}
.m17b_c00134{transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00134{transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);}
.m109_c00134{transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);}
.m179_c00134{transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);}
.m10d_c00134{transform:matrix(0.128550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128550,0.000000,0.000000,0.250000,0,0);}
.m176_c00134{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m19a_c00134{transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);}
.m7_c00134{transform:matrix(0.130725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130725,0.000000,0.000000,0.250000,0,0);}
.mc3_c00134{transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);}
.md0_c00134{transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);}
.m13c_c00134{transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);}
.m11d_c00134{transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00134{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00134{transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);}
.m115_c00134{transform:matrix(0.134200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134200,0.000000,0.000000,0.250000,0,0);}
.m120_c00134{transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);}
.mf4_c00134{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.md2_c00134{transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);}
.m18a_c00134{transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);}
.m114_c00134{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00134{transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);}
.m18b_c00134{transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);}
.m12c_c00134{transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);}
.me6_c00134{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00134{transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);}
.m189_c00134{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m92_c00134{transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);}
.mc1_c00134{transform:matrix(0.139175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139175,0.000000,0.000000,0.250000,0,0);}
.m69_c00134{transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);}
.m65_c00134{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.m35_c00134{transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);}
.m100_c00134{transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);}
.me2_c00134{transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);}
.m9c_c00134{transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);}
.m15d_c00134{transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);}
.m4d_c00134{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);}
.m159_c00134{transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);}
.mee_c00134{transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);}
.m102_c00134{transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);}
.m172_c00134{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.m178_c00134{transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);}
.maf_c00134{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);}
.m19b_c00134{transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);}
.m165_c00134{transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);}
.m8c_c00134{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m18f_c00134{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);}
.m5a_c00134{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m5_c00134{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00134{transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);}
.mbc_c00134{transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);}
.m107_c00134{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);}
.m15a_c00134{transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);}
.m158_c00134{transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);}
.m156_c00134{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);}
.m13e_c00134{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);}
.mf6_c00134{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);}
.m3a_c00134{transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);}
.mff_c00134{transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);}
.m142_c00134{transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00134{transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);}
.m4f_c00134{transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);}
.mf3_c00134{transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);}
.m161_c00134{transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);}
.m34_c00134{transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);}
.m64_c00134{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);}
.m7a_c00134{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);}
.m17a_c00134{transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);}
.m88_c00134{transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);}
.m173_c00134{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.me7_c00134{transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);}
.mc4_c00134{transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);}
.mc8_c00134{transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);}
.mfb_c00134{transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);}
.m153_c00134{transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);}
.m128_c00134{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);}
.m191_c00134{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);}
.mbd_c00134{transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);}
.md8_c00134{transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);}
.mbe_c00134{transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);}
.m117_c00134{transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);}
.m11b_c00134{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m99_c00134{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00134{transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);}
.m13a_c00134{transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);}
.md9_c00134{transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);}
.mb3_c00134{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);}
.ma7_c00134{transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);}
.m122_c00134{transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);}
.mb9_c00134{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.mc2_c00134{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);}
.mea_c00134{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.maa_c00134{transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);}
.m58_c00134{transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);}
.m83_c00134{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.m49_c00134{transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);}
.m16c_c00134{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.m155_c00134{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.m14e_c00134{transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);}
.mac_c00134{transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);}
.m41_c00134{transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);}
.mfc_c00134{transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);}
.mfe_c00134{transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);}
.m127_c00134{transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);}
.m13b_c00134{transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);}
.m147_c00134{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.mc7_c00134{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);}
.m16d_c00134{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m63_c00134{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m187_c00134{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);}
.mf7_c00134{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);}
.m17d_c00134{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m47_c00134{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.me5_c00134{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00134{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.m15c_c00134{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00134{transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);}
.m181_c00134{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.m12_c00134{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.m171_c00134{transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);}
.m3c_c00134{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.m60_c00134{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);}
.m10c_c00134{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.m198_c00134{transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);}
.m12d_c00134{transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);}
.m116_c00134{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.m118_c00134{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00134{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);}
.m1aa_c00134{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m113_c00134{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m19c_c00134{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.med_c00134{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m4a_c00134{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);}
.me4_c00134{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);}
.mda_c00134{transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);}
.mbf_c00134{transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);}
.m10a_c00134{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m108_c00134{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m167_c00134{transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);}
.m9a_c00134{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.m14d_c00134{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m154_c00134{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m51_c00134{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);}
.mad_c00134{transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);}
.m112_c00134{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.m177_c00134{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);}
.me9_c00134{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);}
.m16f_c00134{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.m48_c00134{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m199_c00134{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.m126_c00134{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m14f_c00134{transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);}
.m46_c00134{transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);}
.ma6_c00134{transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);}
.m146_c00134{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.m87_c00134{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.mf5_c00134{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.m72_c00134{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);}
.m1a1_c00134{transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);}
.m131_c00134{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);}
.m15b_c00134{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.mb0_c00134{transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);}
.m14c_c00134{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.mae_c00134{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);}
.m160_c00134{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m152_c00134{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);}
.mba_c00134{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.m15e_c00134{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m119_c00134{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m12a_c00134{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.m8d_c00134{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);}
.m150_c00134{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m19f_c00134{transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);}
.m168_c00134{transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);}
.m71_c00134{transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);}
.ma8_c00134{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.mb7_c00134{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.m1a_c00134{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.ma0_c00134{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00134{transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);}
.mec_c00134{transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);}
.m104_c00134{transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);}
.m9_c00134{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.mcf_c00134{transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);}
.mf8_c00134{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m170_c00134{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);}
.m1a2_c00134{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.md4_c00134{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.m15_c00134{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);}
.m4c_c00134{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);}
.m1ab_c00134{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);}
.m18e_c00134{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m169_c00134{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);}
.mf0_c00134{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.m136_c00134{transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);}
.m139_c00134{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.me8_c00134{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);}
.m98_c00134{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m10e_c00134{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);}
.m59_c00134{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);}
.m12f_c00134{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m190_c00134{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);}
.me1_c00134{transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);}
.m13d_c00134{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);}
.mbb_c00134{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.m180_c00134{transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);}
.m133_c00134{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.m9d_c00134{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);}
.m16_c00134{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m123_c00134{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);}
.mdc_c00134{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.mb1_c00134{transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);}
.m3b_c00134{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);}
.m84_c00134{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.mef_c00134{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);}
.m14a_c00134{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m75_c00134{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m182_c00134{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m17e_c00134{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);}
.m38_c00134{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.m16a_c00134{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);}
.m1b_c00134{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m70_c00134{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);}
.m18d_c00134{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);}
.m17_c00134{transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);}
.meb_c00134{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m2a_c00134{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);}
.m10f_c00134{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.mde_c00134{transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00134{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m18_c00134{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.m137_c00134{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m130_c00134{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.m90_c00134{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m138_c00134{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.mcc_c00134{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);}
.m17f_c00134{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);}
.me3_c00134{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.m43_c00134{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m163_c00134{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m121_c00134{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.mc0_c00134{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);}
.mf9_c00134{transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);}
.m6a_c00134{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m79_c00134{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m16e_c00134{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);}
.m14_c00134{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.mdb_c00134{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.m45_c00134{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m185_c00134{transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);}
.m42_c00134{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);}
.m134_c00134{transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);}
.m135_c00134{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);}
.m1af_c00134{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);}
.m1ae_c00134{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m129_c00134{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00134{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);}
.m96_c00134{transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);}
.m17c_c00134{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);}
.m106_c00134{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.m76_c00134{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);}
.m151_c00134{transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);}
.md1_c00134{transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);}
.m11f_c00134{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);}
.m145_c00134{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);}
.m13_c00134{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);}
.m195_c00134{transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);}
.m6c_c00134{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);}
.m194_c00134{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m197_c00134{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);}
.m91_c00134{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);}
.m3d_c00134{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);}
.mb8_c00134{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.m174_c00134{transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);}
.m11a_c00134{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);}
.mdd_c00134{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);}
.m74_c00134{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);}
.m8e_c00134{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m110_c00134{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.mc5_c00134{transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);}
.m3e_c00134{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md5_c00134{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);}
.m148_c00134{transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00134{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);}
.ma4_c00134{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);}
.m157_c00134{transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);}
.m183_c00134{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m9b_c00134{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);}
.m89_c00134{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);}
.m162_c00134{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);}
.m33_c00134{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_c00134{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);}
.m140_c00134{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.m8a_c00134{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.mab_c00134{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);}
.mb4_c00134{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);}
.m44_c00134{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);}
.m73_c00134{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m68_c00134{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m111_c00134{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.md7_c00134{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);}
.m1d_c00134{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m78_c00134{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_c00134{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);}
.m24_c00134{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);}
.m13f_c00134{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);}
.m95_c00134{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14b_c00134{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m29_c00134{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);}
.m105_c00134{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m184_c00134{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);}
.mf_c00134{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c00134{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);}
.m4_c00134{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m67_c00134{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c00134{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);}
.m20_c00134{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);}
.m125_c00134{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m57_c00134{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m132_c00134{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);}
.m1b2_c00134{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00134{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m175_c00134{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me_c00134{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m80_c00134{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m101_c00134{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m32_c00134{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);}
.m166_c00134{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00134{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c00134{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00134{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);}
.mb5_c00134{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);}
.m86_c00134{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00134{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m37_c00134{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);}
.m77_c00134{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00134{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00134{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);}
.m27_c00134{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m81_c00134{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00134{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m31_c00134{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);}
.m1f_c00134{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00134{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00134{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mb_c00134{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00134{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);}
.mdf_c00134{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m50_c00134{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);}
.m2c_c00134{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m10_c00134{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m26_c00134{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00134{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19d_c00134{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00134{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00134{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);}
.ma_c00134{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m54_c00134{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m141_c00134{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m55_c00134{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00134{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mce_c00134{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m0_c00134{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m164_c00134{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);}
.m23_c00134{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00134{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m25_c00134{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);}
.m62_c00134{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m21_c00134{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00134{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00134{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00134{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m6_c00134{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m3_c00134{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);}
.m97_c00134{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00134{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m85_c00134{transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);}
.m186_c00134{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m56_c00134{transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00134{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00134{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00134{transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);}
.m30_c00134{transform:matrix(1.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.367500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00134{transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);}
.m82_c00134{transform:matrix(2.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.185000,0.000000,0.000000,0.250000,0,0);}
.m2_c00134{transform:matrix(2.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.340000,0.000000,0.000000,0.250000,0,0);}
.m61_c00134{transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);}
.v0_c00134{vertical-align:0.000000px;}
.ls1_c00134{letter-spacing:0.000000px;}
.ls0_c00134{letter-spacing:28.142700px;}
.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:3.456000px;}
.fs3_c00134{font-size:6.000000px;}
.fs5_c00134{font-size:6.900000px;}
.fs1_c00134{font-size:10.380000px;}
.fs13_c00134{font-size:13.800000px;}
.fs4_c00134{font-size:17.280000px;}
.fs17_c00134{font-size:20.760000px;}
.fs16_c00134{font-size:24.180000px;}
.fsd_c00134{font-size:27.660000px;}
.fs19_c00134{font-size:31.080000px;}
.fs2_c00134{font-size:34.560000px;}
.fs18_c00134{font-size:38.040000px;}
.fs14_c00134{font-size:41.460000px;}
.fs22_c00134{font-size:44.940000px;}
.fs1f_c00134{font-size:48.360000px;}
.fs15_c00134{font-size:51.840000px;}
.fs23_c00134{font-size:55.320000px;}
.fs20_c00134{font-size:58.740000px;}
.fs1a_c00134{font-size:62.220000px;}
.fsb_c00134{font-size:65.640000px;}
.fsa_c00134{font-size:69.120000px;}
.fs9_c00134{font-size:72.600000px;}
.fsc_c00134{font-size:76.020000px;}
.fs24_c00134{font-size:79.500000px;}
.fs8_c00134{font-size:82.920000px;}
.fs7_c00134{font-size:86.400000px;}
.fs6_c00134{font-size:89.880000px;}
.fs1d_c00134{font-size:93.300000px;}
.fs1c_c00134{font-size:96.780000px;}
.fs1b_c00134{font-size:100.200000px;}
.fs12_c00134{font-size:103.680000px;}
.fs11_c00134{font-size:107.160000px;}
.fs10_c00134{font-size:110.580000px;}
.fs25_c00134{font-size:114.060000px;}
.fs1e_c00134{font-size:117.480000px;}
.fsf_c00134{font-size:120.960000px;}
.fs21_c00134{font-size:124.440000px;}
.fs26_c00134{font-size:127.860000px;}
.fse_c00134{font-size:148.620000px;}
.y0_c00134{bottom:0.000000px;}
.y1ac_c00134{bottom:215.130000px;}
.y1ae_c00134{bottom:217.725000px;}
.y1ab_c00134{bottom:218.595000px;}
.y1a8_c00134{bottom:219.450000px;}
.y1a9_c00134{bottom:222.045000px;}
.y1aa_c00134{bottom:223.770000px;}
.y1ad_c00134{bottom:225.510000px;}
.y1a4_c00134{bottom:226.365000px;}
.y1a3_c00134{bottom:227.235000px;}
.y1a6_c00134{bottom:228.090000px;}
.y1a7_c00134{bottom:228.960000px;}
.y1a5_c00134{bottom:234.150000px;}
.y1a2_c00134{bottom:242.790000px;}
.y1a1_c00134{bottom:244.515000px;}
.y1a0_c00134{bottom:246.240000px;}
.y19f_c00134{bottom:250.560000px;}
.y19e_c00134{bottom:253.155000px;}
.y19d_c00134{bottom:254.010000px;}
.y19b_c00134{bottom:255.750000px;}
.y19c_c00134{bottom:258.330000px;}
.y199_c00134{bottom:268.710000px;}
.y198_c00134{bottom:270.435000px;}
.y19a_c00134{bottom:275.610000px;}
.y197_c00134{bottom:276.480000px;}
.y196_c00134{bottom:278.205000px;}
.y195_c00134{bottom:281.670000px;}
.y194_c00134{bottom:292.890000px;}
.y193_c00134{bottom:293.760000px;}
.y190_c00134{bottom:298.950000px;}
.y18f_c00134{bottom:300.675000px;}
.y191_c00134{bottom:304.125000px;}
.y192_c00134{bottom:305.850000px;}
.y18e_c00134{bottom:309.315000px;}
.y18c_c00134{bottom:318.810000px;}
.y18b_c00134{bottom:323.130000px;}
.y18a_c00134{bottom:324.000000px;}
.y189_c00134{bottom:324.870000px;}
.y188_c00134{bottom:328.320000px;}
.y187_c00134{bottom:330.045000px;}
.y184_c00134{bottom:330.915000px;}
.y186_c00134{bottom:331.770000px;}
.y185_c00134{bottom:332.640000px;}
.y18d_c00134{bottom:337.830000px;}
.y183_c00134{bottom:344.730000px;}
.y180_c00134{bottom:346.470000px;}
.y17e_c00134{bottom:349.920000px;}
.y17f_c00134{bottom:350.790000px;}
.y182_c00134{bottom:351.645000px;}
.y181_c00134{bottom:352.515000px;}
.y17d_c00134{bottom:355.110000px;}
.y17c_c00134{bottom:355.965000px;}
.y17a_c00134{bottom:369.795000px;}
.y179_c00134{bottom:370.650000px;}
.y17b_c00134{bottom:371.520000px;}
.y177_c00134{bottom:372.390000px;}
.y174_c00134{bottom:375.840000px;}
.y173_c00134{bottom:379.290000px;}
.y171_c00134{bottom:380.160000px;}
.y176_c00134{bottom:381.030000px;}
.y175_c00134{bottom:382.755000px;}
.y172_c00134{bottom:385.350000px;}
.y178_c00134{bottom:392.250000px;}
.y170_c00134{bottom:396.570000px;}
.y16d_c00134{bottom:397.440000px;}
.y16c_c00134{bottom:400.035000px;}
.y16f_c00134{bottom:401.760000px;}
.y16e_c00134{bottom:402.630000px;}
.y16b_c00134{bottom:404.355000px;}
.y16a_c00134{bottom:407.805000px;}
.y168_c00134{bottom:419.040000px;}
.y167_c00134{bottom:420.765000px;}
.y165_c00134{bottom:421.635000px;}
.y166_c00134{bottom:425.085000px;}
.y169_c00134{bottom:425.955000px;}
.y164_c00134{bottom:426.810000px;}
.y15f_c00134{bottom:429.405000px;}
.y15e_c00134{bottom:430.275000px;}
.y162_c00134{bottom:432.000000px;}
.y161_c00134{bottom:432.870000px;}
.y160_c00134{bottom:433.725000px;}
.y163_c00134{bottom:435.450000px;}
.y15c_c00134{bottom:444.960000px;}
.y15b_c00134{bottom:445.830000px;}
.y15a_c00134{bottom:446.685000px;}
.y159_c00134{bottom:447.555000px;}
.y158_c00134{bottom:449.280000px;}
.y157_c00134{bottom:452.730000px;}
.y156_c00134{bottom:453.600000px;}
.y15d_c00134{bottom:454.470000px;}
.y155_c00134{bottom:458.790000px;}
.y154_c00134{bottom:466.560000px;}
.y152_c00134{bottom:470.010000px;}
.y151_c00134{bottom:475.200000px;}
.y14f_c00134{bottom:476.925000px;}
.y150_c00134{bottom:477.795000px;}
.y14e_c00134{bottom:479.520000px;}
.y14d_c00134{bottom:481.245000px;}
.y153_c00134{bottom:489.030000px;}
.y14c_c00134{bottom:495.930000px;}
.y149_c00134{bottom:497.670000px;}
.y14b_c00134{bottom:498.525000px;}
.y14a_c00134{bottom:499.395000px;}
.y147_c00134{bottom:500.250000px;}
.y148_c00134{bottom:501.990000px;}
.y146_c00134{bottom:502.845000px;}
.y145_c00134{bottom:503.715000px;}
.y144_c00134{bottom:506.310000px;}
.y143_c00134{bottom:509.760000px;}
.y142_c00134{bottom:515.805000px;}
.y141_c00134{bottom:520.125000px;}
.y140_c00134{bottom:524.445000px;}
.y13b_c00134{bottom:526.170000px;}
.y13f_c00134{bottom:527.040000px;}
.y13e_c00134{bottom:527.910000px;}
.y13a_c00134{bottom:529.635000px;}
.y13d_c00134{bottom:531.360000px;}
.y13c_c00134{bottom:536.550000px;}
.y139_c00134{bottom:538.275000px;}
.y138_c00134{bottom:540.000000px;}
.y136_c00134{bottom:546.045000px;}
.y137_c00134{bottom:552.090000px;}
.y134_c00134{bottom:554.685000px;}
.y133_c00134{bottom:555.555000px;}
.y135_c00134{bottom:556.410000px;}
.y132_c00134{bottom:559.005000px;}
.y131_c00134{bottom:562.470000px;}
.y12f_c00134{bottom:570.240000px;}
.y130_c00134{bottom:572.835000px;}
.y12e_c00134{bottom:574.560000px;}
.y12d_c00134{bottom:576.285000px;}
.y12b_c00134{bottom:579.750000px;}
.y12a_c00134{bottom:581.475000px;}
.y127_c00134{bottom:582.330000px;}
.y12c_c00134{bottom:583.200000px;}
.y129_c00134{bottom:589.245000px;}
.y128_c00134{bottom:590.115000px;}
.y126_c00134{bottom:598.755000px;}
.y123_c00134{bottom:599.610000px;}
.y122_c00134{bottom:601.350000px;}
.y125_c00134{bottom:602.205000px;}
.y121_c00134{bottom:603.930000px;}
.y120_c00134{bottom:604.800000px;}
.y124_c00134{bottom:605.670000px;}
.y11f_c00134{bottom:618.630000px;}
.y11e_c00134{bottom:621.210000px;}
.y11c_c00134{bottom:623.805000px;}
.y11d_c00134{bottom:626.400000px;}
.y11b_c00134{bottom:627.270000px;}
.y11a_c00134{bottom:628.995000px;}
.y116_c00134{bottom:629.850000px;}
.y118_c00134{bottom:630.720000px;}
.y115_c00134{bottom:631.590000px;}
.y117_c00134{bottom:635.910000px;}
.y119_c00134{bottom:638.490000px;}
.y114_c00134{bottom:645.405000px;}
.y112_c00134{bottom:651.450000px;}
.y111_c00134{bottom:652.320000px;}
.y110_c00134{bottom:654.915000px;}
.y113_c00134{bottom:655.770000px;}
.y10e_c00134{bottom:656.640000px;}
.y10f_c00134{bottom:664.410000px;}
.y10c_c00134{bottom:673.050000px;}
.y10b_c00134{bottom:674.790000px;}
.y109_c00134{bottom:676.515000px;}
.y10a_c00134{bottom:677.370000px;}
.y107_c00134{bottom:680.835000px;}
.y10d_c00134{bottom:684.285000px;}
.y108_c00134{bottom:685.155000px;}
.y106_c00134{bottom:696.390000px;}
.y105_c00134{bottom:697.245000px;}
.y104_c00134{bottom:699.840000px;}
.y103_c00134{bottom:702.435000px;}
.y101_c00134{bottom:703.290000px;}
.y100_c00134{bottom:704.160000px;}
.yff_c00134{bottom:705.030000px;}
.yfe_c00134{bottom:705.885000px;}
.y102_c00134{bottom:706.755000px;}
.yfd_c00134{bottom:718.845000px;}
.yfc_c00134{bottom:722.310000px;}
.yfb_c00134{bottom:723.165000px;}
.yf9_c00134{bottom:724.890000px;}
.yf8_c00134{bottom:728.355000px;}
.yf6_c00134{bottom:730.080000px;}
.yf4_c00134{bottom:730.950000px;}
.yfa_c00134{bottom:732.675000px;}
.yf5_c00134{bottom:735.270000px;}
.yf7_c00134{bottom:736.995000px;}
.yf2_c00134{bottom:747.360000px;}
.yf1_c00134{bottom:748.230000px;}
.yee_c00134{bottom:749.955000px;}
.yeb_c00134{bottom:751.680000px;}
.yf3_c00134{bottom:753.405000px;}
.yed_c00134{bottom:755.130000px;}
.yf0_c00134{bottom:756.870000px;}
.yef_c00134{bottom:757.725000px;}
.yec_c00134{bottom:758.595000px;}
.yea_c00134{bottom:761.190000px;}
.ye6_c00134{bottom:770.685000px;}
.ye7_c00134{bottom:773.280000px;}
.ye5_c00134{bottom:777.600000px;}
.ye9_c00134{bottom:781.050000px;}
.ye8_c00134{bottom:787.110000px;}
.ye4_c00134{bottom:795.750000px;}
.ye3_c00134{bottom:798.330000px;}
.ye0_c00134{bottom:800.070000px;}
.ye1_c00134{bottom:802.650000px;}
.ye2_c00134{bottom:805.245000px;}
.ydf_c00134{bottom:806.970000px;}
.yde_c00134{bottom:821.670000px;}
.ydc_c00134{bottom:822.525000px;}
.ydd_c00134{bottom:824.250000px;}
.yda_c00134{bottom:825.120000px;}
.ydb_c00134{bottom:825.990000px;}
.yd9_c00134{bottom:827.715000px;}
.yd7_c00134{bottom:833.760000px;}
.yd6_c00134{bottom:839.805000px;}
.yd8_c00134{bottom:841.530000px;}
.yd5_c00134{bottom:843.270000px;}
.yd4_c00134{bottom:845.850000px;}
.yd3_c00134{bottom:849.315000px;}
.yd2_c00134{bottom:852.765000px;}
.yd1_c00134{bottom:856.230000px;}
.yd0_c00134{bottom:864.870000px;}
.ycf_c00134{bottom:870.045000px;}
.ycc_c00134{bottom:871.770000px;}
.ycb_c00134{bottom:872.640000px;}
.yca_c00134{bottom:873.510000px;}
.yc9_c00134{bottom:876.090000px;}
.yc8_c00134{bottom:876.960000px;}
.ycd_c00134{bottom:878.685000px;}
.yc6_c00134{bottom:881.280000px;}
.yce_c00134{bottom:882.150000px;}
.yc7_c00134{bottom:887.325000px;}
.yc5_c00134{bottom:889.920000px;}
.yc4_c00134{bottom:894.240000px;}
.yc3_c00134{bottom:896.835000px;}
.yc1_c00134{bottom:897.690000px;}
.yc0_c00134{bottom:901.155000px;}
.yc2_c00134{bottom:902.010000px;}
.ybf_c00134{bottom:902.880000px;}
.ybe_c00134{bottom:907.200000px;}
.ybb_c00134{bottom:918.435000px;}
.ybc_c00134{bottom:919.290000px;}
.yba_c00134{bottom:920.160000px;}
.yb9_c00134{bottom:923.610000px;}
.yb8_c00134{bottom:925.350000px;}
.yb5_c00134{bottom:926.205000px;}
.yb4_c00134{bottom:927.930000px;}
.yb3_c00134{bottom:928.800000px;}
.yb6_c00134{bottom:929.670000px;}
.yb7_c00134{bottom:933.990000px;}
.yb2_c00134{bottom:936.570000px;}
.ybd_c00134{bottom:944.355000px;}
.yb1_c00134{bottom:945.210000px;}
.yae_c00134{bottom:947.805000px;}
.yaf_c00134{bottom:949.530000px;}
.yb0_c00134{bottom:950.400000px;}
.yab_c00134{bottom:953.850000px;}
.yac_c00134{bottom:954.720000px;}
.yad_c00134{bottom:959.910000px;}
.yaa_c00134{bottom:971.130000px;}
.ya9_c00134{bottom:972.000000px;}
.ya8_c00134{bottom:972.870000px;}
.ya7_c00134{bottom:977.190000px;}
.ya6_c00134{bottom:978.915000px;}
.ya5_c00134{bottom:979.770000px;}
.ya4_c00134{bottom:995.325000px;}
.ya3_c00134{bottom:997.920000px;}
.ya2_c00134{bottom:999.645000px;}
.ya1_c00134{bottom:1001.370000px;}
.y9d_c00134{bottom:1003.965000px;}
.y9e_c00134{bottom:1004.835000px;}
.y9c_c00134{bottom:1008.285000px;}
.ya0_c00134{bottom:1010.010000px;}
.y9f_c00134{bottom:1010.880000px;}
.y9a_c00134{bottom:1022.970000px;}
.y99_c00134{bottom:1023.840000px;}
.y98_c00134{bottom:1026.435000px;}
.y95_c00134{bottom:1027.290000px;}
.y96_c00134{bottom:1028.160000px;}
.y9b_c00134{bottom:1029.030000px;}
.y94_c00134{bottom:1030.755000px;}
.y97_c00134{bottom:1031.610000px;}
.y93_c00134{bottom:1041.990000px;}
.y92_c00134{bottom:1048.890000px;}
.y8c_c00134{bottom:1051.485000px;}
.y8f_c00134{bottom:1052.355000px;}
.y88_c00134{bottom:1055.805000px;}
.y91_c00134{bottom:1056.675000px;}
.y8e_c00134{bottom:1057.530000px;}
.y87_c00134{bottom:1058.400000px;}
.y89_c00134{bottom:1060.125000px;}
.y86_c00134{bottom:1061.850000px;}
.y8a_c00134{bottom:1062.720000px;}
.y90_c00134{bottom:1063.590000px;}
.y8b_c00134{bottom:1067.040000px;}
.y85_c00134{bottom:1071.360000px;}
.y8d_c00134{bottom:1072.230000px;}
.y84_c00134{bottom:1076.550000px;}
.y83_c00134{bottom:1079.130000px;}
.y1b2_c00134{bottom:1088.640000px;}
.y82_c00134{bottom:1090.365000px;}
.y80_c00134{bottom:1094.685000px;}
.y81_c00134{bottom:1096.410000px;}
.y7f_c00134{bottom:1098.150000px;}
.y7e_c00134{bottom:1099.005000px;}
.y7d_c00134{bottom:1103.325000px;}
.y7a_c00134{bottom:1104.195000px;}
.y7c_c00134{bottom:1105.050000px;}
.y7b_c00134{bottom:1108.515000px;}
.y78_c00134{bottom:1110.240000px;}
.y79_c00134{bottom:1111.965000px;}
.y77_c00134{bottom:1123.200000px;}
.y6f_c00134{bottom:1125.795000px;}
.y76_c00134{bottom:1126.650000px;}
.y73_c00134{bottom:1128.390000px;}
.y72_c00134{bottom:1129.245000px;}
.y70_c00134{bottom:1131.840000px;}
.y74_c00134{bottom:1133.565000px;}
.y75_c00134{bottom:1135.290000px;}
.y71_c00134{bottom:1137.885000px;}
.y6e_c00134{bottom:1149.120000px;}
.y6c_c00134{bottom:1149.990000px;}
.y6d_c00134{bottom:1151.715000px;}
.y62_c00134{bottom:1152.570000px;}
.y6a_c00134{bottom:1153.440000px;}
.y6b_c00134{bottom:1154.310000px;}
.y66_c00134{bottom:1155.165000px;}
.y65_c00134{bottom:1156.890000px;}
.y64_c00134{bottom:1157.760000px;}
.y69_c00134{bottom:1158.630000px;}
.y63_c00134{bottom:1159.485000px;}
.y61_c00134{bottom:1160.355000px;}
.y60_c00134{bottom:1162.080000px;}
.y68_c00134{bottom:1168.995000px;}
.y67_c00134{bottom:1169.850000px;}
.y5d_c00134{bottom:1174.170000px;}
.y59_c00134{bottom:1175.040000px;}
.y1b1_c00134{bottom:1175.910000px;}
.y57_c00134{bottom:1176.765000px;}
.y5f_c00134{bottom:1178.490000px;}
.y58_c00134{bottom:1179.360000px;}
.y5a_c00134{bottom:1180.230000px;}
.y5c_c00134{bottom:1181.085000px;}
.y5e_c00134{bottom:1183.680000px;}
.y56_c00134{bottom:1185.405000px;}
.y5b_c00134{bottom:1189.725000px;}
.y55_c00134{bottom:1191.450000px;}
.y4f_c00134{bottom:1198.365000px;}
.y50_c00134{bottom:1199.235000px;}
.y51_c00134{bottom:1200.090000px;}
.y4e_c00134{bottom:1202.685000px;}
.y4d_c00134{bottom:1204.410000px;}
.y53_c00134{bottom:1205.280000px;}
.y54_c00134{bottom:1206.150000px;}
.y52_c00134{bottom:1207.005000px;}
.y4c_c00134{bottom:1210.470000px;}
.y4b_c00134{bottom:1212.195000px;}
.y1b0_c00134{bottom:1213.050000px;}
.y1af_c00134{bottom:1219.110000px;}
.y4a_c00134{bottom:1220.835000px;}
.y49_c00134{bottom:1222.560000px;}
.y47_c00134{bottom:1224.285000px;}
.y46_c00134{bottom:1225.155000px;}
.y43_c00134{bottom:1226.880000px;}
.y40_c00134{bottom:1229.475000px;}
.y48_c00134{bottom:1230.330000px;}
.y44_c00134{bottom:1231.200000px;}
.y42_c00134{bottom:1233.795000px;}
.y41_c00134{bottom:1234.650000px;}
.y45_c00134{bottom:1235.520000px;}
.y3e_c00134{bottom:1239.840000px;}
.y3f_c00134{bottom:1240.710000px;}
.y3c_c00134{bottom:1251.075000px;}
.y3a_c00134{bottom:1252.800000px;}
.y3b_c00134{bottom:1256.250000px;}
.y39_c00134{bottom:1258.845000px;}
.y38_c00134{bottom:1260.570000px;}
.y3d_c00134{bottom:1264.890000px;}
.y36_c00134{bottom:1275.270000px;}
.y35_c00134{bottom:1276.125000px;}
.y34_c00134{bottom:1276.995000px;}
.y31_c00134{bottom:1279.590000px;}
.y33_c00134{bottom:1281.315000px;}
.y30_c00134{bottom:1282.170000px;}
.y37_c00134{bottom:1283.040000px;}
.y32_c00134{bottom:1283.910000px;}
.y2d_c00134{bottom:1300.320000px;}
.y28_c00134{bottom:1303.770000px;}
.y2b_c00134{bottom:1304.640000px;}
.y2e_c00134{bottom:1305.510000px;}
.y2c_c00134{bottom:1306.365000px;}
.y2a_c00134{bottom:1307.235000px;}
.y29_c00134{bottom:1308.960000px;}
.y26_c00134{bottom:1311.555000px;}
.y27_c00134{bottom:1312.410000px;}
.y2f_c00134{bottom:1325.370000px;}
.y25_c00134{bottom:1326.240000px;}
.y17_c00134{bottom:1328.835000px;}
.y24_c00134{bottom:1329.690000px;}
.y23_c00134{bottom:1331.430000px;}
.y1f_c00134{bottom:1332.285000px;}
.y20_c00134{bottom:1333.155000px;}
.y22_c00134{bottom:1334.010000px;}
.y1e_c00134{bottom:1334.880000px;}
.y1d_c00134{bottom:1335.750000px;}
.y1c_c00134{bottom:1336.605000px;}
.y1b_c00134{bottom:1337.475000px;}
.y1a_c00134{bottom:1338.330000px;}
.y19_c00134{bottom:1340.925000px;}
.y21_c00134{bottom:1342.650000px;}
.y18_c00134{bottom:1343.520000px;}
.y15_c00134{bottom:1348.710000px;}
.y14_c00134{bottom:1350.435000px;}
.y13_c00134{bottom:1351.290000px;}
.y10_c00134{bottom:1353.885000px;}
.yf_c00134{bottom:1354.755000px;}
.y16_c00134{bottom:1355.610000px;}
.y11_c00134{bottom:1356.480000px;}
.y12_c00134{bottom:1359.075000px;}
.ye_c00134{bottom:1361.670000px;}
.yc_c00134{bottom:1385.850000px;}
.yd_c00134{bottom:1387.590000px;}
.y9_c00134{bottom:1388.445000px;}
.y8_c00134{bottom:1389.315000px;}
.ya_c00134{bottom:1390.170000px;}
.yb_c00134{bottom:1391.040000px;}
.y5_c00134{bottom:1404.870000px;}
.y3_c00134{bottom:1406.595000px;}
.y7_c00134{bottom:1407.450000px;}
.y4_c00134{bottom:1409.190000px;}
.y6_c00134{bottom:1411.770000px;}
.y2_c00134{bottom:1414.365000px;}
.y1_c00134{bottom:1418.685000px;}
.h2_c00134{height:3.110063px;}
.h5_c00134{height:5.399414px;}
.h7_c00134{height:6.209326px;}
.h3_c00134{height:9.340986px;}
.h15_c00134{height:12.418652px;}
.h6_c00134{height:15.550313px;}
.h19_c00134{height:18.681973px;}
.h18_c00134{height:21.759639px;}
.hf_c00134{height:24.891299px;}
.h1b_c00134{height:27.968965px;}
.h4_c00134{height:31.100625px;}
.h1a_c00134{height:34.232285px;}
.h16_c00134{height:37.309951px;}
.h24_c00134{height:40.441611px;}
.h21_c00134{height:43.519277px;}
.h17_c00134{height:46.650937px;}
.h25_c00134{height:49.782598px;}
.h22_c00134{height:52.860264px;}
.h1c_c00134{height:55.991924px;}
.hd_c00134{height:59.069590px;}
.hc_c00134{height:62.201250px;}
.hb_c00134{height:65.332910px;}
.he_c00134{height:68.410576px;}
.h26_c00134{height:71.542236px;}
.ha_c00134{height:74.619902px;}
.h9_c00134{height:77.751563px;}
.h8_c00134{height:80.883223px;}
.h1f_c00134{height:83.960889px;}
.h1e_c00134{height:87.092549px;}
.h1d_c00134{height:90.170215px;}
.h14_c00134{height:93.301875px;}
.h13_c00134{height:96.433535px;}
.h12_c00134{height:99.511201px;}
.h27_c00134{height:102.642861px;}
.h20_c00134{height:105.720527px;}
.h11_c00134{height:108.852188px;}
.h23_c00134{height:111.983848px;}
.h28_c00134{height:115.061514px;}
.h10_c00134{height:133.743486px;}
.h0_c00134{height:1517.190000px;}
.h1_c00134{height:1517.250000px;}
.w0_c00134{width:1090.365000px;}
.w1_c00134{width:1090.500000px;}
.x0_c00134{left:0.000000px;}
.xeb_c00134{left:186.630000px;}
.xc8_c00134{left:196.125000px;}
.xc4_c00134{left:197.850000px;}
.xcd_c00134{left:202.170000px;}
.xef_c00134{left:203.910000px;}
.xc9_c00134{left:205.635000px;}
.xc5_c00134{left:207.360000px;}
.xc0_c00134{left:210.810000px;}
.xec_c00134{left:214.275000px;}
.x9b_c00134{left:216.000000px;}
.xd7_c00134{left:217.725000px;}
.xd9_c00134{left:219.450000px;}
.xea_c00134{left:222.915000px;}
.xde_c00134{left:224.640000px;}
.x6a_c00134{left:226.365000px;}
.xb3_c00134{left:228.090000px;}
.x8e_c00134{left:230.685000px;}
.x55_c00134{left:233.280000px;}
.xa_c00134{left:235.005000px;}
.x83_c00134{left:236.730000px;}
.x14_c00134{left:239.325000px;}
.x8f_c00134{left:241.050000px;}
.xa6_c00134{left:243.645000px;}
.x6b_c00134{left:245.370000px;}
.x71_c00134{left:247.965000px;}
.x3c_c00134{left:252.285000px;}
.x78_c00134{left:254.880000px;}
.xa7_c00134{left:259.200000px;}
.x62_c00134{left:261.795000px;}
.x15_c00134{left:264.390000px;}
.xba_c00134{left:266.115000px;}
.x9c_c00134{left:270.435000px;}
.x90_c00134{left:273.030000px;}
.xac_c00134{left:275.610000px;}
.xf0_c00134{left:278.205000px;}
.xb4_c00134{left:280.800000px;}
.x2d_c00134{left:282.525000px;}
.x63_c00134{left:284.250000px;}
.x56_c00134{left:285.990000px;}
.xda_c00134{left:288.570000px;}
.x79_c00134{left:292.035000px;}
.x9d_c00134{left:294.630000px;}
.x48_c00134{left:296.355000px;}
.x3d_c00134{left:298.950000px;}
.xd1_c00134{left:301.530000px;}
.x2e_c00134{left:304.125000px;}
.x7a_c00134{left:308.445000px;}
.xb7_c00134{left:311.910000px;}
.x16_c00134{left:316.230000px;}
.xad_c00134{left:319.680000px;}
.x7b_c00134{left:321.405000px;}
.xfe_c00134{left:324.000000px;}
.x107_c00134{left:326.595000px;}
.x105_c00134{left:328.320000px;}
.x2f_c00134{left:331.770000px;}
.x64_c00134{left:337.830000px;}
.x20_c00134{left:341.280000px;}
.x72_c00134{left:344.730000px;}
.xf4_c00134{left:349.920000px;}
.x3e_c00134{left:351.645000px;}
.xf8_c00134{left:353.370000px;}
.x91_c00134{left:355.110000px;}
.x49_c00134{left:358.560000px;}
.x57_c00134{left:362.010000px;}
.x30_c00134{left:364.605000px;}
.xdd_c00134{left:367.200000px;}
.x21_c00134{left:370.650000px;}
.xb_c00134{left:373.245000px;}
.xdb_c00134{left:375.840000px;}
.xa8_c00134{left:378.435000px;}
.xb8_c00134{left:380.160000px;}
.x7c_c00134{left:382.755000px;}
.xe7_c00134{left:386.205000px;}
.x7d_c00134{left:387.930000px;}
.x17_c00134{left:390.525000px;}
.xce_c00134{left:392.250000px;}
.xdf_c00134{left:393.990000px;}
.xbb_c00134{left:397.440000px;}
.x4a_c00134{left:400.890000px;}
.x3f_c00134{left:402.630000px;}
.x7e_c00134{left:405.210000px;}
.x108_c00134{left:406.950000px;}
.x103_c00134{left:410.400000px;}
.xae_c00134{left:413.850000px;}
.xc6_c00134{left:415.590000px;}
.x40_c00134{left:418.170000px;}
.x1_c00134{left:420.765000px;}
.x7f_c00134{left:424.230000px;}
.x58_c00134{left:426.810000px;}
.xc_c00134{left:429.405000px;}
.xaf_c00134{left:438.045000px;}
.x41_c00134{left:442.365000px;}
.x92_c00134{left:444.960000px;}
.xc1_c00134{left:448.410000px;}
.x4b_c00134{left:451.875000px;}
.xe1_c00134{left:453.600000px;}
.xa9_c00134{left:455.325000px;}
.x18_c00134{left:457.050000px;}
.x4c_c00134{left:459.645000px;}
.xb0_c00134{left:462.240000px;}
.x31_c00134{left:464.835000px;}
.xd_c00134{left:466.560000px;}
.xb5_c00134{left:469.155000px;}
.x19_c00134{left:472.605000px;}
.x32_c00134{left:474.330000px;}
.x22_c00134{left:476.070000px;}
.x2_c00134{left:477.795000px;}
.x93_c00134{left:484.710000px;}
.x80_c00134{left:488.160000px;}
.x23_c00134{left:492.480000px;}
.x6c_c00134{left:495.930000px;}
.x33_c00134{left:498.525000px;}
.x42_c00134{left:501.120000px;}
.xf9_c00134{left:503.715000px;}
.x9e_c00134{left:505.440000px;}
.x81_c00134{left:509.760000px;}
.xe_c00134{left:511.485000px;}
.xd2_c00134{left:513.210000px;}
.x9f_c00134{left:514.950000px;}
.xaa_c00134{left:518.400000px;}
.x53_c00134{left:520.125000px;}
.xca_c00134{left:521.850000px;}
.xfb_c00134{left:523.590000px;}
.x43_c00134{left:527.040000px;}
.xf5_c00134{left:529.635000px;}
.xff_c00134{left:533.085000px;}
.x4d_c00134{left:534.810000px;}
.xe3_c00134{left:536.550000px;}
.xf_c00134{left:539.130000px;}
.x73_c00134{left:541.725000px;}
.x59_c00134{left:543.450000px;}
.xf3_c00134{left:545.190000px;}
.xe8_c00134{left:546.915000px;}
.x24_c00134{left:549.510000px;}
.x82_c00134{left:551.235000px;}
.x34_c00134{left:554.685000px;}
.xf1_c00134{left:556.410000px;}
.xe9_c00134{left:559.005000px;}
.x100_c00134{left:560.730000px;}
.x74_c00134{left:563.325000px;}
.xf6_c00134{left:571.110000px;}
.x3_c00134{left:581.475000px;}
.x44_c00134{left:585.795000px;}
.xcb_c00134{left:588.390000px;}
.x5a_c00134{left:590.970000px;}
.xb1_c00134{left:592.710000px;}
.x35_c00134{left:596.160000px;}
.x4e_c00134{left:601.350000px;}
.xfc_c00134{left:603.075000px;}
.x10_c00134{left:604.800000px;}
.xc2_c00134{left:608.250000px;}
.x25_c00134{left:610.845000px;}
.x65_c00134{left:613.440000px;}
.xcf_c00134{left:615.165000px;}
.x5b_c00134{left:617.760000px;}
.xb6_c00134{left:620.355000px;}
.xe4_c00134{left:622.950000px;}
.x26_c00134{left:624.675000px;}
.xab_c00134{left:628.995000px;}
.xa0_c00134{left:630.720000px;}
.x5c_c00134{left:633.315000px;}
.x75_c00134{left:635.040000px;}
.x84_c00134{left:636.765000px;}
.x1a_c00134{left:639.360000px;}
.x11_c00134{left:641.955000px;}
.x45_c00134{left:643.680000px;}
.xa1_c00134{left:646.275000px;}
.x101_c00134{left:648.870000px;}
.x27_c00134{left:651.450000px;}
.xd8_c00134{left:654.045000px;}
.x36_c00134{left:656.640000px;}
.x46_c00134{left:658.365000px;}
.x54_c00134{left:660.090000px;}
.x76_c00134{left:662.685000px;}
.x1b_c00134{left:666.150000px;}
.x106_c00134{left:667.875000px;}
.xed_c00134{left:670.470000px;}
.x4f_c00134{left:672.195000px;}
.x6d_c00134{left:678.240000px;}
.x85_c00134{left:680.835000px;}
.x12_c00134{left:683.430000px;}
.x5d_c00134{left:685.155000px;}
.x37_c00134{left:689.475000px;}
.xe2_c00134{left:692.070000px;}
.x38_c00134{left:695.520000px;}
.xa2_c00134{left:697.245000px;}
.xd3_c00134{left:701.565000px;}
.x86_c00134{left:704.160000px;}
.x28_c00134{left:705.885000px;}
.x50_c00134{left:708.480000px;}
.xfa_c00134{left:710.205000px;}
.x94_c00134{left:712.800000px;}
.x5e_c00134{left:714.525000px;}
.x39_c00134{left:717.120000px;}
.x29_c00134{left:718.845000px;}
.x4_c00134{left:720.570000px;}
.x87_c00134{left:722.310000px;}
.x66_c00134{left:724.890000px;}
.x51_c00134{left:726.630000px;}
.x3a_c00134{left:730.080000px;}
.xf2_c00134{left:732.675000px;}
.xfd_c00134{left:734.400000px;}
.x3b_c00134{left:736.995000px;}
.x5_c00134{left:739.590000px;}
.x88_c00134{left:741.315000px;}
.x67_c00134{left:744.765000px;}
.xe5_c00134{left:746.490000px;}
.xa3_c00134{left:749.085000px;}
.x52_c00134{left:751.680000px;}
.x2a_c00134{left:756.000000px;}
.x89_c00134{left:759.450000px;}
.xa4_c00134{left:761.190000px;}
.x1c_c00134{left:762.915000px;}
.xd0_c00134{left:764.640000px;}
.x5f_c00134{left:766.365000px;}
.xb9_c00134{left:769.830000px;}
.x2b_c00134{left:773.280000px;}
.xc7_c00134{left:777.600000px;}
.xcc_c00134{left:779.325000px;}
.x1d_c00134{left:781.920000px;}
.xf7_c00134{left:783.645000px;}
.x8a_c00134{left:787.110000px;}
.xb2_c00134{left:788.835000px;}
.xa5_c00134{left:790.560000px;}
.x47_c00134{left:792.285000px;}
.xd4_c00134{left:794.880000px;}
.xee_c00134{left:797.475000px;}
.x6e_c00134{left:800.070000px;}
.xbc_c00134{left:802.650000px;}
.x8b_c00134{left:804.390000px;}
.x77_c00134{left:806.115000px;}
.x68_c00134{left:807.840000px;}
.x95_c00134{left:809.565000px;}
.xc3_c00134{left:811.290000px;}
.xbd_c00134{left:813.885000px;}
.x104_c00134{left:815.610000px;}
.x6_c00134{left:817.350000px;}
.x6f_c00134{left:820.800000px;}
.xe6_c00134{left:822.525000px;}
.xdc_c00134{left:825.120000px;}
.x60_c00134{left:828.570000px;}
.x7_c00134{left:830.310000px;}
.x8c_c00134{left:833.760000px;}
.x8_c00134{left:836.355000px;}
.x13_c00134{left:838.950000px;}
.x9_c00134{left:841.530000px;}
.x109_c00134{left:845.850000px;}
.x8d_c00134{left:847.590000px;}
.x1e_c00134{left:851.040000px;}
.x69_c00134{left:854.490000px;}
.x96_c00134{left:857.955000px;}
.x61_c00134{left:864.870000px;}
.x70_c00134{left:867.450000px;}
.x102_c00134{left:871.770000px;}
.x2c_c00134{left:875.235000px;}
.xe0_c00134{left:877.830000px;}
.xd5_c00134{left:879.555000px;}
.xbe_c00134{left:882.150000px;}
.x97_c00134{left:886.470000px;}
.x1f_c00134{left:889.050000px;}
.x98_c00134{left:902.880000px;}
.xbf_c00134{left:905.475000px;}
.xd6_c00134{left:909.795000px;}
.x99_c00134{left:911.520000px;}
.x9a_c00134{left:920.160000px;}
.x10c_c00134{left:937.440000px;}
.x10d_c00134{left:950.400000px;}
.x10b_c00134{left:1010.880000px;}
.x10a_c00134{left:1015.200000px;}
.x10e_c00134{left:1040.250000px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls1_c00134{letter-spacing:0.000000pt;}
.ls0_c00134{letter-spacing:25.015733pt;}
.ws0_c00134{word-spacing:0.000000pt;}
.fs0_c00134{font-size:3.072000pt;}
.fs3_c00134{font-size:5.333333pt;}
.fs5_c00134{font-size:6.133333pt;}
.fs1_c00134{font-size:9.226667pt;}
.fs13_c00134{font-size:12.266667pt;}
.fs4_c00134{font-size:15.360000pt;}
.fs17_c00134{font-size:18.453333pt;}
.fs16_c00134{font-size:21.493333pt;}
.fsd_c00134{font-size:24.586667pt;}
.fs19_c00134{font-size:27.626667pt;}
.fs2_c00134{font-size:30.720000pt;}
.fs18_c00134{font-size:33.813333pt;}
.fs14_c00134{font-size:36.853333pt;}
.fs22_c00134{font-size:39.946667pt;}
.fs1f_c00134{font-size:42.986667pt;}
.fs15_c00134{font-size:46.080000pt;}
.fs23_c00134{font-size:49.173333pt;}
.fs20_c00134{font-size:52.213333pt;}
.fs1a_c00134{font-size:55.306667pt;}
.fsb_c00134{font-size:58.346667pt;}
.fsa_c00134{font-size:61.440000pt;}
.fs9_c00134{font-size:64.533333pt;}
.fsc_c00134{font-size:67.573333pt;}
.fs24_c00134{font-size:70.666667pt;}
.fs8_c00134{font-size:73.706667pt;}
.fs7_c00134{font-size:76.800000pt;}
.fs6_c00134{font-size:79.893333pt;}
.fs1d_c00134{font-size:82.933333pt;}
.fs1c_c00134{font-size:86.026667pt;}
.fs1b_c00134{font-size:89.066667pt;}
.fs12_c00134{font-size:92.160000pt;}
.fs11_c00134{font-size:95.253333pt;}
.fs10_c00134{font-size:98.293333pt;}
.fs25_c00134{font-size:101.386667pt;}
.fs1e_c00134{font-size:104.426667pt;}
.fsf_c00134{font-size:107.520000pt;}
.fs21_c00134{font-size:110.613333pt;}
.fs26_c00134{font-size:113.653333pt;}
.fse_c00134{font-size:132.106667pt;}
.y0_c00134{bottom:0.000000pt;}
.y1ac_c00134{bottom:191.226667pt;}
.y1ae_c00134{bottom:193.533333pt;}
.y1ab_c00134{bottom:194.306667pt;}
.y1a8_c00134{bottom:195.066667pt;}
.y1a9_c00134{bottom:197.373333pt;}
.y1aa_c00134{bottom:198.906667pt;}
.y1ad_c00134{bottom:200.453333pt;}
.y1a4_c00134{bottom:201.213333pt;}
.y1a3_c00134{bottom:201.986667pt;}
.y1a6_c00134{bottom:202.746667pt;}
.y1a7_c00134{bottom:203.520000pt;}
.y1a5_c00134{bottom:208.133333pt;}
.y1a2_c00134{bottom:215.813333pt;}
.y1a1_c00134{bottom:217.346667pt;}
.y1a0_c00134{bottom:218.880000pt;}
.y19f_c00134{bottom:222.720000pt;}
.y19e_c00134{bottom:225.026667pt;}
.y19d_c00134{bottom:225.786667pt;}
.y19b_c00134{bottom:227.333333pt;}
.y19c_c00134{bottom:229.626667pt;}
.y199_c00134{bottom:238.853333pt;}
.y198_c00134{bottom:240.386667pt;}
.y19a_c00134{bottom:244.986667pt;}
.y197_c00134{bottom:245.760000pt;}
.y196_c00134{bottom:247.293333pt;}
.y195_c00134{bottom:250.373333pt;}
.y194_c00134{bottom:260.346667pt;}
.y193_c00134{bottom:261.120000pt;}
.y190_c00134{bottom:265.733333pt;}
.y18f_c00134{bottom:267.266667pt;}
.y191_c00134{bottom:270.333333pt;}
.y192_c00134{bottom:271.866667pt;}
.y18e_c00134{bottom:274.946667pt;}
.y18c_c00134{bottom:283.386667pt;}
.y18b_c00134{bottom:287.226667pt;}
.y18a_c00134{bottom:288.000000pt;}
.y189_c00134{bottom:288.773333pt;}
.y188_c00134{bottom:291.840000pt;}
.y187_c00134{bottom:293.373333pt;}
.y184_c00134{bottom:294.146667pt;}
.y186_c00134{bottom:294.906667pt;}
.y185_c00134{bottom:295.680000pt;}
.y18d_c00134{bottom:300.293333pt;}
.y183_c00134{bottom:306.426667pt;}
.y180_c00134{bottom:307.973333pt;}
.y17e_c00134{bottom:311.040000pt;}
.y17f_c00134{bottom:311.813333pt;}
.y182_c00134{bottom:312.573333pt;}
.y181_c00134{bottom:313.346667pt;}
.y17d_c00134{bottom:315.653333pt;}
.y17c_c00134{bottom:316.413333pt;}
.y17a_c00134{bottom:328.706667pt;}
.y179_c00134{bottom:329.466667pt;}
.y17b_c00134{bottom:330.240000pt;}
.y177_c00134{bottom:331.013333pt;}
.y174_c00134{bottom:334.080000pt;}
.y173_c00134{bottom:337.146667pt;}
.y171_c00134{bottom:337.920000pt;}
.y176_c00134{bottom:338.693333pt;}
.y175_c00134{bottom:340.226667pt;}
.y172_c00134{bottom:342.533333pt;}
.y178_c00134{bottom:348.666667pt;}
.y170_c00134{bottom:352.506667pt;}
.y16d_c00134{bottom:353.280000pt;}
.y16c_c00134{bottom:355.586667pt;}
.y16f_c00134{bottom:357.120000pt;}
.y16e_c00134{bottom:357.893333pt;}
.y16b_c00134{bottom:359.426667pt;}
.y16a_c00134{bottom:362.493333pt;}
.y168_c00134{bottom:372.480000pt;}
.y167_c00134{bottom:374.013333pt;}
.y165_c00134{bottom:374.786667pt;}
.y166_c00134{bottom:377.853333pt;}
.y169_c00134{bottom:378.626667pt;}
.y164_c00134{bottom:379.386667pt;}
.y15f_c00134{bottom:381.693333pt;}
.y15e_c00134{bottom:382.466667pt;}
.y162_c00134{bottom:384.000000pt;}
.y161_c00134{bottom:384.773333pt;}
.y160_c00134{bottom:385.533333pt;}
.y163_c00134{bottom:387.066667pt;}
.y15c_c00134{bottom:395.520000pt;}
.y15b_c00134{bottom:396.293333pt;}
.y15a_c00134{bottom:397.053333pt;}
.y159_c00134{bottom:397.826667pt;}
.y158_c00134{bottom:399.360000pt;}
.y157_c00134{bottom:402.426667pt;}
.y156_c00134{bottom:403.200000pt;}
.y15d_c00134{bottom:403.973333pt;}
.y155_c00134{bottom:407.813333pt;}
.y154_c00134{bottom:414.720000pt;}
.y152_c00134{bottom:417.786667pt;}
.y151_c00134{bottom:422.400000pt;}
.y14f_c00134{bottom:423.933333pt;}
.y150_c00134{bottom:424.706667pt;}
.y14e_c00134{bottom:426.240000pt;}
.y14d_c00134{bottom:427.773333pt;}
.y153_c00134{bottom:434.693333pt;}
.y14c_c00134{bottom:440.826667pt;}
.y149_c00134{bottom:442.373333pt;}
.y14b_c00134{bottom:443.133333pt;}
.y14a_c00134{bottom:443.906667pt;}
.y147_c00134{bottom:444.666667pt;}
.y148_c00134{bottom:446.213333pt;}
.y146_c00134{bottom:446.973333pt;}
.y145_c00134{bottom:447.746667pt;}
.y144_c00134{bottom:450.053333pt;}
.y143_c00134{bottom:453.120000pt;}
.y142_c00134{bottom:458.493333pt;}
.y141_c00134{bottom:462.333333pt;}
.y140_c00134{bottom:466.173333pt;}
.y13b_c00134{bottom:467.706667pt;}
.y13f_c00134{bottom:468.480000pt;}
.y13e_c00134{bottom:469.253333pt;}
.y13a_c00134{bottom:470.786667pt;}
.y13d_c00134{bottom:472.320000pt;}
.y13c_c00134{bottom:476.933333pt;}
.y139_c00134{bottom:478.466667pt;}
.y138_c00134{bottom:480.000000pt;}
.y136_c00134{bottom:485.373333pt;}
.y137_c00134{bottom:490.746667pt;}
.y134_c00134{bottom:493.053333pt;}
.y133_c00134{bottom:493.826667pt;}
.y135_c00134{bottom:494.586667pt;}
.y132_c00134{bottom:496.893333pt;}
.y131_c00134{bottom:499.973333pt;}
.y12f_c00134{bottom:506.880000pt;}
.y130_c00134{bottom:509.186667pt;}
.y12e_c00134{bottom:510.720000pt;}
.y12d_c00134{bottom:512.253333pt;}
.y12b_c00134{bottom:515.333333pt;}
.y12a_c00134{bottom:516.866667pt;}
.y127_c00134{bottom:517.626667pt;}
.y12c_c00134{bottom:518.400000pt;}
.y129_c00134{bottom:523.773333pt;}
.y128_c00134{bottom:524.546667pt;}
.y126_c00134{bottom:532.226667pt;}
.y123_c00134{bottom:532.986667pt;}
.y122_c00134{bottom:534.533333pt;}
.y125_c00134{bottom:535.293333pt;}
.y121_c00134{bottom:536.826667pt;}
.y120_c00134{bottom:537.600000pt;}
.y124_c00134{bottom:538.373333pt;}
.y11f_c00134{bottom:549.893333pt;}
.y11e_c00134{bottom:552.186667pt;}
.y11c_c00134{bottom:554.493333pt;}
.y11d_c00134{bottom:556.800000pt;}
.y11b_c00134{bottom:557.573333pt;}
.y11a_c00134{bottom:559.106667pt;}
.y116_c00134{bottom:559.866667pt;}
.y118_c00134{bottom:560.640000pt;}
.y115_c00134{bottom:561.413333pt;}
.y117_c00134{bottom:565.253333pt;}
.y119_c00134{bottom:567.546667pt;}
.y114_c00134{bottom:573.693333pt;}
.y112_c00134{bottom:579.066667pt;}
.y111_c00134{bottom:579.840000pt;}
.y110_c00134{bottom:582.146667pt;}
.y113_c00134{bottom:582.906667pt;}
.y10e_c00134{bottom:583.680000pt;}
.y10f_c00134{bottom:590.586667pt;}
.y10c_c00134{bottom:598.266667pt;}
.y10b_c00134{bottom:599.813333pt;}
.y109_c00134{bottom:601.346667pt;}
.y10a_c00134{bottom:602.106667pt;}
.y107_c00134{bottom:605.186667pt;}
.y10d_c00134{bottom:608.253333pt;}
.y108_c00134{bottom:609.026667pt;}
.y106_c00134{bottom:619.013333pt;}
.y105_c00134{bottom:619.773333pt;}
.y104_c00134{bottom:622.080000pt;}
.y103_c00134{bottom:624.386667pt;}
.y101_c00134{bottom:625.146667pt;}
.y100_c00134{bottom:625.920000pt;}
.yff_c00134{bottom:626.693333pt;}
.yfe_c00134{bottom:627.453333pt;}
.y102_c00134{bottom:628.226667pt;}
.yfd_c00134{bottom:638.973333pt;}
.yfc_c00134{bottom:642.053333pt;}
.yfb_c00134{bottom:642.813333pt;}
.yf9_c00134{bottom:644.346667pt;}
.yf8_c00134{bottom:647.426667pt;}
.yf6_c00134{bottom:648.960000pt;}
.yf4_c00134{bottom:649.733333pt;}
.yfa_c00134{bottom:651.266667pt;}
.yf5_c00134{bottom:653.573333pt;}
.yf7_c00134{bottom:655.106667pt;}
.yf2_c00134{bottom:664.320000pt;}
.yf1_c00134{bottom:665.093333pt;}
.yee_c00134{bottom:666.626667pt;}
.yeb_c00134{bottom:668.160000pt;}
.yf3_c00134{bottom:669.693333pt;}
.yed_c00134{bottom:671.226667pt;}
.yf0_c00134{bottom:672.773333pt;}
.yef_c00134{bottom:673.533333pt;}
.yec_c00134{bottom:674.306667pt;}
.yea_c00134{bottom:676.613333pt;}
.ye6_c00134{bottom:685.053333pt;}
.ye7_c00134{bottom:687.360000pt;}
.ye5_c00134{bottom:691.200000pt;}
.ye9_c00134{bottom:694.266667pt;}
.ye8_c00134{bottom:699.653333pt;}
.ye4_c00134{bottom:707.333333pt;}
.ye3_c00134{bottom:709.626667pt;}
.ye0_c00134{bottom:711.173333pt;}
.ye1_c00134{bottom:713.466667pt;}
.ye2_c00134{bottom:715.773333pt;}
.ydf_c00134{bottom:717.306667pt;}
.yde_c00134{bottom:730.373333pt;}
.ydc_c00134{bottom:731.133333pt;}
.ydd_c00134{bottom:732.666667pt;}
.yda_c00134{bottom:733.440000pt;}
.ydb_c00134{bottom:734.213333pt;}
.yd9_c00134{bottom:735.746667pt;}
.yd7_c00134{bottom:741.120000pt;}
.yd6_c00134{bottom:746.493333pt;}
.yd8_c00134{bottom:748.026667pt;}
.yd5_c00134{bottom:749.573333pt;}
.yd4_c00134{bottom:751.866667pt;}
.yd3_c00134{bottom:754.946667pt;}
.yd2_c00134{bottom:758.013333pt;}
.yd1_c00134{bottom:761.093333pt;}
.yd0_c00134{bottom:768.773333pt;}
.ycf_c00134{bottom:773.373333pt;}
.ycc_c00134{bottom:774.906667pt;}
.ycb_c00134{bottom:775.680000pt;}
.yca_c00134{bottom:776.453333pt;}
.yc9_c00134{bottom:778.746667pt;}
.yc8_c00134{bottom:779.520000pt;}
.ycd_c00134{bottom:781.053333pt;}
.yc6_c00134{bottom:783.360000pt;}
.yce_c00134{bottom:784.133333pt;}
.yc7_c00134{bottom:788.733333pt;}
.yc5_c00134{bottom:791.040000pt;}
.yc4_c00134{bottom:794.880000pt;}
.yc3_c00134{bottom:797.186667pt;}
.yc1_c00134{bottom:797.946667pt;}
.yc0_c00134{bottom:801.026667pt;}
.yc2_c00134{bottom:801.786667pt;}
.ybf_c00134{bottom:802.560000pt;}
.ybe_c00134{bottom:806.400000pt;}
.ybb_c00134{bottom:816.386667pt;}
.ybc_c00134{bottom:817.146667pt;}
.yba_c00134{bottom:817.920000pt;}
.yb9_c00134{bottom:820.986667pt;}
.yb8_c00134{bottom:822.533333pt;}
.yb5_c00134{bottom:823.293333pt;}
.yb4_c00134{bottom:824.826667pt;}
.yb3_c00134{bottom:825.600000pt;}
.yb6_c00134{bottom:826.373333pt;}
.yb7_c00134{bottom:830.213333pt;}
.yb2_c00134{bottom:832.506667pt;}
.ybd_c00134{bottom:839.426667pt;}
.yb1_c00134{bottom:840.186667pt;}
.yae_c00134{bottom:842.493333pt;}
.yaf_c00134{bottom:844.026667pt;}
.yb0_c00134{bottom:844.800000pt;}
.yab_c00134{bottom:847.866667pt;}
.yac_c00134{bottom:848.640000pt;}
.yad_c00134{bottom:853.253333pt;}
.yaa_c00134{bottom:863.226667pt;}
.ya9_c00134{bottom:864.000000pt;}
.ya8_c00134{bottom:864.773333pt;}
.ya7_c00134{bottom:868.613333pt;}
.ya6_c00134{bottom:870.146667pt;}
.ya5_c00134{bottom:870.906667pt;}
.ya4_c00134{bottom:884.733333pt;}
.ya3_c00134{bottom:887.040000pt;}
.ya2_c00134{bottom:888.573333pt;}
.ya1_c00134{bottom:890.106667pt;}
.y9d_c00134{bottom:892.413333pt;}
.y9e_c00134{bottom:893.186667pt;}
.y9c_c00134{bottom:896.253333pt;}
.ya0_c00134{bottom:897.786667pt;}
.y9f_c00134{bottom:898.560000pt;}
.y9a_c00134{bottom:909.306667pt;}
.y99_c00134{bottom:910.080000pt;}
.y98_c00134{bottom:912.386667pt;}
.y95_c00134{bottom:913.146667pt;}
.y96_c00134{bottom:913.920000pt;}
.y9b_c00134{bottom:914.693333pt;}
.y94_c00134{bottom:916.226667pt;}
.y97_c00134{bottom:916.986667pt;}
.y93_c00134{bottom:926.213333pt;}
.y92_c00134{bottom:932.346667pt;}
.y8c_c00134{bottom:934.653333pt;}
.y8f_c00134{bottom:935.426667pt;}
.y88_c00134{bottom:938.493333pt;}
.y91_c00134{bottom:939.266667pt;}
.y8e_c00134{bottom:940.026667pt;}
.y87_c00134{bottom:940.800000pt;}
.y89_c00134{bottom:942.333333pt;}
.y86_c00134{bottom:943.866667pt;}
.y8a_c00134{bottom:944.640000pt;}
.y90_c00134{bottom:945.413333pt;}
.y8b_c00134{bottom:948.480000pt;}
.y85_c00134{bottom:952.320000pt;}
.y8d_c00134{bottom:953.093333pt;}
.y84_c00134{bottom:956.933333pt;}
.y83_c00134{bottom:959.226667pt;}
.y1b2_c00134{bottom:967.680000pt;}
.y82_c00134{bottom:969.213333pt;}
.y80_c00134{bottom:973.053333pt;}
.y81_c00134{bottom:974.586667pt;}
.y7f_c00134{bottom:976.133333pt;}
.y7e_c00134{bottom:976.893333pt;}
.y7d_c00134{bottom:980.733333pt;}
.y7a_c00134{bottom:981.506667pt;}
.y7c_c00134{bottom:982.266667pt;}
.y7b_c00134{bottom:985.346667pt;}
.y78_c00134{bottom:986.880000pt;}
.y79_c00134{bottom:988.413333pt;}
.y77_c00134{bottom:998.400000pt;}
.y6f_c00134{bottom:1000.706667pt;}
.y76_c00134{bottom:1001.466667pt;}
.y73_c00134{bottom:1003.013333pt;}
.y72_c00134{bottom:1003.773333pt;}
.y70_c00134{bottom:1006.080000pt;}
.y74_c00134{bottom:1007.613333pt;}
.y75_c00134{bottom:1009.146667pt;}
.y71_c00134{bottom:1011.453333pt;}
.y6e_c00134{bottom:1021.440000pt;}
.y6c_c00134{bottom:1022.213333pt;}
.y6d_c00134{bottom:1023.746667pt;}
.y62_c00134{bottom:1024.506667pt;}
.y6a_c00134{bottom:1025.280000pt;}
.y6b_c00134{bottom:1026.053333pt;}
.y66_c00134{bottom:1026.813333pt;}
.y65_c00134{bottom:1028.346667pt;}
.y64_c00134{bottom:1029.120000pt;}
.y69_c00134{bottom:1029.893333pt;}
.y63_c00134{bottom:1030.653333pt;}
.y61_c00134{bottom:1031.426667pt;}
.y60_c00134{bottom:1032.960000pt;}
.y68_c00134{bottom:1039.106667pt;}
.y67_c00134{bottom:1039.866667pt;}
.y5d_c00134{bottom:1043.706667pt;}
.y59_c00134{bottom:1044.480000pt;}
.y1b1_c00134{bottom:1045.253333pt;}
.y57_c00134{bottom:1046.013333pt;}
.y5f_c00134{bottom:1047.546667pt;}
.y58_c00134{bottom:1048.320000pt;}
.y5a_c00134{bottom:1049.093333pt;}
.y5c_c00134{bottom:1049.853333pt;}
.y5e_c00134{bottom:1052.160000pt;}
.y56_c00134{bottom:1053.693333pt;}
.y5b_c00134{bottom:1057.533333pt;}
.y55_c00134{bottom:1059.066667pt;}
.y4f_c00134{bottom:1065.213333pt;}
.y50_c00134{bottom:1065.986667pt;}
.y51_c00134{bottom:1066.746667pt;}
.y4e_c00134{bottom:1069.053333pt;}
.y4d_c00134{bottom:1070.586667pt;}
.y53_c00134{bottom:1071.360000pt;}
.y54_c00134{bottom:1072.133333pt;}
.y52_c00134{bottom:1072.893333pt;}
.y4c_c00134{bottom:1075.973333pt;}
.y4b_c00134{bottom:1077.506667pt;}
.y1b0_c00134{bottom:1078.266667pt;}
.y1af_c00134{bottom:1083.653333pt;}
.y4a_c00134{bottom:1085.186667pt;}
.y49_c00134{bottom:1086.720000pt;}
.y47_c00134{bottom:1088.253333pt;}
.y46_c00134{bottom:1089.026667pt;}
.y43_c00134{bottom:1090.560000pt;}
.y40_c00134{bottom:1092.866667pt;}
.y48_c00134{bottom:1093.626667pt;}
.y44_c00134{bottom:1094.400000pt;}
.y42_c00134{bottom:1096.706667pt;}
.y41_c00134{bottom:1097.466667pt;}
.y45_c00134{bottom:1098.240000pt;}
.y3e_c00134{bottom:1102.080000pt;}
.y3f_c00134{bottom:1102.853333pt;}
.y3c_c00134{bottom:1112.066667pt;}
.y3a_c00134{bottom:1113.600000pt;}
.y3b_c00134{bottom:1116.666667pt;}
.y39_c00134{bottom:1118.973333pt;}
.y38_c00134{bottom:1120.506667pt;}
.y3d_c00134{bottom:1124.346667pt;}
.y36_c00134{bottom:1133.573333pt;}
.y35_c00134{bottom:1134.333333pt;}
.y34_c00134{bottom:1135.106667pt;}
.y31_c00134{bottom:1137.413333pt;}
.y33_c00134{bottom:1138.946667pt;}
.y30_c00134{bottom:1139.706667pt;}
.y37_c00134{bottom:1140.480000pt;}
.y32_c00134{bottom:1141.253333pt;}
.y2d_c00134{bottom:1155.840000pt;}
.y28_c00134{bottom:1158.906667pt;}
.y2b_c00134{bottom:1159.680000pt;}
.y2e_c00134{bottom:1160.453333pt;}
.y2c_c00134{bottom:1161.213333pt;}
.y2a_c00134{bottom:1161.986667pt;}
.y29_c00134{bottom:1163.520000pt;}
.y26_c00134{bottom:1165.826667pt;}
.y27_c00134{bottom:1166.586667pt;}
.y2f_c00134{bottom:1178.106667pt;}
.y25_c00134{bottom:1178.880000pt;}
.y17_c00134{bottom:1181.186667pt;}
.y24_c00134{bottom:1181.946667pt;}
.y23_c00134{bottom:1183.493333pt;}
.y1f_c00134{bottom:1184.253333pt;}
.y20_c00134{bottom:1185.026667pt;}
.y22_c00134{bottom:1185.786667pt;}
.y1e_c00134{bottom:1186.560000pt;}
.y1d_c00134{bottom:1187.333333pt;}
.y1c_c00134{bottom:1188.093333pt;}
.y1b_c00134{bottom:1188.866667pt;}
.y1a_c00134{bottom:1189.626667pt;}
.y19_c00134{bottom:1191.933333pt;}
.y21_c00134{bottom:1193.466667pt;}
.y18_c00134{bottom:1194.240000pt;}
.y15_c00134{bottom:1198.853333pt;}
.y14_c00134{bottom:1200.386667pt;}
.y13_c00134{bottom:1201.146667pt;}
.y10_c00134{bottom:1203.453333pt;}
.yf_c00134{bottom:1204.226667pt;}
.y16_c00134{bottom:1204.986667pt;}
.y11_c00134{bottom:1205.760000pt;}
.y12_c00134{bottom:1208.066667pt;}
.ye_c00134{bottom:1210.373333pt;}
.yc_c00134{bottom:1231.866667pt;}
.yd_c00134{bottom:1233.413333pt;}
.y9_c00134{bottom:1234.173333pt;}
.y8_c00134{bottom:1234.946667pt;}
.ya_c00134{bottom:1235.706667pt;}
.yb_c00134{bottom:1236.480000pt;}
.y5_c00134{bottom:1248.773333pt;}
.y3_c00134{bottom:1250.306667pt;}
.y7_c00134{bottom:1251.066667pt;}
.y4_c00134{bottom:1252.613333pt;}
.y6_c00134{bottom:1254.906667pt;}
.y2_c00134{bottom:1257.213333pt;}
.y1_c00134{bottom:1261.053333pt;}
.h2_c00134{height:2.764500pt;}
.h5_c00134{height:4.799479pt;}
.h7_c00134{height:5.519401pt;}
.h3_c00134{height:8.303099pt;}
.h15_c00134{height:11.038802pt;}
.h6_c00134{height:13.822500pt;}
.h19_c00134{height:16.606198pt;}
.h18_c00134{height:19.341901pt;}
.hf_c00134{height:22.125599pt;}
.h1b_c00134{height:24.861302pt;}
.h4_c00134{height:27.645000pt;}
.h1a_c00134{height:30.428698pt;}
.h16_c00134{height:33.164401pt;}
.h24_c00134{height:35.948099pt;}
.h21_c00134{height:38.683802pt;}
.h17_c00134{height:41.467500pt;}
.h25_c00134{height:44.251198pt;}
.h22_c00134{height:46.986901pt;}
.h1c_c00134{height:49.770599pt;}
.hd_c00134{height:52.506302pt;}
.hc_c00134{height:55.290000pt;}
.hb_c00134{height:58.073698pt;}
.he_c00134{height:60.809401pt;}
.h26_c00134{height:63.593099pt;}
.ha_c00134{height:66.328802pt;}
.h9_c00134{height:69.112500pt;}
.h8_c00134{height:71.896198pt;}
.h1f_c00134{height:74.631901pt;}
.h1e_c00134{height:77.415599pt;}
.h1d_c00134{height:80.151302pt;}
.h14_c00134{height:82.935000pt;}
.h13_c00134{height:85.718698pt;}
.h12_c00134{height:88.454401pt;}
.h27_c00134{height:91.238099pt;}
.h20_c00134{height:93.973802pt;}
.h11_c00134{height:96.757500pt;}
.h23_c00134{height:99.541198pt;}
.h28_c00134{height:102.276901pt;}
.h10_c00134{height:118.883099pt;}
.h0_c00134{height:1348.613333pt;}
.h1_c00134{height:1348.666667pt;}
.w0_c00134{width:969.213333pt;}
.w1_c00134{width:969.333333pt;}
.x0_c00134{left:0.000000pt;}
.xeb_c00134{left:165.893333pt;}
.xc8_c00134{left:174.333333pt;}
.xc4_c00134{left:175.866667pt;}
.xcd_c00134{left:179.706667pt;}
.xef_c00134{left:181.253333pt;}
.xc9_c00134{left:182.786667pt;}
.xc5_c00134{left:184.320000pt;}
.xc0_c00134{left:187.386667pt;}
.xec_c00134{left:190.466667pt;}
.x9b_c00134{left:192.000000pt;}
.xd7_c00134{left:193.533333pt;}
.xd9_c00134{left:195.066667pt;}
.xea_c00134{left:198.146667pt;}
.xde_c00134{left:199.680000pt;}
.x6a_c00134{left:201.213333pt;}
.xb3_c00134{left:202.746667pt;}
.x8e_c00134{left:205.053333pt;}
.x55_c00134{left:207.360000pt;}
.xa_c00134{left:208.893333pt;}
.x83_c00134{left:210.426667pt;}
.x14_c00134{left:212.733333pt;}
.x8f_c00134{left:214.266667pt;}
.xa6_c00134{left:216.573333pt;}
.x6b_c00134{left:218.106667pt;}
.x71_c00134{left:220.413333pt;}
.x3c_c00134{left:224.253333pt;}
.x78_c00134{left:226.560000pt;}
.xa7_c00134{left:230.400000pt;}
.x62_c00134{left:232.706667pt;}
.x15_c00134{left:235.013333pt;}
.xba_c00134{left:236.546667pt;}
.x9c_c00134{left:240.386667pt;}
.x90_c00134{left:242.693333pt;}
.xac_c00134{left:244.986667pt;}
.xf0_c00134{left:247.293333pt;}
.xb4_c00134{left:249.600000pt;}
.x2d_c00134{left:251.133333pt;}
.x63_c00134{left:252.666667pt;}
.x56_c00134{left:254.213333pt;}
.xda_c00134{left:256.506667pt;}
.x79_c00134{left:259.586667pt;}
.x9d_c00134{left:261.893333pt;}
.x48_c00134{left:263.426667pt;}
.x3d_c00134{left:265.733333pt;}
.xd1_c00134{left:268.026667pt;}
.x2e_c00134{left:270.333333pt;}
.x7a_c00134{left:274.173333pt;}
.xb7_c00134{left:277.253333pt;}
.x16_c00134{left:281.093333pt;}
.xad_c00134{left:284.160000pt;}
.x7b_c00134{left:285.693333pt;}
.xfe_c00134{left:288.000000pt;}
.x107_c00134{left:290.306667pt;}
.x105_c00134{left:291.840000pt;}
.x2f_c00134{left:294.906667pt;}
.x64_c00134{left:300.293333pt;}
.x20_c00134{left:303.360000pt;}
.x72_c00134{left:306.426667pt;}
.xf4_c00134{left:311.040000pt;}
.x3e_c00134{left:312.573333pt;}
.xf8_c00134{left:314.106667pt;}
.x91_c00134{left:315.653333pt;}
.x49_c00134{left:318.720000pt;}
.x57_c00134{left:321.786667pt;}
.x30_c00134{left:324.093333pt;}
.xdd_c00134{left:326.400000pt;}
.x21_c00134{left:329.466667pt;}
.xb_c00134{left:331.773333pt;}
.xdb_c00134{left:334.080000pt;}
.xa8_c00134{left:336.386667pt;}
.xb8_c00134{left:337.920000pt;}
.x7c_c00134{left:340.226667pt;}
.xe7_c00134{left:343.293333pt;}
.x7d_c00134{left:344.826667pt;}
.x17_c00134{left:347.133333pt;}
.xce_c00134{left:348.666667pt;}
.xdf_c00134{left:350.213333pt;}
.xbb_c00134{left:353.280000pt;}
.x4a_c00134{left:356.346667pt;}
.x3f_c00134{left:357.893333pt;}
.x7e_c00134{left:360.186667pt;}
.x108_c00134{left:361.733333pt;}
.x103_c00134{left:364.800000pt;}
.xae_c00134{left:367.866667pt;}
.xc6_c00134{left:369.413333pt;}
.x40_c00134{left:371.706667pt;}
.x1_c00134{left:374.013333pt;}
.x7f_c00134{left:377.093333pt;}
.x58_c00134{left:379.386667pt;}
.xc_c00134{left:381.693333pt;}
.xaf_c00134{left:389.373333pt;}
.x41_c00134{left:393.213333pt;}
.x92_c00134{left:395.520000pt;}
.xc1_c00134{left:398.586667pt;}
.x4b_c00134{left:401.666667pt;}
.xe1_c00134{left:403.200000pt;}
.xa9_c00134{left:404.733333pt;}
.x18_c00134{left:406.266667pt;}
.x4c_c00134{left:408.573333pt;}
.xb0_c00134{left:410.880000pt;}
.x31_c00134{left:413.186667pt;}
.xd_c00134{left:414.720000pt;}
.xb5_c00134{left:417.026667pt;}
.x19_c00134{left:420.093333pt;}
.x32_c00134{left:421.626667pt;}
.x22_c00134{left:423.173333pt;}
.x2_c00134{left:424.706667pt;}
.x93_c00134{left:430.853333pt;}
.x80_c00134{left:433.920000pt;}
.x23_c00134{left:437.760000pt;}
.x6c_c00134{left:440.826667pt;}
.x33_c00134{left:443.133333pt;}
.x42_c00134{left:445.440000pt;}
.xf9_c00134{left:447.746667pt;}
.x9e_c00134{left:449.280000pt;}
.x81_c00134{left:453.120000pt;}
.xe_c00134{left:454.653333pt;}
.xd2_c00134{left:456.186667pt;}
.x9f_c00134{left:457.733333pt;}
.xaa_c00134{left:460.800000pt;}
.x53_c00134{left:462.333333pt;}
.xca_c00134{left:463.866667pt;}
.xfb_c00134{left:465.413333pt;}
.x43_c00134{left:468.480000pt;}
.xf5_c00134{left:470.786667pt;}
.xff_c00134{left:473.853333pt;}
.x4d_c00134{left:475.386667pt;}
.xe3_c00134{left:476.933333pt;}
.xf_c00134{left:479.226667pt;}
.x73_c00134{left:481.533333pt;}
.x59_c00134{left:483.066667pt;}
.xf3_c00134{left:484.613333pt;}
.xe8_c00134{left:486.146667pt;}
.x24_c00134{left:488.453333pt;}
.x82_c00134{left:489.986667pt;}
.x34_c00134{left:493.053333pt;}
.xf1_c00134{left:494.586667pt;}
.xe9_c00134{left:496.893333pt;}
.x100_c00134{left:498.426667pt;}
.x74_c00134{left:500.733333pt;}
.xf6_c00134{left:507.653333pt;}
.x3_c00134{left:516.866667pt;}
.x44_c00134{left:520.706667pt;}
.xcb_c00134{left:523.013333pt;}
.x5a_c00134{left:525.306667pt;}
.xb1_c00134{left:526.853333pt;}
.x35_c00134{left:529.920000pt;}
.x4e_c00134{left:534.533333pt;}
.xfc_c00134{left:536.066667pt;}
.x10_c00134{left:537.600000pt;}
.xc2_c00134{left:540.666667pt;}
.x25_c00134{left:542.973333pt;}
.x65_c00134{left:545.280000pt;}
.xcf_c00134{left:546.813333pt;}
.x5b_c00134{left:549.120000pt;}
.xb6_c00134{left:551.426667pt;}
.xe4_c00134{left:553.733333pt;}
.x26_c00134{left:555.266667pt;}
.xab_c00134{left:559.106667pt;}
.xa0_c00134{left:560.640000pt;}
.x5c_c00134{left:562.946667pt;}
.x75_c00134{left:564.480000pt;}
.x84_c00134{left:566.013333pt;}
.x1a_c00134{left:568.320000pt;}
.x11_c00134{left:570.626667pt;}
.x45_c00134{left:572.160000pt;}
.xa1_c00134{left:574.466667pt;}
.x101_c00134{left:576.773333pt;}
.x27_c00134{left:579.066667pt;}
.xd8_c00134{left:581.373333pt;}
.x36_c00134{left:583.680000pt;}
.x46_c00134{left:585.213333pt;}
.x54_c00134{left:586.746667pt;}
.x76_c00134{left:589.053333pt;}
.x1b_c00134{left:592.133333pt;}
.x106_c00134{left:593.666667pt;}
.xed_c00134{left:595.973333pt;}
.x4f_c00134{left:597.506667pt;}
.x6d_c00134{left:602.880000pt;}
.x85_c00134{left:605.186667pt;}
.x12_c00134{left:607.493333pt;}
.x5d_c00134{left:609.026667pt;}
.x37_c00134{left:612.866667pt;}
.xe2_c00134{left:615.173333pt;}
.x38_c00134{left:618.240000pt;}
.xa2_c00134{left:619.773333pt;}
.xd3_c00134{left:623.613333pt;}
.x86_c00134{left:625.920000pt;}
.x28_c00134{left:627.453333pt;}
.x50_c00134{left:629.760000pt;}
.xfa_c00134{left:631.293333pt;}
.x94_c00134{left:633.600000pt;}
.x5e_c00134{left:635.133333pt;}
.x39_c00134{left:637.440000pt;}
.x29_c00134{left:638.973333pt;}
.x4_c00134{left:640.506667pt;}
.x87_c00134{left:642.053333pt;}
.x66_c00134{left:644.346667pt;}
.x51_c00134{left:645.893333pt;}
.x3a_c00134{left:648.960000pt;}
.xf2_c00134{left:651.266667pt;}
.xfd_c00134{left:652.800000pt;}
.x3b_c00134{left:655.106667pt;}
.x5_c00134{left:657.413333pt;}
.x88_c00134{left:658.946667pt;}
.x67_c00134{left:662.013333pt;}
.xe5_c00134{left:663.546667pt;}
.xa3_c00134{left:665.853333pt;}
.x52_c00134{left:668.160000pt;}
.x2a_c00134{left:672.000000pt;}
.x89_c00134{left:675.066667pt;}
.xa4_c00134{left:676.613333pt;}
.x1c_c00134{left:678.146667pt;}
.xd0_c00134{left:679.680000pt;}
.x5f_c00134{left:681.213333pt;}
.xb9_c00134{left:684.293333pt;}
.x2b_c00134{left:687.360000pt;}
.xc7_c00134{left:691.200000pt;}
.xcc_c00134{left:692.733333pt;}
.x1d_c00134{left:695.040000pt;}
.xf7_c00134{left:696.573333pt;}
.x8a_c00134{left:699.653333pt;}
.xb2_c00134{left:701.186667pt;}
.xa5_c00134{left:702.720000pt;}
.x47_c00134{left:704.253333pt;}
.xd4_c00134{left:706.560000pt;}
.xee_c00134{left:708.866667pt;}
.x6e_c00134{left:711.173333pt;}
.xbc_c00134{left:713.466667pt;}
.x8b_c00134{left:715.013333pt;}
.x77_c00134{left:716.546667pt;}
.x68_c00134{left:718.080000pt;}
.x95_c00134{left:719.613333pt;}
.xc3_c00134{left:721.146667pt;}
.xbd_c00134{left:723.453333pt;}
.x104_c00134{left:724.986667pt;}
.x6_c00134{left:726.533333pt;}
.x6f_c00134{left:729.600000pt;}
.xe6_c00134{left:731.133333pt;}
.xdc_c00134{left:733.440000pt;}
.x60_c00134{left:736.506667pt;}
.x7_c00134{left:738.053333pt;}
.x8c_c00134{left:741.120000pt;}
.x8_c00134{left:743.426667pt;}
.x13_c00134{left:745.733333pt;}
.x9_c00134{left:748.026667pt;}
.x109_c00134{left:751.866667pt;}
.x8d_c00134{left:753.413333pt;}
.x1e_c00134{left:756.480000pt;}
.x69_c00134{left:759.546667pt;}
.x96_c00134{left:762.626667pt;}
.x61_c00134{left:768.773333pt;}
.x70_c00134{left:771.066667pt;}
.x102_c00134{left:774.906667pt;}
.x2c_c00134{left:777.986667pt;}
.xe0_c00134{left:780.293333pt;}
.xd5_c00134{left:781.826667pt;}
.xbe_c00134{left:784.133333pt;}
.x97_c00134{left:787.973333pt;}
.x1f_c00134{left:790.266667pt;}
.x98_c00134{left:802.560000pt;}
.xbf_c00134{left:804.866667pt;}
.xd6_c00134{left:808.706667pt;}
.x99_c00134{left:810.240000pt;}
.x9a_c00134{left:817.920000pt;}
.x10c_c00134{left:833.280000pt;}
.x10d_c00134{left:844.800000pt;}
.x10b_c00134{left:898.560000pt;}
.x10a_c00134{left:902.400000pt;}
.x10e_c00134{left:924.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8b1be3a714e0ed70500b7a06.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.109863;font-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_c00135{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m41_c00135{transform:matrix(0.019225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019225,0.000000,0.000000,0.250000,0,0);}
.m3d_c00135{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);}
.m1_c00135{transform:matrix(0.073025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073025,0.000000,0.000000,0.250000,0,0);}
.m3_c00135{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00135{transform:matrix(0.115450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115450,0.000000,0.000000,0.250000,0,0);}
.m0_c00135{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.m25_c00135{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m18_c00135{transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);}
.m2c_c00135{transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);}
.m15_c00135{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m26_c00135{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00135{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);}
.md_c00135{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);}
.m28_c00135{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);}
.m1b_c00135{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m43_c00135{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m23_c00135{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.m14_c00135{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00135{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.m38_c00135{transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);}
.m3c_c00135{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.m24_c00135{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m39_c00135{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.m32_c00135{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m13_c00135{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);}
.m6_c00135{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mb_c00135{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);}
.m1d_c00135{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m1a_c00135{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);}
.m4a_c00135{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m37_c00135{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);}
.m11_c00135{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);}
.ma_c00135{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);}
.m20_c00135{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m19_c00135{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);}
.m42_c00135{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);}
.m22_c00135{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);}
.m48_c00135{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.mf_c00135{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);}
.m1c_c00135{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);}
.m10_c00135{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);}
.m45_c00135{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00135{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);}
.m7_c00135{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m36_c00135{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);}
.m12_c00135{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m35_c00135{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00135{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00135{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c00135{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m49_c00135{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);}
.m21_c00135{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m47_c00135{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c00135{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);}
.m46_c00135{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);}
.m8_c00135{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m33_c00135{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00135{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m5_c00135{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00135{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m34_c00135{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m30_c00135{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);}
.m4_c00135{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m16_c00135{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00135{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.mc_c00135{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m44_c00135{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00135{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m31_c00135{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00135{transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);}
.m17_c00135{transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);}
.m40_c00135{transform:matrix(1.180000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.180000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.180000,0.000000,0.000000,0.250000,0,0);}
.m29_c00135{transform:matrix(1.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.455000,0.000000,0.000000,0.250000,0,0);}
.m27_c00135{transform:matrix(2.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.777500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00135{transform:matrix(4.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.357500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00135{transform:matrix(11.945000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(11.945000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(11.945000,0.000000,0.000000,0.250000,0,0);}
.v0_c00135{vertical-align:0.000000px;}
.v1_c00135{vertical-align:3.420000px;}
.ls1_c00135{letter-spacing:0.000000px;}
.ls0_c00135{letter-spacing:64.523280px;}
.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;}
}
.ws1_c00135{word-spacing:0.000000px;}
.ws0_c00135{word-spacing:548.749728px;}
.fc0_c00135{color:transparent;}
.fs1a_c00135{font-size:3.456000px;}
.fs12_c00135{font-size:6.000000px;}
.fs6_c00135{font-size:6.900000px;}
.fs4_c00135{font-size:10.380000px;}
.fs0_c00135{font-size:13.800000px;}
.fs3_c00135{font-size:17.280000px;}
.fs1b_c00135{font-size:20.760000px;}
.fs1_c00135{font-size:24.180000px;}
.fs1c_c00135{font-size:27.660000px;}
.fs19_c00135{font-size:31.080000px;}
.fs2_c00135{font-size:34.560000px;}
.fs21_c00135{font-size:38.040000px;}
.fs22_c00135{font-size:41.460000px;}
.fs5_c00135{font-size:44.940000px;}
.fsd_c00135{font-size:48.360000px;}
.fs14_c00135{font-size:55.320000px;}
.fs16_c00135{font-size:58.740000px;}
.fsa_c00135{font-size:62.220000px;}
.fs11_c00135{font-size:65.640000px;}
.fsc_c00135{font-size:69.120000px;}
.fsb_c00135{font-size:72.600000px;}
.fs8_c00135{font-size:76.020000px;}
.fs15_c00135{font-size:79.500000px;}
.fs1d_c00135{font-size:82.920000px;}
.fs9_c00135{font-size:86.400000px;}
.fs10_c00135{font-size:89.880000px;}
.fsf_c00135{font-size:93.300000px;}
.fs1e_c00135{font-size:96.780000px;}
.fs1f_c00135{font-size:100.200000px;}
.fs13_c00135{font-size:103.680000px;}
.fse_c00135{font-size:107.160000px;}
.fs17_c00135{font-size:117.480000px;}
.fs7_c00135{font-size:120.960000px;}
.fs18_c00135{font-size:124.440000px;}
.fs20_c00135{font-size:148.620000px;}
.y0_c00135{bottom:0.000000px;}
.y4a_c00135{bottom:1201.830000px;}
.y4c_c00135{bottom:1203.555000px;}
.y49_c00135{bottom:1205.280000px;}
.y4b_c00135{bottom:1207.005000px;}
.y3b_c00135{bottom:1221.690000px;}
.y3c_c00135{bottom:1222.560000px;}
.y3e_c00135{bottom:1223.430000px;}
.y42_c00135{bottom:1224.285000px;}
.y47_c00135{bottom:1225.155000px;}
.y44_c00135{bottom:1226.010000px;}
.y46_c00135{bottom:1226.880000px;}
.y3f_c00135{bottom:1228.605000px;}
.y43_c00135{bottom:1229.475000px;}
.y41_c00135{bottom:1230.330000px;}
.y45_c00135{bottom:1232.070000px;}
.y48_c00135{bottom:1236.390000px;}
.y40_c00135{bottom:1237.245000px;}
.y3d_c00135{bottom:1238.970000px;}
.y3a_c00135{bottom:1245.030000px;}
.y38_c00135{bottom:1245.885000px;}
.y39_c00135{bottom:1246.755000px;}
.y37_c00135{bottom:1248.480000px;}
.y36_c00135{bottom:1252.800000px;}
.y35_c00135{bottom:1282.170000px;}
.y34_c00135{bottom:1283.910000px;}
.y33_c00135{bottom:1290.810000px;}
.y32_c00135{bottom:1293.405000px;}
.y31_c00135{bottom:1295.130000px;}
.y30_c00135{bottom:1300.320000px;}
.y2e_c00135{bottom:1304.640000px;}
.y25_c00135{bottom:1313.280000px;}
.y23_c00135{bottom:1318.470000px;}
.y2c_c00135{bottom:1319.325000px;}
.y2d_c00135{bottom:1320.195000px;}
.y2b_c00135{bottom:1321.050000px;}
.y24_c00135{bottom:1321.920000px;}
.y27_c00135{bottom:1322.790000px;}
.y22_c00135{bottom:1323.645000px;}
.y28_c00135{bottom:1324.515000px;}
.y26_c00135{bottom:1327.965000px;}
.y29_c00135{bottom:1328.835000px;}
.y2a_c00135{bottom:1331.430000px;}
.y21_c00135{bottom:1335.750000px;}
.y1e_c00135{bottom:1336.605000px;}
.y20_c00135{bottom:1337.475000px;}
.y1f_c00135{bottom:1338.330000px;}
.y1d_c00135{bottom:1340.070000px;}
.y1a_c00135{bottom:1340.925000px;}
.y1b_c00135{bottom:1341.795000px;}
.y15_c00135{bottom:1343.520000px;}
.y18_c00135{bottom:1345.245000px;}
.y17_c00135{bottom:1347.840000px;}
.y1c_c00135{bottom:1349.565000px;}
.y14_c00135{bottom:1350.435000px;}
.y19_c00135{bottom:1351.290000px;}
.y16_c00135{bottom:1352.160000px;}
.y2f_c00135{bottom:1353.030000px;}
.y2_c00135{bottom:1365.120000px;}
.y1_c00135{bottom:1369.440000px;}
.y10_c00135{bottom:1374.630000px;}
.y12_c00135{bottom:1376.355000px;}
.y11_c00135{bottom:1377.210000px;}
.ya_c00135{bottom:1378.080000px;}
.y9_c00135{bottom:1378.950000px;}
.yb_c00135{bottom:1380.675000px;}
.yf_c00135{bottom:1381.530000px;}
.yd_c00135{bottom:1383.270000px;}
.ye_c00135{bottom:1384.125000px;}
.yc_c00135{bottom:1389.315000px;}
.y13_c00135{bottom:1397.955000px;}
.y7_c00135{bottom:1406.595000px;}
.y6_c00135{bottom:1407.450000px;}
.y5_c00135{bottom:1408.320000px;}
.y3_c00135{bottom:1409.190000px;}
.y4_c00135{bottom:1410.045000px;}
.y8_c00135{bottom:1410.915000px;}
.h1c_c00135{height:3.110063px;}
.h14_c00135{height:5.399414px;}
.h8_c00135{height:6.209326px;}
.h6_c00135{height:9.340986px;}
.h2_c00135{height:12.418652px;}
.h5_c00135{height:15.550313px;}
.h1d_c00135{height:18.681973px;}
.h3_c00135{height:21.759639px;}
.h1e_c00135{height:24.891299px;}
.h1b_c00135{height:27.968965px;}
.h4_c00135{height:31.100625px;}
.h23_c00135{height:34.232285px;}
.h24_c00135{height:37.309951px;}
.h7_c00135{height:40.441611px;}
.hf_c00135{height:43.519277px;}
.h16_c00135{height:49.782598px;}
.h18_c00135{height:52.860264px;}
.hc_c00135{height:55.991924px;}
.h13_c00135{height:59.069590px;}
.he_c00135{height:62.201250px;}
.hd_c00135{height:65.332910px;}
.ha_c00135{height:68.410576px;}
.h17_c00135{height:71.542236px;}
.h1f_c00135{height:74.619902px;}
.hb_c00135{height:77.751563px;}
.h12_c00135{height:80.883223px;}
.h11_c00135{height:83.960889px;}
.h20_c00135{height:87.092549px;}
.h21_c00135{height:90.170215px;}
.h15_c00135{height:93.301875px;}
.h10_c00135{height:96.433535px;}
.h19_c00135{height:105.720527px;}
.h9_c00135{height:108.852188px;}
.h1a_c00135{height:111.983848px;}
.h22_c00135{height:133.743486px;}
.h1_c00135{height:1503.000000px;}
.h0_c00135{height:1503.360000px;}
.w0_c00135{width:1088.640000px;}
.w1_c00135{width:1089.000000px;}
.x0_c00135{left:0.000000px;}
.x1_c00135{left:55.290000px;}
.x2_c00135{left:57.885000px;}
.x1d_c00135{left:224.640000px;}
.x2c_c00135{left:234.150000px;}
.x35_c00135{left:241.920000px;}
.x4c_c00135{left:246.240000px;}
.x36_c00135{left:250.560000px;}
.x1e_c00135{left:252.285000px;}
.x2d_c00135{left:260.070000px;}
.x4d_c00135{left:268.710000px;}
.x4f_c00135{left:270.435000px;}
.x1f_c00135{left:272.160000px;}
.x50_c00135{left:276.480000px;}
.x47_c00135{left:285.120030px;}
.xa_c00135{left:289.440000px;}
.x51_c00135{left:291.165000px;}
.x37_c00135{left:297.210000px;}
.x38_c00135{left:306.720000px;}
.x52_c00135{left:312.765000px;}
.x2e_c00135{left:329.190000px;}
.x48_c00135{left:337.830000px;}
.x3_c00135{left:360.285000px;}
.x20_c00135{left:375.840000px;}
.x2f_c00135{left:384.480000px;}
.xb_c00135{left:387.930000px;}
.x30_c00135{left:396.570000px;}
.x41_c00135{left:400.035000px;}
.x39_c00135{left:410.400000px;}
.x42_c00135{left:418.170000px;}
.x43_c00135{left:428.550000px;}
.x21_c00135{left:430.275000px;}
.xc_c00135{left:441.510000px;}
.x22_c00135{left:453.600000px;}
.xd_c00135{left:463.965000px;}
.x53_c00135{left:470.880000px;}
.x54_c00135{left:481.245000px;}
.xe_c00135{left:484.710000px;}
.x55_c00135{left:504.570000px;}
.xf_c00135{left:507.165000px;}
.x4_c00135{left:510.630000px;}
.x56_c00135{left:515.805000px;}
.x3a_c00135{left:521.850000px;}
.x31_c00135{left:529.635000px;}
.x10_c00135{left:531.360000px;}
.x57_c00135{left:540.000000px;}
.x49_c00135{left:541.725000px;}
.x11_c00135{left:551.235000px;}
.x58_c00135{left:554.685000px;}
.x23_c00135{left:558.150000px;}
.x44_c00135{left:571.965000px;}
.x4e_c00135{left:575.430000px;}
.x12_c00135{left:580.605000px;}
.x45_c00135{left:583.200000px;}
.x24_c00135{left:590.115000px;}
.x13_c00135{left:597.885000px;}
.x59_c00135{left:602.205000px;}
.x25_c00135{left:618.630000px;}
.x14_c00135{left:621.210000px;}
.x46_c00135{left:631.590000px;}
.x5a_c00135{left:637.635000px;}
.x15_c00135{left:648.000000px;}
.x4a_c00135{left:653.190000px;}
.x26_c00135{left:654.915000px;}
.x5b_c00135{left:660.960000px;}
.x5f_c00135{left:667.005000px;}
.x3b_c00135{left:669.600000px;}
.x60_c00135{left:672.195000px;}
.x27_c00135{left:674.790000px;}
.x32_c00135{left:677.370000px;}
.x61_c00135{left:680.835000px;}
.x16_c00135{left:689.475000px;}
.x62_c00135{left:692.925000px;}
.x28_c00135{left:698.115000px;}
.x5c_c00135{left:704.160000px;}
.x63_c00135{left:705.885000px;}
.x5d_c00135{left:724.890000px;}
.x3f_c00135{left:738.720000px;}
.x17_c00135{left:745.635000px;}
.x33_c00135{left:759.450000px;}
.x5e_c00135{left:764.640000px;}
.x3c_c00135{left:766.365000px;}
.x18_c00135{left:775.875000px;}
.x3d_c00135{left:781.920000px;}
.x29_c00135{left:787.110000px;}
.x19_c00135{left:789.690000px;}
.x1a_c00135{left:801.795000px;}
.x5_c00135{left:808.710000px;}
.x6_c00135{left:819.930000px;}
.x7_c00135{left:829.440000px;}
.x3e_c00135{left:838.080000px;}
.x8_c00135{left:843.270000px;}
.x2a_c00135{left:849.315000px;}
.x9_c00135{left:854.490000px;}
.x1b_c00135{left:864.870000px;}
.x4b_c00135{left:869.190000px;}
.x1c_c00135{left:871.770000px;}
.x34_c00135{left:889.920000px;}
.x2b_c00135{left:894.240000px;}
.x40_c00135{left:967.680000px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.v1_c00135{vertical-align:3.040000pt;}
.ls1_c00135{letter-spacing:0.000000pt;}
.ls0_c00135{letter-spacing:57.354027pt;}
.ws1_c00135{word-spacing:0.000000pt;}
.ws0_c00135{word-spacing:487.777536pt;}
.fs1a_c00135{font-size:3.072000pt;}
.fs12_c00135{font-size:5.333333pt;}
.fs6_c00135{font-size:6.133333pt;}
.fs4_c00135{font-size:9.226667pt;}
.fs0_c00135{font-size:12.266667pt;}
.fs3_c00135{font-size:15.360000pt;}
.fs1b_c00135{font-size:18.453333pt;}
.fs1_c00135{font-size:21.493333pt;}
.fs1c_c00135{font-size:24.586667pt;}
.fs19_c00135{font-size:27.626667pt;}
.fs2_c00135{font-size:30.720000pt;}
.fs21_c00135{font-size:33.813333pt;}
.fs22_c00135{font-size:36.853333pt;}
.fs5_c00135{font-size:39.946667pt;}
.fsd_c00135{font-size:42.986667pt;}
.fs14_c00135{font-size:49.173333pt;}
.fs16_c00135{font-size:52.213333pt;}
.fsa_c00135{font-size:55.306667pt;}
.fs11_c00135{font-size:58.346667pt;}
.fsc_c00135{font-size:61.440000pt;}
.fsb_c00135{font-size:64.533333pt;}
.fs8_c00135{font-size:67.573333pt;}
.fs15_c00135{font-size:70.666667pt;}
.fs1d_c00135{font-size:73.706667pt;}
.fs9_c00135{font-size:76.800000pt;}
.fs10_c00135{font-size:79.893333pt;}
.fsf_c00135{font-size:82.933333pt;}
.fs1e_c00135{font-size:86.026667pt;}
.fs1f_c00135{font-size:89.066667pt;}
.fs13_c00135{font-size:92.160000pt;}
.fse_c00135{font-size:95.253333pt;}
.fs17_c00135{font-size:104.426667pt;}
.fs7_c00135{font-size:107.520000pt;}
.fs18_c00135{font-size:110.613333pt;}
.fs20_c00135{font-size:132.106667pt;}
.y0_c00135{bottom:0.000000pt;}
.y4a_c00135{bottom:1068.293333pt;}
.y4c_c00135{bottom:1069.826667pt;}
.y49_c00135{bottom:1071.360000pt;}
.y4b_c00135{bottom:1072.893333pt;}
.y3b_c00135{bottom:1085.946667pt;}
.y3c_c00135{bottom:1086.720000pt;}
.y3e_c00135{bottom:1087.493333pt;}
.y42_c00135{bottom:1088.253333pt;}
.y47_c00135{bottom:1089.026667pt;}
.y44_c00135{bottom:1089.786667pt;}
.y46_c00135{bottom:1090.560000pt;}
.y3f_c00135{bottom:1092.093333pt;}
.y43_c00135{bottom:1092.866667pt;}
.y41_c00135{bottom:1093.626667pt;}
.y45_c00135{bottom:1095.173333pt;}
.y48_c00135{bottom:1099.013333pt;}
.y40_c00135{bottom:1099.773333pt;}
.y3d_c00135{bottom:1101.306667pt;}
.y3a_c00135{bottom:1106.693333pt;}
.y38_c00135{bottom:1107.453333pt;}
.y39_c00135{bottom:1108.226667pt;}
.y37_c00135{bottom:1109.760000pt;}
.y36_c00135{bottom:1113.600000pt;}
.y35_c00135{bottom:1139.706667pt;}
.y34_c00135{bottom:1141.253333pt;}
.y33_c00135{bottom:1147.386667pt;}
.y32_c00135{bottom:1149.693333pt;}
.y31_c00135{bottom:1151.226667pt;}
.y30_c00135{bottom:1155.840000pt;}
.y2e_c00135{bottom:1159.680000pt;}
.y25_c00135{bottom:1167.360000pt;}
.y23_c00135{bottom:1171.973333pt;}
.y2c_c00135{bottom:1172.733333pt;}
.y2d_c00135{bottom:1173.506667pt;}
.y2b_c00135{bottom:1174.266667pt;}
.y24_c00135{bottom:1175.040000pt;}
.y27_c00135{bottom:1175.813333pt;}
.y22_c00135{bottom:1176.573333pt;}
.y28_c00135{bottom:1177.346667pt;}
.y26_c00135{bottom:1180.413333pt;}
.y29_c00135{bottom:1181.186667pt;}
.y2a_c00135{bottom:1183.493333pt;}
.y21_c00135{bottom:1187.333333pt;}
.y1e_c00135{bottom:1188.093333pt;}
.y20_c00135{bottom:1188.866667pt;}
.y1f_c00135{bottom:1189.626667pt;}
.y1d_c00135{bottom:1191.173333pt;}
.y1a_c00135{bottom:1191.933333pt;}
.y1b_c00135{bottom:1192.706667pt;}
.y15_c00135{bottom:1194.240000pt;}
.y18_c00135{bottom:1195.773333pt;}
.y17_c00135{bottom:1198.080000pt;}
.y1c_c00135{bottom:1199.613333pt;}
.y14_c00135{bottom:1200.386667pt;}
.y19_c00135{bottom:1201.146667pt;}
.y16_c00135{bottom:1201.920000pt;}
.y2f_c00135{bottom:1202.693333pt;}
.y2_c00135{bottom:1213.440000pt;}
.y1_c00135{bottom:1217.280000pt;}
.y10_c00135{bottom:1221.893333pt;}
.y12_c00135{bottom:1223.426667pt;}
.y11_c00135{bottom:1224.186667pt;}
.ya_c00135{bottom:1224.960000pt;}
.y9_c00135{bottom:1225.733333pt;}
.yb_c00135{bottom:1227.266667pt;}
.yf_c00135{bottom:1228.026667pt;}
.yd_c00135{bottom:1229.573333pt;}
.ye_c00135{bottom:1230.333333pt;}
.yc_c00135{bottom:1234.946667pt;}
.y13_c00135{bottom:1242.626667pt;}
.y7_c00135{bottom:1250.306667pt;}
.y6_c00135{bottom:1251.066667pt;}
.y5_c00135{bottom:1251.840000pt;}
.y3_c00135{bottom:1252.613333pt;}
.y4_c00135{bottom:1253.373333pt;}
.y8_c00135{bottom:1254.146667pt;}
.h1c_c00135{height:2.764500pt;}
.h14_c00135{height:4.799479pt;}
.h8_c00135{height:5.519401pt;}
.h6_c00135{height:8.303099pt;}
.h2_c00135{height:11.038802pt;}
.h5_c00135{height:13.822500pt;}
.h1d_c00135{height:16.606198pt;}
.h3_c00135{height:19.341901pt;}
.h1e_c00135{height:22.125599pt;}
.h1b_c00135{height:24.861302pt;}
.h4_c00135{height:27.645000pt;}
.h23_c00135{height:30.428698pt;}
.h24_c00135{height:33.164401pt;}
.h7_c00135{height:35.948099pt;}
.hf_c00135{height:38.683802pt;}
.h16_c00135{height:44.251198pt;}
.h18_c00135{height:46.986901pt;}
.hc_c00135{height:49.770599pt;}
.h13_c00135{height:52.506302pt;}
.he_c00135{height:55.290000pt;}
.hd_c00135{height:58.073698pt;}
.ha_c00135{height:60.809401pt;}
.h17_c00135{height:63.593099pt;}
.h1f_c00135{height:66.328802pt;}
.hb_c00135{height:69.112500pt;}
.h12_c00135{height:71.896198pt;}
.h11_c00135{height:74.631901pt;}
.h20_c00135{height:77.415599pt;}
.h21_c00135{height:80.151302pt;}
.h15_c00135{height:82.935000pt;}
.h10_c00135{height:85.718698pt;}
.h19_c00135{height:93.973802pt;}
.h9_c00135{height:96.757500pt;}
.h1a_c00135{height:99.541198pt;}
.h22_c00135{height:118.883099pt;}
.h1_c00135{height:1336.000000pt;}
.h0_c00135{height:1336.320000pt;}
.w0_c00135{width:967.680000pt;}
.w1_c00135{width:968.000000pt;}
.x0_c00135{left:0.000000pt;}
.x1_c00135{left:49.146667pt;}
.x2_c00135{left:51.453333pt;}
.x1d_c00135{left:199.680000pt;}
.x2c_c00135{left:208.133333pt;}
.x35_c00135{left:215.040000pt;}
.x4c_c00135{left:218.880000pt;}
.x36_c00135{left:222.720000pt;}
.x1e_c00135{left:224.253333pt;}
.x2d_c00135{left:231.173333pt;}
.x4d_c00135{left:238.853333pt;}
.x4f_c00135{left:240.386667pt;}
.x1f_c00135{left:241.920000pt;}
.x50_c00135{left:245.760000pt;}
.x47_c00135{left:253.440027pt;}
.xa_c00135{left:257.280000pt;}
.x51_c00135{left:258.813333pt;}
.x37_c00135{left:264.186667pt;}
.x38_c00135{left:272.640000pt;}
.x52_c00135{left:278.013333pt;}
.x2e_c00135{left:292.613333pt;}
.x48_c00135{left:300.293333pt;}
.x3_c00135{left:320.253333pt;}
.x20_c00135{left:334.080000pt;}
.x2f_c00135{left:341.760000pt;}
.xb_c00135{left:344.826667pt;}
.x30_c00135{left:352.506667pt;}
.x41_c00135{left:355.586667pt;}
.x39_c00135{left:364.800000pt;}
.x42_c00135{left:371.706667pt;}
.x43_c00135{left:380.933333pt;}
.x21_c00135{left:382.466667pt;}
.xc_c00135{left:392.453333pt;}
.x22_c00135{left:403.200000pt;}
.xd_c00135{left:412.413333pt;}
.x53_c00135{left:418.560000pt;}
.x54_c00135{left:427.773333pt;}
.xe_c00135{left:430.853333pt;}
.x55_c00135{left:448.506667pt;}
.xf_c00135{left:450.813333pt;}
.x4_c00135{left:453.893333pt;}
.x56_c00135{left:458.493333pt;}
.x3a_c00135{left:463.866667pt;}
.x31_c00135{left:470.786667pt;}
.x10_c00135{left:472.320000pt;}
.x57_c00135{left:480.000000pt;}
.x49_c00135{left:481.533333pt;}
.x11_c00135{left:489.986667pt;}
.x58_c00135{left:493.053333pt;}
.x23_c00135{left:496.133333pt;}
.x44_c00135{left:508.413333pt;}
.x4e_c00135{left:511.493333pt;}
.x12_c00135{left:516.093333pt;}
.x45_c00135{left:518.400000pt;}
.x24_c00135{left:524.546667pt;}
.x13_c00135{left:531.453333pt;}
.x59_c00135{left:535.293333pt;}
.x25_c00135{left:549.893333pt;}
.x14_c00135{left:552.186667pt;}
.x46_c00135{left:561.413333pt;}
.x5a_c00135{left:566.786667pt;}
.x15_c00135{left:576.000000pt;}
.x4a_c00135{left:580.613333pt;}
.x26_c00135{left:582.146667pt;}
.x5b_c00135{left:587.520000pt;}
.x5f_c00135{left:592.893333pt;}
.x3b_c00135{left:595.200000pt;}
.x60_c00135{left:597.506667pt;}
.x27_c00135{left:599.813333pt;}
.x32_c00135{left:602.106667pt;}
.x61_c00135{left:605.186667pt;}
.x16_c00135{left:612.866667pt;}
.x62_c00135{left:615.933333pt;}
.x28_c00135{left:620.546667pt;}
.x5c_c00135{left:625.920000pt;}
.x63_c00135{left:627.453333pt;}
.x5d_c00135{left:644.346667pt;}
.x3f_c00135{left:656.640000pt;}
.x17_c00135{left:662.786667pt;}
.x33_c00135{left:675.066667pt;}
.x5e_c00135{left:679.680000pt;}
.x3c_c00135{left:681.213333pt;}
.x18_c00135{left:689.666667pt;}
.x3d_c00135{left:695.040000pt;}
.x29_c00135{left:699.653333pt;}
.x19_c00135{left:701.946667pt;}
.x1a_c00135{left:712.706667pt;}
.x5_c00135{left:718.853333pt;}
.x6_c00135{left:728.826667pt;}
.x7_c00135{left:737.280000pt;}
.x3e_c00135{left:744.960000pt;}
.x8_c00135{left:749.573333pt;}
.x2a_c00135{left:754.946667pt;}
.x9_c00135{left:759.546667pt;}
.x1b_c00135{left:768.773333pt;}
.x4b_c00135{left:772.613333pt;}
.x1c_c00135{left:774.906667pt;}
.x34_c00135{left:791.040000pt;}
.x2b_c00135{left:794.880000pt;}
.x40_c00135{left:860.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_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;}
@font-face{font-family:ff1_c00136;src:url('chunks/assets/font_22bf47e0a8ff19f456434a75.woff2')format("woff");}.ff1_c00136{font-family:ff1_c00136;line-height:1.109863;font-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_c00136{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.md3_c00136{transform:matrix(0.048075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048075,0.000000,0.000000,0.250000,0,0);}
.mb0_c00136{transform:matrix(0.065525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065525,0.000000,0.000000,0.250000,0,0);}
.ma8_c00136{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m15_c00136{transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);}
.m141_c00136{transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);}
.m121_c00136{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m124_c00136{transform:matrix(0.088325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088325,0.000000,0.000000,0.250000,0,0);}
.m13a_c00136{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m150_c00136{transform:matrix(0.095950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095950,0.000000,0.000000,0.250000,0,0);}
.m14e_c00136{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m51_c00136{transform:matrix(0.101000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00136{transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);}
.maa_c00136{transform:matrix(0.105875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105875,0.000000,0.000000,0.250000,0,0);}
.m123_c00136{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m106_c00136{transform:matrix(0.109175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109175,0.000000,0.000000,0.250000,0,0);}
.m93_c00136{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00136{transform:matrix(0.110475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110475,0.000000,0.000000,0.250000,0,0);}
.m8a_c00136{transform:matrix(0.113825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113825,0.000000,0.000000,0.250000,0,0);}
.m142_c00136{transform:matrix(0.114625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114625,0.000000,0.000000,0.250000,0,0);}
.m109_c00136{transform:matrix(0.119225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119225,0.000000,0.000000,0.250000,0,0);}
.m169_c00136{transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);}
.m144_c00136{transform:matrix(0.121325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121325,0.000000,0.000000,0.250000,0,0);}
.m9f_c00136{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00136{transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);}
.m10b_c00136{transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);}
.m82_c00136{transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);}
.m107_c00136{transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);}
.m58_c00136{transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);}
.m135_c00136{transform:matrix(0.127075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127075,0.000000,0.000000,0.250000,0,0);}
.m145_c00136{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);}
.mfa_c00136{transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);}
.me7_c00136{transform:matrix(0.130550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130550,0.000000,0.000000,0.250000,0,0);}
.mae_c00136{transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);}
.m11f_c00136{transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);}
.mda_c00136{transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);}
.m1e_c00136{transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);}
.m7b_c00136{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00136{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.mdf_c00136{transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);}
.m13c_c00136{transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);}
.m54_c00136{transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);}
.mab_c00136{transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);}
.mf2_c00136{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00136{transform:matrix(0.138300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138300,0.000000,0.000000,0.250000,0,0);}
.md8_c00136{transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);}
.m7c_c00136{transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);}
.m20_c00136{transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);}
.m9a_c00136{transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);}
.mea_c00136{transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);}
.m99_c00136{transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);}
.m17_c00136{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);}
.md9_c00136{transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);}
.m5b_c00136{transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);}
.mbc_c00136{transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);}
.m3_c00136{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00136{transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);}
.maf_c00136{transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);}
.mc8_c00136{transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);}
.m131_c00136{transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);}
.ma0_c00136{transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);}
.m2c_c00136{transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);}
.mb9_c00136{transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);}
.m13e_c00136{transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);}
.m13b_c00136{transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);}
.m97_c00136{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m57_c00136{transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);}
.m15c_c00136{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);}
.m128_c00136{transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);}
.md6_c00136{transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);}
.md7_c00136{transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);}
.m13f_c00136{transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);}
.m81_c00136{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m8d_c00136{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m46_c00136{transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);}
.m12a_c00136{transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);}
.m60_c00136{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m137_c00136{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);}
.m129_c00136{transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);}
.md0_c00136{transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);}
.ma6_c00136{transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);}
.meb_c00136{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);}
.mf7_c00136{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.mb8_c00136{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m69_c00136{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.mb4_c00136{transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);}
.mac_c00136{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.m166_c00136{transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);}
.m41_c00136{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.md1_c00136{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);}
.mcd_c00136{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.m83_c00136{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m79_c00136{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);}
.m103_c00136{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.m63_c00136{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);}
.m2f_c00136{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);}
.me6_c00136{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m3d_c00136{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m7a_c00136{transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);}
.m5e_c00136{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m167_c00136{transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);}
.m10e_c00136{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.mdb_c00136{transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);}
.mce_c00136{transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);}
.m10a_c00136{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m61_c00136{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.m76_c00136{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.m89_c00136{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.m49_c00136{transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);}
.m15e_c00136{transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);}
.m11d_c00136{transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);}
.m15d_c00136{transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);}
.m64_c00136{transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);}
.mcb_c00136{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);}
.m6c_c00136{transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);}
.m95_c00136{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m163_c00136{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_c00136{transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);}
.m66_c00136{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.m143_c00136{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m6f_c00136{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);}
.m44_c00136{transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);}
.m14d_c00136{transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);}
.ma3_c00136{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.m38_c00136{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00136{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.mb1_c00136{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m148_c00136{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.mff_c00136{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m114_c00136{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m104_c00136{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);}
.m26_c00136{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.me2_c00136{transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);}
.md5_c00136{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m34_c00136{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.me4_c00136{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m5f_c00136{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3f_c00136{transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);}
.m4b_c00136{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.mc1_c00136{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);}
.m42_c00136{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m102_c00136{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m140_c00136{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.m1b_c00136{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m153_c00136{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);}
.m151_c00136{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.m4a_c00136{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.m119_c00136{transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);}
.m7d_c00136{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m71_c00136{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.mbe_c00136{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.m4d_c00136{transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);}
.m136_c00136{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00136{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.mdc_c00136{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.m6e_c00136{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m161_c00136{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m15a_c00136{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);}
.m96_c00136{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00136{transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);}
.mf8_c00136{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m15f_c00136{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.m116_c00136{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.m73_c00136{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m101_c00136{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);}
.m117_c00136{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m130_c00136{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.mb5_c00136{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m160_c00136{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);}
.m74_c00136{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);}
.m62_c00136{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.mfd_c00136{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m16c_c00136{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.mad_c00136{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.mc5_c00136{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);}
.m80_c00136{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.ma7_c00136{transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);}
.me9_c00136{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m14b_c00136{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);}
.m40_c00136{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.mb6_c00136{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m70_c00136{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.mc2_c00136{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.mcf_c00136{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.m45_c00136{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.m9b_c00136{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.me8_c00136{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);}
.m85_c00136{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.mc0_c00136{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.m84_c00136{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);}
.m12b_c00136{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.mc9_c00136{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.m2b_c00136{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m138_c00136{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m158_c00136{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);}
.m92_c00136{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);}
.m152_c00136{transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);}
.m132_c00136{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);}
.m146_c00136{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m98_c00136{transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);}
.mb2_c00136{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);}
.m52_c00136{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.m164_c00136{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.m5c_c00136{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);}
.m11c_c00136{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m110_c00136{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);}
.m10c_c00136{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);}
.m32_c00136{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.ma4_c00136{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.md2_c00136{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m14a_c00136{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.m14f_c00136{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);}
.ma5_c00136{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);}
.m12c_c00136{transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);}
.m168_c00136{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);}
.m94_c00136{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);}
.mb3_c00136{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);}
.m165_c00136{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.mca_c00136{transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);}
.m39_c00136{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);}
.m31_c00136{transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);}
.m5_c00136{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m16a_c00136{transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);}
.m78_c00136{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.m118_c00136{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);}
.m3b_c00136{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.m11b_c00136{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);}
.m154_c00136{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m16b_c00136{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);}
.mb_c00136{transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);}
.mfe_c00136{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.m91_c00136{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m12f_c00136{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m53_c00136{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m108_c00136{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m126_c00136{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);}
.m37_c00136{transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);}
.m9c_c00136{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.me0_c00136{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.m155_c00136{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);}
.mbf_c00136{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);}
.mb7_c00136{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);}
.m4e_c00136{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.mbd_c00136{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.mf6_c00136{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);}
.m15b_c00136{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);}
.m8b_c00136{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.mdd_c00136{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);}
.m13d_c00136{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);}
.m8f_c00136{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);}
.mf3_c00136{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);}
.m1_c00136{transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);}
.m4c_c00136{transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);}
.m159_c00136{transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);}
.m6d_c00136{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);}
.m115_c00136{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.mec_c00136{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m35_c00136{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m28_c00136{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.mfb_c00136{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);}
.m3e_c00136{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00136{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m87_c00136{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);}
.m7e_c00136{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);}
.mf0_c00136{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);}
.m72_c00136{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.m47_c00136{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);}
.me5_c00136{transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);}
.m19_c00136{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);}
.m86_c00136{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);}
.m162_c00136{transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);}
.m147_c00136{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.ma2_c00136{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);}
.m10f_c00136{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);}
.m1a_c00136{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m55_c00136{transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);}
.m7f_c00136{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.m105_c00136{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m149_c00136{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);}
.m27_c00136{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);}
.m50_c00136{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);}
.m29_c00136{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m43_c00136{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);}
.m3a_c00136{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);}
.m113_c00136{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);}
.mbb_c00136{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);}
.m157_c00136{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);}
.m75_c00136{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);}
.m10d_c00136{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m68_c00136{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);}
.mfc_c00136{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00136{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);}
.m11a_c00136{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);}
.m9_c00136{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);}
.mc_c00136{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);}
.md_c00136{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00136{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c00136{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.med_c00136{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);}
.m8_c00136{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);}
.m111_c00136{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);}
.m6a_c00136{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m30_c00136{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);}
.m0_c00136{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c00136{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m59_c00136{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);}
.mba_c00136{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14c_c00136{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);}
.m10_c00136{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);}
.m36_c00136{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00136{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c00136{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);}
.mc6_c00136{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00136{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00136{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);}
.m100_c00136{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00136{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00136{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m48_c00136{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c00136{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m21_c00136{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00136{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00136{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);}
.m33_c00136{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m133_c00136{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m56_c00136{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m65_c00136{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m122_c00136{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);}
.md4_c00136{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m156_c00136{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00136{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c00136{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);}
.m112_c00136{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m125_c00136{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);}
.me1_c00136{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m23_c00136{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);}
.m1c_c00136{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00136{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m16_c00136{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);}
.mee_c00136{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);}
.m127_c00136{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);}
.m90_c00136{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);}
.mf5_c00136{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c00136{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m88_c00136{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00136{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00136{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);}
.m9d_c00136{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m13_c00136{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m7_c00136{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mef_c00136{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00136{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mde_c00136{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);}
.m77_c00136{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);}
.m22_c00136{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00136{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00136{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4_c00136{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.me3_c00136{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00136{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.m139_c00136{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.ma_c00136{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m120_c00136{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m6_c00136{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m134_c00136{transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);}
.v1_c00136{vertical-align:-10.380000px;}
.v0_c00136{vertical-align:0.000000px;}
.v2_c00136{vertical-align:3.480000px;}
.ls1_c00136{letter-spacing:0.000000px;}
.ls0_c00136{letter-spacing:58.190700px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00136{word-spacing:-5.112960px;}
.ws1_c00136{word-spacing:0.000000px;}
.fc0_c00136{color:transparent;}
.fs0_c00136{font-size:3.456000px;}
.fs1f_c00136{font-size:6.000000px;}
.fs2_c00136{font-size:6.900000px;}
.fs3_c00136{font-size:10.380000px;}
.fs5_c00136{font-size:13.800000px;}
.fs1_c00136{font-size:17.280000px;}
.fs4_c00136{font-size:20.760000px;}
.fs16_c00136{font-size:24.180000px;}
.fs22_c00136{font-size:27.660000px;}
.fs6_c00136{font-size:31.080000px;}
.fs20_c00136{font-size:34.560000px;}
.fs25_c00136{font-size:38.040000px;}
.fse_c00136{font-size:41.460000px;}
.fs1a_c00136{font-size:44.940000px;}
.fs21_c00136{font-size:48.360000px;}
.fs17_c00136{font-size:51.840000px;}
.fs13_c00136{font-size:55.320000px;}
.fs1c_c00136{font-size:58.740000px;}
.fsf_c00136{font-size:62.220000px;}
.fsc_c00136{font-size:65.640000px;}
.fs9_c00136{font-size:69.120000px;}
.fsb_c00136{font-size:72.600000px;}
.fs7_c00136{font-size:76.020000px;}
.fs1e_c00136{font-size:79.500000px;}
.fs11_c00136{font-size:82.920000px;}
.fs8_c00136{font-size:86.400000px;}
.fsd_c00136{font-size:89.880000px;}
.fs1d_c00136{font-size:93.300000px;}
.fs19_c00136{font-size:96.780000px;}
.fsa_c00136{font-size:100.200000px;}
.fs1b_c00136{font-size:103.680000px;}
.fs18_c00136{font-size:107.160000px;}
.fs24_c00136{font-size:110.580000px;}
.fs23_c00136{font-size:114.060000px;}
.fs26_c00136{font-size:117.480000px;}
.fs12_c00136{font-size:120.960000px;}
.fs10_c00136{font-size:134.760000px;}
.fs15_c00136{font-size:141.720000px;}
.fs27_c00136{font-size:145.140000px;}
.fs14_c00136{font-size:159.000000px;}
.y0_c00136{bottom:0.000000px;}
.y144_c00136{bottom:213.405000px;}
.y13f_c00136{bottom:214.275000px;}
.y141_c00136{bottom:218.595000px;}
.y140_c00136{bottom:219.450000px;}
.y142_c00136{bottom:221.190000px;}
.y143_c00136{bottom:223.770000px;}
.y13d_c00136{bottom:242.790000px;}
.y13c_c00136{bottom:243.645000px;}
.y13a_c00136{bottom:244.515000px;}
.y13e_c00136{bottom:245.370000px;}
.y139_c00136{bottom:246.240000px;}
.y13b_c00136{bottom:251.430000px;}
.y136_c00136{bottom:267.840000px;}
.y135_c00136{bottom:270.435000px;}
.y134_c00136{bottom:272.160000px;}
.y137_c00136{bottom:275.610000px;}
.y138_c00136{bottom:282.525000px;}
.y131_c00136{bottom:293.760000px;}
.y133_c00136{bottom:294.630000px;}
.y132_c00136{bottom:300.675000px;}
.y12f_c00136{bottom:318.810000px;}
.y130_c00136{bottom:321.405000px;}
.y12b_c00136{bottom:323.130000px;}
.y12d_c00136{bottom:325.725000px;}
.y12e_c00136{bottom:326.595000px;}
.y12c_c00136{bottom:329.190000px;}
.y129_c00136{bottom:343.875000px;}
.y125_c00136{bottom:345.600000px;}
.y127_c00136{bottom:346.470000px;}
.y124_c00136{bottom:347.325000px;}
.y121_c00136{bottom:348.195000px;}
.y128_c00136{bottom:350.790000px;}
.y12a_c00136{bottom:351.645000px;}
.y126_c00136{bottom:352.515000px;}
.y120_c00136{bottom:353.370000px;}
.y122_c00136{bottom:354.240000px;}
.y123_c00136{bottom:355.110000px;}
.y11f_c00136{bottom:368.925000px;}
.y11c_c00136{bottom:371.520000px;}
.y11d_c00136{bottom:372.390000px;}
.y11a_c00136{bottom:374.115000px;}
.y119_c00136{bottom:377.565000px;}
.y11e_c00136{bottom:378.435000px;}
.y11b_c00136{bottom:380.160000px;}
.y118_c00136{bottom:394.845000px;}
.y115_c00136{bottom:395.715000px;}
.y114_c00136{bottom:396.570000px;}
.y116_c00136{bottom:397.440000px;}
.y10f_c00136{bottom:399.165000px;}
.y117_c00136{bottom:400.035000px;}
.y113_c00136{bottom:402.630000px;}
.y112_c00136{bottom:404.355000px;}
.y111_c00136{bottom:406.950000px;}
.y110_c00136{bottom:412.995000px;}
.y10e_c00136{bottom:416.445000px;}
.y10c_c00136{bottom:420.765000px;}
.y10a_c00136{bottom:422.490000px;}
.y10d_c00136{bottom:427.680000px;}
.y10b_c00136{bottom:429.405000px;}
.y109_c00136{bottom:433.725000px;}
.y108_c00136{bottom:444.090000px;}
.y101_c00136{bottom:445.830000px;}
.y103_c00136{bottom:446.685000px;}
.y102_c00136{bottom:448.410000px;}
.y104_c00136{bottom:450.150000px;}
.y106_c00136{bottom:451.875000px;}
.y105_c00136{bottom:452.730000px;}
.y107_c00136{bottom:453.600000px;}
.y100_c00136{bottom:471.750000px;}
.yff_c00136{bottom:472.605000px;}
.yfe_c00136{bottom:480.390000px;}
.yfc_c00136{bottom:481.245000px;}
.yfd_c00136{bottom:482.115000px;}
.yf0_c00136{bottom:597.885000px;}
.yee_c00136{bottom:600.480000px;}
.yf1_c00136{bottom:601.350000px;}
.yef_c00136{bottom:608.250000px;}
.yf7_c00136{bottom:609.120000px;}
.yf8_c00136{bottom:615.165000px;}
.yf4_c00136{bottom:616.890000px;}
.yf6_c00136{bottom:617.760000px;}
.yf3_c00136{bottom:620.355000px;}
.yf5_c00136{bottom:621.210000px;}
.yf2_c00136{bottom:622.950000px;}
.ye6_c00136{bottom:624.675000px;}
.ye9_c00136{bottom:625.530000px;}
.yea_c00136{bottom:626.400000px;}
.yed_c00136{bottom:628.125000px;}
.ye7_c00136{bottom:628.995000px;}
.yec_c00136{bottom:629.850000px;}
.yeb_c00136{bottom:631.590000px;}
.ye8_c00136{bottom:633.315000px;}
.ye5_c00136{bottom:650.595000px;}
.ye3_c00136{bottom:654.915000px;}
.ye2_c00136{bottom:655.770000px;}
.ye4_c00136{bottom:657.510000px;}
.ydf_c00136{bottom:669.600000px;}
.yde_c00136{bottom:672.195000px;}
.ydb_c00136{bottom:673.050000px;}
.ydc_c00136{bottom:673.920000px;}
.ye1_c00136{bottom:674.790000px;}
.ye0_c00136{bottom:680.835000px;}
.ydd_c00136{bottom:681.690000px;}
.yd7_c00136{bottom:694.650000px;}
.yd5_c00136{bottom:696.390000px;}
.yd2_c00136{bottom:698.115000px;}
.yd9_c00136{bottom:698.970000px;}
.yda_c00136{bottom:699.840000px;}
.yd8_c00136{bottom:700.710000px;}
.yd3_c00136{bottom:702.435000px;}
.yd4_c00136{bottom:704.160000px;}
.yd6_c00136{bottom:705.030000px;}
.yd1_c00136{bottom:721.440000px;}
.yce_c00136{bottom:727.485000px;}
.yd0_c00136{bottom:729.210000px;}
.ycf_c00136{bottom:730.080000px;}
.ycd_c00136{bottom:732.675000px;}
.yca_c00136{bottom:752.550000px;}
.yc6_c00136{bottom:754.275000px;}
.yc7_c00136{bottom:756.000000px;}
.yc8_c00136{bottom:756.870000px;}
.ycb_c00136{bottom:757.725000px;}
.ycc_c00136{bottom:758.595000px;}
.yc9_c00136{bottom:769.830000px;}
.yc5_c00136{bottom:770.685000px;}
.yc3_c00136{bottom:771.555000px;}
.yc2_c00136{bottom:772.410000px;}
.yc1_c00136{bottom:773.280000px;}
.yc4_c00136{bottom:774.150000px;}
.ybf_c00136{bottom:775.005000px;}
.yc0_c00136{bottom:780.195000px;}
.ybc_c00136{bottom:796.605000px;}
.yb9_c00136{bottom:797.475000px;}
.yb8_c00136{bottom:798.330000px;}
.ybd_c00136{bottom:803.520000px;}
.yba_c00136{bottom:804.390000px;}
.ybb_c00136{bottom:805.245000px;}
.ybe_c00136{bottom:810.435000px;}
.yb5_c00136{bottom:817.350000px;}
.yb4_c00136{bottom:819.930000px;}
.yb3_c00136{bottom:820.800000px;}
.yb7_c00136{bottom:821.670000px;}
.yb6_c00136{bottom:827.715000px;}
.yb1_c00136{bottom:843.270000px;}
.yae_c00136{bottom:844.995000px;}
.yaf_c00136{bottom:845.850000px;}
.yb0_c00136{bottom:846.720000px;}
.yad_c00136{bottom:847.590000px;}
.yac_c00136{bottom:851.040000px;}
.yab_c00136{bottom:856.230000px;}
.yb2_c00136{bottom:863.130000px;}
.ya5_c00136{bottom:868.320000px;}
.ya7_c00136{bottom:870.045000px;}
.ya2_c00136{bottom:870.915000px;}
.ya9_c00136{bottom:873.510000px;}
.yaa_c00136{bottom:876.090000px;}
.ya6_c00136{bottom:877.830000px;}
.ya4_c00136{bottom:878.685000px;}
.ya3_c00136{bottom:879.555000px;}
.ya8_c00136{bottom:886.470000px;}
.ya1_c00136{bottom:892.515000px;}
.y9c_c00136{bottom:894.240000px;}
.y9d_c00136{bottom:895.965000px;}
.ya0_c00136{bottom:896.835000px;}
.y9f_c00136{bottom:903.750000px;}
.y9e_c00136{bottom:904.605000px;}
.y98_c00136{bottom:920.160000px;}
.y95_c00136{bottom:921.885000px;}
.y9b_c00136{bottom:922.755000px;}
.y96_c00136{bottom:923.610000px;}
.y97_c00136{bottom:926.205000px;}
.y9a_c00136{bottom:927.930000px;}
.y99_c00136{bottom:928.800000px;}
.y91_c00136{bottom:945.210000px;}
.y8d_c00136{bottom:946.080000px;}
.y90_c00136{bottom:946.950000px;}
.y94_c00136{bottom:949.530000px;}
.y8e_c00136{bottom:951.270000px;}
.y92_c00136{bottom:952.125000px;}
.y93_c00136{bottom:952.995000px;}
.y8f_c00136{bottom:954.720000px;}
.y87_c00136{bottom:970.275000px;}
.y85_c00136{bottom:971.130000px;}
.y89_c00136{bottom:972.000000px;}
.y8a_c00136{bottom:972.870000px;}
.y8b_c00136{bottom:975.450000px;}
.y8c_c00136{bottom:978.045000px;}
.y86_c00136{bottom:978.915000px;}
.y88_c00136{bottom:979.770000px;}
.y83_c00136{bottom:992.730000px;}
.y80_c00136{bottom:995.325000px;}
.y84_c00136{bottom:996.195000px;}
.y81_c00136{bottom:997.050000px;}
.y82_c00136{bottom:1000.515000px;}
.y7f_c00136{bottom:1008.285000px;}
.y7d_c00136{bottom:1020.390000px;}
.y7c_c00136{bottom:1021.245000px;}
.y7a_c00136{bottom:1022.115000px;}
.y79_c00136{bottom:1022.970000px;}
.y7e_c00136{bottom:1028.160000px;}
.y7b_c00136{bottom:1029.885000px;}
.y78_c00136{bottom:1043.715000px;}
.y72_c00136{bottom:1046.310000px;}
.y75_c00136{bottom:1047.165000px;}
.y74_c00136{bottom:1048.035000px;}
.y77_c00136{bottom:1053.210000px;}
.y73_c00136{bottom:1054.080000px;}
.y76_c00136{bottom:1054.950000px;}
.y6f_c00136{bottom:1070.490000px;}
.y6e_c00136{bottom:1071.360000px;}
.y6d_c00136{bottom:1072.230000px;}
.y70_c00136{bottom:1073.085000px;}
.y6c_c00136{bottom:1078.275000px;}
.y6b_c00136{bottom:1079.130000px;}
.y6a_c00136{bottom:1080.000000px;}
.y71_c00136{bottom:1086.915000px;}
.y69_c00136{bottom:1093.830000px;}
.y68_c00136{bottom:1094.685000px;}
.y65_c00136{bottom:1095.555000px;}
.y67_c00136{bottom:1096.410000px;}
.y66_c00136{bottom:1097.280000px;}
.y63_c00136{bottom:1119.750000px;}
.y61_c00136{bottom:1120.605000px;}
.y5e_c00136{bottom:1121.475000px;}
.y60_c00136{bottom:1122.330000px;}
.y62_c00136{bottom:1127.520000px;}
.y5f_c00136{bottom:1129.245000px;}
.y5d_c00136{bottom:1130.115000px;}
.y64_c00136{bottom:1136.160000px;}
.y5c_c00136{bottom:1143.930000px;}
.y5b_c00136{bottom:1145.670000px;}
.y59_c00136{bottom:1146.525000px;}
.y5a_c00136{bottom:1154.310000px;}
.y58_c00136{bottom:1157.760000px;}
.yfb_c00136{bottom:1167.270000px;}
.y56_c00136{bottom:1168.995000px;}
.y51_c00136{bottom:1169.850000px;}
.y55_c00136{bottom:1170.720000px;}
.y53_c00136{bottom:1171.590000px;}
.y54_c00136{bottom:1173.315000px;}
.y52_c00136{bottom:1175.040000px;}
.yfa_c00136{bottom:1175.910000px;}
.y57_c00136{bottom:1176.765000px;}
.y4f_c00136{bottom:1178.490000px;}
.y50_c00136{bottom:1179.360000px;}
.y4e_c00136{bottom:1182.810000px;}
.y4c_c00136{bottom:1194.045000px;}
.y46_c00136{bottom:1194.915000px;}
.y4d_c00136{bottom:1195.770000px;}
.y47_c00136{bottom:1196.640000px;}
.y45_c00136{bottom:1198.365000px;}
.y44_c00136{bottom:1199.235000px;}
.y43_c00136{bottom:1200.090000px;}
.y49_c00136{bottom:1200.960000px;}
.y4a_c00136{bottom:1202.685000px;}
.y4b_c00136{bottom:1203.555000px;}
.y48_c00136{bottom:1204.410000px;}
.y3b_c00136{bottom:1219.110000px;}
.y41_c00136{bottom:1219.965000px;}
.y3f_c00136{bottom:1220.835000px;}
.y3c_c00136{bottom:1221.690000px;}
.y40_c00136{bottom:1222.560000px;}
.y3e_c00136{bottom:1225.155000px;}
.y3a_c00136{bottom:1226.010000px;}
.y42_c00136{bottom:1226.880000px;}
.y3d_c00136{bottom:1228.605000px;}
.y38_c00136{bottom:1243.290000px;}
.y39_c00136{bottom:1245.030000px;}
.y33_c00136{bottom:1245.885000px;}
.y35_c00136{bottom:1246.755000px;}
.y32_c00136{bottom:1249.350000px;}
.y37_c00136{bottom:1251.930000px;}
.y36_c00136{bottom:1252.800000px;}
.y34_c00136{bottom:1253.670000px;}
.y31_c00136{bottom:1255.395000px;}
.y30_c00136{bottom:1269.210000px;}
.y2a_c00136{bottom:1270.080000px;}
.y29_c00136{bottom:1271.805000px;}
.y2b_c00136{bottom:1272.675000px;}
.y2e_c00136{bottom:1273.530000px;}
.y2f_c00136{bottom:1276.125000px;}
.y2c_c00136{bottom:1276.995000px;}
.y2d_c00136{bottom:1277.850000px;}
.yf9_c00136{bottom:1288.230000px;}
.y24_c00136{bottom:1294.275000px;}
.y25_c00136{bottom:1295.130000px;}
.y22_c00136{bottom:1296.000000px;}
.y27_c00136{bottom:1297.725000px;}
.y28_c00136{bottom:1301.190000px;}
.y26_c00136{bottom:1302.915000px;}
.y21_c00136{bottom:1303.770000px;}
.y23_c00136{bottom:1304.640000px;}
.y1c_c00136{bottom:1319.325000px;}
.y1e_c00136{bottom:1320.195000px;}
.y1d_c00136{bottom:1321.050000px;}
.y1b_c00136{bottom:1321.920000px;}
.y1a_c00136{bottom:1325.370000px;}
.y19_c00136{bottom:1328.835000px;}
.y20_c00136{bottom:1336.605000px;}
.y1f_c00136{bottom:1337.475000px;}
.y18_c00136{bottom:1343.520000px;}
.y15_c00136{bottom:1344.390000px;}
.y13_c00136{bottom:1346.115000px;}
.y10_c00136{bottom:1346.970000px;}
.y14_c00136{bottom:1347.840000px;}
.y17_c00136{bottom:1351.290000px;}
.y16_c00136{bottom:1353.030000px;}
.y11_c00136{bottom:1353.885000px;}
.y12_c00136{bottom:1354.755000px;}
.yf_c00136{bottom:1364.250000px;}
.y8_c00136{bottom:1385.850000px;}
.yb_c00136{bottom:1386.720000px;}
.yc_c00136{bottom:1387.590000px;}
.ya_c00136{bottom:1388.445000px;}
.ye_c00136{bottom:1390.170000px;}
.y9_c00136{bottom:1397.085000px;}
.yd_c00136{bottom:1398.810000px;}
.y6_c00136{bottom:1410.045000px;}
.y5_c00136{bottom:1410.915000px;}
.y7_c00136{bottom:1411.770000px;}
.y1_c00136{bottom:1438.560000px;}
.y2_c00136{bottom:1439.430000px;}
.y3_c00136{bottom:1442.880000px;}
.y4_c00136{bottom:1446.330000px;}
.h2_c00136{height:3.110063px;}
.h21_c00136{height:5.399414px;}
.h4_c00136{height:6.209326px;}
.h29_c00136{height:6.590063px;}
.h5_c00136{height:9.340986px;}
.h7_c00136{height:12.418652px;}
.h3_c00136{height:15.550313px;}
.h6_c00136{height:18.681973px;}
.h18_c00136{height:21.759639px;}
.h24_c00136{height:24.891299px;}
.h8_c00136{height:27.968965px;}
.h22_c00136{height:31.100625px;}
.h27_c00136{height:34.232285px;}
.h10_c00136{height:37.309951px;}
.h1c_c00136{height:40.441611px;}
.h23_c00136{height:43.519277px;}
.h19_c00136{height:46.650937px;}
.h15_c00136{height:49.782598px;}
.h1e_c00136{height:52.860264px;}
.h11_c00136{height:55.991924px;}
.he_c00136{height:59.069590px;}
.hb_c00136{height:62.201250px;}
.hd_c00136{height:65.332910px;}
.h9_c00136{height:68.410576px;}
.h20_c00136{height:71.542236px;}
.h13_c00136{height:74.619902px;}
.ha_c00136{height:77.751563px;}
.hf_c00136{height:80.883223px;}
.h1f_c00136{height:83.960889px;}
.h1b_c00136{height:87.092549px;}
.hc_c00136{height:90.170215px;}
.h1d_c00136{height:93.301875px;}
.h1a_c00136{height:96.433535px;}
.h26_c00136{height:99.511201px;}
.h25_c00136{height:102.642861px;}
.h28_c00136{height:105.720527px;}
.h14_c00136{height:108.852188px;}
.h12_c00136{height:121.270840px;}
.h17_c00136{height:127.534160px;}
.h2a_c00136{height:130.611826px;}
.h16_c00136{height:143.084473px;}
.h0_c00136{height:1517.190000px;}
.h1_c00136{height:1517.250000px;}
.w0_c00136{width:1090.365000px;}
.w1_c00136{width:1090.500000px;}
.x0_c00136{left:0.000000px;}
.x1_c00136{left:115.770000px;}
.x2_c00136{left:131.325000px;}
.x19_c00136{left:195.270000px;}
.x4b_c00136{left:196.995000px;}
.xe0_c00136{left:200.445000px;}
.x63_c00136{left:203.040000px;}
.x5_c00136{left:205.635000px;}
.xba_c00136{left:211.680000px;}
.x8e_c00136{left:214.275000px;}
.xde_c00136{left:216.000000px;}
.x6_c00136{left:218.595000px;}
.xb_c00136{left:220.320000px;}
.x6d_c00136{left:222.045000px;}
.x7c_c00136{left:223.770000px;}
.xb6_c00136{left:228.960000px;}
.xd9_c00136{left:235.005000px;}
.x42_c00136{left:242.790000px;}
.xa1_c00136{left:244.515000px;}
.x30_c00136{left:247.965000px;}
.xc9_c00136{left:250.560000px;}
.x53_c00136{left:254.880000px;}
.xab_c00136{left:256.605000px;}
.x5a_c00136{left:259.200000px;}
.xc_c00136{left:261.795000px;}
.x25_c00136{left:266.970000px;}
.x3b_c00136{left:273.030000px;}
.x8f_c00136{left:274.755000px;}
.x26_c00136{left:276.480000px;}
.x6e_c00136{left:279.075000px;}
.xc5_c00136{left:280.800000px;}
.x5b_c00136{left:282.525000px;}
.xda_c00136{left:286.845000px;}
.x7d_c00136{left:300.675000px;}
.xbe_c00136{left:302.400000px;}
.xdf_c00136{left:305.850000px;}
.x9d_c00136{left:311.040000px;}
.x27_c00136{left:315.360000px;}
.xd6_c00136{left:317.085000px;}
.x5c_c00136{left:318.810000px;}
.x54_c00136{left:323.130000px;}
.xd5_c00136{left:325.725000px;}
.x97_c00136{left:327.450000px;}
.x43_c00136{left:329.190000px;}
.x77_c00136{left:334.365000px;}
.xbf_c00136{left:336.090000px;}
.x4c_c00136{left:337.830000px;}
.xac_c00136{left:340.410000px;}
.x1a_c00136{left:342.150000px;}
.x31_c00136{left:344.730000px;}
.x72_c00136{left:347.325000px;}
.x90_c00136{left:350.790000px;}
.x88_c00136{left:356.835000px;}
.x73_c00136{left:358.560000px;}
.xc1_c00136{left:360.285000px;}
.xdb_c00136{left:362.880000px;}
.x32_c00136{left:364.605000px;}
.x4d_c00136{left:366.330000px;}
.x5d_c00136{left:368.925000px;}
.x1b_c00136{left:371.520000px;}
.xd_c00136{left:373.245000px;}
.xa6_c00136{left:374.970000px;}
.x28_c00136{left:376.710000px;}
.x3c_c00136{left:379.290000px;}
.x66_c00136{left:383.610000px;}
.x55_c00136{left:388.800000px;}
.xb7_c00136{left:392.250000px;}
.x89_c00136{left:395.715000px;}
.x74_c00136{left:399.165000px;}
.xe_c00136{left:401.760000px;}
.x78_c00136{left:405.210000px;}
.xa2_c00136{left:407.805000px;}
.x98_c00136{left:409.530000px;}
.x8a_c00136{left:415.590000px;}
.x75_c00136{left:419.040000px;}
.xf_c00136{left:421.635000px;}
.xb0_c00136{left:423.360000px;}
.xdc_c00136{left:432.000000px;}
.xc2_c00136{left:435.450000px;}
.x1c_c00136{left:437.190000px;}
.x44_c00136{left:439.770000px;}
.xe1_c00136{left:443.235000px;}
.x33_c00136{left:448.410000px;}
.x91_c00136{left:450.150000px;}
.x81_c00136{left:452.730000px;}
.xc6_c00136{left:454.470000px;}
.xbb_c00136{left:457.920000px;}
.x1d_c00136{left:460.515000px;}
.x64_c00136{left:463.965000px;}
.x7_c00136{left:466.560000px;}
.x34_c00136{left:469.155000px;}
.x29_c00136{left:471.750000px;}
.xb8_c00136{left:476.070000px;}
.x5e_c00136{left:480.390000px;}
.x1e_c00136{left:483.840000px;}
.xe6_c00136{left:486.435000px;}
.x8_c00136{left:488.160000px;}
.x10_c00136{left:490.755000px;}
.xad_c00136{left:492.480000px;}
.x99_c00136{left:494.205000px;}
.x56_c00136{left:497.670000px;}
.xe3_c00136{left:499.395000px;}
.x5f_c00136{left:501.120000px;}
.xe5_c00136{left:505.440000px;}
.x6f_c00136{left:508.890000px;}
.x3d_c00136{left:511.485000px;}
.x11_c00136{left:515.805000px;}
.x82_c00136{left:521.850000px;}
.x67_c00136{left:527.040000px;}
.x7e_c00136{left:528.765000px;}
.x12_c00136{left:533.085000px;}
.xd7_c00136{left:540.000000px;}
.x45_c00136{left:542.595000px;}
.x7f_c00136{left:548.640000px;}
.xa7_c00136{left:550.365000px;}
.x35_c00136{left:552.090000px;}
.xe7_c00136{left:558.150000px;}
.x68_c00136{left:559.875000px;}
.x4e_c00136{left:562.470000px;}
.x3_c00136{left:565.050000px;}
.x36_c00136{left:571.965000px;}
.x46_c00136{left:573.690000px;}
.x4_c00136{left:578.010000px;}
.x9a_c00136{left:583.200000px;}
.x13_c00136{left:584.925000px;}
.xc7_c00136{left:586.650000px;}
.xca_c00136{left:590.115000px;}
.xb1_c00136{left:593.565000px;}
.x14_c00136{left:595.290000px;}
.x79_c00136{left:597.885000px;}
.xe4_c00136{left:602.205000px;}
.x15_c00136{left:605.670000px;}
.x1f_c00136{left:607.395000px;}
.x47_c00136{left:609.120000px;}
.xb9_c00136{left:611.715000px;}
.x3e_c00136{left:613.440000px;}
.x57_c00136{left:616.890000px;}
.x69_c00136{left:619.485000px;}
.x7a_c00136{left:625.530000px;}
.x16_c00136{left:630.720000px;}
.x2a_c00136{left:633.315000px;}
.xc3_c00136{left:635.910000px;}
.x92_c00136{left:638.490000px;}
.xa8_c00136{left:641.955000px;}
.x83_c00136{left:643.680000px;}
.x48_c00136{left:646.275000px;}
.x8b_c00136{left:648.870000px;}
.x58_c00136{left:652.320000px;}
.xa3_c00136{left:654.915000px;}
.x84_c00136{left:656.640000px;}
.x70_c00136{left:661.830000px;}
.x60_c00136{left:663.555000px;}
.x2b_c00136{left:667.005000px;}
.xa4_c00136{left:668.730000px;}
.xd8_c00136{left:670.470000px;}
.x7b_c00136{left:676.515000px;}
.xb3_c00136{left:678.240000px;}
.x17_c00136{left:679.965000px;}
.x76_c00136{left:681.690000px;}
.x4f_c00136{left:685.155000px;}
.x37_c00136{left:688.605000px;}
.xae_c00136{left:692.925000px;}
.xa5_c00136{left:694.650000px;}
.xe2_c00136{left:696.390000px;}
.x65_c00136{left:698.115000px;}
.x6a_c00136{left:701.565000px;}
.xcb_c00136{left:704.160000px;}
.xa9_c00136{left:705.885000px;}
.x49_c00136{left:708.480000px;}
.x9_c00136{left:711.075000px;}
.x3f_c00136{left:712.800000px;}
.x18_c00136{left:715.395000px;}
.x20_c00136{left:718.845000px;}
.x93_c00136{left:721.440000px;}
.x6b_c00136{left:724.890000px;}
.x38_c00136{left:730.080000px;}
.x50_c00136{left:732.675000px;}
.xa_c00136{left:734.400000px;}
.x85_c00136{left:736.995000px;}
.x40_c00136{left:738.720000px;}
.x2c_c00136{left:740.445000px;}
.x9b_c00136{left:743.040000px;}
.x8c_c00136{left:749.085000px;}
.x39_c00136{left:751.680000px;}
.xc8_c00136{left:754.275000px;}
.xb4_c00136{left:758.595000px;}
.xaa_c00136{left:760.320000px;}
.x9e_c00136{left:762.915000px;}
.x4a_c00136{left:764.640000px;}
.xaf_c00136{left:766.365000px;}
.x94_c00136{left:768.090000px;}
.x80_c00136{left:773.280000px;}
.xc4_c00136{left:780.195000px;}
.x71_c00136{left:782.790000px;}
.x59_c00136{left:785.370000px;}
.xc0_c00136{left:787.110000px;}
.x86_c00136{left:792.285000px;}
.x9c_c00136{left:794.010000px;}
.xbc_c00136{left:796.605000px;}
.x21_c00136{left:799.200000px;}
.x95_c00136{left:801.795000px;}
.x87_c00136{left:803.520000px;}
.x2d_c00136{left:806.115000px;}
.x41_c00136{left:807.840000px;}
.xdd_c00136{left:809.565000px;}
.x22_c00136{left:811.290000px;}
.xb2_c00136{left:819.075000px;}
.x51_c00136{left:820.800000px;}
.x3a_c00136{left:824.250000px;}
.x96_c00136{left:826.845000px;}
.xb5_c00136{left:830.310000px;}
.x8d_c00136{left:834.630000px;}
.x23_c00136{left:837.210000px;}
.x61_c00136{left:838.950000px;}
.xcc_c00136{left:840.675000px;}
.xbd_c00136{left:844.125000px;}
.x52_c00136{left:845.850000px;}
.xcd_c00136{left:857.085000px;}
.x2e_c00136{left:866.595000px;}
.x6c_c00136{left:870.045000px;}
.x2f_c00136{left:873.510000px;}
.x9f_c00136{left:876.090000px;}
.x24_c00136{left:878.685000px;}
.x62_c00136{left:887.325000px;}
.xa0_c00136{left:899.430000px;}
.xce_c00136{left:945.210000px;}
.xd4_c00136{left:950.400000px;}
.xd0_c00136{left:955.590000px;}
.xcf_c00136{left:959.040000px;}
.xd1_c00136{left:996.195000px;}
.xd2_c00136{left:1013.475000px;}
.xd3_c00136{left:1021.245000px;}
@media print{
.v1_c00136{vertical-align:-9.226667pt;}
.v0_c00136{vertical-align:0.000000pt;}
.v2_c00136{vertical-align:3.093333pt;}
.ls1_c00136{letter-spacing:0.000000pt;}
.ls0_c00136{letter-spacing:51.725067pt;}
.ws0_c00136{word-spacing:-4.544853pt;}
.ws1_c00136{word-spacing:0.000000pt;}
.fs0_c00136{font-size:3.072000pt;}
.fs1f_c00136{font-size:5.333333pt;}
.fs2_c00136{font-size:6.133333pt;}
.fs3_c00136{font-size:9.226667pt;}
.fs5_c00136{font-size:12.266667pt;}
.fs1_c00136{font-size:15.360000pt;}
.fs4_c00136{font-size:18.453333pt;}
.fs16_c00136{font-size:21.493333pt;}
.fs22_c00136{font-size:24.586667pt;}
.fs6_c00136{font-size:27.626667pt;}
.fs20_c00136{font-size:30.720000pt;}
.fs25_c00136{font-size:33.813333pt;}
.fse_c00136{font-size:36.853333pt;}
.fs1a_c00136{font-size:39.946667pt;}
.fs21_c00136{font-size:42.986667pt;}
.fs17_c00136{font-size:46.080000pt;}
.fs13_c00136{font-size:49.173333pt;}
.fs1c_c00136{font-size:52.213333pt;}
.fsf_c00136{font-size:55.306667pt;}
.fsc_c00136{font-size:58.346667pt;}
.fs9_c00136{font-size:61.440000pt;}
.fsb_c00136{font-size:64.533333pt;}
.fs7_c00136{font-size:67.573333pt;}
.fs1e_c00136{font-size:70.666667pt;}
.fs11_c00136{font-size:73.706667pt;}
.fs8_c00136{font-size:76.800000pt;}
.fsd_c00136{font-size:79.893333pt;}
.fs1d_c00136{font-size:82.933333pt;}
.fs19_c00136{font-size:86.026667pt;}
.fsa_c00136{font-size:89.066667pt;}
.fs1b_c00136{font-size:92.160000pt;}
.fs18_c00136{font-size:95.253333pt;}
.fs24_c00136{font-size:98.293333pt;}
.fs23_c00136{font-size:101.386667pt;}
.fs26_c00136{font-size:104.426667pt;}
.fs12_c00136{font-size:107.520000pt;}
.fs10_c00136{font-size:119.786667pt;}
.fs15_c00136{font-size:125.973333pt;}
.fs27_c00136{font-size:129.013333pt;}
.fs14_c00136{font-size:141.333333pt;}
.y0_c00136{bottom:0.000000pt;}
.y144_c00136{bottom:189.693333pt;}
.y13f_c00136{bottom:190.466667pt;}
.y141_c00136{bottom:194.306667pt;}
.y140_c00136{bottom:195.066667pt;}
.y142_c00136{bottom:196.613333pt;}
.y143_c00136{bottom:198.906667pt;}
.y13d_c00136{bottom:215.813333pt;}
.y13c_c00136{bottom:216.573333pt;}
.y13a_c00136{bottom:217.346667pt;}
.y13e_c00136{bottom:218.106667pt;}
.y139_c00136{bottom:218.880000pt;}
.y13b_c00136{bottom:223.493333pt;}
.y136_c00136{bottom:238.080000pt;}
.y135_c00136{bottom:240.386667pt;}
.y134_c00136{bottom:241.920000pt;}
.y137_c00136{bottom:244.986667pt;}
.y138_c00136{bottom:251.133333pt;}
.y131_c00136{bottom:261.120000pt;}
.y133_c00136{bottom:261.893333pt;}
.y132_c00136{bottom:267.266667pt;}
.y12f_c00136{bottom:283.386667pt;}
.y130_c00136{bottom:285.693333pt;}
.y12b_c00136{bottom:287.226667pt;}
.y12d_c00136{bottom:289.533333pt;}
.y12e_c00136{bottom:290.306667pt;}
.y12c_c00136{bottom:292.613333pt;}
.y129_c00136{bottom:305.666667pt;}
.y125_c00136{bottom:307.200000pt;}
.y127_c00136{bottom:307.973333pt;}
.y124_c00136{bottom:308.733333pt;}
.y121_c00136{bottom:309.506667pt;}
.y128_c00136{bottom:311.813333pt;}
.y12a_c00136{bottom:312.573333pt;}
.y126_c00136{bottom:313.346667pt;}
.y120_c00136{bottom:314.106667pt;}
.y122_c00136{bottom:314.880000pt;}
.y123_c00136{bottom:315.653333pt;}
.y11f_c00136{bottom:327.933333pt;}
.y11c_c00136{bottom:330.240000pt;}
.y11d_c00136{bottom:331.013333pt;}
.y11a_c00136{bottom:332.546667pt;}
.y119_c00136{bottom:335.613333pt;}
.y11e_c00136{bottom:336.386667pt;}
.y11b_c00136{bottom:337.920000pt;}
.y118_c00136{bottom:350.973333pt;}
.y115_c00136{bottom:351.746667pt;}
.y114_c00136{bottom:352.506667pt;}
.y116_c00136{bottom:353.280000pt;}
.y10f_c00136{bottom:354.813333pt;}
.y117_c00136{bottom:355.586667pt;}
.y113_c00136{bottom:357.893333pt;}
.y112_c00136{bottom:359.426667pt;}
.y111_c00136{bottom:361.733333pt;}
.y110_c00136{bottom:367.106667pt;}
.y10e_c00136{bottom:370.173333pt;}
.y10c_c00136{bottom:374.013333pt;}
.y10a_c00136{bottom:375.546667pt;}
.y10d_c00136{bottom:380.160000pt;}
.y10b_c00136{bottom:381.693333pt;}
.y109_c00136{bottom:385.533333pt;}
.y108_c00136{bottom:394.746667pt;}
.y101_c00136{bottom:396.293333pt;}
.y103_c00136{bottom:397.053333pt;}
.y102_c00136{bottom:398.586667pt;}
.y104_c00136{bottom:400.133333pt;}
.y106_c00136{bottom:401.666667pt;}
.y105_c00136{bottom:402.426667pt;}
.y107_c00136{bottom:403.200000pt;}
.y100_c00136{bottom:419.333333pt;}
.yff_c00136{bottom:420.093333pt;}
.yfe_c00136{bottom:427.013333pt;}
.yfc_c00136{bottom:427.773333pt;}
.yfd_c00136{bottom:428.546667pt;}
.yf0_c00136{bottom:531.453333pt;}
.yee_c00136{bottom:533.760000pt;}
.yf1_c00136{bottom:534.533333pt;}
.yef_c00136{bottom:540.666667pt;}
.yf7_c00136{bottom:541.440000pt;}
.yf8_c00136{bottom:546.813333pt;}
.yf4_c00136{bottom:548.346667pt;}
.yf6_c00136{bottom:549.120000pt;}
.yf3_c00136{bottom:551.426667pt;}
.yf5_c00136{bottom:552.186667pt;}
.yf2_c00136{bottom:553.733333pt;}
.ye6_c00136{bottom:555.266667pt;}
.ye9_c00136{bottom:556.026667pt;}
.yea_c00136{bottom:556.800000pt;}
.yed_c00136{bottom:558.333333pt;}
.ye7_c00136{bottom:559.106667pt;}
.yec_c00136{bottom:559.866667pt;}
.yeb_c00136{bottom:561.413333pt;}
.ye8_c00136{bottom:562.946667pt;}
.ye5_c00136{bottom:578.306667pt;}
.ye3_c00136{bottom:582.146667pt;}
.ye2_c00136{bottom:582.906667pt;}
.ye4_c00136{bottom:584.453333pt;}
.ydf_c00136{bottom:595.200000pt;}
.yde_c00136{bottom:597.506667pt;}
.ydb_c00136{bottom:598.266667pt;}
.ydc_c00136{bottom:599.040000pt;}
.ye1_c00136{bottom:599.813333pt;}
.ye0_c00136{bottom:605.186667pt;}
.ydd_c00136{bottom:605.946667pt;}
.yd7_c00136{bottom:617.466667pt;}
.yd5_c00136{bottom:619.013333pt;}
.yd2_c00136{bottom:620.546667pt;}
.yd9_c00136{bottom:621.306667pt;}
.yda_c00136{bottom:622.080000pt;}
.yd8_c00136{bottom:622.853333pt;}
.yd3_c00136{bottom:624.386667pt;}
.yd4_c00136{bottom:625.920000pt;}
.yd6_c00136{bottom:626.693333pt;}
.yd1_c00136{bottom:641.280000pt;}
.yce_c00136{bottom:646.653333pt;}
.yd0_c00136{bottom:648.186667pt;}
.ycf_c00136{bottom:648.960000pt;}
.ycd_c00136{bottom:651.266667pt;}
.yca_c00136{bottom:668.933333pt;}
.yc6_c00136{bottom:670.466667pt;}
.yc7_c00136{bottom:672.000000pt;}
.yc8_c00136{bottom:672.773333pt;}
.ycb_c00136{bottom:673.533333pt;}
.ycc_c00136{bottom:674.306667pt;}
.yc9_c00136{bottom:684.293333pt;}
.yc5_c00136{bottom:685.053333pt;}
.yc3_c00136{bottom:685.826667pt;}
.yc2_c00136{bottom:686.586667pt;}
.yc1_c00136{bottom:687.360000pt;}
.yc4_c00136{bottom:688.133333pt;}
.ybf_c00136{bottom:688.893333pt;}
.yc0_c00136{bottom:693.506667pt;}
.ybc_c00136{bottom:708.093333pt;}
.yb9_c00136{bottom:708.866667pt;}
.yb8_c00136{bottom:709.626667pt;}
.ybd_c00136{bottom:714.240000pt;}
.yba_c00136{bottom:715.013333pt;}
.ybb_c00136{bottom:715.773333pt;}
.ybe_c00136{bottom:720.386667pt;}
.yb5_c00136{bottom:726.533333pt;}
.yb4_c00136{bottom:728.826667pt;}
.yb3_c00136{bottom:729.600000pt;}
.yb7_c00136{bottom:730.373333pt;}
.yb6_c00136{bottom:735.746667pt;}
.yb1_c00136{bottom:749.573333pt;}
.yae_c00136{bottom:751.106667pt;}
.yaf_c00136{bottom:751.866667pt;}
.yb0_c00136{bottom:752.640000pt;}
.yad_c00136{bottom:753.413333pt;}
.yac_c00136{bottom:756.480000pt;}
.yab_c00136{bottom:761.093333pt;}
.yb2_c00136{bottom:767.226667pt;}
.ya5_c00136{bottom:771.840000pt;}
.ya7_c00136{bottom:773.373333pt;}
.ya2_c00136{bottom:774.146667pt;}
.ya9_c00136{bottom:776.453333pt;}
.yaa_c00136{bottom:778.746667pt;}
.ya6_c00136{bottom:780.293333pt;}
.ya4_c00136{bottom:781.053333pt;}
.ya3_c00136{bottom:781.826667pt;}
.ya8_c00136{bottom:787.973333pt;}
.ya1_c00136{bottom:793.346667pt;}
.y9c_c00136{bottom:794.880000pt;}
.y9d_c00136{bottom:796.413333pt;}
.ya0_c00136{bottom:797.186667pt;}
.y9f_c00136{bottom:803.333333pt;}
.y9e_c00136{bottom:804.093333pt;}
.y98_c00136{bottom:817.920000pt;}
.y95_c00136{bottom:819.453333pt;}
.y9b_c00136{bottom:820.226667pt;}
.y96_c00136{bottom:820.986667pt;}
.y97_c00136{bottom:823.293333pt;}
.y9a_c00136{bottom:824.826667pt;}
.y99_c00136{bottom:825.600000pt;}
.y91_c00136{bottom:840.186667pt;}
.y8d_c00136{bottom:840.960000pt;}
.y90_c00136{bottom:841.733333pt;}
.y94_c00136{bottom:844.026667pt;}
.y8e_c00136{bottom:845.573333pt;}
.y92_c00136{bottom:846.333333pt;}
.y93_c00136{bottom:847.106667pt;}
.y8f_c00136{bottom:848.640000pt;}
.y87_c00136{bottom:862.466667pt;}
.y85_c00136{bottom:863.226667pt;}
.y89_c00136{bottom:864.000000pt;}
.y8a_c00136{bottom:864.773333pt;}
.y8b_c00136{bottom:867.066667pt;}
.y8c_c00136{bottom:869.373333pt;}
.y86_c00136{bottom:870.146667pt;}
.y88_c00136{bottom:870.906667pt;}
.y83_c00136{bottom:882.426667pt;}
.y80_c00136{bottom:884.733333pt;}
.y84_c00136{bottom:885.506667pt;}
.y81_c00136{bottom:886.266667pt;}
.y82_c00136{bottom:889.346667pt;}
.y7f_c00136{bottom:896.253333pt;}
.y7d_c00136{bottom:907.013333pt;}
.y7c_c00136{bottom:907.773333pt;}
.y7a_c00136{bottom:908.546667pt;}
.y79_c00136{bottom:909.306667pt;}
.y7e_c00136{bottom:913.920000pt;}
.y7b_c00136{bottom:915.453333pt;}
.y78_c00136{bottom:927.746667pt;}
.y72_c00136{bottom:930.053333pt;}
.y75_c00136{bottom:930.813333pt;}
.y74_c00136{bottom:931.586667pt;}
.y77_c00136{bottom:936.186667pt;}
.y73_c00136{bottom:936.960000pt;}
.y76_c00136{bottom:937.733333pt;}
.y6f_c00136{bottom:951.546667pt;}
.y6e_c00136{bottom:952.320000pt;}
.y6d_c00136{bottom:953.093333pt;}
.y70_c00136{bottom:953.853333pt;}
.y6c_c00136{bottom:958.466667pt;}
.y6b_c00136{bottom:959.226667pt;}
.y6a_c00136{bottom:960.000000pt;}
.y71_c00136{bottom:966.146667pt;}
.y69_c00136{bottom:972.293333pt;}
.y68_c00136{bottom:973.053333pt;}
.y65_c00136{bottom:973.826667pt;}
.y67_c00136{bottom:974.586667pt;}
.y66_c00136{bottom:975.360000pt;}
.y63_c00136{bottom:995.333333pt;}
.y61_c00136{bottom:996.093333pt;}
.y5e_c00136{bottom:996.866667pt;}
.y60_c00136{bottom:997.626667pt;}
.y62_c00136{bottom:1002.240000pt;}
.y5f_c00136{bottom:1003.773333pt;}
.y5d_c00136{bottom:1004.546667pt;}
.y64_c00136{bottom:1009.920000pt;}
.y5c_c00136{bottom:1016.826667pt;}
.y5b_c00136{bottom:1018.373333pt;}
.y59_c00136{bottom:1019.133333pt;}
.y5a_c00136{bottom:1026.053333pt;}
.y58_c00136{bottom:1029.120000pt;}
.yfb_c00136{bottom:1037.573333pt;}
.y56_c00136{bottom:1039.106667pt;}
.y51_c00136{bottom:1039.866667pt;}
.y55_c00136{bottom:1040.640000pt;}
.y53_c00136{bottom:1041.413333pt;}
.y54_c00136{bottom:1042.946667pt;}
.y52_c00136{bottom:1044.480000pt;}
.yfa_c00136{bottom:1045.253333pt;}
.y57_c00136{bottom:1046.013333pt;}
.y4f_c00136{bottom:1047.546667pt;}
.y50_c00136{bottom:1048.320000pt;}
.y4e_c00136{bottom:1051.386667pt;}
.y4c_c00136{bottom:1061.373333pt;}
.y46_c00136{bottom:1062.146667pt;}
.y4d_c00136{bottom:1062.906667pt;}
.y47_c00136{bottom:1063.680000pt;}
.y45_c00136{bottom:1065.213333pt;}
.y44_c00136{bottom:1065.986667pt;}
.y43_c00136{bottom:1066.746667pt;}
.y49_c00136{bottom:1067.520000pt;}
.y4a_c00136{bottom:1069.053333pt;}
.y4b_c00136{bottom:1069.826667pt;}
.y48_c00136{bottom:1070.586667pt;}
.y3b_c00136{bottom:1083.653333pt;}
.y41_c00136{bottom:1084.413333pt;}
.y3f_c00136{bottom:1085.186667pt;}
.y3c_c00136{bottom:1085.946667pt;}
.y40_c00136{bottom:1086.720000pt;}
.y3e_c00136{bottom:1089.026667pt;}
.y3a_c00136{bottom:1089.786667pt;}
.y42_c00136{bottom:1090.560000pt;}
.y3d_c00136{bottom:1092.093333pt;}
.y38_c00136{bottom:1105.146667pt;}
.y39_c00136{bottom:1106.693333pt;}
.y33_c00136{bottom:1107.453333pt;}
.y35_c00136{bottom:1108.226667pt;}
.y32_c00136{bottom:1110.533333pt;}
.y37_c00136{bottom:1112.826667pt;}
.y36_c00136{bottom:1113.600000pt;}
.y34_c00136{bottom:1114.373333pt;}
.y31_c00136{bottom:1115.906667pt;}
.y30_c00136{bottom:1128.186667pt;}
.y2a_c00136{bottom:1128.960000pt;}
.y29_c00136{bottom:1130.493333pt;}
.y2b_c00136{bottom:1131.266667pt;}
.y2e_c00136{bottom:1132.026667pt;}
.y2f_c00136{bottom:1134.333333pt;}
.y2c_c00136{bottom:1135.106667pt;}
.y2d_c00136{bottom:1135.866667pt;}
.yf9_c00136{bottom:1145.093333pt;}
.y24_c00136{bottom:1150.466667pt;}
.y25_c00136{bottom:1151.226667pt;}
.y22_c00136{bottom:1152.000000pt;}
.y27_c00136{bottom:1153.533333pt;}
.y28_c00136{bottom:1156.613333pt;}
.y26_c00136{bottom:1158.146667pt;}
.y21_c00136{bottom:1158.906667pt;}
.y23_c00136{bottom:1159.680000pt;}
.y1c_c00136{bottom:1172.733333pt;}
.y1e_c00136{bottom:1173.506667pt;}
.y1d_c00136{bottom:1174.266667pt;}
.y1b_c00136{bottom:1175.040000pt;}
.y1a_c00136{bottom:1178.106667pt;}
.y19_c00136{bottom:1181.186667pt;}
.y20_c00136{bottom:1188.093333pt;}
.y1f_c00136{bottom:1188.866667pt;}
.y18_c00136{bottom:1194.240000pt;}
.y15_c00136{bottom:1195.013333pt;}
.y13_c00136{bottom:1196.546667pt;}
.y10_c00136{bottom:1197.306667pt;}
.y14_c00136{bottom:1198.080000pt;}
.y17_c00136{bottom:1201.146667pt;}
.y16_c00136{bottom:1202.693333pt;}
.y11_c00136{bottom:1203.453333pt;}
.y12_c00136{bottom:1204.226667pt;}
.yf_c00136{bottom:1212.666667pt;}
.y8_c00136{bottom:1231.866667pt;}
.yb_c00136{bottom:1232.640000pt;}
.yc_c00136{bottom:1233.413333pt;}
.ya_c00136{bottom:1234.173333pt;}
.ye_c00136{bottom:1235.706667pt;}
.y9_c00136{bottom:1241.853333pt;}
.yd_c00136{bottom:1243.386667pt;}
.y6_c00136{bottom:1253.373333pt;}
.y5_c00136{bottom:1254.146667pt;}
.y7_c00136{bottom:1254.906667pt;}
.y1_c00136{bottom:1278.720000pt;}
.y2_c00136{bottom:1279.493333pt;}
.y3_c00136{bottom:1282.560000pt;}
.y4_c00136{bottom:1285.626667pt;}
.h2_c00136{height:2.764500pt;}
.h21_c00136{height:4.799479pt;}
.h4_c00136{height:5.519401pt;}
.h29_c00136{height:5.857833pt;}
.h5_c00136{height:8.303099pt;}
.h7_c00136{height:11.038802pt;}
.h3_c00136{height:13.822500pt;}
.h6_c00136{height:16.606198pt;}
.h18_c00136{height:19.341901pt;}
.h24_c00136{height:22.125599pt;}
.h8_c00136{height:24.861302pt;}
.h22_c00136{height:27.645000pt;}
.h27_c00136{height:30.428698pt;}
.h10_c00136{height:33.164401pt;}
.h1c_c00136{height:35.948099pt;}
.h23_c00136{height:38.683802pt;}
.h19_c00136{height:41.467500pt;}
.h15_c00136{height:44.251198pt;}
.h1e_c00136{height:46.986901pt;}
.h11_c00136{height:49.770599pt;}
.he_c00136{height:52.506302pt;}
.hb_c00136{height:55.290000pt;}
.hd_c00136{height:58.073698pt;}
.h9_c00136{height:60.809401pt;}
.h20_c00136{height:63.593099pt;}
.h13_c00136{height:66.328802pt;}
.ha_c00136{height:69.112500pt;}
.hf_c00136{height:71.896198pt;}
.h1f_c00136{height:74.631901pt;}
.h1b_c00136{height:77.415599pt;}
.hc_c00136{height:80.151302pt;}
.h1d_c00136{height:82.935000pt;}
.h1a_c00136{height:85.718698pt;}
.h26_c00136{height:88.454401pt;}
.h25_c00136{height:91.238099pt;}
.h28_c00136{height:93.973802pt;}
.h14_c00136{height:96.757500pt;}
.h12_c00136{height:107.796302pt;}
.h17_c00136{height:113.363698pt;}
.h2a_c00136{height:116.099401pt;}
.h16_c00136{height:127.186198pt;}
.h0_c00136{height:1348.613333pt;}
.h1_c00136{height:1348.666667pt;}
.w0_c00136{width:969.213333pt;}
.w1_c00136{width:969.333333pt;}
.x0_c00136{left:0.000000pt;}
.x1_c00136{left:102.906667pt;}
.x2_c00136{left:116.733333pt;}
.x19_c00136{left:173.573333pt;}
.x4b_c00136{left:175.106667pt;}
.xe0_c00136{left:178.173333pt;}
.x63_c00136{left:180.480000pt;}
.x5_c00136{left:182.786667pt;}
.xba_c00136{left:188.160000pt;}
.x8e_c00136{left:190.466667pt;}
.xde_c00136{left:192.000000pt;}
.x6_c00136{left:194.306667pt;}
.xb_c00136{left:195.840000pt;}
.x6d_c00136{left:197.373333pt;}
.x7c_c00136{left:198.906667pt;}
.xb6_c00136{left:203.520000pt;}
.xd9_c00136{left:208.893333pt;}
.x42_c00136{left:215.813333pt;}
.xa1_c00136{left:217.346667pt;}
.x30_c00136{left:220.413333pt;}
.xc9_c00136{left:222.720000pt;}
.x53_c00136{left:226.560000pt;}
.xab_c00136{left:228.093333pt;}
.x5a_c00136{left:230.400000pt;}
.xc_c00136{left:232.706667pt;}
.x25_c00136{left:237.306667pt;}
.x3b_c00136{left:242.693333pt;}
.x8f_c00136{left:244.226667pt;}
.x26_c00136{left:245.760000pt;}
.x6e_c00136{left:248.066667pt;}
.xc5_c00136{left:249.600000pt;}
.x5b_c00136{left:251.133333pt;}
.xda_c00136{left:254.973333pt;}
.x7d_c00136{left:267.266667pt;}
.xbe_c00136{left:268.800000pt;}
.xdf_c00136{left:271.866667pt;}
.x9d_c00136{left:276.480000pt;}
.x27_c00136{left:280.320000pt;}
.xd6_c00136{left:281.853333pt;}
.x5c_c00136{left:283.386667pt;}
.x54_c00136{left:287.226667pt;}
.xd5_c00136{left:289.533333pt;}
.x97_c00136{left:291.066667pt;}
.x43_c00136{left:292.613333pt;}
.x77_c00136{left:297.213333pt;}
.xbf_c00136{left:298.746667pt;}
.x4c_c00136{left:300.293333pt;}
.xac_c00136{left:302.586667pt;}
.x1a_c00136{left:304.133333pt;}
.x31_c00136{left:306.426667pt;}
.x72_c00136{left:308.733333pt;}
.x90_c00136{left:311.813333pt;}
.x88_c00136{left:317.186667pt;}
.x73_c00136{left:318.720000pt;}
.xc1_c00136{left:320.253333pt;}
.xdb_c00136{left:322.560000pt;}
.x32_c00136{left:324.093333pt;}
.x4d_c00136{left:325.626667pt;}
.x5d_c00136{left:327.933333pt;}
.x1b_c00136{left:330.240000pt;}
.xd_c00136{left:331.773333pt;}
.xa6_c00136{left:333.306667pt;}
.x28_c00136{left:334.853333pt;}
.x3c_c00136{left:337.146667pt;}
.x66_c00136{left:340.986667pt;}
.x55_c00136{left:345.600000pt;}
.xb7_c00136{left:348.666667pt;}
.x89_c00136{left:351.746667pt;}
.x74_c00136{left:354.813333pt;}
.xe_c00136{left:357.120000pt;}
.x78_c00136{left:360.186667pt;}
.xa2_c00136{left:362.493333pt;}
.x98_c00136{left:364.026667pt;}
.x8a_c00136{left:369.413333pt;}
.x75_c00136{left:372.480000pt;}
.xf_c00136{left:374.786667pt;}
.xb0_c00136{left:376.320000pt;}
.xdc_c00136{left:384.000000pt;}
.xc2_c00136{left:387.066667pt;}
.x1c_c00136{left:388.613333pt;}
.x44_c00136{left:390.906667pt;}
.xe1_c00136{left:393.986667pt;}
.x33_c00136{left:398.586667pt;}
.x91_c00136{left:400.133333pt;}
.x81_c00136{left:402.426667pt;}
.xc6_c00136{left:403.973333pt;}
.xbb_c00136{left:407.040000pt;}
.x1d_c00136{left:409.346667pt;}
.x64_c00136{left:412.413333pt;}
.x7_c00136{left:414.720000pt;}
.x34_c00136{left:417.026667pt;}
.x29_c00136{left:419.333333pt;}
.xb8_c00136{left:423.173333pt;}
.x5e_c00136{left:427.013333pt;}
.x1e_c00136{left:430.080000pt;}
.xe6_c00136{left:432.386667pt;}
.x8_c00136{left:433.920000pt;}
.x10_c00136{left:436.226667pt;}
.xad_c00136{left:437.760000pt;}
.x99_c00136{left:439.293333pt;}
.x56_c00136{left:442.373333pt;}
.xe3_c00136{left:443.906667pt;}
.x5f_c00136{left:445.440000pt;}
.xe5_c00136{left:449.280000pt;}
.x6f_c00136{left:452.346667pt;}
.x3d_c00136{left:454.653333pt;}
.x11_c00136{left:458.493333pt;}
.x82_c00136{left:463.866667pt;}
.x67_c00136{left:468.480000pt;}
.x7e_c00136{left:470.013333pt;}
.x12_c00136{left:473.853333pt;}
.xd7_c00136{left:480.000000pt;}
.x45_c00136{left:482.306667pt;}
.x7f_c00136{left:487.680000pt;}
.xa7_c00136{left:489.213333pt;}
.x35_c00136{left:490.746667pt;}
.xe7_c00136{left:496.133333pt;}
.x68_c00136{left:497.666667pt;}
.x4e_c00136{left:499.973333pt;}
.x3_c00136{left:502.266667pt;}
.x36_c00136{left:508.413333pt;}
.x46_c00136{left:509.946667pt;}
.x4_c00136{left:513.786667pt;}
.x9a_c00136{left:518.400000pt;}
.x13_c00136{left:519.933333pt;}
.xc7_c00136{left:521.466667pt;}
.xca_c00136{left:524.546667pt;}
.xb1_c00136{left:527.613333pt;}
.x14_c00136{left:529.146667pt;}
.x79_c00136{left:531.453333pt;}
.xe4_c00136{left:535.293333pt;}
.x15_c00136{left:538.373333pt;}
.x1f_c00136{left:539.906667pt;}
.x47_c00136{left:541.440000pt;}
.xb9_c00136{left:543.746667pt;}
.x3e_c00136{left:545.280000pt;}
.x57_c00136{left:548.346667pt;}
.x69_c00136{left:550.653333pt;}
.x7a_c00136{left:556.026667pt;}
.x16_c00136{left:560.640000pt;}
.x2a_c00136{left:562.946667pt;}
.xc3_c00136{left:565.253333pt;}
.x92_c00136{left:567.546667pt;}
.xa8_c00136{left:570.626667pt;}
.x83_c00136{left:572.160000pt;}
.x48_c00136{left:574.466667pt;}
.x8b_c00136{left:576.773333pt;}
.x58_c00136{left:579.840000pt;}
.xa3_c00136{left:582.146667pt;}
.x84_c00136{left:583.680000pt;}
.x70_c00136{left:588.293333pt;}
.x60_c00136{left:589.826667pt;}
.x2b_c00136{left:592.893333pt;}
.xa4_c00136{left:594.426667pt;}
.xd8_c00136{left:595.973333pt;}
.x7b_c00136{left:601.346667pt;}
.xb3_c00136{left:602.880000pt;}
.x17_c00136{left:604.413333pt;}
.x76_c00136{left:605.946667pt;}
.x4f_c00136{left:609.026667pt;}
.x37_c00136{left:612.093333pt;}
.xae_c00136{left:615.933333pt;}
.xa5_c00136{left:617.466667pt;}
.xe2_c00136{left:619.013333pt;}
.x65_c00136{left:620.546667pt;}
.x6a_c00136{left:623.613333pt;}
.xcb_c00136{left:625.920000pt;}
.xa9_c00136{left:627.453333pt;}
.x49_c00136{left:629.760000pt;}
.x9_c00136{left:632.066667pt;}
.x3f_c00136{left:633.600000pt;}
.x18_c00136{left:635.906667pt;}
.x20_c00136{left:638.973333pt;}
.x93_c00136{left:641.280000pt;}
.x6b_c00136{left:644.346667pt;}
.x38_c00136{left:648.960000pt;}
.x50_c00136{left:651.266667pt;}
.xa_c00136{left:652.800000pt;}
.x85_c00136{left:655.106667pt;}
.x40_c00136{left:656.640000pt;}
.x2c_c00136{left:658.173333pt;}
.x9b_c00136{left:660.480000pt;}
.x8c_c00136{left:665.853333pt;}
.x39_c00136{left:668.160000pt;}
.xc8_c00136{left:670.466667pt;}
.xb4_c00136{left:674.306667pt;}
.xaa_c00136{left:675.840000pt;}
.x9e_c00136{left:678.146667pt;}
.x4a_c00136{left:679.680000pt;}
.xaf_c00136{left:681.213333pt;}
.x94_c00136{left:682.746667pt;}
.x80_c00136{left:687.360000pt;}
.xc4_c00136{left:693.506667pt;}
.x71_c00136{left:695.813333pt;}
.x59_c00136{left:698.106667pt;}
.xc0_c00136{left:699.653333pt;}
.x86_c00136{left:704.253333pt;}
.x9c_c00136{left:705.786667pt;}
.xbc_c00136{left:708.093333pt;}
.x21_c00136{left:710.400000pt;}
.x95_c00136{left:712.706667pt;}
.x87_c00136{left:714.240000pt;}
.x2d_c00136{left:716.546667pt;}
.x41_c00136{left:718.080000pt;}
.xdd_c00136{left:719.613333pt;}
.x22_c00136{left:721.146667pt;}
.xb2_c00136{left:728.066667pt;}
.x51_c00136{left:729.600000pt;}
.x3a_c00136{left:732.666667pt;}
.x96_c00136{left:734.973333pt;}
.xb5_c00136{left:738.053333pt;}
.x8d_c00136{left:741.893333pt;}
.x23_c00136{left:744.186667pt;}
.x61_c00136{left:745.733333pt;}
.xcc_c00136{left:747.266667pt;}
.xbd_c00136{left:750.333333pt;}
.x52_c00136{left:751.866667pt;}
.xcd_c00136{left:761.853333pt;}
.x2e_c00136{left:770.306667pt;}
.x6c_c00136{left:773.373333pt;}
.x2f_c00136{left:776.453333pt;}
.x9f_c00136{left:778.746667pt;}
.x24_c00136{left:781.053333pt;}
.x62_c00136{left:788.733333pt;}
.xa0_c00136{left:799.493333pt;}
.xce_c00136{left:840.186667pt;}
.xd4_c00136{left:844.800000pt;}
.xd0_c00136{left:849.413333pt;}
.xcf_c00136{left:852.480000pt;}
.xd1_c00136{left:885.506667pt;}
.xd2_c00136{left:900.866667pt;}
.xd3_c00136{left:907.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5bbf9d2a4f407f08b31ff946.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.109863;font-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_c00137{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m138_c00137{transform:matrix(0.026325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026325,0.000000,0.000000,0.250000,0,0);}
.m126_c00137{transform:matrix(0.037875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037875,0.000000,0.000000,0.250000,0,0);}
.m2_c00137{transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);}
.m154_c00137{transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);}
.ma6_c00137{transform:matrix(0.071375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071375,0.000000,0.000000,0.250000,0,0);}
.me5_c00137{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.m64_c00137{transform:matrix(0.076025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076025,0.000000,0.000000,0.250000,0,0);}
.mdf_c00137{transform:matrix(0.080350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080350,0.000000,0.000000,0.250000,0,0);}
.m2f_c00137{transform:matrix(0.088525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088525,0.000000,0.000000,0.250000,0,0);}
.m134_c00137{transform:matrix(0.095675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095675,0.000000,0.000000,0.250000,0,0);}
.m118_c00137{transform:matrix(0.100800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100800,0.000000,0.000000,0.250000,0,0);}
.m127_c00137{transform:matrix(0.102800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102800,0.000000,0.000000,0.250000,0,0);}
.m123_c00137{transform:matrix(0.104350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104350,0.000000,0.000000,0.250000,0,0);}
.m122_c00137{transform:matrix(0.105700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105700,0.000000,0.000000,0.250000,0,0);}
.m75_c00137{transform:matrix(0.108525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108525,0.000000,0.000000,0.250000,0,0);}
.m160_c00137{transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);}
.m15a_c00137{transform:matrix(0.115700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115700,0.000000,0.000000,0.250000,0,0);}
.m30_c00137{transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);}
.m161_c00137{transform:matrix(0.117050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117050,0.000000,0.000000,0.250000,0,0);}
.m93_c00137{transform:matrix(0.119525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119525,0.000000,0.000000,0.250000,0,0);}
.m162_c00137{transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);}
.mf2_c00137{transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);}
.m15f_c00137{transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);}
.m2b_c00137{transform:matrix(0.124775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124775,0.000000,0.000000,0.250000,0,0);}
.m11e_c00137{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m100_c00137{transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);}
.m163_c00137{transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);}
.m6d_c00137{transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);}
.m28_c00137{transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);}
.m14d_c00137{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);}
.m120_c00137{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m15c_c00137{transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);}
.m121_c00137{transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);}
.mf3_c00137{transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);}
.m49_c00137{transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);}
.m10e_c00137{transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);}
.mfd_c00137{transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);}
.m11f_c00137{transform:matrix(0.135600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135600,0.000000,0.000000,0.250000,0,0);}
.m48_c00137{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.m3c_c00137{transform:matrix(0.138025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138025,0.000000,0.000000,0.250000,0,0);}
.m91_c00137{transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);}
.mbf_c00137{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m65_c00137{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m12_c00137{transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);}
.m158_c00137{transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);}
.m2d_c00137{transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);}
.mda_c00137{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m142_c00137{transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);}
.m14a_c00137{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.mfa_c00137{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.m13a_c00137{transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);}
.m8_c00137{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mde_c00137{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);}
.m109_c00137{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);}
.m39_c00137{transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);}
.m157_c00137{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.m68_c00137{transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);}
.mfc_c00137{transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);}
.mb8_c00137{transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);}
.m24_c00137{transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);}
.m111_c00137{transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);}
.m13b_c00137{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.mca_c00137{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);}
.m132_c00137{transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);}
.m67_c00137{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);}
.me0_c00137{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.m113_c00137{transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);}
.mb3_c00137{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.mce_c00137{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);}
.m15_c00137{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);}
.m167_c00137{transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);}
.m94_c00137{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.m15d_c00137{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);}
.m14c_c00137{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m8d_c00137{transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);}
.m12b_c00137{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);}
.mb9_c00137{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);}
.m10f_c00137{transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);}
.m66_c00137{transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);}
.m3d_c00137{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m110_c00137{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.m99_c00137{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.m14e_c00137{transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);}
.m7a_c00137{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m166_c00137{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m137_c00137{transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);}
.m143_c00137{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.ma4_c00137{transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);}
.m11a_c00137{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m8a_c00137{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m107_c00137{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00137{transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);}
.m128_c00137{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.m3f_c00137{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.m80_c00137{transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);}
.m11d_c00137{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.m4b_c00137{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);}
.m165_c00137{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.m155_c00137{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m114_c00137{transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);}
.mae_c00137{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.ma3_c00137{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.mb2_c00137{transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);}
.m169_c00137{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.m131_c00137{transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);}
.m116_c00137{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);}
.me7_c00137{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m146_c00137{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00137{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.m7_c00137{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.m159_c00137{transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);}
.md3_c00137{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.m168_c00137{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m104_c00137{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);}
.ma0_c00137{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);}
.mf4_c00137{transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);}
.m10a_c00137{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.mef_c00137{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.mb7_c00137{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.mf9_c00137{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m103_c00137{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);}
.m13c_c00137{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);}
.m96_c00137{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.m12d_c00137{transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);}
.m106_c00137{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m61_c00137{transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);}
.m47_c00137{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);}
.m9f_c00137{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m149_c00137{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00137{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);}
.mf1_c00137{transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);}
.m16a_c00137{transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);}
.mf5_c00137{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);}
.me3_c00137{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m147_c00137{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);}
.m12c_c00137{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.mb1_c00137{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.md2_c00137{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.m7f_c00137{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.m5f_c00137{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);}
.m81_c00137{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.m4c_c00137{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);}
.m170_c00137{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.m52_c00137{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m3a_c00137{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m105_c00137{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m136_c00137{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.md0_c00137{transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);}
.m135_c00137{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);}
.m8e_c00137{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.m124_c00137{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.m15e_c00137{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.md4_c00137{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);}
.mdc_c00137{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.mac_c00137{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m11c_c00137{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);}
.m133_c00137{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);}
.mf8_c00137{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.m11b_c00137{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m9c_c00137{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m13f_c00137{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);}
.m7e_c00137{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.mfe_c00137{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m16d_c00137{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);}
.m150_c00137{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.m151_c00137{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);}
.mc2_c00137{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.m14b_c00137{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.m53_c00137{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m4e_c00137{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);}
.mc0_c00137{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.m35_c00137{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);}
.m102_c00137{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);}
.m6c_c00137{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.m4a_c00137{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.maf_c00137{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.m152_c00137{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m92_c00137{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);}
.mcf_c00137{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);}
.mc6_c00137{transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);}
.m9a_c00137{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.m59_c00137{transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);}
.m26_c00137{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m119_c00137{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.mb6_c00137{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);}
.m15b_c00137{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);}
.m8b_c00137{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);}
.m10d_c00137{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.mbe_c00137{transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);}
.m9b_c00137{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);}
.maa_c00137{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);}
.m16e_c00137{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00137{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.mc8_c00137{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.meb_c00137{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.mc3_c00137{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);}
.m6b_c00137{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);}
.mea_c00137{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m129_c00137{transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);}
.m46_c00137{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);}
.m16b_c00137{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);}
.md5_c00137{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);}
.m34_c00137{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.me1_c00137{transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);}
.m1c_c00137{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);}
.m8c_c00137{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m56_c00137{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m63_c00137{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);}
.ma9_c00137{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.ma7_c00137{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.mc7_c00137{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00137{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.m31_c00137{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);}
.m13e_c00137{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);}
.m23_c00137{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.m29_c00137{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m115_c00137{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);}
.m90_c00137{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mf0_c00137{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);}
.m84_c00137{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);}
.mf6_c00137{transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);}
.m13d_c00137{transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);}
.m72_c00137{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);}
.m6f_c00137{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);}
.mba_c00137{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.md8_c00137{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);}
.m73_c00137{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);}
.m98_c00137{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mff_c00137{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);}
.mbc_c00137{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);}
.ma5_c00137{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.me6_c00137{transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);}
.m12a_c00137{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);}
.m86_c00137{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.ma1_c00137{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.m22_c00137{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);}
.mcb_c00137{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);}
.m14f_c00137{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);}
.m88_c00137{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);}
.m11_c00137{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m139_c00137{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);}
.mf7_c00137{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);}
.m5a_c00137{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.m164_c00137{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m32_c00137{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m144_c00137{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);}
.me8_c00137{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);}
.m1f_c00137{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.m74_c00137{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);}
.m130_c00137{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.mb0_c00137{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m145_c00137{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.mc4_c00137{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);}
.m21_c00137{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);}
.ma8_c00137{transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);}
.m44_c00137{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);}
.m2c_c00137{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);}
.m3b_c00137{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.mdb_c00137{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m148_c00137{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m70_c00137{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.mb4_c00137{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);}
.m27_c00137{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.me2_c00137{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m141_c00137{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);}
.m10_c00137{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.mad_c00137{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);}
.md7_c00137{transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);}
.m10b_c00137{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m9d_c00137{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);}
.m20_c00137{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);}
.mec_c00137{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.m54_c00137{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);}
.m2e_c00137{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);}
.m25_c00137{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);}
.m4d_c00137{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);}
.m5d_c00137{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m36_c00137{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);}
.m19_c00137{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);}
.m97_c00137{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);}
.m6_c00137{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);}
.m4f_c00137{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m58_c00137{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m45_c00137{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m41_c00137{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);}
.m5e_c00137{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m16_c00137{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);}
.m1_c00137{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);}
.m101_c00137{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00137{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);}
.m38_c00137{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m40_c00137{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00137{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);}
.m17_c00137{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m69_c00137{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);}
.me_c00137{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);}
.m37_c00137{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00137{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m43_c00137{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);}
.md6_c00137{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c00137{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m57_c00137{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00137{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00137{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00137{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m171_c00137{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c00137{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00137{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00137{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);}
.m55_c00137{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00137{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00137{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mee_c00137{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00137{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);}
.m1b_c00137{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m16f_c00137{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m14_c00137{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);}
.ma_c00137{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00137{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);}
.m1d_c00137{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.med_c00137{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m62_c00137{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00137{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md1_c00137{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);}
.m82_c00137{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m83_c00137{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m112_c00137{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00137{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00137{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m9_c00137{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);}
.m6e_c00137{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);}
.m60_c00137{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00137{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m78_c00137{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00137{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);}
.mb5_c00137{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00137{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00137{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mab_c00137{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);}
.m76_c00137{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md9_c00137{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00137{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m33_c00137{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m108_c00137{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);}
.m2a_c00137{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m50_c00137{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m153_c00137{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m42_c00137{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m16c_c00137{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.me9_c00137{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m95_c00137{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m87_c00137{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m85_c00137{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00137{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.me4_c00137{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m125_c00137{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00137{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m89_c00137{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m172_c00137{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m71_c00137{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00137{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m51_c00137{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00137{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m3_c00137{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.m173_c00137{transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);}
.m117_c00137{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m156_c00137{transform:matrix(1.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.530000,0.000000,0.000000,0.250000,0,0);}
.m140_c00137{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m77_c00137{transform:matrix(2.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.112500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00137{transform:matrix(2.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.255000,0.000000,0.000000,0.250000,0,0);}
.m79_c00137{transform:matrix(2.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.625000,0.000000,0.000000,0.250000,0,0);}
.v4_c00137{vertical-align:-6.900000px;}
.v0_c00137{vertical-align:0.000000px;}
.v3_c00137{vertical-align:3.480000px;}
.v1_c00137{vertical-align:6.900000px;}
.v2_c00137{vertical-align:20.760000px;}
.ls2_c00137{letter-spacing:0.000000px;}
.ls0_c00137{letter-spacing:18.479160px;}
.ls1_c00137{letter-spacing:71.126688px;}
.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;}
}
.ws1_c00137{word-spacing:-27.593400px;}
.ws0_c00137{word-spacing:-13.261500px;}
.ws2_c00137{word-spacing:0.000000px;}
.fc0_c00137{color:transparent;}
.fs16_c00137{font-size:3.456000px;}
.fs4_c00137{font-size:6.000000px;}
.fs1a_c00137{font-size:6.900000px;}
.fs25_c00137{font-size:10.380000px;}
.fs1e_c00137{font-size:13.800000px;}
.fs23_c00137{font-size:17.280000px;}
.fs0_c00137{font-size:20.760000px;}
.fs18_c00137{font-size:24.180000px;}
.fs1_c00137{font-size:27.660000px;}
.fs1d_c00137{font-size:31.080000px;}
.fs1b_c00137{font-size:34.560000px;}
.fs11_c00137{font-size:38.040000px;}
.fs1f_c00137{font-size:41.460000px;}
.fs21_c00137{font-size:44.940000px;}
.fs22_c00137{font-size:48.360000px;}
.fs24_c00137{font-size:51.840000px;}
.fs19_c00137{font-size:55.320000px;}
.fs9_c00137{font-size:58.740000px;}
.fs2_c00137{font-size:62.220000px;}
.fs5_c00137{font-size:65.640000px;}
.fs3_c00137{font-size:69.120000px;}
.fs6_c00137{font-size:72.600000px;}
.fsd_c00137{font-size:76.020000px;}
.fs17_c00137{font-size:79.500000px;}
.fs1c_c00137{font-size:82.920000px;}
.fse_c00137{font-size:86.400000px;}
.fs7_c00137{font-size:89.880000px;}
.fsf_c00137{font-size:93.300000px;}
.fsc_c00137{font-size:96.780000px;}
.fs20_c00137{font-size:100.200000px;}
.fsb_c00137{font-size:103.680000px;}
.fs15_c00137{font-size:107.160000px;}
.fsa_c00137{font-size:110.580000px;}
.fs13_c00137{font-size:114.060000px;}
.fs27_c00137{font-size:117.480000px;}
.fs8_c00137{font-size:120.960000px;}
.fs26_c00137{font-size:124.440000px;}
.fs14_c00137{font-size:127.860000px;}
.fs12_c00137{font-size:131.340000px;}
.fs10_c00137{font-size:134.760000px;}
.y0_c00137{bottom:0.000000px;}
.y185_c00137{bottom:63.075000px;}
.y184_c00137{bottom:63.930000px;}
.y183_c00137{bottom:66.525000px;}
.y186_c00137{bottom:194.400000px;}
.y182_c00137{bottom:217.725000px;}
.y17b_c00137{bottom:219.450000px;}
.y177_c00137{bottom:220.320000px;}
.y180_c00137{bottom:222.045000px;}
.y17d_c00137{bottom:222.915000px;}
.y179_c00137{bottom:223.770000px;}
.y178_c00137{bottom:225.510000px;}
.y181_c00137{bottom:226.365000px;}
.y17c_c00137{bottom:227.235000px;}
.y17a_c00137{bottom:228.090000px;}
.y17e_c00137{bottom:228.960000px;}
.y17f_c00137{bottom:229.830000px;}
.y173_c00137{bottom:241.920000px;}
.y172_c00137{bottom:242.790000px;}
.y174_c00137{bottom:243.645000px;}
.y16f_c00137{bottom:245.370000px;}
.y170_c00137{bottom:246.240000px;}
.y171_c00137{bottom:250.560000px;}
.y176_c00137{bottom:251.430000px;}
.y175_c00137{bottom:253.155000px;}
.y16d_c00137{bottom:267.840000px;}
.y16a_c00137{bottom:269.565000px;}
.y16e_c00137{bottom:270.435000px;}
.y16b_c00137{bottom:271.290000px;}
.y16c_c00137{bottom:274.755000px;}
.y167_c00137{bottom:276.480000px;}
.y169_c00137{bottom:280.800000px;}
.y168_c00137{bottom:285.990000px;}
.y160_c00137{bottom:296.355000px;}
.y162_c00137{bottom:297.210000px;}
.y164_c00137{bottom:298.950000px;}
.y161_c00137{bottom:300.675000px;}
.y15f_c00137{bottom:301.530000px;}
.y165_c00137{bottom:302.400000px;}
.y163_c00137{bottom:304.125000px;}
.y166_c00137{bottom:307.590000px;}
.y15d_c00137{bottom:318.810000px;}
.y15c_c00137{bottom:319.680000px;}
.y159_c00137{bottom:320.550000px;}
.y157_c00137{bottom:322.275000px;}
.y15a_c00137{bottom:323.130000px;}
.y158_c00137{bottom:325.725000px;}
.y15b_c00137{bottom:327.450000px;}
.y15e_c00137{bottom:338.685000px;}
.y155_c00137{bottom:343.875000px;}
.y154_c00137{bottom:344.730000px;}
.y153_c00137{bottom:345.600000px;}
.y151_c00137{bottom:347.325000px;}
.y156_c00137{bottom:353.370000px;}
.y152_c00137{bottom:354.240000px;}
.y150_c00137{bottom:358.560000px;}
.y149_c00137{bottom:370.650000px;}
.y148_c00137{bottom:371.520000px;}
.y14a_c00137{bottom:372.390000px;}
.y14b_c00137{bottom:374.115000px;}
.y14d_c00137{bottom:376.710000px;}
.y14e_c00137{bottom:378.435000px;}
.y14c_c00137{bottom:379.290000px;}
.y14f_c00137{bottom:393.120000px;}
.y140_c00137{bottom:397.440000px;}
.y145_c00137{bottom:398.310000px;}
.y143_c00137{bottom:399.165000px;}
.y144_c00137{bottom:400.035000px;}
.y142_c00137{bottom:400.890000px;}
.y141_c00137{bottom:402.630000px;}
.y146_c00137{bottom:406.080000px;}
.y147_c00137{bottom:414.720000px;}
.y13e_c00137{bottom:420.765000px;}
.y13d_c00137{bottom:422.490000px;}
.y139_c00137{bottom:423.360000px;}
.y13b_c00137{bottom:424.230000px;}
.y13a_c00137{bottom:425.085000px;}
.y13c_c00137{bottom:428.550000px;}
.y13f_c00137{bottom:435.450000px;}
.y134_c00137{bottom:439.770000px;}
.y133_c00137{bottom:440.640000px;}
.y136_c00137{bottom:441.510000px;}
.y135_c00137{bottom:442.365000px;}
.y138_c00137{bottom:447.555000px;}
.y137_c00137{bottom:448.410000px;}
.y12c_c00137{bottom:470.880000px;}
.y12e_c00137{bottom:471.750000px;}
.y130_c00137{bottom:474.330000px;}
.y12f_c00137{bottom:475.200000px;}
.y131_c00137{bottom:476.925000px;}
.y12d_c00137{bottom:477.795000px;}
.y132_c00137{bottom:481.245000px;}
.y12b_c00137{bottom:485.565000px;}
.y126_c00137{bottom:495.930000px;}
.y12a_c00137{bottom:496.800000px;}
.y127_c00137{bottom:498.525000px;}
.y122_c00137{bottom:499.395000px;}
.y124_c00137{bottom:500.250000px;}
.y123_c00137{bottom:501.120000px;}
.y125_c00137{bottom:503.715000px;}
.y128_c00137{bottom:505.440000px;}
.y129_c00137{bottom:506.310000px;}
.y11d_c00137{bottom:521.850000px;}
.y120_c00137{bottom:522.720000px;}
.y11a_c00137{bottom:523.590000px;}
.y11e_c00137{bottom:525.315000px;}
.y11b_c00137{bottom:526.170000px;}
.y121_c00137{bottom:527.040000px;}
.y11f_c00137{bottom:528.765000px;}
.y11c_c00137{bottom:529.635000px;}
.y115_c00137{bottom:546.045000px;}
.y119_c00137{bottom:546.915000px;}
.y118_c00137{bottom:547.770000px;}
.y116_c00137{bottom:553.830000px;}
.y117_c00137{bottom:554.685000px;}
.y114_c00137{bottom:558.150000px;}
.y10e_c00137{bottom:571.110000px;}
.y112_c00137{bottom:571.965000px;}
.y10f_c00137{bottom:572.835000px;}
.y10b_c00137{bottom:575.430000px;}
.y110_c00137{bottom:576.285000px;}
.y111_c00137{bottom:577.155000px;}
.y10c_c00137{bottom:578.880000px;}
.y10d_c00137{bottom:579.750000px;}
.y113_c00137{bottom:591.840000px;}
.y103_c00137{bottom:596.160000px;}
.y108_c00137{bottom:597.030000px;}
.y102_c00137{bottom:597.885000px;}
.y104_c00137{bottom:598.755000px;}
.y101_c00137{bottom:599.610000px;}
.y100_c00137{bottom:601.350000px;}
.y106_c00137{bottom:602.205000px;}
.y105_c00137{bottom:603.930000px;}
.y107_c00137{bottom:604.800000px;}
.y10a_c00137{bottom:610.845000px;}
.y109_c00137{bottom:613.440000px;}
.yfc_c00137{bottom:625.530000px;}
.yfe_c00137{bottom:626.400000px;}
.yff_c00137{bottom:627.270000px;}
.yfd_c00137{bottom:628.125000px;}
.yf4_c00137{bottom:648.000000px;}
.yfb_c00137{bottom:648.870000px;}
.yf8_c00137{bottom:649.725000px;}
.yf7_c00137{bottom:653.190000px;}
.yf6_c00137{bottom:654.045000px;}
.yfa_c00137{bottom:654.915000px;}
.yf5_c00137{bottom:655.770000px;}
.yf9_c00137{bottom:656.640000px;}
.yef_c00137{bottom:672.195000px;}
.yf3_c00137{bottom:673.050000px;}
.yf0_c00137{bottom:673.920000px;}
.yed_c00137{bottom:676.515000px;}
.yec_c00137{bottom:679.110000px;}
.yf2_c00137{bottom:679.965000px;}
.yee_c00137{bottom:680.835000px;}
.yf1_c00137{bottom:681.690000px;}
.ye9_c00137{bottom:697.245000px;}
.yeb_c00137{bottom:698.115000px;}
.ye8_c00137{bottom:699.840000px;}
.yea_c00137{bottom:701.565000px;}
.ye6_c00137{bottom:702.435000px;}
.ye7_c00137{bottom:705.030000px;}
.ye5_c00137{bottom:712.800000px;}
.ye1_c00137{bottom:721.440000px;}
.ye3_c00137{bottom:722.310000px;}
.ye4_c00137{bottom:724.890000px;}
.ye0_c00137{bottom:728.355000px;}
.ydf_c00137{bottom:729.210000px;}
.ye2_c00137{bottom:730.080000px;}
.yde_c00137{bottom:740.445000px;}
.y187_c00137{bottom:743.910000px;}
.yd8_c00137{bottom:746.490000px;}
.ydb_c00137{bottom:748.230000px;}
.yd7_c00137{bottom:749.085000px;}
.yda_c00137{bottom:752.550000px;}
.ydc_c00137{bottom:753.405000px;}
.yd9_c00137{bottom:754.275000px;}
.ydd_c00137{bottom:769.830000px;}
.ycf_c00137{bottom:771.555000px;}
.yd4_c00137{bottom:772.410000px;}
.yd2_c00137{bottom:773.280000px;}
.yd6_c00137{bottom:776.730000px;}
.yd1_c00137{bottom:777.600000px;}
.yd0_c00137{bottom:778.470000px;}
.yce_c00137{bottom:781.050000px;}
.yd5_c00137{bottom:784.515000px;}
.yd3_c00137{bottom:790.560000px;}
.ycb_c00137{bottom:794.010000px;}
.ycc_c00137{bottom:794.880000px;}
.yc8_c00137{bottom:800.925000px;}
.yca_c00137{bottom:801.795000px;}
.yc9_c00137{bottom:802.650000px;}
.ycd_c00137{bottom:809.565000px;}
.yc4_c00137{bottom:818.205000px;}
.yc7_c00137{bottom:819.075000px;}
.yc2_c00137{bottom:819.930000px;}
.yc5_c00137{bottom:823.395000px;}
.yc6_c00137{bottom:825.120000px;}
.yc3_c00137{bottom:825.990000px;}
.ybb_c00137{bottom:843.270000px;}
.ybc_c00137{bottom:844.125000px;}
.yba_c00137{bottom:844.995000px;}
.yc0_c00137{bottom:847.590000px;}
.ybf_c00137{bottom:850.170000px;}
.ybe_c00137{bottom:851.040000px;}
.ybd_c00137{bottom:851.910000px;}
.yc1_c00137{bottom:856.230000px;}
.yb7_c00137{bottom:867.450000px;}
.yb6_c00137{bottom:868.320000px;}
.yb3_c00137{bottom:869.190000px;}
.yb1_c00137{bottom:870.915000px;}
.yb5_c00137{bottom:873.510000px;}
.yb4_c00137{bottom:876.090000px;}
.yb2_c00137{bottom:876.960000px;}
.yb8_c00137{bottom:877.830000px;}
.yb9_c00137{bottom:889.050000px;}
.yae_c00137{bottom:893.370000px;}
.yad_c00137{bottom:894.240000px;}
.yaf_c00137{bottom:895.110000px;}
.yab_c00137{bottom:897.690000px;}
.yaa_c00137{bottom:901.155000px;}
.yac_c00137{bottom:902.010000px;}
.yb0_c00137{bottom:902.880000px;}
.ya4_c00137{bottom:919.290000px;}
.ya6_c00137{bottom:920.160000px;}
.ya7_c00137{bottom:923.610000px;}
.ya9_c00137{bottom:925.350000px;}
.ya3_c00137{bottom:926.205000px;}
.ya5_c00137{bottom:927.075000px;}
.ya8_c00137{bottom:927.930000px;}
.y9e_c00137{bottom:944.355000px;}
.y9c_c00137{bottom:946.080000px;}
.y9d_c00137{bottom:947.805000px;}
.ya0_c00137{bottom:948.675000px;}
.ya1_c00137{bottom:950.400000px;}
.y9f_c00137{bottom:952.125000px;}
.ya2_c00137{bottom:953.850000px;}
.y94_c00137{bottom:968.550000px;}
.y9a_c00137{bottom:969.405000px;}
.y96_c00137{bottom:970.275000px;}
.y99_c00137{bottom:971.130000px;}
.y97_c00137{bottom:972.000000px;}
.y95_c00137{bottom:976.320000px;}
.y98_c00137{bottom:977.190000px;}
.y9b_c00137{bottom:978.045000px;}
.y93_c00137{bottom:981.510000px;}
.y8c_c00137{bottom:993.600000px;}
.y8e_c00137{bottom:995.325000px;}
.y8d_c00137{bottom:999.645000px;}
.y8b_c00137{bottom:1001.370000px;}
.y8f_c00137{bottom:1004.835000px;}
.y91_c00137{bottom:1006.560000px;}
.y90_c00137{bottom:1010.880000px;}
.y92_c00137{bottom:1016.925000px;}
.y86_c00137{bottom:1018.650000px;}
.y8a_c00137{bottom:1021.245000px;}
.y89_c00137{bottom:1023.840000px;}
.y88_c00137{bottom:1024.710000px;}
.y87_c00137{bottom:1025.565000px;}
.y85_c00137{bottom:1026.435000px;}
.y84_c00137{bottom:1027.290000px;}
.y7e_c00137{bottom:1047.165000px;}
.y80_c00137{bottom:1048.035000px;}
.y81_c00137{bottom:1048.890000px;}
.y83_c00137{bottom:1049.760000px;}
.y7f_c00137{bottom:1051.485000px;}
.y82_c00137{bottom:1052.355000px;}
.y7b_c00137{bottom:1054.080000px;}
.y7c_c00137{bottom:1054.950000px;}
.y7a_c00137{bottom:1060.995000px;}
.y76_c00137{bottom:1061.850000px;}
.y77_c00137{bottom:1062.720000px;}
.y78_c00137{bottom:1063.590000px;}
.y75_c00137{bottom:1064.445000px;}
.y79_c00137{bottom:1065.315000px;}
.y7d_c00137{bottom:1066.170000px;}
.y6e_c00137{bottom:1070.490000px;}
.y71_c00137{bottom:1071.360000px;}
.y72_c00137{bottom:1072.230000px;}
.y6f_c00137{bottom:1073.085000px;}
.y74_c00137{bottom:1074.810000px;}
.y70_c00137{bottom:1075.680000px;}
.y6d_c00137{bottom:1076.550000px;}
.y6c_c00137{bottom:1077.405000px;}
.y73_c00137{bottom:1080.000000px;}
.y66_c00137{bottom:1094.685000px;}
.y6b_c00137{bottom:1095.555000px;}
.y6a_c00137{bottom:1097.280000px;}
.y69_c00137{bottom:1099.875000px;}
.y67_c00137{bottom:1102.470000px;}
.y68_c00137{bottom:1103.325000px;}
.y5b_c00137{bottom:1120.605000px;}
.y5d_c00137{bottom:1121.475000px;}
.y62_c00137{bottom:1123.200000px;}
.y59_c00137{bottom:1124.925000px;}
.y5f_c00137{bottom:1125.795000px;}
.y60_c00137{bottom:1126.650000px;}
.y5a_c00137{bottom:1127.520000px;}
.y5c_c00137{bottom:1128.390000px;}
.y5e_c00137{bottom:1129.245000px;}
.y61_c00137{bottom:1130.115000px;}
.y63_c00137{bottom:1130.970000px;}
.y64_c00137{bottom:1131.840000px;}
.y65_c00137{bottom:1133.565000px;}
.y51_c00137{bottom:1145.670000px;}
.y52_c00137{bottom:1146.525000px;}
.y57_c00137{bottom:1147.395000px;}
.y55_c00137{bottom:1149.120000px;}
.y56_c00137{bottom:1151.715000px;}
.y53_c00137{bottom:1153.440000px;}
.y54_c00137{bottom:1154.310000px;}
.y58_c00137{bottom:1155.165000px;}
.y48_c00137{bottom:1170.720000px;}
.y50_c00137{bottom:1171.590000px;}
.y4a_c00137{bottom:1172.445000px;}
.y4c_c00137{bottom:1173.315000px;}
.y4e_c00137{bottom:1176.765000px;}
.y4f_c00137{bottom:1177.635000px;}
.y49_c00137{bottom:1178.490000px;}
.y4b_c00137{bottom:1181.085000px;}
.y4d_c00137{bottom:1181.955000px;}
.y47_c00137{bottom:1185.405000px;}
.y39_c00137{bottom:1195.770000px;}
.y3e_c00137{bottom:1196.640000px;}
.y3d_c00137{bottom:1199.235000px;}
.y3f_c00137{bottom:1200.090000px;}
.y42_c00137{bottom:1200.960000px;}
.y40_c00137{bottom:1201.830000px;}
.y3a_c00137{bottom:1202.685000px;}
.y3c_c00137{bottom:1203.555000px;}
.y3b_c00137{bottom:1204.410000px;}
.y43_c00137{bottom:1205.280000px;}
.y41_c00137{bottom:1206.150000px;}
.y44_c00137{bottom:1207.005000px;}
.y45_c00137{bottom:1209.600000px;}
.y46_c00137{bottom:1211.325000px;}
.y31_c00137{bottom:1223.430000px;}
.y32_c00137{bottom:1224.285000px;}
.y2f_c00137{bottom:1225.155000px;}
.y30_c00137{bottom:1226.010000px;}
.y34_c00137{bottom:1226.880000px;}
.y38_c00137{bottom:1227.750000px;}
.y35_c00137{bottom:1228.605000px;}
.y33_c00137{bottom:1230.330000px;}
.y36_c00137{bottom:1231.200000px;}
.y37_c00137{bottom:1232.070000px;}
.y3_c00137{bottom:1236.390000px;}
.y4_c00137{bottom:1242.435000px;}
.y2d_c00137{bottom:1246.755000px;}
.y2e_c00137{bottom:1248.480000px;}
.y29_c00137{bottom:1249.350000px;}
.y2b_c00137{bottom:1250.205000px;}
.y2a_c00137{bottom:1252.800000px;}
.y2c_c00137{bottom:1255.395000px;}
.y1f_c00137{bottom:1263.165000px;}
.y26_c00137{bottom:1264.890000px;}
.y22_c00137{bottom:1265.760000px;}
.y27_c00137{bottom:1266.630000px;}
.y24_c00137{bottom:1270.080000px;}
.y20_c00137{bottom:1272.675000px;}
.y23_c00137{bottom:1275.270000px;}
.y2_c00137{bottom:1276.995000px;}
.y25_c00137{bottom:1278.720000px;}
.y21_c00137{bottom:1280.445000px;}
.y1_c00137{bottom:1286.490000px;}
.y28_c00137{bottom:1296.870000px;}
.y1b_c00137{bottom:1298.595000px;}
.y1a_c00137{bottom:1302.915000px;}
.y1e_c00137{bottom:1304.640000px;}
.y1c_c00137{bottom:1305.510000px;}
.y1d_c00137{bottom:1306.365000px;}
.y14_c00137{bottom:1321.050000px;}
.y19_c00137{bottom:1322.790000px;}
.y18_c00137{bottom:1324.515000px;}
.y17_c00137{bottom:1325.370000px;}
.y13_c00137{bottom:1327.965000px;}
.y15_c00137{bottom:1328.835000px;}
.y16_c00137{bottom:1331.430000px;}
.yc_c00137{bottom:1346.970000px;}
.y12_c00137{bottom:1347.840000px;}
.yf_c00137{bottom:1349.565000px;}
.yb_c00137{bottom:1351.290000px;}
.y11_c00137{bottom:1353.885000px;}
.yd_c00137{bottom:1354.755000px;}
.y10_c00137{bottom:1355.610000px;}
.ye_c00137{bottom:1356.480000px;}
.ya_c00137{bottom:1380.675000px;}
.y9_c00137{bottom:1385.850000px;}
.y8_c00137{bottom:1386.720000px;}
.y5_c00137{bottom:1387.590000px;}
.y7_c00137{bottom:1388.445000px;}
.y6_c00137{bottom:1407.450000px;}
.h18_c00137{height:3.110063px;}
.h6_c00137{height:5.399414px;}
.h1c_c00137{height:6.209326px;}
.h29_c00137{height:9.340986px;}
.h20_c00137{height:12.418652px;}
.h25_c00137{height:15.550313px;}
.h2_c00137{height:18.681973px;}
.h1a_c00137{height:21.759639px;}
.h3_c00137{height:24.891299px;}
.h1f_c00137{height:27.968965px;}
.h1d_c00137{height:31.100625px;}
.h13_c00137{height:34.232285px;}
.h21_c00137{height:37.309951px;}
.h23_c00137{height:40.441611px;}
.h24_c00137{height:43.519277px;}
.h26_c00137{height:46.650937px;}
.h1b_c00137{height:49.782598px;}
.hb_c00137{height:52.860264px;}
.h4_c00137{height:55.991924px;}
.h7_c00137{height:59.069590px;}
.h5_c00137{height:62.201250px;}
.h8_c00137{height:65.332910px;}
.hf_c00137{height:68.410576px;}
.h19_c00137{height:71.542236px;}
.h27_c00137{height:72.232910px;}
.h1e_c00137{height:74.619902px;}
.h10_c00137{height:77.751563px;}
.h9_c00137{height:80.883223px;}
.h11_c00137{height:83.960889px;}
.he_c00137{height:87.092549px;}
.h22_c00137{height:90.170215px;}
.hd_c00137{height:93.301875px;}
.h28_c00137{height:95.379902px;}
.h17_c00137{height:96.433535px;}
.hc_c00137{height:99.511201px;}
.h15_c00137{height:102.642861px;}
.h2b_c00137{height:105.720527px;}
.ha_c00137{height:108.852188px;}
.h2a_c00137{height:111.983848px;}
.h16_c00137{height:115.061514px;}
.h14_c00137{height:118.193174px;}
.h12_c00137{height:121.270840px;}
.h1_c00137{height:1503.000000px;}
.h0_c00137{height:1503.360000px;}
.w0_c00137{width:1088.640000px;}
.w1_c00137{width:1089.000000px;}
.x0_c00137{left:0.000000px;}
.x2_c00137{left:76.035000px;}
.x1_c00137{left:81.210000px;}
.x3_c00137{left:109.725000px;}
.x4_c00137{left:118.365000px;}
.x10a_c00137{left:150.330000px;}
.x10b_c00137{left:173.670000px;}
.x10c_c00137{left:184.890000px;}
.x104_c00137{left:211.680000px;}
.xcc_c00137{left:213.405000px;}
.x100_c00137{left:219.450000px;}
.x54_c00137{left:224.640000px;}
.x61_c00137{left:228.960000px;}
.x46_c00137{left:231.555000px;}
.xfc_c00137{left:233.280000px;}
.xc7_c00137{left:235.005000px;}
.xb1_c00137{left:237.600000px;}
.x5a_c00137{left:240.195000px;}
.x2b_c00137{left:242.790000px;}
.x12_c00137{left:244.515000px;}
.x105_c00137{left:253.155000px;}
.xe7_c00137{left:255.750000px;}
.x9e_c00137{left:260.070000px;}
.x106_c00137{left:261.795000px;}
.x26_c00137{left:264.390000px;}
.xf6_c00137{left:266.115000px;}
.x92_c00137{left:267.840000px;}
.x47_c00137{left:270.435000px;}
.x1c_c00137{left:273.030000px;}
.xdb_c00137{left:277.350000px;}
.x62_c00137{left:279.930000px;}
.x89_c00137{left:281.670000px;}
.xba_c00137{left:285.120000px;}
.x73_c00137{left:286.845000px;}
.xc8_c00137{left:289.440000px;}
.x79_c00137{left:291.165000px;}
.x3d_c00137{left:292.890000px;}
.x13_c00137{left:296.355000px;}
.xab_c00137{left:298.080000px;}
.xc9_c00137{left:299.805000px;}
.x8e_c00137{left:301.530000px;}
.xe2_c00137{left:303.270000px;}
.xbb_c00137{left:306.720000px;}
.xfd_c00137{left:310.170000px;}
.x9f_c00137{left:311.910000px;}
.x3e_c00137{left:315.360000px;}
.x6d_c00137{left:317.085000px;}
.x36_c00137{left:319.680000px;}
.x84_c00137{left:322.275000px;}
.xee_c00137{left:324.000000px;}
.xb2_c00137{left:325.725000px;}
.x48_c00137{left:327.450000px;}
.x63_c00137{left:330.045000px;}
.x49_c00137{left:333.510000px;}
.x27_c00137{left:337.830000px;}
.xa7_c00137{left:340.410000px;}
.xfe_c00137{left:342.150000px;}
.x85_c00137{left:343.875000px;}
.x1d_c00137{left:346.470000px;}
.xd3_c00137{left:348.195000px;}
.xb3_c00137{left:352.515000px;}
.x37_c00137{left:354.240000px;}
.xea_c00137{left:358.560000px;}
.xe8_c00137{left:364.605000px;}
.x64_c00137{left:366.330000px;}
.x2c_c00137{left:368.070000px;}
.x6e_c00137{left:369.795000px;}
.x14_c00137{left:372.390000px;}
.x38_c00137{left:375.840000px;}
.xa0_c00137{left:377.565000px;}
.xc6_c00137{left:380.160000px;}
.x4a_c00137{left:386.205000px;}
.x107_c00137{left:387.930000px;}
.xcd_c00137{left:392.250000px;}
.x93_c00137{left:397.440000px;}
.xd7_c00137{left:399.165000px;}
.x74_c00137{left:400.890000px;}
.x2d_c00137{left:406.080000px;}
.x3f_c00137{left:409.530000px;}
.x94_c00137{left:411.270000px;}
.x7a_c00137{left:413.850000px;}
.xd0_c00137{left:416.445000px;}
.xbc_c00137{left:418.170000px;}
.xdc_c00137{left:420.765000px;}
.xa8_c00137{left:424.230000px;}
.xfa_c00137{left:426.810000px;}
.x4b_c00137{left:428.550000px;}
.x39_c00137{left:432.870000px;}
.x6f_c00137{left:434.595000px;}
.x5b_c00137{left:436.320000px;}
.x1e_c00137{left:441.510000px;}
.xf2_c00137{left:443.235000px;}
.x8a_c00137{left:445.830000px;}
.x2e_c00137{left:449.280000px;}
.x86_c00137{left:451.875000px;}
.xac_c00137{left:456.195000px;}
.x15_c00137{left:458.790000px;}
.x1f_c00137{left:463.110000px;}
.x95_c00137{left:465.690000px;}
.x8b_c00137{left:468.285000px;}
.x70_c00137{left:471.750000px;}
.x5_c00137{left:475.200000px;}
.x16_c00137{left:481.245000px;}
.xd8_c00137{left:484.710000px;}
.x40_c00137{left:486.435000px;}
.xc1_c00137{left:489.885000px;}
.x7b_c00137{left:491.610000px;}
.x5c_c00137{left:494.205000px;}
.x6_c00137{left:497.670000px;}
.x2f_c00137{left:500.250000px;}
.x8f_c00137{left:504.570000px;}
.x20_c00137{left:506.310000px;}
.x41_c00137{left:508.035000px;}
.xca_c00137{left:511.485000px;}
.x4c_c00137{left:513.210000px;}
.xd4_c00137{left:514.950000px;}
.x101_c00137{left:516.675000px;}
.x7_c00137{left:520.995000px;}
.x71_c00137{left:523.590000px;}
.x99_c00137{left:527.040000px;}
.xc2_c00137{left:529.635000px;}
.xf7_c00137{left:533.085000px;}
.x9a_c00137{left:534.810000px;}
.x5d_c00137{left:536.550000px;}
.xb4_c00137{left:539.130000px;}
.x8_c00137{left:540.870000px;}
.x42_c00137{left:545.190000px;}
.x21_c00137{left:546.915000px;}
.x55_c00137{left:548.640000px;}
.x90_c00137{left:550.365000px;}
.x4d_c00137{left:552.960000px;}
.x30_c00137{left:555.555000px;}
.xad_c00137{left:558.150000px;}
.xb8_c00137{left:559.875000px;}
.xa1_c00137{left:565.920000px;}
.x65_c00137{left:567.645000px;}
.x22_c00137{left:571.110000px;}
.x28_c00137{left:575.430000px;}
.x9_c00137{left:577.155000px;}
.x4e_c00137{left:578.880000px;}
.x8c_c00137{left:582.330000px;}
.xb5_c00137{left:584.925000px;}
.xa_c00137{left:587.520000px;}
.x23_c00137{left:590.115000px;}
.xa9_c00137{left:592.710000px;}
.xe3_c00137{left:595.290000px;}
.x5e_c00137{left:598.755000px;}
.x102_c00137{left:600.480000px;}
.xdd_c00137{left:602.205000px;}
.x17_c00137{left:609.120000px;}
.xb_c00137{left:610.845000px;}
.x7c_c00137{left:613.440000px;}
.xd5_c00137{left:616.035000px;}
.x72_c00137{left:617.760000px;}
.x7d_c00137{left:622.950000px;}
.x66_c00137{left:624.675000px;}
.x96_c00137{left:626.400000px;}
.xbd_c00137{left:628.125000px;}
.x3a_c00137{left:631.590000px;}
.x56_c00137{left:635.040000px;}
.xc_c00137{left:637.635000px;}
.x31_c00137{left:639.360000px;}
.xae_c00137{left:641.085000px;}
.x75_c00137{left:645.405000px;}
.x9b_c00137{left:647.130000px;}
.x18_c00137{left:648.870000px;}
.x7e_c00137{left:651.450000px;}
.x57_c00137{left:656.640000px;}
.xd_c00137{left:660.090000px;}
.x29_c00137{left:665.280000px;}
.x97_c00137{left:667.005000px;}
.xd1_c00137{left:669.600000px;}
.xf3_c00137{left:671.325000px;}
.xc3_c00137{left:677.370000px;}
.x3b_c00137{left:680.835000px;}
.xe_c00137{left:683.430000px;}
.xbe_c00137{left:686.880000px;}
.x5f_c00137{left:689.475000px;}
.xb6_c00137{left:691.200000px;}
.x67_c00137{left:695.520000px;}
.x19_c00137{left:702.435000px;}
.x7f_c00137{left:707.610000px;}
.xa2_c00137{left:710.205000px;}
.xf_c00137{left:712.800000px;}
.xd2_c00137{left:714.525000px;}
.x68_c00137{left:717.120000px;}
.x43_c00137{left:719.715000px;}
.xde_c00137{left:722.310000px;}
.x108_c00137{left:724.890000px;}
.xa3_c00137{left:727.485000px;}
.x60_c00137{left:730.080000px;}
.x10_c00137{left:735.270000px;}
.xe4_c00137{left:736.995000px;}
.xd9_c00137{left:739.590000px;}
.xce_c00137{left:742.170000px;}
.xa4_c00137{left:743.910000px;}
.xcb_c00137{left:745.635000px;}
.x3c_c00137{left:747.360000px;}
.x69_c00137{left:749.085000px;}
.x76_c00137{left:751.680000px;}
.xfb_c00137{left:754.275000px;}
.x80_c00137{left:756.000000px;}
.x77_c00137{left:760.320000px;}
.x32_c00137{left:762.045000px;}
.x44_c00137{left:764.640000px;}
.xdf_c00137{left:766.365000px;}
.x4f_c00137{left:769.830000px;}
.x6a_c00137{left:771.555000px;}
.x45_c00137{left:773.280000px;}
.x1a_c00137{left:775.005000px;}
.xe9_c00137{left:776.730000px;}
.x58_c00137{left:782.790000px;}
.xbf_c00137{left:784.515000px;}
.x24_c00137{left:786.240000px;}
.x81_c00137{left:789.690000px;}
.xb9_c00137{left:791.430000px;}
.x9c_c00137{left:793.155000px;}
.x2a_c00137{left:798.330000px;}
.xa5_c00137{left:800.070000px;}
.xda_c00137{left:801.795000px;}
.xf5_c00137{left:803.520000px;}
.x33_c00137{left:805.245000px;}
.x103_c00137{left:806.970000px;}
.x87_c00137{left:809.565000px;}
.xcf_c00137{left:811.290000px;}
.xc4_c00137{left:813.030000px;}
.x1b_c00137{left:814.755000px;}
.xd6_c00137{left:818.205000px;}
.x82_c00137{left:819.930000px;}
.x91_c00137{left:822.525000px;}
.xaf_c00137{left:825.120000px;}
.x6b_c00137{left:827.715000px;}
.x25_c00137{left:831.165000px;}
.x98_c00137{left:834.630000px;}
.x83_c00137{left:837.210000px;}
.x59_c00137{left:839.805000px;}
.x78_c00137{left:842.400000px;}
.xaa_c00137{left:844.125000px;}
.x34_c00137{left:846.720000px;}
.x50_c00137{left:851.040000px;}
.xe5_c00137{left:853.635000px;}
.x88_c00137{left:856.230000px;}
.xa6_c00137{left:858.810000px;}
.x11_c00137{left:860.550000px;}
.xe6_c00137{left:868.320000px;}
.x51_c00137{left:872.640000px;}
.xc5_c00137{left:874.365000px;}
.x6c_c00137{left:876.090000px;}
.x9d_c00137{left:878.685000px;}
.x8d_c00137{left:880.410000px;}
.x52_c00137{left:884.730000px;}
.x35_c00137{left:889.920000px;}
.xef_c00137{left:893.370000px;}
.xff_c00137{left:895.110000px;}
.xb0_c00137{left:896.835000px;}
.xf4_c00137{left:898.560000px;}
.xc0_c00137{left:901.155000px;}
.xf8_c00137{left:902.880000px;}
.x53_c00137{left:907.200000px;}
.xb7_c00137{left:908.925000px;}
.xe0_c00137{left:911.520000px;}
.xf9_c00137{left:915.840000px;}
.xe1_c00137{left:920.160000px;}
.xeb_c00137{left:921.885000px;}
.x109_c00137{left:923.610000px;}
.xf0_c00137{left:927.930000px;}
.xec_c00137{left:931.395000px;}
.xf1_c00137{left:936.570000px;}
.xed_c00137{left:946.950000px;}
.x10d_c00137{left:999.645000px;}
@media print{
.v4_c00137{vertical-align:-6.133333pt;}
.v0_c00137{vertical-align:0.000000pt;}
.v3_c00137{vertical-align:3.093333pt;}
.v1_c00137{vertical-align:6.133333pt;}
.v2_c00137{vertical-align:18.453333pt;}
.ls2_c00137{letter-spacing:0.000000pt;}
.ls0_c00137{letter-spacing:16.425920pt;}
.ls1_c00137{letter-spacing:63.223723pt;}
.ws1_c00137{word-spacing:-24.527467pt;}
.ws0_c00137{word-spacing:-11.788000pt;}
.ws2_c00137{word-spacing:0.000000pt;}
.fs16_c00137{font-size:3.072000pt;}
.fs4_c00137{font-size:5.333333pt;}
.fs1a_c00137{font-size:6.133333pt;}
.fs25_c00137{font-size:9.226667pt;}
.fs1e_c00137{font-size:12.266667pt;}
.fs23_c00137{font-size:15.360000pt;}
.fs0_c00137{font-size:18.453333pt;}
.fs18_c00137{font-size:21.493333pt;}
.fs1_c00137{font-size:24.586667pt;}
.fs1d_c00137{font-size:27.626667pt;}
.fs1b_c00137{font-size:30.720000pt;}
.fs11_c00137{font-size:33.813333pt;}
.fs1f_c00137{font-size:36.853333pt;}
.fs21_c00137{font-size:39.946667pt;}
.fs22_c00137{font-size:42.986667pt;}
.fs24_c00137{font-size:46.080000pt;}
.fs19_c00137{font-size:49.173333pt;}
.fs9_c00137{font-size:52.213333pt;}
.fs2_c00137{font-size:55.306667pt;}
.fs5_c00137{font-size:58.346667pt;}
.fs3_c00137{font-size:61.440000pt;}
.fs6_c00137{font-size:64.533333pt;}
.fsd_c00137{font-size:67.573333pt;}
.fs17_c00137{font-size:70.666667pt;}
.fs1c_c00137{font-size:73.706667pt;}
.fse_c00137{font-size:76.800000pt;}
.fs7_c00137{font-size:79.893333pt;}
.fsf_c00137{font-size:82.933333pt;}
.fsc_c00137{font-size:86.026667pt;}
.fs20_c00137{font-size:89.066667pt;}
.fsb_c00137{font-size:92.160000pt;}
.fs15_c00137{font-size:95.253333pt;}
.fsa_c00137{font-size:98.293333pt;}
.fs13_c00137{font-size:101.386667pt;}
.fs27_c00137{font-size:104.426667pt;}
.fs8_c00137{font-size:107.520000pt;}
.fs26_c00137{font-size:110.613333pt;}
.fs14_c00137{font-size:113.653333pt;}
.fs12_c00137{font-size:116.746667pt;}
.fs10_c00137{font-size:119.786667pt;}
.y0_c00137{bottom:0.000000pt;}
.y185_c00137{bottom:56.066667pt;}
.y184_c00137{bottom:56.826667pt;}
.y183_c00137{bottom:59.133333pt;}
.y186_c00137{bottom:172.800000pt;}
.y182_c00137{bottom:193.533333pt;}
.y17b_c00137{bottom:195.066667pt;}
.y177_c00137{bottom:195.840000pt;}
.y180_c00137{bottom:197.373333pt;}
.y17d_c00137{bottom:198.146667pt;}
.y179_c00137{bottom:198.906667pt;}
.y178_c00137{bottom:200.453333pt;}
.y181_c00137{bottom:201.213333pt;}
.y17c_c00137{bottom:201.986667pt;}
.y17a_c00137{bottom:202.746667pt;}
.y17e_c00137{bottom:203.520000pt;}
.y17f_c00137{bottom:204.293333pt;}
.y173_c00137{bottom:215.040000pt;}
.y172_c00137{bottom:215.813333pt;}
.y174_c00137{bottom:216.573333pt;}
.y16f_c00137{bottom:218.106667pt;}
.y170_c00137{bottom:218.880000pt;}
.y171_c00137{bottom:222.720000pt;}
.y176_c00137{bottom:223.493333pt;}
.y175_c00137{bottom:225.026667pt;}
.y16d_c00137{bottom:238.080000pt;}
.y16a_c00137{bottom:239.613333pt;}
.y16e_c00137{bottom:240.386667pt;}
.y16b_c00137{bottom:241.146667pt;}
.y16c_c00137{bottom:244.226667pt;}
.y167_c00137{bottom:245.760000pt;}
.y169_c00137{bottom:249.600000pt;}
.y168_c00137{bottom:254.213333pt;}
.y160_c00137{bottom:263.426667pt;}
.y162_c00137{bottom:264.186667pt;}
.y164_c00137{bottom:265.733333pt;}
.y161_c00137{bottom:267.266667pt;}
.y15f_c00137{bottom:268.026667pt;}
.y165_c00137{bottom:268.800000pt;}
.y163_c00137{bottom:270.333333pt;}
.y166_c00137{bottom:273.413333pt;}
.y15d_c00137{bottom:283.386667pt;}
.y15c_c00137{bottom:284.160000pt;}
.y159_c00137{bottom:284.933333pt;}
.y157_c00137{bottom:286.466667pt;}
.y15a_c00137{bottom:287.226667pt;}
.y158_c00137{bottom:289.533333pt;}
.y15b_c00137{bottom:291.066667pt;}
.y15e_c00137{bottom:301.053333pt;}
.y155_c00137{bottom:305.666667pt;}
.y154_c00137{bottom:306.426667pt;}
.y153_c00137{bottom:307.200000pt;}
.y151_c00137{bottom:308.733333pt;}
.y156_c00137{bottom:314.106667pt;}
.y152_c00137{bottom:314.880000pt;}
.y150_c00137{bottom:318.720000pt;}
.y149_c00137{bottom:329.466667pt;}
.y148_c00137{bottom:330.240000pt;}
.y14a_c00137{bottom:331.013333pt;}
.y14b_c00137{bottom:332.546667pt;}
.y14d_c00137{bottom:334.853333pt;}
.y14e_c00137{bottom:336.386667pt;}
.y14c_c00137{bottom:337.146667pt;}
.y14f_c00137{bottom:349.440000pt;}
.y140_c00137{bottom:353.280000pt;}
.y145_c00137{bottom:354.053333pt;}
.y143_c00137{bottom:354.813333pt;}
.y144_c00137{bottom:355.586667pt;}
.y142_c00137{bottom:356.346667pt;}
.y141_c00137{bottom:357.893333pt;}
.y146_c00137{bottom:360.960000pt;}
.y147_c00137{bottom:368.640000pt;}
.y13e_c00137{bottom:374.013333pt;}
.y13d_c00137{bottom:375.546667pt;}
.y139_c00137{bottom:376.320000pt;}
.y13b_c00137{bottom:377.093333pt;}
.y13a_c00137{bottom:377.853333pt;}
.y13c_c00137{bottom:380.933333pt;}
.y13f_c00137{bottom:387.066667pt;}
.y134_c00137{bottom:390.906667pt;}
.y133_c00137{bottom:391.680000pt;}
.y136_c00137{bottom:392.453333pt;}
.y135_c00137{bottom:393.213333pt;}
.y138_c00137{bottom:397.826667pt;}
.y137_c00137{bottom:398.586667pt;}
.y12c_c00137{bottom:418.560000pt;}
.y12e_c00137{bottom:419.333333pt;}
.y130_c00137{bottom:421.626667pt;}
.y12f_c00137{bottom:422.400000pt;}
.y131_c00137{bottom:423.933333pt;}
.y12d_c00137{bottom:424.706667pt;}
.y132_c00137{bottom:427.773333pt;}
.y12b_c00137{bottom:431.613333pt;}
.y126_c00137{bottom:440.826667pt;}
.y12a_c00137{bottom:441.600000pt;}
.y127_c00137{bottom:443.133333pt;}
.y122_c00137{bottom:443.906667pt;}
.y124_c00137{bottom:444.666667pt;}
.y123_c00137{bottom:445.440000pt;}
.y125_c00137{bottom:447.746667pt;}
.y128_c00137{bottom:449.280000pt;}
.y129_c00137{bottom:450.053333pt;}
.y11d_c00137{bottom:463.866667pt;}
.y120_c00137{bottom:464.640000pt;}
.y11a_c00137{bottom:465.413333pt;}
.y11e_c00137{bottom:466.946667pt;}
.y11b_c00137{bottom:467.706667pt;}
.y121_c00137{bottom:468.480000pt;}
.y11f_c00137{bottom:470.013333pt;}
.y11c_c00137{bottom:470.786667pt;}
.y115_c00137{bottom:485.373333pt;}
.y119_c00137{bottom:486.146667pt;}
.y118_c00137{bottom:486.906667pt;}
.y116_c00137{bottom:492.293333pt;}
.y117_c00137{bottom:493.053333pt;}
.y114_c00137{bottom:496.133333pt;}
.y10e_c00137{bottom:507.653333pt;}
.y112_c00137{bottom:508.413333pt;}
.y10f_c00137{bottom:509.186667pt;}
.y10b_c00137{bottom:511.493333pt;}
.y110_c00137{bottom:512.253333pt;}
.y111_c00137{bottom:513.026667pt;}
.y10c_c00137{bottom:514.560000pt;}
.y10d_c00137{bottom:515.333333pt;}
.y113_c00137{bottom:526.080000pt;}
.y103_c00137{bottom:529.920000pt;}
.y108_c00137{bottom:530.693333pt;}
.y102_c00137{bottom:531.453333pt;}
.y104_c00137{bottom:532.226667pt;}
.y101_c00137{bottom:532.986667pt;}
.y100_c00137{bottom:534.533333pt;}
.y106_c00137{bottom:535.293333pt;}
.y105_c00137{bottom:536.826667pt;}
.y107_c00137{bottom:537.600000pt;}
.y10a_c00137{bottom:542.973333pt;}
.y109_c00137{bottom:545.280000pt;}
.yfc_c00137{bottom:556.026667pt;}
.yfe_c00137{bottom:556.800000pt;}
.yff_c00137{bottom:557.573333pt;}
.yfd_c00137{bottom:558.333333pt;}
.yf4_c00137{bottom:576.000000pt;}
.yfb_c00137{bottom:576.773333pt;}
.yf8_c00137{bottom:577.533333pt;}
.yf7_c00137{bottom:580.613333pt;}
.yf6_c00137{bottom:581.373333pt;}
.yfa_c00137{bottom:582.146667pt;}
.yf5_c00137{bottom:582.906667pt;}
.yf9_c00137{bottom:583.680000pt;}
.yef_c00137{bottom:597.506667pt;}
.yf3_c00137{bottom:598.266667pt;}
.yf0_c00137{bottom:599.040000pt;}
.yed_c00137{bottom:601.346667pt;}
.yec_c00137{bottom:603.653333pt;}
.yf2_c00137{bottom:604.413333pt;}
.yee_c00137{bottom:605.186667pt;}
.yf1_c00137{bottom:605.946667pt;}
.ye9_c00137{bottom:619.773333pt;}
.yeb_c00137{bottom:620.546667pt;}
.ye8_c00137{bottom:622.080000pt;}
.yea_c00137{bottom:623.613333pt;}
.ye6_c00137{bottom:624.386667pt;}
.ye7_c00137{bottom:626.693333pt;}
.ye5_c00137{bottom:633.600000pt;}
.ye1_c00137{bottom:641.280000pt;}
.ye3_c00137{bottom:642.053333pt;}
.ye4_c00137{bottom:644.346667pt;}
.ye0_c00137{bottom:647.426667pt;}
.ydf_c00137{bottom:648.186667pt;}
.ye2_c00137{bottom:648.960000pt;}
.yde_c00137{bottom:658.173333pt;}
.y187_c00137{bottom:661.253333pt;}
.yd8_c00137{bottom:663.546667pt;}
.ydb_c00137{bottom:665.093333pt;}
.yd7_c00137{bottom:665.853333pt;}
.yda_c00137{bottom:668.933333pt;}
.ydc_c00137{bottom:669.693333pt;}
.yd9_c00137{bottom:670.466667pt;}
.ydd_c00137{bottom:684.293333pt;}
.ycf_c00137{bottom:685.826667pt;}
.yd4_c00137{bottom:686.586667pt;}
.yd2_c00137{bottom:687.360000pt;}
.yd6_c00137{bottom:690.426667pt;}
.yd1_c00137{bottom:691.200000pt;}
.yd0_c00137{bottom:691.973333pt;}
.yce_c00137{bottom:694.266667pt;}
.yd5_c00137{bottom:697.346667pt;}
.yd3_c00137{bottom:702.720000pt;}
.ycb_c00137{bottom:705.786667pt;}
.ycc_c00137{bottom:706.560000pt;}
.yc8_c00137{bottom:711.933333pt;}
.yca_c00137{bottom:712.706667pt;}
.yc9_c00137{bottom:713.466667pt;}
.ycd_c00137{bottom:719.613333pt;}
.yc4_c00137{bottom:727.293333pt;}
.yc7_c00137{bottom:728.066667pt;}
.yc2_c00137{bottom:728.826667pt;}
.yc5_c00137{bottom:731.906667pt;}
.yc6_c00137{bottom:733.440000pt;}
.yc3_c00137{bottom:734.213333pt;}
.ybb_c00137{bottom:749.573333pt;}
.ybc_c00137{bottom:750.333333pt;}
.yba_c00137{bottom:751.106667pt;}
.yc0_c00137{bottom:753.413333pt;}
.ybf_c00137{bottom:755.706667pt;}
.ybe_c00137{bottom:756.480000pt;}
.ybd_c00137{bottom:757.253333pt;}
.yc1_c00137{bottom:761.093333pt;}
.yb7_c00137{bottom:771.066667pt;}
.yb6_c00137{bottom:771.840000pt;}
.yb3_c00137{bottom:772.613333pt;}
.yb1_c00137{bottom:774.146667pt;}
.yb5_c00137{bottom:776.453333pt;}
.yb4_c00137{bottom:778.746667pt;}
.yb2_c00137{bottom:779.520000pt;}
.yb8_c00137{bottom:780.293333pt;}
.yb9_c00137{bottom:790.266667pt;}
.yae_c00137{bottom:794.106667pt;}
.yad_c00137{bottom:794.880000pt;}
.yaf_c00137{bottom:795.653333pt;}
.yab_c00137{bottom:797.946667pt;}
.yaa_c00137{bottom:801.026667pt;}
.yac_c00137{bottom:801.786667pt;}
.yb0_c00137{bottom:802.560000pt;}
.ya4_c00137{bottom:817.146667pt;}
.ya6_c00137{bottom:817.920000pt;}
.ya7_c00137{bottom:820.986667pt;}
.ya9_c00137{bottom:822.533333pt;}
.ya3_c00137{bottom:823.293333pt;}
.ya5_c00137{bottom:824.066667pt;}
.ya8_c00137{bottom:824.826667pt;}
.y9e_c00137{bottom:839.426667pt;}
.y9c_c00137{bottom:840.960000pt;}
.y9d_c00137{bottom:842.493333pt;}
.ya0_c00137{bottom:843.266667pt;}
.ya1_c00137{bottom:844.800000pt;}
.y9f_c00137{bottom:846.333333pt;}
.ya2_c00137{bottom:847.866667pt;}
.y94_c00137{bottom:860.933333pt;}
.y9a_c00137{bottom:861.693333pt;}
.y96_c00137{bottom:862.466667pt;}
.y99_c00137{bottom:863.226667pt;}
.y97_c00137{bottom:864.000000pt;}
.y95_c00137{bottom:867.840000pt;}
.y98_c00137{bottom:868.613333pt;}
.y9b_c00137{bottom:869.373333pt;}
.y93_c00137{bottom:872.453333pt;}
.y8c_c00137{bottom:883.200000pt;}
.y8e_c00137{bottom:884.733333pt;}
.y8d_c00137{bottom:888.573333pt;}
.y8b_c00137{bottom:890.106667pt;}
.y8f_c00137{bottom:893.186667pt;}
.y91_c00137{bottom:894.720000pt;}
.y90_c00137{bottom:898.560000pt;}
.y92_c00137{bottom:903.933333pt;}
.y86_c00137{bottom:905.466667pt;}
.y8a_c00137{bottom:907.773333pt;}
.y89_c00137{bottom:910.080000pt;}
.y88_c00137{bottom:910.853333pt;}
.y87_c00137{bottom:911.613333pt;}
.y85_c00137{bottom:912.386667pt;}
.y84_c00137{bottom:913.146667pt;}
.y7e_c00137{bottom:930.813333pt;}
.y80_c00137{bottom:931.586667pt;}
.y81_c00137{bottom:932.346667pt;}
.y83_c00137{bottom:933.120000pt;}
.y7f_c00137{bottom:934.653333pt;}
.y82_c00137{bottom:935.426667pt;}
.y7b_c00137{bottom:936.960000pt;}
.y7c_c00137{bottom:937.733333pt;}
.y7a_c00137{bottom:943.106667pt;}
.y76_c00137{bottom:943.866667pt;}
.y77_c00137{bottom:944.640000pt;}
.y78_c00137{bottom:945.413333pt;}
.y75_c00137{bottom:946.173333pt;}
.y79_c00137{bottom:946.946667pt;}
.y7d_c00137{bottom:947.706667pt;}
.y6e_c00137{bottom:951.546667pt;}
.y71_c00137{bottom:952.320000pt;}
.y72_c00137{bottom:953.093333pt;}
.y6f_c00137{bottom:953.853333pt;}
.y74_c00137{bottom:955.386667pt;}
.y70_c00137{bottom:956.160000pt;}
.y6d_c00137{bottom:956.933333pt;}
.y6c_c00137{bottom:957.693333pt;}
.y73_c00137{bottom:960.000000pt;}
.y66_c00137{bottom:973.053333pt;}
.y6b_c00137{bottom:973.826667pt;}
.y6a_c00137{bottom:975.360000pt;}
.y69_c00137{bottom:977.666667pt;}
.y67_c00137{bottom:979.973333pt;}
.y68_c00137{bottom:980.733333pt;}
.y5b_c00137{bottom:996.093333pt;}
.y5d_c00137{bottom:996.866667pt;}
.y62_c00137{bottom:998.400000pt;}
.y59_c00137{bottom:999.933333pt;}
.y5f_c00137{bottom:1000.706667pt;}
.y60_c00137{bottom:1001.466667pt;}
.y5a_c00137{bottom:1002.240000pt;}
.y5c_c00137{bottom:1003.013333pt;}
.y5e_c00137{bottom:1003.773333pt;}
.y61_c00137{bottom:1004.546667pt;}
.y63_c00137{bottom:1005.306667pt;}
.y64_c00137{bottom:1006.080000pt;}
.y65_c00137{bottom:1007.613333pt;}
.y51_c00137{bottom:1018.373333pt;}
.y52_c00137{bottom:1019.133333pt;}
.y57_c00137{bottom:1019.906667pt;}
.y55_c00137{bottom:1021.440000pt;}
.y56_c00137{bottom:1023.746667pt;}
.y53_c00137{bottom:1025.280000pt;}
.y54_c00137{bottom:1026.053333pt;}
.y58_c00137{bottom:1026.813333pt;}
.y48_c00137{bottom:1040.640000pt;}
.y50_c00137{bottom:1041.413333pt;}
.y4a_c00137{bottom:1042.173333pt;}
.y4c_c00137{bottom:1042.946667pt;}
.y4e_c00137{bottom:1046.013333pt;}
.y4f_c00137{bottom:1046.786667pt;}
.y49_c00137{bottom:1047.546667pt;}
.y4b_c00137{bottom:1049.853333pt;}
.y4d_c00137{bottom:1050.626667pt;}
.y47_c00137{bottom:1053.693333pt;}
.y39_c00137{bottom:1062.906667pt;}
.y3e_c00137{bottom:1063.680000pt;}
.y3d_c00137{bottom:1065.986667pt;}
.y3f_c00137{bottom:1066.746667pt;}
.y42_c00137{bottom:1067.520000pt;}
.y40_c00137{bottom:1068.293333pt;}
.y3a_c00137{bottom:1069.053333pt;}
.y3c_c00137{bottom:1069.826667pt;}
.y3b_c00137{bottom:1070.586667pt;}
.y43_c00137{bottom:1071.360000pt;}
.y41_c00137{bottom:1072.133333pt;}
.y44_c00137{bottom:1072.893333pt;}
.y45_c00137{bottom:1075.200000pt;}
.y46_c00137{bottom:1076.733333pt;}
.y31_c00137{bottom:1087.493333pt;}
.y32_c00137{bottom:1088.253333pt;}
.y2f_c00137{bottom:1089.026667pt;}
.y30_c00137{bottom:1089.786667pt;}
.y34_c00137{bottom:1090.560000pt;}
.y38_c00137{bottom:1091.333333pt;}
.y35_c00137{bottom:1092.093333pt;}
.y33_c00137{bottom:1093.626667pt;}
.y36_c00137{bottom:1094.400000pt;}
.y37_c00137{bottom:1095.173333pt;}
.y3_c00137{bottom:1099.013333pt;}
.y4_c00137{bottom:1104.386667pt;}
.y2d_c00137{bottom:1108.226667pt;}
.y2e_c00137{bottom:1109.760000pt;}
.y29_c00137{bottom:1110.533333pt;}
.y2b_c00137{bottom:1111.293333pt;}
.y2a_c00137{bottom:1113.600000pt;}
.y2c_c00137{bottom:1115.906667pt;}
.y1f_c00137{bottom:1122.813333pt;}
.y26_c00137{bottom:1124.346667pt;}
.y22_c00137{bottom:1125.120000pt;}
.y27_c00137{bottom:1125.893333pt;}
.y24_c00137{bottom:1128.960000pt;}
.y20_c00137{bottom:1131.266667pt;}
.y23_c00137{bottom:1133.573333pt;}
.y2_c00137{bottom:1135.106667pt;}
.y25_c00137{bottom:1136.640000pt;}
.y21_c00137{bottom:1138.173333pt;}
.y1_c00137{bottom:1143.546667pt;}
.y28_c00137{bottom:1152.773333pt;}
.y1b_c00137{bottom:1154.306667pt;}
.y1a_c00137{bottom:1158.146667pt;}
.y1e_c00137{bottom:1159.680000pt;}
.y1c_c00137{bottom:1160.453333pt;}
.y1d_c00137{bottom:1161.213333pt;}
.y14_c00137{bottom:1174.266667pt;}
.y19_c00137{bottom:1175.813333pt;}
.y18_c00137{bottom:1177.346667pt;}
.y17_c00137{bottom:1178.106667pt;}
.y13_c00137{bottom:1180.413333pt;}
.y15_c00137{bottom:1181.186667pt;}
.y16_c00137{bottom:1183.493333pt;}
.yc_c00137{bottom:1197.306667pt;}
.y12_c00137{bottom:1198.080000pt;}
.yf_c00137{bottom:1199.613333pt;}
.yb_c00137{bottom:1201.146667pt;}
.y11_c00137{bottom:1203.453333pt;}
.yd_c00137{bottom:1204.226667pt;}
.y10_c00137{bottom:1204.986667pt;}
.ye_c00137{bottom:1205.760000pt;}
.ya_c00137{bottom:1227.266667pt;}
.y9_c00137{bottom:1231.866667pt;}
.y8_c00137{bottom:1232.640000pt;}
.y5_c00137{bottom:1233.413333pt;}
.y7_c00137{bottom:1234.173333pt;}
.y6_c00137{bottom:1251.066667pt;}
.h18_c00137{height:2.764500pt;}
.h6_c00137{height:4.799479pt;}
.h1c_c00137{height:5.519401pt;}
.h29_c00137{height:8.303099pt;}
.h20_c00137{height:11.038802pt;}
.h25_c00137{height:13.822500pt;}
.h2_c00137{height:16.606198pt;}
.h1a_c00137{height:19.341901pt;}
.h3_c00137{height:22.125599pt;}
.h1f_c00137{height:24.861302pt;}
.h1d_c00137{height:27.645000pt;}
.h13_c00137{height:30.428698pt;}
.h21_c00137{height:33.164401pt;}
.h23_c00137{height:35.948099pt;}
.h24_c00137{height:38.683802pt;}
.h26_c00137{height:41.467500pt;}
.h1b_c00137{height:44.251198pt;}
.hb_c00137{height:46.986901pt;}
.h4_c00137{height:49.770599pt;}
.h7_c00137{height:52.506302pt;}
.h5_c00137{height:55.290000pt;}
.h8_c00137{height:58.073698pt;}
.hf_c00137{height:60.809401pt;}
.h19_c00137{height:63.593099pt;}
.h27_c00137{height:64.207031pt;}
.h1e_c00137{height:66.328802pt;}
.h10_c00137{height:69.112500pt;}
.h9_c00137{height:71.896198pt;}
.h11_c00137{height:74.631901pt;}
.he_c00137{height:77.415599pt;}
.h22_c00137{height:80.151302pt;}
.hd_c00137{height:82.935000pt;}
.h28_c00137{height:84.782135pt;}
.h17_c00137{height:85.718698pt;}
.hc_c00137{height:88.454401pt;}
.h15_c00137{height:91.238099pt;}
.h2b_c00137{height:93.973802pt;}
.ha_c00137{height:96.757500pt;}
.h2a_c00137{height:99.541198pt;}
.h16_c00137{height:102.276901pt;}
.h14_c00137{height:105.060599pt;}
.h12_c00137{height:107.796302pt;}
.h1_c00137{height:1336.000000pt;}
.h0_c00137{height:1336.320000pt;}
.w0_c00137{width:967.680000pt;}
.w1_c00137{width:968.000000pt;}
.x0_c00137{left:0.000000pt;}
.x2_c00137{left:67.586667pt;}
.x1_c00137{left:72.186667pt;}
.x3_c00137{left:97.533333pt;}
.x4_c00137{left:105.213333pt;}
.x10a_c00137{left:133.626667pt;}
.x10b_c00137{left:154.373333pt;}
.x10c_c00137{left:164.346667pt;}
.x104_c00137{left:188.160000pt;}
.xcc_c00137{left:189.693333pt;}
.x100_c00137{left:195.066667pt;}
.x54_c00137{left:199.680000pt;}
.x61_c00137{left:203.520000pt;}
.x46_c00137{left:205.826667pt;}
.xfc_c00137{left:207.360000pt;}
.xc7_c00137{left:208.893333pt;}
.xb1_c00137{left:211.200000pt;}
.x5a_c00137{left:213.506667pt;}
.x2b_c00137{left:215.813333pt;}
.x12_c00137{left:217.346667pt;}
.x105_c00137{left:225.026667pt;}
.xe7_c00137{left:227.333333pt;}
.x9e_c00137{left:231.173333pt;}
.x106_c00137{left:232.706667pt;}
.x26_c00137{left:235.013333pt;}
.xf6_c00137{left:236.546667pt;}
.x92_c00137{left:238.080000pt;}
.x47_c00137{left:240.386667pt;}
.x1c_c00137{left:242.693333pt;}
.xdb_c00137{left:246.533333pt;}
.x62_c00137{left:248.826667pt;}
.x89_c00137{left:250.373333pt;}
.xba_c00137{left:253.440000pt;}
.x73_c00137{left:254.973333pt;}
.xc8_c00137{left:257.280000pt;}
.x79_c00137{left:258.813333pt;}
.x3d_c00137{left:260.346667pt;}
.x13_c00137{left:263.426667pt;}
.xab_c00137{left:264.960000pt;}
.xc9_c00137{left:266.493333pt;}
.x8e_c00137{left:268.026667pt;}
.xe2_c00137{left:269.573333pt;}
.xbb_c00137{left:272.640000pt;}
.xfd_c00137{left:275.706667pt;}
.x9f_c00137{left:277.253333pt;}
.x3e_c00137{left:280.320000pt;}
.x6d_c00137{left:281.853333pt;}
.x36_c00137{left:284.160000pt;}
.x84_c00137{left:286.466667pt;}
.xee_c00137{left:288.000000pt;}
.xb2_c00137{left:289.533333pt;}
.x48_c00137{left:291.066667pt;}
.x63_c00137{left:293.373333pt;}
.x49_c00137{left:296.453333pt;}
.x27_c00137{left:300.293333pt;}
.xa7_c00137{left:302.586667pt;}
.xfe_c00137{left:304.133333pt;}
.x85_c00137{left:305.666667pt;}
.x1d_c00137{left:307.973333pt;}
.xd3_c00137{left:309.506667pt;}
.xb3_c00137{left:313.346667pt;}
.x37_c00137{left:314.880000pt;}
.xea_c00137{left:318.720000pt;}
.xe8_c00137{left:324.093333pt;}
.x64_c00137{left:325.626667pt;}
.x2c_c00137{left:327.173333pt;}
.x6e_c00137{left:328.706667pt;}
.x14_c00137{left:331.013333pt;}
.x38_c00137{left:334.080000pt;}
.xa0_c00137{left:335.613333pt;}
.xc6_c00137{left:337.920000pt;}
.x4a_c00137{left:343.293333pt;}
.x107_c00137{left:344.826667pt;}
.xcd_c00137{left:348.666667pt;}
.x93_c00137{left:353.280000pt;}
.xd7_c00137{left:354.813333pt;}
.x74_c00137{left:356.346667pt;}
.x2d_c00137{left:360.960000pt;}
.x3f_c00137{left:364.026667pt;}
.x94_c00137{left:365.573333pt;}
.x7a_c00137{left:367.866667pt;}
.xd0_c00137{left:370.173333pt;}
.xbc_c00137{left:371.706667pt;}
.xdc_c00137{left:374.013333pt;}
.xa8_c00137{left:377.093333pt;}
.xfa_c00137{left:379.386667pt;}
.x4b_c00137{left:380.933333pt;}
.x39_c00137{left:384.773333pt;}
.x6f_c00137{left:386.306667pt;}
.x5b_c00137{left:387.840000pt;}
.x1e_c00137{left:392.453333pt;}
.xf2_c00137{left:393.986667pt;}
.x8a_c00137{left:396.293333pt;}
.x2e_c00137{left:399.360000pt;}
.x86_c00137{left:401.666667pt;}
.xac_c00137{left:405.506667pt;}
.x15_c00137{left:407.813333pt;}
.x1f_c00137{left:411.653333pt;}
.x95_c00137{left:413.946667pt;}
.x8b_c00137{left:416.253333pt;}
.x70_c00137{left:419.333333pt;}
.x5_c00137{left:422.400000pt;}
.x16_c00137{left:427.773333pt;}
.xd8_c00137{left:430.853333pt;}
.x40_c00137{left:432.386667pt;}
.xc1_c00137{left:435.453333pt;}
.x7b_c00137{left:436.986667pt;}
.x5c_c00137{left:439.293333pt;}
.x6_c00137{left:442.373333pt;}
.x2f_c00137{left:444.666667pt;}
.x8f_c00137{left:448.506667pt;}
.x20_c00137{left:450.053333pt;}
.x41_c00137{left:451.586667pt;}
.xca_c00137{left:454.653333pt;}
.x4c_c00137{left:456.186667pt;}
.xd4_c00137{left:457.733333pt;}
.x101_c00137{left:459.266667pt;}
.x7_c00137{left:463.106667pt;}
.x71_c00137{left:465.413333pt;}
.x99_c00137{left:468.480000pt;}
.xc2_c00137{left:470.786667pt;}
.xf7_c00137{left:473.853333pt;}
.x9a_c00137{left:475.386667pt;}
.x5d_c00137{left:476.933333pt;}
.xb4_c00137{left:479.226667pt;}
.x8_c00137{left:480.773333pt;}
.x42_c00137{left:484.613333pt;}
.x21_c00137{left:486.146667pt;}
.x55_c00137{left:487.680000pt;}
.x90_c00137{left:489.213333pt;}
.x4d_c00137{left:491.520000pt;}
.x30_c00137{left:493.826667pt;}
.xad_c00137{left:496.133333pt;}
.xb8_c00137{left:497.666667pt;}
.xa1_c00137{left:503.040000pt;}
.x65_c00137{left:504.573333pt;}
.x22_c00137{left:507.653333pt;}
.x28_c00137{left:511.493333pt;}
.x9_c00137{left:513.026667pt;}
.x4e_c00137{left:514.560000pt;}
.x8c_c00137{left:517.626667pt;}
.xb5_c00137{left:519.933333pt;}
.xa_c00137{left:522.240000pt;}
.x23_c00137{left:524.546667pt;}
.xa9_c00137{left:526.853333pt;}
.xe3_c00137{left:529.146667pt;}
.x5e_c00137{left:532.226667pt;}
.x102_c00137{left:533.760000pt;}
.xdd_c00137{left:535.293333pt;}
.x17_c00137{left:541.440000pt;}
.xb_c00137{left:542.973333pt;}
.x7c_c00137{left:545.280000pt;}
.xd5_c00137{left:547.586667pt;}
.x72_c00137{left:549.120000pt;}
.x7d_c00137{left:553.733333pt;}
.x66_c00137{left:555.266667pt;}
.x96_c00137{left:556.800000pt;}
.xbd_c00137{left:558.333333pt;}
.x3a_c00137{left:561.413333pt;}
.x56_c00137{left:564.480000pt;}
.xc_c00137{left:566.786667pt;}
.x31_c00137{left:568.320000pt;}
.xae_c00137{left:569.853333pt;}
.x75_c00137{left:573.693333pt;}
.x9b_c00137{left:575.226667pt;}
.x18_c00137{left:576.773333pt;}
.x7e_c00137{left:579.066667pt;}
.x57_c00137{left:583.680000pt;}
.xd_c00137{left:586.746667pt;}
.x29_c00137{left:591.360000pt;}
.x97_c00137{left:592.893333pt;}
.xd1_c00137{left:595.200000pt;}
.xf3_c00137{left:596.733333pt;}
.xc3_c00137{left:602.106667pt;}
.x3b_c00137{left:605.186667pt;}
.xe_c00137{left:607.493333pt;}
.xbe_c00137{left:610.560000pt;}
.x5f_c00137{left:612.866667pt;}
.xb6_c00137{left:614.400000pt;}
.x67_c00137{left:618.240000pt;}
.x19_c00137{left:624.386667pt;}
.x7f_c00137{left:628.986667pt;}
.xa2_c00137{left:631.293333pt;}
.xf_c00137{left:633.600000pt;}
.xd2_c00137{left:635.133333pt;}
.x68_c00137{left:637.440000pt;}
.x43_c00137{left:639.746667pt;}
.xde_c00137{left:642.053333pt;}
.x108_c00137{left:644.346667pt;}
.xa3_c00137{left:646.653333pt;}
.x60_c00137{left:648.960000pt;}
.x10_c00137{left:653.573333pt;}
.xe4_c00137{left:655.106667pt;}
.xd9_c00137{left:657.413333pt;}
.xce_c00137{left:659.706667pt;}
.xa4_c00137{left:661.253333pt;}
.xcb_c00137{left:662.786667pt;}
.x3c_c00137{left:664.320000pt;}
.x69_c00137{left:665.853333pt;}
.x76_c00137{left:668.160000pt;}
.xfb_c00137{left:670.466667pt;}
.x80_c00137{left:672.000000pt;}
.x77_c00137{left:675.840000pt;}
.x32_c00137{left:677.373333pt;}
.x44_c00137{left:679.680000pt;}
.xdf_c00137{left:681.213333pt;}
.x4f_c00137{left:684.293333pt;}
.x6a_c00137{left:685.826667pt;}
.x45_c00137{left:687.360000pt;}
.x1a_c00137{left:688.893333pt;}
.xe9_c00137{left:690.426667pt;}
.x58_c00137{left:695.813333pt;}
.xbf_c00137{left:697.346667pt;}
.x24_c00137{left:698.880000pt;}
.x81_c00137{left:701.946667pt;}
.xb9_c00137{left:703.493333pt;}
.x9c_c00137{left:705.026667pt;}
.x2a_c00137{left:709.626667pt;}
.xa5_c00137{left:711.173333pt;}
.xda_c00137{left:712.706667pt;}
.xf5_c00137{left:714.240000pt;}
.x33_c00137{left:715.773333pt;}
.x103_c00137{left:717.306667pt;}
.x87_c00137{left:719.613333pt;}
.xcf_c00137{left:721.146667pt;}
.xc4_c00137{left:722.693333pt;}
.x1b_c00137{left:724.226667pt;}
.xd6_c00137{left:727.293333pt;}
.x82_c00137{left:728.826667pt;}
.x91_c00137{left:731.133333pt;}
.xaf_c00137{left:733.440000pt;}
.x6b_c00137{left:735.746667pt;}
.x25_c00137{left:738.813333pt;}
.x98_c00137{left:741.893333pt;}
.x83_c00137{left:744.186667pt;}
.x59_c00137{left:746.493333pt;}
.x78_c00137{left:748.800000pt;}
.xaa_c00137{left:750.333333pt;}
.x34_c00137{left:752.640000pt;}
.x50_c00137{left:756.480000pt;}
.xe5_c00137{left:758.786667pt;}
.x88_c00137{left:761.093333pt;}
.xa6_c00137{left:763.386667pt;}
.x11_c00137{left:764.933333pt;}
.xe6_c00137{left:771.840000pt;}
.x51_c00137{left:775.680000pt;}
.xc5_c00137{left:777.213333pt;}
.x6c_c00137{left:778.746667pt;}
.x9d_c00137{left:781.053333pt;}
.x8d_c00137{left:782.586667pt;}
.x52_c00137{left:786.426667pt;}
.x35_c00137{left:791.040000pt;}
.xef_c00137{left:794.106667pt;}
.xff_c00137{left:795.653333pt;}
.xb0_c00137{left:797.186667pt;}
.xf4_c00137{left:798.720000pt;}
.xc0_c00137{left:801.026667pt;}
.xf8_c00137{left:802.560000pt;}
.x53_c00137{left:806.400000pt;}
.xb7_c00137{left:807.933333pt;}
.xe0_c00137{left:810.240000pt;}
.xf9_c00137{left:814.080000pt;}
.xe1_c00137{left:817.920000pt;}
.xeb_c00137{left:819.453333pt;}
.x109_c00137{left:820.986667pt;}
.xf0_c00137{left:824.826667pt;}
.xec_c00137{left:827.906667pt;}
.xf1_c00137{left:832.506667pt;}
.xed_c00137{left:841.733333pt;}
.x10d_c00137{left:888.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_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_ba9c679c3c73160ec59a09d0.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.109863;font-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_c00138{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m147_c00138{transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);}
.m33_c00138{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m141_c00138{transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);}
.m123_c00138{transform:matrix(0.079575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079575,0.000000,0.000000,0.250000,0,0);}
.m7c_c00138{transform:matrix(0.099775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099775,0.000000,0.000000,0.250000,0,0);}
.m152_c00138{transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);}
.m7b_c00138{transform:matrix(0.103475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103475,0.000000,0.000000,0.250000,0,0);}
.ma4_c00138{transform:matrix(0.106850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106850,0.000000,0.000000,0.250000,0,0);}
.m127_c00138{transform:matrix(0.108750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00138{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.mda_c00138{transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);}
.m44_c00138{transform:matrix(0.112675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112675,0.000000,0.000000,0.250000,0,0);}
.mab_c00138{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m157_c00138{transform:matrix(0.118225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118225,0.000000,0.000000,0.250000,0,0);}
.m1f_c00138{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m151_c00138{transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);}
.m140_c00138{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m99_c00138{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);}
.m65_c00138{transform:matrix(0.127025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127025,0.000000,0.000000,0.250000,0,0);}
.mc5_c00138{transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);}
.m12e_c00138{transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);}
.m1_c00138{transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);}
.mf8_c00138{transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);}
.m124_c00138{transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);}
.m6_c00138{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.m5e_c00138{transform:matrix(0.134075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134075,0.000000,0.000000,0.250000,0,0);}
.mff_c00138{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);}
.m16_c00138{transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);}
.m7a_c00138{transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);}
.m9c_c00138{transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);}
.ma2_c00138{transform:matrix(0.137425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137425,0.000000,0.000000,0.250000,0,0);}
.md6_c00138{transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);}
.mdb_c00138{transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);}
.md7_c00138{transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);}
.m11c_c00138{transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);}
.m42_c00138{transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);}
.m159_c00138{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);}
.m111_c00138{transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);}
.m11f_c00138{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00138{transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);}
.m78_c00138{transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);}
.m14f_c00138{transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);}
.me_c00138{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md9_c00138{transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);}
.m64_c00138{transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);}
.m10f_c00138{transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);}
.m104_c00138{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);}
.m62_c00138{transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);}
.mf3_c00138{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);}
.m121_c00138{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.m132_c00138{transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);}
.m13f_c00138{transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);}
.m14e_c00138{transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);}
.m66_c00138{transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);}
.m145_c00138{transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);}
.mcd_c00138{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.md8_c00138{transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);}
.mb5_c00138{transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);}
.m150_c00138{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);}
.m9f_c00138{transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);}
.mce_c00138{transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);}
.m110_c00138{transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);}
.m3d_c00138{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.m63_c00138{transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);}
.mc1_c00138{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);}
.meb_c00138{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m7_c00138{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.md1_c00138{transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);}
.m7d_c00138{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.mdd_c00138{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.mf_c00138{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m95_c00138{transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);}
.m122_c00138{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);}
.m143_c00138{transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);}
.m36_c00138{transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);}
.m154_c00138{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.m74_c00138{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m142_c00138{transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);}
.m12d_c00138{transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);}
.mc8_c00138{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.m134_c00138{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m14a_c00138{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);}
.mbc_c00138{transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);}
.m102_c00138{transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);}
.m133_c00138{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.m3_c00138{transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);}
.mbd_c00138{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m13c_c00138{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m11e_c00138{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);}
.m2a_c00138{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.m14c_c00138{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);}
.m15_c00138{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);}
.m4e_c00138{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);}
.mca_c00138{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.m106_c00138{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m148_c00138{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m4_c00138{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);}
.m135_c00138{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);}
.m158_c00138{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.m13e_c00138{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);}
.m130_c00138{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m35_c00138{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);}
.m113_c00138{transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);}
.ma8_c00138{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m86_c00138{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.md0_c00138{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);}
.m128_c00138{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mc_c00138{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);}
.m49_c00138{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m61_c00138{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m125_c00138{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.ma0_c00138{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.ma3_c00138{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00138{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);}
.m13d_c00138{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.m23_c00138{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m10_c00138{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m29_c00138{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m11b_c00138{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);}
.ma6_c00138{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.mc7_c00138{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);}
.m7e_c00138{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);}
.m70_c00138{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);}
.mb9_c00138{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);}
.me4_c00138{transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);}
.m156_c00138{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.ma1_c00138{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);}
.ma7_c00138{transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);}
.mbf_c00138{transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);}
.m137_c00138{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.m77_c00138{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m155_c00138{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.m40_c00138{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00138{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);}
.m6e_c00138{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.m11_c00138{transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);}
.mb_c00138{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m31_c00138{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);}
.m131_c00138{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);}
.me3_c00138{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);}
.m10e_c00138{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);}
.m54_c00138{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.m94_c00138{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);}
.m149_c00138{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);}
.m14b_c00138{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.m87_c00138{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.mfb_c00138{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m12a_c00138{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);}
.m98_c00138{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.ma_c00138{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.me5_c00138{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);}
.m53_c00138{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);}
.m2d_c00138{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.m13a_c00138{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);}
.me7_c00138{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);}
.m5f_c00138{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);}
.m1c_c00138{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m6b_c00138{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);}
.m101_c00138{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.mee_c00138{transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);}
.m3b_c00138{transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);}
.m2_c00138{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m13b_c00138{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);}
.m84_c00138{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);}
.mc9_c00138{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m1d_c00138{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m90_c00138{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m38_c00138{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m144_c00138{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);}
.m37_c00138{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);}
.m126_c00138{transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);}
.m55_c00138{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);}
.maa_c00138{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);}
.m103_c00138{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);}
.mb2_c00138{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.m8e_c00138{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);}
.mde_c00138{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m9d_c00138{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.mc0_c00138{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m14_c00138{transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);}
.m129_c00138{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);}
.m6a_c00138{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.mfe_c00138{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);}
.mfa_c00138{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);}
.m79_c00138{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.me6_c00138{transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);}
.m6c_c00138{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);}
.m5c_c00138{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);}
.md5_c00138{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);}
.md4_c00138{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);}
.mb6_c00138{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.me8_c00138{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);}
.m117_c00138{transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);}
.m112_c00138{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.m11d_c00138{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m109_c00138{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);}
.mf0_c00138{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m8b_c00138{transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);}
.m15a_c00138{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);}
.m88_c00138{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);}
.m92_c00138{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mcf_c00138{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);}
.m28_c00138{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m1a_c00138{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m8d_c00138{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);}
.mcc_c00138{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);}
.m100_c00138{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00138{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);}
.m96_c00138{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);}
.me0_c00138{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);}
.mdf_c00138{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m59_c00138{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);}
.mfc_c00138{transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);}
.m20_c00138{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);}
.m3a_c00138{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.m14d_c00138{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);}
.m139_c00138{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);}
.m75_c00138{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m2f_c00138{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m32_c00138{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);}
.m115_c00138{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);}
.md_c00138{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);}
.m57_c00138{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m118_c00138{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m71_c00138{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);}
.m3e_c00138{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);}
.m4d_c00138{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);}
.m105_c00138{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);}
.m52_c00138{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);}
.m119_c00138{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);}
.m108_c00138{transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);}
.m3c_c00138{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);}
.me1_c00138{transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);}
.mae_c00138{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);}
.m93_c00138{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);}
.mdc_c00138{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);}
.mf9_c00138{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m116_c00138{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.md3_c00138{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.mea_c00138{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.m2e_c00138{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m3f_c00138{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.m12b_c00138{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);}
.m4b_c00138{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m138_c00138{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);}
.mf4_c00138{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m46_c00138{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.me2_c00138{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);}
.m73_c00138{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);}
.mbe_c00138{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);}
.m83_c00138{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);}
.m6d_c00138{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);}
.md2_c00138{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);}
.m80_c00138{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);}
.m81_c00138{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m97_c00138{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m114_c00138{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);}
.mbb_c00138{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m13_c00138{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m7f_c00138{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);}
.me9_c00138{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);}
.m5_c00138{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);}
.m69_c00138{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m60_c00138{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);}
.m27_c00138{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);}
.m107_c00138{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);}
.m89_c00138{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);}
.m34_c00138{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m22_c00138{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c00138{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m48_c00138{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);}
.m8c_c00138{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m50_c00138{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);}
.m82_c00138{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);}
.m6f_c00138{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m68_c00138{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);}
.m4f_c00138{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00138{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m67_c00138{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);}
.mcb_c00138{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c00138{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);}
.mb4_c00138{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);}
.m26_c00138{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00138{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00138{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);}
.med_c00138{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m56_c00138{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00138{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);}
.m21_c00138{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c00138{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00138{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m76_c00138{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m91_c00138{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m43_c00138{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m72_c00138{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);}
.m4a_c00138{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m47_c00138{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m45_c00138{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00138{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00138{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);}
.mb8_c00138{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00138{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);}
.mc2_c00138{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c00138{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m51_c00138{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mba_c00138{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);}
.m2b_c00138{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00138{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00138{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);}
.ma5_c00138{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m85_c00138{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);}
.m12_c00138{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00138{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00138{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m58_c00138{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00138{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m24_c00138{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);}
.mf5_c00138{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00138{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);}
.mad_c00138{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00138{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m146_c00138{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00138{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m39_c00138{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mec_c00138{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m15b_c00138{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m9_c00138{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m41_c00138{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m10b_c00138{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m30_c00138{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m0_c00138{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m153_c00138{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00138{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.maf_c00138{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m17_c00138{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);}
.mfd_c00138{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00138{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m120_c00138{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00138{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00138{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00138{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00138{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00138{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.mef_c00138{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00138{transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);}
.m136_c00138{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.mac_c00138{transform:matrix(2.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.312500,0.000000,0.000000,0.250000,0,0);}
.v2_c00138{vertical-align:-17.280000px;}
.v0_c00138{vertical-align:0.000000px;}
.v1_c00138{vertical-align:3.480000px;}
.ls1_c00138{letter-spacing:0.000000px;}
.ls0_c00138{letter-spacing:33.245040px;}
.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:-24.258000px;}
.ws2_c00138{word-spacing:0.000000px;}
.ws1_c00138{word-spacing:37.929272px;}
.fc0_c00138{color:transparent;}
.fs10_c00138{font-size:3.456000px;}
.fs15_c00138{font-size:6.000000px;}
.fs1b_c00138{font-size:6.900000px;}
.fsb_c00138{font-size:10.380000px;}
.fs21_c00138{font-size:13.800000px;}
.fs1f_c00138{font-size:17.280000px;}
.fs11_c00138{font-size:20.760000px;}
.fs0_c00138{font-size:24.180000px;}
.fs20_c00138{font-size:27.660000px;}
.fs22_c00138{font-size:31.080000px;}
.fs16_c00138{font-size:34.560000px;}
.fsc_c00138{font-size:38.040000px;}
.fsd_c00138{font-size:41.460000px;}
.fse_c00138{font-size:44.940000px;}
.fs18_c00138{font-size:48.360000px;}
.fs1c_c00138{font-size:51.840000px;}
.fs6_c00138{font-size:55.320000px;}
.fs12_c00138{font-size:58.740000px;}
.fs1a_c00138{font-size:62.220000px;}
.fs7_c00138{font-size:65.640000px;}
.fsf_c00138{font-size:69.120000px;}
.fs13_c00138{font-size:72.600000px;}
.fs17_c00138{font-size:76.020000px;}
.fsa_c00138{font-size:79.500000px;}
.fs1d_c00138{font-size:82.920000px;}
.fs8_c00138{font-size:86.400000px;}
.fs9_c00138{font-size:89.880000px;}
.fs2_c00138{font-size:93.300000px;}
.fs5_c00138{font-size:96.780000px;}
.fs3_c00138{font-size:100.200000px;}
.fs4_c00138{font-size:103.680000px;}
.fs14_c00138{font-size:107.160000px;}
.fs1e_c00138{font-size:110.580000px;}
.fs23_c00138{font-size:114.060000px;}
.fs24_c00138{font-size:117.480000px;}
.fs1_c00138{font-size:120.960000px;}
.fs19_c00138{font-size:124.440000px;}
.fs25_c00138{font-size:138.240000px;}
.y0_c00138{bottom:0.000000px;}
.y166_c00138{bottom:212.550000px;}
.y16b_c00138{bottom:214.275000px;}
.y16a_c00138{bottom:215.130000px;}
.y169_c00138{bottom:217.725000px;}
.y168_c00138{bottom:220.320000px;}
.y16c_c00138{bottom:228.090000px;}
.y167_c00138{bottom:228.960000px;}
.y165_c00138{bottom:237.600000px;}
.y163_c00138{bottom:240.195000px;}
.y162_c00138{bottom:241.920000px;}
.y164_c00138{bottom:243.645000px;}
.y160_c00138{bottom:244.515000px;}
.y161_c00138{bottom:247.965000px;}
.y15f_c00138{bottom:256.605000px;}
.y15c_c00138{bottom:264.390000px;}
.y15e_c00138{bottom:268.710000px;}
.y157_c00138{bottom:269.565000px;}
.y155_c00138{bottom:270.435000px;}
.y154_c00138{bottom:271.290000px;}
.y156_c00138{bottom:272.160000px;}
.y15b_c00138{bottom:273.030000px;}
.y15a_c00138{bottom:273.885000px;}
.y159_c00138{bottom:274.755000px;}
.y158_c00138{bottom:277.350000px;}
.y15d_c00138{bottom:285.120000px;}
.y151_c00138{bottom:292.890000px;}
.y153_c00138{bottom:295.485000px;}
.y14f_c00138{bottom:296.355000px;}
.y152_c00138{bottom:297.210000px;}
.y14d_c00138{bottom:298.950000px;}
.y150_c00138{bottom:302.400000px;}
.y14e_c00138{bottom:304.995000px;}
.y148_c00138{bottom:319.680000px;}
.y147_c00138{bottom:321.405000px;}
.y144_c00138{bottom:323.130000px;}
.y149_c00138{bottom:324.000000px;}
.y14c_c00138{bottom:324.870000px;}
.y14a_c00138{bottom:325.725000px;}
.y146_c00138{bottom:328.320000px;}
.y145_c00138{bottom:330.045000px;}
.y14b_c00138{bottom:331.770000px;}
.y143_c00138{bottom:336.090000px;}
.y141_c00138{bottom:343.005000px;}
.y140_c00138{bottom:343.875000px;}
.y142_c00138{bottom:349.050000px;}
.y13f_c00138{bottom:349.920000px;}
.y13c_c00138{bottom:368.925000px;}
.y13e_c00138{bottom:371.520000px;}
.y13b_c00138{bottom:372.390000px;}
.y138_c00138{bottom:373.245000px;}
.y13d_c00138{bottom:374.115000px;}
.y137_c00138{bottom:375.840000px;}
.y13a_c00138{bottom:378.435000px;}
.y139_c00138{bottom:379.290000px;}
.y136_c00138{bottom:390.525000px;}
.y134_c00138{bottom:392.250000px;}
.y133_c00138{bottom:394.845000px;}
.y135_c00138{bottom:403.485000px;}
.y132_c00138{bottom:416.445000px;}
.y130_c00138{bottom:419.040000px;}
.y12e_c00138{bottom:419.910000px;}
.y12d_c00138{bottom:422.490000px;}
.y12c_c00138{bottom:424.230000px;}
.y131_c00138{bottom:425.955000px;}
.y12b_c00138{bottom:426.810000px;}
.y12f_c00138{bottom:427.680000px;}
.y128_c00138{bottom:443.235000px;}
.y125_c00138{bottom:444.960000px;}
.y127_c00138{bottom:445.830000px;}
.y126_c00138{bottom:446.685000px;}
.y123_c00138{bottom:447.555000px;}
.y12a_c00138{bottom:449.280000px;}
.y129_c00138{bottom:450.150000px;}
.y124_c00138{bottom:456.195000px;}
.y122_c00138{bottom:466.560000px;}
.y121_c00138{bottom:468.285000px;}
.y11f_c00138{bottom:470.880000px;}
.y11d_c00138{bottom:473.475000px;}
.y11c_c00138{bottom:474.330000px;}
.y120_c00138{bottom:475.200000px;}
.y11b_c00138{bottom:476.925000px;}
.y11a_c00138{bottom:480.390000px;}
.y11e_c00138{bottom:481.245000px;}
.y119_c00138{bottom:498.525000px;}
.y113_c00138{bottom:499.395000px;}
.y118_c00138{bottom:501.120000px;}
.y117_c00138{bottom:501.990000px;}
.y114_c00138{bottom:503.715000px;}
.y116_c00138{bottom:505.440000px;}
.y115_c00138{bottom:506.310000px;}
.y112_c00138{bottom:507.165000px;}
.y110_c00138{bottom:509.760000px;}
.y111_c00138{bottom:518.400000px;}
.y10e_c00138{bottom:520.125000px;}
.y10d_c00138{bottom:522.720000px;}
.y109_c00138{bottom:523.590000px;}
.y10f_c00138{bottom:524.445000px;}
.y108_c00138{bottom:525.315000px;}
.y10c_c00138{bottom:529.635000px;}
.y10b_c00138{bottom:530.490000px;}
.y10a_c00138{bottom:531.360000px;}
.y107_c00138{bottom:543.450000px;}
.y104_c00138{bottom:559.875000px;}
.y106_c00138{bottom:560.730000px;}
.y105_c00138{bottom:561.600000px;}
.y102_c00138{bottom:568.515000px;}
.y103_c00138{bottom:571.110000px;}
.yfe_c00138{bottom:571.965000px;}
.y101_c00138{bottom:572.835000px;}
.yfd_c00138{bottom:575.430000px;}
.yfc_c00138{bottom:577.155000px;}
.y100_c00138{bottom:578.880000px;}
.yff_c00138{bottom:580.605000px;}
.yf6_c00138{bottom:595.290000px;}
.yf9_c00138{bottom:596.160000px;}
.yf7_c00138{bottom:597.885000px;}
.yfb_c00138{bottom:600.480000px;}
.yfa_c00138{bottom:601.350000px;}
.yf8_c00138{bottom:603.930000px;}
.yf5_c00138{bottom:604.800000px;}
.yf4_c00138{bottom:606.525000px;}
.yf3_c00138{bottom:618.630000px;}
.yee_c00138{bottom:621.210000px;}
.yed_c00138{bottom:622.950000px;}
.yf1_c00138{bottom:623.805000px;}
.yf2_c00138{bottom:626.400000px;}
.yec_c00138{bottom:627.270000px;}
.yf0_c00138{bottom:628.995000px;}
.yef_c00138{bottom:630.720000px;}
.yeb_c00138{bottom:631.590000px;}
.ye9_c00138{bottom:644.550000px;}
.ye8_c00138{bottom:646.275000px;}
.ye7_c00138{bottom:647.130000px;}
.yea_c00138{bottom:649.725000px;}
.ye4_c00138{bottom:651.450000px;}
.ye0_c00138{bottom:652.320000px;}
.ye1_c00138{bottom:654.045000px;}
.ye6_c00138{bottom:654.915000px;}
.ye3_c00138{bottom:655.770000px;}
.ye5_c00138{bottom:656.640000px;}
.ye2_c00138{bottom:657.510000px;}
.ydf_c00138{bottom:700.710000px;}
.yde_c00138{bottom:706.755000px;}
.yd4_c00138{bottom:775.875000px;}
.yd2_c00138{bottom:777.600000px;}
.yd0_c00138{bottom:778.470000px;}
.ycf_c00138{bottom:780.195000px;}
.yd3_c00138{bottom:781.050000px;}
.yd1_c00138{bottom:781.920000px;}
.yd5_c00138{bottom:783.645000px;}
.ycd_c00138{bottom:796.605000px;}
.ycc_c00138{bottom:797.475000px;}
.ycb_c00138{bottom:799.200000px;}
.yc9_c00138{bottom:800.925000px;}
.yca_c00138{bottom:802.650000px;}
.yce_c00138{bottom:804.390000px;}
.yc5_c00138{bottom:821.670000px;}
.yc1_c00138{bottom:824.250000px;}
.yc2_c00138{bottom:825.120000px;}
.yc3_c00138{bottom:825.990000px;}
.yc8_c00138{bottom:826.845000px;}
.yc7_c00138{bottom:827.715000px;}
.yc6_c00138{bottom:829.440000px;}
.yc4_c00138{bottom:830.310000px;}
.ybf_c00138{bottom:845.850000px;}
.ybe_c00138{bottom:846.720000px;}
.ybd_c00138{bottom:847.590000px;}
.yc0_c00138{bottom:848.445000px;}
.ybc_c00138{bottom:850.170000px;}
.yb9_c00138{bottom:851.910000px;}
.yba_c00138{bottom:852.765000px;}
.yb7_c00138{bottom:853.635000px;}
.ybb_c00138{bottom:855.360000px;}
.yb8_c00138{bottom:856.230000px;}
.yb6_c00138{bottom:869.190000px;}
.yb2_c00138{bottom:871.770000px;}
.yaf_c00138{bottom:872.640000px;}
.yb5_c00138{bottom:873.510000px;}
.yad_c00138{bottom:874.365000px;}
.yb4_c00138{bottom:877.830000px;}
.yb0_c00138{bottom:878.685000px;}
.yb3_c00138{bottom:879.555000px;}
.yb1_c00138{bottom:880.410000px;}
.yae_c00138{bottom:881.280000px;}
.yaa_c00138{bottom:895.110000px;}
.yac_c00138{bottom:896.835000px;}
.ya8_c00138{bottom:899.430000px;}
.ya7_c00138{bottom:900.285000px;}
.yab_c00138{bottom:902.010000px;}
.ya6_c00138{bottom:902.880000px;}
.ya4_c00138{bottom:903.750000px;}
.ya9_c00138{bottom:904.605000px;}
.ya5_c00138{bottom:905.475000px;}
.ya3_c00138{bottom:906.330000px;}
.ya0_c00138{bottom:925.350000px;}
.y9f_c00138{bottom:926.205000px;}
.ya2_c00138{bottom:927.075000px;}
.ya1_c00138{bottom:927.930000px;}
.y98_c00138{bottom:928.800000px;}
.y9d_c00138{bottom:929.670000px;}
.y9e_c00138{bottom:930.525000px;}
.y9c_c00138{bottom:931.395000px;}
.y91_c00138{bottom:932.250000px;}
.y9b_c00138{bottom:933.120000px;}
.y9a_c00138{bottom:936.570000px;}
.y97_c00138{bottom:937.440000px;}
.y96_c00138{bottom:938.310000px;}
.y92_c00138{bottom:939.165000px;}
.y99_c00138{bottom:940.035000px;}
.y95_c00138{bottom:940.890000px;}
.y94_c00138{bottom:941.760000px;}
.y93_c00138{bottom:942.630000px;}
.y8c_c00138{bottom:946.080000px;}
.y8e_c00138{bottom:946.950000px;}
.y88_c00138{bottom:947.805000px;}
.y8b_c00138{bottom:948.675000px;}
.y87_c00138{bottom:949.530000px;}
.y89_c00138{bottom:950.400000px;}
.y90_c00138{bottom:951.270000px;}
.y8f_c00138{bottom:952.995000px;}
.y8d_c00138{bottom:953.850000px;}
.y8a_c00138{bottom:955.590000px;}
.y85_c00138{bottom:969.405000px;}
.y1_c00138{bottom:972.000000px;}
.y84_c00138{bottom:972.870000px;}
.y7d_c00138{bottom:973.725000px;}
.y80_c00138{bottom:974.595000px;}
.y86_c00138{bottom:976.320000px;}
.y83_c00138{bottom:977.190000px;}
.y82_c00138{bottom:978.045000px;}
.y7f_c00138{bottom:978.915000px;}
.y81_c00138{bottom:979.770000px;}
.y7c_c00138{bottom:980.640000px;}
.y7e_c00138{bottom:981.510000px;}
.ydd_c00138{bottom:983.235000px;}
.y78_c00138{bottom:1005.690000px;}
.y79_c00138{bottom:1006.560000px;}
.y7a_c00138{bottom:1007.430000px;}
.y7b_c00138{bottom:1008.285000px;}
.y77_c00138{bottom:1019.520000px;}
.y74_c00138{bottom:1022.970000px;}
.y76_c00138{bottom:1023.840000px;}
.y72_c00138{bottom:1028.160000px;}
.y73_c00138{bottom:1029.030000px;}
.y75_c00138{bottom:1029.885000px;}
.y70_c00138{bottom:1030.755000px;}
.y71_c00138{bottom:1031.610000px;}
.ydc_c00138{bottom:1041.120000px;}
.ydb_c00138{bottom:1044.570000px;}
.y6e_c00138{bottom:1047.165000px;}
.y6b_c00138{bottom:1048.035000px;}
.y6d_c00138{bottom:1048.890000px;}
.y6a_c00138{bottom:1052.355000px;}
.y6f_c00138{bottom:1053.210000px;}
.y6c_c00138{bottom:1055.805000px;}
.y69_c00138{bottom:1069.635000px;}
.y68_c00138{bottom:1070.490000px;}
.y66_c00138{bottom:1071.360000px;}
.y64_c00138{bottom:1074.810000px;}
.y65_c00138{bottom:1075.680000px;}
.y62_c00138{bottom:1076.550000px;}
.y61_c00138{bottom:1077.405000px;}
.y67_c00138{bottom:1078.275000px;}
.y63_c00138{bottom:1080.000000px;}
.y60_c00138{bottom:1090.365000px;}
.y5e_c00138{bottom:1094.685000px;}
.y5c_c00138{bottom:1099.005000px;}
.y5b_c00138{bottom:1100.730000px;}
.y5f_c00138{bottom:1102.470000px;}
.y5a_c00138{bottom:1103.325000px;}
.y5d_c00138{bottom:1104.195000px;}
.y59_c00138{bottom:1105.920000px;}
.y58_c00138{bottom:1106.790000px;}
.y57_c00138{bottom:1111.965000px;}
.y56_c00138{bottom:1119.750000px;}
.y55_c00138{bottom:1121.475000px;}
.y54_c00138{bottom:1122.330000px;}
.y51_c00138{bottom:1123.200000px;}
.y53_c00138{bottom:1124.070000px;}
.y4f_c00138{bottom:1125.795000px;}
.y50_c00138{bottom:1128.390000px;}
.y4e_c00138{bottom:1129.245000px;}
.y52_c00138{bottom:1130.970000px;}
.y4d_c00138{bottom:1132.710000px;}
.y4b_c00138{bottom:1143.075000px;}
.y4a_c00138{bottom:1146.525000px;}
.y46_c00138{bottom:1147.395000px;}
.y44_c00138{bottom:1149.120000px;}
.y48_c00138{bottom:1149.990000px;}
.y4c_c00138{bottom:1150.845000px;}
.y47_c00138{bottom:1151.715000px;}
.y49_c00138{bottom:1153.440000px;}
.y45_c00138{bottom:1155.165000px;}
.y43_c00138{bottom:1157.760000px;}
.y42_c00138{bottom:1169.850000px;}
.y3f_c00138{bottom:1171.590000px;}
.y41_c00138{bottom:1172.445000px;}
.y3d_c00138{bottom:1177.635000px;}
.y40_c00138{bottom:1178.490000px;}
.y3a_c00138{bottom:1179.360000px;}
.y3c_c00138{bottom:1180.230000px;}
.y3b_c00138{bottom:1181.085000px;}
.y3e_c00138{bottom:1181.955000px;}
.y39_c00138{bottom:1186.275000px;}
.y38_c00138{bottom:1195.770000px;}
.y36_c00138{bottom:1199.235000px;}
.y35_c00138{bottom:1203.555000px;}
.y34_c00138{bottom:1206.150000px;}
.y37_c00138{bottom:1207.005000px;}
.y32_c00138{bottom:1220.835000px;}
.y2c_c00138{bottom:1222.560000px;}
.y2f_c00138{bottom:1224.285000px;}
.y2e_c00138{bottom:1225.155000px;}
.y33_c00138{bottom:1228.605000px;}
.y31_c00138{bottom:1229.475000px;}
.y30_c00138{bottom:1230.330000px;}
.y2d_c00138{bottom:1231.200000px;}
.y2b_c00138{bottom:1232.070000px;}
.y2a_c00138{bottom:1244.160000px;}
.y29_c00138{bottom:1245.885000px;}
.y28_c00138{bottom:1246.755000px;}
.y26_c00138{bottom:1247.610000px;}
.y24_c00138{bottom:1248.480000px;}
.y21_c00138{bottom:1249.350000px;}
.y25_c00138{bottom:1252.800000px;}
.y27_c00138{bottom:1254.525000px;}
.y22_c00138{bottom:1255.395000px;}
.y23_c00138{bottom:1257.120000px;}
.y20_c00138{bottom:1269.210000px;}
.y1f_c00138{bottom:1270.950000px;}
.y1a_c00138{bottom:1273.530000px;}
.y1c_c00138{bottom:1274.400000px;}
.y1e_c00138{bottom:1276.125000px;}
.y1d_c00138{bottom:1277.850000px;}
.y1b_c00138{bottom:1278.720000px;}
.y19_c00138{bottom:1281.315000px;}
.y18_c00138{bottom:1296.870000px;}
.y16_c00138{bottom:1297.725000px;}
.y11_c00138{bottom:1299.450000px;}
.y14_c00138{bottom:1300.320000px;}
.y17_c00138{bottom:1302.915000px;}
.y12_c00138{bottom:1303.770000px;}
.y15_c00138{bottom:1305.510000px;}
.y13_c00138{bottom:1306.365000px;}
.yb_c00138{bottom:1322.790000px;}
.ya_c00138{bottom:1324.515000px;}
.y9_c00138{bottom:1325.370000px;}
.y10_c00138{bottom:1327.110000px;}
.yf_c00138{bottom:1327.965000px;}
.ye_c00138{bottom:1328.835000px;}
.yd_c00138{bottom:1330.560000px;}
.yc_c00138{bottom:1331.430000px;}
.y2_c00138{bottom:1347.840000px;}
.y4_c00138{bottom:1348.710000px;}
.y3_c00138{bottom:1349.565000px;}
.y6_c00138{bottom:1350.435000px;}
.yd6_c00138{bottom:1351.290000px;}
.y8_c00138{bottom:1353.030000px;}
.y5_c00138{bottom:1353.885000px;}
.y7_c00138{bottom:1356.480000px;}
.yd9_c00138{bottom:1386.720000px;}
.yda_c00138{bottom:1387.590000px;}
.yd7_c00138{bottom:1436.835000px;}
.yd8_c00138{bottom:1438.560000px;}
.h12_c00138{height:3.110063px;}
.h17_c00138{height:5.399414px;}
.h1d_c00138{height:6.209326px;}
.hd_c00138{height:9.340986px;}
.h24_c00138{height:12.418652px;}
.h22_c00138{height:15.550313px;}
.h13_c00138{height:18.681973px;}
.h2_c00138{height:21.759639px;}
.h23_c00138{height:24.891299px;}
.h26_c00138{height:26.239277px;}
.h25_c00138{height:27.968965px;}
.h18_c00138{height:31.100625px;}
.he_c00138{height:34.232285px;}
.hf_c00138{height:37.309951px;}
.h10_c00138{height:40.441611px;}
.h1a_c00138{height:43.519277px;}
.h1e_c00138{height:46.650937px;}
.h8_c00138{height:49.782598px;}
.h14_c00138{height:52.860264px;}
.h1c_c00138{height:55.991924px;}
.h9_c00138{height:59.069590px;}
.h11_c00138{height:62.201250px;}
.h15_c00138{height:65.332910px;}
.h21_c00138{height:65.681250px;}
.h19_c00138{height:68.410576px;}
.hc_c00138{height:71.542236px;}
.h1f_c00138{height:74.619902px;}
.ha_c00138{height:77.751563px;}
.hb_c00138{height:80.883223px;}
.h4_c00138{height:83.960889px;}
.h7_c00138{height:87.092549px;}
.h5_c00138{height:90.170215px;}
.h6_c00138{height:93.301875px;}
.h16_c00138{height:96.433535px;}
.h20_c00138{height:99.511201px;}
.h27_c00138{height:102.642861px;}
.h28_c00138{height:105.720527px;}
.h3_c00138{height:108.852188px;}
.h1b_c00138{height:111.983848px;}
.h29_c00138{height:124.402500px;}
.h0_c00138{height:1517.190000px;}
.h1_c00138{height:1517.250000px;}
.w0_c00138{width:1090.365000px;}
.w1_c00138{width:1090.500000px;}
.x0_c00138{left:0.000000px;}
.x1_c00138{left:113.190000px;}
.xd7_c00138{left:152.925000px;}
.xd5_c00138{left:158.115000px;}
.xd6_c00138{left:169.350000px;}
.xd3_c00138{left:176.250000px;}
.xdc_c00138{left:185.760000px;}
.xee_c00138{left:198.720000px;}
.xef_c00138{left:206.490000px;}
.x47_c00138{left:209.085000px;}
.x67_c00138{left:211.680000px;}
.x9e_c00138{left:213.405375px;}
.x10_c00138{left:215.130000px;}
.x62_c00138{left:216.870000px;}
.x34_c00138{left:218.595000px;}
.x26_c00138{left:220.320000px;}
.x3e_c00138{left:222.915000px;}
.x1c_c00138{left:224.640000px;}
.x2_c00138{left:226.365000px;}
.xd0_c00138{left:233.280000px;}
.x93_c00138{left:237.600000px;}
.x8c_c00138{left:247.110000px;}
.x27_c00138{left:250.560000px;}
.x35_c00138{left:257.475000px;}
.x94_c00138{left:259.200000px;}
.x5a_c00138{left:260.925000px;}
.xce_c00138{left:263.520000px;}
.xaa_c00138{left:265.245000px;}
.x4b_c00138{left:267.840000px;}
.x68_c00138{left:270.435000px;}
.x7e_c00138{left:273.885000px;}
.x11_c00138{left:276.480000px;}
.x95_c00138{left:278.205000px;}
.xd1_c00138{left:281.670000px;}
.xd8_c00138{left:283.395000px;}
.x1d_c00138{left:285.120000px;}
.x3f_c00138{left:287.715000px;}
.xab_c00138{left:290.310000px;}
.x9f_c00138{left:292.035000px;}
.x3_c00138{left:294.630000px;}
.x1e_c00138{left:296.355000px;}
.xea_c00138{left:300.675000px;}
.x7f_c00138{left:302.400000px;}
.x28_c00138{left:306.720000px;}
.xa0_c00138{left:309.315000px;}
.x74_c00138{left:312.765000px;}
.x5b_c00138{left:320.550000px;}
.xac_c00138{left:324.870000px;}
.xb6_c00138{left:326.595000px;}
.x4_c00138{left:328.320000px;}
.x1f_c00138{left:330.915000px;}
.x7c_c00138{left:335.235000px;}
.x29_c00138{left:336.960000px;}
.xc5_c00138{left:338.685000px;}
.x12_c00138{left:340.410000px;}
.x20_c00138{left:342.150000px;}
.x53_c00138{left:344.730000px;}
.x69_c00138{left:347.325000px;}
.xa1_c00138{left:349.920000px;}
.xbc_c00138{left:352.515000px;}
.x4c_c00138{left:355.110000px;}
.xb1_c00138{left:358.560000px;}
.x5c_c00138{left:360.285000px;}
.x96_c00138{left:362.010000px;}
.x8d_c00138{left:364.605000px;}
.x21_c00138{left:368.925000px;}
.x2a_c00138{left:371.520000px;}
.x5_c00138{left:374.970000px;}
.xdf_c00138{left:379.290000px;}
.x7d_c00138{left:386.205000px;}
.x6_c00138{left:387.930000px;}
.x63_c00138{left:390.525000px;}
.xe7_c00138{left:392.250000px;}
.x75_c00138{left:394.845000px;}
.xa8_c00138{left:397.440000px;}
.x13_c00138{left:401.760000px;}
.x76_c00138{left:406.950000px;}
.xbd_c00138{left:408.675000px;}
.x48_c00138{left:410.400000px;}
.x4d_c00138{left:412.995000px;}
.x7_c00138{left:415.590000px;}
.x86_c00138{left:417.315000px;}
.xc6_c00138{left:419.910000px;}
.x36_c00138{left:423.360000px;}
.x14_c00138{left:426.810000px;}
.x22_c00138{left:429.405000px;}
.x4e_c00138{left:432.870000px;}
.x97_c00138{left:435.450000px;}
.x37_c00138{left:437.190000px;}
.xb2_c00138{left:438.915000px;}
.xad_c00138{left:440.640000px;}
.x2b_c00138{left:443.235000px;}
.xb7_c00138{left:444.960000px;}
.xe2_c00138{left:446.685000px;}
.x15_c00138{left:449.280000px;}
.x77_c00138{left:452.730000px;}
.x8e_c00138{left:455.325000px;}
.x40_c00138{left:459.645000px;}
.x54_c00138{left:463.110000px;}
.x2c_c00138{left:466.560000px;}
.x4f_c00138{left:469.155000px;}
.x38_c00138{left:471.750000px;}
.x80_c00138{left:473.475000px;}
.x8_c00138{left:475.200000px;}
.xae_c00138{left:476.925000px;}
.x2d_c00138{left:479.520000px;}
.xa2_c00138{left:482.115000px;}
.xb3_c00138{left:485.565000px;}
.x87_c00138{left:487.290000px;}
.xc7_c00138{left:489.885000px;}
.x41_c00138{left:494.205000px;}
.xeb_c00138{left:496.800000px;}
.x55_c00138{left:498.525000px;}
.x23_c00138{left:500.250000px;}
.x16_c00138{left:502.845000px;}
.xe3_c00138{left:504.570000px;}
.x2e_c00138{left:506.310000px;}
.xc8_c00138{left:508.035000px;}
.xe5_c00138{left:510.630000px;}
.x88_c00138{left:514.950000px;}
.x6a_c00138{left:522.720000px;}
.x81_c00138{left:531.360000px;}
.x2f_c00138{left:533.955000px;}
.xa9_c00138{left:539.130000px;}
.x42_c00138{left:542.595000px;}
.x9_c00138{left:544.320000px;}
.x78_c00138{left:546.045000px;}
.xdd_c00138{left:547.770000px;}
.x50_c00138{left:550.365000px;}
.x71_c00138{left:553.830000px;}
.x98_c00138{left:555.555000px;}
.x5d_c00138{left:559.875000px;}
.xc9_c00138{left:562.470000px;}
.x99_c00138{left:568.515000px;}
.x56_c00138{left:571.110000px;}
.xaf_c00138{left:572.835000px;}
.x43_c00138{left:575.430000px;}
.x49_c00138{left:578.880000px;}
.xa3_c00138{left:583.200000px;}
.xde_c00138{left:585.795000px;}
.x8f_c00138{left:587.520000px;}
.x17_c00138{left:590.115000px;}
.xa_c00138{left:593.565000px;}
.xb8_c00138{left:596.160000px;}
.x64_c00138{left:601.350000px;}
.xd9_c00138{left:603.930000px;}
.xb4_c00138{left:606.525000px;}
.xb_c00138{left:609.120000px;}
.x89_c00138{left:610.845000px;}
.x30_c00138{left:614.310000px;}
.x5e_c00138{left:616.890000px;}
.xca_c00138{left:618.630000px;}
.xb9_c00138{left:624.675000px;}
.x6b_c00138{left:628.995000px;}
.x24_c00138{left:634.170000px;}
.xc_c00138{left:635.910000px;}
.xc1_c00138{left:637.635000px;}
.xe0_c00138{left:641.085000px;}
.xa4_c00138{left:644.550000px;}
.x8a_c00138{left:646.275000px;}
.x90_c00138{left:648.000000px;}
.x57_c00138{left:649.725000px;}
.x44_c00138{left:651.450000px;}
.x79_c00138{left:655.770000px;}
.x6c_c00138{left:659.235000px;}
.xba_c00138{left:660.960000px;}
.xd_c00138{left:664.410000px;}
.x25_c00138{left:667.875000px;}
.x39_c00138{left:669.600000px;}
.x5f_c00138{left:673.920000px;}
.x58_c00138{left:675.645000px;}
.x51_c00138{left:679.110000px;}
.xda_c00138{left:680.835000px;}
.x18_c00138{left:682.560000px;}
.xcb_c00138{left:685.155000px;}
.x6d_c00138{left:689.475000px;}
.x31_c00138{left:695.520000px;}
.x8b_c00138{left:698.115000px;}
.x45_c00138{left:699.840000px;}
.x19_c00138{left:704.160000px;}
.x72_c00138{left:706.755000px;}
.x9a_c00138{left:709.350000px;}
.x65_c00138{left:714.525000px;}
.x32_c00138{left:716.250000px;}
.xe_c00138{left:722.310000px;}
.xdb_c00138{left:724.035000px;}
.xe4_c00138{left:725.760000px;}
.x59_c00138{left:727.485000px;}
.x52_c00138{left:730.080000px;}
.x82_c00138{left:731.805000px;}
.x3a_c00138{left:735.270000px;}
.x7a_c00138{left:738.720000px;}
.x83_c00138{left:743.040000px;}
.xe8_c00138{left:745.635000px;}
.x60_c00138{left:750.810000px;}
.xcc_c00138{left:752.550000px;}
.x6e_c00138{left:760.320000px;}
.x3b_c00138{left:762.045000px;}
.x33_c00138{left:765.510000px;}
.x73_c00138{left:768.960000px;}
.x1a_c00138{left:771.555000px;}
.x84_c00138{left:773.280000px;}
.xa5_c00138{left:775.875000px;}
.x61_c00138{left:777.600000px;}
.x91_c00138{left:779.325000px;}
.xbb_c00138{left:781.920000px;}
.x46_c00138{left:783.645000px;}
.xf_c00138{left:786.240000px;}
.xb5_c00138{left:788.835000px;}
.xcd_c00138{left:794.010000px;}
.x6f_c00138{left:796.605000px;}
.xe6_c00138{left:799.200000px;}
.xe9_c00138{left:800.925000px;}
.x1b_c00138{left:804.390000px;}
.xa6_c00138{left:806.970000px;}
.xd2_c00138{left:810.435000px;}
.x7b_c00138{left:813.030000px;}
.xd4_c00138{left:816.480000px;}
.xb0_c00138{left:820.800000px;}
.x66_c00138{left:822.525000px;}
.x9b_c00138{left:827.715000px;}
.x70_c00138{left:829.440000px;}
.x3c_c00138{left:831.165000px;}
.xa7_c00138{left:832.890000px;}
.x85_c00138{left:835.485000px;}
.x3d_c00138{left:840.675000px;}
.x4a_c00138{left:844.995000px;}
.xc0_c00138{left:851.040000px;}
.xe1_c00138{left:853.635000px;}
.xcf_c00138{left:856.230000px;}
.x9c_c00138{left:857.955000px;}
.x92_c00138{left:860.550000px;}
.xed_c00138{left:863.130000px;}
.x9d_c00138{left:869.190000px;}
.xec_c00138{left:875.235000px;}
.xf0_c00138{left:882.150000px;}
.xc4_c00138{left:943.485000px;}
.xc2_c00138{left:1006.560000px;}
.xc3_c00138{left:1018.650000px;}
.xbe_c00138{left:1048.035000px;}
.xbf_c00138{left:1067.040000px;}
@media print{
.v2_c00138{vertical-align:-15.360000pt;}
.v0_c00138{vertical-align:0.000000pt;}
.v1_c00138{vertical-align:3.093333pt;}
.ls1_c00138{letter-spacing:0.000000pt;}
.ls0_c00138{letter-spacing:29.551147pt;}
.ws0_c00138{word-spacing:-21.562667pt;}
.ws2_c00138{word-spacing:0.000000pt;}
.ws1_c00138{word-spacing:33.714908pt;}
.fs10_c00138{font-size:3.072000pt;}
.fs15_c00138{font-size:5.333333pt;}
.fs1b_c00138{font-size:6.133333pt;}
.fsb_c00138{font-size:9.226667pt;}
.fs21_c00138{font-size:12.266667pt;}
.fs1f_c00138{font-size:15.360000pt;}
.fs11_c00138{font-size:18.453333pt;}
.fs0_c00138{font-size:21.493333pt;}
.fs20_c00138{font-size:24.586667pt;}
.fs22_c00138{font-size:27.626667pt;}
.fs16_c00138{font-size:30.720000pt;}
.fsc_c00138{font-size:33.813333pt;}
.fsd_c00138{font-size:36.853333pt;}
.fse_c00138{font-size:39.946667pt;}
.fs18_c00138{font-size:42.986667pt;}
.fs1c_c00138{font-size:46.080000pt;}
.fs6_c00138{font-size:49.173333pt;}
.fs12_c00138{font-size:52.213333pt;}
.fs1a_c00138{font-size:55.306667pt;}
.fs7_c00138{font-size:58.346667pt;}
.fsf_c00138{font-size:61.440000pt;}
.fs13_c00138{font-size:64.533333pt;}
.fs17_c00138{font-size:67.573333pt;}
.fsa_c00138{font-size:70.666667pt;}
.fs1d_c00138{font-size:73.706667pt;}
.fs8_c00138{font-size:76.800000pt;}
.fs9_c00138{font-size:79.893333pt;}
.fs2_c00138{font-size:82.933333pt;}
.fs5_c00138{font-size:86.026667pt;}
.fs3_c00138{font-size:89.066667pt;}
.fs4_c00138{font-size:92.160000pt;}
.fs14_c00138{font-size:95.253333pt;}
.fs1e_c00138{font-size:98.293333pt;}
.fs23_c00138{font-size:101.386667pt;}
.fs24_c00138{font-size:104.426667pt;}
.fs1_c00138{font-size:107.520000pt;}
.fs19_c00138{font-size:110.613333pt;}
.fs25_c00138{font-size:122.880000pt;}
.y0_c00138{bottom:0.000000pt;}
.y166_c00138{bottom:188.933333pt;}
.y16b_c00138{bottom:190.466667pt;}
.y16a_c00138{bottom:191.226667pt;}
.y169_c00138{bottom:193.533333pt;}
.y168_c00138{bottom:195.840000pt;}
.y16c_c00138{bottom:202.746667pt;}
.y167_c00138{bottom:203.520000pt;}
.y165_c00138{bottom:211.200000pt;}
.y163_c00138{bottom:213.506667pt;}
.y162_c00138{bottom:215.040000pt;}
.y164_c00138{bottom:216.573333pt;}
.y160_c00138{bottom:217.346667pt;}
.y161_c00138{bottom:220.413333pt;}
.y15f_c00138{bottom:228.093333pt;}
.y15c_c00138{bottom:235.013333pt;}
.y15e_c00138{bottom:238.853333pt;}
.y157_c00138{bottom:239.613333pt;}
.y155_c00138{bottom:240.386667pt;}
.y154_c00138{bottom:241.146667pt;}
.y156_c00138{bottom:241.920000pt;}
.y15b_c00138{bottom:242.693333pt;}
.y15a_c00138{bottom:243.453333pt;}
.y159_c00138{bottom:244.226667pt;}
.y158_c00138{bottom:246.533333pt;}
.y15d_c00138{bottom:253.440000pt;}
.y151_c00138{bottom:260.346667pt;}
.y153_c00138{bottom:262.653333pt;}
.y14f_c00138{bottom:263.426667pt;}
.y152_c00138{bottom:264.186667pt;}
.y14d_c00138{bottom:265.733333pt;}
.y150_c00138{bottom:268.800000pt;}
.y14e_c00138{bottom:271.106667pt;}
.y148_c00138{bottom:284.160000pt;}
.y147_c00138{bottom:285.693333pt;}
.y144_c00138{bottom:287.226667pt;}
.y149_c00138{bottom:288.000000pt;}
.y14c_c00138{bottom:288.773333pt;}
.y14a_c00138{bottom:289.533333pt;}
.y146_c00138{bottom:291.840000pt;}
.y145_c00138{bottom:293.373333pt;}
.y14b_c00138{bottom:294.906667pt;}
.y143_c00138{bottom:298.746667pt;}
.y141_c00138{bottom:304.893333pt;}
.y140_c00138{bottom:305.666667pt;}
.y142_c00138{bottom:310.266667pt;}
.y13f_c00138{bottom:311.040000pt;}
.y13c_c00138{bottom:327.933333pt;}
.y13e_c00138{bottom:330.240000pt;}
.y13b_c00138{bottom:331.013333pt;}
.y138_c00138{bottom:331.773333pt;}
.y13d_c00138{bottom:332.546667pt;}
.y137_c00138{bottom:334.080000pt;}
.y13a_c00138{bottom:336.386667pt;}
.y139_c00138{bottom:337.146667pt;}
.y136_c00138{bottom:347.133333pt;}
.y134_c00138{bottom:348.666667pt;}
.y133_c00138{bottom:350.973333pt;}
.y135_c00138{bottom:358.653333pt;}
.y132_c00138{bottom:370.173333pt;}
.y130_c00138{bottom:372.480000pt;}
.y12e_c00138{bottom:373.253333pt;}
.y12d_c00138{bottom:375.546667pt;}
.y12c_c00138{bottom:377.093333pt;}
.y131_c00138{bottom:378.626667pt;}
.y12b_c00138{bottom:379.386667pt;}
.y12f_c00138{bottom:380.160000pt;}
.y128_c00138{bottom:393.986667pt;}
.y125_c00138{bottom:395.520000pt;}
.y127_c00138{bottom:396.293333pt;}
.y126_c00138{bottom:397.053333pt;}
.y123_c00138{bottom:397.826667pt;}
.y12a_c00138{bottom:399.360000pt;}
.y129_c00138{bottom:400.133333pt;}
.y124_c00138{bottom:405.506667pt;}
.y122_c00138{bottom:414.720000pt;}
.y121_c00138{bottom:416.253333pt;}
.y11f_c00138{bottom:418.560000pt;}
.y11d_c00138{bottom:420.866667pt;}
.y11c_c00138{bottom:421.626667pt;}
.y120_c00138{bottom:422.400000pt;}
.y11b_c00138{bottom:423.933333pt;}
.y11a_c00138{bottom:427.013333pt;}
.y11e_c00138{bottom:427.773333pt;}
.y119_c00138{bottom:443.133333pt;}
.y113_c00138{bottom:443.906667pt;}
.y118_c00138{bottom:445.440000pt;}
.y117_c00138{bottom:446.213333pt;}
.y114_c00138{bottom:447.746667pt;}
.y116_c00138{bottom:449.280000pt;}
.y115_c00138{bottom:450.053333pt;}
.y112_c00138{bottom:450.813333pt;}
.y110_c00138{bottom:453.120000pt;}
.y111_c00138{bottom:460.800000pt;}
.y10e_c00138{bottom:462.333333pt;}
.y10d_c00138{bottom:464.640000pt;}
.y109_c00138{bottom:465.413333pt;}
.y10f_c00138{bottom:466.173333pt;}
.y108_c00138{bottom:466.946667pt;}
.y10c_c00138{bottom:470.786667pt;}
.y10b_c00138{bottom:471.546667pt;}
.y10a_c00138{bottom:472.320000pt;}
.y107_c00138{bottom:483.066667pt;}
.y104_c00138{bottom:497.666667pt;}
.y106_c00138{bottom:498.426667pt;}
.y105_c00138{bottom:499.200000pt;}
.y102_c00138{bottom:505.346667pt;}
.y103_c00138{bottom:507.653333pt;}
.yfe_c00138{bottom:508.413333pt;}
.y101_c00138{bottom:509.186667pt;}
.yfd_c00138{bottom:511.493333pt;}
.yfc_c00138{bottom:513.026667pt;}
.y100_c00138{bottom:514.560000pt;}
.yff_c00138{bottom:516.093333pt;}
.yf6_c00138{bottom:529.146667pt;}
.yf9_c00138{bottom:529.920000pt;}
.yf7_c00138{bottom:531.453333pt;}
.yfb_c00138{bottom:533.760000pt;}
.yfa_c00138{bottom:534.533333pt;}
.yf8_c00138{bottom:536.826667pt;}
.yf5_c00138{bottom:537.600000pt;}
.yf4_c00138{bottom:539.133333pt;}
.yf3_c00138{bottom:549.893333pt;}
.yee_c00138{bottom:552.186667pt;}
.yed_c00138{bottom:553.733333pt;}
.yf1_c00138{bottom:554.493333pt;}
.yf2_c00138{bottom:556.800000pt;}
.yec_c00138{bottom:557.573333pt;}
.yf0_c00138{bottom:559.106667pt;}
.yef_c00138{bottom:560.640000pt;}
.yeb_c00138{bottom:561.413333pt;}
.ye9_c00138{bottom:572.933333pt;}
.ye8_c00138{bottom:574.466667pt;}
.ye7_c00138{bottom:575.226667pt;}
.yea_c00138{bottom:577.533333pt;}
.ye4_c00138{bottom:579.066667pt;}
.ye0_c00138{bottom:579.840000pt;}
.ye1_c00138{bottom:581.373333pt;}
.ye6_c00138{bottom:582.146667pt;}
.ye3_c00138{bottom:582.906667pt;}
.ye5_c00138{bottom:583.680000pt;}
.ye2_c00138{bottom:584.453333pt;}
.ydf_c00138{bottom:622.853333pt;}
.yde_c00138{bottom:628.226667pt;}
.yd4_c00138{bottom:689.666667pt;}
.yd2_c00138{bottom:691.200000pt;}
.yd0_c00138{bottom:691.973333pt;}
.ycf_c00138{bottom:693.506667pt;}
.yd3_c00138{bottom:694.266667pt;}
.yd1_c00138{bottom:695.040000pt;}
.yd5_c00138{bottom:696.573333pt;}
.ycd_c00138{bottom:708.093333pt;}
.ycc_c00138{bottom:708.866667pt;}
.ycb_c00138{bottom:710.400000pt;}
.yc9_c00138{bottom:711.933333pt;}
.yca_c00138{bottom:713.466667pt;}
.yce_c00138{bottom:715.013333pt;}
.yc5_c00138{bottom:730.373333pt;}
.yc1_c00138{bottom:732.666667pt;}
.yc2_c00138{bottom:733.440000pt;}
.yc3_c00138{bottom:734.213333pt;}
.yc8_c00138{bottom:734.973333pt;}
.yc7_c00138{bottom:735.746667pt;}
.yc6_c00138{bottom:737.280000pt;}
.yc4_c00138{bottom:738.053333pt;}
.ybf_c00138{bottom:751.866667pt;}
.ybe_c00138{bottom:752.640000pt;}
.ybd_c00138{bottom:753.413333pt;}
.yc0_c00138{bottom:754.173333pt;}
.ybc_c00138{bottom:755.706667pt;}
.yb9_c00138{bottom:757.253333pt;}
.yba_c00138{bottom:758.013333pt;}
.yb7_c00138{bottom:758.786667pt;}
.ybb_c00138{bottom:760.320000pt;}
.yb8_c00138{bottom:761.093333pt;}
.yb6_c00138{bottom:772.613333pt;}
.yb2_c00138{bottom:774.906667pt;}
.yaf_c00138{bottom:775.680000pt;}
.yb5_c00138{bottom:776.453333pt;}
.yad_c00138{bottom:777.213333pt;}
.yb4_c00138{bottom:780.293333pt;}
.yb0_c00138{bottom:781.053333pt;}
.yb3_c00138{bottom:781.826667pt;}
.yb1_c00138{bottom:782.586667pt;}
.yae_c00138{bottom:783.360000pt;}
.yaa_c00138{bottom:795.653333pt;}
.yac_c00138{bottom:797.186667pt;}
.ya8_c00138{bottom:799.493333pt;}
.ya7_c00138{bottom:800.253333pt;}
.yab_c00138{bottom:801.786667pt;}
.ya6_c00138{bottom:802.560000pt;}
.ya4_c00138{bottom:803.333333pt;}
.ya9_c00138{bottom:804.093333pt;}
.ya5_c00138{bottom:804.866667pt;}
.ya3_c00138{bottom:805.626667pt;}
.ya0_c00138{bottom:822.533333pt;}
.y9f_c00138{bottom:823.293333pt;}
.ya2_c00138{bottom:824.066667pt;}
.ya1_c00138{bottom:824.826667pt;}
.y98_c00138{bottom:825.600000pt;}
.y9d_c00138{bottom:826.373333pt;}
.y9e_c00138{bottom:827.133333pt;}
.y9c_c00138{bottom:827.906667pt;}
.y91_c00138{bottom:828.666667pt;}
.y9b_c00138{bottom:829.440000pt;}
.y9a_c00138{bottom:832.506667pt;}
.y97_c00138{bottom:833.280000pt;}
.y96_c00138{bottom:834.053333pt;}
.y92_c00138{bottom:834.813333pt;}
.y99_c00138{bottom:835.586667pt;}
.y95_c00138{bottom:836.346667pt;}
.y94_c00138{bottom:837.120000pt;}
.y93_c00138{bottom:837.893333pt;}
.y8c_c00138{bottom:840.960000pt;}
.y8e_c00138{bottom:841.733333pt;}
.y88_c00138{bottom:842.493333pt;}
.y8b_c00138{bottom:843.266667pt;}
.y87_c00138{bottom:844.026667pt;}
.y89_c00138{bottom:844.800000pt;}
.y90_c00138{bottom:845.573333pt;}
.y8f_c00138{bottom:847.106667pt;}
.y8d_c00138{bottom:847.866667pt;}
.y8a_c00138{bottom:849.413333pt;}
.y85_c00138{bottom:861.693333pt;}
.y1_c00138{bottom:864.000000pt;}
.y84_c00138{bottom:864.773333pt;}
.y7d_c00138{bottom:865.533333pt;}
.y80_c00138{bottom:866.306667pt;}
.y86_c00138{bottom:867.840000pt;}
.y83_c00138{bottom:868.613333pt;}
.y82_c00138{bottom:869.373333pt;}
.y7f_c00138{bottom:870.146667pt;}
.y81_c00138{bottom:870.906667pt;}
.y7c_c00138{bottom:871.680000pt;}
.y7e_c00138{bottom:872.453333pt;}
.ydd_c00138{bottom:873.986667pt;}
.y78_c00138{bottom:893.946667pt;}
.y79_c00138{bottom:894.720000pt;}
.y7a_c00138{bottom:895.493333pt;}
.y7b_c00138{bottom:896.253333pt;}
.y77_c00138{bottom:906.240000pt;}
.y74_c00138{bottom:909.306667pt;}
.y76_c00138{bottom:910.080000pt;}
.y72_c00138{bottom:913.920000pt;}
.y73_c00138{bottom:914.693333pt;}
.y75_c00138{bottom:915.453333pt;}
.y70_c00138{bottom:916.226667pt;}
.y71_c00138{bottom:916.986667pt;}
.ydc_c00138{bottom:925.440000pt;}
.ydb_c00138{bottom:928.506667pt;}
.y6e_c00138{bottom:930.813333pt;}
.y6b_c00138{bottom:931.586667pt;}
.y6d_c00138{bottom:932.346667pt;}
.y6a_c00138{bottom:935.426667pt;}
.y6f_c00138{bottom:936.186667pt;}
.y6c_c00138{bottom:938.493333pt;}
.y69_c00138{bottom:950.786667pt;}
.y68_c00138{bottom:951.546667pt;}
.y66_c00138{bottom:952.320000pt;}
.y64_c00138{bottom:955.386667pt;}
.y65_c00138{bottom:956.160000pt;}
.y62_c00138{bottom:956.933333pt;}
.y61_c00138{bottom:957.693333pt;}
.y67_c00138{bottom:958.466667pt;}
.y63_c00138{bottom:960.000000pt;}
.y60_c00138{bottom:969.213333pt;}
.y5e_c00138{bottom:973.053333pt;}
.y5c_c00138{bottom:976.893333pt;}
.y5b_c00138{bottom:978.426667pt;}
.y5f_c00138{bottom:979.973333pt;}
.y5a_c00138{bottom:980.733333pt;}
.y5d_c00138{bottom:981.506667pt;}
.y59_c00138{bottom:983.040000pt;}
.y58_c00138{bottom:983.813333pt;}
.y57_c00138{bottom:988.413333pt;}
.y56_c00138{bottom:995.333333pt;}
.y55_c00138{bottom:996.866667pt;}
.y54_c00138{bottom:997.626667pt;}
.y51_c00138{bottom:998.400000pt;}
.y53_c00138{bottom:999.173333pt;}
.y4f_c00138{bottom:1000.706667pt;}
.y50_c00138{bottom:1003.013333pt;}
.y4e_c00138{bottom:1003.773333pt;}
.y52_c00138{bottom:1005.306667pt;}
.y4d_c00138{bottom:1006.853333pt;}
.y4b_c00138{bottom:1016.066667pt;}
.y4a_c00138{bottom:1019.133333pt;}
.y46_c00138{bottom:1019.906667pt;}
.y44_c00138{bottom:1021.440000pt;}
.y48_c00138{bottom:1022.213333pt;}
.y4c_c00138{bottom:1022.973333pt;}
.y47_c00138{bottom:1023.746667pt;}
.y49_c00138{bottom:1025.280000pt;}
.y45_c00138{bottom:1026.813333pt;}
.y43_c00138{bottom:1029.120000pt;}
.y42_c00138{bottom:1039.866667pt;}
.y3f_c00138{bottom:1041.413333pt;}
.y41_c00138{bottom:1042.173333pt;}
.y3d_c00138{bottom:1046.786667pt;}
.y40_c00138{bottom:1047.546667pt;}
.y3a_c00138{bottom:1048.320000pt;}
.y3c_c00138{bottom:1049.093333pt;}
.y3b_c00138{bottom:1049.853333pt;}
.y3e_c00138{bottom:1050.626667pt;}
.y39_c00138{bottom:1054.466667pt;}
.y38_c00138{bottom:1062.906667pt;}
.y36_c00138{bottom:1065.986667pt;}
.y35_c00138{bottom:1069.826667pt;}
.y34_c00138{bottom:1072.133333pt;}
.y37_c00138{bottom:1072.893333pt;}
.y32_c00138{bottom:1085.186667pt;}
.y2c_c00138{bottom:1086.720000pt;}
.y2f_c00138{bottom:1088.253333pt;}
.y2e_c00138{bottom:1089.026667pt;}
.y33_c00138{bottom:1092.093333pt;}
.y31_c00138{bottom:1092.866667pt;}
.y30_c00138{bottom:1093.626667pt;}
.y2d_c00138{bottom:1094.400000pt;}
.y2b_c00138{bottom:1095.173333pt;}
.y2a_c00138{bottom:1105.920000pt;}
.y29_c00138{bottom:1107.453333pt;}
.y28_c00138{bottom:1108.226667pt;}
.y26_c00138{bottom:1108.986667pt;}
.y24_c00138{bottom:1109.760000pt;}
.y21_c00138{bottom:1110.533333pt;}
.y25_c00138{bottom:1113.600000pt;}
.y27_c00138{bottom:1115.133333pt;}
.y22_c00138{bottom:1115.906667pt;}
.y23_c00138{bottom:1117.440000pt;}
.y20_c00138{bottom:1128.186667pt;}
.y1f_c00138{bottom:1129.733333pt;}
.y1a_c00138{bottom:1132.026667pt;}
.y1c_c00138{bottom:1132.800000pt;}
.y1e_c00138{bottom:1134.333333pt;}
.y1d_c00138{bottom:1135.866667pt;}
.y1b_c00138{bottom:1136.640000pt;}
.y19_c00138{bottom:1138.946667pt;}
.y18_c00138{bottom:1152.773333pt;}
.y16_c00138{bottom:1153.533333pt;}
.y11_c00138{bottom:1155.066667pt;}
.y14_c00138{bottom:1155.840000pt;}
.y17_c00138{bottom:1158.146667pt;}
.y12_c00138{bottom:1158.906667pt;}
.y15_c00138{bottom:1160.453333pt;}
.y13_c00138{bottom:1161.213333pt;}
.yb_c00138{bottom:1175.813333pt;}
.ya_c00138{bottom:1177.346667pt;}
.y9_c00138{bottom:1178.106667pt;}
.y10_c00138{bottom:1179.653333pt;}
.yf_c00138{bottom:1180.413333pt;}
.ye_c00138{bottom:1181.186667pt;}
.yd_c00138{bottom:1182.720000pt;}
.yc_c00138{bottom:1183.493333pt;}
.y2_c00138{bottom:1198.080000pt;}
.y4_c00138{bottom:1198.853333pt;}
.y3_c00138{bottom:1199.613333pt;}
.y6_c00138{bottom:1200.386667pt;}
.yd6_c00138{bottom:1201.146667pt;}
.y8_c00138{bottom:1202.693333pt;}
.y5_c00138{bottom:1203.453333pt;}
.y7_c00138{bottom:1205.760000pt;}
.yd9_c00138{bottom:1232.640000pt;}
.yda_c00138{bottom:1233.413333pt;}
.yd7_c00138{bottom:1277.186667pt;}
.yd8_c00138{bottom:1278.720000pt;}
.h12_c00138{height:2.764500pt;}
.h17_c00138{height:4.799479pt;}
.h1d_c00138{height:5.519401pt;}
.hd_c00138{height:8.303099pt;}
.h24_c00138{height:11.038802pt;}
.h22_c00138{height:13.822500pt;}
.h13_c00138{height:16.606198pt;}
.h2_c00138{height:19.341901pt;}
.h23_c00138{height:22.125599pt;}
.h26_c00138{height:23.323802pt;}
.h25_c00138{height:24.861302pt;}
.h18_c00138{height:27.645000pt;}
.he_c00138{height:30.428698pt;}
.hf_c00138{height:33.164401pt;}
.h10_c00138{height:35.948099pt;}
.h1a_c00138{height:38.683802pt;}
.h1e_c00138{height:41.467500pt;}
.h8_c00138{height:44.251198pt;}
.h14_c00138{height:46.986901pt;}
.h1c_c00138{height:49.770599pt;}
.h9_c00138{height:52.506302pt;}
.h11_c00138{height:55.290000pt;}
.h15_c00138{height:58.073698pt;}
.h21_c00138{height:58.383333pt;}
.h19_c00138{height:60.809401pt;}
.hc_c00138{height:63.593099pt;}
.h1f_c00138{height:66.328802pt;}
.ha_c00138{height:69.112500pt;}
.hb_c00138{height:71.896198pt;}
.h4_c00138{height:74.631901pt;}
.h7_c00138{height:77.415599pt;}
.h5_c00138{height:80.151302pt;}
.h6_c00138{height:82.935000pt;}
.h16_c00138{height:85.718698pt;}
.h20_c00138{height:88.454401pt;}
.h27_c00138{height:91.238099pt;}
.h28_c00138{height:93.973802pt;}
.h3_c00138{height:96.757500pt;}
.h1b_c00138{height:99.541198pt;}
.h29_c00138{height:110.580000pt;}
.h0_c00138{height:1348.613333pt;}
.h1_c00138{height:1348.666667pt;}
.w0_c00138{width:969.213333pt;}
.w1_c00138{width:969.333333pt;}
.x0_c00138{left:0.000000pt;}
.x1_c00138{left:100.613333pt;}
.xd7_c00138{left:135.933333pt;}
.xd5_c00138{left:140.546667pt;}
.xd6_c00138{left:150.533333pt;}
.xd3_c00138{left:156.666667pt;}
.xdc_c00138{left:165.120000pt;}
.xee_c00138{left:176.640000pt;}
.xef_c00138{left:183.546667pt;}
.x47_c00138{left:185.853333pt;}
.x67_c00138{left:188.160000pt;}
.x9e_c00138{left:189.693667pt;}
.x10_c00138{left:191.226667pt;}
.x62_c00138{left:192.773333pt;}
.x34_c00138{left:194.306667pt;}
.x26_c00138{left:195.840000pt;}
.x3e_c00138{left:198.146667pt;}
.x1c_c00138{left:199.680000pt;}
.x2_c00138{left:201.213333pt;}
.xd0_c00138{left:207.360000pt;}
.x93_c00138{left:211.200000pt;}
.x8c_c00138{left:219.653333pt;}
.x27_c00138{left:222.720000pt;}
.x35_c00138{left:228.866667pt;}
.x94_c00138{left:230.400000pt;}
.x5a_c00138{left:231.933333pt;}
.xce_c00138{left:234.240000pt;}
.xaa_c00138{left:235.773333pt;}
.x4b_c00138{left:238.080000pt;}
.x68_c00138{left:240.386667pt;}
.x7e_c00138{left:243.453333pt;}
.x11_c00138{left:245.760000pt;}
.x95_c00138{left:247.293333pt;}
.xd1_c00138{left:250.373333pt;}
.xd8_c00138{left:251.906667pt;}
.x1d_c00138{left:253.440000pt;}
.x3f_c00138{left:255.746667pt;}
.xab_c00138{left:258.053333pt;}
.x9f_c00138{left:259.586667pt;}
.x3_c00138{left:261.893333pt;}
.x1e_c00138{left:263.426667pt;}
.xea_c00138{left:267.266667pt;}
.x7f_c00138{left:268.800000pt;}
.x28_c00138{left:272.640000pt;}
.xa0_c00138{left:274.946667pt;}
.x74_c00138{left:278.013333pt;}
.x5b_c00138{left:284.933333pt;}
.xac_c00138{left:288.773333pt;}
.xb6_c00138{left:290.306667pt;}
.x4_c00138{left:291.840000pt;}
.x1f_c00138{left:294.146667pt;}
.x7c_c00138{left:297.986667pt;}
.x29_c00138{left:299.520000pt;}
.xc5_c00138{left:301.053333pt;}
.x12_c00138{left:302.586667pt;}
.x20_c00138{left:304.133333pt;}
.x53_c00138{left:306.426667pt;}
.x69_c00138{left:308.733333pt;}
.xa1_c00138{left:311.040000pt;}
.xbc_c00138{left:313.346667pt;}
.x4c_c00138{left:315.653333pt;}
.xb1_c00138{left:318.720000pt;}
.x5c_c00138{left:320.253333pt;}
.x96_c00138{left:321.786667pt;}
.x8d_c00138{left:324.093333pt;}
.x21_c00138{left:327.933333pt;}
.x2a_c00138{left:330.240000pt;}
.x5_c00138{left:333.306667pt;}
.xdf_c00138{left:337.146667pt;}
.x7d_c00138{left:343.293333pt;}
.x6_c00138{left:344.826667pt;}
.x63_c00138{left:347.133333pt;}
.xe7_c00138{left:348.666667pt;}
.x75_c00138{left:350.973333pt;}
.xa8_c00138{left:353.280000pt;}
.x13_c00138{left:357.120000pt;}
.x76_c00138{left:361.733333pt;}
.xbd_c00138{left:363.266667pt;}
.x48_c00138{left:364.800000pt;}
.x4d_c00138{left:367.106667pt;}
.x7_c00138{left:369.413333pt;}
.x86_c00138{left:370.946667pt;}
.xc6_c00138{left:373.253333pt;}
.x36_c00138{left:376.320000pt;}
.x14_c00138{left:379.386667pt;}
.x22_c00138{left:381.693333pt;}
.x4e_c00138{left:384.773333pt;}
.x97_c00138{left:387.066667pt;}
.x37_c00138{left:388.613333pt;}
.xb2_c00138{left:390.146667pt;}
.xad_c00138{left:391.680000pt;}
.x2b_c00138{left:393.986667pt;}
.xb7_c00138{left:395.520000pt;}
.xe2_c00138{left:397.053333pt;}
.x15_c00138{left:399.360000pt;}
.x77_c00138{left:402.426667pt;}
.x8e_c00138{left:404.733333pt;}
.x40_c00138{left:408.573333pt;}
.x54_c00138{left:411.653333pt;}
.x2c_c00138{left:414.720000pt;}
.x4f_c00138{left:417.026667pt;}
.x38_c00138{left:419.333333pt;}
.x80_c00138{left:420.866667pt;}
.x8_c00138{left:422.400000pt;}
.xae_c00138{left:423.933333pt;}
.x2d_c00138{left:426.240000pt;}
.xa2_c00138{left:428.546667pt;}
.xb3_c00138{left:431.613333pt;}
.x87_c00138{left:433.146667pt;}
.xc7_c00138{left:435.453333pt;}
.x41_c00138{left:439.293333pt;}
.xeb_c00138{left:441.600000pt;}
.x55_c00138{left:443.133333pt;}
.x23_c00138{left:444.666667pt;}
.x16_c00138{left:446.973333pt;}
.xe3_c00138{left:448.506667pt;}
.x2e_c00138{left:450.053333pt;}
.xc8_c00138{left:451.586667pt;}
.xe5_c00138{left:453.893333pt;}
.x88_c00138{left:457.733333pt;}
.x6a_c00138{left:464.640000pt;}
.x81_c00138{left:472.320000pt;}
.x2f_c00138{left:474.626667pt;}
.xa9_c00138{left:479.226667pt;}
.x42_c00138{left:482.306667pt;}
.x9_c00138{left:483.840000pt;}
.x78_c00138{left:485.373333pt;}
.xdd_c00138{left:486.906667pt;}
.x50_c00138{left:489.213333pt;}
.x71_c00138{left:492.293333pt;}
.x98_c00138{left:493.826667pt;}
.x5d_c00138{left:497.666667pt;}
.xc9_c00138{left:499.973333pt;}
.x99_c00138{left:505.346667pt;}
.x56_c00138{left:507.653333pt;}
.xaf_c00138{left:509.186667pt;}
.x43_c00138{left:511.493333pt;}
.x49_c00138{left:514.560000pt;}
.xa3_c00138{left:518.400000pt;}
.xde_c00138{left:520.706667pt;}
.x8f_c00138{left:522.240000pt;}
.x17_c00138{left:524.546667pt;}
.xa_c00138{left:527.613333pt;}
.xb8_c00138{left:529.920000pt;}
.x64_c00138{left:534.533333pt;}
.xd9_c00138{left:536.826667pt;}
.xb4_c00138{left:539.133333pt;}
.xb_c00138{left:541.440000pt;}
.x89_c00138{left:542.973333pt;}
.x30_c00138{left:546.053333pt;}
.x5e_c00138{left:548.346667pt;}
.xca_c00138{left:549.893333pt;}
.xb9_c00138{left:555.266667pt;}
.x6b_c00138{left:559.106667pt;}
.x24_c00138{left:563.706667pt;}
.xc_c00138{left:565.253333pt;}
.xc1_c00138{left:566.786667pt;}
.xe0_c00138{left:569.853333pt;}
.xa4_c00138{left:572.933333pt;}
.x8a_c00138{left:574.466667pt;}
.x90_c00138{left:576.000000pt;}
.x57_c00138{left:577.533333pt;}
.x44_c00138{left:579.066667pt;}
.x79_c00138{left:582.906667pt;}
.x6c_c00138{left:585.986667pt;}
.xba_c00138{left:587.520000pt;}
.xd_c00138{left:590.586667pt;}
.x25_c00138{left:593.666667pt;}
.x39_c00138{left:595.200000pt;}
.x5f_c00138{left:599.040000pt;}
.x58_c00138{left:600.573333pt;}
.x51_c00138{left:603.653333pt;}
.xda_c00138{left:605.186667pt;}
.x18_c00138{left:606.720000pt;}
.xcb_c00138{left:609.026667pt;}
.x6d_c00138{left:612.866667pt;}
.x31_c00138{left:618.240000pt;}
.x8b_c00138{left:620.546667pt;}
.x45_c00138{left:622.080000pt;}
.x19_c00138{left:625.920000pt;}
.x72_c00138{left:628.226667pt;}
.x9a_c00138{left:630.533333pt;}
.x65_c00138{left:635.133333pt;}
.x32_c00138{left:636.666667pt;}
.xe_c00138{left:642.053333pt;}
.xdb_c00138{left:643.586667pt;}
.xe4_c00138{left:645.120000pt;}
.x59_c00138{left:646.653333pt;}
.x52_c00138{left:648.960000pt;}
.x82_c00138{left:650.493333pt;}
.x3a_c00138{left:653.573333pt;}
.x7a_c00138{left:656.640000pt;}
.x83_c00138{left:660.480000pt;}
.xe8_c00138{left:662.786667pt;}
.x60_c00138{left:667.386667pt;}
.xcc_c00138{left:668.933333pt;}
.x6e_c00138{left:675.840000pt;}
.x3b_c00138{left:677.373333pt;}
.x33_c00138{left:680.453333pt;}
.x73_c00138{left:683.520000pt;}
.x1a_c00138{left:685.826667pt;}
.x84_c00138{left:687.360000pt;}
.xa5_c00138{left:689.666667pt;}
.x61_c00138{left:691.200000pt;}
.x91_c00138{left:692.733333pt;}
.xbb_c00138{left:695.040000pt;}
.x46_c00138{left:696.573333pt;}
.xf_c00138{left:698.880000pt;}
.xb5_c00138{left:701.186667pt;}
.xcd_c00138{left:705.786667pt;}
.x6f_c00138{left:708.093333pt;}
.xe6_c00138{left:710.400000pt;}
.xe9_c00138{left:711.933333pt;}
.x1b_c00138{left:715.013333pt;}
.xa6_c00138{left:717.306667pt;}
.xd2_c00138{left:720.386667pt;}
.x7b_c00138{left:722.693333pt;}
.xd4_c00138{left:725.760000pt;}
.xb0_c00138{left:729.600000pt;}
.x66_c00138{left:731.133333pt;}
.x9b_c00138{left:735.746667pt;}
.x70_c00138{left:737.280000pt;}
.x3c_c00138{left:738.813333pt;}
.xa7_c00138{left:740.346667pt;}
.x85_c00138{left:742.653333pt;}
.x3d_c00138{left:747.266667pt;}
.x4a_c00138{left:751.106667pt;}
.xc0_c00138{left:756.480000pt;}
.xe1_c00138{left:758.786667pt;}
.xcf_c00138{left:761.093333pt;}
.x9c_c00138{left:762.626667pt;}
.x92_c00138{left:764.933333pt;}
.xed_c00138{left:767.226667pt;}
.x9d_c00138{left:772.613333pt;}
.xec_c00138{left:777.986667pt;}
.xf0_c00138{left:784.133333pt;}
.xc4_c00138{left:838.653333pt;}
.xc2_c00138{left:894.720000pt;}
.xc3_c00138{left:905.466667pt;}
.xbe_c00138{left:931.586667pt;}
.xbf_c00138{left:948.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_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_e8d1bcc4bbfd5c49111d9392.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.109863;font-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_c00139{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00139{transform:matrix(0.029400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029400,0.000000,0.000000,0.250000,0,0);}
.mdf_c00139{transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);}
.mf5_c00139{transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);}
.mee_c00139{transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);}
.m97_c00139{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m15_c00139{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.ma0_c00139{transform:matrix(0.091675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091675,0.000000,0.000000,0.250000,0,0);}
.m4f_c00139{transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);}
.m18_c00139{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m8_c00139{transform:matrix(0.098900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098900,0.000000,0.000000,0.250000,0,0);}
.meb_c00139{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m14b_c00139{transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);}
.m13c_c00139{transform:matrix(0.103300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103300,0.000000,0.000000,0.250000,0,0);}
.m80_c00139{transform:matrix(0.107800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107800,0.000000,0.000000,0.250000,0,0);}
.m14e_c00139{transform:matrix(0.107850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107850,0.000000,0.000000,0.250000,0,0);}
.m96_c00139{transform:matrix(0.109800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109800,0.000000,0.000000,0.250000,0,0);}
.m5b_c00139{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m82_c00139{transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);}
.mae_c00139{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.med_c00139{transform:matrix(0.117600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117600,0.000000,0.000000,0.250000,0,0);}
.m81_c00139{transform:matrix(0.119100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119100,0.000000,0.000000,0.250000,0,0);}
.m136_c00139{transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);}
.m10b_c00139{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m16_c00139{transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);}
.ma5_c00139{transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);}
.m7a_c00139{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00139{transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);}
.mc0_c00139{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00139{transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);}
.m159_c00139{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);}
.mb0_c00139{transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);}
.m60_c00139{transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);}
.m47_c00139{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m76_c00139{transform:matrix(0.129225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129225,0.000000,0.000000,0.250000,0,0);}
.m19_c00139{transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);}
.m137_c00139{transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);}
.m128_c00139{transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);}
.m102_c00139{transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);}
.m112_c00139{transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);}
.m6e_c00139{transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);}
.ma4_c00139{transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);}
.m138_c00139{transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);}
.m13d_c00139{transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);}
.mc_c00139{transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);}
.mf3_c00139{transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);}
.m10d_c00139{transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);}
.m8a_c00139{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00139{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m126_c00139{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.m14c_c00139{transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);}
.m36_c00139{transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);}
.m13_c00139{transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);}
.md8_c00139{transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);}
.m11b_c00139{transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);}
.m108_c00139{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00139{transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);}
.mea_c00139{transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);}
.m6a_c00139{transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);}
.m50_c00139{transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);}
.m24_c00139{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);}
.m49_c00139{transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);}
.m8e_c00139{transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);}
.mc3_c00139{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00139{transform:matrix(0.142075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142075,0.000000,0.000000,0.250000,0,0);}
.m104_c00139{transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);}
.m2b_c00139{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);}
.m120_c00139{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m88_c00139{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);}
.m0_c00139{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me3_c00139{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);}
.m145_c00139{transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);}
.m13b_c00139{transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);}
.m48_c00139{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.m110_c00139{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00139{transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);}
.m131_c00139{transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);}
.m77_c00139{transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);}
.m125_c00139{transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);}
.m22_c00139{transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);}
.m93_c00139{transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);}
.maf_c00139{transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);}
.me0_c00139{transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);}
.md0_c00139{transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);}
.ma9_c00139{transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);}
.m12_c00139{transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);}
.m70_c00139{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);}
.mfb_c00139{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);}
.ma8_c00139{transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);}
.m142_c00139{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m11c_c00139{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m9d_c00139{transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);}
.m8f_c00139{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.m135_c00139{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m14a_c00139{transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);}
.mb8_c00139{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.m58_c00139{transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);}
.m141_c00139{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.m3d_c00139{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m101_c00139{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.m107_c00139{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00139{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.mec_c00139{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m32_c00139{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.m12e_c00139{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.m87_c00139{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.m10a_c00139{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.m5f_c00139{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.m1a_c00139{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00139{transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);}
.m139_c00139{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.mbc_c00139{transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);}
.m13f_c00139{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);}
.m51_c00139{transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);}
.ma2_c00139{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);}
.m127_c00139{transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);}
.m119_c00139{transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);}
.mbb_c00139{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.mf7_c00139{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00139{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00139{transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);}
.mfa_c00139{transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);}
.m132_c00139{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.m113_c00139{transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);}
.ma6_c00139{transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);}
.mf0_c00139{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.mb7_c00139{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_c00139{transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);}
.m94_c00139{transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);}
.m1f_c00139{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.mdc_c00139{transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);}
.mb1_c00139{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m43_c00139{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m38_c00139{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);}
.m79_c00139{transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);}
.mf4_c00139{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m10_c00139{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);}
.m2c_c00139{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m7_c00139{transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);}
.m144_c00139{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.mb3_c00139{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);}
.m10e_c00139{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.m124_c00139{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.m118_c00139{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.m123_c00139{transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);}
.m109_c00139{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m13e_c00139{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.m114_c00139{transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);}
.m84_c00139{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.mca_c00139{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);}
.m122_c00139{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.md7_c00139{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.mb9_c00139{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);}
.m111_c00139{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.ma7_c00139{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);}
.mbd_c00139{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m33_c00139{transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);}
.mc6_c00139{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00139{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m4a_c00139{transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);}
.m12f_c00139{transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);}
.m6f_c00139{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.m9f_c00139{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);}
.m83_c00139{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m11_c00139{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);}
.mc8_c00139{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);}
.mcb_c00139{transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);}
.m7e_c00139{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.mf8_c00139{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);}
.m150_c00139{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.maa_c00139{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.mba_c00139{transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);}
.m149_c00139{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.m41_c00139{transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);}
.m73_c00139{transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);}
.m44_c00139{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);}
.m90_c00139{transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);}
.md9_c00139{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.m103_c00139{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);}
.mcd_c00139{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);}
.m92_c00139{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);}
.m89_c00139{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);}
.m3a_c00139{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m117_c00139{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m106_c00139{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);}
.m7d_c00139{transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);}
.m4c_c00139{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.m71_c00139{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m10c_c00139{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m9c_c00139{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.m62_c00139{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);}
.mf9_c00139{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.m66_c00139{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);}
.m78_c00139{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m52_c00139{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00139{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);}
.mf2_c00139{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);}
.m8d_c00139{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.mfd_c00139{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);}
.m95_c00139{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.md_c00139{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);}
.m12a_c00139{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);}
.md4_c00139{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.mce_c00139{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);}
.mb2_c00139{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.mdb_c00139{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);}
.m14_c00139{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00139{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.md3_c00139{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m40_c00139{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);}
.m121_c00139{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.mef_c00139{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);}
.mb5_c00139{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);}
.m4e_c00139{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m12c_c00139{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.m21_c00139{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);}
.mc5_c00139{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m130_c00139{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);}
.me8_c00139{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m134_c00139{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);}
.mc7_c00139{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.me2_c00139{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.m158_c00139{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);}
.m68_c00139{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m6d_c00139{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);}
.m28_c00139{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00139{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);}
.mde_c00139{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);}
.m14f_c00139{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00139{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m1d_c00139{transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);}
.m27_c00139{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.me9_c00139{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.mff_c00139{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m11f_c00139{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m6b_c00139{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);}
.md6_c00139{transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);}
.mb_c00139{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);}
.m2d_c00139{transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);}
.m9a_c00139{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);}
.m10f_c00139{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);}
.m100_c00139{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.mcf_c00139{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m140_c00139{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);}
.m8c_c00139{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);}
.m85_c00139{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);}
.m156_c00139{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);}
.md1_c00139{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m98_c00139{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);}
.mf_c00139{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.m115_c00139{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m12d_c00139{transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);}
.mda_c00139{transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);}
.m11d_c00139{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);}
.me5_c00139{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);}
.m39_c00139{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.mf1_c00139{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);}
.m6c_c00139{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.me7_c00139{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);}
.m5_c00139{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);}
.me_c00139{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m42_c00139{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);}
.m74_c00139{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);}
.m30_c00139{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);}
.m4d_c00139{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);}
.m65_c00139{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m55_c00139{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m59_c00139{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);}
.mfe_c00139{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00139{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);}
.m56_c00139{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00139{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);}
.m3e_c00139{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00139{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md2_c00139{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);}
.m3b_c00139{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00139{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);}
.m1c_c00139{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);}
.m5e_c00139{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00139{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00139{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m20_c00139{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);}
.m6_c00139{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m23_c00139{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m54_c00139{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m29_c00139{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00139{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m61_c00139{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m63_c00139{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me6_c00139{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me1_c00139{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00139{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m133_c00139{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);}
.m46_c00139{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4_c00139{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);}
.mc1_c00139{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m34_c00139{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m129_c00139{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00139{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m26_c00139{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);}
.m15a_c00139{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);}
.m72_c00139{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m64_c00139{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m155_c00139{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2_c00139{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00139{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);}
.me4_c00139{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00139{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);}
.m1_c00139{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m116_c00139{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m148_c00139{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m99_c00139{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m25_c00139{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m45_c00139{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m146_c00139{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m151_c00139{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.mab_c00139{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00139{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00139{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m31_c00139{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);}
.m35_c00139{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m53_c00139{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00139{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m105_c00139{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m154_c00139{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m37_c00139{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m15c_c00139{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m75_c00139{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00139{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);}
.m17_c00139{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m143_c00139{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.mad_c00139{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);}
.m13a_c00139{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m15b_c00139{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00139{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m86_c00139{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m147_c00139{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.md5_c00139{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);}
.m91_c00139{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m3_c00139{transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00139{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.m14d_c00139{transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);}
.m69_c00139{transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);}
.m157_c00139{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m57_c00139{transform:matrix(1.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.537500,0.000000,0.000000,0.250000,0,0);}
.mac_c00139{transform:matrix(1.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.777500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00139{transform:matrix(1.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.875000,0.000000,0.000000,0.250000,0,0);}
.m152_c00139{transform:matrix(5.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.990000,0.000000,0.000000,0.250000,0,0);}
.m153_c00139{transform:matrix(7.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.560000,0.000000,0.000000,0.250000,0,0);}
.v1_c00139{vertical-align:-3.420000px;}
.v0_c00139{vertical-align:0.000000px;}
.v2_c00139{vertical-align:3.420000px;}
.v3_c00139{vertical-align:17.280000px;}
.ls3_c00139{letter-spacing:0.000000px;}
.ls0_c00139{letter-spacing:24.720576px;}
.ls1_c00139{letter-spacing:31.166700px;}
.ls2_c00139{letter-spacing:57.585000px;}
.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;}
}
.ws1_c00139{word-spacing:0.000000px;}
.ws0_c00139{word-spacing:87.890880px;}
.fc0_c00139{color:transparent;}
.fs3_c00139{font-size:3.456000px;}
.fs0_c00139{font-size:6.000000px;}
.fs4_c00139{font-size:6.900000px;}
.fs1_c00139{font-size:10.380000px;}
.fs20_c00139{font-size:13.800000px;}
.fs5_c00139{font-size:17.280000px;}
.fs2_c00139{font-size:20.760000px;}
.fs1f_c00139{font-size:24.180000px;}
.fs1d_c00139{font-size:27.660000px;}
.fs13_c00139{font-size:31.080000px;}
.fs1b_c00139{font-size:34.560000px;}
.fs11_c00139{font-size:38.040000px;}
.fs1a_c00139{font-size:41.460000px;}
.fs19_c00139{font-size:44.940000px;}
.fs22_c00139{font-size:48.360000px;}
.fs21_c00139{font-size:51.840000px;}
.fs18_c00139{font-size:55.320000px;}
.fs6_c00139{font-size:58.740000px;}
.fs17_c00139{font-size:62.220000px;}
.fs9_c00139{font-size:65.640000px;}
.fs1c_c00139{font-size:69.120000px;}
.fsa_c00139{font-size:72.600000px;}
.fsf_c00139{font-size:76.020000px;}
.fsc_c00139{font-size:79.500000px;}
.fs1e_c00139{font-size:82.920000px;}
.fse_c00139{font-size:86.400000px;}
.fs16_c00139{font-size:89.880000px;}
.fs7_c00139{font-size:93.300000px;}
.fsd_c00139{font-size:96.780000px;}
.fs8_c00139{font-size:100.200000px;}
.fsb_c00139{font-size:103.680000px;}
.fs23_c00139{font-size:107.160000px;}
.fs10_c00139{font-size:110.580000px;}
.fs12_c00139{font-size:114.060000px;}
.fs14_c00139{font-size:120.960000px;}
.fs15_c00139{font-size:124.440000px;}
.fs24_c00139{font-size:127.860000px;}
.fs25_c00139{font-size:131.340000px;}
.y0_c00139{bottom:0.000000px;}
.y154_c00139{bottom:115.770000px;}
.y153_c00139{bottom:117.510000px;}
.y152_c00139{bottom:123.555000px;}
.y151_c00139{bottom:126.150000px;}
.y150_c00139{bottom:147.750000px;}
.y14f_c00139{bottom:148.605000px;}
.y14d_c00139{bottom:161.565000px;}
.y14e_c00139{bottom:163.290000px;}
.y14c_c00139{bottom:171.930000px;}
.y141_c00139{bottom:393.990000px;}
.y142_c00139{bottom:395.715000px;}
.y140_c00139{bottom:396.570000px;}
.y135_c00139{bottom:397.440000px;}
.y137_c00139{bottom:399.165000px;}
.y139_c00139{bottom:400.035000px;}
.y138_c00139{bottom:400.890000px;}
.y136_c00139{bottom:401.760000px;}
.y13d_c00139{bottom:402.630000px;}
.y13e_c00139{bottom:403.485000px;}
.y13b_c00139{bottom:404.355000px;}
.y13a_c00139{bottom:407.805000px;}
.y13f_c00139{bottom:410.400000px;}
.y13c_c00139{bottom:411.270000px;}
.y132_c00139{bottom:417.315000px;}
.y12e_c00139{bottom:418.170000px;}
.y130_c00139{bottom:419.040000px;}
.y12d_c00139{bottom:419.910000px;}
.y133_c00139{bottom:422.490000px;}
.y131_c00139{bottom:423.360000px;}
.y12f_c00139{bottom:424.230000px;}
.y134_c00139{bottom:431.130000px;}
.y125_c00139{bottom:441.510000px;}
.y128_c00139{bottom:443.235000px;}
.y127_c00139{bottom:444.090000px;}
.y12b_c00139{bottom:444.960000px;}
.y12a_c00139{bottom:445.830000px;}
.y12c_c00139{bottom:447.555000px;}
.y129_c00139{bottom:449.280000px;}
.y126_c00139{bottom:451.875000px;}
.y11e_c00139{bottom:468.285000px;}
.y120_c00139{bottom:469.155000px;}
.y123_c00139{bottom:470.010000px;}
.y122_c00139{bottom:471.750000px;}
.y11f_c00139{bottom:472.605000px;}
.y124_c00139{bottom:473.475000px;}
.y11d_c00139{bottom:475.200000px;}
.y121_c00139{bottom:476.070000px;}
.y119_c00139{bottom:490.755000px;}
.y11a_c00139{bottom:493.350000px;}
.y11c_c00139{bottom:494.205000px;}
.y118_c00139{bottom:495.930000px;}
.y117_c00139{bottom:496.800000px;}
.y11b_c00139{bottom:498.525000px;}
.y113_c00139{bottom:516.675000px;}
.y111_c00139{bottom:518.400000px;}
.y114_c00139{bottom:520.125000px;}
.y110_c00139{bottom:520.995000px;}
.y116_c00139{bottom:521.850000px;}
.y115_c00139{bottom:524.445000px;}
.y112_c00139{bottom:525.315000px;}
.y10a_c00139{bottom:541.725000px;}
.y10c_c00139{bottom:543.450000px;}
.y10f_c00139{bottom:544.320000px;}
.y10e_c00139{bottom:545.190000px;}
.y10d_c00139{bottom:546.045000px;}
.y109_c00139{bottom:546.915000px;}
.y10b_c00139{bottom:551.235000px;}
.y104_c00139{bottom:566.790000px;}
.y108_c00139{bottom:568.515000px;}
.y105_c00139{bottom:570.240000px;}
.y103_c00139{bottom:571.110000px;}
.y107_c00139{bottom:573.690000px;}
.y106_c00139{bottom:577.155000px;}
.yfe_c00139{bottom:593.565000px;}
.yff_c00139{bottom:594.435000px;}
.y102_c00139{bottom:595.290000px;}
.y101_c00139{bottom:597.030000px;}
.y100_c00139{bottom:598.755000px;}
.yfd_c00139{bottom:605.670000px;}
.yf5_c00139{bottom:618.630000px;}
.yf6_c00139{bottom:619.485000px;}
.yf8_c00139{bottom:620.355000px;}
.yfc_c00139{bottom:621.210000px;}
.yfb_c00139{bottom:622.080000px;}
.yfa_c00139{bottom:626.400000px;}
.yf7_c00139{bottom:627.270000px;}
.yf9_c00139{bottom:628.125000px;}
.yf4_c00139{bottom:640.230000px;}
.yf0_c00139{bottom:644.550000px;}
.yf3_c00139{bottom:645.405000px;}
.yf2_c00139{bottom:647.130000px;}
.yee_c00139{bottom:648.000000px;}
.yef_c00139{bottom:648.870000px;}
.yf1_c00139{bottom:652.320000px;}
.yea_c00139{bottom:667.005000px;}
.ye6_c00139{bottom:667.875000px;}
.ye7_c00139{bottom:668.730000px;}
.ye9_c00139{bottom:669.600000px;}
.yeb_c00139{bottom:670.470000px;}
.yec_c00139{bottom:673.050000px;}
.ye8_c00139{bottom:676.515000px;}
.ye5_c00139{bottom:685.155000px;}
.yed_c00139{bottom:692.925000px;}
.yda_c00139{bottom:693.795000px;}
.ye1_c00139{bottom:694.650000px;}
.ydd_c00139{bottom:695.520000px;}
.yde_c00139{bottom:697.245000px;}
.yd9_c00139{bottom:698.115000px;}
.ydb_c00139{bottom:699.840000px;}
.ydc_c00139{bottom:700.710000px;}
.ydf_c00139{bottom:701.565000px;}
.ye0_c00139{bottom:702.435000px;}
.ye3_c00139{bottom:703.290000px;}
.ye2_c00139{bottom:704.160000px;}
.ye4_c00139{bottom:705.885000px;}
.yd8_c00139{bottom:716.250000px;}
.yd1_c00139{bottom:717.120000px;}
.yd6_c00139{bottom:719.715000px;}
.yd2_c00139{bottom:720.570000px;}
.yd5_c00139{bottom:723.165000px;}
.yd3_c00139{bottom:724.035000px;}
.yd4_c00139{bottom:724.890000px;}
.yd7_c00139{bottom:740.445000px;}
.yca_c00139{bottom:742.170000px;}
.ycc_c00139{bottom:743.040000px;}
.yce_c00139{bottom:743.910000px;}
.ycd_c00139{bottom:745.635000px;}
.ycb_c00139{bottom:746.490000px;}
.yc9_c00139{bottom:747.360000px;}
.ycf_c00139{bottom:752.550000px;}
.yd0_c00139{bottom:760.320000px;}
.yc8_c00139{bottom:762.915000px;}
.yc4_c00139{bottom:767.235000px;}
.yc5_c00139{bottom:768.090000px;}
.ybf_c00139{bottom:768.960000px;}
.yc1_c00139{bottom:771.555000px;}
.yc2_c00139{bottom:772.410000px;}
.yc6_c00139{bottom:773.280000px;}
.yc3_c00139{bottom:774.150000px;}
.yc7_c00139{bottom:776.730000px;}
.yc0_c00139{bottom:786.240000px;}
.ybb_c00139{bottom:789.690000px;}
.ybe_c00139{bottom:791.430000px;}
.yb9_c00139{bottom:792.285000px;}
.ybc_c00139{bottom:795.750000px;}
.ybd_c00139{bottom:798.330000px;}
.yba_c00139{bottom:799.200000px;}
.yb6_c00139{bottom:814.755000px;}
.yb5_c00139{bottom:815.610000px;}
.yb8_c00139{bottom:816.480000px;}
.yb7_c00139{bottom:819.930000px;}
.yb4_c00139{bottom:821.670000px;}
.yad_c00139{bottom:822.525000px;}
.yaa_c00139{bottom:823.395000px;}
.yab_c00139{bottom:826.845000px;}
.yae_c00139{bottom:830.310000px;}
.yb1_c00139{bottom:831.165000px;}
.yb3_c00139{bottom:834.630000px;}
.yac_c00139{bottom:835.485000px;}
.yaf_c00139{bottom:836.355000px;}
.yb2_c00139{bottom:837.210000px;}
.yb0_c00139{bottom:838.080000px;}
.ya7_c00139{bottom:839.805000px;}
.ya9_c00139{bottom:840.675000px;}
.ya6_c00139{bottom:842.400000px;}
.ya5_c00139{bottom:844.125000px;}
.ya8_c00139{bottom:844.995000px;}
.ya0_c00139{bottom:864.000000px;}
.ya3_c00139{bottom:864.870000px;}
.ya4_c00139{bottom:865.725000px;}
.ya1_c00139{bottom:867.450000px;}
.ya2_c00139{bottom:871.770000px;}
.y9b_c00139{bottom:889.050000px;}
.y9c_c00139{bottom:890.790000px;}
.y9d_c00139{bottom:891.645000px;}
.y9e_c00139{bottom:893.370000px;}
.y9f_c00139{bottom:897.690000px;}
.y99_c00139{bottom:913.245000px;}
.y9a_c00139{bottom:916.710000px;}
.y98_c00139{bottom:922.755000px;}
.y95_c00139{bottom:939.165000px;}
.y92_c00139{bottom:940.035000px;}
.y97_c00139{bottom:940.890000px;}
.y93_c00139{bottom:941.760000px;}
.y96_c00139{bottom:944.355000px;}
.y94_c00139{bottom:951.270000px;}
.y8e_c00139{bottom:964.230000px;}
.y8f_c00139{bottom:965.085000px;}
.y91_c00139{bottom:965.955000px;}
.y90_c00139{bottom:966.810000px;}
.y8c_c00139{bottom:983.235000px;}
.y8b_c00139{bottom:984.960000px;}
.y8d_c00139{bottom:987.555000px;}
.y87_c00139{bottom:989.280000px;}
.y86_c00139{bottom:990.150000px;}
.y88_c00139{bottom:991.005000px;}
.y89_c00139{bottom:991.875000px;}
.y85_c00139{bottom:994.470000px;}
.y8a_c00139{bottom:997.920000px;}
.y7b_c00139{bottom:1014.330000px;}
.y79_c00139{bottom:1016.925000px;}
.y7a_c00139{bottom:1020.390000px;}
.y7c_c00139{bottom:1021.245000px;}
.y7e_c00139{bottom:1023.840000px;}
.y81_c00139{bottom:1024.710000px;}
.y7d_c00139{bottom:1025.565000px;}
.y84_c00139{bottom:1027.290000px;}
.y83_c00139{bottom:1030.755000px;}
.y80_c00139{bottom:1031.610000px;}
.y7f_c00139{bottom:1035.075000px;}
.y82_c00139{bottom:1039.395000px;}
.y75_c00139{bottom:1040.250000px;}
.y77_c00139{bottom:1041.120000px;}
.y74_c00139{bottom:1041.990000px;}
.y76_c00139{bottom:1043.715000px;}
.y78_c00139{bottom:1052.355000px;}
.y71_c00139{bottom:1067.040000px;}
.y73_c00139{bottom:1067.910000px;}
.y72_c00139{bottom:1071.360000px;}
.y70_c00139{bottom:1074.810000px;}
.y6f_c00139{bottom:1077.405000px;}
.y68_c00139{bottom:1088.640000px;}
.y6b_c00139{bottom:1089.510000px;}
.y69_c00139{bottom:1091.235000px;}
.y6c_c00139{bottom:1092.090000px;}
.y6e_c00139{bottom:1092.960000px;}
.y6d_c00139{bottom:1093.830000px;}
.y6a_c00139{bottom:1111.965000px;}
.y64_c00139{bottom:1116.285000px;}
.y67_c00139{bottom:1117.155000px;}
.y66_c00139{bottom:1118.880000px;}
.y65_c00139{bottom:1122.330000px;}
.y5e_c00139{bottom:1138.755000px;}
.y5f_c00139{bottom:1141.350000px;}
.y61_c00139{bottom:1142.205000px;}
.y60_c00139{bottom:1144.800000px;}
.y63_c00139{bottom:1146.525000px;}
.y62_c00139{bottom:1149.120000px;}
.y5d_c00139{bottom:1154.310000px;}
.y5b_c00139{bottom:1166.400000px;}
.y51_c00139{bottom:1167.270000px;}
.y59_c00139{bottom:1168.125000px;}
.y53_c00139{bottom:1168.995000px;}
.y57_c00139{bottom:1169.850000px;}
.y5a_c00139{bottom:1171.590000px;}
.y58_c00139{bottom:1172.445000px;}
.y50_c00139{bottom:1175.040000px;}
.y5c_c00139{bottom:1175.910000px;}
.y54_c00139{bottom:1179.360000px;}
.y4b_c00139{bottom:1180.230000px;}
.y4a_c00139{bottom:1181.085000px;}
.y4f_c00139{bottom:1181.955000px;}
.y4c_c00139{bottom:1182.810000px;}
.y52_c00139{bottom:1183.680000px;}
.y4d_c00139{bottom:1184.550000px;}
.y56_c00139{bottom:1185.405000px;}
.y4e_c00139{bottom:1186.275000px;}
.y49_c00139{bottom:1187.130000px;}
.y55_c00139{bottom:1189.725000px;}
.y44_c00139{bottom:1190.595000px;}
.y45_c00139{bottom:1192.320000px;}
.y47_c00139{bottom:1194.915000px;}
.y46_c00139{bottom:1197.510000px;}
.y48_c00139{bottom:1205.280000px;}
.y3d_c00139{bottom:1215.645000px;}
.y40_c00139{bottom:1217.370000px;}
.y3e_c00139{bottom:1219.110000px;}
.y3f_c00139{bottom:1220.835000px;}
.y41_c00139{bottom:1222.560000px;}
.y42_c00139{bottom:1223.430000px;}
.y43_c00139{bottom:1227.750000px;}
.y34_c00139{bottom:1241.565000px;}
.y39_c00139{bottom:1243.290000px;}
.y35_c00139{bottom:1244.160000px;}
.y37_c00139{bottom:1245.030000px;}
.y3c_c00139{bottom:1246.755000px;}
.y3a_c00139{bottom:1247.610000px;}
.y33_c00139{bottom:1249.350000px;}
.y36_c00139{bottom:1250.205000px;}
.y38_c00139{bottom:1251.075000px;}
.y3b_c00139{bottom:1256.250000px;}
.y2d_c00139{bottom:1264.890000px;}
.y2f_c00139{bottom:1266.630000px;}
.y2e_c00139{bottom:1269.210000px;}
.y30_c00139{bottom:1272.675000px;}
.y32_c00139{bottom:1273.530000px;}
.y31_c00139{bottom:1277.850000px;}
.y26_c00139{bottom:1290.810000px;}
.y21_c00139{bottom:1291.680000px;}
.y2c_c00139{bottom:1292.550000px;}
.y28_c00139{bottom:1293.405000px;}
.y20_c00139{bottom:1294.275000px;}
.y27_c00139{bottom:1295.130000px;}
.y23_c00139{bottom:1296.870000px;}
.y22_c00139{bottom:1297.725000px;}
.y2b_c00139{bottom:1298.595000px;}
.y25_c00139{bottom:1299.450000px;}
.y24_c00139{bottom:1300.320000px;}
.y29_c00139{bottom:1301.190000px;}
.y2a_c00139{bottom:1302.045000px;}
.y19_c00139{bottom:1315.005000px;}
.y17_c00139{bottom:1315.875000px;}
.y1e_c00139{bottom:1316.730000px;}
.y1c_c00139{bottom:1317.600000px;}
.y18_c00139{bottom:1318.470000px;}
.y1f_c00139{bottom:1320.195000px;}
.y1b_c00139{bottom:1321.920000px;}
.y1d_c00139{bottom:1324.515000px;}
.y1a_c00139{bottom:1325.370000px;}
.y14b_c00139{bottom:1336.605000px;}
.y11_c00139{bottom:1340.070000px;}
.y16_c00139{bottom:1340.925000px;}
.y14_c00139{bottom:1341.795000px;}
.y12_c00139{bottom:1342.650000px;}
.y15_c00139{bottom:1346.115000px;}
.y145_c00139{bottom:1348.710000px;}
.y13_c00139{bottom:1351.290000px;}
.y144_c00139{bottom:1354.755000px;}
.ya_c00139{bottom:1372.890000px;}
.y143_c00139{bottom:1373.760000px;}
.y4_c00139{bottom:1376.355000px;}
.yd_c00139{bottom:1377.210000px;}
.yf_c00139{bottom:1378.080000px;}
.ye_c00139{bottom:1378.950000px;}
.yb_c00139{bottom:1380.675000px;}
.yc_c00139{bottom:1381.530000px;}
.y5_c00139{bottom:1384.125000px;}
.y9_c00139{bottom:1387.590000px;}
.y14a_c00139{bottom:1390.170000px;}
.y10_c00139{bottom:1391.040000px;}
.y6_c00139{bottom:1391.910000px;}
.y7_c00139{bottom:1395.360000px;}
.y8_c00139{bottom:1397.085000px;}
.y3_c00139{bottom:1403.130000px;}
.y1_c00139{bottom:1404.000000px;}
.y2_c00139{bottom:1408.320000px;}
.y146_c00139{bottom:1420.410000px;}
.y147_c00139{bottom:1421.280000px;}
.y149_c00139{bottom:1425.600000px;}
.y148_c00139{bottom:1428.195000px;}
.h5_c00139{height:3.110063px;}
.h2_c00139{height:5.399414px;}
.h21_c00139{height:6.209326px;}
.h27_c00139{height:6.530063px;}
.h3_c00139{height:9.340986px;}
.h22_c00139{height:12.418652px;}
.h29_c00139{height:12.820986px;}
.h6_c00139{height:15.550313px;}
.h4_c00139{height:18.681973px;}
.h20_c00139{height:21.759639px;}
.h1e_c00139{height:24.891299px;}
.h14_c00139{height:27.968965px;}
.h1c_c00139{height:31.100625px;}
.h12_c00139{height:34.232285px;}
.h1b_c00139{height:37.309951px;}
.h1a_c00139{height:40.441611px;}
.h24_c00139{height:43.519277px;}
.h23_c00139{height:46.650937px;}
.h19_c00139{height:49.782598px;}
.h7_c00139{height:52.860264px;}
.h18_c00139{height:55.991924px;}
.ha_c00139{height:59.069590px;}
.h1d_c00139{height:62.201250px;}
.hb_c00139{height:65.332910px;}
.h10_c00139{height:68.410576px;}
.hd_c00139{height:71.542236px;}
.h1f_c00139{height:74.619902px;}
.hf_c00139{height:77.751563px;}
.h17_c00139{height:80.883223px;}
.h8_c00139{height:83.960889px;}
.he_c00139{height:87.092549px;}
.h9_c00139{height:90.170215px;}
.hc_c00139{height:93.301875px;}
.h25_c00139{height:96.433535px;}
.h11_c00139{height:99.511201px;}
.h13_c00139{height:102.642861px;}
.h15_c00139{height:108.852188px;}
.h16_c00139{height:111.983848px;}
.h26_c00139{height:115.061514px;}
.h28_c00139{height:118.193174px;}
.h1_c00139{height:1503.000000px;}
.h0_c00139{height:1503.360000px;}
.w0_c00139{width:1088.640000px;}
.w1_c00139{width:1089.000000px;}
.x0_c00139{left:0.000000px;}
.xec_c00139{left:76.035000px;}
.xed_c00139{left:77.760000px;}
.xf0_c00139{left:131.325000px;}
.xee_c00139{left:141.690000px;}
.xf1_c00139{left:143.430000px;}
.x8d_c00139{left:151.200000px;}
.x61_c00139{left:168.480000px;}
.x8e_c00139{left:170.205000px;}
.xef_c00139{left:172.800000px;}
.xdf_c00139{left:180.570000px;}
.x76_c00139{left:189.210000px;}
.xab_c00139{left:192.675000px;}
.x72_c00139{left:194.400000px;}
.x73_c00139{left:197.850000px;}
.x8f_c00139{left:203.910000px;}
.xc7_c00139{left:209.085000px;}
.xae_c00139{left:210.810000px;}
.x51_c00139{left:214.275000px;}
.x7d_c00139{left:217.725000px;}
.x6a_c00139{left:222.045000px;}
.x3b_c00139{left:224.640000px;}
.x21_c00139{left:226.365000px;}
.x77_c00139{left:228.090000px;}
.x5_c00139{left:231.555000px;}
.x19_c00139{left:234.150000px;}
.x52_c00139{left:235.875000px;}
.xcb_c00139{left:237.600000px;}
.xe3_c00139{left:240.195000px;}
.x86_c00139{left:247.965000px;}
.xbf_c00139{left:249.690000px;}
.x87_c00139{left:257.475000px;}
.x2b_c00139{left:260.925000px;}
.x6_c00139{left:264.390000px;}
.xce_c00139{left:268.710000px;}
.xdc_c00139{left:274.755000px;}
.x53_c00139{left:276.480000px;}
.xb6_c00139{left:279.075000px;}
.xd5_c00139{left:280.800000px;}
.x1_c00139{left:282.525000px;}
.x7_c00139{left:285.120000px;}
.x54_c00139{left:289.440000px;}
.x79_c00139{left:293.760000px;}
.x8_c00139{left:299.805000px;}
.x62_c00139{left:304.125000px;}
.x9_c00139{left:307.590000px;}
.x9e_c00139{left:311.910000px;}
.xa_c00139{left:313.635000px;}
.x22_c00139{left:316.230000px;}
.x7a_c00139{left:317.955000px;}
.x2c_c00139{left:321.405000px;}
.x55_c00139{left:324.000000px;}
.x23_c00139{left:325.725000px;}
.xe4_c00139{left:327.450000px;}
.x24_c00139{left:329.190000px;}
.xe0_c00139{left:331.770000px;}
.x2d_c00139{left:333.510000px;}
.xd7_c00139{left:337.830000px;}
.x93_c00139{left:341.280000px;}
.xb_c00139{left:343.005000px;}
.xd6_c00139{left:348.195000px;}
.x94_c00139{left:350.790000px;}
.xc0_c00139{left:355.110000px;}
.x56_c00139{left:356.835000px;}
.xe5_c00139{left:358.560000px;}
.xd9_c00139{left:361.155000px;}
.xba_c00139{left:364.605000px;}
.xaf_c00139{left:366.330000px;}
.xd1_c00139{left:368.925000px;}
.x2_c00139{left:370.650000px;}
.x99_c00139{left:382.755000px;}
.x9f_c00139{left:384.480000px;}
.xd2_c00139{left:387.075000px;}
.xc_c00139{left:390.525000px;}
.x88_c00139{left:393.990000px;}
.x1a_c00139{left:396.570000px;}
.x63_c00139{left:399.165000px;}
.xd_c00139{left:401.760000px;}
.x3e_c00139{left:403.485000px;}
.xd8_c00139{left:408.675000px;}
.x25_c00139{left:411.270000px;}
.xd3_c00139{left:413.850000px;}
.xb0_c00139{left:415.590000px;}
.x92_c00139{left:420.765000px;}
.x7b_c00139{left:427.680000px;}
.xe6_c00139{left:435.450000px;}
.xa0_c00139{left:437.190000px;}
.xe_c00139{left:439.770000px;}
.xc4_c00139{left:443.235000px;}
.x26_c00139{left:444.960000px;}
.x57_c00139{left:451.005000px;}
.x2e_c00139{left:457.920000px;}
.xb1_c00139{left:462.240000px;}
.x27_c00139{left:464.835000px;}
.x6f_c00139{left:467.430000px;}
.xc5_c00139{left:469.155000px;}
.x89_c00139{left:470.880000px;}
.xf_c00139{left:472.605000px;}
.x2f_c00139{left:475.200000px;}
.x58_c00139{left:478.650000px;}
.xda_c00139{left:480.390000px;}
.x3f_c00139{left:484.710000px;}
.x9c_c00139{left:487.290000px;}
.x3_c00139{left:489.885000px;}
.xbb_c00139{left:492.480000px;}
.x4_c00139{left:494.205000px;}
.x10_c00139{left:495.930000px;}
.xdd_c00139{left:497.670000px;}
.xa8_c00139{left:499.395000px;}
.xcc_c00139{left:505.440000px;}
.x40_c00139{left:507.165000px;}
.x1b_c00139{left:508.890000px;}
.x59_c00139{left:510.630000px;}
.xd4_c00139{left:514.080000px;}
.x11_c00139{left:515.805000px;}
.x8a_c00139{left:518.400000px;}
.xc1_c00139{left:520.125000px;}
.xa9_c00139{left:524.445000px;}
.xa1_c00139{left:526.170000px;}
.xc8_c00139{left:528.765000px;}
.x74_c00139{left:531.360000px;}
.x5a_c00139{left:533.085000px;}
.x9d_c00139{left:547.770000px;}
.xc9_c00139{left:552.960000px;}
.xb2_c00139{left:556.410000px;}
.x30_c00139{left:558.150000px;}
.x95_c00139{left:561.600000px;}
.x12_c00139{left:564.195000px;}
.x8b_c00139{left:565.920000px;}
.xc6_c00139{left:571.110000px;}
.x7c_c00139{left:573.690000px;}
.x1c_c00139{left:575.430000px;}
.x9a_c00139{left:578.880000px;}
.xbc_c00139{left:581.475000px;}
.x31_c00139{left:584.070000px;}
.x1d_c00139{left:586.650000px;}
.xa2_c00139{left:588.390000px;}
.xbd_c00139{left:593.565000px;}
.x5b_c00139{left:595.290000px;}
.xe1_c00139{left:597.885000px;}
.x64_c00139{left:599.610000px;}
.xcf_c00139{left:602.205000px;}
.xe7_c00139{left:604.800000px;}
.xa3_c00139{left:608.250000px;}
.x13_c00139{left:609.990000px;}
.xac_c00139{left:617.760000px;}
.x65_c00139{left:622.080000px;}
.x7e_c00139{left:623.805000px;}
.x9b_c00139{left:625.530000px;}
.x41_c00139{left:628.995000px;}
.xc2_c00139{left:630.720000px;}
.xcd_c00139{left:633.315000px;}
.x6b_c00139{left:636.765000px;}
.x14_c00139{left:638.490000px;}
.x32_c00139{left:641.085000px;}
.x28_c00139{left:643.680000px;}
.x42_c00139{left:648.000000px;}
.x7f_c00139{left:651.450000px;}
.x66_c00139{left:654.915000px;}
.xd0_c00139{left:656.640000px;}
.x33_c00139{left:658.365000px;}
.xa4_c00139{left:660.960825px;}
.x34_c00139{left:665.280000px;}
.x6c_c00139{left:667.875000px;}
.xe8_c00139{left:670.470000px;}
.x48_c00139{left:672.195000px;}
.xa5_c00139{left:675.645000px;}
.x35_c00139{left:677.370000px;}
.x70_c00139{left:680.835000px;}
.xf6_c00139{left:683.430000px;}
.x36_c00139{left:685.155000px;}
.x5c_c00139{left:688.605000px;}
.xca_c00139{left:691.200000px;}
.xa6_c00139{left:692.925000px;}
.xdb_c00139{left:694.650000px;}
.x96_c00139{left:698.970000px;}
.xf7_c00139{left:704.160000px;}
.xde_c00139{left:706.755000px;}
.xad_c00139{left:711.075000px;}
.x15_c00139{left:713.670000px;}
.x49_c00139{left:717.120000px;}
.x6d_c00139{left:718.845000px;}
.x80_c00139{left:720.570000px;}
.xa7_c00139{left:722.310000px;}
.x67_c00139{left:725.760000px;}
.x1e_c00139{left:727.485000px;}
.x90_c00139{left:730.950000px;}
.x75_c00139{left:732.675000px;}
.x1f_c00139{left:738.720000px;}
.x43_c00139{left:741.315000px;}
.x98_c00139{left:743.910000px;}
.x6e_c00139{left:749.085000px;}
.xe9_c00139{left:750.810000px;}
.x16_c00139{left:755.130000px;}
.x29_c00139{left:757.725000px;}
.x37_c00139{left:760.320000px;}
.x4e_c00139{left:764.640000px;}
.xbe_c00139{left:767.235000px;}
.xaa_c00139{left:768.960000px;}
.x20_c00139{left:770.685000px;}
.x4a_c00139{left:777.600000px;}
.xf8_c00139{left:779.325000px;}
.xea_c00139{left:781.050000px;}
.x78_c00139{left:786.240000px;}
.x81_c00139{left:788.835000px;}
.xeb_c00139{left:792.285000px;}
.x82_c00139{left:794.880000px;}
.xb7_c00139{left:798.330000px;}
.x5d_c00139{left:803.520000px;}
.x91_c00139{left:806.115000px;}
.x4f_c00139{left:807.840000px;}
.x44_c00139{left:809.565000px;}
.x38_c00139{left:812.160000px;}
.x4b_c00139{left:818.205000px;}
.x5e_c00139{left:820.800000px;}
.x39_c00139{left:822.525000px;}
.x17_c00139{left:825.990000px;}
.x68_c00139{left:829.440000px;}
.x3a_c00139{left:833.760000px;}
.x45_c00139{left:835.485000px;}
.xb3_c00139{left:838.080000px;}
.x83_c00139{left:839.803680px;}
.x18_c00139{left:842.400000px;}
.x2a_c00139{left:844.995000px;}
.x84_c00139{left:857.085000px;}
.x85_c00139{left:863.130000px;}
.x97_c00139{left:867.450000px;}
.xb8_c00139{left:876.960000px;}
.x8c_c00139{left:879.555000px;}
.x4c_c00139{left:883.005000px;}
.x3c_c00139{left:885.600000px;}
.xb4_c00139{left:889.920000px;}
.x71_c00139{left:895.110000px;}
.x4d_c00139{left:898.560000px;}
.xb5_c00139{left:902.010000px;}
.xe2_c00139{left:905.475000px;}
.xf2_c00139{left:909.795000px;}
.xc3_c00139{left:912.390000px;}
.xb9_c00139{left:914.115000px;}
.x3d_c00139{left:918.435000px;}
.x5f_c00139{left:920.160000px;}
.x50_c00139{left:921.885000px;}
.xf3_c00139{left:924.480000px;}
.x69_c00139{left:927.075000px;}
.x46_c00139{left:928.800000px;}
.xf4_c00139{left:932.250000px;}
.x60_c00139{left:934.845000px;}
.x47_c00139{left:940.035000px;}
.xf5_c00139{left:942.630000px;}
@media print{
.v1_c00139{vertical-align:-3.040000pt;}
.v0_c00139{vertical-align:0.000000pt;}
.v2_c00139{vertical-align:3.040000pt;}
.v3_c00139{vertical-align:15.360000pt;}
.ls3_c00139{letter-spacing:0.000000pt;}
.ls0_c00139{letter-spacing:21.973845pt;}
.ls1_c00139{letter-spacing:27.703733pt;}
.ls2_c00139{letter-spacing:51.186667pt;}
.ws1_c00139{word-spacing:0.000000pt;}
.ws0_c00139{word-spacing:78.125227pt;}
.fs3_c00139{font-size:3.072000pt;}
.fs0_c00139{font-size:5.333333pt;}
.fs4_c00139{font-size:6.133333pt;}
.fs1_c00139{font-size:9.226667pt;}
.fs20_c00139{font-size:12.266667pt;}
.fs5_c00139{font-size:15.360000pt;}
.fs2_c00139{font-size:18.453333pt;}
.fs1f_c00139{font-size:21.493333pt;}
.fs1d_c00139{font-size:24.586667pt;}
.fs13_c00139{font-size:27.626667pt;}
.fs1b_c00139{font-size:30.720000pt;}
.fs11_c00139{font-size:33.813333pt;}
.fs1a_c00139{font-size:36.853333pt;}
.fs19_c00139{font-size:39.946667pt;}
.fs22_c00139{font-size:42.986667pt;}
.fs21_c00139{font-size:46.080000pt;}
.fs18_c00139{font-size:49.173333pt;}
.fs6_c00139{font-size:52.213333pt;}
.fs17_c00139{font-size:55.306667pt;}
.fs9_c00139{font-size:58.346667pt;}
.fs1c_c00139{font-size:61.440000pt;}
.fsa_c00139{font-size:64.533333pt;}
.fsf_c00139{font-size:67.573333pt;}
.fsc_c00139{font-size:70.666667pt;}
.fs1e_c00139{font-size:73.706667pt;}
.fse_c00139{font-size:76.800000pt;}
.fs16_c00139{font-size:79.893333pt;}
.fs7_c00139{font-size:82.933333pt;}
.fsd_c00139{font-size:86.026667pt;}
.fs8_c00139{font-size:89.066667pt;}
.fsb_c00139{font-size:92.160000pt;}
.fs23_c00139{font-size:95.253333pt;}
.fs10_c00139{font-size:98.293333pt;}
.fs12_c00139{font-size:101.386667pt;}
.fs14_c00139{font-size:107.520000pt;}
.fs15_c00139{font-size:110.613333pt;}
.fs24_c00139{font-size:113.653333pt;}
.fs25_c00139{font-size:116.746667pt;}
.y0_c00139{bottom:0.000000pt;}
.y154_c00139{bottom:102.906667pt;}
.y153_c00139{bottom:104.453333pt;}
.y152_c00139{bottom:109.826667pt;}
.y151_c00139{bottom:112.133333pt;}
.y150_c00139{bottom:131.333333pt;}
.y14f_c00139{bottom:132.093333pt;}
.y14d_c00139{bottom:143.613333pt;}
.y14e_c00139{bottom:145.146667pt;}
.y14c_c00139{bottom:152.826667pt;}
.y141_c00139{bottom:350.213333pt;}
.y142_c00139{bottom:351.746667pt;}
.y140_c00139{bottom:352.506667pt;}
.y135_c00139{bottom:353.280000pt;}
.y137_c00139{bottom:354.813333pt;}
.y139_c00139{bottom:355.586667pt;}
.y138_c00139{bottom:356.346667pt;}
.y136_c00139{bottom:357.120000pt;}
.y13d_c00139{bottom:357.893333pt;}
.y13e_c00139{bottom:358.653333pt;}
.y13b_c00139{bottom:359.426667pt;}
.y13a_c00139{bottom:362.493333pt;}
.y13f_c00139{bottom:364.800000pt;}
.y13c_c00139{bottom:365.573333pt;}
.y132_c00139{bottom:370.946667pt;}
.y12e_c00139{bottom:371.706667pt;}
.y130_c00139{bottom:372.480000pt;}
.y12d_c00139{bottom:373.253333pt;}
.y133_c00139{bottom:375.546667pt;}
.y131_c00139{bottom:376.320000pt;}
.y12f_c00139{bottom:377.093333pt;}
.y134_c00139{bottom:383.226667pt;}
.y125_c00139{bottom:392.453333pt;}
.y128_c00139{bottom:393.986667pt;}
.y127_c00139{bottom:394.746667pt;}
.y12b_c00139{bottom:395.520000pt;}
.y12a_c00139{bottom:396.293333pt;}
.y12c_c00139{bottom:397.826667pt;}
.y129_c00139{bottom:399.360000pt;}
.y126_c00139{bottom:401.666667pt;}
.y11e_c00139{bottom:416.253333pt;}
.y120_c00139{bottom:417.026667pt;}
.y123_c00139{bottom:417.786667pt;}
.y122_c00139{bottom:419.333333pt;}
.y11f_c00139{bottom:420.093333pt;}
.y124_c00139{bottom:420.866667pt;}
.y11d_c00139{bottom:422.400000pt;}
.y121_c00139{bottom:423.173333pt;}
.y119_c00139{bottom:436.226667pt;}
.y11a_c00139{bottom:438.533333pt;}
.y11c_c00139{bottom:439.293333pt;}
.y118_c00139{bottom:440.826667pt;}
.y117_c00139{bottom:441.600000pt;}
.y11b_c00139{bottom:443.133333pt;}
.y113_c00139{bottom:459.266667pt;}
.y111_c00139{bottom:460.800000pt;}
.y114_c00139{bottom:462.333333pt;}
.y110_c00139{bottom:463.106667pt;}
.y116_c00139{bottom:463.866667pt;}
.y115_c00139{bottom:466.173333pt;}
.y112_c00139{bottom:466.946667pt;}
.y10a_c00139{bottom:481.533333pt;}
.y10c_c00139{bottom:483.066667pt;}
.y10f_c00139{bottom:483.840000pt;}
.y10e_c00139{bottom:484.613333pt;}
.y10d_c00139{bottom:485.373333pt;}
.y109_c00139{bottom:486.146667pt;}
.y10b_c00139{bottom:489.986667pt;}
.y104_c00139{bottom:503.813333pt;}
.y108_c00139{bottom:505.346667pt;}
.y105_c00139{bottom:506.880000pt;}
.y103_c00139{bottom:507.653333pt;}
.y107_c00139{bottom:509.946667pt;}
.y106_c00139{bottom:513.026667pt;}
.yfe_c00139{bottom:527.613333pt;}
.yff_c00139{bottom:528.386667pt;}
.y102_c00139{bottom:529.146667pt;}
.y101_c00139{bottom:530.693333pt;}
.y100_c00139{bottom:532.226667pt;}
.yfd_c00139{bottom:538.373333pt;}
.yf5_c00139{bottom:549.893333pt;}
.yf6_c00139{bottom:550.653333pt;}
.yf8_c00139{bottom:551.426667pt;}
.yfc_c00139{bottom:552.186667pt;}
.yfb_c00139{bottom:552.960000pt;}
.yfa_c00139{bottom:556.800000pt;}
.yf7_c00139{bottom:557.573333pt;}
.yf9_c00139{bottom:558.333333pt;}
.yf4_c00139{bottom:569.093333pt;}
.yf0_c00139{bottom:572.933333pt;}
.yf3_c00139{bottom:573.693333pt;}
.yf2_c00139{bottom:575.226667pt;}
.yee_c00139{bottom:576.000000pt;}
.yef_c00139{bottom:576.773333pt;}
.yf1_c00139{bottom:579.840000pt;}
.yea_c00139{bottom:592.893333pt;}
.ye6_c00139{bottom:593.666667pt;}
.ye7_c00139{bottom:594.426667pt;}
.ye9_c00139{bottom:595.200000pt;}
.yeb_c00139{bottom:595.973333pt;}
.yec_c00139{bottom:598.266667pt;}
.ye8_c00139{bottom:601.346667pt;}
.ye5_c00139{bottom:609.026667pt;}
.yed_c00139{bottom:615.933333pt;}
.yda_c00139{bottom:616.706667pt;}
.ye1_c00139{bottom:617.466667pt;}
.ydd_c00139{bottom:618.240000pt;}
.yde_c00139{bottom:619.773333pt;}
.yd9_c00139{bottom:620.546667pt;}
.ydb_c00139{bottom:622.080000pt;}
.ydc_c00139{bottom:622.853333pt;}
.ydf_c00139{bottom:623.613333pt;}
.ye0_c00139{bottom:624.386667pt;}
.ye3_c00139{bottom:625.146667pt;}
.ye2_c00139{bottom:625.920000pt;}
.ye4_c00139{bottom:627.453333pt;}
.yd8_c00139{bottom:636.666667pt;}
.yd1_c00139{bottom:637.440000pt;}
.yd6_c00139{bottom:639.746667pt;}
.yd2_c00139{bottom:640.506667pt;}
.yd5_c00139{bottom:642.813333pt;}
.yd3_c00139{bottom:643.586667pt;}
.yd4_c00139{bottom:644.346667pt;}
.yd7_c00139{bottom:658.173333pt;}
.yca_c00139{bottom:659.706667pt;}
.ycc_c00139{bottom:660.480000pt;}
.yce_c00139{bottom:661.253333pt;}
.ycd_c00139{bottom:662.786667pt;}
.ycb_c00139{bottom:663.546667pt;}
.yc9_c00139{bottom:664.320000pt;}
.ycf_c00139{bottom:668.933333pt;}
.yd0_c00139{bottom:675.840000pt;}
.yc8_c00139{bottom:678.146667pt;}
.yc4_c00139{bottom:681.986667pt;}
.yc5_c00139{bottom:682.746667pt;}
.ybf_c00139{bottom:683.520000pt;}
.yc1_c00139{bottom:685.826667pt;}
.yc2_c00139{bottom:686.586667pt;}
.yc6_c00139{bottom:687.360000pt;}
.yc3_c00139{bottom:688.133333pt;}
.yc7_c00139{bottom:690.426667pt;}
.yc0_c00139{bottom:698.880000pt;}
.ybb_c00139{bottom:701.946667pt;}
.ybe_c00139{bottom:703.493333pt;}
.yb9_c00139{bottom:704.253333pt;}
.ybc_c00139{bottom:707.333333pt;}
.ybd_c00139{bottom:709.626667pt;}
.yba_c00139{bottom:710.400000pt;}
.yb6_c00139{bottom:724.226667pt;}
.yb5_c00139{bottom:724.986667pt;}
.yb8_c00139{bottom:725.760000pt;}
.yb7_c00139{bottom:728.826667pt;}
.yb4_c00139{bottom:730.373333pt;}
.yad_c00139{bottom:731.133333pt;}
.yaa_c00139{bottom:731.906667pt;}
.yab_c00139{bottom:734.973333pt;}
.yae_c00139{bottom:738.053333pt;}
.yb1_c00139{bottom:738.813333pt;}
.yb3_c00139{bottom:741.893333pt;}
.yac_c00139{bottom:742.653333pt;}
.yaf_c00139{bottom:743.426667pt;}
.yb2_c00139{bottom:744.186667pt;}
.yb0_c00139{bottom:744.960000pt;}
.ya7_c00139{bottom:746.493333pt;}
.ya9_c00139{bottom:747.266667pt;}
.ya6_c00139{bottom:748.800000pt;}
.ya5_c00139{bottom:750.333333pt;}
.ya8_c00139{bottom:751.106667pt;}
.ya0_c00139{bottom:768.000000pt;}
.ya3_c00139{bottom:768.773333pt;}
.ya4_c00139{bottom:769.533333pt;}
.ya1_c00139{bottom:771.066667pt;}
.ya2_c00139{bottom:774.906667pt;}
.y9b_c00139{bottom:790.266667pt;}
.y9c_c00139{bottom:791.813333pt;}
.y9d_c00139{bottom:792.573333pt;}
.y9e_c00139{bottom:794.106667pt;}
.y9f_c00139{bottom:797.946667pt;}
.y99_c00139{bottom:811.773333pt;}
.y9a_c00139{bottom:814.853333pt;}
.y98_c00139{bottom:820.226667pt;}
.y95_c00139{bottom:834.813333pt;}
.y92_c00139{bottom:835.586667pt;}
.y97_c00139{bottom:836.346667pt;}
.y93_c00139{bottom:837.120000pt;}
.y96_c00139{bottom:839.426667pt;}
.y94_c00139{bottom:845.573333pt;}
.y8e_c00139{bottom:857.093333pt;}
.y8f_c00139{bottom:857.853333pt;}
.y91_c00139{bottom:858.626667pt;}
.y90_c00139{bottom:859.386667pt;}
.y8c_c00139{bottom:873.986667pt;}
.y8b_c00139{bottom:875.520000pt;}
.y8d_c00139{bottom:877.826667pt;}
.y87_c00139{bottom:879.360000pt;}
.y86_c00139{bottom:880.133333pt;}
.y88_c00139{bottom:880.893333pt;}
.y89_c00139{bottom:881.666667pt;}
.y85_c00139{bottom:883.973333pt;}
.y8a_c00139{bottom:887.040000pt;}
.y7b_c00139{bottom:901.626667pt;}
.y79_c00139{bottom:903.933333pt;}
.y7a_c00139{bottom:907.013333pt;}
.y7c_c00139{bottom:907.773333pt;}
.y7e_c00139{bottom:910.080000pt;}
.y81_c00139{bottom:910.853333pt;}
.y7d_c00139{bottom:911.613333pt;}
.y84_c00139{bottom:913.146667pt;}
.y83_c00139{bottom:916.226667pt;}
.y80_c00139{bottom:916.986667pt;}
.y7f_c00139{bottom:920.066667pt;}
.y82_c00139{bottom:923.906667pt;}
.y75_c00139{bottom:924.666667pt;}
.y77_c00139{bottom:925.440000pt;}
.y74_c00139{bottom:926.213333pt;}
.y76_c00139{bottom:927.746667pt;}
.y78_c00139{bottom:935.426667pt;}
.y71_c00139{bottom:948.480000pt;}
.y73_c00139{bottom:949.253333pt;}
.y72_c00139{bottom:952.320000pt;}
.y70_c00139{bottom:955.386667pt;}
.y6f_c00139{bottom:957.693333pt;}
.y68_c00139{bottom:967.680000pt;}
.y6b_c00139{bottom:968.453333pt;}
.y69_c00139{bottom:969.986667pt;}
.y6c_c00139{bottom:970.746667pt;}
.y6e_c00139{bottom:971.520000pt;}
.y6d_c00139{bottom:972.293333pt;}
.y6a_c00139{bottom:988.413333pt;}
.y64_c00139{bottom:992.253333pt;}
.y67_c00139{bottom:993.026667pt;}
.y66_c00139{bottom:994.560000pt;}
.y65_c00139{bottom:997.626667pt;}
.y5e_c00139{bottom:1012.226667pt;}
.y5f_c00139{bottom:1014.533333pt;}
.y61_c00139{bottom:1015.293333pt;}
.y60_c00139{bottom:1017.600000pt;}
.y63_c00139{bottom:1019.133333pt;}
.y62_c00139{bottom:1021.440000pt;}
.y5d_c00139{bottom:1026.053333pt;}
.y5b_c00139{bottom:1036.800000pt;}
.y51_c00139{bottom:1037.573333pt;}
.y59_c00139{bottom:1038.333333pt;}
.y53_c00139{bottom:1039.106667pt;}
.y57_c00139{bottom:1039.866667pt;}
.y5a_c00139{bottom:1041.413333pt;}
.y58_c00139{bottom:1042.173333pt;}
.y50_c00139{bottom:1044.480000pt;}
.y5c_c00139{bottom:1045.253333pt;}
.y54_c00139{bottom:1048.320000pt;}
.y4b_c00139{bottom:1049.093333pt;}
.y4a_c00139{bottom:1049.853333pt;}
.y4f_c00139{bottom:1050.626667pt;}
.y4c_c00139{bottom:1051.386667pt;}
.y52_c00139{bottom:1052.160000pt;}
.y4d_c00139{bottom:1052.933333pt;}
.y56_c00139{bottom:1053.693333pt;}
.y4e_c00139{bottom:1054.466667pt;}
.y49_c00139{bottom:1055.226667pt;}
.y55_c00139{bottom:1057.533333pt;}
.y44_c00139{bottom:1058.306667pt;}
.y45_c00139{bottom:1059.840000pt;}
.y47_c00139{bottom:1062.146667pt;}
.y46_c00139{bottom:1064.453333pt;}
.y48_c00139{bottom:1071.360000pt;}
.y3d_c00139{bottom:1080.573333pt;}
.y40_c00139{bottom:1082.106667pt;}
.y3e_c00139{bottom:1083.653333pt;}
.y3f_c00139{bottom:1085.186667pt;}
.y41_c00139{bottom:1086.720000pt;}
.y42_c00139{bottom:1087.493333pt;}
.y43_c00139{bottom:1091.333333pt;}
.y34_c00139{bottom:1103.613333pt;}
.y39_c00139{bottom:1105.146667pt;}
.y35_c00139{bottom:1105.920000pt;}
.y37_c00139{bottom:1106.693333pt;}
.y3c_c00139{bottom:1108.226667pt;}
.y3a_c00139{bottom:1108.986667pt;}
.y33_c00139{bottom:1110.533333pt;}
.y36_c00139{bottom:1111.293333pt;}
.y38_c00139{bottom:1112.066667pt;}
.y3b_c00139{bottom:1116.666667pt;}
.y2d_c00139{bottom:1124.346667pt;}
.y2f_c00139{bottom:1125.893333pt;}
.y2e_c00139{bottom:1128.186667pt;}
.y30_c00139{bottom:1131.266667pt;}
.y32_c00139{bottom:1132.026667pt;}
.y31_c00139{bottom:1135.866667pt;}
.y26_c00139{bottom:1147.386667pt;}
.y21_c00139{bottom:1148.160000pt;}
.y2c_c00139{bottom:1148.933333pt;}
.y28_c00139{bottom:1149.693333pt;}
.y20_c00139{bottom:1150.466667pt;}
.y27_c00139{bottom:1151.226667pt;}
.y23_c00139{bottom:1152.773333pt;}
.y22_c00139{bottom:1153.533333pt;}
.y2b_c00139{bottom:1154.306667pt;}
.y25_c00139{bottom:1155.066667pt;}
.y24_c00139{bottom:1155.840000pt;}
.y29_c00139{bottom:1156.613333pt;}
.y2a_c00139{bottom:1157.373333pt;}
.y19_c00139{bottom:1168.893333pt;}
.y17_c00139{bottom:1169.666667pt;}
.y1e_c00139{bottom:1170.426667pt;}
.y1c_c00139{bottom:1171.200000pt;}
.y18_c00139{bottom:1171.973333pt;}
.y1f_c00139{bottom:1173.506667pt;}
.y1b_c00139{bottom:1175.040000pt;}
.y1d_c00139{bottom:1177.346667pt;}
.y1a_c00139{bottom:1178.106667pt;}
.y14b_c00139{bottom:1188.093333pt;}
.y11_c00139{bottom:1191.173333pt;}
.y16_c00139{bottom:1191.933333pt;}
.y14_c00139{bottom:1192.706667pt;}
.y12_c00139{bottom:1193.466667pt;}
.y15_c00139{bottom:1196.546667pt;}
.y145_c00139{bottom:1198.853333pt;}
.y13_c00139{bottom:1201.146667pt;}
.y144_c00139{bottom:1204.226667pt;}
.ya_c00139{bottom:1220.346667pt;}
.y143_c00139{bottom:1221.120000pt;}
.y4_c00139{bottom:1223.426667pt;}
.yd_c00139{bottom:1224.186667pt;}
.yf_c00139{bottom:1224.960000pt;}
.ye_c00139{bottom:1225.733333pt;}
.yb_c00139{bottom:1227.266667pt;}
.yc_c00139{bottom:1228.026667pt;}
.y5_c00139{bottom:1230.333333pt;}
.y9_c00139{bottom:1233.413333pt;}
.y14a_c00139{bottom:1235.706667pt;}
.y10_c00139{bottom:1236.480000pt;}
.y6_c00139{bottom:1237.253333pt;}
.y7_c00139{bottom:1240.320000pt;}
.y8_c00139{bottom:1241.853333pt;}
.y3_c00139{bottom:1247.226667pt;}
.y1_c00139{bottom:1248.000000pt;}
.y2_c00139{bottom:1251.840000pt;}
.y146_c00139{bottom:1262.586667pt;}
.y147_c00139{bottom:1263.360000pt;}
.y149_c00139{bottom:1267.200000pt;}
.y148_c00139{bottom:1269.506667pt;}
.h5_c00139{height:2.764500pt;}
.h2_c00139{height:4.799479pt;}
.h21_c00139{height:5.519401pt;}
.h27_c00139{height:5.804500pt;}
.h3_c00139{height:8.303099pt;}
.h22_c00139{height:11.038802pt;}
.h29_c00139{height:11.396432pt;}
.h6_c00139{height:13.822500pt;}
.h4_c00139{height:16.606198pt;}
.h20_c00139{height:19.341901pt;}
.h1e_c00139{height:22.125599pt;}
.h14_c00139{height:24.861302pt;}
.h1c_c00139{height:27.645000pt;}
.h12_c00139{height:30.428698pt;}
.h1b_c00139{height:33.164401pt;}
.h1a_c00139{height:35.948099pt;}
.h24_c00139{height:38.683802pt;}
.h23_c00139{height:41.467500pt;}
.h19_c00139{height:44.251198pt;}
.h7_c00139{height:46.986901pt;}
.h18_c00139{height:49.770599pt;}
.ha_c00139{height:52.506302pt;}
.h1d_c00139{height:55.290000pt;}
.hb_c00139{height:58.073698pt;}
.h10_c00139{height:60.809401pt;}
.hd_c00139{height:63.593099pt;}
.h1f_c00139{height:66.328802pt;}
.hf_c00139{height:69.112500pt;}
.h17_c00139{height:71.896198pt;}
.h8_c00139{height:74.631901pt;}
.he_c00139{height:77.415599pt;}
.h9_c00139{height:80.151302pt;}
.hc_c00139{height:82.935000pt;}
.h25_c00139{height:85.718698pt;}
.h11_c00139{height:88.454401pt;}
.h13_c00139{height:91.238099pt;}
.h15_c00139{height:96.757500pt;}
.h16_c00139{height:99.541198pt;}
.h26_c00139{height:102.276901pt;}
.h28_c00139{height:105.060599pt;}
.h1_c00139{height:1336.000000pt;}
.h0_c00139{height:1336.320000pt;}
.w0_c00139{width:967.680000pt;}
.w1_c00139{width:968.000000pt;}
.x0_c00139{left:0.000000pt;}
.xec_c00139{left:67.586667pt;}
.xed_c00139{left:69.120000pt;}
.xf0_c00139{left:116.733333pt;}
.xee_c00139{left:125.946667pt;}
.xf1_c00139{left:127.493333pt;}
.x8d_c00139{left:134.400000pt;}
.x61_c00139{left:149.760000pt;}
.x8e_c00139{left:151.293333pt;}
.xef_c00139{left:153.600000pt;}
.xdf_c00139{left:160.506667pt;}
.x76_c00139{left:168.186667pt;}
.xab_c00139{left:171.266667pt;}
.x72_c00139{left:172.800000pt;}
.x73_c00139{left:175.866667pt;}
.x8f_c00139{left:181.253333pt;}
.xc7_c00139{left:185.853333pt;}
.xae_c00139{left:187.386667pt;}
.x51_c00139{left:190.466667pt;}
.x7d_c00139{left:193.533333pt;}
.x6a_c00139{left:197.373333pt;}
.x3b_c00139{left:199.680000pt;}
.x21_c00139{left:201.213333pt;}
.x77_c00139{left:202.746667pt;}
.x5_c00139{left:205.826667pt;}
.x19_c00139{left:208.133333pt;}
.x52_c00139{left:209.666667pt;}
.xcb_c00139{left:211.200000pt;}
.xe3_c00139{left:213.506667pt;}
.x86_c00139{left:220.413333pt;}
.xbf_c00139{left:221.946667pt;}
.x87_c00139{left:228.866667pt;}
.x2b_c00139{left:231.933333pt;}
.x6_c00139{left:235.013333pt;}
.xce_c00139{left:238.853333pt;}
.xdc_c00139{left:244.226667pt;}
.x53_c00139{left:245.760000pt;}
.xb6_c00139{left:248.066667pt;}
.xd5_c00139{left:249.600000pt;}
.x1_c00139{left:251.133333pt;}
.x7_c00139{left:253.440000pt;}
.x54_c00139{left:257.280000pt;}
.x79_c00139{left:261.120000pt;}
.x8_c00139{left:266.493333pt;}
.x62_c00139{left:270.333333pt;}
.x9_c00139{left:273.413333pt;}
.x9e_c00139{left:277.253333pt;}
.xa_c00139{left:278.786667pt;}
.x22_c00139{left:281.093333pt;}
.x7a_c00139{left:282.626667pt;}
.x2c_c00139{left:285.693333pt;}
.x55_c00139{left:288.000000pt;}
.x23_c00139{left:289.533333pt;}
.xe4_c00139{left:291.066667pt;}
.x24_c00139{left:292.613333pt;}
.xe0_c00139{left:294.906667pt;}
.x2d_c00139{left:296.453333pt;}
.xd7_c00139{left:300.293333pt;}
.x93_c00139{left:303.360000pt;}
.xb_c00139{left:304.893333pt;}
.xd6_c00139{left:309.506667pt;}
.x94_c00139{left:311.813333pt;}
.xc0_c00139{left:315.653333pt;}
.x56_c00139{left:317.186667pt;}
.xe5_c00139{left:318.720000pt;}
.xd9_c00139{left:321.026667pt;}
.xba_c00139{left:324.093333pt;}
.xaf_c00139{left:325.626667pt;}
.xd1_c00139{left:327.933333pt;}
.x2_c00139{left:329.466667pt;}
.x99_c00139{left:340.226667pt;}
.x9f_c00139{left:341.760000pt;}
.xd2_c00139{left:344.066667pt;}
.xc_c00139{left:347.133333pt;}
.x88_c00139{left:350.213333pt;}
.x1a_c00139{left:352.506667pt;}
.x63_c00139{left:354.813333pt;}
.xd_c00139{left:357.120000pt;}
.x3e_c00139{left:358.653333pt;}
.xd8_c00139{left:363.266667pt;}
.x25_c00139{left:365.573333pt;}
.xd3_c00139{left:367.866667pt;}
.xb0_c00139{left:369.413333pt;}
.x92_c00139{left:374.013333pt;}
.x7b_c00139{left:380.160000pt;}
.xe6_c00139{left:387.066667pt;}
.xa0_c00139{left:388.613333pt;}
.xe_c00139{left:390.906667pt;}
.xc4_c00139{left:393.986667pt;}
.x26_c00139{left:395.520000pt;}
.x57_c00139{left:400.893333pt;}
.x2e_c00139{left:407.040000pt;}
.xb1_c00139{left:410.880000pt;}
.x27_c00139{left:413.186667pt;}
.x6f_c00139{left:415.493333pt;}
.xc5_c00139{left:417.026667pt;}
.x89_c00139{left:418.560000pt;}
.xf_c00139{left:420.093333pt;}
.x2f_c00139{left:422.400000pt;}
.x58_c00139{left:425.466667pt;}
.xda_c00139{left:427.013333pt;}
.x3f_c00139{left:430.853333pt;}
.x9c_c00139{left:433.146667pt;}
.x3_c00139{left:435.453333pt;}
.xbb_c00139{left:437.760000pt;}
.x4_c00139{left:439.293333pt;}
.x10_c00139{left:440.826667pt;}
.xdd_c00139{left:442.373333pt;}
.xa8_c00139{left:443.906667pt;}
.xcc_c00139{left:449.280000pt;}
.x40_c00139{left:450.813333pt;}
.x1b_c00139{left:452.346667pt;}
.x59_c00139{left:453.893333pt;}
.xd4_c00139{left:456.960000pt;}
.x11_c00139{left:458.493333pt;}
.x8a_c00139{left:460.800000pt;}
.xc1_c00139{left:462.333333pt;}
.xa9_c00139{left:466.173333pt;}
.xa1_c00139{left:467.706667pt;}
.xc8_c00139{left:470.013333pt;}
.x74_c00139{left:472.320000pt;}
.x5a_c00139{left:473.853333pt;}
.x9d_c00139{left:486.906667pt;}
.xc9_c00139{left:491.520000pt;}
.xb2_c00139{left:494.586667pt;}
.x30_c00139{left:496.133333pt;}
.x95_c00139{left:499.200000pt;}
.x12_c00139{left:501.506667pt;}
.x8b_c00139{left:503.040000pt;}
.xc6_c00139{left:507.653333pt;}
.x7c_c00139{left:509.946667pt;}
.x1c_c00139{left:511.493333pt;}
.x9a_c00139{left:514.560000pt;}
.xbc_c00139{left:516.866667pt;}
.x31_c00139{left:519.173333pt;}
.x1d_c00139{left:521.466667pt;}
.xa2_c00139{left:523.013333pt;}
.xbd_c00139{left:527.613333pt;}
.x5b_c00139{left:529.146667pt;}
.xe1_c00139{left:531.453333pt;}
.x64_c00139{left:532.986667pt;}
.xcf_c00139{left:535.293333pt;}
.xe7_c00139{left:537.600000pt;}
.xa3_c00139{left:540.666667pt;}
.x13_c00139{left:542.213333pt;}
.xac_c00139{left:549.120000pt;}
.x65_c00139{left:552.960000pt;}
.x7e_c00139{left:554.493333pt;}
.x9b_c00139{left:556.026667pt;}
.x41_c00139{left:559.106667pt;}
.xc2_c00139{left:560.640000pt;}
.xcd_c00139{left:562.946667pt;}
.x6b_c00139{left:566.013333pt;}
.x14_c00139{left:567.546667pt;}
.x32_c00139{left:569.853333pt;}
.x28_c00139{left:572.160000pt;}
.x42_c00139{left:576.000000pt;}
.x7f_c00139{left:579.066667pt;}
.x66_c00139{left:582.146667pt;}
.xd0_c00139{left:583.680000pt;}
.x33_c00139{left:585.213333pt;}
.xa4_c00139{left:587.520733pt;}
.x34_c00139{left:591.360000pt;}
.x6c_c00139{left:593.666667pt;}
.xe8_c00139{left:595.973333pt;}
.x48_c00139{left:597.506667pt;}
.xa5_c00139{left:600.573333pt;}
.x35_c00139{left:602.106667pt;}
.x70_c00139{left:605.186667pt;}
.xf6_c00139{left:607.493333pt;}
.x36_c00139{left:609.026667pt;}
.x5c_c00139{left:612.093333pt;}
.xca_c00139{left:614.400000pt;}
.xa6_c00139{left:615.933333pt;}
.xdb_c00139{left:617.466667pt;}
.x96_c00139{left:621.306667pt;}
.xf7_c00139{left:625.920000pt;}
.xde_c00139{left:628.226667pt;}
.xad_c00139{left:632.066667pt;}
.x15_c00139{left:634.373333pt;}
.x49_c00139{left:637.440000pt;}
.x6d_c00139{left:638.973333pt;}
.x80_c00139{left:640.506667pt;}
.xa7_c00139{left:642.053333pt;}
.x67_c00139{left:645.120000pt;}
.x1e_c00139{left:646.653333pt;}
.x90_c00139{left:649.733333pt;}
.x75_c00139{left:651.266667pt;}
.x1f_c00139{left:656.640000pt;}
.x43_c00139{left:658.946667pt;}
.x98_c00139{left:661.253333pt;}
.x6e_c00139{left:665.853333pt;}
.xe9_c00139{left:667.386667pt;}
.x16_c00139{left:671.226667pt;}
.x29_c00139{left:673.533333pt;}
.x37_c00139{left:675.840000pt;}
.x4e_c00139{left:679.680000pt;}
.xbe_c00139{left:681.986667pt;}
.xaa_c00139{left:683.520000pt;}
.x20_c00139{left:685.053333pt;}
.x4a_c00139{left:691.200000pt;}
.xf8_c00139{left:692.733333pt;}
.xea_c00139{left:694.266667pt;}
.x78_c00139{left:698.880000pt;}
.x81_c00139{left:701.186667pt;}
.xeb_c00139{left:704.253333pt;}
.x82_c00139{left:706.560000pt;}
.xb7_c00139{left:709.626667pt;}
.x5d_c00139{left:714.240000pt;}
.x91_c00139{left:716.546667pt;}
.x4f_c00139{left:718.080000pt;}
.x44_c00139{left:719.613333pt;}
.x38_c00139{left:721.920000pt;}
.x4b_c00139{left:727.293333pt;}
.x5e_c00139{left:729.600000pt;}
.x39_c00139{left:731.133333pt;}
.x17_c00139{left:734.213333pt;}
.x68_c00139{left:737.280000pt;}
.x3a_c00139{left:741.120000pt;}
.x45_c00139{left:742.653333pt;}
.xb3_c00139{left:744.960000pt;}
.x83_c00139{left:746.492160pt;}
.x18_c00139{left:748.800000pt;}
.x2a_c00139{left:751.106667pt;}
.x84_c00139{left:761.853333pt;}
.x85_c00139{left:767.226667pt;}
.x97_c00139{left:771.066667pt;}
.xb8_c00139{left:779.520000pt;}
.x8c_c00139{left:781.826667pt;}
.x4c_c00139{left:784.893333pt;}
.x3c_c00139{left:787.200000pt;}
.xb4_c00139{left:791.040000pt;}
.x71_c00139{left:795.653333pt;}
.x4d_c00139{left:798.720000pt;}
.xb5_c00139{left:801.786667pt;}
.xe2_c00139{left:804.866667pt;}
.xf2_c00139{left:808.706667pt;}
.xc3_c00139{left:811.013333pt;}
.xb9_c00139{left:812.546667pt;}
.x3d_c00139{left:816.386667pt;}
.x5f_c00139{left:817.920000pt;}
.x50_c00139{left:819.453333pt;}
.xf3_c00139{left:821.760000pt;}
.x69_c00139{left:824.066667pt;}
.x46_c00139{left:825.600000pt;}
.xf4_c00139{left:828.666667pt;}
.x60_c00139{left:830.973333pt;}
.x47_c00139{left:835.586667pt;}
.xf5_c00139{left:837.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e530cb82d77dde0d85af6e1.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.109863;font-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_c00140{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00140{transform:matrix(0.046625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046625,0.000000,0.000000,0.250000,0,0);}
.m12d_c00140{transform:matrix(0.050025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050025,0.000000,0.000000,0.250000,0,0);}
.m7f_c00140{transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);}
.mb8_c00140{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00140{transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);}
.m17f_c00140{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.mba_c00140{transform:matrix(0.089350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089350,0.000000,0.000000,0.250000,0,0);}
.m2b_c00140{transform:matrix(0.091200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091200,0.000000,0.000000,0.250000,0,0);}
.m93_c00140{transform:matrix(0.092600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092600,0.000000,0.000000,0.250000,0,0);}
.m120_c00140{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m50_c00140{transform:matrix(0.094150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094150,0.000000,0.000000,0.250000,0,0);}
.ma_c00140{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.mf4_c00140{transform:matrix(0.100125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100125,0.000000,0.000000,0.250000,0,0);}
.ma6_c00140{transform:matrix(0.105925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105925,0.000000,0.000000,0.250000,0,0);}
.m4f_c00140{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m4e_c00140{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);}
.m16c_c00140{transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);}
.m114_c00140{transform:matrix(0.108800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108800,0.000000,0.000000,0.250000,0,0);}
.m66_c00140{transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);}
.md8_c00140{transform:matrix(0.115275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115275,0.000000,0.000000,0.250000,0,0);}
.m97_c00140{transform:matrix(0.115350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115350,0.000000,0.000000,0.250000,0,0);}
.m11a_c00140{transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);}
.m64_c00140{transform:matrix(0.116025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116025,0.000000,0.000000,0.250000,0,0);}
.m7d_c00140{transform:matrix(0.116050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116050,0.000000,0.000000,0.250000,0,0);}
.m9f_c00140{transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);}
.mc8_c00140{transform:matrix(0.118225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118225,0.000000,0.000000,0.250000,0,0);}
.m157_c00140{transform:matrix(0.119225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119225,0.000000,0.000000,0.250000,0,0);}
.m5b_c00140{transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);}
.m73_c00140{transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);}
.m13f_c00140{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);}
.m26_c00140{transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);}
.m11e_c00140{transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);}
.mfb_c00140{transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);}
.m16d_c00140{transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);}
.m13a_c00140{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);}
.mf9_c00140{transform:matrix(0.125800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125800,0.000000,0.000000,0.250000,0,0);}
.m11_c00140{transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);}
.m108_c00140{transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);}
.m30_c00140{transform:matrix(0.127400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127400,0.000000,0.000000,0.250000,0,0);}
.m13d_c00140{transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);}
.m7e_c00140{transform:matrix(0.127775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127775,0.000000,0.000000,0.250000,0,0);}
.m16b_c00140{transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);}
.m8d_c00140{transform:matrix(0.131350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131350,0.000000,0.000000,0.250000,0,0);}
.m63_c00140{transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);}
.m16_c00140{transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);}
.m107_c00140{transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);}
.mec_c00140{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.m5f_c00140{transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);}
.ma8_c00140{transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);}
.m3b_c00140{transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);}
.m60_c00140{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);}
.m9_c00140{transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);}
.m104_c00140{transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);}
.m158_c00140{transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);}
.m155_c00140{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);}
.m140_c00140{transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);}
.m173_c00140{transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);}
.mc2_c00140{transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);}
.m78_c00140{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.mbf_c00140{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.mac_c00140{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.m171_c00140{transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);}
.m110_c00140{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);}
.m170_c00140{transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);}
.m84_c00140{transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);}
.m86_c00140{transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);}
.m39_c00140{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.ma2_c00140{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00140{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.m77_c00140{transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);}
.m5e_c00140{transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);}
.m87_c00140{transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);}
.m41_c00140{transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);}
.m1c_c00140{transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);}
.m16a_c00140{transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);}
.md7_c00140{transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);}
.m15e_c00140{transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);}
.m85_c00140{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.m65_c00140{transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);}
.m10d_c00140{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);}
.m0_c00140{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.maf_c00140{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.me2_c00140{transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);}
.mcf_c00140{transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);}
.m59_c00140{transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);}
.mca_c00140{transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);}
.m152_c00140{transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);}
.maa_c00140{transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);}
.m132_c00140{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);}
.m153_c00140{transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);}
.m154_c00140{transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);}
.m4d_c00140{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.m52_c00140{transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);}
.m12_c00140{transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);}
.m45_c00140{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);}
.m14d_c00140{transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);}
.m19_c00140{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);}
.m6d_c00140{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m14_c00140{transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);}
.m92_c00140{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00140{transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);}
.m42_c00140{transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);}
.m166_c00140{transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);}
.m9b_c00140{transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);}
.m8b_c00140{transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);}
.m61_c00140{transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);}
.m15d_c00140{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.m112_c00140{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.mb1_c00140{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.m118_c00140{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);}
.m5a_c00140{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);}
.m174_c00140{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);}
.m117_c00140{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.m3f_c00140{transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);}
.m12b_c00140{transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);}
.m172_c00140{transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);}
.m17b_c00140{transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);}
.m20_c00140{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.mbb_c00140{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);}
.mdf_c00140{transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);}
.m21_c00140{transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);}
.m138_c00140{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m46_c00140{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);}
.m1f_c00140{transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);}
.m124_c00140{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m14e_c00140{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.mbe_c00140{transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);}
.m6_c00140{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);}
.m4b_c00140{transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);}
.mda_c00140{transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);}
.mfc_c00140{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);}
.m116_c00140{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.m10c_c00140{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m6e_c00140{transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);}
.md4_c00140{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00140{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);}
.m175_c00140{transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);}
.m101_c00140{transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);}
.m125_c00140{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.m53_c00140{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.m9d_c00140{transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);}
.ma4_c00140{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.m176_c00140{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m32_c00140{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.m7b_c00140{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m142_c00140{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m111_c00140{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.m10a_c00140{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.m44_c00140{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.mc6_c00140{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m106_c00140{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);}
.m168_c00140{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);}
.m11d_c00140{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.mfd_c00140{transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);}
.m8f_c00140{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.mc5_c00140{transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);}
.m15c_c00140{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);}
.m6f_c00140{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.mc7_c00140{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);}
.m169_c00140{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.mcc_c00140{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.m3a_c00140{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.mb0_c00140{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);}
.m122_c00140{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m10e_c00140{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m7a_c00140{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.mf3_c00140{transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);}
.m10b_c00140{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.me1_c00140{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.mc4_c00140{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.m115_c00140{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m15f_c00140{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m12a_c00140{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m161_c00140{transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);}
.mf5_c00140{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m127_c00140{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);}
.m105_c00140{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);}
.m128_c00140{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.mea_c00140{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00140{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.m67_c00140{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.ma1_c00140{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.ma0_c00140{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);}
.m14f_c00140{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);}
.m123_c00140{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m177_c00140{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m160_c00140{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m6a_c00140{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);}
.m15a_c00140{transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);}
.m13_c00140{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);}
.med_c00140{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m9c_c00140{transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00140{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m150_c00140{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m29_c00140{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m47_c00140{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.mb6_c00140{transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);}
.m13b_c00140{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);}
.m159_c00140{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);}
.m146_c00140{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.md9_c00140{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.m103_c00140{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);}
.me8_c00140{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.m11b_c00140{transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);}
.m38_c00140{transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);}
.mce_c00140{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.me3_c00140{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);}
.m3e_c00140{transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);}
.m149_c00140{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m2a_c00140{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.m14c_c00140{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);}
.m156_c00140{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);}
.m143_c00140{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m13e_c00140{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.me7_c00140{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m81_c00140{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.mc9_c00140{transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);}
.m13c_c00140{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);}
.m137_c00140{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);}
.m70_c00140{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);}
.m7c_c00140{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.mb2_c00140{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);}
.m2d_c00140{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);}
.md1_c00140{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00140{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.m109_c00140{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.mcd_c00140{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);}
.m162_c00140{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m119_c00140{transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);}
.mbd_c00140{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.mf_c00140{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);}
.m139_c00140{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);}
.md3_c00140{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);}
.m1d_c00140{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m88_c00140{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.m80_c00140{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.m16f_c00140{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);}
.m24_c00140{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.mfa_c00140{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.mb5_c00140{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m11c_c00140{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mff_c00140{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);}
.me9_c00140{transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);}
.m131_c00140{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.m145_c00140{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m14b_c00140{transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);}
.me4_c00140{transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);}
.mfe_c00140{transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);}
.m2f_c00140{transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);}
.m89_c00140{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);}
.m163_c00140{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.m102_c00140{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);}
.md5_c00140{transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);}
.m100_c00140{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.mad_c00140{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);}
.m151_c00140{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);}
.me0_c00140{transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);}
.m15b_c00140{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m130_c00140{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mf7_c00140{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m79_c00140{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);}
.m74_c00140{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);}
.m75_c00140{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.mef_c00140{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.mdd_c00140{transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);}
.mf8_c00140{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m3c_c00140{transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);}
.m35_c00140{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.mf6_c00140{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);}
.m6b_c00140{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m8e_c00140{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);}
.mdc_c00140{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);}
.m17c_c00140{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);}
.md0_c00140{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);}
.m12e_c00140{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);}
.me6_c00140{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);}
.m141_c00140{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);}
.mdb_c00140{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);}
.m129_c00140{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);}
.mb3_c00140{transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);}
.m82_c00140{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m148_c00140{transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);}
.ma9_c00140{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m17a_c00140{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m164_c00140{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);}
.m9e_c00140{transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);}
.m31_c00140{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);}
.m135_c00140{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);}
.md2_c00140{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);}
.m49_c00140{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);}
.md_c00140{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);}
.m126_c00140{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00140{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);}
.m94_c00140{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);}
.m3d_c00140{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);}
.me5_c00140{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);}
.m2c_c00140{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.meb_c00140{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00140{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m34_c00140{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);}
.m54_c00140{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00140{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);}
.m37_c00140{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);}
.m1b_c00140{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m83_c00140{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_c00140{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00140{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m28_c00140{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);}
.m91_c00140{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m15_c00140{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);}
.m2e_c00140{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);}
.m12f_c00140{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m165_c00140{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m33_c00140{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);}
.mab_c00140{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00140{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);}
.m1e_c00140{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00140{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m76_c00140{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00140{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00140{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m48_c00140{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00140{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);}
.m25_c00140{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m113_c00140{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c00140{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14a_c00140{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00140{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);}
.mae_c00140{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m147_c00140{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);}
.mb_c00140{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mde_c00140{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m95_c00140{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);}
.m167_c00140{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md6_c00140{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m96_c00140{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00140{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m144_c00140{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m68_c00140{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m8_c00140{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);}
.m51_c00140{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);}
.m69_c00140{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m58_c00140{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00140{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c00140{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m40_c00140{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00140{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00140{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m27_c00140{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m7_c00140{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00140{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m133_c00140{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00140{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00140{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m17_c00140{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m98_c00140{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m43_c00140{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00140{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m17e_c00140{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00140{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m62_c00140{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m4_c00140{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m36_c00140{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00140{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m121_c00140{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m18_c00140{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m99_c00140{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m71_c00140{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);}
.m16e_c00140{transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);}
.m23_c00140{transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);}
.m1_c00140{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m136_c00140{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m55_c00140{transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);}
.m134_c00140{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m72_c00140{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m17d_c00140{transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);}
.m56_c00140{transform:matrix(1.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.292500,0.000000,0.000000,0.250000,0,0);}
.m90_c00140{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m57_c00140{transform:matrix(1.510000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.510000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.510000,0.000000,0.000000,0.250000,0,0);}
.m22_c00140{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m179_c00140{transform:matrix(2.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.122500,0.000000,0.000000,0.250000,0,0);}
.mee_c00140{transform:matrix(4.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.685000,0.000000,0.000000,0.250000,0,0);}
.m178_c00140{transform:matrix(13.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(13.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(13.825000,0.000000,0.000000,0.250000,0,0);}
.v0_c00140{vertical-align:0.000000px;}
.v1_c00140{vertical-align:3.420000px;}
.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:-29.216100px;}
.ws1_c00140{word-spacing:0.000000px;}
.fc0_c00140{color:transparent;}
.fs0_c00140{font-size:3.456000px;}
.fs4_c00140{font-size:6.000000px;}
.fs16_c00140{font-size:6.900000px;}
.fs3_c00140{font-size:10.380000px;}
.fs2_c00140{font-size:13.800000px;}
.fs1_c00140{font-size:17.280000px;}
.fs12_c00140{font-size:20.760000px;}
.fs1d_c00140{font-size:24.180000px;}
.fs25_c00140{font-size:27.660000px;}
.fs22_c00140{font-size:31.080000px;}
.fs11_c00140{font-size:34.560000px;}
.fs1b_c00140{font-size:38.040000px;}
.fs1a_c00140{font-size:41.460000px;}
.fs20_c00140{font-size:44.940000px;}
.fs26_c00140{font-size:48.360000px;}
.fs18_c00140{font-size:51.840000px;}
.fs14_c00140{font-size:55.320000px;}
.fs17_c00140{font-size:58.740000px;}
.fs5_c00140{font-size:62.220000px;}
.fsb_c00140{font-size:65.640000px;}
.fsa_c00140{font-size:69.120000px;}
.fs7_c00140{font-size:72.600000px;}
.fs6_c00140{font-size:76.020000px;}
.fs1e_c00140{font-size:79.500000px;}
.fs13_c00140{font-size:82.920000px;}
.fs8_c00140{font-size:86.400000px;}
.fs9_c00140{font-size:89.880000px;}
.fsf_c00140{font-size:93.300000px;}
.fs15_c00140{font-size:96.780000px;}
.fs1c_c00140{font-size:100.200000px;}
.fse_c00140{font-size:103.680000px;}
.fs24_c00140{font-size:107.160000px;}
.fs1f_c00140{font-size:110.580000px;}
.fs19_c00140{font-size:114.060000px;}
.fs10_c00140{font-size:117.480000px;}
.fs23_c00140{font-size:124.440000px;}
.fs21_c00140{font-size:131.340000px;}
.fsd_c00140{font-size:134.760000px;}
.fsc_c00140{font-size:141.720000px;}
.fs27_c00140{font-size:148.620000px;}
.y0_c00140{bottom:0.000000px;}
.y199_c00140{bottom:186.630000px;}
.y198_c00140{bottom:188.355000px;}
.y194_c00140{bottom:189.210000px;}
.y197_c00140{bottom:194.400000px;}
.y196_c00140{bottom:195.270000px;}
.y195_c00140{bottom:196.995000px;}
.y193_c00140{bottom:197.850000px;}
.y192_c00140{bottom:199.590000px;}
.y191_c00140{bottom:202.170000px;}
.y190_c00140{bottom:209.955000px;}
.y18f_c00140{bottom:210.810000px;}
.y18d_c00140{bottom:213.405000px;}
.y188_c00140{bottom:214.275000px;}
.y18e_c00140{bottom:215.130000px;}
.y186_c00140{bottom:216.000000px;}
.y185_c00140{bottom:217.725000px;}
.y187_c00140{bottom:218.595000px;}
.y184_c00140{bottom:219.450000px;}
.y18a_c00140{bottom:220.320000px;}
.y183_c00140{bottom:222.045000px;}
.y189_c00140{bottom:222.915000px;}
.y18c_c00140{bottom:223.770000px;}
.y18b_c00140{bottom:224.640000px;}
.y182_c00140{bottom:228.960000px;}
.y181_c00140{bottom:236.730000px;}
.y17f_c00140{bottom:239.325000px;}
.y17d_c00140{bottom:240.195000px;}
.y17e_c00140{bottom:241.050000px;}
.y17c_c00140{bottom:243.645000px;}
.y17b_c00140{bottom:245.370000px;}
.y17a_c00140{bottom:246.240000px;}
.y180_c00140{bottom:247.965000px;}
.y179_c00140{bottom:249.690000px;}
.y178_c00140{bottom:263.520000px;}
.y177_c00140{bottom:273.885000px;}
.y173_c00140{bottom:275.610000px;}
.y176_c00140{bottom:276.480000px;}
.y175_c00140{bottom:278.205000px;}
.y174_c00140{bottom:279.075000px;}
.y172_c00140{bottom:282.525000px;}
.y170_c00140{bottom:292.890000px;}
.y171_c00140{bottom:293.760000px;}
.y16f_c00140{bottom:294.630000px;}
.y16c_c00140{bottom:295.485000px;}
.y16b_c00140{bottom:301.530000px;}
.y16e_c00140{bottom:304.125000px;}
.y16d_c00140{bottom:304.995000px;}
.y169_c00140{bottom:315.360000px;}
.y168_c00140{bottom:316.230000px;}
.y166_c00140{bottom:319.680000px;}
.y165_c00140{bottom:323.130000px;}
.y167_c00140{bottom:324.870000px;}
.y16a_c00140{bottom:329.190000px;}
.y163_c00140{bottom:339.555000px;}
.y162_c00140{bottom:342.150000px;}
.y161_c00140{bottom:345.600000px;}
.y164_c00140{bottom:346.470000px;}
.y15f_c00140{bottom:350.790000px;}
.y160_c00140{bottom:351.645000px;}
.y15e_c00140{bottom:365.475000px;}
.y15c_c00140{bottom:367.200000px;}
.y15b_c00140{bottom:369.795000px;}
.y15a_c00140{bottom:372.390000px;}
.y15d_c00140{bottom:373.245000px;}
.y159_c00140{bottom:374.115000px;}
.y157_c00140{bottom:391.395000px;}
.y152_c00140{bottom:396.570000px;}
.y158_c00140{bottom:397.440000px;}
.y156_c00140{bottom:398.310000px;}
.y150_c00140{bottom:400.035000px;}
.y155_c00140{bottom:401.760000px;}
.y153_c00140{bottom:402.630000px;}
.y154_c00140{bottom:406.080000px;}
.y151_c00140{bottom:406.950000px;}
.y14f_c00140{bottom:415.590000px;}
.y14e_c00140{bottom:419.040000px;}
.y14c_c00140{bottom:419.910000px;}
.y14b_c00140{bottom:422.490000px;}
.y14d_c00140{bottom:425.955000px;}
.y14a_c00140{bottom:432.000000px;}
.y149_c00140{bottom:440.640000px;}
.y148_c00140{bottom:443.235000px;}
.y147_c00140{bottom:444.090000px;}
.y143_c00140{bottom:448.410000px;}
.y142_c00140{bottom:450.150000px;}
.y144_c00140{bottom:451.005000px;}
.y146_c00140{bottom:453.600000px;}
.y145_c00140{bottom:454.470000px;}
.y141_c00140{bottom:457.050000px;}
.y13f_c00140{bottom:470.010000px;}
.y13e_c00140{bottom:471.750000px;}
.y13d_c00140{bottom:473.475000px;}
.y13b_c00140{bottom:476.070000px;}
.y139_c00140{bottom:476.925000px;}
.y13c_c00140{bottom:477.795000px;}
.y140_c00140{bottom:482.970000px;}
.y13a_c00140{bottom:483.840000px;}
.y136_c00140{bottom:491.610000px;}
.y135_c00140{bottom:493.350000px;}
.y138_c00140{bottom:495.075000px;}
.y134_c00140{bottom:495.930000px;}
.y133_c00140{bottom:498.525000px;}
.y131_c00140{bottom:499.395000px;}
.y132_c00140{bottom:504.570000px;}
.y130_c00140{bottom:505.440000px;}
.y137_c00140{bottom:512.355000px;}
.y12e_c00140{bottom:517.530000px;}
.y12d_c00140{bottom:518.400000px;}
.y12c_c00140{bottom:520.995000px;}
.y12b_c00140{bottom:521.850000px;}
.y12f_c00140{bottom:523.590000px;}
.y127_c00140{bottom:524.445000px;}
.y12a_c00140{bottom:527.910000px;}
.y125_c00140{bottom:529.635000px;}
.y129_c00140{bottom:530.490000px;}
.y128_c00140{bottom:532.230000px;}
.y126_c00140{bottom:533.085000px;}
.y124_c00140{bottom:536.550000px;}
.y120_c00140{bottom:545.190000px;}
.y11f_c00140{bottom:546.045000px;}
.y11d_c00140{bottom:546.915000px;}
.y11e_c00140{bottom:547.770000px;}
.y123_c00140{bottom:548.640000px;}
.y11c_c00140{bottom:549.510000px;}
.y121_c00140{bottom:550.365000px;}
.y122_c00140{bottom:551.235000px;}
.y19c_c00140{bottom:566.790000px;}
.y117_c00140{bottom:567.645000px;}
.y116_c00140{bottom:569.370000px;}
.y113_c00140{bottom:571.110000px;}
.y114_c00140{bottom:571.965000px;}
.y118_c00140{bottom:572.835000px;}
.y115_c00140{bottom:576.285000px;}
.y119_c00140{bottom:578.010000px;}
.y112_c00140{bottom:581.475000px;}
.y111_c00140{bottom:583.200000px;}
.y11b_c00140{bottom:584.070000px;}
.y11a_c00140{bottom:587.520000px;}
.y110_c00140{bottom:590.970000px;}
.y10e_c00140{bottom:593.565000px;}
.y10d_c00140{bottom:595.290000px;}
.y10c_c00140{bottom:597.030000px;}
.y10b_c00140{bottom:597.885000px;}
.y108_c00140{bottom:599.610000px;}
.y109_c00140{bottom:600.480000px;}
.y10a_c00140{bottom:604.800000px;}
.y10f_c00140{bottom:606.525000px;}
.y106_c00140{bottom:620.355000px;}
.y103_c00140{bottom:624.675000px;}
.y102_c00140{bottom:625.530000px;}
.y104_c00140{bottom:626.400000px;}
.y107_c00140{bottom:628.125000px;}
.y105_c00140{bottom:630.720000px;}
.yfe_c00140{bottom:644.550000px;}
.yff_c00140{bottom:645.405000px;}
.y101_c00140{bottom:646.275000px;}
.y100_c00140{bottom:648.000000px;}
.yfc_c00140{bottom:649.725000px;}
.yfa_c00140{bottom:650.595000px;}
.yf8_c00140{bottom:652.320000px;}
.yfd_c00140{bottom:655.770000px;}
.yfb_c00140{bottom:656.640000px;}
.yf9_c00140{bottom:660.090000px;}
.yf7_c00140{bottom:670.470000px;}
.yf3_c00140{bottom:673.920000px;}
.yf5_c00140{bottom:679.110000px;}
.yf1_c00140{bottom:680.835000px;}
.yee_c00140{bottom:681.690000px;}
.yf0_c00140{bottom:684.285000px;}
.yf6_c00140{bottom:685.155000px;}
.yef_c00140{bottom:688.605000px;}
.yf4_c00140{bottom:690.330000px;}
.yeb_c00140{bottom:691.200000px;}
.yed_c00140{bottom:692.070000px;}
.yec_c00140{bottom:693.795000px;}
.yf2_c00140{bottom:695.520000px;}
.ye8_c00140{bottom:699.840000px;}
.ye9_c00140{bottom:700.710000px;}
.ye6_c00140{bottom:701.565000px;}
.ye5_c00140{bottom:702.435000px;}
.ye7_c00140{bottom:703.290000px;}
.yea_c00140{bottom:705.030000px;}
.ye0_c00140{bottom:718.845000px;}
.ye1_c00140{bottom:719.715000px;}
.ye3_c00140{bottom:722.310000px;}
.yde_c00140{bottom:723.165000px;}
.ydc_c00140{bottom:724.035000px;}
.ye4_c00140{bottom:724.890000px;}
.ye2_c00140{bottom:725.760000px;}
.ydf_c00140{bottom:728.355000px;}
.ydd_c00140{bottom:729.210000px;}
.yda_c00140{bottom:735.270000px;}
.ydb_c00140{bottom:741.315000px;}
.yd9_c00140{bottom:747.360000px;}
.yd6_c00140{bottom:748.230000px;}
.yd4_c00140{bottom:749.085000px;}
.yd3_c00140{bottom:750.810000px;}
.yd5_c00140{bottom:751.680000px;}
.yd8_c00140{bottom:752.550000px;}
.yd7_c00140{bottom:753.405000px;}
.yd1_c00140{bottom:767.235000px;}
.ycf_c00140{bottom:768.960000px;}
.yd2_c00140{bottom:772.410000px;}
.yd0_c00140{bottom:775.005000px;}
.ycd_c00140{bottom:777.600000px;}
.ycc_c00140{bottom:779.325000px;}
.ycb_c00140{bottom:780.195000px;}
.yce_c00140{bottom:781.050000px;}
.yca_c00140{bottom:792.285000px;}
.yc9_c00140{bottom:794.880000px;}
.yc8_c00140{bottom:795.750000px;}
.yc7_c00140{bottom:796.605000px;}
.yc5_c00140{bottom:798.330000px;}
.yc6_c00140{bottom:799.200000px;}
.yc3_c00140{bottom:800.070000px;}
.yc4_c00140{bottom:805.245000px;}
.yc2_c00140{bottom:815.610000px;}
.yc1_c00140{bottom:819.930000px;}
.yc0_c00140{bottom:820.800000px;}
.ybe_c00140{bottom:821.670000px;}
.ybd_c00140{bottom:822.525000px;}
.ybc_c00140{bottom:824.250000px;}
.ybf_c00140{bottom:825.120000px;}
.ybb_c00140{bottom:839.805000px;}
.yb8_c00140{bottom:842.400000px;}
.yb5_c00140{bottom:845.850000px;}
.yb6_c00140{bottom:846.720000px;}
.yb4_c00140{bottom:847.590000px;}
.yba_c00140{bottom:849.315000px;}
.yb9_c00140{bottom:850.170000px;}
.yb7_c00140{bottom:852.765000px;}
.yb3_c00140{bottom:854.490000px;}
.yb2_c00140{bottom:866.595000px;}
.yb0_c00140{bottom:867.450000px;}
.yaf_c00140{bottom:868.320000px;}
.yb1_c00140{bottom:870.045000px;}
.yae_c00140{bottom:870.915000px;}
.yad_c00140{bottom:871.770000px;}
.yac_c00140{bottom:874.365000px;}
.yaa_c00140{bottom:891.645000px;}
.yab_c00140{bottom:893.370000px;}
.ya6_c00140{bottom:895.965000px;}
.ya4_c00140{bottom:896.835000px;}
.ya7_c00140{bottom:897.690000px;}
.ya9_c00140{bottom:900.285000px;}
.ya8_c00140{bottom:901.155000px;}
.ya2_c00140{bottom:902.010000px;}
.ya1_c00140{bottom:902.880000px;}
.ya5_c00140{bottom:903.750000px;}
.ya3_c00140{bottom:905.475000px;}
.ya0_c00140{bottom:916.710000px;}
.y9f_c00140{bottom:919.290000px;}
.y9d_c00140{bottom:920.160000px;}
.y9a_c00140{bottom:924.480000px;}
.y9c_c00140{bottom:925.350000px;}
.y9b_c00140{bottom:926.205000px;}
.y9e_c00140{bottom:927.075000px;}
.y98_c00140{bottom:941.760000px;}
.y97_c00140{bottom:944.355000px;}
.y96_c00140{bottom:946.950000px;}
.y95_c00140{bottom:953.850000px;}
.y99_c00140{bottom:959.910000px;}
.y92_c00140{bottom:965.085000px;}
.y94_c00140{bottom:969.405000px;}
.y90_c00140{bottom:971.130000px;}
.y8e_c00140{bottom:972.870000px;}
.y8f_c00140{bottom:973.725000px;}
.y8d_c00140{bottom:977.190000px;}
.y91_c00140{bottom:979.770000px;}
.y8c_c00140{bottom:982.365000px;}
.y8b_c00140{bottom:983.235000px;}
.y93_c00140{bottom:984.960000px;}
.y88_c00140{bottom:992.730000px;}
.y89_c00140{bottom:996.195000px;}
.y85_c00140{bottom:997.050000px;}
.y86_c00140{bottom:997.920000px;}
.y84_c00140{bottom:1000.515000px;}
.y83_c00140{bottom:1001.370000px;}
.y87_c00140{bottom:1002.240000px;}
.y8a_c00140{bottom:1003.110000px;}
.y82_c00140{bottom:1018.650000px;}
.y81_c00140{bottom:1019.520000px;}
.y80_c00140{bottom:1021.245000px;}
.y7e_c00140{bottom:1022.970000px;}
.y7c_c00140{bottom:1024.710000px;}
.y7d_c00140{bottom:1029.030000px;}
.y7f_c00140{bottom:1029.885000px;}
.y79_c00140{bottom:1042.845000px;}
.y78_c00140{bottom:1044.570000px;}
.y7b_c00140{bottom:1048.035000px;}
.y75_c00140{bottom:1048.890000px;}
.y76_c00140{bottom:1049.760000px;}
.y7a_c00140{bottom:1051.485000px;}
.y77_c00140{bottom:1052.355000px;}
.y73_c00140{bottom:1054.080000px;}
.y74_c00140{bottom:1054.950000px;}
.y19b_c00140{bottom:1057.530000px;}
.y71_c00140{bottom:1067.910000px;}
.y6d_c00140{bottom:1070.490000px;}
.y6f_c00140{bottom:1073.085000px;}
.y72_c00140{bottom:1077.405000px;}
.y70_c00140{bottom:1078.275000px;}
.y6e_c00140{bottom:1079.130000px;}
.y6c_c00140{bottom:1084.320000px;}
.y69_c00140{bottom:1092.960000px;}
.y68_c00140{bottom:1096.410000px;}
.y6a_c00140{bottom:1099.005000px;}
.y6b_c00140{bottom:1100.730000px;}
.y65_c00140{bottom:1101.600000px;}
.y66_c00140{bottom:1104.195000px;}
.y67_c00140{bottom:1105.050000px;}
.y64_c00140{bottom:1105.920000px;}
.y62_c00140{bottom:1117.155000px;}
.y63_c00140{bottom:1118.880000px;}
.y61_c00140{bottom:1120.605000px;}
.y60_c00140{bottom:1122.330000px;}
.y5f_c00140{bottom:1123.200000px;}
.y5c_c00140{bottom:1143.075000px;}
.y5d_c00140{bottom:1145.670000px;}
.y5b_c00140{bottom:1147.395000px;}
.y5a_c00140{bottom:1149.120000px;}
.y59_c00140{bottom:1150.845000px;}
.y5e_c00140{bottom:1158.630000px;}
.y58_c00140{bottom:1162.950000px;}
.y57_c00140{bottom:1165.530000px;}
.y56_c00140{bottom:1171.590000px;}
.y55_c00140{bottom:1172.445000px;}
.y53_c00140{bottom:1194.045000px;}
.y54_c00140{bottom:1194.915000px;}
.y4d_c00140{bottom:1195.770000px;}
.y50_c00140{bottom:1197.510000px;}
.y51_c00140{bottom:1199.235000px;}
.y52_c00140{bottom:1200.090000px;}
.y4f_c00140{bottom:1200.960000px;}
.y4e_c00140{bottom:1202.685000px;}
.y4c_c00140{bottom:1203.555000px;}
.y4b_c00140{bottom:1204.410000px;}
.y48_c00140{bottom:1213.920000px;}
.y47_c00140{bottom:1218.240000px;}
.y4a_c00140{bottom:1219.965000px;}
.y41_c00140{bottom:1224.285000px;}
.y43_c00140{bottom:1225.155000px;}
.y44_c00140{bottom:1227.750000px;}
.y46_c00140{bottom:1228.605000px;}
.y45_c00140{bottom:1229.475000px;}
.y42_c00140{bottom:1230.330000px;}
.y49_c00140{bottom:1232.070000px;}
.y3_c00140{bottom:1242.435000px;}
.y3f_c00140{bottom:1243.290000px;}
.y4_c00140{bottom:1245.030000px;}
.y3b_c00140{bottom:1245.885000px;}
.y3c_c00140{bottom:1246.755000px;}
.y40_c00140{bottom:1248.480000px;}
.y3e_c00140{bottom:1251.930000px;}
.y3d_c00140{bottom:1252.800000px;}
.y3a_c00140{bottom:1254.525000px;}
.y38_c00140{bottom:1255.395000px;}
.y39_c00140{bottom:1256.250000px;}
.y37_c00140{bottom:1267.485000px;}
.y36_c00140{bottom:1270.080000px;}
.y34_c00140{bottom:1270.950000px;}
.y35_c00140{bottom:1274.400000px;}
.y31_c00140{bottom:1275.270000px;}
.y33_c00140{bottom:1276.995000px;}
.y32_c00140{bottom:1277.850000px;}
.y30_c00140{bottom:1282.170000px;}
.y19a_c00140{bottom:1286.490000px;}
.y2e_c00140{bottom:1294.275000px;}
.y2b_c00140{bottom:1296.000000px;}
.y29_c00140{bottom:1296.870000px;}
.y27_c00140{bottom:1297.725000px;}
.y2f_c00140{bottom:1299.450000px;}
.y2a_c00140{bottom:1300.320000px;}
.y2d_c00140{bottom:1302.045000px;}
.y2c_c00140{bottom:1302.915000px;}
.y26_c00140{bottom:1303.770000px;}
.y28_c00140{bottom:1304.640000px;}
.y25_c00140{bottom:1306.365000px;}
.y24_c00140{bottom:1307.235000px;}
.y23_c00140{bottom:1310.685000px;}
.y20_c00140{bottom:1319.325000px;}
.y1e_c00140{bottom:1321.050000px;}
.y1d_c00140{bottom:1322.790000px;}
.y1c_c00140{bottom:1323.645000px;}
.y1b_c00140{bottom:1324.515000px;}
.y22_c00140{bottom:1325.370000px;}
.y19_c00140{bottom:1326.240000px;}
.y1f_c00140{bottom:1327.110000px;}
.y1a_c00140{bottom:1332.285000px;}
.y18_c00140{bottom:1333.155000px;}
.y21_c00140{bottom:1336.605000px;}
.y17_c00140{bottom:1344.390000px;}
.y11_c00140{bottom:1346.115000px;}
.y16_c00140{bottom:1346.970000px;}
.y10_c00140{bottom:1347.840000px;}
.y13_c00140{bottom:1348.710000px;}
.y15_c00140{bottom:1349.565000px;}
.y14_c00140{bottom:1351.290000px;}
.y12_c00140{bottom:1352.160000px;}
.y5_c00140{bottom:1358.205000px;}
.y8_c00140{bottom:1382.400000px;}
.yc_c00140{bottom:1383.270000px;}
.yd_c00140{bottom:1384.125000px;}
.ya_c00140{bottom:1384.995000px;}
.y9_c00140{bottom:1385.850000px;}
.yb_c00140{bottom:1389.315000px;}
.yf_c00140{bottom:1393.635000px;}
.ye_c00140{bottom:1396.230000px;}
.y7_c00140{bottom:1399.680000px;}
.y6_c00140{bottom:1416.090000px;}
.y1_c00140{bottom:1442.880000px;}
.y2_c00140{bottom:1443.750000px;}
.h2_c00140{height:3.110063px;}
.h6_c00140{height:5.399414px;}
.h18_c00140{height:6.209326px;}
.h5_c00140{height:9.340986px;}
.h4_c00140{height:12.418652px;}
.h3_c00140{height:15.550313px;}
.h14_c00140{height:18.681973px;}
.h1f_c00140{height:21.759639px;}
.h28_c00140{height:24.891299px;}
.h24_c00140{height:27.968965px;}
.h13_c00140{height:31.100625px;}
.h1d_c00140{height:34.232285px;}
.h1c_c00140{height:37.309951px;}
.h22_c00140{height:40.441611px;}
.h29_c00140{height:43.519277px;}
.h1a_c00140{height:46.650937px;}
.h16_c00140{height:49.782598px;}
.h19_c00140{height:52.860264px;}
.h7_c00140{height:55.991924px;}
.hd_c00140{height:59.069590px;}
.hc_c00140{height:62.201250px;}
.h9_c00140{height:65.332910px;}
.h8_c00140{height:68.410576px;}
.h26_c00140{height:71.542236px;}
.h15_c00140{height:74.619902px;}
.h20_c00140{height:74.962236px;}
.ha_c00140{height:77.751563px;}
.hb_c00140{height:80.883223px;}
.h11_c00140{height:83.960889px;}
.h17_c00140{height:87.092549px;}
.h1e_c00140{height:90.170215px;}
.h10_c00140{height:93.301875px;}
.h27_c00140{height:96.433535px;}
.h21_c00140{height:99.511201px;}
.h1b_c00140{height:102.642861px;}
.h12_c00140{height:105.720527px;}
.h25_c00140{height:111.983848px;}
.h23_c00140{height:118.193174px;}
.hf_c00140{height:121.270840px;}
.he_c00140{height:127.534160px;}
.h2a_c00140{height:133.743486px;}
.h0_c00140{height:1517.190000px;}
.h1_c00140{height:1517.250000px;}
.w0_c00140{width:1090.365000px;}
.w1_c00140{width:1090.500000px;}
.x0_c00140{left:0.000000px;}
.x5_c00140{left:121.830000px;}
.xf3_c00140{left:147.750000px;}
.x4c_c00140{left:157.245000px;}
.xf7_c00140{left:165.885000px;}
.xf4_c00140{left:168.480000px;}
.x4d_c00140{left:171.075000px;}
.xf8_c00140{left:175.395000px;}
.x5c_c00140{left:177.120000px;}
.x4e_c00140{left:181.440000px;}
.x80_c00140{left:184.890000px;}
.x4f_c00140{left:190.080000px;}
.xa8_c00140{left:196.125000px;}
.x81_c00140{left:198.720000px;}
.x5d_c00140{left:203.040000px;}
.x1e_c00140{left:204.765000px;}
.xb4_c00140{left:206.490000px;}
.xed_c00140{left:209.085000px;}
.xae_c00140{left:211.680000px;}
.x50_c00140{left:215.130000px;}
.x89_c00140{left:216.870000px;}
.x6f_c00140{left:218.595000px;}
.x84_c00140{left:221.190000px;}
.xe5_c00140{left:222.915000px;}
.x1f_c00140{left:224.640000px;}
.x70_c00140{left:226.365000px;}
.x7_c00140{left:228.090000px;}
.x61_c00140{left:229.830000px;}
.x27_c00140{left:231.555000px;}
.x45_c00140{left:234.150000px;}
.x20_c00140{left:236.730000px;}
.x8_c00140{left:239.325000px;}
.xda_c00140{left:241.920000px;}
.xba_c00140{left:246.240000px;}
.x99_c00140{left:250.560000px;}
.xdd_c00140{left:253.155000px;}
.xbb_c00140{left:255.750000px;}
.x28_c00140{left:258.330000px;}
.xa4_c00140{left:261.795000px;}
.x7a_c00140{left:265.245000px;}
.x67_c00140{left:268.710000px;}
.xe8_c00140{left:270.435000px;}
.xaf_c00140{left:272.160000px;}
.x38_c00140{left:274.755000px;}
.x51_c00140{left:276.480000px;}
.x9_c00140{left:278.205000px;}
.xf5_c00140{left:279.930000px;}
.xc8_c00140{left:283.395000px;}
.x77_c00140{left:285.120000px;}
.x29_c00140{left:286.845000px;}
.x86_c00140{left:290.310000px;}
.x8a_c00140{left:292.035000px;}
.x21_c00140{left:293.760000px;}
.x56_c00140{left:298.950000px;}
.xc3_c00140{left:300.675000px;}
.xe1_c00140{left:303.270000px;}
.x19_c00140{left:304.995000px;}
.xeb_c00140{left:311.040000px;}
.xb0_c00140{left:324.000000px;}
.x8b_c00140{left:326.595000px;}
.x71_c00140{left:328.320000px;}
.x5e_c00140{left:331.770000px;}
.x9a_c00140{left:333.510000px;}
.xef_c00140{left:335.235000px;}
.x46_c00140{left:339.555000px;}
.xbc_c00140{left:345.600000px;}
.x68_c00140{left:348.195000px;}
.xa9_c00140{left:349.920000px;}
.x3e_c00140{left:351.645000px;}
.x39_c00140{left:354.240000px;}
.xd5_c00140{left:356.835000px;}
.x9f_c00140{left:360.285000px;}
.x5a_c00140{left:362.880000px;}
.x57_c00140{left:365.475000px;}
.x1_c00140{left:367.200000px;}
.x69_c00140{left:371.520000px;}
.x3f_c00140{left:374.970000px;}
.x2_c00140{left:376.710000px;}
.xa0_c00140{left:379.290000px;}
.x82_c00140{left:384.480000px;}
.x90_c00140{left:386.205000px;}
.x14_c00140{left:388.800000px;}
.x72_c00140{left:391.395000px;}
.x62_c00140{left:394.845000px;}
.x78_c00140{left:397.440000px;}
.x94_c00140{left:400.035000px;}
.xb5_c00140{left:401.760000px;}
.xe9_c00140{left:404.355000px;}
.xa_c00140{left:406.950000px;}
.xd7_c00140{left:409.530000px;}
.xbd_c00140{left:411.270000px;}
.xb1_c00140{left:417.315000px;}
.xdb_c00140{left:421.635000px;}
.x8c_c00140{left:423.360000px;}
.xb_c00140{left:429.405000px;}
.x2a_c00140{left:432.000000px;}
.xfe_c00140{left:435.450000px;}
.x7b_c00140{left:437.190000px;}
.x83_c00140{left:444.960000px;}
.x5f_c00140{left:446.685000px;}
.x8d_c00140{left:448.410000px;}
.x79_c00140{left:450.150000px;}
.xe2_c00140{left:453.600000px;}
.x2b_c00140{left:457.050000px;}
.x63_c00140{left:461.370000px;}
.xc_c00140{left:463.965000px;}
.x47_c00140{left:465.690000px;}
.x2c_c00140{left:469.155000px;}
.xb2_c00140{left:470.880000px;}
.xf0_c00140{left:472.605000px;}
.x3a_c00140{left:475.200000px;}
.xd_c00140{left:479.520000px;}
.x40_c00140{left:482.970000px;}
.xff_c00140{left:485.565000px;}
.xd1_c00140{left:489.885000px;}
.x5b_c00140{left:492.480000px;}
.x22_c00140{left:496.800000px;}
.x58_c00140{left:503.715000px;}
.x9c_c00140{left:506.310000px;}
.xbe_c00140{left:508.890000px;}
.x2d_c00140{left:510.630000px;}
.x6_c00140{left:513.210000px;}
.x7c_c00140{left:514.950000px;}
.xc1_c00140{left:519.270000px;}
.x73_c00140{left:521.850000px;}
.xa1_c00140{left:527.040000px;}
.xaa_c00140{left:528.765000px;}
.x8e_c00140{left:531.360000px;}
.xc9_c00140{left:533.955000px;}
.x15_c00140{left:540.870000px;}
.xe_c00140{left:542.595000px;}
.xdc_c00140{left:546.915000px;}
.xd2_c00140{left:551.235000px;}
.x48_c00140{left:552.960000px;}
.x3b_c00140{left:557.280000px;}
.x2e_c00140{left:559.875000px;}
.xb3_c00140{left:562.470000px;}
.xf_c00140{left:565.050000px;}
.xde_c00140{left:568.515000px;}
.x9d_c00140{left:570.240000px;}
.x101_c00140{left:574.560000px;}
.x49_c00140{left:578.010000px;}
.x1a_c00140{left:582.330000px;}
.x3c_c00140{left:584.925000px;}
.x10_c00140{left:586.650000px;}
.x2f_c00140{left:590.115000px;}
.xcc_c00140{left:596.160000px;}
.xa5_c00140{left:598.755000px;}
.x100_c00140{left:600.480000px;}
.xab_c00140{left:603.075000px;}
.xe3_c00140{left:604.800000px;}
.x64_c00140{left:607.395000px;}
.x11_c00140{left:609.120000px;}
.x6b_c00140{left:612.570000px;}
.x16_c00140{left:615.165000px;}
.x87_c00140{left:616.890000px;}
.x30_c00140{left:619.485000px;}
.xc4_c00140{left:622.080000px;}
.x6c_c00140{left:623.805000px;}
.x7d_c00140{left:625.530000px;}
.xcd_c00140{left:628.125000px;}
.x41_c00140{left:634.170000px;}
.x31_c00140{left:636.765000px;}
.x85_c00140{left:638.490000px;}
.x95_c00140{left:641.085000px;}
.xe4_c00140{left:643.680000px;}
.x52_c00140{left:647.130000px;}
.x4a_c00140{left:650.595000px;}
.x32_c00140{left:652.320000px;}
.x9b_c00140{left:654.915000px;}
.xec_c00140{left:656.640000px;}
.xd8_c00140{left:658.365000px;}
.xd3_c00140{left:661.830000px;}
.x1b_c00140{left:665.280000px;}
.xe6_c00140{left:668.730000px;}
.x33_c00140{left:677.370000px;}
.xf1_c00140{left:679.965000px;}
.xc5_c00140{left:681.690000px;}
.x96_c00140{left:687.750000px;}
.xdf_c00140{left:690.330000px;}
.x34_c00140{left:694.650000px;}
.xce_c00140{left:699.840000px;}
.x17_c00140{left:705.885000px;}
.x35_c00140{left:707.610000px;}
.x23_c00140{left:710.205000px;}
.x42_c00140{left:711.930000px;}
.x74_c00140{left:714.525000px;}
.xf2_c00140{left:717.990000px;}
.xea_c00140{left:721.440000px;}
.x88_c00140{left:724.035000px;}
.x91_c00140{left:728.355000px;}
.x3d_c00140{left:730.950000px;}
.x24_c00140{left:734.400000px;}
.x8f_c00140{left:736.995000px;}
.xbf_c00140{left:738.720000px;}
.x18_c00140{left:741.315000px;}
.xa6_c00140{left:743.910000px;}
.x97_c00140{left:747.360000px;}
.xd9_c00140{left:749.085000px;}
.xf9_c00140{left:756.000000px;}
.xa2_c00140{left:759.450000px;}
.xe7_c00140{left:767.235000px;}
.xcf_c00140{left:768.960000px;}
.xa7_c00140{left:770.685000px;}
.xac_c00140{left:773.280000px;}
.xb6_c00140{left:775.875000px;}
.xd0_c00140{left:782.790000px;}
.x53_c00140{left:784.515000px;}
.xc0_c00140{left:787.110000px;}
.xc2_c00140{left:791.430000px;}
.xc6_c00140{left:794.010000px;}
.x4b_c00140{left:797.475000px;}
.x92_c00140{left:803.520000px;}
.xb7_c00140{left:806.115000px;}
.x98_c00140{left:807.840000px;}
.x65_c00140{left:809.565000px;}
.x43_c00140{left:811.290000px;}
.x1c_c00140{left:814.755000px;}
.x54_c00140{left:817.350000px;}
.xa3_c00140{left:819.075000px;}
.x9e_c00140{left:820.800000px;}
.xe0_c00140{left:822.525000px;}
.xee_c00140{left:824.250000px;}
.xad_c00140{left:825.990000px;}
.x1d_c00140{left:829.440000px;}
.x7e_c00140{left:832.035000px;}
.x36_c00140{left:835.485000px;}
.xb8_c00140{left:838.950000px;}
.xca_c00140{left:840.675000px;}
.x55_c00140{left:843.270000px;}
.x103_c00140{left:845.850000px;}
.x59_c00140{left:847.590000px;}
.xb9_c00140{left:850.170000px;}
.x37_c00140{left:851.910000px;}
.x102_c00140{left:854.490000px;}
.x12_c00140{left:860.550000px;}
.x7f_c00140{left:864.000000px;}
.x93_c00140{left:866.595000px;}
.xd4_c00140{left:871.770000px;}
.xd6_c00140{left:873.510000px;}
.x13_c00140{left:875.235000px;}
.xc7_c00140{left:877.830000px;}
.x6d_c00140{left:880.410000px;}
.x75_c00140{left:883.005000px;}
.xf6_c00140{left:885.600000px;}
.x60_c00140{left:888.195000px;}
.x25_c00140{left:889.920000px;}
.x6e_c00140{left:892.515000px;}
.x66_c00140{left:895.110000px;}
.x44_c00140{left:897.690000px;}
.x76_c00140{left:902.880000px;}
.x6a_c00140{left:905.475000px;}
.xfa_c00140{left:907.200000px;}
.x26_c00140{left:913.245000px;}
.xfb_c00140{left:921.885000px;}
.xcb_c00140{left:927.075000px;}
.xfc_c00140{left:938.310000px;}
.xfd_c00140{left:949.530000px;}
.x104_c00140{left:953.850000px;}
.x105_c00140{left:980.640000px;}
.x106_c00140{left:986.685000px;}
.x3_c00140{left:1024.710000px;}
.x4_c00140{left:1035.075000px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.v1_c00140{vertical-align:3.040000pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ws0_c00140{word-spacing:-25.969867pt;}
.ws1_c00140{word-spacing:0.000000pt;}
.fs0_c00140{font-size:3.072000pt;}
.fs4_c00140{font-size:5.333333pt;}
.fs16_c00140{font-size:6.133333pt;}
.fs3_c00140{font-size:9.226667pt;}
.fs2_c00140{font-size:12.266667pt;}
.fs1_c00140{font-size:15.360000pt;}
.fs12_c00140{font-size:18.453333pt;}
.fs1d_c00140{font-size:21.493333pt;}
.fs25_c00140{font-size:24.586667pt;}
.fs22_c00140{font-size:27.626667pt;}
.fs11_c00140{font-size:30.720000pt;}
.fs1b_c00140{font-size:33.813333pt;}
.fs1a_c00140{font-size:36.853333pt;}
.fs20_c00140{font-size:39.946667pt;}
.fs26_c00140{font-size:42.986667pt;}
.fs18_c00140{font-size:46.080000pt;}
.fs14_c00140{font-size:49.173333pt;}
.fs17_c00140{font-size:52.213333pt;}
.fs5_c00140{font-size:55.306667pt;}
.fsb_c00140{font-size:58.346667pt;}
.fsa_c00140{font-size:61.440000pt;}
.fs7_c00140{font-size:64.533333pt;}
.fs6_c00140{font-size:67.573333pt;}
.fs1e_c00140{font-size:70.666667pt;}
.fs13_c00140{font-size:73.706667pt;}
.fs8_c00140{font-size:76.800000pt;}
.fs9_c00140{font-size:79.893333pt;}
.fsf_c00140{font-size:82.933333pt;}
.fs15_c00140{font-size:86.026667pt;}
.fs1c_c00140{font-size:89.066667pt;}
.fse_c00140{font-size:92.160000pt;}
.fs24_c00140{font-size:95.253333pt;}
.fs1f_c00140{font-size:98.293333pt;}
.fs19_c00140{font-size:101.386667pt;}
.fs10_c00140{font-size:104.426667pt;}
.fs23_c00140{font-size:110.613333pt;}
.fs21_c00140{font-size:116.746667pt;}
.fsd_c00140{font-size:119.786667pt;}
.fsc_c00140{font-size:125.973333pt;}
.fs27_c00140{font-size:132.106667pt;}
.y0_c00140{bottom:0.000000pt;}
.y199_c00140{bottom:165.893333pt;}
.y198_c00140{bottom:167.426667pt;}
.y194_c00140{bottom:168.186667pt;}
.y197_c00140{bottom:172.800000pt;}
.y196_c00140{bottom:173.573333pt;}
.y195_c00140{bottom:175.106667pt;}
.y193_c00140{bottom:175.866667pt;}
.y192_c00140{bottom:177.413333pt;}
.y191_c00140{bottom:179.706667pt;}
.y190_c00140{bottom:186.626667pt;}
.y18f_c00140{bottom:187.386667pt;}
.y18d_c00140{bottom:189.693333pt;}
.y188_c00140{bottom:190.466667pt;}
.y18e_c00140{bottom:191.226667pt;}
.y186_c00140{bottom:192.000000pt;}
.y185_c00140{bottom:193.533333pt;}
.y187_c00140{bottom:194.306667pt;}
.y184_c00140{bottom:195.066667pt;}
.y18a_c00140{bottom:195.840000pt;}
.y183_c00140{bottom:197.373333pt;}
.y189_c00140{bottom:198.146667pt;}
.y18c_c00140{bottom:198.906667pt;}
.y18b_c00140{bottom:199.680000pt;}
.y182_c00140{bottom:203.520000pt;}
.y181_c00140{bottom:210.426667pt;}
.y17f_c00140{bottom:212.733333pt;}
.y17d_c00140{bottom:213.506667pt;}
.y17e_c00140{bottom:214.266667pt;}
.y17c_c00140{bottom:216.573333pt;}
.y17b_c00140{bottom:218.106667pt;}
.y17a_c00140{bottom:218.880000pt;}
.y180_c00140{bottom:220.413333pt;}
.y179_c00140{bottom:221.946667pt;}
.y178_c00140{bottom:234.240000pt;}
.y177_c00140{bottom:243.453333pt;}
.y173_c00140{bottom:244.986667pt;}
.y176_c00140{bottom:245.760000pt;}
.y175_c00140{bottom:247.293333pt;}
.y174_c00140{bottom:248.066667pt;}
.y172_c00140{bottom:251.133333pt;}
.y170_c00140{bottom:260.346667pt;}
.y171_c00140{bottom:261.120000pt;}
.y16f_c00140{bottom:261.893333pt;}
.y16c_c00140{bottom:262.653333pt;}
.y16b_c00140{bottom:268.026667pt;}
.y16e_c00140{bottom:270.333333pt;}
.y16d_c00140{bottom:271.106667pt;}
.y169_c00140{bottom:280.320000pt;}
.y168_c00140{bottom:281.093333pt;}
.y166_c00140{bottom:284.160000pt;}
.y165_c00140{bottom:287.226667pt;}
.y167_c00140{bottom:288.773333pt;}
.y16a_c00140{bottom:292.613333pt;}
.y163_c00140{bottom:301.826667pt;}
.y162_c00140{bottom:304.133333pt;}
.y161_c00140{bottom:307.200000pt;}
.y164_c00140{bottom:307.973333pt;}
.y15f_c00140{bottom:311.813333pt;}
.y160_c00140{bottom:312.573333pt;}
.y15e_c00140{bottom:324.866667pt;}
.y15c_c00140{bottom:326.400000pt;}
.y15b_c00140{bottom:328.706667pt;}
.y15a_c00140{bottom:331.013333pt;}
.y15d_c00140{bottom:331.773333pt;}
.y159_c00140{bottom:332.546667pt;}
.y157_c00140{bottom:347.906667pt;}
.y152_c00140{bottom:352.506667pt;}
.y158_c00140{bottom:353.280000pt;}
.y156_c00140{bottom:354.053333pt;}
.y150_c00140{bottom:355.586667pt;}
.y155_c00140{bottom:357.120000pt;}
.y153_c00140{bottom:357.893333pt;}
.y154_c00140{bottom:360.960000pt;}
.y151_c00140{bottom:361.733333pt;}
.y14f_c00140{bottom:369.413333pt;}
.y14e_c00140{bottom:372.480000pt;}
.y14c_c00140{bottom:373.253333pt;}
.y14b_c00140{bottom:375.546667pt;}
.y14d_c00140{bottom:378.626667pt;}
.y14a_c00140{bottom:384.000000pt;}
.y149_c00140{bottom:391.680000pt;}
.y148_c00140{bottom:393.986667pt;}
.y147_c00140{bottom:394.746667pt;}
.y143_c00140{bottom:398.586667pt;}
.y142_c00140{bottom:400.133333pt;}
.y144_c00140{bottom:400.893333pt;}
.y146_c00140{bottom:403.200000pt;}
.y145_c00140{bottom:403.973333pt;}
.y141_c00140{bottom:406.266667pt;}
.y13f_c00140{bottom:417.786667pt;}
.y13e_c00140{bottom:419.333333pt;}
.y13d_c00140{bottom:420.866667pt;}
.y13b_c00140{bottom:423.173333pt;}
.y139_c00140{bottom:423.933333pt;}
.y13c_c00140{bottom:424.706667pt;}
.y140_c00140{bottom:429.306667pt;}
.y13a_c00140{bottom:430.080000pt;}
.y136_c00140{bottom:436.986667pt;}
.y135_c00140{bottom:438.533333pt;}
.y138_c00140{bottom:440.066667pt;}
.y134_c00140{bottom:440.826667pt;}
.y133_c00140{bottom:443.133333pt;}
.y131_c00140{bottom:443.906667pt;}
.y132_c00140{bottom:448.506667pt;}
.y130_c00140{bottom:449.280000pt;}
.y137_c00140{bottom:455.426667pt;}
.y12e_c00140{bottom:460.026667pt;}
.y12d_c00140{bottom:460.800000pt;}
.y12c_c00140{bottom:463.106667pt;}
.y12b_c00140{bottom:463.866667pt;}
.y12f_c00140{bottom:465.413333pt;}
.y127_c00140{bottom:466.173333pt;}
.y12a_c00140{bottom:469.253333pt;}
.y125_c00140{bottom:470.786667pt;}
.y129_c00140{bottom:471.546667pt;}
.y128_c00140{bottom:473.093333pt;}
.y126_c00140{bottom:473.853333pt;}
.y124_c00140{bottom:476.933333pt;}
.y120_c00140{bottom:484.613333pt;}
.y11f_c00140{bottom:485.373333pt;}
.y11d_c00140{bottom:486.146667pt;}
.y11e_c00140{bottom:486.906667pt;}
.y123_c00140{bottom:487.680000pt;}
.y11c_c00140{bottom:488.453333pt;}
.y121_c00140{bottom:489.213333pt;}
.y122_c00140{bottom:489.986667pt;}
.y19c_c00140{bottom:503.813333pt;}
.y117_c00140{bottom:504.573333pt;}
.y116_c00140{bottom:506.106667pt;}
.y113_c00140{bottom:507.653333pt;}
.y114_c00140{bottom:508.413333pt;}
.y118_c00140{bottom:509.186667pt;}
.y115_c00140{bottom:512.253333pt;}
.y119_c00140{bottom:513.786667pt;}
.y112_c00140{bottom:516.866667pt;}
.y111_c00140{bottom:518.400000pt;}
.y11b_c00140{bottom:519.173333pt;}
.y11a_c00140{bottom:522.240000pt;}
.y110_c00140{bottom:525.306667pt;}
.y10e_c00140{bottom:527.613333pt;}
.y10d_c00140{bottom:529.146667pt;}
.y10c_c00140{bottom:530.693333pt;}
.y10b_c00140{bottom:531.453333pt;}
.y108_c00140{bottom:532.986667pt;}
.y109_c00140{bottom:533.760000pt;}
.y10a_c00140{bottom:537.600000pt;}
.y10f_c00140{bottom:539.133333pt;}
.y106_c00140{bottom:551.426667pt;}
.y103_c00140{bottom:555.266667pt;}
.y102_c00140{bottom:556.026667pt;}
.y104_c00140{bottom:556.800000pt;}
.y107_c00140{bottom:558.333333pt;}
.y105_c00140{bottom:560.640000pt;}
.yfe_c00140{bottom:572.933333pt;}
.yff_c00140{bottom:573.693333pt;}
.y101_c00140{bottom:574.466667pt;}
.y100_c00140{bottom:576.000000pt;}
.yfc_c00140{bottom:577.533333pt;}
.yfa_c00140{bottom:578.306667pt;}
.yf8_c00140{bottom:579.840000pt;}
.yfd_c00140{bottom:582.906667pt;}
.yfb_c00140{bottom:583.680000pt;}
.yf9_c00140{bottom:586.746667pt;}
.yf7_c00140{bottom:595.973333pt;}
.yf3_c00140{bottom:599.040000pt;}
.yf5_c00140{bottom:603.653333pt;}
.yf1_c00140{bottom:605.186667pt;}
.yee_c00140{bottom:605.946667pt;}
.yf0_c00140{bottom:608.253333pt;}
.yf6_c00140{bottom:609.026667pt;}
.yef_c00140{bottom:612.093333pt;}
.yf4_c00140{bottom:613.626667pt;}
.yeb_c00140{bottom:614.400000pt;}
.yed_c00140{bottom:615.173333pt;}
.yec_c00140{bottom:616.706667pt;}
.yf2_c00140{bottom:618.240000pt;}
.ye8_c00140{bottom:622.080000pt;}
.ye9_c00140{bottom:622.853333pt;}
.ye6_c00140{bottom:623.613333pt;}
.ye5_c00140{bottom:624.386667pt;}
.ye7_c00140{bottom:625.146667pt;}
.yea_c00140{bottom:626.693333pt;}
.ye0_c00140{bottom:638.973333pt;}
.ye1_c00140{bottom:639.746667pt;}
.ye3_c00140{bottom:642.053333pt;}
.yde_c00140{bottom:642.813333pt;}
.ydc_c00140{bottom:643.586667pt;}
.ye4_c00140{bottom:644.346667pt;}
.ye2_c00140{bottom:645.120000pt;}
.ydf_c00140{bottom:647.426667pt;}
.ydd_c00140{bottom:648.186667pt;}
.yda_c00140{bottom:653.573333pt;}
.ydb_c00140{bottom:658.946667pt;}
.yd9_c00140{bottom:664.320000pt;}
.yd6_c00140{bottom:665.093333pt;}
.yd4_c00140{bottom:665.853333pt;}
.yd3_c00140{bottom:667.386667pt;}
.yd5_c00140{bottom:668.160000pt;}
.yd8_c00140{bottom:668.933333pt;}
.yd7_c00140{bottom:669.693333pt;}
.yd1_c00140{bottom:681.986667pt;}
.ycf_c00140{bottom:683.520000pt;}
.yd2_c00140{bottom:686.586667pt;}
.yd0_c00140{bottom:688.893333pt;}
.ycd_c00140{bottom:691.200000pt;}
.ycc_c00140{bottom:692.733333pt;}
.ycb_c00140{bottom:693.506667pt;}
.yce_c00140{bottom:694.266667pt;}
.yca_c00140{bottom:704.253333pt;}
.yc9_c00140{bottom:706.560000pt;}
.yc8_c00140{bottom:707.333333pt;}
.yc7_c00140{bottom:708.093333pt;}
.yc5_c00140{bottom:709.626667pt;}
.yc6_c00140{bottom:710.400000pt;}
.yc3_c00140{bottom:711.173333pt;}
.yc4_c00140{bottom:715.773333pt;}
.yc2_c00140{bottom:724.986667pt;}
.yc1_c00140{bottom:728.826667pt;}
.yc0_c00140{bottom:729.600000pt;}
.ybe_c00140{bottom:730.373333pt;}
.ybd_c00140{bottom:731.133333pt;}
.ybc_c00140{bottom:732.666667pt;}
.ybf_c00140{bottom:733.440000pt;}
.ybb_c00140{bottom:746.493333pt;}
.yb8_c00140{bottom:748.800000pt;}
.yb5_c00140{bottom:751.866667pt;}
.yb6_c00140{bottom:752.640000pt;}
.yb4_c00140{bottom:753.413333pt;}
.yba_c00140{bottom:754.946667pt;}
.yb9_c00140{bottom:755.706667pt;}
.yb7_c00140{bottom:758.013333pt;}
.yb3_c00140{bottom:759.546667pt;}
.yb2_c00140{bottom:770.306667pt;}
.yb0_c00140{bottom:771.066667pt;}
.yaf_c00140{bottom:771.840000pt;}
.yb1_c00140{bottom:773.373333pt;}
.yae_c00140{bottom:774.146667pt;}
.yad_c00140{bottom:774.906667pt;}
.yac_c00140{bottom:777.213333pt;}
.yaa_c00140{bottom:792.573333pt;}
.yab_c00140{bottom:794.106667pt;}
.ya6_c00140{bottom:796.413333pt;}
.ya4_c00140{bottom:797.186667pt;}
.ya7_c00140{bottom:797.946667pt;}
.ya9_c00140{bottom:800.253333pt;}
.ya8_c00140{bottom:801.026667pt;}
.ya2_c00140{bottom:801.786667pt;}
.ya1_c00140{bottom:802.560000pt;}
.ya5_c00140{bottom:803.333333pt;}
.ya3_c00140{bottom:804.866667pt;}
.ya0_c00140{bottom:814.853333pt;}
.y9f_c00140{bottom:817.146667pt;}
.y9d_c00140{bottom:817.920000pt;}
.y9a_c00140{bottom:821.760000pt;}
.y9c_c00140{bottom:822.533333pt;}
.y9b_c00140{bottom:823.293333pt;}
.y9e_c00140{bottom:824.066667pt;}
.y98_c00140{bottom:837.120000pt;}
.y97_c00140{bottom:839.426667pt;}
.y96_c00140{bottom:841.733333pt;}
.y95_c00140{bottom:847.866667pt;}
.y99_c00140{bottom:853.253333pt;}
.y92_c00140{bottom:857.853333pt;}
.y94_c00140{bottom:861.693333pt;}
.y90_c00140{bottom:863.226667pt;}
.y8e_c00140{bottom:864.773333pt;}
.y8f_c00140{bottom:865.533333pt;}
.y8d_c00140{bottom:868.613333pt;}
.y91_c00140{bottom:870.906667pt;}
.y8c_c00140{bottom:873.213333pt;}
.y8b_c00140{bottom:873.986667pt;}
.y93_c00140{bottom:875.520000pt;}
.y88_c00140{bottom:882.426667pt;}
.y89_c00140{bottom:885.506667pt;}
.y85_c00140{bottom:886.266667pt;}
.y86_c00140{bottom:887.040000pt;}
.y84_c00140{bottom:889.346667pt;}
.y83_c00140{bottom:890.106667pt;}
.y87_c00140{bottom:890.880000pt;}
.y8a_c00140{bottom:891.653333pt;}
.y82_c00140{bottom:905.466667pt;}
.y81_c00140{bottom:906.240000pt;}
.y80_c00140{bottom:907.773333pt;}
.y7e_c00140{bottom:909.306667pt;}
.y7c_c00140{bottom:910.853333pt;}
.y7d_c00140{bottom:914.693333pt;}
.y7f_c00140{bottom:915.453333pt;}
.y79_c00140{bottom:926.973333pt;}
.y78_c00140{bottom:928.506667pt;}
.y7b_c00140{bottom:931.586667pt;}
.y75_c00140{bottom:932.346667pt;}
.y76_c00140{bottom:933.120000pt;}
.y7a_c00140{bottom:934.653333pt;}
.y77_c00140{bottom:935.426667pt;}
.y73_c00140{bottom:936.960000pt;}
.y74_c00140{bottom:937.733333pt;}
.y19b_c00140{bottom:940.026667pt;}
.y71_c00140{bottom:949.253333pt;}
.y6d_c00140{bottom:951.546667pt;}
.y6f_c00140{bottom:953.853333pt;}
.y72_c00140{bottom:957.693333pt;}
.y70_c00140{bottom:958.466667pt;}
.y6e_c00140{bottom:959.226667pt;}
.y6c_c00140{bottom:963.840000pt;}
.y69_c00140{bottom:971.520000pt;}
.y68_c00140{bottom:974.586667pt;}
.y6a_c00140{bottom:976.893333pt;}
.y6b_c00140{bottom:978.426667pt;}
.y65_c00140{bottom:979.200000pt;}
.y66_c00140{bottom:981.506667pt;}
.y67_c00140{bottom:982.266667pt;}
.y64_c00140{bottom:983.040000pt;}
.y62_c00140{bottom:993.026667pt;}
.y63_c00140{bottom:994.560000pt;}
.y61_c00140{bottom:996.093333pt;}
.y60_c00140{bottom:997.626667pt;}
.y5f_c00140{bottom:998.400000pt;}
.y5c_c00140{bottom:1016.066667pt;}
.y5d_c00140{bottom:1018.373333pt;}
.y5b_c00140{bottom:1019.906667pt;}
.y5a_c00140{bottom:1021.440000pt;}
.y59_c00140{bottom:1022.973333pt;}
.y5e_c00140{bottom:1029.893333pt;}
.y58_c00140{bottom:1033.733333pt;}
.y57_c00140{bottom:1036.026667pt;}
.y56_c00140{bottom:1041.413333pt;}
.y55_c00140{bottom:1042.173333pt;}
.y53_c00140{bottom:1061.373333pt;}
.y54_c00140{bottom:1062.146667pt;}
.y4d_c00140{bottom:1062.906667pt;}
.y50_c00140{bottom:1064.453333pt;}
.y51_c00140{bottom:1065.986667pt;}
.y52_c00140{bottom:1066.746667pt;}
.y4f_c00140{bottom:1067.520000pt;}
.y4e_c00140{bottom:1069.053333pt;}
.y4c_c00140{bottom:1069.826667pt;}
.y4b_c00140{bottom:1070.586667pt;}
.y48_c00140{bottom:1079.040000pt;}
.y47_c00140{bottom:1082.880000pt;}
.y4a_c00140{bottom:1084.413333pt;}
.y41_c00140{bottom:1088.253333pt;}
.y43_c00140{bottom:1089.026667pt;}
.y44_c00140{bottom:1091.333333pt;}
.y46_c00140{bottom:1092.093333pt;}
.y45_c00140{bottom:1092.866667pt;}
.y42_c00140{bottom:1093.626667pt;}
.y49_c00140{bottom:1095.173333pt;}
.y3_c00140{bottom:1104.386667pt;}
.y3f_c00140{bottom:1105.146667pt;}
.y4_c00140{bottom:1106.693333pt;}
.y3b_c00140{bottom:1107.453333pt;}
.y3c_c00140{bottom:1108.226667pt;}
.y40_c00140{bottom:1109.760000pt;}
.y3e_c00140{bottom:1112.826667pt;}
.y3d_c00140{bottom:1113.600000pt;}
.y3a_c00140{bottom:1115.133333pt;}
.y38_c00140{bottom:1115.906667pt;}
.y39_c00140{bottom:1116.666667pt;}
.y37_c00140{bottom:1126.653333pt;}
.y36_c00140{bottom:1128.960000pt;}
.y34_c00140{bottom:1129.733333pt;}
.y35_c00140{bottom:1132.800000pt;}
.y31_c00140{bottom:1133.573333pt;}
.y33_c00140{bottom:1135.106667pt;}
.y32_c00140{bottom:1135.866667pt;}
.y30_c00140{bottom:1139.706667pt;}
.y19a_c00140{bottom:1143.546667pt;}
.y2e_c00140{bottom:1150.466667pt;}
.y2b_c00140{bottom:1152.000000pt;}
.y29_c00140{bottom:1152.773333pt;}
.y27_c00140{bottom:1153.533333pt;}
.y2f_c00140{bottom:1155.066667pt;}
.y2a_c00140{bottom:1155.840000pt;}
.y2d_c00140{bottom:1157.373333pt;}
.y2c_c00140{bottom:1158.146667pt;}
.y26_c00140{bottom:1158.906667pt;}
.y28_c00140{bottom:1159.680000pt;}
.y25_c00140{bottom:1161.213333pt;}
.y24_c00140{bottom:1161.986667pt;}
.y23_c00140{bottom:1165.053333pt;}
.y20_c00140{bottom:1172.733333pt;}
.y1e_c00140{bottom:1174.266667pt;}
.y1d_c00140{bottom:1175.813333pt;}
.y1c_c00140{bottom:1176.573333pt;}
.y1b_c00140{bottom:1177.346667pt;}
.y22_c00140{bottom:1178.106667pt;}
.y19_c00140{bottom:1178.880000pt;}
.y1f_c00140{bottom:1179.653333pt;}
.y1a_c00140{bottom:1184.253333pt;}
.y18_c00140{bottom:1185.026667pt;}
.y21_c00140{bottom:1188.093333pt;}
.y17_c00140{bottom:1195.013333pt;}
.y11_c00140{bottom:1196.546667pt;}
.y16_c00140{bottom:1197.306667pt;}
.y10_c00140{bottom:1198.080000pt;}
.y13_c00140{bottom:1198.853333pt;}
.y15_c00140{bottom:1199.613333pt;}
.y14_c00140{bottom:1201.146667pt;}
.y12_c00140{bottom:1201.920000pt;}
.y5_c00140{bottom:1207.293333pt;}
.y8_c00140{bottom:1228.800000pt;}
.yc_c00140{bottom:1229.573333pt;}
.yd_c00140{bottom:1230.333333pt;}
.ya_c00140{bottom:1231.106667pt;}
.y9_c00140{bottom:1231.866667pt;}
.yb_c00140{bottom:1234.946667pt;}
.yf_c00140{bottom:1238.786667pt;}
.ye_c00140{bottom:1241.093333pt;}
.y7_c00140{bottom:1244.160000pt;}
.y6_c00140{bottom:1258.746667pt;}
.y1_c00140{bottom:1282.560000pt;}
.y2_c00140{bottom:1283.333333pt;}
.h2_c00140{height:2.764500pt;}
.h6_c00140{height:4.799479pt;}
.h18_c00140{height:5.519401pt;}
.h5_c00140{height:8.303099pt;}
.h4_c00140{height:11.038802pt;}
.h3_c00140{height:13.822500pt;}
.h14_c00140{height:16.606198pt;}
.h1f_c00140{height:19.341901pt;}
.h28_c00140{height:22.125599pt;}
.h24_c00140{height:24.861302pt;}
.h13_c00140{height:27.645000pt;}
.h1d_c00140{height:30.428698pt;}
.h1c_c00140{height:33.164401pt;}
.h22_c00140{height:35.948099pt;}
.h29_c00140{height:38.683802pt;}
.h1a_c00140{height:41.467500pt;}
.h16_c00140{height:44.251198pt;}
.h19_c00140{height:46.986901pt;}
.h7_c00140{height:49.770599pt;}
.hd_c00140{height:52.506302pt;}
.hc_c00140{height:55.290000pt;}
.h9_c00140{height:58.073698pt;}
.h8_c00140{height:60.809401pt;}
.h26_c00140{height:63.593099pt;}
.h15_c00140{height:66.328802pt;}
.h20_c00140{height:66.633099pt;}
.ha_c00140{height:69.112500pt;}
.hb_c00140{height:71.896198pt;}
.h11_c00140{height:74.631901pt;}
.h17_c00140{height:77.415599pt;}
.h1e_c00140{height:80.151302pt;}
.h10_c00140{height:82.935000pt;}
.h27_c00140{height:85.718698pt;}
.h21_c00140{height:88.454401pt;}
.h1b_c00140{height:91.238099pt;}
.h12_c00140{height:93.973802pt;}
.h25_c00140{height:99.541198pt;}
.h23_c00140{height:105.060599pt;}
.hf_c00140{height:107.796302pt;}
.he_c00140{height:113.363698pt;}
.h2a_c00140{height:118.883099pt;}
.h0_c00140{height:1348.613333pt;}
.h1_c00140{height:1348.666667pt;}
.w0_c00140{width:969.213333pt;}
.w1_c00140{width:969.333333pt;}
.x0_c00140{left:0.000000pt;}
.x5_c00140{left:108.293333pt;}
.xf3_c00140{left:131.333333pt;}
.x4c_c00140{left:139.773333pt;}
.xf7_c00140{left:147.453333pt;}
.xf4_c00140{left:149.760000pt;}
.x4d_c00140{left:152.066667pt;}
.xf8_c00140{left:155.906667pt;}
.x5c_c00140{left:157.440000pt;}
.x4e_c00140{left:161.280000pt;}
.x80_c00140{left:164.346667pt;}
.x4f_c00140{left:168.960000pt;}
.xa8_c00140{left:174.333333pt;}
.x81_c00140{left:176.640000pt;}
.x5d_c00140{left:180.480000pt;}
.x1e_c00140{left:182.013333pt;}
.xb4_c00140{left:183.546667pt;}
.xed_c00140{left:185.853333pt;}
.xae_c00140{left:188.160000pt;}
.x50_c00140{left:191.226667pt;}
.x89_c00140{left:192.773333pt;}
.x6f_c00140{left:194.306667pt;}
.x84_c00140{left:196.613333pt;}
.xe5_c00140{left:198.146667pt;}
.x1f_c00140{left:199.680000pt;}
.x70_c00140{left:201.213333pt;}
.x7_c00140{left:202.746667pt;}
.x61_c00140{left:204.293333pt;}
.x27_c00140{left:205.826667pt;}
.x45_c00140{left:208.133333pt;}
.x20_c00140{left:210.426667pt;}
.x8_c00140{left:212.733333pt;}
.xda_c00140{left:215.040000pt;}
.xba_c00140{left:218.880000pt;}
.x99_c00140{left:222.720000pt;}
.xdd_c00140{left:225.026667pt;}
.xbb_c00140{left:227.333333pt;}
.x28_c00140{left:229.626667pt;}
.xa4_c00140{left:232.706667pt;}
.x7a_c00140{left:235.773333pt;}
.x67_c00140{left:238.853333pt;}
.xe8_c00140{left:240.386667pt;}
.xaf_c00140{left:241.920000pt;}
.x38_c00140{left:244.226667pt;}
.x51_c00140{left:245.760000pt;}
.x9_c00140{left:247.293333pt;}
.xf5_c00140{left:248.826667pt;}
.xc8_c00140{left:251.906667pt;}
.x77_c00140{left:253.440000pt;}
.x29_c00140{left:254.973333pt;}
.x86_c00140{left:258.053333pt;}
.x8a_c00140{left:259.586667pt;}
.x21_c00140{left:261.120000pt;}
.x56_c00140{left:265.733333pt;}
.xc3_c00140{left:267.266667pt;}
.xe1_c00140{left:269.573333pt;}
.x19_c00140{left:271.106667pt;}
.xeb_c00140{left:276.480000pt;}
.xb0_c00140{left:288.000000pt;}
.x8b_c00140{left:290.306667pt;}
.x71_c00140{left:291.840000pt;}
.x5e_c00140{left:294.906667pt;}
.x9a_c00140{left:296.453333pt;}
.xef_c00140{left:297.986667pt;}
.x46_c00140{left:301.826667pt;}
.xbc_c00140{left:307.200000pt;}
.x68_c00140{left:309.506667pt;}
.xa9_c00140{left:311.040000pt;}
.x3e_c00140{left:312.573333pt;}
.x39_c00140{left:314.880000pt;}
.xd5_c00140{left:317.186667pt;}
.x9f_c00140{left:320.253333pt;}
.x5a_c00140{left:322.560000pt;}
.x57_c00140{left:324.866667pt;}
.x1_c00140{left:326.400000pt;}
.x69_c00140{left:330.240000pt;}
.x3f_c00140{left:333.306667pt;}
.x2_c00140{left:334.853333pt;}
.xa0_c00140{left:337.146667pt;}
.x82_c00140{left:341.760000pt;}
.x90_c00140{left:343.293333pt;}
.x14_c00140{left:345.600000pt;}
.x72_c00140{left:347.906667pt;}
.x62_c00140{left:350.973333pt;}
.x78_c00140{left:353.280000pt;}
.x94_c00140{left:355.586667pt;}
.xb5_c00140{left:357.120000pt;}
.xe9_c00140{left:359.426667pt;}
.xa_c00140{left:361.733333pt;}
.xd7_c00140{left:364.026667pt;}
.xbd_c00140{left:365.573333pt;}
.xb1_c00140{left:370.946667pt;}
.xdb_c00140{left:374.786667pt;}
.x8c_c00140{left:376.320000pt;}
.xb_c00140{left:381.693333pt;}
.x2a_c00140{left:384.000000pt;}
.xfe_c00140{left:387.066667pt;}
.x7b_c00140{left:388.613333pt;}
.x83_c00140{left:395.520000pt;}
.x5f_c00140{left:397.053333pt;}
.x8d_c00140{left:398.586667pt;}
.x79_c00140{left:400.133333pt;}
.xe2_c00140{left:403.200000pt;}
.x2b_c00140{left:406.266667pt;}
.x63_c00140{left:410.106667pt;}
.xc_c00140{left:412.413333pt;}
.x47_c00140{left:413.946667pt;}
.x2c_c00140{left:417.026667pt;}
.xb2_c00140{left:418.560000pt;}
.xf0_c00140{left:420.093333pt;}
.x3a_c00140{left:422.400000pt;}
.xd_c00140{left:426.240000pt;}
.x40_c00140{left:429.306667pt;}
.xff_c00140{left:431.613333pt;}
.xd1_c00140{left:435.453333pt;}
.x5b_c00140{left:437.760000pt;}
.x22_c00140{left:441.600000pt;}
.x58_c00140{left:447.746667pt;}
.x9c_c00140{left:450.053333pt;}
.xbe_c00140{left:452.346667pt;}
.x2d_c00140{left:453.893333pt;}
.x6_c00140{left:456.186667pt;}
.x7c_c00140{left:457.733333pt;}
.xc1_c00140{left:461.573333pt;}
.x73_c00140{left:463.866667pt;}
.xa1_c00140{left:468.480000pt;}
.xaa_c00140{left:470.013333pt;}
.x8e_c00140{left:472.320000pt;}
.xc9_c00140{left:474.626667pt;}
.x15_c00140{left:480.773333pt;}
.xe_c00140{left:482.306667pt;}
.xdc_c00140{left:486.146667pt;}
.xd2_c00140{left:489.986667pt;}
.x48_c00140{left:491.520000pt;}
.x3b_c00140{left:495.360000pt;}
.x2e_c00140{left:497.666667pt;}
.xb3_c00140{left:499.973333pt;}
.xf_c00140{left:502.266667pt;}
.xde_c00140{left:505.346667pt;}
.x9d_c00140{left:506.880000pt;}
.x101_c00140{left:510.720000pt;}
.x49_c00140{left:513.786667pt;}
.x1a_c00140{left:517.626667pt;}
.x3c_c00140{left:519.933333pt;}
.x10_c00140{left:521.466667pt;}
.x2f_c00140{left:524.546667pt;}
.xcc_c00140{left:529.920000pt;}
.xa5_c00140{left:532.226667pt;}
.x100_c00140{left:533.760000pt;}
.xab_c00140{left:536.066667pt;}
.xe3_c00140{left:537.600000pt;}
.x64_c00140{left:539.906667pt;}
.x11_c00140{left:541.440000pt;}
.x6b_c00140{left:544.506667pt;}
.x16_c00140{left:546.813333pt;}
.x87_c00140{left:548.346667pt;}
.x30_c00140{left:550.653333pt;}
.xc4_c00140{left:552.960000pt;}
.x6c_c00140{left:554.493333pt;}
.x7d_c00140{left:556.026667pt;}
.xcd_c00140{left:558.333333pt;}
.x41_c00140{left:563.706667pt;}
.x31_c00140{left:566.013333pt;}
.x85_c00140{left:567.546667pt;}
.x95_c00140{left:569.853333pt;}
.xe4_c00140{left:572.160000pt;}
.x52_c00140{left:575.226667pt;}
.x4a_c00140{left:578.306667pt;}
.x32_c00140{left:579.840000pt;}
.x9b_c00140{left:582.146667pt;}
.xec_c00140{left:583.680000pt;}
.xd8_c00140{left:585.213333pt;}
.xd3_c00140{left:588.293333pt;}
.x1b_c00140{left:591.360000pt;}
.xe6_c00140{left:594.426667pt;}
.x33_c00140{left:602.106667pt;}
.xf1_c00140{left:604.413333pt;}
.xc5_c00140{left:605.946667pt;}
.x96_c00140{left:611.333333pt;}
.xdf_c00140{left:613.626667pt;}
.x34_c00140{left:617.466667pt;}
.xce_c00140{left:622.080000pt;}
.x17_c00140{left:627.453333pt;}
.x35_c00140{left:628.986667pt;}
.x23_c00140{left:631.293333pt;}
.x42_c00140{left:632.826667pt;}
.x74_c00140{left:635.133333pt;}
.xf2_c00140{left:638.213333pt;}
.xea_c00140{left:641.280000pt;}
.x88_c00140{left:643.586667pt;}
.x91_c00140{left:647.426667pt;}
.x3d_c00140{left:649.733333pt;}
.x24_c00140{left:652.800000pt;}
.x8f_c00140{left:655.106667pt;}
.xbf_c00140{left:656.640000pt;}
.x18_c00140{left:658.946667pt;}
.xa6_c00140{left:661.253333pt;}
.x97_c00140{left:664.320000pt;}
.xd9_c00140{left:665.853333pt;}
.xf9_c00140{left:672.000000pt;}
.xa2_c00140{left:675.066667pt;}
.xe7_c00140{left:681.986667pt;}
.xcf_c00140{left:683.520000pt;}
.xa7_c00140{left:685.053333pt;}
.xac_c00140{left:687.360000pt;}
.xb6_c00140{left:689.666667pt;}
.xd0_c00140{left:695.813333pt;}
.x53_c00140{left:697.346667pt;}
.xc0_c00140{left:699.653333pt;}
.xc2_c00140{left:703.493333pt;}
.xc6_c00140{left:705.786667pt;}
.x4b_c00140{left:708.866667pt;}
.x92_c00140{left:714.240000pt;}
.xb7_c00140{left:716.546667pt;}
.x98_c00140{left:718.080000pt;}
.x65_c00140{left:719.613333pt;}
.x43_c00140{left:721.146667pt;}
.x1c_c00140{left:724.226667pt;}
.x54_c00140{left:726.533333pt;}
.xa3_c00140{left:728.066667pt;}
.x9e_c00140{left:729.600000pt;}
.xe0_c00140{left:731.133333pt;}
.xee_c00140{left:732.666667pt;}
.xad_c00140{left:734.213333pt;}
.x1d_c00140{left:737.280000pt;}
.x7e_c00140{left:739.586667pt;}
.x36_c00140{left:742.653333pt;}
.xb8_c00140{left:745.733333pt;}
.xca_c00140{left:747.266667pt;}
.x55_c00140{left:749.573333pt;}
.x103_c00140{left:751.866667pt;}
.x59_c00140{left:753.413333pt;}
.xb9_c00140{left:755.706667pt;}
.x37_c00140{left:757.253333pt;}
.x102_c00140{left:759.546667pt;}
.x12_c00140{left:764.933333pt;}
.x7f_c00140{left:768.000000pt;}
.x93_c00140{left:770.306667pt;}
.xd4_c00140{left:774.906667pt;}
.xd6_c00140{left:776.453333pt;}
.x13_c00140{left:777.986667pt;}
.xc7_c00140{left:780.293333pt;}
.x6d_c00140{left:782.586667pt;}
.x75_c00140{left:784.893333pt;}
.xf6_c00140{left:787.200000pt;}
.x60_c00140{left:789.506667pt;}
.x25_c00140{left:791.040000pt;}
.x6e_c00140{left:793.346667pt;}
.x66_c00140{left:795.653333pt;}
.x44_c00140{left:797.946667pt;}
.x76_c00140{left:802.560000pt;}
.x6a_c00140{left:804.866667pt;}
.xfa_c00140{left:806.400000pt;}
.x26_c00140{left:811.773333pt;}
.xfb_c00140{left:819.453333pt;}
.xcb_c00140{left:824.066667pt;}
.xfc_c00140{left:834.053333pt;}
.xfd_c00140{left:844.026667pt;}
.x104_c00140{left:847.866667pt;}
.x105_c00140{left:871.680000pt;}
.x106_c00140{left:877.053333pt;}
.x3_c00140{left:910.853333pt;}
.x4_c00140{left:920.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28834c8d48b22d227d5ed6eb.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.109863;font-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_c00141{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m99_c00141{transform:matrix(0.044500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044500,0.000000,0.000000,0.250000,0,0);}
.m143_c00141{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m163_c00141{transform:matrix(0.076150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076150,0.000000,0.000000,0.250000,0,0);}
.mc8_c00141{transform:matrix(0.083675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083675,0.000000,0.000000,0.250000,0,0);}
.m166_c00141{transform:matrix(0.084975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084975,0.000000,0.000000,0.250000,0,0);}
.mb8_c00141{transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);}
.m159_c00141{transform:matrix(0.092475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092475,0.000000,0.000000,0.250000,0,0);}
.m9b_c00141{transform:matrix(0.092725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092725,0.000000,0.000000,0.250000,0,0);}
.m92_c00141{transform:matrix(0.103375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103375,0.000000,0.000000,0.250000,0,0);}
.m9f_c00141{transform:matrix(0.107400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107400,0.000000,0.000000,0.250000,0,0);}
.mf3_c00141{transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);}
.m167_c00141{transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00141{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m9d_c00141{transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);}
.m15e_c00141{transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);}
.m169_c00141{transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);}
.m96_c00141{transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);}
.m11e_c00141{transform:matrix(0.121025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121025,0.000000,0.000000,0.250000,0,0);}
.m15f_c00141{transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);}
.m13b_c00141{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00141{transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);}
.m95_c00141{transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);}
.m137_c00141{transform:matrix(0.128350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128350,0.000000,0.000000,0.250000,0,0);}
.mf5_c00141{transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);}
.m161_c00141{transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);}
.m6b_c00141{transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);}
.m8f_c00141{transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);}
.m15c_c00141{transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);}
.m129_c00141{transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);}
.m131_c00141{transform:matrix(0.132925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132925,0.000000,0.000000,0.250000,0,0);}
.m11a_c00141{transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);}
.me8_c00141{transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);}
.m14f_c00141{transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);}
.m134_c00141{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m162_c00141{transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);}
.m11c_c00141{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.m51_c00141{transform:matrix(0.138100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138100,0.000000,0.000000,0.250000,0,0);}
.m45_c00141{transform:matrix(0.138275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138275,0.000000,0.000000,0.250000,0,0);}
.m160_c00141{transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);}
.mf1_c00141{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m140_c00141{transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);}
.mb0_c00141{transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);}
.m138_c00141{transform:matrix(0.140325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140325,0.000000,0.000000,0.250000,0,0);}
.m12d_c00141{transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);}
.m60_c00141{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m46_c00141{transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);}
.m164_c00141{transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);}
.mf0_c00141{transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);}
.m5b_c00141{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00141{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.m1e_c00141{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);}
.m123_c00141{transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);}
.m94_c00141{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);}
.m165_c00141{transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);}
.m8e_c00141{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.m2d_c00141{transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);}
.m135_c00141{transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);}
.m100_c00141{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m61_c00141{transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);}
.m49_c00141{transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);}
.m11b_c00141{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.m1f_c00141{transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);}
.m152_c00141{transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);}
.md2_c00141{transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);}
.m150_c00141{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);}
.md1_c00141{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.mf2_c00141{transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);}
.m4_c00141{transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);}
.m139_c00141{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00141{transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);}
.m117_c00141{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.m9e_c00141{transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);}
.m103_c00141{transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);}
.m6c_c00141{transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);}
.m15a_c00141{transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);}
.me9_c00141{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.m26_c00141{transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);}
.mad_c00141{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m69_c00141{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m76_c00141{transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);}
.m15d_c00141{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);}
.mea_c00141{transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);}
.mae_c00141{transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);}
.m63_c00141{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m127_c00141{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.maf_c00141{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.m132_c00141{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00141{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.mb6_c00141{transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);}
.m8d_c00141{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);}
.m58_c00141{transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);}
.m12f_c00141{transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);}
.m54_c00141{transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);}
.m74_c00141{transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);}
.ma7_c00141{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00141{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m0_c00141{transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);}
.m91_c00141{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.mca_c00141{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.me7_c00141{transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);}
.m3d_c00141{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m4c_c00141{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m62_c00141{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m12c_c00141{transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);}
.m14b_c00141{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.m3b_c00141{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m6_c00141{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.mff_c00141{transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);}
.ma5_c00141{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m33_c00141{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);}
.mec_c00141{transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);}
.m50_c00141{transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);}
.m44_c00141{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.mf8_c00141{transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);}
.m7b_c00141{transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);}
.m32_c00141{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.mef_c00141{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m64_c00141{transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);}
.m8c_c00141{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m11f_c00141{transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);}
.m10f_c00141{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.me5_c00141{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m20_c00141{transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);}
.maa_c00141{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m14e_c00141{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);}
.mde_c00141{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);}
.m12b_c00141{transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);}
.m5a_c00141{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.m80_c00141{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);}
.med_c00141{transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);}
.mf4_c00141{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.m113_c00141{transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);}
.mb3_c00141{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.m154_c00141{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.m10a_c00141{transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);}
.m41_c00141{transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);}
.m66_c00141{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);}
.mb4_c00141{transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);}
.mb5_c00141{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m124_c00141{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m36_c00141{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m37_c00141{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m7f_c00141{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);}
.m101_c00141{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);}
.m38_c00141{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);}
.mee_c00141{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m14a_c00141{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);}
.ma6_c00141{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);}
.m156_c00141{transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);}
.mdb_c00141{transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);}
.m13a_c00141{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);}
.m2_c00141{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m79_c00141{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);}
.ma3_c00141{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m1a_c00141{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.m128_c00141{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.mbe_c00141{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00141{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);}
.m11_c00141{transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);}
.m13f_c00141{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m59_c00141{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);}
.m4e_c00141{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);}
.me2_c00141{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m77_c00141{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.md4_c00141{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m136_c00141{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m141_c00141{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.mab_c00141{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.mac_c00141{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m118_c00141{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.mf7_c00141{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m85_c00141{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m13e_c00141{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.m114_c00141{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);}
.m53_c00141{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m145_c00141{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.m82_c00141{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m9_c00141{transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);}
.m56_c00141{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.mb1_c00141{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);}
.mb7_c00141{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);}
.me_c00141{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m35_c00141{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.m12e_c00141{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m109_c00141{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.m125_c00141{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);}
.m116_c00141{transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);}
.mdc_c00141{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);}
.m57_c00141{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);}
.m7e_c00141{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);}
.m10_c00141{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.m13d_c00141{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);}
.m151_c00141{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.mf6_c00141{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);}
.md6_c00141{transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);}
.m122_c00141{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00141{transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);}
.ma2_c00141{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m93_c00141{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.meb_c00141{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.m133_c00141{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.m7d_c00141{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.m17_c00141{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.m14d_c00141{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m52_c00141{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);}
.m130_c00141{transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);}
.m10b_c00141{transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);}
.m28_c00141{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.m120_c00141{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.m155_c00141{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m9c_c00141{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m158_c00141{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);}
.me3_c00141{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.me6_c00141{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);}
.m149_c00141{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.m34_c00141{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.me0_c00141{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);}
.m42_c00141{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mbc_c00141{transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);}
.m14c_c00141{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);}
.m5c_c00141{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m6f_c00141{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m43_c00141{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m106_c00141{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.mfc_c00141{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m121_c00141{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);}
.mc4_c00141{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);}
.m89_c00141{transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);}
.md0_c00141{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);}
.m12a_c00141{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);}
.m115_c00141{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);}
.mcd_c00141{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);}
.mbd_c00141{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.m84_c00141{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);}
.mce_c00141{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.m40_c00141{transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);}
.mc1_c00141{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.m73_c00141{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);}
.m10c_c00141{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m104_c00141{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);}
.ma4_c00141{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.m111_c00141{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);}
.m23_c00141{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);}
.m18_c00141{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);}
.md5_c00141{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);}
.m22_c00141{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);}
.md8_c00141{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m81_c00141{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m47_c00141{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.m146_c00141{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);}
.m126_c00141{transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);}
.m10d_c00141{transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);}
.md7_c00141{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);}
.m13c_c00141{transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);}
.mdf_c00141{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);}
.m14_c00141{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);}
.mcc_c00141{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);}
.mb9_c00141{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.m105_c00141{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m2c_c00141{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);}
.m29_c00141{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);}
.m15b_c00141{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);}
.m12_c00141{transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);}
.mcf_c00141{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.ma0_c00141{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m68_c00141{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.mfd_c00141{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);}
.m27_c00141{transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);}
.mba_c00141{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.m6a_c00141{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);}
.mbf_c00141{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);}
.m70_c00141{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);}
.mdd_c00141{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);}
.m3_c00141{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);}
.m157_c00141{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);}
.m67_c00141{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m2f_c00141{transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);}
.m6e_c00141{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);}
.m39_c00141{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);}
.ma8_c00141{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);}
.mf9_c00141{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m65_c00141{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);}
.m3e_c00141{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);}
.ma9_c00141{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m72_c00141{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);}
.mcb_c00141{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);}
.m7c_c00141{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);}
.m88_c00141{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m10e_c00141{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.m108_c00141{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m119_c00141{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);}
.m102_c00141{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m13_c00141{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m2a_c00141{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);}
.ma1_c00141{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m97_c00141{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);}
.m2b_c00141{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);}
.m75_c00141{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);}
.m55_c00141{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);}
.m98_c00141{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00141{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00141{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00141{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);}
.m30_c00141{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00141{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);}
.m4a_c00141{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);}
.m16_c00141{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m31_c00141{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);}
.mb_c00141{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me4_c00141{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00141{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m86_c00141{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);}
.m48_c00141{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);}
.m1_c00141{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c00141{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m78_c00141{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00141{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c00141{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c00141{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00141{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00141{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00141{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m71_c00141{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);}
.m107_c00141{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m87_c00141{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);}
.m2e_c00141{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00141{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);}
.ma_c00141{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m5_c00141{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00141{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00141{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);}
.mc3_c00141{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m153_c00141{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7_c00141{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md9_c00141{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mda_c00141{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m147_c00141{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00141{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);}
.m110_c00141{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);}
.md3_c00141{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m16d_c00141{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);}
.m5d_c00141{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00141{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m19_c00141{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00141{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m8_c00141{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00141{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00141{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m24_c00141{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00141{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00141{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m16c_c00141{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m112_c00141{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);}
.mc2_c00141{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);}
.m168_c00141{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m90_c00141{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m148_c00141{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m142_c00141{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00141{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m83_c00141{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m16b_c00141{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);}
.m16e_c00141{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00141{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.me1_c00141{transform:matrix(1.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.807500,0.000000,0.000000,0.250000,0,0);}
.m144_c00141{transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);}
.m16a_c00141{transform:matrix(12.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(12.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(12.095000,0.000000,0.000000,0.250000,0,0);}
.v0_c00141{vertical-align:0.000000px;}
.v1_c00141{vertical-align:17.280000px;}
.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:-21.934500px;}
.ws1_c00141{word-spacing:0.000000px;}
.fc0_c00141{color:transparent;}
.fs10_c00141{font-size:3.456000px;}
.fs1f_c00141{font-size:6.000000px;}
.fs1e_c00141{font-size:6.900000px;}
.fs1b_c00141{font-size:10.380000px;}
.fs24_c00141{font-size:13.800000px;}
.fs14_c00141{font-size:17.280000px;}
.fs19_c00141{font-size:20.760000px;}
.fs25_c00141{font-size:24.180000px;}
.fs1d_c00141{font-size:27.660000px;}
.fs20_c00141{font-size:31.080000px;}
.fs1a_c00141{font-size:34.560000px;}
.fs12_c00141{font-size:38.040000px;}
.fs5_c00141{font-size:41.460000px;}
.fsa_c00141{font-size:44.940000px;}
.fs7_c00141{font-size:48.360000px;}
.fs1c_c00141{font-size:51.840000px;}
.fs11_c00141{font-size:55.320000px;}
.fs1_c00141{font-size:58.740000px;}
.fs2_c00141{font-size:62.220000px;}
.fsb_c00141{font-size:65.640000px;}
.fs9_c00141{font-size:69.120000px;}
.fs3_c00141{font-size:72.600000px;}
.fs8_c00141{font-size:76.020000px;}
.fs17_c00141{font-size:79.500000px;}
.fse_c00141{font-size:82.920000px;}
.fsd_c00141{font-size:86.400000px;}
.fsf_c00141{font-size:89.880000px;}
.fsc_c00141{font-size:93.300000px;}
.fs4_c00141{font-size:96.780000px;}
.fs18_c00141{font-size:100.200000px;}
.fs0_c00141{font-size:103.680000px;}
.fs6_c00141{font-size:107.160000px;}
.fs13_c00141{font-size:110.580000px;}
.fs16_c00141{font-size:114.060000px;}
.fs15_c00141{font-size:117.480000px;}
.fs22_c00141{font-size:120.960000px;}
.fs26_c00141{font-size:124.440000px;}
.fs21_c00141{font-size:127.860000px;}
.fs27_c00141{font-size:131.340000px;}
.fs23_c00141{font-size:134.760000px;}
.fs28_c00141{font-size:148.620000px;}
.fs29_c00141{font-size:162.420000px;}
.y0_c00141{bottom:0.000000px;}
.y172_c00141{bottom:70.845000px;}
.y171_c00141{bottom:76.035000px;}
.y16f_c00141{bottom:124.410000px;}
.y170_c00141{bottom:127.875000px;}
.y16c_c00141{bottom:186.630000px;}
.y16d_c00141{bottom:190.080000px;}
.y166_c00141{bottom:214.275000px;}
.y168_c00141{bottom:215.130000px;}
.y163_c00141{bottom:216.000000px;}
.y167_c00141{bottom:216.870000px;}
.y165_c00141{bottom:217.725000px;}
.y15f_c00141{bottom:220.320000px;}
.y15e_c00141{bottom:227.235000px;}
.y15c_c00141{bottom:231.555000px;}
.y161_c00141{bottom:235.875000px;}
.y162_c00141{bottom:238.470000px;}
.y160_c00141{bottom:240.195000px;}
.y15d_c00141{bottom:241.050000px;}
.y164_c00141{bottom:241.920000px;}
.y15b_c00141{bottom:250.560000px;}
.y158_c00141{bottom:251.430000px;}
.y159_c00141{bottom:252.285000px;}
.y15a_c00141{bottom:253.155000px;}
.y154_c00141{bottom:254.880000px;}
.y157_c00141{bottom:255.750000px;}
.y155_c00141{bottom:260.925000px;}
.y153_c00141{bottom:265.245000px;}
.y156_c00141{bottom:267.840000px;}
.y151_c00141{bottom:282.525000px;}
.y14f_c00141{bottom:284.250000px;}
.y14c_c00141{bottom:285.120000px;}
.y152_c00141{bottom:286.845000px;}
.y14d_c00141{bottom:287.715000px;}
.y150_c00141{bottom:290.310000px;}
.y14e_c00141{bottom:291.165000px;}
.y14b_c00141{bottom:292.890000px;}
.y148_c00141{bottom:306.720000px;}
.y14a_c00141{bottom:307.590000px;}
.y145_c00141{bottom:309.315000px;}
.y143_c00141{bottom:310.170000px;}
.y146_c00141{bottom:311.910000px;}
.y142_c00141{bottom:313.635000px;}
.y147_c00141{bottom:314.490000px;}
.y149_c00141{bottom:316.230000px;}
.y144_c00141{bottom:317.955000px;}
.y13e_c00141{bottom:330.915000px;}
.y13f_c00141{bottom:332.640000px;}
.y136_c00141{bottom:334.365000px;}
.y139_c00141{bottom:335.235000px;}
.y13a_c00141{bottom:336.090000px;}
.y140_c00141{bottom:336.960000px;}
.y141_c00141{bottom:338.685000px;}
.y13c_c00141{bottom:340.410000px;}
.y138_c00141{bottom:345.600000px;}
.y13b_c00141{bottom:346.470000px;}
.y137_c00141{bottom:349.920000px;}
.y13d_c00141{bottom:352.515000px;}
.y135_c00141{bottom:355.965000px;}
.y134_c00141{bottom:358.560000px;}
.y12f_c00141{bottom:360.285000px;}
.y12e_c00141{bottom:361.155000px;}
.y131_c00141{bottom:362.010000px;}
.y133_c00141{bottom:362.880000px;}
.y132_c00141{bottom:367.200000px;}
.y130_c00141{bottom:368.925000px;}
.y12c_c00141{bottom:381.030000px;}
.y12a_c00141{bottom:381.885000px;}
.y12b_c00141{bottom:383.610000px;}
.y127_c00141{bottom:385.350000px;}
.y128_c00141{bottom:387.075000px;}
.y129_c00141{bottom:393.990000px;}
.y12d_c00141{bottom:403.485000px;}
.y126_c00141{bottom:406.080000px;}
.y121_c00141{bottom:410.400000px;}
.y125_c00141{bottom:411.270000px;}
.y122_c00141{bottom:412.125000px;}
.y124_c00141{bottom:412.995000px;}
.y123_c00141{bottom:414.720000px;}
.y120_c00141{bottom:416.445000px;}
.y11c_c00141{bottom:431.130000px;}
.y11e_c00141{bottom:432.870000px;}
.y11a_c00141{bottom:433.725000px;}
.y119_c00141{bottom:434.595000px;}
.y118_c00141{bottom:435.450000px;}
.y11b_c00141{bottom:436.320000px;}
.y11f_c00141{bottom:437.190000px;}
.y11d_c00141{bottom:438.045000px;}
.y116_c00141{bottom:440.640000px;}
.y117_c00141{bottom:442.365000px;}
.y115_c00141{bottom:443.235000px;}
.y111_c00141{bottom:457.050000px;}
.y112_c00141{bottom:457.920000px;}
.y10f_c00141{bottom:459.645000px;}
.y10e_c00141{bottom:460.515000px;}
.y113_c00141{bottom:461.370000px;}
.y114_c00141{bottom:463.965000px;}
.y10d_c00141{bottom:464.835000px;}
.y110_c00141{bottom:468.285000px;}
.y10c_c00141{bottom:481.245000px;}
.y109_c00141{bottom:482.115000px;}
.y108_c00141{bottom:483.840000px;}
.y103_c00141{bottom:484.710000px;}
.y105_c00141{bottom:485.565000px;}
.y10b_c00141{bottom:488.160000px;}
.y10a_c00141{bottom:489.030000px;}
.y104_c00141{bottom:489.885000px;}
.y102_c00141{bottom:491.610000px;}
.y107_c00141{bottom:492.480000px;}
.y106_c00141{bottom:493.350000px;}
.y100_c00141{bottom:506.310000px;}
.yff_c00141{bottom:509.760000px;}
.yfd_c00141{bottom:510.630000px;}
.y101_c00141{bottom:512.355000px;}
.yfe_c00141{bottom:513.210000px;}
.yfb_c00141{bottom:514.080000px;}
.yfa_c00141{bottom:515.805000px;}
.yfc_c00141{bottom:517.530000px;}
.yf9_c00141{bottom:530.490000px;}
.yf8_c00141{bottom:532.230000px;}
.yf6_c00141{bottom:533.955000px;}
.yf3_c00141{bottom:535.680000px;}
.yf5_c00141{bottom:536.550000px;}
.yf4_c00141{bottom:540.000000px;}
.yf7_c00141{bottom:540.870000px;}
.yf2_c00141{bottom:542.595000px;}
.yf1_c00141{bottom:556.410000px;}
.yee_c00141{bottom:558.150000px;}
.yec_c00141{bottom:559.875000px;}
.yef_c00141{bottom:561.600000px;}
.yf0_c00141{bottom:564.195000px;}
.yed_c00141{bottom:568.515000px;}
.yea_c00141{bottom:581.475000px;}
.ye6_c00141{bottom:582.330000px;}
.ye3_c00141{bottom:584.925000px;}
.ye5_c00141{bottom:585.795000px;}
.yeb_c00141{bottom:587.520000px;}
.ye9_c00141{bottom:589.245000px;}
.ye8_c00141{bottom:590.115000px;}
.ye7_c00141{bottom:590.970000px;}
.ye4_c00141{bottom:593.565000px;}
.ye2_c00141{bottom:600.480000px;}
.ye0_c00141{bottom:602.205000px;}
.ydf_c00141{bottom:603.075000px;}
.ye1_c00141{bottom:604.800000px;}
.yde_c00141{bottom:605.670000px;}
.ydb_c00141{bottom:606.525000px;}
.ydc_c00141{bottom:617.760000px;}
.ydd_c00141{bottom:618.630000px;}
.yda_c00141{bottom:630.720000px;}
.yd9_c00141{bottom:632.445000px;}
.yd8_c00141{bottom:635.040000px;}
.yd5_c00141{bottom:635.910000px;}
.yd7_c00141{bottom:639.360000px;}
.yd6_c00141{bottom:642.810000px;}
.yd4_c00141{bottom:657.510000px;}
.yd2_c00141{bottom:660.090000px;}
.yd3_c00141{bottom:662.685000px;}
.yd0_c00141{bottom:666.150000px;}
.yd1_c00141{bottom:667.875000px;}
.ycc_c00141{bottom:685.155000px;}
.ycd_c00141{bottom:688.605000px;}
.ycf_c00141{bottom:690.330000px;}
.yce_c00141{bottom:698.115000px;}
.yc9_c00141{bottom:705.030000px;}
.ycb_c00141{bottom:705.885000px;}
.yc7_c00141{bottom:706.755000px;}
.yc2_c00141{bottom:709.350000px;}
.yc3_c00141{bottom:710.205000px;}
.yca_c00141{bottom:712.800000px;}
.yc5_c00141{bottom:713.670000px;}
.yc8_c00141{bottom:714.525000px;}
.yc6_c00141{bottom:715.395000px;}
.yc4_c00141{bottom:717.120000px;}
.yc1_c00141{bottom:729.210000px;}
.yc0_c00141{bottom:730.950000px;}
.ybc_c00141{bottom:733.530000px;}
.ybf_c00141{bottom:737.850000px;}
.ybe_c00141{bottom:738.720000px;}
.ybd_c00141{bottom:741.315000px;}
.ybb_c00141{bottom:754.275000px;}
.yba_c00141{bottom:756.000000px;}
.yb8_c00141{bottom:757.725000px;}
.yb7_c00141{bottom:761.190000px;}
.yb9_c00141{bottom:762.045000px;}
.yb5_c00141{bottom:763.770000px;}
.yb4_c00141{bottom:764.640000px;}
.yb6_c00141{bottom:766.365000px;}
.yab_c00141{bottom:781.920000px;}
.yb1_c00141{bottom:782.790000px;}
.yac_c00141{bottom:783.645000px;}
.ya8_c00141{bottom:784.515000px;}
.yb2_c00141{bottom:786.240000px;}
.yb3_c00141{bottom:787.965000px;}
.yaa_c00141{bottom:789.690000px;}
.ya9_c00141{bottom:790.560000px;}
.yaf_c00141{bottom:794.880000px;}
.yb0_c00141{bottom:797.475000px;}
.yad_c00141{bottom:798.330000px;}
.yae_c00141{bottom:799.200000px;}
.ya7_c00141{bottom:803.520000px;}
.ya5_c00141{bottom:806.115000px;}
.ya3_c00141{bottom:806.970000px;}
.ya1_c00141{bottom:807.840000px;}
.ya6_c00141{bottom:811.290000px;}
.ya4_c00141{bottom:812.160000px;}
.ya0_c00141{bottom:813.030000px;}
.ya2_c00141{bottom:814.755000px;}
.y9e_c00141{bottom:825.990000px;}
.y9d_c00141{bottom:826.845000px;}
.y9c_c00141{bottom:829.440000px;}
.y9a_c00141{bottom:830.310000px;}
.y99_c00141{bottom:831.165000px;}
.y98_c00141{bottom:833.760000px;}
.y9f_c00141{bottom:836.355000px;}
.y9b_c00141{bottom:837.210000px;}
.y96_c00141{bottom:852.765000px;}
.y95_c00141{bottom:854.490000px;}
.y94_c00141{bottom:855.360000px;}
.y97_c00141{bottom:856.230000px;}
.y92_c00141{bottom:857.085000px;}
.y93_c00141{bottom:857.955000px;}
.y91_c00141{bottom:864.000000px;}
.y90_c00141{bottom:864.870000px;}
.y8f_c00141{bottom:876.090000px;}
.y8d_c00141{bottom:879.555000px;}
.y8c_c00141{bottom:882.150000px;}
.y8b_c00141{bottom:883.875000px;}
.y8e_c00141{bottom:885.600000px;}
.y8a_c00141{bottom:889.920000px;}
.y88_c00141{bottom:895.110000px;}
.y86_c00141{bottom:898.560000px;}
.y87_c00141{bottom:899.430000px;}
.y82_c00141{bottom:900.285000px;}
.y84_c00141{bottom:902.010000px;}
.y85_c00141{bottom:905.475000px;}
.y83_c00141{bottom:906.330000px;}
.y89_c00141{bottom:926.205000px;}
.y7e_c00141{bottom:927.930000px;}
.y80_c00141{bottom:928.800000px;}
.y7f_c00141{bottom:929.670000px;}
.y7c_c00141{bottom:930.525000px;}
.y81_c00141{bottom:933.120000px;}
.y7d_c00141{bottom:933.990000px;}
.y7b_c00141{bottom:951.270000px;}
.y7a_c00141{bottom:953.850000px;}
.y77_c00141{bottom:954.720000px;}
.y79_c00141{bottom:956.445000px;}
.y78_c00141{bottom:964.230000px;}
.y76_c00141{bottom:977.190000px;}
.y71_c00141{bottom:981.510000px;}
.y70_c00141{bottom:982.365000px;}
.y74_c00141{bottom:983.235000px;}
.y73_c00141{bottom:984.090000px;}
.y6e_c00141{bottom:985.830000px;}
.y75_c00141{bottom:986.685000px;}
.y72_c00141{bottom:987.555000px;}
.y6f_c00141{bottom:989.280000px;}
.y6c_c00141{bottom:1002.240000px;}
.y6a_c00141{bottom:1003.110000px;}
.y6b_c00141{bottom:1004.835000px;}
.y67_c00141{bottom:1006.560000px;}
.y68_c00141{bottom:1007.430000px;}
.y6d_c00141{bottom:1008.285000px;}
.y69_c00141{bottom:1010.880000px;}
.y63_c00141{bottom:1028.160000px;}
.y61_c00141{bottom:1029.030000px;}
.y66_c00141{bottom:1033.350000px;}
.y65_c00141{bottom:1034.205000px;}
.y64_c00141{bottom:1035.075000px;}
.y5f_c00141{bottom:1035.930000px;}
.y16b_c00141{bottom:1037.670000px;}
.y62_c00141{bottom:1038.525000px;}
.y60_c00141{bottom:1039.395000px;}
.y16a_c00141{bottom:1041.120000px;}
.y169_c00141{bottom:1048.035000px;}
.y5e_c00141{bottom:1054.080000px;}
.y5c_c00141{bottom:1054.950000px;}
.y58_c00141{bottom:1057.530000px;}
.y5d_c00141{bottom:1059.270000px;}
.y59_c00141{bottom:1060.995000px;}
.y5a_c00141{bottom:1062.720000px;}
.y5b_c00141{bottom:1063.590000px;}
.y57_c00141{bottom:1065.315000px;}
.y55_c00141{bottom:1077.405000px;}
.y54_c00141{bottom:1079.130000px;}
.y53_c00141{bottom:1080.000000px;}
.y52_c00141{bottom:1080.870000px;}
.y4f_c00141{bottom:1081.725000px;}
.y56_c00141{bottom:1083.450000px;}
.y50_c00141{bottom:1088.640000px;}
.y51_c00141{bottom:1089.510000px;}
.y4e_c00141{bottom:1090.365000px;}
.y4c_c00141{bottom:1102.470000px;}
.y4a_c00141{bottom:1103.325000px;}
.y4b_c00141{bottom:1104.195000px;}
.y45_c00141{bottom:1105.050000px;}
.y48_c00141{bottom:1106.790000px;}
.y46_c00141{bottom:1108.515000px;}
.y4d_c00141{bottom:1109.370000px;}
.y49_c00141{bottom:1113.690000px;}
.y47_c00141{bottom:1114.560000px;}
.y44_c00141{bottom:1128.390000px;}
.y43_c00141{bottom:1129.245000px;}
.y42_c00141{bottom:1130.970000px;}
.y3f_c00141{bottom:1131.840000px;}
.y40_c00141{bottom:1134.435000px;}
.y41_c00141{bottom:1138.755000px;}
.y3c_c00141{bottom:1152.570000px;}
.y3d_c00141{bottom:1153.440000px;}
.y3b_c00141{bottom:1156.035000px;}
.y3a_c00141{bottom:1156.890000px;}
.y38_c00141{bottom:1157.760000px;}
.y3e_c00141{bottom:1158.630000px;}
.y39_c00141{bottom:1163.805000px;}
.y36_c00141{bottom:1164.675000px;}
.y37_c00141{bottom:1165.530000px;}
.y35_c00141{bottom:1178.490000px;}
.y34_c00141{bottom:1180.230000px;}
.y33_c00141{bottom:1181.085000px;}
.y30_c00141{bottom:1182.810000px;}
.y2f_c00141{bottom:1183.680000px;}
.y31_c00141{bottom:1184.550000px;}
.y32_c00141{bottom:1186.275000px;}
.y2e_c00141{bottom:1203.555000px;}
.y2b_c00141{bottom:1206.150000px;}
.y2a_c00141{bottom:1207.005000px;}
.y2d_c00141{bottom:1211.325000px;}
.y2c_c00141{bottom:1213.050000px;}
.y26_c00141{bottom:1228.605000px;}
.y28_c00141{bottom:1229.475000px;}
.y24_c00141{bottom:1231.200000px;}
.y23_c00141{bottom:1232.070000px;}
.y21_c00141{bottom:1234.650000px;}
.y29_c00141{bottom:1235.520000px;}
.y27_c00141{bottom:1238.115000px;}
.y25_c00141{bottom:1238.970000px;}
.y22_c00141{bottom:1239.840000px;}
.y20_c00141{bottom:1254.525000px;}
.y1e_c00141{bottom:1255.395000px;}
.y1c_c00141{bottom:1257.990000px;}
.y1f_c00141{bottom:1260.570000px;}
.y1d_c00141{bottom:1264.890000px;}
.y1b_c00141{bottom:1276.125000px;}
.y18_c00141{bottom:1277.850000px;}
.y1a_c00141{bottom:1283.040000px;}
.y19_c00141{bottom:1284.765000px;}
.y17_c00141{bottom:1289.085000px;}
.y16_c00141{bottom:1289.955000px;}
.y13_c00141{bottom:1302.915000px;}
.y11_c00141{bottom:1307.235000px;}
.y14_c00141{bottom:1308.960000px;}
.y15_c00141{bottom:1312.410000px;}
.y10_c00141{bottom:1314.150000px;}
.y12_c00141{bottom:1315.005000px;}
.yf_c00141{bottom:1327.110000px;}
.yd_c00141{bottom:1328.835000px;}
.yc_c00141{bottom:1331.430000px;}
.yb_c00141{bottom:1332.285000px;}
.ye_c00141{bottom:1334.880000px;}
.ya_c00141{bottom:1338.330000px;}
.y9_c00141{bottom:1340.070000px;}
.y6_c00141{bottom:1353.030000px;}
.y4_c00141{bottom:1355.610000px;}
.y1_c00141{bottom:1358.205000px;}
.y8_c00141{bottom:1359.075000px;}
.y7_c00141{bottom:1359.930000px;}
.y5_c00141{bottom:1362.525000px;}
.y3_c00141{bottom:1363.395000px;}
.y2_c00141{bottom:1365.120000px;}
.y16e_c00141{bottom:1391.040000px;}
.h12_c00141{height:3.110063px;}
.h22_c00141{height:5.399414px;}
.h21_c00141{height:6.209326px;}
.h1e_c00141{height:9.340986px;}
.h27_c00141{height:12.418652px;}
.h16_c00141{height:15.550313px;}
.h1c_c00141{height:18.681973px;}
.h28_c00141{height:21.759639px;}
.h20_c00141{height:24.891299px;}
.h23_c00141{height:27.968965px;}
.h1d_c00141{height:31.100625px;}
.h14_c00141{height:34.232285px;}
.h7_c00141{height:37.309951px;}
.hc_c00141{height:40.441611px;}
.h9_c00141{height:43.519277px;}
.h1f_c00141{height:46.650937px;}
.h13_c00141{height:49.782598px;}
.h3_c00141{height:52.860264px;}
.h4_c00141{height:55.991924px;}
.hd_c00141{height:59.069590px;}
.hb_c00141{height:62.201250px;}
.h5_c00141{height:65.332910px;}
.ha_c00141{height:68.410576px;}
.h19_c00141{height:71.542236px;}
.h10_c00141{height:74.619902px;}
.hf_c00141{height:77.751563px;}
.h1b_c00141{height:79.481250px;}
.h11_c00141{height:80.883223px;}
.he_c00141{height:83.960889px;}
.h6_c00141{height:87.092549px;}
.h1a_c00141{height:90.170215px;}
.h2_c00141{height:93.301875px;}
.h8_c00141{height:96.433535px;}
.h15_c00141{height:99.511201px;}
.h18_c00141{height:102.642861px;}
.h17_c00141{height:105.720527px;}
.h25_c00141{height:108.852188px;}
.h29_c00141{height:111.983848px;}
.h24_c00141{height:115.061514px;}
.h2a_c00141{height:118.193174px;}
.h26_c00141{height:121.270840px;}
.h2b_c00141{height:133.743486px;}
.h2c_c00141{height:146.162139px;}
.h1_c00141{height:1503.000000px;}
.h0_c00141{height:1503.360000px;}
.w0_c00141{width:1088.640000px;}
.w1_c00141{width:1089.000000px;}
.x0_c00141{left:0.000000px;}
.xe4_c00141{left:131.325000px;}
.xe3_c00141{left:133.050000px;}
.xe5_c00141{left:174.525000px;}
.xc8_c00141{left:219.450000px;}
.x6e_c00141{left:221.190000px;}
.x2a_c00141{left:223.770000px;}
.x5f_c00141{left:225.510000px;}
.x39_c00141{left:228.090000px;}
.xb6_c00141{left:229.830000px;}
.xd_c00141{left:232.410000px;}
.x1_c00141{left:235.005000px;}
.xdd_c00141{left:237.600000px;}
.x9d_c00141{left:241.920000px;}
.xaa_c00141{left:252.285000px;}
.x6f_c00141{left:254.880000px;}
.x16_c00141{left:258.330000px;}
.xb8_c00141{left:260.070000px;}
.x42_c00141{left:262.650000px;}
.xe_c00141{left:264.390000px;}
.xc5_c00141{left:267.840000px;}
.x43_c00141{left:270.435000px;}
.xd1_c00141{left:274.755000px;}
.x59_c00141{left:276.480000px;}
.x84_c00141{left:278.205000px;}
.x1c_c00141{left:279.930000px;}
.x70_c00141{left:281.670000px;}
.x2_c00141{left:284.250000px;}
.x85_c00141{left:285.990000px;}
.x4e_c00141{left:288.570000px;}
.xc6_c00141{left:295.485000px;}
.x3_c00141{left:302.400000px;}
.x51_c00141{left:304.995000px;}
.x64_c00141{left:307.590000px;}
.x44_c00141{left:311.040000px;}
.xda_c00141{left:313.635000px;}
.xcf_c00141{left:319.680000px;}
.x4_c00141{left:321.405000px;}
.x86_c00141{left:325.725000px;}
.xad_c00141{left:328.320000px;}
.x33_c00141{left:332.640000px;}
.x74_c00141{left:336.090000px;}
.x82_c00141{left:341.280000px;}
.x60_c00141{left:343.005000px;}
.xa4_c00141{left:345.600000px;}
.x2b_c00141{left:347.325000px;}
.x3a_c00141{left:349.050000px;}
.x94_c00141{left:350.790000px;}
.xbd_c00141{left:352.515000px;}
.x8f_c00141{left:354.240000px;}
.xde_c00141{left:356.835000px;}
.x52_c00141{left:358.560000px;}
.x87_c00141{left:362.010000px;}
.x5_c00141{left:366.330000px;}
.xb1_c00141{left:369.795000px;}
.xb3_c00141{left:371.520000px;}
.x45_c00141{left:373.245000px;}
.x9e_c00141{left:375.840000px;}
.x23_c00141{left:379.290000px;}
.x3b_c00141{left:381.030000px;}
.xa5_c00141{left:384.480000px;}
.xd6_c00141{left:386.205000px;}
.x89_c00141{left:388.800000px;}
.xb9_c00141{left:392.250000px;}
.xc9_c00141{left:393.990000px;}
.x1d_c00141{left:395.715000px;}
.x53_c00141{left:397.440000px;}
.x90_c00141{left:400.035000px;}
.xf_c00141{left:402.630000px;}
.x46_c00141{left:407.805000px;}
.x65_c00141{left:410.400000px;}
.xd0_c00141{left:412.125000px;}
.xca_c00141{left:413.850000px;}
.x68_c00141{left:416.445000px;}
.x91_c00141{left:420.765000px;}
.x95_c00141{left:427.680000px;}
.x47_c00141{left:429.405000px;}
.x61_c00141{left:431.130000px;}
.x24_c00141{left:432.870000px;}
.xe0_c00141{left:437.190000px;}
.x69_c00141{left:439.770000px;}
.x2c_c00141{left:444.960000px;}
.xc2_c00141{left:446.685000px;}
.x54_c00141{left:449.280000px;}
.xbe_c00141{left:451.005000px;}
.xa6_c00141{left:452.730000px;}
.x34_c00141{left:457.920000px;}
.x7c_c00141{left:459.645000px;}
.x8a_c00141{left:463.965000px;}
.x2d_c00141{left:470.880000px;}
.xd2_c00141{left:472.605000px;}
.x6_c00141{left:474.330000px;}
.xba_c00141{left:478.650000px;}
.x62_c00141{left:481.245000px;}
.x5a_c00141{left:484.710000px;}
.x76_c00141{left:487.290000px;}
.x1e_c00141{left:492.480000px;}
.x48_c00141{left:495.075000px;}
.x5b_c00141{left:498.525000px;}
.xb2_c00141{left:501.120000px;}
.x55_c00141{left:502.845000px;}
.x17_c00141{left:505.440000px;}
.xbf_c00141{left:507.165000px;}
.x2e_c00141{left:509.760000px;}
.x3c_c00141{left:511.485000px;}
.x8b_c00141{left:513.210000px;}
.xd7_c00141{left:514.950000px;}
.x3d_c00141{left:520.995000px;}
.x7_c00141{left:525.315000px;}
.x9f_c00141{left:527.910000px;}
.x25_c00141{left:531.360000px;}
.x10_c00141{left:535.680000px;}
.xc0_c00141{left:537.405000px;}
.x66_c00141{left:540.000000px;}
.x35_c00141{left:543.450000px;}
.x71_c00141{left:545.190000px;}
.xa8_c00141{left:546.915000px;}
.x49_c00141{left:552.960000px;}
.xab_c00141{left:555.555000px;}
.x7d_c00141{left:558.150000px;}
.xd3_c00141{left:559.875000px;}
.x2f_c00141{left:561.600000px;}
.x18_c00141{left:565.050000px;}
.x3e_c00141{left:567.645000px;}
.x96_c00141{left:569.370000px;}
.x4a_c00141{left:573.690000px;}
.x36_c00141{left:578.880000px;}
.xe1_c00141{left:580.605000px;}
.xd8_c00141{left:583.200000px;}
.xae_c00141{left:585.795000px;}
.x19_c00141{left:587.520000px;}
.x1f_c00141{left:590.115000px;}
.x4f_c00141{left:591.840000px;}
.x11_c00141{left:600.480000px;}
.x77_c00141{left:603.930000px;}
.xaf_c00141{left:606.525000px;}
.x7e_c00141{left:609.120000px;}
.xb7_c00141{left:612.570000px;}
.x8c_c00141{left:615.165000px;}
.x6a_c00141{left:616.890000px;}
.x50_c00141{left:620.355000px;}
.xc3_c00141{left:622.950000px;}
.xdf_c00141{left:624.675000px;}
.x72_c00141{left:626.400000px;}
.x26_c00141{left:628.995000px;}
.xb4_c00141{left:630.720000px;}
.x97_c00141{left:634.170000px;}
.x4b_c00141{left:639.360000px;}
.x56_c00141{left:646.275000px;}
.x8_c00141{left:648.870000px;}
.x78_c00141{left:652.320000px;}
.xbb_c00141{left:657.510000px;}
.x30_c00141{left:660.090000px;}
.xd9_c00141{left:663.555000px;}
.x98_c00141{left:665.280000px;}
.x9_c00141{left:667.875000px;}
.x3f_c00141{left:669.600000px;}
.xb5_c00141{left:673.050000px;}
.x37_c00141{left:674.790000px;}
.xa2_c00141{left:677.370000px;}
.x7f_c00141{left:681.690000px;}
.x99_c00141{left:685.155000px;}
.x12_c00141{left:686.880000px;}
.x8d_c00141{left:689.475000px;}
.xa_c00141{left:691.200000px;}
.x38_c00141{left:693.795000px;}
.xdb_c00141{left:695.520000px;}
.xa9_c00141{left:698.970000px;}
.x63_c00141{left:700.710000px;}
.xe2_c00141{left:703.290000px;}
.x9a_c00141{left:706.755000px;}
.x79_c00141{left:708.480000px;}
.x27_c00141{left:710.205000px;}
.x31_c00141{left:712.800000px;}
.xd4_c00141{left:714.525000px;}
.x4c_c00141{left:717.120000px;}
.x92_c00141{left:719.715000px;}
.x57_c00141{left:721.440000px;}
.x20_c00141{left:723.165000px;}
.xa7_c00141{left:726.630000px;}
.xc4_c00141{left:729.210000px;}
.x75_c00141{left:736.995000px;}
.x40_c00141{left:743.040000px;}
.xd5_c00141{left:744.765000px;}
.xcd_c00141{left:748.230000px;}
.xbc_c00141{left:750.810000px;}
.x6b_c00141{left:753.405000px;}
.x5c_c00141{left:756.870000px;}
.x13_c00141{left:758.595000px;}
.x32_c00141{left:765.510000px;}
.x83_c00141{left:767.235000px;}
.x7a_c00141{left:769.830000px;}
.x28_c00141{left:773.280000px;}
.xcb_c00141{left:775.005000px;}
.xb_c00141{left:776.730000px;}
.x93_c00141{left:778.470000px;}
.x21_c00141{left:781.050000px;}
.xac_c00141{left:783.645000px;}
.xdc_c00141{left:786.240000px;}
.x6c_c00141{left:788.835000px;}
.xa0_c00141{left:792.285000px;}
.x14_c00141{left:799.200000px;}
.xcc_c00141{left:804.390000px;}
.x1a_c00141{left:806.115000px;}
.x22_c00141{left:807.840000px;}
.xc7_c00141{left:811.290000px;}
.x9b_c00141{left:816.480000px;}
.xc_c00141{left:819.075000px;}
.xb0_c00141{left:822.525000px;}
.x41_c00141{left:824.250000px;}
.x8e_c00141{left:830.310000px;}
.x88_c00141{left:834.630000px;}
.xa3_c00141{left:837.210000px;}
.x80_c00141{left:840.675000px;}
.xa1_c00141{left:843.270000px;}
.xc1_c00141{left:844.995000px;}
.x58_c00141{left:846.720000px;}
.x4d_c00141{left:851.040000px;}
.xe6_c00141{left:852.765000px;}
.x29_c00141{left:855.360000px;}
.x1b_c00141{left:864.000000px;}
.x73_c00141{left:866.595000px;}
.x9c_c00141{left:870.915000px;}
.xe8_c00141{left:876.960000px;}
.xe9_c00141{left:878.685000px;}
.x15_c00141{left:881.280000px;}
.x67_c00141{left:884.730000px;}
.x5d_c00141{left:887.325000px;}
.x7b_c00141{left:889.920000px;}
.x81_c00141{left:893.370000px;}
.x6d_c00141{left:895.965000px;}
.xce_c00141{left:899.430000px;}
.x5e_c00141{left:906.330000px;}
.xe7_c00141{left:913.245000px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.v1_c00141{vertical-align:15.360000pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws0_c00141{word-spacing:-19.497333pt;}
.ws1_c00141{word-spacing:0.000000pt;}
.fs10_c00141{font-size:3.072000pt;}
.fs1f_c00141{font-size:5.333333pt;}
.fs1e_c00141{font-size:6.133333pt;}
.fs1b_c00141{font-size:9.226667pt;}
.fs24_c00141{font-size:12.266667pt;}
.fs14_c00141{font-size:15.360000pt;}
.fs19_c00141{font-size:18.453333pt;}
.fs25_c00141{font-size:21.493333pt;}
.fs1d_c00141{font-size:24.586667pt;}
.fs20_c00141{font-size:27.626667pt;}
.fs1a_c00141{font-size:30.720000pt;}
.fs12_c00141{font-size:33.813333pt;}
.fs5_c00141{font-size:36.853333pt;}
.fsa_c00141{font-size:39.946667pt;}
.fs7_c00141{font-size:42.986667pt;}
.fs1c_c00141{font-size:46.080000pt;}
.fs11_c00141{font-size:49.173333pt;}
.fs1_c00141{font-size:52.213333pt;}
.fs2_c00141{font-size:55.306667pt;}
.fsb_c00141{font-size:58.346667pt;}
.fs9_c00141{font-size:61.440000pt;}
.fs3_c00141{font-size:64.533333pt;}
.fs8_c00141{font-size:67.573333pt;}
.fs17_c00141{font-size:70.666667pt;}
.fse_c00141{font-size:73.706667pt;}
.fsd_c00141{font-size:76.800000pt;}
.fsf_c00141{font-size:79.893333pt;}
.fsc_c00141{font-size:82.933333pt;}
.fs4_c00141{font-size:86.026667pt;}
.fs18_c00141{font-size:89.066667pt;}
.fs0_c00141{font-size:92.160000pt;}
.fs6_c00141{font-size:95.253333pt;}
.fs13_c00141{font-size:98.293333pt;}
.fs16_c00141{font-size:101.386667pt;}
.fs15_c00141{font-size:104.426667pt;}
.fs22_c00141{font-size:107.520000pt;}
.fs26_c00141{font-size:110.613333pt;}
.fs21_c00141{font-size:113.653333pt;}
.fs27_c00141{font-size:116.746667pt;}
.fs23_c00141{font-size:119.786667pt;}
.fs28_c00141{font-size:132.106667pt;}
.fs29_c00141{font-size:144.373333pt;}
.y0_c00141{bottom:0.000000pt;}
.y172_c00141{bottom:62.973333pt;}
.y171_c00141{bottom:67.586667pt;}
.y16f_c00141{bottom:110.586667pt;}
.y170_c00141{bottom:113.666667pt;}
.y16c_c00141{bottom:165.893333pt;}
.y16d_c00141{bottom:168.960000pt;}
.y166_c00141{bottom:190.466667pt;}
.y168_c00141{bottom:191.226667pt;}
.y163_c00141{bottom:192.000000pt;}
.y167_c00141{bottom:192.773333pt;}
.y165_c00141{bottom:193.533333pt;}
.y15f_c00141{bottom:195.840000pt;}
.y15e_c00141{bottom:201.986667pt;}
.y15c_c00141{bottom:205.826667pt;}
.y161_c00141{bottom:209.666667pt;}
.y162_c00141{bottom:211.973333pt;}
.y160_c00141{bottom:213.506667pt;}
.y15d_c00141{bottom:214.266667pt;}
.y164_c00141{bottom:215.040000pt;}
.y15b_c00141{bottom:222.720000pt;}
.y158_c00141{bottom:223.493333pt;}
.y159_c00141{bottom:224.253333pt;}
.y15a_c00141{bottom:225.026667pt;}
.y154_c00141{bottom:226.560000pt;}
.y157_c00141{bottom:227.333333pt;}
.y155_c00141{bottom:231.933333pt;}
.y153_c00141{bottom:235.773333pt;}
.y156_c00141{bottom:238.080000pt;}
.y151_c00141{bottom:251.133333pt;}
.y14f_c00141{bottom:252.666667pt;}
.y14c_c00141{bottom:253.440000pt;}
.y152_c00141{bottom:254.973333pt;}
.y14d_c00141{bottom:255.746667pt;}
.y150_c00141{bottom:258.053333pt;}
.y14e_c00141{bottom:258.813333pt;}
.y14b_c00141{bottom:260.346667pt;}
.y148_c00141{bottom:272.640000pt;}
.y14a_c00141{bottom:273.413333pt;}
.y145_c00141{bottom:274.946667pt;}
.y143_c00141{bottom:275.706667pt;}
.y146_c00141{bottom:277.253333pt;}
.y142_c00141{bottom:278.786667pt;}
.y147_c00141{bottom:279.546667pt;}
.y149_c00141{bottom:281.093333pt;}
.y144_c00141{bottom:282.626667pt;}
.y13e_c00141{bottom:294.146667pt;}
.y13f_c00141{bottom:295.680000pt;}
.y136_c00141{bottom:297.213333pt;}
.y139_c00141{bottom:297.986667pt;}
.y13a_c00141{bottom:298.746667pt;}
.y140_c00141{bottom:299.520000pt;}
.y141_c00141{bottom:301.053333pt;}
.y13c_c00141{bottom:302.586667pt;}
.y138_c00141{bottom:307.200000pt;}
.y13b_c00141{bottom:307.973333pt;}
.y137_c00141{bottom:311.040000pt;}
.y13d_c00141{bottom:313.346667pt;}
.y135_c00141{bottom:316.413333pt;}
.y134_c00141{bottom:318.720000pt;}
.y12f_c00141{bottom:320.253333pt;}
.y12e_c00141{bottom:321.026667pt;}
.y131_c00141{bottom:321.786667pt;}
.y133_c00141{bottom:322.560000pt;}
.y132_c00141{bottom:326.400000pt;}
.y130_c00141{bottom:327.933333pt;}
.y12c_c00141{bottom:338.693333pt;}
.y12a_c00141{bottom:339.453333pt;}
.y12b_c00141{bottom:340.986667pt;}
.y127_c00141{bottom:342.533333pt;}
.y128_c00141{bottom:344.066667pt;}
.y129_c00141{bottom:350.213333pt;}
.y12d_c00141{bottom:358.653333pt;}
.y126_c00141{bottom:360.960000pt;}
.y121_c00141{bottom:364.800000pt;}
.y125_c00141{bottom:365.573333pt;}
.y122_c00141{bottom:366.333333pt;}
.y124_c00141{bottom:367.106667pt;}
.y123_c00141{bottom:368.640000pt;}
.y120_c00141{bottom:370.173333pt;}
.y11c_c00141{bottom:383.226667pt;}
.y11e_c00141{bottom:384.773333pt;}
.y11a_c00141{bottom:385.533333pt;}
.y119_c00141{bottom:386.306667pt;}
.y118_c00141{bottom:387.066667pt;}
.y11b_c00141{bottom:387.840000pt;}
.y11f_c00141{bottom:388.613333pt;}
.y11d_c00141{bottom:389.373333pt;}
.y116_c00141{bottom:391.680000pt;}
.y117_c00141{bottom:393.213333pt;}
.y115_c00141{bottom:393.986667pt;}
.y111_c00141{bottom:406.266667pt;}
.y112_c00141{bottom:407.040000pt;}
.y10f_c00141{bottom:408.573333pt;}
.y10e_c00141{bottom:409.346667pt;}
.y113_c00141{bottom:410.106667pt;}
.y114_c00141{bottom:412.413333pt;}
.y10d_c00141{bottom:413.186667pt;}
.y110_c00141{bottom:416.253333pt;}
.y10c_c00141{bottom:427.773333pt;}
.y109_c00141{bottom:428.546667pt;}
.y108_c00141{bottom:430.080000pt;}
.y103_c00141{bottom:430.853333pt;}
.y105_c00141{bottom:431.613333pt;}
.y10b_c00141{bottom:433.920000pt;}
.y10a_c00141{bottom:434.693333pt;}
.y104_c00141{bottom:435.453333pt;}
.y102_c00141{bottom:436.986667pt;}
.y107_c00141{bottom:437.760000pt;}
.y106_c00141{bottom:438.533333pt;}
.y100_c00141{bottom:450.053333pt;}
.yff_c00141{bottom:453.120000pt;}
.yfd_c00141{bottom:453.893333pt;}
.y101_c00141{bottom:455.426667pt;}
.yfe_c00141{bottom:456.186667pt;}
.yfb_c00141{bottom:456.960000pt;}
.yfa_c00141{bottom:458.493333pt;}
.yfc_c00141{bottom:460.026667pt;}
.yf9_c00141{bottom:471.546667pt;}
.yf8_c00141{bottom:473.093333pt;}
.yf6_c00141{bottom:474.626667pt;}
.yf3_c00141{bottom:476.160000pt;}
.yf5_c00141{bottom:476.933333pt;}
.yf4_c00141{bottom:480.000000pt;}
.yf7_c00141{bottom:480.773333pt;}
.yf2_c00141{bottom:482.306667pt;}
.yf1_c00141{bottom:494.586667pt;}
.yee_c00141{bottom:496.133333pt;}
.yec_c00141{bottom:497.666667pt;}
.yef_c00141{bottom:499.200000pt;}
.yf0_c00141{bottom:501.506667pt;}
.yed_c00141{bottom:505.346667pt;}
.yea_c00141{bottom:516.866667pt;}
.ye6_c00141{bottom:517.626667pt;}
.ye3_c00141{bottom:519.933333pt;}
.ye5_c00141{bottom:520.706667pt;}
.yeb_c00141{bottom:522.240000pt;}
.ye9_c00141{bottom:523.773333pt;}
.ye8_c00141{bottom:524.546667pt;}
.ye7_c00141{bottom:525.306667pt;}
.ye4_c00141{bottom:527.613333pt;}
.ye2_c00141{bottom:533.760000pt;}
.ye0_c00141{bottom:535.293333pt;}
.ydf_c00141{bottom:536.066667pt;}
.ye1_c00141{bottom:537.600000pt;}
.yde_c00141{bottom:538.373333pt;}
.ydb_c00141{bottom:539.133333pt;}
.ydc_c00141{bottom:549.120000pt;}
.ydd_c00141{bottom:549.893333pt;}
.yda_c00141{bottom:560.640000pt;}
.yd9_c00141{bottom:562.173333pt;}
.yd8_c00141{bottom:564.480000pt;}
.yd5_c00141{bottom:565.253333pt;}
.yd7_c00141{bottom:568.320000pt;}
.yd6_c00141{bottom:571.386667pt;}
.yd4_c00141{bottom:584.453333pt;}
.yd2_c00141{bottom:586.746667pt;}
.yd3_c00141{bottom:589.053333pt;}
.yd0_c00141{bottom:592.133333pt;}
.yd1_c00141{bottom:593.666667pt;}
.ycc_c00141{bottom:609.026667pt;}
.ycd_c00141{bottom:612.093333pt;}
.ycf_c00141{bottom:613.626667pt;}
.yce_c00141{bottom:620.546667pt;}
.yc9_c00141{bottom:626.693333pt;}
.ycb_c00141{bottom:627.453333pt;}
.yc7_c00141{bottom:628.226667pt;}
.yc2_c00141{bottom:630.533333pt;}
.yc3_c00141{bottom:631.293333pt;}
.yca_c00141{bottom:633.600000pt;}
.yc5_c00141{bottom:634.373333pt;}
.yc8_c00141{bottom:635.133333pt;}
.yc6_c00141{bottom:635.906667pt;}
.yc4_c00141{bottom:637.440000pt;}
.yc1_c00141{bottom:648.186667pt;}
.yc0_c00141{bottom:649.733333pt;}
.ybc_c00141{bottom:652.026667pt;}
.ybf_c00141{bottom:655.866667pt;}
.ybe_c00141{bottom:656.640000pt;}
.ybd_c00141{bottom:658.946667pt;}
.ybb_c00141{bottom:670.466667pt;}
.yba_c00141{bottom:672.000000pt;}
.yb8_c00141{bottom:673.533333pt;}
.yb7_c00141{bottom:676.613333pt;}
.yb9_c00141{bottom:677.373333pt;}
.yb5_c00141{bottom:678.906667pt;}
.yb4_c00141{bottom:679.680000pt;}
.yb6_c00141{bottom:681.213333pt;}
.yab_c00141{bottom:695.040000pt;}
.yb1_c00141{bottom:695.813333pt;}
.yac_c00141{bottom:696.573333pt;}
.ya8_c00141{bottom:697.346667pt;}
.yb2_c00141{bottom:698.880000pt;}
.yb3_c00141{bottom:700.413333pt;}
.yaa_c00141{bottom:701.946667pt;}
.ya9_c00141{bottom:702.720000pt;}
.yaf_c00141{bottom:706.560000pt;}
.yb0_c00141{bottom:708.866667pt;}
.yad_c00141{bottom:709.626667pt;}
.yae_c00141{bottom:710.400000pt;}
.ya7_c00141{bottom:714.240000pt;}
.ya5_c00141{bottom:716.546667pt;}
.ya3_c00141{bottom:717.306667pt;}
.ya1_c00141{bottom:718.080000pt;}
.ya6_c00141{bottom:721.146667pt;}
.ya4_c00141{bottom:721.920000pt;}
.ya0_c00141{bottom:722.693333pt;}
.ya2_c00141{bottom:724.226667pt;}
.y9e_c00141{bottom:734.213333pt;}
.y9d_c00141{bottom:734.973333pt;}
.y9c_c00141{bottom:737.280000pt;}
.y9a_c00141{bottom:738.053333pt;}
.y99_c00141{bottom:738.813333pt;}
.y98_c00141{bottom:741.120000pt;}
.y9f_c00141{bottom:743.426667pt;}
.y9b_c00141{bottom:744.186667pt;}
.y96_c00141{bottom:758.013333pt;}
.y95_c00141{bottom:759.546667pt;}
.y94_c00141{bottom:760.320000pt;}
.y97_c00141{bottom:761.093333pt;}
.y92_c00141{bottom:761.853333pt;}
.y93_c00141{bottom:762.626667pt;}
.y91_c00141{bottom:768.000000pt;}
.y90_c00141{bottom:768.773333pt;}
.y8f_c00141{bottom:778.746667pt;}
.y8d_c00141{bottom:781.826667pt;}
.y8c_c00141{bottom:784.133333pt;}
.y8b_c00141{bottom:785.666667pt;}
.y8e_c00141{bottom:787.200000pt;}
.y8a_c00141{bottom:791.040000pt;}
.y88_c00141{bottom:795.653333pt;}
.y86_c00141{bottom:798.720000pt;}
.y87_c00141{bottom:799.493333pt;}
.y82_c00141{bottom:800.253333pt;}
.y84_c00141{bottom:801.786667pt;}
.y85_c00141{bottom:804.866667pt;}
.y83_c00141{bottom:805.626667pt;}
.y89_c00141{bottom:823.293333pt;}
.y7e_c00141{bottom:824.826667pt;}
.y80_c00141{bottom:825.600000pt;}
.y7f_c00141{bottom:826.373333pt;}
.y7c_c00141{bottom:827.133333pt;}
.y81_c00141{bottom:829.440000pt;}
.y7d_c00141{bottom:830.213333pt;}
.y7b_c00141{bottom:845.573333pt;}
.y7a_c00141{bottom:847.866667pt;}
.y77_c00141{bottom:848.640000pt;}
.y79_c00141{bottom:850.173333pt;}
.y78_c00141{bottom:857.093333pt;}
.y76_c00141{bottom:868.613333pt;}
.y71_c00141{bottom:872.453333pt;}
.y70_c00141{bottom:873.213333pt;}
.y74_c00141{bottom:873.986667pt;}
.y73_c00141{bottom:874.746667pt;}
.y6e_c00141{bottom:876.293333pt;}
.y75_c00141{bottom:877.053333pt;}
.y72_c00141{bottom:877.826667pt;}
.y6f_c00141{bottom:879.360000pt;}
.y6c_c00141{bottom:890.880000pt;}
.y6a_c00141{bottom:891.653333pt;}
.y6b_c00141{bottom:893.186667pt;}
.y67_c00141{bottom:894.720000pt;}
.y68_c00141{bottom:895.493333pt;}
.y6d_c00141{bottom:896.253333pt;}
.y69_c00141{bottom:898.560000pt;}
.y63_c00141{bottom:913.920000pt;}
.y61_c00141{bottom:914.693333pt;}
.y66_c00141{bottom:918.533333pt;}
.y65_c00141{bottom:919.293333pt;}
.y64_c00141{bottom:920.066667pt;}
.y5f_c00141{bottom:920.826667pt;}
.y16b_c00141{bottom:922.373333pt;}
.y62_c00141{bottom:923.133333pt;}
.y60_c00141{bottom:923.906667pt;}
.y16a_c00141{bottom:925.440000pt;}
.y169_c00141{bottom:931.586667pt;}
.y5e_c00141{bottom:936.960000pt;}
.y5c_c00141{bottom:937.733333pt;}
.y58_c00141{bottom:940.026667pt;}
.y5d_c00141{bottom:941.573333pt;}
.y59_c00141{bottom:943.106667pt;}
.y5a_c00141{bottom:944.640000pt;}
.y5b_c00141{bottom:945.413333pt;}
.y57_c00141{bottom:946.946667pt;}
.y55_c00141{bottom:957.693333pt;}
.y54_c00141{bottom:959.226667pt;}
.y53_c00141{bottom:960.000000pt;}
.y52_c00141{bottom:960.773333pt;}
.y4f_c00141{bottom:961.533333pt;}
.y56_c00141{bottom:963.066667pt;}
.y50_c00141{bottom:967.680000pt;}
.y51_c00141{bottom:968.453333pt;}
.y4e_c00141{bottom:969.213333pt;}
.y4c_c00141{bottom:979.973333pt;}
.y4a_c00141{bottom:980.733333pt;}
.y4b_c00141{bottom:981.506667pt;}
.y45_c00141{bottom:982.266667pt;}
.y48_c00141{bottom:983.813333pt;}
.y46_c00141{bottom:985.346667pt;}
.y4d_c00141{bottom:986.106667pt;}
.y49_c00141{bottom:989.946667pt;}
.y47_c00141{bottom:990.720000pt;}
.y44_c00141{bottom:1003.013333pt;}
.y43_c00141{bottom:1003.773333pt;}
.y42_c00141{bottom:1005.306667pt;}
.y3f_c00141{bottom:1006.080000pt;}
.y40_c00141{bottom:1008.386667pt;}
.y41_c00141{bottom:1012.226667pt;}
.y3c_c00141{bottom:1024.506667pt;}
.y3d_c00141{bottom:1025.280000pt;}
.y3b_c00141{bottom:1027.586667pt;}
.y3a_c00141{bottom:1028.346667pt;}
.y38_c00141{bottom:1029.120000pt;}
.y3e_c00141{bottom:1029.893333pt;}
.y39_c00141{bottom:1034.493333pt;}
.y36_c00141{bottom:1035.266667pt;}
.y37_c00141{bottom:1036.026667pt;}
.y35_c00141{bottom:1047.546667pt;}
.y34_c00141{bottom:1049.093333pt;}
.y33_c00141{bottom:1049.853333pt;}
.y30_c00141{bottom:1051.386667pt;}
.y2f_c00141{bottom:1052.160000pt;}
.y31_c00141{bottom:1052.933333pt;}
.y32_c00141{bottom:1054.466667pt;}
.y2e_c00141{bottom:1069.826667pt;}
.y2b_c00141{bottom:1072.133333pt;}
.y2a_c00141{bottom:1072.893333pt;}
.y2d_c00141{bottom:1076.733333pt;}
.y2c_c00141{bottom:1078.266667pt;}
.y26_c00141{bottom:1092.093333pt;}
.y28_c00141{bottom:1092.866667pt;}
.y24_c00141{bottom:1094.400000pt;}
.y23_c00141{bottom:1095.173333pt;}
.y21_c00141{bottom:1097.466667pt;}
.y29_c00141{bottom:1098.240000pt;}
.y27_c00141{bottom:1100.546667pt;}
.y25_c00141{bottom:1101.306667pt;}
.y22_c00141{bottom:1102.080000pt;}
.y20_c00141{bottom:1115.133333pt;}
.y1e_c00141{bottom:1115.906667pt;}
.y1c_c00141{bottom:1118.213333pt;}
.y1f_c00141{bottom:1120.506667pt;}
.y1d_c00141{bottom:1124.346667pt;}
.y1b_c00141{bottom:1134.333333pt;}
.y18_c00141{bottom:1135.866667pt;}
.y1a_c00141{bottom:1140.480000pt;}
.y19_c00141{bottom:1142.013333pt;}
.y17_c00141{bottom:1145.853333pt;}
.y16_c00141{bottom:1146.626667pt;}
.y13_c00141{bottom:1158.146667pt;}
.y11_c00141{bottom:1161.986667pt;}
.y14_c00141{bottom:1163.520000pt;}
.y15_c00141{bottom:1166.586667pt;}
.y10_c00141{bottom:1168.133333pt;}
.y12_c00141{bottom:1168.893333pt;}
.yf_c00141{bottom:1179.653333pt;}
.yd_c00141{bottom:1181.186667pt;}
.yc_c00141{bottom:1183.493333pt;}
.yb_c00141{bottom:1184.253333pt;}
.ye_c00141{bottom:1186.560000pt;}
.ya_c00141{bottom:1189.626667pt;}
.y9_c00141{bottom:1191.173333pt;}
.y6_c00141{bottom:1202.693333pt;}
.y4_c00141{bottom:1204.986667pt;}
.y1_c00141{bottom:1207.293333pt;}
.y8_c00141{bottom:1208.066667pt;}
.y7_c00141{bottom:1208.826667pt;}
.y5_c00141{bottom:1211.133333pt;}
.y3_c00141{bottom:1211.906667pt;}
.y2_c00141{bottom:1213.440000pt;}
.y16e_c00141{bottom:1236.480000pt;}
.h12_c00141{height:2.764500pt;}
.h22_c00141{height:4.799479pt;}
.h21_c00141{height:5.519401pt;}
.h1e_c00141{height:8.303099pt;}
.h27_c00141{height:11.038802pt;}
.h16_c00141{height:13.822500pt;}
.h1c_c00141{height:16.606198pt;}
.h28_c00141{height:19.341901pt;}
.h20_c00141{height:22.125599pt;}
.h23_c00141{height:24.861302pt;}
.h1d_c00141{height:27.645000pt;}
.h14_c00141{height:30.428698pt;}
.h7_c00141{height:33.164401pt;}
.hc_c00141{height:35.948099pt;}
.h9_c00141{height:38.683802pt;}
.h1f_c00141{height:41.467500pt;}
.h13_c00141{height:44.251198pt;}
.h3_c00141{height:46.986901pt;}
.h4_c00141{height:49.770599pt;}
.hd_c00141{height:52.506302pt;}
.hb_c00141{height:55.290000pt;}
.h5_c00141{height:58.073698pt;}
.ha_c00141{height:60.809401pt;}
.h19_c00141{height:63.593099pt;}
.h10_c00141{height:66.328802pt;}
.hf_c00141{height:69.112500pt;}
.h1b_c00141{height:70.650000pt;}
.h11_c00141{height:71.896198pt;}
.he_c00141{height:74.631901pt;}
.h6_c00141{height:77.415599pt;}
.h1a_c00141{height:80.151302pt;}
.h2_c00141{height:82.935000pt;}
.h8_c00141{height:85.718698pt;}
.h15_c00141{height:88.454401pt;}
.h18_c00141{height:91.238099pt;}
.h17_c00141{height:93.973802pt;}
.h25_c00141{height:96.757500pt;}
.h29_c00141{height:99.541198pt;}
.h24_c00141{height:102.276901pt;}
.h2a_c00141{height:105.060599pt;}
.h26_c00141{height:107.796302pt;}
.h2b_c00141{height:118.883099pt;}
.h2c_c00141{height:129.921901pt;}
.h1_c00141{height:1336.000000pt;}
.h0_c00141{height:1336.320000pt;}
.w0_c00141{width:967.680000pt;}
.w1_c00141{width:968.000000pt;}
.x0_c00141{left:0.000000pt;}
.xe4_c00141{left:116.733333pt;}
.xe3_c00141{left:118.266667pt;}
.xe5_c00141{left:155.133333pt;}
.xc8_c00141{left:195.066667pt;}
.x6e_c00141{left:196.613333pt;}
.x2a_c00141{left:198.906667pt;}
.x5f_c00141{left:200.453333pt;}
.x39_c00141{left:202.746667pt;}
.xb6_c00141{left:204.293333pt;}
.xd_c00141{left:206.586667pt;}
.x1_c00141{left:208.893333pt;}
.xdd_c00141{left:211.200000pt;}
.x9d_c00141{left:215.040000pt;}
.xaa_c00141{left:224.253333pt;}
.x6f_c00141{left:226.560000pt;}
.x16_c00141{left:229.626667pt;}
.xb8_c00141{left:231.173333pt;}
.x42_c00141{left:233.466667pt;}
.xe_c00141{left:235.013333pt;}
.xc5_c00141{left:238.080000pt;}
.x43_c00141{left:240.386667pt;}
.xd1_c00141{left:244.226667pt;}
.x59_c00141{left:245.760000pt;}
.x84_c00141{left:247.293333pt;}
.x1c_c00141{left:248.826667pt;}
.x70_c00141{left:250.373333pt;}
.x2_c00141{left:252.666667pt;}
.x85_c00141{left:254.213333pt;}
.x4e_c00141{left:256.506667pt;}
.xc6_c00141{left:262.653333pt;}
.x3_c00141{left:268.800000pt;}
.x51_c00141{left:271.106667pt;}
.x64_c00141{left:273.413333pt;}
.x44_c00141{left:276.480000pt;}
.xda_c00141{left:278.786667pt;}
.xcf_c00141{left:284.160000pt;}
.x4_c00141{left:285.693333pt;}
.x86_c00141{left:289.533333pt;}
.xad_c00141{left:291.840000pt;}
.x33_c00141{left:295.680000pt;}
.x74_c00141{left:298.746667pt;}
.x82_c00141{left:303.360000pt;}
.x60_c00141{left:304.893333pt;}
.xa4_c00141{left:307.200000pt;}
.x2b_c00141{left:308.733333pt;}
.x3a_c00141{left:310.266667pt;}
.x94_c00141{left:311.813333pt;}
.xbd_c00141{left:313.346667pt;}
.x8f_c00141{left:314.880000pt;}
.xde_c00141{left:317.186667pt;}
.x52_c00141{left:318.720000pt;}
.x87_c00141{left:321.786667pt;}
.x5_c00141{left:325.626667pt;}
.xb1_c00141{left:328.706667pt;}
.xb3_c00141{left:330.240000pt;}
.x45_c00141{left:331.773333pt;}
.x9e_c00141{left:334.080000pt;}
.x23_c00141{left:337.146667pt;}
.x3b_c00141{left:338.693333pt;}
.xa5_c00141{left:341.760000pt;}
.xd6_c00141{left:343.293333pt;}
.x89_c00141{left:345.600000pt;}
.xb9_c00141{left:348.666667pt;}
.xc9_c00141{left:350.213333pt;}
.x1d_c00141{left:351.746667pt;}
.x53_c00141{left:353.280000pt;}
.x90_c00141{left:355.586667pt;}
.xf_c00141{left:357.893333pt;}
.x46_c00141{left:362.493333pt;}
.x65_c00141{left:364.800000pt;}
.xd0_c00141{left:366.333333pt;}
.xca_c00141{left:367.866667pt;}
.x68_c00141{left:370.173333pt;}
.x91_c00141{left:374.013333pt;}
.x95_c00141{left:380.160000pt;}
.x47_c00141{left:381.693333pt;}
.x61_c00141{left:383.226667pt;}
.x24_c00141{left:384.773333pt;}
.xe0_c00141{left:388.613333pt;}
.x69_c00141{left:390.906667pt;}
.x2c_c00141{left:395.520000pt;}
.xc2_c00141{left:397.053333pt;}
.x54_c00141{left:399.360000pt;}
.xbe_c00141{left:400.893333pt;}
.xa6_c00141{left:402.426667pt;}
.x34_c00141{left:407.040000pt;}
.x7c_c00141{left:408.573333pt;}
.x8a_c00141{left:412.413333pt;}
.x2d_c00141{left:418.560000pt;}
.xd2_c00141{left:420.093333pt;}
.x6_c00141{left:421.626667pt;}
.xba_c00141{left:425.466667pt;}
.x62_c00141{left:427.773333pt;}
.x5a_c00141{left:430.853333pt;}
.x76_c00141{left:433.146667pt;}
.x1e_c00141{left:437.760000pt;}
.x48_c00141{left:440.066667pt;}
.x5b_c00141{left:443.133333pt;}
.xb2_c00141{left:445.440000pt;}
.x55_c00141{left:446.973333pt;}
.x17_c00141{left:449.280000pt;}
.xbf_c00141{left:450.813333pt;}
.x2e_c00141{left:453.120000pt;}
.x3c_c00141{left:454.653333pt;}
.x8b_c00141{left:456.186667pt;}
.xd7_c00141{left:457.733333pt;}
.x3d_c00141{left:463.106667pt;}
.x7_c00141{left:466.946667pt;}
.x9f_c00141{left:469.253333pt;}
.x25_c00141{left:472.320000pt;}
.x10_c00141{left:476.160000pt;}
.xc0_c00141{left:477.693333pt;}
.x66_c00141{left:480.000000pt;}
.x35_c00141{left:483.066667pt;}
.x71_c00141{left:484.613333pt;}
.xa8_c00141{left:486.146667pt;}
.x49_c00141{left:491.520000pt;}
.xab_c00141{left:493.826667pt;}
.x7d_c00141{left:496.133333pt;}
.xd3_c00141{left:497.666667pt;}
.x2f_c00141{left:499.200000pt;}
.x18_c00141{left:502.266667pt;}
.x3e_c00141{left:504.573333pt;}
.x96_c00141{left:506.106667pt;}
.x4a_c00141{left:509.946667pt;}
.x36_c00141{left:514.560000pt;}
.xe1_c00141{left:516.093333pt;}
.xd8_c00141{left:518.400000pt;}
.xae_c00141{left:520.706667pt;}
.x19_c00141{left:522.240000pt;}
.x1f_c00141{left:524.546667pt;}
.x4f_c00141{left:526.080000pt;}
.x11_c00141{left:533.760000pt;}
.x77_c00141{left:536.826667pt;}
.xaf_c00141{left:539.133333pt;}
.x7e_c00141{left:541.440000pt;}
.xb7_c00141{left:544.506667pt;}
.x8c_c00141{left:546.813333pt;}
.x6a_c00141{left:548.346667pt;}
.x50_c00141{left:551.426667pt;}
.xc3_c00141{left:553.733333pt;}
.xdf_c00141{left:555.266667pt;}
.x72_c00141{left:556.800000pt;}
.x26_c00141{left:559.106667pt;}
.xb4_c00141{left:560.640000pt;}
.x97_c00141{left:563.706667pt;}
.x4b_c00141{left:568.320000pt;}
.x56_c00141{left:574.466667pt;}
.x8_c00141{left:576.773333pt;}
.x78_c00141{left:579.840000pt;}
.xbb_c00141{left:584.453333pt;}
.x30_c00141{left:586.746667pt;}
.xd9_c00141{left:589.826667pt;}
.x98_c00141{left:591.360000pt;}
.x9_c00141{left:593.666667pt;}
.x3f_c00141{left:595.200000pt;}
.xb5_c00141{left:598.266667pt;}
.x37_c00141{left:599.813333pt;}
.xa2_c00141{left:602.106667pt;}
.x7f_c00141{left:605.946667pt;}
.x99_c00141{left:609.026667pt;}
.x12_c00141{left:610.560000pt;}
.x8d_c00141{left:612.866667pt;}
.xa_c00141{left:614.400000pt;}
.x38_c00141{left:616.706667pt;}
.xdb_c00141{left:618.240000pt;}
.xa9_c00141{left:621.306667pt;}
.x63_c00141{left:622.853333pt;}
.xe2_c00141{left:625.146667pt;}
.x9a_c00141{left:628.226667pt;}
.x79_c00141{left:629.760000pt;}
.x27_c00141{left:631.293333pt;}
.x31_c00141{left:633.600000pt;}
.xd4_c00141{left:635.133333pt;}
.x4c_c00141{left:637.440000pt;}
.x92_c00141{left:639.746667pt;}
.x57_c00141{left:641.280000pt;}
.x20_c00141{left:642.813333pt;}
.xa7_c00141{left:645.893333pt;}
.xc4_c00141{left:648.186667pt;}
.x75_c00141{left:655.106667pt;}
.x40_c00141{left:660.480000pt;}
.xd5_c00141{left:662.013333pt;}
.xcd_c00141{left:665.093333pt;}
.xbc_c00141{left:667.386667pt;}
.x6b_c00141{left:669.693333pt;}
.x5c_c00141{left:672.773333pt;}
.x13_c00141{left:674.306667pt;}
.x32_c00141{left:680.453333pt;}
.x83_c00141{left:681.986667pt;}
.x7a_c00141{left:684.293333pt;}
.x28_c00141{left:687.360000pt;}
.xcb_c00141{left:688.893333pt;}
.xb_c00141{left:690.426667pt;}
.x93_c00141{left:691.973333pt;}
.x21_c00141{left:694.266667pt;}
.xac_c00141{left:696.573333pt;}
.xdc_c00141{left:698.880000pt;}
.x6c_c00141{left:701.186667pt;}
.xa0_c00141{left:704.253333pt;}
.x14_c00141{left:710.400000pt;}
.xcc_c00141{left:715.013333pt;}
.x1a_c00141{left:716.546667pt;}
.x22_c00141{left:718.080000pt;}
.xc7_c00141{left:721.146667pt;}
.x9b_c00141{left:725.760000pt;}
.xc_c00141{left:728.066667pt;}
.xb0_c00141{left:731.133333pt;}
.x41_c00141{left:732.666667pt;}
.x8e_c00141{left:738.053333pt;}
.x88_c00141{left:741.893333pt;}
.xa3_c00141{left:744.186667pt;}
.x80_c00141{left:747.266667pt;}
.xa1_c00141{left:749.573333pt;}
.xc1_c00141{left:751.106667pt;}
.x58_c00141{left:752.640000pt;}
.x4d_c00141{left:756.480000pt;}
.xe6_c00141{left:758.013333pt;}
.x29_c00141{left:760.320000pt;}
.x1b_c00141{left:768.000000pt;}
.x73_c00141{left:770.306667pt;}
.x9c_c00141{left:774.146667pt;}
.xe8_c00141{left:779.520000pt;}
.xe9_c00141{left:781.053333pt;}
.x15_c00141{left:783.360000pt;}
.x67_c00141{left:786.426667pt;}
.x5d_c00141{left:788.733333pt;}
.x7b_c00141{left:791.040000pt;}
.x81_c00141{left:794.106667pt;}
.x6d_c00141{left:796.413333pt;}
.xce_c00141{left:799.493333pt;}
.x5e_c00141{left:805.626667pt;}
.xe7_c00141{left:811.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a09d965f87a868ae97e9fc25.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.109863;font-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_c00142{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.md1_c00142{transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);}
.m6f_c00142{transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);}
.m11c_c00142{transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);}
.m101_c00142{transform:matrix(0.063325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063325,0.000000,0.000000,0.250000,0,0);}
.m68_c00142{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.m56_c00142{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m13d_c00142{transform:matrix(0.076125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076125,0.000000,0.000000,0.250000,0,0);}
.m84_c00142{transform:matrix(0.082425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082425,0.000000,0.000000,0.250000,0,0);}
.m42_c00142{transform:matrix(0.083800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083800,0.000000,0.000000,0.250000,0,0);}
.mbf_c00142{transform:matrix(0.089350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089350,0.000000,0.000000,0.250000,0,0);}
.m10e_c00142{transform:matrix(0.091925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091925,0.000000,0.000000,0.250000,0,0);}
.m171_c00142{transform:matrix(0.097600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097600,0.000000,0.000000,0.250000,0,0);}
.mb2_c00142{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);}
.m3c_c00142{transform:matrix(0.103025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103025,0.000000,0.000000,0.250000,0,0);}
.m40_c00142{transform:matrix(0.106100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106100,0.000000,0.000000,0.250000,0,0);}
.mf9_c00142{transform:matrix(0.106500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106500,0.000000,0.000000,0.250000,0,0);}
.m75_c00142{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m173_c00142{transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);}
.m71_c00142{transform:matrix(0.121600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121600,0.000000,0.000000,0.250000,0,0);}
.mbb_c00142{transform:matrix(0.122075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122075,0.000000,0.000000,0.250000,0,0);}
.m162_c00142{transform:matrix(0.122175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122175,0.000000,0.000000,0.250000,0,0);}
.m174_c00142{transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);}
.m172_c00142{transform:matrix(0.124700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124700,0.000000,0.000000,0.250000,0,0);}
.mb9_c00142{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00142{transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);}
.mc9_c00142{transform:matrix(0.130150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130150,0.000000,0.000000,0.250000,0,0);}
.m78_c00142{transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);}
.m96_c00142{transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);}
.ma1_c00142{transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);}
.m2e_c00142{transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);}
.m5f_c00142{transform:matrix(0.134825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134825,0.000000,0.000000,0.250000,0,0);}
.m142_c00142{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00142{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m10_c00142{transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);}
.m124_c00142{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);}
.m14f_c00142{transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);}
.m109_c00142{transform:matrix(0.140075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140075,0.000000,0.000000,0.250000,0,0);}
.m58_c00142{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00142{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.m8_c00142{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m86_c00142{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.md6_c00142{transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);}
.m95_c00142{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.m164_c00142{transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);}
.m8c_c00142{transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);}
.mb8_c00142{transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);}
.m9b_c00142{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);}
.m4e_c00142{transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);}
.m6a_c00142{transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);}
.m148_c00142{transform:matrix(0.149900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149900,0.000000,0.000000,0.250000,0,0);}
.m16b_c00142{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);}
.m15c_c00142{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m77_c00142{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.m16a_c00142{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);}
.mae_c00142{transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);}
.m154_c00142{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.maf_c00142{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.mbd_c00142{transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);}
.m14_c00142{transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);}
.ma7_c00142{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.m144_c00142{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m16_c00142{transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);}
.mf7_c00142{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.m43_c00142{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m41_c00142{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.mcb_c00142{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m60_c00142{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);}
.mb_c00142{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);}
.me_c00142{transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);}
.m136_c00142{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00142{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.m7c_c00142{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.me5_c00142{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);}
.m87_c00142{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);}
.m14e_c00142{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);}
.m13_c00142{transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);}
.m15e_c00142{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m169_c00142{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.mcc_c00142{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);}
.m10b_c00142{transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);}
.me7_c00142{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.m57_c00142{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);}
.m139_c00142{transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);}
.mc1_c00142{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m161_c00142{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m9d_c00142{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);}
.m51_c00142{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m16f_c00142{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m135_c00142{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);}
.mc0_c00142{transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);}
.m3b_c00142{transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);}
.m20_c00142{transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);}
.m100_c00142{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);}
.mdf_c00142{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);}
.m50_c00142{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.me4_c00142{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m74_c00142{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);}
.mbe_c00142{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);}
.m0_c00142{transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);}
.mb4_c00142{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m140_c00142{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.mf6_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);}
.mb5_c00142{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m61_c00142{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m79_c00142{transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);}
.m8a_c00142{transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);}
.m6c_c00142{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.m151_c00142{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);}
.m16c_c00142{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);}
.m1f_c00142{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.m9c_c00142{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);}
.ma9_c00142{transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);}
.ma_c00142{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);}
.m170_c00142{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m99_c00142{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.mb3_c00142{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);}
.m150_c00142{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m4b_c00142{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);}
.m1e_c00142{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);}
.m125_c00142{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);}
.m33_c00142{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m146_c00142{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);}
.m166_c00142{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.m89_c00142{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);}
.mdd_c00142{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m15f_c00142{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.mcf_c00142{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);}
.mcd_c00142{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m23_c00142{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m14a_c00142{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.ma8_c00142{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);}
.mc8_c00142{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);}
.md5_c00142{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.md9_c00142{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.mc5_c00142{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);}
.m1b_c00142{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m70_c00142{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.m5a_c00142{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.m76_c00142{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);}
.m168_c00142{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);}
.m66_c00142{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);}
.m137_c00142{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m10d_c00142{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mab_c00142{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.mc6_c00142{transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);}
.me6_c00142{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m24_c00142{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.mde_c00142{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m165_c00142{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);}
.m13c_c00142{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.m145_c00142{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m81_c00142{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);}
.m12f_c00142{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mea_c00142{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m1a_c00142{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);}
.m10a_c00142{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);}
.m117_c00142{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m15a_c00142{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);}
.m9e_c00142{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);}
.mc4_c00142{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);}
.m9a_c00142{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m94_c00142{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);}
.m120_c00142{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);}
.m127_c00142{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);}
.mf8_c00142{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m143_c00142{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.mef_c00142{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m158_c00142{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);}
.m13e_c00142{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mba_c00142{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);}
.m12c_c00142{transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);}
.m26_c00142{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.m38_c00142{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.m69_c00142{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.mbc_c00142{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);}
.me8_c00142{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);}
.m4a_c00142{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);}
.me2_c00142{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.mac_c00142{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m5c_c00142{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);}
.m4d_c00142{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);}
.m138_c00142{transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);}
.mfc_c00142{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.m8f_c00142{transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);}
.m3e_c00142{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m29_c00142{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.mdb_c00142{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);}
.md7_c00142{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m15_c00142{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mf2_c00142{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);}
.m52_c00142{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);}
.m83_c00142{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);}
.m25_c00142{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);}
.mca_c00142{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.m12b_c00142{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.md3_c00142{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00142{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.me1_c00142{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m12_c00142{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);}
.m34_c00142{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);}
.m114_c00142{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);}
.mc7_c00142{transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);}
.mdc_c00142{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.m133_c00142{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);}
.m97_c00142{transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);}
.m149_c00142{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.mf3_c00142{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);}
.m92_c00142{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m8d_c00142{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);}
.m10f_c00142{transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);}
.m13f_c00142{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);}
.mce_c00142{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);}
.m8e_c00142{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);}
.m128_c00142{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);}
.m65_c00142{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);}
.m12d_c00142{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);}
.m175_c00142{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.m160_c00142{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);}
.m98_c00142{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.m90_c00142{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.m118_c00142{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);}
.m1d_c00142{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);}
.mb0_c00142{transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);}
.m147_c00142{transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);}
.m9f_c00142{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);}
.m156_c00142{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.m31_c00142{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m11e_c00142{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);}
.m3f_c00142{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.md4_c00142{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);}
.mb6_c00142{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);}
.m30_c00142{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.m12e_c00142{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.m82_c00142{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);}
.mb7_c00142{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m11d_c00142{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mc_c00142{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);}
.mad_c00142{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);}
.m44_c00142{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.maa_c00142{transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);}
.m163_c00142{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.m2_c00142{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m1c_c00142{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);}
.m121_c00142{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);}
.m16d_c00142{transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);}
.me9_c00142{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);}
.m21_c00142{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);}
.m11_c00142{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);}
.me0_c00142{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);}
.mda_c00142{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m153_c00142{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);}
.me3_c00142{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);}
.m15d_c00142{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);}
.m130_c00142{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);}
.m46_c00142{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);}
.m2f_c00142{transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);}
.m63_c00142{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m49_c00142{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);}
.m11f_c00142{transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);}
.meb_c00142{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.m16e_c00142{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m167_c00142{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m157_c00142{transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);}
.m5e_c00142{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);}
.m15b_c00142{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m14c_c00142{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.m85_c00142{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);}
.m5b_c00142{transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);}
.mec_c00142{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);}
.m111_c00142{transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);}
.m6b_c00142{transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);}
.md2_c00142{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m134_c00142{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);}
.mfa_c00142{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);}
.m123_c00142{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.m14d_c00142{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.m152_c00142{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);}
.m132_c00142{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.m131_c00142{transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);}
.m47_c00142{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m126_c00142{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);}
.m73_c00142{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);}
.mf4_c00142{transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);}
.mee_c00142{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);}
.m7e_c00142{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);}
.m155_c00142{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);}
.m2c_c00142{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);}
.m4c_c00142{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m35_c00142{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_c00142{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);}
.m119_c00142{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);}
.m67_c00142{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);}
.m54_c00142{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf_c00142{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00142{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00142{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);}
.m1_c00142{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m27_c00142{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);}
.m55_c00142{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);}
.m6_c00142{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m59_c00142{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);}
.m7_c00142{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m62_c00142{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m108_c00142{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);}
.m48_c00142{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c00142{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);}
.m3_c00142{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);}
.m10c_c00142{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m28_c00142{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c00142{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);}
.m11a_c00142{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00142{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);}
.m5d_c00142{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00142{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m64_c00142{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00142{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m91_c00142{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00142{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00142{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c00142{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);}
.m37_c00142{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m106_c00142{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m18_c00142{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00142{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md8_c00142{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);}
.m13a_c00142{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);}
.m88_c00142{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00142{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md_c00142{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);}
.m4f_c00142{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m141_c00142{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m113_c00142{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m116_c00142{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00142{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);}
.m7d_c00142{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m159_c00142{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00142{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mf1_c00142{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m45_c00142{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);}
.m8b_c00142{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m122_c00142{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_c00142{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m115_c00142{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m129_c00142{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m17_c00142{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m102_c00142{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);}
.m105_c00142{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m93_c00142{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mff_c00142{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m112_c00142{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00142{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m104_c00142{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m107_c00142{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m72_c00142{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);}
.m103_c00142{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00142{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.med_c00142{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m14b_c00142{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m110_c00142{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m80_c00142{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00142{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);}
.m32_c00142{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00142{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00142{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m176_c00142{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.md0_c00142{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00142{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00142{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m39_c00142{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00142{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00142{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00142{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00142{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00142{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.v2_c00142{vertical-align:-3.480000px;}
.v0_c00142{vertical-align:0.000000px;}
.v1_c00142{vertical-align:6.900000px;}
.ls2_c00142{letter-spacing:0.000000px;}
.ls1_c00142{letter-spacing:13.319580px;}
.ls0_c00142{letter-spacing:52.046700px;}
.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;}
}
.ws1_c00142{word-spacing:-32.458560px;}
.ws0_c00142{word-spacing:-21.710760px;}
.ws2_c00142{word-spacing:0.000000px;}
.fc0_c00142{color:transparent;}
.fs4_c00142{font-size:3.456000px;}
.fs5_c00142{font-size:6.000000px;}
.fs14_c00142{font-size:6.900000px;}
.fs20_c00142{font-size:10.380000px;}
.fs3_c00142{font-size:13.800000px;}
.fs15_c00142{font-size:17.280000px;}
.fse_c00142{font-size:20.760000px;}
.fsc_c00142{font-size:24.180000px;}
.fs1f_c00142{font-size:27.660000px;}
.fs25_c00142{font-size:31.080000px;}
.fs1e_c00142{font-size:34.560000px;}
.fs1b_c00142{font-size:38.040000px;}
.fs13_c00142{font-size:41.460000px;}
.fsf_c00142{font-size:44.940000px;}
.fs10_c00142{font-size:48.360000px;}
.fs1c_c00142{font-size:51.840000px;}
.fs19_c00142{font-size:55.320000px;}
.fs12_c00142{font-size:58.740000px;}
.fs11_c00142{font-size:62.220000px;}
.fs0_c00142{font-size:65.640000px;}
.fs2_c00142{font-size:69.120000px;}
.fs8_c00142{font-size:72.600000px;}
.fs1_c00142{font-size:76.020000px;}
.fs1d_c00142{font-size:79.500000px;}
.fs21_c00142{font-size:82.920000px;}
.fs9_c00142{font-size:86.400000px;}
.fs7_c00142{font-size:89.880000px;}
.fsb_c00142{font-size:93.300000px;}
.fsd_c00142{font-size:96.780000px;}
.fs6_c00142{font-size:100.200000px;}
.fsa_c00142{font-size:103.680000px;}
.fs17_c00142{font-size:107.160000px;}
.fs22_c00142{font-size:110.580000px;}
.fs1a_c00142{font-size:114.060000px;}
.fs23_c00142{font-size:117.480000px;}
.fs18_c00142{font-size:120.960000px;}
.fs16_c00142{font-size:131.340000px;}
.fs24_c00142{font-size:196.980000px;}
.y0_c00142{bottom:0.000000px;}
.y150_c00142{bottom:194.400000px;}
.y14d_c00142{bottom:222.915000px;}
.y14b_c00142{bottom:224.640000px;}
.y14a_c00142{bottom:226.365000px;}
.y14e_c00142{bottom:227.235000px;}
.y14f_c00142{bottom:228.090000px;}
.y14c_c00142{bottom:228.960000px;}
.y147_c00142{bottom:233.280000px;}
.y149_c00142{bottom:236.730000px;}
.y148_c00142{bottom:237.600000px;}
.y143_c00142{bottom:253.155000px;}
.y144_c00142{bottom:254.010000px;}
.y140_c00142{bottom:254.880000px;}
.y13f_c00142{bottom:255.750000px;}
.y141_c00142{bottom:257.475000px;}
.y146_c00142{bottom:258.330000px;}
.y142_c00142{bottom:260.070000px;}
.y145_c00142{bottom:260.925000px;}
.y13e_c00142{bottom:278.205000px;}
.y13b_c00142{bottom:279.930000px;}
.y13a_c00142{bottom:280.800000px;}
.y13d_c00142{bottom:285.120000px;}
.y13c_c00142{bottom:287.715000px;}
.y137_c00142{bottom:304.125000px;}
.y135_c00142{bottom:304.995000px;}
.y133_c00142{bottom:306.720000px;}
.y139_c00142{bottom:308.445000px;}
.y138_c00142{bottom:311.910000px;}
.y134_c00142{bottom:312.765000px;}
.y136_c00142{bottom:313.635000px;}
.y132_c00142{bottom:314.490000px;}
.y12e_c00142{bottom:328.320000px;}
.y12b_c00142{bottom:329.190000px;}
.y12c_c00142{bottom:330.045000px;}
.y131_c00142{bottom:331.770000px;}
.y12d_c00142{bottom:335.235000px;}
.y130_c00142{bottom:336.960000px;}
.y12f_c00142{bottom:337.830000px;}
.y125_c00142{bottom:355.965000px;}
.y123_c00142{bottom:356.835000px;}
.y129_c00142{bottom:357.690000px;}
.y126_c00142{bottom:358.560000px;}
.y128_c00142{bottom:360.285000px;}
.y12a_c00142{bottom:361.155000px;}
.y127_c00142{bottom:362.880000px;}
.y124_c00142{bottom:363.750000px;}
.y11c_c00142{bottom:380.160000px;}
.y120_c00142{bottom:381.030000px;}
.y11d_c00142{bottom:381.885000px;}
.y121_c00142{bottom:382.755000px;}
.y122_c00142{bottom:384.480000px;}
.y11b_c00142{bottom:385.350000px;}
.y119_c00142{bottom:387.075000px;}
.y11f_c00142{bottom:387.930000px;}
.y11e_c00142{bottom:388.800000px;}
.y11a_c00142{bottom:389.670000px;}
.y116_c00142{bottom:405.210000px;}
.y112_c00142{bottom:406.080000px;}
.y113_c00142{bottom:406.950000px;}
.y114_c00142{bottom:407.805000px;}
.y115_c00142{bottom:410.400000px;}
.y118_c00142{bottom:412.995000px;}
.y117_c00142{bottom:413.850000px;}
.y110_c00142{bottom:414.720000px;}
.y111_c00142{bottom:415.590000px;}
.y10d_c00142{bottom:432.000000px;}
.y10a_c00142{bottom:432.870000px;}
.y109_c00142{bottom:435.450000px;}
.y10c_c00142{bottom:436.320000px;}
.y10f_c00142{bottom:438.045000px;}
.y10e_c00142{bottom:438.915000px;}
.y10b_c00142{bottom:439.770000px;}
.y108_c00142{bottom:440.640000px;}
.y107_c00142{bottom:457.050000px;}
.y104_c00142{bottom:457.920000px;}
.yfe_c00142{bottom:458.790000px;}
.y103_c00142{bottom:459.645000px;}
.y106_c00142{bottom:460.515000px;}
.y105_c00142{bottom:463.965000px;}
.y100_c00142{bottom:466.560000px;}
.yff_c00142{bottom:467.430000px;}
.y101_c00142{bottom:470.880000px;}
.yf6_c00142{bottom:476.925000px;}
.y102_c00142{bottom:478.650000px;}
.yfb_c00142{bottom:482.115000px;}
.yf9_c00142{bottom:482.970000px;}
.yfc_c00142{bottom:485.565000px;}
.yf7_c00142{bottom:488.160000px;}
.yfd_c00142{bottom:489.030000px;}
.yfa_c00142{bottom:489.885000px;}
.yf8_c00142{bottom:490.755000px;}
.yf2_c00142{bottom:508.035000px;}
.yf3_c00142{bottom:508.890000px;}
.yf1_c00142{bottom:512.355000px;}
.yf5_c00142{bottom:513.210000px;}
.yf4_c00142{bottom:514.950000px;}
.yef_c00142{bottom:519.270000px;}
.yf0_c00142{bottom:520.995000px;}
.ye8_c00142{bottom:533.085000px;}
.ye9_c00142{bottom:535.680000px;}
.yee_c00142{bottom:536.550000px;}
.yed_c00142{bottom:540.000000px;}
.yec_c00142{bottom:540.870000px;}
.yea_c00142{bottom:541.725000px;}
.yeb_c00142{bottom:542.595000px;}
.ye6_c00142{bottom:558.150000px;}
.ye5_c00142{bottom:559.005000px;}
.ye7_c00142{bottom:561.600000px;}
.ye3_c00142{bottom:565.920000px;}
.ye4_c00142{bottom:566.790000px;}
.ye2_c00142{bottom:568.515000px;}
.ye1_c00142{bottom:571.965000px;}
.ye0_c00142{bottom:591.840000px;}
.yde_c00142{bottom:593.565000px;}
.ydf_c00142{bottom:594.435000px;}
.ydd_c00142{bottom:599.610000px;}
.yd9_c00142{bottom:616.035000px;}
.yda_c00142{bottom:616.890000px;}
.ydc_c00142{bottom:626.400000px;}
.ydb_c00142{bottom:630.720000px;}
.yd0_c00142{bottom:705.030000px;}
.yd1_c00142{bottom:707.610000px;}
.ycd_c00142{bottom:709.350000px;}
.yd4_c00142{bottom:710.205000px;}
.yd2_c00142{bottom:711.930000px;}
.yd3_c00142{bottom:715.395000px;}
.ycf_c00142{bottom:716.250000px;}
.yce_c00142{bottom:717.120000px;}
.ycb_c00142{bottom:733.530000px;}
.yc7_c00142{bottom:734.400000px;}
.yc9_c00142{bottom:738.720000px;}
.ycc_c00142{bottom:739.590000px;}
.yca_c00142{bottom:740.445000px;}
.yc8_c00142{bottom:741.315000px;}
.yc6_c00142{bottom:742.170000px;}
.yc5_c00142{bottom:743.040000px;}
.yd8_c00142{bottom:753.405000px;}
.ybf_c00142{bottom:759.450000px;}
.ybe_c00142{bottom:760.320000px;}
.yc0_c00142{bottom:761.190000px;}
.yc3_c00142{bottom:762.045000px;}
.yc1_c00142{bottom:763.770000px;}
.yc4_c00142{bottom:766.365000px;}
.yc2_c00142{bottom:767.235000px;}
.ybc_c00142{bottom:783.645000px;}
.ybb_c00142{bottom:784.515000px;}
.yba_c00142{bottom:785.370000px;}
.ybd_c00142{bottom:791.430000px;}
.yd7_c00142{bottom:804.390000px;}
.yb7_c00142{bottom:810.435000px;}
.yb4_c00142{bottom:812.160000px;}
.yb9_c00142{bottom:813.030000px;}
.yb5_c00142{bottom:813.885000px;}
.yb6_c00142{bottom:816.480000px;}
.yb8_c00142{bottom:817.350000px;}
.yb2_c00142{bottom:834.630000px;}
.yb3_c00142{bottom:838.950000px;}
.yb1_c00142{bottom:840.675000px;}
.yb0_c00142{bottom:858.810000px;}
.yaf_c00142{bottom:859.680000px;}
.yab_c00142{bottom:860.550000px;}
.yac_c00142{bottom:861.405000px;}
.ya9_c00142{bottom:864.870000px;}
.yaa_c00142{bottom:865.725000px;}
.yae_c00142{bottom:866.595000px;}
.yad_c00142{bottom:867.450000px;}
.ya8_c00142{bottom:883.875000px;}
.ya6_c00142{bottom:884.730000px;}
.ya4_c00142{bottom:885.600000px;}
.ya5_c00142{bottom:891.645000px;}
.ya7_c00142{bottom:892.515000px;}
.ya3_c00142{bottom:909.795000px;}
.y9e_c00142{bottom:910.650000px;}
.ya1_c00142{bottom:911.520000px;}
.y9f_c00142{bottom:912.390000px;}
.y9b_c00142{bottom:913.245000px;}
.ya0_c00142{bottom:914.115000px;}
.y9d_c00142{bottom:914.970000px;}
.y9c_c00142{bottom:916.710000px;}
.ya2_c00142{bottom:917.565000px;}
.y9a_c00142{bottom:935.715000px;}
.y96_c00142{bottom:936.570000px;}
.y95_c00142{bottom:939.165000px;}
.y99_c00142{bottom:940.890000px;}
.y97_c00142{bottom:942.630000px;}
.y98_c00142{bottom:943.485000px;}
.y93_c00142{bottom:960.765000px;}
.y8e_c00142{bottom:961.635000px;}
.y8c_c00142{bottom:964.230000px;}
.y92_c00142{bottom:965.085000px;}
.y91_c00142{bottom:965.955000px;}
.y94_c00142{bottom:966.810000px;}
.y90_c00142{bottom:967.680000px;}
.y8f_c00142{bottom:968.550000px;}
.y8d_c00142{bottom:978.045000px;}
.y82_c00142{bottom:987.555000px;}
.y81_c00142{bottom:988.410000px;}
.y88_c00142{bottom:989.280000px;}
.y8b_c00142{bottom:991.005000px;}
.y83_c00142{bottom:991.875000px;}
.y86_c00142{bottom:993.600000px;}
.y8a_c00142{bottom:994.470000px;}
.y89_c00142{bottom:995.325000px;}
.y85_c00142{bottom:1000.515000px;}
.y87_c00142{bottom:1003.110000px;}
.y84_c00142{bottom:1008.285000px;}
.y7c_c00142{bottom:1010.010000px;}
.y7f_c00142{bottom:1010.880000px;}
.y7a_c00142{bottom:1011.750000px;}
.y7b_c00142{bottom:1013.475000px;}
.y7e_c00142{bottom:1015.200000px;}
.y80_c00142{bottom:1016.070000px;}
.y79_c00142{bottom:1017.795000px;}
.y7d_c00142{bottom:1018.650000px;}
.y78_c00142{bottom:1019.520000px;}
.y71_c00142{bottom:1036.800000px;}
.y73_c00142{bottom:1038.525000px;}
.y77_c00142{bottom:1039.395000px;}
.y72_c00142{bottom:1041.120000px;}
.y76_c00142{bottom:1041.990000px;}
.y70_c00142{bottom:1042.845000px;}
.y75_c00142{bottom:1043.715000px;}
.y74_c00142{bottom:1044.570000px;}
.y6e_c00142{bottom:1059.270000px;}
.y65_c00142{bottom:1060.125000px;}
.y6c_c00142{bottom:1060.995000px;}
.y6b_c00142{bottom:1061.850000px;}
.y69_c00142{bottom:1062.720000px;}
.y6a_c00142{bottom:1063.590000px;}
.y67_c00142{bottom:1065.315000px;}
.y66_c00142{bottom:1067.040000px;}
.y6d_c00142{bottom:1068.765000px;}
.y6f_c00142{bottom:1069.635000px;}
.y68_c00142{bottom:1070.490000px;}
.y62_c00142{bottom:1086.045000px;}
.y64_c00142{bottom:1092.960000px;}
.y63_c00142{bottom:1093.830000px;}
.y5f_c00142{bottom:1110.240000px;}
.y5b_c00142{bottom:1111.110000px;}
.y5d_c00142{bottom:1111.965000px;}
.y5e_c00142{bottom:1113.690000px;}
.y5a_c00142{bottom:1115.430000px;}
.y60_c00142{bottom:1116.285000px;}
.y5c_c00142{bottom:1119.750000px;}
.y61_c00142{bottom:1127.520000px;}
.y59_c00142{bottom:1134.435000px;}
.y50_c00142{bottom:1135.290000px;}
.y52_c00142{bottom:1136.160000px;}
.y53_c00142{bottom:1137.885000px;}
.y55_c00142{bottom:1138.755000px;}
.yd6_c00142{bottom:1140.480000px;}
.y51_c00142{bottom:1142.205000px;}
.y56_c00142{bottom:1143.930000px;}
.y4f_c00142{bottom:1145.670000px;}
.y54_c00142{bottom:1147.395000px;}
.y57_c00142{bottom:1151.715000px;}
.y58_c00142{bottom:1157.760000px;}
.y4c_c00142{bottom:1162.080000px;}
.y47_c00142{bottom:1163.805000px;}
.y49_c00142{bottom:1164.675000px;}
.y4b_c00142{bottom:1165.530000px;}
.y48_c00142{bottom:1166.400000px;}
.y4e_c00142{bottom:1167.270000px;}
.y4d_c00142{bottom:1168.125000px;}
.y4a_c00142{bottom:1169.850000px;}
.y3e_c00142{bottom:1185.405000px;}
.y45_c00142{bottom:1186.275000px;}
.y43_c00142{bottom:1188.000000px;}
.y40_c00142{bottom:1188.870000px;}
.y3f_c00142{bottom:1189.725000px;}
.y46_c00142{bottom:1190.595000px;}
.y44_c00142{bottom:1191.450000px;}
.y3d_c00142{bottom:1193.190000px;}
.y41_c00142{bottom:1194.045000px;}
.y42_c00142{bottom:1194.915000px;}
.y38_c00142{bottom:1210.470000px;}
.y39_c00142{bottom:1211.325000px;}
.y3b_c00142{bottom:1215.645000px;}
.y37_c00142{bottom:1217.370000px;}
.y3c_c00142{bottom:1218.240000px;}
.y36_c00142{bottom:1219.110000px;}
.y3a_c00142{bottom:1219.965000px;}
.y31_c00142{bottom:1234.650000px;}
.y30_c00142{bottom:1236.390000px;}
.y33_c00142{bottom:1237.245000px;}
.y34_c00142{bottom:1238.970000px;}
.y35_c00142{bottom:1240.710000px;}
.y32_c00142{bottom:1243.290000px;}
.y2a_c00142{bottom:1253.670000px;}
.y2c_c00142{bottom:1255.395000px;}
.y2b_c00142{bottom:1256.250000px;}
.y2e_c00142{bottom:1257.120000px;}
.y2f_c00142{bottom:1258.845000px;}
.y2d_c00142{bottom:1269.210000px;}
.y29_c00142{bottom:1283.910000px;}
.y22_c00142{bottom:1285.635000px;}
.y26_c00142{bottom:1286.490000px;}
.y27_c00142{bottom:1287.360000px;}
.y24_c00142{bottom:1289.955000px;}
.y21_c00142{bottom:1291.680000px;}
.y23_c00142{bottom:1292.550000px;}
.y25_c00142{bottom:1293.405000px;}
.y28_c00142{bottom:1294.275000px;}
.y19_c00142{bottom:1310.685000px;}
.y18_c00142{bottom:1311.555000px;}
.y1c_c00142{bottom:1312.410000px;}
.y1b_c00142{bottom:1318.470000px;}
.y1a_c00142{bottom:1319.325000px;}
.y1f_c00142{bottom:1321.050000px;}
.y1e_c00142{bottom:1321.920000px;}
.y1d_c00142{bottom:1324.515000px;}
.y20_c00142{bottom:1327.965000px;}
.y16_c00142{bottom:1336.605000px;}
.y11_c00142{bottom:1337.475000px;}
.y15_c00142{bottom:1338.330000px;}
.y13_c00142{bottom:1340.070000px;}
.y10_c00142{bottom:1342.650000px;}
.y14_c00142{bottom:1343.520000px;}
.y12_c00142{bottom:1344.390000px;}
.y17_c00142{bottom:1345.245000px;}
.yb_c00142{bottom:1361.670000px;}
.yd_c00142{bottom:1362.525000px;}
.yc_c00142{bottom:1363.395000px;}
.ye_c00142{bottom:1364.250000px;}
.y8_c00142{bottom:1367.715000px;}
.y9_c00142{bottom:1368.570000px;}
.ya_c00142{bottom:1369.440000px;}
.y7_c00142{bottom:1370.310000px;}
.yf_c00142{bottom:1388.445000px;}
.y5_c00142{bottom:1392.765000px;}
.y6_c00142{bottom:1395.360000px;}
.y1_c00142{bottom:1399.680000px;}
.y3_c00142{bottom:1400.550000px;}
.y4_c00142{bottom:1401.405000px;}
.y2_c00142{bottom:1402.275000px;}
.yd5_c00142{bottom:1431.645000px;}
.h6_c00142{height:3.110063px;}
.h7_c00142{height:5.399414px;}
.h17_c00142{height:6.209326px;}
.h23_c00142{height:9.340986px;}
.h5_c00142{height:12.418652px;}
.h18_c00142{height:15.550313px;}
.h28_c00142{height:16.240986px;}
.h10_c00142{height:18.681973px;}
.he_c00142{height:21.759639px;}
.h22_c00142{height:24.891299px;}
.h29_c00142{height:27.968965px;}
.h21_c00142{height:31.100625px;}
.h1e_c00142{height:34.232285px;}
.h16_c00142{height:37.309951px;}
.h11_c00142{height:40.441611px;}
.h12_c00142{height:43.519277px;}
.h1f_c00142{height:46.650937px;}
.h1c_c00142{height:49.782598px;}
.h14_c00142{height:52.860264px;}
.h13_c00142{height:55.991924px;}
.h2_c00142{height:59.069590px;}
.h4_c00142{height:62.201250px;}
.ha_c00142{height:65.332910px;}
.h3_c00142{height:68.410576px;}
.h15_c00142{height:69.101250px;}
.h20_c00142{height:71.542236px;}
.h24_c00142{height:74.619902px;}
.hb_c00142{height:77.751563px;}
.h9_c00142{height:80.883223px;}
.hd_c00142{height:83.960889px;}
.hf_c00142{height:87.092549px;}
.h8_c00142{height:90.170215px;}
.hc_c00142{height:93.301875px;}
.h1a_c00142{height:96.433535px;}
.h25_c00142{height:99.511201px;}
.h1d_c00142{height:102.642861px;}
.h26_c00142{height:105.720527px;}
.h1b_c00142{height:108.852188px;}
.h19_c00142{height:118.193174px;}
.h27_c00142{height:177.262764px;}
.h0_c00142{height:1517.190000px;}
.h1_c00142{height:1517.250000px;}
.w0_c00142{width:1090.365000px;}
.w1_c00142{width:1090.500000px;}
.x0_c00142{left:0.000000px;}
.xac_c00142{left:215.130000px;}
.xe8_c00142{left:218.595000px;}
.xfd_c00142{left:221.190000px;}
.x5f_c00142{left:225.510000px;}
.xb4_c00142{left:227.235000px;}
.xdd_c00142{left:228.960000px;}
.xa6_c00142{left:230.685000px;}
.x90_c00142{left:232.410000px;}
.x1_c00142{left:234.150000px;}
.x66_c00142{left:235.875000px;}
.xa_c00142{left:238.470000px;}
.x18_c00142{left:240.195000px;}
.x81_c00142{left:249.690000px;}
.x91_c00142{left:251.430000px;}
.xbd_c00142{left:253.155000px;}
.xd1_c00142{left:257.475000px;}
.xb5_c00142{left:259.200000px;}
.x67_c00142{left:262.650000px;}
.x2a_c00142{left:264.390000px;}
.x46_c00142{left:270.435000px;}
.xb6_c00142{left:272.160000px;}
.xad_c00142{left:273.885000px;}
.xe9_c00142{left:275.610000px;}
.x19_c00142{left:279.930000px;}
.xc8_c00142{left:281.670000px;}
.xb_c00142{left:284.250000px;}
.x4e_c00142{left:285.990000px;}
.xc9_c00142{left:287.715000px;}
.xe3_c00142{left:290.310000px;}
.xf1_c00142{left:293.760000px;}
.x89_c00142{left:298.080000px;}
.x58_c00142{left:300.675000px;}
.x73_c00142{left:304.125000px;}
.xbf_c00142{left:306.720000px;}
.x3d_c00142{left:313.635000px;}
.xd2_c00142{left:316.230000px;}
.xe0_c00142{left:318.810000px;}
.x4f_c00142{left:320.550000px;}
.x82_c00142{left:322.275000px;}
.xc_c00142{left:324.000000px;}
.xf6_c00142{left:325.725000px;}
.x1a_c00142{left:327.450000px;}
.x7d_c00142{left:330.915000px;}
.xca_c00142{left:332.640000px;}
.x74_c00142{left:334.365000px;}
.x3e_c00142{left:336.090000px;}
.x8a_c00142{left:337.830000px;}
.xfb_c00142{left:339.555000px;}
.x1b_c00142{left:341.280000px;}
.x35_c00142{left:343.875000px;}
.xc0_c00142{left:345.600000px;}
.x92_c00142{left:347.325000px;}
.x60_c00142{left:350.790000px;}
.xd3_c00142{left:353.370000px;}
.xa0_c00142{left:355.110000px;}
.x59_c00142{left:357.690000px;}
.x50_c00142{left:361.155000px;}
.xeb_c00142{left:362.880000px;}
.x3f_c00142{left:365.475000px;}
.x83_c00142{left:368.070000px;}
.x75_c00142{left:372.390000px;}
.xe4_c00142{left:374.115000px;}
.xf2_c00142{left:375.840000px;}
.x93_c00142{left:378.435000px;}
.x2_c00142{left:380.160000px;}
.xd4_c00142{left:382.755000px;}
.xae_c00142{left:384.480000px;}
.x76_c00142{left:386.205000px;}
.xe1_c00142{left:387.930000px;}
.xec_c00142{left:391.395000px;}
.x2b_c00142{left:395.715000px;}
.xd_c00142{left:400.890000px;}
.xf7_c00142{left:402.630000px;}
.x3_c00142{left:406.080000px;}
.x7e_c00142{left:407.805000px;}
.x68_c00142{left:410.400000px;}
.x51_c00142{left:412.125000px;}
.x94_c00142{left:413.850000px;}
.x47_c00142{left:415.590000px;}
.xf8_c00142{left:417.315000px;}
.x1c_c00142{left:419.910000px;}
.x40_c00142{left:421.635000px;}
.x22_c00142{left:423.360000px;}
.xd5_c00142{left:428.550000px;}
.x69_c00142{left:430.275000px;}
.x52_c00142{left:432.000000px;}
.x4_c00142{left:433.725000px;}
.x9a_c00142{left:438.045000px;}
.xa1_c00142{left:439.770000px;}
.xde_c00142{left:443.235000px;}
.x5a_c00142{left:445.830000px;}
.xed_c00142{left:448.410000px;}
.xa7_c00142{left:450.150000px;}
.x84_c00142{left:451.875000px;}
.x2c_c00142{left:454.470000px;}
.xfc_c00142{left:456.195000px;}
.x53_c00142{left:462.240000px;}
.x2d_c00142{left:463.965000px;}
.xe2_c00142{left:465.690000px;}
.xf3_c00142{left:468.285000px;}
.x95_c00142{left:470.010000px;}
.xe_c00142{left:473.475000px;}
.x2e_c00142{left:476.070000px;}
.x5_c00142{left:478.650000px;}
.xa8_c00142{left:482.970000px;}
.xf9_c00142{left:484.710000px;}
.xfe_c00142{left:486.435000px;}
.xd6_c00142{left:488.160000px;}
.x36_c00142{left:492.480000px;}
.xaf_c00142{left:495.075000px;}
.x23_c00142{left:496.800000px;}
.x8b_c00142{left:499.395000px;}
.xf_c00142{left:501.120000px;}
.xa2_c00142{left:502.845000px;}
.x6_c00142{left:505.440000px;}
.x8_c00142{left:508.890000px;}
.x2f_c00142{left:510.630000px;}
.x37_c00142{left:513.210000px;}
.xd7_c00142{left:519.270000px;}
.x41_c00142{left:520.995000px;}
.xc1_c00142{left:526.170000px;}
.xee_c00142{left:527.910000px;}
.x1d_c00142{left:529.635000px;}
.x7f_c00142{left:531.360000px;}
.x54_c00142{left:533.955000px;}
.x9b_c00142{left:535.680000px;}
.x38_c00142{left:540.000000px;}
.xb0_c00142{left:541.725000px;}
.xa9_c00142{left:543.450000px;}
.x96_c00142{left:545.190000px;}
.x10_c00142{left:546.915000px;}
.x48_c00142{left:549.510000px;}
.x7_c00142{left:552.090000px;}
.x9c_c00142{left:553.830000px;}
.xef_c00142{left:555.555000px;}
.x85_c00142{left:559.875000px;}
.x77_c00142{left:565.050000px;}
.xb1_c00142{left:566.790000px;}
.xa3_c00142{left:570.240000px;}
.x30_c00142{left:571.965000px;}
.xe5_c00142{left:574.560000px;}
.x6a_c00142{left:578.010000px;}
.xc7_c00142{left:581.475000px;}
.x8c_c00142{left:583.200000px;}
.x78_c00142{left:586.650000px;}
.x5b_c00142{left:589.245000px;}
.xcb_c00142{left:590.970000px;}
.x24_c00142{left:593.565000px;}
.xfa_c00142{left:595.290000px;}
.x6b_c00142{left:597.030000px;}
.xaa_c00142{left:601.350000px;}
.xa4_c00142{left:605.670000px;}
.x42_c00142{left:607.395000px;}
.x11_c00142{left:609.990000px;}
.x39_c00142{left:612.570000px;}
.xd8_c00142{left:615.165000px;}
.x86_c00142{left:617.760000px;}
.x80_c00142{left:620.355000px;}
.xe6_c00142{left:622.950000px;}
.x1e_c00142{left:627.270000px;}
.xd9_c00142{left:628.995000px;}
.xf4_c00142{left:632.445000px;}
.x49_c00142{left:634.170000px;}
.x8d_c00142{left:638.490000px;}
.x31_c00142{left:644.550000px;}
.x6c_c00142{left:648.000000px;}
.xb2_c00142{left:649.725000px;}
.x97_c00142{left:652.320000px;}
.xbe_c00142{left:654.915000px;}
.x79_c00142{left:656.640000px;}
.x61_c00142{left:660.960000px;}
.x25_c00142{left:664.410000px;}
.xb9_c00142{left:666.150000px;}
.x12_c00142{left:667.875000px;}
.x43_c00142{left:670.470000px;}
.x55_c00142{left:674.790000px;}
.xcc_c00142{left:676.515000px;}
.x9_c00142{left:681.690000px;}
.xb7_c00142{left:683.430000px;}
.x5c_c00142{left:686.010000px;}
.xe7_c00142{left:687.750000px;}
.xcd_c00142{left:692.925000px;}
.xda_c00142{left:695.520000px;}
.x3a_c00142{left:699.840000px;}
.xba_c00142{left:704.160000px;}
.xa5_c00142{left:705.885000px;}
.x4a_c00142{left:707.610000px;}
.x5d_c00142{left:709.350000px;}
.x6d_c00142{left:713.670000px;}
.x62_c00142{left:715.395000px;}
.x3b_c00142{left:717.990000px;}
.x71_c00142{left:719.715000px;}
.x7a_c00142{left:722.310000px;}
.x13_c00142{left:726.630000px;}
.xab_c00142{left:728.355000px;}
.x9d_c00142{left:730.080000px;}
.x87_c00142{left:732.675000px;}
.x98_c00142{left:734.400000px;}
.x44_c00142{left:736.125000px;}
.x32_c00142{left:739.590000px;}
.xb8_c00142{left:742.170000px;}
.x5e_c00142{left:745.635000px;}
.x8e_c00142{left:749.085000px;}
.x56_c00142{left:751.680000px;}
.x1f_c00142{left:754.275000px;}
.xf5_c00142{left:756.000000px;}
.x63_c00142{left:759.450000px;}
.x4b_c00142{left:761.190000px;}
.xce_c00142{left:762.915000px;}
.xea_c00142{left:767.235000px;}
.xbc_c00142{left:768.960000px;}
.x64_c00142{left:770.685000px;}
.x6e_c00142{left:772.410000px;}
.x33_c00142{left:774.150000px;}
.xff_c00142{left:775.875000px;}
.x57_c00142{left:778.470000px;}
.x45_c00142{left:780.195000px;}
.xdb_c00142{left:781.920000px;}
.x4c_c00142{left:786.240000px;}
.x3c_c00142{left:787.965000px;}
.xdc_c00142{left:790.560000px;}
.x20_c00142{left:794.010000px;}
.x14_c00142{left:798.330000px;}
.x9e_c00142{left:800.925000px;}
.x99_c00142{left:804.390000px;}
.x65_c00142{left:806.970000px;}
.x88_c00142{left:809.565000px;}
.x15_c00142{left:812.160000px;}
.xcf_c00142{left:814.755000px;}
.x8f_c00142{left:816.480000px;}
.x9f_c00142{left:819.930000px;}
.x72_c00142{left:822.525000px;}
.x26_c00142{left:825.120000px;}
.xbb_c00142{left:826.845000px;}
.x21_c00142{left:829.440000px;}
.xb3_c00142{left:832.035000px;}
.xdf_c00142{left:838.080000px;}
.xf0_c00142{left:847.590000px;}
.x27_c00142{left:849.315000px;}
.x7b_c00142{left:851.910000px;}
.x4d_c00142{left:856.230000px;}
.x16_c00142{left:859.680000px;}
.x17_c00142{left:863.130000px;}
.x28_c00142{left:867.450000px;}
.x29_c00142{left:876.090000px;}
.x34_c00142{left:885.600000px;}
.x7c_c00142{left:887.325000px;}
.xd0_c00142{left:889.050000px;}
.x6f_c00142{left:890.790000px;}
.x70_c00142{left:899.430000px;}
.xc2_c00142{left:952.995000px;}
.xc6_c00142{left:980.640000px;}
.xc5_c00142{left:982.365000px;}
.xc3_c00142{left:1002.240000px;}
.xc4_c00142{left:1013.475000px;}
@media print{
.v2_c00142{vertical-align:-3.093333pt;}
.v0_c00142{vertical-align:0.000000pt;}
.v1_c00142{vertical-align:6.133333pt;}
.ls2_c00142{letter-spacing:0.000000pt;}
.ls1_c00142{letter-spacing:11.839627pt;}
.ls0_c00142{letter-spacing:46.263733pt;}
.ws1_c00142{word-spacing:-28.852053pt;}
.ws0_c00142{word-spacing:-19.298453pt;}
.ws2_c00142{word-spacing:0.000000pt;}
.fs4_c00142{font-size:3.072000pt;}
.fs5_c00142{font-size:5.333333pt;}
.fs14_c00142{font-size:6.133333pt;}
.fs20_c00142{font-size:9.226667pt;}
.fs3_c00142{font-size:12.266667pt;}
.fs15_c00142{font-size:15.360000pt;}
.fse_c00142{font-size:18.453333pt;}
.fsc_c00142{font-size:21.493333pt;}
.fs1f_c00142{font-size:24.586667pt;}
.fs25_c00142{font-size:27.626667pt;}
.fs1e_c00142{font-size:30.720000pt;}
.fs1b_c00142{font-size:33.813333pt;}
.fs13_c00142{font-size:36.853333pt;}
.fsf_c00142{font-size:39.946667pt;}
.fs10_c00142{font-size:42.986667pt;}
.fs1c_c00142{font-size:46.080000pt;}
.fs19_c00142{font-size:49.173333pt;}
.fs12_c00142{font-size:52.213333pt;}
.fs11_c00142{font-size:55.306667pt;}
.fs0_c00142{font-size:58.346667pt;}
.fs2_c00142{font-size:61.440000pt;}
.fs8_c00142{font-size:64.533333pt;}
.fs1_c00142{font-size:67.573333pt;}
.fs1d_c00142{font-size:70.666667pt;}
.fs21_c00142{font-size:73.706667pt;}
.fs9_c00142{font-size:76.800000pt;}
.fs7_c00142{font-size:79.893333pt;}
.fsb_c00142{font-size:82.933333pt;}
.fsd_c00142{font-size:86.026667pt;}
.fs6_c00142{font-size:89.066667pt;}
.fsa_c00142{font-size:92.160000pt;}
.fs17_c00142{font-size:95.253333pt;}
.fs22_c00142{font-size:98.293333pt;}
.fs1a_c00142{font-size:101.386667pt;}
.fs23_c00142{font-size:104.426667pt;}
.fs18_c00142{font-size:107.520000pt;}
.fs16_c00142{font-size:116.746667pt;}
.fs24_c00142{font-size:175.093333pt;}
.y0_c00142{bottom:0.000000pt;}
.y150_c00142{bottom:172.800000pt;}
.y14d_c00142{bottom:198.146667pt;}
.y14b_c00142{bottom:199.680000pt;}
.y14a_c00142{bottom:201.213333pt;}
.y14e_c00142{bottom:201.986667pt;}
.y14f_c00142{bottom:202.746667pt;}
.y14c_c00142{bottom:203.520000pt;}
.y147_c00142{bottom:207.360000pt;}
.y149_c00142{bottom:210.426667pt;}
.y148_c00142{bottom:211.200000pt;}
.y143_c00142{bottom:225.026667pt;}
.y144_c00142{bottom:225.786667pt;}
.y140_c00142{bottom:226.560000pt;}
.y13f_c00142{bottom:227.333333pt;}
.y141_c00142{bottom:228.866667pt;}
.y146_c00142{bottom:229.626667pt;}
.y142_c00142{bottom:231.173333pt;}
.y145_c00142{bottom:231.933333pt;}
.y13e_c00142{bottom:247.293333pt;}
.y13b_c00142{bottom:248.826667pt;}
.y13a_c00142{bottom:249.600000pt;}
.y13d_c00142{bottom:253.440000pt;}
.y13c_c00142{bottom:255.746667pt;}
.y137_c00142{bottom:270.333333pt;}
.y135_c00142{bottom:271.106667pt;}
.y133_c00142{bottom:272.640000pt;}
.y139_c00142{bottom:274.173333pt;}
.y138_c00142{bottom:277.253333pt;}
.y134_c00142{bottom:278.013333pt;}
.y136_c00142{bottom:278.786667pt;}
.y132_c00142{bottom:279.546667pt;}
.y12e_c00142{bottom:291.840000pt;}
.y12b_c00142{bottom:292.613333pt;}
.y12c_c00142{bottom:293.373333pt;}
.y131_c00142{bottom:294.906667pt;}
.y12d_c00142{bottom:297.986667pt;}
.y130_c00142{bottom:299.520000pt;}
.y12f_c00142{bottom:300.293333pt;}
.y125_c00142{bottom:316.413333pt;}
.y123_c00142{bottom:317.186667pt;}
.y129_c00142{bottom:317.946667pt;}
.y126_c00142{bottom:318.720000pt;}
.y128_c00142{bottom:320.253333pt;}
.y12a_c00142{bottom:321.026667pt;}
.y127_c00142{bottom:322.560000pt;}
.y124_c00142{bottom:323.333333pt;}
.y11c_c00142{bottom:337.920000pt;}
.y120_c00142{bottom:338.693333pt;}
.y11d_c00142{bottom:339.453333pt;}
.y121_c00142{bottom:340.226667pt;}
.y122_c00142{bottom:341.760000pt;}
.y11b_c00142{bottom:342.533333pt;}
.y119_c00142{bottom:344.066667pt;}
.y11f_c00142{bottom:344.826667pt;}
.y11e_c00142{bottom:345.600000pt;}
.y11a_c00142{bottom:346.373333pt;}
.y116_c00142{bottom:360.186667pt;}
.y112_c00142{bottom:360.960000pt;}
.y113_c00142{bottom:361.733333pt;}
.y114_c00142{bottom:362.493333pt;}
.y115_c00142{bottom:364.800000pt;}
.y118_c00142{bottom:367.106667pt;}
.y117_c00142{bottom:367.866667pt;}
.y110_c00142{bottom:368.640000pt;}
.y111_c00142{bottom:369.413333pt;}
.y10d_c00142{bottom:384.000000pt;}
.y10a_c00142{bottom:384.773333pt;}
.y109_c00142{bottom:387.066667pt;}
.y10c_c00142{bottom:387.840000pt;}
.y10f_c00142{bottom:389.373333pt;}
.y10e_c00142{bottom:390.146667pt;}
.y10b_c00142{bottom:390.906667pt;}
.y108_c00142{bottom:391.680000pt;}
.y107_c00142{bottom:406.266667pt;}
.y104_c00142{bottom:407.040000pt;}
.yfe_c00142{bottom:407.813333pt;}
.y103_c00142{bottom:408.573333pt;}
.y106_c00142{bottom:409.346667pt;}
.y105_c00142{bottom:412.413333pt;}
.y100_c00142{bottom:414.720000pt;}
.yff_c00142{bottom:415.493333pt;}
.y101_c00142{bottom:418.560000pt;}
.yf6_c00142{bottom:423.933333pt;}
.y102_c00142{bottom:425.466667pt;}
.yfb_c00142{bottom:428.546667pt;}
.yf9_c00142{bottom:429.306667pt;}
.yfc_c00142{bottom:431.613333pt;}
.yf7_c00142{bottom:433.920000pt;}
.yfd_c00142{bottom:434.693333pt;}
.yfa_c00142{bottom:435.453333pt;}
.yf8_c00142{bottom:436.226667pt;}
.yf2_c00142{bottom:451.586667pt;}
.yf3_c00142{bottom:452.346667pt;}
.yf1_c00142{bottom:455.426667pt;}
.yf5_c00142{bottom:456.186667pt;}
.yf4_c00142{bottom:457.733333pt;}
.yef_c00142{bottom:461.573333pt;}
.yf0_c00142{bottom:463.106667pt;}
.ye8_c00142{bottom:473.853333pt;}
.ye9_c00142{bottom:476.160000pt;}
.yee_c00142{bottom:476.933333pt;}
.yed_c00142{bottom:480.000000pt;}
.yec_c00142{bottom:480.773333pt;}
.yea_c00142{bottom:481.533333pt;}
.yeb_c00142{bottom:482.306667pt;}
.ye6_c00142{bottom:496.133333pt;}
.ye5_c00142{bottom:496.893333pt;}
.ye7_c00142{bottom:499.200000pt;}
.ye3_c00142{bottom:503.040000pt;}
.ye4_c00142{bottom:503.813333pt;}
.ye2_c00142{bottom:505.346667pt;}
.ye1_c00142{bottom:508.413333pt;}
.ye0_c00142{bottom:526.080000pt;}
.yde_c00142{bottom:527.613333pt;}
.ydf_c00142{bottom:528.386667pt;}
.ydd_c00142{bottom:532.986667pt;}
.yd9_c00142{bottom:547.586667pt;}
.yda_c00142{bottom:548.346667pt;}
.ydc_c00142{bottom:556.800000pt;}
.ydb_c00142{bottom:560.640000pt;}
.yd0_c00142{bottom:626.693333pt;}
.yd1_c00142{bottom:628.986667pt;}
.ycd_c00142{bottom:630.533333pt;}
.yd4_c00142{bottom:631.293333pt;}
.yd2_c00142{bottom:632.826667pt;}
.yd3_c00142{bottom:635.906667pt;}
.ycf_c00142{bottom:636.666667pt;}
.yce_c00142{bottom:637.440000pt;}
.ycb_c00142{bottom:652.026667pt;}
.yc7_c00142{bottom:652.800000pt;}
.yc9_c00142{bottom:656.640000pt;}
.ycc_c00142{bottom:657.413333pt;}
.yca_c00142{bottom:658.173333pt;}
.yc8_c00142{bottom:658.946667pt;}
.yc6_c00142{bottom:659.706667pt;}
.yc5_c00142{bottom:660.480000pt;}
.yd8_c00142{bottom:669.693333pt;}
.ybf_c00142{bottom:675.066667pt;}
.ybe_c00142{bottom:675.840000pt;}
.yc0_c00142{bottom:676.613333pt;}
.yc3_c00142{bottom:677.373333pt;}
.yc1_c00142{bottom:678.906667pt;}
.yc4_c00142{bottom:681.213333pt;}
.yc2_c00142{bottom:681.986667pt;}
.ybc_c00142{bottom:696.573333pt;}
.ybb_c00142{bottom:697.346667pt;}
.yba_c00142{bottom:698.106667pt;}
.ybd_c00142{bottom:703.493333pt;}
.yd7_c00142{bottom:715.013333pt;}
.yb7_c00142{bottom:720.386667pt;}
.yb4_c00142{bottom:721.920000pt;}
.yb9_c00142{bottom:722.693333pt;}
.yb5_c00142{bottom:723.453333pt;}
.yb6_c00142{bottom:725.760000pt;}
.yb8_c00142{bottom:726.533333pt;}
.yb2_c00142{bottom:741.893333pt;}
.yb3_c00142{bottom:745.733333pt;}
.yb1_c00142{bottom:747.266667pt;}
.yb0_c00142{bottom:763.386667pt;}
.yaf_c00142{bottom:764.160000pt;}
.yab_c00142{bottom:764.933333pt;}
.yac_c00142{bottom:765.693333pt;}
.ya9_c00142{bottom:768.773333pt;}
.yaa_c00142{bottom:769.533333pt;}
.yae_c00142{bottom:770.306667pt;}
.yad_c00142{bottom:771.066667pt;}
.ya8_c00142{bottom:785.666667pt;}
.ya6_c00142{bottom:786.426667pt;}
.ya4_c00142{bottom:787.200000pt;}
.ya5_c00142{bottom:792.573333pt;}
.ya7_c00142{bottom:793.346667pt;}
.ya3_c00142{bottom:808.706667pt;}
.y9e_c00142{bottom:809.466667pt;}
.ya1_c00142{bottom:810.240000pt;}
.y9f_c00142{bottom:811.013333pt;}
.y9b_c00142{bottom:811.773333pt;}
.ya0_c00142{bottom:812.546667pt;}
.y9d_c00142{bottom:813.306667pt;}
.y9c_c00142{bottom:814.853333pt;}
.ya2_c00142{bottom:815.613333pt;}
.y9a_c00142{bottom:831.746667pt;}
.y96_c00142{bottom:832.506667pt;}
.y95_c00142{bottom:834.813333pt;}
.y99_c00142{bottom:836.346667pt;}
.y97_c00142{bottom:837.893333pt;}
.y98_c00142{bottom:838.653333pt;}
.y93_c00142{bottom:854.013333pt;}
.y8e_c00142{bottom:854.786667pt;}
.y8c_c00142{bottom:857.093333pt;}
.y92_c00142{bottom:857.853333pt;}
.y91_c00142{bottom:858.626667pt;}
.y94_c00142{bottom:859.386667pt;}
.y90_c00142{bottom:860.160000pt;}
.y8f_c00142{bottom:860.933333pt;}
.y8d_c00142{bottom:869.373333pt;}
.y82_c00142{bottom:877.826667pt;}
.y81_c00142{bottom:878.586667pt;}
.y88_c00142{bottom:879.360000pt;}
.y8b_c00142{bottom:880.893333pt;}
.y83_c00142{bottom:881.666667pt;}
.y86_c00142{bottom:883.200000pt;}
.y8a_c00142{bottom:883.973333pt;}
.y89_c00142{bottom:884.733333pt;}
.y85_c00142{bottom:889.346667pt;}
.y87_c00142{bottom:891.653333pt;}
.y84_c00142{bottom:896.253333pt;}
.y7c_c00142{bottom:897.786667pt;}
.y7f_c00142{bottom:898.560000pt;}
.y7a_c00142{bottom:899.333333pt;}
.y7b_c00142{bottom:900.866667pt;}
.y7e_c00142{bottom:902.400000pt;}
.y80_c00142{bottom:903.173333pt;}
.y79_c00142{bottom:904.706667pt;}
.y7d_c00142{bottom:905.466667pt;}
.y78_c00142{bottom:906.240000pt;}
.y71_c00142{bottom:921.600000pt;}
.y73_c00142{bottom:923.133333pt;}
.y77_c00142{bottom:923.906667pt;}
.y72_c00142{bottom:925.440000pt;}
.y76_c00142{bottom:926.213333pt;}
.y70_c00142{bottom:926.973333pt;}
.y75_c00142{bottom:927.746667pt;}
.y74_c00142{bottom:928.506667pt;}
.y6e_c00142{bottom:941.573333pt;}
.y65_c00142{bottom:942.333333pt;}
.y6c_c00142{bottom:943.106667pt;}
.y6b_c00142{bottom:943.866667pt;}
.y69_c00142{bottom:944.640000pt;}
.y6a_c00142{bottom:945.413333pt;}
.y67_c00142{bottom:946.946667pt;}
.y66_c00142{bottom:948.480000pt;}
.y6d_c00142{bottom:950.013333pt;}
.y6f_c00142{bottom:950.786667pt;}
.y68_c00142{bottom:951.546667pt;}
.y62_c00142{bottom:965.373333pt;}
.y64_c00142{bottom:971.520000pt;}
.y63_c00142{bottom:972.293333pt;}
.y5f_c00142{bottom:986.880000pt;}
.y5b_c00142{bottom:987.653333pt;}
.y5d_c00142{bottom:988.413333pt;}
.y5e_c00142{bottom:989.946667pt;}
.y5a_c00142{bottom:991.493333pt;}
.y60_c00142{bottom:992.253333pt;}
.y5c_c00142{bottom:995.333333pt;}
.y61_c00142{bottom:1002.240000pt;}
.y59_c00142{bottom:1008.386667pt;}
.y50_c00142{bottom:1009.146667pt;}
.y52_c00142{bottom:1009.920000pt;}
.y53_c00142{bottom:1011.453333pt;}
.y55_c00142{bottom:1012.226667pt;}
.yd6_c00142{bottom:1013.760000pt;}
.y51_c00142{bottom:1015.293333pt;}
.y56_c00142{bottom:1016.826667pt;}
.y4f_c00142{bottom:1018.373333pt;}
.y54_c00142{bottom:1019.906667pt;}
.y57_c00142{bottom:1023.746667pt;}
.y58_c00142{bottom:1029.120000pt;}
.y4c_c00142{bottom:1032.960000pt;}
.y47_c00142{bottom:1034.493333pt;}
.y49_c00142{bottom:1035.266667pt;}
.y4b_c00142{bottom:1036.026667pt;}
.y48_c00142{bottom:1036.800000pt;}
.y4e_c00142{bottom:1037.573333pt;}
.y4d_c00142{bottom:1038.333333pt;}
.y4a_c00142{bottom:1039.866667pt;}
.y3e_c00142{bottom:1053.693333pt;}
.y45_c00142{bottom:1054.466667pt;}
.y43_c00142{bottom:1056.000000pt;}
.y40_c00142{bottom:1056.773333pt;}
.y3f_c00142{bottom:1057.533333pt;}
.y46_c00142{bottom:1058.306667pt;}
.y44_c00142{bottom:1059.066667pt;}
.y3d_c00142{bottom:1060.613333pt;}
.y41_c00142{bottom:1061.373333pt;}
.y42_c00142{bottom:1062.146667pt;}
.y38_c00142{bottom:1075.973333pt;}
.y39_c00142{bottom:1076.733333pt;}
.y3b_c00142{bottom:1080.573333pt;}
.y37_c00142{bottom:1082.106667pt;}
.y3c_c00142{bottom:1082.880000pt;}
.y36_c00142{bottom:1083.653333pt;}
.y3a_c00142{bottom:1084.413333pt;}
.y31_c00142{bottom:1097.466667pt;}
.y30_c00142{bottom:1099.013333pt;}
.y33_c00142{bottom:1099.773333pt;}
.y34_c00142{bottom:1101.306667pt;}
.y35_c00142{bottom:1102.853333pt;}
.y32_c00142{bottom:1105.146667pt;}
.y2a_c00142{bottom:1114.373333pt;}
.y2c_c00142{bottom:1115.906667pt;}
.y2b_c00142{bottom:1116.666667pt;}
.y2e_c00142{bottom:1117.440000pt;}
.y2f_c00142{bottom:1118.973333pt;}
.y2d_c00142{bottom:1128.186667pt;}
.y29_c00142{bottom:1141.253333pt;}
.y22_c00142{bottom:1142.786667pt;}
.y26_c00142{bottom:1143.546667pt;}
.y27_c00142{bottom:1144.320000pt;}
.y24_c00142{bottom:1146.626667pt;}
.y21_c00142{bottom:1148.160000pt;}
.y23_c00142{bottom:1148.933333pt;}
.y25_c00142{bottom:1149.693333pt;}
.y28_c00142{bottom:1150.466667pt;}
.y19_c00142{bottom:1165.053333pt;}
.y18_c00142{bottom:1165.826667pt;}
.y1c_c00142{bottom:1166.586667pt;}
.y1b_c00142{bottom:1171.973333pt;}
.y1a_c00142{bottom:1172.733333pt;}
.y1f_c00142{bottom:1174.266667pt;}
.y1e_c00142{bottom:1175.040000pt;}
.y1d_c00142{bottom:1177.346667pt;}
.y20_c00142{bottom:1180.413333pt;}
.y16_c00142{bottom:1188.093333pt;}
.y11_c00142{bottom:1188.866667pt;}
.y15_c00142{bottom:1189.626667pt;}
.y13_c00142{bottom:1191.173333pt;}
.y10_c00142{bottom:1193.466667pt;}
.y14_c00142{bottom:1194.240000pt;}
.y12_c00142{bottom:1195.013333pt;}
.y17_c00142{bottom:1195.773333pt;}
.yb_c00142{bottom:1210.373333pt;}
.yd_c00142{bottom:1211.133333pt;}
.yc_c00142{bottom:1211.906667pt;}
.ye_c00142{bottom:1212.666667pt;}
.y8_c00142{bottom:1215.746667pt;}
.y9_c00142{bottom:1216.506667pt;}
.ya_c00142{bottom:1217.280000pt;}
.y7_c00142{bottom:1218.053333pt;}
.yf_c00142{bottom:1234.173333pt;}
.y5_c00142{bottom:1238.013333pt;}
.y6_c00142{bottom:1240.320000pt;}
.y1_c00142{bottom:1244.160000pt;}
.y3_c00142{bottom:1244.933333pt;}
.y4_c00142{bottom:1245.693333pt;}
.y2_c00142{bottom:1246.466667pt;}
.yd5_c00142{bottom:1272.573333pt;}
.h6_c00142{height:2.764500pt;}
.h7_c00142{height:4.799479pt;}
.h17_c00142{height:5.519401pt;}
.h23_c00142{height:8.303099pt;}
.h5_c00142{height:11.038802pt;}
.h18_c00142{height:13.822500pt;}
.h28_c00142{height:14.436432pt;}
.h10_c00142{height:16.606198pt;}
.he_c00142{height:19.341901pt;}
.h22_c00142{height:22.125599pt;}
.h29_c00142{height:24.861302pt;}
.h21_c00142{height:27.645000pt;}
.h1e_c00142{height:30.428698pt;}
.h16_c00142{height:33.164401pt;}
.h11_c00142{height:35.948099pt;}
.h12_c00142{height:38.683802pt;}
.h1f_c00142{height:41.467500pt;}
.h1c_c00142{height:44.251198pt;}
.h14_c00142{height:46.986901pt;}
.h13_c00142{height:49.770599pt;}
.h2_c00142{height:52.506302pt;}
.h4_c00142{height:55.290000pt;}
.ha_c00142{height:58.073698pt;}
.h3_c00142{height:60.809401pt;}
.h15_c00142{height:61.423333pt;}
.h20_c00142{height:63.593099pt;}
.h24_c00142{height:66.328802pt;}
.hb_c00142{height:69.112500pt;}
.h9_c00142{height:71.896198pt;}
.hd_c00142{height:74.631901pt;}
.hf_c00142{height:77.415599pt;}
.h8_c00142{height:80.151302pt;}
.hc_c00142{height:82.935000pt;}
.h1a_c00142{height:85.718698pt;}
.h25_c00142{height:88.454401pt;}
.h1d_c00142{height:91.238099pt;}
.h26_c00142{height:93.973802pt;}
.h1b_c00142{height:96.757500pt;}
.h19_c00142{height:105.060599pt;}
.h27_c00142{height:157.566901pt;}
.h0_c00142{height:1348.613333pt;}
.h1_c00142{height:1348.666667pt;}
.w0_c00142{width:969.213333pt;}
.w1_c00142{width:969.333333pt;}
.x0_c00142{left:0.000000pt;}
.xac_c00142{left:191.226667pt;}
.xe8_c00142{left:194.306667pt;}
.xfd_c00142{left:196.613333pt;}
.x5f_c00142{left:200.453333pt;}
.xb4_c00142{left:201.986667pt;}
.xdd_c00142{left:203.520000pt;}
.xa6_c00142{left:205.053333pt;}
.x90_c00142{left:206.586667pt;}
.x1_c00142{left:208.133333pt;}
.x66_c00142{left:209.666667pt;}
.xa_c00142{left:211.973333pt;}
.x18_c00142{left:213.506667pt;}
.x81_c00142{left:221.946667pt;}
.x91_c00142{left:223.493333pt;}
.xbd_c00142{left:225.026667pt;}
.xd1_c00142{left:228.866667pt;}
.xb5_c00142{left:230.400000pt;}
.x67_c00142{left:233.466667pt;}
.x2a_c00142{left:235.013333pt;}
.x46_c00142{left:240.386667pt;}
.xb6_c00142{left:241.920000pt;}
.xad_c00142{left:243.453333pt;}
.xe9_c00142{left:244.986667pt;}
.x19_c00142{left:248.826667pt;}
.xc8_c00142{left:250.373333pt;}
.xb_c00142{left:252.666667pt;}
.x4e_c00142{left:254.213333pt;}
.xc9_c00142{left:255.746667pt;}
.xe3_c00142{left:258.053333pt;}
.xf1_c00142{left:261.120000pt;}
.x89_c00142{left:264.960000pt;}
.x58_c00142{left:267.266667pt;}
.x73_c00142{left:270.333333pt;}
.xbf_c00142{left:272.640000pt;}
.x3d_c00142{left:278.786667pt;}
.xd2_c00142{left:281.093333pt;}
.xe0_c00142{left:283.386667pt;}
.x4f_c00142{left:284.933333pt;}
.x82_c00142{left:286.466667pt;}
.xc_c00142{left:288.000000pt;}
.xf6_c00142{left:289.533333pt;}
.x1a_c00142{left:291.066667pt;}
.x7d_c00142{left:294.146667pt;}
.xca_c00142{left:295.680000pt;}
.x74_c00142{left:297.213333pt;}
.x3e_c00142{left:298.746667pt;}
.x8a_c00142{left:300.293333pt;}
.xfb_c00142{left:301.826667pt;}
.x1b_c00142{left:303.360000pt;}
.x35_c00142{left:305.666667pt;}
.xc0_c00142{left:307.200000pt;}
.x92_c00142{left:308.733333pt;}
.x60_c00142{left:311.813333pt;}
.xd3_c00142{left:314.106667pt;}
.xa0_c00142{left:315.653333pt;}
.x59_c00142{left:317.946667pt;}
.x50_c00142{left:321.026667pt;}
.xeb_c00142{left:322.560000pt;}
.x3f_c00142{left:324.866667pt;}
.x83_c00142{left:327.173333pt;}
.x75_c00142{left:331.013333pt;}
.xe4_c00142{left:332.546667pt;}
.xf2_c00142{left:334.080000pt;}
.x93_c00142{left:336.386667pt;}
.x2_c00142{left:337.920000pt;}
.xd4_c00142{left:340.226667pt;}
.xae_c00142{left:341.760000pt;}
.x76_c00142{left:343.293333pt;}
.xe1_c00142{left:344.826667pt;}
.xec_c00142{left:347.906667pt;}
.x2b_c00142{left:351.746667pt;}
.xd_c00142{left:356.346667pt;}
.xf7_c00142{left:357.893333pt;}
.x3_c00142{left:360.960000pt;}
.x7e_c00142{left:362.493333pt;}
.x68_c00142{left:364.800000pt;}
.x51_c00142{left:366.333333pt;}
.x94_c00142{left:367.866667pt;}
.x47_c00142{left:369.413333pt;}
.xf8_c00142{left:370.946667pt;}
.x1c_c00142{left:373.253333pt;}
.x40_c00142{left:374.786667pt;}
.x22_c00142{left:376.320000pt;}
.xd5_c00142{left:380.933333pt;}
.x69_c00142{left:382.466667pt;}
.x52_c00142{left:384.000000pt;}
.x4_c00142{left:385.533333pt;}
.x9a_c00142{left:389.373333pt;}
.xa1_c00142{left:390.906667pt;}
.xde_c00142{left:393.986667pt;}
.x5a_c00142{left:396.293333pt;}
.xed_c00142{left:398.586667pt;}
.xa7_c00142{left:400.133333pt;}
.x84_c00142{left:401.666667pt;}
.x2c_c00142{left:403.973333pt;}
.xfc_c00142{left:405.506667pt;}
.x53_c00142{left:410.880000pt;}
.x2d_c00142{left:412.413333pt;}
.xe2_c00142{left:413.946667pt;}
.xf3_c00142{left:416.253333pt;}
.x95_c00142{left:417.786667pt;}
.xe_c00142{left:420.866667pt;}
.x2e_c00142{left:423.173333pt;}
.x5_c00142{left:425.466667pt;}
.xa8_c00142{left:429.306667pt;}
.xf9_c00142{left:430.853333pt;}
.xfe_c00142{left:432.386667pt;}
.xd6_c00142{left:433.920000pt;}
.x36_c00142{left:437.760000pt;}
.xaf_c00142{left:440.066667pt;}
.x23_c00142{left:441.600000pt;}
.x8b_c00142{left:443.906667pt;}
.xf_c00142{left:445.440000pt;}
.xa2_c00142{left:446.973333pt;}
.x6_c00142{left:449.280000pt;}
.x8_c00142{left:452.346667pt;}
.x2f_c00142{left:453.893333pt;}
.x37_c00142{left:456.186667pt;}
.xd7_c00142{left:461.573333pt;}
.x41_c00142{left:463.106667pt;}
.xc1_c00142{left:467.706667pt;}
.xee_c00142{left:469.253333pt;}
.x1d_c00142{left:470.786667pt;}
.x7f_c00142{left:472.320000pt;}
.x54_c00142{left:474.626667pt;}
.x9b_c00142{left:476.160000pt;}
.x38_c00142{left:480.000000pt;}
.xb0_c00142{left:481.533333pt;}
.xa9_c00142{left:483.066667pt;}
.x96_c00142{left:484.613333pt;}
.x10_c00142{left:486.146667pt;}
.x48_c00142{left:488.453333pt;}
.x7_c00142{left:490.746667pt;}
.x9c_c00142{left:492.293333pt;}
.xef_c00142{left:493.826667pt;}
.x85_c00142{left:497.666667pt;}
.x77_c00142{left:502.266667pt;}
.xb1_c00142{left:503.813333pt;}
.xa3_c00142{left:506.880000pt;}
.x30_c00142{left:508.413333pt;}
.xe5_c00142{left:510.720000pt;}
.x6a_c00142{left:513.786667pt;}
.xc7_c00142{left:516.866667pt;}
.x8c_c00142{left:518.400000pt;}
.x78_c00142{left:521.466667pt;}
.x5b_c00142{left:523.773333pt;}
.xcb_c00142{left:525.306667pt;}
.x24_c00142{left:527.613333pt;}
.xfa_c00142{left:529.146667pt;}
.x6b_c00142{left:530.693333pt;}
.xaa_c00142{left:534.533333pt;}
.xa4_c00142{left:538.373333pt;}
.x42_c00142{left:539.906667pt;}
.x11_c00142{left:542.213333pt;}
.x39_c00142{left:544.506667pt;}
.xd8_c00142{left:546.813333pt;}
.x86_c00142{left:549.120000pt;}
.x80_c00142{left:551.426667pt;}
.xe6_c00142{left:553.733333pt;}
.x1e_c00142{left:557.573333pt;}
.xd9_c00142{left:559.106667pt;}
.xf4_c00142{left:562.173333pt;}
.x49_c00142{left:563.706667pt;}
.x8d_c00142{left:567.546667pt;}
.x31_c00142{left:572.933333pt;}
.x6c_c00142{left:576.000000pt;}
.xb2_c00142{left:577.533333pt;}
.x97_c00142{left:579.840000pt;}
.xbe_c00142{left:582.146667pt;}
.x79_c00142{left:583.680000pt;}
.x61_c00142{left:587.520000pt;}
.x25_c00142{left:590.586667pt;}
.xb9_c00142{left:592.133333pt;}
.x12_c00142{left:593.666667pt;}
.x43_c00142{left:595.973333pt;}
.x55_c00142{left:599.813333pt;}
.xcc_c00142{left:601.346667pt;}
.x9_c00142{left:605.946667pt;}
.xb7_c00142{left:607.493333pt;}
.x5c_c00142{left:609.786667pt;}
.xe7_c00142{left:611.333333pt;}
.xcd_c00142{left:615.933333pt;}
.xda_c00142{left:618.240000pt;}
.x3a_c00142{left:622.080000pt;}
.xba_c00142{left:625.920000pt;}
.xa5_c00142{left:627.453333pt;}
.x4a_c00142{left:628.986667pt;}
.x5d_c00142{left:630.533333pt;}
.x6d_c00142{left:634.373333pt;}
.x62_c00142{left:635.906667pt;}
.x3b_c00142{left:638.213333pt;}
.x71_c00142{left:639.746667pt;}
.x7a_c00142{left:642.053333pt;}
.x13_c00142{left:645.893333pt;}
.xab_c00142{left:647.426667pt;}
.x9d_c00142{left:648.960000pt;}
.x87_c00142{left:651.266667pt;}
.x98_c00142{left:652.800000pt;}
.x44_c00142{left:654.333333pt;}
.x32_c00142{left:657.413333pt;}
.xb8_c00142{left:659.706667pt;}
.x5e_c00142{left:662.786667pt;}
.x8e_c00142{left:665.853333pt;}
.x56_c00142{left:668.160000pt;}
.x1f_c00142{left:670.466667pt;}
.xf5_c00142{left:672.000000pt;}
.x63_c00142{left:675.066667pt;}
.x4b_c00142{left:676.613333pt;}
.xce_c00142{left:678.146667pt;}
.xea_c00142{left:681.986667pt;}
.xbc_c00142{left:683.520000pt;}
.x64_c00142{left:685.053333pt;}
.x6e_c00142{left:686.586667pt;}
.x33_c00142{left:688.133333pt;}
.xff_c00142{left:689.666667pt;}
.x57_c00142{left:691.973333pt;}
.x45_c00142{left:693.506667pt;}
.xdb_c00142{left:695.040000pt;}
.x4c_c00142{left:698.880000pt;}
.x3c_c00142{left:700.413333pt;}
.xdc_c00142{left:702.720000pt;}
.x20_c00142{left:705.786667pt;}
.x14_c00142{left:709.626667pt;}
.x9e_c00142{left:711.933333pt;}
.x99_c00142{left:715.013333pt;}
.x65_c00142{left:717.306667pt;}
.x88_c00142{left:719.613333pt;}
.x15_c00142{left:721.920000pt;}
.xcf_c00142{left:724.226667pt;}
.x8f_c00142{left:725.760000pt;}
.x9f_c00142{left:728.826667pt;}
.x72_c00142{left:731.133333pt;}
.x26_c00142{left:733.440000pt;}
.xbb_c00142{left:734.973333pt;}
.x21_c00142{left:737.280000pt;}
.xb3_c00142{left:739.586667pt;}
.xdf_c00142{left:744.960000pt;}
.xf0_c00142{left:753.413333pt;}
.x27_c00142{left:754.946667pt;}
.x7b_c00142{left:757.253333pt;}
.x4d_c00142{left:761.093333pt;}
.x16_c00142{left:764.160000pt;}
.x17_c00142{left:767.226667pt;}
.x28_c00142{left:771.066667pt;}
.x29_c00142{left:778.746667pt;}
.x34_c00142{left:787.200000pt;}
.x7c_c00142{left:788.733333pt;}
.xd0_c00142{left:790.266667pt;}
.x6f_c00142{left:791.813333pt;}
.x70_c00142{left:799.493333pt;}
.xc2_c00142{left:847.106667pt;}
.xc6_c00142{left:871.680000pt;}
.xc5_c00142{left:873.213333pt;}
.xc3_c00142{left:890.880000pt;}
.xc4_c00142{left:900.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_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_08f6fdf1d18e2dc3a1dc9025.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.109863;font-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_c00143{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c00143{transform:matrix(0.052625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052625,0.000000,0.000000,0.250000,0,0);}
.m5_c00143{transform:matrix(0.056300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056300,0.000000,0.000000,0.250000,0,0);}
.m4_c00143{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m2_c00143{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);}
.m6_c00143{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c00143{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m0_c00143{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1_c00143{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m8_c00143{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,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;}
.fs9_c00143{font-size:6.900000px;}
.fs0_c00143{font-size:13.800000px;}
.fs1_c00143{font-size:17.280000px;}
.fs3_c00143{font-size:20.760000px;}
.fs2_c00143{font-size:24.180000px;}
.fs7_c00143{font-size:44.940000px;}
.fs4_c00143{font-size:51.840000px;}
.fs5_c00143{font-size:124.440000px;}
.fs8_c00143{font-size:131.340000px;}
.fs6_c00143{font-size:221.160000px;}
.y0_c00143{bottom:0.000000px;}
.yc_c00143{bottom:1065.315000px;}
.ya_c00143{bottom:1092.090000px;}
.yb_c00143{bottom:1113.690000px;}
.y8_c00143{bottom:1121.475000px;}
.y9_c00143{bottom:1137.885000px;}
.y7_c00143{bottom:1175.910000px;}
.y6_c00143{bottom:1208.730000px;}
.y5_c00143{bottom:1222.560000px;}
.y4_c00143{bottom:1263.165000px;}
.y3_c00143{bottom:1282.170000px;}
.y2_c00143{bottom:1291.680000px;}
.y1_c00143{bottom:1298.595000px;}
.hb_c00143{height:6.209326px;}
.h2_c00143{height:12.418652px;}
.h3_c00143{height:15.550313px;}
.h5_c00143{height:18.681973px;}
.h4_c00143{height:21.759639px;}
.h9_c00143{height:40.441611px;}
.h6_c00143{height:46.650937px;}
.h7_c00143{height:111.983848px;}
.ha_c00143{height:118.193174px;}
.h8_c00143{height:199.022402px;}
.h1_c00143{height:1503.000000px;}
.h0_c00143{height:1503.360000px;}
.w0_c00143{width:1088.640000px;}
.w1_c00143{width:1089.000000px;}
.x0_c00143{left:0.000000px;}
.x1_c00143{left:10.365000px;}
.x3_c00143{left:16.410000px;}
.x2_c00143{left:77.760000px;}
.x4_c00143{left:138.240000px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls0_c00143{letter-spacing:0.000000pt;}
.ws0_c00143{word-spacing:0.000000pt;}
.fs9_c00143{font-size:6.133333pt;}
.fs0_c00143{font-size:12.266667pt;}
.fs1_c00143{font-size:15.360000pt;}
.fs3_c00143{font-size:18.453333pt;}
.fs2_c00143{font-size:21.493333pt;}
.fs7_c00143{font-size:39.946667pt;}
.fs4_c00143{font-size:46.080000pt;}
.fs5_c00143{font-size:110.613333pt;}
.fs8_c00143{font-size:116.746667pt;}
.fs6_c00143{font-size:196.586667pt;}
.y0_c00143{bottom:0.000000pt;}
.yc_c00143{bottom:946.946667pt;}
.ya_c00143{bottom:970.746667pt;}
.yb_c00143{bottom:989.946667pt;}
.y8_c00143{bottom:996.866667pt;}
.y9_c00143{bottom:1011.453333pt;}
.y7_c00143{bottom:1045.253333pt;}
.y6_c00143{bottom:1074.426667pt;}
.y5_c00143{bottom:1086.720000pt;}
.y4_c00143{bottom:1122.813333pt;}
.y3_c00143{bottom:1139.706667pt;}
.y2_c00143{bottom:1148.160000pt;}
.y1_c00143{bottom:1154.306667pt;}
.hb_c00143{height:5.519401pt;}
.h2_c00143{height:11.038802pt;}
.h3_c00143{height:13.822500pt;}
.h5_c00143{height:16.606198pt;}
.h4_c00143{height:19.341901pt;}
.h9_c00143{height:35.948099pt;}
.h6_c00143{height:41.467500pt;}
.h7_c00143{height:99.541198pt;}
.ha_c00143{height:105.060599pt;}
.h8_c00143{height:176.908802pt;}
.h1_c00143{height:1336.000000pt;}
.h0_c00143{height:1336.320000pt;}
.w0_c00143{width:967.680000pt;}
.w1_c00143{width:968.000000pt;}
.x0_c00143{left:0.000000pt;}
.x1_c00143{left:9.213333pt;}
.x3_c00143{left:14.586667pt;}
.x2_c00143{left:69.120000pt;}
.x4_c00143{left:122.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_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_348de1f1a429f2e6239a8c55.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.109863;font-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_c00144{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m115_c00144{transform:matrix(0.034100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034100,0.000000,0.000000,0.250000,0,0);}
.m131_c00144{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00144{transform:matrix(0.093425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093425,0.000000,0.000000,0.250000,0,0);}
.me0_c00144{transform:matrix(0.094650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094650,0.000000,0.000000,0.250000,0,0);}
.m138_c00144{transform:matrix(0.103275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103275,0.000000,0.000000,0.250000,0,0);}
.m47_c00144{transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);}
.m86_c00144{transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);}
.m45_c00144{transform:matrix(0.108225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108225,0.000000,0.000000,0.250000,0,0);}
.m1b_c00144{transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);}
.m15e_c00144{transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);}
.m110_c00144{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.me2_c00144{transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);}
.m3d_c00144{transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);}
.m61_c00144{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);}
.m123_c00144{transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);}
.m1_c00144{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m7_c00144{transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);}
.m4c_c00144{transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);}
.m37_c00144{transform:matrix(0.127125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127125,0.000000,0.000000,0.250000,0,0);}
.m139_c00144{transform:matrix(0.130175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130175,0.000000,0.000000,0.250000,0,0);}
.m1e_c00144{transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);}
.ma0_c00144{transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);}
.m22_c00144{transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);}
.m120_c00144{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m16_c00144{transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);}
.m105_c00144{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.m128_c00144{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m29_c00144{transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);}
.m100_c00144{transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);}
.mf3_c00144{transform:matrix(0.143600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143600,0.000000,0.000000,0.250000,0,0);}
.m0_c00144{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m20_c00144{transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);}
.mce_c00144{transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);}
.m5e_c00144{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);}
.m88_c00144{transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);}
.m9c_c00144{transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);}
.mf6_c00144{transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);}
.m4d_c00144{transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);}
.m147_c00144{transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);}
.m79_c00144{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);}
.mdb_c00144{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m126_c00144{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.mdc_c00144{transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);}
.mf7_c00144{transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);}
.m15c_c00144{transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);}
.m8a_c00144{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m158_c00144{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.m2a_c00144{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);}
.mcc_c00144{transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);}
.m13e_c00144{transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);}
.m51_c00144{transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);}
.m160_c00144{transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);}
.m15_c00144{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m89_c00144{transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);}
.m106_c00144{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);}
.m49_c00144{transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);}
.m9a_c00144{transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);}
.m118_c00144{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);}
.mda_c00144{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m15b_c00144{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);}
.m15a_c00144{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m2e_c00144{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);}
.m24_c00144{transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);}
.m11f_c00144{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.me_c00144{transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);}
.m6c_c00144{transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);}
.ma4_c00144{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m48_c00144{transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);}
.m117_c00144{transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);}
.m156_c00144{transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);}
.m78_c00144{transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);}
.m5_c00144{transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);}
.m133_c00144{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.mea_c00144{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.me5_c00144{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m42_c00144{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m28_c00144{transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);}
.m56_c00144{transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);}
.m34_c00144{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.m134_c00144{transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);}
.m58_c00144{transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);}
.m66_c00144{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.ma7_c00144{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.m4e_c00144{transform:matrix(0.166150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166150,0.000000,0.000000,0.250000,0,0);}
.m67_c00144{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m30_c00144{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);}
.m10a_c00144{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.m97_c00144{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m1d_c00144{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.me1_c00144{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.ma5_c00144{transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);}
.md1_c00144{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.m98_c00144{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.ma8_c00144{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);}
.m152_c00144{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.m129_c00144{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);}
.mdd_c00144{transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);}
.mb2_c00144{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);}
.m8e_c00144{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.m153_c00144{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.m11b_c00144{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);}
.m19_c00144{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m82_c00144{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m6f_c00144{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.m3b_c00144{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.mbc_c00144{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m81_c00144{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m136_c00144{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.m7a_c00144{transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);}
.m84_c00144{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.mc4_c00144{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);}
.mdf_c00144{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.m60_c00144{transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);}
.mbb_c00144{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.m151_c00144{transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);}
.m10c_c00144{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m23_c00144{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.m1a_c00144{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.med_c00144{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);}
.m13a_c00144{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);}
.mef_c00144{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.mab_c00144{transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);}
.m14d_c00144{transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);}
.m13c_c00144{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m145_c00144{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.m159_c00144{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.m11d_c00144{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);}
.m157_c00144{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);}
.m14b_c00144{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m32_c00144{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m155_c00144{transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);}
.m144_c00144{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m1c_c00144{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.mfa_c00144{transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);}
.m140_c00144{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.mc8_c00144{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.m154_c00144{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);}
.m12e_c00144{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.m25_c00144{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);}
.m142_c00144{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mba_c00144{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.m125_c00144{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.m10f_c00144{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);}
.m14a_c00144{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);}
.m3a_c00144{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);}
.m8d_c00144{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m12f_c00144{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);}
.m3c_c00144{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);}
.mc5_c00144{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.mee_c00144{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);}
.m12a_c00144{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.mbe_c00144{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.m130_c00144{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m10e_c00144{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);}
.mb0_c00144{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);}
.mb5_c00144{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);}
.m4b_c00144{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);}
.maf_c00144{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);}
.mb9_c00144{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.m53_c00144{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m13_c00144{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.m148_c00144{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);}
.m5d_c00144{transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);}
.m15d_c00144{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m52_c00144{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);}
.m65_c00144{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.md9_c00144{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.m10d_c00144{transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);}
.m9b_c00144{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.m9f_c00144{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.mec_c00144{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);}
.m143_c00144{transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);}
.ma1_c00144{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);}
.m7b_c00144{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00144{transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);}
.m14f_c00144{transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);}
.mb6_c00144{transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);}
.m64_c00144{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.m5b_c00144{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m8f_c00144{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.mf9_c00144{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.m10b_c00144{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);}
.m54_c00144{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);}
.mad_c00144{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);}
.m112_c00144{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);}
.m11e_c00144{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);}
.m13f_c00144{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m141_c00144{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.mff_c00144{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);}
.m11a_c00144{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);}
.mc0_c00144{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m57_c00144{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.m9e_c00144{transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);}
.mae_c00144{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);}
.m63_c00144{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m108_c00144{transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);}
.me3_c00144{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.mc2_c00144{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00144{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);}
.md3_c00144{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.mf_c00144{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);}
.mbd_c00144{transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);}
.mc9_c00144{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.mf5_c00144{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.mcb_c00144{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m12d_c00144{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.m132_c00144{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);}
.m149_c00144{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);}
.md2_c00144{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.mf0_c00144{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);}
.m15f_c00144{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);}
.m14c_c00144{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.maa_c00144{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);}
.m93_c00144{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);}
.m2d_c00144{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m137_c00144{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);}
.m2f_c00144{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);}
.m11_c00144{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.mcd_c00144{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);}
.mfc_c00144{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m5c_c00144{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.mb3_c00144{transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);}
.mf1_c00144{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m103_c00144{transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);}
.md5_c00144{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);}
.ma3_c00144{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.m124_c00144{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);}
.m119_c00144{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);}
.m92_c00144{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);}
.m21_c00144{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m150_c00144{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);}
.mb7_c00144{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m146_c00144{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.mf4_c00144{transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);}
.mfe_c00144{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m69_c00144{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.mf8_c00144{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m122_c00144{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m109_c00144{transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);}
.m127_c00144{transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);}
.mb8_c00144{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);}
.m101_c00144{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);}
.m74_c00144{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m39_c00144{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);}
.m104_c00144{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.m18_c00144{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m111_c00144{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);}
.m6d_c00144{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);}
.m6a_c00144{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);}
.m9d_c00144{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);}
.m68_c00144{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.md4_c00144{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.mfd_c00144{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.mcf_c00144{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.mb4_c00144{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);}
.mde_c00144{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);}
.mfb_c00144{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m72_c00144{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);}
.meb_c00144{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00144{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);}
.m46_c00144{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);}
.m5f_c00144{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);}
.ma9_c00144{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);}
.m7f_c00144{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m31_c00144{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00144{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00144{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);}
.m99_c00144{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00144{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);}
.m5a_c00144{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);}
.m13d_c00144{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m73_c00144{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_c00144{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m135_c00144{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m43_c00144{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);}
.m96_c00144{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m87_c00144{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);}
.m8b_c00144{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);}
.m1f_c00144{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m77_c00144{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00144{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);}
.m75_c00144{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m102_c00144{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m90_c00144{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);}
.me4_c00144{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m76_c00144{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m70_c00144{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m71_c00144{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00144{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00144{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m83_c00144{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00144{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);}
.m2c_c00144{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00144{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00144{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c00144{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);}
.m59_c00144{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m26_c00144{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m17_c00144{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);}
.me9_c00144{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2_c00144{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);}
.mc6_c00144{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mca_c00144{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mac_c00144{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00144{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m50_c00144{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);}
.md0_c00144{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00144{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);}
.m94_c00144{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m10_c00144{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);}
.m36_c00144{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m80_c00144{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00144{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m95_c00144{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m85_c00144{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m33_c00144{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m62_c00144{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);}
.m91_c00144{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m35_c00144{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00144{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00144{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00144{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m14e_c00144{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m38_c00144{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00144{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00144{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00144{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m116_c00144{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m40_c00144{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m55_c00144{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.mb_c00144{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m107_c00144{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m14_c00144{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m114_c00144{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m41_c00144{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m44_c00144{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);}
.ma_c00144{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m162_c00144{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m121_c00144{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m6_c00144{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc_c00144{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);}
.m12c_c00144{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00144{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m9_c00144{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.md8_c00144{transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);}
.me7_c00144{transform:matrix(1.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.282500,0.000000,0.000000,0.250000,0,0);}
.m161_c00144{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.me8_c00144{transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00144{transform:matrix(1.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.360000,0.000000,0.000000,0.250000,0,0);}
.me6_c00144{transform:matrix(1.822500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.822500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.822500,0.000000,0.000000,0.250000,0,0);}
.md6_c00144{transform:matrix(1.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.980000,0.000000,0.000000,0.250000,0,0);}
.m113_c00144{transform:matrix(2.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.275000,0.000000,0.000000,0.250000,0,0);}
.md7_c00144{transform:matrix(3.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.920000,0.000000,0.000000,0.250000,0,0);}
.md_c00144{transform:matrix(4.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.607500,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.v1_c00144{vertical-align:3.480000px;}
.ls1_c00144{letter-spacing:0.000000px;}
.ls0_c00144{letter-spacing:33.939500px;}
.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;}
}
.ws1_c00144{word-spacing:0.000000px;}
.ws0_c00144{word-spacing:59.202528px;}
.fc0_c00144{color:transparent;}
.fs0_c00144{font-size:3.456000px;}
.fs3_c00144{font-size:6.000000px;}
.fs17_c00144{font-size:6.900000px;}
.fs1a_c00144{font-size:10.380000px;}
.fs9_c00144{font-size:13.800000px;}
.fs5_c00144{font-size:17.280000px;}
.fs2_c00144{font-size:20.760000px;}
.fs15_c00144{font-size:24.180000px;}
.fs22_c00144{font-size:27.660000px;}
.fs23_c00144{font-size:31.080000px;}
.fs1_c00144{font-size:34.560000px;}
.fs18_c00144{font-size:38.040000px;}
.fs16_c00144{font-size:41.460000px;}
.fs6_c00144{font-size:44.940000px;}
.fs1e_c00144{font-size:48.360000px;}
.fs1d_c00144{font-size:51.840000px;}
.fs7_c00144{font-size:55.320000px;}
.fs8_c00144{font-size:58.740000px;}
.fs4_c00144{font-size:62.220000px;}
.fs13_c00144{font-size:65.640000px;}
.fsc_c00144{font-size:69.120000px;}
.fs14_c00144{font-size:72.600000px;}
.fs1c_c00144{font-size:76.020000px;}
.fs19_c00144{font-size:79.500000px;}
.fsd_c00144{font-size:82.920000px;}
.fsf_c00144{font-size:86.400000px;}
.fsb_c00144{font-size:89.880000px;}
.fs11_c00144{font-size:93.300000px;}
.fsa_c00144{font-size:96.780000px;}
.fse_c00144{font-size:100.200000px;}
.fs12_c00144{font-size:103.680000px;}
.fs10_c00144{font-size:107.160000px;}
.fs21_c00144{font-size:110.580000px;}
.fs1b_c00144{font-size:114.060000px;}
.fs20_c00144{font-size:117.480000px;}
.fs1f_c00144{font-size:120.960000px;}
.y0_c00144{bottom:0.000000px;}
.y171_c00144{bottom:216.870000px;}
.y16b_c00144{bottom:228.960000px;}
.y169_c00144{bottom:230.685000px;}
.y16a_c00144{bottom:231.555000px;}
.y16d_c00144{bottom:232.410000px;}
.y16c_c00144{bottom:236.730000px;}
.y166_c00144{bottom:257.475000px;}
.y168_c00144{bottom:260.070000px;}
.y167_c00144{bottom:260.925000px;}
.y165_c00144{bottom:279.930000px;}
.y163_c00144{bottom:283.395000px;}
.y160_c00144{bottom:284.250000px;}
.y161_c00144{bottom:285.120000px;}
.y15f_c00144{bottom:285.990000px;}
.y164_c00144{bottom:289.440000px;}
.y162_c00144{bottom:291.165000px;}
.y15d_c00144{bottom:309.315000px;}
.y15a_c00144{bottom:310.170000px;}
.y159_c00144{bottom:315.360000px;}
.y15c_c00144{bottom:316.230000px;}
.y15e_c00144{bottom:317.085000px;}
.y15b_c00144{bottom:317.955000px;}
.y158_c00144{bottom:330.045000px;}
.y157_c00144{bottom:333.510000px;}
.y151_c00144{bottom:334.365000px;}
.y154_c00144{bottom:335.235000px;}
.y155_c00144{bottom:336.090000px;}
.y152_c00144{bottom:336.960000px;}
.y156_c00144{bottom:340.410000px;}
.y150_c00144{bottom:341.280000px;}
.y153_c00144{bottom:343.005000px;}
.y149_c00144{bottom:358.560000px;}
.y14d_c00144{bottom:359.430000px;}
.y14e_c00144{bottom:360.285000px;}
.y148_c00144{bottom:361.155000px;}
.y14f_c00144{bottom:365.475000px;}
.y14b_c00144{bottom:366.330000px;}
.y14c_c00144{bottom:367.200000px;}
.y14a_c00144{bottom:368.070000px;}
.y144_c00144{bottom:387.075000px;}
.y146_c00144{bottom:387.930000px;}
.y147_c00144{bottom:391.395000px;}
.y145_c00144{bottom:393.120000px;}
.y139_c00144{bottom:411.270000px;}
.y138_c00144{bottom:412.125000px;}
.y13b_c00144{bottom:414.720000px;}
.y142_c00144{bottom:417.315000px;}
.y137_c00144{bottom:419.040000px;}
.y13d_c00144{bottom:420.765000px;}
.y140_c00144{bottom:421.635000px;}
.y13e_c00144{bottom:422.490000px;}
.y13c_c00144{bottom:423.360000px;}
.y141_c00144{bottom:425.085000px;}
.y13a_c00144{bottom:427.680000px;}
.y13f_c00144{bottom:431.130000px;}
.y143_c00144{bottom:433.725000px;}
.y133_c00144{bottom:434.595000px;}
.y135_c00144{bottom:435.450000px;}
.y131_c00144{bottom:437.190000px;}
.y12e_c00144{bottom:438.915000px;}
.y132_c00144{bottom:439.770000px;}
.y130_c00144{bottom:441.510000px;}
.y134_c00144{bottom:443.235000px;}
.y12f_c00144{bottom:448.410000px;}
.y12d_c00144{bottom:450.150000px;}
.y136_c00144{bottom:452.730000px;}
.y12c_c00144{bottom:458.790000px;}
.y129_c00144{bottom:462.240000px;}
.y126_c00144{bottom:463.965000px;}
.y125_c00144{bottom:464.835000px;}
.y128_c00144{bottom:465.690000px;}
.y12a_c00144{bottom:467.430000px;}
.y127_c00144{bottom:468.285000px;}
.y124_c00144{bottom:470.010000px;}
.y12b_c00144{bottom:478.650000px;}
.y123_c00144{bottom:486.435000px;}
.y121_c00144{bottom:487.290000px;}
.y11a_c00144{bottom:489.030000px;}
.y122_c00144{bottom:489.885000px;}
.y119_c00144{bottom:491.610000px;}
.y11e_c00144{bottom:492.480000px;}
.y118_c00144{bottom:493.350000px;}
.y11b_c00144{bottom:494.205000px;}
.y11f_c00144{bottom:496.800000px;}
.y11d_c00144{bottom:499.395000px;}
.y11c_c00144{bottom:500.250000px;}
.y117_c00144{bottom:501.990000px;}
.y115_c00144{bottom:504.570000px;}
.y120_c00144{bottom:506.310000px;}
.y116_c00144{bottom:509.760000px;}
.y114_c00144{bottom:510.630000px;}
.y10e_c00144{bottom:512.355000px;}
.y10d_c00144{bottom:513.210000px;}
.y10f_c00144{bottom:514.950000px;}
.y111_c00144{bottom:516.675000px;}
.y110_c00144{bottom:517.530000px;}
.y10c_c00144{bottom:518.400000px;}
.y113_c00144{bottom:519.270000px;}
.y112_c00144{bottom:520.125000px;}
.y109_c00144{bottom:535.680000px;}
.y105_c00144{bottom:537.405000px;}
.y104_c00144{bottom:538.275000px;}
.y108_c00144{bottom:539.130000px;}
.y10b_c00144{bottom:540.000000px;}
.y10a_c00144{bottom:540.870000px;}
.y107_c00144{bottom:541.725000px;}
.y103_c00144{bottom:544.320000px;}
.y106_c00144{bottom:545.190000px;}
.yfe_c00144{bottom:562.470000px;}
.y102_c00144{bottom:563.325000px;}
.y101_c00144{bottom:567.645000px;}
.yff_c00144{bottom:569.370000px;}
.y100_c00144{bottom:570.240000px;}
.yf8_c00144{bottom:584.925000px;}
.yfd_c00144{bottom:586.650000px;}
.yfa_c00144{bottom:587.520000px;}
.yf9_c00144{bottom:588.390000px;}
.yfb_c00144{bottom:591.840000px;}
.yf7_c00144{bottom:592.710000px;}
.yfc_c00144{bottom:595.290000px;}
.yf4_c00144{bottom:611.715000px;}
.yf3_c00144{bottom:612.570000px;}
.yf1_c00144{bottom:614.310000px;}
.yf5_c00144{bottom:619.485000px;}
.yf6_c00144{bottom:620.355000px;}
.yf2_c00144{bottom:621.210000px;}
.yf0_c00144{bottom:635.910000px;}
.yee_c00144{bottom:637.635000px;}
.yeb_c00144{bottom:638.490000px;}
.yed_c00144{bottom:641.085000px;}
.yef_c00144{bottom:641.955000px;}
.yec_c00144{bottom:646.275000px;}
.yea_c00144{bottom:650.595000px;}
.ye2_c00144{bottom:663.555000px;}
.ye8_c00144{bottom:666.150000px;}
.ye1_c00144{bottom:667.875000px;}
.ydf_c00144{bottom:668.730000px;}
.ye5_c00144{bottom:672.195000px;}
.ye3_c00144{bottom:673.050000px;}
.ye9_c00144{bottom:673.920000px;}
.ye7_c00144{bottom:674.790000px;}
.ye4_c00144{bottom:676.515000px;}
.ye6_c00144{bottom:680.835000px;}
.ye0_c00144{bottom:681.690000px;}
.yd7_c00144{bottom:686.880000px;}
.ydb_c00144{bottom:687.750000px;}
.yde_c00144{bottom:689.475000px;}
.yd9_c00144{bottom:691.200000px;}
.yd8_c00144{bottom:692.070000px;}
.ydc_c00144{bottom:693.795000px;}
.ydd_c00144{bottom:694.650000px;}
.yda_c00144{bottom:695.520000px;}
.yd5_c00144{bottom:696.390000px;}
.yd6_c00144{bottom:698.115000px;}
.yd1_c00144{bottom:714.525000px;}
.yd2_c00144{bottom:715.395000px;}
.yd4_c00144{bottom:716.250000px;}
.yd3_c00144{bottom:717.120000px;}
.ycd_c00144{bottom:721.440000px;}
.ycf_c00144{bottom:724.035000px;}
.yce_c00144{bottom:732.675000px;}
.yd0_c00144{bottom:736.125000px;}
.yc9_c00144{bottom:738.720000px;}
.yca_c00144{bottom:739.590000px;}
.ycc_c00144{bottom:742.170000px;}
.ycb_c00144{bottom:745.635000px;}
.yc8_c00144{bottom:746.490000px;}
.yc7_c00144{bottom:749.955000px;}
.ybf_c00144{bottom:762.045000px;}
.yc1_c00144{bottom:762.915000px;}
.yc3_c00144{bottom:763.770000px;}
.yc0_c00144{bottom:764.640000px;}
.yc5_c00144{bottom:767.235000px;}
.yc2_c00144{bottom:769.830000px;}
.yc4_c00144{bottom:770.685000px;}
.ybe_c00144{bottom:771.555000px;}
.yc6_c00144{bottom:787.110000px;}
.yb8_c00144{bottom:787.965000px;}
.yb7_c00144{bottom:788.835000px;}
.yb6_c00144{bottom:789.690000px;}
.yba_c00144{bottom:792.285000px;}
.ybc_c00144{bottom:794.010000px;}
.yb9_c00144{bottom:795.750000px;}
.ybb_c00144{bottom:796.605000px;}
.ybd_c00144{bottom:802.650000px;}
.yb1_c00144{bottom:812.160000px;}
.yb3_c00144{bottom:813.885000px;}
.yb0_c00144{bottom:815.610000px;}
.yb5_c00144{bottom:816.480000px;}
.yb2_c00144{bottom:819.930000px;}
.yb4_c00144{bottom:820.800000px;}
.yaa_c00144{bottom:836.355000px;}
.yac_c00144{bottom:837.210000px;}
.ya9_c00144{bottom:838.080000px;}
.yae_c00144{bottom:841.530000px;}
.yab_c00144{bottom:844.125000px;}
.yad_c00144{bottom:845.850000px;}
.yaf_c00144{bottom:846.720000px;}
.ya4_c00144{bottom:862.275000px;}
.ya7_c00144{bottom:863.130000px;}
.ya1_c00144{bottom:864.000000px;}
.ya6_c00144{bottom:864.870000px;}
.ya3_c00144{bottom:866.595000px;}
.ya2_c00144{bottom:870.045000px;}
.ya5_c00144{bottom:870.915000px;}
.ya8_c00144{bottom:873.510000px;}
.y9d_c00144{bottom:887.325000px;}
.y9c_c00144{bottom:888.195000px;}
.y9e_c00144{bottom:889.050000px;}
.ya0_c00144{bottom:895.965000px;}
.y9f_c00144{bottom:896.835000px;}
.y9a_c00144{bottom:911.520000px;}
.y96_c00144{bottom:912.390000px;}
.y98_c00144{bottom:913.245000px;}
.y95_c00144{bottom:914.115000px;}
.y9b_c00144{bottom:914.970000px;}
.y97_c00144{bottom:919.290000px;}
.y99_c00144{bottom:921.885000px;}
.y8e_c00144{bottom:938.310000px;}
.y92_c00144{bottom:939.165000px;}
.y94_c00144{bottom:940.035000px;}
.y8d_c00144{bottom:940.890000px;}
.y90_c00144{bottom:941.760000px;}
.y93_c00144{bottom:944.355000px;}
.y8f_c00144{bottom:946.080000px;}
.y91_c00144{bottom:946.950000px;}
.y8c_c00144{bottom:949.530000px;}
.y88_c00144{bottom:962.490000px;}
.y86_c00144{bottom:963.360000px;}
.y89_c00144{bottom:964.230000px;}
.y8a_c00144{bottom:966.810000px;}
.y87_c00144{bottom:968.550000px;}
.y8b_c00144{bottom:977.190000px;}
.y170_c00144{bottom:980.640000px;}
.y80_c00144{bottom:989.280000px;}
.y7f_c00144{bottom:990.150000px;}
.y81_c00144{bottom:991.005000px;}
.y85_c00144{bottom:992.730000px;}
.y83_c00144{bottom:996.195000px;}
.y82_c00144{bottom:997.050000px;}
.y84_c00144{bottom:997.920000px;}
.y7e_c00144{bottom:1004.835000px;}
.y7b_c00144{bottom:1010.010000px;}
.y79_c00144{bottom:1010.880000px;}
.y7c_c00144{bottom:1011.750000px;}
.y7d_c00144{bottom:1016.070000px;}
.y7a_c00144{bottom:1022.115000px;}
.y74_c00144{bottom:1039.395000px;}
.y73_c00144{bottom:1041.120000px;}
.y78_c00144{bottom:1041.990000px;}
.y76_c00144{bottom:1042.845000px;}
.y77_c00144{bottom:1044.570000px;}
.y75_c00144{bottom:1048.035000px;}
.y71_c00144{bottom:1067.910000px;}
.y70_c00144{bottom:1068.765000px;}
.y72_c00144{bottom:1070.490000px;}
.y6d_c00144{bottom:1071.360000px;}
.y6e_c00144{bottom:1072.230000px;}
.y6f_c00144{bottom:1073.085000px;}
.y6c_c00144{bottom:1083.450000px;}
.y66_c00144{bottom:1088.640000px;}
.y6a_c00144{bottom:1090.365000px;}
.y69_c00144{bottom:1091.235000px;}
.y68_c00144{bottom:1092.090000px;}
.y6b_c00144{bottom:1097.280000px;}
.y67_c00144{bottom:1098.150000px;}
.y65_c00144{bottom:1113.690000px;}
.y60_c00144{bottom:1115.430000px;}
.y5f_c00144{bottom:1116.285000px;}
.y62_c00144{bottom:1118.010000px;}
.y63_c00144{bottom:1118.880000px;}
.y64_c00144{bottom:1121.475000px;}
.y61_c00144{bottom:1122.330000px;}
.y58_c00144{bottom:1137.885000px;}
.y5d_c00144{bottom:1138.755000px;}
.y5c_c00144{bottom:1139.610000px;}
.y5a_c00144{bottom:1140.480000px;}
.y59_c00144{bottom:1141.350000px;}
.y5e_c00144{bottom:1143.075000px;}
.y5b_c00144{bottom:1147.395000px;}
.y52_c00144{bottom:1162.950000px;}
.y54_c00144{bottom:1163.805000px;}
.y57_c00144{bottom:1164.675000px;}
.y56_c00144{bottom:1165.530000px;}
.y53_c00144{bottom:1171.590000px;}
.y55_c00144{bottom:1173.315000px;}
.y51_c00144{bottom:1186.275000px;}
.y4c_c00144{bottom:1188.870000px;}
.y50_c00144{bottom:1189.725000px;}
.y4f_c00144{bottom:1190.595000px;}
.y16f_c00144{bottom:1191.450000px;}
.y4d_c00144{bottom:1197.510000px;}
.y4e_c00144{bottom:1198.365000px;}
.y46_c00144{bottom:1213.050000px;}
.y49_c00144{bottom:1213.920000px;}
.y47_c00144{bottom:1215.645000px;}
.y4a_c00144{bottom:1216.515000px;}
.y48_c00144{bottom:1219.965000px;}
.y45_c00144{bottom:1223.430000px;}
.y44_c00144{bottom:1227.750000px;}
.y4b_c00144{bottom:1232.070000px;}
.y3d_c00144{bottom:1237.245000px;}
.y42_c00144{bottom:1238.970000px;}
.y43_c00144{bottom:1239.840000px;}
.y41_c00144{bottom:1241.565000px;}
.y3f_c00144{bottom:1243.290000px;}
.y40_c00144{bottom:1245.885000px;}
.y3e_c00144{bottom:1251.075000px;}
.y36_c00144{bottom:1264.890000px;}
.y3b_c00144{bottom:1265.760000px;}
.y37_c00144{bottom:1266.630000px;}
.y3a_c00144{bottom:1268.355000px;}
.y3c_c00144{bottom:1270.080000px;}
.y38_c00144{bottom:1273.530000px;}
.y39_c00144{bottom:1278.720000px;}
.y35_c00144{bottom:1287.360000px;}
.y31_c00144{bottom:1289.085000px;}
.y33_c00144{bottom:1289.955000px;}
.y34_c00144{bottom:1290.810000px;}
.y32_c00144{bottom:1292.550000px;}
.y30_c00144{bottom:1294.275000px;}
.y2f_c00144{bottom:1296.870000px;}
.y16e_c00144{bottom:1300.320000px;}
.y29_c00144{bottom:1313.280000px;}
.y2a_c00144{bottom:1314.150000px;}
.y2d_c00144{bottom:1315.005000px;}
.y2e_c00144{bottom:1321.050000px;}
.y2b_c00144{bottom:1321.920000px;}
.y28_c00144{bottom:1322.790000px;}
.y2c_c00144{bottom:1323.645000px;}
.y26_c00144{bottom:1327.965000px;}
.y27_c00144{bottom:1334.010000px;}
.y21_c00144{bottom:1338.330000px;}
.y22_c00144{bottom:1339.200000px;}
.y25_c00144{bottom:1340.070000px;}
.y23_c00144{bottom:1340.925000px;}
.y24_c00144{bottom:1344.390000px;}
.y20_c00144{bottom:1346.970000px;}
.y1c_c00144{bottom:1364.250000px;}
.y1b_c00144{bottom:1365.120000px;}
.y18_c00144{bottom:1365.990000px;}
.y1d_c00144{bottom:1366.845000px;}
.y19_c00144{bottom:1367.715000px;}
.y1f_c00144{bottom:1368.570000px;}
.y1a_c00144{bottom:1370.310000px;}
.y1e_c00144{bottom:1371.165000px;}
.y17_c00144{bottom:1373.760000px;}
.yf_c00144{bottom:1390.170000px;}
.ye_c00144{bottom:1391.040000px;}
.y11_c00144{bottom:1391.910000px;}
.y13_c00144{bottom:1393.635000px;}
.y15_c00144{bottom:1394.490000px;}
.y12_c00144{bottom:1397.085000px;}
.y14_c00144{bottom:1397.955000px;}
.y16_c00144{bottom:1399.680000px;}
.yd_c00144{bottom:1410.045000px;}
.y10_c00144{bottom:1410.915000px;}
.y6_c00144{bottom:1411.770000px;}
.yc_c00144{bottom:1414.365000px;}
.y8_c00144{bottom:1415.235000px;}
.y5_c00144{bottom:1416.090000px;}
.y9_c00144{bottom:1424.730000px;}
.yb_c00144{bottom:1425.600000px;}
.ya_c00144{bottom:1429.050000px;}
.y7_c00144{bottom:1432.515000px;}
.y3_c00144{bottom:1448.925000px;}
.y4_c00144{bottom:1451.520000px;}
.y2_c00144{bottom:1454.970000px;}
.y1_c00144{bottom:1463.610000px;}
.h2_c00144{height:3.110063px;}
.h5_c00144{height:5.399414px;}
.h19_c00144{height:6.209326px;}
.h26_c00144{height:8.879414px;}
.h1c_c00144{height:9.340986px;}
.hb_c00144{height:12.418652px;}
.h7_c00144{height:15.550313px;}
.h4_c00144{height:18.681973px;}
.h17_c00144{height:21.759639px;}
.h24_c00144{height:24.891299px;}
.h25_c00144{height:27.968965px;}
.h3_c00144{height:31.100625px;}
.h1a_c00144{height:34.232285px;}
.h18_c00144{height:37.309951px;}
.h8_c00144{height:40.441611px;}
.h20_c00144{height:43.519277px;}
.h1f_c00144{height:46.650937px;}
.h9_c00144{height:49.782598px;}
.ha_c00144{height:52.860264px;}
.h6_c00144{height:55.991924px;}
.h15_c00144{height:59.069590px;}
.he_c00144{height:62.201250px;}
.h16_c00144{height:65.332910px;}
.h1e_c00144{height:68.410576px;}
.h1b_c00144{height:71.542236px;}
.hf_c00144{height:74.619902px;}
.h11_c00144{height:77.751563px;}
.hd_c00144{height:80.883223px;}
.h13_c00144{height:83.960889px;}
.hc_c00144{height:87.092549px;}
.h10_c00144{height:90.170215px;}
.h14_c00144{height:93.301875px;}
.h12_c00144{height:96.433535px;}
.h23_c00144{height:99.511201px;}
.h1d_c00144{height:102.642861px;}
.h22_c00144{height:105.720527px;}
.h21_c00144{height:108.852188px;}
.h0_c00144{height:1517.190000px;}
.h1_c00144{height:1517.250000px;}
.w0_c00144{width:1090.365000px;}
.w1_c00144{width:1090.500000px;}
.x0_c00144{left:0.000000px;}
.x36_c00144{left:150.330000px;}
.x2c_c00144{left:175.395000px;}
.x37_c00144{left:182.310000px;}
.xd_c00144{left:198.720000px;}
.xec_c00144{left:200.445000px;}
.xf3_c00144{left:207.360000px;}
.xd7_c00144{left:212.550000px;}
.xe_c00144{left:214.275000px;}
.xc1_c00144{left:216.870000px;}
.x2d_c00144{left:219.450000px;}
.x16_c00144{left:222.045000px;}
.xf9_c00144{left:223.770000px;}
.x58_c00144{left:225.510000px;}
.xfb_c00144{left:227.235000px;}
.x17_c00144{left:229.830000px;}
.xeb_c00144{left:232.410000px;}
.x23_c00144{left:234.150000px;}
.x38_c00144{left:236.730000px;}
.x24_c00144{left:238.470000px;}
.xb5_c00144{left:240.195000px;}
.x44_c00144{left:241.920000px;}
.x18_c00144{left:243.645000px;}
.xf_c00144{left:246.240000px;}
.x39_c00144{left:248.835000px;}
.xe1_c00144{left:251.430000px;}
.x4e_c00144{left:253.155000px;}
.x45_c00144{left:255.750000px;}
.xde_c00144{left:260.070000px;}
.x46_c00144{left:266.115000px;}
.xad_c00144{left:268.710000px;}
.x2e_c00144{left:272.160000px;}
.xb9_c00144{left:273.885000px;}
.xcc_c00144{left:276.480000px;}
.x9b_c00144{left:280.800000px;}
.x95_c00144{left:284.250000px;}
.xc4_c00144{left:285.990000px;}
.x4f_c00144{left:289.440000px;}
.xd6_c00144{left:291.165000px;}
.x3a_c00144{left:296.355000px;}
.xd8_c00144{left:300.675000px;}
.x10_c00144{left:302.400000px;}
.x59_c00144{left:306.720000px;}
.xc2_c00144{left:308.445000px;}
.x19_c00144{left:312.765000px;}
.x62_c00144{left:315.360000px;}
.x6c_c00144{left:318.810000px;}
.x88_c00144{left:320.550000px;}
.x47_c00144{left:323.130000px;}
.x25_c00144{left:325.725000px;}
.x77_c00144{left:327.450000px;}
.x5a_c00144{left:330.045000px;}
.xed_c00144{left:332.640000px;}
.xc7_c00144{left:336.960000px;}
.x1a_c00144{left:338.685000px;}
.x93_c00144{left:340.410000px;}
.x79_c00144{left:343.005000px;}
.xc8_c00144{left:346.470000px;}
.x89_c00144{left:350.790000px;}
.x48_c00144{left:352.515000px;}
.xa7_c00144{left:357.690000px;}
.xb6_c00144{left:361.155000px;}
.x49_c00144{left:367.200000px;}
.x3e_c00144{left:370.650000px;}
.xf7_c00144{left:374.115000px;}
.x26_c00144{left:375.840000px;}
.x11_c00144{left:377.565000px;}
.x8a_c00144{left:379.290000px;}
.x2f_c00144{left:384.480000px;}
.xe2_c00144{left:389.670000px;}
.x3b_c00144{left:391.395000px;}
.xba_c00144{left:393.120000px;}
.x5_c00144{left:395.715075px;}
.x5b_c00144{left:397.440000px;}
.x1b_c00144{left:399.165000px;}
.x7a_c00144{left:400.890000px;}
.xc3_c00144{left:404.355000px;}
.x50_c00144{left:408.675000px;}
.xca_c00144{left:410.400000px;}
.xd9_c00144{left:412.125000px;}
.xee_c00144{left:414.720000px;}
.xbb_c00144{left:417.315000px;}
.x27_c00144{left:423.360000px;}
.xbc_c00144{left:431.130000px;}
.x30_c00144{left:433.725000px;}
.x3f_c00144{left:437.190000px;}
.x8b_c00144{left:439.770000px;}
.x84_c00144{left:441.510000px;}
.x54_c00144{left:444.090000px;}
.x5c_c00144{left:445.830000px;}
.xdf_c00144{left:449.280000px;}
.x40_c00144{left:454.470000px;}
.xcd_c00144{left:456.195000px;}
.x68_c00144{left:457.920000px;}
.xa1_c00144{left:459.645000px;}
.x7b_c00144{left:461.370000px;}
.xef_c00144{left:468.285000px;}
.x6d_c00144{left:470.010000px;}
.xfc_c00144{left:471.750000px;}
.x28_c00144{left:473.475000px;}
.x1c_c00144{left:475.200000px;}
.x71_c00144{left:476.925000px;}
.x12_c00144{left:480.390000px;}
.x29_c00144{left:482.970000px;}
.xbd_c00144{left:485.565000px;}
.xa8_c00144{left:488.160000px;}
.x63_c00144{left:492.480000px;}
.x69_c00144{left:495.075000px;}
.xe3_c00144{left:496.800000px;}
.x55_c00144{left:501.990000px;}
.x41_c00144{left:505.440000px;}
.xbe_c00144{left:507.165000px;}
.x6e_c00144{left:508.890000px;}
.x2a_c00144{left:511.485000px;}
.x78_c00144{left:514.080000px;}
.x85_c00144{left:515.805000px;}
.xa9_c00144{left:520.995000px;}
.x7c_c00144{left:522.720000px;}
.x51_c00144{left:527.040000px;}
.x96_c00144{left:528.765000px;}
.x72_c00144{left:531.360000px;}
.x94_c00144{left:533.955000px;}
.xe8_c00144{left:535.680000px;}
.x1d_c00144{left:537.405000px;}
.xa2_c00144{left:543.450000px;}
.x6_c00144{left:548.640000px;}
.xb7_c00144{left:551.235000px;}
.x97_c00144{left:552.960000px;}
.xc5_c00144{left:555.555000px;}
.xd3_c00144{left:558.150000px;}
.xaa_c00144{left:561.600000px;}
.x6f_c00144{left:565.920000px;}
.x86_c00144{left:567.645000px;}
.x64_c00144{left:571.110000px;}
.x4a_c00144{left:575.430000px;}
.x5e_c00144{left:578.880000px;}
.x8c_c00144{left:580.605000px;}
.x13_c00144{left:582.330000px;}
.xae_c00144{left:584.070000px;}
.x9c_c00144{left:585.795000px;}
.xe9_c00144{left:587.520000px;}
.x31_c00144{left:590.115000px;}
.x92_c00144{left:591.840000px;}
.xe4_c00144{left:593.565000px;}
.x32_c00144{left:595.290000px;}
.x8d_c00144{left:597.030000px;}
.x4b_c00144{left:599.610000px;}
.xce_c00144{left:601.350000px;}
.x65_c00144{left:603.075000px;}
.xea_c00144{left:604.800000px;}
.x5d_c00144{left:609.120000px;}
.x1e_c00144{left:611.715000px;}
.xf4_c00144{left:613.440000px;}
.x7d_c00144{left:616.035000px;}
.xa3_c00144{left:618.630000px;}
.x3c_c00144{left:621.210000px;}
.x6a_c00144{left:622.950000px;}
.xaf_c00144{left:625.530000px;}
.x14_c00144{left:628.125000px;}
.xc6_c00144{left:629.850000px;}
.x7e_c00144{left:632.445000px;}
.x98_c00144{left:634.170000px;}
.x56_c00144{left:639.360000px;}
.x66_c00144{left:644.550000px;}
.x5f_c00144{left:647.130000px;}
.xb2_c00144{left:649.725000px;}
.x1f_c00144{left:653.190000px;}
.xd4_c00144{left:654.915000px;}
.x9d_c00144{left:656.640000px;}
.xbf_c00144{left:658.365000px;}
.xda_c00144{left:660.960000px;}
.x15_c00144{left:663.555000px;}
.x60_c00144{left:668.730000px;}
.x1_c00144{left:670.470000px;}
.xa4_c00144{left:673.050000px;}
.xcf_c00144{left:674.790000px;}
.x42_c00144{left:677.370000px;}
.x2_c00144{left:679.110000px;}
.x3_c00144{left:682.560000px;}
.xd5_c00144{left:684.285000px;}
.xc0_c00144{left:686.010525px;}
.x8e_c00144{left:687.750000px;}
.xdb_c00144{left:689.475000px;}
.x7f_c00144{left:691.200000px;}
.xe5_c00144{left:694.650000px;}
.x8f_c00144{left:698.115000px;}
.x80_c00144{left:699.840000px;}
.x73_c00144{left:705.030000px;}
.x4_c00144{left:706.755000px;}
.x99_c00144{left:708.480000px;}
.x7_c00144{left:711.075000px;}
.xd0_c00144{left:714.525000px;}
.xab_c00144{left:716.250000px;}
.x8_c00144{left:718.845000px;}
.x70_c00144{left:724.035000px;}
.x20_c00144{left:725.760000px;}
.x4c_c00144{left:728.355000px;}
.xf8_c00144{left:730.950000px;}
.x90_c00144{left:733.530000px;}
.x2b_c00144{left:735.270000px;}
.x61_c00144{left:740.445000px;}
.xf0_c00144{left:743.040000px;}
.x57_c00144{left:744.765000px;}
.x81_c00144{left:746.490000px;}
.xb_c00144{left:749.955000px;}
.x9e_c00144{left:751.680000px;}
.x21_c00144{left:754.275000px;}
.xfa_c00144{left:756.000000px;}
.x9_c00144{left:758.595000px;}
.x67_c00144{left:760.320000px;}
.xa5_c00144{left:762.915000px;}
.x33_c00144{left:764.640000px;}
.xb0_c00144{left:768.960000px;}
.x74_c00144{left:771.555000px;}
.x4d_c00144{left:775.005000px;}
.xe6_c00144{left:778.470000px;}
.x91_c00144{left:786.240000px;}
.x52_c00144{left:787.965000px;}
.xa_c00144{left:794.010000px;}
.x3d_c00144{left:797.475000px;}
.x75_c00144{left:800.070000px;}
.xf5_c00144{left:801.795000px;}
.xd1_c00144{left:804.390000px;}
.x82_c00144{left:809.565000px;}
.x9f_c00144{left:811.290000px;}
.xd2_c00144{left:813.030000px;}
.xb8_c00144{left:816.480000px;}
.x43_c00144{left:818.205000px;}
.xb3_c00144{left:822.525000px;}
.xc9_c00144{left:825.990000px;}
.xdc_c00144{left:828.570000px;}
.x22_c00144{left:830.310000px;}
.xa0_c00144{left:833.760000px;}
.xb4_c00144{left:835.485000px;}
.xc_c00144{left:837.210000px;}
.xf1_c00144{left:841.530000px;}
.xcb_c00144{left:844.125000px;}
.xf6_c00144{left:846.720000px;}
.x83_c00144{left:849.315000px;}
.x34_c00144{left:851.910000px;}
.x53_c00144{left:856.230000px;}
.x6b_c00144{left:861.405000px;}
.xa6_c00144{left:865.725000px;}
.x76_c00144{left:871.770000px;}
.xdd_c00144{left:874.365000px;}
.x35_c00144{left:883.005000px;}
.xf2_c00144{left:886.470000px;}
.xe0_c00144{left:888.195000px;}
.xe7_c00144{left:889.920000px;}
.xac_c00144{left:891.645000px;}
.x9a_c00144{left:895.110000px;}
.x87_c00144{left:905.475000px;}
.xb1_c00144{left:908.070000px;}
.x102_c00144{left:928.801320px;}
.x103_c00144{left:1004.835000px;}
.x100_c00144{left:1049.760000px;}
.xfd_c00144{left:1051.485000px;}
.xff_c00144{left:1053.210000px;}
.xfe_c00144{left:1059.270000px;}
.x101_c00144{left:1068.765000px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.v1_c00144{vertical-align:3.093333pt;}
.ls1_c00144{letter-spacing:0.000000pt;}
.ls0_c00144{letter-spacing:30.168444pt;}
.ws1_c00144{word-spacing:0.000000pt;}
.ws0_c00144{word-spacing:52.624469pt;}
.fs0_c00144{font-size:3.072000pt;}
.fs3_c00144{font-size:5.333333pt;}
.fs17_c00144{font-size:6.133333pt;}
.fs1a_c00144{font-size:9.226667pt;}
.fs9_c00144{font-size:12.266667pt;}
.fs5_c00144{font-size:15.360000pt;}
.fs2_c00144{font-size:18.453333pt;}
.fs15_c00144{font-size:21.493333pt;}
.fs22_c00144{font-size:24.586667pt;}
.fs23_c00144{font-size:27.626667pt;}
.fs1_c00144{font-size:30.720000pt;}
.fs18_c00144{font-size:33.813333pt;}
.fs16_c00144{font-size:36.853333pt;}
.fs6_c00144{font-size:39.946667pt;}
.fs1e_c00144{font-size:42.986667pt;}
.fs1d_c00144{font-size:46.080000pt;}
.fs7_c00144{font-size:49.173333pt;}
.fs8_c00144{font-size:52.213333pt;}
.fs4_c00144{font-size:55.306667pt;}
.fs13_c00144{font-size:58.346667pt;}
.fsc_c00144{font-size:61.440000pt;}
.fs14_c00144{font-size:64.533333pt;}
.fs1c_c00144{font-size:67.573333pt;}
.fs19_c00144{font-size:70.666667pt;}
.fsd_c00144{font-size:73.706667pt;}
.fsf_c00144{font-size:76.800000pt;}
.fsb_c00144{font-size:79.893333pt;}
.fs11_c00144{font-size:82.933333pt;}
.fsa_c00144{font-size:86.026667pt;}
.fse_c00144{font-size:89.066667pt;}
.fs12_c00144{font-size:92.160000pt;}
.fs10_c00144{font-size:95.253333pt;}
.fs21_c00144{font-size:98.293333pt;}
.fs1b_c00144{font-size:101.386667pt;}
.fs20_c00144{font-size:104.426667pt;}
.fs1f_c00144{font-size:107.520000pt;}
.y0_c00144{bottom:0.000000pt;}
.y171_c00144{bottom:192.773333pt;}
.y16b_c00144{bottom:203.520000pt;}
.y169_c00144{bottom:205.053333pt;}
.y16a_c00144{bottom:205.826667pt;}
.y16d_c00144{bottom:206.586667pt;}
.y16c_c00144{bottom:210.426667pt;}
.y166_c00144{bottom:228.866667pt;}
.y168_c00144{bottom:231.173333pt;}
.y167_c00144{bottom:231.933333pt;}
.y165_c00144{bottom:248.826667pt;}
.y163_c00144{bottom:251.906667pt;}
.y160_c00144{bottom:252.666667pt;}
.y161_c00144{bottom:253.440000pt;}
.y15f_c00144{bottom:254.213333pt;}
.y164_c00144{bottom:257.280000pt;}
.y162_c00144{bottom:258.813333pt;}
.y15d_c00144{bottom:274.946667pt;}
.y15a_c00144{bottom:275.706667pt;}
.y159_c00144{bottom:280.320000pt;}
.y15c_c00144{bottom:281.093333pt;}
.y15e_c00144{bottom:281.853333pt;}
.y15b_c00144{bottom:282.626667pt;}
.y158_c00144{bottom:293.373333pt;}
.y157_c00144{bottom:296.453333pt;}
.y151_c00144{bottom:297.213333pt;}
.y154_c00144{bottom:297.986667pt;}
.y155_c00144{bottom:298.746667pt;}
.y152_c00144{bottom:299.520000pt;}
.y156_c00144{bottom:302.586667pt;}
.y150_c00144{bottom:303.360000pt;}
.y153_c00144{bottom:304.893333pt;}
.y149_c00144{bottom:318.720000pt;}
.y14d_c00144{bottom:319.493333pt;}
.y14e_c00144{bottom:320.253333pt;}
.y148_c00144{bottom:321.026667pt;}
.y14f_c00144{bottom:324.866667pt;}
.y14b_c00144{bottom:325.626667pt;}
.y14c_c00144{bottom:326.400000pt;}
.y14a_c00144{bottom:327.173333pt;}
.y144_c00144{bottom:344.066667pt;}
.y146_c00144{bottom:344.826667pt;}
.y147_c00144{bottom:347.906667pt;}
.y145_c00144{bottom:349.440000pt;}
.y139_c00144{bottom:365.573333pt;}
.y138_c00144{bottom:366.333333pt;}
.y13b_c00144{bottom:368.640000pt;}
.y142_c00144{bottom:370.946667pt;}
.y137_c00144{bottom:372.480000pt;}
.y13d_c00144{bottom:374.013333pt;}
.y140_c00144{bottom:374.786667pt;}
.y13e_c00144{bottom:375.546667pt;}
.y13c_c00144{bottom:376.320000pt;}
.y141_c00144{bottom:377.853333pt;}
.y13a_c00144{bottom:380.160000pt;}
.y13f_c00144{bottom:383.226667pt;}
.y143_c00144{bottom:385.533333pt;}
.y133_c00144{bottom:386.306667pt;}
.y135_c00144{bottom:387.066667pt;}
.y131_c00144{bottom:388.613333pt;}
.y12e_c00144{bottom:390.146667pt;}
.y132_c00144{bottom:390.906667pt;}
.y130_c00144{bottom:392.453333pt;}
.y134_c00144{bottom:393.986667pt;}
.y12f_c00144{bottom:398.586667pt;}
.y12d_c00144{bottom:400.133333pt;}
.y136_c00144{bottom:402.426667pt;}
.y12c_c00144{bottom:407.813333pt;}
.y129_c00144{bottom:410.880000pt;}
.y126_c00144{bottom:412.413333pt;}
.y125_c00144{bottom:413.186667pt;}
.y128_c00144{bottom:413.946667pt;}
.y12a_c00144{bottom:415.493333pt;}
.y127_c00144{bottom:416.253333pt;}
.y124_c00144{bottom:417.786667pt;}
.y12b_c00144{bottom:425.466667pt;}
.y123_c00144{bottom:432.386667pt;}
.y121_c00144{bottom:433.146667pt;}
.y11a_c00144{bottom:434.693333pt;}
.y122_c00144{bottom:435.453333pt;}
.y119_c00144{bottom:436.986667pt;}
.y11e_c00144{bottom:437.760000pt;}
.y118_c00144{bottom:438.533333pt;}
.y11b_c00144{bottom:439.293333pt;}
.y11f_c00144{bottom:441.600000pt;}
.y11d_c00144{bottom:443.906667pt;}
.y11c_c00144{bottom:444.666667pt;}
.y117_c00144{bottom:446.213333pt;}
.y115_c00144{bottom:448.506667pt;}
.y120_c00144{bottom:450.053333pt;}
.y116_c00144{bottom:453.120000pt;}
.y114_c00144{bottom:453.893333pt;}
.y10e_c00144{bottom:455.426667pt;}
.y10d_c00144{bottom:456.186667pt;}
.y10f_c00144{bottom:457.733333pt;}
.y111_c00144{bottom:459.266667pt;}
.y110_c00144{bottom:460.026667pt;}
.y10c_c00144{bottom:460.800000pt;}
.y113_c00144{bottom:461.573333pt;}
.y112_c00144{bottom:462.333333pt;}
.y109_c00144{bottom:476.160000pt;}
.y105_c00144{bottom:477.693333pt;}
.y104_c00144{bottom:478.466667pt;}
.y108_c00144{bottom:479.226667pt;}
.y10b_c00144{bottom:480.000000pt;}
.y10a_c00144{bottom:480.773333pt;}
.y107_c00144{bottom:481.533333pt;}
.y103_c00144{bottom:483.840000pt;}
.y106_c00144{bottom:484.613333pt;}
.yfe_c00144{bottom:499.973333pt;}
.y102_c00144{bottom:500.733333pt;}
.y101_c00144{bottom:504.573333pt;}
.yff_c00144{bottom:506.106667pt;}
.y100_c00144{bottom:506.880000pt;}
.yf8_c00144{bottom:519.933333pt;}
.yfd_c00144{bottom:521.466667pt;}
.yfa_c00144{bottom:522.240000pt;}
.yf9_c00144{bottom:523.013333pt;}
.yfb_c00144{bottom:526.080000pt;}
.yf7_c00144{bottom:526.853333pt;}
.yfc_c00144{bottom:529.146667pt;}
.yf4_c00144{bottom:543.746667pt;}
.yf3_c00144{bottom:544.506667pt;}
.yf1_c00144{bottom:546.053333pt;}
.yf5_c00144{bottom:550.653333pt;}
.yf6_c00144{bottom:551.426667pt;}
.yf2_c00144{bottom:552.186667pt;}
.yf0_c00144{bottom:565.253333pt;}
.yee_c00144{bottom:566.786667pt;}
.yeb_c00144{bottom:567.546667pt;}
.yed_c00144{bottom:569.853333pt;}
.yef_c00144{bottom:570.626667pt;}
.yec_c00144{bottom:574.466667pt;}
.yea_c00144{bottom:578.306667pt;}
.ye2_c00144{bottom:589.826667pt;}
.ye8_c00144{bottom:592.133333pt;}
.ye1_c00144{bottom:593.666667pt;}
.ydf_c00144{bottom:594.426667pt;}
.ye5_c00144{bottom:597.506667pt;}
.ye3_c00144{bottom:598.266667pt;}
.ye9_c00144{bottom:599.040000pt;}
.ye7_c00144{bottom:599.813333pt;}
.ye4_c00144{bottom:601.346667pt;}
.ye6_c00144{bottom:605.186667pt;}
.ye0_c00144{bottom:605.946667pt;}
.yd7_c00144{bottom:610.560000pt;}
.ydb_c00144{bottom:611.333333pt;}
.yde_c00144{bottom:612.866667pt;}
.yd9_c00144{bottom:614.400000pt;}
.yd8_c00144{bottom:615.173333pt;}
.ydc_c00144{bottom:616.706667pt;}
.ydd_c00144{bottom:617.466667pt;}
.yda_c00144{bottom:618.240000pt;}
.yd5_c00144{bottom:619.013333pt;}
.yd6_c00144{bottom:620.546667pt;}
.yd1_c00144{bottom:635.133333pt;}
.yd2_c00144{bottom:635.906667pt;}
.yd4_c00144{bottom:636.666667pt;}
.yd3_c00144{bottom:637.440000pt;}
.ycd_c00144{bottom:641.280000pt;}
.ycf_c00144{bottom:643.586667pt;}
.yce_c00144{bottom:651.266667pt;}
.yd0_c00144{bottom:654.333333pt;}
.yc9_c00144{bottom:656.640000pt;}
.yca_c00144{bottom:657.413333pt;}
.ycc_c00144{bottom:659.706667pt;}
.ycb_c00144{bottom:662.786667pt;}
.yc8_c00144{bottom:663.546667pt;}
.yc7_c00144{bottom:666.626667pt;}
.ybf_c00144{bottom:677.373333pt;}
.yc1_c00144{bottom:678.146667pt;}
.yc3_c00144{bottom:678.906667pt;}
.yc0_c00144{bottom:679.680000pt;}
.yc5_c00144{bottom:681.986667pt;}
.yc2_c00144{bottom:684.293333pt;}
.yc4_c00144{bottom:685.053333pt;}
.ybe_c00144{bottom:685.826667pt;}
.yc6_c00144{bottom:699.653333pt;}
.yb8_c00144{bottom:700.413333pt;}
.yb7_c00144{bottom:701.186667pt;}
.yb6_c00144{bottom:701.946667pt;}
.yba_c00144{bottom:704.253333pt;}
.ybc_c00144{bottom:705.786667pt;}
.yb9_c00144{bottom:707.333333pt;}
.ybb_c00144{bottom:708.093333pt;}
.ybd_c00144{bottom:713.466667pt;}
.yb1_c00144{bottom:721.920000pt;}
.yb3_c00144{bottom:723.453333pt;}
.yb0_c00144{bottom:724.986667pt;}
.yb5_c00144{bottom:725.760000pt;}
.yb2_c00144{bottom:728.826667pt;}
.yb4_c00144{bottom:729.600000pt;}
.yaa_c00144{bottom:743.426667pt;}
.yac_c00144{bottom:744.186667pt;}
.ya9_c00144{bottom:744.960000pt;}
.yae_c00144{bottom:748.026667pt;}
.yab_c00144{bottom:750.333333pt;}
.yad_c00144{bottom:751.866667pt;}
.yaf_c00144{bottom:752.640000pt;}
.ya4_c00144{bottom:766.466667pt;}
.ya7_c00144{bottom:767.226667pt;}
.ya1_c00144{bottom:768.000000pt;}
.ya6_c00144{bottom:768.773333pt;}
.ya3_c00144{bottom:770.306667pt;}
.ya2_c00144{bottom:773.373333pt;}
.ya5_c00144{bottom:774.146667pt;}
.ya8_c00144{bottom:776.453333pt;}
.y9d_c00144{bottom:788.733333pt;}
.y9c_c00144{bottom:789.506667pt;}
.y9e_c00144{bottom:790.266667pt;}
.ya0_c00144{bottom:796.413333pt;}
.y9f_c00144{bottom:797.186667pt;}
.y9a_c00144{bottom:810.240000pt;}
.y96_c00144{bottom:811.013333pt;}
.y98_c00144{bottom:811.773333pt;}
.y95_c00144{bottom:812.546667pt;}
.y9b_c00144{bottom:813.306667pt;}
.y97_c00144{bottom:817.146667pt;}
.y99_c00144{bottom:819.453333pt;}
.y8e_c00144{bottom:834.053333pt;}
.y92_c00144{bottom:834.813333pt;}
.y94_c00144{bottom:835.586667pt;}
.y8d_c00144{bottom:836.346667pt;}
.y90_c00144{bottom:837.120000pt;}
.y93_c00144{bottom:839.426667pt;}
.y8f_c00144{bottom:840.960000pt;}
.y91_c00144{bottom:841.733333pt;}
.y8c_c00144{bottom:844.026667pt;}
.y88_c00144{bottom:855.546667pt;}
.y86_c00144{bottom:856.320000pt;}
.y89_c00144{bottom:857.093333pt;}
.y8a_c00144{bottom:859.386667pt;}
.y87_c00144{bottom:860.933333pt;}
.y8b_c00144{bottom:868.613333pt;}
.y170_c00144{bottom:871.680000pt;}
.y80_c00144{bottom:879.360000pt;}
.y7f_c00144{bottom:880.133333pt;}
.y81_c00144{bottom:880.893333pt;}
.y85_c00144{bottom:882.426667pt;}
.y83_c00144{bottom:885.506667pt;}
.y82_c00144{bottom:886.266667pt;}
.y84_c00144{bottom:887.040000pt;}
.y7e_c00144{bottom:893.186667pt;}
.y7b_c00144{bottom:897.786667pt;}
.y79_c00144{bottom:898.560000pt;}
.y7c_c00144{bottom:899.333333pt;}
.y7d_c00144{bottom:903.173333pt;}
.y7a_c00144{bottom:908.546667pt;}
.y74_c00144{bottom:923.906667pt;}
.y73_c00144{bottom:925.440000pt;}
.y78_c00144{bottom:926.213333pt;}
.y76_c00144{bottom:926.973333pt;}
.y77_c00144{bottom:928.506667pt;}
.y75_c00144{bottom:931.586667pt;}
.y71_c00144{bottom:949.253333pt;}
.y70_c00144{bottom:950.013333pt;}
.y72_c00144{bottom:951.546667pt;}
.y6d_c00144{bottom:952.320000pt;}
.y6e_c00144{bottom:953.093333pt;}
.y6f_c00144{bottom:953.853333pt;}
.y6c_c00144{bottom:963.066667pt;}
.y66_c00144{bottom:967.680000pt;}
.y6a_c00144{bottom:969.213333pt;}
.y69_c00144{bottom:969.986667pt;}
.y68_c00144{bottom:970.746667pt;}
.y6b_c00144{bottom:975.360000pt;}
.y67_c00144{bottom:976.133333pt;}
.y65_c00144{bottom:989.946667pt;}
.y60_c00144{bottom:991.493333pt;}
.y5f_c00144{bottom:992.253333pt;}
.y62_c00144{bottom:993.786667pt;}
.y63_c00144{bottom:994.560000pt;}
.y64_c00144{bottom:996.866667pt;}
.y61_c00144{bottom:997.626667pt;}
.y58_c00144{bottom:1011.453333pt;}
.y5d_c00144{bottom:1012.226667pt;}
.y5c_c00144{bottom:1012.986667pt;}
.y5a_c00144{bottom:1013.760000pt;}
.y59_c00144{bottom:1014.533333pt;}
.y5e_c00144{bottom:1016.066667pt;}
.y5b_c00144{bottom:1019.906667pt;}
.y52_c00144{bottom:1033.733333pt;}
.y54_c00144{bottom:1034.493333pt;}
.y57_c00144{bottom:1035.266667pt;}
.y56_c00144{bottom:1036.026667pt;}
.y53_c00144{bottom:1041.413333pt;}
.y55_c00144{bottom:1042.946667pt;}
.y51_c00144{bottom:1054.466667pt;}
.y4c_c00144{bottom:1056.773333pt;}
.y50_c00144{bottom:1057.533333pt;}
.y4f_c00144{bottom:1058.306667pt;}
.y16f_c00144{bottom:1059.066667pt;}
.y4d_c00144{bottom:1064.453333pt;}
.y4e_c00144{bottom:1065.213333pt;}
.y46_c00144{bottom:1078.266667pt;}
.y49_c00144{bottom:1079.040000pt;}
.y47_c00144{bottom:1080.573333pt;}
.y4a_c00144{bottom:1081.346667pt;}
.y48_c00144{bottom:1084.413333pt;}
.y45_c00144{bottom:1087.493333pt;}
.y44_c00144{bottom:1091.333333pt;}
.y4b_c00144{bottom:1095.173333pt;}
.y3d_c00144{bottom:1099.773333pt;}
.y42_c00144{bottom:1101.306667pt;}
.y43_c00144{bottom:1102.080000pt;}
.y41_c00144{bottom:1103.613333pt;}
.y3f_c00144{bottom:1105.146667pt;}
.y40_c00144{bottom:1107.453333pt;}
.y3e_c00144{bottom:1112.066667pt;}
.y36_c00144{bottom:1124.346667pt;}
.y3b_c00144{bottom:1125.120000pt;}
.y37_c00144{bottom:1125.893333pt;}
.y3a_c00144{bottom:1127.426667pt;}
.y3c_c00144{bottom:1128.960000pt;}
.y38_c00144{bottom:1132.026667pt;}
.y39_c00144{bottom:1136.640000pt;}
.y35_c00144{bottom:1144.320000pt;}
.y31_c00144{bottom:1145.853333pt;}
.y33_c00144{bottom:1146.626667pt;}
.y34_c00144{bottom:1147.386667pt;}
.y32_c00144{bottom:1148.933333pt;}
.y30_c00144{bottom:1150.466667pt;}
.y2f_c00144{bottom:1152.773333pt;}
.y16e_c00144{bottom:1155.840000pt;}
.y29_c00144{bottom:1167.360000pt;}
.y2a_c00144{bottom:1168.133333pt;}
.y2d_c00144{bottom:1168.893333pt;}
.y2e_c00144{bottom:1174.266667pt;}
.y2b_c00144{bottom:1175.040000pt;}
.y28_c00144{bottom:1175.813333pt;}
.y2c_c00144{bottom:1176.573333pt;}
.y26_c00144{bottom:1180.413333pt;}
.y27_c00144{bottom:1185.786667pt;}
.y21_c00144{bottom:1189.626667pt;}
.y22_c00144{bottom:1190.400000pt;}
.y25_c00144{bottom:1191.173333pt;}
.y23_c00144{bottom:1191.933333pt;}
.y24_c00144{bottom:1195.013333pt;}
.y20_c00144{bottom:1197.306667pt;}
.y1c_c00144{bottom:1212.666667pt;}
.y1b_c00144{bottom:1213.440000pt;}
.y18_c00144{bottom:1214.213333pt;}
.y1d_c00144{bottom:1214.973333pt;}
.y19_c00144{bottom:1215.746667pt;}
.y1f_c00144{bottom:1216.506667pt;}
.y1a_c00144{bottom:1218.053333pt;}
.y1e_c00144{bottom:1218.813333pt;}
.y17_c00144{bottom:1221.120000pt;}
.yf_c00144{bottom:1235.706667pt;}
.ye_c00144{bottom:1236.480000pt;}
.y11_c00144{bottom:1237.253333pt;}
.y13_c00144{bottom:1238.786667pt;}
.y15_c00144{bottom:1239.546667pt;}
.y12_c00144{bottom:1241.853333pt;}
.y14_c00144{bottom:1242.626667pt;}
.y16_c00144{bottom:1244.160000pt;}
.yd_c00144{bottom:1253.373333pt;}
.y10_c00144{bottom:1254.146667pt;}
.y6_c00144{bottom:1254.906667pt;}
.yc_c00144{bottom:1257.213333pt;}
.y8_c00144{bottom:1257.986667pt;}
.y5_c00144{bottom:1258.746667pt;}
.y9_c00144{bottom:1266.426667pt;}
.yb_c00144{bottom:1267.200000pt;}
.ya_c00144{bottom:1270.266667pt;}
.y7_c00144{bottom:1273.346667pt;}
.y3_c00144{bottom:1287.933333pt;}
.y4_c00144{bottom:1290.240000pt;}
.y2_c00144{bottom:1293.306667pt;}
.y1_c00144{bottom:1300.986667pt;}
.h2_c00144{height:2.764500pt;}
.h5_c00144{height:4.799479pt;}
.h19_c00144{height:5.519401pt;}
.h26_c00144{height:7.892812pt;}
.h1c_c00144{height:8.303099pt;}
.hb_c00144{height:11.038802pt;}
.h7_c00144{height:13.822500pt;}
.h4_c00144{height:16.606198pt;}
.h17_c00144{height:19.341901pt;}
.h24_c00144{height:22.125599pt;}
.h25_c00144{height:24.861302pt;}
.h3_c00144{height:27.645000pt;}
.h1a_c00144{height:30.428698pt;}
.h18_c00144{height:33.164401pt;}
.h8_c00144{height:35.948099pt;}
.h20_c00144{height:38.683802pt;}
.h1f_c00144{height:41.467500pt;}
.h9_c00144{height:44.251198pt;}
.ha_c00144{height:46.986901pt;}
.h6_c00144{height:49.770599pt;}
.h15_c00144{height:52.506302pt;}
.he_c00144{height:55.290000pt;}
.h16_c00144{height:58.073698pt;}
.h1e_c00144{height:60.809401pt;}
.h1b_c00144{height:63.593099pt;}
.hf_c00144{height:66.328802pt;}
.h11_c00144{height:69.112500pt;}
.hd_c00144{height:71.896198pt;}
.h13_c00144{height:74.631901pt;}
.hc_c00144{height:77.415599pt;}
.h10_c00144{height:80.151302pt;}
.h14_c00144{height:82.935000pt;}
.h12_c00144{height:85.718698pt;}
.h23_c00144{height:88.454401pt;}
.h1d_c00144{height:91.238099pt;}
.h22_c00144{height:93.973802pt;}
.h21_c00144{height:96.757500pt;}
.h0_c00144{height:1348.613333pt;}
.h1_c00144{height:1348.666667pt;}
.w0_c00144{width:969.213333pt;}
.w1_c00144{width:969.333333pt;}
.x0_c00144{left:0.000000pt;}
.x36_c00144{left:133.626667pt;}
.x2c_c00144{left:155.906667pt;}
.x37_c00144{left:162.053333pt;}
.xd_c00144{left:176.640000pt;}
.xec_c00144{left:178.173333pt;}
.xf3_c00144{left:184.320000pt;}
.xd7_c00144{left:188.933333pt;}
.xe_c00144{left:190.466667pt;}
.xc1_c00144{left:192.773333pt;}
.x2d_c00144{left:195.066667pt;}
.x16_c00144{left:197.373333pt;}
.xf9_c00144{left:198.906667pt;}
.x58_c00144{left:200.453333pt;}
.xfb_c00144{left:201.986667pt;}
.x17_c00144{left:204.293333pt;}
.xeb_c00144{left:206.586667pt;}
.x23_c00144{left:208.133333pt;}
.x38_c00144{left:210.426667pt;}
.x24_c00144{left:211.973333pt;}
.xb5_c00144{left:213.506667pt;}
.x44_c00144{left:215.040000pt;}
.x18_c00144{left:216.573333pt;}
.xf_c00144{left:218.880000pt;}
.x39_c00144{left:221.186667pt;}
.xe1_c00144{left:223.493333pt;}
.x4e_c00144{left:225.026667pt;}
.x45_c00144{left:227.333333pt;}
.xde_c00144{left:231.173333pt;}
.x46_c00144{left:236.546667pt;}
.xad_c00144{left:238.853333pt;}
.x2e_c00144{left:241.920000pt;}
.xb9_c00144{left:243.453333pt;}
.xcc_c00144{left:245.760000pt;}
.x9b_c00144{left:249.600000pt;}
.x95_c00144{left:252.666667pt;}
.xc4_c00144{left:254.213333pt;}
.x4f_c00144{left:257.280000pt;}
.xd6_c00144{left:258.813333pt;}
.x3a_c00144{left:263.426667pt;}
.xd8_c00144{left:267.266667pt;}
.x10_c00144{left:268.800000pt;}
.x59_c00144{left:272.640000pt;}
.xc2_c00144{left:274.173333pt;}
.x19_c00144{left:278.013333pt;}
.x62_c00144{left:280.320000pt;}
.x6c_c00144{left:283.386667pt;}
.x88_c00144{left:284.933333pt;}
.x47_c00144{left:287.226667pt;}
.x25_c00144{left:289.533333pt;}
.x77_c00144{left:291.066667pt;}
.x5a_c00144{left:293.373333pt;}
.xed_c00144{left:295.680000pt;}
.xc7_c00144{left:299.520000pt;}
.x1a_c00144{left:301.053333pt;}
.x93_c00144{left:302.586667pt;}
.x79_c00144{left:304.893333pt;}
.xc8_c00144{left:307.973333pt;}
.x89_c00144{left:311.813333pt;}
.x48_c00144{left:313.346667pt;}
.xa7_c00144{left:317.946667pt;}
.xb6_c00144{left:321.026667pt;}
.x49_c00144{left:326.400000pt;}
.x3e_c00144{left:329.466667pt;}
.xf7_c00144{left:332.546667pt;}
.x26_c00144{left:334.080000pt;}
.x11_c00144{left:335.613333pt;}
.x8a_c00144{left:337.146667pt;}
.x2f_c00144{left:341.760000pt;}
.xe2_c00144{left:346.373333pt;}
.x3b_c00144{left:347.906667pt;}
.xba_c00144{left:349.440000pt;}
.x5_c00144{left:351.746733pt;}
.x5b_c00144{left:353.280000pt;}
.x1b_c00144{left:354.813333pt;}
.x7a_c00144{left:356.346667pt;}
.xc3_c00144{left:359.426667pt;}
.x50_c00144{left:363.266667pt;}
.xca_c00144{left:364.800000pt;}
.xd9_c00144{left:366.333333pt;}
.xee_c00144{left:368.640000pt;}
.xbb_c00144{left:370.946667pt;}
.x27_c00144{left:376.320000pt;}
.xbc_c00144{left:383.226667pt;}
.x30_c00144{left:385.533333pt;}
.x3f_c00144{left:388.613333pt;}
.x8b_c00144{left:390.906667pt;}
.x84_c00144{left:392.453333pt;}
.x54_c00144{left:394.746667pt;}
.x5c_c00144{left:396.293333pt;}
.xdf_c00144{left:399.360000pt;}
.x40_c00144{left:403.973333pt;}
.xcd_c00144{left:405.506667pt;}
.x68_c00144{left:407.040000pt;}
.xa1_c00144{left:408.573333pt;}
.x7b_c00144{left:410.106667pt;}
.xef_c00144{left:416.253333pt;}
.x6d_c00144{left:417.786667pt;}
.xfc_c00144{left:419.333333pt;}
.x28_c00144{left:420.866667pt;}
.x1c_c00144{left:422.400000pt;}
.x71_c00144{left:423.933333pt;}
.x12_c00144{left:427.013333pt;}
.x29_c00144{left:429.306667pt;}
.xbd_c00144{left:431.613333pt;}
.xa8_c00144{left:433.920000pt;}
.x63_c00144{left:437.760000pt;}
.x69_c00144{left:440.066667pt;}
.xe3_c00144{left:441.600000pt;}
.x55_c00144{left:446.213333pt;}
.x41_c00144{left:449.280000pt;}
.xbe_c00144{left:450.813333pt;}
.x6e_c00144{left:452.346667pt;}
.x2a_c00144{left:454.653333pt;}
.x78_c00144{left:456.960000pt;}
.x85_c00144{left:458.493333pt;}
.xa9_c00144{left:463.106667pt;}
.x7c_c00144{left:464.640000pt;}
.x51_c00144{left:468.480000pt;}
.x96_c00144{left:470.013333pt;}
.x72_c00144{left:472.320000pt;}
.x94_c00144{left:474.626667pt;}
.xe8_c00144{left:476.160000pt;}
.x1d_c00144{left:477.693333pt;}
.xa2_c00144{left:483.066667pt;}
.x6_c00144{left:487.680000pt;}
.xb7_c00144{left:489.986667pt;}
.x97_c00144{left:491.520000pt;}
.xc5_c00144{left:493.826667pt;}
.xd3_c00144{left:496.133333pt;}
.xaa_c00144{left:499.200000pt;}
.x6f_c00144{left:503.040000pt;}
.x86_c00144{left:504.573333pt;}
.x64_c00144{left:507.653333pt;}
.x4a_c00144{left:511.493333pt;}
.x5e_c00144{left:514.560000pt;}
.x8c_c00144{left:516.093333pt;}
.x13_c00144{left:517.626667pt;}
.xae_c00144{left:519.173333pt;}
.x9c_c00144{left:520.706667pt;}
.xe9_c00144{left:522.240000pt;}
.x31_c00144{left:524.546667pt;}
.x92_c00144{left:526.080000pt;}
.xe4_c00144{left:527.613333pt;}
.x32_c00144{left:529.146667pt;}
.x8d_c00144{left:530.693333pt;}
.x4b_c00144{left:532.986667pt;}
.xce_c00144{left:534.533333pt;}
.x65_c00144{left:536.066667pt;}
.xea_c00144{left:537.600000pt;}
.x5d_c00144{left:541.440000pt;}
.x1e_c00144{left:543.746667pt;}
.xf4_c00144{left:545.280000pt;}
.x7d_c00144{left:547.586667pt;}
.xa3_c00144{left:549.893333pt;}
.x3c_c00144{left:552.186667pt;}
.x6a_c00144{left:553.733333pt;}
.xaf_c00144{left:556.026667pt;}
.x14_c00144{left:558.333333pt;}
.xc6_c00144{left:559.866667pt;}
.x7e_c00144{left:562.173333pt;}
.x98_c00144{left:563.706667pt;}
.x56_c00144{left:568.320000pt;}
.x66_c00144{left:572.933333pt;}
.x5f_c00144{left:575.226667pt;}
.xb2_c00144{left:577.533333pt;}
.x1f_c00144{left:580.613333pt;}
.xd4_c00144{left:582.146667pt;}
.x9d_c00144{left:583.680000pt;}
.xbf_c00144{left:585.213333pt;}
.xda_c00144{left:587.520000pt;}
.x15_c00144{left:589.826667pt;}
.x60_c00144{left:594.426667pt;}
.x1_c00144{left:595.973333pt;}
.xa4_c00144{left:598.266667pt;}
.xcf_c00144{left:599.813333pt;}
.x42_c00144{left:602.106667pt;}
.x2_c00144{left:603.653333pt;}
.x3_c00144{left:606.720000pt;}
.xd5_c00144{left:608.253333pt;}
.xc0_c00144{left:609.787133pt;}
.x8e_c00144{left:611.333333pt;}
.xdb_c00144{left:612.866667pt;}
.x7f_c00144{left:614.400000pt;}
.xe5_c00144{left:617.466667pt;}
.x8f_c00144{left:620.546667pt;}
.x80_c00144{left:622.080000pt;}
.x73_c00144{left:626.693333pt;}
.x4_c00144{left:628.226667pt;}
.x99_c00144{left:629.760000pt;}
.x7_c00144{left:632.066667pt;}
.xd0_c00144{left:635.133333pt;}
.xab_c00144{left:636.666667pt;}
.x8_c00144{left:638.973333pt;}
.x70_c00144{left:643.586667pt;}
.x20_c00144{left:645.120000pt;}
.x4c_c00144{left:647.426667pt;}
.xf8_c00144{left:649.733333pt;}
.x90_c00144{left:652.026667pt;}
.x2b_c00144{left:653.573333pt;}
.x61_c00144{left:658.173333pt;}
.xf0_c00144{left:660.480000pt;}
.x57_c00144{left:662.013333pt;}
.x81_c00144{left:663.546667pt;}
.xb_c00144{left:666.626667pt;}
.x9e_c00144{left:668.160000pt;}
.x21_c00144{left:670.466667pt;}
.xfa_c00144{left:672.000000pt;}
.x9_c00144{left:674.306667pt;}
.x67_c00144{left:675.840000pt;}
.xa5_c00144{left:678.146667pt;}
.x33_c00144{left:679.680000pt;}
.xb0_c00144{left:683.520000pt;}
.x74_c00144{left:685.826667pt;}
.x4d_c00144{left:688.893333pt;}
.xe6_c00144{left:691.973333pt;}
.x91_c00144{left:698.880000pt;}
.x52_c00144{left:700.413333pt;}
.xa_c00144{left:705.786667pt;}
.x3d_c00144{left:708.866667pt;}
.x75_c00144{left:711.173333pt;}
.xf5_c00144{left:712.706667pt;}
.xd1_c00144{left:715.013333pt;}
.x82_c00144{left:719.613333pt;}
.x9f_c00144{left:721.146667pt;}
.xd2_c00144{left:722.693333pt;}
.xb8_c00144{left:725.760000pt;}
.x43_c00144{left:727.293333pt;}
.xb3_c00144{left:731.133333pt;}
.xc9_c00144{left:734.213333pt;}
.xdc_c00144{left:736.506667pt;}
.x22_c00144{left:738.053333pt;}
.xa0_c00144{left:741.120000pt;}
.xb4_c00144{left:742.653333pt;}
.xc_c00144{left:744.186667pt;}
.xf1_c00144{left:748.026667pt;}
.xcb_c00144{left:750.333333pt;}
.xf6_c00144{left:752.640000pt;}
.x83_c00144{left:754.946667pt;}
.x34_c00144{left:757.253333pt;}
.x53_c00144{left:761.093333pt;}
.x6b_c00144{left:765.693333pt;}
.xa6_c00144{left:769.533333pt;}
.x76_c00144{left:774.906667pt;}
.xdd_c00144{left:777.213333pt;}
.x35_c00144{left:784.893333pt;}
.xf2_c00144{left:787.973333pt;}
.xe0_c00144{left:789.506667pt;}
.xe7_c00144{left:791.040000pt;}
.xac_c00144{left:792.573333pt;}
.x9a_c00144{left:795.653333pt;}
.x87_c00144{left:804.866667pt;}
.xb1_c00144{left:807.173333pt;}
.x102_c00144{left:825.601173pt;}
.x103_c00144{left:893.186667pt;}
.x100_c00144{left:933.120000pt;}
.xfd_c00144{left:934.653333pt;}
.xff_c00144{left:936.186667pt;}
.xfe_c00144{left:941.573333pt;}
.x101_c00144{left:950.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_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_cffda40fe23133c41620b60d.woff2')format("woff");}.ff1_c00145{font-family:ff1_c00145;line-height:1.109863;font-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_c00145{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m168_c00145{transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00145{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);}
.m14a_c00145{transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);}
.mbf_c00145{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);}
.mc2_c00145{transform:matrix(0.075750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075750,0.000000,0.000000,0.250000,0,0);}
.m181_c00145{transform:matrix(0.076725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076725,0.000000,0.000000,0.250000,0,0);}
.m184_c00145{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m12b_c00145{transform:matrix(0.089225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089225,0.000000,0.000000,0.250000,0,0);}
.m2b_c00145{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.mb5_c00145{transform:matrix(0.091900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091900,0.000000,0.000000,0.250000,0,0);}
.m111_c00145{transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);}
.m17a_c00145{transform:matrix(0.100575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100575,0.000000,0.000000,0.250000,0,0);}
.m37_c00145{transform:matrix(0.102850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102850,0.000000,0.000000,0.250000,0,0);}
.m158_c00145{transform:matrix(0.103075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103075,0.000000,0.000000,0.250000,0,0);}
.m167_c00145{transform:matrix(0.105300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105300,0.000000,0.000000,0.250000,0,0);}
.m16a_c00145{transform:matrix(0.105700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105700,0.000000,0.000000,0.250000,0,0);}
.m11a_c00145{transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);}
.ma8_c00145{transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);}
.ma3_c00145{transform:matrix(0.108325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108325,0.000000,0.000000,0.250000,0,0);}
.mba_c00145{transform:matrix(0.110700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110700,0.000000,0.000000,0.250000,0,0);}
.m183_c00145{transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00145{transform:matrix(0.112875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112875,0.000000,0.000000,0.250000,0,0);}
.mbd_c00145{transform:matrix(0.114425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114425,0.000000,0.000000,0.250000,0,0);}
.m11f_c00145{transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);}
.m149_c00145{transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);}
.m39_c00145{transform:matrix(0.116550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116550,0.000000,0.000000,0.250000,0,0);}
.m17f_c00145{transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);}
.mea_c00145{transform:matrix(0.118400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118400,0.000000,0.000000,0.250000,0,0);}
.m120_c00145{transform:matrix(0.119000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119000,0.000000,0.000000,0.250000,0,0);}
.m35_c00145{transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);}
.m16c_c00145{transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);}
.m14f_c00145{transform:matrix(0.119850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119850,0.000000,0.000000,0.250000,0,0);}
.m27_c00145{transform:matrix(0.121400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121400,0.000000,0.000000,0.250000,0,0);}
.mb4_c00145{transform:matrix(0.121700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121700,0.000000,0.000000,0.250000,0,0);}
.m188_c00145{transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);}
.m127_c00145{transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);}
.m139_c00145{transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);}
.md_c00145{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m19b_c00145{transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);}
.mbb_c00145{transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);}
.m7e_c00145{transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);}
.mf1_c00145{transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);}
.m175_c00145{transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);}
.m10e_c00145{transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);}
.m119_c00145{transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);}
.m57_c00145{transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);}
.m3f_c00145{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m18f_c00145{transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);}
.m3c_c00145{transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);}
.m18c_c00145{transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);}
.m19a_c00145{transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);}
.m126_c00145{transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);}
.m88_c00145{transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);}
.mf3_c00145{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00145{transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);}
.m159_c00145{transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);}
.m172_c00145{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m30_c00145{transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);}
.m9_c00145{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m24_c00145{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.mbe_c00145{transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);}
.m169_c00145{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);}
.m18b_c00145{transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);}
.m19d_c00145{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.maf_c00145{transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);}
.m18e_c00145{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.m14d_c00145{transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);}
.mf6_c00145{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.m95_c00145{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);}
.md3_c00145{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m104_c00145{transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);}
.mf0_c00145{transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);}
.m195_c00145{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.mb2_c00145{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.mfd_c00145{transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);}
.m91_c00145{transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);}
.m154_c00145{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);}
.ma6_c00145{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);}
.m9f_c00145{transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);}
.m144_c00145{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.m28_c00145{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);}
.m11c_c00145{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.m64_c00145{transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);}
.mac_c00145{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m162_c00145{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.md1_c00145{transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);}
.m192_c00145{transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);}
.m15e_c00145{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);}
.m163_c00145{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m155_c00145{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);}
.m19f_c00145{transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);}
.m137_c00145{transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);}
.m141_c00145{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m38_c00145{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.m117_c00145{transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);}
.me_c00145{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.mfc_c00145{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m14c_c00145{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);}
.m17e_c00145{transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);}
.mf9_c00145{transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);}
.ma0_c00145{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.m7f_c00145{transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);}
.m9c_c00145{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.m13a_c00145{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m185_c00145{transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);}
.m16d_c00145{transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);}
.mb1_c00145{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);}
.mb0_c00145{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m87_c00145{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.m160_c00145{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m5a_c00145{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.m146_c00145{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);}
.mf2_c00145{transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);}
.m118_c00145{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);}
.mfb_c00145{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);}
.m189_c00145{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m15a_c00145{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);}
.me7_c00145{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m10f_c00145{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.mee_c00145{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);}
.m199_c00145{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00145{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m17d_c00145{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);}
.m3e_c00145{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);}
.m6e_c00145{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m161_c00145{transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);}
.m15f_c00145{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m182_c00145{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m122_c00145{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m3b_c00145{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00145{transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);}
.m152_c00145{transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);}
.m13c_c00145{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m101_c00145{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);}
.m124_c00145{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m13e_c00145{transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);}
.ma5_c00145{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);}
.m10c_c00145{transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);}
.m1e_c00145{transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);}
.m19c_c00145{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);}
.m80_c00145{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);}
.mad_c00145{transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);}
.m83_c00145{transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);}
.m121_c00145{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);}
.md9_c00145{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);}
.m165_c00145{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m18d_c00145{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.mf4_c00145{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.m10a_c00145{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.m15b_c00145{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);}
.mc9_c00145{transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);}
.md7_c00145{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.m110_c00145{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m107_c00145{transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);}
.m61_c00145{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);}
.m16_c00145{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);}
.m193_c00145{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m13b_c00145{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m14e_c00145{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m13f_c00145{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.m134_c00145{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m123_c00145{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);}
.m18a_c00145{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.m5d_c00145{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.m143_c00145{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.m153_c00145{transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);}
.m103_c00145{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.m13_c00145{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.ma9_c00145{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m26_c00145{transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);}
.mec_c00145{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);}
.m16b_c00145{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.mab_c00145{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.m15c_c00145{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);}
.m47_c00145{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.maa_c00145{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);}
.m128_c00145{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);}
.m85_c00145{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);}
.m8a_c00145{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.mca_c00145{transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);}
.m136_c00145{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);}
.mb6_c00145{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m164_c00145{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);}
.mc1_c00145{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.md2_c00145{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);}
.mc7_c00145{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);}
.m180_c00145{transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);}
.m70_c00145{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);}
.m48_c00145{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m11d_c00145{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.m21_c00145{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);}
.m138_c00145{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.m29_c00145{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);}
.m99_c00145{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.m98_c00145{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);}
.m34_c00145{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.mfe_c00145{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);}
.mb8_c00145{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.m41_c00145{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.mcf_c00145{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);}
.m7a_c00145{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.m93_c00145{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);}
.m178_c00145{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.m59_c00145{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);}
.m187_c00145{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);}
.m196_c00145{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);}
.m72_c00145{transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);}
.mce_c00145{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.mc5_c00145{transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);}
.med_c00145{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m14b_c00145{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);}
.mcb_c00145{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m105_c00145{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m86_c00145{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m1f_c00145{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);}
.m176_c00145{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.me8_c00145{transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);}
.m1b_c00145{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);}
.m4a_c00145{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.me1_c00145{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.m135_c00145{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00145{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m0_c00145{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);}
.m4b_c00145{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mb7_c00145{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);}
.m116_c00145{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m191_c00145{transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);}
.mdf_c00145{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);}
.m11e_c00145{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);}
.m6c_c00145{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.mfa_c00145{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);}
.mdc_c00145{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);}
.m140_c00145{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.m148_c00145{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);}
.ma7_c00145{transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);}
.m112_c00145{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);}
.me2_c00145{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.ma4_c00145{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);}
.m11b_c00145{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);}
.m7d_c00145{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.mcd_c00145{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);}
.m177_c00145{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m106_c00145{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);}
.m186_c00145{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);}
.m10b_c00145{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);}
.mde_c00145{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);}
.mb3_c00145{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);}
.m1a_c00145{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.me4_c00145{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);}
.m109_c00145{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);}
.m82_c00145{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);}
.mae_c00145{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);}
.m6f_c00145{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.m1c_c00145{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m19e_c00145{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m97_c00145{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);}
.m45_c00145{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.mc4_c00145{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);}
.m102_c00145{transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);}
.m79_c00145{transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);}
.m100_c00145{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.m2c_c00145{transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);}
.m145_c00145{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);}
.ma2_c00145{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m22_c00145{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.m8d_c00145{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);}
.mdd_c00145{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.ma1_c00145{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);}
.md0_c00145{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);}
.m9a_c00145{transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);}
.m3a_c00145{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);}
.m36_c00145{transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);}
.mcc_c00145{transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);}
.m5c_c00145{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.m6a_c00145{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);}
.me3_c00145{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);}
.m13d_c00145{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.mf5_c00145{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);}
.m171_c00145{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);}
.md4_c00145{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);}
.m16f_c00145{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.mc6_c00145{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);}
.m23_c00145{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);}
.m17c_c00145{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);}
.m142_c00145{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);}
.m5e_c00145{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);}
.m10d_c00145{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.m71_c00145{transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);}
.me9_c00145{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);}
.m150_c00145{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);}
.m84_c00145{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);}
.m12d_c00145{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);}
.md6_c00145{transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);}
.me5_c00145{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.me0_c00145{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);}
.m2d_c00145{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);}
.mc3_c00145{transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);}
.m147_c00145{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);}
.m151_c00145{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m81_c00145{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m174_c00145{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.md5_c00145{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);}
.mef_c00145{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.m17b_c00145{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);}
.m16e_c00145{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m46_c00145{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m15d_c00145{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);}
.mdb_c00145{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);}
.m18_c00145{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);}
.m12a_c00145{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m78_c00145{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);}
.m62_c00145{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);}
.m7b_c00145{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);}
.m9d_c00145{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);}
.m31_c00145{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m20_c00145{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00145{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m32_c00145{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);}
.m69_c00145{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00145{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);}
.m5f_c00145{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);}
.m3_c00145{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00145{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);}
.m6_c00145{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00145{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00145{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);}
.m5b_c00145{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00145{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);}
.m65_c00145{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);}
.m77_c00145{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00145{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m40_c00145{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);}
.me6_c00145{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m129_c00145{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00145{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);}
.m190_c00145{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m63_c00145{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mda_c00145{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m173_c00145{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00145{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m170_c00145{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md8_c00145{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m17_c00145{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m108_c00145{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);}
.meb_c00145{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m50_c00145{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m75_c00145{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c00145{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00145{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);}
.m4e_c00145{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00145{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m156_c00145{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mff_c00145{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m67_c00145{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);}
.m4c_c00145{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m89_c00145{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);}
.m132_c00145{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m53_c00145{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00145{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);}
.m5_c00145{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00145{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m33_c00145{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m133_c00145{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mb_c00145{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);}
.m166_c00145{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);}
.m43_c00145{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);}
.m44_c00145{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m56_c00145{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m74_c00145{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m49_c00145{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m42_c00145{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m8_c00145{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m76_c00145{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m94_c00145{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);}
.m1_c00145{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00145{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m194_c00145{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00145{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m14_c00145{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00145{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m25_c00145{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m51_c00145{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00145{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00145{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m125_c00145{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m7_c00145{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);}
.m114_c00145{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00145{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00145{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00145{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);}
.m55_c00145{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00145{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00145{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m54_c00145{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m157_c00145{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m96_c00145{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m15_c00145{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00145{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m4_c00145{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m90_c00145{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00145{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00145{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00145{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.m92_c00145{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00145{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m115_c00145{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m2_c00145{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m66_c00145{transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);}
.m73_c00145{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00145{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m52_c00145{transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);}
.m179_c00145{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.m19_c00145{transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);}
.m58_c00145{transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);}
.m68_c00145{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m60_c00145{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);}
.mf_c00145{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00145{transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.190000,0.000000,0.000000,0.250000,0,0);}
.m198_c00145{transform:matrix(1.280000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.280000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.280000,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00145{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m197_c00145{transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00145{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m130_c00145{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m131_c00145{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m113_c00145{transform:matrix(2.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.375000,0.000000,0.000000,0.250000,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;}
.fs15_c00145{font-size:3.456000px;}
.fs6_c00145{font-size:6.000000px;}
.fs9_c00145{font-size:6.900000px;}
.fs4_c00145{font-size:10.380000px;}
.fsa_c00145{font-size:13.800000px;}
.fs1_c00145{font-size:17.280000px;}
.fs1e_c00145{font-size:20.760000px;}
.fs7_c00145{font-size:24.180000px;}
.fse_c00145{font-size:27.660000px;}
.fs24_c00145{font-size:31.080000px;}
.fs22_c00145{font-size:34.560000px;}
.fs0_c00145{font-size:38.040000px;}
.fs3_c00145{font-size:41.460000px;}
.fs5_c00145{font-size:44.940000px;}
.fs25_c00145{font-size:48.360000px;}
.fs21_c00145{font-size:51.840000px;}
.fs1d_c00145{font-size:55.320000px;}
.fsd_c00145{font-size:58.740000px;}
.fs8_c00145{font-size:62.220000px;}
.fsb_c00145{font-size:65.640000px;}
.fs2_c00145{font-size:69.120000px;}
.fs13_c00145{font-size:72.600000px;}
.fs20_c00145{font-size:76.020000px;}
.fs23_c00145{font-size:79.500000px;}
.fs1b_c00145{font-size:82.920000px;}
.fs14_c00145{font-size:86.400000px;}
.fs10_c00145{font-size:89.880000px;}
.fs1a_c00145{font-size:93.300000px;}
.fs19_c00145{font-size:96.780000px;}
.fs12_c00145{font-size:100.200000px;}
.fsf_c00145{font-size:103.680000px;}
.fs11_c00145{font-size:107.160000px;}
.fs1c_c00145{font-size:110.580000px;}
.fs17_c00145{font-size:114.060000px;}
.fs1f_c00145{font-size:117.480000px;}
.fs16_c00145{font-size:120.960000px;}
.fs18_c00145{font-size:124.440000px;}
.fsc_c00145{font-size:127.860000px;}
.y0_c00145{bottom:0.000000px;}
.y1a5_c00145{bottom:208.230000px;}
.y1a4_c00145{bottom:214.275000px;}
.y1a0_c00145{bottom:219.450000px;}
.y19e_c00145{bottom:221.190000px;}
.y19f_c00145{bottom:222.045000px;}
.y1a2_c00145{bottom:225.510000px;}
.y1a1_c00145{bottom:226.365000px;}
.y19d_c00145{bottom:227.235000px;}
.y1a3_c00145{bottom:228.090000px;}
.y197_c00145{bottom:229.830000px;}
.y196_c00145{bottom:230.685000px;}
.y195_c00145{bottom:231.555000px;}
.y194_c00145{bottom:232.410000px;}
.y19c_c00145{bottom:233.280000px;}
.y199_c00145{bottom:234.150000px;}
.y198_c00145{bottom:235.005000px;}
.y19b_c00145{bottom:235.875000px;}
.y19a_c00145{bottom:239.325000px;}
.y188_c00145{bottom:258.330000px;}
.y191_c00145{bottom:259.200000px;}
.y18a_c00145{bottom:260.070000px;}
.y189_c00145{bottom:261.795000px;}
.y18e_c00145{bottom:264.390000px;}
.y193_c00145{bottom:266.115000px;}
.y18f_c00145{bottom:266.970000px;}
.y18b_c00145{bottom:267.840000px;}
.y18d_c00145{bottom:270.435000px;}
.y190_c00145{bottom:271.290000px;}
.y18c_c00145{bottom:275.610000px;}
.y192_c00145{bottom:276.480000px;}
.y185_c00145{bottom:279.930000px;}
.y184_c00145{bottom:280.800000px;}
.y186_c00145{bottom:285.120000px;}
.y182_c00145{bottom:285.990000px;}
.y183_c00145{bottom:286.845000px;}
.y187_c00145{bottom:289.440000px;}
.y180_c00145{bottom:302.400000px;}
.y176_c00145{bottom:303.270000px;}
.y17c_c00145{bottom:304.125000px;}
.y17e_c00145{bottom:304.995000px;}
.y17f_c00145{bottom:305.850000px;}
.y175_c00145{bottom:306.720000px;}
.y17a_c00145{bottom:308.445000px;}
.y17b_c00145{bottom:309.315000px;}
.y179_c00145{bottom:310.170000px;}
.y177_c00145{bottom:311.040000px;}
.y17d_c00145{bottom:311.910000px;}
.y178_c00145{bottom:313.635000px;}
.y181_c00145{bottom:329.190000px;}
.y16e_c00145{bottom:330.915000px;}
.y16c_c00145{bottom:331.770000px;}
.y173_c00145{bottom:332.640000px;}
.y170_c00145{bottom:334.365000px;}
.y174_c00145{bottom:335.235000px;}
.y172_c00145{bottom:336.090000px;}
.y16d_c00145{bottom:336.960000px;}
.y16f_c00145{bottom:337.830000px;}
.y171_c00145{bottom:338.685000px;}
.y168_c00145{bottom:353.370000px;}
.y167_c00145{bottom:355.110000px;}
.y166_c00145{bottom:355.965000px;}
.y169_c00145{bottom:359.430000px;}
.y164_c00145{bottom:360.285000px;}
.y163_c00145{bottom:362.010000px;}
.y16a_c00145{bottom:362.880000px;}
.y165_c00145{bottom:363.750000px;}
.y16b_c00145{bottom:365.475000px;}
.y15c_c00145{bottom:378.435000px;}
.y15f_c00145{bottom:382.755000px;}
.y15e_c00145{bottom:383.610000px;}
.y161_c00145{bottom:384.480000px;}
.y160_c00145{bottom:385.350000px;}
.y15d_c00145{bottom:386.205000px;}
.y162_c00145{bottom:387.075000px;}
.y11_c00145{bottom:387.930000px;}
.y15b_c00145{bottom:403.485000px;}
.y155_c00145{bottom:404.355000px;}
.y153_c00145{bottom:405.210000px;}
.y152_c00145{bottom:406.080000px;}
.y151_c00145{bottom:406.950000px;}
.y154_c00145{bottom:409.530000px;}
.y158_c00145{bottom:411.270000px;}
.y150_c00145{bottom:412.125000px;}
.y159_c00145{bottom:414.720000px;}
.y14f_c00145{bottom:417.315000px;}
.y15a_c00145{bottom:418.170000px;}
.y156_c00145{bottom:419.910000px;}
.y157_c00145{bottom:420.765000px;}
.y14d_c00145{bottom:428.550000px;}
.y14b_c00145{bottom:429.405000px;}
.y146_c00145{bottom:430.275000px;}
.y144_c00145{bottom:431.130000px;}
.y14a_c00145{bottom:434.595000px;}
.y149_c00145{bottom:435.450000px;}
.y14c_c00145{bottom:436.320000px;}
.y148_c00145{bottom:437.190000px;}
.y147_c00145{bottom:438.045000px;}
.y10_c00145{bottom:438.915000px;}
.yf_c00145{bottom:439.770000px;}
.y14e_c00145{bottom:441.510000px;}
.y145_c00145{bottom:449.280000px;}
.y143_c00145{bottom:453.600000px;}
.y13c_c00145{bottom:454.470000px;}
.y141_c00145{bottom:455.325000px;}
.y13e_c00145{bottom:456.195000px;}
.y13d_c00145{bottom:457.920000px;}
.y142_c00145{bottom:458.790000px;}
.y13f_c00145{bottom:459.645000px;}
.y140_c00145{bottom:462.240000px;}
.y13b_c00145{bottom:463.110000px;}
.y13a_c00145{bottom:469.155000px;}
.y134_c00145{bottom:481.245000px;}
.y138_c00145{bottom:483.840000px;}
.y133_c00145{bottom:484.710000px;}
.y136_c00145{bottom:485.565000px;}
.y139_c00145{bottom:487.290000px;}
.y137_c00145{bottom:488.160000px;}
.y135_c00145{bottom:489.030000px;}
.y12c_c00145{bottom:505.440000px;}
.y132_c00145{bottom:506.310000px;}
.y12b_c00145{bottom:508.890000px;}
.y131_c00145{bottom:510.630000px;}
.y12f_c00145{bottom:511.485000px;}
.y130_c00145{bottom:512.355000px;}
.y12e_c00145{bottom:513.210000px;}
.y12d_c00145{bottom:514.080000px;}
.ye_c00145{bottom:527.040000px;}
.y129_c00145{bottom:529.635000px;}
.y127_c00145{bottom:531.360000px;}
.y12a_c00145{bottom:533.085000px;}
.y128_c00145{bottom:533.955000px;}
.y125_c00145{bottom:534.810000px;}
.y126_c00145{bottom:536.550000px;}
.y124_c00145{bottom:538.275000px;}
.y119_c00145{bottom:556.410000px;}
.y118_c00145{bottom:560.730000px;}
.y11f_c00145{bottom:561.600000px;}
.y117_c00145{bottom:562.470000px;}
.y11d_c00145{bottom:563.325000px;}
.y11e_c00145{bottom:564.195000px;}
.y122_c00145{bottom:566.790000px;}
.y11c_c00145{bottom:567.645000px;}
.y123_c00145{bottom:569.370000px;}
.y121_c00145{bottom:571.110000px;}
.y11a_c00145{bottom:572.835000px;}
.y11b_c00145{bottom:575.430000px;}
.y120_c00145{bottom:576.285000px;}
.y115_c00145{bottom:579.750000px;}
.y112_c00145{bottom:580.605000px;}
.y116_c00145{bottom:581.475000px;}
.y113_c00145{bottom:582.330000px;}
.y114_c00145{bottom:585.795000px;}
.y111_c00145{bottom:602.205000px;}
.y10f_c00145{bottom:606.525000px;}
.y110_c00145{bottom:608.250000px;}
.y109_c00145{bottom:609.120000px;}
.y10d_c00145{bottom:611.715000px;}
.y10a_c00145{bottom:612.570000px;}
.y10c_c00145{bottom:613.440000px;}
.y10b_c00145{bottom:614.310000px;}
.y10e_c00145{bottom:615.165000px;}
.y104_c00145{bottom:636.765000px;}
.y106_c00145{bottom:637.635000px;}
.y108_c00145{bottom:638.490000px;}
.y105_c00145{bottom:640.230000px;}
.y107_c00145{bottom:654.915000px;}
.yff_c00145{bottom:655.770000px;}
.y102_c00145{bottom:656.640000px;}
.yfd_c00145{bottom:657.510000px;}
.yfc_c00145{bottom:658.365000px;}
.y103_c00145{bottom:659.235000px;}
.yfe_c00145{bottom:660.090000px;}
.y101_c00145{bottom:661.830000px;}
.y100_c00145{bottom:664.410000px;}
.yf8_c00145{bottom:682.560000px;}
.yfa_c00145{bottom:683.430000px;}
.yf7_c00145{bottom:684.285000px;}
.yf9_c00145{bottom:685.155000px;}
.yfb_c00145{bottom:690.330000px;}
.yf6_c00145{bottom:705.885000px;}
.yef_c00145{bottom:706.755000px;}
.yf1_c00145{bottom:707.610000px;}
.yf3_c00145{bottom:708.480000px;}
.yf5_c00145{bottom:711.075000px;}
.yf4_c00145{bottom:711.930000px;}
.yf0_c00145{bottom:713.670000px;}
.yf2_c00145{bottom:714.525000px;}
.ye7_c00145{bottom:730.080000px;}
.yea_c00145{bottom:730.950000px;}
.yee_c00145{bottom:731.805000px;}
.yec_c00145{bottom:733.530000px;}
.yeb_c00145{bottom:734.400000px;}
.ye9_c00145{bottom:735.270000px;}
.ye6_c00145{bottom:736.995000px;}
.ye8_c00145{bottom:737.850000px;}
.yed_c00145{bottom:738.720000px;}
.ye5_c00145{bottom:739.590000px;}
.yde_c00145{bottom:753.405000px;}
.ye4_c00145{bottom:754.275000px;}
.ye2_c00145{bottom:756.000000px;}
.ye3_c00145{bottom:756.870000px;}
.ydd_c00145{bottom:757.725000px;}
.ye0_c00145{bottom:760.320000px;}
.ydf_c00145{bottom:762.045000px;}
.ye1_c00145{bottom:762.915000px;}
.yd6_c00145{bottom:779.325000px;}
.yd8_c00145{bottom:780.195000px;}
.ydb_c00145{bottom:781.920000px;}
.yda_c00145{bottom:784.515000px;}
.ydc_c00145{bottom:785.370000px;}
.yd9_c00145{bottom:786.240000px;}
.yd7_c00145{bottom:787.110000px;}
.yc_c00145{bottom:794.010000px;}
.yd_c00145{bottom:800.925000px;}
.yd3_c00145{bottom:803.520000px;}
.yd5_c00145{bottom:804.390000px;}
.yd1_c00145{bottom:805.245000px;}
.yd4_c00145{bottom:806.970000px;}
.yd2_c00145{bottom:810.435000px;}
.ycc_c00145{bottom:828.570000px;}
.ycf_c00145{bottom:829.440000px;}
.ycd_c00145{bottom:832.035000px;}
.yce_c00145{bottom:833.760000px;}
.yd0_c00145{bottom:835.485000px;}
.yc7_c00145{bottom:852.765000px;}
.yc5_c00145{bottom:853.635000px;}
.yc8_c00145{bottom:854.490000px;}
.yc6_c00145{bottom:857.085000px;}
.yca_c00145{bottom:860.550000px;}
.yc9_c00145{bottom:861.405000px;}
.ycb_c00145{bottom:864.000000px;}
.ya_c00145{bottom:869.190000px;}
.yb_c00145{bottom:870.915000px;}
.yc1_c00145{bottom:878.685000px;}
.ybf_c00145{bottom:879.555000px;}
.yc0_c00145{bottom:880.410000px;}
.yc3_c00145{bottom:885.600000px;}
.yc2_c00145{bottom:887.325000px;}
.yc4_c00145{bottom:894.240000px;}
.y9_c00145{bottom:895.110000px;}
.yba_c00145{bottom:903.750000px;}
.ybc_c00145{bottom:904.605000px;}
.ybe_c00145{bottom:905.475000px;}
.ybb_c00145{bottom:907.200000px;}
.yb9_c00145{bottom:909.795000px;}
.ybd_c00145{bottom:911.520000px;}
.y7_c00145{bottom:919.290000px;}
.y8_c00145{bottom:925.350000px;}
.yac_c00145{bottom:928.800000px;}
.yaf_c00145{bottom:929.670000px;}
.yae_c00145{bottom:931.395000px;}
.yb1_c00145{bottom:933.120000px;}
.yad_c00145{bottom:935.715000px;}
.yb0_c00145{bottom:936.570000px;}
.yb6_c00145{bottom:937.440000px;}
.yb3_c00145{bottom:938.310000px;}
.yb7_c00145{bottom:940.890000px;}
.yb4_c00145{bottom:941.760000px;}
.yb5_c00145{bottom:943.485000px;}
.yb2_c00145{bottom:944.355000px;}
.y6_c00145{bottom:945.210000px;}
.yb8_c00145{bottom:947.805000px;}
.yab_c00145{bottom:950.400000px;}
.ya6_c00145{bottom:952.995000px;}
.ya9_c00145{bottom:953.850000px;}
.yaa_c00145{bottom:954.720000px;}
.ya8_c00145{bottom:955.590000px;}
.ya7_c00145{bottom:961.635000px;}
.ya5_c00145{bottom:962.490000px;}
.y4_c00145{bottom:970.275000px;}
.y5_c00145{bottom:975.450000px;}
.ya4_c00145{bottom:978.915000px;}
.ya3_c00145{bottom:979.770000px;}
.ya1_c00145{bottom:983.235000px;}
.ya2_c00145{bottom:984.090000px;}
.ya0_c00145{bottom:999.645000px;}
.y97_c00145{bottom:1006.560000px;}
.y9e_c00145{bottom:1007.430000px;}
.y98_c00145{bottom:1008.285000px;}
.y9b_c00145{bottom:1009.155000px;}
.y99_c00145{bottom:1010.010000px;}
.y9a_c00145{bottom:1010.880000px;}
.y9c_c00145{bottom:1011.750000px;}
.y96_c00145{bottom:1012.605000px;}
.y9f_c00145{bottom:1023.840000px;}
.y9d_c00145{bottom:1024.710000px;}
.y8e_c00145{bottom:1029.885000px;}
.y95_c00145{bottom:1030.755000px;}
.y93_c00145{bottom:1031.610000px;}
.y91_c00145{bottom:1032.480000px;}
.y8f_c00145{bottom:1033.350000px;}
.y8d_c00145{bottom:1034.205000px;}
.y94_c00145{bottom:1035.075000px;}
.y90_c00145{bottom:1035.930000px;}
.y92_c00145{bottom:1036.800000px;}
.y85_c00145{bottom:1037.670000px;}
.y8b_c00145{bottom:1042.845000px;}
.y88_c00145{bottom:1043.715000px;}
.y89_c00145{bottom:1044.570000px;}
.y86_c00145{bottom:1047.165000px;}
.y8a_c00145{bottom:1048.035000px;}
.y87_c00145{bottom:1049.760000px;}
.y8c_c00145{bottom:1050.630000px;}
.y82_c00145{bottom:1054.080000px;}
.y81_c00145{bottom:1055.805000px;}
.y80_c00145{bottom:1058.400000px;}
.y84_c00145{bottom:1060.125000px;}
.y7f_c00145{bottom:1061.850000px;}
.y83_c00145{bottom:1067.040000px;}
.y7e_c00145{bottom:1076.550000px;}
.y77_c00145{bottom:1079.130000px;}
.y78_c00145{bottom:1080.000000px;}
.y7c_c00145{bottom:1080.870000px;}
.y7b_c00145{bottom:1086.915000px;}
.y79_c00145{bottom:1087.770000px;}
.y7a_c00145{bottom:1088.640000px;}
.y7d_c00145{bottom:1091.235000px;}
.y76_c00145{bottom:1105.920000px;}
.y72_c00145{bottom:1106.790000px;}
.y74_c00145{bottom:1108.515000px;}
.y73_c00145{bottom:1111.110000px;}
.y70_c00145{bottom:1111.965000px;}
.y71_c00145{bottom:1112.835000px;}
.y75_c00145{bottom:1113.690000px;}
.y6c_c00145{bottom:1130.115000px;}
.y6a_c00145{bottom:1130.970000px;}
.y6d_c00145{bottom:1131.840000px;}
.y6b_c00145{bottom:1133.565000px;}
.y6f_c00145{bottom:1134.435000px;}
.y6e_c00145{bottom:1137.885000px;}
.y67_c00145{bottom:1156.035000px;}
.y68_c00145{bottom:1160.355000px;}
.y65_c00145{bottom:1162.080000px;}
.y66_c00145{bottom:1162.950000px;}
.y69_c00145{bottom:1163.805000px;}
.y5f_c00145{bottom:1178.490000px;}
.y63_c00145{bottom:1181.085000px;}
.y62_c00145{bottom:1184.550000px;}
.y60_c00145{bottom:1188.000000px;}
.y61_c00145{bottom:1188.870000px;}
.y3_c00145{bottom:1189.725000px;}
.y64_c00145{bottom:1191.450000px;}
.y5e_c00145{bottom:1196.640000px;}
.y56_c00145{bottom:1205.280000px;}
.y55_c00145{bottom:1206.150000px;}
.y58_c00145{bottom:1207.005000px;}
.y5c_c00145{bottom:1207.875000px;}
.y57_c00145{bottom:1209.600000px;}
.y5d_c00145{bottom:1210.470000px;}
.y5a_c00145{bottom:1211.325000px;}
.y5b_c00145{bottom:1213.050000px;}
.y59_c00145{bottom:1213.920000px;}
.y4e_c00145{bottom:1218.240000px;}
.y52_c00145{bottom:1220.835000px;}
.y4d_c00145{bottom:1222.560000px;}
.y50_c00145{bottom:1223.430000px;}
.y4f_c00145{bottom:1224.285000px;}
.y51_c00145{bottom:1225.155000px;}
.y53_c00145{bottom:1226.010000px;}
.y1a8_c00145{bottom:1226.880000px;}
.y54_c00145{bottom:1227.750000px;}
.y43_c00145{bottom:1231.200000px;}
.y46_c00145{bottom:1232.925000px;}
.y45_c00145{bottom:1233.795000px;}
.y44_c00145{bottom:1234.650000px;}
.y47_c00145{bottom:1236.390000px;}
.y48_c00145{bottom:1238.970000px;}
.y49_c00145{bottom:1243.290000px;}
.y4b_c00145{bottom:1244.160000px;}
.y4a_c00145{bottom:1251.930000px;}
.y4c_c00145{bottom:1253.670000px;}
.y3c_c00145{bottom:1254.525000px;}
.y41_c00145{bottom:1256.250000px;}
.y3e_c00145{bottom:1257.120000px;}
.y42_c00145{bottom:1257.990000px;}
.y3d_c00145{bottom:1260.570000px;}
.y40_c00145{bottom:1264.035000px;}
.y3f_c00145{bottom:1264.890000px;}
.y35_c00145{bottom:1276.125000px;}
.y36_c00145{bottom:1277.850000px;}
.y38_c00145{bottom:1278.720000px;}
.y32_c00145{bottom:1281.315000px;}
.y37_c00145{bottom:1282.170000px;}
.y33_c00145{bottom:1283.910000px;}
.y34_c00145{bottom:1287.360000px;}
.y3a_c00145{bottom:1294.275000px;}
.y1a7_c00145{bottom:1296.870000px;}
.y3b_c00145{bottom:1297.725000px;}
.y39_c00145{bottom:1300.320000px;}
.y2e_c00145{bottom:1303.770000px;}
.y2b_c00145{bottom:1305.510000px;}
.y2f_c00145{bottom:1307.235000px;}
.y2c_c00145{bottom:1308.090000px;}
.y31_c00145{bottom:1311.555000px;}
.y30_c00145{bottom:1312.410000px;}
.y2d_c00145{bottom:1314.150000px;}
.y24_c00145{bottom:1323.645000px;}
.y29_c00145{bottom:1324.515000px;}
.y1_c00145{bottom:1326.240000px;}
.y26_c00145{bottom:1327.110000px;}
.y27_c00145{bottom:1327.965000px;}
.y28_c00145{bottom:1328.835000px;}
.y2_c00145{bottom:1329.690000px;}
.y2a_c00145{bottom:1334.880000px;}
.y25_c00145{bottom:1338.330000px;}
.y1d_c00145{bottom:1353.885000px;}
.y23_c00145{bottom:1354.755000px;}
.y20_c00145{bottom:1355.610000px;}
.y1e_c00145{bottom:1356.480000px;}
.y22_c00145{bottom:1360.800000px;}
.y1c_c00145{bottom:1362.525000px;}
.y13_c00145{bottom:1363.395000px;}
.y1f_c00145{bottom:1364.250000px;}
.y21_c00145{bottom:1365.120000px;}
.y1a6_c00145{bottom:1367.715000px;}
.y12_c00145{bottom:1372.035000px;}
.y19_c00145{bottom:1379.805000px;}
.y1a_c00145{bottom:1381.530000px;}
.y1b_c00145{bottom:1384.995000px;}
.y17_c00145{bottom:1386.720000px;}
.y14_c00145{bottom:1388.445000px;}
.y18_c00145{bottom:1391.040000px;}
.y16_c00145{bottom:1394.490000px;}
.y15_c00145{bottom:1396.230000px;}
.h17_c00145{height:3.110063px;}
.h8_c00145{height:5.399414px;}
.hb_c00145{height:6.209326px;}
.h6_c00145{height:9.340986px;}
.hc_c00145{height:12.418652px;}
.h3_c00145{height:15.550313px;}
.h20_c00145{height:18.681973px;}
.h9_c00145{height:21.759639px;}
.h10_c00145{height:24.891299px;}
.h26_c00145{height:27.968965px;}
.h24_c00145{height:31.100625px;}
.h2_c00145{height:34.232285px;}
.h5_c00145{height:37.309951px;}
.h7_c00145{height:40.441611px;}
.h27_c00145{height:43.519277px;}
.h23_c00145{height:46.650937px;}
.h1f_c00145{height:49.782598px;}
.hf_c00145{height:52.860264px;}
.ha_c00145{height:55.991924px;}
.hd_c00145{height:59.069590px;}
.h4_c00145{height:62.201250px;}
.h15_c00145{height:65.332910px;}
.h22_c00145{height:68.410576px;}
.h25_c00145{height:71.542236px;}
.h1d_c00145{height:74.619902px;}
.h16_c00145{height:77.751563px;}
.h12_c00145{height:80.883223px;}
.h1c_c00145{height:83.960889px;}
.h1b_c00145{height:87.092549px;}
.h14_c00145{height:90.170215px;}
.h11_c00145{height:93.301875px;}
.h13_c00145{height:96.433535px;}
.h1e_c00145{height:99.511201px;}
.h19_c00145{height:102.642861px;}
.h21_c00145{height:105.720527px;}
.h18_c00145{height:108.852188px;}
.h1a_c00145{height:111.983848px;}
.he_c00145{height:115.061514px;}
.h1_c00145{height:1503.000000px;}
.h0_c00145{height:1503.360000px;}
.w0_c00145{width:1088.640000px;}
.w1_c00145{width:1089.000000px;}
.x0_c00145{left:0.000000px;}
.x6_c00145{left:17.280000px;}
.x5_c00145{left:19.875000px;}
.x4_c00145{left:30.240000px;}
.x3_c00145{left:54.435000px;}
.x8_c00145{left:101.955000px;}
.x9_c00145{left:108.000000px;}
.x1_c00145{left:111.450000px;}
.x2_c00145{left:129.600000px;}
.xa_c00145{left:139.965000px;}
.x7_c00145{left:156.390000px;}
.xb_c00145{left:177.120000px;}
.xc_c00145{left:183.165000px;}
.x118_c00145{left:185.760000px;}
.x119_c00145{left:199.590000px;}
.xff_c00145{left:216.000000px;}
.x107_c00145{left:220.320000px;}
.x7f_c00145{left:224.640000px;}
.x5d_c00145{left:226.365000px;}
.x10b_c00145{left:228.960000px;}
.x26_c00145{left:230.685000px;}
.x1a_c00145{left:232.410000px;}
.xb3_c00145{left:234.150000px;}
.xd8_c00145{left:235.875000px;}
.xec_c00145{left:237.600000px;}
.xfb_c00145{left:240.195000px;}
.x5e_c00145{left:243.645000px;}
.xa9_c00145{left:246.240000px;}
.xa5_c00145{left:248.835000px;}
.xb4_c00145{left:251.430000px;}
.x9d_c00145{left:254.010000px;}
.xdf_c00145{left:255.750000px;}
.x84_c00145{left:258.330000px;}
.xdb_c00145{left:260.925000px;}
.xca_c00145{left:262.650000px;}
.x6d_c00145{left:264.390000px;}
.xd_c00145{left:266.970000px;}
.x57_c00145{left:268.710000px;}
.x5f_c00145{left:270.435000px;}
.x93_c00145{left:273.030000px;}
.x104_c00145{left:276.480000px;}
.xfc_c00145{left:279.075000px;}
.x45_c00145{left:282.525000px;}
.x4c_c00145{left:285.990000px;}
.x85_c00145{left:289.440000px;}
.x1b_c00145{left:292.035000px;}
.x46_c00145{left:293.760000px;}
.xe_c00145{left:297.210000px;}
.x108_c00145{left:298.950000px;}
.x4d_c00145{left:302.400000px;}
.x111_c00145{left:304.125000px;}
.x36_c00145{left:306.720000px;}
.xf0_c00145{left:309.315000px;}
.x6e_c00145{left:311.040000px;}
.x78_c00145{left:313.635000px;}
.x37_c00145{left:316.230000px;}
.x100_c00145{left:319.680000px;}
.x2e_c00145{left:321.405000px;}
.x94_c00145{left:324.000000px;}
.x58_c00145{left:325.725000px;}
.xb5_c00145{left:327.450000px;}
.x3f_c00145{left:329.190000px;}
.x114_c00145{left:330.915000px;}
.x86_c00145{left:333.510000px;}
.xbb_c00145{left:336.090000px;}
.x38_c00145{left:342.150000px;}
.x6f_c00145{left:346.470000px;}
.x4e_c00145{left:349.050000px;}
.x66_c00145{left:350.790000px;}
.x101_c00145{left:352.515000px;}
.x17_c00145{left:354.240000px;}
.x6a_c00145{left:356.835000px;}
.xf6_c00145{left:360.285000px;}
.x27_c00145{left:362.880000px;}
.x9e_c00145{left:364.605000px;}
.xa6_c00145{left:367.200000px;}
.xe3_c00145{left:369.795000px;}
.x95_c00145{left:372.390000px;}
.xd0_c00145{left:375.840000px;}
.x4f_c00145{left:377.565000px;}
.x1c_c00145{left:380.160000px;}
.xc2_c00145{left:381.885000px;}
.x9f_c00145{left:383.610000px;}
.x87_c00145{left:385.350000px;}
.x70_c00145{left:389.670000px;}
.xd1_c00145{left:395.715000px;}
.x96_c00145{left:399.165000px;}
.x39_c00145{left:400.890000px;}
.x47_c00145{left:402.630000px;}
.xe4_c00145{left:404.355000px;}
.x50_c00145{left:406.080000px;}
.x71_c00145{left:409.530000px;}
.x79_c00145{left:411.270000px;}
.xf1_c00145{left:412.995000px;}
.xc6_c00145{left:414.720000px;}
.x115_c00145{left:416.445000px;}
.x28_c00145{left:420.765000px;}
.x80_c00145{left:424.230000px;}
.x59_c00145{left:426.810000px;}
.x97_c00145{left:429.405000px;}
.xdc_c00145{left:431.130000px;}
.xd2_c00145{left:433.725000px;}
.xf2_c00145{left:436.320000px;}
.x5a_c00145{left:438.915000px;}
.x48_c00145{left:440.640000px;}
.xad_c00145{left:442.365000px;}
.xcd_c00145{left:444.090000px;}
.x88_c00145{left:446.685000px;}
.xbe_c00145{left:449.280000px;}
.x89_c00145{left:454.470000px;}
.x2f_c00145{left:456.195000px;}
.x60_c00145{left:463.110000px;}
.x5b_c00145{left:468.285000px;}
.x72_c00145{left:470.010000px;}
.x8a_c00145{left:473.475000px;}
.x30_c00145{left:476.070000px;}
.xe0_c00145{left:477.795000px;}
.xdd_c00145{left:482.970000px;}
.xa0_c00145{left:484.710000px;}
.x6b_c00145{left:486.435000px;}
.xf7_c00145{left:488.160000px;}
.xd6_c00145{left:490.755000px;}
.x3a_c00145{left:492.480000px;}
.xc7_c00145{left:494.205000px;}
.xe9_c00145{left:496.800000px;}
.x1d_c00145{left:500.250000px;}
.x29_c00145{left:507.165000px;}
.xc3_c00145{left:509.760000px;}
.xf8_c00145{left:512.355000px;}
.xd3_c00145{left:514.080000px;}
.xce_c00145{left:517.530000px;}
.x51_c00145{left:519.270000px;}
.x49_c00145{left:522.720000px;}
.x8b_c00145{left:524.445000px;}
.xc8_c00145{left:527.910000px;}
.x52_c00145{left:529.635000px;}
.xb6_c00145{left:533.085000px;}
.x10c_c00145{left:534.810000px;}
.x1e_c00145{left:536.550000px;}
.x73_c00145{left:540.000000px;}
.xa7_c00145{left:542.595000px;}
.x61_c00145{left:545.190000px;}
.x53_c00145{left:547.770000px;}
.xc4_c00145{left:550.365000px;}
.x4a_c00145{left:552.090000px;}
.x31_c00145{left:553.830000px;}
.xf_c00145{left:557.280000px;}
.x116_c00145{left:562.470000px;}
.x1f_c00145{left:564.195000px;}
.xbc_c00145{left:568.515000px;}
.x20_c00145{left:571.965000px;}
.xf3_c00145{left:573.690000px;}
.xae_c00145{left:576.285000px;}
.xd4_c00145{left:578.880000px;}
.x10_c00145{left:581.475000px;}
.xd7_c00145{left:585.795000px;}
.x54_c00145{left:587.520000px;}
.xfd_c00145{left:589.245000px;}
.xe5_c00145{left:592.710000px;}
.x21_c00145{left:594.435000px;}
.xb7_c00145{left:596.160000px;}
.xbf_c00145{left:597.885000px;}
.x2a_c00145{left:599.610000px;}
.x55_c00145{left:601.350000px;}
.x4b_c00145{left:603.930360px;}
.x40_c00145{left:605.670000px;}
.x11_c00145{left:608.250000px;}
.xc5_c00145{left:609.990000px;}
.x18_c00145{left:613.440000px;}
.x74_c00145{left:616.035000px;}
.xb8_c00145{left:617.760000px;}
.xf4_c00145{left:619.485000px;}
.x56_c00145{left:622.950000px;}
.x12_c00145{left:626.400000px;}
.xcf_c00145{left:629.850000px;}
.x81_c00145{left:632.445000px;}
.x7a_c00145{left:635.040000px;}
.x102_c00145{left:637.635000px;}
.x75_c00145{left:641.955000px;}
.x10d_c00145{left:643.680000px;}
.xaa_c00145{left:646.275000px;}
.x41_c00145{left:648.000000px;}
.x8c_c00145{left:651.450000px;}
.x13_c00145{left:653.190000px;}
.x22_c00145{left:654.915000px;}
.x98_c00145{left:663.555000px;}
.x76_c00145{left:666.150000px;}
.xa1_c00145{left:667.875000px;}
.x5c_c00145{left:670.470000px;}
.xcb_c00145{left:673.050000px;}
.x7b_c00145{left:675.645000px;}
.xfe_c00145{left:677.370000px;}
.x67_c00145{left:679.110000px;}
.xd9_c00145{left:681.690000px;}
.xa2_c00145{left:683.430000px;}
.x8d_c00145{left:685.155000px;}
.xaf_c00145{left:688.605000px;}
.x109_c00145{left:691.200000px;}
.xef_c00145{left:694.650000px;}
.x62_c00145{left:699.840000px;}
.x32_c00145{left:701.565000px;}
.x2b_c00145{left:708.480000px;}
.xe6_c00145{left:711.075000px;}
.x117_c00145{left:713.670000px;}
.x42_c00145{left:717.990000px;}
.x3b_c00145{left:719.715000px;}
.x10e_c00145{left:724.035000px;}
.xc0_c00145{left:726.630000px;}
.xf9_c00145{left:728.355000px;}
.xcc_c00145{left:730.950000px;}
.x99_c00145{left:733.530000px;}
.x8e_c00145{left:735.270000px;}
.x68_c00145{left:736.995000px;}
.x43_c00145{left:739.590000px;}
.xe7_c00145{left:742.170000px;}
.x82_c00145{left:744.765000px;}
.x33_c00145{left:747.360000px;}
.xc1_c00145{left:749.085000px;}
.xb0_c00145{left:750.810000px;}
.xb9_c00145{left:754.275000px;}
.xd5_c00145{left:756.000000px;}
.xe1_c00145{left:757.725000px;}
.x9a_c00145{left:762.045000px;}
.xa3_c00145{left:763.770000px;}
.x34_c00145{left:767.235000px;}
.x63_c00145{left:769.830000px;}
.x105_c00145{left:771.555000px;}
.xed_c00145{left:774.150000px;}
.x69_c00145{left:775.875000px;}
.x112_c00145{left:778.470000px;}
.xe2_c00145{left:780.195000px;}
.xb1_c00145{left:785.370000px;}
.x23_c00145{left:788.835000px;}
.x7c_c00145{left:792.285000px;}
.x2c_c00145{left:794.880000px;}
.xda_c00145{left:798.330000px;}
.x64_c00145{left:800.070000px;}
.x8f_c00145{left:803.520000px;}
.xa8_c00145{left:805.245000px;}
.x44_c00145{left:806.970000px;}
.x14_c00145{left:809.565000px;}
.x24_c00145{left:812.160000px;}
.x65_c00145{left:814.755000px;}
.x77_c00145{left:818.205000px;}
.xc9_c00145{left:820.800000px;}
.xba_c00145{left:823.395000px;}
.x15_c00145{left:825.120000px;}
.xb2_c00145{left:826.845000px;}
.x83_c00145{left:832.035000px;}
.x7d_c00145{left:833.760000px;}
.x3c_c00145{left:835.485000px;}
.xe8_c00145{left:838.080000px;}
.x16_c00145{left:839.805000px;}
.x90_c00145{left:842.400000px;}
.xab_c00145{left:846.720000px;}
.xde_c00145{left:848.445000px;}
.x35_c00145{left:851.040000px;}
.x19_c00145{left:852.765000px;}
.x10f_c00145{left:855.360000px;}
.x113_c00145{left:857.085000px;}
.x106_c00145{left:858.810000px;}
.x6c_c00145{left:860.550000px;}
.x7e_c00145{left:864.000000px;}
.x91_c00145{left:868.320000px;}
.x2d_c00145{left:871.770000px;}
.x25_c00145{left:874.365000px;}
.xa4_c00145{left:878.685000px;}
.x9b_c00145{left:881.280000px;}
.xbd_c00145{left:884.730000px;}
.x10a_c00145{left:888.195000px;}
.x9c_c00145{left:889.920000px;}
.x110_c00145{left:891.645000px;}
.x103_c00145{left:895.965000px;}
.xea_c00145{left:900.285000px;}
.x3d_c00145{left:902.880000px;}
.x92_c00145{left:906.330000px;}
.xac_c00145{left:908.070000px;}
.xfa_c00145{left:909.795000px;}
.xf5_c00145{left:911.520000px;}
.xee_c00145{left:915.840000px;}
.xeb_c00145{left:937.440000px;}
.x3e_c00145{left:958.170000px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls0_c00145{letter-spacing:0.000000pt;}
.ws0_c00145{word-spacing:0.000000pt;}
.fs15_c00145{font-size:3.072000pt;}
.fs6_c00145{font-size:5.333333pt;}
.fs9_c00145{font-size:6.133333pt;}
.fs4_c00145{font-size:9.226667pt;}
.fsa_c00145{font-size:12.266667pt;}
.fs1_c00145{font-size:15.360000pt;}
.fs1e_c00145{font-size:18.453333pt;}
.fs7_c00145{font-size:21.493333pt;}
.fse_c00145{font-size:24.586667pt;}
.fs24_c00145{font-size:27.626667pt;}
.fs22_c00145{font-size:30.720000pt;}
.fs0_c00145{font-size:33.813333pt;}
.fs3_c00145{font-size:36.853333pt;}
.fs5_c00145{font-size:39.946667pt;}
.fs25_c00145{font-size:42.986667pt;}
.fs21_c00145{font-size:46.080000pt;}
.fs1d_c00145{font-size:49.173333pt;}
.fsd_c00145{font-size:52.213333pt;}
.fs8_c00145{font-size:55.306667pt;}
.fsb_c00145{font-size:58.346667pt;}
.fs2_c00145{font-size:61.440000pt;}
.fs13_c00145{font-size:64.533333pt;}
.fs20_c00145{font-size:67.573333pt;}
.fs23_c00145{font-size:70.666667pt;}
.fs1b_c00145{font-size:73.706667pt;}
.fs14_c00145{font-size:76.800000pt;}
.fs10_c00145{font-size:79.893333pt;}
.fs1a_c00145{font-size:82.933333pt;}
.fs19_c00145{font-size:86.026667pt;}
.fs12_c00145{font-size:89.066667pt;}
.fsf_c00145{font-size:92.160000pt;}
.fs11_c00145{font-size:95.253333pt;}
.fs1c_c00145{font-size:98.293333pt;}
.fs17_c00145{font-size:101.386667pt;}
.fs1f_c00145{font-size:104.426667pt;}
.fs16_c00145{font-size:107.520000pt;}
.fs18_c00145{font-size:110.613333pt;}
.fsc_c00145{font-size:113.653333pt;}
.y0_c00145{bottom:0.000000pt;}
.y1a5_c00145{bottom:185.093333pt;}
.y1a4_c00145{bottom:190.466667pt;}
.y1a0_c00145{bottom:195.066667pt;}
.y19e_c00145{bottom:196.613333pt;}
.y19f_c00145{bottom:197.373333pt;}
.y1a2_c00145{bottom:200.453333pt;}
.y1a1_c00145{bottom:201.213333pt;}
.y19d_c00145{bottom:201.986667pt;}
.y1a3_c00145{bottom:202.746667pt;}
.y197_c00145{bottom:204.293333pt;}
.y196_c00145{bottom:205.053333pt;}
.y195_c00145{bottom:205.826667pt;}
.y194_c00145{bottom:206.586667pt;}
.y19c_c00145{bottom:207.360000pt;}
.y199_c00145{bottom:208.133333pt;}
.y198_c00145{bottom:208.893333pt;}
.y19b_c00145{bottom:209.666667pt;}
.y19a_c00145{bottom:212.733333pt;}
.y188_c00145{bottom:229.626667pt;}
.y191_c00145{bottom:230.400000pt;}
.y18a_c00145{bottom:231.173333pt;}
.y189_c00145{bottom:232.706667pt;}
.y18e_c00145{bottom:235.013333pt;}
.y193_c00145{bottom:236.546667pt;}
.y18f_c00145{bottom:237.306667pt;}
.y18b_c00145{bottom:238.080000pt;}
.y18d_c00145{bottom:240.386667pt;}
.y190_c00145{bottom:241.146667pt;}
.y18c_c00145{bottom:244.986667pt;}
.y192_c00145{bottom:245.760000pt;}
.y185_c00145{bottom:248.826667pt;}
.y184_c00145{bottom:249.600000pt;}
.y186_c00145{bottom:253.440000pt;}
.y182_c00145{bottom:254.213333pt;}
.y183_c00145{bottom:254.973333pt;}
.y187_c00145{bottom:257.280000pt;}
.y180_c00145{bottom:268.800000pt;}
.y176_c00145{bottom:269.573333pt;}
.y17c_c00145{bottom:270.333333pt;}
.y17e_c00145{bottom:271.106667pt;}
.y17f_c00145{bottom:271.866667pt;}
.y175_c00145{bottom:272.640000pt;}
.y17a_c00145{bottom:274.173333pt;}
.y17b_c00145{bottom:274.946667pt;}
.y179_c00145{bottom:275.706667pt;}
.y177_c00145{bottom:276.480000pt;}
.y17d_c00145{bottom:277.253333pt;}
.y178_c00145{bottom:278.786667pt;}
.y181_c00145{bottom:292.613333pt;}
.y16e_c00145{bottom:294.146667pt;}
.y16c_c00145{bottom:294.906667pt;}
.y173_c00145{bottom:295.680000pt;}
.y170_c00145{bottom:297.213333pt;}
.y174_c00145{bottom:297.986667pt;}
.y172_c00145{bottom:298.746667pt;}
.y16d_c00145{bottom:299.520000pt;}
.y16f_c00145{bottom:300.293333pt;}
.y171_c00145{bottom:301.053333pt;}
.y168_c00145{bottom:314.106667pt;}
.y167_c00145{bottom:315.653333pt;}
.y166_c00145{bottom:316.413333pt;}
.y169_c00145{bottom:319.493333pt;}
.y164_c00145{bottom:320.253333pt;}
.y163_c00145{bottom:321.786667pt;}
.y16a_c00145{bottom:322.560000pt;}
.y165_c00145{bottom:323.333333pt;}
.y16b_c00145{bottom:324.866667pt;}
.y15c_c00145{bottom:336.386667pt;}
.y15f_c00145{bottom:340.226667pt;}
.y15e_c00145{bottom:340.986667pt;}
.y161_c00145{bottom:341.760000pt;}
.y160_c00145{bottom:342.533333pt;}
.y15d_c00145{bottom:343.293333pt;}
.y162_c00145{bottom:344.066667pt;}
.y11_c00145{bottom:344.826667pt;}
.y15b_c00145{bottom:358.653333pt;}
.y155_c00145{bottom:359.426667pt;}
.y153_c00145{bottom:360.186667pt;}
.y152_c00145{bottom:360.960000pt;}
.y151_c00145{bottom:361.733333pt;}
.y154_c00145{bottom:364.026667pt;}
.y158_c00145{bottom:365.573333pt;}
.y150_c00145{bottom:366.333333pt;}
.y159_c00145{bottom:368.640000pt;}
.y14f_c00145{bottom:370.946667pt;}
.y15a_c00145{bottom:371.706667pt;}
.y156_c00145{bottom:373.253333pt;}
.y157_c00145{bottom:374.013333pt;}
.y14d_c00145{bottom:380.933333pt;}
.y14b_c00145{bottom:381.693333pt;}
.y146_c00145{bottom:382.466667pt;}
.y144_c00145{bottom:383.226667pt;}
.y14a_c00145{bottom:386.306667pt;}
.y149_c00145{bottom:387.066667pt;}
.y14c_c00145{bottom:387.840000pt;}
.y148_c00145{bottom:388.613333pt;}
.y147_c00145{bottom:389.373333pt;}
.y10_c00145{bottom:390.146667pt;}
.yf_c00145{bottom:390.906667pt;}
.y14e_c00145{bottom:392.453333pt;}
.y145_c00145{bottom:399.360000pt;}
.y143_c00145{bottom:403.200000pt;}
.y13c_c00145{bottom:403.973333pt;}
.y141_c00145{bottom:404.733333pt;}
.y13e_c00145{bottom:405.506667pt;}
.y13d_c00145{bottom:407.040000pt;}
.y142_c00145{bottom:407.813333pt;}
.y13f_c00145{bottom:408.573333pt;}
.y140_c00145{bottom:410.880000pt;}
.y13b_c00145{bottom:411.653333pt;}
.y13a_c00145{bottom:417.026667pt;}
.y134_c00145{bottom:427.773333pt;}
.y138_c00145{bottom:430.080000pt;}
.y133_c00145{bottom:430.853333pt;}
.y136_c00145{bottom:431.613333pt;}
.y139_c00145{bottom:433.146667pt;}
.y137_c00145{bottom:433.920000pt;}
.y135_c00145{bottom:434.693333pt;}
.y12c_c00145{bottom:449.280000pt;}
.y132_c00145{bottom:450.053333pt;}
.y12b_c00145{bottom:452.346667pt;}
.y131_c00145{bottom:453.893333pt;}
.y12f_c00145{bottom:454.653333pt;}
.y130_c00145{bottom:455.426667pt;}
.y12e_c00145{bottom:456.186667pt;}
.y12d_c00145{bottom:456.960000pt;}
.ye_c00145{bottom:468.480000pt;}
.y129_c00145{bottom:470.786667pt;}
.y127_c00145{bottom:472.320000pt;}
.y12a_c00145{bottom:473.853333pt;}
.y128_c00145{bottom:474.626667pt;}
.y125_c00145{bottom:475.386667pt;}
.y126_c00145{bottom:476.933333pt;}
.y124_c00145{bottom:478.466667pt;}
.y119_c00145{bottom:494.586667pt;}
.y118_c00145{bottom:498.426667pt;}
.y11f_c00145{bottom:499.200000pt;}
.y117_c00145{bottom:499.973333pt;}
.y11d_c00145{bottom:500.733333pt;}
.y11e_c00145{bottom:501.506667pt;}
.y122_c00145{bottom:503.813333pt;}
.y11c_c00145{bottom:504.573333pt;}
.y123_c00145{bottom:506.106667pt;}
.y121_c00145{bottom:507.653333pt;}
.y11a_c00145{bottom:509.186667pt;}
.y11b_c00145{bottom:511.493333pt;}
.y120_c00145{bottom:512.253333pt;}
.y115_c00145{bottom:515.333333pt;}
.y112_c00145{bottom:516.093333pt;}
.y116_c00145{bottom:516.866667pt;}
.y113_c00145{bottom:517.626667pt;}
.y114_c00145{bottom:520.706667pt;}
.y111_c00145{bottom:535.293333pt;}
.y10f_c00145{bottom:539.133333pt;}
.y110_c00145{bottom:540.666667pt;}
.y109_c00145{bottom:541.440000pt;}
.y10d_c00145{bottom:543.746667pt;}
.y10a_c00145{bottom:544.506667pt;}
.y10c_c00145{bottom:545.280000pt;}
.y10b_c00145{bottom:546.053333pt;}
.y10e_c00145{bottom:546.813333pt;}
.y104_c00145{bottom:566.013333pt;}
.y106_c00145{bottom:566.786667pt;}
.y108_c00145{bottom:567.546667pt;}
.y105_c00145{bottom:569.093333pt;}
.y107_c00145{bottom:582.146667pt;}
.yff_c00145{bottom:582.906667pt;}
.y102_c00145{bottom:583.680000pt;}
.yfd_c00145{bottom:584.453333pt;}
.yfc_c00145{bottom:585.213333pt;}
.y103_c00145{bottom:585.986667pt;}
.yfe_c00145{bottom:586.746667pt;}
.y101_c00145{bottom:588.293333pt;}
.y100_c00145{bottom:590.586667pt;}
.yf8_c00145{bottom:606.720000pt;}
.yfa_c00145{bottom:607.493333pt;}
.yf7_c00145{bottom:608.253333pt;}
.yf9_c00145{bottom:609.026667pt;}
.yfb_c00145{bottom:613.626667pt;}
.yf6_c00145{bottom:627.453333pt;}
.yef_c00145{bottom:628.226667pt;}
.yf1_c00145{bottom:628.986667pt;}
.yf3_c00145{bottom:629.760000pt;}
.yf5_c00145{bottom:632.066667pt;}
.yf4_c00145{bottom:632.826667pt;}
.yf0_c00145{bottom:634.373333pt;}
.yf2_c00145{bottom:635.133333pt;}
.ye7_c00145{bottom:648.960000pt;}
.yea_c00145{bottom:649.733333pt;}
.yee_c00145{bottom:650.493333pt;}
.yec_c00145{bottom:652.026667pt;}
.yeb_c00145{bottom:652.800000pt;}
.ye9_c00145{bottom:653.573333pt;}
.ye6_c00145{bottom:655.106667pt;}
.ye8_c00145{bottom:655.866667pt;}
.yed_c00145{bottom:656.640000pt;}
.ye5_c00145{bottom:657.413333pt;}
.yde_c00145{bottom:669.693333pt;}
.ye4_c00145{bottom:670.466667pt;}
.ye2_c00145{bottom:672.000000pt;}
.ye3_c00145{bottom:672.773333pt;}
.ydd_c00145{bottom:673.533333pt;}
.ye0_c00145{bottom:675.840000pt;}
.ydf_c00145{bottom:677.373333pt;}
.ye1_c00145{bottom:678.146667pt;}
.yd6_c00145{bottom:692.733333pt;}
.yd8_c00145{bottom:693.506667pt;}
.ydb_c00145{bottom:695.040000pt;}
.yda_c00145{bottom:697.346667pt;}
.ydc_c00145{bottom:698.106667pt;}
.yd9_c00145{bottom:698.880000pt;}
.yd7_c00145{bottom:699.653333pt;}
.yc_c00145{bottom:705.786667pt;}
.yd_c00145{bottom:711.933333pt;}
.yd3_c00145{bottom:714.240000pt;}
.yd5_c00145{bottom:715.013333pt;}
.yd1_c00145{bottom:715.773333pt;}
.yd4_c00145{bottom:717.306667pt;}
.yd2_c00145{bottom:720.386667pt;}
.ycc_c00145{bottom:736.506667pt;}
.ycf_c00145{bottom:737.280000pt;}
.ycd_c00145{bottom:739.586667pt;}
.yce_c00145{bottom:741.120000pt;}
.yd0_c00145{bottom:742.653333pt;}
.yc7_c00145{bottom:758.013333pt;}
.yc5_c00145{bottom:758.786667pt;}
.yc8_c00145{bottom:759.546667pt;}
.yc6_c00145{bottom:761.853333pt;}
.yca_c00145{bottom:764.933333pt;}
.yc9_c00145{bottom:765.693333pt;}
.ycb_c00145{bottom:768.000000pt;}
.ya_c00145{bottom:772.613333pt;}
.yb_c00145{bottom:774.146667pt;}
.yc1_c00145{bottom:781.053333pt;}
.ybf_c00145{bottom:781.826667pt;}
.yc0_c00145{bottom:782.586667pt;}
.yc3_c00145{bottom:787.200000pt;}
.yc2_c00145{bottom:788.733333pt;}
.yc4_c00145{bottom:794.880000pt;}
.y9_c00145{bottom:795.653333pt;}
.yba_c00145{bottom:803.333333pt;}
.ybc_c00145{bottom:804.093333pt;}
.ybe_c00145{bottom:804.866667pt;}
.ybb_c00145{bottom:806.400000pt;}
.yb9_c00145{bottom:808.706667pt;}
.ybd_c00145{bottom:810.240000pt;}
.y7_c00145{bottom:817.146667pt;}
.y8_c00145{bottom:822.533333pt;}
.yac_c00145{bottom:825.600000pt;}
.yaf_c00145{bottom:826.373333pt;}
.yae_c00145{bottom:827.906667pt;}
.yb1_c00145{bottom:829.440000pt;}
.yad_c00145{bottom:831.746667pt;}
.yb0_c00145{bottom:832.506667pt;}
.yb6_c00145{bottom:833.280000pt;}
.yb3_c00145{bottom:834.053333pt;}
.yb7_c00145{bottom:836.346667pt;}
.yb4_c00145{bottom:837.120000pt;}
.yb5_c00145{bottom:838.653333pt;}
.yb2_c00145{bottom:839.426667pt;}
.y6_c00145{bottom:840.186667pt;}
.yb8_c00145{bottom:842.493333pt;}
.yab_c00145{bottom:844.800000pt;}
.ya6_c00145{bottom:847.106667pt;}
.ya9_c00145{bottom:847.866667pt;}
.yaa_c00145{bottom:848.640000pt;}
.ya8_c00145{bottom:849.413333pt;}
.ya7_c00145{bottom:854.786667pt;}
.ya5_c00145{bottom:855.546667pt;}
.y4_c00145{bottom:862.466667pt;}
.y5_c00145{bottom:867.066667pt;}
.ya4_c00145{bottom:870.146667pt;}
.ya3_c00145{bottom:870.906667pt;}
.ya1_c00145{bottom:873.986667pt;}
.ya2_c00145{bottom:874.746667pt;}
.ya0_c00145{bottom:888.573333pt;}
.y97_c00145{bottom:894.720000pt;}
.y9e_c00145{bottom:895.493333pt;}
.y98_c00145{bottom:896.253333pt;}
.y9b_c00145{bottom:897.026667pt;}
.y99_c00145{bottom:897.786667pt;}
.y9a_c00145{bottom:898.560000pt;}
.y9c_c00145{bottom:899.333333pt;}
.y96_c00145{bottom:900.093333pt;}
.y9f_c00145{bottom:910.080000pt;}
.y9d_c00145{bottom:910.853333pt;}
.y8e_c00145{bottom:915.453333pt;}
.y95_c00145{bottom:916.226667pt;}
.y93_c00145{bottom:916.986667pt;}
.y91_c00145{bottom:917.760000pt;}
.y8f_c00145{bottom:918.533333pt;}
.y8d_c00145{bottom:919.293333pt;}
.y94_c00145{bottom:920.066667pt;}
.y90_c00145{bottom:920.826667pt;}
.y92_c00145{bottom:921.600000pt;}
.y85_c00145{bottom:922.373333pt;}
.y8b_c00145{bottom:926.973333pt;}
.y88_c00145{bottom:927.746667pt;}
.y89_c00145{bottom:928.506667pt;}
.y86_c00145{bottom:930.813333pt;}
.y8a_c00145{bottom:931.586667pt;}
.y87_c00145{bottom:933.120000pt;}
.y8c_c00145{bottom:933.893333pt;}
.y82_c00145{bottom:936.960000pt;}
.y81_c00145{bottom:938.493333pt;}
.y80_c00145{bottom:940.800000pt;}
.y84_c00145{bottom:942.333333pt;}
.y7f_c00145{bottom:943.866667pt;}
.y83_c00145{bottom:948.480000pt;}
.y7e_c00145{bottom:956.933333pt;}
.y77_c00145{bottom:959.226667pt;}
.y78_c00145{bottom:960.000000pt;}
.y7c_c00145{bottom:960.773333pt;}
.y7b_c00145{bottom:966.146667pt;}
.y79_c00145{bottom:966.906667pt;}
.y7a_c00145{bottom:967.680000pt;}
.y7d_c00145{bottom:969.986667pt;}
.y76_c00145{bottom:983.040000pt;}
.y72_c00145{bottom:983.813333pt;}
.y74_c00145{bottom:985.346667pt;}
.y73_c00145{bottom:987.653333pt;}
.y70_c00145{bottom:988.413333pt;}
.y71_c00145{bottom:989.186667pt;}
.y75_c00145{bottom:989.946667pt;}
.y6c_c00145{bottom:1004.546667pt;}
.y6a_c00145{bottom:1005.306667pt;}
.y6d_c00145{bottom:1006.080000pt;}
.y6b_c00145{bottom:1007.613333pt;}
.y6f_c00145{bottom:1008.386667pt;}
.y6e_c00145{bottom:1011.453333pt;}
.y67_c00145{bottom:1027.586667pt;}
.y68_c00145{bottom:1031.426667pt;}
.y65_c00145{bottom:1032.960000pt;}
.y66_c00145{bottom:1033.733333pt;}
.y69_c00145{bottom:1034.493333pt;}
.y5f_c00145{bottom:1047.546667pt;}
.y63_c00145{bottom:1049.853333pt;}
.y62_c00145{bottom:1052.933333pt;}
.y60_c00145{bottom:1056.000000pt;}
.y61_c00145{bottom:1056.773333pt;}
.y3_c00145{bottom:1057.533333pt;}
.y64_c00145{bottom:1059.066667pt;}
.y5e_c00145{bottom:1063.680000pt;}
.y56_c00145{bottom:1071.360000pt;}
.y55_c00145{bottom:1072.133333pt;}
.y58_c00145{bottom:1072.893333pt;}
.y5c_c00145{bottom:1073.666667pt;}
.y57_c00145{bottom:1075.200000pt;}
.y5d_c00145{bottom:1075.973333pt;}
.y5a_c00145{bottom:1076.733333pt;}
.y5b_c00145{bottom:1078.266667pt;}
.y59_c00145{bottom:1079.040000pt;}
.y4e_c00145{bottom:1082.880000pt;}
.y52_c00145{bottom:1085.186667pt;}
.y4d_c00145{bottom:1086.720000pt;}
.y50_c00145{bottom:1087.493333pt;}
.y4f_c00145{bottom:1088.253333pt;}
.y51_c00145{bottom:1089.026667pt;}
.y53_c00145{bottom:1089.786667pt;}
.y1a8_c00145{bottom:1090.560000pt;}
.y54_c00145{bottom:1091.333333pt;}
.y43_c00145{bottom:1094.400000pt;}
.y46_c00145{bottom:1095.933333pt;}
.y45_c00145{bottom:1096.706667pt;}
.y44_c00145{bottom:1097.466667pt;}
.y47_c00145{bottom:1099.013333pt;}
.y48_c00145{bottom:1101.306667pt;}
.y49_c00145{bottom:1105.146667pt;}
.y4b_c00145{bottom:1105.920000pt;}
.y4a_c00145{bottom:1112.826667pt;}
.y4c_c00145{bottom:1114.373333pt;}
.y3c_c00145{bottom:1115.133333pt;}
.y41_c00145{bottom:1116.666667pt;}
.y3e_c00145{bottom:1117.440000pt;}
.y42_c00145{bottom:1118.213333pt;}
.y3d_c00145{bottom:1120.506667pt;}
.y40_c00145{bottom:1123.586667pt;}
.y3f_c00145{bottom:1124.346667pt;}
.y35_c00145{bottom:1134.333333pt;}
.y36_c00145{bottom:1135.866667pt;}
.y38_c00145{bottom:1136.640000pt;}
.y32_c00145{bottom:1138.946667pt;}
.y37_c00145{bottom:1139.706667pt;}
.y33_c00145{bottom:1141.253333pt;}
.y34_c00145{bottom:1144.320000pt;}
.y3a_c00145{bottom:1150.466667pt;}
.y1a7_c00145{bottom:1152.773333pt;}
.y3b_c00145{bottom:1153.533333pt;}
.y39_c00145{bottom:1155.840000pt;}
.y2e_c00145{bottom:1158.906667pt;}
.y2b_c00145{bottom:1160.453333pt;}
.y2f_c00145{bottom:1161.986667pt;}
.y2c_c00145{bottom:1162.746667pt;}
.y31_c00145{bottom:1165.826667pt;}
.y30_c00145{bottom:1166.586667pt;}
.y2d_c00145{bottom:1168.133333pt;}
.y24_c00145{bottom:1176.573333pt;}
.y29_c00145{bottom:1177.346667pt;}
.y1_c00145{bottom:1178.880000pt;}
.y26_c00145{bottom:1179.653333pt;}
.y27_c00145{bottom:1180.413333pt;}
.y28_c00145{bottom:1181.186667pt;}
.y2_c00145{bottom:1181.946667pt;}
.y2a_c00145{bottom:1186.560000pt;}
.y25_c00145{bottom:1189.626667pt;}
.y1d_c00145{bottom:1203.453333pt;}
.y23_c00145{bottom:1204.226667pt;}
.y20_c00145{bottom:1204.986667pt;}
.y1e_c00145{bottom:1205.760000pt;}
.y22_c00145{bottom:1209.600000pt;}
.y1c_c00145{bottom:1211.133333pt;}
.y13_c00145{bottom:1211.906667pt;}
.y1f_c00145{bottom:1212.666667pt;}
.y21_c00145{bottom:1213.440000pt;}
.y1a6_c00145{bottom:1215.746667pt;}
.y12_c00145{bottom:1219.586667pt;}
.y19_c00145{bottom:1226.493333pt;}
.y1a_c00145{bottom:1228.026667pt;}
.y1b_c00145{bottom:1231.106667pt;}
.y17_c00145{bottom:1232.640000pt;}
.y14_c00145{bottom:1234.173333pt;}
.y18_c00145{bottom:1236.480000pt;}
.y16_c00145{bottom:1239.546667pt;}
.y15_c00145{bottom:1241.093333pt;}
.h17_c00145{height:2.764500pt;}
.h8_c00145{height:4.799479pt;}
.hb_c00145{height:5.519401pt;}
.h6_c00145{height:8.303099pt;}
.hc_c00145{height:11.038802pt;}
.h3_c00145{height:13.822500pt;}
.h20_c00145{height:16.606198pt;}
.h9_c00145{height:19.341901pt;}
.h10_c00145{height:22.125599pt;}
.h26_c00145{height:24.861302pt;}
.h24_c00145{height:27.645000pt;}
.h2_c00145{height:30.428698pt;}
.h5_c00145{height:33.164401pt;}
.h7_c00145{height:35.948099pt;}
.h27_c00145{height:38.683802pt;}
.h23_c00145{height:41.467500pt;}
.h1f_c00145{height:44.251198pt;}
.hf_c00145{height:46.986901pt;}
.ha_c00145{height:49.770599pt;}
.hd_c00145{height:52.506302pt;}
.h4_c00145{height:55.290000pt;}
.h15_c00145{height:58.073698pt;}
.h22_c00145{height:60.809401pt;}
.h25_c00145{height:63.593099pt;}
.h1d_c00145{height:66.328802pt;}
.h16_c00145{height:69.112500pt;}
.h12_c00145{height:71.896198pt;}
.h1c_c00145{height:74.631901pt;}
.h1b_c00145{height:77.415599pt;}
.h14_c00145{height:80.151302pt;}
.h11_c00145{height:82.935000pt;}
.h13_c00145{height:85.718698pt;}
.h1e_c00145{height:88.454401pt;}
.h19_c00145{height:91.238099pt;}
.h21_c00145{height:93.973802pt;}
.h18_c00145{height:96.757500pt;}
.h1a_c00145{height:99.541198pt;}
.he_c00145{height:102.276901pt;}
.h1_c00145{height:1336.000000pt;}
.h0_c00145{height:1336.320000pt;}
.w0_c00145{width:967.680000pt;}
.w1_c00145{width:968.000000pt;}
.x0_c00145{left:0.000000pt;}
.x6_c00145{left:15.360000pt;}
.x5_c00145{left:17.666667pt;}
.x4_c00145{left:26.880000pt;}
.x3_c00145{left:48.386667pt;}
.x8_c00145{left:90.626667pt;}
.x9_c00145{left:96.000000pt;}
.x1_c00145{left:99.066667pt;}
.x2_c00145{left:115.200000pt;}
.xa_c00145{left:124.413333pt;}
.x7_c00145{left:139.013333pt;}
.xb_c00145{left:157.440000pt;}
.xc_c00145{left:162.813333pt;}
.x118_c00145{left:165.120000pt;}
.x119_c00145{left:177.413333pt;}
.xff_c00145{left:192.000000pt;}
.x107_c00145{left:195.840000pt;}
.x7f_c00145{left:199.680000pt;}
.x5d_c00145{left:201.213333pt;}
.x10b_c00145{left:203.520000pt;}
.x26_c00145{left:205.053333pt;}
.x1a_c00145{left:206.586667pt;}
.xb3_c00145{left:208.133333pt;}
.xd8_c00145{left:209.666667pt;}
.xec_c00145{left:211.200000pt;}
.xfb_c00145{left:213.506667pt;}
.x5e_c00145{left:216.573333pt;}
.xa9_c00145{left:218.880000pt;}
.xa5_c00145{left:221.186667pt;}
.xb4_c00145{left:223.493333pt;}
.x9d_c00145{left:225.786667pt;}
.xdf_c00145{left:227.333333pt;}
.x84_c00145{left:229.626667pt;}
.xdb_c00145{left:231.933333pt;}
.xca_c00145{left:233.466667pt;}
.x6d_c00145{left:235.013333pt;}
.xd_c00145{left:237.306667pt;}
.x57_c00145{left:238.853333pt;}
.x5f_c00145{left:240.386667pt;}
.x93_c00145{left:242.693333pt;}
.x104_c00145{left:245.760000pt;}
.xfc_c00145{left:248.066667pt;}
.x45_c00145{left:251.133333pt;}
.x4c_c00145{left:254.213333pt;}
.x85_c00145{left:257.280000pt;}
.x1b_c00145{left:259.586667pt;}
.x46_c00145{left:261.120000pt;}
.xe_c00145{left:264.186667pt;}
.x108_c00145{left:265.733333pt;}
.x4d_c00145{left:268.800000pt;}
.x111_c00145{left:270.333333pt;}
.x36_c00145{left:272.640000pt;}
.xf0_c00145{left:274.946667pt;}
.x6e_c00145{left:276.480000pt;}
.x78_c00145{left:278.786667pt;}
.x37_c00145{left:281.093333pt;}
.x100_c00145{left:284.160000pt;}
.x2e_c00145{left:285.693333pt;}
.x94_c00145{left:288.000000pt;}
.x58_c00145{left:289.533333pt;}
.xb5_c00145{left:291.066667pt;}
.x3f_c00145{left:292.613333pt;}
.x114_c00145{left:294.146667pt;}
.x86_c00145{left:296.453333pt;}
.xbb_c00145{left:298.746667pt;}
.x38_c00145{left:304.133333pt;}
.x6f_c00145{left:307.973333pt;}
.x4e_c00145{left:310.266667pt;}
.x66_c00145{left:311.813333pt;}
.x101_c00145{left:313.346667pt;}
.x17_c00145{left:314.880000pt;}
.x6a_c00145{left:317.186667pt;}
.xf6_c00145{left:320.253333pt;}
.x27_c00145{left:322.560000pt;}
.x9e_c00145{left:324.093333pt;}
.xa6_c00145{left:326.400000pt;}
.xe3_c00145{left:328.706667pt;}
.x95_c00145{left:331.013333pt;}
.xd0_c00145{left:334.080000pt;}
.x4f_c00145{left:335.613333pt;}
.x1c_c00145{left:337.920000pt;}
.xc2_c00145{left:339.453333pt;}
.x9f_c00145{left:340.986667pt;}
.x87_c00145{left:342.533333pt;}
.x70_c00145{left:346.373333pt;}
.xd1_c00145{left:351.746667pt;}
.x96_c00145{left:354.813333pt;}
.x39_c00145{left:356.346667pt;}
.x47_c00145{left:357.893333pt;}
.xe4_c00145{left:359.426667pt;}
.x50_c00145{left:360.960000pt;}
.x71_c00145{left:364.026667pt;}
.x79_c00145{left:365.573333pt;}
.xf1_c00145{left:367.106667pt;}
.xc6_c00145{left:368.640000pt;}
.x115_c00145{left:370.173333pt;}
.x28_c00145{left:374.013333pt;}
.x80_c00145{left:377.093333pt;}
.x59_c00145{left:379.386667pt;}
.x97_c00145{left:381.693333pt;}
.xdc_c00145{left:383.226667pt;}
.xd2_c00145{left:385.533333pt;}
.xf2_c00145{left:387.840000pt;}
.x5a_c00145{left:390.146667pt;}
.x48_c00145{left:391.680000pt;}
.xad_c00145{left:393.213333pt;}
.xcd_c00145{left:394.746667pt;}
.x88_c00145{left:397.053333pt;}
.xbe_c00145{left:399.360000pt;}
.x89_c00145{left:403.973333pt;}
.x2f_c00145{left:405.506667pt;}
.x60_c00145{left:411.653333pt;}
.x5b_c00145{left:416.253333pt;}
.x72_c00145{left:417.786667pt;}
.x8a_c00145{left:420.866667pt;}
.x30_c00145{left:423.173333pt;}
.xe0_c00145{left:424.706667pt;}
.xdd_c00145{left:429.306667pt;}
.xa0_c00145{left:430.853333pt;}
.x6b_c00145{left:432.386667pt;}
.xf7_c00145{left:433.920000pt;}
.xd6_c00145{left:436.226667pt;}
.x3a_c00145{left:437.760000pt;}
.xc7_c00145{left:439.293333pt;}
.xe9_c00145{left:441.600000pt;}
.x1d_c00145{left:444.666667pt;}
.x29_c00145{left:450.813333pt;}
.xc3_c00145{left:453.120000pt;}
.xf8_c00145{left:455.426667pt;}
.xd3_c00145{left:456.960000pt;}
.xce_c00145{left:460.026667pt;}
.x51_c00145{left:461.573333pt;}
.x49_c00145{left:464.640000pt;}
.x8b_c00145{left:466.173333pt;}
.xc8_c00145{left:469.253333pt;}
.x52_c00145{left:470.786667pt;}
.xb6_c00145{left:473.853333pt;}
.x10c_c00145{left:475.386667pt;}
.x1e_c00145{left:476.933333pt;}
.x73_c00145{left:480.000000pt;}
.xa7_c00145{left:482.306667pt;}
.x61_c00145{left:484.613333pt;}
.x53_c00145{left:486.906667pt;}
.xc4_c00145{left:489.213333pt;}
.x4a_c00145{left:490.746667pt;}
.x31_c00145{left:492.293333pt;}
.xf_c00145{left:495.360000pt;}
.x116_c00145{left:499.973333pt;}
.x1f_c00145{left:501.506667pt;}
.xbc_c00145{left:505.346667pt;}
.x20_c00145{left:508.413333pt;}
.xf3_c00145{left:509.946667pt;}
.xae_c00145{left:512.253333pt;}
.xd4_c00145{left:514.560000pt;}
.x10_c00145{left:516.866667pt;}
.xd7_c00145{left:520.706667pt;}
.x54_c00145{left:522.240000pt;}
.xfd_c00145{left:523.773333pt;}
.xe5_c00145{left:526.853333pt;}
.x21_c00145{left:528.386667pt;}
.xb7_c00145{left:529.920000pt;}
.xbf_c00145{left:531.453333pt;}
.x2a_c00145{left:532.986667pt;}
.x55_c00145{left:534.533333pt;}
.x4b_c00145{left:536.826987pt;}
.x40_c00145{left:538.373333pt;}
.x11_c00145{left:540.666667pt;}
.xc5_c00145{left:542.213333pt;}
.x18_c00145{left:545.280000pt;}
.x74_c00145{left:547.586667pt;}
.xb8_c00145{left:549.120000pt;}
.xf4_c00145{left:550.653333pt;}
.x56_c00145{left:553.733333pt;}
.x12_c00145{left:556.800000pt;}
.xcf_c00145{left:559.866667pt;}
.x81_c00145{left:562.173333pt;}
.x7a_c00145{left:564.480000pt;}
.x102_c00145{left:566.786667pt;}
.x75_c00145{left:570.626667pt;}
.x10d_c00145{left:572.160000pt;}
.xaa_c00145{left:574.466667pt;}
.x41_c00145{left:576.000000pt;}
.x8c_c00145{left:579.066667pt;}
.x13_c00145{left:580.613333pt;}
.x22_c00145{left:582.146667pt;}
.x98_c00145{left:589.826667pt;}
.x76_c00145{left:592.133333pt;}
.xa1_c00145{left:593.666667pt;}
.x5c_c00145{left:595.973333pt;}
.xcb_c00145{left:598.266667pt;}
.x7b_c00145{left:600.573333pt;}
.xfe_c00145{left:602.106667pt;}
.x67_c00145{left:603.653333pt;}
.xd9_c00145{left:605.946667pt;}
.xa2_c00145{left:607.493333pt;}
.x8d_c00145{left:609.026667pt;}
.xaf_c00145{left:612.093333pt;}
.x109_c00145{left:614.400000pt;}
.xef_c00145{left:617.466667pt;}
.x62_c00145{left:622.080000pt;}
.x32_c00145{left:623.613333pt;}
.x2b_c00145{left:629.760000pt;}
.xe6_c00145{left:632.066667pt;}
.x117_c00145{left:634.373333pt;}
.x42_c00145{left:638.213333pt;}
.x3b_c00145{left:639.746667pt;}
.x10e_c00145{left:643.586667pt;}
.xc0_c00145{left:645.893333pt;}
.xf9_c00145{left:647.426667pt;}
.xcc_c00145{left:649.733333pt;}
.x99_c00145{left:652.026667pt;}
.x8e_c00145{left:653.573333pt;}
.x68_c00145{left:655.106667pt;}
.x43_c00145{left:657.413333pt;}
.xe7_c00145{left:659.706667pt;}
.x82_c00145{left:662.013333pt;}
.x33_c00145{left:664.320000pt;}
.xc1_c00145{left:665.853333pt;}
.xb0_c00145{left:667.386667pt;}
.xb9_c00145{left:670.466667pt;}
.xd5_c00145{left:672.000000pt;}
.xe1_c00145{left:673.533333pt;}
.x9a_c00145{left:677.373333pt;}
.xa3_c00145{left:678.906667pt;}
.x34_c00145{left:681.986667pt;}
.x63_c00145{left:684.293333pt;}
.x105_c00145{left:685.826667pt;}
.xed_c00145{left:688.133333pt;}
.x69_c00145{left:689.666667pt;}
.x112_c00145{left:691.973333pt;}
.xe2_c00145{left:693.506667pt;}
.xb1_c00145{left:698.106667pt;}
.x23_c00145{left:701.186667pt;}
.x7c_c00145{left:704.253333pt;}
.x2c_c00145{left:706.560000pt;}
.xda_c00145{left:709.626667pt;}
.x64_c00145{left:711.173333pt;}
.x8f_c00145{left:714.240000pt;}
.xa8_c00145{left:715.773333pt;}
.x44_c00145{left:717.306667pt;}
.x14_c00145{left:719.613333pt;}
.x24_c00145{left:721.920000pt;}
.x65_c00145{left:724.226667pt;}
.x77_c00145{left:727.293333pt;}
.xc9_c00145{left:729.600000pt;}
.xba_c00145{left:731.906667pt;}
.x15_c00145{left:733.440000pt;}
.xb2_c00145{left:734.973333pt;}
.x83_c00145{left:739.586667pt;}
.x7d_c00145{left:741.120000pt;}
.x3c_c00145{left:742.653333pt;}
.xe8_c00145{left:744.960000pt;}
.x16_c00145{left:746.493333pt;}
.x90_c00145{left:748.800000pt;}
.xab_c00145{left:752.640000pt;}
.xde_c00145{left:754.173333pt;}
.x35_c00145{left:756.480000pt;}
.x19_c00145{left:758.013333pt;}
.x10f_c00145{left:760.320000pt;}
.x113_c00145{left:761.853333pt;}
.x106_c00145{left:763.386667pt;}
.x6c_c00145{left:764.933333pt;}
.x7e_c00145{left:768.000000pt;}
.x91_c00145{left:771.840000pt;}
.x2d_c00145{left:774.906667pt;}
.x25_c00145{left:777.213333pt;}
.xa4_c00145{left:781.053333pt;}
.x9b_c00145{left:783.360000pt;}
.xbd_c00145{left:786.426667pt;}
.x10a_c00145{left:789.506667pt;}
.x9c_c00145{left:791.040000pt;}
.x110_c00145{left:792.573333pt;}
.x103_c00145{left:796.413333pt;}
.xea_c00145{left:800.253333pt;}
.x3d_c00145{left:802.560000pt;}
.x92_c00145{left:805.626667pt;}
.xac_c00145{left:807.173333pt;}
.xfa_c00145{left:808.706667pt;}
.xf5_c00145{left:810.240000pt;}
.xee_c00145{left:814.080000pt;}
.xeb_c00145{left:833.280000pt;}
.x3e_c00145{left:851.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce0f9ff5e40bee5c6900ce8d.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m135_c00146{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m13f_c00146{transform:matrix(0.078225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078225,0.000000,0.000000,0.250000,0,0);}
.m15c_c00146{transform:matrix(0.088775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088775,0.000000,0.000000,0.250000,0,0);}
.m142_c00146{transform:matrix(0.089225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089225,0.000000,0.000000,0.250000,0,0);}
.m7c_c00146{transform:matrix(0.104750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104750,0.000000,0.000000,0.250000,0,0);}
.m15d_c00146{transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);}
.m13c_c00146{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.m14d_c00146{transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);}
.m60_c00146{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m68_c00146{transform:matrix(0.111350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111350,0.000000,0.000000,0.250000,0,0);}
.m143_c00146{transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);}
.m65_c00146{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);}
.m13_c00146{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.m19_c00146{transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);}
.m139_c00146{transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);}
.m4d_c00146{transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);}
.m66_c00146{transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);}
.m62_c00146{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m14a_c00146{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);}
.m79_c00146{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.m145_c00146{transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);}
.m42_c00146{transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);}
.m9e_c00146{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.m13e_c00146{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m8a_c00146{transform:matrix(0.139125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139125,0.000000,0.000000,0.250000,0,0);}
.m16e_c00146{transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);}
.m18_c00146{transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);}
.m2a_c00146{transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);}
.m168_c00146{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m16b_c00146{transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);}
.m86_c00146{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);}
.m1b_c00146{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00146{transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);}
.m2b_c00146{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);}
.m13a_c00146{transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);}
.m137_c00146{transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);}
.m144_c00146{transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);}
.me1_c00146{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.md7_c00146{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.m3_c00146{transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);}
.m4e_c00146{transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);}
.m138_c00146{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.m94_c00146{transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);}
.m14f_c00146{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);}
.mc8_c00146{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);}
.m14b_c00146{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m136_c00146{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.m10f_c00146{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);}
.m49_c00146{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m153_c00146{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m165_c00146{transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);}
.m129_c00146{transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);}
.m12c_c00146{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m102_c00146{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.mee_c00146{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);}
.m151_c00146{transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);}
.m6c_c00146{transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);}
.mc3_c00146{transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);}
.m95_c00146{transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);}
.m161_c00146{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);}
.mc7_c00146{transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);}
.m4b_c00146{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.md4_c00146{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);}
.m167_c00146{transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);}
.m6a_c00146{transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);}
.m169_c00146{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);}
.m163_c00146{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.m67_c00146{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.m10_c00146{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);}
.m14_c00146{transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);}
.m29_c00146{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m105_c00146{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m112_c00146{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);}
.m16d_c00146{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m3d_c00146{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);}
.m89_c00146{transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);}
.mc9_c00146{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.mcf_c00146{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.mfe_c00146{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00146{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.m15e_c00146{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m15a_c00146{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m52_c00146{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.mcd_c00146{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.m9c_c00146{transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);}
.m14c_c00146{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m61_c00146{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.m160_c00146{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);}
.m6b_c00146{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m8b_c00146{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m119_c00146{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m150_c00146{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);}
.m98_c00146{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m11b_c00146{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.ma9_c00146{transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);}
.mc1_c00146{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);}
.m140_c00146{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.m88_c00146{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);}
.m87_c00146{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);}
.ma8_c00146{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.mde_c00146{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);}
.m7e_c00146{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);}
.m164_c00146{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);}
.md5_c00146{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m157_c00146{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);}
.mdf_c00146{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00146{transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);}
.mce_c00146{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);}
.m12d_c00146{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m82_c00146{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);}
.m13d_c00146{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.md0_c00146{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.mf8_c00146{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m116_c00146{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m4a_c00146{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m11c_c00146{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);}
.md1_c00146{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m100_c00146{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);}
.m147_c00146{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);}
.md2_c00146{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);}
.m101_c00146{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);}
.m152_c00146{transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);}
.m6d_c00146{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);}
.m111_c00146{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.m10e_c00146{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);}
.m37_c00146{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);}
.m3c_c00146{transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);}
.m108_c00146{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.mab_c00146{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00146{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);}
.m64_c00146{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);}
.mf1_c00146{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);}
.m16a_c00146{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);}
.mc2_c00146{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.mf_c00146{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);}
.md_c00146{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);}
.m2c_c00146{transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);}
.m103_c00146{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m141_c00146{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);}
.m69_c00146{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.mf6_c00146{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.m3b_c00146{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.m80_c00146{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);}
.m16f_c00146{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.m122_c00146{transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);}
.m11f_c00146{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);}
.mdd_c00146{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);}
.m73_c00146{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00146{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m10d_c00146{transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);}
.mf4_c00146{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.mba_c00146{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);}
.m5f_c00146{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m81_c00146{transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);}
.m115_c00146{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.mdc_c00146{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.maa_c00146{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);}
.m58_c00146{transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);}
.m154_c00146{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m8c_c00146{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m9b_c00146{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m15f_c00146{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m10b_c00146{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m12f_c00146{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m166_c00146{transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);}
.m118_c00146{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);}
.m34_c00146{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.meb_c00146{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);}
.m14e_c00146{transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);}
.ma0_c00146{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);}
.med_c00146{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.m46_c00146{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.m33_c00146{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);}
.m47_c00146{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m11d_c00146{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);}
.mb5_c00146{transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);}
.mda_c00146{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);}
.m104_c00146{transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);}
.m5a_c00146{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);}
.m158_c00146{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);}
.me2_c00146{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);}
.m110_c00146{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);}
.mef_c00146{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);}
.m93_c00146{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.mf5_c00146{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);}
.m124_c00146{transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);}
.mac_c00146{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m6f_c00146{transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);}
.ma4_c00146{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.mca_c00146{transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);}
.mb8_c00146{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.me7_c00146{transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);}
.mb_c00146{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.m3a_c00146{transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);}
.mec_c00146{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);}
.mb6_c00146{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m27_c00146{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.m57_c00146{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m21_c00146{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m96_c00146{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);}
.m133_c00146{transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);}
.mbc_c00146{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.ma7_c00146{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);}
.mae_c00146{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m107_c00146{transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);}
.m106_c00146{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);}
.me9_c00146{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m8f_c00146{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.me5_c00146{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.m13b_c00146{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.mb7_c00146{transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);}
.mc5_c00146{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.m128_c00146{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);}
.me6_c00146{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m121_c00146{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);}
.m8e_c00146{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);}
.mc0_c00146{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);}
.m40_c00146{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);}
.m170_c00146{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);}
.maf_c00146{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);}
.mc6_c00146{transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);}
.me4_c00146{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);}
.m85_c00146{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);}
.m3f_c00146{transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);}
.m156_c00146{transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);}
.m83_c00146{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m12_c00146{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);}
.m11e_c00146{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);}
.mfa_c00146{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.mf2_c00146{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.md6_c00146{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);}
.m117_c00146{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.m2_c00146{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);}
.ma6_c00146{transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);}
.m127_c00146{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);}
.m56_c00146{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);}
.m12e_c00146{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m59_c00146{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);}
.m131_c00146{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.m84_c00146{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m114_c00146{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00146{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);}
.m7d_c00146{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);}
.mbb_c00146{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m2f_c00146{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);}
.m6e_c00146{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m54_c00146{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);}
.m155_c00146{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);}
.m5c_c00146{transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);}
.mad_c00146{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);}
.mf9_c00146{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.me0_c00146{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);}
.m99_c00146{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);}
.m125_c00146{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.md3_c00146{transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);}
.m7b_c00146{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);}
.m15_c00146{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.md9_c00146{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);}
.mc4_c00146{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m162_c00146{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);}
.m48_c00146{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);}
.m50_c00146{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m35_c00146{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);}
.m26_c00146{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);}
.m51_c00146{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);}
.m55_c00146{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);}
.m1c_c00146{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c00146{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m38_c00146{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c00146{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);}
.m28_c00146{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m53_c00146{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);}
.m5e_c00146{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);}
.m1_c00146{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00146{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);}
.m23_c00146{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m92_c00146{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m41_c00146{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);}
.m4f_c00146{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00146{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);}
.m97_c00146{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);}
.ma5_c00146{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00146{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00146{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);}
.m9d_c00146{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00146{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m43_c00146{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);}
.m0_c00146{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m31_c00146{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c00146{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00146{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32_c00146{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00146{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m70_c00146{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m120_c00146{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00146{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);}
.m71_c00146{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00146{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00146{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00146{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m74_c00146{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);}
.m20_c00146{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);}
.md8_c00146{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m44_c00146{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m25_c00146{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);}
.m45_c00146{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mff_c00146{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00146{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00146{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m8_c00146{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00146{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);}
.me8_c00146{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00146{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00146{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00146{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00146{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);}
.m76_c00146{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5_c00146{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m123_c00146{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c00146{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m90_c00146{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00146{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00146{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m146_c00146{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);}
.mbe_c00146{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m6_c00146{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);}
.m130_c00146{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m30_c00146{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m126_c00146{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);}
.ma3_c00146{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00146{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00146{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00146{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00146{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m39_c00146{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m36_c00146{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);}
.m75_c00146{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00146{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m72_c00146{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00146{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m113_c00146{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m12a_c00146{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m149_c00146{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);}
.mb2_c00146{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);}
.me3_c00146{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m91_c00146{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00146{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m159_c00146{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00146{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m132_c00146{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m15b_c00146{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m17_c00146{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m63_c00146{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m16c_c00146{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mea_c00146{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00146{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);}
.mf3_c00146{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00146{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m78_c00146{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00146{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);}
.m5b_c00146{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m148_c00146{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.mc_c00146{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m134_c00146{transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);}
.m109_c00146{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.me_c00146{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m77_c00146{transform:matrix(1.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.820000,0.000000,0.000000,0.250000,0,0);}
.m22_c00146{transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);}
.m24_c00146{transform:matrix(3.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.700000,0.000000,0.000000,0.250000,0,0);}
.v0_c00146{vertical-align:0.000000px;}
.v1_c00146{vertical-align:3.420000px;}
.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:-21.020160px;}
.ws1_c00146{word-spacing:0.000000px;}
.fc0_c00146{color:transparent;}
.fs1a_c00146{font-size:3.456000px;}
.fs15_c00146{font-size:6.000000px;}
.fs20_c00146{font-size:6.900000px;}
.fsb_c00146{font-size:10.380000px;}
.fs14_c00146{font-size:13.800000px;}
.fsa_c00146{font-size:17.280000px;}
.fs24_c00146{font-size:20.760000px;}
.fs22_c00146{font-size:24.180000px;}
.fs1_c00146{font-size:27.660000px;}
.fs6_c00146{font-size:31.080000px;}
.fs23_c00146{font-size:34.560000px;}
.fs21_c00146{font-size:38.040000px;}
.fs1f_c00146{font-size:41.460000px;}
.fs16_c00146{font-size:44.940000px;}
.fs17_c00146{font-size:48.360000px;}
.fs18_c00146{font-size:51.840000px;}
.fs19_c00146{font-size:55.320000px;}
.fs13_c00146{font-size:58.740000px;}
.fs5_c00146{font-size:62.220000px;}
.fs4_c00146{font-size:65.640000px;}
.fs7_c00146{font-size:69.120000px;}
.fs2_c00146{font-size:72.600000px;}
.fs3_c00146{font-size:76.020000px;}
.fs0_c00146{font-size:79.500000px;}
.fs1e_c00146{font-size:82.920000px;}
.fs9_c00146{font-size:86.400000px;}
.fsd_c00146{font-size:89.880000px;}
.fs8_c00146{font-size:93.300000px;}
.fs1b_c00146{font-size:96.780000px;}
.fse_c00146{font-size:100.200000px;}
.fs10_c00146{font-size:103.680000px;}
.fs1c_c00146{font-size:107.160000px;}
.fs25_c00146{font-size:110.580000px;}
.fs26_c00146{font-size:114.060000px;}
.fs1d_c00146{font-size:117.480000px;}
.fs11_c00146{font-size:127.860000px;}
.fs12_c00146{font-size:134.760000px;}
.fsc_c00146{font-size:141.720000px;}
.fsf_c00146{font-size:155.520000px;}
.y0_c00146{bottom:0.000000px;}
.y17f_c00146{bottom:221.190000px;}
.y179_c00146{bottom:228.090000px;}
.y181_c00146{bottom:229.830000px;}
.y17e_c00146{bottom:230.685000px;}
.y17b_c00146{bottom:234.150000px;}
.y180_c00146{bottom:235.005000px;}
.y17d_c00146{bottom:236.730000px;}
.y17c_c00146{bottom:237.600000px;}
.y177_c00146{bottom:238.470000px;}
.y178_c00146{bottom:239.325000px;}
.y17a_c00146{bottom:240.195000px;}
.y175_c00146{bottom:252.285000px;}
.y174_c00146{bottom:254.010000px;}
.y176_c00146{bottom:255.750000px;}
.y173_c00146{bottom:256.605000px;}
.y170_c00146{bottom:259.200000px;}
.y171_c00146{bottom:260.070000px;}
.y172_c00146{bottom:263.520000px;}
.y16e_c00146{bottom:279.075000px;}
.y168_c00146{bottom:279.930000px;}
.y167_c00146{bottom:280.800000px;}
.y16a_c00146{bottom:281.670000px;}
.y169_c00146{bottom:284.250000px;}
.y16f_c00146{bottom:285.990000px;}
.y16b_c00146{bottom:286.845000px;}
.y16d_c00146{bottom:287.715000px;}
.y16c_c00146{bottom:288.570000px;}
.y165_c00146{bottom:304.995000px;}
.y163_c00146{bottom:305.850000px;}
.y161_c00146{bottom:307.590000px;}
.y160_c00146{bottom:309.315000px;}
.y164_c00146{bottom:310.170000px;}
.y162_c00146{bottom:311.040000px;}
.y15f_c00146{bottom:317.955000px;}
.y166_c00146{bottom:325.725000px;}
.y15c_c00146{bottom:330.045000px;}
.y15b_c00146{bottom:330.915000px;}
.y15a_c00146{bottom:334.365000px;}
.y15e_c00146{bottom:335.235000px;}
.y15d_c00146{bottom:336.090000px;}
.y158_c00146{bottom:337.830000px;}
.y159_c00146{bottom:341.280000px;}
.y156_c00146{bottom:351.645000px;}
.y154_c00146{bottom:352.515000px;}
.y155_c00146{bottom:354.240000px;}
.y153_c00146{bottom:355.965000px;}
.y152_c00146{bottom:358.560000px;}
.y151_c00146{bottom:359.430000px;}
.y157_c00146{bottom:360.285000px;}
.y14f_c00146{bottom:361.155000px;}
.y150_c00146{bottom:367.200000px;}
.y14c_c00146{bottom:381.030000px;}
.y14a_c00146{bottom:383.610000px;}
.y14b_c00146{bottom:384.480000px;}
.y14d_c00146{bottom:386.205000px;}
.y14e_c00146{bottom:388.800000px;}
.y149_c00146{bottom:405.210000px;}
.y148_c00146{bottom:406.950000px;}
.y146_c00146{bottom:408.675000px;}
.y145_c00146{bottom:409.530000px;}
.y147_c00146{bottom:410.400000px;}
.y143_c00146{bottom:411.270000px;}
.y13f_c00146{bottom:412.125000px;}
.y141_c00146{bottom:412.995000px;}
.y144_c00146{bottom:414.720000px;}
.y142_c00146{bottom:415.590000px;}
.y140_c00146{bottom:419.910000px;}
.y13d_c00146{bottom:438.045000px;}
.y13a_c00146{bottom:438.915000px;}
.y13e_c00146{bottom:442.365000px;}
.y13c_c00146{bottom:446.685000px;}
.y13b_c00146{bottom:450.150000px;}
.y133_c00146{bottom:458.790000px;}
.y138_c00146{bottom:460.515000px;}
.y12f_c00146{bottom:461.370000px;}
.y136_c00146{bottom:462.240000px;}
.y137_c00146{bottom:463.110000px;}
.y130_c00146{bottom:463.965000px;}
.y134_c00146{bottom:464.835000px;}
.y135_c00146{bottom:465.690000px;}
.y132_c00146{bottom:466.560000px;}
.y131_c00146{bottom:467.430000px;}
.y139_c00146{bottom:468.285000px;}
.y12e_c00146{bottom:469.155000px;}
.y12d_c00146{bottom:484.710000px;}
.y129_c00146{bottom:485.565000px;}
.y128_c00146{bottom:486.435000px;}
.y12c_c00146{bottom:488.160000px;}
.y127_c00146{bottom:489.030000px;}
.y12b_c00146{bottom:490.755000px;}
.y12a_c00146{bottom:491.610000px;}
.y125_c00146{bottom:506.310000px;}
.y124_c00146{bottom:507.165000px;}
.y122_c00146{bottom:508.035000px;}
.y11d_c00146{bottom:509.760000px;}
.y126_c00146{bottom:510.630000px;}
.y11f_c00146{bottom:511.485000px;}
.y123_c00146{bottom:514.080000px;}
.y121_c00146{bottom:514.950000px;}
.y120_c00146{bottom:515.805000px;}
.y11e_c00146{bottom:516.675000px;}
.y11c_c00146{bottom:519.270000px;}
.y11b_c00146{bottom:531.360000px;}
.y11a_c00146{bottom:532.230000px;}
.y119_c00146{bottom:533.085000px;}
.y115_c00146{bottom:535.680000px;}
.y113_c00146{bottom:539.130000px;}
.y118_c00146{bottom:540.870000px;}
.y117_c00146{bottom:541.725000px;}
.y116_c00146{bottom:542.595000px;}
.y114_c00146{bottom:555.555000px;}
.y10f_c00146{bottom:559.005000px;}
.y110_c00146{bottom:560.730000px;}
.y112_c00146{bottom:562.470000px;}
.y10e_c00146{bottom:563.325000px;}
.y111_c00146{bottom:564.195000px;}
.y10c_c00146{bottom:565.920000px;}
.y109_c00146{bottom:566.790000px;}
.y10d_c00146{bottom:567.645000px;}
.y10b_c00146{bottom:568.515000px;}
.y10a_c00146{bottom:571.965000px;}
.y108_c00146{bottom:577.155000px;}
.y107_c00146{bottom:580.605000px;}
.y106_c00146{bottom:581.475000px;}
.y105_c00146{bottom:584.070000px;}
.yff_c00146{bottom:585.795000px;}
.y103_c00146{bottom:587.520000px;}
.yfe_c00146{bottom:590.115000px;}
.y104_c00146{bottom:590.970000px;}
.y100_c00146{bottom:591.840000px;}
.y102_c00146{bottom:592.710000px;}
.y101_c00146{bottom:593.565000px;}
.yfc_c00146{bottom:609.990000px;}
.yfb_c00146{bottom:610.845000px;}
.yfa_c00146{bottom:612.570000px;}
.yf7_c00146{bottom:613.440000px;}
.yfd_c00146{bottom:614.310000px;}
.yf8_c00146{bottom:616.890000px;}
.yf9_c00146{bottom:617.760000px;}
.yf5_c00146{bottom:631.590000px;}
.yf4_c00146{bottom:632.445000px;}
.yf1_c00146{bottom:635.040000px;}
.yef_c00146{bottom:639.360000px;}
.yf0_c00146{bottom:640.230000px;}
.yf3_c00146{bottom:641.955000px;}
.yf2_c00146{bottom:642.810000px;}
.yf6_c00146{bottom:651.450000px;}
.yea_c00146{bottom:658.365000px;}
.yed_c00146{bottom:660.090000px;}
.ye9_c00146{bottom:660.960000px;}
.yee_c00146{bottom:661.830000px;}
.ye8_c00146{bottom:664.410000px;}
.yec_c00146{bottom:665.280000px;}
.yeb_c00146{bottom:666.150000px;}
.ye6_c00146{bottom:667.005000px;}
.ye7_c00146{bottom:667.875000px;}
.ye5_c00146{bottom:669.600000px;}
.ye1_c00146{bottom:684.285000px;}
.ye2_c00146{bottom:686.010000px;}
.yde_c00146{bottom:686.880000px;}
.ye3_c00146{bottom:689.475000px;}
.ydc_c00146{bottom:690.330000px;}
.ydd_c00146{bottom:691.200000px;}
.ye0_c00146{bottom:692.070000px;}
.ydf_c00146{bottom:692.925000px;}
.ye4_c00146{bottom:699.840000px;}
.ydb_c00146{bottom:706.755000px;}
.yda_c00146{bottom:707.610000px;}
.yd7_c00146{bottom:709.350000px;}
.yd5_c00146{bottom:710.205000px;}
.yd4_c00146{bottom:713.670000px;}
.yd9_c00146{bottom:714.525000px;}
.yd8_c00146{bottom:715.395000px;}
.yd6_c00146{bottom:716.250000px;}
.yd3_c00146{bottom:718.845000px;}
.yd0_c00146{bottom:730.950000px;}
.ycd_c00146{bottom:732.675000px;}
.yce_c00146{bottom:735.270000px;}
.yca_c00146{bottom:736.125000px;}
.yd2_c00146{bottom:737.850000px;}
.yd1_c00146{bottom:738.720000px;}
.ycf_c00146{bottom:739.590000px;}
.ycb_c00146{bottom:740.445000px;}
.ycc_c00146{bottom:741.315000px;}
.yc7_c00146{bottom:756.000000px;}
.yc6_c00146{bottom:756.870000px;}
.yc5_c00146{bottom:757.725000px;}
.yc3_c00146{bottom:758.595000px;}
.yc2_c00146{bottom:759.450000px;}
.yc9_c00146{bottom:761.190000px;}
.yc4_c00146{bottom:762.045000px;}
.yc8_c00146{bottom:763.770000px;}
.yc1_c00146{bottom:781.920000px;}
.ybd_c00146{bottom:782.790000px;}
.ybe_c00146{bottom:783.645000px;}
.ybf_c00146{bottom:784.515000px;}
.yc0_c00146{bottom:789.690000px;}
.yb7_c00146{bottom:805.245000px;}
.ybb_c00146{bottom:806.115000px;}
.yb8_c00146{bottom:806.970000px;}
.yb4_c00146{bottom:807.840000px;}
.yba_c00146{bottom:809.565000px;}
.ybc_c00146{bottom:810.435000px;}
.yb9_c00146{bottom:811.290000px;}
.yb6_c00146{bottom:812.160000px;}
.yb5_c00146{bottom:813.885000px;}
.yb3_c00146{bottom:814.755000px;}
.yb0_c00146{bottom:831.165000px;}
.yad_c00146{bottom:832.035000px;}
.yac_c00146{bottom:832.890000px;}
.yb1_c00146{bottom:837.210000px;}
.yb2_c00146{bottom:838.080000px;}
.yaf_c00146{bottom:838.950000px;}
.yae_c00146{bottom:839.805000px;}
.yab_c00146{bottom:852.765000px;}
.yaa_c00146{bottom:856.230000px;}
.ya5_c00146{bottom:857.085000px;}
.ya4_c00146{bottom:857.955000px;}
.ya3_c00146{bottom:859.680000px;}
.ya7_c00146{bottom:860.550000px;}
.ya2_c00146{bottom:862.275000px;}
.ya9_c00146{bottom:863.130000px;}
.ya8_c00146{bottom:864.000000px;}
.ya6_c00146{bottom:864.870000px;}
.ya1_c00146{bottom:881.280000px;}
.y9f_c00146{bottom:882.150000px;}
.y9d_c00146{bottom:883.005000px;}
.ya0_c00146{bottom:885.600000px;}
.y9e_c00146{bottom:889.920000px;}
.y97_c00146{bottom:907.200000px;}
.y96_c00146{bottom:908.070000px;}
.y95_c00146{bottom:908.925000px;}
.y99_c00146{bottom:911.520000px;}
.y9c_c00146{bottom:912.390000px;}
.y9b_c00146{bottom:913.245000px;}
.y9a_c00146{bottom:914.115000px;}
.y98_c00146{bottom:914.970000px;}
.y94_c00146{bottom:931.395000px;}
.y92_c00146{bottom:932.250000px;}
.y93_c00146{bottom:933.120000px;}
.y90_c00146{bottom:957.315000px;}
.y8e_c00146{bottom:958.170000px;}
.y8b_c00146{bottom:959.040000px;}
.y8d_c00146{bottom:960.765000px;}
.y91_c00146{bottom:963.360000px;}
.y8f_c00146{bottom:964.230000px;}
.y8c_c00146{bottom:965.085000px;}
.y8a_c00146{bottom:965.955000px;}
.y88_c00146{bottom:971.130000px;}
.y89_c00146{bottom:979.770000px;}
.y86_c00146{bottom:982.365000px;}
.y85_c00146{bottom:983.235000px;}
.y83_c00146{bottom:985.830000px;}
.y84_c00146{bottom:988.410000px;}
.y87_c00146{bottom:989.280000px;}
.y82_c00146{bottom:1004.835000px;}
.y7d_c00146{bottom:1006.560000px;}
.y80_c00146{bottom:1007.430000px;}
.y7c_c00146{bottom:1009.155000px;}
.y7f_c00146{bottom:1011.750000px;}
.y81_c00146{bottom:1014.330000px;}
.y7e_c00146{bottom:1015.200000px;}
.y79_c00146{bottom:1033.350000px;}
.y7a_c00146{bottom:1036.800000px;}
.y7b_c00146{bottom:1039.395000px;}
.y78_c00146{bottom:1040.250000px;}
.y77_c00146{bottom:1041.120000px;}
.y74_c00146{bottom:1055.805000px;}
.y73_c00146{bottom:1056.675000px;}
.y71_c00146{bottom:1057.530000px;}
.y72_c00146{bottom:1058.400000px;}
.y76_c00146{bottom:1061.850000px;}
.y75_c00146{bottom:1064.445000px;}
.y70_c00146{bottom:1065.315000px;}
.y6f_c00146{bottom:1066.170000px;}
.y6e_c00146{bottom:1080.000000px;}
.y6c_c00146{bottom:1080.870000px;}
.y66_c00146{bottom:1083.450000px;}
.y65_c00146{bottom:1084.320000px;}
.y68_c00146{bottom:1085.190000px;}
.y6d_c00146{bottom:1086.045000px;}
.y6a_c00146{bottom:1087.770000px;}
.y6b_c00146{bottom:1088.640000px;}
.y69_c00146{bottom:1089.510000px;}
.y67_c00146{bottom:1090.365000px;}
.y5d_c00146{bottom:1091.235000px;}
.y64_c00146{bottom:1094.685000px;}
.y62_c00146{bottom:1096.410000px;}
.y5f_c00146{bottom:1098.150000px;}
.y60_c00146{bottom:1099.005000px;}
.y63_c00146{bottom:1099.875000px;}
.y61_c00146{bottom:1100.730000px;}
.y5e_c00146{bottom:1101.600000px;}
.y5b_c00146{bottom:1107.645000px;}
.y5a_c00146{bottom:1108.515000px;}
.y5c_c00146{bottom:1113.690000px;}
.y58_c00146{bottom:1114.560000px;}
.y59_c00146{bottom:1116.285000px;}
.y56_c00146{bottom:1130.970000px;}
.y55_c00146{bottom:1131.840000px;}
.y54_c00146{bottom:1133.565000px;}
.y57_c00146{bottom:1138.755000px;}
.y53_c00146{bottom:1140.480000px;}
.y51_c00146{bottom:1157.760000px;}
.y4d_c00146{bottom:1158.630000px;}
.y52_c00146{bottom:1159.485000px;}
.y4c_c00146{bottom:1160.355000px;}
.y4e_c00146{bottom:1162.080000px;}
.y50_c00146{bottom:1162.950000px;}
.y4f_c00146{bottom:1164.675000px;}
.y4b_c00146{bottom:1165.530000px;}
.y4a_c00146{bottom:1166.400000px;}
.y49_c00146{bottom:1174.170000px;}
.y47_c00146{bottom:1181.955000px;}
.y46_c00146{bottom:1182.810000px;}
.y42_c00146{bottom:1185.405000px;}
.y48_c00146{bottom:1186.275000px;}
.y44_c00146{bottom:1189.725000px;}
.y43_c00146{bottom:1190.595000px;}
.y45_c00146{bottom:1191.450000px;}
.y41_c00146{bottom:1207.005000px;}
.y3f_c00146{bottom:1208.730000px;}
.y3c_c00146{bottom:1212.195000px;}
.y3e_c00146{bottom:1213.920000px;}
.y40_c00146{bottom:1214.790000px;}
.y3d_c00146{bottom:1215.645000px;}
.y3b_c00146{bottom:1217.370000px;}
.y3a_c00146{bottom:1230.330000px;}
.y39_c00146{bottom:1232.070000px;}
.y38_c00146{bottom:1232.925000px;}
.y36_c00146{bottom:1234.650000px;}
.y35_c00146{bottom:1235.520000px;}
.y37_c00146{bottom:1239.840000px;}
.y31_c00146{bottom:1257.120000px;}
.y34_c00146{bottom:1258.845000px;}
.y32_c00146{bottom:1259.715000px;}
.y33_c00146{bottom:1260.570000px;}
.y2f_c00146{bottom:1261.440000px;}
.y2e_c00146{bottom:1264.035000px;}
.y30_c00146{bottom:1264.890000px;}
.y2d_c00146{bottom:1265.760000px;}
.y2a_c00146{bottom:1280.445000px;}
.y2c_c00146{bottom:1281.315000px;}
.y28_c00146{bottom:1283.040000px;}
.y26_c00146{bottom:1285.635000px;}
.y29_c00146{bottom:1289.085000px;}
.y27_c00146{bottom:1289.955000px;}
.y2b_c00146{bottom:1290.810000px;}
.y25_c00146{bottom:1294.275000px;}
.y22_c00146{bottom:1303.770000px;}
.y20_c00146{bottom:1306.365000px;}
.y23_c00146{bottom:1307.235000px;}
.y1f_c00146{bottom:1308.090000px;}
.y1e_c00146{bottom:1311.555000px;}
.y21_c00146{bottom:1314.150000px;}
.y24_c00146{bottom:1317.600000px;}
.y183_c00146{bottom:1324.515000px;}
.y1d_c00146{bottom:1325.370000px;}
.y17_c00146{bottom:1332.285000px;}
.y182_c00146{bottom:1333.155000px;}
.y18_c00146{bottom:1334.010000px;}
.y14_c00146{bottom:1336.605000px;}
.y19_c00146{bottom:1337.475000px;}
.y1a_c00146{bottom:1338.330000px;}
.y16_c00146{bottom:1339.200000px;}
.y15_c00146{bottom:1340.070000px;}
.y1c_c00146{bottom:1342.650000px;}
.y1b_c00146{bottom:1346.115000px;}
.y13_c00146{bottom:1348.710000px;}
.yd_c00146{bottom:1355.610000px;}
.ye_c00146{bottom:1356.480000px;}
.y10_c00146{bottom:1357.350000px;}
.y9_c00146{bottom:1359.930000px;}
.yf_c00146{bottom:1361.670000px;}
.ya_c00146{bottom:1363.395000px;}
.y11_c00146{bottom:1364.250000px;}
.yc_c00146{bottom:1365.120000px;}
.yb_c00146{bottom:1365.990000px;}
.y12_c00146{bottom:1373.760000px;}
.y1_c00146{bottom:1394.490000px;}
.y4_c00146{bottom:1395.360000px;}
.y3_c00146{bottom:1396.230000px;}
.y5_c00146{bottom:1397.085000px;}
.y6_c00146{bottom:1397.955000px;}
.y2_c00146{bottom:1402.275000px;}
.y7_c00146{bottom:1408.320000px;}
.y8_c00146{bottom:1410.915000px;}
.h1c_c00146{height:3.110063px;}
.h17_c00146{height:5.399414px;}
.h22_c00146{height:6.209326px;}
.hd_c00146{height:9.340986px;}
.h16_c00146{height:12.418652px;}
.hc_c00146{height:15.550313px;}
.h26_c00146{height:18.681973px;}
.h24_c00146{height:21.759639px;}
.h3_c00146{height:24.891299px;}
.h8_c00146{height:27.968965px;}
.h25_c00146{height:31.100625px;}
.h23_c00146{height:34.232285px;}
.h21_c00146{height:37.309951px;}
.h18_c00146{height:40.441611px;}
.h19_c00146{height:43.519277px;}
.h1a_c00146{height:46.650937px;}
.h1b_c00146{height:49.782598px;}
.h15_c00146{height:52.860264px;}
.h7_c00146{height:55.991924px;}
.h6_c00146{height:59.069590px;}
.h9_c00146{height:62.201250px;}
.h4_c00146{height:65.332910px;}
.h5_c00146{height:68.410576px;}
.h2_c00146{height:71.542236px;}
.h20_c00146{height:74.619902px;}
.hb_c00146{height:77.751563px;}
.hf_c00146{height:80.883223px;}
.ha_c00146{height:83.960889px;}
.h1d_c00146{height:87.092549px;}
.h10_c00146{height:90.170215px;}
.h12_c00146{height:93.301875px;}
.h1e_c00146{height:96.433535px;}
.h27_c00146{height:99.511201px;}
.h28_c00146{height:102.642861px;}
.h1f_c00146{height:105.720527px;}
.h13_c00146{height:115.061514px;}
.h14_c00146{height:121.270840px;}
.he_c00146{height:127.534160px;}
.h11_c00146{height:139.952812px;}
.h0_c00146{height:1517.190000px;}
.h1_c00146{height:1517.250000px;}
.w0_c00146{width:1090.365000px;}
.w1_c00146{width:1090.500000px;}
.x0_c00146{left:0.000000px;}
.x9d_c00146{left:154.650000px;}
.xfb_c00146{left:171.075000px;}
.xe5_c00146{left:176.250000px;}
.xe6_c00146{left:183.165000px;}
.xe7_c00146{left:194.400000px;}
.x56_c00146{left:198.720000px;}
.xe8_c00146{left:203.910000px;}
.xeb_c00146{left:207.360000px;}
.xc2_c00146{left:210.810000px;}
.xcd_c00146{left:212.550000px;}
.x9e_c00146{left:214.275000px;}
.xd5_c00146{left:216.000000px;}
.xe9_c00146{left:221.190000px;}
.xaf_c00146{left:225.510000px;}
.x104_c00146{left:228.960000px;}
.x6b_c00146{left:230.685000px;}
.x5d_c00146{left:232.410000px;}
.x4d_c00146{left:234.150000px;}
.xac_c00146{left:235.875000px;}
.xa3_c00146{left:237.600000px;}
.x27_c00146{left:239.325000px;}
.x96_c00146{left:242.790000px;}
.x4e_c00146{left:245.370000px;}
.x30_c00146{left:247.110000px;}
.x10_c00146{left:249.690000px;}
.x1_c00146{left:251.430000px;}
.x105_c00146{left:254.880000px;}
.xfe_c00146{left:257.475000px;}
.xfc_c00146{left:259.200000px;}
.xce_c00146{left:260.925000px;}
.x1d_c00146{left:266.115000px;}
.x5e_c00146{left:269.565000px;}
.x45_c00146{left:271.290000px;}
.x11_c00146{left:275.610000px;}
.xbd_c00146{left:278.205000px;}
.x5f_c00146{left:281.670000px;}
.x6c_c00146{left:283.395000px;}
.x100_c00146{left:285.120000px;}
.x3c_c00146{left:286.845000px;}
.x4f_c00146{left:289.440000px;}
.x107_c00146{left:292.035000px;}
.xa7_c00146{left:293.760000px;}
.x28_c00146{left:296.355000px;}
.x99_c00146{left:298.080000px;}
.xd6_c00146{left:304.995000px;}
.x31_c00146{left:306.720000px;}
.x3d_c00146{left:309.315000px;}
.x8b_c00146{left:317.085000px;}
.xcf_c00146{left:319.680000px;}
.xb0_c00146{left:321.405000px;}
.xde_c00146{left:324.000000px;}
.x72_c00146{left:326.595000px;}
.xba_c00146{left:328.320000px;}
.x12_c00146{left:331.770000px;}
.xdc_c00146{left:333.510000px;}
.x32_c00146{left:335.235000px;}
.x9f_c00146{left:337.830000px;}
.x60_c00146{left:342.150000px;}
.x33_c00146{left:343.875000px;}
.x50_c00146{left:347.325000px;}
.x29_c00146{left:349.920000px;}
.x13_c00146{left:352.515000px;}
.x1e_c00146{left:355.110000px;}
.x2_c00146{left:356.835000px;}
.x8c_c00146{left:361.155000px;}
.x3e_c00146{left:362.880000px;}
.xd0_c00146{left:365.475000px;}
.xad_c00146{left:368.070000px;}
.xd7_c00146{left:372.390000px;}
.x34_c00146{left:376.710000px;}
.xe3_c00146{left:378.435000px;}
.xf1_c00146{left:381.885000px;}
.xff_c00146{left:383.610000px;}
.x14_c00146{left:385.350000px;}
.x57_c00146{left:387.075000px;}
.x91_c00146{left:388.800000px;}
.x80_c00146{left:390.525000px;}
.xbb_c00146{left:393.120000px;}
.x46_c00146{left:399.165000px;}
.x9a_c00146{left:404.355000px;}
.x79_c00146{left:406.080000px;}
.x3_c00146{left:410.400000px;}
.xf2_c00146{left:413.850000px;}
.x1f_c00146{left:415.590000px;}
.x6d_c00146{left:418.170000px;}
.x51_c00146{left:421.635000px;}
.x73_c00146{left:424.230000px;}
.x8d_c00146{left:427.680000px;}
.x81_c00146{left:430.275000px;}
.x7a_c00146{left:432.000000px;}
.x15_c00146{left:433.725000px;}
.xb1_c00146{left:436.320000px;}
.x82_c00146{left:440.640000px;}
.xc8_c00146{left:442.365000px;}
.x35_c00146{left:444.090000px;}
.xee_c00146{left:449.280000px;}
.xa4_c00146{left:451.005000px;}
.x4_c00146{left:454.470000px;}
.x106_c00146{left:456.195000px;}
.x9b_c00146{left:458.790000px;}
.x58_c00146{left:462.240000px;}
.xa8_c00146{left:465.690000px;}
.xa0_c00146{left:468.285000px;}
.x61_c00146{left:471.750000px;}
.xbe_c00146{left:474.330000px;}
.x52_c00146{left:476.925000px;}
.x9c_c00146{left:481.245000px;}
.x47_c00146{left:482.970000px;}
.x2a_c00146{left:486.435000px;}
.xec_c00146{left:488.160000px;}
.x6e_c00146{left:490.755000px;}
.xef_c00146{left:493.350000px;}
.x74_c00146{left:495.930000px;}
.x5_c00146{left:498.525000px;}
.x62_c00146{left:501.120000px;}
.x59_c00146{left:502.845000px;}
.x109_c00146{left:504.570000px;}
.x16_c00146{left:508.890000px;}
.xd1_c00146{left:511.485000px;}
.x36_c00146{left:514.950000px;}
.xdd_c00146{left:517.530000px;}
.x3f_c00146{left:520.995000px;}
.xb2_c00146{left:526.170000px;}
.x20_c00146{left:527.910000px;}
.x48_c00146{left:529.635000px;}
.xdf_c00146{left:531.360000px;}
.x63_c00146{left:533.085000px;}
.x92_c00146{left:535.680000px;}
.xc9_c00146{left:538.275000px;}
.x7b_c00146{left:540.870000px;}
.x64_c00146{left:542.595000px;}
.x97_c00146{left:544.320000px;}
.x53_c00146{left:546.045000px;}
.x6_c00146{left:547.770000px;}
.xf7_c00146{left:551.235000px;}
.xbf_c00146{left:552.960000px;}
.x98_c00146{left:555.555000px;}
.x83_c00146{left:557.280000px;}
.x65_c00146{left:559.875000px;}
.xfd_c00146{left:561.600000px;}
.x2b_c00146{left:563.325000px;}
.xd2_c00146{left:565.920000px;}
.xd8_c00146{left:568.515000px;}
.x40_c00146{left:570.240000px;}
.xc4_c00146{left:572.835000px;}
.xb3_c00146{left:574.560000px;}
.xae_c00146{left:576.285000px;}
.xc0_c00146{left:578.880000px;}
.x7_c00146{left:582.330000px;}
.x75_c00146{left:584.070000px;}
.x66_c00146{left:587.520000px;}
.x17_c00146{left:589.245000px;}
.x10b_c00146{left:591.840000px;}
.xe0_c00146{left:593.565000px;}
.x21_c00146{left:595.290000px;}
.x8_c00146{left:597.885000px;}
.x10c_c00146{left:600.480000px;}
.x84_c00146{left:602.205000px;}
.xa1_c00146{left:605.670000px;}
.xb4_c00146{left:607.395000px;}
.x8e_c00146{left:610.845000px;}
.x9_c00146{left:612.570000px;}
.xa9_c00146{left:614.310000px;}
.x5a_c00146{left:616.035000px;}
.x54_c00146{left:619.485000px;}
.x93_c00146{left:621.210000px;}
.x10a_c00146{left:624.675000px;}
.x18_c00146{left:626.400000px;}
.x6f_c00146{left:628.125000px;}
.xb5_c00146{left:630.720000px;}
.xd9_c00146{left:632.445000px;}
.x19_c00146{left:635.040000px;}
.xa_c00146{left:636.765000px;}
.x76_c00146{left:639.360000px;}
.x41_c00146{left:641.955000px;}
.x22_c00146{left:644.550000px;}
.xe4_c00146{left:646.275000px;}
.xb6_c00146{left:651.450000px;}
.x67_c00146{left:654.045000px;}
.x85_c00146{left:655.770000px;}
.xb7_c00146{left:661.830000px;}
.x7c_c00146{left:664.410000px;}
.x49_c00146{left:669.600000px;}
.x86_c00146{left:671.325000px;}
.x42_c00146{left:673.050000px;}
.x102_c00146{left:674.790000px;}
.xa2_c00146{left:676.515000px;}
.x4a_c00146{left:680.835000px;}
.xf8_c00146{left:683.430000px;}
.xb_c00146{left:686.010000px;}
.xc5_c00146{left:687.750000px;}
.xf0_c00146{left:691.200000px;}
.x37_c00146{left:692.925000px;}
.xd3_c00146{left:694.650000px;}
.xaa_c00146{left:696.390000px;}
.x23_c00146{left:700.710000px;}
.x8f_c00146{left:702.435000px;}
.x2c_c00146{left:705.030000px;}
.xc_c00146{left:710.205000px;}
.xa5_c00146{left:712.800000px;}
.x24_c00146{left:714.525360px;}
.xda_c00146{left:716.250000px;}
.x5b_c00146{left:717.990000px;}
.x108_c00146{left:719.715000px;}
.x7d_c00146{left:721.440000px;}
.x87_c00146{left:725.760000px;}
.xca_c00146{left:730.080000px;}
.x88_c00146{left:731.805000px;}
.x70_c00146{left:733.530000px;}
.xf3_c00146{left:736.125000px;}
.xd_c00146{left:737.850000px;}
.xf9_c00146{left:739.590000px;}
.x43_c00146{left:743.910000px;}
.xc3_c00146{left:745.635000px;}
.xc6_c00146{left:747.360000px;}
.x68_c00146{left:749.085000px;}
.xcb_c00146{left:754.275000px;}
.xf4_c00146{left:756.000000px;}
.x4b_c00146{left:758.595000px;}
.xe_c00146{left:766.365000px;}
.xed_c00146{left:768.090000px;}
.x1a_c00146{left:770.685000px;}
.x25_c00146{left:772.411632px;}
.xd4_c00146{left:774.150000px;}
.x89_c00146{left:776.730000px;}
.xf5_c00146{left:778.470000px;}
.x7e_c00146{left:780.195000px;}
.xea_c00146{left:781.920000px;}
.x5c_c00146{left:783.645000px;}
.x44_c00146{left:786.240000px;}
.xab_c00146{left:787.965000px;}
.x2d_c00146{left:790.560000px;}
.xb8_c00146{left:794.010000px;}
.x77_c00146{left:795.750000px;}
.xf6_c00146{left:798.330000px;}
.x69_c00146{left:800.070000px;}
.x94_c00146{left:802.650000px;}
.x38_c00146{left:807.840000px;}
.x4c_c00146{left:811.290000px;}
.x103_c00146{left:813.030000px;}
.x95_c00146{left:815.610000px;}
.xc1_c00146{left:817.350000px;}
.xf_c00146{left:822.525000px;}
.x7f_c00146{left:824.250000px;}
.x26_c00146{left:826.845000px;}
.x55_c00146{left:829.440000px;}
.xc7_c00146{left:831.165000px;}
.x39_c00146{left:834.630000px;}
.xa6_c00146{left:836.355000px;}
.x78_c00146{left:838.950000px;}
.xbc_c00146{left:841.530000px;}
.xe1_c00146{left:844.125000px;}
.x90_c00146{left:846.720000px;}
.x3a_c00146{left:849.315000px;}
.x101_c00146{left:851.040000px;}
.xb9_c00146{left:853.635000px;}
.x1b_c00146{left:855.360000px;}
.x2e_c00146{left:857.085000px;}
.xfa_c00146{left:859.680000px;}
.x71_c00146{left:861.405000px;}
.x6a_c00146{left:865.725000px;}
.x3b_c00146{left:874.365000px;}
.x8a_c00146{left:877.830000px;}
.x2f_c00146{left:879.555000px;}
.xe2_c00146{left:883.875000px;}
.xdb_c00146{left:886.470000px;}
.x1c_c00146{left:890.790000px;}
.xcc_c00146{left:894.240000px;}
.x10d_c00146{left:981.510000px;}
.x10e_c00146{left:1002.240000px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.v1_c00146{vertical-align:3.040000pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws0_c00146{word-spacing:-18.684587pt;}
.ws1_c00146{word-spacing:0.000000pt;}
.fs1a_c00146{font-size:3.072000pt;}
.fs15_c00146{font-size:5.333333pt;}
.fs20_c00146{font-size:6.133333pt;}
.fsb_c00146{font-size:9.226667pt;}
.fs14_c00146{font-size:12.266667pt;}
.fsa_c00146{font-size:15.360000pt;}
.fs24_c00146{font-size:18.453333pt;}
.fs22_c00146{font-size:21.493333pt;}
.fs1_c00146{font-size:24.586667pt;}
.fs6_c00146{font-size:27.626667pt;}
.fs23_c00146{font-size:30.720000pt;}
.fs21_c00146{font-size:33.813333pt;}
.fs1f_c00146{font-size:36.853333pt;}
.fs16_c00146{font-size:39.946667pt;}
.fs17_c00146{font-size:42.986667pt;}
.fs18_c00146{font-size:46.080000pt;}
.fs19_c00146{font-size:49.173333pt;}
.fs13_c00146{font-size:52.213333pt;}
.fs5_c00146{font-size:55.306667pt;}
.fs4_c00146{font-size:58.346667pt;}
.fs7_c00146{font-size:61.440000pt;}
.fs2_c00146{font-size:64.533333pt;}
.fs3_c00146{font-size:67.573333pt;}
.fs0_c00146{font-size:70.666667pt;}
.fs1e_c00146{font-size:73.706667pt;}
.fs9_c00146{font-size:76.800000pt;}
.fsd_c00146{font-size:79.893333pt;}
.fs8_c00146{font-size:82.933333pt;}
.fs1b_c00146{font-size:86.026667pt;}
.fse_c00146{font-size:89.066667pt;}
.fs10_c00146{font-size:92.160000pt;}
.fs1c_c00146{font-size:95.253333pt;}
.fs25_c00146{font-size:98.293333pt;}
.fs26_c00146{font-size:101.386667pt;}
.fs1d_c00146{font-size:104.426667pt;}
.fs11_c00146{font-size:113.653333pt;}
.fs12_c00146{font-size:119.786667pt;}
.fsc_c00146{font-size:125.973333pt;}
.fsf_c00146{font-size:138.240000pt;}
.y0_c00146{bottom:0.000000pt;}
.y17f_c00146{bottom:196.613333pt;}
.y179_c00146{bottom:202.746667pt;}
.y181_c00146{bottom:204.293333pt;}
.y17e_c00146{bottom:205.053333pt;}
.y17b_c00146{bottom:208.133333pt;}
.y180_c00146{bottom:208.893333pt;}
.y17d_c00146{bottom:210.426667pt;}
.y17c_c00146{bottom:211.200000pt;}
.y177_c00146{bottom:211.973333pt;}
.y178_c00146{bottom:212.733333pt;}
.y17a_c00146{bottom:213.506667pt;}
.y175_c00146{bottom:224.253333pt;}
.y174_c00146{bottom:225.786667pt;}
.y176_c00146{bottom:227.333333pt;}
.y173_c00146{bottom:228.093333pt;}
.y170_c00146{bottom:230.400000pt;}
.y171_c00146{bottom:231.173333pt;}
.y172_c00146{bottom:234.240000pt;}
.y16e_c00146{bottom:248.066667pt;}
.y168_c00146{bottom:248.826667pt;}
.y167_c00146{bottom:249.600000pt;}
.y16a_c00146{bottom:250.373333pt;}
.y169_c00146{bottom:252.666667pt;}
.y16f_c00146{bottom:254.213333pt;}
.y16b_c00146{bottom:254.973333pt;}
.y16d_c00146{bottom:255.746667pt;}
.y16c_c00146{bottom:256.506667pt;}
.y165_c00146{bottom:271.106667pt;}
.y163_c00146{bottom:271.866667pt;}
.y161_c00146{bottom:273.413333pt;}
.y160_c00146{bottom:274.946667pt;}
.y164_c00146{bottom:275.706667pt;}
.y162_c00146{bottom:276.480000pt;}
.y15f_c00146{bottom:282.626667pt;}
.y166_c00146{bottom:289.533333pt;}
.y15c_c00146{bottom:293.373333pt;}
.y15b_c00146{bottom:294.146667pt;}
.y15a_c00146{bottom:297.213333pt;}
.y15e_c00146{bottom:297.986667pt;}
.y15d_c00146{bottom:298.746667pt;}
.y158_c00146{bottom:300.293333pt;}
.y159_c00146{bottom:303.360000pt;}
.y156_c00146{bottom:312.573333pt;}
.y154_c00146{bottom:313.346667pt;}
.y155_c00146{bottom:314.880000pt;}
.y153_c00146{bottom:316.413333pt;}
.y152_c00146{bottom:318.720000pt;}
.y151_c00146{bottom:319.493333pt;}
.y157_c00146{bottom:320.253333pt;}
.y14f_c00146{bottom:321.026667pt;}
.y150_c00146{bottom:326.400000pt;}
.y14c_c00146{bottom:338.693333pt;}
.y14a_c00146{bottom:340.986667pt;}
.y14b_c00146{bottom:341.760000pt;}
.y14d_c00146{bottom:343.293333pt;}
.y14e_c00146{bottom:345.600000pt;}
.y149_c00146{bottom:360.186667pt;}
.y148_c00146{bottom:361.733333pt;}
.y146_c00146{bottom:363.266667pt;}
.y145_c00146{bottom:364.026667pt;}
.y147_c00146{bottom:364.800000pt;}
.y143_c00146{bottom:365.573333pt;}
.y13f_c00146{bottom:366.333333pt;}
.y141_c00146{bottom:367.106667pt;}
.y144_c00146{bottom:368.640000pt;}
.y142_c00146{bottom:369.413333pt;}
.y140_c00146{bottom:373.253333pt;}
.y13d_c00146{bottom:389.373333pt;}
.y13a_c00146{bottom:390.146667pt;}
.y13e_c00146{bottom:393.213333pt;}
.y13c_c00146{bottom:397.053333pt;}
.y13b_c00146{bottom:400.133333pt;}
.y133_c00146{bottom:407.813333pt;}
.y138_c00146{bottom:409.346667pt;}
.y12f_c00146{bottom:410.106667pt;}
.y136_c00146{bottom:410.880000pt;}
.y137_c00146{bottom:411.653333pt;}
.y130_c00146{bottom:412.413333pt;}
.y134_c00146{bottom:413.186667pt;}
.y135_c00146{bottom:413.946667pt;}
.y132_c00146{bottom:414.720000pt;}
.y131_c00146{bottom:415.493333pt;}
.y139_c00146{bottom:416.253333pt;}
.y12e_c00146{bottom:417.026667pt;}
.y12d_c00146{bottom:430.853333pt;}
.y129_c00146{bottom:431.613333pt;}
.y128_c00146{bottom:432.386667pt;}
.y12c_c00146{bottom:433.920000pt;}
.y127_c00146{bottom:434.693333pt;}
.y12b_c00146{bottom:436.226667pt;}
.y12a_c00146{bottom:436.986667pt;}
.y125_c00146{bottom:450.053333pt;}
.y124_c00146{bottom:450.813333pt;}
.y122_c00146{bottom:451.586667pt;}
.y11d_c00146{bottom:453.120000pt;}
.y126_c00146{bottom:453.893333pt;}
.y11f_c00146{bottom:454.653333pt;}
.y123_c00146{bottom:456.960000pt;}
.y121_c00146{bottom:457.733333pt;}
.y120_c00146{bottom:458.493333pt;}
.y11e_c00146{bottom:459.266667pt;}
.y11c_c00146{bottom:461.573333pt;}
.y11b_c00146{bottom:472.320000pt;}
.y11a_c00146{bottom:473.093333pt;}
.y119_c00146{bottom:473.853333pt;}
.y115_c00146{bottom:476.160000pt;}
.y113_c00146{bottom:479.226667pt;}
.y118_c00146{bottom:480.773333pt;}
.y117_c00146{bottom:481.533333pt;}
.y116_c00146{bottom:482.306667pt;}
.y114_c00146{bottom:493.826667pt;}
.y10f_c00146{bottom:496.893333pt;}
.y110_c00146{bottom:498.426667pt;}
.y112_c00146{bottom:499.973333pt;}
.y10e_c00146{bottom:500.733333pt;}
.y111_c00146{bottom:501.506667pt;}
.y10c_c00146{bottom:503.040000pt;}
.y109_c00146{bottom:503.813333pt;}
.y10d_c00146{bottom:504.573333pt;}
.y10b_c00146{bottom:505.346667pt;}
.y10a_c00146{bottom:508.413333pt;}
.y108_c00146{bottom:513.026667pt;}
.y107_c00146{bottom:516.093333pt;}
.y106_c00146{bottom:516.866667pt;}
.y105_c00146{bottom:519.173333pt;}
.yff_c00146{bottom:520.706667pt;}
.y103_c00146{bottom:522.240000pt;}
.yfe_c00146{bottom:524.546667pt;}
.y104_c00146{bottom:525.306667pt;}
.y100_c00146{bottom:526.080000pt;}
.y102_c00146{bottom:526.853333pt;}
.y101_c00146{bottom:527.613333pt;}
.yfc_c00146{bottom:542.213333pt;}
.yfb_c00146{bottom:542.973333pt;}
.yfa_c00146{bottom:544.506667pt;}
.yf7_c00146{bottom:545.280000pt;}
.yfd_c00146{bottom:546.053333pt;}
.yf8_c00146{bottom:548.346667pt;}
.yf9_c00146{bottom:549.120000pt;}
.yf5_c00146{bottom:561.413333pt;}
.yf4_c00146{bottom:562.173333pt;}
.yf1_c00146{bottom:564.480000pt;}
.yef_c00146{bottom:568.320000pt;}
.yf0_c00146{bottom:569.093333pt;}
.yf3_c00146{bottom:570.626667pt;}
.yf2_c00146{bottom:571.386667pt;}
.yf6_c00146{bottom:579.066667pt;}
.yea_c00146{bottom:585.213333pt;}
.yed_c00146{bottom:586.746667pt;}
.ye9_c00146{bottom:587.520000pt;}
.yee_c00146{bottom:588.293333pt;}
.ye8_c00146{bottom:590.586667pt;}
.yec_c00146{bottom:591.360000pt;}
.yeb_c00146{bottom:592.133333pt;}
.ye6_c00146{bottom:592.893333pt;}
.ye7_c00146{bottom:593.666667pt;}
.ye5_c00146{bottom:595.200000pt;}
.ye1_c00146{bottom:608.253333pt;}
.ye2_c00146{bottom:609.786667pt;}
.yde_c00146{bottom:610.560000pt;}
.ye3_c00146{bottom:612.866667pt;}
.ydc_c00146{bottom:613.626667pt;}
.ydd_c00146{bottom:614.400000pt;}
.ye0_c00146{bottom:615.173333pt;}
.ydf_c00146{bottom:615.933333pt;}
.ye4_c00146{bottom:622.080000pt;}
.ydb_c00146{bottom:628.226667pt;}
.yda_c00146{bottom:628.986667pt;}
.yd7_c00146{bottom:630.533333pt;}
.yd5_c00146{bottom:631.293333pt;}
.yd4_c00146{bottom:634.373333pt;}
.yd9_c00146{bottom:635.133333pt;}
.yd8_c00146{bottom:635.906667pt;}
.yd6_c00146{bottom:636.666667pt;}
.yd3_c00146{bottom:638.973333pt;}
.yd0_c00146{bottom:649.733333pt;}
.ycd_c00146{bottom:651.266667pt;}
.yce_c00146{bottom:653.573333pt;}
.yca_c00146{bottom:654.333333pt;}
.yd2_c00146{bottom:655.866667pt;}
.yd1_c00146{bottom:656.640000pt;}
.ycf_c00146{bottom:657.413333pt;}
.ycb_c00146{bottom:658.173333pt;}
.ycc_c00146{bottom:658.946667pt;}
.yc7_c00146{bottom:672.000000pt;}
.yc6_c00146{bottom:672.773333pt;}
.yc5_c00146{bottom:673.533333pt;}
.yc3_c00146{bottom:674.306667pt;}
.yc2_c00146{bottom:675.066667pt;}
.yc9_c00146{bottom:676.613333pt;}
.yc4_c00146{bottom:677.373333pt;}
.yc8_c00146{bottom:678.906667pt;}
.yc1_c00146{bottom:695.040000pt;}
.ybd_c00146{bottom:695.813333pt;}
.ybe_c00146{bottom:696.573333pt;}
.ybf_c00146{bottom:697.346667pt;}
.yc0_c00146{bottom:701.946667pt;}
.yb7_c00146{bottom:715.773333pt;}
.ybb_c00146{bottom:716.546667pt;}
.yb8_c00146{bottom:717.306667pt;}
.yb4_c00146{bottom:718.080000pt;}
.yba_c00146{bottom:719.613333pt;}
.ybc_c00146{bottom:720.386667pt;}
.yb9_c00146{bottom:721.146667pt;}
.yb6_c00146{bottom:721.920000pt;}
.yb5_c00146{bottom:723.453333pt;}
.yb3_c00146{bottom:724.226667pt;}
.yb0_c00146{bottom:738.813333pt;}
.yad_c00146{bottom:739.586667pt;}
.yac_c00146{bottom:740.346667pt;}
.yb1_c00146{bottom:744.186667pt;}
.yb2_c00146{bottom:744.960000pt;}
.yaf_c00146{bottom:745.733333pt;}
.yae_c00146{bottom:746.493333pt;}
.yab_c00146{bottom:758.013333pt;}
.yaa_c00146{bottom:761.093333pt;}
.ya5_c00146{bottom:761.853333pt;}
.ya4_c00146{bottom:762.626667pt;}
.ya3_c00146{bottom:764.160000pt;}
.ya7_c00146{bottom:764.933333pt;}
.ya2_c00146{bottom:766.466667pt;}
.ya9_c00146{bottom:767.226667pt;}
.ya8_c00146{bottom:768.000000pt;}
.ya6_c00146{bottom:768.773333pt;}
.ya1_c00146{bottom:783.360000pt;}
.y9f_c00146{bottom:784.133333pt;}
.y9d_c00146{bottom:784.893333pt;}
.ya0_c00146{bottom:787.200000pt;}
.y9e_c00146{bottom:791.040000pt;}
.y97_c00146{bottom:806.400000pt;}
.y96_c00146{bottom:807.173333pt;}
.y95_c00146{bottom:807.933333pt;}
.y99_c00146{bottom:810.240000pt;}
.y9c_c00146{bottom:811.013333pt;}
.y9b_c00146{bottom:811.773333pt;}
.y9a_c00146{bottom:812.546667pt;}
.y98_c00146{bottom:813.306667pt;}
.y94_c00146{bottom:827.906667pt;}
.y92_c00146{bottom:828.666667pt;}
.y93_c00146{bottom:829.440000pt;}
.y90_c00146{bottom:850.946667pt;}
.y8e_c00146{bottom:851.706667pt;}
.y8b_c00146{bottom:852.480000pt;}
.y8d_c00146{bottom:854.013333pt;}
.y91_c00146{bottom:856.320000pt;}
.y8f_c00146{bottom:857.093333pt;}
.y8c_c00146{bottom:857.853333pt;}
.y8a_c00146{bottom:858.626667pt;}
.y88_c00146{bottom:863.226667pt;}
.y89_c00146{bottom:870.906667pt;}
.y86_c00146{bottom:873.213333pt;}
.y85_c00146{bottom:873.986667pt;}
.y83_c00146{bottom:876.293333pt;}
.y84_c00146{bottom:878.586667pt;}
.y87_c00146{bottom:879.360000pt;}
.y82_c00146{bottom:893.186667pt;}
.y7d_c00146{bottom:894.720000pt;}
.y80_c00146{bottom:895.493333pt;}
.y7c_c00146{bottom:897.026667pt;}
.y7f_c00146{bottom:899.333333pt;}
.y81_c00146{bottom:901.626667pt;}
.y7e_c00146{bottom:902.400000pt;}
.y79_c00146{bottom:918.533333pt;}
.y7a_c00146{bottom:921.600000pt;}
.y7b_c00146{bottom:923.906667pt;}
.y78_c00146{bottom:924.666667pt;}
.y77_c00146{bottom:925.440000pt;}
.y74_c00146{bottom:938.493333pt;}
.y73_c00146{bottom:939.266667pt;}
.y71_c00146{bottom:940.026667pt;}
.y72_c00146{bottom:940.800000pt;}
.y76_c00146{bottom:943.866667pt;}
.y75_c00146{bottom:946.173333pt;}
.y70_c00146{bottom:946.946667pt;}
.y6f_c00146{bottom:947.706667pt;}
.y6e_c00146{bottom:960.000000pt;}
.y6c_c00146{bottom:960.773333pt;}
.y66_c00146{bottom:963.066667pt;}
.y65_c00146{bottom:963.840000pt;}
.y68_c00146{bottom:964.613333pt;}
.y6d_c00146{bottom:965.373333pt;}
.y6a_c00146{bottom:966.906667pt;}
.y6b_c00146{bottom:967.680000pt;}
.y69_c00146{bottom:968.453333pt;}
.y67_c00146{bottom:969.213333pt;}
.y5d_c00146{bottom:969.986667pt;}
.y64_c00146{bottom:973.053333pt;}
.y62_c00146{bottom:974.586667pt;}
.y5f_c00146{bottom:976.133333pt;}
.y60_c00146{bottom:976.893333pt;}
.y63_c00146{bottom:977.666667pt;}
.y61_c00146{bottom:978.426667pt;}
.y5e_c00146{bottom:979.200000pt;}
.y5b_c00146{bottom:984.573333pt;}
.y5a_c00146{bottom:985.346667pt;}
.y5c_c00146{bottom:989.946667pt;}
.y58_c00146{bottom:990.720000pt;}
.y59_c00146{bottom:992.253333pt;}
.y56_c00146{bottom:1005.306667pt;}
.y55_c00146{bottom:1006.080000pt;}
.y54_c00146{bottom:1007.613333pt;}
.y57_c00146{bottom:1012.226667pt;}
.y53_c00146{bottom:1013.760000pt;}
.y51_c00146{bottom:1029.120000pt;}
.y4d_c00146{bottom:1029.893333pt;}
.y52_c00146{bottom:1030.653333pt;}
.y4c_c00146{bottom:1031.426667pt;}
.y4e_c00146{bottom:1032.960000pt;}
.y50_c00146{bottom:1033.733333pt;}
.y4f_c00146{bottom:1035.266667pt;}
.y4b_c00146{bottom:1036.026667pt;}
.y4a_c00146{bottom:1036.800000pt;}
.y49_c00146{bottom:1043.706667pt;}
.y47_c00146{bottom:1050.626667pt;}
.y46_c00146{bottom:1051.386667pt;}
.y42_c00146{bottom:1053.693333pt;}
.y48_c00146{bottom:1054.466667pt;}
.y44_c00146{bottom:1057.533333pt;}
.y43_c00146{bottom:1058.306667pt;}
.y45_c00146{bottom:1059.066667pt;}
.y41_c00146{bottom:1072.893333pt;}
.y3f_c00146{bottom:1074.426667pt;}
.y3c_c00146{bottom:1077.506667pt;}
.y3e_c00146{bottom:1079.040000pt;}
.y40_c00146{bottom:1079.813333pt;}
.y3d_c00146{bottom:1080.573333pt;}
.y3b_c00146{bottom:1082.106667pt;}
.y3a_c00146{bottom:1093.626667pt;}
.y39_c00146{bottom:1095.173333pt;}
.y38_c00146{bottom:1095.933333pt;}
.y36_c00146{bottom:1097.466667pt;}
.y35_c00146{bottom:1098.240000pt;}
.y37_c00146{bottom:1102.080000pt;}
.y31_c00146{bottom:1117.440000pt;}
.y34_c00146{bottom:1118.973333pt;}
.y32_c00146{bottom:1119.746667pt;}
.y33_c00146{bottom:1120.506667pt;}
.y2f_c00146{bottom:1121.280000pt;}
.y2e_c00146{bottom:1123.586667pt;}
.y30_c00146{bottom:1124.346667pt;}
.y2d_c00146{bottom:1125.120000pt;}
.y2a_c00146{bottom:1138.173333pt;}
.y2c_c00146{bottom:1138.946667pt;}
.y28_c00146{bottom:1140.480000pt;}
.y26_c00146{bottom:1142.786667pt;}
.y29_c00146{bottom:1145.853333pt;}
.y27_c00146{bottom:1146.626667pt;}
.y2b_c00146{bottom:1147.386667pt;}
.y25_c00146{bottom:1150.466667pt;}
.y22_c00146{bottom:1158.906667pt;}
.y20_c00146{bottom:1161.213333pt;}
.y23_c00146{bottom:1161.986667pt;}
.y1f_c00146{bottom:1162.746667pt;}
.y1e_c00146{bottom:1165.826667pt;}
.y21_c00146{bottom:1168.133333pt;}
.y24_c00146{bottom:1171.200000pt;}
.y183_c00146{bottom:1177.346667pt;}
.y1d_c00146{bottom:1178.106667pt;}
.y17_c00146{bottom:1184.253333pt;}
.y182_c00146{bottom:1185.026667pt;}
.y18_c00146{bottom:1185.786667pt;}
.y14_c00146{bottom:1188.093333pt;}
.y19_c00146{bottom:1188.866667pt;}
.y1a_c00146{bottom:1189.626667pt;}
.y16_c00146{bottom:1190.400000pt;}
.y15_c00146{bottom:1191.173333pt;}
.y1c_c00146{bottom:1193.466667pt;}
.y1b_c00146{bottom:1196.546667pt;}
.y13_c00146{bottom:1198.853333pt;}
.yd_c00146{bottom:1204.986667pt;}
.ye_c00146{bottom:1205.760000pt;}
.y10_c00146{bottom:1206.533333pt;}
.y9_c00146{bottom:1208.826667pt;}
.yf_c00146{bottom:1210.373333pt;}
.ya_c00146{bottom:1211.906667pt;}
.y11_c00146{bottom:1212.666667pt;}
.yc_c00146{bottom:1213.440000pt;}
.yb_c00146{bottom:1214.213333pt;}
.y12_c00146{bottom:1221.120000pt;}
.y1_c00146{bottom:1239.546667pt;}
.y4_c00146{bottom:1240.320000pt;}
.y3_c00146{bottom:1241.093333pt;}
.y5_c00146{bottom:1241.853333pt;}
.y6_c00146{bottom:1242.626667pt;}
.y2_c00146{bottom:1246.466667pt;}
.y7_c00146{bottom:1251.840000pt;}
.y8_c00146{bottom:1254.146667pt;}
.h1c_c00146{height:2.764500pt;}
.h17_c00146{height:4.799479pt;}
.h22_c00146{height:5.519401pt;}
.hd_c00146{height:8.303099pt;}
.h16_c00146{height:11.038802pt;}
.hc_c00146{height:13.822500pt;}
.h26_c00146{height:16.606198pt;}
.h24_c00146{height:19.341901pt;}
.h3_c00146{height:22.125599pt;}
.h8_c00146{height:24.861302pt;}
.h25_c00146{height:27.645000pt;}
.h23_c00146{height:30.428698pt;}
.h21_c00146{height:33.164401pt;}
.h18_c00146{height:35.948099pt;}
.h19_c00146{height:38.683802pt;}
.h1a_c00146{height:41.467500pt;}
.h1b_c00146{height:44.251198pt;}
.h15_c00146{height:46.986901pt;}
.h7_c00146{height:49.770599pt;}
.h6_c00146{height:52.506302pt;}
.h9_c00146{height:55.290000pt;}
.h4_c00146{height:58.073698pt;}
.h5_c00146{height:60.809401pt;}
.h2_c00146{height:63.593099pt;}
.h20_c00146{height:66.328802pt;}
.hb_c00146{height:69.112500pt;}
.hf_c00146{height:71.896198pt;}
.ha_c00146{height:74.631901pt;}
.h1d_c00146{height:77.415599pt;}
.h10_c00146{height:80.151302pt;}
.h12_c00146{height:82.935000pt;}
.h1e_c00146{height:85.718698pt;}
.h27_c00146{height:88.454401pt;}
.h28_c00146{height:91.238099pt;}
.h1f_c00146{height:93.973802pt;}
.h13_c00146{height:102.276901pt;}
.h14_c00146{height:107.796302pt;}
.he_c00146{height:113.363698pt;}
.h11_c00146{height:124.402500pt;}
.h0_c00146{height:1348.613333pt;}
.h1_c00146{height:1348.666667pt;}
.w0_c00146{width:969.213333pt;}
.w1_c00146{width:969.333333pt;}
.x0_c00146{left:0.000000pt;}
.x9d_c00146{left:137.466667pt;}
.xfb_c00146{left:152.066667pt;}
.xe5_c00146{left:156.666667pt;}
.xe6_c00146{left:162.813333pt;}
.xe7_c00146{left:172.800000pt;}
.x56_c00146{left:176.640000pt;}
.xe8_c00146{left:181.253333pt;}
.xeb_c00146{left:184.320000pt;}
.xc2_c00146{left:187.386667pt;}
.xcd_c00146{left:188.933333pt;}
.x9e_c00146{left:190.466667pt;}
.xd5_c00146{left:192.000000pt;}
.xe9_c00146{left:196.613333pt;}
.xaf_c00146{left:200.453333pt;}
.x104_c00146{left:203.520000pt;}
.x6b_c00146{left:205.053333pt;}
.x5d_c00146{left:206.586667pt;}
.x4d_c00146{left:208.133333pt;}
.xac_c00146{left:209.666667pt;}
.xa3_c00146{left:211.200000pt;}
.x27_c00146{left:212.733333pt;}
.x96_c00146{left:215.813333pt;}
.x4e_c00146{left:218.106667pt;}
.x30_c00146{left:219.653333pt;}
.x10_c00146{left:221.946667pt;}
.x1_c00146{left:223.493333pt;}
.x105_c00146{left:226.560000pt;}
.xfe_c00146{left:228.866667pt;}
.xfc_c00146{left:230.400000pt;}
.xce_c00146{left:231.933333pt;}
.x1d_c00146{left:236.546667pt;}
.x5e_c00146{left:239.613333pt;}
.x45_c00146{left:241.146667pt;}
.x11_c00146{left:244.986667pt;}
.xbd_c00146{left:247.293333pt;}
.x5f_c00146{left:250.373333pt;}
.x6c_c00146{left:251.906667pt;}
.x100_c00146{left:253.440000pt;}
.x3c_c00146{left:254.973333pt;}
.x4f_c00146{left:257.280000pt;}
.x107_c00146{left:259.586667pt;}
.xa7_c00146{left:261.120000pt;}
.x28_c00146{left:263.426667pt;}
.x99_c00146{left:264.960000pt;}
.xd6_c00146{left:271.106667pt;}
.x31_c00146{left:272.640000pt;}
.x3d_c00146{left:274.946667pt;}
.x8b_c00146{left:281.853333pt;}
.xcf_c00146{left:284.160000pt;}
.xb0_c00146{left:285.693333pt;}
.xde_c00146{left:288.000000pt;}
.x72_c00146{left:290.306667pt;}
.xba_c00146{left:291.840000pt;}
.x12_c00146{left:294.906667pt;}
.xdc_c00146{left:296.453333pt;}
.x32_c00146{left:297.986667pt;}
.x9f_c00146{left:300.293333pt;}
.x60_c00146{left:304.133333pt;}
.x33_c00146{left:305.666667pt;}
.x50_c00146{left:308.733333pt;}
.x29_c00146{left:311.040000pt;}
.x13_c00146{left:313.346667pt;}
.x1e_c00146{left:315.653333pt;}
.x2_c00146{left:317.186667pt;}
.x8c_c00146{left:321.026667pt;}
.x3e_c00146{left:322.560000pt;}
.xd0_c00146{left:324.866667pt;}
.xad_c00146{left:327.173333pt;}
.xd7_c00146{left:331.013333pt;}
.x34_c00146{left:334.853333pt;}
.xe3_c00146{left:336.386667pt;}
.xf1_c00146{left:339.453333pt;}
.xff_c00146{left:340.986667pt;}
.x14_c00146{left:342.533333pt;}
.x57_c00146{left:344.066667pt;}
.x91_c00146{left:345.600000pt;}
.x80_c00146{left:347.133333pt;}
.xbb_c00146{left:349.440000pt;}
.x46_c00146{left:354.813333pt;}
.x9a_c00146{left:359.426667pt;}
.x79_c00146{left:360.960000pt;}
.x3_c00146{left:364.800000pt;}
.xf2_c00146{left:367.866667pt;}
.x1f_c00146{left:369.413333pt;}
.x6d_c00146{left:371.706667pt;}
.x51_c00146{left:374.786667pt;}
.x73_c00146{left:377.093333pt;}
.x8d_c00146{left:380.160000pt;}
.x81_c00146{left:382.466667pt;}
.x7a_c00146{left:384.000000pt;}
.x15_c00146{left:385.533333pt;}
.xb1_c00146{left:387.840000pt;}
.x82_c00146{left:391.680000pt;}
.xc8_c00146{left:393.213333pt;}
.x35_c00146{left:394.746667pt;}
.xee_c00146{left:399.360000pt;}
.xa4_c00146{left:400.893333pt;}
.x4_c00146{left:403.973333pt;}
.x106_c00146{left:405.506667pt;}
.x9b_c00146{left:407.813333pt;}
.x58_c00146{left:410.880000pt;}
.xa8_c00146{left:413.946667pt;}
.xa0_c00146{left:416.253333pt;}
.x61_c00146{left:419.333333pt;}
.xbe_c00146{left:421.626667pt;}
.x52_c00146{left:423.933333pt;}
.x9c_c00146{left:427.773333pt;}
.x47_c00146{left:429.306667pt;}
.x2a_c00146{left:432.386667pt;}
.xec_c00146{left:433.920000pt;}
.x6e_c00146{left:436.226667pt;}
.xef_c00146{left:438.533333pt;}
.x74_c00146{left:440.826667pt;}
.x5_c00146{left:443.133333pt;}
.x62_c00146{left:445.440000pt;}
.x59_c00146{left:446.973333pt;}
.x109_c00146{left:448.506667pt;}
.x16_c00146{left:452.346667pt;}
.xd1_c00146{left:454.653333pt;}
.x36_c00146{left:457.733333pt;}
.xdd_c00146{left:460.026667pt;}
.x3f_c00146{left:463.106667pt;}
.xb2_c00146{left:467.706667pt;}
.x20_c00146{left:469.253333pt;}
.x48_c00146{left:470.786667pt;}
.xdf_c00146{left:472.320000pt;}
.x63_c00146{left:473.853333pt;}
.x92_c00146{left:476.160000pt;}
.xc9_c00146{left:478.466667pt;}
.x7b_c00146{left:480.773333pt;}
.x64_c00146{left:482.306667pt;}
.x97_c00146{left:483.840000pt;}
.x53_c00146{left:485.373333pt;}
.x6_c00146{left:486.906667pt;}
.xf7_c00146{left:489.986667pt;}
.xbf_c00146{left:491.520000pt;}
.x98_c00146{left:493.826667pt;}
.x83_c00146{left:495.360000pt;}
.x65_c00146{left:497.666667pt;}
.xfd_c00146{left:499.200000pt;}
.x2b_c00146{left:500.733333pt;}
.xd2_c00146{left:503.040000pt;}
.xd8_c00146{left:505.346667pt;}
.x40_c00146{left:506.880000pt;}
.xc4_c00146{left:509.186667pt;}
.xb3_c00146{left:510.720000pt;}
.xae_c00146{left:512.253333pt;}
.xc0_c00146{left:514.560000pt;}
.x7_c00146{left:517.626667pt;}
.x75_c00146{left:519.173333pt;}
.x66_c00146{left:522.240000pt;}
.x17_c00146{left:523.773333pt;}
.x10b_c00146{left:526.080000pt;}
.xe0_c00146{left:527.613333pt;}
.x21_c00146{left:529.146667pt;}
.x8_c00146{left:531.453333pt;}
.x10c_c00146{left:533.760000pt;}
.x84_c00146{left:535.293333pt;}
.xa1_c00146{left:538.373333pt;}
.xb4_c00146{left:539.906667pt;}
.x8e_c00146{left:542.973333pt;}
.x9_c00146{left:544.506667pt;}
.xa9_c00146{left:546.053333pt;}
.x5a_c00146{left:547.586667pt;}
.x54_c00146{left:550.653333pt;}
.x93_c00146{left:552.186667pt;}
.x10a_c00146{left:555.266667pt;}
.x18_c00146{left:556.800000pt;}
.x6f_c00146{left:558.333333pt;}
.xb5_c00146{left:560.640000pt;}
.xd9_c00146{left:562.173333pt;}
.x19_c00146{left:564.480000pt;}
.xa_c00146{left:566.013333pt;}
.x76_c00146{left:568.320000pt;}
.x41_c00146{left:570.626667pt;}
.x22_c00146{left:572.933333pt;}
.xe4_c00146{left:574.466667pt;}
.xb6_c00146{left:579.066667pt;}
.x67_c00146{left:581.373333pt;}
.x85_c00146{left:582.906667pt;}
.xb7_c00146{left:588.293333pt;}
.x7c_c00146{left:590.586667pt;}
.x49_c00146{left:595.200000pt;}
.x86_c00146{left:596.733333pt;}
.x42_c00146{left:598.266667pt;}
.x102_c00146{left:599.813333pt;}
.xa2_c00146{left:601.346667pt;}
.x4a_c00146{left:605.186667pt;}
.xf8_c00146{left:607.493333pt;}
.xb_c00146{left:609.786667pt;}
.xc5_c00146{left:611.333333pt;}
.xf0_c00146{left:614.400000pt;}
.x37_c00146{left:615.933333pt;}
.xd3_c00146{left:617.466667pt;}
.xaa_c00146{left:619.013333pt;}
.x23_c00146{left:622.853333pt;}
.x8f_c00146{left:624.386667pt;}
.x2c_c00146{left:626.693333pt;}
.xc_c00146{left:631.293333pt;}
.xa5_c00146{left:633.600000pt;}
.x24_c00146{left:635.133653pt;}
.xda_c00146{left:636.666667pt;}
.x5b_c00146{left:638.213333pt;}
.x108_c00146{left:639.746667pt;}
.x7d_c00146{left:641.280000pt;}
.x87_c00146{left:645.120000pt;}
.xca_c00146{left:648.960000pt;}
.x88_c00146{left:650.493333pt;}
.x70_c00146{left:652.026667pt;}
.xf3_c00146{left:654.333333pt;}
.xd_c00146{left:655.866667pt;}
.xf9_c00146{left:657.413333pt;}
.x43_c00146{left:661.253333pt;}
.xc3_c00146{left:662.786667pt;}
.xc6_c00146{left:664.320000pt;}
.x68_c00146{left:665.853333pt;}
.xcb_c00146{left:670.466667pt;}
.xf4_c00146{left:672.000000pt;}
.x4b_c00146{left:674.306667pt;}
.xe_c00146{left:681.213333pt;}
.xed_c00146{left:682.746667pt;}
.x1a_c00146{left:685.053333pt;}
.x25_c00146{left:686.588117pt;}
.xd4_c00146{left:688.133333pt;}
.x89_c00146{left:690.426667pt;}
.xf5_c00146{left:691.973333pt;}
.x7e_c00146{left:693.506667pt;}
.xea_c00146{left:695.040000pt;}
.x5c_c00146{left:696.573333pt;}
.x44_c00146{left:698.880000pt;}
.xab_c00146{left:700.413333pt;}
.x2d_c00146{left:702.720000pt;}
.xb8_c00146{left:705.786667pt;}
.x77_c00146{left:707.333333pt;}
.xf6_c00146{left:709.626667pt;}
.x69_c00146{left:711.173333pt;}
.x94_c00146{left:713.466667pt;}
.x38_c00146{left:718.080000pt;}
.x4c_c00146{left:721.146667pt;}
.x103_c00146{left:722.693333pt;}
.x95_c00146{left:724.986667pt;}
.xc1_c00146{left:726.533333pt;}
.xf_c00146{left:731.133333pt;}
.x7f_c00146{left:732.666667pt;}
.x26_c00146{left:734.973333pt;}
.x55_c00146{left:737.280000pt;}
.xc7_c00146{left:738.813333pt;}
.x39_c00146{left:741.893333pt;}
.xa6_c00146{left:743.426667pt;}
.x78_c00146{left:745.733333pt;}
.xbc_c00146{left:748.026667pt;}
.xe1_c00146{left:750.333333pt;}
.x90_c00146{left:752.640000pt;}
.x3a_c00146{left:754.946667pt;}
.x101_c00146{left:756.480000pt;}
.xb9_c00146{left:758.786667pt;}
.x1b_c00146{left:760.320000pt;}
.x2e_c00146{left:761.853333pt;}
.xfa_c00146{left:764.160000pt;}
.x71_c00146{left:765.693333pt;}
.x6a_c00146{left:769.533333pt;}
.x3b_c00146{left:777.213333pt;}
.x8a_c00146{left:780.293333pt;}
.x2f_c00146{left:781.826667pt;}
.xe2_c00146{left:785.666667pt;}
.xdb_c00146{left:787.973333pt;}
.x1c_c00146{left:791.813333pt;}
.xcc_c00146{left:794.880000pt;}
.x10d_c00146{left:872.453333pt;}
.x10e_c00146{left:890.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_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_f98704f5306f0cdec79fe489.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.109863;font-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_c00147{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m25_c00147{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);}
.m17e_c00147{transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);}
.m144_c00147{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m163_c00147{transform:matrix(0.069225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069225,0.000000,0.000000,0.250000,0,0);}
.m13b_c00147{transform:matrix(0.080525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080525,0.000000,0.000000,0.250000,0,0);}
.m145_c00147{transform:matrix(0.086550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086550,0.000000,0.000000,0.250000,0,0);}
.m146_c00147{transform:matrix(0.088725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088725,0.000000,0.000000,0.250000,0,0);}
.m152_c00147{transform:matrix(0.092350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092350,0.000000,0.000000,0.250000,0,0);}
.m7e_c00147{transform:matrix(0.099400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099400,0.000000,0.000000,0.250000,0,0);}
.m5b_c00147{transform:matrix(0.099525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099525,0.000000,0.000000,0.250000,0,0);}
.m4b_c00147{transform:matrix(0.100075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100075,0.000000,0.000000,0.250000,0,0);}
.mb1_c00147{transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);}
.mb3_c00147{transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);}
.m88_c00147{transform:matrix(0.110450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110450,0.000000,0.000000,0.250000,0,0);}
.m12f_c00147{transform:matrix(0.111550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111550,0.000000,0.000000,0.250000,0,0);}
.mb0_c00147{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m187_c00147{transform:matrix(0.112325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112325,0.000000,0.000000,0.250000,0,0);}
.me1_c00147{transform:matrix(0.113600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113600,0.000000,0.000000,0.250000,0,0);}
.m126_c00147{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m131_c00147{transform:matrix(0.114975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114975,0.000000,0.000000,0.250000,0,0);}
.me0_c00147{transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);}
.mf1_c00147{transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);}
.m180_c00147{transform:matrix(0.116400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116400,0.000000,0.000000,0.250000,0,0);}
.m8a_c00147{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.m136_c00147{transform:matrix(0.116825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116825,0.000000,0.000000,0.250000,0,0);}
.me2_c00147{transform:matrix(0.118125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118125,0.000000,0.000000,0.250000,0,0);}
.m13a_c00147{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m15c_c00147{transform:matrix(0.121025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121025,0.000000,0.000000,0.250000,0,0);}
.m104_c00147{transform:matrix(0.121275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121275,0.000000,0.000000,0.250000,0,0);}
.m6b_c00147{transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);}
.m51_c00147{transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);}
.m10f_c00147{transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);}
.m4d_c00147{transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);}
.m53_c00147{transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);}
.m85_c00147{transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);}
.m13d_c00147{transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);}
.m55_c00147{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m77_c00147{transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);}
.m137_c00147{transform:matrix(0.125200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125200,0.000000,0.000000,0.250000,0,0);}
.m10a_c00147{transform:matrix(0.125475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125475,0.000000,0.000000,0.250000,0,0);}
.m84_c00147{transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);}
.m8b_c00147{transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);}
.md4_c00147{transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);}
.m82_c00147{transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);}
.m172_c00147{transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);}
.m138_c00147{transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);}
.m64_c00147{transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);}
.m16b_c00147{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);}
.m162_c00147{transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);}
.m4a_c00147{transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);}
.mea_c00147{transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);}
.m139_c00147{transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);}
.m17a_c00147{transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);}
.med_c00147{transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);}
.m10d_c00147{transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);}
.m86_c00147{transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);}
.m185_c00147{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);}
.m102_c00147{transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);}
.m18b_c00147{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.m4f_c00147{transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);}
.m81_c00147{transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);}
.m75_c00147{transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);}
.m103_c00147{transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);}
.mc6_c00147{transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);}
.m2f_c00147{transform:matrix(0.141150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141150,0.000000,0.000000,0.250000,0,0);}
.mfa_c00147{transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);}
.m5c_c00147{transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);}
.m10b_c00147{transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);}
.m115_c00147{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);}
.me9_c00147{transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);}
.m121_c00147{transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);}
.m159_c00147{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00147{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.m18a_c00147{transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);}
.m47_c00147{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m135_c00147{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);}
.m52_c00147{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.m133_c00147{transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);}
.mf5_c00147{transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);}
.m15b_c00147{transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);}
.m31_c00147{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.m10e_c00147{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);}
.m7f_c00147{transform:matrix(0.149125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149125,0.000000,0.000000,0.250000,0,0);}
.m191_c00147{transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);}
.m8e_c00147{transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);}
.m6c_c00147{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);}
.m22_c00147{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);}
.m108_c00147{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m168_c00147{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00147{transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);}
.m173_c00147{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m17c_c00147{transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);}
.m7c_c00147{transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);}
.m15d_c00147{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.m93_c00147{transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);}
.m194_c00147{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.m20_c00147{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.m71_c00147{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);}
.m195_c00147{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m12d_c00147{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.mc2_c00147{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m169_c00147{transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);}
.md6_c00147{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.m98_c00147{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.m1c_c00147{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m69_c00147{transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);}
.m60_c00147{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m109_c00147{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m192_c00147{transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);}
.m11a_c00147{transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);}
.m184_c00147{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);}
.mf8_c00147{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);}
.mc4_c00147{transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);}
.m178_c00147{transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);}
.m16e_c00147{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m118_c00147{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m111_c00147{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m15f_c00147{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.m91_c00147{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.mf9_c00147{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);}
.m18f_c00147{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.maa_c00147{transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);}
.m179_c00147{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.m17d_c00147{transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);}
.m63_c00147{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);}
.m79_c00147{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m154_c00147{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);}
.m110_c00147{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);}
.m132_c00147{transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);}
.m120_c00147{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.m15e_c00147{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.ma2_c00147{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m14f_c00147{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.mcf_c00147{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);}
.m67_c00147{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);}
.m166_c00147{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);}
.m17b_c00147{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.m190_c00147{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);}
.m6a_c00147{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.m160_c00147{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m19_c00147{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.m80_c00147{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.mc0_c00147{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.mc9_c00147{transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);}
.m130_c00147{transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);}
.m72_c00147{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m175_c00147{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);}
.m48_c00147{transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);}
.m117_c00147{transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);}
.m54_c00147{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);}
.m92_c00147{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m46_c00147{transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);}
.m14d_c00147{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.ma7_c00147{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m29_c00147{transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);}
.m14b_c00147{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);}
.m11b_c00147{transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);}
.mba_c00147{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);}
.m14c_c00147{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.m6f_c00147{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);}
.me5_c00147{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m11c_c00147{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.mb8_c00147{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m134_c00147{transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);}
.mdf_c00147{transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);}
.md7_c00147{transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);}
.mf3_c00147{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m8f_c00147{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);}
.m16d_c00147{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.m8d_c00147{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m112_c00147{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.mc8_c00147{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);}
.m7_c00147{transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);}
.mc3_c00147{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.m171_c00147{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m153_c00147{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);}
.me8_c00147{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);}
.mc5_c00147{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m7a_c00147{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.md8_c00147{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m1b_c00147{transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);}
.ma4_c00147{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);}
.mc7_c00147{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.m62_c00147{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m157_c00147{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m16f_c00147{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);}
.mbd_c00147{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.m90_c00147{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.mbf_c00147{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m78_c00147{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m6e_c00147{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.m119_c00147{transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);}
.m61_c00147{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);}
.m97_c00147{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);}
.m158_c00147{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);}
.mbe_c00147{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.m5_c00147{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.m100_c00147{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.m13f_c00147{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.mae_c00147{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);}
.m87_c00147{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);}
.m33_c00147{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.m16c_c00147{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);}
.m99_c00147{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);}
.m13e_c00147{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.mf2_c00147{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m24_c00147{transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);}
.m58_c00147{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m12a_c00147{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);}
.m65_c00147{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m156_c00147{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.mc_c00147{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);}
.mdd_c00147{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.mbc_c00147{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m14a_c00147{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m107_c00147{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);}
.mb5_c00147{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);}
.m4e_c00147{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.md2_c00147{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.mcd_c00147{transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);}
.m5f_c00147{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);}
.m197_c00147{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);}
.m170_c00147{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.m165_c00147{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m17f_c00147{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.me6_c00147{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m151_c00147{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);}
.m188_c00147{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);}
.m2c_c00147{transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);}
.m18d_c00147{transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);}
.mf7_c00147{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);}
.m16a_c00147{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m189_c00147{transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);}
.m26_c00147{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);}
.m3a_c00147{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);}
.m27_c00147{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m150_c00147{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.m30_c00147{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m114_c00147{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.mad_c00147{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);}
.m142_c00147{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);}
.m9a_c00147{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.mf6_c00147{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.ma8_c00147{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);}
.m76_c00147{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);}
.m83_c00147{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);}
.m9e_c00147{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);}
.m113_c00147{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);}
.ma0_c00147{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);}
.md5_c00147{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.m12b_c00147{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);}
.m148_c00147{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.m12e_c00147{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);}
.m9b_c00147{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.m3e_c00147{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);}
.m147_c00147{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.mc1_c00147{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);}
.m37_c00147{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m1a_c00147{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);}
.m6d_c00147{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);}
.meb_c00147{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m18_c00147{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);}
.m2_c00147{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.me3_c00147{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);}
.m12c_c00147{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);}
.m161_c00147{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);}
.m174_c00147{transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);}
.m73_c00147{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);}
.md3_c00147{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);}
.m15a_c00147{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.mab_c00147{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.m105_c00147{transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);}
.mec_c00147{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);}
.m186_c00147{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);}
.m4_c00147{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);}
.mfd_c00147{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.m45_c00147{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m66_c00147{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);}
.m28_c00147{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.m89_c00147{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m44_c00147{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);}
.m181_c00147{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);}
.m176_c00147{transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);}
.m12_c00147{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);}
.m13_c00147{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);}
.m4c_c00147{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m155_c00147{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);}
.ma3_c00147{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);}
.ma9_c00147{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);}
.m96_c00147{transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);}
.m140_c00147{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);}
.mfc_c00147{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);}
.mef_c00147{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);}
.m182_c00147{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m106_c00147{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m129_c00147{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m50_c00147{transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);}
.m11f_c00147{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);}
.m167_c00147{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);}
.m39_c00147{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m34_c00147{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);}
.mac_c00147{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);}
.mda_c00147{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.m42_c00147{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00147{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);}
.m56_c00147{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);}
.m1d_c00147{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m2b_c00147{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);}
.m70_c00147{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);}
.m57_c00147{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.mcc_c00147{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);}
.m8c_c00147{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);}
.m149_c00147{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m94_c00147{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);}
.m7b_c00147{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);}
.m9f_c00147{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);}
.m3c_c00147{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);}
.m36_c00147{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00147{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c00147{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00147{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);}
.m8_c00147{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mde_c00147{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);}
.m17_c00147{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m38_c00147{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);}
.m15_c00147{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00147{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00147{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);}
.ma5_c00147{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00147{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);}
.m43_c00147{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);}
.me4_c00147{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00147{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c00147{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);}
.mbb_c00147{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00147{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m123_c00147{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);}
.ma1_c00147{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00147{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00147{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md0_c00147{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00147{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mce_c00147{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00147{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me7_c00147{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m68_c00147{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);}
.mfb_c00147{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m32_c00147{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m183_c00147{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00147{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c00147{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);}
.m10_c00147{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m49_c00147{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m40_c00147{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);}
.m41_c00147{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00147{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m35_c00147{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);}
.mcb_c00147{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00147{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c00147{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);}
.me_c00147{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m164_c00147{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00147{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m6_c00147{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m141_c00147{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c00147{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);}
.m2e_c00147{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);}
.m14e_c00147{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m0_c00147{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);}
.m59_c00147{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);}
.m1e_c00147{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00147{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00147{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m18c_c00147{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00147{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m116_c00147{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);}
.m5d_c00147{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.maf_c00147{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.mee_c00147{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);}
.m14_c00147{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);}
.m23_c00147{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m18e_c00147{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m177_c00147{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m127_c00147{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00147{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m196_c00147{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m198_c00147{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00147{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);}
.m74_c00147{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m11d_c00147{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00147{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00147{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.mff_c00147{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.md1_c00147{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00147{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.m124_c00147{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m128_c00147{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m95_c00147{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m143_c00147{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00147{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.md9_c00147{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.mca_c00147{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00147{transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);}
.m125_c00147{transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);}
.m101_c00147{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m122_c00147{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00147{transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);}
.m193_c00147{transform:matrix(2.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.392500,0.000000,0.000000,0.250000,0,0);}
.v2_c00147{vertical-align:-24.180000px;}
.v1_c00147{vertical-align:-13.800000px;}
.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;}
}
.ws1_c00147{word-spacing:-24.088560px;}
.ws0_c00147{word-spacing:-4.076880px;}
.ws2_c00147{word-spacing:0.000000px;}
.fc0_c00147{color:transparent;}
.fsd_c00147{font-size:3.456000px;}
.fs1e_c00147{font-size:6.000000px;}
.fs3_c00147{font-size:6.900000px;}
.fs1c_c00147{font-size:10.380000px;}
.fs1_c00147{font-size:13.800000px;}
.fs22_c00147{font-size:17.280000px;}
.fsc_c00147{font-size:20.760000px;}
.fs6_c00147{font-size:24.180000px;}
.fs1f_c00147{font-size:27.660000px;}
.fs0_c00147{font-size:31.080000px;}
.fs4_c00147{font-size:34.560000px;}
.fs12_c00147{font-size:38.040000px;}
.fs16_c00147{font-size:41.460000px;}
.fs20_c00147{font-size:44.940000px;}
.fs21_c00147{font-size:48.360000px;}
.fs19_c00147{font-size:51.840000px;}
.fs5_c00147{font-size:55.320000px;}
.fs15_c00147{font-size:58.740000px;}
.fsa_c00147{font-size:62.220000px;}
.fsb_c00147{font-size:65.640000px;}
.fs9_c00147{font-size:69.120000px;}
.fs8_c00147{font-size:72.600000px;}
.fs1b_c00147{font-size:76.020000px;}
.fs18_c00147{font-size:79.500000px;}
.fs1a_c00147{font-size:82.920000px;}
.fs11_c00147{font-size:86.400000px;}
.fs7_c00147{font-size:89.880000px;}
.fs10_c00147{font-size:93.300000px;}
.fse_c00147{font-size:96.780000px;}
.fsf_c00147{font-size:100.200000px;}
.fs14_c00147{font-size:103.680000px;}
.fs1d_c00147{font-size:107.160000px;}
.fs26_c00147{font-size:110.580000px;}
.fs13_c00147{font-size:114.060000px;}
.fs17_c00147{font-size:117.480000px;}
.fs25_c00147{font-size:120.960000px;}
.fs23_c00147{font-size:124.440000px;}
.fs24_c00147{font-size:127.860000px;}
.fs2_c00147{font-size:141.720000px;}
.y0_c00147{bottom:0.000000px;}
.y197_c00147{bottom:224.640000px;}
.y199_c00147{bottom:225.510000px;}
.y198_c00147{bottom:226.365000px;}
.y196_c00147{bottom:228.090000px;}
.y195_c00147{bottom:230.685000px;}
.y192_c00147{bottom:231.555000px;}
.y191_c00147{bottom:232.410000px;}
.y194_c00147{bottom:233.280000px;}
.y193_c00147{bottom:235.005000px;}
.y18f_c00147{bottom:236.730000px;}
.y190_c00147{bottom:238.470000px;}
.y18a_c00147{bottom:255.750000px;}
.y188_c00147{bottom:256.605000px;}
.y18c_c00147{bottom:257.475000px;}
.y18b_c00147{bottom:259.200000px;}
.y189_c00147{bottom:260.925000px;}
.y18e_c00147{bottom:263.520000px;}
.y18d_c00147{bottom:265.245000px;}
.y186_c00147{bottom:279.075000px;}
.y185_c00147{bottom:279.930000px;}
.y180_c00147{bottom:281.670000px;}
.y184_c00147{bottom:283.395000px;}
.y187_c00147{bottom:284.250000px;}
.y181_c00147{bottom:288.570000px;}
.y182_c00147{bottom:289.440000px;}
.y183_c00147{bottom:290.310000px;}
.y17f_c00147{bottom:303.270000px;}
.y17b_c00147{bottom:304.125000px;}
.y179_c00147{bottom:305.850000px;}
.y17a_c00147{bottom:306.720000px;}
.y17e_c00147{bottom:307.590000px;}
.y17d_c00147{bottom:311.910000px;}
.y17c_c00147{bottom:313.635000px;}
.y177_c00147{bottom:329.190000px;}
.y178_c00147{bottom:330.915000px;}
.y176_c00147{bottom:331.770000px;}
.y173_c00147{bottom:332.640000px;}
.y175_c00147{bottom:336.960000px;}
.y174_c00147{bottom:339.555000px;}
.y2_c00147{bottom:344.730000px;}
.y1_c00147{bottom:349.920000px;}
.y171_c00147{bottom:354.240000px;}
.y16f_c00147{bottom:355.110000px;}
.y16e_c00147{bottom:356.835000px;}
.y170_c00147{bottom:361.155000px;}
.y172_c00147{bottom:368.070000px;}
.y16d_c00147{bottom:372.390000px;}
.y16b_c00147{bottom:379.290000px;}
.y16a_c00147{bottom:380.160000px;}
.y166_c00147{bottom:381.885000px;}
.y168_c00147{bottom:383.610000px;}
.y16c_c00147{bottom:387.075000px;}
.y167_c00147{bottom:388.800000px;}
.y169_c00147{bottom:389.670000px;}
.y165_c00147{bottom:392.250000px;}
.y163_c00147{bottom:401.760000px;}
.y161_c00147{bottom:402.630000px;}
.y19e_c00147{bottom:403.485000px;}
.y15f_c00147{bottom:404.355000px;}
.y15d_c00147{bottom:406.080000px;}
.y15c_c00147{bottom:406.950000px;}
.y15e_c00147{bottom:409.530000px;}
.y160_c00147{bottom:410.400000px;}
.y162_c00147{bottom:411.270000px;}
.y164_c00147{bottom:423.360000px;}
.y15b_c00147{bottom:428.550000px;}
.y157_c00147{bottom:431.130000px;}
.y154_c00147{bottom:432.000000px;}
.y156_c00147{bottom:434.595000px;}
.y158_c00147{bottom:435.450000px;}
.y159_c00147{bottom:436.320000px;}
.y15a_c00147{bottom:437.190000px;}
.y155_c00147{bottom:438.045000px;}
.y19c_c00147{bottom:440.640000px;}
.y19d_c00147{bottom:443.235000px;}
.y19b_c00147{bottom:444.090000px;}
.y153_c00147{bottom:454.470000px;}
.y152_c00147{bottom:455.325000px;}
.y14d_c00147{bottom:456.195000px;}
.y150_c00147{bottom:457.050000px;}
.y151_c00147{bottom:460.515000px;}
.y14f_c00147{bottom:462.240000px;}
.y14c_c00147{bottom:463.965000px;}
.y14e_c00147{bottom:464.835000px;}
.y149_c00147{bottom:479.520000px;}
.y145_c00147{bottom:480.390000px;}
.y143_c00147{bottom:481.245000px;}
.y144_c00147{bottom:482.115000px;}
.y147_c00147{bottom:482.970000px;}
.y14a_c00147{bottom:484.710000px;}
.y142_c00147{bottom:486.435000px;}
.y148_c00147{bottom:489.030000px;}
.y146_c00147{bottom:489.885000px;}
.y14b_c00147{bottom:495.930000px;}
.y13a_c00147{bottom:506.310000px;}
.y13c_c00147{bottom:507.165000px;}
.y13d_c00147{bottom:508.890000px;}
.y140_c00147{bottom:509.760000px;}
.y141_c00147{bottom:510.630000px;}
.y13e_c00147{bottom:511.485000px;}
.y13b_c00147{bottom:513.210000px;}
.y13f_c00147{bottom:515.805000px;}
.y138_c00147{bottom:523.590000px;}
.y133_c00147{bottom:525.315000px;}
.y137_c00147{bottom:527.040000px;}
.y135_c00147{bottom:527.910000px;}
.y136_c00147{bottom:528.765000px;}
.y134_c00147{bottom:533.085000px;}
.y139_c00147{bottom:533.955000px;}
.y132_c00147{bottom:534.810000px;}
.y131_c00147{bottom:553.830000px;}
.y12e_c00147{bottom:554.685000px;}
.y128_c00147{bottom:556.410000px;}
.y12a_c00147{bottom:557.280000px;}
.y12b_c00147{bottom:558.150000px;}
.y12d_c00147{bottom:559.005000px;}
.y130_c00147{bottom:559.875000px;}
.y12c_c00147{bottom:564.195000px;}
.y129_c00147{bottom:565.050000px;}
.y12f_c00147{bottom:569.370000px;}
.y127_c00147{bottom:577.155000px;}
.y122_c00147{bottom:578.010000px;}
.y121_c00147{bottom:578.880000px;}
.y123_c00147{bottom:579.750000px;}
.y126_c00147{bottom:580.605000px;}
.y125_c00147{bottom:581.475000px;}
.y124_c00147{bottom:582.330000px;}
.y118_c00147{bottom:583.200000px;}
.y11a_c00147{bottom:584.070000px;}
.y11b_c00147{bottom:585.795000px;}
.y115_c00147{bottom:586.650000px;}
.y116_c00147{bottom:587.520000px;}
.y119_c00147{bottom:590.115000px;}
.y117_c00147{bottom:590.970000px;}
.y11c_c00147{bottom:591.840000px;}
.y11f_c00147{bottom:593.565000px;}
.y114_c00147{bottom:597.885000px;}
.y120_c00147{bottom:598.755000px;}
.y11e_c00147{bottom:599.610000px;}
.y11d_c00147{bottom:601.350000px;}
.y111_c00147{bottom:604.800000px;}
.y113_c00147{bottom:606.525000px;}
.y10f_c00147{bottom:607.395000px;}
.y10e_c00147{bottom:608.250000px;}
.y110_c00147{bottom:610.845000px;}
.y112_c00147{bottom:613.440000px;}
.y10b_c00147{bottom:629.850000px;}
.y10c_c00147{bottom:632.445000px;}
.y105_c00147{bottom:635.910000px;}
.y104_c00147{bottom:636.765000px;}
.y106_c00147{bottom:637.635000px;}
.y109_c00147{bottom:638.490000px;}
.y10a_c00147{bottom:639.360000px;}
.y107_c00147{bottom:640.230000px;}
.y108_c00147{bottom:641.085000px;}
.y103_c00147{bottom:643.680000px;}
.y10d_c00147{bottom:650.595000px;}
.y101_c00147{bottom:656.640000px;}
.yfb_c00147{bottom:659.235000px;}
.y100_c00147{bottom:660.090000px;}
.yfd_c00147{bottom:660.960000px;}
.y102_c00147{bottom:662.685000px;}
.yfc_c00147{bottom:663.555000px;}
.yfa_c00147{bottom:664.410000px;}
.yfe_c00147{bottom:666.150000px;}
.yff_c00147{bottom:667.005000px;}
.yf9_c00147{bottom:670.470000px;}
.yf1_c00147{bottom:684.285000px;}
.yf3_c00147{bottom:686.010000px;}
.yf7_c00147{bottom:686.880000px;}
.yf2_c00147{bottom:689.475000px;}
.yf0_c00147{bottom:690.330000px;}
.yf4_c00147{bottom:691.200000px;}
.yf5_c00147{bottom:696.390000px;}
.yf6_c00147{bottom:698.970000px;}
.yf8_c00147{bottom:703.290000px;}
.yed_c00147{bottom:705.030000px;}
.yea_c00147{bottom:706.755000px;}
.yeb_c00147{bottom:707.610000px;}
.yef_c00147{bottom:708.480000px;}
.yee_c00147{bottom:712.800000px;}
.yec_c00147{bottom:713.670000px;}
.ye9_c00147{bottom:714.525000px;}
.ye6_c00147{bottom:730.080000px;}
.ye4_c00147{bottom:730.950000px;}
.ye3_c00147{bottom:731.805000px;}
.ye2_c00147{bottom:732.675000px;}
.ye1_c00147{bottom:734.400000px;}
.ydf_c00147{bottom:735.270000px;}
.ye5_c00147{bottom:736.995000px;}
.ye0_c00147{bottom:739.590000px;}
.ye8_c00147{bottom:742.170000px;}
.ye7_c00147{bottom:746.490000px;}
.yde_c00147{bottom:755.130000px;}
.yda_c00147{bottom:756.870000px;}
.ydd_c00147{bottom:761.190000px;}
.ydc_c00147{bottom:762.915000px;}
.ydb_c00147{bottom:764.640000px;}
.yd9_c00147{bottom:780.195000px;}
.yd3_c00147{bottom:781.050000px;}
.yd7_c00147{bottom:781.920000px;}
.yd8_c00147{bottom:786.240000px;}
.yd5_c00147{bottom:787.110000px;}
.yd4_c00147{bottom:787.965000px;}
.yd6_c00147{bottom:788.835000px;}
.ycd_c00147{bottom:805.245000px;}
.yd0_c00147{bottom:806.115000px;}
.yca_c00147{bottom:806.970000px;}
.ycf_c00147{bottom:808.710000px;}
.yd1_c00147{bottom:809.565000px;}
.yc9_c00147{bottom:810.435000px;}
.yce_c00147{bottom:811.290000px;}
.ycc_c00147{bottom:812.160000px;}
.ycb_c00147{bottom:813.030000px;}
.yd2_c00147{bottom:817.350000px;}
.yc5_c00147{bottom:828.570000px;}
.yc6_c00147{bottom:829.440000px;}
.yc2_c00147{bottom:830.310000px;}
.yc4_c00147{bottom:831.165000px;}
.yc8_c00147{bottom:832.035000px;}
.yc3_c00147{bottom:833.760000px;}
.yc1_c00147{bottom:835.485000px;}
.yc0_c00147{bottom:838.950000px;}
.yc7_c00147{bottom:844.995000px;}
.ybf_c00147{bottom:855.360000px;}
.ybc_c00147{bottom:856.230000px;}
.yba_c00147{bottom:858.810000px;}
.ybd_c00147{bottom:859.680000px;}
.ybb_c00147{bottom:860.550000px;}
.ybe_c00147{bottom:861.405000px;}
.yb8_c00147{bottom:863.130000px;}
.yb9_c00147{bottom:864.000000px;}
.yb4_c00147{bottom:879.555000px;}
.yb2_c00147{bottom:880.410000px;}
.yb1_c00147{bottom:881.280000px;}
.yb6_c00147{bottom:882.150000px;}
.yb5_c00147{bottom:883.875000px;}
.yb3_c00147{bottom:885.600000px;}
.yb0_c00147{bottom:889.050000px;}
.yb7_c00147{bottom:891.645000px;}
.yad_c00147{bottom:905.475000px;}
.yae_c00147{bottom:906.330000px;}
.yab_c00147{bottom:907.200000px;}
.yaa_c00147{bottom:908.070000px;}
.ya9_c00147{bottom:908.925000px;}
.yaf_c00147{bottom:909.795000px;}
.yac_c00147{bottom:913.245000px;}
.ya8_c00147{bottom:914.115000px;}
.ya0_c00147{bottom:920.160000px;}
.ya1_c00147{bottom:921.030000px;}
.ya7_c00147{bottom:921.885000px;}
.ya3_c00147{bottom:922.755000px;}
.y9f_c00147{bottom:923.610000px;}
.ya2_c00147{bottom:924.480000px;}
.ya6_c00147{bottom:925.350000px;}
.ya5_c00147{bottom:926.205000px;}
.ya4_c00147{bottom:927.930000px;}
.y95_c00147{bottom:930.525000px;}
.y94_c00147{bottom:931.395000px;}
.y97_c00147{bottom:932.250000px;}
.y9c_c00147{bottom:933.990000px;}
.y9e_c00147{bottom:934.845000px;}
.y9a_c00147{bottom:936.570000px;}
.y92_c00147{bottom:938.310000px;}
.y93_c00147{bottom:939.165000px;}
.y96_c00147{bottom:940.890000px;}
.y9d_c00147{bottom:941.760000px;}
.y98_c00147{bottom:944.355000px;}
.y9b_c00147{bottom:946.950000px;}
.y99_c00147{bottom:948.675000px;}
.y90_c00147{bottom:953.850000px;}
.y8f_c00147{bottom:955.590000px;}
.y8b_c00147{bottom:956.445000px;}
.y8d_c00147{bottom:957.315000px;}
.y91_c00147{bottom:959.040000px;}
.y8e_c00147{bottom:962.490000px;}
.y8c_c00147{bottom:964.230000px;}
.y88_c00147{bottom:978.045000px;}
.y85_c00147{bottom:981.510000px;}
.y87_c00147{bottom:984.090000px;}
.y89_c00147{bottom:986.685000px;}
.y84_c00147{bottom:988.410000px;}
.y86_c00147{bottom:989.280000px;}
.y8a_c00147{bottom:1003.110000px;}
.y83_c00147{bottom:1004.835000px;}
.y81_c00147{bottom:1005.690000px;}
.y80_c00147{bottom:1006.560000px;}
.y7f_c00147{bottom:1007.430000px;}
.y7d_c00147{bottom:1010.010000px;}
.y7e_c00147{bottom:1011.750000px;}
.y82_c00147{bottom:1012.605000px;}
.y7c_c00147{bottom:1027.290000px;}
.y7a_c00147{bottom:1028.160000px;}
.y7b_c00147{bottom:1029.030000px;}
.y76_c00147{bottom:1030.755000px;}
.y78_c00147{bottom:1031.610000px;}
.y79_c00147{bottom:1032.480000px;}
.y77_c00147{bottom:1038.525000px;}
.y75_c00147{bottom:1039.395000px;}
.y74_c00147{bottom:1054.080000px;}
.y6e_c00147{bottom:1054.950000px;}
.y6f_c00147{bottom:1055.805000px;}
.y73_c00147{bottom:1056.675000px;}
.y6b_c00147{bottom:1057.530000px;}
.y6d_c00147{bottom:1060.995000px;}
.y72_c00147{bottom:1061.850000px;}
.y70_c00147{bottom:1062.720000px;}
.y6c_c00147{bottom:1063.590000px;}
.y71_c00147{bottom:1073.955000px;}
.y6a_c00147{bottom:1078.275000px;}
.y67_c00147{bottom:1080.000000px;}
.y65_c00147{bottom:1080.870000px;}
.y64_c00147{bottom:1082.595000px;}
.y69_c00147{bottom:1083.450000px;}
.y66_c00147{bottom:1084.320000px;}
.y68_c00147{bottom:1086.915000px;}
.y61_c00147{bottom:1087.770000px;}
.y63_c00147{bottom:1088.640000px;}
.y62_c00147{bottom:1098.150000px;}
.y5c_c00147{bottom:1106.790000px;}
.y59_c00147{bottom:1107.645000px;}
.y5a_c00147{bottom:1108.515000px;}
.y5e_c00147{bottom:1109.370000px;}
.y5d_c00147{bottom:1111.110000px;}
.y5b_c00147{bottom:1111.965000px;}
.y5f_c00147{bottom:1114.560000px;}
.y60_c00147{bottom:1125.795000px;}
.y58_c00147{bottom:1129.245000px;}
.y57_c00147{bottom:1130.970000px;}
.y56_c00147{bottom:1131.840000px;}
.y55_c00147{bottom:1133.565000px;}
.y54_c00147{bottom:1139.610000px;}
.y50_c00147{bottom:1155.165000px;}
.y4c_c00147{bottom:1156.890000px;}
.y4f_c00147{bottom:1157.760000px;}
.y4e_c00147{bottom:1159.485000px;}
.y51_c00147{bottom:1162.080000px;}
.y4b_c00147{bottom:1163.805000px;}
.y4d_c00147{bottom:1165.530000px;}
.y53_c00147{bottom:1166.400000px;}
.y52_c00147{bottom:1181.085000px;}
.y49_c00147{bottom:1181.955000px;}
.y48_c00147{bottom:1182.810000px;}
.y42_c00147{bottom:1184.550000px;}
.y45_c00147{bottom:1185.405000px;}
.y43_c00147{bottom:1186.275000px;}
.y44_c00147{bottom:1187.130000px;}
.y46_c00147{bottom:1188.000000px;}
.y47_c00147{bottom:1189.725000px;}
.y4a_c00147{bottom:1194.045000px;}
.y40_c00147{bottom:1206.150000px;}
.y3e_c00147{bottom:1207.875000px;}
.y3f_c00147{bottom:1208.730000px;}
.y41_c00147{bottom:1209.600000px;}
.y3b_c00147{bottom:1210.470000px;}
.y3d_c00147{bottom:1211.325000px;}
.y3c_c00147{bottom:1212.195000px;}
.y3a_c00147{bottom:1229.475000px;}
.y37_c00147{bottom:1233.795000px;}
.y32_c00147{bottom:1235.520000px;}
.y39_c00147{bottom:1237.245000px;}
.y35_c00147{bottom:1238.115000px;}
.y33_c00147{bottom:1238.970000px;}
.y38_c00147{bottom:1239.840000px;}
.y34_c00147{bottom:1240.710000px;}
.y36_c00147{bottom:1241.565000px;}
.y19a_c00147{bottom:1249.350000px;}
.y2e_c00147{bottom:1257.120000px;}
.y30_c00147{bottom:1257.990000px;}
.y31_c00147{bottom:1261.440000px;}
.y2d_c00147{bottom:1264.890000px;}
.y2f_c00147{bottom:1265.760000px;}
.y2a_c00147{bottom:1279.590000px;}
.y28_c00147{bottom:1280.445000px;}
.y2c_c00147{bottom:1281.315000px;}
.y29_c00147{bottom:1282.170000px;}
.y27_c00147{bottom:1289.955000px;}
.y2b_c00147{bottom:1290.810000px;}
.y25_c00147{bottom:1303.770000px;}
.y22_c00147{bottom:1306.365000px;}
.y24_c00147{bottom:1308.090000px;}
.y21_c00147{bottom:1308.960000px;}
.y23_c00147{bottom:1312.410000px;}
.y26_c00147{bottom:1314.150000px;}
.y20_c00147{bottom:1315.005000px;}
.y1f_c00147{bottom:1328.835000px;}
.y1b_c00147{bottom:1329.690000px;}
.y19_c00147{bottom:1330.560000px;}
.y1e_c00147{bottom:1333.155000px;}
.y17_c00147{bottom:1336.605000px;}
.y1d_c00147{bottom:1338.330000px;}
.y1c_c00147{bottom:1339.200000px;}
.y18_c00147{bottom:1340.925000px;}
.y1a_c00147{bottom:1341.795000px;}
.y16_c00147{bottom:1356.480000px;}
.y14_c00147{bottom:1357.350000px;}
.y15_c00147{bottom:1358.205000px;}
.y13_c00147{bottom:1360.800000px;}
.y11_c00147{bottom:1365.120000px;}
.y12_c00147{bottom:1365.990000px;}
.yf_c00147{bottom:1385.850000px;}
.y10_c00147{bottom:1388.445000px;}
.ye_c00147{bottom:1389.315000px;}
.y7_c00147{bottom:1391.910000px;}
.yd_c00147{bottom:1393.635000px;}
.yc_c00147{bottom:1395.360000px;}
.y9_c00147{bottom:1396.230000px;}
.ya_c00147{bottom:1397.085000px;}
.yb_c00147{bottom:1397.955000px;}
.y8_c00147{bottom:1398.810000px;}
.y6_c00147{bottom:1415.235000px;}
.y5_c00147{bottom:1416.960000px;}
.y4_c00147{bottom:1423.005000px;}
.y3_c00147{bottom:1428.195000px;}
.hf_c00147{height:3.110063px;}
.h20_c00147{height:5.399414px;}
.h5_c00147{height:6.209326px;}
.h1e_c00147{height:9.340986px;}
.h3_c00147{height:12.418652px;}
.h24_c00147{height:15.550313px;}
.he_c00147{height:18.681973px;}
.h8_c00147{height:21.759639px;}
.h21_c00147{height:24.891299px;}
.h2_c00147{height:27.968965px;}
.h6_c00147{height:31.100625px;}
.h14_c00147{height:34.232285px;}
.h18_c00147{height:37.309951px;}
.h22_c00147{height:40.441611px;}
.h23_c00147{height:43.519277px;}
.h1b_c00147{height:46.650937px;}
.h7_c00147{height:49.782598px;}
.h17_c00147{height:52.860264px;}
.hc_c00147{height:55.991924px;}
.hd_c00147{height:59.069590px;}
.hb_c00147{height:62.201250px;}
.ha_c00147{height:65.332910px;}
.h1d_c00147{height:68.410576px;}
.h1a_c00147{height:71.542236px;}
.h1c_c00147{height:74.619902px;}
.h13_c00147{height:77.751563px;}
.h9_c00147{height:80.883223px;}
.h12_c00147{height:83.960889px;}
.h10_c00147{height:87.092549px;}
.h11_c00147{height:90.170215px;}
.h16_c00147{height:93.301875px;}
.h1f_c00147{height:96.433535px;}
.h28_c00147{height:99.511201px;}
.h15_c00147{height:102.642861px;}
.h19_c00147{height:105.720527px;}
.h27_c00147{height:108.852188px;}
.h25_c00147{height:111.983848px;}
.h26_c00147{height:115.061514px;}
.h4_c00147{height:127.534160px;}
.h1_c00147{height:1503.000000px;}
.h0_c00147{height:1503.360000px;}
.w0_c00147{width:1088.640000px;}
.w1_c00147{width:1089.000000px;}
.x0_c00147{left:0.000000px;}
.x106_c00147{left:136.515000px;}
.x103_c00147{left:163.290000px;}
.x1_c00147{left:167.610000px;}
.x104_c00147{left:169.350000px;}
.x2_c00147{left:171.075000px;}
.x105_c00147{left:175.395000px;}
.xe4_c00147{left:210.810000px;}
.x44_c00147{left:213.405000px;}
.xcc_c00147{left:219.450000px;}
.xe8_c00147{left:222.045000px;}
.xa9_c00147{left:224.640000px;}
.x39_c00147{left:226.365000px;}
.x2f_c00147{left:228.960000px;}
.x17_c00147{left:230.685000px;}
.xd1_c00147{left:241.920000px;}
.xa7_c00147{left:245.370000px;}
.x7a_c00147{left:247.965000px;}
.xa4_c00147{left:249.690000px;}
.x35_c00147{left:252.285000px;}
.x45_c00147{left:254.010000px;}
.xe0_c00147{left:256.605000px;}
.xbf_c00147{left:258.330000px;}
.x7_c00147{left:260.070000px;}
.x5e_c00147{left:261.795000px;}
.x56_c00147{left:263.520000px;}
.x15_c00147{left:265.245000px;}
.x4c_c00147{left:270.435000px;}
.x99_c00147{left:272.160000px;}
.xc0_c00147{left:273.885000px;}
.x100_c00147{left:278.205000px;}
.x3a_c00147{left:281.670000px;}
.x84_c00147{left:284.250000px;}
.x57_c00147{left:285.990000px;}
.x46_c00147{left:288.570000px;}
.x9a_c00147{left:290.310000px;}
.xd5_c00147{left:294.630000px;}
.x61_c00147{left:297.210000px;}
.x7e_c00147{left:302.400000px;}
.x3b_c00147{left:304.125000px;}
.x8e_c00147{left:307.590000px;}
.x9b_c00147{left:310.170000px;}
.x6b_c00147{left:312.765000px;}
.x73_c00147{left:314.490000px;}
.x58_c00147{left:316.230000px;}
.xad_c00147{left:319.680000px;}
.x1e_c00147{left:322.275000px;}
.x5f_c00147{left:324.000000px;}
.xfd_c00147{left:325.725000px;}
.x36_c00147{left:328.320000px;}
.x4d_c00147{left:334.365000px;}
.xf4_c00147{left:336.090000px;}
.xb3_c00147{left:337.830000px;}
.x89_c00147{left:341.280000px;}
.x8_c00147{left:343.875000px;}
.xe9_c00147{left:346.470000px;}
.x85_c00147{left:348.195000px;}
.x3c_c00147{left:349.920000px;}
.x8f_c00147{left:351.645000px;}
.xbc_c00147{left:356.835000px;}
.x2a_c00147{left:358.560000px;}
.x4_c00147{left:360.285000px;}
.x47_c00147{left:362.880000px;}
.x74_c00147{left:367.200000px;}
.x7b_c00147{left:369.795000px;}
.x62_c00147{left:371.520000px;}
.x7f_c00147{left:373.245000px;}
.xe5_c00147{left:375.840000px;}
.xcd_c00147{left:381.030000px;}
.x18_c00147{left:385.350000px;}
.x6c_c00147{left:387.075000px;}
.xdc_c00147{left:388.800000px;}
.x5_c00147{left:395.715000px;}
.x1f_c00147{left:398.310000px;}
.x9_c00147{left:402.630000px;}
.x48_c00147{left:404.355000px;}
.xf9_c00147{left:406.080000px;}
.x3d_c00147{left:408.675000px;}
.xe6_c00147{left:410.400000px;}
.xae_c00147{left:414.720000px;}
.x6_c00147{left:416.445000px;}
.x30_c00147{left:419.910000px;}
.x3_c00147{left:426.810000px;}
.xc1_c00147{left:428.550000px;}
.x75_c00147{left:430.275000px;}
.x9c_c00147{left:432.870000px;}
.xfb_c00147{left:434.595000px;}
.x80_c00147{left:437.190000px;}
.xc2_c00147{left:439.770000px;}
.x6d_c00147{left:441.510000px;}
.x59_c00147{left:444.090000px;}
.xa_c00147{left:445.830000px;}
.x86_c00147{left:448.410000px;}
.x90_c00147{left:454.470000px;}
.xf5_c00147{left:458.790000px;}
.xce_c00147{left:461.370000px;}
.x4e_c00147{left:463.965000px;}
.x19_c00147{left:466.560000px;}
.xb_c00147{left:468.285000px;}
.x2b_c00147{left:470.880000px;}
.xd2_c00147{left:474.330000px;}
.x5a_c00147{left:477.795000px;}
.xe1_c00147{left:482.970000px;}
.x4f_c00147{left:485.565000px;}
.xc_c00147{left:491.610000px;}
.x20_c00147{left:493.350000px;}
.xb7_c00147{left:495.075000px;}
.x6e_c00147{left:496.800000px;}
.xd6_c00147{left:501.120000px;}
.x63_c00147{left:502.845000px;}
.x9d_c00147{left:504.570000px;}
.xaa_c00147{left:507.165000px;}
.x76_c00147{left:509.760000px;}
.xd_c00147{left:511.485000px;}
.x31_c00147{left:515.805000px;}
.xb8_c00147{left:518.400000px;}
.xe2_c00147{left:520.125000px;}
.x81_c00147{left:522.720000px;}
.xf1_c00147{left:525.315000px;}
.x87_c00147{left:527.910000px;}
.x3e_c00147{left:530.490000px;}
.x49_c00147{left:532.230000px;}
.xaf_c00147{left:535.680000px;}
.x21_c00147{left:537.405000px;}
.xee_c00147{left:539.130000px;}
.x50_c00147{left:541.725000px;}
.x9e_c00147{left:543.450000px;}
.xea_c00147{left:546.045000px;}
.xc3_c00147{left:549.510000px;}
.xc8_c00147{left:552.960000px;}
.xe_c00147{left:556.410000px;}
.x91_c00147{left:558.150000px;}
.x82_c00147{left:559.875000px;}
.x1a_c00147{left:564.195000px;}
.xeb_c00147{left:565.920000px;}
.x64_c00147{left:570.240000px;}
.x83_c00147{left:571.965000px;}
.x51_c00147{left:576.285000px;}
.xff_c00147{left:578.010000px;}
.xf_c00147{left:580.605000px;}
.x2c_c00147{left:583.200000px;}
.x77_c00147{left:585.795000px;}
.x3f_c00147{left:587.520000px;}
.xa8_c00147{left:590.115000px;}
.xd3_c00147{left:593.565000px;}
.xfa_c00147{left:595.290000px;}
.xdd_c00147{left:597.030000px;}
.x5b_c00147{left:598.755000px;}
.xb0_c00147{left:600.480000px;}
.xc9_c00147{left:605.670000px;}
.x10_c00147{left:607.395000px;}
.xcf_c00147{left:609.120000px;}
.x65_c00147{left:613.440000px;}
.xc4_c00147{left:615.165000px;}
.xf6_c00147{left:616.890000px;}
.xbd_c00147{left:618.630000px;}
.x66_c00147{left:623.805000px;}
.x22_c00147{left:626.400000px;}
.x11_c00147{left:628.995000px;}
.x9f_c00147{left:631.590000px;}
.x1b_c00147{left:635.040000px;}
.x40_c00147{left:636.765000px;}
.x8a_c00147{left:640.230000px;}
.xef_c00147{left:642.810000px;}
.xd7_c00147{left:645.405000px;}
.x4a_c00147{left:647.130000px;}
.x6f_c00147{left:649.725000px;}
.x12_c00147{left:652.320000px;}
.x23_c00147{left:656.640000px;}
.x32_c00147{left:658.365000px;}
.x67_c00147{left:660.960000px;}
.xf8_c00147{left:663.555000px;}
.x7c_c00147{left:665.280000px;}
.x41_c00147{left:667.875000px;}
.x8b_c00147{left:670.470000px;}
.x78_c00147{left:672.195000px;}
.xa5_c00147{left:673.920000px;}
.xb9_c00147{left:675.645000px;}
.xa0_c00147{left:679.110000px;}
.x13_c00147{left:680.835000px;}
.x33_c00147{left:683.430000px;}
.x24_c00147{left:686.880000px;}
.x70_c00147{left:689.475000px;}
.xd8_c00147{left:691.200000px;}
.x101_c00147{left:692.925000px;}
.x25_c00147{left:694.650000px;}
.x4b_c00147{left:699.840000px;}
.x52_c00147{left:702.435000px;}
.x8c_c00147{left:707.610000px;}
.xa1_c00147{left:709.350000px;}
.x37_c00147{left:711.075000px;}
.xb1_c00147{left:713.670000px;}
.x26_c00147{left:716.250000px;}
.x42_c00147{left:717.990000px;}
.xab_c00147{left:720.570000px;}
.xba_c00147{left:722.310000px;}
.xb4_c00147{left:726.630000px;}
.x68_c00147{left:730.950000px;}
.x27_c00147{left:735.270000px;}
.x16_c00147{left:737.850000px;}
.x92_c00147{left:740.445000px;}
.xf2_c00147{left:742.170000px;}
.x43_c00147{left:743.910000px;}
.xec_c00147{left:747.360000px;}
.xd4_c00147{left:749.085000px;}
.xc5_c00147{left:751.680000px;}
.x60_c00147{left:756.870000px;}
.xbe_c00147{left:758.595000px;}
.x71_c00147{left:761.190000px;}
.xf7_c00147{left:764.640000px;}
.x1c_c00147{left:767.235000px;}
.x93_c00147{left:770.685000px;}
.xca_c00147{left:773.280000px;}
.x2d_c00147{left:776.730000px;}
.x53_c00147{left:782.790000px;}
.x69_c00147{left:787.110000px;}
.x28_c00147{left:790.560000px;}
.x94_c00147{left:793.155000px;}
.xf3_c00147{left:794.880000px;}
.x34_c00147{left:799.200000px;}
.xcb_c00147{left:801.795000px;}
.x29_c00147{left:803.520000px;}
.xb5_c00147{left:805.245000px;}
.xf0_c00147{left:806.970000px;}
.x88_c00147{left:809.565000px;}
.x1d_c00147{left:811.290000px;}
.x79_c00147{left:813.885000px;}
.x8d_c00147{left:817.350000px;}
.x95_c00147{left:825.120000px;}
.x38_c00147{left:827.715000px;}
.xa2_c00147{left:830.310000px;}
.xed_c00147{left:832.035000px;}
.xbb_c00147{left:833.760000px;}
.x7d_c00147{left:835.485000px;}
.xfe_c00147{left:837.210000px;}
.x14_c00147{left:838.950000px;}
.xfc_c00147{left:840.675000px;}
.xb6_c00147{left:843.270000px;}
.x72_c00147{left:845.850000px;}
.x102_c00147{left:849.315000px;}
.x96_c00147{left:857.955000px;}
.x2e_c00147{left:861.405000px;}
.xc6_c00147{left:863.130000px;}
.xde_c00147{left:870.045000px;}
.x54_c00147{left:872.640000px;}
.xc7_c00147{left:875.235000px;}
.x5c_c00147{left:877.830000px;}
.x6a_c00147{left:881.280000px;}
.xac_c00147{left:883.875000px;}
.xb2_c00147{left:887.325000px;}
.x5d_c00147{left:890.790000px;}
.xd9_c00147{left:893.370000px;}
.xdf_c00147{left:895.110000px;}
.x97_c00147{left:897.690000px;}
.x55_c00147{left:900.285000px;}
.xda_c00147{left:902.880000px;}
.xd0_c00147{left:909.795000px;}
.xe3_c00147{left:912.390000px;}
.xa3_c00147{left:917.565000px;}
.xe7_c00147{left:921.885000px;}
.xa6_c00147{left:923.610000px;}
.x98_c00147{left:925.350000px;}
.xdb_c00147{left:929.670000px;}
@media print{
.v2_c00147{vertical-align:-21.493333pt;}
.v1_c00147{vertical-align:-12.266667pt;}
.v0_c00147{vertical-align:0.000000pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.ws1_c00147{word-spacing:-21.412053pt;}
.ws0_c00147{word-spacing:-3.623893pt;}
.ws2_c00147{word-spacing:0.000000pt;}
.fsd_c00147{font-size:3.072000pt;}
.fs1e_c00147{font-size:5.333333pt;}
.fs3_c00147{font-size:6.133333pt;}
.fs1c_c00147{font-size:9.226667pt;}
.fs1_c00147{font-size:12.266667pt;}
.fs22_c00147{font-size:15.360000pt;}
.fsc_c00147{font-size:18.453333pt;}
.fs6_c00147{font-size:21.493333pt;}
.fs1f_c00147{font-size:24.586667pt;}
.fs0_c00147{font-size:27.626667pt;}
.fs4_c00147{font-size:30.720000pt;}
.fs12_c00147{font-size:33.813333pt;}
.fs16_c00147{font-size:36.853333pt;}
.fs20_c00147{font-size:39.946667pt;}
.fs21_c00147{font-size:42.986667pt;}
.fs19_c00147{font-size:46.080000pt;}
.fs5_c00147{font-size:49.173333pt;}
.fs15_c00147{font-size:52.213333pt;}
.fsa_c00147{font-size:55.306667pt;}
.fsb_c00147{font-size:58.346667pt;}
.fs9_c00147{font-size:61.440000pt;}
.fs8_c00147{font-size:64.533333pt;}
.fs1b_c00147{font-size:67.573333pt;}
.fs18_c00147{font-size:70.666667pt;}
.fs1a_c00147{font-size:73.706667pt;}
.fs11_c00147{font-size:76.800000pt;}
.fs7_c00147{font-size:79.893333pt;}
.fs10_c00147{font-size:82.933333pt;}
.fse_c00147{font-size:86.026667pt;}
.fsf_c00147{font-size:89.066667pt;}
.fs14_c00147{font-size:92.160000pt;}
.fs1d_c00147{font-size:95.253333pt;}
.fs26_c00147{font-size:98.293333pt;}
.fs13_c00147{font-size:101.386667pt;}
.fs17_c00147{font-size:104.426667pt;}
.fs25_c00147{font-size:107.520000pt;}
.fs23_c00147{font-size:110.613333pt;}
.fs24_c00147{font-size:113.653333pt;}
.fs2_c00147{font-size:125.973333pt;}
.y0_c00147{bottom:0.000000pt;}
.y197_c00147{bottom:199.680000pt;}
.y199_c00147{bottom:200.453333pt;}
.y198_c00147{bottom:201.213333pt;}
.y196_c00147{bottom:202.746667pt;}
.y195_c00147{bottom:205.053333pt;}
.y192_c00147{bottom:205.826667pt;}
.y191_c00147{bottom:206.586667pt;}
.y194_c00147{bottom:207.360000pt;}
.y193_c00147{bottom:208.893333pt;}
.y18f_c00147{bottom:210.426667pt;}
.y190_c00147{bottom:211.973333pt;}
.y18a_c00147{bottom:227.333333pt;}
.y188_c00147{bottom:228.093333pt;}
.y18c_c00147{bottom:228.866667pt;}
.y18b_c00147{bottom:230.400000pt;}
.y189_c00147{bottom:231.933333pt;}
.y18e_c00147{bottom:234.240000pt;}
.y18d_c00147{bottom:235.773333pt;}
.y186_c00147{bottom:248.066667pt;}
.y185_c00147{bottom:248.826667pt;}
.y180_c00147{bottom:250.373333pt;}
.y184_c00147{bottom:251.906667pt;}
.y187_c00147{bottom:252.666667pt;}
.y181_c00147{bottom:256.506667pt;}
.y182_c00147{bottom:257.280000pt;}
.y183_c00147{bottom:258.053333pt;}
.y17f_c00147{bottom:269.573333pt;}
.y17b_c00147{bottom:270.333333pt;}
.y179_c00147{bottom:271.866667pt;}
.y17a_c00147{bottom:272.640000pt;}
.y17e_c00147{bottom:273.413333pt;}
.y17d_c00147{bottom:277.253333pt;}
.y17c_c00147{bottom:278.786667pt;}
.y177_c00147{bottom:292.613333pt;}
.y178_c00147{bottom:294.146667pt;}
.y176_c00147{bottom:294.906667pt;}
.y173_c00147{bottom:295.680000pt;}
.y175_c00147{bottom:299.520000pt;}
.y174_c00147{bottom:301.826667pt;}
.y2_c00147{bottom:306.426667pt;}
.y1_c00147{bottom:311.040000pt;}
.y171_c00147{bottom:314.880000pt;}
.y16f_c00147{bottom:315.653333pt;}
.y16e_c00147{bottom:317.186667pt;}
.y170_c00147{bottom:321.026667pt;}
.y172_c00147{bottom:327.173333pt;}
.y16d_c00147{bottom:331.013333pt;}
.y16b_c00147{bottom:337.146667pt;}
.y16a_c00147{bottom:337.920000pt;}
.y166_c00147{bottom:339.453333pt;}
.y168_c00147{bottom:340.986667pt;}
.y16c_c00147{bottom:344.066667pt;}
.y167_c00147{bottom:345.600000pt;}
.y169_c00147{bottom:346.373333pt;}
.y165_c00147{bottom:348.666667pt;}
.y163_c00147{bottom:357.120000pt;}
.y161_c00147{bottom:357.893333pt;}
.y19e_c00147{bottom:358.653333pt;}
.y15f_c00147{bottom:359.426667pt;}
.y15d_c00147{bottom:360.960000pt;}
.y15c_c00147{bottom:361.733333pt;}
.y15e_c00147{bottom:364.026667pt;}
.y160_c00147{bottom:364.800000pt;}
.y162_c00147{bottom:365.573333pt;}
.y164_c00147{bottom:376.320000pt;}
.y15b_c00147{bottom:380.933333pt;}
.y157_c00147{bottom:383.226667pt;}
.y154_c00147{bottom:384.000000pt;}
.y156_c00147{bottom:386.306667pt;}
.y158_c00147{bottom:387.066667pt;}
.y159_c00147{bottom:387.840000pt;}
.y15a_c00147{bottom:388.613333pt;}
.y155_c00147{bottom:389.373333pt;}
.y19c_c00147{bottom:391.680000pt;}
.y19d_c00147{bottom:393.986667pt;}
.y19b_c00147{bottom:394.746667pt;}
.y153_c00147{bottom:403.973333pt;}
.y152_c00147{bottom:404.733333pt;}
.y14d_c00147{bottom:405.506667pt;}
.y150_c00147{bottom:406.266667pt;}
.y151_c00147{bottom:409.346667pt;}
.y14f_c00147{bottom:410.880000pt;}
.y14c_c00147{bottom:412.413333pt;}
.y14e_c00147{bottom:413.186667pt;}
.y149_c00147{bottom:426.240000pt;}
.y145_c00147{bottom:427.013333pt;}
.y143_c00147{bottom:427.773333pt;}
.y144_c00147{bottom:428.546667pt;}
.y147_c00147{bottom:429.306667pt;}
.y14a_c00147{bottom:430.853333pt;}
.y142_c00147{bottom:432.386667pt;}
.y148_c00147{bottom:434.693333pt;}
.y146_c00147{bottom:435.453333pt;}
.y14b_c00147{bottom:440.826667pt;}
.y13a_c00147{bottom:450.053333pt;}
.y13c_c00147{bottom:450.813333pt;}
.y13d_c00147{bottom:452.346667pt;}
.y140_c00147{bottom:453.120000pt;}
.y141_c00147{bottom:453.893333pt;}
.y13e_c00147{bottom:454.653333pt;}
.y13b_c00147{bottom:456.186667pt;}
.y13f_c00147{bottom:458.493333pt;}
.y138_c00147{bottom:465.413333pt;}
.y133_c00147{bottom:466.946667pt;}
.y137_c00147{bottom:468.480000pt;}
.y135_c00147{bottom:469.253333pt;}
.y136_c00147{bottom:470.013333pt;}
.y134_c00147{bottom:473.853333pt;}
.y139_c00147{bottom:474.626667pt;}
.y132_c00147{bottom:475.386667pt;}
.y131_c00147{bottom:492.293333pt;}
.y12e_c00147{bottom:493.053333pt;}
.y128_c00147{bottom:494.586667pt;}
.y12a_c00147{bottom:495.360000pt;}
.y12b_c00147{bottom:496.133333pt;}
.y12d_c00147{bottom:496.893333pt;}
.y130_c00147{bottom:497.666667pt;}
.y12c_c00147{bottom:501.506667pt;}
.y129_c00147{bottom:502.266667pt;}
.y12f_c00147{bottom:506.106667pt;}
.y127_c00147{bottom:513.026667pt;}
.y122_c00147{bottom:513.786667pt;}
.y121_c00147{bottom:514.560000pt;}
.y123_c00147{bottom:515.333333pt;}
.y126_c00147{bottom:516.093333pt;}
.y125_c00147{bottom:516.866667pt;}
.y124_c00147{bottom:517.626667pt;}
.y118_c00147{bottom:518.400000pt;}
.y11a_c00147{bottom:519.173333pt;}
.y11b_c00147{bottom:520.706667pt;}
.y115_c00147{bottom:521.466667pt;}
.y116_c00147{bottom:522.240000pt;}
.y119_c00147{bottom:524.546667pt;}
.y117_c00147{bottom:525.306667pt;}
.y11c_c00147{bottom:526.080000pt;}
.y11f_c00147{bottom:527.613333pt;}
.y114_c00147{bottom:531.453333pt;}
.y120_c00147{bottom:532.226667pt;}
.y11e_c00147{bottom:532.986667pt;}
.y11d_c00147{bottom:534.533333pt;}
.y111_c00147{bottom:537.600000pt;}
.y113_c00147{bottom:539.133333pt;}
.y10f_c00147{bottom:539.906667pt;}
.y10e_c00147{bottom:540.666667pt;}
.y110_c00147{bottom:542.973333pt;}
.y112_c00147{bottom:545.280000pt;}
.y10b_c00147{bottom:559.866667pt;}
.y10c_c00147{bottom:562.173333pt;}
.y105_c00147{bottom:565.253333pt;}
.y104_c00147{bottom:566.013333pt;}
.y106_c00147{bottom:566.786667pt;}
.y109_c00147{bottom:567.546667pt;}
.y10a_c00147{bottom:568.320000pt;}
.y107_c00147{bottom:569.093333pt;}
.y108_c00147{bottom:569.853333pt;}
.y103_c00147{bottom:572.160000pt;}
.y10d_c00147{bottom:578.306667pt;}
.y101_c00147{bottom:583.680000pt;}
.yfb_c00147{bottom:585.986667pt;}
.y100_c00147{bottom:586.746667pt;}
.yfd_c00147{bottom:587.520000pt;}
.y102_c00147{bottom:589.053333pt;}
.yfc_c00147{bottom:589.826667pt;}
.yfa_c00147{bottom:590.586667pt;}
.yfe_c00147{bottom:592.133333pt;}
.yff_c00147{bottom:592.893333pt;}
.yf9_c00147{bottom:595.973333pt;}
.yf1_c00147{bottom:608.253333pt;}
.yf3_c00147{bottom:609.786667pt;}
.yf7_c00147{bottom:610.560000pt;}
.yf2_c00147{bottom:612.866667pt;}
.yf0_c00147{bottom:613.626667pt;}
.yf4_c00147{bottom:614.400000pt;}
.yf5_c00147{bottom:619.013333pt;}
.yf6_c00147{bottom:621.306667pt;}
.yf8_c00147{bottom:625.146667pt;}
.yed_c00147{bottom:626.693333pt;}
.yea_c00147{bottom:628.226667pt;}
.yeb_c00147{bottom:628.986667pt;}
.yef_c00147{bottom:629.760000pt;}
.yee_c00147{bottom:633.600000pt;}
.yec_c00147{bottom:634.373333pt;}
.ye9_c00147{bottom:635.133333pt;}
.ye6_c00147{bottom:648.960000pt;}
.ye4_c00147{bottom:649.733333pt;}
.ye3_c00147{bottom:650.493333pt;}
.ye2_c00147{bottom:651.266667pt;}
.ye1_c00147{bottom:652.800000pt;}
.ydf_c00147{bottom:653.573333pt;}
.ye5_c00147{bottom:655.106667pt;}
.ye0_c00147{bottom:657.413333pt;}
.ye8_c00147{bottom:659.706667pt;}
.ye7_c00147{bottom:663.546667pt;}
.yde_c00147{bottom:671.226667pt;}
.yda_c00147{bottom:672.773333pt;}
.ydd_c00147{bottom:676.613333pt;}
.ydc_c00147{bottom:678.146667pt;}
.ydb_c00147{bottom:679.680000pt;}
.yd9_c00147{bottom:693.506667pt;}
.yd3_c00147{bottom:694.266667pt;}
.yd7_c00147{bottom:695.040000pt;}
.yd8_c00147{bottom:698.880000pt;}
.yd5_c00147{bottom:699.653333pt;}
.yd4_c00147{bottom:700.413333pt;}
.yd6_c00147{bottom:701.186667pt;}
.ycd_c00147{bottom:715.773333pt;}
.yd0_c00147{bottom:716.546667pt;}
.yca_c00147{bottom:717.306667pt;}
.ycf_c00147{bottom:718.853333pt;}
.yd1_c00147{bottom:719.613333pt;}
.yc9_c00147{bottom:720.386667pt;}
.yce_c00147{bottom:721.146667pt;}
.ycc_c00147{bottom:721.920000pt;}
.ycb_c00147{bottom:722.693333pt;}
.yd2_c00147{bottom:726.533333pt;}
.yc5_c00147{bottom:736.506667pt;}
.yc6_c00147{bottom:737.280000pt;}
.yc2_c00147{bottom:738.053333pt;}
.yc4_c00147{bottom:738.813333pt;}
.yc8_c00147{bottom:739.586667pt;}
.yc3_c00147{bottom:741.120000pt;}
.yc1_c00147{bottom:742.653333pt;}
.yc0_c00147{bottom:745.733333pt;}
.yc7_c00147{bottom:751.106667pt;}
.ybf_c00147{bottom:760.320000pt;}
.ybc_c00147{bottom:761.093333pt;}
.yba_c00147{bottom:763.386667pt;}
.ybd_c00147{bottom:764.160000pt;}
.ybb_c00147{bottom:764.933333pt;}
.ybe_c00147{bottom:765.693333pt;}
.yb8_c00147{bottom:767.226667pt;}
.yb9_c00147{bottom:768.000000pt;}
.yb4_c00147{bottom:781.826667pt;}
.yb2_c00147{bottom:782.586667pt;}
.yb1_c00147{bottom:783.360000pt;}
.yb6_c00147{bottom:784.133333pt;}
.yb5_c00147{bottom:785.666667pt;}
.yb3_c00147{bottom:787.200000pt;}
.yb0_c00147{bottom:790.266667pt;}
.yb7_c00147{bottom:792.573333pt;}
.yad_c00147{bottom:804.866667pt;}
.yae_c00147{bottom:805.626667pt;}
.yab_c00147{bottom:806.400000pt;}
.yaa_c00147{bottom:807.173333pt;}
.ya9_c00147{bottom:807.933333pt;}
.yaf_c00147{bottom:808.706667pt;}
.yac_c00147{bottom:811.773333pt;}
.ya8_c00147{bottom:812.546667pt;}
.ya0_c00147{bottom:817.920000pt;}
.ya1_c00147{bottom:818.693333pt;}
.ya7_c00147{bottom:819.453333pt;}
.ya3_c00147{bottom:820.226667pt;}
.y9f_c00147{bottom:820.986667pt;}
.ya2_c00147{bottom:821.760000pt;}
.ya6_c00147{bottom:822.533333pt;}
.ya5_c00147{bottom:823.293333pt;}
.ya4_c00147{bottom:824.826667pt;}
.y95_c00147{bottom:827.133333pt;}
.y94_c00147{bottom:827.906667pt;}
.y97_c00147{bottom:828.666667pt;}
.y9c_c00147{bottom:830.213333pt;}
.y9e_c00147{bottom:830.973333pt;}
.y9a_c00147{bottom:832.506667pt;}
.y92_c00147{bottom:834.053333pt;}
.y93_c00147{bottom:834.813333pt;}
.y96_c00147{bottom:836.346667pt;}
.y9d_c00147{bottom:837.120000pt;}
.y98_c00147{bottom:839.426667pt;}
.y9b_c00147{bottom:841.733333pt;}
.y99_c00147{bottom:843.266667pt;}
.y90_c00147{bottom:847.866667pt;}
.y8f_c00147{bottom:849.413333pt;}
.y8b_c00147{bottom:850.173333pt;}
.y8d_c00147{bottom:850.946667pt;}
.y91_c00147{bottom:852.480000pt;}
.y8e_c00147{bottom:855.546667pt;}
.y8c_c00147{bottom:857.093333pt;}
.y88_c00147{bottom:869.373333pt;}
.y85_c00147{bottom:872.453333pt;}
.y87_c00147{bottom:874.746667pt;}
.y89_c00147{bottom:877.053333pt;}
.y84_c00147{bottom:878.586667pt;}
.y86_c00147{bottom:879.360000pt;}
.y8a_c00147{bottom:891.653333pt;}
.y83_c00147{bottom:893.186667pt;}
.y81_c00147{bottom:893.946667pt;}
.y80_c00147{bottom:894.720000pt;}
.y7f_c00147{bottom:895.493333pt;}
.y7d_c00147{bottom:897.786667pt;}
.y7e_c00147{bottom:899.333333pt;}
.y82_c00147{bottom:900.093333pt;}
.y7c_c00147{bottom:913.146667pt;}
.y7a_c00147{bottom:913.920000pt;}
.y7b_c00147{bottom:914.693333pt;}
.y76_c00147{bottom:916.226667pt;}
.y78_c00147{bottom:916.986667pt;}
.y79_c00147{bottom:917.760000pt;}
.y77_c00147{bottom:923.133333pt;}
.y75_c00147{bottom:923.906667pt;}
.y74_c00147{bottom:936.960000pt;}
.y6e_c00147{bottom:937.733333pt;}
.y6f_c00147{bottom:938.493333pt;}
.y73_c00147{bottom:939.266667pt;}
.y6b_c00147{bottom:940.026667pt;}
.y6d_c00147{bottom:943.106667pt;}
.y72_c00147{bottom:943.866667pt;}
.y70_c00147{bottom:944.640000pt;}
.y6c_c00147{bottom:945.413333pt;}
.y71_c00147{bottom:954.626667pt;}
.y6a_c00147{bottom:958.466667pt;}
.y67_c00147{bottom:960.000000pt;}
.y65_c00147{bottom:960.773333pt;}
.y64_c00147{bottom:962.306667pt;}
.y69_c00147{bottom:963.066667pt;}
.y66_c00147{bottom:963.840000pt;}
.y68_c00147{bottom:966.146667pt;}
.y61_c00147{bottom:966.906667pt;}
.y63_c00147{bottom:967.680000pt;}
.y62_c00147{bottom:976.133333pt;}
.y5c_c00147{bottom:983.813333pt;}
.y59_c00147{bottom:984.573333pt;}
.y5a_c00147{bottom:985.346667pt;}
.y5e_c00147{bottom:986.106667pt;}
.y5d_c00147{bottom:987.653333pt;}
.y5b_c00147{bottom:988.413333pt;}
.y5f_c00147{bottom:990.720000pt;}
.y60_c00147{bottom:1000.706667pt;}
.y58_c00147{bottom:1003.773333pt;}
.y57_c00147{bottom:1005.306667pt;}
.y56_c00147{bottom:1006.080000pt;}
.y55_c00147{bottom:1007.613333pt;}
.y54_c00147{bottom:1012.986667pt;}
.y50_c00147{bottom:1026.813333pt;}
.y4c_c00147{bottom:1028.346667pt;}
.y4f_c00147{bottom:1029.120000pt;}
.y4e_c00147{bottom:1030.653333pt;}
.y51_c00147{bottom:1032.960000pt;}
.y4b_c00147{bottom:1034.493333pt;}
.y4d_c00147{bottom:1036.026667pt;}
.y53_c00147{bottom:1036.800000pt;}
.y52_c00147{bottom:1049.853333pt;}
.y49_c00147{bottom:1050.626667pt;}
.y48_c00147{bottom:1051.386667pt;}
.y42_c00147{bottom:1052.933333pt;}
.y45_c00147{bottom:1053.693333pt;}
.y43_c00147{bottom:1054.466667pt;}
.y44_c00147{bottom:1055.226667pt;}
.y46_c00147{bottom:1056.000000pt;}
.y47_c00147{bottom:1057.533333pt;}
.y4a_c00147{bottom:1061.373333pt;}
.y40_c00147{bottom:1072.133333pt;}
.y3e_c00147{bottom:1073.666667pt;}
.y3f_c00147{bottom:1074.426667pt;}
.y41_c00147{bottom:1075.200000pt;}
.y3b_c00147{bottom:1075.973333pt;}
.y3d_c00147{bottom:1076.733333pt;}
.y3c_c00147{bottom:1077.506667pt;}
.y3a_c00147{bottom:1092.866667pt;}
.y37_c00147{bottom:1096.706667pt;}
.y32_c00147{bottom:1098.240000pt;}
.y39_c00147{bottom:1099.773333pt;}
.y35_c00147{bottom:1100.546667pt;}
.y33_c00147{bottom:1101.306667pt;}
.y38_c00147{bottom:1102.080000pt;}
.y34_c00147{bottom:1102.853333pt;}
.y36_c00147{bottom:1103.613333pt;}
.y19a_c00147{bottom:1110.533333pt;}
.y2e_c00147{bottom:1117.440000pt;}
.y30_c00147{bottom:1118.213333pt;}
.y31_c00147{bottom:1121.280000pt;}
.y2d_c00147{bottom:1124.346667pt;}
.y2f_c00147{bottom:1125.120000pt;}
.y2a_c00147{bottom:1137.413333pt;}
.y28_c00147{bottom:1138.173333pt;}
.y2c_c00147{bottom:1138.946667pt;}
.y29_c00147{bottom:1139.706667pt;}
.y27_c00147{bottom:1146.626667pt;}
.y2b_c00147{bottom:1147.386667pt;}
.y25_c00147{bottom:1158.906667pt;}
.y22_c00147{bottom:1161.213333pt;}
.y24_c00147{bottom:1162.746667pt;}
.y21_c00147{bottom:1163.520000pt;}
.y23_c00147{bottom:1166.586667pt;}
.y26_c00147{bottom:1168.133333pt;}
.y20_c00147{bottom:1168.893333pt;}
.y1f_c00147{bottom:1181.186667pt;}
.y1b_c00147{bottom:1181.946667pt;}
.y19_c00147{bottom:1182.720000pt;}
.y1e_c00147{bottom:1185.026667pt;}
.y17_c00147{bottom:1188.093333pt;}
.y1d_c00147{bottom:1189.626667pt;}
.y1c_c00147{bottom:1190.400000pt;}
.y18_c00147{bottom:1191.933333pt;}
.y1a_c00147{bottom:1192.706667pt;}
.y16_c00147{bottom:1205.760000pt;}
.y14_c00147{bottom:1206.533333pt;}
.y15_c00147{bottom:1207.293333pt;}
.y13_c00147{bottom:1209.600000pt;}
.y11_c00147{bottom:1213.440000pt;}
.y12_c00147{bottom:1214.213333pt;}
.yf_c00147{bottom:1231.866667pt;}
.y10_c00147{bottom:1234.173333pt;}
.ye_c00147{bottom:1234.946667pt;}
.y7_c00147{bottom:1237.253333pt;}
.yd_c00147{bottom:1238.786667pt;}
.yc_c00147{bottom:1240.320000pt;}
.y9_c00147{bottom:1241.093333pt;}
.ya_c00147{bottom:1241.853333pt;}
.yb_c00147{bottom:1242.626667pt;}
.y8_c00147{bottom:1243.386667pt;}
.y6_c00147{bottom:1257.986667pt;}
.y5_c00147{bottom:1259.520000pt;}
.y4_c00147{bottom:1264.893333pt;}
.y3_c00147{bottom:1269.506667pt;}
.hf_c00147{height:2.764500pt;}
.h20_c00147{height:4.799479pt;}
.h5_c00147{height:5.519401pt;}
.h1e_c00147{height:8.303099pt;}
.h3_c00147{height:11.038802pt;}
.h24_c00147{height:13.822500pt;}
.he_c00147{height:16.606198pt;}
.h8_c00147{height:19.341901pt;}
.h21_c00147{height:22.125599pt;}
.h2_c00147{height:24.861302pt;}
.h6_c00147{height:27.645000pt;}
.h14_c00147{height:30.428698pt;}
.h18_c00147{height:33.164401pt;}
.h22_c00147{height:35.948099pt;}
.h23_c00147{height:38.683802pt;}
.h1b_c00147{height:41.467500pt;}
.h7_c00147{height:44.251198pt;}
.h17_c00147{height:46.986901pt;}
.hc_c00147{height:49.770599pt;}
.hd_c00147{height:52.506302pt;}
.hb_c00147{height:55.290000pt;}
.ha_c00147{height:58.073698pt;}
.h1d_c00147{height:60.809401pt;}
.h1a_c00147{height:63.593099pt;}
.h1c_c00147{height:66.328802pt;}
.h13_c00147{height:69.112500pt;}
.h9_c00147{height:71.896198pt;}
.h12_c00147{height:74.631901pt;}
.h10_c00147{height:77.415599pt;}
.h11_c00147{height:80.151302pt;}
.h16_c00147{height:82.935000pt;}
.h1f_c00147{height:85.718698pt;}
.h28_c00147{height:88.454401pt;}
.h15_c00147{height:91.238099pt;}
.h19_c00147{height:93.973802pt;}
.h27_c00147{height:96.757500pt;}
.h25_c00147{height:99.541198pt;}
.h26_c00147{height:102.276901pt;}
.h4_c00147{height:113.363698pt;}
.h1_c00147{height:1336.000000pt;}
.h0_c00147{height:1336.320000pt;}
.w0_c00147{width:967.680000pt;}
.w1_c00147{width:968.000000pt;}
.x0_c00147{left:0.000000pt;}
.x106_c00147{left:121.346667pt;}
.x103_c00147{left:145.146667pt;}
.x1_c00147{left:148.986667pt;}
.x104_c00147{left:150.533333pt;}
.x2_c00147{left:152.066667pt;}
.x105_c00147{left:155.906667pt;}
.xe4_c00147{left:187.386667pt;}
.x44_c00147{left:189.693333pt;}
.xcc_c00147{left:195.066667pt;}
.xe8_c00147{left:197.373333pt;}
.xa9_c00147{left:199.680000pt;}
.x39_c00147{left:201.213333pt;}
.x2f_c00147{left:203.520000pt;}
.x17_c00147{left:205.053333pt;}
.xd1_c00147{left:215.040000pt;}
.xa7_c00147{left:218.106667pt;}
.x7a_c00147{left:220.413333pt;}
.xa4_c00147{left:221.946667pt;}
.x35_c00147{left:224.253333pt;}
.x45_c00147{left:225.786667pt;}
.xe0_c00147{left:228.093333pt;}
.xbf_c00147{left:229.626667pt;}
.x7_c00147{left:231.173333pt;}
.x5e_c00147{left:232.706667pt;}
.x56_c00147{left:234.240000pt;}
.x15_c00147{left:235.773333pt;}
.x4c_c00147{left:240.386667pt;}
.x99_c00147{left:241.920000pt;}
.xc0_c00147{left:243.453333pt;}
.x100_c00147{left:247.293333pt;}
.x3a_c00147{left:250.373333pt;}
.x84_c00147{left:252.666667pt;}
.x57_c00147{left:254.213333pt;}
.x46_c00147{left:256.506667pt;}
.x9a_c00147{left:258.053333pt;}
.xd5_c00147{left:261.893333pt;}
.x61_c00147{left:264.186667pt;}
.x7e_c00147{left:268.800000pt;}
.x3b_c00147{left:270.333333pt;}
.x8e_c00147{left:273.413333pt;}
.x9b_c00147{left:275.706667pt;}
.x6b_c00147{left:278.013333pt;}
.x73_c00147{left:279.546667pt;}
.x58_c00147{left:281.093333pt;}
.xad_c00147{left:284.160000pt;}
.x1e_c00147{left:286.466667pt;}
.x5f_c00147{left:288.000000pt;}
.xfd_c00147{left:289.533333pt;}
.x36_c00147{left:291.840000pt;}
.x4d_c00147{left:297.213333pt;}
.xf4_c00147{left:298.746667pt;}
.xb3_c00147{left:300.293333pt;}
.x89_c00147{left:303.360000pt;}
.x8_c00147{left:305.666667pt;}
.xe9_c00147{left:307.973333pt;}
.x85_c00147{left:309.506667pt;}
.x3c_c00147{left:311.040000pt;}
.x8f_c00147{left:312.573333pt;}
.xbc_c00147{left:317.186667pt;}
.x2a_c00147{left:318.720000pt;}
.x4_c00147{left:320.253333pt;}
.x47_c00147{left:322.560000pt;}
.x74_c00147{left:326.400000pt;}
.x7b_c00147{left:328.706667pt;}
.x62_c00147{left:330.240000pt;}
.x7f_c00147{left:331.773333pt;}
.xe5_c00147{left:334.080000pt;}
.xcd_c00147{left:338.693333pt;}
.x18_c00147{left:342.533333pt;}
.x6c_c00147{left:344.066667pt;}
.xdc_c00147{left:345.600000pt;}
.x5_c00147{left:351.746667pt;}
.x1f_c00147{left:354.053333pt;}
.x9_c00147{left:357.893333pt;}
.x48_c00147{left:359.426667pt;}
.xf9_c00147{left:360.960000pt;}
.x3d_c00147{left:363.266667pt;}
.xe6_c00147{left:364.800000pt;}
.xae_c00147{left:368.640000pt;}
.x6_c00147{left:370.173333pt;}
.x30_c00147{left:373.253333pt;}
.x3_c00147{left:379.386667pt;}
.xc1_c00147{left:380.933333pt;}
.x75_c00147{left:382.466667pt;}
.x9c_c00147{left:384.773333pt;}
.xfb_c00147{left:386.306667pt;}
.x80_c00147{left:388.613333pt;}
.xc2_c00147{left:390.906667pt;}
.x6d_c00147{left:392.453333pt;}
.x59_c00147{left:394.746667pt;}
.xa_c00147{left:396.293333pt;}
.x86_c00147{left:398.586667pt;}
.x90_c00147{left:403.973333pt;}
.xf5_c00147{left:407.813333pt;}
.xce_c00147{left:410.106667pt;}
.x4e_c00147{left:412.413333pt;}
.x19_c00147{left:414.720000pt;}
.xb_c00147{left:416.253333pt;}
.x2b_c00147{left:418.560000pt;}
.xd2_c00147{left:421.626667pt;}
.x5a_c00147{left:424.706667pt;}
.xe1_c00147{left:429.306667pt;}
.x4f_c00147{left:431.613333pt;}
.xc_c00147{left:436.986667pt;}
.x20_c00147{left:438.533333pt;}
.xb7_c00147{left:440.066667pt;}
.x6e_c00147{left:441.600000pt;}
.xd6_c00147{left:445.440000pt;}
.x63_c00147{left:446.973333pt;}
.x9d_c00147{left:448.506667pt;}
.xaa_c00147{left:450.813333pt;}
.x76_c00147{left:453.120000pt;}
.xd_c00147{left:454.653333pt;}
.x31_c00147{left:458.493333pt;}
.xb8_c00147{left:460.800000pt;}
.xe2_c00147{left:462.333333pt;}
.x81_c00147{left:464.640000pt;}
.xf1_c00147{left:466.946667pt;}
.x87_c00147{left:469.253333pt;}
.x3e_c00147{left:471.546667pt;}
.x49_c00147{left:473.093333pt;}
.xaf_c00147{left:476.160000pt;}
.x21_c00147{left:477.693333pt;}
.xee_c00147{left:479.226667pt;}
.x50_c00147{left:481.533333pt;}
.x9e_c00147{left:483.066667pt;}
.xea_c00147{left:485.373333pt;}
.xc3_c00147{left:488.453333pt;}
.xc8_c00147{left:491.520000pt;}
.xe_c00147{left:494.586667pt;}
.x91_c00147{left:496.133333pt;}
.x82_c00147{left:497.666667pt;}
.x1a_c00147{left:501.506667pt;}
.xeb_c00147{left:503.040000pt;}
.x64_c00147{left:506.880000pt;}
.x83_c00147{left:508.413333pt;}
.x51_c00147{left:512.253333pt;}
.xff_c00147{left:513.786667pt;}
.xf_c00147{left:516.093333pt;}
.x2c_c00147{left:518.400000pt;}
.x77_c00147{left:520.706667pt;}
.x3f_c00147{left:522.240000pt;}
.xa8_c00147{left:524.546667pt;}
.xd3_c00147{left:527.613333pt;}
.xfa_c00147{left:529.146667pt;}
.xdd_c00147{left:530.693333pt;}
.x5b_c00147{left:532.226667pt;}
.xb0_c00147{left:533.760000pt;}
.xc9_c00147{left:538.373333pt;}
.x10_c00147{left:539.906667pt;}
.xcf_c00147{left:541.440000pt;}
.x65_c00147{left:545.280000pt;}
.xc4_c00147{left:546.813333pt;}
.xf6_c00147{left:548.346667pt;}
.xbd_c00147{left:549.893333pt;}
.x66_c00147{left:554.493333pt;}
.x22_c00147{left:556.800000pt;}
.x11_c00147{left:559.106667pt;}
.x9f_c00147{left:561.413333pt;}
.x1b_c00147{left:564.480000pt;}
.x40_c00147{left:566.013333pt;}
.x8a_c00147{left:569.093333pt;}
.xef_c00147{left:571.386667pt;}
.xd7_c00147{left:573.693333pt;}
.x4a_c00147{left:575.226667pt;}
.x6f_c00147{left:577.533333pt;}
.x12_c00147{left:579.840000pt;}
.x23_c00147{left:583.680000pt;}
.x32_c00147{left:585.213333pt;}
.x67_c00147{left:587.520000pt;}
.xf8_c00147{left:589.826667pt;}
.x7c_c00147{left:591.360000pt;}
.x41_c00147{left:593.666667pt;}
.x8b_c00147{left:595.973333pt;}
.x78_c00147{left:597.506667pt;}
.xa5_c00147{left:599.040000pt;}
.xb9_c00147{left:600.573333pt;}
.xa0_c00147{left:603.653333pt;}
.x13_c00147{left:605.186667pt;}
.x33_c00147{left:607.493333pt;}
.x24_c00147{left:610.560000pt;}
.x70_c00147{left:612.866667pt;}
.xd8_c00147{left:614.400000pt;}
.x101_c00147{left:615.933333pt;}
.x25_c00147{left:617.466667pt;}
.x4b_c00147{left:622.080000pt;}
.x52_c00147{left:624.386667pt;}
.x8c_c00147{left:628.986667pt;}
.xa1_c00147{left:630.533333pt;}
.x37_c00147{left:632.066667pt;}
.xb1_c00147{left:634.373333pt;}
.x26_c00147{left:636.666667pt;}
.x42_c00147{left:638.213333pt;}
.xab_c00147{left:640.506667pt;}
.xba_c00147{left:642.053333pt;}
.xb4_c00147{left:645.893333pt;}
.x68_c00147{left:649.733333pt;}
.x27_c00147{left:653.573333pt;}
.x16_c00147{left:655.866667pt;}
.x92_c00147{left:658.173333pt;}
.xf2_c00147{left:659.706667pt;}
.x43_c00147{left:661.253333pt;}
.xec_c00147{left:664.320000pt;}
.xd4_c00147{left:665.853333pt;}
.xc5_c00147{left:668.160000pt;}
.x60_c00147{left:672.773333pt;}
.xbe_c00147{left:674.306667pt;}
.x71_c00147{left:676.613333pt;}
.xf7_c00147{left:679.680000pt;}
.x1c_c00147{left:681.986667pt;}
.x93_c00147{left:685.053333pt;}
.xca_c00147{left:687.360000pt;}
.x2d_c00147{left:690.426667pt;}
.x53_c00147{left:695.813333pt;}
.x69_c00147{left:699.653333pt;}
.x28_c00147{left:702.720000pt;}
.x94_c00147{left:705.026667pt;}
.xf3_c00147{left:706.560000pt;}
.x34_c00147{left:710.400000pt;}
.xcb_c00147{left:712.706667pt;}
.x29_c00147{left:714.240000pt;}
.xb5_c00147{left:715.773333pt;}
.xf0_c00147{left:717.306667pt;}
.x88_c00147{left:719.613333pt;}
.x1d_c00147{left:721.146667pt;}
.x79_c00147{left:723.453333pt;}
.x8d_c00147{left:726.533333pt;}
.x95_c00147{left:733.440000pt;}
.x38_c00147{left:735.746667pt;}
.xa2_c00147{left:738.053333pt;}
.xed_c00147{left:739.586667pt;}
.xbb_c00147{left:741.120000pt;}
.x7d_c00147{left:742.653333pt;}
.xfe_c00147{left:744.186667pt;}
.x14_c00147{left:745.733333pt;}
.xfc_c00147{left:747.266667pt;}
.xb6_c00147{left:749.573333pt;}
.x72_c00147{left:751.866667pt;}
.x102_c00147{left:754.946667pt;}
.x96_c00147{left:762.626667pt;}
.x2e_c00147{left:765.693333pt;}
.xc6_c00147{left:767.226667pt;}
.xde_c00147{left:773.373333pt;}
.x54_c00147{left:775.680000pt;}
.xc7_c00147{left:777.986667pt;}
.x5c_c00147{left:780.293333pt;}
.x6a_c00147{left:783.360000pt;}
.xac_c00147{left:785.666667pt;}
.xb2_c00147{left:788.733333pt;}
.x5d_c00147{left:791.813333pt;}
.xd9_c00147{left:794.106667pt;}
.xdf_c00147{left:795.653333pt;}
.x97_c00147{left:797.946667pt;}
.x55_c00147{left:800.253333pt;}
.xda_c00147{left:802.560000pt;}
.xd0_c00147{left:808.706667pt;}
.xe3_c00147{left:811.013333pt;}
.xa3_c00147{left:815.613333pt;}
.xe7_c00147{left:819.453333pt;}
.xa6_c00147{left:820.986667pt;}
.x98_c00147{left:822.533333pt;}
.xdb_c00147{left:826.373333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6cf182c7c501e91738ba56cf.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5b_c00148{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00148{transform:matrix(0.030125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030125,0.000000,0.000000,0.250000,0,0);}
.m45_c00148{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);}
.me2_c00148{transform:matrix(0.078825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078825,0.000000,0.000000,0.250000,0,0);}
.m110_c00148{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m192_c00148{transform:matrix(0.090575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090575,0.000000,0.000000,0.250000,0,0);}
.m93_c00148{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);}
.mdf_c00148{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);}
.mde_c00148{transform:matrix(0.104200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104200,0.000000,0.000000,0.250000,0,0);}
.me4_c00148{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);}
.mee_c00148{transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);}
.m79_c00148{transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);}
.m98_c00148{transform:matrix(0.120675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120675,0.000000,0.000000,0.250000,0,0);}
.m143_c00148{transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);}
.m11c_c00148{transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);}
.m90_c00148{transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);}
.m65_c00148{transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);}
.m12a_c00148{transform:matrix(0.127950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127950,0.000000,0.000000,0.250000,0,0);}
.m7a_c00148{transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);}
.m162_c00148{transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);}
.m138_c00148{transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);}
.m132_c00148{transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);}
.m8c_c00148{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.me1_c00148{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);}
.m147_c00148{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m59_c00148{transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);}
.m18f_c00148{transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);}
.m8a_c00148{transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);}
.m121_c00148{transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);}
.m114_c00148{transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);}
.m10b_c00148{transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);}
.m12b_c00148{transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);}
.m178_c00148{transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);}
.m2f_c00148{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00148{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.mb2_c00148{transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);}
.m81_c00148{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);}
.m11e_c00148{transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);}
.me8_c00148{transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);}
.m95_c00148{transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);}
.m13f_c00148{transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);}
.m148_c00148{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m127_c00148{transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);}
.m161_c00148{transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);}
.m16b_c00148{transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);}
.m163_c00148{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);}
.m40_c00148{transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);}
.m85_c00148{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);}
.m173_c00148{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m135_c00148{transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);}
.m111_c00148{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m183_c00148{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.mc0_c00148{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.m184_c00148{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.maa_c00148{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.m194_c00148{transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);}
.m83_c00148{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);}
.m152_c00148{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);}
.m182_c00148{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m153_c00148{transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);}
.m27_c00148{transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);}
.m17a_c00148{transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);}
.mc3_c00148{transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);}
.mc9_c00148{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m141_c00148{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m13d_c00148{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.m136_c00148{transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);}
.m142_c00148{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.med_c00148{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m123_c00148{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m94_c00148{transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);}
.m167_c00148{transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);}
.m31_c00148{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.m24_c00148{transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);}
.m122_c00148{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.m2e_c00148{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);}
.m18a_c00148{transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);}
.m14f_c00148{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.mca_c00148{transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);}
.m6f_c00148{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.m46_c00148{transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);}
.m131_c00148{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);}
.me5_c00148{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.m18b_c00148{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);}
.m15d_c00148{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m187_c00148{transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);}
.m36_c00148{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.m118_c00148{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m119_c00148{transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);}
.m10a_c00148{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m11a_c00148{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.mc4_c00148{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m3a_c00148{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);}
.m92_c00148{transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);}
.m102_c00148{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m1c_c00148{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m186_c00148{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);}
.m17e_c00148{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m134_c00148{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m17d_c00148{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m97_c00148{transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);}
.m150_c00148{transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);}
.mfa_c00148{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m18d_c00148{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);}
.m180_c00148{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m1a_c00148{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);}
.m77_c00148{transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);}
.m10f_c00148{transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);}
.mc6_c00148{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00148{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m12_c00148{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.m14_c00148{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m11f_c00148{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);}
.m116_c00148{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);}
.m49_c00148{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.mf7_c00148{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.m175_c00148{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m37_c00148{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);}
.m76_c00148{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m149_c00148{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.m124_c00148{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);}
.m47_c00148{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);}
.me0_c00148{transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);}
.m191_c00148{transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);}
.m3f_c00148{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.mf1_c00148{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);}
.m172_c00148{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m129_c00148{transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);}
.m58_c00148{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m7c_c00148{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.mbb_c00148{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.mb1_c00148{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m8d_c00148{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.mdc_c00148{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);}
.m4c_c00148{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);}
.m2b_c00148{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);}
.m140_c00148{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m8_c00148{transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);}
.mec_c00148{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);}
.m16e_c00148{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m73_c00148{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);}
.mbf_c00148{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.m62_c00148{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m164_c00148{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m19b_c00148{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);}
.m16f_c00148{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m5_c00148{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.mfe_c00148{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m13a_c00148{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);}
.mf8_c00148{transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);}
.m56_c00148{transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);}
.m12d_c00148{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);}
.m18_c00148{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.mbe_c00148{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.mcd_c00148{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.mb5_c00148{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.mf5_c00148{transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);}
.m16d_c00148{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.m107_c00148{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m195_c00148{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m53_c00148{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m16a_c00148{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.m193_c00148{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m14a_c00148{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);}
.mf0_c00148{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.ma7_c00148{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);}
.mf_c00148{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m1d_c00148{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md9_c00148{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m96_c00148{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);}
.meb_c00148{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);}
.m13e_c00148{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);}
.mb6_c00148{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m35_c00148{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.m168_c00148{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m13b_c00148{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);}
.m1f_c00148{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m55_c00148{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);}
.m174_c00148{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m190_c00148{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);}
.m6b_c00148{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.ma8_c00148{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.m10c_c00148{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00148{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);}
.m44_c00148{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m80_c00148{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);}
.m179_c00148{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);}
.m60_c00148{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);}
.m15_c00148{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m117_c00148{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.m87_c00148{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);}
.m33_c00148{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.m61_c00148{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);}
.m14e_c00148{transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);}
.mc2_c00148{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.m106_c00148{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);}
.mce_c00148{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.m14c_c00148{transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);}
.me9_c00148{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);}
.m11d_c00148{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m71_c00148{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.mbd_c00148{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m18e_c00148{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.m4f_c00148{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);}
.m128_c00148{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.mba_c00148{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.m1b_c00148{transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);}
.m185_c00148{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.mfc_c00148{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);}
.m17b_c00148{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m34_c00148{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.mda_c00148{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);}
.mb4_c00148{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);}
.m10e_c00148{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.ma6_c00148{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m13_c00148{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mf3_c00148{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.mf9_c00148{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.m170_c00148{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);}
.m74_c00148{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.mfb_c00148{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);}
.mfd_c00148{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);}
.m108_c00148{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);}
.m20_c00148{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m17f_c00148{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);}
.ma_c00148{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);}
.m17c_c00148{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.md0_c00148{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m42_c00148{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.mef_c00148{transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);}
.m171_c00148{transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);}
.m29_c00148{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m154_c00148{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);}
.m137_c00148{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);}
.m115_c00148{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.md6_c00148{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00148{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);}
.m169_c00148{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);}
.m4d_c00148{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);}
.mad_c00148{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.m105_c00148{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.mbc_c00148{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.ma4_c00148{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.m7b_c00148{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m9f_c00148{transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);}
.mc1_c00148{transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);}
.mb9_c00148{transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);}
.mae_c00148{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);}
.m11_c00148{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);}
.mc7_c00148{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.mdb_c00148{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.m133_c00148{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);}
.m14d_c00148{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);}
.m109_c00148{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);}
.m39_c00148{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.md2_c00148{transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);}
.m28_c00148{transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);}
.m4b_c00148{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.m3b_c00148{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);}
.m17_c00148{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);}
.me7_c00148{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);}
.m12f_c00148{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m14b_c00148{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m8b_c00148{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);}
.m177_c00148{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m100_c00148{transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);}
.m12c_c00148{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.mdd_c00148{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m139_c00148{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);}
.m113_c00148{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m67_c00148{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);}
.m68_c00148{transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);}
.m9_c00148{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);}
.m7f_c00148{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.ma5_c00148{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.m7e_c00148{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);}
.m3d_c00148{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.mc_c00148{transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);}
.m3e_c00148{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m2d_c00148{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);}
.m165_c00148{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);}
.m89_c00148{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);}
.m11b_c00148{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);}
.m69_c00148{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);}
.mc8_c00148{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);}
.m18c_c00148{transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);}
.ma3_c00148{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);}
.m126_c00148{transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);}
.m1e_c00148{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m176_c00148{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.mab_c00148{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);}
.me6_c00148{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);}
.md8_c00148{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);}
.m15c_c00148{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m199_c00148{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);}
.mc5_c00148{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);}
.m15b_c00148{transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);}
.maf_c00148{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);}
.ma0_c00148{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);}
.m91_c00148{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);}
.m13c_c00148{transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);}
.m5e_c00148{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);}
.md7_c00148{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m145_c00148{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);}
.mb7_c00148{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);}
.m12e_c00148{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);}
.mb8_c00148{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);}
.m151_c00148{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);}
.m16c_c00148{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.mb0_c00148{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);}
.m9e_c00148{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.mf6_c00148{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.md5_c00148{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);}
.m9d_c00148{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c00148{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);}
.m6a_c00148{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);}
.ma9_c00148{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);}
.m63_c00148{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);}
.m54_c00148{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m41_c00148{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c00148{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00148{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);}
.m38_c00148{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00148{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);}
.m43_c00148{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);}
.m23_c00148{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m32_c00148{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);}
.m5d_c00148{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m82_c00148{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c00148{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);}
.md_c00148{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00148{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);}
.m50_c00148{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);}
.m10_c00148{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m75_c00148{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00148{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);}
.m181_c00148{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10d_c00148{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00148{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);}
.m6c_c00148{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00148{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00148{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m25_c00148{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00148{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c00148{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mff_c00148{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m66_c00148{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);}
.md4_c00148{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m51_c00148{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00148{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00148{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);}
.m160_c00148{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);}
.m86_c00148{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c00148{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c00148{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);}
.m198_c00148{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m78_c00148{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00148{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m30_c00148{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);}
.m104_c00148{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m0_c00148{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m64_c00148{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m101_c00148{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);}
.m48_c00148{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m15f_c00148{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c00148{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.me3_c00148{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m21_c00148{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);}
.m197_c00148{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);}
.mb3_c00148{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m158_c00148{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);}
.md1_c00148{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m112_c00148{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);}
.mb_c00148{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m72_c00148{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m88_c00148{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m103_c00148{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m166_c00148{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);}
.me_c00148{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00148{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m125_c00148{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00148{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m146_c00148{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m57_c00148{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00148{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m130_c00148{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);}
.mea_c00148{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);}
.m4e_c00148{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m144_c00148{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);}
.m70_c00148{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.md3_c00148{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m120_c00148{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00148{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m52_c00148{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m84_c00148{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00148{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m15e_c00148{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);}
.mf2_c00148{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m99_c00148{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m16_c00148{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m188_c00148{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m159_c00148{transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);}
.mac_c00148{transform:matrix(0.997500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.997500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.997500,0.000000,0.000000,0.250000,0,0);}
.m189_c00148{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m19a_c00148{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00148{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m155_c00148{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m196_c00148{transform:matrix(1.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.400000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00148{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m15a_c00148{transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);}
.m157_c00148{transform:matrix(1.985000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.985000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.985000,0.000000,0.000000,0.250000,0,0);}
.m156_c00148{transform:matrix(3.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.585000,0.000000,0.000000,0.250000,0,0);}
.v2_c00148{vertical-align:-10.380000px;}
.v1_c00148{vertical-align:-3.420000px;}
.v0_c00148{vertical-align:0.000000px;}
.ls1_c00148{letter-spacing:0.000000px;}
.ls0_c00148{letter-spacing:34.119600px;}
.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:-28.099200px;}
.ws2_c00148{word-spacing:0.000000px;}
.ws1_c00148{word-spacing:60.701198px;}
.fc0_c00148{color:transparent;}
.fs18_c00148{font-size:3.456000px;}
.fs13_c00148{font-size:6.000000px;}
.fs22_c00148{font-size:6.900000px;}
.fsf_c00148{font-size:10.380000px;}
.fs23_c00148{font-size:13.800000px;}
.fs0_c00148{font-size:17.280000px;}
.fsd_c00148{font-size:20.760000px;}
.fs17_c00148{font-size:24.180000px;}
.fs15_c00148{font-size:27.660000px;}
.fs16_c00148{font-size:31.080000px;}
.fs9_c00148{font-size:34.560000px;}
.fs8_c00148{font-size:38.040000px;}
.fs1b_c00148{font-size:41.460000px;}
.fs14_c00148{font-size:44.940000px;}
.fs1c_c00148{font-size:48.360000px;}
.fs1a_c00148{font-size:51.840000px;}
.fs19_c00148{font-size:55.320000px;}
.fsb_c00148{font-size:58.740000px;}
.fs4_c00148{font-size:62.220000px;}
.fs5_c00148{font-size:65.640000px;}
.fs2_c00148{font-size:69.120000px;}
.fs6_c00148{font-size:72.600000px;}
.fs12_c00148{font-size:76.020000px;}
.fs1_c00148{font-size:79.500000px;}
.fs3_c00148{font-size:82.920000px;}
.fs10_c00148{font-size:86.400000px;}
.fsa_c00148{font-size:89.880000px;}
.fse_c00148{font-size:93.300000px;}
.fsc_c00148{font-size:96.780000px;}
.fs7_c00148{font-size:100.200000px;}
.fs11_c00148{font-size:103.680000px;}
.fs21_c00148{font-size:107.160000px;}
.fs25_c00148{font-size:110.580000px;}
.fs1d_c00148{font-size:114.060000px;}
.fs1e_c00148{font-size:117.480000px;}
.fs1f_c00148{font-size:120.960000px;}
.fs20_c00148{font-size:124.440000px;}
.fs24_c00148{font-size:165.900000px;}
.y0_c00148{bottom:0.000000px;}
.y199_c00148{bottom:127.005000px;}
.y198_c00148{bottom:134.790000px;}
.y190_c00148{bottom:214.275000px;}
.y191_c00148{bottom:215.130000px;}
.y192_c00148{bottom:218.595000px;}
.y197_c00148{bottom:219.450000px;}
.y193_c00148{bottom:230.685000px;}
.y18c_c00148{bottom:231.555000px;}
.y18f_c00148{bottom:232.410000px;}
.y18d_c00148{bottom:234.150000px;}
.y18e_c00148{bottom:235.875000px;}
.y18a_c00148{bottom:236.730000px;}
.y187_c00148{bottom:237.600000px;}
.y188_c00148{bottom:238.470000px;}
.y186_c00148{bottom:239.325000px;}
.y189_c00148{bottom:241.920000px;}
.y184_c00148{bottom:246.240000px;}
.y18b_c00148{bottom:247.965000px;}
.y185_c00148{bottom:253.155000px;}
.y182_c00148{bottom:259.200000px;}
.y181_c00148{bottom:260.070000px;}
.y17f_c00148{bottom:263.520000px;}
.y180_c00148{bottom:264.390000px;}
.y183_c00148{bottom:265.245000px;}
.y17c_c00148{bottom:266.115000px;}
.y17b_c00148{bottom:266.970000px;}
.y17e_c00148{bottom:270.435000px;}
.y17d_c00148{bottom:271.290000px;}
.y179_c00148{bottom:284.250000px;}
.y178_c00148{bottom:285.990000px;}
.y175_c00148{bottom:287.715000px;}
.y173_c00148{bottom:289.440000px;}
.y176_c00148{bottom:290.310000px;}
.y17a_c00148{bottom:291.165000px;}
.y177_c00148{bottom:293.760000px;}
.y174_c00148{bottom:295.485000px;}
.y172_c00148{bottom:297.210000px;}
.y171_c00148{bottom:298.080000px;}
.y16f_c00148{bottom:311.040000px;}
.y170_c00148{bottom:313.635000px;}
.y16c_c00148{bottom:316.230000px;}
.y16e_c00148{bottom:320.550000px;}
.y16d_c00148{bottom:322.275000px;}
.y16a_c00148{bottom:336.090000px;}
.y164_c00148{bottom:336.960000px;}
.y169_c00148{bottom:337.830000px;}
.y167_c00148{bottom:338.685000px;}
.y165_c00148{bottom:339.555000px;}
.y16b_c00148{bottom:342.150000px;}
.y168_c00148{bottom:344.730000px;}
.y166_c00148{bottom:345.600000px;}
.y163_c00148{bottom:360.285000px;}
.y162_c00148{bottom:361.155000px;}
.y15e_c00148{bottom:363.750000px;}
.y161_c00148{bottom:364.605000px;}
.y15f_c00148{bottom:365.475000px;}
.y160_c00148{bottom:372.390000px;}
.y15d_c00148{bottom:385.350000px;}
.y15c_c00148{bottom:387.075000px;}
.y15a_c00148{bottom:388.800000px;}
.y15b_c00148{bottom:391.395000px;}
.y159_c00148{bottom:392.250000px;}
.y157_c00148{bottom:397.440000px;}
.y158_c00148{bottom:399.165000px;}
.y155_c00148{bottom:412.125000px;}
.y154_c00148{bottom:413.850000px;}
.y152_c00148{bottom:414.720000px;}
.y156_c00148{bottom:415.590000px;}
.y153_c00148{bottom:418.170000px;}
.y150_c00148{bottom:421.635000px;}
.y151_c00148{bottom:423.360000px;}
.y14f_c00148{bottom:424.230000px;}
.y14c_c00148{bottom:440.640000px;}
.y14e_c00148{bottom:441.510000px;}
.y14d_c00148{bottom:442.365000px;}
.y145_c00148{bottom:443.235000px;}
.y14b_c00148{bottom:444.090000px;}
.y149_c00148{bottom:444.960000px;}
.y14a_c00148{bottom:448.410000px;}
.y147_c00148{bottom:449.280000px;}
.y148_c00148{bottom:450.150000px;}
.y13f_c00148{bottom:451.005000px;}
.y13e_c00148{bottom:455.325000px;}
.y143_c00148{bottom:456.195000px;}
.y144_c00148{bottom:457.050000px;}
.y141_c00148{bottom:457.920000px;}
.y142_c00148{bottom:458.790000px;}
.y140_c00148{bottom:459.645000px;}
.y146_c00148{bottom:460.515000px;}
.y13d_c00148{bottom:463.965000px;}
.y13c_c00148{bottom:466.560000px;}
.y13b_c00148{bottom:467.430000px;}
.y13a_c00148{bottom:470.010000px;}
.y139_c00148{bottom:471.750000px;}
.y136_c00148{bottom:472.605000px;}
.y135_c00148{bottom:475.200000px;}
.y134_c00148{bottom:482.115000px;}
.y138_c00148{bottom:484.710000px;}
.y137_c00148{bottom:488.160000px;}
.y133_c00148{bottom:489.030000px;}
.y131_c00148{bottom:489.885000px;}
.y130_c00148{bottom:491.610000px;}
.y12c_c00148{bottom:492.480000px;}
.y12e_c00148{bottom:493.350000px;}
.y132_c00148{bottom:497.670000px;}
.y12f_c00148{bottom:499.395000px;}
.y12b_c00148{bottom:514.080000px;}
.y12a_c00148{bottom:514.950000px;}
.y12d_c00148{bottom:515.805000px;}
.y127_c00148{bottom:516.675000px;}
.y126_c00148{bottom:517.530000px;}
.y124_c00148{bottom:520.125000px;}
.y125_c00148{bottom:520.995000px;}
.y129_c00148{bottom:521.850000px;}
.y128_c00148{bottom:522.720000px;}
.y123_c00148{bottom:529.635000px;}
.y121_c00148{bottom:539.130000px;}
.y11e_c00148{bottom:540.000000px;}
.y11b_c00148{bottom:541.725000px;}
.y122_c00148{bottom:543.450000px;}
.y11d_c00148{bottom:544.320000px;}
.y11c_c00148{bottom:545.190000px;}
.y120_c00148{bottom:546.915000px;}
.y11f_c00148{bottom:547.770000px;}
.y11a_c00148{bottom:565.920000px;}
.y116_c00148{bottom:567.645000px;}
.y113_c00148{bottom:569.370000px;}
.y115_c00148{bottom:571.110000px;}
.y119_c00148{bottom:571.965000px;}
.y118_c00148{bottom:573.690000px;}
.y117_c00148{bottom:574.560000px;}
.y114_c00148{bottom:575.430000px;}
.y110_c00148{bottom:590.115000px;}
.y111_c00148{bottom:590.970000px;}
.y112_c00148{bottom:591.840000px;}
.y10d_c00148{bottom:592.710000px;}
.y10e_c00148{bottom:593.565000px;}
.y10f_c00148{bottom:600.480000px;}
.y10a_c00148{bottom:615.165000px;}
.y107_c00148{bottom:616.035000px;}
.y109_c00148{bottom:616.890000px;}
.y105_c00148{bottom:617.760000px;}
.y106_c00148{bottom:618.630000px;}
.y104_c00148{bottom:619.485000px;}
.y10c_c00148{bottom:620.355000px;}
.y10b_c00148{bottom:622.080000px;}
.y108_c00148{bottom:622.950000px;}
.y103_c00148{bottom:638.490000px;}
.y100_c00148{bottom:641.085000px;}
.yfe_c00148{bottom:641.955000px;}
.yfc_c00148{bottom:642.810000px;}
.yff_c00148{bottom:643.680000px;}
.y102_c00148{bottom:647.130000px;}
.yfd_c00148{bottom:648.000000px;}
.y101_c00148{bottom:648.870000px;}
.yfa_c00148{bottom:663.555000px;}
.yfb_c00148{bottom:664.410000px;}
.yf8_c00148{bottom:667.005000px;}
.yf6_c00148{bottom:668.730000px;}
.yf7_c00148{bottom:670.470000px;}
.yf9_c00148{bottom:673.920000px;}
.y195_c00148{bottom:689.475000px;}
.yf3_c00148{bottom:690.330000px;}
.yf1_c00148{bottom:691.200000px;}
.yee_c00148{bottom:692.070000px;}
.yf5_c00148{bottom:692.925000px;}
.y196_c00148{bottom:693.795000px;}
.yea_c00148{bottom:694.650000px;}
.yf2_c00148{bottom:695.520000px;}
.yec_c00148{bottom:696.390000px;}
.yf4_c00148{bottom:697.245000px;}
.yf0_c00148{bottom:698.115000px;}
.yef_c00148{bottom:698.970000px;}
.yed_c00148{bottom:699.840000px;}
.yeb_c00148{bottom:700.710000px;}
.ye7_c00148{bottom:715.395000px;}
.ye4_c00148{bottom:716.250000px;}
.ye3_c00148{bottom:717.120000px;}
.ye2_c00148{bottom:718.845000px;}
.ye9_c00148{bottom:720.570000px;}
.ye8_c00148{bottom:722.310000px;}
.ye6_c00148{bottom:723.165000px;}
.ye5_c00148{bottom:724.035000px;}
.ye1_c00148{bottom:724.890000px;}
.ye0_c00148{bottom:732.675000px;}
.ydd_c00148{bottom:739.590000px;}
.ydb_c00148{bottom:742.170000px;}
.ydc_c00148{bottom:743.910000px;}
.yd8_c00148{bottom:744.765000px;}
.ydf_c00148{bottom:745.635000px;}
.yde_c00148{bottom:746.490000px;}
.yd9_c00148{bottom:748.230000px;}
.yda_c00148{bottom:749.085000px;}
.yd7_c00148{bottom:749.955000px;}
.yd6_c00148{bottom:761.190000px;}
.yd5_c00148{bottom:763.770000px;}
.yd2_c00148{bottom:765.510000px;}
.yd0_c00148{bottom:767.235000px;}
.yd4_c00148{bottom:768.960000px;}
.yd1_c00148{bottom:770.685000px;}
.y194_c00148{bottom:771.555000px;}
.yd3_c00148{bottom:772.410000px;}
.yce_c00148{bottom:787.965000px;}
.ycd_c00148{bottom:788.835000px;}
.yc9_c00148{bottom:789.690000px;}
.yca_c00148{bottom:790.560000px;}
.yc7_c00148{bottom:791.430000px;}
.yc6_c00148{bottom:792.285000px;}
.ycc_c00148{bottom:794.010000px;}
.ycf_c00148{bottom:794.880000px;}
.ycb_c00148{bottom:797.475000px;}
.yc8_c00148{bottom:798.330000px;}
.yc4_c00148{bottom:813.885000px;}
.ybf_c00148{bottom:814.755000px;}
.yc2_c00148{bottom:815.610000px;}
.yc3_c00148{bottom:817.350000px;}
.yc1_c00148{bottom:818.205000px;}
.yc5_c00148{bottom:819.930000px;}
.yc0_c00148{bottom:822.525000px;}
.ybe_c00148{bottom:834.630000px;}
.yba_c00148{bottom:837.210000px;}
.ybd_c00148{bottom:838.950000px;}
.yb8_c00148{bottom:839.805000px;}
.yb7_c00148{bottom:840.675000px;}
.ybb_c00148{bottom:842.400000px;}
.yb9_c00148{bottom:843.270000px;}
.ybc_c00148{bottom:844.995000px;}
.yb0_c00148{bottom:845.850000px;}
.yb3_c00148{bottom:857.085000px;}
.yb4_c00148{bottom:857.955000px;}
.yac_c00148{bottom:858.810000px;}
.yaf_c00148{bottom:859.680000px;}
.yae_c00148{bottom:860.550000px;}
.yb5_c00148{bottom:863.130000px;}
.yb6_c00148{bottom:864.870000px;}
.yad_c00148{bottom:869.190000px;}
.yb2_c00148{bottom:870.045000px;}
.yb1_c00148{bottom:870.915000px;}
.yab_c00148{bottom:888.195000px;}
.yaa_c00148{bottom:891.645000px;}
.ya9_c00148{bottom:893.370000px;}
.ya6_c00148{bottom:895.110000px;}
.ya8_c00148{bottom:895.965000px;}
.ya7_c00148{bottom:896.835000px;}
.ya5_c00148{bottom:897.690000px;}
.ya3_c00148{bottom:914.115000px;}
.ya2_c00148{bottom:914.970000px;}
.ya1_c00148{bottom:915.840000px;}
.ya4_c00148{bottom:921.030000px;}
.ya0_c00148{bottom:923.610000px;}
.y9f_c00148{bottom:938.310000px;}
.y9c_c00148{bottom:939.165000px;}
.y9b_c00148{bottom:940.035000px;}
.y9e_c00148{bottom:940.890000px;}
.y9a_c00148{bottom:942.630000px;}
.y9d_c00148{bottom:943.485000px;}
.y99_c00148{bottom:945.210000px;}
.y98_c00148{bottom:946.950000px;}
.y97_c00148{bottom:962.490000px;}
.y95_c00148{bottom:963.360000px;}
.y94_c00148{bottom:964.230000px;}
.y93_c00148{bottom:965.085000px;}
.y96_c00148{bottom:971.130000px;}
.y90_c00148{bottom:988.410000px;}
.y92_c00148{bottom:989.280000px;}
.y8b_c00148{bottom:990.150000px;}
.y8f_c00148{bottom:992.730000px;}
.y8c_c00148{bottom:993.600000px;}
.y8d_c00148{bottom:995.325000px;}
.y91_c00148{bottom:996.195000px;}
.y8e_c00148{bottom:997.920000px;}
.y88_c00148{bottom:1014.330000px;}
.y87_c00148{bottom:1015.200000px;}
.y85_c00148{bottom:1017.795000px;}
.y89_c00148{bottom:1021.245000px;}
.y8a_c00148{bottom:1022.115000px;}
.y86_c00148{bottom:1023.840000px;}
.y83_c00148{bottom:1039.395000px;}
.y7c_c00148{bottom:1040.250000px;}
.y7e_c00148{bottom:1041.120000px;}
.y80_c00148{bottom:1042.845000px;}
.y81_c00148{bottom:1043.715000px;}
.y84_c00148{bottom:1045.440000px;}
.y82_c00148{bottom:1046.310000px;}
.y7f_c00148{bottom:1047.165000px;}
.y7d_c00148{bottom:1048.890000px;}
.y78_c00148{bottom:1065.315000px;}
.y79_c00148{bottom:1066.170000px;}
.y7a_c00148{bottom:1067.040000px;}
.y7b_c00148{bottom:1070.490000px;}
.y77_c00148{bottom:1072.230000px;}
.y76_c00148{bottom:1074.810000px;}
.y71_c00148{bottom:1087.770000px;}
.y73_c00148{bottom:1088.640000px;}
.y6f_c00148{bottom:1093.830000px;}
.y70_c00148{bottom:1095.555000px;}
.y72_c00148{bottom:1096.410000px;}
.y6e_c00148{bottom:1097.280000px;}
.y6c_c00148{bottom:1098.150000px;}
.y74_c00148{bottom:1099.005000px;}
.y6d_c00148{bottom:1101.600000px;}
.y75_c00148{bottom:1103.325000px;}
.y67_c00148{bottom:1108.515000px;}
.y69_c00148{bottom:1109.370000px;}
.y68_c00148{bottom:1110.240000px;}
.y6a_c00148{bottom:1112.835000px;}
.y65_c00148{bottom:1118.010000px;}
.y6b_c00148{bottom:1121.475000px;}
.y66_c00148{bottom:1122.330000px;}
.y64_c00148{bottom:1135.290000px;}
.y62_c00148{bottom:1137.030000px;}
.y63_c00148{bottom:1137.885000px;}
.y5e_c00148{bottom:1139.610000px;}
.y5b_c00148{bottom:1140.480000px;}
.y60_c00148{bottom:1142.205000px;}
.y5d_c00148{bottom:1143.930000px;}
.y5c_c00148{bottom:1145.670000px;}
.y61_c00148{bottom:1146.525000px;}
.y5a_c00148{bottom:1147.395000px;}
.y5f_c00148{bottom:1148.250000px;}
.y59_c00148{bottom:1158.630000px;}
.y58_c00148{bottom:1160.355000px;}
.y57_c00148{bottom:1164.675000px;}
.y54_c00148{bottom:1165.530000px;}
.y55_c00148{bottom:1166.400000px;}
.y50_c00148{bottom:1167.270000px;}
.y53_c00148{bottom:1168.125000px;}
.y56_c00148{bottom:1168.995000px;}
.y4e_c00148{bottom:1169.850000px;}
.y51_c00148{bottom:1171.590000px;}
.y52_c00148{bottom:1172.445000px;}
.y4d_c00148{bottom:1176.765000px;}
.y4f_c00148{bottom:1181.085000px;}
.y4c_c00148{bottom:1188.000000px;}
.y43_c00148{bottom:1188.870000px;}
.y44_c00148{bottom:1189.725000px;}
.y4a_c00148{bottom:1190.595000px;}
.y4b_c00148{bottom:1191.450000px;}
.y46_c00148{bottom:1192.320000px;}
.y49_c00148{bottom:1193.190000px;}
.y48_c00148{bottom:1194.045000px;}
.y47_c00148{bottom:1196.640000px;}
.y45_c00148{bottom:1197.510000px;}
.y38_c00148{bottom:1198.365000px;}
.y42_c00148{bottom:1199.235000px;}
.y41_c00148{bottom:1200.960000px;}
.y3d_c00148{bottom:1202.685000px;}
.y3b_c00148{bottom:1203.555000px;}
.y3a_c00148{bottom:1205.280000px;}
.y3e_c00148{bottom:1206.150000px;}
.y40_c00148{bottom:1207.005000px;}
.y3c_c00148{bottom:1207.875000px;}
.y39_c00148{bottom:1208.730000px;}
.y3f_c00148{bottom:1213.050000px;}
.y34_c00148{bottom:1213.920000px;}
.y31_c00148{bottom:1214.790000px;}
.y33_c00148{bottom:1215.645000px;}
.y32_c00148{bottom:1216.515000px;}
.y2d_c00148{bottom:1217.370000px;}
.y35_c00148{bottom:1218.240000px;}
.y30_c00148{bottom:1219.110000px;}
.y2f_c00148{bottom:1219.965000px;}
.y2e_c00148{bottom:1222.560000px;}
.y37_c00148{bottom:1232.070000px;}
.y36_c00148{bottom:1234.650000px;}
.y2c_c00148{bottom:1238.115000px;}
.y29_c00148{bottom:1238.970000px;}
.y27_c00148{bottom:1239.840000px;}
.y2b_c00148{bottom:1240.710000px;}
.y2a_c00148{bottom:1242.435000px;}
.y28_c00148{bottom:1244.160000px;}
.y26_c00148{bottom:1245.030000px;}
.y24_c00148{bottom:1263.165000px;}
.y23_c00148{bottom:1264.035000px;}
.y22_c00148{bottom:1270.950000px;}
.y25_c00148{bottom:1271.805000px;}
.y21_c00148{bottom:1272.675000px;}
.y1f_c00148{bottom:1288.230000px;}
.y1e_c00148{bottom:1289.085000px;}
.y1c_c00148{bottom:1289.955000px;}
.y20_c00148{bottom:1290.810000px;}
.y1d_c00148{bottom:1296.870000px;}
.y1b_c00148{bottom:1297.725000px;}
.y1a_c00148{bottom:1313.280000px;}
.y17_c00148{bottom:1314.150000px;}
.y15_c00148{bottom:1315.005000px;}
.y18_c00148{bottom:1315.875000px;}
.y19_c00148{bottom:1320.195000px;}
.y14_c00148{bottom:1321.050000px;}
.y13_c00148{bottom:1321.920000px;}
.y16_c00148{bottom:1322.790000px;}
.yf_c00148{bottom:1338.330000px;}
.y11_c00148{bottom:1339.200000px;}
.yb_c00148{bottom:1340.070000px;}
.yc_c00148{bottom:1340.925000px;}
.ye_c00148{bottom:1343.520000px;}
.y12_c00148{bottom:1345.245000px;}
.y10_c00148{bottom:1346.115000px;}
.yd_c00148{bottom:1346.970000px;}
.y9_c00148{bottom:1363.395000px;}
.y4_c00148{bottom:1364.250000px;}
.y6_c00148{bottom:1368.570000px;}
.y8_c00148{bottom:1369.440000px;}
.y5_c00148{bottom:1371.165000px;}
.y7_c00148{bottom:1372.035000px;}
.ya_c00148{bottom:1372.890000px;}
.y2_c00148{bottom:1402.275000px;}
.y3_c00148{bottom:1403.130000px;}
.y1_c00148{bottom:1439.430000px;}
.h1a_c00148{height:3.110063px;}
.h15_c00148{height:5.399414px;}
.h24_c00148{height:6.209326px;}
.h11_c00148{height:9.340986px;}
.h25_c00148{height:12.418652px;}
.h2_c00148{height:15.550313px;}
.hf_c00148{height:18.681973px;}
.h19_c00148{height:21.759639px;}
.h17_c00148{height:24.891299px;}
.h18_c00148{height:27.968965px;}
.hb_c00148{height:31.100625px;}
.ha_c00148{height:34.232285px;}
.h1d_c00148{height:37.309951px;}
.h16_c00148{height:40.441611px;}
.h1e_c00148{height:43.519277px;}
.h1c_c00148{height:46.650937px;}
.h1b_c00148{height:49.782598px;}
.hd_c00148{height:52.860264px;}
.h6_c00148{height:55.991924px;}
.h7_c00148{height:59.069590px;}
.h4_c00148{height:62.201250px;}
.h8_c00148{height:65.332910px;}
.h14_c00148{height:68.410576px;}
.h3_c00148{height:71.542236px;}
.h5_c00148{height:74.619902px;}
.h12_c00148{height:77.751563px;}
.hc_c00148{height:80.883223px;}
.h10_c00148{height:83.960889px;}
.he_c00148{height:87.092549px;}
.h9_c00148{height:90.170215px;}
.h13_c00148{height:93.301875px;}
.h23_c00148{height:96.433535px;}
.h27_c00148{height:99.511201px;}
.h1f_c00148{height:102.642861px;}
.h20_c00148{height:105.720527px;}
.h21_c00148{height:108.852188px;}
.h22_c00148{height:111.983848px;}
.h26_c00148{height:149.293799px;}
.h0_c00148{height:1517.190000px;}
.h1_c00148{height:1517.250000px;}
.w0_c00148{width:1090.365000px;}
.w1_c00148{width:1090.500000px;}
.x0_c00148{left:0.000000px;}
.x4c_c00148{left:156.390000px;}
.x4d_c00148{left:165.030000px;}
.x66_c00148{left:177.990000px;}
.xfb_c00148{left:184.035000px;}
.x67_c00148{left:187.485000px;}
.x73_c00148{left:190.080000px;}
.x100_c00148{left:194.400000px;}
.x74_c00148{left:210.810000px;}
.x10c_c00148{left:213.405000px;}
.x93_c00148{left:216.000000px;}
.xc1_c00148{left:218.595000px;}
.x101_c00148{left:220.320000px;}
.xec_c00148{left:222.915000px;}
.x68_c00148{left:224.640000px;}
.xd1_c00148{left:226.365000px;}
.x9a_c00148{left:228.090000px;}
.x94_c00148{left:229.830000px;}
.x69_c00148{left:233.280000px;}
.xf3_c00148{left:236.730000px;}
.xf0_c00148{left:238.470000px;}
.x31_c00148{left:241.050000px;}
.xe6_c00148{left:243.645000px;}
.xe3_c00148{left:245.370000px;}
.x7c_c00148{left:247.110000px;}
.x9_c00148{left:249.690000px;}
.x32_c00148{left:252.285000px;}
.x23_c00148{left:254.010000px;}
.x7d_c00148{left:260.925000px;}
.x8b_c00148{left:263.520000px;}
.x75_c00148{left:266.115000px;}
.xfc_c00148{left:270.435000px;}
.xd3_c00148{left:272.160000px;}
.xa_c00148{left:275.610000px;}
.x18_c00148{left:279.075000px;}
.x9b_c00148{left:282.525000px;}
.xcc_c00148{left:284.250000px;}
.xb4_c00148{left:285.990000px;}
.x6a_c00148{left:288.570000px;}
.x3b_c00148{left:291.165000px;}
.x42_c00148{left:294.630000px;}
.x58_c00148{left:298.080000px;}
.x1_c00148{left:300.675000px;}
.x4e_c00148{left:303.270000px;}
.xfd_c00148{left:308.445000px;}
.x8c_c00148{left:310.170000px;}
.x4f_c00148{left:312.765000px;}
.xd4_c00148{left:314.490000px;}
.x33_c00148{left:316.230000px;}
.x6b_c00148{left:318.810000px;}
.xbb_c00148{left:320.550000px;}
.x95_c00148{left:322.275000px;}
.x19_c00148{left:324.000000px;}
.x24_c00148{left:326.595000px;}
.x43_c00148{left:328.320000px;}
.x7e_c00148{left:335.235000px;}
.x44_c00148{left:337.830000px;}
.xa7_c00148{left:341.280000px;}
.xbd_c00148{left:343.005000px;}
.x76_c00148{left:345.600000px;}
.xfe_c00148{left:348.195000px;}
.x9d_c00148{left:349.920000px;}
.x3c_c00148{left:352.515000px;}
.x1a_c00148{left:354.240000px;}
.x34_c00148{left:358.560000px;}
.x106_c00148{left:360.285000px;}
.x59_c00148{left:362.880000px;}
.xc4_c00148{left:364.605000px;}
.x8d_c00148{left:367.200000px;}
.xad_c00148{left:370.650000px;}
.x7f_c00148{left:374.115000px;}
.xe4_c00148{left:378.435000px;}
.xb_c00148{left:382.755000px;}
.x1b_c00148{left:385.350000px;}
.x77_c00148{left:387.075000px;}
.x5a_c00148{left:390.525000px;}
.x25_c00148{left:393.990000px;}
.xc2_c00148{left:397.440000px;}
.x2_c00148{left:400.035000px;}
.xa8_c00148{left:401.760000px;}
.x78_c00148{left:406.950000px;}
.x80_c00148{left:411.270000px;}
.xc7_c00148{left:413.850000px;}
.x5b_c00148{left:419.910000px;}
.x9e_c00148{left:425.085000px;}
.xcd_c00148{left:427.680000px;}
.xc5_c00148{left:429.405000px;}
.xc3_c00148{left:431.130000px;}
.x35_c00148{left:433.725000px;}
.x50_c00148{left:436.320000px;}
.xb5_c00148{left:438.915000px;}
.x3d_c00148{left:440.640000px;}
.xc8_c00148{left:444.960000px;}
.x81_c00148{left:446.685000px;}
.xdb_c00148{left:449.280000px;}
.xe7_c00148{left:451.005000px;}
.x9f_c00148{left:452.730000px;}
.x10d_c00148{left:455.325000px;}
.x6c_c00148{left:457.920000px;}
.x5c_c00148{left:459.645000px;}
.xc_c00148{left:462.240000px;}
.x96_c00148{left:464.835000px;}
.x51_c00148{left:467.430000px;}
.x45_c00148{left:470.010000px;}
.x8e_c00148{left:471.750000px;}
.x3e_c00148{left:475.200000px;}
.x26_c00148{left:477.795000px;}
.xae_c00148{left:479.520000px;}
.x107_c00148{left:481.245000px;}
.xd8_c00148{left:482.970000px;}
.xe8_c00148{left:484.710000px;}
.x27_c00148{left:486.435000px;}
.x1c_c00148{left:489.030000px;}
.x5d_c00148{left:490.755000px;}
.xed_c00148{left:492.480000px;}
.xd2_c00148{left:494.205000px;}
.xf4_c00148{left:495.930000px;}
.x3_c00148{left:497.670000px;}
.xc6_c00148{left:501.120000px;}
.xa0_c00148{left:505.440000px;}
.x79_c00148{left:508.890000px;}
.x8f_c00148{left:510.630000px;}
.xc9_c00148{left:514.080000px;}
.x102_c00148{left:519.270000px;}
.x6d_c00148{left:520.995000px;}
.x4_c00148{left:522.720000px;}
.x82_c00148{left:526.170000px;}
.xd_c00148{left:528.765000px;}
.xd5_c00148{left:531.360000px;}
.xb6_c00148{left:534.810000px;}
.x46_c00148{left:536.550000px;}
.x52_c00148{left:538.275000px;}
.x5e_c00148{left:540.870000px;}
.x109_c00148{left:542.595000px;}
.x1d_c00148{left:545.190000px;}
.x47_c00148{left:548.640000px;}
.x5_c00148{left:551.235000px;}
.x83_c00148{left:552.960000px;}
.xce_c00148{left:559.005000px;}
.x28_c00148{left:564.195000px;}
.x10a_c00148{left:565.920000px;}
.x6_c00148{left:570.240000px;}
.x5f_c00148{left:571.965000px;}
.x36_c00148{left:576.285000px;}
.xbe_c00148{left:578.010000px;}
.xb1_c00148{left:579.750000px;}
.x1e_c00148{left:583.200000px;}
.x7_c00148{left:586.650000px;}
.x10f_c00148{left:588.390000px;}
.xa1_c00148{left:590.115000px;}
.xf8_c00148{left:591.840000px;}
.xe_c00148{left:593.565000px;}
.x1f_c00148{left:596.160000px;}
.x6e_c00148{left:598.755000px;}
.xe0_c00148{left:600.480000px;}
.x8_c00148{left:602.205000px;}
.xee_c00148{left:604.800000px;}
.x3f_c00148{left:607.395000px;}
.x29_c00148{left:609.120000px;}
.x53_c00148{left:611.715000px;}
.x84_c00148{left:614.310000px;}
.xf1_c00148{left:617.760000px;}
.xa6_c00148{left:619.485000px;}
.xa9_c00148{left:622.080000px;}
.x10b_c00148{left:623.805000px;}
.x10e_c00148{left:626.400000px;}
.x2a_c00148{left:628.995000px;}
.xbf_c00148{left:630.720000px;}
.xca_c00148{left:632.445000px;}
.x37_c00148{left:634.170000px;}
.x54_c00148{left:636.765000px;}
.xcf_c00148{left:639.360000px;}
.xf5_c00148{left:641.955000px;}
.xaa_c00148{left:643.680000px;}
.x60_c00148{left:648.000000px;}
.xdc_c00148{left:649.725000px;}
.xd6_c00148{left:651.450000px;}
.x2b_c00148{left:653.190000px;}
.x48_c00148{left:655.770000px;}
.x61_c00148{left:660.090000px;}
.xef_c00148{left:666.150000px;}
.x85_c00148{left:667.875000px;}
.x9c_c00148{left:670.470000px;}
.xa2_c00148{left:672.195000px;}
.xaf_c00148{left:674.790000px;}
.xf9_c00148{left:676.515000px;}
.xb2_c00148{left:678.240000px;}
.xa3_c00148{left:681.690000px;}
.x7a_c00148{left:685.155000px;}
.x2c_c00148{left:686.880000px;}
.xb0_c00148{left:688.605000px;}
.xf_c00148{left:691.200000px;}
.xa4_c00148{left:693.795000px;}
.x6f_c00148{left:697.245000px;}
.x70_c00148{left:700.710000px;}
.x10_c00148{left:703.290000px;}
.x62_c00148{left:705.885000px;}
.x38_c00148{left:707.610000px;}
.xf6_c00148{left:709.350000px;}
.x2d_c00148{left:711.075000px;}
.x20_c00148{left:712.800000px;}
.x55_c00148{left:714.525000px;}
.xb7_c00148{left:717.990000px;}
.xdd_c00148{left:719.715000px;}
.x71_c00148{left:721.440000px;}
.x2e_c00148{left:724.890000px;}
.x86_c00148{left:726.630000px;}
.xe1_c00148{left:731.805000px;}
.x11_c00148{left:733.530000px;}
.xe9_c00148{left:735.270000px;}
.x21_c00148{left:736.995000px;}
.x97_c00148{left:739.590000px;}
.xde_c00148{left:742.170000px;}
.xab_c00148{left:743.910000px;}
.xd9_c00148{left:745.635000px;}
.x40_c00148{left:747.360000px;}
.x90_c00148{left:749.955000px;}
.x12_c00148{left:752.550000px;}
.xea_c00148{left:754.275000px;}
.x87_c00148{left:758.595000px;}
.x7b_c00148{left:762.915000px;}
.x88_c00148{left:765.510000px;}
.x39_c00148{left:769.830000px;}
.xdf_c00148{left:772.410000px;}
.x49_c00148{left:774.150000px;}
.xb8_c00148{left:775.875000px;}
.xf2_c00148{left:778.470000px;}
.x13_c00148{left:780.195000px;}
.x3a_c00148{left:781.920000px;}
.xe5_c00148{left:783.645000px;}
.x91_c00148{left:785.370000px;}
.x72_c00148{left:787.965000px;}
.xfa_c00148{left:793.155000px;}
.x92_c00148{left:795.750000px;}
.x103_c00148{left:797.475000px;}
.xe2_c00148{left:799.200000px;}
.x22_c00148{left:801.795000px;}
.x2f_c00148{left:803.520000px;}
.x63_c00148{left:805.245000px;}
.xa5_c00148{left:807.840000px;}
.xd7_c00148{left:809.565000px;}
.x14_c00148{left:811.290000px;}
.xf7_c00148{left:814.755000px;}
.x4a_c00148{left:816.480000px;}
.x104_c00148{left:818.205000px;}
.x108_c00148{left:821.670000px;}
.xcb_c00148{left:823.395000px;}
.x15_c00148{left:825.120000px;}
.xff_c00148{left:826.845000px;}
.x41_c00148{left:829.440000px;}
.x89_c00148{left:832.035000px;}
.xb9_c00148{left:833.760000px;}
.x64_c00148{left:835.485000px;}
.x105_c00148{left:841.530000px;}
.x30_c00148{left:844.125000px;}
.xba_c00148{left:847.590000px;}
.xeb_c00148{left:849.315000px;}
.xbc_c00148{left:851.040000px;}
.xb3_c00148{left:852.765000px;}
.xda_c00148{left:855.360000px;}
.x4b_c00148{left:857.085000px;}
.x65_c00148{left:859.680000px;}
.x16_c00148{left:864.000000px;}
.x56_c00148{left:866.596272px;}
.x8a_c00148{left:868.320000px;}
.xc0_c00148{left:871.770000px;}
.xd0_c00148{left:875.235000px;}
.x57_c00148{left:876.960000px;}
.x17_c00148{left:882.150000px;}
.x98_c00148{left:884.730000px;}
.x110_c00148{left:889.920000px;}
.xac_c00148{left:894.240000px;}
.x99_c00148{left:901.155000px;}
.x111_c00148{left:905.475000px;}
.x116_c00148{left:932.250000px;}
.x115_c00148{left:954.720000px;}
.x117_c00148{left:1037.670000px;}
.x113_c00148{left:1039.395000px;}
.x114_c00148{left:1063.590000px;}
.x112_c00148{left:1071.360000px;}
@media print{
.v2_c00148{vertical-align:-9.226667pt;}
.v1_c00148{vertical-align:-3.040000pt;}
.v0_c00148{vertical-align:0.000000pt;}
.ls1_c00148{letter-spacing:0.000000pt;}
.ls0_c00148{letter-spacing:30.328533pt;}
.ws0_c00148{word-spacing:-24.977067pt;}
.ws2_c00148{word-spacing:0.000000pt;}
.ws1_c00148{word-spacing:53.956620pt;}
.fs18_c00148{font-size:3.072000pt;}
.fs13_c00148{font-size:5.333333pt;}
.fs22_c00148{font-size:6.133333pt;}
.fsf_c00148{font-size:9.226667pt;}
.fs23_c00148{font-size:12.266667pt;}
.fs0_c00148{font-size:15.360000pt;}
.fsd_c00148{font-size:18.453333pt;}
.fs17_c00148{font-size:21.493333pt;}
.fs15_c00148{font-size:24.586667pt;}
.fs16_c00148{font-size:27.626667pt;}
.fs9_c00148{font-size:30.720000pt;}
.fs8_c00148{font-size:33.813333pt;}
.fs1b_c00148{font-size:36.853333pt;}
.fs14_c00148{font-size:39.946667pt;}
.fs1c_c00148{font-size:42.986667pt;}
.fs1a_c00148{font-size:46.080000pt;}
.fs19_c00148{font-size:49.173333pt;}
.fsb_c00148{font-size:52.213333pt;}
.fs4_c00148{font-size:55.306667pt;}
.fs5_c00148{font-size:58.346667pt;}
.fs2_c00148{font-size:61.440000pt;}
.fs6_c00148{font-size:64.533333pt;}
.fs12_c00148{font-size:67.573333pt;}
.fs1_c00148{font-size:70.666667pt;}
.fs3_c00148{font-size:73.706667pt;}
.fs10_c00148{font-size:76.800000pt;}
.fsa_c00148{font-size:79.893333pt;}
.fse_c00148{font-size:82.933333pt;}
.fsc_c00148{font-size:86.026667pt;}
.fs7_c00148{font-size:89.066667pt;}
.fs11_c00148{font-size:92.160000pt;}
.fs21_c00148{font-size:95.253333pt;}
.fs25_c00148{font-size:98.293333pt;}
.fs1d_c00148{font-size:101.386667pt;}
.fs1e_c00148{font-size:104.426667pt;}
.fs1f_c00148{font-size:107.520000pt;}
.fs20_c00148{font-size:110.613333pt;}
.fs24_c00148{font-size:147.466667pt;}
.y0_c00148{bottom:0.000000pt;}
.y199_c00148{bottom:112.893333pt;}
.y198_c00148{bottom:119.813333pt;}
.y190_c00148{bottom:190.466667pt;}
.y191_c00148{bottom:191.226667pt;}
.y192_c00148{bottom:194.306667pt;}
.y197_c00148{bottom:195.066667pt;}
.y193_c00148{bottom:205.053333pt;}
.y18c_c00148{bottom:205.826667pt;}
.y18f_c00148{bottom:206.586667pt;}
.y18d_c00148{bottom:208.133333pt;}
.y18e_c00148{bottom:209.666667pt;}
.y18a_c00148{bottom:210.426667pt;}
.y187_c00148{bottom:211.200000pt;}
.y188_c00148{bottom:211.973333pt;}
.y186_c00148{bottom:212.733333pt;}
.y189_c00148{bottom:215.040000pt;}
.y184_c00148{bottom:218.880000pt;}
.y18b_c00148{bottom:220.413333pt;}
.y185_c00148{bottom:225.026667pt;}
.y182_c00148{bottom:230.400000pt;}
.y181_c00148{bottom:231.173333pt;}
.y17f_c00148{bottom:234.240000pt;}
.y180_c00148{bottom:235.013333pt;}
.y183_c00148{bottom:235.773333pt;}
.y17c_c00148{bottom:236.546667pt;}
.y17b_c00148{bottom:237.306667pt;}
.y17e_c00148{bottom:240.386667pt;}
.y17d_c00148{bottom:241.146667pt;}
.y179_c00148{bottom:252.666667pt;}
.y178_c00148{bottom:254.213333pt;}
.y175_c00148{bottom:255.746667pt;}
.y173_c00148{bottom:257.280000pt;}
.y176_c00148{bottom:258.053333pt;}
.y17a_c00148{bottom:258.813333pt;}
.y177_c00148{bottom:261.120000pt;}
.y174_c00148{bottom:262.653333pt;}
.y172_c00148{bottom:264.186667pt;}
.y171_c00148{bottom:264.960000pt;}
.y16f_c00148{bottom:276.480000pt;}
.y170_c00148{bottom:278.786667pt;}
.y16c_c00148{bottom:281.093333pt;}
.y16e_c00148{bottom:284.933333pt;}
.y16d_c00148{bottom:286.466667pt;}
.y16a_c00148{bottom:298.746667pt;}
.y164_c00148{bottom:299.520000pt;}
.y169_c00148{bottom:300.293333pt;}
.y167_c00148{bottom:301.053333pt;}
.y165_c00148{bottom:301.826667pt;}
.y16b_c00148{bottom:304.133333pt;}
.y168_c00148{bottom:306.426667pt;}
.y166_c00148{bottom:307.200000pt;}
.y163_c00148{bottom:320.253333pt;}
.y162_c00148{bottom:321.026667pt;}
.y15e_c00148{bottom:323.333333pt;}
.y161_c00148{bottom:324.093333pt;}
.y15f_c00148{bottom:324.866667pt;}
.y160_c00148{bottom:331.013333pt;}
.y15d_c00148{bottom:342.533333pt;}
.y15c_c00148{bottom:344.066667pt;}
.y15a_c00148{bottom:345.600000pt;}
.y15b_c00148{bottom:347.906667pt;}
.y159_c00148{bottom:348.666667pt;}
.y157_c00148{bottom:353.280000pt;}
.y158_c00148{bottom:354.813333pt;}
.y155_c00148{bottom:366.333333pt;}
.y154_c00148{bottom:367.866667pt;}
.y152_c00148{bottom:368.640000pt;}
.y156_c00148{bottom:369.413333pt;}
.y153_c00148{bottom:371.706667pt;}
.y150_c00148{bottom:374.786667pt;}
.y151_c00148{bottom:376.320000pt;}
.y14f_c00148{bottom:377.093333pt;}
.y14c_c00148{bottom:391.680000pt;}
.y14e_c00148{bottom:392.453333pt;}
.y14d_c00148{bottom:393.213333pt;}
.y145_c00148{bottom:393.986667pt;}
.y14b_c00148{bottom:394.746667pt;}
.y149_c00148{bottom:395.520000pt;}
.y14a_c00148{bottom:398.586667pt;}
.y147_c00148{bottom:399.360000pt;}
.y148_c00148{bottom:400.133333pt;}
.y13f_c00148{bottom:400.893333pt;}
.y13e_c00148{bottom:404.733333pt;}
.y143_c00148{bottom:405.506667pt;}
.y144_c00148{bottom:406.266667pt;}
.y141_c00148{bottom:407.040000pt;}
.y142_c00148{bottom:407.813333pt;}
.y140_c00148{bottom:408.573333pt;}
.y146_c00148{bottom:409.346667pt;}
.y13d_c00148{bottom:412.413333pt;}
.y13c_c00148{bottom:414.720000pt;}
.y13b_c00148{bottom:415.493333pt;}
.y13a_c00148{bottom:417.786667pt;}
.y139_c00148{bottom:419.333333pt;}
.y136_c00148{bottom:420.093333pt;}
.y135_c00148{bottom:422.400000pt;}
.y134_c00148{bottom:428.546667pt;}
.y138_c00148{bottom:430.853333pt;}
.y137_c00148{bottom:433.920000pt;}
.y133_c00148{bottom:434.693333pt;}
.y131_c00148{bottom:435.453333pt;}
.y130_c00148{bottom:436.986667pt;}
.y12c_c00148{bottom:437.760000pt;}
.y12e_c00148{bottom:438.533333pt;}
.y132_c00148{bottom:442.373333pt;}
.y12f_c00148{bottom:443.906667pt;}
.y12b_c00148{bottom:456.960000pt;}
.y12a_c00148{bottom:457.733333pt;}
.y12d_c00148{bottom:458.493333pt;}
.y127_c00148{bottom:459.266667pt;}
.y126_c00148{bottom:460.026667pt;}
.y124_c00148{bottom:462.333333pt;}
.y125_c00148{bottom:463.106667pt;}
.y129_c00148{bottom:463.866667pt;}
.y128_c00148{bottom:464.640000pt;}
.y123_c00148{bottom:470.786667pt;}
.y121_c00148{bottom:479.226667pt;}
.y11e_c00148{bottom:480.000000pt;}
.y11b_c00148{bottom:481.533333pt;}
.y122_c00148{bottom:483.066667pt;}
.y11d_c00148{bottom:483.840000pt;}
.y11c_c00148{bottom:484.613333pt;}
.y120_c00148{bottom:486.146667pt;}
.y11f_c00148{bottom:486.906667pt;}
.y11a_c00148{bottom:503.040000pt;}
.y116_c00148{bottom:504.573333pt;}
.y113_c00148{bottom:506.106667pt;}
.y115_c00148{bottom:507.653333pt;}
.y119_c00148{bottom:508.413333pt;}
.y118_c00148{bottom:509.946667pt;}
.y117_c00148{bottom:510.720000pt;}
.y114_c00148{bottom:511.493333pt;}
.y110_c00148{bottom:524.546667pt;}
.y111_c00148{bottom:525.306667pt;}
.y112_c00148{bottom:526.080000pt;}
.y10d_c00148{bottom:526.853333pt;}
.y10e_c00148{bottom:527.613333pt;}
.y10f_c00148{bottom:533.760000pt;}
.y10a_c00148{bottom:546.813333pt;}
.y107_c00148{bottom:547.586667pt;}
.y109_c00148{bottom:548.346667pt;}
.y105_c00148{bottom:549.120000pt;}
.y106_c00148{bottom:549.893333pt;}
.y104_c00148{bottom:550.653333pt;}
.y10c_c00148{bottom:551.426667pt;}
.y10b_c00148{bottom:552.960000pt;}
.y108_c00148{bottom:553.733333pt;}
.y103_c00148{bottom:567.546667pt;}
.y100_c00148{bottom:569.853333pt;}
.yfe_c00148{bottom:570.626667pt;}
.yfc_c00148{bottom:571.386667pt;}
.yff_c00148{bottom:572.160000pt;}
.y102_c00148{bottom:575.226667pt;}
.yfd_c00148{bottom:576.000000pt;}
.y101_c00148{bottom:576.773333pt;}
.yfa_c00148{bottom:589.826667pt;}
.yfb_c00148{bottom:590.586667pt;}
.yf8_c00148{bottom:592.893333pt;}
.yf6_c00148{bottom:594.426667pt;}
.yf7_c00148{bottom:595.973333pt;}
.yf9_c00148{bottom:599.040000pt;}
.y195_c00148{bottom:612.866667pt;}
.yf3_c00148{bottom:613.626667pt;}
.yf1_c00148{bottom:614.400000pt;}
.yee_c00148{bottom:615.173333pt;}
.yf5_c00148{bottom:615.933333pt;}
.y196_c00148{bottom:616.706667pt;}
.yea_c00148{bottom:617.466667pt;}
.yf2_c00148{bottom:618.240000pt;}
.yec_c00148{bottom:619.013333pt;}
.yf4_c00148{bottom:619.773333pt;}
.yf0_c00148{bottom:620.546667pt;}
.yef_c00148{bottom:621.306667pt;}
.yed_c00148{bottom:622.080000pt;}
.yeb_c00148{bottom:622.853333pt;}
.ye7_c00148{bottom:635.906667pt;}
.ye4_c00148{bottom:636.666667pt;}
.ye3_c00148{bottom:637.440000pt;}
.ye2_c00148{bottom:638.973333pt;}
.ye9_c00148{bottom:640.506667pt;}
.ye8_c00148{bottom:642.053333pt;}
.ye6_c00148{bottom:642.813333pt;}
.ye5_c00148{bottom:643.586667pt;}
.ye1_c00148{bottom:644.346667pt;}
.ye0_c00148{bottom:651.266667pt;}
.ydd_c00148{bottom:657.413333pt;}
.ydb_c00148{bottom:659.706667pt;}
.ydc_c00148{bottom:661.253333pt;}
.yd8_c00148{bottom:662.013333pt;}
.ydf_c00148{bottom:662.786667pt;}
.yde_c00148{bottom:663.546667pt;}
.yd9_c00148{bottom:665.093333pt;}
.yda_c00148{bottom:665.853333pt;}
.yd7_c00148{bottom:666.626667pt;}
.yd6_c00148{bottom:676.613333pt;}
.yd5_c00148{bottom:678.906667pt;}
.yd2_c00148{bottom:680.453333pt;}
.yd0_c00148{bottom:681.986667pt;}
.yd4_c00148{bottom:683.520000pt;}
.yd1_c00148{bottom:685.053333pt;}
.y194_c00148{bottom:685.826667pt;}
.yd3_c00148{bottom:686.586667pt;}
.yce_c00148{bottom:700.413333pt;}
.ycd_c00148{bottom:701.186667pt;}
.yc9_c00148{bottom:701.946667pt;}
.yca_c00148{bottom:702.720000pt;}
.yc7_c00148{bottom:703.493333pt;}
.yc6_c00148{bottom:704.253333pt;}
.ycc_c00148{bottom:705.786667pt;}
.ycf_c00148{bottom:706.560000pt;}
.ycb_c00148{bottom:708.866667pt;}
.yc8_c00148{bottom:709.626667pt;}
.yc4_c00148{bottom:723.453333pt;}
.ybf_c00148{bottom:724.226667pt;}
.yc2_c00148{bottom:724.986667pt;}
.yc3_c00148{bottom:726.533333pt;}
.yc1_c00148{bottom:727.293333pt;}
.yc5_c00148{bottom:728.826667pt;}
.yc0_c00148{bottom:731.133333pt;}
.ybe_c00148{bottom:741.893333pt;}
.yba_c00148{bottom:744.186667pt;}
.ybd_c00148{bottom:745.733333pt;}
.yb8_c00148{bottom:746.493333pt;}
.yb7_c00148{bottom:747.266667pt;}
.ybb_c00148{bottom:748.800000pt;}
.yb9_c00148{bottom:749.573333pt;}
.ybc_c00148{bottom:751.106667pt;}
.yb0_c00148{bottom:751.866667pt;}
.yb3_c00148{bottom:761.853333pt;}
.yb4_c00148{bottom:762.626667pt;}
.yac_c00148{bottom:763.386667pt;}
.yaf_c00148{bottom:764.160000pt;}
.yae_c00148{bottom:764.933333pt;}
.yb5_c00148{bottom:767.226667pt;}
.yb6_c00148{bottom:768.773333pt;}
.yad_c00148{bottom:772.613333pt;}
.yb2_c00148{bottom:773.373333pt;}
.yb1_c00148{bottom:774.146667pt;}
.yab_c00148{bottom:789.506667pt;}
.yaa_c00148{bottom:792.573333pt;}
.ya9_c00148{bottom:794.106667pt;}
.ya6_c00148{bottom:795.653333pt;}
.ya8_c00148{bottom:796.413333pt;}
.ya7_c00148{bottom:797.186667pt;}
.ya5_c00148{bottom:797.946667pt;}
.ya3_c00148{bottom:812.546667pt;}
.ya2_c00148{bottom:813.306667pt;}
.ya1_c00148{bottom:814.080000pt;}
.ya4_c00148{bottom:818.693333pt;}
.ya0_c00148{bottom:820.986667pt;}
.y9f_c00148{bottom:834.053333pt;}
.y9c_c00148{bottom:834.813333pt;}
.y9b_c00148{bottom:835.586667pt;}
.y9e_c00148{bottom:836.346667pt;}
.y9a_c00148{bottom:837.893333pt;}
.y9d_c00148{bottom:838.653333pt;}
.y99_c00148{bottom:840.186667pt;}
.y98_c00148{bottom:841.733333pt;}
.y97_c00148{bottom:855.546667pt;}
.y95_c00148{bottom:856.320000pt;}
.y94_c00148{bottom:857.093333pt;}
.y93_c00148{bottom:857.853333pt;}
.y96_c00148{bottom:863.226667pt;}
.y90_c00148{bottom:878.586667pt;}
.y92_c00148{bottom:879.360000pt;}
.y8b_c00148{bottom:880.133333pt;}
.y8f_c00148{bottom:882.426667pt;}
.y8c_c00148{bottom:883.200000pt;}
.y8d_c00148{bottom:884.733333pt;}
.y91_c00148{bottom:885.506667pt;}
.y8e_c00148{bottom:887.040000pt;}
.y88_c00148{bottom:901.626667pt;}
.y87_c00148{bottom:902.400000pt;}
.y85_c00148{bottom:904.706667pt;}
.y89_c00148{bottom:907.773333pt;}
.y8a_c00148{bottom:908.546667pt;}
.y86_c00148{bottom:910.080000pt;}
.y83_c00148{bottom:923.906667pt;}
.y7c_c00148{bottom:924.666667pt;}
.y7e_c00148{bottom:925.440000pt;}
.y80_c00148{bottom:926.973333pt;}
.y81_c00148{bottom:927.746667pt;}
.y84_c00148{bottom:929.280000pt;}
.y82_c00148{bottom:930.053333pt;}
.y7f_c00148{bottom:930.813333pt;}
.y7d_c00148{bottom:932.346667pt;}
.y78_c00148{bottom:946.946667pt;}
.y79_c00148{bottom:947.706667pt;}
.y7a_c00148{bottom:948.480000pt;}
.y7b_c00148{bottom:951.546667pt;}
.y77_c00148{bottom:953.093333pt;}
.y76_c00148{bottom:955.386667pt;}
.y71_c00148{bottom:966.906667pt;}
.y73_c00148{bottom:967.680000pt;}
.y6f_c00148{bottom:972.293333pt;}
.y70_c00148{bottom:973.826667pt;}
.y72_c00148{bottom:974.586667pt;}
.y6e_c00148{bottom:975.360000pt;}
.y6c_c00148{bottom:976.133333pt;}
.y74_c00148{bottom:976.893333pt;}
.y6d_c00148{bottom:979.200000pt;}
.y75_c00148{bottom:980.733333pt;}
.y67_c00148{bottom:985.346667pt;}
.y69_c00148{bottom:986.106667pt;}
.y68_c00148{bottom:986.880000pt;}
.y6a_c00148{bottom:989.186667pt;}
.y65_c00148{bottom:993.786667pt;}
.y6b_c00148{bottom:996.866667pt;}
.y66_c00148{bottom:997.626667pt;}
.y64_c00148{bottom:1009.146667pt;}
.y62_c00148{bottom:1010.693333pt;}
.y63_c00148{bottom:1011.453333pt;}
.y5e_c00148{bottom:1012.986667pt;}
.y5b_c00148{bottom:1013.760000pt;}
.y60_c00148{bottom:1015.293333pt;}
.y5d_c00148{bottom:1016.826667pt;}
.y5c_c00148{bottom:1018.373333pt;}
.y61_c00148{bottom:1019.133333pt;}
.y5a_c00148{bottom:1019.906667pt;}
.y5f_c00148{bottom:1020.666667pt;}
.y59_c00148{bottom:1029.893333pt;}
.y58_c00148{bottom:1031.426667pt;}
.y57_c00148{bottom:1035.266667pt;}
.y54_c00148{bottom:1036.026667pt;}
.y55_c00148{bottom:1036.800000pt;}
.y50_c00148{bottom:1037.573333pt;}
.y53_c00148{bottom:1038.333333pt;}
.y56_c00148{bottom:1039.106667pt;}
.y4e_c00148{bottom:1039.866667pt;}
.y51_c00148{bottom:1041.413333pt;}
.y52_c00148{bottom:1042.173333pt;}
.y4d_c00148{bottom:1046.013333pt;}
.y4f_c00148{bottom:1049.853333pt;}
.y4c_c00148{bottom:1056.000000pt;}
.y43_c00148{bottom:1056.773333pt;}
.y44_c00148{bottom:1057.533333pt;}
.y4a_c00148{bottom:1058.306667pt;}
.y4b_c00148{bottom:1059.066667pt;}
.y46_c00148{bottom:1059.840000pt;}
.y49_c00148{bottom:1060.613333pt;}
.y48_c00148{bottom:1061.373333pt;}
.y47_c00148{bottom:1063.680000pt;}
.y45_c00148{bottom:1064.453333pt;}
.y38_c00148{bottom:1065.213333pt;}
.y42_c00148{bottom:1065.986667pt;}
.y41_c00148{bottom:1067.520000pt;}
.y3d_c00148{bottom:1069.053333pt;}
.y3b_c00148{bottom:1069.826667pt;}
.y3a_c00148{bottom:1071.360000pt;}
.y3e_c00148{bottom:1072.133333pt;}
.y40_c00148{bottom:1072.893333pt;}
.y3c_c00148{bottom:1073.666667pt;}
.y39_c00148{bottom:1074.426667pt;}
.y3f_c00148{bottom:1078.266667pt;}
.y34_c00148{bottom:1079.040000pt;}
.y31_c00148{bottom:1079.813333pt;}
.y33_c00148{bottom:1080.573333pt;}
.y32_c00148{bottom:1081.346667pt;}
.y2d_c00148{bottom:1082.106667pt;}
.y35_c00148{bottom:1082.880000pt;}
.y30_c00148{bottom:1083.653333pt;}
.y2f_c00148{bottom:1084.413333pt;}
.y2e_c00148{bottom:1086.720000pt;}
.y37_c00148{bottom:1095.173333pt;}
.y36_c00148{bottom:1097.466667pt;}
.y2c_c00148{bottom:1100.546667pt;}
.y29_c00148{bottom:1101.306667pt;}
.y27_c00148{bottom:1102.080000pt;}
.y2b_c00148{bottom:1102.853333pt;}
.y2a_c00148{bottom:1104.386667pt;}
.y28_c00148{bottom:1105.920000pt;}
.y26_c00148{bottom:1106.693333pt;}
.y24_c00148{bottom:1122.813333pt;}
.y23_c00148{bottom:1123.586667pt;}
.y22_c00148{bottom:1129.733333pt;}
.y25_c00148{bottom:1130.493333pt;}
.y21_c00148{bottom:1131.266667pt;}
.y1f_c00148{bottom:1145.093333pt;}
.y1e_c00148{bottom:1145.853333pt;}
.y1c_c00148{bottom:1146.626667pt;}
.y20_c00148{bottom:1147.386667pt;}
.y1d_c00148{bottom:1152.773333pt;}
.y1b_c00148{bottom:1153.533333pt;}
.y1a_c00148{bottom:1167.360000pt;}
.y17_c00148{bottom:1168.133333pt;}
.y15_c00148{bottom:1168.893333pt;}
.y18_c00148{bottom:1169.666667pt;}
.y19_c00148{bottom:1173.506667pt;}
.y14_c00148{bottom:1174.266667pt;}
.y13_c00148{bottom:1175.040000pt;}
.y16_c00148{bottom:1175.813333pt;}
.yf_c00148{bottom:1189.626667pt;}
.y11_c00148{bottom:1190.400000pt;}
.yb_c00148{bottom:1191.173333pt;}
.yc_c00148{bottom:1191.933333pt;}
.ye_c00148{bottom:1194.240000pt;}
.y12_c00148{bottom:1195.773333pt;}
.y10_c00148{bottom:1196.546667pt;}
.yd_c00148{bottom:1197.306667pt;}
.y9_c00148{bottom:1211.906667pt;}
.y4_c00148{bottom:1212.666667pt;}
.y6_c00148{bottom:1216.506667pt;}
.y8_c00148{bottom:1217.280000pt;}
.y5_c00148{bottom:1218.813333pt;}
.y7_c00148{bottom:1219.586667pt;}
.ya_c00148{bottom:1220.346667pt;}
.y2_c00148{bottom:1246.466667pt;}
.y3_c00148{bottom:1247.226667pt;}
.y1_c00148{bottom:1279.493333pt;}
.h1a_c00148{height:2.764500pt;}
.h15_c00148{height:4.799479pt;}
.h24_c00148{height:5.519401pt;}
.h11_c00148{height:8.303099pt;}
.h25_c00148{height:11.038802pt;}
.h2_c00148{height:13.822500pt;}
.hf_c00148{height:16.606198pt;}
.h19_c00148{height:19.341901pt;}
.h17_c00148{height:22.125599pt;}
.h18_c00148{height:24.861302pt;}
.hb_c00148{height:27.645000pt;}
.ha_c00148{height:30.428698pt;}
.h1d_c00148{height:33.164401pt;}
.h16_c00148{height:35.948099pt;}
.h1e_c00148{height:38.683802pt;}
.h1c_c00148{height:41.467500pt;}
.h1b_c00148{height:44.251198pt;}
.hd_c00148{height:46.986901pt;}
.h6_c00148{height:49.770599pt;}
.h7_c00148{height:52.506302pt;}
.h4_c00148{height:55.290000pt;}
.h8_c00148{height:58.073698pt;}
.h14_c00148{height:60.809401pt;}
.h3_c00148{height:63.593099pt;}
.h5_c00148{height:66.328802pt;}
.h12_c00148{height:69.112500pt;}
.hc_c00148{height:71.896198pt;}
.h10_c00148{height:74.631901pt;}
.he_c00148{height:77.415599pt;}
.h9_c00148{height:80.151302pt;}
.h13_c00148{height:82.935000pt;}
.h23_c00148{height:85.718698pt;}
.h27_c00148{height:88.454401pt;}
.h1f_c00148{height:91.238099pt;}
.h20_c00148{height:93.973802pt;}
.h21_c00148{height:96.757500pt;}
.h22_c00148{height:99.541198pt;}
.h26_c00148{height:132.705599pt;}
.h0_c00148{height:1348.613333pt;}
.h1_c00148{height:1348.666667pt;}
.w0_c00148{width:969.213333pt;}
.w1_c00148{width:969.333333pt;}
.x0_c00148{left:0.000000pt;}
.x4c_c00148{left:139.013333pt;}
.x4d_c00148{left:146.693333pt;}
.x66_c00148{left:158.213333pt;}
.xfb_c00148{left:163.586667pt;}
.x67_c00148{left:166.653333pt;}
.x73_c00148{left:168.960000pt;}
.x100_c00148{left:172.800000pt;}
.x74_c00148{left:187.386667pt;}
.x10c_c00148{left:189.693333pt;}
.x93_c00148{left:192.000000pt;}
.xc1_c00148{left:194.306667pt;}
.x101_c00148{left:195.840000pt;}
.xec_c00148{left:198.146667pt;}
.x68_c00148{left:199.680000pt;}
.xd1_c00148{left:201.213333pt;}
.x9a_c00148{left:202.746667pt;}
.x94_c00148{left:204.293333pt;}
.x69_c00148{left:207.360000pt;}
.xf3_c00148{left:210.426667pt;}
.xf0_c00148{left:211.973333pt;}
.x31_c00148{left:214.266667pt;}
.xe6_c00148{left:216.573333pt;}
.xe3_c00148{left:218.106667pt;}
.x7c_c00148{left:219.653333pt;}
.x9_c00148{left:221.946667pt;}
.x32_c00148{left:224.253333pt;}
.x23_c00148{left:225.786667pt;}
.x7d_c00148{left:231.933333pt;}
.x8b_c00148{left:234.240000pt;}
.x75_c00148{left:236.546667pt;}
.xfc_c00148{left:240.386667pt;}
.xd3_c00148{left:241.920000pt;}
.xa_c00148{left:244.986667pt;}
.x18_c00148{left:248.066667pt;}
.x9b_c00148{left:251.133333pt;}
.xcc_c00148{left:252.666667pt;}
.xb4_c00148{left:254.213333pt;}
.x6a_c00148{left:256.506667pt;}
.x3b_c00148{left:258.813333pt;}
.x42_c00148{left:261.893333pt;}
.x58_c00148{left:264.960000pt;}
.x1_c00148{left:267.266667pt;}
.x4e_c00148{left:269.573333pt;}
.xfd_c00148{left:274.173333pt;}
.x8c_c00148{left:275.706667pt;}
.x4f_c00148{left:278.013333pt;}
.xd4_c00148{left:279.546667pt;}
.x33_c00148{left:281.093333pt;}
.x6b_c00148{left:283.386667pt;}
.xbb_c00148{left:284.933333pt;}
.x95_c00148{left:286.466667pt;}
.x19_c00148{left:288.000000pt;}
.x24_c00148{left:290.306667pt;}
.x43_c00148{left:291.840000pt;}
.x7e_c00148{left:297.986667pt;}
.x44_c00148{left:300.293333pt;}
.xa7_c00148{left:303.360000pt;}
.xbd_c00148{left:304.893333pt;}
.x76_c00148{left:307.200000pt;}
.xfe_c00148{left:309.506667pt;}
.x9d_c00148{left:311.040000pt;}
.x3c_c00148{left:313.346667pt;}
.x1a_c00148{left:314.880000pt;}
.x34_c00148{left:318.720000pt;}
.x106_c00148{left:320.253333pt;}
.x59_c00148{left:322.560000pt;}
.xc4_c00148{left:324.093333pt;}
.x8d_c00148{left:326.400000pt;}
.xad_c00148{left:329.466667pt;}
.x7f_c00148{left:332.546667pt;}
.xe4_c00148{left:336.386667pt;}
.xb_c00148{left:340.226667pt;}
.x1b_c00148{left:342.533333pt;}
.x77_c00148{left:344.066667pt;}
.x5a_c00148{left:347.133333pt;}
.x25_c00148{left:350.213333pt;}
.xc2_c00148{left:353.280000pt;}
.x2_c00148{left:355.586667pt;}
.xa8_c00148{left:357.120000pt;}
.x78_c00148{left:361.733333pt;}
.x80_c00148{left:365.573333pt;}
.xc7_c00148{left:367.866667pt;}
.x5b_c00148{left:373.253333pt;}
.x9e_c00148{left:377.853333pt;}
.xcd_c00148{left:380.160000pt;}
.xc5_c00148{left:381.693333pt;}
.xc3_c00148{left:383.226667pt;}
.x35_c00148{left:385.533333pt;}
.x50_c00148{left:387.840000pt;}
.xb5_c00148{left:390.146667pt;}
.x3d_c00148{left:391.680000pt;}
.xc8_c00148{left:395.520000pt;}
.x81_c00148{left:397.053333pt;}
.xdb_c00148{left:399.360000pt;}
.xe7_c00148{left:400.893333pt;}
.x9f_c00148{left:402.426667pt;}
.x10d_c00148{left:404.733333pt;}
.x6c_c00148{left:407.040000pt;}
.x5c_c00148{left:408.573333pt;}
.xc_c00148{left:410.880000pt;}
.x96_c00148{left:413.186667pt;}
.x51_c00148{left:415.493333pt;}
.x45_c00148{left:417.786667pt;}
.x8e_c00148{left:419.333333pt;}
.x3e_c00148{left:422.400000pt;}
.x26_c00148{left:424.706667pt;}
.xae_c00148{left:426.240000pt;}
.x107_c00148{left:427.773333pt;}
.xd8_c00148{left:429.306667pt;}
.xe8_c00148{left:430.853333pt;}
.x27_c00148{left:432.386667pt;}
.x1c_c00148{left:434.693333pt;}
.x5d_c00148{left:436.226667pt;}
.xed_c00148{left:437.760000pt;}
.xd2_c00148{left:439.293333pt;}
.xf4_c00148{left:440.826667pt;}
.x3_c00148{left:442.373333pt;}
.xc6_c00148{left:445.440000pt;}
.xa0_c00148{left:449.280000pt;}
.x79_c00148{left:452.346667pt;}
.x8f_c00148{left:453.893333pt;}
.xc9_c00148{left:456.960000pt;}
.x102_c00148{left:461.573333pt;}
.x6d_c00148{left:463.106667pt;}
.x4_c00148{left:464.640000pt;}
.x82_c00148{left:467.706667pt;}
.xd_c00148{left:470.013333pt;}
.xd5_c00148{left:472.320000pt;}
.xb6_c00148{left:475.386667pt;}
.x46_c00148{left:476.933333pt;}
.x52_c00148{left:478.466667pt;}
.x5e_c00148{left:480.773333pt;}
.x109_c00148{left:482.306667pt;}
.x1d_c00148{left:484.613333pt;}
.x47_c00148{left:487.680000pt;}
.x5_c00148{left:489.986667pt;}
.x83_c00148{left:491.520000pt;}
.xce_c00148{left:496.893333pt;}
.x28_c00148{left:501.506667pt;}
.x10a_c00148{left:503.040000pt;}
.x6_c00148{left:506.880000pt;}
.x5f_c00148{left:508.413333pt;}
.x36_c00148{left:512.253333pt;}
.xbe_c00148{left:513.786667pt;}
.xb1_c00148{left:515.333333pt;}
.x1e_c00148{left:518.400000pt;}
.x7_c00148{left:521.466667pt;}
.x10f_c00148{left:523.013333pt;}
.xa1_c00148{left:524.546667pt;}
.xf8_c00148{left:526.080000pt;}
.xe_c00148{left:527.613333pt;}
.x1f_c00148{left:529.920000pt;}
.x6e_c00148{left:532.226667pt;}
.xe0_c00148{left:533.760000pt;}
.x8_c00148{left:535.293333pt;}
.xee_c00148{left:537.600000pt;}
.x3f_c00148{left:539.906667pt;}
.x29_c00148{left:541.440000pt;}
.x53_c00148{left:543.746667pt;}
.x84_c00148{left:546.053333pt;}
.xf1_c00148{left:549.120000pt;}
.xa6_c00148{left:550.653333pt;}
.xa9_c00148{left:552.960000pt;}
.x10b_c00148{left:554.493333pt;}
.x10e_c00148{left:556.800000pt;}
.x2a_c00148{left:559.106667pt;}
.xbf_c00148{left:560.640000pt;}
.xca_c00148{left:562.173333pt;}
.x37_c00148{left:563.706667pt;}
.x54_c00148{left:566.013333pt;}
.xcf_c00148{left:568.320000pt;}
.xf5_c00148{left:570.626667pt;}
.xaa_c00148{left:572.160000pt;}
.x60_c00148{left:576.000000pt;}
.xdc_c00148{left:577.533333pt;}
.xd6_c00148{left:579.066667pt;}
.x2b_c00148{left:580.613333pt;}
.x48_c00148{left:582.906667pt;}
.x61_c00148{left:586.746667pt;}
.xef_c00148{left:592.133333pt;}
.x85_c00148{left:593.666667pt;}
.x9c_c00148{left:595.973333pt;}
.xa2_c00148{left:597.506667pt;}
.xaf_c00148{left:599.813333pt;}
.xf9_c00148{left:601.346667pt;}
.xb2_c00148{left:602.880000pt;}
.xa3_c00148{left:605.946667pt;}
.x7a_c00148{left:609.026667pt;}
.x2c_c00148{left:610.560000pt;}
.xb0_c00148{left:612.093333pt;}
.xf_c00148{left:614.400000pt;}
.xa4_c00148{left:616.706667pt;}
.x6f_c00148{left:619.773333pt;}
.x70_c00148{left:622.853333pt;}
.x10_c00148{left:625.146667pt;}
.x62_c00148{left:627.453333pt;}
.x38_c00148{left:628.986667pt;}
.xf6_c00148{left:630.533333pt;}
.x2d_c00148{left:632.066667pt;}
.x20_c00148{left:633.600000pt;}
.x55_c00148{left:635.133333pt;}
.xb7_c00148{left:638.213333pt;}
.xdd_c00148{left:639.746667pt;}
.x71_c00148{left:641.280000pt;}
.x2e_c00148{left:644.346667pt;}
.x86_c00148{left:645.893333pt;}
.xe1_c00148{left:650.493333pt;}
.x11_c00148{left:652.026667pt;}
.xe9_c00148{left:653.573333pt;}
.x21_c00148{left:655.106667pt;}
.x97_c00148{left:657.413333pt;}
.xde_c00148{left:659.706667pt;}
.xab_c00148{left:661.253333pt;}
.xd9_c00148{left:662.786667pt;}
.x40_c00148{left:664.320000pt;}
.x90_c00148{left:666.626667pt;}
.x12_c00148{left:668.933333pt;}
.xea_c00148{left:670.466667pt;}
.x87_c00148{left:674.306667pt;}
.x7b_c00148{left:678.146667pt;}
.x88_c00148{left:680.453333pt;}
.x39_c00148{left:684.293333pt;}
.xdf_c00148{left:686.586667pt;}
.x49_c00148{left:688.133333pt;}
.xb8_c00148{left:689.666667pt;}
.xf2_c00148{left:691.973333pt;}
.x13_c00148{left:693.506667pt;}
.x3a_c00148{left:695.040000pt;}
.xe5_c00148{left:696.573333pt;}
.x91_c00148{left:698.106667pt;}
.x72_c00148{left:700.413333pt;}
.xfa_c00148{left:705.026667pt;}
.x92_c00148{left:707.333333pt;}
.x103_c00148{left:708.866667pt;}
.xe2_c00148{left:710.400000pt;}
.x22_c00148{left:712.706667pt;}
.x2f_c00148{left:714.240000pt;}
.x63_c00148{left:715.773333pt;}
.xa5_c00148{left:718.080000pt;}
.xd7_c00148{left:719.613333pt;}
.x14_c00148{left:721.146667pt;}
.xf7_c00148{left:724.226667pt;}
.x4a_c00148{left:725.760000pt;}
.x104_c00148{left:727.293333pt;}
.x108_c00148{left:730.373333pt;}
.xcb_c00148{left:731.906667pt;}
.x15_c00148{left:733.440000pt;}
.xff_c00148{left:734.973333pt;}
.x41_c00148{left:737.280000pt;}
.x89_c00148{left:739.586667pt;}
.xb9_c00148{left:741.120000pt;}
.x64_c00148{left:742.653333pt;}
.x105_c00148{left:748.026667pt;}
.x30_c00148{left:750.333333pt;}
.xba_c00148{left:753.413333pt;}
.xeb_c00148{left:754.946667pt;}
.xbc_c00148{left:756.480000pt;}
.xb3_c00148{left:758.013333pt;}
.xda_c00148{left:760.320000pt;}
.x4b_c00148{left:761.853333pt;}
.x65_c00148{left:764.160000pt;}
.x16_c00148{left:768.000000pt;}
.x56_c00148{left:770.307797pt;}
.x8a_c00148{left:771.840000pt;}
.xc0_c00148{left:774.906667pt;}
.xd0_c00148{left:777.986667pt;}
.x57_c00148{left:779.520000pt;}
.x17_c00148{left:784.133333pt;}
.x98_c00148{left:786.426667pt;}
.x110_c00148{left:791.040000pt;}
.xac_c00148{left:794.880000pt;}
.x99_c00148{left:801.026667pt;}
.x111_c00148{left:804.866667pt;}
.x116_c00148{left:828.666667pt;}
.x115_c00148{left:848.640000pt;}
.x117_c00148{left:922.373333pt;}
.x113_c00148{left:923.906667pt;}
.x114_c00148{left:945.413333pt;}
.x112_c00148{left:952.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_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_44fd43ce96f80f4218e7abb1.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.109863;font-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_c00149{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m13_c00149{transform:matrix(0.044150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044150,0.000000,0.000000,0.250000,0,0);}
.m166_c00149{transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);}
.m15e_c00149{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);}
.mc_c00149{transform:matrix(0.057950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057950,0.000000,0.000000,0.250000,0,0);}
.mda_c00149{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m8_c00149{transform:matrix(0.062775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062775,0.000000,0.000000,0.250000,0,0);}
.m1b_c00149{transform:matrix(0.072675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072675,0.000000,0.000000,0.250000,0,0);}
.mf8_c00149{transform:matrix(0.077750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077750,0.000000,0.000000,0.250000,0,0);}
.m15c_c00149{transform:matrix(0.088400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088400,0.000000,0.000000,0.250000,0,0);}
.m161_c00149{transform:matrix(0.088675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088675,0.000000,0.000000,0.250000,0,0);}
.m91_c00149{transform:matrix(0.090825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090825,0.000000,0.000000,0.250000,0,0);}
.m163_c00149{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);}
.m11d_c00149{transform:matrix(0.093300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093300,0.000000,0.000000,0.250000,0,0);}
.m12f_c00149{transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);}
.m2e_c00149{transform:matrix(0.097450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097450,0.000000,0.000000,0.250000,0,0);}
.m142_c00149{transform:matrix(0.100250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100250,0.000000,0.000000,0.250000,0,0);}
.m25_c00149{transform:matrix(0.102175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102175,0.000000,0.000000,0.250000,0,0);}
.m90_c00149{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.mb9_c00149{transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);}
.m110_c00149{transform:matrix(0.108100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108100,0.000000,0.000000,0.250000,0,0);}
.m38_c00149{transform:matrix(0.109125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109125,0.000000,0.000000,0.250000,0,0);}
.m134_c00149{transform:matrix(0.109475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109475,0.000000,0.000000,0.250000,0,0);}
.m130_c00149{transform:matrix(0.109550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109550,0.000000,0.000000,0.250000,0,0);}
.mb4_c00149{transform:matrix(0.110225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110225,0.000000,0.000000,0.250000,0,0);}
.m147_c00149{transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);}
.m15d_c00149{transform:matrix(0.112075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112075,0.000000,0.000000,0.250000,0,0);}
.m146_c00149{transform:matrix(0.112175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112175,0.000000,0.000000,0.250000,0,0);}
.m7c_c00149{transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);}
.m160_c00149{transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116000,0.000000,0.000000,0.250000,0,0);}
.m133_c00149{transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);}
.m10e_c00149{transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);}
.m100_c00149{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m14_c00149{transform:matrix(0.121475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121475,0.000000,0.000000,0.250000,0,0);}
.m144_c00149{transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);}
.m19_c00149{transform:matrix(0.122850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122850,0.000000,0.000000,0.250000,0,0);}
.m143_c00149{transform:matrix(0.123425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123425,0.000000,0.000000,0.250000,0,0);}
.me5_c00149{transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);}
.m148_c00149{transform:matrix(0.124750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00149{transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);}
.me9_c00149{transform:matrix(0.128150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128150,0.000000,0.000000,0.250000,0,0);}
.m153_c00149{transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);}
.m11_c00149{transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);}
.m106_c00149{transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);}
.m99_c00149{transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);}
.mb7_c00149{transform:matrix(0.134775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134775,0.000000,0.000000,0.250000,0,0);}
.me6_c00149{transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);}
.m14d_c00149{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);}
.m140_c00149{transform:matrix(0.135975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135975,0.000000,0.000000,0.250000,0,0);}
.m37_c00149{transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);}
.m13e_c00149{transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);}
.m12a_c00149{transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);}
.m145_c00149{transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);}
.m13b_c00149{transform:matrix(0.142075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142075,0.000000,0.000000,0.250000,0,0);}
.m102_c00149{transform:matrix(0.143050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143050,0.000000,0.000000,0.250000,0,0);}
.m4_c00149{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m40_c00149{transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);}
.m51_c00149{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);}
.m114_c00149{transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);}
.mb8_c00149{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);}
.m104_c00149{transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);}
.m122_c00149{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.m15f_c00149{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.m12c_c00149{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);}
.m156_c00149{transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);}
.md8_c00149{transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);}
.m11f_c00149{transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);}
.m107_c00149{transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);}
.m169_c00149{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);}
.m15a_c00149{transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);}
.m11c_c00149{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);}
.me0_c00149{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);}
.md0_c00149{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.mf4_c00149{transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);}
.m13a_c00149{transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);}
.m162_c00149{transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);}
.m2f_c00149{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.m135_c00149{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.m111_c00149{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.mac_c00149{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m127_c00149{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.m87_c00149{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.m15b_c00149{transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);}
.m101_c00149{transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);}
.m14f_c00149{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);}
.mb5_c00149{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.mc9_c00149{transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);}
.m13f_c00149{transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);}
.m113_c00149{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.mb3_c00149{transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);}
.m105_c00149{transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);}
.m157_c00149{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);}
.m5_c00149{transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);}
.m123_c00149{transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);}
.m8b_c00149{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.m78_c00149{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);}
.mb1_c00149{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m115_c00149{transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);}
.me1_c00149{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.mf7_c00149{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.mfe_c00149{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m6f_c00149{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.me4_c00149{transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);}
.mfc_c00149{transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);}
.m137_c00149{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m9d_c00149{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.ma5_c00149{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);}
.m12b_c00149{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);}
.md9_c00149{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);}
.m65_c00149{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.m83_c00149{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.m11b_c00149{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.mc5_c00149{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);}
.m7d_c00149{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m8f_c00149{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.m8e_c00149{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.m81_c00149{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m11a_c00149{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.m154_c00149{transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);}
.mab_c00149{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m34_c00149{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mc4_c00149{transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);}
.m82_c00149{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.m9e_c00149{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);}
.ma6_c00149{transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);}
.m14e_c00149{transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);}
.mf1_c00149{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);}
.m4f_c00149{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);}
.mdb_c00149{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.m128_c00149{transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);}
.m112_c00149{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m11e_c00149{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);}
.m61_c00149{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m96_c00149{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.mc1_c00149{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m1d_c00149{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);}
.m1a_c00149{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);}
.m5e_c00149{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m72_c00149{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);}
.m9_c00149{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.mce_c00149{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m131_c00149{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00149{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);}
.m126_c00149{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);}
.m59_c00149{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m124_c00149{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m29_c00149{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m109_c00149{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mf5_c00149{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.md6_c00149{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);}
.mc0_c00149{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);}
.mc2_c00149{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m141_c00149{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00149{transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);}
.m136_c00149{transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);}
.mef_c00149{transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);}
.m5f_c00149{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00149{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m94_c00149{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.m33_c00149{transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);}
.mf6_c00149{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);}
.m84_c00149{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);}
.m41_c00149{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.m39_c00149{transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);}
.mfd_c00149{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);}
.m12d_c00149{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);}
.mbe_c00149{transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);}
.m64_c00149{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.m3e_c00149{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.ma7_c00149{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);}
.m60_c00149{transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);}
.m152_c00149{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);}
.m117_c00149{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.m10a_c00149{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.m13d_c00149{transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);}
.mbc_c00149{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.m52_c00149{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.m8c_c00149{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.ma3_c00149{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);}
.m7b_c00149{transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);}
.m13c_c00149{transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);}
.m88_c00149{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);}
.m12e_c00149{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m66_c00149{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m56_c00149{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);}
.m151_c00149{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);}
.mf0_c00149{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.mdc_c00149{transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);}
.m121_c00149{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.m2a_c00149{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);}
.m125_c00149{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m98_c00149{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);}
.mff_c00149{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m9c_c00149{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m3f_c00149{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.ma4_c00149{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.md3_c00149{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);}
.m138_c00149{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);}
.m6b_c00149{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);}
.mdf_c00149{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.m7f_c00149{transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);}
.me8_c00149{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);}
.ma1_c00149{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mb6_c00149{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);}
.mc6_c00149{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);}
.maf_c00149{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.mb0_c00149{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);}
.ma8_c00149{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);}
.mf2_c00149{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m10b_c00149{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.m118_c00149{transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);}
.m80_c00149{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);}
.mcb_c00149{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);}
.m3a_c00149{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);}
.m119_c00149{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.mee_c00149{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.m8d_c00149{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);}
.m67_c00149{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);}
.m77_c00149{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m14c_c00149{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m9a_c00149{transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);}
.m132_c00149{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.mfb_c00149{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.m7e_c00149{transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);}
.mde_c00149{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);}
.m75_c00149{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m70_c00149{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);}
.m116_c00149{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md1_c00149{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);}
.m7a_c00149{transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);}
.me7_c00149{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00149{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);}
.ma2_c00149{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.mcd_c00149{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);}
.m73_c00149{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);}
.m8a_c00149{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);}
.m120_c00149{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.m30_c00149{transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);}
.mae_c00149{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m155_c00149{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);}
.m93_c00149{transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);}
.mbf_c00149{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);}
.m10f_c00149{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);}
.mcf_c00149{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);}
.m103_c00149{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.mb_c00149{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);}
.mb2_c00149{transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);}
.m31_c00149{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);}
.m24_c00149{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);}
.mbb_c00149{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);}
.m22_c00149{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);}
.m71_c00149{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);}
.mec_c00149{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);}
.m46_c00149{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.mcc_c00149{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);}
.m6c_c00149{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m4c_c00149{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);}
.mc7_c00149{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m62_c00149{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);}
.m3c_c00149{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);}
.med_c00149{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m85_c00149{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);}
.m86_c00149{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);}
.me_c00149{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);}
.m32_c00149{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);}
.m18_c00149{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me2_c00149{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00149{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c00149{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);}
.mc8_c00149{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m28_c00149{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);}
.m63_c00149{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);}
.m49_c00149{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00149{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);}
.m0_c00149{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m97_c00149{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m53_c00149{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);}
.m58_c00149{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00149{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);}
.m1_c00149{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md2_c00149{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00149{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);}
.me3_c00149{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c00149{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m15_c00149{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);}
.meb_c00149{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00149{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m48_c00149{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00149{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c00149{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m158_c00149{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf3_c00149{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00149{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c00149{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);}
.m36_c00149{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00149{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00149{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m95_c00149{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);}
.m2c_c00149{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m45_c00149{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);}
.m2d_c00149{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m92_c00149{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00149{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00149{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m55_c00149{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);}
.m57_c00149{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c00149{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m14a_c00149{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);}
.m150_c00149{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00149{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00149{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);}
.m79_c00149{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00149{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mba_c00149{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2_c00149{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);}
.m50_c00149{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m54_c00149{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);}
.m165_c00149{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m17_c00149{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m44_c00149{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md7_c00149{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00149{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mea_c00149{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00149{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m12_c00149{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m69_c00149{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.maa_c00149{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m10_c00149{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mca_c00149{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m89_c00149{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m108_c00149{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m3_c00149{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m43_c00149{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);}
.m14b_c00149{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00149{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mad_c00149{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m76_c00149{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00149{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m139_c00149{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m7_c00149{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);}
.m74_c00149{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m149_c00149{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.md5_c00149{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00149{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m16a_c00149{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.md4_c00149{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);}
.m129_c00149{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00149{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m164_c00149{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m168_c00149{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m47_c00149{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m20_c00149{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.md_c00149{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m68_c00149{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);}
.m5c_c00149{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);}
.m16_c00149{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m167_c00149{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.m159_c00149{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.mf_c00149{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00149{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m21_c00149{transform:matrix(2.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.135000,0.000000,0.000000,0.250000,0,0);}
.m42_c00149{transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00149{transform:matrix(9.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.660000,0.000000,0.000000,0.250000,0,0);}
.v1_c00149{vertical-align:-3.480000px;}
.v0_c00149{vertical-align:0.000000px;}
.v2_c00149{vertical-align:3.480000px;}
.ls1_c00149{letter-spacing:0.000000px;}
.ls0_c00149{letter-spacing:71.021855px;}
.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;}
}
.ws1_c00149{word-spacing:0.000000px;}
.ws0_c00149{word-spacing:17.336400px;}
.fc0_c00149{color:transparent;}
.fse_c00149{font-size:3.456000px;}
.fsf_c00149{font-size:6.000000px;}
.fs3_c00149{font-size:6.900000px;}
.fs0_c00149{font-size:10.380000px;}
.fs20_c00149{font-size:13.800000px;}
.fs2_c00149{font-size:17.280000px;}
.fs1f_c00149{font-size:20.760000px;}
.fs21_c00149{font-size:24.180000px;}
.fs14_c00149{font-size:27.660000px;}
.fs22_c00149{font-size:31.080000px;}
.fs6_c00149{font-size:34.560000px;}
.fs1_c00149{font-size:38.040000px;}
.fs5_c00149{font-size:41.460000px;}
.fs8_c00149{font-size:44.940000px;}
.fs24_c00149{font-size:48.360000px;}
.fs23_c00149{font-size:51.840000px;}
.fs9_c00149{font-size:55.320000px;}
.fsc_c00149{font-size:58.740000px;}
.fs4_c00149{font-size:62.220000px;}
.fsa_c00149{font-size:65.640000px;}
.fs13_c00149{font-size:69.120000px;}
.fs17_c00149{font-size:72.600000px;}
.fs1b_c00149{font-size:76.020000px;}
.fs18_c00149{font-size:79.500000px;}
.fs15_c00149{font-size:82.920000px;}
.fs11_c00149{font-size:86.400000px;}
.fs1d_c00149{font-size:89.880000px;}
.fs16_c00149{font-size:93.300000px;}
.fs1c_c00149{font-size:96.780000px;}
.fs7_c00149{font-size:100.200000px;}
.fs1e_c00149{font-size:103.680000px;}
.fsb_c00149{font-size:107.160000px;}
.fsd_c00149{font-size:110.580000px;}
.fs19_c00149{font-size:114.060000px;}
.fs1a_c00149{font-size:117.480000px;}
.fs29_c00149{font-size:120.960000px;}
.fs26_c00149{font-size:124.440000px;}
.fs27_c00149{font-size:127.860000px;}
.fs25_c00149{font-size:131.340000px;}
.fs10_c00149{font-size:141.720000px;}
.fs12_c00149{font-size:145.140000px;}
.fs28_c00149{font-size:155.520000px;}
.fs2a_c00149{font-size:162.420000px;}
.fs2b_c00149{font-size:165.900000px;}
.y0_c00149{bottom:0.000000px;}
.y16d_c00149{bottom:218.595000px;}
.y16e_c00149{bottom:219.450000px;}
.y16b_c00149{bottom:220.320000px;}
.y16f_c00149{bottom:221.190000px;}
.y16c_c00149{bottom:222.045000px;}
.y16a_c00149{bottom:224.640000px;}
.y167_c00149{bottom:225.510000px;}
.y169_c00149{bottom:226.365000px;}
.y168_c00149{bottom:227.235000px;}
.y163_c00149{bottom:228.090000px;}
.y164_c00149{bottom:228.960000px;}
.y166_c00149{bottom:229.830000px;}
.y160_c00149{bottom:231.555000px;}
.y162_c00149{bottom:233.280000px;}
.y165_c00149{bottom:235.875000px;}
.y161_c00149{bottom:236.730000px;}
.y15f_c00149{bottom:242.790000px;}
.y15e_c00149{bottom:244.515000px;}
.y15d_c00149{bottom:262.650000px;}
.y15b_c00149{bottom:267.840000px;}
.y155_c00149{bottom:268.710000px;}
.y156_c00149{bottom:269.565000px;}
.y157_c00149{bottom:270.435000px;}
.y158_c00149{bottom:271.290000px;}
.y15c_c00149{bottom:274.755000px;}
.y15a_c00149{bottom:275.610000px;}
.y159_c00149{bottom:278.205000px;}
.y153_c00149{bottom:292.890000px;}
.y151_c00149{bottom:293.760000px;}
.y14e_c00149{bottom:294.630000px;}
.y150_c00149{bottom:295.485000px;}
.y154_c00149{bottom:296.355000px;}
.y14f_c00149{bottom:299.805000px;}
.y152_c00149{bottom:300.675000px;}
.y14d_c00149{bottom:301.530000px;}
.y14c_c00149{bottom:311.910000px;}
.y147_c00149{bottom:312.765000px;}
.y146_c00149{bottom:313.635000px;}
.y176_c00149{bottom:314.490000px;}
.y145_c00149{bottom:315.360000px;}
.y148_c00149{bottom:316.230000px;}
.y14a_c00149{bottom:321.405000px;}
.y14b_c00149{bottom:325.725000px;}
.y149_c00149{bottom:339.555000px;}
.y143_c00149{bottom:341.280000px;}
.y144_c00149{bottom:342.150000px;}
.y141_c00149{bottom:343.005000px;}
.y13f_c00149{bottom:343.875000px;}
.y13c_c00149{bottom:344.730000px;}
.y142_c00149{bottom:348.195000px;}
.y13b_c00149{bottom:349.050000px;}
.y13d_c00149{bottom:349.920000px;}
.y140_c00149{bottom:351.645000px;}
.y13e_c00149{bottom:354.240000px;}
.y175_c00149{bottom:358.560000px;}
.y138_c00149{bottom:368.070000px;}
.y134_c00149{bottom:368.925000px;}
.y135_c00149{bottom:369.795000px;}
.y136_c00149{bottom:370.650000px;}
.y137_c00149{bottom:371.520000px;}
.y139_c00149{bottom:375.840000px;}
.y13a_c00149{bottom:389.670000px;}
.y132_c00149{bottom:393.990000px;}
.y12f_c00149{bottom:394.845000px;}
.y133_c00149{bottom:395.715000px;}
.y12e_c00149{bottom:398.310000px;}
.y131_c00149{bottom:400.890000px;}
.y130_c00149{bottom:402.630000px;}
.y126_c00149{bottom:418.170000px;}
.y129_c00149{bottom:419.040000px;}
.y127_c00149{bottom:419.910000px;}
.y128_c00149{bottom:420.765000px;}
.y12d_c00149{bottom:421.635000px;}
.y12c_c00149{bottom:422.490000px;}
.y12b_c00149{bottom:423.360000px;}
.y12a_c00149{bottom:426.810000px;}
.y122_c00149{bottom:440.640000px;}
.y11e_c00149{bottom:443.235000px;}
.y11f_c00149{bottom:444.090000px;}
.y120_c00149{bottom:444.960000px;}
.y123_c00149{bottom:445.830000px;}
.y125_c00149{bottom:446.685000px;}
.y11d_c00149{bottom:447.555000px;}
.y121_c00149{bottom:448.410000px;}
.y124_c00149{bottom:449.280000px;}
.y11c_c00149{bottom:451.005000px;}
.y11a_c00149{bottom:466.560000px;}
.y119_c00149{bottom:467.430000px;}
.y117_c00149{bottom:468.285000px;}
.y116_c00149{bottom:470.010000px;}
.y11b_c00149{bottom:475.200000px;}
.y118_c00149{bottom:476.070000px;}
.y114_c00149{bottom:490.755000px;}
.y115_c00149{bottom:491.610000px;}
.y10e_c00149{bottom:492.480000px;}
.y110_c00149{bottom:493.350000px;}
.y111_c00149{bottom:494.205000px;}
.y10f_c00149{bottom:497.670000px;}
.y113_c00149{bottom:499.395000px;}
.y112_c00149{bottom:501.120000px;}
.y10d_c00149{bottom:504.570000px;}
.y174_c00149{bottom:512.355000px;}
.y10c_c00149{bottom:515.805000px;}
.y108_c00149{bottom:516.675000px;}
.y10a_c00149{bottom:517.530000px;}
.y109_c00149{bottom:520.125000px;}
.y107_c00149{bottom:525.315000px;}
.y10b_c00149{bottom:527.040000px;}
.y106_c00149{bottom:541.725000px;}
.y105_c00149{bottom:542.595000px;}
.y173_c00149{bottom:543.450000px;}
.y102_c00149{bottom:544.320000px;}
.y103_c00149{bottom:546.915000px;}
.yfe_c00149{bottom:547.770000px;}
.y101_c00149{bottom:548.640000px;}
.y172_c00149{bottom:549.510000px;}
.y100_c00149{bottom:551.235000px;}
.y104_c00149{bottom:552.090000px;}
.yff_c00149{bottom:559.875000px;}
.y171_c00149{bottom:567.645000px;}
.yfb_c00149{bottom:571.110000px;}
.yfd_c00149{bottom:573.690000px;}
.yfc_c00149{bottom:574.560000px;}
.yf9_c00149{bottom:575.430000px;}
.yf8_c00149{bottom:576.285000px;}
.yfa_c00149{bottom:577.155000px;}
.y170_c00149{bottom:590.970000px;}
.yf7_c00149{bottom:592.710000px;}
.yf2_c00149{bottom:597.030000px;}
.yf4_c00149{bottom:598.755000px;}
.yf3_c00149{bottom:600.480000px;}
.yf6_c00149{bottom:601.350000px;}
.yf5_c00149{bottom:602.205000px;}
.y56_c00149{bottom:617.760000px;}
.yef_c00149{bottom:618.630000px;}
.yf1_c00149{bottom:619.485000px;}
.yf0_c00149{bottom:626.400000px;}
.yed_c00149{bottom:642.810000px;}
.ye9_c00149{bottom:643.680000px;}
.yec_c00149{bottom:644.550000px;}
.yeb_c00149{bottom:645.405000px;}
.yee_c00149{bottom:646.275000px;}
.yea_c00149{bottom:651.450000px;}
.ydf_c00149{bottom:668.730000px;}
.ye3_c00149{bottom:669.600000px;}
.ye5_c00149{bottom:670.470000px;}
.ye6_c00149{bottom:672.195000px;}
.ye0_c00149{bottom:673.920000px;}
.ye7_c00149{bottom:674.790000px;}
.ye1_c00149{bottom:675.645000px;}
.ye2_c00149{bottom:676.515000px;}
.ye4_c00149{bottom:677.370000px;}
.yde_c00149{bottom:678.240000px;}
.ye8_c00149{bottom:679.965000px;}
.ydc_c00149{bottom:686.880000px;}
.ydd_c00149{bottom:692.070000px;}
.yda_c00149{bottom:692.925000px;}
.yd5_c00149{bottom:693.795000px;}
.yd6_c00149{bottom:695.520000px;}
.yd9_c00149{bottom:696.390000px;}
.ydb_c00149{bottom:700.710000px;}
.yd7_c00149{bottom:701.565000px;}
.yd8_c00149{bottom:702.435000px;}
.yd4_c00149{bottom:703.290000px;}
.yd2_c00149{bottom:717.120000px;}
.ycb_c00149{bottom:718.845000px;}
.ycf_c00149{bottom:719.715000px;}
.yd1_c00149{bottom:720.570000px;}
.ycd_c00149{bottom:721.440000px;}
.yd0_c00149{bottom:722.310000px;}
.yd3_c00149{bottom:723.165000px;}
.yce_c00149{bottom:724.890000px;}
.ycc_c00149{bottom:725.760000px;}
.yc8_c00149{bottom:741.315000px;}
.y29_c00149{bottom:742.170000px;}
.yc6_c00149{bottom:743.910000px;}
.yc4_c00149{bottom:746.490000px;}
.yc5_c00149{bottom:747.360000px;}
.yc3_c00149{bottom:749.955000px;}
.yc2_c00149{bottom:750.810000px;}
.yc7_c00149{bottom:751.680000px;}
.yc9_c00149{bottom:754.275000px;}
.y28_c00149{bottom:756.000000px;}
.yca_c00149{bottom:761.190000px;}
.y27_c00149{bottom:768.090000px;}
.yc1_c00149{bottom:771.555000px;}
.yc0_c00149{bottom:773.280000px;}
.ybe_c00149{bottom:774.150000px;}
.ybf_c00149{bottom:775.005000px;}
.yba_c00149{bottom:785.370000px;}
.yb7_c00149{bottom:787.110000px;}
.yb9_c00149{bottom:788.835000px;}
.yb8_c00149{bottom:789.690000px;}
.y26_c00149{bottom:792.285000px;}
.ybd_c00149{bottom:794.010000px;}
.ybb_c00149{bottom:799.200000px;}
.ybc_c00149{bottom:807.840000px;}
.yb4_c00149{bottom:814.755000px;}
.yb1_c00149{bottom:815.610000px;}
.yb2_c00149{bottom:816.480000px;}
.y25_c00149{bottom:817.350000px;}
.yb5_c00149{bottom:819.075000px;}
.y5e_c00149{bottom:819.930000px;}
.yb3_c00149{bottom:822.525000px;}
.yb0_c00149{bottom:823.395000px;}
.yaf_c00149{bottom:825.120000px;}
.y24_c00149{bottom:825.990000px;}
.yb6_c00149{bottom:833.760000px;}
.yae_c00149{bottom:838.950000px;}
.yab_c00149{bottom:839.805000px;}
.ya7_c00149{bottom:840.675000px;}
.yad_c00149{bottom:841.530000px;}
.ya8_c00149{bottom:844.125000px;}
.ya9_c00149{bottom:845.850000px;}
.yac_c00149{bottom:846.720000px;}
.yaa_c00149{bottom:848.445000px;}
.y23_c00149{bottom:862.275000px;}
.ya6_c00149{bottom:864.000000px;}
.ya5_c00149{bottom:864.870000px;}
.ya3_c00149{bottom:865.725000px;}
.y22_c00149{bottom:866.595000px;}
.ya4_c00149{bottom:867.450000px;}
.ya2_c00149{bottom:869.190000px;}
.ya1_c00149{bottom:873.510000px;}
.y9d_c00149{bottom:889.050000px;}
.y9c_c00149{bottom:889.920000px;}
.y9e_c00149{bottom:892.515000px;}
.y9f_c00149{bottom:896.835000px;}
.y9b_c00149{bottom:898.560000px;}
.y21_c00149{bottom:902.880000px;}
.ya0_c00149{bottom:912.390000px;}
.y98_c00149{bottom:914.970000px;}
.y9a_c00149{bottom:917.565000px;}
.y20_c00149{bottom:918.435000px;}
.y97_c00149{bottom:920.160000px;}
.y99_c00149{bottom:921.030000px;}
.y94_c00149{bottom:922.755000px;}
.y96_c00149{bottom:923.610000px;}
.y95_c00149{bottom:924.480000px;}
.y1e_c00149{bottom:927.930000px;}
.y93_c00149{bottom:939.165000px;}
.y1f_c00149{bottom:940.035000px;}
.y8f_c00149{bottom:940.890000px;}
.y8e_c00149{bottom:941.760000px;}
.y91_c00149{bottom:942.630000px;}
.y1b_c00149{bottom:943.485000px;}
.y1c_c00149{bottom:946.080000px;}
.y8c_c00149{bottom:947.805000px;}
.y1d_c00149{bottom:948.675000px;}
.y8d_c00149{bottom:949.530000px;}
.y1a_c00149{bottom:950.400000px;}
.y90_c00149{bottom:959.910000px;}
.y92_c00149{bottom:962.490000px;}
.y89_c00149{bottom:963.360000px;}
.y8b_c00149{bottom:964.230000px;}
.y82_c00149{bottom:965.085000px;}
.y86_c00149{bottom:965.955000px;}
.y88_c00149{bottom:966.810000px;}
.y85_c00149{bottom:968.550000px;}
.y87_c00149{bottom:969.405000px;}
.y81_c00149{bottom:972.000000px;}
.y83_c00149{bottom:972.870000px;}
.y84_c00149{bottom:973.725000px;}
.y8a_c00149{bottom:974.595000px;}
.y19_c00149{bottom:978.045000px;}
.y7e_c00149{bottom:991.005000px;}
.y7d_c00149{bottom:991.875000px;}
.y80_c00149{bottom:992.730000px;}
.y18_c00149{bottom:993.600000px;}
.y7b_c00149{bottom:996.195000px;}
.y7c_c00149{bottom:997.050000px;}
.y7f_c00149{bottom:997.920000px;}
.y17_c00149{bottom:1003.110000px;}
.y77_c00149{bottom:1016.070000px;}
.y76_c00149{bottom:1016.925000px;}
.y78_c00149{bottom:1017.795000px;}
.y16_c00149{bottom:1018.650000px;}
.y79_c00149{bottom:1019.520000px;}
.y7a_c00149{bottom:1022.970000px;}
.y75_c00149{bottom:1023.840000px;}
.y71_c00149{bottom:1041.990000px;}
.y15_c00149{bottom:1043.715000px;}
.y72_c00149{bottom:1045.440000px;}
.y73_c00149{bottom:1046.310000px;}
.y74_c00149{bottom:1047.165000px;}
.y70_c00149{bottom:1048.890000px;}
.y14_c00149{bottom:1054.080000px;}
.y6d_c00149{bottom:1066.170000px;}
.y6c_c00149{bottom:1067.040000px;}
.y6b_c00149{bottom:1068.765000px;}
.y68_c00149{bottom:1073.085000px;}
.y69_c00149{bottom:1073.955000px;}
.y6a_c00149{bottom:1074.810000px;}
.y6f_c00149{bottom:1084.320000px;}
.y6e_c00149{bottom:1086.045000px;}
.y67_c00149{bottom:1089.510000px;}
.y66_c00149{bottom:1090.365000px;}
.y64_c00149{bottom:1092.090000px;}
.y12_c00149{bottom:1092.960000px;}
.y13_c00149{bottom:1097.280000px;}
.y65_c00149{bottom:1099.875000px;}
.y63_c00149{bottom:1118.010000px;}
.y62_c00149{bottom:1118.880000px;}
.y61_c00149{bottom:1121.475000px;}
.y60_c00149{bottom:1127.520000px;}
.y5f_c00149{bottom:1128.390000px;}
.y11_c00149{bottom:1130.970000px;}
.yf_c00149{bottom:1143.075000px;}
.y10_c00149{bottom:1143.930000px;}
.y5a_c00149{bottom:1152.570000px;}
.y5c_c00149{bottom:1154.310000px;}
.y59_c00149{bottom:1155.165000px;}
.y5b_c00149{bottom:1156.035000px;}
.y5d_c00149{bottom:1160.355000px;}
.y58_c00149{bottom:1167.270000px;}
.ye_c00149{bottom:1168.125000px;}
.y57_c00149{bottom:1175.040000px;}
.yd_c00149{bottom:1178.490000px;}
.y55_c00149{bottom:1184.550000px;}
.y51_c00149{bottom:1186.275000px;}
.y52_c00149{bottom:1187.130000px;}
.y53_c00149{bottom:1188.870000px;}
.yc_c00149{bottom:1190.595000px;}
.y50_c00149{bottom:1196.640000px;}
.ya_c00149{bottom:1202.685000px;}
.y4f_c00149{bottom:1209.600000px;}
.y54_c00149{bottom:1211.325000px;}
.yb_c00149{bottom:1223.430000px;}
.y4c_c00149{bottom:1241.565000px;}
.y9_c00149{bottom:1244.160000px;}
.y4b_c00149{bottom:1249.350000px;}
.y4e_c00149{bottom:1251.075000px;}
.y4d_c00149{bottom:1257.120000px;}
.y4a_c00149{bottom:1257.990000px;}
.y49_c00149{bottom:1260.570000px;}
.y8_c00149{bottom:1268.355000px;}
.y7_c00149{bottom:1293.405000px;}
.y45_c00149{bottom:1294.275000px;}
.y47_c00149{bottom:1295.130000px;}
.y46_c00149{bottom:1305.510000px;}
.y48_c00149{bottom:1315.875000px;}
.y6_c00149{bottom:1318.470000px;}
.y44_c00149{bottom:1319.325000px;}
.y42_c00149{bottom:1320.195000px;}
.y3f_c00149{bottom:1321.920000px;}
.y41_c00149{bottom:1326.240000px;}
.y40_c00149{bottom:1328.835000px;}
.y43_c00149{bottom:1331.430000px;}
.y4_c00149{bottom:1343.520000px;}
.y3b_c00149{bottom:1344.390000px;}
.y3e_c00149{bottom:1345.245000px;}
.y5_c00149{bottom:1346.115000px;}
.y3a_c00149{bottom:1347.840000px;}
.y3d_c00149{bottom:1351.290000px;}
.y38_c00149{bottom:1352.160000px;}
.y39_c00149{bottom:1353.030000px;}
.y3c_c00149{bottom:1356.480000px;}
.y37_c00149{bottom:1358.205000px;}
.y2_c00149{bottom:1367.715000px;}
.y3_c00149{bottom:1371.165000px;}
.y36_c00149{bottom:1377.210000px;}
.y34_c00149{bottom:1378.080000px;}
.y2f_c00149{bottom:1379.805000px;}
.y1_c00149{bottom:1381.530000px;}
.y2e_c00149{bottom:1382.400000px;}
.y2d_c00149{bottom:1384.995000px;}
.y33_c00149{bottom:1385.850000px;}
.y30_c00149{bottom:1386.720000px;}
.y31_c00149{bottom:1387.590000px;}
.y32_c00149{bottom:1388.445000px;}
.y35_c00149{bottom:1392.765000px;}
.y2b_c00149{bottom:1401.405000px;}
.y2c_c00149{bottom:1405.725000px;}
.y2a_c00149{bottom:1415.235000px;}
.h10_c00149{height:3.110063px;}
.h11_c00149{height:5.399414px;}
.h5_c00149{height:6.209326px;}
.h2e_c00149{height:8.879414px;}
.h2_c00149{height:9.340986px;}
.h22_c00149{height:12.418652px;}
.h4_c00149{height:15.550313px;}
.h21_c00149{height:18.681973px;}
.h23_c00149{height:21.759639px;}
.h16_c00149{height:24.891299px;}
.h24_c00149{height:27.968965px;}
.h8_c00149{height:31.100625px;}
.h3_c00149{height:34.232285px;}
.h7_c00149{height:37.309951px;}
.ha_c00149{height:40.441611px;}
.h26_c00149{height:43.519277px;}
.h25_c00149{height:46.650937px;}
.hb_c00149{height:49.782598px;}
.he_c00149{height:52.860264px;}
.h6_c00149{height:55.991924px;}
.hc_c00149{height:59.069590px;}
.h15_c00149{height:62.201250px;}
.h19_c00149{height:65.332910px;}
.h1d_c00149{height:68.410576px;}
.h1a_c00149{height:71.542236px;}
.h17_c00149{height:74.619902px;}
.h13_c00149{height:77.751563px;}
.h1f_c00149{height:80.883223px;}
.h18_c00149{height:83.960889px;}
.h1e_c00149{height:87.092549px;}
.h9_c00149{height:90.170215px;}
.h20_c00149{height:93.301875px;}
.hd_c00149{height:96.433535px;}
.hf_c00149{height:99.511201px;}
.h1b_c00149{height:102.642861px;}
.h1c_c00149{height:105.720527px;}
.h2b_c00149{height:108.852188px;}
.h28_c00149{height:111.983848px;}
.h29_c00149{height:115.061514px;}
.h27_c00149{height:118.193174px;}
.h12_c00149{height:127.534160px;}
.h14_c00149{height:130.611826px;}
.h2a_c00149{height:139.952812px;}
.h2c_c00149{height:146.162139px;}
.h2d_c00149{height:149.293799px;}
.h1_c00149{height:1503.000000px;}
.h0_c00149{height:1503.360000px;}
.w0_c00149{width:1088.640000px;}
.w1_c00149{width:1089.000000px;}
.x0_c00149{left:0.000000px;}
.x4_c00149{left:2.595000px;}
.x3_c00149{left:9.510000px;}
.x6_c00149{left:12.960000px;}
.x2_c00149{left:25.920000px;}
.x5_c00149{left:28.515000px;}
.x1_c00149{left:57.885000px;}
.x42_c00149{left:138.240000px;}
.xb3_c00149{left:164.160000px;}
.xb4_c00149{left:189.210000px;}
.xc5_c00149{left:204.765000px;}
.x31_c00149{left:212.550000px;}
.xae_c00149{left:214.275000px;}
.xea_c00149{left:216.870000px;}
.x72_c00149{left:218.595000px;}
.xaf_c00149{left:220.320000px;}
.xbb_c00149{left:222.915000px;}
.x23_c00149{left:225.510000px;}
.x47_c00149{left:227.235000px;}
.x5c_c00149{left:228.960000px;}
.xdd_c00149{left:230.685000px;}
.x1b_c00149{left:234.150000px;}
.xcd_c00149{left:246.240000px;}
.x8e_c00149{left:249.690000px;}
.x1c_c00149{left:252.285000px;}
.x80_c00149{left:257.475000px;}
.xc6_c00149{left:260.070000px;}
.xb5_c00149{left:261.795000px;}
.xd0_c00149{left:265.245000px;}
.x79_c00149{left:267.840000px;}
.x9b_c00149{left:269.565000px;}
.x81_c00149{left:273.885000px;}
.x61_c00149{left:275.610000px;}
.xbc_c00149{left:278.205000px;}
.x8_c00149{left:280.800000px;}
.x98_c00149{left:283.395000px;}
.xd1_c00149{left:287.715000px;}
.xca_c00149{left:290.310000px;}
.xdb_c00149{left:292.035000px;}
.x8a_c00149{left:294.630000px;}
.xa3_c00149{left:296.355000px;}
.xcb_c00149{left:303.270000px;}
.x99_c00149{left:304.995000px;}
.x8b_c00149{left:308.445000px;}
.x9c_c00149{left:312.765000px;}
.x94_c00149{left:314.490000px;}
.x1d_c00149{left:320.550000px;}
.xb6_c00149{left:323.130000px;}
.x8f_c00149{left:325.725000px;}
.x27_c00149{left:328.320000px;}
.xce_c00149{left:330.045000px;}
.xd5_c00149{left:332.640000px;}
.xa4_c00149{left:336.090000px;}
.x32_c00149{left:339.555000px;}
.xb_c00149{left:341.280000px;}
.x62_c00149{left:344.730000px;}
.x82_c00149{left:347.325000px;}
.x48_c00149{left:350.790000px;}
.x24_c00149{left:353.370000px;}
.xc_c00149{left:355.110000px;}
.xb0_c00149{left:359.430000px;}
.x73_c00149{left:363.750000px;}
.x1e_c00149{left:366.330000px;}
.x6b_c00149{left:371.520000px;}
.x58_c00149{left:378.435000px;}
.xc0_c00149{left:381.885000px;}
.x63_c00149{left:385.350000px;}
.xeb_c00149{left:387.930000px;}
.xdc_c00149{left:389.670000px;}
.x49_c00149{left:393.990000px;}
.xd_c00149{left:395.715000px;}
.x44_c00149{left:397.440000px;}
.xc1_c00149{left:399.165000px;}
.xb7_c00149{left:402.630000px;}
.x28_c00149{left:404.355000px;}
.xa5_c00149{left:406.080000px;}
.x1f_c00149{left:409.530000px;}
.x25_c00149{left:411.270000px;}
.x83_c00149{left:412.995000px;}
.xc3_c00149{left:415.590000px;}
.xde_c00149{left:417.315000px;}
.xbd_c00149{left:419.910000px;}
.x7_c00149{left:421.635000px;}
.x74_c00149{left:423.360000px;}
.xdf_c00149{left:427.680000px;}
.xf1_c00149{left:429.405000px;}
.x38_c00149{left:432.870000px;}
.x7a_c00149{left:435.450000px;}
.xe_c00149{left:439.770000px;}
.x4c_c00149{left:442.365000px;}
.x33_c00149{left:448.410000px;}
.x64_c00149{left:453.600000px;}
.x84_c00149{left:456.195000px;}
.xf_c00149{left:462.240000px;}
.xc7_c00149{left:464.835000px;}
.x43_c00149{left:467.430000px;}
.x6c_c00149{left:469.155000px;}
.x39_c00149{left:471.750000px;}
.x9d_c00149{left:474.330000px;}
.xa6_c00149{left:476.925000px;}
.x65_c00149{left:481.245000px;}
.x10_c00149{left:485.565000px;}
.x54_c00149{left:488.160000px;}
.x5d_c00149{left:491.610000px;}
.xe4_c00149{left:495.075000px;}
.xc8_c00149{left:500.250000px;}
.x29_c00149{left:501.990000px;}
.x11_c00149{left:505.440000px;}
.x3a_c00149{left:508.035000px;}
.x85_c00149{left:510.630000px;}
.xb1_c00149{left:513.210000px;}
.xa7_c00149{left:517.530000px;}
.x90_c00149{left:519.270000px;}
.xbe_c00149{left:521.850000px;}
.x75_c00149{left:524.445000px;}
.x3b_c00149{left:526.170000px;}
.xcf_c00149{left:527.910000px;}
.x7b_c00149{left:530.490000px;}
.x66_c00149{left:532.230000px;}
.x95_c00149{left:534.810000px;}
.xc9_c00149{left:540.000000px;}
.x3c_c00149{left:544.320000px;}
.xb8_c00149{left:547.770000px;}
.x12_c00149{left:552.960000px;}
.x6d_c00149{left:554.685000px;}
.xed_c00149{left:556.410000px;}
.xe0_c00149{left:558.150000px;}
.x3d_c00149{left:560.730000px;}
.x5e_c00149{left:563.325000px;}
.x9e_c00149{left:565.050000px;}
.xec_c00149{left:566.790000px;}
.xa8_c00149{left:569.370000px;}
.x9_c00149{left:574.560000px;}
.x13_c00149{left:576.285000px;}
.x86_c00149{left:580.605000px;}
.xa9_c00149{left:582.330000px;}
.xa_c00149{left:584.925000px;}
.x4d_c00149{left:586.650000px;}
.x3e_c00149{left:588.390000px;}
.xd2_c00149{left:590.970000px;}
.x34_c00149{left:593.565000px;}
.x45_c00149{left:599.610000px;}
.xb9_c00149{left:603.075000px;}
.x14_c00149{left:604.800000px;}
.x3f_c00149{left:606.525000px;}
.x55_c00149{left:609.120000px;}
.x46_c00149{left:611.715000px;}
.x7c_c00149{left:613.440000px;}
.x96_c00149{left:616.890000px;}
.x2c_c00149{left:619.485000px;}
.x4a_c00149{left:622.080000px;}
.xaa_c00149{left:625.530000px;}
.x15_c00149{left:628.125000px;}
.xef_c00149{left:630.720000px;}
.x2d_c00149{left:632.445000px;}
.x76_c00149{left:635.910000px;}
.x40_c00149{left:638.490000px;}
.xd7_c00149{left:641.085000px;}
.x9a_c00149{left:645.405000px;}
.x67_c00149{left:648.000000px;}
.xc4_c00149{left:650.595000px;}
.x16_c00149{left:652.320000px;}
.x26_c00149{left:654.045000px;}
.xd8_c00149{left:657.510000px;}
.x4e_c00149{left:661.830000px;}
.xd6_c00149{left:663.555000px;}
.x68_c00149{left:673.920000px;}
.x9f_c00149{left:677.370000px;}
.x17_c00149{left:681.690000px;}
.x91_c00149{left:683.430000px;}
.x4f_c00149{left:686.880000px;}
.xe1_c00149{left:691.200000px;}
.xc2_c00149{left:694.650000px;}
.x87_c00149{left:696.390000px;}
.xa0_c00149{left:699.840000px;}
.x18_c00149{left:702.435000px;}
.x2e_c00149{left:704.160000px;}
.x6e_c00149{left:706.755000px;}
.x20_c00149{left:709.350000px;}
.x56_c00149{left:712.800000px;}
.x37_c00149{left:716.250000px;}
.x69_c00149{left:725.760000px;}
.x5f_c00149{left:728.355000px;}
.x19_c00149{left:730.950000px;}
.xe2_c00149{left:733.530000px;}
.x35_c00149{left:739.590000px;}
.x50_c00149{left:742.170000px;}
.xd9_c00149{left:743.910000px;}
.x2a_c00149{left:745.635000px;}
.xf0_c00149{left:749.082816px;}
.x6f_c00149{left:750.810000px;}
.x6a_c00149{left:752.550000px;}
.x8c_c00149{left:756.870000px;}
.x77_c00149{left:758.595000px;}
.x21_c00149{left:761.190000px;}
.xab_c00149{left:765.510000px;}
.xbf_c00149{left:768.960000px;}
.xa1_c00149{left:770.685000px;}
.xcc_c00149{left:773.280000px;}
.x2b_c00149{left:775.005000px;}
.x88_c00149{left:778.470000px;}
.x7d_c00149{left:781.050000px;}
.x22_c00149{left:785.370000px;}
.x51_c00149{left:787.965000px;}
.xd3_c00149{left:789.690000px;}
.xba_c00149{left:792.285000px;}
.xac_c00149{left:802.650000px;}
.xe3_c00149{left:804.390000px;}
.x2f_c00149{left:806.970000px;}
.xee_c00149{left:810.435000px;}
.x92_c00149{left:812.160000px;}
.x70_c00149{left:813.885000px;}
.x30_c00149{left:816.480000px;}
.x36_c00149{left:819.930000px;}
.x59_c00149{left:822.525000px;}
.xe5_c00149{left:826.845000px;}
.x1a_c00149{left:828.570000px;}
.xad_c00149{left:832.035000px;}
.x5a_c00149{left:835.485000px;}
.x7e_c00149{left:838.950000px;}
.x71_c00149{left:840.675000px;}
.xda_c00149{left:842.400000px;}
.x89_c00149{left:844.995000px;}
.xd4_c00149{left:852.765000px;}
.x52_c00149{left:862.275000px;}
.xa2_c00149{left:864.000000px;}
.x5b_c00149{left:865.725000px;}
.x78_c00149{left:869.190000px;}
.x60_c00149{left:871.770000px;}
.x4b_c00149{left:875.235000px;}
.x57_c00149{left:876.960000px;}
.x53_c00149{left:878.685000px;}
.xb2_c00149{left:880.410000px;}
.x7f_c00149{left:882.150000px;}
.x97_c00149{left:886.470000px;}
.xe6_c00149{left:888.195000px;}
.xe9_c00149{left:895.110000px;}
.x93_c00149{left:896.835000px;}
.x8d_c00149{left:898.560000px;}
.xe7_c00149{left:900.285000px;}
.xe8_c00149{left:912.390000px;}
.x41_c00149{left:944.355000px;}
@media print{
.v1_c00149{vertical-align:-3.093333pt;}
.v0_c00149{vertical-align:0.000000pt;}
.v2_c00149{vertical-align:3.093333pt;}
.ls1_c00149{letter-spacing:0.000000pt;}
.ls0_c00149{letter-spacing:63.130537pt;}
.ws1_c00149{word-spacing:0.000000pt;}
.ws0_c00149{word-spacing:15.410133pt;}
.fse_c00149{font-size:3.072000pt;}
.fsf_c00149{font-size:5.333333pt;}
.fs3_c00149{font-size:6.133333pt;}
.fs0_c00149{font-size:9.226667pt;}
.fs20_c00149{font-size:12.266667pt;}
.fs2_c00149{font-size:15.360000pt;}
.fs1f_c00149{font-size:18.453333pt;}
.fs21_c00149{font-size:21.493333pt;}
.fs14_c00149{font-size:24.586667pt;}
.fs22_c00149{font-size:27.626667pt;}
.fs6_c00149{font-size:30.720000pt;}
.fs1_c00149{font-size:33.813333pt;}
.fs5_c00149{font-size:36.853333pt;}
.fs8_c00149{font-size:39.946667pt;}
.fs24_c00149{font-size:42.986667pt;}
.fs23_c00149{font-size:46.080000pt;}
.fs9_c00149{font-size:49.173333pt;}
.fsc_c00149{font-size:52.213333pt;}
.fs4_c00149{font-size:55.306667pt;}
.fsa_c00149{font-size:58.346667pt;}
.fs13_c00149{font-size:61.440000pt;}
.fs17_c00149{font-size:64.533333pt;}
.fs1b_c00149{font-size:67.573333pt;}
.fs18_c00149{font-size:70.666667pt;}
.fs15_c00149{font-size:73.706667pt;}
.fs11_c00149{font-size:76.800000pt;}
.fs1d_c00149{font-size:79.893333pt;}
.fs16_c00149{font-size:82.933333pt;}
.fs1c_c00149{font-size:86.026667pt;}
.fs7_c00149{font-size:89.066667pt;}
.fs1e_c00149{font-size:92.160000pt;}
.fsb_c00149{font-size:95.253333pt;}
.fsd_c00149{font-size:98.293333pt;}
.fs19_c00149{font-size:101.386667pt;}
.fs1a_c00149{font-size:104.426667pt;}
.fs29_c00149{font-size:107.520000pt;}
.fs26_c00149{font-size:110.613333pt;}
.fs27_c00149{font-size:113.653333pt;}
.fs25_c00149{font-size:116.746667pt;}
.fs10_c00149{font-size:125.973333pt;}
.fs12_c00149{font-size:129.013333pt;}
.fs28_c00149{font-size:138.240000pt;}
.fs2a_c00149{font-size:144.373333pt;}
.fs2b_c00149{font-size:147.466667pt;}
.y0_c00149{bottom:0.000000pt;}
.y16d_c00149{bottom:194.306667pt;}
.y16e_c00149{bottom:195.066667pt;}
.y16b_c00149{bottom:195.840000pt;}
.y16f_c00149{bottom:196.613333pt;}
.y16c_c00149{bottom:197.373333pt;}
.y16a_c00149{bottom:199.680000pt;}
.y167_c00149{bottom:200.453333pt;}
.y169_c00149{bottom:201.213333pt;}
.y168_c00149{bottom:201.986667pt;}
.y163_c00149{bottom:202.746667pt;}
.y164_c00149{bottom:203.520000pt;}
.y166_c00149{bottom:204.293333pt;}
.y160_c00149{bottom:205.826667pt;}
.y162_c00149{bottom:207.360000pt;}
.y165_c00149{bottom:209.666667pt;}
.y161_c00149{bottom:210.426667pt;}
.y15f_c00149{bottom:215.813333pt;}
.y15e_c00149{bottom:217.346667pt;}
.y15d_c00149{bottom:233.466667pt;}
.y15b_c00149{bottom:238.080000pt;}
.y155_c00149{bottom:238.853333pt;}
.y156_c00149{bottom:239.613333pt;}
.y157_c00149{bottom:240.386667pt;}
.y158_c00149{bottom:241.146667pt;}
.y15c_c00149{bottom:244.226667pt;}
.y15a_c00149{bottom:244.986667pt;}
.y159_c00149{bottom:247.293333pt;}
.y153_c00149{bottom:260.346667pt;}
.y151_c00149{bottom:261.120000pt;}
.y14e_c00149{bottom:261.893333pt;}
.y150_c00149{bottom:262.653333pt;}
.y154_c00149{bottom:263.426667pt;}
.y14f_c00149{bottom:266.493333pt;}
.y152_c00149{bottom:267.266667pt;}
.y14d_c00149{bottom:268.026667pt;}
.y14c_c00149{bottom:277.253333pt;}
.y147_c00149{bottom:278.013333pt;}
.y146_c00149{bottom:278.786667pt;}
.y176_c00149{bottom:279.546667pt;}
.y145_c00149{bottom:280.320000pt;}
.y148_c00149{bottom:281.093333pt;}
.y14a_c00149{bottom:285.693333pt;}
.y14b_c00149{bottom:289.533333pt;}
.y149_c00149{bottom:301.826667pt;}
.y143_c00149{bottom:303.360000pt;}
.y144_c00149{bottom:304.133333pt;}
.y141_c00149{bottom:304.893333pt;}
.y13f_c00149{bottom:305.666667pt;}
.y13c_c00149{bottom:306.426667pt;}
.y142_c00149{bottom:309.506667pt;}
.y13b_c00149{bottom:310.266667pt;}
.y13d_c00149{bottom:311.040000pt;}
.y140_c00149{bottom:312.573333pt;}
.y13e_c00149{bottom:314.880000pt;}
.y175_c00149{bottom:318.720000pt;}
.y138_c00149{bottom:327.173333pt;}
.y134_c00149{bottom:327.933333pt;}
.y135_c00149{bottom:328.706667pt;}
.y136_c00149{bottom:329.466667pt;}
.y137_c00149{bottom:330.240000pt;}
.y139_c00149{bottom:334.080000pt;}
.y13a_c00149{bottom:346.373333pt;}
.y132_c00149{bottom:350.213333pt;}
.y12f_c00149{bottom:350.973333pt;}
.y133_c00149{bottom:351.746667pt;}
.y12e_c00149{bottom:354.053333pt;}
.y131_c00149{bottom:356.346667pt;}
.y130_c00149{bottom:357.893333pt;}
.y126_c00149{bottom:371.706667pt;}
.y129_c00149{bottom:372.480000pt;}
.y127_c00149{bottom:373.253333pt;}
.y128_c00149{bottom:374.013333pt;}
.y12d_c00149{bottom:374.786667pt;}
.y12c_c00149{bottom:375.546667pt;}
.y12b_c00149{bottom:376.320000pt;}
.y12a_c00149{bottom:379.386667pt;}
.y122_c00149{bottom:391.680000pt;}
.y11e_c00149{bottom:393.986667pt;}
.y11f_c00149{bottom:394.746667pt;}
.y120_c00149{bottom:395.520000pt;}
.y123_c00149{bottom:396.293333pt;}
.y125_c00149{bottom:397.053333pt;}
.y11d_c00149{bottom:397.826667pt;}
.y121_c00149{bottom:398.586667pt;}
.y124_c00149{bottom:399.360000pt;}
.y11c_c00149{bottom:400.893333pt;}
.y11a_c00149{bottom:414.720000pt;}
.y119_c00149{bottom:415.493333pt;}
.y117_c00149{bottom:416.253333pt;}
.y116_c00149{bottom:417.786667pt;}
.y11b_c00149{bottom:422.400000pt;}
.y118_c00149{bottom:423.173333pt;}
.y114_c00149{bottom:436.226667pt;}
.y115_c00149{bottom:436.986667pt;}
.y10e_c00149{bottom:437.760000pt;}
.y110_c00149{bottom:438.533333pt;}
.y111_c00149{bottom:439.293333pt;}
.y10f_c00149{bottom:442.373333pt;}
.y113_c00149{bottom:443.906667pt;}
.y112_c00149{bottom:445.440000pt;}
.y10d_c00149{bottom:448.506667pt;}
.y174_c00149{bottom:455.426667pt;}
.y10c_c00149{bottom:458.493333pt;}
.y108_c00149{bottom:459.266667pt;}
.y10a_c00149{bottom:460.026667pt;}
.y109_c00149{bottom:462.333333pt;}
.y107_c00149{bottom:466.946667pt;}
.y10b_c00149{bottom:468.480000pt;}
.y106_c00149{bottom:481.533333pt;}
.y105_c00149{bottom:482.306667pt;}
.y173_c00149{bottom:483.066667pt;}
.y102_c00149{bottom:483.840000pt;}
.y103_c00149{bottom:486.146667pt;}
.yfe_c00149{bottom:486.906667pt;}
.y101_c00149{bottom:487.680000pt;}
.y172_c00149{bottom:488.453333pt;}
.y100_c00149{bottom:489.986667pt;}
.y104_c00149{bottom:490.746667pt;}
.yff_c00149{bottom:497.666667pt;}
.y171_c00149{bottom:504.573333pt;}
.yfb_c00149{bottom:507.653333pt;}
.yfd_c00149{bottom:509.946667pt;}
.yfc_c00149{bottom:510.720000pt;}
.yf9_c00149{bottom:511.493333pt;}
.yf8_c00149{bottom:512.253333pt;}
.yfa_c00149{bottom:513.026667pt;}
.y170_c00149{bottom:525.306667pt;}
.yf7_c00149{bottom:526.853333pt;}
.yf2_c00149{bottom:530.693333pt;}
.yf4_c00149{bottom:532.226667pt;}
.yf3_c00149{bottom:533.760000pt;}
.yf6_c00149{bottom:534.533333pt;}
.yf5_c00149{bottom:535.293333pt;}
.y56_c00149{bottom:549.120000pt;}
.yef_c00149{bottom:549.893333pt;}
.yf1_c00149{bottom:550.653333pt;}
.yf0_c00149{bottom:556.800000pt;}
.yed_c00149{bottom:571.386667pt;}
.ye9_c00149{bottom:572.160000pt;}
.yec_c00149{bottom:572.933333pt;}
.yeb_c00149{bottom:573.693333pt;}
.yee_c00149{bottom:574.466667pt;}
.yea_c00149{bottom:579.066667pt;}
.ydf_c00149{bottom:594.426667pt;}
.ye3_c00149{bottom:595.200000pt;}
.ye5_c00149{bottom:595.973333pt;}
.ye6_c00149{bottom:597.506667pt;}
.ye0_c00149{bottom:599.040000pt;}
.ye7_c00149{bottom:599.813333pt;}
.ye1_c00149{bottom:600.573333pt;}
.ye2_c00149{bottom:601.346667pt;}
.ye4_c00149{bottom:602.106667pt;}
.yde_c00149{bottom:602.880000pt;}
.ye8_c00149{bottom:604.413333pt;}
.ydc_c00149{bottom:610.560000pt;}
.ydd_c00149{bottom:615.173333pt;}
.yda_c00149{bottom:615.933333pt;}
.yd5_c00149{bottom:616.706667pt;}
.yd6_c00149{bottom:618.240000pt;}
.yd9_c00149{bottom:619.013333pt;}
.ydb_c00149{bottom:622.853333pt;}
.yd7_c00149{bottom:623.613333pt;}
.yd8_c00149{bottom:624.386667pt;}
.yd4_c00149{bottom:625.146667pt;}
.yd2_c00149{bottom:637.440000pt;}
.ycb_c00149{bottom:638.973333pt;}
.ycf_c00149{bottom:639.746667pt;}
.yd1_c00149{bottom:640.506667pt;}
.ycd_c00149{bottom:641.280000pt;}
.yd0_c00149{bottom:642.053333pt;}
.yd3_c00149{bottom:642.813333pt;}
.yce_c00149{bottom:644.346667pt;}
.ycc_c00149{bottom:645.120000pt;}
.yc8_c00149{bottom:658.946667pt;}
.y29_c00149{bottom:659.706667pt;}
.yc6_c00149{bottom:661.253333pt;}
.yc4_c00149{bottom:663.546667pt;}
.yc5_c00149{bottom:664.320000pt;}
.yc3_c00149{bottom:666.626667pt;}
.yc2_c00149{bottom:667.386667pt;}
.yc7_c00149{bottom:668.160000pt;}
.yc9_c00149{bottom:670.466667pt;}
.y28_c00149{bottom:672.000000pt;}
.yca_c00149{bottom:676.613333pt;}
.y27_c00149{bottom:682.746667pt;}
.yc1_c00149{bottom:685.826667pt;}
.yc0_c00149{bottom:687.360000pt;}
.ybe_c00149{bottom:688.133333pt;}
.ybf_c00149{bottom:688.893333pt;}
.yba_c00149{bottom:698.106667pt;}
.yb7_c00149{bottom:699.653333pt;}
.yb9_c00149{bottom:701.186667pt;}
.yb8_c00149{bottom:701.946667pt;}
.y26_c00149{bottom:704.253333pt;}
.ybd_c00149{bottom:705.786667pt;}
.ybb_c00149{bottom:710.400000pt;}
.ybc_c00149{bottom:718.080000pt;}
.yb4_c00149{bottom:724.226667pt;}
.yb1_c00149{bottom:724.986667pt;}
.yb2_c00149{bottom:725.760000pt;}
.y25_c00149{bottom:726.533333pt;}
.yb5_c00149{bottom:728.066667pt;}
.y5e_c00149{bottom:728.826667pt;}
.yb3_c00149{bottom:731.133333pt;}
.yb0_c00149{bottom:731.906667pt;}
.yaf_c00149{bottom:733.440000pt;}
.y24_c00149{bottom:734.213333pt;}
.yb6_c00149{bottom:741.120000pt;}
.yae_c00149{bottom:745.733333pt;}
.yab_c00149{bottom:746.493333pt;}
.ya7_c00149{bottom:747.266667pt;}
.yad_c00149{bottom:748.026667pt;}
.ya8_c00149{bottom:750.333333pt;}
.ya9_c00149{bottom:751.866667pt;}
.yac_c00149{bottom:752.640000pt;}
.yaa_c00149{bottom:754.173333pt;}
.y23_c00149{bottom:766.466667pt;}
.ya6_c00149{bottom:768.000000pt;}
.ya5_c00149{bottom:768.773333pt;}
.ya3_c00149{bottom:769.533333pt;}
.y22_c00149{bottom:770.306667pt;}
.ya4_c00149{bottom:771.066667pt;}
.ya2_c00149{bottom:772.613333pt;}
.ya1_c00149{bottom:776.453333pt;}
.y9d_c00149{bottom:790.266667pt;}
.y9c_c00149{bottom:791.040000pt;}
.y9e_c00149{bottom:793.346667pt;}
.y9f_c00149{bottom:797.186667pt;}
.y9b_c00149{bottom:798.720000pt;}
.y21_c00149{bottom:802.560000pt;}
.ya0_c00149{bottom:811.013333pt;}
.y98_c00149{bottom:813.306667pt;}
.y9a_c00149{bottom:815.613333pt;}
.y20_c00149{bottom:816.386667pt;}
.y97_c00149{bottom:817.920000pt;}
.y99_c00149{bottom:818.693333pt;}
.y94_c00149{bottom:820.226667pt;}
.y96_c00149{bottom:820.986667pt;}
.y95_c00149{bottom:821.760000pt;}
.y1e_c00149{bottom:824.826667pt;}
.y93_c00149{bottom:834.813333pt;}
.y1f_c00149{bottom:835.586667pt;}
.y8f_c00149{bottom:836.346667pt;}
.y8e_c00149{bottom:837.120000pt;}
.y91_c00149{bottom:837.893333pt;}
.y1b_c00149{bottom:838.653333pt;}
.y1c_c00149{bottom:840.960000pt;}
.y8c_c00149{bottom:842.493333pt;}
.y1d_c00149{bottom:843.266667pt;}
.y8d_c00149{bottom:844.026667pt;}
.y1a_c00149{bottom:844.800000pt;}
.y90_c00149{bottom:853.253333pt;}
.y92_c00149{bottom:855.546667pt;}
.y89_c00149{bottom:856.320000pt;}
.y8b_c00149{bottom:857.093333pt;}
.y82_c00149{bottom:857.853333pt;}
.y86_c00149{bottom:858.626667pt;}
.y88_c00149{bottom:859.386667pt;}
.y85_c00149{bottom:860.933333pt;}
.y87_c00149{bottom:861.693333pt;}
.y81_c00149{bottom:864.000000pt;}
.y83_c00149{bottom:864.773333pt;}
.y84_c00149{bottom:865.533333pt;}
.y8a_c00149{bottom:866.306667pt;}
.y19_c00149{bottom:869.373333pt;}
.y7e_c00149{bottom:880.893333pt;}
.y7d_c00149{bottom:881.666667pt;}
.y80_c00149{bottom:882.426667pt;}
.y18_c00149{bottom:883.200000pt;}
.y7b_c00149{bottom:885.506667pt;}
.y7c_c00149{bottom:886.266667pt;}
.y7f_c00149{bottom:887.040000pt;}
.y17_c00149{bottom:891.653333pt;}
.y77_c00149{bottom:903.173333pt;}
.y76_c00149{bottom:903.933333pt;}
.y78_c00149{bottom:904.706667pt;}
.y16_c00149{bottom:905.466667pt;}
.y79_c00149{bottom:906.240000pt;}
.y7a_c00149{bottom:909.306667pt;}
.y75_c00149{bottom:910.080000pt;}
.y71_c00149{bottom:926.213333pt;}
.y15_c00149{bottom:927.746667pt;}
.y72_c00149{bottom:929.280000pt;}
.y73_c00149{bottom:930.053333pt;}
.y74_c00149{bottom:930.813333pt;}
.y70_c00149{bottom:932.346667pt;}
.y14_c00149{bottom:936.960000pt;}
.y6d_c00149{bottom:947.706667pt;}
.y6c_c00149{bottom:948.480000pt;}
.y6b_c00149{bottom:950.013333pt;}
.y68_c00149{bottom:953.853333pt;}
.y69_c00149{bottom:954.626667pt;}
.y6a_c00149{bottom:955.386667pt;}
.y6f_c00149{bottom:963.840000pt;}
.y6e_c00149{bottom:965.373333pt;}
.y67_c00149{bottom:968.453333pt;}
.y66_c00149{bottom:969.213333pt;}
.y64_c00149{bottom:970.746667pt;}
.y12_c00149{bottom:971.520000pt;}
.y13_c00149{bottom:975.360000pt;}
.y65_c00149{bottom:977.666667pt;}
.y63_c00149{bottom:993.786667pt;}
.y62_c00149{bottom:994.560000pt;}
.y61_c00149{bottom:996.866667pt;}
.y60_c00149{bottom:1002.240000pt;}
.y5f_c00149{bottom:1003.013333pt;}
.y11_c00149{bottom:1005.306667pt;}
.yf_c00149{bottom:1016.066667pt;}
.y10_c00149{bottom:1016.826667pt;}
.y5a_c00149{bottom:1024.506667pt;}
.y5c_c00149{bottom:1026.053333pt;}
.y59_c00149{bottom:1026.813333pt;}
.y5b_c00149{bottom:1027.586667pt;}
.y5d_c00149{bottom:1031.426667pt;}
.y58_c00149{bottom:1037.573333pt;}
.ye_c00149{bottom:1038.333333pt;}
.y57_c00149{bottom:1044.480000pt;}
.yd_c00149{bottom:1047.546667pt;}
.y55_c00149{bottom:1052.933333pt;}
.y51_c00149{bottom:1054.466667pt;}
.y52_c00149{bottom:1055.226667pt;}
.y53_c00149{bottom:1056.773333pt;}
.yc_c00149{bottom:1058.306667pt;}
.y50_c00149{bottom:1063.680000pt;}
.ya_c00149{bottom:1069.053333pt;}
.y4f_c00149{bottom:1075.200000pt;}
.y54_c00149{bottom:1076.733333pt;}
.yb_c00149{bottom:1087.493333pt;}
.y4c_c00149{bottom:1103.613333pt;}
.y9_c00149{bottom:1105.920000pt;}
.y4b_c00149{bottom:1110.533333pt;}
.y4e_c00149{bottom:1112.066667pt;}
.y4d_c00149{bottom:1117.440000pt;}
.y4a_c00149{bottom:1118.213333pt;}
.y49_c00149{bottom:1120.506667pt;}
.y8_c00149{bottom:1127.426667pt;}
.y7_c00149{bottom:1149.693333pt;}
.y45_c00149{bottom:1150.466667pt;}
.y47_c00149{bottom:1151.226667pt;}
.y46_c00149{bottom:1160.453333pt;}
.y48_c00149{bottom:1169.666667pt;}
.y6_c00149{bottom:1171.973333pt;}
.y44_c00149{bottom:1172.733333pt;}
.y42_c00149{bottom:1173.506667pt;}
.y3f_c00149{bottom:1175.040000pt;}
.y41_c00149{bottom:1178.880000pt;}
.y40_c00149{bottom:1181.186667pt;}
.y43_c00149{bottom:1183.493333pt;}
.y4_c00149{bottom:1194.240000pt;}
.y3b_c00149{bottom:1195.013333pt;}
.y3e_c00149{bottom:1195.773333pt;}
.y5_c00149{bottom:1196.546667pt;}
.y3a_c00149{bottom:1198.080000pt;}
.y3d_c00149{bottom:1201.146667pt;}
.y38_c00149{bottom:1201.920000pt;}
.y39_c00149{bottom:1202.693333pt;}
.y3c_c00149{bottom:1205.760000pt;}
.y37_c00149{bottom:1207.293333pt;}
.y2_c00149{bottom:1215.746667pt;}
.y3_c00149{bottom:1218.813333pt;}
.y36_c00149{bottom:1224.186667pt;}
.y34_c00149{bottom:1224.960000pt;}
.y2f_c00149{bottom:1226.493333pt;}
.y1_c00149{bottom:1228.026667pt;}
.y2e_c00149{bottom:1228.800000pt;}
.y2d_c00149{bottom:1231.106667pt;}
.y33_c00149{bottom:1231.866667pt;}
.y30_c00149{bottom:1232.640000pt;}
.y31_c00149{bottom:1233.413333pt;}
.y32_c00149{bottom:1234.173333pt;}
.y35_c00149{bottom:1238.013333pt;}
.y2b_c00149{bottom:1245.693333pt;}
.y2c_c00149{bottom:1249.533333pt;}
.y2a_c00149{bottom:1257.986667pt;}
.h10_c00149{height:2.764500pt;}
.h11_c00149{height:4.799479pt;}
.h5_c00149{height:5.519401pt;}
.h2e_c00149{height:7.892813pt;}
.h2_c00149{height:8.303099pt;}
.h22_c00149{height:11.038802pt;}
.h4_c00149{height:13.822500pt;}
.h21_c00149{height:16.606198pt;}
.h23_c00149{height:19.341901pt;}
.h16_c00149{height:22.125599pt;}
.h24_c00149{height:24.861302pt;}
.h8_c00149{height:27.645000pt;}
.h3_c00149{height:30.428698pt;}
.h7_c00149{height:33.164401pt;}
.ha_c00149{height:35.948099pt;}
.h26_c00149{height:38.683802pt;}
.h25_c00149{height:41.467500pt;}
.hb_c00149{height:44.251198pt;}
.he_c00149{height:46.986901pt;}
.h6_c00149{height:49.770599pt;}
.hc_c00149{height:52.506302pt;}
.h15_c00149{height:55.290000pt;}
.h19_c00149{height:58.073698pt;}
.h1d_c00149{height:60.809401pt;}
.h1a_c00149{height:63.593099pt;}
.h17_c00149{height:66.328802pt;}
.h13_c00149{height:69.112500pt;}
.h1f_c00149{height:71.896198pt;}
.h18_c00149{height:74.631901pt;}
.h1e_c00149{height:77.415599pt;}
.h9_c00149{height:80.151302pt;}
.h20_c00149{height:82.935000pt;}
.hd_c00149{height:85.718698pt;}
.hf_c00149{height:88.454401pt;}
.h1b_c00149{height:91.238099pt;}
.h1c_c00149{height:93.973802pt;}
.h2b_c00149{height:96.757500pt;}
.h28_c00149{height:99.541198pt;}
.h29_c00149{height:102.276901pt;}
.h27_c00149{height:105.060599pt;}
.h12_c00149{height:113.363698pt;}
.h14_c00149{height:116.099401pt;}
.h2a_c00149{height:124.402500pt;}
.h2c_c00149{height:129.921901pt;}
.h2d_c00149{height:132.705599pt;}
.h1_c00149{height:1336.000000pt;}
.h0_c00149{height:1336.320000pt;}
.w0_c00149{width:967.680000pt;}
.w1_c00149{width:968.000000pt;}
.x0_c00149{left:0.000000pt;}
.x4_c00149{left:2.306667pt;}
.x3_c00149{left:8.453333pt;}
.x6_c00149{left:11.520000pt;}
.x2_c00149{left:23.040000pt;}
.x5_c00149{left:25.346667pt;}
.x1_c00149{left:51.453333pt;}
.x42_c00149{left:122.880000pt;}
.xb3_c00149{left:145.920000pt;}
.xb4_c00149{left:168.186667pt;}
.xc5_c00149{left:182.013333pt;}
.x31_c00149{left:188.933333pt;}
.xae_c00149{left:190.466667pt;}
.xea_c00149{left:192.773333pt;}
.x72_c00149{left:194.306667pt;}
.xaf_c00149{left:195.840000pt;}
.xbb_c00149{left:198.146667pt;}
.x23_c00149{left:200.453333pt;}
.x47_c00149{left:201.986667pt;}
.x5c_c00149{left:203.520000pt;}
.xdd_c00149{left:205.053333pt;}
.x1b_c00149{left:208.133333pt;}
.xcd_c00149{left:218.880000pt;}
.x8e_c00149{left:221.946667pt;}
.x1c_c00149{left:224.253333pt;}
.x80_c00149{left:228.866667pt;}
.xc6_c00149{left:231.173333pt;}
.xb5_c00149{left:232.706667pt;}
.xd0_c00149{left:235.773333pt;}
.x79_c00149{left:238.080000pt;}
.x9b_c00149{left:239.613333pt;}
.x81_c00149{left:243.453333pt;}
.x61_c00149{left:244.986667pt;}
.xbc_c00149{left:247.293333pt;}
.x8_c00149{left:249.600000pt;}
.x98_c00149{left:251.906667pt;}
.xd1_c00149{left:255.746667pt;}
.xca_c00149{left:258.053333pt;}
.xdb_c00149{left:259.586667pt;}
.x8a_c00149{left:261.893333pt;}
.xa3_c00149{left:263.426667pt;}
.xcb_c00149{left:269.573333pt;}
.x99_c00149{left:271.106667pt;}
.x8b_c00149{left:274.173333pt;}
.x9c_c00149{left:278.013333pt;}
.x94_c00149{left:279.546667pt;}
.x1d_c00149{left:284.933333pt;}
.xb6_c00149{left:287.226667pt;}
.x8f_c00149{left:289.533333pt;}
.x27_c00149{left:291.840000pt;}
.xce_c00149{left:293.373333pt;}
.xd5_c00149{left:295.680000pt;}
.xa4_c00149{left:298.746667pt;}
.x32_c00149{left:301.826667pt;}
.xb_c00149{left:303.360000pt;}
.x62_c00149{left:306.426667pt;}
.x82_c00149{left:308.733333pt;}
.x48_c00149{left:311.813333pt;}
.x24_c00149{left:314.106667pt;}
.xc_c00149{left:315.653333pt;}
.xb0_c00149{left:319.493333pt;}
.x73_c00149{left:323.333333pt;}
.x1e_c00149{left:325.626667pt;}
.x6b_c00149{left:330.240000pt;}
.x58_c00149{left:336.386667pt;}
.xc0_c00149{left:339.453333pt;}
.x63_c00149{left:342.533333pt;}
.xeb_c00149{left:344.826667pt;}
.xdc_c00149{left:346.373333pt;}
.x49_c00149{left:350.213333pt;}
.xd_c00149{left:351.746667pt;}
.x44_c00149{left:353.280000pt;}
.xc1_c00149{left:354.813333pt;}
.xb7_c00149{left:357.893333pt;}
.x28_c00149{left:359.426667pt;}
.xa5_c00149{left:360.960000pt;}
.x1f_c00149{left:364.026667pt;}
.x25_c00149{left:365.573333pt;}
.x83_c00149{left:367.106667pt;}
.xc3_c00149{left:369.413333pt;}
.xde_c00149{left:370.946667pt;}
.xbd_c00149{left:373.253333pt;}
.x7_c00149{left:374.786667pt;}
.x74_c00149{left:376.320000pt;}
.xdf_c00149{left:380.160000pt;}
.xf1_c00149{left:381.693333pt;}
.x38_c00149{left:384.773333pt;}
.x7a_c00149{left:387.066667pt;}
.xe_c00149{left:390.906667pt;}
.x4c_c00149{left:393.213333pt;}
.x33_c00149{left:398.586667pt;}
.x64_c00149{left:403.200000pt;}
.x84_c00149{left:405.506667pt;}
.xf_c00149{left:410.880000pt;}
.xc7_c00149{left:413.186667pt;}
.x43_c00149{left:415.493333pt;}
.x6c_c00149{left:417.026667pt;}
.x39_c00149{left:419.333333pt;}
.x9d_c00149{left:421.626667pt;}
.xa6_c00149{left:423.933333pt;}
.x65_c00149{left:427.773333pt;}
.x10_c00149{left:431.613333pt;}
.x54_c00149{left:433.920000pt;}
.x5d_c00149{left:436.986667pt;}
.xe4_c00149{left:440.066667pt;}
.xc8_c00149{left:444.666667pt;}
.x29_c00149{left:446.213333pt;}
.x11_c00149{left:449.280000pt;}
.x3a_c00149{left:451.586667pt;}
.x85_c00149{left:453.893333pt;}
.xb1_c00149{left:456.186667pt;}
.xa7_c00149{left:460.026667pt;}
.x90_c00149{left:461.573333pt;}
.xbe_c00149{left:463.866667pt;}
.x75_c00149{left:466.173333pt;}
.x3b_c00149{left:467.706667pt;}
.xcf_c00149{left:469.253333pt;}
.x7b_c00149{left:471.546667pt;}
.x66_c00149{left:473.093333pt;}
.x95_c00149{left:475.386667pt;}
.xc9_c00149{left:480.000000pt;}
.x3c_c00149{left:483.840000pt;}
.xb8_c00149{left:486.906667pt;}
.x12_c00149{left:491.520000pt;}
.x6d_c00149{left:493.053333pt;}
.xed_c00149{left:494.586667pt;}
.xe0_c00149{left:496.133333pt;}
.x3d_c00149{left:498.426667pt;}
.x5e_c00149{left:500.733333pt;}
.x9e_c00149{left:502.266667pt;}
.xec_c00149{left:503.813333pt;}
.xa8_c00149{left:506.106667pt;}
.x9_c00149{left:510.720000pt;}
.x13_c00149{left:512.253333pt;}
.x86_c00149{left:516.093333pt;}
.xa9_c00149{left:517.626667pt;}
.xa_c00149{left:519.933333pt;}
.x4d_c00149{left:521.466667pt;}
.x3e_c00149{left:523.013333pt;}
.xd2_c00149{left:525.306667pt;}
.x34_c00149{left:527.613333pt;}
.x45_c00149{left:532.986667pt;}
.xb9_c00149{left:536.066667pt;}
.x14_c00149{left:537.600000pt;}
.x3f_c00149{left:539.133333pt;}
.x55_c00149{left:541.440000pt;}
.x46_c00149{left:543.746667pt;}
.x7c_c00149{left:545.280000pt;}
.x96_c00149{left:548.346667pt;}
.x2c_c00149{left:550.653333pt;}
.x4a_c00149{left:552.960000pt;}
.xaa_c00149{left:556.026667pt;}
.x15_c00149{left:558.333333pt;}
.xef_c00149{left:560.640000pt;}
.x2d_c00149{left:562.173333pt;}
.x76_c00149{left:565.253333pt;}
.x40_c00149{left:567.546667pt;}
.xd7_c00149{left:569.853333pt;}
.x9a_c00149{left:573.693333pt;}
.x67_c00149{left:576.000000pt;}
.xc4_c00149{left:578.306667pt;}
.x16_c00149{left:579.840000pt;}
.x26_c00149{left:581.373333pt;}
.xd8_c00149{left:584.453333pt;}
.x4e_c00149{left:588.293333pt;}
.xd6_c00149{left:589.826667pt;}
.x68_c00149{left:599.040000pt;}
.x9f_c00149{left:602.106667pt;}
.x17_c00149{left:605.946667pt;}
.x91_c00149{left:607.493333pt;}
.x4f_c00149{left:610.560000pt;}
.xe1_c00149{left:614.400000pt;}
.xc2_c00149{left:617.466667pt;}
.x87_c00149{left:619.013333pt;}
.xa0_c00149{left:622.080000pt;}
.x18_c00149{left:624.386667pt;}
.x2e_c00149{left:625.920000pt;}
.x6e_c00149{left:628.226667pt;}
.x20_c00149{left:630.533333pt;}
.x56_c00149{left:633.600000pt;}
.x37_c00149{left:636.666667pt;}
.x69_c00149{left:645.120000pt;}
.x5f_c00149{left:647.426667pt;}
.x19_c00149{left:649.733333pt;}
.xe2_c00149{left:652.026667pt;}
.x35_c00149{left:657.413333pt;}
.x50_c00149{left:659.706667pt;}
.xd9_c00149{left:661.253333pt;}
.x2a_c00149{left:662.786667pt;}
.xf0_c00149{left:665.851392pt;}
.x6f_c00149{left:667.386667pt;}
.x6a_c00149{left:668.933333pt;}
.x8c_c00149{left:672.773333pt;}
.x77_c00149{left:674.306667pt;}
.x21_c00149{left:676.613333pt;}
.xab_c00149{left:680.453333pt;}
.xbf_c00149{left:683.520000pt;}
.xa1_c00149{left:685.053333pt;}
.xcc_c00149{left:687.360000pt;}
.x2b_c00149{left:688.893333pt;}
.x88_c00149{left:691.973333pt;}
.x7d_c00149{left:694.266667pt;}
.x22_c00149{left:698.106667pt;}
.x51_c00149{left:700.413333pt;}
.xd3_c00149{left:701.946667pt;}
.xba_c00149{left:704.253333pt;}
.xac_c00149{left:713.466667pt;}
.xe3_c00149{left:715.013333pt;}
.x2f_c00149{left:717.306667pt;}
.xee_c00149{left:720.386667pt;}
.x92_c00149{left:721.920000pt;}
.x70_c00149{left:723.453333pt;}
.x30_c00149{left:725.760000pt;}
.x36_c00149{left:728.826667pt;}
.x59_c00149{left:731.133333pt;}
.xe5_c00149{left:734.973333pt;}
.x1a_c00149{left:736.506667pt;}
.xad_c00149{left:739.586667pt;}
.x5a_c00149{left:742.653333pt;}
.x7e_c00149{left:745.733333pt;}
.x71_c00149{left:747.266667pt;}
.xda_c00149{left:748.800000pt;}
.x89_c00149{left:751.106667pt;}
.xd4_c00149{left:758.013333pt;}
.x52_c00149{left:766.466667pt;}
.xa2_c00149{left:768.000000pt;}
.x5b_c00149{left:769.533333pt;}
.x78_c00149{left:772.613333pt;}
.x60_c00149{left:774.906667pt;}
.x4b_c00149{left:777.986667pt;}
.x57_c00149{left:779.520000pt;}
.x53_c00149{left:781.053333pt;}
.xb2_c00149{left:782.586667pt;}
.x7f_c00149{left:784.133333pt;}
.x97_c00149{left:787.973333pt;}
.xe6_c00149{left:789.506667pt;}
.xe9_c00149{left:795.653333pt;}
.x93_c00149{left:797.186667pt;}
.x8d_c00149{left:798.720000pt;}
.xe7_c00149{left:800.253333pt;}
.xe8_c00149{left:811.013333pt;}
.x41_c00149{left:839.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aeeb39f6976c89bdf677ea9e.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.109863;font-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_c00150{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m175_c00150{transform:matrix(0.020825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020825,0.000000,0.000000,0.250000,0,0);}
.m13d_c00150{transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);}
.m139_c00150{transform:matrix(0.045175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045175,0.000000,0.000000,0.250000,0,0);}
.mf6_c00150{transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);}
.m14d_c00150{transform:matrix(0.063625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063625,0.000000,0.000000,0.250000,0,0);}
.m90_c00150{transform:matrix(0.067525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067525,0.000000,0.000000,0.250000,0,0);}
.mb4_c00150{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.m173_c00150{transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);}
.m166_c00150{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.mca_c00150{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m165_c00150{transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);}
.m14f_c00150{transform:matrix(0.086900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086900,0.000000,0.000000,0.250000,0,0);}
.m179_c00150{transform:matrix(0.088150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088150,0.000000,0.000000,0.250000,0,0);}
.m127_c00150{transform:matrix(0.092825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092825,0.000000,0.000000,0.250000,0,0);}
.m102_c00150{transform:matrix(0.093725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093725,0.000000,0.000000,0.250000,0,0);}
.mc9_c00150{transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);}
.mfd_c00150{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);}
.m17a_c00150{transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);}
.ma8_c00150{transform:matrix(0.102150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102150,0.000000,0.000000,0.250000,0,0);}
.m176_c00150{transform:matrix(0.103525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103525,0.000000,0.000000,0.250000,0,0);}
.m17d_c00150{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.m103_c00150{transform:matrix(0.105850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105850,0.000000,0.000000,0.250000,0,0);}
.m135_c00150{transform:matrix(0.106025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106025,0.000000,0.000000,0.250000,0,0);}
.m14b_c00150{transform:matrix(0.107400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107400,0.000000,0.000000,0.250000,0,0);}
.m10a_c00150{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m171_c00150{transform:matrix(0.113900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113900,0.000000,0.000000,0.250000,0,0);}
.m142_c00150{transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);}
.m152_c00150{transform:matrix(0.115875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115875,0.000000,0.000000,0.250000,0,0);}
.m14e_c00150{transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);}
.mfe_c00150{transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);}
.m146_c00150{transform:matrix(0.120400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120400,0.000000,0.000000,0.250000,0,0);}
.mb_c00150{transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);}
.m108_c00150{transform:matrix(0.123650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123650,0.000000,0.000000,0.250000,0,0);}
.m11b_c00150{transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);}
.m8c_c00150{transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);}
.mf4_c00150{transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);}
.mfc_c00150{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m104_c00150{transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);}
.m154_c00150{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);}
.m128_c00150{transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);}
.mf8_c00150{transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);}
.mb8_c00150{transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);}
.mc8_c00150{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m122_c00150{transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);}
.mec_c00150{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m157_c00150{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.m7b_c00150{transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);}
.mf5_c00150{transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);}
.m172_c00150{transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);}
.m12a_c00150{transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);}
.m153_c00150{transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);}
.mcc_c00150{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m101_c00150{transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);}
.mfb_c00150{transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);}
.mc2_c00150{transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);}
.m144_c00150{transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);}
.mb0_c00150{transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);}
.m85_c00150{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00150{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);}
.ma1_c00150{transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);}
.me1_c00150{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);}
.m75_c00150{transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);}
.m120_c00150{transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);}
.m12f_c00150{transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);}
.ma_c00150{transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);}
.m150_c00150{transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);}
.m112_c00150{transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);}
.m71_c00150{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.mf9_c00150{transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);}
.m105_c00150{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m174_c00150{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m76_c00150{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m72_c00150{transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);}
.md4_c00150{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);}
.m158_c00150{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);}
.m25_c00150{transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);}
.m10d_c00150{transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);}
.mc4_c00150{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m123_c00150{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);}
.m16f_c00150{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);}
.m164_c00150{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m9c_c00150{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m12c_c00150{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m16e_c00150{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m13f_c00150{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);}
.m0_c00150{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.mbe_c00150{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.m8b_c00150{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.m169_c00150{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.mf_c00150{transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);}
.m6c_c00150{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.mc5_c00150{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m100_c00150{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.mb6_c00150{transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);}
.mdb_c00150{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);}
.m14a_c00150{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m16b_c00150{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.m114_c00150{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.ma3_c00150{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.m42_c00150{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.m143_c00150{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m74_c00150{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m116_c00150{transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);}
.md5_c00150{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);}
.m126_c00150{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00150{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m118_c00150{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.m33_c00150{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.m9b_c00150{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m61_c00150{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m145_c00150{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);}
.m168_c00150{transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);}
.md9_c00150{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);}
.me3_c00150{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.mc7_c00150{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.mbd_c00150{transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);}
.m88_c00150{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);}
.mef_c00150{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.m159_c00150{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.m26_c00150{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);}
.m93_c00150{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);}
.m106_c00150{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.mb5_c00150{transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);}
.md7_c00150{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m95_c00150{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);}
.mcf_c00150{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.me4_c00150{transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);}
.m11e_c00150{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);}
.m15a_c00150{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m125_c00150{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.mfa_c00150{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m87_c00150{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);}
.mea_c00150{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m5b_c00150{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);}
.m35_c00150{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m2b_c00150{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf3_c00150{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.mbb_c00150{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.m16_c00150{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.mac_c00150{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);}
.m134_c00150{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);}
.m3d_c00150{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m170_c00150{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);}
.m81_c00150{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.m84_c00150{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m10f_c00150{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.m9d_c00150{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m156_c00150{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);}
.m77_c00150{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);}
.m11d_c00150{transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);}
.meb_c00150{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);}
.m32_c00150{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);}
.m15f_c00150{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);}
.m99_c00150{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);}
.m2c_c00150{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m129_c00150{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);}
.med_c00150{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);}
.m16a_c00150{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m49_c00150{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);}
.m57_c00150{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m94_c00150{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);}
.m12d_c00150{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.me0_c00150{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.m107_c00150{transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);}
.m177_c00150{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m113_c00150{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);}
.m31_c00150{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m18_c00150{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.m44_c00150{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m163_c00150{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m2e_c00150{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m162_c00150{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);}
.m4e_c00150{transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);}
.maa_c00150{transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);}
.me6_c00150{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);}
.m147_c00150{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);}
.m63_c00150{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.m59_c00150{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);}
.mbf_c00150{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.m89_c00150{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m133_c00150{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m55_c00150{transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);}
.mce_c00150{transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);}
.m167_c00150{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);}
.m64_c00150{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m7f_c00150{transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);}
.m73_c00150{transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);}
.m119_c00150{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.ma5_c00150{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);}
.ma0_c00150{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m7a_c00150{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m82_c00150{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m16d_c00150{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.mc6_c00150{transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);}
.ma6_c00150{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);}
.mab_c00150{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);}
.mb3_c00150{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);}
.m11c_c00150{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.m149_c00150{transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);}
.m7c_c00150{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);}
.me8_c00150{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);}
.m79_c00150{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m7d_c00150{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.mc0_c00150{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);}
.m138_c00150{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);}
.mb1_c00150{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);}
.m3c_c00150{transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);}
.ma4_c00150{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.md6_c00150{transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);}
.m98_c00150{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m52_c00150{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.m8f_c00150{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.m4f_c00150{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.mb7_c00150{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);}
.mdd_c00150{transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);}
.md2_c00150{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.mb2_c00150{transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);}
.me_c00150{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m3b_c00150{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);}
.m5c_c00150{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.m111_c00150{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m5a_c00150{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.me2_c00150{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);}
.m16c_c00150{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);}
.m12_c00150{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);}
.m78_c00150{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m51_c00150{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);}
.m117_c00150{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);}
.m70_c00150{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);}
.m10b_c00150{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);}
.ma2_c00150{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);}
.m151_c00150{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m65_c00150{transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);}
.m50_c00150{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m8e_c00150{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);}
.m38_c00150{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);}
.m15c_c00150{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);}
.m22_c00150{transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);}
.m6f_c00150{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.m15e_c00150{transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);}
.m86_c00150{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);}
.m97_c00150{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);}
.m12b_c00150{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);}
.m40_c00150{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);}
.m17e_c00150{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);}
.m96_c00150{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);}
.mda_c00150{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m1b_c00150{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m27_c00150{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);}
.m92_c00150{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m56_c00150{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.m121_c00150{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);}
.m9f_c00150{transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);}
.m124_c00150{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);}
.m10_c00150{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m8d_c00150{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);}
.md1_c00150{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);}
.m10e_c00150{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);}
.mff_c00150{transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);}
.m4c_c00150{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);}
.m66_c00150{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.mf7_c00150{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.md0_c00150{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m67_c00150{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mc_c00150{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);}
.md3_c00150{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);}
.m68_c00150{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);}
.m160_c00150{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.m4d_c00150{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.mae_c00150{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.mb9_c00150{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);}
.m148_c00150{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m1e_c00150{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.mcd_c00150{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);}
.m155_c00150{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);}
.mba_c00150{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);}
.m62_c00150{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.mf1_c00150{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8_c00150{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00150{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);}
.m5_c00150{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);}
.m24_c00150{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);}
.m21_c00150{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);}
.m91_c00150{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m13_c00150{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00150{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m39_c00150{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);}
.m8a_c00150{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00150{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);}
.m30_c00150{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);}
.md_c00150{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00150{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00150{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m37_c00150{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);}
.m41_c00150{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c00150{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);}
.m1d_c00150{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);}
.m1f_c00150{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m54_c00150{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00150{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);}
.m28_c00150{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00150{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00150{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);}
.m20_c00150{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m46_c00150{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c00150{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00150{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m47_c00150{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me7_c00150{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00150{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00150{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);}
.m2f_c00150{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m36_c00150{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m132_c00150{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00150{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);}
.m6d_c00150{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00150{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00150{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);}
.m83_c00150{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m34_c00150{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md8_c00150{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m48_c00150{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);}
.mc1_c00150{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00150{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);}
.ma7_c00150{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m60_c00150{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);}
.m1c_c00150{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m110_c00150{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c00150{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4_c00150{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m45_c00150{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);}
.m43_c00150{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mad_c00150{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);}
.m14_c00150{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me5_c00150{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00150{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.maf_c00150{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00150{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m7_c00150{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00150{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m130_c00150{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);}
.m6e_c00150{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m80_c00150{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);}
.m58_c00150{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);}
.m53_c00150{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m69_c00150{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m17c_c00150{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00150{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m161_c00150{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.mde_c00150{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00150{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00150{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00150{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m29_c00150{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00150{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00150{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m13b_c00150{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);}
.m14c_c00150{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m17b_c00150{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m131_c00150{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m19_c00150{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m109_c00150{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m9_c00150{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00150{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m136_c00150{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00150{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m137_c00150{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);}
.m15b_c00150{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m1_c00150{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.m115_c00150{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00150{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m13e_c00150{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m141_c00150{transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);}
.m140_c00150{transform:matrix(1.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.112500,0.000000,0.000000,0.250000,0,0);}
.mf0_c00150{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00150{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.me9_c00150{transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);}
.m15d_c00150{transform:matrix(1.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.347500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00150{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m178_c00150{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00150{transform:matrix(1.747500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.747500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.747500,0.000000,0.000000,0.250000,0,0);}
.mee_c00150{transform:matrix(4.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.590000,0.000000,0.000000,0.250000,0,0);}
.v1_c00150{vertical-align:-3.480000px;}
.v0_c00150{vertical-align:0.000000px;}
.v2_c00150{vertical-align:3.420000px;}
.ls1_c00150{letter-spacing:0.000000px;}
.ls0_c00150{letter-spacing:299.349360px;}
.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:-20.890800px;}
.ws1_c00150{word-spacing:-16.121400px;}
.ws2_c00150{word-spacing:-13.728000px;}
.ws4_c00150{word-spacing:0.000000px;}
.ws3_c00150{word-spacing:38.640300px;}
.fc0_c00150{color:transparent;}
.fs1f_c00150{font-size:3.456000px;}
.fs2_c00150{font-size:6.000000px;}
.fs1b_c00150{font-size:6.900000px;}
.fs1a_c00150{font-size:10.380000px;}
.fs20_c00150{font-size:13.800000px;}
.fs1c_c00150{font-size:17.280000px;}
.fs19_c00150{font-size:20.760000px;}
.fs10_c00150{font-size:24.180000px;}
.fs15_c00150{font-size:27.660000px;}
.fs23_c00150{font-size:31.080000px;}
.fs22_c00150{font-size:34.560000px;}
.fs0_c00150{font-size:38.040000px;}
.fs17_c00150{font-size:41.460000px;}
.fsd_c00150{font-size:44.940000px;}
.fs1d_c00150{font-size:48.360000px;}
.fs11_c00150{font-size:51.840000px;}
.fs1e_c00150{font-size:55.320000px;}
.fs18_c00150{font-size:58.740000px;}
.fs12_c00150{font-size:62.220000px;}
.fs4_c00150{font-size:65.640000px;}
.fs5_c00150{font-size:69.120000px;}
.fs1_c00150{font-size:72.600000px;}
.fsf_c00150{font-size:76.020000px;}
.fs13_c00150{font-size:79.500000px;}
.fs16_c00150{font-size:82.920000px;}
.fsc_c00150{font-size:86.400000px;}
.fsa_c00150{font-size:89.880000px;}
.fs3_c00150{font-size:93.300000px;}
.fs9_c00150{font-size:96.780000px;}
.fs6_c00150{font-size:100.200000px;}
.fse_c00150{font-size:103.680000px;}
.fs21_c00150{font-size:107.160000px;}
.fsb_c00150{font-size:110.580000px;}
.fs26_c00150{font-size:114.060000px;}
.fs7_c00150{font-size:117.480000px;}
.fs24_c00150{font-size:120.960000px;}
.fs8_c00150{font-size:127.860000px;}
.fs14_c00150{font-size:131.340000px;}
.fs25_c00150{font-size:169.320000px;}
.y0_c00150{bottom:0.000000px;}
.y190_c00150{bottom:234.150000px;}
.y18e_c00150{bottom:235.875000px;}
.y18f_c00150{bottom:237.600000px;}
.y191_c00150{bottom:245.370000px;}
.y18a_c00150{bottom:249.690000px;}
.y188_c00150{bottom:250.560000px;}
.y18c_c00150{bottom:252.285000px;}
.y189_c00150{bottom:253.155000px;}
.y18b_c00150{bottom:254.010000px;}
.y18d_c00150{bottom:254.880000px;}
.y181_c00150{bottom:255.750000px;}
.y186_c00150{bottom:256.605000px;}
.y182_c00150{bottom:257.475000px;}
.y185_c00150{bottom:261.795000px;}
.y184_c00150{bottom:263.520000px;}
.y194_c00150{bottom:264.390000px;}
.y17e_c00150{bottom:266.970000px;}
.y183_c00150{bottom:268.710000px;}
.y17f_c00150{bottom:273.885000px;}
.y17d_c00150{bottom:278.205000px;}
.y187_c00150{bottom:279.075000px;}
.y180_c00150{bottom:279.930000px;}
.y17b_c00150{bottom:282.525000px;}
.y179_c00150{bottom:285.990000px;}
.y17a_c00150{bottom:286.845000px;}
.y17c_c00150{bottom:287.715000px;}
.y178_c00150{bottom:302.400000px;}
.y175_c00150{bottom:304.125000px;}
.y177_c00150{bottom:304.995000px;}
.y174_c00150{bottom:305.850000px;}
.y172_c00150{bottom:306.720000px;}
.y16f_c00150{bottom:310.170000px;}
.y176_c00150{bottom:311.040000px;}
.y173_c00150{bottom:313.635000px;}
.y16e_c00150{bottom:314.490000px;}
.y15f_c00150{bottom:323.130000px;}
.y170_c00150{bottom:325.725000px;}
.y171_c00150{bottom:329.190000px;}
.y16a_c00150{bottom:330.045000px;}
.y169_c00150{bottom:330.915000px;}
.y168_c00150{bottom:333.510000px;}
.y16d_c00150{bottom:334.365000px;}
.y16c_c00150{bottom:335.235000px;}
.y166_c00150{bottom:336.090000px;}
.y16b_c00150{bottom:336.960000px;}
.y164_c00150{bottom:337.830000px;}
.y167_c00150{bottom:339.555000px;}
.y165_c00150{bottom:340.410000px;}
.y162_c00150{bottom:342.150000px;}
.y161_c00150{bottom:343.005000px;}
.y163_c00150{bottom:343.875000px;}
.y160_c00150{bottom:344.730000px;}
.y15d_c00150{bottom:352.515000px;}
.y15a_c00150{bottom:354.240000px;}
.y15e_c00150{bottom:355.110000px;}
.y157_c00150{bottom:355.965000px;}
.y159_c00150{bottom:356.835000px;}
.y153_c00150{bottom:358.560000px;}
.y154_c00150{bottom:359.430000px;}
.y15c_c00150{bottom:360.285000px;}
.y156_c00150{bottom:361.155000px;}
.y155_c00150{bottom:362.010000px;}
.y15b_c00150{bottom:363.750000px;}
.y158_c00150{bottom:366.330000px;}
.y152_c00150{bottom:381.030000px;}
.y148_c00150{bottom:381.885000px;}
.y149_c00150{bottom:382.755000px;}
.y151_c00150{bottom:383.610000px;}
.y14b_c00150{bottom:384.480000px;}
.y14d_c00150{bottom:385.350000px;}
.y14f_c00150{bottom:387.930000px;}
.y14a_c00150{bottom:388.800000px;}
.y150_c00150{bottom:389.670000px;}
.y14e_c00150{bottom:392.250000px;}
.y14c_c00150{bottom:393.990000px;}
.y147_c00150{bottom:407.805000px;}
.y142_c00150{bottom:408.675000px;}
.y140_c00150{bottom:409.530000px;}
.y145_c00150{bottom:412.125000px;}
.y144_c00150{bottom:412.995000px;}
.y141_c00150{bottom:413.850000px;}
.y13d_c00150{bottom:414.720000px;}
.y13f_c00150{bottom:416.445000px;}
.y13c_c00150{bottom:417.315000px;}
.y13b_c00150{bottom:419.910000px;}
.y146_c00150{bottom:420.765000px;}
.y143_c00150{bottom:422.490000px;}
.y13e_c00150{bottom:424.230000px;}
.y13a_c00150{bottom:431.130000px;}
.y139_c00150{bottom:433.725000px;}
.y136_c00150{bottom:434.595000px;}
.y132_c00150{bottom:435.450000px;}
.y137_c00150{bottom:436.320000px;}
.y138_c00150{bottom:438.045000px;}
.y135_c00150{bottom:438.915000px;}
.y131_c00150{bottom:439.770000px;}
.y134_c00150{bottom:440.640000px;}
.y133_c00150{bottom:451.005000px;}
.y12c_c00150{bottom:459.645000px;}
.y12f_c00150{bottom:460.515000px;}
.y12b_c00150{bottom:461.370000px;}
.y129_c00150{bottom:462.240000px;}
.y12d_c00150{bottom:463.110000px;}
.y12e_c00150{bottom:464.835000px;}
.y128_c00150{bottom:465.690000px;}
.y127_c00150{bottom:466.560000px;}
.y12a_c00150{bottom:467.430000px;}
.y130_c00150{bottom:473.475000px;}
.y126_c00150{bottom:482.970000px;}
.y11f_c00150{bottom:485.565000px;}
.y122_c00150{bottom:486.435000px;}
.y124_c00150{bottom:487.290000px;}
.y123_c00150{bottom:489.030000px;}
.y121_c00150{bottom:490.755000px;}
.y125_c00150{bottom:491.610000px;}
.y11d_c00150{bottom:492.480000px;}
.y120_c00150{bottom:493.350000px;}
.y11e_c00150{bottom:497.670000px;}
.y11b_c00150{bottom:508.890000px;}
.y11c_c00150{bottom:509.760000px;}
.y119_c00150{bottom:510.630000px;}
.y11a_c00150{bottom:511.485000px;}
.y118_c00150{bottom:516.675000px;}
.y116_c00150{bottom:517.530000px;}
.y113_c00150{bottom:518.400000px;}
.y112_c00150{bottom:524.445000px;}
.y115_c00150{bottom:526.170000px;}
.y111_c00150{bottom:527.040000px;}
.y110_c00150{bottom:530.490000px;}
.y117_c00150{bottom:531.360000px;}
.y10f_c00150{bottom:532.230000px;}
.y114_c00150{bottom:533.085000px;}
.y10c_c00150{bottom:533.955000px;}
.y10d_c00150{bottom:534.810000px;}
.y10b_c00150{bottom:535.680000px;}
.y109_c00150{bottom:536.550000px;}
.y108_c00150{bottom:537.405000px;}
.y10a_c00150{bottom:540.000000px;}
.y10e_c00150{bottom:540.870000px;}
.y106_c00150{bottom:559.875000px;}
.y107_c00150{bottom:560.730000px;}
.y102_c00150{bottom:561.600000px;}
.y103_c00150{bottom:565.050000px;}
.y105_c00150{bottom:565.920000px;}
.y104_c00150{bottom:569.370000px;}
.yfa_c00150{bottom:586.650000px;}
.yf7_c00150{bottom:587.520000px;}
.yf8_c00150{bottom:588.390000px;}
.y101_c00150{bottom:589.245000px;}
.yfd_c00150{bottom:590.115000px;}
.yfb_c00150{bottom:590.970000px;}
.yfc_c00150{bottom:592.710000px;}
.yf9_c00150{bottom:594.435000px;}
.y100_c00150{bottom:597.030000px;}
.yff_c00150{bottom:610.845000px;}
.yfe_c00150{bottom:611.715000px;}
.yf6_c00150{bottom:614.310000px;}
.yf0_c00150{bottom:615.165000px;}
.yef_c00150{bottom:616.035000px;}
.yf5_c00150{bottom:616.890000px;}
.yf4_c00150{bottom:617.760000px;}
.yf2_c00150{bottom:619.485000px;}
.yf1_c00150{bottom:620.355000px;}
.yee_c00150{bottom:627.270000px;}
.yed_c00150{bottom:628.125000px;}
.yf3_c00150{bottom:629.850000px;}
.y192_c00150{bottom:630.720000px;}
.y193_c00150{bottom:632.445000px;}
.yeb_c00150{bottom:635.910000px;}
.ye9_c00150{bottom:636.765000px;}
.ye8_c00150{bottom:637.635000px;}
.ye7_c00150{bottom:641.085000px;}
.yec_c00150{bottom:641.955000px;}
.yea_c00150{bottom:644.550000px;}
.ye6_c00150{bottom:659.235000px;}
.ye5_c00150{bottom:660.090000px;}
.ydf_c00150{bottom:661.830000px;}
.yde_c00150{bottom:662.685000px;}
.ydc_c00150{bottom:663.555000px;}
.ye0_c00150{bottom:664.410000px;}
.ye2_c00150{bottom:665.280000px;}
.ye4_c00150{bottom:666.150000px;}
.ye3_c00150{bottom:667.875000px;}
.ydd_c00150{bottom:669.600000px;}
.ye1_c00150{bottom:670.470000px;}
.yda_c00150{bottom:686.010000px;}
.yd8_c00150{bottom:686.880000px;}
.yd6_c00150{bottom:689.475000px;}
.yd5_c00150{bottom:690.330000px;}
.yd9_c00150{bottom:691.200000px;}
.yd7_c00150{bottom:692.070000px;}
.ydb_c00150{bottom:692.925000px;}
.yd3_c00150{bottom:709.350000px;}
.yd2_c00150{bottom:710.205000px;}
.yce_c00150{bottom:711.075000px;}
.yd4_c00150{bottom:711.930000px;}
.ycd_c00150{bottom:712.800000px;}
.ycc_c00150{bottom:713.670000px;}
.yd0_c00150{bottom:714.525000px;}
.yd1_c00150{bottom:716.250000px;}
.ycb_c00150{bottom:717.120000px;}
.ycf_c00150{bottom:717.990000px;}
.yc4_c00150{bottom:735.270000px;}
.yc1_c00150{bottom:736.125000px;}
.yc8_c00150{bottom:736.995000px;}
.yc0_c00150{bottom:739.590000px;}
.yc3_c00150{bottom:743.040000px;}
.yc2_c00150{bottom:743.910000px;}
.yc6_c00150{bottom:745.635000px;}
.yca_c00150{bottom:747.360000px;}
.yc7_c00150{bottom:752.550000px;}
.yc9_c00150{bottom:754.275000px;}
.yc5_c00150{bottom:757.725000px;}
.ybf_c00150{bottom:759.450000px;}
.yb9_c00150{bottom:762.045000px;}
.ybe_c00150{bottom:763.770000px;}
.ybc_c00150{bottom:765.510000px;}
.ybb_c00150{bottom:766.365000px;}
.ybd_c00150{bottom:768.960000px;}
.yba_c00150{bottom:769.830000px;}
.yb8_c00150{bottom:783.645000px;}
.yb2_c00150{bottom:786.240000px;}
.yb6_c00150{bottom:787.965000px;}
.yb3_c00150{bottom:789.690000px;}
.yb5_c00150{bottom:790.560000px;}
.yb1_c00150{bottom:791.430000px;}
.yb7_c00150{bottom:792.285000px;}
.yb4_c00150{bottom:793.155000px;}
.yaa_c00150{bottom:808.710000px;}
.yb0_c00150{bottom:809.565000px;}
.yab_c00150{bottom:810.435000px;}
.ya8_c00150{bottom:812.160000px;}
.yaf_c00150{bottom:813.030000px;}
.yae_c00150{bottom:813.885000px;}
.yac_c00150{bottom:816.480000px;}
.yad_c00150{bottom:817.350000px;}
.ya9_c00150{bottom:818.205000px;}
.ya2_c00150{bottom:833.760000px;}
.ya4_c00150{bottom:834.630000px;}
.ya3_c00150{bottom:837.210000px;}
.ya1_c00150{bottom:838.950000px;}
.ya6_c00150{bottom:839.805000px;}
.ya5_c00150{bottom:840.675000px;}
.ya7_c00150{bottom:844.995000px;}
.y9b_c00150{bottom:857.955000px;}
.y9c_c00150{bottom:858.810000px;}
.y99_c00150{bottom:860.550000px;}
.y98_c00150{bottom:862.275000px;}
.y9e_c00150{bottom:865.725000px;}
.y9d_c00150{bottom:866.595000px;}
.y9a_c00150{bottom:867.450000px;}
.y9f_c00150{bottom:868.320000px;}
.ya0_c00150{bottom:869.190000px;}
.y96_c00150{bottom:883.005000px;}
.y90_c00150{bottom:885.600000px;}
.y8f_c00150{bottom:886.470000px;}
.y92_c00150{bottom:887.325000px;}
.y91_c00150{bottom:889.050000px;}
.y97_c00150{bottom:889.920000px;}
.y94_c00150{bottom:890.790000px;}
.y95_c00150{bottom:891.645000px;}
.y93_c00150{bottom:892.515000px;}
.y8e_c00150{bottom:893.370000px;}
.y8d_c00150{bottom:908.070000px;}
.y8b_c00150{bottom:909.795000px;}
.y8a_c00150{bottom:910.650000px;}
.y8c_c00150{bottom:911.520000px;}
.y88_c00150{bottom:912.390000px;}
.y87_c00150{bottom:913.245000px;}
.y85_c00150{bottom:915.840000px;}
.y86_c00150{bottom:916.710000px;}
.y89_c00150{bottom:917.565000px;}
.y84_c00150{bottom:933.990000px;}
.y82_c00150{bottom:934.845000px;}
.y80_c00150{bottom:935.715000px;}
.y83_c00150{bottom:940.890000px;}
.y81_c00150{bottom:942.630000px;}
.y7f_c00150{bottom:943.485000px;}
.y7a_c00150{bottom:959.040000px;}
.y7c_c00150{bottom:959.910000px;}
.y7d_c00150{bottom:965.955000px;}
.y7e_c00150{bottom:966.810000px;}
.y7b_c00150{bottom:967.680000px;}
.y73_c00150{bottom:984.960000px;}
.y75_c00150{bottom:986.685000px;}
.y74_c00150{bottom:988.410000px;}
.y77_c00150{bottom:989.280000px;}
.y79_c00150{bottom:991.005000px;}
.y78_c00150{bottom:992.730000px;}
.y76_c00150{bottom:997.050000px;}
.y6c_c00150{bottom:1010.010000px;}
.y70_c00150{bottom:1010.880000px;}
.y72_c00150{bottom:1011.750000px;}
.y6e_c00150{bottom:1013.475000px;}
.y6d_c00150{bottom:1016.070000px;}
.y6f_c00150{bottom:1016.925000px;}
.y71_c00150{bottom:1017.795000px;}
.y6b_c00150{bottom:1022.115000px;}
.y69_c00150{bottom:1035.075000px;}
.y66_c00150{bottom:1036.800000px;}
.y68_c00150{bottom:1037.670000px;}
.y67_c00150{bottom:1039.395000px;}
.y65_c00150{bottom:1041.120000px;}
.y63_c00150{bottom:1041.990000px;}
.y6a_c00150{bottom:1042.845000px;}
.y64_c00150{bottom:1043.715000px;}
.y62_c00150{bottom:1056.675000px;}
.y5e_c00150{bottom:1063.590000px;}
.y5c_c00150{bottom:1064.445000px;}
.y5f_c00150{bottom:1066.170000px;}
.y61_c00150{bottom:1067.040000px;}
.y5d_c00150{bottom:1067.910000px;}
.y60_c00150{bottom:1068.765000px;}
.y53_c00150{bottom:1085.190000px;}
.y54_c00150{bottom:1086.045000px;}
.y52_c00150{bottom:1087.770000px;}
.y59_c00150{bottom:1088.640000px;}
.y56_c00150{bottom:1089.510000px;}
.y57_c00150{bottom:1090.365000px;}
.y5b_c00150{bottom:1091.235000px;}
.y58_c00150{bottom:1092.090000px;}
.y55_c00150{bottom:1093.830000px;}
.y5a_c00150{bottom:1095.555000px;}
.y50_c00150{bottom:1109.370000px;}
.y4c_c00150{bottom:1111.965000px;}
.y4d_c00150{bottom:1112.835000px;}
.y4b_c00150{bottom:1114.560000px;}
.y4f_c00150{bottom:1115.430000px;}
.y4e_c00150{bottom:1117.155000px;}
.y4a_c00150{bottom:1123.200000px;}
.y51_c00150{bottom:1126.650000px;}
.y49_c00150{bottom:1134.435000px;}
.y46_c00150{bottom:1135.290000px;}
.y48_c00150{bottom:1136.160000px;}
.y47_c00150{bottom:1137.885000px;}
.y45_c00150{bottom:1142.205000px;}
.y44_c00150{bottom:1143.075000px;}
.y41_c00150{bottom:1159.485000px;}
.y40_c00150{bottom:1160.355000px;}
.y3f_c00150{bottom:1162.080000px;}
.y3e_c00150{bottom:1162.950000px;}
.y3c_c00150{bottom:1164.675000px;}
.y42_c00150{bottom:1166.400000px;}
.y3b_c00150{bottom:1167.270000px;}
.y3d_c00150{bottom:1168.995000px;}
.y43_c00150{bottom:1170.720000px;}
.y3a_c00150{bottom:1185.405000px;}
.y39_c00150{bottom:1186.275000px;}
.y37_c00150{bottom:1189.725000px;}
.y38_c00150{bottom:1192.320000px;}
.y33_c00150{bottom:1208.730000px;}
.y34_c00150{bottom:1211.325000px;}
.y36_c00150{bottom:1213.920000px;}
.y35_c00150{bottom:1216.515000px;}
.y32_c00150{bottom:1218.240000px;}
.y2e_c00150{bottom:1234.650000px;}
.y31_c00150{bottom:1235.520000px;}
.y30_c00150{bottom:1237.245000px;}
.y2c_c00150{bottom:1238.115000px;}
.y2f_c00150{bottom:1239.840000px;}
.y2d_c00150{bottom:1242.435000px;}
.y2b_c00150{bottom:1255.395000px;}
.y29_c00150{bottom:1258.845000px;}
.y24_c00150{bottom:1259.715000px;}
.y22_c00150{bottom:1260.570000px;}
.y27_c00150{bottom:1262.310000px;}
.y23_c00150{bottom:1264.035000px;}
.y28_c00150{bottom:1264.890000px;}
.y25_c00150{bottom:1266.630000px;}
.y2a_c00150{bottom:1267.485000px;}
.y26_c00150{bottom:1268.355000px;}
.y1c_c00150{bottom:1284.765000px;}
.y1f_c00150{bottom:1289.955000px;}
.y20_c00150{bottom:1290.810000px;}
.y21_c00150{bottom:1291.680000px;}
.y1d_c00150{bottom:1292.550000px;}
.y1e_c00150{bottom:1293.405000px;}
.y1a_c00150{bottom:1312.410000px;}
.y1b_c00150{bottom:1314.150000px;}
.y19_c00150{bottom:1315.875000px;}
.y18_c00150{bottom:1316.730000px;}
.y17_c00150{bottom:1317.600000px;}
.y13_c00150{bottom:1334.880000px;}
.y15_c00150{bottom:1335.750000px;}
.y11_c00150{bottom:1336.605000px;}
.y16_c00150{bottom:1340.070000px;}
.y12_c00150{bottom:1341.795000px;}
.y10_c00150{bottom:1342.650000px;}
.y14_c00150{bottom:1343.520000px;}
.yd_c00150{bottom:1358.205000px;}
.y9_c00150{bottom:1359.930000px;}
.yc_c00150{bottom:1360.800000px;}
.ya_c00150{bottom:1361.670000px;}
.yf_c00150{bottom:1364.250000px;}
.yb_c00150{bottom:1367.715000px;}
.ye_c00150{bottom:1368.570000px;}
.y8_c00150{bottom:1392.765000px;}
.y4_c00150{bottom:1393.635000px;}
.y7_c00150{bottom:1398.810000px;}
.y5_c00150{bottom:1399.680000px;}
.y6_c00150{bottom:1400.550000px;}
.y2_c00150{bottom:1424.730000px;}
.y3_c00150{bottom:1427.325000px;}
.y1_c00150{bottom:1447.200000px;}
.h21_c00150{height:3.110063px;}
.h4_c00150{height:5.399414px;}
.h1d_c00150{height:6.209326px;}
.h26_c00150{height:8.819414px;}
.h1c_c00150{height:9.340986px;}
.h22_c00150{height:12.418652px;}
.h1e_c00150{height:15.550313px;}
.h1b_c00150{height:18.681973px;}
.h12_c00150{height:21.759639px;}
.h17_c00150{height:24.891299px;}
.h25_c00150{height:27.968965px;}
.h24_c00150{height:31.100625px;}
.h2_c00150{height:34.232285px;}
.h19_c00150{height:37.309951px;}
.hf_c00150{height:40.441611px;}
.h1f_c00150{height:43.519277px;}
.h13_c00150{height:46.650937px;}
.h20_c00150{height:49.782598px;}
.h1a_c00150{height:52.860264px;}
.h14_c00150{height:55.991924px;}
.h6_c00150{height:59.069590px;}
.h7_c00150{height:62.201250px;}
.h3_c00150{height:65.332910px;}
.h11_c00150{height:68.410576px;}
.h15_c00150{height:71.542236px;}
.h18_c00150{height:74.619902px;}
.he_c00150{height:77.751563px;}
.hc_c00150{height:80.883223px;}
.h5_c00150{height:83.960889px;}
.hb_c00150{height:87.092549px;}
.h8_c00150{height:90.170215px;}
.h10_c00150{height:93.301875px;}
.h23_c00150{height:96.433535px;}
.hd_c00150{height:99.511201px;}
.h29_c00150{height:102.642861px;}
.h9_c00150{height:105.720527px;}
.h27_c00150{height:108.852188px;}
.ha_c00150{height:115.061514px;}
.h16_c00150{height:118.193174px;}
.h28_c00150{height:152.371465px;}
.h0_c00150{height:1523.235000px;}
.h1_c00150{height:1523.250000px;}
.w0_c00150{width:1090.365000px;}
.w1_c00150{width:1090.500000px;}
.x0_c00150{left:0.000000px;}
.x118_c00150{left:47.520000px;}
.xfe_c00150{left:52.710000px;}
.x110_c00150{left:56.160000px;}
.xed_c00150{left:60.480000px;}
.xff_c00150{left:62.205000px;}
.xee_c00150{left:76.035000px;}
.xef_c00150{left:88.125000px;}
.x107_c00150{left:96.765000px;}
.xf0_c00150{left:106.275000px;}
.x108_c00150{left:109.725000px;}
.xf8_c00150{left:114.045000px;}
.x100_c00150{left:121.830000px;}
.xf1_c00150{left:125.280000px;}
.x109_c00150{left:131.325000px;}
.x122_c00150{left:134.790000px;}
.x10a_c00150{left:139.965000px;}
.x111_c00150{left:146.010000px;}
.x10b_c00150{left:151.200000px;}
.xf2_c00150{left:152.925000px;}
.x101_c00150{left:155.520000px;}
.x10c_c00150{left:159.840000px;}
.xf9_c00150{left:163.290000px;}
.x10d_c00150{left:173.670000px;}
.x11c_c00150{left:176.250000px;}
.x102_c00150{left:178.845000px;}
.xe3_c00150{left:184.035000px;}
.xc3_c00150{left:186.630000px;}
.x11d_c00150{left:188.355000px;}
.xf3_c00150{left:191.805000px;}
.x10e_c00150{left:196.125000px;}
.xc6_c00150{left:198.720000px;}
.xe4_c00150{left:201.315000px;}
.x103_c00150{left:203.040000px;}
.xbd_c00150{left:206.490000px;}
.xc4_c00150{left:208.230000px;}
.x6f_c00150{left:211.680000px;}
.x11e_c00150{left:214.275000px;}
.xc7_c00150{left:217.725000px;}
.xb6_c00150{left:220.320000px;}
.x58_c00150{left:222.915000px;}
.x76_c00150{left:224.640000px;}
.xfa_c00150{left:228.090000px;}
.x27_c00150{left:229.830000px;}
.x88_c00150{left:231.555000px;}
.x8f_c00150{left:233.280000px;}
.xb_c00150{left:235.005000px;}
.x3_c00150{left:237.600000px;}
.xd2_c00150{left:241.050000px;}
.xaa_c00150{left:244.515000px;}
.xfb_c00150{left:246.240000px;}
.x121_c00150{left:249.690000px;}
.xbe_c00150{left:253.155000px;}
.x83_c00150{left:256.605000px;}
.xa4_c00150{left:258.330000px;}
.x1c_c00150{left:266.970000px;}
.xbc_c00150{left:273.030000px;}
.x96_c00150{left:275.610000px;}
.x4c_c00150{left:277.350000px;}
.xd9_c00150{left:280.800000px;}
.xa5_c00150{left:283.395000px;}
.x3f_c00150{left:286.845000px;}
.x4d_c00150{left:289.440000px;}
.x97_c00150{left:292.890000px;}
.x2d_c00150{left:294.630000px;}
.x61_c00150{left:298.080000px;}
.xe5_c00150{left:301.530000px;}
.x90_c00150{left:304.125000px;}
.xab_c00150{left:305.850000px;}
.xa0_c00150{left:310.170000px;}
.x7a_c00150{left:313.635000px;}
.x46_c00150{left:317.085000px;}
.x91_c00150{left:318.810000px;}
.xda_c00150{left:320.550000px;}
.x89_c00150{left:322.275000px;}
.x112_c00150{left:324.000000px;}
.xb0_c00150{left:326.595000px;}
.x70_c00150{left:328.320000px;}
.xac_c00150{left:330.915000px;}
.x55_c00150{left:332.640000px;}
.x1d_c00150{left:337.830000px;}
.xc8_c00150{left:339.555000px;}
.xcc_c00150{left:342.150000px;}
.x14_c00150{left:343.875000px;}
.x84_c00150{left:345.600000px;}
.x104_c00150{left:349.050000px;}
.x2e_c00150{left:350.790000px;}
.x69_c00150{left:353.370000px;}
.xbf_c00150{left:358.560000px;}
.xc_c00150{left:360.285000px;}
.x85_c00150{left:362.880000px;}
.x1e_c00150{left:365.475000px;}
.xdf_c00150{left:367.200000px;}
.xfc_c00150{left:373.245000px;}
.x4_c00150{left:377.565000px;}
.x36_c00150{left:379.290000px;}
.x59_c00150{left:381.030000px;}
.xad_c00150{left:383.610000px;}
.x6a_c00150{left:387.930000px;}
.xdb_c00150{left:389.670000px;}
.xcd_c00150{left:392.250000px;}
.xe0_c00150{left:393.990000px;}
.x7f_c00150{left:395.715000px;}
.x47_c00150{left:399.165000px;}
.x62_c00150{left:401.760000px;}
.x15_c00150{left:404.355000px;}
.xe6_c00150{left:406.080000px;}
.xae_c00150{left:412.125000px;}
.xd_c00150{left:413.850000px;}
.x37_c00150{left:415.590000px;}
.x1f_c00150{left:421.635000px;}
.xb1_c00150{left:423.360000px;}
.x40_c00150{left:426.810000px;}
.xb7_c00150{left:428.550000px;}
.x86_c00150{left:430.275000px;}
.x2f_c00150{left:432.000000px;}
.xec_c00150{left:435.450000px;}
.xe_c00150{left:443.235000px;}
.xb2_c00150{left:444.960000px;}
.x56_c00150{left:447.555000px;}
.x11f_c00150{left:449.280000px;}
.xc0_c00150{left:451.005000px;}
.x8a_c00150{left:454.470000px;}
.xf4_c00150{left:456.195000px;}
.x41_c00150{left:457.920000px;}
.x113_c00150{left:459.645000px;}
.x119_c00150{left:462.240000px;}
.x63_c00150{left:463.965000px;}
.x5_c00150{left:466.560000px;}
.x20_c00150{left:468.285000px;}
.xf5_c00150{left:472.605000px;}
.x48_c00150{left:474.330000px;}
.x38_c00150{left:476.070000px;}
.xe7_c00150{left:478.650000px;}
.x4e_c00150{left:481.245000px;}
.xdc_c00150{left:482.970000px;}
.xa1_c00150{left:484.710000px;}
.x6_c00150{left:486.435000px;}
.x114_c00150{left:489.030000px;}
.x28_c00150{left:490.755000px;}
.x98_c00150{left:493.350000px;}
.xd3_c00150{left:495.075000px;}
.xce_c00150{left:497.670000px;}
.x5a_c00150{left:500.250000px;}
.x77_c00150{left:502.845000px;}
.xf_c00150{left:505.440000px;}
.x64_c00150{left:508.035000px;}
.x16_c00150{left:512.355000px;}
.x105_c00150{left:514.080000px;}
.x21_c00150{left:515.805000px;}
.x39_c00150{left:517.530000px;}
.x4f_c00150{left:520.125000px;}
.x7_c00150{left:522.720000px;}
.x71_c00150{left:524.445000px;}
.x92_c00150{left:526.170000px;}
.xd4_c00150{left:529.635000px;}
.x3a_c00150{left:532.230000px;}
.xc5_c00150{left:538.275000px;}
.xe8_c00150{left:540.870000px;}
.x106_c00150{left:545.190000px;}
.xc9_c00150{left:546.915000px;}
.x30_c00150{left:548.640000px;}
.xd8_c00150{left:551.235000px;}
.xdd_c00150{left:552.960000px;}
.x42_c00150{left:554.685000px;}
.xe1_c00150{left:559.005000px;}
.xc1_c00150{left:561.600000px;}
.x22_c00150{left:563.325000px;}
.x120_c00150{left:565.920000px;}
.x78_c00150{left:567.645000px;}
.x11a_c00150{left:569.370000px;}
.x5b_c00150{left:571.965000px;}
.x6b_c00150{left:575.430000px;}
.x31_c00150{left:577.155000px;}
.x99_c00150{left:578.880000px;}
.x10_c00150{left:581.475000px;}
.xe2_c00150{left:583.200000px;}
.x8_c00150{left:584.925000px;}
.x17_c00150{left:587.520000px;}
.x87_c00150{left:590.115000px;}
.xca_c00150{left:593.565000px;}
.x3b_c00150{left:598.755000px;}
.x6c_c00150{left:601.350000px;}
.x23_c00150{left:604.800000px;}
.xe9_c00150{left:606.525000px;}
.x29_c00150{left:608.250000px;}
.x65_c00150{left:610.845000px;}
.x6d_c00150{left:614.310000px;}
.xbb_c00150{left:616.035000px;}
.x50_c00150{left:619.485000px;}
.xb3_c00150{left:621.210000px;}
.x5c_c00150{left:623.805000px;}
.x43_c00150{left:627.270000px;}
.xa6_c00150{left:628.995000px;}
.x11_c00150{left:630.720000px;}
.x80_c00150{left:635.910000px;}
.x93_c00150{left:638.490000px;}
.x9a_c00150{left:641.085000px;}
.xa7_c00150{left:643.680000px;}
.x72_c00150{left:645.405000px;}
.xde_c00150{left:647.130000px;}
.x32_c00150{left:648.870000px;}
.x18_c00150{left:651.450000px;}
.x66_c00150{left:653.190000px;}
.xf6_c00150{left:654.915000px;}
.xa2_c00150{left:657.510000px;}
.x7b_c00150{left:660.960000px;}
.x73_c00150{left:662.685000px;}
.x1_c00150{left:665.280000px;}
.x2a_c00150{left:669.600000px;}
.x11b_c00150{left:673.050000px;}
.x9_c00150{left:678.240000px;}
.x115_c00150{left:679.965000px;}
.xd5_c00150{left:681.690000px;}
.x12_c00150{left:683.430000px;}
.x49_c00150{left:686.010000px;}
.xea_c00150{left:688.605000px;}
.x24_c00150{left:691.200000px;}
.xb4_c00150{left:693.795000px;}
.x81_c00150{left:696.390000px;}
.xa8_c00150{left:702.435000px;}
.xb8_c00150{left:704.160000px;}
.x9b_c00150{left:706.755000px;}
.x2b_c00150{left:708.480000px;}
.x5d_c00150{left:711.930000px;}
.xa_c00150{left:713.670000px;}
.xaf_c00150{left:717.120000px;}
.x94_c00150{left:719.715000px;}
.x51_c00150{left:721.440000px;}
.x19_c00150{left:724.035000px;}
.x7c_c00150{left:725.760000px;}
.x3c_c00150{left:727.485000px;}
.xeb_c00150{left:730.950000px;}
.xcf_c00150{left:736.125000px;}
.x3d_c00150{left:737.850000px;}
.x2_c00150{left:740.445000px;}
.x44_c00150{left:743.040000px;}
.x52_c00150{left:744.765000px;}
.x95_c00150{left:748.230000px;}
.x7d_c00150{left:749.955000px;}
.x116_c00150{left:751.680000px;}
.x74_c00150{left:755.130000px;}
.xd0_c00150{left:756.870000px;}
.x25_c00150{left:760.320000px;}
.x8b_c00150{left:762.045000px;}
.x67_c00150{left:765.510000px;}
.x4a_c00150{left:768.960000px;}
.x6e_c00150{left:772.410000px;}
.x75_c00150{left:775.005000px;}
.xd6_c00150{left:776.730000px;}
.xa3_c00150{left:779.325000px;}
.x1a_c00150{left:781.920000px;}
.x9c_c00150{left:784.515000px;}
.xa9_c00150{left:788.835000px;}
.x5e_c00150{left:791.430000px;}
.x1b_c00150{left:794.010000px;}
.x9d_c00150{left:796.605000px;}
.x33_c00150{left:798.330000px;}
.x13_c00150{left:800.070000px;}
.xb5_c00150{left:803.520000px;}
.x4b_c00150{left:805.245000px;}
.x2c_c00150{left:807.840000px;}
.x82_c00150{left:811.290000px;}
.x3e_c00150{left:813.030000px;}
.x8c_c00150{left:815.610000px;}
.x26_c00150{left:817.350000px;}
.x53_c00150{left:820.800000px;}
.xf7_c00150{left:823.395000px;}
.x57_c00150{left:830.310000px;}
.xcb_c00150{left:832.035000px;}
.x7e_c00150{left:833.760000px;}
.xb9_c00150{left:836.355000px;}
.x5f_c00150{left:838.080000px;}
.xd7_c00150{left:840.675000px;}
.x45_c00150{left:844.125000px;}
.x8d_c00150{left:845.850000px;}
.x68_c00150{left:847.590000px;}
.x79_c00150{left:849.315000px;}
.x34_c00150{left:854.490000px;}
.xd1_c00150{left:858.810000px;}
.x10f_c00150{left:860.550000px;}
.xfd_c00150{left:863.130000px;}
.x54_c00150{left:867.450000px;}
.x117_c00150{left:872.640000px;}
.x8e_c00150{left:875.235000px;}
.xc2_c00150{left:876.960000px;}
.x60_c00150{left:887.325000px;}
.xba_c00150{left:898.560000px;}
.x9e_c00150{left:902.880000px;}
.x35_c00150{left:906.330000px;}
.x9f_c00150{left:915.840000px;}
.x127_c00150{left:1047.165000px;}
.x128_c00150{left:1059.270000px;}
.x124_c00150{left:1062.720000px;}
.x123_c00150{left:1071.360000px;}
.x125_c00150{left:1073.955000px;}
.x126_c00150{left:1082.595000px;}
@media print{
.v1_c00150{vertical-align:-3.093333pt;}
.v0_c00150{vertical-align:0.000000pt;}
.v2_c00150{vertical-align:3.040000pt;}
.ls1_c00150{letter-spacing:0.000000pt;}
.ls0_c00150{letter-spacing:266.088320pt;}
.ws0_c00150{word-spacing:-18.569600pt;}
.ws1_c00150{word-spacing:-14.330133pt;}
.ws2_c00150{word-spacing:-12.202667pt;}
.ws4_c00150{word-spacing:0.000000pt;}
.ws3_c00150{word-spacing:34.346933pt;}
.fs1f_c00150{font-size:3.072000pt;}
.fs2_c00150{font-size:5.333333pt;}
.fs1b_c00150{font-size:6.133333pt;}
.fs1a_c00150{font-size:9.226667pt;}
.fs20_c00150{font-size:12.266667pt;}
.fs1c_c00150{font-size:15.360000pt;}
.fs19_c00150{font-size:18.453333pt;}
.fs10_c00150{font-size:21.493333pt;}
.fs15_c00150{font-size:24.586667pt;}
.fs23_c00150{font-size:27.626667pt;}
.fs22_c00150{font-size:30.720000pt;}
.fs0_c00150{font-size:33.813333pt;}
.fs17_c00150{font-size:36.853333pt;}
.fsd_c00150{font-size:39.946667pt;}
.fs1d_c00150{font-size:42.986667pt;}
.fs11_c00150{font-size:46.080000pt;}
.fs1e_c00150{font-size:49.173333pt;}
.fs18_c00150{font-size:52.213333pt;}
.fs12_c00150{font-size:55.306667pt;}
.fs4_c00150{font-size:58.346667pt;}
.fs5_c00150{font-size:61.440000pt;}
.fs1_c00150{font-size:64.533333pt;}
.fsf_c00150{font-size:67.573333pt;}
.fs13_c00150{font-size:70.666667pt;}
.fs16_c00150{font-size:73.706667pt;}
.fsc_c00150{font-size:76.800000pt;}
.fsa_c00150{font-size:79.893333pt;}
.fs3_c00150{font-size:82.933333pt;}
.fs9_c00150{font-size:86.026667pt;}
.fs6_c00150{font-size:89.066667pt;}
.fse_c00150{font-size:92.160000pt;}
.fs21_c00150{font-size:95.253333pt;}
.fsb_c00150{font-size:98.293333pt;}
.fs26_c00150{font-size:101.386667pt;}
.fs7_c00150{font-size:104.426667pt;}
.fs24_c00150{font-size:107.520000pt;}
.fs8_c00150{font-size:113.653333pt;}
.fs14_c00150{font-size:116.746667pt;}
.fs25_c00150{font-size:150.506667pt;}
.y0_c00150{bottom:0.000000pt;}
.y190_c00150{bottom:208.133333pt;}
.y18e_c00150{bottom:209.666667pt;}
.y18f_c00150{bottom:211.200000pt;}
.y191_c00150{bottom:218.106667pt;}
.y18a_c00150{bottom:221.946667pt;}
.y188_c00150{bottom:222.720000pt;}
.y18c_c00150{bottom:224.253333pt;}
.y189_c00150{bottom:225.026667pt;}
.y18b_c00150{bottom:225.786667pt;}
.y18d_c00150{bottom:226.560000pt;}
.y181_c00150{bottom:227.333333pt;}
.y186_c00150{bottom:228.093333pt;}
.y182_c00150{bottom:228.866667pt;}
.y185_c00150{bottom:232.706667pt;}
.y184_c00150{bottom:234.240000pt;}
.y194_c00150{bottom:235.013333pt;}
.y17e_c00150{bottom:237.306667pt;}
.y183_c00150{bottom:238.853333pt;}
.y17f_c00150{bottom:243.453333pt;}
.y17d_c00150{bottom:247.293333pt;}
.y187_c00150{bottom:248.066667pt;}
.y180_c00150{bottom:248.826667pt;}
.y17b_c00150{bottom:251.133333pt;}
.y179_c00150{bottom:254.213333pt;}
.y17a_c00150{bottom:254.973333pt;}
.y17c_c00150{bottom:255.746667pt;}
.y178_c00150{bottom:268.800000pt;}
.y175_c00150{bottom:270.333333pt;}
.y177_c00150{bottom:271.106667pt;}
.y174_c00150{bottom:271.866667pt;}
.y172_c00150{bottom:272.640000pt;}
.y16f_c00150{bottom:275.706667pt;}
.y176_c00150{bottom:276.480000pt;}
.y173_c00150{bottom:278.786667pt;}
.y16e_c00150{bottom:279.546667pt;}
.y15f_c00150{bottom:287.226667pt;}
.y170_c00150{bottom:289.533333pt;}
.y171_c00150{bottom:292.613333pt;}
.y16a_c00150{bottom:293.373333pt;}
.y169_c00150{bottom:294.146667pt;}
.y168_c00150{bottom:296.453333pt;}
.y16d_c00150{bottom:297.213333pt;}
.y16c_c00150{bottom:297.986667pt;}
.y166_c00150{bottom:298.746667pt;}
.y16b_c00150{bottom:299.520000pt;}
.y164_c00150{bottom:300.293333pt;}
.y167_c00150{bottom:301.826667pt;}
.y165_c00150{bottom:302.586667pt;}
.y162_c00150{bottom:304.133333pt;}
.y161_c00150{bottom:304.893333pt;}
.y163_c00150{bottom:305.666667pt;}
.y160_c00150{bottom:306.426667pt;}
.y15d_c00150{bottom:313.346667pt;}
.y15a_c00150{bottom:314.880000pt;}
.y15e_c00150{bottom:315.653333pt;}
.y157_c00150{bottom:316.413333pt;}
.y159_c00150{bottom:317.186667pt;}
.y153_c00150{bottom:318.720000pt;}
.y154_c00150{bottom:319.493333pt;}
.y15c_c00150{bottom:320.253333pt;}
.y156_c00150{bottom:321.026667pt;}
.y155_c00150{bottom:321.786667pt;}
.y15b_c00150{bottom:323.333333pt;}
.y158_c00150{bottom:325.626667pt;}
.y152_c00150{bottom:338.693333pt;}
.y148_c00150{bottom:339.453333pt;}
.y149_c00150{bottom:340.226667pt;}
.y151_c00150{bottom:340.986667pt;}
.y14b_c00150{bottom:341.760000pt;}
.y14d_c00150{bottom:342.533333pt;}
.y14f_c00150{bottom:344.826667pt;}
.y14a_c00150{bottom:345.600000pt;}
.y150_c00150{bottom:346.373333pt;}
.y14e_c00150{bottom:348.666667pt;}
.y14c_c00150{bottom:350.213333pt;}
.y147_c00150{bottom:362.493333pt;}
.y142_c00150{bottom:363.266667pt;}
.y140_c00150{bottom:364.026667pt;}
.y145_c00150{bottom:366.333333pt;}
.y144_c00150{bottom:367.106667pt;}
.y141_c00150{bottom:367.866667pt;}
.y13d_c00150{bottom:368.640000pt;}
.y13f_c00150{bottom:370.173333pt;}
.y13c_c00150{bottom:370.946667pt;}
.y13b_c00150{bottom:373.253333pt;}
.y146_c00150{bottom:374.013333pt;}
.y143_c00150{bottom:375.546667pt;}
.y13e_c00150{bottom:377.093333pt;}
.y13a_c00150{bottom:383.226667pt;}
.y139_c00150{bottom:385.533333pt;}
.y136_c00150{bottom:386.306667pt;}
.y132_c00150{bottom:387.066667pt;}
.y137_c00150{bottom:387.840000pt;}
.y138_c00150{bottom:389.373333pt;}
.y135_c00150{bottom:390.146667pt;}
.y131_c00150{bottom:390.906667pt;}
.y134_c00150{bottom:391.680000pt;}
.y133_c00150{bottom:400.893333pt;}
.y12c_c00150{bottom:408.573333pt;}
.y12f_c00150{bottom:409.346667pt;}
.y12b_c00150{bottom:410.106667pt;}
.y129_c00150{bottom:410.880000pt;}
.y12d_c00150{bottom:411.653333pt;}
.y12e_c00150{bottom:413.186667pt;}
.y128_c00150{bottom:413.946667pt;}
.y127_c00150{bottom:414.720000pt;}
.y12a_c00150{bottom:415.493333pt;}
.y130_c00150{bottom:420.866667pt;}
.y126_c00150{bottom:429.306667pt;}
.y11f_c00150{bottom:431.613333pt;}
.y122_c00150{bottom:432.386667pt;}
.y124_c00150{bottom:433.146667pt;}
.y123_c00150{bottom:434.693333pt;}
.y121_c00150{bottom:436.226667pt;}
.y125_c00150{bottom:436.986667pt;}
.y11d_c00150{bottom:437.760000pt;}
.y120_c00150{bottom:438.533333pt;}
.y11e_c00150{bottom:442.373333pt;}
.y11b_c00150{bottom:452.346667pt;}
.y11c_c00150{bottom:453.120000pt;}
.y119_c00150{bottom:453.893333pt;}
.y11a_c00150{bottom:454.653333pt;}
.y118_c00150{bottom:459.266667pt;}
.y116_c00150{bottom:460.026667pt;}
.y113_c00150{bottom:460.800000pt;}
.y112_c00150{bottom:466.173333pt;}
.y115_c00150{bottom:467.706667pt;}
.y111_c00150{bottom:468.480000pt;}
.y110_c00150{bottom:471.546667pt;}
.y117_c00150{bottom:472.320000pt;}
.y10f_c00150{bottom:473.093333pt;}
.y114_c00150{bottom:473.853333pt;}
.y10c_c00150{bottom:474.626667pt;}
.y10d_c00150{bottom:475.386667pt;}
.y10b_c00150{bottom:476.160000pt;}
.y109_c00150{bottom:476.933333pt;}
.y108_c00150{bottom:477.693333pt;}
.y10a_c00150{bottom:480.000000pt;}
.y10e_c00150{bottom:480.773333pt;}
.y106_c00150{bottom:497.666667pt;}
.y107_c00150{bottom:498.426667pt;}
.y102_c00150{bottom:499.200000pt;}
.y103_c00150{bottom:502.266667pt;}
.y105_c00150{bottom:503.040000pt;}
.y104_c00150{bottom:506.106667pt;}
.yfa_c00150{bottom:521.466667pt;}
.yf7_c00150{bottom:522.240000pt;}
.yf8_c00150{bottom:523.013333pt;}
.y101_c00150{bottom:523.773333pt;}
.yfd_c00150{bottom:524.546667pt;}
.yfb_c00150{bottom:525.306667pt;}
.yfc_c00150{bottom:526.853333pt;}
.yf9_c00150{bottom:528.386667pt;}
.y100_c00150{bottom:530.693333pt;}
.yff_c00150{bottom:542.973333pt;}
.yfe_c00150{bottom:543.746667pt;}
.yf6_c00150{bottom:546.053333pt;}
.yf0_c00150{bottom:546.813333pt;}
.yef_c00150{bottom:547.586667pt;}
.yf5_c00150{bottom:548.346667pt;}
.yf4_c00150{bottom:549.120000pt;}
.yf2_c00150{bottom:550.653333pt;}
.yf1_c00150{bottom:551.426667pt;}
.yee_c00150{bottom:557.573333pt;}
.yed_c00150{bottom:558.333333pt;}
.yf3_c00150{bottom:559.866667pt;}
.y192_c00150{bottom:560.640000pt;}
.y193_c00150{bottom:562.173333pt;}
.yeb_c00150{bottom:565.253333pt;}
.ye9_c00150{bottom:566.013333pt;}
.ye8_c00150{bottom:566.786667pt;}
.ye7_c00150{bottom:569.853333pt;}
.yec_c00150{bottom:570.626667pt;}
.yea_c00150{bottom:572.933333pt;}
.ye6_c00150{bottom:585.986667pt;}
.ye5_c00150{bottom:586.746667pt;}
.ydf_c00150{bottom:588.293333pt;}
.yde_c00150{bottom:589.053333pt;}
.ydc_c00150{bottom:589.826667pt;}
.ye0_c00150{bottom:590.586667pt;}
.ye2_c00150{bottom:591.360000pt;}
.ye4_c00150{bottom:592.133333pt;}
.ye3_c00150{bottom:593.666667pt;}
.ydd_c00150{bottom:595.200000pt;}
.ye1_c00150{bottom:595.973333pt;}
.yda_c00150{bottom:609.786667pt;}
.yd8_c00150{bottom:610.560000pt;}
.yd6_c00150{bottom:612.866667pt;}
.yd5_c00150{bottom:613.626667pt;}
.yd9_c00150{bottom:614.400000pt;}
.yd7_c00150{bottom:615.173333pt;}
.ydb_c00150{bottom:615.933333pt;}
.yd3_c00150{bottom:630.533333pt;}
.yd2_c00150{bottom:631.293333pt;}
.yce_c00150{bottom:632.066667pt;}
.yd4_c00150{bottom:632.826667pt;}
.ycd_c00150{bottom:633.600000pt;}
.ycc_c00150{bottom:634.373333pt;}
.yd0_c00150{bottom:635.133333pt;}
.yd1_c00150{bottom:636.666667pt;}
.ycb_c00150{bottom:637.440000pt;}
.ycf_c00150{bottom:638.213333pt;}
.yc4_c00150{bottom:653.573333pt;}
.yc1_c00150{bottom:654.333333pt;}
.yc8_c00150{bottom:655.106667pt;}
.yc0_c00150{bottom:657.413333pt;}
.yc3_c00150{bottom:660.480000pt;}
.yc2_c00150{bottom:661.253333pt;}
.yc6_c00150{bottom:662.786667pt;}
.yca_c00150{bottom:664.320000pt;}
.yc7_c00150{bottom:668.933333pt;}
.yc9_c00150{bottom:670.466667pt;}
.yc5_c00150{bottom:673.533333pt;}
.ybf_c00150{bottom:675.066667pt;}
.yb9_c00150{bottom:677.373333pt;}
.ybe_c00150{bottom:678.906667pt;}
.ybc_c00150{bottom:680.453333pt;}
.ybb_c00150{bottom:681.213333pt;}
.ybd_c00150{bottom:683.520000pt;}
.yba_c00150{bottom:684.293333pt;}
.yb8_c00150{bottom:696.573333pt;}
.yb2_c00150{bottom:698.880000pt;}
.yb6_c00150{bottom:700.413333pt;}
.yb3_c00150{bottom:701.946667pt;}
.yb5_c00150{bottom:702.720000pt;}
.yb1_c00150{bottom:703.493333pt;}
.yb7_c00150{bottom:704.253333pt;}
.yb4_c00150{bottom:705.026667pt;}
.yaa_c00150{bottom:718.853333pt;}
.yb0_c00150{bottom:719.613333pt;}
.yab_c00150{bottom:720.386667pt;}
.ya8_c00150{bottom:721.920000pt;}
.yaf_c00150{bottom:722.693333pt;}
.yae_c00150{bottom:723.453333pt;}
.yac_c00150{bottom:725.760000pt;}
.yad_c00150{bottom:726.533333pt;}
.ya9_c00150{bottom:727.293333pt;}
.ya2_c00150{bottom:741.120000pt;}
.ya4_c00150{bottom:741.893333pt;}
.ya3_c00150{bottom:744.186667pt;}
.ya1_c00150{bottom:745.733333pt;}
.ya6_c00150{bottom:746.493333pt;}
.ya5_c00150{bottom:747.266667pt;}
.ya7_c00150{bottom:751.106667pt;}
.y9b_c00150{bottom:762.626667pt;}
.y9c_c00150{bottom:763.386667pt;}
.y99_c00150{bottom:764.933333pt;}
.y98_c00150{bottom:766.466667pt;}
.y9e_c00150{bottom:769.533333pt;}
.y9d_c00150{bottom:770.306667pt;}
.y9a_c00150{bottom:771.066667pt;}
.y9f_c00150{bottom:771.840000pt;}
.ya0_c00150{bottom:772.613333pt;}
.y96_c00150{bottom:784.893333pt;}
.y90_c00150{bottom:787.200000pt;}
.y8f_c00150{bottom:787.973333pt;}
.y92_c00150{bottom:788.733333pt;}
.y91_c00150{bottom:790.266667pt;}
.y97_c00150{bottom:791.040000pt;}
.y94_c00150{bottom:791.813333pt;}
.y95_c00150{bottom:792.573333pt;}
.y93_c00150{bottom:793.346667pt;}
.y8e_c00150{bottom:794.106667pt;}
.y8d_c00150{bottom:807.173333pt;}
.y8b_c00150{bottom:808.706667pt;}
.y8a_c00150{bottom:809.466667pt;}
.y8c_c00150{bottom:810.240000pt;}
.y88_c00150{bottom:811.013333pt;}
.y87_c00150{bottom:811.773333pt;}
.y85_c00150{bottom:814.080000pt;}
.y86_c00150{bottom:814.853333pt;}
.y89_c00150{bottom:815.613333pt;}
.y84_c00150{bottom:830.213333pt;}
.y82_c00150{bottom:830.973333pt;}
.y80_c00150{bottom:831.746667pt;}
.y83_c00150{bottom:836.346667pt;}
.y81_c00150{bottom:837.893333pt;}
.y7f_c00150{bottom:838.653333pt;}
.y7a_c00150{bottom:852.480000pt;}
.y7c_c00150{bottom:853.253333pt;}
.y7d_c00150{bottom:858.626667pt;}
.y7e_c00150{bottom:859.386667pt;}
.y7b_c00150{bottom:860.160000pt;}
.y73_c00150{bottom:875.520000pt;}
.y75_c00150{bottom:877.053333pt;}
.y74_c00150{bottom:878.586667pt;}
.y77_c00150{bottom:879.360000pt;}
.y79_c00150{bottom:880.893333pt;}
.y78_c00150{bottom:882.426667pt;}
.y76_c00150{bottom:886.266667pt;}
.y6c_c00150{bottom:897.786667pt;}
.y70_c00150{bottom:898.560000pt;}
.y72_c00150{bottom:899.333333pt;}
.y6e_c00150{bottom:900.866667pt;}
.y6d_c00150{bottom:903.173333pt;}
.y6f_c00150{bottom:903.933333pt;}
.y71_c00150{bottom:904.706667pt;}
.y6b_c00150{bottom:908.546667pt;}
.y69_c00150{bottom:920.066667pt;}
.y66_c00150{bottom:921.600000pt;}
.y68_c00150{bottom:922.373333pt;}
.y67_c00150{bottom:923.906667pt;}
.y65_c00150{bottom:925.440000pt;}
.y63_c00150{bottom:926.213333pt;}
.y6a_c00150{bottom:926.973333pt;}
.y64_c00150{bottom:927.746667pt;}
.y62_c00150{bottom:939.266667pt;}
.y5e_c00150{bottom:945.413333pt;}
.y5c_c00150{bottom:946.173333pt;}
.y5f_c00150{bottom:947.706667pt;}
.y61_c00150{bottom:948.480000pt;}
.y5d_c00150{bottom:949.253333pt;}
.y60_c00150{bottom:950.013333pt;}
.y53_c00150{bottom:964.613333pt;}
.y54_c00150{bottom:965.373333pt;}
.y52_c00150{bottom:966.906667pt;}
.y59_c00150{bottom:967.680000pt;}
.y56_c00150{bottom:968.453333pt;}
.y57_c00150{bottom:969.213333pt;}
.y5b_c00150{bottom:969.986667pt;}
.y58_c00150{bottom:970.746667pt;}
.y55_c00150{bottom:972.293333pt;}
.y5a_c00150{bottom:973.826667pt;}
.y50_c00150{bottom:986.106667pt;}
.y4c_c00150{bottom:988.413333pt;}
.y4d_c00150{bottom:989.186667pt;}
.y4b_c00150{bottom:990.720000pt;}
.y4f_c00150{bottom:991.493333pt;}
.y4e_c00150{bottom:993.026667pt;}
.y4a_c00150{bottom:998.400000pt;}
.y51_c00150{bottom:1001.466667pt;}
.y49_c00150{bottom:1008.386667pt;}
.y46_c00150{bottom:1009.146667pt;}
.y48_c00150{bottom:1009.920000pt;}
.y47_c00150{bottom:1011.453333pt;}
.y45_c00150{bottom:1015.293333pt;}
.y44_c00150{bottom:1016.066667pt;}
.y41_c00150{bottom:1030.653333pt;}
.y40_c00150{bottom:1031.426667pt;}
.y3f_c00150{bottom:1032.960000pt;}
.y3e_c00150{bottom:1033.733333pt;}
.y3c_c00150{bottom:1035.266667pt;}
.y42_c00150{bottom:1036.800000pt;}
.y3b_c00150{bottom:1037.573333pt;}
.y3d_c00150{bottom:1039.106667pt;}
.y43_c00150{bottom:1040.640000pt;}
.y3a_c00150{bottom:1053.693333pt;}
.y39_c00150{bottom:1054.466667pt;}
.y37_c00150{bottom:1057.533333pt;}
.y38_c00150{bottom:1059.840000pt;}
.y33_c00150{bottom:1074.426667pt;}
.y34_c00150{bottom:1076.733333pt;}
.y36_c00150{bottom:1079.040000pt;}
.y35_c00150{bottom:1081.346667pt;}
.y32_c00150{bottom:1082.880000pt;}
.y2e_c00150{bottom:1097.466667pt;}
.y31_c00150{bottom:1098.240000pt;}
.y30_c00150{bottom:1099.773333pt;}
.y2c_c00150{bottom:1100.546667pt;}
.y2f_c00150{bottom:1102.080000pt;}
.y2d_c00150{bottom:1104.386667pt;}
.y2b_c00150{bottom:1115.906667pt;}
.y29_c00150{bottom:1118.973333pt;}
.y24_c00150{bottom:1119.746667pt;}
.y22_c00150{bottom:1120.506667pt;}
.y27_c00150{bottom:1122.053333pt;}
.y23_c00150{bottom:1123.586667pt;}
.y28_c00150{bottom:1124.346667pt;}
.y25_c00150{bottom:1125.893333pt;}
.y2a_c00150{bottom:1126.653333pt;}
.y26_c00150{bottom:1127.426667pt;}
.y1c_c00150{bottom:1142.013333pt;}
.y1f_c00150{bottom:1146.626667pt;}
.y20_c00150{bottom:1147.386667pt;}
.y21_c00150{bottom:1148.160000pt;}
.y1d_c00150{bottom:1148.933333pt;}
.y1e_c00150{bottom:1149.693333pt;}
.y1a_c00150{bottom:1166.586667pt;}
.y1b_c00150{bottom:1168.133333pt;}
.y19_c00150{bottom:1169.666667pt;}
.y18_c00150{bottom:1170.426667pt;}
.y17_c00150{bottom:1171.200000pt;}
.y13_c00150{bottom:1186.560000pt;}
.y15_c00150{bottom:1187.333333pt;}
.y11_c00150{bottom:1188.093333pt;}
.y16_c00150{bottom:1191.173333pt;}
.y12_c00150{bottom:1192.706667pt;}
.y10_c00150{bottom:1193.466667pt;}
.y14_c00150{bottom:1194.240000pt;}
.yd_c00150{bottom:1207.293333pt;}
.y9_c00150{bottom:1208.826667pt;}
.yc_c00150{bottom:1209.600000pt;}
.ya_c00150{bottom:1210.373333pt;}
.yf_c00150{bottom:1212.666667pt;}
.yb_c00150{bottom:1215.746667pt;}
.ye_c00150{bottom:1216.506667pt;}
.y8_c00150{bottom:1238.013333pt;}
.y4_c00150{bottom:1238.786667pt;}
.y7_c00150{bottom:1243.386667pt;}
.y5_c00150{bottom:1244.160000pt;}
.y6_c00150{bottom:1244.933333pt;}
.y2_c00150{bottom:1266.426667pt;}
.y3_c00150{bottom:1268.733333pt;}
.y1_c00150{bottom:1286.400000pt;}
.h21_c00150{height:2.764500pt;}
.h4_c00150{height:4.799479pt;}
.h1d_c00150{height:5.519401pt;}
.h26_c00150{height:7.839479pt;}
.h1c_c00150{height:8.303099pt;}
.h22_c00150{height:11.038802pt;}
.h1e_c00150{height:13.822500pt;}
.h1b_c00150{height:16.606198pt;}
.h12_c00150{height:19.341901pt;}
.h17_c00150{height:22.125599pt;}
.h25_c00150{height:24.861302pt;}
.h24_c00150{height:27.645000pt;}
.h2_c00150{height:30.428698pt;}
.h19_c00150{height:33.164401pt;}
.hf_c00150{height:35.948099pt;}
.h1f_c00150{height:38.683802pt;}
.h13_c00150{height:41.467500pt;}
.h20_c00150{height:44.251198pt;}
.h1a_c00150{height:46.986901pt;}
.h14_c00150{height:49.770599pt;}
.h6_c00150{height:52.506302pt;}
.h7_c00150{height:55.290000pt;}
.h3_c00150{height:58.073698pt;}
.h11_c00150{height:60.809401pt;}
.h15_c00150{height:63.593099pt;}
.h18_c00150{height:66.328802pt;}
.he_c00150{height:69.112500pt;}
.hc_c00150{height:71.896198pt;}
.h5_c00150{height:74.631901pt;}
.hb_c00150{height:77.415599pt;}
.h8_c00150{height:80.151302pt;}
.h10_c00150{height:82.935000pt;}
.h23_c00150{height:85.718698pt;}
.hd_c00150{height:88.454401pt;}
.h29_c00150{height:91.238099pt;}
.h9_c00150{height:93.973802pt;}
.h27_c00150{height:96.757500pt;}
.ha_c00150{height:102.276901pt;}
.h16_c00150{height:105.060599pt;}
.h28_c00150{height:135.441302pt;}
.h0_c00150{height:1353.986667pt;}
.h1_c00150{height:1354.000000pt;}
.w0_c00150{width:969.213333pt;}
.w1_c00150{width:969.333333pt;}
.x0_c00150{left:0.000000pt;}
.x118_c00150{left:42.240000pt;}
.xfe_c00150{left:46.853333pt;}
.x110_c00150{left:49.920000pt;}
.xed_c00150{left:53.760000pt;}
.xff_c00150{left:55.293333pt;}
.xee_c00150{left:67.586667pt;}
.xef_c00150{left:78.333333pt;}
.x107_c00150{left:86.013333pt;}
.xf0_c00150{left:94.466667pt;}
.x108_c00150{left:97.533333pt;}
.xf8_c00150{left:101.373333pt;}
.x100_c00150{left:108.293333pt;}
.xf1_c00150{left:111.360000pt;}
.x109_c00150{left:116.733333pt;}
.x122_c00150{left:119.813333pt;}
.x10a_c00150{left:124.413333pt;}
.x111_c00150{left:129.786667pt;}
.x10b_c00150{left:134.400000pt;}
.xf2_c00150{left:135.933333pt;}
.x101_c00150{left:138.240000pt;}
.x10c_c00150{left:142.080000pt;}
.xf9_c00150{left:145.146667pt;}
.x10d_c00150{left:154.373333pt;}
.x11c_c00150{left:156.666667pt;}
.x102_c00150{left:158.973333pt;}
.xe3_c00150{left:163.586667pt;}
.xc3_c00150{left:165.893333pt;}
.x11d_c00150{left:167.426667pt;}
.xf3_c00150{left:170.493333pt;}
.x10e_c00150{left:174.333333pt;}
.xc6_c00150{left:176.640000pt;}
.xe4_c00150{left:178.946667pt;}
.x103_c00150{left:180.480000pt;}
.xbd_c00150{left:183.546667pt;}
.xc4_c00150{left:185.093333pt;}
.x6f_c00150{left:188.160000pt;}
.x11e_c00150{left:190.466667pt;}
.xc7_c00150{left:193.533333pt;}
.xb6_c00150{left:195.840000pt;}
.x58_c00150{left:198.146667pt;}
.x76_c00150{left:199.680000pt;}
.xfa_c00150{left:202.746667pt;}
.x27_c00150{left:204.293333pt;}
.x88_c00150{left:205.826667pt;}
.x8f_c00150{left:207.360000pt;}
.xb_c00150{left:208.893333pt;}
.x3_c00150{left:211.200000pt;}
.xd2_c00150{left:214.266667pt;}
.xaa_c00150{left:217.346667pt;}
.xfb_c00150{left:218.880000pt;}
.x121_c00150{left:221.946667pt;}
.xbe_c00150{left:225.026667pt;}
.x83_c00150{left:228.093333pt;}
.xa4_c00150{left:229.626667pt;}
.x1c_c00150{left:237.306667pt;}
.xbc_c00150{left:242.693333pt;}
.x96_c00150{left:244.986667pt;}
.x4c_c00150{left:246.533333pt;}
.xd9_c00150{left:249.600000pt;}
.xa5_c00150{left:251.906667pt;}
.x3f_c00150{left:254.973333pt;}
.x4d_c00150{left:257.280000pt;}
.x97_c00150{left:260.346667pt;}
.x2d_c00150{left:261.893333pt;}
.x61_c00150{left:264.960000pt;}
.xe5_c00150{left:268.026667pt;}
.x90_c00150{left:270.333333pt;}
.xab_c00150{left:271.866667pt;}
.xa0_c00150{left:275.706667pt;}
.x7a_c00150{left:278.786667pt;}
.x46_c00150{left:281.853333pt;}
.x91_c00150{left:283.386667pt;}
.xda_c00150{left:284.933333pt;}
.x89_c00150{left:286.466667pt;}
.x112_c00150{left:288.000000pt;}
.xb0_c00150{left:290.306667pt;}
.x70_c00150{left:291.840000pt;}
.xac_c00150{left:294.146667pt;}
.x55_c00150{left:295.680000pt;}
.x1d_c00150{left:300.293333pt;}
.xc8_c00150{left:301.826667pt;}
.xcc_c00150{left:304.133333pt;}
.x14_c00150{left:305.666667pt;}
.x84_c00150{left:307.200000pt;}
.x104_c00150{left:310.266667pt;}
.x2e_c00150{left:311.813333pt;}
.x69_c00150{left:314.106667pt;}
.xbf_c00150{left:318.720000pt;}
.xc_c00150{left:320.253333pt;}
.x85_c00150{left:322.560000pt;}
.x1e_c00150{left:324.866667pt;}
.xdf_c00150{left:326.400000pt;}
.xfc_c00150{left:331.773333pt;}
.x4_c00150{left:335.613333pt;}
.x36_c00150{left:337.146667pt;}
.x59_c00150{left:338.693333pt;}
.xad_c00150{left:340.986667pt;}
.x6a_c00150{left:344.826667pt;}
.xdb_c00150{left:346.373333pt;}
.xcd_c00150{left:348.666667pt;}
.xe0_c00150{left:350.213333pt;}
.x7f_c00150{left:351.746667pt;}
.x47_c00150{left:354.813333pt;}
.x62_c00150{left:357.120000pt;}
.x15_c00150{left:359.426667pt;}
.xe6_c00150{left:360.960000pt;}
.xae_c00150{left:366.333333pt;}
.xd_c00150{left:367.866667pt;}
.x37_c00150{left:369.413333pt;}
.x1f_c00150{left:374.786667pt;}
.xb1_c00150{left:376.320000pt;}
.x40_c00150{left:379.386667pt;}
.xb7_c00150{left:380.933333pt;}
.x86_c00150{left:382.466667pt;}
.x2f_c00150{left:384.000000pt;}
.xec_c00150{left:387.066667pt;}
.xe_c00150{left:393.986667pt;}
.xb2_c00150{left:395.520000pt;}
.x56_c00150{left:397.826667pt;}
.x11f_c00150{left:399.360000pt;}
.xc0_c00150{left:400.893333pt;}
.x8a_c00150{left:403.973333pt;}
.xf4_c00150{left:405.506667pt;}
.x41_c00150{left:407.040000pt;}
.x113_c00150{left:408.573333pt;}
.x119_c00150{left:410.880000pt;}
.x63_c00150{left:412.413333pt;}
.x5_c00150{left:414.720000pt;}
.x20_c00150{left:416.253333pt;}
.xf5_c00150{left:420.093333pt;}
.x48_c00150{left:421.626667pt;}
.x38_c00150{left:423.173333pt;}
.xe7_c00150{left:425.466667pt;}
.x4e_c00150{left:427.773333pt;}
.xdc_c00150{left:429.306667pt;}
.xa1_c00150{left:430.853333pt;}
.x6_c00150{left:432.386667pt;}
.x114_c00150{left:434.693333pt;}
.x28_c00150{left:436.226667pt;}
.x98_c00150{left:438.533333pt;}
.xd3_c00150{left:440.066667pt;}
.xce_c00150{left:442.373333pt;}
.x5a_c00150{left:444.666667pt;}
.x77_c00150{left:446.973333pt;}
.xf_c00150{left:449.280000pt;}
.x64_c00150{left:451.586667pt;}
.x16_c00150{left:455.426667pt;}
.x105_c00150{left:456.960000pt;}
.x21_c00150{left:458.493333pt;}
.x39_c00150{left:460.026667pt;}
.x4f_c00150{left:462.333333pt;}
.x7_c00150{left:464.640000pt;}
.x71_c00150{left:466.173333pt;}
.x92_c00150{left:467.706667pt;}
.xd4_c00150{left:470.786667pt;}
.x3a_c00150{left:473.093333pt;}
.xc5_c00150{left:478.466667pt;}
.xe8_c00150{left:480.773333pt;}
.x106_c00150{left:484.613333pt;}
.xc9_c00150{left:486.146667pt;}
.x30_c00150{left:487.680000pt;}
.xd8_c00150{left:489.986667pt;}
.xdd_c00150{left:491.520000pt;}
.x42_c00150{left:493.053333pt;}
.xe1_c00150{left:496.893333pt;}
.xc1_c00150{left:499.200000pt;}
.x22_c00150{left:500.733333pt;}
.x120_c00150{left:503.040000pt;}
.x78_c00150{left:504.573333pt;}
.x11a_c00150{left:506.106667pt;}
.x5b_c00150{left:508.413333pt;}
.x6b_c00150{left:511.493333pt;}
.x31_c00150{left:513.026667pt;}
.x99_c00150{left:514.560000pt;}
.x10_c00150{left:516.866667pt;}
.xe2_c00150{left:518.400000pt;}
.x8_c00150{left:519.933333pt;}
.x17_c00150{left:522.240000pt;}
.x87_c00150{left:524.546667pt;}
.xca_c00150{left:527.613333pt;}
.x3b_c00150{left:532.226667pt;}
.x6c_c00150{left:534.533333pt;}
.x23_c00150{left:537.600000pt;}
.xe9_c00150{left:539.133333pt;}
.x29_c00150{left:540.666667pt;}
.x65_c00150{left:542.973333pt;}
.x6d_c00150{left:546.053333pt;}
.xbb_c00150{left:547.586667pt;}
.x50_c00150{left:550.653333pt;}
.xb3_c00150{left:552.186667pt;}
.x5c_c00150{left:554.493333pt;}
.x43_c00150{left:557.573333pt;}
.xa6_c00150{left:559.106667pt;}
.x11_c00150{left:560.640000pt;}
.x80_c00150{left:565.253333pt;}
.x93_c00150{left:567.546667pt;}
.x9a_c00150{left:569.853333pt;}
.xa7_c00150{left:572.160000pt;}
.x72_c00150{left:573.693333pt;}
.xde_c00150{left:575.226667pt;}
.x32_c00150{left:576.773333pt;}
.x18_c00150{left:579.066667pt;}
.x66_c00150{left:580.613333pt;}
.xf6_c00150{left:582.146667pt;}
.xa2_c00150{left:584.453333pt;}
.x7b_c00150{left:587.520000pt;}
.x73_c00150{left:589.053333pt;}
.x1_c00150{left:591.360000pt;}
.x2a_c00150{left:595.200000pt;}
.x11b_c00150{left:598.266667pt;}
.x9_c00150{left:602.880000pt;}
.x115_c00150{left:604.413333pt;}
.xd5_c00150{left:605.946667pt;}
.x12_c00150{left:607.493333pt;}
.x49_c00150{left:609.786667pt;}
.xea_c00150{left:612.093333pt;}
.x24_c00150{left:614.400000pt;}
.xb4_c00150{left:616.706667pt;}
.x81_c00150{left:619.013333pt;}
.xa8_c00150{left:624.386667pt;}
.xb8_c00150{left:625.920000pt;}
.x9b_c00150{left:628.226667pt;}
.x2b_c00150{left:629.760000pt;}
.x5d_c00150{left:632.826667pt;}
.xa_c00150{left:634.373333pt;}
.xaf_c00150{left:637.440000pt;}
.x94_c00150{left:639.746667pt;}
.x51_c00150{left:641.280000pt;}
.x19_c00150{left:643.586667pt;}
.x7c_c00150{left:645.120000pt;}
.x3c_c00150{left:646.653333pt;}
.xeb_c00150{left:649.733333pt;}
.xcf_c00150{left:654.333333pt;}
.x3d_c00150{left:655.866667pt;}
.x2_c00150{left:658.173333pt;}
.x44_c00150{left:660.480000pt;}
.x52_c00150{left:662.013333pt;}
.x95_c00150{left:665.093333pt;}
.x7d_c00150{left:666.626667pt;}
.x116_c00150{left:668.160000pt;}
.x74_c00150{left:671.226667pt;}
.xd0_c00150{left:672.773333pt;}
.x25_c00150{left:675.840000pt;}
.x8b_c00150{left:677.373333pt;}
.x67_c00150{left:680.453333pt;}
.x4a_c00150{left:683.520000pt;}
.x6e_c00150{left:686.586667pt;}
.x75_c00150{left:688.893333pt;}
.xd6_c00150{left:690.426667pt;}
.xa3_c00150{left:692.733333pt;}
.x1a_c00150{left:695.040000pt;}
.x9c_c00150{left:697.346667pt;}
.xa9_c00150{left:701.186667pt;}
.x5e_c00150{left:703.493333pt;}
.x1b_c00150{left:705.786667pt;}
.x9d_c00150{left:708.093333pt;}
.x33_c00150{left:709.626667pt;}
.x13_c00150{left:711.173333pt;}
.xb5_c00150{left:714.240000pt;}
.x4b_c00150{left:715.773333pt;}
.x2c_c00150{left:718.080000pt;}
.x82_c00150{left:721.146667pt;}
.x3e_c00150{left:722.693333pt;}
.x8c_c00150{left:724.986667pt;}
.x26_c00150{left:726.533333pt;}
.x53_c00150{left:729.600000pt;}
.xf7_c00150{left:731.906667pt;}
.x57_c00150{left:738.053333pt;}
.xcb_c00150{left:739.586667pt;}
.x7e_c00150{left:741.120000pt;}
.xb9_c00150{left:743.426667pt;}
.x5f_c00150{left:744.960000pt;}
.xd7_c00150{left:747.266667pt;}
.x45_c00150{left:750.333333pt;}
.x8d_c00150{left:751.866667pt;}
.x68_c00150{left:753.413333pt;}
.x79_c00150{left:754.946667pt;}
.x34_c00150{left:759.546667pt;}
.xd1_c00150{left:763.386667pt;}
.x10f_c00150{left:764.933333pt;}
.xfd_c00150{left:767.226667pt;}
.x54_c00150{left:771.066667pt;}
.x117_c00150{left:775.680000pt;}
.x8e_c00150{left:777.986667pt;}
.xc2_c00150{left:779.520000pt;}
.x60_c00150{left:788.733333pt;}
.xba_c00150{left:798.720000pt;}
.x9e_c00150{left:802.560000pt;}
.x35_c00150{left:805.626667pt;}
.x9f_c00150{left:814.080000pt;}
.x127_c00150{left:930.813333pt;}
.x128_c00150{left:941.573333pt;}
.x124_c00150{left:944.640000pt;}
.x123_c00150{left:952.320000pt;}
.x125_c00150{left:954.626667pt;}
.x126_c00150{left:962.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4cfdbfeedd4dd8b50c221b23.woff2')format("woff");}.ff1_c00151{font-family:ff1_c00151;line-height:1.109863;font-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.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m123_c00151{transform:matrix(0.079350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079350,0.000000,0.000000,0.250000,0,0);}
.mf6_c00151{transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);}
.mbd_c00151{transform:matrix(0.086200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086200,0.000000,0.000000,0.250000,0,0);}
.m112_c00151{transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);}
.m128_c00151{transform:matrix(0.094100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094100,0.000000,0.000000,0.250000,0,0);}
.m7_c00151{transform:matrix(0.095600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095600,0.000000,0.000000,0.250000,0,0);}
.m14a_c00151{transform:matrix(0.096625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096625,0.000000,0.000000,0.250000,0,0);}
.m104_c00151{transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);}
.m13b_c00151{transform:matrix(0.103325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103325,0.000000,0.000000,0.250000,0,0);}
.m137_c00151{transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103750,0.000000,0.000000,0.250000,0,0);}
.mc1_c00151{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m6e_c00151{transform:matrix(0.104800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104800,0.000000,0.000000,0.250000,0,0);}
.m121_c00151{transform:matrix(0.105125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105125,0.000000,0.000000,0.250000,0,0);}
.m109_c00151{transform:matrix(0.106450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106450,0.000000,0.000000,0.250000,0,0);}
.mcf_c00151{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m120_c00151{transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);}
.m103_c00151{transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);}
.m62_c00151{transform:matrix(0.118925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118925,0.000000,0.000000,0.250000,0,0);}
.mbe_c00151{transform:matrix(0.120825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120825,0.000000,0.000000,0.250000,0,0);}
.m148_c00151{transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);}
.m5a_c00151{transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);}
.m4c_c00151{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);}
.m66_c00151{transform:matrix(0.123700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123700,0.000000,0.000000,0.250000,0,0);}
.mcd_c00151{transform:matrix(0.123825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123825,0.000000,0.000000,0.250000,0,0);}
.m107_c00151{transform:matrix(0.124050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124050,0.000000,0.000000,0.250000,0,0);}
.m101_c00151{transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00151{transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);}
.me3_c00151{transform:matrix(0.127200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127200,0.000000,0.000000,0.250000,0,0);}
.m130_c00151{transform:matrix(0.127950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127950,0.000000,0.000000,0.250000,0,0);}
.m14d_c00151{transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);}
.m11f_c00151{transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);}
.m11a_c00151{transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);}
.m42_c00151{transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);}
.md1_c00151{transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);}
.m14b_c00151{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m122_c00151{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.mce_c00151{transform:matrix(0.133200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133200,0.000000,0.000000,0.250000,0,0);}
.m142_c00151{transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);}
.m10a_c00151{transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);}
.m49_c00151{transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);}
.med_c00151{transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);}
.mb1_c00151{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);}
.m139_c00151{transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);}
.m13a_c00151{transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);}
.m94_c00151{transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);}
.m106_c00151{transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);}
.md6_c00151{transform:matrix(0.138100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138100,0.000000,0.000000,0.250000,0,0);}
.m136_c00151{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);}
.m12f_c00151{transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);}
.m143_c00151{transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);}
.m40_c00151{transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);}
.m114_c00151{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);}
.m64_c00151{transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);}
.m111_c00151{transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);}
.m18_c00151{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m55_c00151{transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);}
.m11c_c00151{transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);}
.m124_c00151{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);}
.m10e_c00151{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.m10d_c00151{transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);}
.m7a_c00151{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m115_c00151{transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);}
.m146_c00151{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);}
.m14e_c00151{transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);}
.mee_c00151{transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);}
.m145_c00151{transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);}
.m11e_c00151{transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);}
.m10c_c00151{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);}
.m129_c00151{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m21_c00151{transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);}
.m9e_c00151{transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);}
.m37_c00151{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.mb3_c00151{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m10b_c00151{transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);}
.mf5_c00151{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.m39_c00151{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.m14_c00151{transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);}
.m149_c00151{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);}
.mb9_c00151{transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);}
.m82_c00151{transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);}
.m132_c00151{transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);}
.mdd_c00151{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.m4f_c00151{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.m7c_c00151{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.m135_c00151{transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);}
.m13d_c00151{transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);}
.m6a_c00151{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);}
.m59_c00151{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.ma_c00151{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.m76_c00151{transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);}
.maf_c00151{transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);}
.mf1_c00151{transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);}
.m7f_c00151{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);}
.m1d_c00151{transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);}
.mba_c00151{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.mcc_c00151{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.me9_c00151{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.m4b_c00151{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m7e_c00151{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00151{transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);}
.m12a_c00151{transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);}
.m1e_c00151{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.mc_c00151{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.m77_c00151{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);}
.m45_c00151{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m43_c00151{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.mb5_c00151{transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);}
.mec_c00151{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m108_c00151{transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);}
.md4_c00151{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m65_c00151{transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);}
.m11d_c00151{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);}
.m100_c00151{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.m7d_c00151{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.mfa_c00151{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.md5_c00151{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m52_c00151{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.md0_c00151{transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);}
.m117_c00151{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m74_c00151{transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);}
.m60_c00151{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.me1_c00151{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.m9a_c00151{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.me2_c00151{transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);}
.m54_c00151{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m78_c00151{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m96_c00151{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m9d_c00151{transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);}
.m10f_c00151{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m48_c00151{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.m75_c00151{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.m138_c00151{transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);}
.m32_c00151{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m6b_c00151{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.m61_c00151{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00151{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);}
.m141_c00151{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);}
.m8_c00151{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.mb0_c00151{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m6_c00151{transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);}
.mc3_c00151{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m11b_c00151{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);}
.m46_c00151{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.mb4_c00151{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.mf7_c00151{transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);}
.m89_c00151{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);}
.m118_c00151{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m8f_c00151{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.mde_c00151{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m7b_c00151{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);}
.me4_c00151{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m24_c00151{transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);}
.mb7_c00151{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.mb_c00151{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m110_c00151{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.m93_c00151{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.m25_c00151{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.m9_c00151{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);}
.m119_c00151{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.m83_c00151{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);}
.m70_c00151{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);}
.mdb_c00151{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);}
.m72_c00151{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m125_c00151{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m56_c00151{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.mea_c00151{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.m22_c00151{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m2c_c00151{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);}
.m113_c00151{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.m2f_c00151{transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);}
.m90_c00151{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.m69_c00151{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);}
.m9c_c00151{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.md2_c00151{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m12d_c00151{transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);}
.m131_c00151{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m5c_c00151{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);}
.mfb_c00151{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.mca_c00151{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.m11_c00151{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);}
.m3a_c00151{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.m14c_c00151{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);}
.m68_c00151{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);}
.m67_c00151{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.mbb_c00151{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.mf0_c00151{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);}
.ma8_c00151{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.me0_c00151{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);}
.m34_c00151{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);}
.m102_c00151{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);}
.ma5_c00151{transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);}
.ma3_c00151{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.m2a_c00151{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);}
.m28_c00151{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);}
.m13_c00151{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m27_c00151{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mc7_c00151{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.mc0_c00151{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.m9f_c00151{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);}
.md8_c00151{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.m57_c00151{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);}
.mbf_c00151{transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);}
.mc9_c00151{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.m8e_c00151{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.m12_c00151{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.me_c00151{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.m17_c00151{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);}
.m29_c00151{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);}
.m58_c00151{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m133_c00151{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);}
.mbc_c00151{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);}
.ma2_c00151{transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);}
.m35_c00151{transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);}
.m105_c00151{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m84_c00151{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);}
.m3b_c00151{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);}
.ma0_c00151{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);}
.m87_c00151{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.mdc_c00151{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);}
.m41_c00151{transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);}
.m13e_c00151{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);}
.m51_c00151{transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);}
.m53_c00151{transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);}
.m150_c00151{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.mcb_c00151{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00151{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);}
.m4e_c00151{transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);}
.m3c_c00151{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);}
.m1b_c00151{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);}
.ma1_c00151{transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);}
.me5_c00151{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00151{transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);}
.me7_c00151{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m92_c00151{transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);}
.m144_c00151{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.m5d_c00151{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00151{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);}
.mae_c00151{transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);}
.ma7_c00151{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.mf8_c00151{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);}
.m36_c00151{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);}
.ma6_c00151{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);}
.m2e_c00151{transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);}
.m38_c00151{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);}
.m16_c00151{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m14f_c00151{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m5e_c00151{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);}
.mab_c00151{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);}
.m79_c00151{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);}
.mc8_c00151{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);}
.mff_c00151{transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);}
.mb6_c00151{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);}
.mef_c00151{transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);}
.m73_c00151{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);}
.m50_c00151{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);}
.m47_c00151{transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);}
.m86_c00151{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m33_c00151{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m1a_c00151{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);}
.me8_c00151{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);}
.mdf_c00151{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.m13c_c00151{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);}
.m26_c00151{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);}
.m1c_c00151{transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);}
.md9_c00151{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);}
.md3_c00151{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_c00151{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m13f_c00151{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m31_c00151{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);}
.m140_c00151{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m20_c00151{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);}
.m6f_c00151{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m81_c00151{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);}
.m5b_c00151{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);}
.m30_c00151{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m71_c00151{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00151{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00151{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);}
.m2b_c00151{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me6_c00151{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);}
.mc2_c00151{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);}
.m80_c00151{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m88_c00151{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);}
.m1_c00151{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00151{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00151{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00151{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);}
.m15_c00151{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);}
.m23_c00151{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mda_c00151{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);}
.maa_c00151{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m85_c00151{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00151{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00151{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00151{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m91_c00151{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00151{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00151{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);}
.m3d_c00151{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00151{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c00151{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m134_c00151{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00151{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);}
.m5_c00151{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m99_c00151{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md7_c00151{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m98_c00151{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);}
.m12c_c00151{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mf_c00151{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00151{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m151_c00151{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mf2_c00151{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);}
.m44_c00151{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);}
.m2_c00151{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00151{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);}
.m152_c00151{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00151{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00151{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00151{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m153_c00151{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4_c00151{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mad_c00151{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m97_c00151{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m63_c00151{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mac_c00151{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m155_c00151{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m154_c00151{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00151{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m126_c00151{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m127_c00151{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m116_c00151{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m3_c00151{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00151{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00151{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m156_c00151{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m95_c00151{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.meb_c00151{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00151{transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00151{transform:matrix(1.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.275000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00151{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m147_c00151{transform:matrix(1.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.875000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00151{transform:matrix(4.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.015000,0.000000,0.000000,0.250000,0,0);}
.v2_c00151{vertical-align:-13.800000px;}
.v1_c00151{vertical-align:-3.480000px;}
.v0_c00151{vertical-align:0.000000px;}
.v3_c00151{vertical-align:10.320000px;}
.ls3_c00151{letter-spacing:0.000000px;}
.ls1_c00151{letter-spacing:23.001300px;}
.ls2_c00151{letter-spacing:39.226740px;}
.ls0_c00151{letter-spacing:168.873000px;}
.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:-2.766840px;}
.ws1_c00151{word-spacing:0.000000px;}
.fc0_c00151{color:transparent;}
.fs1e_c00151{font-size:3.456000px;}
.fs0_c00151{font-size:6.000000px;}
.fs1f_c00151{font-size:6.900000px;}
.fs1b_c00151{font-size:10.380000px;}
.fs13_c00151{font-size:13.800000px;}
.fs1_c00151{font-size:17.280000px;}
.fs2_c00151{font-size:20.760000px;}
.fs1d_c00151{font-size:24.180000px;}
.fs23_c00151{font-size:27.660000px;}
.fs26_c00151{font-size:31.080000px;}
.fs25_c00151{font-size:34.560000px;}
.fs21_c00151{font-size:38.040000px;}
.fs1a_c00151{font-size:41.460000px;}
.fs22_c00151{font-size:44.940000px;}
.fs3_c00151{font-size:48.360000px;}
.fs4_c00151{font-size:51.840000px;}
.fs14_c00151{font-size:55.320000px;}
.fse_c00151{font-size:58.740000px;}
.fs18_c00151{font-size:62.220000px;}
.fsc_c00151{font-size:65.640000px;}
.fsf_c00151{font-size:69.120000px;}
.fs11_c00151{font-size:72.600000px;}
.fs12_c00151{font-size:76.020000px;}
.fs5_c00151{font-size:79.500000px;}
.fs15_c00151{font-size:82.920000px;}
.fs16_c00151{font-size:86.400000px;}
.fs19_c00151{font-size:89.880000px;}
.fsd_c00151{font-size:93.300000px;}
.fsa_c00151{font-size:96.780000px;}
.fs10_c00151{font-size:100.200000px;}
.fs17_c00151{font-size:103.680000px;}
.fs8_c00151{font-size:107.160000px;}
.fs7_c00151{font-size:110.580000px;}
.fs20_c00151{font-size:114.060000px;}
.fs6_c00151{font-size:117.480000px;}
.fs1c_c00151{font-size:120.960000px;}
.fsb_c00151{font-size:124.440000px;}
.fs27_c00151{font-size:127.860000px;}
.fs28_c00151{font-size:131.340000px;}
.fs24_c00151{font-size:134.760000px;}
.fs9_c00151{font-size:138.240000px;}
.fs29_c00151{font-size:179.700000px;}
.y0_c00151{bottom:0.000000px;}
.y16e_c00151{bottom:57.885000px;}
.y16d_c00151{bottom:63.075000px;}
.y16c_c00151{bottom:66.525000px;}
.y166_c00151{bottom:113.190000px;}
.y2_c00151{bottom:114.045000px;}
.y1_c00151{bottom:120.090000px;}
.y16b_c00151{bottom:130.470000px;}
.y165_c00151{bottom:131.325000px;}
.y16a_c00151{bottom:138.240000px;}
.y169_c00151{bottom:139.110000px;}
.y167_c00151{bottom:143.430000px;}
.y168_c00151{bottom:144.285000px;}
.y132_c00151{bottom:190.080000px;}
.y134_c00151{bottom:193.530000px;}
.y12e_c00151{bottom:196.995000px;}
.y133_c00151{bottom:203.040000px;}
.y130_c00151{bottom:209.955000px;}
.y131_c00151{bottom:211.680000px;}
.y12d_c00151{bottom:212.550000px;}
.y12c_c00151{bottom:213.405000px;}
.y12a_c00151{bottom:214.275000px;}
.y12b_c00151{bottom:215.130000px;}
.y129_c00151{bottom:216.000000px;}
.y12f_c00151{bottom:219.450000px;}
.y127_c00151{bottom:239.325000px;}
.y123_c00151{bottom:242.790000px;}
.y122_c00151{bottom:243.645000px;}
.y126_c00151{bottom:245.370000px;}
.y125_c00151{bottom:247.110000px;}
.y128_c00151{bottom:247.965000px;}
.y124_c00151{bottom:250.560000px;}
.y11f_c00151{bottom:254.880000px;}
.y121_c00151{bottom:255.750000px;}
.y120_c00151{bottom:257.475000px;}
.y11b_c00151{bottom:265.245000px;}
.y11d_c00151{bottom:266.115000px;}
.y118_c00151{bottom:266.970000px;}
.y116_c00151{bottom:268.710000px;}
.y119_c00151{bottom:269.565000px;}
.y11e_c00151{bottom:270.435000px;}
.y114_c00151{bottom:271.290000px;}
.y11a_c00151{bottom:272.160000px;}
.y117_c00151{bottom:273.030000px;}
.y11c_c00151{bottom:273.885000px;}
.y115_c00151{bottom:274.755000px;}
.y112_c00151{bottom:284.250000px;}
.y110_c00151{bottom:285.990000px;}
.y10f_c00151{bottom:287.715000px;}
.y111_c00151{bottom:288.570000px;}
.y10e_c00151{bottom:290.310000px;}
.y113_c00151{bottom:298.080000px;}
.y10d_c00151{bottom:314.490000px;}
.y10b_c00151{bottom:318.810000px;}
.y109_c00151{bottom:320.550000px;}
.y10a_c00151{bottom:323.130000px;}
.y10c_c00151{bottom:324.000000px;}
.y108_c00151{bottom:327.450000px;}
.yfe_c00151{bottom:343.875000px;}
.y100_c00151{bottom:344.730000px;}
.yfa_c00151{bottom:345.600000px;}
.yff_c00151{bottom:346.470000px;}
.yfd_c00151{bottom:347.325000px;}
.y103_c00151{bottom:348.195000px;}
.y102_c00151{bottom:349.050000px;}
.y104_c00151{bottom:349.920000px;}
.yf9_c00151{bottom:350.790000px;}
.yfb_c00151{bottom:351.645000px;}
.yfc_c00151{bottom:352.515000px;}
.y105_c00151{bottom:353.370000px;}
.y101_c00151{bottom:354.240000px;}
.y106_c00151{bottom:355.110000px;}
.y107_c00151{bottom:356.835000px;}
.yf4_c00151{bottom:364.605000px;}
.yf5_c00151{bottom:365.475000px;}
.yf3_c00151{bottom:366.330000px;}
.yf7_c00151{bottom:368.070000px;}
.yf1_c00151{bottom:368.925000px;}
.yf8_c00151{bottom:370.650000px;}
.yf2_c00151{bottom:373.245000px;}
.yf0_c00151{bottom:377.565000px;}
.yf6_c00151{bottom:379.290000px;}
.yed_c00151{bottom:389.670000px;}
.yec_c00151{bottom:391.395000px;}
.yea_c00151{bottom:392.250000px;}
.ye9_c00151{bottom:393.120000px;}
.yef_c00151{bottom:393.990000px;}
.ye8_c00151{bottom:396.570000px;}
.yeb_c00151{bottom:400.035000px;}
.yee_c00151{bottom:402.630000px;}
.ye6_c00151{bottom:415.590000px;}
.ye2_c00151{bottom:419.040000px;}
.ye4_c00151{bottom:419.910000px;}
.ydf_c00151{bottom:420.765000px;}
.ye7_c00151{bottom:421.635000px;}
.ye1_c00151{bottom:422.490000px;}
.ye5_c00151{bottom:424.230000px;}
.ye3_c00151{bottom:425.085000px;}
.ye0_c00151{bottom:426.810000px;}
.yde_c00151{bottom:437.190000px;}
.ydd_c00151{bottom:441.510000px;}
.yda_c00151{bottom:447.555000px;}
.ydc_c00151{bottom:449.280000px;}
.yd9_c00151{bottom:451.875000px;}
.ydb_c00151{bottom:452.730000px;}
.yd7_c00151{bottom:465.690000px;}
.yd5_c00151{bottom:467.430000px;}
.yd6_c00151{bottom:468.285000px;}
.yd4_c00151{bottom:471.750000px;}
.yd2_c00151{bottom:472.605000px;}
.yd0_c00151{bottom:473.475000px;}
.yd3_c00151{bottom:476.070000px;}
.yd1_c00151{bottom:477.795000px;}
.ycf_c00151{bottom:478.650000px;}
.yd8_c00151{bottom:485.565000px;}
.ycc_c00151{bottom:489.885000px;}
.ycb_c00151{bottom:490.755000px;}
.yca_c00151{bottom:492.480000px;}
.yce_c00151{bottom:493.350000px;}
.yc8_c00151{bottom:494.205000px;}
.yc7_c00151{bottom:495.075000px;}
.ycd_c00151{bottom:495.930000px;}
.yc9_c00151{bottom:501.120000px;}
.yc3_c00151{bottom:516.675000px;}
.yc4_c00151{bottom:517.530000px;}
.yc1_c00151{bottom:518.400000px;}
.yc5_c00151{bottom:519.270000px;}
.ybe_c00151{bottom:520.125000px;}
.yc0_c00151{bottom:521.850000px;}
.yc2_c00151{bottom:522.720000px;}
.ybf_c00151{bottom:524.445000px;}
.ybd_c00151{bottom:527.040000px;}
.yc6_c00151{bottom:532.230000px;}
.ybc_c00151{bottom:541.725000px;}
.yba_c00151{bottom:543.450000px;}
.ybb_c00151{bottom:544.320000px;}
.yb9_c00151{bottom:545.190000px;}
.yb8_c00151{bottom:546.045000px;}
.yb6_c00151{bottom:547.770000px;}
.yb5_c00151{bottom:550.365000px;}
.yb4_c00151{bottom:551.235000px;}
.yb3_c00151{bottom:552.090000px;}
.yb2_c00151{bottom:552.960000px;}
.yb1_c00151{bottom:553.830000px;}
.yb7_c00151{bottom:564.195000px;}
.yae_c00151{bottom:565.920000px;}
.yad_c00151{bottom:566.790000px;}
.yaf_c00151{bottom:567.645000px;}
.yb0_c00151{bottom:569.370000px;}
.yab_c00151{bottom:571.110000px;}
.yaa_c00151{bottom:572.835000px;}
.ya9_c00151{bottom:573.690000px;}
.yac_c00151{bottom:577.155000px;}
.ya7_c00151{bottom:591.840000px;}
.ya8_c00151{bottom:593.565000px;}
.ya6_c00151{bottom:595.290000px;}
.ya5_c00151{bottom:596.160000px;}
.ya4_c00151{bottom:600.480000px;}
.ya3_c00151{bottom:609.120000px;}
.ya2_c00151{bottom:612.570000px;}
.y9f_c00151{bottom:617.760000px;}
.y9d_c00151{bottom:619.485000px;}
.y9c_c00151{bottom:621.210000px;}
.ya0_c00151{bottom:622.080000px;}
.y98_c00151{bottom:623.805000px;}
.y9e_c00151{bottom:626.400000px;}
.y9b_c00151{bottom:627.270000px;}
.y99_c00151{bottom:628.125000px;}
.y9a_c00151{bottom:628.995000px;}
.ya1_c00151{bottom:637.635000px;}
.y97_c00151{bottom:642.810000px;}
.y96_c00151{bottom:644.550000px;}
.y95_c00151{bottom:647.130000px;}
.y92_c00151{bottom:648.000000px;}
.y90_c00151{bottom:648.870000px;}
.y94_c00151{bottom:649.725000px;}
.y8f_c00151{bottom:651.450000px;}
.y93_c00151{bottom:653.190000px;}
.y91_c00151{bottom:654.045000px;}
.y8e_c00151{bottom:668.730000px;}
.y8b_c00151{bottom:670.470000px;}
.y8a_c00151{bottom:671.325000px;}
.y8d_c00151{bottom:675.645000px;}
.y8c_c00151{bottom:677.370000px;}
.y88_c00151{bottom:691.200000px;}
.y84_c00151{bottom:695.520000px;}
.y89_c00151{bottom:698.115000px;}
.y83_c00151{bottom:698.970000px;}
.y87_c00151{bottom:700.710000px;}
.y86_c00151{bottom:701.565000px;}
.y85_c00151{bottom:702.435000px;}
.y81_c00151{bottom:714.525000px;}
.y80_c00151{bottom:717.990000px;}
.y7d_c00151{bottom:720.570000px;}
.y7f_c00151{bottom:721.440000px;}
.y82_c00151{bottom:722.310000px;}
.y7e_c00151{bottom:728.355000px;}
.y7c_c00151{bottom:731.805000px;}
.y7a_c00151{bottom:741.315000px;}
.y79_c00151{bottom:745.635000px;}
.y78_c00151{bottom:746.490000px;}
.y7b_c00151{bottom:748.230000px;}
.y77_c00151{bottom:749.085000px;}
.y75_c00151{bottom:749.955000px;}
.y76_c00151{bottom:754.275000px;}
.y73_c00151{bottom:766.365000px;}
.y72_c00151{bottom:768.090000px;}
.y6d_c00151{bottom:769.830000px;}
.y71_c00151{bottom:770.685000px;}
.y74_c00151{bottom:772.410000px;}
.y6e_c00151{bottom:773.280000px;}
.y70_c00151{bottom:774.150000px;}
.y6f_c00151{bottom:775.005000px;}
.y6c_c00151{bottom:779.325000px;}
.y6a_c00151{bottom:789.690000px;}
.y69_c00151{bottom:791.430000px;}
.y68_c00151{bottom:792.285000px;}
.y67_c00151{bottom:793.155000px;}
.y65_c00151{bottom:794.010000px;}
.y64_c00151{bottom:794.880000px;}
.y6b_c00151{bottom:796.605000px;}
.y66_c00151{bottom:801.795000px;}
.y62_c00151{bottom:814.755000px;}
.y61_c00151{bottom:815.610000px;}
.y60_c00151{bottom:816.480000px;}
.y5f_c00151{bottom:817.350000px;}
.y5c_c00151{bottom:820.800000px;}
.y5d_c00151{bottom:822.525000px;}
.y5b_c00151{bottom:823.395000px;}
.y5e_c00151{bottom:824.250000px;}
.y59_c00151{bottom:825.990000px;}
.y5a_c00151{bottom:826.845000px;}
.y63_c00151{bottom:827.715000px;}
.y57_c00151{bottom:839.805000px;}
.y56_c00151{bottom:840.675000px;}
.y54_c00151{bottom:842.400000px;}
.y55_c00151{bottom:843.270000px;}
.y58_c00151{bottom:844.125000px;}
.y53_c00151{bottom:863.130000px;}
.y52_c00151{bottom:864.870000px;}
.y50_c00151{bottom:866.595000px;}
.y4e_c00151{bottom:867.450000px;}
.y4a_c00151{bottom:868.320000px;}
.y4b_c00151{bottom:869.190000px;}
.y4f_c00151{bottom:870.045000px;}
.y51_c00151{bottom:872.640000px;}
.y49_c00151{bottom:874.365000px;}
.y4d_c00151{bottom:875.235000px;}
.y4c_c00151{bottom:883.875000px;}
.y47_c00151{bottom:889.920000px;}
.y46_c00151{bottom:890.790000px;}
.y45_c00151{bottom:891.645000px;}
.y43_c00151{bottom:895.110000px;}
.y48_c00151{bottom:897.690000px;}
.y44_c00151{bottom:900.285000px;}
.y41_c00151{bottom:901.155000px;}
.y42_c00151{bottom:903.750000px;}
.y40_c00151{bottom:912.390000px;}
.y3e_c00151{bottom:914.970000px;}
.y3f_c00151{bottom:915.840000px;}
.y3d_c00151{bottom:916.710000px;}
.y3b_c00151{bottom:919.290000px;}
.y3a_c00151{bottom:920.160000px;}
.y3c_c00151{bottom:926.205000px;}
.y38_c00151{bottom:940.035000px;}
.y37_c00151{bottom:942.630000px;}
.y35_c00151{bottom:943.485000px;}
.y32_c00151{bottom:944.355000px;}
.y39_c00151{bottom:945.210000px;}
.y31_c00151{bottom:946.950000px;}
.y36_c00151{bottom:948.675000px;}
.y33_c00151{bottom:950.400000px;}
.y34_c00151{bottom:951.270000px;}
.y30_c00151{bottom:953.850000px;}
.y2e_c00151{bottom:965.085000px;}
.y2c_c00151{bottom:965.955000px;}
.y2a_c00151{bottom:966.810000px;}
.y27_c00151{bottom:968.550000px;}
.y29_c00151{bottom:972.000000px;}
.y2d_c00151{bottom:972.870000px;}
.y2b_c00151{bottom:974.595000px;}
.y28_c00151{bottom:975.450000px;}
.y26_c00151{bottom:978.045000px;}
.y2f_c00151{bottom:985.830000px;}
.y24_c00151{bottom:988.410000px;}
.y25_c00151{bottom:989.280000px;}
.y22_c00151{bottom:990.150000px;}
.y21_c00151{bottom:991.875000px;}
.y20_c00151{bottom:993.600000px;}
.y23_c00151{bottom:997.050000px;}
.y1f_c00151{bottom:999.645000px;}
.y1d_c00151{bottom:1016.070000px;}
.y1b_c00151{bottom:1016.925000px;}
.y19_c00151{bottom:1017.795000px;}
.y1e_c00151{bottom:1020.390000px;}
.y1a_c00151{bottom:1022.970000px;}
.y1c_c00151{bottom:1024.710000px;}
.y18_c00151{bottom:1040.250000px;}
.y16_c00151{bottom:1041.120000px;}
.y17_c00151{bottom:1043.715000px;}
.y13_c00151{bottom:1044.570000px;}
.y15_c00151{bottom:1048.890000px;}
.y12_c00151{bottom:1049.760000px;}
.y11_c00151{bottom:1051.485000px;}
.y14_c00151{bottom:1063.590000px;}
.y10_c00151{bottom:1065.315000px;}
.ye_c00151{bottom:1066.170000px;}
.yd_c00151{bottom:1067.040000px;}
.yf_c00151{bottom:1067.910000px;}
.yb_c00151{bottom:1071.360000px;}
.yc_c00151{bottom:1074.810000px;}
.ya_c00151{bottom:1075.680000px;}
.y8_c00151{bottom:1091.235000px;}
.y7_c00151{bottom:1092.090000px;}
.y6_c00151{bottom:1094.685000px;}
.y9_c00151{bottom:1095.555000px;}
.y4_c00151{bottom:1098.150000px;}
.y3_c00151{bottom:1099.005000px;}
.y5_c00151{bottom:1101.600000px;}
.y16f_c00151{bottom:1180.230000px;}
.y163_c00151{bottom:1251.075000px;}
.y161_c00151{bottom:1254.525000px;}
.y162_c00151{bottom:1257.120000px;}
.y164_c00151{bottom:1263.165000px;}
.y15f_c00151{bottom:1265.760000px;}
.y15e_c00151{bottom:1267.485000px;}
.y15a_c00151{bottom:1268.355000px;}
.y15b_c00151{bottom:1269.210000px;}
.y15c_c00151{bottom:1270.080000px;}
.y160_c00151{bottom:1271.805000px;}
.y15d_c00151{bottom:1276.125000px;}
.y158_c00151{bottom:1278.720000px;}
.y159_c00151{bottom:1280.445000px;}
.y157_c00151{bottom:1287.360000px;}
.y156_c00151{bottom:1291.680000px;}
.y155_c00151{bottom:1292.550000px;}
.y154_c00151{bottom:1294.275000px;}
.y153_c00151{bottom:1296.000000px;}
.y14e_c00151{bottom:1297.725000px;}
.y151_c00151{bottom:1298.595000px;}
.y14d_c00151{bottom:1301.190000px;}
.y14f_c00151{bottom:1302.915000px;}
.y152_c00151{bottom:1305.510000px;}
.y150_c00151{bottom:1307.235000px;}
.y14b_c00151{bottom:1316.730000px;}
.y14c_c00151{bottom:1317.600000px;}
.y14a_c00151{bottom:1318.470000px;}
.y149_c00151{bottom:1319.325000px;}
.y147_c00151{bottom:1320.195000px;}
.y146_c00151{bottom:1321.050000px;}
.y144_c00151{bottom:1323.645000px;}
.y145_c00151{bottom:1327.110000px;}
.y148_c00151{bottom:1331.430000px;}
.y142_c00151{bottom:1346.115000px;}
.y143_c00151{bottom:1347.840000px;}
.y13f_c00151{bottom:1348.710000px;}
.y140_c00151{bottom:1351.290000px;}
.y13c_c00151{bottom:1352.160000px;}
.y141_c00151{bottom:1353.885000px;}
.y13e_c00151{bottom:1354.755000px;}
.y13d_c00151{bottom:1355.610000px;}
.y13b_c00151{bottom:1370.310000px;}
.y13a_c00151{bottom:1378.080000px;}
.y139_c00151{bottom:1383.270000px;}
.y138_c00151{bottom:1385.850000px;}
.y137_c00151{bottom:1386.720000px;}
.y136_c00151{bottom:1387.590000px;}
.y135_c00151{bottom:1440.285000px;}
.h20_c00151{height:3.110063px;}
.h2_c00151{height:5.399414px;}
.h21_c00151{height:6.209326px;}
.h1d_c00151{height:9.340986px;}
.h15_c00151{height:12.418652px;}
.h3_c00151{height:15.550313px;}
.h4_c00151{height:18.681973px;}
.h2c_c00151{height:19.660986px;}
.h1f_c00151{height:21.759639px;}
.h25_c00151{height:24.891299px;}
.h28_c00151{height:27.968965px;}
.h27_c00151{height:31.100625px;}
.h23_c00151{height:34.232285px;}
.h1c_c00151{height:37.309951px;}
.h24_c00151{height:40.441611px;}
.h5_c00151{height:43.519277px;}
.h6_c00151{height:46.650937px;}
.h16_c00151{height:49.782598px;}
.h10_c00151{height:52.860264px;}
.h1a_c00151{height:55.991924px;}
.he_c00151{height:59.069590px;}
.h11_c00151{height:62.201250px;}
.h13_c00151{height:65.332910px;}
.h14_c00151{height:68.410576px;}
.h7_c00151{height:71.542236px;}
.h17_c00151{height:74.619902px;}
.h18_c00151{height:77.751563px;}
.h1b_c00151{height:80.883223px;}
.hf_c00151{height:83.960889px;}
.hc_c00151{height:87.092549px;}
.h12_c00151{height:90.170215px;}
.h19_c00151{height:93.301875px;}
.ha_c00151{height:96.433535px;}
.h9_c00151{height:99.511201px;}
.h22_c00151{height:102.642861px;}
.h8_c00151{height:105.720527px;}
.h1e_c00151{height:108.852188px;}
.hd_c00151{height:111.983848px;}
.h29_c00151{height:115.061514px;}
.h2a_c00151{height:118.193174px;}
.h26_c00151{height:121.270840px;}
.hb_c00151{height:124.402500px;}
.h2b_c00151{height:161.712451px;}
.h1_c00151{height:1502.250000px;}
.h0_c00151{height:1502.490000px;}
.w0_c00151{width:1111.965000px;}
.w1_c00151{width:1112.250000px;}
.x0_c00151{left:0.000000px;}
.x1_c00151{left:5.190000px;}
.x2_c00151{left:17.280000px;}
.xcf_c00151{left:171.930000px;}
.xd0_c00151{left:184.890000px;}
.x4b_c00151{left:196.995000px;}
.x43_c00151{left:202.170000px;}
.x80_c00151{left:206.490000px;}
.x67_c00151{left:213.405000px;}
.xa8_c00151{left:215.130000px;}
.x44_c00151{left:218.595000px;}
.x60_c00151{left:220.320000px;}
.x27_c00151{left:222.045000px;}
.x2e_c00151{left:224.640000px;}
.x91_c00151{left:226.365000px;}
.xb2_c00151{left:228.090000px;}
.x1f_c00151{left:229.830000px;}
.xc9_c00151{left:232.410000px;}
.x3_c00151{left:235.875000px;}
.x79_c00151{left:242.790000px;}
.xc5_c00151{left:246.240000px;}
.x2f_c00151{left:254.880000px;}
.x68_c00151{left:257.475000px;}
.x38_c00151{left:260.070000px;}
.x4_c00151{left:261.795000px;}
.x73_c00151{left:263.520000px;}
.xd9_c00151{left:266.970000px;}
.x69_c00151{left:276.480000px;}
.xae_c00151{left:278.205000px;}
.x54_c00151{left:281.670000px;}
.xdd_c00151{left:283.395000px;}
.x39_c00151{left:287.715000px;}
.x45_c00151{left:292.035000px;}
.x7d_c00151{left:297.210000px;}
.xc6_c00151{left:298.950000px;}
.xb3_c00151{left:304.995000px;}
.xa1_c00151{left:309.315000px;}
.xa9_c00151{left:312.765000px;}
.x6a_c00151{left:315.360000px;}
.xa6_c00151{left:317.085000px;}
.x6e_c00151{left:320.550000px;}
.xd1_c00151{left:322.275000px;}
.x61_c00151{left:325.725000px;}
.xde_c00151{left:327.450000px;}
.xda_c00151{left:332.640000px;}
.x20_c00151{left:334.365000px;}
.x5_c00151{left:336.960000px;}
.x15_c00151{left:338.685000px;}
.x7a_c00151{left:342.150000px;}
.x89_c00151{left:345.600000px;}
.x3a_c00151{left:347.325000px;}
.x30_c00151{left:349.050000px;}
.x6_c00151{left:352.515000px;}
.x4c_c00151{left:358.560000px;}
.xe_c00151{left:362.880000px;}
.xbf_c00151{left:364.605000px;}
.x7e_c00151{left:366.330000px;}
.x55_c00151{left:371.520000px;}
.x3b_c00151{left:375.840000px;}
.xaf_c00151{left:377.565000px;}
.x16_c00151{left:379.290000px;}
.x7_c00151{left:385.350000px;}
.xe6_c00151{left:388.800000px;}
.xb8_c00151{left:390.525000px;}
.xc7_c00151{left:392.250000px;}
.x31_c00151{left:394.845000px;}
.x9a_c00151{left:396.570000px;}
.x8_c00151{left:400.035000px;}
.x62_c00151{left:401.760000px;}
.xa2_c00151{left:403.485000px;}
.x46_c00151{left:405.210000px;}
.x21_c00151{left:410.400000px;}
.x92_c00151{left:412.125000px;}
.x56_c00151{left:415.590000px;}
.xaa_c00151{left:419.040000px;}
.x3c_c00151{left:420.765000px;}
.x9_c00151{left:422.490000px;}
.x4d_c00151{left:425.955000px;}
.x57_c00151{left:428.550000px;}
.x32_c00151{left:431.130000px;}
.x22_c00151{left:438.915000px;}
.x3d_c00151{left:440.640000px;}
.x6f_c00151{left:443.235000px;}
.x28_c00151{left:445.830000px;}
.x17_c00151{left:447.555000px;}
.xd4_c00151{left:451.005000px;}
.x63_c00151{left:453.600000px;}
.x81_c00151{left:457.920000px;}
.xb9_c00151{left:463.110000px;}
.x58_c00151{left:465.690000px;}
.xb4_c00151{left:467.430000px;}
.x8a_c00151{left:470.010000px;}
.xe3_c00151{left:473.475000px;}
.xf_c00151{left:475.200000px;}
.x23_c00151{left:481.245000px;}
.x4e_c00151{left:484.710000px;}
.x6b_c00151{left:486.435000px;}
.x70_c00151{left:488.160000px;}
.x82_c00151{left:489.885000px;}
.x33_c00151{left:492.480000px;}
.x10_c00151{left:495.075000px;}
.xe9_c00151{left:506.310000px;}
.xb5_c00151{left:510.630000px;}
.x83_c00151{left:515.805000px;}
.x18_c00151{left:518.400000px;}
.x59_c00151{left:520.995000px;}
.x19_c00151{left:522.720000px;}
.x11_c00151{left:525.315000px;}
.xab_c00151{left:527.040000px;}
.x90_c00151{left:528.765000px;}
.x47_c00151{left:530.490000px;}
.xcd_c00151{left:534.810000px;}
.xca_c00151{left:537.405000px;}
.x7b_c00151{left:540.870000px;}
.xa_c00151{left:543.450000px;}
.xd8_c00151{left:546.915000px;}
.x93_c00151{left:548.640000px;}
.x84_c00151{left:552.960000px;}
.x24_c00151{left:557.280000px;}
.x8b_c00151{left:560.730000px;}
.xdb_c00151{left:562.470000px;}
.x3e_c00151{left:565.050000px;}
.x29_c00151{left:569.370000px;}
.x74_c00151{left:574.560000px;}
.xc8_c00151{left:577.155000px;}
.xbc_c00151{left:578.880000px;}
.x8c_c00151{left:581.475000px;}
.xce_c00151{left:590.115000px;}
.xdf_c00151{left:591.840000px;}
.x71_c00151{left:594.435000px;}
.x5a_c00151{left:596.160000px;}
.xac_c00151{left:600.480000px;}
.xb_c00151{left:602.205000px;}
.xb6_c00151{left:604.800000px;}
.xa3_c00151{left:608.250000px;}
.x75_c00151{left:610.845000px;}
.xea_c00151{left:613.440000px;}
.x12_c00151{left:615.165000px;}
.x64_c00151{left:617.760000px;}
.x34_c00151{left:619.485000px;}
.xd5_c00151{left:625.530000px;}
.x5b_c00151{left:629.850000px;}
.x76_c00151{left:635.040000px;}
.xb0_c00151{left:636.765000px;}
.xd2_c00151{left:641.085000px;}
.x8d_c00151{left:643.680000px;}
.xcb_c00151{left:645.405000px;}
.x1a_c00151{left:648.000000px;}
.x86_c00151{left:650.595000px;}
.xc0_c00151{left:652.320000px;}
.xb7_c00151{left:654.045000px;}
.x3f_c00151{left:658.365000px;}
.xad_c00151{left:661.830000px;}
.x25_c00151{left:666.150000px;}
.x87_c00151{left:668.730000px;}
.xc1_c00151{left:671.325000px;}
.x4f_c00151{left:674.790000px;}
.x77_c00151{left:676.515000px;}
.x65_c00151{left:681.690000px;}
.x94_c00151{left:683.430000px;}
.x1b_c00151{left:690.330000px;}
.x7f_c00151{left:692.925000px;}
.x8f_c00151{left:694.650000px;}
.x9b_c00151{left:696.390000px;}
.x35_c00151{left:702.435000px;}
.x95_c00151{left:705.030000px;}
.xc2_c00151{left:706.755000px;}
.x5c_c00151{left:708.480000px;}
.xc_c00151{left:710.205000px;}
.xe0_c00151{left:712.800000px;}
.x1c_c00151{left:716.250000px;}
.x2a_c00151{left:718.845000px;}
.x9f_c00151{left:722.310000px;}
.x13_c00151{left:724.035000px;}
.x48_c00151{left:725.760000px;}
.xe4_c00151{left:730.080000px;}
.xc3_c00151{left:732.675000px;}
.xd_c00151{left:735.270000px;}
.x5d_c00151{left:737.850000px;}
.xb1_c00151{left:741.315000px;}
.x40_c00151{left:743.040000px;}
.xe7_c00151{left:747.360000px;}
.xd6_c00151{left:749.085000px;}
.xdc_c00151{left:750.810000px;}
.x9c_c00151{left:752.550000px;}
.x88_c00151{left:756.000000px;}
.x50_c00151{left:757.725000px;}
.x1d_c00151{left:759.450000px;}
.x96_c00151{left:763.770000px;}
.xe1_c00151{left:767.235000px;}
.x49_c00151{left:769.830000px;}
.x2b_c00151{left:771.555000px;}
.x6c_c00151{left:773.280000px;}
.x41_c00151{left:775.005000px;}
.xe8_c00151{left:777.600000px;}
.x9d_c00151{left:782.790000px;}
.xa0_c00151{left:784.515000px;}
.x36_c00151{left:787.965000px;}
.x1e_c00151{left:792.285000px;}
.x51_c00151{left:799.200000px;}
.xe5_c00151{left:800.925000px;}
.xe2_c00151{left:806.115000px;}
.x26_c00151{left:808.710000px;}
.x7c_c00151{left:810.435000px;}
.x72_c00151{left:813.885000px;}
.x5e_c00151{left:816.480000px;}
.x97_c00151{left:819.075000px;}
.x14_c00151{left:822.525000px;}
.xc4_c00151{left:825.990000px;}
.x85_c00151{left:827.715000px;}
.x8e_c00151{left:830.310000px;}
.x78_c00151{left:834.630000px;}
.xbd_c00151{left:837.210000px;}
.xd3_c00151{left:838.950000px;}
.x66_c00151{left:844.125000px;}
.x4a_c00151{left:845.850000px;}
.xbe_c00151{left:852.765000px;}
.xba_c00151{left:857.085000px;}
.x37_c00151{left:860.550000px;}
.xbb_c00151{left:864.870000px;}
.xd7_c00151{left:866.595000px;}
.x52_c00151{left:868.320000px;}
.x6d_c00151{left:870.045000px;}
.x5f_c00151{left:872.640000px;}
.x42_c00151{left:875.235000px;}
.xcc_c00151{left:876.960000px;}
.x2c_c00151{left:880.410000px;}
.x53_c00151{left:883.005000px;}
.x98_c00151{left:887.325000px;}
.x2d_c00151{left:890.790000px;}
.x9e_c00151{left:893.370000px;}
.x99_c00151{left:898.560000px;}
.xa4_c00151{left:909.795000px;}
.xa7_c00151{left:913.245000px;}
.xa5_c00151{left:923.610000px;}
@media print{
.v2_c00151{vertical-align:-12.266667pt;}
.v1_c00151{vertical-align:-3.093333pt;}
.v0_c00151{vertical-align:0.000000pt;}
.v3_c00151{vertical-align:9.173333pt;}
.ls3_c00151{letter-spacing:0.000000pt;}
.ls1_c00151{letter-spacing:20.445600pt;}
.ls2_c00151{letter-spacing:34.868213pt;}
.ls0_c00151{letter-spacing:150.109333pt;}
.ws0_c00151{word-spacing:-2.459413pt;}
.ws1_c00151{word-spacing:0.000000pt;}
.fs1e_c00151{font-size:3.072000pt;}
.fs0_c00151{font-size:5.333333pt;}
.fs1f_c00151{font-size:6.133333pt;}
.fs1b_c00151{font-size:9.226667pt;}
.fs13_c00151{font-size:12.266667pt;}
.fs1_c00151{font-size:15.360000pt;}
.fs2_c00151{font-size:18.453333pt;}
.fs1d_c00151{font-size:21.493333pt;}
.fs23_c00151{font-size:24.586667pt;}
.fs26_c00151{font-size:27.626667pt;}
.fs25_c00151{font-size:30.720000pt;}
.fs21_c00151{font-size:33.813333pt;}
.fs1a_c00151{font-size:36.853333pt;}
.fs22_c00151{font-size:39.946667pt;}
.fs3_c00151{font-size:42.986667pt;}
.fs4_c00151{font-size:46.080000pt;}
.fs14_c00151{font-size:49.173333pt;}
.fse_c00151{font-size:52.213333pt;}
.fs18_c00151{font-size:55.306667pt;}
.fsc_c00151{font-size:58.346667pt;}
.fsf_c00151{font-size:61.440000pt;}
.fs11_c00151{font-size:64.533333pt;}
.fs12_c00151{font-size:67.573333pt;}
.fs5_c00151{font-size:70.666667pt;}
.fs15_c00151{font-size:73.706667pt;}
.fs16_c00151{font-size:76.800000pt;}
.fs19_c00151{font-size:79.893333pt;}
.fsd_c00151{font-size:82.933333pt;}
.fsa_c00151{font-size:86.026667pt;}
.fs10_c00151{font-size:89.066667pt;}
.fs17_c00151{font-size:92.160000pt;}
.fs8_c00151{font-size:95.253333pt;}
.fs7_c00151{font-size:98.293333pt;}
.fs20_c00151{font-size:101.386667pt;}
.fs6_c00151{font-size:104.426667pt;}
.fs1c_c00151{font-size:107.520000pt;}
.fsb_c00151{font-size:110.613333pt;}
.fs27_c00151{font-size:113.653333pt;}
.fs28_c00151{font-size:116.746667pt;}
.fs24_c00151{font-size:119.786667pt;}
.fs9_c00151{font-size:122.880000pt;}
.fs29_c00151{font-size:159.733333pt;}
.y0_c00151{bottom:0.000000pt;}
.y16e_c00151{bottom:51.453333pt;}
.y16d_c00151{bottom:56.066667pt;}
.y16c_c00151{bottom:59.133333pt;}
.y166_c00151{bottom:100.613333pt;}
.y2_c00151{bottom:101.373333pt;}
.y1_c00151{bottom:106.746667pt;}
.y16b_c00151{bottom:115.973333pt;}
.y165_c00151{bottom:116.733333pt;}
.y16a_c00151{bottom:122.880000pt;}
.y169_c00151{bottom:123.653333pt;}
.y167_c00151{bottom:127.493333pt;}
.y168_c00151{bottom:128.253333pt;}
.y132_c00151{bottom:168.960000pt;}
.y134_c00151{bottom:172.026667pt;}
.y12e_c00151{bottom:175.106667pt;}
.y133_c00151{bottom:180.480000pt;}
.y130_c00151{bottom:186.626667pt;}
.y131_c00151{bottom:188.160000pt;}
.y12d_c00151{bottom:188.933333pt;}
.y12c_c00151{bottom:189.693333pt;}
.y12a_c00151{bottom:190.466667pt;}
.y12b_c00151{bottom:191.226667pt;}
.y129_c00151{bottom:192.000000pt;}
.y12f_c00151{bottom:195.066667pt;}
.y127_c00151{bottom:212.733333pt;}
.y123_c00151{bottom:215.813333pt;}
.y122_c00151{bottom:216.573333pt;}
.y126_c00151{bottom:218.106667pt;}
.y125_c00151{bottom:219.653333pt;}
.y128_c00151{bottom:220.413333pt;}
.y124_c00151{bottom:222.720000pt;}
.y11f_c00151{bottom:226.560000pt;}
.y121_c00151{bottom:227.333333pt;}
.y120_c00151{bottom:228.866667pt;}
.y11b_c00151{bottom:235.773333pt;}
.y11d_c00151{bottom:236.546667pt;}
.y118_c00151{bottom:237.306667pt;}
.y116_c00151{bottom:238.853333pt;}
.y119_c00151{bottom:239.613333pt;}
.y11e_c00151{bottom:240.386667pt;}
.y114_c00151{bottom:241.146667pt;}
.y11a_c00151{bottom:241.920000pt;}
.y117_c00151{bottom:242.693333pt;}
.y11c_c00151{bottom:243.453333pt;}
.y115_c00151{bottom:244.226667pt;}
.y112_c00151{bottom:252.666667pt;}
.y110_c00151{bottom:254.213333pt;}
.y10f_c00151{bottom:255.746667pt;}
.y111_c00151{bottom:256.506667pt;}
.y10e_c00151{bottom:258.053333pt;}
.y113_c00151{bottom:264.960000pt;}
.y10d_c00151{bottom:279.546667pt;}
.y10b_c00151{bottom:283.386667pt;}
.y109_c00151{bottom:284.933333pt;}
.y10a_c00151{bottom:287.226667pt;}
.y10c_c00151{bottom:288.000000pt;}
.y108_c00151{bottom:291.066667pt;}
.yfe_c00151{bottom:305.666667pt;}
.y100_c00151{bottom:306.426667pt;}
.yfa_c00151{bottom:307.200000pt;}
.yff_c00151{bottom:307.973333pt;}
.yfd_c00151{bottom:308.733333pt;}
.y103_c00151{bottom:309.506667pt;}
.y102_c00151{bottom:310.266667pt;}
.y104_c00151{bottom:311.040000pt;}
.yf9_c00151{bottom:311.813333pt;}
.yfb_c00151{bottom:312.573333pt;}
.yfc_c00151{bottom:313.346667pt;}
.y105_c00151{bottom:314.106667pt;}
.y101_c00151{bottom:314.880000pt;}
.y106_c00151{bottom:315.653333pt;}
.y107_c00151{bottom:317.186667pt;}
.yf4_c00151{bottom:324.093333pt;}
.yf5_c00151{bottom:324.866667pt;}
.yf3_c00151{bottom:325.626667pt;}
.yf7_c00151{bottom:327.173333pt;}
.yf1_c00151{bottom:327.933333pt;}
.yf8_c00151{bottom:329.466667pt;}
.yf2_c00151{bottom:331.773333pt;}
.yf0_c00151{bottom:335.613333pt;}
.yf6_c00151{bottom:337.146667pt;}
.yed_c00151{bottom:346.373333pt;}
.yec_c00151{bottom:347.906667pt;}
.yea_c00151{bottom:348.666667pt;}
.ye9_c00151{bottom:349.440000pt;}
.yef_c00151{bottom:350.213333pt;}
.ye8_c00151{bottom:352.506667pt;}
.yeb_c00151{bottom:355.586667pt;}
.yee_c00151{bottom:357.893333pt;}
.ye6_c00151{bottom:369.413333pt;}
.ye2_c00151{bottom:372.480000pt;}
.ye4_c00151{bottom:373.253333pt;}
.ydf_c00151{bottom:374.013333pt;}
.ye7_c00151{bottom:374.786667pt;}
.ye1_c00151{bottom:375.546667pt;}
.ye5_c00151{bottom:377.093333pt;}
.ye3_c00151{bottom:377.853333pt;}
.ye0_c00151{bottom:379.386667pt;}
.yde_c00151{bottom:388.613333pt;}
.ydd_c00151{bottom:392.453333pt;}
.yda_c00151{bottom:397.826667pt;}
.ydc_c00151{bottom:399.360000pt;}
.yd9_c00151{bottom:401.666667pt;}
.ydb_c00151{bottom:402.426667pt;}
.yd7_c00151{bottom:413.946667pt;}
.yd5_c00151{bottom:415.493333pt;}
.yd6_c00151{bottom:416.253333pt;}
.yd4_c00151{bottom:419.333333pt;}
.yd2_c00151{bottom:420.093333pt;}
.yd0_c00151{bottom:420.866667pt;}
.yd3_c00151{bottom:423.173333pt;}
.yd1_c00151{bottom:424.706667pt;}
.ycf_c00151{bottom:425.466667pt;}
.yd8_c00151{bottom:431.613333pt;}
.ycc_c00151{bottom:435.453333pt;}
.ycb_c00151{bottom:436.226667pt;}
.yca_c00151{bottom:437.760000pt;}
.yce_c00151{bottom:438.533333pt;}
.yc8_c00151{bottom:439.293333pt;}
.yc7_c00151{bottom:440.066667pt;}
.ycd_c00151{bottom:440.826667pt;}
.yc9_c00151{bottom:445.440000pt;}
.yc3_c00151{bottom:459.266667pt;}
.yc4_c00151{bottom:460.026667pt;}
.yc1_c00151{bottom:460.800000pt;}
.yc5_c00151{bottom:461.573333pt;}
.ybe_c00151{bottom:462.333333pt;}
.yc0_c00151{bottom:463.866667pt;}
.yc2_c00151{bottom:464.640000pt;}
.ybf_c00151{bottom:466.173333pt;}
.ybd_c00151{bottom:468.480000pt;}
.yc6_c00151{bottom:473.093333pt;}
.ybc_c00151{bottom:481.533333pt;}
.yba_c00151{bottom:483.066667pt;}
.ybb_c00151{bottom:483.840000pt;}
.yb9_c00151{bottom:484.613333pt;}
.yb8_c00151{bottom:485.373333pt;}
.yb6_c00151{bottom:486.906667pt;}
.yb5_c00151{bottom:489.213333pt;}
.yb4_c00151{bottom:489.986667pt;}
.yb3_c00151{bottom:490.746667pt;}
.yb2_c00151{bottom:491.520000pt;}
.yb1_c00151{bottom:492.293333pt;}
.yb7_c00151{bottom:501.506667pt;}
.yae_c00151{bottom:503.040000pt;}
.yad_c00151{bottom:503.813333pt;}
.yaf_c00151{bottom:504.573333pt;}
.yb0_c00151{bottom:506.106667pt;}
.yab_c00151{bottom:507.653333pt;}
.yaa_c00151{bottom:509.186667pt;}
.ya9_c00151{bottom:509.946667pt;}
.yac_c00151{bottom:513.026667pt;}
.ya7_c00151{bottom:526.080000pt;}
.ya8_c00151{bottom:527.613333pt;}
.ya6_c00151{bottom:529.146667pt;}
.ya5_c00151{bottom:529.920000pt;}
.ya4_c00151{bottom:533.760000pt;}
.ya3_c00151{bottom:541.440000pt;}
.ya2_c00151{bottom:544.506667pt;}
.y9f_c00151{bottom:549.120000pt;}
.y9d_c00151{bottom:550.653333pt;}
.y9c_c00151{bottom:552.186667pt;}
.ya0_c00151{bottom:552.960000pt;}
.y98_c00151{bottom:554.493333pt;}
.y9e_c00151{bottom:556.800000pt;}
.y9b_c00151{bottom:557.573333pt;}
.y99_c00151{bottom:558.333333pt;}
.y9a_c00151{bottom:559.106667pt;}
.ya1_c00151{bottom:566.786667pt;}
.y97_c00151{bottom:571.386667pt;}
.y96_c00151{bottom:572.933333pt;}
.y95_c00151{bottom:575.226667pt;}
.y92_c00151{bottom:576.000000pt;}
.y90_c00151{bottom:576.773333pt;}
.y94_c00151{bottom:577.533333pt;}
.y8f_c00151{bottom:579.066667pt;}
.y93_c00151{bottom:580.613333pt;}
.y91_c00151{bottom:581.373333pt;}
.y8e_c00151{bottom:594.426667pt;}
.y8b_c00151{bottom:595.973333pt;}
.y8a_c00151{bottom:596.733333pt;}
.y8d_c00151{bottom:600.573333pt;}
.y8c_c00151{bottom:602.106667pt;}
.y88_c00151{bottom:614.400000pt;}
.y84_c00151{bottom:618.240000pt;}
.y89_c00151{bottom:620.546667pt;}
.y83_c00151{bottom:621.306667pt;}
.y87_c00151{bottom:622.853333pt;}
.y86_c00151{bottom:623.613333pt;}
.y85_c00151{bottom:624.386667pt;}
.y81_c00151{bottom:635.133333pt;}
.y80_c00151{bottom:638.213333pt;}
.y7d_c00151{bottom:640.506667pt;}
.y7f_c00151{bottom:641.280000pt;}
.y82_c00151{bottom:642.053333pt;}
.y7e_c00151{bottom:647.426667pt;}
.y7c_c00151{bottom:650.493333pt;}
.y7a_c00151{bottom:658.946667pt;}
.y79_c00151{bottom:662.786667pt;}
.y78_c00151{bottom:663.546667pt;}
.y7b_c00151{bottom:665.093333pt;}
.y77_c00151{bottom:665.853333pt;}
.y75_c00151{bottom:666.626667pt;}
.y76_c00151{bottom:670.466667pt;}
.y73_c00151{bottom:681.213333pt;}
.y72_c00151{bottom:682.746667pt;}
.y6d_c00151{bottom:684.293333pt;}
.y71_c00151{bottom:685.053333pt;}
.y74_c00151{bottom:686.586667pt;}
.y6e_c00151{bottom:687.360000pt;}
.y70_c00151{bottom:688.133333pt;}
.y6f_c00151{bottom:688.893333pt;}
.y6c_c00151{bottom:692.733333pt;}
.y6a_c00151{bottom:701.946667pt;}
.y69_c00151{bottom:703.493333pt;}
.y68_c00151{bottom:704.253333pt;}
.y67_c00151{bottom:705.026667pt;}
.y65_c00151{bottom:705.786667pt;}
.y64_c00151{bottom:706.560000pt;}
.y6b_c00151{bottom:708.093333pt;}
.y66_c00151{bottom:712.706667pt;}
.y62_c00151{bottom:724.226667pt;}
.y61_c00151{bottom:724.986667pt;}
.y60_c00151{bottom:725.760000pt;}
.y5f_c00151{bottom:726.533333pt;}
.y5c_c00151{bottom:729.600000pt;}
.y5d_c00151{bottom:731.133333pt;}
.y5b_c00151{bottom:731.906667pt;}
.y5e_c00151{bottom:732.666667pt;}
.y59_c00151{bottom:734.213333pt;}
.y5a_c00151{bottom:734.973333pt;}
.y63_c00151{bottom:735.746667pt;}
.y57_c00151{bottom:746.493333pt;}
.y56_c00151{bottom:747.266667pt;}
.y54_c00151{bottom:748.800000pt;}
.y55_c00151{bottom:749.573333pt;}
.y58_c00151{bottom:750.333333pt;}
.y53_c00151{bottom:767.226667pt;}
.y52_c00151{bottom:768.773333pt;}
.y50_c00151{bottom:770.306667pt;}
.y4e_c00151{bottom:771.066667pt;}
.y4a_c00151{bottom:771.840000pt;}
.y4b_c00151{bottom:772.613333pt;}
.y4f_c00151{bottom:773.373333pt;}
.y51_c00151{bottom:775.680000pt;}
.y49_c00151{bottom:777.213333pt;}
.y4d_c00151{bottom:777.986667pt;}
.y4c_c00151{bottom:785.666667pt;}
.y47_c00151{bottom:791.040000pt;}
.y46_c00151{bottom:791.813333pt;}
.y45_c00151{bottom:792.573333pt;}
.y43_c00151{bottom:795.653333pt;}
.y48_c00151{bottom:797.946667pt;}
.y44_c00151{bottom:800.253333pt;}
.y41_c00151{bottom:801.026667pt;}
.y42_c00151{bottom:803.333333pt;}
.y40_c00151{bottom:811.013333pt;}
.y3e_c00151{bottom:813.306667pt;}
.y3f_c00151{bottom:814.080000pt;}
.y3d_c00151{bottom:814.853333pt;}
.y3b_c00151{bottom:817.146667pt;}
.y3a_c00151{bottom:817.920000pt;}
.y3c_c00151{bottom:823.293333pt;}
.y38_c00151{bottom:835.586667pt;}
.y37_c00151{bottom:837.893333pt;}
.y35_c00151{bottom:838.653333pt;}
.y32_c00151{bottom:839.426667pt;}
.y39_c00151{bottom:840.186667pt;}
.y31_c00151{bottom:841.733333pt;}
.y36_c00151{bottom:843.266667pt;}
.y33_c00151{bottom:844.800000pt;}
.y34_c00151{bottom:845.573333pt;}
.y30_c00151{bottom:847.866667pt;}
.y2e_c00151{bottom:857.853333pt;}
.y2c_c00151{bottom:858.626667pt;}
.y2a_c00151{bottom:859.386667pt;}
.y27_c00151{bottom:860.933333pt;}
.y29_c00151{bottom:864.000000pt;}
.y2d_c00151{bottom:864.773333pt;}
.y2b_c00151{bottom:866.306667pt;}
.y28_c00151{bottom:867.066667pt;}
.y26_c00151{bottom:869.373333pt;}
.y2f_c00151{bottom:876.293333pt;}
.y24_c00151{bottom:878.586667pt;}
.y25_c00151{bottom:879.360000pt;}
.y22_c00151{bottom:880.133333pt;}
.y21_c00151{bottom:881.666667pt;}
.y20_c00151{bottom:883.200000pt;}
.y23_c00151{bottom:886.266667pt;}
.y1f_c00151{bottom:888.573333pt;}
.y1d_c00151{bottom:903.173333pt;}
.y1b_c00151{bottom:903.933333pt;}
.y19_c00151{bottom:904.706667pt;}
.y1e_c00151{bottom:907.013333pt;}
.y1a_c00151{bottom:909.306667pt;}
.y1c_c00151{bottom:910.853333pt;}
.y18_c00151{bottom:924.666667pt;}
.y16_c00151{bottom:925.440000pt;}
.y17_c00151{bottom:927.746667pt;}
.y13_c00151{bottom:928.506667pt;}
.y15_c00151{bottom:932.346667pt;}
.y12_c00151{bottom:933.120000pt;}
.y11_c00151{bottom:934.653333pt;}
.y14_c00151{bottom:945.413333pt;}
.y10_c00151{bottom:946.946667pt;}
.ye_c00151{bottom:947.706667pt;}
.yd_c00151{bottom:948.480000pt;}
.yf_c00151{bottom:949.253333pt;}
.yb_c00151{bottom:952.320000pt;}
.yc_c00151{bottom:955.386667pt;}
.ya_c00151{bottom:956.160000pt;}
.y8_c00151{bottom:969.986667pt;}
.y7_c00151{bottom:970.746667pt;}
.y6_c00151{bottom:973.053333pt;}
.y9_c00151{bottom:973.826667pt;}
.y4_c00151{bottom:976.133333pt;}
.y3_c00151{bottom:976.893333pt;}
.y5_c00151{bottom:979.200000pt;}
.y16f_c00151{bottom:1049.093333pt;}
.y163_c00151{bottom:1112.066667pt;}
.y161_c00151{bottom:1115.133333pt;}
.y162_c00151{bottom:1117.440000pt;}
.y164_c00151{bottom:1122.813333pt;}
.y15f_c00151{bottom:1125.120000pt;}
.y15e_c00151{bottom:1126.653333pt;}
.y15a_c00151{bottom:1127.426667pt;}
.y15b_c00151{bottom:1128.186667pt;}
.y15c_c00151{bottom:1128.960000pt;}
.y160_c00151{bottom:1130.493333pt;}
.y15d_c00151{bottom:1134.333333pt;}
.y158_c00151{bottom:1136.640000pt;}
.y159_c00151{bottom:1138.173333pt;}
.y157_c00151{bottom:1144.320000pt;}
.y156_c00151{bottom:1148.160000pt;}
.y155_c00151{bottom:1148.933333pt;}
.y154_c00151{bottom:1150.466667pt;}
.y153_c00151{bottom:1152.000000pt;}
.y14e_c00151{bottom:1153.533333pt;}
.y151_c00151{bottom:1154.306667pt;}
.y14d_c00151{bottom:1156.613333pt;}
.y14f_c00151{bottom:1158.146667pt;}
.y152_c00151{bottom:1160.453333pt;}
.y150_c00151{bottom:1161.986667pt;}
.y14b_c00151{bottom:1170.426667pt;}
.y14c_c00151{bottom:1171.200000pt;}
.y14a_c00151{bottom:1171.973333pt;}
.y149_c00151{bottom:1172.733333pt;}
.y147_c00151{bottom:1173.506667pt;}
.y146_c00151{bottom:1174.266667pt;}
.y144_c00151{bottom:1176.573333pt;}
.y145_c00151{bottom:1179.653333pt;}
.y148_c00151{bottom:1183.493333pt;}
.y142_c00151{bottom:1196.546667pt;}
.y143_c00151{bottom:1198.080000pt;}
.y13f_c00151{bottom:1198.853333pt;}
.y140_c00151{bottom:1201.146667pt;}
.y13c_c00151{bottom:1201.920000pt;}
.y141_c00151{bottom:1203.453333pt;}
.y13e_c00151{bottom:1204.226667pt;}
.y13d_c00151{bottom:1204.986667pt;}
.y13b_c00151{bottom:1218.053333pt;}
.y13a_c00151{bottom:1224.960000pt;}
.y139_c00151{bottom:1229.573333pt;}
.y138_c00151{bottom:1231.866667pt;}
.y137_c00151{bottom:1232.640000pt;}
.y136_c00151{bottom:1233.413333pt;}
.y135_c00151{bottom:1280.253333pt;}
.h20_c00151{height:2.764500pt;}
.h2_c00151{height:4.799479pt;}
.h21_c00151{height:5.519401pt;}
.h1d_c00151{height:8.303099pt;}
.h15_c00151{height:11.038802pt;}
.h3_c00151{height:13.822500pt;}
.h4_c00151{height:16.606198pt;}
.h2c_c00151{height:17.476432pt;}
.h1f_c00151{height:19.341901pt;}
.h25_c00151{height:22.125599pt;}
.h28_c00151{height:24.861302pt;}
.h27_c00151{height:27.645000pt;}
.h23_c00151{height:30.428698pt;}
.h1c_c00151{height:33.164401pt;}
.h24_c00151{height:35.948099pt;}
.h5_c00151{height:38.683802pt;}
.h6_c00151{height:41.467500pt;}
.h16_c00151{height:44.251198pt;}
.h10_c00151{height:46.986901pt;}
.h1a_c00151{height:49.770599pt;}
.he_c00151{height:52.506302pt;}
.h11_c00151{height:55.290000pt;}
.h13_c00151{height:58.073698pt;}
.h14_c00151{height:60.809401pt;}
.h7_c00151{height:63.593099pt;}
.h17_c00151{height:66.328802pt;}
.h18_c00151{height:69.112500pt;}
.h1b_c00151{height:71.896198pt;}
.hf_c00151{height:74.631901pt;}
.hc_c00151{height:77.415599pt;}
.h12_c00151{height:80.151302pt;}
.h19_c00151{height:82.935000pt;}
.ha_c00151{height:85.718698pt;}
.h9_c00151{height:88.454401pt;}
.h22_c00151{height:91.238099pt;}
.h8_c00151{height:93.973802pt;}
.h1e_c00151{height:96.757500pt;}
.hd_c00151{height:99.541198pt;}
.h29_c00151{height:102.276901pt;}
.h2a_c00151{height:105.060599pt;}
.h26_c00151{height:107.796302pt;}
.hb_c00151{height:110.580000pt;}
.h2b_c00151{height:143.744401pt;}
.h1_c00151{height:1335.333333pt;}
.h0_c00151{height:1335.546667pt;}
.w0_c00151{width:988.413333pt;}
.w1_c00151{width:988.666667pt;}
.x0_c00151{left:0.000000pt;}
.x1_c00151{left:4.613333pt;}
.x2_c00151{left:15.360000pt;}
.xcf_c00151{left:152.826667pt;}
.xd0_c00151{left:164.346667pt;}
.x4b_c00151{left:175.106667pt;}
.x43_c00151{left:179.706667pt;}
.x80_c00151{left:183.546667pt;}
.x67_c00151{left:189.693333pt;}
.xa8_c00151{left:191.226667pt;}
.x44_c00151{left:194.306667pt;}
.x60_c00151{left:195.840000pt;}
.x27_c00151{left:197.373333pt;}
.x2e_c00151{left:199.680000pt;}
.x91_c00151{left:201.213333pt;}
.xb2_c00151{left:202.746667pt;}
.x1f_c00151{left:204.293333pt;}
.xc9_c00151{left:206.586667pt;}
.x3_c00151{left:209.666667pt;}
.x79_c00151{left:215.813333pt;}
.xc5_c00151{left:218.880000pt;}
.x2f_c00151{left:226.560000pt;}
.x68_c00151{left:228.866667pt;}
.x38_c00151{left:231.173333pt;}
.x4_c00151{left:232.706667pt;}
.x73_c00151{left:234.240000pt;}
.xd9_c00151{left:237.306667pt;}
.x69_c00151{left:245.760000pt;}
.xae_c00151{left:247.293333pt;}
.x54_c00151{left:250.373333pt;}
.xdd_c00151{left:251.906667pt;}
.x39_c00151{left:255.746667pt;}
.x45_c00151{left:259.586667pt;}
.x7d_c00151{left:264.186667pt;}
.xc6_c00151{left:265.733333pt;}
.xb3_c00151{left:271.106667pt;}
.xa1_c00151{left:274.946667pt;}
.xa9_c00151{left:278.013333pt;}
.x6a_c00151{left:280.320000pt;}
.xa6_c00151{left:281.853333pt;}
.x6e_c00151{left:284.933333pt;}
.xd1_c00151{left:286.466667pt;}
.x61_c00151{left:289.533333pt;}
.xde_c00151{left:291.066667pt;}
.xda_c00151{left:295.680000pt;}
.x20_c00151{left:297.213333pt;}
.x5_c00151{left:299.520000pt;}
.x15_c00151{left:301.053333pt;}
.x7a_c00151{left:304.133333pt;}
.x89_c00151{left:307.200000pt;}
.x3a_c00151{left:308.733333pt;}
.x30_c00151{left:310.266667pt;}
.x6_c00151{left:313.346667pt;}
.x4c_c00151{left:318.720000pt;}
.xe_c00151{left:322.560000pt;}
.xbf_c00151{left:324.093333pt;}
.x7e_c00151{left:325.626667pt;}
.x55_c00151{left:330.240000pt;}
.x3b_c00151{left:334.080000pt;}
.xaf_c00151{left:335.613333pt;}
.x16_c00151{left:337.146667pt;}
.x7_c00151{left:342.533333pt;}
.xe6_c00151{left:345.600000pt;}
.xb8_c00151{left:347.133333pt;}
.xc7_c00151{left:348.666667pt;}
.x31_c00151{left:350.973333pt;}
.x9a_c00151{left:352.506667pt;}
.x8_c00151{left:355.586667pt;}
.x62_c00151{left:357.120000pt;}
.xa2_c00151{left:358.653333pt;}
.x46_c00151{left:360.186667pt;}
.x21_c00151{left:364.800000pt;}
.x92_c00151{left:366.333333pt;}
.x56_c00151{left:369.413333pt;}
.xaa_c00151{left:372.480000pt;}
.x3c_c00151{left:374.013333pt;}
.x9_c00151{left:375.546667pt;}
.x4d_c00151{left:378.626667pt;}
.x57_c00151{left:380.933333pt;}
.x32_c00151{left:383.226667pt;}
.x22_c00151{left:390.146667pt;}
.x3d_c00151{left:391.680000pt;}
.x6f_c00151{left:393.986667pt;}
.x28_c00151{left:396.293333pt;}
.x17_c00151{left:397.826667pt;}
.xd4_c00151{left:400.893333pt;}
.x63_c00151{left:403.200000pt;}
.x81_c00151{left:407.040000pt;}
.xb9_c00151{left:411.653333pt;}
.x58_c00151{left:413.946667pt;}
.xb4_c00151{left:415.493333pt;}
.x8a_c00151{left:417.786667pt;}
.xe3_c00151{left:420.866667pt;}
.xf_c00151{left:422.400000pt;}
.x23_c00151{left:427.773333pt;}
.x4e_c00151{left:430.853333pt;}
.x6b_c00151{left:432.386667pt;}
.x70_c00151{left:433.920000pt;}
.x82_c00151{left:435.453333pt;}
.x33_c00151{left:437.760000pt;}
.x10_c00151{left:440.066667pt;}
.xe9_c00151{left:450.053333pt;}
.xb5_c00151{left:453.893333pt;}
.x83_c00151{left:458.493333pt;}
.x18_c00151{left:460.800000pt;}
.x59_c00151{left:463.106667pt;}
.x19_c00151{left:464.640000pt;}
.x11_c00151{left:466.946667pt;}
.xab_c00151{left:468.480000pt;}
.x90_c00151{left:470.013333pt;}
.x47_c00151{left:471.546667pt;}
.xcd_c00151{left:475.386667pt;}
.xca_c00151{left:477.693333pt;}
.x7b_c00151{left:480.773333pt;}
.xa_c00151{left:483.066667pt;}
.xd8_c00151{left:486.146667pt;}
.x93_c00151{left:487.680000pt;}
.x84_c00151{left:491.520000pt;}
.x24_c00151{left:495.360000pt;}
.x8b_c00151{left:498.426667pt;}
.xdb_c00151{left:499.973333pt;}
.x3e_c00151{left:502.266667pt;}
.x29_c00151{left:506.106667pt;}
.x74_c00151{left:510.720000pt;}
.xc8_c00151{left:513.026667pt;}
.xbc_c00151{left:514.560000pt;}
.x8c_c00151{left:516.866667pt;}
.xce_c00151{left:524.546667pt;}
.xdf_c00151{left:526.080000pt;}
.x71_c00151{left:528.386667pt;}
.x5a_c00151{left:529.920000pt;}
.xac_c00151{left:533.760000pt;}
.xb_c00151{left:535.293333pt;}
.xb6_c00151{left:537.600000pt;}
.xa3_c00151{left:540.666667pt;}
.x75_c00151{left:542.973333pt;}
.xea_c00151{left:545.280000pt;}
.x12_c00151{left:546.813333pt;}
.x64_c00151{left:549.120000pt;}
.x34_c00151{left:550.653333pt;}
.xd5_c00151{left:556.026667pt;}
.x5b_c00151{left:559.866667pt;}
.x76_c00151{left:564.480000pt;}
.xb0_c00151{left:566.013333pt;}
.xd2_c00151{left:569.853333pt;}
.x8d_c00151{left:572.160000pt;}
.xcb_c00151{left:573.693333pt;}
.x1a_c00151{left:576.000000pt;}
.x86_c00151{left:578.306667pt;}
.xc0_c00151{left:579.840000pt;}
.xb7_c00151{left:581.373333pt;}
.x3f_c00151{left:585.213333pt;}
.xad_c00151{left:588.293333pt;}
.x25_c00151{left:592.133333pt;}
.x87_c00151{left:594.426667pt;}
.xc1_c00151{left:596.733333pt;}
.x4f_c00151{left:599.813333pt;}
.x77_c00151{left:601.346667pt;}
.x65_c00151{left:605.946667pt;}
.x94_c00151{left:607.493333pt;}
.x1b_c00151{left:613.626667pt;}
.x7f_c00151{left:615.933333pt;}
.x8f_c00151{left:617.466667pt;}
.x9b_c00151{left:619.013333pt;}
.x35_c00151{left:624.386667pt;}
.x95_c00151{left:626.693333pt;}
.xc2_c00151{left:628.226667pt;}
.x5c_c00151{left:629.760000pt;}
.xc_c00151{left:631.293333pt;}
.xe0_c00151{left:633.600000pt;}
.x1c_c00151{left:636.666667pt;}
.x2a_c00151{left:638.973333pt;}
.x9f_c00151{left:642.053333pt;}
.x13_c00151{left:643.586667pt;}
.x48_c00151{left:645.120000pt;}
.xe4_c00151{left:648.960000pt;}
.xc3_c00151{left:651.266667pt;}
.xd_c00151{left:653.573333pt;}
.x5d_c00151{left:655.866667pt;}
.xb1_c00151{left:658.946667pt;}
.x40_c00151{left:660.480000pt;}
.xe7_c00151{left:664.320000pt;}
.xd6_c00151{left:665.853333pt;}
.xdc_c00151{left:667.386667pt;}
.x9c_c00151{left:668.933333pt;}
.x88_c00151{left:672.000000pt;}
.x50_c00151{left:673.533333pt;}
.x1d_c00151{left:675.066667pt;}
.x96_c00151{left:678.906667pt;}
.xe1_c00151{left:681.986667pt;}
.x49_c00151{left:684.293333pt;}
.x2b_c00151{left:685.826667pt;}
.x6c_c00151{left:687.360000pt;}
.x41_c00151{left:688.893333pt;}
.xe8_c00151{left:691.200000pt;}
.x9d_c00151{left:695.813333pt;}
.xa0_c00151{left:697.346667pt;}
.x36_c00151{left:700.413333pt;}
.x1e_c00151{left:704.253333pt;}
.x51_c00151{left:710.400000pt;}
.xe5_c00151{left:711.933333pt;}
.xe2_c00151{left:716.546667pt;}
.x26_c00151{left:718.853333pt;}
.x7c_c00151{left:720.386667pt;}
.x72_c00151{left:723.453333pt;}
.x5e_c00151{left:725.760000pt;}
.x97_c00151{left:728.066667pt;}
.x14_c00151{left:731.133333pt;}
.xc4_c00151{left:734.213333pt;}
.x85_c00151{left:735.746667pt;}
.x8e_c00151{left:738.053333pt;}
.x78_c00151{left:741.893333pt;}
.xbd_c00151{left:744.186667pt;}
.xd3_c00151{left:745.733333pt;}
.x66_c00151{left:750.333333pt;}
.x4a_c00151{left:751.866667pt;}
.xbe_c00151{left:758.013333pt;}
.xba_c00151{left:761.853333pt;}
.x37_c00151{left:764.933333pt;}
.xbb_c00151{left:768.773333pt;}
.xd7_c00151{left:770.306667pt;}
.x52_c00151{left:771.840000pt;}
.x6d_c00151{left:773.373333pt;}
.x5f_c00151{left:775.680000pt;}
.x42_c00151{left:777.986667pt;}
.xcc_c00151{left:779.520000pt;}
.x2c_c00151{left:782.586667pt;}
.x53_c00151{left:784.893333pt;}
.x98_c00151{left:788.733333pt;}
.x2d_c00151{left:791.813333pt;}
.x9e_c00151{left:794.106667pt;}
.x99_c00151{left:798.720000pt;}
.xa4_c00151{left:808.706667pt;}
.xa7_c00151{left:811.773333pt;}
.xa5_c00151{left:820.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bfe94ead08214b452c182ba3.woff2')format("woff");}.ff1_c00152{font-family:ff1_c00152;line-height:1.109863;font-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_c00152{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.md4_c00152{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m173_c00152{transform:matrix(0.066275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066275,0.000000,0.000000,0.250000,0,0);}
.m13e_c00152{transform:matrix(0.082100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082100,0.000000,0.000000,0.250000,0,0);}
.m140_c00152{transform:matrix(0.091750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00152{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m154_c00152{transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);}
.mdd_c00152{transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);}
.m11f_c00152{transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);}
.m15f_c00152{transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);}
.m136_c00152{transform:matrix(0.112625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112625,0.000000,0.000000,0.250000,0,0);}
.m14e_c00152{transform:matrix(0.113000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113000,0.000000,0.000000,0.250000,0,0);}
.m95_c00152{transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);}
.m2e_c00152{transform:matrix(0.117900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117900,0.000000,0.000000,0.250000,0,0);}
.m85_c00152{transform:matrix(0.120575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120575,0.000000,0.000000,0.250000,0,0);}
.m179_c00152{transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);}
.m149_c00152{transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);}
.ma3_c00152{transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);}
.m11a_c00152{transform:matrix(0.122025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122025,0.000000,0.000000,0.250000,0,0);}
.m172_c00152{transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);}
.m161_c00152{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00152{transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);}
.m153_c00152{transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);}
.m17e_c00152{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m170_c00152{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);}
.md0_c00152{transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);}
.m21_c00152{transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);}
.m164_c00152{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);}
.m129_c00152{transform:matrix(0.130725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130725,0.000000,0.000000,0.250000,0,0);}
.m12a_c00152{transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);}
.mdb_c00152{transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);}
.m9f_c00152{transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);}
.m16f_c00152{transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);}
.m18_c00152{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.m54_c00152{transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);}
.m17a_c00152{transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);}
.m14b_c00152{transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);}
.mae_c00152{transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);}
.m135_c00152{transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);}
.m17b_c00152{transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);}
.m13c_c00152{transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);}
.m174_c00152{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.m107_c00152{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);}
.m86_c00152{transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);}
.m58_c00152{transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);}
.m6c_c00152{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);}
.m112_c00152{transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);}
.m92_c00152{transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);}
.m12f_c00152{transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);}
.m130_c00152{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m14c_c00152{transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);}
.m60_c00152{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.m11_c00152{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m16c_c00152{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.mbd_c00152{transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);}
.mac_c00152{transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);}
.m119_c00152{transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);}
.m133_c00152{transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);}
.mef_c00152{transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);}
.ma1_c00152{transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);}
.m15e_c00152{transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);}
.m11b_c00152{transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);}
.me2_c00152{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);}
.mb3_c00152{transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);}
.m152_c00152{transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);}
.m78_c00152{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);}
.mcc_c00152{transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);}
.m99_c00152{transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);}
.mfd_c00152{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);}
.m3c_c00152{transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);}
.m7f_c00152{transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);}
.m26_c00152{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m1a_c00152{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m15d_c00152{transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);}
.m33_c00152{transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);}
.m35_c00152{transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);}
.m1_c00152{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.m4c_c00152{transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);}
.me5_c00152{transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);}
.m3_c00152{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.m10c_c00152{transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);}
.m6_c00152{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);}
.mf0_c00152{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.mb_c00152{transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);}
.m31_c00152{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.m156_c00152{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m93_c00152{transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);}
.m14a_c00152{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);}
.m143_c00152{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.mf2_c00152{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);}
.m109_c00152{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.mc3_c00152{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.mf1_c00152{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.m139_c00152{transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);}
.me8_c00152{transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);}
.m123_c00152{transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);}
.maa_c00152{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m36_c00152{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m75_c00152{transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);}
.m64_c00152{transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);}
.m30_c00152{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.m34_c00152{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m1e_c00152{transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);}
.mf3_c00152{transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);}
.mf5_c00152{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.m84_c00152{transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);}
.m7d_c00152{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m122_c00152{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.m121_c00152{transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);}
.m148_c00152{transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);}
.mb1_c00152{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);}
.m15c_c00152{transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);}
.m94_c00152{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m169_c00152{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);}
.med_c00152{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);}
.m12c_c00152{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.m16e_c00152{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);}
.m167_c00152{transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);}
.m17c_c00152{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.m15_c00152{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.mc9_c00152{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m80_c00152{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);}
.m16b_c00152{transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);}
.m16d_c00152{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m144_c00152{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);}
.m125_c00152{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);}
.md3_c00152{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m158_c00152{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.m102_c00152{transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);}
.m157_c00152{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mc0_c00152{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.m160_c00152{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.m2c_c00152{transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);}
.m175_c00152{transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);}
.mb8_c00152{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m100_c00152{transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);}
.m151_c00152{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m7c_c00152{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);}
.m110_c00152{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);}
.m37_c00152{transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);}
.m155_c00152{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);}
.m159_c00152{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m13f_c00152{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.mc6_c00152{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.m2d_c00152{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.mbe_c00152{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);}
.m9c_c00152{transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);}
.m96_c00152{transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);}
.m178_c00152{transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);}
.mcb_c00152{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.m1c_c00152{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.m101_c00152{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);}
.mb9_c00152{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m106_c00152{transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);}
.me0_c00152{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.mba_c00152{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);}
.mbc_c00152{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);}
.m1d_c00152{transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);}
.mce_c00152{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);}
.m10e_c00152{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.ma9_c00152{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);}
.ma4_c00152{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.md6_c00152{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);}
.m104_c00152{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);}
.m89_c00152{transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);}
.maf_c00152{transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);}
.m12e_c00152{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m168_c00152{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);}
.m117_c00152{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);}
.m8e_c00152{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.m77_c00152{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m51_c00152{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.mab_c00152{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m10d_c00152{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m74_c00152{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.mbb_c00152{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.ma6_c00152{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.m137_c00152{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mc5_c00152{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);}
.md7_c00152{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);}
.m6e_c00152{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m59_c00152{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);}
.m8d_c00152{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);}
.mfe_c00152{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.m5b_c00152{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.m71_c00152{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);}
.m14d_c00152{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);}
.mc8_c00152{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);}
.m7b_c00152{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.mca_c00152{transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);}
.m15a_c00152{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.m4d_c00152{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.m127_c00152{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00152{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m14f_c00152{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.m10b_c00152{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.me7_c00152{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);}
.ma5_c00152{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m8b_c00152{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.m32_c00152{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m16a_c00152{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.mb2_c00152{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);}
.m10f_c00152{transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);}
.m69_c00152{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.m13_c00152{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);}
.m48_c00152{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m15b_c00152{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.m13a_c00152{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);}
.m73_c00152{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);}
.m162_c00152{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m90_c00152{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);}
.ma0_c00152{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m79_c00152{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);}
.m91_c00152{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m9b_c00152{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m10a_c00152{transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);}
.m20_c00152{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m9a_c00152{transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);}
.meb_c00152{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);}
.m1b_c00152{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.ma7_c00152{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);}
.m118_c00152{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);}
.mda_c00152{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m11c_c00152{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.m11d_c00152{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);}
.mf7_c00152{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m2b_c00152{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.m2a_c00152{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m128_c00152{transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);}
.m7e_c00152{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);}
.m146_c00152{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.m9d_c00152{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.mf4_c00152{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m29_c00152{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.m70_c00152{transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);}
.m120_c00152{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);}
.me9_c00152{transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);}
.m138_c00152{transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);}
.m171_c00152{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m62_c00152{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m56_c00152{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);}
.m3d_c00152{transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);}
.mb6_c00152{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m165_c00152{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);}
.m9e_c00152{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.m8c_c00152{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.ma8_c00152{transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);}
.m13b_c00152{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);}
.m177_c00152{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m65_c00152{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m25_c00152{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m12b_c00152{transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);}
.mea_c00152{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);}
.m176_c00152{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);}
.m27_c00152{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);}
.m87_c00152{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);}
.m39_c00152{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);}
.mc1_c00152{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);}
.me4_c00152{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);}
.mb0_c00152{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);}
.m41_c00152{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);}
.m5d_c00152{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m142_c00152{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m124_c00152{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);}
.m53_c00152{transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);}
.m72_c00152{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.m61_c00152{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);}
.m141_c00152{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);}
.mde_c00152{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m134_c00152{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m83_c00152{transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);}
.m9_c00152{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00152{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mf6_c00152{transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);}
.m163_c00152{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);}
.m145_c00152{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m111_c00152{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);}
.m11e_c00152{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);}
.m6b_c00152{transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);}
.m3f_c00152{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.me1_c00152{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m16_c00152{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);}
.m4b_c00152{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m131_c00152{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);}
.me3_c00152{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);}
.m4e_c00152{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m38_c00152{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);}
.mc4_c00152{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);}
.m5e_c00152{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m57_c00152{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);}
.m14_c00152{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);}
.m81_c00152{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);}
.m3b_c00152{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);}
.m17_c00152{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mff_c00152{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00152{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m66_c00152{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);}
.m8a_c00152{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00152{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);}
.mc7_c00152{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);}
.m5f_c00152{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m63_c00152{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);}
.mc_c00152{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m49_c00152{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m52_c00152{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);}
.m24_c00152{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00152{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);}
.mc2_c00152{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);}
.mcd_c00152{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00152{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00152{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);}
.mad_c00152{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00152{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m76_c00152{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);}
.m47_c00152{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c00152{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m67_c00152{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c00152{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mee_c00152{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00152{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m82_c00152{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m55_c00152{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);}
.m5a_c00152{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00152{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c00152{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00152{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00152{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);}
.m13d_c00152{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);}
.m88_c00152{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m166_c00152{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00152{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);}
.m7_c00152{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00152{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00152{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);}
.m97_c00152{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m28_c00152{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);}
.m8_c00152{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00152{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00152{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m44_c00152{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00152{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m147_c00152{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.md9_c00152{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m0_c00152{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);}
.m98_c00152{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);}
.m115_c00152{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m43_c00152{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);}
.md8_c00152{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m68_c00152{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m23_c00152{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m105_c00152{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00152{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m46_c00152{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m108_c00152{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m150_c00152{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m45_c00152{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m126_c00152{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00152{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00152{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);}
.me_c00152{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mec_c00152{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.me6_c00152{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m113_c00152{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00152{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.md5_c00152{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m42_c00152{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00152{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m50_c00152{transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);}
.md2_c00152{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);}
.m40_c00152{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.md1_c00152{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);}
.m116_c00152{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m19_c00152{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m22_c00152{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00152{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m114_c00152{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00152{transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);}
.m132_c00152{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m103_c00152{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00152{transform:matrix(2.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c00152{transform:matrix(3.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.082500,0.000000,0.000000,0.250000,0,0);}
.m17d_c00152{transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c00152{transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);}
.v2_c00152{vertical-align:-10.380000px;}
.v0_c00152{vertical-align:0.000000px;}
.v1_c00152{vertical-align:10.380000px;}
.ls1_c00152{letter-spacing:0.000000px;}
.ls0_c00152{letter-spacing:51.187240px;}
.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:-27.236760px;}
.ws1_c00152{word-spacing:0.000000px;}
.fc0_c00152{color:transparent;}
.fsc_c00152{font-size:3.456000px;}
.fs9_c00152{font-size:6.000000px;}
.fs8_c00152{font-size:6.900000px;}
.fsb_c00152{font-size:10.380000px;}
.fs1f_c00152{font-size:13.800000px;}
.fs15_c00152{font-size:17.280000px;}
.fs23_c00152{font-size:20.760000px;}
.fsa_c00152{font-size:24.180000px;}
.fs1e_c00152{font-size:27.660000px;}
.fs19_c00152{font-size:31.080000px;}
.fs21_c00152{font-size:34.560000px;}
.fs17_c00152{font-size:38.040000px;}
.fs1c_c00152{font-size:41.460000px;}
.fs20_c00152{font-size:44.940000px;}
.fs7_c00152{font-size:48.360000px;}
.fs16_c00152{font-size:51.840000px;}
.fs10_c00152{font-size:55.320000px;}
.fs0_c00152{font-size:58.740000px;}
.fs1d_c00152{font-size:62.220000px;}
.fs2_c00152{font-size:65.640000px;}
.fs3_c00152{font-size:69.120000px;}
.fs1_c00152{font-size:72.600000px;}
.fs4_c00152{font-size:76.020000px;}
.fs6_c00152{font-size:79.500000px;}
.fs1b_c00152{font-size:82.920000px;}
.fsf_c00152{font-size:86.400000px;}
.fs5_c00152{font-size:89.880000px;}
.fs14_c00152{font-size:93.300000px;}
.fsd_c00152{font-size:96.780000px;}
.fs11_c00152{font-size:100.200000px;}
.fse_c00152{font-size:103.680000px;}
.fs13_c00152{font-size:107.160000px;}
.fs12_c00152{font-size:110.580000px;}
.fs22_c00152{font-size:114.060000px;}
.fs1a_c00152{font-size:117.480000px;}
.fs24_c00152{font-size:120.960000px;}
.fs18_c00152{font-size:127.860000px;}
.y0_c00152{bottom:0.000000px;}
.y17d_c00152{bottom:215.130000px;}
.y17c_c00152{bottom:216.000000px;}
.y17e_c00152{bottom:216.870000px;}
.y17a_c00152{bottom:217.725000px;}
.y17b_c00152{bottom:220.320000px;}
.y179_c00152{bottom:222.045000px;}
.y177_c00152{bottom:224.640000px;}
.y178_c00152{bottom:231.555000px;}
.y176_c00152{bottom:238.470000px;}
.y174_c00152{bottom:247.110000px;}
.y173_c00152{bottom:249.690000px;}
.y172_c00152{bottom:250.560000px;}
.y171_c00152{bottom:251.430000px;}
.y170_c00152{bottom:254.010000px;}
.y175_c00152{bottom:254.880000px;}
.y16f_c00152{bottom:262.650000px;}
.y16d_c00152{bottom:270.435000px;}
.y16e_c00152{bottom:273.030000px;}
.y16a_c00152{bottom:273.885000px;}
.y16b_c00152{bottom:274.755000px;}
.y169_c00152{bottom:276.480000px;}
.y16c_c00152{bottom:277.350000px;}
.y184_c00152{bottom:288.570000px;}
.y167_c00152{bottom:292.890000px;}
.y168_c00152{bottom:294.630000px;}
.y165_c00152{bottom:298.950000px;}
.y163_c00152{bottom:301.530000px;}
.y161_c00152{bottom:302.400000px;}
.y162_c00152{bottom:304.125000px;}
.y166_c00152{bottom:304.995000px;}
.y164_c00152{bottom:308.445000px;}
.y160_c00152{bottom:323.130000px;}
.y15d_c00152{bottom:325.725000px;}
.y15b_c00152{bottom:326.595000px;}
.y15e_c00152{bottom:328.320000px;}
.y15f_c00152{bottom:329.190000px;}
.y15a_c00152{bottom:331.770000px;}
.y15c_c00152{bottom:333.510000px;}
.y159_c00152{bottom:344.730000px;}
.y157_c00152{bottom:348.195000px;}
.y158_c00152{bottom:349.920000px;}
.y155_c00152{bottom:350.790000px;}
.y154_c00152{bottom:351.645000px;}
.y153_c00152{bottom:352.515000px;}
.y156_c00152{bottom:356.835000px;}
.y151_c00152{bottom:372.390000px;}
.y14f_c00152{bottom:373.245000px;}
.y150_c00152{bottom:374.115000px;}
.y14e_c00152{bottom:374.970000px;}
.y14d_c00152{bottom:376.710000px;}
.y152_c00152{bottom:391.395000px;}
.y14a_c00152{bottom:397.440000px;}
.y14b_c00152{bottom:399.165000px;}
.y149_c00152{bottom:400.890000px;}
.y148_c00152{bottom:402.630000px;}
.y14c_c00152{bottom:404.355000px;}
.y147_c00152{bottom:406.080000px;}
.y146_c00152{bottom:407.805000px;}
.y145_c00152{bottom:409.530000px;}
.y141_c00152{bottom:426.810000px;}
.y13f_c00152{bottom:427.680000px;}
.y13c_c00152{bottom:428.550000px;}
.y13d_c00152{bottom:430.275000px;}
.y13e_c00152{bottom:431.130000px;}
.y142_c00152{bottom:432.000000px;}
.y140_c00152{bottom:433.725000px;}
.y13a_c00152{bottom:434.595000px;}
.y13b_c00152{bottom:435.450000px;}
.y143_c00152{bottom:437.190000px;}
.y144_c00152{bottom:439.770000px;}
.y136_c00152{bottom:450.150000px;}
.y138_c00152{bottom:451.875000px;}
.y132_c00152{bottom:452.730000px;}
.y134_c00152{bottom:453.600000px;}
.y139_c00152{bottom:454.470000px;}
.y137_c00152{bottom:456.195000px;}
.y131_c00152{bottom:458.790000px;}
.y135_c00152{bottom:459.645000px;}
.y133_c00152{bottom:461.370000px;}
.y130_c00152{bottom:472.605000px;}
.y12f_c00152{bottom:475.200000px;}
.y129_c00152{bottom:476.070000px;}
.y12d_c00152{bottom:476.925000px;}
.y12e_c00152{bottom:477.795000px;}
.y12c_c00152{bottom:478.650000px;}
.y12a_c00152{bottom:481.245000px;}
.y125_c00152{bottom:484.710000px;}
.y12b_c00152{bottom:485.565000px;}
.y128_c00152{bottom:486.435000px;}
.y124_c00152{bottom:494.205000px;}
.y127_c00152{bottom:496.800000px;}
.y123_c00152{bottom:498.525000px;}
.y126_c00152{bottom:501.120000px;}
.y120_c00152{bottom:503.715000px;}
.y11e_c00152{bottom:504.570000px;}
.y11f_c00152{bottom:506.310000px;}
.y11d_c00152{bottom:507.165000px;}
.y121_c00152{bottom:508.890000px;}
.y122_c00152{bottom:510.630000px;}
.y11b_c00152{bottom:515.805000px;}
.y11c_c00152{bottom:524.445000px;}
.y11a_c00152{bottom:526.170000px;}
.y113_c00152{bottom:528.765000px;}
.y183_c00152{bottom:530.490000px;}
.y112_c00152{bottom:532.230000px;}
.y118_c00152{bottom:533.085000px;}
.y117_c00152{bottom:533.955000px;}
.y116_c00152{bottom:534.810000px;}
.y115_c00152{bottom:535.680000px;}
.y114_c00152{bottom:537.405000px;}
.y119_c00152{bottom:540.870000px;}
.y10f_c00152{bottom:550.365000px;}
.y10e_c00152{bottom:552.090000px;}
.y10c_c00152{bottom:556.410000px;}
.y110_c00152{bottom:558.150000px;}
.y10d_c00152{bottom:559.005000px;}
.y111_c00152{bottom:560.730000px;}
.y10b_c00152{bottom:575.430000px;}
.y10a_c00152{bottom:576.285000px;}
.y107_c00152{bottom:578.880000px;}
.y103_c00152{bottom:579.750000px;}
.y109_c00152{bottom:580.605000px;}
.y108_c00152{bottom:581.475000px;}
.y102_c00152{bottom:583.200000px;}
.y104_c00152{bottom:584.070000px;}
.y105_c00152{bottom:587.520000px;}
.y106_c00152{bottom:588.390000px;}
.y101_c00152{bottom:597.885000px;}
.yf9_c00152{bottom:605.670000px;}
.yfb_c00152{bottom:608.250000px;}
.yfd_c00152{bottom:609.120000px;}
.yfc_c00152{bottom:609.990000px;}
.yfa_c00152{bottom:613.440000px;}
.y100_c00152{bottom:616.890000px;}
.yfe_c00152{bottom:623.805000px;}
.yff_c00152{bottom:627.270000px;}
.yf2_c00152{bottom:630.720000px;}
.yf6_c00152{bottom:631.590000px;}
.yf3_c00152{bottom:632.445000px;}
.yf7_c00152{bottom:633.315000px;}
.yf4_c00152{bottom:634.170000px;}
.yf5_c00152{bottom:637.635000px;}
.yf1_c00152{bottom:638.490000px;}
.yf8_c00152{bottom:639.360000px;}
.yf0_c00152{bottom:641.955000px;}
.yee_c00152{bottom:655.770000px;}
.yea_c00152{bottom:656.640000px;}
.yed_c00152{bottom:659.235000px;}
.yec_c00152{bottom:662.685000px;}
.yeb_c00152{bottom:663.555000px;}
.yef_c00152{bottom:664.410000px;}
.ye7_c00152{bottom:679.965000px;}
.ye3_c00152{bottom:680.835000px;}
.ye6_c00152{bottom:683.430000px;}
.ye4_c00152{bottom:687.750000px;}
.ye5_c00152{bottom:688.605000px;}
.ye1_c00152{bottom:690.330000px;}
.ye2_c00152{bottom:698.115000px;}
.ye9_c00152{bottom:699.840000px;}
.ye8_c00152{bottom:702.435000px;}
.yda_c00152{bottom:705.885000px;}
.ydb_c00152{bottom:706.755000px;}
.yd9_c00152{bottom:708.480000px;}
.yd8_c00152{bottom:711.930000px;}
.ydc_c00152{bottom:712.800000px;}
.ydd_c00152{bottom:713.670000px;}
.ydf_c00152{bottom:715.395000px;}
.ye0_c00152{bottom:717.120000px;}
.yde_c00152{bottom:724.890000px;}
.yd7_c00152{bottom:727.485000px;}
.yd2_c00152{bottom:728.355000px;}
.yd1_c00152{bottom:729.210000px;}
.yd4_c00152{bottom:730.950000px;}
.yd6_c00152{bottom:732.675000px;}
.yd0_c00152{bottom:733.530000px;}
.yd5_c00152{bottom:734.400000px;}
.yd3_c00152{bottom:735.270000px;}
.yce_c00152{bottom:736.125000px;}
.ycf_c00152{bottom:737.850000px;}
.y182_c00152{bottom:740.445000px;}
.ycc_c00152{bottom:750.810000px;}
.yc7_c00152{bottom:755.130000px;}
.ycb_c00152{bottom:756.000000px;}
.yc8_c00152{bottom:757.725000px;}
.ycd_c00152{bottom:758.595000px;}
.yc9_c00152{bottom:760.320000px;}
.yca_c00152{bottom:761.190000px;}
.yc6_c00152{bottom:762.045000px;}
.yc5_c00152{bottom:762.915000px;}
.yc1_c00152{bottom:777.600000px;}
.yc0_c00152{bottom:778.470000px;}
.yc3_c00152{bottom:779.325000px;}
.ybb_c00152{bottom:780.195000px;}
.ybd_c00152{bottom:781.050000px;}
.ybf_c00152{bottom:781.920000px;}
.yc4_c00152{bottom:783.645000px;}
.yc2_c00152{bottom:784.515000px;}
.ybc_c00152{bottom:785.370000px;}
.ybe_c00152{bottom:787.110000px;}
.yba_c00152{bottom:787.965000px;}
.yb4_c00152{bottom:803.520000px;}
.yb6_c00152{bottom:805.245000px;}
.yb5_c00152{bottom:807.840000px;}
.yb3_c00152{bottom:811.290000px;}
.yb2_c00152{bottom:812.160000px;}
.yb8_c00152{bottom:813.030000px;}
.yb7_c00152{bottom:819.075000px;}
.yb9_c00152{bottom:819.930000px;}
.yb1_c00152{bottom:825.990000px;}
.yae_c00152{bottom:826.845000px;}
.yad_c00152{bottom:827.715000px;}
.yac_c00152{bottom:831.165000px;}
.yb0_c00152{bottom:832.890000px;}
.yaf_c00152{bottom:833.760000px;}
.ya8_c00152{bottom:851.040000px;}
.ya6_c00152{bottom:851.910000px;}
.ya9_c00152{bottom:852.765000px;}
.yab_c00152{bottom:853.635000px;}
.yaa_c00152{bottom:858.810000px;}
.ya7_c00152{bottom:859.680000px;}
.ya4_c00152{bottom:876.090000px;}
.ya3_c00152{bottom:878.685000px;}
.ya5_c00152{bottom:883.875000px;}
.ya1_c00152{bottom:901.155000px;}
.ya2_c00152{bottom:902.010000px;}
.ya0_c00152{bottom:902.880000px;}
.y9e_c00152{bottom:906.330000px;}
.y9f_c00152{bottom:907.200000px;}
.y9c_c00152{bottom:908.925000px;}
.y9d_c00152{bottom:910.650000px;}
.y9b_c00152{bottom:926.205000px;}
.y94_c00152{bottom:928.800000px;}
.y92_c00152{bottom:929.670000px;}
.y95_c00152{bottom:930.525000px;}
.y97_c00152{bottom:931.395000px;}
.y96_c00152{bottom:932.250000px;}
.y9a_c00152{bottom:933.120000px;}
.y98_c00152{bottom:933.990000px;}
.y99_c00152{bottom:934.845000px;}
.y93_c00152{bottom:936.570000px;}
.y91_c00152{bottom:941.760000px;}
.y180_c00152{bottom:942.630000px;}
.y181_c00152{bottom:946.080000px;}
.y8d_c00152{bottom:951.270000px;}
.y8e_c00152{bottom:952.125000px;}
.y8a_c00152{bottom:952.995000px;}
.y8b_c00152{bottom:955.590000px;}
.y90_c00152{bottom:958.170000px;}
.y8f_c00152{bottom:959.910000px;}
.y8c_c00152{bottom:960.765000px;}
.y88_c00152{bottom:976.320000px;}
.y86_c00152{bottom:977.190000px;}
.y87_c00152{bottom:978.045000px;}
.y85_c00152{bottom:978.915000px;}
.y89_c00152{bottom:988.410000px;}
.y7d_c00152{bottom:1003.965000px;}
.y83_c00152{bottom:1004.835000px;}
.y82_c00152{bottom:1005.690000px;}
.y81_c00152{bottom:1008.285000px;}
.y80_c00152{bottom:1009.155000px;}
.y84_c00152{bottom:1010.880000px;}
.y7e_c00152{bottom:1011.750000px;}
.y7f_c00152{bottom:1012.605000px;}
.y7a_c00152{bottom:1029.030000px;}
.y79_c00152{bottom:1029.885000px;}
.y7c_c00152{bottom:1034.205000px;}
.y78_c00152{bottom:1035.075000px;}
.y7b_c00152{bottom:1035.930000px;}
.y77_c00152{bottom:1036.800000px;}
.y76_c00152{bottom:1052.355000px;}
.y6f_c00152{bottom:1054.080000px;}
.y75_c00152{bottom:1054.950000px;}
.y74_c00152{bottom:1056.675000px;}
.y73_c00152{bottom:1059.270000px;}
.y72_c00152{bottom:1060.125000px;}
.y6e_c00152{bottom:1061.850000px;}
.y71_c00152{bottom:1062.720000px;}
.y70_c00152{bottom:1063.590000px;}
.y6d_c00152{bottom:1077.405000px;}
.y6a_c00152{bottom:1080.000000px;}
.y6c_c00152{bottom:1080.870000px;}
.y69_c00152{bottom:1083.450000px;}
.y6b_c00152{bottom:1087.770000px;}
.y67_c00152{bottom:1102.470000px;}
.y65_c00152{bottom:1104.195000px;}
.y60_c00152{bottom:1105.050000px;}
.y62_c00152{bottom:1105.920000px;}
.y61_c00152{bottom:1107.645000px;}
.y64_c00152{bottom:1108.515000px;}
.y68_c00152{bottom:1109.370000px;}
.y66_c00152{bottom:1110.240000px;}
.y5f_c00152{bottom:1111.110000px;}
.y63_c00152{bottom:1112.835000px;}
.y17f_c00152{bottom:1125.795000px;}
.y5e_c00152{bottom:1126.650000px;}
.y5c_c00152{bottom:1128.390000px;}
.y58_c00152{bottom:1129.245000px;}
.y5a_c00152{bottom:1130.115000px;}
.y5b_c00152{bottom:1133.565000px;}
.y57_c00152{bottom:1134.435000px;}
.y5d_c00152{bottom:1135.290000px;}
.y56_c00152{bottom:1137.030000px;}
.y59_c00152{bottom:1137.885000px;}
.y55_c00152{bottom:1152.570000px;}
.y52_c00152{bottom:1154.310000px;}
.y51_c00152{bottom:1155.165000px;}
.y53_c00152{bottom:1157.760000px;}
.y54_c00152{bottom:1160.355000px;}
.y50_c00152{bottom:1161.210000px;}
.y4d_c00152{bottom:1177.635000px;}
.y4a_c00152{bottom:1182.810000px;}
.y4f_c00152{bottom:1184.550000px;}
.y4e_c00152{bottom:1185.405000px;}
.y4c_c00152{bottom:1186.275000px;}
.y4b_c00152{bottom:1187.130000px;}
.y49_c00152{bottom:1188.000000px;}
.y48_c00152{bottom:1202.685000px;}
.y46_c00152{bottom:1203.555000px;}
.y3f_c00152{bottom:1204.410000px;}
.y44_c00152{bottom:1205.280000px;}
.y42_c00152{bottom:1206.150000px;}
.y40_c00152{bottom:1207.005000px;}
.y47_c00152{bottom:1210.470000px;}
.y41_c00152{bottom:1211.325000px;}
.y45_c00152{bottom:1212.195000px;}
.y43_c00152{bottom:1213.920000px;}
.y3c_c00152{bottom:1229.475000px;}
.y33_c00152{bottom:1230.330000px;}
.y36_c00152{bottom:1232.070000px;}
.y3a_c00152{bottom:1232.925000px;}
.y38_c00152{bottom:1234.650000px;}
.y39_c00152{bottom:1236.390000px;}
.y2f_c00152{bottom:1237.245000px;}
.y3b_c00152{bottom:1238.115000px;}
.y37_c00152{bottom:1238.970000px;}
.y3e_c00152{bottom:1239.840000px;}
.y31_c00152{bottom:1244.160000px;}
.y3d_c00152{bottom:1245.030000px;}
.y30_c00152{bottom:1247.610000px;}
.y34_c00152{bottom:1248.480000px;}
.y35_c00152{bottom:1251.075000px;}
.y28_c00152{bottom:1252.800000px;}
.y29_c00152{bottom:1253.670000px;}
.y32_c00152{bottom:1254.525000px;}
.y2d_c00152{bottom:1257.120000px;}
.y27_c00152{bottom:1257.990000px;}
.y2b_c00152{bottom:1259.715000px;}
.y2e_c00152{bottom:1260.570000px;}
.y2c_c00152{bottom:1261.440000px;}
.y2a_c00152{bottom:1262.310000px;}
.y25_c00152{bottom:1275.270000px;}
.y26_c00152{bottom:1276.125000px;}
.y24_c00152{bottom:1277.850000px;}
.y23_c00152{bottom:1293.405000px;}
.y22_c00152{bottom:1297.725000px;}
.y21_c00152{bottom:1302.915000px;}
.y1e_c00152{bottom:1303.770000px;}
.y1f_c00152{bottom:1304.640000px;}
.y20_c00152{bottom:1306.365000px;}
.y1c_c00152{bottom:1308.960000px;}
.y1a_c00152{bottom:1309.830000px;}
.y1d_c00152{bottom:1310.685000px;}
.y1b_c00152{bottom:1312.410000px;}
.y19_c00152{bottom:1313.280000px;}
.y18_c00152{bottom:1327.965000px;}
.y17_c00152{bottom:1328.835000px;}
.y16_c00152{bottom:1329.690000px;}
.y14_c00152{bottom:1330.560000px;}
.y13_c00152{bottom:1331.430000px;}
.y15_c00152{bottom:1334.880000px;}
.y12_c00152{bottom:1337.475000px;}
.yf_c00152{bottom:1354.755000px;}
.yd_c00152{bottom:1355.610000px;}
.y10_c00152{bottom:1359.075000px;}
.ye_c00152{bottom:1360.800000px;}
.y11_c00152{bottom:1362.525000px;}
.ya_c00152{bottom:1379.805000px;}
.y9_c00152{bottom:1380.675000px;}
.yb_c00152{bottom:1381.530000px;}
.y7_c00152{bottom:1382.400000px;}
.yc_c00152{bottom:1383.270000px;}
.y8_c00152{bottom:1386.720000px;}
.y6_c00152{bottom:1389.315000px;}
.y1_c00152{bottom:1392.765000px;}
.y3_c00152{bottom:1393.635000px;}
.y4_c00152{bottom:1394.490000px;}
.y2_c00152{bottom:1395.360000px;}
.y5_c00152{bottom:1397.955000px;}
.he_c00152{height:3.110063px;}
.hb_c00152{height:5.399414px;}
.ha_c00152{height:6.209326px;}
.hd_c00152{height:9.340986px;}
.h22_c00152{height:12.418652px;}
.h18_c00152{height:15.550313px;}
.h26_c00152{height:18.681973px;}
.hc_c00152{height:21.759639px;}
.h21_c00152{height:24.891299px;}
.h1c_c00152{height:27.968965px;}
.h24_c00152{height:31.100625px;}
.h1a_c00152{height:34.232285px;}
.h1f_c00152{height:37.309951px;}
.h23_c00152{height:40.441611px;}
.h9_c00152{height:43.519277px;}
.h19_c00152{height:46.650937px;}
.h13_c00152{height:49.782598px;}
.h2_c00152{height:52.860264px;}
.h20_c00152{height:55.991924px;}
.h4_c00152{height:59.069590px;}
.h5_c00152{height:62.201250px;}
.h3_c00152{height:65.332910px;}
.h6_c00152{height:68.410576px;}
.h8_c00152{height:71.542236px;}
.h1e_c00152{height:74.619902px;}
.h12_c00152{height:77.751563px;}
.h10_c00152{height:78.790576px;}
.h7_c00152{height:80.883223px;}
.h17_c00152{height:83.960889px;}
.hf_c00152{height:87.092549px;}
.h14_c00152{height:90.170215px;}
.h11_c00152{height:93.301875px;}
.h16_c00152{height:96.433535px;}
.h15_c00152{height:99.511201px;}
.h25_c00152{height:102.642861px;}
.h1d_c00152{height:105.720527px;}
.h27_c00152{height:108.852188px;}
.h1b_c00152{height:115.061514px;}
.h0_c00152{height:1523.235000px;}
.h1_c00152{height:1523.250000px;}
.w0_c00152{width:1090.365000px;}
.w1_c00152{width:1090.500000px;}
.x0_c00152{left:0.000000px;}
.xde_c00152{left:122.685000px;}
.xd7_c00152{left:124.410000px;}
.xdf_c00152{left:139.110000px;}
.xd8_c00152{left:140.835000px;}
.xe0_c00152{left:148.605000px;}
.xd9_c00152{left:161.563860px;}
.xe1_c00152{left:171.075000px;}
.xda_c00152{left:172.800000px;}
.xe2_c00152{left:183.165000px;}
.xdb_c00152{left:185.760000px;}
.x31_c00152{left:187.485000px;}
.xf6_c00152{left:190.950000px;}
.x1c_c00152{left:193.530000px;}
.x25_c00152{left:195.270000px;}
.x32_c00152{left:196.995000px;}
.xfa_c00152{left:207.360000px;}
.xe5_c00152{left:210.810000px;}
.x49_c00152{left:212.550000px;}
.xf2_c00152{left:214.275000px;}
.xf7_c00152{left:216.000000px;}
.xa8_c00152{left:220.320000px;}
.x7a_c00152{left:224.640000px;}
.x7d_c00152{left:227.235000px;}
.x26_c00152{left:228.960000px;}
.x94_c00152{left:232.410000px;}
.x96_c00152{left:235.005000px;}
.x16_c00152{left:237.600000px;}
.x1d_c00152{left:239.325000px;}
.x27_c00152{left:241.920000px;}
.x1_c00152{left:243.645000px;}
.xc3_c00152{left:246.240000px;}
.xf0_c00152{left:247.965000px;}
.xe8_c00152{left:251.430000px;}
.xca_c00152{left:254.010000px;}
.xac_c00152{left:255.750000px;}
.x4a_c00152{left:259.200000px;}
.xb3_c00152{left:262.650000px;}
.x5c_c00152{left:265.245000px;}
.x4b_c00152{left:267.840000px;}
.xa9_c00152{left:274.755000px;}
.x87_c00152{left:277.350000px;}
.xd5_c00152{left:279.930000px;}
.x6a_c00152{left:281.670000px;}
.xb8_c00152{left:283.395000px;}
.xd_c00152{left:287.715000px;}
.x17_c00152{left:289.440000px;}
.x4c_c00152{left:291.165000px;}
.xbc_c00152{left:295.485000px;}
.xad_c00152{left:298.950000px;}
.x6b_c00152{left:301.530000px;}
.xcc_c00152{left:303.270000px;}
.xb9_c00152{left:305.850000px;}
.x1e_c00152{left:308.445000px;}
.x55_c00152{left:310.170000px;}
.xbd_c00152{left:311.910000px;}
.x41_c00152{left:316.230000px;}
.xeb_c00152{left:319.680000px;}
.x28_c00152{left:322.275000px;}
.x9c_c00152{left:324.000000px;}
.xc4_c00152{left:325.725000px;}
.x42_c00152{left:329.190000px;}
.xcd_c00152{left:332.640000px;}
.xe_c00152{left:336.960000px;}
.x56_c00152{left:339.555000px;}
.xc5_c00152{left:345.600000px;}
.xf_c00152{left:347.325000px;}
.x35_c00152{left:349.050000px;}
.xce_c00152{left:352.515000px;}
.x88_c00152{left:355.110000px;}
.x1f_c00152{left:356.835000px;}
.x62_c00152{left:358.560000px;}
.x18_c00152{left:362.880000px;}
.x8c_c00152{left:364.605000px;}
.xe6_c00152{left:368.070000px;}
.x97_c00152{left:369.795000px;}
.xcf_c00152{left:374.115000px;}
.x4d_c00152{left:385.350000px;}
.x7e_c00152{left:387.075000px;}
.xe3_c00152{left:389.670000px;}
.x43_c00152{left:391.395000px;}
.xfd_c00152{left:393.990000px;}
.x2_c00152{left:395.715000px;}
.x10_c00152{left:399.165000px;}
.x29_c00152{left:402.630000px;}
.x4e_c00152{left:405.210000px;}
.x8d_c00152{left:408.675000px;}
.x2a_c00152{left:410.400000px;}
.x5d_c00152{left:413.850000px;}
.x98_c00152{left:415.590000px;}
.xdc_c00152{left:418.170000px;}
.x36_c00152{left:422.490000px;}
.xa2_c00152{left:424.230000px;}
.x3_c00152{left:426.810000px;}
.x89_c00152{left:432.000000px;}
.x99_c00152{left:436.320000px;}
.xf3_c00152{left:440.640000px;}
.x7b_c00152{left:442.365000px;}
.x2b_c00152{left:444.960000px;}
.x4f_c00152{left:446.685000px;}
.x20_c00152{left:448.410000px;}
.xef_c00152{left:450.150000px;}
.xd0_c00152{left:455.325000px;}
.xc9_c00152{left:460.515000px;}
.x2c_c00152{left:462.240000px;}
.x7f_c00152{left:464.835000px;}
.x50_c00152{left:467.430000px;}
.xae_c00152{left:470.010000px;}
.xfe_c00152{left:472.605000px;}
.x4_c00152{left:475.200000px;}
.xfb_c00152{left:477.795000px;}
.x57_c00152{left:481.245000px;}
.x51_c00152{left:485.565000px;}
.x63_c00152{left:487.290000px;}
.x71_c00152{left:491.610000px;}
.x8e_c00152{left:499.395000px;}
.x6c_c00152{left:501.990000px;}
.x5_c00152{left:503.715000px;}
.xe4_c00152{left:505.440000px;}
.x58_c00152{left:507.165000px;}
.xf4_c00152{left:510.630000px;}
.x72_c00152{left:512.355000px;}
.x90_c00152{left:514.080000px;}
.x80_c00152{left:516.675000px;}
.xbe_c00152{left:519.270000px;}
.x37_c00152{left:521.850000px;}
.xa3_c00152{left:526.170000px;}
.x21_c00152{left:527.910000px;}
.x6_c00152{left:530.490000px;}
.x6d_c00152{left:532.230000px;}
.xb4_c00152{left:533.955000px;}
.xe7_c00152{left:535.680000px;}
.x44_c00152{left:540.000000px;}
.x73_c00152{left:542.595000px;}
.x5e_c00152{left:546.045000px;}
.x64_c00152{left:549.510000px;}
.x38_c00152{left:552.960000px;}
.x2d_c00152{left:554.685000px;}
.xbf_c00152{left:557.280000px;}
.x9d_c00152{left:559.005000px;}
.x7c_c00152{left:560.730000px;}
.x45_c00152{left:562.470000px;}
.xec_c00152{left:564.195000px;}
.x74_c00152{left:567.645000px;}
.x19_c00152{left:569.370000px;}
.x81_c00152{left:571.965000px;}
.xd2_c00152{left:574.560000px;}
.x9a_c00152{left:577.155000px;}
.x33_c00152{left:581.475000px;}
.x7_c00152{left:585.795000px;}
.x82_c00152{left:588.390000px;}
.x46_c00152{left:590.970000px;}
.xc6_c00152{left:592.710000px;}
.x22_c00152{left:594.435000px;}
.xe9_c00152{left:597.030000px;}
.xaa_c00152{left:598.755000px;}
.xa4_c00152{left:602.205000px;}
.xf8_c00152{left:603.930000px;}
.x65_c00152{left:609.990000px;}
.x39_c00152{left:613.440000px;}
.xab_c00152{left:615.165000px;}
.x47_c00152{left:616.890000px;}
.x52_c00152{left:621.210000px;}
.xb5_c00152{left:623.805000px;}
.xa5_c00152{left:625.530000px;}
.x6e_c00152{left:629.850000px;}
.x66_c00152{left:631.590000px;}
.x8_c00152{left:633.315000px;}
.xb6_c00152{left:635.910000px;}
.x23_c00152{left:638.490000px;}
.x11_c00152{left:640.230000px;}
.x83_c00152{left:641.955000px;}
.x9f_c00152{left:643.680000px;}
.xdd_c00152{left:648.000000px;}
.x91_c00152{left:651.450000px;}
.x2e_c00152{left:654.045000px;}
.x9_c00152{left:657.510000px;}
.x75_c00152{left:660.090000px;}
.x67_c00152{left:661.830000px;}
.xa6_c00152{left:666.150000px;}
.xc0_c00152{left:669.600000px;}
.xea_c00152{left:671.325000px;}
.x3a_c00152{left:673.050000px;}
.xaf_c00152{left:674.790000px;}
.x2f_c00152{left:679.965000px;}
.xa_c00152{left:681.690000px;}
.x84_c00152{left:686.010000px;}
.xcb_c00152{left:689.475000px;}
.x12_c00152{left:691.200000px;}
.x9e_c00152{left:693.795000px;}
.x53_c00152{left:696.390000px;}
.x1a_c00152{left:698.970000px;}
.x59_c00152{left:702.435000px;}
.xb_c00152{left:704.160000px;}
.x76_c00152{left:705.885000px;}
.x5f_c00152{left:709.350000px;}
.x3b_c00152{left:711.930000px;}
.x24_c00152{left:714.525000px;}
.x85_c00152{left:716.250000px;}
.x9b_c00152{left:720.570000px;}
.x6f_c00152{left:725.760000px;}
.x3c_c00152{left:727.485000px;}
.x1b_c00152{left:730.080000px;}
.xf5_c00152{left:731.805000px;}
.x13_c00152{left:736.995000px;}
.xa0_c00152{left:741.315000px;}
.x60_c00152{left:743.040000px;}
.x3d_c00152{left:745.635000px;}
.xc_c00152{left:748.230000px;}
.x70_c00152{left:750.810000px;}
.xc1_c00152{left:752.550000px;}
.xba_c00152{left:754.275000px;}
.x30_c00152{left:756.870000px;}
.xb7_c00152{left:758.595000px;}
.xd3_c00152{left:762.045000px;}
.x86_c00152{left:764.640000px;}
.xd1_c00152{left:768.090000px;}
.x68_c00152{left:776.730000px;}
.xb0_c00152{left:778.470000px;}
.xd6_c00152{left:781.920000px;}
.x8a_c00152{left:783.645000px;}
.xa7_c00152{left:785.370000px;}
.x77_c00152{left:787.110000px;}
.x14_c00152{left:788.835000px;}
.xc7_c00152{left:792.285000px;}
.x5a_c00152{left:794.880000px;}
.xb1_c00152{left:797.475000px;}
.x3e_c00152{left:800.070000px;}
.x69_c00152{left:801.795000px;}
.x95_c00152{left:804.390000px;}
.x92_c00152{left:807.840000px;}
.x5b_c00152{left:816.480000px;}
.xc8_c00152{left:819.930000px;}
.xbb_c00152{left:822.525000px;}
.x8f_c00152{left:824.250000px;}
.x34_c00152{left:828.570000px;}
.x3f_c00152{left:831.165000px;}
.x61_c00152{left:834.630000px;}
.xfc_c00152{left:836.355000px;}
.xf1_c00152{left:838.080000px;}
.xa1_c00152{left:839.805000px;}
.x48_c00152{left:843.270000px;}
.x78_c00152{left:845.850000px;}
.xc2_c00152{left:847.590912px;}
.x40_c00152{left:853.635000px;}
.xd4_c00152{left:860.550000px;}
.x8b_c00152{left:864.000000px;}
.x79_c00152{left:870.915000px;}
.xee_c00152{left:876.960000px;}
.x15_c00152{left:881.280000px;}
.xb2_c00152{left:885.600000px;}
.xed_c00152{left:894.240000px;}
.xf9_c00152{left:895.965000px;}
.x54_c00152{left:921.885000px;}
.x93_c00152{left:923.610000px;}
.x101_c00152{left:1016.070000px;}
.x103_c00152{left:1022.970000px;}
.x104_c00152{left:1029.030000px;}
.x102_c00152{left:1034.205000px;}
.x105_c00152{left:1066.170000px;}
.xff_c00152{left:1069.635000px;}
.x100_c00152{left:1080.000000px;}
.x106_c00152{left:1083.450000px;}
@media print{
.v2_c00152{vertical-align:-9.226667pt;}
.v0_c00152{vertical-align:0.000000pt;}
.v1_c00152{vertical-align:9.226667pt;}
.ls1_c00152{letter-spacing:0.000000pt;}
.ls0_c00152{letter-spacing:45.499769pt;}
.ws0_c00152{word-spacing:-24.210453pt;}
.ws1_c00152{word-spacing:0.000000pt;}
.fsc_c00152{font-size:3.072000pt;}
.fs9_c00152{font-size:5.333333pt;}
.fs8_c00152{font-size:6.133333pt;}
.fsb_c00152{font-size:9.226667pt;}
.fs1f_c00152{font-size:12.266667pt;}
.fs15_c00152{font-size:15.360000pt;}
.fs23_c00152{font-size:18.453333pt;}
.fsa_c00152{font-size:21.493333pt;}
.fs1e_c00152{font-size:24.586667pt;}
.fs19_c00152{font-size:27.626667pt;}
.fs21_c00152{font-size:30.720000pt;}
.fs17_c00152{font-size:33.813333pt;}
.fs1c_c00152{font-size:36.853333pt;}
.fs20_c00152{font-size:39.946667pt;}
.fs7_c00152{font-size:42.986667pt;}
.fs16_c00152{font-size:46.080000pt;}
.fs10_c00152{font-size:49.173333pt;}
.fs0_c00152{font-size:52.213333pt;}
.fs1d_c00152{font-size:55.306667pt;}
.fs2_c00152{font-size:58.346667pt;}
.fs3_c00152{font-size:61.440000pt;}
.fs1_c00152{font-size:64.533333pt;}
.fs4_c00152{font-size:67.573333pt;}
.fs6_c00152{font-size:70.666667pt;}
.fs1b_c00152{font-size:73.706667pt;}
.fsf_c00152{font-size:76.800000pt;}
.fs5_c00152{font-size:79.893333pt;}
.fs14_c00152{font-size:82.933333pt;}
.fsd_c00152{font-size:86.026667pt;}
.fs11_c00152{font-size:89.066667pt;}
.fse_c00152{font-size:92.160000pt;}
.fs13_c00152{font-size:95.253333pt;}
.fs12_c00152{font-size:98.293333pt;}
.fs22_c00152{font-size:101.386667pt;}
.fs1a_c00152{font-size:104.426667pt;}
.fs24_c00152{font-size:107.520000pt;}
.fs18_c00152{font-size:113.653333pt;}
.y0_c00152{bottom:0.000000pt;}
.y17d_c00152{bottom:191.226667pt;}
.y17c_c00152{bottom:192.000000pt;}
.y17e_c00152{bottom:192.773333pt;}
.y17a_c00152{bottom:193.533333pt;}
.y17b_c00152{bottom:195.840000pt;}
.y179_c00152{bottom:197.373333pt;}
.y177_c00152{bottom:199.680000pt;}
.y178_c00152{bottom:205.826667pt;}
.y176_c00152{bottom:211.973333pt;}
.y174_c00152{bottom:219.653333pt;}
.y173_c00152{bottom:221.946667pt;}
.y172_c00152{bottom:222.720000pt;}
.y171_c00152{bottom:223.493333pt;}
.y170_c00152{bottom:225.786667pt;}
.y175_c00152{bottom:226.560000pt;}
.y16f_c00152{bottom:233.466667pt;}
.y16d_c00152{bottom:240.386667pt;}
.y16e_c00152{bottom:242.693333pt;}
.y16a_c00152{bottom:243.453333pt;}
.y16b_c00152{bottom:244.226667pt;}
.y169_c00152{bottom:245.760000pt;}
.y16c_c00152{bottom:246.533333pt;}
.y184_c00152{bottom:256.506667pt;}
.y167_c00152{bottom:260.346667pt;}
.y168_c00152{bottom:261.893333pt;}
.y165_c00152{bottom:265.733333pt;}
.y163_c00152{bottom:268.026667pt;}
.y161_c00152{bottom:268.800000pt;}
.y162_c00152{bottom:270.333333pt;}
.y166_c00152{bottom:271.106667pt;}
.y164_c00152{bottom:274.173333pt;}
.y160_c00152{bottom:287.226667pt;}
.y15d_c00152{bottom:289.533333pt;}
.y15b_c00152{bottom:290.306667pt;}
.y15e_c00152{bottom:291.840000pt;}
.y15f_c00152{bottom:292.613333pt;}
.y15a_c00152{bottom:294.906667pt;}
.y15c_c00152{bottom:296.453333pt;}
.y159_c00152{bottom:306.426667pt;}
.y157_c00152{bottom:309.506667pt;}
.y158_c00152{bottom:311.040000pt;}
.y155_c00152{bottom:311.813333pt;}
.y154_c00152{bottom:312.573333pt;}
.y153_c00152{bottom:313.346667pt;}
.y156_c00152{bottom:317.186667pt;}
.y151_c00152{bottom:331.013333pt;}
.y14f_c00152{bottom:331.773333pt;}
.y150_c00152{bottom:332.546667pt;}
.y14e_c00152{bottom:333.306667pt;}
.y14d_c00152{bottom:334.853333pt;}
.y152_c00152{bottom:347.906667pt;}
.y14a_c00152{bottom:353.280000pt;}
.y14b_c00152{bottom:354.813333pt;}
.y149_c00152{bottom:356.346667pt;}
.y148_c00152{bottom:357.893333pt;}
.y14c_c00152{bottom:359.426667pt;}
.y147_c00152{bottom:360.960000pt;}
.y146_c00152{bottom:362.493333pt;}
.y145_c00152{bottom:364.026667pt;}
.y141_c00152{bottom:379.386667pt;}
.y13f_c00152{bottom:380.160000pt;}
.y13c_c00152{bottom:380.933333pt;}
.y13d_c00152{bottom:382.466667pt;}
.y13e_c00152{bottom:383.226667pt;}
.y142_c00152{bottom:384.000000pt;}
.y140_c00152{bottom:385.533333pt;}
.y13a_c00152{bottom:386.306667pt;}
.y13b_c00152{bottom:387.066667pt;}
.y143_c00152{bottom:388.613333pt;}
.y144_c00152{bottom:390.906667pt;}
.y136_c00152{bottom:400.133333pt;}
.y138_c00152{bottom:401.666667pt;}
.y132_c00152{bottom:402.426667pt;}
.y134_c00152{bottom:403.200000pt;}
.y139_c00152{bottom:403.973333pt;}
.y137_c00152{bottom:405.506667pt;}
.y131_c00152{bottom:407.813333pt;}
.y135_c00152{bottom:408.573333pt;}
.y133_c00152{bottom:410.106667pt;}
.y130_c00152{bottom:420.093333pt;}
.y12f_c00152{bottom:422.400000pt;}
.y129_c00152{bottom:423.173333pt;}
.y12d_c00152{bottom:423.933333pt;}
.y12e_c00152{bottom:424.706667pt;}
.y12c_c00152{bottom:425.466667pt;}
.y12a_c00152{bottom:427.773333pt;}
.y125_c00152{bottom:430.853333pt;}
.y12b_c00152{bottom:431.613333pt;}
.y128_c00152{bottom:432.386667pt;}
.y124_c00152{bottom:439.293333pt;}
.y127_c00152{bottom:441.600000pt;}
.y123_c00152{bottom:443.133333pt;}
.y126_c00152{bottom:445.440000pt;}
.y120_c00152{bottom:447.746667pt;}
.y11e_c00152{bottom:448.506667pt;}
.y11f_c00152{bottom:450.053333pt;}
.y11d_c00152{bottom:450.813333pt;}
.y121_c00152{bottom:452.346667pt;}
.y122_c00152{bottom:453.893333pt;}
.y11b_c00152{bottom:458.493333pt;}
.y11c_c00152{bottom:466.173333pt;}
.y11a_c00152{bottom:467.706667pt;}
.y113_c00152{bottom:470.013333pt;}
.y183_c00152{bottom:471.546667pt;}
.y112_c00152{bottom:473.093333pt;}
.y118_c00152{bottom:473.853333pt;}
.y117_c00152{bottom:474.626667pt;}
.y116_c00152{bottom:475.386667pt;}
.y115_c00152{bottom:476.160000pt;}
.y114_c00152{bottom:477.693333pt;}
.y119_c00152{bottom:480.773333pt;}
.y10f_c00152{bottom:489.213333pt;}
.y10e_c00152{bottom:490.746667pt;}
.y10c_c00152{bottom:494.586667pt;}
.y110_c00152{bottom:496.133333pt;}
.y10d_c00152{bottom:496.893333pt;}
.y111_c00152{bottom:498.426667pt;}
.y10b_c00152{bottom:511.493333pt;}
.y10a_c00152{bottom:512.253333pt;}
.y107_c00152{bottom:514.560000pt;}
.y103_c00152{bottom:515.333333pt;}
.y109_c00152{bottom:516.093333pt;}
.y108_c00152{bottom:516.866667pt;}
.y102_c00152{bottom:518.400000pt;}
.y104_c00152{bottom:519.173333pt;}
.y105_c00152{bottom:522.240000pt;}
.y106_c00152{bottom:523.013333pt;}
.y101_c00152{bottom:531.453333pt;}
.yf9_c00152{bottom:538.373333pt;}
.yfb_c00152{bottom:540.666667pt;}
.yfd_c00152{bottom:541.440000pt;}
.yfc_c00152{bottom:542.213333pt;}
.yfa_c00152{bottom:545.280000pt;}
.y100_c00152{bottom:548.346667pt;}
.yfe_c00152{bottom:554.493333pt;}
.yff_c00152{bottom:557.573333pt;}
.yf2_c00152{bottom:560.640000pt;}
.yf6_c00152{bottom:561.413333pt;}
.yf3_c00152{bottom:562.173333pt;}
.yf7_c00152{bottom:562.946667pt;}
.yf4_c00152{bottom:563.706667pt;}
.yf5_c00152{bottom:566.786667pt;}
.yf1_c00152{bottom:567.546667pt;}
.yf8_c00152{bottom:568.320000pt;}
.yf0_c00152{bottom:570.626667pt;}
.yee_c00152{bottom:582.906667pt;}
.yea_c00152{bottom:583.680000pt;}
.yed_c00152{bottom:585.986667pt;}
.yec_c00152{bottom:589.053333pt;}
.yeb_c00152{bottom:589.826667pt;}
.yef_c00152{bottom:590.586667pt;}
.ye7_c00152{bottom:604.413333pt;}
.ye3_c00152{bottom:605.186667pt;}
.ye6_c00152{bottom:607.493333pt;}
.ye4_c00152{bottom:611.333333pt;}
.ye5_c00152{bottom:612.093333pt;}
.ye1_c00152{bottom:613.626667pt;}
.ye2_c00152{bottom:620.546667pt;}
.ye9_c00152{bottom:622.080000pt;}
.ye8_c00152{bottom:624.386667pt;}
.yda_c00152{bottom:627.453333pt;}
.ydb_c00152{bottom:628.226667pt;}
.yd9_c00152{bottom:629.760000pt;}
.yd8_c00152{bottom:632.826667pt;}
.ydc_c00152{bottom:633.600000pt;}
.ydd_c00152{bottom:634.373333pt;}
.ydf_c00152{bottom:635.906667pt;}
.ye0_c00152{bottom:637.440000pt;}
.yde_c00152{bottom:644.346667pt;}
.yd7_c00152{bottom:646.653333pt;}
.yd2_c00152{bottom:647.426667pt;}
.yd1_c00152{bottom:648.186667pt;}
.yd4_c00152{bottom:649.733333pt;}
.yd6_c00152{bottom:651.266667pt;}
.yd0_c00152{bottom:652.026667pt;}
.yd5_c00152{bottom:652.800000pt;}
.yd3_c00152{bottom:653.573333pt;}
.yce_c00152{bottom:654.333333pt;}
.ycf_c00152{bottom:655.866667pt;}
.y182_c00152{bottom:658.173333pt;}
.ycc_c00152{bottom:667.386667pt;}
.yc7_c00152{bottom:671.226667pt;}
.ycb_c00152{bottom:672.000000pt;}
.yc8_c00152{bottom:673.533333pt;}
.ycd_c00152{bottom:674.306667pt;}
.yc9_c00152{bottom:675.840000pt;}
.yca_c00152{bottom:676.613333pt;}
.yc6_c00152{bottom:677.373333pt;}
.yc5_c00152{bottom:678.146667pt;}
.yc1_c00152{bottom:691.200000pt;}
.yc0_c00152{bottom:691.973333pt;}
.yc3_c00152{bottom:692.733333pt;}
.ybb_c00152{bottom:693.506667pt;}
.ybd_c00152{bottom:694.266667pt;}
.ybf_c00152{bottom:695.040000pt;}
.yc4_c00152{bottom:696.573333pt;}
.yc2_c00152{bottom:697.346667pt;}
.ybc_c00152{bottom:698.106667pt;}
.ybe_c00152{bottom:699.653333pt;}
.yba_c00152{bottom:700.413333pt;}
.yb4_c00152{bottom:714.240000pt;}
.yb6_c00152{bottom:715.773333pt;}
.yb5_c00152{bottom:718.080000pt;}
.yb3_c00152{bottom:721.146667pt;}
.yb2_c00152{bottom:721.920000pt;}
.yb8_c00152{bottom:722.693333pt;}
.yb7_c00152{bottom:728.066667pt;}
.yb9_c00152{bottom:728.826667pt;}
.yb1_c00152{bottom:734.213333pt;}
.yae_c00152{bottom:734.973333pt;}
.yad_c00152{bottom:735.746667pt;}
.yac_c00152{bottom:738.813333pt;}
.yb0_c00152{bottom:740.346667pt;}
.yaf_c00152{bottom:741.120000pt;}
.ya8_c00152{bottom:756.480000pt;}
.ya6_c00152{bottom:757.253333pt;}
.ya9_c00152{bottom:758.013333pt;}
.yab_c00152{bottom:758.786667pt;}
.yaa_c00152{bottom:763.386667pt;}
.ya7_c00152{bottom:764.160000pt;}
.ya4_c00152{bottom:778.746667pt;}
.ya3_c00152{bottom:781.053333pt;}
.ya5_c00152{bottom:785.666667pt;}
.ya1_c00152{bottom:801.026667pt;}
.ya2_c00152{bottom:801.786667pt;}
.ya0_c00152{bottom:802.560000pt;}
.y9e_c00152{bottom:805.626667pt;}
.y9f_c00152{bottom:806.400000pt;}
.y9c_c00152{bottom:807.933333pt;}
.y9d_c00152{bottom:809.466667pt;}
.y9b_c00152{bottom:823.293333pt;}
.y94_c00152{bottom:825.600000pt;}
.y92_c00152{bottom:826.373333pt;}
.y95_c00152{bottom:827.133333pt;}
.y97_c00152{bottom:827.906667pt;}
.y96_c00152{bottom:828.666667pt;}
.y9a_c00152{bottom:829.440000pt;}
.y98_c00152{bottom:830.213333pt;}
.y99_c00152{bottom:830.973333pt;}
.y93_c00152{bottom:832.506667pt;}
.y91_c00152{bottom:837.120000pt;}
.y180_c00152{bottom:837.893333pt;}
.y181_c00152{bottom:840.960000pt;}
.y8d_c00152{bottom:845.573333pt;}
.y8e_c00152{bottom:846.333333pt;}
.y8a_c00152{bottom:847.106667pt;}
.y8b_c00152{bottom:849.413333pt;}
.y90_c00152{bottom:851.706667pt;}
.y8f_c00152{bottom:853.253333pt;}
.y8c_c00152{bottom:854.013333pt;}
.y88_c00152{bottom:867.840000pt;}
.y86_c00152{bottom:868.613333pt;}
.y87_c00152{bottom:869.373333pt;}
.y85_c00152{bottom:870.146667pt;}
.y89_c00152{bottom:878.586667pt;}
.y7d_c00152{bottom:892.413333pt;}
.y83_c00152{bottom:893.186667pt;}
.y82_c00152{bottom:893.946667pt;}
.y81_c00152{bottom:896.253333pt;}
.y80_c00152{bottom:897.026667pt;}
.y84_c00152{bottom:898.560000pt;}
.y7e_c00152{bottom:899.333333pt;}
.y7f_c00152{bottom:900.093333pt;}
.y7a_c00152{bottom:914.693333pt;}
.y79_c00152{bottom:915.453333pt;}
.y7c_c00152{bottom:919.293333pt;}
.y78_c00152{bottom:920.066667pt;}
.y7b_c00152{bottom:920.826667pt;}
.y77_c00152{bottom:921.600000pt;}
.y76_c00152{bottom:935.426667pt;}
.y6f_c00152{bottom:936.960000pt;}
.y75_c00152{bottom:937.733333pt;}
.y74_c00152{bottom:939.266667pt;}
.y73_c00152{bottom:941.573333pt;}
.y72_c00152{bottom:942.333333pt;}
.y6e_c00152{bottom:943.866667pt;}
.y71_c00152{bottom:944.640000pt;}
.y70_c00152{bottom:945.413333pt;}
.y6d_c00152{bottom:957.693333pt;}
.y6a_c00152{bottom:960.000000pt;}
.y6c_c00152{bottom:960.773333pt;}
.y69_c00152{bottom:963.066667pt;}
.y6b_c00152{bottom:966.906667pt;}
.y67_c00152{bottom:979.973333pt;}
.y65_c00152{bottom:981.506667pt;}
.y60_c00152{bottom:982.266667pt;}
.y62_c00152{bottom:983.040000pt;}
.y61_c00152{bottom:984.573333pt;}
.y64_c00152{bottom:985.346667pt;}
.y68_c00152{bottom:986.106667pt;}
.y66_c00152{bottom:986.880000pt;}
.y5f_c00152{bottom:987.653333pt;}
.y63_c00152{bottom:989.186667pt;}
.y17f_c00152{bottom:1000.706667pt;}
.y5e_c00152{bottom:1001.466667pt;}
.y5c_c00152{bottom:1003.013333pt;}
.y58_c00152{bottom:1003.773333pt;}
.y5a_c00152{bottom:1004.546667pt;}
.y5b_c00152{bottom:1007.613333pt;}
.y57_c00152{bottom:1008.386667pt;}
.y5d_c00152{bottom:1009.146667pt;}
.y56_c00152{bottom:1010.693333pt;}
.y59_c00152{bottom:1011.453333pt;}
.y55_c00152{bottom:1024.506667pt;}
.y52_c00152{bottom:1026.053333pt;}
.y51_c00152{bottom:1026.813333pt;}
.y53_c00152{bottom:1029.120000pt;}
.y54_c00152{bottom:1031.426667pt;}
.y50_c00152{bottom:1032.186667pt;}
.y4d_c00152{bottom:1046.786667pt;}
.y4a_c00152{bottom:1051.386667pt;}
.y4f_c00152{bottom:1052.933333pt;}
.y4e_c00152{bottom:1053.693333pt;}
.y4c_c00152{bottom:1054.466667pt;}
.y4b_c00152{bottom:1055.226667pt;}
.y49_c00152{bottom:1056.000000pt;}
.y48_c00152{bottom:1069.053333pt;}
.y46_c00152{bottom:1069.826667pt;}
.y3f_c00152{bottom:1070.586667pt;}
.y44_c00152{bottom:1071.360000pt;}
.y42_c00152{bottom:1072.133333pt;}
.y40_c00152{bottom:1072.893333pt;}
.y47_c00152{bottom:1075.973333pt;}
.y41_c00152{bottom:1076.733333pt;}
.y45_c00152{bottom:1077.506667pt;}
.y43_c00152{bottom:1079.040000pt;}
.y3c_c00152{bottom:1092.866667pt;}
.y33_c00152{bottom:1093.626667pt;}
.y36_c00152{bottom:1095.173333pt;}
.y3a_c00152{bottom:1095.933333pt;}
.y38_c00152{bottom:1097.466667pt;}
.y39_c00152{bottom:1099.013333pt;}
.y2f_c00152{bottom:1099.773333pt;}
.y3b_c00152{bottom:1100.546667pt;}
.y37_c00152{bottom:1101.306667pt;}
.y3e_c00152{bottom:1102.080000pt;}
.y31_c00152{bottom:1105.920000pt;}
.y3d_c00152{bottom:1106.693333pt;}
.y30_c00152{bottom:1108.986667pt;}
.y34_c00152{bottom:1109.760000pt;}
.y35_c00152{bottom:1112.066667pt;}
.y28_c00152{bottom:1113.600000pt;}
.y29_c00152{bottom:1114.373333pt;}
.y32_c00152{bottom:1115.133333pt;}
.y2d_c00152{bottom:1117.440000pt;}
.y27_c00152{bottom:1118.213333pt;}
.y2b_c00152{bottom:1119.746667pt;}
.y2e_c00152{bottom:1120.506667pt;}
.y2c_c00152{bottom:1121.280000pt;}
.y2a_c00152{bottom:1122.053333pt;}
.y25_c00152{bottom:1133.573333pt;}
.y26_c00152{bottom:1134.333333pt;}
.y24_c00152{bottom:1135.866667pt;}
.y23_c00152{bottom:1149.693333pt;}
.y22_c00152{bottom:1153.533333pt;}
.y21_c00152{bottom:1158.146667pt;}
.y1e_c00152{bottom:1158.906667pt;}
.y1f_c00152{bottom:1159.680000pt;}
.y20_c00152{bottom:1161.213333pt;}
.y1c_c00152{bottom:1163.520000pt;}
.y1a_c00152{bottom:1164.293333pt;}
.y1d_c00152{bottom:1165.053333pt;}
.y1b_c00152{bottom:1166.586667pt;}
.y19_c00152{bottom:1167.360000pt;}
.y18_c00152{bottom:1180.413333pt;}
.y17_c00152{bottom:1181.186667pt;}
.y16_c00152{bottom:1181.946667pt;}
.y14_c00152{bottom:1182.720000pt;}
.y13_c00152{bottom:1183.493333pt;}
.y15_c00152{bottom:1186.560000pt;}
.y12_c00152{bottom:1188.866667pt;}
.yf_c00152{bottom:1204.226667pt;}
.yd_c00152{bottom:1204.986667pt;}
.y10_c00152{bottom:1208.066667pt;}
.ye_c00152{bottom:1209.600000pt;}
.y11_c00152{bottom:1211.133333pt;}
.ya_c00152{bottom:1226.493333pt;}
.y9_c00152{bottom:1227.266667pt;}
.yb_c00152{bottom:1228.026667pt;}
.y7_c00152{bottom:1228.800000pt;}
.yc_c00152{bottom:1229.573333pt;}
.y8_c00152{bottom:1232.640000pt;}
.y6_c00152{bottom:1234.946667pt;}
.y1_c00152{bottom:1238.013333pt;}
.y3_c00152{bottom:1238.786667pt;}
.y4_c00152{bottom:1239.546667pt;}
.y2_c00152{bottom:1240.320000pt;}
.y5_c00152{bottom:1242.626667pt;}
.he_c00152{height:2.764500pt;}
.hb_c00152{height:4.799479pt;}
.ha_c00152{height:5.519401pt;}
.hd_c00152{height:8.303099pt;}
.h22_c00152{height:11.038802pt;}
.h18_c00152{height:13.822500pt;}
.h26_c00152{height:16.606198pt;}
.hc_c00152{height:19.341901pt;}
.h21_c00152{height:22.125599pt;}
.h1c_c00152{height:24.861302pt;}
.h24_c00152{height:27.645000pt;}
.h1a_c00152{height:30.428698pt;}
.h1f_c00152{height:33.164401pt;}
.h23_c00152{height:35.948099pt;}
.h9_c00152{height:38.683802pt;}
.h19_c00152{height:41.467500pt;}
.h13_c00152{height:44.251198pt;}
.h2_c00152{height:46.986901pt;}
.h20_c00152{height:49.770599pt;}
.h4_c00152{height:52.506302pt;}
.h5_c00152{height:55.290000pt;}
.h3_c00152{height:58.073698pt;}
.h6_c00152{height:60.809401pt;}
.h8_c00152{height:63.593099pt;}
.h1e_c00152{height:66.328802pt;}
.h12_c00152{height:69.112500pt;}
.h10_c00152{height:70.036068pt;}
.h7_c00152{height:71.896198pt;}
.h17_c00152{height:74.631901pt;}
.hf_c00152{height:77.415599pt;}
.h14_c00152{height:80.151302pt;}
.h11_c00152{height:82.935000pt;}
.h16_c00152{height:85.718698pt;}
.h15_c00152{height:88.454401pt;}
.h25_c00152{height:91.238099pt;}
.h1d_c00152{height:93.973802pt;}
.h27_c00152{height:96.757500pt;}
.h1b_c00152{height:102.276901pt;}
.h0_c00152{height:1353.986667pt;}
.h1_c00152{height:1354.000000pt;}
.w0_c00152{width:969.213333pt;}
.w1_c00152{width:969.333333pt;}
.x0_c00152{left:0.000000pt;}
.xde_c00152{left:109.053333pt;}
.xd7_c00152{left:110.586667pt;}
.xdf_c00152{left:123.653333pt;}
.xd8_c00152{left:125.186667pt;}
.xe0_c00152{left:132.093333pt;}
.xd9_c00152{left:143.612320pt;}
.xe1_c00152{left:152.066667pt;}
.xda_c00152{left:153.600000pt;}
.xe2_c00152{left:162.813333pt;}
.xdb_c00152{left:165.120000pt;}
.x31_c00152{left:166.653333pt;}
.xf6_c00152{left:169.733333pt;}
.x1c_c00152{left:172.026667pt;}
.x25_c00152{left:173.573333pt;}
.x32_c00152{left:175.106667pt;}
.xfa_c00152{left:184.320000pt;}
.xe5_c00152{left:187.386667pt;}
.x49_c00152{left:188.933333pt;}
.xf2_c00152{left:190.466667pt;}
.xf7_c00152{left:192.000000pt;}
.xa8_c00152{left:195.840000pt;}
.x7a_c00152{left:199.680000pt;}
.x7d_c00152{left:201.986667pt;}
.x26_c00152{left:203.520000pt;}
.x94_c00152{left:206.586667pt;}
.x96_c00152{left:208.893333pt;}
.x16_c00152{left:211.200000pt;}
.x1d_c00152{left:212.733333pt;}
.x27_c00152{left:215.040000pt;}
.x1_c00152{left:216.573333pt;}
.xc3_c00152{left:218.880000pt;}
.xf0_c00152{left:220.413333pt;}
.xe8_c00152{left:223.493333pt;}
.xca_c00152{left:225.786667pt;}
.xac_c00152{left:227.333333pt;}
.x4a_c00152{left:230.400000pt;}
.xb3_c00152{left:233.466667pt;}
.x5c_c00152{left:235.773333pt;}
.x4b_c00152{left:238.080000pt;}
.xa9_c00152{left:244.226667pt;}
.x87_c00152{left:246.533333pt;}
.xd5_c00152{left:248.826667pt;}
.x6a_c00152{left:250.373333pt;}
.xb8_c00152{left:251.906667pt;}
.xd_c00152{left:255.746667pt;}
.x17_c00152{left:257.280000pt;}
.x4c_c00152{left:258.813333pt;}
.xbc_c00152{left:262.653333pt;}
.xad_c00152{left:265.733333pt;}
.x6b_c00152{left:268.026667pt;}
.xcc_c00152{left:269.573333pt;}
.xb9_c00152{left:271.866667pt;}
.x1e_c00152{left:274.173333pt;}
.x55_c00152{left:275.706667pt;}
.xbd_c00152{left:277.253333pt;}
.x41_c00152{left:281.093333pt;}
.xeb_c00152{left:284.160000pt;}
.x28_c00152{left:286.466667pt;}
.x9c_c00152{left:288.000000pt;}
.xc4_c00152{left:289.533333pt;}
.x42_c00152{left:292.613333pt;}
.xcd_c00152{left:295.680000pt;}
.xe_c00152{left:299.520000pt;}
.x56_c00152{left:301.826667pt;}
.xc5_c00152{left:307.200000pt;}
.xf_c00152{left:308.733333pt;}
.x35_c00152{left:310.266667pt;}
.xce_c00152{left:313.346667pt;}
.x88_c00152{left:315.653333pt;}
.x1f_c00152{left:317.186667pt;}
.x62_c00152{left:318.720000pt;}
.x18_c00152{left:322.560000pt;}
.x8c_c00152{left:324.093333pt;}
.xe6_c00152{left:327.173333pt;}
.x97_c00152{left:328.706667pt;}
.xcf_c00152{left:332.546667pt;}
.x4d_c00152{left:342.533333pt;}
.x7e_c00152{left:344.066667pt;}
.xe3_c00152{left:346.373333pt;}
.x43_c00152{left:347.906667pt;}
.xfd_c00152{left:350.213333pt;}
.x2_c00152{left:351.746667pt;}
.x10_c00152{left:354.813333pt;}
.x29_c00152{left:357.893333pt;}
.x4e_c00152{left:360.186667pt;}
.x8d_c00152{left:363.266667pt;}
.x2a_c00152{left:364.800000pt;}
.x5d_c00152{left:367.866667pt;}
.x98_c00152{left:369.413333pt;}
.xdc_c00152{left:371.706667pt;}
.x36_c00152{left:375.546667pt;}
.xa2_c00152{left:377.093333pt;}
.x3_c00152{left:379.386667pt;}
.x89_c00152{left:384.000000pt;}
.x99_c00152{left:387.840000pt;}
.xf3_c00152{left:391.680000pt;}
.x7b_c00152{left:393.213333pt;}
.x2b_c00152{left:395.520000pt;}
.x4f_c00152{left:397.053333pt;}
.x20_c00152{left:398.586667pt;}
.xef_c00152{left:400.133333pt;}
.xd0_c00152{left:404.733333pt;}
.xc9_c00152{left:409.346667pt;}
.x2c_c00152{left:410.880000pt;}
.x7f_c00152{left:413.186667pt;}
.x50_c00152{left:415.493333pt;}
.xae_c00152{left:417.786667pt;}
.xfe_c00152{left:420.093333pt;}
.x4_c00152{left:422.400000pt;}
.xfb_c00152{left:424.706667pt;}
.x57_c00152{left:427.773333pt;}
.x51_c00152{left:431.613333pt;}
.x63_c00152{left:433.146667pt;}
.x71_c00152{left:436.986667pt;}
.x8e_c00152{left:443.906667pt;}
.x6c_c00152{left:446.213333pt;}
.x5_c00152{left:447.746667pt;}
.xe4_c00152{left:449.280000pt;}
.x58_c00152{left:450.813333pt;}
.xf4_c00152{left:453.893333pt;}
.x72_c00152{left:455.426667pt;}
.x90_c00152{left:456.960000pt;}
.x80_c00152{left:459.266667pt;}
.xbe_c00152{left:461.573333pt;}
.x37_c00152{left:463.866667pt;}
.xa3_c00152{left:467.706667pt;}
.x21_c00152{left:469.253333pt;}
.x6_c00152{left:471.546667pt;}
.x6d_c00152{left:473.093333pt;}
.xb4_c00152{left:474.626667pt;}
.xe7_c00152{left:476.160000pt;}
.x44_c00152{left:480.000000pt;}
.x73_c00152{left:482.306667pt;}
.x5e_c00152{left:485.373333pt;}
.x64_c00152{left:488.453333pt;}
.x38_c00152{left:491.520000pt;}
.x2d_c00152{left:493.053333pt;}
.xbf_c00152{left:495.360000pt;}
.x9d_c00152{left:496.893333pt;}
.x7c_c00152{left:498.426667pt;}
.x45_c00152{left:499.973333pt;}
.xec_c00152{left:501.506667pt;}
.x74_c00152{left:504.573333pt;}
.x19_c00152{left:506.106667pt;}
.x81_c00152{left:508.413333pt;}
.xd2_c00152{left:510.720000pt;}
.x9a_c00152{left:513.026667pt;}
.x33_c00152{left:516.866667pt;}
.x7_c00152{left:520.706667pt;}
.x82_c00152{left:523.013333pt;}
.x46_c00152{left:525.306667pt;}
.xc6_c00152{left:526.853333pt;}
.x22_c00152{left:528.386667pt;}
.xe9_c00152{left:530.693333pt;}
.xaa_c00152{left:532.226667pt;}
.xa4_c00152{left:535.293333pt;}
.xf8_c00152{left:536.826667pt;}
.x65_c00152{left:542.213333pt;}
.x39_c00152{left:545.280000pt;}
.xab_c00152{left:546.813333pt;}
.x47_c00152{left:548.346667pt;}
.x52_c00152{left:552.186667pt;}
.xb5_c00152{left:554.493333pt;}
.xa5_c00152{left:556.026667pt;}
.x6e_c00152{left:559.866667pt;}
.x66_c00152{left:561.413333pt;}
.x8_c00152{left:562.946667pt;}
.xb6_c00152{left:565.253333pt;}
.x23_c00152{left:567.546667pt;}
.x11_c00152{left:569.093333pt;}
.x83_c00152{left:570.626667pt;}
.x9f_c00152{left:572.160000pt;}
.xdd_c00152{left:576.000000pt;}
.x91_c00152{left:579.066667pt;}
.x2e_c00152{left:581.373333pt;}
.x9_c00152{left:584.453333pt;}
.x75_c00152{left:586.746667pt;}
.x67_c00152{left:588.293333pt;}
.xa6_c00152{left:592.133333pt;}
.xc0_c00152{left:595.200000pt;}
.xea_c00152{left:596.733333pt;}
.x3a_c00152{left:598.266667pt;}
.xaf_c00152{left:599.813333pt;}
.x2f_c00152{left:604.413333pt;}
.xa_c00152{left:605.946667pt;}
.x84_c00152{left:609.786667pt;}
.xcb_c00152{left:612.866667pt;}
.x12_c00152{left:614.400000pt;}
.x9e_c00152{left:616.706667pt;}
.x53_c00152{left:619.013333pt;}
.x1a_c00152{left:621.306667pt;}
.x59_c00152{left:624.386667pt;}
.xb_c00152{left:625.920000pt;}
.x76_c00152{left:627.453333pt;}
.x5f_c00152{left:630.533333pt;}
.x3b_c00152{left:632.826667pt;}
.x24_c00152{left:635.133333pt;}
.x85_c00152{left:636.666667pt;}
.x9b_c00152{left:640.506667pt;}
.x6f_c00152{left:645.120000pt;}
.x3c_c00152{left:646.653333pt;}
.x1b_c00152{left:648.960000pt;}
.xf5_c00152{left:650.493333pt;}
.x13_c00152{left:655.106667pt;}
.xa0_c00152{left:658.946667pt;}
.x60_c00152{left:660.480000pt;}
.x3d_c00152{left:662.786667pt;}
.xc_c00152{left:665.093333pt;}
.x70_c00152{left:667.386667pt;}
.xc1_c00152{left:668.933333pt;}
.xba_c00152{left:670.466667pt;}
.x30_c00152{left:672.773333pt;}
.xb7_c00152{left:674.306667pt;}
.xd3_c00152{left:677.373333pt;}
.x86_c00152{left:679.680000pt;}
.xd1_c00152{left:682.746667pt;}
.x68_c00152{left:690.426667pt;}
.xb0_c00152{left:691.973333pt;}
.xd6_c00152{left:695.040000pt;}
.x8a_c00152{left:696.573333pt;}
.xa7_c00152{left:698.106667pt;}
.x77_c00152{left:699.653333pt;}
.x14_c00152{left:701.186667pt;}
.xc7_c00152{left:704.253333pt;}
.x5a_c00152{left:706.560000pt;}
.xb1_c00152{left:708.866667pt;}
.x3e_c00152{left:711.173333pt;}
.x69_c00152{left:712.706667pt;}
.x95_c00152{left:715.013333pt;}
.x92_c00152{left:718.080000pt;}
.x5b_c00152{left:725.760000pt;}
.xc8_c00152{left:728.826667pt;}
.xbb_c00152{left:731.133333pt;}
.x8f_c00152{left:732.666667pt;}
.x34_c00152{left:736.506667pt;}
.x3f_c00152{left:738.813333pt;}
.x61_c00152{left:741.893333pt;}
.xfc_c00152{left:743.426667pt;}
.xf1_c00152{left:744.960000pt;}
.xa1_c00152{left:746.493333pt;}
.x48_c00152{left:749.573333pt;}
.x78_c00152{left:751.866667pt;}
.xc2_c00152{left:753.414144pt;}
.x40_c00152{left:758.786667pt;}
.xd4_c00152{left:764.933333pt;}
.x8b_c00152{left:768.000000pt;}
.x79_c00152{left:774.146667pt;}
.xee_c00152{left:779.520000pt;}
.x15_c00152{left:783.360000pt;}
.xb2_c00152{left:787.200000pt;}
.xed_c00152{left:794.880000pt;}
.xf9_c00152{left:796.413333pt;}
.x54_c00152{left:819.453333pt;}
.x93_c00152{left:820.986667pt;}
.x101_c00152{left:903.173333pt;}
.x103_c00152{left:909.306667pt;}
.x104_c00152{left:914.693333pt;}
.x102_c00152{left:919.293333pt;}
.x105_c00152{left:947.706667pt;}
.xff_c00152{left:950.786667pt;}
.x100_c00152{left:960.000000pt;}
.x106_c00152{left:963.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b09f4cbd70295045183ed83.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.109863;font-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_c00153{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00153{transform:matrix(0.046075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046075,0.000000,0.000000,0.250000,0,0);}
.m5b_c00153{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m152_c00153{transform:matrix(0.070775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070775,0.000000,0.000000,0.250000,0,0);}
.m171_c00153{transform:matrix(0.073275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073275,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00153{transform:matrix(0.074075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074075,0.000000,0.000000,0.250000,0,0);}
.m175_c00153{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);}
.m192_c00153{transform:matrix(0.075225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075225,0.000000,0.000000,0.250000,0,0);}
.mce_c00153{transform:matrix(0.076475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076475,0.000000,0.000000,0.250000,0,0);}
.m13d_c00153{transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00153{transform:matrix(0.083275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083275,0.000000,0.000000,0.250000,0,0);}
.m53_c00153{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m18c_c00153{transform:matrix(0.091700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091700,0.000000,0.000000,0.250000,0,0);}
.mb5_c00153{transform:matrix(0.091800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091800,0.000000,0.000000,0.250000,0,0);}
.m4_c00153{transform:matrix(0.092775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092775,0.000000,0.000000,0.250000,0,0);}
.m8b_c00153{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m17e_c00153{transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);}
.meb_c00153{transform:matrix(0.098950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098950,0.000000,0.000000,0.250000,0,0);}
.m153_c00153{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);}
.m1af_c00153{transform:matrix(0.100475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100475,0.000000,0.000000,0.250000,0,0);}
.m47_c00153{transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101750,0.000000,0.000000,0.250000,0,0);}
.m18b_c00153{transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);}
.m18a_c00153{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m165_c00153{transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);}
.m55_c00153{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00153{transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);}
.mb3_c00153{transform:matrix(0.108650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108650,0.000000,0.000000,0.250000,0,0);}
.m16f_c00153{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m18e_c00153{transform:matrix(0.110275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110275,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00153{transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);}
.mea_c00153{transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);}
.m33_c00153{transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);}
.mf3_c00153{transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00153{transform:matrix(0.114600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114600,0.000000,0.000000,0.250000,0,0);}
.mb1_c00153{transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);}
.mb7_c00153{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);}
.m44_c00153{transform:matrix(0.117375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117375,0.000000,0.000000,0.250000,0,0);}
.m23_c00153{transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);}
.mdb_c00153{transform:matrix(0.118775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118775,0.000000,0.000000,0.250000,0,0);}
.m7c_c00153{transform:matrix(0.119125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119125,0.000000,0.000000,0.250000,0,0);}
.m31_c00153{transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);}
.m150_c00153{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);}
.m159_c00153{transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);}
.mf1_c00153{transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);}
.m170_c00153{transform:matrix(0.125150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125150,0.000000,0.000000,0.250000,0,0);}
.m73_c00153{transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);}
.mbd_c00153{transform:matrix(0.126625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126625,0.000000,0.000000,0.250000,0,0);}
.m74_c00153{transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);}
.m189_c00153{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.m11b_c00153{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m3f_c00153{transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00153{transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00153{transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);}
.m16d_c00153{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);}
.m15_c00153{transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);}
.m167_c00153{transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);}
.mb2_c00153{transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);}
.m34_c00153{transform:matrix(0.131950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131950,0.000000,0.000000,0.250000,0,0);}
.m15d_c00153{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m64_c00153{transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);}
.m140_c00153{transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);}
.m18d_c00153{transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);}
.m65_c00153{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00153{transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);}
.mee_c00153{transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);}
.m7d_c00153{transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00153{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);}
.m9f_c00153{transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);}
.maf_c00153{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.m22_c00153{transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);}
.m9e_c00153{transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);}
.mf0_c00153{transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);}
.m172_c00153{transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);}
.m12f_c00153{transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);}
.m77_c00153{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);}
.m158_c00153{transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);}
.m11e_c00153{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.m142_c00153{transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);}
.m16e_c00153{transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);}
.mfd_c00153{transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);}
.m5a_c00153{transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);}
.m5_c00153{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m49_c00153{transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);}
.mbf_c00153{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.m25_c00153{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);}
.md7_c00153{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);}
.m59_c00153{transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);}
.m13e_c00153{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m13f_c00153{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);}
.m12b_c00153{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.mac_c00153{transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);}
.m19b_c00153{transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);}
.mcc_c00153{transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);}
.m105_c00153{transform:matrix(0.149325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149325,0.000000,0.000000,0.250000,0,0);}
.m12e_c00153{transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);}
.m130_c00153{transform:matrix(0.150350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150350,0.000000,0.000000,0.250000,0,0);}
.ma0_c00153{transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);}
.m15b_c00153{transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);}
.m13c_c00153{transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00153{transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);}
.m88_c00153{transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);}
.med_c00153{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.mfc_c00153{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.m45_c00153{transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);}
.m6b_c00153{transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);}
.mec_c00153{transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);}
.m13a_c00153{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.m7e_c00153{transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);}
.m8d_c00153{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);}
.m151_c00153{transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);}
.m14c_c00153{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00153{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.mc3_c00153{transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);}
.m116_c00153{transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);}
.mf6_c00153{transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);}
.mda_c00153{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);}
.m137_c00153{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.mc0_c00153{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.mbe_c00153{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00153{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m144_c00153{transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);}
.m10e_c00153{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00153{transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);}
.m173_c00153{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m10d_c00153{transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);}
.m168_c00153{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m138_c00153{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.m78_c00153{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);}
.m92_c00153{transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);}
.m6d_c00153{transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);}
.m100_c00153{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.m14e_c00153{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.ma6_c00153{transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00153{transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);}
.m157_c00153{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m97_c00153{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m14f_c00153{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m1e_c00153{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.mf7_c00153{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m13b_c00153{transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);}
.mff_c00153{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.m115_c00153{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.m149_c00153{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);}
.m109_c00153{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.m199_c00153{transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);}
.m4b_c00153{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m1b_c00153{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m14b_c00153{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.mad_c00153{transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);}
.m4c_c00153{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);}
.m154_c00153{transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);}
.m57_c00153{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.m14a_c00153{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);}
.m19e_c00153{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.mf9_c00153{transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);}
.ma3_c00153{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.m114_c00153{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.m183_c00153{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m24_c00153{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.m16c_c00153{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m17a_c00153{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.me7_c00153{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m123_c00153{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m169_c00153{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);}
.m2f_c00153{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m86_c00153{transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);}
.m148_c00153{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m69_c00153{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);}
.m132_c00153{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);}
.m135_c00153{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m70_c00153{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);}
.ma1_c00153{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);}
.m14d_c00153{transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);}
.m5f_c00153{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.md9_c00153{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.mbb_c00153{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.m186_c00153{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m113_c00153{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);}
.m178_c00153{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);}
.m5c_c00153{transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);}
.m162_c00153{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.m190_c00153{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00153{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.m46_c00153{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.m134_c00153{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);}
.md2_c00153{transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);}
.m19a_c00153{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m2e_c00153{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m82_c00153{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.ma8_c00153{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m10a_c00153{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.m48_c00153{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);}
.m110_c00153{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.me0_c00153{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);}
.m193_c00153{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);}
.m12c_c00153{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);}
.m15e_c00153{transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);}
.m4e_c00153{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);}
.m12a_c00153{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m106_c00153{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.m118_c00153{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);}
.me4_c00153{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);}
.m146_c00153{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.mf5_c00153{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m184_c00153{transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);}
.m129_c00153{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.m187_c00153{transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);}
.m52_c00153{transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);}
.m20_c00153{transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);}
.m51_c00153{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);}
.m124_c00153{transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);}
.m112_c00153{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.m160_c00153{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);}
.mfa_c00153{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m90_c00153{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.m9a_c00153{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m15c_c00153{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.me1_c00153{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.m76_c00153{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);}
.m1b5_c00153{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m17d_c00153{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m60_c00153{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);}
.m15f_c00153{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);}
.m108_c00153{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.m185_c00153{transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);}
.mdc_c00153{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m18_c00153{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);}
.mc9_c00153{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.m191_c00153{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);}
.m7a_c00153{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.m58_c00153{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);}
.m8c_c00153{transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00153{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.mbc_c00153{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);}
.m80_c00153{transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);}
.m155_c00153{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m41_c00153{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.mcf_c00153{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.mb9_c00153{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m91_c00153{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.mf8_c00153{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m126_c00153{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.m21_c00153{transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);}
.m128_c00153{transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);}
.m121_c00153{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.mfe_c00153{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);}
.m1a4_c00153{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);}
.m9c_c00153{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m9d_c00153{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);}
.m1a8_c00153{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.md5_c00153{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);}
.m136_c00153{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);}
.m43_c00153{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m164_c00153{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);}
.m28_c00153{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m5e_c00153{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m163_c00153{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m117_c00153{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m17b_c00153{transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);}
.mb8_c00153{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.me9_c00153{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);}
.m120_c00153{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m16a_c00153{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.mc4_c00153{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);}
.m1a_c00153{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);}
.m103_c00153{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.m96_c00153{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.m4a_c00153{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.m2c_c00153{transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);}
.m72_c00153{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);}
.m188_c00153{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.me3_c00153{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.ma9_c00153{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m15a_c00153{transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);}
.m99_c00153{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);}
.m10b_c00153{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);}
.m125_c00153{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mcb_c00153{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m133_c00153{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);}
.m79_c00153{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.mc5_c00153{transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);}
.maa_c00153{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.m174_c00153{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);}
.m4d_c00153{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);}
.m16b_c00153{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m119_c00153{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);}
.m9b_c00153{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);}
.m95_c00153{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.mcd_c00153{transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);}
.m10c_c00153{transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);}
.m104_c00153{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);}
.mef_c00153{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);}
.m27_c00153{transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);}
.m39_c00153{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);}
.m42_c00153{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);}
.m26_c00153{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);}
.m1c_c00153{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.mca_c00153{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);}
.m17f_c00153{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);}
.mdf_c00153{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);}
.m12d_c00153{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.mc8_c00153{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m197_c00153{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.m194_c00153{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);}
.me_c00153{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);}
.m10f_c00153{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);}
.mf2_c00153{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m32_c00153{transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);}
.m14_c00153{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);}
.m75_c00153{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.me8_c00153{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);}
.m147_c00153{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);}
.ma5_c00153{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);}
.mb0_c00153{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);}
.mba_c00153{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);}
.m161_c00153{transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);}
.m102_c00153{transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);}
.m177_c00153{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);}
.md6_c00153{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m195_c00153{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00153{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);}
.m63_c00153{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.me5_c00153{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);}
.me6_c00153{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);}
.mae_c00153{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);}
.m107_c00153{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);}
.m139_c00153{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m145_c00153{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.ma4_c00153{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);}
.m9_c00153{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);}
.mde_c00153{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m54_c00153{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);}
.m56_c00153{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);}
.m71_c00153{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);}
.m3a_c00153{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);}
.m111_c00153{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m127_c00153{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00153{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00153{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);}
.m87_c00153{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m101_c00153{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_c00153{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);}
.ma7_c00153{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00153{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);}
.m0_c00153{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00153{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00153{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);}
.m2b_c00153{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me2_c00153{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);}
.m7_c00153{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);}
.m143_c00153{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00153{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00153{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);}
.m3d_c00153{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c00153{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md1_c00153{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m29_c00153{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c00153{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00153{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c00153{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00153{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);}
.md_c00153{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00153{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m180_c00153{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00153{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);}
.m13_c00153{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00153{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma_c00153{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);}
.mc7_c00153{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00153{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m176_c00153{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m62_c00153{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1_c00153{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);}
.m94_c00153{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00153{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m17c_c00153{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);}
.m40_c00153{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00153{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m11d_c00153{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);}
.m19_c00153{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00153{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m81_c00153{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m50_c00153{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m93_c00153{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m85_c00153{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);}
.md4_c00153{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00153{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);}
.m6_c00153{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m83_c00153{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m179_c00153{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m68_c00153{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m61_c00153{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m166_c00153{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m196_c00153{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);}
.m37_c00153{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m36_c00153{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.mab_c00153{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m8_c00153{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m98_c00153{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00153{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m131_c00153{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);}
.mc1_c00153{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00153{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m141_c00153{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);}
.md8_c00153{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00153{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m198_c00153{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m18f_c00153{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);}
.m6a_c00153{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2_c00153{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m19d_c00153{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00153{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m84_c00153{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m66_c00153{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m30_c00153{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m181_c00153{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m89_c00153{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00153{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00153{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.md0_c00153{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m122_c00153{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m67_c00153{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m19f_c00153{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00153{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m3_c00153{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00153{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00153{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00153{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.m182_c00153{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00153{transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00153{transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);}
.md3_c00153{transform:matrix(1.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.247500,0.000000,0.000000,0.250000,0,0);}
.m38_c00153{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00153{transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);}
.m19c_c00153{transform:matrix(1.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.297500,0.000000,0.000000,0.250000,0,0);}
.m35_c00153{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00153{transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);}
.m17_c00153{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00153{transform:matrix(2.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.060000,0.000000,0.000000,0.250000,0,0);}
.m156_c00153{transform:matrix(6.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.112500,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.v2_c00153{vertical-align:3.420000px;}
.v1_c00153{vertical-align:13.800000px;}
.ls1_c00153{letter-spacing:0.000000px;}
.ls0_c00153{letter-spacing:59.042688px;}
.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;}
}
.ws1_c00153{word-spacing:-24.634680px;}
.ws0_c00153{word-spacing:-14.073840px;}
.ws2_c00153{word-spacing:0.000000px;}
.fc0_c00153{color:transparent;}
.fs20_c00153{font-size:3.456000px;}
.fs0_c00153{font-size:6.000000px;}
.fs11_c00153{font-size:6.900000px;}
.fs2_c00153{font-size:10.380000px;}
.fs10_c00153{font-size:13.800000px;}
.fs3_c00153{font-size:17.280000px;}
.fs1_c00153{font-size:20.760000px;}
.fs18_c00153{font-size:24.180000px;}
.fs6_c00153{font-size:27.660000px;}
.fs1a_c00153{font-size:31.080000px;}
.fs5_c00153{font-size:34.560000px;}
.fs1b_c00153{font-size:38.040000px;}
.fs1d_c00153{font-size:41.460000px;}
.fs1e_c00153{font-size:44.940000px;}
.fs1c_c00153{font-size:48.360000px;}
.fs7_c00153{font-size:51.840000px;}
.fs15_c00153{font-size:55.320000px;}
.fsa_c00153{font-size:58.740000px;}
.fs8_c00153{font-size:62.220000px;}
.fse_c00153{font-size:65.640000px;}
.fsc_c00153{font-size:69.120000px;}
.fsd_c00153{font-size:72.600000px;}
.fs9_c00153{font-size:76.020000px;}
.fsb_c00153{font-size:79.500000px;}
.fs16_c00153{font-size:82.920000px;}
.fs17_c00153{font-size:86.400000px;}
.fs1f_c00153{font-size:89.880000px;}
.fs4_c00153{font-size:93.300000px;}
.fs13_c00153{font-size:96.780000px;}
.fsf_c00153{font-size:100.200000px;}
.fs12_c00153{font-size:103.680000px;}
.fs19_c00153{font-size:107.160000px;}
.fs14_c00153{font-size:110.580000px;}
.fs21_c00153{font-size:114.060000px;}
.fs23_c00153{font-size:117.480000px;}
.fs22_c00153{font-size:120.960000px;}
.fs24_c00153{font-size:124.440000px;}
.fs25_c00153{font-size:131.340000px;}
.fs26_c00153{font-size:165.900000px;}
.y0_c00153{bottom:0.000000px;}
.y1a4_c00153{bottom:108.000000px;}
.y1a5_c00153{bottom:109.725000px;}
.y1a3_c00153{bottom:110.595000px;}
.y1a2_c00153{bottom:114.915000px;}
.y1a1_c00153{bottom:181.440000px;}
.y1a0_c00153{bottom:182.310000px;}
.y19e_c00153{bottom:190.080000px;}
.y199_c00153{bottom:198.720000px;}
.y19f_c00153{bottom:201.315000px;}
.y19d_c00153{bottom:206.490000px;}
.y19c_c00153{bottom:207.360000px;}
.y198_c00153{bottom:211.680000px;}
.y195_c00153{bottom:212.550000px;}
.y197_c00153{bottom:214.275000px;}
.y19a_c00153{bottom:215.130000px;}
.y196_c00153{bottom:216.000000px;}
.y19b_c00153{bottom:232.410000px;}
.y192_c00153{bottom:239.325000px;}
.y191_c00153{bottom:240.195000px;}
.y18c_c00153{bottom:241.920000px;}
.y18a_c00153{bottom:242.790000px;}
.y193_c00153{bottom:243.645000px;}
.y18f_c00153{bottom:244.515000px;}
.y18d_c00153{bottom:245.370000px;}
.y189_c00153{bottom:246.240000px;}
.y18e_c00153{bottom:247.965000px;}
.y190_c00153{bottom:248.835000px;}
.y18b_c00153{bottom:249.690000px;}
.y194_c00153{bottom:251.430000px;}
.y187_c00153{bottom:255.750000px;}
.y185_c00153{bottom:256.605000px;}
.y188_c00153{bottom:257.475000px;}
.y181_c00153{bottom:258.330000px;}
.y184_c00153{bottom:259.200000px;}
.y183_c00153{bottom:260.070000px;}
.y180_c00153{bottom:260.925000px;}
.y182_c00153{bottom:262.650000px;}
.y186_c00153{bottom:263.520000px;}
.yb_c00153{bottom:264.390000px;}
.y17c_c00153{bottom:265.245000px;}
.y17f_c00153{bottom:266.115000px;}
.y17b_c00153{bottom:266.970000px;}
.y177_c00153{bottom:269.565000px;}
.y17e_c00153{bottom:271.290000px;}
.y17d_c00153{bottom:272.160000px;}
.y178_c00153{bottom:273.030000px;}
.y17a_c00153{bottom:273.885000px;}
.y179_c00153{bottom:274.755000px;}
.y176_c00153{bottom:279.075000px;}
.y175_c00153{bottom:283.395000px;}
.y171_c00153{bottom:284.250000px;}
.y172_c00153{bottom:285.120000px;}
.y16f_c00153{bottom:285.990000px;}
.y170_c00153{bottom:286.845000px;}
.y173_c00153{bottom:294.630000px;}
.y174_c00153{bottom:295.485000px;}
.y16c_c00153{bottom:315.360000px;}
.y16b_c00153{bottom:316.230000px;}
.y16a_c00153{bottom:317.085000px;}
.y169_c00153{bottom:318.810000px;}
.y16e_c00153{bottom:319.680000px;}
.y16d_c00153{bottom:321.405000px;}
.y161_c00153{bottom:324.870000px;}
.y168_c00153{bottom:325.725000px;}
.y166_c00153{bottom:330.045000px;}
.y164_c00153{bottom:330.915000px;}
.y163_c00153{bottom:333.510000px;}
.y160_c00153{bottom:334.365000px;}
.y162_c00153{bottom:335.235000px;}
.y165_c00153{bottom:336.090000px;}
.y167_c00153{bottom:337.830000px;}
.y15e_c00153{bottom:339.555000px;}
.y15a_c00153{bottom:340.410000px;}
.y15c_c00153{bottom:341.280000px;}
.y159_c00153{bottom:343.875000px;}
.y15b_c00153{bottom:344.730000px;}
.y15f_c00153{bottom:346.470000px;}
.y15d_c00153{bottom:347.325000px;}
.y158_c00153{bottom:355.110000px;}
.y152_c00153{bottom:363.750000px;}
.y157_c00153{bottom:365.475000px;}
.y154_c00153{bottom:366.330000px;}
.y155_c00153{bottom:367.200000px;}
.y153_c00153{bottom:368.070000px;}
.y156_c00153{bottom:369.795000px;}
.y151_c00153{bottom:387.930000px;}
.y14f_c00153{bottom:389.670000px;}
.y14d_c00153{bottom:390.525000px;}
.y14c_c00153{bottom:393.120000px;}
.ya_c00153{bottom:395.715000px;}
.y150_c00153{bottom:397.440000px;}
.y14e_c00153{bottom:398.310000px;}
.y147_c00153{bottom:415.590000px;}
.y149_c00153{bottom:416.445000px;}
.y146_c00153{bottom:417.315000px;}
.y14a_c00153{bottom:418.170000px;}
.y14b_c00153{bottom:419.910000px;}
.y148_c00153{bottom:421.635000px;}
.y145_c00153{bottom:442.365000px;}
.y143_c00153{bottom:443.235000px;}
.y144_c00153{bottom:450.150000px;}
.y141_c00153{bottom:464.835000px;}
.y13e_c00153{bottom:465.690000px;}
.y13c_c00153{bottom:466.560000px;}
.y13d_c00153{bottom:470.010000px;}
.y13b_c00153{bottom:474.330000px;}
.y13f_c00153{bottom:475.200000px;}
.y140_c00153{bottom:476.070000px;}
.y142_c00153{bottom:484.710000px;}
.y139_c00153{bottom:489.885000px;}
.y138_c00153{bottom:491.610000px;}
.y137_c00153{bottom:492.480000px;}
.y135_c00153{bottom:493.350000px;}
.y13a_c00153{bottom:495.075000px;}
.y136_c00153{bottom:496.800000px;}
.y133_c00153{bottom:514.950000px;}
.y130_c00153{bottom:516.675000px;}
.y132_c00153{bottom:520.125000px;}
.yc_c00153{bottom:521.850000px;}
.y134_c00153{bottom:522.720000px;}
.y12f_c00153{bottom:524.445000px;}
.y131_c00153{bottom:525.315000px;}
.y12e_c00153{bottom:540.000000px;}
.y12d_c00153{bottom:540.870000px;}
.y12c_c00153{bottom:541.725000px;}
.y12b_c00153{bottom:542.595000px;}
.y12a_c00153{bottom:543.450000px;}
.y129_c00153{bottom:544.320000px;}
.y128_c00153{bottom:545.190000px;}
.y127_c00153{bottom:546.915000px;}
.y126_c00153{bottom:550.365000px;}
.y124_c00153{bottom:567.645000px;}
.y11f_c00153{bottom:569.370000px;}
.y121_c00153{bottom:570.240000px;}
.y123_c00153{bottom:571.965000px;}
.y125_c00153{bottom:572.835000px;}
.y120_c00153{bottom:573.690000px;}
.y11e_c00153{bottom:574.560000px;}
.y122_c00153{bottom:575.430000px;}
.y11d_c00153{bottom:578.880000px;}
.y11c_c00153{bottom:590.970000px;}
.y117_c00153{bottom:592.710000px;}
.y116_c00153{bottom:594.435000px;}
.y118_c00153{bottom:595.290000px;}
.y11a_c00153{bottom:596.160000px;}
.y11b_c00153{bottom:597.030000px;}
.y115_c00153{bottom:597.885000px;}
.y119_c00153{bottom:598.755000px;}
.y110_c00153{bottom:600.480000px;}
.y114_c00153{bottom:601.350000px;}
.y111_c00153{bottom:605.670000px;}
.y10e_c00153{bottom:606.525000px;}
.y113_c00153{bottom:607.395000px;}
.y10f_c00153{bottom:608.250000px;}
.y10d_c00153{bottom:609.120000px;}
.y112_c00153{bottom:609.990000px;}
.y10c_c00153{bottom:610.845000px;}
.y10b_c00153{bottom:611.715000px;}
.y109_c00153{bottom:612.570000px;}
.y10a_c00153{bottom:614.310000px;}
.y107_c00153{bottom:616.035000px;}
.y105_c00153{bottom:617.760000px;}
.y106_c00153{bottom:618.630000px;}
.y103_c00153{bottom:619.485000px;}
.y102_c00153{bottom:622.950000px;}
.y108_c00153{bottom:624.675000px;}
.y104_c00153{bottom:625.530000px;}
.y101_c00153{bottom:637.635000px;}
.y100_c00153{bottom:641.955000px;}
.yfd_c00153{bottom:642.810000px;}
.yfe_c00153{bottom:643.680000px;}
.yfc_c00153{bottom:644.550000px;}
.yff_c00153{bottom:646.275000px;}
.yfb_c00153{bottom:652.320000px;}
.yf8_c00153{bottom:668.730000px;}
.yf5_c00153{bottom:669.600000px;}
.yfa_c00153{bottom:671.325000px;}
.yf6_c00153{bottom:672.195000px;}
.yf7_c00153{bottom:673.920000px;}
.yf9_c00153{bottom:674.790000px;}
.y9_c00153{bottom:680.835000px;}
.yf3_c00153{bottom:690.330000px;}
.yf1_c00153{bottom:691.200000px;}
.yf2_c00153{bottom:692.070000px;}
.yef_c00153{bottom:692.925000px;}
.yf0_c00153{bottom:700.710000px;}
.yf4_c00153{bottom:707.610000px;}
.yee_c00153{bottom:715.395000px;}
.yed_c00153{bottom:716.250000px;}
.yeb_c00153{bottom:721.440000px;}
.yec_c00153{bottom:722.310000px;}
.yea_c00153{bottom:730.950000px;}
.ye8_c00153{bottom:738.720000px;}
.ye9_c00153{bottom:739.590000px;}
.ye4_c00153{bottom:740.445000px;}
.ye2_c00153{bottom:741.315000px;}
.ye3_c00153{bottom:742.170000px;}
.ye6_c00153{bottom:743.040000px;}
.ye5_c00153{bottom:743.910000px;}
.ye1_c00153{bottom:744.765000px;}
.ye7_c00153{bottom:745.635000px;}
.ye0_c00153{bottom:764.640000px;}
.yde_c00153{bottom:766.365000px;}
.ydf_c00153{bottom:768.960000px;}
.ydb_c00153{bottom:770.685000px;}
.ydd_c00153{bottom:773.280000px;}
.ydc_c00153{bottom:774.150000px;}
.yd9_c00153{bottom:775.005000px;}
.yda_c00153{bottom:776.730000px;}
.yd7_c00153{bottom:790.560000px;}
.yd5_c00153{bottom:792.285000px;}
.yd2_c00153{bottom:793.155000px;}
.yd3_c00153{bottom:794.010000px;}
.yd6_c00153{bottom:795.750000px;}
.yd8_c00153{bottom:796.605000px;}
.yd4_c00153{bottom:797.475000px;}
.y8_c00153{bottom:798.330000px;}
.y7_c00153{bottom:800.070000px;}
.yd1_c00153{bottom:815.610000px;}
.yce_c00153{bottom:816.480000px;}
.yca_c00153{bottom:817.350000px;}
.ycb_c00153{bottom:819.075000px;}
.yd0_c00153{bottom:819.930000px;}
.ycd_c00153{bottom:820.800000px;}
.ycf_c00153{bottom:821.670000px;}
.yc5_c00153{bottom:822.525000px;}
.ycc_c00153{bottom:823.395000px;}
.yc0_c00153{bottom:824.250000px;}
.ybf_c00153{bottom:825.120000px;}
.yc4_c00153{bottom:827.715000px;}
.yc3_c00153{bottom:828.570000px;}
.yc6_c00153{bottom:829.440000px;}
.yc1_c00153{bottom:830.310000px;}
.yc2_c00153{bottom:831.165000px;}
.yc8_c00153{bottom:832.035000px;}
.yc7_c00153{bottom:832.890000px;}
.yc9_c00153{bottom:836.355000px;}
.ybb_c00153{bottom:841.530000px;}
.yba_c00153{bottom:842.400000px;}
.ybc_c00153{bottom:843.270000px;}
.ybe_c00153{bottom:846.720000px;}
.yb9_c00153{bottom:850.170000px;}
.ybd_c00153{bottom:854.490000px;}
.yb8_c00153{bottom:863.130000px;}
.yb3_c00153{bottom:866.595000px;}
.yb1_c00153{bottom:867.450000px;}
.yb4_c00153{bottom:872.640000px;}
.yb5_c00153{bottom:873.510000px;}
.yb2_c00153{bottom:874.365000px;}
.yb6_c00153{bottom:884.730000px;}
.yaf_c00153{bottom:887.325000px;}
.yb7_c00153{bottom:889.050000px;}
.yb0_c00153{bottom:890.790000px;}
.yaa_c00153{bottom:893.370000px;}
.yac_c00153{bottom:895.110000px;}
.yab_c00153{bottom:898.560000px;}
.ya9_c00153{bottom:899.430000px;}
.yae_c00153{bottom:912.390000px;}
.ya8_c00153{bottom:913.245000px;}
.yad_c00153{bottom:914.115000px;}
.ya7_c00153{bottom:915.840000px;}
.ya5_c00153{bottom:917.565000px;}
.ya4_c00153{bottom:918.435000px;}
.ya6_c00153{bottom:923.610000px;}
.ya3_c00153{bottom:925.350000px;}
.y9d_c00153{bottom:933.120000px;}
.ya1_c00153{bottom:933.990000px;}
.ya2_c00153{bottom:935.715000px;}
.y9b_c00153{bottom:936.570000px;}
.ya0_c00153{bottom:938.310000px;}
.y9e_c00153{bottom:939.165000px;}
.y99_c00153{bottom:942.630000px;}
.y9c_c00153{bottom:943.485000px;}
.y9f_c00153{bottom:946.950000px;}
.y9a_c00153{bottom:949.530000px;}
.y97_c00153{bottom:965.085000px;}
.y92_c00153{bottom:965.955000px;}
.y94_c00153{bottom:966.810000px;}
.y93_c00153{bottom:969.405000px;}
.y96_c00153{bottom:972.870000px;}
.y95_c00153{bottom:973.725000px;}
.y91_c00153{bottom:974.595000px;}
.y98_c00153{bottom:980.640000px;}
.y90_c00153{bottom:991.005000px;}
.y8c_c00153{bottom:991.875000px;}
.y8a_c00153{bottom:992.730000px;}
.y8b_c00153{bottom:993.600000px;}
.y8d_c00153{bottom:996.195000px;}
.y8f_c00153{bottom:997.920000px;}
.y8e_c00153{bottom:999.645000px;}
.y88_c00153{bottom:1016.070000px;}
.y87_c00153{bottom:1016.925000px;}
.y86_c00153{bottom:1018.650000px;}
.y84_c00153{bottom:1019.520000px;}
.y85_c00153{bottom:1022.970000px;}
.y83_c00153{bottom:1025.565000px;}
.y89_c00153{bottom:1034.205000px;}
.y82_c00153{bottom:1038.525000px;}
.y7e_c00153{bottom:1041.990000px;}
.y7c_c00153{bottom:1042.845000px;}
.y7f_c00153{bottom:1044.570000px;}
.y7b_c00153{bottom:1047.165000px;}
.y81_c00153{bottom:1048.035000px;}
.y80_c00153{bottom:1048.890000px;}
.y7d_c00153{bottom:1049.760000px;}
.y79_c00153{bottom:1065.315000px;}
.y77_c00153{bottom:1066.170000px;}
.y75_c00153{bottom:1067.910000px;}
.y78_c00153{bottom:1069.635000px;}
.y76_c00153{bottom:1075.680000px;}
.y7a_c00153{bottom:1086.915000px;}
.y6e_c00153{bottom:1092.090000px;}
.y6c_c00153{bottom:1092.960000px;}
.y74_c00153{bottom:1093.830000px;}
.y6d_c00153{bottom:1098.150000px;}
.y6b_c00153{bottom:1099.005000px;}
.y6a_c00153{bottom:1099.875000px;}
.y70_c00153{bottom:1101.600000px;}
.y71_c00153{bottom:1103.325000px;}
.y72_c00153{bottom:1104.195000px;}
.y6f_c00153{bottom:1105.920000px;}
.y73_c00153{bottom:1111.110000px;}
.y69_c00153{bottom:1114.560000px;}
.y67_c00153{bottom:1117.155000px;}
.y61_c00153{bottom:1118.010000px;}
.y64_c00153{bottom:1120.605000px;}
.y65_c00153{bottom:1121.475000px;}
.y68_c00153{bottom:1122.330000px;}
.y62_c00153{bottom:1124.070000px;}
.y66_c00153{bottom:1124.925000px;}
.y63_c00153{bottom:1125.795000px;}
.y5f_c00153{bottom:1143.075000px;}
.y5a_c00153{bottom:1143.930000px;}
.y5d_c00153{bottom:1144.800000px;}
.y5e_c00153{bottom:1146.525000px;}
.y5c_c00153{bottom:1147.395000px;}
.y60_c00153{bottom:1149.120000px;}
.y5b_c00153{bottom:1150.845000px;}
.y54_c00153{bottom:1168.995000px;}
.y56_c00153{bottom:1169.850000px;}
.y58_c00153{bottom:1172.445000px;}
.y57_c00153{bottom:1175.910000px;}
.y55_c00153{bottom:1177.635000px;}
.y59_c00153{bottom:1181.085000px;}
.y52_c00153{bottom:1196.640000px;}
.y51_c00153{bottom:1197.510000px;}
.y50_c00153{bottom:1198.365000px;}
.y4f_c00153{bottom:1200.960000px;}
.y6_c00153{bottom:1203.555000px;}
.y53_c00153{bottom:1208.730000px;}
.y4d_c00153{bottom:1215.645000px;}
.y49_c00153{bottom:1216.515000px;}
.y48_c00153{bottom:1218.240000px;}
.y45_c00153{bottom:1219.110000px;}
.y46_c00153{bottom:1219.965000px;}
.y4b_c00153{bottom:1220.835000px;}
.y4e_c00153{bottom:1221.690000px;}
.y47_c00153{bottom:1224.285000px;}
.y4c_c00153{bottom:1225.155000px;}
.y4a_c00153{bottom:1226.010000px;}
.y5_c00153{bottom:1230.330000px;}
.y44_c00153{bottom:1232.925000px;}
.y43_c00153{bottom:1241.565000px;}
.y3d_c00153{bottom:1242.435000px;}
.y41_c00153{bottom:1244.160000px;}
.y3e_c00153{bottom:1245.030000px;}
.y3f_c00153{bottom:1247.610000px;}
.y42_c00153{bottom:1248.480000px;}
.y40_c00153{bottom:1251.075000px;}
.y3c_c00153{bottom:1264.035000px;}
.y39_c00153{bottom:1264.890000px;}
.y3b_c00153{bottom:1271.805000px;}
.y36_c00153{bottom:1272.675000px;}
.y37_c00153{bottom:1273.530000px;}
.y38_c00153{bottom:1276.125000px;}
.y3a_c00153{bottom:1277.850000px;}
.y34_c00153{bottom:1280.445000px;}
.y31_c00153{bottom:1282.170000px;}
.y30_c00153{bottom:1283.040000px;}
.y35_c00153{bottom:1284.765000px;}
.y32_c00153{bottom:1286.490000px;}
.y33_c00153{bottom:1287.360000px;}
.y2f_c00153{bottom:1289.955000px;}
.y2e_c00153{bottom:1292.550000px;}
.y2a_c00153{bottom:1293.405000px;}
.y2d_c00153{bottom:1294.275000px;}
.y28_c00153{bottom:1295.130000px;}
.y2c_c00153{bottom:1298.595000px;}
.y26_c00153{bottom:1300.320000px;}
.y27_c00153{bottom:1301.190000px;}
.y2b_c00153{bottom:1302.045000px;}
.y29_c00153{bottom:1302.915000px;}
.y1a6_c00153{bottom:1307.235000px;}
.y25_c00153{bottom:1319.325000px;}
.y21_c00153{bottom:1320.195000px;}
.y1f_c00153{bottom:1322.790000px;}
.y23_c00153{bottom:1323.645000px;}
.y20_c00153{bottom:1324.515000px;}
.y24_c00153{bottom:1327.110000px;}
.y22_c00153{bottom:1327.965000px;}
.y1c_c00153{bottom:1342.650000px;}
.y18_c00153{bottom:1344.390000px;}
.y1a_c00153{bottom:1345.245000px;}
.y19_c00153{bottom:1347.840000px;}
.y1d_c00153{bottom:1348.710000px;}
.y1b_c00153{bottom:1352.160000px;}
.y1e_c00153{bottom:1359.930000px;}
.y4_c00153{bottom:1370.310000px;}
.y3_c00153{bottom:1372.890000px;}
.y15_c00153{bottom:1373.760000px;}
.y17_c00153{bottom:1374.630000px;}
.y14_c00153{bottom:1375.485000px;}
.y16_c00153{bottom:1376.355000px;}
.y11_c00153{bottom:1379.805000px;}
.y13_c00153{bottom:1380.675000px;}
.yf_c00153{bottom:1381.530000px;}
.ye_c00153{bottom:1383.270000px;}
.y12_c00153{bottom:1384.125000px;}
.y10_c00153{bottom:1384.995000px;}
.yd_c00153{bottom:1389.315000px;}
.y2_c00153{bottom:1448.070000px;}
.y1_c00153{bottom:1450.650000px;}
.h22_c00153{height:3.110063px;}
.h2_c00153{height:5.399414px;}
.h13_c00153{height:6.209326px;}
.h4_c00153{height:9.340986px;}
.h12_c00153{height:12.418652px;}
.h5_c00153{height:15.550313px;}
.h3_c00153{height:18.681973px;}
.h1a_c00153{height:21.759639px;}
.h8_c00153{height:24.891299px;}
.h1c_c00153{height:27.968965px;}
.h7_c00153{height:31.100625px;}
.h1d_c00153{height:34.232285px;}
.h1f_c00153{height:37.309951px;}
.h20_c00153{height:40.441611px;}
.h1e_c00153{height:43.519277px;}
.h9_c00153{height:46.650937px;}
.h17_c00153{height:49.782598px;}
.hc_c00153{height:52.860264px;}
.ha_c00153{height:55.991924px;}
.h10_c00153{height:59.069590px;}
.h26_c00153{height:59.411924px;}
.he_c00153{height:62.201250px;}
.hf_c00153{height:65.332910px;}
.hb_c00153{height:68.410576px;}
.hd_c00153{height:71.542236px;}
.h18_c00153{height:74.619902px;}
.h19_c00153{height:77.751563px;}
.h21_c00153{height:80.883223px;}
.h6_c00153{height:83.960889px;}
.h15_c00153{height:87.092549px;}
.h11_c00153{height:90.170215px;}
.h14_c00153{height:93.301875px;}
.h1b_c00153{height:96.433535px;}
.h16_c00153{height:99.511201px;}
.h23_c00153{height:102.642861px;}
.h25_c00153{height:105.720527px;}
.h24_c00153{height:108.852188px;}
.h27_c00153{height:111.983848px;}
.h28_c00153{height:118.193174px;}
.h29_c00153{height:149.293799px;}
.h1_c00153{height:1502.250000px;}
.h0_c00153{height:1502.490000px;}
.w0_c00153{width:1111.965000px;}
.w1_c00153{width:1112.250000px;}
.x0_c00153{left:0.000000px;}
.x1_c00153{left:4.320000px;}
.x3_c00153{left:6.915000px;}
.x2_c00153{left:12.090000px;}
.x4_c00153{left:19.875000px;}
.x9_c00153{left:21.600000px;}
.x8_c00153{left:38.880000px;}
.x5_c00153{left:50.115000px;}
.x6_c00153{left:108.870000px;}
.x7_c00153{left:124.410000px;}
.x110_c00153{left:144.285000px;}
.xa_c00153{left:147.750000px;}
.x50_c00153{left:194.400000px;}
.x75_c00153{left:203.040000px;}
.xd7_c00153{left:213.405000px;}
.xb9_c00153{left:215.130000px;}
.x6e_c00153{left:216.870000px;}
.xc8_c00153{left:218.595000px;}
.x76_c00153{left:220.320000px;}
.xd8_c00153{left:222.045000px;}
.x51_c00153{left:223.770000px;}
.xe3_c00153{left:227.235000px;}
.xdd_c00153{left:228.960000px;}
.x94_c00153{left:232.410000px;}
.x77_c00153{left:235.005000px;}
.x2f_c00153{left:236.730000px;}
.x1c_c00153{left:238.470000px;}
.xcd_c00153{left:241.920000px;}
.xa6_c00153{left:243.645000px;}
.x39_c00153{left:247.965000px;}
.xab_c00153{left:253.155000px;}
.x102_c00153{left:256.605000px;}
.x67_c00153{left:259.200000px;}
.x7e_c00153{left:261.795000px;}
.x25_c00153{left:264.390000px;}
.x52_c00153{left:267.840000px;}
.xb0_c00153{left:272.160000px;}
.xff_c00153{left:275.610000px;}
.x44_c00153{left:277.350000px;}
.x9c_c00153{left:279.075000px;}
.xb1_c00153{left:280.800000px;}
.xf9_c00153{left:282.525000px;}
.x5b_c00153{left:285.990000px;}
.xde_c00153{left:288.570000px;}
.x3a_c00153{left:291.165000px;}
.xe4_c00153{left:296.355000px;}
.x30_c00153{left:298.080000px;}
.x6f_c00153{left:303.270000px;}
.xa2_c00153{left:304.995000px;}
.x26_c00153{left:306.720000px;}
.x1d_c00153{left:308.445000px;}
.x82_c00153{left:310.170000px;}
.xeb_c00153{left:312.765000px;}
.xe5_c00153{left:315.360000px;}
.x5c_c00153{left:317.085000px;}
.x3b_c00153{left:318.810000px;}
.x95_c00153{left:320.550000px;}
.x53_c00153{left:324.000000px;}
.x31_c00153{left:326.595000px;}
.x45_c00153{left:329.190000px;}
.x1e_c00153{left:333.510000px;}
.x3c_c00153{left:336.960000px;}
.xb2_c00153{left:339.555000px;}
.x78_c00153{left:343.005000px;}
.xc9_c00153{left:344.730000px;}
.xaf_c00153{left:346.470000px;}
.xb_c00153{left:349.050000px;}
.xfa_c00153{left:350.790000px;}
.xc1_c00153{left:353.370000px;}
.xf7_c00153{left:355.110000px;}
.x17_c00153{left:358.560000px;}
.x83_c00153{left:361.155000px;}
.x68_c00153{left:366.330000px;}
.xc_c00153{left:368.070000px;}
.x103_c00153{left:369.795000px;}
.x70_c00153{left:371.520000px;}
.x7f_c00153{left:374.115000px;}
.xd9_c00153{left:375.840000px;}
.x18_c00153{left:377.565000px;}
.x5d_c00153{left:379.290000px;}
.xc5_c00153{left:381.885000px;}
.xce_c00153{left:384.480000px;}
.xd_c00153{left:386.205000px;}
.xca_c00153{left:387.930000px;}
.x27_c00153{left:390.525000px;}
.x69_c00153{left:392.250000px;}
.x3d_c00153{left:394.845000px;}
.x46_c00153{left:397.440000px;}
.xdf_c00153{left:400.035000px;}
.x1f_c00153{left:402.630000px;}
.xb3_c00153{left:405.210000px;}
.x79_c00153{left:406.950000px;}
.xa7_c00153{left:410.400000px;}
.x9d_c00153{left:412.995000px;}
.xa3_c00153{left:419.040000px;}
.x32_c00153{left:423.360000px;}
.x84_c00153{left:425.955000px;}
.xe_c00153{left:428.550000px;}
.x106_c00153{left:431.130000px;}
.x96_c00153{left:432.870000px;}
.x63_c00153{left:436.320000px;}
.xe7_c00153{left:439.770000px;}
.x28_c00153{left:443.235000px;}
.xb7_c00153{left:445.830000px;}
.xa8_c00153{left:448.410000px;}
.x9e_c00153{left:451.005000px;}
.x54_c00153{left:453.600000px;}
.xf_c00153{left:457.920000px;}
.x100_c00153{left:459.645000px;}
.x88_c00153{left:461.370000px;}
.x4a_c00153{left:463.965000px;}
.xbc_c00153{left:467.430000px;}
.xe6_c00153{left:470.880000px;}
.xa4_c00153{left:472.605000px;}
.x89_c00153{left:477.795000px;}
.xfb_c00153{left:479.520000px;}
.x20_c00153{left:482.115000px;}
.x5e_c00153{left:484.710000px;}
.x10_c00153{left:487.290000px;}
.xf8_c00153{left:489.030000px;}
.x8a_c00153{left:490.755000px;}
.xf5_c00153{left:492.480000px;}
.x29_c00153{left:494.205000px;}
.x10c_c00153{left:495.930000px;}
.xee_c00153{left:498.525000px;}
.x90_c00153{left:501.120000px;}
.xcb_c00153{left:502.845000px;}
.x85_c00153{left:507.165000px;}
.x101_c00153{left:508.890000px;}
.x11_c00153{left:510.630000px;}
.xe0_c00153{left:515.805000px;}
.xb4_c00153{left:519.270000px;}
.x6a_c00153{left:521.850000px;}
.x71_c00153{left:523.590000px;}
.x7a_c00153{left:525.315000px;}
.x47_c00153{left:529.635000px;}
.x8e_c00153{left:533.955000px;}
.xa5_c00153{left:536.550000px;}
.xba_c00153{left:538.275000px;}
.x3e_c00153{left:542.595000px;}
.x4b_c00153{left:546.045000px;}
.xef_c00153{left:547.770000px;}
.x33_c00153{left:549.510000px;}
.x21_c00153{left:552.090000px;}
.x2a_c00153{left:554.685000px;}
.x64_c00153{left:557.280000px;}
.x55_c00153{left:559.005000px;}
.x48_c00153{left:561.600000px;}
.xc3_c00153{left:563.325000px;}
.x3f_c00153{left:565.920000px;}
.xb5_c00153{left:567.645000px;}
.xa9_c00153{left:569.370000px;}
.xbd_c00153{left:571.110000px;}
.x19_c00153{left:574.560000px;}
.x12_c00153{left:577.155000px;}
.x97_c00153{left:578.880000px;}
.x72_c00153{left:581.475000px;}
.x107_c00153{left:584.070000px;}
.x56_c00153{left:585.795000px;}
.xcf_c00153{left:587.520000px;}
.x5f_c00153{left:590.970000px;}
.x4c_c00153{left:593.565000px;}
.xbe_c00153{left:598.755000px;}
.x2b_c00153{left:600.480000px;}
.xac_c00153{left:602.205000px;}
.xf4_c00153{left:608.250000px;}
.xd0_c00153{left:609.990000px;}
.x91_c00153{left:612.570000px;}
.x8b_c00153{left:614.310000px;}
.x49_c00153{left:616.035000px;}
.x65_c00153{left:618.630000px;}
.xf0_c00153{left:620.355000px;}
.x2c_c00153{left:623.805000px;}
.xc6_c00153{left:625.530000px;}
.x13_c00153{left:628.995000px;}
.x57_c00153{left:632.445000px;}
.xb6_c00153{left:634.170000px;}
.x9f_c00153{left:635.910000px;}
.x86_c00153{left:637.635000px;}
.x98_c00153{left:640.230000px;}
.x104_c00153{left:642.810000px;}
.x92_c00153{left:645.405000px;}
.xd1_c00153{left:647.130000px;}
.x108_c00153{left:650.595000px;}
.x14_c00153{left:652.320000px;}
.x73_c00153{left:654.045000px;}
.x60_c00153{left:655.770000px;}
.xf1_c00153{left:659.235000px;}
.x34_c00153{left:660.960000px;}
.x58_c00153{left:662.685000px;}
.x8c_c00153{left:665.280000px;}
.x105_c00153{left:667.005000px;}
.xd2_c00153{left:668.730000px;}
.x35_c00153{left:671.325000px;}
.x15_c00153{left:674.790000px;}
.xbb_c00153{left:679.965000px;}
.xda_c00153{left:682.560000px;}
.xe8_c00153{left:684.285000px;}
.xfc_c00153{left:686.010000px;}
.x80_c00153{left:687.750000px;}
.x6b_c00153{left:691.200000px;}
.xa0_c00153{left:694.650000px;}
.x4d_c00153{left:697.245000px;}
.xd3_c00153{left:699.840000px;}
.x40_c00153{left:702.435000px;}
.xf2_c00153{left:705.885000px;}
.x1a_c00153{left:707.610000px;}
.x7b_c00153{left:709.350000px;}
.x8f_c00153{left:711.930000px;}
.x2d_c00153{left:714.525000px;}
.x36_c00153{left:717.990000px;}
.x87_c00153{left:719.715000px;}
.x8d_c00153{left:722.310000px;}
.xf6_c00153{left:730.080000px;}
.x10d_c00153{left:731.805000px;}
.xb8_c00153{left:736.125000px;}
.xfe_c00153{left:738.720000px;}
.xd4_c00153{left:743.040000px;}
.xc2_c00153{left:744.765000px;}
.x99_c00153{left:749.085000px;}
.x10e_c00153{left:752.550000px;}
.xdb_c00153{left:754.275000px;}
.xaa_c00153{left:756.000000px;}
.xbf_c00153{left:757.725000px;}
.x37_c00153{left:759.450000px;}
.xd5_c00153{left:762.915000px;}
.x66_c00153{left:764.640000px;}
.x6c_c00153{left:767.235000px;}
.x9a_c00153{left:770.685000px;}
.xdc_c00153{left:772.410000px;}
.x41_c00153{left:778.470000px;}
.x59_c00153{left:780.195000px;}
.xec_c00153{left:783.645000px;}
.xe9_c00153{left:785.370000px;}
.x22_c00153{left:789.690000px;}
.xad_c00153{left:791.430000px;}
.xcc_c00153{left:793.155000px;}
.xc7_c00153{left:794.880000px;}
.x4e_c00153{left:801.795000px;}
.x2e_c00153{left:803.520000px;}
.x42_c00153{left:805.245000px;}
.x38_c00153{left:808.710000px;}
.x7c_c00153{left:812.160000px;}
.x61_c00153{left:813.888048px;}
.x23_c00153{left:816.480000px;}
.xa1_c00153{left:818.205000px;}
.xe1_c00153{left:819.930000px;}
.x43_c00153{left:823.395000px;}
.xea_c00153{left:825.990000px;}
.x93_c00153{left:828.570000px;}
.x6d_c00153{left:831.165000px;}
.xae_c00153{left:833.760000px;}
.x4f_c00153{left:835.485000px;}
.x74_c00153{left:838.080000px;}
.x7d_c00153{left:840.675000px;}
.xe2_c00153{left:846.720000px;}
.xed_c00153{left:848.445000px;}
.x5a_c00153{left:852.765000px;}
.x16_c00153{left:855.360000px;}
.x10f_c00153{left:857.085000px;}
.x9b_c00153{left:859.680000px;}
.xd6_c00153{left:865.725000px;}
.x1b_c00153{left:868.320000px;}
.x62_c00153{left:870.915000px;}
.x109_c00153{left:872.640000px;}
.xfd_c00153{left:874.365000px;}
.x81_c00153{left:876.090000px;}
.xc4_c00153{left:879.555000px;}
.xf3_c00153{left:882.150000px;}
.xc0_c00153{left:883.875000px;}
.x24_c00153{left:887.325000px;}
.x10a_c00153{left:898.560000px;}
.x111_c00153{left:912.390000px;}
.x10b_c00153{left:917.565000px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.v2_c00153{vertical-align:3.040000pt;}
.v1_c00153{vertical-align:12.266667pt;}
.ls1_c00153{letter-spacing:0.000000pt;}
.ls0_c00153{letter-spacing:52.482389pt;}
.ws1_c00153{word-spacing:-21.897493pt;}
.ws0_c00153{word-spacing:-12.510080pt;}
.ws2_c00153{word-spacing:0.000000pt;}
.fs20_c00153{font-size:3.072000pt;}
.fs0_c00153{font-size:5.333333pt;}
.fs11_c00153{font-size:6.133333pt;}
.fs2_c00153{font-size:9.226667pt;}
.fs10_c00153{font-size:12.266667pt;}
.fs3_c00153{font-size:15.360000pt;}
.fs1_c00153{font-size:18.453333pt;}
.fs18_c00153{font-size:21.493333pt;}
.fs6_c00153{font-size:24.586667pt;}
.fs1a_c00153{font-size:27.626667pt;}
.fs5_c00153{font-size:30.720000pt;}
.fs1b_c00153{font-size:33.813333pt;}
.fs1d_c00153{font-size:36.853333pt;}
.fs1e_c00153{font-size:39.946667pt;}
.fs1c_c00153{font-size:42.986667pt;}
.fs7_c00153{font-size:46.080000pt;}
.fs15_c00153{font-size:49.173333pt;}
.fsa_c00153{font-size:52.213333pt;}
.fs8_c00153{font-size:55.306667pt;}
.fse_c00153{font-size:58.346667pt;}
.fsc_c00153{font-size:61.440000pt;}
.fsd_c00153{font-size:64.533333pt;}
.fs9_c00153{font-size:67.573333pt;}
.fsb_c00153{font-size:70.666667pt;}
.fs16_c00153{font-size:73.706667pt;}
.fs17_c00153{font-size:76.800000pt;}
.fs1f_c00153{font-size:79.893333pt;}
.fs4_c00153{font-size:82.933333pt;}
.fs13_c00153{font-size:86.026667pt;}
.fsf_c00153{font-size:89.066667pt;}
.fs12_c00153{font-size:92.160000pt;}
.fs19_c00153{font-size:95.253333pt;}
.fs14_c00153{font-size:98.293333pt;}
.fs21_c00153{font-size:101.386667pt;}
.fs23_c00153{font-size:104.426667pt;}
.fs22_c00153{font-size:107.520000pt;}
.fs24_c00153{font-size:110.613333pt;}
.fs25_c00153{font-size:116.746667pt;}
.fs26_c00153{font-size:147.466667pt;}
.y0_c00153{bottom:0.000000pt;}
.y1a4_c00153{bottom:96.000000pt;}
.y1a5_c00153{bottom:97.533333pt;}
.y1a3_c00153{bottom:98.306667pt;}
.y1a2_c00153{bottom:102.146667pt;}
.y1a1_c00153{bottom:161.280000pt;}
.y1a0_c00153{bottom:162.053333pt;}
.y19e_c00153{bottom:168.960000pt;}
.y199_c00153{bottom:176.640000pt;}
.y19f_c00153{bottom:178.946667pt;}
.y19d_c00153{bottom:183.546667pt;}
.y19c_c00153{bottom:184.320000pt;}
.y198_c00153{bottom:188.160000pt;}
.y195_c00153{bottom:188.933333pt;}
.y197_c00153{bottom:190.466667pt;}
.y19a_c00153{bottom:191.226667pt;}
.y196_c00153{bottom:192.000000pt;}
.y19b_c00153{bottom:206.586667pt;}
.y192_c00153{bottom:212.733333pt;}
.y191_c00153{bottom:213.506667pt;}
.y18c_c00153{bottom:215.040000pt;}
.y18a_c00153{bottom:215.813333pt;}
.y193_c00153{bottom:216.573333pt;}
.y18f_c00153{bottom:217.346667pt;}
.y18d_c00153{bottom:218.106667pt;}
.y189_c00153{bottom:218.880000pt;}
.y18e_c00153{bottom:220.413333pt;}
.y190_c00153{bottom:221.186667pt;}
.y18b_c00153{bottom:221.946667pt;}
.y194_c00153{bottom:223.493333pt;}
.y187_c00153{bottom:227.333333pt;}
.y185_c00153{bottom:228.093333pt;}
.y188_c00153{bottom:228.866667pt;}
.y181_c00153{bottom:229.626667pt;}
.y184_c00153{bottom:230.400000pt;}
.y183_c00153{bottom:231.173333pt;}
.y180_c00153{bottom:231.933333pt;}
.y182_c00153{bottom:233.466667pt;}
.y186_c00153{bottom:234.240000pt;}
.yb_c00153{bottom:235.013333pt;}
.y17c_c00153{bottom:235.773333pt;}
.y17f_c00153{bottom:236.546667pt;}
.y17b_c00153{bottom:237.306667pt;}
.y177_c00153{bottom:239.613333pt;}
.y17e_c00153{bottom:241.146667pt;}
.y17d_c00153{bottom:241.920000pt;}
.y178_c00153{bottom:242.693333pt;}
.y17a_c00153{bottom:243.453333pt;}
.y179_c00153{bottom:244.226667pt;}
.y176_c00153{bottom:248.066667pt;}
.y175_c00153{bottom:251.906667pt;}
.y171_c00153{bottom:252.666667pt;}
.y172_c00153{bottom:253.440000pt;}
.y16f_c00153{bottom:254.213333pt;}
.y170_c00153{bottom:254.973333pt;}
.y173_c00153{bottom:261.893333pt;}
.y174_c00153{bottom:262.653333pt;}
.y16c_c00153{bottom:280.320000pt;}
.y16b_c00153{bottom:281.093333pt;}
.y16a_c00153{bottom:281.853333pt;}
.y169_c00153{bottom:283.386667pt;}
.y16e_c00153{bottom:284.160000pt;}
.y16d_c00153{bottom:285.693333pt;}
.y161_c00153{bottom:288.773333pt;}
.y168_c00153{bottom:289.533333pt;}
.y166_c00153{bottom:293.373333pt;}
.y164_c00153{bottom:294.146667pt;}
.y163_c00153{bottom:296.453333pt;}
.y160_c00153{bottom:297.213333pt;}
.y162_c00153{bottom:297.986667pt;}
.y165_c00153{bottom:298.746667pt;}
.y167_c00153{bottom:300.293333pt;}
.y15e_c00153{bottom:301.826667pt;}
.y15a_c00153{bottom:302.586667pt;}
.y15c_c00153{bottom:303.360000pt;}
.y159_c00153{bottom:305.666667pt;}
.y15b_c00153{bottom:306.426667pt;}
.y15f_c00153{bottom:307.973333pt;}
.y15d_c00153{bottom:308.733333pt;}
.y158_c00153{bottom:315.653333pt;}
.y152_c00153{bottom:323.333333pt;}
.y157_c00153{bottom:324.866667pt;}
.y154_c00153{bottom:325.626667pt;}
.y155_c00153{bottom:326.400000pt;}
.y153_c00153{bottom:327.173333pt;}
.y156_c00153{bottom:328.706667pt;}
.y151_c00153{bottom:344.826667pt;}
.y14f_c00153{bottom:346.373333pt;}
.y14d_c00153{bottom:347.133333pt;}
.y14c_c00153{bottom:349.440000pt;}
.ya_c00153{bottom:351.746667pt;}
.y150_c00153{bottom:353.280000pt;}
.y14e_c00153{bottom:354.053333pt;}
.y147_c00153{bottom:369.413333pt;}
.y149_c00153{bottom:370.173333pt;}
.y146_c00153{bottom:370.946667pt;}
.y14a_c00153{bottom:371.706667pt;}
.y14b_c00153{bottom:373.253333pt;}
.y148_c00153{bottom:374.786667pt;}
.y145_c00153{bottom:393.213333pt;}
.y143_c00153{bottom:393.986667pt;}
.y144_c00153{bottom:400.133333pt;}
.y141_c00153{bottom:413.186667pt;}
.y13e_c00153{bottom:413.946667pt;}
.y13c_c00153{bottom:414.720000pt;}
.y13d_c00153{bottom:417.786667pt;}
.y13b_c00153{bottom:421.626667pt;}
.y13f_c00153{bottom:422.400000pt;}
.y140_c00153{bottom:423.173333pt;}
.y142_c00153{bottom:430.853333pt;}
.y139_c00153{bottom:435.453333pt;}
.y138_c00153{bottom:436.986667pt;}
.y137_c00153{bottom:437.760000pt;}
.y135_c00153{bottom:438.533333pt;}
.y13a_c00153{bottom:440.066667pt;}
.y136_c00153{bottom:441.600000pt;}
.y133_c00153{bottom:457.733333pt;}
.y130_c00153{bottom:459.266667pt;}
.y132_c00153{bottom:462.333333pt;}
.yc_c00153{bottom:463.866667pt;}
.y134_c00153{bottom:464.640000pt;}
.y12f_c00153{bottom:466.173333pt;}
.y131_c00153{bottom:466.946667pt;}
.y12e_c00153{bottom:480.000000pt;}
.y12d_c00153{bottom:480.773333pt;}
.y12c_c00153{bottom:481.533333pt;}
.y12b_c00153{bottom:482.306667pt;}
.y12a_c00153{bottom:483.066667pt;}
.y129_c00153{bottom:483.840000pt;}
.y128_c00153{bottom:484.613333pt;}
.y127_c00153{bottom:486.146667pt;}
.y126_c00153{bottom:489.213333pt;}
.y124_c00153{bottom:504.573333pt;}
.y11f_c00153{bottom:506.106667pt;}
.y121_c00153{bottom:506.880000pt;}
.y123_c00153{bottom:508.413333pt;}
.y125_c00153{bottom:509.186667pt;}
.y120_c00153{bottom:509.946667pt;}
.y11e_c00153{bottom:510.720000pt;}
.y122_c00153{bottom:511.493333pt;}
.y11d_c00153{bottom:514.560000pt;}
.y11c_c00153{bottom:525.306667pt;}
.y117_c00153{bottom:526.853333pt;}
.y116_c00153{bottom:528.386667pt;}
.y118_c00153{bottom:529.146667pt;}
.y11a_c00153{bottom:529.920000pt;}
.y11b_c00153{bottom:530.693333pt;}
.y115_c00153{bottom:531.453333pt;}
.y119_c00153{bottom:532.226667pt;}
.y110_c00153{bottom:533.760000pt;}
.y114_c00153{bottom:534.533333pt;}
.y111_c00153{bottom:538.373333pt;}
.y10e_c00153{bottom:539.133333pt;}
.y113_c00153{bottom:539.906667pt;}
.y10f_c00153{bottom:540.666667pt;}
.y10d_c00153{bottom:541.440000pt;}
.y112_c00153{bottom:542.213333pt;}
.y10c_c00153{bottom:542.973333pt;}
.y10b_c00153{bottom:543.746667pt;}
.y109_c00153{bottom:544.506667pt;}
.y10a_c00153{bottom:546.053333pt;}
.y107_c00153{bottom:547.586667pt;}
.y105_c00153{bottom:549.120000pt;}
.y106_c00153{bottom:549.893333pt;}
.y103_c00153{bottom:550.653333pt;}
.y102_c00153{bottom:553.733333pt;}
.y108_c00153{bottom:555.266667pt;}
.y104_c00153{bottom:556.026667pt;}
.y101_c00153{bottom:566.786667pt;}
.y100_c00153{bottom:570.626667pt;}
.yfd_c00153{bottom:571.386667pt;}
.yfe_c00153{bottom:572.160000pt;}
.yfc_c00153{bottom:572.933333pt;}
.yff_c00153{bottom:574.466667pt;}
.yfb_c00153{bottom:579.840000pt;}
.yf8_c00153{bottom:594.426667pt;}
.yf5_c00153{bottom:595.200000pt;}
.yfa_c00153{bottom:596.733333pt;}
.yf6_c00153{bottom:597.506667pt;}
.yf7_c00153{bottom:599.040000pt;}
.yf9_c00153{bottom:599.813333pt;}
.y9_c00153{bottom:605.186667pt;}
.yf3_c00153{bottom:613.626667pt;}
.yf1_c00153{bottom:614.400000pt;}
.yf2_c00153{bottom:615.173333pt;}
.yef_c00153{bottom:615.933333pt;}
.yf0_c00153{bottom:622.853333pt;}
.yf4_c00153{bottom:628.986667pt;}
.yee_c00153{bottom:635.906667pt;}
.yed_c00153{bottom:636.666667pt;}
.yeb_c00153{bottom:641.280000pt;}
.yec_c00153{bottom:642.053333pt;}
.yea_c00153{bottom:649.733333pt;}
.ye8_c00153{bottom:656.640000pt;}
.ye9_c00153{bottom:657.413333pt;}
.ye4_c00153{bottom:658.173333pt;}
.ye2_c00153{bottom:658.946667pt;}
.ye3_c00153{bottom:659.706667pt;}
.ye6_c00153{bottom:660.480000pt;}
.ye5_c00153{bottom:661.253333pt;}
.ye1_c00153{bottom:662.013333pt;}
.ye7_c00153{bottom:662.786667pt;}
.ye0_c00153{bottom:679.680000pt;}
.yde_c00153{bottom:681.213333pt;}
.ydf_c00153{bottom:683.520000pt;}
.ydb_c00153{bottom:685.053333pt;}
.ydd_c00153{bottom:687.360000pt;}
.ydc_c00153{bottom:688.133333pt;}
.yd9_c00153{bottom:688.893333pt;}
.yda_c00153{bottom:690.426667pt;}
.yd7_c00153{bottom:702.720000pt;}
.yd5_c00153{bottom:704.253333pt;}
.yd2_c00153{bottom:705.026667pt;}
.yd3_c00153{bottom:705.786667pt;}
.yd6_c00153{bottom:707.333333pt;}
.yd8_c00153{bottom:708.093333pt;}
.yd4_c00153{bottom:708.866667pt;}
.y8_c00153{bottom:709.626667pt;}
.y7_c00153{bottom:711.173333pt;}
.yd1_c00153{bottom:724.986667pt;}
.yce_c00153{bottom:725.760000pt;}
.yca_c00153{bottom:726.533333pt;}
.ycb_c00153{bottom:728.066667pt;}
.yd0_c00153{bottom:728.826667pt;}
.ycd_c00153{bottom:729.600000pt;}
.ycf_c00153{bottom:730.373333pt;}
.yc5_c00153{bottom:731.133333pt;}
.ycc_c00153{bottom:731.906667pt;}
.yc0_c00153{bottom:732.666667pt;}
.ybf_c00153{bottom:733.440000pt;}
.yc4_c00153{bottom:735.746667pt;}
.yc3_c00153{bottom:736.506667pt;}
.yc6_c00153{bottom:737.280000pt;}
.yc1_c00153{bottom:738.053333pt;}
.yc2_c00153{bottom:738.813333pt;}
.yc8_c00153{bottom:739.586667pt;}
.yc7_c00153{bottom:740.346667pt;}
.yc9_c00153{bottom:743.426667pt;}
.ybb_c00153{bottom:748.026667pt;}
.yba_c00153{bottom:748.800000pt;}
.ybc_c00153{bottom:749.573333pt;}
.ybe_c00153{bottom:752.640000pt;}
.yb9_c00153{bottom:755.706667pt;}
.ybd_c00153{bottom:759.546667pt;}
.yb8_c00153{bottom:767.226667pt;}
.yb3_c00153{bottom:770.306667pt;}
.yb1_c00153{bottom:771.066667pt;}
.yb4_c00153{bottom:775.680000pt;}
.yb5_c00153{bottom:776.453333pt;}
.yb2_c00153{bottom:777.213333pt;}
.yb6_c00153{bottom:786.426667pt;}
.yaf_c00153{bottom:788.733333pt;}
.yb7_c00153{bottom:790.266667pt;}
.yb0_c00153{bottom:791.813333pt;}
.yaa_c00153{bottom:794.106667pt;}
.yac_c00153{bottom:795.653333pt;}
.yab_c00153{bottom:798.720000pt;}
.ya9_c00153{bottom:799.493333pt;}
.yae_c00153{bottom:811.013333pt;}
.ya8_c00153{bottom:811.773333pt;}
.yad_c00153{bottom:812.546667pt;}
.ya7_c00153{bottom:814.080000pt;}
.ya5_c00153{bottom:815.613333pt;}
.ya4_c00153{bottom:816.386667pt;}
.ya6_c00153{bottom:820.986667pt;}
.ya3_c00153{bottom:822.533333pt;}
.y9d_c00153{bottom:829.440000pt;}
.ya1_c00153{bottom:830.213333pt;}
.ya2_c00153{bottom:831.746667pt;}
.y9b_c00153{bottom:832.506667pt;}
.ya0_c00153{bottom:834.053333pt;}
.y9e_c00153{bottom:834.813333pt;}
.y99_c00153{bottom:837.893333pt;}
.y9c_c00153{bottom:838.653333pt;}
.y9f_c00153{bottom:841.733333pt;}
.y9a_c00153{bottom:844.026667pt;}
.y97_c00153{bottom:857.853333pt;}
.y92_c00153{bottom:858.626667pt;}
.y94_c00153{bottom:859.386667pt;}
.y93_c00153{bottom:861.693333pt;}
.y96_c00153{bottom:864.773333pt;}
.y95_c00153{bottom:865.533333pt;}
.y91_c00153{bottom:866.306667pt;}
.y98_c00153{bottom:871.680000pt;}
.y90_c00153{bottom:880.893333pt;}
.y8c_c00153{bottom:881.666667pt;}
.y8a_c00153{bottom:882.426667pt;}
.y8b_c00153{bottom:883.200000pt;}
.y8d_c00153{bottom:885.506667pt;}
.y8f_c00153{bottom:887.040000pt;}
.y8e_c00153{bottom:888.573333pt;}
.y88_c00153{bottom:903.173333pt;}
.y87_c00153{bottom:903.933333pt;}
.y86_c00153{bottom:905.466667pt;}
.y84_c00153{bottom:906.240000pt;}
.y85_c00153{bottom:909.306667pt;}
.y83_c00153{bottom:911.613333pt;}
.y89_c00153{bottom:919.293333pt;}
.y82_c00153{bottom:923.133333pt;}
.y7e_c00153{bottom:926.213333pt;}
.y7c_c00153{bottom:926.973333pt;}
.y7f_c00153{bottom:928.506667pt;}
.y7b_c00153{bottom:930.813333pt;}
.y81_c00153{bottom:931.586667pt;}
.y80_c00153{bottom:932.346667pt;}
.y7d_c00153{bottom:933.120000pt;}
.y79_c00153{bottom:946.946667pt;}
.y77_c00153{bottom:947.706667pt;}
.y75_c00153{bottom:949.253333pt;}
.y78_c00153{bottom:950.786667pt;}
.y76_c00153{bottom:956.160000pt;}
.y7a_c00153{bottom:966.146667pt;}
.y6e_c00153{bottom:970.746667pt;}
.y6c_c00153{bottom:971.520000pt;}
.y74_c00153{bottom:972.293333pt;}
.y6d_c00153{bottom:976.133333pt;}
.y6b_c00153{bottom:976.893333pt;}
.y6a_c00153{bottom:977.666667pt;}
.y70_c00153{bottom:979.200000pt;}
.y71_c00153{bottom:980.733333pt;}
.y72_c00153{bottom:981.506667pt;}
.y6f_c00153{bottom:983.040000pt;}
.y73_c00153{bottom:987.653333pt;}
.y69_c00153{bottom:990.720000pt;}
.y67_c00153{bottom:993.026667pt;}
.y61_c00153{bottom:993.786667pt;}
.y64_c00153{bottom:996.093333pt;}
.y65_c00153{bottom:996.866667pt;}
.y68_c00153{bottom:997.626667pt;}
.y62_c00153{bottom:999.173333pt;}
.y66_c00153{bottom:999.933333pt;}
.y63_c00153{bottom:1000.706667pt;}
.y5f_c00153{bottom:1016.066667pt;}
.y5a_c00153{bottom:1016.826667pt;}
.y5d_c00153{bottom:1017.600000pt;}
.y5e_c00153{bottom:1019.133333pt;}
.y5c_c00153{bottom:1019.906667pt;}
.y60_c00153{bottom:1021.440000pt;}
.y5b_c00153{bottom:1022.973333pt;}
.y54_c00153{bottom:1039.106667pt;}
.y56_c00153{bottom:1039.866667pt;}
.y58_c00153{bottom:1042.173333pt;}
.y57_c00153{bottom:1045.253333pt;}
.y55_c00153{bottom:1046.786667pt;}
.y59_c00153{bottom:1049.853333pt;}
.y52_c00153{bottom:1063.680000pt;}
.y51_c00153{bottom:1064.453333pt;}
.y50_c00153{bottom:1065.213333pt;}
.y4f_c00153{bottom:1067.520000pt;}
.y6_c00153{bottom:1069.826667pt;}
.y53_c00153{bottom:1074.426667pt;}
.y4d_c00153{bottom:1080.573333pt;}
.y49_c00153{bottom:1081.346667pt;}
.y48_c00153{bottom:1082.880000pt;}
.y45_c00153{bottom:1083.653333pt;}
.y46_c00153{bottom:1084.413333pt;}
.y4b_c00153{bottom:1085.186667pt;}
.y4e_c00153{bottom:1085.946667pt;}
.y47_c00153{bottom:1088.253333pt;}
.y4c_c00153{bottom:1089.026667pt;}
.y4a_c00153{bottom:1089.786667pt;}
.y5_c00153{bottom:1093.626667pt;}
.y44_c00153{bottom:1095.933333pt;}
.y43_c00153{bottom:1103.613333pt;}
.y3d_c00153{bottom:1104.386667pt;}
.y41_c00153{bottom:1105.920000pt;}
.y3e_c00153{bottom:1106.693333pt;}
.y3f_c00153{bottom:1108.986667pt;}
.y42_c00153{bottom:1109.760000pt;}
.y40_c00153{bottom:1112.066667pt;}
.y3c_c00153{bottom:1123.586667pt;}
.y39_c00153{bottom:1124.346667pt;}
.y3b_c00153{bottom:1130.493333pt;}
.y36_c00153{bottom:1131.266667pt;}
.y37_c00153{bottom:1132.026667pt;}
.y38_c00153{bottom:1134.333333pt;}
.y3a_c00153{bottom:1135.866667pt;}
.y34_c00153{bottom:1138.173333pt;}
.y31_c00153{bottom:1139.706667pt;}
.y30_c00153{bottom:1140.480000pt;}
.y35_c00153{bottom:1142.013333pt;}
.y32_c00153{bottom:1143.546667pt;}
.y33_c00153{bottom:1144.320000pt;}
.y2f_c00153{bottom:1146.626667pt;}
.y2e_c00153{bottom:1148.933333pt;}
.y2a_c00153{bottom:1149.693333pt;}
.y2d_c00153{bottom:1150.466667pt;}
.y28_c00153{bottom:1151.226667pt;}
.y2c_c00153{bottom:1154.306667pt;}
.y26_c00153{bottom:1155.840000pt;}
.y27_c00153{bottom:1156.613333pt;}
.y2b_c00153{bottom:1157.373333pt;}
.y29_c00153{bottom:1158.146667pt;}
.y1a6_c00153{bottom:1161.986667pt;}
.y25_c00153{bottom:1172.733333pt;}
.y21_c00153{bottom:1173.506667pt;}
.y1f_c00153{bottom:1175.813333pt;}
.y23_c00153{bottom:1176.573333pt;}
.y20_c00153{bottom:1177.346667pt;}
.y24_c00153{bottom:1179.653333pt;}
.y22_c00153{bottom:1180.413333pt;}
.y1c_c00153{bottom:1193.466667pt;}
.y18_c00153{bottom:1195.013333pt;}
.y1a_c00153{bottom:1195.773333pt;}
.y19_c00153{bottom:1198.080000pt;}
.y1d_c00153{bottom:1198.853333pt;}
.y1b_c00153{bottom:1201.920000pt;}
.y1e_c00153{bottom:1208.826667pt;}
.y4_c00153{bottom:1218.053333pt;}
.y3_c00153{bottom:1220.346667pt;}
.y15_c00153{bottom:1221.120000pt;}
.y17_c00153{bottom:1221.893333pt;}
.y14_c00153{bottom:1222.653333pt;}
.y16_c00153{bottom:1223.426667pt;}
.y11_c00153{bottom:1226.493333pt;}
.y13_c00153{bottom:1227.266667pt;}
.yf_c00153{bottom:1228.026667pt;}
.ye_c00153{bottom:1229.573333pt;}
.y12_c00153{bottom:1230.333333pt;}
.y10_c00153{bottom:1231.106667pt;}
.yd_c00153{bottom:1234.946667pt;}
.y2_c00153{bottom:1287.173333pt;}
.y1_c00153{bottom:1289.466667pt;}
.h22_c00153{height:2.764500pt;}
.h2_c00153{height:4.799479pt;}
.h13_c00153{height:5.519401pt;}
.h4_c00153{height:8.303099pt;}
.h12_c00153{height:11.038802pt;}
.h5_c00153{height:13.822500pt;}
.h3_c00153{height:16.606198pt;}
.h1a_c00153{height:19.341901pt;}
.h8_c00153{height:22.125599pt;}
.h1c_c00153{height:24.861302pt;}
.h7_c00153{height:27.645000pt;}
.h1d_c00153{height:30.428698pt;}
.h1f_c00153{height:33.164401pt;}
.h20_c00153{height:35.948099pt;}
.h1e_c00153{height:38.683802pt;}
.h9_c00153{height:41.467500pt;}
.h17_c00153{height:44.251198pt;}
.hc_c00153{height:46.986901pt;}
.ha_c00153{height:49.770599pt;}
.h10_c00153{height:52.506302pt;}
.h26_c00153{height:52.810599pt;}
.he_c00153{height:55.290000pt;}
.hf_c00153{height:58.073698pt;}
.hb_c00153{height:60.809401pt;}
.hd_c00153{height:63.593099pt;}
.h18_c00153{height:66.328802pt;}
.h19_c00153{height:69.112500pt;}
.h21_c00153{height:71.896198pt;}
.h6_c00153{height:74.631901pt;}
.h15_c00153{height:77.415599pt;}
.h11_c00153{height:80.151302pt;}
.h14_c00153{height:82.935000pt;}
.h1b_c00153{height:85.718698pt;}
.h16_c00153{height:88.454401pt;}
.h23_c00153{height:91.238099pt;}
.h25_c00153{height:93.973802pt;}
.h24_c00153{height:96.757500pt;}
.h27_c00153{height:99.541198pt;}
.h28_c00153{height:105.060599pt;}
.h29_c00153{height:132.705599pt;}
.h1_c00153{height:1335.333333pt;}
.h0_c00153{height:1335.546667pt;}
.w0_c00153{width:988.413333pt;}
.w1_c00153{width:988.666667pt;}
.x0_c00153{left:0.000000pt;}
.x1_c00153{left:3.840000pt;}
.x3_c00153{left:6.146667pt;}
.x2_c00153{left:10.746667pt;}
.x4_c00153{left:17.666667pt;}
.x9_c00153{left:19.200000pt;}
.x8_c00153{left:34.560000pt;}
.x5_c00153{left:44.546667pt;}
.x6_c00153{left:96.773333pt;}
.x7_c00153{left:110.586667pt;}
.x110_c00153{left:128.253333pt;}
.xa_c00153{left:131.333333pt;}
.x50_c00153{left:172.800000pt;}
.x75_c00153{left:180.480000pt;}
.xd7_c00153{left:189.693333pt;}
.xb9_c00153{left:191.226667pt;}
.x6e_c00153{left:192.773333pt;}
.xc8_c00153{left:194.306667pt;}
.x76_c00153{left:195.840000pt;}
.xd8_c00153{left:197.373333pt;}
.x51_c00153{left:198.906667pt;}
.xe3_c00153{left:201.986667pt;}
.xdd_c00153{left:203.520000pt;}
.x94_c00153{left:206.586667pt;}
.x77_c00153{left:208.893333pt;}
.x2f_c00153{left:210.426667pt;}
.x1c_c00153{left:211.973333pt;}
.xcd_c00153{left:215.040000pt;}
.xa6_c00153{left:216.573333pt;}
.x39_c00153{left:220.413333pt;}
.xab_c00153{left:225.026667pt;}
.x102_c00153{left:228.093333pt;}
.x67_c00153{left:230.400000pt;}
.x7e_c00153{left:232.706667pt;}
.x25_c00153{left:235.013333pt;}
.x52_c00153{left:238.080000pt;}
.xb0_c00153{left:241.920000pt;}
.xff_c00153{left:244.986667pt;}
.x44_c00153{left:246.533333pt;}
.x9c_c00153{left:248.066667pt;}
.xb1_c00153{left:249.600000pt;}
.xf9_c00153{left:251.133333pt;}
.x5b_c00153{left:254.213333pt;}
.xde_c00153{left:256.506667pt;}
.x3a_c00153{left:258.813333pt;}
.xe4_c00153{left:263.426667pt;}
.x30_c00153{left:264.960000pt;}
.x6f_c00153{left:269.573333pt;}
.xa2_c00153{left:271.106667pt;}
.x26_c00153{left:272.640000pt;}
.x1d_c00153{left:274.173333pt;}
.x82_c00153{left:275.706667pt;}
.xeb_c00153{left:278.013333pt;}
.xe5_c00153{left:280.320000pt;}
.x5c_c00153{left:281.853333pt;}
.x3b_c00153{left:283.386667pt;}
.x95_c00153{left:284.933333pt;}
.x53_c00153{left:288.000000pt;}
.x31_c00153{left:290.306667pt;}
.x45_c00153{left:292.613333pt;}
.x1e_c00153{left:296.453333pt;}
.x3c_c00153{left:299.520000pt;}
.xb2_c00153{left:301.826667pt;}
.x78_c00153{left:304.893333pt;}
.xc9_c00153{left:306.426667pt;}
.xaf_c00153{left:307.973333pt;}
.xb_c00153{left:310.266667pt;}
.xfa_c00153{left:311.813333pt;}
.xc1_c00153{left:314.106667pt;}
.xf7_c00153{left:315.653333pt;}
.x17_c00153{left:318.720000pt;}
.x83_c00153{left:321.026667pt;}
.x68_c00153{left:325.626667pt;}
.xc_c00153{left:327.173333pt;}
.x103_c00153{left:328.706667pt;}
.x70_c00153{left:330.240000pt;}
.x7f_c00153{left:332.546667pt;}
.xd9_c00153{left:334.080000pt;}
.x18_c00153{left:335.613333pt;}
.x5d_c00153{left:337.146667pt;}
.xc5_c00153{left:339.453333pt;}
.xce_c00153{left:341.760000pt;}
.xd_c00153{left:343.293333pt;}
.xca_c00153{left:344.826667pt;}
.x27_c00153{left:347.133333pt;}
.x69_c00153{left:348.666667pt;}
.x3d_c00153{left:350.973333pt;}
.x46_c00153{left:353.280000pt;}
.xdf_c00153{left:355.586667pt;}
.x1f_c00153{left:357.893333pt;}
.xb3_c00153{left:360.186667pt;}
.x79_c00153{left:361.733333pt;}
.xa7_c00153{left:364.800000pt;}
.x9d_c00153{left:367.106667pt;}
.xa3_c00153{left:372.480000pt;}
.x32_c00153{left:376.320000pt;}
.x84_c00153{left:378.626667pt;}
.xe_c00153{left:380.933333pt;}
.x106_c00153{left:383.226667pt;}
.x96_c00153{left:384.773333pt;}
.x63_c00153{left:387.840000pt;}
.xe7_c00153{left:390.906667pt;}
.x28_c00153{left:393.986667pt;}
.xb7_c00153{left:396.293333pt;}
.xa8_c00153{left:398.586667pt;}
.x9e_c00153{left:400.893333pt;}
.x54_c00153{left:403.200000pt;}
.xf_c00153{left:407.040000pt;}
.x100_c00153{left:408.573333pt;}
.x88_c00153{left:410.106667pt;}
.x4a_c00153{left:412.413333pt;}
.xbc_c00153{left:415.493333pt;}
.xe6_c00153{left:418.560000pt;}
.xa4_c00153{left:420.093333pt;}
.x89_c00153{left:424.706667pt;}
.xfb_c00153{left:426.240000pt;}
.x20_c00153{left:428.546667pt;}
.x5e_c00153{left:430.853333pt;}
.x10_c00153{left:433.146667pt;}
.xf8_c00153{left:434.693333pt;}
.x8a_c00153{left:436.226667pt;}
.xf5_c00153{left:437.760000pt;}
.x29_c00153{left:439.293333pt;}
.x10c_c00153{left:440.826667pt;}
.xee_c00153{left:443.133333pt;}
.x90_c00153{left:445.440000pt;}
.xcb_c00153{left:446.973333pt;}
.x85_c00153{left:450.813333pt;}
.x101_c00153{left:452.346667pt;}
.x11_c00153{left:453.893333pt;}
.xe0_c00153{left:458.493333pt;}
.xb4_c00153{left:461.573333pt;}
.x6a_c00153{left:463.866667pt;}
.x71_c00153{left:465.413333pt;}
.x7a_c00153{left:466.946667pt;}
.x47_c00153{left:470.786667pt;}
.x8e_c00153{left:474.626667pt;}
.xa5_c00153{left:476.933333pt;}
.xba_c00153{left:478.466667pt;}
.x3e_c00153{left:482.306667pt;}
.x4b_c00153{left:485.373333pt;}
.xef_c00153{left:486.906667pt;}
.x33_c00153{left:488.453333pt;}
.x21_c00153{left:490.746667pt;}
.x2a_c00153{left:493.053333pt;}
.x64_c00153{left:495.360000pt;}
.x55_c00153{left:496.893333pt;}
.x48_c00153{left:499.200000pt;}
.xc3_c00153{left:500.733333pt;}
.x3f_c00153{left:503.040000pt;}
.xb5_c00153{left:504.573333pt;}
.xa9_c00153{left:506.106667pt;}
.xbd_c00153{left:507.653333pt;}
.x19_c00153{left:510.720000pt;}
.x12_c00153{left:513.026667pt;}
.x97_c00153{left:514.560000pt;}
.x72_c00153{left:516.866667pt;}
.x107_c00153{left:519.173333pt;}
.x56_c00153{left:520.706667pt;}
.xcf_c00153{left:522.240000pt;}
.x5f_c00153{left:525.306667pt;}
.x4c_c00153{left:527.613333pt;}
.xbe_c00153{left:532.226667pt;}
.x2b_c00153{left:533.760000pt;}
.xac_c00153{left:535.293333pt;}
.xf4_c00153{left:540.666667pt;}
.xd0_c00153{left:542.213333pt;}
.x91_c00153{left:544.506667pt;}
.x8b_c00153{left:546.053333pt;}
.x49_c00153{left:547.586667pt;}
.x65_c00153{left:549.893333pt;}
.xf0_c00153{left:551.426667pt;}
.x2c_c00153{left:554.493333pt;}
.xc6_c00153{left:556.026667pt;}
.x13_c00153{left:559.106667pt;}
.x57_c00153{left:562.173333pt;}
.xb6_c00153{left:563.706667pt;}
.x9f_c00153{left:565.253333pt;}
.x86_c00153{left:566.786667pt;}
.x98_c00153{left:569.093333pt;}
.x104_c00153{left:571.386667pt;}
.x92_c00153{left:573.693333pt;}
.xd1_c00153{left:575.226667pt;}
.x108_c00153{left:578.306667pt;}
.x14_c00153{left:579.840000pt;}
.x73_c00153{left:581.373333pt;}
.x60_c00153{left:582.906667pt;}
.xf1_c00153{left:585.986667pt;}
.x34_c00153{left:587.520000pt;}
.x58_c00153{left:589.053333pt;}
.x8c_c00153{left:591.360000pt;}
.x105_c00153{left:592.893333pt;}
.xd2_c00153{left:594.426667pt;}
.x35_c00153{left:596.733333pt;}
.x15_c00153{left:599.813333pt;}
.xbb_c00153{left:604.413333pt;}
.xda_c00153{left:606.720000pt;}
.xe8_c00153{left:608.253333pt;}
.xfc_c00153{left:609.786667pt;}
.x80_c00153{left:611.333333pt;}
.x6b_c00153{left:614.400000pt;}
.xa0_c00153{left:617.466667pt;}
.x4d_c00153{left:619.773333pt;}
.xd3_c00153{left:622.080000pt;}
.x40_c00153{left:624.386667pt;}
.xf2_c00153{left:627.453333pt;}
.x1a_c00153{left:628.986667pt;}
.x7b_c00153{left:630.533333pt;}
.x8f_c00153{left:632.826667pt;}
.x2d_c00153{left:635.133333pt;}
.x36_c00153{left:638.213333pt;}
.x87_c00153{left:639.746667pt;}
.x8d_c00153{left:642.053333pt;}
.xf6_c00153{left:648.960000pt;}
.x10d_c00153{left:650.493333pt;}
.xb8_c00153{left:654.333333pt;}
.xfe_c00153{left:656.640000pt;}
.xd4_c00153{left:660.480000pt;}
.xc2_c00153{left:662.013333pt;}
.x99_c00153{left:665.853333pt;}
.x10e_c00153{left:668.933333pt;}
.xdb_c00153{left:670.466667pt;}
.xaa_c00153{left:672.000000pt;}
.xbf_c00153{left:673.533333pt;}
.x37_c00153{left:675.066667pt;}
.xd5_c00153{left:678.146667pt;}
.x66_c00153{left:679.680000pt;}
.x6c_c00153{left:681.986667pt;}
.x9a_c00153{left:685.053333pt;}
.xdc_c00153{left:686.586667pt;}
.x41_c00153{left:691.973333pt;}
.x59_c00153{left:693.506667pt;}
.xec_c00153{left:696.573333pt;}
.xe9_c00153{left:698.106667pt;}
.x22_c00153{left:701.946667pt;}
.xad_c00153{left:703.493333pt;}
.xcc_c00153{left:705.026667pt;}
.xc7_c00153{left:706.560000pt;}
.x4e_c00153{left:712.706667pt;}
.x2e_c00153{left:714.240000pt;}
.x42_c00153{left:715.773333pt;}
.x38_c00153{left:718.853333pt;}
.x7c_c00153{left:721.920000pt;}
.x61_c00153{left:723.456043pt;}
.x23_c00153{left:725.760000pt;}
.xa1_c00153{left:727.293333pt;}
.xe1_c00153{left:728.826667pt;}
.x43_c00153{left:731.906667pt;}
.xea_c00153{left:734.213333pt;}
.x93_c00153{left:736.506667pt;}
.x6d_c00153{left:738.813333pt;}
.xae_c00153{left:741.120000pt;}
.x4f_c00153{left:742.653333pt;}
.x74_c00153{left:744.960000pt;}
.x7d_c00153{left:747.266667pt;}
.xe2_c00153{left:752.640000pt;}
.xed_c00153{left:754.173333pt;}
.x5a_c00153{left:758.013333pt;}
.x16_c00153{left:760.320000pt;}
.x10f_c00153{left:761.853333pt;}
.x9b_c00153{left:764.160000pt;}
.xd6_c00153{left:769.533333pt;}
.x1b_c00153{left:771.840000pt;}
.x62_c00153{left:774.146667pt;}
.x109_c00153{left:775.680000pt;}
.xfd_c00153{left:777.213333pt;}
.x81_c00153{left:778.746667pt;}
.xc4_c00153{left:781.826667pt;}
.xf3_c00153{left:784.133333pt;}
.xc0_c00153{left:785.666667pt;}
.x24_c00153{left:788.733333pt;}
.x10a_c00153{left:798.720000pt;}
.x111_c00153{left:811.013333pt;}
.x10b_c00153{left:815.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_39199101e25aaf7847b2e610.woff2')format("woff");}.ff1_c00154{font-family:ff1_c00154;line-height:1.109863;font-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_c00154{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00154{transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);}
.m2b_c00154{transform:matrix(0.072625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072625,0.000000,0.000000,0.250000,0,0);}
.m70_c00154{transform:matrix(0.092725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092725,0.000000,0.000000,0.250000,0,0);}
.m138_c00154{transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);}
.m166_c00154{transform:matrix(0.109625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109625,0.000000,0.000000,0.250000,0,0);}
.me1_c00154{transform:matrix(0.109750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109750,0.000000,0.000000,0.250000,0,0);}
.me5_c00154{transform:matrix(0.110200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110200,0.000000,0.000000,0.250000,0,0);}
.m161_c00154{transform:matrix(0.114850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114850,0.000000,0.000000,0.250000,0,0);}
.m147_c00154{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);}
.m3a_c00154{transform:matrix(0.119600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119600,0.000000,0.000000,0.250000,0,0);}
.m12b_c00154{transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);}
.m130_c00154{transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);}
.m2d_c00154{transform:matrix(0.123975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123975,0.000000,0.000000,0.250000,0,0);}
.m36_c00154{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m134_c00154{transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);}
.m163_c00154{transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);}
.mf5_c00154{transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);}
.m107_c00154{transform:matrix(0.126975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126975,0.000000,0.000000,0.250000,0,0);}
.m140_c00154{transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);}
.me3_c00154{transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);}
.mf4_c00154{transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);}
.mb1_c00154{transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);}
.m3c_c00154{transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);}
.mb2_c00154{transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);}
.mb_c00154{transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);}
.mf3_c00154{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);}
.m9f_c00154{transform:matrix(0.136700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136700,0.000000,0.000000,0.250000,0,0);}
.m15f_c00154{transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);}
.m27_c00154{transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);}
.me4_c00154{transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);}
.m33_c00154{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.m14d_c00154{transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);}
.mc_c00154{transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);}
.mf2_c00154{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m2_c00154{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mab_c00154{transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);}
.md8_c00154{transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);}
.m83_c00154{transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);}
.m165_c00154{transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);}
.me8_c00154{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.mf8_c00154{transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);}
.mb9_c00154{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.m162_c00154{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);}
.m52_c00154{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m13e_c00154{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.md5_c00154{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.m105_c00154{transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);}
.m99_c00154{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.mf_c00154{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.m23_c00154{transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);}
.m7c_c00154{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m78_c00154{transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);}
.m14e_c00154{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m150_c00154{transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);}
.md1_c00154{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);}
.m74_c00154{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.md_c00154{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);}
.mf9_c00154{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);}
.m42_c00154{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m13f_c00154{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m90_c00154{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.mde_c00154{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m127_c00154{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);}
.m13b_c00154{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.mb3_c00154{transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);}
.m34_c00154{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);}
.m106_c00154{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.m15a_c00154{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m11_c00154{transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);}
.mcf_c00154{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.m14f_c00154{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m13c_c00154{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m114_c00154{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);}
.m11e_c00154{transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);}
.m4d_c00154{transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);}
.md2_c00154{transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);}
.m133_c00154{transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);}
.maf_c00154{transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);}
.m14b_c00154{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);}
.m66_c00154{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m154_c00154{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);}
.md0_c00154{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.m11f_c00154{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m8a_c00154{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.mc2_c00154{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);}
.m160_c00154{transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);}
.m148_c00154{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m142_c00154{transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);}
.meb_c00154{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m155_c00154{transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);}
.m4b_c00154{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.m126_c00154{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m87_c00154{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.m15e_c00154{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m2e_c00154{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m11b_c00154{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);}
.m115_c00154{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);}
.mc4_c00154{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m8b_c00154{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);}
.mbc_c00154{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m123_c00154{transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);}
.m146_c00154{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00154{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m7d_c00154{transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);}
.mbd_c00154{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m9a_c00154{transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);}
.m6f_c00154{transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);}
.mdd_c00154{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m7a_c00154{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m15c_c00154{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.m10_c00154{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.m131_c00154{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m4a_c00154{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.m159_c00154{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m5c_c00154{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);}
.m98_c00154{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m17_c00154{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.mc9_c00154{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m8d_c00154{transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);}
.mf6_c00154{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.m21_c00154{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m6e_c00154{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m7f_c00154{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);}
.m125_c00154{transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);}
.m81_c00154{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m143_c00154{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m13a_c00154{transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);}
.mba_c00154{transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);}
.me9_c00154{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.mec_c00154{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m111_c00154{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);}
.mf7_c00154{transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);}
.m93_c00154{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);}
.mfb_c00154{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.mef_c00154{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);}
.m4f_c00154{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m109_c00154{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);}
.m100_c00154{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);}
.m121_c00154{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);}
.m8c_c00154{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.mfe_c00154{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m58_c00154{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.m35_c00154{transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);}
.m8e_c00154{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);}
.ma2_c00154{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m8f_c00154{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.mca_c00154{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);}
.m136_c00154{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.mc7_c00154{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m9d_c00154{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);}
.m1b_c00154{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);}
.mbb_c00154{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.mc3_c00154{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m69_c00154{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);}
.m80_c00154{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.m102_c00154{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m12e_c00154{transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);}
.m144_c00154{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.m157_c00154{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);}
.m92_c00154{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);}
.m151_c00154{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.m103_c00154{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.m9c_c00154{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m12d_c00154{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);}
.mee_c00154{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);}
.m117_c00154{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.m158_c00154{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.me2_c00154{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m10e_c00154{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);}
.m38_c00154{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);}
.m97_c00154{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m14a_c00154{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.m9e_c00154{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);}
.m8_c00154{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);}
.m145_c00154{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);}
.m2a_c00154{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);}
.m139_c00154{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);}
.m15b_c00154{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);}
.m43_c00154{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m28_c00154{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);}
.m7b_c00154{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);}
.m96_c00154{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m72_c00154{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.m116_c00154{transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);}
.mcb_c00154{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);}
.m13d_c00154{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.m32_c00154{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m122_c00154{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.mc6_c00154{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);}
.ma3_c00154{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);}
.mfc_c00154{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m18_c00154{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m75_c00154{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);}
.m156_c00154{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);}
.m48_c00154{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.md9_c00154{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);}
.mbf_c00154{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3d_c00154{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);}
.m26_c00154{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);}
.mb0_c00154{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);}
.m64_c00154{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);}
.m76_c00154{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);}
.m95_c00154{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.m89_c00154{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.md3_c00154{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);}
.m12c_c00154{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m71_c00154{transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);}
.mff_c00154{transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);}
.m84_c00154{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.mdf_c00154{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);}
.m153_c00154{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);}
.m88_c00154{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);}
.m37_c00154{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);}
.m101_c00154{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.m53_c00154{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);}
.m10b_c00154{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.m10f_c00154{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.mdc_c00154{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);}
.m73_c00154{transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);}
.ma8_c00154{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m152_c00154{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);}
.m137_c00154{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m135_c00154{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);}
.m91_c00154{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);}
.m44_c00154{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m104_c00154{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);}
.mc0_c00154{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);}
.m49_c00154{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m118_c00154{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);}
.md7_c00154{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m149_c00154{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);}
.md6_c00154{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);}
.m51_c00154{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);}
.m119_c00154{transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);}
.m10a_c00154{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.me_c00154{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.mb8_c00154{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);}
.m6a_c00154{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.m22_c00154{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m11a_c00154{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m11d_c00154{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);}
.m6_c00154{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);}
.me7_c00154{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);}
.m164_c00154{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);}
.m29_c00154{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.me6_c00154{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m82_c00154{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);}
.m19_c00154{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m12f_c00154{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);}
.m50_c00154{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);}
.md4_c00154{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);}
.m4e_c00154{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);}
.m12_c00154{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m41_c00154{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);}
.m1a_c00154{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);}
.m4_c00154{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);}
.m16_c00154{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);}
.m13_c00154{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.med_c00154{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00154{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00154{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);}
.m45_c00154{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00154{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);}
.m54_c00154{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);}
.m14c_c00154{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00154{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_c00154{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00154{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m15_c00154{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);}
.m20_c00154{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m86_c00154{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);}
.mb7_c00154{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);}
.m24_c00154{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m31_c00154{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00154{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);}
.m4c_c00154{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m25_c00154{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00154{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);}
.m1f_c00154{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00154{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00154{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00154{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00154{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m79_c00154{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);}
.m40_c00154{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00154{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m46_c00154{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00154{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m67_c00154{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);}
.m5d_c00154{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m59_c00154{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);}
.mce_c00154{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m77_c00154{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m56_c00154{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00154{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);}
.m132_c00154{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m113_c00154{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00154{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mac_c00154{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00154{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);}
.m11c_c00154{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m55_c00154{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m141_c00154{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00154{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m68_c00154{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);}
.mfd_c00154{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00154{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);}
.m57_c00154{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00154{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);}
.m6c_c00154{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mda_c00154{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m85_c00154{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00154{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00154{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);}
.m124_c00154{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00154{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.maa_c00154{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00154{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m30_c00154{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00154{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m1_c00154{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mb6_c00154{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00154{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);}
.mf0_c00154{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00154{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);}
.me0_c00154{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00154{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00154{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.ma_c00154{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);}
.m61_c00154{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00154{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m0_c00154{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00154{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m39_c00154{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00154{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00154{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m128_c00154{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m94_c00154{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m112_c00154{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.mea_c00154{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m108_c00154{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m65_c00154{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);}
.m5a_c00154{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m60_c00154{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m120_c00154{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00154{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m15d_c00154{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mae_c00154{transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);}
.m110_c00154{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m62_c00154{transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00154{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00154{transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00154{transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);}
.m47_c00154{transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00154{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m9_c00154{transform:matrix(1.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.630000,0.000000,0.000000,0.250000,0,0);}
.mad_c00154{transform:matrix(2.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.395000,0.000000,0.000000,0.250000,0,0);}
.m129_c00154{transform:matrix(6.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.625000,0.000000,0.000000,0.250000,0,0);}
.v1_c00154{vertical-align:-3.420000px;}
.v0_c00154{vertical-align:0.000000px;}
.ls1_c00154{letter-spacing:0.000000px;}
.ls0_c00154{letter-spacing:58.338000px;}
.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:-21.020160px;}
.ws1_c00154{word-spacing:0.000000px;}
.fc0_c00154{color:transparent;}
.fs3_c00154{font-size:3.456000px;}
.fs1e_c00154{font-size:6.000000px;}
.fs0_c00154{font-size:6.900000px;}
.fs9_c00154{font-size:10.380000px;}
.fs18_c00154{font-size:13.800000px;}
.fs2_c00154{font-size:17.280000px;}
.fs1_c00154{font-size:20.760000px;}
.fs1d_c00154{font-size:24.180000px;}
.fs1f_c00154{font-size:27.660000px;}
.fs1a_c00154{font-size:31.080000px;}
.fs17_c00154{font-size:34.560000px;}
.fs1b_c00154{font-size:38.040000px;}
.fs23_c00154{font-size:41.460000px;}
.fs20_c00154{font-size:44.940000px;}
.fs10_c00154{font-size:48.360000px;}
.fs8_c00154{font-size:51.840000px;}
.fs1c_c00154{font-size:55.320000px;}
.fse_c00154{font-size:58.740000px;}
.fs6_c00154{font-size:62.220000px;}
.fsf_c00154{font-size:65.640000px;}
.fs4_c00154{font-size:69.120000px;}
.fs13_c00154{font-size:72.600000px;}
.fs12_c00154{font-size:76.020000px;}
.fs19_c00154{font-size:79.500000px;}
.fs15_c00154{font-size:82.920000px;}
.fsc_c00154{font-size:86.400000px;}
.fs5_c00154{font-size:89.880000px;}
.fsb_c00154{font-size:93.300000px;}
.fs14_c00154{font-size:96.780000px;}
.fsa_c00154{font-size:100.200000px;}
.fs7_c00154{font-size:103.680000px;}
.fs11_c00154{font-size:107.160000px;}
.fs16_c00154{font-size:110.580000px;}
.fs25_c00154{font-size:114.060000px;}
.fsd_c00154{font-size:117.480000px;}
.fs22_c00154{font-size:120.960000px;}
.fs24_c00154{font-size:124.440000px;}
.fs26_c00154{font-size:127.860000px;}
.fs21_c00154{font-size:179.700000px;}
.y0_c00154{bottom:0.000000px;}
.y15d_c00154{bottom:222.045000px;}
.y159_c00154{bottom:222.915000px;}
.y15b_c00154{bottom:228.090000px;}
.y15c_c00154{bottom:228.960000px;}
.y15a_c00154{bottom:230.685000px;}
.y158_c00154{bottom:237.600000px;}
.y157_c00154{bottom:252.285000px;}
.y156_c00154{bottom:253.155000px;}
.y152_c00154{bottom:254.010000px;}
.y154_c00154{bottom:254.880000px;}
.y14f_c00154{bottom:256.605000px;}
.y151_c00154{bottom:257.475000px;}
.y150_c00154{bottom:258.330000px;}
.y155_c00154{bottom:260.070000px;}
.y163_c00154{bottom:260.925000px;}
.y153_c00154{bottom:261.795000px;}
.y14e_c00154{bottom:268.710000px;}
.y14d_c00154{bottom:278.205000px;}
.y14c_c00154{bottom:279.075000px;}
.y14a_c00154{bottom:279.930000px;}
.y148_c00154{bottom:280.800000px;}
.y147_c00154{bottom:283.395000px;}
.y14b_c00154{bottom:284.250000px;}
.y145_c00154{bottom:285.120000px;}
.y149_c00154{bottom:285.990000px;}
.y146_c00154{bottom:286.845000px;}
.y161_c00154{bottom:295.485000px;}
.y162_c00154{bottom:296.355000px;}
.y143_c00154{bottom:303.270000px;}
.y13f_c00154{bottom:304.125000px;}
.y140_c00154{bottom:305.850000px;}
.y142_c00154{bottom:306.720000px;}
.y141_c00154{bottom:310.170000px;}
.y13d_c00154{bottom:311.040000px;}
.y13e_c00154{bottom:311.910000px;}
.y13c_c00154{bottom:315.360000px;}
.y13b_c00154{bottom:321.405000px;}
.y144_c00154{bottom:326.595000px;}
.y138_c00154{bottom:327.450000px;}
.y132_c00154{bottom:328.320000px;}
.y134_c00154{bottom:329.190000px;}
.y131_c00154{bottom:330.045000px;}
.y130_c00154{bottom:330.915000px;}
.y139_c00154{bottom:331.770000px;}
.y135_c00154{bottom:332.640000px;}
.y136_c00154{bottom:333.510000px;}
.y13a_c00154{bottom:336.090000px;}
.y137_c00154{bottom:336.960000px;}
.y133_c00154{bottom:337.830000px;}
.y12f_c00154{bottom:340.410000px;}
.y12e_c00154{bottom:353.370000px;}
.y12c_c00154{bottom:354.240000px;}
.y12a_c00154{bottom:355.110000px;}
.y12b_c00154{bottom:358.560000px;}
.y12d_c00154{bottom:361.155000px;}
.y129_c00154{bottom:362.010000px;}
.y160_c00154{bottom:376.710000px;}
.y127_c00154{bottom:378.435000px;}
.y125_c00154{bottom:380.160000px;}
.y122_c00154{bottom:381.030000px;}
.y123_c00154{bottom:382.755000px;}
.y126_c00154{bottom:383.610000px;}
.y128_c00154{bottom:386.205000px;}
.y124_c00154{bottom:387.930000px;}
.y15f_c00154{bottom:404.355000px;}
.y11f_c00154{bottom:406.080000px;}
.y120_c00154{bottom:406.950000px;}
.y11e_c00154{bottom:409.530000px;}
.y11d_c00154{bottom:412.125000px;}
.y121_c00154{bottom:428.550000px;}
.y114_c00154{bottom:430.275000px;}
.y11b_c00154{bottom:431.130000px;}
.y113_c00154{bottom:432.000000px;}
.y117_c00154{bottom:433.725000px;}
.y11c_c00154{bottom:435.450000px;}
.y115_c00154{bottom:438.045000px;}
.y116_c00154{bottom:438.915000px;}
.y118_c00154{bottom:439.770000px;}
.y11a_c00154{bottom:452.730000px;}
.y119_c00154{bottom:454.470000px;}
.y111_c00154{bottom:455.325000px;}
.y10f_c00154{bottom:456.195000px;}
.y110_c00154{bottom:463.110000px;}
.y112_c00154{bottom:474.330000px;}
.y10d_c00154{bottom:479.520000px;}
.y10a_c00154{bottom:481.245000px;}
.y109_c00154{bottom:482.970000px;}
.y10c_c00154{bottom:483.840000px;}
.y107_c00154{bottom:485.565000px;}
.y10e_c00154{bottom:486.435000px;}
.y106_c00154{bottom:487.290000px;}
.y10b_c00154{bottom:488.160000px;}
.y108_c00154{bottom:489.030000px;}
.y105_c00154{bottom:504.570000px;}
.y100_c00154{bottom:506.310000px;}
.yff_c00154{bottom:507.165000px;}
.y104_c00154{bottom:508.035000px;}
.yfe_c00154{bottom:508.890000px;}
.y102_c00154{bottom:509.760000px;}
.yfb_c00154{bottom:510.630000px;}
.y103_c00154{bottom:512.355000px;}
.y101_c00154{bottom:513.210000px;}
.yfd_c00154{bottom:514.080000px;}
.yfc_c00154{bottom:519.270000px;}
.yfa_c00154{bottom:525.315000px;}
.yf8_c00154{bottom:529.635000px;}
.yf4_c00154{bottom:531.360000px;}
.yf5_c00154{bottom:533.955000px;}
.yf3_c00154{bottom:534.810000px;}
.yef_c00154{bottom:535.680000px;}
.yf2_c00154{bottom:537.405000px;}
.yf0_c00154{bottom:538.275000px;}
.yf7_c00154{bottom:540.870000px;}
.yf6_c00154{bottom:545.190000px;}
.yf1_c00154{bottom:547.770000px;}
.yf9_c00154{bottom:548.640000px;}
.yec_c00154{bottom:553.830000px;}
.yed_c00154{bottom:554.685000px;}
.ye8_c00154{bottom:555.555000px;}
.yea_c00154{bottom:556.410000px;}
.yee_c00154{bottom:557.280000px;}
.yeb_c00154{bottom:560.730000px;}
.ye9_c00154{bottom:562.470000px;}
.ye7_c00154{bottom:571.965000px;}
.ye2_c00154{bottom:581.475000px;}
.ye4_c00154{bottom:582.330000px;}
.ye6_c00154{bottom:584.070000px;}
.ye3_c00154{bottom:585.795000px;}
.ye5_c00154{bottom:586.650000px;}
.ydf_c00154{bottom:605.670000px;}
.yd9_c00154{bottom:606.525000px;}
.ydb_c00154{bottom:607.395000px;}
.ye0_c00154{bottom:608.250000px;}
.yda_c00154{bottom:609.990000px;}
.yde_c00154{bottom:612.570000px;}
.ye1_c00154{bottom:613.440000px;}
.ydc_c00154{bottom:614.310000px;}
.ydd_c00154{bottom:615.165000px;}
.yd8_c00154{bottom:625.530000px;}
.yd1_c00154{bottom:627.270000px;}
.yd4_c00154{bottom:628.125000px;}
.yd6_c00154{bottom:628.995000px;}
.yd2_c00154{bottom:629.850000px;}
.yce_c00154{bottom:630.720000px;}
.ycf_c00154{bottom:637.635000px;}
.yd7_c00154{bottom:638.490000px;}
.yd5_c00154{bottom:639.360000px;}
.yd0_c00154{bottom:640.230000px;}
.yd3_c00154{bottom:645.405000px;}
.ycb_c00154{bottom:656.640000px;}
.yca_c00154{bottom:657.510000px;}
.ycc_c00154{bottom:662.685000px;}
.ycd_c00154{bottom:664.410000px;}
.yc9_c00154{bottom:665.280000px;}
.yc0_c00154{bottom:674.790000px;}
.yc6_c00154{bottom:677.370000px;}
.yc2_c00154{bottom:678.240000px;}
.yc3_c00154{bottom:679.110000px;}
.ybe_c00154{bottom:681.690000px;}
.yc1_c00154{bottom:682.560000px;}
.yc7_c00154{bottom:685.155000px;}
.ybf_c00154{bottom:686.010000px;}
.yc4_c00154{bottom:686.880000px;}
.ybd_c00154{bottom:687.750000px;}
.yc5_c00154{bottom:689.475000px;}
.yc8_c00154{bottom:700.710000px;}
.yb9_c00154{bottom:705.030000px;}
.ybc_c00154{bottom:705.885000px;}
.ybb_c00154{bottom:706.755000px;}
.yb4_c00154{bottom:708.480000px;}
.yb8_c00154{bottom:709.350000px;}
.yba_c00154{bottom:711.930000px;}
.yb7_c00154{bottom:712.800000px;}
.yb6_c00154{bottom:713.670000px;}
.yb5_c00154{bottom:714.525000px;}
.yae_c00154{bottom:728.355000px;}
.yad_c00154{bottom:729.210000px;}
.yac_c00154{bottom:730.080000px;}
.yaf_c00154{bottom:730.950000px;}
.yb0_c00154{bottom:733.530000px;}
.yb1_c00154{bottom:736.125000px;}
.yb3_c00154{bottom:737.850000px;}
.yb2_c00154{bottom:738.720000px;}
.yaa_c00154{bottom:744.765000px;}
.ya8_c00154{bottom:745.635000px;}
.yab_c00154{bottom:751.680000px;}
.ya9_c00154{bottom:752.550000px;}
.ya2_c00154{bottom:754.275000px;}
.ya4_c00154{bottom:755.130000px;}
.ya6_c00154{bottom:756.000000px;}
.ya5_c00154{bottom:760.320000px;}
.ya7_c00154{bottom:762.045000px;}
.ya3_c00154{bottom:762.915000px;}
.ya1_c00154{bottom:770.685000px;}
.ya0_c00154{bottom:779.325000px;}
.y9f_c00154{bottom:780.195000px;}
.y9d_c00154{bottom:781.920000px;}
.y9e_c00154{bottom:783.645000px;}
.y9c_c00154{bottom:786.240000px;}
.y9b_c00154{bottom:787.110000px;}
.y99_c00154{bottom:793.155000px;}
.y9a_c00154{bottom:796.605000px;}
.y97_c00154{bottom:802.650000px;}
.y98_c00154{bottom:804.390000px;}
.y92_c00154{bottom:805.245000px;}
.y96_c00154{bottom:806.115000px;}
.y95_c00154{bottom:808.710000px;}
.y94_c00154{bottom:809.565000px;}
.y93_c00154{bottom:811.290000px;}
.y15e_c00154{bottom:812.160000px;}
.y8e_c00154{bottom:827.715000px;}
.y90_c00154{bottom:828.570000px;}
.y8f_c00154{bottom:832.035000px;}
.y8b_c00154{bottom:832.890000px;}
.y8d_c00154{bottom:833.760000px;}
.y8c_c00154{bottom:835.485000px;}
.y91_c00154{bottom:836.355000px;}
.y88_c00154{bottom:860.550000px;}
.y87_c00154{bottom:861.405000px;}
.y89_c00154{bottom:864.870000px;}
.y8a_c00154{bottom:867.450000px;}
.y83_c00154{bottom:875.235000px;}
.y84_c00154{bottom:876.090000px;}
.y82_c00154{bottom:884.730000px;}
.y86_c00154{bottom:909.795000px;}
.y7f_c00154{bottom:910.650000px;}
.y7c_c00154{bottom:912.390000px;}
.y7d_c00154{bottom:913.245000px;}
.y7e_c00154{bottom:914.115000px;}
.y81_c00154{bottom:914.970000px;}
.y80_c00154{bottom:915.840000px;}
.y7b_c00154{bottom:936.570000px;}
.y85_c00154{bottom:952.995000px;}
.y7a_c00154{bottom:1003.110000px;}
.y78_c00154{bottom:1004.835000px;}
.y72_c00154{bottom:1005.690000px;}
.y77_c00154{bottom:1006.560000px;}
.y73_c00154{bottom:1009.155000px;}
.y74_c00154{bottom:1010.010000px;}
.y79_c00154{bottom:1012.605000px;}
.y76_c00154{bottom:1013.475000px;}
.y75_c00154{bottom:1014.330000px;}
.y70_c00154{bottom:1015.200000px;}
.y71_c00154{bottom:1020.390000px;}
.y6c_c00154{bottom:1032.480000px;}
.y6b_c00154{bottom:1033.350000px;}
.y6e_c00154{bottom:1035.930000px;}
.y6d_c00154{bottom:1038.525000px;}
.y6f_c00154{bottom:1042.845000px;}
.y67_c00154{bottom:1055.805000px;}
.y66_c00154{bottom:1056.675000px;}
.y65_c00154{bottom:1057.530000px;}
.y68_c00154{bottom:1058.400000px;}
.y6a_c00154{bottom:1059.270000px;}
.y64_c00154{bottom:1060.995000px;}
.y69_c00154{bottom:1064.445000px;}
.y63_c00154{bottom:1082.595000px;}
.y61_c00154{bottom:1085.190000px;}
.y62_c00154{bottom:1086.045000px;}
.y60_c00154{bottom:1087.770000px;}
.y5f_c00154{bottom:1088.640000px;}
.y5e_c00154{bottom:1105.920000px;}
.y5b_c00154{bottom:1107.645000px;}
.y5c_c00154{bottom:1110.240000px;}
.y4_c00154{bottom:1112.835000px;}
.y3_c00154{bottom:1113.690000px;}
.y5d_c00154{bottom:1115.430000px;}
.y58_c00154{bottom:1130.970000px;}
.y53_c00154{bottom:1132.710000px;}
.y57_c00154{bottom:1135.290000px;}
.y59_c00154{bottom:1137.030000px;}
.y55_c00154{bottom:1137.885000px;}
.y54_c00154{bottom:1138.755000px;}
.y56_c00154{bottom:1139.610000px;}
.y5a_c00154{bottom:1141.350000px;}
.y50_c00154{bottom:1155.165000px;}
.y51_c00154{bottom:1156.035000px;}
.y4f_c00154{bottom:1157.760000px;}
.y4b_c00154{bottom:1158.630000px;}
.y4c_c00154{bottom:1159.485000px;}
.y4d_c00154{bottom:1160.355000px;}
.y4a_c00154{bottom:1162.080000px;}
.y52_c00154{bottom:1162.950000px;}
.y42_c00154{bottom:1163.805000px;}
.y43_c00154{bottom:1164.675000px;}
.y4e_c00154{bottom:1165.530000px;}
.y46_c00154{bottom:1171.590000px;}
.y47_c00154{bottom:1173.315000px;}
.y48_c00154{bottom:1174.170000px;}
.y49_c00154{bottom:1175.040000px;}
.y45_c00154{bottom:1175.910000px;}
.y44_c00154{bottom:1177.635000px;}
.y3d_c00154{bottom:1180.230000px;}
.y3c_c00154{bottom:1181.085000px;}
.y3e_c00154{bottom:1185.405000px;}
.y40_c00154{bottom:1186.275000px;}
.y3f_c00154{bottom:1188.870000px;}
.y41_c00154{bottom:1190.595000px;}
.y39_c00154{bottom:1204.410000px;}
.y35_c00154{bottom:1206.150000px;}
.y36_c00154{bottom:1207.005000px;}
.y37_c00154{bottom:1207.875000px;}
.y3a_c00154{bottom:1210.470000px;}
.y38_c00154{bottom:1213.920000px;}
.y2_c00154{bottom:1223.430000px;}
.y3b_c00154{bottom:1224.285000px;}
.y1_c00154{bottom:1226.880000px;}
.y33_c00154{bottom:1231.200000px;}
.y32_c00154{bottom:1232.070000px;}
.y30_c00154{bottom:1233.795000px;}
.y2f_c00154{bottom:1234.650000px;}
.y34_c00154{bottom:1237.245000px;}
.y31_c00154{bottom:1238.115000px;}
.y27_c00154{bottom:1255.395000px;}
.y2e_c00154{bottom:1256.250000px;}
.y2c_c00154{bottom:1258.845000px;}
.y2b_c00154{bottom:1259.715000px;}
.y29_c00154{bottom:1260.570000px;}
.y25_c00154{bottom:1261.440000px;}
.y26_c00154{bottom:1262.310000px;}
.y2a_c00154{bottom:1263.165000px;}
.y2d_c00154{bottom:1264.035000px;}
.y28_c00154{bottom:1264.890000px;}
.y1d_c00154{bottom:1282.170000px;}
.y20_c00154{bottom:1283.040000px;}
.y23_c00154{bottom:1283.910000px;}
.y21_c00154{bottom:1285.635000px;}
.y1e_c00154{bottom:1287.360000px;}
.y1f_c00154{bottom:1288.230000px;}
.y22_c00154{bottom:1289.085000px;}
.y24_c00154{bottom:1291.680000px;}
.y1c_c00154{bottom:1309.830000px;}
.y1a_c00154{bottom:1310.685000px;}
.y1b_c00154{bottom:1311.555000px;}
.y19_c00154{bottom:1313.280000px;}
.y18_c00154{bottom:1315.005000px;}
.y17_c00154{bottom:1327.110000px;}
.y14_c00154{bottom:1331.430000px;}
.y12_c00154{bottom:1332.285000px;}
.y15_c00154{bottom:1333.155000px;}
.y13_c00154{bottom:1334.880000px;}
.y16_c00154{bottom:1338.330000px;}
.yf_c00154{bottom:1356.480000px;}
.ye_c00154{bottom:1357.350000px;}
.y11_c00154{bottom:1362.525000px;}
.yd_c00154{bottom:1364.250000px;}
.y10_c00154{bottom:1365.120000px;}
.yc_c00154{bottom:1368.570000px;}
.ya_c00154{bottom:1388.445000px;}
.yb_c00154{bottom:1390.170000px;}
.y9_c00154{bottom:1391.040000px;}
.y8_c00154{bottom:1396.230000px;}
.y6_c00154{bottom:1397.085000px;}
.y7_c00154{bottom:1397.955000px;}
.y5_c00154{bottom:1408.320000px;}
.h5_c00154{height:3.110063px;}
.h20_c00154{height:5.399414px;}
.h2_c00154{height:6.209326px;}
.hb_c00154{height:9.340986px;}
.h1a_c00154{height:12.418652px;}
.h4_c00154{height:15.550313px;}
.h3_c00154{height:18.681973px;}
.h1f_c00154{height:21.759639px;}
.h21_c00154{height:24.891299px;}
.h1c_c00154{height:27.968965px;}
.h19_c00154{height:31.100625px;}
.h1d_c00154{height:34.232285px;}
.h25_c00154{height:37.309951px;}
.h22_c00154{height:40.441611px;}
.h12_c00154{height:43.519277px;}
.ha_c00154{height:46.650937px;}
.h1e_c00154{height:49.782598px;}
.h10_c00154{height:52.860264px;}
.h8_c00154{height:55.991924px;}
.h11_c00154{height:59.069590px;}
.h6_c00154{height:62.201250px;}
.h15_c00154{height:65.332910px;}
.h14_c00154{height:68.410576px;}
.h1b_c00154{height:71.542236px;}
.h17_c00154{height:74.619902px;}
.he_c00154{height:77.751563px;}
.h7_c00154{height:80.883223px;}
.hd_c00154{height:83.960889px;}
.h16_c00154{height:87.092549px;}
.hc_c00154{height:90.170215px;}
.h9_c00154{height:93.301875px;}
.h13_c00154{height:96.433535px;}
.h18_c00154{height:99.511201px;}
.h27_c00154{height:102.642861px;}
.hf_c00154{height:105.720527px;}
.h24_c00154{height:108.852188px;}
.h26_c00154{height:111.983848px;}
.h28_c00154{height:115.061514px;}
.h23_c00154{height:161.712451px;}
.h0_c00154{height:1523.235000px;}
.h1_c00154{height:1523.250000px;}
.w0_c00154{width:1090.365000px;}
.w1_c00154{width:1090.500000px;}
.x0_c00154{left:0.000000px;}
.x3_c00154{left:123.555000px;}
.x4_c00154{left:133.050000px;}
.x1_c00154{left:143.430000px;}
.xc6_c00154{left:146.880000px;}
.x2_c00154{left:154.650000px;}
.xde_c00154{left:157.245000px;}
.xc7_c00154{left:161.565000px;}
.xc8_c00154{left:172.800000px;}
.xfd_c00154{left:179.715000px;}
.xc9_c00154{left:184.035000px;}
.xd8_c00154{left:189.210000px;}
.xf3_c00154{left:195.270000px;}
.x8a_c00154{left:198.720000px;}
.xd9_c00154{left:201.315000px;}
.x1f_c00154{left:203.040000px;}
.x66_c00154{left:208.230000px;}
.xf8_c00154{left:209.955000px;}
.x86_c00154{left:214.275000px;}
.xb5_c00154{left:217.725000px;}
.xd_c00154{left:220.320000px;}
.xb6_c00154{left:224.640000px;}
.x42_c00154{left:227.235000px;}
.xa_c00154{left:228.960000px;}
.xc3_c00154{left:230.685000px;}
.xe_c00154{left:233.280000px;}
.x51_c00154{left:235.005000px;}
.x8b_c00154{left:247.965000px;}
.x5_c00154{left:252.285000px;}
.x8c_c00154{left:254.010000px;}
.xa0_c00154{left:257.475000px;}
.xbf_c00154{left:259.200000px;}
.x20_c00154{left:264.390000px;}
.xb7_c00154{left:266.970000px;}
.xf_c00154{left:272.160000px;}
.x2f_c00154{left:277.350000px;}
.x18_c00154{left:280.800000px;}
.x87_c00154{left:282.525000px;}
.xdf_c00154{left:285.990000px;}
.x79_c00154{left:287.715000px;}
.x43_c00154{left:290.310000px;}
.x7e_c00154{left:292.890000px;}
.x49_c00154{left:294.630000px;}
.x30_c00154{left:298.080000px;}
.xaf_c00154{left:299.805000px;}
.xb8_c00154{left:301.530000px;}
.x8d_c00154{left:304.125000px;}
.x52_c00154{left:309.315000px;}
.x67_c00154{left:312.765000px;}
.xe0_c00154{left:316.230000px;}
.xb_c00154{left:317.955000px;}
.x5b_c00154{left:321.405000px;}
.x72_c00154{left:324.000000px;}
.x68_c00154{left:328.320000px;}
.x31_c00154{left:330.045000px;}
.x8e_c00154{left:332.640000px;}
.xd5_c00154{left:334.365000px;}
.x10_c00154{left:337.830000px;}
.x69_c00154{left:340.410000px;}
.xf4_c00154{left:342.150000px;}
.x4a_c00154{left:344.730000px;}
.xfe_c00154{left:346.470000px;}
.x32_c00154{left:348.195000px;}
.xe4_c00154{left:355.110000px;}
.x21_c00154{left:357.690000px;}
.xe7_c00154{left:360.285000px;}
.xa8_c00154{left:363.750000px;}
.x88_c00154{left:366.330000px;}
.x19_c00154{left:368.070000px;}
.x53_c00154{left:369.795000px;}
.x33_c00154{left:373.245000px;}
.xab_c00154{left:374.970000px;}
.x6_c00154{left:376.710000px;}
.xf5_c00154{left:378.435000px;}
.x7a_c00154{left:381.030000px;}
.xa1_c00154{left:382.755000px;}
.xf9_c00154{left:385.350000px;}
.x44_c00154{left:387.075000px;}
.x34_c00154{left:392.250000px;}
.xea_c00154{left:395.715000px;}
.xb9_c00154{left:397.440000px;}
.x8f_c00154{left:400.035000px;}
.x75_c00154{left:402.630000px;}
.x90_c00154{left:404.355000px;}
.xeb_c00154{left:406.080000px;}
.x5c_c00154{left:409.530000px;}
.x7f_c00154{left:413.850000px;}
.x45_c00154{left:416.445000px;}
.x6a_c00154{left:419.910000px;}
.xd6_c00154{left:422.490000px;}
.xc_c00154{left:425.085000px;}
.x54_c00154{left:428.550000px;}
.x91_c00154{left:430.275000px;}
.x25_c00154{left:432.870000px;}
.xec_c00154{left:436.320000px;}
.xac_c00154{left:439.770000px;}
.x22_c00154{left:441.510000px;}
.x92_c00154{left:444.090000px;}
.x35_c00154{left:448.410000px;}
.x6b_c00154{left:451.005000px;}
.x97_c00154{left:452.730000px;}
.x4b_c00154{left:455.325000px;}
.xba_c00154{left:457.050000px;}
.xf2_c00154{left:458.790000px;}
.x11_c00154{left:463.110000px;}
.x7_c00154{left:469.155000px;}
.x73_c00154{left:472.605000px;}
.x98_c00154{left:475.200000px;}
.x55_c00154{left:476.925000px;}
.x93_c00154{left:480.390000px;}
.x5d_c00154{left:482.115000px;}
.x1a_c00154{left:483.840000px;}
.xf1_c00154{left:485.565000px;}
.x94_c00154{left:488.160000px;}
.xce_c00154{left:490.755000px;}
.xa5_c00154{left:492.480000px;}
.x99_c00154{left:494.205000px;}
.xe5_c00154{left:495.930000px;}
.x6c_c00154{left:497.670000px;}
.xa2_c00154{left:501.120000px;}
.x5e_c00154{left:504.570000px;}
.xca_c00154{left:507.165000px;}
.x26_c00154{left:508.890000px;}
.x95_c00154{left:511.485000px;}
.xf6_c00154{left:516.675000px;}
.x12_c00154{left:518.400000px;}
.xfa_c00154{left:520.125000px;}
.xe1_c00154{left:521.850000px;}
.xb0_c00154{left:523.590000px;}
.xa6_c00154{left:526.170000px;}
.xff_c00154{left:528.765000px;}
.x6d_c00154{left:531.360000px;}
.x46_c00154{left:535.680000px;}
.x1b_c00154{left:537.405000px;}
.x4c_c00154{left:540.000000px;}
.xbb_c00154{left:541.725000px;}
.x13_c00154{left:544.320000px;}
.x9f_c00154{left:546.915000px;}
.x9a_c00154{left:549.510000px;}
.x27_c00154{left:552.960000px;}
.x9b_c00154{left:559.005000px;}
.x36_c00154{left:561.600000px;}
.x89_c00154{left:564.195000px;}
.x8_c00154{left:565.920000px;}
.x101_c00154{left:567.645000px;}
.x80_c00154{left:569.370000px;}
.x96_c00154{left:572.835000px;}
.x37_c00154{left:574.560000px;}
.xee_c00154{left:578.880000px;}
.x23_c00154{left:580.605000px;}
.x6e_c00154{left:583.200000px;}
.xc0_c00154{left:585.795000px;}
.xbc_c00154{left:587.520000px;}
.xcb_c00154{left:589.245000px;}
.x38_c00154{left:592.710000px;}
.xcf_c00154{left:596.160000px;}
.x56_c00154{left:598.755000px;}
.x14_c00154{left:601.350000px;}
.x5f_c00154{left:603.930000px;}
.x9_c00154{left:609.990000px;}
.x1c_c00154{left:611.715000px;}
.x39_c00154{left:614.310000px;}
.xe2_c00154{left:616.035000px;}
.x6f_c00154{left:617.760000px;}
.x28_c00154{left:620.355000px;}
.xe8_c00154{left:622.950000px;}
.xa9_c00154{left:625.530000px;}
.xf7_c00154{left:630.720000px;}
.xbd_c00154{left:632.445000px;}
.x102_c00154{left:635.040000px;}
.xb1_c00154{left:639.360000px;}
.xcc_c00154{left:641.085000px;}
.x3a_c00154{left:643.680000px;}
.xef_c00154{left:648.870000px;}
.x76_c00154{left:650.595000px;}
.xd2_c00154{left:652.320000px;}
.x57_c00154{left:656.640000px;}
.x74_c00154{left:660.090000px;}
.xc1_c00154{left:662.685000px;}
.xc4_c00154{left:666.150000px;}
.xe9_c00154{left:667.875000px;}
.x3b_c00154{left:669.600000px;}
.x9c_c00154{left:673.050000px;}
.x58_c00154{left:677.370000px;}
.x7b_c00154{left:680.835000px;}
.xcd_c00154{left:682.560000px;}
.xda_c00154{left:684.285000px;}
.x81_c00154{left:687.750000px;}
.x4d_c00154{left:689.475000px;}
.x1d_c00154{left:691.200000px;}
.xa3_c00154{left:694.650000px;}
.x60_c00154{left:699.840000px;}
.x29_c00154{left:703.290000px;}
.x61_c00154{left:706.755000px;}
.x82_c00154{left:708.480000px;}
.x3c_c00154{left:710.205000px;}
.x47_c00154{left:711.930000px;}
.x62_c00154{left:714.525000px;}
.xd3_c00154{left:717.120000px;}
.xbe_c00154{left:718.845000px;}
.x77_c00154{left:720.570000px;}
.x83_c00154{left:723.165000px;}
.x103_c00154{left:726.630000px;}
.x4e_c00154{left:728.355000px;}
.xdb_c00154{left:730.080000px;}
.x84_c00154{left:732.675000px;}
.x63_c00154{left:735.270000px;}
.x15_c00154{left:736.995000px;}
.x2a_c00154{left:740.445000px;}
.x24_c00154{left:742.170000px;}
.xd0_c00154{left:743.910000px;}
.x3d_c00154{left:747.360000px;}
.xc5_c00154{left:751.680000px;}
.x78_c00154{left:755.130000px;}
.x59_c00154{left:756.870000px;}
.x16_c00154{left:759.450000px;}
.xd1_c00154{left:762.915000px;}
.x70_c00154{left:764.640000px;}
.xfb_c00154{left:768.090000px;}
.x3e_c00154{left:770.685000px;}
.x64_c00154{left:774.150000px;}
.xa4_c00154{left:777.600000px;}
.xe3_c00154{left:781.920000px;}
.x71_c00154{left:787.110000px;}
.xaa_c00154{left:789.690000px;}
.x1e_c00154{left:793.155000px;}
.x100_c00154{left:794.880000px;}
.xad_c00154{left:799.200000px;}
.x2b_c00154{left:802.650000px;}
.x4f_c00154{left:809.565000px;}
.x85_c00154{left:811.290000px;}
.xfc_c00154{left:813.885000px;}
.x7c_c00154{left:816.480000px;}
.x3f_c00154{left:820.800000px;}
.x2c_c00154{left:825.990000px;}
.xa7_c00154{left:828.570000px;}
.x65_c00154{left:830.310000px;}
.xae_c00154{left:832.035000px;}
.x40_c00154{left:833.760000px;}
.x17_c00154{left:835.485000px;}
.xb2_c00154{left:837.210000px;}
.xed_c00154{left:838.950000px;}
.xf0_c00154{left:844.125000px;}
.x2d_c00154{left:846.720000px;}
.x7d_c00154{left:848.445000px;}
.xd4_c00154{left:851.040000px;}
.xdc_c00154{left:852.765000px;}
.x41_c00154{left:855.360000px;}
.xe6_c00154{left:861.405000px;}
.x5a_c00154{left:864.000000px;}
.x2e_c00154{left:865.725000px;}
.xdd_c00154{left:869.190000px;}
.xd7_c00154{left:870.915000px;}
.xc2_c00154{left:876.090000px;}
.xb3_c00154{left:881.280000px;}
.x50_c00154{left:883.005000px;}
.x48_c00154{left:886.470000px;}
.xb4_c00154{left:890.790000px;}
.x108_c00154{left:919.290000px;}
.x109_c00154{left:928.800000px;}
.x106_c00154{left:933.120000px;}
.x10b_c00154{left:938.310000px;}
.x10a_c00154{left:942.630000px;}
.x107_c00154{left:946.080000px;}
.x9d_c00154{left:952.995000px;}
.x9e_c00154{left:958.170000px;}
.x105_c00154{left:982.365000px;}
.x104_c00154{left:1067.910000px;}
@media print{
.v1_c00154{vertical-align:-3.040000pt;}
.v0_c00154{vertical-align:0.000000pt;}
.ls1_c00154{letter-spacing:0.000000pt;}
.ls0_c00154{letter-spacing:51.856000pt;}
.ws0_c00154{word-spacing:-18.684587pt;}
.ws1_c00154{word-spacing:0.000000pt;}
.fs3_c00154{font-size:3.072000pt;}
.fs1e_c00154{font-size:5.333333pt;}
.fs0_c00154{font-size:6.133333pt;}
.fs9_c00154{font-size:9.226667pt;}
.fs18_c00154{font-size:12.266667pt;}
.fs2_c00154{font-size:15.360000pt;}
.fs1_c00154{font-size:18.453333pt;}
.fs1d_c00154{font-size:21.493333pt;}
.fs1f_c00154{font-size:24.586667pt;}
.fs1a_c00154{font-size:27.626667pt;}
.fs17_c00154{font-size:30.720000pt;}
.fs1b_c00154{font-size:33.813333pt;}
.fs23_c00154{font-size:36.853333pt;}
.fs20_c00154{font-size:39.946667pt;}
.fs10_c00154{font-size:42.986667pt;}
.fs8_c00154{font-size:46.080000pt;}
.fs1c_c00154{font-size:49.173333pt;}
.fse_c00154{font-size:52.213333pt;}
.fs6_c00154{font-size:55.306667pt;}
.fsf_c00154{font-size:58.346667pt;}
.fs4_c00154{font-size:61.440000pt;}
.fs13_c00154{font-size:64.533333pt;}
.fs12_c00154{font-size:67.573333pt;}
.fs19_c00154{font-size:70.666667pt;}
.fs15_c00154{font-size:73.706667pt;}
.fsc_c00154{font-size:76.800000pt;}
.fs5_c00154{font-size:79.893333pt;}
.fsb_c00154{font-size:82.933333pt;}
.fs14_c00154{font-size:86.026667pt;}
.fsa_c00154{font-size:89.066667pt;}
.fs7_c00154{font-size:92.160000pt;}
.fs11_c00154{font-size:95.253333pt;}
.fs16_c00154{font-size:98.293333pt;}
.fs25_c00154{font-size:101.386667pt;}
.fsd_c00154{font-size:104.426667pt;}
.fs22_c00154{font-size:107.520000pt;}
.fs24_c00154{font-size:110.613333pt;}
.fs26_c00154{font-size:113.653333pt;}
.fs21_c00154{font-size:159.733333pt;}
.y0_c00154{bottom:0.000000pt;}
.y15d_c00154{bottom:197.373333pt;}
.y159_c00154{bottom:198.146667pt;}
.y15b_c00154{bottom:202.746667pt;}
.y15c_c00154{bottom:203.520000pt;}
.y15a_c00154{bottom:205.053333pt;}
.y158_c00154{bottom:211.200000pt;}
.y157_c00154{bottom:224.253333pt;}
.y156_c00154{bottom:225.026667pt;}
.y152_c00154{bottom:225.786667pt;}
.y154_c00154{bottom:226.560000pt;}
.y14f_c00154{bottom:228.093333pt;}
.y151_c00154{bottom:228.866667pt;}
.y150_c00154{bottom:229.626667pt;}
.y155_c00154{bottom:231.173333pt;}
.y163_c00154{bottom:231.933333pt;}
.y153_c00154{bottom:232.706667pt;}
.y14e_c00154{bottom:238.853333pt;}
.y14d_c00154{bottom:247.293333pt;}
.y14c_c00154{bottom:248.066667pt;}
.y14a_c00154{bottom:248.826667pt;}
.y148_c00154{bottom:249.600000pt;}
.y147_c00154{bottom:251.906667pt;}
.y14b_c00154{bottom:252.666667pt;}
.y145_c00154{bottom:253.440000pt;}
.y149_c00154{bottom:254.213333pt;}
.y146_c00154{bottom:254.973333pt;}
.y161_c00154{bottom:262.653333pt;}
.y162_c00154{bottom:263.426667pt;}
.y143_c00154{bottom:269.573333pt;}
.y13f_c00154{bottom:270.333333pt;}
.y140_c00154{bottom:271.866667pt;}
.y142_c00154{bottom:272.640000pt;}
.y141_c00154{bottom:275.706667pt;}
.y13d_c00154{bottom:276.480000pt;}
.y13e_c00154{bottom:277.253333pt;}
.y13c_c00154{bottom:280.320000pt;}
.y13b_c00154{bottom:285.693333pt;}
.y144_c00154{bottom:290.306667pt;}
.y138_c00154{bottom:291.066667pt;}
.y132_c00154{bottom:291.840000pt;}
.y134_c00154{bottom:292.613333pt;}
.y131_c00154{bottom:293.373333pt;}
.y130_c00154{bottom:294.146667pt;}
.y139_c00154{bottom:294.906667pt;}
.y135_c00154{bottom:295.680000pt;}
.y136_c00154{bottom:296.453333pt;}
.y13a_c00154{bottom:298.746667pt;}
.y137_c00154{bottom:299.520000pt;}
.y133_c00154{bottom:300.293333pt;}
.y12f_c00154{bottom:302.586667pt;}
.y12e_c00154{bottom:314.106667pt;}
.y12c_c00154{bottom:314.880000pt;}
.y12a_c00154{bottom:315.653333pt;}
.y12b_c00154{bottom:318.720000pt;}
.y12d_c00154{bottom:321.026667pt;}
.y129_c00154{bottom:321.786667pt;}
.y160_c00154{bottom:334.853333pt;}
.y127_c00154{bottom:336.386667pt;}
.y125_c00154{bottom:337.920000pt;}
.y122_c00154{bottom:338.693333pt;}
.y123_c00154{bottom:340.226667pt;}
.y126_c00154{bottom:340.986667pt;}
.y128_c00154{bottom:343.293333pt;}
.y124_c00154{bottom:344.826667pt;}
.y15f_c00154{bottom:359.426667pt;}
.y11f_c00154{bottom:360.960000pt;}
.y120_c00154{bottom:361.733333pt;}
.y11e_c00154{bottom:364.026667pt;}
.y11d_c00154{bottom:366.333333pt;}
.y121_c00154{bottom:380.933333pt;}
.y114_c00154{bottom:382.466667pt;}
.y11b_c00154{bottom:383.226667pt;}
.y113_c00154{bottom:384.000000pt;}
.y117_c00154{bottom:385.533333pt;}
.y11c_c00154{bottom:387.066667pt;}
.y115_c00154{bottom:389.373333pt;}
.y116_c00154{bottom:390.146667pt;}
.y118_c00154{bottom:390.906667pt;}
.y11a_c00154{bottom:402.426667pt;}
.y119_c00154{bottom:403.973333pt;}
.y111_c00154{bottom:404.733333pt;}
.y10f_c00154{bottom:405.506667pt;}
.y110_c00154{bottom:411.653333pt;}
.y112_c00154{bottom:421.626667pt;}
.y10d_c00154{bottom:426.240000pt;}
.y10a_c00154{bottom:427.773333pt;}
.y109_c00154{bottom:429.306667pt;}
.y10c_c00154{bottom:430.080000pt;}
.y107_c00154{bottom:431.613333pt;}
.y10e_c00154{bottom:432.386667pt;}
.y106_c00154{bottom:433.146667pt;}
.y10b_c00154{bottom:433.920000pt;}
.y108_c00154{bottom:434.693333pt;}
.y105_c00154{bottom:448.506667pt;}
.y100_c00154{bottom:450.053333pt;}
.yff_c00154{bottom:450.813333pt;}
.y104_c00154{bottom:451.586667pt;}
.yfe_c00154{bottom:452.346667pt;}
.y102_c00154{bottom:453.120000pt;}
.yfb_c00154{bottom:453.893333pt;}
.y103_c00154{bottom:455.426667pt;}
.y101_c00154{bottom:456.186667pt;}
.yfd_c00154{bottom:456.960000pt;}
.yfc_c00154{bottom:461.573333pt;}
.yfa_c00154{bottom:466.946667pt;}
.yf8_c00154{bottom:470.786667pt;}
.yf4_c00154{bottom:472.320000pt;}
.yf5_c00154{bottom:474.626667pt;}
.yf3_c00154{bottom:475.386667pt;}
.yef_c00154{bottom:476.160000pt;}
.yf2_c00154{bottom:477.693333pt;}
.yf0_c00154{bottom:478.466667pt;}
.yf7_c00154{bottom:480.773333pt;}
.yf6_c00154{bottom:484.613333pt;}
.yf1_c00154{bottom:486.906667pt;}
.yf9_c00154{bottom:487.680000pt;}
.yec_c00154{bottom:492.293333pt;}
.yed_c00154{bottom:493.053333pt;}
.ye8_c00154{bottom:493.826667pt;}
.yea_c00154{bottom:494.586667pt;}
.yee_c00154{bottom:495.360000pt;}
.yeb_c00154{bottom:498.426667pt;}
.ye9_c00154{bottom:499.973333pt;}
.ye7_c00154{bottom:508.413333pt;}
.ye2_c00154{bottom:516.866667pt;}
.ye4_c00154{bottom:517.626667pt;}
.ye6_c00154{bottom:519.173333pt;}
.ye3_c00154{bottom:520.706667pt;}
.ye5_c00154{bottom:521.466667pt;}
.ydf_c00154{bottom:538.373333pt;}
.yd9_c00154{bottom:539.133333pt;}
.ydb_c00154{bottom:539.906667pt;}
.ye0_c00154{bottom:540.666667pt;}
.yda_c00154{bottom:542.213333pt;}
.yde_c00154{bottom:544.506667pt;}
.ye1_c00154{bottom:545.280000pt;}
.ydc_c00154{bottom:546.053333pt;}
.ydd_c00154{bottom:546.813333pt;}
.yd8_c00154{bottom:556.026667pt;}
.yd1_c00154{bottom:557.573333pt;}
.yd4_c00154{bottom:558.333333pt;}
.yd6_c00154{bottom:559.106667pt;}
.yd2_c00154{bottom:559.866667pt;}
.yce_c00154{bottom:560.640000pt;}
.ycf_c00154{bottom:566.786667pt;}
.yd7_c00154{bottom:567.546667pt;}
.yd5_c00154{bottom:568.320000pt;}
.yd0_c00154{bottom:569.093333pt;}
.yd3_c00154{bottom:573.693333pt;}
.ycb_c00154{bottom:583.680000pt;}
.yca_c00154{bottom:584.453333pt;}
.ycc_c00154{bottom:589.053333pt;}
.ycd_c00154{bottom:590.586667pt;}
.yc9_c00154{bottom:591.360000pt;}
.yc0_c00154{bottom:599.813333pt;}
.yc6_c00154{bottom:602.106667pt;}
.yc2_c00154{bottom:602.880000pt;}
.yc3_c00154{bottom:603.653333pt;}
.ybe_c00154{bottom:605.946667pt;}
.yc1_c00154{bottom:606.720000pt;}
.yc7_c00154{bottom:609.026667pt;}
.ybf_c00154{bottom:609.786667pt;}
.yc4_c00154{bottom:610.560000pt;}
.ybd_c00154{bottom:611.333333pt;}
.yc5_c00154{bottom:612.866667pt;}
.yc8_c00154{bottom:622.853333pt;}
.yb9_c00154{bottom:626.693333pt;}
.ybc_c00154{bottom:627.453333pt;}
.ybb_c00154{bottom:628.226667pt;}
.yb4_c00154{bottom:629.760000pt;}
.yb8_c00154{bottom:630.533333pt;}
.yba_c00154{bottom:632.826667pt;}
.yb7_c00154{bottom:633.600000pt;}
.yb6_c00154{bottom:634.373333pt;}
.yb5_c00154{bottom:635.133333pt;}
.yae_c00154{bottom:647.426667pt;}
.yad_c00154{bottom:648.186667pt;}
.yac_c00154{bottom:648.960000pt;}
.yaf_c00154{bottom:649.733333pt;}
.yb0_c00154{bottom:652.026667pt;}
.yb1_c00154{bottom:654.333333pt;}
.yb3_c00154{bottom:655.866667pt;}
.yb2_c00154{bottom:656.640000pt;}
.yaa_c00154{bottom:662.013333pt;}
.ya8_c00154{bottom:662.786667pt;}
.yab_c00154{bottom:668.160000pt;}
.ya9_c00154{bottom:668.933333pt;}
.ya2_c00154{bottom:670.466667pt;}
.ya4_c00154{bottom:671.226667pt;}
.ya6_c00154{bottom:672.000000pt;}
.ya5_c00154{bottom:675.840000pt;}
.ya7_c00154{bottom:677.373333pt;}
.ya3_c00154{bottom:678.146667pt;}
.ya1_c00154{bottom:685.053333pt;}
.ya0_c00154{bottom:692.733333pt;}
.y9f_c00154{bottom:693.506667pt;}
.y9d_c00154{bottom:695.040000pt;}
.y9e_c00154{bottom:696.573333pt;}
.y9c_c00154{bottom:698.880000pt;}
.y9b_c00154{bottom:699.653333pt;}
.y99_c00154{bottom:705.026667pt;}
.y9a_c00154{bottom:708.093333pt;}
.y97_c00154{bottom:713.466667pt;}
.y98_c00154{bottom:715.013333pt;}
.y92_c00154{bottom:715.773333pt;}
.y96_c00154{bottom:716.546667pt;}
.y95_c00154{bottom:718.853333pt;}
.y94_c00154{bottom:719.613333pt;}
.y93_c00154{bottom:721.146667pt;}
.y15e_c00154{bottom:721.920000pt;}
.y8e_c00154{bottom:735.746667pt;}
.y90_c00154{bottom:736.506667pt;}
.y8f_c00154{bottom:739.586667pt;}
.y8b_c00154{bottom:740.346667pt;}
.y8d_c00154{bottom:741.120000pt;}
.y8c_c00154{bottom:742.653333pt;}
.y91_c00154{bottom:743.426667pt;}
.y88_c00154{bottom:764.933333pt;}
.y87_c00154{bottom:765.693333pt;}
.y89_c00154{bottom:768.773333pt;}
.y8a_c00154{bottom:771.066667pt;}
.y83_c00154{bottom:777.986667pt;}
.y84_c00154{bottom:778.746667pt;}
.y82_c00154{bottom:786.426667pt;}
.y86_c00154{bottom:808.706667pt;}
.y7f_c00154{bottom:809.466667pt;}
.y7c_c00154{bottom:811.013333pt;}
.y7d_c00154{bottom:811.773333pt;}
.y7e_c00154{bottom:812.546667pt;}
.y81_c00154{bottom:813.306667pt;}
.y80_c00154{bottom:814.080000pt;}
.y7b_c00154{bottom:832.506667pt;}
.y85_c00154{bottom:847.106667pt;}
.y7a_c00154{bottom:891.653333pt;}
.y78_c00154{bottom:893.186667pt;}
.y72_c00154{bottom:893.946667pt;}
.y77_c00154{bottom:894.720000pt;}
.y73_c00154{bottom:897.026667pt;}
.y74_c00154{bottom:897.786667pt;}
.y79_c00154{bottom:900.093333pt;}
.y76_c00154{bottom:900.866667pt;}
.y75_c00154{bottom:901.626667pt;}
.y70_c00154{bottom:902.400000pt;}
.y71_c00154{bottom:907.013333pt;}
.y6c_c00154{bottom:917.760000pt;}
.y6b_c00154{bottom:918.533333pt;}
.y6e_c00154{bottom:920.826667pt;}
.y6d_c00154{bottom:923.133333pt;}
.y6f_c00154{bottom:926.973333pt;}
.y67_c00154{bottom:938.493333pt;}
.y66_c00154{bottom:939.266667pt;}
.y65_c00154{bottom:940.026667pt;}
.y68_c00154{bottom:940.800000pt;}
.y6a_c00154{bottom:941.573333pt;}
.y64_c00154{bottom:943.106667pt;}
.y69_c00154{bottom:946.173333pt;}
.y63_c00154{bottom:962.306667pt;}
.y61_c00154{bottom:964.613333pt;}
.y62_c00154{bottom:965.373333pt;}
.y60_c00154{bottom:966.906667pt;}
.y5f_c00154{bottom:967.680000pt;}
.y5e_c00154{bottom:983.040000pt;}
.y5b_c00154{bottom:984.573333pt;}
.y5c_c00154{bottom:986.880000pt;}
.y4_c00154{bottom:989.186667pt;}
.y3_c00154{bottom:989.946667pt;}
.y5d_c00154{bottom:991.493333pt;}
.y58_c00154{bottom:1005.306667pt;}
.y53_c00154{bottom:1006.853333pt;}
.y57_c00154{bottom:1009.146667pt;}
.y59_c00154{bottom:1010.693333pt;}
.y55_c00154{bottom:1011.453333pt;}
.y54_c00154{bottom:1012.226667pt;}
.y56_c00154{bottom:1012.986667pt;}
.y5a_c00154{bottom:1014.533333pt;}
.y50_c00154{bottom:1026.813333pt;}
.y51_c00154{bottom:1027.586667pt;}
.y4f_c00154{bottom:1029.120000pt;}
.y4b_c00154{bottom:1029.893333pt;}
.y4c_c00154{bottom:1030.653333pt;}
.y4d_c00154{bottom:1031.426667pt;}
.y4a_c00154{bottom:1032.960000pt;}
.y52_c00154{bottom:1033.733333pt;}
.y42_c00154{bottom:1034.493333pt;}
.y43_c00154{bottom:1035.266667pt;}
.y4e_c00154{bottom:1036.026667pt;}
.y46_c00154{bottom:1041.413333pt;}
.y47_c00154{bottom:1042.946667pt;}
.y48_c00154{bottom:1043.706667pt;}
.y49_c00154{bottom:1044.480000pt;}
.y45_c00154{bottom:1045.253333pt;}
.y44_c00154{bottom:1046.786667pt;}
.y3d_c00154{bottom:1049.093333pt;}
.y3c_c00154{bottom:1049.853333pt;}
.y3e_c00154{bottom:1053.693333pt;}
.y40_c00154{bottom:1054.466667pt;}
.y3f_c00154{bottom:1056.773333pt;}
.y41_c00154{bottom:1058.306667pt;}
.y39_c00154{bottom:1070.586667pt;}
.y35_c00154{bottom:1072.133333pt;}
.y36_c00154{bottom:1072.893333pt;}
.y37_c00154{bottom:1073.666667pt;}
.y3a_c00154{bottom:1075.973333pt;}
.y38_c00154{bottom:1079.040000pt;}
.y2_c00154{bottom:1087.493333pt;}
.y3b_c00154{bottom:1088.253333pt;}
.y1_c00154{bottom:1090.560000pt;}
.y33_c00154{bottom:1094.400000pt;}
.y32_c00154{bottom:1095.173333pt;}
.y30_c00154{bottom:1096.706667pt;}
.y2f_c00154{bottom:1097.466667pt;}
.y34_c00154{bottom:1099.773333pt;}
.y31_c00154{bottom:1100.546667pt;}
.y27_c00154{bottom:1115.906667pt;}
.y2e_c00154{bottom:1116.666667pt;}
.y2c_c00154{bottom:1118.973333pt;}
.y2b_c00154{bottom:1119.746667pt;}
.y29_c00154{bottom:1120.506667pt;}
.y25_c00154{bottom:1121.280000pt;}
.y26_c00154{bottom:1122.053333pt;}
.y2a_c00154{bottom:1122.813333pt;}
.y2d_c00154{bottom:1123.586667pt;}
.y28_c00154{bottom:1124.346667pt;}
.y1d_c00154{bottom:1139.706667pt;}
.y20_c00154{bottom:1140.480000pt;}
.y23_c00154{bottom:1141.253333pt;}
.y21_c00154{bottom:1142.786667pt;}
.y1e_c00154{bottom:1144.320000pt;}
.y1f_c00154{bottom:1145.093333pt;}
.y22_c00154{bottom:1145.853333pt;}
.y24_c00154{bottom:1148.160000pt;}
.y1c_c00154{bottom:1164.293333pt;}
.y1a_c00154{bottom:1165.053333pt;}
.y1b_c00154{bottom:1165.826667pt;}
.y19_c00154{bottom:1167.360000pt;}
.y18_c00154{bottom:1168.893333pt;}
.y17_c00154{bottom:1179.653333pt;}
.y14_c00154{bottom:1183.493333pt;}
.y12_c00154{bottom:1184.253333pt;}
.y15_c00154{bottom:1185.026667pt;}
.y13_c00154{bottom:1186.560000pt;}
.y16_c00154{bottom:1189.626667pt;}
.yf_c00154{bottom:1205.760000pt;}
.ye_c00154{bottom:1206.533333pt;}
.y11_c00154{bottom:1211.133333pt;}
.yd_c00154{bottom:1212.666667pt;}
.y10_c00154{bottom:1213.440000pt;}
.yc_c00154{bottom:1216.506667pt;}
.ya_c00154{bottom:1234.173333pt;}
.yb_c00154{bottom:1235.706667pt;}
.y9_c00154{bottom:1236.480000pt;}
.y8_c00154{bottom:1241.093333pt;}
.y6_c00154{bottom:1241.853333pt;}
.y7_c00154{bottom:1242.626667pt;}
.y5_c00154{bottom:1251.840000pt;}
.h5_c00154{height:2.764500pt;}
.h20_c00154{height:4.799479pt;}
.h2_c00154{height:5.519401pt;}
.hb_c00154{height:8.303099pt;}
.h1a_c00154{height:11.038802pt;}
.h4_c00154{height:13.822500pt;}
.h3_c00154{height:16.606198pt;}
.h1f_c00154{height:19.341901pt;}
.h21_c00154{height:22.125599pt;}
.h1c_c00154{height:24.861302pt;}
.h19_c00154{height:27.645000pt;}
.h1d_c00154{height:30.428698pt;}
.h25_c00154{height:33.164401pt;}
.h22_c00154{height:35.948099pt;}
.h12_c00154{height:38.683802pt;}
.ha_c00154{height:41.467500pt;}
.h1e_c00154{height:44.251198pt;}
.h10_c00154{height:46.986901pt;}
.h8_c00154{height:49.770599pt;}
.h11_c00154{height:52.506302pt;}
.h6_c00154{height:55.290000pt;}
.h15_c00154{height:58.073698pt;}
.h14_c00154{height:60.809401pt;}
.h1b_c00154{height:63.593099pt;}
.h17_c00154{height:66.328802pt;}
.he_c00154{height:69.112500pt;}
.h7_c00154{height:71.896198pt;}
.hd_c00154{height:74.631901pt;}
.h16_c00154{height:77.415599pt;}
.hc_c00154{height:80.151302pt;}
.h9_c00154{height:82.935000pt;}
.h13_c00154{height:85.718698pt;}
.h18_c00154{height:88.454401pt;}
.h27_c00154{height:91.238099pt;}
.hf_c00154{height:93.973802pt;}
.h24_c00154{height:96.757500pt;}
.h26_c00154{height:99.541198pt;}
.h28_c00154{height:102.276901pt;}
.h23_c00154{height:143.744401pt;}
.h0_c00154{height:1353.986667pt;}
.h1_c00154{height:1354.000000pt;}
.w0_c00154{width:969.213333pt;}
.w1_c00154{width:969.333333pt;}
.x0_c00154{left:0.000000pt;}
.x3_c00154{left:109.826667pt;}
.x4_c00154{left:118.266667pt;}
.x1_c00154{left:127.493333pt;}
.xc6_c00154{left:130.560000pt;}
.x2_c00154{left:137.466667pt;}
.xde_c00154{left:139.773333pt;}
.xc7_c00154{left:143.613333pt;}
.xc8_c00154{left:153.600000pt;}
.xfd_c00154{left:159.746667pt;}
.xc9_c00154{left:163.586667pt;}
.xd8_c00154{left:168.186667pt;}
.xf3_c00154{left:173.573333pt;}
.x8a_c00154{left:176.640000pt;}
.xd9_c00154{left:178.946667pt;}
.x1f_c00154{left:180.480000pt;}
.x66_c00154{left:185.093333pt;}
.xf8_c00154{left:186.626667pt;}
.x86_c00154{left:190.466667pt;}
.xb5_c00154{left:193.533333pt;}
.xd_c00154{left:195.840000pt;}
.xb6_c00154{left:199.680000pt;}
.x42_c00154{left:201.986667pt;}
.xa_c00154{left:203.520000pt;}
.xc3_c00154{left:205.053333pt;}
.xe_c00154{left:207.360000pt;}
.x51_c00154{left:208.893333pt;}
.x8b_c00154{left:220.413333pt;}
.x5_c00154{left:224.253333pt;}
.x8c_c00154{left:225.786667pt;}
.xa0_c00154{left:228.866667pt;}
.xbf_c00154{left:230.400000pt;}
.x20_c00154{left:235.013333pt;}
.xb7_c00154{left:237.306667pt;}
.xf_c00154{left:241.920000pt;}
.x2f_c00154{left:246.533333pt;}
.x18_c00154{left:249.600000pt;}
.x87_c00154{left:251.133333pt;}
.xdf_c00154{left:254.213333pt;}
.x79_c00154{left:255.746667pt;}
.x43_c00154{left:258.053333pt;}
.x7e_c00154{left:260.346667pt;}
.x49_c00154{left:261.893333pt;}
.x30_c00154{left:264.960000pt;}
.xaf_c00154{left:266.493333pt;}
.xb8_c00154{left:268.026667pt;}
.x8d_c00154{left:270.333333pt;}
.x52_c00154{left:274.946667pt;}
.x67_c00154{left:278.013333pt;}
.xe0_c00154{left:281.093333pt;}
.xb_c00154{left:282.626667pt;}
.x5b_c00154{left:285.693333pt;}
.x72_c00154{left:288.000000pt;}
.x68_c00154{left:291.840000pt;}
.x31_c00154{left:293.373333pt;}
.x8e_c00154{left:295.680000pt;}
.xd5_c00154{left:297.213333pt;}
.x10_c00154{left:300.293333pt;}
.x69_c00154{left:302.586667pt;}
.xf4_c00154{left:304.133333pt;}
.x4a_c00154{left:306.426667pt;}
.xfe_c00154{left:307.973333pt;}
.x32_c00154{left:309.506667pt;}
.xe4_c00154{left:315.653333pt;}
.x21_c00154{left:317.946667pt;}
.xe7_c00154{left:320.253333pt;}
.xa8_c00154{left:323.333333pt;}
.x88_c00154{left:325.626667pt;}
.x19_c00154{left:327.173333pt;}
.x53_c00154{left:328.706667pt;}
.x33_c00154{left:331.773333pt;}
.xab_c00154{left:333.306667pt;}
.x6_c00154{left:334.853333pt;}
.xf5_c00154{left:336.386667pt;}
.x7a_c00154{left:338.693333pt;}
.xa1_c00154{left:340.226667pt;}
.xf9_c00154{left:342.533333pt;}
.x44_c00154{left:344.066667pt;}
.x34_c00154{left:348.666667pt;}
.xea_c00154{left:351.746667pt;}
.xb9_c00154{left:353.280000pt;}
.x8f_c00154{left:355.586667pt;}
.x75_c00154{left:357.893333pt;}
.x90_c00154{left:359.426667pt;}
.xeb_c00154{left:360.960000pt;}
.x5c_c00154{left:364.026667pt;}
.x7f_c00154{left:367.866667pt;}
.x45_c00154{left:370.173333pt;}
.x6a_c00154{left:373.253333pt;}
.xd6_c00154{left:375.546667pt;}
.xc_c00154{left:377.853333pt;}
.x54_c00154{left:380.933333pt;}
.x91_c00154{left:382.466667pt;}
.x25_c00154{left:384.773333pt;}
.xec_c00154{left:387.840000pt;}
.xac_c00154{left:390.906667pt;}
.x22_c00154{left:392.453333pt;}
.x92_c00154{left:394.746667pt;}
.x35_c00154{left:398.586667pt;}
.x6b_c00154{left:400.893333pt;}
.x97_c00154{left:402.426667pt;}
.x4b_c00154{left:404.733333pt;}
.xba_c00154{left:406.266667pt;}
.xf2_c00154{left:407.813333pt;}
.x11_c00154{left:411.653333pt;}
.x7_c00154{left:417.026667pt;}
.x73_c00154{left:420.093333pt;}
.x98_c00154{left:422.400000pt;}
.x55_c00154{left:423.933333pt;}
.x93_c00154{left:427.013333pt;}
.x5d_c00154{left:428.546667pt;}
.x1a_c00154{left:430.080000pt;}
.xf1_c00154{left:431.613333pt;}
.x94_c00154{left:433.920000pt;}
.xce_c00154{left:436.226667pt;}
.xa5_c00154{left:437.760000pt;}
.x99_c00154{left:439.293333pt;}
.xe5_c00154{left:440.826667pt;}
.x6c_c00154{left:442.373333pt;}
.xa2_c00154{left:445.440000pt;}
.x5e_c00154{left:448.506667pt;}
.xca_c00154{left:450.813333pt;}
.x26_c00154{left:452.346667pt;}
.x95_c00154{left:454.653333pt;}
.xf6_c00154{left:459.266667pt;}
.x12_c00154{left:460.800000pt;}
.xfa_c00154{left:462.333333pt;}
.xe1_c00154{left:463.866667pt;}
.xb0_c00154{left:465.413333pt;}
.xa6_c00154{left:467.706667pt;}
.xff_c00154{left:470.013333pt;}
.x6d_c00154{left:472.320000pt;}
.x46_c00154{left:476.160000pt;}
.x1b_c00154{left:477.693333pt;}
.x4c_c00154{left:480.000000pt;}
.xbb_c00154{left:481.533333pt;}
.x13_c00154{left:483.840000pt;}
.x9f_c00154{left:486.146667pt;}
.x9a_c00154{left:488.453333pt;}
.x27_c00154{left:491.520000pt;}
.x9b_c00154{left:496.893333pt;}
.x36_c00154{left:499.200000pt;}
.x89_c00154{left:501.506667pt;}
.x8_c00154{left:503.040000pt;}
.x101_c00154{left:504.573333pt;}
.x80_c00154{left:506.106667pt;}
.x96_c00154{left:509.186667pt;}
.x37_c00154{left:510.720000pt;}
.xee_c00154{left:514.560000pt;}
.x23_c00154{left:516.093333pt;}
.x6e_c00154{left:518.400000pt;}
.xc0_c00154{left:520.706667pt;}
.xbc_c00154{left:522.240000pt;}
.xcb_c00154{left:523.773333pt;}
.x38_c00154{left:526.853333pt;}
.xcf_c00154{left:529.920000pt;}
.x56_c00154{left:532.226667pt;}
.x14_c00154{left:534.533333pt;}
.x5f_c00154{left:536.826667pt;}
.x9_c00154{left:542.213333pt;}
.x1c_c00154{left:543.746667pt;}
.x39_c00154{left:546.053333pt;}
.xe2_c00154{left:547.586667pt;}
.x6f_c00154{left:549.120000pt;}
.x28_c00154{left:551.426667pt;}
.xe8_c00154{left:553.733333pt;}
.xa9_c00154{left:556.026667pt;}
.xf7_c00154{left:560.640000pt;}
.xbd_c00154{left:562.173333pt;}
.x102_c00154{left:564.480000pt;}
.xb1_c00154{left:568.320000pt;}
.xcc_c00154{left:569.853333pt;}
.x3a_c00154{left:572.160000pt;}
.xef_c00154{left:576.773333pt;}
.x76_c00154{left:578.306667pt;}
.xd2_c00154{left:579.840000pt;}
.x57_c00154{left:583.680000pt;}
.x74_c00154{left:586.746667pt;}
.xc1_c00154{left:589.053333pt;}
.xc4_c00154{left:592.133333pt;}
.xe9_c00154{left:593.666667pt;}
.x3b_c00154{left:595.200000pt;}
.x9c_c00154{left:598.266667pt;}
.x58_c00154{left:602.106667pt;}
.x7b_c00154{left:605.186667pt;}
.xcd_c00154{left:606.720000pt;}
.xda_c00154{left:608.253333pt;}
.x81_c00154{left:611.333333pt;}
.x4d_c00154{left:612.866667pt;}
.x1d_c00154{left:614.400000pt;}
.xa3_c00154{left:617.466667pt;}
.x60_c00154{left:622.080000pt;}
.x29_c00154{left:625.146667pt;}
.x61_c00154{left:628.226667pt;}
.x82_c00154{left:629.760000pt;}
.x3c_c00154{left:631.293333pt;}
.x47_c00154{left:632.826667pt;}
.x62_c00154{left:635.133333pt;}
.xd3_c00154{left:637.440000pt;}
.xbe_c00154{left:638.973333pt;}
.x77_c00154{left:640.506667pt;}
.x83_c00154{left:642.813333pt;}
.x103_c00154{left:645.893333pt;}
.x4e_c00154{left:647.426667pt;}
.xdb_c00154{left:648.960000pt;}
.x84_c00154{left:651.266667pt;}
.x63_c00154{left:653.573333pt;}
.x15_c00154{left:655.106667pt;}
.x2a_c00154{left:658.173333pt;}
.x24_c00154{left:659.706667pt;}
.xd0_c00154{left:661.253333pt;}
.x3d_c00154{left:664.320000pt;}
.xc5_c00154{left:668.160000pt;}
.x78_c00154{left:671.226667pt;}
.x59_c00154{left:672.773333pt;}
.x16_c00154{left:675.066667pt;}
.xd1_c00154{left:678.146667pt;}
.x70_c00154{left:679.680000pt;}
.xfb_c00154{left:682.746667pt;}
.x3e_c00154{left:685.053333pt;}
.x64_c00154{left:688.133333pt;}
.xa4_c00154{left:691.200000pt;}
.xe3_c00154{left:695.040000pt;}
.x71_c00154{left:699.653333pt;}
.xaa_c00154{left:701.946667pt;}
.x1e_c00154{left:705.026667pt;}
.x100_c00154{left:706.560000pt;}
.xad_c00154{left:710.400000pt;}
.x2b_c00154{left:713.466667pt;}
.x4f_c00154{left:719.613333pt;}
.x85_c00154{left:721.146667pt;}
.xfc_c00154{left:723.453333pt;}
.x7c_c00154{left:725.760000pt;}
.x3f_c00154{left:729.600000pt;}
.x2c_c00154{left:734.213333pt;}
.xa7_c00154{left:736.506667pt;}
.x65_c00154{left:738.053333pt;}
.xae_c00154{left:739.586667pt;}
.x40_c00154{left:741.120000pt;}
.x17_c00154{left:742.653333pt;}
.xb2_c00154{left:744.186667pt;}
.xed_c00154{left:745.733333pt;}
.xf0_c00154{left:750.333333pt;}
.x2d_c00154{left:752.640000pt;}
.x7d_c00154{left:754.173333pt;}
.xd4_c00154{left:756.480000pt;}
.xdc_c00154{left:758.013333pt;}
.x41_c00154{left:760.320000pt;}
.xe6_c00154{left:765.693333pt;}
.x5a_c00154{left:768.000000pt;}
.x2e_c00154{left:769.533333pt;}
.xdd_c00154{left:772.613333pt;}
.xd7_c00154{left:774.146667pt;}
.xc2_c00154{left:778.746667pt;}
.xb3_c00154{left:783.360000pt;}
.x50_c00154{left:784.893333pt;}
.x48_c00154{left:787.973333pt;}
.xb4_c00154{left:791.813333pt;}
.x108_c00154{left:817.146667pt;}
.x109_c00154{left:825.600000pt;}
.x106_c00154{left:829.440000pt;}
.x10b_c00154{left:834.053333pt;}
.x10a_c00154{left:837.893333pt;}
.x107_c00154{left:840.960000pt;}
.x9d_c00154{left:847.106667pt;}
.x9e_c00154{left:851.706667pt;}
.x105_c00154{left:873.213333pt;}
.x104_c00154{left:949.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00155;src:url('chunks/assets/font_7a303c5b0313480f408b4095.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.109863;font-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_c00155{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00155{transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);}
.m5a_c00155{transform:matrix(0.058450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058450,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00155{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.meb_c00155{transform:matrix(0.064275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064275,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00155{transform:matrix(0.065425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065425,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00155{transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);}
.m14b_c00155{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m3a_c00155{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);}
.m13a_c00155{transform:matrix(0.082750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082750,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00155{transform:matrix(0.084625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084625,0.000000,0.000000,0.250000,0,0);}
.m17c_c00155{transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00155{transform:matrix(0.088325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088325,0.000000,0.000000,0.250000,0,0);}
.m143_c00155{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m17f_c00155{transform:matrix(0.090400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090400,0.000000,0.000000,0.250000,0,0);}
.m183_c00155{transform:matrix(0.091350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091350,0.000000,0.000000,0.250000,0,0);}
.m17a_c00155{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m138_c00155{transform:matrix(0.094350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094350,0.000000,0.000000,0.250000,0,0);}
.m80_c00155{transform:matrix(0.099225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099225,0.000000,0.000000,0.250000,0,0);}
.m148_c00155{transform:matrix(0.100025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100025,0.000000,0.000000,0.250000,0,0);}
.m86_c00155{transform:matrix(0.102300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102300,0.000000,0.000000,0.250000,0,0);}
.m132_c00155{transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);}
.m182_c00155{transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);}
.md0_c00155{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m17d_c00155{transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);}
.m18_c00155{transform:matrix(0.110625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110625,0.000000,0.000000,0.250000,0,0);}
.m163_c00155{transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);}
.m110_c00155{transform:matrix(0.111925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111925,0.000000,0.000000,0.250000,0,0);}
.m13b_c00155{transform:matrix(0.114900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114900,0.000000,0.000000,0.250000,0,0);}
.md7_c00155{transform:matrix(0.116050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116050,0.000000,0.000000,0.250000,0,0);}
.m168_c00155{transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);}
.m123_c00155{transform:matrix(0.119625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119625,0.000000,0.000000,0.250000,0,0);}
.m11_c00155{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);}
.m13d_c00155{transform:matrix(0.123850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123850,0.000000,0.000000,0.250000,0,0);}
.m174_c00155{transform:matrix(0.123975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123975,0.000000,0.000000,0.250000,0,0);}
.m15_c00155{transform:matrix(0.124225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124225,0.000000,0.000000,0.250000,0,0);}
.m19b_c00155{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);}
.m11b_c00155{transform:matrix(0.126875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126875,0.000000,0.000000,0.250000,0,0);}
.mf2_c00155{transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);}
.m18f_c00155{transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);}
.m159_c00155{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.ma_c00155{transform:matrix(0.130850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130850,0.000000,0.000000,0.250000,0,0);}
.m161_c00155{transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);}
.m84_c00155{transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);}
.m172_c00155{transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);}
.mcf_c00155{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.m24_c00155{transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);}
.m98_c00155{transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);}
.m121_c00155{transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);}
.m16d_c00155{transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);}
.m171_c00155{transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);}
.m66_c00155{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m181_c00155{transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);}
.m166_c00155{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);}
.mff_c00155{transform:matrix(0.137425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137425,0.000000,0.000000,0.250000,0,0);}
.mc4_c00155{transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00155{transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);}
.m175_c00155{transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);}
.m7e_c00155{transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);}
.m165_c00155{transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);}
.m140_c00155{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.mce_c00155{transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);}
.m43_c00155{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);}
.m83_c00155{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m30_c00155{transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);}
.mc6_c00155{transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);}
.m12d_c00155{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.m14_c00155{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m139_c00155{transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);}
.m179_c00155{transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);}
.m169_c00155{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);}
.m15b_c00155{transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);}
.m14e_c00155{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.mb2_c00155{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m16f_c00155{transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);}
.m67_c00155{transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);}
.md5_c00155{transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);}
.m17b_c00155{transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);}
.m9_c00155{transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);}
.m18b_c00155{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);}
.m170_c00155{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);}
.m10_c00155{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m173_c00155{transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);}
.m19f_c00155{transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);}
.m95_c00155{transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);}
.m7_c00155{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);}
.m46_c00155{transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);}
.m104_c00155{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);}
.m152_c00155{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00155{transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);}
.m112_c00155{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.m111_c00155{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);}
.m146_c00155{transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);}
.m64_c00155{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m62_c00155{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.m5e_c00155{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);}
.m70_c00155{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);}
.mfe_c00155{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);}
.m188_c00155{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.m2c_c00155{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);}
.m16b_c00155{transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);}
.m109_c00155{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m100_c00155{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m107_c00155{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.m94_c00155{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.m61_c00155{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);}
.mf5_c00155{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m162_c00155{transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);}
.m149_c00155{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m15c_c00155{transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);}
.m101_c00155{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.mb6_c00155{transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);}
.m177_c00155{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);}
.mda_c00155{transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);}
.m77_c00155{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m4e_c00155{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m9a_c00155{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.m186_c00155{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m5_c00155{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.m85_c00155{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.m4a_c00155{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.me5_c00155{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.m54_c00155{transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);}
.m178_c00155{transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);}
.m97_c00155{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.m187_c00155{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);}
.m119_c00155{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.mf8_c00155{transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);}
.m40_c00155{transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);}
.m11e_c00155{transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);}
.m150_c00155{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);}
.mea_c00155{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.mc_c00155{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);}
.m127_c00155{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m6a_c00155{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m125_c00155{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m11a_c00155{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.me3_c00155{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.m126_c00155{transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);}
.mdd_c00155{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.m195_c00155{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);}
.m31_c00155{transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);}
.m39_c00155{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m19a_c00155{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);}
.m19c_c00155{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00155{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);}
.ma0_c00155{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.ma7_c00155{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);}
.mb1_c00155{transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);}
.m136_c00155{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);}
.m13_c00155{transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);}
.m0_c00155{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.m9e_c00155{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m19d_c00155{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m10a_c00155{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m2d_c00155{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);}
.mc1_c00155{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);}
.m189_c00155{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m10c_c00155{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m153_c00155{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.m18a_c00155{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m167_c00155{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);}
.m4d_c00155{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);}
.m105_c00155{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);}
.m193_c00155{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m37_c00155{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);}
.md4_c00155{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00155{transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);}
.me7_c00155{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);}
.m18c_c00155{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);}
.m87_c00155{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);}
.mba_c00155{transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);}
.mcc_c00155{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m192_c00155{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m180_c00155{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.m157_c00155{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m15d_c00155{transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);}
.m60_c00155{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);}
.mae_c00155{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m102_c00155{transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);}
.m11d_c00155{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);}
.mf4_c00155{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);}
.m17e_c00155{transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);}
.m130_c00155{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.mec_c00155{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);}
.m131_c00155{transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);}
.m44_c00155{transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);}
.m56_c00155{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.m113_c00155{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m106_c00155{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);}
.m155_c00155{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.mc8_c00155{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m103_c00155{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.me4_c00155{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.m12f_c00155{transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);}
.m92_c00155{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);}
.m75_c00155{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);}
.m11f_c00155{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m133_c00155{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);}
.me_c00155{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);}
.m1ad_c00155{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.me9_c00155{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);}
.m4f_c00155{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);}
.me0_c00155{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);}
.mdf_c00155{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);}
.m41_c00155{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);}
.m142_c00155{transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);}
.m6e_c00155{transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);}
.ma9_c00155{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.md8_c00155{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.ma8_c00155{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);}
.m194_c00155{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m3f_c00155{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.m14c_c00155{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m184_c00155{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);}
.m74_c00155{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);}
.mf7_c00155{transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);}
.mcd_c00155{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);}
.m12e_c00155{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);}
.m7f_c00155{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m6b_c00155{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.m65_c00155{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.md1_c00155{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_c00155{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m10b_c00155{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m16c_c00155{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m8f_c00155{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);}
.md3_c00155{transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);}
.m3e_c00155{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);}
.m15e_c00155{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.mb9_c00155{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);}
.m2e_c00155{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m137_c00155{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);}
.mbe_c00155{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.mc2_c00155{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);}
.mad_c00155{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);}
.mcb_c00155{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);}
.m58_c00155{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);}
.mee_c00155{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);}
.mf0_c00155{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);}
.m5d_c00155{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);}
.m96_c00155{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);}
.m145_c00155{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);}
.m19e_c00155{transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);}
.m8a_c00155{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m10d_c00155{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);}
.m16a_c00155{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.m108_c00155{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);}
.mb5_c00155{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.md9_c00155{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);}
.m45_c00155{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);}
.me8_c00155{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);}
.mb7_c00155{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m14f_c00155{transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);}
.m190_c00155{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m2b_c00155{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.m114_c00155{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);}
.m8c_c00155{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);}
.m1a1_c00155{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);}
.m82_c00155{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m6f_c00155{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);}
.m1a9_c00155{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00155{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);}
.m117_c00155{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);}
.mbc_c00155{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);}
.m12a_c00155{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);}
.m5b_c00155{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);}
.m197_c00155{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);}
.m191_c00155{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);}
.m35_c00155{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);}
.mef_c00155{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.me2_c00155{transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);}
.m129_c00155{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);}
.m15a_c00155{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m158_c00155{transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);}
.m15f_c00155{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.me1_c00155{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.mf1_c00155{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.mc9_c00155{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);}
.m10f_c00155{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);}
.m1a2_c00155{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);}
.mfd_c00155{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);}
.mc3_c00155{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);}
.m47_c00155{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);}
.mbd_c00155{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);}
.m13e_c00155{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m2f_c00155{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);}
.md_c00155{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);}
.md2_c00155{transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);}
.m9c_c00155{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);}
.m147_c00155{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);}
.m199_c00155{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.mbb_c00155{transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);}
.mf6_c00155{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);}
.mb0_c00155{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m128_c00155{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);}
.m12c_c00155{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);}
.m71_c00155{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);}
.m160_c00155{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);}
.m10e_c00155{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);}
.m134_c00155{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m8e_c00155{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m49_c00155{transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);}
.m90_c00155{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);}
.m154_c00155{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.mf9_c00155{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m89_c00155{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);}
.m13f_c00155{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);}
.m196_c00155{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);}
.mbf_c00155{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);}
.m6c_c00155{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);}
.mca_c00155{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);}
.mfa_c00155{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);}
.maf_c00155{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);}
.m8b_c00155{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);}
.m124_c00155{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m48_c00155{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);}
.m9d_c00155{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);}
.mf_c00155{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);}
.mab_c00155{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m120_c00155{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);}
.ma6_c00155{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);}
.mc5_c00155{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);}
.m32_c00155{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);}
.m53_c00155{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c00155{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00155{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);}
.ma5_c00155{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c00155{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);}
.m4c_c00155{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);}
.m2_c00155{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m42_c00155{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);}
.m17_c00155{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m73_c00155{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mac_c00155{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);}
.m68_c00155{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m33_c00155{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);}
.m1c_c00155{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);}
.m38_c00155{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00155{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_c00155{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00155{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m88_c00155{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);}
.mfc_c00155{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c00155{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00155{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m81_c00155{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m22_c00155{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00155{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00155{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);}
.med_c00155{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m122_c00155{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00155{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m135_c00155{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);}
.mb8_c00155{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);}
.m5f_c00155{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00155{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me6_c00155{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);}
.m3_c00155{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m34_c00155{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00155{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);}
.m76_c00155{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.md6_c00155{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m28_c00155{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00155{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);}
.m144_c00155{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m14d_c00155{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m50_c00155{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m25_c00155{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00155{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);}
.mdc_c00155{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m63_c00155{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);}
.maa_c00155{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00155{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m93_c00155{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00155{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m12_c00155{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m141_c00155{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m27_c00155{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00155{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00155{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00155{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00155{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m91_c00155{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m26_c00155{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);}
.m3b_c00155{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m16e_c00155{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);}
.mc0_c00155{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m151_c00155{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00155{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00155{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m69_c00155{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m79_c00155{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m19_c00155{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00155{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00155{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m156_c00155{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m23_c00155{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m52_c00155{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00155{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m18d_c00155{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);}
.m16_c00155{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m185_c00155{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m29_c00155{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m164_c00155{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00155{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.mde_c00155{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);}
.m1af_c00155{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00155{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m21_c00155{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m4_c00155{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m176_c00155{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m1_c00155{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m51_c00155{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m99_c00155{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m55_c00155{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.m198_c00155{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m14a_c00155{transform:matrix(1.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00155{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m118_c00155{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00155{transform:matrix(1.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c00155{transform:matrix(1.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.390000,0.000000,0.000000,0.250000,0,0);}
.m18e_c00155{transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);}
.m78_c00155{transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00155{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00155{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00155{transform:matrix(1.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.650000,0.000000,0.000000,0.250000,0,0);}
.m57_c00155{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00155{transform:matrix(2.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.162500,0.000000,0.000000,0.250000,0,0);}
.m116_c00155{transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00155{transform:matrix(2.815000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.815000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.815000,0.000000,0.000000,0.250000,0,0);}
.m36_c00155{transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);}
.m115_c00155{transform:matrix(2.972500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.972500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.972500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00155{transform:matrix(3.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.992500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00155{transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);}
.v1_c00155{vertical-align:-20.700000px;}
.v2_c00155{vertical-align:-10.380000px;}
.v0_c00155{vertical-align:0.000000px;}
.v3_c00155{vertical-align:3.480000px;}
.ls1_c00155{letter-spacing:0.000000px;}
.ls0_c00155{letter-spacing:98.700000px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00155{word-spacing:-24.447600px;}
.ws3_c00155{word-spacing:-22.142640px;}
.ws1_c00155{word-spacing:-20.185920px;}
.ws4_c00155{word-spacing:0.000000px;}
.ws0_c00155{word-spacing:35.799552px;}
.fc0_c00155{color:transparent;}
.fsf_c00155{font-size:3.456000px;}
.fsb_c00155{font-size:6.000000px;}
.fs11_c00155{font-size:6.900000px;}
.fse_c00155{font-size:10.380000px;}
.fs9_c00155{font-size:13.800000px;}
.fs4_c00155{font-size:17.280000px;}
.fs10_c00155{font-size:20.760000px;}
.fs13_c00155{font-size:24.180000px;}
.fs20_c00155{font-size:27.660000px;}
.fs29_c00155{font-size:31.080000px;}
.fsc_c00155{font-size:34.560000px;}
.fs12_c00155{font-size:38.040000px;}
.fs27_c00155{font-size:41.460000px;}
.fsa_c00155{font-size:44.940000px;}
.fs14_c00155{font-size:48.360000px;}
.fs8_c00155{font-size:51.840000px;}
.fs1d_c00155{font-size:55.320000px;}
.fs1c_c00155{font-size:58.740000px;}
.fs1_c00155{font-size:62.220000px;}
.fs2_c00155{font-size:65.640000px;}
.fs3_c00155{font-size:69.120000px;}
.fs1a_c00155{font-size:72.600000px;}
.fs5_c00155{font-size:76.020000px;}
.fs15_c00155{font-size:79.500000px;}
.fs18_c00155{font-size:82.920000px;}
.fsd_c00155{font-size:86.400000px;}
.fs1b_c00155{font-size:89.880000px;}
.fs1e_c00155{font-size:93.300000px;}
.fs7_c00155{font-size:96.780000px;}
.fs17_c00155{font-size:100.200000px;}
.fs1f_c00155{font-size:103.680000px;}
.fs28_c00155{font-size:107.160000px;}
.fs16_c00155{font-size:110.580000px;}
.fs21_c00155{font-size:114.060000px;}
.fs2a_c00155{font-size:117.480000px;}
.fs22_c00155{font-size:120.960000px;}
.fs25_c00155{font-size:124.440000px;}
.fs6_c00155{font-size:131.340000px;}
.fs19_c00155{font-size:134.760000px;}
.fs0_c00155{font-size:141.720000px;}
.fs24_c00155{font-size:145.140000px;}
.fs23_c00155{font-size:148.620000px;}
.fs26_c00155{font-size:152.040000px;}
.fs2c_c00155{font-size:172.800000px;}
.fs2b_c00155{font-size:311.040000px;}
.y0_c00155{bottom:0.000000px;}
.y1d2_c00155{bottom:213.405000px;}
.y1d0_c00155{bottom:216.000000px;}
.y1d1_c00155{bottom:217.725000px;}
.y1ce_c00155{bottom:218.595000px;}
.y1cb_c00155{bottom:219.450000px;}
.y1c8_c00155{bottom:220.320000px;}
.y1c7_c00155{bottom:221.190000px;}
.y1cd_c00155{bottom:222.045000px;}
.y1ca_c00155{bottom:224.640000px;}
.y1c6_c00155{bottom:226.365000px;}
.y1c5_c00155{bottom:228.090000px;}
.y1c9_c00155{bottom:228.960000px;}
.y1cc_c00155{bottom:230.685000px;}
.y1cf_c00155{bottom:237.600000px;}
.y1c3_c00155{bottom:244.515000px;}
.y1c4_c00155{bottom:246.240000px;}
.y1bd_c00155{bottom:247.965000px;}
.y1e8_c00155{bottom:248.835000px;}
.y1c1_c00155{bottom:249.690000px;}
.y1be_c00155{bottom:250.560000px;}
.y1bc_c00155{bottom:251.430000px;}
.y1bb_c00155{bottom:253.155000px;}
.y1bf_c00155{bottom:254.010000px;}
.y1c2_c00155{bottom:254.880000px;}
.y1c0_c00155{bottom:260.070000px;}
.y1b6_c00155{bottom:270.435000px;}
.y1b8_c00155{bottom:271.290000px;}
.y1b7_c00155{bottom:272.160000px;}
.y1b3_c00155{bottom:273.030000px;}
.y1b5_c00155{bottom:273.885000px;}
.y1b2_c00155{bottom:275.610000px;}
.y1b1_c00155{bottom:279.075000px;}
.y1b4_c00155{bottom:279.930000px;}
.y1ba_c00155{bottom:280.800000px;}
.y1b9_c00155{bottom:285.990000px;}
.y1e5_c00155{bottom:286.845000px;}
.y1e6_c00155{bottom:287.715000px;}
.y1e7_c00155{bottom:288.570000px;}
.y1ad_c00155{bottom:290.310000px;}
.y1ae_c00155{bottom:291.165000px;}
.y1aa_c00155{bottom:292.890000px;}
.y1ac_c00155{bottom:293.760000px;}
.y1a7_c00155{bottom:294.630000px;}
.y1a8_c00155{bottom:295.485000px;}
.y1af_c00155{bottom:297.210000px;}
.y1a9_c00155{bottom:298.080000px;}
.y1b0_c00155{bottom:299.805000px;}
.y1ab_c00155{bottom:302.400000px;}
.y1a5_c00155{bottom:304.125000px;}
.y1a6_c00155{bottom:305.850000px;}
.y1a1_c00155{bottom:317.085000px;}
.y1a0_c00155{bottom:319.680000px;}
.y1a3_c00155{bottom:321.405000px;}
.y19d_c00155{bottom:323.130000px;}
.y19f_c00155{bottom:324.000000px;}
.y19b_c00155{bottom:324.870000px;}
.y1a4_c00155{bottom:326.595000px;}
.y1e4_c00155{bottom:327.450000px;}
.y19a_c00155{bottom:328.320000px;}
.y19e_c00155{bottom:329.190000px;}
.y1a2_c00155{bottom:330.045000px;}
.y19c_c00155{bottom:332.640000px;}
.y197_c00155{bottom:342.150000px;}
.y195_c00155{bottom:344.730000px;}
.y194_c00155{bottom:345.600000px;}
.y193_c00155{bottom:347.325000px;}
.y192_c00155{bottom:349.050000px;}
.y196_c00155{bottom:352.515000px;}
.y199_c00155{bottom:355.965000px;}
.y198_c00155{bottom:361.155000px;}
.y190_c00155{bottom:366.330000px;}
.y1e3_c00155{bottom:368.070000px;}
.y191_c00155{bottom:369.795000px;}
.y18f_c00155{bottom:370.650000px;}
.y18d_c00155{bottom:373.245000px;}
.y18c_c00155{bottom:374.115000px;}
.y18a_c00155{bottom:374.970000px;}
.y18b_c00155{bottom:375.840000px;}
.y189_c00155{bottom:376.710000px;}
.y18e_c00155{bottom:377.565000px;}
.y188_c00155{bottom:378.435000px;}
.y187_c00155{bottom:390.525000px;}
.y182_c00155{bottom:392.250000px;}
.y181_c00155{bottom:393.990000px;}
.y180_c00155{bottom:394.845000px;}
.y17f_c00155{bottom:395.715000px;}
.y179_c00155{bottom:398.310000px;}
.y17a_c00155{bottom:399.165000px;}
.y17b_c00155{bottom:400.035000px;}
.y183_c00155{bottom:400.890000px;}
.y17c_c00155{bottom:401.760000px;}
.y17e_c00155{bottom:403.485000px;}
.y17d_c00155{bottom:404.355000px;}
.y185_c00155{bottom:412.125000px;}
.y184_c00155{bottom:413.850000px;}
.y186_c00155{bottom:416.445000px;}
.y177_c00155{bottom:419.910000px;}
.y171_c00155{bottom:420.765000px;}
.y178_c00155{bottom:421.635000px;}
.y175_c00155{bottom:423.360000px;}
.y170_c00155{bottom:424.230000px;}
.y173_c00155{bottom:425.085000px;}
.y16e_c00155{bottom:425.955000px;}
.y172_c00155{bottom:426.810000px;}
.y16b_c00155{bottom:427.680000px;}
.y174_c00155{bottom:428.550000px;}
.y16f_c00155{bottom:429.405000px;}
.y176_c00155{bottom:430.275000px;}
.y16d_c00155{bottom:431.130000px;}
.y16c_c00155{bottom:432.000000px;}
.y165_c00155{bottom:443.235000px;}
.y168_c00155{bottom:444.090000px;}
.y16a_c00155{bottom:445.830000px;}
.y164_c00155{bottom:446.685000px;}
.y166_c00155{bottom:447.555000px;}
.y163_c00155{bottom:449.280000px;}
.y167_c00155{bottom:451.875000px;}
.y162_c00155{bottom:456.195000px;}
.y169_c00155{bottom:458.790000px;}
.y161_c00155{bottom:465.690000px;}
.y160_c00155{bottom:468.285000px;}
.y15e_c00155{bottom:469.155000px;}
.y15d_c00155{bottom:470.010000px;}
.y15c_c00155{bottom:470.880000px;}
.y15b_c00155{bottom:471.750000px;}
.y158_c00155{bottom:473.475000px;}
.y15a_c00155{bottom:477.795000px;}
.y157_c00155{bottom:478.650000px;}
.y159_c00155{bottom:480.390000px;}
.y156_c00155{bottom:481.245000px;}
.y15f_c00155{bottom:489.885000px;}
.y155_c00155{bottom:493.350000px;}
.y154_c00155{bottom:494.205000px;}
.y151_c00155{bottom:495.075000px;}
.y14e_c00155{bottom:499.395000px;}
.y14c_c00155{bottom:500.250000px;}
.y153_c00155{bottom:501.120000px;}
.y14d_c00155{bottom:501.990000px;}
.y152_c00155{bottom:502.845000px;}
.y150_c00155{bottom:505.440000px;}
.y14f_c00155{bottom:506.310000px;}
.y14a_c00155{bottom:517.530000px;}
.y149_c00155{bottom:518.400000px;}
.y146_c00155{bottom:519.270000px;}
.y148_c00155{bottom:520.995000px;}
.y144_c00155{bottom:521.850000px;}
.y145_c00155{bottom:522.720000px;}
.y140_c00155{bottom:523.590000px;}
.y143_c00155{bottom:524.445000px;}
.y14b_c00155{bottom:525.315000px;}
.y147_c00155{bottom:526.170000px;}
.y142_c00155{bottom:528.765000px;}
.y141_c00155{bottom:531.360000px;}
.y13c_c00155{bottom:546.045000px;}
.y13d_c00155{bottom:546.915000px;}
.y138_c00155{bottom:548.640000px;}
.y13f_c00155{bottom:551.235000px;}
.y13a_c00155{bottom:552.090000px;}
.y13e_c00155{bottom:552.960000px;}
.y139_c00155{bottom:553.830000px;}
.y13b_c00155{bottom:554.685000px;}
.y136_c00155{bottom:555.555000px;}
.y137_c00155{bottom:556.410000px;}
.y131_c00155{bottom:571.110000px;}
.y132_c00155{bottom:571.965000px;}
.y130_c00155{bottom:572.835000px;}
.y12f_c00155{bottom:573.690000px;}
.y12e_c00155{bottom:574.560000px;}
.y134_c00155{bottom:575.430000px;}
.y135_c00155{bottom:577.155000px;}
.y12c_c00155{bottom:578.880000px;}
.y133_c00155{bottom:579.750000px;}
.y12d_c00155{bottom:581.475000px;}
.y127_c00155{bottom:598.755000px;}
.y125_c00155{bottom:599.610000px;}
.y123_c00155{bottom:603.075000px;}
.y124_c00155{bottom:603.930000px;}
.y122_c00155{bottom:604.800000px;}
.y126_c00155{bottom:607.395000px;}
.y128_c00155{bottom:608.250000px;}
.y12a_c00155{bottom:609.990000px;}
.y12b_c00155{bottom:611.715000px;}
.y129_c00155{bottom:612.570000px;}
.y121_c00155{bottom:618.630000px;}
.y120_c00155{bottom:622.080000px;}
.y11c_c00155{bottom:623.805000px;}
.y11d_c00155{bottom:624.675000px;}
.y11e_c00155{bottom:627.270000px;}
.y1e2_c00155{bottom:628.995000px;}
.y11f_c00155{bottom:629.850000px;}
.y119_c00155{bottom:646.275000px;}
.y118_c00155{bottom:647.130000px;}
.y11a_c00155{bottom:648.870000px;}
.y116_c00155{bottom:649.725000px;}
.y11b_c00155{bottom:652.320000px;}
.y117_c00155{bottom:654.915000px;}
.y115_c00155{bottom:669.600000px;}
.y112_c00155{bottom:671.325000px;}
.y110_c00155{bottom:674.790000px;}
.y10f_c00155{bottom:675.645000px;}
.y111_c00155{bottom:676.515000px;}
.y114_c00155{bottom:678.240000px;}
.y113_c00155{bottom:679.965000px;}
.y10e_c00155{bottom:681.690000px;}
.y10d_c00155{bottom:682.560000px;}
.y10b_c00155{bottom:694.650000px;}
.y10a_c00155{bottom:695.520000px;}
.y107_c00155{bottom:697.245000px;}
.y106_c00155{bottom:698.115000px;}
.y104_c00155{bottom:698.970000px;}
.y105_c00155{bottom:699.840000px;}
.y10c_c00155{bottom:701.565000px;}
.y108_c00155{bottom:703.290000px;}
.y109_c00155{bottom:704.160000px;}
.y102_c00155{bottom:705.885000px;}
.y103_c00155{bottom:707.610000px;}
.y101_c00155{bottom:722.310000px;}
.yff_c00155{bottom:724.890000px;}
.yfc_c00155{bottom:725.760000px;}
.yf9_c00155{bottom:729.210000px;}
.yfa_c00155{bottom:730.950000px;}
.yfb_c00155{bottom:732.675000px;}
.y100_c00155{bottom:743.040000px;}
.yfe_c00155{bottom:743.910000px;}
.yfd_c00155{bottom:744.765000px;}
.yf7_c00155{bottom:746.490000px;}
.yf5_c00155{bottom:748.230000px;}
.yf8_c00155{bottom:749.085000px;}
.yf3_c00155{bottom:753.405000px;}
.yf6_c00155{bottom:755.130000px;}
.yf4_c00155{bottom:756.000000px;}
.yf2_c00155{bottom:768.090000px;}
.yf0_c00155{bottom:770.685000px;}
.yed_c00155{bottom:771.555000px;}
.yeb_c00155{bottom:772.410000px;}
.yf1_c00155{bottom:776.730000px;}
.yef_c00155{bottom:777.600000px;}
.yee_c00155{bottom:778.470000px;}
.yec_c00155{bottom:780.195000px;}
.yea_c00155{bottom:781.920000px;}
.ye7_c00155{bottom:793.155000px;}
.ye6_c00155{bottom:794.880000px;}
.ye8_c00155{bottom:796.605000px;}
.ye4_c00155{bottom:800.070000px;}
.ye5_c00155{bottom:802.650000px;}
.ye3_c00155{bottom:805.245000px;}
.ye9_c00155{bottom:809.565000px;}
.ydf_c00155{bottom:818.205000px;}
.ydc_c00155{bottom:819.930000px;}
.ye1_c00155{bottom:821.670000px;}
.ydb_c00155{bottom:822.525000px;}
.ye2_c00155{bottom:823.395000px;}
.yd9_c00155{bottom:824.250000px;}
.ye0_c00155{bottom:825.120000px;}
.yde_c00155{bottom:826.845000px;}
.ydd_c00155{bottom:827.715000px;}
.yda_c00155{bottom:829.440000px;}
.yd5_c00155{bottom:842.400000px;}
.yd6_c00155{bottom:844.995000px;}
.yd3_c00155{bottom:845.850000px;}
.yd7_c00155{bottom:846.720000px;}
.yd1_c00155{bottom:847.590000px;}
.yd4_c00155{bottom:851.910000px;}
.yd0_c00155{bottom:853.635000px;}
.yd2_c00155{bottom:854.490000px;}
.yd8_c00155{bottom:855.360000px;}
.yce_c00155{bottom:866.595000px;}
.ycc_c00155{bottom:868.320000px;}
.yc9_c00155{bottom:869.190000px;}
.ycb_c00155{bottom:870.045000px;}
.yc8_c00155{bottom:870.915000px;}
.yc6_c00155{bottom:872.640000px;}
.yc7_c00155{bottom:874.365000px;}
.ycf_c00155{bottom:875.235000px;}
.yca_c00155{bottom:876.960000px;}
.yc4_c00155{bottom:877.830000px;}
.yc5_c00155{bottom:879.555000px;}
.ycd_c00155{bottom:885.600000px;}
.yc1_c00155{bottom:896.835000px;}
.ybc_c00155{bottom:897.690000px;}
.yc0_c00155{bottom:898.560000px;}
.ybf_c00155{bottom:899.430000px;}
.ybe_c00155{bottom:902.880000px;}
.ybd_c00155{bottom:903.750000px;}
.y1e1_c00155{bottom:906.330000px;}
.yc3_c00155{bottom:915.840000px;}
.yc2_c00155{bottom:916.710000px;}
.ybb_c00155{bottom:921.030000px;}
.yb9_c00155{bottom:923.610000px;}
.yba_c00155{bottom:924.480000px;}
.yb8_c00155{bottom:926.205000px;}
.yb7_c00155{bottom:927.075000px;}
.yb2_c00155{bottom:946.950000px;}
.yb5_c00155{bottom:947.805000px;}
.yb3_c00155{bottom:950.400000px;}
.yb4_c00155{bottom:951.270000px;}
.yb0_c00155{bottom:952.125000px;}
.yb6_c00155{bottom:953.850000px;}
.yb1_c00155{bottom:955.590000px;}
.yaf_c00155{bottom:966.810000px;}
.yab_c00155{bottom:971.130000px;}
.yac_c00155{bottom:972.000000px;}
.yae_c00155{bottom:972.870000px;}
.ya8_c00155{bottom:973.725000px;}
.yaa_c00155{bottom:977.190000px;}
.yad_c00155{bottom:978.915000px;}
.ya9_c00155{bottom:979.770000px;}
.y1e0_c00155{bottom:982.365000px;}
.ya4_c00155{bottom:996.195000px;}
.ya3_c00155{bottom:997.920000px;}
.ya0_c00155{bottom:998.790000px;}
.ya6_c00155{bottom:999.645000px;}
.ya1_c00155{bottom:1001.370000px;}
.ya7_c00155{bottom:1002.240000px;}
.ya5_c00155{bottom:1003.965000px;}
.ya2_c00155{bottom:1004.835000px;}
.y9d_c00155{bottom:1018.650000px;}
.y99_c00155{bottom:1022.115000px;}
.y9c_c00155{bottom:1024.710000px;}
.y9a_c00155{bottom:1028.160000px;}
.y98_c00155{bottom:1029.030000px;}
.y97_c00155{bottom:1029.885000px;}
.y96_c00155{bottom:1030.755000px;}
.y9e_c00155{bottom:1035.930000px;}
.y9f_c00155{bottom:1037.670000px;}
.y9b_c00155{bottom:1040.250000px;}
.y94_c00155{bottom:1042.845000px;}
.y92_c00155{bottom:1044.570000px;}
.y90_c00155{bottom:1047.165000px;}
.y95_c00155{bottom:1048.890000px;}
.y93_c00155{bottom:1050.630000px;}
.y91_c00155{bottom:1051.485000px;}
.y8e_c00155{bottom:1053.210000px;}
.y8d_c00155{bottom:1054.950000px;}
.y8f_c00155{bottom:1055.805000px;}
.y8c_c00155{bottom:1067.040000px;}
.y8a_c00155{bottom:1067.910000px;}
.y8b_c00155{bottom:1068.765000px;}
.y89_c00155{bottom:1069.635000px;}
.y88_c00155{bottom:1070.490000px;}
.y85_c00155{bottom:1073.085000px;}
.y87_c00155{bottom:1076.550000px;}
.y86_c00155{bottom:1079.130000px;}
.y84_c00155{bottom:1080.870000px;}
.y83_c00155{bottom:1094.685000px;}
.y81_c00155{bottom:1096.410000px;}
.y7d_c00155{bottom:1097.280000px;}
.y7f_c00155{bottom:1099.005000px;}
.y7e_c00155{bottom:1099.875000px;}
.y7c_c00155{bottom:1100.730000px;}
.y82_c00155{bottom:1101.600000px;}
.y80_c00155{bottom:1103.325000px;}
.y7a_c00155{bottom:1105.050000px;}
.y7b_c00155{bottom:1105.920000px;}
.y79_c00155{bottom:1113.690000px;}
.y76_c00155{bottom:1119.750000px;}
.y74_c00155{bottom:1120.605000px;}
.y70_c00155{bottom:1121.475000px;}
.y6f_c00155{bottom:1123.200000px;}
.y78_c00155{bottom:1124.070000px;}
.y6d_c00155{bottom:1124.925000px;}
.y71_c00155{bottom:1125.795000px;}
.y77_c00155{bottom:1126.650000px;}
.y75_c00155{bottom:1127.520000px;}
.y73_c00155{bottom:1128.390000px;}
.y72_c00155{bottom:1129.245000px;}
.y6e_c00155{bottom:1130.970000px;}
.y62_c00155{bottom:1156.035000px;}
.y6a_c00155{bottom:1156.890000px;}
.y64_c00155{bottom:1158.630000px;}
.y63_c00155{bottom:1159.485000px;}
.y66_c00155{bottom:1160.355000px;}
.y65_c00155{bottom:1161.210000px;}
.y67_c00155{bottom:1162.080000px;}
.y6b_c00155{bottom:1163.805000px;}
.y68_c00155{bottom:1164.675000px;}
.y6c_c00155{bottom:1165.530000px;}
.y69_c00155{bottom:1166.400000px;}
.y61_c00155{bottom:1169.850000px;}
.y60_c00155{bottom:1170.720000px;}
.y5e_c00155{bottom:1171.590000px;}
.y5c_c00155{bottom:1173.315000px;}
.y5b_c00155{bottom:1174.170000px;}
.y5f_c00155{bottom:1176.765000px;}
.y5d_c00155{bottom:1180.230000px;}
.y55_c00155{bottom:1195.770000px;}
.y59_c00155{bottom:1196.640000px;}
.y52_c00155{bottom:1197.510000px;}
.y56_c00155{bottom:1198.365000px;}
.y57_c00155{bottom:1199.235000px;}
.y54_c00155{bottom:1200.090000px;}
.y58_c00155{bottom:1202.685000px;}
.y53_c00155{bottom:1203.555000px;}
.y5a_c00155{bottom:1204.410000px;}
.y4f_c00155{bottom:1205.280000px;}
.y50_c00155{bottom:1206.150000px;}
.y51_c00155{bottom:1207.005000px;}
.y1dd_c00155{bottom:1215.645000px;}
.y1de_c00155{bottom:1217.370000px;}
.y4e_c00155{bottom:1218.240000px;}
.y4d_c00155{bottom:1222.560000px;}
.y4b_c00155{bottom:1224.285000px;}
.y48_c00155{bottom:1226.010000px;}
.y4c_c00155{bottom:1227.750000px;}
.y1dc_c00155{bottom:1228.605000px;}
.y46_c00155{bottom:1230.330000px;}
.y4a_c00155{bottom:1231.200000px;}
.y1db_c00155{bottom:1236.390000px;}
.y47_c00155{bottom:1237.245000px;}
.y49_c00155{bottom:1238.115000px;}
.y45_c00155{bottom:1245.885000px;}
.y3a_c00155{bottom:1248.480000px;}
.y42_c00155{bottom:1249.350000px;}
.y3f_c00155{bottom:1250.205000px;}
.y43_c00155{bottom:1252.800000px;}
.y39_c00155{bottom:1254.525000px;}
.y38_c00155{bottom:1255.395000px;}
.y3d_c00155{bottom:1257.120000px;}
.y3b_c00155{bottom:1257.990000px;}
.y40_c00155{bottom:1258.845000px;}
.y41_c00155{bottom:1260.570000px;}
.y3c_c00155{bottom:1262.310000px;}
.y44_c00155{bottom:1266.630000px;}
.y3e_c00155{bottom:1267.485000px;}
.y35_c00155{bottom:1270.950000px;}
.y1da_c00155{bottom:1271.805000px;}
.y37_c00155{bottom:1272.675000px;}
.y36_c00155{bottom:1273.530000px;}
.y33_c00155{bottom:1274.400000px;}
.y32_c00155{bottom:1276.995000px;}
.y31_c00155{bottom:1277.850000px;}
.y30_c00155{bottom:1278.720000px;}
.y34_c00155{bottom:1280.445000px;}
.y2f_c00155{bottom:1292.550000px;}
.y2e_c00155{bottom:1295.130000px;}
.y2c_c00155{bottom:1298.595000px;}
.y2b_c00155{bottom:1299.450000px;}
.y29_c00155{bottom:1300.320000px;}
.y28_c00155{bottom:1301.190000px;}
.y2d_c00155{bottom:1304.640000px;}
.y2a_c00155{bottom:1306.365000px;}
.y1d9_c00155{bottom:1315.875000px;}
.y1e_c00155{bottom:1322.790000px;}
.y1b_c00155{bottom:1323.645000px;}
.y1c_c00155{bottom:1324.515000px;}
.y26_c00155{bottom:1325.370000px;}
.y24_c00155{bottom:1327.110000px;}
.y22_c00155{bottom:1328.835000px;}
.y25_c00155{bottom:1329.690000px;}
.y1d_c00155{bottom:1331.430000px;}
.y1d8_c00155{bottom:1332.285000px;}
.y1f_c00155{bottom:1334.010000px;}
.y23_c00155{bottom:1334.880000px;}
.y21_c00155{bottom:1337.475000px;}
.y20_c00155{bottom:1338.330000px;}
.y27_c00155{bottom:1340.070000px;}
.y1a_c00155{bottom:1343.520000px;}
.y14_c00155{bottom:1347.840000px;}
.y19_c00155{bottom:1351.290000px;}
.y17_c00155{bottom:1352.160000px;}
.y18_c00155{bottom:1353.030000px;}
.y15_c00155{bottom:1353.885000px;}
.y1d7_c00155{bottom:1354.755000px;}
.y16_c00155{bottom:1356.480000px;}
.y1d6_c00155{bottom:1359.930000px;}
.y11_c00155{bottom:1372.035000px;}
.y7_c00155{bottom:1374.630000px;}
.y1_c00155{bottom:1375.485000px;}
.y13_c00155{bottom:1376.355000px;}
.y12_c00155{bottom:1380.675000px;}
.y10_c00155{bottom:1381.530000px;}
.ye_c00155{bottom:1382.400000px;}
.yd_c00155{bottom:1383.270000px;}
.yc_c00155{bottom:1384.125000px;}
.yf_c00155{bottom:1384.995000px;}
.y9_c00155{bottom:1385.850000px;}
.y6_c00155{bottom:1386.720000px;}
.y8_c00155{bottom:1387.590000px;}
.y3_c00155{bottom:1388.445000px;}
.y5_c00155{bottom:1389.315000px;}
.ya_c00155{bottom:1392.765000px;}
.y2_c00155{bottom:1393.635000px;}
.y4_c00155{bottom:1396.230000px;}
.yb_c00155{bottom:1405.725000px;}
.y1df_c00155{bottom:1417.830000px;}
.y1d5_c00155{bottom:1432.515000px;}
.y1d4_c00155{bottom:1434.240000px;}
.y1d3_c00155{bottom:1437.690000px;}
.h11_c00155{height:3.110063px;}
.hd_c00155{height:5.399414px;}
.h13_c00155{height:6.209326px;}
.h2d_c00155{height:6.590063px;}
.h10_c00155{height:9.340986px;}
.hb_c00155{height:12.418652px;}
.h6_c00155{height:15.550313px;}
.h12_c00155{height:18.681973px;}
.h15_c00155{height:21.759639px;}
.h22_c00155{height:24.891299px;}
.h2b_c00155{height:27.968965px;}
.he_c00155{height:31.100625px;}
.h14_c00155{height:34.232285px;}
.h29_c00155{height:37.309951px;}
.hc_c00155{height:40.441611px;}
.h16_c00155{height:43.519277px;}
.ha_c00155{height:46.650937px;}
.h1f_c00155{height:49.782598px;}
.h1e_c00155{height:52.860264px;}
.h3_c00155{height:55.991924px;}
.h4_c00155{height:59.069590px;}
.h5_c00155{height:62.201250px;}
.h1c_c00155{height:65.332910px;}
.h7_c00155{height:68.410576px;}
.h17_c00155{height:71.542236px;}
.h1a_c00155{height:74.619902px;}
.hf_c00155{height:77.751563px;}
.h1d_c00155{height:80.883223px;}
.h20_c00155{height:83.960889px;}
.h9_c00155{height:87.092549px;}
.h19_c00155{height:90.170215px;}
.h21_c00155{height:93.301875px;}
.h2a_c00155{height:96.433535px;}
.h18_c00155{height:99.511201px;}
.h23_c00155{height:102.642861px;}
.h2c_c00155{height:105.720527px;}
.h24_c00155{height:108.852188px;}
.h27_c00155{height:111.983848px;}
.h8_c00155{height:118.193174px;}
.h1b_c00155{height:121.270840px;}
.h2_c00155{height:127.534160px;}
.h26_c00155{height:130.611826px;}
.h25_c00155{height:133.743486px;}
.h28_c00155{height:136.821152px;}
.h2f_c00155{height:155.503125px;}
.h2e_c00155{height:279.905625px;}
.h1_c00155{height:1502.250000px;}
.h0_c00155{height:1502.490000px;}
.w0_c00155{width:1111.965000px;}
.w1_c00155{width:1112.250000px;}
.x0_c00155{left:0.000000px;}
.x13b_c00155{left:8.640000px;}
.x13a_c00155{left:12.090000px;}
.x132_c00155{left:18.150000px;}
.x13c_c00155{left:23.325000px;}
.x133_c00155{left:29.370000px;}
.x144_c00155{left:44.070000px;}
.x145_c00155{left:53.565000px;}
.x141_c00155{left:55.290000px;}
.x146_c00155{left:67.395000px;}
.x142_c00155{left:70.845000px;}
.x140_c00155{left:82.950000px;}
.x13e_c00155{left:90.720000px;}
.x138_c00155{left:98.490000px;}
.x13f_c00155{left:100.230000px;}
.x137_c00155{left:102.810000px;}
.x135_c00155{left:104.550000px;}
.x134_c00155{left:108.000000px;}
.x131_c00155{left:113.190000px;}
.x136_c00155{left:115.770000px;}
.x139_c00155{left:131.325000px;}
.x143_c00155{left:159.840000px;}
.x11a_c00155{left:170.205000px;}
.x11b_c00155{left:175.395000px;}
.x123_c00155{left:189.210000px;}
.x121_c00155{left:191.805000px;}
.x11c_c00155{left:197.850000px;}
.xde_c00155{left:207.360000px;}
.x2f_c00155{left:211.680000px;}
.xe6_c00155{left:213.405000px;}
.x108_c00155{left:222.045000px;}
.x13d_c00155{left:224.640000px;}
.x88_c00155{left:226.365000px;}
.xec_c00155{left:228.090000px;}
.xc8_c00155{left:231.555000px;}
.xbe_c00155{left:234.150000px;}
.xae_c00155{left:235.875000px;}
.x96_c00155{left:238.470000px;}
.x4f_c00155{left:240.195000px;}
.x30_c00155{left:241.920000px;}
.xe2_c00155{left:250.560000px;}
.x64_c00155{left:255.750000px;}
.x47_c00155{left:260.070000px;}
.x1_c00155{left:264.390000px;}
.x65_c00155{left:266.115000px;}
.x57_c00155{left:267.840000px;}
.x8e_c00155{left:270.435000px;}
.x11d_c00155{left:273.030000px;}
.xce_c00155{left:275.610000px;}
.xf3_c00155{left:277.350000px;}
.x97_c00155{left:279.075000px;}
.x31_c00155{left:280.800000px;}
.x115_c00155{left:283.395000px;}
.x66_c00155{left:285.990000px;}
.x48_c00155{left:288.570000px;}
.xa7_c00155{left:290.310000px;}
.x67_c00155{left:292.035000px;}
.xb6_c00155{left:293.760000px;}
.xd3_c00155{left:296.355000px;}
.x74_c00155{left:299.805000px;}
.x100_c00155{left:304.125000px;}
.x32_c00155{left:306.720000px;}
.xa2_c00155{left:312.765000px;}
.xc7_c00155{left:314.490000px;}
.x6d_c00155{left:316.230000px;}
.xa8_c00155{left:317.955000px;}
.x49_c00155{left:321.405000px;}
.xd7_c00155{left:323.130000px;}
.xb3_c00155{left:324.870000px;}
.x1a_c00155{left:327.450000px;}
.x9c_c00155{left:331.770000px;}
.x2_c00155{left:333.510000px;}
.x92_c00155{left:336.090000px;}
.x68_c00155{left:337.830000px;}
.x101_c00155{left:339.555000px;}
.x1b_c00155{left:341.280000px;}
.x75_c00155{left:343.005000px;}
.x50_c00155{left:344.730000px;}
.xf4_c00155{left:347.325000px;}
.xbf_c00155{left:349.050000px;}
.x37_c00155{left:350.790000px;}
.x6e_c00155{left:354.240000px;}
.xaf_c00155{left:358.560000px;}
.x1c_c00155{left:361.155000px;}
.x109_c00155{left:364.605000px;}
.x51_c00155{left:366.330000px;}
.xd8_c00155{left:368.070000px;}
.x93_c00155{left:371.520000px;}
.x3_c00155{left:373.245000px;}
.x9d_c00155{left:375.840000px;}
.xb7_c00155{left:381.030000px;}
.x38_c00155{left:383.610000px;}
.xcf_c00155{left:386.205000px;}
.x4_c00155{left:388.800000px;}
.x89_c00155{left:390.525000px;}
.x98_c00155{left:393.120000px;}
.xdb_c00155{left:399.165000px;}
.x9e_c00155{left:400.890000px;}
.x7b_c00155{left:404.355000px;}
.xc0_c00155{left:406.080000px;}
.xc4_c00155{left:410.400000px;}
.x7c_c00155{left:414.720000px;}
.x5_c00155{left:416.445000px;}
.x76_c00155{left:418.170000px;}
.x33_c00155{left:421.635000px;}
.xd4_c00155{left:423.360000px;}
.x1d_c00155{left:425.085000px;}
.x6_c00155{left:427.680000px;}
.x99_c00155{left:431.130000px;}
.xed_c00155{left:434.595000px;}
.x1e_c00155{left:436.320000px;}
.x4a_c00155{left:438.045000px;}
.x116_c00155{left:439.770000px;}
.x128_c00155{left:441.510000px;}
.xc9_c00155{left:444.090000px;}
.x69_c00155{left:445.830000px;}
.xe7_c00155{left:447.555000px;}
.xb4_c00155{left:449.280000px;}
.x10a_c00155{left:451.005000px;}
.x1f_c00155{left:453.600000px;}
.x94_c00155{left:455.325000px;}
.x8f_c00155{left:460.515000px;}
.x52_c00155{left:462.240000px;}
.xf5_c00155{left:465.690000px;}
.x7_c00155{left:467.430000px;}
.x34_c00155{left:470.880000px;}
.x8a_c00155{left:472.605000px;}
.xa9_c00155{left:475.200000px;}
.x9f_c00155{left:477.795000px;}
.xb5_c00155{left:480.390000px;}
.xa3_c00155{left:487.290000px;}
.x77_c00155{left:489.030000px;}
.x8_c00155{left:490.755000px;}
.x95_c00155{left:492.480000px;}
.x117_c00155{left:494.205000px;}
.x12e_c00155{left:496.800000px;}
.x4b_c00155{left:498.525000px;}
.x83_c00155{left:501.120000px;}
.x102_c00155{left:503.715000px;}
.x58_c00155{left:505.440000px;}
.x7d_c00155{left:508.035000px;}
.x9_c00155{left:514.080000px;}
.x78_c00155{left:517.530000px;}
.x11e_c00155{left:519.270000px;}
.x59_c00155{left:521.850000px;}
.x39_c00155{left:524.445000px;}
.xf6_c00155{left:526.170000px;}
.x12f_c00155{left:529.635000px;}
.x5a_c00155{left:532.230000px;}
.xa_c00155{left:534.810000px;}
.xb0_c00155{left:536.550000px;}
.x20_c00155{left:538.275000px;}
.x5b_c00155{left:540.000000px;}
.x53_c00155{left:541.725000px;}
.x21_c00155{left:547.770000px;}
.x84_c00155{left:550.365000px;}
.x130_c00155{left:552.090000px;}
.x3a_c00155{left:553.830000px;}
.xaa_c00155{left:559.005000px;}
.x4c_c00155{left:563.325000px;}
.x7e_c00155{left:568.515000px;}
.x6a_c00155{left:571.965000px;}
.xf7_c00155{left:577.155000px;}
.xa0_c00155{left:578.880000px;}
.xb_c00155{left:580.605000px;}
.xca_c00155{left:583.200000px;}
.xd9_c00155{left:586.650000px;}
.xdf_c00155{left:588.390000px;}
.x5c_c00155{left:590.115000px;}
.x6f_c00155{left:591.840000px;}
.xd0_c00155{left:593.565000px;}
.xb1_c00155{left:596.160000px;}
.x3b_c00155{left:598.755000px;}
.x22_c00155{left:600.480000px;}
.xa4_c00155{left:602.205000px;}
.x11f_c00155{left:603.930000px;}
.x5d_c00155{left:607.395000px;}
.xcb_c00155{left:609.120000px;}
.x9a_c00155{left:610.845000px;}
.xab_c00155{left:612.570000px;}
.xb8_c00155{left:616.035000px;}
.x8b_c00155{left:617.760000px;}
.x124_c00155{left:619.485000px;}
.x3c_c00155{left:621.210000px;}
.x5e_c00155{left:623.805000px;}
.xa5_c00155{left:626.400000px;}
.xe3_c00155{left:628.995000px;}
.xc_c00155{left:632.445000px;}
.x79_c00155{left:634.170000px;}
.x23_c00155{left:635.910000px;}
.x10b_c00155{left:638.490000px;}
.xd5_c00155{left:641.955000px;}
.x3d_c00155{left:644.550000px;}
.xb9_c00155{left:646.275000px;}
.x4d_c00155{left:649.725000px;}
.xc1_c00155{left:651.450000px;}
.xd_c00155{left:656.640000px;}
.x7f_c00155{left:658.365000px;}
.xc2_c00155{left:660.960000px;}
.x3e_c00155{left:664.410000px;}
.x85_c00155{left:667.875000px;}
.x24_c00155{left:670.470000px;}
.x3f_c00155{left:674.790000px;}
.xdc_c00155{left:677.370000px;}
.xe_c00155{left:679.965000px;}
.xe4_c00155{left:683.430000px;}
.x5f_c00155{left:685.155000px;}
.x35_c00155{left:689.475000px;}
.x70_c00155{left:692.070000px;}
.x25_c00155{left:694.650000px;}
.x40_c00155{left:697.245000px;}
.xd1_c00155{left:698.970000px;}
.x71_c00155{left:700.710000px;}
.xf_c00155{left:705.030000px;}
.x26_c00155{left:707.610000px;}
.x8c_c00155{left:711.075000px;}
.x120_c00155{left:712.800000px;}
.x80_c00155{left:715.395000px;}
.xe5_c00155{left:717.990000px;}
.x72_c00155{left:722.310000px;}
.x27_c00155{left:724.890000px;}
.x60_c00155{left:727.485000px;}
.xe8_c00155{left:729.210000px;}
.x10_c00155{left:731.805000px;}
.xcc_c00155{left:734.400000px;}
.x36_c00155{left:736.125000px;}
.x90_c00155{left:741.315000px;}
.x6b_c00155{left:743.910000px;}
.x61_c00155{left:747.360000px;}
.x41_c00155{left:750.810000px;}
.x10c_c00155{left:755.130000px;}
.xc5_c00155{left:757.725000px;}
.x42_c00155{left:759.450000px;}
.x54_c00155{left:761.190000px;}
.xe0_c00155{left:762.915000px;}
.xf8_c00155{left:764.640000px;}
.xac_c00155{left:768.090000px;}
.x28_c00155{left:769.830000px;}
.xba_c00155{left:772.410000px;}
.x62_c00155{left:775.005000px;}
.x81_c00155{left:776.730000px;}
.x11_c00155{left:780.195000px;}
.xc6_c00155{left:781.920000px;}
.xc3_c00155{left:783.645000px;}
.xf9_c00155{left:787.965000px;}
.x43_c00155{left:790.560000px;}
.x55_c00155{left:792.285000px;}
.x29_c00155{left:794.880000px;}
.x12_c00155{left:796.605000px;}
.x44_c00155{left:799.200000px;}
.x6c_c00155{left:800.925000px;}
.x2a_c00155{left:802.650000px;}
.x86_c00155{left:805.245000px;}
.xd2_c00155{left:807.840000px;}
.xa6_c00155{left:810.435000px;}
.x2b_c00155{left:812.160000px;}
.x13_c00155{left:813.885000px;}
.x4e_c00155{left:816.480000px;}
.x9b_c00155{left:821.670000px;}
.x14_c00155{left:824.250000px;}
.xcd_c00155{left:825.990000px;}
.xd6_c00155{left:827.715000px;}
.x103_c00155{left:830.310000px;}
.x12a_c00155{left:832.890000px;}
.xdd_c00155{left:835.485000px;}
.x15_c00155{left:837.210000px;}
.x7a_c00155{left:838.950000px;}
.x118_c00155{left:840.675000px;}
.x87_c00155{left:844.125000px;}
.x91_c00155{left:845.850000px;}
.xda_c00155{left:847.590000px;}
.x16_c00155{left:849.315000px;}
.x2c_c00155{left:851.040000px;}
.x56_c00155{left:852.765000px;}
.x45_c00155{left:855.360000px;}
.x17_c00155{left:857.955000px;}
.x63_c00155{left:861.405000px;}
.x18_c00155{left:865.725000px;}
.x8d_c00155{left:869.190000px;}
.xb2_c00155{left:871.770000px;}
.x10d_c00155{left:874.365000px;}
.x19_c00155{left:876.090000px;}
.x82_c00155{left:877.830000px;}
.x46_c00155{left:880.410000px;}
.xe1_c00155{left:882.150000px;}
.xa1_c00155{left:883.875000px;}
.xfa_c00155{left:885.600000px;}
.x73_c00155{left:888.195000px;}
.xbb_c00155{left:892.515000px;}
.x122_c00155{left:894.239430px;}
.x2d_c00155{left:895.965000px;}
.xbc_c00155{left:898.560000px;}
.x10e_c00155{left:902.010000px;}
.xee_c00155{left:903.750000px;}
.xad_c00155{left:906.330000px;}
.xbd_c00155{left:908.070000px;}
.x104_c00155{left:913.245000px;}
.x2e_c00155{left:917.565000px;}
.xef_c00155{left:921.030000px;}
.x10f_c00155{left:928.800000px;}
.x119_c00155{left:931.395000px;}
.xe9_c00155{left:933.990000px;}
.x147_c00155{left:937.440000px;}
.x12b_c00155{left:939.165000px;}
.xfb_c00155{left:941.760000px;}
.x125_c00155{left:945.210000px;}
.x105_c00155{left:946.950000px;}
.x110_c00155{left:949.530000px;}
.x111_c00155{left:953.850000px;}
.xfc_c00155{left:956.445000px;}
.x12c_c00155{left:963.360000px;}
.x106_c00155{left:965.085000px;}
.xf0_c00155{left:967.680000px;}
.xfd_c00155{left:979.770000px;}
.x112_c00155{left:984.090000px;}
.xea_c00155{left:985.830000px;}
.x126_c00155{left:988.410000px;}
.x113_c00155{left:991.005000px;}
.xeb_c00155{left:993.600000px;}
.x12d_c00155{left:995.325000px;}
.xf1_c00155{left:997.050000px;}
.x107_c00155{left:1003.965000px;}
.xfe_c00155{left:1006.560000px;}
.x129_c00155{left:1010.880000px;}
.x127_c00155{left:1012.605000px;}
.x114_c00155{left:1015.200000px;}
.xf2_c00155{left:1019.520000px;}
.xff_c00155{left:1022.115000px;}
@media print{
.v1_c00155{vertical-align:-18.400000pt;}
.v2_c00155{vertical-align:-9.226667pt;}
.v0_c00155{vertical-align:0.000000pt;}
.v3_c00155{vertical-align:3.093333pt;}
.ls1_c00155{letter-spacing:0.000000pt;}
.ls0_c00155{letter-spacing:87.733333pt;}
.ws2_c00155{word-spacing:-21.731200pt;}
.ws3_c00155{word-spacing:-19.682347pt;}
.ws1_c00155{word-spacing:-17.943040pt;}
.ws4_c00155{word-spacing:0.000000pt;}
.ws0_c00155{word-spacing:31.821824pt;}
.fsf_c00155{font-size:3.072000pt;}
.fsb_c00155{font-size:5.333333pt;}
.fs11_c00155{font-size:6.133333pt;}
.fse_c00155{font-size:9.226667pt;}
.fs9_c00155{font-size:12.266667pt;}
.fs4_c00155{font-size:15.360000pt;}
.fs10_c00155{font-size:18.453333pt;}
.fs13_c00155{font-size:21.493333pt;}
.fs20_c00155{font-size:24.586667pt;}
.fs29_c00155{font-size:27.626667pt;}
.fsc_c00155{font-size:30.720000pt;}
.fs12_c00155{font-size:33.813333pt;}
.fs27_c00155{font-size:36.853333pt;}
.fsa_c00155{font-size:39.946667pt;}
.fs14_c00155{font-size:42.986667pt;}
.fs8_c00155{font-size:46.080000pt;}
.fs1d_c00155{font-size:49.173333pt;}
.fs1c_c00155{font-size:52.213333pt;}
.fs1_c00155{font-size:55.306667pt;}
.fs2_c00155{font-size:58.346667pt;}
.fs3_c00155{font-size:61.440000pt;}
.fs1a_c00155{font-size:64.533333pt;}
.fs5_c00155{font-size:67.573333pt;}
.fs15_c00155{font-size:70.666667pt;}
.fs18_c00155{font-size:73.706667pt;}
.fsd_c00155{font-size:76.800000pt;}
.fs1b_c00155{font-size:79.893333pt;}
.fs1e_c00155{font-size:82.933333pt;}
.fs7_c00155{font-size:86.026667pt;}
.fs17_c00155{font-size:89.066667pt;}
.fs1f_c00155{font-size:92.160000pt;}
.fs28_c00155{font-size:95.253333pt;}
.fs16_c00155{font-size:98.293333pt;}
.fs21_c00155{font-size:101.386667pt;}
.fs2a_c00155{font-size:104.426667pt;}
.fs22_c00155{font-size:107.520000pt;}
.fs25_c00155{font-size:110.613333pt;}
.fs6_c00155{font-size:116.746667pt;}
.fs19_c00155{font-size:119.786667pt;}
.fs0_c00155{font-size:125.973333pt;}
.fs24_c00155{font-size:129.013333pt;}
.fs23_c00155{font-size:132.106667pt;}
.fs26_c00155{font-size:135.146667pt;}
.fs2c_c00155{font-size:153.600000pt;}
.fs2b_c00155{font-size:276.480000pt;}
.y0_c00155{bottom:0.000000pt;}
.y1d2_c00155{bottom:189.693333pt;}
.y1d0_c00155{bottom:192.000000pt;}
.y1d1_c00155{bottom:193.533333pt;}
.y1ce_c00155{bottom:194.306667pt;}
.y1cb_c00155{bottom:195.066667pt;}
.y1c8_c00155{bottom:195.840000pt;}
.y1c7_c00155{bottom:196.613333pt;}
.y1cd_c00155{bottom:197.373333pt;}
.y1ca_c00155{bottom:199.680000pt;}
.y1c6_c00155{bottom:201.213333pt;}
.y1c5_c00155{bottom:202.746667pt;}
.y1c9_c00155{bottom:203.520000pt;}
.y1cc_c00155{bottom:205.053333pt;}
.y1cf_c00155{bottom:211.200000pt;}
.y1c3_c00155{bottom:217.346667pt;}
.y1c4_c00155{bottom:218.880000pt;}
.y1bd_c00155{bottom:220.413333pt;}
.y1e8_c00155{bottom:221.186667pt;}
.y1c1_c00155{bottom:221.946667pt;}
.y1be_c00155{bottom:222.720000pt;}
.y1bc_c00155{bottom:223.493333pt;}
.y1bb_c00155{bottom:225.026667pt;}
.y1bf_c00155{bottom:225.786667pt;}
.y1c2_c00155{bottom:226.560000pt;}
.y1c0_c00155{bottom:231.173333pt;}
.y1b6_c00155{bottom:240.386667pt;}
.y1b8_c00155{bottom:241.146667pt;}
.y1b7_c00155{bottom:241.920000pt;}
.y1b3_c00155{bottom:242.693333pt;}
.y1b5_c00155{bottom:243.453333pt;}
.y1b2_c00155{bottom:244.986667pt;}
.y1b1_c00155{bottom:248.066667pt;}
.y1b4_c00155{bottom:248.826667pt;}
.y1ba_c00155{bottom:249.600000pt;}
.y1b9_c00155{bottom:254.213333pt;}
.y1e5_c00155{bottom:254.973333pt;}
.y1e6_c00155{bottom:255.746667pt;}
.y1e7_c00155{bottom:256.506667pt;}
.y1ad_c00155{bottom:258.053333pt;}
.y1ae_c00155{bottom:258.813333pt;}
.y1aa_c00155{bottom:260.346667pt;}
.y1ac_c00155{bottom:261.120000pt;}
.y1a7_c00155{bottom:261.893333pt;}
.y1a8_c00155{bottom:262.653333pt;}
.y1af_c00155{bottom:264.186667pt;}
.y1a9_c00155{bottom:264.960000pt;}
.y1b0_c00155{bottom:266.493333pt;}
.y1ab_c00155{bottom:268.800000pt;}
.y1a5_c00155{bottom:270.333333pt;}
.y1a6_c00155{bottom:271.866667pt;}
.y1a1_c00155{bottom:281.853333pt;}
.y1a0_c00155{bottom:284.160000pt;}
.y1a3_c00155{bottom:285.693333pt;}
.y19d_c00155{bottom:287.226667pt;}
.y19f_c00155{bottom:288.000000pt;}
.y19b_c00155{bottom:288.773333pt;}
.y1a4_c00155{bottom:290.306667pt;}
.y1e4_c00155{bottom:291.066667pt;}
.y19a_c00155{bottom:291.840000pt;}
.y19e_c00155{bottom:292.613333pt;}
.y1a2_c00155{bottom:293.373333pt;}
.y19c_c00155{bottom:295.680000pt;}
.y197_c00155{bottom:304.133333pt;}
.y195_c00155{bottom:306.426667pt;}
.y194_c00155{bottom:307.200000pt;}
.y193_c00155{bottom:308.733333pt;}
.y192_c00155{bottom:310.266667pt;}
.y196_c00155{bottom:313.346667pt;}
.y199_c00155{bottom:316.413333pt;}
.y198_c00155{bottom:321.026667pt;}
.y190_c00155{bottom:325.626667pt;}
.y1e3_c00155{bottom:327.173333pt;}
.y191_c00155{bottom:328.706667pt;}
.y18f_c00155{bottom:329.466667pt;}
.y18d_c00155{bottom:331.773333pt;}
.y18c_c00155{bottom:332.546667pt;}
.y18a_c00155{bottom:333.306667pt;}
.y18b_c00155{bottom:334.080000pt;}
.y189_c00155{bottom:334.853333pt;}
.y18e_c00155{bottom:335.613333pt;}
.y188_c00155{bottom:336.386667pt;}
.y187_c00155{bottom:347.133333pt;}
.y182_c00155{bottom:348.666667pt;}
.y181_c00155{bottom:350.213333pt;}
.y180_c00155{bottom:350.973333pt;}
.y17f_c00155{bottom:351.746667pt;}
.y179_c00155{bottom:354.053333pt;}
.y17a_c00155{bottom:354.813333pt;}
.y17b_c00155{bottom:355.586667pt;}
.y183_c00155{bottom:356.346667pt;}
.y17c_c00155{bottom:357.120000pt;}
.y17e_c00155{bottom:358.653333pt;}
.y17d_c00155{bottom:359.426667pt;}
.y185_c00155{bottom:366.333333pt;}
.y184_c00155{bottom:367.866667pt;}
.y186_c00155{bottom:370.173333pt;}
.y177_c00155{bottom:373.253333pt;}
.y171_c00155{bottom:374.013333pt;}
.y178_c00155{bottom:374.786667pt;}
.y175_c00155{bottom:376.320000pt;}
.y170_c00155{bottom:377.093333pt;}
.y173_c00155{bottom:377.853333pt;}
.y16e_c00155{bottom:378.626667pt;}
.y172_c00155{bottom:379.386667pt;}
.y16b_c00155{bottom:380.160000pt;}
.y174_c00155{bottom:380.933333pt;}
.y16f_c00155{bottom:381.693333pt;}
.y176_c00155{bottom:382.466667pt;}
.y16d_c00155{bottom:383.226667pt;}
.y16c_c00155{bottom:384.000000pt;}
.y165_c00155{bottom:393.986667pt;}
.y168_c00155{bottom:394.746667pt;}
.y16a_c00155{bottom:396.293333pt;}
.y164_c00155{bottom:397.053333pt;}
.y166_c00155{bottom:397.826667pt;}
.y163_c00155{bottom:399.360000pt;}
.y167_c00155{bottom:401.666667pt;}
.y162_c00155{bottom:405.506667pt;}
.y169_c00155{bottom:407.813333pt;}
.y161_c00155{bottom:413.946667pt;}
.y160_c00155{bottom:416.253333pt;}
.y15e_c00155{bottom:417.026667pt;}
.y15d_c00155{bottom:417.786667pt;}
.y15c_c00155{bottom:418.560000pt;}
.y15b_c00155{bottom:419.333333pt;}
.y158_c00155{bottom:420.866667pt;}
.y15a_c00155{bottom:424.706667pt;}
.y157_c00155{bottom:425.466667pt;}
.y159_c00155{bottom:427.013333pt;}
.y156_c00155{bottom:427.773333pt;}
.y15f_c00155{bottom:435.453333pt;}
.y155_c00155{bottom:438.533333pt;}
.y154_c00155{bottom:439.293333pt;}
.y151_c00155{bottom:440.066667pt;}
.y14e_c00155{bottom:443.906667pt;}
.y14c_c00155{bottom:444.666667pt;}
.y153_c00155{bottom:445.440000pt;}
.y14d_c00155{bottom:446.213333pt;}
.y152_c00155{bottom:446.973333pt;}
.y150_c00155{bottom:449.280000pt;}
.y14f_c00155{bottom:450.053333pt;}
.y14a_c00155{bottom:460.026667pt;}
.y149_c00155{bottom:460.800000pt;}
.y146_c00155{bottom:461.573333pt;}
.y148_c00155{bottom:463.106667pt;}
.y144_c00155{bottom:463.866667pt;}
.y145_c00155{bottom:464.640000pt;}
.y140_c00155{bottom:465.413333pt;}
.y143_c00155{bottom:466.173333pt;}
.y14b_c00155{bottom:466.946667pt;}
.y147_c00155{bottom:467.706667pt;}
.y142_c00155{bottom:470.013333pt;}
.y141_c00155{bottom:472.320000pt;}
.y13c_c00155{bottom:485.373333pt;}
.y13d_c00155{bottom:486.146667pt;}
.y138_c00155{bottom:487.680000pt;}
.y13f_c00155{bottom:489.986667pt;}
.y13a_c00155{bottom:490.746667pt;}
.y13e_c00155{bottom:491.520000pt;}
.y139_c00155{bottom:492.293333pt;}
.y13b_c00155{bottom:493.053333pt;}
.y136_c00155{bottom:493.826667pt;}
.y137_c00155{bottom:494.586667pt;}
.y131_c00155{bottom:507.653333pt;}
.y132_c00155{bottom:508.413333pt;}
.y130_c00155{bottom:509.186667pt;}
.y12f_c00155{bottom:509.946667pt;}
.y12e_c00155{bottom:510.720000pt;}
.y134_c00155{bottom:511.493333pt;}
.y135_c00155{bottom:513.026667pt;}
.y12c_c00155{bottom:514.560000pt;}
.y133_c00155{bottom:515.333333pt;}
.y12d_c00155{bottom:516.866667pt;}
.y127_c00155{bottom:532.226667pt;}
.y125_c00155{bottom:532.986667pt;}
.y123_c00155{bottom:536.066667pt;}
.y124_c00155{bottom:536.826667pt;}
.y122_c00155{bottom:537.600000pt;}
.y126_c00155{bottom:539.906667pt;}
.y128_c00155{bottom:540.666667pt;}
.y12a_c00155{bottom:542.213333pt;}
.y12b_c00155{bottom:543.746667pt;}
.y129_c00155{bottom:544.506667pt;}
.y121_c00155{bottom:549.893333pt;}
.y120_c00155{bottom:552.960000pt;}
.y11c_c00155{bottom:554.493333pt;}
.y11d_c00155{bottom:555.266667pt;}
.y11e_c00155{bottom:557.573333pt;}
.y1e2_c00155{bottom:559.106667pt;}
.y11f_c00155{bottom:559.866667pt;}
.y119_c00155{bottom:574.466667pt;}
.y118_c00155{bottom:575.226667pt;}
.y11a_c00155{bottom:576.773333pt;}
.y116_c00155{bottom:577.533333pt;}
.y11b_c00155{bottom:579.840000pt;}
.y117_c00155{bottom:582.146667pt;}
.y115_c00155{bottom:595.200000pt;}
.y112_c00155{bottom:596.733333pt;}
.y110_c00155{bottom:599.813333pt;}
.y10f_c00155{bottom:600.573333pt;}
.y111_c00155{bottom:601.346667pt;}
.y114_c00155{bottom:602.880000pt;}
.y113_c00155{bottom:604.413333pt;}
.y10e_c00155{bottom:605.946667pt;}
.y10d_c00155{bottom:606.720000pt;}
.y10b_c00155{bottom:617.466667pt;}
.y10a_c00155{bottom:618.240000pt;}
.y107_c00155{bottom:619.773333pt;}
.y106_c00155{bottom:620.546667pt;}
.y104_c00155{bottom:621.306667pt;}
.y105_c00155{bottom:622.080000pt;}
.y10c_c00155{bottom:623.613333pt;}
.y108_c00155{bottom:625.146667pt;}
.y109_c00155{bottom:625.920000pt;}
.y102_c00155{bottom:627.453333pt;}
.y103_c00155{bottom:628.986667pt;}
.y101_c00155{bottom:642.053333pt;}
.yff_c00155{bottom:644.346667pt;}
.yfc_c00155{bottom:645.120000pt;}
.yf9_c00155{bottom:648.186667pt;}
.yfa_c00155{bottom:649.733333pt;}
.yfb_c00155{bottom:651.266667pt;}
.y100_c00155{bottom:660.480000pt;}
.yfe_c00155{bottom:661.253333pt;}
.yfd_c00155{bottom:662.013333pt;}
.yf7_c00155{bottom:663.546667pt;}
.yf5_c00155{bottom:665.093333pt;}
.yf8_c00155{bottom:665.853333pt;}
.yf3_c00155{bottom:669.693333pt;}
.yf6_c00155{bottom:671.226667pt;}
.yf4_c00155{bottom:672.000000pt;}
.yf2_c00155{bottom:682.746667pt;}
.yf0_c00155{bottom:685.053333pt;}
.yed_c00155{bottom:685.826667pt;}
.yeb_c00155{bottom:686.586667pt;}
.yf1_c00155{bottom:690.426667pt;}
.yef_c00155{bottom:691.200000pt;}
.yee_c00155{bottom:691.973333pt;}
.yec_c00155{bottom:693.506667pt;}
.yea_c00155{bottom:695.040000pt;}
.ye7_c00155{bottom:705.026667pt;}
.ye6_c00155{bottom:706.560000pt;}
.ye8_c00155{bottom:708.093333pt;}
.ye4_c00155{bottom:711.173333pt;}
.ye5_c00155{bottom:713.466667pt;}
.ye3_c00155{bottom:715.773333pt;}
.ye9_c00155{bottom:719.613333pt;}
.ydf_c00155{bottom:727.293333pt;}
.ydc_c00155{bottom:728.826667pt;}
.ye1_c00155{bottom:730.373333pt;}
.ydb_c00155{bottom:731.133333pt;}
.ye2_c00155{bottom:731.906667pt;}
.yd9_c00155{bottom:732.666667pt;}
.ye0_c00155{bottom:733.440000pt;}
.yde_c00155{bottom:734.973333pt;}
.ydd_c00155{bottom:735.746667pt;}
.yda_c00155{bottom:737.280000pt;}
.yd5_c00155{bottom:748.800000pt;}
.yd6_c00155{bottom:751.106667pt;}
.yd3_c00155{bottom:751.866667pt;}
.yd7_c00155{bottom:752.640000pt;}
.yd1_c00155{bottom:753.413333pt;}
.yd4_c00155{bottom:757.253333pt;}
.yd0_c00155{bottom:758.786667pt;}
.yd2_c00155{bottom:759.546667pt;}
.yd8_c00155{bottom:760.320000pt;}
.yce_c00155{bottom:770.306667pt;}
.ycc_c00155{bottom:771.840000pt;}
.yc9_c00155{bottom:772.613333pt;}
.ycb_c00155{bottom:773.373333pt;}
.yc8_c00155{bottom:774.146667pt;}
.yc6_c00155{bottom:775.680000pt;}
.yc7_c00155{bottom:777.213333pt;}
.ycf_c00155{bottom:777.986667pt;}
.yca_c00155{bottom:779.520000pt;}
.yc4_c00155{bottom:780.293333pt;}
.yc5_c00155{bottom:781.826667pt;}
.ycd_c00155{bottom:787.200000pt;}
.yc1_c00155{bottom:797.186667pt;}
.ybc_c00155{bottom:797.946667pt;}
.yc0_c00155{bottom:798.720000pt;}
.ybf_c00155{bottom:799.493333pt;}
.ybe_c00155{bottom:802.560000pt;}
.ybd_c00155{bottom:803.333333pt;}
.y1e1_c00155{bottom:805.626667pt;}
.yc3_c00155{bottom:814.080000pt;}
.yc2_c00155{bottom:814.853333pt;}
.ybb_c00155{bottom:818.693333pt;}
.yb9_c00155{bottom:820.986667pt;}
.yba_c00155{bottom:821.760000pt;}
.yb8_c00155{bottom:823.293333pt;}
.yb7_c00155{bottom:824.066667pt;}
.yb2_c00155{bottom:841.733333pt;}
.yb5_c00155{bottom:842.493333pt;}
.yb3_c00155{bottom:844.800000pt;}
.yb4_c00155{bottom:845.573333pt;}
.yb0_c00155{bottom:846.333333pt;}
.yb6_c00155{bottom:847.866667pt;}
.yb1_c00155{bottom:849.413333pt;}
.yaf_c00155{bottom:859.386667pt;}
.yab_c00155{bottom:863.226667pt;}
.yac_c00155{bottom:864.000000pt;}
.yae_c00155{bottom:864.773333pt;}
.ya8_c00155{bottom:865.533333pt;}
.yaa_c00155{bottom:868.613333pt;}
.yad_c00155{bottom:870.146667pt;}
.ya9_c00155{bottom:870.906667pt;}
.y1e0_c00155{bottom:873.213333pt;}
.ya4_c00155{bottom:885.506667pt;}
.ya3_c00155{bottom:887.040000pt;}
.ya0_c00155{bottom:887.813333pt;}
.ya6_c00155{bottom:888.573333pt;}
.ya1_c00155{bottom:890.106667pt;}
.ya7_c00155{bottom:890.880000pt;}
.ya5_c00155{bottom:892.413333pt;}
.ya2_c00155{bottom:893.186667pt;}
.y9d_c00155{bottom:905.466667pt;}
.y99_c00155{bottom:908.546667pt;}
.y9c_c00155{bottom:910.853333pt;}
.y9a_c00155{bottom:913.920000pt;}
.y98_c00155{bottom:914.693333pt;}
.y97_c00155{bottom:915.453333pt;}
.y96_c00155{bottom:916.226667pt;}
.y9e_c00155{bottom:920.826667pt;}
.y9f_c00155{bottom:922.373333pt;}
.y9b_c00155{bottom:924.666667pt;}
.y94_c00155{bottom:926.973333pt;}
.y92_c00155{bottom:928.506667pt;}
.y90_c00155{bottom:930.813333pt;}
.y95_c00155{bottom:932.346667pt;}
.y93_c00155{bottom:933.893333pt;}
.y91_c00155{bottom:934.653333pt;}
.y8e_c00155{bottom:936.186667pt;}
.y8d_c00155{bottom:937.733333pt;}
.y8f_c00155{bottom:938.493333pt;}
.y8c_c00155{bottom:948.480000pt;}
.y8a_c00155{bottom:949.253333pt;}
.y8b_c00155{bottom:950.013333pt;}
.y89_c00155{bottom:950.786667pt;}
.y88_c00155{bottom:951.546667pt;}
.y85_c00155{bottom:953.853333pt;}
.y87_c00155{bottom:956.933333pt;}
.y86_c00155{bottom:959.226667pt;}
.y84_c00155{bottom:960.773333pt;}
.y83_c00155{bottom:973.053333pt;}
.y81_c00155{bottom:974.586667pt;}
.y7d_c00155{bottom:975.360000pt;}
.y7f_c00155{bottom:976.893333pt;}
.y7e_c00155{bottom:977.666667pt;}
.y7c_c00155{bottom:978.426667pt;}
.y82_c00155{bottom:979.200000pt;}
.y80_c00155{bottom:980.733333pt;}
.y7a_c00155{bottom:982.266667pt;}
.y7b_c00155{bottom:983.040000pt;}
.y79_c00155{bottom:989.946667pt;}
.y76_c00155{bottom:995.333333pt;}
.y74_c00155{bottom:996.093333pt;}
.y70_c00155{bottom:996.866667pt;}
.y6f_c00155{bottom:998.400000pt;}
.y78_c00155{bottom:999.173333pt;}
.y6d_c00155{bottom:999.933333pt;}
.y71_c00155{bottom:1000.706667pt;}
.y77_c00155{bottom:1001.466667pt;}
.y75_c00155{bottom:1002.240000pt;}
.y73_c00155{bottom:1003.013333pt;}
.y72_c00155{bottom:1003.773333pt;}
.y6e_c00155{bottom:1005.306667pt;}
.y62_c00155{bottom:1027.586667pt;}
.y6a_c00155{bottom:1028.346667pt;}
.y64_c00155{bottom:1029.893333pt;}
.y63_c00155{bottom:1030.653333pt;}
.y66_c00155{bottom:1031.426667pt;}
.y65_c00155{bottom:1032.186667pt;}
.y67_c00155{bottom:1032.960000pt;}
.y6b_c00155{bottom:1034.493333pt;}
.y68_c00155{bottom:1035.266667pt;}
.y6c_c00155{bottom:1036.026667pt;}
.y69_c00155{bottom:1036.800000pt;}
.y61_c00155{bottom:1039.866667pt;}
.y60_c00155{bottom:1040.640000pt;}
.y5e_c00155{bottom:1041.413333pt;}
.y5c_c00155{bottom:1042.946667pt;}
.y5b_c00155{bottom:1043.706667pt;}
.y5f_c00155{bottom:1046.013333pt;}
.y5d_c00155{bottom:1049.093333pt;}
.y55_c00155{bottom:1062.906667pt;}
.y59_c00155{bottom:1063.680000pt;}
.y52_c00155{bottom:1064.453333pt;}
.y56_c00155{bottom:1065.213333pt;}
.y57_c00155{bottom:1065.986667pt;}
.y54_c00155{bottom:1066.746667pt;}
.y58_c00155{bottom:1069.053333pt;}
.y53_c00155{bottom:1069.826667pt;}
.y5a_c00155{bottom:1070.586667pt;}
.y4f_c00155{bottom:1071.360000pt;}
.y50_c00155{bottom:1072.133333pt;}
.y51_c00155{bottom:1072.893333pt;}
.y1dd_c00155{bottom:1080.573333pt;}
.y1de_c00155{bottom:1082.106667pt;}
.y4e_c00155{bottom:1082.880000pt;}
.y4d_c00155{bottom:1086.720000pt;}
.y4b_c00155{bottom:1088.253333pt;}
.y48_c00155{bottom:1089.786667pt;}
.y4c_c00155{bottom:1091.333333pt;}
.y1dc_c00155{bottom:1092.093333pt;}
.y46_c00155{bottom:1093.626667pt;}
.y4a_c00155{bottom:1094.400000pt;}
.y1db_c00155{bottom:1099.013333pt;}
.y47_c00155{bottom:1099.773333pt;}
.y49_c00155{bottom:1100.546667pt;}
.y45_c00155{bottom:1107.453333pt;}
.y3a_c00155{bottom:1109.760000pt;}
.y42_c00155{bottom:1110.533333pt;}
.y3f_c00155{bottom:1111.293333pt;}
.y43_c00155{bottom:1113.600000pt;}
.y39_c00155{bottom:1115.133333pt;}
.y38_c00155{bottom:1115.906667pt;}
.y3d_c00155{bottom:1117.440000pt;}
.y3b_c00155{bottom:1118.213333pt;}
.y40_c00155{bottom:1118.973333pt;}
.y41_c00155{bottom:1120.506667pt;}
.y3c_c00155{bottom:1122.053333pt;}
.y44_c00155{bottom:1125.893333pt;}
.y3e_c00155{bottom:1126.653333pt;}
.y35_c00155{bottom:1129.733333pt;}
.y1da_c00155{bottom:1130.493333pt;}
.y37_c00155{bottom:1131.266667pt;}
.y36_c00155{bottom:1132.026667pt;}
.y33_c00155{bottom:1132.800000pt;}
.y32_c00155{bottom:1135.106667pt;}
.y31_c00155{bottom:1135.866667pt;}
.y30_c00155{bottom:1136.640000pt;}
.y34_c00155{bottom:1138.173333pt;}
.y2f_c00155{bottom:1148.933333pt;}
.y2e_c00155{bottom:1151.226667pt;}
.y2c_c00155{bottom:1154.306667pt;}
.y2b_c00155{bottom:1155.066667pt;}
.y29_c00155{bottom:1155.840000pt;}
.y28_c00155{bottom:1156.613333pt;}
.y2d_c00155{bottom:1159.680000pt;}
.y2a_c00155{bottom:1161.213333pt;}
.y1d9_c00155{bottom:1169.666667pt;}
.y1e_c00155{bottom:1175.813333pt;}
.y1b_c00155{bottom:1176.573333pt;}
.y1c_c00155{bottom:1177.346667pt;}
.y26_c00155{bottom:1178.106667pt;}
.y24_c00155{bottom:1179.653333pt;}
.y22_c00155{bottom:1181.186667pt;}
.y25_c00155{bottom:1181.946667pt;}
.y1d_c00155{bottom:1183.493333pt;}
.y1d8_c00155{bottom:1184.253333pt;}
.y1f_c00155{bottom:1185.786667pt;}
.y23_c00155{bottom:1186.560000pt;}
.y21_c00155{bottom:1188.866667pt;}
.y20_c00155{bottom:1189.626667pt;}
.y27_c00155{bottom:1191.173333pt;}
.y1a_c00155{bottom:1194.240000pt;}
.y14_c00155{bottom:1198.080000pt;}
.y19_c00155{bottom:1201.146667pt;}
.y17_c00155{bottom:1201.920000pt;}
.y18_c00155{bottom:1202.693333pt;}
.y15_c00155{bottom:1203.453333pt;}
.y1d7_c00155{bottom:1204.226667pt;}
.y16_c00155{bottom:1205.760000pt;}
.y1d6_c00155{bottom:1208.826667pt;}
.y11_c00155{bottom:1219.586667pt;}
.y7_c00155{bottom:1221.893333pt;}
.y1_c00155{bottom:1222.653333pt;}
.y13_c00155{bottom:1223.426667pt;}
.y12_c00155{bottom:1227.266667pt;}
.y10_c00155{bottom:1228.026667pt;}
.ye_c00155{bottom:1228.800000pt;}
.yd_c00155{bottom:1229.573333pt;}
.yc_c00155{bottom:1230.333333pt;}
.yf_c00155{bottom:1231.106667pt;}
.y9_c00155{bottom:1231.866667pt;}
.y6_c00155{bottom:1232.640000pt;}
.y8_c00155{bottom:1233.413333pt;}
.y3_c00155{bottom:1234.173333pt;}
.y5_c00155{bottom:1234.946667pt;}
.ya_c00155{bottom:1238.013333pt;}
.y2_c00155{bottom:1238.786667pt;}
.y4_c00155{bottom:1241.093333pt;}
.yb_c00155{bottom:1249.533333pt;}
.y1df_c00155{bottom:1260.293333pt;}
.y1d5_c00155{bottom:1273.346667pt;}
.y1d4_c00155{bottom:1274.880000pt;}
.y1d3_c00155{bottom:1277.946667pt;}
.h11_c00155{height:2.764500pt;}
.hd_c00155{height:4.799479pt;}
.h13_c00155{height:5.519401pt;}
.h2d_c00155{height:5.857833pt;}
.h10_c00155{height:8.303099pt;}
.hb_c00155{height:11.038802pt;}
.h6_c00155{height:13.822500pt;}
.h12_c00155{height:16.606198pt;}
.h15_c00155{height:19.341901pt;}
.h22_c00155{height:22.125599pt;}
.h2b_c00155{height:24.861302pt;}
.he_c00155{height:27.645000pt;}
.h14_c00155{height:30.428698pt;}
.h29_c00155{height:33.164401pt;}
.hc_c00155{height:35.948099pt;}
.h16_c00155{height:38.683802pt;}
.ha_c00155{height:41.467500pt;}
.h1f_c00155{height:44.251198pt;}
.h1e_c00155{height:46.986901pt;}
.h3_c00155{height:49.770599pt;}
.h4_c00155{height:52.506302pt;}
.h5_c00155{height:55.290000pt;}
.h1c_c00155{height:58.073698pt;}
.h7_c00155{height:60.809401pt;}
.h17_c00155{height:63.593099pt;}
.h1a_c00155{height:66.328802pt;}
.hf_c00155{height:69.112500pt;}
.h1d_c00155{height:71.896198pt;}
.h20_c00155{height:74.631901pt;}
.h9_c00155{height:77.415599pt;}
.h19_c00155{height:80.151302pt;}
.h21_c00155{height:82.935000pt;}
.h2a_c00155{height:85.718698pt;}
.h18_c00155{height:88.454401pt;}
.h23_c00155{height:91.238099pt;}
.h2c_c00155{height:93.973802pt;}
.h24_c00155{height:96.757500pt;}
.h27_c00155{height:99.541198pt;}
.h8_c00155{height:105.060599pt;}
.h1b_c00155{height:107.796302pt;}
.h2_c00155{height:113.363698pt;}
.h26_c00155{height:116.099401pt;}
.h25_c00155{height:118.883099pt;}
.h28_c00155{height:121.618802pt;}
.h2f_c00155{height:138.225000pt;}
.h2e_c00155{height:248.805000pt;}
.h1_c00155{height:1335.333333pt;}
.h0_c00155{height:1335.546667pt;}
.w0_c00155{width:988.413333pt;}
.w1_c00155{width:988.666667pt;}
.x0_c00155{left:0.000000pt;}
.x13b_c00155{left:7.680000pt;}
.x13a_c00155{left:10.746667pt;}
.x132_c00155{left:16.133333pt;}
.x13c_c00155{left:20.733333pt;}
.x133_c00155{left:26.106667pt;}
.x144_c00155{left:39.173333pt;}
.x145_c00155{left:47.613333pt;}
.x141_c00155{left:49.146667pt;}
.x146_c00155{left:59.906667pt;}
.x142_c00155{left:62.973333pt;}
.x140_c00155{left:73.733333pt;}
.x13e_c00155{left:80.640000pt;}
.x138_c00155{left:87.546667pt;}
.x13f_c00155{left:89.093333pt;}
.x137_c00155{left:91.386667pt;}
.x135_c00155{left:92.933333pt;}
.x134_c00155{left:96.000000pt;}
.x131_c00155{left:100.613333pt;}
.x136_c00155{left:102.906667pt;}
.x139_c00155{left:116.733333pt;}
.x143_c00155{left:142.080000pt;}
.x11a_c00155{left:151.293333pt;}
.x11b_c00155{left:155.906667pt;}
.x123_c00155{left:168.186667pt;}
.x121_c00155{left:170.493333pt;}
.x11c_c00155{left:175.866667pt;}
.xde_c00155{left:184.320000pt;}
.x2f_c00155{left:188.160000pt;}
.xe6_c00155{left:189.693333pt;}
.x108_c00155{left:197.373333pt;}
.x13d_c00155{left:199.680000pt;}
.x88_c00155{left:201.213333pt;}
.xec_c00155{left:202.746667pt;}
.xc8_c00155{left:205.826667pt;}
.xbe_c00155{left:208.133333pt;}
.xae_c00155{left:209.666667pt;}
.x96_c00155{left:211.973333pt;}
.x4f_c00155{left:213.506667pt;}
.x30_c00155{left:215.040000pt;}
.xe2_c00155{left:222.720000pt;}
.x64_c00155{left:227.333333pt;}
.x47_c00155{left:231.173333pt;}
.x1_c00155{left:235.013333pt;}
.x65_c00155{left:236.546667pt;}
.x57_c00155{left:238.080000pt;}
.x8e_c00155{left:240.386667pt;}
.x11d_c00155{left:242.693333pt;}
.xce_c00155{left:244.986667pt;}
.xf3_c00155{left:246.533333pt;}
.x97_c00155{left:248.066667pt;}
.x31_c00155{left:249.600000pt;}
.x115_c00155{left:251.906667pt;}
.x66_c00155{left:254.213333pt;}
.x48_c00155{left:256.506667pt;}
.xa7_c00155{left:258.053333pt;}
.x67_c00155{left:259.586667pt;}
.xb6_c00155{left:261.120000pt;}
.xd3_c00155{left:263.426667pt;}
.x74_c00155{left:266.493333pt;}
.x100_c00155{left:270.333333pt;}
.x32_c00155{left:272.640000pt;}
.xa2_c00155{left:278.013333pt;}
.xc7_c00155{left:279.546667pt;}
.x6d_c00155{left:281.093333pt;}
.xa8_c00155{left:282.626667pt;}
.x49_c00155{left:285.693333pt;}
.xd7_c00155{left:287.226667pt;}
.xb3_c00155{left:288.773333pt;}
.x1a_c00155{left:291.066667pt;}
.x9c_c00155{left:294.906667pt;}
.x2_c00155{left:296.453333pt;}
.x92_c00155{left:298.746667pt;}
.x68_c00155{left:300.293333pt;}
.x101_c00155{left:301.826667pt;}
.x1b_c00155{left:303.360000pt;}
.x75_c00155{left:304.893333pt;}
.x50_c00155{left:306.426667pt;}
.xf4_c00155{left:308.733333pt;}
.xbf_c00155{left:310.266667pt;}
.x37_c00155{left:311.813333pt;}
.x6e_c00155{left:314.880000pt;}
.xaf_c00155{left:318.720000pt;}
.x1c_c00155{left:321.026667pt;}
.x109_c00155{left:324.093333pt;}
.x51_c00155{left:325.626667pt;}
.xd8_c00155{left:327.173333pt;}
.x93_c00155{left:330.240000pt;}
.x3_c00155{left:331.773333pt;}
.x9d_c00155{left:334.080000pt;}
.xb7_c00155{left:338.693333pt;}
.x38_c00155{left:340.986667pt;}
.xcf_c00155{left:343.293333pt;}
.x4_c00155{left:345.600000pt;}
.x89_c00155{left:347.133333pt;}
.x98_c00155{left:349.440000pt;}
.xdb_c00155{left:354.813333pt;}
.x9e_c00155{left:356.346667pt;}
.x7b_c00155{left:359.426667pt;}
.xc0_c00155{left:360.960000pt;}
.xc4_c00155{left:364.800000pt;}
.x7c_c00155{left:368.640000pt;}
.x5_c00155{left:370.173333pt;}
.x76_c00155{left:371.706667pt;}
.x33_c00155{left:374.786667pt;}
.xd4_c00155{left:376.320000pt;}
.x1d_c00155{left:377.853333pt;}
.x6_c00155{left:380.160000pt;}
.x99_c00155{left:383.226667pt;}
.xed_c00155{left:386.306667pt;}
.x1e_c00155{left:387.840000pt;}
.x4a_c00155{left:389.373333pt;}
.x116_c00155{left:390.906667pt;}
.x128_c00155{left:392.453333pt;}
.xc9_c00155{left:394.746667pt;}
.x69_c00155{left:396.293333pt;}
.xe7_c00155{left:397.826667pt;}
.xb4_c00155{left:399.360000pt;}
.x10a_c00155{left:400.893333pt;}
.x1f_c00155{left:403.200000pt;}
.x94_c00155{left:404.733333pt;}
.x8f_c00155{left:409.346667pt;}
.x52_c00155{left:410.880000pt;}
.xf5_c00155{left:413.946667pt;}
.x7_c00155{left:415.493333pt;}
.x34_c00155{left:418.560000pt;}
.x8a_c00155{left:420.093333pt;}
.xa9_c00155{left:422.400000pt;}
.x9f_c00155{left:424.706667pt;}
.xb5_c00155{left:427.013333pt;}
.xa3_c00155{left:433.146667pt;}
.x77_c00155{left:434.693333pt;}
.x8_c00155{left:436.226667pt;}
.x95_c00155{left:437.760000pt;}
.x117_c00155{left:439.293333pt;}
.x12e_c00155{left:441.600000pt;}
.x4b_c00155{left:443.133333pt;}
.x83_c00155{left:445.440000pt;}
.x102_c00155{left:447.746667pt;}
.x58_c00155{left:449.280000pt;}
.x7d_c00155{left:451.586667pt;}
.x9_c00155{left:456.960000pt;}
.x78_c00155{left:460.026667pt;}
.x11e_c00155{left:461.573333pt;}
.x59_c00155{left:463.866667pt;}
.x39_c00155{left:466.173333pt;}
.xf6_c00155{left:467.706667pt;}
.x12f_c00155{left:470.786667pt;}
.x5a_c00155{left:473.093333pt;}
.xa_c00155{left:475.386667pt;}
.xb0_c00155{left:476.933333pt;}
.x20_c00155{left:478.466667pt;}
.x5b_c00155{left:480.000000pt;}
.x53_c00155{left:481.533333pt;}
.x21_c00155{left:486.906667pt;}
.x84_c00155{left:489.213333pt;}
.x130_c00155{left:490.746667pt;}
.x3a_c00155{left:492.293333pt;}
.xaa_c00155{left:496.893333pt;}
.x4c_c00155{left:500.733333pt;}
.x7e_c00155{left:505.346667pt;}
.x6a_c00155{left:508.413333pt;}
.xf7_c00155{left:513.026667pt;}
.xa0_c00155{left:514.560000pt;}
.xb_c00155{left:516.093333pt;}
.xca_c00155{left:518.400000pt;}
.xd9_c00155{left:521.466667pt;}
.xdf_c00155{left:523.013333pt;}
.x5c_c00155{left:524.546667pt;}
.x6f_c00155{left:526.080000pt;}
.xd0_c00155{left:527.613333pt;}
.xb1_c00155{left:529.920000pt;}
.x3b_c00155{left:532.226667pt;}
.x22_c00155{left:533.760000pt;}
.xa4_c00155{left:535.293333pt;}
.x11f_c00155{left:536.826667pt;}
.x5d_c00155{left:539.906667pt;}
.xcb_c00155{left:541.440000pt;}
.x9a_c00155{left:542.973333pt;}
.xab_c00155{left:544.506667pt;}
.xb8_c00155{left:547.586667pt;}
.x8b_c00155{left:549.120000pt;}
.x124_c00155{left:550.653333pt;}
.x3c_c00155{left:552.186667pt;}
.x5e_c00155{left:554.493333pt;}
.xa5_c00155{left:556.800000pt;}
.xe3_c00155{left:559.106667pt;}
.xc_c00155{left:562.173333pt;}
.x79_c00155{left:563.706667pt;}
.x23_c00155{left:565.253333pt;}
.x10b_c00155{left:567.546667pt;}
.xd5_c00155{left:570.626667pt;}
.x3d_c00155{left:572.933333pt;}
.xb9_c00155{left:574.466667pt;}
.x4d_c00155{left:577.533333pt;}
.xc1_c00155{left:579.066667pt;}
.xd_c00155{left:583.680000pt;}
.x7f_c00155{left:585.213333pt;}
.xc2_c00155{left:587.520000pt;}
.x3e_c00155{left:590.586667pt;}
.x85_c00155{left:593.666667pt;}
.x24_c00155{left:595.973333pt;}
.x3f_c00155{left:599.813333pt;}
.xdc_c00155{left:602.106667pt;}
.xe_c00155{left:604.413333pt;}
.xe4_c00155{left:607.493333pt;}
.x5f_c00155{left:609.026667pt;}
.x35_c00155{left:612.866667pt;}
.x70_c00155{left:615.173333pt;}
.x25_c00155{left:617.466667pt;}
.x40_c00155{left:619.773333pt;}
.xd1_c00155{left:621.306667pt;}
.x71_c00155{left:622.853333pt;}
.xf_c00155{left:626.693333pt;}
.x26_c00155{left:628.986667pt;}
.x8c_c00155{left:632.066667pt;}
.x120_c00155{left:633.600000pt;}
.x80_c00155{left:635.906667pt;}
.xe5_c00155{left:638.213333pt;}
.x72_c00155{left:642.053333pt;}
.x27_c00155{left:644.346667pt;}
.x60_c00155{left:646.653333pt;}
.xe8_c00155{left:648.186667pt;}
.x10_c00155{left:650.493333pt;}
.xcc_c00155{left:652.800000pt;}
.x36_c00155{left:654.333333pt;}
.x90_c00155{left:658.946667pt;}
.x6b_c00155{left:661.253333pt;}
.x61_c00155{left:664.320000pt;}
.x41_c00155{left:667.386667pt;}
.x10c_c00155{left:671.226667pt;}
.xc5_c00155{left:673.533333pt;}
.x42_c00155{left:675.066667pt;}
.x54_c00155{left:676.613333pt;}
.xe0_c00155{left:678.146667pt;}
.xf8_c00155{left:679.680000pt;}
.xac_c00155{left:682.746667pt;}
.x28_c00155{left:684.293333pt;}
.xba_c00155{left:686.586667pt;}
.x62_c00155{left:688.893333pt;}
.x81_c00155{left:690.426667pt;}
.x11_c00155{left:693.506667pt;}
.xc6_c00155{left:695.040000pt;}
.xc3_c00155{left:696.573333pt;}
.xf9_c00155{left:700.413333pt;}
.x43_c00155{left:702.720000pt;}
.x55_c00155{left:704.253333pt;}
.x29_c00155{left:706.560000pt;}
.x12_c00155{left:708.093333pt;}
.x44_c00155{left:710.400000pt;}
.x6c_c00155{left:711.933333pt;}
.x2a_c00155{left:713.466667pt;}
.x86_c00155{left:715.773333pt;}
.xd2_c00155{left:718.080000pt;}
.xa6_c00155{left:720.386667pt;}
.x2b_c00155{left:721.920000pt;}
.x13_c00155{left:723.453333pt;}
.x4e_c00155{left:725.760000pt;}
.x9b_c00155{left:730.373333pt;}
.x14_c00155{left:732.666667pt;}
.xcd_c00155{left:734.213333pt;}
.xd6_c00155{left:735.746667pt;}
.x103_c00155{left:738.053333pt;}
.x12a_c00155{left:740.346667pt;}
.xdd_c00155{left:742.653333pt;}
.x15_c00155{left:744.186667pt;}
.x7a_c00155{left:745.733333pt;}
.x118_c00155{left:747.266667pt;}
.x87_c00155{left:750.333333pt;}
.x91_c00155{left:751.866667pt;}
.xda_c00155{left:753.413333pt;}
.x16_c00155{left:754.946667pt;}
.x2c_c00155{left:756.480000pt;}
.x56_c00155{left:758.013333pt;}
.x45_c00155{left:760.320000pt;}
.x17_c00155{left:762.626667pt;}
.x63_c00155{left:765.693333pt;}
.x18_c00155{left:769.533333pt;}
.x8d_c00155{left:772.613333pt;}
.xb2_c00155{left:774.906667pt;}
.x10d_c00155{left:777.213333pt;}
.x19_c00155{left:778.746667pt;}
.x82_c00155{left:780.293333pt;}
.x46_c00155{left:782.586667pt;}
.xe1_c00155{left:784.133333pt;}
.xa1_c00155{left:785.666667pt;}
.xfa_c00155{left:787.200000pt;}
.x73_c00155{left:789.506667pt;}
.xbb_c00155{left:793.346667pt;}
.x122_c00155{left:794.879493pt;}
.x2d_c00155{left:796.413333pt;}
.xbc_c00155{left:798.720000pt;}
.x10e_c00155{left:801.786667pt;}
.xee_c00155{left:803.333333pt;}
.xad_c00155{left:805.626667pt;}
.xbd_c00155{left:807.173333pt;}
.x104_c00155{left:811.773333pt;}
.x2e_c00155{left:815.613333pt;}
.xef_c00155{left:818.693333pt;}
.x10f_c00155{left:825.600000pt;}
.x119_c00155{left:827.906667pt;}
.xe9_c00155{left:830.213333pt;}
.x147_c00155{left:833.280000pt;}
.x12b_c00155{left:834.813333pt;}
.xfb_c00155{left:837.120000pt;}
.x125_c00155{left:840.186667pt;}
.x105_c00155{left:841.733333pt;}
.x110_c00155{left:844.026667pt;}
.x111_c00155{left:847.866667pt;}
.xfc_c00155{left:850.173333pt;}
.x12c_c00155{left:856.320000pt;}
.x106_c00155{left:857.853333pt;}
.xf0_c00155{left:860.160000pt;}
.xfd_c00155{left:870.906667pt;}
.x112_c00155{left:874.746667pt;}
.xea_c00155{left:876.293333pt;}
.x126_c00155{left:878.586667pt;}
.x113_c00155{left:880.893333pt;}
.xeb_c00155{left:883.200000pt;}
.x12d_c00155{left:884.733333pt;}
.xf1_c00155{left:886.266667pt;}
.x107_c00155{left:892.413333pt;}
.xfe_c00155{left:894.720000pt;}
.x129_c00155{left:898.560000pt;}
.x127_c00155{left:900.093333pt;}
.x114_c00155{left:902.400000pt;}
.xf2_c00155{left:906.240000pt;}
.xff_c00155{left:908.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e9641e544913cee98c5d6f2.woff2')format("woff");}.ff1_c00156{font-family:ff1_c00156;line-height:1.109863;font-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_c00156{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00156{transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);}
.m5d_c00156{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);}
.m7f_c00156{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m6e_c00156{transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);}
.m64_c00156{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);}
.m76_c00156{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m23_c00156{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);}
.m74_c00156{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m12_c00156{transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);}
.m60_c00156{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.m5a_c00156{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.mb_c00156{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m6a_c00156{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m6b_c00156{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m61_c00156{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m5c_c00156{transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);}
.m5_c00156{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m3a_c00156{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);}
.m22_c00156{transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);}
.m13_c00156{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m68_c00156{transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);}
.m4d_c00156{transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);}
.m66_c00156{transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);}
.m40_c00156{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);}
.m2b_c00156{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m59_c00156{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m70_c00156{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.m6f_c00156{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m28_c00156{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.mc_c00156{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m45_c00156{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.ma_c00156{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.m4a_c00156{transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);}
.m57_c00156{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);}
.m6d_c00156{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);}
.m4e_c00156{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m43_c00156{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);}
.m2a_c00156{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);}
.m25_c00156{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);}
.m3d_c00156{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_c00156{transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);}
.m4f_c00156{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);}
.m51_c00156{transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);}
.m31_c00156{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.m38_c00156{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m0_c00156{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.mf_c00156{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);}
.m62_c00156{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);}
.m65_c00156{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);}
.m4c_c00156{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);}
.m3e_c00156{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);}
.m63_c00156{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m2e_c00156{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);}
.m58_c00156{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);}
.m5f_c00156{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.m9_c00156{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m55_c00156{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);}
.m50_c00156{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m18_c00156{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);}
.m41_c00156{transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);}
.m30_c00156{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.m19_c00156{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m39_c00156{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);}
.m54_c00156{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m67_c00156{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);}
.m4b_c00156{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);}
.m2f_c00156{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);}
.m33_c00156{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);}
.m5e_c00156{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m53_c00156{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);}
.m49_c00156{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);}
.m35_c00156{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);}
.m24_c00156{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00156{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00156{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00156{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00156{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);}
.m3_c00156{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);}
.m47_c00156{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m36_c00156{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);}
.m3c_c00156{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c00156{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m72_c00156{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);}
.m15_c00156{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00156{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);}
.m1b_c00156{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c00156{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00156{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);}
.m11_c00156{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m48_c00156{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c00156{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m80_c00156{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00156{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m37_c00156{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m71_c00156{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00156{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m42_c00156{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);}
.m20_c00156{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4_c00156{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m32_c00156{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);}
.m6c_c00156{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c00156{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);}
.m10_c00156{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m75_c00156{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);}
.m2c_c00156{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m46_c00156{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);}
.m7c_c00156{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m34_c00156{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m52_c00156{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m56_c00156{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00156{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14_c00156{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00156{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md_c00156{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00156{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m27_c00156{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00156{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);}
.m7b_c00156{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m73_c00156{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m77_c00156{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m69_c00156{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00156{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m44_c00156{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m78_c00156{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);}
.m2_c00156{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m1_c00156{transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00156{transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);}
.m79_c00156{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,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;}
.fse_c00156{font-size:3.456000px;}
.fs15_c00156{font-size:6.000000px;}
.fs1a_c00156{font-size:6.900000px;}
.fs14_c00156{font-size:10.380000px;}
.fs1c_c00156{font-size:13.800000px;}
.fs1f_c00156{font-size:17.280000px;}
.fs19_c00156{font-size:24.180000px;}
.fs1b_c00156{font-size:27.660000px;}
.fs0_c00156{font-size:31.080000px;}
.fs17_c00156{font-size:34.560000px;}
.fs18_c00156{font-size:38.040000px;}
.fsd_c00156{font-size:41.460000px;}
.fsc_c00156{font-size:44.940000px;}
.fs11_c00156{font-size:48.360000px;}
.fsb_c00156{font-size:51.840000px;}
.fs1e_c00156{font-size:55.320000px;}
.fs12_c00156{font-size:58.740000px;}
.fs10_c00156{font-size:62.220000px;}
.fs1_c00156{font-size:65.640000px;}
.fs6_c00156{font-size:69.120000px;}
.fs8_c00156{font-size:72.600000px;}
.fs5_c00156{font-size:76.020000px;}
.fs4_c00156{font-size:79.500000px;}
.fs7_c00156{font-size:82.920000px;}
.fs13_c00156{font-size:86.400000px;}
.fsf_c00156{font-size:89.880000px;}
.fs3_c00156{font-size:93.300000px;}
.fs9_c00156{font-size:96.780000px;}
.fsa_c00156{font-size:100.200000px;}
.fs2_c00156{font-size:103.680000px;}
.fs1d_c00156{font-size:114.060000px;}
.fs16_c00156{font-size:120.960000px;}
.y0_c00156{bottom:0.000000px;}
.y7a_c00156{bottom:1037.670000px;}
.y75_c00156{bottom:1062.720000px;}
.y76_c00156{bottom:1064.445000px;}
.y74_c00156{bottom:1065.315000px;}
.y70_c00156{bottom:1070.490000px;}
.y6f_c00156{bottom:1072.230000px;}
.y71_c00156{bottom:1074.810000px;}
.y73_c00156{bottom:1076.550000px;}
.y72_c00156{bottom:1082.595000px;}
.y6e_c00156{bottom:1083.450000px;}
.y64_c00156{bottom:1084.320000px;}
.y65_c00156{bottom:1086.045000px;}
.y66_c00156{bottom:1086.915000px;}
.y67_c00156{bottom:1088.640000px;}
.y6c_c00156{bottom:1092.090000px;}
.y68_c00156{bottom:1092.960000px;}
.y69_c00156{bottom:1094.685000px;}
.y6d_c00156{bottom:1097.280000px;}
.y6a_c00156{bottom:1098.150000px;}
.y6b_c00156{bottom:1099.875000px;}
.y5e_c00156{bottom:1104.195000px;}
.y60_c00156{bottom:1105.050000px;}
.y62_c00156{bottom:1105.920000px;}
.y5d_c00156{bottom:1106.790000px;}
.y61_c00156{bottom:1107.645000px;}
.y5b_c00156{bottom:1108.515000px;}
.y5c_c00156{bottom:1109.370000px;}
.y5f_c00156{bottom:1111.110000px;}
.y63_c00156{bottom:1112.835000px;}
.y53_c00156{bottom:1127.520000px;}
.y56_c00156{bottom:1128.390000px;}
.y57_c00156{bottom:1129.245000px;}
.y58_c00156{bottom:1130.115000px;}
.y52_c00156{bottom:1130.970000px;}
.y54_c00156{bottom:1133.565000px;}
.y55_c00156{bottom:1134.435000px;}
.y59_c00156{bottom:1137.030000px;}
.y5a_c00156{bottom:1138.755000px;}
.y4b_c00156{bottom:1154.310000px;}
.y4e_c00156{bottom:1155.165000px;}
.y4c_c00156{bottom:1156.035000px;}
.y4d_c00156{bottom:1161.210000px;}
.y50_c00156{bottom:1162.080000px;}
.y4f_c00156{bottom:1163.805000px;}
.y51_c00156{bottom:1165.530000px;}
.y45_c00156{bottom:1177.635000px;}
.y44_c00156{bottom:1180.230000px;}
.y47_c00156{bottom:1184.550000px;}
.y46_c00156{bottom:1185.405000px;}
.y48_c00156{bottom:1187.130000px;}
.y49_c00156{bottom:1188.000000px;}
.y4a_c00156{bottom:1188.870000px;}
.y43_c00156{bottom:1197.510000px;}
.y3c_c00156{bottom:1201.830000px;}
.y3a_c00156{bottom:1202.685000px;}
.y3b_c00156{bottom:1203.555000px;}
.y42_c00156{bottom:1206.150000px;}
.y40_c00156{bottom:1207.005000px;}
.y3d_c00156{bottom:1210.470000px;}
.y3e_c00156{bottom:1211.325000px;}
.y3f_c00156{bottom:1213.050000px;}
.y41_c00156{bottom:1213.920000px;}
.y35_c00156{bottom:1226.880000px;}
.y36_c00156{bottom:1231.200000px;}
.y38_c00156{bottom:1232.925000px;}
.y37_c00156{bottom:1233.795000px;}
.y39_c00156{bottom:1238.970000px;}
.y1_c00156{bottom:1242.435000px;}
.y2b_c00156{bottom:1252.800000px;}
.y2f_c00156{bottom:1254.525000px;}
.y32_c00156{bottom:1256.250000px;}
.y2c_c00156{bottom:1257.120000px;}
.y2d_c00156{bottom:1258.845000px;}
.y2e_c00156{bottom:1260.570000px;}
.y31_c00156{bottom:1261.440000px;}
.y30_c00156{bottom:1263.165000px;}
.y33_c00156{bottom:1264.035000px;}
.y34_c00156{bottom:1267.485000px;}
.y21_c00156{bottom:1276.995000px;}
.y23_c00156{bottom:1277.850000px;}
.y22_c00156{bottom:1279.590000px;}
.y27_c00156{bottom:1281.315000px;}
.y29_c00156{bottom:1282.170000px;}
.y28_c00156{bottom:1283.910000px;}
.y25_c00156{bottom:1286.490000px;}
.y24_c00156{bottom:1287.360000px;}
.y26_c00156{bottom:1288.230000px;}
.y2a_c00156{bottom:1289.085000px;}
.y1d_c00156{bottom:1302.915000px;}
.y1e_c00156{bottom:1304.640000px;}
.y1b_c00156{bottom:1306.365000px;}
.y20_c00156{bottom:1307.235000px;}
.y1c_c00156{bottom:1308.960000px;}
.y1a_c00156{bottom:1309.830000px;}
.y1f_c00156{bottom:1314.150000px;}
.y14_c00156{bottom:1327.965000px;}
.y15_c00156{bottom:1330.560000px;}
.y19_c00156{bottom:1336.605000px;}
.y16_c00156{bottom:1337.475000px;}
.y17_c00156{bottom:1338.330000px;}
.y18_c00156{bottom:1339.200000px;}
.yc_c00156{bottom:1353.885000px;}
.yd_c00156{bottom:1354.755000px;}
.y79_c00156{bottom:1356.480000px;}
.ya_c00156{bottom:1358.205000px;}
.yb_c00156{bottom:1359.930000px;}
.ye_c00156{bottom:1361.670000px;}
.y12_c00156{bottom:1362.525000px;}
.yf_c00156{bottom:1363.395000px;}
.y10_c00156{bottom:1364.250000px;}
.y11_c00156{bottom:1365.120000px;}
.y78_c00156{bottom:1370.310000px;}
.y13_c00156{bottom:1372.035000px;}
.y77_c00156{bottom:1373.760000px;}
.y4_c00156{bottom:1385.850000px;}
.y7_c00156{bottom:1386.720000px;}
.y5_c00156{bottom:1390.170000px;}
.y6_c00156{bottom:1391.910000px;}
.y9_c00156{bottom:1392.765000px;}
.y8_c00156{bottom:1394.490000px;}
.y3_c00156{bottom:1406.595000px;}
.y2_c00156{bottom:1410.915000px;}
.h10_c00156{height:3.110063px;}
.h17_c00156{height:5.399414px;}
.h1c_c00156{height:6.209326px;}
.h16_c00156{height:9.340986px;}
.h1e_c00156{height:12.418652px;}
.h21_c00156{height:15.550313px;}
.h1b_c00156{height:21.759639px;}
.h1d_c00156{height:24.891299px;}
.h2_c00156{height:27.968965px;}
.h19_c00156{height:31.100625px;}
.h1a_c00156{height:34.232285px;}
.hf_c00156{height:37.309951px;}
.he_c00156{height:40.441611px;}
.h13_c00156{height:43.519277px;}
.hd_c00156{height:46.650937px;}
.h20_c00156{height:49.782598px;}
.h14_c00156{height:52.860264px;}
.h12_c00156{height:55.991924px;}
.h3_c00156{height:59.069590px;}
.h8_c00156{height:62.201250px;}
.ha_c00156{height:65.332910px;}
.h7_c00156{height:68.410576px;}
.h6_c00156{height:71.542236px;}
.h9_c00156{height:74.619902px;}
.h15_c00156{height:77.751563px;}
.h11_c00156{height:80.883223px;}
.h5_c00156{height:83.960889px;}
.hb_c00156{height:87.092549px;}
.hc_c00156{height:90.170215px;}
.h4_c00156{height:93.301875px;}
.h1f_c00156{height:102.642861px;}
.h18_c00156{height:108.852188px;}
.h0_c00156{height:1523.235000px;}
.h1_c00156{height:1523.250000px;}
.w0_c00156{width:1090.365000px;}
.w1_c00156{width:1090.500000px;}
.x0_c00156{left:0.000000px;}
.x4_c00156{left:139.965000px;}
.x2_c00156{left:156.390000px;}
.x52_c00156{left:219.449850px;}
.x45_c00156{left:230.685000px;}
.xa_c00156{left:232.410000px;}
.x35_c00156{left:234.150000px;}
.x5b_c00156{left:235.875000px;}
.x74_c00156{left:237.600000px;}
.x63_c00156{left:247.965000px;}
.x64_c00156{left:257.475000px;}
.x2c_c00156{left:262.650000px;}
.x65_c00156{left:267.840000px;}
.x46_c00156{left:271.290000px;}
.x47_c00156{left:275.610000px;}
.xb_c00156{left:284.250000px;}
.x36_c00156{left:286.845000px;}
.x6b_c00156{left:289.440000px;}
.x24_c00156{left:292.890000px;}
.x3_c00156{left:297.210000px;}
.x75_c00156{left:299.805000px;}
.x40_c00156{left:303.270000px;}
.x53_c00156{left:305.850000px;}
.x1b_c00156{left:315.360000px;}
.x2d_c00156{left:320.550000px;}
.x48_c00156{left:325.725000px;}
.x25_c00156{left:332.640000px;}
.x6c_c00156{left:336.960000px;}
.x41_c00156{left:345.600000px;}
.x37_c00156{left:348.195000px;}
.x5_c00156{left:352.515000px;}
.x1c_c00156{left:354.240000px;}
.xc_c00156{left:357.690000px;}
.x49_c00156{left:359.430000px;}
.x76_c00156{left:366.330000px;}
.x5c_c00156{left:369.795000px;}
.x38_c00156{left:374.115000px;}
.x54_c00156{left:382.755000px;}
.x6d_c00156{left:400.890000px;}
.x55_c00156{left:406.080000px;}
.xd_c00156{left:416.445000px;}
.x4a_c00156{left:419.910000px;}
.x77_c00156{left:422.490000px;}
.x2e_c00156{left:425.085000px;}
.x5d_c00156{left:427.680000px;}
.x81_c00156{left:429.405000px;}
.x39_c00156{left:432.000000px;}
.x66_c00156{left:451.875000px;}
.x5e_c00156{left:457.050000px;}
.x6_c00156{left:458.790000px;}
.x6e_c00156{left:461.370000px;}
.x4b_c00156{left:469.155000px;}
.x26_c00156{left:470.880000px;}
.x6f_c00156{left:481.245000px;}
.x2f_c00156{left:485.565000px;}
.x84_c00156{left:493.350000px;}
.xe_c00156{left:501.120000px;}
.x42_c00156{left:503.715000px;}
.x30_c00156{left:506.310000px;}
.x56_c00156{left:510.630000px;}
.x82_c00156{left:519.270000px;}
.x4c_c00156{left:521.850000px;}
.x1d_c00156{left:525.315000px;}
.x3a_c00156{left:532.230000px;}
.x70_c00156{left:533.955000px;}
.xf_c00156{left:536.550000px;}
.x5f_c00156{left:543.450000px;}
.x1e_c00156{left:548.640000px;}
.x7_c00156{left:552.090000px;}
.x67_c00156{left:564.195000px;}
.x57_c00156{left:565.920000px;}
.x31_c00156{left:574.560000px;}
.x27_c00156{left:578.880000px;}
.x32_c00156{left:587.520000px;}
.x10_c00156{left:589.245000px;}
.x1f_c00156{left:590.970000px;}
.x3b_c00156{left:599.610000px;}
.x11_c00156{left:603.930000px;}
.x3c_c00156{left:607.395000px;}
.x78_c00156{left:613.440000px;}
.x12_c00156{left:616.035000px;}
.x8_c00156{left:622.080000px;}
.x83_c00156{left:625.530000px;}
.x20_c00156{left:629.850000px;}
.x4d_c00156{left:631.590000px;}
.x28_c00156{left:641.085000px;}
.x13_c00156{left:645.405000px;}
.x3d_c00156{left:650.595000px;}
.x33_c00156{left:653.190000px;}
.x58_c00156{left:664.410000px;}
.x79_c00156{left:667.875000px;}
.x14_c00156{left:671.325000px;}
.x29_c00156{left:681.690000px;}
.x71_c00156{left:685.155000px;}
.x3e_c00156{left:693.795000px;}
.x7a_c00156{left:695.520000px;}
.x15_c00156{left:703.290000px;}
.x60_c00156{left:707.610000px;}
.x21_c00156{left:711.075000px;}
.x9_c00156{left:712.800000px;}
.x7b_c00156{left:724.035456px;}
.x68_c00156{left:728.355000px;}
.x72_c00156{left:733.530000px;}
.x61_c00156{left:738.720000px;}
.x59_c00156{left:741.315000px;}
.x4e_c00156{left:743.040000px;}
.x16_c00156{left:745.635000px;}
.x7c_c00156{left:749.955000px;}
.x22_c00156{left:753.405000px;}
.x17_c00156{left:763.770000px;}
.x43_c00156{left:774.150000px;}
.x7d_c00156{left:781.920000px;}
.x4f_c00156{left:787.965000px;}
.x5a_c00156{left:789.690000px;}
.x2a_c00156{left:794.010000px;}
.x69_c00156{left:797.475000px;}
.x73_c00156{left:800.925000px;}
.x18_c00156{left:808.710000px;}
.x23_c00156{left:819.075000px;}
.x7e_c00156{left:823.395000px;}
.x44_c00156{left:826.845000px;}
.x19_c00156{left:830.310000px;}
.x2b_c00156{left:832.035000px;}
.x7f_c00156{left:833.760000px;}
.x34_c00156{left:841.530000px;}
.x50_c00156{left:843.270000px;}
.x62_c00156{left:854.490000px;}
.x6a_c00156{left:858.810000px;}
.x80_c00156{left:864.000000px;}
.x1a_c00156{left:869.190000px;}
.x3f_c00156{left:874.365000px;}
.x87_c00156{left:883.875000px;}
.x51_c00156{left:885.600000px;}
.x85_c00156{left:973.732272px;}
.x86_c00156{left:988.410000px;}
.x1_c00156{left:1041.990000px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ws0_c00156{word-spacing:0.000000pt;}
.fse_c00156{font-size:3.072000pt;}
.fs15_c00156{font-size:5.333333pt;}
.fs1a_c00156{font-size:6.133333pt;}
.fs14_c00156{font-size:9.226667pt;}
.fs1c_c00156{font-size:12.266667pt;}
.fs1f_c00156{font-size:15.360000pt;}
.fs19_c00156{font-size:21.493333pt;}
.fs1b_c00156{font-size:24.586667pt;}
.fs0_c00156{font-size:27.626667pt;}
.fs17_c00156{font-size:30.720000pt;}
.fs18_c00156{font-size:33.813333pt;}
.fsd_c00156{font-size:36.853333pt;}
.fsc_c00156{font-size:39.946667pt;}
.fs11_c00156{font-size:42.986667pt;}
.fsb_c00156{font-size:46.080000pt;}
.fs1e_c00156{font-size:49.173333pt;}
.fs12_c00156{font-size:52.213333pt;}
.fs10_c00156{font-size:55.306667pt;}
.fs1_c00156{font-size:58.346667pt;}
.fs6_c00156{font-size:61.440000pt;}
.fs8_c00156{font-size:64.533333pt;}
.fs5_c00156{font-size:67.573333pt;}
.fs4_c00156{font-size:70.666667pt;}
.fs7_c00156{font-size:73.706667pt;}
.fs13_c00156{font-size:76.800000pt;}
.fsf_c00156{font-size:79.893333pt;}
.fs3_c00156{font-size:82.933333pt;}
.fs9_c00156{font-size:86.026667pt;}
.fsa_c00156{font-size:89.066667pt;}
.fs2_c00156{font-size:92.160000pt;}
.fs1d_c00156{font-size:101.386667pt;}
.fs16_c00156{font-size:107.520000pt;}
.y0_c00156{bottom:0.000000pt;}
.y7a_c00156{bottom:922.373333pt;}
.y75_c00156{bottom:944.640000pt;}
.y76_c00156{bottom:946.173333pt;}
.y74_c00156{bottom:946.946667pt;}
.y70_c00156{bottom:951.546667pt;}
.y6f_c00156{bottom:953.093333pt;}
.y71_c00156{bottom:955.386667pt;}
.y73_c00156{bottom:956.933333pt;}
.y72_c00156{bottom:962.306667pt;}
.y6e_c00156{bottom:963.066667pt;}
.y64_c00156{bottom:963.840000pt;}
.y65_c00156{bottom:965.373333pt;}
.y66_c00156{bottom:966.146667pt;}
.y67_c00156{bottom:967.680000pt;}
.y6c_c00156{bottom:970.746667pt;}
.y68_c00156{bottom:971.520000pt;}
.y69_c00156{bottom:973.053333pt;}
.y6d_c00156{bottom:975.360000pt;}
.y6a_c00156{bottom:976.133333pt;}
.y6b_c00156{bottom:977.666667pt;}
.y5e_c00156{bottom:981.506667pt;}
.y60_c00156{bottom:982.266667pt;}
.y62_c00156{bottom:983.040000pt;}
.y5d_c00156{bottom:983.813333pt;}
.y61_c00156{bottom:984.573333pt;}
.y5b_c00156{bottom:985.346667pt;}
.y5c_c00156{bottom:986.106667pt;}
.y5f_c00156{bottom:987.653333pt;}
.y63_c00156{bottom:989.186667pt;}
.y53_c00156{bottom:1002.240000pt;}
.y56_c00156{bottom:1003.013333pt;}
.y57_c00156{bottom:1003.773333pt;}
.y58_c00156{bottom:1004.546667pt;}
.y52_c00156{bottom:1005.306667pt;}
.y54_c00156{bottom:1007.613333pt;}
.y55_c00156{bottom:1008.386667pt;}
.y59_c00156{bottom:1010.693333pt;}
.y5a_c00156{bottom:1012.226667pt;}
.y4b_c00156{bottom:1026.053333pt;}
.y4e_c00156{bottom:1026.813333pt;}
.y4c_c00156{bottom:1027.586667pt;}
.y4d_c00156{bottom:1032.186667pt;}
.y50_c00156{bottom:1032.960000pt;}
.y4f_c00156{bottom:1034.493333pt;}
.y51_c00156{bottom:1036.026667pt;}
.y45_c00156{bottom:1046.786667pt;}
.y44_c00156{bottom:1049.093333pt;}
.y47_c00156{bottom:1052.933333pt;}
.y46_c00156{bottom:1053.693333pt;}
.y48_c00156{bottom:1055.226667pt;}
.y49_c00156{bottom:1056.000000pt;}
.y4a_c00156{bottom:1056.773333pt;}
.y43_c00156{bottom:1064.453333pt;}
.y3c_c00156{bottom:1068.293333pt;}
.y3a_c00156{bottom:1069.053333pt;}
.y3b_c00156{bottom:1069.826667pt;}
.y42_c00156{bottom:1072.133333pt;}
.y40_c00156{bottom:1072.893333pt;}
.y3d_c00156{bottom:1075.973333pt;}
.y3e_c00156{bottom:1076.733333pt;}
.y3f_c00156{bottom:1078.266667pt;}
.y41_c00156{bottom:1079.040000pt;}
.y35_c00156{bottom:1090.560000pt;}
.y36_c00156{bottom:1094.400000pt;}
.y38_c00156{bottom:1095.933333pt;}
.y37_c00156{bottom:1096.706667pt;}
.y39_c00156{bottom:1101.306667pt;}
.y1_c00156{bottom:1104.386667pt;}
.y2b_c00156{bottom:1113.600000pt;}
.y2f_c00156{bottom:1115.133333pt;}
.y32_c00156{bottom:1116.666667pt;}
.y2c_c00156{bottom:1117.440000pt;}
.y2d_c00156{bottom:1118.973333pt;}
.y2e_c00156{bottom:1120.506667pt;}
.y31_c00156{bottom:1121.280000pt;}
.y30_c00156{bottom:1122.813333pt;}
.y33_c00156{bottom:1123.586667pt;}
.y34_c00156{bottom:1126.653333pt;}
.y21_c00156{bottom:1135.106667pt;}
.y23_c00156{bottom:1135.866667pt;}
.y22_c00156{bottom:1137.413333pt;}
.y27_c00156{bottom:1138.946667pt;}
.y29_c00156{bottom:1139.706667pt;}
.y28_c00156{bottom:1141.253333pt;}
.y25_c00156{bottom:1143.546667pt;}
.y24_c00156{bottom:1144.320000pt;}
.y26_c00156{bottom:1145.093333pt;}
.y2a_c00156{bottom:1145.853333pt;}
.y1d_c00156{bottom:1158.146667pt;}
.y1e_c00156{bottom:1159.680000pt;}
.y1b_c00156{bottom:1161.213333pt;}
.y20_c00156{bottom:1161.986667pt;}
.y1c_c00156{bottom:1163.520000pt;}
.y1a_c00156{bottom:1164.293333pt;}
.y1f_c00156{bottom:1168.133333pt;}
.y14_c00156{bottom:1180.413333pt;}
.y15_c00156{bottom:1182.720000pt;}
.y19_c00156{bottom:1188.093333pt;}
.y16_c00156{bottom:1188.866667pt;}
.y17_c00156{bottom:1189.626667pt;}
.y18_c00156{bottom:1190.400000pt;}
.yc_c00156{bottom:1203.453333pt;}
.yd_c00156{bottom:1204.226667pt;}
.y79_c00156{bottom:1205.760000pt;}
.ya_c00156{bottom:1207.293333pt;}
.yb_c00156{bottom:1208.826667pt;}
.ye_c00156{bottom:1210.373333pt;}
.y12_c00156{bottom:1211.133333pt;}
.yf_c00156{bottom:1211.906667pt;}
.y10_c00156{bottom:1212.666667pt;}
.y11_c00156{bottom:1213.440000pt;}
.y78_c00156{bottom:1218.053333pt;}
.y13_c00156{bottom:1219.586667pt;}
.y77_c00156{bottom:1221.120000pt;}
.y4_c00156{bottom:1231.866667pt;}
.y7_c00156{bottom:1232.640000pt;}
.y5_c00156{bottom:1235.706667pt;}
.y6_c00156{bottom:1237.253333pt;}
.y9_c00156{bottom:1238.013333pt;}
.y8_c00156{bottom:1239.546667pt;}
.y3_c00156{bottom:1250.306667pt;}
.y2_c00156{bottom:1254.146667pt;}
.h10_c00156{height:2.764500pt;}
.h17_c00156{height:4.799479pt;}
.h1c_c00156{height:5.519401pt;}
.h16_c00156{height:8.303099pt;}
.h1e_c00156{height:11.038802pt;}
.h21_c00156{height:13.822500pt;}
.h1b_c00156{height:19.341901pt;}
.h1d_c00156{height:22.125599pt;}
.h2_c00156{height:24.861302pt;}
.h19_c00156{height:27.645000pt;}
.h1a_c00156{height:30.428698pt;}
.hf_c00156{height:33.164401pt;}
.he_c00156{height:35.948099pt;}
.h13_c00156{height:38.683802pt;}
.hd_c00156{height:41.467500pt;}
.h20_c00156{height:44.251198pt;}
.h14_c00156{height:46.986901pt;}
.h12_c00156{height:49.770599pt;}
.h3_c00156{height:52.506302pt;}
.h8_c00156{height:55.290000pt;}
.ha_c00156{height:58.073698pt;}
.h7_c00156{height:60.809401pt;}
.h6_c00156{height:63.593099pt;}
.h9_c00156{height:66.328802pt;}
.h15_c00156{height:69.112500pt;}
.h11_c00156{height:71.896198pt;}
.h5_c00156{height:74.631901pt;}
.hb_c00156{height:77.415599pt;}
.hc_c00156{height:80.151302pt;}
.h4_c00156{height:82.935000pt;}
.h1f_c00156{height:91.238099pt;}
.h18_c00156{height:96.757500pt;}
.h0_c00156{height:1353.986667pt;}
.h1_c00156{height:1354.000000pt;}
.w0_c00156{width:969.213333pt;}
.w1_c00156{width:969.333333pt;}
.x0_c00156{left:0.000000pt;}
.x4_c00156{left:124.413333pt;}
.x2_c00156{left:139.013333pt;}
.x52_c00156{left:195.066533pt;}
.x45_c00156{left:205.053333pt;}
.xa_c00156{left:206.586667pt;}
.x35_c00156{left:208.133333pt;}
.x5b_c00156{left:209.666667pt;}
.x74_c00156{left:211.200000pt;}
.x63_c00156{left:220.413333pt;}
.x64_c00156{left:228.866667pt;}
.x2c_c00156{left:233.466667pt;}
.x65_c00156{left:238.080000pt;}
.x46_c00156{left:241.146667pt;}
.x47_c00156{left:244.986667pt;}
.xb_c00156{left:252.666667pt;}
.x36_c00156{left:254.973333pt;}
.x6b_c00156{left:257.280000pt;}
.x24_c00156{left:260.346667pt;}
.x3_c00156{left:264.186667pt;}
.x75_c00156{left:266.493333pt;}
.x40_c00156{left:269.573333pt;}
.x53_c00156{left:271.866667pt;}
.x1b_c00156{left:280.320000pt;}
.x2d_c00156{left:284.933333pt;}
.x48_c00156{left:289.533333pt;}
.x25_c00156{left:295.680000pt;}
.x6c_c00156{left:299.520000pt;}
.x41_c00156{left:307.200000pt;}
.x37_c00156{left:309.506667pt;}
.x5_c00156{left:313.346667pt;}
.x1c_c00156{left:314.880000pt;}
.xc_c00156{left:317.946667pt;}
.x49_c00156{left:319.493333pt;}
.x76_c00156{left:325.626667pt;}
.x5c_c00156{left:328.706667pt;}
.x38_c00156{left:332.546667pt;}
.x54_c00156{left:340.226667pt;}
.x6d_c00156{left:356.346667pt;}
.x55_c00156{left:360.960000pt;}
.xd_c00156{left:370.173333pt;}
.x4a_c00156{left:373.253333pt;}
.x77_c00156{left:375.546667pt;}
.x2e_c00156{left:377.853333pt;}
.x5d_c00156{left:380.160000pt;}
.x81_c00156{left:381.693333pt;}
.x39_c00156{left:384.000000pt;}
.x66_c00156{left:401.666667pt;}
.x5e_c00156{left:406.266667pt;}
.x6_c00156{left:407.813333pt;}
.x6e_c00156{left:410.106667pt;}
.x4b_c00156{left:417.026667pt;}
.x26_c00156{left:418.560000pt;}
.x6f_c00156{left:427.773333pt;}
.x2f_c00156{left:431.613333pt;}
.x84_c00156{left:438.533333pt;}
.xe_c00156{left:445.440000pt;}
.x42_c00156{left:447.746667pt;}
.x30_c00156{left:450.053333pt;}
.x56_c00156{left:453.893333pt;}
.x82_c00156{left:461.573333pt;}
.x4c_c00156{left:463.866667pt;}
.x1d_c00156{left:466.946667pt;}
.x3a_c00156{left:473.093333pt;}
.x70_c00156{left:474.626667pt;}
.xf_c00156{left:476.933333pt;}
.x5f_c00156{left:483.066667pt;}
.x1e_c00156{left:487.680000pt;}
.x7_c00156{left:490.746667pt;}
.x67_c00156{left:501.506667pt;}
.x57_c00156{left:503.040000pt;}
.x31_c00156{left:510.720000pt;}
.x27_c00156{left:514.560000pt;}
.x32_c00156{left:522.240000pt;}
.x10_c00156{left:523.773333pt;}
.x1f_c00156{left:525.306667pt;}
.x3b_c00156{left:532.986667pt;}
.x11_c00156{left:536.826667pt;}
.x3c_c00156{left:539.906667pt;}
.x78_c00156{left:545.280000pt;}
.x12_c00156{left:547.586667pt;}
.x8_c00156{left:552.960000pt;}
.x83_c00156{left:556.026667pt;}
.x20_c00156{left:559.866667pt;}
.x4d_c00156{left:561.413333pt;}
.x28_c00156{left:569.853333pt;}
.x13_c00156{left:573.693333pt;}
.x3d_c00156{left:578.306667pt;}
.x33_c00156{left:580.613333pt;}
.x58_c00156{left:590.586667pt;}
.x79_c00156{left:593.666667pt;}
.x14_c00156{left:596.733333pt;}
.x29_c00156{left:605.946667pt;}
.x71_c00156{left:609.026667pt;}
.x3e_c00156{left:616.706667pt;}
.x7a_c00156{left:618.240000pt;}
.x15_c00156{left:625.146667pt;}
.x60_c00156{left:628.986667pt;}
.x21_c00156{left:632.066667pt;}
.x9_c00156{left:633.600000pt;}
.x7b_c00156{left:643.587072pt;}
.x68_c00156{left:647.426667pt;}
.x72_c00156{left:652.026667pt;}
.x61_c00156{left:656.640000pt;}
.x59_c00156{left:658.946667pt;}
.x4e_c00156{left:660.480000pt;}
.x16_c00156{left:662.786667pt;}
.x7c_c00156{left:666.626667pt;}
.x22_c00156{left:669.693333pt;}
.x17_c00156{left:678.906667pt;}
.x43_c00156{left:688.133333pt;}
.x7d_c00156{left:695.040000pt;}
.x4f_c00156{left:700.413333pt;}
.x5a_c00156{left:701.946667pt;}
.x2a_c00156{left:705.786667pt;}
.x69_c00156{left:708.866667pt;}
.x73_c00156{left:711.933333pt;}
.x18_c00156{left:718.853333pt;}
.x23_c00156{left:728.066667pt;}
.x7e_c00156{left:731.906667pt;}
.x44_c00156{left:734.973333pt;}
.x19_c00156{left:738.053333pt;}
.x2b_c00156{left:739.586667pt;}
.x7f_c00156{left:741.120000pt;}
.x34_c00156{left:748.026667pt;}
.x50_c00156{left:749.573333pt;}
.x62_c00156{left:759.546667pt;}
.x6a_c00156{left:763.386667pt;}
.x80_c00156{left:768.000000pt;}
.x1a_c00156{left:772.613333pt;}
.x3f_c00156{left:777.213333pt;}
.x87_c00156{left:785.666667pt;}
.x51_c00156{left:787.200000pt;}
.x85_c00156{left:865.539797pt;}
.x86_c00156{left:878.586667pt;}
.x1_c00156{left:926.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2595985cb85af3d4d2570fe.woff2')format("woff");}.ff1_c00157{font-family:ff1_c00157;line-height:1.109863;font-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_c00157{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00157{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.m1e_c00157{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m7_c00157{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00157{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m85_c00157{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m6b_c00157{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);}
.m2f_c00157{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m51_c00157{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m4f_c00157{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m3c_c00157{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.m22_c00157{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);}
.m1f_c00157{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m5e_c00157{transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);}
.m39_c00157{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);}
.m7f_c00157{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m9e_c00157{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m95_c00157{transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);}
.m24_c00157{transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);}
.m74_c00157{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);}
.m1a_c00157{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);}
.m3e_c00157{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.m83_c00157{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);}
.m2a_c00157{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);}
.m6e_c00157{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);}
.m8d_c00157{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);}
.m17_c00157{transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);}
.m62_c00157{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);}
.m4e_c00157{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.m4d_c00157{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m9a_c00157{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.m4b_c00157{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);}
.m5c_c00157{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);}
.m8b_c00157{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m7a_c00157{transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);}
.m3b_c00157{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.mf_c00157{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m27_c00157{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m67_c00157{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m33_c00157{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.m7d_c00157{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.m97_c00157{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);}
.m57_c00157{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);}
.m54_c00157{transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);}
.m93_c00157{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.m50_c00157{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m42_c00157{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m49_c00157{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.m5a_c00157{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.m5b_c00157{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);}
.m59_c00157{transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);}
.m66_c00157{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m41_c00157{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m60_c00157{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);}
.m9b_c00157{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m1c_c00157{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m35_c00157{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);}
.m7c_c00157{transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);}
.m96_c00157{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);}
.m82_c00157{transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);}
.m91_c00157{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);}
.m40_c00157{transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);}
.m79_c00157{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);}
.m8f_c00157{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);}
.m99_c00157{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m81_c00157{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);}
.m52_c00157{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.m30_c00157{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);}
.m7b_c00157{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);}
.m61_c00157{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m16_c00157{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);}
.m19_c00157{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00157{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);}
.m26_c00157{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);}
.m3f_c00157{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);}
.m70_c00157{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);}
.m21_c00157{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00157{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00157{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00157{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);}
.m44_c00157{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m88_c00157{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);}
.m7e_c00157{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);}
.m13_c00157{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00157{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);}
.m5_c00157{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00157{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00157{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);}
.m84_c00157{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m34_c00157{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);}
.m29_c00157{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);}
.m87_c00157{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c00157{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m25_c00157{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);}
.m45_c00157{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00157{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00157{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);}
.m56_c00157{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m46_c00157{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m65_c00157{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00157{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m90_c00157{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m86_c00157{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me_c00157{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m94_c00157{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m77_c00157{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc_c00157{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m92_c00157{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00157{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);}
.m4c_c00157{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10_c00157{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m53_c00157{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);}
.m8a_c00157{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m11_c00157{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md_c00157{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00157{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);}
.m68_c00157{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m9_c00157{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00157{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m14_c00157{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);}
.mb_c00157{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m38_c00157{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m37_c00157{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);}
.m58_c00157{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);}
.m12_c00157{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m6_c00157{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00157{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m63_c00157{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);}
.m18_c00157{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m47_c00157{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c00157{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m36_c00157{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);}
.m23_c00157{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m76_c00157{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00157{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00157{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m32_c00157{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m78_c00157{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00157{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m31_c00157{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00157{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00157{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);}
.m98_c00157{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m28_c00157{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00157{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m43_c00157{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m3_c00157{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m15_c00157{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00157{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m89_c00157{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m4_c00157{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m72_c00157{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m1_c00157{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m64_c00157{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00157{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m55_c00157{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m69_c00157{transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);}
.m75_c00157{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m80_c00157{transform:matrix(1.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.457500,0.000000,0.000000,0.250000,0,0);}
.m48_c00157{transform:matrix(1.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.507500,0.000000,0.000000,0.250000,0,0);}
.m71_c00157{transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);}
.m73_c00157{transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);}
.v1_c00157{vertical-align:-3.420000px;}
.v0_c00157{vertical-align:0.000000px;}
.v2_c00157{vertical-align:13.800000px;}
.ls3_c00157{letter-spacing:0.000000px;}
.ls2_c00157{letter-spacing:23.167440px;}
.ls0_c00157{letter-spacing:100.422000px;}
.ls1_c00157{letter-spacing:436.010700px;}
.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;}
}
.ws1_c00157{word-spacing:-12.999840px;}
.ws2_c00157{word-spacing:0.000000px;}
.ws0_c00157{word-spacing:10.450858px;}
.fc0_c00157{color:transparent;}
.fs7_c00157{font-size:3.456000px;}
.fs11_c00157{font-size:6.000000px;}
.fs6_c00157{font-size:6.900000px;}
.fs2_c00157{font-size:10.380000px;}
.fs16_c00157{font-size:13.800000px;}
.fs3_c00157{font-size:17.280000px;}
.fs4_c00157{font-size:20.760000px;}
.fs1_c00157{font-size:24.180000px;}
.fs5_c00157{font-size:27.660000px;}
.fs0_c00157{font-size:34.560000px;}
.fs1c_c00157{font-size:38.040000px;}
.fs1b_c00157{font-size:41.460000px;}
.fs13_c00157{font-size:44.940000px;}
.fs1e_c00157{font-size:48.360000px;}
.fs18_c00157{font-size:51.840000px;}
.fs19_c00157{font-size:55.320000px;}
.fsf_c00157{font-size:58.740000px;}
.fs15_c00157{font-size:62.220000px;}
.fs1a_c00157{font-size:65.640000px;}
.fse_c00157{font-size:69.120000px;}
.fs1d_c00157{font-size:72.600000px;}
.fs10_c00157{font-size:76.020000px;}
.fs17_c00157{font-size:79.500000px;}
.fs14_c00157{font-size:82.920000px;}
.fsc_c00157{font-size:86.400000px;}
.fs8_c00157{font-size:89.880000px;}
.fs12_c00157{font-size:93.300000px;}
.fsa_c00157{font-size:96.780000px;}
.fsb_c00157{font-size:100.200000px;}
.fs9_c00157{font-size:103.680000px;}
.fsd_c00157{font-size:131.340000px;}
.y0_c00157{bottom:0.000000px;}
.yc6_c00157{bottom:337.830000px;}
.yc5_c00157{bottom:343.005000px;}
.yc4_c00157{bottom:577.155000px;}
.yc3_c00157{bottom:578.010000px;}
.yc2_c00157{bottom:582.330000px;}
.yc1_c00157{bottom:586.650000px;}
.ybf_c00157{bottom:606.525000px;}
.yc0_c00157{bottom:607.395000px;}
.ybb_c00157{bottom:620.355000px;}
.yb8_c00157{bottom:621.210000px;}
.yb9_c00157{bottom:622.950000px;}
.yba_c00157{bottom:624.675000px;}
.yb7_c00157{bottom:640.230000px;}
.yb0_c00157{bottom:642.810000px;}
.yb1_c00157{bottom:643.680000px;}
.yb2_c00157{bottom:644.550000px;}
.yb6_c00157{bottom:646.275000px;}
.yb5_c00157{bottom:648.000000px;}
.ybd_c00157{bottom:648.870000px;}
.yb3_c00157{bottom:649.725000px;}
.ybe_c00157{bottom:654.915000px;}
.yb4_c00157{bottom:655.770000px;}
.yaf_c00157{bottom:663.555000px;}
.yad_c00157{bottom:664.410000px;}
.yae_c00157{bottom:665.280000px;}
.yaa_c00157{bottom:667.005000px;}
.yab_c00157{bottom:667.875000px;}
.yac_c00157{bottom:668.730000px;}
.ya6_c00157{bottom:682.560000px;}
.ya3_c00157{bottom:683.430000px;}
.ya7_c00157{bottom:686.010000px;}
.ya4_c00157{bottom:687.750000px;}
.ya1_c00157{bottom:688.605000px;}
.ya2_c00157{bottom:689.475000px;}
.ya5_c00157{bottom:693.795000px;}
.ya8_c00157{bottom:694.650000px;}
.ya9_c00157{bottom:697.245000px;}
.y9e_c00157{bottom:705.885000px;}
.ya0_c00157{bottom:706.755000px;}
.y9b_c00157{bottom:707.610000px;}
.y9c_c00157{bottom:708.480000px;}
.y9d_c00157{bottom:715.395000px;}
.y9f_c00157{bottom:719.715000px;}
.y93_c00157{bottom:723.165000px;}
.y92_c00157{bottom:724.890000px;}
.y98_c00157{bottom:725.760000px;}
.y97_c00157{bottom:727.485000px;}
.y94_c00157{bottom:728.355000px;}
.y91_c00157{bottom:729.210000px;}
.y96_c00157{bottom:730.080000px;}
.y95_c00157{bottom:731.805000px;}
.y99_c00157{bottom:732.675000px;}
.y9a_c00157{bottom:735.270000px;}
.y8f_c00157{bottom:739.590000px;}
.y8d_c00157{bottom:742.170000px;}
.y89_c00157{bottom:743.040000px;}
.y8c_c00157{bottom:743.910000px;}
.y8e_c00157{bottom:746.490000px;}
.y8a_c00157{bottom:747.360000px;}
.y8b_c00157{bottom:749.085000px;}
.y90_c00157{bottom:757.725000px;}
.y86_c00157{bottom:762.915000px;}
.y83_c00157{bottom:763.770000px;}
.y87_c00157{bottom:764.640000px;}
.y85_c00157{bottom:765.510000px;}
.y7f_c00157{bottom:767.235000px;}
.y84_c00157{bottom:768.090000px;}
.y88_c00157{bottom:775.005000px;}
.y80_c00157{bottom:777.600000px;}
.y81_c00157{bottom:780.195000px;}
.y82_c00157{bottom:781.920000px;}
.y7a_c00157{bottom:782.790000px;}
.y7e_c00157{bottom:783.645000px;}
.y7d_c00157{bottom:785.370000px;}
.y7b_c00157{bottom:786.240000px;}
.y79_c00157{bottom:787.965000px;}
.y7c_c00157{bottom:792.285000px;}
.y78_c00157{bottom:802.650000px;}
.y76_c00157{bottom:804.390000px;}
.y77_c00157{bottom:805.245000px;}
.y75_c00157{bottom:806.115000px;}
.y74_c00157{bottom:813.030000px;}
.y72_c00157{bottom:818.205000px;}
.y70_c00157{bottom:819.930000px;}
.y71_c00157{bottom:821.670000px;}
.y6e_c00157{bottom:822.525000px;}
.y73_c00157{bottom:825.120000px;}
.y6c_c00157{bottom:825.990000px;}
.y6f_c00157{bottom:826.845000px;}
.y6d_c00157{bottom:827.715000px;}
.y6a_c00157{bottom:840.675000px;}
.y68_c00157{bottom:841.530000px;}
.y65_c00157{bottom:842.400000px;}
.y64_c00157{bottom:843.270000px;}
.y6b_c00157{bottom:844.125000px;}
.y63_c00157{bottom:844.995000px;}
.y69_c00157{bottom:845.850000px;}
.y66_c00157{bottom:846.720000px;}
.y67_c00157{bottom:847.590000px;}
.y62_c00157{bottom:859.680000px;}
.y5e_c00157{bottom:862.275000px;}
.y5d_c00157{bottom:864.000000px;}
.y61_c00157{bottom:864.870000px;}
.y5f_c00157{bottom:866.595000px;}
.y60_c00157{bottom:867.450000px;}
.y5c_c00157{bottom:868.320000px;}
.y5b_c00157{bottom:880.410000px;}
.y5a_c00157{bottom:882.150000px;}
.y59_c00157{bottom:886.470000px;}
.y55_c00157{bottom:887.325000px;}
.y57_c00157{bottom:888.195000px;}
.y56_c00157{bottom:889.050000px;}
.y54_c00157{bottom:894.240000px;}
.y58_c00157{bottom:897.690000px;}
.y52_c00157{bottom:902.010000px;}
.y53_c00157{bottom:902.880000px;}
.y50_c00157{bottom:903.750000px;}
.y4d_c00157{bottom:905.475000px;}
.y4f_c00157{bottom:906.330000px;}
.y4e_c00157{bottom:907.200000px;}
.y51_c00157{bottom:908.925000px;}
.ybc_c00157{bottom:921.030000px;}
.y49_c00157{bottom:924.480000px;}
.y4b_c00157{bottom:925.350000px;}
.y4c_c00157{bottom:926.205000px;}
.y47_c00157{bottom:927.075000px;}
.y4a_c00157{bottom:927.930000px;}
.y46_c00157{bottom:929.670000px;}
.y48_c00157{bottom:931.395000px;}
.y45_c00157{bottom:940.035000px;}
.y3f_c00157{bottom:944.355000px;}
.y3e_c00157{bottom:945.210000px;}
.y44_c00157{bottom:946.950000px;}
.y43_c00157{bottom:947.805000px;}
.y42_c00157{bottom:948.675000px;}
.y40_c00157{bottom:949.530000px;}
.y41_c00157{bottom:950.400000px;}
.y3c_c00157{bottom:958.170000px;}
.y3a_c00157{bottom:959.910000px;}
.y1c_c00157{bottom:962.490000px;}
.y1d_c00157{bottom:963.360000px;}
.y36_c00157{bottom:965.085000px;}
.y37_c00157{bottom:965.955000px;}
.y3b_c00157{bottom:968.550000px;}
.y38_c00157{bottom:972.000000px;}
.y39_c00157{bottom:976.320000px;}
.y3d_c00157{bottom:979.770000px;}
.y35_c00157{bottom:982.365000px;}
.y2f_c00157{bottom:984.960000px;}
.y33_c00157{bottom:985.830000px;}
.y32_c00157{bottom:987.555000px;}
.y34_c00157{bottom:988.410000px;}
.y30_c00157{bottom:989.280000px;}
.y31_c00157{bottom:990.150000px;}
.y2c_c00157{bottom:1003.110000px;}
.y2d_c00157{bottom:1005.690000px;}
.y2a_c00157{bottom:1008.285000px;}
.y2b_c00157{bottom:1009.155000px;}
.y2e_c00157{bottom:1013.475000px;}
.y29_c00157{bottom:1022.970000px;}
.y27_c00157{bottom:1023.840000px;}
.y28_c00157{bottom:1024.710000px;}
.y25_c00157{bottom:1025.565000px;}
.y22_c00157{bottom:1028.160000px;}
.y26_c00157{bottom:1029.030000px;}
.y1f_c00157{bottom:1029.885000px;}
.y20_c00157{bottom:1030.755000px;}
.y21_c00157{bottom:1031.610000px;}
.y23_c00157{bottom:1033.350000px;}
.y24_c00157{bottom:1037.670000px;}
.y1e_c00157{bottom:1042.845000px;}
.y18_c00157{bottom:1070.490000px;}
.y17_c00157{bottom:1071.360000px;}
.y1a_c00157{bottom:1073.085000px;}
.y19_c00157{bottom:1078.275000px;}
.y1b_c00157{bottom:1082.595000px;}
.y14_c00157{bottom:1099.875000px;}
.y16_c00157{bottom:1100.730000px;}
.y15_c00157{bottom:1103.325000px;}
.y13_c00157{bottom:1104.195000px;}
.y11_c00157{bottom:1105.920000px;}
.y10_c00157{bottom:1106.790000px;}
.y12_c00157{bottom:1107.645000px;}
.yd_c00157{bottom:1125.795000px;}
.yf_c00157{bottom:1133.565000px;}
.yb_c00157{bottom:1135.290000px;}
.ye_c00157{bottom:1136.160000px;}
.yc_c00157{bottom:1137.030000px;}
.ya_c00157{bottom:1138.755000px;}
.y9_c00157{bottom:1166.400000px;}
.y8_c00157{bottom:1168.125000px;}
.y7_c00157{bottom:1234.650000px;}
.y4_c00157{bottom:1334.010000px;}
.y3_c00157{bottom:1334.880000px;}
.y5_c00157{bottom:1395.360000px;}
.y6_c00157{bottom:1396.230000px;}
.y2_c00157{bottom:1401.405000px;}
.y1_c00157{bottom:1410.045000px;}
.h9_c00157{height:3.110063px;}
.h13_c00157{height:5.399414px;}
.h8_c00157{height:6.209326px;}
.h4_c00157{height:9.340986px;}
.h18_c00157{height:12.418652px;}
.h5_c00157{height:15.550313px;}
.h6_c00157{height:18.681973px;}
.h21_c00157{height:20.009326px;}
.h3_c00157{height:21.759639px;}
.h7_c00157{height:24.891299px;}
.h2_c00157{height:31.100625px;}
.h1e_c00157{height:34.232285px;}
.h1d_c00157{height:37.309951px;}
.h15_c00157{height:40.441611px;}
.h20_c00157{height:43.519277px;}
.h1a_c00157{height:46.650937px;}
.h1b_c00157{height:49.782598px;}
.h11_c00157{height:52.860264px;}
.h17_c00157{height:55.991924px;}
.h1c_c00157{height:59.069590px;}
.h10_c00157{height:62.201250px;}
.h1f_c00157{height:65.332910px;}
.h12_c00157{height:68.410576px;}
.h19_c00157{height:71.542236px;}
.h16_c00157{height:74.619902px;}
.he_c00157{height:77.751563px;}
.ha_c00157{height:80.883223px;}
.h14_c00157{height:83.960889px;}
.hc_c00157{height:87.092549px;}
.hd_c00157{height:90.170215px;}
.hb_c00157{height:93.301875px;}
.hf_c00157{height:118.193174px;}
.h1_c00157{height:1502.250000px;}
.h0_c00157{height:1502.490000px;}
.w0_c00157{width:1111.965000px;}
.w1_c00157{width:1112.250000px;}
.x0_c00157{left:0.000000px;}
.xa7_c00157{left:13.830000px;}
.xa8_c00157{left:24.195000px;}
.xa3_c00157{left:54.435000px;}
.x3_c00157{left:62.205000px;}
.x4_c00157{left:71.715000px;}
.x20_c00157{left:76.035000px;}
.x7_c00157{left:166.755000px;}
.x4d_c00157{left:211.680000px;}
.x3d_c00157{left:214.275000px;}
.xa0_c00157{left:216.870000px;}
.x8c_c00157{left:222.045000px;}
.x64_c00157{left:233.280000px;}
.x4e_c00157{left:235.875000px;}
.x53_c00157{left:238.470000px;}
.x44_c00157{left:240.195000px;}
.x9c_c00157{left:242.790000px;}
.xa1_c00157{left:244.515000px;}
.x80_c00157{left:246.240000px;}
.xa_c00157{left:256.605000px;}
.x3e_c00157{left:268.710000px;}
.x21_c00157{left:276.480000px;}
.x65_c00157{left:279.075000px;}
.x22_c00157{left:281.670000px;}
.x94_c00157{left:284.250000px;}
.xb_c00157{left:286.845000px;}
.x84_c00157{left:296.355000px;}
.x23_c00157{left:299.805000px;}
.x5e_c00157{left:304.125000px;}
.x4f_c00157{left:306.720000px;}
.x54_c00157{left:309.315000px;}
.x6f_c00157{left:311.910000px;}
.x45_c00157{left:313.635000px;}
.xa4_c00157{left:320.550000px;}
.x8d_c00157{left:322.275000px;}
.x17_c00157{left:324.000000px;}
.x24_c00157{left:326.595000px;}
.x91_c00157{left:330.915000px;}
.x25_c00157{left:333.510000px;}
.xa6_c00157{left:341.280000px;}
.x50_c00157{left:344.730000px;}
.x70_c00157{left:347.325000px;}
.x3f_c00157{left:349.050000px;}
.x9d_c00157{left:350.790000px;}
.x46_c00157{left:353.370000px;}
.x85_c00157{left:355.965000px;}
.x26_c00157{left:357.690000px;}
.x14_c00157{left:361.155000px;}
.xc_c00157{left:372.390000px;}
.x27_c00157{left:375.840000px;}
.x71_c00157{left:378.435000px;}
.x98_c00157{left:380.160000px;}
.x40_c00157{left:381.885000px;}
.x33_c00157{left:384.480000px;}
.x86_c00157{left:386.205000px;}
.x1a_c00157{left:392.250000px;}
.xd_c00157{left:397.440000px;}
.x8e_c00157{left:406.950000px;}
.xa5_c00157{left:411.270000px;}
.x5f_c00157{left:412.995000px;}
.x28_c00157{left:416.445000px;}
.x9e_c00157{left:425.085000px;}
.xe_c00157{left:427.680000px;}
.x29_c00157{left:432.000000px;}
.x34_c00157{left:434.595000px;}
.x95_c00157{left:437.190000px;}
.x47_c00157{left:440.640000px;}
.x1b_c00157{left:446.685000px;}
.x2a_c00157{left:453.600000px;}
.x60_c00157{left:456.195000px;}
.x15_c00157{left:457.920000px;}
.x55_c00157{left:468.285000px;}
.x8f_c00157{left:475.200000px;}
.x72_c00157{left:478.650000px;}
.xf_c00157{left:482.115000px;}
.x99_c00157{left:486.435000px;}
.x16_c00157{left:488.160000px;}
.x51_c00157{left:491.610000px;}
.x6b_c00157{left:497.670000px;}
.x41_c00157{left:501.120000px;}
.x81_c00157{left:518.400000px;}
.x48_c00157{left:525.315000px;}
.x66_c00157{left:529.635000px;}
.x2b_c00157{left:533.085000px;}
.x5_c00157{left:534.810000px;}
.x8_c00157{left:540.000000px;}
.x2c_c00157{left:541.725000px;}
.x18_c00157{left:545.190000px;}
.x6_c00157{left:547.770000px;}
.x7c_c00157{left:550.365000px;}
.x1c_c00157{left:552.960000px;}
.x56_c00157{left:554.685000px;}
.x42_c00157{left:559.875000px;}
.x73_c00157{left:561.600000px;}
.x57_c00157{left:565.050000px;}
.x87_c00157{left:566.790000px;}
.x35_c00157{left:569.370000px;}
.x2d_c00157{left:571.110000px;}
.x67_c00157{left:587.520000px;}
.x1d_c00157{left:589.245000px;}
.x9_c00157{left:590.970000px;}
.x36_c00157{left:592.710000px;}
.x43_c00157{left:596.160000px;}
.x10_c00157{left:603.930000px;}
.x6c_c00157{left:605.670000px;}
.x2e_c00157{left:612.570000px;}
.x58_c00157{left:615.165000px;}
.x61_c00157{left:618.630000px;}
.x7d_c00157{left:621.210000px;}
.x37_c00157{left:628.125000px;}
.x82_c00157{left:634.170000px;}
.x78_c00157{left:637.635000px;}
.x62_c00157{left:641.085000px;}
.x74_c00157{left:643.680000px;}
.x49_c00157{left:648.870000px;}
.x68_c00157{left:653.190000px;}
.x59_c00157{left:656.640000px;}
.x11_c00157{left:660.090000px;}
.x2f_c00157{left:663.555000px;}
.xa2_c00157{left:670.470000px;}
.x6d_c00157{left:675.645000px;}
.x5a_c00157{left:677.370000px;}
.x79_c00157{left:679.110000px;}
.x38_c00157{left:680.835000px;}
.x1_c00157{left:682.560000px;}
.x2_c00157{left:689.475000px;}
.x30_c00157{left:698.970000px;}
.x7e_c00157{left:701.565000px;}
.x96_c00157{left:706.755000px;}
.x75_c00157{left:708.480000px;}
.x7a_c00157{left:714.525000px;}
.x5b_c00157{left:721.440000px;}
.x12_c00157{left:725.760000px;}
.x63_c00157{left:728.355000px;}
.x39_c00157{left:730.080000px;}
.x9f_c00157{left:732.675000px;}
.x69_c00157{left:734.400000px;}
.x7b_c00157{left:736.125000px;}
.x5c_c00157{left:742.170000px;}
.x92_c00157{left:744.765000px;}
.x9a_c00157{left:746.490000px;}
.x88_c00157{left:749.085000px;}
.x6a_c00157{left:756.000000px;}
.x4a_c00157{left:764.640000px;}
.x76_c00157{left:774.150000px;}
.x31_c00157{left:775.875000px;}
.x19_c00157{left:777.600000px;}
.x13_c00157{left:780.195000px;}
.x89_c00157{left:789.690000px;}
.x7f_c00157{left:796.605000px;}
.x5d_c00157{left:798.330000px;}
.x83_c00157{left:800.070000px;}
.x3a_c00157{left:801.795000px;}
.x8a_c00157{left:811.290000px;}
.x52_c00157{left:814.755000px;}
.x6e_c00157{left:817.350000px;}
.x9b_c00157{left:826.845000px;}
.x32_c00157{left:831.165000px;}
.x3b_c00157{left:833.760000px;}
.x77_c00157{left:838.080000px;}
.x3c_c00157{left:851.040000px;}
.x4b_c00157{left:853.635000px;}
.x90_c00157{left:857.955000px;}
.x1e_c00157{left:859.680000px;}
.x1f_c00157{left:864.870000px;}
.x8b_c00157{left:867.450000px;}
.x93_c00157{left:870.045000px;}
.x4c_c00157{left:876.960000px;}
.x97_c00157{left:879.555000px;}
@media print{
.v1_c00157{vertical-align:-3.040000pt;}
.v0_c00157{vertical-align:0.000000pt;}
.v2_c00157{vertical-align:12.266667pt;}
.ls3_c00157{letter-spacing:0.000000pt;}
.ls2_c00157{letter-spacing:20.593280pt;}
.ls0_c00157{letter-spacing:89.264000pt;}
.ls1_c00157{letter-spacing:387.565067pt;}
.ws1_c00157{word-spacing:-11.555413pt;}
.ws2_c00157{word-spacing:0.000000pt;}
.ws0_c00157{word-spacing:9.289651pt;}
.fs7_c00157{font-size:3.072000pt;}
.fs11_c00157{font-size:5.333333pt;}
.fs6_c00157{font-size:6.133333pt;}
.fs2_c00157{font-size:9.226667pt;}
.fs16_c00157{font-size:12.266667pt;}
.fs3_c00157{font-size:15.360000pt;}
.fs4_c00157{font-size:18.453333pt;}
.fs1_c00157{font-size:21.493333pt;}
.fs5_c00157{font-size:24.586667pt;}
.fs0_c00157{font-size:30.720000pt;}
.fs1c_c00157{font-size:33.813333pt;}
.fs1b_c00157{font-size:36.853333pt;}
.fs13_c00157{font-size:39.946667pt;}
.fs1e_c00157{font-size:42.986667pt;}
.fs18_c00157{font-size:46.080000pt;}
.fs19_c00157{font-size:49.173333pt;}
.fsf_c00157{font-size:52.213333pt;}
.fs15_c00157{font-size:55.306667pt;}
.fs1a_c00157{font-size:58.346667pt;}
.fse_c00157{font-size:61.440000pt;}
.fs1d_c00157{font-size:64.533333pt;}
.fs10_c00157{font-size:67.573333pt;}
.fs17_c00157{font-size:70.666667pt;}
.fs14_c00157{font-size:73.706667pt;}
.fsc_c00157{font-size:76.800000pt;}
.fs8_c00157{font-size:79.893333pt;}
.fs12_c00157{font-size:82.933333pt;}
.fsa_c00157{font-size:86.026667pt;}
.fsb_c00157{font-size:89.066667pt;}
.fs9_c00157{font-size:92.160000pt;}
.fsd_c00157{font-size:116.746667pt;}
.y0_c00157{bottom:0.000000pt;}
.yc6_c00157{bottom:300.293333pt;}
.yc5_c00157{bottom:304.893333pt;}
.yc4_c00157{bottom:513.026667pt;}
.yc3_c00157{bottom:513.786667pt;}
.yc2_c00157{bottom:517.626667pt;}
.yc1_c00157{bottom:521.466667pt;}
.ybf_c00157{bottom:539.133333pt;}
.yc0_c00157{bottom:539.906667pt;}
.ybb_c00157{bottom:551.426667pt;}
.yb8_c00157{bottom:552.186667pt;}
.yb9_c00157{bottom:553.733333pt;}
.yba_c00157{bottom:555.266667pt;}
.yb7_c00157{bottom:569.093333pt;}
.yb0_c00157{bottom:571.386667pt;}
.yb1_c00157{bottom:572.160000pt;}
.yb2_c00157{bottom:572.933333pt;}
.yb6_c00157{bottom:574.466667pt;}
.yb5_c00157{bottom:576.000000pt;}
.ybd_c00157{bottom:576.773333pt;}
.yb3_c00157{bottom:577.533333pt;}
.ybe_c00157{bottom:582.146667pt;}
.yb4_c00157{bottom:582.906667pt;}
.yaf_c00157{bottom:589.826667pt;}
.yad_c00157{bottom:590.586667pt;}
.yae_c00157{bottom:591.360000pt;}
.yaa_c00157{bottom:592.893333pt;}
.yab_c00157{bottom:593.666667pt;}
.yac_c00157{bottom:594.426667pt;}
.ya6_c00157{bottom:606.720000pt;}
.ya3_c00157{bottom:607.493333pt;}
.ya7_c00157{bottom:609.786667pt;}
.ya4_c00157{bottom:611.333333pt;}
.ya1_c00157{bottom:612.093333pt;}
.ya2_c00157{bottom:612.866667pt;}
.ya5_c00157{bottom:616.706667pt;}
.ya8_c00157{bottom:617.466667pt;}
.ya9_c00157{bottom:619.773333pt;}
.y9e_c00157{bottom:627.453333pt;}
.ya0_c00157{bottom:628.226667pt;}
.y9b_c00157{bottom:628.986667pt;}
.y9c_c00157{bottom:629.760000pt;}
.y9d_c00157{bottom:635.906667pt;}
.y9f_c00157{bottom:639.746667pt;}
.y93_c00157{bottom:642.813333pt;}
.y92_c00157{bottom:644.346667pt;}
.y98_c00157{bottom:645.120000pt;}
.y97_c00157{bottom:646.653333pt;}
.y94_c00157{bottom:647.426667pt;}
.y91_c00157{bottom:648.186667pt;}
.y96_c00157{bottom:648.960000pt;}
.y95_c00157{bottom:650.493333pt;}
.y99_c00157{bottom:651.266667pt;}
.y9a_c00157{bottom:653.573333pt;}
.y8f_c00157{bottom:657.413333pt;}
.y8d_c00157{bottom:659.706667pt;}
.y89_c00157{bottom:660.480000pt;}
.y8c_c00157{bottom:661.253333pt;}
.y8e_c00157{bottom:663.546667pt;}
.y8a_c00157{bottom:664.320000pt;}
.y8b_c00157{bottom:665.853333pt;}
.y90_c00157{bottom:673.533333pt;}
.y86_c00157{bottom:678.146667pt;}
.y83_c00157{bottom:678.906667pt;}
.y87_c00157{bottom:679.680000pt;}
.y85_c00157{bottom:680.453333pt;}
.y7f_c00157{bottom:681.986667pt;}
.y84_c00157{bottom:682.746667pt;}
.y88_c00157{bottom:688.893333pt;}
.y80_c00157{bottom:691.200000pt;}
.y81_c00157{bottom:693.506667pt;}
.y82_c00157{bottom:695.040000pt;}
.y7a_c00157{bottom:695.813333pt;}
.y7e_c00157{bottom:696.573333pt;}
.y7d_c00157{bottom:698.106667pt;}
.y7b_c00157{bottom:698.880000pt;}
.y79_c00157{bottom:700.413333pt;}
.y7c_c00157{bottom:704.253333pt;}
.y78_c00157{bottom:713.466667pt;}
.y76_c00157{bottom:715.013333pt;}
.y77_c00157{bottom:715.773333pt;}
.y75_c00157{bottom:716.546667pt;}
.y74_c00157{bottom:722.693333pt;}
.y72_c00157{bottom:727.293333pt;}
.y70_c00157{bottom:728.826667pt;}
.y71_c00157{bottom:730.373333pt;}
.y6e_c00157{bottom:731.133333pt;}
.y73_c00157{bottom:733.440000pt;}
.y6c_c00157{bottom:734.213333pt;}
.y6f_c00157{bottom:734.973333pt;}
.y6d_c00157{bottom:735.746667pt;}
.y6a_c00157{bottom:747.266667pt;}
.y68_c00157{bottom:748.026667pt;}
.y65_c00157{bottom:748.800000pt;}
.y64_c00157{bottom:749.573333pt;}
.y6b_c00157{bottom:750.333333pt;}
.y63_c00157{bottom:751.106667pt;}
.y69_c00157{bottom:751.866667pt;}
.y66_c00157{bottom:752.640000pt;}
.y67_c00157{bottom:753.413333pt;}
.y62_c00157{bottom:764.160000pt;}
.y5e_c00157{bottom:766.466667pt;}
.y5d_c00157{bottom:768.000000pt;}
.y61_c00157{bottom:768.773333pt;}
.y5f_c00157{bottom:770.306667pt;}
.y60_c00157{bottom:771.066667pt;}
.y5c_c00157{bottom:771.840000pt;}
.y5b_c00157{bottom:782.586667pt;}
.y5a_c00157{bottom:784.133333pt;}
.y59_c00157{bottom:787.973333pt;}
.y55_c00157{bottom:788.733333pt;}
.y57_c00157{bottom:789.506667pt;}
.y56_c00157{bottom:790.266667pt;}
.y54_c00157{bottom:794.880000pt;}
.y58_c00157{bottom:797.946667pt;}
.y52_c00157{bottom:801.786667pt;}
.y53_c00157{bottom:802.560000pt;}
.y50_c00157{bottom:803.333333pt;}
.y4d_c00157{bottom:804.866667pt;}
.y4f_c00157{bottom:805.626667pt;}
.y4e_c00157{bottom:806.400000pt;}
.y51_c00157{bottom:807.933333pt;}
.ybc_c00157{bottom:818.693333pt;}
.y49_c00157{bottom:821.760000pt;}
.y4b_c00157{bottom:822.533333pt;}
.y4c_c00157{bottom:823.293333pt;}
.y47_c00157{bottom:824.066667pt;}
.y4a_c00157{bottom:824.826667pt;}
.y46_c00157{bottom:826.373333pt;}
.y48_c00157{bottom:827.906667pt;}
.y45_c00157{bottom:835.586667pt;}
.y3f_c00157{bottom:839.426667pt;}
.y3e_c00157{bottom:840.186667pt;}
.y44_c00157{bottom:841.733333pt;}
.y43_c00157{bottom:842.493333pt;}
.y42_c00157{bottom:843.266667pt;}
.y40_c00157{bottom:844.026667pt;}
.y41_c00157{bottom:844.800000pt;}
.y3c_c00157{bottom:851.706667pt;}
.y3a_c00157{bottom:853.253333pt;}
.y1c_c00157{bottom:855.546667pt;}
.y1d_c00157{bottom:856.320000pt;}
.y36_c00157{bottom:857.853333pt;}
.y37_c00157{bottom:858.626667pt;}
.y3b_c00157{bottom:860.933333pt;}
.y38_c00157{bottom:864.000000pt;}
.y39_c00157{bottom:867.840000pt;}
.y3d_c00157{bottom:870.906667pt;}
.y35_c00157{bottom:873.213333pt;}
.y2f_c00157{bottom:875.520000pt;}
.y33_c00157{bottom:876.293333pt;}
.y32_c00157{bottom:877.826667pt;}
.y34_c00157{bottom:878.586667pt;}
.y30_c00157{bottom:879.360000pt;}
.y31_c00157{bottom:880.133333pt;}
.y2c_c00157{bottom:891.653333pt;}
.y2d_c00157{bottom:893.946667pt;}
.y2a_c00157{bottom:896.253333pt;}
.y2b_c00157{bottom:897.026667pt;}
.y2e_c00157{bottom:900.866667pt;}
.y29_c00157{bottom:909.306667pt;}
.y27_c00157{bottom:910.080000pt;}
.y28_c00157{bottom:910.853333pt;}
.y25_c00157{bottom:911.613333pt;}
.y22_c00157{bottom:913.920000pt;}
.y26_c00157{bottom:914.693333pt;}
.y1f_c00157{bottom:915.453333pt;}
.y20_c00157{bottom:916.226667pt;}
.y21_c00157{bottom:916.986667pt;}
.y23_c00157{bottom:918.533333pt;}
.y24_c00157{bottom:922.373333pt;}
.y1e_c00157{bottom:926.973333pt;}
.y18_c00157{bottom:951.546667pt;}
.y17_c00157{bottom:952.320000pt;}
.y1a_c00157{bottom:953.853333pt;}
.y19_c00157{bottom:958.466667pt;}
.y1b_c00157{bottom:962.306667pt;}
.y14_c00157{bottom:977.666667pt;}
.y16_c00157{bottom:978.426667pt;}
.y15_c00157{bottom:980.733333pt;}
.y13_c00157{bottom:981.506667pt;}
.y11_c00157{bottom:983.040000pt;}
.y10_c00157{bottom:983.813333pt;}
.y12_c00157{bottom:984.573333pt;}
.yd_c00157{bottom:1000.706667pt;}
.yf_c00157{bottom:1007.613333pt;}
.yb_c00157{bottom:1009.146667pt;}
.ye_c00157{bottom:1009.920000pt;}
.yc_c00157{bottom:1010.693333pt;}
.ya_c00157{bottom:1012.226667pt;}
.y9_c00157{bottom:1036.800000pt;}
.y8_c00157{bottom:1038.333333pt;}
.y7_c00157{bottom:1097.466667pt;}
.y4_c00157{bottom:1185.786667pt;}
.y3_c00157{bottom:1186.560000pt;}
.y5_c00157{bottom:1240.320000pt;}
.y6_c00157{bottom:1241.093333pt;}
.y2_c00157{bottom:1245.693333pt;}
.y1_c00157{bottom:1253.373333pt;}
.h9_c00157{height:2.764500pt;}
.h13_c00157{height:4.799479pt;}
.h8_c00157{height:5.519401pt;}
.h4_c00157{height:8.303099pt;}
.h18_c00157{height:11.038802pt;}
.h5_c00157{height:13.822500pt;}
.h6_c00157{height:16.606198pt;}
.h21_c00157{height:17.786068pt;}
.h3_c00157{height:19.341901pt;}
.h7_c00157{height:22.125599pt;}
.h2_c00157{height:27.645000pt;}
.h1e_c00157{height:30.428698pt;}
.h1d_c00157{height:33.164401pt;}
.h15_c00157{height:35.948099pt;}
.h20_c00157{height:38.683802pt;}
.h1a_c00157{height:41.467500pt;}
.h1b_c00157{height:44.251198pt;}
.h11_c00157{height:46.986901pt;}
.h17_c00157{height:49.770599pt;}
.h1c_c00157{height:52.506302pt;}
.h10_c00157{height:55.290000pt;}
.h1f_c00157{height:58.073698pt;}
.h12_c00157{height:60.809401pt;}
.h19_c00157{height:63.593099pt;}
.h16_c00157{height:66.328802pt;}
.he_c00157{height:69.112500pt;}
.ha_c00157{height:71.896198pt;}
.h14_c00157{height:74.631901pt;}
.hc_c00157{height:77.415599pt;}
.hd_c00157{height:80.151302pt;}
.hb_c00157{height:82.935000pt;}
.hf_c00157{height:105.060599pt;}
.h1_c00157{height:1335.333333pt;}
.h0_c00157{height:1335.546667pt;}
.w0_c00157{width:988.413333pt;}
.w1_c00157{width:988.666667pt;}
.x0_c00157{left:0.000000pt;}
.xa7_c00157{left:12.293333pt;}
.xa8_c00157{left:21.506667pt;}
.xa3_c00157{left:48.386667pt;}
.x3_c00157{left:55.293333pt;}
.x4_c00157{left:63.746667pt;}
.x20_c00157{left:67.586667pt;}
.x7_c00157{left:148.226667pt;}
.x4d_c00157{left:188.160000pt;}
.x3d_c00157{left:190.466667pt;}
.xa0_c00157{left:192.773333pt;}
.x8c_c00157{left:197.373333pt;}
.x64_c00157{left:207.360000pt;}
.x4e_c00157{left:209.666667pt;}
.x53_c00157{left:211.973333pt;}
.x44_c00157{left:213.506667pt;}
.x9c_c00157{left:215.813333pt;}
.xa1_c00157{left:217.346667pt;}
.x80_c00157{left:218.880000pt;}
.xa_c00157{left:228.093333pt;}
.x3e_c00157{left:238.853333pt;}
.x21_c00157{left:245.760000pt;}
.x65_c00157{left:248.066667pt;}
.x22_c00157{left:250.373333pt;}
.x94_c00157{left:252.666667pt;}
.xb_c00157{left:254.973333pt;}
.x84_c00157{left:263.426667pt;}
.x23_c00157{left:266.493333pt;}
.x5e_c00157{left:270.333333pt;}
.x4f_c00157{left:272.640000pt;}
.x54_c00157{left:274.946667pt;}
.x6f_c00157{left:277.253333pt;}
.x45_c00157{left:278.786667pt;}
.xa4_c00157{left:284.933333pt;}
.x8d_c00157{left:286.466667pt;}
.x17_c00157{left:288.000000pt;}
.x24_c00157{left:290.306667pt;}
.x91_c00157{left:294.146667pt;}
.x25_c00157{left:296.453333pt;}
.xa6_c00157{left:303.360000pt;}
.x50_c00157{left:306.426667pt;}
.x70_c00157{left:308.733333pt;}
.x3f_c00157{left:310.266667pt;}
.x9d_c00157{left:311.813333pt;}
.x46_c00157{left:314.106667pt;}
.x85_c00157{left:316.413333pt;}
.x26_c00157{left:317.946667pt;}
.x14_c00157{left:321.026667pt;}
.xc_c00157{left:331.013333pt;}
.x27_c00157{left:334.080000pt;}
.x71_c00157{left:336.386667pt;}
.x98_c00157{left:337.920000pt;}
.x40_c00157{left:339.453333pt;}
.x33_c00157{left:341.760000pt;}
.x86_c00157{left:343.293333pt;}
.x1a_c00157{left:348.666667pt;}
.xd_c00157{left:353.280000pt;}
.x8e_c00157{left:361.733333pt;}
.xa5_c00157{left:365.573333pt;}
.x5f_c00157{left:367.106667pt;}
.x28_c00157{left:370.173333pt;}
.x9e_c00157{left:377.853333pt;}
.xe_c00157{left:380.160000pt;}
.x29_c00157{left:384.000000pt;}
.x34_c00157{left:386.306667pt;}
.x95_c00157{left:388.613333pt;}
.x47_c00157{left:391.680000pt;}
.x1b_c00157{left:397.053333pt;}
.x2a_c00157{left:403.200000pt;}
.x60_c00157{left:405.506667pt;}
.x15_c00157{left:407.040000pt;}
.x55_c00157{left:416.253333pt;}
.x8f_c00157{left:422.400000pt;}
.x72_c00157{left:425.466667pt;}
.xf_c00157{left:428.546667pt;}
.x99_c00157{left:432.386667pt;}
.x16_c00157{left:433.920000pt;}
.x51_c00157{left:436.986667pt;}
.x6b_c00157{left:442.373333pt;}
.x41_c00157{left:445.440000pt;}
.x81_c00157{left:460.800000pt;}
.x48_c00157{left:466.946667pt;}
.x66_c00157{left:470.786667pt;}
.x2b_c00157{left:473.853333pt;}
.x5_c00157{left:475.386667pt;}
.x8_c00157{left:480.000000pt;}
.x2c_c00157{left:481.533333pt;}
.x18_c00157{left:484.613333pt;}
.x6_c00157{left:486.906667pt;}
.x7c_c00157{left:489.213333pt;}
.x1c_c00157{left:491.520000pt;}
.x56_c00157{left:493.053333pt;}
.x42_c00157{left:497.666667pt;}
.x73_c00157{left:499.200000pt;}
.x57_c00157{left:502.266667pt;}
.x87_c00157{left:503.813333pt;}
.x35_c00157{left:506.106667pt;}
.x2d_c00157{left:507.653333pt;}
.x67_c00157{left:522.240000pt;}
.x1d_c00157{left:523.773333pt;}
.x9_c00157{left:525.306667pt;}
.x36_c00157{left:526.853333pt;}
.x43_c00157{left:529.920000pt;}
.x10_c00157{left:536.826667pt;}
.x6c_c00157{left:538.373333pt;}
.x2e_c00157{left:544.506667pt;}
.x58_c00157{left:546.813333pt;}
.x61_c00157{left:549.893333pt;}
.x7d_c00157{left:552.186667pt;}
.x37_c00157{left:558.333333pt;}
.x82_c00157{left:563.706667pt;}
.x78_c00157{left:566.786667pt;}
.x62_c00157{left:569.853333pt;}
.x74_c00157{left:572.160000pt;}
.x49_c00157{left:576.773333pt;}
.x68_c00157{left:580.613333pt;}
.x59_c00157{left:583.680000pt;}
.x11_c00157{left:586.746667pt;}
.x2f_c00157{left:589.826667pt;}
.xa2_c00157{left:595.973333pt;}
.x6d_c00157{left:600.573333pt;}
.x5a_c00157{left:602.106667pt;}
.x79_c00157{left:603.653333pt;}
.x38_c00157{left:605.186667pt;}
.x1_c00157{left:606.720000pt;}
.x2_c00157{left:612.866667pt;}
.x30_c00157{left:621.306667pt;}
.x7e_c00157{left:623.613333pt;}
.x96_c00157{left:628.226667pt;}
.x75_c00157{left:629.760000pt;}
.x7a_c00157{left:635.133333pt;}
.x5b_c00157{left:641.280000pt;}
.x12_c00157{left:645.120000pt;}
.x63_c00157{left:647.426667pt;}
.x39_c00157{left:648.960000pt;}
.x9f_c00157{left:651.266667pt;}
.x69_c00157{left:652.800000pt;}
.x7b_c00157{left:654.333333pt;}
.x5c_c00157{left:659.706667pt;}
.x92_c00157{left:662.013333pt;}
.x9a_c00157{left:663.546667pt;}
.x88_c00157{left:665.853333pt;}
.x6a_c00157{left:672.000000pt;}
.x4a_c00157{left:679.680000pt;}
.x76_c00157{left:688.133333pt;}
.x31_c00157{left:689.666667pt;}
.x19_c00157{left:691.200000pt;}
.x13_c00157{left:693.506667pt;}
.x89_c00157{left:701.946667pt;}
.x7f_c00157{left:708.093333pt;}
.x5d_c00157{left:709.626667pt;}
.x83_c00157{left:711.173333pt;}
.x3a_c00157{left:712.706667pt;}
.x8a_c00157{left:721.146667pt;}
.x52_c00157{left:724.226667pt;}
.x6e_c00157{left:726.533333pt;}
.x9b_c00157{left:734.973333pt;}
.x32_c00157{left:738.813333pt;}
.x3b_c00157{left:741.120000pt;}
.x77_c00157{left:744.960000pt;}
.x3c_c00157{left:756.480000pt;}
.x4b_c00157{left:758.786667pt;}
.x90_c00157{left:762.626667pt;}
.x1e_c00157{left:764.160000pt;}
.x1f_c00157{left:768.773333pt;}
.x8b_c00157{left:771.066667pt;}
.x93_c00157{left:773.373333pt;}
.x4c_c00157{left:779.520000pt;}
.x97_c00157{left:781.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1225c50f67044188be6ceddd.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.109863;font-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_c00158{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00158{transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);}
.m20_c00158{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);}
.md_c00158{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m10_c00158{transform:matrix(0.114600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114600,0.000000,0.000000,0.250000,0,0);}
.m46_c00158{transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);}
.m3a_c00158{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00158{transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);}
.ma_c00158{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);}
.m50_c00158{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.m44_c00158{transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);}
.m2e_c00158{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m90_c00158{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m9f_c00158{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m81_c00158{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m8f_c00158{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m54_c00158{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m7c_c00158{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.ma0_c00158{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);}
.m78_c00158{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_c00158{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);}
.m17_c00158{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);}
.m63_c00158{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m27_c00158{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.m94_c00158{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.m49_c00158{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.m48_c00158{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m8_c00158{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.m6a_c00158{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);}
.m31_c00158{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);}
.m36_c00158{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6d_c00158{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);}
.m5e_c00158{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m89_c00158{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);}
.m9b_c00158{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m6c_c00158{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);}
.m93_c00158{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.m7a_c00158{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);}
.m73_c00158{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.m75_c00158{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.mf_c00158{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m53_c00158{transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);}
.m8a_c00158{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);}
.m9_c00158{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);}
.m7d_c00158{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.ma3_c00158{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);}
.m55_c00158{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);}
.m3b_c00158{transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);}
.m9a_c00158{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);}
.m64_c00158{transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);}
.m56_c00158{transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);}
.m28_c00158{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);}
.m3d_c00158{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);}
.m85_c00158{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);}
.m3e_c00158{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.m4f_c00158{transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);}
.m38_c00158{transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);}
.m72_c00158{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.m40_c00158{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);}
.m39_c00158{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);}
.m41_c00158{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);}
.m35_c00158{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);}
.m6e_c00158{transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);}
.m76_c00158{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);}
.m33_c00158{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.m4_c00158{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m97_c00158{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m96_c00158{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);}
.m2c_c00158{transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);}
.m60_c00158{transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);}
.m23_c00158{transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);}
.m26_c00158{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m79_c00158{transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);}
.m57_c00158{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);}
.me_c00158{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);}
.m42_c00158{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);}
.m19_c00158{transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);}
.m8b_c00158{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.m7b_c00158{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);}
.m8e_c00158{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.mb_c00158{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);}
.m1a_c00158{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);}
.m87_c00158{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);}
.m9d_c00158{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);}
.m4a_c00158{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m86_c00158{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);}
.m8d_c00158{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);}
.m8c_c00158{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);}
.m51_c00158{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);}
.m7e_c00158{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00158{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00158{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);}
.m2_c00158{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m67_c00158{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);}
.m80_c00158{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);}
.m2a_c00158{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00158{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00158{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00158{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);}
.m69_c00158{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c00158{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);}
.m29_c00158{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);}
.m13_c00158{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c00158{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00158{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);}
.m12_c00158{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00158{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00158{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);}
.m34_c00158{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m95_c00158{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m37_c00158{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00158{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32_c00158{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m58_c00158{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m43_c00158{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00158{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m47_c00158{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);}
.m24_c00158{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00158{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m98_c00158{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m68_c00158{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);}
.m65_c00158{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00158{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);}
.m3_c00158{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m61_c00158{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m91_c00158{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m88_c00158{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);}
.ma4_c00158{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c00158{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m82_c00158{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m84_c00158{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c00158{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m66_c00158{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00158{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m14_c00158{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);}
.m45_c00158{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00158{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00158{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00158{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m99_c00158{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m71_c00158{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);}
.m5_c00158{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00158{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00158{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m92_c00158{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);}
.m2d_c00158{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mc_c00158{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m62_c00158{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);}
.m21_c00158{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);}
.m74_c00158{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m83_c00158{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00158{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m6_c00158{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00158{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);}
.m0_c00158{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m59_c00158{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m70_c00158{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00158{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00158{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m52_c00158{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00158{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00158{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00158{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00158{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);}
.m4c_c00158{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m30_c00158{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00158{transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);}
.m22_c00158{transform:matrix(3.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.470000,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;}
.fs18_c00158{font-size:3.456000px;}
.fs13_c00158{font-size:6.000000px;}
.fs16_c00158{font-size:6.900000px;}
.fs6_c00158{font-size:10.380000px;}
.fs17_c00158{font-size:13.800000px;}
.fs5_c00158{font-size:17.280000px;}
.fs1a_c00158{font-size:20.760000px;}
.fs1c_c00158{font-size:24.180000px;}
.fs0_c00158{font-size:27.660000px;}
.fs12_c00158{font-size:34.560000px;}
.fsb_c00158{font-size:38.040000px;}
.fs19_c00158{font-size:41.460000px;}
.fs15_c00158{font-size:44.940000px;}
.fs1b_c00158{font-size:48.360000px;}
.fs8_c00158{font-size:51.840000px;}
.fs10_c00158{font-size:55.320000px;}
.fs11_c00158{font-size:58.740000px;}
.fs1_c00158{font-size:62.220000px;}
.fs3_c00158{font-size:65.640000px;}
.fs14_c00158{font-size:69.120000px;}
.fsd_c00158{font-size:72.600000px;}
.fsa_c00158{font-size:76.020000px;}
.fs2_c00158{font-size:79.500000px;}
.fse_c00158{font-size:82.920000px;}
.fs7_c00158{font-size:86.400000px;}
.fs4_c00158{font-size:89.880000px;}
.fsc_c00158{font-size:93.300000px;}
.fs1d_c00158{font-size:96.780000px;}
.fs9_c00158{font-size:100.200000px;}
.fsf_c00158{font-size:124.440000px;}
.fs1e_c00158{font-size:165.900000px;}
.y0_c00158{bottom:0.000000px;}
.y99_c00158{bottom:734.400000px;}
.y98_c00158{bottom:737.850000px;}
.y97_c00158{bottom:755.130000px;}
.y95_c00158{bottom:757.725000px;}
.y94_c00158{bottom:758.595000px;}
.y96_c00158{bottom:759.450000px;}
.y90_c00158{bottom:774.150000px;}
.y93_c00158{bottom:775.005000px;}
.y91_c00158{bottom:778.470000px;}
.y92_c00158{bottom:779.325000px;}
.y8f_c00158{bottom:795.750000px;}
.y8e_c00158{bottom:816.480000px;}
.y8c_c00158{bottom:817.350000px;}
.y8d_c00158{bottom:818.205000px;}
.ycf_c00158{bottom:819.930000px;}
.yce_c00158{bottom:824.250000px;}
.y8b_c00158{bottom:836.355000px;}
.y49_c00158{bottom:851.910000px;}
.y48_c00158{bottom:852.765000px;}
.y47_c00158{bottom:854.490000px;}
.y46_c00158{bottom:857.085000px;}
.y3f_c00158{bottom:872.640000px;}
.y40_c00158{bottom:873.510000px;}
.y41_c00158{bottom:875.235000px;}
.y45_c00158{bottom:876.960000px;}
.y42_c00158{bottom:878.685000px;}
.y43_c00158{bottom:880.410000px;}
.y44_c00158{bottom:889.920000px;}
.y3b_c00158{bottom:891.645000px;}
.y36_c00158{bottom:893.370000px;}
.y37_c00158{bottom:894.240000px;}
.y38_c00158{bottom:895.110000px;}
.y3d_c00158{bottom:896.835000px;}
.y3c_c00158{bottom:897.690000px;}
.y39_c00158{bottom:899.430000px;}
.y3a_c00158{bottom:900.285000px;}
.y3e_c00158{bottom:905.475000px;}
.y35_c00158{bottom:910.650000px;}
.y2c_c00158{bottom:912.390000px;}
.y33_c00158{bottom:913.245000px;}
.y30_c00158{bottom:914.115000px;}
.y2f_c00158{bottom:914.970000px;}
.y32_c00158{bottom:915.840000px;}
.y2d_c00158{bottom:917.565000px;}
.y34_c00158{bottom:918.435000px;}
.y2e_c00158{bottom:919.290000px;}
.y31_c00158{bottom:924.480000px;}
.ycd_c00158{bottom:933.120000px;}
.y28_c00158{bottom:937.440000px;}
.y27_c00158{bottom:938.310000px;}
.y29_c00158{bottom:941.760000px;}
.y2a_c00158{bottom:943.485000px;}
.y2b_c00158{bottom:944.355000px;}
.y21_c00158{bottom:959.040000px;}
.y22_c00158{bottom:959.910000px;}
.y24_c00158{bottom:960.765000px;}
.y23_c00158{bottom:961.635000px;}
.y26_c00158{bottom:973.725000px;}
.y25_c00158{bottom:974.595000px;}
.y1c_c00158{bottom:977.190000px;}
.y1f_c00158{bottom:979.770000px;}
.y1d_c00158{bottom:983.235000px;}
.y1e_c00158{bottom:984.090000px;}
.y20_c00158{bottom:984.960000px;}
.y15_c00158{bottom:995.325000px;}
.y12_c00158{bottom:996.195000px;}
.y13_c00158{bottom:997.050000px;}
.y17_c00158{bottom:997.920000px;}
.y16_c00158{bottom:1000.515000px;}
.y14_c00158{bottom:1001.370000px;}
.y18_c00158{bottom:1003.110000px;}
.y19_c00158{bottom:1007.430000px;}
.y1a_c00158{bottom:1008.285000px;}
.y1b_c00158{bottom:1011.750000px;}
.y11_c00158{bottom:1012.605000px;}
.y7_c00158{bottom:1014.330000px;}
.y8_c00158{bottom:1016.070000px;}
.y9_c00158{bottom:1016.925000px;}
.yb_c00158{bottom:1019.520000px;}
.y10_c00158{bottom:1021.245000px;}
.ya_c00158{bottom:1022.115000px;}
.yc_c00158{bottom:1022.970000px;}
.yd_c00158{bottom:1023.840000px;}
.ye_c00158{bottom:1024.710000px;}
.yf_c00158{bottom:1025.565000px;}
.y89_c00158{bottom:1060.125000px;}
.y8a_c00158{bottom:1060.995000px;}
.ycc_c00158{bottom:1063.590000px;}
.y87_c00158{bottom:1099.005000px;}
.y85_c00158{bottom:1099.875000px;}
.yca_c00158{bottom:1101.600000px;}
.y86_c00158{bottom:1102.470000px;}
.y88_c00158{bottom:1103.325000px;}
.yc9_c00158{bottom:1104.195000px;}
.y80_c00158{bottom:1115.430000px;}
.y82_c00158{bottom:1117.155000px;}
.y83_c00158{bottom:1118.010000px;}
.y84_c00158{bottom:1118.880000px;}
.ycb_c00158{bottom:1120.605000px;}
.y81_c00158{bottom:1123.200000px;}
.yc6_c00158{bottom:1124.925000px;}
.yc7_c00158{bottom:1125.795000px;}
.yc8_c00158{bottom:1126.650000px;}
.y7f_c00158{bottom:1131.840000px;}
.y7b_c00158{bottom:1137.030000px;}
.y7e_c00158{bottom:1138.755000px;}
.yc2_c00158{bottom:1139.610000px;}
.y7c_c00158{bottom:1142.205000px;}
.y7d_c00158{bottom:1143.930000px;}
.yc3_c00158{bottom:1144.800000px;}
.yc4_c00158{bottom:1146.525000px;}
.yc5_c00158{bottom:1147.395000px;}
.y7a_c00158{bottom:1158.630000px;}
.ybf_c00158{bottom:1159.485000px;}
.y77_c00158{bottom:1162.080000px;}
.y78_c00158{bottom:1162.950000px;}
.y79_c00158{bottom:1163.805000px;}
.ybe_c00158{bottom:1164.675000px;}
.yc0_c00158{bottom:1166.400000px;}
.yc1_c00158{bottom:1167.270000px;}
.y73_c00158{bottom:1176.765000px;}
.y74_c00158{bottom:1177.635000px;}
.y76_c00158{bottom:1179.360000px;}
.yba_c00158{bottom:1181.085000px;}
.y75_c00158{bottom:1181.955000px;}
.ybc_c00158{bottom:1182.810000px;}
.yb8_c00158{bottom:1183.680000px;}
.yb9_c00158{bottom:1185.405000px;}
.ybb_c00158{bottom:1187.130000px;}
.ybd_c00158{bottom:1192.320000px;}
.y70_c00158{bottom:1198.365000px;}
.y72_c00158{bottom:1200.090000px;}
.y4b_c00158{bottom:1200.960000px;}
.y71_c00158{bottom:1202.685000px;}
.y4a_c00158{bottom:1203.555000px;}
.yb5_c00158{bottom:1206.150000px;}
.yb6_c00158{bottom:1207.005000px;}
.yb7_c00158{bottom:1207.875000px;}
.y6c_c00158{bottom:1217.370000px;}
.y6b_c00158{bottom:1218.240000px;}
.y6f_c00158{bottom:1220.835000px;}
.yaf_c00158{bottom:1221.690000px;}
.y6d_c00158{bottom:1222.560000px;}
.yb3_c00158{bottom:1223.430000px;}
.yb4_c00158{bottom:1224.285000px;}
.yb0_c00158{bottom:1226.010000px;}
.yb1_c00158{bottom:1226.880000px;}
.yb2_c00158{bottom:1227.750000px;}
.y6e_c00158{bottom:1235.520000px;}
.y6a_c00158{bottom:1240.710000px;}
.y67_c00158{bottom:1241.565000px;}
.y68_c00158{bottom:1242.435000px;}
.yae_c00158{bottom:1243.290000px;}
.yad_c00158{bottom:1246.755000px;}
.yac_c00158{bottom:1247.610000px;}
.y69_c00158{bottom:1257.990000px;}
.y66_c00158{bottom:1258.845000px;}
.y62_c00158{bottom:1261.440000px;}
.y63_c00158{bottom:1263.165000px;}
.y64_c00158{bottom:1264.035000px;}
.ya7_c00158{bottom:1266.630000px;}
.ya8_c00158{bottom:1267.485000px;}
.ya9_c00158{bottom:1268.355000px;}
.yaa_c00158{bottom:1269.210000px;}
.yab_c00158{bottom:1273.530000px;}
.y65_c00158{bottom:1277.850000px;}
.y5d_c00158{bottom:1279.590000px;}
.y5e_c00158{bottom:1280.445000px;}
.y60_c00158{bottom:1283.910000px;}
.y5f_c00158{bottom:1284.765000px;}
.ya6_c00158{bottom:1287.360000px;}
.y61_c00158{bottom:1288.230000px;}
.y5c_c00158{bottom:1301.190000px;}
.ya2_c00158{bottom:1302.045000px;}
.y5b_c00158{bottom:1302.915000px;}
.y59_c00158{bottom:1303.770000px;}
.y5a_c00158{bottom:1304.640000px;}
.ya3_c00158{bottom:1308.090000px;}
.ya5_c00158{bottom:1308.960000px;}
.ya4_c00158{bottom:1309.830000px;}
.y54_c00158{bottom:1321.920000px;}
.y57_c00158{bottom:1322.790000px;}
.y55_c00158{bottom:1324.515000px;}
.y56_c00158{bottom:1325.370000px;}
.ya1_c00158{bottom:1328.835000px;}
.y58_c00158{bottom:1329.690000px;}
.y9f_c00158{bottom:1341.795000px;}
.y52_c00158{bottom:1342.650000px;}
.y51_c00158{bottom:1345.245000px;}
.y53_c00158{bottom:1346.115000px;}
.ya0_c00158{bottom:1348.710000px;}
.y50_c00158{bottom:1357.350000px;}
.y4c_c00158{bottom:1359.075000px;}
.y4d_c00158{bottom:1360.800000px;}
.y9a_c00158{bottom:1362.525000px;}
.y9e_c00158{bottom:1365.120000px;}
.y4e_c00158{bottom:1365.990000px;}
.y4f_c00158{bottom:1366.845000px;}
.y9b_c00158{bottom:1368.570000px;}
.y9c_c00158{bottom:1369.440000px;}
.y9d_c00158{bottom:1370.310000px;}
.y4_c00158{bottom:1391.040000px;}
.y6_c00158{bottom:1392.765000px;}
.y3_c00158{bottom:1396.230000px;}
.y2_c00158{bottom:1397.085000px;}
.y5_c00158{bottom:1402.275000px;}
.y1_c00158{bottom:1443.750000px;}
.h1a_c00158{height:3.110063px;}
.h15_c00158{height:5.399414px;}
.h18_c00158{height:6.209326px;}
.h8_c00158{height:9.340986px;}
.h19_c00158{height:12.418652px;}
.h7_c00158{height:15.550313px;}
.h1c_c00158{height:18.681973px;}
.h1e_c00158{height:21.759639px;}
.h2_c00158{height:24.891299px;}
.h14_c00158{height:31.100625px;}
.hd_c00158{height:34.232285px;}
.h1b_c00158{height:37.309951px;}
.h17_c00158{height:40.441611px;}
.h1d_c00158{height:43.519277px;}
.ha_c00158{height:46.650937px;}
.h12_c00158{height:49.782598px;}
.h13_c00158{height:52.860264px;}
.h3_c00158{height:55.991924px;}
.h5_c00158{height:59.069590px;}
.h16_c00158{height:62.201250px;}
.hf_c00158{height:65.332910px;}
.hc_c00158{height:68.410576px;}
.h4_c00158{height:71.542236px;}
.h10_c00158{height:74.619902px;}
.h9_c00158{height:77.751563px;}
.h6_c00158{height:80.883223px;}
.he_c00158{height:83.960889px;}
.h1f_c00158{height:87.092549px;}
.hb_c00158{height:90.170215px;}
.h11_c00158{height:111.983848px;}
.h20_c00158{height:149.293799px;}
.h0_c00158{height:1523.235000px;}
.h1_c00158{height:1523.250000px;}
.w0_c00158{width:1079.130000px;}
.w1_c00158{width:1079.250000px;}
.x0_c00158{left:0.000000px;}
.x5a_c00158{left:107.130000px;}
.x5b_c00158{left:115.770000px;}
.x77_c00158{left:224.640000px;}
.x1a_c00158{left:230.685000px;}
.x3c_c00158{left:234.150000px;}
.x9_c00158{left:235.875000px;}
.x6c_c00158{left:238.470000px;}
.x1b_c00158{left:245.370000px;}
.x78_c00158{left:247.965000px;}
.x43_c00158{left:249.690000px;}
.x7a_c00158{left:251.430000px;}
.x60_c00158{left:256.605000px;}
.x44_c00158{left:259.200000px;}
.x55_c00158{left:260.925000px;}
.x70_c00158{left:262.650000px;}
.x5c_c00158{left:265.245000px;}
.x6d_c00158{left:267.840000px;}
.x36_c00158{left:277.350000px;}
.x66_c00158{left:280.800000px;}
.xa_c00158{left:289.440000px;}
.x2c_c00158{left:291.165000px;}
.x3d_c00158{left:292.890000px;}
.x80_c00158{left:299.805000px;}
.x79_c00158{left:303.270000px;}
.x2d_c00158{left:304.995000px;}
.xb_c00158{left:306.720000px;}
.x7f_c00158{left:311.910000px;}
.x56_c00158{left:314.490000px;}
.x1c_c00158{left:317.085000px;}
.x5d_c00158{left:321.405000px;}
.x61_c00158{left:323.130000px;}
.x75_c00158{left:325.725000px;}
.x4c_c00158{left:329.190000px;}
.x67_c00158{left:333.510000px;}
.x2e_c00158{left:336.090000px;}
.x62_c00158{left:341.280000px;}
.x2f_c00158{left:351.645000px;}
.x7e_c00158{left:354.240000px;}
.x7b_c00158{left:358.560000px;}
.x45_c00158{left:361.155000px;}
.x37_c00158{left:365.475000px;}
.x30_c00158{left:369.795000px;}
.x73_c00158{left:372.390000px;}
.x5e_c00158{left:377.565000px;}
.x6e_c00158{left:380.160000px;}
.xc_c00158{left:383.610000px;}
.x81_c00158{left:385.350000px;}
.x4d_c00158{left:387.930000px;}
.x6f_c00158{left:389.670000px;}
.x71_c00158{left:393.120000px;}
.x76_c00158{left:395.715000px;}
.x83_c00158{left:400.035000px;}
.x1d_c00158{left:401.760000px;}
.x3e_c00158{left:407.805000px;}
.x69_c00158{left:409.530000px;}
.x7c_c00158{left:414.720000px;}
.xd_c00158{left:417.315000px;}
.x57_c00158{left:419.910000px;}
.x31_c00158{left:422.490000px;}
.x1e_c00158{left:425.085000px;}
.x6a_c00158{left:427.680000px;}
.x32_c00158{left:433.725000px;}
.x74_c00158{left:436.320000px;}
.xe_c00158{left:439.770000px;}
.x33_c00158{left:449.280000px;}
.xf_c00158{left:451.875000px;}
.x64_c00158{left:458.790000px;}
.x58_c00158{left:465.690000px;}
.x46_c00158{left:470.880000px;}
.x85_c00158{left:475.200000px;}
.x59_c00158{left:476.925000px;}
.x84_c00158{left:478.650000px;}
.x5f_c00158{left:485.565000px;}
.x2_c00158{left:488.160000px;}
.x82_c00158{left:489.885000px;}
.x68_c00158{left:491.610000px;}
.x3f_c00158{left:499.395000px;}
.x47_c00158{left:501.990000px;}
.x3_c00158{left:506.310000px;}
.x63_c00158{left:510.630000px;}
.x72_c00158{left:514.080000px;}
.x7d_c00158{left:515.805000px;}
.x1f_c00158{left:519.270000px;}
.x10_c00158{left:520.995000px;}
.x6b_c00158{left:524.445000px;}
.x4_c00158{left:539.130000px;}
.x4e_c00158{left:544.320000px;}
.x65_c00158{left:549.510000px;}
.x4f_c00158{left:554.685000px;}
.xa7_c00158{left:558.150000px;}
.x86_c00158{left:562.470000px;}
.x89_c00158{left:564.195000px;}
.x11_c00158{left:566.790000px;}
.x5_c00158{left:570.240000px;}
.x40_c00158{left:576.285000px;}
.xa1_c00158{left:588.390000px;}
.x50_c00158{left:590.970000px;}
.x26_c00158{left:593.565000px;}
.x20_c00158{left:595.290000px;}
.x87_c00158{left:613.440000px;}
.x12_c00158{left:618.630000px;}
.x6_c00158{left:621.210000px;}
.x48_c00158{left:625.530000px;}
.x96_c00158{left:627.270000px;}
.x8d_c00158{left:634.170000px;}
.x13_c00158{left:636.765000px;}
.xa9_c00158{left:638.490000px;}
.x38_c00158{left:641.085000px;}
.x9c_c00158{left:643.680000px;}
.x8a_c00158{left:647.130000px;}
.x97_c00158{left:651.450000px;}
.xa2_c00158{left:654.915000px;}
.x27_c00158{left:660.960000px;}
.x8e_c00158{left:664.410000px;}
.x93_c00158{left:667.005000px;}
.xa5_c00158{left:672.195000px;}
.x14_c00158{left:673.920000px;}
.x51_c00158{left:681.690000px;}
.x9e_c00158{left:684.285000px;}
.x34_c00158{left:686.880000px;}
.xaa_c00158{left:692.070000px;}
.x98_c00158{left:693.795000px;}
.x15_c00158{left:696.390000px;}
.x39_c00158{left:701.565000px;}
.x52_c00158{left:703.290000px;}
.x21_c00158{left:705.885000px;}
.x8f_c00158{left:708.480000px;}
.x28_c00158{left:710.205000px;}
.x91_c00158{left:726.630000px;}
.x8b_c00158{left:729.210000px;}
.x99_c00158{left:736.125000px;}
.x16_c00158{left:738.720000px;}
.x22_c00158{left:741.315000px;}
.x49_c00158{left:743.040000px;}
.x23_c00158{left:749.085000px;}
.x9b_c00158{left:750.810000px;}
.x95_c00158{left:752.550000px;}
.x9d_c00158{left:761.190000px;}
.x17_c00158{left:763.770000px;}
.x4a_c00158{left:770.685000px;}
.x24_c00158{left:775.005000px;}
.x29_c00158{left:777.600000px;}
.x18_c00158{left:782.790000px;}
.xa6_c00158{left:784.515000px;}
.xa3_c00158{left:787.965000px;}
.x92_c00158{left:794.880000px;}
.x88_c00158{left:798.330000px;}
.x9f_c00158{left:800.925000px;}
.x1_c00158{left:806.115000px;}
.x3a_c00158{left:810.435000px;}
.x8c_c00158{left:819.930000px;}
.x41_c00158{left:824.250000px;}
.x2a_c00158{left:825.990000px;}
.x3b_c00158{left:829.440000px;}
.x35_c00158{left:832.035000px;}
.x53_c00158{left:833.760000px;}
.x25_c00158{left:835.485000px;}
.x94_c00158{left:838.950000px;}
.x54_c00158{left:841.530000px;}
.x42_c00158{left:844.995000px;}
.x19_c00158{left:848.445000px;}
.x90_c00158{left:853.635000px;}
.xa0_c00158{left:855.360000px;}
.x2b_c00158{left:857.955000px;}
.xa4_c00158{left:863.130000px;}
.x9a_c00158{left:876.090000px;}
.x4b_c00158{left:880.410000px;}
.xa8_c00158{left:884.730000px;}
.x7_c00158{left:896.835000px;}
.x8_c00158{left:915.840000px;}
.xab_c00158{left:965.955000px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls0_c00158{letter-spacing:0.000000pt;}
.ws0_c00158{word-spacing:0.000000pt;}
.fs18_c00158{font-size:3.072000pt;}
.fs13_c00158{font-size:5.333333pt;}
.fs16_c00158{font-size:6.133333pt;}
.fs6_c00158{font-size:9.226667pt;}
.fs17_c00158{font-size:12.266667pt;}
.fs5_c00158{font-size:15.360000pt;}
.fs1a_c00158{font-size:18.453333pt;}
.fs1c_c00158{font-size:21.493333pt;}
.fs0_c00158{font-size:24.586667pt;}
.fs12_c00158{font-size:30.720000pt;}
.fsb_c00158{font-size:33.813333pt;}
.fs19_c00158{font-size:36.853333pt;}
.fs15_c00158{font-size:39.946667pt;}
.fs1b_c00158{font-size:42.986667pt;}
.fs8_c00158{font-size:46.080000pt;}
.fs10_c00158{font-size:49.173333pt;}
.fs11_c00158{font-size:52.213333pt;}
.fs1_c00158{font-size:55.306667pt;}
.fs3_c00158{font-size:58.346667pt;}
.fs14_c00158{font-size:61.440000pt;}
.fsd_c00158{font-size:64.533333pt;}
.fsa_c00158{font-size:67.573333pt;}
.fs2_c00158{font-size:70.666667pt;}
.fse_c00158{font-size:73.706667pt;}
.fs7_c00158{font-size:76.800000pt;}
.fs4_c00158{font-size:79.893333pt;}
.fsc_c00158{font-size:82.933333pt;}
.fs1d_c00158{font-size:86.026667pt;}
.fs9_c00158{font-size:89.066667pt;}
.fsf_c00158{font-size:110.613333pt;}
.fs1e_c00158{font-size:147.466667pt;}
.y0_c00158{bottom:0.000000pt;}
.y99_c00158{bottom:652.800000pt;}
.y98_c00158{bottom:655.866667pt;}
.y97_c00158{bottom:671.226667pt;}
.y95_c00158{bottom:673.533333pt;}
.y94_c00158{bottom:674.306667pt;}
.y96_c00158{bottom:675.066667pt;}
.y90_c00158{bottom:688.133333pt;}
.y93_c00158{bottom:688.893333pt;}
.y91_c00158{bottom:691.973333pt;}
.y92_c00158{bottom:692.733333pt;}
.y8f_c00158{bottom:707.333333pt;}
.y8e_c00158{bottom:725.760000pt;}
.y8c_c00158{bottom:726.533333pt;}
.y8d_c00158{bottom:727.293333pt;}
.ycf_c00158{bottom:728.826667pt;}
.yce_c00158{bottom:732.666667pt;}
.y8b_c00158{bottom:743.426667pt;}
.y49_c00158{bottom:757.253333pt;}
.y48_c00158{bottom:758.013333pt;}
.y47_c00158{bottom:759.546667pt;}
.y46_c00158{bottom:761.853333pt;}
.y3f_c00158{bottom:775.680000pt;}
.y40_c00158{bottom:776.453333pt;}
.y41_c00158{bottom:777.986667pt;}
.y45_c00158{bottom:779.520000pt;}
.y42_c00158{bottom:781.053333pt;}
.y43_c00158{bottom:782.586667pt;}
.y44_c00158{bottom:791.040000pt;}
.y3b_c00158{bottom:792.573333pt;}
.y36_c00158{bottom:794.106667pt;}
.y37_c00158{bottom:794.880000pt;}
.y38_c00158{bottom:795.653333pt;}
.y3d_c00158{bottom:797.186667pt;}
.y3c_c00158{bottom:797.946667pt;}
.y39_c00158{bottom:799.493333pt;}
.y3a_c00158{bottom:800.253333pt;}
.y3e_c00158{bottom:804.866667pt;}
.y35_c00158{bottom:809.466667pt;}
.y2c_c00158{bottom:811.013333pt;}
.y33_c00158{bottom:811.773333pt;}
.y30_c00158{bottom:812.546667pt;}
.y2f_c00158{bottom:813.306667pt;}
.y32_c00158{bottom:814.080000pt;}
.y2d_c00158{bottom:815.613333pt;}
.y34_c00158{bottom:816.386667pt;}
.y2e_c00158{bottom:817.146667pt;}
.y31_c00158{bottom:821.760000pt;}
.ycd_c00158{bottom:829.440000pt;}
.y28_c00158{bottom:833.280000pt;}
.y27_c00158{bottom:834.053333pt;}
.y29_c00158{bottom:837.120000pt;}
.y2a_c00158{bottom:838.653333pt;}
.y2b_c00158{bottom:839.426667pt;}
.y21_c00158{bottom:852.480000pt;}
.y22_c00158{bottom:853.253333pt;}
.y24_c00158{bottom:854.013333pt;}
.y23_c00158{bottom:854.786667pt;}
.y26_c00158{bottom:865.533333pt;}
.y25_c00158{bottom:866.306667pt;}
.y1c_c00158{bottom:868.613333pt;}
.y1f_c00158{bottom:870.906667pt;}
.y1d_c00158{bottom:873.986667pt;}
.y1e_c00158{bottom:874.746667pt;}
.y20_c00158{bottom:875.520000pt;}
.y15_c00158{bottom:884.733333pt;}
.y12_c00158{bottom:885.506667pt;}
.y13_c00158{bottom:886.266667pt;}
.y17_c00158{bottom:887.040000pt;}
.y16_c00158{bottom:889.346667pt;}
.y14_c00158{bottom:890.106667pt;}
.y18_c00158{bottom:891.653333pt;}
.y19_c00158{bottom:895.493333pt;}
.y1a_c00158{bottom:896.253333pt;}
.y1b_c00158{bottom:899.333333pt;}
.y11_c00158{bottom:900.093333pt;}
.y7_c00158{bottom:901.626667pt;}
.y8_c00158{bottom:903.173333pt;}
.y9_c00158{bottom:903.933333pt;}
.yb_c00158{bottom:906.240000pt;}
.y10_c00158{bottom:907.773333pt;}
.ya_c00158{bottom:908.546667pt;}
.yc_c00158{bottom:909.306667pt;}
.yd_c00158{bottom:910.080000pt;}
.ye_c00158{bottom:910.853333pt;}
.yf_c00158{bottom:911.613333pt;}
.y89_c00158{bottom:942.333333pt;}
.y8a_c00158{bottom:943.106667pt;}
.ycc_c00158{bottom:945.413333pt;}
.y87_c00158{bottom:976.893333pt;}
.y85_c00158{bottom:977.666667pt;}
.yca_c00158{bottom:979.200000pt;}
.y86_c00158{bottom:979.973333pt;}
.y88_c00158{bottom:980.733333pt;}
.yc9_c00158{bottom:981.506667pt;}
.y80_c00158{bottom:991.493333pt;}
.y82_c00158{bottom:993.026667pt;}
.y83_c00158{bottom:993.786667pt;}
.y84_c00158{bottom:994.560000pt;}
.ycb_c00158{bottom:996.093333pt;}
.y81_c00158{bottom:998.400000pt;}
.yc6_c00158{bottom:999.933333pt;}
.yc7_c00158{bottom:1000.706667pt;}
.yc8_c00158{bottom:1001.466667pt;}
.y7f_c00158{bottom:1006.080000pt;}
.y7b_c00158{bottom:1010.693333pt;}
.y7e_c00158{bottom:1012.226667pt;}
.yc2_c00158{bottom:1012.986667pt;}
.y7c_c00158{bottom:1015.293333pt;}
.y7d_c00158{bottom:1016.826667pt;}
.yc3_c00158{bottom:1017.600000pt;}
.yc4_c00158{bottom:1019.133333pt;}
.yc5_c00158{bottom:1019.906667pt;}
.y7a_c00158{bottom:1029.893333pt;}
.ybf_c00158{bottom:1030.653333pt;}
.y77_c00158{bottom:1032.960000pt;}
.y78_c00158{bottom:1033.733333pt;}
.y79_c00158{bottom:1034.493333pt;}
.ybe_c00158{bottom:1035.266667pt;}
.yc0_c00158{bottom:1036.800000pt;}
.yc1_c00158{bottom:1037.573333pt;}
.y73_c00158{bottom:1046.013333pt;}
.y74_c00158{bottom:1046.786667pt;}
.y76_c00158{bottom:1048.320000pt;}
.yba_c00158{bottom:1049.853333pt;}
.y75_c00158{bottom:1050.626667pt;}
.ybc_c00158{bottom:1051.386667pt;}
.yb8_c00158{bottom:1052.160000pt;}
.yb9_c00158{bottom:1053.693333pt;}
.ybb_c00158{bottom:1055.226667pt;}
.ybd_c00158{bottom:1059.840000pt;}
.y70_c00158{bottom:1065.213333pt;}
.y72_c00158{bottom:1066.746667pt;}
.y4b_c00158{bottom:1067.520000pt;}
.y71_c00158{bottom:1069.053333pt;}
.y4a_c00158{bottom:1069.826667pt;}
.yb5_c00158{bottom:1072.133333pt;}
.yb6_c00158{bottom:1072.893333pt;}
.yb7_c00158{bottom:1073.666667pt;}
.y6c_c00158{bottom:1082.106667pt;}
.y6b_c00158{bottom:1082.880000pt;}
.y6f_c00158{bottom:1085.186667pt;}
.yaf_c00158{bottom:1085.946667pt;}
.y6d_c00158{bottom:1086.720000pt;}
.yb3_c00158{bottom:1087.493333pt;}
.yb4_c00158{bottom:1088.253333pt;}
.yb0_c00158{bottom:1089.786667pt;}
.yb1_c00158{bottom:1090.560000pt;}
.yb2_c00158{bottom:1091.333333pt;}
.y6e_c00158{bottom:1098.240000pt;}
.y6a_c00158{bottom:1102.853333pt;}
.y67_c00158{bottom:1103.613333pt;}
.y68_c00158{bottom:1104.386667pt;}
.yae_c00158{bottom:1105.146667pt;}
.yad_c00158{bottom:1108.226667pt;}
.yac_c00158{bottom:1108.986667pt;}
.y69_c00158{bottom:1118.213333pt;}
.y66_c00158{bottom:1118.973333pt;}
.y62_c00158{bottom:1121.280000pt;}
.y63_c00158{bottom:1122.813333pt;}
.y64_c00158{bottom:1123.586667pt;}
.ya7_c00158{bottom:1125.893333pt;}
.ya8_c00158{bottom:1126.653333pt;}
.ya9_c00158{bottom:1127.426667pt;}
.yaa_c00158{bottom:1128.186667pt;}
.yab_c00158{bottom:1132.026667pt;}
.y65_c00158{bottom:1135.866667pt;}
.y5d_c00158{bottom:1137.413333pt;}
.y5e_c00158{bottom:1138.173333pt;}
.y60_c00158{bottom:1141.253333pt;}
.y5f_c00158{bottom:1142.013333pt;}
.ya6_c00158{bottom:1144.320000pt;}
.y61_c00158{bottom:1145.093333pt;}
.y5c_c00158{bottom:1156.613333pt;}
.ya2_c00158{bottom:1157.373333pt;}
.y5b_c00158{bottom:1158.146667pt;}
.y59_c00158{bottom:1158.906667pt;}
.y5a_c00158{bottom:1159.680000pt;}
.ya3_c00158{bottom:1162.746667pt;}
.ya5_c00158{bottom:1163.520000pt;}
.ya4_c00158{bottom:1164.293333pt;}
.y54_c00158{bottom:1175.040000pt;}
.y57_c00158{bottom:1175.813333pt;}
.y55_c00158{bottom:1177.346667pt;}
.y56_c00158{bottom:1178.106667pt;}
.ya1_c00158{bottom:1181.186667pt;}
.y58_c00158{bottom:1181.946667pt;}
.y9f_c00158{bottom:1192.706667pt;}
.y52_c00158{bottom:1193.466667pt;}
.y51_c00158{bottom:1195.773333pt;}
.y53_c00158{bottom:1196.546667pt;}
.ya0_c00158{bottom:1198.853333pt;}
.y50_c00158{bottom:1206.533333pt;}
.y4c_c00158{bottom:1208.066667pt;}
.y4d_c00158{bottom:1209.600000pt;}
.y9a_c00158{bottom:1211.133333pt;}
.y9e_c00158{bottom:1213.440000pt;}
.y4e_c00158{bottom:1214.213333pt;}
.y4f_c00158{bottom:1214.973333pt;}
.y9b_c00158{bottom:1216.506667pt;}
.y9c_c00158{bottom:1217.280000pt;}
.y9d_c00158{bottom:1218.053333pt;}
.y4_c00158{bottom:1236.480000pt;}
.y6_c00158{bottom:1238.013333pt;}
.y3_c00158{bottom:1241.093333pt;}
.y2_c00158{bottom:1241.853333pt;}
.y5_c00158{bottom:1246.466667pt;}
.y1_c00158{bottom:1283.333333pt;}
.h1a_c00158{height:2.764500pt;}
.h15_c00158{height:4.799479pt;}
.h18_c00158{height:5.519401pt;}
.h8_c00158{height:8.303099pt;}
.h19_c00158{height:11.038802pt;}
.h7_c00158{height:13.822500pt;}
.h1c_c00158{height:16.606198pt;}
.h1e_c00158{height:19.341901pt;}
.h2_c00158{height:22.125599pt;}
.h14_c00158{height:27.645000pt;}
.hd_c00158{height:30.428698pt;}
.h1b_c00158{height:33.164401pt;}
.h17_c00158{height:35.948099pt;}
.h1d_c00158{height:38.683802pt;}
.ha_c00158{height:41.467500pt;}
.h12_c00158{height:44.251198pt;}
.h13_c00158{height:46.986901pt;}
.h3_c00158{height:49.770599pt;}
.h5_c00158{height:52.506302pt;}
.h16_c00158{height:55.290000pt;}
.hf_c00158{height:58.073698pt;}
.hc_c00158{height:60.809401pt;}
.h4_c00158{height:63.593099pt;}
.h10_c00158{height:66.328802pt;}
.h9_c00158{height:69.112500pt;}
.h6_c00158{height:71.896198pt;}
.he_c00158{height:74.631901pt;}
.h1f_c00158{height:77.415599pt;}
.hb_c00158{height:80.151302pt;}
.h11_c00158{height:99.541198pt;}
.h20_c00158{height:132.705599pt;}
.h0_c00158{height:1353.986667pt;}
.h1_c00158{height:1354.000000pt;}
.w0_c00158{width:959.226667pt;}
.w1_c00158{width:959.333333pt;}
.x0_c00158{left:0.000000pt;}
.x5a_c00158{left:95.226667pt;}
.x5b_c00158{left:102.906667pt;}
.x77_c00158{left:199.680000pt;}
.x1a_c00158{left:205.053333pt;}
.x3c_c00158{left:208.133333pt;}
.x9_c00158{left:209.666667pt;}
.x6c_c00158{left:211.973333pt;}
.x1b_c00158{left:218.106667pt;}
.x78_c00158{left:220.413333pt;}
.x43_c00158{left:221.946667pt;}
.x7a_c00158{left:223.493333pt;}
.x60_c00158{left:228.093333pt;}
.x44_c00158{left:230.400000pt;}
.x55_c00158{left:231.933333pt;}
.x70_c00158{left:233.466667pt;}
.x5c_c00158{left:235.773333pt;}
.x6d_c00158{left:238.080000pt;}
.x36_c00158{left:246.533333pt;}
.x66_c00158{left:249.600000pt;}
.xa_c00158{left:257.280000pt;}
.x2c_c00158{left:258.813333pt;}
.x3d_c00158{left:260.346667pt;}
.x80_c00158{left:266.493333pt;}
.x79_c00158{left:269.573333pt;}
.x2d_c00158{left:271.106667pt;}
.xb_c00158{left:272.640000pt;}
.x7f_c00158{left:277.253333pt;}
.x56_c00158{left:279.546667pt;}
.x1c_c00158{left:281.853333pt;}
.x5d_c00158{left:285.693333pt;}
.x61_c00158{left:287.226667pt;}
.x75_c00158{left:289.533333pt;}
.x4c_c00158{left:292.613333pt;}
.x67_c00158{left:296.453333pt;}
.x2e_c00158{left:298.746667pt;}
.x62_c00158{left:303.360000pt;}
.x2f_c00158{left:312.573333pt;}
.x7e_c00158{left:314.880000pt;}
.x7b_c00158{left:318.720000pt;}
.x45_c00158{left:321.026667pt;}
.x37_c00158{left:324.866667pt;}
.x30_c00158{left:328.706667pt;}
.x73_c00158{left:331.013333pt;}
.x5e_c00158{left:335.613333pt;}
.x6e_c00158{left:337.920000pt;}
.xc_c00158{left:340.986667pt;}
.x81_c00158{left:342.533333pt;}
.x4d_c00158{left:344.826667pt;}
.x6f_c00158{left:346.373333pt;}
.x71_c00158{left:349.440000pt;}
.x76_c00158{left:351.746667pt;}
.x83_c00158{left:355.586667pt;}
.x1d_c00158{left:357.120000pt;}
.x3e_c00158{left:362.493333pt;}
.x69_c00158{left:364.026667pt;}
.x7c_c00158{left:368.640000pt;}
.xd_c00158{left:370.946667pt;}
.x57_c00158{left:373.253333pt;}
.x31_c00158{left:375.546667pt;}
.x1e_c00158{left:377.853333pt;}
.x6a_c00158{left:380.160000pt;}
.x32_c00158{left:385.533333pt;}
.x74_c00158{left:387.840000pt;}
.xe_c00158{left:390.906667pt;}
.x33_c00158{left:399.360000pt;}
.xf_c00158{left:401.666667pt;}
.x64_c00158{left:407.813333pt;}
.x58_c00158{left:413.946667pt;}
.x46_c00158{left:418.560000pt;}
.x85_c00158{left:422.400000pt;}
.x59_c00158{left:423.933333pt;}
.x84_c00158{left:425.466667pt;}
.x5f_c00158{left:431.613333pt;}
.x2_c00158{left:433.920000pt;}
.x82_c00158{left:435.453333pt;}
.x68_c00158{left:436.986667pt;}
.x3f_c00158{left:443.906667pt;}
.x47_c00158{left:446.213333pt;}
.x3_c00158{left:450.053333pt;}
.x63_c00158{left:453.893333pt;}
.x72_c00158{left:456.960000pt;}
.x7d_c00158{left:458.493333pt;}
.x1f_c00158{left:461.573333pt;}
.x10_c00158{left:463.106667pt;}
.x6b_c00158{left:466.173333pt;}
.x4_c00158{left:479.226667pt;}
.x4e_c00158{left:483.840000pt;}
.x65_c00158{left:488.453333pt;}
.x4f_c00158{left:493.053333pt;}
.xa7_c00158{left:496.133333pt;}
.x86_c00158{left:499.973333pt;}
.x89_c00158{left:501.506667pt;}
.x11_c00158{left:503.813333pt;}
.x5_c00158{left:506.880000pt;}
.x40_c00158{left:512.253333pt;}
.xa1_c00158{left:523.013333pt;}
.x50_c00158{left:525.306667pt;}
.x26_c00158{left:527.613333pt;}
.x20_c00158{left:529.146667pt;}
.x87_c00158{left:545.280000pt;}
.x12_c00158{left:549.893333pt;}
.x6_c00158{left:552.186667pt;}
.x48_c00158{left:556.026667pt;}
.x96_c00158{left:557.573333pt;}
.x8d_c00158{left:563.706667pt;}
.x13_c00158{left:566.013333pt;}
.xa9_c00158{left:567.546667pt;}
.x38_c00158{left:569.853333pt;}
.x9c_c00158{left:572.160000pt;}
.x8a_c00158{left:575.226667pt;}
.x97_c00158{left:579.066667pt;}
.xa2_c00158{left:582.146667pt;}
.x27_c00158{left:587.520000pt;}
.x8e_c00158{left:590.586667pt;}
.x93_c00158{left:592.893333pt;}
.xa5_c00158{left:597.506667pt;}
.x14_c00158{left:599.040000pt;}
.x51_c00158{left:605.946667pt;}
.x9e_c00158{left:608.253333pt;}
.x34_c00158{left:610.560000pt;}
.xaa_c00158{left:615.173333pt;}
.x98_c00158{left:616.706667pt;}
.x15_c00158{left:619.013333pt;}
.x39_c00158{left:623.613333pt;}
.x52_c00158{left:625.146667pt;}
.x21_c00158{left:627.453333pt;}
.x8f_c00158{left:629.760000pt;}
.x28_c00158{left:631.293333pt;}
.x91_c00158{left:645.893333pt;}
.x8b_c00158{left:648.186667pt;}
.x99_c00158{left:654.333333pt;}
.x16_c00158{left:656.640000pt;}
.x22_c00158{left:658.946667pt;}
.x49_c00158{left:660.480000pt;}
.x23_c00158{left:665.853333pt;}
.x9b_c00158{left:667.386667pt;}
.x95_c00158{left:668.933333pt;}
.x9d_c00158{left:676.613333pt;}
.x17_c00158{left:678.906667pt;}
.x4a_c00158{left:685.053333pt;}
.x24_c00158{left:688.893333pt;}
.x29_c00158{left:691.200000pt;}
.x18_c00158{left:695.813333pt;}
.xa6_c00158{left:697.346667pt;}
.xa3_c00158{left:700.413333pt;}
.x92_c00158{left:706.560000pt;}
.x88_c00158{left:709.626667pt;}
.x9f_c00158{left:711.933333pt;}
.x1_c00158{left:716.546667pt;}
.x3a_c00158{left:720.386667pt;}
.x8c_c00158{left:728.826667pt;}
.x41_c00158{left:732.666667pt;}
.x2a_c00158{left:734.213333pt;}
.x3b_c00158{left:737.280000pt;}
.x35_c00158{left:739.586667pt;}
.x53_c00158{left:741.120000pt;}
.x25_c00158{left:742.653333pt;}
.x94_c00158{left:745.733333pt;}
.x54_c00158{left:748.026667pt;}
.x42_c00158{left:751.106667pt;}
.x19_c00158{left:754.173333pt;}
.x90_c00158{left:758.786667pt;}
.xa0_c00158{left:760.320000pt;}
.x2b_c00158{left:762.626667pt;}
.xa4_c00158{left:767.226667pt;}
.x9a_c00158{left:778.746667pt;}
.x4b_c00158{left:782.586667pt;}
.xa8_c00158{left:786.426667pt;}
.x7_c00158{left:797.186667pt;}
.x8_c00158{left:814.080000pt;}
.xab_c00158{left:858.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_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;}
@font-face{font-family:ff1_c00159;src:url('chunks/assets/font_5ae1f08a8bcb9e45109e53ed.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.109863;font-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_c00159{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m33_c00159{transform:matrix(0.126800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126800,0.000000,0.000000,0.250000,0,0);}
.m1_c00159{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00159{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);}
.m4b_c00159{transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);}
.m34_c00159{transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);}
.m78_c00159{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);}
.m9b_c00159{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.m98_c00159{transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);}
.m80_c00159{transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);}
.m4d_c00159{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.ma8_c00159{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m4_c00159{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m43_c00159{transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);}
.m6f_c00159{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m8f_c00159{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m83_c00159{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.mb0_c00159{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m90_c00159{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m93_c00159{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m73_c00159{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.m3e_c00159{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m27_c00159{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.m3f_c00159{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.ma5_c00159{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m37_c00159{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.maa_c00159{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);}
.ma9_c00159{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);}
.m84_c00159{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);}
.m76_c00159{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);}
.m40_c00159{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.ma4_c00159{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);}
.m75_c00159{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);}
.m61_c00159{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00159{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);}
.m6a_c00159{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);}
.m58_c00159{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);}
.ma2_c00159{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);}
.m81_c00159{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);}
.m9d_c00159{transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);}
.m1a_c00159{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);}
.m63_c00159{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);}
.m1e_c00159{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00159{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m5f_c00159{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.m7f_c00159{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m19_c00159{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);}
.m5b_c00159{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m28_c00159{transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);}
.m88_c00159{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m51_c00159{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);}
.m6c_c00159{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_c00159{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.m30_c00159{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.mac_c00159{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m52_c00159{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.m1c_c00159{transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);}
.m91_c00159{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.m7b_c00159{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m8e_c00159{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);}
.m5c_c00159{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);}
.mc_c00159{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m6e_c00159{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.m42_c00159{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m8_c00159{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m60_c00159{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);}
.m9c_c00159{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.m71_c00159{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m87_c00159{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);}
.m48_c00159{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.m14_c00159{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m92_c00159{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);}
.m9_c00159{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m39_c00159{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);}
.m50_c00159{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);}
.m9f_c00159{transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);}
.me_c00159{transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);}
.m85_c00159{transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);}
.m86_c00159{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00159{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);}
.m53_c00159{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);}
.m68_c00159{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);}
.m38_c00159{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.m74_c00159{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);}
.mb1_c00159{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m97_c00159{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.m44_c00159{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);}
.m5a_c00159{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);}
.m8c_c00159{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.ma7_c00159{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);}
.m3a_c00159{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);}
.m9e_c00159{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m96_c00159{transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);}
.m94_c00159{transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);}
.m89_c00159{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);}
.maf_c00159{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);}
.m2a_c00159{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);}
.m46_c00159{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.ma6_c00159{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m45_c00159{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m70_c00159{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);}
.m57_c00159{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);}
.m72_c00159{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m4c_c00159{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m8a_c00159{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);}
.m67_c00159{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00159{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);}
.m2b_c00159{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);}
.m36_c00159{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);}
.m7a_c00159{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);}
.m2c_c00159{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00159{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c00159{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m59_c00159{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);}
.m6b_c00159{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c00159{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);}
.m15_c00159{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);}
.m7_c00159{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m18_c00159{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);}
.m2_c00159{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00159{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m29_c00159{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);}
.m26_c00159{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00159{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);}
.m65_c00159{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);}
.m24_c00159{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00159{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);}
.m11_c00159{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00159{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m54_c00159{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);}
.m69_c00159{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00159{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c00159{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c00159{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00159{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c00159{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m56_c00159{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c00159{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00159{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);}
.m82_c00159{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m32_c00159{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);}
.m8b_c00159{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00159{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00159{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00159{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00159{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m64_c00159{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m25_c00159{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m55_c00159{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m47_c00159{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m23_c00159{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);}
.m6d_c00159{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);}
.mb3_c00159{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m21_c00159{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.md_c00159{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00159{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mb_c00159{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mad_c00159{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00159{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00159{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);}
.m2d_c00159{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mae_c00159{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m16_c00159{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m13_c00159{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m79_c00159{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00159{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m95_c00159{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00159{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m66_c00159{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00159{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00159{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c00159{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m99_c00159{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m31_c00159{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);}
.ma0_c00159{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.mab_c00159{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m77_c00159{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);}
.ma3_c00159{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m41_c00159{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m62_c00159{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m49_c00159{transform:matrix(1.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.885000,0.000000,0.000000,0.250000,0,0);}
.v4_c00159{vertical-align:-3.420000px;}
.v0_c00159{vertical-align:0.000000px;}
.v3_c00159{vertical-align:3.420000px;}
.v2_c00159{vertical-align:6.960000px;}
.v1_c00159{vertical-align:17.280000px;}
.ls1_c00159{letter-spacing:0.000000px;}
.ls0_c00159{letter-spacing:165.312000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00159{word-spacing:-20.292000px;}
.ws1_c00159{word-spacing:-16.517040px;}
.ws0_c00159{word-spacing:-16.074720px;}
.ws4_c00159{word-spacing:0.000000px;}
.ws3_c00159{word-spacing:81.026160px;}
.fc0_c00159{color:transparent;}
.fs19_c00159{font-size:3.456000px;}
.fs12_c00159{font-size:6.000000px;}
.fs1_c00159{font-size:6.900000px;}
.fs18_c00159{font-size:10.380000px;}
.fs16_c00159{font-size:13.800000px;}
.fsf_c00159{font-size:17.280000px;}
.fs2_c00159{font-size:20.760000px;}
.fs1b_c00159{font-size:24.180000px;}
.fs0_c00159{font-size:27.660000px;}
.fs1c_c00159{font-size:31.080000px;}
.fs17_c00159{font-size:34.560000px;}
.fsd_c00159{font-size:38.040000px;}
.fs9_c00159{font-size:41.460000px;}
.fs3_c00159{font-size:44.940000px;}
.fsb_c00159{font-size:48.360000px;}
.fs4_c00159{font-size:51.840000px;}
.fs8_c00159{font-size:55.320000px;}
.fs6_c00159{font-size:58.740000px;}
.fsc_c00159{font-size:62.220000px;}
.fs5_c00159{font-size:65.640000px;}
.fs14_c00159{font-size:69.120000px;}
.fs13_c00159{font-size:72.600000px;}
.fsa_c00159{font-size:76.020000px;}
.fs7_c00159{font-size:79.500000px;}
.fs1a_c00159{font-size:82.920000px;}
.fse_c00159{font-size:86.400000px;}
.fs11_c00159{font-size:89.880000px;}
.fs10_c00159{font-size:93.300000px;}
.fs15_c00159{font-size:96.780000px;}
.y0_c00159{bottom:0.000000px;}
.yf2_c00159{bottom:486.435000px;}
.yf1_c00159{bottom:669.600000px;}
.yf0_c00159{bottom:729.210000px;}
.yef_c00159{bottom:749.955000px;}
.yee_c00159{bottom:769.830000px;}
.yed_c00159{bottom:791.430000px;}
.ye9_c00159{bottom:823.395000px;}
.ye8_c00159{bottom:826.845000px;}
.ye7_c00159{bottom:828.570000px;}
.ye6_c00159{bottom:842.400000px;}
.ye3_c00159{bottom:844.995000px;}
.ye5_c00159{bottom:845.850000px;}
.ye4_c00159{bottom:847.590000px;}
.ye2_c00159{bottom:862.275000px;}
.ydf_c00159{bottom:865.725000px;}
.ydd_c00159{bottom:868.320000px;}
.ye1_c00159{bottom:869.190000px;}
.yde_c00159{bottom:870.045000px;}
.ye0_c00159{bottom:874.365000px;}
.ydc_c00159{bottom:879.555000px;}
.yd9_c00159{bottom:883.875000px;}
.ydb_c00159{bottom:884.730000px;}
.yda_c00159{bottom:886.470000px;}
.yd8_c00159{bottom:888.195000px;}
.yd7_c00159{bottom:889.050000px;}
.yd5_c00159{bottom:902.010000px;}
.yd4_c00159{bottom:902.880000px;}
.yd1_c00159{bottom:904.605000px;}
.yd6_c00159{bottom:905.475000px;}
.yd3_c00159{bottom:906.330000px;}
.yd2_c00159{bottom:909.795000px;}
.ycd_c00159{bottom:920.160000px;}
.ycc_c00159{bottom:927.075000px;}
.ycb_c00159{bottom:927.930000px;}
.yca_c00159{bottom:928.800000px;}
.ycf_c00159{bottom:931.395000px;}
.yd0_c00159{bottom:932.250000px;}
.yce_c00159{bottom:933.990000px;}
.yc8_c00159{bottom:937.440000px;}
.yc5_c00159{bottom:940.890000px;}
.yc7_c00159{bottom:941.760000px;}
.yc9_c00159{bottom:942.630000px;}
.yc6_c00159{bottom:944.355000px;}
.yc4_c00159{bottom:949.530000px;}
.yc3_c00159{bottom:956.445000px;}
.ybe_c00159{bottom:960.765000px;}
.ybd_c00159{bottom:961.635000px;}
.yc2_c00159{bottom:962.490000px;}
.yba_c00159{bottom:965.085000px;}
.ybb_c00159{bottom:965.955000px;}
.ybc_c00159{bottom:966.810000px;}
.yb9_c00159{bottom:967.680000px;}
.yc1_c00159{bottom:968.550000px;}
.yc0_c00159{bottom:973.725000px;}
.ybf_c00159{bottom:974.595000px;}
.yb8_c00159{bottom:975.450000px;}
.yb7_c00159{bottom:977.190000px;}
.yb6_c00159{bottom:978.045000px;}
.yb3_c00159{bottom:980.640000px;}
.yb2_c00159{bottom:983.235000px;}
.yb5_c00159{bottom:984.090000px;}
.yb4_c00159{bottom:986.685000px;}
.yb1_c00159{bottom:987.555000px;}
.yb0_c00159{bottom:990.150000px;}
.yae_c00159{bottom:997.920000px;}
.yaf_c00159{bottom:1001.370000px;}
.yac_c00159{bottom:1002.240000px;}
.yab_c00159{bottom:1003.110000px;}
.yaa_c00159{bottom:1003.965000px;}
.yad_c00159{bottom:1004.835000px;}
.ya9_c00159{bottom:1005.690000px;}
.ya8_c00159{bottom:1011.750000px;}
.ya7_c00159{bottom:1016.925000px;}
.ya5_c00159{bottom:1019.520000px;}
.ya6_c00159{bottom:1021.245000px;}
.ya2_c00159{bottom:1022.115000px;}
.ya3_c00159{bottom:1022.970000px;}
.y9f_c00159{bottom:1023.840000px;}
.ya4_c00159{bottom:1025.565000px;}
.ya1_c00159{bottom:1027.290000px;}
.ya0_c00159{bottom:1030.755000px;}
.y9e_c00159{bottom:1036.800000px;}
.y9c_c00159{bottom:1039.395000px;}
.y9a_c00159{bottom:1041.990000px;}
.y9b_c00159{bottom:1044.570000px;}
.y98_c00159{bottom:1045.440000px;}
.y99_c00159{bottom:1046.310000px;}
.y96_c00159{bottom:1048.035000px;}
.y97_c00159{bottom:1051.485000px;}
.y9d_c00159{bottom:1054.080000px;}
.y93_c00159{bottom:1059.270000px;}
.y91_c00159{bottom:1061.850000px;}
.y95_c00159{bottom:1062.720000px;}
.y94_c00159{bottom:1063.590000px;}
.y92_c00159{bottom:1065.315000px;}
.y8c_c00159{bottom:1066.170000px;}
.y90_c00159{bottom:1067.040000px;}
.y8f_c00159{bottom:1072.230000px;}
.y8d_c00159{bottom:1073.085000px;}
.y8e_c00159{bottom:1076.550000px;}
.y8b_c00159{bottom:1078.275000px;}
.y87_c00159{bottom:1081.725000px;}
.y89_c00159{bottom:1082.595000px;}
.y86_c00159{bottom:1083.450000px;}
.y8a_c00159{bottom:1085.190000px;}
.y88_c00159{bottom:1086.045000px;}
.y83_c00159{bottom:1086.915000px;}
.y85_c00159{bottom:1087.770000px;}
.y82_c00159{bottom:1090.365000px;}
.y84_c00159{bottom:1091.235000px;}
.y7e_c00159{bottom:1102.470000px;}
.y7b_c00159{bottom:1104.195000px;}
.y80_c00159{bottom:1105.050000px;}
.y7d_c00159{bottom:1105.920000px;}
.y7f_c00159{bottom:1107.645000px;}
.y81_c00159{bottom:1109.370000px;}
.y7a_c00159{bottom:1111.110000px;}
.y79_c00159{bottom:1111.965000px;}
.y7c_c00159{bottom:1112.835000px;}
.y78_c00159{bottom:1123.200000px;}
.y77_c00159{bottom:1124.925000px;}
.y76_c00159{bottom:1125.795000px;}
.y75_c00159{bottom:1126.650000px;}
.y6f_c00159{bottom:1127.520000px;}
.y74_c00159{bottom:1128.390000px;}
.y72_c00159{bottom:1129.245000px;}
.y73_c00159{bottom:1130.115000px;}
.y71_c00159{bottom:1130.970000px;}
.y70_c00159{bottom:1131.840000px;}
.y6e_c00159{bottom:1133.565000px;}
.y6d_c00159{bottom:1138.755000px;}
.y6b_c00159{bottom:1140.480000px;}
.y68_c00159{bottom:1144.800000px;}
.y6c_c00159{bottom:1145.670000px;}
.y6a_c00159{bottom:1146.525000px;}
.y65_c00159{bottom:1148.250000px;}
.y69_c00159{bottom:1149.990000px;}
.y66_c00159{bottom:1151.715000px;}
.y67_c00159{bottom:1153.440000px;}
.y64_c00159{bottom:1159.485000px;}
.y63_c00159{bottom:1160.355000px;}
.y62_c00159{bottom:1167.270000px;}
.y5f_c00159{bottom:1168.995000px;}
.y61_c00159{bottom:1170.720000px;}
.y60_c00159{bottom:1171.590000px;}
.y5d_c00159{bottom:1173.315000px;}
.y5e_c00159{bottom:1175.040000px;}
.y5c_c00159{bottom:1182.810000px;}
.y5b_c00159{bottom:1184.550000px;}
.y5a_c00159{bottom:1187.130000px;}
.y59_c00159{bottom:1188.000000px;}
.y57_c00159{bottom:1192.320000px;}
.y58_c00159{bottom:1194.915000px;}
.y54_c00159{bottom:1197.510000px;}
.y51_c00159{bottom:1198.365000px;}
.y4f_c00159{bottom:1200.960000px;}
.y53_c00159{bottom:1202.685000px;}
.y50_c00159{bottom:1203.555000px;}
.y55_c00159{bottom:1205.280000px;}
.y56_c00159{bottom:1206.150000px;}
.y4d_c00159{bottom:1207.005000px;}
.y4e_c00159{bottom:1209.600000px;}
.y52_c00159{bottom:1210.470000px;}
.y4a_c00159{bottom:1211.325000px;}
.y4c_c00159{bottom:1212.195000px;}
.y4b_c00159{bottom:1215.645000px;}
.y49_c00159{bottom:1222.560000px;}
.y46_c00159{bottom:1225.155000px;}
.y43_c00159{bottom:1226.010000px;}
.y48_c00159{bottom:1226.880000px;}
.y47_c00159{bottom:1227.750000px;}
.y41_c00159{bottom:1228.605000px;}
.y44_c00159{bottom:1229.475000px;}
.y45_c00159{bottom:1230.330000px;}
.y40_c00159{bottom:1232.925000px;}
.y42_c00159{bottom:1233.795000px;}
.y3d_c00159{bottom:1238.970000px;}
.y3b_c00159{bottom:1239.840000px;}
.y3c_c00159{bottom:1240.710000px;}
.y3e_c00159{bottom:1242.435000px;}
.y3f_c00159{bottom:1243.290000px;}
.y39_c00159{bottom:1245.030000px;}
.y37_c00159{bottom:1246.755000px;}
.y38_c00159{bottom:1247.610000px;}
.y34_c00159{bottom:1248.480000px;}
.y3a_c00159{bottom:1249.350000px;}
.y33_c00159{bottom:1251.075000px;}
.y36_c00159{bottom:1251.930000px;}
.y35_c00159{bottom:1254.525000px;}
.y31_c00159{bottom:1257.990000px;}
.y2e_c00159{bottom:1261.440000px;}
.y2f_c00159{bottom:1262.310000px;}
.y32_c00159{bottom:1264.035000px;}
.y2c_c00159{bottom:1267.485000px;}
.y2d_c00159{bottom:1270.080000px;}
.y2a_c00159{bottom:1270.950000px;}
.y27_c00159{bottom:1271.805000px;}
.y2b_c00159{bottom:1273.530000px;}
.y29_c00159{bottom:1274.400000px;}
.y28_c00159{bottom:1275.270000px;}
.y25_c00159{bottom:1279.590000px;}
.y30_c00159{bottom:1283.910000px;}
.y26_c00159{bottom:1284.765000px;}
.y23_c00159{bottom:1285.635000px;}
.y24_c00159{bottom:1286.490000px;}
.y22_c00159{bottom:1288.230000px;}
.y1f_c00159{bottom:1289.085000px;}
.y21_c00159{bottom:1293.405000px;}
.y1e_c00159{bottom:1294.275000px;}
.y20_c00159{bottom:1295.130000px;}
.y1c_c00159{bottom:1303.770000px;}
.y1d_c00159{bottom:1304.640000px;}
.y1b_c00159{bottom:1305.510000px;}
.y19_c00159{bottom:1308.960000px;}
.y1a_c00159{bottom:1310.685000px;}
.y17_c00159{bottom:1313.280000px;}
.y18_c00159{bottom:1315.005000px;}
.y15_c00159{bottom:1321.050000px;}
.y16_c00159{bottom:1322.790000px;}
.y12_c00159{bottom:1327.110000px;}
.y14_c00159{bottom:1328.835000px;}
.y11_c00159{bottom:1329.690000px;}
.y13_c00159{bottom:1331.430000px;}
.yf_c00159{bottom:1334.010000px;}
.ye_c00159{bottom:1334.880000px;}
.y10_c00159{bottom:1335.750000px;}
.yd_c00159{bottom:1340.070000px;}
.yc_c00159{bottom:1346.115000px;}
.yb_c00159{bottom:1346.970000px;}
.y8_c00159{bottom:1350.435000px;}
.y5_c00159{bottom:1352.160000px;}
.ya_c00159{bottom:1353.030000px;}
.y6_c00159{bottom:1353.885000px;}
.y9_c00159{bottom:1354.755000px;}
.y7_c00159{bottom:1355.610000px;}
.y4_c00159{bottom:1376.355000px;}
.yec_c00159{bottom:1378.950000px;}
.yea_c00159{bottom:1381.530000px;}
.yeb_c00159{bottom:1383.270000px;}
.y2_c00159{bottom:1439.430000px;}
.y3_c00159{bottom:1440.285000px;}
.y1_c00159{bottom:1444.605000px;}
.h1c_c00159{height:3.110063px;}
.h15_c00159{height:5.399414px;}
.h3_c00159{height:6.209326px;}
.h1b_c00159{height:9.340986px;}
.h19_c00159{height:12.418652px;}
.h12_c00159{height:15.550313px;}
.h4_c00159{height:18.681973px;}
.h1f_c00159{height:21.759639px;}
.h21_c00159{height:22.510313px;}
.h2_c00159{height:24.891299px;}
.h20_c00159{height:27.968965px;}
.h1a_c00159{height:31.100625px;}
.hf_c00159{height:34.232285px;}
.hb_c00159{height:37.309951px;}
.h5_c00159{height:40.441611px;}
.hd_c00159{height:43.519277px;}
.h6_c00159{height:46.650937px;}
.ha_c00159{height:49.782598px;}
.h8_c00159{height:52.860264px;}
.he_c00159{height:55.991924px;}
.h7_c00159{height:59.069590px;}
.h17_c00159{height:62.201250px;}
.h16_c00159{height:65.332910px;}
.h1d_c00159{height:67.062598px;}
.hc_c00159{height:68.410576px;}
.h11_c00159{height:70.140264px;}
.h9_c00159{height:71.542236px;}
.h1e_c00159{height:74.619902px;}
.h10_c00159{height:77.751563px;}
.h14_c00159{height:80.883223px;}
.h13_c00159{height:83.960889px;}
.h18_c00159{height:87.092549px;}
.h1_c00159{height:1502.250000px;}
.h0_c00159{height:1502.490000px;}
.w0_c00159{width:1111.965000px;}
.w1_c00159{width:1112.250000px;}
.x0_c00159{left:0.000000px;}
.xaf_c00159{left:2.595000px;}
.xb0_c00159{left:15.555000px;}
.x71_c00159{left:228.960000px;}
.x93_c00159{left:239.325000px;}
.x72_c00159{left:241.920000px;}
.x5_c00159{left:245.370000px;}
.x53_c00159{left:251.430000px;}
.x54_c00159{left:256.605000px;}
.x94_c00159{left:263.520000px;}
.x98_c00159{left:265.245000px;}
.x3e_c00159{left:266.970000px;}
.x6c_c00159{left:268.710000px;}
.x11_c00159{left:271.290000px;}
.x6_c00159{left:273.030000px;}
.xa5_c00159{left:286.845000px;}
.x25_c00159{left:288.570000px;}
.x89_c00159{left:291.165000px;}
.x3f_c00159{left:295.485000px;}
.x12_c00159{left:303.270000px;}
.x5f_c00159{left:304.995000px;}
.x80_c00159{left:306.720000px;}
.x9a_c00159{left:308.445000px;}
.xa0_c00159{left:314.490000px;}
.x13_c00159{left:324.000000px;}
.x5a_c00159{left:328.320000px;}
.x26_c00159{left:330.045000px;}
.x8d_c00159{left:333.510000px;}
.x2a_c00159{left:336.090000px;}
.x55_c00159{left:339.555000px;}
.x81_c00159{left:342.150000px;}
.x4a_c00159{left:344.730000px;}
.x7_c00159{left:350.790000px;}
.x8e_c00159{left:354.240000px;}
.x78_c00159{left:356.835000px;}
.x40_c00159{left:359.430000px;}
.x2b_c00159{left:362.010000px;}
.x34_c00159{left:364.605000px;}
.x84_c00159{left:367.200000px;}
.x9b_c00159{left:369.795000px;}
.xa1_c00159{left:371.520000px;}
.x1e_c00159{left:373.245000px;}
.x27_c00159{left:377.565000px;}
.x67_c00159{left:379.290000px;}
.xa4_c00159{left:389.670000px;}
.x60_c00159{left:391.395000px;}
.x4_c00159{left:395.715000px;}
.x56_c00159{left:400.035000px;}
.x35_c00159{left:403.485000px;}
.x14_c00159{left:406.080000px;}
.xa9_c00159{left:408.675000px;}
.x8_c00159{left:410.400000px;}
.x82_c00159{left:416.445000px;}
.x2c_c00159{left:419.040000px;}
.x5b_c00159{left:421.635000px;}
.xa6_c00159{left:425.085000px;}
.x79_c00159{left:426.810000px;}
.x68_c00159{left:431.130000px;}
.x9_c00159{left:432.870000px;}
.x7a_c00159{left:436.320000px;}
.x73_c00159{left:438.915000px;}
.x36_c00159{left:440.640000px;}
.x15_c00159{left:452.730000px;}
.x41_c00159{left:458.790000px;}
.x37_c00159{left:461.370000px;}
.x1f_c00159{left:472.605000px;}
.x2d_c00159{left:475.200000px;}
.x74_c00159{left:478.650000px;}
.x9c_c00159{left:482.115000px;}
.xa2_c00159{left:484.710000px;}
.xaa_c00159{left:492.480000px;}
.x16_c00159{left:494.205000px;}
.xa_c00159{left:496.800000px;}
.x85_c00159{left:498.525000px;}
.x69_c00159{left:501.120000px;}
.xab_c00159{left:505.440000px;}
.xa7_c00159{left:507.165000px;}
.x99_c00159{left:508.890000px;}
.xb_c00159{left:513.210000px;}
.x4b_c00159{left:516.675000px;}
.x8a_c00159{left:518.400000px;}
.x38_c00159{left:520.125000px;}
.x20_c00159{left:521.850000px;}
.x8f_c00159{left:525.315000px;}
.x61_c00159{left:527.040000px;}
.x2e_c00159{left:529.635000px;}
.xa3_c00159{left:532.230000px;}
.x6a_c00159{left:536.550000px;}
.xa8_c00159{left:546.045000px;}
.x90_c00159{left:553.830000px;}
.x42_c00159{left:556.410000px;}
.x6d_c00159{left:561.600000px;}
.xc_c00159{left:572.835000px;}
.x86_c00159{left:574.560000px;}
.x75_c00159{left:576.285000px;}
.x39_c00159{left:578.010000px;}
.x2f_c00159{left:579.750000px;}
.xac_c00159{left:588.390000px;}
.x6e_c00159{left:590.970000px;}
.x30_c00159{left:594.435000px;}
.x8b_c00159{left:596.160000px;}
.x62_c00159{left:599.610000px;}
.x4c_c00159{left:601.350000px;}
.x5c_c00159{left:603.930000px;}
.x17_c00159{left:605.670000px;}
.xd_c00159{left:610.845000px;}
.xad_c00159{left:612.570000px;}
.x9d_c00159{left:616.035000px;}
.x95_c00159{left:617.760000px;}
.x9e_c00159{left:625.530000px;}
.x43_c00159{left:627.270000px;}
.x3a_c00159{left:641.085000px;}
.x4d_c00159{left:642.810000px;}
.x18_c00159{left:644.550000px;}
.xe_c00159{left:648.000000px;}
.x6b_c00159{left:651.450000px;}
.x5d_c00159{left:654.915000px;}
.x7b_c00159{left:658.365000px;}
.x91_c00159{left:662.685000px;}
.x4e_c00159{left:666.150000px;}
.xf_c00159{left:667.875000px;}
.x63_c00159{left:669.600000px;}
.x44_c00159{left:675.645000px;}
.x21_c00159{left:678.240000px;}
.x9f_c00159{left:679.965000px;}
.x19_c00159{left:684.285000px;}
.x57_c00159{left:688.605000px;}
.x6f_c00159{left:698.970000px;}
.x1a_c00159{left:704.160000px;}
.x96_c00159{left:706.755000px;}
.x3b_c00159{left:709.350000px;}
.x7c_c00159{left:718.845000px;}
.x58_c00159{left:722.310000px;}
.x4f_c00159{left:724.890000px;}
.x64_c00159{left:726.630000px;}
.x22_c00159{left:728.355000px;}
.x45_c00159{left:730.080000px;}
.x1_c00159{left:738.720000px;}
.x7d_c00159{left:740.445000px;}
.x2_c00159{left:743.910000px;}
.x92_c00159{left:747.360000px;}
.x1b_c00159{left:749.085000px;}
.x46_c00159{left:750.810000px;}
.x59_c00159{left:752.550000px;}
.x3_c00159{left:756.000000px;}
.x76_c00159{left:759.450000px;}
.x28_c00159{left:763.770000px;}
.x23_c00159{left:768.960000px;}
.x31_c00159{left:774.150000px;}
.x77_c00159{left:778.470000px;}
.x50_c00159{left:781.050000px;}
.x87_c00159{left:786.240000px;}
.x7e_c00159{left:790.560000px;}
.x24_c00159{left:794.010000px;}
.x51_c00159{left:797.475000px;}
.x47_c00159{left:799.200000px;}
.x83_c00159{left:801.795000px;}
.x97_c00159{left:807.840000px;}
.x48_c00159{left:809.565000px;}
.x70_c00159{left:811.290000px;}
.x65_c00159{left:813.030000px;}
.x66_c00159{left:823.395000px;}
.x49_c00159{left:828.570000px;}
.x8c_c00159{left:831.165000px;}
.x7f_c00159{left:833.760000px;}
.x88_c00159{left:836.355000px;}
.x32_c00159{left:841.530000px;}
.x3c_c00159{left:846.720000px;}
.x10_c00159{left:849.315000px;}
.x52_c00159{left:854.490000px;}
.x5e_c00159{left:856.230000px;}
.x1c_c00159{left:857.955000px;}
.x3d_c00159{left:865.725000px;}
.x33_c00159{left:868.320000px;}
.x29_c00159{left:871.770000px;}
.x1d_c00159{left:873.510000px;}
.xae_c00159{left:937.440000px;}
@media print{
.v4_c00159{vertical-align:-3.040000pt;}
.v0_c00159{vertical-align:0.000000pt;}
.v3_c00159{vertical-align:3.040000pt;}
.v2_c00159{vertical-align:6.186667pt;}
.v1_c00159{vertical-align:15.360000pt;}
.ls1_c00159{letter-spacing:0.000000pt;}
.ls0_c00159{letter-spacing:146.944000pt;}
.ws2_c00159{word-spacing:-18.037333pt;}
.ws1_c00159{word-spacing:-14.681813pt;}
.ws0_c00159{word-spacing:-14.288640pt;}
.ws4_c00159{word-spacing:0.000000pt;}
.ws3_c00159{word-spacing:72.023253pt;}
.fs19_c00159{font-size:3.072000pt;}
.fs12_c00159{font-size:5.333333pt;}
.fs1_c00159{font-size:6.133333pt;}
.fs18_c00159{font-size:9.226667pt;}
.fs16_c00159{font-size:12.266667pt;}
.fsf_c00159{font-size:15.360000pt;}
.fs2_c00159{font-size:18.453333pt;}
.fs1b_c00159{font-size:21.493333pt;}
.fs0_c00159{font-size:24.586667pt;}
.fs1c_c00159{font-size:27.626667pt;}
.fs17_c00159{font-size:30.720000pt;}
.fsd_c00159{font-size:33.813333pt;}
.fs9_c00159{font-size:36.853333pt;}
.fs3_c00159{font-size:39.946667pt;}
.fsb_c00159{font-size:42.986667pt;}
.fs4_c00159{font-size:46.080000pt;}
.fs8_c00159{font-size:49.173333pt;}
.fs6_c00159{font-size:52.213333pt;}
.fsc_c00159{font-size:55.306667pt;}
.fs5_c00159{font-size:58.346667pt;}
.fs14_c00159{font-size:61.440000pt;}
.fs13_c00159{font-size:64.533333pt;}
.fsa_c00159{font-size:67.573333pt;}
.fs7_c00159{font-size:70.666667pt;}
.fs1a_c00159{font-size:73.706667pt;}
.fse_c00159{font-size:76.800000pt;}
.fs11_c00159{font-size:79.893333pt;}
.fs10_c00159{font-size:82.933333pt;}
.fs15_c00159{font-size:86.026667pt;}
.y0_c00159{bottom:0.000000pt;}
.yf2_c00159{bottom:432.386667pt;}
.yf1_c00159{bottom:595.200000pt;}
.yf0_c00159{bottom:648.186667pt;}
.yef_c00159{bottom:666.626667pt;}
.yee_c00159{bottom:684.293333pt;}
.yed_c00159{bottom:703.493333pt;}
.ye9_c00159{bottom:731.906667pt;}
.ye8_c00159{bottom:734.973333pt;}
.ye7_c00159{bottom:736.506667pt;}
.ye6_c00159{bottom:748.800000pt;}
.ye3_c00159{bottom:751.106667pt;}
.ye5_c00159{bottom:751.866667pt;}
.ye4_c00159{bottom:753.413333pt;}
.ye2_c00159{bottom:766.466667pt;}
.ydf_c00159{bottom:769.533333pt;}
.ydd_c00159{bottom:771.840000pt;}
.ye1_c00159{bottom:772.613333pt;}
.yde_c00159{bottom:773.373333pt;}
.ye0_c00159{bottom:777.213333pt;}
.ydc_c00159{bottom:781.826667pt;}
.yd9_c00159{bottom:785.666667pt;}
.ydb_c00159{bottom:786.426667pt;}
.yda_c00159{bottom:787.973333pt;}
.yd8_c00159{bottom:789.506667pt;}
.yd7_c00159{bottom:790.266667pt;}
.yd5_c00159{bottom:801.786667pt;}
.yd4_c00159{bottom:802.560000pt;}
.yd1_c00159{bottom:804.093333pt;}
.yd6_c00159{bottom:804.866667pt;}
.yd3_c00159{bottom:805.626667pt;}
.yd2_c00159{bottom:808.706667pt;}
.ycd_c00159{bottom:817.920000pt;}
.ycc_c00159{bottom:824.066667pt;}
.ycb_c00159{bottom:824.826667pt;}
.yca_c00159{bottom:825.600000pt;}
.ycf_c00159{bottom:827.906667pt;}
.yd0_c00159{bottom:828.666667pt;}
.yce_c00159{bottom:830.213333pt;}
.yc8_c00159{bottom:833.280000pt;}
.yc5_c00159{bottom:836.346667pt;}
.yc7_c00159{bottom:837.120000pt;}
.yc9_c00159{bottom:837.893333pt;}
.yc6_c00159{bottom:839.426667pt;}
.yc4_c00159{bottom:844.026667pt;}
.yc3_c00159{bottom:850.173333pt;}
.ybe_c00159{bottom:854.013333pt;}
.ybd_c00159{bottom:854.786667pt;}
.yc2_c00159{bottom:855.546667pt;}
.yba_c00159{bottom:857.853333pt;}
.ybb_c00159{bottom:858.626667pt;}
.ybc_c00159{bottom:859.386667pt;}
.yb9_c00159{bottom:860.160000pt;}
.yc1_c00159{bottom:860.933333pt;}
.yc0_c00159{bottom:865.533333pt;}
.ybf_c00159{bottom:866.306667pt;}
.yb8_c00159{bottom:867.066667pt;}
.yb7_c00159{bottom:868.613333pt;}
.yb6_c00159{bottom:869.373333pt;}
.yb3_c00159{bottom:871.680000pt;}
.yb2_c00159{bottom:873.986667pt;}
.yb5_c00159{bottom:874.746667pt;}
.yb4_c00159{bottom:877.053333pt;}
.yb1_c00159{bottom:877.826667pt;}
.yb0_c00159{bottom:880.133333pt;}
.yae_c00159{bottom:887.040000pt;}
.yaf_c00159{bottom:890.106667pt;}
.yac_c00159{bottom:890.880000pt;}
.yab_c00159{bottom:891.653333pt;}
.yaa_c00159{bottom:892.413333pt;}
.yad_c00159{bottom:893.186667pt;}
.ya9_c00159{bottom:893.946667pt;}
.ya8_c00159{bottom:899.333333pt;}
.ya7_c00159{bottom:903.933333pt;}
.ya5_c00159{bottom:906.240000pt;}
.ya6_c00159{bottom:907.773333pt;}
.ya2_c00159{bottom:908.546667pt;}
.ya3_c00159{bottom:909.306667pt;}
.y9f_c00159{bottom:910.080000pt;}
.ya4_c00159{bottom:911.613333pt;}
.ya1_c00159{bottom:913.146667pt;}
.ya0_c00159{bottom:916.226667pt;}
.y9e_c00159{bottom:921.600000pt;}
.y9c_c00159{bottom:923.906667pt;}
.y9a_c00159{bottom:926.213333pt;}
.y9b_c00159{bottom:928.506667pt;}
.y98_c00159{bottom:929.280000pt;}
.y99_c00159{bottom:930.053333pt;}
.y96_c00159{bottom:931.586667pt;}
.y97_c00159{bottom:934.653333pt;}
.y9d_c00159{bottom:936.960000pt;}
.y93_c00159{bottom:941.573333pt;}
.y91_c00159{bottom:943.866667pt;}
.y95_c00159{bottom:944.640000pt;}
.y94_c00159{bottom:945.413333pt;}
.y92_c00159{bottom:946.946667pt;}
.y8c_c00159{bottom:947.706667pt;}
.y90_c00159{bottom:948.480000pt;}
.y8f_c00159{bottom:953.093333pt;}
.y8d_c00159{bottom:953.853333pt;}
.y8e_c00159{bottom:956.933333pt;}
.y8b_c00159{bottom:958.466667pt;}
.y87_c00159{bottom:961.533333pt;}
.y89_c00159{bottom:962.306667pt;}
.y86_c00159{bottom:963.066667pt;}
.y8a_c00159{bottom:964.613333pt;}
.y88_c00159{bottom:965.373333pt;}
.y83_c00159{bottom:966.146667pt;}
.y85_c00159{bottom:966.906667pt;}
.y82_c00159{bottom:969.213333pt;}
.y84_c00159{bottom:969.986667pt;}
.y7e_c00159{bottom:979.973333pt;}
.y7b_c00159{bottom:981.506667pt;}
.y80_c00159{bottom:982.266667pt;}
.y7d_c00159{bottom:983.040000pt;}
.y7f_c00159{bottom:984.573333pt;}
.y81_c00159{bottom:986.106667pt;}
.y7a_c00159{bottom:987.653333pt;}
.y79_c00159{bottom:988.413333pt;}
.y7c_c00159{bottom:989.186667pt;}
.y78_c00159{bottom:998.400000pt;}
.y77_c00159{bottom:999.933333pt;}
.y76_c00159{bottom:1000.706667pt;}
.y75_c00159{bottom:1001.466667pt;}
.y6f_c00159{bottom:1002.240000pt;}
.y74_c00159{bottom:1003.013333pt;}
.y72_c00159{bottom:1003.773333pt;}
.y73_c00159{bottom:1004.546667pt;}
.y71_c00159{bottom:1005.306667pt;}
.y70_c00159{bottom:1006.080000pt;}
.y6e_c00159{bottom:1007.613333pt;}
.y6d_c00159{bottom:1012.226667pt;}
.y6b_c00159{bottom:1013.760000pt;}
.y68_c00159{bottom:1017.600000pt;}
.y6c_c00159{bottom:1018.373333pt;}
.y6a_c00159{bottom:1019.133333pt;}
.y65_c00159{bottom:1020.666667pt;}
.y69_c00159{bottom:1022.213333pt;}
.y66_c00159{bottom:1023.746667pt;}
.y67_c00159{bottom:1025.280000pt;}
.y64_c00159{bottom:1030.653333pt;}
.y63_c00159{bottom:1031.426667pt;}
.y62_c00159{bottom:1037.573333pt;}
.y5f_c00159{bottom:1039.106667pt;}
.y61_c00159{bottom:1040.640000pt;}
.y60_c00159{bottom:1041.413333pt;}
.y5d_c00159{bottom:1042.946667pt;}
.y5e_c00159{bottom:1044.480000pt;}
.y5c_c00159{bottom:1051.386667pt;}
.y5b_c00159{bottom:1052.933333pt;}
.y5a_c00159{bottom:1055.226667pt;}
.y59_c00159{bottom:1056.000000pt;}
.y57_c00159{bottom:1059.840000pt;}
.y58_c00159{bottom:1062.146667pt;}
.y54_c00159{bottom:1064.453333pt;}
.y51_c00159{bottom:1065.213333pt;}
.y4f_c00159{bottom:1067.520000pt;}
.y53_c00159{bottom:1069.053333pt;}
.y50_c00159{bottom:1069.826667pt;}
.y55_c00159{bottom:1071.360000pt;}
.y56_c00159{bottom:1072.133333pt;}
.y4d_c00159{bottom:1072.893333pt;}
.y4e_c00159{bottom:1075.200000pt;}
.y52_c00159{bottom:1075.973333pt;}
.y4a_c00159{bottom:1076.733333pt;}
.y4c_c00159{bottom:1077.506667pt;}
.y4b_c00159{bottom:1080.573333pt;}
.y49_c00159{bottom:1086.720000pt;}
.y46_c00159{bottom:1089.026667pt;}
.y43_c00159{bottom:1089.786667pt;}
.y48_c00159{bottom:1090.560000pt;}
.y47_c00159{bottom:1091.333333pt;}
.y41_c00159{bottom:1092.093333pt;}
.y44_c00159{bottom:1092.866667pt;}
.y45_c00159{bottom:1093.626667pt;}
.y40_c00159{bottom:1095.933333pt;}
.y42_c00159{bottom:1096.706667pt;}
.y3d_c00159{bottom:1101.306667pt;}
.y3b_c00159{bottom:1102.080000pt;}
.y3c_c00159{bottom:1102.853333pt;}
.y3e_c00159{bottom:1104.386667pt;}
.y3f_c00159{bottom:1105.146667pt;}
.y39_c00159{bottom:1106.693333pt;}
.y37_c00159{bottom:1108.226667pt;}
.y38_c00159{bottom:1108.986667pt;}
.y34_c00159{bottom:1109.760000pt;}
.y3a_c00159{bottom:1110.533333pt;}
.y33_c00159{bottom:1112.066667pt;}
.y36_c00159{bottom:1112.826667pt;}
.y35_c00159{bottom:1115.133333pt;}
.y31_c00159{bottom:1118.213333pt;}
.y2e_c00159{bottom:1121.280000pt;}
.y2f_c00159{bottom:1122.053333pt;}
.y32_c00159{bottom:1123.586667pt;}
.y2c_c00159{bottom:1126.653333pt;}
.y2d_c00159{bottom:1128.960000pt;}
.y2a_c00159{bottom:1129.733333pt;}
.y27_c00159{bottom:1130.493333pt;}
.y2b_c00159{bottom:1132.026667pt;}
.y29_c00159{bottom:1132.800000pt;}
.y28_c00159{bottom:1133.573333pt;}
.y25_c00159{bottom:1137.413333pt;}
.y30_c00159{bottom:1141.253333pt;}
.y26_c00159{bottom:1142.013333pt;}
.y23_c00159{bottom:1142.786667pt;}
.y24_c00159{bottom:1143.546667pt;}
.y22_c00159{bottom:1145.093333pt;}
.y1f_c00159{bottom:1145.853333pt;}
.y21_c00159{bottom:1149.693333pt;}
.y1e_c00159{bottom:1150.466667pt;}
.y20_c00159{bottom:1151.226667pt;}
.y1c_c00159{bottom:1158.906667pt;}
.y1d_c00159{bottom:1159.680000pt;}
.y1b_c00159{bottom:1160.453333pt;}
.y19_c00159{bottom:1163.520000pt;}
.y1a_c00159{bottom:1165.053333pt;}
.y17_c00159{bottom:1167.360000pt;}
.y18_c00159{bottom:1168.893333pt;}
.y15_c00159{bottom:1174.266667pt;}
.y16_c00159{bottom:1175.813333pt;}
.y12_c00159{bottom:1179.653333pt;}
.y14_c00159{bottom:1181.186667pt;}
.y11_c00159{bottom:1181.946667pt;}
.y13_c00159{bottom:1183.493333pt;}
.yf_c00159{bottom:1185.786667pt;}
.ye_c00159{bottom:1186.560000pt;}
.y10_c00159{bottom:1187.333333pt;}
.yd_c00159{bottom:1191.173333pt;}
.yc_c00159{bottom:1196.546667pt;}
.yb_c00159{bottom:1197.306667pt;}
.y8_c00159{bottom:1200.386667pt;}
.y5_c00159{bottom:1201.920000pt;}
.ya_c00159{bottom:1202.693333pt;}
.y6_c00159{bottom:1203.453333pt;}
.y9_c00159{bottom:1204.226667pt;}
.y7_c00159{bottom:1204.986667pt;}
.y4_c00159{bottom:1223.426667pt;}
.yec_c00159{bottom:1225.733333pt;}
.yea_c00159{bottom:1228.026667pt;}
.yeb_c00159{bottom:1229.573333pt;}
.y2_c00159{bottom:1279.493333pt;}
.y3_c00159{bottom:1280.253333pt;}
.y1_c00159{bottom:1284.093333pt;}
.h1c_c00159{height:2.764500pt;}
.h15_c00159{height:4.799479pt;}
.h3_c00159{height:5.519401pt;}
.h1b_c00159{height:8.303099pt;}
.h19_c00159{height:11.038802pt;}
.h12_c00159{height:13.822500pt;}
.h4_c00159{height:16.606198pt;}
.h1f_c00159{height:19.341901pt;}
.h21_c00159{height:20.009167pt;}
.h2_c00159{height:22.125599pt;}
.h20_c00159{height:24.861302pt;}
.h1a_c00159{height:27.645000pt;}
.hf_c00159{height:30.428698pt;}
.hb_c00159{height:33.164401pt;}
.h5_c00159{height:35.948099pt;}
.hd_c00159{height:38.683802pt;}
.h6_c00159{height:41.467500pt;}
.ha_c00159{height:44.251198pt;}
.h8_c00159{height:46.986901pt;}
.he_c00159{height:49.770599pt;}
.h7_c00159{height:52.506302pt;}
.h17_c00159{height:55.290000pt;}
.h16_c00159{height:58.073698pt;}
.h1d_c00159{height:59.611198pt;}
.hc_c00159{height:60.809401pt;}
.h11_c00159{height:62.346901pt;}
.h9_c00159{height:63.593099pt;}
.h1e_c00159{height:66.328802pt;}
.h10_c00159{height:69.112500pt;}
.h14_c00159{height:71.896198pt;}
.h13_c00159{height:74.631901pt;}
.h18_c00159{height:77.415599pt;}
.h1_c00159{height:1335.333333pt;}
.h0_c00159{height:1335.546667pt;}
.w0_c00159{width:988.413333pt;}
.w1_c00159{width:988.666667pt;}
.x0_c00159{left:0.000000pt;}
.xaf_c00159{left:2.306667pt;}
.xb0_c00159{left:13.826667pt;}
.x71_c00159{left:203.520000pt;}
.x93_c00159{left:212.733333pt;}
.x72_c00159{left:215.040000pt;}
.x5_c00159{left:218.106667pt;}
.x53_c00159{left:223.493333pt;}
.x54_c00159{left:228.093333pt;}
.x94_c00159{left:234.240000pt;}
.x98_c00159{left:235.773333pt;}
.x3e_c00159{left:237.306667pt;}
.x6c_c00159{left:238.853333pt;}
.x11_c00159{left:241.146667pt;}
.x6_c00159{left:242.693333pt;}
.xa5_c00159{left:254.973333pt;}
.x25_c00159{left:256.506667pt;}
.x89_c00159{left:258.813333pt;}
.x3f_c00159{left:262.653333pt;}
.x12_c00159{left:269.573333pt;}
.x5f_c00159{left:271.106667pt;}
.x80_c00159{left:272.640000pt;}
.x9a_c00159{left:274.173333pt;}
.xa0_c00159{left:279.546667pt;}
.x13_c00159{left:288.000000pt;}
.x5a_c00159{left:291.840000pt;}
.x26_c00159{left:293.373333pt;}
.x8d_c00159{left:296.453333pt;}
.x2a_c00159{left:298.746667pt;}
.x55_c00159{left:301.826667pt;}
.x81_c00159{left:304.133333pt;}
.x4a_c00159{left:306.426667pt;}
.x7_c00159{left:311.813333pt;}
.x8e_c00159{left:314.880000pt;}
.x78_c00159{left:317.186667pt;}
.x40_c00159{left:319.493333pt;}
.x2b_c00159{left:321.786667pt;}
.x34_c00159{left:324.093333pt;}
.x84_c00159{left:326.400000pt;}
.x9b_c00159{left:328.706667pt;}
.xa1_c00159{left:330.240000pt;}
.x1e_c00159{left:331.773333pt;}
.x27_c00159{left:335.613333pt;}
.x67_c00159{left:337.146667pt;}
.xa4_c00159{left:346.373333pt;}
.x60_c00159{left:347.906667pt;}
.x4_c00159{left:351.746667pt;}
.x56_c00159{left:355.586667pt;}
.x35_c00159{left:358.653333pt;}
.x14_c00159{left:360.960000pt;}
.xa9_c00159{left:363.266667pt;}
.x8_c00159{left:364.800000pt;}
.x82_c00159{left:370.173333pt;}
.x2c_c00159{left:372.480000pt;}
.x5b_c00159{left:374.786667pt;}
.xa6_c00159{left:377.853333pt;}
.x79_c00159{left:379.386667pt;}
.x68_c00159{left:383.226667pt;}
.x9_c00159{left:384.773333pt;}
.x7a_c00159{left:387.840000pt;}
.x73_c00159{left:390.146667pt;}
.x36_c00159{left:391.680000pt;}
.x15_c00159{left:402.426667pt;}
.x41_c00159{left:407.813333pt;}
.x37_c00159{left:410.106667pt;}
.x1f_c00159{left:420.093333pt;}
.x2d_c00159{left:422.400000pt;}
.x74_c00159{left:425.466667pt;}
.x9c_c00159{left:428.546667pt;}
.xa2_c00159{left:430.853333pt;}
.xaa_c00159{left:437.760000pt;}
.x16_c00159{left:439.293333pt;}
.xa_c00159{left:441.600000pt;}
.x85_c00159{left:443.133333pt;}
.x69_c00159{left:445.440000pt;}
.xab_c00159{left:449.280000pt;}
.xa7_c00159{left:450.813333pt;}
.x99_c00159{left:452.346667pt;}
.xb_c00159{left:456.186667pt;}
.x4b_c00159{left:459.266667pt;}
.x8a_c00159{left:460.800000pt;}
.x38_c00159{left:462.333333pt;}
.x20_c00159{left:463.866667pt;}
.x8f_c00159{left:466.946667pt;}
.x61_c00159{left:468.480000pt;}
.x2e_c00159{left:470.786667pt;}
.xa3_c00159{left:473.093333pt;}
.x6a_c00159{left:476.933333pt;}
.xa8_c00159{left:485.373333pt;}
.x90_c00159{left:492.293333pt;}
.x42_c00159{left:494.586667pt;}
.x6d_c00159{left:499.200000pt;}
.xc_c00159{left:509.186667pt;}
.x86_c00159{left:510.720000pt;}
.x75_c00159{left:512.253333pt;}
.x39_c00159{left:513.786667pt;}
.x2f_c00159{left:515.333333pt;}
.xac_c00159{left:523.013333pt;}
.x6e_c00159{left:525.306667pt;}
.x30_c00159{left:528.386667pt;}
.x8b_c00159{left:529.920000pt;}
.x62_c00159{left:532.986667pt;}
.x4c_c00159{left:534.533333pt;}
.x5c_c00159{left:536.826667pt;}
.x17_c00159{left:538.373333pt;}
.xd_c00159{left:542.973333pt;}
.xad_c00159{left:544.506667pt;}
.x9d_c00159{left:547.586667pt;}
.x95_c00159{left:549.120000pt;}
.x9e_c00159{left:556.026667pt;}
.x43_c00159{left:557.573333pt;}
.x3a_c00159{left:569.853333pt;}
.x4d_c00159{left:571.386667pt;}
.x18_c00159{left:572.933333pt;}
.xe_c00159{left:576.000000pt;}
.x6b_c00159{left:579.066667pt;}
.x5d_c00159{left:582.146667pt;}
.x7b_c00159{left:585.213333pt;}
.x91_c00159{left:589.053333pt;}
.x4e_c00159{left:592.133333pt;}
.xf_c00159{left:593.666667pt;}
.x63_c00159{left:595.200000pt;}
.x44_c00159{left:600.573333pt;}
.x21_c00159{left:602.880000pt;}
.x9f_c00159{left:604.413333pt;}
.x19_c00159{left:608.253333pt;}
.x57_c00159{left:612.093333pt;}
.x6f_c00159{left:621.306667pt;}
.x1a_c00159{left:625.920000pt;}
.x96_c00159{left:628.226667pt;}
.x3b_c00159{left:630.533333pt;}
.x7c_c00159{left:638.973333pt;}
.x58_c00159{left:642.053333pt;}
.x4f_c00159{left:644.346667pt;}
.x64_c00159{left:645.893333pt;}
.x22_c00159{left:647.426667pt;}
.x45_c00159{left:648.960000pt;}
.x1_c00159{left:656.640000pt;}
.x7d_c00159{left:658.173333pt;}
.x2_c00159{left:661.253333pt;}
.x92_c00159{left:664.320000pt;}
.x1b_c00159{left:665.853333pt;}
.x46_c00159{left:667.386667pt;}
.x59_c00159{left:668.933333pt;}
.x3_c00159{left:672.000000pt;}
.x76_c00159{left:675.066667pt;}
.x28_c00159{left:678.906667pt;}
.x23_c00159{left:683.520000pt;}
.x31_c00159{left:688.133333pt;}
.x77_c00159{left:691.973333pt;}
.x50_c00159{left:694.266667pt;}
.x87_c00159{left:698.880000pt;}
.x7e_c00159{left:702.720000pt;}
.x24_c00159{left:705.786667pt;}
.x51_c00159{left:708.866667pt;}
.x47_c00159{left:710.400000pt;}
.x83_c00159{left:712.706667pt;}
.x97_c00159{left:718.080000pt;}
.x48_c00159{left:719.613333pt;}
.x70_c00159{left:721.146667pt;}
.x65_c00159{left:722.693333pt;}
.x66_c00159{left:731.906667pt;}
.x49_c00159{left:736.506667pt;}
.x8c_c00159{left:738.813333pt;}
.x7f_c00159{left:741.120000pt;}
.x88_c00159{left:743.426667pt;}
.x32_c00159{left:748.026667pt;}
.x3c_c00159{left:752.640000pt;}
.x10_c00159{left:754.946667pt;}
.x52_c00159{left:759.546667pt;}
.x5e_c00159{left:761.093333pt;}
.x1c_c00159{left:762.626667pt;}
.x3d_c00159{left:769.533333pt;}
.x33_c00159{left:771.840000pt;}
.x29_c00159{left:774.906667pt;}
.x1d_c00159{left:776.453333pt;}
.xae_c00159{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_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_fc9770448a7d2668a945a52a.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.109863;font-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_c00160{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00160{transform:matrix(0.036700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036700,0.000000,0.000000,0.250000,0,0);}
.m26_c00160{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);}
.m88_c00160{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.mb9_c00160{transform:matrix(0.107725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107725,0.000000,0.000000,0.250000,0,0);}
.me4_c00160{transform:matrix(0.111450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111450,0.000000,0.000000,0.250000,0,0);}
.m114_c00160{transform:matrix(0.121450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121450,0.000000,0.000000,0.250000,0,0);}
.mc0_c00160{transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);}
.ma0_c00160{transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);}
.mc7_c00160{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m3d_c00160{transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);}
.me7_c00160{transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);}
.mcf_c00160{transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);}
.mde_c00160{transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);}
.md_c00160{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00160{transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);}
.m92_c00160{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.me2_c00160{transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);}
.m6b_c00160{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m4b_c00160{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.mbf_c00160{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.me9_c00160{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.mbb_c00160{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.mec_c00160{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.mab_c00160{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.ma5_c00160{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.mbd_c00160{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.me6_c00160{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m117_c00160{transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);}
.m83_c00160{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);}
.m97_c00160{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m75_c00160{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);}
.mda_c00160{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m2f_c00160{transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);}
.ma_c00160{transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);}
.mf3_c00160{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.meb_c00160{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);}
.m59_c00160{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);}
.mb2_c00160{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);}
.m20_c00160{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.me1_c00160{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.md8_c00160{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.m5d_c00160{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);}
.m3c_c00160{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.me5_c00160{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);}
.m10d_c00160{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.mc4_c00160{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);}
.mfd_c00160{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);}
.mee_c00160{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);}
.mf5_c00160{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);}
.ma2_c00160{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.ma3_c00160{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.m73_c00160{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.mdb_c00160{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.mfe_c00160{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m84_c00160{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);}
.m10f_c00160{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);}
.ma1_c00160{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.me3_c00160{transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);}
.m100_c00160{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);}
.mce_c00160{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);}
.m87_c00160{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.mb0_c00160{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);}
.m91_c00160{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);}
.mf1_c00160{transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);}
.mf4_c00160{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mb1_c00160{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);}
.m7b_c00160{transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);}
.m3a_c00160{transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);}
.m90_c00160{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);}
.mb7_c00160{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m25_c00160{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);}
.ma9_c00160{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m116_c00160{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m4c_c00160{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m23_c00160{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.md7_c00160{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);}
.mbc_c00160{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m30_c00160{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);}
.mcc_c00160{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);}
.m22_c00160{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);}
.m85_c00160{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);}
.mf_c00160{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m113_c00160{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.ma7_c00160{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.maa_c00160{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);}
.m68_c00160{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);}
.m107_c00160{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.m9e_c00160{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);}
.m1c_c00160{transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);}
.mba_c00160{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);}
.m6c_c00160{transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);}
.md6_c00160{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);}
.m78_c00160{transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);}
.mf2_c00160{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);}
.m5c_c00160{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.m10b_c00160{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.m103_c00160{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);}
.mf8_c00160{transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);}
.mb3_c00160{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);}
.m8a_c00160{transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);}
.m5a_c00160{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);}
.m55_c00160{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m8d_c00160{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m9d_c00160{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);}
.me0_c00160{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);}
.mf6_c00160{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m109_c00160{transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);}
.ma4_c00160{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);}
.m7d_c00160{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);}
.m106_c00160{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.m105_c00160{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m63_c00160{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);}
.m9f_c00160{transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);}
.mc3_c00160{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.m98_c00160{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);}
.m110_c00160{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);}
.md3_c00160{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);}
.m8c_c00160{transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);}
.m3b_c00160{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.mc6_c00160{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.m3e_c00160{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);}
.m5f_c00160{transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);}
.m95_c00160{transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);}
.mad_c00160{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m93_c00160{transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);}
.md2_c00160{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);}
.m36_c00160{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);}
.m27_c00160{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.ma6_c00160{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m8f_c00160{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);}
.m7e_c00160{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m99_c00160{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);}
.m9b_c00160{transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);}
.m9c_c00160{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);}
.mc5_c00160{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);}
.m8_c00160{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);}
.mac_c00160{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);}
.m60_c00160{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);}
.mc8_c00160{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);}
.mb6_c00160{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.mbe_c00160{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m81_c00160{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);}
.mfc_c00160{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);}
.m112_c00160{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.mfb_c00160{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);}
.m115_c00160{transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);}
.mcb_c00160{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.me_c00160{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);}
.mca_c00160{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.maf_c00160{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);}
.m74_c00160{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);}
.mb8_c00160{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.m7c_c00160{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.m7f_c00160{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);}
.mc2_c00160{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);}
.med_c00160{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);}
.mae_c00160{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.mb5_c00160{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);}
.m10a_c00160{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);}
.m6e_c00160{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);}
.m31_c00160{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m82_c00160{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);}
.m9_c00160{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);}
.m7a_c00160{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);}
.m5_c00160{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);}
.m3_c00160{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m61_c00160{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00160{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m71_c00160{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);}
.m1d_c00160{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m65_c00160{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);}
.m12_c00160{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);}
.m28_c00160{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m50_c00160{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);}
.m2e_c00160{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00160{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00160{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);}
.m2b_c00160{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m44_c00160{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);}
.mb_c00160{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);}
.m10_c00160{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c00160{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m35_c00160{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);}
.m69_c00160{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00160{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00160{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);}
.m38_c00160{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00160{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00160{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00160{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00160{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00160{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m62_c00160{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md4_c00160{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00160{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);}
.m70_c00160{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m24_c00160{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m15_c00160{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m42_c00160{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m37_c00160{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_c00160{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);}
.m32_c00160{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mff_c00160{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m86_c00160{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);}
.m1f_c00160{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18_c00160{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m41_c00160{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00160{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c00160{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m4_c00160{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);}
.m94_c00160{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m29_c00160{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m52_c00160{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);}
.m1_c00160{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00160{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00160{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00160{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m76_c00160{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m72_c00160{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m54_c00160{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m51_c00160{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);}
.mc9_c00160{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);}
.m46_c00160{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m34_c00160{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);}
.m43_c00160{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m45_c00160{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m11_c00160{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);}
.m102_c00160{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00160{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mc_c00160{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m111_c00160{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m53_c00160{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m16_c00160{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m57_c00160{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00160{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);}
.m40_c00160{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m49_c00160{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00160{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m6_c00160{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00160{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m64_c00160{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m14_c00160{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m66_c00160{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m96_c00160{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m13_c00160{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);}
.m108_c00160{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00160{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00160{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m104_c00160{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);}
.m101_c00160{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);}
.m8b_c00160{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00160{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);}
.m21_c00160{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.md1_c00160{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00160{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);}
.m48_c00160{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00160{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m47_c00160{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m80_c00160{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m119_c00160{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m39_c00160{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m56_c00160{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00160{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00160{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);}
.mf0_c00160{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.mef_c00160{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m89_c00160{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m77_c00160{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.md9_c00160{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.mea_c00160{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.me8_c00160{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00160{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m118_c00160{transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00160{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.md5_c00160{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00160{transform:matrix(0.965000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.965000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.965000,0.000000,0.000000,0.250000,0,0);}
.m67_c00160{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m58_c00160{transform:matrix(1.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.665000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00160{transform:matrix(4.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.097500,0.000000,0.000000,0.250000,0,0);}
.md0_c00160{transform:matrix(4.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.235000,0.000000,0.000000,0.250000,0,0);}
.m79_c00160{transform:matrix(5.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.792500,0.000000,0.000000,0.250000,0,0);}
.v1_c00160{vertical-align:-17.280000px;}
.v3_c00160{vertical-align:-3.480000px;}
.v0_c00160{vertical-align:0.000000px;}
.v2_c00160{vertical-align:3.480000px;}
.ls2_c00160{letter-spacing:0.000000px;}
.ls0_c00160{letter-spacing:31.112700px;}
.ls1_c00160{letter-spacing:207.557400px;}
.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;}
}
.ws1_c00160{word-spacing:-18.475980px;}
.ws0_c00160{word-spacing:-5.828640px;}
.ws2_c00160{word-spacing:-4.155120px;}
.ws4_c00160{word-spacing:0.000000px;}
.ws3_c00160{word-spacing:2.519640px;}
.fc0_c00160{color:transparent;}
.fs8_c00160{font-size:3.456000px;}
.fs10_c00160{font-size:6.000000px;}
.fs12_c00160{font-size:6.900000px;}
.fse_c00160{font-size:10.380000px;}
.fs16_c00160{font-size:13.800000px;}
.fs13_c00160{font-size:17.280000px;}
.fsa_c00160{font-size:20.760000px;}
.fs17_c00160{font-size:24.180000px;}
.fs19_c00160{font-size:27.660000px;}
.fs14_c00160{font-size:31.080000px;}
.fs4_c00160{font-size:34.560000px;}
.fsc_c00160{font-size:38.040000px;}
.fs18_c00160{font-size:41.460000px;}
.fsb_c00160{font-size:44.940000px;}
.fs15_c00160{font-size:48.360000px;}
.fsd_c00160{font-size:51.840000px;}
.fs5_c00160{font-size:55.320000px;}
.fs0_c00160{font-size:58.740000px;}
.fs1_c00160{font-size:62.220000px;}
.fs3_c00160{font-size:65.640000px;}
.fs2_c00160{font-size:69.120000px;}
.fs7_c00160{font-size:72.600000px;}
.fs6_c00160{font-size:76.020000px;}
.fsf_c00160{font-size:79.500000px;}
.fs9_c00160{font-size:82.920000px;}
.fs1c_c00160{font-size:86.400000px;}
.fs11_c00160{font-size:89.880000px;}
.fs1a_c00160{font-size:93.300000px;}
.fs1d_c00160{font-size:96.780000px;}
.fs1b_c00160{font-size:103.680000px;}
.y0_c00160{bottom:0.000000px;}
.y165_c00160{bottom:221.190000px;}
.y166_c00160{bottom:228.960000px;}
.y164_c00160{bottom:230.685000px;}
.y15f_c00160{bottom:238.470000px;}
.y162_c00160{bottom:239.325000px;}
.y161_c00160{bottom:240.195000px;}
.y163_c00160{bottom:241.050000px;}
.y15e_c00160{bottom:242.790000px;}
.y15d_c00160{bottom:243.645000px;}
.y160_c00160{bottom:250.560000px;}
.y15c_c00160{bottom:256.605000px;}
.y157_c00160{bottom:257.475000px;}
.y158_c00160{bottom:258.330000px;}
.y15b_c00160{bottom:259.200000px;}
.y159_c00160{bottom:260.925000px;}
.y155_c00160{bottom:263.520000px;}
.y156_c00160{bottom:265.245000px;}
.y15a_c00160{bottom:271.290000px;}
.y152_c00160{bottom:280.800000px;}
.y153_c00160{bottom:282.525000px;}
.y14e_c00160{bottom:283.395000px;}
.y14f_c00160{bottom:284.250000px;}
.y150_c00160{bottom:285.120000px;}
.y151_c00160{bottom:285.990000px;}
.y154_c00160{bottom:286.845000px;}
.y147_c00160{bottom:299.805000px;}
.y148_c00160{bottom:301.530000px;}
.y14d_c00160{bottom:304.125000px;}
.y146_c00160{bottom:304.995000px;}
.y14a_c00160{bottom:305.850000px;}
.y149_c00160{bottom:306.720000px;}
.y14b_c00160{bottom:311.910000px;}
.y14c_c00160{bottom:314.490000px;}
.y13f_c00160{bottom:320.550000px;}
.y141_c00160{bottom:322.275000px;}
.y13e_c00160{bottom:324.870000px;}
.y140_c00160{bottom:325.725000px;}
.y144_c00160{bottom:326.595000px;}
.y143_c00160{bottom:327.450000px;}
.y142_c00160{bottom:328.320000px;}
.y145_c00160{bottom:341.280000px;}
.y139_c00160{bottom:343.875000px;}
.y13d_c00160{bottom:344.730000px;}
.y136_c00160{bottom:345.600000px;}
.y135_c00160{bottom:346.470000px;}
.y138_c00160{bottom:347.325000px;}
.y13a_c00160{bottom:348.195000px;}
.y137_c00160{bottom:349.050000px;}
.y13b_c00160{bottom:358.560000px;}
.y13c_c00160{bottom:360.285000px;}
.y12d_c00160{bottom:362.010000px;}
.y132_c00160{bottom:363.750000px;}
.y12e_c00160{bottom:367.200000px;}
.y130_c00160{bottom:368.070000px;}
.y131_c00160{bottom:368.925000px;}
.y133_c00160{bottom:369.795000px;}
.y134_c00160{bottom:371.520000px;}
.y12f_c00160{bottom:374.115000px;}
.y126_c00160{bottom:382.755000px;}
.y12a_c00160{bottom:383.610000px;}
.y12c_c00160{bottom:386.205000px;}
.y125_c00160{bottom:387.075000px;}
.y129_c00160{bottom:387.930000px;}
.y128_c00160{bottom:388.800000px;}
.y127_c00160{bottom:396.570000px;}
.y12b_c00160{bottom:401.760000px;}
.y121_c00160{bottom:403.485000px;}
.y120_c00160{bottom:404.355000px;}
.y11d_c00160{bottom:406.080000px;}
.y11e_c00160{bottom:406.950000px;}
.y11f_c00160{bottom:407.805000px;}
.y122_c00160{bottom:409.530000px;}
.y123_c00160{bottom:411.270000px;}
.y124_c00160{bottom:414.720000px;}
.y115_c00160{bottom:421.635000px;}
.y114_c00160{bottom:422.490000px;}
.y119_c00160{bottom:424.230000px;}
.y11b_c00160{bottom:425.085000px;}
.y117_c00160{bottom:425.955000px;}
.y11c_c00160{bottom:426.810000px;}
.y113_c00160{bottom:427.680000px;}
.y11a_c00160{bottom:429.405000px;}
.y116_c00160{bottom:432.870000px;}
.y118_c00160{bottom:434.595000px;}
.y10e_c00160{bottom:447.555000px;}
.y10d_c00160{bottom:448.410000px;}
.y110_c00160{bottom:449.280000px;}
.y112_c00160{bottom:451.875000px;}
.y10f_c00160{bottom:454.470000px;}
.y111_c00160{bottom:457.920000px;}
.y106_c00160{bottom:463.110000px;}
.y107_c00160{bottom:463.965000px;}
.y105_c00160{bottom:464.835000px;}
.y109_c00160{bottom:465.690000px;}
.y104_c00160{bottom:468.285000px;}
.y108_c00160{bottom:470.010000px;}
.y10c_c00160{bottom:470.880000px;}
.y10a_c00160{bottom:472.605000px;}
.y10b_c00160{bottom:476.070000px;}
.yfe_c00160{bottom:485.565000px;}
.yff_c00160{bottom:486.435000px;}
.y103_c00160{bottom:487.290000px;}
.yfc_c00160{bottom:488.160000px;}
.yfd_c00160{bottom:489.030000px;}
.y102_c00160{bottom:489.885000px;}
.y101_c00160{bottom:491.610000px;}
.y100_c00160{bottom:492.480000px;}
.yf1_c00160{bottom:505.440000px;}
.yf8_c00160{bottom:506.310000px;}
.yfa_c00160{bottom:507.165000px;}
.yf7_c00160{bottom:508.035000px;}
.yf4_c00160{bottom:511.485000px;}
.yf9_c00160{bottom:512.355000px;}
.yf6_c00160{bottom:513.210000px;}
.yf2_c00160{bottom:514.080000px;}
.yfb_c00160{bottom:522.720000px;}
.yf3_c00160{bottom:523.590000px;}
.yec_c00160{bottom:525.315000px;}
.yf5_c00160{bottom:526.170000px;}
.yed_c00160{bottom:527.040000px;}
.yf0_c00160{bottom:527.910000px;}
.yef_c00160{bottom:531.360000px;}
.yee_c00160{bottom:532.230000px;}
.ye2_c00160{bottom:545.190000px;}
.ye4_c00160{bottom:546.045000px;}
.ye6_c00160{bottom:547.770000px;}
.ye9_c00160{bottom:548.640000px;}
.ye5_c00160{bottom:549.510000px;}
.ye3_c00160{bottom:551.235000px;}
.ye7_c00160{bottom:552.090000px;}
.yeb_c00160{bottom:552.960000px;}
.yea_c00160{bottom:553.830000px;}
.ydd_c00160{bottom:565.920000px;}
.ye8_c00160{bottom:566.790000px;}
.yde_c00160{bottom:567.645000px;}
.ye0_c00160{bottom:569.370000px;}
.ydf_c00160{bottom:572.835000px;}
.ye1_c00160{bottom:573.690000px;}
.y1bf_c00160{bottom:577.155000px;}
.y1be_c00160{bottom:579.750000px;}
.yd9_c00160{bottom:589.245000px;}
.yda_c00160{bottom:592.710000px;}
.ydb_c00160{bottom:593.565000px;}
.yd8_c00160{bottom:598.755000px;}
.ydc_c00160{bottom:606.525000px;}
.yd3_c00160{bottom:609.120000px;}
.yd7_c00160{bottom:609.990000px;}
.yd1_c00160{bottom:611.715000px;}
.yd2_c00160{bottom:612.570000px;}
.yd5_c00160{bottom:614.310000px;}
.yd6_c00160{bottom:615.165000px;}
.yd4_c00160{bottom:616.890000px;}
.ycb_c00160{bottom:627.270000px;}
.yc9_c00160{bottom:628.995000px;}
.ycd_c00160{bottom:629.850000px;}
.yc7_c00160{bottom:631.590000px;}
.yc8_c00160{bottom:632.445000px;}
.yca_c00160{bottom:633.315000px;}
.yce_c00160{bottom:635.040000px;}
.ycf_c00160{bottom:635.910000px;}
.ycc_c00160{bottom:636.765000px;}
.yd0_c00160{bottom:638.490000px;}
.ybf_c00160{bottom:648.000000px;}
.yc2_c00160{bottom:649.725000px;}
.yc4_c00160{bottom:650.595000px;}
.ybd_c00160{bottom:651.450000px;}
.yc1_c00160{bottom:652.320000px;}
.yc0_c00160{bottom:653.190000px;}
.yc3_c00160{bottom:654.045000px;}
.yc6_c00160{bottom:654.915000px;}
.ybe_c00160{bottom:663.555000px;}
.yc5_c00160{bottom:664.410000px;}
.yb1_c00160{bottom:668.730000px;}
.yb8_c00160{bottom:669.600000px;}
.yb7_c00160{bottom:670.470000px;}
.yb5_c00160{bottom:671.325000px;}
.yb0_c00160{bottom:672.195000px;}
.yb2_c00160{bottom:673.050000px;}
.yb3_c00160{bottom:673.920000px;}
.ybb_c00160{bottom:674.790000px;}
.yb6_c00160{bottom:675.645000px;}
.ybc_c00160{bottom:676.515000px;}
.yb9_c00160{bottom:677.370000px;}
.yba_c00160{bottom:683.430000px;}
.yb4_c00160{bottom:685.155000px;}
.ya7_c00160{bottom:687.750000px;}
.ya8_c00160{bottom:688.605000px;}
.ya6_c00160{bottom:689.475000px;}
.yac_c00160{bottom:690.330000px;}
.yab_c00160{bottom:692.070000px;}
.yaa_c00160{bottom:692.925000px;}
.ya9_c00160{bottom:693.795000px;}
.yad_c00160{bottom:695.520000px;}
.yae_c00160{bottom:696.390000px;}
.yaf_c00160{bottom:697.245000px;}
.y9f_c00160{bottom:707.610000px;}
.ya0_c00160{bottom:708.480000px;}
.ya1_c00160{bottom:709.350000px;}
.y9e_c00160{bottom:711.930000px;}
.ya3_c00160{bottom:712.800000px;}
.ya2_c00160{bottom:714.525000px;}
.ya4_c00160{bottom:715.395000px;}
.ya5_c00160{bottom:716.250000px;}
.y9a_c00160{bottom:726.630000px;}
.y99_c00160{bottom:727.485000px;}
.y9b_c00160{bottom:728.355000px;}
.y9c_c00160{bottom:732.675000px;}
.y9d_c00160{bottom:733.530000px;}
.y95_c00160{bottom:748.230000px;}
.y96_c00160{bottom:752.550000px;}
.y97_c00160{bottom:753.405000px;}
.y98_c00160{bottom:762.045000px;}
.y94_c00160{bottom:768.960000px;}
.y93_c00160{bottom:771.555000px;}
.y1ba_c00160{bottom:775.005000px;}
.y1b9_c00160{bottom:775.875000px;}
.y1bb_c00160{bottom:776.730000px;}
.y1bc_c00160{bottom:777.600000px;}
.y90_c00160{bottom:787.965000px;}
.y91_c00160{bottom:788.835000px;}
.y8f_c00160{bottom:789.690000px;}
.y8d_c00160{bottom:790.560000px;}
.y8e_c00160{bottom:792.285000px;}
.y92_c00160{bottom:793.155000px;}
.y87_c00160{bottom:806.115000px;}
.y88_c00160{bottom:812.160000px;}
.y89_c00160{bottom:813.030000px;}
.y8a_c00160{bottom:813.885000px;}
.y1b6_c00160{bottom:814.755000px;}
.y1b7_c00160{bottom:815.610000px;}
.y8b_c00160{bottom:816.480000px;}
.y1b8_c00160{bottom:818.205000px;}
.y8c_c00160{bottom:825.120000px;}
.y83_c00160{bottom:825.990000px;}
.y84_c00160{bottom:826.845000px;}
.y82_c00160{bottom:827.715000px;}
.y1b3_c00160{bottom:830.310000px;}
.y81_c00160{bottom:831.165000px;}
.y1b5_c00160{bottom:832.035000px;}
.y85_c00160{bottom:832.890000px;}
.y86_c00160{bottom:833.760000px;}
.y1b2_c00160{bottom:834.630000px;}
.y1b4_c00160{bottom:837.210000px;}
.y7c_c00160{bottom:847.590000px;}
.y7d_c00160{bottom:848.445000px;}
.y7e_c00160{bottom:850.170000px;}
.y7b_c00160{bottom:851.910000px;}
.y7f_c00160{bottom:852.765000px;}
.y80_c00160{bottom:853.635000px;}
.y1b1_c00160{bottom:854.490000px;}
.y1af_c00160{bottom:856.230000px;}
.y1b0_c00160{bottom:857.085000px;}
.y7a_c00160{bottom:858.810000px;}
.y76_c00160{bottom:866.595000px;}
.y78_c00160{bottom:870.915000px;}
.y77_c00160{bottom:873.510000px;}
.y79_c00160{bottom:874.365000px;}
.y1ac_c00160{bottom:876.090000px;}
.y1ad_c00160{bottom:876.960000px;}
.y1ae_c00160{bottom:878.685000px;}
.y73_c00160{bottom:890.790000px;}
.y72_c00160{bottom:892.515000px;}
.y74_c00160{bottom:893.370000px;}
.y75_c00160{bottom:894.240000px;}
.y1aa_c00160{bottom:895.965000px;}
.y1ab_c00160{bottom:904.605000px;}
.y70_c00160{bottom:908.070000px;}
.y6d_c00160{bottom:908.925000px;}
.y71_c00160{bottom:911.520000px;}
.y6e_c00160{bottom:912.390000px;}
.y6f_c00160{bottom:913.245000px;}
.y6c_c00160{bottom:914.115000px;}
.y1a7_c00160{bottom:916.710000px;}
.y1a8_c00160{bottom:917.565000px;}
.y1a9_c00160{bottom:919.290000px;}
.y67_c00160{bottom:927.930000px;}
.y66_c00160{bottom:932.250000px;}
.y68_c00160{bottom:933.120000px;}
.y69_c00160{bottom:934.845000px;}
.y6a_c00160{bottom:935.715000px;}
.y1a4_c00160{bottom:936.570000px;}
.y6b_c00160{bottom:937.440000px;}
.y1a5_c00160{bottom:938.310000px;}
.y1a6_c00160{bottom:940.035000px;}
.y62_c00160{bottom:946.080000px;}
.y63_c00160{bottom:948.675000px;}
.y64_c00160{bottom:951.270000px;}
.y19e_c00160{bottom:952.125000px;}
.y65_c00160{bottom:955.590000px;}
.y19f_c00160{bottom:956.445000px;}
.y1a3_c00160{bottom:957.315000px;}
.y1a0_c00160{bottom:959.040000px;}
.y1a1_c00160{bottom:959.910000px;}
.y1a2_c00160{bottom:968.550000px;}
.y60_c00160{bottom:970.275000px;}
.y5f_c00160{bottom:972.870000px;}
.y61_c00160{bottom:974.595000px;}
.y199_c00160{bottom:977.190000px;}
.y19a_c00160{bottom:978.045000px;}
.y19c_c00160{bottom:979.770000px;}
.y1bd_c00160{bottom:981.510000px;}
.y19b_c00160{bottom:985.830000px;}
.y59_c00160{bottom:987.555000px;}
.y5b_c00160{bottom:988.410000px;}
.y19d_c00160{bottom:989.280000px;}
.y5e_c00160{bottom:991.005000px;}
.y5a_c00160{bottom:992.730000px;}
.y196_c00160{bottom:993.600000px;}
.y5c_c00160{bottom:995.325000px;}
.y5d_c00160{bottom:996.195000px;}
.y195_c00160{bottom:997.050000px;}
.y198_c00160{bottom:997.920000px;}
.y197_c00160{bottom:998.790000px;}
.y56_c00160{bottom:1004.835000px;}
.y57_c00160{bottom:1006.560000px;}
.y55_c00160{bottom:1007.430000px;}
.y58_c00160{bottom:1008.285000px;}
.y190_c00160{bottom:1016.070000px;}
.y193_c00160{bottom:1017.795000px;}
.y18f_c00160{bottom:1018.650000px;}
.y192_c00160{bottom:1019.520000px;}
.y191_c00160{bottom:1020.390000px;}
.y194_c00160{bottom:1022.115000px;}
.y46_c00160{bottom:1031.610000px;}
.y47_c00160{bottom:1034.205000px;}
.y48_c00160{bottom:1035.075000px;}
.y49_c00160{bottom:1035.930000px;}
.y4a_c00160{bottom:1036.800000px;}
.y18c_c00160{bottom:1039.395000px;}
.y18e_c00160{bottom:1041.120000px;}
.y18d_c00160{bottom:1044.570000px;}
.y18b_c00160{bottom:1048.890000px;}
.y45_c00160{bottom:1050.630000px;}
.y41_c00160{bottom:1054.080000px;}
.y42_c00160{bottom:1054.950000px;}
.y185_c00160{bottom:1055.805000px;}
.y43_c00160{bottom:1056.675000px;}
.y44_c00160{bottom:1057.530000px;}
.y186_c00160{bottom:1060.125000px;}
.y187_c00160{bottom:1060.995000px;}
.y188_c00160{bottom:1061.850000px;}
.y18a_c00160{bottom:1062.720000px;}
.y189_c00160{bottom:1075.680000px;}
.y40_c00160{bottom:1076.550000px;}
.y183_c00160{bottom:1080.000000px;}
.y182_c00160{bottom:1080.870000px;}
.y184_c00160{bottom:1083.450000px;}
.y181_c00160{bottom:1084.320000px;}
.y17a_c00160{bottom:1094.685000px;}
.y180_c00160{bottom:1095.555000px;}
.y17e_c00160{bottom:1097.280000px;}
.y17f_c00160{bottom:1098.150000px;}
.y179_c00160{bottom:1099.005000px;}
.y17b_c00160{bottom:1099.875000px;}
.y17c_c00160{bottom:1101.600000px;}
.y17d_c00160{bottom:1102.470000px;}
.y3c_c00160{bottom:1111.965000px;}
.y3d_c00160{bottom:1114.560000px;}
.y177_c00160{bottom:1117.155000px;}
.y3e_c00160{bottom:1119.750000px;}
.y175_c00160{bottom:1120.605000px;}
.y178_c00160{bottom:1123.200000px;}
.y3f_c00160{bottom:1125.795000px;}
.y176_c00160{bottom:1128.390000px;}
.y39_c00160{bottom:1137.885000px;}
.y3a_c00160{bottom:1138.755000px;}
.y3b_c00160{bottom:1139.610000px;}
.y172_c00160{bottom:1140.480000px;}
.y173_c00160{bottom:1142.205000px;}
.y174_c00160{bottom:1149.120000px;}
.y38_c00160{bottom:1156.890000px;}
.y34_c00160{bottom:1157.760000px;}
.y35_c00160{bottom:1158.630000px;}
.y36_c00160{bottom:1160.355000px;}
.y16f_c00160{bottom:1161.210000px;}
.y37_c00160{bottom:1162.080000px;}
.y170_c00160{bottom:1162.950000px;}
.y171_c00160{bottom:1164.675000px;}
.y16d_c00160{bottom:1178.490000px;}
.y30_c00160{bottom:1179.360000px;}
.y16e_c00160{bottom:1180.230000px;}
.y32_c00160{bottom:1181.085000px;}
.y16c_c00160{bottom:1181.955000px;}
.y33_c00160{bottom:1187.130000px;}
.y31_c00160{bottom:1192.320000px;}
.y2d_c00160{bottom:1194.045000px;}
.y2b_c00160{bottom:1194.915000px;}
.y2e_c00160{bottom:1196.640000px;}
.y2f_c00160{bottom:1197.510000px;}
.y2c_c00160{bottom:1198.365000px;}
.y169_c00160{bottom:1202.685000px;}
.y16a_c00160{bottom:1203.555000px;}
.y16b_c00160{bottom:1204.410000px;}
.y26_c00160{bottom:1213.920000px;}
.y2a_c00160{bottom:1216.515000px;}
.y27_c00160{bottom:1217.370000px;}
.y167_c00160{bottom:1218.240000px;}
.y28_c00160{bottom:1220.835000px;}
.y29_c00160{bottom:1222.560000px;}
.y168_c00160{bottom:1223.430000px;}
.y23_c00160{bottom:1235.520000px;}
.y20_c00160{bottom:1236.390000px;}
.y24_c00160{bottom:1238.115000px;}
.y21_c00160{bottom:1238.970000px;}
.y22_c00160{bottom:1239.840000px;}
.y25_c00160{bottom:1241.565000px;}
.y1d_c00160{bottom:1256.250000px;}
.y1c_c00160{bottom:1260.570000px;}
.y1e_c00160{bottom:1261.440000px;}
.y1f_c00160{bottom:1262.310000px;}
.y53_c00160{bottom:1264.035000px;}
.y54_c00160{bottom:1264.890000px;}
.y19_c00160{bottom:1276.125000px;}
.y1a_c00160{bottom:1277.850000px;}
.y18_c00160{bottom:1280.445000px;}
.y1b_c00160{bottom:1283.040000px;}
.y50_c00160{bottom:1283.910000px;}
.y51_c00160{bottom:1284.765000px;}
.y52_c00160{bottom:1285.635000px;}
.y15_c00160{bottom:1296.000000px;}
.y12_c00160{bottom:1297.725000px;}
.y13_c00160{bottom:1298.595000px;}
.y11_c00160{bottom:1299.450000px;}
.y14_c00160{bottom:1300.320000px;}
.y16_c00160{bottom:1302.045000px;}
.y17_c00160{bottom:1302.915000px;}
.ye_c00160{bottom:1315.875000px;}
.yd_c00160{bottom:1316.730000px;}
.y10_c00160{bottom:1317.600000px;}
.y4e_c00160{bottom:1321.920000px;}
.yf_c00160{bottom:1322.790000px;}
.y4f_c00160{bottom:1326.240000px;}
.ya_c00160{bottom:1338.330000px;}
.y9_c00160{bottom:1340.070000px;}
.yc_c00160{bottom:1340.925000px;}
.yb_c00160{bottom:1354.755000px;}
.y8_c00160{bottom:1357.350000px;}
.y4c_c00160{bottom:1359.930000px;}
.y5_c00160{bottom:1360.800000px;}
.y7_c00160{bottom:1362.525000px;}
.y6_c00160{bottom:1363.395000px;}
.y4b_c00160{bottom:1365.120000px;}
.y4d_c00160{bottom:1366.845000px;}
.y3_c00160{bottom:1391.910000px;}
.y2_c00160{bottom:1392.765000px;}
.y1_c00160{bottom:1393.635000px;}
.y4_c00160{bottom:1395.360000px;}
.ha_c00160{height:3.110063px;}
.h12_c00160{height:5.399414px;}
.h15_c00160{height:6.209326px;}
.h1c_c00160{height:6.530063px;}
.h10_c00160{height:9.340986px;}
.h19_c00160{height:12.418652px;}
.h16_c00160{height:15.550313px;}
.hc_c00160{height:18.681973px;}
.h1a_c00160{height:21.759639px;}
.h1d_c00160{height:24.891299px;}
.h17_c00160{height:27.968965px;}
.h6_c00160{height:31.100625px;}
.he_c00160{height:34.232285px;}
.h1b_c00160{height:37.309951px;}
.hd_c00160{height:40.441611px;}
.h18_c00160{height:43.519277px;}
.hf_c00160{height:46.650937px;}
.h7_c00160{height:49.782598px;}
.h2_c00160{height:52.860264px;}
.h3_c00160{height:55.991924px;}
.h13_c00160{height:56.340264px;}
.h5_c00160{height:59.069590px;}
.h4_c00160{height:62.201250px;}
.h9_c00160{height:65.332910px;}
.h8_c00160{height:68.410576px;}
.h11_c00160{height:71.542236px;}
.hb_c00160{height:74.619902px;}
.h20_c00160{height:77.751563px;}
.h14_c00160{height:80.883223px;}
.h1e_c00160{height:83.960889px;}
.h21_c00160{height:87.092549px;}
.h1f_c00160{height:93.301875px;}
.h0_c00160{height:1523.235000px;}
.h1_c00160{height:1523.250000px;}
.w0_c00160{width:1079.130000px;}
.w1_c00160{width:1079.250000px;}
.x0_c00160{left:0.000000px;}
.x74_c00160{left:221.190000px;}
.x58_c00160{left:224.640000px;}
.x97_c00160{left:226.365000px;}
.x28_c00160{left:228.960000px;}
.x53_c00160{left:234.150000px;}
.xbd_c00160{left:235.875000px;}
.x65_c00160{left:238.470000px;}
.x68_c00160{left:241.050000px;}
.xe3_c00160{left:243.645000px;}
.x6_c00160{left:245.370000px;}
.xb_c00160{left:247.110000px;}
.x12_c00160{left:248.835000px;}
.x20_c00160{left:250.560000px;}
.x2e_c00160{left:252.285000px;}
.x7c_c00160{left:254.010000px;}
.xb6_c00160{left:257.475000px;}
.x3a_c00160{left:261.795000px;}
.x13_c00160{left:269.565000px;}
.x69_c00160{left:271.290000px;}
.x1b_c00160{left:274.755000px;}
.x21_c00160{left:276.480000px;}
.x54_c00160{left:279.075000px;}
.x14_c00160{left:281.670000px;}
.x34_c00160{left:283.395000px;}
.x7d_c00160{left:285.120000px;}
.x98_c00160{left:288.570000px;}
.x86_c00160{left:292.035000px;}
.xc_c00160{left:293.760000px;}
.x3b_c00160{left:297.210000px;}
.x37_c00160{left:298.950000px;}
.x61_c00160{left:300.675000px;}
.x59_c00160{left:302.400000px;}
.x15_c00160{left:304.995000px;}
.x3c_c00160{left:307.590000px;}
.x79_c00160{left:310.170000px;}
.x32_c00160{left:311.910000px;}
.x66_c00160{left:313.635000px;}
.x1c_c00160{left:315.360000px;}
.xd3_c00160{left:317.085000px;}
.x5d_c00160{left:319.680000px;}
.xd8_c00160{left:322.275000px;}
.x2f_c00160{left:324.000000px;}
.xf_c00160{left:325.725000px;}
.xdf_c00160{left:327.450000px;}
.x55_c00160{left:329.190000px;}
.x16_c00160{left:330.915000px;}
.xc2_c00160{left:334.365000px;}
.xd_c00160{left:336.090000px;}
.x3d_c00160{left:339.555000px;}
.x7_c00160{left:341.280000px;}
.x7e_c00160{left:345.600000px;}
.x5a_c00160{left:347.325000px;}
.x24_c00160{left:349.920000px;}
.xe_c00160{left:351.645000px;}
.x3e_c00160{left:353.370000px;}
.x6c_c00160{left:355.110000px;}
.x5e_c00160{left:356.835000px;}
.x22_c00160{left:358.560000px;}
.x2c_c00160{left:360.285000px;}
.x29_c00160{left:363.750000px;}
.x35_c00160{left:366.330000px;}
.x6e_c00160{left:368.925000px;}
.x62_c00160{left:372.390000px;}
.x30_c00160{left:375.840000px;}
.x5f_c00160{left:379.290000px;}
.x8_c00160{left:383.610000px;}
.x25_c00160{left:385.350000px;}
.xcc_c00160{left:387.930000px;}
.x6a_c00160{left:389.670000px;}
.x19_c00160{left:391.395000px;}
.x76_c00160{left:394.845000px;}
.x5b_c00160{left:398.310000px;}
.x6f_c00160{left:400.890000px;}
.x36_c00160{left:402.630000px;}
.x1d_c00160{left:404.355000px;}
.x3f_c00160{left:406.950000px;}
.x17_c00160{left:408.675000px;}
.x9_c00160{left:410.400000px;}
.x99_c00160{left:412.125000px;}
.x72_c00160{left:414.720000px;}
.x56_c00160{left:416.445000px;}
.xae_c00160{left:420.765000px;}
.x67_c00160{left:422.490000px;}
.x10_c00160{left:429.405000px;}
.x26_c00160{left:432.870000px;}
.x1e_c00160{left:434.595000px;}
.x38_c00160{left:437.190000px;}
.xbe_c00160{left:438.915000px;}
.x23_c00160{left:440.640000px;}
.x7a_c00160{left:442.365000px;}
.x6b_c00160{left:444.960000px;}
.x8d_c00160{left:446.685000px;}
.x2a_c00160{left:449.280000px;}
.x1a_c00160{left:455.325000px;}
.x6d_c00160{left:457.050000px;}
.x5c_c00160{left:459.645000px;}
.x31_c00160{left:461.370000px;}
.x1_c00160{left:463.110000px;}
.xbb_c00160{left:464.835000px;}
.x39_c00160{left:466.560000px;}
.x70_c00160{left:469.155000px;}
.xa_c00160{left:470.880000px;}
.x2b_c00160{left:472.605000px;}
.x57_c00160{left:475.200000px;}
.x9d_c00160{left:478.650000px;}
.x63_c00160{left:480.390000px;}
.x87_c00160{left:482.970000px;}
.xa7_c00160{left:485.565000px;}
.x2_c00160{left:488.160000px;}
.x27_c00160{left:489.885000px;}
.x11_c00160{left:492.480000px;}
.x77_c00160{left:495.930000px;}
.x60_c00160{left:497.670000px;}
.x18_c00160{left:500.250000px;}
.x1f_c00160{left:501.990000px;}
.xb7_c00160{left:504.570000px;}
.x71_c00160{left:506.310000px;}
.x33_c00160{left:510.630000px;}
.x3_c00160{left:516.675000px;}
.x64_c00160{left:521.850000px;}
.x8e_c00160{left:528.765000px;}
.x2d_c00160{left:532.230000px;}
.x78_c00160{left:534.810000px;}
.x9e_c00160{left:537.405000px;}
.x73_c00160{left:540.870000px;}
.x75_c00160{left:542.595000px;}
.x8f_c00160{left:545.190000px;}
.xbf_c00160{left:546.915000px;}
.x40_c00160{left:548.640000px;}
.xe9_c00160{left:550.365000px;}
.xf5_c00160{left:552.090000px;}
.x7f_c00160{left:553.830000px;}
.xa3_c00160{left:556.410000px;}
.x4_c00160{left:559.875000px;}
.x90_c00160{left:561.600000px;}
.x41_c00160{left:564.195000px;}
.xf9_c00160{left:565.920000px;}
.xd1_c00160{left:567.645000px;}
.x49_c00160{left:569.370000px;}
.xc9_c00160{left:571.110000px;}
.x91_c00160{left:572.835000px;}
.x42_c00160{left:576.285000px;}
.xa4_c00160{left:578.880000px;}
.xf2_c00160{left:580.605000px;}
.x92_c00160{left:582.330000px;}
.x5_c00160{left:590.115000px;}
.xf7_c00160{left:593.565000px;}
.xd9_c00160{left:597.885000px;}
.xc3_c00160{left:603.075000px;}
.xd4_c00160{left:605.670000px;}
.x80_c00160{left:608.250000px;}
.x9a_c00160{left:610.845000px;}
.xf0_c00160{left:612.570000px;}
.x93_c00160{left:616.035000px;}
.x81_c00160{left:617.760000px;}
.xda_c00160{left:619.485000px;}
.xfc_c00160{left:622.080000px;}
.x4a_c00160{left:623.805000px;}
.xdb_c00160{left:626.400000px;}
.x82_c00160{left:628.125000px;}
.x88_c00160{left:629.850000px;}
.x4e_c00160{left:631.590000px;}
.xca_c00160{left:634.170000px;}
.xfa_c00160{left:635.910000px;}
.x43_c00160{left:640.230000px;}
.xa8_c00160{left:641.955000px;}
.xb2_c00160{left:643.680000px;}
.xdc_c00160{left:646.275000px;}
.x4f_c00160{left:648.870000px;}
.x48_c00160{left:650.595000px;}
.xe0_c00160{left:653.190000px;}
.xf3_c00160{left:656.640000px;}
.xc4_c00160{left:658.365000px;}
.xdd_c00160{left:660.960000px;}
.xb8_c00160{left:663.555000px;}
.xb3_c00160{left:665.280000px;}
.x89_c00160{left:667.875000px;}
.xed_c00160{left:669.600000px;}
.xa9_c00160{left:671.325000px;}
.x9f_c00160{left:673.050000px;}
.xc5_c00160{left:676.515000px;}
.x50_c00160{left:678.240000px;}
.xcd_c00160{left:679.965000px;}
.x83_c00160{left:682.560000px;}
.xfe_c00160{left:684.285000px;}
.xaa_c00160{left:686.010000px;}
.x51_c00160{left:688.605000px;}
.xa0_c00160{left:690.330000px;}
.xe4_c00160{left:692.070000px;}
.x44_c00160{left:693.795000px;}
.xe8_c00160{left:697.245000px;}
.x7b_c00160{left:698.970000px;}
.x84_c00160{left:704.160000px;}
.xf1_c00160{left:706.755000px;}
.xfb_c00160{left:708.480000px;}
.xab_c00160{left:712.800000px;}
.xaf_c00160{left:714.525000px;}
.xad_c00160{left:717.990000px;}
.x45_c00160{left:720.570000px;}
.xbc_c00160{left:723.165000px;}
.x9b_c00160{left:726.630000px;}
.xb4_c00160{left:729.210000px;}
.xcb_c00160{left:730.950000px;}
.x52_c00160{left:732.675000px;}
.x8a_c00160{left:737.850000px;}
.xce_c00160{left:740.445000px;}
.xe6_c00160{left:742.170000px;}
.xac_c00160{left:746.490000px;}
.x94_c00160{left:749.085000px;}
.x4b_c00160{left:751.680000px;}
.xa6_c00160{left:753.405000px;}
.xee_c00160{left:755.130000px;}
.xb9_c00160{left:756.870000px;}
.xc6_c00160{left:759.450000px;}
.x4c_c00160{left:761.190000px;}
.xc0_c00160{left:763.770000px;}
.x46_c00160{left:765.510000px;}
.x95_c00160{left:767.235000px;}
.xef_c00160{left:771.555000px;}
.x8b_c00160{left:773.280000px;}
.xe1_c00160{left:775.875000px;}
.x9c_c00160{left:780.195000px;}
.xeb_c00160{left:781.920000px;}
.xa1_c00160{left:784.515000px;}
.xe2_c00160{left:786.240000px;}
.xf8_c00160{left:788.835000px;}
.xd5_c00160{left:790.560000px;}
.x4d_c00160{left:796.605000px;}
.x85_c00160{left:799.200000px;}
.xde_c00160{left:800.925000px;}
.xd2_c00160{left:806.115000px;}
.xfd_c00160{left:807.840000px;}
.xe7_c00160{left:810.435000px;}
.xcf_c00160{left:812.160000px;}
.xea_c00160{left:815.610000px;}
.xec_c00160{left:819.075000px;}
.xba_c00160{left:820.800000px;}
.xe5_c00160{left:823.395000px;}
.xa5_c00160{left:827.715000px;}
.xb0_c00160{left:830.310000px;}
.x96_c00160{left:832.035000px;}
.x8c_c00160{left:834.630000px;}
.xb5_c00160{left:838.080000px;}
.xc7_c00160{left:843.270000px;}
.xf4_c00160{left:845.850000px;}
.xd6_c00160{left:847.590000px;}
.x47_c00160{left:851.040000px;}
.xf6_c00160{left:852.765000px;}
.xa2_c00160{left:854.490000px;}
.xd7_c00160{left:857.085000px;}
.xb1_c00160{left:865.725000px;}
.xd0_c00160{left:875.235000px;}
.xc1_c00160{left:877.830000px;}
.xc8_c00160{left:882.150000px;}
.x101_c00160{left:997.920000px;}
.xff_c00160{left:1003.965000px;}
.x100_c00160{left:1006.560000px;}
.x102_c00160{left:1059.270000px;}
.x103_c00160{left:1070.490000px;}
@media print{
.v1_c00160{vertical-align:-15.360000pt;}
.v3_c00160{vertical-align:-3.093333pt;}
.v0_c00160{vertical-align:0.000000pt;}
.v2_c00160{vertical-align:3.093333pt;}
.ls2_c00160{letter-spacing:0.000000pt;}
.ls0_c00160{letter-spacing:27.655733pt;}
.ls1_c00160{letter-spacing:184.495467pt;}
.ws1_c00160{word-spacing:-16.423093pt;}
.ws0_c00160{word-spacing:-5.181013pt;}
.ws2_c00160{word-spacing:-3.693440pt;}
.ws4_c00160{word-spacing:0.000000pt;}
.ws3_c00160{word-spacing:2.239680pt;}
.fs8_c00160{font-size:3.072000pt;}
.fs10_c00160{font-size:5.333333pt;}
.fs12_c00160{font-size:6.133333pt;}
.fse_c00160{font-size:9.226667pt;}
.fs16_c00160{font-size:12.266667pt;}
.fs13_c00160{font-size:15.360000pt;}
.fsa_c00160{font-size:18.453333pt;}
.fs17_c00160{font-size:21.493333pt;}
.fs19_c00160{font-size:24.586667pt;}
.fs14_c00160{font-size:27.626667pt;}
.fs4_c00160{font-size:30.720000pt;}
.fsc_c00160{font-size:33.813333pt;}
.fs18_c00160{font-size:36.853333pt;}
.fsb_c00160{font-size:39.946667pt;}
.fs15_c00160{font-size:42.986667pt;}
.fsd_c00160{font-size:46.080000pt;}
.fs5_c00160{font-size:49.173333pt;}
.fs0_c00160{font-size:52.213333pt;}
.fs1_c00160{font-size:55.306667pt;}
.fs3_c00160{font-size:58.346667pt;}
.fs2_c00160{font-size:61.440000pt;}
.fs7_c00160{font-size:64.533333pt;}
.fs6_c00160{font-size:67.573333pt;}
.fsf_c00160{font-size:70.666667pt;}
.fs9_c00160{font-size:73.706667pt;}
.fs1c_c00160{font-size:76.800000pt;}
.fs11_c00160{font-size:79.893333pt;}
.fs1a_c00160{font-size:82.933333pt;}
.fs1d_c00160{font-size:86.026667pt;}
.fs1b_c00160{font-size:92.160000pt;}
.y0_c00160{bottom:0.000000pt;}
.y165_c00160{bottom:196.613333pt;}
.y166_c00160{bottom:203.520000pt;}
.y164_c00160{bottom:205.053333pt;}
.y15f_c00160{bottom:211.973333pt;}
.y162_c00160{bottom:212.733333pt;}
.y161_c00160{bottom:213.506667pt;}
.y163_c00160{bottom:214.266667pt;}
.y15e_c00160{bottom:215.813333pt;}
.y15d_c00160{bottom:216.573333pt;}
.y160_c00160{bottom:222.720000pt;}
.y15c_c00160{bottom:228.093333pt;}
.y157_c00160{bottom:228.866667pt;}
.y158_c00160{bottom:229.626667pt;}
.y15b_c00160{bottom:230.400000pt;}
.y159_c00160{bottom:231.933333pt;}
.y155_c00160{bottom:234.240000pt;}
.y156_c00160{bottom:235.773333pt;}
.y15a_c00160{bottom:241.146667pt;}
.y152_c00160{bottom:249.600000pt;}
.y153_c00160{bottom:251.133333pt;}
.y14e_c00160{bottom:251.906667pt;}
.y14f_c00160{bottom:252.666667pt;}
.y150_c00160{bottom:253.440000pt;}
.y151_c00160{bottom:254.213333pt;}
.y154_c00160{bottom:254.973333pt;}
.y147_c00160{bottom:266.493333pt;}
.y148_c00160{bottom:268.026667pt;}
.y14d_c00160{bottom:270.333333pt;}
.y146_c00160{bottom:271.106667pt;}
.y14a_c00160{bottom:271.866667pt;}
.y149_c00160{bottom:272.640000pt;}
.y14b_c00160{bottom:277.253333pt;}
.y14c_c00160{bottom:279.546667pt;}
.y13f_c00160{bottom:284.933333pt;}
.y141_c00160{bottom:286.466667pt;}
.y13e_c00160{bottom:288.773333pt;}
.y140_c00160{bottom:289.533333pt;}
.y144_c00160{bottom:290.306667pt;}
.y143_c00160{bottom:291.066667pt;}
.y142_c00160{bottom:291.840000pt;}
.y145_c00160{bottom:303.360000pt;}
.y139_c00160{bottom:305.666667pt;}
.y13d_c00160{bottom:306.426667pt;}
.y136_c00160{bottom:307.200000pt;}
.y135_c00160{bottom:307.973333pt;}
.y138_c00160{bottom:308.733333pt;}
.y13a_c00160{bottom:309.506667pt;}
.y137_c00160{bottom:310.266667pt;}
.y13b_c00160{bottom:318.720000pt;}
.y13c_c00160{bottom:320.253333pt;}
.y12d_c00160{bottom:321.786667pt;}
.y132_c00160{bottom:323.333333pt;}
.y12e_c00160{bottom:326.400000pt;}
.y130_c00160{bottom:327.173333pt;}
.y131_c00160{bottom:327.933333pt;}
.y133_c00160{bottom:328.706667pt;}
.y134_c00160{bottom:330.240000pt;}
.y12f_c00160{bottom:332.546667pt;}
.y126_c00160{bottom:340.226667pt;}
.y12a_c00160{bottom:340.986667pt;}
.y12c_c00160{bottom:343.293333pt;}
.y125_c00160{bottom:344.066667pt;}
.y129_c00160{bottom:344.826667pt;}
.y128_c00160{bottom:345.600000pt;}
.y127_c00160{bottom:352.506667pt;}
.y12b_c00160{bottom:357.120000pt;}
.y121_c00160{bottom:358.653333pt;}
.y120_c00160{bottom:359.426667pt;}
.y11d_c00160{bottom:360.960000pt;}
.y11e_c00160{bottom:361.733333pt;}
.y11f_c00160{bottom:362.493333pt;}
.y122_c00160{bottom:364.026667pt;}
.y123_c00160{bottom:365.573333pt;}
.y124_c00160{bottom:368.640000pt;}
.y115_c00160{bottom:374.786667pt;}
.y114_c00160{bottom:375.546667pt;}
.y119_c00160{bottom:377.093333pt;}
.y11b_c00160{bottom:377.853333pt;}
.y117_c00160{bottom:378.626667pt;}
.y11c_c00160{bottom:379.386667pt;}
.y113_c00160{bottom:380.160000pt;}
.y11a_c00160{bottom:381.693333pt;}
.y116_c00160{bottom:384.773333pt;}
.y118_c00160{bottom:386.306667pt;}
.y10e_c00160{bottom:397.826667pt;}
.y10d_c00160{bottom:398.586667pt;}
.y110_c00160{bottom:399.360000pt;}
.y112_c00160{bottom:401.666667pt;}
.y10f_c00160{bottom:403.973333pt;}
.y111_c00160{bottom:407.040000pt;}
.y106_c00160{bottom:411.653333pt;}
.y107_c00160{bottom:412.413333pt;}
.y105_c00160{bottom:413.186667pt;}
.y109_c00160{bottom:413.946667pt;}
.y104_c00160{bottom:416.253333pt;}
.y108_c00160{bottom:417.786667pt;}
.y10c_c00160{bottom:418.560000pt;}
.y10a_c00160{bottom:420.093333pt;}
.y10b_c00160{bottom:423.173333pt;}
.yfe_c00160{bottom:431.613333pt;}
.yff_c00160{bottom:432.386667pt;}
.y103_c00160{bottom:433.146667pt;}
.yfc_c00160{bottom:433.920000pt;}
.yfd_c00160{bottom:434.693333pt;}
.y102_c00160{bottom:435.453333pt;}
.y101_c00160{bottom:436.986667pt;}
.y100_c00160{bottom:437.760000pt;}
.yf1_c00160{bottom:449.280000pt;}
.yf8_c00160{bottom:450.053333pt;}
.yfa_c00160{bottom:450.813333pt;}
.yf7_c00160{bottom:451.586667pt;}
.yf4_c00160{bottom:454.653333pt;}
.yf9_c00160{bottom:455.426667pt;}
.yf6_c00160{bottom:456.186667pt;}
.yf2_c00160{bottom:456.960000pt;}
.yfb_c00160{bottom:464.640000pt;}
.yf3_c00160{bottom:465.413333pt;}
.yec_c00160{bottom:466.946667pt;}
.yf5_c00160{bottom:467.706667pt;}
.yed_c00160{bottom:468.480000pt;}
.yf0_c00160{bottom:469.253333pt;}
.yef_c00160{bottom:472.320000pt;}
.yee_c00160{bottom:473.093333pt;}
.ye2_c00160{bottom:484.613333pt;}
.ye4_c00160{bottom:485.373333pt;}
.ye6_c00160{bottom:486.906667pt;}
.ye9_c00160{bottom:487.680000pt;}
.ye5_c00160{bottom:488.453333pt;}
.ye3_c00160{bottom:489.986667pt;}
.ye7_c00160{bottom:490.746667pt;}
.yeb_c00160{bottom:491.520000pt;}
.yea_c00160{bottom:492.293333pt;}
.ydd_c00160{bottom:503.040000pt;}
.ye8_c00160{bottom:503.813333pt;}
.yde_c00160{bottom:504.573333pt;}
.ye0_c00160{bottom:506.106667pt;}
.ydf_c00160{bottom:509.186667pt;}
.ye1_c00160{bottom:509.946667pt;}
.y1bf_c00160{bottom:513.026667pt;}
.y1be_c00160{bottom:515.333333pt;}
.yd9_c00160{bottom:523.773333pt;}
.yda_c00160{bottom:526.853333pt;}
.ydb_c00160{bottom:527.613333pt;}
.yd8_c00160{bottom:532.226667pt;}
.ydc_c00160{bottom:539.133333pt;}
.yd3_c00160{bottom:541.440000pt;}
.yd7_c00160{bottom:542.213333pt;}
.yd1_c00160{bottom:543.746667pt;}
.yd2_c00160{bottom:544.506667pt;}
.yd5_c00160{bottom:546.053333pt;}
.yd6_c00160{bottom:546.813333pt;}
.yd4_c00160{bottom:548.346667pt;}
.ycb_c00160{bottom:557.573333pt;}
.yc9_c00160{bottom:559.106667pt;}
.ycd_c00160{bottom:559.866667pt;}
.yc7_c00160{bottom:561.413333pt;}
.yc8_c00160{bottom:562.173333pt;}
.yca_c00160{bottom:562.946667pt;}
.yce_c00160{bottom:564.480000pt;}
.ycf_c00160{bottom:565.253333pt;}
.ycc_c00160{bottom:566.013333pt;}
.yd0_c00160{bottom:567.546667pt;}
.ybf_c00160{bottom:576.000000pt;}
.yc2_c00160{bottom:577.533333pt;}
.yc4_c00160{bottom:578.306667pt;}
.ybd_c00160{bottom:579.066667pt;}
.yc1_c00160{bottom:579.840000pt;}
.yc0_c00160{bottom:580.613333pt;}
.yc3_c00160{bottom:581.373333pt;}
.yc6_c00160{bottom:582.146667pt;}
.ybe_c00160{bottom:589.826667pt;}
.yc5_c00160{bottom:590.586667pt;}
.yb1_c00160{bottom:594.426667pt;}
.yb8_c00160{bottom:595.200000pt;}
.yb7_c00160{bottom:595.973333pt;}
.yb5_c00160{bottom:596.733333pt;}
.yb0_c00160{bottom:597.506667pt;}
.yb2_c00160{bottom:598.266667pt;}
.yb3_c00160{bottom:599.040000pt;}
.ybb_c00160{bottom:599.813333pt;}
.yb6_c00160{bottom:600.573333pt;}
.ybc_c00160{bottom:601.346667pt;}
.yb9_c00160{bottom:602.106667pt;}
.yba_c00160{bottom:607.493333pt;}
.yb4_c00160{bottom:609.026667pt;}
.ya7_c00160{bottom:611.333333pt;}
.ya8_c00160{bottom:612.093333pt;}
.ya6_c00160{bottom:612.866667pt;}
.yac_c00160{bottom:613.626667pt;}
.yab_c00160{bottom:615.173333pt;}
.yaa_c00160{bottom:615.933333pt;}
.ya9_c00160{bottom:616.706667pt;}
.yad_c00160{bottom:618.240000pt;}
.yae_c00160{bottom:619.013333pt;}
.yaf_c00160{bottom:619.773333pt;}
.y9f_c00160{bottom:628.986667pt;}
.ya0_c00160{bottom:629.760000pt;}
.ya1_c00160{bottom:630.533333pt;}
.y9e_c00160{bottom:632.826667pt;}
.ya3_c00160{bottom:633.600000pt;}
.ya2_c00160{bottom:635.133333pt;}
.ya4_c00160{bottom:635.906667pt;}
.ya5_c00160{bottom:636.666667pt;}
.y9a_c00160{bottom:645.893333pt;}
.y99_c00160{bottom:646.653333pt;}
.y9b_c00160{bottom:647.426667pt;}
.y9c_c00160{bottom:651.266667pt;}
.y9d_c00160{bottom:652.026667pt;}
.y95_c00160{bottom:665.093333pt;}
.y96_c00160{bottom:668.933333pt;}
.y97_c00160{bottom:669.693333pt;}
.y98_c00160{bottom:677.373333pt;}
.y94_c00160{bottom:683.520000pt;}
.y93_c00160{bottom:685.826667pt;}
.y1ba_c00160{bottom:688.893333pt;}
.y1b9_c00160{bottom:689.666667pt;}
.y1bb_c00160{bottom:690.426667pt;}
.y1bc_c00160{bottom:691.200000pt;}
.y90_c00160{bottom:700.413333pt;}
.y91_c00160{bottom:701.186667pt;}
.y8f_c00160{bottom:701.946667pt;}
.y8d_c00160{bottom:702.720000pt;}
.y8e_c00160{bottom:704.253333pt;}
.y92_c00160{bottom:705.026667pt;}
.y87_c00160{bottom:716.546667pt;}
.y88_c00160{bottom:721.920000pt;}
.y89_c00160{bottom:722.693333pt;}
.y8a_c00160{bottom:723.453333pt;}
.y1b6_c00160{bottom:724.226667pt;}
.y1b7_c00160{bottom:724.986667pt;}
.y8b_c00160{bottom:725.760000pt;}
.y1b8_c00160{bottom:727.293333pt;}
.y8c_c00160{bottom:733.440000pt;}
.y83_c00160{bottom:734.213333pt;}
.y84_c00160{bottom:734.973333pt;}
.y82_c00160{bottom:735.746667pt;}
.y1b3_c00160{bottom:738.053333pt;}
.y81_c00160{bottom:738.813333pt;}
.y1b5_c00160{bottom:739.586667pt;}
.y85_c00160{bottom:740.346667pt;}
.y86_c00160{bottom:741.120000pt;}
.y1b2_c00160{bottom:741.893333pt;}
.y1b4_c00160{bottom:744.186667pt;}
.y7c_c00160{bottom:753.413333pt;}
.y7d_c00160{bottom:754.173333pt;}
.y7e_c00160{bottom:755.706667pt;}
.y7b_c00160{bottom:757.253333pt;}
.y7f_c00160{bottom:758.013333pt;}
.y80_c00160{bottom:758.786667pt;}
.y1b1_c00160{bottom:759.546667pt;}
.y1af_c00160{bottom:761.093333pt;}
.y1b0_c00160{bottom:761.853333pt;}
.y7a_c00160{bottom:763.386667pt;}
.y76_c00160{bottom:770.306667pt;}
.y78_c00160{bottom:774.146667pt;}
.y77_c00160{bottom:776.453333pt;}
.y79_c00160{bottom:777.213333pt;}
.y1ac_c00160{bottom:778.746667pt;}
.y1ad_c00160{bottom:779.520000pt;}
.y1ae_c00160{bottom:781.053333pt;}
.y73_c00160{bottom:791.813333pt;}
.y72_c00160{bottom:793.346667pt;}
.y74_c00160{bottom:794.106667pt;}
.y75_c00160{bottom:794.880000pt;}
.y1aa_c00160{bottom:796.413333pt;}
.y1ab_c00160{bottom:804.093333pt;}
.y70_c00160{bottom:807.173333pt;}
.y6d_c00160{bottom:807.933333pt;}
.y71_c00160{bottom:810.240000pt;}
.y6e_c00160{bottom:811.013333pt;}
.y6f_c00160{bottom:811.773333pt;}
.y6c_c00160{bottom:812.546667pt;}
.y1a7_c00160{bottom:814.853333pt;}
.y1a8_c00160{bottom:815.613333pt;}
.y1a9_c00160{bottom:817.146667pt;}
.y67_c00160{bottom:824.826667pt;}
.y66_c00160{bottom:828.666667pt;}
.y68_c00160{bottom:829.440000pt;}
.y69_c00160{bottom:830.973333pt;}
.y6a_c00160{bottom:831.746667pt;}
.y1a4_c00160{bottom:832.506667pt;}
.y6b_c00160{bottom:833.280000pt;}
.y1a5_c00160{bottom:834.053333pt;}
.y1a6_c00160{bottom:835.586667pt;}
.y62_c00160{bottom:840.960000pt;}
.y63_c00160{bottom:843.266667pt;}
.y64_c00160{bottom:845.573333pt;}
.y19e_c00160{bottom:846.333333pt;}
.y65_c00160{bottom:849.413333pt;}
.y19f_c00160{bottom:850.173333pt;}
.y1a3_c00160{bottom:850.946667pt;}
.y1a0_c00160{bottom:852.480000pt;}
.y1a1_c00160{bottom:853.253333pt;}
.y1a2_c00160{bottom:860.933333pt;}
.y60_c00160{bottom:862.466667pt;}
.y5f_c00160{bottom:864.773333pt;}
.y61_c00160{bottom:866.306667pt;}
.y199_c00160{bottom:868.613333pt;}
.y19a_c00160{bottom:869.373333pt;}
.y19c_c00160{bottom:870.906667pt;}
.y1bd_c00160{bottom:872.453333pt;}
.y19b_c00160{bottom:876.293333pt;}
.y59_c00160{bottom:877.826667pt;}
.y5b_c00160{bottom:878.586667pt;}
.y19d_c00160{bottom:879.360000pt;}
.y5e_c00160{bottom:880.893333pt;}
.y5a_c00160{bottom:882.426667pt;}
.y196_c00160{bottom:883.200000pt;}
.y5c_c00160{bottom:884.733333pt;}
.y5d_c00160{bottom:885.506667pt;}
.y195_c00160{bottom:886.266667pt;}
.y198_c00160{bottom:887.040000pt;}
.y197_c00160{bottom:887.813333pt;}
.y56_c00160{bottom:893.186667pt;}
.y57_c00160{bottom:894.720000pt;}
.y55_c00160{bottom:895.493333pt;}
.y58_c00160{bottom:896.253333pt;}
.y190_c00160{bottom:903.173333pt;}
.y193_c00160{bottom:904.706667pt;}
.y18f_c00160{bottom:905.466667pt;}
.y192_c00160{bottom:906.240000pt;}
.y191_c00160{bottom:907.013333pt;}
.y194_c00160{bottom:908.546667pt;}
.y46_c00160{bottom:916.986667pt;}
.y47_c00160{bottom:919.293333pt;}
.y48_c00160{bottom:920.066667pt;}
.y49_c00160{bottom:920.826667pt;}
.y4a_c00160{bottom:921.600000pt;}
.y18c_c00160{bottom:923.906667pt;}
.y18e_c00160{bottom:925.440000pt;}
.y18d_c00160{bottom:928.506667pt;}
.y18b_c00160{bottom:932.346667pt;}
.y45_c00160{bottom:933.893333pt;}
.y41_c00160{bottom:936.960000pt;}
.y42_c00160{bottom:937.733333pt;}
.y185_c00160{bottom:938.493333pt;}
.y43_c00160{bottom:939.266667pt;}
.y44_c00160{bottom:940.026667pt;}
.y186_c00160{bottom:942.333333pt;}
.y187_c00160{bottom:943.106667pt;}
.y188_c00160{bottom:943.866667pt;}
.y18a_c00160{bottom:944.640000pt;}
.y189_c00160{bottom:956.160000pt;}
.y40_c00160{bottom:956.933333pt;}
.y183_c00160{bottom:960.000000pt;}
.y182_c00160{bottom:960.773333pt;}
.y184_c00160{bottom:963.066667pt;}
.y181_c00160{bottom:963.840000pt;}
.y17a_c00160{bottom:973.053333pt;}
.y180_c00160{bottom:973.826667pt;}
.y17e_c00160{bottom:975.360000pt;}
.y17f_c00160{bottom:976.133333pt;}
.y179_c00160{bottom:976.893333pt;}
.y17b_c00160{bottom:977.666667pt;}
.y17c_c00160{bottom:979.200000pt;}
.y17d_c00160{bottom:979.973333pt;}
.y3c_c00160{bottom:988.413333pt;}
.y3d_c00160{bottom:990.720000pt;}
.y177_c00160{bottom:993.026667pt;}
.y3e_c00160{bottom:995.333333pt;}
.y175_c00160{bottom:996.093333pt;}
.y178_c00160{bottom:998.400000pt;}
.y3f_c00160{bottom:1000.706667pt;}
.y176_c00160{bottom:1003.013333pt;}
.y39_c00160{bottom:1011.453333pt;}
.y3a_c00160{bottom:1012.226667pt;}
.y3b_c00160{bottom:1012.986667pt;}
.y172_c00160{bottom:1013.760000pt;}
.y173_c00160{bottom:1015.293333pt;}
.y174_c00160{bottom:1021.440000pt;}
.y38_c00160{bottom:1028.346667pt;}
.y34_c00160{bottom:1029.120000pt;}
.y35_c00160{bottom:1029.893333pt;}
.y36_c00160{bottom:1031.426667pt;}
.y16f_c00160{bottom:1032.186667pt;}
.y37_c00160{bottom:1032.960000pt;}
.y170_c00160{bottom:1033.733333pt;}
.y171_c00160{bottom:1035.266667pt;}
.y16d_c00160{bottom:1047.546667pt;}
.y30_c00160{bottom:1048.320000pt;}
.y16e_c00160{bottom:1049.093333pt;}
.y32_c00160{bottom:1049.853333pt;}
.y16c_c00160{bottom:1050.626667pt;}
.y33_c00160{bottom:1055.226667pt;}
.y31_c00160{bottom:1059.840000pt;}
.y2d_c00160{bottom:1061.373333pt;}
.y2b_c00160{bottom:1062.146667pt;}
.y2e_c00160{bottom:1063.680000pt;}
.y2f_c00160{bottom:1064.453333pt;}
.y2c_c00160{bottom:1065.213333pt;}
.y169_c00160{bottom:1069.053333pt;}
.y16a_c00160{bottom:1069.826667pt;}
.y16b_c00160{bottom:1070.586667pt;}
.y26_c00160{bottom:1079.040000pt;}
.y2a_c00160{bottom:1081.346667pt;}
.y27_c00160{bottom:1082.106667pt;}
.y167_c00160{bottom:1082.880000pt;}
.y28_c00160{bottom:1085.186667pt;}
.y29_c00160{bottom:1086.720000pt;}
.y168_c00160{bottom:1087.493333pt;}
.y23_c00160{bottom:1098.240000pt;}
.y20_c00160{bottom:1099.013333pt;}
.y24_c00160{bottom:1100.546667pt;}
.y21_c00160{bottom:1101.306667pt;}
.y22_c00160{bottom:1102.080000pt;}
.y25_c00160{bottom:1103.613333pt;}
.y1d_c00160{bottom:1116.666667pt;}
.y1c_c00160{bottom:1120.506667pt;}
.y1e_c00160{bottom:1121.280000pt;}
.y1f_c00160{bottom:1122.053333pt;}
.y53_c00160{bottom:1123.586667pt;}
.y54_c00160{bottom:1124.346667pt;}
.y19_c00160{bottom:1134.333333pt;}
.y1a_c00160{bottom:1135.866667pt;}
.y18_c00160{bottom:1138.173333pt;}
.y1b_c00160{bottom:1140.480000pt;}
.y50_c00160{bottom:1141.253333pt;}
.y51_c00160{bottom:1142.013333pt;}
.y52_c00160{bottom:1142.786667pt;}
.y15_c00160{bottom:1152.000000pt;}
.y12_c00160{bottom:1153.533333pt;}
.y13_c00160{bottom:1154.306667pt;}
.y11_c00160{bottom:1155.066667pt;}
.y14_c00160{bottom:1155.840000pt;}
.y16_c00160{bottom:1157.373333pt;}
.y17_c00160{bottom:1158.146667pt;}
.ye_c00160{bottom:1169.666667pt;}
.yd_c00160{bottom:1170.426667pt;}
.y10_c00160{bottom:1171.200000pt;}
.y4e_c00160{bottom:1175.040000pt;}
.yf_c00160{bottom:1175.813333pt;}
.y4f_c00160{bottom:1178.880000pt;}
.ya_c00160{bottom:1189.626667pt;}
.y9_c00160{bottom:1191.173333pt;}
.yc_c00160{bottom:1191.933333pt;}
.yb_c00160{bottom:1204.226667pt;}
.y8_c00160{bottom:1206.533333pt;}
.y4c_c00160{bottom:1208.826667pt;}
.y5_c00160{bottom:1209.600000pt;}
.y7_c00160{bottom:1211.133333pt;}
.y6_c00160{bottom:1211.906667pt;}
.y4b_c00160{bottom:1213.440000pt;}
.y4d_c00160{bottom:1214.973333pt;}
.y3_c00160{bottom:1237.253333pt;}
.y2_c00160{bottom:1238.013333pt;}
.y1_c00160{bottom:1238.786667pt;}
.y4_c00160{bottom:1240.320000pt;}
.ha_c00160{height:2.764500pt;}
.h12_c00160{height:4.799479pt;}
.h15_c00160{height:5.519401pt;}
.h1c_c00160{height:5.804500pt;}
.h10_c00160{height:8.303099pt;}
.h19_c00160{height:11.038802pt;}
.h16_c00160{height:13.822500pt;}
.hc_c00160{height:16.606198pt;}
.h1a_c00160{height:19.341901pt;}
.h1d_c00160{height:22.125599pt;}
.h17_c00160{height:24.861302pt;}
.h6_c00160{height:27.645000pt;}
.he_c00160{height:30.428698pt;}
.h1b_c00160{height:33.164401pt;}
.hd_c00160{height:35.948099pt;}
.h18_c00160{height:38.683802pt;}
.hf_c00160{height:41.467500pt;}
.h7_c00160{height:44.251198pt;}
.h2_c00160{height:46.986901pt;}
.h3_c00160{height:49.770599pt;}
.h13_c00160{height:50.080234pt;}
.h5_c00160{height:52.506302pt;}
.h4_c00160{height:55.290000pt;}
.h9_c00160{height:58.073698pt;}
.h8_c00160{height:60.809401pt;}
.h11_c00160{height:63.593099pt;}
.hb_c00160{height:66.328802pt;}
.h20_c00160{height:69.112500pt;}
.h14_c00160{height:71.896198pt;}
.h1e_c00160{height:74.631901pt;}
.h21_c00160{height:77.415599pt;}
.h1f_c00160{height:82.935000pt;}
.h0_c00160{height:1353.986667pt;}
.h1_c00160{height:1354.000000pt;}
.w0_c00160{width:959.226667pt;}
.w1_c00160{width:959.333333pt;}
.x0_c00160{left:0.000000pt;}
.x74_c00160{left:196.613333pt;}
.x58_c00160{left:199.680000pt;}
.x97_c00160{left:201.213333pt;}
.x28_c00160{left:203.520000pt;}
.x53_c00160{left:208.133333pt;}
.xbd_c00160{left:209.666667pt;}
.x65_c00160{left:211.973333pt;}
.x68_c00160{left:214.266667pt;}
.xe3_c00160{left:216.573333pt;}
.x6_c00160{left:218.106667pt;}
.xb_c00160{left:219.653333pt;}
.x12_c00160{left:221.186667pt;}
.x20_c00160{left:222.720000pt;}
.x2e_c00160{left:224.253333pt;}
.x7c_c00160{left:225.786667pt;}
.xb6_c00160{left:228.866667pt;}
.x3a_c00160{left:232.706667pt;}
.x13_c00160{left:239.613333pt;}
.x69_c00160{left:241.146667pt;}
.x1b_c00160{left:244.226667pt;}
.x21_c00160{left:245.760000pt;}
.x54_c00160{left:248.066667pt;}
.x14_c00160{left:250.373333pt;}
.x34_c00160{left:251.906667pt;}
.x7d_c00160{left:253.440000pt;}
.x98_c00160{left:256.506667pt;}
.x86_c00160{left:259.586667pt;}
.xc_c00160{left:261.120000pt;}
.x3b_c00160{left:264.186667pt;}
.x37_c00160{left:265.733333pt;}
.x61_c00160{left:267.266667pt;}
.x59_c00160{left:268.800000pt;}
.x15_c00160{left:271.106667pt;}
.x3c_c00160{left:273.413333pt;}
.x79_c00160{left:275.706667pt;}
.x32_c00160{left:277.253333pt;}
.x66_c00160{left:278.786667pt;}
.x1c_c00160{left:280.320000pt;}
.xd3_c00160{left:281.853333pt;}
.x5d_c00160{left:284.160000pt;}
.xd8_c00160{left:286.466667pt;}
.x2f_c00160{left:288.000000pt;}
.xf_c00160{left:289.533333pt;}
.xdf_c00160{left:291.066667pt;}
.x55_c00160{left:292.613333pt;}
.x16_c00160{left:294.146667pt;}
.xc2_c00160{left:297.213333pt;}
.xd_c00160{left:298.746667pt;}
.x3d_c00160{left:301.826667pt;}
.x7_c00160{left:303.360000pt;}
.x7e_c00160{left:307.200000pt;}
.x5a_c00160{left:308.733333pt;}
.x24_c00160{left:311.040000pt;}
.xe_c00160{left:312.573333pt;}
.x3e_c00160{left:314.106667pt;}
.x6c_c00160{left:315.653333pt;}
.x5e_c00160{left:317.186667pt;}
.x22_c00160{left:318.720000pt;}
.x2c_c00160{left:320.253333pt;}
.x29_c00160{left:323.333333pt;}
.x35_c00160{left:325.626667pt;}
.x6e_c00160{left:327.933333pt;}
.x62_c00160{left:331.013333pt;}
.x30_c00160{left:334.080000pt;}
.x5f_c00160{left:337.146667pt;}
.x8_c00160{left:340.986667pt;}
.x25_c00160{left:342.533333pt;}
.xcc_c00160{left:344.826667pt;}
.x6a_c00160{left:346.373333pt;}
.x19_c00160{left:347.906667pt;}
.x76_c00160{left:350.973333pt;}
.x5b_c00160{left:354.053333pt;}
.x6f_c00160{left:356.346667pt;}
.x36_c00160{left:357.893333pt;}
.x1d_c00160{left:359.426667pt;}
.x3f_c00160{left:361.733333pt;}
.x17_c00160{left:363.266667pt;}
.x9_c00160{left:364.800000pt;}
.x99_c00160{left:366.333333pt;}
.x72_c00160{left:368.640000pt;}
.x56_c00160{left:370.173333pt;}
.xae_c00160{left:374.013333pt;}
.x67_c00160{left:375.546667pt;}
.x10_c00160{left:381.693333pt;}
.x26_c00160{left:384.773333pt;}
.x1e_c00160{left:386.306667pt;}
.x38_c00160{left:388.613333pt;}
.xbe_c00160{left:390.146667pt;}
.x23_c00160{left:391.680000pt;}
.x7a_c00160{left:393.213333pt;}
.x6b_c00160{left:395.520000pt;}
.x8d_c00160{left:397.053333pt;}
.x2a_c00160{left:399.360000pt;}
.x1a_c00160{left:404.733333pt;}
.x6d_c00160{left:406.266667pt;}
.x5c_c00160{left:408.573333pt;}
.x31_c00160{left:410.106667pt;}
.x1_c00160{left:411.653333pt;}
.xbb_c00160{left:413.186667pt;}
.x39_c00160{left:414.720000pt;}
.x70_c00160{left:417.026667pt;}
.xa_c00160{left:418.560000pt;}
.x2b_c00160{left:420.093333pt;}
.x57_c00160{left:422.400000pt;}
.x9d_c00160{left:425.466667pt;}
.x63_c00160{left:427.013333pt;}
.x87_c00160{left:429.306667pt;}
.xa7_c00160{left:431.613333pt;}
.x2_c00160{left:433.920000pt;}
.x27_c00160{left:435.453333pt;}
.x11_c00160{left:437.760000pt;}
.x77_c00160{left:440.826667pt;}
.x60_c00160{left:442.373333pt;}
.x18_c00160{left:444.666667pt;}
.x1f_c00160{left:446.213333pt;}
.xb7_c00160{left:448.506667pt;}
.x71_c00160{left:450.053333pt;}
.x33_c00160{left:453.893333pt;}
.x3_c00160{left:459.266667pt;}
.x64_c00160{left:463.866667pt;}
.x8e_c00160{left:470.013333pt;}
.x2d_c00160{left:473.093333pt;}
.x78_c00160{left:475.386667pt;}
.x9e_c00160{left:477.693333pt;}
.x73_c00160{left:480.773333pt;}
.x75_c00160{left:482.306667pt;}
.x8f_c00160{left:484.613333pt;}
.xbf_c00160{left:486.146667pt;}
.x40_c00160{left:487.680000pt;}
.xe9_c00160{left:489.213333pt;}
.xf5_c00160{left:490.746667pt;}
.x7f_c00160{left:492.293333pt;}
.xa3_c00160{left:494.586667pt;}
.x4_c00160{left:497.666667pt;}
.x90_c00160{left:499.200000pt;}
.x41_c00160{left:501.506667pt;}
.xf9_c00160{left:503.040000pt;}
.xd1_c00160{left:504.573333pt;}
.x49_c00160{left:506.106667pt;}
.xc9_c00160{left:507.653333pt;}
.x91_c00160{left:509.186667pt;}
.x42_c00160{left:512.253333pt;}
.xa4_c00160{left:514.560000pt;}
.xf2_c00160{left:516.093333pt;}
.x92_c00160{left:517.626667pt;}
.x5_c00160{left:524.546667pt;}
.xf7_c00160{left:527.613333pt;}
.xd9_c00160{left:531.453333pt;}
.xc3_c00160{left:536.066667pt;}
.xd4_c00160{left:538.373333pt;}
.x80_c00160{left:540.666667pt;}
.x9a_c00160{left:542.973333pt;}
.xf0_c00160{left:544.506667pt;}
.x93_c00160{left:547.586667pt;}
.x81_c00160{left:549.120000pt;}
.xda_c00160{left:550.653333pt;}
.xfc_c00160{left:552.960000pt;}
.x4a_c00160{left:554.493333pt;}
.xdb_c00160{left:556.800000pt;}
.x82_c00160{left:558.333333pt;}
.x88_c00160{left:559.866667pt;}
.x4e_c00160{left:561.413333pt;}
.xca_c00160{left:563.706667pt;}
.xfa_c00160{left:565.253333pt;}
.x43_c00160{left:569.093333pt;}
.xa8_c00160{left:570.626667pt;}
.xb2_c00160{left:572.160000pt;}
.xdc_c00160{left:574.466667pt;}
.x4f_c00160{left:576.773333pt;}
.x48_c00160{left:578.306667pt;}
.xe0_c00160{left:580.613333pt;}
.xf3_c00160{left:583.680000pt;}
.xc4_c00160{left:585.213333pt;}
.xdd_c00160{left:587.520000pt;}
.xb8_c00160{left:589.826667pt;}
.xb3_c00160{left:591.360000pt;}
.x89_c00160{left:593.666667pt;}
.xed_c00160{left:595.200000pt;}
.xa9_c00160{left:596.733333pt;}
.x9f_c00160{left:598.266667pt;}
.xc5_c00160{left:601.346667pt;}
.x50_c00160{left:602.880000pt;}
.xcd_c00160{left:604.413333pt;}
.x83_c00160{left:606.720000pt;}
.xfe_c00160{left:608.253333pt;}
.xaa_c00160{left:609.786667pt;}
.x51_c00160{left:612.093333pt;}
.xa0_c00160{left:613.626667pt;}
.xe4_c00160{left:615.173333pt;}
.x44_c00160{left:616.706667pt;}
.xe8_c00160{left:619.773333pt;}
.x7b_c00160{left:621.306667pt;}
.x84_c00160{left:625.920000pt;}
.xf1_c00160{left:628.226667pt;}
.xfb_c00160{left:629.760000pt;}
.xab_c00160{left:633.600000pt;}
.xaf_c00160{left:635.133333pt;}
.xad_c00160{left:638.213333pt;}
.x45_c00160{left:640.506667pt;}
.xbc_c00160{left:642.813333pt;}
.x9b_c00160{left:645.893333pt;}
.xb4_c00160{left:648.186667pt;}
.xcb_c00160{left:649.733333pt;}
.x52_c00160{left:651.266667pt;}
.x8a_c00160{left:655.866667pt;}
.xce_c00160{left:658.173333pt;}
.xe6_c00160{left:659.706667pt;}
.xac_c00160{left:663.546667pt;}
.x94_c00160{left:665.853333pt;}
.x4b_c00160{left:668.160000pt;}
.xa6_c00160{left:669.693333pt;}
.xee_c00160{left:671.226667pt;}
.xb9_c00160{left:672.773333pt;}
.xc6_c00160{left:675.066667pt;}
.x4c_c00160{left:676.613333pt;}
.xc0_c00160{left:678.906667pt;}
.x46_c00160{left:680.453333pt;}
.x95_c00160{left:681.986667pt;}
.xef_c00160{left:685.826667pt;}
.x8b_c00160{left:687.360000pt;}
.xe1_c00160{left:689.666667pt;}
.x9c_c00160{left:693.506667pt;}
.xeb_c00160{left:695.040000pt;}
.xa1_c00160{left:697.346667pt;}
.xe2_c00160{left:698.880000pt;}
.xf8_c00160{left:701.186667pt;}
.xd5_c00160{left:702.720000pt;}
.x4d_c00160{left:708.093333pt;}
.x85_c00160{left:710.400000pt;}
.xde_c00160{left:711.933333pt;}
.xd2_c00160{left:716.546667pt;}
.xfd_c00160{left:718.080000pt;}
.xe7_c00160{left:720.386667pt;}
.xcf_c00160{left:721.920000pt;}
.xea_c00160{left:724.986667pt;}
.xec_c00160{left:728.066667pt;}
.xba_c00160{left:729.600000pt;}
.xe5_c00160{left:731.906667pt;}
.xa5_c00160{left:735.746667pt;}
.xb0_c00160{left:738.053333pt;}
.x96_c00160{left:739.586667pt;}
.x8c_c00160{left:741.893333pt;}
.xb5_c00160{left:744.960000pt;}
.xc7_c00160{left:749.573333pt;}
.xf4_c00160{left:751.866667pt;}
.xd6_c00160{left:753.413333pt;}
.x47_c00160{left:756.480000pt;}
.xf6_c00160{left:758.013333pt;}
.xa2_c00160{left:759.546667pt;}
.xd7_c00160{left:761.853333pt;}
.xb1_c00160{left:769.533333pt;}
.xd0_c00160{left:777.986667pt;}
.xc1_c00160{left:780.293333pt;}
.xc8_c00160{left:784.133333pt;}
.x101_c00160{left:887.040000pt;}
.xff_c00160{left:892.413333pt;}
.x100_c00160{left:894.720000pt;}
.x102_c00160{left:941.573333pt;}
.x103_c00160{left:951.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00161;src:url('chunks/assets/font_b890e8abc1e1a3088e1b213d.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.109863;font-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_c00161{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00161{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m3c_c00161{transform:matrix(0.095200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095200,0.000000,0.000000,0.250000,0,0);}
.m51_c00161{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m1f_c00161{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00161{transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);}
.m77_c00161{transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);}
.m14_c00161{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00161{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.m18_c00161{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.m33_c00161{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.m3e_c00161{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m62_c00161{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);}
.m55_c00161{transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);}
.m47_c00161{transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);}
.m3b_c00161{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.m69_c00161{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m73_c00161{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.ma_c00161{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);}
.m3a_c00161{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m45_c00161{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00161{transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);}
.m5a_c00161{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);}
.m5d_c00161{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6c_c00161{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);}
.m6e_c00161{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m52_c00161{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m5b_c00161{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);}
.m79_c00161{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m80_c00161{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m29_c00161{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m64_c00161{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);}
.m46_c00161{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);}
.m7c_c00161{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);}
.m63_c00161{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.m4d_c00161{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);}
.m49_c00161{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m66_c00161{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);}
.m5c_c00161{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);}
.m48_c00161{transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);}
.m60_c00161{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);}
.m1c_c00161{transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);}
.m28_c00161{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);}
.m39_c00161{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);}
.m78_c00161{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m67_c00161{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);}
.m68_c00161{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m72_c00161{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m41_c00161{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m6b_c00161{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.m6f_c00161{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_c00161{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m5f_c00161{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m12_c00161{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m4a_c00161{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m1d_c00161{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);}
.m70_c00161{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m75_c00161{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_c00161{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);}
.m4c_c00161{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);}
.m81_c00161{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m76_c00161{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c00161{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m61_c00161{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00161{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);}
.m21_c00161{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);}
.m2e_c00161{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17_c00161{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m26_c00161{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);}
.m58_c00161{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c00161{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);}
.m23_c00161{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);}
.m4b_c00161{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00161{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m10_c00161{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m56_c00161{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00161{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);}
.m4e_c00161{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m20_c00161{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00161{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m74_c00161{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00161{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00161{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00161{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00161{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c00161{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);}
.m6a_c00161{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00161{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c00161{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me_c00161{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);}
.m3_c00161{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mb_c00161{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m13_c00161{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf_c00161{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m22_c00161{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m9_c00161{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00161{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);}
.m65_c00161{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md_c00161{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2_c00161{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m44_c00161{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m30_c00161{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m34_c00161{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m36_c00161{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);}
.m57_c00161{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);}
.m2f_c00161{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m11_c00161{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m40_c00161{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m31_c00161{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m53_c00161{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m25_c00161{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);}
.m32_c00161{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m42_c00161{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m35_c00161{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m24_c00161{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00161{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m19_c00161{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);}
.m54_c00161{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);}
.m27_c00161{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1_c00161{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m50_c00161{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m16_c00161{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m38_c00161{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00161{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00161{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m71_c00161{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);}
.m43_c00161{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m59_c00161{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.m37_c00161{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00161{transform:matrix(1.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.690000,0.000000,0.000000,0.250000,0,0);}
.v0_c00161{vertical-align:0.000000px;}
.ls0_c00161{letter-spacing:0.000000px;}
.sc__c00161{text-shadow:none;}
.sc0_c00161{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00161{-webkit-text-stroke:0px transparent;}
.sc0_c00161{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00161{word-spacing:0.000000px;}
.fc0_c00161{color:transparent;}
.fs12_c00161{font-size:3.456000px;}
.fs0_c00161{font-size:6.000000px;}
.fs9_c00161{font-size:6.900000px;}
.fs1_c00161{font-size:10.380000px;}
.fsb_c00161{font-size:13.800000px;}
.fs13_c00161{font-size:17.280000px;}
.fs19_c00161{font-size:20.760000px;}
.fs11_c00161{font-size:24.180000px;}
.fsa_c00161{font-size:27.660000px;}
.fsd_c00161{font-size:34.560000px;}
.fs8_c00161{font-size:38.040000px;}
.fs16_c00161{font-size:41.460000px;}
.fs10_c00161{font-size:44.940000px;}
.fs18_c00161{font-size:48.360000px;}
.fsf_c00161{font-size:51.840000px;}
.fs5_c00161{font-size:55.320000px;}
.fs6_c00161{font-size:58.740000px;}
.fs2_c00161{font-size:62.220000px;}
.fs3_c00161{font-size:65.640000px;}
.fs7_c00161{font-size:69.120000px;}
.fs17_c00161{font-size:72.600000px;}
.fs4_c00161{font-size:76.020000px;}
.fse_c00161{font-size:79.500000px;}
.fs15_c00161{font-size:86.400000px;}
.fsc_c00161{font-size:89.880000px;}
.fs14_c00161{font-size:93.300000px;}
.y0_c00161{bottom:0.000000px;}
.y49_c00161{bottom:988.410000px;}
.y47_c00161{bottom:990.150000px;}
.y48_c00161{bottom:992.730000px;}
.y83_c00161{bottom:994.470000px;}
.y7f_c00161{bottom:995.325000px;}
.y7e_c00161{bottom:996.195000px;}
.y82_c00161{bottom:997.050000px;}
.y4a_c00161{bottom:997.920000px;}
.y81_c00161{bottom:998.790000px;}
.y80_c00161{bottom:999.645000px;}
.y84_c00161{bottom:1009.155000px;}
.y7a_c00161{bottom:1019.520000px;}
.y7b_c00161{bottom:1020.390000px;}
.y7c_c00161{bottom:1028.160000px;}
.y7d_c00161{bottom:1032.480000px;}
.y77_c00161{bottom:1033.350000px;}
.y45_c00161{bottom:1034.205000px;}
.y44_c00161{bottom:1035.930000px;}
.y78_c00161{bottom:1036.800000px;}
.y46_c00161{bottom:1037.670000px;}
.y79_c00161{bottom:1039.395000px;}
.y76_c00161{bottom:1041.120000px;}
.y70_c00161{bottom:1055.805000px;}
.y73_c00161{bottom:1056.675000px;}
.y75_c00161{bottom:1059.270000px;}
.y71_c00161{bottom:1060.125000px;}
.y42_c00161{bottom:1074.810000px;}
.y74_c00161{bottom:1075.680000px;}
.y43_c00161{bottom:1078.275000px;}
.y72_c00161{bottom:1079.130000px;}
.y6d_c00161{bottom:1080.000000px;}
.y6e_c00161{bottom:1080.870000px;}
.y6c_c00161{bottom:1084.320000px;}
.y6f_c00161{bottom:1092.090000px;}
.y3f_c00161{bottom:1095.555000px;}
.y6a_c00161{bottom:1096.410000px;}
.y3d_c00161{bottom:1097.280000px;}
.y6b_c00161{bottom:1098.150000px;}
.y3e_c00161{bottom:1099.005000px;}
.y40_c00161{bottom:1099.875000px;}
.y69_c00161{bottom:1100.730000px;}
.y41_c00161{bottom:1102.470000px;}
.y3a_c00161{bottom:1111.110000px;}
.y37_c00161{bottom:1111.965000px;}
.y39_c00161{bottom:1112.835000px;}
.y68_c00161{bottom:1113.690000px;}
.y38_c00161{bottom:1114.560000px;}
.y64_c00161{bottom:1115.430000px;}
.y66_c00161{bottom:1116.285000px;}
.y3b_c00161{bottom:1117.155000px;}
.y65_c00161{bottom:1119.750000px;}
.y3c_c00161{bottom:1120.605000px;}
.y67_c00161{bottom:1121.475000px;}
.y60_c00161{bottom:1137.030000px;}
.y34_c00161{bottom:1137.885000px;}
.y36_c00161{bottom:1138.755000px;}
.y35_c00161{bottom:1139.610000px;}
.y62_c00161{bottom:1140.480000px;}
.y63_c00161{bottom:1141.350000px;}
.y61_c00161{bottom:1142.205000px;}
.y5f_c00161{bottom:1153.440000px;}
.y32_c00161{bottom:1155.165000px;}
.y5e_c00161{bottom:1156.890000px;}
.y33_c00161{bottom:1157.760000px;}
.y2f_c00161{bottom:1159.485000px;}
.y30_c00161{bottom:1160.355000px;}
.y31_c00161{bottom:1161.210000px;}
.y5d_c00161{bottom:1162.950000px;}
.y5c_c00161{bottom:1176.765000px;}
.y29_c00161{bottom:1177.635000px;}
.y2b_c00161{bottom:1179.360000px;}
.y2c_c00161{bottom:1180.230000px;}
.y2d_c00161{bottom:1181.085000px;}
.y5b_c00161{bottom:1182.810000px;}
.y2e_c00161{bottom:1183.680000px;}
.y5a_c00161{bottom:1196.640000px;}
.y58_c00161{bottom:1197.510000px;}
.y2a_c00161{bottom:1199.235000px;}
.y59_c00161{bottom:1201.830000px;}
.y57_c00161{bottom:1202.685000px;}
.y27_c00161{bottom:1218.240000px;}
.y54_c00161{bottom:1219.965000px;}
.y55_c00161{bottom:1221.690000px;}
.y28_c00161{bottom:1222.560000px;}
.y56_c00161{bottom:1225.155000px;}
.y24_c00161{bottom:1233.795000px;}
.y25_c00161{bottom:1237.245000px;}
.y26_c00161{bottom:1242.435000px;}
.y53_c00161{bottom:1248.480000px;}
.y52_c00161{bottom:1251.930000px;}
.y23_c00161{bottom:1253.670000px;}
.y1d_c00161{bottom:1258.845000px;}
.y1e_c00161{bottom:1259.715000px;}
.y1f_c00161{bottom:1261.440000px;}
.y20_c00161{bottom:1262.310000px;}
.y22_c00161{bottom:1263.165000px;}
.y21_c00161{bottom:1264.035000px;}
.y17_c00161{bottom:1272.675000px;}
.y18_c00161{bottom:1273.530000px;}
.y16_c00161{bottom:1274.400000px;}
.y1a_c00161{bottom:1276.125000px;}
.y1b_c00161{bottom:1279.590000px;}
.y51_c00161{bottom:1280.445000px;}
.y50_c00161{bottom:1281.315000px;}
.y1c_c00161{bottom:1283.910000px;}
.y4f_c00161{bottom:1284.765000px;}
.y19_c00161{bottom:1290.810000px;}
.y11_c00161{bottom:1295.130000px;}
.y15_c00161{bottom:1297.725000px;}
.y12_c00161{bottom:1300.320000px;}
.y13_c00161{bottom:1302.045000px;}
.y14_c00161{bottom:1303.770000px;}
.y10_c00161{bottom:1330.560000px;}
.y4c_c00161{bottom:1339.200000px;}
.ya_c00161{bottom:1340.925000px;}
.y4d_c00161{bottom:1341.795000px;}
.yb_c00161{bottom:1343.520000px;}
.yc_c00161{bottom:1344.390000px;}
.y4e_c00161{bottom:1347.840000px;}
.yf_c00161{bottom:1352.160000px;}
.y4b_c00161{bottom:1356.480000px;}
.ye_c00161{bottom:1357.350000px;}
.yd_c00161{bottom:1359.930000px;}
.y5_c00161{bottom:1360.800000px;}
.y6_c00161{bottom:1361.670000px;}
.y7_c00161{bottom:1362.525000px;}
.y8_c00161{bottom:1363.395000px;}
.y9_c00161{bottom:1364.250000px;}
.y4_c00161{bottom:1391.910000px;}
.y3_c00161{bottom:1392.765000px;}
.y1_c00161{bottom:1437.690000px;}
.y2_c00161{bottom:1438.560000px;}
.h14_c00161{height:3.110063px;}
.h2_c00161{height:5.399414px;}
.hb_c00161{height:6.209326px;}
.h3_c00161{height:9.340986px;}
.hd_c00161{height:12.418652px;}
.h15_c00161{height:15.550313px;}
.h1b_c00161{height:18.681973px;}
.h13_c00161{height:21.759639px;}
.hc_c00161{height:24.891299px;}
.hf_c00161{height:31.100625px;}
.ha_c00161{height:34.232285px;}
.h18_c00161{height:37.309951px;}
.h12_c00161{height:40.441611px;}
.h1a_c00161{height:43.519277px;}
.h11_c00161{height:46.650937px;}
.h7_c00161{height:49.782598px;}
.h8_c00161{height:52.860264px;}
.h4_c00161{height:55.991924px;}
.h5_c00161{height:59.069590px;}
.h9_c00161{height:62.201250px;}
.h19_c00161{height:65.332910px;}
.h6_c00161{height:68.410576px;}
.h10_c00161{height:71.542236px;}
.h17_c00161{height:77.751563px;}
.he_c00161{height:80.883223px;}
.h16_c00161{height:83.960889px;}
.h1_c00161{height:1502.250000px;}
.h0_c00161{height:1502.490000px;}
.w0_c00161{width:1111.965000px;}
.w1_c00161{width:1112.250000px;}
.x0_c00161{left:0.000000px;}
.x17_c00161{left:239.325000px;}
.x2d_c00161{left:241.050000px;}
.x46_c00161{left:245.370000px;}
.x28_c00161{left:256.605000px;}
.x23_c00161{left:264.390000px;}
.x1d_c00161{left:267.840000px;}
.x43_c00161{left:272.160000px;}
.x47_c00161{left:288.570000px;}
.x18_c00161{left:291.165000px;}
.x40_c00161{left:294.630000px;}
.x1e_c00161{left:298.080000px;}
.x8_c00161{left:304.125000px;}
.x19_c00161{left:309.315000px;}
.x24_c00161{left:311.040000px;}
.x48_c00161{left:314.490000px;}
.x2f_c00161{left:316.230000px;}
.x41_c00161{left:317.955000px;}
.x9_c00161{left:324.000000px;}
.x2c_c00161{left:326.595000px;}
.x3a_c00161{left:331.770000px;}
.x30_c00161{left:335.235000px;}
.xa_c00161{left:342.150000px;}
.x44_c00161{left:345.600000px;}
.x3c_c00161{left:347.325000px;}
.x31_c00161{left:349.050000px;}
.x1f_c00161{left:351.645000px;}
.x37_c00161{left:353.370000px;}
.xb_c00161{left:355.110000px;}
.x1a_c00161{left:358.560000px;}
.x25_c00161{left:362.880000px;}
.x29_c00161{left:367.200000px;}
.xc_c00161{left:370.650000px;}
.x38_c00161{left:386.205000px;}
.xd_c00161{left:390.525000px;}
.x39_c00161{left:400.035000px;}
.x26_c00161{left:406.080000px;}
.x32_c00161{left:407.805000px;}
.x1b_c00161{left:410.400000px;}
.xe_c00161{left:413.850000px;}
.x3b_c00161{left:418.170000px;}
.x33_c00161{left:427.680000px;}
.x2a_c00161{left:430.275000px;}
.xf_c00161{left:432.870000px;}
.x27_c00161{left:437.190000px;}
.x11_c00161{left:441.510000px;}
.x2e_c00161{left:448.410000px;}
.x34_c00161{left:453.600000px;}
.x1c_c00161{left:455.325000px;}
.x10_c00161{left:463.110000px;}
.x3d_c00161{left:466.560000px;}
.x35_c00161{left:476.925000px;}
.x15_c00161{left:479.520000px;}
.x45_c00161{left:484.710000px;}
.x49_c00161{left:487.290000px;}
.x3_c00161{left:489.030000px;}
.x16_c00161{left:492.480000px;}
.x12_c00161{left:495.930000px;}
.x42_c00161{left:499.395000px;}
.x20_c00161{left:501.119925px;}
.x4_c00161{left:508.035000px;}
.x36_c00161{left:509.760000px;}
.x2b_c00161{left:512.355000px;}
.x21_c00161{left:517.530000px;}
.x14_c00161{left:522.720000px;}
.x3e_c00161{left:525.315000px;}
.x22_c00161{left:535.680000px;}
.x5_c00161{left:540.870000px;}
.x3f_c00161{left:546.045000px;}
.x13_c00161{left:549.510000px;}
.x90_c00161{left:565.920000px;}
.x6_c00161{left:571.110000px;}
.x87_c00161{left:573.690000px;}
.x79_c00161{left:578.880000px;}
.x88_c00161{left:583.200000px;}
.x81_c00161{left:585.795000px;}
.x73_c00161{left:587.520000px;}
.x7f_c00161{left:589.245000px;}
.x56_c00161{left:595.290000px;}
.x7_c00161{left:597.030000px;}
.x4a_c00161{left:598.755000px;}
.x82_c00161{left:601.350000px;}
.x8c_c00161{left:603.075000px;}
.x57_c00161{left:613.440000px;}
.x50_c00161{left:621.210000px;}
.x1_c00161{left:626.400000px;}
.x65_c00161{left:628.125000px;}
.x74_c00161{left:632.445000px;}
.x2_c00161{left:635.910000px;}
.x8d_c00161{left:637.635000px;}
.x6e_c00161{left:639.360000px;}
.x83_c00161{left:642.810000px;}
.x66_c00161{left:648.000000px;}
.x58_c00161{left:650.595000px;}
.x7a_c00161{left:652.320000px;}
.x53_c00161{left:657.510000px;}
.x6c_c00161{left:659.235000px;}
.x59_c00161{left:669.600000px;}
.x60_c00161{left:673.050000px;}
.x7b_c00161{left:674.790000px;}
.x51_c00161{left:686.010000px;}
.x8e_c00161{left:687.750000px;}
.x61_c00161{left:693.795000px;}
.x4b_c00161{left:695.520000px;}
.x89_c00161{left:701.565000px;}
.x5a_c00161{left:703.290000px;}
.x62_c00161{left:706.755000px;}
.x70_c00161{left:709.350000px;}
.x84_c00161{left:711.075000px;}
.x4c_c00161{left:712.800000px;}
.x5b_c00161{left:718.845000px;}
.x75_c00161{left:721.440000px;}
.x91_c00161{left:725.760000px;}
.x71_c00161{left:732.675000px;}
.x67_c00161{left:735.270000px;}
.x5c_c00161{left:739.590000px;}
.x8a_c00161{left:741.315000px;}
.x77_c00161{left:748.230000px;}
.x76_c00161{left:749.955000px;}
.x63_c00161{left:751.680000px;}
.x4d_c00161{left:757.725000px;}
.x5d_c00161{left:761.190000px;}
.x52_c00161{left:763.770000px;}
.x68_c00161{left:767.235000px;}
.x4e_c00161{left:779.325000px;}
.x6f_c00161{left:786.240000px;}
.x54_c00161{left:792.285000px;}
.x7c_c00161{left:794.880000px;}
.x8f_c00161{left:800.925000px;}
.x5e_c00161{left:813.030000px;}
.x7d_c00161{left:815.610000px;}
.x85_c00161{left:818.205000px;}
.x92_c00161{left:819.930000px;}
.x64_c00161{left:822.525000px;}
.x8b_c00161{left:825.990000px;}
.x55_c00161{left:832.035000px;}
.x5f_c00161{left:833.760000px;}
.x78_c00161{left:835.485000px;}
.x6d_c00161{left:844.995000px;}
.x4f_c00161{left:849.315000px;}
.x93_c00161{left:851.910000px;}
.x69_c00161{left:854.490000px;}
.x6a_c00161{left:861.405000px;}
.x72_c00161{left:863.130000px;}
.x86_c00161{left:870.045000px;}
.x6b_c00161{left:882.150000px;}
.x7e_c00161{left:895.965000px;}
.x80_c00161{left:902.880000px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ws0_c00161{word-spacing:0.000000pt;}
.fs12_c00161{font-size:3.072000pt;}
.fs0_c00161{font-size:5.333333pt;}
.fs9_c00161{font-size:6.133333pt;}
.fs1_c00161{font-size:9.226667pt;}
.fsb_c00161{font-size:12.266667pt;}
.fs13_c00161{font-size:15.360000pt;}
.fs19_c00161{font-size:18.453333pt;}
.fs11_c00161{font-size:21.493333pt;}
.fsa_c00161{font-size:24.586667pt;}
.fsd_c00161{font-size:30.720000pt;}
.fs8_c00161{font-size:33.813333pt;}
.fs16_c00161{font-size:36.853333pt;}
.fs10_c00161{font-size:39.946667pt;}
.fs18_c00161{font-size:42.986667pt;}
.fsf_c00161{font-size:46.080000pt;}
.fs5_c00161{font-size:49.173333pt;}
.fs6_c00161{font-size:52.213333pt;}
.fs2_c00161{font-size:55.306667pt;}
.fs3_c00161{font-size:58.346667pt;}
.fs7_c00161{font-size:61.440000pt;}
.fs17_c00161{font-size:64.533333pt;}
.fs4_c00161{font-size:67.573333pt;}
.fse_c00161{font-size:70.666667pt;}
.fs15_c00161{font-size:76.800000pt;}
.fsc_c00161{font-size:79.893333pt;}
.fs14_c00161{font-size:82.933333pt;}
.y0_c00161{bottom:0.000000pt;}
.y49_c00161{bottom:878.586667pt;}
.y47_c00161{bottom:880.133333pt;}
.y48_c00161{bottom:882.426667pt;}
.y83_c00161{bottom:883.973333pt;}
.y7f_c00161{bottom:884.733333pt;}
.y7e_c00161{bottom:885.506667pt;}
.y82_c00161{bottom:886.266667pt;}
.y4a_c00161{bottom:887.040000pt;}
.y81_c00161{bottom:887.813333pt;}
.y80_c00161{bottom:888.573333pt;}
.y84_c00161{bottom:897.026667pt;}
.y7a_c00161{bottom:906.240000pt;}
.y7b_c00161{bottom:907.013333pt;}
.y7c_c00161{bottom:913.920000pt;}
.y7d_c00161{bottom:917.760000pt;}
.y77_c00161{bottom:918.533333pt;}
.y45_c00161{bottom:919.293333pt;}
.y44_c00161{bottom:920.826667pt;}
.y78_c00161{bottom:921.600000pt;}
.y46_c00161{bottom:922.373333pt;}
.y79_c00161{bottom:923.906667pt;}
.y76_c00161{bottom:925.440000pt;}
.y70_c00161{bottom:938.493333pt;}
.y73_c00161{bottom:939.266667pt;}
.y75_c00161{bottom:941.573333pt;}
.y71_c00161{bottom:942.333333pt;}
.y42_c00161{bottom:955.386667pt;}
.y74_c00161{bottom:956.160000pt;}
.y43_c00161{bottom:958.466667pt;}
.y72_c00161{bottom:959.226667pt;}
.y6d_c00161{bottom:960.000000pt;}
.y6e_c00161{bottom:960.773333pt;}
.y6c_c00161{bottom:963.840000pt;}
.y6f_c00161{bottom:970.746667pt;}
.y3f_c00161{bottom:973.826667pt;}
.y6a_c00161{bottom:974.586667pt;}
.y3d_c00161{bottom:975.360000pt;}
.y6b_c00161{bottom:976.133333pt;}
.y3e_c00161{bottom:976.893333pt;}
.y40_c00161{bottom:977.666667pt;}
.y69_c00161{bottom:978.426667pt;}
.y41_c00161{bottom:979.973333pt;}
.y3a_c00161{bottom:987.653333pt;}
.y37_c00161{bottom:988.413333pt;}
.y39_c00161{bottom:989.186667pt;}
.y68_c00161{bottom:989.946667pt;}
.y38_c00161{bottom:990.720000pt;}
.y64_c00161{bottom:991.493333pt;}
.y66_c00161{bottom:992.253333pt;}
.y3b_c00161{bottom:993.026667pt;}
.y65_c00161{bottom:995.333333pt;}
.y3c_c00161{bottom:996.093333pt;}
.y67_c00161{bottom:996.866667pt;}
.y60_c00161{bottom:1010.693333pt;}
.y34_c00161{bottom:1011.453333pt;}
.y36_c00161{bottom:1012.226667pt;}
.y35_c00161{bottom:1012.986667pt;}
.y62_c00161{bottom:1013.760000pt;}
.y63_c00161{bottom:1014.533333pt;}
.y61_c00161{bottom:1015.293333pt;}
.y5f_c00161{bottom:1025.280000pt;}
.y32_c00161{bottom:1026.813333pt;}
.y5e_c00161{bottom:1028.346667pt;}
.y33_c00161{bottom:1029.120000pt;}
.y2f_c00161{bottom:1030.653333pt;}
.y30_c00161{bottom:1031.426667pt;}
.y31_c00161{bottom:1032.186667pt;}
.y5d_c00161{bottom:1033.733333pt;}
.y5c_c00161{bottom:1046.013333pt;}
.y29_c00161{bottom:1046.786667pt;}
.y2b_c00161{bottom:1048.320000pt;}
.y2c_c00161{bottom:1049.093333pt;}
.y2d_c00161{bottom:1049.853333pt;}
.y5b_c00161{bottom:1051.386667pt;}
.y2e_c00161{bottom:1052.160000pt;}
.y5a_c00161{bottom:1063.680000pt;}
.y58_c00161{bottom:1064.453333pt;}
.y2a_c00161{bottom:1065.986667pt;}
.y59_c00161{bottom:1068.293333pt;}
.y57_c00161{bottom:1069.053333pt;}
.y27_c00161{bottom:1082.880000pt;}
.y54_c00161{bottom:1084.413333pt;}
.y55_c00161{bottom:1085.946667pt;}
.y28_c00161{bottom:1086.720000pt;}
.y56_c00161{bottom:1089.026667pt;}
.y24_c00161{bottom:1096.706667pt;}
.y25_c00161{bottom:1099.773333pt;}
.y26_c00161{bottom:1104.386667pt;}
.y53_c00161{bottom:1109.760000pt;}
.y52_c00161{bottom:1112.826667pt;}
.y23_c00161{bottom:1114.373333pt;}
.y1d_c00161{bottom:1118.973333pt;}
.y1e_c00161{bottom:1119.746667pt;}
.y1f_c00161{bottom:1121.280000pt;}
.y20_c00161{bottom:1122.053333pt;}
.y22_c00161{bottom:1122.813333pt;}
.y21_c00161{bottom:1123.586667pt;}
.y17_c00161{bottom:1131.266667pt;}
.y18_c00161{bottom:1132.026667pt;}
.y16_c00161{bottom:1132.800000pt;}
.y1a_c00161{bottom:1134.333333pt;}
.y1b_c00161{bottom:1137.413333pt;}
.y51_c00161{bottom:1138.173333pt;}
.y50_c00161{bottom:1138.946667pt;}
.y1c_c00161{bottom:1141.253333pt;}
.y4f_c00161{bottom:1142.013333pt;}
.y19_c00161{bottom:1147.386667pt;}
.y11_c00161{bottom:1151.226667pt;}
.y15_c00161{bottom:1153.533333pt;}
.y12_c00161{bottom:1155.840000pt;}
.y13_c00161{bottom:1157.373333pt;}
.y14_c00161{bottom:1158.906667pt;}
.y10_c00161{bottom:1182.720000pt;}
.y4c_c00161{bottom:1190.400000pt;}
.ya_c00161{bottom:1191.933333pt;}
.y4d_c00161{bottom:1192.706667pt;}
.yb_c00161{bottom:1194.240000pt;}
.yc_c00161{bottom:1195.013333pt;}
.y4e_c00161{bottom:1198.080000pt;}
.yf_c00161{bottom:1201.920000pt;}
.y4b_c00161{bottom:1205.760000pt;}
.ye_c00161{bottom:1206.533333pt;}
.yd_c00161{bottom:1208.826667pt;}
.y5_c00161{bottom:1209.600000pt;}
.y6_c00161{bottom:1210.373333pt;}
.y7_c00161{bottom:1211.133333pt;}
.y8_c00161{bottom:1211.906667pt;}
.y9_c00161{bottom:1212.666667pt;}
.y4_c00161{bottom:1237.253333pt;}
.y3_c00161{bottom:1238.013333pt;}
.y1_c00161{bottom:1277.946667pt;}
.y2_c00161{bottom:1278.720000pt;}
.h14_c00161{height:2.764500pt;}
.h2_c00161{height:4.799479pt;}
.hb_c00161{height:5.519401pt;}
.h3_c00161{height:8.303099pt;}
.hd_c00161{height:11.038802pt;}
.h15_c00161{height:13.822500pt;}
.h1b_c00161{height:16.606198pt;}
.h13_c00161{height:19.341901pt;}
.hc_c00161{height:22.125599pt;}
.hf_c00161{height:27.645000pt;}
.ha_c00161{height:30.428698pt;}
.h18_c00161{height:33.164401pt;}
.h12_c00161{height:35.948099pt;}
.h1a_c00161{height:38.683802pt;}
.h11_c00161{height:41.467500pt;}
.h7_c00161{height:44.251198pt;}
.h8_c00161{height:46.986901pt;}
.h4_c00161{height:49.770599pt;}
.h5_c00161{height:52.506302pt;}
.h9_c00161{height:55.290000pt;}
.h19_c00161{height:58.073698pt;}
.h6_c00161{height:60.809401pt;}
.h10_c00161{height:63.593099pt;}
.h17_c00161{height:69.112500pt;}
.he_c00161{height:71.896198pt;}
.h16_c00161{height:74.631901pt;}
.h1_c00161{height:1335.333333pt;}
.h0_c00161{height:1335.546667pt;}
.w0_c00161{width:988.413333pt;}
.w1_c00161{width:988.666667pt;}
.x0_c00161{left:0.000000pt;}
.x17_c00161{left:212.733333pt;}
.x2d_c00161{left:214.266667pt;}
.x46_c00161{left:218.106667pt;}
.x28_c00161{left:228.093333pt;}
.x23_c00161{left:235.013333pt;}
.x1d_c00161{left:238.080000pt;}
.x43_c00161{left:241.920000pt;}
.x47_c00161{left:256.506667pt;}
.x18_c00161{left:258.813333pt;}
.x40_c00161{left:261.893333pt;}
.x1e_c00161{left:264.960000pt;}
.x8_c00161{left:270.333333pt;}
.x19_c00161{left:274.946667pt;}
.x24_c00161{left:276.480000pt;}
.x48_c00161{left:279.546667pt;}
.x2f_c00161{left:281.093333pt;}
.x41_c00161{left:282.626667pt;}
.x9_c00161{left:288.000000pt;}
.x2c_c00161{left:290.306667pt;}
.x3a_c00161{left:294.906667pt;}
.x30_c00161{left:297.986667pt;}
.xa_c00161{left:304.133333pt;}
.x44_c00161{left:307.200000pt;}
.x3c_c00161{left:308.733333pt;}
.x31_c00161{left:310.266667pt;}
.x1f_c00161{left:312.573333pt;}
.x37_c00161{left:314.106667pt;}
.xb_c00161{left:315.653333pt;}
.x1a_c00161{left:318.720000pt;}
.x25_c00161{left:322.560000pt;}
.x29_c00161{left:326.400000pt;}
.xc_c00161{left:329.466667pt;}
.x38_c00161{left:343.293333pt;}
.xd_c00161{left:347.133333pt;}
.x39_c00161{left:355.586667pt;}
.x26_c00161{left:360.960000pt;}
.x32_c00161{left:362.493333pt;}
.x1b_c00161{left:364.800000pt;}
.xe_c00161{left:367.866667pt;}
.x3b_c00161{left:371.706667pt;}
.x33_c00161{left:380.160000pt;}
.x2a_c00161{left:382.466667pt;}
.xf_c00161{left:384.773333pt;}
.x27_c00161{left:388.613333pt;}
.x11_c00161{left:392.453333pt;}
.x2e_c00161{left:398.586667pt;}
.x34_c00161{left:403.200000pt;}
.x1c_c00161{left:404.733333pt;}
.x10_c00161{left:411.653333pt;}
.x3d_c00161{left:414.720000pt;}
.x35_c00161{left:423.933333pt;}
.x15_c00161{left:426.240000pt;}
.x45_c00161{left:430.853333pt;}
.x49_c00161{left:433.146667pt;}
.x3_c00161{left:434.693333pt;}
.x16_c00161{left:437.760000pt;}
.x12_c00161{left:440.826667pt;}
.x42_c00161{left:443.906667pt;}
.x20_c00161{left:445.439933pt;}
.x4_c00161{left:451.586667pt;}
.x36_c00161{left:453.120000pt;}
.x2b_c00161{left:455.426667pt;}
.x21_c00161{left:460.026667pt;}
.x14_c00161{left:464.640000pt;}
.x3e_c00161{left:466.946667pt;}
.x22_c00161{left:476.160000pt;}
.x5_c00161{left:480.773333pt;}
.x3f_c00161{left:485.373333pt;}
.x13_c00161{left:488.453333pt;}
.x90_c00161{left:503.040000pt;}
.x6_c00161{left:507.653333pt;}
.x87_c00161{left:509.946667pt;}
.x79_c00161{left:514.560000pt;}
.x88_c00161{left:518.400000pt;}
.x81_c00161{left:520.706667pt;}
.x73_c00161{left:522.240000pt;}
.x7f_c00161{left:523.773333pt;}
.x56_c00161{left:529.146667pt;}
.x7_c00161{left:530.693333pt;}
.x4a_c00161{left:532.226667pt;}
.x82_c00161{left:534.533333pt;}
.x8c_c00161{left:536.066667pt;}
.x57_c00161{left:545.280000pt;}
.x50_c00161{left:552.186667pt;}
.x1_c00161{left:556.800000pt;}
.x65_c00161{left:558.333333pt;}
.x74_c00161{left:562.173333pt;}
.x2_c00161{left:565.253333pt;}
.x8d_c00161{left:566.786667pt;}
.x6e_c00161{left:568.320000pt;}
.x83_c00161{left:571.386667pt;}
.x66_c00161{left:576.000000pt;}
.x58_c00161{left:578.306667pt;}
.x7a_c00161{left:579.840000pt;}
.x53_c00161{left:584.453333pt;}
.x6c_c00161{left:585.986667pt;}
.x59_c00161{left:595.200000pt;}
.x60_c00161{left:598.266667pt;}
.x7b_c00161{left:599.813333pt;}
.x51_c00161{left:609.786667pt;}
.x8e_c00161{left:611.333333pt;}
.x61_c00161{left:616.706667pt;}
.x4b_c00161{left:618.240000pt;}
.x89_c00161{left:623.613333pt;}
.x5a_c00161{left:625.146667pt;}
.x62_c00161{left:628.226667pt;}
.x70_c00161{left:630.533333pt;}
.x84_c00161{left:632.066667pt;}
.x4c_c00161{left:633.600000pt;}
.x5b_c00161{left:638.973333pt;}
.x75_c00161{left:641.280000pt;}
.x91_c00161{left:645.120000pt;}
.x71_c00161{left:651.266667pt;}
.x67_c00161{left:653.573333pt;}
.x5c_c00161{left:657.413333pt;}
.x8a_c00161{left:658.946667pt;}
.x77_c00161{left:665.093333pt;}
.x76_c00161{left:666.626667pt;}
.x63_c00161{left:668.160000pt;}
.x4d_c00161{left:673.533333pt;}
.x5d_c00161{left:676.613333pt;}
.x52_c00161{left:678.906667pt;}
.x68_c00161{left:681.986667pt;}
.x4e_c00161{left:692.733333pt;}
.x6f_c00161{left:698.880000pt;}
.x54_c00161{left:704.253333pt;}
.x7c_c00161{left:706.560000pt;}
.x8f_c00161{left:711.933333pt;}
.x5e_c00161{left:722.693333pt;}
.x7d_c00161{left:724.986667pt;}
.x85_c00161{left:727.293333pt;}
.x92_c00161{left:728.826667pt;}
.x64_c00161{left:731.133333pt;}
.x8b_c00161{left:734.213333pt;}
.x55_c00161{left:739.586667pt;}
.x5f_c00161{left:741.120000pt;}
.x78_c00161{left:742.653333pt;}
.x6d_c00161{left:751.106667pt;}
.x4f_c00161{left:754.946667pt;}
.x93_c00161{left:757.253333pt;}
.x69_c00161{left:759.546667pt;}
.x6a_c00161{left:765.693333pt;}
.x72_c00161{left:767.226667pt;}
.x86_c00161{left:773.373333pt;}
.x6b_c00161{left:784.133333pt;}
.x7e_c00161{left:796.413333pt;}
.x80_c00161{left:802.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_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_3294a2f34151b2806a435a46.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.109863;font-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_c00162{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00162{transform:matrix(0.032650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032650,0.000000,0.000000,0.250000,0,0);}
.maf_c00162{transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);}
.mc6_c00162{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m17_c00162{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m81_c00162{transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00162{transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);}
.m5e_c00162{transform:matrix(0.130300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130300,0.000000,0.000000,0.250000,0,0);}
.m24_c00162{transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);}
.m2f_c00162{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.mb9_c00162{transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);}
.m1_c00162{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00162{transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);}
.ma9_c00162{transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);}
.mae_c00162{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);}
.mba_c00162{transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);}
.m31_c00162{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.ma5_c00162{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.mab_c00162{transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);}
.ma6_c00162{transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);}
.mbe_c00162{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00162{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);}
.mc4_c00162{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);}
.mb5_c00162{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.m7c_c00162{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m85_c00162{transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);}
.mbc_c00162{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.mb8_c00162{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m4e_c00162{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);}
.m7e_c00162{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.m99_c00162{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.m19_c00162{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);}
.m35_c00162{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);}
.m44_c00162{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.m10_c00162{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);}
.m71_c00162{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);}
.m4f_c00162{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.mc1_c00162{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.m15_c00162{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.mbf_c00162{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);}
.m5d_c00162{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.mc0_c00162{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);}
.m60_c00162{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);}
.m25_c00162{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m57_c00162{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);}
.m8a_c00162{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m73_c00162{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.m90_c00162{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);}
.m96_c00162{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m8_c00162{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);}
.mac_c00162{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m87_c00162{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);}
.m8d_c00162{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);}
.m58_c00162{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);}
.m1d_c00162{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);}
.m6a_c00162{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.m32_c00162{transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);}
.m70_c00162{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);}
.m5f_c00162{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m59_c00162{transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);}
.m4c_c00162{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);}
.m3a_c00162{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m78_c00162{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);}
.m9b_c00162{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.m6c_c00162{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.m91_c00162{transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);}
.m98_c00162{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);}
.m38_c00162{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);}
.m6e_c00162{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);}
.mb3_c00162{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);}
.m40_c00162{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);}
.m95_c00162{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);}
.m74_c00162{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);}
.mb1_c00162{transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);}
.m67_c00162{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);}
.ma3_c00162{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.m79_c00162{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);}
.m66_c00162{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);}
.ma1_c00162{transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);}
.m46_c00162{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.m94_c00162{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);}
.m8f_c00162{transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);}
.m83_c00162{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m76_c00162{transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);}
.m9d_c00162{transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);}
.m68_c00162{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);}
.m65_c00162{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);}
.m39_c00162{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.mb6_c00162{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);}
.m97_c00162{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_c00162{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);}
.mb7_c00162{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m7f_c00162{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);}
.m9f_c00162{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m53_c00162{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m5b_c00162{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m26_c00162{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m82_c00162{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);}
.m3c_c00162{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m37_c00162{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);}
.ma2_c00162{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m52_c00162{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);}
.m1e_c00162{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00162{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);}
.m89_c00162{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);}
.m51_c00162{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);}
.m2b_c00162{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);}
.m43_c00162{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf_c00162{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m88_c00162{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);}
.m49_c00162{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00162{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);}
.me_c00162{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);}
.m3b_c00162{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00162{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);}
.m0_c00162{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m77_c00162{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.maa_c00162{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);}
.m36_c00162{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00162{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);}
.m1b_c00162{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);}
.m47_c00162{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00162{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00162{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);}
.m2c_c00162{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c00162{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m27_c00162{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);}
.m93_c00162{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00162{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00162{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m42_c00162{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c00162{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00162{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m75_c00162{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m63_c00162{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c00162{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00162{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00162{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c00162{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c00162{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);}
.m50_c00162{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);}
.m62_c00162{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7_c00162{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);}
.ma0_c00162{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m13_c00162{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m61_c00162{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m48_c00162{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m41_c00162{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00162{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);}
.mc_c00162{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m64_c00162{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);}
.m20_c00162{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m72_c00162{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00162{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);}
.m86_c00162{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c00162{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00162{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c00162{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m80_c00162{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m55_c00162{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m30_c00162{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);}
.m34_c00162{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m69_c00162{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m45_c00162{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00162{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00162{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m56_c00162{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);}
.m18_c00162{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00162{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m12_c00162{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00162{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m23_c00162{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00162{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m22_c00162{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00162{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00162{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);}
.m9c_c00162{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);}
.ma4_c00162{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m92_c00162{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00162{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00162{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m33_c00162{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);}
.m7b_c00162{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m54_c00162{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mad_c00162{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00162{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m2_c00162{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m9_c00162{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00162{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m29_c00162{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m84_c00162{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00162{transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00162{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m3_c00162{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00162{transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00162{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00162{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m28_c00162{transform:matrix(1.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.327500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00162{transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00162{transform:matrix(2.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.460000,0.000000,0.000000,0.250000,0,0);}
.m16_c00162{transform:matrix(6.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.425000,0.000000,0.000000,0.250000,0,0);}
.v2_c00162{vertical-align:-27.660000px;}
.v3_c00162{vertical-align:-6.960000px;}
.v0_c00162{vertical-align:0.000000px;}
.v1_c00162{vertical-align:3.420000px;}
.ls3_c00162{letter-spacing:0.000000px;}
.ls2_c00162{letter-spacing:33.178740px;}
.ls0_c00162{letter-spacing:64.727900px;}
.ls1_c00162{letter-spacing:388.778400px;}
.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;}
}
.ws1_c00162{word-spacing:-6.156300px;}
.ws2_c00162{word-spacing:0.000000px;}
.ws0_c00162{word-spacing:615.424260px;}
.fc0_c00162{color:transparent;}
.fs2_c00162{font-size:3.456000px;}
.fs0_c00162{font-size:6.000000px;}
.fs7_c00162{font-size:6.900000px;}
.fs3_c00162{font-size:10.380000px;}
.fs1_c00162{font-size:13.800000px;}
.fs8_c00162{font-size:17.280000px;}
.fs1f_c00162{font-size:20.760000px;}
.fsd_c00162{font-size:24.180000px;}
.fse_c00162{font-size:27.660000px;}
.fs22_c00162{font-size:31.080000px;}
.fs17_c00162{font-size:34.560000px;}
.fs6_c00162{font-size:38.040000px;}
.fs1e_c00162{font-size:41.460000px;}
.fs15_c00162{font-size:44.940000px;}
.fs1c_c00162{font-size:48.360000px;}
.fs1b_c00162{font-size:51.840000px;}
.fs16_c00162{font-size:55.320000px;}
.fs18_c00162{font-size:58.740000px;}
.fs11_c00162{font-size:62.220000px;}
.fs10_c00162{font-size:65.640000px;}
.fs14_c00162{font-size:69.120000px;}
.fs1a_c00162{font-size:72.600000px;}
.fs19_c00162{font-size:76.020000px;}
.fs13_c00162{font-size:79.500000px;}
.fs1d_c00162{font-size:82.920000px;}
.fsa_c00162{font-size:86.400000px;}
.fs9_c00162{font-size:89.880000px;}
.fsb_c00162{font-size:93.300000px;}
.fs12_c00162{font-size:96.780000px;}
.fsf_c00162{font-size:103.680000px;}
.fs20_c00162{font-size:110.580000px;}
.fsc_c00162{font-size:114.060000px;}
.fs23_c00162{font-size:145.140000px;}
.fs21_c00162{font-size:155.520000px;}
.fs24_c00162{font-size:159.000000px;}
.fs4_c00162{font-size:162.420000px;}
.fs5_c00162{font-size:165.900000px;}
.y0_c00162{bottom:0.000000px;}
.y113_c00162{bottom:395.715000px;}
.y111_c00162{bottom:396.570000px;}
.y110_c00162{bottom:399.165000px;}
.y112_c00162{bottom:400.035000px;}
.y10f_c00162{bottom:400.890000px;}
.y10e_c00162{bottom:401.760000px;}
.y10d_c00162{bottom:402.630000px;}
.y114_c00162{bottom:406.950000px;}
.y10b_c00162{bottom:412.995000px;}
.y10a_c00162{bottom:417.315000px;}
.y109_c00162{bottom:419.910000px;}
.y108_c00162{bottom:421.635000px;}
.y107_c00162{bottom:422.490000px;}
.y106_c00162{bottom:427.680000px;}
.y10c_c00162{bottom:430.275000px;}
.y103_c00162{bottom:432.870000px;}
.y101_c00162{bottom:435.450000px;}
.y102_c00162{bottom:436.320000px;}
.y100_c00162{bottom:437.190000px;}
.y105_c00162{bottom:440.640000px;}
.y104_c00162{bottom:449.280000px;}
.yff_c00162{bottom:452.730000px;}
.yfd_c00162{bottom:456.195000px;}
.yfb_c00162{bottom:457.050000px;}
.yfa_c00162{bottom:457.920000px;}
.yf9_c00162{bottom:459.645000px;}
.yfe_c00162{bottom:460.515000px;}
.yfc_c00162{bottom:470.880000px;}
.yf8_c00162{bottom:475.200000px;}
.yf0_c00162{bottom:476.070000px;}
.yf1_c00162{bottom:476.925000px;}
.yf5_c00162{bottom:477.795000px;}
.yed_c00162{bottom:478.650000px;}
.yf6_c00162{bottom:480.390000px;}
.yf2_c00162{bottom:481.245000px;}
.yf3_c00162{bottom:482.115000px;}
.yef_c00162{bottom:484.710000px;}
.yf4_c00162{bottom:486.435000px;}
.yf7_c00162{bottom:489.030000px;}
.yee_c00162{bottom:493.350000px;}
.yec_c00162{bottom:496.800000px;}
.ye3_c00162{bottom:498.525000px;}
.yeb_c00162{bottom:499.395000px;}
.ye9_c00162{bottom:500.250000px;}
.yde_c00162{bottom:501.120000px;}
.yea_c00162{bottom:504.570000px;}
.ye0_c00162{bottom:514.950000px;}
.ye1_c00162{bottom:516.675000px;}
.ye2_c00162{bottom:517.530000px;}
.ydf_c00162{bottom:518.400000px;}
.ye4_c00162{bottom:524.445000px;}
.ye5_c00162{bottom:526.170000px;}
.ye7_c00162{bottom:530.490000px;}
.ye6_c00162{bottom:532.230000px;}
.ye8_c00162{bottom:533.955000px;}
.yd9_c00162{bottom:538.275000px;}
.yda_c00162{bottom:539.130000px;}
.ydd_c00162{bottom:540.000000px;}
.yd8_c00162{bottom:540.870000px;}
.ydb_c00162{bottom:544.320000px;}
.yd7_c00162{bottom:545.190000px;}
.ydc_c00162{bottom:555.555000px;}
.yd6_c00162{bottom:559.005000px;}
.yd5_c00162{bottom:562.470000px;}
.yd2_c00162{bottom:575.430000px;}
.yd3_c00162{bottom:578.010000px;}
.yd4_c00162{bottom:579.750000px;}
.yd1_c00162{bottom:582.330000px;}
.yd0_c00162{bottom:587.520000px;}
.yce_c00162{bottom:595.290000px;}
.ycf_c00162{bottom:597.030000px;}
.yaa_c00162{bottom:598.755000px;}
.ycd_c00162{bottom:599.610000px;}
.ya9_c00162{bottom:604.800000px;}
.ycc_c00162{bottom:616.035000px;}
.ya6_c00162{bottom:619.485000px;}
.ya8_c00162{bottom:621.210000px;}
.ya5_c00162{bottom:625.530000px;}
.ya7_c00162{bottom:626.400000px;}
.ycb_c00162{bottom:629.850000px;}
.yca_c00162{bottom:635.910000px;}
.ya3_c00162{bottom:639.360000px;}
.yc7_c00162{bottom:641.085000px;}
.yc5_c00162{bottom:641.955000px;}
.ya4_c00162{bottom:642.810000px;}
.yc6_c00162{bottom:643.680000px;}
.ya2_c00162{bottom:644.550000px;}
.ya1_c00162{bottom:645.405000px;}
.ya0_c00162{bottom:646.275000px;}
.yc8_c00162{bottom:648.000000px;}
.yc9_c00162{bottom:652.320000px;}
.yc2_c00162{bottom:655.770000px;}
.yc0_c00162{bottom:657.510000px;}
.yc1_c00162{bottom:659.235000px;}
.yc3_c00162{bottom:660.090000px;}
.yc4_c00162{bottom:660.960000px;}
.y9e_c00162{bottom:662.685000px;}
.y9f_c00162{bottom:664.410000px;}
.y9c_c00162{bottom:665.280000px;}
.y9d_c00162{bottom:666.150000px;}
.ybe_c00162{bottom:677.370000px;}
.ybc_c00162{bottom:679.110000px;}
.ybf_c00162{bottom:680.835000px;}
.y9b_c00162{bottom:681.690000px;}
.y98_c00162{bottom:683.430000px;}
.ybd_c00162{bottom:684.285000px;}
.y99_c00162{bottom:685.155000px;}
.ybb_c00162{bottom:697.245000px;}
.y9a_c00162{bottom:698.115000px;}
.y97_c00162{bottom:698.970000px;}
.y95_c00162{bottom:699.840000px;}
.y96_c00162{bottom:700.710000px;}
.yba_c00162{bottom:701.565000px;}
.y94_c00162{bottom:707.610000px;}
.y93_c00162{bottom:720.570000px;}
.y8d_c00162{bottom:722.310000px;}
.yb9_c00162{bottom:723.165000px;}
.y8e_c00162{bottom:725.760000px;}
.y92_c00162{bottom:728.355000px;}
.y91_c00162{bottom:729.210000px;}
.y8f_c00162{bottom:730.080000px;}
.y90_c00162{bottom:733.530000px;}
.yb7_c00162{bottom:736.995000px;}
.yb6_c00162{bottom:738.720000px;}
.y8c_c00162{bottom:739.590000px;}
.yb8_c00162{bottom:740.445000px;}
.y8b_c00162{bottom:741.315000px;}
.y8a_c00162{bottom:744.765000px;}
.y89_c00162{bottom:745.635000px;}
.yae_c00162{bottom:749.085000px;}
.yb5_c00162{bottom:751.680000px;}
.yb4_c00162{bottom:752.550000px;}
.yb2_c00162{bottom:756.870000px;}
.yb1_c00162{bottom:758.595000px;}
.y88_c00162{bottom:760.320000px;}
.yb3_c00162{bottom:761.190000px;}
.yaf_c00162{bottom:762.915000px;}
.y87_c00162{bottom:765.510000px;}
.y86_c00162{bottom:766.365000px;}
.y85_c00162{bottom:768.090000px;}
.yb0_c00162{bottom:774.150000px;}
.y7f_c00162{bottom:781.050000px;}
.y83_c00162{bottom:784.515000px;}
.y82_c00162{bottom:785.370000px;}
.y7e_c00162{bottom:787.110000px;}
.y84_c00162{bottom:787.965000px;}
.yac_c00162{bottom:790.560000px;}
.y80_c00162{bottom:792.285000px;}
.y81_c00162{bottom:794.010000px;}
.yad_c00162{bottom:796.605000px;}
.y7c_c00162{bottom:801.795000px;}
.yab_c00162{bottom:802.650000px;}
.y7d_c00162{bottom:805.245000px;}
.y7b_c00162{bottom:814.755000px;}
.y78_c00162{bottom:819.930000px;}
.y7a_c00162{bottom:823.395000px;}
.y79_c00162{bottom:824.250000px;}
.y76_c00162{bottom:825.120000px;}
.y77_c00162{bottom:825.990000px;}
.y52_c00162{bottom:838.080000px;}
.y74_c00162{bottom:839.805000px;}
.y51_c00162{bottom:840.675000px;}
.y75_c00162{bottom:844.125000px;}
.y73_c00162{bottom:845.850000px;}
.y50_c00162{bottom:858.810000px;}
.y4e_c00162{bottom:860.550000px;}
.y70_c00162{bottom:861.405000px;}
.y4f_c00162{bottom:863.130000px;}
.y72_c00162{bottom:864.000000px;}
.y4d_c00162{bottom:864.870000px;}
.y71_c00162{bottom:865.725000px;}
.y4a_c00162{bottom:877.830000px;}
.y4c_c00162{bottom:878.685000px;}
.y6f_c00162{bottom:879.555000px;}
.y6d_c00162{bottom:881.280000px;}
.y4b_c00162{bottom:883.005000px;}
.y6e_c00162{bottom:884.730000px;}
.y6c_c00162{bottom:887.325000px;}
.y6b_c00162{bottom:896.835000px;}
.y49_c00162{bottom:901.155000px;}
.y6a_c00162{bottom:902.010000px;}
.y48_c00162{bottom:903.750000px;}
.y47_c00162{bottom:904.605000px;}
.y69_c00162{bottom:905.475000px;}
.y68_c00162{bottom:906.330000px;}
.y67_c00162{bottom:907.200000px;}
.y46_c00162{bottom:919.290000px;}
.y64_c00162{bottom:922.755000px;}
.y45_c00162{bottom:923.610000px;}
.y44_c00162{bottom:924.480000px;}
.y65_c00162{bottom:925.350000px;}
.y63_c00162{bottom:927.075000px;}
.y66_c00162{bottom:930.525000px;}
.y42_c00162{bottom:940.035000px;}
.y61_c00162{bottom:941.760000px;}
.y3f_c00162{bottom:943.485000px;}
.y43_c00162{bottom:944.355000px;}
.y41_c00162{bottom:945.210000px;}
.y40_c00162{bottom:946.080000px;}
.y62_c00162{bottom:946.950000px;}
.y60_c00162{bottom:959.910000px;}
.y3d_c00162{bottom:960.765000px;}
.y5e_c00162{bottom:962.490000px;}
.y5d_c00162{bottom:963.360000px;}
.y3e_c00162{bottom:964.230000px;}
.y3b_c00162{bottom:965.085000px;}
.y3c_c00162{bottom:965.955000px;}
.y5c_c00162{bottom:967.680000px;}
.y5f_c00162{bottom:972.000000px;}
.y39_c00162{bottom:980.640000px;}
.y38_c00162{bottom:982.365000px;}
.y5b_c00162{bottom:983.235000px;}
.y5a_c00162{bottom:984.960000px;}
.y3a_c00162{bottom:985.830000px;}
.y36_c00162{bottom:1000.515000px;}
.y34_c00162{bottom:1002.240000px;}
.y32_c00162{bottom:1003.110000px;}
.y33_c00162{bottom:1004.835000px;}
.y35_c00162{bottom:1005.690000px;}
.y37_c00162{bottom:1006.560000px;}
.y59_c00162{bottom:1007.430000px;}
.y58_c00162{bottom:1024.710000px;}
.y31_c00162{bottom:1025.565000px;}
.y56_c00162{bottom:1027.290000px;}
.y55_c00162{bottom:1028.160000px;}
.y57_c00162{bottom:1029.030000px;}
.y11e_c00162{bottom:1035.930000px;}
.y30_c00162{bottom:1036.800000px;}
.y2f_c00162{bottom:1041.120000px;}
.y2e_c00162{bottom:1043.715000px;}
.y2b_c00162{bottom:1044.570000px;}
.y2d_c00162{bottom:1046.310000px;}
.y2c_c00162{bottom:1047.165000px;}
.y2a_c00162{bottom:1048.035000px;}
.y54_c00162{bottom:1055.805000px;}
.y53_c00162{bottom:1060.995000px;}
.y29_c00162{bottom:1061.850000px;}
.y27_c00162{bottom:1064.445000px;}
.y28_c00162{bottom:1067.040000px;}
.y26_c00162{bottom:1068.765000px;}
.y24_c00162{bottom:1109.370000px;}
.y25_c00162{bottom:1111.110000px;}
.y23_c00162{bottom:1113.690000px;}
.y22_c00162{bottom:1115.430000px;}
.y21_c00162{bottom:1116.285000px;}
.y1c_c00162{bottom:1138.755000px;}
.y1f_c00162{bottom:1145.670000px;}
.y20_c00162{bottom:1147.395000px;}
.y1e_c00162{bottom:1148.250000px;}
.y1d_c00162{bottom:1149.120000px;}
.y19_c00162{bottom:1167.270000px;}
.y18_c00162{bottom:1168.125000px;}
.y16_c00162{bottom:1168.995000px;}
.y17_c00162{bottom:1169.850000px;}
.y1b_c00162{bottom:1170.720000px;}
.y1a_c00162{bottom:1171.590000px;}
.y15_c00162{bottom:1175.040000px;}
.y13_c00162{bottom:1175.910000px;}
.y14_c00162{bottom:1178.490000px;}
.y12_c00162{bottom:1181.955000px;}
.y11_c00162{bottom:1182.810000px;}
.yf_c00162{bottom:1183.680000px;}
.y10_c00162{bottom:1184.550000px;}
.ye_c00162{bottom:1204.410000px;}
.yd_c00162{bottom:1209.600000px;}
.y8_c00162{bottom:1216.515000px;}
.yc_c00162{bottom:1217.370000px;}
.yb_c00162{bottom:1219.110000px;}
.ya_c00162{bottom:1219.965000px;}
.y7_c00162{bottom:1221.690000px;}
.y9_c00162{bottom:1222.560000px;}
.y6_c00162{bottom:1223.430000px;}
.y5_c00162{bottom:1226.010000px;}
.y3_c00162{bottom:1269.210000px;}
.y4_c00162{bottom:1270.080000px;}
.y2_c00162{bottom:1277.850000px;}
.y1_c00162{bottom:1278.720000px;}
.y11d_c00162{bottom:1298.595000px;}
.y11c_c00162{bottom:1312.410000px;}
.y11a_c00162{bottom:1335.750000px;}
.y118_c00162{bottom:1338.330000px;}
.y11b_c00162{bottom:1341.795000px;}
.y119_c00162{bottom:1343.520000px;}
.y117_c00162{bottom:1370.310000px;}
.y116_c00162{bottom:1391.910000px;}
.y115_c00162{bottom:1401.405000px;}
.h4_c00162{height:3.110063px;}
.h2_c00162{height:5.399414px;}
.h9_c00162{height:6.209326px;}
.h18_c00162{height:6.530063px;}
.h5_c00162{height:9.340986px;}
.h3_c00162{height:12.418652px;}
.ha_c00162{height:15.550313px;}
.h23_c00162{height:18.681973px;}
.hf_c00162{height:21.759639px;}
.h10_c00162{height:24.891299px;}
.h26_c00162{height:27.968965px;}
.h22_c00162{height:31.100625px;}
.h8_c00162{height:34.232285px;}
.h1a_c00162{height:34.580625px;}
.h21_c00162{height:37.309951px;}
.h17_c00162{height:40.441611px;}
.h1f_c00162{height:43.519277px;}
.h1e_c00162{height:46.650937px;}
.h19_c00162{height:49.782598px;}
.h1b_c00162{height:52.860264px;}
.h13_c00162{height:55.991924px;}
.h12_c00162{height:59.069590px;}
.h16_c00162{height:62.201250px;}
.h1d_c00162{height:65.332910px;}
.h1c_c00162{height:68.410576px;}
.h15_c00162{height:71.542236px;}
.h20_c00162{height:74.619902px;}
.hc_c00162{height:77.751563px;}
.hb_c00162{height:80.883223px;}
.hd_c00162{height:83.960889px;}
.h14_c00162{height:87.092549px;}
.h11_c00162{height:93.301875px;}
.h24_c00162{height:99.511201px;}
.he_c00162{height:102.642861px;}
.h27_c00162{height:130.611826px;}
.h25_c00162{height:139.952812px;}
.h28_c00162{height:143.084473px;}
.h6_c00162{height:146.162139px;}
.h7_c00162{height:149.293799px;}
.h0_c00162{height:1523.235000px;}
.h1_c00162{height:1523.250000px;}
.w0_c00162{width:1107.645000px;}
.w1_c00162{width:1107.750000px;}
.x0_c00162{left:0.000000px;}
.xba_c00162{left:197.850000px;}
.xbb_c00162{left:207.360000px;}
.xbf_c00162{left:214.275000px;}
.xc3_c00162{left:217.725000px;}
.xc2_c00162{left:220.320000px;}
.x8b_c00162{left:224.640000px;}
.xc0_c00162{left:232.410000px;}
.x7_c00162{left:240.195000px;}
.x8d_c00162{left:242.790000px;}
.x7c_c00162{left:244.515000px;}
.xac_c00162{left:254.879925px;}
.xbc_c00162{left:256.605000px;}
.x71_c00162{left:259.200000px;}
.x7d_c00162{left:260.925000px;}
.xf_c00162{left:264.390000px;}
.x79_c00162{left:266.115000px;}
.x6e_c00162{left:268.710000px;}
.x1a_c00162{left:271.290000px;}
.xb0_c00162{left:280.800000px;}
.x10_c00162{left:283.395000px;}
.xc4_c00162{left:285.120000px;}
.x6f_c00162{left:288.570000px;}
.x77_c00162{left:296.355000px;}
.x72_c00162{left:298.080000px;}
.x75_c00162{left:299.805000px;}
.x7a_c00162{left:302.400000px;}
.x85_c00162{left:305.850000px;}
.x8c_c00162{left:311.040000px;}
.x83_c00162{left:313.635000px;}
.xb1_c00162{left:317.085000px;}
.xc5_c00162{left:320.550000px;}
.x11_c00162{left:327.450000px;}
.xa_c00162{left:330.045000px;}
.x7b_c00162{left:333.510000px;}
.x70_c00162{left:347.325000px;}
.x7e_c00162{left:354.240000px;}
.xc1_c00162{left:355.965000px;}
.x8e_c00162{left:361.155000px;}
.x12_c00162{left:364.605000px;}
.x86_c00162{left:367.200000px;}
.xb6_c00162{left:368.925000px;}
.x5e_c00162{left:370.650000px;}
.xb2_c00162{left:374.115000px;}
.x2e_c00162{left:375.840000px;}
.x66_c00162{left:377.565000px;}
.x3_c00162{left:380.160000px;}
.x1_c00162{left:383.610000px;}
.x76_c00162{left:386.205000px;}
.x5f_c00162{left:387.930000px;}
.x2_c00162{left:392.250000px;}
.x36_c00162{left:394.845000px;}
.x13_c00162{left:397.440000px;}
.x4_c00162{left:402.630000px;}
.x2f_c00162{left:407.805000px;}
.xb3_c00162{left:410.400000px;}
.x5_c00162{left:412.125000px;}
.x82_c00162{left:418.170000px;}
.x6_c00162{left:425.085000px;}
.x67_c00162{left:426.810000px;}
.x60_c00162{left:434.595000px;}
.x14_c00162{left:437.190000px;}
.x84_c00162{left:438.915000px;}
.x62_c00162{left:440.640000px;}
.x61_c00162{left:444.960000px;}
.x64_c00162{left:450.150000px;}
.x5b_c00162{left:452.730000px;}
.x30_c00162{left:457.920000px;}
.x6a_c00162{left:460.515000px;}
.x5c_c00162{left:464.835000px;}
.x15_c00162{left:466.560000px;}
.x24_c00162{left:470.010000px;}
.x73_c00162{left:476.070000px;}
.x5d_c00162{left:478.650000px;}
.xae_c00162{left:481.245000px;}
.x78_c00162{left:483.840000px;}
.x68_c00162{left:487.290000px;}
.x16_c00162{left:489.030000px;}
.x6b_c00162{left:490.755000px;}
.x74_c00162{left:494.205000px;}
.x8f_c00162{left:495.930000px;}
.x7f_c00162{left:499.395000px;}
.x6c_c00162{left:501.120000px;}
.x88_c00162{left:502.845000px;}
.x8_c00162{left:504.570000px;}
.x6d_c00162{left:508.890000px;}
.x8a_c00162{left:512.355000px;}
.x90_c00162{left:514.080000px;}
.x1b_c00162{left:515.805000px;}
.x17_c00162{left:521.850000px;}
.xb7_c00162{left:526.170000px;}
.x65_c00162{left:527.910000px;}
.x87_c00162{left:530.490000px;}
.x63_c00162{left:534.810000px;}
.x89_c00162{left:537.405000px;}
.x31_c00162{left:539.130000px;}
.x80_c00162{left:540.870000px;}
.xc6_c00162{left:557.280000px;}
.x81_c00162{left:559.875000px;}
.x69_c00162{left:562.470000px;}
.x33_c00162{left:564.195000px;}
.xa8_c00162{left:567.645000px;}
.x9a_c00162{left:570.240000px;}
.x25_c00162{left:571.965000px;}
.xab_c00162{left:573.690000px;}
.x3c_c00162{left:575.430000px;}
.x18_c00162{left:577.155000px;}
.x56_c00162{left:578.880000px;}
.x1c_c00162{left:580.605000px;}
.x9b_c00162{left:583.200000px;}
.x26_c00162{left:585.795000px;}
.x91_c00162{left:589.245000px;}
.x46_c00162{left:591.840000px;}
.x4f_c00162{left:593.565000px;}
.x4c_c00162{left:596.160000px;}
.x47_c00162{left:603.075000px;}
.x34_c00162{left:606.525000px;}
.x94_c00162{left:609.120000px;}
.xb4_c00162{left:612.570000px;}
.x37_c00162{left:614.310000px;}
.x27_c00162{left:621.210000px;}
.xb8_c00162{left:626.400000px;}
.x28_c00162{left:628.995000px;}
.x19_c00162{left:637.635000px;}
.xa3_c00162{left:640.230000px;}
.xa0_c00162{left:641.955000px;}
.x3d_c00162{left:644.550000px;}
.x4d_c00162{left:649.725000px;}
.x43_c00162{left:652.320000px;}
.x29_c00162{left:654.915000px;}
.x48_c00162{left:660.090000px;}
.x44_c00162{left:661.830000px;}
.x58_c00162{left:665.280000px;}
.x1d_c00162{left:667.005000px;}
.xb9_c00162{left:669.600000px;}
.x3e_c00162{left:671.325000px;}
.xe_c00162{left:673.050000px;}
.x2a_c00162{left:678.240000px;}
.x95_c00162{left:681.690000px;}
.xb_c00162{left:683.430000px;}
.xa4_c00162{left:686.880000px;}
.xa9_c00162{left:688.605000px;}
.x35_c00162{left:690.330000px;}
.x1e_c00162{left:692.070000px;}
.x57_c00162{left:695.520000px;}
.x9e_c00162{left:698.970000px;}
.xad_c00162{left:705.030000px;}
.xc_c00162{left:713.670000px;}
.x2b_c00162{left:718.845000px;}
.x32_c00162{left:725.760000px;}
.x50_c00162{left:727.485000px;}
.xaf_c00162{left:733.530000px;}
.x49_c00162{left:735.270000px;}
.xa5_c00162{left:737.850000px;}
.xb5_c00162{left:742.170000px;}
.x1f_c00162{left:743.910000px;}
.x3f_c00162{left:750.810000px;}
.x45_c00162{left:752.550000px;}
.x9c_c00162{left:754.275000px;}
.x51_c00162{left:757.725000px;}
.x59_c00162{left:760.320000px;}
.x40_c00162{left:768.960000px;}
.x2c_c00162{left:772.410000px;}
.x20_c00162{left:775.005000px;}
.xbd_c00162{left:777.600000px;}
.x9_c00162{left:781.920000px;}
.x52_c00162{left:783.645000px;}
.x21_c00162{left:787.110000px;}
.x41_c00162{left:789.690000px;}
.x96_c00162{left:793.155000px;}
.x2d_c00162{left:794.880000px;}
.x38_c00162{left:799.200000px;}
.x53_c00162{left:800.925000px;}
.xa1_c00162{left:807.840000px;}
.x4e_c00162{left:812.160000px;}
.xaa_c00162{left:819.930000px;}
.x97_c00162{left:821.670000px;}
.x54_c00162{left:825.120000px;}
.xa6_c00162{left:829.440000px;}
.x5a_c00162{left:832.035000px;}
.x9d_c00162{left:834.630000px;}
.x39_c00162{left:838.080000px;}
.xa2_c00162{left:840.675000px;}
.x4a_c00162{left:842.400000px;}
.x92_c00162{left:844.125000px;}
.x3a_c00162{left:846.720000px;}
.x22_c00162{left:849.315000px;}
.xbe_c00162{left:851.910000px;}
.x98_c00162{left:853.635000px;}
.x9f_c00162{left:855.360000px;}
.x93_c00162{left:857.085000px;}
.x4b_c00162{left:859.680000px;}
.x23_c00162{left:861.405000px;}
.x42_c00162{left:867.450000px;}
.x99_c00162{left:869.190000px;}
.xa7_c00162{left:870.915000px;}
.x3b_c00162{left:873.510000px;}
.x55_c00162{left:877.830000px;}
.xd_c00162{left:884.730000px;}
.xc8_c00162{left:901.155000px;}
.xc7_c00162{left:906.330000px;}
.xcf_c00162{left:911.520000px;}
.xce_c00162{left:972.000300px;}
.xca_c00162{left:982.365000px;}
.xcb_c00162{left:993.600000px;}
.xcc_c00162{left:1010.010000px;}
.xcd_c00162{left:1023.840000px;}
.xc9_c00162{left:1035.075000px;}
@media print{
.v2_c00162{vertical-align:-24.586667pt;}
.v3_c00162{vertical-align:-6.186667pt;}
.v0_c00162{vertical-align:0.000000pt;}
.v1_c00162{vertical-align:3.040000pt;}
.ls3_c00162{letter-spacing:0.000000pt;}
.ls2_c00162{letter-spacing:29.492213pt;}
.ls0_c00162{letter-spacing:57.535911pt;}
.ls1_c00162{letter-spacing:345.580800pt;}
.ws1_c00162{word-spacing:-5.472267pt;}
.ws2_c00162{word-spacing:0.000000pt;}
.ws0_c00162{word-spacing:547.043787pt;}
.fs2_c00162{font-size:3.072000pt;}
.fs0_c00162{font-size:5.333333pt;}
.fs7_c00162{font-size:6.133333pt;}
.fs3_c00162{font-size:9.226667pt;}
.fs1_c00162{font-size:12.266667pt;}
.fs8_c00162{font-size:15.360000pt;}
.fs1f_c00162{font-size:18.453333pt;}
.fsd_c00162{font-size:21.493333pt;}
.fse_c00162{font-size:24.586667pt;}
.fs22_c00162{font-size:27.626667pt;}
.fs17_c00162{font-size:30.720000pt;}
.fs6_c00162{font-size:33.813333pt;}
.fs1e_c00162{font-size:36.853333pt;}
.fs15_c00162{font-size:39.946667pt;}
.fs1c_c00162{font-size:42.986667pt;}
.fs1b_c00162{font-size:46.080000pt;}
.fs16_c00162{font-size:49.173333pt;}
.fs18_c00162{font-size:52.213333pt;}
.fs11_c00162{font-size:55.306667pt;}
.fs10_c00162{font-size:58.346667pt;}
.fs14_c00162{font-size:61.440000pt;}
.fs1a_c00162{font-size:64.533333pt;}
.fs19_c00162{font-size:67.573333pt;}
.fs13_c00162{font-size:70.666667pt;}
.fs1d_c00162{font-size:73.706667pt;}
.fsa_c00162{font-size:76.800000pt;}
.fs9_c00162{font-size:79.893333pt;}
.fsb_c00162{font-size:82.933333pt;}
.fs12_c00162{font-size:86.026667pt;}
.fsf_c00162{font-size:92.160000pt;}
.fs20_c00162{font-size:98.293333pt;}
.fsc_c00162{font-size:101.386667pt;}
.fs23_c00162{font-size:129.013333pt;}
.fs21_c00162{font-size:138.240000pt;}
.fs24_c00162{font-size:141.333333pt;}
.fs4_c00162{font-size:144.373333pt;}
.fs5_c00162{font-size:147.466667pt;}
.y0_c00162{bottom:0.000000pt;}
.y113_c00162{bottom:351.746667pt;}
.y111_c00162{bottom:352.506667pt;}
.y110_c00162{bottom:354.813333pt;}
.y112_c00162{bottom:355.586667pt;}
.y10f_c00162{bottom:356.346667pt;}
.y10e_c00162{bottom:357.120000pt;}
.y10d_c00162{bottom:357.893333pt;}
.y114_c00162{bottom:361.733333pt;}
.y10b_c00162{bottom:367.106667pt;}
.y10a_c00162{bottom:370.946667pt;}
.y109_c00162{bottom:373.253333pt;}
.y108_c00162{bottom:374.786667pt;}
.y107_c00162{bottom:375.546667pt;}
.y106_c00162{bottom:380.160000pt;}
.y10c_c00162{bottom:382.466667pt;}
.y103_c00162{bottom:384.773333pt;}
.y101_c00162{bottom:387.066667pt;}
.y102_c00162{bottom:387.840000pt;}
.y100_c00162{bottom:388.613333pt;}
.y105_c00162{bottom:391.680000pt;}
.y104_c00162{bottom:399.360000pt;}
.yff_c00162{bottom:402.426667pt;}
.yfd_c00162{bottom:405.506667pt;}
.yfb_c00162{bottom:406.266667pt;}
.yfa_c00162{bottom:407.040000pt;}
.yf9_c00162{bottom:408.573333pt;}
.yfe_c00162{bottom:409.346667pt;}
.yfc_c00162{bottom:418.560000pt;}
.yf8_c00162{bottom:422.400000pt;}
.yf0_c00162{bottom:423.173333pt;}
.yf1_c00162{bottom:423.933333pt;}
.yf5_c00162{bottom:424.706667pt;}
.yed_c00162{bottom:425.466667pt;}
.yf6_c00162{bottom:427.013333pt;}
.yf2_c00162{bottom:427.773333pt;}
.yf3_c00162{bottom:428.546667pt;}
.yef_c00162{bottom:430.853333pt;}
.yf4_c00162{bottom:432.386667pt;}
.yf7_c00162{bottom:434.693333pt;}
.yee_c00162{bottom:438.533333pt;}
.yec_c00162{bottom:441.600000pt;}
.ye3_c00162{bottom:443.133333pt;}
.yeb_c00162{bottom:443.906667pt;}
.ye9_c00162{bottom:444.666667pt;}
.yde_c00162{bottom:445.440000pt;}
.yea_c00162{bottom:448.506667pt;}
.ye0_c00162{bottom:457.733333pt;}
.ye1_c00162{bottom:459.266667pt;}
.ye2_c00162{bottom:460.026667pt;}
.ydf_c00162{bottom:460.800000pt;}
.ye4_c00162{bottom:466.173333pt;}
.ye5_c00162{bottom:467.706667pt;}
.ye7_c00162{bottom:471.546667pt;}
.ye6_c00162{bottom:473.093333pt;}
.ye8_c00162{bottom:474.626667pt;}
.yd9_c00162{bottom:478.466667pt;}
.yda_c00162{bottom:479.226667pt;}
.ydd_c00162{bottom:480.000000pt;}
.yd8_c00162{bottom:480.773333pt;}
.ydb_c00162{bottom:483.840000pt;}
.yd7_c00162{bottom:484.613333pt;}
.ydc_c00162{bottom:493.826667pt;}
.yd6_c00162{bottom:496.893333pt;}
.yd5_c00162{bottom:499.973333pt;}
.yd2_c00162{bottom:511.493333pt;}
.yd3_c00162{bottom:513.786667pt;}
.yd4_c00162{bottom:515.333333pt;}
.yd1_c00162{bottom:517.626667pt;}
.yd0_c00162{bottom:522.240000pt;}
.yce_c00162{bottom:529.146667pt;}
.ycf_c00162{bottom:530.693333pt;}
.yaa_c00162{bottom:532.226667pt;}
.ycd_c00162{bottom:532.986667pt;}
.ya9_c00162{bottom:537.600000pt;}
.ycc_c00162{bottom:547.586667pt;}
.ya6_c00162{bottom:550.653333pt;}
.ya8_c00162{bottom:552.186667pt;}
.ya5_c00162{bottom:556.026667pt;}
.ya7_c00162{bottom:556.800000pt;}
.ycb_c00162{bottom:559.866667pt;}
.yca_c00162{bottom:565.253333pt;}
.ya3_c00162{bottom:568.320000pt;}
.yc7_c00162{bottom:569.853333pt;}
.yc5_c00162{bottom:570.626667pt;}
.ya4_c00162{bottom:571.386667pt;}
.yc6_c00162{bottom:572.160000pt;}
.ya2_c00162{bottom:572.933333pt;}
.ya1_c00162{bottom:573.693333pt;}
.ya0_c00162{bottom:574.466667pt;}
.yc8_c00162{bottom:576.000000pt;}
.yc9_c00162{bottom:579.840000pt;}
.yc2_c00162{bottom:582.906667pt;}
.yc0_c00162{bottom:584.453333pt;}
.yc1_c00162{bottom:585.986667pt;}
.yc3_c00162{bottom:586.746667pt;}
.yc4_c00162{bottom:587.520000pt;}
.y9e_c00162{bottom:589.053333pt;}
.y9f_c00162{bottom:590.586667pt;}
.y9c_c00162{bottom:591.360000pt;}
.y9d_c00162{bottom:592.133333pt;}
.ybe_c00162{bottom:602.106667pt;}
.ybc_c00162{bottom:603.653333pt;}
.ybf_c00162{bottom:605.186667pt;}
.y9b_c00162{bottom:605.946667pt;}
.y98_c00162{bottom:607.493333pt;}
.ybd_c00162{bottom:608.253333pt;}
.y99_c00162{bottom:609.026667pt;}
.ybb_c00162{bottom:619.773333pt;}
.y9a_c00162{bottom:620.546667pt;}
.y97_c00162{bottom:621.306667pt;}
.y95_c00162{bottom:622.080000pt;}
.y96_c00162{bottom:622.853333pt;}
.yba_c00162{bottom:623.613333pt;}
.y94_c00162{bottom:628.986667pt;}
.y93_c00162{bottom:640.506667pt;}
.y8d_c00162{bottom:642.053333pt;}
.yb9_c00162{bottom:642.813333pt;}
.y8e_c00162{bottom:645.120000pt;}
.y92_c00162{bottom:647.426667pt;}
.y91_c00162{bottom:648.186667pt;}
.y8f_c00162{bottom:648.960000pt;}
.y90_c00162{bottom:652.026667pt;}
.yb7_c00162{bottom:655.106667pt;}
.yb6_c00162{bottom:656.640000pt;}
.y8c_c00162{bottom:657.413333pt;}
.yb8_c00162{bottom:658.173333pt;}
.y8b_c00162{bottom:658.946667pt;}
.y8a_c00162{bottom:662.013333pt;}
.y89_c00162{bottom:662.786667pt;}
.yae_c00162{bottom:665.853333pt;}
.yb5_c00162{bottom:668.160000pt;}
.yb4_c00162{bottom:668.933333pt;}
.yb2_c00162{bottom:672.773333pt;}
.yb1_c00162{bottom:674.306667pt;}
.y88_c00162{bottom:675.840000pt;}
.yb3_c00162{bottom:676.613333pt;}
.yaf_c00162{bottom:678.146667pt;}
.y87_c00162{bottom:680.453333pt;}
.y86_c00162{bottom:681.213333pt;}
.y85_c00162{bottom:682.746667pt;}
.yb0_c00162{bottom:688.133333pt;}
.y7f_c00162{bottom:694.266667pt;}
.y83_c00162{bottom:697.346667pt;}
.y82_c00162{bottom:698.106667pt;}
.y7e_c00162{bottom:699.653333pt;}
.y84_c00162{bottom:700.413333pt;}
.yac_c00162{bottom:702.720000pt;}
.y80_c00162{bottom:704.253333pt;}
.y81_c00162{bottom:705.786667pt;}
.yad_c00162{bottom:708.093333pt;}
.y7c_c00162{bottom:712.706667pt;}
.yab_c00162{bottom:713.466667pt;}
.y7d_c00162{bottom:715.773333pt;}
.y7b_c00162{bottom:724.226667pt;}
.y78_c00162{bottom:728.826667pt;}
.y7a_c00162{bottom:731.906667pt;}
.y79_c00162{bottom:732.666667pt;}
.y76_c00162{bottom:733.440000pt;}
.y77_c00162{bottom:734.213333pt;}
.y52_c00162{bottom:744.960000pt;}
.y74_c00162{bottom:746.493333pt;}
.y51_c00162{bottom:747.266667pt;}
.y75_c00162{bottom:750.333333pt;}
.y73_c00162{bottom:751.866667pt;}
.y50_c00162{bottom:763.386667pt;}
.y4e_c00162{bottom:764.933333pt;}
.y70_c00162{bottom:765.693333pt;}
.y4f_c00162{bottom:767.226667pt;}
.y72_c00162{bottom:768.000000pt;}
.y4d_c00162{bottom:768.773333pt;}
.y71_c00162{bottom:769.533333pt;}
.y4a_c00162{bottom:780.293333pt;}
.y4c_c00162{bottom:781.053333pt;}
.y6f_c00162{bottom:781.826667pt;}
.y6d_c00162{bottom:783.360000pt;}
.y4b_c00162{bottom:784.893333pt;}
.y6e_c00162{bottom:786.426667pt;}
.y6c_c00162{bottom:788.733333pt;}
.y6b_c00162{bottom:797.186667pt;}
.y49_c00162{bottom:801.026667pt;}
.y6a_c00162{bottom:801.786667pt;}
.y48_c00162{bottom:803.333333pt;}
.y47_c00162{bottom:804.093333pt;}
.y69_c00162{bottom:804.866667pt;}
.y68_c00162{bottom:805.626667pt;}
.y67_c00162{bottom:806.400000pt;}
.y46_c00162{bottom:817.146667pt;}
.y64_c00162{bottom:820.226667pt;}
.y45_c00162{bottom:820.986667pt;}
.y44_c00162{bottom:821.760000pt;}
.y65_c00162{bottom:822.533333pt;}
.y63_c00162{bottom:824.066667pt;}
.y66_c00162{bottom:827.133333pt;}
.y42_c00162{bottom:835.586667pt;}
.y61_c00162{bottom:837.120000pt;}
.y3f_c00162{bottom:838.653333pt;}
.y43_c00162{bottom:839.426667pt;}
.y41_c00162{bottom:840.186667pt;}
.y40_c00162{bottom:840.960000pt;}
.y62_c00162{bottom:841.733333pt;}
.y60_c00162{bottom:853.253333pt;}
.y3d_c00162{bottom:854.013333pt;}
.y5e_c00162{bottom:855.546667pt;}
.y5d_c00162{bottom:856.320000pt;}
.y3e_c00162{bottom:857.093333pt;}
.y3b_c00162{bottom:857.853333pt;}
.y3c_c00162{bottom:858.626667pt;}
.y5c_c00162{bottom:860.160000pt;}
.y5f_c00162{bottom:864.000000pt;}
.y39_c00162{bottom:871.680000pt;}
.y38_c00162{bottom:873.213333pt;}
.y5b_c00162{bottom:873.986667pt;}
.y5a_c00162{bottom:875.520000pt;}
.y3a_c00162{bottom:876.293333pt;}
.y36_c00162{bottom:889.346667pt;}
.y34_c00162{bottom:890.880000pt;}
.y32_c00162{bottom:891.653333pt;}
.y33_c00162{bottom:893.186667pt;}
.y35_c00162{bottom:893.946667pt;}
.y37_c00162{bottom:894.720000pt;}
.y59_c00162{bottom:895.493333pt;}
.y58_c00162{bottom:910.853333pt;}
.y31_c00162{bottom:911.613333pt;}
.y56_c00162{bottom:913.146667pt;}
.y55_c00162{bottom:913.920000pt;}
.y57_c00162{bottom:914.693333pt;}
.y11e_c00162{bottom:920.826667pt;}
.y30_c00162{bottom:921.600000pt;}
.y2f_c00162{bottom:925.440000pt;}
.y2e_c00162{bottom:927.746667pt;}
.y2b_c00162{bottom:928.506667pt;}
.y2d_c00162{bottom:930.053333pt;}
.y2c_c00162{bottom:930.813333pt;}
.y2a_c00162{bottom:931.586667pt;}
.y54_c00162{bottom:938.493333pt;}
.y53_c00162{bottom:943.106667pt;}
.y29_c00162{bottom:943.866667pt;}
.y27_c00162{bottom:946.173333pt;}
.y28_c00162{bottom:948.480000pt;}
.y26_c00162{bottom:950.013333pt;}
.y24_c00162{bottom:986.106667pt;}
.y25_c00162{bottom:987.653333pt;}
.y23_c00162{bottom:989.946667pt;}
.y22_c00162{bottom:991.493333pt;}
.y21_c00162{bottom:992.253333pt;}
.y1c_c00162{bottom:1012.226667pt;}
.y1f_c00162{bottom:1018.373333pt;}
.y20_c00162{bottom:1019.906667pt;}
.y1e_c00162{bottom:1020.666667pt;}
.y1d_c00162{bottom:1021.440000pt;}
.y19_c00162{bottom:1037.573333pt;}
.y18_c00162{bottom:1038.333333pt;}
.y16_c00162{bottom:1039.106667pt;}
.y17_c00162{bottom:1039.866667pt;}
.y1b_c00162{bottom:1040.640000pt;}
.y1a_c00162{bottom:1041.413333pt;}
.y15_c00162{bottom:1044.480000pt;}
.y13_c00162{bottom:1045.253333pt;}
.y14_c00162{bottom:1047.546667pt;}
.y12_c00162{bottom:1050.626667pt;}
.y11_c00162{bottom:1051.386667pt;}
.yf_c00162{bottom:1052.160000pt;}
.y10_c00162{bottom:1052.933333pt;}
.ye_c00162{bottom:1070.586667pt;}
.yd_c00162{bottom:1075.200000pt;}
.y8_c00162{bottom:1081.346667pt;}
.yc_c00162{bottom:1082.106667pt;}
.yb_c00162{bottom:1083.653333pt;}
.ya_c00162{bottom:1084.413333pt;}
.y7_c00162{bottom:1085.946667pt;}
.y9_c00162{bottom:1086.720000pt;}
.y6_c00162{bottom:1087.493333pt;}
.y5_c00162{bottom:1089.786667pt;}
.y3_c00162{bottom:1128.186667pt;}
.y4_c00162{bottom:1128.960000pt;}
.y2_c00162{bottom:1135.866667pt;}
.y1_c00162{bottom:1136.640000pt;}
.y11d_c00162{bottom:1154.306667pt;}
.y11c_c00162{bottom:1166.586667pt;}
.y11a_c00162{bottom:1187.333333pt;}
.y118_c00162{bottom:1189.626667pt;}
.y11b_c00162{bottom:1192.706667pt;}
.y119_c00162{bottom:1194.240000pt;}
.y117_c00162{bottom:1218.053333pt;}
.y116_c00162{bottom:1237.253333pt;}
.y115_c00162{bottom:1245.693333pt;}
.h4_c00162{height:2.764500pt;}
.h2_c00162{height:4.799479pt;}
.h9_c00162{height:5.519401pt;}
.h18_c00162{height:5.804500pt;}
.h5_c00162{height:8.303099pt;}
.h3_c00162{height:11.038802pt;}
.ha_c00162{height:13.822500pt;}
.h23_c00162{height:16.606198pt;}
.hf_c00162{height:19.341901pt;}
.h10_c00162{height:22.125599pt;}
.h26_c00162{height:24.861302pt;}
.h22_c00162{height:27.645000pt;}
.h8_c00162{height:30.428698pt;}
.h1a_c00162{height:30.738333pt;}
.h21_c00162{height:33.164401pt;}
.h17_c00162{height:35.948099pt;}
.h1f_c00162{height:38.683802pt;}
.h1e_c00162{height:41.467500pt;}
.h19_c00162{height:44.251198pt;}
.h1b_c00162{height:46.986901pt;}
.h13_c00162{height:49.770599pt;}
.h12_c00162{height:52.506302pt;}
.h16_c00162{height:55.290000pt;}
.h1d_c00162{height:58.073698pt;}
.h1c_c00162{height:60.809401pt;}
.h15_c00162{height:63.593099pt;}
.h20_c00162{height:66.328802pt;}
.hc_c00162{height:69.112500pt;}
.hb_c00162{height:71.896198pt;}
.hd_c00162{height:74.631901pt;}
.h14_c00162{height:77.415599pt;}
.h11_c00162{height:82.935000pt;}
.h24_c00162{height:88.454401pt;}
.he_c00162{height:91.238099pt;}
.h27_c00162{height:116.099401pt;}
.h25_c00162{height:124.402500pt;}
.h28_c00162{height:127.186198pt;}
.h6_c00162{height:129.921901pt;}
.h7_c00162{height:132.705599pt;}
.h0_c00162{height:1353.986667pt;}
.h1_c00162{height:1354.000000pt;}
.w0_c00162{width:984.573333pt;}
.w1_c00162{width:984.666667pt;}
.x0_c00162{left:0.000000pt;}
.xba_c00162{left:175.866667pt;}
.xbb_c00162{left:184.320000pt;}
.xbf_c00162{left:190.466667pt;}
.xc3_c00162{left:193.533333pt;}
.xc2_c00162{left:195.840000pt;}
.x8b_c00162{left:199.680000pt;}
.xc0_c00162{left:206.586667pt;}
.x7_c00162{left:213.506667pt;}
.x8d_c00162{left:215.813333pt;}
.x7c_c00162{left:217.346667pt;}
.xac_c00162{left:226.559933pt;}
.xbc_c00162{left:228.093333pt;}
.x71_c00162{left:230.400000pt;}
.x7d_c00162{left:231.933333pt;}
.xf_c00162{left:235.013333pt;}
.x79_c00162{left:236.546667pt;}
.x6e_c00162{left:238.853333pt;}
.x1a_c00162{left:241.146667pt;}
.xb0_c00162{left:249.600000pt;}
.x10_c00162{left:251.906667pt;}
.xc4_c00162{left:253.440000pt;}
.x6f_c00162{left:256.506667pt;}
.x77_c00162{left:263.426667pt;}
.x72_c00162{left:264.960000pt;}
.x75_c00162{left:266.493333pt;}
.x7a_c00162{left:268.800000pt;}
.x85_c00162{left:271.866667pt;}
.x8c_c00162{left:276.480000pt;}
.x83_c00162{left:278.786667pt;}
.xb1_c00162{left:281.853333pt;}
.xc5_c00162{left:284.933333pt;}
.x11_c00162{left:291.066667pt;}
.xa_c00162{left:293.373333pt;}
.x7b_c00162{left:296.453333pt;}
.x70_c00162{left:308.733333pt;}
.x7e_c00162{left:314.880000pt;}
.xc1_c00162{left:316.413333pt;}
.x8e_c00162{left:321.026667pt;}
.x12_c00162{left:324.093333pt;}
.x86_c00162{left:326.400000pt;}
.xb6_c00162{left:327.933333pt;}
.x5e_c00162{left:329.466667pt;}
.xb2_c00162{left:332.546667pt;}
.x2e_c00162{left:334.080000pt;}
.x66_c00162{left:335.613333pt;}
.x3_c00162{left:337.920000pt;}
.x1_c00162{left:340.986667pt;}
.x76_c00162{left:343.293333pt;}
.x5f_c00162{left:344.826667pt;}
.x2_c00162{left:348.666667pt;}
.x36_c00162{left:350.973333pt;}
.x13_c00162{left:353.280000pt;}
.x4_c00162{left:357.893333pt;}
.x2f_c00162{left:362.493333pt;}
.xb3_c00162{left:364.800000pt;}
.x5_c00162{left:366.333333pt;}
.x82_c00162{left:371.706667pt;}
.x6_c00162{left:377.853333pt;}
.x67_c00162{left:379.386667pt;}
.x60_c00162{left:386.306667pt;}
.x14_c00162{left:388.613333pt;}
.x84_c00162{left:390.146667pt;}
.x62_c00162{left:391.680000pt;}
.x61_c00162{left:395.520000pt;}
.x64_c00162{left:400.133333pt;}
.x5b_c00162{left:402.426667pt;}
.x30_c00162{left:407.040000pt;}
.x6a_c00162{left:409.346667pt;}
.x5c_c00162{left:413.186667pt;}
.x15_c00162{left:414.720000pt;}
.x24_c00162{left:417.786667pt;}
.x73_c00162{left:423.173333pt;}
.x5d_c00162{left:425.466667pt;}
.xae_c00162{left:427.773333pt;}
.x78_c00162{left:430.080000pt;}
.x68_c00162{left:433.146667pt;}
.x16_c00162{left:434.693333pt;}
.x6b_c00162{left:436.226667pt;}
.x74_c00162{left:439.293333pt;}
.x8f_c00162{left:440.826667pt;}
.x7f_c00162{left:443.906667pt;}
.x6c_c00162{left:445.440000pt;}
.x88_c00162{left:446.973333pt;}
.x8_c00162{left:448.506667pt;}
.x6d_c00162{left:452.346667pt;}
.x8a_c00162{left:455.426667pt;}
.x90_c00162{left:456.960000pt;}
.x1b_c00162{left:458.493333pt;}
.x17_c00162{left:463.866667pt;}
.xb7_c00162{left:467.706667pt;}
.x65_c00162{left:469.253333pt;}
.x87_c00162{left:471.546667pt;}
.x63_c00162{left:475.386667pt;}
.x89_c00162{left:477.693333pt;}
.x31_c00162{left:479.226667pt;}
.x80_c00162{left:480.773333pt;}
.xc6_c00162{left:495.360000pt;}
.x81_c00162{left:497.666667pt;}
.x69_c00162{left:499.973333pt;}
.x33_c00162{left:501.506667pt;}
.xa8_c00162{left:504.573333pt;}
.x9a_c00162{left:506.880000pt;}
.x25_c00162{left:508.413333pt;}
.xab_c00162{left:509.946667pt;}
.x3c_c00162{left:511.493333pt;}
.x18_c00162{left:513.026667pt;}
.x56_c00162{left:514.560000pt;}
.x1c_c00162{left:516.093333pt;}
.x9b_c00162{left:518.400000pt;}
.x26_c00162{left:520.706667pt;}
.x91_c00162{left:523.773333pt;}
.x46_c00162{left:526.080000pt;}
.x4f_c00162{left:527.613333pt;}
.x4c_c00162{left:529.920000pt;}
.x47_c00162{left:536.066667pt;}
.x34_c00162{left:539.133333pt;}
.x94_c00162{left:541.440000pt;}
.xb4_c00162{left:544.506667pt;}
.x37_c00162{left:546.053333pt;}
.x27_c00162{left:552.186667pt;}
.xb8_c00162{left:556.800000pt;}
.x28_c00162{left:559.106667pt;}
.x19_c00162{left:566.786667pt;}
.xa3_c00162{left:569.093333pt;}
.xa0_c00162{left:570.626667pt;}
.x3d_c00162{left:572.933333pt;}
.x4d_c00162{left:577.533333pt;}
.x43_c00162{left:579.840000pt;}
.x29_c00162{left:582.146667pt;}
.x48_c00162{left:586.746667pt;}
.x44_c00162{left:588.293333pt;}
.x58_c00162{left:591.360000pt;}
.x1d_c00162{left:592.893333pt;}
.xb9_c00162{left:595.200000pt;}
.x3e_c00162{left:596.733333pt;}
.xe_c00162{left:598.266667pt;}
.x2a_c00162{left:602.880000pt;}
.x95_c00162{left:605.946667pt;}
.xb_c00162{left:607.493333pt;}
.xa4_c00162{left:610.560000pt;}
.xa9_c00162{left:612.093333pt;}
.x35_c00162{left:613.626667pt;}
.x1e_c00162{left:615.173333pt;}
.x57_c00162{left:618.240000pt;}
.x9e_c00162{left:621.306667pt;}
.xad_c00162{left:626.693333pt;}
.xc_c00162{left:634.373333pt;}
.x2b_c00162{left:638.973333pt;}
.x32_c00162{left:645.120000pt;}
.x50_c00162{left:646.653333pt;}
.xaf_c00162{left:652.026667pt;}
.x49_c00162{left:653.573333pt;}
.xa5_c00162{left:655.866667pt;}
.xb5_c00162{left:659.706667pt;}
.x1f_c00162{left:661.253333pt;}
.x3f_c00162{left:667.386667pt;}
.x45_c00162{left:668.933333pt;}
.x9c_c00162{left:670.466667pt;}
.x51_c00162{left:673.533333pt;}
.x59_c00162{left:675.840000pt;}
.x40_c00162{left:683.520000pt;}
.x2c_c00162{left:686.586667pt;}
.x20_c00162{left:688.893333pt;}
.xbd_c00162{left:691.200000pt;}
.x9_c00162{left:695.040000pt;}
.x52_c00162{left:696.573333pt;}
.x21_c00162{left:699.653333pt;}
.x41_c00162{left:701.946667pt;}
.x96_c00162{left:705.026667pt;}
.x2d_c00162{left:706.560000pt;}
.x38_c00162{left:710.400000pt;}
.x53_c00162{left:711.933333pt;}
.xa1_c00162{left:718.080000pt;}
.x4e_c00162{left:721.920000pt;}
.xaa_c00162{left:728.826667pt;}
.x97_c00162{left:730.373333pt;}
.x54_c00162{left:733.440000pt;}
.xa6_c00162{left:737.280000pt;}
.x5a_c00162{left:739.586667pt;}
.x9d_c00162{left:741.893333pt;}
.x39_c00162{left:744.960000pt;}
.xa2_c00162{left:747.266667pt;}
.x4a_c00162{left:748.800000pt;}
.x92_c00162{left:750.333333pt;}
.x3a_c00162{left:752.640000pt;}
.x22_c00162{left:754.946667pt;}
.xbe_c00162{left:757.253333pt;}
.x98_c00162{left:758.786667pt;}
.x9f_c00162{left:760.320000pt;}
.x93_c00162{left:761.853333pt;}
.x4b_c00162{left:764.160000pt;}
.x23_c00162{left:765.693333pt;}
.x42_c00162{left:771.066667pt;}
.x99_c00162{left:772.613333pt;}
.xa7_c00162{left:774.146667pt;}
.x3b_c00162{left:776.453333pt;}
.x55_c00162{left:780.293333pt;}
.xd_c00162{left:786.426667pt;}
.xc8_c00162{left:801.026667pt;}
.xc7_c00162{left:805.626667pt;}
.xcf_c00162{left:810.240000pt;}
.xce_c00162{left:864.000267pt;}
.xca_c00162{left:873.213333pt;}
.xcb_c00162{left:883.200000pt;}
.xcc_c00162{left:897.786667pt;}
.xcd_c00162{left:910.080000pt;}
.xc9_c00162{left:920.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98ac3ff2c721ded51492b9ac.woff2')format("woff");}.ff1_c00163{font-family:ff1_c00163;line-height:1.109863;font-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_c00163{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m9b_c00163{transform:matrix(0.021725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021725,0.000000,0.000000,0.250000,0,0);}
.m7c_c00163{transform:matrix(0.031275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031275,0.000000,0.000000,0.250000,0,0);}
.m7b_c00163{transform:matrix(0.072200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072200,0.000000,0.000000,0.250000,0,0);}
.m1b_c00163{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m18_c00163{transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);}
.m74_c00163{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.m44_c00163{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m6d_c00163{transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);}
.m6f_c00163{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.m96_c00163{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);}
.m29_c00163{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.m78_c00163{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m23_c00163{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);}
.m90_c00163{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m47_c00163{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.m4f_c00163{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m9_c00163{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m73_c00163{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.m41_c00163{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m35_c00163{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);}
.m65_c00163{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m49_c00163{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);}
.m1e_c00163{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);}
.m42_c00163{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.m80_c00163{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m1c_c00163{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);}
.m68_c00163{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.m50_c00163{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m8b_c00163{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m3d_c00163{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m51_c00163{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);}
.m4a_c00163{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.m79_c00163{transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);}
.mc_c00163{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);}
.m97_c00163{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.m2d_c00163{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m1f_c00163{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);}
.m5f_c00163{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);}
.m7d_c00163{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.m86_c00163{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m89_c00163{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m83_c00163{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.m8f_c00163{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m7e_c00163{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);}
.m81_c00163{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m8a_c00163{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m95_c00163{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m61_c00163{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.m63_c00163{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m72_c00163{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.m52_c00163{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_c00163{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m28_c00163{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);}
.m70_c00163{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);}
.m21_c00163{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);}
.m13_c00163{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.m64_c00163{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.m31_c00163{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);}
.m6e_c00163{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);}
.m22_c00163{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);}
.m59_c00163{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);}
.m17_c00163{transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);}
.m84_c00163{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);}
.m9d_c00163{transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);}
.m9f_c00163{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);}
.m9c_c00163{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.m20_c00163{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m5b_c00163{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);}
.m5c_c00163{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);}
.m88_c00163{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);}
.m53_c00163{transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);}
.m5_c00163{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);}
.m56_c00163{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.m6a_c00163{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.m94_c00163{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m57_c00163{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);}
.m66_c00163{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);}
.m82_c00163{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m75_c00163{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);}
.m60_c00163{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);}
.m77_c00163{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);}
.m91_c00163{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);}
.m16_c00163{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m2a_c00163{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);}
.m7f_c00163{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m71_c00163{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);}
.m43_c00163{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);}
.ma0_c00163{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);}
.m2c_c00163{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);}
.m8e_c00163{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);}
.m76_c00163{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00163{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c00163{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c00163{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);}
.m54_c00163{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10_c00163{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);}
.m3a_c00163{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m37_c00163{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);}
.m2b_c00163{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00163{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00163{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);}
.m55_c00163{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00163{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);}
.m38_c00163{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);}
.m2f_c00163{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c00163{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c00163{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m92_c00163{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00163{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);}
.m34_c00163{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m32_c00163{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c00163{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m58_c00163{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00163{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m39_c00163{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00163{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c00163{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00163{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);}
.m3b_c00163{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00163{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00163{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m67_c00163{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);}
.m6c_c00163{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);}
.m6_c00163{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);}
.m2_c00163{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m48_c00163{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00163{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);}
.m33_c00163{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me_c00163{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00163{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m46_c00163{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00163{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00163{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.md_c00163{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);}
.m30_c00163{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);}
.m93_c00163{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00163{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1_c00163{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);}
.m62_c00163{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m85_c00163{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.ma_c00163{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);}
.mb_c00163{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m87_c00163{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m99_c00163{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m69_c00163{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00163{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m36_c00163{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00163{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00163{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m40_c00163{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00163{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m27_c00163{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);}
.m0_c00163{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00163{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00163{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m7_c00163{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00163{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m98_c00163{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.m45_c00163{transform:matrix(6.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.902500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00163{transform:matrix(10.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(10.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(10.512500,0.000000,0.000000,0.250000,0,0);}
.v1_c00163{vertical-align:-3.480000px;}
.v0_c00163{vertical-align:0.000000px;}
.v2_c00163{vertical-align:3.420000px;}
.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:-17.783040px;}
.ws1_c00163{word-spacing:-13.218600px;}
.ws2_c00163{word-spacing:0.000000px;}
.fc0_c00163{color:transparent;}
.fs9_c00163{font-size:3.456000px;}
.fsf_c00163{font-size:6.000000px;}
.fs14_c00163{font-size:6.900000px;}
.fs13_c00163{font-size:10.380000px;}
.fs1e_c00163{font-size:13.800000px;}
.fs18_c00163{font-size:17.280000px;}
.fs1b_c00163{font-size:20.760000px;}
.fs16_c00163{font-size:24.180000px;}
.fs19_c00163{font-size:27.660000px;}
.fs7_c00163{font-size:31.080000px;}
.fs8_c00163{font-size:34.560000px;}
.fs0_c00163{font-size:38.040000px;}
.fs1d_c00163{font-size:41.460000px;}
.fsd_c00163{font-size:44.940000px;}
.fsc_c00163{font-size:48.360000px;}
.fs4_c00163{font-size:51.840000px;}
.fsb_c00163{font-size:55.320000px;}
.fs1_c00163{font-size:58.740000px;}
.fs3_c00163{font-size:62.220000px;}
.fs2_c00163{font-size:65.640000px;}
.fs6_c00163{font-size:69.120000px;}
.fs11_c00163{font-size:72.600000px;}
.fsa_c00163{font-size:76.020000px;}
.fse_c00163{font-size:79.500000px;}
.fs1a_c00163{font-size:82.920000px;}
.fs17_c00163{font-size:86.400000px;}
.fs10_c00163{font-size:89.880000px;}
.fs15_c00163{font-size:93.300000px;}
.fs12_c00163{font-size:96.780000px;}
.fs1f_c00163{font-size:138.240000px;}
.fs5_c00163{font-size:141.720000px;}
.fs1c_c00163{font-size:165.900000px;}
.y0_c00163{bottom:0.000000px;}
.y93_c00163{bottom:606.525000px;}
.y94_c00163{bottom:610.845000px;}
.y95_c00163{bottom:622.080000px;}
.y92_c00163{bottom:622.950000px;}
.y90_c00163{bottom:625.530000px;}
.y91_c00163{bottom:626.400000px;}
.y8e_c00163{bottom:627.270000px;}
.y8f_c00163{bottom:629.850000px;}
.y8d_c00163{bottom:631.590000px;}
.y8c_c00163{bottom:645.405000px;}
.y8a_c00163{bottom:646.275000px;}
.y8b_c00163{bottom:647.130000px;}
.y88_c00163{bottom:648.870000px;}
.y89_c00163{bottom:652.320000px;}
.y86_c00163{bottom:665.280000px;}
.y82_c00163{bottom:667.005000px;}
.y81_c00163{bottom:667.875000px;}
.y84_c00163{bottom:671.325000px;}
.y85_c00163{bottom:672.195000px;}
.y87_c00163{bottom:673.050000px;}
.y83_c00163{bottom:679.965000px;}
.y7f_c00163{bottom:688.605000px;}
.y80_c00163{bottom:690.330000px;}
.y7e_c00163{bottom:691.200000px;}
.y7d_c00163{bottom:692.070000px;}
.y78_c00163{bottom:705.885000px;}
.y79_c00163{bottom:706.755000px;}
.y7c_c00163{bottom:710.205000px;}
.y7a_c00163{bottom:711.075000px;}
.y7b_c00163{bottom:711.930000px;}
.y75_c00163{bottom:726.630000px;}
.y77_c00163{bottom:730.080000px;}
.y76_c00163{bottom:730.950000px;}
.y74_c00163{bottom:743.910000px;}
.y6e_c00163{bottom:745.635000px;}
.y73_c00163{bottom:746.490000px;}
.y71_c00163{bottom:747.360000px;}
.y70_c00163{bottom:748.230000px;}
.y6f_c00163{bottom:750.810000px;}
.y72_c00163{bottom:751.680000px;}
.y6d_c00163{bottom:767.235000px;}
.y6c_c00163{bottom:771.555000px;}
.y6a_c00163{bottom:785.370000px;}
.y69_c00163{bottom:787.110000px;}
.y6b_c00163{bottom:789.690000px;}
.y67_c00163{bottom:805.245000px;}
.y65_c00163{bottom:807.840000px;}
.y68_c00163{bottom:808.710000px;}
.y66_c00163{bottom:810.435000px;}
.y61_c00163{bottom:824.250000px;}
.y64_c00163{bottom:825.990000px;}
.y5f_c00163{bottom:826.845000px;}
.y62_c00163{bottom:828.570000px;}
.y60_c00163{bottom:829.440000px;}
.y63_c00163{bottom:831.165000px;}
.y5e_c00163{bottom:834.630000px;}
.y5b_c00163{bottom:844.995000px;}
.y5a_c00163{bottom:847.590000px;}
.y5d_c00163{bottom:849.315000px;}
.y5c_c00163{bottom:850.170000px;}
.y59_c00163{bottom:851.040000px;}
.y58_c00163{bottom:864.870000px;}
.y56_c00163{bottom:866.595000px;}
.y55_c00163{bottom:869.190000px;}
.y57_c00163{bottom:870.045000px;}
.y54_c00163{bottom:889.050000px;}
.y53_c00163{bottom:889.920000px;}
.y52_c00163{bottom:890.790000px;}
.y51_c00163{bottom:891.645000px;}
.y50_c00163{bottom:902.880000px;}
.y4c_c00163{bottom:905.475000px;}
.y49_c00163{bottom:906.330000px;}
.y4e_c00163{bottom:907.200000px;}
.y4d_c00163{bottom:909.795000px;}
.y4b_c00163{bottom:910.650000px;}
.y4a_c00163{bottom:911.520000px;}
.y4f_c00163{bottom:916.710000px;}
.y44_c00163{bottom:925.350000px;}
.y43_c00163{bottom:927.075000px;}
.y47_c00163{bottom:928.800000px;}
.y45_c00163{bottom:931.395000px;}
.y42_c00163{bottom:932.250000px;}
.y48_c00163{bottom:937.440000px;}
.y46_c00163{bottom:938.310000px;}
.y40_c00163{bottom:942.630000px;}
.y41_c00163{bottom:945.210000px;}
.y3e_c00163{bottom:946.950000px;}
.y3c_c00163{bottom:947.805000px;}
.y3f_c00163{bottom:950.400000px;}
.y3b_c00163{bottom:951.270000px;}
.y3d_c00163{bottom:952.125000px;}
.y39_c00163{bottom:962.490000px;}
.y37_c00163{bottom:963.360000px;}
.y3a_c00163{bottom:965.085000px;}
.y36_c00163{bottom:966.810000px;}
.y33_c00163{bottom:967.680000px;}
.y38_c00163{bottom:968.550000px;}
.y35_c00163{bottom:971.130000px;}
.y34_c00163{bottom:972.000000px;}
.y32_c00163{bottom:972.870000px;}
.y31_c00163{bottom:984.090000px;}
.y2e_c00163{bottom:987.555000px;}
.y2c_c00163{bottom:988.410000px;}
.y30_c00163{bottom:990.150000px;}
.y2b_c00163{bottom:991.005000px;}
.y2f_c00163{bottom:991.875000px;}
.y2d_c00163{bottom:992.730000px;}
.y26_c00163{bottom:1003.110000px;}
.y2a_c00163{bottom:1003.965000px;}
.y27_c00163{bottom:1007.430000px;}
.y25_c00163{bottom:1008.285000px;}
.y24_c00163{bottom:1010.010000px;}
.y28_c00163{bottom:1011.750000px;}
.y29_c00163{bottom:1020.390000px;}
.y23_c00163{bottom:1023.840000px;}
.y21_c00163{bottom:1025.565000px;}
.ydc_c00163{bottom:1027.290000px;}
.y22_c00163{bottom:1028.160000px;}
.y1c_c00163{bottom:1029.030000px;}
.y20_c00163{bottom:1029.885000px;}
.y1d_c00163{bottom:1030.755000px;}
.y1e_c00163{bottom:1031.610000px;}
.y1f_c00163{bottom:1041.990000px;}
.y18_c00163{bottom:1047.165000px;}
.y17_c00163{bottom:1048.035000px;}
.y1a_c00163{bottom:1048.890000px;}
.y19_c00163{bottom:1051.485000px;}
.ydb_c00163{bottom:1054.950000px;}
.y1b_c00163{bottom:1058.400000px;}
.y14_c00163{bottom:1065.315000px;}
.y16_c00163{bottom:1066.170000px;}
.y15_c00163{bottom:1067.040000px;}
.y12_c00163{bottom:1067.910000px;}
.y13_c00163{bottom:1072.230000px;}
.y10_c00163{bottom:1086.915000px;}
.yd8_c00163{bottom:1089.510000px;}
.yd9_c00163{bottom:1090.365000px;}
.yda_c00163{bottom:1092.090000px;}
.yf_c00163{bottom:1092.960000px;}
.yd6_c00163{bottom:1093.830000px;}
.yd7_c00163{bottom:1094.685000px;}
.y11_c00163{bottom:1098.150000px;}
.ye_c00163{bottom:1105.920000px;}
.yd_c00163{bottom:1107.645000px;}
.yd5_c00163{bottom:1108.515000px;}
.yc_c00163{bottom:1111.965000px;}
.yd3_c00163{bottom:1113.690000px;}
.yd4_c00163{bottom:1114.560000px;}
.ya_c00163{bottom:1129.245000px;}
.yd2_c00163{bottom:1130.115000px;}
.y9_c00163{bottom:1130.970000px;}
.y6_c00163{bottom:1132.710000px;}
.yb_c00163{bottom:1133.565000px;}
.ycf_c00163{bottom:1136.160000px;}
.yd1_c00163{bottom:1137.885000px;}
.yd0_c00163{bottom:1147.395000px;}
.yce_c00163{bottom:1149.990000px;}
.ycc_c00163{bottom:1150.845000px;}
.ycb_c00163{bottom:1151.715000px;}
.yca_c00163{bottom:1153.440000px;}
.y7_c00163{bottom:1154.310000px;}
.y8_c00163{bottom:1155.165000px;}
.ycd_c00163{bottom:1156.035000px;}
.yc9_c00163{bottom:1171.590000px;}
.yc8_c00163{bottom:1175.910000px;}
.yed_c00163{bottom:1177.635000px;}
.yec_c00163{bottom:1182.810000px;}
.yeb_c00163{bottom:1187.130000px;}
.yc4_c00163{bottom:1188.000000px;}
.yc3_c00163{bottom:1192.320000px;}
.yc5_c00163{bottom:1193.190000px;}
.yc7_c00163{bottom:1194.915000px;}
.yc6_c00163{bottom:1195.770000px;}
.yc2_c00163{bottom:1196.640000px;}
.ybf_c00163{bottom:1212.195000px;}
.ybe_c00163{bottom:1216.515000px;}
.yc0_c00163{bottom:1222.560000px;}
.yea_c00163{bottom:1226.010000px;}
.ybd_c00163{bottom:1228.605000px;}
.yc1_c00163{bottom:1229.475000px;}
.ybc_c00163{bottom:1232.070000px;}
.yba_c00163{bottom:1233.795000px;}
.yb8_c00163{bottom:1235.520000px;}
.yb9_c00163{bottom:1236.390000px;}
.ybb_c00163{bottom:1237.245000px;}
.ye9_c00163{bottom:1247.610000px;}
.ye4_c00163{bottom:1251.075000px;}
.yb7_c00163{bottom:1252.800000px;}
.yb5_c00163{bottom:1257.120000px;}
.yb6_c00163{bottom:1257.990000px;}
.yb4_c00163{bottom:1258.845000px;}
.ye5_c00163{bottom:1268.355000px;}
.ye8_c00163{bottom:1269.210000px;}
.ye2_c00163{bottom:1271.805000px;}
.ye3_c00163{bottom:1276.125000px;}
.yb3_c00163{bottom:1276.995000px;}
.yaf_c00163{bottom:1277.850000px;}
.yb1_c00163{bottom:1282.170000px;}
.yb2_c00163{bottom:1287.360000px;}
.yb0_c00163{bottom:1289.955000px;}
.y9a_c00163{bottom:1290.810000px;}
.yaa_c00163{bottom:1292.550000px;}
.yad_c00163{bottom:1293.405000px;}
.yab_c00163{bottom:1294.275000px;}
.yac_c00163{bottom:1295.130000px;}
.ydd_c00163{bottom:1296.000000px;}
.ya8_c00163{bottom:1297.725000px;}
.ya9_c00163{bottom:1298.595000px;}
.yae_c00163{bottom:1300.320000px;}
.ye1_c00163{bottom:1302.915000px;}
.ye0_c00163{bottom:1306.365000px;}
.ye6_c00163{bottom:1310.685000px;}
.ye7_c00163{bottom:1312.410000px;}
.ydf_c00163{bottom:1313.280000px;}
.ya7_c00163{bottom:1314.150000px;}
.yde_c00163{bottom:1315.005000px;}
.ya6_c00163{bottom:1318.470000px;}
.y98_c00163{bottom:1328.835000px;}
.y96_c00163{bottom:1330.560000px;}
.ya5_c00163{bottom:1332.285000px;}
.y99_c00163{bottom:1334.010000px;}
.y97_c00163{bottom:1334.880000px;}
.ya4_c00163{bottom:1336.605000px;}
.ya2_c00163{bottom:1338.330000px;}
.ya3_c00163{bottom:1339.200000px;}
.y9d_c00163{bottom:1351.290000px;}
.y9b_c00163{bottom:1353.030000px;}
.y5_c00163{bottom:1355.610000px;}
.y9f_c00163{bottom:1357.350000px;}
.y9e_c00163{bottom:1358.205000px;}
.ya0_c00163{bottom:1359.930000px;}
.ya1_c00163{bottom:1364.250000px;}
.y9c_c00163{bottom:1366.845000px;}
.y4_c00163{bottom:1385.850000px;}
.y3_c00163{bottom:1386.720000px;}
.y2_c00163{bottom:1387.590000px;}
.y1_c00163{bottom:1391.040000px;}
.hb_c00163{height:3.110063px;}
.h11_c00163{height:5.399414px;}
.h16_c00163{height:6.209326px;}
.h15_c00163{height:9.340986px;}
.h22_c00163{height:12.418652px;}
.h1a_c00163{height:15.550313px;}
.h1f_c00163{height:18.681973px;}
.h18_c00163{height:21.759639px;}
.h1b_c00163{height:24.891299px;}
.h9_c00163{height:27.968965px;}
.ha_c00163{height:31.100625px;}
.h2_c00163{height:34.232285px;}
.h21_c00163{height:37.309951px;}
.hf_c00163{height:40.441611px;}
.he_c00163{height:43.519277px;}
.h6_c00163{height:46.650937px;}
.hd_c00163{height:49.782598px;}
.h1e_c00163{height:50.070938px;}
.h3_c00163{height:52.860264px;}
.h5_c00163{height:55.991924px;}
.h4_c00163{height:59.069590px;}
.h1c_c00163{height:61.852910px;}
.h8_c00163{height:62.201250px;}
.h13_c00163{height:65.332910px;}
.hc_c00163{height:68.410576px;}
.h10_c00163{height:71.542236px;}
.h1d_c00163{height:74.619902px;}
.h19_c00163{height:77.751563px;}
.h12_c00163{height:80.883223px;}
.h17_c00163{height:83.960889px;}
.h14_c00163{height:87.092549px;}
.h23_c00163{height:124.402500px;}
.h7_c00163{height:127.534160px;}
.h20_c00163{height:149.293799px;}
.h1_c00163{height:1503.000000px;}
.h0_c00163{height:1503.360000px;}
.w0_c00163{width:1094.685000px;}
.w1_c00163{width:1095.000000px;}
.x0_c00163{left:0.000000px;}
.x1_c00163{left:19.005000px;}
.x97_c00163{left:25.050000px;}
.x96_c00163{left:71.715000px;}
.x7e_c00163{left:95.910000px;}
.x7f_c00163{left:107.130000px;}
.x80_c00163{left:123.555000px;}
.x81_c00163{left:138.240000px;}
.x2e_c00163{left:239.325000px;}
.x76_c00163{left:241.050000px;}
.x27_c00163{left:242.790000px;}
.x5e_c00163{left:247.110000px;}
.x53_c00163{left:250.560000px;}
.x4d_c00163{left:253.155000px;}
.x6f_c00163{left:254.880000px;}
.x57_c00163{left:257.475000px;}
.x5b_c00163{left:259.200000px;}
.x35_c00163{left:260.925000px;}
.x8a_c00163{left:262.650000px;}
.x89_c00163{left:280.800000px;}
.x28_c00163{left:284.250000px;}
.x84_c00163{left:287.715000px;}
.x8d_c00163{left:289.440000px;}
.x7a_c00163{left:295.485000px;}
.x36_c00163{left:299.805000px;}
.x5f_c00163{left:305.850000px;}
.x45_c00163{left:311.040000px;}
.x5c_c00163{left:312.765000px;}
.x77_c00163{left:319.680000px;}
.x2f_c00163{left:325.725000px;}
.x4e_c00163{left:327.450000px;}
.x70_c00163{left:334.365000px;}
.x7c_c00163{left:336.090000px;}
.x65_c00163{left:338.685000px;}
.x58_c00163{left:342.150000px;}
.x37_c00163{left:344.730000px;}
.x69_c00163{left:346.470000px;}
.x90_c00163{left:349.920000px;}
.x6a_c00163{left:353.370000px;}
.x93_c00163{left:355.965000px;}
.x6b_c00163{left:358.560000px;}
.x85_c00163{left:360.285000px;}
.x8f_c00163{left:362.010000px;}
.x59_c00163{left:364.605000px;}
.x29_c00163{left:367.200000px;}
.x30_c00163{left:368.925000px;}
.x94_c00163{left:374.115000px;}
.x46_c00163{left:375.840000px;}
.x8b_c00163{left:381.030000px;}
.x71_c00163{left:384.480000px;}
.x92_c00163{left:387.075000px;}
.x4f_c00163{left:389.670000px;}
.x31_c00163{left:393.990000px;}
.x54_c00163{left:397.440000px;}
.x66_c00163{left:399.165000px;}
.x38_c00163{left:404.355000px;}
.x50_c00163{left:407.805000px;}
.x32_c00163{left:410.400000px;}
.x60_c00163{left:412.995000px;}
.x7b_c00163{left:414.720000px;}
.x86_c00163{left:417.315000px;}
.x82_c00163{left:419.040000px;}
.x78_c00163{left:420.765000px;}
.x40_c00163{left:423.360000px;}
.x5a_c00163{left:427.680000px;}
.x8c_c00163{left:429.405000px;}
.x41_c00163{left:431.130000px;}
.x72_c00163{left:434.595000px;}
.x6d_c00163{left:437.190000px;}
.x87_c00163{left:439.770000px;}
.x8e_c00163{left:444.960000px;}
.x42_c00163{left:451.005000px;}
.x6e_c00163{left:452.730000px;}
.x39_c00163{left:454.470000px;}
.x47_c00163{left:457.920000px;}
.x68_c00163{left:460.515000px;}
.x67_c00163{left:464.835000px;}
.x3a_c00163{left:467.430000px;}
.x33_c00163{left:471.750000px;}
.x55_c00163{left:476.925000px;}
.x48_c00163{left:478.650000px;}
.x7d_c00163{left:481.245000px;}
.x5d_c00163{left:484.710000px;}
.x6c_c00163{left:487.290000px;}
.x2_c00163{left:489.885000px;}
.x79_c00163{left:493.350000px;}
.x2a_c00163{left:495.075000px;}
.x74_c00163{left:497.670000px;}
.x73_c00163{left:499.395000px;}
.x43_c00163{left:504.570000px;}
.x3_c00163{left:509.760000px;}
.x95_c00163{left:512.355000px;}
.x51_c00163{left:514.080000px;}
.x56_c00163{left:515.805000px;}
.x61_c00163{left:518.400000px;}
.x64_c00163{left:521.850000px;}
.x34_c00163{left:526.170000px;}
.x75_c00163{left:527.910000px;}
.x3b_c00163{left:529.635000px;}
.x83_c00163{left:534.810000px;}
.x91_c00163{left:536.550000px;}
.x62_c00163{left:540.000000px;}
.x4_c00163{left:541.725000px;}
.x63_c00163{left:548.640000px;}
.x88_c00163{left:551.235000px;}
.x22_c00163{left:553.830000px;}
.x2b_c00163{left:563.325525px;}
.x9c_c00163{left:566.790000px;}
.x9_c00163{left:569.370000px;}
.x5_c00163{left:571.110000px;}
.x12_c00163{left:574.560000px;}
.x1f_c00163{left:584.070000px;}
.x2c_c00163{left:585.795000px;}
.x6_c00163{left:591.840000px;}
.x9d_c00163{left:603.075000px;}
.xa_c00163{left:618.630000px;}
.x99_c00163{left:627.270000px;}
.xa2_c00163{left:628.995000px;}
.xb_c00163{left:633.315000px;}
.x9a_c00163{left:641.085000px;}
.xc_c00163{left:646.275000px;}
.x49_c00163{left:653.190000px;}
.xd_c00163{left:656.640000px;}
.x23_c00163{left:663.555000px;}
.xe_c00163{left:667.005000px;}
.x13_c00163{left:671.325000px;}
.x9e_c00163{left:673.920000px;}
.xf_c00163{left:679.965000px;}
.x18_c00163{left:685.155000px;}
.x1b_c00163{left:690.330000px;}
.x98_c00163{left:692.070000px;}
.x10_c00163{left:695.520000px;}
.x7_c00163{left:704.160000px;}
.x52_c00163{left:707.610000px;}
.x11_c00163{left:711.930000px;}
.x9f_c00163{left:715.395000px;}
.x8_c00163{left:717.120000px;}
.x24_c00163{left:722.310000px;}
.x20_c00163{left:726.630000px;}
.x9b_c00163{left:736.995000px;}
.xa0_c00163{left:743.910000px;}
.x14_c00163{left:749.955000px;}
.x25_c00163{left:753.405000px;}
.xa1_c00163{left:786.240000px;}
.x1c_c00163{left:795.750000px;}
.xa3_c00163{left:805.245000px;}
.x4a_c00163{left:812.160000px;}
.xa7_c00163{left:814.755000px;}
.x44_c00163{left:823.395000px;}
.x26_c00163{left:825.990000px;}
.x1d_c00163{left:828.570000px;}
.xa5_c00163{left:831.165000px;}
.x3c_c00163{left:834.630000px;}
.x3d_c00163{left:841.530000px;}
.x15_c00163{left:843.270000px;}
.xa4_c00163{left:847.590000px;}
.x2d_c00163{left:852.765000px;}
.x19_c00163{left:855.360000px;}
.x17_c00163{left:857.085000px;}
.x1e_c00163{left:860.550000px;}
.xa6_c00163{left:862.275000px;}
.x16_c00163{left:866.595000px;}
.x21_c00163{left:873.510000px;}
.x1a_c00163{left:883.005000px;}
.x3e_c00163{left:885.600000px;}
.x4b_c00163{left:889.920000px;}
.x3f_c00163{left:895.965000px;}
.x4c_c00163{left:900.285000px;}
@media print{
.v1_c00163{vertical-align:-3.093333pt;}
.v0_c00163{vertical-align:0.000000pt;}
.v2_c00163{vertical-align:3.040000pt;}
.ls0_c00163{letter-spacing:0.000000pt;}
.ws0_c00163{word-spacing:-15.807147pt;}
.ws1_c00163{word-spacing:-11.749867pt;}
.ws2_c00163{word-spacing:0.000000pt;}
.fs9_c00163{font-size:3.072000pt;}
.fsf_c00163{font-size:5.333333pt;}
.fs14_c00163{font-size:6.133333pt;}
.fs13_c00163{font-size:9.226667pt;}
.fs1e_c00163{font-size:12.266667pt;}
.fs18_c00163{font-size:15.360000pt;}
.fs1b_c00163{font-size:18.453333pt;}
.fs16_c00163{font-size:21.493333pt;}
.fs19_c00163{font-size:24.586667pt;}
.fs7_c00163{font-size:27.626667pt;}
.fs8_c00163{font-size:30.720000pt;}
.fs0_c00163{font-size:33.813333pt;}
.fs1d_c00163{font-size:36.853333pt;}
.fsd_c00163{font-size:39.946667pt;}
.fsc_c00163{font-size:42.986667pt;}
.fs4_c00163{font-size:46.080000pt;}
.fsb_c00163{font-size:49.173333pt;}
.fs1_c00163{font-size:52.213333pt;}
.fs3_c00163{font-size:55.306667pt;}
.fs2_c00163{font-size:58.346667pt;}
.fs6_c00163{font-size:61.440000pt;}
.fs11_c00163{font-size:64.533333pt;}
.fsa_c00163{font-size:67.573333pt;}
.fse_c00163{font-size:70.666667pt;}
.fs1a_c00163{font-size:73.706667pt;}
.fs17_c00163{font-size:76.800000pt;}
.fs10_c00163{font-size:79.893333pt;}
.fs15_c00163{font-size:82.933333pt;}
.fs12_c00163{font-size:86.026667pt;}
.fs1f_c00163{font-size:122.880000pt;}
.fs5_c00163{font-size:125.973333pt;}
.fs1c_c00163{font-size:147.466667pt;}
.y0_c00163{bottom:0.000000pt;}
.y93_c00163{bottom:539.133333pt;}
.y94_c00163{bottom:542.973333pt;}
.y95_c00163{bottom:552.960000pt;}
.y92_c00163{bottom:553.733333pt;}
.y90_c00163{bottom:556.026667pt;}
.y91_c00163{bottom:556.800000pt;}
.y8e_c00163{bottom:557.573333pt;}
.y8f_c00163{bottom:559.866667pt;}
.y8d_c00163{bottom:561.413333pt;}
.y8c_c00163{bottom:573.693333pt;}
.y8a_c00163{bottom:574.466667pt;}
.y8b_c00163{bottom:575.226667pt;}
.y88_c00163{bottom:576.773333pt;}
.y89_c00163{bottom:579.840000pt;}
.y86_c00163{bottom:591.360000pt;}
.y82_c00163{bottom:592.893333pt;}
.y81_c00163{bottom:593.666667pt;}
.y84_c00163{bottom:596.733333pt;}
.y85_c00163{bottom:597.506667pt;}
.y87_c00163{bottom:598.266667pt;}
.y83_c00163{bottom:604.413333pt;}
.y7f_c00163{bottom:612.093333pt;}
.y80_c00163{bottom:613.626667pt;}
.y7e_c00163{bottom:614.400000pt;}
.y7d_c00163{bottom:615.173333pt;}
.y78_c00163{bottom:627.453333pt;}
.y79_c00163{bottom:628.226667pt;}
.y7c_c00163{bottom:631.293333pt;}
.y7a_c00163{bottom:632.066667pt;}
.y7b_c00163{bottom:632.826667pt;}
.y75_c00163{bottom:645.893333pt;}
.y77_c00163{bottom:648.960000pt;}
.y76_c00163{bottom:649.733333pt;}
.y74_c00163{bottom:661.253333pt;}
.y6e_c00163{bottom:662.786667pt;}
.y73_c00163{bottom:663.546667pt;}
.y71_c00163{bottom:664.320000pt;}
.y70_c00163{bottom:665.093333pt;}
.y6f_c00163{bottom:667.386667pt;}
.y72_c00163{bottom:668.160000pt;}
.y6d_c00163{bottom:681.986667pt;}
.y6c_c00163{bottom:685.826667pt;}
.y6a_c00163{bottom:698.106667pt;}
.y69_c00163{bottom:699.653333pt;}
.y6b_c00163{bottom:701.946667pt;}
.y67_c00163{bottom:715.773333pt;}
.y65_c00163{bottom:718.080000pt;}
.y68_c00163{bottom:718.853333pt;}
.y66_c00163{bottom:720.386667pt;}
.y61_c00163{bottom:732.666667pt;}
.y64_c00163{bottom:734.213333pt;}
.y5f_c00163{bottom:734.973333pt;}
.y62_c00163{bottom:736.506667pt;}
.y60_c00163{bottom:737.280000pt;}
.y63_c00163{bottom:738.813333pt;}
.y5e_c00163{bottom:741.893333pt;}
.y5b_c00163{bottom:751.106667pt;}
.y5a_c00163{bottom:753.413333pt;}
.y5d_c00163{bottom:754.946667pt;}
.y5c_c00163{bottom:755.706667pt;}
.y59_c00163{bottom:756.480000pt;}
.y58_c00163{bottom:768.773333pt;}
.y56_c00163{bottom:770.306667pt;}
.y55_c00163{bottom:772.613333pt;}
.y57_c00163{bottom:773.373333pt;}
.y54_c00163{bottom:790.266667pt;}
.y53_c00163{bottom:791.040000pt;}
.y52_c00163{bottom:791.813333pt;}
.y51_c00163{bottom:792.573333pt;}
.y50_c00163{bottom:802.560000pt;}
.y4c_c00163{bottom:804.866667pt;}
.y49_c00163{bottom:805.626667pt;}
.y4e_c00163{bottom:806.400000pt;}
.y4d_c00163{bottom:808.706667pt;}
.y4b_c00163{bottom:809.466667pt;}
.y4a_c00163{bottom:810.240000pt;}
.y4f_c00163{bottom:814.853333pt;}
.y44_c00163{bottom:822.533333pt;}
.y43_c00163{bottom:824.066667pt;}
.y47_c00163{bottom:825.600000pt;}
.y45_c00163{bottom:827.906667pt;}
.y42_c00163{bottom:828.666667pt;}
.y48_c00163{bottom:833.280000pt;}
.y46_c00163{bottom:834.053333pt;}
.y40_c00163{bottom:837.893333pt;}
.y41_c00163{bottom:840.186667pt;}
.y3e_c00163{bottom:841.733333pt;}
.y3c_c00163{bottom:842.493333pt;}
.y3f_c00163{bottom:844.800000pt;}
.y3b_c00163{bottom:845.573333pt;}
.y3d_c00163{bottom:846.333333pt;}
.y39_c00163{bottom:855.546667pt;}
.y37_c00163{bottom:856.320000pt;}
.y3a_c00163{bottom:857.853333pt;}
.y36_c00163{bottom:859.386667pt;}
.y33_c00163{bottom:860.160000pt;}
.y38_c00163{bottom:860.933333pt;}
.y35_c00163{bottom:863.226667pt;}
.y34_c00163{bottom:864.000000pt;}
.y32_c00163{bottom:864.773333pt;}
.y31_c00163{bottom:874.746667pt;}
.y2e_c00163{bottom:877.826667pt;}
.y2c_c00163{bottom:878.586667pt;}
.y30_c00163{bottom:880.133333pt;}
.y2b_c00163{bottom:880.893333pt;}
.y2f_c00163{bottom:881.666667pt;}
.y2d_c00163{bottom:882.426667pt;}
.y26_c00163{bottom:891.653333pt;}
.y2a_c00163{bottom:892.413333pt;}
.y27_c00163{bottom:895.493333pt;}
.y25_c00163{bottom:896.253333pt;}
.y24_c00163{bottom:897.786667pt;}
.y28_c00163{bottom:899.333333pt;}
.y29_c00163{bottom:907.013333pt;}
.y23_c00163{bottom:910.080000pt;}
.y21_c00163{bottom:911.613333pt;}
.ydc_c00163{bottom:913.146667pt;}
.y22_c00163{bottom:913.920000pt;}
.y1c_c00163{bottom:914.693333pt;}
.y20_c00163{bottom:915.453333pt;}
.y1d_c00163{bottom:916.226667pt;}
.y1e_c00163{bottom:916.986667pt;}
.y1f_c00163{bottom:926.213333pt;}
.y18_c00163{bottom:930.813333pt;}
.y17_c00163{bottom:931.586667pt;}
.y1a_c00163{bottom:932.346667pt;}
.y19_c00163{bottom:934.653333pt;}
.ydb_c00163{bottom:937.733333pt;}
.y1b_c00163{bottom:940.800000pt;}
.y14_c00163{bottom:946.946667pt;}
.y16_c00163{bottom:947.706667pt;}
.y15_c00163{bottom:948.480000pt;}
.y12_c00163{bottom:949.253333pt;}
.y13_c00163{bottom:953.093333pt;}
.y10_c00163{bottom:966.146667pt;}
.yd8_c00163{bottom:968.453333pt;}
.yd9_c00163{bottom:969.213333pt;}
.yda_c00163{bottom:970.746667pt;}
.yf_c00163{bottom:971.520000pt;}
.yd6_c00163{bottom:972.293333pt;}
.yd7_c00163{bottom:973.053333pt;}
.y11_c00163{bottom:976.133333pt;}
.ye_c00163{bottom:983.040000pt;}
.yd_c00163{bottom:984.573333pt;}
.yd5_c00163{bottom:985.346667pt;}
.yc_c00163{bottom:988.413333pt;}
.yd3_c00163{bottom:989.946667pt;}
.yd4_c00163{bottom:990.720000pt;}
.ya_c00163{bottom:1003.773333pt;}
.yd2_c00163{bottom:1004.546667pt;}
.y9_c00163{bottom:1005.306667pt;}
.y6_c00163{bottom:1006.853333pt;}
.yb_c00163{bottom:1007.613333pt;}
.ycf_c00163{bottom:1009.920000pt;}
.yd1_c00163{bottom:1011.453333pt;}
.yd0_c00163{bottom:1019.906667pt;}
.yce_c00163{bottom:1022.213333pt;}
.ycc_c00163{bottom:1022.973333pt;}
.ycb_c00163{bottom:1023.746667pt;}
.yca_c00163{bottom:1025.280000pt;}
.y7_c00163{bottom:1026.053333pt;}
.y8_c00163{bottom:1026.813333pt;}
.ycd_c00163{bottom:1027.586667pt;}
.yc9_c00163{bottom:1041.413333pt;}
.yc8_c00163{bottom:1045.253333pt;}
.yed_c00163{bottom:1046.786667pt;}
.yec_c00163{bottom:1051.386667pt;}
.yeb_c00163{bottom:1055.226667pt;}
.yc4_c00163{bottom:1056.000000pt;}
.yc3_c00163{bottom:1059.840000pt;}
.yc5_c00163{bottom:1060.613333pt;}
.yc7_c00163{bottom:1062.146667pt;}
.yc6_c00163{bottom:1062.906667pt;}
.yc2_c00163{bottom:1063.680000pt;}
.ybf_c00163{bottom:1077.506667pt;}
.ybe_c00163{bottom:1081.346667pt;}
.yc0_c00163{bottom:1086.720000pt;}
.yea_c00163{bottom:1089.786667pt;}
.ybd_c00163{bottom:1092.093333pt;}
.yc1_c00163{bottom:1092.866667pt;}
.ybc_c00163{bottom:1095.173333pt;}
.yba_c00163{bottom:1096.706667pt;}
.yb8_c00163{bottom:1098.240000pt;}
.yb9_c00163{bottom:1099.013333pt;}
.ybb_c00163{bottom:1099.773333pt;}
.ye9_c00163{bottom:1108.986667pt;}
.ye4_c00163{bottom:1112.066667pt;}
.yb7_c00163{bottom:1113.600000pt;}
.yb5_c00163{bottom:1117.440000pt;}
.yb6_c00163{bottom:1118.213333pt;}
.yb4_c00163{bottom:1118.973333pt;}
.ye5_c00163{bottom:1127.426667pt;}
.ye8_c00163{bottom:1128.186667pt;}
.ye2_c00163{bottom:1130.493333pt;}
.ye3_c00163{bottom:1134.333333pt;}
.yb3_c00163{bottom:1135.106667pt;}
.yaf_c00163{bottom:1135.866667pt;}
.yb1_c00163{bottom:1139.706667pt;}
.yb2_c00163{bottom:1144.320000pt;}
.yb0_c00163{bottom:1146.626667pt;}
.y9a_c00163{bottom:1147.386667pt;}
.yaa_c00163{bottom:1148.933333pt;}
.yad_c00163{bottom:1149.693333pt;}
.yab_c00163{bottom:1150.466667pt;}
.yac_c00163{bottom:1151.226667pt;}
.ydd_c00163{bottom:1152.000000pt;}
.ya8_c00163{bottom:1153.533333pt;}
.ya9_c00163{bottom:1154.306667pt;}
.yae_c00163{bottom:1155.840000pt;}
.ye1_c00163{bottom:1158.146667pt;}
.ye0_c00163{bottom:1161.213333pt;}
.ye6_c00163{bottom:1165.053333pt;}
.ye7_c00163{bottom:1166.586667pt;}
.ydf_c00163{bottom:1167.360000pt;}
.ya7_c00163{bottom:1168.133333pt;}
.yde_c00163{bottom:1168.893333pt;}
.ya6_c00163{bottom:1171.973333pt;}
.y98_c00163{bottom:1181.186667pt;}
.y96_c00163{bottom:1182.720000pt;}
.ya5_c00163{bottom:1184.253333pt;}
.y99_c00163{bottom:1185.786667pt;}
.y97_c00163{bottom:1186.560000pt;}
.ya4_c00163{bottom:1188.093333pt;}
.ya2_c00163{bottom:1189.626667pt;}
.ya3_c00163{bottom:1190.400000pt;}
.y9d_c00163{bottom:1201.146667pt;}
.y9b_c00163{bottom:1202.693333pt;}
.y5_c00163{bottom:1204.986667pt;}
.y9f_c00163{bottom:1206.533333pt;}
.y9e_c00163{bottom:1207.293333pt;}
.ya0_c00163{bottom:1208.826667pt;}
.ya1_c00163{bottom:1212.666667pt;}
.y9c_c00163{bottom:1214.973333pt;}
.y4_c00163{bottom:1231.866667pt;}
.y3_c00163{bottom:1232.640000pt;}
.y2_c00163{bottom:1233.413333pt;}
.y1_c00163{bottom:1236.480000pt;}
.hb_c00163{height:2.764500pt;}
.h11_c00163{height:4.799479pt;}
.h16_c00163{height:5.519401pt;}
.h15_c00163{height:8.303099pt;}
.h22_c00163{height:11.038802pt;}
.h1a_c00163{height:13.822500pt;}
.h1f_c00163{height:16.606198pt;}
.h18_c00163{height:19.341901pt;}
.h1b_c00163{height:22.125599pt;}
.h9_c00163{height:24.861302pt;}
.ha_c00163{height:27.645000pt;}
.h2_c00163{height:30.428698pt;}
.h21_c00163{height:33.164401pt;}
.hf_c00163{height:35.948099pt;}
.he_c00163{height:38.683802pt;}
.h6_c00163{height:41.467500pt;}
.hd_c00163{height:44.251198pt;}
.h1e_c00163{height:44.507500pt;}
.h3_c00163{height:46.986901pt;}
.h5_c00163{height:49.770599pt;}
.h4_c00163{height:52.506302pt;}
.h1c_c00163{height:54.980365pt;}
.h8_c00163{height:55.290000pt;}
.h13_c00163{height:58.073698pt;}
.hc_c00163{height:60.809401pt;}
.h10_c00163{height:63.593099pt;}
.h1d_c00163{height:66.328802pt;}
.h19_c00163{height:69.112500pt;}
.h12_c00163{height:71.896198pt;}
.h17_c00163{height:74.631901pt;}
.h14_c00163{height:77.415599pt;}
.h23_c00163{height:110.580000pt;}
.h7_c00163{height:113.363698pt;}
.h20_c00163{height:132.705599pt;}
.h1_c00163{height:1336.000000pt;}
.h0_c00163{height:1336.320000pt;}
.w0_c00163{width:973.053333pt;}
.w1_c00163{width:973.333333pt;}
.x0_c00163{left:0.000000pt;}
.x1_c00163{left:16.893333pt;}
.x97_c00163{left:22.266667pt;}
.x96_c00163{left:63.746667pt;}
.x7e_c00163{left:85.253333pt;}
.x7f_c00163{left:95.226667pt;}
.x80_c00163{left:109.826667pt;}
.x81_c00163{left:122.880000pt;}
.x2e_c00163{left:212.733333pt;}
.x76_c00163{left:214.266667pt;}
.x27_c00163{left:215.813333pt;}
.x5e_c00163{left:219.653333pt;}
.x53_c00163{left:222.720000pt;}
.x4d_c00163{left:225.026667pt;}
.x6f_c00163{left:226.560000pt;}
.x57_c00163{left:228.866667pt;}
.x5b_c00163{left:230.400000pt;}
.x35_c00163{left:231.933333pt;}
.x8a_c00163{left:233.466667pt;}
.x89_c00163{left:249.600000pt;}
.x28_c00163{left:252.666667pt;}
.x84_c00163{left:255.746667pt;}
.x8d_c00163{left:257.280000pt;}
.x7a_c00163{left:262.653333pt;}
.x36_c00163{left:266.493333pt;}
.x5f_c00163{left:271.866667pt;}
.x45_c00163{left:276.480000pt;}
.x5c_c00163{left:278.013333pt;}
.x77_c00163{left:284.160000pt;}
.x2f_c00163{left:289.533333pt;}
.x4e_c00163{left:291.066667pt;}
.x70_c00163{left:297.213333pt;}
.x7c_c00163{left:298.746667pt;}
.x65_c00163{left:301.053333pt;}
.x58_c00163{left:304.133333pt;}
.x37_c00163{left:306.426667pt;}
.x69_c00163{left:307.973333pt;}
.x90_c00163{left:311.040000pt;}
.x6a_c00163{left:314.106667pt;}
.x93_c00163{left:316.413333pt;}
.x6b_c00163{left:318.720000pt;}
.x85_c00163{left:320.253333pt;}
.x8f_c00163{left:321.786667pt;}
.x59_c00163{left:324.093333pt;}
.x29_c00163{left:326.400000pt;}
.x30_c00163{left:327.933333pt;}
.x94_c00163{left:332.546667pt;}
.x46_c00163{left:334.080000pt;}
.x8b_c00163{left:338.693333pt;}
.x71_c00163{left:341.760000pt;}
.x92_c00163{left:344.066667pt;}
.x4f_c00163{left:346.373333pt;}
.x31_c00163{left:350.213333pt;}
.x54_c00163{left:353.280000pt;}
.x66_c00163{left:354.813333pt;}
.x38_c00163{left:359.426667pt;}
.x50_c00163{left:362.493333pt;}
.x32_c00163{left:364.800000pt;}
.x60_c00163{left:367.106667pt;}
.x7b_c00163{left:368.640000pt;}
.x86_c00163{left:370.946667pt;}
.x82_c00163{left:372.480000pt;}
.x78_c00163{left:374.013333pt;}
.x40_c00163{left:376.320000pt;}
.x5a_c00163{left:380.160000pt;}
.x8c_c00163{left:381.693333pt;}
.x41_c00163{left:383.226667pt;}
.x72_c00163{left:386.306667pt;}
.x6d_c00163{left:388.613333pt;}
.x87_c00163{left:390.906667pt;}
.x8e_c00163{left:395.520000pt;}
.x42_c00163{left:400.893333pt;}
.x6e_c00163{left:402.426667pt;}
.x39_c00163{left:403.973333pt;}
.x47_c00163{left:407.040000pt;}
.x68_c00163{left:409.346667pt;}
.x67_c00163{left:413.186667pt;}
.x3a_c00163{left:415.493333pt;}
.x33_c00163{left:419.333333pt;}
.x55_c00163{left:423.933333pt;}
.x48_c00163{left:425.466667pt;}
.x7d_c00163{left:427.773333pt;}
.x5d_c00163{left:430.853333pt;}
.x6c_c00163{left:433.146667pt;}
.x2_c00163{left:435.453333pt;}
.x79_c00163{left:438.533333pt;}
.x2a_c00163{left:440.066667pt;}
.x74_c00163{left:442.373333pt;}
.x73_c00163{left:443.906667pt;}
.x43_c00163{left:448.506667pt;}
.x3_c00163{left:453.120000pt;}
.x95_c00163{left:455.426667pt;}
.x51_c00163{left:456.960000pt;}
.x56_c00163{left:458.493333pt;}
.x61_c00163{left:460.800000pt;}
.x64_c00163{left:463.866667pt;}
.x34_c00163{left:467.706667pt;}
.x75_c00163{left:469.253333pt;}
.x3b_c00163{left:470.786667pt;}
.x83_c00163{left:475.386667pt;}
.x91_c00163{left:476.933333pt;}
.x62_c00163{left:480.000000pt;}
.x4_c00163{left:481.533333pt;}
.x63_c00163{left:487.680000pt;}
.x88_c00163{left:489.986667pt;}
.x22_c00163{left:492.293333pt;}
.x2b_c00163{left:500.733800pt;}
.x9c_c00163{left:503.813333pt;}
.x9_c00163{left:506.106667pt;}
.x5_c00163{left:507.653333pt;}
.x12_c00163{left:510.720000pt;}
.x1f_c00163{left:519.173333pt;}
.x2c_c00163{left:520.706667pt;}
.x6_c00163{left:526.080000pt;}
.x9d_c00163{left:536.066667pt;}
.xa_c00163{left:549.893333pt;}
.x99_c00163{left:557.573333pt;}
.xa2_c00163{left:559.106667pt;}
.xb_c00163{left:562.946667pt;}
.x9a_c00163{left:569.853333pt;}
.xc_c00163{left:574.466667pt;}
.x49_c00163{left:580.613333pt;}
.xd_c00163{left:583.680000pt;}
.x23_c00163{left:589.826667pt;}
.xe_c00163{left:592.893333pt;}
.x13_c00163{left:596.733333pt;}
.x9e_c00163{left:599.040000pt;}
.xf_c00163{left:604.413333pt;}
.x18_c00163{left:609.026667pt;}
.x1b_c00163{left:613.626667pt;}
.x98_c00163{left:615.173333pt;}
.x10_c00163{left:618.240000pt;}
.x7_c00163{left:625.920000pt;}
.x52_c00163{left:628.986667pt;}
.x11_c00163{left:632.826667pt;}
.x9f_c00163{left:635.906667pt;}
.x8_c00163{left:637.440000pt;}
.x24_c00163{left:642.053333pt;}
.x20_c00163{left:645.893333pt;}
.x9b_c00163{left:655.106667pt;}
.xa0_c00163{left:661.253333pt;}
.x14_c00163{left:666.626667pt;}
.x25_c00163{left:669.693333pt;}
.xa1_c00163{left:698.880000pt;}
.x1c_c00163{left:707.333333pt;}
.xa3_c00163{left:715.773333pt;}
.x4a_c00163{left:721.920000pt;}
.xa7_c00163{left:724.226667pt;}
.x44_c00163{left:731.906667pt;}
.x26_c00163{left:734.213333pt;}
.x1d_c00163{left:736.506667pt;}
.xa5_c00163{left:738.813333pt;}
.x3c_c00163{left:741.893333pt;}
.x3d_c00163{left:748.026667pt;}
.x15_c00163{left:749.573333pt;}
.xa4_c00163{left:753.413333pt;}
.x2d_c00163{left:758.013333pt;}
.x19_c00163{left:760.320000pt;}
.x17_c00163{left:761.853333pt;}
.x1e_c00163{left:764.933333pt;}
.xa6_c00163{left:766.466667pt;}
.x16_c00163{left:770.306667pt;}
.x21_c00163{left:776.453333pt;}
.x1a_c00163{left:784.893333pt;}
.x3e_c00163{left:787.200000pt;}
.x4b_c00163{left:791.040000pt;}
.x3f_c00163{left:796.413333pt;}
.x4c_c00163{left:800.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_966941806f91e8fad0ba5e26.woff2')format("woff");}.ff1_c00164{font-family:ff1_c00164;line-height:1.109863;font-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_c00164{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00164{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m52_c00164{transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);}
.ma8_c00164{transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);}
.m5_c00164{transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);}
.m9b_c00164{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.m24_c00164{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00164{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mae_c00164{transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);}
.m9_c00164{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m9f_c00164{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);}
.mb0_c00164{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.me_c00164{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m91_c00164{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);}
.maf_c00164{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.ma5_c00164{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);}
.m82_c00164{transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);}
.m41_c00164{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.m5a_c00164{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m99_c00164{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m15_c00164{transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);}
.m63_c00164{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);}
.m60_c00164{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);}
.m3d_c00164{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);}
.m7f_c00164{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.mac_c00164{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m47_c00164{transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);}
.m81_c00164{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m61_c00164{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m1d_c00164{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m95_c00164{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);}
.m80_c00164{transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);}
.m53_c00164{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.m59_c00164{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m6f_c00164{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);}
.m7b_c00164{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);}
.m2b_c00164{transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);}
.m65_c00164{transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);}
.ma9_c00164{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m1b_c00164{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m73_c00164{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m71_c00164{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);}
.m70_c00164{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.m50_c00164{transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);}
.ma4_c00164{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m8c_c00164{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);}
.ma0_c00164{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m10_c00164{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);}
.m97_c00164{transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);}
.m34_c00164{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3e_c00164{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);}
.m93_c00164{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);}
.m64_c00164{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m4e_c00164{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);}
.m33_c00164{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.mab_c00164{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);}
.m31_c00164{transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);}
.m83_c00164{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.m78_c00164{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.m3c_c00164{transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);}
.m90_c00164{transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);}
.m4a_c00164{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);}
.m92_c00164{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);}
.m2a_c00164{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);}
.m35_c00164{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m7d_c00164{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);}
.m12_c00164{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);}
.m9e_c00164{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m7c_c00164{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);}
.m29_c00164{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);}
.m38_c00164{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.m44_c00164{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);}
.m3b_c00164{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);}
.m45_c00164{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);}
.m1e_c00164{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m55_c00164{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m72_c00164{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);}
.m6a_c00164{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.maa_c00164{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);}
.ma1_c00164{transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);}
.m84_c00164{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);}
.ma2_c00164{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m1f_c00164{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);}
.m4d_c00164{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m79_c00164{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);}
.m87_c00164{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m6b_c00164{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);}
.m88_c00164{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m85_c00164{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m76_c00164{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.ma3_c00164{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);}
.m4b_c00164{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);}
.m8b_c00164{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m58_c00164{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);}
.m8d_c00164{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);}
.m46_c00164{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);}
.m3f_c00164{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00164{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c00164{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00164{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);}
.m1a_c00164{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m14_c00164{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);}
.mf_c00164{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);}
.m8a_c00164{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00164{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);}
.m8_c00164{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00164{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m68_c00164{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);}
.m5f_c00164{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m48_c00164{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);}
.ma_c00164{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);}
.m21_c00164{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c00164{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m36_c00164{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);}
.m13_c00164{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m62_c00164{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m57_c00164{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);}
.m18_c00164{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m19_c00164{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m30_c00164{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m27_c00164{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00164{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00164{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m74_c00164{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m16_c00164{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00164{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);}
.m7e_c00164{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00164{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m49_c00164{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c00164{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11_c00164{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);}
.m5e_c00164{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m37_c00164{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m28_c00164{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);}
.m6e_c00164{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00164{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m39_c00164{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m25_c00164{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mb_c00164{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);}
.m5b_c00164{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m43_c00164{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m67_c00164{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);}
.m94_c00164{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00164{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m66_c00164{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m54_c00164{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m69_c00164{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m89_c00164{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);}
.m1c_c00164{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m26_c00164{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00164{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00164{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m40_c00164{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);}
.m20_c00164{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c00164{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m23_c00164{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m96_c00164{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m17_c00164{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m75_c00164{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);}
.mc_c00164{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);}
.m0_c00164{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);}
.m22_c00164{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);}
.mad_c00164{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m1_c00164{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00164{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00164{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00164{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m77_c00164{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00164{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00164{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m98_c00164{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00164{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m86_c00164{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00164{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00164{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m42_c00164{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00164{transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);}
.md_c00164{transform:matrix(1.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.885000,0.000000,0.000000,0.250000,0,0);}
.v2_c00164{vertical-align:-31.080000px;}
.v1_c00164{vertical-align:-3.480000px;}
.v0_c00164{vertical-align:0.000000px;}
.v4_c00164{vertical-align:3.420000px;}
.v3_c00164{vertical-align:6.900000px;}
.ls3_c00164{letter-spacing:0.000000px;}
.ls0_c00164{letter-spacing:18.461040px;}
.ls1_c00164{letter-spacing:33.226740px;}
.ls2_c00164{letter-spacing:335.777400px;}
.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;}
}
.ws1_c00164{word-spacing:-20.252400px;}
.ws2_c00164{word-spacing:0.000000px;}
.ws0_c00164{word-spacing:0.034353px;}
.fc0_c00164{color:transparent;}
.fs7_c00164{font-size:3.456000px;}
.fsd_c00164{font-size:6.000000px;}
.fs12_c00164{font-size:6.900000px;}
.fs13_c00164{font-size:10.380000px;}
.fs17_c00164{font-size:13.800000px;}
.fs19_c00164{font-size:17.280000px;}
.fs15_c00164{font-size:20.760000px;}
.fs1_c00164{font-size:24.180000px;}
.fsa_c00164{font-size:27.660000px;}
.fs0_c00164{font-size:31.080000px;}
.fs9_c00164{font-size:34.560000px;}
.fs5_c00164{font-size:38.040000px;}
.fs1a_c00164{font-size:41.460000px;}
.fs18_c00164{font-size:44.940000px;}
.fs11_c00164{font-size:48.360000px;}
.fsc_c00164{font-size:51.840000px;}
.fs6_c00164{font-size:55.320000px;}
.fsf_c00164{font-size:58.740000px;}
.fs2_c00164{font-size:62.220000px;}
.fs3_c00164{font-size:65.640000px;}
.fse_c00164{font-size:69.120000px;}
.fsb_c00164{font-size:72.600000px;}
.fs4_c00164{font-size:76.020000px;}
.fs10_c00164{font-size:79.500000px;}
.fs14_c00164{font-size:82.920000px;}
.fs16_c00164{font-size:86.400000px;}
.fs8_c00164{font-size:138.240000px;}
.y0_c00164{bottom:0.000000px;}
.yfd_c00164{bottom:249.690000px;}
.yfe_c00164{bottom:252.285000px;}
.yfa_c00164{bottom:527.910000px;}
.yfb_c00164{bottom:528.765000px;}
.yfc_c00164{bottom:534.810000px;}
.yf9_c00164{bottom:536.550000px;}
.yf8_c00164{bottom:549.510000px;}
.yf5_c00164{bottom:550.365000px;}
.yf7_c00164{bottom:554.685000px;}
.yf6_c00164{bottom:555.555000px;}
.yf3_c00164{bottom:570.240000px;}
.yf2_c00164{bottom:571.110000px;}
.yf4_c00164{bottom:574.560000px;}
.yf1_c00164{bottom:576.285000px;}
.yee_c00164{bottom:591.840000px;}
.yef_c00164{bottom:593.565000px;}
.yf0_c00164{bottom:594.435000px;}
.yed_c00164{bottom:597.885000px;}
.yec_c00164{bottom:598.755000px;}
.ye7_c00164{bottom:609.990000px;}
.ye8_c00164{bottom:611.715000px;}
.yeb_c00164{bottom:615.165000px;}
.yea_c00164{bottom:618.630000px;}
.ye9_c00164{bottom:624.675000px;}
.ye6_c00164{bottom:627.270000px;}
.ye4_c00164{bottom:631.590000px;}
.ye3_c00164{bottom:634.170000px;}
.ye5_c00164{bottom:635.910000px;}
.ye2_c00164{bottom:637.635000px;}
.ye1_c00164{bottom:655.770000px;}
.ye0_c00164{bottom:656.640000px;}
.yde_c00164{bottom:671.325000px;}
.ydf_c00164{bottom:676.515000px;}
.ydd_c00164{bottom:677.370000px;}
.ydc_c00164{bottom:682.560000px;}
.yd5_c00164{bottom:689.475000px;}
.yd6_c00164{bottom:690.330000px;}
.yd7_c00164{bottom:691.200000px;}
.yd8_c00164{bottom:692.070000px;}
.yd9_c00164{bottom:695.520000px;}
.yda_c00164{bottom:696.390000px;}
.ydb_c00164{bottom:702.435000px;}
.yd2_c00164{bottom:710.205000px;}
.yd4_c00164{bottom:711.075000px;}
.yd3_c00164{bottom:730.950000px;}
.yd0_c00164{bottom:753.405000px;}
.yd1_c00164{bottom:766.365000px;}
.ycf_c00164{bottom:792.285000px;}
.y77_c00164{bottom:794.880000px;}
.y78_c00164{bottom:796.605000px;}
.yce_c00164{bottom:797.475000px;}
.y76_c00164{bottom:798.330000px;}
.ycd_c00164{bottom:799.200000px;}
.y72_c00164{bottom:812.160000px;}
.yca_c00164{bottom:813.885000px;}
.ycc_c00164{bottom:814.755000px;}
.ycb_c00164{bottom:815.610000px;}
.y73_c00164{bottom:817.350000px;}
.y74_c00164{bottom:818.205000px;}
.y75_c00164{bottom:819.075000px;}
.y71_c00164{bottom:831.165000px;}
.y6e_c00164{bottom:833.760000px;}
.y6f_c00164{bottom:834.630000px;}
.y6d_c00164{bottom:837.210000px;}
.y6c_c00164{bottom:838.080000px;}
.y70_c00164{bottom:838.950000px;}
.yc9_c00164{bottom:839.805000px;}
.yc8_c00164{bottom:841.530000px;}
.y68_c00164{bottom:851.910000px;}
.y67_c00164{bottom:852.765000px;}
.yc4_c00164{bottom:853.635000px;}
.y69_c00164{bottom:856.230000px;}
.y6a_c00164{bottom:857.085000px;}
.yc5_c00164{bottom:857.955000px;}
.y6b_c00164{bottom:858.810000px;}
.yc6_c00164{bottom:859.680000px;}
.yc7_c00164{bottom:860.550000px;}
.y63_c00164{bottom:874.365000px;}
.yc2_c00164{bottom:875.235000px;}
.y66_c00164{bottom:876.960000px;}
.y64_c00164{bottom:877.830000px;}
.y65_c00164{bottom:878.685000px;}
.yc1_c00164{bottom:879.555000px;}
.yc3_c00164{bottom:880.410000px;}
.yc0_c00164{bottom:895.110000px;}
.y5f_c00164{bottom:898.560000px;}
.y62_c00164{bottom:899.430000px;}
.y60_c00164{bottom:908.925000px;}
.y61_c00164{bottom:910.650000px;}
.y5c_c00164{bottom:914.115000px;}
.y5d_c00164{bottom:914.970000px;}
.y5b_c00164{bottom:918.435000px;}
.ybe_c00164{bottom:920.160000px;}
.ybf_c00164{bottom:921.030000px;}
.y5e_c00164{bottom:931.395000px;}
.y59_c00164{bottom:934.845000px;}
.y5a_c00164{bottom:935.715000px;}
.y58_c00164{bottom:939.165000px;}
.y57_c00164{bottom:940.035000px;}
.y53_c00164{bottom:953.850000px;}
.y56_c00164{bottom:956.445000px;}
.y54_c00164{bottom:958.170000px;}
.y55_c00164{bottom:959.040000px;}
.y51_c00164{bottom:965.955000px;}
.y52_c00164{bottom:972.000000px;}
.y4d_c00164{bottom:973.725000px;}
.y4f_c00164{bottom:976.320000px;}
.y4e_c00164{bottom:977.190000px;}
.y50_c00164{bottom:981.510000px;}
.y4c_c00164{bottom:991.875000px;}
.y4a_c00164{bottom:994.470000px;}
.y49_c00164{bottom:997.920000px;}
.ybc_c00164{bottom:998.790000px;}
.y4b_c00164{bottom:999.645000px;}
.yb3_c00164{bottom:1003.110000px;}
.yb4_c00164{bottom:1003.965000px;}
.y46_c00164{bottom:1015.200000px;}
.ybb_c00164{bottom:1018.650000px;}
.yb0_c00164{bottom:1019.520000px;}
.y47_c00164{bottom:1020.390000px;}
.y48_c00164{bottom:1021.245000px;}
.yb1_c00164{bottom:1023.840000px;}
.yb2_c00164{bottom:1024.710000px;}
.yba_c00164{bottom:1034.205000px;}
.y42_c00164{bottom:1035.075000px;}
.y43_c00164{bottom:1035.930000px;}
.y45_c00164{bottom:1036.800000px;}
.yb8_c00164{bottom:1041.120000px;}
.y44_c00164{bottom:1041.990000px;}
.yb9_c00164{bottom:1043.715000px;}
.yaf_c00164{bottom:1045.440000px;}
.ybd_c00164{bottom:1048.890000px;}
.y3f_c00164{bottom:1055.805000px;}
.y41_c00164{bottom:1057.530000px;}
.yad_c00164{bottom:1060.125000px;}
.y3e_c00164{bottom:1060.995000px;}
.y40_c00164{bottom:1062.720000px;}
.yae_c00164{bottom:1064.445000px;}
.yac_c00164{bottom:1065.315000px;}
.yab_c00164{bottom:1067.910000px;}
.yb7_c00164{bottom:1073.085000px;}
.y3a_c00164{bottom:1076.550000px;}
.y3c_c00164{bottom:1078.275000px;}
.ya9_c00164{bottom:1080.000000px;}
.y39_c00164{bottom:1080.870000px;}
.y3b_c00164{bottom:1081.725000px;}
.y3d_c00164{bottom:1083.450000px;}
.yaa_c00164{bottom:1084.320000px;}
.ya8_c00164{bottom:1085.190000px;}
.ya7_c00164{bottom:1086.045000px;}
.y35_c00164{bottom:1096.410000px;}
.y34_c00164{bottom:1098.150000px;}
.ya6_c00164{bottom:1100.730000px;}
.y36_c00164{bottom:1101.600000px;}
.y37_c00164{bottom:1102.470000px;}
.y38_c00164{bottom:1104.195000px;}
.ya4_c00164{bottom:1105.050000px;}
.ya5_c00164{bottom:1106.790000px;}
.y33_c00164{bottom:1107.645000px;}
.y30_c00164{bottom:1118.010000px;}
.y32_c00164{bottom:1119.750000px;}
.ya3_c00164{bottom:1120.605000px;}
.ya2_c00164{bottom:1124.925000px;}
.y31_c00164{bottom:1131.840000px;}
.y2c_c00164{bottom:1137.030000px;}
.y2e_c00164{bottom:1139.610000px;}
.ya1_c00164{bottom:1140.480000px;}
.y2d_c00164{bottom:1143.075000px;}
.y2f_c00164{bottom:1143.930000px;}
.ya0_c00164{bottom:1144.800000px;}
.y9f_c00164{bottom:1145.670000px;}
.y2a_c00164{bottom:1159.485000px;}
.y9b_c00164{bottom:1161.210000px;}
.y27_c00164{bottom:1162.080000px;}
.y9c_c00164{bottom:1162.950000px;}
.y2b_c00164{bottom:1164.675000px;}
.y9e_c00164{bottom:1165.530000px;}
.y26_c00164{bottom:1167.270000px;}
.y29_c00164{bottom:1169.850000px;}
.y9d_c00164{bottom:1170.720000px;}
.y9a_c00164{bottom:1172.445000px;}
.y28_c00164{bottom:1175.910000px;}
.y21_c00164{bottom:1177.635000px;}
.y98_c00164{bottom:1181.085000px;}
.y22_c00164{bottom:1182.810000px;}
.y25_c00164{bottom:1183.680000px;}
.y23_c00164{bottom:1184.550000px;}
.y24_c00164{bottom:1185.405000px;}
.y99_c00164{bottom:1186.275000px;}
.y20_c00164{bottom:1198.365000px;}
.y94_c00164{bottom:1200.090000px;}
.y93_c00164{bottom:1201.830000px;}
.y96_c00164{bottom:1203.555000px;}
.y95_c00164{bottom:1206.150000px;}
.y97_c00164{bottom:1207.005000px;}
.y1d_c00164{bottom:1219.965000px;}
.y1f_c00164{bottom:1220.835000px;}
.y90_c00164{bottom:1221.690000px;}
.y1b_c00164{bottom:1222.560000px;}
.y1c_c00164{bottom:1223.430000px;}
.y92_c00164{bottom:1224.285000px;}
.y1e_c00164{bottom:1225.155000px;}
.y91_c00164{bottom:1226.880000px;}
.y18_c00164{bottom:1238.970000px;}
.y8c_c00164{bottom:1241.565000px;}
.y17_c00164{bottom:1242.435000px;}
.y8e_c00164{bottom:1243.290000px;}
.y19_c00164{bottom:1244.160000px;}
.y1a_c00164{bottom:1245.885000px;}
.y8f_c00164{bottom:1246.755000px;}
.y8b_c00164{bottom:1253.670000px;}
.y8d_c00164{bottom:1257.990000px;}
.yb6_c00164{bottom:1259.715000px;}
.y15_c00164{bottom:1260.570000px;}
.yb5_c00164{bottom:1261.440000px;}
.y87_c00164{bottom:1263.165000px;}
.y14_c00164{bottom:1264.035000px;}
.y8a_c00164{bottom:1265.760000px;}
.y16_c00164{bottom:1266.630000px;}
.y88_c00164{bottom:1267.485000px;}
.y89_c00164{bottom:1268.355000px;}
.y10_c00164{bottom:1278.720000px;}
.y12_c00164{bottom:1280.445000px;}
.ya_c00164{bottom:1282.170000px;}
.y85_c00164{bottom:1283.040000px;}
.yf_c00164{bottom:1283.910000px;}
.y11_c00164{bottom:1284.765000px;}
.y13_c00164{bottom:1285.635000px;}
.y86_c00164{bottom:1287.360000px;}
.y84_c00164{bottom:1288.230000px;}
.yd_c00164{bottom:1301.190000px;}
.y81_c00164{bottom:1302.915000px;}
.yc_c00164{bottom:1303.770000px;}
.yb_c00164{bottom:1304.640000px;}
.y83_c00164{bottom:1305.510000px;}
.ye_c00164{bottom:1306.365000px;}
.y80_c00164{bottom:1308.090000px;}
.y7f_c00164{bottom:1308.960000px;}
.y7e_c00164{bottom:1311.555000px;}
.y82_c00164{bottom:1312.410000px;}
.y7a_c00164{bottom:1323.645000px;}
.y7d_c00164{bottom:1324.515000px;}
.y79_c00164{bottom:1327.965000px;}
.y7b_c00164{bottom:1328.835000px;}
.y7c_c00164{bottom:1329.690000px;}
.y9_c00164{bottom:1349.565000px;}
.y8_c00164{bottom:1361.670000px;}
.y7_c00164{bottom:1369.440000px;}
.y6_c00164{bottom:1390.170000px;}
.y2_c00164{bottom:1393.635000px;}
.y3_c00164{bottom:1396.230000px;}
.y4_c00164{bottom:1397.085000px;}
.y5_c00164{bottom:1397.955000px;}
.y1_c00164{bottom:1404.870000px;}
.h9_c00164{height:3.110063px;}
.hf_c00164{height:5.399414px;}
.h14_c00164{height:6.209326px;}
.h15_c00164{height:9.340986px;}
.h1d_c00164{height:9.361611px;}
.h19_c00164{height:12.418652px;}
.h1b_c00164{height:15.550313px;}
.h17_c00164{height:18.681973px;}
.h3_c00164{height:21.759639px;}
.hc_c00164{height:24.891299px;}
.h2_c00164{height:27.968965px;}
.hb_c00164{height:31.100625px;}
.h7_c00164{height:34.232285px;}
.h1c_c00164{height:37.309951px;}
.h1a_c00164{height:40.441611px;}
.h13_c00164{height:43.519277px;}
.he_c00164{height:46.650937px;}
.h8_c00164{height:49.782598px;}
.h11_c00164{height:52.860264px;}
.h1e_c00164{height:53.202598px;}
.h4_c00164{height:55.991924px;}
.h5_c00164{height:59.069590px;}
.h10_c00164{height:62.201250px;}
.hd_c00164{height:65.332910px;}
.h6_c00164{height:68.410576px;}
.h12_c00164{height:71.542236px;}
.h16_c00164{height:74.619902px;}
.h18_c00164{height:77.751563px;}
.ha_c00164{height:124.402500px;}
.h0_c00164{height:1523.235000px;}
.h1_c00164{height:1523.250000px;}
.w0_c00164{width:1107.645000px;}
.w1_c00164{width:1107.750000px;}
.x0_c00164{left:0.000000px;}
.x2e_c00164{left:225.510000px;}
.x41_c00164{left:235.875000px;}
.x45_c00164{left:241.920000px;}
.x4c_c00164{left:243.645000px;}
.x29_c00164{left:246.240000px;}
.xc_c00164{left:247.965000px;}
.x2b_c00164{left:249.690000px;}
.x2d_c00164{left:258.330000px;}
.x44_c00164{left:263.520000px;}
.x1e_c00164{left:265.245000px;}
.x25_c00164{left:266.970000px;}
.x3c_c00164{left:268.710000px;}
.x32_c00164{left:270.435000px;}
.x19_c00164{left:273.885000px;}
.xd_c00164{left:280.800000px;}
.x3d_c00164{left:293.760000px;}
.x13_c00164{left:298.950000px;}
.xe_c00164{left:310.170000px;}
.x48_c00164{left:317.085000px;}
.x2_c00164{left:323.130000px;}
.x3f_c00164{left:324.870000px;}
.x3e_c00164{left:332.640000px;}
.xf_c00164{left:336.090000px;}
.x1f_c00164{left:339.555000px;}
.x38_c00164{left:341.280000px;}
.x1a_c00164{left:343.875000px;}
.x3a_c00164{left:345.600000px;}
.x46_c00164{left:355.965000px;}
.x2f_c00164{left:364.605000px;}
.xa_c00164{left:368.925000px;}
.x2c_c00164{left:375.840000px;}
.x4e_c00164{left:380.160000px;}
.x1b_c00164{left:382.755000px;}
.xb_c00164{left:384.480000px;}
.x17_c00164{left:387.930000px;}
.x34_c00164{left:394.845000px;}
.x49_c00164{left:397.440000px;}
.x33_c00164{left:399.165000px;}
.x14_c00164{left:405.210000px;}
.x2a_c00164{left:410.400000px;}
.x26_c00164{left:412.125000px;}
.x4f_c00164{left:413.850000px;}
.x42_c00164{left:415.590000px;}
.x47_c00164{left:417.315000px;}
.x20_c00164{left:424.230000px;}
.x35_c00164{left:430.275000px;}
.x15_c00164{left:442.365000px;}
.x3b_c00164{left:445.830000px;}
.x10_c00164{left:447.555000px;}
.x21_c00164{left:451.875000px;}
.x36_c00164{left:457.920000px;}
.x22_c00164{left:475.200000px;}
.x16_c00164{left:478.650000px;}
.x27_c00164{left:486.435000px;}
.x4a_c00164{left:493.350000px;}
.x1c_c00164{left:496.800000px;}
.x4d_c00164{left:498.525000px;}
.x30_c00164{left:501.120000px;}
.x3_c00164{left:503.715000px;}
.x23_c00164{left:506.310000px;}
.x40_c00164{left:513.210000px;}
.x18_c00164{left:514.950000px;}
.x39_c00164{left:516.675000px;}
.x1d_c00164{left:518.400000px;}
.x11_c00164{left:520.125000px;}
.x4_c00164{left:522.720000px;}
.x28_c00164{left:525.315000px;}
.x24_c00164{left:529.635000px;}
.x37_c00164{left:533.085000px;}
.x4b_c00164{left:537.405000px;}
.x31_c00164{left:540.000000px;}
.x12_c00164{left:542.595000px;}
.x5_c00164{left:552.090000px;}
.x43_c00164{left:556.410000px;}
.xad_c00164{left:561.600000px;}
.x79_c00164{left:566.790000px;}
.x69_c00164{left:568.515000px;}
.x9f_c00164{left:570.240000px;}
.x7a_c00164{left:571.965000px;}
.x5e_c00164{left:575.430000px;}
.x50_c00164{left:578.010000px;}
.x57_c00164{left:580.605000px;}
.x6_c00164{left:584.070000px;}
.x9a_c00164{left:589.245000px;}
.x8d_c00164{left:592.710000px;}
.x58_c00164{left:597.030000px;}
.xa4_c00164{left:601.350000px;}
.x7_c00164{left:607.395000px;}
.x5f_c00164{left:610.845000px;}
.x9c_c00164{left:628.125000px;}
.x80_c00164{left:629.850000px;}
.x59_c00164{left:633.315000px;}
.x64_c00164{left:639.360000px;}
.x8e_c00164{left:641.955000px;}
.x60_c00164{left:645.405000px;}
.x6a_c00164{left:648.870000px;}
.x5a_c00164{left:650.595000px;}
.x7b_c00164{left:653.190000px;}
.x84_c00164{left:655.770000px;}
.x65_c00164{left:657.510000px;}
.x51_c00164{left:660.960000px;}
.x8f_c00164{left:662.685000px;}
.xa8_c00164{left:665.280000px;}
.x6f_c00164{left:667.875000px;}
.x9d_c00164{left:673.920000px;}
.x97_c00164{left:678.240000px;}
.x87_c00164{left:682.560000px;}
.xab_c00164{left:688.605456px;}
.xae_c00164{left:691.200000px;}
.x88_c00164{left:698.115456px;}
.x61_c00164{left:699.840000px;}
.x72_c00164{left:705.885000px;}
.x66_c00164{left:710.205000px;}
.xa6_c00164{left:711.930000px;}
.x85_c00164{left:713.670000px;}
.x95_c00164{left:715.395000px;}
.x7c_c00164{left:721.440000px;}
.x9_c00164{left:724.890000px;}
.x67_c00164{left:727.485000px;}
.x52_c00164{left:730.080000px;}
.x5b_c00164{left:732.675000px;}
.xa9_c00164{left:734.400000px;}
.x8_c00164{left:736.995000px;}
.x6b_c00164{left:738.720000px;}
.x77_c00164{left:742.170000px;}
.x53_c00164{left:747.360000px;}
.x86_c00164{left:750.810000px;}
.x81_c00164{left:754.275000px;}
.x6c_c00164{left:757.725000px;}
.x73_c00164{left:760.320000px;}
.x89_c00164{left:762.915000px;}
.x98_c00164{left:765.510000px;}
.x70_c00164{left:768.960000px;}
.x9e_c00164{left:772.410000px;}
.x99_c00164{left:782.790000px;}
.x8a_c00164{left:787.110000px;}
.xa0_c00164{left:793.155000px;}
.x5c_c00164{left:797.475000px;}
.x9b_c00164{left:800.925000px;}
.x74_c00164{left:805.245000px;}
.xa7_c00164{left:809.565000px;}
.x54_c00164{left:812.160000px;}
.x75_c00164{left:813.885000px;}
.x1_c00164{left:816.480000px;}
.x7d_c00164{left:823.395000px;}
.xa3_c00164{left:825.990000px;}
.x82_c00164{left:828.570000px;}
.x78_c00164{left:830.310000px;}
.x7e_c00164{left:832.890000px;}
.x76_c00164{left:835.485000px;}
.x55_c00164{left:838.950000px;}
.x6d_c00164{left:842.400000px;}
.x62_c00164{left:844.995000px;}
.x5d_c00164{left:846.720000px;}
.xaa_c00164{left:849.315000px;}
.x8b_c00164{left:851.040000px;}
.x83_c00164{left:853.635000px;}
.x56_c00164{left:855.360000px;}
.x71_c00164{left:858.810000px;}
.x96_c00164{left:864.000000px;}
.xac_c00164{left:865.725000px;}
.x6e_c00164{left:868.320000px;}
.x7f_c00164{left:870.045000px;}
.x63_c00164{left:871.770000px;}
.xaf_c00164{left:879.555000px;}
.x8c_c00164{left:881.280000px;}
.xa5_c00164{left:883.005000px;}
.x68_c00164{left:890.790000px;}
.x93_c00164{left:894.240000px;}
.x92_c00164{left:937.440000px;}
.x90_c00164{left:959.910000px;}
.x91_c00164{left:974.595000px;}
.xa1_c00164{left:991.005000px;}
.xa2_c00164{left:1035.930000px;}
.xb0_c00164{left:1055.805000px;}
.xb1_c00164{left:1067.040000px;}
.x94_c00164{left:1093.830000px;}
@media print{
.v2_c00164{vertical-align:-27.626667pt;}
.v1_c00164{vertical-align:-3.093333pt;}
.v0_c00164{vertical-align:0.000000pt;}
.v4_c00164{vertical-align:3.040000pt;}
.v3_c00164{vertical-align:6.133333pt;}
.ls3_c00164{letter-spacing:0.000000pt;}
.ls0_c00164{letter-spacing:16.409813pt;}
.ls1_c00164{letter-spacing:29.534880pt;}
.ls2_c00164{letter-spacing:298.468800pt;}
.ws1_c00164{word-spacing:-18.002133pt;}
.ws2_c00164{word-spacing:0.000000pt;}
.ws0_c00164{word-spacing:0.030536pt;}
.fs7_c00164{font-size:3.072000pt;}
.fsd_c00164{font-size:5.333333pt;}
.fs12_c00164{font-size:6.133333pt;}
.fs13_c00164{font-size:9.226667pt;}
.fs17_c00164{font-size:12.266667pt;}
.fs19_c00164{font-size:15.360000pt;}
.fs15_c00164{font-size:18.453333pt;}
.fs1_c00164{font-size:21.493333pt;}
.fsa_c00164{font-size:24.586667pt;}
.fs0_c00164{font-size:27.626667pt;}
.fs9_c00164{font-size:30.720000pt;}
.fs5_c00164{font-size:33.813333pt;}
.fs1a_c00164{font-size:36.853333pt;}
.fs18_c00164{font-size:39.946667pt;}
.fs11_c00164{font-size:42.986667pt;}
.fsc_c00164{font-size:46.080000pt;}
.fs6_c00164{font-size:49.173333pt;}
.fsf_c00164{font-size:52.213333pt;}
.fs2_c00164{font-size:55.306667pt;}
.fs3_c00164{font-size:58.346667pt;}
.fse_c00164{font-size:61.440000pt;}
.fsb_c00164{font-size:64.533333pt;}
.fs4_c00164{font-size:67.573333pt;}
.fs10_c00164{font-size:70.666667pt;}
.fs14_c00164{font-size:73.706667pt;}
.fs16_c00164{font-size:76.800000pt;}
.fs8_c00164{font-size:122.880000pt;}
.y0_c00164{bottom:0.000000pt;}
.yfd_c00164{bottom:221.946667pt;}
.yfe_c00164{bottom:224.253333pt;}
.yfa_c00164{bottom:469.253333pt;}
.yfb_c00164{bottom:470.013333pt;}
.yfc_c00164{bottom:475.386667pt;}
.yf9_c00164{bottom:476.933333pt;}
.yf8_c00164{bottom:488.453333pt;}
.yf5_c00164{bottom:489.213333pt;}
.yf7_c00164{bottom:493.053333pt;}
.yf6_c00164{bottom:493.826667pt;}
.yf3_c00164{bottom:506.880000pt;}
.yf2_c00164{bottom:507.653333pt;}
.yf4_c00164{bottom:510.720000pt;}
.yf1_c00164{bottom:512.253333pt;}
.yee_c00164{bottom:526.080000pt;}
.yef_c00164{bottom:527.613333pt;}
.yf0_c00164{bottom:528.386667pt;}
.yed_c00164{bottom:531.453333pt;}
.yec_c00164{bottom:532.226667pt;}
.ye7_c00164{bottom:542.213333pt;}
.ye8_c00164{bottom:543.746667pt;}
.yeb_c00164{bottom:546.813333pt;}
.yea_c00164{bottom:549.893333pt;}
.ye9_c00164{bottom:555.266667pt;}
.ye6_c00164{bottom:557.573333pt;}
.ye4_c00164{bottom:561.413333pt;}
.ye3_c00164{bottom:563.706667pt;}
.ye5_c00164{bottom:565.253333pt;}
.ye2_c00164{bottom:566.786667pt;}
.ye1_c00164{bottom:582.906667pt;}
.ye0_c00164{bottom:583.680000pt;}
.yde_c00164{bottom:596.733333pt;}
.ydf_c00164{bottom:601.346667pt;}
.ydd_c00164{bottom:602.106667pt;}
.ydc_c00164{bottom:606.720000pt;}
.yd5_c00164{bottom:612.866667pt;}
.yd6_c00164{bottom:613.626667pt;}
.yd7_c00164{bottom:614.400000pt;}
.yd8_c00164{bottom:615.173333pt;}
.yd9_c00164{bottom:618.240000pt;}
.yda_c00164{bottom:619.013333pt;}
.ydb_c00164{bottom:624.386667pt;}
.yd2_c00164{bottom:631.293333pt;}
.yd4_c00164{bottom:632.066667pt;}
.yd3_c00164{bottom:649.733333pt;}
.yd0_c00164{bottom:669.693333pt;}
.yd1_c00164{bottom:681.213333pt;}
.ycf_c00164{bottom:704.253333pt;}
.y77_c00164{bottom:706.560000pt;}
.y78_c00164{bottom:708.093333pt;}
.yce_c00164{bottom:708.866667pt;}
.y76_c00164{bottom:709.626667pt;}
.ycd_c00164{bottom:710.400000pt;}
.y72_c00164{bottom:721.920000pt;}
.yca_c00164{bottom:723.453333pt;}
.ycc_c00164{bottom:724.226667pt;}
.ycb_c00164{bottom:724.986667pt;}
.y73_c00164{bottom:726.533333pt;}
.y74_c00164{bottom:727.293333pt;}
.y75_c00164{bottom:728.066667pt;}
.y71_c00164{bottom:738.813333pt;}
.y6e_c00164{bottom:741.120000pt;}
.y6f_c00164{bottom:741.893333pt;}
.y6d_c00164{bottom:744.186667pt;}
.y6c_c00164{bottom:744.960000pt;}
.y70_c00164{bottom:745.733333pt;}
.yc9_c00164{bottom:746.493333pt;}
.yc8_c00164{bottom:748.026667pt;}
.y68_c00164{bottom:757.253333pt;}
.y67_c00164{bottom:758.013333pt;}
.yc4_c00164{bottom:758.786667pt;}
.y69_c00164{bottom:761.093333pt;}
.y6a_c00164{bottom:761.853333pt;}
.yc5_c00164{bottom:762.626667pt;}
.y6b_c00164{bottom:763.386667pt;}
.yc6_c00164{bottom:764.160000pt;}
.yc7_c00164{bottom:764.933333pt;}
.y63_c00164{bottom:777.213333pt;}
.yc2_c00164{bottom:777.986667pt;}
.y66_c00164{bottom:779.520000pt;}
.y64_c00164{bottom:780.293333pt;}
.y65_c00164{bottom:781.053333pt;}
.yc1_c00164{bottom:781.826667pt;}
.yc3_c00164{bottom:782.586667pt;}
.yc0_c00164{bottom:795.653333pt;}
.y5f_c00164{bottom:798.720000pt;}
.y62_c00164{bottom:799.493333pt;}
.y60_c00164{bottom:807.933333pt;}
.y61_c00164{bottom:809.466667pt;}
.y5c_c00164{bottom:812.546667pt;}
.y5d_c00164{bottom:813.306667pt;}
.y5b_c00164{bottom:816.386667pt;}
.ybe_c00164{bottom:817.920000pt;}
.ybf_c00164{bottom:818.693333pt;}
.y5e_c00164{bottom:827.906667pt;}
.y59_c00164{bottom:830.973333pt;}
.y5a_c00164{bottom:831.746667pt;}
.y58_c00164{bottom:834.813333pt;}
.y57_c00164{bottom:835.586667pt;}
.y53_c00164{bottom:847.866667pt;}
.y56_c00164{bottom:850.173333pt;}
.y54_c00164{bottom:851.706667pt;}
.y55_c00164{bottom:852.480000pt;}
.y51_c00164{bottom:858.626667pt;}
.y52_c00164{bottom:864.000000pt;}
.y4d_c00164{bottom:865.533333pt;}
.y4f_c00164{bottom:867.840000pt;}
.y4e_c00164{bottom:868.613333pt;}
.y50_c00164{bottom:872.453333pt;}
.y4c_c00164{bottom:881.666667pt;}
.y4a_c00164{bottom:883.973333pt;}
.y49_c00164{bottom:887.040000pt;}
.ybc_c00164{bottom:887.813333pt;}
.y4b_c00164{bottom:888.573333pt;}
.yb3_c00164{bottom:891.653333pt;}
.yb4_c00164{bottom:892.413333pt;}
.y46_c00164{bottom:902.400000pt;}
.ybb_c00164{bottom:905.466667pt;}
.yb0_c00164{bottom:906.240000pt;}
.y47_c00164{bottom:907.013333pt;}
.y48_c00164{bottom:907.773333pt;}
.yb1_c00164{bottom:910.080000pt;}
.yb2_c00164{bottom:910.853333pt;}
.yba_c00164{bottom:919.293333pt;}
.y42_c00164{bottom:920.066667pt;}
.y43_c00164{bottom:920.826667pt;}
.y45_c00164{bottom:921.600000pt;}
.yb8_c00164{bottom:925.440000pt;}
.y44_c00164{bottom:926.213333pt;}
.yb9_c00164{bottom:927.746667pt;}
.yaf_c00164{bottom:929.280000pt;}
.ybd_c00164{bottom:932.346667pt;}
.y3f_c00164{bottom:938.493333pt;}
.y41_c00164{bottom:940.026667pt;}
.yad_c00164{bottom:942.333333pt;}
.y3e_c00164{bottom:943.106667pt;}
.y40_c00164{bottom:944.640000pt;}
.yae_c00164{bottom:946.173333pt;}
.yac_c00164{bottom:946.946667pt;}
.yab_c00164{bottom:949.253333pt;}
.yb7_c00164{bottom:953.853333pt;}
.y3a_c00164{bottom:956.933333pt;}
.y3c_c00164{bottom:958.466667pt;}
.ya9_c00164{bottom:960.000000pt;}
.y39_c00164{bottom:960.773333pt;}
.y3b_c00164{bottom:961.533333pt;}
.y3d_c00164{bottom:963.066667pt;}
.yaa_c00164{bottom:963.840000pt;}
.ya8_c00164{bottom:964.613333pt;}
.ya7_c00164{bottom:965.373333pt;}
.y35_c00164{bottom:974.586667pt;}
.y34_c00164{bottom:976.133333pt;}
.ya6_c00164{bottom:978.426667pt;}
.y36_c00164{bottom:979.200000pt;}
.y37_c00164{bottom:979.973333pt;}
.y38_c00164{bottom:981.506667pt;}
.ya4_c00164{bottom:982.266667pt;}
.ya5_c00164{bottom:983.813333pt;}
.y33_c00164{bottom:984.573333pt;}
.y30_c00164{bottom:993.786667pt;}
.y32_c00164{bottom:995.333333pt;}
.ya3_c00164{bottom:996.093333pt;}
.ya2_c00164{bottom:999.933333pt;}
.y31_c00164{bottom:1006.080000pt;}
.y2c_c00164{bottom:1010.693333pt;}
.y2e_c00164{bottom:1012.986667pt;}
.ya1_c00164{bottom:1013.760000pt;}
.y2d_c00164{bottom:1016.066667pt;}
.y2f_c00164{bottom:1016.826667pt;}
.ya0_c00164{bottom:1017.600000pt;}
.y9f_c00164{bottom:1018.373333pt;}
.y2a_c00164{bottom:1030.653333pt;}
.y9b_c00164{bottom:1032.186667pt;}
.y27_c00164{bottom:1032.960000pt;}
.y9c_c00164{bottom:1033.733333pt;}
.y2b_c00164{bottom:1035.266667pt;}
.y9e_c00164{bottom:1036.026667pt;}
.y26_c00164{bottom:1037.573333pt;}
.y29_c00164{bottom:1039.866667pt;}
.y9d_c00164{bottom:1040.640000pt;}
.y9a_c00164{bottom:1042.173333pt;}
.y28_c00164{bottom:1045.253333pt;}
.y21_c00164{bottom:1046.786667pt;}
.y98_c00164{bottom:1049.853333pt;}
.y22_c00164{bottom:1051.386667pt;}
.y25_c00164{bottom:1052.160000pt;}
.y23_c00164{bottom:1052.933333pt;}
.y24_c00164{bottom:1053.693333pt;}
.y99_c00164{bottom:1054.466667pt;}
.y20_c00164{bottom:1065.213333pt;}
.y94_c00164{bottom:1066.746667pt;}
.y93_c00164{bottom:1068.293333pt;}
.y96_c00164{bottom:1069.826667pt;}
.y95_c00164{bottom:1072.133333pt;}
.y97_c00164{bottom:1072.893333pt;}
.y1d_c00164{bottom:1084.413333pt;}
.y1f_c00164{bottom:1085.186667pt;}
.y90_c00164{bottom:1085.946667pt;}
.y1b_c00164{bottom:1086.720000pt;}
.y1c_c00164{bottom:1087.493333pt;}
.y92_c00164{bottom:1088.253333pt;}
.y1e_c00164{bottom:1089.026667pt;}
.y91_c00164{bottom:1090.560000pt;}
.y18_c00164{bottom:1101.306667pt;}
.y8c_c00164{bottom:1103.613333pt;}
.y17_c00164{bottom:1104.386667pt;}
.y8e_c00164{bottom:1105.146667pt;}
.y19_c00164{bottom:1105.920000pt;}
.y1a_c00164{bottom:1107.453333pt;}
.y8f_c00164{bottom:1108.226667pt;}
.y8b_c00164{bottom:1114.373333pt;}
.y8d_c00164{bottom:1118.213333pt;}
.yb6_c00164{bottom:1119.746667pt;}
.y15_c00164{bottom:1120.506667pt;}
.yb5_c00164{bottom:1121.280000pt;}
.y87_c00164{bottom:1122.813333pt;}
.y14_c00164{bottom:1123.586667pt;}
.y8a_c00164{bottom:1125.120000pt;}
.y16_c00164{bottom:1125.893333pt;}
.y88_c00164{bottom:1126.653333pt;}
.y89_c00164{bottom:1127.426667pt;}
.y10_c00164{bottom:1136.640000pt;}
.y12_c00164{bottom:1138.173333pt;}
.ya_c00164{bottom:1139.706667pt;}
.y85_c00164{bottom:1140.480000pt;}
.yf_c00164{bottom:1141.253333pt;}
.y11_c00164{bottom:1142.013333pt;}
.y13_c00164{bottom:1142.786667pt;}
.y86_c00164{bottom:1144.320000pt;}
.y84_c00164{bottom:1145.093333pt;}
.yd_c00164{bottom:1156.613333pt;}
.y81_c00164{bottom:1158.146667pt;}
.yc_c00164{bottom:1158.906667pt;}
.yb_c00164{bottom:1159.680000pt;}
.y83_c00164{bottom:1160.453333pt;}
.ye_c00164{bottom:1161.213333pt;}
.y80_c00164{bottom:1162.746667pt;}
.y7f_c00164{bottom:1163.520000pt;}
.y7e_c00164{bottom:1165.826667pt;}
.y82_c00164{bottom:1166.586667pt;}
.y7a_c00164{bottom:1176.573333pt;}
.y7d_c00164{bottom:1177.346667pt;}
.y79_c00164{bottom:1180.413333pt;}
.y7b_c00164{bottom:1181.186667pt;}
.y7c_c00164{bottom:1181.946667pt;}
.y9_c00164{bottom:1199.613333pt;}
.y8_c00164{bottom:1210.373333pt;}
.y7_c00164{bottom:1217.280000pt;}
.y6_c00164{bottom:1235.706667pt;}
.y2_c00164{bottom:1238.786667pt;}
.y3_c00164{bottom:1241.093333pt;}
.y4_c00164{bottom:1241.853333pt;}
.y5_c00164{bottom:1242.626667pt;}
.y1_c00164{bottom:1248.773333pt;}
.h9_c00164{height:2.764500pt;}
.hf_c00164{height:4.799479pt;}
.h14_c00164{height:5.519401pt;}
.h15_c00164{height:8.303099pt;}
.h1d_c00164{height:8.321432pt;}
.h19_c00164{height:11.038802pt;}
.h1b_c00164{height:13.822500pt;}
.h17_c00164{height:16.606198pt;}
.h3_c00164{height:19.341901pt;}
.hc_c00164{height:22.125599pt;}
.h2_c00164{height:24.861302pt;}
.hb_c00164{height:27.645000pt;}
.h7_c00164{height:30.428698pt;}
.h1c_c00164{height:33.164401pt;}
.h1a_c00164{height:35.948099pt;}
.h13_c00164{height:38.683802pt;}
.he_c00164{height:41.467500pt;}
.h8_c00164{height:44.251198pt;}
.h11_c00164{height:46.986901pt;}
.h1e_c00164{height:47.291198pt;}
.h4_c00164{height:49.770599pt;}
.h5_c00164{height:52.506302pt;}
.h10_c00164{height:55.290000pt;}
.hd_c00164{height:58.073698pt;}
.h6_c00164{height:60.809401pt;}
.h12_c00164{height:63.593099pt;}
.h16_c00164{height:66.328802pt;}
.h18_c00164{height:69.112500pt;}
.ha_c00164{height:110.580000pt;}
.h0_c00164{height:1353.986667pt;}
.h1_c00164{height:1354.000000pt;}
.w0_c00164{width:984.573333pt;}
.w1_c00164{width:984.666667pt;}
.x0_c00164{left:0.000000pt;}
.x2e_c00164{left:200.453333pt;}
.x41_c00164{left:209.666667pt;}
.x45_c00164{left:215.040000pt;}
.x4c_c00164{left:216.573333pt;}
.x29_c00164{left:218.880000pt;}
.xc_c00164{left:220.413333pt;}
.x2b_c00164{left:221.946667pt;}
.x2d_c00164{left:229.626667pt;}
.x44_c00164{left:234.240000pt;}
.x1e_c00164{left:235.773333pt;}
.x25_c00164{left:237.306667pt;}
.x3c_c00164{left:238.853333pt;}
.x32_c00164{left:240.386667pt;}
.x19_c00164{left:243.453333pt;}
.xd_c00164{left:249.600000pt;}
.x3d_c00164{left:261.120000pt;}
.x13_c00164{left:265.733333pt;}
.xe_c00164{left:275.706667pt;}
.x48_c00164{left:281.853333pt;}
.x2_c00164{left:287.226667pt;}
.x3f_c00164{left:288.773333pt;}
.x3e_c00164{left:295.680000pt;}
.xf_c00164{left:298.746667pt;}
.x1f_c00164{left:301.826667pt;}
.x38_c00164{left:303.360000pt;}
.x1a_c00164{left:305.666667pt;}
.x3a_c00164{left:307.200000pt;}
.x46_c00164{left:316.413333pt;}
.x2f_c00164{left:324.093333pt;}
.xa_c00164{left:327.933333pt;}
.x2c_c00164{left:334.080000pt;}
.x4e_c00164{left:337.920000pt;}
.x1b_c00164{left:340.226667pt;}
.xb_c00164{left:341.760000pt;}
.x17_c00164{left:344.826667pt;}
.x34_c00164{left:350.973333pt;}
.x49_c00164{left:353.280000pt;}
.x33_c00164{left:354.813333pt;}
.x14_c00164{left:360.186667pt;}
.x2a_c00164{left:364.800000pt;}
.x26_c00164{left:366.333333pt;}
.x4f_c00164{left:367.866667pt;}
.x42_c00164{left:369.413333pt;}
.x47_c00164{left:370.946667pt;}
.x20_c00164{left:377.093333pt;}
.x35_c00164{left:382.466667pt;}
.x15_c00164{left:393.213333pt;}
.x3b_c00164{left:396.293333pt;}
.x10_c00164{left:397.826667pt;}
.x21_c00164{left:401.666667pt;}
.x36_c00164{left:407.040000pt;}
.x22_c00164{left:422.400000pt;}
.x16_c00164{left:425.466667pt;}
.x27_c00164{left:432.386667pt;}
.x4a_c00164{left:438.533333pt;}
.x1c_c00164{left:441.600000pt;}
.x4d_c00164{left:443.133333pt;}
.x30_c00164{left:445.440000pt;}
.x3_c00164{left:447.746667pt;}
.x23_c00164{left:450.053333pt;}
.x40_c00164{left:456.186667pt;}
.x18_c00164{left:457.733333pt;}
.x39_c00164{left:459.266667pt;}
.x1d_c00164{left:460.800000pt;}
.x11_c00164{left:462.333333pt;}
.x4_c00164{left:464.640000pt;}
.x28_c00164{left:466.946667pt;}
.x24_c00164{left:470.786667pt;}
.x37_c00164{left:473.853333pt;}
.x4b_c00164{left:477.693333pt;}
.x31_c00164{left:480.000000pt;}
.x12_c00164{left:482.306667pt;}
.x5_c00164{left:490.746667pt;}
.x43_c00164{left:494.586667pt;}
.xad_c00164{left:499.200000pt;}
.x79_c00164{left:503.813333pt;}
.x69_c00164{left:505.346667pt;}
.x9f_c00164{left:506.880000pt;}
.x7a_c00164{left:508.413333pt;}
.x5e_c00164{left:511.493333pt;}
.x50_c00164{left:513.786667pt;}
.x57_c00164{left:516.093333pt;}
.x6_c00164{left:519.173333pt;}
.x9a_c00164{left:523.773333pt;}
.x8d_c00164{left:526.853333pt;}
.x58_c00164{left:530.693333pt;}
.xa4_c00164{left:534.533333pt;}
.x7_c00164{left:539.906667pt;}
.x5f_c00164{left:542.973333pt;}
.x9c_c00164{left:558.333333pt;}
.x80_c00164{left:559.866667pt;}
.x59_c00164{left:562.946667pt;}
.x64_c00164{left:568.320000pt;}
.x8e_c00164{left:570.626667pt;}
.x60_c00164{left:573.693333pt;}
.x6a_c00164{left:576.773333pt;}
.x5a_c00164{left:578.306667pt;}
.x7b_c00164{left:580.613333pt;}
.x84_c00164{left:582.906667pt;}
.x65_c00164{left:584.453333pt;}
.x51_c00164{left:587.520000pt;}
.x8f_c00164{left:589.053333pt;}
.xa8_c00164{left:591.360000pt;}
.x6f_c00164{left:593.666667pt;}
.x9d_c00164{left:599.040000pt;}
.x97_c00164{left:602.880000pt;}
.x87_c00164{left:606.720000pt;}
.xab_c00164{left:612.093739pt;}
.xae_c00164{left:614.400000pt;}
.x88_c00164{left:620.547072pt;}
.x61_c00164{left:622.080000pt;}
.x72_c00164{left:627.453333pt;}
.x66_c00164{left:631.293333pt;}
.xa6_c00164{left:632.826667pt;}
.x85_c00164{left:634.373333pt;}
.x95_c00164{left:635.906667pt;}
.x7c_c00164{left:641.280000pt;}
.x9_c00164{left:644.346667pt;}
.x67_c00164{left:646.653333pt;}
.x52_c00164{left:648.960000pt;}
.x5b_c00164{left:651.266667pt;}
.xa9_c00164{left:652.800000pt;}
.x8_c00164{left:655.106667pt;}
.x6b_c00164{left:656.640000pt;}
.x77_c00164{left:659.706667pt;}
.x53_c00164{left:664.320000pt;}
.x86_c00164{left:667.386667pt;}
.x81_c00164{left:670.466667pt;}
.x6c_c00164{left:673.533333pt;}
.x73_c00164{left:675.840000pt;}
.x89_c00164{left:678.146667pt;}
.x98_c00164{left:680.453333pt;}
.x70_c00164{left:683.520000pt;}
.x9e_c00164{left:686.586667pt;}
.x99_c00164{left:695.813333pt;}
.x8a_c00164{left:699.653333pt;}
.xa0_c00164{left:705.026667pt;}
.x5c_c00164{left:708.866667pt;}
.x9b_c00164{left:711.933333pt;}
.x74_c00164{left:715.773333pt;}
.xa7_c00164{left:719.613333pt;}
.x54_c00164{left:721.920000pt;}
.x75_c00164{left:723.453333pt;}
.x1_c00164{left:725.760000pt;}
.x7d_c00164{left:731.906667pt;}
.xa3_c00164{left:734.213333pt;}
.x82_c00164{left:736.506667pt;}
.x78_c00164{left:738.053333pt;}
.x7e_c00164{left:740.346667pt;}
.x76_c00164{left:742.653333pt;}
.x55_c00164{left:745.733333pt;}
.x6d_c00164{left:748.800000pt;}
.x62_c00164{left:751.106667pt;}
.x5d_c00164{left:752.640000pt;}
.xaa_c00164{left:754.946667pt;}
.x8b_c00164{left:756.480000pt;}
.x83_c00164{left:758.786667pt;}
.x56_c00164{left:760.320000pt;}
.x71_c00164{left:763.386667pt;}
.x96_c00164{left:768.000000pt;}
.xac_c00164{left:769.533333pt;}
.x6e_c00164{left:771.840000pt;}
.x7f_c00164{left:773.373333pt;}
.x63_c00164{left:774.906667pt;}
.xaf_c00164{left:781.826667pt;}
.x8c_c00164{left:783.360000pt;}
.xa5_c00164{left:784.893333pt;}
.x68_c00164{left:791.813333pt;}
.x93_c00164{left:794.880000pt;}
.x92_c00164{left:833.280000pt;}
.x90_c00164{left:853.253333pt;}
.x91_c00164{left:866.306667pt;}
.xa1_c00164{left:880.893333pt;}
.xa2_c00164{left:920.826667pt;}
.xb0_c00164{left:938.493333pt;}
.xb1_c00164{left:948.480000pt;}
.x94_c00164{left:972.293333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e3b877a77e4b9c79293d3b7a.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.109863;font-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_c00165{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);}
.m0_c00165{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c00165{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);}
.m2_c00165{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3_c00165{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,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;}
.fs3_c00165{font-size:6.900000px;}
.fs2_c00165{font-size:10.380000px;}
.fs4_c00165{font-size:13.800000px;}
.fs0_c00165{font-size:124.440000px;}
.fs1_c00165{font-size:162.420000px;}
.y0_c00165{bottom:0.000000px;}
.y3_c00165{bottom:898.560000px;}
.y1_c00165{bottom:902.010000px;}
.y2_c00165{bottom:902.880000px;}
.h5_c00165{height:6.209326px;}
.h4_c00165{height:9.340986px;}
.h6_c00165{height:12.418652px;}
.h2_c00165{height:111.983848px;}
.h3_c00165{height:146.162139px;}
.h1_c00165{height:1503.000000px;}
.h0_c00165{height:1503.360000px;}
.w0_c00165{width:1094.685000px;}
.w1_c00165{width:1095.000000px;}
.x0_c00165{left:0.000000px;}
.x1_c00165{left:239.325000px;}
.x3_c00165{left:403.485000px;}
.x2_c00165{left:476.070000px;}
.x4_c00165{left:571.965000px;}
.x5_c00165{left:616.035000px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls0_c00165{letter-spacing:0.000000pt;}
.ws0_c00165{word-spacing:0.000000pt;}
.fs3_c00165{font-size:6.133333pt;}
.fs2_c00165{font-size:9.226667pt;}
.fs4_c00165{font-size:12.266667pt;}
.fs0_c00165{font-size:110.613333pt;}
.fs1_c00165{font-size:144.373333pt;}
.y0_c00165{bottom:0.000000pt;}
.y3_c00165{bottom:798.720000pt;}
.y1_c00165{bottom:801.786667pt;}
.y2_c00165{bottom:802.560000pt;}
.h5_c00165{height:5.519401pt;}
.h4_c00165{height:8.303099pt;}
.h6_c00165{height:11.038802pt;}
.h2_c00165{height:99.541198pt;}
.h3_c00165{height:129.921901pt;}
.h1_c00165{height:1336.000000pt;}
.h0_c00165{height:1336.320000pt;}
.w0_c00165{width:973.053333pt;}
.w1_c00165{width:973.333333pt;}
.x0_c00165{left:0.000000pt;}
.x1_c00165{left:212.733333pt;}
.x3_c00165{left:358.653333pt;}
.x2_c00165{left:423.173333pt;}
.x4_c00165{left:508.413333pt;}
.x5_c00165{left:547.586667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1015c6bad5f6b1d632704866.woff2')format("woff");}.ff1_c00166{font-family:ff1_c00166;line-height:1.109863;font-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_c00166{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m31_c00166{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m12_c00166{transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);}
.m25_c00166{transform:matrix(0.088700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088700,0.000000,0.000000,0.250000,0,0);}
.m18_c00166{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.m38_c00166{transform:matrix(0.091375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091375,0.000000,0.000000,0.250000,0,0);}
.ma_c00166{transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);}
.m28_c00166{transform:matrix(0.099200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099200,0.000000,0.000000,0.250000,0,0);}
.m1e_c00166{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.m27_c00166{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m1_c00166{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00166{transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);}
.m32_c00166{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.m24_c00166{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m2d_c00166{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m2b_c00166{transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);}
.m3b_c00166{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m29_c00166{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);}
.m33_c00166{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.m1b_c00166{transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);}
.m2f_c00166{transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);}
.m3a_c00166{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m2e_c00166{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m17_c00166{transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);}
.m19_c00166{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m22_c00166{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.m30_c00166{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m10_c00166{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.m23_c00166{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.m35_c00166{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);}
.m8_c00166{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);}
.m1d_c00166{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.m34_c00166{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m39_c00166{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m36_c00166{transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);}
.me_c00166{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.md_c00166{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m11_c00166{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);}
.m1c_c00166{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);}
.m1a_c00166{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);}
.m2c_c00166{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.mb_c00166{transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);}
.m14_c00166{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.m16_c00166{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m15_c00166{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);}
.mf_c00166{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);}
.m1f_c00166{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c00166{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c00166{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);}
.mc_c00166{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2_c00166{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c00166{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c00166{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m37_c00166{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3_c00166{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m4_c00166{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m26_c00166{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m9_c00166{transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);}
.m21_c00166{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m20_c00166{transform:matrix(1.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.515000,0.000000,0.000000,0.250000,0,0);}
.v0_c00166{vertical-align:0.000000px;}
.v1_c00166{vertical-align:17.280000px;}
.ls2_c00166{letter-spacing:0.000000px;}
.ls1_c00166{letter-spacing:23.445000px;}
.ls0_c00166{letter-spacing:312.266593px;}
.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;}
.fs5_c00166{font-size:3.456000px;}
.fs8_c00166{font-size:6.000000px;}
.fs17_c00166{font-size:6.900000px;}
.fs0_c00166{font-size:10.380000px;}
.fs6_c00166{font-size:13.800000px;}
.fs1_c00166{font-size:17.280000px;}
.fs3_c00166{font-size:20.760000px;}
.fs7_c00166{font-size:24.180000px;}
.fs2_c00166{font-size:27.660000px;}
.fs4_c00166{font-size:34.560000px;}
.fs14_c00166{font-size:48.360000px;}
.fsd_c00166{font-size:69.120000px;}
.fse_c00166{font-size:72.600000px;}
.fs16_c00166{font-size:79.500000px;}
.fs11_c00166{font-size:86.400000px;}
.fsf_c00166{font-size:96.780000px;}
.fs12_c00166{font-size:100.200000px;}
.fsa_c00166{font-size:103.680000px;}
.fsc_c00166{font-size:107.160000px;}
.fs15_c00166{font-size:110.580000px;}
.fs1c_c00166{font-size:114.060000px;}
.fs19_c00166{font-size:117.480000px;}
.fs10_c00166{font-size:120.960000px;}
.fs18_c00166{font-size:124.440000px;}
.fs9_c00166{font-size:127.860000px;}
.fsb_c00166{font-size:134.760000px;}
.fs13_c00166{font-size:138.240000px;}
.fs1b_c00166{font-size:145.140000px;}
.fs1a_c00166{font-size:152.040000px;}
.y0_c00166{bottom:0.000000px;}
.y37_c00166{bottom:660.960000px;}
.y39_c00166{bottom:661.830000px;}
.y38_c00166{bottom:662.685000px;}
.y36_c00166{bottom:672.195000px;}
.y33_c00166{bottom:694.650000px;}
.y34_c00166{bottom:695.520000px;}
.y35_c00166{bottom:699.840000px;}
.y32_c00166{bottom:715.395000px;}
.y31_c00166{bottom:737.850000px;}
.y30_c00166{bottom:739.590000px;}
.y2e_c00166{bottom:740.445000px;}
.y2f_c00166{bottom:743.040000px;}
.y2d_c00166{bottom:768.960000px;}
.y29_c00166{bottom:772.410000px;}
.y2a_c00166{bottom:773.280000px;}
.y2c_c00166{bottom:775.005000px;}
.y2b_c00166{bottom:775.875000px;}
.y27_c00166{bottom:813.030000px;}
.y28_c00166{bottom:814.755000px;}
.y25_c00166{bottom:816.480000px;}
.y26_c00166{bottom:817.350000px;}
.y24_c00166{bottom:818.205000px;}
.y23_c00166{bottom:832.890000px;}
.y22_c00166{bottom:848.445000px;}
.y1d_c00166{bottom:851.910000px;}
.y1e_c00166{bottom:855.360000px;}
.y21_c00166{bottom:856.230000px;}
.y20_c00166{bottom:857.085000px;}
.y1f_c00166{bottom:858.810000px;}
.y1c_c00166{bottom:862.275000px;}
.y1b_c00166{bottom:865.725000px;}
.y14_c00166{bottom:955.590000px;}
.y16_c00166{bottom:957.315000px;}
.y12_c00166{bottom:959.910000px;}
.y13_c00166{bottom:961.635000px;}
.y11_c00166{bottom:962.490000px;}
.y15_c00166{bottom:970.275000px;}
.y17_c00166{bottom:973.725000px;}
.yf_c00166{bottom:991.005000px;}
.y10_c00166{bottom:991.875000px;}
.ye_c00166{bottom:992.730000px;}
.ya_c00166{bottom:1024.710000px;}
.yc_c00166{bottom:1025.565000px;}
.yd_c00166{bottom:1027.290000px;}
.yb_c00166{bottom:1034.205000px;}
.y6_c00166{bottom:1035.075000px;}
.y7_c00166{bottom:1035.930000px;}
.y9_c00166{bottom:1036.800000px;}
.y8_c00166{bottom:1039.395000px;}
.y1a_c00166{bottom:1094.685000px;}
.y19_c00166{bottom:1158.630000px;}
.y18_c00166{bottom:1171.590000px;}
.y5_c00166{bottom:1233.795000px;}
.y1_c00166{bottom:1265.760000px;}
.y3_c00166{bottom:1267.485000px;}
.y2_c00166{bottom:1268.355000px;}
.y4_c00166{bottom:1365.120000px;}
.h8_c00166{height:3.110063px;}
.hb_c00166{height:5.399414px;}
.h1a_c00166{height:6.209326px;}
.h2_c00166{height:9.340986px;}
.h9_c00166{height:12.418652px;}
.h4_c00166{height:15.550313px;}
.h6_c00166{height:18.681973px;}
.ha_c00166{height:21.759639px;}
.h5_c00166{height:24.891299px;}
.h3_c00166{height:26.620986px;}
.h7_c00166{height:31.100625px;}
.h17_c00166{height:43.519277px;}
.h10_c00166{height:62.201250px;}
.h11_c00166{height:65.332910px;}
.h19_c00166{height:71.542236px;}
.h14_c00166{height:77.751563px;}
.h12_c00166{height:87.092549px;}
.h15_c00166{height:90.170215px;}
.hd_c00166{height:93.301875px;}
.hf_c00166{height:96.433535px;}
.h18_c00166{height:99.511201px;}
.h1f_c00166{height:102.642861px;}
.h1c_c00166{height:105.720527px;}
.h13_c00166{height:108.852188px;}
.h1b_c00166{height:111.983848px;}
.hc_c00166{height:115.061514px;}
.he_c00166{height:121.270840px;}
.h16_c00166{height:124.402500px;}
.h1e_c00166{height:130.611826px;}
.h1d_c00166{height:136.821152px;}
.h0_c00166{height:1523.235000px;}
.h1_c00166{height:1523.250000px;}
.w0_c00166{width:1107.645000px;}
.w1_c00166{width:1107.750000px;}
.x0_c00166{left:0.000000px;}
.x7_c00166{left:216.000000px;}
.xf_c00166{left:230.685000px;}
.x13_c00166{left:235.005000px;}
.x14_c00166{left:259.200000px;}
.x15_c00166{left:287.715000px;}
.x20_c00166{left:293.760000px;}
.x39_c00166{left:296.355000px;}
.x21_c00166{left:303.270000px;}
.x2f_c00166{left:306.720000px;}
.x22_c00166{left:312.765000px;}
.x6_c00166{left:343.005000px;}
.x34_c00166{left:347.325000px;}
.x2b_c00166{left:352.515000px;}
.x35_c00166{left:356.835000px;}
.x3e_c00166{left:359.430000px;}
.x23_c00166{left:362.880000px;}
.x30_c00166{left:379.290000px;}
.xa_c00166{left:395.715000px;}
.x3a_c00166{left:398.310000px;}
.x16_c00166{left:404.355000px;}
.x10_c00166{left:428.550000px;}
.x24_c00166{left:448.410000px;}
.x31_c00166{left:458.790000px;}
.x3f_c00166{left:463.110000px;}
.x28_c00166{left:476.070000px;}
.x3b_c00166{left:480.390000px;}
.x2c_c00166{left:497.670000px;}
.x40_c00166{left:501.990000px;}
.x32_c00166{left:519.270000px;}
.x17_c00166{left:523.590000px;}
.x1f_c00166{left:526.170000px;}
.x18_c00166{left:530.490000px;}
.x3c_c00166{left:545.190000px;}
.x36_c00166{left:551.235000px;}
.x19_c00166{left:557.280000px;}
.x41_c00166{left:565.050000px;}
.x11_c00166{left:570.240000px;}
.xb_c00166{left:581.475000px;}
.x25_c00166{left:615.165000px;}
.x3d_c00166{left:622.080000px;}
.x2d_c00166{left:632.445000px;}
.x33_c00166{left:636.765000px;}
.xc_c00166{left:649.724625px;}
.xd_c00166{left:660.090000px;}
.x1_c00166{left:665.280000px;}
.x2_c00166{left:671.325000px;}
.xe_c00166{left:681.690000px;}
.x26_c00166{left:692.070000px;}
.x1a_c00166{left:707.610000px;}
.x37_c00166{left:709.350000px;}
.x2e_c00166{left:718.845000px;}
.x3_c00166{left:724.890000px;}
.x1b_c00166{left:733.530000px;}
.x8_c00166{left:740.445000px;}
.x29_c00166{left:748.230000px;}
.x38_c00166{left:750.810000px;}
.x27_c00166{left:761.190000px;}
.x2a_c00166{left:763.770000px;}
.x12_c00166{left:779.325000px;}
.x1c_c00166{left:838.080000px;}
.x1d_c00166{left:875.235000px;}
.x1e_c00166{left:881.280000px;}
.x9_c00166{left:906.330000px;}
.x5_c00166{left:1009.155000px;}
.x4_c00166{left:1063.590000px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.v1_c00166{vertical-align:15.360000pt;}
.ls2_c00166{letter-spacing:0.000000pt;}
.ls1_c00166{letter-spacing:20.840000pt;}
.ls0_c00166{letter-spacing:277.570305pt;}
.ws0_c00166{word-spacing:0.000000pt;}
.fs5_c00166{font-size:3.072000pt;}
.fs8_c00166{font-size:5.333333pt;}
.fs17_c00166{font-size:6.133333pt;}
.fs0_c00166{font-size:9.226667pt;}
.fs6_c00166{font-size:12.266667pt;}
.fs1_c00166{font-size:15.360000pt;}
.fs3_c00166{font-size:18.453333pt;}
.fs7_c00166{font-size:21.493333pt;}
.fs2_c00166{font-size:24.586667pt;}
.fs4_c00166{font-size:30.720000pt;}
.fs14_c00166{font-size:42.986667pt;}
.fsd_c00166{font-size:61.440000pt;}
.fse_c00166{font-size:64.533333pt;}
.fs16_c00166{font-size:70.666667pt;}
.fs11_c00166{font-size:76.800000pt;}
.fsf_c00166{font-size:86.026667pt;}
.fs12_c00166{font-size:89.066667pt;}
.fsa_c00166{font-size:92.160000pt;}
.fsc_c00166{font-size:95.253333pt;}
.fs15_c00166{font-size:98.293333pt;}
.fs1c_c00166{font-size:101.386667pt;}
.fs19_c00166{font-size:104.426667pt;}
.fs10_c00166{font-size:107.520000pt;}
.fs18_c00166{font-size:110.613333pt;}
.fs9_c00166{font-size:113.653333pt;}
.fsb_c00166{font-size:119.786667pt;}
.fs13_c00166{font-size:122.880000pt;}
.fs1b_c00166{font-size:129.013333pt;}
.fs1a_c00166{font-size:135.146667pt;}
.y0_c00166{bottom:0.000000pt;}
.y37_c00166{bottom:587.520000pt;}
.y39_c00166{bottom:588.293333pt;}
.y38_c00166{bottom:589.053333pt;}
.y36_c00166{bottom:597.506667pt;}
.y33_c00166{bottom:617.466667pt;}
.y34_c00166{bottom:618.240000pt;}
.y35_c00166{bottom:622.080000pt;}
.y32_c00166{bottom:635.906667pt;}
.y31_c00166{bottom:655.866667pt;}
.y30_c00166{bottom:657.413333pt;}
.y2e_c00166{bottom:658.173333pt;}
.y2f_c00166{bottom:660.480000pt;}
.y2d_c00166{bottom:683.520000pt;}
.y29_c00166{bottom:686.586667pt;}
.y2a_c00166{bottom:687.360000pt;}
.y2c_c00166{bottom:688.893333pt;}
.y2b_c00166{bottom:689.666667pt;}
.y27_c00166{bottom:722.693333pt;}
.y28_c00166{bottom:724.226667pt;}
.y25_c00166{bottom:725.760000pt;}
.y26_c00166{bottom:726.533333pt;}
.y24_c00166{bottom:727.293333pt;}
.y23_c00166{bottom:740.346667pt;}
.y22_c00166{bottom:754.173333pt;}
.y1d_c00166{bottom:757.253333pt;}
.y1e_c00166{bottom:760.320000pt;}
.y21_c00166{bottom:761.093333pt;}
.y20_c00166{bottom:761.853333pt;}
.y1f_c00166{bottom:763.386667pt;}
.y1c_c00166{bottom:766.466667pt;}
.y1b_c00166{bottom:769.533333pt;}
.y14_c00166{bottom:849.413333pt;}
.y16_c00166{bottom:850.946667pt;}
.y12_c00166{bottom:853.253333pt;}
.y13_c00166{bottom:854.786667pt;}
.y11_c00166{bottom:855.546667pt;}
.y15_c00166{bottom:862.466667pt;}
.y17_c00166{bottom:865.533333pt;}
.yf_c00166{bottom:880.893333pt;}
.y10_c00166{bottom:881.666667pt;}
.ye_c00166{bottom:882.426667pt;}
.ya_c00166{bottom:910.853333pt;}
.yc_c00166{bottom:911.613333pt;}
.yd_c00166{bottom:913.146667pt;}
.yb_c00166{bottom:919.293333pt;}
.y6_c00166{bottom:920.066667pt;}
.y7_c00166{bottom:920.826667pt;}
.y9_c00166{bottom:921.600000pt;}
.y8_c00166{bottom:923.906667pt;}
.y1a_c00166{bottom:973.053333pt;}
.y19_c00166{bottom:1029.893333pt;}
.y18_c00166{bottom:1041.413333pt;}
.y5_c00166{bottom:1096.706667pt;}
.y1_c00166{bottom:1125.120000pt;}
.y3_c00166{bottom:1126.653333pt;}
.y2_c00166{bottom:1127.426667pt;}
.y4_c00166{bottom:1213.440000pt;}
.h8_c00166{height:2.764500pt;}
.hb_c00166{height:4.799479pt;}
.h1a_c00166{height:5.519401pt;}
.h2_c00166{height:8.303099pt;}
.h9_c00166{height:11.038802pt;}
.h4_c00166{height:13.822500pt;}
.h6_c00166{height:16.606198pt;}
.ha_c00166{height:19.341901pt;}
.h5_c00166{height:22.125599pt;}
.h3_c00166{height:23.663099pt;}
.h7_c00166{height:27.645000pt;}
.h17_c00166{height:38.683802pt;}
.h10_c00166{height:55.290000pt;}
.h11_c00166{height:58.073698pt;}
.h19_c00166{height:63.593099pt;}
.h14_c00166{height:69.112500pt;}
.h12_c00166{height:77.415599pt;}
.h15_c00166{height:80.151302pt;}
.hd_c00166{height:82.935000pt;}
.hf_c00166{height:85.718698pt;}
.h18_c00166{height:88.454401pt;}
.h1f_c00166{height:91.238099pt;}
.h1c_c00166{height:93.973802pt;}
.h13_c00166{height:96.757500pt;}
.h1b_c00166{height:99.541198pt;}
.hc_c00166{height:102.276901pt;}
.he_c00166{height:107.796302pt;}
.h16_c00166{height:110.580000pt;}
.h1e_c00166{height:116.099401pt;}
.h1d_c00166{height:121.618802pt;}
.h0_c00166{height:1353.986667pt;}
.h1_c00166{height:1354.000000pt;}
.w0_c00166{width:984.573333pt;}
.w1_c00166{width:984.666667pt;}
.x0_c00166{left:0.000000pt;}
.x7_c00166{left:192.000000pt;}
.xf_c00166{left:205.053333pt;}
.x13_c00166{left:208.893333pt;}
.x14_c00166{left:230.400000pt;}
.x15_c00166{left:255.746667pt;}
.x20_c00166{left:261.120000pt;}
.x39_c00166{left:263.426667pt;}
.x21_c00166{left:269.573333pt;}
.x2f_c00166{left:272.640000pt;}
.x22_c00166{left:278.013333pt;}
.x6_c00166{left:304.893333pt;}
.x34_c00166{left:308.733333pt;}
.x2b_c00166{left:313.346667pt;}
.x35_c00166{left:317.186667pt;}
.x3e_c00166{left:319.493333pt;}
.x23_c00166{left:322.560000pt;}
.x30_c00166{left:337.146667pt;}
.xa_c00166{left:351.746667pt;}
.x3a_c00166{left:354.053333pt;}
.x16_c00166{left:359.426667pt;}
.x10_c00166{left:380.933333pt;}
.x24_c00166{left:398.586667pt;}
.x31_c00166{left:407.813333pt;}
.x3f_c00166{left:411.653333pt;}
.x28_c00166{left:423.173333pt;}
.x3b_c00166{left:427.013333pt;}
.x2c_c00166{left:442.373333pt;}
.x40_c00166{left:446.213333pt;}
.x32_c00166{left:461.573333pt;}
.x17_c00166{left:465.413333pt;}
.x1f_c00166{left:467.706667pt;}
.x18_c00166{left:471.546667pt;}
.x3c_c00166{left:484.613333pt;}
.x36_c00166{left:489.986667pt;}
.x19_c00166{left:495.360000pt;}
.x41_c00166{left:502.266667pt;}
.x11_c00166{left:506.880000pt;}
.xb_c00166{left:516.866667pt;}
.x25_c00166{left:546.813333pt;}
.x3d_c00166{left:552.960000pt;}
.x2d_c00166{left:562.173333pt;}
.x33_c00166{left:566.013333pt;}
.xc_c00166{left:577.533000pt;}
.xd_c00166{left:586.746667pt;}
.x1_c00166{left:591.360000pt;}
.x2_c00166{left:596.733333pt;}
.xe_c00166{left:605.946667pt;}
.x26_c00166{left:615.173333pt;}
.x1a_c00166{left:628.986667pt;}
.x37_c00166{left:630.533333pt;}
.x2e_c00166{left:638.973333pt;}
.x3_c00166{left:644.346667pt;}
.x1b_c00166{left:652.026667pt;}
.x8_c00166{left:658.173333pt;}
.x29_c00166{left:665.093333pt;}
.x38_c00166{left:667.386667pt;}
.x27_c00166{left:676.613333pt;}
.x2a_c00166{left:678.906667pt;}
.x12_c00166{left:692.733333pt;}
.x1c_c00166{left:744.960000pt;}
.x1d_c00166{left:777.986667pt;}
.x1e_c00166{left:783.360000pt;}
.x9_c00166{left:805.626667pt;}
.x5_c00166{left:897.026667pt;}
.x4_c00166{left:945.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1687e13fddcc192af5f05825.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.109863;font-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_c00167{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m15d_c00167{transform:matrix(0.028850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028850,0.000000,0.000000,0.250000,0,0);}
.m46_c00167{transform:matrix(0.039150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039150,0.000000,0.000000,0.250000,0,0);}
.m136_c00167{transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);}
.m56_c00167{transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);}
.m182_c00167{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m152_c00167{transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);}
.m133_c00167{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m16e_c00167{transform:matrix(0.088550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088550,0.000000,0.000000,0.250000,0,0);}
.m170_c00167{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.mae_c00167{transform:matrix(0.091250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091250,0.000000,0.000000,0.250000,0,0);}
.md4_c00167{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m178_c00167{transform:matrix(0.096500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096500,0.000000,0.000000,0.250000,0,0);}
.m158_c00167{transform:matrix(0.096625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096625,0.000000,0.000000,0.250000,0,0);}
.m89_c00167{transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);}
.m15f_c00167{transform:matrix(0.100800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100800,0.000000,0.000000,0.250000,0,0);}
.m167_c00167{transform:matrix(0.101200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101200,0.000000,0.000000,0.250000,0,0);}
.m132_c00167{transform:matrix(0.104100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104100,0.000000,0.000000,0.250000,0,0);}
.m10a_c00167{transform:matrix(0.107600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107600,0.000000,0.000000,0.250000,0,0);}
.m12c_c00167{transform:matrix(0.108350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108350,0.000000,0.000000,0.250000,0,0);}
.mfc_c00167{transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);}
.m155_c00167{transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);}
.mb9_c00167{transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);}
.m11a_c00167{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m124_c00167{transform:matrix(0.111450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111450,0.000000,0.000000,0.250000,0,0);}
.m151_c00167{transform:matrix(0.111475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111475,0.000000,0.000000,0.250000,0,0);}
.m166_c00167{transform:matrix(0.111700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111700,0.000000,0.000000,0.250000,0,0);}
.m97_c00167{transform:matrix(0.112675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112675,0.000000,0.000000,0.250000,0,0);}
.m16c_c00167{transform:matrix(0.113325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113325,0.000000,0.000000,0.250000,0,0);}
.maa_c00167{transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);}
.mb1_c00167{transform:matrix(0.114025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114025,0.000000,0.000000,0.250000,0,0);}
.m16d_c00167{transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);}
.m159_c00167{transform:matrix(0.114675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114675,0.000000,0.000000,0.250000,0,0);}
.m109_c00167{transform:matrix(0.115125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115125,0.000000,0.000000,0.250000,0,0);}
.m10d_c00167{transform:matrix(0.115175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115175,0.000000,0.000000,0.250000,0,0);}
.m154_c00167{transform:matrix(0.117850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117850,0.000000,0.000000,0.250000,0,0);}
.m148_c00167{transform:matrix(0.118225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118225,0.000000,0.000000,0.250000,0,0);}
.m11d_c00167{transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);}
.m117_c00167{transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);}
.m174_c00167{transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);}
.m140_c00167{transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);}
.md7_c00167{transform:matrix(0.121625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121625,0.000000,0.000000,0.250000,0,0);}
.ma3_c00167{transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);}
.m138_c00167{transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);}
.m12d_c00167{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m9d_c00167{transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);}
.m125_c00167{transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);}
.m99_c00167{transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);}
.m16a_c00167{transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);}
.m131_c00167{transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);}
.mb7_c00167{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m141_c00167{transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);}
.m52_c00167{transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);}
.m48_c00167{transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);}
.m7c_c00167{transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);}
.mb3_c00167{transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);}
.m16b_c00167{transform:matrix(0.127775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127775,0.000000,0.000000,0.250000,0,0);}
.mb6_c00167{transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);}
.m11_c00167{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m173_c00167{transform:matrix(0.131100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131100,0.000000,0.000000,0.250000,0,0);}
.ma6_c00167{transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);}
.mcf_c00167{transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);}
.ma5_c00167{transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);}
.m14b_c00167{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);}
.m108_c00167{transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);}
.m12b_c00167{transform:matrix(0.134425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134425,0.000000,0.000000,0.250000,0,0);}
.m14c_c00167{transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);}
.m149_c00167{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.m10b_c00167{transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);}
.m103_c00167{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);}
.m3b_c00167{transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);}
.m94_c00167{transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);}
.m88_c00167{transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);}
.m9b_c00167{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m5a_c00167{transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);}
.m13c_c00167{transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);}
.m70_c00167{transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);}
.m2a_c00167{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.mcd_c00167{transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);}
.m135_c00167{transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);}
.m29_c00167{transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);}
.m163_c00167{transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);}
.m1_c00167{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m142_c00167{transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);}
.m81_c00167{transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);}
.m26_c00167{transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);}
.md0_c00167{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);}
.ma2_c00167{transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);}
.mf3_c00167{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m150_c00167{transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);}
.m123_c00167{transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);}
.m143_c00167{transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148000,0.000000,0.000000,0.250000,0,0);}
.m153_c00167{transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);}
.m13d_c00167{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m161_c00167{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);}
.m105_c00167{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);}
.m119_c00167{transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);}
.m91_c00167{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.m72_c00167{transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);}
.m137_c00167{transform:matrix(0.149575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149575,0.000000,0.000000,0.250000,0,0);}
.m183_c00167{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);}
.mac_c00167{transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);}
.m107_c00167{transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);}
.m75_c00167{transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);}
.m14f_c00167{transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);}
.m96_c00167{transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);}
.m12f_c00167{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);}
.m185_c00167{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);}
.m114_c00167{transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);}
.md9_c00167{transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);}
.m164_c00167{transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);}
.m17b_c00167{transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);}
.m146_c00167{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mb5_c00167{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.mce_c00167{transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);}
.m73_c00167{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);}
.m14e_c00167{transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);}
.m10e_c00167{transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);}
.m15a_c00167{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.m98_c00167{transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);}
.md2_c00167{transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);}
.m168_c00167{transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);}
.m77_c00167{transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);}
.m145_c00167{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);}
.m63_c00167{transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);}
.m3e_c00167{transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);}
.m51_c00167{transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);}
.mb0_c00167{transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);}
.m6d_c00167{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.m104_c00167{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.m13a_c00167{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.m113_c00167{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.m147_c00167{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.m1b_c00167{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.m16f_c00167{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.mf2_c00167{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m165_c00167{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);}
.m67_c00167{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.m171_c00167{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m14d_c00167{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m6f_c00167{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);}
.m9f_c00167{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);}
.mf8_c00167{transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);}
.m36_c00167{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);}
.me7_c00167{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m64_c00167{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.maf_c00167{transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);}
.m44_c00167{transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);}
.m38_c00167{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.m17c_c00167{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m30_c00167{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m12e_c00167{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.mad_c00167{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m90_c00167{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);}
.m11e_c00167{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.m13e_c00167{transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);}
.m9c_c00167{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m118_c00167{transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);}
.m144_c00167{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m15e_c00167{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m78_c00167{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.m76_c00167{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);}
.m10f_c00167{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.m116_c00167{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.m40_c00167{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m2c_c00167{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);}
.m39_c00167{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);}
.m17a_c00167{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m172_c00167{transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);}
.m59_c00167{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m139_c00167{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.m42_c00167{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.m5f_c00167{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.mbc_c00167{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);}
.m49_c00167{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.mb8_c00167{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.md3_c00167{transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);}
.m10c_c00167{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.m68_c00167{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.m7a_c00167{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.m7f_c00167{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);}
.m8b_c00167{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);}
.m57_c00167{transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);}
.me6_c00167{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m4e_c00167{transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);}
.m115_c00167{transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);}
.m6c_c00167{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m32_c00167{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);}
.md6_c00167{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.mfa_c00167{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);}
.m180_c00167{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m121_c00167{transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);}
.m177_c00167{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);}
.m106_c00167{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);}
.m16_c00167{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m60_c00167{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m5b_c00167{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);}
.mff_c00167{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);}
.mf6_c00167{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);}
.m122_c00167{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);}
.mdf_c00167{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m8e_c00167{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.ma1_c00167{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m100_c00167{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);}
.m95_c00167{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.m2f_c00167{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.m111_c00167{transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);}
.m11f_c00167{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);}
.m87_c00167{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m65_c00167{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00167{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m162_c00167{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m130_c00167{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);}
.m160_c00167{transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);}
.me0_c00167{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.meb_c00167{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.m6a_c00167{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.ma7_c00167{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.me5_c00167{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);}
.m1d_c00167{transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);}
.m35_c00167{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);}
.m85_c00167{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m62_c00167{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);}
.mcb_c00167{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);}
.m8f_c00167{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);}
.m101_c00167{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.mc8_c00167{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.mf9_c00167{transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);}
.m3c_c00167{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);}
.m6b_c00167{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);}
.m184_c00167{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m84_c00167{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m53_c00167{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m8d_c00167{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m176_c00167{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);}
.m66_c00167{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.mea_c00167{transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);}
.m92_c00167{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.me4_c00167{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m5e_c00167{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);}
.m79_c00167{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m129_c00167{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);}
.m110_c00167{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);}
.m169_c00167{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);}
.m58_c00167{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);}
.ma0_c00167{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);}
.m3f_c00167{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m6_c00167{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);}
.mcc_c00167{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m6e_c00167{transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);}
.m61_c00167{transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);}
.mbb_c00167{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m34_c00167{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m41_c00167{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);}
.m69_c00167{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);}
.m179_c00167{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);}
.m175_c00167{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);}
.m43_c00167{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_c00167{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.med_c00167{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);}
.m45_c00167{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);}
.m112_c00167{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);}
.mfb_c00167{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);}
.m7_c00167{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mbd_c00167{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);}
.m80_c00167{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);}
.mef_c00167{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);}
.mfd_c00167{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.m7b_c00167{transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);}
.m9a_c00167{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m120_c00167{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m8c_c00167{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);}
.m86_c00167{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m33_c00167{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);}
.m82_c00167{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);}
.mfe_c00167{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);}
.m83_c00167{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);}
.mde_c00167{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);}
.ma4_c00167{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);}
.mb4_c00167{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);}
.md5_c00167{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);}
.m9_c00167{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.mbe_c00167{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m14a_c00167{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m2b_c00167{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);}
.m126_c00167{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);}
.m12a_c00167{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);}
.m134_c00167{transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);}
.mc5_c00167{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);}
.m15c_c00167{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);}
.m1f_c00167{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m71_c00167{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);}
.m3d_c00167{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m27_c00167{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00167{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);}
.m1e_c00167{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);}
.m55_c00167{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);}
.m1a_c00167{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);}
.m3a_c00167{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00167{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00167{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);}
.mc6_c00167{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c00167{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);}
.m3_c00167{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);}
.mdc_c00167{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00167{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);}
.m13_c00167{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00167{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00167{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);}
.m4d_c00167{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m181_c00167{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);}
.m50_c00167{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);}
.m74_c00167{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c00167{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);}
.m156_c00167{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c00167{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);}
.m54_c00167{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00167{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m31_c00167{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me9_c00167{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m23_c00167{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00167{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c00167{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);}
.me_c00167{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c00167{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me1_c00167{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);}
.mf_c00167{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);}
.m4b_c00167{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mab_c00167{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);}
.m19_c00167{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m15b_c00167{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c00167{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb_c00167{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m24_c00167{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);}
.m2_c00167{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);}
.m18_c00167{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.me8_c00167{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m25_c00167{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m17e_c00167{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m157_c00167{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00167{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);}
.ma_c00167{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);}
.m47_c00167{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00167{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00167{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mba_c00167{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m21_c00167{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00167{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m17_c00167{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mca_c00167{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m102_c00167{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00167{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.mc_c00167{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00167{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00167{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m186_c00167{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m28_c00167{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m17f_c00167{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);}
.m37_c00167{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.mf4_c00167{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m128_c00167{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00167{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m93_c00167{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.me2_c00167{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m15_c00167{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00167{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00167{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00167{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00167{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00167{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mec_c00167{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00167{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00167{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);}
.m13f_c00167{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.mda_c00167{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m8_c00167{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00167{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m187_c00167{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00167{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00167{transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);}
.md1_c00167{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00167{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.mee_c00167{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.me3_c00167{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00167{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00167{transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00167{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00167{transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);}
.m17d_c00167{transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);}
.md8_c00167{transform:matrix(1.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.562500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00167{transform:matrix(2.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.007500,0.000000,0.000000,0.250000,0,0);}
.m14_c00167{transform:matrix(5.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.872500,0.000000,0.000000,0.250000,0,0);}
.v0_c00167{vertical-align:0.000000px;}
.v1_c00167{vertical-align:6.900000px;}
.ls3_c00167{letter-spacing:0.000000px;}
.ls2_c00167{letter-spacing:34.104000px;}
.ls1_c00167{letter-spacing:60.032700px;}
.ls0_c00167{letter-spacing:132.020833px;}
.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;}
.fs10_c00167{font-size:3.456000px;}
.fs12_c00167{font-size:6.000000px;}
.fs0_c00167{font-size:6.900000px;}
.fs8_c00167{font-size:10.380000px;}
.fs1c_c00167{font-size:13.800000px;}
.fs1_c00167{font-size:17.280000px;}
.fs13_c00167{font-size:20.760000px;}
.fs11_c00167{font-size:24.180000px;}
.fs2a_c00167{font-size:27.660000px;}
.fs2f_c00167{font-size:31.080000px;}
.fs29_c00167{font-size:34.560000px;}
.fs1d_c00167{font-size:38.040000px;}
.fs2c_c00167{font-size:41.460000px;}
.fs2e_c00167{font-size:44.940000px;}
.fs2d_c00167{font-size:48.360000px;}
.fs2_c00167{font-size:51.840000px;}
.fs24_c00167{font-size:55.320000px;}
.fs26_c00167{font-size:58.740000px;}
.fs2b_c00167{font-size:62.220000px;}
.fs21_c00167{font-size:65.640000px;}
.fs27_c00167{font-size:69.120000px;}
.fs15_c00167{font-size:72.600000px;}
.fs16_c00167{font-size:76.020000px;}
.fs1e_c00167{font-size:79.500000px;}
.fs1f_c00167{font-size:82.920000px;}
.fs18_c00167{font-size:86.400000px;}
.fs25_c00167{font-size:89.880000px;}
.fs28_c00167{font-size:93.300000px;}
.fs1b_c00167{font-size:96.780000px;}
.fs19_c00167{font-size:100.200000px;}
.fs14_c00167{font-size:103.680000px;}
.fs22_c00167{font-size:107.160000px;}
.fs23_c00167{font-size:110.580000px;}
.fs20_c00167{font-size:114.060000px;}
.fs1a_c00167{font-size:117.480000px;}
.fs17_c00167{font-size:120.960000px;}
.fsd_c00167{font-size:131.340000px;}
.fse_c00167{font-size:138.240000px;}
.fsf_c00167{font-size:145.140000px;}
.fsc_c00167{font-size:162.420000px;}
.fsa_c00167{font-size:165.900000px;}
.fs3_c00167{font-size:172.800000px;}
.fsb_c00167{font-size:176.280000px;}
.fs5_c00167{font-size:183.180000px;}
.fs7_c00167{font-size:193.560000px;}
.fs9_c00167{font-size:196.980000px;}
.fs4_c00167{font-size:207.360000px;}
.fs6_c00167{font-size:210.840000px;}
.y0_c00167{bottom:0.000000px;}
.y15e_c00167{bottom:182.310000px;}
.y15c_c00167{bottom:184.035000px;}
.y157_c00167{bottom:185.760000px;}
.y15d_c00167{bottom:188.355000px;}
.y153_c00167{bottom:190.080000px;}
.y156_c00167{bottom:190.950000px;}
.y15a_c00167{bottom:192.675000px;}
.y159_c00167{bottom:193.530000px;}
.y154_c00167{bottom:194.400000px;}
.y155_c00167{bottom:195.270000px;}
.y158_c00167{bottom:196.125000px;}
.y14f_c00167{bottom:199.590000px;}
.y152_c00167{bottom:203.040000px;}
.y14e_c00167{bottom:203.910000px;}
.y150_c00167{bottom:205.635000px;}
.y151_c00167{bottom:206.490000px;}
.y14c_c00167{bottom:207.360000px;}
.y147_c00167{bottom:208.230000px;}
.y15b_c00167{bottom:209.085000px;}
.y14d_c00167{bottom:209.955000px;}
.y14b_c00167{bottom:210.810000px;}
.y149_c00167{bottom:212.550000px;}
.y14a_c00167{bottom:214.275000px;}
.y148_c00167{bottom:216.000000px;}
.y146_c00167{bottom:226.365000px;}
.y13e_c00167{bottom:231.555000px;}
.y144_c00167{bottom:232.410000px;}
.y13f_c00167{bottom:233.280000px;}
.y145_c00167{bottom:235.005000px;}
.y140_c00167{bottom:235.875000px;}
.y142_c00167{bottom:236.730000px;}
.y141_c00167{bottom:239.325000px;}
.y143_c00167{bottom:241.920000px;}
.y13d_c00167{bottom:247.965000px;}
.y139_c00167{bottom:259.200000px;}
.y136_c00167{bottom:260.070000px;}
.y13c_c00167{bottom:260.925000px;}
.y13a_c00167{bottom:261.795000px;}
.y138_c00167{bottom:262.650000px;}
.y13b_c00167{bottom:264.390000px;}
.y137_c00167{bottom:266.115000px;}
.y135_c00167{bottom:266.970000px;}
.y133_c00167{bottom:267.840000px;}
.y132_c00167{bottom:278.205000px;}
.y134_c00167{bottom:280.800000px;}
.y12b_c00167{bottom:285.120000px;}
.y127_c00167{bottom:285.990000px;}
.y12c_c00167{bottom:286.845000px;}
.y126_c00167{bottom:287.715000px;}
.y12e_c00167{bottom:290.310000px;}
.y128_c00167{bottom:292.035000px;}
.y129_c00167{bottom:292.890000px;}
.y131_c00167{bottom:294.630000px;}
.y12f_c00167{bottom:298.080000px;}
.y12a_c00167{bottom:298.950000px;}
.y12d_c00167{bottom:301.530000px;}
.y130_c00167{bottom:303.270000px;}
.y124_c00167{bottom:309.315000px;}
.y123_c00167{bottom:310.170000px;}
.y125_c00167{bottom:311.040000px;}
.y122_c00167{bottom:312.765000px;}
.y120_c00167{bottom:313.635000px;}
.y121_c00167{bottom:315.360000px;}
.y11f_c00167{bottom:330.915000px;}
.y115_c00167{bottom:332.640000px;}
.y118_c00167{bottom:333.510000px;}
.y116_c00167{bottom:335.235000px;}
.y11c_c00167{bottom:336.090000px;}
.y11a_c00167{bottom:336.960000px;}
.y117_c00167{bottom:338.685000px;}
.y11d_c00167{bottom:340.410000px;}
.y11b_c00167{bottom:346.470000px;}
.y119_c00167{bottom:348.195000px;}
.y11e_c00167{bottom:354.240000px;}
.y10e_c00167{bottom:359.430000px;}
.y110_c00167{bottom:361.155000px;}
.y111_c00167{bottom:362.880000px;}
.y112_c00167{bottom:363.750000px;}
.y113_c00167{bottom:364.605000px;}
.y10f_c00167{bottom:365.475000px;}
.y114_c00167{bottom:374.115000px;}
.y103_c00167{bottom:385.350000px;}
.y104_c00167{bottom:386.205000px;}
.y108_c00167{bottom:387.075000px;}
.y106_c00167{bottom:387.930000px;}
.y107_c00167{bottom:388.800000px;}
.y10b_c00167{bottom:389.670000px;}
.y105_c00167{bottom:391.395000px;}
.y109_c00167{bottom:393.120000px;}
.y10a_c00167{bottom:393.990000px;}
.y10c_c00167{bottom:400.890000px;}
.y10d_c00167{bottom:405.210000px;}
.yf9_c00167{bottom:410.400000px;}
.yf7_c00167{bottom:411.270000px;}
.yfc_c00167{bottom:412.125000px;}
.yf8_c00167{bottom:413.850000px;}
.yfa_c00167{bottom:414.720000px;}
.yfb_c00167{bottom:415.590000px;}
.yfe_c00167{bottom:416.445000px;}
.yfd_c00167{bottom:418.170000px;}
.y101_c00167{bottom:420.765000px;}
.yff_c00167{bottom:422.490000px;}
.y100_c00167{bottom:425.085000px;}
.y102_c00167{bottom:425.955000px;}
.yec_c00167{bottom:432.870000px;}
.yef_c00167{bottom:435.450000px;}
.yee_c00167{bottom:436.320000px;}
.yed_c00167{bottom:437.190000px;}
.yf1_c00167{bottom:438.045000px;}
.ye9_c00167{bottom:438.915000px;}
.yea_c00167{bottom:439.770000px;}
.yf6_c00167{bottom:440.640000px;}
.yf0_c00167{bottom:441.510000px;}
.yeb_c00167{bottom:442.365000px;}
.yf2_c00167{bottom:444.090000px;}
.yf3_c00167{bottom:446.685000px;}
.yf4_c00167{bottom:451.005000px;}
.yf5_c00167{bottom:457.920000px;}
.yde_c00167{bottom:458.790000px;}
.ydd_c00167{bottom:459.645000px;}
.ydf_c00167{bottom:460.515000px;}
.ye1_c00167{bottom:461.370000px;}
.ye0_c00167{bottom:463.110000px;}
.ye8_c00167{bottom:465.690000px;}
.ye2_c00167{bottom:466.560000px;}
.ye7_c00167{bottom:468.285000px;}
.ye6_c00167{bottom:470.880000px;}
.ye5_c00167{bottom:472.605000px;}
.ye3_c00167{bottom:474.330000px;}
.ydc_c00167{bottom:478.650000px;}
.ye4_c00167{bottom:482.970000px;}
.yd1_c00167{bottom:484.710000px;}
.yd2_c00167{bottom:485.565000px;}
.yd4_c00167{bottom:486.435000px;}
.yd6_c00167{bottom:487.290000px;}
.yd5_c00167{bottom:488.160000px;}
.yd7_c00167{bottom:489.030000px;}
.yd3_c00167{bottom:489.885000px;}
.ydb_c00167{bottom:492.480000px;}
.yda_c00167{bottom:493.350000px;}
.yd8_c00167{bottom:495.075000px;}
.yd9_c00167{bottom:495.930000px;}
.yca_c00167{bottom:501.120000px;}
.yc9_c00167{bottom:501.990000px;}
.ycd_c00167{bottom:502.845000px;}
.ycf_c00167{bottom:503.715000px;}
.yce_c00167{bottom:504.570000px;}
.ycc_c00167{bottom:505.440000px;}
.ycb_c00167{bottom:506.310000px;}
.yd0_c00167{bottom:509.760000px;}
.yc3_c00167{bottom:510.630000px;}
.yc1_c00167{bottom:511.485000px;}
.yc4_c00167{bottom:512.355000px;}
.yc2_c00167{bottom:514.950000px;}
.yc6_c00167{bottom:515.805000px;}
.yc0_c00167{bottom:516.675000px;}
.yc5_c00167{bottom:518.400000px;}
.yc8_c00167{bottom:519.270000px;}
.yc7_c00167{bottom:520.125000px;}
.yb9_c00167{bottom:522.720000px;}
.yb8_c00167{bottom:524.445000px;}
.ybe_c00167{bottom:525.315000px;}
.ybd_c00167{bottom:526.170000px;}
.ybc_c00167{bottom:527.040000px;}
.yb7_c00167{bottom:527.910000px;}
.yba_c00167{bottom:528.765000px;}
.ybf_c00167{bottom:529.635000px;}
.ybb_c00167{bottom:530.490000px;}
.yb2_c00167{bottom:532.230000px;}
.yb1_c00167{bottom:533.085000px;}
.yae_c00167{bottom:533.955000px;}
.yb6_c00167{bottom:534.810000px;}
.yb0_c00167{bottom:535.680000px;}
.yb3_c00167{bottom:536.550000px;}
.yb5_c00167{bottom:537.405000px;}
.yb4_c00167{bottom:539.130000px;}
.yaf_c00167{bottom:540.870000px;}
.y20_c00167{bottom:543.450000px;}
.yaa_c00167{bottom:545.190000px;}
.ya2_c00167{bottom:548.640000px;}
.ya1_c00167{bottom:549.510000px;}
.ya5_c00167{bottom:550.365000px;}
.yac_c00167{bottom:551.235000px;}
.yab_c00167{bottom:552.090000px;}
.ya3_c00167{bottom:552.960000px;}
.ya4_c00167{bottom:553.830000px;}
.ya6_c00167{bottom:554.685000px;}
.ya8_c00167{bottom:555.555000px;}
.yad_c00167{bottom:556.410000px;}
.ya9_c00167{bottom:557.280000px;}
.ya7_c00167{bottom:558.150000px;}
.y97_c00167{bottom:559.005000px;}
.y9b_c00167{bottom:560.730000px;}
.y9a_c00167{bottom:562.470000px;}
.y9e_c00167{bottom:563.325000px;}
.y9c_c00167{bottom:564.195000px;}
.y98_c00167{bottom:565.050000px;}
.y9d_c00167{bottom:566.790000px;}
.y99_c00167{bottom:567.645000px;}
.ya0_c00167{bottom:568.515000px;}
.y9f_c00167{bottom:570.240000px;}
.y91_c00167{bottom:587.520000px;}
.y93_c00167{bottom:588.390000px;}
.y90_c00167{bottom:589.245000px;}
.y8f_c00167{bottom:590.115000px;}
.y92_c00167{bottom:591.840000px;}
.y95_c00167{bottom:603.075000px;}
.y94_c00167{bottom:608.250000px;}
.y96_c00167{bottom:613.440000px;}
.y88_c00167{bottom:614.310000px;}
.y89_c00167{bottom:615.165000px;}
.y8c_c00167{bottom:616.035000px;}
.y8e_c00167{bottom:616.890000px;}
.y8a_c00167{bottom:617.760000px;}
.y8b_c00167{bottom:620.355000px;}
.y8d_c00167{bottom:622.080000px;}
.y80_c00167{bottom:637.635000px;}
.y82_c00167{bottom:638.490000px;}
.y83_c00167{bottom:639.360000px;}
.y85_c00167{bottom:640.230000px;}
.y84_c00167{bottom:641.955000px;}
.y7f_c00167{bottom:642.810000px;}
.y86_c00167{bottom:643.680000px;}
.y81_c00167{bottom:644.550000px;}
.y87_c00167{bottom:647.130000px;}
.y77_c00167{bottom:660.960000px;}
.y79_c00167{bottom:661.830000px;}
.y7b_c00167{bottom:662.685000px;}
.y78_c00167{bottom:663.555000px;}
.y7c_c00167{bottom:664.410000px;}
.y76_c00167{bottom:667.005000px;}
.y7e_c00167{bottom:668.730000px;}
.y7a_c00167{bottom:670.470000px;}
.y7d_c00167{bottom:674.790000px;}
.y6e_c00167{bottom:686.010000px;}
.y6f_c00167{bottom:686.880000px;}
.y74_c00167{bottom:687.750000px;}
.y75_c00167{bottom:688.605000px;}
.y72_c00167{bottom:690.330000px;}
.y71_c00167{bottom:691.200000px;}
.y73_c00167{bottom:692.070000px;}
.y6d_c00167{bottom:692.925000px;}
.y70_c00167{bottom:693.795000px;}
.y67_c00167{bottom:709.350000px;}
.y6a_c00167{bottom:710.205000px;}
.y68_c00167{bottom:711.075000px;}
.y6c_c00167{bottom:711.930000px;}
.y66_c00167{bottom:712.800000px;}
.y69_c00167{bottom:713.670000px;}
.y6b_c00167{bottom:718.845000px;}
.y5f_c00167{bottom:731.805000px;}
.y62_c00167{bottom:735.270000px;}
.y60_c00167{bottom:736.125000px;}
.y61_c00167{bottom:736.995000px;}
.y63_c00167{bottom:738.720000px;}
.y65_c00167{bottom:740.445000px;}
.y64_c00167{bottom:743.910000px;}
.y5e_c00167{bottom:749.955000px;}
.y5a_c00167{bottom:759.450000px;}
.y55_c00167{bottom:760.320000px;}
.y5b_c00167{bottom:761.190000px;}
.y5c_c00167{bottom:762.045000px;}
.y5d_c00167{bottom:763.770000px;}
.y59_c00167{bottom:765.510000px;}
.y54_c00167{bottom:768.960000px;}
.y57_c00167{bottom:775.875000px;}
.y56_c00167{bottom:776.730000px;}
.y58_c00167{bottom:781.050000px;}
.y4c_c00167{bottom:781.920000px;}
.y52_c00167{bottom:783.645000px;}
.y51_c00167{bottom:784.515000px;}
.y4f_c00167{bottom:786.240000px;}
.y50_c00167{bottom:787.110000px;}
.y4b_c00167{bottom:787.965000px;}
.y4d_c00167{bottom:790.560000px;}
.y4e_c00167{bottom:791.430000px;}
.y53_c00167{bottom:792.285000px;}
.y45_c00167{bottom:808.710000px;}
.y49_c00167{bottom:809.565000px;}
.y46_c00167{bottom:812.160000px;}
.y4a_c00167{bottom:813.030000px;}
.y44_c00167{bottom:814.755000px;}
.y47_c00167{bottom:815.610000px;}
.y48_c00167{bottom:816.480000px;}
.y3f_c00167{bottom:831.165000px;}
.y41_c00167{bottom:833.760000px;}
.y43_c00167{bottom:834.630000px;}
.y42_c00167{bottom:838.080000px;}
.y3e_c00167{bottom:838.950000px;}
.y40_c00167{bottom:839.805000px;}
.y37_c00167{bottom:857.085000px;}
.y39_c00167{bottom:857.955000px;}
.y3b_c00167{bottom:858.810000px;}
.y38_c00167{bottom:860.550000px;}
.y3a_c00167{bottom:865.725000px;}
.y3c_c00167{bottom:867.450000px;}
.y3d_c00167{bottom:870.915000px;}
.y2d_c00167{bottom:881.280000px;}
.y30_c00167{bottom:883.005000px;}
.y34_c00167{bottom:883.875000px;}
.y35_c00167{bottom:884.730000px;}
.y31_c00167{bottom:885.600000px;}
.y36_c00167{bottom:887.325000px;}
.y2f_c00167{bottom:889.050000px;}
.y32_c00167{bottom:890.790000px;}
.y33_c00167{bottom:891.645000px;}
.y2e_c00167{bottom:894.240000px;}
.y28_c00167{bottom:907.200000px;}
.y26_c00167{bottom:908.925000px;}
.y29_c00167{bottom:909.795000px;}
.y25_c00167{bottom:912.390000px;}
.y24_c00167{bottom:914.115000px;}
.y27_c00167{bottom:914.970000px;}
.y2b_c00167{bottom:916.710000px;}
.y2c_c00167{bottom:917.565000px;}
.y2a_c00167{bottom:932.250000px;}
.y21_c00167{bottom:943.485000px;}
.y23_c00167{bottom:944.355000px;}
.y22_c00167{bottom:945.210000px;}
.y15f_c00167{bottom:946.080000px;}
.y1b_c00167{bottom:980.640000px;}
.y1a_c00167{bottom:982.365000px;}
.y1c_c00167{bottom:986.685000px;}
.y1e_c00167{bottom:987.555000px;}
.y1f_c00167{bottom:990.150000px;}
.y1d_c00167{bottom:1010.880000px;}
.y17_c00167{bottom:1013.475000px;}
.y19_c00167{bottom:1020.390000px;}
.y18_c00167{bottom:1021.245000px;}
.y15_c00167{bottom:1054.080000px;}
.y13_c00167{bottom:1055.805000px;}
.y16_c00167{bottom:1057.530000px;}
.y14_c00167{bottom:1058.400000px;}
.y12_c00167{bottom:1064.445000px;}
.ye_c00167{bottom:1082.595000px;}
.yf_c00167{bottom:1084.320000px;}
.yd_c00167{bottom:1087.770000px;}
.y10_c00167{bottom:1088.640000px;}
.ya_c00167{bottom:1090.365000px;}
.y11_c00167{bottom:1092.090000px;}
.yb_c00167{bottom:1095.555000px;}
.yc_c00167{bottom:1112.835000px;}
.y3_c00167{bottom:1129.245000px;}
.y5_c00167{bottom:1145.670000px;}
.y4_c00167{bottom:1146.525000px;}
.y7_c00167{bottom:1147.395000px;}
.y9_c00167{bottom:1149.120000px;}
.y8_c00167{bottom:1150.845000px;}
.y6_c00167{bottom:1154.310000px;}
.y2_c00167{bottom:1370.310000px;}
.y1_c00167{bottom:1372.890000px;}
.h12_c00167{height:3.110063px;}
.h14_c00167{height:5.399414px;}
.h2_c00167{height:6.209326px;}
.ha_c00167{height:9.340986px;}
.h32_c00167{height:10.010063px;}
.h1e_c00167{height:12.418652px;}
.h3_c00167{height:15.550313px;}
.h15_c00167{height:18.681973px;}
.h13_c00167{height:21.759639px;}
.h2c_c00167{height:24.891299px;}
.h31_c00167{height:27.968965px;}
.h2b_c00167{height:31.100625px;}
.h1f_c00167{height:34.232285px;}
.h2e_c00167{height:37.309951px;}
.h30_c00167{height:40.441611px;}
.h2f_c00167{height:43.519277px;}
.h4_c00167{height:46.650937px;}
.h26_c00167{height:49.782598px;}
.h28_c00167{height:52.860264px;}
.h2d_c00167{height:55.991924px;}
.h23_c00167{height:59.069590px;}
.h29_c00167{height:62.201250px;}
.h17_c00167{height:65.332910px;}
.h18_c00167{height:68.410576px;}
.h20_c00167{height:71.542236px;}
.h21_c00167{height:74.619902px;}
.h1a_c00167{height:77.751563px;}
.h27_c00167{height:80.883223px;}
.h2a_c00167{height:83.960889px;}
.h1d_c00167{height:87.092549px;}
.h1b_c00167{height:90.170215px;}
.h16_c00167{height:93.301875px;}
.h24_c00167{height:96.433535px;}
.h25_c00167{height:99.511201px;}
.h22_c00167{height:102.642861px;}
.h1c_c00167{height:105.720527px;}
.h19_c00167{height:108.852188px;}
.hf_c00167{height:118.193174px;}
.h10_c00167{height:124.402500px;}
.h11_c00167{height:130.611826px;}
.he_c00167{height:146.162139px;}
.hc_c00167{height:149.293799px;}
.h5_c00167{height:155.503125px;}
.hd_c00167{height:158.634785px;}
.h7_c00167{height:164.844111px;}
.h9_c00167{height:174.185098px;}
.hb_c00167{height:177.262764px;}
.h6_c00167{height:186.603750px;}
.h8_c00167{height:189.735410px;}
.h1_c00167{height:1503.000000px;}
.h0_c00167{height:1503.360000px;}
.w0_c00167{width:1105.920000px;}
.w1_c00167{width:1106.250000px;}
.x0_c00167{left:0.000000px;}
.x2a_c00167{left:117.510000px;}
.x3_c00167{left:138.240000px;}
.x1_c00167{left:177.990000px;}
.x2_c00167{left:195.270000px;}
.x2b_c00167{left:205.633680px;}
.x6b_c00167{left:222.915000px;}
.x71_c00167{left:228.090000px;}
.x4_c00167{left:230.685000px;}
.x5a_c00167{left:232.410000px;}
.x6c_c00167{left:236.730000px;}
.x72_c00167{left:238.470000px;}
.x7a_c00167{left:240.195000px;}
.x62_c00167{left:241.920000px;}
.xb3_c00167{left:243.645000px;}
.xf6_c00167{left:245.370000px;}
.x63_c00167{left:251.430000px;}
.x103_c00167{left:253.154592px;}
.x101_c00167{left:259.200000px;}
.xf_c00167{left:260.925000px;}
.xb8_c00167{left:262.650000px;}
.x104_c00167{left:270.435000px;}
.x5_c00167{left:273.030000px;}
.x90_c00167{left:279.075000px;}
.xf3_c00167{left:280.800000px;}
.x54_c00167{left:282.525000px;}
.x64_c00167{left:285.120000px;}
.x1a_c00167{left:286.845000px;}
.x7b_c00167{left:288.570000px;}
.xb9_c00167{left:292.035000px;}
.x73_c00167{left:294.630000px;}
.xba_c00167{left:298.080000px;}
.x1b_c00167{left:301.530000px;}
.xf7_c00167{left:304.125000px;}
.xdd_c00167{left:306.720000px;}
.x2f_c00167{left:308.445000px;}
.x65_c00167{left:311.040000px;}
.x14_c00167{left:313.635000px;}
.x98_c00167{left:316.230000px;}
.xd7_c00167{left:319.680000px;}
.x83_c00167{left:321.405000px;}
.x105_c00167{left:324.870000px;}
.x20_c00167{left:327.450000px;}
.x28_c00167{left:330.045000px;}
.xff_c00167{left:331.770000px;}
.x6_c00167{left:333.510000px;}
.x74_c00167{left:335.235000px;}
.xd0_c00167{left:337.830000px;}
.x29_c00167{left:340.410000px;}
.x10_c00167{left:344.730000px;}
.xa9_c00167{left:347.325000px;}
.x66_c00167{left:350.790000px;}
.xc8_c00167{left:353.370000px;}
.xb4_c00167{left:360.285000px;}
.xed_c00167{left:363.750000px;}
.x3b_c00167{left:365.475000px;}
.x15_c00167{left:368.070000px;}
.xc2_c00167{left:372.390000px;}
.x6d_c00167{left:375.840000px;}
.x16_c00167{left:378.435000px;}
.x114_c00167{left:381.030000px;}
.x3c_c00167{left:382.755000px;}
.x24_c00167{left:388.800000px;}
.x7_c00167{left:394.845000px;}
.x30_c00167{left:396.570000px;}
.xa3_c00167{left:398.310000px;}
.xbb_c00167{left:400.035000px;}
.x7c_c00167{left:401.760000px;}
.x5b_c00167{left:403.485000px;}
.x84_c00167{left:405.210000px;}
.xbc_c00167{left:410.400675px;}
.x31_c00167{left:412.125000px;}
.x106_c00167{left:414.720000px;}
.xe3_c00167{left:419.040000px;}
.xf8_c00167{left:421.635000px;}
.xa4_c00167{left:427.680000px;}
.xf9_c00167{left:429.405000px;}
.x10c_c00167{left:431.130000px;}
.x32_c00167{left:432.870000px;}
.x3d_c00167{left:435.450000px;}
.x85_c00167{left:437.190000px;}
.xc9_c00167{left:438.915000px;}
.xe4_c00167{left:440.640000px;}
.xf4_c00167{left:444.090000px;}
.x5c_c00167{left:445.830000px;}
.xca_c00167{left:447.555000px;}
.x67_c00167{left:449.280000px;}
.x6e_c00167{left:452.730000px;}
.xde_c00167{left:454.470000px;}
.x9e_c00167{left:456.195000px;}
.x21_c00167{left:459.645000px;}
.x5d_c00167{left:461.370000px;}
.x99_c00167{left:463.110000px;}
.x91_c00167{left:467.430000px;}
.x33_c00167{left:469.155000px;}
.x4c_c00167{left:470.880000px;}
.x25_c00167{left:472.605000px;}
.xaa_c00167{left:475.200000px;}
.x7d_c00167{left:476.925000px;}
.x86_c00167{left:481.245000px;}
.xc3_c00167{left:484.710000px;}
.x1c_c00167{left:487.290000px;}
.x7e_c00167{left:490.755000px;}
.x3e_c00167{left:492.480000px;}
.xfa_c00167{left:495.075000px;}
.x75_c00167{left:496.800000px;}
.x46_c00167{left:499.395000px;}
.x1d_c00167{left:501.990000px;}
.xab_c00167{left:505.440000px;}
.xd1_c00167{left:508.035000px;}
.x8_c00167{left:520.995000px;}
.x87_c00167{left:522.720000px;}
.xbd_c00167{left:525.315000px;}
.x9f_c00167{left:527.040000px;}
.x1e_c00167{left:529.635000px;}
.x34_c00167{left:534.810000px;}
.x55_c00167{left:536.550000px;}
.x4d_c00167{left:538.275000px;}
.x100_c00167{left:541.725000px;}
.x76_c00167{left:546.045000px;}
.x7f_c00167{left:547.770000px;}
.x11_c00167{left:550.365000px;}
.x47_c00167{left:552.960000px;}
.x35_c00167{left:556.410000px;}
.x3f_c00167{left:559.875000px;}
.x36_c00167{left:561.600000px;}
.xe5_c00167{left:565.050000px;}
.x6f_c00167{left:567.645000px;}
.x4e_c00167{left:569.370000px;}
.x22_c00167{left:571.110000px;}
.x92_c00167{left:572.835000px;}
.xfb_c00167{left:574.560000px;}
.xd8_c00167{left:577.155000px;}
.x40_c00167{left:578.880000px;}
.xa5_c00167{left:581.475000px;}
.x56_c00167{left:583.200000px;}
.xac_c00167{left:585.795000px;}
.x10d_c00167{left:587.520000px;}
.x37_c00167{left:590.115000px;}
.x109_c00167{left:591.840000px;}
.x5e_c00167{left:593.565000px;}
.xee_c00167{left:596.160000px;}
.xb5_c00167{left:599.610000px;}
.x80_c00167{left:603.930000px;}
.xcb_c00167{left:607.395000px;}
.x88_c00167{left:611.715000px;}
.x1f_c00167{left:613.440000px;}
.xbe_c00167{left:616.035000px;}
.x9_c00167{left:618.630000px;}
.xef_c00167{left:622.080000px;}
.x26_c00167{left:623.805000px;}
.x89_c00167{left:626.400000px;}
.xd2_c00167{left:628.125000px;}
.x2c_c00167{left:632.445000px;}
.x2d_c00167{left:634.170000px;}
.x41_c00167{left:635.910000px;}
.x2e_c00167{left:637.635000px;}
.xa0_c00167{left:640.230000px;}
.x68_c00167{left:642.810000px;}
.x17_c00167{left:648.000000px;}
.xa_c00167{left:649.725000px;}
.xcc_c00167{left:651.450000px;}
.x38_c00167{left:653.190000px;}
.x23_c00167{left:658.365000px;}
.x93_c00167{left:660.960000px;}
.x107_c00167{left:662.685000px;}
.xa1_c00167{left:666.150000px;}
.x4f_c00167{left:667.875000px;}
.x5f_c00167{left:671.325000px;}
.x48_c00167{left:673.050000px;}
.x10a_c00167{left:674.790000px;}
.x77_c00167{left:677.370000px;}
.x42_c00167{left:679.965000px;}
.xe6_c00167{left:682.560000px;}
.x57_c00167{left:684.285000px;}
.x102_c00167{left:686.010000px;}
.xf0_c00167{left:688.605000px;}
.xa6_c00167{left:692.925000px;}
.xc4_c00167{left:695.520000px;}
.xb_c00167{left:697.245000px;}
.x10b_c00167{left:699.840000px;}
.x50_c00167{left:705.030000px;}
.x49_c00167{left:711.075000px;}
.xad_c00167{left:712.800000px;}
.x9a_c00167{left:714.525000px;}
.xcd_c00167{left:716.250000px;}
.xc5_c00167{left:721.440000px;}
.x78_c00167{left:726.630000px;}
.x10e_c00167{left:728.355000px;}
.xae_c00167{left:730.080000px;}
.x69_c00167{left:731.805000px;}
.xc_c00167{left:734.400000px;}
.x8a_c00167{left:737.850000px;}
.xfc_c00167{left:739.590000px;}
.x10f_c00167{left:741.315000px;}
.x43_c00167{left:743.910000px;}
.x51_c00167{left:747.360000px;}
.x110_c00167{left:749.955000px;}
.x60_c00167{left:754.275000px;}
.xbf_c00167{left:762.915000px;}
.xf1_c00167{left:764.640000px;}
.x27_c00167{left:766.365000px;}
.x111_c00167{left:768.960000px;}
.x8b_c00167{left:773.280000px;}
.x108_c00167{left:775.005000px;}
.x39_c00167{left:776.730000px;}
.x58_c00167{left:781.050000px;}
.xd_c00167{left:784.515000px;}
.xf2_c00167{left:786.240000px;}
.x94_c00167{left:787.965000px;}
.xce_c00167{left:791.430000px;}
.xfd_c00167{left:793.155000px;}
.x61_c00167{left:794.880000px;}
.x3a_c00167{left:797.475000px;}
.x18_c00167{left:800.070000px;}
.x4a_c00167{left:802.650000px;}
.x6a_c00167{left:806.115000px;}
.x112_c00167{left:811.290000px;}
.x44_c00167{left:813.885000px;}
.xaf_c00167{left:816.480000px;}
.x59_c00167{left:821.670000px;}
.xc0_c00167{left:824.250000px;}
.x19_c00167{left:826.845000px;}
.x70_c00167{left:829.440000px;}
.xb0_c00167{left:832.035000px;}
.x79_c00167{left:834.630000px;}
.x52_c00167{left:836.355000px;}
.x113_c00167{left:838.950000px;}
.x8c_c00167{left:842.400000px;}
.xe_c00167{left:844.125000px;}
.x81_c00167{left:845.850000px;}
.xc6_c00167{left:851.910000px;}
.xe7_c00167{left:859.680000px;}
.xd3_c00167{left:861.405000px;}
.xb1_c00167{left:864.000000px;}
.x12_c00167{left:873.510000px;}
.xc1_c00167{left:880.410000px;}
.xfe_c00167{left:883.875000px;}
.x45_c00167{left:885.600000px;}
.x8d_c00167{left:888.195000px;}
.xdf_c00167{left:890.790000px;}
.x13_c00167{left:892.515000px;}
.x53_c00167{left:894.240000px;}
.x4b_c00167{left:896.835000px;}
.x8e_c00167{left:899.430000px;}
.xa7_c00167{left:902.010000px;}
.x82_c00167{left:904.605000px;}
.xd9_c00167{left:907.200048px;}
.xe8_c00167{left:908.925000px;}
.xb6_c00167{left:912.390000px;}
.xa8_c00167{left:914.970000px;}
.xd4_c00167{left:916.710000px;}
.xcf_c00167{left:919.290450px;}
.xb2_c00167{left:921.030000px;}
.xda_c00167{left:927.075000px;}
.xd5_c00167{left:934.845000px;}
.xe0_c00167{left:936.570000px;}
.xb7_c00167{left:942.630000px;}
.x8f_c00167{left:944.355000px;}
.xe9_c00167{left:946.950000px;}
.x9b_c00167{left:952.125000px;}
.xdb_c00167{left:963.360000px;}
.xd6_c00167{left:965.955000px;}
.xea_c00167{left:967.680000px;}
.xdc_c00167{left:972.000000px;}
.xa2_c00167{left:976.320000px;}
.xc7_c00167{left:984.960000px;}
.xe1_c00167{left:986.685000px;}
.xf5_c00167{left:988.410000px;}
.x9c_c00167{left:990.150000px;}
.x95_c00167{left:995.325000px;}
.xeb_c00167{left:997.920000px;}
.x96_c00167{left:1003.965000px;}
.xec_c00167{left:1006.560000px;}
.x9d_c00167{left:1008.285000px;}
.xe2_c00167{left:1012.605000px;}
.x97_c00167{left:1016.070000px;}
@media print{
.v0_c00167{vertical-align:0.000000pt;}
.v1_c00167{vertical-align:6.133333pt;}
.ls3_c00167{letter-spacing:0.000000pt;}
.ls2_c00167{letter-spacing:30.314667pt;}
.ls1_c00167{letter-spacing:53.362400pt;}
.ls0_c00167{letter-spacing:117.351852pt;}
.ws0_c00167{word-spacing:0.000000pt;}
.fs10_c00167{font-size:3.072000pt;}
.fs12_c00167{font-size:5.333333pt;}
.fs0_c00167{font-size:6.133333pt;}
.fs8_c00167{font-size:9.226667pt;}
.fs1c_c00167{font-size:12.266667pt;}
.fs1_c00167{font-size:15.360000pt;}
.fs13_c00167{font-size:18.453333pt;}
.fs11_c00167{font-size:21.493333pt;}
.fs2a_c00167{font-size:24.586667pt;}
.fs2f_c00167{font-size:27.626667pt;}
.fs29_c00167{font-size:30.720000pt;}
.fs1d_c00167{font-size:33.813333pt;}
.fs2c_c00167{font-size:36.853333pt;}
.fs2e_c00167{font-size:39.946667pt;}
.fs2d_c00167{font-size:42.986667pt;}
.fs2_c00167{font-size:46.080000pt;}
.fs24_c00167{font-size:49.173333pt;}
.fs26_c00167{font-size:52.213333pt;}
.fs2b_c00167{font-size:55.306667pt;}
.fs21_c00167{font-size:58.346667pt;}
.fs27_c00167{font-size:61.440000pt;}
.fs15_c00167{font-size:64.533333pt;}
.fs16_c00167{font-size:67.573333pt;}
.fs1e_c00167{font-size:70.666667pt;}
.fs1f_c00167{font-size:73.706667pt;}
.fs18_c00167{font-size:76.800000pt;}
.fs25_c00167{font-size:79.893333pt;}
.fs28_c00167{font-size:82.933333pt;}
.fs1b_c00167{font-size:86.026667pt;}
.fs19_c00167{font-size:89.066667pt;}
.fs14_c00167{font-size:92.160000pt;}
.fs22_c00167{font-size:95.253333pt;}
.fs23_c00167{font-size:98.293333pt;}
.fs20_c00167{font-size:101.386667pt;}
.fs1a_c00167{font-size:104.426667pt;}
.fs17_c00167{font-size:107.520000pt;}
.fsd_c00167{font-size:116.746667pt;}
.fse_c00167{font-size:122.880000pt;}
.fsf_c00167{font-size:129.013333pt;}
.fsc_c00167{font-size:144.373333pt;}
.fsa_c00167{font-size:147.466667pt;}
.fs3_c00167{font-size:153.600000pt;}
.fsb_c00167{font-size:156.693333pt;}
.fs5_c00167{font-size:162.826667pt;}
.fs7_c00167{font-size:172.053333pt;}
.fs9_c00167{font-size:175.093333pt;}
.fs4_c00167{font-size:184.320000pt;}
.fs6_c00167{font-size:187.413333pt;}
.y0_c00167{bottom:0.000000pt;}
.y15e_c00167{bottom:162.053333pt;}
.y15c_c00167{bottom:163.586667pt;}
.y157_c00167{bottom:165.120000pt;}
.y15d_c00167{bottom:167.426667pt;}
.y153_c00167{bottom:168.960000pt;}
.y156_c00167{bottom:169.733333pt;}
.y15a_c00167{bottom:171.266667pt;}
.y159_c00167{bottom:172.026667pt;}
.y154_c00167{bottom:172.800000pt;}
.y155_c00167{bottom:173.573333pt;}
.y158_c00167{bottom:174.333333pt;}
.y14f_c00167{bottom:177.413333pt;}
.y152_c00167{bottom:180.480000pt;}
.y14e_c00167{bottom:181.253333pt;}
.y150_c00167{bottom:182.786667pt;}
.y151_c00167{bottom:183.546667pt;}
.y14c_c00167{bottom:184.320000pt;}
.y147_c00167{bottom:185.093333pt;}
.y15b_c00167{bottom:185.853333pt;}
.y14d_c00167{bottom:186.626667pt;}
.y14b_c00167{bottom:187.386667pt;}
.y149_c00167{bottom:188.933333pt;}
.y14a_c00167{bottom:190.466667pt;}
.y148_c00167{bottom:192.000000pt;}
.y146_c00167{bottom:201.213333pt;}
.y13e_c00167{bottom:205.826667pt;}
.y144_c00167{bottom:206.586667pt;}
.y13f_c00167{bottom:207.360000pt;}
.y145_c00167{bottom:208.893333pt;}
.y140_c00167{bottom:209.666667pt;}
.y142_c00167{bottom:210.426667pt;}
.y141_c00167{bottom:212.733333pt;}
.y143_c00167{bottom:215.040000pt;}
.y13d_c00167{bottom:220.413333pt;}
.y139_c00167{bottom:230.400000pt;}
.y136_c00167{bottom:231.173333pt;}
.y13c_c00167{bottom:231.933333pt;}
.y13a_c00167{bottom:232.706667pt;}
.y138_c00167{bottom:233.466667pt;}
.y13b_c00167{bottom:235.013333pt;}
.y137_c00167{bottom:236.546667pt;}
.y135_c00167{bottom:237.306667pt;}
.y133_c00167{bottom:238.080000pt;}
.y132_c00167{bottom:247.293333pt;}
.y134_c00167{bottom:249.600000pt;}
.y12b_c00167{bottom:253.440000pt;}
.y127_c00167{bottom:254.213333pt;}
.y12c_c00167{bottom:254.973333pt;}
.y126_c00167{bottom:255.746667pt;}
.y12e_c00167{bottom:258.053333pt;}
.y128_c00167{bottom:259.586667pt;}
.y129_c00167{bottom:260.346667pt;}
.y131_c00167{bottom:261.893333pt;}
.y12f_c00167{bottom:264.960000pt;}
.y12a_c00167{bottom:265.733333pt;}
.y12d_c00167{bottom:268.026667pt;}
.y130_c00167{bottom:269.573333pt;}
.y124_c00167{bottom:274.946667pt;}
.y123_c00167{bottom:275.706667pt;}
.y125_c00167{bottom:276.480000pt;}
.y122_c00167{bottom:278.013333pt;}
.y120_c00167{bottom:278.786667pt;}
.y121_c00167{bottom:280.320000pt;}
.y11f_c00167{bottom:294.146667pt;}
.y115_c00167{bottom:295.680000pt;}
.y118_c00167{bottom:296.453333pt;}
.y116_c00167{bottom:297.986667pt;}
.y11c_c00167{bottom:298.746667pt;}
.y11a_c00167{bottom:299.520000pt;}
.y117_c00167{bottom:301.053333pt;}
.y11d_c00167{bottom:302.586667pt;}
.y11b_c00167{bottom:307.973333pt;}
.y119_c00167{bottom:309.506667pt;}
.y11e_c00167{bottom:314.880000pt;}
.y10e_c00167{bottom:319.493333pt;}
.y110_c00167{bottom:321.026667pt;}
.y111_c00167{bottom:322.560000pt;}
.y112_c00167{bottom:323.333333pt;}
.y113_c00167{bottom:324.093333pt;}
.y10f_c00167{bottom:324.866667pt;}
.y114_c00167{bottom:332.546667pt;}
.y103_c00167{bottom:342.533333pt;}
.y104_c00167{bottom:343.293333pt;}
.y108_c00167{bottom:344.066667pt;}
.y106_c00167{bottom:344.826667pt;}
.y107_c00167{bottom:345.600000pt;}
.y10b_c00167{bottom:346.373333pt;}
.y105_c00167{bottom:347.906667pt;}
.y109_c00167{bottom:349.440000pt;}
.y10a_c00167{bottom:350.213333pt;}
.y10c_c00167{bottom:356.346667pt;}
.y10d_c00167{bottom:360.186667pt;}
.yf9_c00167{bottom:364.800000pt;}
.yf7_c00167{bottom:365.573333pt;}
.yfc_c00167{bottom:366.333333pt;}
.yf8_c00167{bottom:367.866667pt;}
.yfa_c00167{bottom:368.640000pt;}
.yfb_c00167{bottom:369.413333pt;}
.yfe_c00167{bottom:370.173333pt;}
.yfd_c00167{bottom:371.706667pt;}
.y101_c00167{bottom:374.013333pt;}
.yff_c00167{bottom:375.546667pt;}
.y100_c00167{bottom:377.853333pt;}
.y102_c00167{bottom:378.626667pt;}
.yec_c00167{bottom:384.773333pt;}
.yef_c00167{bottom:387.066667pt;}
.yee_c00167{bottom:387.840000pt;}
.yed_c00167{bottom:388.613333pt;}
.yf1_c00167{bottom:389.373333pt;}
.ye9_c00167{bottom:390.146667pt;}
.yea_c00167{bottom:390.906667pt;}
.yf6_c00167{bottom:391.680000pt;}
.yf0_c00167{bottom:392.453333pt;}
.yeb_c00167{bottom:393.213333pt;}
.yf2_c00167{bottom:394.746667pt;}
.yf3_c00167{bottom:397.053333pt;}
.yf4_c00167{bottom:400.893333pt;}
.yf5_c00167{bottom:407.040000pt;}
.yde_c00167{bottom:407.813333pt;}
.ydd_c00167{bottom:408.573333pt;}
.ydf_c00167{bottom:409.346667pt;}
.ye1_c00167{bottom:410.106667pt;}
.ye0_c00167{bottom:411.653333pt;}
.ye8_c00167{bottom:413.946667pt;}
.ye2_c00167{bottom:414.720000pt;}
.ye7_c00167{bottom:416.253333pt;}
.ye6_c00167{bottom:418.560000pt;}
.ye5_c00167{bottom:420.093333pt;}
.ye3_c00167{bottom:421.626667pt;}
.ydc_c00167{bottom:425.466667pt;}
.ye4_c00167{bottom:429.306667pt;}
.yd1_c00167{bottom:430.853333pt;}
.yd2_c00167{bottom:431.613333pt;}
.yd4_c00167{bottom:432.386667pt;}
.yd6_c00167{bottom:433.146667pt;}
.yd5_c00167{bottom:433.920000pt;}
.yd7_c00167{bottom:434.693333pt;}
.yd3_c00167{bottom:435.453333pt;}
.ydb_c00167{bottom:437.760000pt;}
.yda_c00167{bottom:438.533333pt;}
.yd8_c00167{bottom:440.066667pt;}
.yd9_c00167{bottom:440.826667pt;}
.yca_c00167{bottom:445.440000pt;}
.yc9_c00167{bottom:446.213333pt;}
.ycd_c00167{bottom:446.973333pt;}
.ycf_c00167{bottom:447.746667pt;}
.yce_c00167{bottom:448.506667pt;}
.ycc_c00167{bottom:449.280000pt;}
.ycb_c00167{bottom:450.053333pt;}
.yd0_c00167{bottom:453.120000pt;}
.yc3_c00167{bottom:453.893333pt;}
.yc1_c00167{bottom:454.653333pt;}
.yc4_c00167{bottom:455.426667pt;}
.yc2_c00167{bottom:457.733333pt;}
.yc6_c00167{bottom:458.493333pt;}
.yc0_c00167{bottom:459.266667pt;}
.yc5_c00167{bottom:460.800000pt;}
.yc8_c00167{bottom:461.573333pt;}
.yc7_c00167{bottom:462.333333pt;}
.yb9_c00167{bottom:464.640000pt;}
.yb8_c00167{bottom:466.173333pt;}
.ybe_c00167{bottom:466.946667pt;}
.ybd_c00167{bottom:467.706667pt;}
.ybc_c00167{bottom:468.480000pt;}
.yb7_c00167{bottom:469.253333pt;}
.yba_c00167{bottom:470.013333pt;}
.ybf_c00167{bottom:470.786667pt;}
.ybb_c00167{bottom:471.546667pt;}
.yb2_c00167{bottom:473.093333pt;}
.yb1_c00167{bottom:473.853333pt;}
.yae_c00167{bottom:474.626667pt;}
.yb6_c00167{bottom:475.386667pt;}
.yb0_c00167{bottom:476.160000pt;}
.yb3_c00167{bottom:476.933333pt;}
.yb5_c00167{bottom:477.693333pt;}
.yb4_c00167{bottom:479.226667pt;}
.yaf_c00167{bottom:480.773333pt;}
.y20_c00167{bottom:483.066667pt;}
.yaa_c00167{bottom:484.613333pt;}
.ya2_c00167{bottom:487.680000pt;}
.ya1_c00167{bottom:488.453333pt;}
.ya5_c00167{bottom:489.213333pt;}
.yac_c00167{bottom:489.986667pt;}
.yab_c00167{bottom:490.746667pt;}
.ya3_c00167{bottom:491.520000pt;}
.ya4_c00167{bottom:492.293333pt;}
.ya6_c00167{bottom:493.053333pt;}
.ya8_c00167{bottom:493.826667pt;}
.yad_c00167{bottom:494.586667pt;}
.ya9_c00167{bottom:495.360000pt;}
.ya7_c00167{bottom:496.133333pt;}
.y97_c00167{bottom:496.893333pt;}
.y9b_c00167{bottom:498.426667pt;}
.y9a_c00167{bottom:499.973333pt;}
.y9e_c00167{bottom:500.733333pt;}
.y9c_c00167{bottom:501.506667pt;}
.y98_c00167{bottom:502.266667pt;}
.y9d_c00167{bottom:503.813333pt;}
.y99_c00167{bottom:504.573333pt;}
.ya0_c00167{bottom:505.346667pt;}
.y9f_c00167{bottom:506.880000pt;}
.y91_c00167{bottom:522.240000pt;}
.y93_c00167{bottom:523.013333pt;}
.y90_c00167{bottom:523.773333pt;}
.y8f_c00167{bottom:524.546667pt;}
.y92_c00167{bottom:526.080000pt;}
.y95_c00167{bottom:536.066667pt;}
.y94_c00167{bottom:540.666667pt;}
.y96_c00167{bottom:545.280000pt;}
.y88_c00167{bottom:546.053333pt;}
.y89_c00167{bottom:546.813333pt;}
.y8c_c00167{bottom:547.586667pt;}
.y8e_c00167{bottom:548.346667pt;}
.y8a_c00167{bottom:549.120000pt;}
.y8b_c00167{bottom:551.426667pt;}
.y8d_c00167{bottom:552.960000pt;}
.y80_c00167{bottom:566.786667pt;}
.y82_c00167{bottom:567.546667pt;}
.y83_c00167{bottom:568.320000pt;}
.y85_c00167{bottom:569.093333pt;}
.y84_c00167{bottom:570.626667pt;}
.y7f_c00167{bottom:571.386667pt;}
.y86_c00167{bottom:572.160000pt;}
.y81_c00167{bottom:572.933333pt;}
.y87_c00167{bottom:575.226667pt;}
.y77_c00167{bottom:587.520000pt;}
.y79_c00167{bottom:588.293333pt;}
.y7b_c00167{bottom:589.053333pt;}
.y78_c00167{bottom:589.826667pt;}
.y7c_c00167{bottom:590.586667pt;}
.y76_c00167{bottom:592.893333pt;}
.y7e_c00167{bottom:594.426667pt;}
.y7a_c00167{bottom:595.973333pt;}
.y7d_c00167{bottom:599.813333pt;}
.y6e_c00167{bottom:609.786667pt;}
.y6f_c00167{bottom:610.560000pt;}
.y74_c00167{bottom:611.333333pt;}
.y75_c00167{bottom:612.093333pt;}
.y72_c00167{bottom:613.626667pt;}
.y71_c00167{bottom:614.400000pt;}
.y73_c00167{bottom:615.173333pt;}
.y6d_c00167{bottom:615.933333pt;}
.y70_c00167{bottom:616.706667pt;}
.y67_c00167{bottom:630.533333pt;}
.y6a_c00167{bottom:631.293333pt;}
.y68_c00167{bottom:632.066667pt;}
.y6c_c00167{bottom:632.826667pt;}
.y66_c00167{bottom:633.600000pt;}
.y69_c00167{bottom:634.373333pt;}
.y6b_c00167{bottom:638.973333pt;}
.y5f_c00167{bottom:650.493333pt;}
.y62_c00167{bottom:653.573333pt;}
.y60_c00167{bottom:654.333333pt;}
.y61_c00167{bottom:655.106667pt;}
.y63_c00167{bottom:656.640000pt;}
.y65_c00167{bottom:658.173333pt;}
.y64_c00167{bottom:661.253333pt;}
.y5e_c00167{bottom:666.626667pt;}
.y5a_c00167{bottom:675.066667pt;}
.y55_c00167{bottom:675.840000pt;}
.y5b_c00167{bottom:676.613333pt;}
.y5c_c00167{bottom:677.373333pt;}
.y5d_c00167{bottom:678.906667pt;}
.y59_c00167{bottom:680.453333pt;}
.y54_c00167{bottom:683.520000pt;}
.y57_c00167{bottom:689.666667pt;}
.y56_c00167{bottom:690.426667pt;}
.y58_c00167{bottom:694.266667pt;}
.y4c_c00167{bottom:695.040000pt;}
.y52_c00167{bottom:696.573333pt;}
.y51_c00167{bottom:697.346667pt;}
.y4f_c00167{bottom:698.880000pt;}
.y50_c00167{bottom:699.653333pt;}
.y4b_c00167{bottom:700.413333pt;}
.y4d_c00167{bottom:702.720000pt;}
.y4e_c00167{bottom:703.493333pt;}
.y53_c00167{bottom:704.253333pt;}
.y45_c00167{bottom:718.853333pt;}
.y49_c00167{bottom:719.613333pt;}
.y46_c00167{bottom:721.920000pt;}
.y4a_c00167{bottom:722.693333pt;}
.y44_c00167{bottom:724.226667pt;}
.y47_c00167{bottom:724.986667pt;}
.y48_c00167{bottom:725.760000pt;}
.y3f_c00167{bottom:738.813333pt;}
.y41_c00167{bottom:741.120000pt;}
.y43_c00167{bottom:741.893333pt;}
.y42_c00167{bottom:744.960000pt;}
.y3e_c00167{bottom:745.733333pt;}
.y40_c00167{bottom:746.493333pt;}
.y37_c00167{bottom:761.853333pt;}
.y39_c00167{bottom:762.626667pt;}
.y3b_c00167{bottom:763.386667pt;}
.y38_c00167{bottom:764.933333pt;}
.y3a_c00167{bottom:769.533333pt;}
.y3c_c00167{bottom:771.066667pt;}
.y3d_c00167{bottom:774.146667pt;}
.y2d_c00167{bottom:783.360000pt;}
.y30_c00167{bottom:784.893333pt;}
.y34_c00167{bottom:785.666667pt;}
.y35_c00167{bottom:786.426667pt;}
.y31_c00167{bottom:787.200000pt;}
.y36_c00167{bottom:788.733333pt;}
.y2f_c00167{bottom:790.266667pt;}
.y32_c00167{bottom:791.813333pt;}
.y33_c00167{bottom:792.573333pt;}
.y2e_c00167{bottom:794.880000pt;}
.y28_c00167{bottom:806.400000pt;}
.y26_c00167{bottom:807.933333pt;}
.y29_c00167{bottom:808.706667pt;}
.y25_c00167{bottom:811.013333pt;}
.y24_c00167{bottom:812.546667pt;}
.y27_c00167{bottom:813.306667pt;}
.y2b_c00167{bottom:814.853333pt;}
.y2c_c00167{bottom:815.613333pt;}
.y2a_c00167{bottom:828.666667pt;}
.y21_c00167{bottom:838.653333pt;}
.y23_c00167{bottom:839.426667pt;}
.y22_c00167{bottom:840.186667pt;}
.y15f_c00167{bottom:840.960000pt;}
.y1b_c00167{bottom:871.680000pt;}
.y1a_c00167{bottom:873.213333pt;}
.y1c_c00167{bottom:877.053333pt;}
.y1e_c00167{bottom:877.826667pt;}
.y1f_c00167{bottom:880.133333pt;}
.y1d_c00167{bottom:898.560000pt;}
.y17_c00167{bottom:900.866667pt;}
.y19_c00167{bottom:907.013333pt;}
.y18_c00167{bottom:907.773333pt;}
.y15_c00167{bottom:936.960000pt;}
.y13_c00167{bottom:938.493333pt;}
.y16_c00167{bottom:940.026667pt;}
.y14_c00167{bottom:940.800000pt;}
.y12_c00167{bottom:946.173333pt;}
.ye_c00167{bottom:962.306667pt;}
.yf_c00167{bottom:963.840000pt;}
.yd_c00167{bottom:966.906667pt;}
.y10_c00167{bottom:967.680000pt;}
.ya_c00167{bottom:969.213333pt;}
.y11_c00167{bottom:970.746667pt;}
.yb_c00167{bottom:973.826667pt;}
.yc_c00167{bottom:989.186667pt;}
.y3_c00167{bottom:1003.773333pt;}
.y5_c00167{bottom:1018.373333pt;}
.y4_c00167{bottom:1019.133333pt;}
.y7_c00167{bottom:1019.906667pt;}
.y9_c00167{bottom:1021.440000pt;}
.y8_c00167{bottom:1022.973333pt;}
.y6_c00167{bottom:1026.053333pt;}
.y2_c00167{bottom:1218.053333pt;}
.y1_c00167{bottom:1220.346667pt;}
.h12_c00167{height:2.764500pt;}
.h14_c00167{height:4.799479pt;}
.h2_c00167{height:5.519401pt;}
.ha_c00167{height:8.303099pt;}
.h32_c00167{height:8.897833pt;}
.h1e_c00167{height:11.038802pt;}
.h3_c00167{height:13.822500pt;}
.h15_c00167{height:16.606198pt;}
.h13_c00167{height:19.341901pt;}
.h2c_c00167{height:22.125599pt;}
.h31_c00167{height:24.861302pt;}
.h2b_c00167{height:27.645000pt;}
.h1f_c00167{height:30.428698pt;}
.h2e_c00167{height:33.164401pt;}
.h30_c00167{height:35.948099pt;}
.h2f_c00167{height:38.683802pt;}
.h4_c00167{height:41.467500pt;}
.h26_c00167{height:44.251198pt;}
.h28_c00167{height:46.986901pt;}
.h2d_c00167{height:49.770599pt;}
.h23_c00167{height:52.506302pt;}
.h29_c00167{height:55.290000pt;}
.h17_c00167{height:58.073698pt;}
.h18_c00167{height:60.809401pt;}
.h20_c00167{height:63.593099pt;}
.h21_c00167{height:66.328802pt;}
.h1a_c00167{height:69.112500pt;}
.h27_c00167{height:71.896198pt;}
.h2a_c00167{height:74.631901pt;}
.h1d_c00167{height:77.415599pt;}
.h1b_c00167{height:80.151302pt;}
.h16_c00167{height:82.935000pt;}
.h24_c00167{height:85.718698pt;}
.h25_c00167{height:88.454401pt;}
.h22_c00167{height:91.238099pt;}
.h1c_c00167{height:93.973802pt;}
.h19_c00167{height:96.757500pt;}
.hf_c00167{height:105.060599pt;}
.h10_c00167{height:110.580000pt;}
.h11_c00167{height:116.099401pt;}
.he_c00167{height:129.921901pt;}
.hc_c00167{height:132.705599pt;}
.h5_c00167{height:138.225000pt;}
.hd_c00167{height:141.008698pt;}
.h7_c00167{height:146.528099pt;}
.h9_c00167{height:154.831198pt;}
.hb_c00167{height:157.566901pt;}
.h6_c00167{height:165.870000pt;}
.h8_c00167{height:168.653698pt;}
.h1_c00167{height:1336.000000pt;}
.h0_c00167{height:1336.320000pt;}
.w0_c00167{width:983.040000pt;}
.w1_c00167{width:983.333333pt;}
.x0_c00167{left:0.000000pt;}
.x2a_c00167{left:104.453333pt;}
.x3_c00167{left:122.880000pt;}
.x1_c00167{left:158.213333pt;}
.x2_c00167{left:173.573333pt;}
.x2b_c00167{left:182.785493pt;}
.x6b_c00167{left:198.146667pt;}
.x71_c00167{left:202.746667pt;}
.x4_c00167{left:205.053333pt;}
.x5a_c00167{left:206.586667pt;}
.x6c_c00167{left:210.426667pt;}
.x72_c00167{left:211.973333pt;}
.x7a_c00167{left:213.506667pt;}
.x62_c00167{left:215.040000pt;}
.xb3_c00167{left:216.573333pt;}
.xf6_c00167{left:218.106667pt;}
.x63_c00167{left:223.493333pt;}
.x103_c00167{left:225.026304pt;}
.x101_c00167{left:230.400000pt;}
.xf_c00167{left:231.933333pt;}
.xb8_c00167{left:233.466667pt;}
.x104_c00167{left:240.386667pt;}
.x5_c00167{left:242.693333pt;}
.x90_c00167{left:248.066667pt;}
.xf3_c00167{left:249.600000pt;}
.x54_c00167{left:251.133333pt;}
.x64_c00167{left:253.440000pt;}
.x1a_c00167{left:254.973333pt;}
.x7b_c00167{left:256.506667pt;}
.xb9_c00167{left:259.586667pt;}
.x73_c00167{left:261.893333pt;}
.xba_c00167{left:264.960000pt;}
.x1b_c00167{left:268.026667pt;}
.xf7_c00167{left:270.333333pt;}
.xdd_c00167{left:272.640000pt;}
.x2f_c00167{left:274.173333pt;}
.x65_c00167{left:276.480000pt;}
.x14_c00167{left:278.786667pt;}
.x98_c00167{left:281.093333pt;}
.xd7_c00167{left:284.160000pt;}
.x83_c00167{left:285.693333pt;}
.x105_c00167{left:288.773333pt;}
.x20_c00167{left:291.066667pt;}
.x28_c00167{left:293.373333pt;}
.xff_c00167{left:294.906667pt;}
.x6_c00167{left:296.453333pt;}
.x74_c00167{left:297.986667pt;}
.xd0_c00167{left:300.293333pt;}
.x29_c00167{left:302.586667pt;}
.x10_c00167{left:306.426667pt;}
.xa9_c00167{left:308.733333pt;}
.x66_c00167{left:311.813333pt;}
.xc8_c00167{left:314.106667pt;}
.xb4_c00167{left:320.253333pt;}
.xed_c00167{left:323.333333pt;}
.x3b_c00167{left:324.866667pt;}
.x15_c00167{left:327.173333pt;}
.xc2_c00167{left:331.013333pt;}
.x6d_c00167{left:334.080000pt;}
.x16_c00167{left:336.386667pt;}
.x114_c00167{left:338.693333pt;}
.x3c_c00167{left:340.226667pt;}
.x24_c00167{left:345.600000pt;}
.x7_c00167{left:350.973333pt;}
.x30_c00167{left:352.506667pt;}
.xa3_c00167{left:354.053333pt;}
.xbb_c00167{left:355.586667pt;}
.x7c_c00167{left:357.120000pt;}
.x5b_c00167{left:358.653333pt;}
.x84_c00167{left:360.186667pt;}
.xbc_c00167{left:364.800600pt;}
.x31_c00167{left:366.333333pt;}
.x106_c00167{left:368.640000pt;}
.xe3_c00167{left:372.480000pt;}
.xf8_c00167{left:374.786667pt;}
.xa4_c00167{left:380.160000pt;}
.xf9_c00167{left:381.693333pt;}
.x10c_c00167{left:383.226667pt;}
.x32_c00167{left:384.773333pt;}
.x3d_c00167{left:387.066667pt;}
.x85_c00167{left:388.613333pt;}
.xc9_c00167{left:390.146667pt;}
.xe4_c00167{left:391.680000pt;}
.xf4_c00167{left:394.746667pt;}
.x5c_c00167{left:396.293333pt;}
.xca_c00167{left:397.826667pt;}
.x67_c00167{left:399.360000pt;}
.x6e_c00167{left:402.426667pt;}
.xde_c00167{left:403.973333pt;}
.x9e_c00167{left:405.506667pt;}
.x21_c00167{left:408.573333pt;}
.x5d_c00167{left:410.106667pt;}
.x99_c00167{left:411.653333pt;}
.x91_c00167{left:415.493333pt;}
.x33_c00167{left:417.026667pt;}
.x4c_c00167{left:418.560000pt;}
.x25_c00167{left:420.093333pt;}
.xaa_c00167{left:422.400000pt;}
.x7d_c00167{left:423.933333pt;}
.x86_c00167{left:427.773333pt;}
.xc3_c00167{left:430.853333pt;}
.x1c_c00167{left:433.146667pt;}
.x7e_c00167{left:436.226667pt;}
.x3e_c00167{left:437.760000pt;}
.xfa_c00167{left:440.066667pt;}
.x75_c00167{left:441.600000pt;}
.x46_c00167{left:443.906667pt;}
.x1d_c00167{left:446.213333pt;}
.xab_c00167{left:449.280000pt;}
.xd1_c00167{left:451.586667pt;}
.x8_c00167{left:463.106667pt;}
.x87_c00167{left:464.640000pt;}
.xbd_c00167{left:466.946667pt;}
.x9f_c00167{left:468.480000pt;}
.x1e_c00167{left:470.786667pt;}
.x34_c00167{left:475.386667pt;}
.x55_c00167{left:476.933333pt;}
.x4d_c00167{left:478.466667pt;}
.x100_c00167{left:481.533333pt;}
.x76_c00167{left:485.373333pt;}
.x7f_c00167{left:486.906667pt;}
.x11_c00167{left:489.213333pt;}
.x47_c00167{left:491.520000pt;}
.x35_c00167{left:494.586667pt;}
.x3f_c00167{left:497.666667pt;}
.x36_c00167{left:499.200000pt;}
.xe5_c00167{left:502.266667pt;}
.x6f_c00167{left:504.573333pt;}
.x4e_c00167{left:506.106667pt;}
.x22_c00167{left:507.653333pt;}
.x92_c00167{left:509.186667pt;}
.xfb_c00167{left:510.720000pt;}
.xd8_c00167{left:513.026667pt;}
.x40_c00167{left:514.560000pt;}
.xa5_c00167{left:516.866667pt;}
.x56_c00167{left:518.400000pt;}
.xac_c00167{left:520.706667pt;}
.x10d_c00167{left:522.240000pt;}
.x37_c00167{left:524.546667pt;}
.x109_c00167{left:526.080000pt;}
.x5e_c00167{left:527.613333pt;}
.xee_c00167{left:529.920000pt;}
.xb5_c00167{left:532.986667pt;}
.x80_c00167{left:536.826667pt;}
.xcb_c00167{left:539.906667pt;}
.x88_c00167{left:543.746667pt;}
.x1f_c00167{left:545.280000pt;}
.xbe_c00167{left:547.586667pt;}
.x9_c00167{left:549.893333pt;}
.xef_c00167{left:552.960000pt;}
.x26_c00167{left:554.493333pt;}
.x89_c00167{left:556.800000pt;}
.xd2_c00167{left:558.333333pt;}
.x2c_c00167{left:562.173333pt;}
.x2d_c00167{left:563.706667pt;}
.x41_c00167{left:565.253333pt;}
.x2e_c00167{left:566.786667pt;}
.xa0_c00167{left:569.093333pt;}
.x68_c00167{left:571.386667pt;}
.x17_c00167{left:576.000000pt;}
.xa_c00167{left:577.533333pt;}
.xcc_c00167{left:579.066667pt;}
.x38_c00167{left:580.613333pt;}
.x23_c00167{left:585.213333pt;}
.x93_c00167{left:587.520000pt;}
.x107_c00167{left:589.053333pt;}
.xa1_c00167{left:592.133333pt;}
.x4f_c00167{left:593.666667pt;}
.x5f_c00167{left:596.733333pt;}
.x48_c00167{left:598.266667pt;}
.x10a_c00167{left:599.813333pt;}
.x77_c00167{left:602.106667pt;}
.x42_c00167{left:604.413333pt;}
.xe6_c00167{left:606.720000pt;}
.x57_c00167{left:608.253333pt;}
.x102_c00167{left:609.786667pt;}
.xf0_c00167{left:612.093333pt;}
.xa6_c00167{left:615.933333pt;}
.xc4_c00167{left:618.240000pt;}
.xb_c00167{left:619.773333pt;}
.x10b_c00167{left:622.080000pt;}
.x50_c00167{left:626.693333pt;}
.x49_c00167{left:632.066667pt;}
.xad_c00167{left:633.600000pt;}
.x9a_c00167{left:635.133333pt;}
.xcd_c00167{left:636.666667pt;}
.xc5_c00167{left:641.280000pt;}
.x78_c00167{left:645.893333pt;}
.x10e_c00167{left:647.426667pt;}
.xae_c00167{left:648.960000pt;}
.x69_c00167{left:650.493333pt;}
.xc_c00167{left:652.800000pt;}
.x8a_c00167{left:655.866667pt;}
.xfc_c00167{left:657.413333pt;}
.x10f_c00167{left:658.946667pt;}
.x43_c00167{left:661.253333pt;}
.x51_c00167{left:664.320000pt;}
.x110_c00167{left:666.626667pt;}
.x60_c00167{left:670.466667pt;}
.xbf_c00167{left:678.146667pt;}
.xf1_c00167{left:679.680000pt;}
.x27_c00167{left:681.213333pt;}
.x111_c00167{left:683.520000pt;}
.x8b_c00167{left:687.360000pt;}
.x108_c00167{left:688.893333pt;}
.x39_c00167{left:690.426667pt;}
.x58_c00167{left:694.266667pt;}
.xd_c00167{left:697.346667pt;}
.xf2_c00167{left:698.880000pt;}
.x94_c00167{left:700.413333pt;}
.xce_c00167{left:703.493333pt;}
.xfd_c00167{left:705.026667pt;}
.x61_c00167{left:706.560000pt;}
.x3a_c00167{left:708.866667pt;}
.x18_c00167{left:711.173333pt;}
.x4a_c00167{left:713.466667pt;}
.x6a_c00167{left:716.546667pt;}
.x112_c00167{left:721.146667pt;}
.x44_c00167{left:723.453333pt;}
.xaf_c00167{left:725.760000pt;}
.x59_c00167{left:730.373333pt;}
.xc0_c00167{left:732.666667pt;}
.x19_c00167{left:734.973333pt;}
.x70_c00167{left:737.280000pt;}
.xb0_c00167{left:739.586667pt;}
.x79_c00167{left:741.893333pt;}
.x52_c00167{left:743.426667pt;}
.x113_c00167{left:745.733333pt;}
.x8c_c00167{left:748.800000pt;}
.xe_c00167{left:750.333333pt;}
.x81_c00167{left:751.866667pt;}
.xc6_c00167{left:757.253333pt;}
.xe7_c00167{left:764.160000pt;}
.xd3_c00167{left:765.693333pt;}
.xb1_c00167{left:768.000000pt;}
.x12_c00167{left:776.453333pt;}
.xc1_c00167{left:782.586667pt;}
.xfe_c00167{left:785.666667pt;}
.x45_c00167{left:787.200000pt;}
.x8d_c00167{left:789.506667pt;}
.xdf_c00167{left:791.813333pt;}
.x13_c00167{left:793.346667pt;}
.x53_c00167{left:794.880000pt;}
.x4b_c00167{left:797.186667pt;}
.x8e_c00167{left:799.493333pt;}
.xa7_c00167{left:801.786667pt;}
.x82_c00167{left:804.093333pt;}
.xd9_c00167{left:806.400043pt;}
.xe8_c00167{left:807.933333pt;}
.xb6_c00167{left:811.013333pt;}
.xa8_c00167{left:813.306667pt;}
.xd4_c00167{left:814.853333pt;}
.xcf_c00167{left:817.147067pt;}
.xb2_c00167{left:818.693333pt;}
.xda_c00167{left:824.066667pt;}
.xd5_c00167{left:830.973333pt;}
.xe0_c00167{left:832.506667pt;}
.xb7_c00167{left:837.893333pt;}
.x8f_c00167{left:839.426667pt;}
.xe9_c00167{left:841.733333pt;}
.x9b_c00167{left:846.333333pt;}
.xdb_c00167{left:856.320000pt;}
.xd6_c00167{left:858.626667pt;}
.xea_c00167{left:860.160000pt;}
.xdc_c00167{left:864.000000pt;}
.xa2_c00167{left:867.840000pt;}
.xc7_c00167{left:875.520000pt;}
.xe1_c00167{left:877.053333pt;}
.xf5_c00167{left:878.586667pt;}
.x9c_c00167{left:880.133333pt;}
.x95_c00167{left:884.733333pt;}
.xeb_c00167{left:887.040000pt;}
.x96_c00167{left:892.413333pt;}
.xec_c00167{left:894.720000pt;}
.x9d_c00167{left:896.253333pt;}
.xe2_c00167{left:900.093333pt;}
.x97_c00167{left:903.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bec5f0d62a25d7f866ebc9ef.woff2')format("woff");}.ff1_c00168{font-family:ff1_c00168;line-height:1.109863;font-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_c00168{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m215_c00168{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);}
.m258_c00168{transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);}
.m222_c00168{transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);}
.m5c_c00168{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00168{transform:matrix(0.064325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064325,0.000000,0.000000,0.250000,0,0);}
.m17e_c00168{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.m1e9_c00168{transform:matrix(0.073425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073425,0.000000,0.000000,0.250000,0,0);}
.m1f1_c00168{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);}
.m29_c00168{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);}
.mc_c00168{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m1df_c00168{transform:matrix(0.085525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085525,0.000000,0.000000,0.250000,0,0);}
.m149_c00168{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.me8_c00168{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m191_c00168{transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);}
.m1d2_c00168{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00168{transform:matrix(0.094025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094025,0.000000,0.000000,0.250000,0,0);}
.mc7_c00168{transform:matrix(0.096650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096650,0.000000,0.000000,0.250000,0,0);}
.m148_c00168{transform:matrix(0.097200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097200,0.000000,0.000000,0.250000,0,0);}
.m175_c00168{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.m1e6_c00168{transform:matrix(0.100250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100250,0.000000,0.000000,0.250000,0,0);}
.m15a_c00168{transform:matrix(0.100725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100725,0.000000,0.000000,0.250000,0,0);}
.m1e0_c00168{transform:matrix(0.102325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102325,0.000000,0.000000,0.250000,0,0);}
.m212_c00168{transform:matrix(0.103700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103700,0.000000,0.000000,0.250000,0,0);}
.m13c_c00168{transform:matrix(0.103950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103950,0.000000,0.000000,0.250000,0,0);}
.mf8_c00168{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);}
.mfa_c00168{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m13b_c00168{transform:matrix(0.107725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107725,0.000000,0.000000,0.250000,0,0);}
.m78_c00168{transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);}
.m74_c00168{transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);}
.m7_c00168{transform:matrix(0.108950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108950,0.000000,0.000000,0.250000,0,0);}
.m208_c00168{transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);}
.m2f_c00168{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m131_c00168{transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);}
.m21b_c00168{transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);}
.m1d_c00168{transform:matrix(0.113875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113875,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00168{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00168{transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);}
.m217_c00168{transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);}
.m20_c00168{transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117250,0.000000,0.000000,0.250000,0,0);}
.m1c4_c00168{transform:matrix(0.117275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117275,0.000000,0.000000,0.250000,0,0);}
.mfb_c00168{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);}
.m214_c00168{transform:matrix(0.118725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118725,0.000000,0.000000,0.250000,0,0);}
.m10c_c00168{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m16b_c00168{transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00168{transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);}
.m12e_c00168{transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);}
.ma0_c00168{transform:matrix(0.120225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120225,0.000000,0.000000,0.250000,0,0);}
.ma8_c00168{transform:matrix(0.121050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121050,0.000000,0.000000,0.250000,0,0);}
.m166_c00168{transform:matrix(0.121275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121275,0.000000,0.000000,0.250000,0,0);}
.m213_c00168{transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);}
.m204_c00168{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);}
.m1cc_c00168{transform:matrix(0.122200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122200,0.000000,0.000000,0.250000,0,0);}
.m242_c00168{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);}
.m172_c00168{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);}
.m19_c00168{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m10a_c00168{transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);}
.med_c00168{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m19e_c00168{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m12b_c00168{transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);}
.m250_c00168{transform:matrix(0.125400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125400,0.000000,0.000000,0.250000,0,0);}
.m103_c00168{transform:matrix(0.125775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125775,0.000000,0.000000,0.250000,0,0);}
.m7e_c00168{transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);}
.mde_c00168{transform:matrix(0.126625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126625,0.000000,0.000000,0.250000,0,0);}
.m28_c00168{transform:matrix(0.127425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127425,0.000000,0.000000,0.250000,0,0);}
.m140_c00168{transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);}
.mbd_c00168{transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);}
.m14b_c00168{transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);}
.m244_c00168{transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);}
.m6_c00168{transform:matrix(0.128775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128775,0.000000,0.000000,0.250000,0,0);}
.m14f_c00168{transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);}
.mb5_c00168{transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);}
.mb1_c00168{transform:matrix(0.129700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129700,0.000000,0.000000,0.250000,0,0);}
.m157_c00168{transform:matrix(0.130025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130025,0.000000,0.000000,0.250000,0,0);}
.m21f_c00168{transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);}
.m22a_c00168{transform:matrix(0.130300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130300,0.000000,0.000000,0.250000,0,0);}
.m153_c00168{transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);}
.m1d7_c00168{transform:matrix(0.131100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131100,0.000000,0.000000,0.250000,0,0);}
.m207_c00168{transform:matrix(0.131475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131475,0.000000,0.000000,0.250000,0,0);}
.m1fa_c00168{transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);}
.mbb_c00168{transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);}
.m147_c00168{transform:matrix(0.131875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131875,0.000000,0.000000,0.250000,0,0);}
.m120_c00168{transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);}
.m11e_c00168{transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);}
.m27_c00168{transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);}
.m177_c00168{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.m219_c00168{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);}
.m174_c00168{transform:matrix(0.134550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134550,0.000000,0.000000,0.250000,0,0);}
.mc8_c00168{transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00168{transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);}
.m11d_c00168{transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);}
.mec_c00168{transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);}
.m104_c00168{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m1bc_c00168{transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);}
.m95_c00168{transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);}
.mcd_c00168{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m246_c00168{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);}
.m110_c00168{transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);}
.m216_c00168{transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);}
.mc5_c00168{transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00168{transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);}
.m241_c00168{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);}
.m113_c00168{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.m1e5_c00168{transform:matrix(0.138600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138600,0.000000,0.000000,0.250000,0,0);}
.m7d_c00168{transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);}
.m80_c00168{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.m198_c00168{transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);}
.m26_c00168{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m9_c00168{transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);}
.m193_c00168{transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);}
.m7b_c00168{transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);}
.m223_c00168{transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);}
.m1c_c00168{transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);}
.m1fb_c00168{transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);}
.m24a_c00168{transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);}
.m17c_c00168{transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);}
.m225_c00168{transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);}
.m41_c00168{transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);}
.m0_c00168{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1f9_c00168{transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);}
.m152_c00168{transform:matrix(0.144150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144150,0.000000,0.000000,0.250000,0,0);}
.mce_c00168{transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00168{transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);}
.m145_c00168{transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);}
.m243_c00168{transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);}
.m11_c00168{transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);}
.mad_c00168{transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);}
.m72_c00168{transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);}
.m121_c00168{transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);}
.m1cb_c00168{transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);}
.m221_c00168{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);}
.m22c_c00168{transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);}
.m1cd_c00168{transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);}
.m115_c00168{transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);}
.m179_c00168{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m16f_c00168{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.m12a_c00168{transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);}
.me9_c00168{transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);}
.m252_c00168{transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);}
.m162_c00168{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m197_c00168{transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);}
.m176_c00168{transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);}
.m9c_c00168{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);}
.m1f8_c00168{transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);}
.m18b_c00168{transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);}
.m236_c00168{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m128_c00168{transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);}
.m143_c00168{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.m210_c00168{transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);}
.m15b_c00168{transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);}
.m195_c00168{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00168{transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);}
.mf_c00168{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);}
.me7_c00168{transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);}
.m11b_c00168{transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);}
.m234_c00168{transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);}
.m130_c00168{transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);}
.m233_c00168{transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);}
.m133_c00168{transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);}
.m226_c00168{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.m99_c00168{transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);}
.m22b_c00168{transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);}
.m190_c00168{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.m1ca_c00168{transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);}
.ma4_c00168{transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);}
.m1e4_c00168{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.m76_c00168{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.m124_c00168{transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);}
.m245_c00168{transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);}
.m14c_c00168{transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);}
.mc1_c00168{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.m13_c00168{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.ma1_c00168{transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);}
.m132_c00168{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.md_c00168{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.m235_c00168{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.m161_c00168{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.mc0_c00168{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m8_c00168{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m13d_c00168{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);}
.m237_c00168{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m122_c00168{transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);}
.m1fc_c00168{transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);}
.m23e_c00168{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m8c_c00168{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.mae_c00168{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.m22d_c00168{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);}
.m138_c00168{transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);}
.m159_c00168{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m9f_c00168{transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);}
.m134_c00168{transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);}
.m192_c00168{transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);}
.mcb_c00168{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.m248_c00168{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.mbe_c00168{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m227_c00168{transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);}
.mac_c00168{transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);}
.m144_c00168{transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);}
.ma_c00168{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m1fd_c00168{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.m16e_c00168{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.me_c00168{transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);}
.maa_c00168{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.m218_c00168{transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);}
.m232_c00168{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.m1ec_c00168{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.m160_c00168{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m229_c00168{transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);}
.m10b_c00168{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.m6a_c00168{transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);}
.m6b_c00168{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m169_c00168{transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);}
.m187_c00168{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);}
.m1a6_c00168{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m178_c00168{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m196_c00168{transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);}
.m2a_c00168{transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);}
.m24_c00168{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.m108_c00168{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.m1f4_c00168{transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);}
.mc4_c00168{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.mea_c00168{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m1c8_c00168{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m24d_c00168{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);}
.m21d_c00168{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.m17a_c00168{transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);}
.m11f_c00168{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m64_c00168{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00168{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m228_c00168{transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);}
.mb6_c00168{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00168{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m6c_c00168{transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);}
.m253_c00168{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00168{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.m9e_c00168{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);}
.m20f_c00168{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m224_c00168{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00168{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m1c6_c00168{transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);}
.m1eb_c00168{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.maf_c00168{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m23a_c00168{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m24f_c00168{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);}
.m17f_c00168{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m126_c00168{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);}
.m15d_c00168{transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);}
.m206_c00168{transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);}
.m1c9_c00168{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m20a_c00168{transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);}
.mf7_c00168{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m173_c00168{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);}
.m112_c00168{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);}
.m1e8_c00168{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m170_c00168{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m16d_c00168{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.mb2_c00168{transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);}
.m150_c00168{transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);}
.m1ee_c00168{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.m15c_c00168{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m47_c00168{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m12c_c00168{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m8e_c00168{transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);}
.m17_c00168{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m135_c00168{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);}
.m123_c00168{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00168{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m141_c00168{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);}
.mb7_c00168{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m202_c00168{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m79_c00168{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.m15_c00168{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.m1ff_c00168{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m21e_c00168{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00168{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);}
.m1f3_c00168{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);}
.m63_c00168{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m23b_c00168{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.m201_c00168{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m15e_c00168{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);}
.m1d1_c00168{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m13a_c00168{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);}
.mdb_c00168{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.m1f0_c00168{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);}
.m20c_c00168{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00168{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m247_c00168{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);}
.m7a_c00168{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);}
.mb9_c00168{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00168{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00168{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m11c_c00168{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m1c7_c00168{transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);}
.m158_c00168{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);}
.m22e_c00168{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m1e3_c00168{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m93_c00168{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);}
.mbc_c00168{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);}
.m185_c00168{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m9d_c00168{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);}
.me4_c00168{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m255_c00168{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m1f2_c00168{transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);}
.m4d_c00168{transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);}
.m239_c00168{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);}
.m205_c00168{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1da_c00168{transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);}
.m19b_c00168{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);}
.ma3_c00168{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m22f_c00168{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);}
.m163_c00168{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m61_c00168{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);}
.m70_c00168{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);}
.m1d6_c00168{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.m1e7_c00168{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);}
.m1e1_c00168{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);}
.m20d_c00168{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.mb4_c00168{transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);}
.m69_c00168{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m17b_c00168{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);}
.m12_c00168{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.m111_c00168{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m220_c00168{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.m151_c00168{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);}
.m8d_c00168{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);}
.m209_c00168{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00168{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.m1ce_c00168{transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);}
.m98_c00168{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);}
.m24b_c00168{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.ma5_c00168{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);}
.m66_c00168{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m1d9_c00168{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);}
.m42_c00168{transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);}
.m9b_c00168{transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);}
.m251_c00168{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m14e_c00168{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);}
.m1dc_c00168{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);}
.m186_c00168{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);}
.m73_c00168{transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);}
.m129_c00168{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.m7f_c00168{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.mca_c00168{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00168{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);}
.m194_c00168{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00168{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.mf1_c00168{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.mb3_c00168{transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);}
.mbf_c00168{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m18c_c00168{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m1be_c00168{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);}
.m199_c00168{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);}
.m20b_c00168{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.m1c3_c00168{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m1ed_c00168{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);}
.m21a_c00168{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m1c0_c00168{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);}
.m10e_c00168{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.mf0_c00168{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00168{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m23d_c00168{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);}
.m18_c00168{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.m200_c00168{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);}
.m23c_c00168{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m256_c00168{transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);}
.m1d4_c00168{transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);}
.m48_c00168{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);}
.m137_c00168{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m107_c00168{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);}
.m1ba_c00168{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);}
.m211_c00168{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mf5_c00168{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);}
.m6f_c00168{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);}
.m54_c00168{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);}
.m13e_c00168{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);}
.m16a_c00168{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);}
.m189_c00168{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.mab_c00168{transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);}
.m30_c00168{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.mda_c00168{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m167_c00168{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.me0_c00168{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);}
.ma7_c00168{transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);}
.mc2_c00168{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m1b9_c00168{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m75_c00168{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);}
.m25_c00168{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);}
.m156_c00168{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.m21c_c00168{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m230_c00168{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m91_c00168{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m14d_c00168{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m4b_c00168{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);}
.m1dd_c00168{transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00168{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m118_c00168{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.m231_c00168{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);}
.m90_c00168{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m105_c00168{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);}
.m171_c00168{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.m6e_c00168{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);}
.mf2_c00168{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m62_c00168{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);}
.m1bd_c00168{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m1af_c00168{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);}
.m19f_c00168{transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);}
.m24e_c00168{transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);}
.mf3_c00168{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);}
.m14_c00168{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.ma6_c00168{transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);}
.m1bf_c00168{transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00168{transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);}
.m18a_c00168{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.m10f_c00168{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.me1_c00168{transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);}
.m45_c00168{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1fe_c00168{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m254_c00168{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.md5_c00168{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);}
.m18d_c00168{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m50_c00168{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);}
.m1c5_c00168{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);}
.m32_c00168{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);}
.m71_c00168{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.m18f_c00168{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);}
.m23f_c00168{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.m249_c00168{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.m238_c00168{transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);}
.m117_c00168{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m1f_c00168{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.mdf_c00168{transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);}
.m17d_c00168{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);}
.m16c_c00168{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);}
.m1bb_c00168{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.m146_c00168{transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);}
.m77_c00168{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);}
.m12f_c00168{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m155_c00168{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.m1c1_c00168{transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);}
.mb0_c00168{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m106_c00168{transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);}
.m3a_c00168{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);}
.mf9_c00168{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.ma9_c00168{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);}
.m1e2_c00168{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);}
.m240_c00168{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);}
.m23_c00168{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);}
.mdc_c00168{transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);}
.mf6_c00168{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.m51_c00168{transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);}
.m125_c00168{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);}
.m1cf_c00168{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m114_c00168{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);}
.m127_c00168{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);}
.mc9_c00168{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);}
.m139_c00168{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);}
.m49_c00168{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);}
.m16_c00168{transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);}
.m164_c00168{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);}
.m13f_c00168{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.mc6_c00168{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);}
.m33_c00168{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);}
.m1db_c00168{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);}
.mb8_c00168{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);}
.m24c_c00168{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m67_c00168{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m136_c00168{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m119_c00168{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m1de_c00168{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m52_c00168{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m96_c00168{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);}
.m18e_c00168{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m22_c00168{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);}
.m55_c00168{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);}
.md4_c00168{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);}
.m8f_c00168{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);}
.m65_c00168{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00168{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00168{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00168{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);}
.m92_c00168{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00168{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);}
.m35_c00168{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);}
.mc3_c00168{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00168{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_c00168{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19a_c00168{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2_c00168{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);}
.m81_c00168{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m109_c00168{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);}
.m2c_c00168{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);}
.m165_c00168{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00168{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m31_c00168{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00168{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mef_c00168{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);}
.mf4_c00168{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mba_c00168{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00168{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00168{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m86_c00168{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m154_c00168{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00168{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m43_c00168{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m88_c00168{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);}
.md0_c00168{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00168{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00168{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m53_c00168{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);}
.mff_c00168{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);}
.m37_c00168{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00168{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);}
.m21_c00168{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00168{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1d3_c00168{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c00168{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);}
.m168_c00168{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m40_c00168{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);}
.m85_c00168{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1f7_c00168{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m180_c00168{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);}
.m1c2_c00168{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m44_c00168{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m188_c00168{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.md9_c00168{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);}
.m15f_c00168{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m14a_c00168{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);}
.m181_c00168{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.meb_c00168{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);}
.mdd_c00168{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5_c00168{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m184_c00168{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m46_c00168{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m19d_c00168{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);}
.m5d_c00168{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m68_c00168{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m182_c00168{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m58_c00168{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m100_c00168{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m59_c00168{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);}
.m87_c00168{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m38_c00168{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.me3_c00168{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m84_c00168{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);}
.m4c_c00168{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m36_c00168{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mee_c00168{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);}
.mcf_c00168{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m97_c00168{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m1f6_c00168{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);}
.m9a_c00168{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1ef_c00168{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.me5_c00168{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m116_c00168{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00168{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m102_c00168{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m257_c00168{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m203_c00168{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m94_c00168{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1d8_c00168{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00168{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m4_c00168{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m83_c00168{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00168{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00168{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m34_c00168{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m142_c00168{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m82_c00168{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.md8_c00168{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m19c_c00168{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m89_c00168{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.md1_c00168{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.md3_c00168{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00168{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00168{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);}
.m3c_c00168{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m57_c00168{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m1ea_c00168{transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);}
.m1f5_c00168{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m20e_c00168{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.me6_c00168{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00168{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00168{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m183_c00168{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.m10_c00168{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00168{transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);}
.md2_c00168{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00168{transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);}
.m56_c00168{transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);}
.md6_c00168{transform:matrix(1.272500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.272500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.272500,0.000000,0.000000,0.250000,0,0);}
.m60_c00168{transform:matrix(1.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.290000,0.000000,0.000000,0.250000,0,0);}
.m39_c00168{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m1b8_c00168{transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);}
.m1d0_c00168{transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);}
.me2_c00168{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00168{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m101_c00168{transform:matrix(1.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.520000,0.000000,0.000000,0.250000,0,0);}
.md7_c00168{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00168{transform:matrix(1.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.760000,0.000000,0.000000,0.250000,0,0);}
.m1d5_c00168{transform:matrix(2.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.175000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00168{transform:matrix(4.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.027500,0.000000,0.000000,0.250000,0,0);}
.v2_c00168{vertical-align:-6.900000px;}
.v3_c00168{vertical-align:-3.480000px;}
.v0_c00168{vertical-align:0.000000px;}
.v1_c00168{vertical-align:6.900000px;}
.v4_c00168{vertical-align:17.280000px;}
.ls4_c00168{letter-spacing:0.000000px;}
.ls3_c00168{letter-spacing:32.189760px;}
.ls1_c00168{letter-spacing:38.392320px;}
.ls2_c00168{letter-spacing:54.394320px;}
.ls0_c00168{letter-spacing:133.237440px;}
.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;}
}
.ws1_c00168{word-spacing:0.000000px;}
.ws0_c00168{word-spacing:1.246800px;}
.fc0_c00168{color:transparent;}
.fs1_c00168{font-size:3.456000px;}
.fs1a_c00168{font-size:6.000000px;}
.fs2_c00168{font-size:6.900000px;}
.fsd_c00168{font-size:10.380000px;}
.fs19_c00168{font-size:13.800000px;}
.fs0_c00168{font-size:17.280000px;}
.fs3_c00168{font-size:20.760000px;}
.fs1c_c00168{font-size:24.180000px;}
.fs1e_c00168{font-size:27.660000px;}
.fs1b_c00168{font-size:31.080000px;}
.fs21_c00168{font-size:34.560000px;}
.fs14_c00168{font-size:38.040000px;}
.fs1d_c00168{font-size:41.460000px;}
.fs4_c00168{font-size:44.940000px;}
.fs1f_c00168{font-size:48.360000px;}
.fs20_c00168{font-size:51.840000px;}
.fs22_c00168{font-size:55.320000px;}
.fs18_c00168{font-size:58.740000px;}
.fs16_c00168{font-size:62.220000px;}
.fs15_c00168{font-size:65.640000px;}
.fse_c00168{font-size:69.120000px;}
.fs13_c00168{font-size:72.600000px;}
.fs23_c00168{font-size:76.020000px;}
.fsf_c00168{font-size:79.500000px;}
.fsb_c00168{font-size:82.920000px;}
.fs17_c00168{font-size:86.400000px;}
.fsa_c00168{font-size:89.880000px;}
.fs10_c00168{font-size:93.300000px;}
.fs12_c00168{font-size:96.780000px;}
.fs11_c00168{font-size:100.200000px;}
.fs8_c00168{font-size:103.680000px;}
.fs24_c00168{font-size:107.160000px;}
.fsc_c00168{font-size:110.580000px;}
.fs9_c00168{font-size:120.960000px;}
.fs6_c00168{font-size:124.440000px;}
.fs5_c00168{font-size:127.860000px;}
.fs7_c00168{font-size:145.140000px;}
.y0_c00168{bottom:0.000000px;}
.y20d_c00168{bottom:215.130000px;}
.y20c_c00168{bottom:220.320000px;}
.y20b_c00168{bottom:227.235000px;}
.y20a_c00168{bottom:231.555000px;}
.y209_c00168{bottom:232.410000px;}
.y205_c00168{bottom:233.280000px;}
.y208_c00168{bottom:234.150000px;}
.y204_c00168{bottom:235.005000px;}
.y202_c00168{bottom:235.875000px;}
.y201_c00168{bottom:236.730000px;}
.y207_c00168{bottom:237.600000px;}
.y203_c00168{bottom:238.470000px;}
.y1fe_c00168{bottom:241.050000px;}
.y206_c00168{bottom:242.790000px;}
.y200_c00168{bottom:245.370000px;}
.y1ff_c00168{bottom:247.110000px;}
.y1fd_c00168{bottom:256.605000px;}
.y1fc_c00168{bottom:258.330000px;}
.y1fa_c00168{bottom:260.070000px;}
.y1f9_c00168{bottom:263.520000px;}
.y1f8_c00168{bottom:264.390000px;}
.y1f7_c00168{bottom:266.115000px;}
.y1fb_c00168{bottom:266.970000px;}
.y1f6_c00168{bottom:276.480000px;}
.y1f5_c00168{bottom:280.800000px;}
.y1f4_c00168{bottom:283.395000px;}
.y1f2_c00168{bottom:285.990000px;}
.y1f3_c00168{bottom:288.570000px;}
.y1ee_c00168{bottom:289.440000px;}
.y1ec_c00168{bottom:292.035000px;}
.y1f0_c00168{bottom:293.760000px;}
.y1f1_c00168{bottom:294.630000px;}
.y1ed_c00168{bottom:296.355000px;}
.y1ef_c00168{bottom:297.210000px;}
.y1eb_c00168{bottom:308.445000px;}
.y1e9_c00168{bottom:309.315000px;}
.y1e8_c00168{bottom:310.170000px;}
.y1e6_c00168{bottom:311.040000px;}
.y1e5_c00168{bottom:313.635000px;}
.y1e4_c00168{bottom:315.360000px;}
.y1e3_c00168{bottom:316.230000px;}
.y1ea_c00168{bottom:317.085000px;}
.y1e7_c00168{bottom:317.955000px;}
.y1e2_c00168{bottom:323.130000px;}
.y1e1_c00168{bottom:334.365000px;}
.y1de_c00168{bottom:335.235000px;}
.y1df_c00168{bottom:336.090000px;}
.y1dd_c00168{bottom:336.960000px;}
.y1dc_c00168{bottom:338.685000px;}
.y1db_c00168{bottom:339.555000px;}
.y1e0_c00168{bottom:340.410000px;}
.y1da_c00168{bottom:349.920000px;}
.y1d9_c00168{bottom:359.430000px;}
.y1d7_c00168{bottom:361.155000px;}
.y1d6_c00168{bottom:362.880000px;}
.y1d4_c00168{bottom:363.750000px;}
.y1d5_c00168{bottom:365.475000px;}
.y1d8_c00168{bottom:374.970000px;}
.y1d3_c00168{bottom:375.840000px;}
.y1d2_c00168{bottom:383.610000px;}
.y1d1_c00168{bottom:384.480000px;}
.y1d0_c00168{bottom:387.075000px;}
.y1ce_c00168{bottom:387.930000px;}
.y1cd_c00168{bottom:388.800000px;}
.y1cf_c00168{bottom:389.670000px;}
.y1cc_c00168{bottom:390.525000px;}
.y1cb_c00168{bottom:398.310000px;}
.y1ca_c00168{bottom:408.675000px;}
.y1c9_c00168{bottom:410.400000px;}
.y1c8_c00168{bottom:412.125000px;}
.y1c7_c00168{bottom:412.995000px;}
.y1c6_c00168{bottom:414.720000px;}
.y1c5_c00168{bottom:424.230000px;}
.y1c4_c00168{bottom:434.595000px;}
.y1c0_c00168{bottom:435.450000px;}
.y1bf_c00168{bottom:437.190000px;}
.y1be_c00168{bottom:438.915000px;}
.y1c3_c00168{bottom:440.640000px;}
.y1c2_c00168{bottom:441.510000px;}
.y1c1_c00168{bottom:442.365000px;}
.y1bd_c00168{bottom:443.235000px;}
.y1bc_c00168{bottom:458.790000px;}
.y1ba_c00168{bottom:460.515000px;}
.y1bb_c00168{bottom:461.370000px;}
.y1b8_c00168{bottom:462.240000px;}
.y1b5_c00168{bottom:463.110000px;}
.y1b9_c00168{bottom:464.835000px;}
.y1b6_c00168{bottom:465.690000px;}
.y1b7_c00168{bottom:468.285000px;}
.y1b4_c00168{bottom:472.605000px;}
.y1b3_c00168{bottom:476.070000px;}
.y1b1_c00168{bottom:483.840000px;}
.y1b0_c00168{bottom:485.565000px;}
.y1af_c00168{bottom:488.160000px;}
.y1b2_c00168{bottom:489.885000px;}
.y1ae_c00168{bottom:491.610000px;}
.y1ad_c00168{bottom:493.350000px;}
.y1ac_c00168{bottom:501.990000px;}
.y1ab_c00168{bottom:507.165000px;}
.y1aa_c00168{bottom:508.890000px;}
.y1a9_c00168{bottom:510.630000px;}
.y1a7_c00168{bottom:511.485000px;}
.y1a6_c00168{bottom:513.210000px;}
.y1a8_c00168{bottom:514.950000px;}
.y19d_c00168{bottom:515.805000px;}
.y19f_c00168{bottom:516.675000px;}
.y19e_c00168{bottom:518.400000px;}
.y1a1_c00168{bottom:520.125000px;}
.y1a5_c00168{bottom:520.995000px;}
.y1a4_c00168{bottom:521.850000px;}
.y1a3_c00168{bottom:523.590000px;}
.y1a2_c00168{bottom:525.315000px;}
.y19c_c00168{bottom:533.085000px;}
.y1a0_c00168{bottom:533.955000px;}
.y199_c00168{bottom:535.680000px;}
.y19a_c00168{bottom:536.550000px;}
.y19b_c00168{bottom:537.405000px;}
.y196_c00168{bottom:539.130000px;}
.y198_c00168{bottom:540.870000px;}
.y194_c00168{bottom:542.595000px;}
.y192_c00168{bottom:543.450000px;}
.y197_c00168{bottom:547.770000px;}
.y191_c00168{bottom:549.510000px;}
.y195_c00168{bottom:551.235000px;}
.y193_c00168{bottom:554.685000px;}
.y190_c00168{bottom:561.600000px;}
.y18d_c00168{bottom:562.470000px;}
.y18f_c00168{bottom:564.195000px;}
.y189_c00168{bottom:565.050000px;}
.y18c_c00168{bottom:565.920000px;}
.y18e_c00168{bottom:566.790000px;}
.y188_c00168{bottom:567.645000px;}
.y187_c00168{bottom:571.110000px;}
.y18a_c00168{bottom:571.965000px;}
.y185_c00168{bottom:574.560000px;}
.y18b_c00168{bottom:576.285000px;}
.y186_c00168{bottom:577.155000px;}
.y184_c00168{bottom:578.880000px;}
.y17e_c00168{bottom:579.750000px;}
.y17f_c00168{bottom:580.605000px;}
.y180_c00168{bottom:581.475000px;}
.y181_c00168{bottom:582.330000px;}
.y182_c00168{bottom:583.200000px;}
.y183_c00168{bottom:584.070000px;}
.y17b_c00168{bottom:587.520000px;}
.y17c_c00168{bottom:589.245000px;}
.y17d_c00168{bottom:590.115000px;}
.y175_c00168{bottom:590.970000px;}
.y179_c00168{bottom:591.840000px;}
.y17a_c00168{bottom:592.710000px;}
.y177_c00168{bottom:593.565000px;}
.y178_c00168{bottom:596.160000px;}
.y176_c00168{bottom:597.030000px;}
.y174_c00168{bottom:608.250000px;}
.y173_c00168{bottom:612.570000px;}
.y171_c00168{bottom:613.440000px;}
.y172_c00168{bottom:614.310000px;}
.y170_c00168{bottom:616.035000px;}
.y16c_c00168{bottom:616.890000px;}
.y16e_c00168{bottom:618.630000px;}
.y16f_c00168{bottom:620.355000px;}
.y16d_c00168{bottom:621.210000px;}
.y16b_c00168{bottom:623.805000px;}
.y169_c00168{bottom:624.675000px;}
.y166_c00168{bottom:626.400000px;}
.y16a_c00168{bottom:628.125000px;}
.y168_c00168{bottom:628.995000px;}
.y167_c00168{bottom:629.850000px;}
.y164_c00168{bottom:632.445000px;}
.y163_c00168{bottom:633.315000px;}
.y165_c00168{bottom:634.170000px;}
.y161_c00168{bottom:637.635000px;}
.y160_c00168{bottom:638.490000px;}
.y162_c00168{bottom:639.360000px;}
.y15e_c00168{bottom:640.230000px;}
.y15a_c00168{bottom:641.085000px;}
.y15d_c00168{bottom:641.955000px;}
.y15b_c00168{bottom:643.680000px;}
.y15c_c00168{bottom:644.550000px;}
.y15f_c00168{bottom:645.405000px;}
.y159_c00168{bottom:660.960000px;}
.y157_c00168{bottom:661.830000px;}
.y156_c00168{bottom:662.685000px;}
.y153_c00168{bottom:666.150000px;}
.y152_c00168{bottom:667.005000px;}
.y155_c00168{bottom:667.875000px;}
.y158_c00168{bottom:668.730000px;}
.y154_c00168{bottom:670.470000px;}
.y14c_c00168{bottom:672.195000px;}
.y151_c00168{bottom:673.050000px;}
.y150_c00168{bottom:674.790000px;}
.y14e_c00168{bottom:675.645000px;}
.y14f_c00168{bottom:676.515000px;}
.y14a_c00168{bottom:677.370000px;}
.y149_c00168{bottom:678.240000px;}
.y148_c00168{bottom:679.110000px;}
.y14d_c00168{bottom:680.835000px;}
.y14b_c00168{bottom:681.690000px;}
.y145_c00168{bottom:682.560000px;}
.y147_c00168{bottom:683.430000px;}
.y144_c00168{bottom:684.285000px;}
.y143_c00168{bottom:688.605000px;}
.y146_c00168{bottom:689.475000px;}
.y141_c00168{bottom:690.330000px;}
.y13f_c00168{bottom:691.200000px;}
.y13e_c00168{bottom:692.070000px;}
.y142_c00168{bottom:692.925000px;}
.y13d_c00168{bottom:693.795000px;}
.y140_c00168{bottom:695.520000px;}
.y13c_c00168{bottom:711.075000px;}
.y13b_c00168{bottom:712.800000px;}
.y13a_c00168{bottom:713.670000px;}
.y139_c00168{bottom:715.395000px;}
.y137_c00168{bottom:717.120000px;}
.y138_c00168{bottom:718.845000px;}
.y12e_c00168{bottom:719.715000px;}
.y136_c00168{bottom:721.440000px;}
.y135_c00168{bottom:724.035000px;}
.y133_c00168{bottom:724.890000px;}
.y134_c00168{bottom:726.630000px;}
.y131_c00168{bottom:728.355000px;}
.y130_c00168{bottom:729.210000px;}
.y12c_c00168{bottom:730.080000px;}
.y132_c00168{bottom:731.805000px;}
.y12d_c00168{bottom:732.675000px;}
.y12f_c00168{bottom:734.400000px;}
.y12a_c00168{bottom:736.125000px;}
.y12b_c00168{bottom:736.995000px;}
.y128_c00168{bottom:737.850000px;}
.y129_c00168{bottom:739.590000px;}
.y124_c00168{bottom:742.170000px;}
.y123_c00168{bottom:743.040000px;}
.y125_c00168{bottom:743.910000px;}
.y127_c00168{bottom:744.765000px;}
.y126_c00168{bottom:747.360000px;}
.y122_c00168{bottom:756.000000px;}
.y121_c00168{bottom:761.190000px;}
.y11f_c00168{bottom:762.915000px;}
.y11e_c00168{bottom:763.770000px;}
.y11c_c00168{bottom:764.640000px;}
.y11b_c00168{bottom:766.365000px;}
.y117_c00168{bottom:767.235000px;}
.y11a_c00168{bottom:768.960000px;}
.y119_c00168{bottom:770.685000px;}
.y11d_c00168{bottom:771.555000px;}
.y118_c00168{bottom:772.410000px;}
.y120_c00168{bottom:773.280000px;}
.y116_c00168{bottom:786.240000px;}
.y115_c00168{bottom:787.110000px;}
.y114_c00168{bottom:788.835000px;}
.y111_c00168{bottom:791.430000px;}
.y110_c00168{bottom:794.880000px;}
.y113_c00168{bottom:795.750000px;}
.y112_c00168{bottom:796.605000px;}
.y10f_c00168{bottom:810.435000px;}
.y10c_c00168{bottom:811.290000px;}
.y10d_c00168{bottom:812.160000px;}
.y10e_c00168{bottom:813.030000px;}
.y10b_c00168{bottom:813.885000px;}
.y10a_c00168{bottom:814.755000px;}
.y106_c00168{bottom:815.610000px;}
.y107_c00168{bottom:816.480000px;}
.y109_c00168{bottom:819.075000px;}
.y108_c00168{bottom:820.800000px;}
.y105_c00168{bottom:831.165000px;}
.y104_c00168{bottom:832.035000px;}
.y100_c00168{bottom:835.485000px;}
.yfe_c00168{bottom:836.355000px;}
.yfd_c00168{bottom:837.210000px;}
.y103_c00168{bottom:838.080000px;}
.y102_c00168{bottom:840.675000px;}
.yfc_c00168{bottom:842.400000px;}
.y101_c00168{bottom:844.125000px;}
.yff_c00168{bottom:844.995000px;}
.yfa_c00168{bottom:859.680000px;}
.yfb_c00168{bottom:861.405000px;}
.yf9_c00168{bottom:862.275000px;}
.yf6_c00168{bottom:863.130000px;}
.yf7_c00168{bottom:864.000000px;}
.yf1_c00168{bottom:864.870000px;}
.yf3_c00168{bottom:865.725000px;}
.yf2_c00168{bottom:866.595000px;}
.yf8_c00168{bottom:867.450000px;}
.yf5_c00168{bottom:868.320000px;}
.yf4_c00168{bottom:870.915000px;}
.yf0_c00168{bottom:887.325000px;}
.yef_c00168{bottom:888.195000px;}
.yee_c00168{bottom:889.050000px;}
.yea_c00168{bottom:890.790000px;}
.ye8_c00168{bottom:891.645000px;}
.yec_c00168{bottom:892.515000px;}
.yeb_c00168{bottom:893.370000px;}
.yed_c00168{bottom:895.110000px;}
.ye9_c00168{bottom:896.835000px;}
.ye6_c00168{bottom:911.520000px;}
.ye7_c00168{bottom:912.390000px;}
.ye5_c00168{bottom:913.245000px;}
.ye2_c00168{bottom:915.840000px;}
.ye1_c00168{bottom:916.710000px;}
.ye3_c00168{bottom:917.565000px;}
.ye0_c00168{bottom:918.435000px;}
.ye4_c00168{bottom:919.290000px;}
.y210_c00168{bottom:922.755000px;}
.ydf_c00168{bottom:927.075000px;}
.ydd_c00168{bottom:936.570000px;}
.ydc_c00168{bottom:938.310000px;}
.yda_c00168{bottom:940.035000px;}
.ydb_c00168{bottom:940.890000px;}
.yd6_c00168{bottom:941.760000px;}
.yd9_c00168{bottom:943.485000px;}
.yd7_c00168{bottom:944.355000px;}
.yd8_c00168{bottom:945.210000px;}
.yde_c00168{bottom:947.805000px;}
.yd5_c00168{bottom:963.360000px;}
.yd4_c00168{bottom:965.085000px;}
.yd3_c00168{bottom:965.955000px;}
.yd2_c00168{bottom:966.810000px;}
.yd0_c00168{bottom:967.680000px;}
.yd1_c00168{bottom:968.550000px;}
.ycf_c00168{bottom:970.275000px;}
.ycc_c00168{bottom:983.235000px;}
.yce_c00168{bottom:984.090000px;}
.ycb_c00168{bottom:984.960000px;}
.ycd_c00168{bottom:986.685000px;}
.yc8_c00168{bottom:989.280000px;}
.yc5_c00168{bottom:990.150000px;}
.yca_c00168{bottom:992.730000px;}
.yc9_c00168{bottom:993.600000px;}
.yc6_c00168{bottom:994.470000px;}
.yc7_c00168{bottom:995.325000px;}
.yc3_c00168{bottom:1000.515000px;}
.yc4_c00168{bottom:1002.240000px;}
.ybd_c00168{bottom:1003.110000px;}
.yc2_c00168{bottom:1003.965000px;}
.yc1_c00168{bottom:1004.835000px;}
.ybf_c00168{bottom:1005.690000px;}
.ybe_c00168{bottom:1006.560000px;}
.yba_c00168{bottom:1007.430000px;}
.ybc_c00168{bottom:1008.285000px;}
.yc0_c00168{bottom:1009.155000px;}
.ybb_c00168{bottom:1011.750000px;}
.yb7_c00168{bottom:1012.605000px;}
.yb9_c00168{bottom:1014.330000px;}
.yb6_c00168{bottom:1015.200000px;}
.yb5_c00168{bottom:1016.070000px;}
.yb1_c00168{bottom:1016.925000px;}
.yb8_c00168{bottom:1017.795000px;}
.yb0_c00168{bottom:1018.650000px;}
.yb3_c00168{bottom:1019.520000px;}
.yb4_c00168{bottom:1020.390000px;}
.yaf_c00168{bottom:1021.245000px;}
.yb2_c00168{bottom:1022.115000px;}
.yad_c00168{bottom:1024.710000px;}
.yae_c00168{bottom:1025.565000px;}
.yab_c00168{bottom:1028.160000px;}
.ya7_c00168{bottom:1029.030000px;}
.ya6_c00168{bottom:1029.885000px;}
.ya8_c00168{bottom:1030.755000px;}
.ya5_c00168{bottom:1031.610000px;}
.yaa_c00168{bottom:1032.480000px;}
.yac_c00168{bottom:1033.350000px;}
.ya9_c00168{bottom:1035.075000px;}
.y9e_c00168{bottom:1035.930000px;}
.ya4_c00168{bottom:1036.800000px;}
.ya2_c00168{bottom:1037.670000px;}
.y9d_c00168{bottom:1038.525000px;}
.ya1_c00168{bottom:1039.395000px;}
.y9b_c00168{bottom:1040.250000px;}
.y98_c00168{bottom:1041.120000px;}
.ya0_c00168{bottom:1042.845000px;}
.y9c_c00168{bottom:1043.715000px;}
.y9f_c00168{bottom:1044.570000px;}
.y99_c00168{bottom:1045.440000px;}
.y97_c00168{bottom:1046.310000px;}
.y9a_c00168{bottom:1047.165000px;}
.y94_c00168{bottom:1048.890000px;}
.y95_c00168{bottom:1050.630000px;}
.ya3_c00168{bottom:1051.485000px;}
.y92_c00168{bottom:1052.355000px;}
.y8f_c00168{bottom:1054.080000px;}
.y96_c00168{bottom:1054.950000px;}
.y91_c00168{bottom:1055.805000px;}
.y90_c00168{bottom:1056.675000px;}
.y93_c00168{bottom:1057.530000px;}
.y8c_c00168{bottom:1062.720000px;}
.y8e_c00168{bottom:1064.445000px;}
.y87_c00168{bottom:1065.315000px;}
.y8a_c00168{bottom:1066.170000px;}
.y88_c00168{bottom:1067.040000px;}
.y8b_c00168{bottom:1067.910000px;}
.y86_c00168{bottom:1069.635000px;}
.y89_c00168{bottom:1071.360000px;}
.y8d_c00168{bottom:1076.550000px;}
.y85_c00168{bottom:1087.770000px;}
.y83_c00168{bottom:1089.510000px;}
.y82_c00168{bottom:1090.365000px;}
.y81_c00168{bottom:1092.090000px;}
.y80_c00168{bottom:1093.830000px;}
.y84_c00168{bottom:1094.685000px;}
.y7f_c00168{bottom:1103.325000px;}
.y7d_c00168{bottom:1114.560000px;}
.y7c_c00168{bottom:1116.285000px;}
.y7a_c00168{bottom:1117.155000px;}
.y7e_c00168{bottom:1118.010000px;}
.y7b_c00168{bottom:1118.880000px;}
.y78_c00168{bottom:1134.435000px;}
.y79_c00168{bottom:1135.290000px;}
.y77_c00168{bottom:1137.030000px;}
.y71_c00168{bottom:1140.480000px;}
.y74_c00168{bottom:1141.350000px;}
.y75_c00168{bottom:1143.075000px;}
.y72_c00168{bottom:1143.930000px;}
.y76_c00168{bottom:1144.800000px;}
.y73_c00168{bottom:1145.670000px;}
.y6f_c00168{bottom:1163.805000px;}
.y70_c00168{bottom:1164.675000px;}
.y6e_c00168{bottom:1165.530000px;}
.y6c_c00168{bottom:1168.125000px;}
.y6d_c00168{bottom:1173.315000px;}
.y6a_c00168{bottom:1186.275000px;}
.y6b_c00168{bottom:1187.130000px;}
.y68_c00168{bottom:1189.725000px;}
.y63_c00168{bottom:1190.595000px;}
.y67_c00168{bottom:1191.450000px;}
.y64_c00168{bottom:1192.320000px;}
.y65_c00168{bottom:1193.190000px;}
.y69_c00168{bottom:1194.045000px;}
.y61_c00168{bottom:1194.915000px;}
.y62_c00168{bottom:1195.770000px;}
.y66_c00168{bottom:1196.640000px;}
.y5f_c00168{bottom:1197.510000px;}
.y59_c00168{bottom:1198.365000px;}
.y5d_c00168{bottom:1200.960000px;}
.y5e_c00168{bottom:1202.685000px;}
.y60_c00168{bottom:1203.555000px;}
.y55_c00168{bottom:1204.410000px;}
.y54_c00168{bottom:1205.280000px;}
.y5c_c00168{bottom:1207.005000px;}
.y58_c00168{bottom:1207.875000px;}
.y5b_c00168{bottom:1208.730000px;}
.y5a_c00168{bottom:1210.470000px;}
.y57_c00168{bottom:1211.325000px;}
.y56_c00168{bottom:1212.195000px;}
.y50_c00168{bottom:1214.790000px;}
.y4e_c00168{bottom:1216.515000px;}
.y4f_c00168{bottom:1217.370000px;}
.y51_c00168{bottom:1218.240000px;}
.y4d_c00168{bottom:1219.110000px;}
.y4c_c00168{bottom:1219.965000px;}
.y52_c00168{bottom:1221.690000px;}
.y53_c00168{bottom:1235.520000px;}
.y4a_c00168{bottom:1237.245000px;}
.y4b_c00168{bottom:1239.840000px;}
.y47_c00168{bottom:1241.565000px;}
.y48_c00168{bottom:1242.435000px;}
.y44_c00168{bottom:1243.290000px;}
.y45_c00168{bottom:1244.160000px;}
.y46_c00168{bottom:1245.030000px;}
.y43_c00168{bottom:1245.885000px;}
.y49_c00168{bottom:1246.755000px;}
.y3f_c00168{bottom:1263.165000px;}
.y41_c00168{bottom:1264.035000px;}
.y3e_c00168{bottom:1264.890000px;}
.y3d_c00168{bottom:1267.485000px;}
.y3c_c00168{bottom:1269.210000px;}
.y42_c00168{bottom:1270.080000px;}
.y40_c00168{bottom:1270.950000px;}
.y3a_c00168{bottom:1275.270000px;}
.y39_c00168{bottom:1276.995000px;}
.y37_c00168{bottom:1277.850000px;}
.y3b_c00168{bottom:1279.590000px;}
.y35_c00168{bottom:1280.445000px;}
.y36_c00168{bottom:1281.315000px;}
.y38_c00168{bottom:1282.170000px;}
.y34_c00168{bottom:1283.910000px;}
.y33_c00168{bottom:1288.230000px;}
.y2b_c00168{bottom:1290.810000px;}
.y2f_c00168{bottom:1291.680000px;}
.y2d_c00168{bottom:1292.550000px;}
.y2c_c00168{bottom:1293.405000px;}
.y32_c00168{bottom:1294.275000px;}
.y31_c00168{bottom:1295.130000px;}
.y30_c00168{bottom:1296.000000px;}
.y25_c00168{bottom:1296.870000px;}
.y2e_c00168{bottom:1297.725000px;}
.y2a_c00168{bottom:1299.450000px;}
.y26_c00168{bottom:1301.190000px;}
.y23_c00168{bottom:1302.045000px;}
.y22_c00168{bottom:1302.915000px;}
.y28_c00168{bottom:1303.770000px;}
.y27_c00168{bottom:1304.640000px;}
.y29_c00168{bottom:1305.510000px;}
.y24_c00168{bottom:1306.365000px;}
.y20_c00168{bottom:1307.235000px;}
.y1f_c00168{bottom:1308.090000px;}
.y21_c00168{bottom:1308.960000px;}
.y1d_c00168{bottom:1315.005000px;}
.y1c_c00168{bottom:1315.875000px;}
.y1a_c00168{bottom:1316.730000px;}
.y1e_c00168{bottom:1318.470000px;}
.y19_c00168{bottom:1319.325000px;}
.y1b_c00168{bottom:1320.195000px;}
.y18_c00168{bottom:1321.920000px;}
.y20f_c00168{bottom:1331.430000px;}
.y17_c00168{bottom:1333.155000px;}
.y14_c00168{bottom:1338.330000px;}
.y20e_c00168{bottom:1340.070000px;}
.y15_c00168{bottom:1340.925000px;}
.y12_c00168{bottom:1341.795000px;}
.y11_c00168{bottom:1342.650000px;}
.y13_c00168{bottom:1343.520000px;}
.y10_c00168{bottom:1344.390000px;}
.y16_c00168{bottom:1354.755000px;}
.yd_c00168{bottom:1362.525000px;}
.y9_c00168{bottom:1363.395000px;}
.yb_c00168{bottom:1364.250000px;}
.y7_c00168{bottom:1366.845000px;}
.ya_c00168{bottom:1368.570000px;}
.yc_c00168{bottom:1369.440000px;}
.y8_c00168{bottom:1371.165000px;}
.ye_c00168{bottom:1372.035000px;}
.yf_c00168{bottom:1378.080000px;}
.y5_c00168{bottom:1393.635000px;}
.y6_c00168{bottom:1397.085000px;}
.y3_c00168{bottom:1411.770000px;}
.y2_c00168{bottom:1414.365000px;}
.y1_c00168{bottom:1417.830000px;}
.y4_c00168{bottom:1422.150000px;}
.h6_c00168{height:3.110063px;}
.h1c_c00168{height:5.399414px;}
.h3_c00168{height:6.209326px;}
.hf_c00168{height:9.340986px;}
.h1b_c00168{height:12.418652px;}
.h2_c00168{height:15.550313px;}
.h4_c00168{height:18.681973px;}
.h1e_c00168{height:21.759639px;}
.h20_c00168{height:24.891299px;}
.h1d_c00168{height:27.968965px;}
.h23_c00168{height:31.100625px;}
.h16_c00168{height:34.232285px;}
.h27_c00168{height:35.961973px;}
.h1f_c00168{height:37.309951px;}
.h5_c00168{height:40.441611px;}
.h21_c00168{height:43.519277px;}
.h22_c00168{height:46.650937px;}
.h24_c00168{height:49.782598px;}
.h1a_c00168{height:52.860264px;}
.h18_c00168{height:55.991924px;}
.h17_c00168{height:59.069590px;}
.h10_c00168{height:62.201250px;}
.h15_c00168{height:65.332910px;}
.h25_c00168{height:68.410576px;}
.h11_c00168{height:71.542236px;}
.hd_c00168{height:74.619902px;}
.h19_c00168{height:77.751563px;}
.hc_c00168{height:80.883223px;}
.h12_c00168{height:83.960889px;}
.h14_c00168{height:87.092549px;}
.h13_c00168{height:90.170215px;}
.ha_c00168{height:93.301875px;}
.h26_c00168{height:96.433535px;}
.he_c00168{height:99.511201px;}
.hb_c00168{height:108.852188px;}
.h8_c00168{height:111.983848px;}
.h7_c00168{height:115.061514px;}
.h9_c00168{height:130.611826px;}
.h0_c00168{height:1523.235000px;}
.h1_c00168{height:1523.250000px;}
.w0_c00168{width:1107.645000px;}
.w1_c00168{width:1107.750000px;}
.x0_c00168{left:0.000000px;}
.x113_c00168{left:101.955000px;}
.x11b_c00168{left:109.725000px;}
.x114_c00168{left:116.640000px;}
.x5_c00168{left:118.365000px;}
.x115_c00168{left:124.410000px;}
.x122_c00168{left:131.325000px;}
.x6_c00168{left:134.790000px;}
.x123_c00168{left:138.240000px;}
.x116_c00168{left:140.835000px;}
.x11c_c00168{left:155.520000px;}
.x128_c00168{left:159.840000px;}
.x117_c00168{left:161.565000px;}
.x11d_c00168{left:164.160000px;}
.x124_c00168{left:165.885000px;}
.x13b_c00168{left:171.075000px;}
.x13c_c00168{left:177.120000px;}
.x125_c00168{left:181.440000px;}
.x126_c00168{left:188.355000px;}
.x118_c00168{left:200.445000px;}
.x41_c00168{left:204.765000px;}
.x11e_c00168{left:206.490000px;}
.x2b_c00168{left:208.230000px;}
.x12b_c00168{left:212.550000px;}
.x133_c00168{left:214.275000px;}
.x127_c00168{left:216.000000px;}
.x11f_c00168{left:218.595000px;}
.xf1_c00168{left:222.915000px;}
.x138_c00168{left:225.510000px;}
.x119_c00168{left:227.235000px;}
.x129_c00168{left:228.960000px;}
.x131_c00168{left:230.685000px;}
.x9b_c00168{left:232.410000px;}
.x13_c00168{left:235.005000px;}
.x42_c00168{left:237.600000px;}
.xd4_c00168{left:240.195000px;}
.xe8_c00168{left:241.920000px;}
.xa3_c00168{left:243.645000px;}
.xfc_c00168{left:245.370000px;}
.x1e_c00168{left:247.110000px;}
.x72_c00168{left:249.690000px;}
.x69_c00168{left:251.430000px;}
.x1f_c00168{left:253.155000px;}
.x7_c00168{left:254.880000px;}
.xba_c00168{left:256.605000px;}
.x2c_c00168{left:261.795000px;}
.x7d_c00168{left:264.390000px;}
.x59_c00168{left:266.115000px;}
.x101_c00168{left:270.435000px;}
.xdd_c00168{left:273.030000px;}
.xf2_c00168{left:274.755000px;}
.x2d_c00168{left:276.480000px;}
.x120_c00168{left:280.800000px;}
.xec_c00168{left:282.525000px;}
.x2e_c00168{left:285.120000px;}
.x11a_c00168{left:286.845000px;}
.x2f_c00168{left:288.570000px;}
.x6e_c00168{left:291.165000px;}
.x5a_c00168{left:293.760000px;}
.xa7_c00168{left:295.485000px;}
.x20_c00168{left:298.080000px;}
.x12c_c00168{left:300.675000px;}
.x95_c00168{left:302.400000px;}
.x136_c00168{left:304.125000px;}
.x73_c00168{left:305.850000px;}
.x14_c00168{left:307.590000px;}
.xf8_c00168{left:309.315000px;}
.x2_c00168{left:311.040000px;}
.x43_c00168{left:313.635000px;}
.xed_c00168{left:315.360000px;}
.x121_c00168{left:317.085000px;}
.x1_c00168{left:319.680000px;}
.x30_c00168{left:321.405000px;}
.x3_c00168{left:324.000000px;}
.x6a_c00168{left:325.725000px;}
.xe9_c00168{left:330.045000px;}
.xde_c00168{left:332.640000px;}
.xf3_c00168{left:335.235000px;}
.x8_c00168{left:336.960000px;}
.x74_c00168{left:339.555000px;}
.xae_c00168{left:342.150000px;}
.x5b_c00168{left:345.600000px;}
.x96_c00168{left:347.325000px;}
.x91_c00168{left:349.050000px;}
.xee_c00168{left:350.790000px;}
.xf4_c00168{left:354.240000px;}
.x44_c00168{left:356.835000px;}
.x134_c00168{left:358.560000px;}
.xa8_c00168{left:362.010000px;}
.x31_c00168{left:364.605000px;}
.x10b_c00168{left:366.330000px;}
.x9_c00168{left:368.925000px;}
.x75_c00168{left:371.520000px;}
.x111_c00168{left:374.115000px;}
.xc4_c00168{left:375.840000px;}
.x45_c00168{left:379.290000px;}
.xea_c00168{left:381.030000px;}
.xd7_c00168{left:382.755000px;}
.xa4_c00168{left:384.480000px;}
.x32_c00168{left:387.930000px;}
.x102_c00168{left:390.525000px;}
.x6f_c00168{left:393.990000px;}
.x5c_c00168{left:397.440000px;}
.x76_c00168{left:399.165000px;}
.x7e_c00168{left:401.760000px;}
.x46_c00168{left:404.355000px;}
.x5d_c00168{left:406.080000px;}
.x47_c00168{left:407.805000px;}
.x21_c00168{left:409.530000px;}
.xdc_c00168{left:412.125000px;}
.x33_c00168{left:414.720000px;}
.xdf_c00168{left:418.170000px;}
.xbb_c00168{left:419.910000px;}
.x10d_c00168{left:423.360000px;}
.x15_c00168{left:428.550000px;}
.xb3_c00168{left:431.130000px;}
.x22_c00168{left:432.870000px;}
.x7f_c00168{left:435.450000px;}
.x9c_c00168{left:437.190000px;}
.x5e_c00168{left:440.640000px;}
.xef_c00168{left:442.365000px;}
.xa9_c00168{left:444.090000px;}
.xd5_c00168{left:445.830000px;}
.xe0_c00168{left:448.410000px;}
.x89_c00168{left:452.730000px;}
.x23_c00168{left:454.470000px;}
.x48_c00168{left:457.920000px;}
.xfd_c00168{left:461.370000px;}
.x49_c00168{left:463.965000px;}
.xa_c00168{left:466.560000px;}
.xd8_c00168{left:468.285000px;}
.x6b_c00168{left:471.750000px;}
.x16_c00168{left:476.070000px;}
.x4a_c00168{left:478.650000px;}
.x77_c00168{left:480.390000px;}
.x80_c00168{left:482.115000px;}
.xe2_c00168{left:483.840000px;}
.xcd_c00168{left:487.290000px;}
.x24_c00168{left:489.030000px;}
.x34_c00168{left:490.755000px;}
.x10e_c00168{left:492.480000px;}
.x4b_c00168{left:494.205000px;}
.x8a_c00168{left:495.930000px;}
.x4c_c00168{left:499.395000px;}
.xe1_c00168{left:501.990000px;}
.x17_c00168{left:505.440000px;}
.xc5_c00168{left:508.035000px;}
.xbc_c00168{left:512.355000px;}
.x106_c00168{left:514.080000px;}
.xaa_c00168{left:516.675000px;}
.xe3_c00168{left:518.400000px;}
.xfe_c00168{left:520.125000px;}
.x81_c00168{left:521.850000px;}
.x35_c00168{left:525.315000px;}
.x8b_c00168{left:527.040000px;}
.x10f_c00168{left:529.635000px;}
.xce_c00168{left:531.360000px;}
.x78_c00168{left:534.810000px;}
.x4d_c00168{left:537.405000px;}
.x112_c00168{left:540.000000px;}
.x12a_c00168{left:541.725000px;}
.x5f_c00168{left:546.045000px;}
.xb_c00168{left:548.640000px;}
.x36_c00168{left:550.365000px;}
.xab_c00168{left:552.090000px;}
.x60_c00168{left:554.685000px;}
.x8c_c00168{left:556.410000px;}
.x9d_c00168{left:559.005000px;}
.x18_c00168{left:560.730000px;}
.xf9_c00168{left:562.470000px;}
.xbd_c00168{left:564.195000px;}
.x79_c00168{left:565.920000px;}
.x82_c00168{left:568.515000px;}
.x103_c00168{left:572.835000px;}
.x132_c00168{left:577.155000px;}
.x25_c00168{left:578.880000px;}
.x37_c00168{left:581.475000px;}
.xaf_c00168{left:583.200000px;}
.x8d_c00168{left:585.795000px;}
.x4e_c00168{left:587.520000px;}
.x92_c00168{left:590.115000px;}
.xd9_c00168{left:592.710000px;}
.xb4_c00168{left:595.290000px;}
.xff_c00168{left:597.885000px;}
.x4f_c00168{left:599.610000px;}
.xb0_c00168{left:603.075000px;}
.x104_c00168{left:604.800000px;}
.x83_c00168{left:606.525000px;}
.x50_c00168{left:609.990000px;}
.x12d_c00168{left:611.715000px;}
.x61_c00168{left:614.310000px;}
.x84_c00168{left:616.890000px;}
.x26_c00168{left:619.485000px;}
.x7a_c00168{left:621.210000px;}
.xcf_c00168{left:624.675000px;}
.x97_c00168{left:626.400000px;}
.x51_c00168{left:628.125000px;}
.x6c_c00168{left:629.850000px;}
.x62_c00168{left:632.445000px;}
.xbe_c00168{left:634.170000px;}
.xac_c00168{left:637.635000px;}
.x9e_c00168{left:639.360000px;}
.xf5_c00168{left:641.955000px;}
.xc_c00168{left:643.680000px;}
.xd0_c00168{left:645.405000px;}
.x110_c00168{left:648.870000px;}
.x19_c00168{left:650.595000px;}
.xfa_c00168{left:652.320000px;}
.x107_c00168{left:654.915000px;}
.xbf_c00168{left:656.640000px;}
.x85_c00168{left:659.235000px;}
.x38_c00168{left:661.830000px;}
.x70_c00168{left:663.555000px;}
.x63_c00168{left:665.280000px;}
.x27_c00168{left:667.005000px;}
.xc6_c00168{left:669.600000px;}
.xb5_c00168{left:671.325000px;}
.xe4_c00168{left:673.920000px;}
.x39_c00168{left:675.645000px;}
.xa5_c00168{left:679.110000px;}
.x13a_c00168{left:680.835000px;}
.xf6_c00168{left:682.560000px;}
.x12e_c00168{left:684.285000px;}
.x9f_c00168{left:686.010000px;}
.x1a_c00168{left:687.750000px;}
.x3a_c00168{left:692.070000px;}
.xd_c00168{left:695.520000px;}
.x10c_c00168{left:697.245000px;}
.x64_c00168{left:702.435000px;}
.xc7_c00168{left:704.160000px;}
.x52_c00168{left:707.610000px;}
.xe_c00168{left:709.350000px;}
.x3b_c00168{left:711.930000px;}
.x53_c00168{left:714.525000px;}
.x3c_c00168{left:717.990000px;}
.xc8_c00168{left:719.715000px;}
.xf0_c00168{left:721.440000px;}
.xd6_c00168{left:723.165000px;}
.x3d_c00168{left:725.760000px;}
.x100_c00168{left:727.485000px;}
.xf7_c00168{left:730.080000px;}
.x86_c00168{left:731.805000px;}
.x65_c00168{left:736.995000px;}
.x7b_c00168{left:738.720000px;}
.x54_c00168{left:740.445000px;}
.xb6_c00168{left:742.170000px;}
.xda_c00168{left:743.910000px;}
.x28_c00168{left:746.490000px;}
.xc0_c00168{left:749.955000px;}
.xb1_c00168{left:752.550000px;}
.xe6_c00168{left:755.130000px;}
.xdb_c00168{left:756.870000px;}
.xf_c00168{left:758.595000px;}
.xc9_c00168{left:760.320000px;}
.x55_c00168{left:762.045000px;}
.xb7_c00168{left:763.770000px;}
.x137_c00168{left:765.510000px;}
.x93_c00168{left:767.235000px;}
.xc1_c00168{left:769.830000px;}
.x98_c00168{left:772.410000px;}
.x108_c00168{left:774.150000px;}
.xca_c00168{left:776.730000px;}
.x66_c00168{left:779.325000px;}
.xeb_c00168{left:781.920000px;}
.x1b_c00168{left:784.515000px;}
.xb8_c00168{left:787.110000px;}
.xc2_c00168{left:788.835000px;}
.xa0_c00168{left:790.560000px;}
.x109_c00168{left:792.285000px;}
.x99_c00168{left:794.010000px;}
.x56_c00168{left:795.750000px;}
.xa6_c00168{left:798.330000px;}
.x1c_c00168{left:801.795000px;}
.xad_c00168{left:803.520000px;}
.xb2_c00168{left:805.245000px;}
.xcb_c00168{left:807.840000px;}
.x6d_c00168{left:809.565000px;}
.x130_c00168{left:811.290000px;}
.x10_c00168{left:813.030000px;}
.x139_c00168{left:814.755000px;}
.x3e_c00168{left:819.930000px;}
.xa1_c00168{left:824.250000px;}
.xd1_c00168{left:825.990000px;}
.x12f_c00168{left:827.715000px;}
.xe5_c00168{left:829.440000px;}
.x8e_c00168{left:832.035000px;}
.x87_c00168{left:833.760000px;}
.xfb_c00168{left:835.485000px;}
.x7c_c00168{left:837.210000px;}
.x57_c00168{left:838.950000px;}
.x3f_c00168{left:841.530000px;}
.xd2_c00168{left:843.270000px;}
.x1d_c00168{left:844.995000px;}
.x94_c00168{left:846.720000px;}
.xe7_c00168{left:848.445000px;}
.x10a_c00168{left:851.040000px;}
.x67_c00168{left:853.635000px;}
.x29_c00168{left:856.230000px;}
.x71_c00168{left:859.680000px;}
.xcc_c00168{left:862.275000px;}
.x40_c00168{left:864.000000px;}
.xa2_c00168{left:865.725000px;}
.x9a_c00168{left:867.450000px;}
.x2a_c00168{left:869.190000px;}
.x8f_c00168{left:871.770000px;}
.xc3_c00168{left:873.510000px;}
.x68_c00168{left:878.685000px;}
.x58_c00168{left:881.280000px;}
.xd3_c00168{left:883.005000px;}
.x88_c00168{left:884.730000px;}
.x135_c00168{left:886.470000px;}
.x105_c00168{left:893.370000px;}
.x11_c00168{left:895.110000px;}
.x90_c00168{left:896.835000px;}
.xb9_c00168{left:902.880000px;}
.x12_c00168{left:907.200000px;}
.x13d_c00168{left:991.005000px;}
.x13e_c00168{left:997.920000px;}
.x4_c00168{left:1038.525000px;}
@media print{
.v2_c00168{vertical-align:-6.133333pt;}
.v3_c00168{vertical-align:-3.093333pt;}
.v0_c00168{vertical-align:0.000000pt;}
.v1_c00168{vertical-align:6.133333pt;}
.v4_c00168{vertical-align:15.360000pt;}
.ls4_c00168{letter-spacing:0.000000pt;}
.ls3_c00168{letter-spacing:28.613120pt;}
.ls1_c00168{letter-spacing:34.126507pt;}
.ls2_c00168{letter-spacing:48.350507pt;}
.ls0_c00168{letter-spacing:118.433280pt;}
.ws1_c00168{word-spacing:0.000000pt;}
.ws0_c00168{word-spacing:1.108267pt;}
.fs1_c00168{font-size:3.072000pt;}
.fs1a_c00168{font-size:5.333333pt;}
.fs2_c00168{font-size:6.133333pt;}
.fsd_c00168{font-size:9.226667pt;}
.fs19_c00168{font-size:12.266667pt;}
.fs0_c00168{font-size:15.360000pt;}
.fs3_c00168{font-size:18.453333pt;}
.fs1c_c00168{font-size:21.493333pt;}
.fs1e_c00168{font-size:24.586667pt;}
.fs1b_c00168{font-size:27.626667pt;}
.fs21_c00168{font-size:30.720000pt;}
.fs14_c00168{font-size:33.813333pt;}
.fs1d_c00168{font-size:36.853333pt;}
.fs4_c00168{font-size:39.946667pt;}
.fs1f_c00168{font-size:42.986667pt;}
.fs20_c00168{font-size:46.080000pt;}
.fs22_c00168{font-size:49.173333pt;}
.fs18_c00168{font-size:52.213333pt;}
.fs16_c00168{font-size:55.306667pt;}
.fs15_c00168{font-size:58.346667pt;}
.fse_c00168{font-size:61.440000pt;}
.fs13_c00168{font-size:64.533333pt;}
.fs23_c00168{font-size:67.573333pt;}
.fsf_c00168{font-size:70.666667pt;}
.fsb_c00168{font-size:73.706667pt;}
.fs17_c00168{font-size:76.800000pt;}
.fsa_c00168{font-size:79.893333pt;}
.fs10_c00168{font-size:82.933333pt;}
.fs12_c00168{font-size:86.026667pt;}
.fs11_c00168{font-size:89.066667pt;}
.fs8_c00168{font-size:92.160000pt;}
.fs24_c00168{font-size:95.253333pt;}
.fsc_c00168{font-size:98.293333pt;}
.fs9_c00168{font-size:107.520000pt;}
.fs6_c00168{font-size:110.613333pt;}
.fs5_c00168{font-size:113.653333pt;}
.fs7_c00168{font-size:129.013333pt;}
.y0_c00168{bottom:0.000000pt;}
.y20d_c00168{bottom:191.226667pt;}
.y20c_c00168{bottom:195.840000pt;}
.y20b_c00168{bottom:201.986667pt;}
.y20a_c00168{bottom:205.826667pt;}
.y209_c00168{bottom:206.586667pt;}
.y205_c00168{bottom:207.360000pt;}
.y208_c00168{bottom:208.133333pt;}
.y204_c00168{bottom:208.893333pt;}
.y202_c00168{bottom:209.666667pt;}
.y201_c00168{bottom:210.426667pt;}
.y207_c00168{bottom:211.200000pt;}
.y203_c00168{bottom:211.973333pt;}
.y1fe_c00168{bottom:214.266667pt;}
.y206_c00168{bottom:215.813333pt;}
.y200_c00168{bottom:218.106667pt;}
.y1ff_c00168{bottom:219.653333pt;}
.y1fd_c00168{bottom:228.093333pt;}
.y1fc_c00168{bottom:229.626667pt;}
.y1fa_c00168{bottom:231.173333pt;}
.y1f9_c00168{bottom:234.240000pt;}
.y1f8_c00168{bottom:235.013333pt;}
.y1f7_c00168{bottom:236.546667pt;}
.y1fb_c00168{bottom:237.306667pt;}
.y1f6_c00168{bottom:245.760000pt;}
.y1f5_c00168{bottom:249.600000pt;}
.y1f4_c00168{bottom:251.906667pt;}
.y1f2_c00168{bottom:254.213333pt;}
.y1f3_c00168{bottom:256.506667pt;}
.y1ee_c00168{bottom:257.280000pt;}
.y1ec_c00168{bottom:259.586667pt;}
.y1f0_c00168{bottom:261.120000pt;}
.y1f1_c00168{bottom:261.893333pt;}
.y1ed_c00168{bottom:263.426667pt;}
.y1ef_c00168{bottom:264.186667pt;}
.y1eb_c00168{bottom:274.173333pt;}
.y1e9_c00168{bottom:274.946667pt;}
.y1e8_c00168{bottom:275.706667pt;}
.y1e6_c00168{bottom:276.480000pt;}
.y1e5_c00168{bottom:278.786667pt;}
.y1e4_c00168{bottom:280.320000pt;}
.y1e3_c00168{bottom:281.093333pt;}
.y1ea_c00168{bottom:281.853333pt;}
.y1e7_c00168{bottom:282.626667pt;}
.y1e2_c00168{bottom:287.226667pt;}
.y1e1_c00168{bottom:297.213333pt;}
.y1de_c00168{bottom:297.986667pt;}
.y1df_c00168{bottom:298.746667pt;}
.y1dd_c00168{bottom:299.520000pt;}
.y1dc_c00168{bottom:301.053333pt;}
.y1db_c00168{bottom:301.826667pt;}
.y1e0_c00168{bottom:302.586667pt;}
.y1da_c00168{bottom:311.040000pt;}
.y1d9_c00168{bottom:319.493333pt;}
.y1d7_c00168{bottom:321.026667pt;}
.y1d6_c00168{bottom:322.560000pt;}
.y1d4_c00168{bottom:323.333333pt;}
.y1d5_c00168{bottom:324.866667pt;}
.y1d8_c00168{bottom:333.306667pt;}
.y1d3_c00168{bottom:334.080000pt;}
.y1d2_c00168{bottom:340.986667pt;}
.y1d1_c00168{bottom:341.760000pt;}
.y1d0_c00168{bottom:344.066667pt;}
.y1ce_c00168{bottom:344.826667pt;}
.y1cd_c00168{bottom:345.600000pt;}
.y1cf_c00168{bottom:346.373333pt;}
.y1cc_c00168{bottom:347.133333pt;}
.y1cb_c00168{bottom:354.053333pt;}
.y1ca_c00168{bottom:363.266667pt;}
.y1c9_c00168{bottom:364.800000pt;}
.y1c8_c00168{bottom:366.333333pt;}
.y1c7_c00168{bottom:367.106667pt;}
.y1c6_c00168{bottom:368.640000pt;}
.y1c5_c00168{bottom:377.093333pt;}
.y1c4_c00168{bottom:386.306667pt;}
.y1c0_c00168{bottom:387.066667pt;}
.y1bf_c00168{bottom:388.613333pt;}
.y1be_c00168{bottom:390.146667pt;}
.y1c3_c00168{bottom:391.680000pt;}
.y1c2_c00168{bottom:392.453333pt;}
.y1c1_c00168{bottom:393.213333pt;}
.y1bd_c00168{bottom:393.986667pt;}
.y1bc_c00168{bottom:407.813333pt;}
.y1ba_c00168{bottom:409.346667pt;}
.y1bb_c00168{bottom:410.106667pt;}
.y1b8_c00168{bottom:410.880000pt;}
.y1b5_c00168{bottom:411.653333pt;}
.y1b9_c00168{bottom:413.186667pt;}
.y1b6_c00168{bottom:413.946667pt;}
.y1b7_c00168{bottom:416.253333pt;}
.y1b4_c00168{bottom:420.093333pt;}
.y1b3_c00168{bottom:423.173333pt;}
.y1b1_c00168{bottom:430.080000pt;}
.y1b0_c00168{bottom:431.613333pt;}
.y1af_c00168{bottom:433.920000pt;}
.y1b2_c00168{bottom:435.453333pt;}
.y1ae_c00168{bottom:436.986667pt;}
.y1ad_c00168{bottom:438.533333pt;}
.y1ac_c00168{bottom:446.213333pt;}
.y1ab_c00168{bottom:450.813333pt;}
.y1aa_c00168{bottom:452.346667pt;}
.y1a9_c00168{bottom:453.893333pt;}
.y1a7_c00168{bottom:454.653333pt;}
.y1a6_c00168{bottom:456.186667pt;}
.y1a8_c00168{bottom:457.733333pt;}
.y19d_c00168{bottom:458.493333pt;}
.y19f_c00168{bottom:459.266667pt;}
.y19e_c00168{bottom:460.800000pt;}
.y1a1_c00168{bottom:462.333333pt;}
.y1a5_c00168{bottom:463.106667pt;}
.y1a4_c00168{bottom:463.866667pt;}
.y1a3_c00168{bottom:465.413333pt;}
.y1a2_c00168{bottom:466.946667pt;}
.y19c_c00168{bottom:473.853333pt;}
.y1a0_c00168{bottom:474.626667pt;}
.y199_c00168{bottom:476.160000pt;}
.y19a_c00168{bottom:476.933333pt;}
.y19b_c00168{bottom:477.693333pt;}
.y196_c00168{bottom:479.226667pt;}
.y198_c00168{bottom:480.773333pt;}
.y194_c00168{bottom:482.306667pt;}
.y192_c00168{bottom:483.066667pt;}
.y197_c00168{bottom:486.906667pt;}
.y191_c00168{bottom:488.453333pt;}
.y195_c00168{bottom:489.986667pt;}
.y193_c00168{bottom:493.053333pt;}
.y190_c00168{bottom:499.200000pt;}
.y18d_c00168{bottom:499.973333pt;}
.y18f_c00168{bottom:501.506667pt;}
.y189_c00168{bottom:502.266667pt;}
.y18c_c00168{bottom:503.040000pt;}
.y18e_c00168{bottom:503.813333pt;}
.y188_c00168{bottom:504.573333pt;}
.y187_c00168{bottom:507.653333pt;}
.y18a_c00168{bottom:508.413333pt;}
.y185_c00168{bottom:510.720000pt;}
.y18b_c00168{bottom:512.253333pt;}
.y186_c00168{bottom:513.026667pt;}
.y184_c00168{bottom:514.560000pt;}
.y17e_c00168{bottom:515.333333pt;}
.y17f_c00168{bottom:516.093333pt;}
.y180_c00168{bottom:516.866667pt;}
.y181_c00168{bottom:517.626667pt;}
.y182_c00168{bottom:518.400000pt;}
.y183_c00168{bottom:519.173333pt;}
.y17b_c00168{bottom:522.240000pt;}
.y17c_c00168{bottom:523.773333pt;}
.y17d_c00168{bottom:524.546667pt;}
.y175_c00168{bottom:525.306667pt;}
.y179_c00168{bottom:526.080000pt;}
.y17a_c00168{bottom:526.853333pt;}
.y177_c00168{bottom:527.613333pt;}
.y178_c00168{bottom:529.920000pt;}
.y176_c00168{bottom:530.693333pt;}
.y174_c00168{bottom:540.666667pt;}
.y173_c00168{bottom:544.506667pt;}
.y171_c00168{bottom:545.280000pt;}
.y172_c00168{bottom:546.053333pt;}
.y170_c00168{bottom:547.586667pt;}
.y16c_c00168{bottom:548.346667pt;}
.y16e_c00168{bottom:549.893333pt;}
.y16f_c00168{bottom:551.426667pt;}
.y16d_c00168{bottom:552.186667pt;}
.y16b_c00168{bottom:554.493333pt;}
.y169_c00168{bottom:555.266667pt;}
.y166_c00168{bottom:556.800000pt;}
.y16a_c00168{bottom:558.333333pt;}
.y168_c00168{bottom:559.106667pt;}
.y167_c00168{bottom:559.866667pt;}
.y164_c00168{bottom:562.173333pt;}
.y163_c00168{bottom:562.946667pt;}
.y165_c00168{bottom:563.706667pt;}
.y161_c00168{bottom:566.786667pt;}
.y160_c00168{bottom:567.546667pt;}
.y162_c00168{bottom:568.320000pt;}
.y15e_c00168{bottom:569.093333pt;}
.y15a_c00168{bottom:569.853333pt;}
.y15d_c00168{bottom:570.626667pt;}
.y15b_c00168{bottom:572.160000pt;}
.y15c_c00168{bottom:572.933333pt;}
.y15f_c00168{bottom:573.693333pt;}
.y159_c00168{bottom:587.520000pt;}
.y157_c00168{bottom:588.293333pt;}
.y156_c00168{bottom:589.053333pt;}
.y153_c00168{bottom:592.133333pt;}
.y152_c00168{bottom:592.893333pt;}
.y155_c00168{bottom:593.666667pt;}
.y158_c00168{bottom:594.426667pt;}
.y154_c00168{bottom:595.973333pt;}
.y14c_c00168{bottom:597.506667pt;}
.y151_c00168{bottom:598.266667pt;}
.y150_c00168{bottom:599.813333pt;}
.y14e_c00168{bottom:600.573333pt;}
.y14f_c00168{bottom:601.346667pt;}
.y14a_c00168{bottom:602.106667pt;}
.y149_c00168{bottom:602.880000pt;}
.y148_c00168{bottom:603.653333pt;}
.y14d_c00168{bottom:605.186667pt;}
.y14b_c00168{bottom:605.946667pt;}
.y145_c00168{bottom:606.720000pt;}
.y147_c00168{bottom:607.493333pt;}
.y144_c00168{bottom:608.253333pt;}
.y143_c00168{bottom:612.093333pt;}
.y146_c00168{bottom:612.866667pt;}
.y141_c00168{bottom:613.626667pt;}
.y13f_c00168{bottom:614.400000pt;}
.y13e_c00168{bottom:615.173333pt;}
.y142_c00168{bottom:615.933333pt;}
.y13d_c00168{bottom:616.706667pt;}
.y140_c00168{bottom:618.240000pt;}
.y13c_c00168{bottom:632.066667pt;}
.y13b_c00168{bottom:633.600000pt;}
.y13a_c00168{bottom:634.373333pt;}
.y139_c00168{bottom:635.906667pt;}
.y137_c00168{bottom:637.440000pt;}
.y138_c00168{bottom:638.973333pt;}
.y12e_c00168{bottom:639.746667pt;}
.y136_c00168{bottom:641.280000pt;}
.y135_c00168{bottom:643.586667pt;}
.y133_c00168{bottom:644.346667pt;}
.y134_c00168{bottom:645.893333pt;}
.y131_c00168{bottom:647.426667pt;}
.y130_c00168{bottom:648.186667pt;}
.y12c_c00168{bottom:648.960000pt;}
.y132_c00168{bottom:650.493333pt;}
.y12d_c00168{bottom:651.266667pt;}
.y12f_c00168{bottom:652.800000pt;}
.y12a_c00168{bottom:654.333333pt;}
.y12b_c00168{bottom:655.106667pt;}
.y128_c00168{bottom:655.866667pt;}
.y129_c00168{bottom:657.413333pt;}
.y124_c00168{bottom:659.706667pt;}
.y123_c00168{bottom:660.480000pt;}
.y125_c00168{bottom:661.253333pt;}
.y127_c00168{bottom:662.013333pt;}
.y126_c00168{bottom:664.320000pt;}
.y122_c00168{bottom:672.000000pt;}
.y121_c00168{bottom:676.613333pt;}
.y11f_c00168{bottom:678.146667pt;}
.y11e_c00168{bottom:678.906667pt;}
.y11c_c00168{bottom:679.680000pt;}
.y11b_c00168{bottom:681.213333pt;}
.y117_c00168{bottom:681.986667pt;}
.y11a_c00168{bottom:683.520000pt;}
.y119_c00168{bottom:685.053333pt;}
.y11d_c00168{bottom:685.826667pt;}
.y118_c00168{bottom:686.586667pt;}
.y120_c00168{bottom:687.360000pt;}
.y116_c00168{bottom:698.880000pt;}
.y115_c00168{bottom:699.653333pt;}
.y114_c00168{bottom:701.186667pt;}
.y111_c00168{bottom:703.493333pt;}
.y110_c00168{bottom:706.560000pt;}
.y113_c00168{bottom:707.333333pt;}
.y112_c00168{bottom:708.093333pt;}
.y10f_c00168{bottom:720.386667pt;}
.y10c_c00168{bottom:721.146667pt;}
.y10d_c00168{bottom:721.920000pt;}
.y10e_c00168{bottom:722.693333pt;}
.y10b_c00168{bottom:723.453333pt;}
.y10a_c00168{bottom:724.226667pt;}
.y106_c00168{bottom:724.986667pt;}
.y107_c00168{bottom:725.760000pt;}
.y109_c00168{bottom:728.066667pt;}
.y108_c00168{bottom:729.600000pt;}
.y105_c00168{bottom:738.813333pt;}
.y104_c00168{bottom:739.586667pt;}
.y100_c00168{bottom:742.653333pt;}
.yfe_c00168{bottom:743.426667pt;}
.yfd_c00168{bottom:744.186667pt;}
.y103_c00168{bottom:744.960000pt;}
.y102_c00168{bottom:747.266667pt;}
.yfc_c00168{bottom:748.800000pt;}
.y101_c00168{bottom:750.333333pt;}
.yff_c00168{bottom:751.106667pt;}
.yfa_c00168{bottom:764.160000pt;}
.yfb_c00168{bottom:765.693333pt;}
.yf9_c00168{bottom:766.466667pt;}
.yf6_c00168{bottom:767.226667pt;}
.yf7_c00168{bottom:768.000000pt;}
.yf1_c00168{bottom:768.773333pt;}
.yf3_c00168{bottom:769.533333pt;}
.yf2_c00168{bottom:770.306667pt;}
.yf8_c00168{bottom:771.066667pt;}
.yf5_c00168{bottom:771.840000pt;}
.yf4_c00168{bottom:774.146667pt;}
.yf0_c00168{bottom:788.733333pt;}
.yef_c00168{bottom:789.506667pt;}
.yee_c00168{bottom:790.266667pt;}
.yea_c00168{bottom:791.813333pt;}
.ye8_c00168{bottom:792.573333pt;}
.yec_c00168{bottom:793.346667pt;}
.yeb_c00168{bottom:794.106667pt;}
.yed_c00168{bottom:795.653333pt;}
.ye9_c00168{bottom:797.186667pt;}
.ye6_c00168{bottom:810.240000pt;}
.ye7_c00168{bottom:811.013333pt;}
.ye5_c00168{bottom:811.773333pt;}
.ye2_c00168{bottom:814.080000pt;}
.ye1_c00168{bottom:814.853333pt;}
.ye3_c00168{bottom:815.613333pt;}
.ye0_c00168{bottom:816.386667pt;}
.ye4_c00168{bottom:817.146667pt;}
.y210_c00168{bottom:820.226667pt;}
.ydf_c00168{bottom:824.066667pt;}
.ydd_c00168{bottom:832.506667pt;}
.ydc_c00168{bottom:834.053333pt;}
.yda_c00168{bottom:835.586667pt;}
.ydb_c00168{bottom:836.346667pt;}
.yd6_c00168{bottom:837.120000pt;}
.yd9_c00168{bottom:838.653333pt;}
.yd7_c00168{bottom:839.426667pt;}
.yd8_c00168{bottom:840.186667pt;}
.yde_c00168{bottom:842.493333pt;}
.yd5_c00168{bottom:856.320000pt;}
.yd4_c00168{bottom:857.853333pt;}
.yd3_c00168{bottom:858.626667pt;}
.yd2_c00168{bottom:859.386667pt;}
.yd0_c00168{bottom:860.160000pt;}
.yd1_c00168{bottom:860.933333pt;}
.ycf_c00168{bottom:862.466667pt;}
.ycc_c00168{bottom:873.986667pt;}
.yce_c00168{bottom:874.746667pt;}
.ycb_c00168{bottom:875.520000pt;}
.ycd_c00168{bottom:877.053333pt;}
.yc8_c00168{bottom:879.360000pt;}
.yc5_c00168{bottom:880.133333pt;}
.yca_c00168{bottom:882.426667pt;}
.yc9_c00168{bottom:883.200000pt;}
.yc6_c00168{bottom:883.973333pt;}
.yc7_c00168{bottom:884.733333pt;}
.yc3_c00168{bottom:889.346667pt;}
.yc4_c00168{bottom:890.880000pt;}
.ybd_c00168{bottom:891.653333pt;}
.yc2_c00168{bottom:892.413333pt;}
.yc1_c00168{bottom:893.186667pt;}
.ybf_c00168{bottom:893.946667pt;}
.ybe_c00168{bottom:894.720000pt;}
.yba_c00168{bottom:895.493333pt;}
.ybc_c00168{bottom:896.253333pt;}
.yc0_c00168{bottom:897.026667pt;}
.ybb_c00168{bottom:899.333333pt;}
.yb7_c00168{bottom:900.093333pt;}
.yb9_c00168{bottom:901.626667pt;}
.yb6_c00168{bottom:902.400000pt;}
.yb5_c00168{bottom:903.173333pt;}
.yb1_c00168{bottom:903.933333pt;}
.yb8_c00168{bottom:904.706667pt;}
.yb0_c00168{bottom:905.466667pt;}
.yb3_c00168{bottom:906.240000pt;}
.yb4_c00168{bottom:907.013333pt;}
.yaf_c00168{bottom:907.773333pt;}
.yb2_c00168{bottom:908.546667pt;}
.yad_c00168{bottom:910.853333pt;}
.yae_c00168{bottom:911.613333pt;}
.yab_c00168{bottom:913.920000pt;}
.ya7_c00168{bottom:914.693333pt;}
.ya6_c00168{bottom:915.453333pt;}
.ya8_c00168{bottom:916.226667pt;}
.ya5_c00168{bottom:916.986667pt;}
.yaa_c00168{bottom:917.760000pt;}
.yac_c00168{bottom:918.533333pt;}
.ya9_c00168{bottom:920.066667pt;}
.y9e_c00168{bottom:920.826667pt;}
.ya4_c00168{bottom:921.600000pt;}
.ya2_c00168{bottom:922.373333pt;}
.y9d_c00168{bottom:923.133333pt;}
.ya1_c00168{bottom:923.906667pt;}
.y9b_c00168{bottom:924.666667pt;}
.y98_c00168{bottom:925.440000pt;}
.ya0_c00168{bottom:926.973333pt;}
.y9c_c00168{bottom:927.746667pt;}
.y9f_c00168{bottom:928.506667pt;}
.y99_c00168{bottom:929.280000pt;}
.y97_c00168{bottom:930.053333pt;}
.y9a_c00168{bottom:930.813333pt;}
.y94_c00168{bottom:932.346667pt;}
.y95_c00168{bottom:933.893333pt;}
.ya3_c00168{bottom:934.653333pt;}
.y92_c00168{bottom:935.426667pt;}
.y8f_c00168{bottom:936.960000pt;}
.y96_c00168{bottom:937.733333pt;}
.y91_c00168{bottom:938.493333pt;}
.y90_c00168{bottom:939.266667pt;}
.y93_c00168{bottom:940.026667pt;}
.y8c_c00168{bottom:944.640000pt;}
.y8e_c00168{bottom:946.173333pt;}
.y87_c00168{bottom:946.946667pt;}
.y8a_c00168{bottom:947.706667pt;}
.y88_c00168{bottom:948.480000pt;}
.y8b_c00168{bottom:949.253333pt;}
.y86_c00168{bottom:950.786667pt;}
.y89_c00168{bottom:952.320000pt;}
.y8d_c00168{bottom:956.933333pt;}
.y85_c00168{bottom:966.906667pt;}
.y83_c00168{bottom:968.453333pt;}
.y82_c00168{bottom:969.213333pt;}
.y81_c00168{bottom:970.746667pt;}
.y80_c00168{bottom:972.293333pt;}
.y84_c00168{bottom:973.053333pt;}
.y7f_c00168{bottom:980.733333pt;}
.y7d_c00168{bottom:990.720000pt;}
.y7c_c00168{bottom:992.253333pt;}
.y7a_c00168{bottom:993.026667pt;}
.y7e_c00168{bottom:993.786667pt;}
.y7b_c00168{bottom:994.560000pt;}
.y78_c00168{bottom:1008.386667pt;}
.y79_c00168{bottom:1009.146667pt;}
.y77_c00168{bottom:1010.693333pt;}
.y71_c00168{bottom:1013.760000pt;}
.y74_c00168{bottom:1014.533333pt;}
.y75_c00168{bottom:1016.066667pt;}
.y72_c00168{bottom:1016.826667pt;}
.y76_c00168{bottom:1017.600000pt;}
.y73_c00168{bottom:1018.373333pt;}
.y6f_c00168{bottom:1034.493333pt;}
.y70_c00168{bottom:1035.266667pt;}
.y6e_c00168{bottom:1036.026667pt;}
.y6c_c00168{bottom:1038.333333pt;}
.y6d_c00168{bottom:1042.946667pt;}
.y6a_c00168{bottom:1054.466667pt;}
.y6b_c00168{bottom:1055.226667pt;}
.y68_c00168{bottom:1057.533333pt;}
.y63_c00168{bottom:1058.306667pt;}
.y67_c00168{bottom:1059.066667pt;}
.y64_c00168{bottom:1059.840000pt;}
.y65_c00168{bottom:1060.613333pt;}
.y69_c00168{bottom:1061.373333pt;}
.y61_c00168{bottom:1062.146667pt;}
.y62_c00168{bottom:1062.906667pt;}
.y66_c00168{bottom:1063.680000pt;}
.y5f_c00168{bottom:1064.453333pt;}
.y59_c00168{bottom:1065.213333pt;}
.y5d_c00168{bottom:1067.520000pt;}
.y5e_c00168{bottom:1069.053333pt;}
.y60_c00168{bottom:1069.826667pt;}
.y55_c00168{bottom:1070.586667pt;}
.y54_c00168{bottom:1071.360000pt;}
.y5c_c00168{bottom:1072.893333pt;}
.y58_c00168{bottom:1073.666667pt;}
.y5b_c00168{bottom:1074.426667pt;}
.y5a_c00168{bottom:1075.973333pt;}
.y57_c00168{bottom:1076.733333pt;}
.y56_c00168{bottom:1077.506667pt;}
.y50_c00168{bottom:1079.813333pt;}
.y4e_c00168{bottom:1081.346667pt;}
.y4f_c00168{bottom:1082.106667pt;}
.y51_c00168{bottom:1082.880000pt;}
.y4d_c00168{bottom:1083.653333pt;}
.y4c_c00168{bottom:1084.413333pt;}
.y52_c00168{bottom:1085.946667pt;}
.y53_c00168{bottom:1098.240000pt;}
.y4a_c00168{bottom:1099.773333pt;}
.y4b_c00168{bottom:1102.080000pt;}
.y47_c00168{bottom:1103.613333pt;}
.y48_c00168{bottom:1104.386667pt;}
.y44_c00168{bottom:1105.146667pt;}
.y45_c00168{bottom:1105.920000pt;}
.y46_c00168{bottom:1106.693333pt;}
.y43_c00168{bottom:1107.453333pt;}
.y49_c00168{bottom:1108.226667pt;}
.y3f_c00168{bottom:1122.813333pt;}
.y41_c00168{bottom:1123.586667pt;}
.y3e_c00168{bottom:1124.346667pt;}
.y3d_c00168{bottom:1126.653333pt;}
.y3c_c00168{bottom:1128.186667pt;}
.y42_c00168{bottom:1128.960000pt;}
.y40_c00168{bottom:1129.733333pt;}
.y3a_c00168{bottom:1133.573333pt;}
.y39_c00168{bottom:1135.106667pt;}
.y37_c00168{bottom:1135.866667pt;}
.y3b_c00168{bottom:1137.413333pt;}
.y35_c00168{bottom:1138.173333pt;}
.y36_c00168{bottom:1138.946667pt;}
.y38_c00168{bottom:1139.706667pt;}
.y34_c00168{bottom:1141.253333pt;}
.y33_c00168{bottom:1145.093333pt;}
.y2b_c00168{bottom:1147.386667pt;}
.y2f_c00168{bottom:1148.160000pt;}
.y2d_c00168{bottom:1148.933333pt;}
.y2c_c00168{bottom:1149.693333pt;}
.y32_c00168{bottom:1150.466667pt;}
.y31_c00168{bottom:1151.226667pt;}
.y30_c00168{bottom:1152.000000pt;}
.y25_c00168{bottom:1152.773333pt;}
.y2e_c00168{bottom:1153.533333pt;}
.y2a_c00168{bottom:1155.066667pt;}
.y26_c00168{bottom:1156.613333pt;}
.y23_c00168{bottom:1157.373333pt;}
.y22_c00168{bottom:1158.146667pt;}
.y28_c00168{bottom:1158.906667pt;}
.y27_c00168{bottom:1159.680000pt;}
.y29_c00168{bottom:1160.453333pt;}
.y24_c00168{bottom:1161.213333pt;}
.y20_c00168{bottom:1161.986667pt;}
.y1f_c00168{bottom:1162.746667pt;}
.y21_c00168{bottom:1163.520000pt;}
.y1d_c00168{bottom:1168.893333pt;}
.y1c_c00168{bottom:1169.666667pt;}
.y1a_c00168{bottom:1170.426667pt;}
.y1e_c00168{bottom:1171.973333pt;}
.y19_c00168{bottom:1172.733333pt;}
.y1b_c00168{bottom:1173.506667pt;}
.y18_c00168{bottom:1175.040000pt;}
.y20f_c00168{bottom:1183.493333pt;}
.y17_c00168{bottom:1185.026667pt;}
.y14_c00168{bottom:1189.626667pt;}
.y20e_c00168{bottom:1191.173333pt;}
.y15_c00168{bottom:1191.933333pt;}
.y12_c00168{bottom:1192.706667pt;}
.y11_c00168{bottom:1193.466667pt;}
.y13_c00168{bottom:1194.240000pt;}
.y10_c00168{bottom:1195.013333pt;}
.y16_c00168{bottom:1204.226667pt;}
.yd_c00168{bottom:1211.133333pt;}
.y9_c00168{bottom:1211.906667pt;}
.yb_c00168{bottom:1212.666667pt;}
.y7_c00168{bottom:1214.973333pt;}
.ya_c00168{bottom:1216.506667pt;}
.yc_c00168{bottom:1217.280000pt;}
.y8_c00168{bottom:1218.813333pt;}
.ye_c00168{bottom:1219.586667pt;}
.yf_c00168{bottom:1224.960000pt;}
.y5_c00168{bottom:1238.786667pt;}
.y6_c00168{bottom:1241.853333pt;}
.y3_c00168{bottom:1254.906667pt;}
.y2_c00168{bottom:1257.213333pt;}
.y1_c00168{bottom:1260.293333pt;}
.y4_c00168{bottom:1264.133333pt;}
.h6_c00168{height:2.764500pt;}
.h1c_c00168{height:4.799479pt;}
.h3_c00168{height:5.519401pt;}
.hf_c00168{height:8.303099pt;}
.h1b_c00168{height:11.038802pt;}
.h2_c00168{height:13.822500pt;}
.h4_c00168{height:16.606198pt;}
.h1e_c00168{height:19.341901pt;}
.h20_c00168{height:22.125599pt;}
.h1d_c00168{height:24.861302pt;}
.h23_c00168{height:27.645000pt;}
.h16_c00168{height:30.428698pt;}
.h27_c00168{height:31.966198pt;}
.h1f_c00168{height:33.164401pt;}
.h5_c00168{height:35.948099pt;}
.h21_c00168{height:38.683802pt;}
.h22_c00168{height:41.467500pt;}
.h24_c00168{height:44.251198pt;}
.h1a_c00168{height:46.986901pt;}
.h18_c00168{height:49.770599pt;}
.h17_c00168{height:52.506302pt;}
.h10_c00168{height:55.290000pt;}
.h15_c00168{height:58.073698pt;}
.h25_c00168{height:60.809401pt;}
.h11_c00168{height:63.593099pt;}
.hd_c00168{height:66.328802pt;}
.h19_c00168{height:69.112500pt;}
.hc_c00168{height:71.896198pt;}
.h12_c00168{height:74.631901pt;}
.h14_c00168{height:77.415599pt;}
.h13_c00168{height:80.151302pt;}
.ha_c00168{height:82.935000pt;}
.h26_c00168{height:85.718698pt;}
.he_c00168{height:88.454401pt;}
.hb_c00168{height:96.757500pt;}
.h8_c00168{height:99.541198pt;}
.h7_c00168{height:102.276901pt;}
.h9_c00168{height:116.099401pt;}
.h0_c00168{height:1353.986667pt;}
.h1_c00168{height:1354.000000pt;}
.w0_c00168{width:984.573333pt;}
.w1_c00168{width:984.666667pt;}
.x0_c00168{left:0.000000pt;}
.x113_c00168{left:90.626667pt;}
.x11b_c00168{left:97.533333pt;}
.x114_c00168{left:103.680000pt;}
.x5_c00168{left:105.213333pt;}
.x115_c00168{left:110.586667pt;}
.x122_c00168{left:116.733333pt;}
.x6_c00168{left:119.813333pt;}
.x123_c00168{left:122.880000pt;}
.x116_c00168{left:125.186667pt;}
.x11c_c00168{left:138.240000pt;}
.x128_c00168{left:142.080000pt;}
.x117_c00168{left:143.613333pt;}
.x11d_c00168{left:145.920000pt;}
.x124_c00168{left:147.453333pt;}
.x13b_c00168{left:152.066667pt;}
.x13c_c00168{left:157.440000pt;}
.x125_c00168{left:161.280000pt;}
.x126_c00168{left:167.426667pt;}
.x118_c00168{left:178.173333pt;}
.x41_c00168{left:182.013333pt;}
.x11e_c00168{left:183.546667pt;}
.x2b_c00168{left:185.093333pt;}
.x12b_c00168{left:188.933333pt;}
.x133_c00168{left:190.466667pt;}
.x127_c00168{left:192.000000pt;}
.x11f_c00168{left:194.306667pt;}
.xf1_c00168{left:198.146667pt;}
.x138_c00168{left:200.453333pt;}
.x119_c00168{left:201.986667pt;}
.x129_c00168{left:203.520000pt;}
.x131_c00168{left:205.053333pt;}
.x9b_c00168{left:206.586667pt;}
.x13_c00168{left:208.893333pt;}
.x42_c00168{left:211.200000pt;}
.xd4_c00168{left:213.506667pt;}
.xe8_c00168{left:215.040000pt;}
.xa3_c00168{left:216.573333pt;}
.xfc_c00168{left:218.106667pt;}
.x1e_c00168{left:219.653333pt;}
.x72_c00168{left:221.946667pt;}
.x69_c00168{left:223.493333pt;}
.x1f_c00168{left:225.026667pt;}
.x7_c00168{left:226.560000pt;}
.xba_c00168{left:228.093333pt;}
.x2c_c00168{left:232.706667pt;}
.x7d_c00168{left:235.013333pt;}
.x59_c00168{left:236.546667pt;}
.x101_c00168{left:240.386667pt;}
.xdd_c00168{left:242.693333pt;}
.xf2_c00168{left:244.226667pt;}
.x2d_c00168{left:245.760000pt;}
.x120_c00168{left:249.600000pt;}
.xec_c00168{left:251.133333pt;}
.x2e_c00168{left:253.440000pt;}
.x11a_c00168{left:254.973333pt;}
.x2f_c00168{left:256.506667pt;}
.x6e_c00168{left:258.813333pt;}
.x5a_c00168{left:261.120000pt;}
.xa7_c00168{left:262.653333pt;}
.x20_c00168{left:264.960000pt;}
.x12c_c00168{left:267.266667pt;}
.x95_c00168{left:268.800000pt;}
.x136_c00168{left:270.333333pt;}
.x73_c00168{left:271.866667pt;}
.x14_c00168{left:273.413333pt;}
.xf8_c00168{left:274.946667pt;}
.x2_c00168{left:276.480000pt;}
.x43_c00168{left:278.786667pt;}
.xed_c00168{left:280.320000pt;}
.x121_c00168{left:281.853333pt;}
.x1_c00168{left:284.160000pt;}
.x30_c00168{left:285.693333pt;}
.x3_c00168{left:288.000000pt;}
.x6a_c00168{left:289.533333pt;}
.xe9_c00168{left:293.373333pt;}
.xde_c00168{left:295.680000pt;}
.xf3_c00168{left:297.986667pt;}
.x8_c00168{left:299.520000pt;}
.x74_c00168{left:301.826667pt;}
.xae_c00168{left:304.133333pt;}
.x5b_c00168{left:307.200000pt;}
.x96_c00168{left:308.733333pt;}
.x91_c00168{left:310.266667pt;}
.xee_c00168{left:311.813333pt;}
.xf4_c00168{left:314.880000pt;}
.x44_c00168{left:317.186667pt;}
.x134_c00168{left:318.720000pt;}
.xa8_c00168{left:321.786667pt;}
.x31_c00168{left:324.093333pt;}
.x10b_c00168{left:325.626667pt;}
.x9_c00168{left:327.933333pt;}
.x75_c00168{left:330.240000pt;}
.x111_c00168{left:332.546667pt;}
.xc4_c00168{left:334.080000pt;}
.x45_c00168{left:337.146667pt;}
.xea_c00168{left:338.693333pt;}
.xd7_c00168{left:340.226667pt;}
.xa4_c00168{left:341.760000pt;}
.x32_c00168{left:344.826667pt;}
.x102_c00168{left:347.133333pt;}
.x6f_c00168{left:350.213333pt;}
.x5c_c00168{left:353.280000pt;}
.x76_c00168{left:354.813333pt;}
.x7e_c00168{left:357.120000pt;}
.x46_c00168{left:359.426667pt;}
.x5d_c00168{left:360.960000pt;}
.x47_c00168{left:362.493333pt;}
.x21_c00168{left:364.026667pt;}
.xdc_c00168{left:366.333333pt;}
.x33_c00168{left:368.640000pt;}
.xdf_c00168{left:371.706667pt;}
.xbb_c00168{left:373.253333pt;}
.x10d_c00168{left:376.320000pt;}
.x15_c00168{left:380.933333pt;}
.xb3_c00168{left:383.226667pt;}
.x22_c00168{left:384.773333pt;}
.x7f_c00168{left:387.066667pt;}
.x9c_c00168{left:388.613333pt;}
.x5e_c00168{left:391.680000pt;}
.xef_c00168{left:393.213333pt;}
.xa9_c00168{left:394.746667pt;}
.xd5_c00168{left:396.293333pt;}
.xe0_c00168{left:398.586667pt;}
.x89_c00168{left:402.426667pt;}
.x23_c00168{left:403.973333pt;}
.x48_c00168{left:407.040000pt;}
.xfd_c00168{left:410.106667pt;}
.x49_c00168{left:412.413333pt;}
.xa_c00168{left:414.720000pt;}
.xd8_c00168{left:416.253333pt;}
.x6b_c00168{left:419.333333pt;}
.x16_c00168{left:423.173333pt;}
.x4a_c00168{left:425.466667pt;}
.x77_c00168{left:427.013333pt;}
.x80_c00168{left:428.546667pt;}
.xe2_c00168{left:430.080000pt;}
.xcd_c00168{left:433.146667pt;}
.x24_c00168{left:434.693333pt;}
.x34_c00168{left:436.226667pt;}
.x10e_c00168{left:437.760000pt;}
.x4b_c00168{left:439.293333pt;}
.x8a_c00168{left:440.826667pt;}
.x4c_c00168{left:443.906667pt;}
.xe1_c00168{left:446.213333pt;}
.x17_c00168{left:449.280000pt;}
.xc5_c00168{left:451.586667pt;}
.xbc_c00168{left:455.426667pt;}
.x106_c00168{left:456.960000pt;}
.xaa_c00168{left:459.266667pt;}
.xe3_c00168{left:460.800000pt;}
.xfe_c00168{left:462.333333pt;}
.x81_c00168{left:463.866667pt;}
.x35_c00168{left:466.946667pt;}
.x8b_c00168{left:468.480000pt;}
.x10f_c00168{left:470.786667pt;}
.xce_c00168{left:472.320000pt;}
.x78_c00168{left:475.386667pt;}
.x4d_c00168{left:477.693333pt;}
.x112_c00168{left:480.000000pt;}
.x12a_c00168{left:481.533333pt;}
.x5f_c00168{left:485.373333pt;}
.xb_c00168{left:487.680000pt;}
.x36_c00168{left:489.213333pt;}
.xab_c00168{left:490.746667pt;}
.x60_c00168{left:493.053333pt;}
.x8c_c00168{left:494.586667pt;}
.x9d_c00168{left:496.893333pt;}
.x18_c00168{left:498.426667pt;}
.xf9_c00168{left:499.973333pt;}
.xbd_c00168{left:501.506667pt;}
.x79_c00168{left:503.040000pt;}
.x82_c00168{left:505.346667pt;}
.x103_c00168{left:509.186667pt;}
.x132_c00168{left:513.026667pt;}
.x25_c00168{left:514.560000pt;}
.x37_c00168{left:516.866667pt;}
.xaf_c00168{left:518.400000pt;}
.x8d_c00168{left:520.706667pt;}
.x4e_c00168{left:522.240000pt;}
.x92_c00168{left:524.546667pt;}
.xd9_c00168{left:526.853333pt;}
.xb4_c00168{left:529.146667pt;}
.xff_c00168{left:531.453333pt;}
.x4f_c00168{left:532.986667pt;}
.xb0_c00168{left:536.066667pt;}
.x104_c00168{left:537.600000pt;}
.x83_c00168{left:539.133333pt;}
.x50_c00168{left:542.213333pt;}
.x12d_c00168{left:543.746667pt;}
.x61_c00168{left:546.053333pt;}
.x84_c00168{left:548.346667pt;}
.x26_c00168{left:550.653333pt;}
.x7a_c00168{left:552.186667pt;}
.xcf_c00168{left:555.266667pt;}
.x97_c00168{left:556.800000pt;}
.x51_c00168{left:558.333333pt;}
.x6c_c00168{left:559.866667pt;}
.x62_c00168{left:562.173333pt;}
.xbe_c00168{left:563.706667pt;}
.xac_c00168{left:566.786667pt;}
.x9e_c00168{left:568.320000pt;}
.xf5_c00168{left:570.626667pt;}
.xc_c00168{left:572.160000pt;}
.xd0_c00168{left:573.693333pt;}
.x110_c00168{left:576.773333pt;}
.x19_c00168{left:578.306667pt;}
.xfa_c00168{left:579.840000pt;}
.x107_c00168{left:582.146667pt;}
.xbf_c00168{left:583.680000pt;}
.x85_c00168{left:585.986667pt;}
.x38_c00168{left:588.293333pt;}
.x70_c00168{left:589.826667pt;}
.x63_c00168{left:591.360000pt;}
.x27_c00168{left:592.893333pt;}
.xc6_c00168{left:595.200000pt;}
.xb5_c00168{left:596.733333pt;}
.xe4_c00168{left:599.040000pt;}
.x39_c00168{left:600.573333pt;}
.xa5_c00168{left:603.653333pt;}
.x13a_c00168{left:605.186667pt;}
.xf6_c00168{left:606.720000pt;}
.x12e_c00168{left:608.253333pt;}
.x9f_c00168{left:609.786667pt;}
.x1a_c00168{left:611.333333pt;}
.x3a_c00168{left:615.173333pt;}
.xd_c00168{left:618.240000pt;}
.x10c_c00168{left:619.773333pt;}
.x64_c00168{left:624.386667pt;}
.xc7_c00168{left:625.920000pt;}
.x52_c00168{left:628.986667pt;}
.xe_c00168{left:630.533333pt;}
.x3b_c00168{left:632.826667pt;}
.x53_c00168{left:635.133333pt;}
.x3c_c00168{left:638.213333pt;}
.xc8_c00168{left:639.746667pt;}
.xf0_c00168{left:641.280000pt;}
.xd6_c00168{left:642.813333pt;}
.x3d_c00168{left:645.120000pt;}
.x100_c00168{left:646.653333pt;}
.xf7_c00168{left:648.960000pt;}
.x86_c00168{left:650.493333pt;}
.x65_c00168{left:655.106667pt;}
.x7b_c00168{left:656.640000pt;}
.x54_c00168{left:658.173333pt;}
.xb6_c00168{left:659.706667pt;}
.xda_c00168{left:661.253333pt;}
.x28_c00168{left:663.546667pt;}
.xc0_c00168{left:666.626667pt;}
.xb1_c00168{left:668.933333pt;}
.xe6_c00168{left:671.226667pt;}
.xdb_c00168{left:672.773333pt;}
.xf_c00168{left:674.306667pt;}
.xc9_c00168{left:675.840000pt;}
.x55_c00168{left:677.373333pt;}
.xb7_c00168{left:678.906667pt;}
.x137_c00168{left:680.453333pt;}
.x93_c00168{left:681.986667pt;}
.xc1_c00168{left:684.293333pt;}
.x98_c00168{left:686.586667pt;}
.x108_c00168{left:688.133333pt;}
.xca_c00168{left:690.426667pt;}
.x66_c00168{left:692.733333pt;}
.xeb_c00168{left:695.040000pt;}
.x1b_c00168{left:697.346667pt;}
.xb8_c00168{left:699.653333pt;}
.xc2_c00168{left:701.186667pt;}
.xa0_c00168{left:702.720000pt;}
.x109_c00168{left:704.253333pt;}
.x99_c00168{left:705.786667pt;}
.x56_c00168{left:707.333333pt;}
.xa6_c00168{left:709.626667pt;}
.x1c_c00168{left:712.706667pt;}
.xad_c00168{left:714.240000pt;}
.xb2_c00168{left:715.773333pt;}
.xcb_c00168{left:718.080000pt;}
.x6d_c00168{left:719.613333pt;}
.x130_c00168{left:721.146667pt;}
.x10_c00168{left:722.693333pt;}
.x139_c00168{left:724.226667pt;}
.x3e_c00168{left:728.826667pt;}
.xa1_c00168{left:732.666667pt;}
.xd1_c00168{left:734.213333pt;}
.x12f_c00168{left:735.746667pt;}
.xe5_c00168{left:737.280000pt;}
.x8e_c00168{left:739.586667pt;}
.x87_c00168{left:741.120000pt;}
.xfb_c00168{left:742.653333pt;}
.x7c_c00168{left:744.186667pt;}
.x57_c00168{left:745.733333pt;}
.x3f_c00168{left:748.026667pt;}
.xd2_c00168{left:749.573333pt;}
.x1d_c00168{left:751.106667pt;}
.x94_c00168{left:752.640000pt;}
.xe7_c00168{left:754.173333pt;}
.x10a_c00168{left:756.480000pt;}
.x67_c00168{left:758.786667pt;}
.x29_c00168{left:761.093333pt;}
.x71_c00168{left:764.160000pt;}
.xcc_c00168{left:766.466667pt;}
.x40_c00168{left:768.000000pt;}
.xa2_c00168{left:769.533333pt;}
.x9a_c00168{left:771.066667pt;}
.x2a_c00168{left:772.613333pt;}
.x8f_c00168{left:774.906667pt;}
.xc3_c00168{left:776.453333pt;}
.x68_c00168{left:781.053333pt;}
.x58_c00168{left:783.360000pt;}
.xd3_c00168{left:784.893333pt;}
.x88_c00168{left:786.426667pt;}
.x135_c00168{left:787.973333pt;}
.x105_c00168{left:794.106667pt;}
.x11_c00168{left:795.653333pt;}
.x90_c00168{left:797.186667pt;}
.xb9_c00168{left:802.560000pt;}
.x12_c00168{left:806.400000pt;}
.x13d_c00168{left:880.893333pt;}
.x13e_c00168{left:887.040000pt;}
.x4_c00168{left:923.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8d08636eac2aeb995c4ddcc.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.109863;font-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_c00169{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00169{transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);}
.m13f_c00169{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.m162_c00169{transform:matrix(0.072125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072125,0.000000,0.000000,0.250000,0,0);}
.m10_c00169{transform:matrix(0.072175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072175,0.000000,0.000000,0.250000,0,0);}
.ma2_c00169{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);}
.m4_c00169{transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);}
.m14d_c00169{transform:matrix(0.082225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082225,0.000000,0.000000,0.250000,0,0);}
.mae_c00169{transform:matrix(0.083300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083300,0.000000,0.000000,0.250000,0,0);}
.m125_c00169{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m167_c00169{transform:matrix(0.095675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095675,0.000000,0.000000,0.250000,0,0);}
.mbf_c00169{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m2_c00169{transform:matrix(0.109225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109225,0.000000,0.000000,0.250000,0,0);}
.m25_c00169{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m190_c00169{transform:matrix(0.113575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113575,0.000000,0.000000,0.250000,0,0);}
.m28_c00169{transform:matrix(0.114900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114900,0.000000,0.000000,0.250000,0,0);}
.ma9_c00169{transform:matrix(0.115075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115075,0.000000,0.000000,0.250000,0,0);}
.m1e_c00169{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m193_c00169{transform:matrix(0.116150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116150,0.000000,0.000000,0.250000,0,0);}
.m13b_c00169{transform:matrix(0.117875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117875,0.000000,0.000000,0.250000,0,0);}
.m22_c00169{transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);}
.m185_c00169{transform:matrix(0.122075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122075,0.000000,0.000000,0.250000,0,0);}
.mc1_c00169{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.md_c00169{transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);}
.m9a_c00169{transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);}
.m11d_c00169{transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);}
.m130_c00169{transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);}
.ma_c00169{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m15c_c00169{transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);}
.m168_c00169{transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);}
.m179_c00169{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.m1_c00169{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00169{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.m189_c00169{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);}
.m3d_c00169{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00169{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);}
.m15_c00169{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);}
.m54_c00169{transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);}
.m163_c00169{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m29_c00169{transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);}
.m80_c00169{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.m12b_c00169{transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);}
.m69_c00169{transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);}
.m92_c00169{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);}
.m18c_c00169{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);}
.m5d_c00169{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m164_c00169{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);}
.m9d_c00169{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.mb4_c00169{transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);}
.m147_c00169{transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);}
.m38_c00169{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);}
.m62_c00169{transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);}
.mf6_c00169{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);}
.mc3_c00169{transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);}
.m24_c00169{transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);}
.m141_c00169{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);}
.m187_c00169{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m5b_c00169{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.mde_c00169{transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);}
.m135_c00169{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m126_c00169{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m180_c00169{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00169{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.m145_c00169{transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);}
.m9c_c00169{transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);}
.m4d_c00169{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.mef_c00169{transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);}
.ma5_c00169{transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);}
.mc4_c00169{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m140_c00169{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);}
.m169_c00169{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.m181_c00169{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.m115_c00169{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m12c_c00169{transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);}
.m150_c00169{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);}
.m127_c00169{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m1d_c00169{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m16_c00169{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);}
.md7_c00169{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.mac_c00169{transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);}
.m108_c00169{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.me4_c00169{transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);}
.m7c_c00169{transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);}
.mca_c00169{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m170_c00169{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);}
.m13c_c00169{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.m117_c00169{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m85_c00169{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);}
.m88_c00169{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m15f_c00169{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);}
.m9_c00169{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00169{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m36_c00169{transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);}
.m42_c00169{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.me7_c00169{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);}
.m18_c00169{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);}
.m142_c00169{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.md1_c00169{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m119_c00169{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.m11c_c00169{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.mfe_c00169{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m16e_c00169{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.m173_c00169{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.m9f_c00169{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.m133_c00169{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.me1_c00169{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m129_c00169{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);}
.m17c_c00169{transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);}
.m172_c00169{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m18f_c00169{transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);}
.mc_c00169{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);}
.m111_c00169{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m11a_c00169{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);}
.m11b_c00169{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);}
.me8_c00169{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.mc2_c00169{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);}
.m6a_c00169{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.m116_c00169{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);}
.mfd_c00169{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);}
.m160_c00169{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);}
.mc5_c00169{transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);}
.m14b_c00169{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m40_c00169{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m91_c00169{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m18a_c00169{transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);}
.m174_c00169{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);}
.m110_c00169{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m3e_c00169{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);}
.m156_c00169{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.mbb_c00169{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);}
.md9_c00169{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);}
.m18b_c00169{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m183_c00169{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.mbe_c00169{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);}
.m157_c00169{transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);}
.m16b_c00169{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.m13e_c00169{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m118_c00169{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);}
.m8f_c00169{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m3_c00169{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m8e_c00169{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m121_c00169{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);}
.m18e_c00169{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m82_c00169{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.ma7_c00169{transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);}
.m61_c00169{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);}
.m13d_c00169{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);}
.m10c_c00169{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);}
.m138_c00169{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m83_c00169{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.m47_c00169{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.mbd_c00169{transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);}
.meb_c00169{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.m13a_c00169{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);}
.m178_c00169{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);}
.m6e_c00169{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m191_c00169{transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);}
.m71_c00169{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.me6_c00169{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m99_c00169{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m177_c00169{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.m84_c00169{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.mda_c00169{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);}
.m17b_c00169{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m79_c00169{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m148_c00169{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.maf_c00169{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m15d_c00169{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m1c_c00169{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.mc0_c00169{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m65_c00169{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);}
.mad_c00169{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.m89_c00169{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);}
.me2_c00169{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m158_c00169{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);}
.m87_c00169{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m26_c00169{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m56_c00169{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);}
.m3c_c00169{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.m52_c00169{transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);}
.m176_c00169{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00169{transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);}
.md4_c00169{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);}
.m50_c00169{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);}
.m49_c00169{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);}
.m5c_c00169{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);}
.m68_c00169{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);}
.m123_c00169{transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);}
.md0_c00169{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m17d_c00169{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.m1a_c00169{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);}
.m17e_c00169{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);}
.m1f_c00169{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);}
.m132_c00169{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.mbc_c00169{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.mc8_c00169{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);}
.mfa_c00169{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.m131_c00169{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);}
.mb6_c00169{transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);}
.md3_c00169{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);}
.m14c_c00169{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);}
.m175_c00169{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.m128_c00169{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);}
.m143_c00169{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);}
.m120_c00169{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m7b_c00169{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.m104_c00169{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);}
.m103_c00169{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_c00169{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.m41_c00169{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);}
.m57_c00169{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.mab_c00169{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);}
.m64_c00169{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.m10b_c00169{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);}
.m10e_c00169{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);}
.m21_c00169{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m9b_c00169{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.m105_c00169{transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);}
.m35_c00169{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);}
.mf2_c00169{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m74_c00169{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.mf1_c00169{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m63_c00169{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.m7_c00169{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.md6_c00169{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);}
.m14a_c00169{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.m75_c00169{transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);}
.m6c_c00169{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m16a_c00169{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m155_c00169{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);}
.mf_c00169{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);}
.m146_c00169{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.m166_c00169{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.m58_c00169{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);}
.m161_c00169{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.mb0_c00169{transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);}
.mce_c00169{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m98_c00169{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);}
.m18d_c00169{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.mf0_c00169{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);}
.m144_c00169{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);}
.mb9_c00169{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);}
.mb5_c00169{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.m55_c00169{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);}
.m153_c00169{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m124_c00169{transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);}
.m137_c00169{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);}
.mcb_c00169{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);}
.m10f_c00169{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);}
.me3_c00169{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);}
.m171_c00169{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);}
.m7e_c00169{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);}
.m122_c00169{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);}
.ma3_c00169{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m14_c00169{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.m5f_c00169{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.mea_c00169{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);}
.m9e_c00169{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.mb2_c00169{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);}
.m11f_c00169{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m151_c00169{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);}
.m154_c00169{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);}
.md8_c00169{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.mb1_c00169{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);}
.m101_c00169{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.mf5_c00169{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m39_c00169{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m14e_c00169{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);}
.m114_c00169{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);}
.m20_c00169{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m11e_c00169{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);}
.m188_c00169{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m4a_c00169{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);}
.m37_c00169{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);}
.m86_c00169{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);}
.mfc_c00169{transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);}
.m112_c00169{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.mee_c00169{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);}
.mfb_c00169{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m72_c00169{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.m81_c00169{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);}
.m70_c00169{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);}
.m7d_c00169{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);}
.ma8_c00169{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);}
.mf7_c00169{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);}
.mdf_c00169{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);}
.m4b_c00169{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);}
.m3a_c00169{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);}
.maa_c00169{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.m113_c00169{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m5a_c00169{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m6b_c00169{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.m73_c00169{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m93_c00169{transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);}
.m14f_c00169{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.m4e_c00169{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);}
.mec_c00169{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);}
.md5_c00169{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);}
.mf8_c00169{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);}
.m46_c00169{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);}
.me0_c00169{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);}
.mb3_c00169{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m152_c00169{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m184_c00169{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);}
.me5_c00169{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);}
.m12e_c00169{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00169{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.mff_c00169{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);}
.m10d_c00169{transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);}
.mba_c00169{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m16f_c00169{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m139_c00169{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.mdb_c00169{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);}
.m109_c00169{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.m102_c00169{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.med_c00169{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);}
.m2b_c00169{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);}
.m4f_c00169{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m23_c00169{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);}
.m2a_c00169{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);}
.m77_c00169{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);}
.m51_c00169{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);}
.m7f_c00169{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m96_c00169{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m30_c00169{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m31_c00169{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);}
.mc6_c00169{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m94_c00169{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);}
.m8a_c00169{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);}
.m1b_c00169{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c00169{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m149_c00169{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m53_c00169{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);}
.m100_c00169{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00169{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);}
.m8_c00169{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);}
.m2c_c00169{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00169{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00169{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);}
.mdc_c00169{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);}
.m97_c00169{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m78_c00169{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m66_c00169{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m17f_c00169{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00169{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00169{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00169{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00169{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);}
.md2_c00169{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c00169{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m165_c00169{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5_c00169{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15e_c00169{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);}
.m7a_c00169{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m17a_c00169{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);}
.m182_c00169{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m90_c00169{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m16d_c00169{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00169{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);}
.m34_c00169{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);}
.mf4_c00169{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m45_c00169{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m15a_c00169{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.me9_c00169{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc9_c00169{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mf9_c00169{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m60_c00169{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);}
.m44_c00169{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m136_c00169{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);}
.m48_c00169{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00169{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00169{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);}
.m19_c00169{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00169{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m32_c00169{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00169{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m76_c00169{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);}
.m16c_c00169{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00169{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m67_c00169{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00169{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m186_c00169{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m27_c00169{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m15b_c00169{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m17_c00169{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m107_c00169{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);}
.ma1_c00169{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00169{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m6_c00169{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00169{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mb_c00169{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);}
.m192_c00169{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m43_c00169{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m33_c00169{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m95_c00169{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m106_c00169{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);}
.m11_c00169{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m134_c00169{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.me_c00169{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00169{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00169{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m159_c00169{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.mb7_c00169{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00169{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,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;}
.fsf_c00169{font-size:3.456000px;}
.fs10_c00169{font-size:6.000000px;}
.fs1_c00169{font-size:6.900000px;}
.fs1a_c00169{font-size:10.380000px;}
.fs6_c00169{font-size:13.800000px;}
.fs8_c00169{font-size:17.280000px;}
.fs3_c00169{font-size:20.760000px;}
.fs1f_c00169{font-size:24.180000px;}
.fs25_c00169{font-size:27.660000px;}
.fsd_c00169{font-size:31.080000px;}
.fs5_c00169{font-size:34.560000px;}
.fs20_c00169{font-size:38.040000px;}
.fs1d_c00169{font-size:41.460000px;}
.fs7_c00169{font-size:44.940000px;}
.fs0_c00169{font-size:48.360000px;}
.fs9_c00169{font-size:51.840000px;}
.fsc_c00169{font-size:55.320000px;}
.fs1c_c00169{font-size:58.740000px;}
.fs1b_c00169{font-size:62.220000px;}
.fs11_c00169{font-size:65.640000px;}
.fs17_c00169{font-size:69.120000px;}
.fs2_c00169{font-size:72.600000px;}
.fse_c00169{font-size:76.020000px;}
.fs1e_c00169{font-size:79.500000px;}
.fs14_c00169{font-size:82.920000px;}
.fsa_c00169{font-size:86.400000px;}
.fs15_c00169{font-size:89.880000px;}
.fs12_c00169{font-size:93.300000px;}
.fs13_c00169{font-size:96.780000px;}
.fs16_c00169{font-size:100.200000px;}
.fs19_c00169{font-size:103.680000px;}
.fsb_c00169{font-size:107.160000px;}
.fs21_c00169{font-size:110.580000px;}
.fs22_c00169{font-size:114.060000px;}
.fs18_c00169{font-size:117.480000px;}
.fs23_c00169{font-size:120.960000px;}
.fs4_c00169{font-size:131.340000px;}
.fs26_c00169{font-size:134.760000px;}
.fs24_c00169{font-size:141.720000px;}
.y0_c00169{bottom:0.000000px;}
.y1bf_c00169{bottom:199.590000px;}
.y1c0_c00169{bottom:200.445000px;}
.y1bd_c00169{bottom:216.870000px;}
.y1b6_c00169{bottom:218.595000px;}
.y1b7_c00169{bottom:219.450000px;}
.y1b8_c00169{bottom:220.320000px;}
.y1b9_c00169{bottom:221.190000px;}
.y1ba_c00169{bottom:222.045000px;}
.y1bc_c00169{bottom:223.770000px;}
.y1be_c00169{bottom:224.640000px;}
.y1bb_c00169{bottom:230.685000px;}
.y1ac_c00169{bottom:243.645000px;}
.y1ae_c00169{bottom:245.370000px;}
.y1af_c00169{bottom:246.240000px;}
.y1b2_c00169{bottom:248.835000px;}
.y1ad_c00169{bottom:251.430000px;}
.y1b3_c00169{bottom:252.285000px;}
.y1b0_c00169{bottom:254.010000px;}
.y1b1_c00169{bottom:254.880000px;}
.y1b4_c00169{bottom:257.475000px;}
.y1b5_c00169{bottom:260.925000px;}
.y1a3_c00169{bottom:270.435000px;}
.y1a6_c00169{bottom:271.290000px;}
.y1a8_c00169{bottom:273.030000px;}
.y1a4_c00169{bottom:277.350000px;}
.y1a5_c00169{bottom:278.205000px;}
.y1a7_c00169{bottom:279.930000px;}
.y1a9_c00169{bottom:281.670000px;}
.y1aa_c00169{bottom:282.525000px;}
.y1ab_c00169{bottom:288.570000px;}
.y19a_c00169{bottom:293.760000px;}
.y19b_c00169{bottom:296.355000px;}
.y19c_c00169{bottom:297.210000px;}
.y19e_c00169{bottom:298.950000px;}
.y19f_c00169{bottom:299.805000px;}
.y1a0_c00169{bottom:301.530000px;}
.y1a2_c00169{bottom:304.125000px;}
.y19d_c00169{bottom:304.995000px;}
.y1a1_c00169{bottom:311.040000px;}
.y190_c00169{bottom:319.680000px;}
.y193_c00169{bottom:322.275000px;}
.y194_c00169{bottom:324.000000px;}
.y196_c00169{bottom:324.870000px;}
.y191_c00169{bottom:326.595000px;}
.y192_c00169{bottom:329.190000px;}
.y195_c00169{bottom:330.915000px;}
.y197_c00169{bottom:331.770000px;}
.y198_c00169{bottom:333.510000px;}
.y199_c00169{bottom:335.235000px;}
.y187_c00169{bottom:346.470000px;}
.y186_c00169{bottom:348.195000px;}
.y189_c00169{bottom:349.050000px;}
.y185_c00169{bottom:351.645000px;}
.y18d_c00169{bottom:353.370000px;}
.y188_c00169{bottom:355.110000px;}
.y18a_c00169{bottom:355.965000px;}
.y18b_c00169{bottom:357.690000px;}
.y18c_c00169{bottom:359.430000px;}
.y18f_c00169{bottom:361.155000px;}
.y18e_c00169{bottom:363.750000px;}
.y17d_c00169{bottom:368.925000px;}
.y17c_c00169{bottom:369.795000px;}
.y17e_c00169{bottom:373.245000px;}
.y180_c00169{bottom:374.115000px;}
.y181_c00169{bottom:378.435000px;}
.y17f_c00169{bottom:379.290000px;}
.y182_c00169{bottom:381.030000px;}
.y183_c00169{bottom:381.885000px;}
.y184_c00169{bottom:383.610000px;}
.y171_c00169{bottom:393.120000px;}
.y172_c00169{bottom:395.715000px;}
.y173_c00169{bottom:396.570000px;}
.y170_c00169{bottom:397.440000px;}
.y177_c00169{bottom:400.035000px;}
.y174_c00169{bottom:401.760000px;}
.y17b_c00169{bottom:403.485000px;}
.y175_c00169{bottom:404.355000px;}
.y178_c00169{bottom:405.210000px;}
.y176_c00169{bottom:406.080000px;}
.y17a_c00169{bottom:412.125000px;}
.y179_c00169{bottom:412.995000px;}
.y168_c00169{bottom:419.040000px;}
.y169_c00169{bottom:422.490000px;}
.y166_c00169{bottom:423.360000px;}
.y167_c00169{bottom:424.230000px;}
.y16b_c00169{bottom:425.085000px;}
.y16e_c00169{bottom:428.550000px;}
.y16c_c00169{bottom:429.405000px;}
.y16a_c00169{bottom:431.130000px;}
.y16d_c00169{bottom:433.725000px;}
.y16f_c00169{bottom:434.595000px;}
.y162_c00169{bottom:446.685000px;}
.y160_c00169{bottom:447.555000px;}
.y163_c00169{bottom:450.150000px;}
.y15f_c00169{bottom:451.005000px;}
.y164_c00169{bottom:452.730000px;}
.y161_c00169{bottom:453.600000px;}
.y165_c00169{bottom:457.920000px;}
.y155_c00169{bottom:466.560000px;}
.y158_c00169{bottom:471.750000px;}
.y15a_c00169{bottom:472.605000px;}
.y156_c00169{bottom:474.330000px;}
.y15c_c00169{bottom:476.070000px;}
.y157_c00169{bottom:477.795000px;}
.y15e_c00169{bottom:478.650000px;}
.y15d_c00169{bottom:479.520000px;}
.y159_c00169{bottom:480.390000px;}
.y15b_c00169{bottom:482.115000px;}
.y149_c00169{bottom:494.205000px;}
.y148_c00169{bottom:495.930000px;}
.y14d_c00169{bottom:497.670000px;}
.y14b_c00169{bottom:498.525000px;}
.y14c_c00169{bottom:500.250000px;}
.y151_c00169{bottom:501.120000px;}
.y14a_c00169{bottom:501.990000px;}
.y154_c00169{bottom:502.845000px;}
.y14f_c00169{bottom:503.715000px;}
.y14e_c00169{bottom:504.570000px;}
.y150_c00169{bottom:507.165000px;}
.y152_c00169{bottom:508.035000px;}
.y153_c00169{bottom:509.760000px;}
.y13e_c00169{bottom:518.400000px;}
.y140_c00169{bottom:520.995000px;}
.y142_c00169{bottom:523.590000px;}
.y141_c00169{bottom:525.315000px;}
.y13f_c00169{bottom:526.170000px;}
.y143_c00169{bottom:528.765000px;}
.y145_c00169{bottom:532.230000px;}
.y146_c00169{bottom:533.955000px;}
.y144_c00169{bottom:534.810000px;}
.y147_c00169{bottom:537.405000px;}
.y139_c00169{bottom:543.450000px;}
.y13b_c00169{bottom:550.365000px;}
.y13d_c00169{bottom:551.235000px;}
.y13a_c00169{bottom:552.090000px;}
.y138_c00169{bottom:552.960000px;}
.y13c_c00169{bottom:557.280000px;}
.y12e_c00169{bottom:568.515000px;}
.y130_c00169{bottom:569.370000px;}
.y131_c00169{bottom:570.240000px;}
.y132_c00169{bottom:573.690000px;}
.y12f_c00169{bottom:576.285000px;}
.y134_c00169{bottom:577.155000px;}
.y133_c00169{bottom:578.010000px;}
.y136_c00169{bottom:580.605000px;}
.y135_c00169{bottom:585.795000px;}
.y126_c00169{bottom:595.290000px;}
.y127_c00169{bottom:597.030000px;}
.y125_c00169{bottom:598.755000px;}
.y129_c00169{bottom:599.610000px;}
.y12a_c00169{bottom:600.480000px;}
.y12b_c00169{bottom:601.350000px;}
.y137_c00169{bottom:602.205000px;}
.y12c_c00169{bottom:603.075000px;}
.y128_c00169{bottom:605.670000px;}
.y12d_c00169{bottom:616.890000px;}
.y11c_c00169{bottom:620.355000px;}
.y11a_c00169{bottom:622.950000px;}
.y11e_c00169{bottom:623.805000px;}
.y120_c00169{bottom:625.530000px;}
.y121_c00169{bottom:626.400000px;}
.y11b_c00169{bottom:627.270000px;}
.y122_c00169{bottom:628.995000px;}
.y11d_c00169{bottom:629.850000px;}
.y11f_c00169{bottom:632.445000px;}
.y123_c00169{bottom:635.040000px;}
.y124_c00169{bottom:635.910000px;}
.y110_c00169{bottom:641.955000px;}
.y113_c00169{bottom:648.000000px;}
.y115_c00169{bottom:649.725000px;}
.y111_c00169{bottom:650.595000px;}
.y112_c00169{bottom:651.450000px;}
.y119_c00169{bottom:652.320000px;}
.y114_c00169{bottom:654.045000px;}
.y116_c00169{bottom:657.510000px;}
.y117_c00169{bottom:658.365000px;}
.y118_c00169{bottom:660.960000px;}
.y106_c00169{bottom:668.730000px;}
.y107_c00169{bottom:669.600000px;}
.y104_c00169{bottom:670.470000px;}
.y108_c00169{bottom:671.325000px;}
.y10a_c00169{bottom:673.050000px;}
.y105_c00169{bottom:674.790000px;}
.y10e_c00169{bottom:675.645000px;}
.y10d_c00169{bottom:676.515000px;}
.y10f_c00169{bottom:679.110000px;}
.y109_c00169{bottom:679.965000px;}
.y10b_c00169{bottom:680.835000px;}
.y10c_c00169{bottom:681.690000px;}
.yfd_c00169{bottom:694.650000px;}
.y100_c00169{bottom:698.115000px;}
.yfc_c00169{bottom:698.970000px;}
.y102_c00169{bottom:701.565000px;}
.yfe_c00169{bottom:702.435000px;}
.yff_c00169{bottom:703.290000px;}
.y103_c00169{bottom:705.030000px;}
.y101_c00169{bottom:706.755000px;}
.yf1_c00169{bottom:715.395000px;}
.yf3_c00169{bottom:717.990000px;}
.yf4_c00169{bottom:719.715000px;}
.yf6_c00169{bottom:722.310000px;}
.yf7_c00169{bottom:723.165000px;}
.yf2_c00169{bottom:724.035000px;}
.yfa_c00169{bottom:725.760000px;}
.yf5_c00169{bottom:727.485000px;}
.yf8_c00169{bottom:730.080000px;}
.yf9_c00169{bottom:730.950000px;}
.yfb_c00169{bottom:733.530000px;}
.ye8_c00169{bottom:743.040000px;}
.ye9_c00169{bottom:743.910000px;}
.yeb_c00169{bottom:744.765000px;}
.yec_c00169{bottom:746.490000px;}
.ye7_c00169{bottom:747.360000px;}
.yee_c00169{bottom:748.230000px;}
.yef_c00169{bottom:749.085000px;}
.yea_c00169{bottom:749.955000px;}
.yed_c00169{bottom:755.130000px;}
.yf0_c00169{bottom:756.870000px;}
.ydc_c00169{bottom:764.640000px;}
.yde_c00169{bottom:765.510000px;}
.ydf_c00169{bottom:768.090000px;}
.ye0_c00169{bottom:769.830000px;}
.ye2_c00169{bottom:772.410000px;}
.ydd_c00169{bottom:773.280000px;}
.ye5_c00169{bottom:774.150000px;}
.ye1_c00169{bottom:775.005000px;}
.ye4_c00169{bottom:776.730000px;}
.ye3_c00169{bottom:779.325000px;}
.ye6_c00169{bottom:781.920000px;}
.yd5_c00169{bottom:788.835000px;}
.yda_c00169{bottom:794.010000px;}
.yd7_c00169{bottom:794.880000px;}
.yd9_c00169{bottom:796.605000px;}
.yd6_c00169{bottom:797.475000px;}
.yd8_c00169{bottom:798.330000px;}
.ydb_c00169{bottom:800.925000px;}
.ycc_c00169{bottom:813.885000px;}
.yce_c00169{bottom:818.205000px;}
.ycb_c00169{bottom:819.075000px;}
.yd2_c00169{bottom:821.670000px;}
.ycd_c00169{bottom:823.395000px;}
.yd1_c00169{bottom:824.250000px;}
.yd4_c00169{bottom:825.120000px;}
.ycf_c00169{bottom:825.990000px;}
.yd0_c00169{bottom:827.715000px;}
.yd3_c00169{bottom:829.440000px;}
.yc4_c00169{bottom:839.805000px;}
.yc5_c00169{bottom:841.530000px;}
.yc9_c00169{bottom:843.270000px;}
.yc6_c00169{bottom:847.590000px;}
.yc7_c00169{bottom:848.445000px;}
.yc8_c00169{bottom:849.315000px;}
.yca_c00169{bottom:851.910000px;}
.ybc_c00169{bottom:864.870000px;}
.ybb_c00169{bottom:865.725000px;}
.yba_c00169{bottom:867.450000px;}
.ybe_c00169{bottom:868.320000px;}
.ybf_c00169{bottom:870.045000px;}
.yb9_c00169{bottom:870.915000px;}
.yc1_c00169{bottom:871.770000px;}
.yc2_c00169{bottom:873.510000px;}
.yc0_c00169{bottom:874.365000px;}
.ybd_c00169{bottom:875.235000px;}
.yb0_c00169{bottom:889.050000px;}
.yb1_c00169{bottom:890.790000px;}
.yb2_c00169{bottom:891.645000px;}
.yc3_c00169{bottom:892.515000px;}
.yb3_c00169{bottom:896.835000px;}
.yb5_c00169{bottom:901.155000px;}
.yb4_c00169{bottom:902.010000px;}
.yb6_c00169{bottom:903.750000px;}
.yb7_c00169{bottom:905.475000px;}
.ya4_c00169{bottom:912.390000px;}
.ya6_c00169{bottom:915.840000px;}
.ya7_c00169{bottom:916.710000px;}
.ya9_c00169{bottom:918.435000px;}
.yac_c00169{bottom:920.160000px;}
.yb8_c00169{bottom:921.030000px;}
.ya5_c00169{bottom:921.885000px;}
.ya3_c00169{bottom:922.755000px;}
.ya8_c00169{bottom:925.350000px;}
.yaa_c00169{bottom:926.205000px;}
.yab_c00169{bottom:927.075000px;}
.yad_c00169{bottom:928.800000px;}
.yaf_c00169{bottom:948.675000px;}
.yae_c00169{bottom:956.445000px;}
.ya1_c00169{bottom:960.765000px;}
.ya2_c00169{bottom:963.360000px;}
.y12_c00169{bottom:985.830000px;}
.y9a_c00169{bottom:987.555000px;}
.y96_c00169{bottom:989.280000px;}
.y98_c00169{bottom:990.150000px;}
.y99_c00169{bottom:991.005000px;}
.y9d_c00169{bottom:991.875000px;}
.y9c_c00169{bottom:993.600000px;}
.y9e_c00169{bottom:994.470000px;}
.y97_c00169{bottom:997.920000px;}
.y9f_c00169{bottom:998.790000px;}
.y9b_c00169{bottom:999.645000px;}
.ya0_c00169{bottom:1000.515000px;}
.y11_c00169{bottom:1010.010000px;}
.y8b_c00169{bottom:1013.475000px;}
.y8a_c00169{bottom:1017.795000px;}
.y8e_c00169{bottom:1018.650000px;}
.y8f_c00169{bottom:1020.390000px;}
.y8c_c00169{bottom:1022.970000px;}
.y8d_c00169{bottom:1023.840000px;}
.y90_c00169{bottom:1024.710000px;}
.y91_c00169{bottom:1027.290000px;}
.y93_c00169{bottom:1028.160000px;}
.y92_c00169{bottom:1029.030000px;}
.y94_c00169{bottom:1032.480000px;}
.y95_c00169{bottom:1033.350000px;}
.y10_c00169{bottom:1035.930000px;}
.y80_c00169{bottom:1039.395000px;}
.y81_c00169{bottom:1041.120000px;}
.y82_c00169{bottom:1042.845000px;}
.y83_c00169{bottom:1043.715000px;}
.y85_c00169{bottom:1046.310000px;}
.y87_c00169{bottom:1048.035000px;}
.y89_c00169{bottom:1050.630000px;}
.y84_c00169{bottom:1051.485000px;}
.y86_c00169{bottom:1054.080000px;}
.y88_c00169{bottom:1057.530000px;}
.yf_c00169{bottom:1058.400000px;}
.y78_c00169{bottom:1066.170000px;}
.y79_c00169{bottom:1067.040000px;}
.y76_c00169{bottom:1067.910000px;}
.y7d_c00169{bottom:1069.635000px;}
.y77_c00169{bottom:1072.230000px;}
.y75_c00169{bottom:1073.085000px;}
.y7f_c00169{bottom:1074.810000px;}
.y7a_c00169{bottom:1075.680000px;}
.y7b_c00169{bottom:1076.550000px;}
.y7c_c00169{bottom:1077.405000px;}
.y7e_c00169{bottom:1079.130000px;}
.ye_c00169{bottom:1082.595000px;}
.y6f_c00169{bottom:1091.235000px;}
.y70_c00169{bottom:1093.830000px;}
.y71_c00169{bottom:1096.410000px;}
.yd_c00169{bottom:1099.875000px;}
.y72_c00169{bottom:1104.195000px;}
.y74_c00169{bottom:1105.920000px;}
.y73_c00169{bottom:1106.790000px;}
.y68_c00169{bottom:1116.285000px;}
.y66_c00169{bottom:1118.010000px;}
.y69_c00169{bottom:1118.880000px;}
.y67_c00169{bottom:1122.330000px;}
.y6b_c00169{bottom:1124.070000px;}
.y6e_c00169{bottom:1125.795000px;}
.y6a_c00169{bottom:1127.520000px;}
.y6c_c00169{bottom:1128.390000px;}
.y6d_c00169{bottom:1131.840000px;}
.yc_c00169{bottom:1133.565000px;}
.y5f_c00169{bottom:1139.610000px;}
.y62_c00169{bottom:1142.205000px;}
.y5d_c00169{bottom:1143.075000px;}
.y60_c00169{bottom:1143.930000px;}
.y5e_c00169{bottom:1146.525000px;}
.y63_c00169{bottom:1147.395000px;}
.y64_c00169{bottom:1148.250000px;}
.y61_c00169{bottom:1149.120000px;}
.y65_c00169{bottom:1156.890000px;}
.ya_c00169{bottom:1161.210000px;}
.y54_c00169{bottom:1162.950000px;}
.y53_c00169{bottom:1163.805000px;}
.y55_c00169{bottom:1166.400000px;}
.y56_c00169{bottom:1167.270000px;}
.y57_c00169{bottom:1168.125000px;}
.yb_c00169{bottom:1169.850000px;}
.y58_c00169{bottom:1170.720000px;}
.y59_c00169{bottom:1171.590000px;}
.y5a_c00169{bottom:1172.445000px;}
.y5b_c00169{bottom:1180.230000px;}
.y5c_c00169{bottom:1181.085000px;}
.y9_c00169{bottom:1186.275000px;}
.y48_c00169{bottom:1188.870000px;}
.y49_c00169{bottom:1189.725000px;}
.y4a_c00169{bottom:1193.190000px;}
.y4d_c00169{bottom:1194.915000px;}
.y47_c00169{bottom:1195.770000px;}
.y4b_c00169{bottom:1196.640000px;}
.y50_c00169{bottom:1197.510000px;}
.y4c_c00169{bottom:1200.090000px;}
.y52_c00169{bottom:1200.960000px;}
.y4e_c00169{bottom:1201.830000px;}
.y4f_c00169{bottom:1203.555000px;}
.y51_c00169{bottom:1207.005000px;}
.y3f_c00169{bottom:1215.645000px;}
.y41_c00169{bottom:1218.240000px;}
.y3d_c00169{bottom:1219.965000px;}
.y42_c00169{bottom:1220.835000px;}
.y3e_c00169{bottom:1221.690000px;}
.y45_c00169{bottom:1223.430000px;}
.y46_c00169{bottom:1224.285000px;}
.y40_c00169{bottom:1225.155000px;}
.y44_c00169{bottom:1226.010000px;}
.y43_c00169{bottom:1228.605000px;}
.y36_c00169{bottom:1238.970000px;}
.y38_c00169{bottom:1240.710000px;}
.y37_c00169{bottom:1242.435000px;}
.y35_c00169{bottom:1244.160000px;}
.y3c_c00169{bottom:1246.755000px;}
.y39_c00169{bottom:1247.610000px;}
.y3a_c00169{bottom:1248.480000px;}
.y3b_c00169{bottom:1250.205000px;}
.y8_c00169{bottom:1259.715000px;}
.y7_c00169{bottom:1272.675000px;}
.y2c_c00169{bottom:1281.315000px;}
.y2d_c00169{bottom:1282.170000px;}
.y2e_c00169{bottom:1283.910000px;}
.y6_c00169{bottom:1285.635000px;}
.y2f_c00169{bottom:1286.490000px;}
.y30_c00169{bottom:1287.360000px;}
.y31_c00169{bottom:1288.230000px;}
.y32_c00169{bottom:1289.085000px;}
.y34_c00169{bottom:1290.810000px;}
.y33_c00169{bottom:1291.680000px;}
.y5_c00169{bottom:1294.275000px;}
.y23_c00169{bottom:1314.150000px;}
.y25_c00169{bottom:1316.730000px;}
.y27_c00169{bottom:1317.600000px;}
.y24_c00169{bottom:1318.470000px;}
.y22_c00169{bottom:1320.195000px;}
.y2b_c00169{bottom:1322.790000px;}
.y26_c00169{bottom:1326.240000px;}
.y4_c00169{bottom:1327.110000px;}
.y3_c00169{bottom:1327.965000px;}
.y28_c00169{bottom:1331.430000px;}
.y29_c00169{bottom:1334.880000px;}
.y2a_c00169{bottom:1338.330000px;}
.y18_c00169{bottom:1340.070000px;}
.y1a_c00169{bottom:1340.925000px;}
.y19_c00169{bottom:1341.795000px;}
.y1b_c00169{bottom:1345.245000px;}
.y17_c00169{bottom:1346.115000px;}
.y1f_c00169{bottom:1346.970000px;}
.y1e_c00169{bottom:1347.840000px;}
.y20_c00169{bottom:1348.710000px;}
.y1d_c00169{bottom:1352.160000px;}
.y21_c00169{bottom:1353.885000px;}
.y1_c00169{bottom:1360.800000px;}
.y1c_c00169{bottom:1364.250000px;}
.y2_c00169{bottom:1371.165000px;}
.y13_c00169{bottom:1372.035000px;}
.y14_c00169{bottom:1376.355000px;}
.y15_c00169{bottom:1377.210000px;}
.y16_c00169{bottom:1379.805000px;}
.h11_c00169{height:3.110063px;}
.h12_c00169{height:5.399414px;}
.h3_c00169{height:6.209326px;}
.h1c_c00169{height:9.340986px;}
.h8_c00169{height:12.418652px;}
.ha_c00169{height:15.550313px;}
.h5_c00169{height:18.681973px;}
.h21_c00169{height:21.759639px;}
.h27_c00169{height:24.891299px;}
.hf_c00169{height:27.968965px;}
.h7_c00169{height:31.100625px;}
.h22_c00169{height:34.232285px;}
.h1f_c00169{height:37.309951px;}
.h9_c00169{height:40.441611px;}
.h2_c00169{height:43.519277px;}
.hb_c00169{height:46.650937px;}
.he_c00169{height:49.782598px;}
.h1e_c00169{height:52.860264px;}
.h1d_c00169{height:55.991924px;}
.h13_c00169{height:59.069590px;}
.h19_c00169{height:62.201250px;}
.h4_c00169{height:65.332910px;}
.h10_c00169{height:68.410576px;}
.h20_c00169{height:71.542236px;}
.h16_c00169{height:74.619902px;}
.hc_c00169{height:77.751563px;}
.h17_c00169{height:80.883223px;}
.h14_c00169{height:83.960889px;}
.h15_c00169{height:87.092549px;}
.h18_c00169{height:90.170215px;}
.h1b_c00169{height:93.301875px;}
.hd_c00169{height:96.433535px;}
.h23_c00169{height:99.511201px;}
.h24_c00169{height:102.642861px;}
.h1a_c00169{height:105.720527px;}
.h25_c00169{height:108.852188px;}
.h6_c00169{height:118.193174px;}
.h28_c00169{height:121.270840px;}
.h26_c00169{height:127.534160px;}
.h1_c00169{height:1503.000000px;}
.h0_c00169{height:1503.360000px;}
.w0_c00169{width:1105.920000px;}
.w1_c00169{width:1106.250000px;}
.x0_c00169{left:0.000000px;}
.x3_c00169{left:3.450000px;}
.x1_c00169{left:31.965000px;}
.x5_c00169{left:40.605000px;}
.x4_c00169{left:47.520000px;}
.x2_c00169{left:139.965000px;}
.x7f_c00169{left:233.280000px;}
.xa_c00169{left:238.470000px;}
.x69_c00169{left:241.050000px;}
.x3a_c00169{left:242.790000px;}
.x6_c00169{left:245.370000px;}
.xa7_c00169{left:247.110000px;}
.x95_c00169{left:249.690000px;}
.x8a_c00169{left:252.285000px;}
.xbf_c00169{left:254.880000px;}
.xd2_c00169{left:257.475000px;}
.xe4_c00169{left:259.200000px;}
.xeb_c00169{left:261.795000px;}
.x75_c00169{left:265.245000px;}
.x31_c00169{left:266.970000px;}
.x4d_c00169{left:268.710000px;}
.x45_c00169{left:271.290000px;}
.x8b_c00169{left:273.030000px;}
.x18_c00169{left:277.350000px;}
.xc0_c00169{left:280.800000px;}
.xb_c00169{left:282.525000px;}
.xb6_c00169{left:285.990000px;}
.x70_c00169{left:289.440000px;}
.x76_c00169{left:292.035000px;}
.xdc_c00169{left:293.760000px;}
.xc3_c00169{left:295.485000px;}
.xae_c00169{left:297.210000px;}
.x9b_c00169{left:300.675000px;}
.x54_c00169{left:302.400000px;}
.x3b_c00169{left:304.125000px;}
.xc_c00169{left:305.850000px;}
.xd6_c00169{left:307.590000px;}
.xa9_c00169{left:309.315000px;}
.x9c_c00169{left:311.910000px;}
.xcf_c00169{left:313.635000px;}
.x5f_c00169{left:317.955000px;}
.xa2_c00169{left:319.680000px;}
.x8c_c00169{left:321.405000px;}
.x3c_c00169{left:324.000000px;}
.xed_c00169{left:325.725000px;}
.xaf_c00169{left:329.190000px;}
.x23_c00169{left:330.915000px;}
.x4e_c00169{left:332.640000px;}
.xb7_c00169{left:334.365000px;}
.x32_c00169{left:336.960000px;}
.x86_c00169{left:340.410000px;}
.x96_c00169{left:343.005000px;}
.xc9_c00169{left:344.730000px;}
.x19_c00169{left:346.470000px;}
.x60_c00169{left:349.050000px;}
.x46_c00169{left:352.515000px;}
.x80_c00169{left:354.240000px;}
.x24_c00169{left:356.835000px;}
.x1a_c00169{left:360.285000px;}
.x55_c00169{left:362.880000px;}
.xd_c00169{left:367.200000px;}
.xca_c00169{left:369.795000px;}
.xfe_c00169{left:373.245000px;}
.x56_c00169{left:374.970000px;}
.xf6_c00169{left:376.710000px;}
.x9d_c00169{left:378.435000px;}
.x77_c00169{left:381.030000px;}
.x4f_c00169{left:384.480000px;}
.x8d_c00169{left:389.670000px;}
.x47_c00169{left:391.395000px;}
.x33_c00169{left:394.845000px;}
.x61_c00169{left:398.310000px;}
.x25_c00169{left:401.760000px;}
.xbc_c00169{left:404.355000px;}
.xa3_c00169{left:407.805000px;}
.x57_c00169{left:409.530000px;}
.xe_c00169{left:412.125000px;}
.xd7_c00169{left:418.170000px;}
.xfb_c00169{left:419.910000px;}
.xaa_c00169{left:422.490000px;}
.x87_c00169{left:425.085000px;}
.x26_c00169{left:427.680000px;}
.x58_c00169{left:431.130000px;}
.x1b_c00169{left:432.870000px;}
.xe5_c00169{left:435.450000px;}
.xa0_c00169{left:437.190000px;}
.x48_c00169{left:440.640000px;}
.x89_c00169{left:444.090000px;}
.x3d_c00169{left:449.280000px;}
.xe2_c00169{left:451.005000px;}
.xfc_c00169{left:452.730000px;}
.xab_c00169{left:456.195000px;}
.x27_c00169{left:457.920000px;}
.x88_c00169{left:462.240000px;}
.xa1_c00169{left:463.965000px;}
.x34_c00169{left:465.690000px;}
.xc4_c00169{left:470.880000px;}
.x6a_c00169{left:474.330000px;}
.xdd_c00169{left:476.070000px;}
.xbd_c00169{left:478.650000px;}
.x28_c00169{left:482.970000px;}
.xd8_c00169{left:484.710000px;}
.x78_c00169{left:487.290000px;}
.x50_c00169{left:489.885000px;}
.x1c_c00169{left:491.610000px;}
.x59_c00169{left:495.075000px;}
.x3e_c00169{left:499.395000px;}
.xf_c00169{left:501.120000px;}
.x10_c00169{left:504.570000px;}
.xb8_c00169{left:507.165000px;}
.xb0_c00169{left:509.760000px;}
.xe3_c00169{left:511.485000px;}
.x8e_c00169{left:514.950000px;}
.x29_c00169{left:516.675000px;}
.x51_c00169{left:519.270000px;}
.xf7_c00169{left:520.995000px;}
.xc1_c00169{left:523.590000px;}
.x3f_c00169{left:527.040000px;}
.x1d_c00169{left:529.635000px;}
.x2a_c00169{left:532.230000px;}
.xde_c00169{left:533.955000px;}
.x35_c00169{left:535.680000px;}
.xb1_c00169{left:538.275000px;}
.x79_c00169{left:540.000000px;}
.x2b_c00169{left:543.450000px;}
.xb9_c00169{left:545.190000px;}
.xcb_c00169{left:547.770000px;}
.x62_c00169{left:557.280000px;}
.x2c_c00169{left:559.005000px;}
.x11_c00169{left:560.730000px;}
.xac_c00169{left:564.195000px;}
.x81_c00169{left:566.790000px;}
.x2d_c00169{left:569.370000px;}
.x71_c00169{left:571.965000px;}
.x12_c00169{left:573.690000px;}
.xa4_c00169{left:576.285000px;}
.x7a_c00169{left:578.010000px;}
.x8f_c00169{left:581.475000px;}
.xc5_c00169{left:583.200000px;}
.x72_c00169{left:587.520000px;}
.x49_c00169{left:590.115000px;}
.xd0_c00169{left:593.565000px;}
.x36_c00169{left:595.290000px;}
.x13_c00169{left:598.755000px;}
.x9e_c00169{left:601.350000px;}
.x2e_c00169{left:603.930000px;}
.x63_c00169{left:605.670000px;}
.x6b_c00169{left:609.120000px;}
.xff_c00169{left:611.715000px;}
.x40_c00169{left:614.310000px;}
.x5a_c00169{left:616.890000px;}
.x73_c00169{left:618.630000px;}
.xf4_c00169{left:621.210000px;}
.x90_c00169{left:624.675000px;}
.xe7_c00169{left:627.270000px;}
.xdf_c00169{left:630.720000px;}
.x4a_c00169{left:635.910000px;}
.x41_c00169{left:641.085000px;}
.xf9_c00169{left:644.550000px;}
.x7_c00169{left:646.275000px;}
.x82_c00169{left:648.000000px;}
.xba_c00169{left:649.725000px;}
.xc6_c00169{left:651.450000px;}
.xcc_c00169{left:654.045000px;}
.x5b_c00169{left:657.510000px;}
.xfa_c00169{left:659.235000px;}
.xee_c00169{left:660.960000px;}
.x100_c00169{left:662.685000px;}
.x1e_c00169{left:664.410000px;}
.x6c_c00169{left:667.005000px;}
.xb2_c00169{left:670.470000px;}
.xfd_c00169{left:672.195000px;}
.x8_c00169{left:674.790000px;}
.x7b_c00169{left:677.370000px;}
.x1f_c00169{left:679.110000px;}
.x9f_c00169{left:683.430000px;}
.x14_c00169{left:686.010000px;}
.x37_c00169{left:690.330000px;}
.x52_c00169{left:693.795000px;}
.xef_c00169{left:695.520000px;}
.x15_c00169{left:697.245000px;}
.x5c_c00169{left:700.710000px;}
.x64_c00169{left:702.435000px;}
.x38_c00169{left:704.160000px;}
.xf5_c00169{left:707.610000px;}
.x42_c00169{left:709.350000px;}
.xbb_c00169{left:713.670000px;}
.x91_c00169{left:717.990000px;}
.x43_c00169{left:719.715000px;}
.x83_c00169{left:722.310000px;}
.xa5_c00169{left:725.760000px;}
.x7c_c00169{left:727.485000px;}
.xd9_c00169{left:730.080000px;}
.x16_c00169{left:735.270000px;}
.xf8_c00169{left:737.850000px;}
.x7d_c00169{left:740.445000px;}
.xc7_c00169{left:742.170000px;}
.x17_c00169{left:745.635000px;}
.x53_c00169{left:747.360000px;}
.x97_c00169{left:749.955000px;}
.x44_c00169{left:752.550000px;}
.xbe_c00169{left:755.130000px;}
.xe9_c00169{left:756.870000px;}
.xa6_c00169{left:762.915000px;}
.xb3_c00169{left:764.640000px;}
.x2f_c00169{left:767.235000px;}
.x6d_c00169{left:768.960000px;}
.x4b_c00169{left:771.555000px;}
.x5d_c00169{left:777.600000px;}
.xda_c00169{left:780.195000px;}
.x30_c00169{left:782.790000px;}
.x65_c00169{left:784.515000px;}
.x84_c00169{left:787.110000px;}
.x66_c00169{left:793.155000px;}
.xf0_c00169{left:797.475000px;}
.xf2_c00169{left:799.200000px;}
.xad_c00169{left:800.925000px;}
.x9_c00169{left:803.520000px;}
.xa8_c00169{left:806.115000px;}
.x92_c00169{left:807.840000px;}
.x39_c00169{left:811.290000px;}
.x20_c00169{left:813.885000px;}
.x5e_c00169{left:816.480000px;}
.xc2_c00169{left:818.205000px;}
.x6e_c00169{left:820.800000px;}
.x98_c00169{left:822.525000px;}
.xe6_c00169{left:825.120000px;}
.xd3_c00169{left:827.715000px;}
.x4c_c00169{left:829.440000px;}
.xb4_c00169{left:831.165000px;}
.xcd_c00169{left:837.210000px;}
.xb5_c00169{left:838.950000px;}
.x67_c00169{left:844.995000px;}
.x7e_c00169{left:846.720000px;}
.x21_c00169{left:849.315000px;}
.x85_c00169{left:851.040000px;}
.xce_c00169{left:852.765000px;}
.x99_c00169{left:861.405000px;}
.x74_c00169{left:864.000000px;}
.xc8_c00169{left:867.450000px;}
.xea_c00169{left:870.045000px;}
.x22_c00169{left:880.410000px;}
.x6f_c00169{left:883.875000px;}
.x93_c00169{left:885.600000px;}
.x68_c00169{left:888.195000px;}
.x94_c00169{left:890.790000px;}
.x9a_c00169{left:892.515000px;}
.xf1_c00169{left:895.110000px;}
.xe0_c00169{left:898.560000px;}
.xd1_c00169{left:901.155000px;}
.xe8_c00169{left:904.605000px;}
.xd4_c00169{left:908.070000px;}
.xdb_c00169{left:910.650000px;}
.xf3_c00169{left:914.115000px;}
.xe1_c00169{left:915.840000px;}
.xd5_c00169{left:917.565000px;}
.xec_c00169{left:936.570000px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls0_c00169{letter-spacing:0.000000pt;}
.ws0_c00169{word-spacing:0.000000pt;}
.fsf_c00169{font-size:3.072000pt;}
.fs10_c00169{font-size:5.333333pt;}
.fs1_c00169{font-size:6.133333pt;}
.fs1a_c00169{font-size:9.226667pt;}
.fs6_c00169{font-size:12.266667pt;}
.fs8_c00169{font-size:15.360000pt;}
.fs3_c00169{font-size:18.453333pt;}
.fs1f_c00169{font-size:21.493333pt;}
.fs25_c00169{font-size:24.586667pt;}
.fsd_c00169{font-size:27.626667pt;}
.fs5_c00169{font-size:30.720000pt;}
.fs20_c00169{font-size:33.813333pt;}
.fs1d_c00169{font-size:36.853333pt;}
.fs7_c00169{font-size:39.946667pt;}
.fs0_c00169{font-size:42.986667pt;}
.fs9_c00169{font-size:46.080000pt;}
.fsc_c00169{font-size:49.173333pt;}
.fs1c_c00169{font-size:52.213333pt;}
.fs1b_c00169{font-size:55.306667pt;}
.fs11_c00169{font-size:58.346667pt;}
.fs17_c00169{font-size:61.440000pt;}
.fs2_c00169{font-size:64.533333pt;}
.fse_c00169{font-size:67.573333pt;}
.fs1e_c00169{font-size:70.666667pt;}
.fs14_c00169{font-size:73.706667pt;}
.fsa_c00169{font-size:76.800000pt;}
.fs15_c00169{font-size:79.893333pt;}
.fs12_c00169{font-size:82.933333pt;}
.fs13_c00169{font-size:86.026667pt;}
.fs16_c00169{font-size:89.066667pt;}
.fs19_c00169{font-size:92.160000pt;}
.fsb_c00169{font-size:95.253333pt;}
.fs21_c00169{font-size:98.293333pt;}
.fs22_c00169{font-size:101.386667pt;}
.fs18_c00169{font-size:104.426667pt;}
.fs23_c00169{font-size:107.520000pt;}
.fs4_c00169{font-size:116.746667pt;}
.fs26_c00169{font-size:119.786667pt;}
.fs24_c00169{font-size:125.973333pt;}
.y0_c00169{bottom:0.000000pt;}
.y1bf_c00169{bottom:177.413333pt;}
.y1c0_c00169{bottom:178.173333pt;}
.y1bd_c00169{bottom:192.773333pt;}
.y1b6_c00169{bottom:194.306667pt;}
.y1b7_c00169{bottom:195.066667pt;}
.y1b8_c00169{bottom:195.840000pt;}
.y1b9_c00169{bottom:196.613333pt;}
.y1ba_c00169{bottom:197.373333pt;}
.y1bc_c00169{bottom:198.906667pt;}
.y1be_c00169{bottom:199.680000pt;}
.y1bb_c00169{bottom:205.053333pt;}
.y1ac_c00169{bottom:216.573333pt;}
.y1ae_c00169{bottom:218.106667pt;}
.y1af_c00169{bottom:218.880000pt;}
.y1b2_c00169{bottom:221.186667pt;}
.y1ad_c00169{bottom:223.493333pt;}
.y1b3_c00169{bottom:224.253333pt;}
.y1b0_c00169{bottom:225.786667pt;}
.y1b1_c00169{bottom:226.560000pt;}
.y1b4_c00169{bottom:228.866667pt;}
.y1b5_c00169{bottom:231.933333pt;}
.y1a3_c00169{bottom:240.386667pt;}
.y1a6_c00169{bottom:241.146667pt;}
.y1a8_c00169{bottom:242.693333pt;}
.y1a4_c00169{bottom:246.533333pt;}
.y1a5_c00169{bottom:247.293333pt;}
.y1a7_c00169{bottom:248.826667pt;}
.y1a9_c00169{bottom:250.373333pt;}
.y1aa_c00169{bottom:251.133333pt;}
.y1ab_c00169{bottom:256.506667pt;}
.y19a_c00169{bottom:261.120000pt;}
.y19b_c00169{bottom:263.426667pt;}
.y19c_c00169{bottom:264.186667pt;}
.y19e_c00169{bottom:265.733333pt;}
.y19f_c00169{bottom:266.493333pt;}
.y1a0_c00169{bottom:268.026667pt;}
.y1a2_c00169{bottom:270.333333pt;}
.y19d_c00169{bottom:271.106667pt;}
.y1a1_c00169{bottom:276.480000pt;}
.y190_c00169{bottom:284.160000pt;}
.y193_c00169{bottom:286.466667pt;}
.y194_c00169{bottom:288.000000pt;}
.y196_c00169{bottom:288.773333pt;}
.y191_c00169{bottom:290.306667pt;}
.y192_c00169{bottom:292.613333pt;}
.y195_c00169{bottom:294.146667pt;}
.y197_c00169{bottom:294.906667pt;}
.y198_c00169{bottom:296.453333pt;}
.y199_c00169{bottom:297.986667pt;}
.y187_c00169{bottom:307.973333pt;}
.y186_c00169{bottom:309.506667pt;}
.y189_c00169{bottom:310.266667pt;}
.y185_c00169{bottom:312.573333pt;}
.y18d_c00169{bottom:314.106667pt;}
.y188_c00169{bottom:315.653333pt;}
.y18a_c00169{bottom:316.413333pt;}
.y18b_c00169{bottom:317.946667pt;}
.y18c_c00169{bottom:319.493333pt;}
.y18f_c00169{bottom:321.026667pt;}
.y18e_c00169{bottom:323.333333pt;}
.y17d_c00169{bottom:327.933333pt;}
.y17c_c00169{bottom:328.706667pt;}
.y17e_c00169{bottom:331.773333pt;}
.y180_c00169{bottom:332.546667pt;}
.y181_c00169{bottom:336.386667pt;}
.y17f_c00169{bottom:337.146667pt;}
.y182_c00169{bottom:338.693333pt;}
.y183_c00169{bottom:339.453333pt;}
.y184_c00169{bottom:340.986667pt;}
.y171_c00169{bottom:349.440000pt;}
.y172_c00169{bottom:351.746667pt;}
.y173_c00169{bottom:352.506667pt;}
.y170_c00169{bottom:353.280000pt;}
.y177_c00169{bottom:355.586667pt;}
.y174_c00169{bottom:357.120000pt;}
.y17b_c00169{bottom:358.653333pt;}
.y175_c00169{bottom:359.426667pt;}
.y178_c00169{bottom:360.186667pt;}
.y176_c00169{bottom:360.960000pt;}
.y17a_c00169{bottom:366.333333pt;}
.y179_c00169{bottom:367.106667pt;}
.y168_c00169{bottom:372.480000pt;}
.y169_c00169{bottom:375.546667pt;}
.y166_c00169{bottom:376.320000pt;}
.y167_c00169{bottom:377.093333pt;}
.y16b_c00169{bottom:377.853333pt;}
.y16e_c00169{bottom:380.933333pt;}
.y16c_c00169{bottom:381.693333pt;}
.y16a_c00169{bottom:383.226667pt;}
.y16d_c00169{bottom:385.533333pt;}
.y16f_c00169{bottom:386.306667pt;}
.y162_c00169{bottom:397.053333pt;}
.y160_c00169{bottom:397.826667pt;}
.y163_c00169{bottom:400.133333pt;}
.y15f_c00169{bottom:400.893333pt;}
.y164_c00169{bottom:402.426667pt;}
.y161_c00169{bottom:403.200000pt;}
.y165_c00169{bottom:407.040000pt;}
.y155_c00169{bottom:414.720000pt;}
.y158_c00169{bottom:419.333333pt;}
.y15a_c00169{bottom:420.093333pt;}
.y156_c00169{bottom:421.626667pt;}
.y15c_c00169{bottom:423.173333pt;}
.y157_c00169{bottom:424.706667pt;}
.y15e_c00169{bottom:425.466667pt;}
.y15d_c00169{bottom:426.240000pt;}
.y159_c00169{bottom:427.013333pt;}
.y15b_c00169{bottom:428.546667pt;}
.y149_c00169{bottom:439.293333pt;}
.y148_c00169{bottom:440.826667pt;}
.y14d_c00169{bottom:442.373333pt;}
.y14b_c00169{bottom:443.133333pt;}
.y14c_c00169{bottom:444.666667pt;}
.y151_c00169{bottom:445.440000pt;}
.y14a_c00169{bottom:446.213333pt;}
.y154_c00169{bottom:446.973333pt;}
.y14f_c00169{bottom:447.746667pt;}
.y14e_c00169{bottom:448.506667pt;}
.y150_c00169{bottom:450.813333pt;}
.y152_c00169{bottom:451.586667pt;}
.y153_c00169{bottom:453.120000pt;}
.y13e_c00169{bottom:460.800000pt;}
.y140_c00169{bottom:463.106667pt;}
.y142_c00169{bottom:465.413333pt;}
.y141_c00169{bottom:466.946667pt;}
.y13f_c00169{bottom:467.706667pt;}
.y143_c00169{bottom:470.013333pt;}
.y145_c00169{bottom:473.093333pt;}
.y146_c00169{bottom:474.626667pt;}
.y144_c00169{bottom:475.386667pt;}
.y147_c00169{bottom:477.693333pt;}
.y139_c00169{bottom:483.066667pt;}
.y13b_c00169{bottom:489.213333pt;}
.y13d_c00169{bottom:489.986667pt;}
.y13a_c00169{bottom:490.746667pt;}
.y138_c00169{bottom:491.520000pt;}
.y13c_c00169{bottom:495.360000pt;}
.y12e_c00169{bottom:505.346667pt;}
.y130_c00169{bottom:506.106667pt;}
.y131_c00169{bottom:506.880000pt;}
.y132_c00169{bottom:509.946667pt;}
.y12f_c00169{bottom:512.253333pt;}
.y134_c00169{bottom:513.026667pt;}
.y133_c00169{bottom:513.786667pt;}
.y136_c00169{bottom:516.093333pt;}
.y135_c00169{bottom:520.706667pt;}
.y126_c00169{bottom:529.146667pt;}
.y127_c00169{bottom:530.693333pt;}
.y125_c00169{bottom:532.226667pt;}
.y129_c00169{bottom:532.986667pt;}
.y12a_c00169{bottom:533.760000pt;}
.y12b_c00169{bottom:534.533333pt;}
.y137_c00169{bottom:535.293333pt;}
.y12c_c00169{bottom:536.066667pt;}
.y128_c00169{bottom:538.373333pt;}
.y12d_c00169{bottom:548.346667pt;}
.y11c_c00169{bottom:551.426667pt;}
.y11a_c00169{bottom:553.733333pt;}
.y11e_c00169{bottom:554.493333pt;}
.y120_c00169{bottom:556.026667pt;}
.y121_c00169{bottom:556.800000pt;}
.y11b_c00169{bottom:557.573333pt;}
.y122_c00169{bottom:559.106667pt;}
.y11d_c00169{bottom:559.866667pt;}
.y11f_c00169{bottom:562.173333pt;}
.y123_c00169{bottom:564.480000pt;}
.y124_c00169{bottom:565.253333pt;}
.y110_c00169{bottom:570.626667pt;}
.y113_c00169{bottom:576.000000pt;}
.y115_c00169{bottom:577.533333pt;}
.y111_c00169{bottom:578.306667pt;}
.y112_c00169{bottom:579.066667pt;}
.y119_c00169{bottom:579.840000pt;}
.y114_c00169{bottom:581.373333pt;}
.y116_c00169{bottom:584.453333pt;}
.y117_c00169{bottom:585.213333pt;}
.y118_c00169{bottom:587.520000pt;}
.y106_c00169{bottom:594.426667pt;}
.y107_c00169{bottom:595.200000pt;}
.y104_c00169{bottom:595.973333pt;}
.y108_c00169{bottom:596.733333pt;}
.y10a_c00169{bottom:598.266667pt;}
.y105_c00169{bottom:599.813333pt;}
.y10e_c00169{bottom:600.573333pt;}
.y10d_c00169{bottom:601.346667pt;}
.y10f_c00169{bottom:603.653333pt;}
.y109_c00169{bottom:604.413333pt;}
.y10b_c00169{bottom:605.186667pt;}
.y10c_c00169{bottom:605.946667pt;}
.yfd_c00169{bottom:617.466667pt;}
.y100_c00169{bottom:620.546667pt;}
.yfc_c00169{bottom:621.306667pt;}
.y102_c00169{bottom:623.613333pt;}
.yfe_c00169{bottom:624.386667pt;}
.yff_c00169{bottom:625.146667pt;}
.y103_c00169{bottom:626.693333pt;}
.y101_c00169{bottom:628.226667pt;}
.yf1_c00169{bottom:635.906667pt;}
.yf3_c00169{bottom:638.213333pt;}
.yf4_c00169{bottom:639.746667pt;}
.yf6_c00169{bottom:642.053333pt;}
.yf7_c00169{bottom:642.813333pt;}
.yf2_c00169{bottom:643.586667pt;}
.yfa_c00169{bottom:645.120000pt;}
.yf5_c00169{bottom:646.653333pt;}
.yf8_c00169{bottom:648.960000pt;}
.yf9_c00169{bottom:649.733333pt;}
.yfb_c00169{bottom:652.026667pt;}
.ye8_c00169{bottom:660.480000pt;}
.ye9_c00169{bottom:661.253333pt;}
.yeb_c00169{bottom:662.013333pt;}
.yec_c00169{bottom:663.546667pt;}
.ye7_c00169{bottom:664.320000pt;}
.yee_c00169{bottom:665.093333pt;}
.yef_c00169{bottom:665.853333pt;}
.yea_c00169{bottom:666.626667pt;}
.yed_c00169{bottom:671.226667pt;}
.yf0_c00169{bottom:672.773333pt;}
.ydc_c00169{bottom:679.680000pt;}
.yde_c00169{bottom:680.453333pt;}
.ydf_c00169{bottom:682.746667pt;}
.ye0_c00169{bottom:684.293333pt;}
.ye2_c00169{bottom:686.586667pt;}
.ydd_c00169{bottom:687.360000pt;}
.ye5_c00169{bottom:688.133333pt;}
.ye1_c00169{bottom:688.893333pt;}
.ye4_c00169{bottom:690.426667pt;}
.ye3_c00169{bottom:692.733333pt;}
.ye6_c00169{bottom:695.040000pt;}
.yd5_c00169{bottom:701.186667pt;}
.yda_c00169{bottom:705.786667pt;}
.yd7_c00169{bottom:706.560000pt;}
.yd9_c00169{bottom:708.093333pt;}
.yd6_c00169{bottom:708.866667pt;}
.yd8_c00169{bottom:709.626667pt;}
.ydb_c00169{bottom:711.933333pt;}
.ycc_c00169{bottom:723.453333pt;}
.yce_c00169{bottom:727.293333pt;}
.ycb_c00169{bottom:728.066667pt;}
.yd2_c00169{bottom:730.373333pt;}
.ycd_c00169{bottom:731.906667pt;}
.yd1_c00169{bottom:732.666667pt;}
.yd4_c00169{bottom:733.440000pt;}
.ycf_c00169{bottom:734.213333pt;}
.yd0_c00169{bottom:735.746667pt;}
.yd3_c00169{bottom:737.280000pt;}
.yc4_c00169{bottom:746.493333pt;}
.yc5_c00169{bottom:748.026667pt;}
.yc9_c00169{bottom:749.573333pt;}
.yc6_c00169{bottom:753.413333pt;}
.yc7_c00169{bottom:754.173333pt;}
.yc8_c00169{bottom:754.946667pt;}
.yca_c00169{bottom:757.253333pt;}
.ybc_c00169{bottom:768.773333pt;}
.ybb_c00169{bottom:769.533333pt;}
.yba_c00169{bottom:771.066667pt;}
.ybe_c00169{bottom:771.840000pt;}
.ybf_c00169{bottom:773.373333pt;}
.yb9_c00169{bottom:774.146667pt;}
.yc1_c00169{bottom:774.906667pt;}
.yc2_c00169{bottom:776.453333pt;}
.yc0_c00169{bottom:777.213333pt;}
.ybd_c00169{bottom:777.986667pt;}
.yb0_c00169{bottom:790.266667pt;}
.yb1_c00169{bottom:791.813333pt;}
.yb2_c00169{bottom:792.573333pt;}
.yc3_c00169{bottom:793.346667pt;}
.yb3_c00169{bottom:797.186667pt;}
.yb5_c00169{bottom:801.026667pt;}
.yb4_c00169{bottom:801.786667pt;}
.yb6_c00169{bottom:803.333333pt;}
.yb7_c00169{bottom:804.866667pt;}
.ya4_c00169{bottom:811.013333pt;}
.ya6_c00169{bottom:814.080000pt;}
.ya7_c00169{bottom:814.853333pt;}
.ya9_c00169{bottom:816.386667pt;}
.yac_c00169{bottom:817.920000pt;}
.yb8_c00169{bottom:818.693333pt;}
.ya5_c00169{bottom:819.453333pt;}
.ya3_c00169{bottom:820.226667pt;}
.ya8_c00169{bottom:822.533333pt;}
.yaa_c00169{bottom:823.293333pt;}
.yab_c00169{bottom:824.066667pt;}
.yad_c00169{bottom:825.600000pt;}
.yaf_c00169{bottom:843.266667pt;}
.yae_c00169{bottom:850.173333pt;}
.ya1_c00169{bottom:854.013333pt;}
.ya2_c00169{bottom:856.320000pt;}
.y12_c00169{bottom:876.293333pt;}
.y9a_c00169{bottom:877.826667pt;}
.y96_c00169{bottom:879.360000pt;}
.y98_c00169{bottom:880.133333pt;}
.y99_c00169{bottom:880.893333pt;}
.y9d_c00169{bottom:881.666667pt;}
.y9c_c00169{bottom:883.200000pt;}
.y9e_c00169{bottom:883.973333pt;}
.y97_c00169{bottom:887.040000pt;}
.y9f_c00169{bottom:887.813333pt;}
.y9b_c00169{bottom:888.573333pt;}
.ya0_c00169{bottom:889.346667pt;}
.y11_c00169{bottom:897.786667pt;}
.y8b_c00169{bottom:900.866667pt;}
.y8a_c00169{bottom:904.706667pt;}
.y8e_c00169{bottom:905.466667pt;}
.y8f_c00169{bottom:907.013333pt;}
.y8c_c00169{bottom:909.306667pt;}
.y8d_c00169{bottom:910.080000pt;}
.y90_c00169{bottom:910.853333pt;}
.y91_c00169{bottom:913.146667pt;}
.y93_c00169{bottom:913.920000pt;}
.y92_c00169{bottom:914.693333pt;}
.y94_c00169{bottom:917.760000pt;}
.y95_c00169{bottom:918.533333pt;}
.y10_c00169{bottom:920.826667pt;}
.y80_c00169{bottom:923.906667pt;}
.y81_c00169{bottom:925.440000pt;}
.y82_c00169{bottom:926.973333pt;}
.y83_c00169{bottom:927.746667pt;}
.y85_c00169{bottom:930.053333pt;}
.y87_c00169{bottom:931.586667pt;}
.y89_c00169{bottom:933.893333pt;}
.y84_c00169{bottom:934.653333pt;}
.y86_c00169{bottom:936.960000pt;}
.y88_c00169{bottom:940.026667pt;}
.yf_c00169{bottom:940.800000pt;}
.y78_c00169{bottom:947.706667pt;}
.y79_c00169{bottom:948.480000pt;}
.y76_c00169{bottom:949.253333pt;}
.y7d_c00169{bottom:950.786667pt;}
.y77_c00169{bottom:953.093333pt;}
.y75_c00169{bottom:953.853333pt;}
.y7f_c00169{bottom:955.386667pt;}
.y7a_c00169{bottom:956.160000pt;}
.y7b_c00169{bottom:956.933333pt;}
.y7c_c00169{bottom:957.693333pt;}
.y7e_c00169{bottom:959.226667pt;}
.ye_c00169{bottom:962.306667pt;}
.y6f_c00169{bottom:969.986667pt;}
.y70_c00169{bottom:972.293333pt;}
.y71_c00169{bottom:974.586667pt;}
.yd_c00169{bottom:977.666667pt;}
.y72_c00169{bottom:981.506667pt;}
.y74_c00169{bottom:983.040000pt;}
.y73_c00169{bottom:983.813333pt;}
.y68_c00169{bottom:992.253333pt;}
.y66_c00169{bottom:993.786667pt;}
.y69_c00169{bottom:994.560000pt;}
.y67_c00169{bottom:997.626667pt;}
.y6b_c00169{bottom:999.173333pt;}
.y6e_c00169{bottom:1000.706667pt;}
.y6a_c00169{bottom:1002.240000pt;}
.y6c_c00169{bottom:1003.013333pt;}
.y6d_c00169{bottom:1006.080000pt;}
.yc_c00169{bottom:1007.613333pt;}
.y5f_c00169{bottom:1012.986667pt;}
.y62_c00169{bottom:1015.293333pt;}
.y5d_c00169{bottom:1016.066667pt;}
.y60_c00169{bottom:1016.826667pt;}
.y5e_c00169{bottom:1019.133333pt;}
.y63_c00169{bottom:1019.906667pt;}
.y64_c00169{bottom:1020.666667pt;}
.y61_c00169{bottom:1021.440000pt;}
.y65_c00169{bottom:1028.346667pt;}
.ya_c00169{bottom:1032.186667pt;}
.y54_c00169{bottom:1033.733333pt;}
.y53_c00169{bottom:1034.493333pt;}
.y55_c00169{bottom:1036.800000pt;}
.y56_c00169{bottom:1037.573333pt;}
.y57_c00169{bottom:1038.333333pt;}
.yb_c00169{bottom:1039.866667pt;}
.y58_c00169{bottom:1040.640000pt;}
.y59_c00169{bottom:1041.413333pt;}
.y5a_c00169{bottom:1042.173333pt;}
.y5b_c00169{bottom:1049.093333pt;}
.y5c_c00169{bottom:1049.853333pt;}
.y9_c00169{bottom:1054.466667pt;}
.y48_c00169{bottom:1056.773333pt;}
.y49_c00169{bottom:1057.533333pt;}
.y4a_c00169{bottom:1060.613333pt;}
.y4d_c00169{bottom:1062.146667pt;}
.y47_c00169{bottom:1062.906667pt;}
.y4b_c00169{bottom:1063.680000pt;}
.y50_c00169{bottom:1064.453333pt;}
.y4c_c00169{bottom:1066.746667pt;}
.y52_c00169{bottom:1067.520000pt;}
.y4e_c00169{bottom:1068.293333pt;}
.y4f_c00169{bottom:1069.826667pt;}
.y51_c00169{bottom:1072.893333pt;}
.y3f_c00169{bottom:1080.573333pt;}
.y41_c00169{bottom:1082.880000pt;}
.y3d_c00169{bottom:1084.413333pt;}
.y42_c00169{bottom:1085.186667pt;}
.y3e_c00169{bottom:1085.946667pt;}
.y45_c00169{bottom:1087.493333pt;}
.y46_c00169{bottom:1088.253333pt;}
.y40_c00169{bottom:1089.026667pt;}
.y44_c00169{bottom:1089.786667pt;}
.y43_c00169{bottom:1092.093333pt;}
.y36_c00169{bottom:1101.306667pt;}
.y38_c00169{bottom:1102.853333pt;}
.y37_c00169{bottom:1104.386667pt;}
.y35_c00169{bottom:1105.920000pt;}
.y3c_c00169{bottom:1108.226667pt;}
.y39_c00169{bottom:1108.986667pt;}
.y3a_c00169{bottom:1109.760000pt;}
.y3b_c00169{bottom:1111.293333pt;}
.y8_c00169{bottom:1119.746667pt;}
.y7_c00169{bottom:1131.266667pt;}
.y2c_c00169{bottom:1138.946667pt;}
.y2d_c00169{bottom:1139.706667pt;}
.y2e_c00169{bottom:1141.253333pt;}
.y6_c00169{bottom:1142.786667pt;}
.y2f_c00169{bottom:1143.546667pt;}
.y30_c00169{bottom:1144.320000pt;}
.y31_c00169{bottom:1145.093333pt;}
.y32_c00169{bottom:1145.853333pt;}
.y34_c00169{bottom:1147.386667pt;}
.y33_c00169{bottom:1148.160000pt;}
.y5_c00169{bottom:1150.466667pt;}
.y23_c00169{bottom:1168.133333pt;}
.y25_c00169{bottom:1170.426667pt;}
.y27_c00169{bottom:1171.200000pt;}
.y24_c00169{bottom:1171.973333pt;}
.y22_c00169{bottom:1173.506667pt;}
.y2b_c00169{bottom:1175.813333pt;}
.y26_c00169{bottom:1178.880000pt;}
.y4_c00169{bottom:1179.653333pt;}
.y3_c00169{bottom:1180.413333pt;}
.y28_c00169{bottom:1183.493333pt;}
.y29_c00169{bottom:1186.560000pt;}
.y2a_c00169{bottom:1189.626667pt;}
.y18_c00169{bottom:1191.173333pt;}
.y1a_c00169{bottom:1191.933333pt;}
.y19_c00169{bottom:1192.706667pt;}
.y1b_c00169{bottom:1195.773333pt;}
.y17_c00169{bottom:1196.546667pt;}
.y1f_c00169{bottom:1197.306667pt;}
.y1e_c00169{bottom:1198.080000pt;}
.y20_c00169{bottom:1198.853333pt;}
.y1d_c00169{bottom:1201.920000pt;}
.y21_c00169{bottom:1203.453333pt;}
.y1_c00169{bottom:1209.600000pt;}
.y1c_c00169{bottom:1212.666667pt;}
.y2_c00169{bottom:1218.813333pt;}
.y13_c00169{bottom:1219.586667pt;}
.y14_c00169{bottom:1223.426667pt;}
.y15_c00169{bottom:1224.186667pt;}
.y16_c00169{bottom:1226.493333pt;}
.h11_c00169{height:2.764500pt;}
.h12_c00169{height:4.799479pt;}
.h3_c00169{height:5.519401pt;}
.h1c_c00169{height:8.303099pt;}
.h8_c00169{height:11.038802pt;}
.ha_c00169{height:13.822500pt;}
.h5_c00169{height:16.606198pt;}
.h21_c00169{height:19.341901pt;}
.h27_c00169{height:22.125599pt;}
.hf_c00169{height:24.861302pt;}
.h7_c00169{height:27.645000pt;}
.h22_c00169{height:30.428698pt;}
.h1f_c00169{height:33.164401pt;}
.h9_c00169{height:35.948099pt;}
.h2_c00169{height:38.683802pt;}
.hb_c00169{height:41.467500pt;}
.he_c00169{height:44.251198pt;}
.h1e_c00169{height:46.986901pt;}
.h1d_c00169{height:49.770599pt;}
.h13_c00169{height:52.506302pt;}
.h19_c00169{height:55.290000pt;}
.h4_c00169{height:58.073698pt;}
.h10_c00169{height:60.809401pt;}
.h20_c00169{height:63.593099pt;}
.h16_c00169{height:66.328802pt;}
.hc_c00169{height:69.112500pt;}
.h17_c00169{height:71.896198pt;}
.h14_c00169{height:74.631901pt;}
.h15_c00169{height:77.415599pt;}
.h18_c00169{height:80.151302pt;}
.h1b_c00169{height:82.935000pt;}
.hd_c00169{height:85.718698pt;}
.h23_c00169{height:88.454401pt;}
.h24_c00169{height:91.238099pt;}
.h1a_c00169{height:93.973802pt;}
.h25_c00169{height:96.757500pt;}
.h6_c00169{height:105.060599pt;}
.h28_c00169{height:107.796302pt;}
.h26_c00169{height:113.363698pt;}
.h1_c00169{height:1336.000000pt;}
.h0_c00169{height:1336.320000pt;}
.w0_c00169{width:983.040000pt;}
.w1_c00169{width:983.333333pt;}
.x0_c00169{left:0.000000pt;}
.x3_c00169{left:3.066667pt;}
.x1_c00169{left:28.413333pt;}
.x5_c00169{left:36.093333pt;}
.x4_c00169{left:42.240000pt;}
.x2_c00169{left:124.413333pt;}
.x7f_c00169{left:207.360000pt;}
.xa_c00169{left:211.973333pt;}
.x69_c00169{left:214.266667pt;}
.x3a_c00169{left:215.813333pt;}
.x6_c00169{left:218.106667pt;}
.xa7_c00169{left:219.653333pt;}
.x95_c00169{left:221.946667pt;}
.x8a_c00169{left:224.253333pt;}
.xbf_c00169{left:226.560000pt;}
.xd2_c00169{left:228.866667pt;}
.xe4_c00169{left:230.400000pt;}
.xeb_c00169{left:232.706667pt;}
.x75_c00169{left:235.773333pt;}
.x31_c00169{left:237.306667pt;}
.x4d_c00169{left:238.853333pt;}
.x45_c00169{left:241.146667pt;}
.x8b_c00169{left:242.693333pt;}
.x18_c00169{left:246.533333pt;}
.xc0_c00169{left:249.600000pt;}
.xb_c00169{left:251.133333pt;}
.xb6_c00169{left:254.213333pt;}
.x70_c00169{left:257.280000pt;}
.x76_c00169{left:259.586667pt;}
.xdc_c00169{left:261.120000pt;}
.xc3_c00169{left:262.653333pt;}
.xae_c00169{left:264.186667pt;}
.x9b_c00169{left:267.266667pt;}
.x54_c00169{left:268.800000pt;}
.x3b_c00169{left:270.333333pt;}
.xc_c00169{left:271.866667pt;}
.xd6_c00169{left:273.413333pt;}
.xa9_c00169{left:274.946667pt;}
.x9c_c00169{left:277.253333pt;}
.xcf_c00169{left:278.786667pt;}
.x5f_c00169{left:282.626667pt;}
.xa2_c00169{left:284.160000pt;}
.x8c_c00169{left:285.693333pt;}
.x3c_c00169{left:288.000000pt;}
.xed_c00169{left:289.533333pt;}
.xaf_c00169{left:292.613333pt;}
.x23_c00169{left:294.146667pt;}
.x4e_c00169{left:295.680000pt;}
.xb7_c00169{left:297.213333pt;}
.x32_c00169{left:299.520000pt;}
.x86_c00169{left:302.586667pt;}
.x96_c00169{left:304.893333pt;}
.xc9_c00169{left:306.426667pt;}
.x19_c00169{left:307.973333pt;}
.x60_c00169{left:310.266667pt;}
.x46_c00169{left:313.346667pt;}
.x80_c00169{left:314.880000pt;}
.x24_c00169{left:317.186667pt;}
.x1a_c00169{left:320.253333pt;}
.x55_c00169{left:322.560000pt;}
.xd_c00169{left:326.400000pt;}
.xca_c00169{left:328.706667pt;}
.xfe_c00169{left:331.773333pt;}
.x56_c00169{left:333.306667pt;}
.xf6_c00169{left:334.853333pt;}
.x9d_c00169{left:336.386667pt;}
.x77_c00169{left:338.693333pt;}
.x4f_c00169{left:341.760000pt;}
.x8d_c00169{left:346.373333pt;}
.x47_c00169{left:347.906667pt;}
.x33_c00169{left:350.973333pt;}
.x61_c00169{left:354.053333pt;}
.x25_c00169{left:357.120000pt;}
.xbc_c00169{left:359.426667pt;}
.xa3_c00169{left:362.493333pt;}
.x57_c00169{left:364.026667pt;}
.xe_c00169{left:366.333333pt;}
.xd7_c00169{left:371.706667pt;}
.xfb_c00169{left:373.253333pt;}
.xaa_c00169{left:375.546667pt;}
.x87_c00169{left:377.853333pt;}
.x26_c00169{left:380.160000pt;}
.x58_c00169{left:383.226667pt;}
.x1b_c00169{left:384.773333pt;}
.xe5_c00169{left:387.066667pt;}
.xa0_c00169{left:388.613333pt;}
.x48_c00169{left:391.680000pt;}
.x89_c00169{left:394.746667pt;}
.x3d_c00169{left:399.360000pt;}
.xe2_c00169{left:400.893333pt;}
.xfc_c00169{left:402.426667pt;}
.xab_c00169{left:405.506667pt;}
.x27_c00169{left:407.040000pt;}
.x88_c00169{left:410.880000pt;}
.xa1_c00169{left:412.413333pt;}
.x34_c00169{left:413.946667pt;}
.xc4_c00169{left:418.560000pt;}
.x6a_c00169{left:421.626667pt;}
.xdd_c00169{left:423.173333pt;}
.xbd_c00169{left:425.466667pt;}
.x28_c00169{left:429.306667pt;}
.xd8_c00169{left:430.853333pt;}
.x78_c00169{left:433.146667pt;}
.x50_c00169{left:435.453333pt;}
.x1c_c00169{left:436.986667pt;}
.x59_c00169{left:440.066667pt;}
.x3e_c00169{left:443.906667pt;}
.xf_c00169{left:445.440000pt;}
.x10_c00169{left:448.506667pt;}
.xb8_c00169{left:450.813333pt;}
.xb0_c00169{left:453.120000pt;}
.xe3_c00169{left:454.653333pt;}
.x8e_c00169{left:457.733333pt;}
.x29_c00169{left:459.266667pt;}
.x51_c00169{left:461.573333pt;}
.xf7_c00169{left:463.106667pt;}
.xc1_c00169{left:465.413333pt;}
.x3f_c00169{left:468.480000pt;}
.x1d_c00169{left:470.786667pt;}
.x2a_c00169{left:473.093333pt;}
.xde_c00169{left:474.626667pt;}
.x35_c00169{left:476.160000pt;}
.xb1_c00169{left:478.466667pt;}
.x79_c00169{left:480.000000pt;}
.x2b_c00169{left:483.066667pt;}
.xb9_c00169{left:484.613333pt;}
.xcb_c00169{left:486.906667pt;}
.x62_c00169{left:495.360000pt;}
.x2c_c00169{left:496.893333pt;}
.x11_c00169{left:498.426667pt;}
.xac_c00169{left:501.506667pt;}
.x81_c00169{left:503.813333pt;}
.x2d_c00169{left:506.106667pt;}
.x71_c00169{left:508.413333pt;}
.x12_c00169{left:509.946667pt;}
.xa4_c00169{left:512.253333pt;}
.x7a_c00169{left:513.786667pt;}
.x8f_c00169{left:516.866667pt;}
.xc5_c00169{left:518.400000pt;}
.x72_c00169{left:522.240000pt;}
.x49_c00169{left:524.546667pt;}
.xd0_c00169{left:527.613333pt;}
.x36_c00169{left:529.146667pt;}
.x13_c00169{left:532.226667pt;}
.x9e_c00169{left:534.533333pt;}
.x2e_c00169{left:536.826667pt;}
.x63_c00169{left:538.373333pt;}
.x6b_c00169{left:541.440000pt;}
.xff_c00169{left:543.746667pt;}
.x40_c00169{left:546.053333pt;}
.x5a_c00169{left:548.346667pt;}
.x73_c00169{left:549.893333pt;}
.xf4_c00169{left:552.186667pt;}
.x90_c00169{left:555.266667pt;}
.xe7_c00169{left:557.573333pt;}
.xdf_c00169{left:560.640000pt;}
.x4a_c00169{left:565.253333pt;}
.x41_c00169{left:569.853333pt;}
.xf9_c00169{left:572.933333pt;}
.x7_c00169{left:574.466667pt;}
.x82_c00169{left:576.000000pt;}
.xba_c00169{left:577.533333pt;}
.xc6_c00169{left:579.066667pt;}
.xcc_c00169{left:581.373333pt;}
.x5b_c00169{left:584.453333pt;}
.xfa_c00169{left:585.986667pt;}
.xee_c00169{left:587.520000pt;}
.x100_c00169{left:589.053333pt;}
.x1e_c00169{left:590.586667pt;}
.x6c_c00169{left:592.893333pt;}
.xb2_c00169{left:595.973333pt;}
.xfd_c00169{left:597.506667pt;}
.x8_c00169{left:599.813333pt;}
.x7b_c00169{left:602.106667pt;}
.x1f_c00169{left:603.653333pt;}
.x9f_c00169{left:607.493333pt;}
.x14_c00169{left:609.786667pt;}
.x37_c00169{left:613.626667pt;}
.x52_c00169{left:616.706667pt;}
.xef_c00169{left:618.240000pt;}
.x15_c00169{left:619.773333pt;}
.x5c_c00169{left:622.853333pt;}
.x64_c00169{left:624.386667pt;}
.x38_c00169{left:625.920000pt;}
.xf5_c00169{left:628.986667pt;}
.x42_c00169{left:630.533333pt;}
.xbb_c00169{left:634.373333pt;}
.x91_c00169{left:638.213333pt;}
.x43_c00169{left:639.746667pt;}
.x83_c00169{left:642.053333pt;}
.xa5_c00169{left:645.120000pt;}
.x7c_c00169{left:646.653333pt;}
.xd9_c00169{left:648.960000pt;}
.x16_c00169{left:653.573333pt;}
.xf8_c00169{left:655.866667pt;}
.x7d_c00169{left:658.173333pt;}
.xc7_c00169{left:659.706667pt;}
.x17_c00169{left:662.786667pt;}
.x53_c00169{left:664.320000pt;}
.x97_c00169{left:666.626667pt;}
.x44_c00169{left:668.933333pt;}
.xbe_c00169{left:671.226667pt;}
.xe9_c00169{left:672.773333pt;}
.xa6_c00169{left:678.146667pt;}
.xb3_c00169{left:679.680000pt;}
.x2f_c00169{left:681.986667pt;}
.x6d_c00169{left:683.520000pt;}
.x4b_c00169{left:685.826667pt;}
.x5d_c00169{left:691.200000pt;}
.xda_c00169{left:693.506667pt;}
.x30_c00169{left:695.813333pt;}
.x65_c00169{left:697.346667pt;}
.x84_c00169{left:699.653333pt;}
.x66_c00169{left:705.026667pt;}
.xf0_c00169{left:708.866667pt;}
.xf2_c00169{left:710.400000pt;}
.xad_c00169{left:711.933333pt;}
.x9_c00169{left:714.240000pt;}
.xa8_c00169{left:716.546667pt;}
.x92_c00169{left:718.080000pt;}
.x39_c00169{left:721.146667pt;}
.x20_c00169{left:723.453333pt;}
.x5e_c00169{left:725.760000pt;}
.xc2_c00169{left:727.293333pt;}
.x6e_c00169{left:729.600000pt;}
.x98_c00169{left:731.133333pt;}
.xe6_c00169{left:733.440000pt;}
.xd3_c00169{left:735.746667pt;}
.x4c_c00169{left:737.280000pt;}
.xb4_c00169{left:738.813333pt;}
.xcd_c00169{left:744.186667pt;}
.xb5_c00169{left:745.733333pt;}
.x67_c00169{left:751.106667pt;}
.x7e_c00169{left:752.640000pt;}
.x21_c00169{left:754.946667pt;}
.x85_c00169{left:756.480000pt;}
.xce_c00169{left:758.013333pt;}
.x99_c00169{left:765.693333pt;}
.x74_c00169{left:768.000000pt;}
.xc8_c00169{left:771.066667pt;}
.xea_c00169{left:773.373333pt;}
.x22_c00169{left:782.586667pt;}
.x6f_c00169{left:785.666667pt;}
.x93_c00169{left:787.200000pt;}
.x68_c00169{left:789.506667pt;}
.x94_c00169{left:791.813333pt;}
.x9a_c00169{left:793.346667pt;}
.xf1_c00169{left:795.653333pt;}
.xe0_c00169{left:798.720000pt;}
.xd1_c00169{left:801.026667pt;}
.xe8_c00169{left:804.093333pt;}
.xd4_c00169{left:807.173333pt;}
.xdb_c00169{left:809.466667pt;}
.xf3_c00169{left:812.546667pt;}
.xe1_c00169{left:814.080000pt;}
.xd5_c00169{left:815.613333pt;}
.xec_c00169{left:832.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_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_d1ccc404ceaaafb1ce1db9e5.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.109863;font-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_c00170{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00170{transform:matrix(0.055950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055950,0.000000,0.000000,0.250000,0,0);}
.m32_c00170{transform:matrix(0.093950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093950,0.000000,0.000000,0.250000,0,0);}
.m9a_c00170{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.mda_c00170{transform:matrix(0.099675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099675,0.000000,0.000000,0.250000,0,0);}
.m26_c00170{transform:matrix(0.106675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106675,0.000000,0.000000,0.250000,0,0);}
.mfc_c00170{transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);}
.m4d_c00170{transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);}
.m197_c00170{transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);}
.m2f_c00170{transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);}
.m6f_c00170{transform:matrix(0.121575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121575,0.000000,0.000000,0.250000,0,0);}
.m107_c00170{transform:matrix(0.121900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121900,0.000000,0.000000,0.250000,0,0);}
.mb7_c00170{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.mc_c00170{transform:matrix(0.125475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125475,0.000000,0.000000,0.250000,0,0);}
.m134_c00170{transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);}
.m61_c00170{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);}
.m188_c00170{transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);}
.m18e_c00170{transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);}
.mdf_c00170{transform:matrix(0.130750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130750,0.000000,0.000000,0.250000,0,0);}
.mfd_c00170{transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);}
.mfe_c00170{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);}
.m14_c00170{transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);}
.m16e_c00170{transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);}
.m98_c00170{transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);}
.ma0_c00170{transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);}
.m11f_c00170{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m63_c00170{transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);}
.m18d_c00170{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m4b_c00170{transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);}
.mdc_c00170{transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);}
.m16_c00170{transform:matrix(0.140325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140325,0.000000,0.000000,0.250000,0,0);}
.m4a_c00170{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);}
.me3_c00170{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);}
.m71_c00170{transform:matrix(0.143125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143125,0.000000,0.000000,0.250000,0,0);}
.m46_c00170{transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);}
.m8_c00170{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m159_c00170{transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);}
.m101_c00170{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.mb5_c00170{transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);}
.m161_c00170{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m182_c00170{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);}
.m89_c00170{transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);}
.m3e_c00170{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.m133_c00170{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);}
.m9_c00170{transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);}
.m47_c00170{transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);}
.mba_c00170{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.mb3_c00170{transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);}
.m100_c00170{transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);}
.m3f_c00170{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m13c_c00170{transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);}
.mf8_c00170{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);}
.mcb_c00170{transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);}
.m57_c00170{transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);}
.mec_c00170{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m173_c00170{transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);}
.m158_c00170{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.m160_c00170{transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);}
.m81_c00170{transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);}
.m15f_c00170{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);}
.m91_c00170{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);}
.mcf_c00170{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);}
.m7f_c00170{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00170{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m143_c00170{transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);}
.m50_c00170{transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);}
.m15c_c00170{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m103_c00170{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.mef_c00170{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);}
.m16c_c00170{transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);}
.m42_c00170{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.m137_c00170{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.m152_c00170{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.me4_c00170{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);}
.m45_c00170{transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);}
.m17_c00170{transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);}
.m131_c00170{transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);}
.mad_c00170{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m7b_c00170{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m51_c00170{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mdb_c00170{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.meb_c00170{transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);}
.m187_c00170{transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);}
.m138_c00170{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.m68_c00170{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.m129_c00170{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.mb6_c00170{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m76_c00170{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.maa_c00170{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.m170_c00170{transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);}
.m117_c00170{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.mc2_c00170{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.m12a_c00170{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.m82_c00170{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m14b_c00170{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m17b_c00170{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.md0_c00170{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.mb9_c00170{transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);}
.m70_c00170{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.m60_c00170{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);}
.m19_c00170{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);}
.m18c_c00170{transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);}
.ma8_c00170{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);}
.m6e_c00170{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.ma_c00170{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m6d_c00170{transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);}
.md6_c00170{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.m88_c00170{transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);}
.m2a_c00170{transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);}
.m11a_c00170{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.mc3_c00170{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.ma7_c00170{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);}
.m192_c00170{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m24_c00170{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m3b_c00170{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.mce_c00170{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m12d_c00170{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);}
.m43_c00170{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.m102_c00170{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m28_c00170{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m9c_c00170{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.md5_c00170{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);}
.m75_c00170{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.m153_c00170{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m94_c00170{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);}
.m120_c00170{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.m163_c00170{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.md4_c00170{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.m181_c00170{transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);}
.m144_c00170{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);}
.m3_c00170{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.me6_c00170{transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);}
.m37_c00170{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.m195_c00170{transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);}
.m9b_c00170{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.m199_c00170{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);}
.m105_c00170{transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);}
.m29_c00170{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m18a_c00170{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);}
.mc4_c00170{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m87_c00170{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.mf5_c00170{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m110_c00170{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);}
.m16f_c00170{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);}
.m17e_c00170{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m19b_c00170{transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);}
.me9_c00170{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.m11b_c00170{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.mfa_c00170{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.m154_c00170{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.m17d_c00170{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);}
.me7_c00170{transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);}
.m18f_c00170{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m8d_c00170{transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);}
.m10c_c00170{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);}
.m1a_c00170{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m41_c00170{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m10e_c00170{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m180_c00170{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m12b_c00170{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);}
.m162_c00170{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);}
.m155_c00170{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.m5f_c00170{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);}
.me2_c00170{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.m104_c00170{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);}
.m20_c00170{transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);}
.md_c00170{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);}
.m186_c00170{transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);}
.mcc_c00170{transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);}
.m111_c00170{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mde_c00170{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m191_c00170{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.m136_c00170{transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);}
.m132_c00170{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m184_c00170{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m124_c00170{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m19e_c00170{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);}
.m106_c00170{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.m19d_c00170{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00170{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m135_c00170{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);}
.m198_c00170{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m14e_c00170{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.mf6_c00170{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);}
.m121_c00170{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.m38_c00170{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m194_c00170{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.mc1_c00170{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m13b_c00170{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.m11d_c00170{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.m113_c00170{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.m128_c00170{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.m19a_c00170{transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);}
.mf7_c00170{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);}
.m2b_c00170{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.mee_c00170{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.m141_c00170{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);}
.m12e_c00170{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);}
.m11_c00170{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);}
.mab_c00170{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.m169_c00170{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.md8_c00170{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.m15e_c00170{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m1c_c00170{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m156_c00170{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m69_c00170{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m10_c00170{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.mbe_c00170{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.m193_c00170{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);}
.maf_c00170{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.mf2_c00170{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);}
.m5e_c00170{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);}
.m55_c00170{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);}
.me8_c00170{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);}
.ma2_c00170{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);}
.m73_c00170{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.m13e_c00170{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);}
.m127_c00170{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.mb8_c00170{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);}
.m114_c00170{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.m123_c00170{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.m84_c00170{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m19c_c00170{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);}
.m112_c00170{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);}
.m190_c00170{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);}
.m146_c00170{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.m126_c00170{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m130_c00170{transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);}
.m52_c00170{transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);}
.m139_c00170{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m74_c00170{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);}
.m9e_c00170{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.m8e_c00170{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m150_c00170{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.m15a_c00170{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m196_c00170{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);}
.m40_c00170{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);}
.m77_c00170{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.mbf_c00170{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m13a_c00170{transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);}
.mf9_c00170{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m2d_c00170{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m116_c00170{transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);}
.mc5_c00170{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);}
.m172_c00170{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);}
.mbb_c00170{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00170{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);}
.m171_c00170{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.md1_c00170{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m16b_c00170{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m179_c00170{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m18_c00170{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.md2_c00170{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);}
.m96_c00170{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.m59_c00170{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);}
.m115_c00170{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.m9d_c00170{transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);}
.m1e_c00170{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m108_c00170{transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);}
.m83_c00170{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);}
.m11c_c00170{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m36_c00170{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m145_c00170{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.mf1_c00170{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);}
.mc7_c00170{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);}
.m147_c00170{transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);}
.m67_c00170{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);}
.m30_c00170{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);}
.mcd_c00170{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.m189_c00170{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m10b_c00170{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);}
.m14f_c00170{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);}
.m23_c00170{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m8a_c00170{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m15b_c00170{transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);}
.mc9_c00170{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.m35_c00170{transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);}
.mdd_c00170{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.m34_c00170{transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);}
.m49_c00170{transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);}
.m19f_c00170{transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);}
.m86_c00170{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mae_c00170{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m14a_c00170{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);}
.m31_c00170{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);}
.m16d_c00170{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.m3c_c00170{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);}
.mac_c00170{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);}
.m14c_c00170{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);}
.m13_c00170{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.m58_c00170{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);}
.m4c_c00170{transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);}
.med_c00170{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);}
.mf4_c00170{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.mf0_c00170{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);}
.m7c_c00170{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);}
.m165_c00170{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m64_c00170{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);}
.md3_c00170{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);}
.m174_c00170{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.m44_c00170{transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);}
.ma6_c00170{transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);}
.me0_c00170{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);}
.m2c_c00170{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);}
.ma4_c00170{transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);}
.m17a_c00170{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);}
.m183_c00170{transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);}
.m122_c00170{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m93_c00170{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.m99_c00170{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.m166_c00170{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);}
.m10a_c00170{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m80_c00170{transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);}
.m168_c00170{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);}
.m14d_c00170{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.mff_c00170{transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);}
.m142_c00170{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);}
.mb1_c00170{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);}
.m3a_c00170{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.m178_c00170{transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);}
.m10f_c00170{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.m66_c00170{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);}
.m18b_c00170{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);}
.me5_c00170{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.mf3_c00170{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);}
.m7a_c00170{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);}
.m25_c00170{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);}
.m15d_c00170{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);}
.m3d_c00170{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m12c_c00170{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.m62_c00170{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.mc8_c00170{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);}
.mb2_c00170{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);}
.m17c_c00170{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.md7_c00170{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00170{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.mbc_c00170{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);}
.mca_c00170{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);}
.ma5_c00170{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.m13f_c00170{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);}
.m13d_c00170{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);}
.mb_c00170{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c00170{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);}
.m5b_c00170{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);}
.m2e_c00170{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);}
.m6b_c00170{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);}
.mb4_c00170{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00170{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m85_c00170{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m65_c00170{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);}
.mfb_c00170{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m54_c00170{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);}
.m16a_c00170{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);}
.m8b_c00170{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m39_c00170{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);}
.m6_c00170{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00170{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00170{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);}
.m157_c00170{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md9_c00170{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);}
.m1a2_c00170{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);}
.ma9_c00170{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m48_c00170{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00170{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);}
.mf_c00170{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m109_c00170{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m78_c00170{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00170{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m27_c00170{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00170{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m92_c00170{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00170{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00170{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);}
.m151_c00170{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m164_c00170{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00170{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m53_c00170{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00170{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m119_c00170{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11e_c00170{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);}
.m175_c00170{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c00170{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mea_c00170{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m149_c00170{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m17f_c00170{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m140_c00170{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);}
.m176_c00170{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m90_c00170{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00170{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m177_c00170{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);}
.m185_c00170{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00170{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.me1_c00170{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00170{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m125_c00170{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);}
.mbd_c00170{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4_c00170{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m21_c00170{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00170{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m33_c00170{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);}
.m79_c00170{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m148_c00170{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00170{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m167_c00170{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00170{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);}
.m72_c00170{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00170{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m95_c00170{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);}
.m1b_c00170{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m0_c00170{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m97_c00170{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m118_c00170{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_c00170{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m22_c00170{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00170{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m56_c00170{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00170{transform:matrix(1.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.422500,0.000000,0.000000,0.250000,0,0);}
.m7_c00170{transform:matrix(3.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.565000,0.000000,0.000000,0.250000,0,0);}
.m5_c00170{transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.040000,0.000000,0.000000,0.250000,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;}
.fs5_c00170{font-size:3.456000px;}
.fs23_c00170{font-size:6.000000px;}
.fs0_c00170{font-size:6.900000px;}
.fs6_c00170{font-size:10.380000px;}
.fs2_c00170{font-size:13.800000px;}
.fs4_c00170{font-size:17.280000px;}
.fs1_c00170{font-size:20.760000px;}
.fs21_c00170{font-size:24.180000px;}
.fs13_c00170{font-size:27.660000px;}
.fs10_c00170{font-size:31.080000px;}
.fs20_c00170{font-size:34.560000px;}
.fs22_c00170{font-size:38.040000px;}
.fs14_c00170{font-size:41.460000px;}
.fs1d_c00170{font-size:44.940000px;}
.fs17_c00170{font-size:48.360000px;}
.fs1e_c00170{font-size:51.840000px;}
.fs16_c00170{font-size:55.320000px;}
.fs3_c00170{font-size:58.740000px;}
.fs1f_c00170{font-size:62.220000px;}
.fsc_c00170{font-size:65.640000px;}
.fs19_c00170{font-size:69.120000px;}
.fs1a_c00170{font-size:72.600000px;}
.fs18_c00170{font-size:76.020000px;}
.fs7_c00170{font-size:79.500000px;}
.fs15_c00170{font-size:82.920000px;}
.fs9_c00170{font-size:86.400000px;}
.fs8_c00170{font-size:89.880000px;}
.fsf_c00170{font-size:93.300000px;}
.fs11_c00170{font-size:96.780000px;}
.fsb_c00170{font-size:100.200000px;}
.fs12_c00170{font-size:103.680000px;}
.fse_c00170{font-size:107.160000px;}
.fsa_c00170{font-size:110.580000px;}
.fs24_c00170{font-size:114.060000px;}
.fsd_c00170{font-size:117.480000px;}
.fs1b_c00170{font-size:120.960000px;}
.fs1c_c00170{font-size:124.440000px;}
.y0_c00170{bottom:0.000000px;}
.y179_c00170{bottom:222.045000px;}
.y176_c00170{bottom:224.640000px;}
.y177_c00170{bottom:225.510000px;}
.y178_c00170{bottom:227.235000px;}
.y175_c00170{bottom:228.090000px;}
.y172_c00170{bottom:228.960000px;}
.y173_c00170{bottom:229.830000px;}
.y174_c00170{bottom:230.685000px;}
.y171_c00170{bottom:232.410000px;}
.y170_c00170{bottom:247.965000px;}
.y16f_c00170{bottom:252.285000px;}
.y16d_c00170{bottom:254.010000px;}
.y16c_c00170{bottom:255.750000px;}
.y16e_c00170{bottom:256.605000px;}
.y16b_c00170{bottom:273.885000px;}
.y16a_c00170{bottom:274.755000px;}
.y169_c00170{bottom:277.350000px;}
.y167_c00170{bottom:279.075000px;}
.y165_c00170{bottom:279.930000px;}
.y166_c00170{bottom:280.800000px;}
.y164_c00170{bottom:281.670000px;}
.y168_c00170{bottom:284.250000px;}
.y163_c00170{bottom:285.120000px;}
.y160_c00170{bottom:300.675000px;}
.y162_c00170{bottom:303.270000px;}
.y15e_c00170{bottom:304.125000px;}
.y159_c00170{bottom:305.850000px;}
.y161_c00170{bottom:306.720000px;}
.y15f_c00170{bottom:308.445000px;}
.y15c_c00170{bottom:309.315000px;}
.y15a_c00170{bottom:311.040000px;}
.y15d_c00170{bottom:311.910000px;}
.y15b_c00170{bottom:312.765000px;}
.y158_c00170{bottom:324.000000px;}
.y154_c00170{bottom:329.190000px;}
.y153_c00170{bottom:330.045000px;}
.y152_c00170{bottom:331.770000px;}
.y157_c00170{bottom:332.640000px;}
.y155_c00170{bottom:333.510000px;}
.y156_c00170{bottom:336.090000px;}
.y151_c00170{bottom:339.555000px;}
.y14e_c00170{bottom:353.370000px;}
.y14d_c00170{bottom:355.110000px;}
.y14c_c00170{bottom:355.965000px;}
.y150_c00170{bottom:356.835000px;}
.y14f_c00170{bottom:358.560000px;}
.y14b_c00170{bottom:374.115000px;}
.y149_c00170{bottom:376.710000px;}
.y148_c00170{bottom:379.290000px;}
.y144_c00170{bottom:381.030000px;}
.y14a_c00170{bottom:381.885000px;}
.y142_c00170{bottom:382.755000px;}
.y147_c00170{bottom:383.610000px;}
.y146_c00170{bottom:386.205000px;}
.y145_c00170{bottom:387.930000px;}
.y143_c00170{bottom:388.800000px;}
.y140_c00170{bottom:400.035000px;}
.y13f_c00170{bottom:401.760000px;}
.y13e_c00170{bottom:403.485000px;}
.y13d_c00170{bottom:405.210000px;}
.y141_c00170{bottom:407.805000px;}
.y13c_c00170{bottom:413.850000px;}
.y13b_c00170{bottom:425.085000px;}
.y13a_c00170{bottom:428.550000px;}
.y136_c00170{bottom:432.870000px;}
.y137_c00170{bottom:433.725000px;}
.y139_c00170{bottom:434.595000px;}
.y134_c00170{bottom:435.450000px;}
.y138_c00170{bottom:438.045000px;}
.y135_c00170{bottom:438.915000px;}
.y133_c00170{bottom:439.770000px;}
.y130_c00170{bottom:453.600000px;}
.y12e_c00170{bottom:455.325000px;}
.y12d_c00170{bottom:456.195000px;}
.y132_c00170{bottom:457.050000px;}
.y131_c00170{bottom:458.790000px;}
.y12f_c00170{bottom:462.240000px;}
.y12b_c00170{bottom:463.110000px;}
.y12c_c00170{bottom:463.965000px;}
.y12a_c00170{bottom:476.925000px;}
.y129_c00170{bottom:477.795000px;}
.y127_c00170{bottom:479.520000px;}
.y126_c00170{bottom:481.245000px;}
.y125_c00170{bottom:482.115000px;}
.y128_c00170{bottom:486.435000px;}
.y124_c00170{bottom:489.885000px;}
.y120_c00170{bottom:506.310000px;}
.y123_c00170{bottom:507.165000px;}
.y122_c00170{bottom:508.890000px;}
.y121_c00170{bottom:509.760000px;}
.y17b_c00170{bottom:521.850000px;}
.y17a_c00170{bottom:524.445000px;}
.y11f_c00170{bottom:525.315000px;}
.y119_c00170{bottom:530.490000px;}
.y11c_c00170{bottom:531.360000px;}
.y118_c00170{bottom:532.230000px;}
.y11e_c00170{bottom:533.955000px;}
.y11d_c00170{bottom:534.810000px;}
.y11b_c00170{bottom:536.550000px;}
.y11a_c00170{bottom:539.130000px;}
.y117_c00170{bottom:550.365000px;}
.y116_c00170{bottom:552.960000px;}
.y114_c00170{bottom:555.555000px;}
.y115_c00170{bottom:556.410000px;}
.y112_c00170{bottom:557.280000px;}
.y113_c00170{bottom:564.195000px;}
.y111_c00170{bottom:576.285000px;}
.y110_c00170{bottom:578.880000px;}
.y10e_c00170{bottom:580.605000px;}
.y10d_c00170{bottom:582.330000px;}
.y10f_c00170{bottom:584.070000px;}
.y10c_c00170{bottom:585.795000px;}
.y10b_c00170{bottom:586.650000px;}
.y10a_c00170{bottom:589.245000px;}
.y108_c00170{bottom:601.350000px;}
.y109_c00170{bottom:602.205000px;}
.y106_c00170{bottom:603.075000px;}
.y103_c00170{bottom:606.525000px;}
.y104_c00170{bottom:607.395000px;}
.y107_c00170{bottom:609.120000px;}
.y105_c00170{bottom:613.440000px;}
.y102_c00170{bottom:627.270000px;}
.y100_c00170{bottom:628.995000px;}
.yfd_c00170{bottom:631.590000px;}
.yfb_c00170{bottom:632.445000px;}
.yff_c00170{bottom:633.315000px;}
.y101_c00170{bottom:635.910000px;}
.yfe_c00170{bottom:636.765000px;}
.yfc_c00170{bottom:638.490000px;}
.yf9_c00170{bottom:651.450000px;}
.yf8_c00170{bottom:654.045000px;}
.yf3_c00170{bottom:656.640000px;}
.yf4_c00170{bottom:657.510000px;}
.yfa_c00170{bottom:658.365000px;}
.yf7_c00170{bottom:660.090000px;}
.yf6_c00170{bottom:662.685000px;}
.yf5_c00170{bottom:663.555000px;}
.yf2_c00170{bottom:677.370000px;}
.yf1_c00170{bottom:678.240000px;}
.yec_c00170{bottom:679.965000px;}
.yf0_c00170{bottom:680.835000px;}
.yef_c00170{bottom:683.430000px;}
.yee_c00170{bottom:686.010000px;}
.yed_c00170{bottom:686.880000px;}
.yeb_c00170{bottom:687.750000px;}
.ye6_c00170{bottom:703.290000px;}
.ye7_c00170{bottom:704.160000px;}
.ye5_c00170{bottom:705.885000px;}
.yea_c00170{bottom:706.755000px;}
.ye8_c00170{bottom:707.610000px;}
.ye9_c00170{bottom:709.350000px;}
.ye2_c00170{bottom:721.440000px;}
.ye0_c00170{bottom:723.165000px;}
.ydc_c00170{bottom:724.035000px;}
.ye3_c00170{bottom:725.760000px;}
.ydb_c00170{bottom:726.630000px;}
.ydf_c00170{bottom:727.485000px;}
.yde_c00170{bottom:728.355000px;}
.ye4_c00170{bottom:730.950000px;}
.ydd_c00170{bottom:732.675000px;}
.ye1_c00170{bottom:733.530000px;}
.yda_c00170{bottom:734.400000px;}
.yd8_c00170{bottom:750.810000px;}
.yd7_c00170{bottom:751.680000px;}
.yd9_c00170{bottom:753.405000px;}
.yd3_c00170{bottom:754.275000px;}
.yd5_c00170{bottom:755.130000px;}
.yd6_c00170{bottom:757.725000px;}
.yd4_c00170{bottom:758.595000px;}
.yd2_c00170{bottom:762.045000px;}
.yd1_c00170{bottom:763.770000px;}
.yd0_c00170{bottom:775.005000px;}
.ycc_c00170{bottom:779.325000px;}
.ycb_c00170{bottom:780.195000px;}
.ycf_c00170{bottom:781.920000px;}
.yce_c00170{bottom:783.645000px;}
.ycd_c00170{bottom:784.515000px;}
.yc8_c00170{bottom:801.795000px;}
.yc9_c00170{bottom:802.650000px;}
.yc3_c00170{bottom:803.520000px;}
.yc5_c00170{bottom:804.390000px;}
.yc6_c00170{bottom:805.245000px;}
.yca_c00170{bottom:806.115000px;}
.yc7_c00170{bottom:807.840000px;}
.yc2_c00170{bottom:808.710000px;}
.yc4_c00170{bottom:810.435000px;}
.yc1_c00170{bottom:814.755000px;}
.yc0_c00170{bottom:822.525000px;}
.ybf_c00170{bottom:825.120000px;}
.ybe_c00170{bottom:825.990000px;}
.yba_c00170{bottom:826.845000px;}
.yb9_c00170{bottom:828.570000px;}
.ybd_c00170{bottom:831.165000px;}
.ybc_c00170{bottom:832.035000px;}
.yb8_c00170{bottom:832.890000px;}
.ybb_c00170{bottom:834.630000px;}
.yb6_c00170{bottom:835.485000px;}
.yb5_c00170{bottom:850.170000px;}
.yb2_c00170{bottom:851.040000px;}
.yb7_c00170{bottom:851.910000px;}
.yb1_c00170{bottom:852.765000px;}
.yad_c00170{bottom:853.635000px;}
.yae_c00170{bottom:856.230000px;}
.yac_c00170{bottom:857.085000px;}
.yb4_c00170{bottom:857.955000px;}
.yb3_c00170{bottom:858.810000px;}
.yb0_c00170{bottom:859.680000px;}
.yaf_c00170{bottom:860.550000px;}
.yab_c00170{bottom:874.365000px;}
.ya9_c00170{bottom:875.235000px;}
.ya5_c00170{bottom:876.960000px;}
.ya4_c00170{bottom:877.830000px;}
.ya7_c00170{bottom:881.280000px;}
.yaa_c00170{bottom:883.005000px;}
.ya8_c00170{bottom:883.875000px;}
.ya3_c00170{bottom:885.600000px;}
.ya6_c00170{bottom:895.110000px;}
.ya0_c00170{bottom:902.010000px;}
.y9d_c00170{bottom:902.880000px;}
.y9b_c00170{bottom:903.750000px;}
.ya1_c00170{bottom:904.605000px;}
.y9e_c00170{bottom:906.330000px;}
.ya2_c00170{bottom:908.070000px;}
.y9f_c00170{bottom:909.795000px;}
.y9c_c00170{bottom:910.650000px;}
.y9a_c00170{bottom:925.350000px;}
.y98_c00170{bottom:926.205000px;}
.y94_c00170{bottom:927.075000px;}
.y92_c00170{bottom:927.930000px;}
.y93_c00170{bottom:929.670000px;}
.y96_c00170{bottom:930.525000px;}
.y99_c00170{bottom:931.395000px;}
.y95_c00170{bottom:932.250000px;}
.y97_c00170{bottom:933.990000px;}
.y90_c00170{bottom:934.845000px;}
.y91_c00170{bottom:936.570000px;}
.y8f_c00170{bottom:949.530000px;}
.y8e_c00170{bottom:951.270000px;}
.y8c_c00170{bottom:952.995000px;}
.y8b_c00170{bottom:953.850000px;}
.y8d_c00170{bottom:959.910000px;}
.y8a_c00170{bottom:960.765000px;}
.y89_c00170{bottom:974.595000px;}
.y87_c00170{bottom:976.320000px;}
.y85_c00170{bottom:977.190000px;}
.y82_c00170{bottom:978.045000px;}
.y86_c00170{bottom:978.915000px;}
.y88_c00170{bottom:983.235000px;}
.y84_c00170{bottom:984.090000px;}
.y83_c00170{bottom:984.960000px;}
.y80_c00170{bottom:1000.515000px;}
.y7d_c00170{bottom:1003.110000px;}
.y81_c00170{bottom:1003.965000px;}
.y7f_c00170{bottom:1008.285000px;}
.y7e_c00170{bottom:1009.155000px;}
.y7c_c00170{bottom:1010.880000px;}
.y7a_c00170{bottom:1024.710000px;}
.y79_c00170{bottom:1026.435000px;}
.y77_c00170{bottom:1027.290000px;}
.y75_c00170{bottom:1028.160000px;}
.y7b_c00170{bottom:1030.755000px;}
.y76_c00170{bottom:1032.480000px;}
.y78_c00170{bottom:1035.075000px;}
.y74_c00170{bottom:1035.930000px;}
.y70_c00170{bottom:1048.035000px;}
.y73_c00170{bottom:1050.630000px;}
.y72_c00170{bottom:1051.485000px;}
.y6b_c00170{bottom:1052.355000px;}
.y6c_c00170{bottom:1054.080000px;}
.y71_c00170{bottom:1055.805000px;}
.y6e_c00170{bottom:1057.530000px;}
.y6d_c00170{bottom:1060.125000px;}
.y6f_c00170{bottom:1060.995000px;}
.y6a_c00170{bottom:1061.850000px;}
.y67_c00170{bottom:1075.680000px;}
.y65_c00170{bottom:1078.275000px;}
.y63_c00170{bottom:1079.130000px;}
.y64_c00170{bottom:1081.725000px;}
.y68_c00170{bottom:1082.595000px;}
.y66_c00170{bottom:1083.450000px;}
.y69_c00170{bottom:1092.090000px;}
.y62_c00170{bottom:1098.150000px;}
.y60_c00170{bottom:1100.730000px;}
.y5b_c00170{bottom:1101.600000px;}
.y61_c00170{bottom:1104.195000px;}
.y5f_c00170{bottom:1105.920000px;}
.y5d_c00170{bottom:1106.790000px;}
.y5a_c00170{bottom:1107.645000px;}
.y5c_c00170{bottom:1110.240000px;}
.y5e_c00170{bottom:1111.110000px;}
.y59_c00170{bottom:1124.070000px;}
.y57_c00170{bottom:1124.925000px;}
.y58_c00170{bottom:1125.795000px;}
.y55_c00170{bottom:1128.390000px;}
.y56_c00170{bottom:1129.245000px;}
.y53_c00170{bottom:1130.970000px;}
.y54_c00170{bottom:1135.290000px;}
.y50_c00170{bottom:1150.845000px;}
.y4f_c00170{bottom:1151.715000px;}
.y4a_c00170{bottom:1152.570000px;}
.y4b_c00170{bottom:1153.440000px;}
.y52_c00170{bottom:1156.035000px;}
.y51_c00170{bottom:1156.890000px;}
.y4e_c00170{bottom:1159.485000px;}
.y4d_c00170{bottom:1160.355000px;}
.y4c_c00170{bottom:1161.210000px;}
.y49_c00170{bottom:1175.040000px;}
.y48_c00170{bottom:1177.635000px;}
.y47_c00170{bottom:1180.230000px;}
.y44_c00170{bottom:1182.810000px;}
.y43_c00170{bottom:1184.550000px;}
.y46_c00170{bottom:1185.405000px;}
.y45_c00170{bottom:1186.275000px;}
.y42_c00170{bottom:1200.960000px;}
.y40_c00170{bottom:1201.830000px;}
.y3f_c00170{bottom:1202.685000px;}
.y41_c00170{bottom:1203.555000px;}
.y3d_c00170{bottom:1206.150000px;}
.y3e_c00170{bottom:1209.600000px;}
.y3c_c00170{bottom:1219.110000px;}
.y38_c00170{bottom:1221.690000px;}
.y35_c00170{bottom:1222.560000px;}
.y39_c00170{bottom:1225.155000px;}
.y3a_c00170{bottom:1226.010000px;}
.y34_c00170{bottom:1228.605000px;}
.y3b_c00170{bottom:1232.070000px;}
.y37_c00170{bottom:1233.795000px;}
.y36_c00170{bottom:1235.520000px;}
.y33_c00170{bottom:1249.350000px;}
.y31_c00170{bottom:1250.205000px;}
.y30_c00170{bottom:1251.930000px;}
.y2e_c00170{bottom:1252.800000px;}
.y2d_c00170{bottom:1253.670000px;}
.y32_c00170{bottom:1257.120000px;}
.y2f_c00170{bottom:1260.570000px;}
.y2c_c00170{bottom:1273.530000px;}
.y2b_c00170{bottom:1275.270000px;}
.y27_c00170{bottom:1277.850000px;}
.y26_c00170{bottom:1278.720000px;}
.y28_c00170{bottom:1280.445000px;}
.y29_c00170{bottom:1283.910000px;}
.y2a_c00170{bottom:1284.765000px;}
.y25_c00170{bottom:1286.490000px;}
.y24_c00170{bottom:1289.085000px;}
.y23_c00170{bottom:1299.450000px;}
.y21_c00170{bottom:1300.320000px;}
.y1e_c00170{bottom:1302.915000px;}
.y1d_c00170{bottom:1303.770000px;}
.y22_c00170{bottom:1305.510000px;}
.y1b_c00170{bottom:1307.235000px;}
.y20_c00170{bottom:1308.090000px;}
.y1f_c00170{bottom:1309.830000px;}
.y1c_c00170{bottom:1311.555000px;}
.y1a_c00170{bottom:1324.515000px;}
.y19_c00170{bottom:1327.110000px;}
.y12_c00170{bottom:1327.965000px;}
.y18_c00170{bottom:1329.690000px;}
.y14_c00170{bottom:1331.430000px;}
.y17_c00170{bottom:1332.285000px;}
.y11_c00170{bottom:1333.155000px;}
.y16_c00170{bottom:1334.010000px;}
.y15_c00170{bottom:1335.750000px;}
.y13_c00170{bottom:1336.605000px;}
.y10_c00170{bottom:1345.245000px;}
.yf_c00170{bottom:1349.565000px;}
.yd_c00170{bottom:1350.435000px;}
.yc_c00170{bottom:1352.160000px;}
.y8_c00170{bottom:1353.885000px;}
.ye_c00170{bottom:1356.480000px;}
.y7_c00170{bottom:1358.205000px;}
.yb_c00170{bottom:1359.930000px;}
.ya_c00170{bottom:1360.800000px;}
.y9_c00170{bottom:1361.670000px;}
.y6_c00170{bottom:1380.675000px;}
.y5_c00170{bottom:1382.400000px;}
.y4_c00170{bottom:1385.850000px;}
.y3_c00170{bottom:1389.315000px;}
.y1_c00170{bottom:1402.275000px;}
.y2_c00170{bottom:1404.000000px;}
.h7_c00170{height:3.110063px;}
.h25_c00170{height:5.399414px;}
.h2_c00170{height:6.209326px;}
.h8_c00170{height:9.340986px;}
.h4_c00170{height:12.418652px;}
.h6_c00170{height:15.550313px;}
.h3_c00170{height:18.681973px;}
.h23_c00170{height:21.759639px;}
.h15_c00170{height:24.891299px;}
.h12_c00170{height:27.968965px;}
.h22_c00170{height:31.100625px;}
.h24_c00170{height:34.232285px;}
.h16_c00170{height:37.309951px;}
.h1f_c00170{height:40.441611px;}
.h19_c00170{height:43.519277px;}
.h20_c00170{height:46.650937px;}
.h18_c00170{height:49.782598px;}
.h5_c00170{height:52.860264px;}
.h21_c00170{height:55.991924px;}
.he_c00170{height:59.069590px;}
.h1b_c00170{height:62.201250px;}
.h1c_c00170{height:65.332910px;}
.h1a_c00170{height:68.410576px;}
.h9_c00170{height:71.542236px;}
.h17_c00170{height:74.619902px;}
.hb_c00170{height:77.751563px;}
.ha_c00170{height:80.883223px;}
.h11_c00170{height:83.960889px;}
.h13_c00170{height:87.092549px;}
.hd_c00170{height:90.170215px;}
.h14_c00170{height:93.301875px;}
.h10_c00170{height:96.433535px;}
.hc_c00170{height:99.511201px;}
.h26_c00170{height:102.642861px;}
.hf_c00170{height:105.720527px;}
.h1d_c00170{height:108.852188px;}
.h1e_c00170{height:111.983848px;}
.h0_c00170{height:1523.235000px;}
.h1_c00170{height:1523.250000px;}
.w0_c00170{width:1107.645000px;}
.w1_c00170{width:1107.750000px;}
.x0_c00170{left:0.000000px;}
.x16_c00170{left:165.030000px;}
.xad_c00170{left:175.395000px;}
.xa6_c00170{left:177.120000px;}
.x27_c00170{left:178.845000px;}
.x17_c00170{left:180.570000px;}
.x1_c00170{left:182.310000px;}
.xa1_c00170{left:184.035000px;}
.xa_c00170{left:187.485000px;}
.x2_c00170{left:196.995000px;}
.x3_c00170{left:217.725000px;}
.xae_c00170{left:220.320000px;}
.xf7_c00170{left:222.045000px;}
.xb_c00170{left:225.510000px;}
.xf1_c00170{left:227.235000px;}
.xd3_c00170{left:228.960000px;}
.x48_c00170{left:230.685000px;}
.xb6_c00170{left:233.280000px;}
.x56_c00170{left:236.730000px;}
.x87_c00170{left:239.325000px;}
.x66_c00170{left:241.050000px;}
.x4_c00170{left:243.645000px;}
.x73_c00170{left:250.560000px;}
.xa7_c00170{left:260.070000px;}
.xaf_c00170{left:261.795000px;}
.x92_c00170{left:263.520000px;}
.xe5_c00170{left:265.245000px;}
.x28_c00170{left:273.030000px;}
.xcb_c00170{left:275.610000px;}
.x67_c00170{left:279.075000px;}
.xb7_c00170{left:283.395000px;}
.x8c_c00170{left:285.120000px;}
.x34_c00170{left:287.715000px;}
.x18_c00170{left:290.310000px;}
.x85_c00170{left:294.630000px;}
.x8d_c00170{left:298.080000px;}
.x99_c00170{left:302.400000px;}
.x4d_c00170{left:304.995000px;}
.x57_c00170{left:310.170000px;}
.x19_c00170{left:314.490000px;}
.xc_c00170{left:319.680000px;}
.x4e_c00170{left:324.000000px;}
.x8e_c00170{left:328.320000px;}
.x35_c00170{left:330.915000px;}
.xde_c00170{left:333.510000px;}
.xb8_c00170{left:339.555000px;}
.x58_c00170{left:342.150000px;}
.xb4_c00170{left:344.730000px;}
.xbe_c00170{left:347.325000px;}
.xf2_c00170{left:349.920000px;}
.x36_c00170{left:355.110000px;}
.xa2_c00170{left:356.835000px;}
.xc5_c00170{left:358.560000px;}
.x3b_c00170{left:362.010000px;}
.x1a_c00170{left:364.605000px;}
.x88_c00170{left:368.925000px;}
.xc2_c00170{left:373.245000px;}
.xd_c00170{left:375.840000px;}
.x7c_c00170{left:380.160000px;}
.xc3_c00170{left:381.885000px;}
.xbb_c00170{left:386.205000px;}
.x4f_c00170{left:387.930000px;}
.xe6_c00170{left:390.525000px;}
.x7d_c00170{left:392.250000px;}
.xea_c00170{left:393.990000px;}
.x59_c00170{left:395.715000px;}
.x50_c00170{left:397.440000px;}
.xcc_c00170{left:400.035000px;}
.x29_c00170{left:401.760000px;}
.xa8_c00170{left:404.355000px;}
.x43_c00170{left:409.530000px;}
.xa9_c00170{left:412.125000px;}
.x9e_c00170{left:415.590000px;}
.xe_c00170{left:419.040000px;}
.xd4_c00170{left:421.635000px;}
.x3c_c00170{left:425.085000px;}
.xf4_c00170{left:427.680000px;}
.x86_c00170{left:429.405000px;}
.xcd_c00170{left:432.000000px;}
.x2a_c00170{left:433.725000px;}
.x61_c00170{left:436.320000px;}
.x74_c00170{left:440.640000px;}
.x93_c00170{left:443.235000px;}
.xf_c00170{left:447.555000px;}
.x7e_c00170{left:450.150000px;}
.x1b_c00170{left:452.730000px;}
.x68_c00170{left:454.470000px;}
.xce_c00170{left:457.050000px;}
.x49_c00170{left:459.645000px;}
.xd0_c00170{left:461.370000px;}
.x1c_c00170{left:463.110000px;}
.xe2_c00170{left:464.835000px;}
.x9a_c00170{left:467.430000px;}
.x69_c00170{left:469.155000px;}
.x37_c00170{left:471.750000px;}
.x5_c00170{left:474.330000px;}
.x75_c00170{left:476.070000px;}
.x3d_c00170{left:481.245000px;}
.xc6_c00170{left:482.970000px;}
.xa3_c00170{left:486.435000px;}
.xed_c00170{left:488.160000px;}
.x1d_c00170{left:490.755000px;}
.x51_c00170{left:492.480000px;}
.x7f_c00170{left:496.800000px;}
.xb0_c00170{left:499.395000px;}
.x2b_c00170{left:501.990000px;}
.x44_c00170{left:503.715000px;}
.x3e_c00170{left:506.310000px;}
.x6_c00170{left:511.485000px;}
.x6e_c00170{left:514.080000px;}
.x8f_c00170{left:515.805000px;}
.xf5_c00170{left:518.400000px;}
.xb1_c00170{left:520.995000px;}
.x94_c00170{left:522.720000px;}
.xca_c00170{left:524.445000px;}
.x52_c00170{left:527.910000px;}
.xee_c00170{left:530.490000px;}
.xd1_c00170{left:532.230000px;}
.xdf_c00170{left:533.955000px;}
.x5a_c00170{left:535.680000px;}
.x38_c00170{left:537.405000px;}
.x1e_c00170{left:540.870000px;}
.x6a_c00170{left:542.595000px;}
.x80_c00170{left:545.190000px;}
.xc0_c00170{left:546.915000px;}
.xaa_c00170{left:549.510000px;}
.xf3_c00170{left:551.235000px;}
.x10_c00170{left:552.960000px;}
.x95_c00170{left:554.685000px;}
.x81_c00170{left:556.410000px;}
.xb9_c00170{left:558.150000px;}
.x2c_c00170{left:560.730000px;}
.xf8_c00170{left:562.470000px;}
.x62_c00170{left:564.195000px;}
.x53_c00170{left:566.790000px;}
.x90_c00170{left:571.110000px;}
.xc7_c00170{left:573.690000px;}
.x9f_c00170{left:575.430000px;}
.x3f_c00170{left:578.880000px;}
.xf6_c00170{left:580.605000px;}
.x39_c00170{left:582.330000px;}
.x89_c00170{left:584.925000px;}
.xe0_c00170{left:587.520000px;}
.xeb_c00170{left:589.245000px;}
.xbc_c00170{left:591.840000px;}
.x2d_c00170{left:594.435000px;}
.x11_c00170{left:597.030000px;}
.x5b_c00170{left:598.755000px;}
.x7_c00170{left:600.480000px;}
.xef_c00170{left:604.800000px;}
.x1f_c00170{left:606.525000px;}
.x4a_c00170{left:609.120000px;}
.x9b_c00170{left:612.570000px;}
.xe7_c00170{left:614.310000px;}
.xc4_c00170{left:616.035000px;}
.xb2_c00170{left:617.760000px;}
.x6b_c00170{left:622.080000px;}
.xd5_c00170{left:623.805000px;}
.x76_c00170{left:625.530000px;}
.x96_c00170{left:628.125000px;}
.x6f_c00170{left:630.720000px;}
.xda_c00170{left:632.445000px;}
.x45_c00170{left:635.040000px;}
.x5c_c00170{left:640.230000px;}
.xec_c00170{left:641.955000px;}
.x8_c00170{left:644.550000px;}
.xcf_c00170{left:647.130000px;}
.xc8_c00170{left:651.450000px;}
.xe3_c00170{left:653.190000px;}
.x40_c00170{left:654.915000px;}
.x77_c00170{left:657.510000px;}
.x70_c00170{left:659.235000px;}
.x4b_c00170{left:661.830000px;}
.xe8_c00170{left:663.555000px;}
.x12_c00170{left:665.280000px;}
.xc1_c00170{left:670.470000px;}
.x2e_c00170{left:672.195000px;}
.x20_c00170{left:674.790000px;}
.x9c_c00170{left:677.370000px;}
.x63_c00170{left:682.560000px;}
.xa4_c00170{left:685.155000px;}
.x21_c00170{left:686.880000px;}
.xb3_c00170{left:690.330000px;}
.x2f_c00170{left:694.650000px;}
.x71_c00170{left:698.115000px;}
.x46_c00170{left:699.840000px;}
.xd6_c00170{left:701.565000px;}
.xe4_c00170{left:703.290000px;}
.x8a_c00170{left:711.075000px;}
.x97_c00170{left:712.800000px;}
.x41_c00170{left:715.395000px;}
.x13_c00170{left:717.990000px;}
.x64_c00170{left:719.715000px;}
.x5d_c00170{left:721.440000px;}
.x47_c00170{left:724.890000px;}
.xf9_c00170{left:727.485000px;}
.x98_c00170{left:729.210000px;}
.x78_c00170{left:730.950000px;}
.xe9_c00170{left:732.675000px;}
.x4c_c00170{left:735.270000px;}
.x54_c00170{left:738.720000px;}
.x79_c00170{left:741.315000px;}
.x14_c00170{left:743.040000px;}
.xdc_c00170{left:745.635000px;}
.x9d_c00170{left:749.955000px;}
.xe1_c00170{left:751.680000px;}
.xba_c00170{left:753.405000px;}
.xd7_c00170{left:756.000000px;}
.x30_c00170{left:757.725000px;}
.x5e_c00170{left:760.320000px;}
.x91_c00170{left:762.045000px;}
.x22_c00170{left:764.640000px;}
.xab_c00170{left:766.365000px;}
.x7a_c00170{left:768.090000px;}
.xa0_c00170{left:769.830000px;}
.x5f_c00170{left:771.555000px;}
.xd8_c00170{left:774.150000px;}
.x82_c00170{left:778.470000px;}
.x9_c00170{left:780.195000px;}
.x72_c00170{left:781.920000px;}
.xdb_c00170{left:783.645000px;}
.x23_c00170{left:788.835000px;}
.x42_c00170{left:790.560000px;}
.xbf_c00170{left:793.155000px;}
.x24_c00170{left:794.880000px;}
.x60_c00170{left:797.475000px;}
.xb5_c00170{left:800.070000px;}
.x6c_c00170{left:802.650000px;}
.x25_c00170{left:804.390000px;}
.x65_c00170{left:806.970000px;}
.xd2_c00170{left:810.435000px;}
.xc9_c00170{left:813.885000px;}
.x83_c00170{left:817.350000px;}
.xdd_c00170{left:819.930000px;}
.x31_c00170{left:823.395000px;}
.xf0_c00170{left:825.120000px;}
.x3a_c00170{left:829.440000px;}
.x15_c00170{left:831.165000px;}
.xac_c00170{left:834.630000px;}
.x8b_c00170{left:836.355000px;}
.xa5_c00170{left:838.080000px;}
.xd9_c00170{left:840.675000px;}
.xbd_c00170{left:843.270000px;}
.x84_c00170{left:845.850000px;}
.x26_c00170{left:847.590000px;}
.x7b_c00170{left:850.170000px;}
.x55_c00170{left:851.910000px;}
.x32_c00170{left:856.230000px;}
.x6d_c00170{left:881.280000px;}
.x33_c00170{left:886.470000px;}
.xfa_c00170{left:995.325000px;}
.xfb_c00170{left:1006.560000px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls0_c00170{letter-spacing:0.000000pt;}
.ws0_c00170{word-spacing:0.000000pt;}
.fs5_c00170{font-size:3.072000pt;}
.fs23_c00170{font-size:5.333333pt;}
.fs0_c00170{font-size:6.133333pt;}
.fs6_c00170{font-size:9.226667pt;}
.fs2_c00170{font-size:12.266667pt;}
.fs4_c00170{font-size:15.360000pt;}
.fs1_c00170{font-size:18.453333pt;}
.fs21_c00170{font-size:21.493333pt;}
.fs13_c00170{font-size:24.586667pt;}
.fs10_c00170{font-size:27.626667pt;}
.fs20_c00170{font-size:30.720000pt;}
.fs22_c00170{font-size:33.813333pt;}
.fs14_c00170{font-size:36.853333pt;}
.fs1d_c00170{font-size:39.946667pt;}
.fs17_c00170{font-size:42.986667pt;}
.fs1e_c00170{font-size:46.080000pt;}
.fs16_c00170{font-size:49.173333pt;}
.fs3_c00170{font-size:52.213333pt;}
.fs1f_c00170{font-size:55.306667pt;}
.fsc_c00170{font-size:58.346667pt;}
.fs19_c00170{font-size:61.440000pt;}
.fs1a_c00170{font-size:64.533333pt;}
.fs18_c00170{font-size:67.573333pt;}
.fs7_c00170{font-size:70.666667pt;}
.fs15_c00170{font-size:73.706667pt;}
.fs9_c00170{font-size:76.800000pt;}
.fs8_c00170{font-size:79.893333pt;}
.fsf_c00170{font-size:82.933333pt;}
.fs11_c00170{font-size:86.026667pt;}
.fsb_c00170{font-size:89.066667pt;}
.fs12_c00170{font-size:92.160000pt;}
.fse_c00170{font-size:95.253333pt;}
.fsa_c00170{font-size:98.293333pt;}
.fs24_c00170{font-size:101.386667pt;}
.fsd_c00170{font-size:104.426667pt;}
.fs1b_c00170{font-size:107.520000pt;}
.fs1c_c00170{font-size:110.613333pt;}
.y0_c00170{bottom:0.000000pt;}
.y179_c00170{bottom:197.373333pt;}
.y176_c00170{bottom:199.680000pt;}
.y177_c00170{bottom:200.453333pt;}
.y178_c00170{bottom:201.986667pt;}
.y175_c00170{bottom:202.746667pt;}
.y172_c00170{bottom:203.520000pt;}
.y173_c00170{bottom:204.293333pt;}
.y174_c00170{bottom:205.053333pt;}
.y171_c00170{bottom:206.586667pt;}
.y170_c00170{bottom:220.413333pt;}
.y16f_c00170{bottom:224.253333pt;}
.y16d_c00170{bottom:225.786667pt;}
.y16c_c00170{bottom:227.333333pt;}
.y16e_c00170{bottom:228.093333pt;}
.y16b_c00170{bottom:243.453333pt;}
.y16a_c00170{bottom:244.226667pt;}
.y169_c00170{bottom:246.533333pt;}
.y167_c00170{bottom:248.066667pt;}
.y165_c00170{bottom:248.826667pt;}
.y166_c00170{bottom:249.600000pt;}
.y164_c00170{bottom:250.373333pt;}
.y168_c00170{bottom:252.666667pt;}
.y163_c00170{bottom:253.440000pt;}
.y160_c00170{bottom:267.266667pt;}
.y162_c00170{bottom:269.573333pt;}
.y15e_c00170{bottom:270.333333pt;}
.y159_c00170{bottom:271.866667pt;}
.y161_c00170{bottom:272.640000pt;}
.y15f_c00170{bottom:274.173333pt;}
.y15c_c00170{bottom:274.946667pt;}
.y15a_c00170{bottom:276.480000pt;}
.y15d_c00170{bottom:277.253333pt;}
.y15b_c00170{bottom:278.013333pt;}
.y158_c00170{bottom:288.000000pt;}
.y154_c00170{bottom:292.613333pt;}
.y153_c00170{bottom:293.373333pt;}
.y152_c00170{bottom:294.906667pt;}
.y157_c00170{bottom:295.680000pt;}
.y155_c00170{bottom:296.453333pt;}
.y156_c00170{bottom:298.746667pt;}
.y151_c00170{bottom:301.826667pt;}
.y14e_c00170{bottom:314.106667pt;}
.y14d_c00170{bottom:315.653333pt;}
.y14c_c00170{bottom:316.413333pt;}
.y150_c00170{bottom:317.186667pt;}
.y14f_c00170{bottom:318.720000pt;}
.y14b_c00170{bottom:332.546667pt;}
.y149_c00170{bottom:334.853333pt;}
.y148_c00170{bottom:337.146667pt;}
.y144_c00170{bottom:338.693333pt;}
.y14a_c00170{bottom:339.453333pt;}
.y142_c00170{bottom:340.226667pt;}
.y147_c00170{bottom:340.986667pt;}
.y146_c00170{bottom:343.293333pt;}
.y145_c00170{bottom:344.826667pt;}
.y143_c00170{bottom:345.600000pt;}
.y140_c00170{bottom:355.586667pt;}
.y13f_c00170{bottom:357.120000pt;}
.y13e_c00170{bottom:358.653333pt;}
.y13d_c00170{bottom:360.186667pt;}
.y141_c00170{bottom:362.493333pt;}
.y13c_c00170{bottom:367.866667pt;}
.y13b_c00170{bottom:377.853333pt;}
.y13a_c00170{bottom:380.933333pt;}
.y136_c00170{bottom:384.773333pt;}
.y137_c00170{bottom:385.533333pt;}
.y139_c00170{bottom:386.306667pt;}
.y134_c00170{bottom:387.066667pt;}
.y138_c00170{bottom:389.373333pt;}
.y135_c00170{bottom:390.146667pt;}
.y133_c00170{bottom:390.906667pt;}
.y130_c00170{bottom:403.200000pt;}
.y12e_c00170{bottom:404.733333pt;}
.y12d_c00170{bottom:405.506667pt;}
.y132_c00170{bottom:406.266667pt;}
.y131_c00170{bottom:407.813333pt;}
.y12f_c00170{bottom:410.880000pt;}
.y12b_c00170{bottom:411.653333pt;}
.y12c_c00170{bottom:412.413333pt;}
.y12a_c00170{bottom:423.933333pt;}
.y129_c00170{bottom:424.706667pt;}
.y127_c00170{bottom:426.240000pt;}
.y126_c00170{bottom:427.773333pt;}
.y125_c00170{bottom:428.546667pt;}
.y128_c00170{bottom:432.386667pt;}
.y124_c00170{bottom:435.453333pt;}
.y120_c00170{bottom:450.053333pt;}
.y123_c00170{bottom:450.813333pt;}
.y122_c00170{bottom:452.346667pt;}
.y121_c00170{bottom:453.120000pt;}
.y17b_c00170{bottom:463.866667pt;}
.y17a_c00170{bottom:466.173333pt;}
.y11f_c00170{bottom:466.946667pt;}
.y119_c00170{bottom:471.546667pt;}
.y11c_c00170{bottom:472.320000pt;}
.y118_c00170{bottom:473.093333pt;}
.y11e_c00170{bottom:474.626667pt;}
.y11d_c00170{bottom:475.386667pt;}
.y11b_c00170{bottom:476.933333pt;}
.y11a_c00170{bottom:479.226667pt;}
.y117_c00170{bottom:489.213333pt;}
.y116_c00170{bottom:491.520000pt;}
.y114_c00170{bottom:493.826667pt;}
.y115_c00170{bottom:494.586667pt;}
.y112_c00170{bottom:495.360000pt;}
.y113_c00170{bottom:501.506667pt;}
.y111_c00170{bottom:512.253333pt;}
.y110_c00170{bottom:514.560000pt;}
.y10e_c00170{bottom:516.093333pt;}
.y10d_c00170{bottom:517.626667pt;}
.y10f_c00170{bottom:519.173333pt;}
.y10c_c00170{bottom:520.706667pt;}
.y10b_c00170{bottom:521.466667pt;}
.y10a_c00170{bottom:523.773333pt;}
.y108_c00170{bottom:534.533333pt;}
.y109_c00170{bottom:535.293333pt;}
.y106_c00170{bottom:536.066667pt;}
.y103_c00170{bottom:539.133333pt;}
.y104_c00170{bottom:539.906667pt;}
.y107_c00170{bottom:541.440000pt;}
.y105_c00170{bottom:545.280000pt;}
.y102_c00170{bottom:557.573333pt;}
.y100_c00170{bottom:559.106667pt;}
.yfd_c00170{bottom:561.413333pt;}
.yfb_c00170{bottom:562.173333pt;}
.yff_c00170{bottom:562.946667pt;}
.y101_c00170{bottom:565.253333pt;}
.yfe_c00170{bottom:566.013333pt;}
.yfc_c00170{bottom:567.546667pt;}
.yf9_c00170{bottom:579.066667pt;}
.yf8_c00170{bottom:581.373333pt;}
.yf3_c00170{bottom:583.680000pt;}
.yf4_c00170{bottom:584.453333pt;}
.yfa_c00170{bottom:585.213333pt;}
.yf7_c00170{bottom:586.746667pt;}
.yf6_c00170{bottom:589.053333pt;}
.yf5_c00170{bottom:589.826667pt;}
.yf2_c00170{bottom:602.106667pt;}
.yf1_c00170{bottom:602.880000pt;}
.yec_c00170{bottom:604.413333pt;}
.yf0_c00170{bottom:605.186667pt;}
.yef_c00170{bottom:607.493333pt;}
.yee_c00170{bottom:609.786667pt;}
.yed_c00170{bottom:610.560000pt;}
.yeb_c00170{bottom:611.333333pt;}
.ye6_c00170{bottom:625.146667pt;}
.ye7_c00170{bottom:625.920000pt;}
.ye5_c00170{bottom:627.453333pt;}
.yea_c00170{bottom:628.226667pt;}
.ye8_c00170{bottom:628.986667pt;}
.ye9_c00170{bottom:630.533333pt;}
.ye2_c00170{bottom:641.280000pt;}
.ye0_c00170{bottom:642.813333pt;}
.ydc_c00170{bottom:643.586667pt;}
.ye3_c00170{bottom:645.120000pt;}
.ydb_c00170{bottom:645.893333pt;}
.ydf_c00170{bottom:646.653333pt;}
.yde_c00170{bottom:647.426667pt;}
.ye4_c00170{bottom:649.733333pt;}
.ydd_c00170{bottom:651.266667pt;}
.ye1_c00170{bottom:652.026667pt;}
.yda_c00170{bottom:652.800000pt;}
.yd8_c00170{bottom:667.386667pt;}
.yd7_c00170{bottom:668.160000pt;}
.yd9_c00170{bottom:669.693333pt;}
.yd3_c00170{bottom:670.466667pt;}
.yd5_c00170{bottom:671.226667pt;}
.yd6_c00170{bottom:673.533333pt;}
.yd4_c00170{bottom:674.306667pt;}
.yd2_c00170{bottom:677.373333pt;}
.yd1_c00170{bottom:678.906667pt;}
.yd0_c00170{bottom:688.893333pt;}
.ycc_c00170{bottom:692.733333pt;}
.ycb_c00170{bottom:693.506667pt;}
.ycf_c00170{bottom:695.040000pt;}
.yce_c00170{bottom:696.573333pt;}
.ycd_c00170{bottom:697.346667pt;}
.yc8_c00170{bottom:712.706667pt;}
.yc9_c00170{bottom:713.466667pt;}
.yc3_c00170{bottom:714.240000pt;}
.yc5_c00170{bottom:715.013333pt;}
.yc6_c00170{bottom:715.773333pt;}
.yca_c00170{bottom:716.546667pt;}
.yc7_c00170{bottom:718.080000pt;}
.yc2_c00170{bottom:718.853333pt;}
.yc4_c00170{bottom:720.386667pt;}
.yc1_c00170{bottom:724.226667pt;}
.yc0_c00170{bottom:731.133333pt;}
.ybf_c00170{bottom:733.440000pt;}
.ybe_c00170{bottom:734.213333pt;}
.yba_c00170{bottom:734.973333pt;}
.yb9_c00170{bottom:736.506667pt;}
.ybd_c00170{bottom:738.813333pt;}
.ybc_c00170{bottom:739.586667pt;}
.yb8_c00170{bottom:740.346667pt;}
.ybb_c00170{bottom:741.893333pt;}
.yb6_c00170{bottom:742.653333pt;}
.yb5_c00170{bottom:755.706667pt;}
.yb2_c00170{bottom:756.480000pt;}
.yb7_c00170{bottom:757.253333pt;}
.yb1_c00170{bottom:758.013333pt;}
.yad_c00170{bottom:758.786667pt;}
.yae_c00170{bottom:761.093333pt;}
.yac_c00170{bottom:761.853333pt;}
.yb4_c00170{bottom:762.626667pt;}
.yb3_c00170{bottom:763.386667pt;}
.yb0_c00170{bottom:764.160000pt;}
.yaf_c00170{bottom:764.933333pt;}
.yab_c00170{bottom:777.213333pt;}
.ya9_c00170{bottom:777.986667pt;}
.ya5_c00170{bottom:779.520000pt;}
.ya4_c00170{bottom:780.293333pt;}
.ya7_c00170{bottom:783.360000pt;}
.yaa_c00170{bottom:784.893333pt;}
.ya8_c00170{bottom:785.666667pt;}
.ya3_c00170{bottom:787.200000pt;}
.ya6_c00170{bottom:795.653333pt;}
.ya0_c00170{bottom:801.786667pt;}
.y9d_c00170{bottom:802.560000pt;}
.y9b_c00170{bottom:803.333333pt;}
.ya1_c00170{bottom:804.093333pt;}
.y9e_c00170{bottom:805.626667pt;}
.ya2_c00170{bottom:807.173333pt;}
.y9f_c00170{bottom:808.706667pt;}
.y9c_c00170{bottom:809.466667pt;}
.y9a_c00170{bottom:822.533333pt;}
.y98_c00170{bottom:823.293333pt;}
.y94_c00170{bottom:824.066667pt;}
.y92_c00170{bottom:824.826667pt;}
.y93_c00170{bottom:826.373333pt;}
.y96_c00170{bottom:827.133333pt;}
.y99_c00170{bottom:827.906667pt;}
.y95_c00170{bottom:828.666667pt;}
.y97_c00170{bottom:830.213333pt;}
.y90_c00170{bottom:830.973333pt;}
.y91_c00170{bottom:832.506667pt;}
.y8f_c00170{bottom:844.026667pt;}
.y8e_c00170{bottom:845.573333pt;}
.y8c_c00170{bottom:847.106667pt;}
.y8b_c00170{bottom:847.866667pt;}
.y8d_c00170{bottom:853.253333pt;}
.y8a_c00170{bottom:854.013333pt;}
.y89_c00170{bottom:866.306667pt;}
.y87_c00170{bottom:867.840000pt;}
.y85_c00170{bottom:868.613333pt;}
.y82_c00170{bottom:869.373333pt;}
.y86_c00170{bottom:870.146667pt;}
.y88_c00170{bottom:873.986667pt;}
.y84_c00170{bottom:874.746667pt;}
.y83_c00170{bottom:875.520000pt;}
.y80_c00170{bottom:889.346667pt;}
.y7d_c00170{bottom:891.653333pt;}
.y81_c00170{bottom:892.413333pt;}
.y7f_c00170{bottom:896.253333pt;}
.y7e_c00170{bottom:897.026667pt;}
.y7c_c00170{bottom:898.560000pt;}
.y7a_c00170{bottom:910.853333pt;}
.y79_c00170{bottom:912.386667pt;}
.y77_c00170{bottom:913.146667pt;}
.y75_c00170{bottom:913.920000pt;}
.y7b_c00170{bottom:916.226667pt;}
.y76_c00170{bottom:917.760000pt;}
.y78_c00170{bottom:920.066667pt;}
.y74_c00170{bottom:920.826667pt;}
.y70_c00170{bottom:931.586667pt;}
.y73_c00170{bottom:933.893333pt;}
.y72_c00170{bottom:934.653333pt;}
.y6b_c00170{bottom:935.426667pt;}
.y6c_c00170{bottom:936.960000pt;}
.y71_c00170{bottom:938.493333pt;}
.y6e_c00170{bottom:940.026667pt;}
.y6d_c00170{bottom:942.333333pt;}
.y6f_c00170{bottom:943.106667pt;}
.y6a_c00170{bottom:943.866667pt;}
.y67_c00170{bottom:956.160000pt;}
.y65_c00170{bottom:958.466667pt;}
.y63_c00170{bottom:959.226667pt;}
.y64_c00170{bottom:961.533333pt;}
.y68_c00170{bottom:962.306667pt;}
.y66_c00170{bottom:963.066667pt;}
.y69_c00170{bottom:970.746667pt;}
.y62_c00170{bottom:976.133333pt;}
.y60_c00170{bottom:978.426667pt;}
.y5b_c00170{bottom:979.200000pt;}
.y61_c00170{bottom:981.506667pt;}
.y5f_c00170{bottom:983.040000pt;}
.y5d_c00170{bottom:983.813333pt;}
.y5a_c00170{bottom:984.573333pt;}
.y5c_c00170{bottom:986.880000pt;}
.y5e_c00170{bottom:987.653333pt;}
.y59_c00170{bottom:999.173333pt;}
.y57_c00170{bottom:999.933333pt;}
.y58_c00170{bottom:1000.706667pt;}
.y55_c00170{bottom:1003.013333pt;}
.y56_c00170{bottom:1003.773333pt;}
.y53_c00170{bottom:1005.306667pt;}
.y54_c00170{bottom:1009.146667pt;}
.y50_c00170{bottom:1022.973333pt;}
.y4f_c00170{bottom:1023.746667pt;}
.y4a_c00170{bottom:1024.506667pt;}
.y4b_c00170{bottom:1025.280000pt;}
.y52_c00170{bottom:1027.586667pt;}
.y51_c00170{bottom:1028.346667pt;}
.y4e_c00170{bottom:1030.653333pt;}
.y4d_c00170{bottom:1031.426667pt;}
.y4c_c00170{bottom:1032.186667pt;}
.y49_c00170{bottom:1044.480000pt;}
.y48_c00170{bottom:1046.786667pt;}
.y47_c00170{bottom:1049.093333pt;}
.y44_c00170{bottom:1051.386667pt;}
.y43_c00170{bottom:1052.933333pt;}
.y46_c00170{bottom:1053.693333pt;}
.y45_c00170{bottom:1054.466667pt;}
.y42_c00170{bottom:1067.520000pt;}
.y40_c00170{bottom:1068.293333pt;}
.y3f_c00170{bottom:1069.053333pt;}
.y41_c00170{bottom:1069.826667pt;}
.y3d_c00170{bottom:1072.133333pt;}
.y3e_c00170{bottom:1075.200000pt;}
.y3c_c00170{bottom:1083.653333pt;}
.y38_c00170{bottom:1085.946667pt;}
.y35_c00170{bottom:1086.720000pt;}
.y39_c00170{bottom:1089.026667pt;}
.y3a_c00170{bottom:1089.786667pt;}
.y34_c00170{bottom:1092.093333pt;}
.y3b_c00170{bottom:1095.173333pt;}
.y37_c00170{bottom:1096.706667pt;}
.y36_c00170{bottom:1098.240000pt;}
.y33_c00170{bottom:1110.533333pt;}
.y31_c00170{bottom:1111.293333pt;}
.y30_c00170{bottom:1112.826667pt;}
.y2e_c00170{bottom:1113.600000pt;}
.y2d_c00170{bottom:1114.373333pt;}
.y32_c00170{bottom:1117.440000pt;}
.y2f_c00170{bottom:1120.506667pt;}
.y2c_c00170{bottom:1132.026667pt;}
.y2b_c00170{bottom:1133.573333pt;}
.y27_c00170{bottom:1135.866667pt;}
.y26_c00170{bottom:1136.640000pt;}
.y28_c00170{bottom:1138.173333pt;}
.y29_c00170{bottom:1141.253333pt;}
.y2a_c00170{bottom:1142.013333pt;}
.y25_c00170{bottom:1143.546667pt;}
.y24_c00170{bottom:1145.853333pt;}
.y23_c00170{bottom:1155.066667pt;}
.y21_c00170{bottom:1155.840000pt;}
.y1e_c00170{bottom:1158.146667pt;}
.y1d_c00170{bottom:1158.906667pt;}
.y22_c00170{bottom:1160.453333pt;}
.y1b_c00170{bottom:1161.986667pt;}
.y20_c00170{bottom:1162.746667pt;}
.y1f_c00170{bottom:1164.293333pt;}
.y1c_c00170{bottom:1165.826667pt;}
.y1a_c00170{bottom:1177.346667pt;}
.y19_c00170{bottom:1179.653333pt;}
.y12_c00170{bottom:1180.413333pt;}
.y18_c00170{bottom:1181.946667pt;}
.y14_c00170{bottom:1183.493333pt;}
.y17_c00170{bottom:1184.253333pt;}
.y11_c00170{bottom:1185.026667pt;}
.y16_c00170{bottom:1185.786667pt;}
.y15_c00170{bottom:1187.333333pt;}
.y13_c00170{bottom:1188.093333pt;}
.y10_c00170{bottom:1195.773333pt;}
.yf_c00170{bottom:1199.613333pt;}
.yd_c00170{bottom:1200.386667pt;}
.yc_c00170{bottom:1201.920000pt;}
.y8_c00170{bottom:1203.453333pt;}
.ye_c00170{bottom:1205.760000pt;}
.y7_c00170{bottom:1207.293333pt;}
.yb_c00170{bottom:1208.826667pt;}
.ya_c00170{bottom:1209.600000pt;}
.y9_c00170{bottom:1210.373333pt;}
.y6_c00170{bottom:1227.266667pt;}
.y5_c00170{bottom:1228.800000pt;}
.y4_c00170{bottom:1231.866667pt;}
.y3_c00170{bottom:1234.946667pt;}
.y1_c00170{bottom:1246.466667pt;}
.y2_c00170{bottom:1248.000000pt;}
.h7_c00170{height:2.764500pt;}
.h25_c00170{height:4.799479pt;}
.h2_c00170{height:5.519401pt;}
.h8_c00170{height:8.303099pt;}
.h4_c00170{height:11.038802pt;}
.h6_c00170{height:13.822500pt;}
.h3_c00170{height:16.606198pt;}
.h23_c00170{height:19.341901pt;}
.h15_c00170{height:22.125599pt;}
.h12_c00170{height:24.861302pt;}
.h22_c00170{height:27.645000pt;}
.h24_c00170{height:30.428698pt;}
.h16_c00170{height:33.164401pt;}
.h1f_c00170{height:35.948099pt;}
.h19_c00170{height:38.683802pt;}
.h20_c00170{height:41.467500pt;}
.h18_c00170{height:44.251198pt;}
.h5_c00170{height:46.986901pt;}
.h21_c00170{height:49.770599pt;}
.he_c00170{height:52.506302pt;}
.h1b_c00170{height:55.290000pt;}
.h1c_c00170{height:58.073698pt;}
.h1a_c00170{height:60.809401pt;}
.h9_c00170{height:63.593099pt;}
.h17_c00170{height:66.328802pt;}
.hb_c00170{height:69.112500pt;}
.ha_c00170{height:71.896198pt;}
.h11_c00170{height:74.631901pt;}
.h13_c00170{height:77.415599pt;}
.hd_c00170{height:80.151302pt;}
.h14_c00170{height:82.935000pt;}
.h10_c00170{height:85.718698pt;}
.hc_c00170{height:88.454401pt;}
.h26_c00170{height:91.238099pt;}
.hf_c00170{height:93.973802pt;}
.h1d_c00170{height:96.757500pt;}
.h1e_c00170{height:99.541198pt;}
.h0_c00170{height:1353.986667pt;}
.h1_c00170{height:1354.000000pt;}
.w0_c00170{width:984.573333pt;}
.w1_c00170{width:984.666667pt;}
.x0_c00170{left:0.000000pt;}
.x16_c00170{left:146.693333pt;}
.xad_c00170{left:155.906667pt;}
.xa6_c00170{left:157.440000pt;}
.x27_c00170{left:158.973333pt;}
.x17_c00170{left:160.506667pt;}
.x1_c00170{left:162.053333pt;}
.xa1_c00170{left:163.586667pt;}
.xa_c00170{left:166.653333pt;}
.x2_c00170{left:175.106667pt;}
.x3_c00170{left:193.533333pt;}
.xae_c00170{left:195.840000pt;}
.xf7_c00170{left:197.373333pt;}
.xb_c00170{left:200.453333pt;}
.xf1_c00170{left:201.986667pt;}
.xd3_c00170{left:203.520000pt;}
.x48_c00170{left:205.053333pt;}
.xb6_c00170{left:207.360000pt;}
.x56_c00170{left:210.426667pt;}
.x87_c00170{left:212.733333pt;}
.x66_c00170{left:214.266667pt;}
.x4_c00170{left:216.573333pt;}
.x73_c00170{left:222.720000pt;}
.xa7_c00170{left:231.173333pt;}
.xaf_c00170{left:232.706667pt;}
.x92_c00170{left:234.240000pt;}
.xe5_c00170{left:235.773333pt;}
.x28_c00170{left:242.693333pt;}
.xcb_c00170{left:244.986667pt;}
.x67_c00170{left:248.066667pt;}
.xb7_c00170{left:251.906667pt;}
.x8c_c00170{left:253.440000pt;}
.x34_c00170{left:255.746667pt;}
.x18_c00170{left:258.053333pt;}
.x85_c00170{left:261.893333pt;}
.x8d_c00170{left:264.960000pt;}
.x99_c00170{left:268.800000pt;}
.x4d_c00170{left:271.106667pt;}
.x57_c00170{left:275.706667pt;}
.x19_c00170{left:279.546667pt;}
.xc_c00170{left:284.160000pt;}
.x4e_c00170{left:288.000000pt;}
.x8e_c00170{left:291.840000pt;}
.x35_c00170{left:294.146667pt;}
.xde_c00170{left:296.453333pt;}
.xb8_c00170{left:301.826667pt;}
.x58_c00170{left:304.133333pt;}
.xb4_c00170{left:306.426667pt;}
.xbe_c00170{left:308.733333pt;}
.xf2_c00170{left:311.040000pt;}
.x36_c00170{left:315.653333pt;}
.xa2_c00170{left:317.186667pt;}
.xc5_c00170{left:318.720000pt;}
.x3b_c00170{left:321.786667pt;}
.x1a_c00170{left:324.093333pt;}
.x88_c00170{left:327.933333pt;}
.xc2_c00170{left:331.773333pt;}
.xd_c00170{left:334.080000pt;}
.x7c_c00170{left:337.920000pt;}
.xc3_c00170{left:339.453333pt;}
.xbb_c00170{left:343.293333pt;}
.x4f_c00170{left:344.826667pt;}
.xe6_c00170{left:347.133333pt;}
.x7d_c00170{left:348.666667pt;}
.xea_c00170{left:350.213333pt;}
.x59_c00170{left:351.746667pt;}
.x50_c00170{left:353.280000pt;}
.xcc_c00170{left:355.586667pt;}
.x29_c00170{left:357.120000pt;}
.xa8_c00170{left:359.426667pt;}
.x43_c00170{left:364.026667pt;}
.xa9_c00170{left:366.333333pt;}
.x9e_c00170{left:369.413333pt;}
.xe_c00170{left:372.480000pt;}
.xd4_c00170{left:374.786667pt;}
.x3c_c00170{left:377.853333pt;}
.xf4_c00170{left:380.160000pt;}
.x86_c00170{left:381.693333pt;}
.xcd_c00170{left:384.000000pt;}
.x2a_c00170{left:385.533333pt;}
.x61_c00170{left:387.840000pt;}
.x74_c00170{left:391.680000pt;}
.x93_c00170{left:393.986667pt;}
.xf_c00170{left:397.826667pt;}
.x7e_c00170{left:400.133333pt;}
.x1b_c00170{left:402.426667pt;}
.x68_c00170{left:403.973333pt;}
.xce_c00170{left:406.266667pt;}
.x49_c00170{left:408.573333pt;}
.xd0_c00170{left:410.106667pt;}
.x1c_c00170{left:411.653333pt;}
.xe2_c00170{left:413.186667pt;}
.x9a_c00170{left:415.493333pt;}
.x69_c00170{left:417.026667pt;}
.x37_c00170{left:419.333333pt;}
.x5_c00170{left:421.626667pt;}
.x75_c00170{left:423.173333pt;}
.x3d_c00170{left:427.773333pt;}
.xc6_c00170{left:429.306667pt;}
.xa3_c00170{left:432.386667pt;}
.xed_c00170{left:433.920000pt;}
.x1d_c00170{left:436.226667pt;}
.x51_c00170{left:437.760000pt;}
.x7f_c00170{left:441.600000pt;}
.xb0_c00170{left:443.906667pt;}
.x2b_c00170{left:446.213333pt;}
.x44_c00170{left:447.746667pt;}
.x3e_c00170{left:450.053333pt;}
.x6_c00170{left:454.653333pt;}
.x6e_c00170{left:456.960000pt;}
.x8f_c00170{left:458.493333pt;}
.xf5_c00170{left:460.800000pt;}
.xb1_c00170{left:463.106667pt;}
.x94_c00170{left:464.640000pt;}
.xca_c00170{left:466.173333pt;}
.x52_c00170{left:469.253333pt;}
.xee_c00170{left:471.546667pt;}
.xd1_c00170{left:473.093333pt;}
.xdf_c00170{left:474.626667pt;}
.x5a_c00170{left:476.160000pt;}
.x38_c00170{left:477.693333pt;}
.x1e_c00170{left:480.773333pt;}
.x6a_c00170{left:482.306667pt;}
.x80_c00170{left:484.613333pt;}
.xc0_c00170{left:486.146667pt;}
.xaa_c00170{left:488.453333pt;}
.xf3_c00170{left:489.986667pt;}
.x10_c00170{left:491.520000pt;}
.x95_c00170{left:493.053333pt;}
.x81_c00170{left:494.586667pt;}
.xb9_c00170{left:496.133333pt;}
.x2c_c00170{left:498.426667pt;}
.xf8_c00170{left:499.973333pt;}
.x62_c00170{left:501.506667pt;}
.x53_c00170{left:503.813333pt;}
.x90_c00170{left:507.653333pt;}
.xc7_c00170{left:509.946667pt;}
.x9f_c00170{left:511.493333pt;}
.x3f_c00170{left:514.560000pt;}
.xf6_c00170{left:516.093333pt;}
.x39_c00170{left:517.626667pt;}
.x89_c00170{left:519.933333pt;}
.xe0_c00170{left:522.240000pt;}
.xeb_c00170{left:523.773333pt;}
.xbc_c00170{left:526.080000pt;}
.x2d_c00170{left:528.386667pt;}
.x11_c00170{left:530.693333pt;}
.x5b_c00170{left:532.226667pt;}
.x7_c00170{left:533.760000pt;}
.xef_c00170{left:537.600000pt;}
.x1f_c00170{left:539.133333pt;}
.x4a_c00170{left:541.440000pt;}
.x9b_c00170{left:544.506667pt;}
.xe7_c00170{left:546.053333pt;}
.xc4_c00170{left:547.586667pt;}
.xb2_c00170{left:549.120000pt;}
.x6b_c00170{left:552.960000pt;}
.xd5_c00170{left:554.493333pt;}
.x76_c00170{left:556.026667pt;}
.x96_c00170{left:558.333333pt;}
.x6f_c00170{left:560.640000pt;}
.xda_c00170{left:562.173333pt;}
.x45_c00170{left:564.480000pt;}
.x5c_c00170{left:569.093333pt;}
.xec_c00170{left:570.626667pt;}
.x8_c00170{left:572.933333pt;}
.xcf_c00170{left:575.226667pt;}
.xc8_c00170{left:579.066667pt;}
.xe3_c00170{left:580.613333pt;}
.x40_c00170{left:582.146667pt;}
.x77_c00170{left:584.453333pt;}
.x70_c00170{left:585.986667pt;}
.x4b_c00170{left:588.293333pt;}
.xe8_c00170{left:589.826667pt;}
.x12_c00170{left:591.360000pt;}
.xc1_c00170{left:595.973333pt;}
.x2e_c00170{left:597.506667pt;}
.x20_c00170{left:599.813333pt;}
.x9c_c00170{left:602.106667pt;}
.x63_c00170{left:606.720000pt;}
.xa4_c00170{left:609.026667pt;}
.x21_c00170{left:610.560000pt;}
.xb3_c00170{left:613.626667pt;}
.x2f_c00170{left:617.466667pt;}
.x71_c00170{left:620.546667pt;}
.x46_c00170{left:622.080000pt;}
.xd6_c00170{left:623.613333pt;}
.xe4_c00170{left:625.146667pt;}
.x8a_c00170{left:632.066667pt;}
.x97_c00170{left:633.600000pt;}
.x41_c00170{left:635.906667pt;}
.x13_c00170{left:638.213333pt;}
.x64_c00170{left:639.746667pt;}
.x5d_c00170{left:641.280000pt;}
.x47_c00170{left:644.346667pt;}
.xf9_c00170{left:646.653333pt;}
.x98_c00170{left:648.186667pt;}
.x78_c00170{left:649.733333pt;}
.xe9_c00170{left:651.266667pt;}
.x4c_c00170{left:653.573333pt;}
.x54_c00170{left:656.640000pt;}
.x79_c00170{left:658.946667pt;}
.x14_c00170{left:660.480000pt;}
.xdc_c00170{left:662.786667pt;}
.x9d_c00170{left:666.626667pt;}
.xe1_c00170{left:668.160000pt;}
.xba_c00170{left:669.693333pt;}
.xd7_c00170{left:672.000000pt;}
.x30_c00170{left:673.533333pt;}
.x5e_c00170{left:675.840000pt;}
.x91_c00170{left:677.373333pt;}
.x22_c00170{left:679.680000pt;}
.xab_c00170{left:681.213333pt;}
.x7a_c00170{left:682.746667pt;}
.xa0_c00170{left:684.293333pt;}
.x5f_c00170{left:685.826667pt;}
.xd8_c00170{left:688.133333pt;}
.x82_c00170{left:691.973333pt;}
.x9_c00170{left:693.506667pt;}
.x72_c00170{left:695.040000pt;}
.xdb_c00170{left:696.573333pt;}
.x23_c00170{left:701.186667pt;}
.x42_c00170{left:702.720000pt;}
.xbf_c00170{left:705.026667pt;}
.x24_c00170{left:706.560000pt;}
.x60_c00170{left:708.866667pt;}
.xb5_c00170{left:711.173333pt;}
.x6c_c00170{left:713.466667pt;}
.x25_c00170{left:715.013333pt;}
.x65_c00170{left:717.306667pt;}
.xd2_c00170{left:720.386667pt;}
.xc9_c00170{left:723.453333pt;}
.x83_c00170{left:726.533333pt;}
.xdd_c00170{left:728.826667pt;}
.x31_c00170{left:731.906667pt;}
.xf0_c00170{left:733.440000pt;}
.x3a_c00170{left:737.280000pt;}
.x15_c00170{left:738.813333pt;}
.xac_c00170{left:741.893333pt;}
.x8b_c00170{left:743.426667pt;}
.xa5_c00170{left:744.960000pt;}
.xd9_c00170{left:747.266667pt;}
.xbd_c00170{left:749.573333pt;}
.x84_c00170{left:751.866667pt;}
.x26_c00170{left:753.413333pt;}
.x7b_c00170{left:755.706667pt;}
.x55_c00170{left:757.253333pt;}
.x32_c00170{left:761.093333pt;}
.x6d_c00170{left:783.360000pt;}
.x33_c00170{left:787.973333pt;}
.xfa_c00170{left:884.733333pt;}
.xfb_c00170{left:894.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_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_2b451988246b613615212ecd.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.109863;font-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_c00171{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m31_c00171{transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00171{transform:matrix(0.075050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075050,0.000000,0.000000,0.250000,0,0);}
.m2e_c00171{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);}
.m1b0_c00171{transform:matrix(0.085700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085700,0.000000,0.000000,0.250000,0,0);}
.m112_c00171{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m16_c00171{transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);}
.m102_c00171{transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);}
.m30_c00171{transform:matrix(0.102350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102350,0.000000,0.000000,0.250000,0,0);}
.m19e_c00171{transform:matrix(0.104975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104975,0.000000,0.000000,0.250000,0,0);}
.m13_c00171{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m2d_c00171{transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);}
.m18a_c00171{transform:matrix(0.110050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110050,0.000000,0.000000,0.250000,0,0);}
.m19a_c00171{transform:matrix(0.111375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111375,0.000000,0.000000,0.250000,0,0);}
.m114_c00171{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.m2a_c00171{transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);}
.m110_c00171{transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);}
.m11e_c00171{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00171{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m107_c00171{transform:matrix(0.125400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125400,0.000000,0.000000,0.250000,0,0);}
.m119_c00171{transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);}
.mab_c00171{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);}
.m45_c00171{transform:matrix(0.127825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127825,0.000000,0.000000,0.250000,0,0);}
.m3_c00171{transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);}
.m19c_c00171{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m50_c00171{transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);}
.m29_c00171{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);}
.m37_c00171{transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);}
.m115_c00171{transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);}
.mae_c00171{transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);}
.mbc_c00171{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);}
.m43_c00171{transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);}
.m17d_c00171{transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);}
.m129_c00171{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);}
.m1a9_c00171{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00171{transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);}
.m1d_c00171{transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);}
.m7e_c00171{transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);}
.m1b_c00171{transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00171{transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);}
.m196_c00171{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m13b_c00171{transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);}
.m121_c00171{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);}
.m1ab_c00171{transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);}
.mc6_c00171{transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);}
.m47_c00171{transform:matrix(0.142775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142775,0.000000,0.000000,0.250000,0,0);}
.mcd_c00171{transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);}
.m0_c00171{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00171{transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);}
.md7_c00171{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);}
.m105_c00171{transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);}
.m88_c00171{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);}
.m116_c00171{transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);}
.m57_c00171{transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);}
.m12e_c00171{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.me0_c00171{transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);}
.m139_c00171{transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);}
.m189_c00171{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.m16f_c00171{transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);}
.mcc_c00171{transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);}
.mc1_c00171{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.m1a_c00171{transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);}
.m26_c00171{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);}
.m54_c00171{transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);}
.m17_c00171{transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);}
.maf_c00171{transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);}
.mdc_c00171{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);}
.m10b_c00171{transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);}
.m161_c00171{transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);}
.m153_c00171{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00171{transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);}
.m99_c00171{transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);}
.m75_c00171{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.m44_c00171{transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00171{transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);}
.m11a_c00171{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.md3_c00171{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m8c_c00171{transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);}
.m36_c00171{transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);}
.m5f_c00171{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.m4d_c00171{transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);}
.m20_c00171{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m74_c00171{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.md2_c00171{transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);}
.m14_c00171{transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);}
.m101_c00171{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);}
.mde_c00171{transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);}
.m163_c00171{transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);}
.m16b_c00171{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m95_c00171{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00171{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.mcb_c00171{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m142_c00171{transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);}
.mb6_c00171{transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);}
.mfa_c00171{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.m4c_c00171{transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);}
.m55_c00171{transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);}
.m14a_c00171{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m156_c00171{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m28_c00171{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);}
.m1b3_c00171{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.m15d_c00171{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.mc9_c00171{transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);}
.mf2_c00171{transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);}
.m3c_c00171{transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);}
.mf6_c00171{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);}
.mba_c00171{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);}
.m162_c00171{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.mbb_c00171{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.m135_c00171{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m18d_c00171{transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);}
.m12c_c00171{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.mc_c00171{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.m160_c00171{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m108_c00171{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m65_c00171{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);}
.m195_c00171{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.mea_c00171{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m147_c00171{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);}
.ma3_c00171{transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);}
.mc3_c00171{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);}
.m169_c00171{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);}
.m10f_c00171{transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);}
.mf9_c00171{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);}
.m17e_c00171{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);}
.m93_c00171{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.mdb_c00171{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);}
.m15f_c00171{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.ma8_c00171{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.mec_c00171{transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);}
.m180_c00171{transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);}
.m176_c00171{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m7b_c00171{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.meb_c00171{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m35_c00171{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.mdd_c00171{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);}
.mee_c00171{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m12b_c00171{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m1af_c00171{transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);}
.m146_c00171{transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);}
.m17f_c00171{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.md0_c00171{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m131_c00171{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.m51_c00171{transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);}
.m134_c00171{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mb4_c00171{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.mbe_c00171{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m14e_c00171{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.m187_c00171{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);}
.m15_c00171{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);}
.m24_c00171{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);}
.m6f_c00171{transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);}
.m188_c00171{transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);}
.m12f_c00171{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m9a_c00171{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);}
.m6a_c00171{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);}
.m14d_c00171{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m15a_c00171{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.m87_c00171{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m10d_c00171{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m154_c00171{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m152_c00171{transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);}
.m144_c00171{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.m19f_c00171{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m82_c00171{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);}
.md6_c00171{transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00171{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.mc0_c00171{transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);}
.med_c00171{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);}
.ma6_c00171{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m19d_c00171{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.mc2_c00171{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.mac_c00171{transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);}
.m11d_c00171{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);}
.m5d_c00171{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.m111_c00171{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m117_c00171{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);}
.me6_c00171{transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);}
.m186_c00171{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m2f_c00171{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.m41_c00171{transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);}
.mda_c00171{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m192_c00171{transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);}
.m96_c00171{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);}
.mf1_c00171{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00171{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);}
.m15c_c00171{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m16d_c00171{transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);}
.m10e_c00171{transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);}
.m174_c00171{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m159_c00171{transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);}
.m66_c00171{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.m199_c00171{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m8a_c00171{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m125_c00171{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m9e_c00171{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m173_c00171{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.m63_c00171{transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);}
.m128_c00171{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m179_c00171{transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);}
.mb3_c00171{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);}
.m39_c00171{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.m140_c00171{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.m151_c00171{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);}
.m22_c00171{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.me9_c00171{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.m2c_c00171{transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);}
.m4b_c00171{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);}
.m42_c00171{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);}
.m148_c00171{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.md1_c00171{transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);}
.m190_c00171{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);}
.m7c_c00171{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.ma7_c00171{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);}
.mb8_c00171{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m109_c00171{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);}
.me3_c00171{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.mce_c00171{transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);}
.m166_c00171{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.m13d_c00171{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.m8e_c00171{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m23_c00171{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.ma0_c00171{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);}
.m181_c00171{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);}
.md9_c00171{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);}
.mfb_c00171{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.me5_c00171{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);}
.m3e_c00171{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00171{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);}
.m165_c00171{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.m73_c00171{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);}
.mef_c00171{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);}
.me2_c00171{transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);}
.m158_c00171{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m70_c00171{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.ma2_c00171{transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);}
.mf3_c00171{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);}
.m12_c00171{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.m17c_c00171{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m61_c00171{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.m11c_c00171{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);}
.maa_c00171{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);}
.m198_c00171{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.m149_c00171{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);}
.mcf_c00171{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);}
.m1a2_c00171{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.m13c_c00171{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);}
.m40_c00171{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.m15e_c00171{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);}
.mb7_c00171{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);}
.m17b_c00171{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);}
.m132_c00171{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.m6d_c00171{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.md8_c00171{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);}
.m7d_c00171{transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);}
.m141_c00171{transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);}
.m97_c00171{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m81_c00171{transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);}
.m145_c00171{transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);}
.ma9_c00171{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.mfd_c00171{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m62_c00171{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m16e_c00171{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.mf7_c00171{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.m10c_c00171{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);}
.m7a_c00171{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);}
.m194_c00171{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.mfc_c00171{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m27_c00171{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m14c_c00171{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.m78_c00171{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);}
.m58_c00171{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m94_c00171{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m167_c00171{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m79_c00171{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m9f_c00171{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);}
.m178_c00171{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);}
.m6c_c00171{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.me4_c00171{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.m8f_c00171{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m46_c00171{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.m53_c00171{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m122_c00171{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);}
.m12d_c00171{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m197_c00171{transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);}
.m14f_c00171{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);}
.m172_c00171{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);}
.m143_c00171{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.mbf_c00171{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m5c_c00171{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);}
.m177_c00171{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);}
.mb2_c00171{transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);}
.m11f_c00171{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);}
.me1_c00171{transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);}
.m126_c00171{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);}
.m164_c00171{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m183_c00171{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);}
.m91_c00171{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m155_c00171{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00171{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);}
.m76_c00171{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);}
.mc7_c00171{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);}
.m5e_c00171{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m124_c00171{transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);}
.m21_c00171{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m18c_c00171{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00171{transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);}
.m17a_c00171{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m89_c00171{transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);}
.m90_c00171{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);}
.m136_c00171{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);}
.m16a_c00171{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);}
.m1a6_c00171{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m2b_c00171{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);}
.m9b_c00171{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);}
.mf4_c00171{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);}
.m16c_c00171{transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);}
.m123_c00171{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);}
.m133_c00171{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00171{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m3f_c00171{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);}
.m18b_c00171{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.m13f_c00171{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);}
.m175_c00171{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.md5_c00171{transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);}
.m71_c00171{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);}
.m103_c00171{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m157_c00171{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);}
.m1f_c00171{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.mca_c00171{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);}
.m3a_c00171{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);}
.m19b_c00171{transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);}
.m127_c00171{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.ma5_c00171{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);}
.m8b_c00171{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);}
.m92_c00171{transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);}
.m18_c00171{transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);}
.mdf_c00171{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);}
.m138_c00171{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);}
.mc5_c00171{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.mc8_c00171{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m137_c00171{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);}
.mf0_c00171{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);}
.mf8_c00171{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);}
.m150_c00171{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);}
.m182_c00171{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);}
.m98_c00171{transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);}
.m168_c00171{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);}
.m49_c00171{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.mf5_c00171{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m14b_c00171{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);}
.m6e_c00171{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m12a_c00171{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m10a_c00171{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);}
.m60_c00171{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);}
.me8_c00171{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.mbd_c00171{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);}
.mb9_c00171{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m85_c00171{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);}
.m19_c00171{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);}
.mb_c00171{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);}
.m67_c00171{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);}
.ma_c00171{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m56_c00171{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00171{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00171{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);}
.m1e_c00171{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);}
.m68_c00171{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m64_c00171{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);}
.m38_c00171{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00171{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m33_c00171{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00171{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);}
.m52_c00171{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);}
.m4_c00171{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m191_c00171{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00171{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m86_c00171{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);}
.m32_c00171{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00171{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m34_c00171{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m69_c00171{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me7_c00171{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00171{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00171{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);}
.m48_c00171{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m59_c00171{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00171{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m184_c00171{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);}
.m4f_c00171{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00171{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mad_c00171{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9_c00171{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);}
.m6_c00171{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m185_c00171{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);}
.m13e_c00171{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m72_c00171{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.md4_c00171{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00171{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00171{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m120_c00171{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);}
.m83_c00171{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);}
.m1c_c00171{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);}
.m104_c00171{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m170_c00171{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m18e_c00171{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.me_c00171{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m80_c00171{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m84_c00171{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00171{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m100_c00171{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_c00171{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m10_c00171{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m77_c00171{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m171_c00171{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m15b_c00171{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m113_c00171{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);}
.m6b_c00171{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mf_c00171{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m25_c00171{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);}
.md_c00171{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m18f_c00171{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m118_c00171{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m130_c00171{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m106_c00171{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00171{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);}
.m193_c00171{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00171{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m9c_c00171{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);}
.m8d_c00171{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m7_c00171{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00171{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.mff_c00171{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00171{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m11_c00171{transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);}
.m5_c00171{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.m8_c00171{transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);}
.v0_c00171{vertical-align:0.000000px;}
.v1_c00171{vertical-align:3.420000px;}
.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:-17.014680px;}
.ws1_c00171{word-spacing:-4.919460px;}
.ws2_c00171{word-spacing:0.000000px;}
.fc0_c00171{color:transparent;}
.fs1_c00171{font-size:3.456000px;}
.fs9_c00171{font-size:6.000000px;}
.fs4_c00171{font-size:6.900000px;}
.fs6_c00171{font-size:10.380000px;}
.fs0_c00171{font-size:13.800000px;}
.fsd_c00171{font-size:17.280000px;}
.fs2_c00171{font-size:20.760000px;}
.fs3_c00171{font-size:24.180000px;}
.fs25_c00171{font-size:27.660000px;}
.fs13_c00171{font-size:31.080000px;}
.fs5_c00171{font-size:34.560000px;}
.fs22_c00171{font-size:38.040000px;}
.fs24_c00171{font-size:41.460000px;}
.fs8_c00171{font-size:44.940000px;}
.fsa_c00171{font-size:48.360000px;}
.fs21_c00171{font-size:51.840000px;}
.fs7_c00171{font-size:55.320000px;}
.fsc_c00171{font-size:58.740000px;}
.fsb_c00171{font-size:62.220000px;}
.fs1f_c00171{font-size:65.640000px;}
.fs12_c00171{font-size:69.120000px;}
.fs16_c00171{font-size:72.600000px;}
.fs20_c00171{font-size:76.020000px;}
.fs14_c00171{font-size:79.500000px;}
.fs17_c00171{font-size:82.920000px;}
.fs23_c00171{font-size:86.400000px;}
.fs1a_c00171{font-size:89.880000px;}
.fs1d_c00171{font-size:93.300000px;}
.fsf_c00171{font-size:96.780000px;}
.fs11_c00171{font-size:100.200000px;}
.fs15_c00171{font-size:103.680000px;}
.fse_c00171{font-size:107.160000px;}
.fs10_c00171{font-size:110.580000px;}
.fs18_c00171{font-size:114.060000px;}
.fs19_c00171{font-size:117.480000px;}
.fs1e_c00171{font-size:120.960000px;}
.fs1c_c00171{font-size:124.440000px;}
.fs1b_c00171{font-size:131.340000px;}
.y0_c00171{bottom:0.000000px;}
.y17b_c00171{bottom:195.270000px;}
.y17c_c00171{bottom:197.850000px;}
.y177_c00171{bottom:209.085000px;}
.y17a_c00171{bottom:211.680000px;}
.y179_c00171{bottom:213.405000px;}
.y173_c00171{bottom:214.275000px;}
.y170_c00171{bottom:216.000000px;}
.y176_c00171{bottom:217.725000px;}
.y16f_c00171{bottom:220.320000px;}
.y175_c00171{bottom:221.190000px;}
.y174_c00171{bottom:222.915000px;}
.y172_c00171{bottom:223.770000px;}
.y171_c00171{bottom:224.640000px;}
.y178_c00171{bottom:226.365000px;}
.y167_c00171{bottom:241.920000px;}
.y16a_c00171{bottom:242.790000px;}
.y169_c00171{bottom:245.370000px;}
.y16d_c00171{bottom:246.240000px;}
.y168_c00171{bottom:249.690000px;}
.y16b_c00171{bottom:250.560000px;}
.y16e_c00171{bottom:251.430000px;}
.y16c_c00171{bottom:253.155000px;}
.y166_c00171{bottom:257.475000px;}
.y162_c00171{bottom:265.245000px;}
.y163_c00171{bottom:266.115000px;}
.y165_c00171{bottom:266.970000px;}
.y15d_c00171{bottom:267.840000px;}
.y160_c00171{bottom:268.710000px;}
.y161_c00171{bottom:269.565000px;}
.y15f_c00171{bottom:273.030000px;}
.y164_c00171{bottom:273.885000px;}
.y15e_c00171{bottom:275.610000px;}
.y156_c00171{bottom:293.760000px;}
.y158_c00171{bottom:294.630000px;}
.y159_c00171{bottom:296.355000px;}
.y15a_c00171{bottom:299.805000px;}
.y155_c00171{bottom:300.675000px;}
.y157_c00171{bottom:301.530000px;}
.y15c_c00171{bottom:304.125000px;}
.y15b_c00171{bottom:304.995000px;}
.y14d_c00171{bottom:317.955000px;}
.y14e_c00171{bottom:318.810000px;}
.y152_c00171{bottom:319.680000px;}
.y150_c00171{bottom:321.405000px;}
.y151_c00171{bottom:325.725000px;}
.y14f_c00171{bottom:326.595000px;}
.y153_c00171{bottom:329.190000px;}
.y154_c00171{bottom:336.960000px;}
.y144_c00171{bottom:343.005000px;}
.y145_c00171{bottom:343.875000px;}
.y146_c00171{bottom:344.730000px;}
.y149_c00171{bottom:349.050000px;}
.y14b_c00171{bottom:349.920000px;}
.y148_c00171{bottom:350.790000px;}
.y147_c00171{bottom:351.645000px;}
.y14a_c00171{bottom:353.370000px;}
.y14c_c00171{bottom:355.110000px;}
.y142_c00171{bottom:368.070000px;}
.y141_c00171{bottom:368.925000px;}
.y140_c00171{bottom:369.795000px;}
.y13e_c00171{bottom:372.390000px;}
.y13d_c00171{bottom:375.840000px;}
.y13f_c00171{bottom:376.710000px;}
.y143_c00171{bottom:380.160000px;}
.y136_c00171{bottom:393.990000px;}
.y137_c00171{bottom:394.845000px;}
.y13c_c00171{bottom:395.715000px;}
.y139_c00171{bottom:397.440000px;}
.y135_c00171{bottom:398.310000px;}
.y13a_c00171{bottom:399.165000px;}
.y138_c00171{bottom:401.760000px;}
.y13b_c00171{bottom:403.485000px;}
.y12e_c00171{bottom:418.170000px;}
.y132_c00171{bottom:419.040000px;}
.y12f_c00171{bottom:419.910000px;}
.y134_c00171{bottom:421.635000px;}
.y130_c00171{bottom:425.955000px;}
.y131_c00171{bottom:426.810000px;}
.y133_c00171{bottom:427.680000px;}
.y12c_c00171{bottom:444.090000px;}
.y12d_c00171{bottom:444.960000px;}
.y12b_c00171{bottom:451.005000px;}
.y125_c00171{bottom:468.285000px;}
.y128_c00171{bottom:470.010000px;}
.y12a_c00171{bottom:470.880000px;}
.y126_c00171{bottom:475.200000px;}
.y127_c00171{bottom:476.070000px;}
.y124_c00171{bottom:476.925000px;}
.y129_c00171{bottom:477.795000px;}
.y11d_c00171{bottom:493.350000px;}
.y11e_c00171{bottom:494.205000px;}
.y121_c00171{bottom:495.075000px;}
.y122_c00171{bottom:495.930000px;}
.y123_c00171{bottom:497.670000px;}
.y11c_c00171{bottom:499.395000px;}
.y11f_c00171{bottom:501.120000px;}
.y120_c00171{bottom:502.845000px;}
.y116_c00171{bottom:517.530000px;}
.y117_c00171{bottom:518.400000px;}
.y118_c00171{bottom:519.270000px;}
.y11a_c00171{bottom:520.995000px;}
.y11b_c00171{bottom:522.720000px;}
.y115_c00171{bottom:524.445000px;}
.y119_c00171{bottom:527.040000px;}
.y113_c00171{bottom:545.190000px;}
.y111_c00171{bottom:548.640000px;}
.y10f_c00171{bottom:549.510000px;}
.y110_c00171{bottom:551.235000px;}
.y112_c00171{bottom:552.090000px;}
.y114_c00171{bottom:552.960000px;}
.y109_c00171{bottom:567.645000px;}
.y10a_c00171{bottom:570.240000px;}
.y10c_c00171{bottom:571.110000px;}
.y10d_c00171{bottom:571.965000px;}
.y10b_c00171{bottom:576.285000px;}
.y10e_c00171{bottom:578.010000px;}
.yff_c00171{bottom:591.840000px;}
.y102_c00171{bottom:592.710000px;}
.y103_c00171{bottom:595.290000px;}
.y104_c00171{bottom:596.160000px;}
.y100_c00171{bottom:597.885000px;}
.y101_c00171{bottom:598.755000px;}
.y105_c00171{bottom:600.480000px;}
.y108_c00171{bottom:602.205000px;}
.y107_c00171{bottom:603.075000px;}
.y106_c00171{bottom:603.930000px;}
.yfa_c00171{bottom:618.630000px;}
.yfb_c00171{bottom:619.485000px;}
.yf8_c00171{bottom:622.080000px;}
.yf9_c00171{bottom:626.400000px;}
.yfe_c00171{bottom:627.270000px;}
.yfc_c00171{bottom:628.125000px;}
.yfd_c00171{bottom:628.995000px;}
.yf0_c00171{bottom:643.680000px;}
.yf4_c00171{bottom:645.405000px;}
.yf6_c00171{bottom:646.275000px;}
.yf1_c00171{bottom:647.130000px;}
.yef_c00171{bottom:648.870000px;}
.yf7_c00171{bottom:650.595000px;}
.yf2_c00171{bottom:651.450000px;}
.yf3_c00171{bottom:653.190000px;}
.yf5_c00171{bottom:654.045000px;}
.ye7_c00171{bottom:663.555000px;}
.yee_c00171{bottom:664.410000px;}
.yeb_c00171{bottom:665.280000px;}
.yec_c00171{bottom:667.875000px;}
.ye8_c00171{bottom:672.195000px;}
.yed_c00171{bottom:675.645000px;}
.yea_c00171{bottom:676.515000px;}
.ye9_c00171{bottom:677.370000px;}
.ye3_c00171{bottom:692.070000px;}
.ye1_c00171{bottom:692.925000px;}
.ye5_c00171{bottom:695.520000px;}
.ydf_c00171{bottom:698.970000px;}
.ye4_c00171{bottom:699.840000px;}
.ye0_c00171{bottom:700.710000px;}
.ye2_c00171{bottom:701.565000px;}
.ye6_c00171{bottom:705.030000px;}
.yd5_c00171{bottom:717.120000px;}
.ydc_c00171{bottom:717.990000px;}
.yd6_c00171{bottom:718.845000px;}
.ydb_c00171{bottom:719.715000px;}
.ydd_c00171{bottom:724.035000px;}
.yd7_c00171{bottom:725.760000px;}
.yd8_c00171{bottom:726.630000px;}
.yd9_c00171{bottom:727.485000px;}
.yda_c00171{bottom:728.355000px;}
.yde_c00171{bottom:730.080000px;}
.ycd_c00171{bottom:740.445000px;}
.yce_c00171{bottom:742.170000px;}
.yd1_c00171{bottom:743.040000px;}
.ycf_c00171{bottom:743.910000px;}
.yd2_c00171{bottom:744.765000px;}
.yd4_c00171{bottom:748.230000px;}
.yd0_c00171{bottom:749.085000px;}
.yd3_c00171{bottom:751.680000px;}
.yc5_c00171{bottom:765.510000px;}
.yc6_c00171{bottom:767.235000px;}
.ycb_c00171{bottom:768.090000px;}
.yca_c00171{bottom:769.830000px;}
.yc7_c00171{bottom:770.685000px;}
.ycc_c00171{bottom:771.555000px;}
.yc8_c00171{bottom:775.005000px;}
.yc9_c00171{bottom:775.875000px;}
.ybf_c00171{bottom:791.430000px;}
.yc1_c00171{bottom:792.285000px;}
.yc0_c00171{bottom:793.155000px;}
.ybe_c00171{bottom:798.330000px;}
.yc4_c00171{bottom:799.200000px;}
.yc3_c00171{bottom:800.070000px;}
.yc2_c00171{bottom:800.925000px;}
.y17d_c00171{bottom:803.520000px;}
.ybb_c00171{bottom:815.610000px;}
.ybd_c00171{bottom:817.350000px;}
.yba_c00171{bottom:821.670000px;}
.ybc_c00171{bottom:823.395000px;}
.yb7_c00171{bottom:840.675000px;}
.yb6_c00171{bottom:841.530000px;}
.yb8_c00171{bottom:842.400000px;}
.yb4_c00171{bottom:844.125000px;}
.yb9_c00171{bottom:844.995000px;}
.yb5_c00171{bottom:845.850000px;}
.yb3_c00171{bottom:847.590000px;}
.yae_c00171{bottom:864.000000px;}
.yaa_c00171{bottom:864.870000px;}
.yaf_c00171{bottom:865.725000px;}
.yb0_c00171{bottom:866.595000px;}
.yac_c00171{bottom:870.045000px;}
.yad_c00171{bottom:871.770000px;}
.yab_c00171{bottom:872.640000px;}
.yb1_c00171{bottom:873.510000px;}
.yb2_c00171{bottom:877.830000px;}
.ya9_c00171{bottom:891.645000px;}
.ya8_c00171{bottom:892.515000px;}
.ya2_c00171{bottom:893.370000px;}
.ya3_c00171{bottom:894.240000px;}
.ya4_c00171{bottom:896.835000px;}
.ya5_c00171{bottom:897.690000px;}
.ya6_c00171{bottom:898.560000px;}
.ya7_c00171{bottom:899.430000px;}
.y9d_c00171{bottom:914.970000px;}
.y9a_c00171{bottom:915.840000px;}
.y9e_c00171{bottom:916.710000px;}
.y9f_c00171{bottom:918.435000px;}
.y9b_c00171{bottom:920.160000px;}
.y9c_c00171{bottom:922.755000px;}
.ya1_c00171{bottom:923.610000px;}
.ya0_c00171{bottom:924.480000px;}
.y91_c00171{bottom:939.165000px;}
.y93_c00171{bottom:940.035000px;}
.y95_c00171{bottom:940.890000px;}
.y97_c00171{bottom:941.760000px;}
.y98_c00171{bottom:946.080000px;}
.y96_c00171{bottom:946.950000px;}
.y92_c00171{bottom:947.805000px;}
.y94_c00171{bottom:948.675000px;}
.y99_c00171{bottom:962.490000px;}
.y8c_c00171{bottom:964.230000px;}
.y8d_c00171{bottom:965.955000px;}
.y8f_c00171{bottom:966.810000px;}
.y8e_c00171{bottom:973.725000px;}
.y90_c00171{bottom:974.595000px;}
.y86_c00171{bottom:990.150000px;}
.y88_c00171{bottom:991.005000px;}
.y8a_c00171{bottom:991.875000px;}
.y8b_c00171{bottom:995.325000px;}
.y87_c00171{bottom:997.050000px;}
.y85_c00171{bottom:997.920000px;}
.y89_c00171{bottom:998.790000px;}
.y84_c00171{bottom:1004.835000px;}
.y7b_c00171{bottom:1014.330000px;}
.y7e_c00171{bottom:1016.070000px;}
.y82_c00171{bottom:1016.925000px;}
.y7d_c00171{bottom:1019.520000px;}
.y7c_c00171{bottom:1022.970000px;}
.y7f_c00171{bottom:1023.840000px;}
.y81_c00171{bottom:1024.710000px;}
.y80_c00171{bottom:1025.565000px;}
.y83_c00171{bottom:1026.435000px;}
.y77_c00171{bottom:1039.395000px;}
.y78_c00171{bottom:1041.120000px;}
.y7a_c00171{bottom:1041.990000px;}
.y76_c00171{bottom:1043.715000px;}
.y75_c00171{bottom:1047.165000px;}
.y79_c00171{bottom:1048.035000px;}
.y3_c00171{bottom:1049.760000px;}
.y6d_c00171{bottom:1064.445000px;}
.y71_c00171{bottom:1066.170000px;}
.y74_c00171{bottom:1067.910000px;}
.y73_c00171{bottom:1068.765000px;}
.y6c_c00171{bottom:1071.360000px;}
.y6e_c00171{bottom:1072.230000px;}
.y6f_c00171{bottom:1073.085000px;}
.y70_c00171{bottom:1073.955000px;}
.y72_c00171{bottom:1075.680000px;}
.y62_c00171{bottom:1089.510000px;}
.y68_c00171{bottom:1090.365000px;}
.y65_c00171{bottom:1091.235000px;}
.y66_c00171{bottom:1092.090000px;}
.y64_c00171{bottom:1092.960000px;}
.y63_c00171{bottom:1096.410000px;}
.y69_c00171{bottom:1100.730000px;}
.y6a_c00171{bottom:1103.325000px;}
.y6b_c00171{bottom:1106.790000px;}
.y67_c00171{bottom:1109.370000px;}
.y59_c00171{bottom:1115.430000px;}
.y5b_c00171{bottom:1116.285000px;}
.y5e_c00171{bottom:1117.155000px;}
.y5f_c00171{bottom:1118.010000px;}
.y5d_c00171{bottom:1119.750000px;}
.y58_c00171{bottom:1122.330000px;}
.y5a_c00171{bottom:1123.200000px;}
.y5c_c00171{bottom:1124.070000px;}
.y60_c00171{bottom:1124.925000px;}
.y61_c00171{bottom:1125.795000px;}
.y55_c00171{bottom:1141.350000px;}
.y56_c00171{bottom:1143.930000px;}
.y52_c00171{bottom:1146.525000px;}
.y53_c00171{bottom:1147.395000px;}
.y54_c00171{bottom:1148.250000px;}
.y57_c00171{bottom:1149.120000px;}
.y48_c00171{bottom:1164.675000px;}
.y4a_c00171{bottom:1165.530000px;}
.y4c_c00171{bottom:1166.400000px;}
.y4f_c00171{bottom:1167.270000px;}
.y49_c00171{bottom:1168.125000px;}
.y51_c00171{bottom:1168.995000px;}
.y47_c00171{bottom:1170.720000px;}
.y4d_c00171{bottom:1172.445000px;}
.y4b_c00171{bottom:1173.315000px;}
.y4e_c00171{bottom:1174.170000px;}
.y50_c00171{bottom:1175.040000px;}
.y41_c00171{bottom:1190.595000px;}
.y40_c00171{bottom:1191.450000px;}
.y3f_c00171{bottom:1196.640000px;}
.y45_c00171{bottom:1197.510000px;}
.y42_c00171{bottom:1199.235000px;}
.y44_c00171{bottom:1200.090000px;}
.y46_c00171{bottom:1200.960000px;}
.y38_c00171{bottom:1212.195000px;}
.y43_c00171{bottom:1213.920000px;}
.y3b_c00171{bottom:1214.790000px;}
.y3a_c00171{bottom:1215.645000px;}
.y3e_c00171{bottom:1216.515000px;}
.y36_c00171{bottom:1217.370000px;}
.y39_c00171{bottom:1219.965000px;}
.y37_c00171{bottom:1220.835000px;}
.y3c_c00171{bottom:1225.155000px;}
.y3d_c00171{bottom:1226.010000px;}
.y32_c00171{bottom:1236.390000px;}
.y33_c00171{bottom:1237.245000px;}
.y2e_c00171{bottom:1238.115000px;}
.y30_c00171{bottom:1238.970000px;}
.y35_c00171{bottom:1239.840000px;}
.y31_c00171{bottom:1241.565000px;}
.y2f_c00171{bottom:1245.030000px;}
.y34_c00171{bottom:1248.480000px;}
.y28_c00171{bottom:1262.310000px;}
.y27_c00171{bottom:1263.165000px;}
.y2b_c00171{bottom:1265.760000px;}
.y2a_c00171{bottom:1267.485000px;}
.y2c_c00171{bottom:1268.355000px;}
.y29_c00171{bottom:1271.805000px;}
.y2d_c00171{bottom:1273.530000px;}
.y1f_c00171{bottom:1284.765000px;}
.y20_c00171{bottom:1285.635000px;}
.y23_c00171{bottom:1286.490000px;}
.y24_c00171{bottom:1289.085000px;}
.y26_c00171{bottom:1289.955000px;}
.y22_c00171{bottom:1290.810000px;}
.y25_c00171{bottom:1297.725000px;}
.y21_c00171{bottom:1298.595000px;}
.y18_c00171{bottom:1313.280000px;}
.y1a_c00171{bottom:1315.005000px;}
.y1d_c00171{bottom:1315.875000px;}
.y1b_c00171{bottom:1316.730000px;}
.y1c_c00171{bottom:1317.600000px;}
.y1e_c00171{bottom:1318.470000px;}
.y19_c00171{bottom:1321.920000px;}
.y17e_c00171{bottom:1322.790000px;}
.y11_c00171{bottom:1338.330000px;}
.y12_c00171{bottom:1339.200000px;}
.y13_c00171{bottom:1340.925000px;}
.y17_c00171{bottom:1341.795000px;}
.y15_c00171{bottom:1342.650000px;}
.y16_c00171{bottom:1343.520000px;}
.y10_c00171{bottom:1346.115000px;}
.y14_c00171{bottom:1349.565000px;}
.ya_c00171{bottom:1363.395000px;}
.yb_c00171{bottom:1364.250000px;}
.y7_c00171{bottom:1365.120000px;}
.yc_c00171{bottom:1365.990000px;}
.y9_c00171{bottom:1366.845000px;}
.y6_c00171{bottom:1367.715000px;}
.y5_c00171{bottom:1368.570000px;}
.yf_c00171{bottom:1369.440000px;}
.yd_c00171{bottom:1370.310000px;}
.ye_c00171{bottom:1371.165000px;}
.y8_c00171{bottom:1372.890000px;}
.y4_c00171{bottom:1384.995000px;}
.y2_c00171{bottom:1426.470000px;}
.y1_c00171{bottom:1427.325000px;}
.h3_c00171{height:3.110063px;}
.hb_c00171{height:5.399414px;}
.h6_c00171{height:6.209326px;}
.h8_c00171{height:9.340986px;}
.h2_c00171{height:12.418652px;}
.hf_c00171{height:15.550313px;}
.h4_c00171{height:18.681973px;}
.h5_c00171{height:21.759639px;}
.h27_c00171{height:24.891299px;}
.h15_c00171{height:27.968965px;}
.h7_c00171{height:31.100625px;}
.h24_c00171{height:34.232285px;}
.h26_c00171{height:37.309951px;}
.ha_c00171{height:40.441611px;}
.hc_c00171{height:43.519277px;}
.h23_c00171{height:46.650937px;}
.h9_c00171{height:49.782598px;}
.he_c00171{height:52.860264px;}
.h28_c00171{height:53.202598px;}
.hd_c00171{height:55.991924px;}
.h21_c00171{height:59.069590px;}
.h14_c00171{height:62.201250px;}
.h18_c00171{height:65.332910px;}
.h22_c00171{height:68.410576px;}
.h16_c00171{height:71.542236px;}
.h19_c00171{height:74.619902px;}
.h25_c00171{height:77.751563px;}
.h1c_c00171{height:80.883223px;}
.h1f_c00171{height:83.960889px;}
.h11_c00171{height:87.092549px;}
.h13_c00171{height:90.170215px;}
.h17_c00171{height:93.301875px;}
.h10_c00171{height:96.433535px;}
.h12_c00171{height:99.511201px;}
.h1a_c00171{height:102.642861px;}
.h1b_c00171{height:105.720527px;}
.h20_c00171{height:108.852188px;}
.h1e_c00171{height:111.983848px;}
.h1d_c00171{height:118.193174px;}
.h1_c00171{height:1503.000000px;}
.h0_c00171{height:1503.360000px;}
.w0_c00171{width:1105.920000px;}
.w1_c00171{width:1106.250000px;}
.x0_c00171{left:0.000000px;}
.xf3_c00171{left:11.235000px;}
.x18_c00171{left:228.090000px;}
.xf0_c00171{left:230.685000px;}
.x44_c00171{left:232.410000px;}
.x3f_c00171{left:234.150000px;}
.xcf_c00171{left:235.875000px;}
.x1_c00171{left:237.600000px;}
.x36_c00171{left:240.195000px;}
.x40_c00171{left:241.920000px;}
.x89_c00171{left:243.645000px;}
.xbd_c00171{left:245.370000px;}
.x2_c00171{left:247.110000px;}
.xd8_c00171{left:248.835000px;}
.xd2_c00171{left:250.560000px;}
.x6_c00171{left:258.330000px;}
.xa8_c00171{left:263.520000px;}
.x41_c00171{left:267.840000px;}
.xb5_c00171{left:270.435000px;}
.x45_c00171{left:272.160000px;}
.x5c_c00171{left:275.610000px;}
.x54_c00171{left:278.205000px;}
.x75_c00171{left:279.930000px;}
.xc3_c00171{left:283.395000px;}
.x6b_c00171{left:289.440000px;}
.x42_c00171{left:292.890000px;}
.x4d_c00171{left:295.485000px;}
.x37_c00171{left:298.080000px;}
.x94_c00171{left:299.805000px;}
.x19_c00171{left:301.530000px;}
.x6c_c00171{left:304.125000px;}
.xad_c00171{left:306.720000px;}
.xc7_c00171{left:309.315000px;}
.x23_c00171{left:315.360000px;}
.xe9_c00171{left:317.085000px;}
.x9b_c00171{left:318.810000px;}
.xb2_c00171{left:320.550000px;}
.x7_c00171{left:323.130000px;}
.xa9_c00171{left:326.595000px;}
.x61_c00171{left:328.320000px;}
.x8a_c00171{left:330.045000px;}
.x46_c00171{left:332.640000px;}
.x29_c00171{left:336.960000px;}
.xa0_c00171{left:339.555000px;}
.x38_c00171{left:341.280000px;}
.xf1_c00171{left:343.005000px;}
.x4e_c00171{left:345.600000px;}
.x5d_c00171{left:349.050000px;}
.x55_c00171{left:350.790000px;}
.xc0_c00171{left:354.240000px;}
.xc4_c00171{left:359.430000px;}
.xde_c00171{left:361.155000px;}
.x39_c00171{left:362.880000px;}
.x8b_c00171{left:365.475000px;}
.xaa_c00171{left:367.200000px;}
.xc8_c00171{left:371.520000px;}
.x24_c00171{left:374.115000px;}
.x1a_c00171{left:379.290000px;}
.xb7_c00171{left:382.755000px;}
.x2a_c00171{left:384.480000px;}
.x47_c00171{left:387.930000px;}
.xe4_c00171{left:389.670000px;}
.x7c_c00171{left:394.845000px;}
.x6d_c00171{left:396.570000px;}
.x1b_c00171{left:400.035000px;}
.xea_c00171{left:401.760000px;}
.x2b_c00171{left:403.485000px;}
.x62_c00171{left:406.080000px;}
.xb3_c00171{left:407.805000px;}
.x81_c00171{left:411.270000px;}
.xce_c00171{left:413.850000px;}
.x8_c00171{left:418.170000px;}
.xd3_c00171{left:419.910000px;}
.xbe_c00171{left:424.230000px;}
.x9c_c00171{left:427.680000px;}
.x95_c00171{left:429.405000px;}
.x7d_c00171{left:437.190000px;}
.x48_c00171{left:438.915000px;}
.x25_c00171{left:443.235000px;}
.x9_c00171{left:446.685000px;}
.x96_c00171{left:449.280000px;}
.xc9_c00171{left:451.875000px;}
.x3a_c00171{left:453.600000px;}
.xa1_c00171{left:457.050000px;}
.x2c_c00171{left:459.645000px;}
.x5e_c00171{left:461.370000px;}
.x63_c00171{left:463.965000px;}
.x56_c00171{left:466.560000px;}
.x8c_c00171{left:468.285000px;}
.xb8_c00171{left:470.010000px;}
.x6e_c00171{left:473.475000px;}
.x1c_c00171{left:475.200000px;}
.x97_c00171{left:480.390000px;}
.x4f_c00171{left:483.840000px;}
.xa_c00171{left:488.160000px;}
.xdf_c00171{left:489.885000px;}
.x64_c00171{left:491.610000px;}
.xee_c00171{left:495.075000px;}
.x76_c00171{left:496.800000px;}
.xca_c00171{left:498.525000px;}
.xb4_c00171{left:501.990000px;}
.x3b_c00171{left:504.570000px;}
.x82_c00171{left:508.035000px;}
.x26_c00171{left:509.760000px;}
.xd4_c00171{left:514.080000px;}
.xb_c00171{left:516.675000px;}
.xa2_c00171{left:522.720000px;}
.xc_c00171{left:524.445000px;}
.x49_c00171{left:527.910000px;}
.xe2_c00171{left:529.635000px;}
.xec_c00171{left:532.230000px;}
.xd_c00171{left:535.680000px;}
.xd5_c00171{left:537.405000px;}
.xc1_c00171{left:540.000000px;}
.x1d_c00171{left:541.725000px;}
.xe_c00171{left:543.450000px;}
.x50_c00171{left:547.770000px;}
.x7e_c00171{left:550.365000px;}
.x2d_c00171{left:552.090000px;}
.x57_c00171{left:555.555000px;}
.xcc_c00171{left:557.280000px;}
.xa5_c00171{left:559.005000px;}
.x83_c00171{left:560.730000px;}
.x1e_c00171{left:563.325000px;}
.x58_c00171{left:565.920000px;}
.xd0_c00171{left:567.645000px;}
.x90_c00171{left:572.835000px;}
.x3c_c00171{left:574.560000px;}
.x65_c00171{left:576.285000px;}
.xe5_c00171{left:578.010000px;}
.x84_c00171{left:579.750000px;}
.xe0_c00171{left:582.330000px;}
.x9d_c00171{left:588.390000px;}
.x6f_c00171{left:590.115000px;}
.xf_c00171{left:591.840000px;}
.xa3_c00171{left:596.160000px;}
.x98_c00171{left:597.885000px;}
.xf2_c00171{left:599.610000px;}
.x77_c00171{left:603.075000px;}
.x8d_c00171{left:607.395000px;}
.x1f_c00171{left:609.120000px;}
.xae_c00171{left:610.845000px;}
.xe3_c00171{left:612.570000px;}
.xe6_c00171{left:614.310000px;}
.x66_c00171{left:616.035000px;}
.x2e_c00171{left:617.760000px;}
.x4a_c00171{left:620.355000px;}
.xda_c00171{left:622.080000px;}
.xab_c00171{left:628.995000px;}
.x51_c00171{left:630.720000px;}
.x27_c00171{left:634.170000px;}
.x5f_c00171{left:637.635000px;}
.xac_c00171{left:640.230000px;}
.x59_c00171{left:646.275000px;}
.xaf_c00171{left:648.870000px;}
.x2f_c00171{left:651.450000px;}
.xcd_c00171{left:654.915000px;}
.xc5_c00171{left:656.640000px;}
.x70_c00171{left:659.235000px;}
.xb9_c00171{left:662.685000px;}
.x8e_c00171{left:666.150000px;}
.xdb_c00171{left:668.730000px;}
.x10_c00171{left:670.470000px;}
.x78_c00171{left:673.050000px;}
.x67_c00171{left:674.790000px;}
.x20_c00171{left:676.515000px;}
.x3_c00171{left:678.240000px;}
.x79_c00171{left:682.560000px;}
.x11_c00171{left:685.155000px;}
.x7a_c00171{left:687.750000px;}
.x71_c00171{left:691.200000px;}
.x12_c00171{left:693.795000px;}
.x72_c00171{left:695.520000px;}
.xdc_c00171{left:697.245000px;}
.x7f_c00171{left:699.840000px;}
.xb6_c00171{left:703.290000px;}
.x85_c00171{left:705.885000px;}
.xef_c00171{left:708.480000px;}
.x5a_c00171{left:710.205000px;}
.x13_c00171{left:711.930000px;}
.x86_c00171{left:716.250000px;}
.x9e_c00171{left:721.440000px;}
.x4b_c00171{left:724.035000px;}
.xe1_c00171{left:726.630000px;}
.xb0_c00171{left:728.355000px;}
.xd9_c00171{left:730.080000px;}
.xd6_c00171{left:731.805000px;}
.x28_c00171{left:734.400000px;}
.x30_c00171{left:739.590000px;}
.x60_c00171{left:741.315000px;}
.x43_c00171{left:743.910000px;}
.xd1_c00171{left:748.230000px;}
.xa6_c00171{left:750.810000px;}
.x31_c00171{left:752.550000px;}
.x14_c00171{left:754.275000px;}
.x21_c00171{left:756.000000px;}
.xba_c00171{left:759.450000px;}
.x4c_c00171{left:762.045000px;}
.x87_c00171{left:764.640000px;}
.x68_c00171{left:766.365000px;}
.xa4_c00171{left:769.830000px;}
.xbb_c00171{left:772.410000px;}
.x32_c00171{left:775.005000px;}
.x52_c00171{left:776.730000px;}
.x91_c00171{left:781.050000px;}
.xd7_c00171{left:782.790000px;}
.x15_c00171{left:785.370000px;}
.xcb_c00171{left:788.835000px;}
.x80_c00171{left:791.430000px;}
.x3d_c00171{left:793.155000px;}
.xc6_c00171{left:795.750000px;}
.x69_c00171{left:797.475000px;}
.x33_c00171{left:800.070000px;}
.x7b_c00171{left:803.520000px;}
.xc2_c00171{left:805.245000px;}
.xb1_c00171{left:809.565000px;}
.x5b_c00171{left:811.290000px;}
.x3e_c00171{left:814.755000px;}
.x34_c00171{left:817.350000px;}
.xdd_c00171{left:821.670000px;}
.x53_c00171{left:824.250000px;}
.xeb_c00171{left:826.845000px;}
.x16_c00171{left:829.440000px;}
.x9f_c00171{left:832.890000px;}
.x4_c00171{left:836.355000px;}
.x22_c00171{left:839.805000px;}
.xe7_c00171{left:844.125000px;}
.x73_c00171{left:846.720000px;}
.xed_c00171{left:849.315000px;}
.x6a_c00171{left:851.040000px;}
.x92_c00171{left:852.765000px;}
.x17_c00171{left:866.595000px;}
.x5_c00171{left:868.320000px;}
.x74_c00171{left:871.770000px;}
.xbc_c00171{left:875.235000px;}
.xbf_c00171{left:876.960000px;}
.x35_c00171{left:882.150000px;}
.x99_c00171{left:884.730000px;}
.xe8_c00171{left:886.470000px;}
.xa7_c00171{left:888.195000px;}
.x8f_c00171{left:890.790000px;}
.x88_c00171{left:893.370000px;}
.x9a_c00171{left:895.110000px;}
.x93_c00171{left:904.605000px;}
.xf4_c00171{left:921.030000px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.v1_c00171{vertical-align:3.040000pt;}
.ls0_c00171{letter-spacing:0.000000pt;}
.ws0_c00171{word-spacing:-15.124160pt;}
.ws1_c00171{word-spacing:-4.372853pt;}
.ws2_c00171{word-spacing:0.000000pt;}
.fs1_c00171{font-size:3.072000pt;}
.fs9_c00171{font-size:5.333333pt;}
.fs4_c00171{font-size:6.133333pt;}
.fs6_c00171{font-size:9.226667pt;}
.fs0_c00171{font-size:12.266667pt;}
.fsd_c00171{font-size:15.360000pt;}
.fs2_c00171{font-size:18.453333pt;}
.fs3_c00171{font-size:21.493333pt;}
.fs25_c00171{font-size:24.586667pt;}
.fs13_c00171{font-size:27.626667pt;}
.fs5_c00171{font-size:30.720000pt;}
.fs22_c00171{font-size:33.813333pt;}
.fs24_c00171{font-size:36.853333pt;}
.fs8_c00171{font-size:39.946667pt;}
.fsa_c00171{font-size:42.986667pt;}
.fs21_c00171{font-size:46.080000pt;}
.fs7_c00171{font-size:49.173333pt;}
.fsc_c00171{font-size:52.213333pt;}
.fsb_c00171{font-size:55.306667pt;}
.fs1f_c00171{font-size:58.346667pt;}
.fs12_c00171{font-size:61.440000pt;}
.fs16_c00171{font-size:64.533333pt;}
.fs20_c00171{font-size:67.573333pt;}
.fs14_c00171{font-size:70.666667pt;}
.fs17_c00171{font-size:73.706667pt;}
.fs23_c00171{font-size:76.800000pt;}
.fs1a_c00171{font-size:79.893333pt;}
.fs1d_c00171{font-size:82.933333pt;}
.fsf_c00171{font-size:86.026667pt;}
.fs11_c00171{font-size:89.066667pt;}
.fs15_c00171{font-size:92.160000pt;}
.fse_c00171{font-size:95.253333pt;}
.fs10_c00171{font-size:98.293333pt;}
.fs18_c00171{font-size:101.386667pt;}
.fs19_c00171{font-size:104.426667pt;}
.fs1e_c00171{font-size:107.520000pt;}
.fs1c_c00171{font-size:110.613333pt;}
.fs1b_c00171{font-size:116.746667pt;}
.y0_c00171{bottom:0.000000pt;}
.y17b_c00171{bottom:173.573333pt;}
.y17c_c00171{bottom:175.866667pt;}
.y177_c00171{bottom:185.853333pt;}
.y17a_c00171{bottom:188.160000pt;}
.y179_c00171{bottom:189.693333pt;}
.y173_c00171{bottom:190.466667pt;}
.y170_c00171{bottom:192.000000pt;}
.y176_c00171{bottom:193.533333pt;}
.y16f_c00171{bottom:195.840000pt;}
.y175_c00171{bottom:196.613333pt;}
.y174_c00171{bottom:198.146667pt;}
.y172_c00171{bottom:198.906667pt;}
.y171_c00171{bottom:199.680000pt;}
.y178_c00171{bottom:201.213333pt;}
.y167_c00171{bottom:215.040000pt;}
.y16a_c00171{bottom:215.813333pt;}
.y169_c00171{bottom:218.106667pt;}
.y16d_c00171{bottom:218.880000pt;}
.y168_c00171{bottom:221.946667pt;}
.y16b_c00171{bottom:222.720000pt;}
.y16e_c00171{bottom:223.493333pt;}
.y16c_c00171{bottom:225.026667pt;}
.y166_c00171{bottom:228.866667pt;}
.y162_c00171{bottom:235.773333pt;}
.y163_c00171{bottom:236.546667pt;}
.y165_c00171{bottom:237.306667pt;}
.y15d_c00171{bottom:238.080000pt;}
.y160_c00171{bottom:238.853333pt;}
.y161_c00171{bottom:239.613333pt;}
.y15f_c00171{bottom:242.693333pt;}
.y164_c00171{bottom:243.453333pt;}
.y15e_c00171{bottom:244.986667pt;}
.y156_c00171{bottom:261.120000pt;}
.y158_c00171{bottom:261.893333pt;}
.y159_c00171{bottom:263.426667pt;}
.y15a_c00171{bottom:266.493333pt;}
.y155_c00171{bottom:267.266667pt;}
.y157_c00171{bottom:268.026667pt;}
.y15c_c00171{bottom:270.333333pt;}
.y15b_c00171{bottom:271.106667pt;}
.y14d_c00171{bottom:282.626667pt;}
.y14e_c00171{bottom:283.386667pt;}
.y152_c00171{bottom:284.160000pt;}
.y150_c00171{bottom:285.693333pt;}
.y151_c00171{bottom:289.533333pt;}
.y14f_c00171{bottom:290.306667pt;}
.y153_c00171{bottom:292.613333pt;}
.y154_c00171{bottom:299.520000pt;}
.y144_c00171{bottom:304.893333pt;}
.y145_c00171{bottom:305.666667pt;}
.y146_c00171{bottom:306.426667pt;}
.y149_c00171{bottom:310.266667pt;}
.y14b_c00171{bottom:311.040000pt;}
.y148_c00171{bottom:311.813333pt;}
.y147_c00171{bottom:312.573333pt;}
.y14a_c00171{bottom:314.106667pt;}
.y14c_c00171{bottom:315.653333pt;}
.y142_c00171{bottom:327.173333pt;}
.y141_c00171{bottom:327.933333pt;}
.y140_c00171{bottom:328.706667pt;}
.y13e_c00171{bottom:331.013333pt;}
.y13d_c00171{bottom:334.080000pt;}
.y13f_c00171{bottom:334.853333pt;}
.y143_c00171{bottom:337.920000pt;}
.y136_c00171{bottom:350.213333pt;}
.y137_c00171{bottom:350.973333pt;}
.y13c_c00171{bottom:351.746667pt;}
.y139_c00171{bottom:353.280000pt;}
.y135_c00171{bottom:354.053333pt;}
.y13a_c00171{bottom:354.813333pt;}
.y138_c00171{bottom:357.120000pt;}
.y13b_c00171{bottom:358.653333pt;}
.y12e_c00171{bottom:371.706667pt;}
.y132_c00171{bottom:372.480000pt;}
.y12f_c00171{bottom:373.253333pt;}
.y134_c00171{bottom:374.786667pt;}
.y130_c00171{bottom:378.626667pt;}
.y131_c00171{bottom:379.386667pt;}
.y133_c00171{bottom:380.160000pt;}
.y12c_c00171{bottom:394.746667pt;}
.y12d_c00171{bottom:395.520000pt;}
.y12b_c00171{bottom:400.893333pt;}
.y125_c00171{bottom:416.253333pt;}
.y128_c00171{bottom:417.786667pt;}
.y12a_c00171{bottom:418.560000pt;}
.y126_c00171{bottom:422.400000pt;}
.y127_c00171{bottom:423.173333pt;}
.y124_c00171{bottom:423.933333pt;}
.y129_c00171{bottom:424.706667pt;}
.y11d_c00171{bottom:438.533333pt;}
.y11e_c00171{bottom:439.293333pt;}
.y121_c00171{bottom:440.066667pt;}
.y122_c00171{bottom:440.826667pt;}
.y123_c00171{bottom:442.373333pt;}
.y11c_c00171{bottom:443.906667pt;}
.y11f_c00171{bottom:445.440000pt;}
.y120_c00171{bottom:446.973333pt;}
.y116_c00171{bottom:460.026667pt;}
.y117_c00171{bottom:460.800000pt;}
.y118_c00171{bottom:461.573333pt;}
.y11a_c00171{bottom:463.106667pt;}
.y11b_c00171{bottom:464.640000pt;}
.y115_c00171{bottom:466.173333pt;}
.y119_c00171{bottom:468.480000pt;}
.y113_c00171{bottom:484.613333pt;}
.y111_c00171{bottom:487.680000pt;}
.y10f_c00171{bottom:488.453333pt;}
.y110_c00171{bottom:489.986667pt;}
.y112_c00171{bottom:490.746667pt;}
.y114_c00171{bottom:491.520000pt;}
.y109_c00171{bottom:504.573333pt;}
.y10a_c00171{bottom:506.880000pt;}
.y10c_c00171{bottom:507.653333pt;}
.y10d_c00171{bottom:508.413333pt;}
.y10b_c00171{bottom:512.253333pt;}
.y10e_c00171{bottom:513.786667pt;}
.yff_c00171{bottom:526.080000pt;}
.y102_c00171{bottom:526.853333pt;}
.y103_c00171{bottom:529.146667pt;}
.y104_c00171{bottom:529.920000pt;}
.y100_c00171{bottom:531.453333pt;}
.y101_c00171{bottom:532.226667pt;}
.y105_c00171{bottom:533.760000pt;}
.y108_c00171{bottom:535.293333pt;}
.y107_c00171{bottom:536.066667pt;}
.y106_c00171{bottom:536.826667pt;}
.yfa_c00171{bottom:549.893333pt;}
.yfb_c00171{bottom:550.653333pt;}
.yf8_c00171{bottom:552.960000pt;}
.yf9_c00171{bottom:556.800000pt;}
.yfe_c00171{bottom:557.573333pt;}
.yfc_c00171{bottom:558.333333pt;}
.yfd_c00171{bottom:559.106667pt;}
.yf0_c00171{bottom:572.160000pt;}
.yf4_c00171{bottom:573.693333pt;}
.yf6_c00171{bottom:574.466667pt;}
.yf1_c00171{bottom:575.226667pt;}
.yef_c00171{bottom:576.773333pt;}
.yf7_c00171{bottom:578.306667pt;}
.yf2_c00171{bottom:579.066667pt;}
.yf3_c00171{bottom:580.613333pt;}
.yf5_c00171{bottom:581.373333pt;}
.ye7_c00171{bottom:589.826667pt;}
.yee_c00171{bottom:590.586667pt;}
.yeb_c00171{bottom:591.360000pt;}
.yec_c00171{bottom:593.666667pt;}
.ye8_c00171{bottom:597.506667pt;}
.yed_c00171{bottom:600.573333pt;}
.yea_c00171{bottom:601.346667pt;}
.ye9_c00171{bottom:602.106667pt;}
.ye3_c00171{bottom:615.173333pt;}
.ye1_c00171{bottom:615.933333pt;}
.ye5_c00171{bottom:618.240000pt;}
.ydf_c00171{bottom:621.306667pt;}
.ye4_c00171{bottom:622.080000pt;}
.ye0_c00171{bottom:622.853333pt;}
.ye2_c00171{bottom:623.613333pt;}
.ye6_c00171{bottom:626.693333pt;}
.yd5_c00171{bottom:637.440000pt;}
.ydc_c00171{bottom:638.213333pt;}
.yd6_c00171{bottom:638.973333pt;}
.ydb_c00171{bottom:639.746667pt;}
.ydd_c00171{bottom:643.586667pt;}
.yd7_c00171{bottom:645.120000pt;}
.yd8_c00171{bottom:645.893333pt;}
.yd9_c00171{bottom:646.653333pt;}
.yda_c00171{bottom:647.426667pt;}
.yde_c00171{bottom:648.960000pt;}
.ycd_c00171{bottom:658.173333pt;}
.yce_c00171{bottom:659.706667pt;}
.yd1_c00171{bottom:660.480000pt;}
.ycf_c00171{bottom:661.253333pt;}
.yd2_c00171{bottom:662.013333pt;}
.yd4_c00171{bottom:665.093333pt;}
.yd0_c00171{bottom:665.853333pt;}
.yd3_c00171{bottom:668.160000pt;}
.yc5_c00171{bottom:680.453333pt;}
.yc6_c00171{bottom:681.986667pt;}
.ycb_c00171{bottom:682.746667pt;}
.yca_c00171{bottom:684.293333pt;}
.yc7_c00171{bottom:685.053333pt;}
.ycc_c00171{bottom:685.826667pt;}
.yc8_c00171{bottom:688.893333pt;}
.yc9_c00171{bottom:689.666667pt;}
.ybf_c00171{bottom:703.493333pt;}
.yc1_c00171{bottom:704.253333pt;}
.yc0_c00171{bottom:705.026667pt;}
.ybe_c00171{bottom:709.626667pt;}
.yc4_c00171{bottom:710.400000pt;}
.yc3_c00171{bottom:711.173333pt;}
.yc2_c00171{bottom:711.933333pt;}
.y17d_c00171{bottom:714.240000pt;}
.ybb_c00171{bottom:724.986667pt;}
.ybd_c00171{bottom:726.533333pt;}
.yba_c00171{bottom:730.373333pt;}
.ybc_c00171{bottom:731.906667pt;}
.yb7_c00171{bottom:747.266667pt;}
.yb6_c00171{bottom:748.026667pt;}
.yb8_c00171{bottom:748.800000pt;}
.yb4_c00171{bottom:750.333333pt;}
.yb9_c00171{bottom:751.106667pt;}
.yb5_c00171{bottom:751.866667pt;}
.yb3_c00171{bottom:753.413333pt;}
.yae_c00171{bottom:768.000000pt;}
.yaa_c00171{bottom:768.773333pt;}
.yaf_c00171{bottom:769.533333pt;}
.yb0_c00171{bottom:770.306667pt;}
.yac_c00171{bottom:773.373333pt;}
.yad_c00171{bottom:774.906667pt;}
.yab_c00171{bottom:775.680000pt;}
.yb1_c00171{bottom:776.453333pt;}
.yb2_c00171{bottom:780.293333pt;}
.ya9_c00171{bottom:792.573333pt;}
.ya8_c00171{bottom:793.346667pt;}
.ya2_c00171{bottom:794.106667pt;}
.ya3_c00171{bottom:794.880000pt;}
.ya4_c00171{bottom:797.186667pt;}
.ya5_c00171{bottom:797.946667pt;}
.ya6_c00171{bottom:798.720000pt;}
.ya7_c00171{bottom:799.493333pt;}
.y9d_c00171{bottom:813.306667pt;}
.y9a_c00171{bottom:814.080000pt;}
.y9e_c00171{bottom:814.853333pt;}
.y9f_c00171{bottom:816.386667pt;}
.y9b_c00171{bottom:817.920000pt;}
.y9c_c00171{bottom:820.226667pt;}
.ya1_c00171{bottom:820.986667pt;}
.ya0_c00171{bottom:821.760000pt;}
.y91_c00171{bottom:834.813333pt;}
.y93_c00171{bottom:835.586667pt;}
.y95_c00171{bottom:836.346667pt;}
.y97_c00171{bottom:837.120000pt;}
.y98_c00171{bottom:840.960000pt;}
.y96_c00171{bottom:841.733333pt;}
.y92_c00171{bottom:842.493333pt;}
.y94_c00171{bottom:843.266667pt;}
.y99_c00171{bottom:855.546667pt;}
.y8c_c00171{bottom:857.093333pt;}
.y8d_c00171{bottom:858.626667pt;}
.y8f_c00171{bottom:859.386667pt;}
.y8e_c00171{bottom:865.533333pt;}
.y90_c00171{bottom:866.306667pt;}
.y86_c00171{bottom:880.133333pt;}
.y88_c00171{bottom:880.893333pt;}
.y8a_c00171{bottom:881.666667pt;}
.y8b_c00171{bottom:884.733333pt;}
.y87_c00171{bottom:886.266667pt;}
.y85_c00171{bottom:887.040000pt;}
.y89_c00171{bottom:887.813333pt;}
.y84_c00171{bottom:893.186667pt;}
.y7b_c00171{bottom:901.626667pt;}
.y7e_c00171{bottom:903.173333pt;}
.y82_c00171{bottom:903.933333pt;}
.y7d_c00171{bottom:906.240000pt;}
.y7c_c00171{bottom:909.306667pt;}
.y7f_c00171{bottom:910.080000pt;}
.y81_c00171{bottom:910.853333pt;}
.y80_c00171{bottom:911.613333pt;}
.y83_c00171{bottom:912.386667pt;}
.y77_c00171{bottom:923.906667pt;}
.y78_c00171{bottom:925.440000pt;}
.y7a_c00171{bottom:926.213333pt;}
.y76_c00171{bottom:927.746667pt;}
.y75_c00171{bottom:930.813333pt;}
.y79_c00171{bottom:931.586667pt;}
.y3_c00171{bottom:933.120000pt;}
.y6d_c00171{bottom:946.173333pt;}
.y71_c00171{bottom:947.706667pt;}
.y74_c00171{bottom:949.253333pt;}
.y73_c00171{bottom:950.013333pt;}
.y6c_c00171{bottom:952.320000pt;}
.y6e_c00171{bottom:953.093333pt;}
.y6f_c00171{bottom:953.853333pt;}
.y70_c00171{bottom:954.626667pt;}
.y72_c00171{bottom:956.160000pt;}
.y62_c00171{bottom:968.453333pt;}
.y68_c00171{bottom:969.213333pt;}
.y65_c00171{bottom:969.986667pt;}
.y66_c00171{bottom:970.746667pt;}
.y64_c00171{bottom:971.520000pt;}
.y63_c00171{bottom:974.586667pt;}
.y69_c00171{bottom:978.426667pt;}
.y6a_c00171{bottom:980.733333pt;}
.y6b_c00171{bottom:983.813333pt;}
.y67_c00171{bottom:986.106667pt;}
.y59_c00171{bottom:991.493333pt;}
.y5b_c00171{bottom:992.253333pt;}
.y5e_c00171{bottom:993.026667pt;}
.y5f_c00171{bottom:993.786667pt;}
.y5d_c00171{bottom:995.333333pt;}
.y58_c00171{bottom:997.626667pt;}
.y5a_c00171{bottom:998.400000pt;}
.y5c_c00171{bottom:999.173333pt;}
.y60_c00171{bottom:999.933333pt;}
.y61_c00171{bottom:1000.706667pt;}
.y55_c00171{bottom:1014.533333pt;}
.y56_c00171{bottom:1016.826667pt;}
.y52_c00171{bottom:1019.133333pt;}
.y53_c00171{bottom:1019.906667pt;}
.y54_c00171{bottom:1020.666667pt;}
.y57_c00171{bottom:1021.440000pt;}
.y48_c00171{bottom:1035.266667pt;}
.y4a_c00171{bottom:1036.026667pt;}
.y4c_c00171{bottom:1036.800000pt;}
.y4f_c00171{bottom:1037.573333pt;}
.y49_c00171{bottom:1038.333333pt;}
.y51_c00171{bottom:1039.106667pt;}
.y47_c00171{bottom:1040.640000pt;}
.y4d_c00171{bottom:1042.173333pt;}
.y4b_c00171{bottom:1042.946667pt;}
.y4e_c00171{bottom:1043.706667pt;}
.y50_c00171{bottom:1044.480000pt;}
.y41_c00171{bottom:1058.306667pt;}
.y40_c00171{bottom:1059.066667pt;}
.y3f_c00171{bottom:1063.680000pt;}
.y45_c00171{bottom:1064.453333pt;}
.y42_c00171{bottom:1065.986667pt;}
.y44_c00171{bottom:1066.746667pt;}
.y46_c00171{bottom:1067.520000pt;}
.y38_c00171{bottom:1077.506667pt;}
.y43_c00171{bottom:1079.040000pt;}
.y3b_c00171{bottom:1079.813333pt;}
.y3a_c00171{bottom:1080.573333pt;}
.y3e_c00171{bottom:1081.346667pt;}
.y36_c00171{bottom:1082.106667pt;}
.y39_c00171{bottom:1084.413333pt;}
.y37_c00171{bottom:1085.186667pt;}
.y3c_c00171{bottom:1089.026667pt;}
.y3d_c00171{bottom:1089.786667pt;}
.y32_c00171{bottom:1099.013333pt;}
.y33_c00171{bottom:1099.773333pt;}
.y2e_c00171{bottom:1100.546667pt;}
.y30_c00171{bottom:1101.306667pt;}
.y35_c00171{bottom:1102.080000pt;}
.y31_c00171{bottom:1103.613333pt;}
.y2f_c00171{bottom:1106.693333pt;}
.y34_c00171{bottom:1109.760000pt;}
.y28_c00171{bottom:1122.053333pt;}
.y27_c00171{bottom:1122.813333pt;}
.y2b_c00171{bottom:1125.120000pt;}
.y2a_c00171{bottom:1126.653333pt;}
.y2c_c00171{bottom:1127.426667pt;}
.y29_c00171{bottom:1130.493333pt;}
.y2d_c00171{bottom:1132.026667pt;}
.y1f_c00171{bottom:1142.013333pt;}
.y20_c00171{bottom:1142.786667pt;}
.y23_c00171{bottom:1143.546667pt;}
.y24_c00171{bottom:1145.853333pt;}
.y26_c00171{bottom:1146.626667pt;}
.y22_c00171{bottom:1147.386667pt;}
.y25_c00171{bottom:1153.533333pt;}
.y21_c00171{bottom:1154.306667pt;}
.y18_c00171{bottom:1167.360000pt;}
.y1a_c00171{bottom:1168.893333pt;}
.y1d_c00171{bottom:1169.666667pt;}
.y1b_c00171{bottom:1170.426667pt;}
.y1c_c00171{bottom:1171.200000pt;}
.y1e_c00171{bottom:1171.973333pt;}
.y19_c00171{bottom:1175.040000pt;}
.y17e_c00171{bottom:1175.813333pt;}
.y11_c00171{bottom:1189.626667pt;}
.y12_c00171{bottom:1190.400000pt;}
.y13_c00171{bottom:1191.933333pt;}
.y17_c00171{bottom:1192.706667pt;}
.y15_c00171{bottom:1193.466667pt;}
.y16_c00171{bottom:1194.240000pt;}
.y10_c00171{bottom:1196.546667pt;}
.y14_c00171{bottom:1199.613333pt;}
.ya_c00171{bottom:1211.906667pt;}
.yb_c00171{bottom:1212.666667pt;}
.y7_c00171{bottom:1213.440000pt;}
.yc_c00171{bottom:1214.213333pt;}
.y9_c00171{bottom:1214.973333pt;}
.y6_c00171{bottom:1215.746667pt;}
.y5_c00171{bottom:1216.506667pt;}
.yf_c00171{bottom:1217.280000pt;}
.yd_c00171{bottom:1218.053333pt;}
.ye_c00171{bottom:1218.813333pt;}
.y8_c00171{bottom:1220.346667pt;}
.y4_c00171{bottom:1231.106667pt;}
.y2_c00171{bottom:1267.973333pt;}
.y1_c00171{bottom:1268.733333pt;}
.h3_c00171{height:2.764500pt;}
.hb_c00171{height:4.799479pt;}
.h6_c00171{height:5.519401pt;}
.h8_c00171{height:8.303099pt;}
.h2_c00171{height:11.038802pt;}
.hf_c00171{height:13.822500pt;}
.h4_c00171{height:16.606198pt;}
.h5_c00171{height:19.341901pt;}
.h27_c00171{height:22.125599pt;}
.h15_c00171{height:24.861302pt;}
.h7_c00171{height:27.645000pt;}
.h24_c00171{height:30.428698pt;}
.h26_c00171{height:33.164401pt;}
.ha_c00171{height:35.948099pt;}
.hc_c00171{height:38.683802pt;}
.h23_c00171{height:41.467500pt;}
.h9_c00171{height:44.251198pt;}
.he_c00171{height:46.986901pt;}
.h28_c00171{height:47.291198pt;}
.hd_c00171{height:49.770599pt;}
.h21_c00171{height:52.506302pt;}
.h14_c00171{height:55.290000pt;}
.h18_c00171{height:58.073698pt;}
.h22_c00171{height:60.809401pt;}
.h16_c00171{height:63.593099pt;}
.h19_c00171{height:66.328802pt;}
.h25_c00171{height:69.112500pt;}
.h1c_c00171{height:71.896198pt;}
.h1f_c00171{height:74.631901pt;}
.h11_c00171{height:77.415599pt;}
.h13_c00171{height:80.151302pt;}
.h17_c00171{height:82.935000pt;}
.h10_c00171{height:85.718698pt;}
.h12_c00171{height:88.454401pt;}
.h1a_c00171{height:91.238099pt;}
.h1b_c00171{height:93.973802pt;}
.h20_c00171{height:96.757500pt;}
.h1e_c00171{height:99.541198pt;}
.h1d_c00171{height:105.060599pt;}
.h1_c00171{height:1336.000000pt;}
.h0_c00171{height:1336.320000pt;}
.w0_c00171{width:983.040000pt;}
.w1_c00171{width:983.333333pt;}
.x0_c00171{left:0.000000pt;}
.xf3_c00171{left:9.986667pt;}
.x18_c00171{left:202.746667pt;}
.xf0_c00171{left:205.053333pt;}
.x44_c00171{left:206.586667pt;}
.x3f_c00171{left:208.133333pt;}
.xcf_c00171{left:209.666667pt;}
.x1_c00171{left:211.200000pt;}
.x36_c00171{left:213.506667pt;}
.x40_c00171{left:215.040000pt;}
.x89_c00171{left:216.573333pt;}
.xbd_c00171{left:218.106667pt;}
.x2_c00171{left:219.653333pt;}
.xd8_c00171{left:221.186667pt;}
.xd2_c00171{left:222.720000pt;}
.x6_c00171{left:229.626667pt;}
.xa8_c00171{left:234.240000pt;}
.x41_c00171{left:238.080000pt;}
.xb5_c00171{left:240.386667pt;}
.x45_c00171{left:241.920000pt;}
.x5c_c00171{left:244.986667pt;}
.x54_c00171{left:247.293333pt;}
.x75_c00171{left:248.826667pt;}
.xc3_c00171{left:251.906667pt;}
.x6b_c00171{left:257.280000pt;}
.x42_c00171{left:260.346667pt;}
.x4d_c00171{left:262.653333pt;}
.x37_c00171{left:264.960000pt;}
.x94_c00171{left:266.493333pt;}
.x19_c00171{left:268.026667pt;}
.x6c_c00171{left:270.333333pt;}
.xad_c00171{left:272.640000pt;}
.xc7_c00171{left:274.946667pt;}
.x23_c00171{left:280.320000pt;}
.xe9_c00171{left:281.853333pt;}
.x9b_c00171{left:283.386667pt;}
.xb2_c00171{left:284.933333pt;}
.x7_c00171{left:287.226667pt;}
.xa9_c00171{left:290.306667pt;}
.x61_c00171{left:291.840000pt;}
.x8a_c00171{left:293.373333pt;}
.x46_c00171{left:295.680000pt;}
.x29_c00171{left:299.520000pt;}
.xa0_c00171{left:301.826667pt;}
.x38_c00171{left:303.360000pt;}
.xf1_c00171{left:304.893333pt;}
.x4e_c00171{left:307.200000pt;}
.x5d_c00171{left:310.266667pt;}
.x55_c00171{left:311.813333pt;}
.xc0_c00171{left:314.880000pt;}
.xc4_c00171{left:319.493333pt;}
.xde_c00171{left:321.026667pt;}
.x39_c00171{left:322.560000pt;}
.x8b_c00171{left:324.866667pt;}
.xaa_c00171{left:326.400000pt;}
.xc8_c00171{left:330.240000pt;}
.x24_c00171{left:332.546667pt;}
.x1a_c00171{left:337.146667pt;}
.xb7_c00171{left:340.226667pt;}
.x2a_c00171{left:341.760000pt;}
.x47_c00171{left:344.826667pt;}
.xe4_c00171{left:346.373333pt;}
.x7c_c00171{left:350.973333pt;}
.x6d_c00171{left:352.506667pt;}
.x1b_c00171{left:355.586667pt;}
.xea_c00171{left:357.120000pt;}
.x2b_c00171{left:358.653333pt;}
.x62_c00171{left:360.960000pt;}
.xb3_c00171{left:362.493333pt;}
.x81_c00171{left:365.573333pt;}
.xce_c00171{left:367.866667pt;}
.x8_c00171{left:371.706667pt;}
.xd3_c00171{left:373.253333pt;}
.xbe_c00171{left:377.093333pt;}
.x9c_c00171{left:380.160000pt;}
.x95_c00171{left:381.693333pt;}
.x7d_c00171{left:388.613333pt;}
.x48_c00171{left:390.146667pt;}
.x25_c00171{left:393.986667pt;}
.x9_c00171{left:397.053333pt;}
.x96_c00171{left:399.360000pt;}
.xc9_c00171{left:401.666667pt;}
.x3a_c00171{left:403.200000pt;}
.xa1_c00171{left:406.266667pt;}
.x2c_c00171{left:408.573333pt;}
.x5e_c00171{left:410.106667pt;}
.x63_c00171{left:412.413333pt;}
.x56_c00171{left:414.720000pt;}
.x8c_c00171{left:416.253333pt;}
.xb8_c00171{left:417.786667pt;}
.x6e_c00171{left:420.866667pt;}
.x1c_c00171{left:422.400000pt;}
.x97_c00171{left:427.013333pt;}
.x4f_c00171{left:430.080000pt;}
.xa_c00171{left:433.920000pt;}
.xdf_c00171{left:435.453333pt;}
.x64_c00171{left:436.986667pt;}
.xee_c00171{left:440.066667pt;}
.x76_c00171{left:441.600000pt;}
.xca_c00171{left:443.133333pt;}
.xb4_c00171{left:446.213333pt;}
.x3b_c00171{left:448.506667pt;}
.x82_c00171{left:451.586667pt;}
.x26_c00171{left:453.120000pt;}
.xd4_c00171{left:456.960000pt;}
.xb_c00171{left:459.266667pt;}
.xa2_c00171{left:464.640000pt;}
.xc_c00171{left:466.173333pt;}
.x49_c00171{left:469.253333pt;}
.xe2_c00171{left:470.786667pt;}
.xec_c00171{left:473.093333pt;}
.xd_c00171{left:476.160000pt;}
.xd5_c00171{left:477.693333pt;}
.xc1_c00171{left:480.000000pt;}
.x1d_c00171{left:481.533333pt;}
.xe_c00171{left:483.066667pt;}
.x50_c00171{left:486.906667pt;}
.x7e_c00171{left:489.213333pt;}
.x2d_c00171{left:490.746667pt;}
.x57_c00171{left:493.826667pt;}
.xcc_c00171{left:495.360000pt;}
.xa5_c00171{left:496.893333pt;}
.x83_c00171{left:498.426667pt;}
.x1e_c00171{left:500.733333pt;}
.x58_c00171{left:503.040000pt;}
.xd0_c00171{left:504.573333pt;}
.x90_c00171{left:509.186667pt;}
.x3c_c00171{left:510.720000pt;}
.x65_c00171{left:512.253333pt;}
.xe5_c00171{left:513.786667pt;}
.x84_c00171{left:515.333333pt;}
.xe0_c00171{left:517.626667pt;}
.x9d_c00171{left:523.013333pt;}
.x6f_c00171{left:524.546667pt;}
.xf_c00171{left:526.080000pt;}
.xa3_c00171{left:529.920000pt;}
.x98_c00171{left:531.453333pt;}
.xf2_c00171{left:532.986667pt;}
.x77_c00171{left:536.066667pt;}
.x8d_c00171{left:539.906667pt;}
.x1f_c00171{left:541.440000pt;}
.xae_c00171{left:542.973333pt;}
.xe3_c00171{left:544.506667pt;}
.xe6_c00171{left:546.053333pt;}
.x66_c00171{left:547.586667pt;}
.x2e_c00171{left:549.120000pt;}
.x4a_c00171{left:551.426667pt;}
.xda_c00171{left:552.960000pt;}
.xab_c00171{left:559.106667pt;}
.x51_c00171{left:560.640000pt;}
.x27_c00171{left:563.706667pt;}
.x5f_c00171{left:566.786667pt;}
.xac_c00171{left:569.093333pt;}
.x59_c00171{left:574.466667pt;}
.xaf_c00171{left:576.773333pt;}
.x2f_c00171{left:579.066667pt;}
.xcd_c00171{left:582.146667pt;}
.xc5_c00171{left:583.680000pt;}
.x70_c00171{left:585.986667pt;}
.xb9_c00171{left:589.053333pt;}
.x8e_c00171{left:592.133333pt;}
.xdb_c00171{left:594.426667pt;}
.x10_c00171{left:595.973333pt;}
.x78_c00171{left:598.266667pt;}
.x67_c00171{left:599.813333pt;}
.x20_c00171{left:601.346667pt;}
.x3_c00171{left:602.880000pt;}
.x79_c00171{left:606.720000pt;}
.x11_c00171{left:609.026667pt;}
.x7a_c00171{left:611.333333pt;}
.x71_c00171{left:614.400000pt;}
.x12_c00171{left:616.706667pt;}
.x72_c00171{left:618.240000pt;}
.xdc_c00171{left:619.773333pt;}
.x7f_c00171{left:622.080000pt;}
.xb6_c00171{left:625.146667pt;}
.x85_c00171{left:627.453333pt;}
.xef_c00171{left:629.760000pt;}
.x5a_c00171{left:631.293333pt;}
.x13_c00171{left:632.826667pt;}
.x86_c00171{left:636.666667pt;}
.x9e_c00171{left:641.280000pt;}
.x4b_c00171{left:643.586667pt;}
.xe1_c00171{left:645.893333pt;}
.xb0_c00171{left:647.426667pt;}
.xd9_c00171{left:648.960000pt;}
.xd6_c00171{left:650.493333pt;}
.x28_c00171{left:652.800000pt;}
.x30_c00171{left:657.413333pt;}
.x60_c00171{left:658.946667pt;}
.x43_c00171{left:661.253333pt;}
.xd1_c00171{left:665.093333pt;}
.xa6_c00171{left:667.386667pt;}
.x31_c00171{left:668.933333pt;}
.x14_c00171{left:670.466667pt;}
.x21_c00171{left:672.000000pt;}
.xba_c00171{left:675.066667pt;}
.x4c_c00171{left:677.373333pt;}
.x87_c00171{left:679.680000pt;}
.x68_c00171{left:681.213333pt;}
.xa4_c00171{left:684.293333pt;}
.xbb_c00171{left:686.586667pt;}
.x32_c00171{left:688.893333pt;}
.x52_c00171{left:690.426667pt;}
.x91_c00171{left:694.266667pt;}
.xd7_c00171{left:695.813333pt;}
.x15_c00171{left:698.106667pt;}
.xcb_c00171{left:701.186667pt;}
.x80_c00171{left:703.493333pt;}
.x3d_c00171{left:705.026667pt;}
.xc6_c00171{left:707.333333pt;}
.x69_c00171{left:708.866667pt;}
.x33_c00171{left:711.173333pt;}
.x7b_c00171{left:714.240000pt;}
.xc2_c00171{left:715.773333pt;}
.xb1_c00171{left:719.613333pt;}
.x5b_c00171{left:721.146667pt;}
.x3e_c00171{left:724.226667pt;}
.x34_c00171{left:726.533333pt;}
.xdd_c00171{left:730.373333pt;}
.x53_c00171{left:732.666667pt;}
.xeb_c00171{left:734.973333pt;}
.x16_c00171{left:737.280000pt;}
.x9f_c00171{left:740.346667pt;}
.x4_c00171{left:743.426667pt;}
.x22_c00171{left:746.493333pt;}
.xe7_c00171{left:750.333333pt;}
.x73_c00171{left:752.640000pt;}
.xed_c00171{left:754.946667pt;}
.x6a_c00171{left:756.480000pt;}
.x92_c00171{left:758.013333pt;}
.x17_c00171{left:770.306667pt;}
.x5_c00171{left:771.840000pt;}
.x74_c00171{left:774.906667pt;}
.xbc_c00171{left:777.986667pt;}
.xbf_c00171{left:779.520000pt;}
.x35_c00171{left:784.133333pt;}
.x99_c00171{left:786.426667pt;}
.xe8_c00171{left:787.973333pt;}
.xa7_c00171{left:789.506667pt;}
.x8f_c00171{left:791.813333pt;}
.x88_c00171{left:794.106667pt;}
.x9a_c00171{left:795.653333pt;}
.x93_c00171{left:804.093333pt;}
.xf4_c00171{left:818.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_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_2964b3c73058f61619992d74.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.109863;font-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_c00172{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m15e_c00172{transform:matrix(0.053525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053525,0.000000,0.000000,0.250000,0,0);}
.m120_c00172{transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);}
.m19c_c00172{transform:matrix(0.090875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090875,0.000000,0.000000,0.250000,0,0);}
.m3a_c00172{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m1bb_c00172{transform:matrix(0.101050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101050,0.000000,0.000000,0.250000,0,0);}
.ma1_c00172{transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);}
.m1b8_c00172{transform:matrix(0.111575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111575,0.000000,0.000000,0.250000,0,0);}
.m19b_c00172{transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);}
.mab_c00172{transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);}
.m14_c00172{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m150_c00172{transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);}
.m134_c00172{transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00172{transform:matrix(0.122200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122200,0.000000,0.000000,0.250000,0,0);}
.m162_c00172{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);}
.m1c0_c00172{transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);}
.m195_c00172{transform:matrix(0.128025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128025,0.000000,0.000000,0.250000,0,0);}
.m104_c00172{transform:matrix(0.128725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128725,0.000000,0.000000,0.250000,0,0);}
.m1af_c00172{transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);}
.m19d_c00172{transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);}
.me_c00172{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);}
.m199_c00172{transform:matrix(0.132025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132025,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00172{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.m140_c00172{transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);}
.m5f_c00172{transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00172{transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);}
.m11a_c00172{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);}
.m172_c00172{transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);}
.mb9_c00172{transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);}
.m139_c00172{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m192_c00172{transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);}
.m18e_c00172{transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);}
.maf_c00172{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.m14b_c00172{transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);}
.mdc_c00172{transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);}
.m1bc_c00172{transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);}
.m8e_c00172{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.mb2_c00172{transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);}
.m198_c00172{transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);}
.m0_c00172{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m97_c00172{transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);}
.mbe_c00172{transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);}
.m2d_c00172{transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);}
.m188_c00172{transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);}
.m155_c00172{transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);}
.m8f_c00172{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m30_c00172{transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);}
.m1b9_c00172{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.mc_c00172{transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);}
.m75_c00172{transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);}
.m57_c00172{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00172{transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);}
.mdb_c00172{transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);}
.m4e_c00172{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m126_c00172{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00172{transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);}
.m60_c00172{transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);}
.m108_c00172{transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);}
.mc4_c00172{transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);}
.mbc_c00172{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.ma9_c00172{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);}
.mf2_c00172{transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);}
.m77_c00172{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.m168_c00172{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);}
.m18f_c00172{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.m118_c00172{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m141_c00172{transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);}
.mbb_c00172{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);}
.m196_c00172{transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);}
.m132_c00172{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.m12a_c00172{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.m167_c00172{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.m158_c00172{transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);}
.ma8_c00172{transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);}
.m194_c00172{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);}
.m182_c00172{transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);}
.m174_c00172{transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);}
.m179_c00172{transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);}
.m142_c00172{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m114_c00172{transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);}
.m1f_c00172{transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);}
.mad_c00172{transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);}
.m15d_c00172{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m5e_c00172{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m66_c00172{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m37_c00172{transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);}
.m12f_c00172{transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);}
.mb0_c00172{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m110_c00172{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.m16b_c00172{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.ma_c00172{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.md5_c00172{transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);}
.m16a_c00172{transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);}
.m45_c00172{transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);}
.ma4_c00172{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.mdf_c00172{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.m178_c00172{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.mec_c00172{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m91_c00172{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m177_c00172{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.m165_c00172{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m7b_c00172{transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);}
.m133_c00172{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00172{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m4a_c00172{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m149_c00172{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m84_c00172{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);}
.mf_c00172{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m189_c00172{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.ma6_c00172{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.m89_c00172{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.m17_c00172{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.mb4_c00172{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.m9_c00172{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);}
.m74_c00172{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);}
.me0_c00172{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);}
.m173_c00172{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);}
.m101_c00172{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.m31_c00172{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);}
.m1b_c00172{transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);}
.m13a_c00172{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.mba_c00172{transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);}
.me6_c00172{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.me5_c00172{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);}
.m105_c00172{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.mf8_c00172{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m183_c00172{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m19f_c00172{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00172{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m131_c00172{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.mb1_c00172{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00172{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m67_c00172{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m62_c00172{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m160_c00172{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.ma3_c00172{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m10e_c00172{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);}
.m4f_c00172{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m175_c00172{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);}
.m2b_c00172{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.mda_c00172{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.mf0_c00172{transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);}
.m13d_c00172{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.mee_c00172{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);}
.m82_c00172{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m148_c00172{transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);}
.m163_c00172{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);}
.mf9_c00172{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);}
.m12d_c00172{transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);}
.m11f_c00172{transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);}
.m7f_c00172{transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);}
.m109_c00172{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.m106_c00172{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m102_c00172{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);}
.m39_c00172{transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);}
.md1_c00172{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);}
.m161_c00172{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m15b_c00172{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m17b_c00172{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);}
.m50_c00172{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.mdd_c00172{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);}
.mfb_c00172{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);}
.m16f_c00172{transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);}
.m11b_c00172{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);}
.m73_c00172{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.m115_c00172{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m11d_c00172{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);}
.m17d_c00172{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);}
.m13f_c00172{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);}
.m83_c00172{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00172{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.m72_c00172{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m129_c00172{transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);}
.m9b_c00172{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);}
.me1_c00172{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);}
.m88_c00172{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m176_c00172{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00172{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);}
.m18_c00172{transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);}
.m2c_c00172{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.me8_c00172{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);}
.mc9_c00172{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);}
.m14a_c00172{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);}
.m6e_c00172{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);}
.m19e_c00172{transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);}
.m180_c00172{transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);}
.m3f_c00172{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m143_c00172{transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);}
.m5d_c00172{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m113_c00172{transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);}
.m13b_c00172{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.mea_c00172{transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);}
.m100_c00172{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.m35_c00172{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.mca_c00172{transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);}
.mae_c00172{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.m12c_c00172{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m40_c00172{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m18a_c00172{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m23_c00172{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);}
.md7_c00172{transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);}
.m9a_c00172{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);}
.me3_c00172{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m8d_c00172{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mbd_c00172{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.m93_c00172{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m152_c00172{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.mc0_c00172{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00172{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);}
.m5c_c00172{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m187_c00172{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m138_c00172{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.mef_c00172{transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00172{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m90_c00172{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00172{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);}
.m94_c00172{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m171_c00172{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m9d_c00172{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.mc3_c00172{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.m1a_c00172{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);}
.m80_c00172{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.m69_c00172{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);}
.m63_c00172{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);}
.mc2_c00172{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);}
.m16c_c00172{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);}
.me2_c00172{transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);}
.mb6_c00172{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00172{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.m86_c00172{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m14f_c00172{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.mfd_c00172{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m154_c00172{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00172{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);}
.m144_c00172{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.m136_c00172{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m103_c00172{transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);}
.m2a_c00172{transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);}
.m27_c00172{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m153_c00172{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.me7_c00172{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.m128_c00172{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m117_c00172{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m121_c00172{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);}
.m95_c00172{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m5b_c00172{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m122_c00172{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.m32_c00172{transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);}
.md0_c00172{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m130_c00172{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.m17f_c00172{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m44_c00172{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);}
.m18b_c00172{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);}
.m14e_c00172{transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00172{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m10d_c00172{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.md9_c00172{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m156_c00172{transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);}
.me9_c00172{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);}
.m15f_c00172{transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);}
.m99_c00172{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.mff_c00172{transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);}
.m166_c00172{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m123_c00172{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00172{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.m87_c00172{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.m6b_c00172{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m9f_c00172{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);}
.m61_c00172{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m17e_c00172{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.md4_c00172{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);}
.m13_c00172{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00172{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);}
.me4_c00172{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);}
.m14c_c00172{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);}
.m10_c00172{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);}
.m17c_c00172{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);}
.m3c_c00172{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.m53_c00172{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);}
.md6_c00172{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.m164_c00172{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);}
.m185_c00172{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00172{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m41_c00172{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);}
.m1b1_c00172{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);}
.m1a9_c00172{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00172{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);}
.m190_c00172{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);}
.m10b_c00172{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m71_c00172{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m76_c00172{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);}
.m1a4_c00172{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00172{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.m15c_c00172{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);}
.m1a6_c00172{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m22_c00172{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m170_c00172{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.m147_c00172{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.mfa_c00172{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_c00172{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);}
.mf1_c00172{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.m55_c00172{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.mb5_c00172{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.mc5_c00172{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.m135_c00172{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);}
.m159_c00172{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);}
.m7c_c00172{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);}
.m16d_c00172{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);}
.m1ba_c00172{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);}
.mcb_c00172{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m4b_c00172{transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);}
.m78_c00172{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m151_c00172{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);}
.mce_c00172{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.meb_c00172{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m54_c00172{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m8c_c00172{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.m169_c00172{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);}
.mc8_c00172{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);}
.m47_c00172{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m21_c00172{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);}
.m6c_c00172{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m43_c00172{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m70_c00172{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);}
.m181_c00172{transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);}
.m197_c00172{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);}
.m111_c00172{transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);}
.mbf_c00172{transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);}
.m2e_c00172{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.m15_c00172{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.md2_c00172{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);}
.med_c00172{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);}
.mb7_c00172{transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);}
.m16e_c00172{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.m127_c00172{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);}
.m18d_c00172{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.ma2_c00172{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.m145_c00172{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);}
.m59_c00172{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);}
.m157_c00172{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.ma5_c00172{transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00172{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);}
.m9c_c00172{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);}
.m17a_c00172{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.ma7_c00172{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);}
.mfe_c00172{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.m184_c00172{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m46_c00172{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m146_c00172{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);}
.mf3_c00172{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);}
.m18c_c00172{transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00172{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);}
.m79_c00172{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);}
.m36_c00172{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.m92_c00172{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m12b_c00172{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);}
.m12e_c00172{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);}
.m125_c00172{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);}
.m11c_c00172{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);}
.mf7_c00172{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);}
.mcc_c00172{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);}
.m26_c00172{transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);}
.m42_c00172{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m137_c00172{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);}
.m124_c00172{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);}
.m107_c00172{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.m14d_c00172{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m119_c00172{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.ma0_c00172{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);}
.maa_c00172{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);}
.m6f_c00172{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m49_c00172{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);}
.m19_c00172{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);}
.m65_c00172{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);}
.mf4_c00172{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00172{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m33_c00172{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00172{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);}
.m25_c00172{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m19a_c00172{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);}
.m1e_c00172{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);}
.m12_c00172{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00172{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);}
.m2_c00172{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m64_c00172{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00172{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);}
.m8b_c00172{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m48_c00172{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);}
.mf6_c00172{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);}
.m2f_c00172{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m186_c00172{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mde_c00172{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);}
.m3d_c00172{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m52_c00172{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m116_c00172{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);}
.m16_c00172{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m58_c00172{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c00172{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00172{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00172{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00172{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c00172{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m193_c00172{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);}
.m10c_c00172{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m13e_c00172{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m98_c00172{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00172{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c00172{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);}
.m1a5_c00172{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00172{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m15a_c00172{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00172{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md8_c00172{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);}
.m56_c00172{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mac_c00172{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00172{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m20_c00172{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);}
.m3b_c00172{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m68_c00172{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00172{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);}
.m191_c00172{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mb_c00172{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);}
.m5a_c00172{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00172{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00172{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4_c00172{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00172{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m7_c00172{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m34_c00172{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);}
.m3e_c00172{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m85_c00172{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m112_c00172{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00172{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00172{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1_c00172{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00172{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m29_c00172{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1c1_c00172{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1be_c00172{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00172{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m24_c00172{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00172{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00172{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m51_c00172{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m1c2_c00172{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m1bf_c00172{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.m5_c00172{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m6_c00172{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m81_c00172{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m96_c00172{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.md3_c00172{transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.v2_c00172{vertical-align:3.480000px;}
.v1_c00172{vertical-align:6.900000px;}
.ls2_c00172{letter-spacing:0.000000px;}
.ls0_c00172{letter-spacing:75.148740px;}
.ls1_c00172{letter-spacing:131.024688px;}
.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;}
.fc0_c00172{color:transparent;}
.fs4_c00172{font-size:3.456000px;}
.fs2_c00172{font-size:6.000000px;}
.fs0_c00172{font-size:6.900000px;}
.fs3_c00172{font-size:10.380000px;}
.fs1f_c00172{font-size:13.800000px;}
.fs13_c00172{font-size:17.280000px;}
.fs5_c00172{font-size:20.760000px;}
.fs8_c00172{font-size:24.180000px;}
.fs18_c00172{font-size:27.660000px;}
.fs21_c00172{font-size:31.080000px;}
.fs1c_c00172{font-size:34.560000px;}
.fs20_c00172{font-size:38.040000px;}
.fs14_c00172{font-size:41.460000px;}
.fs1e_c00172{font-size:44.940000px;}
.fs1d_c00172{font-size:48.360000px;}
.fs22_c00172{font-size:51.840000px;}
.fs19_c00172{font-size:55.320000px;}
.fs1a_c00172{font-size:58.740000px;}
.fsc_c00172{font-size:62.220000px;}
.fs16_c00172{font-size:65.640000px;}
.fsd_c00172{font-size:69.120000px;}
.fsb_c00172{font-size:72.600000px;}
.fs17_c00172{font-size:76.020000px;}
.fsf_c00172{font-size:79.500000px;}
.fsa_c00172{font-size:82.920000px;}
.fs10_c00172{font-size:86.400000px;}
.fs15_c00172{font-size:89.880000px;}
.fs1b_c00172{font-size:93.300000px;}
.fs12_c00172{font-size:96.780000px;}
.fs7_c00172{font-size:100.200000px;}
.fse_c00172{font-size:103.680000px;}
.fs6_c00172{font-size:107.160000px;}
.fs11_c00172{font-size:110.580000px;}
.fs23_c00172{font-size:114.060000px;}
.fs9_c00172{font-size:117.480000px;}
.fs24_c00172{font-size:120.960000px;}
.fs1_c00172{font-size:148.620000px;}
.y0_c00172{bottom:0.000000px;}
.y19f_c00172{bottom:198.720000px;}
.y19e_c00172{bottom:200.445000px;}
.y19b_c00172{bottom:206.490000px;}
.y19d_c00172{bottom:208.230000px;}
.y19c_c00172{bottom:209.085000px;}
.y199_c00172{bottom:220.320000px;}
.y19a_c00172{bottom:221.190000px;}
.y196_c00172{bottom:222.915000px;}
.y197_c00172{bottom:224.640000px;}
.y193_c00172{bottom:227.235000px;}
.y195_c00172{bottom:228.090000px;}
.y198_c00172{bottom:231.555000px;}
.y192_c00172{bottom:234.150000px;}
.y194_c00172{bottom:235.875000px;}
.y190_c00172{bottom:249.690000px;}
.y18e_c00172{bottom:250.560000px;}
.y18f_c00172{bottom:251.430000px;}
.y191_c00172{bottom:254.880000px;}
.y189_c00172{bottom:255.750000px;}
.y18d_c00172{bottom:257.475000px;}
.y18a_c00172{bottom:259.200000px;}
.y18b_c00172{bottom:260.925000px;}
.y18c_c00172{bottom:261.795000px;}
.y188_c00172{bottom:262.650000px;}
.y186_c00172{bottom:276.480000px;}
.y185_c00172{bottom:277.350000px;}
.y180_c00172{bottom:279.075000px;}
.y183_c00172{bottom:279.930000px;}
.y181_c00172{bottom:280.800000px;}
.y187_c00172{bottom:281.670000px;}
.y17f_c00172{bottom:282.525000px;}
.y182_c00172{bottom:283.395000px;}
.y184_c00172{bottom:285.120000px;}
.y17d_c00172{bottom:293.760000px;}
.y17e_c00172{bottom:294.630000px;}
.y17c_c00172{bottom:295.485000px;}
.y17a_c00172{bottom:297.210000px;}
.y179_c00172{bottom:298.080000px;}
.y172_c00172{bottom:298.950000px;}
.y177_c00172{bottom:304.125000px;}
.y174_c00172{bottom:306.720000px;}
.y17b_c00172{bottom:308.445000px;}
.y178_c00172{bottom:310.170000px;}
.y176_c00172{bottom:311.040000px;}
.y173_c00172{bottom:311.910000px;}
.y175_c00172{bottom:312.765000px;}
.y16e_c00172{bottom:324.870000px;}
.y170_c00172{bottom:325.725000px;}
.y171_c00172{bottom:326.595000px;}
.y165_c00172{bottom:327.450000px;}
.y16a_c00172{bottom:328.320000px;}
.y16f_c00172{bottom:329.190000px;}
.y16b_c00172{bottom:330.045000px;}
.y166_c00172{bottom:330.915000px;}
.y16d_c00172{bottom:331.770000px;}
.y168_c00172{bottom:333.510000px;}
.y16c_c00172{bottom:334.365000px;}
.y169_c00172{bottom:336.090000px;}
.y167_c00172{bottom:336.960000px;}
.y161_c00172{bottom:351.645000px;}
.y15e_c00172{bottom:353.370000px;}
.y160_c00172{bottom:355.110000px;}
.y163_c00172{bottom:355.965000px;}
.y164_c00172{bottom:356.835000px;}
.y162_c00172{bottom:357.690000px;}
.y15d_c00172{bottom:358.560000px;}
.y15f_c00172{bottom:361.155000px;}
.y158_c00172{bottom:375.840000px;}
.y15a_c00172{bottom:376.710000px;}
.y157_c00172{bottom:377.565000px;}
.y154_c00172{bottom:378.435000px;}
.y153_c00172{bottom:379.290000px;}
.y151_c00172{bottom:380.160000px;}
.y150_c00172{bottom:381.030000px;}
.y15c_c00172{bottom:381.885000px;}
.y15b_c00172{bottom:382.755000px;}
.y159_c00172{bottom:383.610000px;}
.y156_c00172{bottom:384.480000px;}
.y155_c00172{bottom:385.350000px;}
.y152_c00172{bottom:387.075000px;}
.y14e_c00172{bottom:391.395000px;}
.y14f_c00172{bottom:397.440000px;}
.y14c_c00172{bottom:400.035000px;}
.y14b_c00172{bottom:401.760000px;}
.y149_c00172{bottom:403.485000px;}
.y14a_c00172{bottom:405.210000px;}
.y145_c00172{bottom:406.080000px;}
.y14d_c00172{bottom:406.950000px;}
.y148_c00172{bottom:407.805000px;}
.y146_c00172{bottom:411.270000px;}
.y147_c00172{bottom:412.125000px;}
.y144_c00172{bottom:425.085000px;}
.y142_c00172{bottom:425.955000px;}
.y140_c00172{bottom:427.680000px;}
.y143_c00172{bottom:428.550000px;}
.y13d_c00172{bottom:429.405000px;}
.y13f_c00172{bottom:433.725000px;}
.y13e_c00172{bottom:434.595000px;}
.y141_c00172{bottom:435.450000px;}
.y13c_c00172{bottom:436.320000px;}
.y13b_c00172{bottom:450.150000px;}
.y137_c00172{bottom:451.875000px;}
.y136_c00172{bottom:452.730000px;}
.y134_c00172{bottom:453.600000px;}
.y133_c00172{bottom:454.470000px;}
.y139_c00172{bottom:455.325000px;}
.y13a_c00172{bottom:458.790000px;}
.y138_c00172{bottom:459.645000px;}
.y135_c00172{bottom:460.515000px;}
.y131_c00172{bottom:475.200000px;}
.y12e_c00172{bottom:476.925000px;}
.y12a_c00172{bottom:479.520000px;}
.y12c_c00172{bottom:481.245000px;}
.y132_c00172{bottom:482.115000px;}
.y130_c00172{bottom:482.970000px;}
.y12f_c00172{bottom:483.840000px;}
.y12d_c00172{bottom:484.710000px;}
.y12b_c00172{bottom:486.435000px;}
.y126_c00172{bottom:501.120000px;}
.y125_c00172{bottom:501.990000px;}
.y124_c00172{bottom:502.845000px;}
.y129_c00172{bottom:503.715000px;}
.y123_c00172{bottom:505.440000px;}
.y128_c00172{bottom:506.310000px;}
.y127_c00172{bottom:507.165000px;}
.y120_c00172{bottom:508.890000px;}
.y122_c00172{bottom:509.760000px;}
.y121_c00172{bottom:512.355000px;}
.y11f_c00172{bottom:514.950000px;}
.y11e_c00172{bottom:525.315000px;}
.y11c_c00172{bottom:527.910000px;}
.y11b_c00172{bottom:529.635000px;}
.y11a_c00172{bottom:533.085000px;}
.y11d_c00172{bottom:533.955000px;}
.y117_c00172{bottom:552.960000px;}
.y116_c00172{bottom:553.830000px;}
.y118_c00172{bottom:554.685000px;}
.y119_c00172{bottom:563.325000px;}
.y115_c00172{bottom:574.560000px;}
.y10e_c00172{bottom:577.155000px;}
.y111_c00172{bottom:578.880000px;}
.y10f_c00172{bottom:579.750000px;}
.y112_c00172{bottom:581.475000px;}
.y114_c00172{bottom:584.070000px;}
.y113_c00172{bottom:584.925000px;}
.y110_c00172{bottom:586.650000px;}
.y10d_c00172{bottom:601.350000px;}
.y108_c00172{bottom:603.075000px;}
.y109_c00172{bottom:604.800000px;}
.y107_c00172{bottom:607.395000px;}
.y10c_c00172{bottom:609.120000px;}
.y10b_c00172{bottom:609.990000px;}
.y10a_c00172{bottom:611.715000px;}
.y105_c00172{bottom:627.270000px;}
.y103_c00172{bottom:628.125000px;}
.yff_c00172{bottom:628.995000px;}
.y101_c00172{bottom:629.850000px;}
.y104_c00172{bottom:630.720000px;}
.y106_c00172{bottom:631.590000px;}
.y100_c00172{bottom:636.765000px;}
.y102_c00172{bottom:637.635000px;}
.yfe_c00172{bottom:648.870000px;}
.yfb_c00172{bottom:651.450000px;}
.yfa_c00172{bottom:653.190000px;}
.yf5_c00172{bottom:654.045000px;}
.yf7_c00172{bottom:654.915000px;}
.yfc_c00172{bottom:656.640000px;}
.yfd_c00172{bottom:658.365000px;}
.yf6_c00172{bottom:660.960000px;}
.yf9_c00172{bottom:661.830000px;}
.yf8_c00172{bottom:662.685000px;}
.yf4_c00172{bottom:675.645000px;}
.yf3_c00172{bottom:676.515000px;}
.yf0_c00172{bottom:677.370000px;}
.yf1_c00172{bottom:678.240000px;}
.yec_c00172{bottom:679.110000px;}
.yed_c00172{bottom:683.430000px;}
.yf2_c00172{bottom:684.285000px;}
.yee_c00172{bottom:685.155000px;}
.yef_c00172{bottom:686.010000px;}
.yeb_c00172{bottom:686.880000px;}
.yea_c00172{bottom:695.520000px;}
.ye8_c00172{bottom:699.840000px;}
.ye7_c00172{bottom:700.710000px;}
.ye6_c00172{bottom:701.565000px;}
.ye5_c00172{bottom:702.435000px;}
.ye2_c00172{bottom:703.290000px;}
.ye9_c00172{bottom:706.755000px;}
.ye3_c00172{bottom:707.610000px;}
.ye4_c00172{bottom:708.480000px;}
.ye1_c00172{bottom:710.205000px;}
.ydf_c00172{bottom:724.035000px;}
.ye0_c00172{bottom:724.890000px;}
.ydd_c00172{bottom:725.760000px;}
.yda_c00172{bottom:727.485000px;}
.ydb_c00172{bottom:728.355000px;}
.yde_c00172{bottom:732.675000px;}
.ydc_c00172{bottom:735.270000px;}
.yd9_c00172{bottom:748.230000px;}
.yd6_c00172{bottom:749.955000px;}
.yd4_c00172{bottom:752.550000px;}
.yd8_c00172{bottom:753.405000px;}
.yd3_c00172{bottom:755.130000px;}
.yd7_c00172{bottom:756.870000px;}
.yd2_c00172{bottom:757.725000px;}
.yd5_c00172{bottom:758.595000px;}
.yd1_c00172{bottom:760.320000px;}
.ycf_c00172{bottom:775.005000px;}
.yce_c00172{bottom:775.875000px;}
.ycc_c00172{bottom:776.730000px;}
.ycb_c00172{bottom:777.600000px;}
.ycd_c00172{bottom:781.050000px;}
.yca_c00172{bottom:781.920000px;}
.yd0_c00172{bottom:782.790000px;}
.yc9_c00172{bottom:783.645000px;}
.yc8_c00172{bottom:785.370000px;}
.yc5_c00172{bottom:799.200000px;}
.yc2_c00172{bottom:800.070000px;}
.ybf_c00172{bottom:800.925000px;}
.yc0_c00172{bottom:801.795000px;}
.yc1_c00172{bottom:802.650000px;}
.yc4_c00172{bottom:805.245000px;}
.yc6_c00172{bottom:806.115000px;}
.yc3_c00172{bottom:806.970000px;}
.yc7_c00172{bottom:809.565000px;}
.ybe_c00172{bottom:810.435000px;}
.yba_c00172{bottom:823.395000px;}
.ybd_c00172{bottom:824.250000px;}
.yb6_c00172{bottom:825.120000px;}
.yb8_c00172{bottom:825.990000px;}
.yb7_c00172{bottom:826.845000px;}
.yb9_c00172{bottom:827.715000px;}
.ybb_c00172{bottom:828.570000px;}
.ybc_c00172{bottom:831.165000px;}
.yb5_c00172{bottom:833.760000px;}
.yb4_c00172{bottom:848.445000px;}
.yb1_c00172{bottom:849.315000px;}
.yae_c00172{bottom:850.170000px;}
.yb0_c00172{bottom:851.040000px;}
.yb3_c00172{bottom:851.910000px;}
.yb2_c00172{bottom:856.230000px;}
.yaf_c00172{bottom:857.955000px;}
.yad_c00172{bottom:871.770000px;}
.yac_c00172{bottom:872.640000px;}
.yab_c00172{bottom:873.510000px;}
.ya5_c00172{bottom:874.365000px;}
.ya6_c00172{bottom:875.235000px;}
.ya7_c00172{bottom:876.090000px;}
.ya8_c00172{bottom:877.830000px;}
.yaa_c00172{bottom:881.280000px;}
.ya9_c00172{bottom:882.150000px;}
.ya1_c00172{bottom:897.690000px;}
.ya4_c00172{bottom:898.560000px;}
.ya2_c00172{bottom:899.430000px;}
.y9d_c00172{bottom:900.285000px;}
.y9e_c00172{bottom:901.155000px;}
.ya3_c00172{bottom:903.750000px;}
.ya0_c00172{bottom:906.330000px;}
.y9f_c00172{bottom:907.200000px;}
.y9c_c00172{bottom:917.565000px;}
.y99_c00172{bottom:924.480000px;}
.y97_c00172{bottom:925.350000px;}
.y96_c00172{bottom:926.205000px;}
.y9a_c00172{bottom:927.930000px;}
.y9b_c00172{bottom:931.395000px;}
.y98_c00172{bottom:933.120000px;}
.y95_c00172{bottom:948.675000px;}
.y90_c00172{bottom:949.530000px;}
.y91_c00172{bottom:950.400000px;}
.y92_c00172{bottom:951.270000px;}
.y93_c00172{bottom:955.590000px;}
.y94_c00172{bottom:956.445000px;}
.y8f_c00172{bottom:959.910000px;}
.y8e_c00172{bottom:965.085000px;}
.y8b_c00172{bottom:972.870000px;}
.y88_c00172{bottom:973.725000px;}
.y8d_c00172{bottom:974.595000px;}
.y8a_c00172{bottom:975.450000px;}
.y86_c00172{bottom:976.320000px;}
.y8c_c00172{bottom:978.045000px;}
.y87_c00172{bottom:981.510000px;}
.y89_c00172{bottom:983.235000px;}
.y7d_c00172{bottom:991.005000px;}
.y84_c00172{bottom:997.050000px;}
.y82_c00172{bottom:998.790000px;}
.y80_c00172{bottom:999.645000px;}
.y81_c00172{bottom:1000.515000px;}
.y7f_c00172{bottom:1001.370000px;}
.y83_c00172{bottom:1006.560000px;}
.y7e_c00172{bottom:1008.285000px;}
.y85_c00172{bottom:1010.010000px;}
.y7b_c00172{bottom:1024.710000px;}
.y79_c00172{bottom:1025.565000px;}
.y7a_c00172{bottom:1029.885000px;}
.y7c_c00172{bottom:1031.610000px;}
.y78_c00172{bottom:1032.480000px;}
.y77_c00172{bottom:1033.350000px;}
.y76_c00172{bottom:1043.715000px;}
.y74_c00172{bottom:1049.760000px;}
.y73_c00172{bottom:1050.630000px;}
.y72_c00172{bottom:1051.485000px;}
.y70_c00172{bottom:1052.355000px;}
.y71_c00172{bottom:1056.675000px;}
.y6f_c00172{bottom:1057.530000px;}
.y6e_c00172{bottom:1058.400000px;}
.y75_c00172{bottom:1068.765000px;}
.y69_c00172{bottom:1074.810000px;}
.y68_c00172{bottom:1075.680000px;}
.y6a_c00172{bottom:1076.550000px;}
.y6b_c00172{bottom:1080.870000px;}
.y6d_c00172{bottom:1081.725000px;}
.y6c_c00172{bottom:1083.450000px;}
.y67_c00172{bottom:1099.005000px;}
.y63_c00172{bottom:1099.875000px;}
.y60_c00172{bottom:1100.730000px;}
.y64_c00172{bottom:1104.195000px;}
.y62_c00172{bottom:1105.050000px;}
.y66_c00172{bottom:1105.920000px;}
.y65_c00172{bottom:1106.790000px;}
.y61_c00172{bottom:1107.645000px;}
.y5b_c00172{bottom:1123.200000px;}
.y59_c00172{bottom:1124.925000px;}
.y56_c00172{bottom:1125.795000px;}
.y58_c00172{bottom:1129.245000px;}
.y5c_c00172{bottom:1130.115000px;}
.y5a_c00172{bottom:1130.970000px;}
.y57_c00172{bottom:1132.710000px;}
.y55_c00172{bottom:1133.565000px;}
.y5d_c00172{bottom:1134.435000px;}
.y5f_c00172{bottom:1138.755000px;}
.y5e_c00172{bottom:1141.350000px;}
.y54_c00172{bottom:1148.250000px;}
.y4f_c00172{bottom:1149.990000px;}
.y51_c00172{bottom:1151.715000px;}
.y4e_c00172{bottom:1152.570000px;}
.y50_c00172{bottom:1155.165000px;}
.y53_c00172{bottom:1156.035000px;}
.y4d_c00172{bottom:1156.890000px;}
.y52_c00172{bottom:1157.760000px;}
.y4c_c00172{bottom:1172.445000px;}
.y4b_c00172{bottom:1173.315000px;}
.y4a_c00172{bottom:1174.170000px;}
.y49_c00172{bottom:1175.040000px;}
.y47_c00172{bottom:1198.365000px;}
.y43_c00172{bottom:1200.090000px;}
.y41_c00172{bottom:1201.830000px;}
.y44_c00172{bottom:1204.410000px;}
.y48_c00172{bottom:1205.280000px;}
.y45_c00172{bottom:1206.150000px;}
.y46_c00172{bottom:1207.005000px;}
.y42_c00172{bottom:1207.875000px;}
.y3f_c00172{bottom:1222.560000px;}
.y40_c00172{bottom:1224.285000px;}
.y3a_c00172{bottom:1225.155000px;}
.y3e_c00172{bottom:1226.010000px;}
.y3b_c00172{bottom:1229.475000px;}
.y3d_c00172{bottom:1230.330000px;}
.y3c_c00172{bottom:1232.925000px;}
.y37_c00172{bottom:1247.610000px;}
.y35_c00172{bottom:1249.350000px;}
.y33_c00172{bottom:1250.205000px;}
.y36_c00172{bottom:1251.930000px;}
.y39_c00172{bottom:1255.395000px;}
.y38_c00172{bottom:1256.250000px;}
.y34_c00172{bottom:1257.120000px;}
.y30_c00172{bottom:1272.675000px;}
.y2e_c00172{bottom:1273.530000px;}
.y2d_c00172{bottom:1274.400000px;}
.y2f_c00172{bottom:1275.270000px;}
.y2c_c00172{bottom:1279.590000px;}
.y32_c00172{bottom:1280.445000px;}
.y31_c00172{bottom:1281.315000px;}
.y2b_c00172{bottom:1282.170000px;}
.y27_c00172{bottom:1297.725000px;}
.y26_c00172{bottom:1299.450000px;}
.y29_c00172{bottom:1302.045000px;}
.y28_c00172{bottom:1302.915000px;}
.y25_c00172{bottom:1304.640000px;}
.y2a_c00172{bottom:1305.510000px;}
.y23_c00172{bottom:1306.365000px;}
.y24_c00172{bottom:1307.235000px;}
.y1e_c00172{bottom:1322.790000px;}
.y1f_c00172{bottom:1323.645000px;}
.y19_c00172{bottom:1324.515000px;}
.y1d_c00172{bottom:1325.370000px;}
.y20_c00172{bottom:1327.110000px;}
.y22_c00172{bottom:1329.690000px;}
.y21_c00172{bottom:1330.560000px;}
.y1c_c00172{bottom:1331.430000px;}
.y18_c00172{bottom:1332.285000px;}
.y1b_c00172{bottom:1333.155000px;}
.y1a_c00172{bottom:1346.115000px;}
.y17_c00172{bottom:1347.840000px;}
.y10_c00172{bottom:1348.710000px;}
.y12_c00172{bottom:1350.435000px;}
.y16_c00172{bottom:1352.160000px;}
.y11_c00172{bottom:1353.885000px;}
.y13_c00172{bottom:1354.755000px;}
.y15_c00172{bottom:1356.480000px;}
.y14_c00172{bottom:1357.350000px;}
.yf_c00172{bottom:1358.205000px;}
.yd_c00172{bottom:1377.210000px;}
.yc_c00172{bottom:1378.080000px;}
.yb_c00172{bottom:1378.950000px;}
.ye_c00172{bottom:1379.805000px;}
.y2_c00172{bottom:1399.680000px;}
.ya_c00172{bottom:1419.555000px;}
.y6_c00172{bottom:1420.410000px;}
.y5_c00172{bottom:1422.150000px;}
.y4_c00172{bottom:1423.005000px;}
.y8_c00172{bottom:1423.875000px;}
.y3_c00172{bottom:1424.730000px;}
.y9_c00172{bottom:1425.600000px;}
.y7_c00172{bottom:1428.195000px;}
.y1_c00172{bottom:1433.370000px;}
.h6_c00172{height:3.110063px;}
.h4_c00172{height:5.399414px;}
.h2_c00172{height:6.209326px;}
.h9_c00172{height:6.590062px;}
.h5_c00172{height:9.340986px;}
.h23_c00172{height:12.418652px;}
.h7_c00172{height:13.109326px;}
.h17_c00172{height:15.550313px;}
.h8_c00172{height:18.681973px;}
.hc_c00172{height:21.759639px;}
.h1c_c00172{height:24.891299px;}
.h25_c00172{height:27.968965px;}
.h20_c00172{height:31.100625px;}
.h24_c00172{height:34.232285px;}
.h18_c00172{height:37.309951px;}
.h22_c00172{height:40.441611px;}
.h21_c00172{height:43.519277px;}
.h26_c00172{height:46.650937px;}
.h1d_c00172{height:49.782598px;}
.h1e_c00172{height:52.860264px;}
.h10_c00172{height:55.991924px;}
.h1a_c00172{height:59.069590px;}
.h11_c00172{height:62.201250px;}
.hf_c00172{height:65.332910px;}
.h1b_c00172{height:68.410576px;}
.h13_c00172{height:71.542236px;}
.he_c00172{height:74.619902px;}
.h14_c00172{height:77.751563px;}
.h19_c00172{height:80.883223px;}
.h1f_c00172{height:83.960889px;}
.h16_c00172{height:87.092549px;}
.hb_c00172{height:90.170215px;}
.h12_c00172{height:93.301875px;}
.ha_c00172{height:96.433535px;}
.h15_c00172{height:99.511201px;}
.h27_c00172{height:102.642861px;}
.hd_c00172{height:105.720527px;}
.h28_c00172{height:108.852188px;}
.h3_c00172{height:133.743486px;}
.h0_c00172{height:1523.235000px;}
.h1_c00172{height:1523.250000px;}
.w0_c00172{width:1107.645000px;}
.w1_c00172{width:1107.750000px;}
.x0_c00172{left:0.000000px;}
.x99_c00172{left:171.075000px;}
.xb0_c00172{left:184.890000px;}
.x8a_c00172{left:186.630000px;}
.x91_c00172{left:189.210000px;}
.x100_c00172{left:216.870000px;}
.x67_c00172{left:218.595000px;}
.xef_c00172{left:222.915000px;}
.xfc_c00172{left:224.640000px;}
.x59_c00172{left:226.365000px;}
.xb8_c00172{left:232.410000px;}
.xb9_c00172{left:234.150000px;}
.x61_c00172{left:235.875000px;}
.xa2_c00172{left:238.470000px;}
.x13_c00172{left:241.050000px;}
.x48_c00172{left:244.515000px;}
.x14_c00172{left:246.240000px;}
.xa5_c00172{left:247.965000px;}
.x23_c00172{left:249.690000px;}
.x7e_c00172{left:251.430000px;}
.xf9_c00172{left:253.155000px;}
.xfd_c00172{left:263.520000px;}
.x24_c00172{left:273.030000px;}
.x9a_c00172{left:282.525000px;}
.xec_c00172{left:287.715000px;}
.x49_c00172{left:293.760000px;}
.xa6_c00172{left:295.485000px;}
.x15_c00172{left:298.080000px;}
.x7a_c00172{left:299.805000px;}
.xfa_c00172{left:302.400000px;}
.x31_c00172{left:304.125000px;}
.x16_c00172{left:306.720000px;}
.x51_c00172{left:314.490000px;}
.x3e_c00172{left:317.955000px;}
.xd5_c00172{left:319.680000px;}
.x5a_c00172{left:321.405000px;}
.x6f_c00172{left:323.130000px;}
.xc8_c00172{left:324.870000px;}
.x68_c00172{left:327.450000px;}
.x92_c00172{left:330.045000px;}
.x9b_c00172{left:331.770000px;}
.x8b_c00172{left:334.365000px;}
.xa8_c00172{left:336.090000px;}
.x69_c00172{left:338.685000px;}
.xe8_c00172{left:342.150000px;}
.x93_c00172{left:347.325000px;}
.x7f_c00172{left:350.790000px;}
.x17_c00172{left:354.240000px;}
.x25_c00172{left:355.965000px;}
.x32_c00172{left:360.285000px;}
.xf8_c00172{left:362.010000px;}
.x18_c00172{left:363.750000px;}
.x84_c00172{left:365.475000px;}
.x70_c00172{left:368.925000px;}
.xb5_c00172{left:370.650000px;}
.x3_c00172{left:372.390000px;}
.x1_c00172{left:374.970000px;}
.x94_c00172{left:376.710000px;}
.x52_c00172{left:378.435000px;}
.x33_c00172{left:381.885000px;}
.xba_c00172{left:383.610000px;}
.x4a_c00172{left:386.205000px;}
.x4_c00172{left:387.930000px;}
.x62_c00172{left:389.670000px;}
.x5_c00172{left:391.395000px;}
.x3f_c00172{left:395.715000px;}
.x9c_c00172{left:398.310000px;}
.x26_c00172{left:400.035000px;}
.xa9_c00172{left:402.630000px;}
.x27_c00172{left:405.210000px;}
.x6_c00172{left:406.950000px;}
.xed_c00172{left:410.400000px;}
.x7_c00172{left:412.125000px;}
.x71_c00172{left:413.850000px;}
.xbe_c00172{left:415.590000px;}
.x8_c00172{left:417.315000px;}
.x5b_c00172{left:420.765000px;}
.x9_c00172{left:423.360000px;}
.x72_c00172{left:425.955000px;}
.xc9_c00172{left:428.550000px;}
.x2_c00172{left:431.130000px;}
.xee_c00172{left:434.595000px;}
.xa_c00172{left:436.320000px;}
.xce_c00172{left:438.045000px;}
.x34_c00172{left:439.770000px;}
.xfe_c00172{left:441.510000px;}
.x85_c00172{left:444.960000px;}
.xaa_c00172{left:448.410000px;}
.x19_c00172{left:450.150000px;}
.x8c_c00172{left:451.875000px;}
.xe_c00172{left:456.195000px;}
.x73_c00172{left:457.920000px;}
.xd1_c00172{left:459.645000px;}
.xc5_c00172{left:461.370000px;}
.x53_c00172{left:463.965000px;}
.x101_c00172{left:465.690000px;}
.x1a_c00172{left:470.010000px;}
.x86_c00172{left:471.750000px;}
.x4b_c00172{left:473.475000px;}
.x54_c00172{left:476.070000px;}
.x35_c00172{left:477.795000px;}
.x40_c00172{left:480.390000px;}
.xb_c00172{left:482.970000px;}
.xbf_c00172{left:484.710000px;}
.xc_c00172{left:488.160000px;}
.xf0_c00172{left:490.755000px;}
.xcf_c00172{left:495.075000px;}
.xb1_c00172{left:497.670000px;}
.x80_c00172{left:501.990000px;}
.xd2_c00172{left:504.570000px;}
.xe5_c00172{left:506.310000px;}
.xb6_c00172{left:509.760000px;}
.xc3_c00172{left:511.485000px;}
.x6a_c00172{left:513.210000px;}
.x28_c00172{left:514.950000px;}
.xca_c00172{left:516.675000px;}
.x41_c00172{left:519.270000px;}
.xd_c00172{left:521.850000px;}
.x1b_c00172{left:524.445000px;}
.x7b_c00172{left:527.040000px;}
.xf3_c00172{left:531.360000px;}
.x74_c00172{left:533.085000px;}
.x63_c00172{left:536.550000px;}
.x36_c00172{left:538.275000px;}
.x55_c00172{left:540.000000px;}
.xe3_c00172{left:541.725000px;}
.x29_c00172{left:543.450000px;}
.xe2_c00172{left:546.915000px;}
.xcb_c00172{left:548.640000px;}
.x95_c00172{left:552.090000px;}
.x1c_c00172{left:556.410000px;}
.x4c_c00172{left:558.150000px;}
.x87_c00172{left:562.470000px;}
.xab_c00172{left:571.110000px;}
.xf_c00172{left:573.690000px;}
.xc6_c00172{left:576.285000px;}
.x6b_c00172{left:578.010000px;}
.x9d_c00172{left:580.605000px;}
.x2a_c00172{left:583.200000px;}
.xe6_c00172{left:584.925000px;}
.x1d_c00172{left:586.650000px;}
.xc0_c00172{left:589.245000px;}
.xa3_c00172{left:591.840000px;}
.xf1_c00172{left:593.565000px;}
.x1e_c00172{left:597.030000px;}
.x81_c00172{left:600.480000px;}
.xb7_c00172{left:603.930000px;}
.xe9_c00172{left:606.525000px;}
.x9e_c00172{left:609.990000px;}
.x6c_c00172{left:611.715000px;}
.xcc_c00172{left:613.440000px;}
.xd3_c00172{left:615.165000px;}
.xbb_c00172{left:617.760000px;}
.x5c_c00172{left:622.080000px;}
.xd6_c00172{left:623.805000px;}
.x1f_c00172{left:625.530000px;}
.xac_c00172{left:628.125000px;}
.x56_c00172{left:630.720000px;}
.x2b_c00172{left:633.315000px;}
.x37_c00172{left:635.040000px;}
.xda_c00172{left:639.360000px;}
.xdf_c00172{left:641.085000px;}
.xd4_c00172{left:643.680000px;}
.xb2_c00172{left:645.405000px;}
.xd7_c00172{left:647.130000px;}
.xad_c00172{left:650.595000px;}
.x38_c00172{left:654.045000px;}
.xbc_c00172{left:656.640000px;}
.x5d_c00172{left:660.090000px;}
.x10_c00172{left:663.555000px;}
.xea_c00172{left:667.875000px;}
.x42_c00172{left:669.600000px;}
.xf2_c00172{left:673.050000px;}
.x9f_c00172{left:674.790000px;}
.x4d_c00172{left:678.240000px;}
.x43_c00172{left:679.965000px;}
.xcd_c00172{left:681.690000px;}
.x2c_c00172{left:683.430000px;}
.xa7_c00172{left:686.880000px;}
.xb3_c00172{left:689.475000px;}
.x20_c00172{left:691.200000px;}
.x4e_c00172{left:694.650000px;}
.xe0_c00172{left:696.390000px;}
.x82_c00172{left:698.115000px;}
.x44_c00172{left:699.840000px;}
.xde_c00172{left:701.565000px;}
.x64_c00172{left:704.160000px;}
.x8d_c00172{left:706.755000px;}
.x96_c00172{left:709.350000px;}
.xe4_c00172{left:711.075000px;}
.xa0_c00172{left:715.395000px;}
.x21_c00172{left:717.120000px;}
.x39_c00172{left:718.845000px;}
.x97_c00172{left:720.570000px;}
.xd8_c00172{left:723.165000px;}
.xc1_c00172{left:725.760000px;}
.x6d_c00172{left:728.355000px;}
.x7c_c00172{left:730.080000px;}
.x57_c00172{left:732.675000px;}
.xf4_c00172{left:734.400000px;}
.x65_c00172{left:736.995000px;}
.x75_c00172{left:741.315000px;}
.x2d_c00172{left:743.040000px;}
.xdb_c00172{left:746.490000px;}
.x7d_c00172{left:749.085000px;}
.x76_c00172{left:752.550000px;}
.xb4_c00172{left:754.275000px;}
.x45_c00172{left:757.725000px;}
.x8e_c00172{left:759.450000px;}
.xa4_c00172{left:761.190000px;}
.xae_c00172{left:762.915000px;}
.x3a_c00172{left:765.510000px;}
.x4f_c00172{left:768.090000px;}
.x102_c00172{left:770.685000px;}
.xaf_c00172{left:773.280000px;}
.xbd_c00172{left:780.195000px;}
.x83_c00172{left:781.920000px;}
.xe1_c00172{left:783.645000px;}
.x11_c00172{left:788.837592px;}
.xfb_c00172{left:790.560000px;}
.x88_c00172{left:792.285000px;}
.xc2_c00172{left:795.750000px;}
.xdc_c00172{left:800.925000px;}
.x5e_c00172{left:802.650000px;}
.x3b_c00172{left:804.390000px;}
.xeb_c00172{left:806.115000px;}
.x98_c00172{left:807.840000px;}
.x3c_c00172{left:812.160000px;}
.x103_c00172{left:813.885000px;}
.x50_c00172{left:816.480000px;}
.x66_c00172{left:818.205000px;}
.x5f_c00172{left:820.800000px;}
.x104_c00172{left:824.250000px;}
.x2e_c00172{left:825.990000px;}
.xdd_c00172{left:830.310000px;}
.x22_c00172{left:832.890000px;}
.x46_c00172{left:834.630000px;}
.x2f_c00172{left:836.355000px;}
.x6e_c00172{left:838.080000px;}
.xc7_c00172{left:839.805000px;}
.x58_c00172{left:842.400000px;}
.xff_c00172{left:844.125000px;}
.xa1_c00172{left:846.720000px;}
.xf5_c00172{left:849.315000px;}
.x8f_c00172{left:851.040000px;}
.x60_c00172{left:852.765000px;}
.xd9_c00172{left:855.360000px;}
.x30_c00172{left:857.955000px;}
.x3d_c00172{left:859.680000px;}
.x12_c00172{left:864.870000px;}
.xd0_c00172{left:868.320000px;}
.x90_c00172{left:874.365000px;}
.x47_c00172{left:876.960000px;}
.xc4_c00172{left:885.600000px;}
.x77_c00172{left:889.050000px;}
.xe7_c00172{left:890.790000px;}
.x89_c00172{left:893.370000px;}
.x78_c00172{left:898.560000px;}
.xf6_c00172{left:900.285000px;}
.x79_c00172{left:907.200000px;}
.xf7_c00172{left:914.115000px;}
.x105_c00172{left:951.270000px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.v2_c00172{vertical-align:3.093333pt;}
.v1_c00172{vertical-align:6.133333pt;}
.ls2_c00172{letter-spacing:0.000000pt;}
.ls0_c00172{letter-spacing:66.798880pt;}
.ls1_c00172{letter-spacing:116.466389pt;}
.ws0_c00172{word-spacing:0.000000pt;}
.fs4_c00172{font-size:3.072000pt;}
.fs2_c00172{font-size:5.333333pt;}
.fs0_c00172{font-size:6.133333pt;}
.fs3_c00172{font-size:9.226667pt;}
.fs1f_c00172{font-size:12.266667pt;}
.fs13_c00172{font-size:15.360000pt;}
.fs5_c00172{font-size:18.453333pt;}
.fs8_c00172{font-size:21.493333pt;}
.fs18_c00172{font-size:24.586667pt;}
.fs21_c00172{font-size:27.626667pt;}
.fs1c_c00172{font-size:30.720000pt;}
.fs20_c00172{font-size:33.813333pt;}
.fs14_c00172{font-size:36.853333pt;}
.fs1e_c00172{font-size:39.946667pt;}
.fs1d_c00172{font-size:42.986667pt;}
.fs22_c00172{font-size:46.080000pt;}
.fs19_c00172{font-size:49.173333pt;}
.fs1a_c00172{font-size:52.213333pt;}
.fsc_c00172{font-size:55.306667pt;}
.fs16_c00172{font-size:58.346667pt;}
.fsd_c00172{font-size:61.440000pt;}
.fsb_c00172{font-size:64.533333pt;}
.fs17_c00172{font-size:67.573333pt;}
.fsf_c00172{font-size:70.666667pt;}
.fsa_c00172{font-size:73.706667pt;}
.fs10_c00172{font-size:76.800000pt;}
.fs15_c00172{font-size:79.893333pt;}
.fs1b_c00172{font-size:82.933333pt;}
.fs12_c00172{font-size:86.026667pt;}
.fs7_c00172{font-size:89.066667pt;}
.fse_c00172{font-size:92.160000pt;}
.fs6_c00172{font-size:95.253333pt;}
.fs11_c00172{font-size:98.293333pt;}
.fs23_c00172{font-size:101.386667pt;}
.fs9_c00172{font-size:104.426667pt;}
.fs24_c00172{font-size:107.520000pt;}
.fs1_c00172{font-size:132.106667pt;}
.y0_c00172{bottom:0.000000pt;}
.y19f_c00172{bottom:176.640000pt;}
.y19e_c00172{bottom:178.173333pt;}
.y19b_c00172{bottom:183.546667pt;}
.y19d_c00172{bottom:185.093333pt;}
.y19c_c00172{bottom:185.853333pt;}
.y199_c00172{bottom:195.840000pt;}
.y19a_c00172{bottom:196.613333pt;}
.y196_c00172{bottom:198.146667pt;}
.y197_c00172{bottom:199.680000pt;}
.y193_c00172{bottom:201.986667pt;}
.y195_c00172{bottom:202.746667pt;}
.y198_c00172{bottom:205.826667pt;}
.y192_c00172{bottom:208.133333pt;}
.y194_c00172{bottom:209.666667pt;}
.y190_c00172{bottom:221.946667pt;}
.y18e_c00172{bottom:222.720000pt;}
.y18f_c00172{bottom:223.493333pt;}
.y191_c00172{bottom:226.560000pt;}
.y189_c00172{bottom:227.333333pt;}
.y18d_c00172{bottom:228.866667pt;}
.y18a_c00172{bottom:230.400000pt;}
.y18b_c00172{bottom:231.933333pt;}
.y18c_c00172{bottom:232.706667pt;}
.y188_c00172{bottom:233.466667pt;}
.y186_c00172{bottom:245.760000pt;}
.y185_c00172{bottom:246.533333pt;}
.y180_c00172{bottom:248.066667pt;}
.y183_c00172{bottom:248.826667pt;}
.y181_c00172{bottom:249.600000pt;}
.y187_c00172{bottom:250.373333pt;}
.y17f_c00172{bottom:251.133333pt;}
.y182_c00172{bottom:251.906667pt;}
.y184_c00172{bottom:253.440000pt;}
.y17d_c00172{bottom:261.120000pt;}
.y17e_c00172{bottom:261.893333pt;}
.y17c_c00172{bottom:262.653333pt;}
.y17a_c00172{bottom:264.186667pt;}
.y179_c00172{bottom:264.960000pt;}
.y172_c00172{bottom:265.733333pt;}
.y177_c00172{bottom:270.333333pt;}
.y174_c00172{bottom:272.640000pt;}
.y17b_c00172{bottom:274.173333pt;}
.y178_c00172{bottom:275.706667pt;}
.y176_c00172{bottom:276.480000pt;}
.y173_c00172{bottom:277.253333pt;}
.y175_c00172{bottom:278.013333pt;}
.y16e_c00172{bottom:288.773333pt;}
.y170_c00172{bottom:289.533333pt;}
.y171_c00172{bottom:290.306667pt;}
.y165_c00172{bottom:291.066667pt;}
.y16a_c00172{bottom:291.840000pt;}
.y16f_c00172{bottom:292.613333pt;}
.y16b_c00172{bottom:293.373333pt;}
.y166_c00172{bottom:294.146667pt;}
.y16d_c00172{bottom:294.906667pt;}
.y168_c00172{bottom:296.453333pt;}
.y16c_c00172{bottom:297.213333pt;}
.y169_c00172{bottom:298.746667pt;}
.y167_c00172{bottom:299.520000pt;}
.y161_c00172{bottom:312.573333pt;}
.y15e_c00172{bottom:314.106667pt;}
.y160_c00172{bottom:315.653333pt;}
.y163_c00172{bottom:316.413333pt;}
.y164_c00172{bottom:317.186667pt;}
.y162_c00172{bottom:317.946667pt;}
.y15d_c00172{bottom:318.720000pt;}
.y15f_c00172{bottom:321.026667pt;}
.y158_c00172{bottom:334.080000pt;}
.y15a_c00172{bottom:334.853333pt;}
.y157_c00172{bottom:335.613333pt;}
.y154_c00172{bottom:336.386667pt;}
.y153_c00172{bottom:337.146667pt;}
.y151_c00172{bottom:337.920000pt;}
.y150_c00172{bottom:338.693333pt;}
.y15c_c00172{bottom:339.453333pt;}
.y15b_c00172{bottom:340.226667pt;}
.y159_c00172{bottom:340.986667pt;}
.y156_c00172{bottom:341.760000pt;}
.y155_c00172{bottom:342.533333pt;}
.y152_c00172{bottom:344.066667pt;}
.y14e_c00172{bottom:347.906667pt;}
.y14f_c00172{bottom:353.280000pt;}
.y14c_c00172{bottom:355.586667pt;}
.y14b_c00172{bottom:357.120000pt;}
.y149_c00172{bottom:358.653333pt;}
.y14a_c00172{bottom:360.186667pt;}
.y145_c00172{bottom:360.960000pt;}
.y14d_c00172{bottom:361.733333pt;}
.y148_c00172{bottom:362.493333pt;}
.y146_c00172{bottom:365.573333pt;}
.y147_c00172{bottom:366.333333pt;}
.y144_c00172{bottom:377.853333pt;}
.y142_c00172{bottom:378.626667pt;}
.y140_c00172{bottom:380.160000pt;}
.y143_c00172{bottom:380.933333pt;}
.y13d_c00172{bottom:381.693333pt;}
.y13f_c00172{bottom:385.533333pt;}
.y13e_c00172{bottom:386.306667pt;}
.y141_c00172{bottom:387.066667pt;}
.y13c_c00172{bottom:387.840000pt;}
.y13b_c00172{bottom:400.133333pt;}
.y137_c00172{bottom:401.666667pt;}
.y136_c00172{bottom:402.426667pt;}
.y134_c00172{bottom:403.200000pt;}
.y133_c00172{bottom:403.973333pt;}
.y139_c00172{bottom:404.733333pt;}
.y13a_c00172{bottom:407.813333pt;}
.y138_c00172{bottom:408.573333pt;}
.y135_c00172{bottom:409.346667pt;}
.y131_c00172{bottom:422.400000pt;}
.y12e_c00172{bottom:423.933333pt;}
.y12a_c00172{bottom:426.240000pt;}
.y12c_c00172{bottom:427.773333pt;}
.y132_c00172{bottom:428.546667pt;}
.y130_c00172{bottom:429.306667pt;}
.y12f_c00172{bottom:430.080000pt;}
.y12d_c00172{bottom:430.853333pt;}
.y12b_c00172{bottom:432.386667pt;}
.y126_c00172{bottom:445.440000pt;}
.y125_c00172{bottom:446.213333pt;}
.y124_c00172{bottom:446.973333pt;}
.y129_c00172{bottom:447.746667pt;}
.y123_c00172{bottom:449.280000pt;}
.y128_c00172{bottom:450.053333pt;}
.y127_c00172{bottom:450.813333pt;}
.y120_c00172{bottom:452.346667pt;}
.y122_c00172{bottom:453.120000pt;}
.y121_c00172{bottom:455.426667pt;}
.y11f_c00172{bottom:457.733333pt;}
.y11e_c00172{bottom:466.946667pt;}
.y11c_c00172{bottom:469.253333pt;}
.y11b_c00172{bottom:470.786667pt;}
.y11a_c00172{bottom:473.853333pt;}
.y11d_c00172{bottom:474.626667pt;}
.y117_c00172{bottom:491.520000pt;}
.y116_c00172{bottom:492.293333pt;}
.y118_c00172{bottom:493.053333pt;}
.y119_c00172{bottom:500.733333pt;}
.y115_c00172{bottom:510.720000pt;}
.y10e_c00172{bottom:513.026667pt;}
.y111_c00172{bottom:514.560000pt;}
.y10f_c00172{bottom:515.333333pt;}
.y112_c00172{bottom:516.866667pt;}
.y114_c00172{bottom:519.173333pt;}
.y113_c00172{bottom:519.933333pt;}
.y110_c00172{bottom:521.466667pt;}
.y10d_c00172{bottom:534.533333pt;}
.y108_c00172{bottom:536.066667pt;}
.y109_c00172{bottom:537.600000pt;}
.y107_c00172{bottom:539.906667pt;}
.y10c_c00172{bottom:541.440000pt;}
.y10b_c00172{bottom:542.213333pt;}
.y10a_c00172{bottom:543.746667pt;}
.y105_c00172{bottom:557.573333pt;}
.y103_c00172{bottom:558.333333pt;}
.yff_c00172{bottom:559.106667pt;}
.y101_c00172{bottom:559.866667pt;}
.y104_c00172{bottom:560.640000pt;}
.y106_c00172{bottom:561.413333pt;}
.y100_c00172{bottom:566.013333pt;}
.y102_c00172{bottom:566.786667pt;}
.yfe_c00172{bottom:576.773333pt;}
.yfb_c00172{bottom:579.066667pt;}
.yfa_c00172{bottom:580.613333pt;}
.yf5_c00172{bottom:581.373333pt;}
.yf7_c00172{bottom:582.146667pt;}
.yfc_c00172{bottom:583.680000pt;}
.yfd_c00172{bottom:585.213333pt;}
.yf6_c00172{bottom:587.520000pt;}
.yf9_c00172{bottom:588.293333pt;}
.yf8_c00172{bottom:589.053333pt;}
.yf4_c00172{bottom:600.573333pt;}
.yf3_c00172{bottom:601.346667pt;}
.yf0_c00172{bottom:602.106667pt;}
.yf1_c00172{bottom:602.880000pt;}
.yec_c00172{bottom:603.653333pt;}
.yed_c00172{bottom:607.493333pt;}
.yf2_c00172{bottom:608.253333pt;}
.yee_c00172{bottom:609.026667pt;}
.yef_c00172{bottom:609.786667pt;}
.yeb_c00172{bottom:610.560000pt;}
.yea_c00172{bottom:618.240000pt;}
.ye8_c00172{bottom:622.080000pt;}
.ye7_c00172{bottom:622.853333pt;}
.ye6_c00172{bottom:623.613333pt;}
.ye5_c00172{bottom:624.386667pt;}
.ye2_c00172{bottom:625.146667pt;}
.ye9_c00172{bottom:628.226667pt;}
.ye3_c00172{bottom:628.986667pt;}
.ye4_c00172{bottom:629.760000pt;}
.ye1_c00172{bottom:631.293333pt;}
.ydf_c00172{bottom:643.586667pt;}
.ye0_c00172{bottom:644.346667pt;}
.ydd_c00172{bottom:645.120000pt;}
.yda_c00172{bottom:646.653333pt;}
.ydb_c00172{bottom:647.426667pt;}
.yde_c00172{bottom:651.266667pt;}
.ydc_c00172{bottom:653.573333pt;}
.yd9_c00172{bottom:665.093333pt;}
.yd6_c00172{bottom:666.626667pt;}
.yd4_c00172{bottom:668.933333pt;}
.yd8_c00172{bottom:669.693333pt;}
.yd3_c00172{bottom:671.226667pt;}
.yd7_c00172{bottom:672.773333pt;}
.yd2_c00172{bottom:673.533333pt;}
.yd5_c00172{bottom:674.306667pt;}
.yd1_c00172{bottom:675.840000pt;}
.ycf_c00172{bottom:688.893333pt;}
.yce_c00172{bottom:689.666667pt;}
.ycc_c00172{bottom:690.426667pt;}
.ycb_c00172{bottom:691.200000pt;}
.ycd_c00172{bottom:694.266667pt;}
.yca_c00172{bottom:695.040000pt;}
.yd0_c00172{bottom:695.813333pt;}
.yc9_c00172{bottom:696.573333pt;}
.yc8_c00172{bottom:698.106667pt;}
.yc5_c00172{bottom:710.400000pt;}
.yc2_c00172{bottom:711.173333pt;}
.ybf_c00172{bottom:711.933333pt;}
.yc0_c00172{bottom:712.706667pt;}
.yc1_c00172{bottom:713.466667pt;}
.yc4_c00172{bottom:715.773333pt;}
.yc6_c00172{bottom:716.546667pt;}
.yc3_c00172{bottom:717.306667pt;}
.yc7_c00172{bottom:719.613333pt;}
.ybe_c00172{bottom:720.386667pt;}
.yba_c00172{bottom:731.906667pt;}
.ybd_c00172{bottom:732.666667pt;}
.yb6_c00172{bottom:733.440000pt;}
.yb8_c00172{bottom:734.213333pt;}
.yb7_c00172{bottom:734.973333pt;}
.yb9_c00172{bottom:735.746667pt;}
.ybb_c00172{bottom:736.506667pt;}
.ybc_c00172{bottom:738.813333pt;}
.yb5_c00172{bottom:741.120000pt;}
.yb4_c00172{bottom:754.173333pt;}
.yb1_c00172{bottom:754.946667pt;}
.yae_c00172{bottom:755.706667pt;}
.yb0_c00172{bottom:756.480000pt;}
.yb3_c00172{bottom:757.253333pt;}
.yb2_c00172{bottom:761.093333pt;}
.yaf_c00172{bottom:762.626667pt;}
.yad_c00172{bottom:774.906667pt;}
.yac_c00172{bottom:775.680000pt;}
.yab_c00172{bottom:776.453333pt;}
.ya5_c00172{bottom:777.213333pt;}
.ya6_c00172{bottom:777.986667pt;}
.ya7_c00172{bottom:778.746667pt;}
.ya8_c00172{bottom:780.293333pt;}
.yaa_c00172{bottom:783.360000pt;}
.ya9_c00172{bottom:784.133333pt;}
.ya1_c00172{bottom:797.946667pt;}
.ya4_c00172{bottom:798.720000pt;}
.ya2_c00172{bottom:799.493333pt;}
.y9d_c00172{bottom:800.253333pt;}
.y9e_c00172{bottom:801.026667pt;}
.ya3_c00172{bottom:803.333333pt;}
.ya0_c00172{bottom:805.626667pt;}
.y9f_c00172{bottom:806.400000pt;}
.y9c_c00172{bottom:815.613333pt;}
.y99_c00172{bottom:821.760000pt;}
.y97_c00172{bottom:822.533333pt;}
.y96_c00172{bottom:823.293333pt;}
.y9a_c00172{bottom:824.826667pt;}
.y9b_c00172{bottom:827.906667pt;}
.y98_c00172{bottom:829.440000pt;}
.y95_c00172{bottom:843.266667pt;}
.y90_c00172{bottom:844.026667pt;}
.y91_c00172{bottom:844.800000pt;}
.y92_c00172{bottom:845.573333pt;}
.y93_c00172{bottom:849.413333pt;}
.y94_c00172{bottom:850.173333pt;}
.y8f_c00172{bottom:853.253333pt;}
.y8e_c00172{bottom:857.853333pt;}
.y8b_c00172{bottom:864.773333pt;}
.y88_c00172{bottom:865.533333pt;}
.y8d_c00172{bottom:866.306667pt;}
.y8a_c00172{bottom:867.066667pt;}
.y86_c00172{bottom:867.840000pt;}
.y8c_c00172{bottom:869.373333pt;}
.y87_c00172{bottom:872.453333pt;}
.y89_c00172{bottom:873.986667pt;}
.y7d_c00172{bottom:880.893333pt;}
.y84_c00172{bottom:886.266667pt;}
.y82_c00172{bottom:887.813333pt;}
.y80_c00172{bottom:888.573333pt;}
.y81_c00172{bottom:889.346667pt;}
.y7f_c00172{bottom:890.106667pt;}
.y83_c00172{bottom:894.720000pt;}
.y7e_c00172{bottom:896.253333pt;}
.y85_c00172{bottom:897.786667pt;}
.y7b_c00172{bottom:910.853333pt;}
.y79_c00172{bottom:911.613333pt;}
.y7a_c00172{bottom:915.453333pt;}
.y7c_c00172{bottom:916.986667pt;}
.y78_c00172{bottom:917.760000pt;}
.y77_c00172{bottom:918.533333pt;}
.y76_c00172{bottom:927.746667pt;}
.y74_c00172{bottom:933.120000pt;}
.y73_c00172{bottom:933.893333pt;}
.y72_c00172{bottom:934.653333pt;}
.y70_c00172{bottom:935.426667pt;}
.y71_c00172{bottom:939.266667pt;}
.y6f_c00172{bottom:940.026667pt;}
.y6e_c00172{bottom:940.800000pt;}
.y75_c00172{bottom:950.013333pt;}
.y69_c00172{bottom:955.386667pt;}
.y68_c00172{bottom:956.160000pt;}
.y6a_c00172{bottom:956.933333pt;}
.y6b_c00172{bottom:960.773333pt;}
.y6d_c00172{bottom:961.533333pt;}
.y6c_c00172{bottom:963.066667pt;}
.y67_c00172{bottom:976.893333pt;}
.y63_c00172{bottom:977.666667pt;}
.y60_c00172{bottom:978.426667pt;}
.y64_c00172{bottom:981.506667pt;}
.y62_c00172{bottom:982.266667pt;}
.y66_c00172{bottom:983.040000pt;}
.y65_c00172{bottom:983.813333pt;}
.y61_c00172{bottom:984.573333pt;}
.y5b_c00172{bottom:998.400000pt;}
.y59_c00172{bottom:999.933333pt;}
.y56_c00172{bottom:1000.706667pt;}
.y58_c00172{bottom:1003.773333pt;}
.y5c_c00172{bottom:1004.546667pt;}
.y5a_c00172{bottom:1005.306667pt;}
.y57_c00172{bottom:1006.853333pt;}
.y55_c00172{bottom:1007.613333pt;}
.y5d_c00172{bottom:1008.386667pt;}
.y5f_c00172{bottom:1012.226667pt;}
.y5e_c00172{bottom:1014.533333pt;}
.y54_c00172{bottom:1020.666667pt;}
.y4f_c00172{bottom:1022.213333pt;}
.y51_c00172{bottom:1023.746667pt;}
.y4e_c00172{bottom:1024.506667pt;}
.y50_c00172{bottom:1026.813333pt;}
.y53_c00172{bottom:1027.586667pt;}
.y4d_c00172{bottom:1028.346667pt;}
.y52_c00172{bottom:1029.120000pt;}
.y4c_c00172{bottom:1042.173333pt;}
.y4b_c00172{bottom:1042.946667pt;}
.y4a_c00172{bottom:1043.706667pt;}
.y49_c00172{bottom:1044.480000pt;}
.y47_c00172{bottom:1065.213333pt;}
.y43_c00172{bottom:1066.746667pt;}
.y41_c00172{bottom:1068.293333pt;}
.y44_c00172{bottom:1070.586667pt;}
.y48_c00172{bottom:1071.360000pt;}
.y45_c00172{bottom:1072.133333pt;}
.y46_c00172{bottom:1072.893333pt;}
.y42_c00172{bottom:1073.666667pt;}
.y3f_c00172{bottom:1086.720000pt;}
.y40_c00172{bottom:1088.253333pt;}
.y3a_c00172{bottom:1089.026667pt;}
.y3e_c00172{bottom:1089.786667pt;}
.y3b_c00172{bottom:1092.866667pt;}
.y3d_c00172{bottom:1093.626667pt;}
.y3c_c00172{bottom:1095.933333pt;}
.y37_c00172{bottom:1108.986667pt;}
.y35_c00172{bottom:1110.533333pt;}
.y33_c00172{bottom:1111.293333pt;}
.y36_c00172{bottom:1112.826667pt;}
.y39_c00172{bottom:1115.906667pt;}
.y38_c00172{bottom:1116.666667pt;}
.y34_c00172{bottom:1117.440000pt;}
.y30_c00172{bottom:1131.266667pt;}
.y2e_c00172{bottom:1132.026667pt;}
.y2d_c00172{bottom:1132.800000pt;}
.y2f_c00172{bottom:1133.573333pt;}
.y2c_c00172{bottom:1137.413333pt;}
.y32_c00172{bottom:1138.173333pt;}
.y31_c00172{bottom:1138.946667pt;}
.y2b_c00172{bottom:1139.706667pt;}
.y27_c00172{bottom:1153.533333pt;}
.y26_c00172{bottom:1155.066667pt;}
.y29_c00172{bottom:1157.373333pt;}
.y28_c00172{bottom:1158.146667pt;}
.y25_c00172{bottom:1159.680000pt;}
.y2a_c00172{bottom:1160.453333pt;}
.y23_c00172{bottom:1161.213333pt;}
.y24_c00172{bottom:1161.986667pt;}
.y1e_c00172{bottom:1175.813333pt;}
.y1f_c00172{bottom:1176.573333pt;}
.y19_c00172{bottom:1177.346667pt;}
.y1d_c00172{bottom:1178.106667pt;}
.y20_c00172{bottom:1179.653333pt;}
.y22_c00172{bottom:1181.946667pt;}
.y21_c00172{bottom:1182.720000pt;}
.y1c_c00172{bottom:1183.493333pt;}
.y18_c00172{bottom:1184.253333pt;}
.y1b_c00172{bottom:1185.026667pt;}
.y1a_c00172{bottom:1196.546667pt;}
.y17_c00172{bottom:1198.080000pt;}
.y10_c00172{bottom:1198.853333pt;}
.y12_c00172{bottom:1200.386667pt;}
.y16_c00172{bottom:1201.920000pt;}
.y11_c00172{bottom:1203.453333pt;}
.y13_c00172{bottom:1204.226667pt;}
.y15_c00172{bottom:1205.760000pt;}
.y14_c00172{bottom:1206.533333pt;}
.yf_c00172{bottom:1207.293333pt;}
.yd_c00172{bottom:1224.186667pt;}
.yc_c00172{bottom:1224.960000pt;}
.yb_c00172{bottom:1225.733333pt;}
.ye_c00172{bottom:1226.493333pt;}
.y2_c00172{bottom:1244.160000pt;}
.ya_c00172{bottom:1261.826667pt;}
.y6_c00172{bottom:1262.586667pt;}
.y5_c00172{bottom:1264.133333pt;}
.y4_c00172{bottom:1264.893333pt;}
.y8_c00172{bottom:1265.666667pt;}
.y3_c00172{bottom:1266.426667pt;}
.y9_c00172{bottom:1267.200000pt;}
.y7_c00172{bottom:1269.506667pt;}
.y1_c00172{bottom:1274.106667pt;}
.h6_c00172{height:2.764500pt;}
.h4_c00172{height:4.799479pt;}
.h2_c00172{height:5.519401pt;}
.h9_c00172{height:5.857833pt;}
.h5_c00172{height:8.303099pt;}
.h23_c00172{height:11.038802pt;}
.h7_c00172{height:11.652734pt;}
.h17_c00172{height:13.822500pt;}
.h8_c00172{height:16.606198pt;}
.hc_c00172{height:19.341901pt;}
.h1c_c00172{height:22.125599pt;}
.h25_c00172{height:24.861302pt;}
.h20_c00172{height:27.645000pt;}
.h24_c00172{height:30.428698pt;}
.h18_c00172{height:33.164401pt;}
.h22_c00172{height:35.948099pt;}
.h21_c00172{height:38.683802pt;}
.h26_c00172{height:41.467500pt;}
.h1d_c00172{height:44.251198pt;}
.h1e_c00172{height:46.986901pt;}
.h10_c00172{height:49.770599pt;}
.h1a_c00172{height:52.506302pt;}
.h11_c00172{height:55.290000pt;}
.hf_c00172{height:58.073698pt;}
.h1b_c00172{height:60.809401pt;}
.h13_c00172{height:63.593099pt;}
.he_c00172{height:66.328802pt;}
.h14_c00172{height:69.112500pt;}
.h19_c00172{height:71.896198pt;}
.h1f_c00172{height:74.631901pt;}
.h16_c00172{height:77.415599pt;}
.hb_c00172{height:80.151302pt;}
.h12_c00172{height:82.935000pt;}
.ha_c00172{height:85.718698pt;}
.h15_c00172{height:88.454401pt;}
.h27_c00172{height:91.238099pt;}
.hd_c00172{height:93.973802pt;}
.h28_c00172{height:96.757500pt;}
.h3_c00172{height:118.883099pt;}
.h0_c00172{height:1353.986667pt;}
.h1_c00172{height:1354.000000pt;}
.w0_c00172{width:984.573333pt;}
.w1_c00172{width:984.666667pt;}
.x0_c00172{left:0.000000pt;}
.x99_c00172{left:152.066667pt;}
.xb0_c00172{left:164.346667pt;}
.x8a_c00172{left:165.893333pt;}
.x91_c00172{left:168.186667pt;}
.x100_c00172{left:192.773333pt;}
.x67_c00172{left:194.306667pt;}
.xef_c00172{left:198.146667pt;}
.xfc_c00172{left:199.680000pt;}
.x59_c00172{left:201.213333pt;}
.xb8_c00172{left:206.586667pt;}
.xb9_c00172{left:208.133333pt;}
.x61_c00172{left:209.666667pt;}
.xa2_c00172{left:211.973333pt;}
.x13_c00172{left:214.266667pt;}
.x48_c00172{left:217.346667pt;}
.x14_c00172{left:218.880000pt;}
.xa5_c00172{left:220.413333pt;}
.x23_c00172{left:221.946667pt;}
.x7e_c00172{left:223.493333pt;}
.xf9_c00172{left:225.026667pt;}
.xfd_c00172{left:234.240000pt;}
.x24_c00172{left:242.693333pt;}
.x9a_c00172{left:251.133333pt;}
.xec_c00172{left:255.746667pt;}
.x49_c00172{left:261.120000pt;}
.xa6_c00172{left:262.653333pt;}
.x15_c00172{left:264.960000pt;}
.x7a_c00172{left:266.493333pt;}
.xfa_c00172{left:268.800000pt;}
.x31_c00172{left:270.333333pt;}
.x16_c00172{left:272.640000pt;}
.x51_c00172{left:279.546667pt;}
.x3e_c00172{left:282.626667pt;}
.xd5_c00172{left:284.160000pt;}
.x5a_c00172{left:285.693333pt;}
.x6f_c00172{left:287.226667pt;}
.xc8_c00172{left:288.773333pt;}
.x68_c00172{left:291.066667pt;}
.x92_c00172{left:293.373333pt;}
.x9b_c00172{left:294.906667pt;}
.x8b_c00172{left:297.213333pt;}
.xa8_c00172{left:298.746667pt;}
.x69_c00172{left:301.053333pt;}
.xe8_c00172{left:304.133333pt;}
.x93_c00172{left:308.733333pt;}
.x7f_c00172{left:311.813333pt;}
.x17_c00172{left:314.880000pt;}
.x25_c00172{left:316.413333pt;}
.x32_c00172{left:320.253333pt;}
.xf8_c00172{left:321.786667pt;}
.x18_c00172{left:323.333333pt;}
.x84_c00172{left:324.866667pt;}
.x70_c00172{left:327.933333pt;}
.xb5_c00172{left:329.466667pt;}
.x3_c00172{left:331.013333pt;}
.x1_c00172{left:333.306667pt;}
.x94_c00172{left:334.853333pt;}
.x52_c00172{left:336.386667pt;}
.x33_c00172{left:339.453333pt;}
.xba_c00172{left:340.986667pt;}
.x4a_c00172{left:343.293333pt;}
.x4_c00172{left:344.826667pt;}
.x62_c00172{left:346.373333pt;}
.x5_c00172{left:347.906667pt;}
.x3f_c00172{left:351.746667pt;}
.x9c_c00172{left:354.053333pt;}
.x26_c00172{left:355.586667pt;}
.xa9_c00172{left:357.893333pt;}
.x27_c00172{left:360.186667pt;}
.x6_c00172{left:361.733333pt;}
.xed_c00172{left:364.800000pt;}
.x7_c00172{left:366.333333pt;}
.x71_c00172{left:367.866667pt;}
.xbe_c00172{left:369.413333pt;}
.x8_c00172{left:370.946667pt;}
.x5b_c00172{left:374.013333pt;}
.x9_c00172{left:376.320000pt;}
.x72_c00172{left:378.626667pt;}
.xc9_c00172{left:380.933333pt;}
.x2_c00172{left:383.226667pt;}
.xee_c00172{left:386.306667pt;}
.xa_c00172{left:387.840000pt;}
.xce_c00172{left:389.373333pt;}
.x34_c00172{left:390.906667pt;}
.xfe_c00172{left:392.453333pt;}
.x85_c00172{left:395.520000pt;}
.xaa_c00172{left:398.586667pt;}
.x19_c00172{left:400.133333pt;}
.x8c_c00172{left:401.666667pt;}
.xe_c00172{left:405.506667pt;}
.x73_c00172{left:407.040000pt;}
.xd1_c00172{left:408.573333pt;}
.xc5_c00172{left:410.106667pt;}
.x53_c00172{left:412.413333pt;}
.x101_c00172{left:413.946667pt;}
.x1a_c00172{left:417.786667pt;}
.x86_c00172{left:419.333333pt;}
.x4b_c00172{left:420.866667pt;}
.x54_c00172{left:423.173333pt;}
.x35_c00172{left:424.706667pt;}
.x40_c00172{left:427.013333pt;}
.xb_c00172{left:429.306667pt;}
.xbf_c00172{left:430.853333pt;}
.xc_c00172{left:433.920000pt;}
.xf0_c00172{left:436.226667pt;}
.xcf_c00172{left:440.066667pt;}
.xb1_c00172{left:442.373333pt;}
.x80_c00172{left:446.213333pt;}
.xd2_c00172{left:448.506667pt;}
.xe5_c00172{left:450.053333pt;}
.xb6_c00172{left:453.120000pt;}
.xc3_c00172{left:454.653333pt;}
.x6a_c00172{left:456.186667pt;}
.x28_c00172{left:457.733333pt;}
.xca_c00172{left:459.266667pt;}
.x41_c00172{left:461.573333pt;}
.xd_c00172{left:463.866667pt;}
.x1b_c00172{left:466.173333pt;}
.x7b_c00172{left:468.480000pt;}
.xf3_c00172{left:472.320000pt;}
.x74_c00172{left:473.853333pt;}
.x63_c00172{left:476.933333pt;}
.x36_c00172{left:478.466667pt;}
.x55_c00172{left:480.000000pt;}
.xe3_c00172{left:481.533333pt;}
.x29_c00172{left:483.066667pt;}
.xe2_c00172{left:486.146667pt;}
.xcb_c00172{left:487.680000pt;}
.x95_c00172{left:490.746667pt;}
.x1c_c00172{left:494.586667pt;}
.x4c_c00172{left:496.133333pt;}
.x87_c00172{left:499.973333pt;}
.xab_c00172{left:507.653333pt;}
.xf_c00172{left:509.946667pt;}
.xc6_c00172{left:512.253333pt;}
.x6b_c00172{left:513.786667pt;}
.x9d_c00172{left:516.093333pt;}
.x2a_c00172{left:518.400000pt;}
.xe6_c00172{left:519.933333pt;}
.x1d_c00172{left:521.466667pt;}
.xc0_c00172{left:523.773333pt;}
.xa3_c00172{left:526.080000pt;}
.xf1_c00172{left:527.613333pt;}
.x1e_c00172{left:530.693333pt;}
.x81_c00172{left:533.760000pt;}
.xb7_c00172{left:536.826667pt;}
.xe9_c00172{left:539.133333pt;}
.x9e_c00172{left:542.213333pt;}
.x6c_c00172{left:543.746667pt;}
.xcc_c00172{left:545.280000pt;}
.xd3_c00172{left:546.813333pt;}
.xbb_c00172{left:549.120000pt;}
.x5c_c00172{left:552.960000pt;}
.xd6_c00172{left:554.493333pt;}
.x1f_c00172{left:556.026667pt;}
.xac_c00172{left:558.333333pt;}
.x56_c00172{left:560.640000pt;}
.x2b_c00172{left:562.946667pt;}
.x37_c00172{left:564.480000pt;}
.xda_c00172{left:568.320000pt;}
.xdf_c00172{left:569.853333pt;}
.xd4_c00172{left:572.160000pt;}
.xb2_c00172{left:573.693333pt;}
.xd7_c00172{left:575.226667pt;}
.xad_c00172{left:578.306667pt;}
.x38_c00172{left:581.373333pt;}
.xbc_c00172{left:583.680000pt;}
.x5d_c00172{left:586.746667pt;}
.x10_c00172{left:589.826667pt;}
.xea_c00172{left:593.666667pt;}
.x42_c00172{left:595.200000pt;}
.xf2_c00172{left:598.266667pt;}
.x9f_c00172{left:599.813333pt;}
.x4d_c00172{left:602.880000pt;}
.x43_c00172{left:604.413333pt;}
.xcd_c00172{left:605.946667pt;}
.x2c_c00172{left:607.493333pt;}
.xa7_c00172{left:610.560000pt;}
.xb3_c00172{left:612.866667pt;}
.x20_c00172{left:614.400000pt;}
.x4e_c00172{left:617.466667pt;}
.xe0_c00172{left:619.013333pt;}
.x82_c00172{left:620.546667pt;}
.x44_c00172{left:622.080000pt;}
.xde_c00172{left:623.613333pt;}
.x64_c00172{left:625.920000pt;}
.x8d_c00172{left:628.226667pt;}
.x96_c00172{left:630.533333pt;}
.xe4_c00172{left:632.066667pt;}
.xa0_c00172{left:635.906667pt;}
.x21_c00172{left:637.440000pt;}
.x39_c00172{left:638.973333pt;}
.x97_c00172{left:640.506667pt;}
.xd8_c00172{left:642.813333pt;}
.xc1_c00172{left:645.120000pt;}
.x6d_c00172{left:647.426667pt;}
.x7c_c00172{left:648.960000pt;}
.x57_c00172{left:651.266667pt;}
.xf4_c00172{left:652.800000pt;}
.x65_c00172{left:655.106667pt;}
.x75_c00172{left:658.946667pt;}
.x2d_c00172{left:660.480000pt;}
.xdb_c00172{left:663.546667pt;}
.x7d_c00172{left:665.853333pt;}
.x76_c00172{left:668.933333pt;}
.xb4_c00172{left:670.466667pt;}
.x45_c00172{left:673.533333pt;}
.x8e_c00172{left:675.066667pt;}
.xa4_c00172{left:676.613333pt;}
.xae_c00172{left:678.146667pt;}
.x3a_c00172{left:680.453333pt;}
.x4f_c00172{left:682.746667pt;}
.x102_c00172{left:685.053333pt;}
.xaf_c00172{left:687.360000pt;}
.xbd_c00172{left:693.506667pt;}
.x83_c00172{left:695.040000pt;}
.xe1_c00172{left:696.573333pt;}
.x11_c00172{left:701.188971pt;}
.xfb_c00172{left:702.720000pt;}
.x88_c00172{left:704.253333pt;}
.xc2_c00172{left:707.333333pt;}
.xdc_c00172{left:711.933333pt;}
.x5e_c00172{left:713.466667pt;}
.x3b_c00172{left:715.013333pt;}
.xeb_c00172{left:716.546667pt;}
.x98_c00172{left:718.080000pt;}
.x3c_c00172{left:721.920000pt;}
.x103_c00172{left:723.453333pt;}
.x50_c00172{left:725.760000pt;}
.x66_c00172{left:727.293333pt;}
.x5f_c00172{left:729.600000pt;}
.x104_c00172{left:732.666667pt;}
.x2e_c00172{left:734.213333pt;}
.xdd_c00172{left:738.053333pt;}
.x22_c00172{left:740.346667pt;}
.x46_c00172{left:741.893333pt;}
.x2f_c00172{left:743.426667pt;}
.x6e_c00172{left:744.960000pt;}
.xc7_c00172{left:746.493333pt;}
.x58_c00172{left:748.800000pt;}
.xff_c00172{left:750.333333pt;}
.xa1_c00172{left:752.640000pt;}
.xf5_c00172{left:754.946667pt;}
.x8f_c00172{left:756.480000pt;}
.x60_c00172{left:758.013333pt;}
.xd9_c00172{left:760.320000pt;}
.x30_c00172{left:762.626667pt;}
.x3d_c00172{left:764.160000pt;}
.x12_c00172{left:768.773333pt;}
.xd0_c00172{left:771.840000pt;}
.x90_c00172{left:777.213333pt;}
.x47_c00172{left:779.520000pt;}
.xc4_c00172{left:787.200000pt;}
.x77_c00172{left:790.266667pt;}
.xe7_c00172{left:791.813333pt;}
.x89_c00172{left:794.106667pt;}
.x78_c00172{left:798.720000pt;}
.xf6_c00172{left:800.253333pt;}
.x79_c00172{left:806.400000pt;}
.xf7_c00172{left:812.546667pt;}
.x105_c00172{left:845.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_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_18239b9b529a52b759144515.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.109863;font-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_c00173{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m63_c00173{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00173{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m69_c00173{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m18b_c00173{transform:matrix(0.087725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087725,0.000000,0.000000,0.250000,0,0);}
.mc5_c00173{transform:matrix(0.088875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088875,0.000000,0.000000,0.250000,0,0);}
.me8_c00173{transform:matrix(0.090775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090775,0.000000,0.000000,0.250000,0,0);}
.m7_c00173{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.mfa_c00173{transform:matrix(0.095700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095700,0.000000,0.000000,0.250000,0,0);}
.m13e_c00173{transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);}
.me3_c00173{transform:matrix(0.102600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102600,0.000000,0.000000,0.250000,0,0);}
.m129_c00173{transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);}
.m18e_c00173{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);}
.m156_c00173{transform:matrix(0.106450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106450,0.000000,0.000000,0.250000,0,0);}
.m10e_c00173{transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);}
.m24_c00173{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m143_c00173{transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);}
.m104_c00173{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m188_c00173{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);}
.m13a_c00173{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m198_c00173{transform:matrix(0.112100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112100,0.000000,0.000000,0.250000,0,0);}
.m16c_c00173{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.ma0_c00173{transform:matrix(0.113400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113400,0.000000,0.000000,0.250000,0,0);}
.m187_c00173{transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);}
.m37_c00173{transform:matrix(0.115150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115150,0.000000,0.000000,0.250000,0,0);}
.m139_c00173{transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);}
.md_c00173{transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);}
.mfd_c00173{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);}
.m10c_c00173{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m80_c00173{transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);}
.m10d_c00173{transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);}
.m196_c00173{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m14a_c00173{transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);}
.ma_c00173{transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);}
.m159_c00173{transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);}
.m142_c00173{transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);}
.mde_c00173{transform:matrix(0.125200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125200,0.000000,0.000000,0.250000,0,0);}
.m170_c00173{transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);}
.m132_c00173{transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);}
.m14f_c00173{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);}
.mcd_c00173{transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);}
.m13c_c00173{transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);}
.m192_c00173{transform:matrix(0.130400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130400,0.000000,0.000000,0.250000,0,0);}
.m127_c00173{transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);}
.m99_c00173{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);}
.m6b_c00173{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);}
.m118_c00173{transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);}
.m190_c00173{transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);}
.m5e_c00173{transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);}
.m19d_c00173{transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);}
.m10b_c00173{transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);}
.m169_c00173{transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);}
.me5_c00173{transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);}
.m167_c00173{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.m107_c00173{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);}
.m182_c00173{transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);}
.m13_c00173{transform:matrix(0.136300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136300,0.000000,0.000000,0.250000,0,0);}
.m95_c00173{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m117_c00173{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00173{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.m122_c00173{transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);}
.m146_c00173{transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);}
.m155_c00173{transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);}
.m8a_c00173{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);}
.mff_c00173{transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);}
.m123_c00173{transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);}
.m61_c00173{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m116_c00173{transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);}
.m15f_c00173{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m5b_c00173{transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);}
.m9f_c00173{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m173_c00173{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);}
.m106_c00173{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m36_c00173{transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);}
.me_c00173{transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);}
.m2_c00173{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m140_c00173{transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);}
.mf9_c00173{transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);}
.m11e_c00173{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.m195_c00173{transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);}
.m148_c00173{transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);}
.m75_c00173{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);}
.me0_c00173{transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);}
.m78_c00173{transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);}
.mb0_c00173{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);}
.m92_c00173{transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);}
.mf8_c00173{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m199_c00173{transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);}
.m82_c00173{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m131_c00173{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);}
.m12b_c00173{transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);}
.m13d_c00173{transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);}
.m162_c00173{transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);}
.m160_c00173{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);}
.m119_c00173{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m77_c00173{transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);}
.m161_c00173{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);}
.m35_c00173{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);}
.m7a_c00173{transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);}
.m102_c00173{transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);}
.maa_c00173{transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);}
.mfc_c00173{transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);}
.m19b_c00173{transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);}
.m2f_c00173{transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);}
.m15c_c00173{transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);}
.m185_c00173{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);}
.m13f_c00173{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.m90_c00173{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.m18_c00173{transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);}
.m15b_c00173{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.m50_c00173{transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);}
.m86_c00173{transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);}
.m125_c00173{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);}
.m7d_c00173{transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);}
.mfe_c00173{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);}
.m16e_c00173{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);}
.m166_c00173{transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);}
.m186_c00173{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);}
.m165_c00173{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);}
.m18f_c00173{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);}
.m19e_c00173{transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);}
.ma6_c00173{transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);}
.m11c_c00173{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);}
.m183_c00173{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);}
.m149_c00173{transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);}
.m189_c00173{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.m113_c00173{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);}
.m4d_c00173{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);}
.m85_c00173{transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);}
.m18a_c00173{transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);}
.ma2_c00173{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);}
.m193_c00173{transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);}
.mcc_c00173{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);}
.m176_c00173{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);}
.m110_c00173{transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);}
.ma1_c00173{transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);}
.m157_c00173{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.m115_c00173{transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);}
.m179_c00173{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.md9_c00173{transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);}
.m11a_c00173{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m98_c00173{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m8e_c00173{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);}
.m135_c00173{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.maf_c00173{transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);}
.m45_c00173{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.m14d_c00173{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.mdd_c00173{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);}
.m16f_c00173{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m14b_c00173{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.m8d_c00173{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.m94_c00173{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.meb_c00173{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.m58_c00173{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m174_c00173{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m14c_c00173{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m4b_c00173{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.m111_c00173{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);}
.m120_c00173{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.mf_c00173{transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);}
.m17b_c00173{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.m19c_c00173{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m9e_c00173{transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);}
.mbc_c00173{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m4f_c00173{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.mbb_c00173{transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);}
.m72_c00173{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.m194_c00173{transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);}
.m121_c00173{transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);}
.mae_c00173{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);}
.mc2_c00173{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m17a_c00173{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m12c_c00173{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m138_c00173{transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);}
.mea_c00173{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.m11b_c00173{transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);}
.m6a_c00173{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m151_c00173{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.m83_c00173{transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);}
.m16_c00173{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.m3a_c00173{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.mf7_c00173{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.m1d_c00173{transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);}
.m17d_c00173{transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);}
.m153_c00173{transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);}
.m52_c00173{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m171_c00173{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m133_c00173{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m141_c00173{transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);}
.m6d_c00173{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m10f_c00173{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);}
.m81_c00173{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);}
.m114_c00173{transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);}
.mb4_c00173{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc8_c00173{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m19a_c00173{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.m11_c00173{transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);}
.mba_c00173{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.m87_c00173{transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);}
.m38_c00173{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);}
.mf0_c00173{transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);}
.mdc_c00173{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);}
.ma5_c00173{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);}
.m2e_c00173{transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);}
.me4_c00173{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.m15e_c00173{transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);}
.m1a_c00173{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.m76_c00173{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);}
.m73_c00173{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.m74_c00173{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);}
.m14e_c00173{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m19f_c00173{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);}
.mef_c00173{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);}
.mec_c00173{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);}
.mdf_c00173{transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);}
.m17c_c00173{transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);}
.m7f_c00173{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);}
.m16d_c00173{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.me9_c00173{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.mb9_c00173{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.md1_c00173{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.mf3_c00173{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);}
.m180_c00173{transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);}
.mee_c00173{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);}
.mac_c00173{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.mcb_c00173{transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);}
.m191_c00173{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m178_c00173{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.mc1_c00173{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.mda_c00173{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m17e_c00173{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m67_c00173{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);}
.md8_c00173{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.m177_c00173{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.m13b_c00173{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.m175_c00173{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.md6_c00173{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);}
.m152_c00173{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.m88_c00173{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.m68_c00173{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m79_c00173{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m55_c00173{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);}
.mc0_c00173{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m11f_c00173{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00173{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m17f_c00173{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m11d_c00173{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);}
.me7_c00173{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);}
.m48_c00173{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);}
.mc3_c00173{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);}
.m128_c00173{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m91_c00173{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);}
.m103_c00173{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.m4e_c00173{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.m29_c00173{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m96_c00173{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);}
.m7e_c00173{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.m32_c00173{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);}
.m16a_c00173{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);}
.m33_c00173{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);}
.me1_c00173{transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);}
.mb_c00173{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);}
.m41_c00173{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m84_c00173{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.m4a_c00173{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.m18c_c00173{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.m16b_c00173{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.mb3_c00173{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.ma8_c00173{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m93_c00173{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);}
.m136_c00173{transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);}
.mf4_c00173{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);}
.m60_c00173{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);}
.mb6_c00173{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);}
.m5d_c00173{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m30_c00173{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);}
.mc4_c00173{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);}
.m134_c00173{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m12e_c00173{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m130_c00173{transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);}
.m3f_c00173{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.md3_c00173{transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);}
.m9d_c00173{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.m3d_c00173{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);}
.m5a_c00173{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m34_c00173{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);}
.m163_c00173{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m8c_c00173{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.m5f_c00173{transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);}
.mf2_c00173{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);}
.m12d_c00173{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.mc7_c00173{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.me6_c00173{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.mc_c00173{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);}
.m18d_c00173{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.m12a_c00173{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.md7_c00173{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m70_c00173{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);}
.m8f_c00173{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m31_c00173{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m51_c00173{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.m3c_c00173{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.md5_c00173{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);}
.med_c00173{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);}
.m14_c00173{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);}
.mf5_c00173{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.mfb_c00173{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);}
.m1c_c00173{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m62_c00173{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m150_c00173{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m108_c00173{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.m7c_c00173{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m7b_c00173{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);}
.ma3_c00173{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);}
.mb5_c00173{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);}
.m10_c00173{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m15_c00173{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.m22_c00173{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);}
.m172_c00173{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m89_c00173{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.mb2_c00173{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.mdb_c00173{transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);}
.mc9_c00173{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.mbd_c00173{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);}
.m6f_c00173{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.m28_c00173{transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);}
.m9b_c00173{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);}
.m154_c00173{transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);}
.m21_c00173{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);}
.m15d_c00173{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.m6c_c00173{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.md2_c00173{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.me2_c00173{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);}
.md4_c00173{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m53_c00173{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);}
.mf1_c00173{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m97_c00173{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);}
.m71_c00173{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);}
.md0_c00173{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);}
.mbf_c00173{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.m4c_c00173{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);}
.m158_c00173{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m23_c00173{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);}
.m112_c00173{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);}
.m184_c00173{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);}
.m8b_c00173{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m59_c00173{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.mcf_c00173{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m64_c00173{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m47_c00173{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m1b_c00173{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);}
.m27_c00173{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.mf6_c00173{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m39_c00173{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);}
.m25_c00173{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00173{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);}
.m5_c00173{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);}
.m26_c00173{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);}
.m43_c00173{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);}
.m12_c00173{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00173{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m46_c00173{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);}
.m2a_c00173{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c00173{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);}
.m100_c00173{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);}
.m20_c00173{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00173{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12f_c00173{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m44_c00173{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00173{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);}
.m5c_c00173{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);}
.m181_c00173{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m65_c00173{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m126_c00173{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);}
.m109_c00173{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m19_c00173{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00173{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m56_c00173{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m42_c00173{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00173{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);}
.ma7_c00173{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m164_c00173{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m105_c00173{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);}
.m147_c00173{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m101_c00173{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00173{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);}
.mb8_c00173{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mce_c00173{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00173{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);}
.m9c_c00173{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m144_c00173{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00173{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c00173{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m54_c00173{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m57_c00173{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);}
.m137_c00173{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);}
.mb7_c00173{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mca_c00173{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00173{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m66_c00173{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4_c00173{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mad_c00173{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m15a_c00173{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);}
.mc6_c00173{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00173{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mab_c00173{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m49_c00173{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);}
.m3_c00173{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m168_c00173{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);}
.mb1_c00173{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00173{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);}
.m124_c00173{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m9_c00173{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m8_c00173{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m145_c00173{transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00173{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00173{transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00173{transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);}
.m197_c00173{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m40_c00173{transform:matrix(2.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.377500,0.000000,0.000000,0.250000,0,0);}
.v1_c00173{vertical-align:-13.800000px;}
.v0_c00173{vertical-align:0.000000px;}
.v2_c00173{vertical-align:3.480000px;}
.ls2_c00173{letter-spacing:0.000000px;}
.ls0_c00173{letter-spacing:31.112700px;}
.ls1_c00173{letter-spacing:87.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:-17.934000px;}
.ws1_c00173{word-spacing:0.000000px;}
.fc0_c00173{color:transparent;}
.fs5_c00173{font-size:3.456000px;}
.fs2_c00173{font-size:6.000000px;}
.fs0_c00173{font-size:6.900000px;}
.fs6_c00173{font-size:10.380000px;}
.fs1_c00173{font-size:13.800000px;}
.fs8_c00173{font-size:17.280000px;}
.fs4_c00173{font-size:20.760000px;}
.fs3_c00173{font-size:24.180000px;}
.fs7_c00173{font-size:27.660000px;}
.fs1d_c00173{font-size:31.080000px;}
.fs1e_c00173{font-size:34.560000px;}
.fs21_c00173{font-size:38.040000px;}
.fs1f_c00173{font-size:41.460000px;}
.fs23_c00173{font-size:44.940000px;}
.fs1a_c00173{font-size:48.360000px;}
.fs20_c00173{font-size:51.840000px;}
.fs18_c00173{font-size:55.320000px;}
.fs14_c00173{font-size:58.740000px;}
.fs10_c00173{font-size:62.220000px;}
.fs13_c00173{font-size:65.640000px;}
.fs15_c00173{font-size:69.120000px;}
.fsf_c00173{font-size:72.600000px;}
.fs19_c00173{font-size:76.020000px;}
.fs17_c00173{font-size:79.500000px;}
.fs16_c00173{font-size:82.920000px;}
.fs12_c00173{font-size:86.400000px;}
.fsa_c00173{font-size:89.880000px;}
.fsb_c00173{font-size:93.300000px;}
.fs11_c00173{font-size:96.780000px;}
.fse_c00173{font-size:100.200000px;}
.fsd_c00173{font-size:103.680000px;}
.fs22_c00173{font-size:107.160000px;}
.fs1c_c00173{font-size:110.580000px;}
.fs1b_c00173{font-size:114.060000px;}
.fsc_c00173{font-size:120.960000px;}
.fs9_c00173{font-size:124.440000px;}
.fs24_c00173{font-size:127.860000px;}
.y0_c00173{bottom:0.000000px;}
.y185_c00173{bottom:197.850000px;}
.y187_c00173{bottom:198.720000px;}
.y184_c00173{bottom:199.590000px;}
.y188_c00173{bottom:200.445000px;}
.y186_c00173{bottom:203.040000px;}
.y17d_c00173{bottom:204.765000px;}
.y18a_c00173{bottom:205.635000px;}
.y189_c00173{bottom:207.360000px;}
.y17c_c00173{bottom:208.230000px;}
.y17f_c00173{bottom:209.955000px;}
.y17e_c00173{bottom:210.810000px;}
.y180_c00173{bottom:211.680000px;}
.y181_c00173{bottom:212.550000px;}
.y182_c00173{bottom:214.275000px;}
.y177_c00173{bottom:234.150000px;}
.y183_c00173{bottom:235.005000px;}
.y178_c00173{bottom:235.875000px;}
.y179_c00173{bottom:237.600000px;}
.y17b_c00173{bottom:238.470000px;}
.y17a_c00173{bottom:239.325000px;}
.y172_c00173{bottom:258.330000px;}
.y171_c00173{bottom:259.200000px;}
.y174_c00173{bottom:260.070000px;}
.y175_c00173{bottom:261.795000px;}
.y173_c00173{bottom:266.115000px;}
.y176_c00173{bottom:267.840000px;}
.y16c_c00173{bottom:284.250000px;}
.y16a_c00173{bottom:285.120000px;}
.y16b_c00173{bottom:285.990000px;}
.y16e_c00173{bottom:286.845000px;}
.y170_c00173{bottom:288.570000px;}
.y16f_c00173{bottom:292.890000px;}
.y16d_c00173{bottom:294.630000px;}
.y163_c00173{bottom:310.170000px;}
.y168_c00173{bottom:312.765000px;}
.y164_c00173{bottom:313.635000px;}
.y165_c00173{bottom:314.490000px;}
.y166_c00173{bottom:316.230000px;}
.y167_c00173{bottom:318.810000px;}
.y169_c00173{bottom:319.680000px;}
.y162_c00173{bottom:330.915000px;}
.y15d_c00173{bottom:334.365000px;}
.y15e_c00173{bottom:336.090000px;}
.y160_c00173{bottom:337.830000px;}
.y161_c00173{bottom:338.685000px;}
.y15f_c00173{bottom:339.555000px;}
.y157_c00173{bottom:357.690000px;}
.y15a_c00173{bottom:360.285000px;}
.y158_c00173{bottom:361.155000px;}
.y15c_c00173{bottom:362.880000px;}
.y159_c00173{bottom:366.330000px;}
.y15b_c00173{bottom:367.200000px;}
.y155_c00173{bottom:384.480000px;}
.y152_c00173{bottom:385.350000px;}
.y153_c00173{bottom:387.075000px;}
.y154_c00173{bottom:387.930000px;}
.y150_c00173{bottom:390.525000px;}
.y151_c00173{bottom:393.120000px;}
.y156_c00173{bottom:393.990000px;}
.y145_c00173{bottom:409.530000px;}
.y147_c00173{bottom:410.400000px;}
.y148_c00173{bottom:411.270000px;}
.y14c_c00173{bottom:412.125000px;}
.y14d_c00173{bottom:412.995000px;}
.y14e_c00173{bottom:413.850000px;}
.y149_c00173{bottom:414.720000px;}
.y14b_c00173{bottom:415.590000px;}
.y146_c00173{bottom:417.315000px;}
.y14a_c00173{bottom:418.170000px;}
.y14f_c00173{bottom:421.635000px;}
.y13e_c00173{bottom:433.725000px;}
.y140_c00173{bottom:435.450000px;}
.y142_c00173{bottom:436.320000px;}
.y143_c00173{bottom:438.045000px;}
.y144_c00173{bottom:439.770000px;}
.y13f_c00173{bottom:442.365000px;}
.y141_c00173{bottom:444.090000px;}
.y137_c00173{bottom:458.790000px;}
.y139_c00173{bottom:459.645000px;}
.y13c_c00173{bottom:461.370000px;}
.y138_c00173{bottom:463.965000px;}
.y13b_c00173{bottom:465.690000px;}
.y13d_c00173{bottom:467.430000px;}
.y13a_c00173{bottom:468.285000px;}
.y131_c00173{bottom:482.970000px;}
.y133_c00173{bottom:485.565000px;}
.y134_c00173{bottom:486.435000px;}
.y136_c00173{bottom:487.290000px;}
.y132_c00173{bottom:490.755000px;}
.y135_c00173{bottom:491.610000px;}
.y127_c00173{bottom:507.165000px;}
.y12a_c00173{bottom:508.035000px;}
.y128_c00173{bottom:508.890000px;}
.y126_c00173{bottom:509.760000px;}
.y129_c00173{bottom:511.485000px;}
.y12b_c00173{bottom:512.355000px;}
.y130_c00173{bottom:515.805000px;}
.y12c_c00173{bottom:518.400000px;}
.y12f_c00173{bottom:520.995000px;}
.y12e_c00173{bottom:526.170000px;}
.y11e_c00173{bottom:531.360000px;}
.y12d_c00173{bottom:532.230000px;}
.y11f_c00173{bottom:533.085000px;}
.y120_c00173{bottom:534.810000px;}
.y123_c00173{bottom:535.680000px;}
.y122_c00173{bottom:537.405000px;}
.y125_c00173{bottom:538.275000px;}
.y124_c00173{bottom:540.000000px;}
.y121_c00173{bottom:540.870000px;}
.y114_c00173{bottom:557.280000px;}
.y119_c00173{bottom:559.005000px;}
.y117_c00173{bottom:559.875000px;}
.y11b_c00173{bottom:561.600000px;}
.y115_c00173{bottom:563.325000px;}
.y11a_c00173{bottom:565.920000px;}
.y116_c00173{bottom:566.790000px;}
.y118_c00173{bottom:567.645000px;}
.y11d_c00173{bottom:568.515000px;}
.y11c_c00173{bottom:569.370000px;}
.y10c_c00173{bottom:582.330000px;}
.y10e_c00173{bottom:584.070000px;}
.y111_c00173{bottom:584.925000px;}
.y110_c00173{bottom:585.795000px;}
.y10f_c00173{bottom:586.650000px;}
.y112_c00173{bottom:587.520000px;}
.y113_c00173{bottom:589.245000px;}
.y10d_c00173{bottom:590.970000px;}
.y105_c00173{bottom:608.250000px;}
.y107_c00173{bottom:609.120000px;}
.y10a_c00173{bottom:609.990000px;}
.y108_c00173{bottom:610.845000px;}
.y109_c00173{bottom:611.715000px;}
.y106_c00173{bottom:612.570000px;}
.y104_c00173{bottom:614.310000px;}
.y10b_c00173{bottom:623.805000px;}
.yff_c00173{bottom:632.445000px;}
.y101_c00173{bottom:635.040000px;}
.y100_c00173{bottom:635.910000px;}
.y103_c00173{bottom:636.765000px;}
.y102_c00173{bottom:644.550000px;}
.yf2_c00173{bottom:656.640000px;}
.yf3_c00173{bottom:657.510000px;}
.yf5_c00173{bottom:658.365000px;}
.yfc_c00173{bottom:659.235000px;}
.yfa_c00173{bottom:660.960000px;}
.yfd_c00173{bottom:661.830000px;}
.yf4_c00173{bottom:662.685000px;}
.yf9_c00173{bottom:664.410000px;}
.yfe_c00173{bottom:665.280000px;}
.yf7_c00173{bottom:666.150000px;}
.yf6_c00173{bottom:667.005000px;}
.yf8_c00173{bottom:667.875000px;}
.yfb_c00173{bottom:668.730000px;}
.yec_c00173{bottom:683.430000px;}
.yef_c00173{bottom:685.155000px;}
.yee_c00173{bottom:686.010000px;}
.yf0_c00173{bottom:686.880000px;}
.yed_c00173{bottom:688.605000px;}
.yeb_c00173{bottom:689.475000px;}
.yf1_c00173{bottom:691.200000px;}
.ye3_c00173{bottom:705.030000px;}
.ye5_c00173{bottom:708.480000px;}
.ye4_c00173{bottom:709.350000px;}
.yea_c00173{bottom:710.205000px;}
.ye7_c00173{bottom:711.930000px;}
.ye8_c00173{bottom:713.670000px;}
.ye6_c00173{bottom:715.395000px;}
.ye9_c00173{bottom:717.990000px;}
.yd9_c00173{bottom:730.080000px;}
.yde_c00173{bottom:731.805000px;}
.ydc_c00173{bottom:732.675000px;}
.yda_c00173{bottom:733.530000px;}
.ye0_c00173{bottom:734.400000px;}
.ye1_c00173{bottom:735.270000px;}
.ydd_c00173{bottom:736.995000px;}
.ydb_c00173{bottom:740.445000px;}
.ydf_c00173{bottom:741.315000px;}
.ye2_c00173{bottom:742.170000px;}
.yd3_c00173{bottom:753.405000px;}
.yd4_c00173{bottom:755.130000px;}
.yd8_c00173{bottom:757.725000px;}
.yd5_c00173{bottom:758.595000px;}
.yd7_c00173{bottom:760.320000px;}
.yd6_c00173{bottom:765.510000px;}
.ycd_c00173{bottom:781.920000px;}
.yd1_c00173{bottom:782.790000px;}
.yd2_c00173{bottom:783.645000px;}
.ycc_c00173{bottom:785.370000px;}
.yca_c00173{bottom:786.240000px;}
.ycf_c00173{bottom:787.110000px;}
.ycb_c00173{bottom:787.965000px;}
.yce_c00173{bottom:788.835000px;}
.yd0_c00173{bottom:789.690000px;}
.ybe_c00173{bottom:803.520000px;}
.yc2_c00173{bottom:804.390000px;}
.yc1_c00173{bottom:805.245000px;}
.yc6_c00173{bottom:806.115000px;}
.yc7_c00173{bottom:806.970000px;}
.ybf_c00173{bottom:808.710000px;}
.yc4_c00173{bottom:809.565000px;}
.yc3_c00173{bottom:812.160000px;}
.yc0_c00173{bottom:813.030000px;}
.yc5_c00173{bottom:813.885000px;}
.yc9_c00173{bottom:814.755000px;}
.yc8_c00173{bottom:815.610000px;}
.ybd_c00173{bottom:818.205000px;}
.yb2_c00173{bottom:828.570000px;}
.yb5_c00173{bottom:829.440000px;}
.ybc_c00173{bottom:830.310000px;}
.yb8_c00173{bottom:831.165000px;}
.ybb_c00173{bottom:832.035000px;}
.yb7_c00173{bottom:832.890000px;}
.yb6_c00173{bottom:835.485000px;}
.yba_c00173{bottom:836.355000px;}
.yb3_c00173{bottom:837.210000px;}
.yb4_c00173{bottom:838.080000px;}
.yb9_c00173{bottom:838.950000px;}
.yac_c00173{bottom:854.490000px;}
.yb0_c00173{bottom:855.360000px;}
.yaa_c00173{bottom:856.230000px;}
.ya8_c00173{bottom:857.085000px;}
.yab_c00173{bottom:857.955000px;}
.yae_c00173{bottom:859.680000px;}
.ya9_c00173{bottom:860.550000px;}
.yaf_c00173{bottom:861.405000px;}
.yad_c00173{bottom:862.275000px;}
.yb1_c00173{bottom:864.000000px;}
.ya0_c00173{bottom:876.960000px;}
.ya1_c00173{bottom:879.555000px;}
.ya3_c00173{bottom:880.410000px;}
.ya5_c00173{bottom:881.280000px;}
.ya2_c00173{bottom:884.730000px;}
.ya4_c00173{bottom:885.600000px;}
.ya6_c00173{bottom:889.050000px;}
.y9c_c00173{bottom:904.605000px;}
.y9b_c00173{bottom:905.475000px;}
.y9d_c00173{bottom:906.330000px;}
.ya7_c00173{bottom:907.200000px;}
.y99_c00173{bottom:908.925000px;}
.y9a_c00173{bottom:910.650000px;}
.y9e_c00173{bottom:914.115000px;}
.y9f_c00173{bottom:915.840000px;}
.y98_c00173{bottom:922.755000px;}
.y8f_c00173{bottom:927.075000px;}
.y91_c00173{bottom:928.800000px;}
.y90_c00173{bottom:929.670000px;}
.y92_c00173{bottom:930.525000px;}
.y94_c00173{bottom:931.395000px;}
.y96_c00173{bottom:935.715000px;}
.y93_c00173{bottom:938.310000px;}
.y95_c00173{bottom:940.035000px;}
.y97_c00173{bottom:948.675000px;}
.y88_c00173{bottom:951.270000px;}
.y8b_c00173{bottom:953.850000px;}
.y8d_c00173{bottom:954.720000px;}
.y8a_c00173{bottom:955.590000px;}
.y8c_c00173{bottom:956.445000px;}
.y8e_c00173{bottom:957.315000px;}
.y89_c00173{bottom:959.910000px;}
.y87_c00173{bottom:961.635000px;}
.y83_c00173{bottom:978.045000px;}
.y81_c00173{bottom:978.915000px;}
.y85_c00173{bottom:979.770000px;}
.y86_c00173{bottom:980.640000px;}
.y82_c00173{bottom:981.510000px;}
.y84_c00173{bottom:985.830000px;}
.y7c_c00173{bottom:1003.110000px;}
.y7a_c00173{bottom:1003.965000px;}
.y7e_c00173{bottom:1004.835000px;}
.y7f_c00173{bottom:1005.690000px;}
.y80_c00173{bottom:1006.560000px;}
.y7b_c00173{bottom:1008.285000px;}
.y79_c00173{bottom:1009.155000px;}
.y7d_c00173{bottom:1011.750000px;}
.y73_c00173{bottom:1026.435000px;}
.y76_c00173{bottom:1029.030000px;}
.y77_c00173{bottom:1029.885000px;}
.y74_c00173{bottom:1031.610000px;}
.y78_c00173{bottom:1032.480000px;}
.y75_c00173{bottom:1033.350000px;}
.y6d_c00173{bottom:1053.210000px;}
.y6e_c00173{bottom:1054.080000px;}
.y72_c00173{bottom:1055.805000px;}
.y6f_c00173{bottom:1057.530000px;}
.y6b_c00173{bottom:1058.400000px;}
.y6c_c00173{bottom:1060.125000px;}
.y71_c00173{bottom:1060.995000px;}
.y70_c00173{bottom:1062.720000px;}
.y69_c00173{bottom:1077.405000px;}
.y68_c00173{bottom:1078.275000px;}
.y6a_c00173{bottom:1080.000000px;}
.y66_c00173{bottom:1081.725000px;}
.y67_c00173{bottom:1082.595000px;}
.y65_c00173{bottom:1084.320000px;}
.y64_c00173{bottom:1086.045000px;}
.y5b_c00173{bottom:1101.600000px;}
.y5e_c00173{bottom:1102.470000px;}
.y5c_c00173{bottom:1103.325000px;}
.y60_c00173{bottom:1105.920000px;}
.y61_c00173{bottom:1106.790000px;}
.y5f_c00173{bottom:1108.515000px;}
.y5d_c00173{bottom:1111.110000px;}
.y62_c00173{bottom:1111.965000px;}
.y63_c00173{bottom:1115.430000px;}
.y54_c00173{bottom:1126.650000px;}
.y9_c00173{bottom:1130.970000px;}
.y57_c00173{bottom:1132.710000px;}
.y53_c00173{bottom:1133.565000px;}
.y8_c00173{bottom:1134.435000px;}
.y55_c00173{bottom:1135.290000px;}
.y56_c00173{bottom:1136.160000px;}
.y58_c00173{bottom:1137.030000px;}
.y59_c00173{bottom:1137.885000px;}
.y5a_c00173{bottom:1139.610000px;}
.y4d_c00173{bottom:1150.845000px;}
.y4e_c00173{bottom:1153.440000px;}
.y50_c00173{bottom:1154.310000px;}
.y51_c00173{bottom:1155.165000px;}
.y4f_c00173{bottom:1156.890000px;}
.y52_c00173{bottom:1164.675000px;}
.y45_c00173{bottom:1175.910000px;}
.y4a_c00173{bottom:1180.230000px;}
.y47_c00173{bottom:1182.810000px;}
.y48_c00173{bottom:1183.680000px;}
.y46_c00173{bottom:1185.405000px;}
.y49_c00173{bottom:1187.130000px;}
.y4b_c00173{bottom:1188.870000px;}
.y4c_c00173{bottom:1191.450000px;}
.y3f_c00173{bottom:1200.960000px;}
.y3c_c00173{bottom:1202.685000px;}
.y40_c00173{bottom:1203.555000px;}
.y3e_c00173{bottom:1204.410000px;}
.y42_c00173{bottom:1206.150000px;}
.y3d_c00173{bottom:1207.005000px;}
.y41_c00173{bottom:1207.875000px;}
.y43_c00173{bottom:1211.325000px;}
.y44_c00173{bottom:1215.645000px;}
.y38_c00173{bottom:1222.560000px;}
.y37_c00173{bottom:1225.155000px;}
.y39_c00173{bottom:1226.010000px;}
.y3a_c00173{bottom:1226.880000px;}
.y3b_c00173{bottom:1227.750000px;}
.y31_c00173{bottom:1251.075000px;}
.y32_c00173{bottom:1251.930000px;}
.y34_c00173{bottom:1254.525000px;}
.y33_c00173{bottom:1255.395000px;}
.y35_c00173{bottom:1256.250000px;}
.y36_c00173{bottom:1264.035000px;}
.y28_c00173{bottom:1280.445000px;}
.y29_c00173{bottom:1281.315000px;}
.y2c_c00173{bottom:1282.170000px;}
.y2b_c00173{bottom:1283.040000px;}
.y2a_c00173{bottom:1286.490000px;}
.y2d_c00173{bottom:1288.230000px;}
.y2e_c00173{bottom:1293.405000px;}
.y2f_c00173{bottom:1294.275000px;}
.y30_c00173{bottom:1304.640000px;}
.y26_c00173{bottom:1306.365000px;}
.y21_c00173{bottom:1307.235000px;}
.y23_c00173{bottom:1308.090000px;}
.y25_c00173{bottom:1308.960000px;}
.y22_c00173{bottom:1309.830000px;}
.y24_c00173{bottom:1310.685000px;}
.y27_c00173{bottom:1321.920000px;}
.y19_c00173{bottom:1325.370000px;}
.y18_c00173{bottom:1327.110000px;}
.y1b_c00173{bottom:1327.965000px;}
.y20_c00173{bottom:1328.835000px;}
.y1f_c00173{bottom:1329.690000px;}
.y1e_c00173{bottom:1330.560000px;}
.y1d_c00173{bottom:1331.430000px;}
.y1a_c00173{bottom:1336.605000px;}
.y1c_c00173{bottom:1337.475000px;}
.y10_c00173{bottom:1349.565000px;}
.y11_c00173{bottom:1352.160000px;}
.y13_c00173{bottom:1353.885000px;}
.y12_c00173{bottom:1354.755000px;}
.y14_c00173{bottom:1357.350000px;}
.y17_c00173{bottom:1360.800000px;}
.y16_c00173{bottom:1362.525000px;}
.y15_c00173{bottom:1363.395000px;}
.yb_c00173{bottom:1384.125000px;}
.ya_c00173{bottom:1384.995000px;}
.yc_c00173{bottom:1386.720000px;}
.yd_c00173{bottom:1388.445000px;}
.yf_c00173{bottom:1391.040000px;}
.ye_c00173{bottom:1393.635000px;}
.y6_c00173{bottom:1399.680000px;}
.y7_c00173{bottom:1400.550000px;}
.y5_c00173{bottom:1408.320000px;}
.y4_c00173{bottom:1428.195000px;}
.y3_c00173{bottom:1429.050000px;}
.y1_c00173{bottom:1434.240000px;}
.y2_c00173{bottom:1435.110000px;}
.h6_c00173{height:3.110063px;}
.h3_c00173{height:5.399414px;}
.h2_c00173{height:6.209326px;}
.h27_c00173{height:8.879414px;}
.h8_c00173{height:9.340986px;}
.h7_c00173{height:12.418652px;}
.ha_c00173{height:15.550313px;}
.h5_c00173{height:18.681973px;}
.h4_c00173{height:21.759639px;}
.h9_c00173{height:24.891299px;}
.h1f_c00173{height:27.968965px;}
.h20_c00173{height:31.100625px;}
.h23_c00173{height:34.232285px;}
.h21_c00173{height:37.309951px;}
.h25_c00173{height:40.441611px;}
.h1c_c00173{height:43.519277px;}
.h22_c00173{height:46.650937px;}
.h1a_c00173{height:49.782598px;}
.h16_c00173{height:52.860264px;}
.h12_c00173{height:55.991924px;}
.h15_c00173{height:59.069590px;}
.h17_c00173{height:62.201250px;}
.h11_c00173{height:65.332910px;}
.h1b_c00173{height:68.410576px;}
.h19_c00173{height:71.542236px;}
.h18_c00173{height:74.619902px;}
.h14_c00173{height:77.751563px;}
.hc_c00173{height:80.883223px;}
.hd_c00173{height:83.960889px;}
.h13_c00173{height:87.092549px;}
.h10_c00173{height:90.170215px;}
.hf_c00173{height:93.301875px;}
.h24_c00173{height:96.433535px;}
.h1e_c00173{height:99.511201px;}
.h1d_c00173{height:102.642861px;}
.he_c00173{height:108.852188px;}
.hb_c00173{height:111.983848px;}
.h26_c00173{height:115.061514px;}
.h1_c00173{height:1503.000000px;}
.h0_c00173{height:1503.360000px;}
.w0_c00173{width:1090.365000px;}
.w1_c00173{width:1090.500000px;}
.x0_c00173{left:0.000000px;}
.x8_c00173{left:8.640000px;}
.x9_c00173{left:16.410000px;}
.x3f_c00173{left:201.315000px;}
.x90_c00173{left:204.765000px;}
.x40_c00173{left:213.405000px;}
.x81_c00173{left:220.320000px;}
.xb4_c00173{left:222.045000px;}
.x68_c00173{left:225.510000px;}
.x1b_c00173{left:227.235000px;}
.x10_c00173{left:228.960000px;}
.x87_c00173{left:230.685000px;}
.x37_c00173{left:232.410000px;}
.x69_c00173{left:234.150000px;}
.x82_c00173{left:235.875000px;}
.xa1_c00173{left:237.600000px;}
.xcb_c00173{left:240.195000px;}
.xe2_c00173{left:242.790000px;}
.xfd_c00173{left:244.515000px;}
.x100_c00173{left:250.560000px;}
.xcc_c00173{left:254.010000px;}
.x1c_c00173{left:260.070000px;}
.xa2_c00173{left:263.520000px;}
.x101_c00173{left:265.245000px;}
.x88_c00173{left:270.435000px;}
.x6f_c00173{left:280.800000px;}
.xf9_c00173{left:285.120000px;}
.xa3_c00173{left:291.165000px;}
.xa_c00173{left:295.485000px;}
.x4e_c00173{left:297.210000px;}
.x74_c00173{left:299.805000px;}
.x41_c00173{left:302.400000px;}
.x77_c00173{left:304.995000px;}
.x1d_c00173{left:307.590000px;}
.x3c_c00173{left:309.315000px;}
.x91_c00173{left:311.910000px;}
.x47_c00173{left:314.490000px;}
.xe1_c00173{left:321.405000px;}
.x11_c00173{left:324.870000px;}
.x70_c00173{left:326.595000px;}
.xa9_c00173{left:329.190000px;}
.xd4_c00173{left:331.770000px;}
.xc3_c00173{left:333.510000px;}
.xa4_c00173{left:336.960000px;}
.x5e_c00173{left:338.685000px;}
.x83_c00173{left:340.410000px;}
.x26_c00173{left:343.875000px;}
.x5f_c00173{left:345.600000px;}
.x2c_c00173{left:348.195000px;}
.xb5_c00173{left:350.790000px;}
.x6a_c00173{left:355.110000px;}
.x48_c00173{left:361.155000px;}
.x27_c00173{left:362.880000px;}
.x6b_c00173{left:364.605000px;}
.x7e_c00173{left:368.070000px;}
.xeb_c00173{left:369.795000px;}
.xfa_c00173{left:371.520000px;}
.x12_c00173{left:375.840000px;}
.x78_c00173{left:378.435000px;}
.xd5_c00173{left:380.160000px;}
.x55_c00173{left:381.885000px;}
.xb_c00173{left:385.350000px;}
.x42_c00173{left:389.670000px;}
.xcd_c00173{left:391.395000px;}
.x4f_c00173{left:393.990000px;}
.x98_c00173{left:395.715000px;}
.xf7_c00173{left:399.165000px;}
.x1e_c00173{left:401.760000px;}
.xc8_c00173{left:403.485000px;}
.xd9_c00173{left:406.080000px;}
.xd6_c00173{left:407.805000px;}
.xb8_c00173{left:409.530000px;}
.xf3_c00173{left:413.850000px;}
.xe7_c00173{left:415.590000px;}
.x92_c00173{left:417.315000px;}
.x75_c00173{left:419.040000px;}
.x79_c00173{left:421.635000px;}
.x60_c00173{left:424.230000px;}
.x2d_c00173{left:425.955000px;}
.x13_c00173{left:427.680000px;}
.xce_c00173{left:430.275000px;}
.x50_c00173{left:432.000000px;}
.x1f_c00173{left:435.450000px;}
.x56_c00173{left:437.190000px;}
.xf4_c00173{left:439.770000px;}
.x6c_c00173{left:441.510000px;}
.xb9_c00173{left:445.830000px;}
.x1_c00173{left:447.555000px;}
.xaa_c00173{left:453.600000px;}
.x38_c00173{left:458.790000px;}
.x6_c00173{left:461.370000px;}
.x71_c00173{left:463.110000px;}
.x2_c00173{left:466.560000px;}
.xa5_c00173{left:470.880000px;}
.x7_c00173{left:475.200000px;}
.x20_c00173{left:476.925000px;}
.xef_c00173{left:478.650000px;}
.x7a_c00173{left:480.390000px;}
.xc4_c00173{left:482.115000px;}
.x57_c00173{left:486.435000px;}
.xad_c00173{left:488.160000px;}
.x21_c00173{left:489.885000px;}
.xba_c00173{left:491.610000px;}
.x72_c00173{left:494.205000px;}
.x43_c00173{left:496.800000px;}
.x51_c00173{left:499.395000px;}
.xe3_c00173{left:501.120000px;}
.x7b_c00173{left:502.845000px;}
.xf0_c00173{left:506.310000px;}
.x58_c00173{left:509.760000px;}
.x89_c00173{left:511.485000px;}
.xc0_c00173{left:513.210000px;}
.xfb_c00173{left:514.950000px;}
.x93_c00173{left:517.530000px;}
.x14_c00173{left:520.125000px;}
.x6d_c00173{left:521.850000px;}
.x99_c00173{left:524.445000px;}
.xe4_c00173{left:526.170000px;}
.xcf_c00173{left:529.635000px;}
.x3d_c00173{left:531.360000px;}
.x9a_c00173{left:534.810000px;}
.x61_c00173{left:536.550000px;}
.xf5_c00173{left:538.275000px;}
.xb6_c00173{left:540.000000px;}
.x2e_c00173{left:543.450000px;}
.x7f_c00173{left:545.190000px;}
.xbd_c00173{left:546.915000px;}
.x44_c00173{left:548.640000px;}
.xae_c00173{left:552.960000px;}
.x22_c00173{left:555.555000px;}
.x49_c00173{left:557.280000px;}
.xda_c00173{left:560.730000px;}
.x5_c00173{left:562.470000px;}
.x8a_c00173{left:565.050000px;}
.xb7_c00173{left:567.645000px;}
.x28_c00173{left:571.110000px;}
.xd2_c00173{left:577.155000px;}
.xe5_c00173{left:579.750000px;}
.x59_c00173{left:581.475000px;}
.xf1_c00173{left:584.925000px;}
.xc9_c00173{left:587.520000px;}
.x15_c00173{left:589.245000px;}
.xec_c00173{left:591.840000px;}
.x2f_c00173{left:595.290000px;}
.xd0_c00173{left:597.885000px;}
.x52_c00173{left:599.610000px;}
.x3_c00173{left:602.205000px;}
.x45_c00173{left:605.670000px;}
.x9b_c00173{left:608.250000px;}
.xb2_c00173{left:609.990000px;}
.x4_c00173{left:611.715000px;}
.x84_c00173{left:613.440000px;}
.x23_c00173{left:616.890000px;}
.x62_c00173{left:618.630000px;}
.x102_c00173{left:621.210000px;}
.xc1_c00173{left:625.530000px;}
.x39_c00173{left:628.125000px;}
.xc5_c00173{left:629.850000px;}
.x4a_c00173{left:631.590000px;}
.x16_c00173{left:633.315000px;}
.xfc_c00173{left:635.040000px;}
.x9c_c00173{left:636.765000px;}
.x63_c00173{left:641.085000px;}
.x8b_c00173{left:642.810000px;}
.x29_c00173{left:645.405000px;}
.x85_c00173{left:647.130000px;}
.x5a_c00173{left:649.725000px;}
.xa6_c00173{left:653.190000px;}
.x24_c00173{left:657.510000px;}
.x94_c00173{left:660.090000px;}
.xc2_c00173{left:663.555000px;}
.xf2_c00173{left:665.280000px;}
.xc_c00173{left:667.875000px;}
.x5b_c00173{left:669.600000px;}
.x17_c00173{left:672.195000px;}
.xd1_c00173{left:673.920000px;}
.x8c_c00173{left:676.515000px;}
.xdb_c00173{left:679.965000px;}
.xe8_c00173{left:681.690000px;}
.xed_c00173{left:684.285000px;}
.x30_c00173{left:686.880000px;}
.x80_c00173{left:691.200000px;}
.x86_c00173{left:695.520000px;}
.xe6_c00173{left:697.245000px;}
.xa7_c00173{left:700.710000px;}
.x9d_c00173{left:703.290000px;}
.x7c_c00173{left:705.030000px;}
.xab_c00173{left:711.075000px;}
.x2a_c00173{left:713.670000px;}
.xbb_c00173{left:715.395000px;}
.x4b_c00173{left:720.570000px;}
.x73_c00173{left:722.310000px;}
.xa8_c00173{left:725.760000px;}
.x31_c00173{left:728.355000px;}
.x3a_c00173{left:731.805000px;}
.x18_c00173{left:736.995000px;}
.x95_c00173{left:738.720000px;}
.x25_c00173{left:741.315000px;}
.x5c_c00173{left:746.490000px;}
.x3b_c00173{left:751.680000px;}
.xc6_c00173{left:757.725000px;}
.x3e_c00173{left:759.450000px;}
.x64_c00173{left:762.915000px;}
.x4c_c00173{left:764.640000px;}
.x53_c00173{left:768.960000px;}
.xfe_c00173{left:772.410000px;}
.xbe_c00173{left:774.150000px;}
.xd_c00173{left:775.875000px;}
.x7d_c00173{left:781.050000px;}
.xe9_c00173{left:782.790000px;}
.x9e_c00173{left:784.515000px;}
.x4d_c00173{left:787.965000px;}
.x19_c00173{left:789.690000px;}
.xbc_c00173{left:792.285000px;}
.x103_c00173{left:796.607136px;}
.xf8_c00173{left:798.330000px;}
.x32_c00173{left:800.070000px;}
.x76_c00173{left:801.795000px;}
.xca_c00173{left:803.520000px;}
.xe_c00173{left:807.840000px;}
.xb3_c00173{left:809.565000px;}
.xaf_c00173{left:813.030000px;}
.xf_c00173{left:815.610000px;}
.xbf_c00173{left:817.350000px;}
.x65_c00173{left:819.930000px;}
.x5d_c00173{left:821.670000px;}
.xf6_c00173{left:826.845000px;}
.x54_c00173{left:830.310000px;}
.x96_c00173{left:836.355000px;}
.xff_c00173{left:838.080000px;}
.x66_c00173{left:839.805000px;}
.xdc_c00173{left:845.850000px;}
.xea_c00173{left:849.315000px;}
.x67_c00173{left:851.040000px;}
.x8d_c00173{left:854.490000px;}
.xc7_c00173{left:865.725000px;}
.x2b_c00173{left:870.915000px;}
.x6e_c00173{left:873.510000px;}
.x1a_c00173{left:879.555000px;}
.x8e_c00173{left:882.150000px;}
.xee_c00173{left:883.875000px;}
.xd7_c00173{left:885.600000px;}
.x9f_c00173{left:889.920000px;}
.x8f_c00173{left:891.645000px;}
.x46_c00173{left:893.370000px;}
.x97_c00173{left:895.110000px;}
.xb0_c00173{left:896.835000px;}
.x33_c00173{left:899.430000px;}
.xdd_c00173{left:901.155000px;}
.xd3_c00173{left:911.520000px;}
.x34_c00173{left:914.115000px;}
.xa0_c00173{left:917.564850px;}
.xb1_c00173{left:920.160000px;}
.x35_c00173{left:924.480000px;}
.xac_c00173{left:929.670000px;}
.x36_c00173{left:934.845000px;}
.xde_c00173{left:941.760000px;}
.xdf_c00173{left:951.270000px;}
.xd8_c00173{left:955.590000px;}
.xe0_c00173{left:961.635000px;}
@media print{
.v1_c00173{vertical-align:-12.266667pt;}
.v0_c00173{vertical-align:0.000000pt;}
.v2_c00173{vertical-align:3.093333pt;}
.ls2_c00173{letter-spacing:0.000000pt;}
.ls0_c00173{letter-spacing:27.655733pt;}
.ls1_c00173{letter-spacing:77.333333pt;}
.ws0_c00173{word-spacing:-15.941333pt;}
.ws1_c00173{word-spacing:0.000000pt;}
.fs5_c00173{font-size:3.072000pt;}
.fs2_c00173{font-size:5.333333pt;}
.fs0_c00173{font-size:6.133333pt;}
.fs6_c00173{font-size:9.226667pt;}
.fs1_c00173{font-size:12.266667pt;}
.fs8_c00173{font-size:15.360000pt;}
.fs4_c00173{font-size:18.453333pt;}
.fs3_c00173{font-size:21.493333pt;}
.fs7_c00173{font-size:24.586667pt;}
.fs1d_c00173{font-size:27.626667pt;}
.fs1e_c00173{font-size:30.720000pt;}
.fs21_c00173{font-size:33.813333pt;}
.fs1f_c00173{font-size:36.853333pt;}
.fs23_c00173{font-size:39.946667pt;}
.fs1a_c00173{font-size:42.986667pt;}
.fs20_c00173{font-size:46.080000pt;}
.fs18_c00173{font-size:49.173333pt;}
.fs14_c00173{font-size:52.213333pt;}
.fs10_c00173{font-size:55.306667pt;}
.fs13_c00173{font-size:58.346667pt;}
.fs15_c00173{font-size:61.440000pt;}
.fsf_c00173{font-size:64.533333pt;}
.fs19_c00173{font-size:67.573333pt;}
.fs17_c00173{font-size:70.666667pt;}
.fs16_c00173{font-size:73.706667pt;}
.fs12_c00173{font-size:76.800000pt;}
.fsa_c00173{font-size:79.893333pt;}
.fsb_c00173{font-size:82.933333pt;}
.fs11_c00173{font-size:86.026667pt;}
.fse_c00173{font-size:89.066667pt;}
.fsd_c00173{font-size:92.160000pt;}
.fs22_c00173{font-size:95.253333pt;}
.fs1c_c00173{font-size:98.293333pt;}
.fs1b_c00173{font-size:101.386667pt;}
.fsc_c00173{font-size:107.520000pt;}
.fs9_c00173{font-size:110.613333pt;}
.fs24_c00173{font-size:113.653333pt;}
.y0_c00173{bottom:0.000000pt;}
.y185_c00173{bottom:175.866667pt;}
.y187_c00173{bottom:176.640000pt;}
.y184_c00173{bottom:177.413333pt;}
.y188_c00173{bottom:178.173333pt;}
.y186_c00173{bottom:180.480000pt;}
.y17d_c00173{bottom:182.013333pt;}
.y18a_c00173{bottom:182.786667pt;}
.y189_c00173{bottom:184.320000pt;}
.y17c_c00173{bottom:185.093333pt;}
.y17f_c00173{bottom:186.626667pt;}
.y17e_c00173{bottom:187.386667pt;}
.y180_c00173{bottom:188.160000pt;}
.y181_c00173{bottom:188.933333pt;}
.y182_c00173{bottom:190.466667pt;}
.y177_c00173{bottom:208.133333pt;}
.y183_c00173{bottom:208.893333pt;}
.y178_c00173{bottom:209.666667pt;}
.y179_c00173{bottom:211.200000pt;}
.y17b_c00173{bottom:211.973333pt;}
.y17a_c00173{bottom:212.733333pt;}
.y172_c00173{bottom:229.626667pt;}
.y171_c00173{bottom:230.400000pt;}
.y174_c00173{bottom:231.173333pt;}
.y175_c00173{bottom:232.706667pt;}
.y173_c00173{bottom:236.546667pt;}
.y176_c00173{bottom:238.080000pt;}
.y16c_c00173{bottom:252.666667pt;}
.y16a_c00173{bottom:253.440000pt;}
.y16b_c00173{bottom:254.213333pt;}
.y16e_c00173{bottom:254.973333pt;}
.y170_c00173{bottom:256.506667pt;}
.y16f_c00173{bottom:260.346667pt;}
.y16d_c00173{bottom:261.893333pt;}
.y163_c00173{bottom:275.706667pt;}
.y168_c00173{bottom:278.013333pt;}
.y164_c00173{bottom:278.786667pt;}
.y165_c00173{bottom:279.546667pt;}
.y166_c00173{bottom:281.093333pt;}
.y167_c00173{bottom:283.386667pt;}
.y169_c00173{bottom:284.160000pt;}
.y162_c00173{bottom:294.146667pt;}
.y15d_c00173{bottom:297.213333pt;}
.y15e_c00173{bottom:298.746667pt;}
.y160_c00173{bottom:300.293333pt;}
.y161_c00173{bottom:301.053333pt;}
.y15f_c00173{bottom:301.826667pt;}
.y157_c00173{bottom:317.946667pt;}
.y15a_c00173{bottom:320.253333pt;}
.y158_c00173{bottom:321.026667pt;}
.y15c_c00173{bottom:322.560000pt;}
.y159_c00173{bottom:325.626667pt;}
.y15b_c00173{bottom:326.400000pt;}
.y155_c00173{bottom:341.760000pt;}
.y152_c00173{bottom:342.533333pt;}
.y153_c00173{bottom:344.066667pt;}
.y154_c00173{bottom:344.826667pt;}
.y150_c00173{bottom:347.133333pt;}
.y151_c00173{bottom:349.440000pt;}
.y156_c00173{bottom:350.213333pt;}
.y145_c00173{bottom:364.026667pt;}
.y147_c00173{bottom:364.800000pt;}
.y148_c00173{bottom:365.573333pt;}
.y14c_c00173{bottom:366.333333pt;}
.y14d_c00173{bottom:367.106667pt;}
.y14e_c00173{bottom:367.866667pt;}
.y149_c00173{bottom:368.640000pt;}
.y14b_c00173{bottom:369.413333pt;}
.y146_c00173{bottom:370.946667pt;}
.y14a_c00173{bottom:371.706667pt;}
.y14f_c00173{bottom:374.786667pt;}
.y13e_c00173{bottom:385.533333pt;}
.y140_c00173{bottom:387.066667pt;}
.y142_c00173{bottom:387.840000pt;}
.y143_c00173{bottom:389.373333pt;}
.y144_c00173{bottom:390.906667pt;}
.y13f_c00173{bottom:393.213333pt;}
.y141_c00173{bottom:394.746667pt;}
.y137_c00173{bottom:407.813333pt;}
.y139_c00173{bottom:408.573333pt;}
.y13c_c00173{bottom:410.106667pt;}
.y138_c00173{bottom:412.413333pt;}
.y13b_c00173{bottom:413.946667pt;}
.y13d_c00173{bottom:415.493333pt;}
.y13a_c00173{bottom:416.253333pt;}
.y131_c00173{bottom:429.306667pt;}
.y133_c00173{bottom:431.613333pt;}
.y134_c00173{bottom:432.386667pt;}
.y136_c00173{bottom:433.146667pt;}
.y132_c00173{bottom:436.226667pt;}
.y135_c00173{bottom:436.986667pt;}
.y127_c00173{bottom:450.813333pt;}
.y12a_c00173{bottom:451.586667pt;}
.y128_c00173{bottom:452.346667pt;}
.y126_c00173{bottom:453.120000pt;}
.y129_c00173{bottom:454.653333pt;}
.y12b_c00173{bottom:455.426667pt;}
.y130_c00173{bottom:458.493333pt;}
.y12c_c00173{bottom:460.800000pt;}
.y12f_c00173{bottom:463.106667pt;}
.y12e_c00173{bottom:467.706667pt;}
.y11e_c00173{bottom:472.320000pt;}
.y12d_c00173{bottom:473.093333pt;}
.y11f_c00173{bottom:473.853333pt;}
.y120_c00173{bottom:475.386667pt;}
.y123_c00173{bottom:476.160000pt;}
.y122_c00173{bottom:477.693333pt;}
.y125_c00173{bottom:478.466667pt;}
.y124_c00173{bottom:480.000000pt;}
.y121_c00173{bottom:480.773333pt;}
.y114_c00173{bottom:495.360000pt;}
.y119_c00173{bottom:496.893333pt;}
.y117_c00173{bottom:497.666667pt;}
.y11b_c00173{bottom:499.200000pt;}
.y115_c00173{bottom:500.733333pt;}
.y11a_c00173{bottom:503.040000pt;}
.y116_c00173{bottom:503.813333pt;}
.y118_c00173{bottom:504.573333pt;}
.y11d_c00173{bottom:505.346667pt;}
.y11c_c00173{bottom:506.106667pt;}
.y10c_c00173{bottom:517.626667pt;}
.y10e_c00173{bottom:519.173333pt;}
.y111_c00173{bottom:519.933333pt;}
.y110_c00173{bottom:520.706667pt;}
.y10f_c00173{bottom:521.466667pt;}
.y112_c00173{bottom:522.240000pt;}
.y113_c00173{bottom:523.773333pt;}
.y10d_c00173{bottom:525.306667pt;}
.y105_c00173{bottom:540.666667pt;}
.y107_c00173{bottom:541.440000pt;}
.y10a_c00173{bottom:542.213333pt;}
.y108_c00173{bottom:542.973333pt;}
.y109_c00173{bottom:543.746667pt;}
.y106_c00173{bottom:544.506667pt;}
.y104_c00173{bottom:546.053333pt;}
.y10b_c00173{bottom:554.493333pt;}
.yff_c00173{bottom:562.173333pt;}
.y101_c00173{bottom:564.480000pt;}
.y100_c00173{bottom:565.253333pt;}
.y103_c00173{bottom:566.013333pt;}
.y102_c00173{bottom:572.933333pt;}
.yf2_c00173{bottom:583.680000pt;}
.yf3_c00173{bottom:584.453333pt;}
.yf5_c00173{bottom:585.213333pt;}
.yfc_c00173{bottom:585.986667pt;}
.yfa_c00173{bottom:587.520000pt;}
.yfd_c00173{bottom:588.293333pt;}
.yf4_c00173{bottom:589.053333pt;}
.yf9_c00173{bottom:590.586667pt;}
.yfe_c00173{bottom:591.360000pt;}
.yf7_c00173{bottom:592.133333pt;}
.yf6_c00173{bottom:592.893333pt;}
.yf8_c00173{bottom:593.666667pt;}
.yfb_c00173{bottom:594.426667pt;}
.yec_c00173{bottom:607.493333pt;}
.yef_c00173{bottom:609.026667pt;}
.yee_c00173{bottom:609.786667pt;}
.yf0_c00173{bottom:610.560000pt;}
.yed_c00173{bottom:612.093333pt;}
.yeb_c00173{bottom:612.866667pt;}
.yf1_c00173{bottom:614.400000pt;}
.ye3_c00173{bottom:626.693333pt;}
.ye5_c00173{bottom:629.760000pt;}
.ye4_c00173{bottom:630.533333pt;}
.yea_c00173{bottom:631.293333pt;}
.ye7_c00173{bottom:632.826667pt;}
.ye8_c00173{bottom:634.373333pt;}
.ye6_c00173{bottom:635.906667pt;}
.ye9_c00173{bottom:638.213333pt;}
.yd9_c00173{bottom:648.960000pt;}
.yde_c00173{bottom:650.493333pt;}
.ydc_c00173{bottom:651.266667pt;}
.yda_c00173{bottom:652.026667pt;}
.ye0_c00173{bottom:652.800000pt;}
.ye1_c00173{bottom:653.573333pt;}
.ydd_c00173{bottom:655.106667pt;}
.ydb_c00173{bottom:658.173333pt;}
.ydf_c00173{bottom:658.946667pt;}
.ye2_c00173{bottom:659.706667pt;}
.yd3_c00173{bottom:669.693333pt;}
.yd4_c00173{bottom:671.226667pt;}
.yd8_c00173{bottom:673.533333pt;}
.yd5_c00173{bottom:674.306667pt;}
.yd7_c00173{bottom:675.840000pt;}
.yd6_c00173{bottom:680.453333pt;}
.ycd_c00173{bottom:695.040000pt;}
.yd1_c00173{bottom:695.813333pt;}
.yd2_c00173{bottom:696.573333pt;}
.ycc_c00173{bottom:698.106667pt;}
.yca_c00173{bottom:698.880000pt;}
.ycf_c00173{bottom:699.653333pt;}
.ycb_c00173{bottom:700.413333pt;}
.yce_c00173{bottom:701.186667pt;}
.yd0_c00173{bottom:701.946667pt;}
.ybe_c00173{bottom:714.240000pt;}
.yc2_c00173{bottom:715.013333pt;}
.yc1_c00173{bottom:715.773333pt;}
.yc6_c00173{bottom:716.546667pt;}
.yc7_c00173{bottom:717.306667pt;}
.ybf_c00173{bottom:718.853333pt;}
.yc4_c00173{bottom:719.613333pt;}
.yc3_c00173{bottom:721.920000pt;}
.yc0_c00173{bottom:722.693333pt;}
.yc5_c00173{bottom:723.453333pt;}
.yc9_c00173{bottom:724.226667pt;}
.yc8_c00173{bottom:724.986667pt;}
.ybd_c00173{bottom:727.293333pt;}
.yb2_c00173{bottom:736.506667pt;}
.yb5_c00173{bottom:737.280000pt;}
.ybc_c00173{bottom:738.053333pt;}
.yb8_c00173{bottom:738.813333pt;}
.ybb_c00173{bottom:739.586667pt;}
.yb7_c00173{bottom:740.346667pt;}
.yb6_c00173{bottom:742.653333pt;}
.yba_c00173{bottom:743.426667pt;}
.yb3_c00173{bottom:744.186667pt;}
.yb4_c00173{bottom:744.960000pt;}
.yb9_c00173{bottom:745.733333pt;}
.yac_c00173{bottom:759.546667pt;}
.yb0_c00173{bottom:760.320000pt;}
.yaa_c00173{bottom:761.093333pt;}
.ya8_c00173{bottom:761.853333pt;}
.yab_c00173{bottom:762.626667pt;}
.yae_c00173{bottom:764.160000pt;}
.ya9_c00173{bottom:764.933333pt;}
.yaf_c00173{bottom:765.693333pt;}
.yad_c00173{bottom:766.466667pt;}
.yb1_c00173{bottom:768.000000pt;}
.ya0_c00173{bottom:779.520000pt;}
.ya1_c00173{bottom:781.826667pt;}
.ya3_c00173{bottom:782.586667pt;}
.ya5_c00173{bottom:783.360000pt;}
.ya2_c00173{bottom:786.426667pt;}
.ya4_c00173{bottom:787.200000pt;}
.ya6_c00173{bottom:790.266667pt;}
.y9c_c00173{bottom:804.093333pt;}
.y9b_c00173{bottom:804.866667pt;}
.y9d_c00173{bottom:805.626667pt;}
.ya7_c00173{bottom:806.400000pt;}
.y99_c00173{bottom:807.933333pt;}
.y9a_c00173{bottom:809.466667pt;}
.y9e_c00173{bottom:812.546667pt;}
.y9f_c00173{bottom:814.080000pt;}
.y98_c00173{bottom:820.226667pt;}
.y8f_c00173{bottom:824.066667pt;}
.y91_c00173{bottom:825.600000pt;}
.y90_c00173{bottom:826.373333pt;}
.y92_c00173{bottom:827.133333pt;}
.y94_c00173{bottom:827.906667pt;}
.y96_c00173{bottom:831.746667pt;}
.y93_c00173{bottom:834.053333pt;}
.y95_c00173{bottom:835.586667pt;}
.y97_c00173{bottom:843.266667pt;}
.y88_c00173{bottom:845.573333pt;}
.y8b_c00173{bottom:847.866667pt;}
.y8d_c00173{bottom:848.640000pt;}
.y8a_c00173{bottom:849.413333pt;}
.y8c_c00173{bottom:850.173333pt;}
.y8e_c00173{bottom:850.946667pt;}
.y89_c00173{bottom:853.253333pt;}
.y87_c00173{bottom:854.786667pt;}
.y83_c00173{bottom:869.373333pt;}
.y81_c00173{bottom:870.146667pt;}
.y85_c00173{bottom:870.906667pt;}
.y86_c00173{bottom:871.680000pt;}
.y82_c00173{bottom:872.453333pt;}
.y84_c00173{bottom:876.293333pt;}
.y7c_c00173{bottom:891.653333pt;}
.y7a_c00173{bottom:892.413333pt;}
.y7e_c00173{bottom:893.186667pt;}
.y7f_c00173{bottom:893.946667pt;}
.y80_c00173{bottom:894.720000pt;}
.y7b_c00173{bottom:896.253333pt;}
.y79_c00173{bottom:897.026667pt;}
.y7d_c00173{bottom:899.333333pt;}
.y73_c00173{bottom:912.386667pt;}
.y76_c00173{bottom:914.693333pt;}
.y77_c00173{bottom:915.453333pt;}
.y74_c00173{bottom:916.986667pt;}
.y78_c00173{bottom:917.760000pt;}
.y75_c00173{bottom:918.533333pt;}
.y6d_c00173{bottom:936.186667pt;}
.y6e_c00173{bottom:936.960000pt;}
.y72_c00173{bottom:938.493333pt;}
.y6f_c00173{bottom:940.026667pt;}
.y6b_c00173{bottom:940.800000pt;}
.y6c_c00173{bottom:942.333333pt;}
.y71_c00173{bottom:943.106667pt;}
.y70_c00173{bottom:944.640000pt;}
.y69_c00173{bottom:957.693333pt;}
.y68_c00173{bottom:958.466667pt;}
.y6a_c00173{bottom:960.000000pt;}
.y66_c00173{bottom:961.533333pt;}
.y67_c00173{bottom:962.306667pt;}
.y65_c00173{bottom:963.840000pt;}
.y64_c00173{bottom:965.373333pt;}
.y5b_c00173{bottom:979.200000pt;}
.y5e_c00173{bottom:979.973333pt;}
.y5c_c00173{bottom:980.733333pt;}
.y60_c00173{bottom:983.040000pt;}
.y61_c00173{bottom:983.813333pt;}
.y5f_c00173{bottom:985.346667pt;}
.y5d_c00173{bottom:987.653333pt;}
.y62_c00173{bottom:988.413333pt;}
.y63_c00173{bottom:991.493333pt;}
.y54_c00173{bottom:1001.466667pt;}
.y9_c00173{bottom:1005.306667pt;}
.y57_c00173{bottom:1006.853333pt;}
.y53_c00173{bottom:1007.613333pt;}
.y8_c00173{bottom:1008.386667pt;}
.y55_c00173{bottom:1009.146667pt;}
.y56_c00173{bottom:1009.920000pt;}
.y58_c00173{bottom:1010.693333pt;}
.y59_c00173{bottom:1011.453333pt;}
.y5a_c00173{bottom:1012.986667pt;}
.y4d_c00173{bottom:1022.973333pt;}
.y4e_c00173{bottom:1025.280000pt;}
.y50_c00173{bottom:1026.053333pt;}
.y51_c00173{bottom:1026.813333pt;}
.y4f_c00173{bottom:1028.346667pt;}
.y52_c00173{bottom:1035.266667pt;}
.y45_c00173{bottom:1045.253333pt;}
.y4a_c00173{bottom:1049.093333pt;}
.y47_c00173{bottom:1051.386667pt;}
.y48_c00173{bottom:1052.160000pt;}
.y46_c00173{bottom:1053.693333pt;}
.y49_c00173{bottom:1055.226667pt;}
.y4b_c00173{bottom:1056.773333pt;}
.y4c_c00173{bottom:1059.066667pt;}
.y3f_c00173{bottom:1067.520000pt;}
.y3c_c00173{bottom:1069.053333pt;}
.y40_c00173{bottom:1069.826667pt;}
.y3e_c00173{bottom:1070.586667pt;}
.y42_c00173{bottom:1072.133333pt;}
.y3d_c00173{bottom:1072.893333pt;}
.y41_c00173{bottom:1073.666667pt;}
.y43_c00173{bottom:1076.733333pt;}
.y44_c00173{bottom:1080.573333pt;}
.y38_c00173{bottom:1086.720000pt;}
.y37_c00173{bottom:1089.026667pt;}
.y39_c00173{bottom:1089.786667pt;}
.y3a_c00173{bottom:1090.560000pt;}
.y3b_c00173{bottom:1091.333333pt;}
.y31_c00173{bottom:1112.066667pt;}
.y32_c00173{bottom:1112.826667pt;}
.y34_c00173{bottom:1115.133333pt;}
.y33_c00173{bottom:1115.906667pt;}
.y35_c00173{bottom:1116.666667pt;}
.y36_c00173{bottom:1123.586667pt;}
.y28_c00173{bottom:1138.173333pt;}
.y29_c00173{bottom:1138.946667pt;}
.y2c_c00173{bottom:1139.706667pt;}
.y2b_c00173{bottom:1140.480000pt;}
.y2a_c00173{bottom:1143.546667pt;}
.y2d_c00173{bottom:1145.093333pt;}
.y2e_c00173{bottom:1149.693333pt;}
.y2f_c00173{bottom:1150.466667pt;}
.y30_c00173{bottom:1159.680000pt;}
.y26_c00173{bottom:1161.213333pt;}
.y21_c00173{bottom:1161.986667pt;}
.y23_c00173{bottom:1162.746667pt;}
.y25_c00173{bottom:1163.520000pt;}
.y22_c00173{bottom:1164.293333pt;}
.y24_c00173{bottom:1165.053333pt;}
.y27_c00173{bottom:1175.040000pt;}
.y19_c00173{bottom:1178.106667pt;}
.y18_c00173{bottom:1179.653333pt;}
.y1b_c00173{bottom:1180.413333pt;}
.y20_c00173{bottom:1181.186667pt;}
.y1f_c00173{bottom:1181.946667pt;}
.y1e_c00173{bottom:1182.720000pt;}
.y1d_c00173{bottom:1183.493333pt;}
.y1a_c00173{bottom:1188.093333pt;}
.y1c_c00173{bottom:1188.866667pt;}
.y10_c00173{bottom:1199.613333pt;}
.y11_c00173{bottom:1201.920000pt;}
.y13_c00173{bottom:1203.453333pt;}
.y12_c00173{bottom:1204.226667pt;}
.y14_c00173{bottom:1206.533333pt;}
.y17_c00173{bottom:1209.600000pt;}
.y16_c00173{bottom:1211.133333pt;}
.y15_c00173{bottom:1211.906667pt;}
.yb_c00173{bottom:1230.333333pt;}
.ya_c00173{bottom:1231.106667pt;}
.yc_c00173{bottom:1232.640000pt;}
.yd_c00173{bottom:1234.173333pt;}
.yf_c00173{bottom:1236.480000pt;}
.ye_c00173{bottom:1238.786667pt;}
.y6_c00173{bottom:1244.160000pt;}
.y7_c00173{bottom:1244.933333pt;}
.y5_c00173{bottom:1251.840000pt;}
.y4_c00173{bottom:1269.506667pt;}
.y3_c00173{bottom:1270.266667pt;}
.y1_c00173{bottom:1274.880000pt;}
.y2_c00173{bottom:1275.653333pt;}
.h6_c00173{height:2.764500pt;}
.h3_c00173{height:4.799479pt;}
.h2_c00173{height:5.519401pt;}
.h27_c00173{height:7.892813pt;}
.h8_c00173{height:8.303099pt;}
.h7_c00173{height:11.038802pt;}
.ha_c00173{height:13.822500pt;}
.h5_c00173{height:16.606198pt;}
.h4_c00173{height:19.341901pt;}
.h9_c00173{height:22.125599pt;}
.h1f_c00173{height:24.861302pt;}
.h20_c00173{height:27.645000pt;}
.h23_c00173{height:30.428698pt;}
.h21_c00173{height:33.164401pt;}
.h25_c00173{height:35.948099pt;}
.h1c_c00173{height:38.683802pt;}
.h22_c00173{height:41.467500pt;}
.h1a_c00173{height:44.251198pt;}
.h16_c00173{height:46.986901pt;}
.h12_c00173{height:49.770599pt;}
.h15_c00173{height:52.506302pt;}
.h17_c00173{height:55.290000pt;}
.h11_c00173{height:58.073698pt;}
.h1b_c00173{height:60.809401pt;}
.h19_c00173{height:63.593099pt;}
.h18_c00173{height:66.328802pt;}
.h14_c00173{height:69.112500pt;}
.hc_c00173{height:71.896198pt;}
.hd_c00173{height:74.631901pt;}
.h13_c00173{height:77.415599pt;}
.h10_c00173{height:80.151302pt;}
.hf_c00173{height:82.935000pt;}
.h24_c00173{height:85.718698pt;}
.h1e_c00173{height:88.454401pt;}
.h1d_c00173{height:91.238099pt;}
.he_c00173{height:96.757500pt;}
.hb_c00173{height:99.541198pt;}
.h26_c00173{height:102.276901pt;}
.h1_c00173{height:1336.000000pt;}
.h0_c00173{height:1336.320000pt;}
.w0_c00173{width:969.213333pt;}
.w1_c00173{width:969.333333pt;}
.x0_c00173{left:0.000000pt;}
.x8_c00173{left:7.680000pt;}
.x9_c00173{left:14.586667pt;}
.x3f_c00173{left:178.946667pt;}
.x90_c00173{left:182.013333pt;}
.x40_c00173{left:189.693333pt;}
.x81_c00173{left:195.840000pt;}
.xb4_c00173{left:197.373333pt;}
.x68_c00173{left:200.453333pt;}
.x1b_c00173{left:201.986667pt;}
.x10_c00173{left:203.520000pt;}
.x87_c00173{left:205.053333pt;}
.x37_c00173{left:206.586667pt;}
.x69_c00173{left:208.133333pt;}
.x82_c00173{left:209.666667pt;}
.xa1_c00173{left:211.200000pt;}
.xcb_c00173{left:213.506667pt;}
.xe2_c00173{left:215.813333pt;}
.xfd_c00173{left:217.346667pt;}
.x100_c00173{left:222.720000pt;}
.xcc_c00173{left:225.786667pt;}
.x1c_c00173{left:231.173333pt;}
.xa2_c00173{left:234.240000pt;}
.x101_c00173{left:235.773333pt;}
.x88_c00173{left:240.386667pt;}
.x6f_c00173{left:249.600000pt;}
.xf9_c00173{left:253.440000pt;}
.xa3_c00173{left:258.813333pt;}
.xa_c00173{left:262.653333pt;}
.x4e_c00173{left:264.186667pt;}
.x74_c00173{left:266.493333pt;}
.x41_c00173{left:268.800000pt;}
.x77_c00173{left:271.106667pt;}
.x1d_c00173{left:273.413333pt;}
.x3c_c00173{left:274.946667pt;}
.x91_c00173{left:277.253333pt;}
.x47_c00173{left:279.546667pt;}
.xe1_c00173{left:285.693333pt;}
.x11_c00173{left:288.773333pt;}
.x70_c00173{left:290.306667pt;}
.xa9_c00173{left:292.613333pt;}
.xd4_c00173{left:294.906667pt;}
.xc3_c00173{left:296.453333pt;}
.xa4_c00173{left:299.520000pt;}
.x5e_c00173{left:301.053333pt;}
.x83_c00173{left:302.586667pt;}
.x26_c00173{left:305.666667pt;}
.x5f_c00173{left:307.200000pt;}
.x2c_c00173{left:309.506667pt;}
.xb5_c00173{left:311.813333pt;}
.x6a_c00173{left:315.653333pt;}
.x48_c00173{left:321.026667pt;}
.x27_c00173{left:322.560000pt;}
.x6b_c00173{left:324.093333pt;}
.x7e_c00173{left:327.173333pt;}
.xeb_c00173{left:328.706667pt;}
.xfa_c00173{left:330.240000pt;}
.x12_c00173{left:334.080000pt;}
.x78_c00173{left:336.386667pt;}
.xd5_c00173{left:337.920000pt;}
.x55_c00173{left:339.453333pt;}
.xb_c00173{left:342.533333pt;}
.x42_c00173{left:346.373333pt;}
.xcd_c00173{left:347.906667pt;}
.x4f_c00173{left:350.213333pt;}
.x98_c00173{left:351.746667pt;}
.xf7_c00173{left:354.813333pt;}
.x1e_c00173{left:357.120000pt;}
.xc8_c00173{left:358.653333pt;}
.xd9_c00173{left:360.960000pt;}
.xd6_c00173{left:362.493333pt;}
.xb8_c00173{left:364.026667pt;}
.xf3_c00173{left:367.866667pt;}
.xe7_c00173{left:369.413333pt;}
.x92_c00173{left:370.946667pt;}
.x75_c00173{left:372.480000pt;}
.x79_c00173{left:374.786667pt;}
.x60_c00173{left:377.093333pt;}
.x2d_c00173{left:378.626667pt;}
.x13_c00173{left:380.160000pt;}
.xce_c00173{left:382.466667pt;}
.x50_c00173{left:384.000000pt;}
.x1f_c00173{left:387.066667pt;}
.x56_c00173{left:388.613333pt;}
.xf4_c00173{left:390.906667pt;}
.x6c_c00173{left:392.453333pt;}
.xb9_c00173{left:396.293333pt;}
.x1_c00173{left:397.826667pt;}
.xaa_c00173{left:403.200000pt;}
.x38_c00173{left:407.813333pt;}
.x6_c00173{left:410.106667pt;}
.x71_c00173{left:411.653333pt;}
.x2_c00173{left:414.720000pt;}
.xa5_c00173{left:418.560000pt;}
.x7_c00173{left:422.400000pt;}
.x20_c00173{left:423.933333pt;}
.xef_c00173{left:425.466667pt;}
.x7a_c00173{left:427.013333pt;}
.xc4_c00173{left:428.546667pt;}
.x57_c00173{left:432.386667pt;}
.xad_c00173{left:433.920000pt;}
.x21_c00173{left:435.453333pt;}
.xba_c00173{left:436.986667pt;}
.x72_c00173{left:439.293333pt;}
.x43_c00173{left:441.600000pt;}
.x51_c00173{left:443.906667pt;}
.xe3_c00173{left:445.440000pt;}
.x7b_c00173{left:446.973333pt;}
.xf0_c00173{left:450.053333pt;}
.x58_c00173{left:453.120000pt;}
.x89_c00173{left:454.653333pt;}
.xc0_c00173{left:456.186667pt;}
.xfb_c00173{left:457.733333pt;}
.x93_c00173{left:460.026667pt;}
.x14_c00173{left:462.333333pt;}
.x6d_c00173{left:463.866667pt;}
.x99_c00173{left:466.173333pt;}
.xe4_c00173{left:467.706667pt;}
.xcf_c00173{left:470.786667pt;}
.x3d_c00173{left:472.320000pt;}
.x9a_c00173{left:475.386667pt;}
.x61_c00173{left:476.933333pt;}
.xf5_c00173{left:478.466667pt;}
.xb6_c00173{left:480.000000pt;}
.x2e_c00173{left:483.066667pt;}
.x7f_c00173{left:484.613333pt;}
.xbd_c00173{left:486.146667pt;}
.x44_c00173{left:487.680000pt;}
.xae_c00173{left:491.520000pt;}
.x22_c00173{left:493.826667pt;}
.x49_c00173{left:495.360000pt;}
.xda_c00173{left:498.426667pt;}
.x5_c00173{left:499.973333pt;}
.x8a_c00173{left:502.266667pt;}
.xb7_c00173{left:504.573333pt;}
.x28_c00173{left:507.653333pt;}
.xd2_c00173{left:513.026667pt;}
.xe5_c00173{left:515.333333pt;}
.x59_c00173{left:516.866667pt;}
.xf1_c00173{left:519.933333pt;}
.xc9_c00173{left:522.240000pt;}
.x15_c00173{left:523.773333pt;}
.xec_c00173{left:526.080000pt;}
.x2f_c00173{left:529.146667pt;}
.xd0_c00173{left:531.453333pt;}
.x52_c00173{left:532.986667pt;}
.x3_c00173{left:535.293333pt;}
.x45_c00173{left:538.373333pt;}
.x9b_c00173{left:540.666667pt;}
.xb2_c00173{left:542.213333pt;}
.x4_c00173{left:543.746667pt;}
.x84_c00173{left:545.280000pt;}
.x23_c00173{left:548.346667pt;}
.x62_c00173{left:549.893333pt;}
.x102_c00173{left:552.186667pt;}
.xc1_c00173{left:556.026667pt;}
.x39_c00173{left:558.333333pt;}
.xc5_c00173{left:559.866667pt;}
.x4a_c00173{left:561.413333pt;}
.x16_c00173{left:562.946667pt;}
.xfc_c00173{left:564.480000pt;}
.x9c_c00173{left:566.013333pt;}
.x63_c00173{left:569.853333pt;}
.x8b_c00173{left:571.386667pt;}
.x29_c00173{left:573.693333pt;}
.x85_c00173{left:575.226667pt;}
.x5a_c00173{left:577.533333pt;}
.xa6_c00173{left:580.613333pt;}
.x24_c00173{left:584.453333pt;}
.x94_c00173{left:586.746667pt;}
.xc2_c00173{left:589.826667pt;}
.xf2_c00173{left:591.360000pt;}
.xc_c00173{left:593.666667pt;}
.x5b_c00173{left:595.200000pt;}
.x17_c00173{left:597.506667pt;}
.xd1_c00173{left:599.040000pt;}
.x8c_c00173{left:601.346667pt;}
.xdb_c00173{left:604.413333pt;}
.xe8_c00173{left:605.946667pt;}
.xed_c00173{left:608.253333pt;}
.x30_c00173{left:610.560000pt;}
.x80_c00173{left:614.400000pt;}
.x86_c00173{left:618.240000pt;}
.xe6_c00173{left:619.773333pt;}
.xa7_c00173{left:622.853333pt;}
.x9d_c00173{left:625.146667pt;}
.x7c_c00173{left:626.693333pt;}
.xab_c00173{left:632.066667pt;}
.x2a_c00173{left:634.373333pt;}
.xbb_c00173{left:635.906667pt;}
.x4b_c00173{left:640.506667pt;}
.x73_c00173{left:642.053333pt;}
.xa8_c00173{left:645.120000pt;}
.x31_c00173{left:647.426667pt;}
.x3a_c00173{left:650.493333pt;}
.x18_c00173{left:655.106667pt;}
.x95_c00173{left:656.640000pt;}
.x25_c00173{left:658.946667pt;}
.x5c_c00173{left:663.546667pt;}
.x3b_c00173{left:668.160000pt;}
.xc6_c00173{left:673.533333pt;}
.x3e_c00173{left:675.066667pt;}
.x64_c00173{left:678.146667pt;}
.x4c_c00173{left:679.680000pt;}
.x53_c00173{left:683.520000pt;}
.xfe_c00173{left:686.586667pt;}
.xbe_c00173{left:688.133333pt;}
.xd_c00173{left:689.666667pt;}
.x7d_c00173{left:694.266667pt;}
.xe9_c00173{left:695.813333pt;}
.x9e_c00173{left:697.346667pt;}
.x4d_c00173{left:700.413333pt;}
.x19_c00173{left:701.946667pt;}
.xbc_c00173{left:704.253333pt;}
.x103_c00173{left:708.095232pt;}
.xf8_c00173{left:709.626667pt;}
.x32_c00173{left:711.173333pt;}
.x76_c00173{left:712.706667pt;}
.xca_c00173{left:714.240000pt;}
.xe_c00173{left:718.080000pt;}
.xb3_c00173{left:719.613333pt;}
.xaf_c00173{left:722.693333pt;}
.xf_c00173{left:724.986667pt;}
.xbf_c00173{left:726.533333pt;}
.x65_c00173{left:728.826667pt;}
.x5d_c00173{left:730.373333pt;}
.xf6_c00173{left:734.973333pt;}
.x54_c00173{left:738.053333pt;}
.x96_c00173{left:743.426667pt;}
.xff_c00173{left:744.960000pt;}
.x66_c00173{left:746.493333pt;}
.xdc_c00173{left:751.866667pt;}
.xea_c00173{left:754.946667pt;}
.x67_c00173{left:756.480000pt;}
.x8d_c00173{left:759.546667pt;}
.xc7_c00173{left:769.533333pt;}
.x2b_c00173{left:774.146667pt;}
.x6e_c00173{left:776.453333pt;}
.x1a_c00173{left:781.826667pt;}
.x8e_c00173{left:784.133333pt;}
.xee_c00173{left:785.666667pt;}
.xd7_c00173{left:787.200000pt;}
.x9f_c00173{left:791.040000pt;}
.x8f_c00173{left:792.573333pt;}
.x46_c00173{left:794.106667pt;}
.x97_c00173{left:795.653333pt;}
.xb0_c00173{left:797.186667pt;}
.x33_c00173{left:799.493333pt;}
.xdd_c00173{left:801.026667pt;}
.xd3_c00173{left:810.240000pt;}
.x34_c00173{left:812.546667pt;}
.xa0_c00173{left:815.613200pt;}
.xb1_c00173{left:817.920000pt;}
.x35_c00173{left:821.760000pt;}
.xac_c00173{left:826.373333pt;}
.x36_c00173{left:830.973333pt;}
.xde_c00173{left:837.120000pt;}
.xdf_c00173{left:845.573333pt;}
.xd8_c00173{left:849.413333pt;}
.xe0_c00173{left:854.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_47833c11d2333908f407284d.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.109863;font-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_c00174{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me0_c00174{transform:matrix(0.076725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076725,0.000000,0.000000,0.250000,0,0);}
.m179_c00174{transform:matrix(0.080250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080250,0.000000,0.000000,0.250000,0,0);}
.m18d_c00174{transform:matrix(0.089875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089875,0.000000,0.000000,0.250000,0,0);}
.m14b_c00174{transform:matrix(0.098100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098100,0.000000,0.000000,0.250000,0,0);}
.m169_c00174{transform:matrix(0.103375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103375,0.000000,0.000000,0.250000,0,0);}
.m141_c00174{transform:matrix(0.107075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107075,0.000000,0.000000,0.250000,0,0);}
.md4_c00174{transform:matrix(0.112100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112100,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00174{transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112125,0.000000,0.000000,0.250000,0,0);}
.md6_c00174{transform:matrix(0.113800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113800,0.000000,0.000000,0.250000,0,0);}
.m14c_c00174{transform:matrix(0.114600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114600,0.000000,0.000000,0.250000,0,0);}
.m5f_c00174{transform:matrix(0.115450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115450,0.000000,0.000000,0.250000,0,0);}
.m37_c00174{transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);}
.m8_c00174{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);}
.m199_c00174{transform:matrix(0.118825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118825,0.000000,0.000000,0.250000,0,0);}
.m197_c00174{transform:matrix(0.118950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118950,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00174{transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);}
.m165_c00174{transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);}
.m19d_c00174{transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);}
.m15e_c00174{transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);}
.m1ba_c00174{transform:matrix(0.120700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120700,0.000000,0.000000,0.250000,0,0);}
.m171_c00174{transform:matrix(0.121325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121325,0.000000,0.000000,0.250000,0,0);}
.m10_c00174{transform:matrix(0.121525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121525,0.000000,0.000000,0.250000,0,0);}
.m18f_c00174{transform:matrix(0.122300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122300,0.000000,0.000000,0.250000,0,0);}
.m8d_c00174{transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);}
.m15f_c00174{transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00174{transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);}
.m17_c00174{transform:matrix(0.126475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126475,0.000000,0.000000,0.250000,0,0);}
.me1_c00174{transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);}
.m26_c00174{transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);}
.m43_c00174{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m167_c00174{transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);}
.m27_c00174{transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);}
.m185_c00174{transform:matrix(0.132225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132225,0.000000,0.000000,0.250000,0,0);}
.m19_c00174{transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);}
.m157_c00174{transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);}
.m161_c00174{transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);}
.m109_c00174{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);}
.m144_c00174{transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);}
.m19a_c00174{transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00174{transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);}
.m11f_c00174{transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);}
.m22_c00174{transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);}
.mb5_c00174{transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);}
.m151_c00174{transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);}
.me6_c00174{transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);}
.m85_c00174{transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);}
.m1bb_c00174{transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);}
.m146_c00174{transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);}
.m175_c00174{transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);}
.mde_c00174{transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);}
.m195_c00174{transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);}
.m142_c00174{transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);}
.m150_c00174{transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);}
.m5a_c00174{transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);}
.m11d_c00174{transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);}
.m6c_c00174{transform:matrix(0.140325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140325,0.000000,0.000000,0.250000,0,0);}
.mc0_c00174{transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);}
.mbe_c00174{transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);}
.m19b_c00174{transform:matrix(0.141800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141800,0.000000,0.000000,0.250000,0,0);}
.mad_c00174{transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);}
.mf5_c00174{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);}
.m1a4_c00174{transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);}
.m18e_c00174{transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);}
.m100_c00174{transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);}
.m9a_c00174{transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);}
.m18b_c00174{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m17a_c00174{transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);}
.m1_c00174{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00174{transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);}
.m96_c00174{transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);}
.m36_c00174{transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);}
.m138_c00174{transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);}
.m1d_c00174{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);}
.m70_c00174{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);}
.m155_c00174{transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);}
.m172_c00174{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.m158_c00174{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m75_c00174{transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);}
.m24_c00174{transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);}
.m149_c00174{transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);}
.me9_c00174{transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);}
.m34_c00174{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);}
.m16c_c00174{transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);}
.m12f_c00174{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);}
.m174_c00174{transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);}
.mfe_c00174{transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);}
.m32_c00174{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.ma0_c00174{transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);}
.m184_c00174{transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);}
.me8_c00174{transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);}
.m25_c00174{transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00174{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);}
.m17f_c00174{transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);}
.mf1_c00174{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m156_c00174{transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);}
.mfd_c00174{transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);}
.mb8_c00174{transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);}
.m23_c00174{transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00174{transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);}
.m16d_c00174{transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);}
.m188_c00174{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00174{transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);}
.m7a_c00174{transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);}
.m8a_c00174{transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);}
.m143_c00174{transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);}
.m15a_c00174{transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00174{transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);}
.m126_c00174{transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);}
.meb_c00174{transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);}
.mc4_c00174{transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);}
.m12c_c00174{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.mf4_c00174{transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);}
.m52_c00174{transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);}
.m57_c00174{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.ma8_c00174{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.m86_c00174{transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);}
.m54_c00174{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);}
.md7_c00174{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m154_c00174{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m62_c00174{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.me5_c00174{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.m99_c00174{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.mee_c00174{transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00174{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.mce_c00174{transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);}
.m5c_c00174{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);}
.m4a_c00174{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.mf_c00174{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m45_c00174{transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);}
.m19c_c00174{transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);}
.m1bc_c00174{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);}
.m152_c00174{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00174{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.ma_c00174{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);}
.m10c_c00174{transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);}
.m89_c00174{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);}
.ma5_c00174{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.m8e_c00174{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);}
.m87_c00174{transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);}
.mea_c00174{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00174{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);}
.m12e_c00174{transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);}
.m193_c00174{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m130_c00174{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);}
.m139_c00174{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m148_c00174{transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);}
.m4b_c00174{transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);}
.mbb_c00174{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.mcb_c00174{transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);}
.m145_c00174{transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);}
.m42_c00174{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);}
.mcf_c00174{transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);}
.m118_c00174{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m9e_c00174{transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);}
.m3f_c00174{transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);}
.m104_c00174{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m40_c00174{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);}
.m159_c00174{transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);}
.maa_c00174{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.mae_c00174{transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165100,0.000000,0.000000,0.250000,0,0);}
.m13a_c00174{transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);}
.m49_c00174{transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);}
.m4d_c00174{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.m48_c00174{transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);}
.m9c_c00174{transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);}
.m134_c00174{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.m1e_c00174{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.m0_c00174{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.mf8_c00174{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m68_c00174{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m5d_c00174{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m8b_c00174{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);}
.m8c_c00174{transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);}
.m33_c00174{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);}
.m115_c00174{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.m1bf_c00174{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m119_c00174{transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);}
.m11b_c00174{transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);}
.m2c_c00174{transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);}
.m162_c00174{transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);}
.mba_c00174{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.m191_c00174{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);}
.m7e_c00174{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.ma6_c00174{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.m198_c00174{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.m11a_c00174{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);}
.m16b_c00174{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.m125_c00174{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.m66_c00174{transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);}
.m17b_c00174{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00174{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.m95_c00174{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.mc9_c00174{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mfb_c00174{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.m10e_c00174{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);}
.m18_c00174{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.m97_c00174{transform:matrix(0.172225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172225,0.000000,0.000000,0.250000,0,0);}
.m192_c00174{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.m160_c00174{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m3e_c00174{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00174{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m4c_c00174{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m121_c00174{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.m84_c00174{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);}
.m132_c00174{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.mf3_c00174{transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);}
.m122_c00174{transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);}
.m116_c00174{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);}
.mac_c00174{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m15b_c00174{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);}
.m3c_c00174{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.m29_c00174{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);}
.m55_c00174{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.m73_c00174{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.mc3_c00174{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.mff_c00174{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.mb3_c00174{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.m190_c00174{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.m61_c00174{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);}
.m82_c00174{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.me4_c00174{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);}
.m71_c00174{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m108_c00174{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);}
.m12a_c00174{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);}
.m58_c00174{transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);}
.m1af_c00174{transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);}
.mf9_c00174{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m6f_c00174{transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);}
.me3_c00174{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);}
.m187_c00174{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);}
.m11_c00174{transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);}
.m153_c00174{transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);}
.m194_c00174{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m103_c00174{transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);}
.m181_c00174{transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);}
.mcd_c00174{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m9f_c00174{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.mfc_c00174{transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);}
.m14e_c00174{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);}
.m196_c00174{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m135_c00174{transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);}
.med_c00174{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);}
.m17e_c00174{transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);}
.m1b8_c00174{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m140_c00174{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.m12_c00174{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.m177_c00174{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m189_c00174{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00174{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m10b_c00174{transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);}
.m19f_c00174{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.m123_c00174{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m16_c00174{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);}
.m168_c00174{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);}
.m1b9_c00174{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);}
.mc6_c00174{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mca_c00174{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.m16e_c00174{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m114_c00174{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m9d_c00174{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.m2d_c00174{transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);}
.m50_c00174{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);}
.mf7_c00174{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.m41_c00174{transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);}
.m13b_c00174{transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);}
.m18a_c00174{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);}
.m13c_c00174{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m44_c00174{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00174{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.mc7_c00174{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m60_c00174{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.mf6_c00174{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m124_c00174{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.m19e_c00174{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);}
.me_c00174{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m15c_c00174{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);}
.m94_c00174{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m5b_c00174{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);}
.m11c_c00174{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);}
.m17c_c00174{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.me2_c00174{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.m69_c00174{transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);}
.m79_c00174{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);}
.m3d_c00174{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.maf_c00174{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m90_c00174{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);}
.mc1_c00174{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.m127_c00174{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.m176_c00174{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.mbc_c00174{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m128_c00174{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);}
.mdf_c00174{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.mc5_c00174{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);}
.m6d_c00174{transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);}
.m166_c00174{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m7c_c00174{transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);}
.m56_c00174{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.m12d_c00174{transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);}
.m186_c00174{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.ma4_c00174{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);}
.m117_c00174{transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);}
.m17d_c00174{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.m46_c00174{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);}
.m16f_c00174{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m7b_c00174{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);}
.m11e_c00174{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m5e_c00174{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);}
.m16a_c00174{transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);}
.m133_c00174{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);}
.m14d_c00174{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mb_c00174{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m30_c00174{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);}
.m129_c00174{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.md8_c00174{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);}
.mb7_c00174{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);}
.m15_c00174{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m113_c00174{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);}
.mdc_c00174{transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);}
.md0_c00174{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);}
.m67_c00174{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00174{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m77_c00174{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);}
.m102_c00174{transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);}
.mef_c00174{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.m6b_c00174{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);}
.m13f_c00174{transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);}
.m10a_c00174{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);}
.m13e_c00174{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.ma3_c00174{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m170_c00174{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);}
.m14f_c00174{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.mf0_c00174{transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);}
.m7f_c00174{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m91_c00174{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m80_c00174{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);}
.m131_c00174{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);}
.m4f_c00174{transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);}
.m1b_c00174{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.m10f_c00174{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);}
.ma2_c00174{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m81_c00174{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);}
.m120_c00174{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);}
.m53_c00174{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m1c0_c00174{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);}
.mc2_c00174{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);}
.m1b2_c00174{transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);}
.mb9_c00174{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);}
.m63_c00174{transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);}
.me7_c00174{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);}
.m111_c00174{transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);}
.m72_c00174{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);}
.md9_c00174{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.mcc_c00174{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);}
.m1b4_c00174{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);}
.m180_c00174{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.mb1_c00174{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);}
.m4e_c00174{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.m2b_c00174{transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);}
.md3_c00174{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);}
.m164_c00174{transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);}
.mda_c00174{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);}
.m92_c00174{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m20_c00174{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);}
.mab_c00174{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.mec_c00174{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);}
.mdb_c00174{transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);}
.m183_c00174{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m163_c00174{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);}
.mb4_c00174{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.m136_c00174{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);}
.m1a6_c00174{transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);}
.m12b_c00174{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);}
.mbd_c00174{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.m105_c00174{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00174{transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246275,0.000000,0.000000,0.250000,0,0);}
.m112_c00174{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);}
.m21_c00174{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);}
.mb2_c00174{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);}
.m147_c00174{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m6a_c00174{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m10d_c00174{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);}
.m3b_c00174{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m98_c00174{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);}
.md_c00174{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);}
.m35_c00174{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);}
.ma7_c00174{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);}
.mbf_c00174{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m76_c00174{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8f_c00174{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m18c_c00174{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);}
.m9_c00174{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00174{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);}
.m47_c00174{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00174{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);}
.m38_c00174{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m78_c00174{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m107_c00174{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c00174{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);}
.m1ae_c00174{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m64_c00174{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb6_c00174{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);}
.m83_c00174{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m31_c00174{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m74_c00174{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);}
.md5_c00174{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m101_c00174{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m88_c00174{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00174{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m110_c00174{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00174{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);}
.m39_c00174{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00174{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00174{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);}
.m7d_c00174{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf2_c00174{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00174{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4_c00174{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);}
.m1f_c00174{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);}
.m93_c00174{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3_c00174{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.md2_c00174{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00174{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mc_c00174{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);}
.m14_c00174{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);}
.m106_c00174{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m65_c00174{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m182_c00174{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m59_c00174{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mdd_c00174{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1be_c00174{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00174{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m28_c00174{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);}
.mfa_c00174{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m15d_c00174{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);}
.ma1_c00174{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2_c00174{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m51_c00174{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00174{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00174{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m13d_c00174{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.md1_c00174{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m137_c00174{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m14a_c00174{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00174{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m173_c00174{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);}
.m178_c00174{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.m7_c00174{transform:matrix(2.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.797500,0.000000,0.000000,0.250000,0,0);}
.m6_c00174{transform:matrix(3.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.007500,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:-21.169620px;}
.ws1_c00174{word-spacing:0.000000px;}
.fc0_c00174{color:transparent;}
.fs1_c00174{font-size:3.456000px;}
.fs4_c00174{font-size:6.000000px;}
.fs18_c00174{font-size:6.900000px;}
.fs1d_c00174{font-size:10.380000px;}
.fs23_c00174{font-size:13.800000px;}
.fs6_c00174{font-size:17.280000px;}
.fs3_c00174{font-size:20.760000px;}
.fs5_c00174{font-size:24.180000px;}
.fs21_c00174{font-size:27.660000px;}
.fs24_c00174{font-size:31.080000px;}
.fs1f_c00174{font-size:34.560000px;}
.fsb_c00174{font-size:38.040000px;}
.fs0_c00174{font-size:41.460000px;}
.fs1e_c00174{font-size:44.940000px;}
.fs19_c00174{font-size:48.360000px;}
.fs2_c00174{font-size:51.840000px;}
.fs20_c00174{font-size:55.320000px;}
.fs17_c00174{font-size:58.740000px;}
.fsf_c00174{font-size:62.220000px;}
.fs1a_c00174{font-size:65.640000px;}
.fsc_c00174{font-size:69.120000px;}
.fs12_c00174{font-size:72.600000px;}
.fs11_c00174{font-size:76.020000px;}
.fsa_c00174{font-size:79.500000px;}
.fs1b_c00174{font-size:82.920000px;}
.fs8_c00174{font-size:86.400000px;}
.fs16_c00174{font-size:89.880000px;}
.fs14_c00174{font-size:93.300000px;}
.fs7_c00174{font-size:96.780000px;}
.fs10_c00174{font-size:100.200000px;}
.fsd_c00174{font-size:103.680000px;}
.fs9_c00174{font-size:107.160000px;}
.fs13_c00174{font-size:110.580000px;}
.fs1c_c00174{font-size:114.060000px;}
.fs26_c00174{font-size:117.480000px;}
.fse_c00174{font-size:120.960000px;}
.fs15_c00174{font-size:124.440000px;}
.fs22_c00174{font-size:131.340000px;}
.fs25_c00174{font-size:138.240000px;}
.y0_c00174{bottom:0.000000px;}
.y1b6_c00174{bottom:183.165000px;}
.y1b7_c00174{bottom:184.035000px;}
.y1b5_c00174{bottom:206.490000px;}
.y1b4_c00174{bottom:207.360000px;}
.y1b1_c00174{bottom:211.680000px;}
.y1af_c00174{bottom:214.275000px;}
.y1b2_c00174{bottom:217.725000px;}
.y1b0_c00174{bottom:218.595000px;}
.y1ae_c00174{bottom:219.450000px;}
.y1b3_c00174{bottom:222.045000px;}
.y1ad_c00174{bottom:234.150000px;}
.y1aa_c00174{bottom:236.730000px;}
.y1a8_c00174{bottom:239.325000px;}
.y1ac_c00174{bottom:240.195000px;}
.y1a7_c00174{bottom:241.050000px;}
.y1a9_c00174{bottom:241.920000px;}
.y1ab_c00174{bottom:243.645000px;}
.y1a6_c00174{bottom:244.515000px;}
.y1a5_c00174{bottom:249.690000px;}
.y1a4_c00174{bottom:257.475000px;}
.y1a3_c00174{bottom:260.925000px;}
.y1a2_c00174{bottom:261.795000px;}
.y1a0_c00174{bottom:264.390000px;}
.y19f_c00174{bottom:266.970000px;}
.y1a1_c00174{bottom:268.710000px;}
.y19e_c00174{bottom:275.610000px;}
.y19d_c00174{bottom:276.480000px;}
.y19c_c00174{bottom:277.350000px;}
.y19a_c00174{bottom:283.395000px;}
.y198_c00174{bottom:287.715000px;}
.y199_c00174{bottom:288.570000px;}
.y197_c00174{bottom:291.165000px;}
.y19b_c00174{bottom:293.760000px;}
.y195_c00174{bottom:298.080000px;}
.y196_c00174{bottom:299.805000px;}
.y193_c00174{bottom:308.445000px;}
.y191_c00174{bottom:309.315000px;}
.y192_c00174{bottom:310.170000px;}
.y190_c00174{bottom:312.765000px;}
.y18e_c00174{bottom:313.635000px;}
.y18f_c00174{bottom:314.490000px;}
.y18d_c00174{bottom:318.810000px;}
.y18c_c00174{bottom:320.550000px;}
.y194_c00174{bottom:329.190000px;}
.y18b_c00174{bottom:333.510000px;}
.y18a_c00174{bottom:336.960000px;}
.y189_c00174{bottom:339.555000px;}
.y187_c00174{bottom:340.410000px;}
.y186_c00174{bottom:342.150000px;}
.y188_c00174{bottom:343.005000px;}
.y184_c00174{bottom:343.875000px;}
.y183_c00174{bottom:346.470000px;}
.y185_c00174{bottom:347.325000px;}
.y17f_c00174{bottom:359.430000px;}
.y17e_c00174{bottom:362.010000px;}
.y181_c00174{bottom:362.880000px;}
.y17d_c00174{bottom:363.750000px;}
.y17c_c00174{bottom:365.475000px;}
.y180_c00174{bottom:367.200000px;}
.y17b_c00174{bottom:368.070000px;}
.y179_c00174{bottom:368.925000px;}
.y182_c00174{bottom:372.390000px;}
.y178_c00174{bottom:374.115000px;}
.y17a_c00174{bottom:374.970000px;}
.y176_c00174{bottom:384.480000px;}
.y174_c00174{bottom:386.205000px;}
.y177_c00174{bottom:387.075000px;}
.y173_c00174{bottom:388.800000px;}
.y171_c00174{bottom:390.525000px;}
.y170_c00174{bottom:391.395000px;}
.y16d_c00174{bottom:392.250000px;}
.y175_c00174{bottom:393.120000px;}
.y16f_c00174{bottom:394.845000px;}
.y16c_c00174{bottom:396.570000px;}
.y172_c00174{bottom:397.440000px;}
.y16e_c00174{bottom:399.165000px;}
.y16b_c00174{bottom:408.675000px;}
.y16a_c00174{bottom:409.530000px;}
.y169_c00174{bottom:411.270000px;}
.y168_c00174{bottom:412.125000px;}
.y166_c00174{bottom:414.720000px;}
.y165_c00174{bottom:417.315000px;}
.y164_c00174{bottom:418.170000px;}
.y161_c00174{bottom:419.040000px;}
.y167_c00174{bottom:422.490000px;}
.y163_c00174{bottom:423.360000px;}
.y162_c00174{bottom:425.085000px;}
.y15f_c00174{bottom:426.810000px;}
.y160_c00174{bottom:430.275000px;}
.y15d_c00174{bottom:434.595000px;}
.y15c_c00174{bottom:435.450000px;}
.y15b_c00174{bottom:437.190000px;}
.y158_c00174{bottom:438.915000px;}
.y15a_c00174{bottom:439.770000px;}
.y159_c00174{bottom:445.830000px;}
.y15e_c00174{bottom:449.280000px;}
.y157_c00174{bottom:458.790000px;}
.y155_c00174{bottom:463.110000px;}
.y153_c00174{bottom:465.690000px;}
.y152_c00174{bottom:466.560000px;}
.y150_c00174{bottom:467.430000px;}
.y156_c00174{bottom:468.285000px;}
.y151_c00174{bottom:470.010000px;}
.y154_c00174{bottom:472.605000px;}
.y14f_c00174{bottom:483.840000px;}
.y14e_c00174{bottom:486.435000px;}
.y14d_c00174{bottom:487.290000px;}
.y14c_c00174{bottom:488.160000px;}
.y14b_c00174{bottom:489.885000px;}
.y14a_c00174{bottom:491.610000px;}
.y149_c00174{bottom:492.480000px;}
.y148_c00174{bottom:493.350000px;}
.y146_c00174{bottom:495.930000px;}
.y147_c00174{bottom:501.990000px;}
.y144_c00174{bottom:506.310000px;}
.y145_c00174{bottom:507.165000px;}
.y143_c00174{bottom:509.760000px;}
.y142_c00174{bottom:514.080000px;}
.y141_c00174{bottom:517.530000px;}
.y13f_c00174{bottom:518.400000px;}
.y13e_c00174{bottom:522.720000px;}
.y140_c00174{bottom:526.170000px;}
.y13d_c00174{bottom:529.635000px;}
.y13c_c00174{bottom:533.955000px;}
.y13b_c00174{bottom:535.680000px;}
.y139_c00174{bottom:539.130000px;}
.y138_c00174{bottom:541.725000px;}
.y137_c00174{bottom:544.320000px;}
.y13a_c00174{bottom:546.045000px;}
.y136_c00174{bottom:548.640000px;}
.y135_c00174{bottom:549.510000px;}
.y134_c00174{bottom:550.365000px;}
.y132_c00174{bottom:560.730000px;}
.y130_c00174{bottom:563.325000px;}
.y12e_c00174{bottom:565.920000px;}
.y12c_c00174{bottom:566.790000px;}
.y131_c00174{bottom:567.645000px;}
.y12a_c00174{bottom:568.515000px;}
.y12b_c00174{bottom:570.240000px;}
.y12f_c00174{bottom:571.965000px;}
.y133_c00174{bottom:572.835000px;}
.y12d_c00174{bottom:573.690000px;}
.y128_c00174{bottom:574.560000px;}
.y129_c00174{bottom:581.475000px;}
.y125_c00174{bottom:585.795000px;}
.y126_c00174{bottom:586.650000px;}
.y123_c00174{bottom:590.115000px;}
.y124_c00174{bottom:590.970000px;}
.y120_c00174{bottom:591.840000px;}
.y11e_c00174{bottom:592.710000px;}
.y11f_c00174{bottom:594.435000px;}
.y121_c00174{bottom:595.290000px;}
.y122_c00174{bottom:597.885000px;}
.y11c_c00174{bottom:598.755000px;}
.y11d_c00174{bottom:602.205000px;}
.y11b_c00174{bottom:603.930000px;}
.y127_c00174{bottom:606.525000px;}
.y119_c00174{bottom:609.990000px;}
.y117_c00174{bottom:612.570000px;}
.y116_c00174{bottom:616.035000px;}
.y114_c00174{bottom:616.890000px;}
.y118_c00174{bottom:619.485000px;}
.y115_c00174{bottom:621.210000px;}
.y113_c00174{bottom:622.080000px;}
.y111_c00174{bottom:624.675000px;}
.y112_c00174{bottom:626.400000px;}
.y11a_c00174{bottom:628.995000px;}
.y10f_c00174{bottom:635.040000px;}
.y10e_c00174{bottom:636.765000px;}
.y10c_c00174{bottom:637.635000px;}
.y10b_c00174{bottom:641.085000px;}
.y10a_c00174{bottom:641.955000px;}
.y110_c00174{bottom:642.810000px;}
.y108_c00174{bottom:643.680000px;}
.y109_c00174{bottom:644.550000px;}
.y10d_c00174{bottom:645.405000px;}
.y107_c00174{bottom:661.830000px;}
.y105_c00174{bottom:665.280000px;}
.y104_c00174{bottom:666.150000px;}
.y103_c00174{bottom:667.005000px;}
.y102_c00174{bottom:667.875000px;}
.y106_c00174{bottom:668.730000px;}
.y100_c00174{bottom:671.325000px;}
.y101_c00174{bottom:674.790000px;}
.yff_c00174{bottom:679.110000px;}
.yfd_c00174{bottom:688.605000px;}
.yfc_c00174{bottom:689.475000px;}
.yfa_c00174{bottom:690.330000px;}
.yf9_c00174{bottom:691.200000px;}
.yf8_c00174{bottom:692.070000px;}
.yfe_c00174{bottom:692.925000px;}
.yf6_c00174{bottom:695.520000px;}
.yf7_c00174{bottom:696.390000px;}
.yfb_c00174{bottom:697.245000px;}
.yf5_c00174{bottom:711.930000px;}
.yf1_c00174{bottom:714.525000px;}
.yf3_c00174{bottom:716.250000px;}
.yf4_c00174{bottom:717.120000px;}
.yf2_c00174{bottom:717.990000px;}
.yee_c00174{bottom:718.845000px;}
.yf0_c00174{bottom:719.715000px;}
.yef_c00174{bottom:724.035000px;}
.yed_c00174{bottom:725.760000px;}
.yec_c00174{bottom:734.400000px;}
.yeb_c00174{bottom:735.270000px;}
.yea_c00174{bottom:736.995000px;}
.ye9_c00174{bottom:738.720000px;}
.ye8_c00174{bottom:739.590000px;}
.ye7_c00174{bottom:741.315000px;}
.ye5_c00174{bottom:742.170000px;}
.ye6_c00174{bottom:745.635000px;}
.ye4_c00174{bottom:758.595000px;}
.ye3_c00174{bottom:759.450000px;}
.ye2_c00174{bottom:762.045000px;}
.ydf_c00174{bottom:762.915000px;}
.ye1_c00174{bottom:763.770000px;}
.ydd_c00174{bottom:765.510000px;}
.ydb_c00174{bottom:767.235000px;}
.ydc_c00174{bottom:768.960000px;}
.ye0_c00174{bottom:771.555000px;}
.yde_c00174{bottom:772.410000px;}
.yd8_c00174{bottom:785.370000px;}
.yd7_c00174{bottom:787.965000px;}
.yd4_c00174{bottom:788.835000px;}
.yda_c00174{bottom:791.430000px;}
.yd9_c00174{bottom:792.285000px;}
.yd6_c00174{bottom:794.010000px;}
.yd5_c00174{bottom:796.605000px;}
.yd3_c00174{bottom:800.070000px;}
.yd1_c00174{bottom:811.290000px;}
.yd0_c00174{bottom:812.160000px;}
.ycf_c00174{bottom:814.755000px;}
.ycc_c00174{bottom:815.610000px;}
.ycd_c00174{bottom:816.480000px;}
.yd2_c00174{bottom:817.350000px;}
.ycb_c00174{bottom:819.075000px;}
.yce_c00174{bottom:822.525000px;}
.yca_c00174{bottom:833.760000px;}
.yc8_c00174{bottom:836.355000px;}
.yc7_c00174{bottom:837.210000px;}
.yc4_c00174{bottom:840.675000px;}
.yc3_c00174{bottom:841.530000px;}
.yc2_c00174{bottom:843.270000px;}
.yc9_c00174{bottom:844.125000px;}
.yc6_c00174{bottom:844.995000px;}
.yc5_c00174{bottom:846.720000px;}
.yc0_c00174{bottom:856.230000px;}
.yc1_c00174{bottom:857.955000px;}
.ybe_c00174{bottom:860.550000px;}
.ybb_c00174{bottom:861.405000px;}
.yba_c00174{bottom:862.275000px;}
.yb9_c00174{bottom:864.000000px;}
.yb7_c00174{bottom:865.725000px;}
.ybc_c00174{bottom:866.595000px;}
.ybf_c00174{bottom:867.450000px;}
.ybd_c00174{bottom:868.320000px;}
.yb4_c00174{bottom:871.770000px;}
.yb8_c00174{bottom:872.640000px;}
.yb6_c00174{bottom:873.510000px;}
.yb5_c00174{bottom:882.150000px;}
.yb3_c00174{bottom:883.005000px;}
.yb2_c00174{bottom:883.875000px;}
.yb0_c00174{bottom:884.730000px;}
.yaf_c00174{bottom:885.600000px;}
.yb1_c00174{bottom:887.325000px;}
.yad_c00174{bottom:888.195000px;}
.yac_c00174{bottom:890.790000px;}
.yae_c00174{bottom:895.110000px;}
.yaa_c00174{bottom:897.690000px;}
.yab_c00174{bottom:900.285000px;}
.ya9_c00174{bottom:908.070000px;}
.ya8_c00174{bottom:909.795000px;}
.ya7_c00174{bottom:911.520000px;}
.ya5_c00174{bottom:913.245000px;}
.ya4_c00174{bottom:914.115000px;}
.ya6_c00174{bottom:919.290000px;}
.ya3_c00174{bottom:921.885000px;}
.ya2_c00174{bottom:924.480000px;}
.ya1_c00174{bottom:932.250000px;}
.y9f_c00174{bottom:933.990000px;}
.y9e_c00174{bottom:934.845000px;}
.ya0_c00174{bottom:941.760000px;}
.y9d_c00174{bottom:959.040000px;}
.y9b_c00174{bottom:959.910000px;}
.y97_c00174{bottom:964.230000px;}
.y9c_c00174{bottom:965.085000px;}
.y98_c00174{bottom:969.405000px;}
.y9a_c00174{bottom:970.275000px;}
.y99_c00174{bottom:971.130000px;}
.y95_c00174{bottom:984.960000px;}
.y94_c00174{bottom:986.685000px;}
.y91_c00174{bottom:987.555000px;}
.y8f_c00174{bottom:989.280000px;}
.y90_c00174{bottom:990.150000px;}
.y8d_c00174{bottom:991.005000px;}
.y96_c00174{bottom:991.875000px;}
.y93_c00174{bottom:992.730000px;}
.y92_c00174{bottom:995.325000px;}
.y8e_c00174{bottom:997.050000px;}
.y8c_c00174{bottom:1003.110000px;}
.y8a_c00174{bottom:1008.285000px;}
.y89_c00174{bottom:1009.155000px;}
.y87_c00174{bottom:1012.605000px;}
.y85_c00174{bottom:1015.200000px;}
.y88_c00174{bottom:1019.520000px;}
.y86_c00174{bottom:1022.115000px;}
.y84_c00174{bottom:1022.970000px;}
.y8b_c00174{bottom:1029.030000px;}
.y81_c00174{bottom:1031.610000px;}
.y82_c00174{bottom:1033.350000px;}
.y80_c00174{bottom:1035.075000px;}
.y7f_c00174{bottom:1036.800000px;}
.y7c_c00174{bottom:1038.525000px;}
.y7d_c00174{bottom:1040.250000px;}
.y7e_c00174{bottom:1043.715000px;}
.y7b_c00174{bottom:1044.570000px;}
.y83_c00174{bottom:1046.310000px;}
.y7a_c00174{bottom:1057.530000px;}
.y78_c00174{bottom:1058.400000px;}
.y79_c00174{bottom:1059.270000px;}
.y77_c00174{bottom:1060.125000px;}
.y75_c00174{bottom:1062.720000px;}
.y73_c00174{bottom:1063.590000px;}
.y72_c00174{bottom:1065.315000px;}
.y6f_c00174{bottom:1066.170000px;}
.y74_c00174{bottom:1067.040000px;}
.y76_c00174{bottom:1067.910000px;}
.y70_c00174{bottom:1071.360000px;}
.y6e_c00174{bottom:1072.230000px;}
.y71_c00174{bottom:1073.085000px;}
.y6b_c00174{bottom:1082.595000px;}
.y6a_c00174{bottom:1084.320000px;}
.y6d_c00174{bottom:1085.190000px;}
.y69_c00174{bottom:1086.915000px;}
.y68_c00174{bottom:1088.640000px;}
.y66_c00174{bottom:1089.510000px;}
.y6c_c00174{bottom:1090.365000px;}
.y67_c00174{bottom:1092.960000px;}
.y1bf_c00174{bottom:1100.730000px;}
.y1be_c00174{bottom:1103.325000px;}
.y63_c00174{bottom:1107.645000px;}
.y64_c00174{bottom:1110.240000px;}
.y61_c00174{bottom:1111.965000px;}
.y5e_c00174{bottom:1114.560000px;}
.y5d_c00174{bottom:1116.285000px;}
.y62_c00174{bottom:1117.155000px;}
.y60_c00174{bottom:1120.605000px;}
.y5c_c00174{bottom:1121.475000px;}
.y5f_c00174{bottom:1122.330000px;}
.y65_c00174{bottom:1125.795000px;}
.y5b_c00174{bottom:1130.115000px;}
.y5a_c00174{bottom:1132.710000px;}
.y59_c00174{bottom:1134.435000px;}
.y58_c00174{bottom:1135.290000px;}
.y54_c00174{bottom:1138.755000px;}
.y56_c00174{bottom:1139.610000px;}
.y57_c00174{bottom:1144.800000px;}
.y55_c00174{bottom:1146.525000px;}
.y53_c00174{bottom:1148.250000px;}
.y51_c00174{bottom:1157.760000px;}
.y50_c00174{bottom:1158.630000px;}
.y4e_c00174{bottom:1161.210000px;}
.y4d_c00174{bottom:1162.080000px;}
.y52_c00174{bottom:1163.805000px;}
.y4f_c00174{bottom:1167.270000px;}
.y4c_c00174{bottom:1170.720000px;}
.y4b_c00174{bottom:1181.955000px;}
.y49_c00174{bottom:1183.680000px;}
.y4a_c00174{bottom:1186.275000px;}
.y48_c00174{bottom:1187.130000px;}
.y46_c00174{bottom:1188.000000px;}
.y47_c00174{bottom:1188.870000px;}
.y45_c00174{bottom:1189.725000px;}
.y44_c00174{bottom:1205.280000px;}
.y43_c00174{bottom:1209.600000px;}
.y42_c00174{bottom:1212.195000px;}
.y40_c00174{bottom:1213.050000px;}
.y3f_c00174{bottom:1214.790000px;}
.y41_c00174{bottom:1217.370000px;}
.y3e_c00174{bottom:1232.070000px;}
.y3d_c00174{bottom:1232.925000px;}
.y3c_c00174{bottom:1235.520000px;}
.y39_c00174{bottom:1236.390000px;}
.y3b_c00174{bottom:1237.245000px;}
.y3a_c00174{bottom:1242.435000px;}
.y38_c00174{bottom:1246.755000px;}
.y37_c00174{bottom:1248.480000px;}
.y34_c00174{bottom:1256.250000px;}
.y36_c00174{bottom:1257.120000px;}
.y32_c00174{bottom:1257.990000px;}
.y30_c00174{bottom:1260.570000px;}
.y31_c00174{bottom:1262.310000px;}
.y35_c00174{bottom:1263.165000px;}
.y2e_c00174{bottom:1264.035000px;}
.y33_c00174{bottom:1265.760000px;}
.y2d_c00174{bottom:1269.210000px;}
.y2f_c00174{bottom:1270.950000px;}
.y2b_c00174{bottom:1281.315000px;}
.y2c_c00174{bottom:1283.040000px;}
.y2a_c00174{bottom:1283.910000px;}
.y29_c00174{bottom:1285.635000px;}
.y28_c00174{bottom:1286.490000px;}
.y26_c00174{bottom:1287.360000px;}
.y25_c00174{bottom:1289.955000px;}
.y27_c00174{bottom:1291.680000px;}
.y22_c00174{bottom:1308.090000px;}
.y23_c00174{bottom:1308.960000px;}
.y21_c00174{bottom:1309.830000px;}
.y24_c00174{bottom:1312.410000px;}
.y1c1_c00174{bottom:1324.515000px;}
.y1c0_c00174{bottom:1327.110000px;}
.y1f_c00174{bottom:1331.430000px;}
.y1d_c00174{bottom:1333.155000px;}
.y1c_c00174{bottom:1334.010000px;}
.y20_c00174{bottom:1335.750000px;}
.y19_c00174{bottom:1337.475000px;}
.y1e_c00174{bottom:1340.070000px;}
.y1b_c00174{bottom:1343.520000px;}
.y17_c00174{bottom:1344.390000px;}
.y1a_c00174{bottom:1345.245000px;}
.y18_c00174{bottom:1346.970000px;}
.y12_c00174{bottom:1355.610000px;}
.y15_c00174{bottom:1358.205000px;}
.y14_c00174{bottom:1359.075000px;}
.yf_c00174{bottom:1359.930000px;}
.y10_c00174{bottom:1360.800000px;}
.ye_c00174{bottom:1361.670000px;}
.y16_c00174{bottom:1362.525000px;}
.ya_c00174{bottom:1363.395000px;}
.yb_c00174{bottom:1365.120000px;}
.y13_c00174{bottom:1365.990000px;}
.y9_c00174{bottom:1366.845000px;}
.y11_c00174{bottom:1367.715000px;}
.yc_c00174{bottom:1370.310000px;}
.yd_c00174{bottom:1371.165000px;}
.y1bd_c00174{bottom:1379.805000px;}
.y8_c00174{bottom:1385.850000px;}
.y7_c00174{bottom:1386.720000px;}
.y5_c00174{bottom:1391.040000px;}
.y6_c00174{bottom:1393.635000px;}
.y4_c00174{bottom:1400.550000px;}
.y1bc_c00174{bottom:1406.595000px;}
.y3_c00174{bottom:1414.365000px;}
.y2_c00174{bottom:1416.090000px;}
.y1b9_c00174{bottom:1419.555000px;}
.y1bb_c00174{bottom:1420.410000px;}
.y1b8_c00174{bottom:1421.280000px;}
.y1ba_c00174{bottom:1424.730000px;}
.y1_c00174{bottom:1427.325000px;}
.h3_c00174{height:3.110063px;}
.h6_c00174{height:5.399414px;}
.h1a_c00174{height:6.209326px;}
.h1f_c00174{height:9.340986px;}
.h25_c00174{height:12.418652px;}
.h8_c00174{height:15.550313px;}
.h5_c00174{height:18.681973px;}
.h7_c00174{height:21.759639px;}
.h23_c00174{height:24.891299px;}
.h26_c00174{height:27.968965px;}
.h21_c00174{height:31.100625px;}
.hd_c00174{height:34.232285px;}
.h2_c00174{height:37.309951px;}
.h20_c00174{height:40.441611px;}
.h1b_c00174{height:43.519277px;}
.h4_c00174{height:46.650937px;}
.h22_c00174{height:49.782598px;}
.h19_c00174{height:52.860264px;}
.h11_c00174{height:55.991924px;}
.h1c_c00174{height:59.069590px;}
.he_c00174{height:62.201250px;}
.h14_c00174{height:65.332910px;}
.h13_c00174{height:68.410576px;}
.hc_c00174{height:71.542236px;}
.h1d_c00174{height:74.619902px;}
.ha_c00174{height:77.751563px;}
.h18_c00174{height:80.883223px;}
.h16_c00174{height:83.960889px;}
.h9_c00174{height:87.092549px;}
.h12_c00174{height:90.170215px;}
.hf_c00174{height:93.301875px;}
.hb_c00174{height:96.433535px;}
.h15_c00174{height:99.511201px;}
.h1e_c00174{height:102.642861px;}
.h28_c00174{height:105.720527px;}
.h10_c00174{height:108.852188px;}
.h17_c00174{height:111.983848px;}
.h24_c00174{height:118.193174px;}
.h27_c00174{height:124.402500px;}
.h0_c00174{height:1523.235000px;}
.h1_c00174{height:1523.250000px;}
.w0_c00174{width:1107.645000px;}
.w1_c00174{width:1107.750000px;}
.x0_c00174{left:0.000000px;}
.x10e_c00174{left:132.195000px;}
.xd6_c00174{left:137.370000px;}
.xd7_c00174{left:152.925000px;}
.xdd_c00174{left:154.650000px;}
.x10f_c00174{left:161.565000px;}
.xe2_c00174{left:167.610000px;}
.xde_c00174{left:172.800000px;}
.xe3_c00174{left:176.250000px;}
.xe6_c00174{left:182.310000px;}
.xd0_c00174{left:188.355000px;}
.xaa_c00174{left:190.080000px;}
.xa4_c00174{left:193.530000px;}
.x10d_c00174{left:196.125000px;}
.xc9_c00174{left:198.720000px;}
.x2e_c00174{left:202.170000px;}
.xe4_c00174{left:205.635000px;}
.xca_c00174{left:208.230048px;}
.xbe_c00174{left:210.810000px;}
.xef_c00174{left:219.450000px;}
.xd8_c00174{left:222.915000px;}
.x2f_c00174{left:224.640000px;}
.x8d_c00174{left:226.365000px;}
.x45_c00174{left:228.960000px;}
.x94_c00174{left:231.555000px;}
.xc3_c00174{left:234.150000px;}
.xb9_c00174{left:236.730000px;}
.xfb_c00174{left:238.470000px;}
.x102_c00174{left:241.050000px;}
.x46_c00174{left:242.790000px;}
.x60_c00174{left:244.515000px;}
.xf0_c00174{left:247.110000px;}
.x9b_c00174{left:248.835000px;}
.x19_c00174{left:251.430000px;}
.x37_c00174{left:253.155000px;}
.x55_c00174{left:254.880000px;}
.x3c_c00174{left:256.605000px;}
.x61_c00174{left:258.330000px;}
.x30_c00174{left:260.070000px;}
.x23_c00174{left:261.795000px;}
.x9_c00174{left:264.390000px;}
.x5_c00174{left:272.160000px;}
.x105_c00174{left:274.755000px;}
.x109_c00174{left:276.480000px;}
.x38_c00174{left:279.075000px;}
.xe5_c00174{left:280.800000px;}
.x56_c00174{left:285.120000px;}
.x6c_c00174{left:288.570000px;}
.x103_c00174{left:290.310000px;}
.x8e_c00174{left:292.035000px;}
.x4d_c00174{left:294.630000px;}
.x7a_c00174{left:298.080000px;}
.xf4_c00174{left:301.530000px;}
.xa5_c00174{left:304.995000px;}
.xcb_c00174{left:308.445000px;}
.x106_c00174{left:311.040000px;}
.x73_c00174{left:312.765000px;}
.x7b_c00174{left:317.085000px;}
.xa_c00174{left:320.550000px;}
.xdf_c00174{left:324.870000px;}
.xf7_c00174{left:326.595000px;}
.x1a_c00174{left:329.190000px;}
.x95_c00174{left:330.915000px;}
.x8f_c00174{left:336.960000px;}
.xba_c00174{left:340.410000px;}
.x74_c00174{left:343.875000px;}
.x43_c00174{left:345.600000px;}
.xb_c00174{left:348.195000px;}
.x39_c00174{left:349.920000px;}
.x57_c00174{left:353.370000px;}
.xbf_c00174{left:358.560000px;}
.x3d_c00174{left:361.155000px;}
.x4e_c00174{left:366.330000px;}
.x1b_c00174{left:368.070000px;}
.xa6_c00174{left:375.840000px;}
.x3a_c00174{left:378.435000px;}
.xd9_c00174{left:380.160000px;}
.xb7_c00174{left:381.885000px;}
.x75_c00174{left:385.350000px;}
.x6d_c00174{left:387.075000px;}
.xe0_c00174{left:391.395000px;}
.xbb_c00174{left:394.845000px;}
.x62_c00174{left:399.165000px;}
.x31_c00174{left:406.950000px;}
.xc5_c00174{left:409.530000px;}
.xae_c00174{left:411.270000px;}
.x67_c00174{left:412.995000px;}
.x9c_c00174{left:414.720000px;}
.xf8_c00174{left:416.445000px;}
.xc4_c00174{left:418.170000px;}
.x7c_c00174{left:420.765000px;}
.x6_c00174{left:423.360000px;}
.x80_c00174{left:425.955000px;}
.xa7_c00174{left:429.405000px;}
.x3e_c00174{left:431.130000px;}
.x9d_c00174{left:433.725000px;}
.x76_c00174{left:438.045000px;}
.x96_c00174{left:439.770000px;}
.xc_c00174{left:442.365000px;}
.x2_c00174{left:444.090000px;}
.xa8_c00174{left:446.685000px;}
.x4f_c00174{left:449.280000px;}
.x4_c00174{left:451.875000px;}
.x68_c00174{left:453.600000px;}
.x32_c00174{left:457.050000px;}
.x3_c00174{left:459.645000px;}
.x1_c00174{left:467.430000px;}
.x9e_c00174{left:469.155000px;}
.x1c_c00174{left:470.880000px;}
.xda_c00174{left:472.605000px;}
.xc6_c00174{left:475.200000px;}
.x6e_c00174{left:477.795000px;}
.xc0_c00174{left:480.390000px;}
.xea_c00174{left:482.115000px;}
.x58_c00174{left:484.710000px;}
.x69_c00174{left:486.435000px;}
.xaf_c00174{left:489.885000px;}
.x81_c00174{left:491.610000px;}
.x9f_c00174{left:494.205000px;}
.x1d_c00174{left:496.800000px;}
.xf1_c00174{left:498.525000px;}
.x50_c00174{left:500.250000px;}
.xbc_c00174{left:502.845000px;}
.xd_c00174{left:505.440000px;}
.x3f_c00174{left:507.165000px;}
.x97_c00174{left:508.890000px;}
.xd1_c00174{left:510.630000px;}
.xe_c00174{left:512.355000px;}
.xc1_c00174{left:514.080000px;}
.xe1_c00174{left:518.400000px;}
.x6a_c00174{left:521.850000px;}
.x28_c00174{left:527.910000px;}
.xf_c00174{left:530.490000px;}
.xa0_c00174{left:533.085000px;}
.x90_c00174{left:535.680000px;}
.x47_c00174{left:542.595000px;}
.x10a_c00174{left:546.045000px;}
.xd2_c00174{left:548.640000px;}
.xbd_c00174{left:550.365000px;}
.x1e_c00174{left:552.090000px;}
.x59_c00174{left:553.830000px;}
.xb8_c00174{left:557.280000px;}
.x3b_c00174{left:559.005000px;}
.x10_c00174{left:560.730000px;}
.x10c_c00174{left:565.050000px;}
.x87_c00174{left:567.645000px;}
.xeb_c00174{left:569.370000px;}
.xab_c00174{left:572.835000px;}
.x29_c00174{left:575.430000px;}
.x1f_c00174{left:578.880000px;}
.x82_c00174{left:582.330000px;}
.xf2_c00174{left:584.925000px;}
.xec_c00174{left:587.520000px;}
.xf5_c00174{left:589.245000px;}
.x7d_c00174{left:590.970000px;}
.x51_c00174{left:594.435000px;}
.xe8_c00174{left:596.160000px;}
.x7_c00174{left:597.885000px;}
.xff_c00174{left:600.480000px;}
.x5a_c00174{left:603.075000px;}
.x83_c00174{left:605.670000px;}
.x48_c00174{left:607.395000px;}
.x63_c00174{left:609.120000px;}
.xa1_c00174{left:612.570000px;}
.xcc_c00174{left:616.035000px;}
.xd3_c00174{left:620.355000px;}
.x88_c00174{left:624.675000px;}
.xb0_c00174{left:627.270000px;}
.x24_c00174{left:628.995000px;}
.x11_c00174{left:630.720000px;}
.x98_c00174{left:633.315000px;}
.x40_c00174{left:637.635000px;}
.x6f_c00174{left:641.955000px;}
.x77_c00174{left:644.550000px;}
.x100_c00174{left:646.275000px;}
.x5b_c00174{left:648.000000px;}
.x89_c00174{left:650.595000px;}
.x2a_c00174{left:653.190000px;}
.x78_c00174{left:658.365000px;}
.xfc_c00174{left:660.090000px;}
.xb1_c00174{left:662.685000px;}
.x99_c00174{left:665.280000px;}
.x107_c00174{left:667.875000px;}
.x49_c00174{left:669.600000px;}
.x41_c00174{left:671.325000px;}
.x91_c00174{left:673.920000px;}
.x33_c00174{left:675.645000px;}
.x2b_c00174{left:678.240000px;}
.x8a_c00174{left:684.285000px;}
.x64_c00174{left:686.880000px;}
.x42_c00174{left:689.475000px;}
.x52_c00174{left:691.200000px;}
.x6b_c00174{left:692.925000px;}
.x12_c00174{left:695.520000px;}
.xdb_c00174{left:698.115000px;}
.x104_c00174{left:701.565000px;}
.xa2_c00174{left:704.160000px;}
.x7e_c00174{left:709.350000px;}
.x4a_c00174{left:711.930000px;}
.x13_c00174{left:713.670000px;}
.x108_c00174{left:716.250000px;}
.x20_c00174{left:718.845000px;}
.xb4_c00174{left:720.570000px;}
.x8b_c00174{left:724.035000px;}
.xb2_c00174{left:726.630000px;}
.xed_c00174{left:730.950000px;}
.xa3_c00174{left:735.270000px;}
.xd4_c00174{left:736.995000px;}
.x34_c00174{left:738.720000px;}
.xfd_c00174{left:740.445000px;}
.x5c_c00174{left:742.170000px;}
.x53_c00174{left:743.910000px;}
.x70_c00174{left:747.360000px;}
.x8_c00174{left:754.275000px;}
.xa9_c00174{left:756.000000px;}
.x84_c00174{left:758.595000px;}
.xd5_c00174{left:760.320000px;}
.xac_c00174{left:762.915000px;}
.x5d_c00174{left:764.640000px;}
.xf3_c00174{left:767.235000px;}
.x14_c00174{left:770.685000px;}
.x92_c00174{left:774.150000px;}
.x65_c00174{left:778.470000px;}
.xcd_c00174{left:786.240000px;}
.x2c_c00174{left:788.835000px;}
.x25_c00174{left:793.155000px;}
.x15_c00174{left:795.750000px;}
.x8c_c00174{left:798.330000px;}
.xf9_c00174{left:800.070000px;}
.x85_c00174{left:803.520000px;}
.x4b_c00174{left:806.970000px;}
.x16_c00174{left:809.565000px;}
.xc7_c00174{left:812.160000px;}
.xb5_c00174{left:813.885000px;}
.x54_c00174{left:816.480000px;}
.x26_c00174{left:819.075000px;}
.xb6_c00174{left:822.525000px;}
.x9a_c00174{left:825.120000px;}
.xad_c00174{left:827.715000px;}
.x17_c00174{left:830.310000px;}
.xdc_c00174{left:833.760000px;}
.xf6_c00174{left:835.485000px;}
.xc2_c00174{left:838.080000px;}
.xfa_c00174{left:839.805000px;}
.x7f_c00174{left:841.530000px;}
.x71_c00174{left:844.995000px;}
.x21_c00174{left:846.720000px;}
.x93_c00174{left:851.040000px;}
.xb3_c00174{left:854.490000px;}
.xce_c00174{left:856.230000px;}
.x44_c00174{left:857.955000px;}
.x86_c00174{left:860.550000px;}
.x66_c00174{left:865.725000px;}
.x101_c00174{left:870.045000px;}
.x4c_c00174{left:871.770000px;}
.x18_c00174{left:876.960000px;}
.x22_c00174{left:878.685000px;}
.x27_c00174{left:880.410000px;}
.x10b_c00174{left:883.875000px;}
.xe7_c00174{left:885.600000px;}
.xee_c00174{left:888.195000px;}
.xcf_c00174{left:889.920000px;}
.x79_c00174{left:893.370000px;}
.xc8_c00174{left:895.965000px;}
.x72_c00174{left:898.560000px;}
.xe9_c00174{left:900.285000px;}
.x5e_c00174{left:902.880000px;}
.x35_c00174{left:906.330000px;}
.x2d_c00174{left:908.925000px;}
.xfe_c00174{left:910.650000px;}
.x5f_c00174{left:913.245000px;}
.x36_c00174{left:919.290000px;}
.x110_c00174{left:1048.035000px;}
.x111_c00174{left:1056.675000px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls0_c00174{letter-spacing:0.000000pt;}
.ws0_c00174{word-spacing:-18.817440pt;}
.ws1_c00174{word-spacing:0.000000pt;}
.fs1_c00174{font-size:3.072000pt;}
.fs4_c00174{font-size:5.333333pt;}
.fs18_c00174{font-size:6.133333pt;}
.fs1d_c00174{font-size:9.226667pt;}
.fs23_c00174{font-size:12.266667pt;}
.fs6_c00174{font-size:15.360000pt;}
.fs3_c00174{font-size:18.453333pt;}
.fs5_c00174{font-size:21.493333pt;}
.fs21_c00174{font-size:24.586667pt;}
.fs24_c00174{font-size:27.626667pt;}
.fs1f_c00174{font-size:30.720000pt;}
.fsb_c00174{font-size:33.813333pt;}
.fs0_c00174{font-size:36.853333pt;}
.fs1e_c00174{font-size:39.946667pt;}
.fs19_c00174{font-size:42.986667pt;}
.fs2_c00174{font-size:46.080000pt;}
.fs20_c00174{font-size:49.173333pt;}
.fs17_c00174{font-size:52.213333pt;}
.fsf_c00174{font-size:55.306667pt;}
.fs1a_c00174{font-size:58.346667pt;}
.fsc_c00174{font-size:61.440000pt;}
.fs12_c00174{font-size:64.533333pt;}
.fs11_c00174{font-size:67.573333pt;}
.fsa_c00174{font-size:70.666667pt;}
.fs1b_c00174{font-size:73.706667pt;}
.fs8_c00174{font-size:76.800000pt;}
.fs16_c00174{font-size:79.893333pt;}
.fs14_c00174{font-size:82.933333pt;}
.fs7_c00174{font-size:86.026667pt;}
.fs10_c00174{font-size:89.066667pt;}
.fsd_c00174{font-size:92.160000pt;}
.fs9_c00174{font-size:95.253333pt;}
.fs13_c00174{font-size:98.293333pt;}
.fs1c_c00174{font-size:101.386667pt;}
.fs26_c00174{font-size:104.426667pt;}
.fse_c00174{font-size:107.520000pt;}
.fs15_c00174{font-size:110.613333pt;}
.fs22_c00174{font-size:116.746667pt;}
.fs25_c00174{font-size:122.880000pt;}
.y0_c00174{bottom:0.000000pt;}
.y1b6_c00174{bottom:162.813333pt;}
.y1b7_c00174{bottom:163.586667pt;}
.y1b5_c00174{bottom:183.546667pt;}
.y1b4_c00174{bottom:184.320000pt;}
.y1b1_c00174{bottom:188.160000pt;}
.y1af_c00174{bottom:190.466667pt;}
.y1b2_c00174{bottom:193.533333pt;}
.y1b0_c00174{bottom:194.306667pt;}
.y1ae_c00174{bottom:195.066667pt;}
.y1b3_c00174{bottom:197.373333pt;}
.y1ad_c00174{bottom:208.133333pt;}
.y1aa_c00174{bottom:210.426667pt;}
.y1a8_c00174{bottom:212.733333pt;}
.y1ac_c00174{bottom:213.506667pt;}
.y1a7_c00174{bottom:214.266667pt;}
.y1a9_c00174{bottom:215.040000pt;}
.y1ab_c00174{bottom:216.573333pt;}
.y1a6_c00174{bottom:217.346667pt;}
.y1a5_c00174{bottom:221.946667pt;}
.y1a4_c00174{bottom:228.866667pt;}
.y1a3_c00174{bottom:231.933333pt;}
.y1a2_c00174{bottom:232.706667pt;}
.y1a0_c00174{bottom:235.013333pt;}
.y19f_c00174{bottom:237.306667pt;}
.y1a1_c00174{bottom:238.853333pt;}
.y19e_c00174{bottom:244.986667pt;}
.y19d_c00174{bottom:245.760000pt;}
.y19c_c00174{bottom:246.533333pt;}
.y19a_c00174{bottom:251.906667pt;}
.y198_c00174{bottom:255.746667pt;}
.y199_c00174{bottom:256.506667pt;}
.y197_c00174{bottom:258.813333pt;}
.y19b_c00174{bottom:261.120000pt;}
.y195_c00174{bottom:264.960000pt;}
.y196_c00174{bottom:266.493333pt;}
.y193_c00174{bottom:274.173333pt;}
.y191_c00174{bottom:274.946667pt;}
.y192_c00174{bottom:275.706667pt;}
.y190_c00174{bottom:278.013333pt;}
.y18e_c00174{bottom:278.786667pt;}
.y18f_c00174{bottom:279.546667pt;}
.y18d_c00174{bottom:283.386667pt;}
.y18c_c00174{bottom:284.933333pt;}
.y194_c00174{bottom:292.613333pt;}
.y18b_c00174{bottom:296.453333pt;}
.y18a_c00174{bottom:299.520000pt;}
.y189_c00174{bottom:301.826667pt;}
.y187_c00174{bottom:302.586667pt;}
.y186_c00174{bottom:304.133333pt;}
.y188_c00174{bottom:304.893333pt;}
.y184_c00174{bottom:305.666667pt;}
.y183_c00174{bottom:307.973333pt;}
.y185_c00174{bottom:308.733333pt;}
.y17f_c00174{bottom:319.493333pt;}
.y17e_c00174{bottom:321.786667pt;}
.y181_c00174{bottom:322.560000pt;}
.y17d_c00174{bottom:323.333333pt;}
.y17c_c00174{bottom:324.866667pt;}
.y180_c00174{bottom:326.400000pt;}
.y17b_c00174{bottom:327.173333pt;}
.y179_c00174{bottom:327.933333pt;}
.y182_c00174{bottom:331.013333pt;}
.y178_c00174{bottom:332.546667pt;}
.y17a_c00174{bottom:333.306667pt;}
.y176_c00174{bottom:341.760000pt;}
.y174_c00174{bottom:343.293333pt;}
.y177_c00174{bottom:344.066667pt;}
.y173_c00174{bottom:345.600000pt;}
.y171_c00174{bottom:347.133333pt;}
.y170_c00174{bottom:347.906667pt;}
.y16d_c00174{bottom:348.666667pt;}
.y175_c00174{bottom:349.440000pt;}
.y16f_c00174{bottom:350.973333pt;}
.y16c_c00174{bottom:352.506667pt;}
.y172_c00174{bottom:353.280000pt;}
.y16e_c00174{bottom:354.813333pt;}
.y16b_c00174{bottom:363.266667pt;}
.y16a_c00174{bottom:364.026667pt;}
.y169_c00174{bottom:365.573333pt;}
.y168_c00174{bottom:366.333333pt;}
.y166_c00174{bottom:368.640000pt;}
.y165_c00174{bottom:370.946667pt;}
.y164_c00174{bottom:371.706667pt;}
.y161_c00174{bottom:372.480000pt;}
.y167_c00174{bottom:375.546667pt;}
.y163_c00174{bottom:376.320000pt;}
.y162_c00174{bottom:377.853333pt;}
.y15f_c00174{bottom:379.386667pt;}
.y160_c00174{bottom:382.466667pt;}
.y15d_c00174{bottom:386.306667pt;}
.y15c_c00174{bottom:387.066667pt;}
.y15b_c00174{bottom:388.613333pt;}
.y158_c00174{bottom:390.146667pt;}
.y15a_c00174{bottom:390.906667pt;}
.y159_c00174{bottom:396.293333pt;}
.y15e_c00174{bottom:399.360000pt;}
.y157_c00174{bottom:407.813333pt;}
.y155_c00174{bottom:411.653333pt;}
.y153_c00174{bottom:413.946667pt;}
.y152_c00174{bottom:414.720000pt;}
.y150_c00174{bottom:415.493333pt;}
.y156_c00174{bottom:416.253333pt;}
.y151_c00174{bottom:417.786667pt;}
.y154_c00174{bottom:420.093333pt;}
.y14f_c00174{bottom:430.080000pt;}
.y14e_c00174{bottom:432.386667pt;}
.y14d_c00174{bottom:433.146667pt;}
.y14c_c00174{bottom:433.920000pt;}
.y14b_c00174{bottom:435.453333pt;}
.y14a_c00174{bottom:436.986667pt;}
.y149_c00174{bottom:437.760000pt;}
.y148_c00174{bottom:438.533333pt;}
.y146_c00174{bottom:440.826667pt;}
.y147_c00174{bottom:446.213333pt;}
.y144_c00174{bottom:450.053333pt;}
.y145_c00174{bottom:450.813333pt;}
.y143_c00174{bottom:453.120000pt;}
.y142_c00174{bottom:456.960000pt;}
.y141_c00174{bottom:460.026667pt;}
.y13f_c00174{bottom:460.800000pt;}
.y13e_c00174{bottom:464.640000pt;}
.y140_c00174{bottom:467.706667pt;}
.y13d_c00174{bottom:470.786667pt;}
.y13c_c00174{bottom:474.626667pt;}
.y13b_c00174{bottom:476.160000pt;}
.y139_c00174{bottom:479.226667pt;}
.y138_c00174{bottom:481.533333pt;}
.y137_c00174{bottom:483.840000pt;}
.y13a_c00174{bottom:485.373333pt;}
.y136_c00174{bottom:487.680000pt;}
.y135_c00174{bottom:488.453333pt;}
.y134_c00174{bottom:489.213333pt;}
.y132_c00174{bottom:498.426667pt;}
.y130_c00174{bottom:500.733333pt;}
.y12e_c00174{bottom:503.040000pt;}
.y12c_c00174{bottom:503.813333pt;}
.y131_c00174{bottom:504.573333pt;}
.y12a_c00174{bottom:505.346667pt;}
.y12b_c00174{bottom:506.880000pt;}
.y12f_c00174{bottom:508.413333pt;}
.y133_c00174{bottom:509.186667pt;}
.y12d_c00174{bottom:509.946667pt;}
.y128_c00174{bottom:510.720000pt;}
.y129_c00174{bottom:516.866667pt;}
.y125_c00174{bottom:520.706667pt;}
.y126_c00174{bottom:521.466667pt;}
.y123_c00174{bottom:524.546667pt;}
.y124_c00174{bottom:525.306667pt;}
.y120_c00174{bottom:526.080000pt;}
.y11e_c00174{bottom:526.853333pt;}
.y11f_c00174{bottom:528.386667pt;}
.y121_c00174{bottom:529.146667pt;}
.y122_c00174{bottom:531.453333pt;}
.y11c_c00174{bottom:532.226667pt;}
.y11d_c00174{bottom:535.293333pt;}
.y11b_c00174{bottom:536.826667pt;}
.y127_c00174{bottom:539.133333pt;}
.y119_c00174{bottom:542.213333pt;}
.y117_c00174{bottom:544.506667pt;}
.y116_c00174{bottom:547.586667pt;}
.y114_c00174{bottom:548.346667pt;}
.y118_c00174{bottom:550.653333pt;}
.y115_c00174{bottom:552.186667pt;}
.y113_c00174{bottom:552.960000pt;}
.y111_c00174{bottom:555.266667pt;}
.y112_c00174{bottom:556.800000pt;}
.y11a_c00174{bottom:559.106667pt;}
.y10f_c00174{bottom:564.480000pt;}
.y10e_c00174{bottom:566.013333pt;}
.y10c_c00174{bottom:566.786667pt;}
.y10b_c00174{bottom:569.853333pt;}
.y10a_c00174{bottom:570.626667pt;}
.y110_c00174{bottom:571.386667pt;}
.y108_c00174{bottom:572.160000pt;}
.y109_c00174{bottom:572.933333pt;}
.y10d_c00174{bottom:573.693333pt;}
.y107_c00174{bottom:588.293333pt;}
.y105_c00174{bottom:591.360000pt;}
.y104_c00174{bottom:592.133333pt;}
.y103_c00174{bottom:592.893333pt;}
.y102_c00174{bottom:593.666667pt;}
.y106_c00174{bottom:594.426667pt;}
.y100_c00174{bottom:596.733333pt;}
.y101_c00174{bottom:599.813333pt;}
.yff_c00174{bottom:603.653333pt;}
.yfd_c00174{bottom:612.093333pt;}
.yfc_c00174{bottom:612.866667pt;}
.yfa_c00174{bottom:613.626667pt;}
.yf9_c00174{bottom:614.400000pt;}
.yf8_c00174{bottom:615.173333pt;}
.yfe_c00174{bottom:615.933333pt;}
.yf6_c00174{bottom:618.240000pt;}
.yf7_c00174{bottom:619.013333pt;}
.yfb_c00174{bottom:619.773333pt;}
.yf5_c00174{bottom:632.826667pt;}
.yf1_c00174{bottom:635.133333pt;}
.yf3_c00174{bottom:636.666667pt;}
.yf4_c00174{bottom:637.440000pt;}
.yf2_c00174{bottom:638.213333pt;}
.yee_c00174{bottom:638.973333pt;}
.yf0_c00174{bottom:639.746667pt;}
.yef_c00174{bottom:643.586667pt;}
.yed_c00174{bottom:645.120000pt;}
.yec_c00174{bottom:652.800000pt;}
.yeb_c00174{bottom:653.573333pt;}
.yea_c00174{bottom:655.106667pt;}
.ye9_c00174{bottom:656.640000pt;}
.ye8_c00174{bottom:657.413333pt;}
.ye7_c00174{bottom:658.946667pt;}
.ye5_c00174{bottom:659.706667pt;}
.ye6_c00174{bottom:662.786667pt;}
.ye4_c00174{bottom:674.306667pt;}
.ye3_c00174{bottom:675.066667pt;}
.ye2_c00174{bottom:677.373333pt;}
.ydf_c00174{bottom:678.146667pt;}
.ye1_c00174{bottom:678.906667pt;}
.ydd_c00174{bottom:680.453333pt;}
.ydb_c00174{bottom:681.986667pt;}
.ydc_c00174{bottom:683.520000pt;}
.ye0_c00174{bottom:685.826667pt;}
.yde_c00174{bottom:686.586667pt;}
.yd8_c00174{bottom:698.106667pt;}
.yd7_c00174{bottom:700.413333pt;}
.yd4_c00174{bottom:701.186667pt;}
.yda_c00174{bottom:703.493333pt;}
.yd9_c00174{bottom:704.253333pt;}
.yd6_c00174{bottom:705.786667pt;}
.yd5_c00174{bottom:708.093333pt;}
.yd3_c00174{bottom:711.173333pt;}
.yd1_c00174{bottom:721.146667pt;}
.yd0_c00174{bottom:721.920000pt;}
.ycf_c00174{bottom:724.226667pt;}
.ycc_c00174{bottom:724.986667pt;}
.ycd_c00174{bottom:725.760000pt;}
.yd2_c00174{bottom:726.533333pt;}
.ycb_c00174{bottom:728.066667pt;}
.yce_c00174{bottom:731.133333pt;}
.yca_c00174{bottom:741.120000pt;}
.yc8_c00174{bottom:743.426667pt;}
.yc7_c00174{bottom:744.186667pt;}
.yc4_c00174{bottom:747.266667pt;}
.yc3_c00174{bottom:748.026667pt;}
.yc2_c00174{bottom:749.573333pt;}
.yc9_c00174{bottom:750.333333pt;}
.yc6_c00174{bottom:751.106667pt;}
.yc5_c00174{bottom:752.640000pt;}
.yc0_c00174{bottom:761.093333pt;}
.yc1_c00174{bottom:762.626667pt;}
.ybe_c00174{bottom:764.933333pt;}
.ybb_c00174{bottom:765.693333pt;}
.yba_c00174{bottom:766.466667pt;}
.yb9_c00174{bottom:768.000000pt;}
.yb7_c00174{bottom:769.533333pt;}
.ybc_c00174{bottom:770.306667pt;}
.ybf_c00174{bottom:771.066667pt;}
.ybd_c00174{bottom:771.840000pt;}
.yb4_c00174{bottom:774.906667pt;}
.yb8_c00174{bottom:775.680000pt;}
.yb6_c00174{bottom:776.453333pt;}
.yb5_c00174{bottom:784.133333pt;}
.yb3_c00174{bottom:784.893333pt;}
.yb2_c00174{bottom:785.666667pt;}
.yb0_c00174{bottom:786.426667pt;}
.yaf_c00174{bottom:787.200000pt;}
.yb1_c00174{bottom:788.733333pt;}
.yad_c00174{bottom:789.506667pt;}
.yac_c00174{bottom:791.813333pt;}
.yae_c00174{bottom:795.653333pt;}
.yaa_c00174{bottom:797.946667pt;}
.yab_c00174{bottom:800.253333pt;}
.ya9_c00174{bottom:807.173333pt;}
.ya8_c00174{bottom:808.706667pt;}
.ya7_c00174{bottom:810.240000pt;}
.ya5_c00174{bottom:811.773333pt;}
.ya4_c00174{bottom:812.546667pt;}
.ya6_c00174{bottom:817.146667pt;}
.ya3_c00174{bottom:819.453333pt;}
.ya2_c00174{bottom:821.760000pt;}
.ya1_c00174{bottom:828.666667pt;}
.y9f_c00174{bottom:830.213333pt;}
.y9e_c00174{bottom:830.973333pt;}
.ya0_c00174{bottom:837.120000pt;}
.y9d_c00174{bottom:852.480000pt;}
.y9b_c00174{bottom:853.253333pt;}
.y97_c00174{bottom:857.093333pt;}
.y9c_c00174{bottom:857.853333pt;}
.y98_c00174{bottom:861.693333pt;}
.y9a_c00174{bottom:862.466667pt;}
.y99_c00174{bottom:863.226667pt;}
.y95_c00174{bottom:875.520000pt;}
.y94_c00174{bottom:877.053333pt;}
.y91_c00174{bottom:877.826667pt;}
.y8f_c00174{bottom:879.360000pt;}
.y90_c00174{bottom:880.133333pt;}
.y8d_c00174{bottom:880.893333pt;}
.y96_c00174{bottom:881.666667pt;}
.y93_c00174{bottom:882.426667pt;}
.y92_c00174{bottom:884.733333pt;}
.y8e_c00174{bottom:886.266667pt;}
.y8c_c00174{bottom:891.653333pt;}
.y8a_c00174{bottom:896.253333pt;}
.y89_c00174{bottom:897.026667pt;}
.y87_c00174{bottom:900.093333pt;}
.y85_c00174{bottom:902.400000pt;}
.y88_c00174{bottom:906.240000pt;}
.y86_c00174{bottom:908.546667pt;}
.y84_c00174{bottom:909.306667pt;}
.y8b_c00174{bottom:914.693333pt;}
.y81_c00174{bottom:916.986667pt;}
.y82_c00174{bottom:918.533333pt;}
.y80_c00174{bottom:920.066667pt;}
.y7f_c00174{bottom:921.600000pt;}
.y7c_c00174{bottom:923.133333pt;}
.y7d_c00174{bottom:924.666667pt;}
.y7e_c00174{bottom:927.746667pt;}
.y7b_c00174{bottom:928.506667pt;}
.y83_c00174{bottom:930.053333pt;}
.y7a_c00174{bottom:940.026667pt;}
.y78_c00174{bottom:940.800000pt;}
.y79_c00174{bottom:941.573333pt;}
.y77_c00174{bottom:942.333333pt;}
.y75_c00174{bottom:944.640000pt;}
.y73_c00174{bottom:945.413333pt;}
.y72_c00174{bottom:946.946667pt;}
.y6f_c00174{bottom:947.706667pt;}
.y74_c00174{bottom:948.480000pt;}
.y76_c00174{bottom:949.253333pt;}
.y70_c00174{bottom:952.320000pt;}
.y6e_c00174{bottom:953.093333pt;}
.y71_c00174{bottom:953.853333pt;}
.y6b_c00174{bottom:962.306667pt;}
.y6a_c00174{bottom:963.840000pt;}
.y6d_c00174{bottom:964.613333pt;}
.y69_c00174{bottom:966.146667pt;}
.y68_c00174{bottom:967.680000pt;}
.y66_c00174{bottom:968.453333pt;}
.y6c_c00174{bottom:969.213333pt;}
.y67_c00174{bottom:971.520000pt;}
.y1bf_c00174{bottom:978.426667pt;}
.y1be_c00174{bottom:980.733333pt;}
.y63_c00174{bottom:984.573333pt;}
.y64_c00174{bottom:986.880000pt;}
.y61_c00174{bottom:988.413333pt;}
.y5e_c00174{bottom:990.720000pt;}
.y5d_c00174{bottom:992.253333pt;}
.y62_c00174{bottom:993.026667pt;}
.y60_c00174{bottom:996.093333pt;}
.y5c_c00174{bottom:996.866667pt;}
.y5f_c00174{bottom:997.626667pt;}
.y65_c00174{bottom:1000.706667pt;}
.y5b_c00174{bottom:1004.546667pt;}
.y5a_c00174{bottom:1006.853333pt;}
.y59_c00174{bottom:1008.386667pt;}
.y58_c00174{bottom:1009.146667pt;}
.y54_c00174{bottom:1012.226667pt;}
.y56_c00174{bottom:1012.986667pt;}
.y57_c00174{bottom:1017.600000pt;}
.y55_c00174{bottom:1019.133333pt;}
.y53_c00174{bottom:1020.666667pt;}
.y51_c00174{bottom:1029.120000pt;}
.y50_c00174{bottom:1029.893333pt;}
.y4e_c00174{bottom:1032.186667pt;}
.y4d_c00174{bottom:1032.960000pt;}
.y52_c00174{bottom:1034.493333pt;}
.y4f_c00174{bottom:1037.573333pt;}
.y4c_c00174{bottom:1040.640000pt;}
.y4b_c00174{bottom:1050.626667pt;}
.y49_c00174{bottom:1052.160000pt;}
.y4a_c00174{bottom:1054.466667pt;}
.y48_c00174{bottom:1055.226667pt;}
.y46_c00174{bottom:1056.000000pt;}
.y47_c00174{bottom:1056.773333pt;}
.y45_c00174{bottom:1057.533333pt;}
.y44_c00174{bottom:1071.360000pt;}
.y43_c00174{bottom:1075.200000pt;}
.y42_c00174{bottom:1077.506667pt;}
.y40_c00174{bottom:1078.266667pt;}
.y3f_c00174{bottom:1079.813333pt;}
.y41_c00174{bottom:1082.106667pt;}
.y3e_c00174{bottom:1095.173333pt;}
.y3d_c00174{bottom:1095.933333pt;}
.y3c_c00174{bottom:1098.240000pt;}
.y39_c00174{bottom:1099.013333pt;}
.y3b_c00174{bottom:1099.773333pt;}
.y3a_c00174{bottom:1104.386667pt;}
.y38_c00174{bottom:1108.226667pt;}
.y37_c00174{bottom:1109.760000pt;}
.y34_c00174{bottom:1116.666667pt;}
.y36_c00174{bottom:1117.440000pt;}
.y32_c00174{bottom:1118.213333pt;}
.y30_c00174{bottom:1120.506667pt;}
.y31_c00174{bottom:1122.053333pt;}
.y35_c00174{bottom:1122.813333pt;}
.y2e_c00174{bottom:1123.586667pt;}
.y33_c00174{bottom:1125.120000pt;}
.y2d_c00174{bottom:1128.186667pt;}
.y2f_c00174{bottom:1129.733333pt;}
.y2b_c00174{bottom:1138.946667pt;}
.y2c_c00174{bottom:1140.480000pt;}
.y2a_c00174{bottom:1141.253333pt;}
.y29_c00174{bottom:1142.786667pt;}
.y28_c00174{bottom:1143.546667pt;}
.y26_c00174{bottom:1144.320000pt;}
.y25_c00174{bottom:1146.626667pt;}
.y27_c00174{bottom:1148.160000pt;}
.y22_c00174{bottom:1162.746667pt;}
.y23_c00174{bottom:1163.520000pt;}
.y21_c00174{bottom:1164.293333pt;}
.y24_c00174{bottom:1166.586667pt;}
.y1c1_c00174{bottom:1177.346667pt;}
.y1c0_c00174{bottom:1179.653333pt;}
.y1f_c00174{bottom:1183.493333pt;}
.y1d_c00174{bottom:1185.026667pt;}
.y1c_c00174{bottom:1185.786667pt;}
.y20_c00174{bottom:1187.333333pt;}
.y19_c00174{bottom:1188.866667pt;}
.y1e_c00174{bottom:1191.173333pt;}
.y1b_c00174{bottom:1194.240000pt;}
.y17_c00174{bottom:1195.013333pt;}
.y1a_c00174{bottom:1195.773333pt;}
.y18_c00174{bottom:1197.306667pt;}
.y12_c00174{bottom:1204.986667pt;}
.y15_c00174{bottom:1207.293333pt;}
.y14_c00174{bottom:1208.066667pt;}
.yf_c00174{bottom:1208.826667pt;}
.y10_c00174{bottom:1209.600000pt;}
.ye_c00174{bottom:1210.373333pt;}
.y16_c00174{bottom:1211.133333pt;}
.ya_c00174{bottom:1211.906667pt;}
.yb_c00174{bottom:1213.440000pt;}
.y13_c00174{bottom:1214.213333pt;}
.y9_c00174{bottom:1214.973333pt;}
.y11_c00174{bottom:1215.746667pt;}
.yc_c00174{bottom:1218.053333pt;}
.yd_c00174{bottom:1218.813333pt;}
.y1bd_c00174{bottom:1226.493333pt;}
.y8_c00174{bottom:1231.866667pt;}
.y7_c00174{bottom:1232.640000pt;}
.y5_c00174{bottom:1236.480000pt;}
.y6_c00174{bottom:1238.786667pt;}
.y4_c00174{bottom:1244.933333pt;}
.y1bc_c00174{bottom:1250.306667pt;}
.y3_c00174{bottom:1257.213333pt;}
.y2_c00174{bottom:1258.746667pt;}
.y1b9_c00174{bottom:1261.826667pt;}
.y1bb_c00174{bottom:1262.586667pt;}
.y1b8_c00174{bottom:1263.360000pt;}
.y1ba_c00174{bottom:1266.426667pt;}
.y1_c00174{bottom:1268.733333pt;}
.h3_c00174{height:2.764500pt;}
.h6_c00174{height:4.799479pt;}
.h1a_c00174{height:5.519401pt;}
.h1f_c00174{height:8.303099pt;}
.h25_c00174{height:11.038802pt;}
.h8_c00174{height:13.822500pt;}
.h5_c00174{height:16.606198pt;}
.h7_c00174{height:19.341901pt;}
.h23_c00174{height:22.125599pt;}
.h26_c00174{height:24.861302pt;}
.h21_c00174{height:27.645000pt;}
.hd_c00174{height:30.428698pt;}
.h2_c00174{height:33.164401pt;}
.h20_c00174{height:35.948099pt;}
.h1b_c00174{height:38.683802pt;}
.h4_c00174{height:41.467500pt;}
.h22_c00174{height:44.251198pt;}
.h19_c00174{height:46.986901pt;}
.h11_c00174{height:49.770599pt;}
.h1c_c00174{height:52.506302pt;}
.he_c00174{height:55.290000pt;}
.h14_c00174{height:58.073698pt;}
.h13_c00174{height:60.809401pt;}
.hc_c00174{height:63.593099pt;}
.h1d_c00174{height:66.328802pt;}
.ha_c00174{height:69.112500pt;}
.h18_c00174{height:71.896198pt;}
.h16_c00174{height:74.631901pt;}
.h9_c00174{height:77.415599pt;}
.h12_c00174{height:80.151302pt;}
.hf_c00174{height:82.935000pt;}
.hb_c00174{height:85.718698pt;}
.h15_c00174{height:88.454401pt;}
.h1e_c00174{height:91.238099pt;}
.h28_c00174{height:93.973802pt;}
.h10_c00174{height:96.757500pt;}
.h17_c00174{height:99.541198pt;}
.h24_c00174{height:105.060599pt;}
.h27_c00174{height:110.580000pt;}
.h0_c00174{height:1353.986667pt;}
.h1_c00174{height:1354.000000pt;}
.w0_c00174{width:984.573333pt;}
.w1_c00174{width:984.666667pt;}
.x0_c00174{left:0.000000pt;}
.x10e_c00174{left:117.506667pt;}
.xd6_c00174{left:122.106667pt;}
.xd7_c00174{left:135.933333pt;}
.xdd_c00174{left:137.466667pt;}
.x10f_c00174{left:143.613333pt;}
.xe2_c00174{left:148.986667pt;}
.xde_c00174{left:153.600000pt;}
.xe3_c00174{left:156.666667pt;}
.xe6_c00174{left:162.053333pt;}
.xd0_c00174{left:167.426667pt;}
.xaa_c00174{left:168.960000pt;}
.xa4_c00174{left:172.026667pt;}
.x10d_c00174{left:174.333333pt;}
.xc9_c00174{left:176.640000pt;}
.x2e_c00174{left:179.706667pt;}
.xe4_c00174{left:182.786667pt;}
.xca_c00174{left:185.093376pt;}
.xbe_c00174{left:187.386667pt;}
.xef_c00174{left:195.066667pt;}
.xd8_c00174{left:198.146667pt;}
.x2f_c00174{left:199.680000pt;}
.x8d_c00174{left:201.213333pt;}
.x45_c00174{left:203.520000pt;}
.x94_c00174{left:205.826667pt;}
.xc3_c00174{left:208.133333pt;}
.xb9_c00174{left:210.426667pt;}
.xfb_c00174{left:211.973333pt;}
.x102_c00174{left:214.266667pt;}
.x46_c00174{left:215.813333pt;}
.x60_c00174{left:217.346667pt;}
.xf0_c00174{left:219.653333pt;}
.x9b_c00174{left:221.186667pt;}
.x19_c00174{left:223.493333pt;}
.x37_c00174{left:225.026667pt;}
.x55_c00174{left:226.560000pt;}
.x3c_c00174{left:228.093333pt;}
.x61_c00174{left:229.626667pt;}
.x30_c00174{left:231.173333pt;}
.x23_c00174{left:232.706667pt;}
.x9_c00174{left:235.013333pt;}
.x5_c00174{left:241.920000pt;}
.x105_c00174{left:244.226667pt;}
.x109_c00174{left:245.760000pt;}
.x38_c00174{left:248.066667pt;}
.xe5_c00174{left:249.600000pt;}
.x56_c00174{left:253.440000pt;}
.x6c_c00174{left:256.506667pt;}
.x103_c00174{left:258.053333pt;}
.x8e_c00174{left:259.586667pt;}
.x4d_c00174{left:261.893333pt;}
.x7a_c00174{left:264.960000pt;}
.xf4_c00174{left:268.026667pt;}
.xa5_c00174{left:271.106667pt;}
.xcb_c00174{left:274.173333pt;}
.x106_c00174{left:276.480000pt;}
.x73_c00174{left:278.013333pt;}
.x7b_c00174{left:281.853333pt;}
.xa_c00174{left:284.933333pt;}
.xdf_c00174{left:288.773333pt;}
.xf7_c00174{left:290.306667pt;}
.x1a_c00174{left:292.613333pt;}
.x95_c00174{left:294.146667pt;}
.x8f_c00174{left:299.520000pt;}
.xba_c00174{left:302.586667pt;}
.x74_c00174{left:305.666667pt;}
.x43_c00174{left:307.200000pt;}
.xb_c00174{left:309.506667pt;}
.x39_c00174{left:311.040000pt;}
.x57_c00174{left:314.106667pt;}
.xbf_c00174{left:318.720000pt;}
.x3d_c00174{left:321.026667pt;}
.x4e_c00174{left:325.626667pt;}
.x1b_c00174{left:327.173333pt;}
.xa6_c00174{left:334.080000pt;}
.x3a_c00174{left:336.386667pt;}
.xd9_c00174{left:337.920000pt;}
.xb7_c00174{left:339.453333pt;}
.x75_c00174{left:342.533333pt;}
.x6d_c00174{left:344.066667pt;}
.xe0_c00174{left:347.906667pt;}
.xbb_c00174{left:350.973333pt;}
.x62_c00174{left:354.813333pt;}
.x31_c00174{left:361.733333pt;}
.xc5_c00174{left:364.026667pt;}
.xae_c00174{left:365.573333pt;}
.x67_c00174{left:367.106667pt;}
.x9c_c00174{left:368.640000pt;}
.xf8_c00174{left:370.173333pt;}
.xc4_c00174{left:371.706667pt;}
.x7c_c00174{left:374.013333pt;}
.x6_c00174{left:376.320000pt;}
.x80_c00174{left:378.626667pt;}
.xa7_c00174{left:381.693333pt;}
.x3e_c00174{left:383.226667pt;}
.x9d_c00174{left:385.533333pt;}
.x76_c00174{left:389.373333pt;}
.x96_c00174{left:390.906667pt;}
.xc_c00174{left:393.213333pt;}
.x2_c00174{left:394.746667pt;}
.xa8_c00174{left:397.053333pt;}
.x4f_c00174{left:399.360000pt;}
.x4_c00174{left:401.666667pt;}
.x68_c00174{left:403.200000pt;}
.x32_c00174{left:406.266667pt;}
.x3_c00174{left:408.573333pt;}
.x1_c00174{left:415.493333pt;}
.x9e_c00174{left:417.026667pt;}
.x1c_c00174{left:418.560000pt;}
.xda_c00174{left:420.093333pt;}
.xc6_c00174{left:422.400000pt;}
.x6e_c00174{left:424.706667pt;}
.xc0_c00174{left:427.013333pt;}
.xea_c00174{left:428.546667pt;}
.x58_c00174{left:430.853333pt;}
.x69_c00174{left:432.386667pt;}
.xaf_c00174{left:435.453333pt;}
.x81_c00174{left:436.986667pt;}
.x9f_c00174{left:439.293333pt;}
.x1d_c00174{left:441.600000pt;}
.xf1_c00174{left:443.133333pt;}
.x50_c00174{left:444.666667pt;}
.xbc_c00174{left:446.973333pt;}
.xd_c00174{left:449.280000pt;}
.x3f_c00174{left:450.813333pt;}
.x97_c00174{left:452.346667pt;}
.xd1_c00174{left:453.893333pt;}
.xe_c00174{left:455.426667pt;}
.xc1_c00174{left:456.960000pt;}
.xe1_c00174{left:460.800000pt;}
.x6a_c00174{left:463.866667pt;}
.x28_c00174{left:469.253333pt;}
.xf_c00174{left:471.546667pt;}
.xa0_c00174{left:473.853333pt;}
.x90_c00174{left:476.160000pt;}
.x47_c00174{left:482.306667pt;}
.x10a_c00174{left:485.373333pt;}
.xd2_c00174{left:487.680000pt;}
.xbd_c00174{left:489.213333pt;}
.x1e_c00174{left:490.746667pt;}
.x59_c00174{left:492.293333pt;}
.xb8_c00174{left:495.360000pt;}
.x3b_c00174{left:496.893333pt;}
.x10_c00174{left:498.426667pt;}
.x10c_c00174{left:502.266667pt;}
.x87_c00174{left:504.573333pt;}
.xeb_c00174{left:506.106667pt;}
.xab_c00174{left:509.186667pt;}
.x29_c00174{left:511.493333pt;}
.x1f_c00174{left:514.560000pt;}
.x82_c00174{left:517.626667pt;}
.xf2_c00174{left:519.933333pt;}
.xec_c00174{left:522.240000pt;}
.xf5_c00174{left:523.773333pt;}
.x7d_c00174{left:525.306667pt;}
.x51_c00174{left:528.386667pt;}
.xe8_c00174{left:529.920000pt;}
.x7_c00174{left:531.453333pt;}
.xff_c00174{left:533.760000pt;}
.x5a_c00174{left:536.066667pt;}
.x83_c00174{left:538.373333pt;}
.x48_c00174{left:539.906667pt;}
.x63_c00174{left:541.440000pt;}
.xa1_c00174{left:544.506667pt;}
.xcc_c00174{left:547.586667pt;}
.xd3_c00174{left:551.426667pt;}
.x88_c00174{left:555.266667pt;}
.xb0_c00174{left:557.573333pt;}
.x24_c00174{left:559.106667pt;}
.x11_c00174{left:560.640000pt;}
.x98_c00174{left:562.946667pt;}
.x40_c00174{left:566.786667pt;}
.x6f_c00174{left:570.626667pt;}
.x77_c00174{left:572.933333pt;}
.x100_c00174{left:574.466667pt;}
.x5b_c00174{left:576.000000pt;}
.x89_c00174{left:578.306667pt;}
.x2a_c00174{left:580.613333pt;}
.x78_c00174{left:585.213333pt;}
.xfc_c00174{left:586.746667pt;}
.xb1_c00174{left:589.053333pt;}
.x99_c00174{left:591.360000pt;}
.x107_c00174{left:593.666667pt;}
.x49_c00174{left:595.200000pt;}
.x41_c00174{left:596.733333pt;}
.x91_c00174{left:599.040000pt;}
.x33_c00174{left:600.573333pt;}
.x2b_c00174{left:602.880000pt;}
.x8a_c00174{left:608.253333pt;}
.x64_c00174{left:610.560000pt;}
.x42_c00174{left:612.866667pt;}
.x52_c00174{left:614.400000pt;}
.x6b_c00174{left:615.933333pt;}
.x12_c00174{left:618.240000pt;}
.xdb_c00174{left:620.546667pt;}
.x104_c00174{left:623.613333pt;}
.xa2_c00174{left:625.920000pt;}
.x7e_c00174{left:630.533333pt;}
.x4a_c00174{left:632.826667pt;}
.x13_c00174{left:634.373333pt;}
.x108_c00174{left:636.666667pt;}
.x20_c00174{left:638.973333pt;}
.xb4_c00174{left:640.506667pt;}
.x8b_c00174{left:643.586667pt;}
.xb2_c00174{left:645.893333pt;}
.xed_c00174{left:649.733333pt;}
.xa3_c00174{left:653.573333pt;}
.xd4_c00174{left:655.106667pt;}
.x34_c00174{left:656.640000pt;}
.xfd_c00174{left:658.173333pt;}
.x5c_c00174{left:659.706667pt;}
.x53_c00174{left:661.253333pt;}
.x70_c00174{left:664.320000pt;}
.x8_c00174{left:670.466667pt;}
.xa9_c00174{left:672.000000pt;}
.x84_c00174{left:674.306667pt;}
.xd5_c00174{left:675.840000pt;}
.xac_c00174{left:678.146667pt;}
.x5d_c00174{left:679.680000pt;}
.xf3_c00174{left:681.986667pt;}
.x14_c00174{left:685.053333pt;}
.x92_c00174{left:688.133333pt;}
.x65_c00174{left:691.973333pt;}
.xcd_c00174{left:698.880000pt;}
.x2c_c00174{left:701.186667pt;}
.x25_c00174{left:705.026667pt;}
.x15_c00174{left:707.333333pt;}
.x8c_c00174{left:709.626667pt;}
.xf9_c00174{left:711.173333pt;}
.x85_c00174{left:714.240000pt;}
.x4b_c00174{left:717.306667pt;}
.x16_c00174{left:719.613333pt;}
.xc7_c00174{left:721.920000pt;}
.xb5_c00174{left:723.453333pt;}
.x54_c00174{left:725.760000pt;}
.x26_c00174{left:728.066667pt;}
.xb6_c00174{left:731.133333pt;}
.x9a_c00174{left:733.440000pt;}
.xad_c00174{left:735.746667pt;}
.x17_c00174{left:738.053333pt;}
.xdc_c00174{left:741.120000pt;}
.xf6_c00174{left:742.653333pt;}
.xc2_c00174{left:744.960000pt;}
.xfa_c00174{left:746.493333pt;}
.x7f_c00174{left:748.026667pt;}
.x71_c00174{left:751.106667pt;}
.x21_c00174{left:752.640000pt;}
.x93_c00174{left:756.480000pt;}
.xb3_c00174{left:759.546667pt;}
.xce_c00174{left:761.093333pt;}
.x44_c00174{left:762.626667pt;}
.x86_c00174{left:764.933333pt;}
.x66_c00174{left:769.533333pt;}
.x101_c00174{left:773.373333pt;}
.x4c_c00174{left:774.906667pt;}
.x18_c00174{left:779.520000pt;}
.x22_c00174{left:781.053333pt;}
.x27_c00174{left:782.586667pt;}
.x10b_c00174{left:785.666667pt;}
.xe7_c00174{left:787.200000pt;}
.xee_c00174{left:789.506667pt;}
.xcf_c00174{left:791.040000pt;}
.x79_c00174{left:794.106667pt;}
.xc8_c00174{left:796.413333pt;}
.x72_c00174{left:798.720000pt;}
.xe9_c00174{left:800.253333pt;}
.x5e_c00174{left:802.560000pt;}
.x35_c00174{left:805.626667pt;}
.x2d_c00174{left:807.933333pt;}
.xfe_c00174{left:809.466667pt;}
.x5f_c00174{left:811.773333pt;}
.x36_c00174{left:817.146667pt;}
.x110_c00174{left:931.586667pt;}
.x111_c00174{left:939.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ca9cdfe6dcb185fe3955412.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.109863;font-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_c00175{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m191_c00175{transform:matrix(0.041700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041700,0.000000,0.000000,0.250000,0,0);}
.m190_c00175{transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);}
.mfb_c00175{transform:matrix(0.069325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069325,0.000000,0.000000,0.250000,0,0);}
.md0_c00175{transform:matrix(0.103650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103650,0.000000,0.000000,0.250000,0,0);}
.mb1_c00175{transform:matrix(0.104725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104725,0.000000,0.000000,0.250000,0,0);}
.m18f_c00175{transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);}
.m189_c00175{transform:matrix(0.109925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109925,0.000000,0.000000,0.250000,0,0);}
.m18e_c00175{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.mf2_c00175{transform:matrix(0.115875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115875,0.000000,0.000000,0.250000,0,0);}
.mba_c00175{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m155_c00175{transform:matrix(0.116850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116850,0.000000,0.000000,0.250000,0,0);}
.me7_c00175{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m16b_c00175{transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);}
.m18b_c00175{transform:matrix(0.124225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124225,0.000000,0.000000,0.250000,0,0);}
.m102_c00175{transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);}
.m132_c00175{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m10c_c00175{transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);}
.me2_c00175{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);}
.m73_c00175{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.m17b_c00175{transform:matrix(0.138275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138275,0.000000,0.000000,0.250000,0,0);}
.m52_c00175{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.m15_c00175{transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);}
.m6_c00175{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m13a_c00175{transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);}
.m16a_c00175{transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);}
.m16_c00175{transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);}
.m16e_c00175{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);}
.m112_c00175{transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);}
.m166_c00175{transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);}
.m1_c00175{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m27_c00175{transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);}
.m11b_c00175{transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);}
.m12d_c00175{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.m11a_c00175{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m151_c00175{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);}
.m107_c00175{transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);}
.m14b_c00175{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.m3d_c00175{transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);}
.m34_c00175{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);}
.m138_c00175{transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);}
.m5e_c00175{transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);}
.m158_c00175{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m10e_c00175{transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);}
.mf5_c00175{transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);}
.m179_c00175{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);}
.m45_c00175{transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);}
.mdf_c00175{transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);}
.m80_c00175{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.m173_c00175{transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);}
.m135_c00175{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00175{transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);}
.m43_c00175{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.m159_c00175{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);}
.m13d_c00175{transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);}
.m106_c00175{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);}
.m12a_c00175{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.mf9_c00175{transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);}
.m15c_c00175{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);}
.m17f_c00175{transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);}
.mf_c00175{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m178_c00175{transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);}
.m66_c00175{transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);}
.m9b_c00175{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);}
.m121_c00175{transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);}
.m140_c00175{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m13f_c00175{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.me_c00175{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m12b_c00175{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m31_c00175{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m124_c00175{transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);}
.m129_c00175{transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);}
.m59_c00175{transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);}
.m141_c00175{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.m148_c00175{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.m13e_c00175{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.m104_c00175{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);}
.m103_c00175{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.m1b_c00175{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.mea_c00175{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.mdc_c00175{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.m85_c00175{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.me5_c00175{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m123_c00175{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m156_c00175{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m48_c00175{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);}
.m165_c00175{transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);}
.m16d_c00175{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m105_c00175{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m136_c00175{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.m11f_c00175{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);}
.m3b_c00175{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.m149_c00175{transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);}
.m6f_c00175{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.mf6_c00175{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.m12c_c00175{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m2f_c00175{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m14d_c00175{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.m154_c00175{transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);}
.m3f_c00175{transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);}
.m167_c00175{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);}
.mac_c00175{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);}
.mfe_c00175{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.m18d_c00175{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m5b_c00175{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.ma_c00175{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m101_c00175{transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);}
.m153_c00175{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);}
.m56_c00175{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m70_c00175{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m6a_c00175{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m113_c00175{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);}
.me4_c00175{transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);}
.mff_c00175{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m92_c00175{transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);}
.m72_c00175{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);}
.m122_c00175{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);}
.m54_c00175{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.mf7_c00175{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);}
.m15e_c00175{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.mfa_c00175{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m14a_c00175{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m175_c00175{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.m16c_c00175{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);}
.md5_c00175{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m12_c00175{transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);}
.mbe_c00175{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.m150_c00175{transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);}
.m36_c00175{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);}
.mee_c00175{transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);}
.m8f_c00175{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);}
.m109_c00175{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m61_c00175{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);}
.m131_c00175{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m130_c00175{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.mc1_c00175{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);}
.ma5_c00175{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m119_c00175{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);}
.m1d_c00175{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m14c_c00175{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);}
.m12f_c00175{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);}
.mb8_c00175{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);}
.m118_c00175{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.m38_c00175{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);}
.mb_c00175{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m147_c00175{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);}
.mf1_c00175{transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);}
.m62_c00175{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);}
.m162_c00175{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);}
.m125_c00175{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.m2d_c00175{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);}
.m3a_c00175{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);}
.m13_c00175{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m28_c00175{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m142_c00175{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);}
.mdd_c00175{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);}
.m9d_c00175{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m144_c00175{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m160_c00175{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.me6_c00175{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.me8_c00175{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mda_c00175{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m5f_c00175{transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);}
.m86_c00175{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.m5c_c00175{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.mbc_c00175{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);}
.m11c_c00175{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);}
.m11d_c00175{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m146_c00175{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.ma9_c00175{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mb6_c00175{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);}
.mbb_c00175{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m33_c00175{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.m13b_c00175{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.m4f_c00175{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);}
.m152_c00175{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.mc9_c00175{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.m12e_c00175{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.meb_c00175{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m15b_c00175{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);}
.m55_c00175{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.m39_c00175{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);}
.m134_c00175{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m79_c00175{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.m185_c00175{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m4e_c00175{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.m78_c00175{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m188_c00175{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m161_c00175{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00175{transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);}
.m14f_c00175{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);}
.me0_c00175{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);}
.m184_c00175{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);}
.m84_c00175{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);}
.mf8_c00175{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);}
.m67_c00175{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);}
.m26_c00175{transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);}
.m4c_c00175{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.m2e_c00175{transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);}
.mef_c00175{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);}
.mb3_c00175{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m17a_c00175{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.mab_c00175{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.mbd_c00175{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m139_c00175{transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);}
.m37_c00175{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);}
.m117_c00175{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);}
.m177_c00175{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);}
.me3_c00175{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);}
.m110_c00175{transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);}
.mae_c00175{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.m168_c00175{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);}
.med_c00175{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);}
.m183_c00175{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.md8_c00175{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);}
.m57_c00175{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m24_c00175{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.mc8_c00175{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);}
.mcd_c00175{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.m9a_c00175{transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);}
.mec_c00175{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);}
.mf3_c00175{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m15a_c00175{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);}
.mc2_c00175{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);}
.mc7_c00175{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);}
.m53_c00175{transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);}
.m99_c00175{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.m120_c00175{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m169_c00175{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m16f_c00175{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);}
.m18_c00175{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);}
.m15f_c00175{transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);}
.maf_c00175{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.m115_c00175{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);}
.mc5_c00175{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.m23_c00175{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m6b_c00175{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m50_c00175{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m127_c00175{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.m13c_c00175{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.ma8_c00175{transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);}
.m22_c00175{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.mc4_c00175{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);}
.m93_c00175{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.m17d_c00175{transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);}
.mc6_c00175{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.m74_c00175{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.mca_c00175{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.md4_c00175{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.mbf_c00175{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m60_c00175{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);}
.ma6_c00175{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);}
.m181_c00175{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m8c_c00175{transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);}
.mb7_c00175{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.m164_c00175{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);}
.m10b_c00175{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);}
.m89_c00175{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);}
.m65_c00175{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);}
.m108_c00175{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.mf0_c00175{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m82_c00175{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.m91_c00175{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m69_c00175{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);}
.mb4_c00175{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m46_c00175{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m14_c00175{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);}
.mde_c00175{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);}
.m17e_c00175{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);}
.m192_c00175{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);}
.m186_c00175{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.m176_c00175{transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);}
.m19_c00175{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);}
.m7a_c00175{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);}
.m75_c00175{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);}
.m10a_c00175{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);}
.ma1_c00175{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);}
.mf4_c00175{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);}
.m71_c00175{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);}
.m9f_c00175{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.m11e_c00175{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);}
.ma0_c00175{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);}
.m182_c00175{transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);}
.mc3_c00175{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);}
.m1a_c00175{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);}
.m49_c00175{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m6d_c00175{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);}
.m180_c00175{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.m133_c00175{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);}
.mcb_c00175{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m98_c00175{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00175{transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);}
.m10d_c00175{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);}
.m114_c00175{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.m97_c00175{transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);}
.m64_c00175{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m18a_c00175{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);}
.m81_c00175{transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);}
.m111_c00175{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);}
.m116_c00175{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);}
.mb9_c00175{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.mc0_c00175{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);}
.m128_c00175{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);}
.m18c_c00175{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);}
.m126_c00175{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);}
.m100_c00175{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);}
.m41_c00175{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);}
.m7f_c00175{transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);}
.mb5_c00175{transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);}
.m90_c00175{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);}
.mfd_c00175{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);}
.m172_c00175{transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);}
.m10f_c00175{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);}
.m6c_c00175{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);}
.m9c_c00175{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);}
.md2_c00175{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);}
.m157_c00175{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);}
.m87_c00175{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);}
.m15d_c00175{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m83_c00175{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);}
.m187_c00175{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m95_c00175{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);}
.m10_c00175{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m51_c00175{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);}
.m25_c00175{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);}
.m21_c00175{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);}
.m94_c00175{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);}
.md7_c00175{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m47_c00175{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m17c_c00175{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c00175{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);}
.m4a_c00175{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00175{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);}
.mc_c00175{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);}
.m4b_c00175{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00175{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_c00175{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m170_c00175{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00175{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);}
.m44_c00175{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00175{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);}
.ma4_c00175{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);}
.m11_c00175{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00175{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00175{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);}
.m8d_c00175{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00175{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00175{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);}
.m76_c00175{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00175{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00175{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma3_c00175{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00175{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md1_c00175{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m88_c00175{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00175{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);}
.m42_c00175{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00175{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00175{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.maa_c00175{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);}
.m63_c00175{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);}
.mad_c00175{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md_c00175{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);}
.mcf_c00175{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md9_c00175{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma2_c00175{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00175{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m0_c00175{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);}
.m17_c00175{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00175{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);}
.m35_c00175{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m9_c00175{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m174_c00175{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.md3_c00175{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m68_c00175{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m40_c00175{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);}
.m137_c00175{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);}
.m2c_c00175{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00175{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m20_c00175{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00175{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m145_c00175{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m32_c00175{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me1_c00175{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00175{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m14e_c00175{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.md6_c00175{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00175{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);}
.m163_c00175{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m96_c00175{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m171_c00175{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mcc_c00175{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m29_c00175{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mce_c00175{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.me9_c00175{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m2_c00175{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m58_c00175{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4_c00175{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.m77_c00175{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m143_c00175{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00175{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c00175{transform:matrix(1.905000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.905000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.905000,0.000000,0.000000,0.250000,0,0);}
.m8_c00175{transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);}
.v2_c00175{vertical-align:-13.800000px;}
.v1_c00175{vertical-align:-3.480000px;}
.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;}
}
.ws1_c00175{word-spacing:-26.935200px;}
.ws0_c00175{word-spacing:-25.530780px;}
.ws2_c00175{word-spacing:0.000000px;}
.fc0_c00175{color:transparent;}
.fs2_c00175{font-size:3.456000px;}
.fs4_c00175{font-size:6.000000px;}
.fs6_c00175{font-size:6.900000px;}
.fs1_c00175{font-size:10.380000px;}
.fs3_c00175{font-size:13.800000px;}
.fs1e_c00175{font-size:17.280000px;}
.fs13_c00175{font-size:20.760000px;}
.fs7_c00175{font-size:24.180000px;}
.fs5_c00175{font-size:27.660000px;}
.fs0_c00175{font-size:34.560000px;}
.fs11_c00175{font-size:38.040000px;}
.fs1f_c00175{font-size:41.460000px;}
.fsb_c00175{font-size:44.940000px;}
.fs20_c00175{font-size:48.360000px;}
.fs18_c00175{font-size:51.840000px;}
.fs14_c00175{font-size:55.320000px;}
.fsc_c00175{font-size:58.740000px;}
.fs15_c00175{font-size:62.220000px;}
.fs17_c00175{font-size:65.640000px;}
.fsa_c00175{font-size:69.120000px;}
.fs8_c00175{font-size:72.600000px;}
.fs1a_c00175{font-size:76.020000px;}
.fsf_c00175{font-size:79.500000px;}
.fs1c_c00175{font-size:82.920000px;}
.fs16_c00175{font-size:86.400000px;}
.fs12_c00175{font-size:89.880000px;}
.fse_c00175{font-size:93.300000px;}
.fs9_c00175{font-size:96.780000px;}
.fsd_c00175{font-size:100.200000px;}
.fs19_c00175{font-size:103.680000px;}
.fs1b_c00175{font-size:107.160000px;}
.fs10_c00175{font-size:110.580000px;}
.fs1d_c00175{font-size:114.060000px;}
.fs21_c00175{font-size:117.480000px;}
.fs22_c00175{font-size:138.240000px;}
.fs23_c00175{font-size:186.600000px;}
.y0_c00175{bottom:0.000000px;}
.y151_c00175{bottom:206.490000px;}
.y157_c00175{bottom:207.360000px;}
.y154_c00175{bottom:209.955000px;}
.y153_c00175{bottom:210.810000px;}
.y155_c00175{bottom:214.275000px;}
.y150_c00175{bottom:217.725000px;}
.y152_c00175{bottom:218.595000px;}
.y156_c00175{bottom:220.320000px;}
.y158_c00175{bottom:222.915000px;}
.y14e_c00175{bottom:237.600000px;}
.y14b_c00175{bottom:239.325000px;}
.y14a_c00175{bottom:240.195000px;}
.y14f_c00175{bottom:241.050000px;}
.y149_c00175{bottom:241.920000px;}
.y14d_c00175{bottom:243.645000px;}
.y14c_c00175{bottom:244.515000px;}
.y141_c00175{bottom:261.795000px;}
.y146_c00175{bottom:262.650000px;}
.y142_c00175{bottom:265.245000px;}
.y147_c00175{bottom:266.970000px;}
.y144_c00175{bottom:268.710000px;}
.y143_c00175{bottom:269.565000px;}
.y145_c00175{bottom:270.435000px;}
.y148_c00175{bottom:279.930000px;}
.y140_c00175{bottom:283.395000px;}
.y13a_c00175{bottom:289.440000px;}
.y13d_c00175{bottom:291.165000px;}
.y13e_c00175{bottom:292.035000px;}
.y13b_c00175{bottom:294.630000px;}
.y13c_c00175{bottom:295.485000px;}
.y161_c00175{bottom:297.210000px;}
.y160_c00175{bottom:300.675000px;}
.y13f_c00175{bottom:304.125000px;}
.y134_c00175{bottom:311.040000px;}
.y137_c00175{bottom:311.910000px;}
.y135_c00175{bottom:313.635000px;}
.y138_c00175{bottom:318.810000px;}
.y136_c00175{bottom:320.550000px;}
.y139_c00175{bottom:324.000000px;}
.y131_c00175{bottom:336.090000px;}
.y12d_c00175{bottom:336.960000px;}
.y12f_c00175{bottom:338.685000px;}
.y12e_c00175{bottom:339.555000px;}
.y130_c00175{bottom:343.005000px;}
.y133_c00175{bottom:348.195000px;}
.y132_c00175{bottom:349.050000px;}
.y127_c00175{bottom:362.880000px;}
.y12a_c00175{bottom:363.750000px;}
.y12c_c00175{bottom:364.605000px;}
.y12b_c00175{bottom:365.475000px;}
.y128_c00175{bottom:368.070000px;}
.y126_c00175{bottom:370.650000px;}
.y129_c00175{bottom:371.520000px;}
.y125_c00175{bottom:378.435000px;}
.y15e_c00175{bottom:381.030000px;}
.y11e_c00175{bottom:385.350000px;}
.y122_c00175{bottom:387.075000px;}
.y123_c00175{bottom:387.930000px;}
.y120_c00175{bottom:388.800000px;}
.y121_c00175{bottom:393.120000px;}
.y124_c00175{bottom:394.845000px;}
.y11f_c00175{bottom:395.715000px;}
.y118_c00175{bottom:411.270000px;}
.y11b_c00175{bottom:412.125000px;}
.y119_c00175{bottom:412.995000px;}
.y11c_c00175{bottom:413.850000px;}
.y15f_c00175{bottom:415.590000px;}
.y11d_c00175{bottom:416.445000px;}
.y11a_c00175{bottom:420.765000px;}
.y114_c00175{bottom:437.190000px;}
.y115_c00175{bottom:438.045000px;}
.y116_c00175{bottom:438.915000px;}
.y117_c00175{bottom:442.365000px;}
.y112_c00175{bottom:444.960000px;}
.y113_c00175{bottom:445.830000px;}
.y111_c00175{bottom:453.600000px;}
.y110_c00175{bottom:455.325000px;}
.y10a_c00175{bottom:462.240000px;}
.y10b_c00175{bottom:463.110000px;}
.y10d_c00175{bottom:463.965000px;}
.y10e_c00175{bottom:466.560000px;}
.y10c_c00175{bottom:470.010000px;}
.y10f_c00175{bottom:472.605000px;}
.y103_c00175{bottom:485.565000px;}
.y101_c00175{bottom:486.435000px;}
.y106_c00175{bottom:487.290000px;}
.y104_c00175{bottom:488.160000px;}
.y108_c00175{bottom:489.030000px;}
.y109_c00175{bottom:492.480000px;}
.y102_c00175{bottom:494.205000px;}
.y107_c00175{bottom:495.075000px;}
.y105_c00175{bottom:496.800000px;}
.yf9_c00175{bottom:511.485000px;}
.yfa_c00175{bottom:512.355000px;}
.yfe_c00175{bottom:513.210000px;}
.yfb_c00175{bottom:514.080000px;}
.y100_c00175{bottom:514.950000px;}
.yfc_c00175{bottom:516.675000px;}
.yfd_c00175{bottom:520.995000px;}
.yff_c00175{bottom:532.230000px;}
.yf4_c00175{bottom:537.405000px;}
.yf8_c00175{bottom:539.130000px;}
.yf5_c00175{bottom:540.870000px;}
.yf7_c00175{bottom:543.450000px;}
.yf3_c00175{bottom:545.190000px;}
.yf6_c00175{bottom:546.915000px;}
.yf0_c00175{bottom:562.470000px;}
.yf2_c00175{bottom:564.195000px;}
.yf1_c00175{bottom:569.370000px;}
.yef_c00175{bottom:586.650000px;}
.yeb_c00175{bottom:587.520000px;}
.yec_c00175{bottom:588.390000px;}
.yed_c00175{bottom:589.245000px;}
.yea_c00175{bottom:592.710000px;}
.ye9_c00175{bottom:593.565000px;}
.ye7_c00175{bottom:594.435000px;}
.ye8_c00175{bottom:595.290000px;}
.yee_c00175{bottom:596.160000px;}
.ye2_c00175{bottom:612.570000px;}
.ye3_c00175{bottom:613.440000px;}
.ye5_c00175{bottom:614.310000px;}
.ye4_c00175{bottom:619.485000px;}
.ye6_c00175{bottom:621.210000px;}
.ydd_c00175{bottom:636.765000px;}
.yde_c00175{bottom:637.635000px;}
.ydf_c00175{bottom:638.490000px;}
.ye0_c00175{bottom:639.360000px;}
.ye1_c00175{bottom:645.405000px;}
.yd8_c00175{bottom:662.685000px;}
.yd9_c00175{bottom:663.555000px;}
.yd7_c00175{bottom:667.005000px;}
.ydc_c00175{bottom:667.875000px;}
.yd6_c00175{bottom:669.600000px;}
.ydb_c00175{bottom:670.470000px;}
.yda_c00175{bottom:671.325000px;}
.yd1_c00175{bottom:686.010000px;}
.yd0_c00175{bottom:686.880000px;}
.yce_c00175{bottom:687.750000px;}
.yd3_c00175{bottom:688.605000px;}
.yd5_c00175{bottom:689.475000px;}
.ycf_c00175{bottom:692.925000px;}
.yd2_c00175{bottom:693.795000px;}
.yd4_c00175{bottom:694.650000px;}
.yc5_c00175{bottom:710.205000px;}
.yc4_c00175{bottom:711.075000px;}
.yc8_c00175{bottom:711.930000px;}
.yca_c00175{bottom:712.800000px;}
.yc6_c00175{bottom:714.525000px;}
.ycb_c00175{bottom:717.120000px;}
.yc7_c00175{bottom:717.990000px;}
.yc9_c00175{bottom:719.715000px;}
.ycc_c00175{bottom:720.570000px;}
.ycd_c00175{bottom:724.890000px;}
.ybb_c00175{bottom:734.400000px;}
.ybc_c00175{bottom:735.270000px;}
.ybe_c00175{bottom:736.125000px;}
.yc3_c00175{bottom:736.995000px;}
.yc0_c00175{bottom:738.720000px;}
.yc2_c00175{bottom:739.590000px;}
.yc1_c00175{bottom:740.445000px;}
.ybd_c00175{bottom:742.170000px;}
.ybf_c00175{bottom:743.910000px;}
.yb6_c00175{bottom:759.450000px;}
.yb8_c00175{bottom:760.320000px;}
.yba_c00175{bottom:761.190000px;}
.yb4_c00175{bottom:766.365000px;}
.yb5_c00175{bottom:767.235000px;}
.yb7_c00175{bottom:768.090000px;}
.yb9_c00175{bottom:768.960000px;}
.yab_c00175{bottom:785.370000px;}
.yb2_c00175{bottom:786.240000px;}
.yb0_c00175{bottom:787.110000px;}
.yaf_c00175{bottom:788.835000px;}
.yae_c00175{bottom:790.560000px;}
.yad_c00175{bottom:791.430000px;}
.yac_c00175{bottom:792.285000px;}
.yb1_c00175{bottom:793.155000px;}
.yaa_c00175{bottom:797.475000px;}
.yb3_c00175{bottom:806.970000px;}
.ya6_c00175{bottom:808.710000px;}
.ya8_c00175{bottom:809.565000px;}
.ya7_c00175{bottom:810.435000px;}
.ya5_c00175{bottom:815.610000px;}
.ya9_c00175{bottom:819.930000px;}
.y15d_c00175{bottom:825.990000px;}
.ya0_c00175{bottom:832.890000px;}
.ya1_c00175{bottom:833.760000px;}
.ya2_c00175{bottom:834.630000px;}
.ya4_c00175{bottom:839.805000px;}
.ya3_c00175{bottom:840.675000px;}
.y15c_c00175{bottom:856.230000px;}
.y9b_c00175{bottom:857.955000px;}
.y9e_c00175{bottom:858.810000px;}
.y9d_c00175{bottom:859.680000px;}
.y9a_c00175{bottom:860.550000px;}
.y9c_c00175{bottom:865.725000px;}
.y9f_c00175{bottom:868.320000px;}
.y97_c00175{bottom:883.875000px;}
.y93_c00175{bottom:884.730000px;}
.y96_c00175{bottom:885.600000px;}
.y94_c00175{bottom:887.325000px;}
.y99_c00175{bottom:889.050000px;}
.y95_c00175{bottom:889.920000px;}
.y92_c00175{bottom:890.790000px;}
.y98_c00175{bottom:891.645000px;}
.y8e_c00175{bottom:908.925000px;}
.y90_c00175{bottom:909.795000px;}
.y91_c00175{bottom:913.245000px;}
.y8f_c00175{bottom:914.115000px;}
.y8d_c00175{bottom:916.710000px;}
.y8b_c00175{bottom:933.990000px;}
.y8c_c00175{bottom:936.570000px;}
.y8a_c00175{bottom:940.890000px;}
.y89_c00175{bottom:941.760000px;}
.y1_c00175{bottom:944.355000px;}
.y88_c00175{bottom:949.530000px;}
.y83_c00175{bottom:959.040000px;}
.y85_c00175{bottom:959.910000px;}
.y86_c00175{bottom:960.765000px;}
.y82_c00175{bottom:961.635000px;}
.y81_c00175{bottom:965.085000px;}
.y84_c00175{bottom:965.955000px;}
.y87_c00175{bottom:967.680000px;}
.y7c_c00175{bottom:983.235000px;}
.y7b_c00175{bottom:984.090000px;}
.y7e_c00175{bottom:985.830000px;}
.y80_c00175{bottom:986.685000px;}
.y7d_c00175{bottom:991.005000px;}
.y7f_c00175{bottom:991.875000px;}
.y76_c00175{bottom:1009.155000px;}
.y77_c00175{bottom:1011.750000px;}
.y79_c00175{bottom:1013.475000px;}
.y78_c00175{bottom:1016.070000px;}
.y7a_c00175{bottom:1017.795000px;}
.y75_c00175{bottom:1035.075000px;}
.y73_c00175{bottom:1036.800000px;}
.y72_c00175{bottom:1041.120000px;}
.y74_c00175{bottom:1041.990000px;}
.y71_c00175{bottom:1042.845000px;}
.y6c_c00175{bottom:1058.400000px;}
.y6d_c00175{bottom:1060.125000px;}
.y70_c00175{bottom:1060.995000px;}
.y6a_c00175{bottom:1064.445000px;}
.y6b_c00175{bottom:1066.170000px;}
.y6e_c00175{bottom:1067.040000px;}
.y6f_c00175{bottom:1067.910000px;}
.y64_c00175{bottom:1083.450000px;}
.y66_c00175{bottom:1084.320000px;}
.y68_c00175{bottom:1085.190000px;}
.y65_c00175{bottom:1091.235000px;}
.y67_c00175{bottom:1092.090000px;}
.y69_c00175{bottom:1093.830000px;}
.y5e_c00175{bottom:1107.645000px;}
.y5c_c00175{bottom:1109.370000px;}
.y5a_c00175{bottom:1110.240000px;}
.y62_c00175{bottom:1111.965000px;}
.y60_c00175{bottom:1112.835000px;}
.y5d_c00175{bottom:1114.560000px;}
.y5b_c00175{bottom:1115.430000px;}
.y61_c00175{bottom:1117.155000px;}
.y5f_c00175{bottom:1118.010000px;}
.y63_c00175{bottom:1132.710000px;}
.y54_c00175{bottom:1133.565000px;}
.y56_c00175{bottom:1134.435000px;}
.y57_c00175{bottom:1135.290000px;}
.y58_c00175{bottom:1137.030000px;}
.y53_c00175{bottom:1137.885000px;}
.y52_c00175{bottom:1141.350000px;}
.y55_c00175{bottom:1142.205000px;}
.y59_c00175{bottom:1143.930000px;}
.y49_c00175{bottom:1157.760000px;}
.y4a_c00175{bottom:1158.630000px;}
.y4c_c00175{bottom:1159.485000px;}
.y4e_c00175{bottom:1160.355000px;}
.y4d_c00175{bottom:1161.210000px;}
.y50_c00175{bottom:1162.080000px;}
.y4b_c00175{bottom:1166.400000px;}
.y51_c00175{bottom:1168.125000px;}
.y4f_c00175{bottom:1168.995000px;}
.y15b_c00175{bottom:1180.230000px;}
.y41_c00175{bottom:1182.810000px;}
.y42_c00175{bottom:1183.680000px;}
.y46_c00175{bottom:1184.550000px;}
.y45_c00175{bottom:1185.405000px;}
.y43_c00175{bottom:1186.275000px;}
.y44_c00175{bottom:1188.000000px;}
.y47_c00175{bottom:1189.725000px;}
.y48_c00175{bottom:1193.190000px;}
.y162_c00175{bottom:1205.280000px;}
.y38_c00175{bottom:1207.005000px;}
.y3a_c00175{bottom:1207.875000px;}
.y39_c00175{bottom:1208.730000px;}
.y3e_c00175{bottom:1209.600000px;}
.y3d_c00175{bottom:1210.470000px;}
.y3f_c00175{bottom:1211.325000px;}
.y3b_c00175{bottom:1213.050000px;}
.y40_c00175{bottom:1215.645000px;}
.y3c_c00175{bottom:1216.515000px;}
.y33_c00175{bottom:1232.070000px;}
.y37_c00175{bottom:1232.925000px;}
.y32_c00175{bottom:1239.840000px;}
.y34_c00175{bottom:1240.710000px;}
.y35_c00175{bottom:1241.565000px;}
.y36_c00175{bottom:1242.435000px;}
.y2c_c00175{bottom:1257.120000px;}
.y2a_c00175{bottom:1257.990000px;}
.y2d_c00175{bottom:1259.715000px;}
.y31_c00175{bottom:1264.890000px;}
.y30_c00175{bottom:1265.760000px;}
.y2b_c00175{bottom:1266.630000px;}
.y2e_c00175{bottom:1267.485000px;}
.y2f_c00175{bottom:1268.355000px;}
.y20_c00175{bottom:1281.315000px;}
.y23_c00175{bottom:1283.040000px;}
.y25_c00175{bottom:1283.910000px;}
.y27_c00175{bottom:1284.765000px;}
.y29_c00175{bottom:1285.635000px;}
.y28_c00175{bottom:1287.360000px;}
.y21_c00175{bottom:1289.085000px;}
.y22_c00175{bottom:1289.955000px;}
.y24_c00175{bottom:1291.680000px;}
.y26_c00175{bottom:1292.550000px;}
.y15a_c00175{bottom:1302.045000px;}
.y17_c00175{bottom:1306.365000px;}
.y18_c00175{bottom:1307.235000px;}
.y1b_c00175{bottom:1308.090000px;}
.y1a_c00175{bottom:1308.960000px;}
.y1c_c00175{bottom:1309.830000px;}
.y1d_c00175{bottom:1314.150000px;}
.y19_c00175{bottom:1315.005000px;}
.y1f_c00175{bottom:1316.730000px;}
.y1e_c00175{bottom:1317.600000px;}
.y159_c00175{bottom:1319.325000px;}
.ye_c00175{bottom:1330.560000px;}
.y10_c00175{bottom:1331.430000px;}
.y13_c00175{bottom:1333.155000px;}
.y12_c00175{bottom:1334.010000px;}
.y14_c00175{bottom:1336.605000px;}
.y16_c00175{bottom:1337.475000px;}
.yf_c00175{bottom:1338.330000px;}
.y11_c00175{bottom:1339.200000px;}
.y15_c00175{bottom:1341.795000px;}
.y7_c00175{bottom:1355.610000px;}
.y8_c00175{bottom:1357.350000px;}
.ya_c00175{bottom:1358.205000px;}
.yc_c00175{bottom:1359.930000px;}
.yd_c00175{bottom:1364.250000px;}
.y9_c00175{bottom:1365.120000px;}
.yb_c00175{bottom:1366.845000px;}
.y4_c00175{bottom:1384.995000px;}
.y2_c00175{bottom:1385.850000px;}
.y3_c00175{bottom:1386.720000px;}
.y6_c00175{bottom:1387.590000px;}
.y5_c00175{bottom:1392.765000px;}
.h4_c00175{height:3.110063px;}
.h6_c00175{height:5.399414px;}
.h8_c00175{height:6.209326px;}
.h3_c00175{height:9.340986px;}
.h5_c00175{height:12.418652px;}
.h20_c00175{height:15.550313px;}
.h15_c00175{height:18.681973px;}
.h9_c00175{height:21.759639px;}
.h7_c00175{height:24.891299px;}
.h2_c00175{height:31.100625px;}
.h13_c00175{height:34.232285px;}
.h21_c00175{height:37.309951px;}
.hd_c00175{height:40.441611px;}
.h22_c00175{height:43.519277px;}
.h1a_c00175{height:46.650937px;}
.h16_c00175{height:49.782598px;}
.he_c00175{height:52.860264px;}
.h17_c00175{height:55.991924px;}
.h19_c00175{height:59.069590px;}
.hc_c00175{height:62.201250px;}
.ha_c00175{height:65.332910px;}
.h1c_c00175{height:68.410576px;}
.h11_c00175{height:71.542236px;}
.h1e_c00175{height:74.619902px;}
.h18_c00175{height:77.751563px;}
.h14_c00175{height:80.883223px;}
.h10_c00175{height:83.960889px;}
.hb_c00175{height:87.092549px;}
.hf_c00175{height:90.170215px;}
.h1b_c00175{height:93.301875px;}
.h1d_c00175{height:96.433535px;}
.h12_c00175{height:99.511201px;}
.h1f_c00175{height:102.642861px;}
.h23_c00175{height:105.720527px;}
.h24_c00175{height:124.402500px;}
.h25_c00175{height:167.921777px;}
.h1_c00175{height:1503.000000px;}
.h0_c00175{height:1503.360000px;}
.w0_c00175{width:1090.365000px;}
.w1_c00175{width:1090.500000px;}
.x0_c00175{left:0.000000px;}
.x1_c00175{left:17.280000px;}
.x103_c00175{left:61.350000px;}
.x104_c00175{left:101.955000px;}
.x105_c00175{left:106.275000px;}
.x106_c00175{left:114.045000px;}
.x107_c00175{left:123.555000px;}
.x108_c00175{left:129.600000px;}
.x101_c00175{left:156.390000px;}
.x102_c00175{left:165.030000px;}
.x109_c00175{left:200.445000px;}
.xa4_c00175{left:211.680000px;}
.x8d_c00175{left:214.275000px;}
.x7b_c00175{left:220.320000px;}
.x9f_c00175{left:222.045000px;}
.x26_c00175{left:225.510000px;}
.x1a_c00175{left:229.830000px;}
.xe_c00175{left:233.280000px;}
.x98_c00175{left:235.005000px;}
.xc4_c00175{left:238.470000px;}
.xd0_c00175{left:240.195000px;}
.xdf_c00175{left:242.790000px;}
.xf2_c00175{left:244.515000px;}
.xb6_c00175{left:256.605000px;}
.x32_c00175{left:259.200000px;}
.x58_c00175{left:261.795000px;}
.xf_c00175{left:263.520000px;}
.xbe_c00175{left:266.970000px;}
.x99_c00175{left:269.565000px;}
.x1b_c00175{left:271.290000px;}
.x8e_c00175{left:273.885000px;}
.x49_c00175{left:275.610000px;}
.xe9_c00175{left:278.205000px;}
.x87_c00175{left:280.800000px;}
.xb7_c00175{left:282.525000px;}
.xdb_c00175{left:285.120000px;}
.x27_c00175{left:286.845000px;}
.x44_c00175{left:289.440000px;}
.xa5_c00175{left:291.165000px;}
.x5d_c00175{left:293.760000px;}
.x91_c00175{left:295.485000px;}
.x1c_c00175{left:297.210000px;}
.x68_c00175{left:298.950000px;}
.xe2_c00175{left:302.400000px;}
.x33_c00175{left:304.995000px;}
.x83_c00175{left:306.720000px;}
.xb8_c00175{left:311.040000px;}
.xd1_c00175{left:312.765000px;}
.xe6_c00175{left:314.490000px;}
.xa0_c00175{left:317.085000px;}
.x4a_c00175{left:319.680000px;}
.xad_c00175{left:322.275000px;}
.x3d_c00175{left:324.870000px;}
.x52_c00175{left:330.045000px;}
.xa9_c00175{left:331.770000px;}
.x34_c00175{left:333.510000px;}
.xc5_c00175{left:335.235000px;}
.x1d_c00175{left:341.280000px;}
.x69_c00175{left:343.875000px;}
.x5e_c00175{left:345.600000px;}
.x76_c00175{left:347.325000px;}
.x10_c00175{left:349.920000px;}
.xd7_c00175{left:354.240000px;}
.xfc_c00175{left:355.965000px;}
.x4b_c00175{left:357.690000px;}
.x84_c00175{left:360.285000px;}
.x35_c00175{left:362.880000px;}
.xae_c00175{left:364.605000px;}
.x28_c00175{left:368.070000px;}
.x5f_c00175{left:369.795000px;}
.x6a_c00175{left:372.390000px;}
.x92_c00175{left:374.115000px;}
.x72_c00175{left:375.840000px;}
.xba_c00175{left:380.160000px;}
.xa6_c00175{left:384.480000px;}
.xd2_c00175{left:387.075000px;}
.xf1_c00175{left:389.670000px;}
.x53_c00175{left:393.120000px;}
.xd3_c00175{left:394.845000px;}
.xeb_c00175{left:396.570000px;}
.x60_c00175{left:399.165000px;}
.xfa_c00175{left:403.485000px;}
.xfd_c00175{left:405.210000px;}
.x1e_c00175{left:406.950000px;}
.xe0_c00175{left:411.270000px;}
.x11_c00175{left:413.850000px;}
.x77_c00175{left:415.590000px;}
.x3e_c00175{left:420.765000px;}
.xf3_c00175{left:423.360000px;}
.x6b_c00175{left:425.085000px;}
.x9a_c00175{left:427.680000px;}
.xee_c00175{left:430.275000px;}
.x2_c00175{left:432.000000px;}
.x93_c00175{left:434.595000px;}
.xcb_c00175{left:438.045000px;}
.x7c_c00175{left:441.510000px;}
.x1f_c00175{left:444.090000px;}
.x61_c00175{left:447.555000px;}
.x29_c00175{left:449.280000px;}
.xe7_c00175{left:454.470000px;}
.xf4_c00175{left:456.195000px;}
.x81_c00175{left:458.790000px;}
.x59_c00175{left:462.240000px;}
.xaf_c00175{left:463.965000px;}
.xd4_c00175{left:467.430000px;}
.x88_c00175{left:471.750000px;}
.x5a_c00175{left:475.200000px;}
.x4c_c00175{left:478.650000px;}
.x12_c00175{left:481.245000px;}
.x3_c00175{left:483.840000px;}
.xb0_c00175{left:485.565000px;}
.xcc_c00175{left:489.885000px;}
.x36_c00175{left:492.480000px;}
.xa7_c00175{left:494.205000px;}
.x78_c00175{left:495.930000px;}
.x37_c00175{left:501.120000px;}
.xea_c00175{left:502.845000px;}
.x2a_c00175{left:504.570000px;}
.x4d_c00175{left:506.310000px;}
.x4_c00175{left:508.890000px;}
.xca_c00175{left:510.630000px;}
.x7d_c00175{left:513.210000px;}
.x20_c00175{left:516.675000px;}
.xe8_c00175{left:518.400000px;}
.xb1_c00175{left:522.720000px;}
.x89_c00175{left:525.315000px;}
.x38_c00175{left:527.040000px;}
.x4e_c00175{left:529.635000px;}
.xef_c00175{left:533.085000px;}
.x45_c00175{left:534.810000px;}
.x9b_c00175{left:536.550000px;}
.x2b_c00175{left:545.190000px;}
.xc2_c00175{left:546.915000px;}
.xc6_c00175{left:553.830000px;}
.x73_c00175{left:555.555000px;}
.x85_c00175{left:558.150000px;}
.x6c_c00175{left:560.730000px;}
.xf5_c00175{left:563.325000px;}
.xaa_c00175{left:565.920000px;}
.x62_c00175{left:569.370000px;}
.xcd_c00175{left:571.110000px;}
.xc7_c00175{left:572.835000px;}
.xf6_c00175{left:574.560000px;}
.x13_c00175{left:578.010000px;}
.x5_c00175{left:580.605000px;}
.xfb_c00175{left:582.330000px;}
.xdc_c00175{left:584.925000px;}
.x21_c00175{left:590.115000px;}
.x14_c00175{left:591.840000px;}
.x3f_c00175{left:593.565000px;}
.x39_c00175{left:597.885000px;}
.x6_c00175{left:600.480000px;}
.x6d_c00175{left:603.075000px;}
.xbb_c00175{left:605.670000px;}
.x54_c00175{left:609.120000px;}
.x9c_c00175{left:611.715000px;}
.x79_c00175{left:613.440000px;}
.x2c_c00175{left:616.035000px;}
.xf7_c00175{left:617.760000px;}
.xec_c00175{left:621.210000px;}
.xd8_c00175{left:623.805000px;}
.x4f_c00175{left:629.850000px;}
.x3a_c00175{left:631.590000px;}
.x15_c00175{left:633.315000px;}
.x7e_c00175{left:637.635000px;}
.x74_c00175{left:639.360000px;}
.x2d_c00175{left:641.085000px;}
.x55_c00175{left:642.810000px;}
.xc8_c00175{left:644.550000px;}
.x7_c00175{left:648.000000px;}
.xd5_c00175{left:649.725000px;}
.x40_c00175{left:653.190000px;}
.xf0_c00175{left:654.915000px;}
.xf8_c00175{left:657.510000px;}
.x8a_c00175{left:659.235000px;}
.x63_c00175{left:660.960000px;}
.x16_c00175{left:662.685000px;}
.x8_c00175{left:667.005000px;}
.x3b_c00175{left:669.600000px;}
.xa1_c00175{left:673.920000px;}
.x6e_c00175{left:676.515000px;}
.x22_c00175{left:679.110000px;}
.xb2_c00175{left:682.560000px;}
.xe3_c00175{left:685.155000px;}
.x41_c00175{left:688.605000px;}
.xce_c00175{left:691.200000px;}
.x2e_c00175{left:693.795000px;}
.x9_c00175{left:698.115000px;}
.x5b_c00175{left:699.840000px;}
.xa_c00175{left:702.435000px;}
.xfe_c00175{left:704.160000px;}
.x23_c00175{left:705.885000px;}
.xb3_c00175{left:707.610000px;}
.x6f_c00175{left:711.075000px;}
.x50_c00175{left:712.800000px;}
.x94_c00175{left:715.395000px;}
.xab_c00175{left:720.570000px;}
.x42_c00175{left:726.630000px;}
.xe1_c00175{left:729.210000px;}
.xe4_c00175{left:732.675000px;}
.xd6_c00175{left:734.400000px;}
.x46_c00175{left:736.125000px;}
.x17_c00175{left:738.720000px;}
.x56_c00175{left:740.445000px;}
.xc9_c00175{left:742.170000px;}
.x7f_c00175{left:744.765000px;}
.x5c_c00175{left:746.490000px;}
.x8b_c00175{left:749.085000px;}
.xb_c00175{left:751.680000px;}
.x86_c00175{left:753.405000px;}
.x70_c00175{left:755.130000px;}
.xbf_c00175{left:756.870000px;}
.x64_c00175{left:759.450000px;}
.x2f_c00175{left:762.045000px;}
.xcf_c00175{left:764.640000px;}
.xc3_c00175{left:766.365000px;}
.x75_c00175{left:769.830000px;}
.x9d_c00175{left:771.555000px;}
.x30_c00175{left:773.280000px;}
.xa8_c00175{left:775.875000px;}
.x7a_c00175{left:777.600000px;}
.x51_c00175{left:779.325000px;}
.xc_c00175{left:781.050000px;}
.xb4_c00175{left:783.645000px;}
.xff_c00175{left:785.370000px;}
.xbc_c00175{left:787.110000px;}
.x47_c00175{left:790.560000px;}
.xd9_c00175{left:792.285000px;}
.x18_c00175{left:794.880000px;}
.x8f_c00175{left:796.605000px;}
.x95_c00175{left:798.330000px;}
.x82_c00175{left:800.925000px;}
.xf9_c00175{left:802.650000px;}
.x65_c00175{left:804.390000px;}
.x24_c00175{left:806.115000px;}
.x48_c00175{left:807.840000px;}
.x31_c00175{left:810.435000px;}
.x57_c00175{left:812.160000px;}
.xe5_c00175{left:814.755000px;}
.x3c_c00175{left:816.480000px;}
.x71_c00175{left:818.205000px;}
.xdd_c00175{left:819.930000px;}
.x66_c00175{left:821.670000px;}
.xd_c00175{left:825.120000px;}
.x43_c00175{left:835.485000px;}
.x19_c00175{left:838.950000px;}
.x25_c00175{left:841.530000px;}
.x8c_c00175{left:845.850000px;}
.xa2_c00175{left:849.315000px;}
.x80_c00175{left:851.040000px;}
.xed_c00175{left:857.955000px;}
.xac_c00175{left:867.450000px;}
.x100_c00175{left:870.045000px;}
.x9e_c00175{left:874.365000px;}
.xc0_c00175{left:877.830000px;}
.x96_c00175{left:879.555000px;}
.xde_c00175{left:882.150000px;}
.xb5_c00175{left:883.875000px;}
.x90_c00175{left:886.470000px;}
.x67_c00175{left:889.050000px;}
.xa3_c00175{left:890.790000px;}
.xda_c00175{left:893.370000px;}
.xc1_c00175{left:897.690000px;}
.xbd_c00175{left:899.430000px;}
.x97_c00175{left:912.390000px;}
.xb9_c00175{left:926.205000px;}
@media print{
.v2_c00175{vertical-align:-12.266667pt;}
.v1_c00175{vertical-align:-3.093333pt;}
.v0_c00175{vertical-align:0.000000pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws1_c00175{word-spacing:-23.942400pt;}
.ws0_c00175{word-spacing:-22.694027pt;}
.ws2_c00175{word-spacing:0.000000pt;}
.fs2_c00175{font-size:3.072000pt;}
.fs4_c00175{font-size:5.333333pt;}
.fs6_c00175{font-size:6.133333pt;}
.fs1_c00175{font-size:9.226667pt;}
.fs3_c00175{font-size:12.266667pt;}
.fs1e_c00175{font-size:15.360000pt;}
.fs13_c00175{font-size:18.453333pt;}
.fs7_c00175{font-size:21.493333pt;}
.fs5_c00175{font-size:24.586667pt;}
.fs0_c00175{font-size:30.720000pt;}
.fs11_c00175{font-size:33.813333pt;}
.fs1f_c00175{font-size:36.853333pt;}
.fsb_c00175{font-size:39.946667pt;}
.fs20_c00175{font-size:42.986667pt;}
.fs18_c00175{font-size:46.080000pt;}
.fs14_c00175{font-size:49.173333pt;}
.fsc_c00175{font-size:52.213333pt;}
.fs15_c00175{font-size:55.306667pt;}
.fs17_c00175{font-size:58.346667pt;}
.fsa_c00175{font-size:61.440000pt;}
.fs8_c00175{font-size:64.533333pt;}
.fs1a_c00175{font-size:67.573333pt;}
.fsf_c00175{font-size:70.666667pt;}
.fs1c_c00175{font-size:73.706667pt;}
.fs16_c00175{font-size:76.800000pt;}
.fs12_c00175{font-size:79.893333pt;}
.fse_c00175{font-size:82.933333pt;}
.fs9_c00175{font-size:86.026667pt;}
.fsd_c00175{font-size:89.066667pt;}
.fs19_c00175{font-size:92.160000pt;}
.fs1b_c00175{font-size:95.253333pt;}
.fs10_c00175{font-size:98.293333pt;}
.fs1d_c00175{font-size:101.386667pt;}
.fs21_c00175{font-size:104.426667pt;}
.fs22_c00175{font-size:122.880000pt;}
.fs23_c00175{font-size:165.866667pt;}
.y0_c00175{bottom:0.000000pt;}
.y151_c00175{bottom:183.546667pt;}
.y157_c00175{bottom:184.320000pt;}
.y154_c00175{bottom:186.626667pt;}
.y153_c00175{bottom:187.386667pt;}
.y155_c00175{bottom:190.466667pt;}
.y150_c00175{bottom:193.533333pt;}
.y152_c00175{bottom:194.306667pt;}
.y156_c00175{bottom:195.840000pt;}
.y158_c00175{bottom:198.146667pt;}
.y14e_c00175{bottom:211.200000pt;}
.y14b_c00175{bottom:212.733333pt;}
.y14a_c00175{bottom:213.506667pt;}
.y14f_c00175{bottom:214.266667pt;}
.y149_c00175{bottom:215.040000pt;}
.y14d_c00175{bottom:216.573333pt;}
.y14c_c00175{bottom:217.346667pt;}
.y141_c00175{bottom:232.706667pt;}
.y146_c00175{bottom:233.466667pt;}
.y142_c00175{bottom:235.773333pt;}
.y147_c00175{bottom:237.306667pt;}
.y144_c00175{bottom:238.853333pt;}
.y143_c00175{bottom:239.613333pt;}
.y145_c00175{bottom:240.386667pt;}
.y148_c00175{bottom:248.826667pt;}
.y140_c00175{bottom:251.906667pt;}
.y13a_c00175{bottom:257.280000pt;}
.y13d_c00175{bottom:258.813333pt;}
.y13e_c00175{bottom:259.586667pt;}
.y13b_c00175{bottom:261.893333pt;}
.y13c_c00175{bottom:262.653333pt;}
.y161_c00175{bottom:264.186667pt;}
.y160_c00175{bottom:267.266667pt;}
.y13f_c00175{bottom:270.333333pt;}
.y134_c00175{bottom:276.480000pt;}
.y137_c00175{bottom:277.253333pt;}
.y135_c00175{bottom:278.786667pt;}
.y138_c00175{bottom:283.386667pt;}
.y136_c00175{bottom:284.933333pt;}
.y139_c00175{bottom:288.000000pt;}
.y131_c00175{bottom:298.746667pt;}
.y12d_c00175{bottom:299.520000pt;}
.y12f_c00175{bottom:301.053333pt;}
.y12e_c00175{bottom:301.826667pt;}
.y130_c00175{bottom:304.893333pt;}
.y133_c00175{bottom:309.506667pt;}
.y132_c00175{bottom:310.266667pt;}
.y127_c00175{bottom:322.560000pt;}
.y12a_c00175{bottom:323.333333pt;}
.y12c_c00175{bottom:324.093333pt;}
.y12b_c00175{bottom:324.866667pt;}
.y128_c00175{bottom:327.173333pt;}
.y126_c00175{bottom:329.466667pt;}
.y129_c00175{bottom:330.240000pt;}
.y125_c00175{bottom:336.386667pt;}
.y15e_c00175{bottom:338.693333pt;}
.y11e_c00175{bottom:342.533333pt;}
.y122_c00175{bottom:344.066667pt;}
.y123_c00175{bottom:344.826667pt;}
.y120_c00175{bottom:345.600000pt;}
.y121_c00175{bottom:349.440000pt;}
.y124_c00175{bottom:350.973333pt;}
.y11f_c00175{bottom:351.746667pt;}
.y118_c00175{bottom:365.573333pt;}
.y11b_c00175{bottom:366.333333pt;}
.y119_c00175{bottom:367.106667pt;}
.y11c_c00175{bottom:367.866667pt;}
.y15f_c00175{bottom:369.413333pt;}
.y11d_c00175{bottom:370.173333pt;}
.y11a_c00175{bottom:374.013333pt;}
.y114_c00175{bottom:388.613333pt;}
.y115_c00175{bottom:389.373333pt;}
.y116_c00175{bottom:390.146667pt;}
.y117_c00175{bottom:393.213333pt;}
.y112_c00175{bottom:395.520000pt;}
.y113_c00175{bottom:396.293333pt;}
.y111_c00175{bottom:403.200000pt;}
.y110_c00175{bottom:404.733333pt;}
.y10a_c00175{bottom:410.880000pt;}
.y10b_c00175{bottom:411.653333pt;}
.y10d_c00175{bottom:412.413333pt;}
.y10e_c00175{bottom:414.720000pt;}
.y10c_c00175{bottom:417.786667pt;}
.y10f_c00175{bottom:420.093333pt;}
.y103_c00175{bottom:431.613333pt;}
.y101_c00175{bottom:432.386667pt;}
.y106_c00175{bottom:433.146667pt;}
.y104_c00175{bottom:433.920000pt;}
.y108_c00175{bottom:434.693333pt;}
.y109_c00175{bottom:437.760000pt;}
.y102_c00175{bottom:439.293333pt;}
.y107_c00175{bottom:440.066667pt;}
.y105_c00175{bottom:441.600000pt;}
.yf9_c00175{bottom:454.653333pt;}
.yfa_c00175{bottom:455.426667pt;}
.yfe_c00175{bottom:456.186667pt;}
.yfb_c00175{bottom:456.960000pt;}
.y100_c00175{bottom:457.733333pt;}
.yfc_c00175{bottom:459.266667pt;}
.yfd_c00175{bottom:463.106667pt;}
.yff_c00175{bottom:473.093333pt;}
.yf4_c00175{bottom:477.693333pt;}
.yf8_c00175{bottom:479.226667pt;}
.yf5_c00175{bottom:480.773333pt;}
.yf7_c00175{bottom:483.066667pt;}
.yf3_c00175{bottom:484.613333pt;}
.yf6_c00175{bottom:486.146667pt;}
.yf0_c00175{bottom:499.973333pt;}
.yf2_c00175{bottom:501.506667pt;}
.yf1_c00175{bottom:506.106667pt;}
.yef_c00175{bottom:521.466667pt;}
.yeb_c00175{bottom:522.240000pt;}
.yec_c00175{bottom:523.013333pt;}
.yed_c00175{bottom:523.773333pt;}
.yea_c00175{bottom:526.853333pt;}
.ye9_c00175{bottom:527.613333pt;}
.ye7_c00175{bottom:528.386667pt;}
.ye8_c00175{bottom:529.146667pt;}
.yee_c00175{bottom:529.920000pt;}
.ye2_c00175{bottom:544.506667pt;}
.ye3_c00175{bottom:545.280000pt;}
.ye5_c00175{bottom:546.053333pt;}
.ye4_c00175{bottom:550.653333pt;}
.ye6_c00175{bottom:552.186667pt;}
.ydd_c00175{bottom:566.013333pt;}
.yde_c00175{bottom:566.786667pt;}
.ydf_c00175{bottom:567.546667pt;}
.ye0_c00175{bottom:568.320000pt;}
.ye1_c00175{bottom:573.693333pt;}
.yd8_c00175{bottom:589.053333pt;}
.yd9_c00175{bottom:589.826667pt;}
.yd7_c00175{bottom:592.893333pt;}
.ydc_c00175{bottom:593.666667pt;}
.yd6_c00175{bottom:595.200000pt;}
.ydb_c00175{bottom:595.973333pt;}
.yda_c00175{bottom:596.733333pt;}
.yd1_c00175{bottom:609.786667pt;}
.yd0_c00175{bottom:610.560000pt;}
.yce_c00175{bottom:611.333333pt;}
.yd3_c00175{bottom:612.093333pt;}
.yd5_c00175{bottom:612.866667pt;}
.ycf_c00175{bottom:615.933333pt;}
.yd2_c00175{bottom:616.706667pt;}
.yd4_c00175{bottom:617.466667pt;}
.yc5_c00175{bottom:631.293333pt;}
.yc4_c00175{bottom:632.066667pt;}
.yc8_c00175{bottom:632.826667pt;}
.yca_c00175{bottom:633.600000pt;}
.yc6_c00175{bottom:635.133333pt;}
.ycb_c00175{bottom:637.440000pt;}
.yc7_c00175{bottom:638.213333pt;}
.yc9_c00175{bottom:639.746667pt;}
.ycc_c00175{bottom:640.506667pt;}
.ycd_c00175{bottom:644.346667pt;}
.ybb_c00175{bottom:652.800000pt;}
.ybc_c00175{bottom:653.573333pt;}
.ybe_c00175{bottom:654.333333pt;}
.yc3_c00175{bottom:655.106667pt;}
.yc0_c00175{bottom:656.640000pt;}
.yc2_c00175{bottom:657.413333pt;}
.yc1_c00175{bottom:658.173333pt;}
.ybd_c00175{bottom:659.706667pt;}
.ybf_c00175{bottom:661.253333pt;}
.yb6_c00175{bottom:675.066667pt;}
.yb8_c00175{bottom:675.840000pt;}
.yba_c00175{bottom:676.613333pt;}
.yb4_c00175{bottom:681.213333pt;}
.yb5_c00175{bottom:681.986667pt;}
.yb7_c00175{bottom:682.746667pt;}
.yb9_c00175{bottom:683.520000pt;}
.yab_c00175{bottom:698.106667pt;}
.yb2_c00175{bottom:698.880000pt;}
.yb0_c00175{bottom:699.653333pt;}
.yaf_c00175{bottom:701.186667pt;}
.yae_c00175{bottom:702.720000pt;}
.yad_c00175{bottom:703.493333pt;}
.yac_c00175{bottom:704.253333pt;}
.yb1_c00175{bottom:705.026667pt;}
.yaa_c00175{bottom:708.866667pt;}
.yb3_c00175{bottom:717.306667pt;}
.ya6_c00175{bottom:718.853333pt;}
.ya8_c00175{bottom:719.613333pt;}
.ya7_c00175{bottom:720.386667pt;}
.ya5_c00175{bottom:724.986667pt;}
.ya9_c00175{bottom:728.826667pt;}
.y15d_c00175{bottom:734.213333pt;}
.ya0_c00175{bottom:740.346667pt;}
.ya1_c00175{bottom:741.120000pt;}
.ya2_c00175{bottom:741.893333pt;}
.ya4_c00175{bottom:746.493333pt;}
.ya3_c00175{bottom:747.266667pt;}
.y15c_c00175{bottom:761.093333pt;}
.y9b_c00175{bottom:762.626667pt;}
.y9e_c00175{bottom:763.386667pt;}
.y9d_c00175{bottom:764.160000pt;}
.y9a_c00175{bottom:764.933333pt;}
.y9c_c00175{bottom:769.533333pt;}
.y9f_c00175{bottom:771.840000pt;}
.y97_c00175{bottom:785.666667pt;}
.y93_c00175{bottom:786.426667pt;}
.y96_c00175{bottom:787.200000pt;}
.y94_c00175{bottom:788.733333pt;}
.y99_c00175{bottom:790.266667pt;}
.y95_c00175{bottom:791.040000pt;}
.y92_c00175{bottom:791.813333pt;}
.y98_c00175{bottom:792.573333pt;}
.y8e_c00175{bottom:807.933333pt;}
.y90_c00175{bottom:808.706667pt;}
.y91_c00175{bottom:811.773333pt;}
.y8f_c00175{bottom:812.546667pt;}
.y8d_c00175{bottom:814.853333pt;}
.y8b_c00175{bottom:830.213333pt;}
.y8c_c00175{bottom:832.506667pt;}
.y8a_c00175{bottom:836.346667pt;}
.y89_c00175{bottom:837.120000pt;}
.y1_c00175{bottom:839.426667pt;}
.y88_c00175{bottom:844.026667pt;}
.y83_c00175{bottom:852.480000pt;}
.y85_c00175{bottom:853.253333pt;}
.y86_c00175{bottom:854.013333pt;}
.y82_c00175{bottom:854.786667pt;}
.y81_c00175{bottom:857.853333pt;}
.y84_c00175{bottom:858.626667pt;}
.y87_c00175{bottom:860.160000pt;}
.y7c_c00175{bottom:873.986667pt;}
.y7b_c00175{bottom:874.746667pt;}
.y7e_c00175{bottom:876.293333pt;}
.y80_c00175{bottom:877.053333pt;}
.y7d_c00175{bottom:880.893333pt;}
.y7f_c00175{bottom:881.666667pt;}
.y76_c00175{bottom:897.026667pt;}
.y77_c00175{bottom:899.333333pt;}
.y79_c00175{bottom:900.866667pt;}
.y78_c00175{bottom:903.173333pt;}
.y7a_c00175{bottom:904.706667pt;}
.y75_c00175{bottom:920.066667pt;}
.y73_c00175{bottom:921.600000pt;}
.y72_c00175{bottom:925.440000pt;}
.y74_c00175{bottom:926.213333pt;}
.y71_c00175{bottom:926.973333pt;}
.y6c_c00175{bottom:940.800000pt;}
.y6d_c00175{bottom:942.333333pt;}
.y70_c00175{bottom:943.106667pt;}
.y6a_c00175{bottom:946.173333pt;}
.y6b_c00175{bottom:947.706667pt;}
.y6e_c00175{bottom:948.480000pt;}
.y6f_c00175{bottom:949.253333pt;}
.y64_c00175{bottom:963.066667pt;}
.y66_c00175{bottom:963.840000pt;}
.y68_c00175{bottom:964.613333pt;}
.y65_c00175{bottom:969.986667pt;}
.y67_c00175{bottom:970.746667pt;}
.y69_c00175{bottom:972.293333pt;}
.y5e_c00175{bottom:984.573333pt;}
.y5c_c00175{bottom:986.106667pt;}
.y5a_c00175{bottom:986.880000pt;}
.y62_c00175{bottom:988.413333pt;}
.y60_c00175{bottom:989.186667pt;}
.y5d_c00175{bottom:990.720000pt;}
.y5b_c00175{bottom:991.493333pt;}
.y61_c00175{bottom:993.026667pt;}
.y5f_c00175{bottom:993.786667pt;}
.y63_c00175{bottom:1006.853333pt;}
.y54_c00175{bottom:1007.613333pt;}
.y56_c00175{bottom:1008.386667pt;}
.y57_c00175{bottom:1009.146667pt;}
.y58_c00175{bottom:1010.693333pt;}
.y53_c00175{bottom:1011.453333pt;}
.y52_c00175{bottom:1014.533333pt;}
.y55_c00175{bottom:1015.293333pt;}
.y59_c00175{bottom:1016.826667pt;}
.y49_c00175{bottom:1029.120000pt;}
.y4a_c00175{bottom:1029.893333pt;}
.y4c_c00175{bottom:1030.653333pt;}
.y4e_c00175{bottom:1031.426667pt;}
.y4d_c00175{bottom:1032.186667pt;}
.y50_c00175{bottom:1032.960000pt;}
.y4b_c00175{bottom:1036.800000pt;}
.y51_c00175{bottom:1038.333333pt;}
.y4f_c00175{bottom:1039.106667pt;}
.y15b_c00175{bottom:1049.093333pt;}
.y41_c00175{bottom:1051.386667pt;}
.y42_c00175{bottom:1052.160000pt;}
.y46_c00175{bottom:1052.933333pt;}
.y45_c00175{bottom:1053.693333pt;}
.y43_c00175{bottom:1054.466667pt;}
.y44_c00175{bottom:1056.000000pt;}
.y47_c00175{bottom:1057.533333pt;}
.y48_c00175{bottom:1060.613333pt;}
.y162_c00175{bottom:1071.360000pt;}
.y38_c00175{bottom:1072.893333pt;}
.y3a_c00175{bottom:1073.666667pt;}
.y39_c00175{bottom:1074.426667pt;}
.y3e_c00175{bottom:1075.200000pt;}
.y3d_c00175{bottom:1075.973333pt;}
.y3f_c00175{bottom:1076.733333pt;}
.y3b_c00175{bottom:1078.266667pt;}
.y40_c00175{bottom:1080.573333pt;}
.y3c_c00175{bottom:1081.346667pt;}
.y33_c00175{bottom:1095.173333pt;}
.y37_c00175{bottom:1095.933333pt;}
.y32_c00175{bottom:1102.080000pt;}
.y34_c00175{bottom:1102.853333pt;}
.y35_c00175{bottom:1103.613333pt;}
.y36_c00175{bottom:1104.386667pt;}
.y2c_c00175{bottom:1117.440000pt;}
.y2a_c00175{bottom:1118.213333pt;}
.y2d_c00175{bottom:1119.746667pt;}
.y31_c00175{bottom:1124.346667pt;}
.y30_c00175{bottom:1125.120000pt;}
.y2b_c00175{bottom:1125.893333pt;}
.y2e_c00175{bottom:1126.653333pt;}
.y2f_c00175{bottom:1127.426667pt;}
.y20_c00175{bottom:1138.946667pt;}
.y23_c00175{bottom:1140.480000pt;}
.y25_c00175{bottom:1141.253333pt;}
.y27_c00175{bottom:1142.013333pt;}
.y29_c00175{bottom:1142.786667pt;}
.y28_c00175{bottom:1144.320000pt;}
.y21_c00175{bottom:1145.853333pt;}
.y22_c00175{bottom:1146.626667pt;}
.y24_c00175{bottom:1148.160000pt;}
.y26_c00175{bottom:1148.933333pt;}
.y15a_c00175{bottom:1157.373333pt;}
.y17_c00175{bottom:1161.213333pt;}
.y18_c00175{bottom:1161.986667pt;}
.y1b_c00175{bottom:1162.746667pt;}
.y1a_c00175{bottom:1163.520000pt;}
.y1c_c00175{bottom:1164.293333pt;}
.y1d_c00175{bottom:1168.133333pt;}
.y19_c00175{bottom:1168.893333pt;}
.y1f_c00175{bottom:1170.426667pt;}
.y1e_c00175{bottom:1171.200000pt;}
.y159_c00175{bottom:1172.733333pt;}
.ye_c00175{bottom:1182.720000pt;}
.y10_c00175{bottom:1183.493333pt;}
.y13_c00175{bottom:1185.026667pt;}
.y12_c00175{bottom:1185.786667pt;}
.y14_c00175{bottom:1188.093333pt;}
.y16_c00175{bottom:1188.866667pt;}
.yf_c00175{bottom:1189.626667pt;}
.y11_c00175{bottom:1190.400000pt;}
.y15_c00175{bottom:1192.706667pt;}
.y7_c00175{bottom:1204.986667pt;}
.y8_c00175{bottom:1206.533333pt;}
.ya_c00175{bottom:1207.293333pt;}
.yc_c00175{bottom:1208.826667pt;}
.yd_c00175{bottom:1212.666667pt;}
.y9_c00175{bottom:1213.440000pt;}
.yb_c00175{bottom:1214.973333pt;}
.y4_c00175{bottom:1231.106667pt;}
.y2_c00175{bottom:1231.866667pt;}
.y3_c00175{bottom:1232.640000pt;}
.y6_c00175{bottom:1233.413333pt;}
.y5_c00175{bottom:1238.013333pt;}
.h4_c00175{height:2.764500pt;}
.h6_c00175{height:4.799479pt;}
.h8_c00175{height:5.519401pt;}
.h3_c00175{height:8.303099pt;}
.h5_c00175{height:11.038802pt;}
.h20_c00175{height:13.822500pt;}
.h15_c00175{height:16.606198pt;}
.h9_c00175{height:19.341901pt;}
.h7_c00175{height:22.125599pt;}
.h2_c00175{height:27.645000pt;}
.h13_c00175{height:30.428698pt;}
.h21_c00175{height:33.164401pt;}
.hd_c00175{height:35.948099pt;}
.h22_c00175{height:38.683802pt;}
.h1a_c00175{height:41.467500pt;}
.h16_c00175{height:44.251198pt;}
.he_c00175{height:46.986901pt;}
.h17_c00175{height:49.770599pt;}
.h19_c00175{height:52.506302pt;}
.hc_c00175{height:55.290000pt;}
.ha_c00175{height:58.073698pt;}
.h1c_c00175{height:60.809401pt;}
.h11_c00175{height:63.593099pt;}
.h1e_c00175{height:66.328802pt;}
.h18_c00175{height:69.112500pt;}
.h14_c00175{height:71.896198pt;}
.h10_c00175{height:74.631901pt;}
.hb_c00175{height:77.415599pt;}
.hf_c00175{height:80.151302pt;}
.h1b_c00175{height:82.935000pt;}
.h1d_c00175{height:85.718698pt;}
.h12_c00175{height:88.454401pt;}
.h1f_c00175{height:91.238099pt;}
.h23_c00175{height:93.973802pt;}
.h24_c00175{height:110.580000pt;}
.h25_c00175{height:149.263802pt;}
.h1_c00175{height:1336.000000pt;}
.h0_c00175{height:1336.320000pt;}
.w0_c00175{width:969.213333pt;}
.w1_c00175{width:969.333333pt;}
.x0_c00175{left:0.000000pt;}
.x1_c00175{left:15.360000pt;}
.x103_c00175{left:54.533333pt;}
.x104_c00175{left:90.626667pt;}
.x105_c00175{left:94.466667pt;}
.x106_c00175{left:101.373333pt;}
.x107_c00175{left:109.826667pt;}
.x108_c00175{left:115.200000pt;}
.x101_c00175{left:139.013333pt;}
.x102_c00175{left:146.693333pt;}
.x109_c00175{left:178.173333pt;}
.xa4_c00175{left:188.160000pt;}
.x8d_c00175{left:190.466667pt;}
.x7b_c00175{left:195.840000pt;}
.x9f_c00175{left:197.373333pt;}
.x26_c00175{left:200.453333pt;}
.x1a_c00175{left:204.293333pt;}
.xe_c00175{left:207.360000pt;}
.x98_c00175{left:208.893333pt;}
.xc4_c00175{left:211.973333pt;}
.xd0_c00175{left:213.506667pt;}
.xdf_c00175{left:215.813333pt;}
.xf2_c00175{left:217.346667pt;}
.xb6_c00175{left:228.093333pt;}
.x32_c00175{left:230.400000pt;}
.x58_c00175{left:232.706667pt;}
.xf_c00175{left:234.240000pt;}
.xbe_c00175{left:237.306667pt;}
.x99_c00175{left:239.613333pt;}
.x1b_c00175{left:241.146667pt;}
.x8e_c00175{left:243.453333pt;}
.x49_c00175{left:244.986667pt;}
.xe9_c00175{left:247.293333pt;}
.x87_c00175{left:249.600000pt;}
.xb7_c00175{left:251.133333pt;}
.xdb_c00175{left:253.440000pt;}
.x27_c00175{left:254.973333pt;}
.x44_c00175{left:257.280000pt;}
.xa5_c00175{left:258.813333pt;}
.x5d_c00175{left:261.120000pt;}
.x91_c00175{left:262.653333pt;}
.x1c_c00175{left:264.186667pt;}
.x68_c00175{left:265.733333pt;}
.xe2_c00175{left:268.800000pt;}
.x33_c00175{left:271.106667pt;}
.x83_c00175{left:272.640000pt;}
.xb8_c00175{left:276.480000pt;}
.xd1_c00175{left:278.013333pt;}
.xe6_c00175{left:279.546667pt;}
.xa0_c00175{left:281.853333pt;}
.x4a_c00175{left:284.160000pt;}
.xad_c00175{left:286.466667pt;}
.x3d_c00175{left:288.773333pt;}
.x52_c00175{left:293.373333pt;}
.xa9_c00175{left:294.906667pt;}
.x34_c00175{left:296.453333pt;}
.xc5_c00175{left:297.986667pt;}
.x1d_c00175{left:303.360000pt;}
.x69_c00175{left:305.666667pt;}
.x5e_c00175{left:307.200000pt;}
.x76_c00175{left:308.733333pt;}
.x10_c00175{left:311.040000pt;}
.xd7_c00175{left:314.880000pt;}
.xfc_c00175{left:316.413333pt;}
.x4b_c00175{left:317.946667pt;}
.x84_c00175{left:320.253333pt;}
.x35_c00175{left:322.560000pt;}
.xae_c00175{left:324.093333pt;}
.x28_c00175{left:327.173333pt;}
.x5f_c00175{left:328.706667pt;}
.x6a_c00175{left:331.013333pt;}
.x92_c00175{left:332.546667pt;}
.x72_c00175{left:334.080000pt;}
.xba_c00175{left:337.920000pt;}
.xa6_c00175{left:341.760000pt;}
.xd2_c00175{left:344.066667pt;}
.xf1_c00175{left:346.373333pt;}
.x53_c00175{left:349.440000pt;}
.xd3_c00175{left:350.973333pt;}
.xeb_c00175{left:352.506667pt;}
.x60_c00175{left:354.813333pt;}
.xfa_c00175{left:358.653333pt;}
.xfd_c00175{left:360.186667pt;}
.x1e_c00175{left:361.733333pt;}
.xe0_c00175{left:365.573333pt;}
.x11_c00175{left:367.866667pt;}
.x77_c00175{left:369.413333pt;}
.x3e_c00175{left:374.013333pt;}
.xf3_c00175{left:376.320000pt;}
.x6b_c00175{left:377.853333pt;}
.x9a_c00175{left:380.160000pt;}
.xee_c00175{left:382.466667pt;}
.x2_c00175{left:384.000000pt;}
.x93_c00175{left:386.306667pt;}
.xcb_c00175{left:389.373333pt;}
.x7c_c00175{left:392.453333pt;}
.x1f_c00175{left:394.746667pt;}
.x61_c00175{left:397.826667pt;}
.x29_c00175{left:399.360000pt;}
.xe7_c00175{left:403.973333pt;}
.xf4_c00175{left:405.506667pt;}
.x81_c00175{left:407.813333pt;}
.x59_c00175{left:410.880000pt;}
.xaf_c00175{left:412.413333pt;}
.xd4_c00175{left:415.493333pt;}
.x88_c00175{left:419.333333pt;}
.x5a_c00175{left:422.400000pt;}
.x4c_c00175{left:425.466667pt;}
.x12_c00175{left:427.773333pt;}
.x3_c00175{left:430.080000pt;}
.xb0_c00175{left:431.613333pt;}
.xcc_c00175{left:435.453333pt;}
.x36_c00175{left:437.760000pt;}
.xa7_c00175{left:439.293333pt;}
.x78_c00175{left:440.826667pt;}
.x37_c00175{left:445.440000pt;}
.xea_c00175{left:446.973333pt;}
.x2a_c00175{left:448.506667pt;}
.x4d_c00175{left:450.053333pt;}
.x4_c00175{left:452.346667pt;}
.xca_c00175{left:453.893333pt;}
.x7d_c00175{left:456.186667pt;}
.x20_c00175{left:459.266667pt;}
.xe8_c00175{left:460.800000pt;}
.xb1_c00175{left:464.640000pt;}
.x89_c00175{left:466.946667pt;}
.x38_c00175{left:468.480000pt;}
.x4e_c00175{left:470.786667pt;}
.xef_c00175{left:473.853333pt;}
.x45_c00175{left:475.386667pt;}
.x9b_c00175{left:476.933333pt;}
.x2b_c00175{left:484.613333pt;}
.xc2_c00175{left:486.146667pt;}
.xc6_c00175{left:492.293333pt;}
.x73_c00175{left:493.826667pt;}
.x85_c00175{left:496.133333pt;}
.x6c_c00175{left:498.426667pt;}
.xf5_c00175{left:500.733333pt;}
.xaa_c00175{left:503.040000pt;}
.x62_c00175{left:506.106667pt;}
.xcd_c00175{left:507.653333pt;}
.xc7_c00175{left:509.186667pt;}
.xf6_c00175{left:510.720000pt;}
.x13_c00175{left:513.786667pt;}
.x5_c00175{left:516.093333pt;}
.xfb_c00175{left:517.626667pt;}
.xdc_c00175{left:519.933333pt;}
.x21_c00175{left:524.546667pt;}
.x14_c00175{left:526.080000pt;}
.x3f_c00175{left:527.613333pt;}
.x39_c00175{left:531.453333pt;}
.x6_c00175{left:533.760000pt;}
.x6d_c00175{left:536.066667pt;}
.xbb_c00175{left:538.373333pt;}
.x54_c00175{left:541.440000pt;}
.x9c_c00175{left:543.746667pt;}
.x79_c00175{left:545.280000pt;}
.x2c_c00175{left:547.586667pt;}
.xf7_c00175{left:549.120000pt;}
.xec_c00175{left:552.186667pt;}
.xd8_c00175{left:554.493333pt;}
.x4f_c00175{left:559.866667pt;}
.x3a_c00175{left:561.413333pt;}
.x15_c00175{left:562.946667pt;}
.x7e_c00175{left:566.786667pt;}
.x74_c00175{left:568.320000pt;}
.x2d_c00175{left:569.853333pt;}
.x55_c00175{left:571.386667pt;}
.xc8_c00175{left:572.933333pt;}
.x7_c00175{left:576.000000pt;}
.xd5_c00175{left:577.533333pt;}
.x40_c00175{left:580.613333pt;}
.xf0_c00175{left:582.146667pt;}
.xf8_c00175{left:584.453333pt;}
.x8a_c00175{left:585.986667pt;}
.x63_c00175{left:587.520000pt;}
.x16_c00175{left:589.053333pt;}
.x8_c00175{left:592.893333pt;}
.x3b_c00175{left:595.200000pt;}
.xa1_c00175{left:599.040000pt;}
.x6e_c00175{left:601.346667pt;}
.x22_c00175{left:603.653333pt;}
.xb2_c00175{left:606.720000pt;}
.xe3_c00175{left:609.026667pt;}
.x41_c00175{left:612.093333pt;}
.xce_c00175{left:614.400000pt;}
.x2e_c00175{left:616.706667pt;}
.x9_c00175{left:620.546667pt;}
.x5b_c00175{left:622.080000pt;}
.xa_c00175{left:624.386667pt;}
.xfe_c00175{left:625.920000pt;}
.x23_c00175{left:627.453333pt;}
.xb3_c00175{left:628.986667pt;}
.x6f_c00175{left:632.066667pt;}
.x50_c00175{left:633.600000pt;}
.x94_c00175{left:635.906667pt;}
.xab_c00175{left:640.506667pt;}
.x42_c00175{left:645.893333pt;}
.xe1_c00175{left:648.186667pt;}
.xe4_c00175{left:651.266667pt;}
.xd6_c00175{left:652.800000pt;}
.x46_c00175{left:654.333333pt;}
.x17_c00175{left:656.640000pt;}
.x56_c00175{left:658.173333pt;}
.xc9_c00175{left:659.706667pt;}
.x7f_c00175{left:662.013333pt;}
.x5c_c00175{left:663.546667pt;}
.x8b_c00175{left:665.853333pt;}
.xb_c00175{left:668.160000pt;}
.x86_c00175{left:669.693333pt;}
.x70_c00175{left:671.226667pt;}
.xbf_c00175{left:672.773333pt;}
.x64_c00175{left:675.066667pt;}
.x2f_c00175{left:677.373333pt;}
.xcf_c00175{left:679.680000pt;}
.xc3_c00175{left:681.213333pt;}
.x75_c00175{left:684.293333pt;}
.x9d_c00175{left:685.826667pt;}
.x30_c00175{left:687.360000pt;}
.xa8_c00175{left:689.666667pt;}
.x7a_c00175{left:691.200000pt;}
.x51_c00175{left:692.733333pt;}
.xc_c00175{left:694.266667pt;}
.xb4_c00175{left:696.573333pt;}
.xff_c00175{left:698.106667pt;}
.xbc_c00175{left:699.653333pt;}
.x47_c00175{left:702.720000pt;}
.xd9_c00175{left:704.253333pt;}
.x18_c00175{left:706.560000pt;}
.x8f_c00175{left:708.093333pt;}
.x95_c00175{left:709.626667pt;}
.x82_c00175{left:711.933333pt;}
.xf9_c00175{left:713.466667pt;}
.x65_c00175{left:715.013333pt;}
.x24_c00175{left:716.546667pt;}
.x48_c00175{left:718.080000pt;}
.x31_c00175{left:720.386667pt;}
.x57_c00175{left:721.920000pt;}
.xe5_c00175{left:724.226667pt;}
.x3c_c00175{left:725.760000pt;}
.x71_c00175{left:727.293333pt;}
.xdd_c00175{left:728.826667pt;}
.x66_c00175{left:730.373333pt;}
.xd_c00175{left:733.440000pt;}
.x43_c00175{left:742.653333pt;}
.x19_c00175{left:745.733333pt;}
.x25_c00175{left:748.026667pt;}
.x8c_c00175{left:751.866667pt;}
.xa2_c00175{left:754.946667pt;}
.x80_c00175{left:756.480000pt;}
.xed_c00175{left:762.626667pt;}
.xac_c00175{left:771.066667pt;}
.x100_c00175{left:773.373333pt;}
.x9e_c00175{left:777.213333pt;}
.xc0_c00175{left:780.293333pt;}
.x96_c00175{left:781.826667pt;}
.xde_c00175{left:784.133333pt;}
.xb5_c00175{left:785.666667pt;}
.x90_c00175{left:787.973333pt;}
.x67_c00175{left:790.266667pt;}
.xa3_c00175{left:791.813333pt;}
.xda_c00175{left:794.106667pt;}
.xc1_c00175{left:797.946667pt;}
.xbd_c00175{left:799.493333pt;}
.x97_c00175{left:811.013333pt;}
.xb9_c00175{left:823.293333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4befdbdbc2a2e9cc0ea0e86a.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.109863;font-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_c00176{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);}
.m12a_c00176{transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);}
.m28_c00176{transform:matrix(0.099200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099200,0.000000,0.000000,0.250000,0,0);}
.me5_c00176{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);}
.m12c_c00176{transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);}
.m22_c00176{transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110000,0.000000,0.000000,0.250000,0,0);}
.m126_c00176{transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);}
.ma5_c00176{transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);}
.m30_c00176{transform:matrix(0.133200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133200,0.000000,0.000000,0.250000,0,0);}
.m129_c00176{transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);}
.ma0_c00176{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m55_c00176{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);}
.m17_c00176{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.m11_c00176{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);}
.me1_c00176{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.mef_c00176{transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);}
.m7_c00176{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mad_c00176{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);}
.mb6_c00176{transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);}
.m93_c00176{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.ma8_c00176{transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);}
.me8_c00176{transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);}
.m9f_c00176{transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);}
.m96_c00176{transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);}
.m4e_c00176{transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);}
.m12b_c00176{transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);}
.mda_c00176{transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);}
.m88_c00176{transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);}
.m10c_c00176{transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);}
.m127_c00176{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.m99_c00176{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);}
.m117_c00176{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m102_c00176{transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);}
.m107_c00176{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m40_c00176{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);}
.m115_c00176{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.m8d_c00176{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m52_c00176{transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);}
.m24_c00176{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.m38_c00176{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m8f_c00176{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.mfa_c00176{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.m4f_c00176{transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);}
.m110_c00176{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.md8_c00176{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);}
.m79_c00176{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m9a_c00176{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.mec_c00176{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m108_c00176{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.m11d_c00176{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00176{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);}
.mf9_c00176{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.m5a_c00176{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00176{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.mff_c00176{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.me2_c00176{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);}
.m114_c00176{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m10d_c00176{transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);}
.m123_c00176{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.ma2_c00176{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m90_c00176{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);}
.m11f_c00176{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m7f_c00176{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.mf0_c00176{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.m112_c00176{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);}
.m83_c00176{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m91_c00176{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m4c_c00176{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.mc_c00176{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.m122_c00176{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.mbd_c00176{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.mcb_c00176{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);}
.mc9_c00176{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);}
.mc1_c00176{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.m3d_c00176{transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);}
.m7b_c00176{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);}
.mb_c00176{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.m118_c00176{transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);}
.mdc_c00176{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.mf8_c00176{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.m5f_c00176{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00176{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);}
.mb8_c00176{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.m80_c00176{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);}
.mf2_c00176{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.mf5_c00176{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.m6e_c00176{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m98_c00176{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m81_c00176{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m104_c00176{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.m9e_c00176{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.m31_c00176{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);}
.m124_c00176{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mdd_c00176{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);}
.m15_c00176{transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);}
.me6_c00176{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);}
.m71_c00176{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);}
.mce_c00176{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);}
.m5c_c00176{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00176{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);}
.m103_c00176{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.m8b_c00176{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);}
.m2d_c00176{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);}
.m2b_c00176{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m10e_c00176{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.m21_c00176{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m7e_c00176{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);}
.mbe_c00176{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);}
.m12d_c00176{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.m5e_c00176{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);}
.md6_c00176{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.m64_c00176{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.mdb_c00176{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);}
.mf_c00176{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);}
.m92_c00176{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.mab_c00176{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.mea_c00176{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);}
.m111_c00176{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);}
.mf4_c00176{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.med_c00176{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);}
.md9_c00176{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);}
.m73_c00176{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m10b_c00176{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);}
.m7d_c00176{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);}
.m84_c00176{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.mc7_c00176{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.m89_c00176{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m5d_c00176{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.md2_c00176{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);}
.mc3_c00176{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m75_c00176{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);}
.m33_c00176{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.m18_c00176{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m8a_c00176{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.mbf_c00176{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);}
.mfe_c00176{transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);}
.m3e_c00176{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);}
.m113_c00176{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m9b_c00176{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m116_c00176{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.m65_c00176{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);}
.mdf_c00176{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.m3a_c00176{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);}
.mf7_c00176{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m2a_c00176{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);}
.mb2_c00176{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m43_c00176{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);}
.mba_c00176{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);}
.mee_c00176{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00176{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);}
.m2c_c00176{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.md1_c00176{transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);}
.m100_c00176{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);}
.mb9_c00176{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);}
.m25_c00176{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);}
.m32_c00176{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);}
.m106_c00176{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);}
.mca_c00176{transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);}
.mb5_c00176{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);}
.m27_c00176{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.mcf_c00176{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m74_c00176{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);}
.mc8_c00176{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);}
.mde_c00176{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);}
.mc5_c00176{transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);}
.mfc_c00176{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m61_c00176{transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);}
.m67_c00176{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);}
.mb0_c00176{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.md0_c00176{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m4b_c00176{transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);}
.m58_c00176{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.m6b_c00176{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);}
.m9d_c00176{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);}
.m1f_c00176{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_c00176{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.md7_c00176{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.me7_c00176{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m3c_c00176{transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);}
.m9c_c00176{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);}
.m49_c00176{transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);}
.m101_c00176{transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);}
.ma9_c00176{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m47_c00176{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);}
.m11e_c00176{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);}
.m76_c00176{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.mae_c00176{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);}
.ma3_c00176{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);}
.mb3_c00176{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);}
.m11a_c00176{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);}
.md_c00176{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m120_c00176{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m8e_c00176{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);}
.m14_c00176{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.maf_c00176{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.mc6_c00176{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.mc4_c00176{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.me3_c00176{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);}
.m95_c00176{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.m63_c00176{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);}
.me0_c00176{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);}
.mf3_c00176{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);}
.mcd_c00176{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);}
.mf6_c00176{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);}
.mc0_c00176{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);}
.m26_c00176{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);}
.m2e_c00176{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);}
.m36_c00176{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m29_c00176{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);}
.m109_c00176{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);}
.m121_c00176{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);}
.m70_c00176{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);}
.mbc_c00176{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m125_c00176{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);}
.m85_c00176{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);}
.m45_c00176{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.meb_c00176{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);}
.maa_c00176{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);}
.mf1_c00176{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m97_c00176{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mac_c00176{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.ma6_c00176{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m94_c00176{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);}
.m3f_c00176{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma_c00176{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);}
.m41_c00176{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);}
.m10a_c00176{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);}
.m12_c00176{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);}
.m1b_c00176{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m87_c00176{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c00176{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c00176{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);}
.m7c_c00176{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00176{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);}
.m1d_c00176{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);}
.m57_c00176{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00176{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);}
.m5_c00176{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m50_c00176{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m39_c00176{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);}
.m1c_c00176{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m35_c00176{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);}
.m1e_c00176{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);}
.m6a_c00176{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m56_c00176{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md3_c00176{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);}
.m44_c00176{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m23_c00176{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m77_c00176{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m78_c00176{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m68_c00176{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md4_c00176{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m119_c00176{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m34_c00176{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);}
.m19_c00176{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c00176{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12e_c00176{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00176{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m54_c00176{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);}
.m4d_c00176{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);}
.md5_c00176{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00176{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00176{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);}
.m3b_c00176{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4_c00176{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00176{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);}
.m82_c00176{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m72_c00176{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.me4_c00176{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m10_c00176{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m59_c00176{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m105_c00176{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m60_c00176{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m42_c00176{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);}
.mbb_c00176{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00176{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m9_c00176{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m20_c00176{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m37_c00176{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00176{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.me9_c00176{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00176{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);}
.m6_c00176{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3_c00176{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00176{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00176{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00176{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);}
.mc2_c00176{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);}
.mfd_c00176{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);}
.m130_c00176{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m48_c00176{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m53_c00176{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);}
.m2_c00176{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m86_c00176{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00176{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);}
.m51_c00176{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00176{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mb4_c00176{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m1_c00176{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m62_c00176{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m0_c00176{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m131_c00176{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);}
.m69_c00176{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m8_c00176{transform:matrix(1.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.655000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00176{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m46_c00176{transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.592500,0.000000,0.000000,0.250000,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:-24.384361px;}
.ws1_c00176{word-spacing:0.000000px;}
.fc0_c00176{color:transparent;}
.fs5_c00176{font-size:3.456000px;}
.fs4_c00176{font-size:6.000000px;}
.fs7_c00176{font-size:6.900000px;}
.fs19_c00176{font-size:10.380000px;}
.fs2_c00176{font-size:13.800000px;}
.fs1d_c00176{font-size:17.280000px;}
.fs1_c00176{font-size:20.760000px;}
.fs0_c00176{font-size:24.180000px;}
.fs1b_c00176{font-size:27.660000px;}
.fs23_c00176{font-size:31.080000px;}
.fs1c_c00176{font-size:34.560000px;}
.fs13_c00176{font-size:38.040000px;}
.fs6_c00176{font-size:41.460000px;}
.fs11_c00176{font-size:44.940000px;}
.fs1f_c00176{font-size:48.360000px;}
.fs3_c00176{font-size:51.840000px;}
.fs1e_c00176{font-size:55.320000px;}
.fs1a_c00176{font-size:58.740000px;}
.fs16_c00176{font-size:62.220000px;}
.fse_c00176{font-size:65.640000px;}
.fs8_c00176{font-size:69.120000px;}
.fsd_c00176{font-size:72.600000px;}
.fsc_c00176{font-size:76.020000px;}
.fs10_c00176{font-size:79.500000px;}
.fs12_c00176{font-size:82.920000px;}
.fs9_c00176{font-size:86.400000px;}
.fsf_c00176{font-size:89.880000px;}
.fs17_c00176{font-size:93.300000px;}
.fs14_c00176{font-size:96.780000px;}
.fsa_c00176{font-size:100.200000px;}
.fs18_c00176{font-size:103.680000px;}
.fsb_c00176{font-size:107.160000px;}
.fs21_c00176{font-size:110.580000px;}
.fs15_c00176{font-size:117.480000px;}
.fs22_c00176{font-size:124.440000px;}
.fs20_c00176{font-size:127.860000px;}
.y0_c00176{bottom:0.000000px;}
.y15a_c00176{bottom:184.890000px;}
.y159_c00176{bottom:190.950000px;}
.y153_c00176{bottom:239.325000px;}
.y152_c00176{bottom:243.645000px;}
.y151_c00176{bottom:244.515000px;}
.y155_c00176{bottom:248.835000px;}
.y157_c00176{bottom:249.690000px;}
.y156_c00176{bottom:250.560000px;}
.y154_c00176{bottom:251.430000px;}
.y158_c00176{bottom:265.245000px;}
.y150_c00176{bottom:266.115000px;}
.y14f_c00176{bottom:266.970000px;}
.y14a_c00176{bottom:269.565000px;}
.y14b_c00176{bottom:270.435000px;}
.y14e_c00176{bottom:274.755000px;}
.y14d_c00176{bottom:275.610000px;}
.y14c_c00176{bottom:277.350000px;}
.y149_c00176{bottom:278.205000px;}
.y145_c00176{bottom:292.890000px;}
.y146_c00176{bottom:293.760000px;}
.y144_c00176{bottom:294.630000px;}
.y143_c00176{bottom:295.485000px;}
.y142_c00176{bottom:296.355000px;}
.y147_c00176{bottom:298.080000px;}
.y141_c00176{bottom:304.125000px;}
.y148_c00176{bottom:305.850000px;}
.y13f_c00176{bottom:317.955000px;}
.y13c_c00176{bottom:319.680000px;}
.y13d_c00176{bottom:321.405000px;}
.y13b_c00176{bottom:322.275000px;}
.y140_c00176{bottom:324.870000px;}
.y13e_c00176{bottom:327.450000px;}
.y13a_c00176{bottom:328.320000px;}
.y138_c00176{bottom:343.875000px;}
.y137_c00176{bottom:344.730000px;}
.y134_c00176{bottom:346.470000px;}
.y132_c00176{bottom:348.195000px;}
.y139_c00176{bottom:349.920000px;}
.y135_c00176{bottom:350.790000px;}
.y136_c00176{bottom:353.370000px;}
.y133_c00176{bottom:355.110000px;}
.y131_c00176{bottom:368.925000px;}
.y12f_c00176{bottom:370.650000px;}
.y12c_c00176{bottom:371.520000px;}
.y12e_c00176{bottom:372.390000px;}
.y12d_c00176{bottom:374.115000px;}
.y130_c00176{bottom:376.710000px;}
.y12b_c00176{bottom:395.715000px;}
.y129_c00176{bottom:398.310000px;}
.y12a_c00176{bottom:400.035000px;}
.y128_c00176{bottom:403.485000px;}
.y127_c00176{bottom:409.530000px;}
.y124_c00176{bottom:422.490000px;}
.y126_c00176{bottom:424.230000px;}
.y125_c00176{bottom:425.955000px;}
.y123_c00176{bottom:426.810000px;}
.y122_c00176{bottom:428.550000px;}
.y11f_c00176{bottom:445.830000px;}
.y11d_c00176{bottom:447.555000px;}
.y11a_c00176{bottom:448.410000px;}
.y11c_c00176{bottom:450.150000px;}
.y121_c00176{bottom:451.875000px;}
.y11e_c00176{bottom:452.730000px;}
.y120_c00176{bottom:453.600000px;}
.y11b_c00176{bottom:454.470000px;}
.y119_c00176{bottom:470.010000px;}
.y117_c00176{bottom:470.880000px;}
.y113_c00176{bottom:473.475000px;}
.y118_c00176{bottom:474.330000px;}
.y115_c00176{bottom:476.070000px;}
.y116_c00176{bottom:478.650000px;}
.y114_c00176{bottom:480.390000px;}
.y111_c00176{bottom:495.930000px;}
.y110_c00176{bottom:496.800000px;}
.y10d_c00176{bottom:498.525000px;}
.y10e_c00176{bottom:499.395000px;}
.y112_c00176{bottom:501.990000px;}
.y10c_c00176{bottom:504.570000px;}
.y10f_c00176{bottom:506.310000px;}
.y109_c00176{bottom:520.995000px;}
.y108_c00176{bottom:522.720000px;}
.y106_c00176{bottom:523.590000px;}
.y10a_c00176{bottom:526.170000px;}
.y10b_c00176{bottom:527.040000px;}
.y105_c00176{bottom:527.910000px;}
.y107_c00176{bottom:530.490000px;}
.y104_c00176{bottom:546.045000px;}
.y102_c00176{bottom:546.915000px;}
.y101_c00176{bottom:551.235000px;}
.y103_c00176{bottom:553.830000px;}
.y100_c00176{bottom:555.555000px;}
.yff_c00176{bottom:570.240000px;}
.yfe_c00176{bottom:571.110000px;}
.yfb_c00176{bottom:571.965000px;}
.yfc_c00176{bottom:572.835000px;}
.yfa_c00176{bottom:573.690000px;}
.yf9_c00176{bottom:578.010000px;}
.yfd_c00176{bottom:578.880000px;}
.yf7_c00176{bottom:579.750000px;}
.yf8_c00176{bottom:580.605000px;}
.yf6_c00176{bottom:589.245000px;}
.yf5_c00176{bottom:594.435000px;}
.yf1_c00176{bottom:597.030000px;}
.yf0_c00176{bottom:597.885000px;}
.yef_c00176{bottom:598.755000px;}
.yee_c00176{bottom:601.350000px;}
.yf3_c00176{bottom:602.205000px;}
.yf4_c00176{bottom:603.075000px;}
.yf2_c00176{bottom:604.800000px;}
.yed_c00176{bottom:605.670000px;}
.yec_c00176{bottom:621.210000px;}
.yea_c00176{bottom:622.080000px;}
.ye8_c00176{bottom:623.805000px;}
.yeb_c00176{bottom:624.675000px;}
.ye9_c00176{bottom:628.995000px;}
.ye7_c00176{bottom:645.405000px;}
.ye6_c00176{bottom:648.000000px;}
.ye5_c00176{bottom:651.450000px;}
.ye3_c00176{bottom:654.045000px;}
.ye2_c00176{bottom:654.915000px;}
.ye4_c00176{bottom:656.640000px;}
.ydb_c00176{bottom:673.050000px;}
.ydc_c00176{bottom:673.920000px;}
.yde_c00176{bottom:675.645000px;}
.ye1_c00176{bottom:677.370000px;}
.ye0_c00176{bottom:678.240000px;}
.ydf_c00176{bottom:679.110000px;}
.ydd_c00176{bottom:679.965000px;}
.y161_c00176{bottom:680.835000px;}
.yd8_c00176{bottom:696.390000px;}
.yd4_c00176{bottom:697.245000px;}
.yd3_c00176{bottom:698.115000px;}
.yda_c00176{bottom:698.970000px;}
.yd9_c00176{bottom:700.710000px;}
.yd7_c00176{bottom:702.435000px;}
.yd5_c00176{bottom:703.290000px;}
.yd6_c00176{bottom:704.160000px;}
.yd2_c00176{bottom:705.885000px;}
.y160_c00176{bottom:709.350000px;}
.yd1_c00176{bottom:719.715000px;}
.yd0_c00176{bottom:720.570000px;}
.yce_c00176{bottom:721.440000px;}
.ycc_c00176{bottom:722.310000px;}
.ycb_c00176{bottom:723.165000px;}
.ycf_c00176{bottom:724.035000px;}
.ycd_c00176{bottom:729.210000px;}
.yc7_c00176{bottom:744.765000px;}
.yc5_c00176{bottom:745.635000px;}
.yc4_c00176{bottom:746.490000px;}
.yc6_c00176{bottom:749.085000px;}
.yc9_c00176{bottom:750.810000px;}
.yc8_c00176{bottom:751.680000px;}
.yc3_c00176{bottom:753.405000px;}
.yc2_c00176{bottom:754.275000px;}
.yca_c00176{bottom:761.190000px;}
.yc1_c00176{bottom:769.830000px;}
.ybf_c00176{bottom:770.685000px;}
.ybe_c00176{bottom:771.555000px;}
.ybd_c00176{bottom:772.410000px;}
.yc0_c00176{bottom:776.730000px;}
.ybc_c00176{bottom:779.325000px;}
.yba_c00176{bottom:794.010000px;}
.yb8_c00176{bottom:794.880000px;}
.yb4_c00176{bottom:796.605000px;}
.yb3_c00176{bottom:797.475000px;}
.yb7_c00176{bottom:800.925000px;}
.yb9_c00176{bottom:801.795000px;}
.yb6_c00176{bottom:802.650000px;}
.yb5_c00176{bottom:803.520000px;}
.ybb_c00176{bottom:804.390000px;}
.yb0_c00176{bottom:817.350000px;}
.yae_c00176{bottom:818.205000px;}
.yab_c00176{bottom:819.075000px;}
.yac_c00176{bottom:821.670000px;}
.yaf_c00176{bottom:824.250000px;}
.yb2_c00176{bottom:825.990000px;}
.yb1_c00176{bottom:826.845000px;}
.yad_c00176{bottom:827.715000px;}
.y15f_c00176{bottom:828.570000px;}
.y15e_c00176{bottom:832.890000px;}
.yaa_c00176{bottom:836.355000px;}
.ya6_c00176{bottom:842.400000px;}
.ya8_c00176{bottom:843.270000px;}
.ya7_c00176{bottom:844.125000px;}
.ya4_c00176{bottom:844.995000px;}
.ya3_c00176{bottom:848.445000px;}
.ya9_c00176{bottom:850.170000px;}
.ya5_c00176{bottom:851.910000px;}
.ya1_c00176{bottom:867.450000px;}
.ya2_c00176{bottom:868.320000px;}
.y9d_c00176{bottom:869.190000px;}
.y99_c00176{bottom:870.045000px;}
.y9c_c00176{bottom:870.915000px;}
.y9a_c00176{bottom:872.640000px;}
.ya0_c00176{bottom:873.510000px;}
.y9f_c00176{bottom:876.090000px;}
.y9e_c00176{bottom:876.960000px;}
.y9b_c00176{bottom:877.830000px;}
.y98_c00176{bottom:889.920000px;}
.y97_c00176{bottom:892.515000px;}
.y94_c00176{bottom:893.370000px;}
.y91_c00176{bottom:894.240000px;}
.y92_c00176{bottom:897.690000px;}
.y95_c00176{bottom:898.560000px;}
.y93_c00176{bottom:899.430000px;}
.y90_c00176{bottom:900.285000px;}
.y96_c00176{bottom:901.155000px;}
.y8d_c00176{bottom:918.435000px;}
.y8e_c00176{bottom:919.290000px;}
.y8b_c00176{bottom:920.160000px;}
.y8a_c00176{bottom:921.030000px;}
.y8f_c00176{bottom:925.350000px;}
.y8c_c00176{bottom:926.205000px;}
.y89_c00176{bottom:927.075000px;}
.y88_c00176{bottom:928.800000px;}
.y87_c00176{bottom:932.250000px;}
.y86_c00176{bottom:936.570000px;}
.y85_c00176{bottom:942.630000px;}
.y84_c00176{bottom:943.485000px;}
.y83_c00176{bottom:944.355000px;}
.y82_c00176{bottom:948.675000px;}
.y7f_c00176{bottom:950.400000px;}
.y81_c00176{bottom:951.270000px;}
.y80_c00176{bottom:952.995000px;}
.y7e_c00176{bottom:967.680000px;}
.y7c_c00176{bottom:968.550000px;}
.y7a_c00176{bottom:970.275000px;}
.y7d_c00176{bottom:975.450000px;}
.y7b_c00176{bottom:977.190000px;}
.y79_c00176{bottom:978.045000px;}
.y77_c00176{bottom:991.875000px;}
.y73_c00176{bottom:994.470000px;}
.y74_c00176{bottom:995.325000px;}
.y76_c00176{bottom:997.050000px;}
.y71_c00176{bottom:999.645000px;}
.y78_c00176{bottom:1000.515000px;}
.y72_c00176{bottom:1001.370000px;}
.y75_c00176{bottom:1002.240000px;}
.y70_c00176{bottom:1018.650000px;}
.y6d_c00176{bottom:1019.520000px;}
.y6c_c00176{bottom:1020.390000px;}
.y69_c00176{bottom:1021.245000px;}
.y6e_c00176{bottom:1023.840000px;}
.y6f_c00176{bottom:1026.435000px;}
.y6a_c00176{bottom:1027.290000px;}
.y6b_c00176{bottom:1028.160000px;}
.y67_c00176{bottom:1044.570000px;}
.y68_c00176{bottom:1048.035000px;}
.y66_c00176{bottom:1051.485000px;}
.y65_c00176{bottom:1052.355000px;}
.y62_c00176{bottom:1068.765000px;}
.y63_c00176{bottom:1069.635000px;}
.y60_c00176{bottom:1070.490000px;}
.y15d_c00176{bottom:1072.230000px;}
.y5f_c00176{bottom:1075.680000px;}
.y64_c00176{bottom:1076.550000px;}
.y61_c00176{bottom:1077.405000px;}
.y5e_c00176{bottom:1078.275000px;}
.y5d_c00176{bottom:1093.830000px;}
.y58_c00176{bottom:1094.685000px;}
.y5a_c00176{bottom:1096.410000px;}
.y5c_c00176{bottom:1098.150000px;}
.y5b_c00176{bottom:1100.730000px;}
.y59_c00176{bottom:1102.470000px;}
.y55_c00176{bottom:1118.880000px;}
.y54_c00176{bottom:1119.750000px;}
.y50_c00176{bottom:1120.605000px;}
.y57_c00176{bottom:1124.925000px;}
.y56_c00176{bottom:1125.795000px;}
.y51_c00176{bottom:1126.650000px;}
.y53_c00176{bottom:1127.520000px;}
.y52_c00176{bottom:1128.390000px;}
.y4d_c00176{bottom:1143.930000px;}
.y49_c00176{bottom:1145.670000px;}
.y4f_c00176{bottom:1146.525000px;}
.y4b_c00176{bottom:1148.250000px;}
.y4e_c00176{bottom:1149.990000px;}
.y4c_c00176{bottom:1150.845000px;}
.y4a_c00176{bottom:1152.570000px;}
.y48_c00176{bottom:1167.270000px;}
.y46_c00176{bottom:1168.125000px;}
.y44_c00176{bottom:1173.315000px;}
.y47_c00176{bottom:1174.170000px;}
.y45_c00176{bottom:1175.040000px;}
.y42_c00176{bottom:1176.765000px;}
.y43_c00176{bottom:1177.635000px;}
.y41_c00176{bottom:1185.405000px;}
.y3e_c00176{bottom:1194.915000px;}
.y3f_c00176{bottom:1195.770000px;}
.y3c_c00176{bottom:1196.640000px;}
.y40_c00176{bottom:1200.090000px;}
.y3d_c00176{bottom:1201.830000px;}
.y3b_c00176{bottom:1204.410000px;}
.y39_c00176{bottom:1218.240000px;}
.y37_c00176{bottom:1219.965000px;}
.y3a_c00176{bottom:1225.155000px;}
.y38_c00176{bottom:1226.880000px;}
.y36_c00176{bottom:1229.475000px;}
.y35_c00176{bottom:1242.435000px;}
.y31_c00176{bottom:1244.160000px;}
.y32_c00176{bottom:1245.030000px;}
.y2e_c00176{bottom:1245.885000px;}
.y2f_c00176{bottom:1246.755000px;}
.y34_c00176{bottom:1250.205000px;}
.y33_c00176{bottom:1251.075000px;}
.y30_c00176{bottom:1251.930000px;}
.y2d_c00176{bottom:1257.120000px;}
.y2b_c00176{bottom:1267.485000px;}
.y2a_c00176{bottom:1269.210000px;}
.y28_c00176{bottom:1270.080000px;}
.y26_c00176{bottom:1270.950000px;}
.y27_c00176{bottom:1271.805000px;}
.y25_c00176{bottom:1272.675000px;}
.y2c_c00176{bottom:1274.400000px;}
.y29_c00176{bottom:1276.125000px;}
.y20_c00176{bottom:1293.405000px;}
.y24_c00176{bottom:1294.275000px;}
.y23_c00176{bottom:1295.130000px;}
.y21_c00176{bottom:1297.725000px;}
.y1e_c00176{bottom:1300.320000px;}
.y22_c00176{bottom:1301.190000px;}
.y1f_c00176{bottom:1302.915000px;}
.y1d_c00176{bottom:1317.600000px;}
.y1c_c00176{bottom:1321.920000px;}
.y17_c00176{bottom:1323.645000px;}
.y1a_c00176{bottom:1325.370000px;}
.y1b_c00176{bottom:1326.240000px;}
.y19_c00176{bottom:1327.110000px;}
.y18_c00176{bottom:1327.965000px;}
.y15_c00176{bottom:1343.520000px;}
.y14_c00176{bottom:1346.115000px;}
.y16_c00176{bottom:1349.565000px;}
.y13_c00176{bottom:1352.160000px;}
.y12_c00176{bottom:1353.030000px;}
.yf_c00176{bottom:1367.715000px;}
.yd_c00176{bottom:1369.440000px;}
.yc_c00176{bottom:1371.165000px;}
.yb_c00176{bottom:1372.890000px;}
.y11_c00176{bottom:1373.760000px;}
.ye_c00176{bottom:1375.485000px;}
.y10_c00176{bottom:1376.355000px;}
.y5_c00176{bottom:1380.675000px;}
.y15c_c00176{bottom:1384.125000px;}
.y15b_c00176{bottom:1384.995000px;}
.ya_c00176{bottom:1398.810000px;}
.y4_c00176{bottom:1401.405000px;}
.y9_c00176{bottom:1402.275000px;}
.y3_c00176{bottom:1404.870000px;}
.y8_c00176{bottom:1423.875000px;}
.y7_c00176{bottom:1430.790000px;}
.y6_c00176{bottom:1433.370000px;}
.y2_c00176{bottom:1435.965000px;}
.y1_c00176{bottom:1448.925000px;}
.h7_c00176{height:3.110063px;}
.h6_c00176{height:5.399414px;}
.h9_c00176{height:6.209326px;}
.h1b_c00176{height:9.340986px;}
.h4_c00176{height:12.418652px;}
.h1f_c00176{height:15.550313px;}
.h3_c00176{height:18.681973px;}
.h2_c00176{height:21.759639px;}
.h1d_c00176{height:24.891299px;}
.h25_c00176{height:27.968965px;}
.h1e_c00176{height:31.100625px;}
.h15_c00176{height:34.232285px;}
.h8_c00176{height:37.309951px;}
.h13_c00176{height:40.441611px;}
.h21_c00176{height:43.519277px;}
.h5_c00176{height:46.650937px;}
.h20_c00176{height:49.782598px;}
.h1c_c00176{height:52.860264px;}
.h18_c00176{height:55.991924px;}
.h10_c00176{height:59.069590px;}
.ha_c00176{height:62.201250px;}
.hf_c00176{height:65.332910px;}
.he_c00176{height:68.410576px;}
.h12_c00176{height:71.542236px;}
.h14_c00176{height:74.619902px;}
.hb_c00176{height:77.751563px;}
.h11_c00176{height:80.883223px;}
.h19_c00176{height:83.960889px;}
.h16_c00176{height:87.092549px;}
.hc_c00176{height:90.170215px;}
.h1a_c00176{height:93.301875px;}
.hd_c00176{height:96.433535px;}
.h23_c00176{height:99.511201px;}
.h17_c00176{height:105.720527px;}
.h24_c00176{height:111.983848px;}
.h22_c00176{height:115.061514px;}
.h0_c00176{height:1523.235000px;}
.h1_c00176{height:1523.250000px;}
.w0_c00176{width:1107.645000px;}
.w1_c00176{width:1107.750000px;}
.x0_c00176{left:0.000000px;}
.x5_c00176{left:131.325000px;}
.x4_c00176{left:133.050000px;}
.x3_c00176{left:136.515000px;}
.x2b_c00176{left:171.930000px;}
.x37_c00176{left:176.250000px;}
.x19_c00176{left:190.950000px;}
.x38_c00176{left:193.530000px;}
.x49_c00176{left:215.130000px;}
.x98_c00176{left:225.510000px;}
.x1a_c00176{left:228.960000px;}
.x8f_c00176{left:233.280000px;}
.xb9_c00176{left:235.875000px;}
.xc3_c00176{left:237.600000px;}
.x79_c00176{left:240.195000px;}
.xd9_c00176{left:242.790000px;}
.xae_c00176{left:244.515000px;}
.x90_c00176{left:246.240000px;}
.x50_c00176{left:247.965000px;}
.x99_c00176{left:249.690000px;}
.x5a_c00176{left:251.430000px;}
.x39_c00176{left:254.010000px;}
.xd_c00176{left:255.750000px;}
.x23_c00176{left:258.330000px;}
.xc6_c00176{left:260.925000px;}
.x40_c00176{left:263.520000px;}
.xc0_c00176{left:267.840000px;}
.x85_c00176{left:273.030000px;}
.x9_c00176{left:278.205000px;}
.xbc_c00176{left:281.670000px;}
.xcb_c00176{left:283.395000px;}
.xb3_c00176{left:286.845000px;}
.x73_c00176{left:288.570000px;}
.x15_c00176{left:291.165000px;}
.x66_c00176{left:295.485000px;}
.xa1_c00176{left:297.210000px;}
.x32_c00176{left:301.530000px;}
.xaf_c00176{left:303.270000px;}
.xda_c00176{left:306.720000px;}
.xe4_c00176{left:311.040000px;}
.x91_c00176{left:312.765000px;}
.xa2_c00176{left:314.490000px;}
.x41_c00176{left:316.230000px;}
.x51_c00176{left:317.955000px;}
.x24_c00176{left:320.550000px;}
.x2_c00176{left:324.000000px;}
.xa_c00176{left:326.595000px;}
.xa6_c00176{left:328.320000px;}
.x74_c00176{left:332.640000px;}
.xb4_c00176{left:336.090000px;}
.x2c_c00176{left:343.005000px;}
.x1b_c00176{left:344.730000px;}
.x9a_c00176{left:347.325000px;}
.xe_c00176{left:349.050000px;}
.x3a_c00176{left:351.645000px;}
.xbd_c00176{left:354.240000px;}
.xdb_c00176{left:358.560000px;}
.x33_c00176{left:361.155000px;}
.x42_c00176{left:366.330000px;}
.x16_c00176{left:368.925000px;}
.xc4_c00176{left:373.245000px;}
.x7f_c00176{left:374.970000px;}
.x9b_c00176{left:380.160000px;}
.xd0_c00176{left:383.610000px;}
.x75_c00176{left:386.205000px;}
.xcc_c00176{left:390.525000px;}
.xc1_c00176{left:393.990000px;}
.xb_c00176{left:397.440000px;}
.x92_c00176{left:403.485000px;}
.x2d_c00176{left:406.080000px;}
.x1c_c00176{left:408.675000px;}
.xb5_c00176{left:411.270000px;}
.xde_c00176{left:412.995000px;}
.xc7_c00176{left:414.720000px;}
.x5b_c00176{left:418.170000px;}
.x43_c00176{left:420.765000px;}
.xd3_c00176{left:422.490000px;}
.x34_c00176{left:425.085000px;}
.x9c_c00176{left:426.810000px;}
.x6d_c00176{left:430.275000px;}
.xdc_c00176{left:433.725000px;}
.xcd_c00176{left:435.450000px;}
.x6_c00176{left:438.045000px;}
.xa3_c00176{left:446.685000px;}
.xc_c00176{left:449.280000px;}
.x3b_c00176{left:451.005000px;}
.x1d_c00176{left:452.730000px;}
.x7_c00176{left:457.049325px;}
.x93_c00176{left:460.515000px;}
.x67_c00176{left:463.110000px;}
.x8_c00176{left:467.430000px;}
.xc8_c00176{left:469.155000px;}
.xdf_c00176{left:472.605000px;}
.x63_c00176{left:474.330000px;}
.x8b_c00176{left:476.925000px;}
.x80_c00176{left:480.390000px;}
.x86_c00176{left:482.970000px;}
.xd7_c00176{left:485.565000px;}
.x4a_c00176{left:487.290000px;}
.xa7_c00176{left:492.480000px;}
.x71_c00176{left:499.395000px;}
.x2e_c00176{left:501.120000px;}
.x1e_c00176{left:503.715000px;}
.x5c_c00176{left:508.890000px;}
.x44_c00176{left:511.485000px;}
.x52_c00176{left:513.210000px;}
.xba_c00176{left:515.805000px;}
.xbf_c00176{left:519.270000px;}
.x6e_c00176{left:522.720000px;}
.x53_c00176{left:525.315000px;}
.xd4_c00176{left:527.910000px;}
.x7a_c00176{left:530.490000px;}
.x45_c00176{left:533.085000px;}
.xf_c00176{left:536.550000px;}
.x87_c00176{left:540.870000px;}
.xb6_c00176{left:543.450000px;}
.x4b_c00176{left:545.190000px;}
.x81_c00176{left:548.640000px;}
.x9d_c00176{left:550.365000px;}
.xc2_c00176{left:552.960000px;}
.xd1_c00176{left:556.410000px;}
.x5d_c00176{left:559.005000px;}
.x68_c00176{left:564.195000px;}
.x94_c00176{left:566.790000px;}
.xce_c00176{left:568.515000px;}
.x54_c00176{left:570.240000px;}
.x7b_c00176{left:571.965000px;}
.x25_c00176{left:575.430000px;}
.xb0_c00176{left:577.155000px;}
.x2f_c00176{left:579.750000px;}
.x82_c00176{left:583.200000px;}
.x1f_c00176{left:587.520000px;}
.x55_c00176{left:591.840000px;}
.xa4_c00176{left:595.290000px;}
.x8c_c00176{left:601.350000px;}
.x3c_c00176{left:604.800000px;}
.xe2_c00176{left:609.120000px;}
.x9e_c00176{left:610.845000px;}
.x5e_c00176{left:613.440000px;}
.xe0_c00176{left:615.165000px;}
.x8d_c00176{left:616.890000px;}
.xe6_c00176{left:619.485000px;}
.xe5_c00176{left:621.210000px;}
.x6f_c00176{left:626.400000px;}
.x69_c00176{left:630.720000px;}
.xb1_c00176{left:635.040000px;}
.x26_c00176{left:638.490000px;}
.x9f_c00176{left:641.085000px;}
.x76_c00176{left:642.810000px;}
.x17_c00176{left:645.405000px;}
.x5f_c00176{left:649.725000px;}
.x88_c00176{left:654.045000px;}
.x35_c00176{left:656.640000px;}
.x27_c00176{left:660.090000px;}
.xc9_c00176{left:662.685000px;}
.x20_c00176{left:670.470000px;}
.xd6_c00176{left:674.790000px;}
.xb7_c00176{left:676.515000px;}
.x89_c00176{left:679.110000px;}
.xd2_c00176{left:680.835000px;}
.x28_c00176{left:682.560000px;}
.x4c_c00176{left:684.285000px;}
.x3d_c00176{left:689.475000px;}
.xa8_c00176{left:692.925000px;}
.x83_c00176{left:697.245000px;}
.x60_c00176{left:698.970000px;}
.x77_c00176{left:701.565000px;}
.x46_c00176{left:705.030000px;}
.xa0_c00176{left:707.610000px;}
.x10_c00176{left:711.075000px;}
.x30_c00176{left:717.120000px;}
.x64_c00176{left:719.715000px;}
.x29_c00176{left:723.165000px;}
.x70_c00176{left:725.760000px;}
.xbb_c00176{left:727.485000px;}
.x7c_c00176{left:729.210000px;}
.x72_c00176{left:731.805000px;}
.x11_c00176{left:734.400000px;}
.x36_c00176{left:736.125000px;}
.x95_c00176{left:738.720000px;}
.xa9_c00176{left:740.445000px;}
.xa5_c00176{left:742.170000px;}
.xc5_c00176{left:746.490000px;}
.x4d_c00176{left:748.230000px;}
.x21_c00176{left:751.680000px;}
.x6a_c00176{left:756.000000px;}
.xd5_c00176{left:758.595000px;}
.x47_c00176{left:760.320000px;}
.x2a_c00176{left:762.915000px;}
.xb2_c00176{left:765.510000px;}
.xd8_c00176{left:768.090000px;}
.x3e_c00176{left:769.830000px;}
.x8a_c00176{left:771.555000px;}
.xaa_c00176{left:773.280000px;}
.x22_c00176{left:775.005000px;}
.x78_c00176{left:777.600000px;}
.x1_c00176{left:781.050000px;}
.x7d_c00176{left:782.790000px;}
.x12_c00176{left:785.370000px;}
.xdd_c00176{left:787.965000px;}
.x3f_c00176{left:790.560000px;}
.x61_c00176{left:793.155000px;}
.x48_c00176{left:797.475000px;}
.x96_c00176{left:800.070000px;}
.xe3_c00176{left:803.520000px;}
.x4e_c00176{left:805.245000px;}
.x56_c00176{left:807.840000px;}
.x8e_c00176{left:813.030000px;}
.x65_c00176{left:815.610000px;}
.x4f_c00176{left:824.250000px;}
.xe1_c00176{left:826.845000px;}
.x57_c00176{left:829.440000px;}
.xcf_c00176{left:831.165000px;}
.x97_c00176{left:833.760000px;}
.x18_c00176{left:835.485000px;}
.xab_c00176{left:844.995000px;}
.xca_c00176{left:847.590000px;}
.x6b_c00176{left:850.170000px;}
.x58_c00176{left:854.490000px;}
.x31_c00176{left:857.955000px;}
.x84_c00176{left:860.550000px;}
.x59_c00176{left:863.130000px;}
.xbe_c00176{left:871.770000px;}
.xac_c00176{left:874.365000px;}
.x6c_c00176{left:876.090000px;}
.x13_c00176{left:879.555000px;}
.xad_c00176{left:882.150000px;}
.x14_c00176{left:885.600000px;}
.x7e_c00176{left:887.325000px;}
.x62_c00176{left:891.645000px;}
.xb8_c00176{left:896.835000px;}
.xe9_c00176{left:914.115000px;}
.xec_c00176{left:945.210000px;}
.xeb_c00176{left:949.530000px;}
.xea_c00176{left:968.550000px;}
.xe7_c00176{left:1048.890000px;}
.xe8_c00176{left:1068.765000px;}
.xed_c00176{left:1076.550000px;}
.xee_c00176{left:1083.450000px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls0_c00176{letter-spacing:0.000000pt;}
.ws0_c00176{word-spacing:-21.674988pt;}
.ws1_c00176{word-spacing:0.000000pt;}
.fs5_c00176{font-size:3.072000pt;}
.fs4_c00176{font-size:5.333333pt;}
.fs7_c00176{font-size:6.133333pt;}
.fs19_c00176{font-size:9.226667pt;}
.fs2_c00176{font-size:12.266667pt;}
.fs1d_c00176{font-size:15.360000pt;}
.fs1_c00176{font-size:18.453333pt;}
.fs0_c00176{font-size:21.493333pt;}
.fs1b_c00176{font-size:24.586667pt;}
.fs23_c00176{font-size:27.626667pt;}
.fs1c_c00176{font-size:30.720000pt;}
.fs13_c00176{font-size:33.813333pt;}
.fs6_c00176{font-size:36.853333pt;}
.fs11_c00176{font-size:39.946667pt;}
.fs1f_c00176{font-size:42.986667pt;}
.fs3_c00176{font-size:46.080000pt;}
.fs1e_c00176{font-size:49.173333pt;}
.fs1a_c00176{font-size:52.213333pt;}
.fs16_c00176{font-size:55.306667pt;}
.fse_c00176{font-size:58.346667pt;}
.fs8_c00176{font-size:61.440000pt;}
.fsd_c00176{font-size:64.533333pt;}
.fsc_c00176{font-size:67.573333pt;}
.fs10_c00176{font-size:70.666667pt;}
.fs12_c00176{font-size:73.706667pt;}
.fs9_c00176{font-size:76.800000pt;}
.fsf_c00176{font-size:79.893333pt;}
.fs17_c00176{font-size:82.933333pt;}
.fs14_c00176{font-size:86.026667pt;}
.fsa_c00176{font-size:89.066667pt;}
.fs18_c00176{font-size:92.160000pt;}
.fsb_c00176{font-size:95.253333pt;}
.fs21_c00176{font-size:98.293333pt;}
.fs15_c00176{font-size:104.426667pt;}
.fs22_c00176{font-size:110.613333pt;}
.fs20_c00176{font-size:113.653333pt;}
.y0_c00176{bottom:0.000000pt;}
.y15a_c00176{bottom:164.346667pt;}
.y159_c00176{bottom:169.733333pt;}
.y153_c00176{bottom:212.733333pt;}
.y152_c00176{bottom:216.573333pt;}
.y151_c00176{bottom:217.346667pt;}
.y155_c00176{bottom:221.186667pt;}
.y157_c00176{bottom:221.946667pt;}
.y156_c00176{bottom:222.720000pt;}
.y154_c00176{bottom:223.493333pt;}
.y158_c00176{bottom:235.773333pt;}
.y150_c00176{bottom:236.546667pt;}
.y14f_c00176{bottom:237.306667pt;}
.y14a_c00176{bottom:239.613333pt;}
.y14b_c00176{bottom:240.386667pt;}
.y14e_c00176{bottom:244.226667pt;}
.y14d_c00176{bottom:244.986667pt;}
.y14c_c00176{bottom:246.533333pt;}
.y149_c00176{bottom:247.293333pt;}
.y145_c00176{bottom:260.346667pt;}
.y146_c00176{bottom:261.120000pt;}
.y144_c00176{bottom:261.893333pt;}
.y143_c00176{bottom:262.653333pt;}
.y142_c00176{bottom:263.426667pt;}
.y147_c00176{bottom:264.960000pt;}
.y141_c00176{bottom:270.333333pt;}
.y148_c00176{bottom:271.866667pt;}
.y13f_c00176{bottom:282.626667pt;}
.y13c_c00176{bottom:284.160000pt;}
.y13d_c00176{bottom:285.693333pt;}
.y13b_c00176{bottom:286.466667pt;}
.y140_c00176{bottom:288.773333pt;}
.y13e_c00176{bottom:291.066667pt;}
.y13a_c00176{bottom:291.840000pt;}
.y138_c00176{bottom:305.666667pt;}
.y137_c00176{bottom:306.426667pt;}
.y134_c00176{bottom:307.973333pt;}
.y132_c00176{bottom:309.506667pt;}
.y139_c00176{bottom:311.040000pt;}
.y135_c00176{bottom:311.813333pt;}
.y136_c00176{bottom:314.106667pt;}
.y133_c00176{bottom:315.653333pt;}
.y131_c00176{bottom:327.933333pt;}
.y12f_c00176{bottom:329.466667pt;}
.y12c_c00176{bottom:330.240000pt;}
.y12e_c00176{bottom:331.013333pt;}
.y12d_c00176{bottom:332.546667pt;}
.y130_c00176{bottom:334.853333pt;}
.y12b_c00176{bottom:351.746667pt;}
.y129_c00176{bottom:354.053333pt;}
.y12a_c00176{bottom:355.586667pt;}
.y128_c00176{bottom:358.653333pt;}
.y127_c00176{bottom:364.026667pt;}
.y124_c00176{bottom:375.546667pt;}
.y126_c00176{bottom:377.093333pt;}
.y125_c00176{bottom:378.626667pt;}
.y123_c00176{bottom:379.386667pt;}
.y122_c00176{bottom:380.933333pt;}
.y11f_c00176{bottom:396.293333pt;}
.y11d_c00176{bottom:397.826667pt;}
.y11a_c00176{bottom:398.586667pt;}
.y11c_c00176{bottom:400.133333pt;}
.y121_c00176{bottom:401.666667pt;}
.y11e_c00176{bottom:402.426667pt;}
.y120_c00176{bottom:403.200000pt;}
.y11b_c00176{bottom:403.973333pt;}
.y119_c00176{bottom:417.786667pt;}
.y117_c00176{bottom:418.560000pt;}
.y113_c00176{bottom:420.866667pt;}
.y118_c00176{bottom:421.626667pt;}
.y115_c00176{bottom:423.173333pt;}
.y116_c00176{bottom:425.466667pt;}
.y114_c00176{bottom:427.013333pt;}
.y111_c00176{bottom:440.826667pt;}
.y110_c00176{bottom:441.600000pt;}
.y10d_c00176{bottom:443.133333pt;}
.y10e_c00176{bottom:443.906667pt;}
.y112_c00176{bottom:446.213333pt;}
.y10c_c00176{bottom:448.506667pt;}
.y10f_c00176{bottom:450.053333pt;}
.y109_c00176{bottom:463.106667pt;}
.y108_c00176{bottom:464.640000pt;}
.y106_c00176{bottom:465.413333pt;}
.y10a_c00176{bottom:467.706667pt;}
.y10b_c00176{bottom:468.480000pt;}
.y105_c00176{bottom:469.253333pt;}
.y107_c00176{bottom:471.546667pt;}
.y104_c00176{bottom:485.373333pt;}
.y102_c00176{bottom:486.146667pt;}
.y101_c00176{bottom:489.986667pt;}
.y103_c00176{bottom:492.293333pt;}
.y100_c00176{bottom:493.826667pt;}
.yff_c00176{bottom:506.880000pt;}
.yfe_c00176{bottom:507.653333pt;}
.yfb_c00176{bottom:508.413333pt;}
.yfc_c00176{bottom:509.186667pt;}
.yfa_c00176{bottom:509.946667pt;}
.yf9_c00176{bottom:513.786667pt;}
.yfd_c00176{bottom:514.560000pt;}
.yf7_c00176{bottom:515.333333pt;}
.yf8_c00176{bottom:516.093333pt;}
.yf6_c00176{bottom:523.773333pt;}
.yf5_c00176{bottom:528.386667pt;}
.yf1_c00176{bottom:530.693333pt;}
.yf0_c00176{bottom:531.453333pt;}
.yef_c00176{bottom:532.226667pt;}
.yee_c00176{bottom:534.533333pt;}
.yf3_c00176{bottom:535.293333pt;}
.yf4_c00176{bottom:536.066667pt;}
.yf2_c00176{bottom:537.600000pt;}
.yed_c00176{bottom:538.373333pt;}
.yec_c00176{bottom:552.186667pt;}
.yea_c00176{bottom:552.960000pt;}
.ye8_c00176{bottom:554.493333pt;}
.yeb_c00176{bottom:555.266667pt;}
.ye9_c00176{bottom:559.106667pt;}
.ye7_c00176{bottom:573.693333pt;}
.ye6_c00176{bottom:576.000000pt;}
.ye5_c00176{bottom:579.066667pt;}
.ye3_c00176{bottom:581.373333pt;}
.ye2_c00176{bottom:582.146667pt;}
.ye4_c00176{bottom:583.680000pt;}
.ydb_c00176{bottom:598.266667pt;}
.ydc_c00176{bottom:599.040000pt;}
.yde_c00176{bottom:600.573333pt;}
.ye1_c00176{bottom:602.106667pt;}
.ye0_c00176{bottom:602.880000pt;}
.ydf_c00176{bottom:603.653333pt;}
.ydd_c00176{bottom:604.413333pt;}
.y161_c00176{bottom:605.186667pt;}
.yd8_c00176{bottom:619.013333pt;}
.yd4_c00176{bottom:619.773333pt;}
.yd3_c00176{bottom:620.546667pt;}
.yda_c00176{bottom:621.306667pt;}
.yd9_c00176{bottom:622.853333pt;}
.yd7_c00176{bottom:624.386667pt;}
.yd5_c00176{bottom:625.146667pt;}
.yd6_c00176{bottom:625.920000pt;}
.yd2_c00176{bottom:627.453333pt;}
.y160_c00176{bottom:630.533333pt;}
.yd1_c00176{bottom:639.746667pt;}
.yd0_c00176{bottom:640.506667pt;}
.yce_c00176{bottom:641.280000pt;}
.ycc_c00176{bottom:642.053333pt;}
.ycb_c00176{bottom:642.813333pt;}
.ycf_c00176{bottom:643.586667pt;}
.ycd_c00176{bottom:648.186667pt;}
.yc7_c00176{bottom:662.013333pt;}
.yc5_c00176{bottom:662.786667pt;}
.yc4_c00176{bottom:663.546667pt;}
.yc6_c00176{bottom:665.853333pt;}
.yc9_c00176{bottom:667.386667pt;}
.yc8_c00176{bottom:668.160000pt;}
.yc3_c00176{bottom:669.693333pt;}
.yc2_c00176{bottom:670.466667pt;}
.yca_c00176{bottom:676.613333pt;}
.yc1_c00176{bottom:684.293333pt;}
.ybf_c00176{bottom:685.053333pt;}
.ybe_c00176{bottom:685.826667pt;}
.ybd_c00176{bottom:686.586667pt;}
.yc0_c00176{bottom:690.426667pt;}
.ybc_c00176{bottom:692.733333pt;}
.yba_c00176{bottom:705.786667pt;}
.yb8_c00176{bottom:706.560000pt;}
.yb4_c00176{bottom:708.093333pt;}
.yb3_c00176{bottom:708.866667pt;}
.yb7_c00176{bottom:711.933333pt;}
.yb9_c00176{bottom:712.706667pt;}
.yb6_c00176{bottom:713.466667pt;}
.yb5_c00176{bottom:714.240000pt;}
.ybb_c00176{bottom:715.013333pt;}
.yb0_c00176{bottom:726.533333pt;}
.yae_c00176{bottom:727.293333pt;}
.yab_c00176{bottom:728.066667pt;}
.yac_c00176{bottom:730.373333pt;}
.yaf_c00176{bottom:732.666667pt;}
.yb2_c00176{bottom:734.213333pt;}
.yb1_c00176{bottom:734.973333pt;}
.yad_c00176{bottom:735.746667pt;}
.y15f_c00176{bottom:736.506667pt;}
.y15e_c00176{bottom:740.346667pt;}
.yaa_c00176{bottom:743.426667pt;}
.ya6_c00176{bottom:748.800000pt;}
.ya8_c00176{bottom:749.573333pt;}
.ya7_c00176{bottom:750.333333pt;}
.ya4_c00176{bottom:751.106667pt;}
.ya3_c00176{bottom:754.173333pt;}
.ya9_c00176{bottom:755.706667pt;}
.ya5_c00176{bottom:757.253333pt;}
.ya1_c00176{bottom:771.066667pt;}
.ya2_c00176{bottom:771.840000pt;}
.y9d_c00176{bottom:772.613333pt;}
.y99_c00176{bottom:773.373333pt;}
.y9c_c00176{bottom:774.146667pt;}
.y9a_c00176{bottom:775.680000pt;}
.ya0_c00176{bottom:776.453333pt;}
.y9f_c00176{bottom:778.746667pt;}
.y9e_c00176{bottom:779.520000pt;}
.y9b_c00176{bottom:780.293333pt;}
.y98_c00176{bottom:791.040000pt;}
.y97_c00176{bottom:793.346667pt;}
.y94_c00176{bottom:794.106667pt;}
.y91_c00176{bottom:794.880000pt;}
.y92_c00176{bottom:797.946667pt;}
.y95_c00176{bottom:798.720000pt;}
.y93_c00176{bottom:799.493333pt;}
.y90_c00176{bottom:800.253333pt;}
.y96_c00176{bottom:801.026667pt;}
.y8d_c00176{bottom:816.386667pt;}
.y8e_c00176{bottom:817.146667pt;}
.y8b_c00176{bottom:817.920000pt;}
.y8a_c00176{bottom:818.693333pt;}
.y8f_c00176{bottom:822.533333pt;}
.y8c_c00176{bottom:823.293333pt;}
.y89_c00176{bottom:824.066667pt;}
.y88_c00176{bottom:825.600000pt;}
.y87_c00176{bottom:828.666667pt;}
.y86_c00176{bottom:832.506667pt;}
.y85_c00176{bottom:837.893333pt;}
.y84_c00176{bottom:838.653333pt;}
.y83_c00176{bottom:839.426667pt;}
.y82_c00176{bottom:843.266667pt;}
.y7f_c00176{bottom:844.800000pt;}
.y81_c00176{bottom:845.573333pt;}
.y80_c00176{bottom:847.106667pt;}
.y7e_c00176{bottom:860.160000pt;}
.y7c_c00176{bottom:860.933333pt;}
.y7a_c00176{bottom:862.466667pt;}
.y7d_c00176{bottom:867.066667pt;}
.y7b_c00176{bottom:868.613333pt;}
.y79_c00176{bottom:869.373333pt;}
.y77_c00176{bottom:881.666667pt;}
.y73_c00176{bottom:883.973333pt;}
.y74_c00176{bottom:884.733333pt;}
.y76_c00176{bottom:886.266667pt;}
.y71_c00176{bottom:888.573333pt;}
.y78_c00176{bottom:889.346667pt;}
.y72_c00176{bottom:890.106667pt;}
.y75_c00176{bottom:890.880000pt;}
.y70_c00176{bottom:905.466667pt;}
.y6d_c00176{bottom:906.240000pt;}
.y6c_c00176{bottom:907.013333pt;}
.y69_c00176{bottom:907.773333pt;}
.y6e_c00176{bottom:910.080000pt;}
.y6f_c00176{bottom:912.386667pt;}
.y6a_c00176{bottom:913.146667pt;}
.y6b_c00176{bottom:913.920000pt;}
.y67_c00176{bottom:928.506667pt;}
.y68_c00176{bottom:931.586667pt;}
.y66_c00176{bottom:934.653333pt;}
.y65_c00176{bottom:935.426667pt;}
.y62_c00176{bottom:950.013333pt;}
.y63_c00176{bottom:950.786667pt;}
.y60_c00176{bottom:951.546667pt;}
.y15d_c00176{bottom:953.093333pt;}
.y5f_c00176{bottom:956.160000pt;}
.y64_c00176{bottom:956.933333pt;}
.y61_c00176{bottom:957.693333pt;}
.y5e_c00176{bottom:958.466667pt;}
.y5d_c00176{bottom:972.293333pt;}
.y58_c00176{bottom:973.053333pt;}
.y5a_c00176{bottom:974.586667pt;}
.y5c_c00176{bottom:976.133333pt;}
.y5b_c00176{bottom:978.426667pt;}
.y59_c00176{bottom:979.973333pt;}
.y55_c00176{bottom:994.560000pt;}
.y54_c00176{bottom:995.333333pt;}
.y50_c00176{bottom:996.093333pt;}
.y57_c00176{bottom:999.933333pt;}
.y56_c00176{bottom:1000.706667pt;}
.y51_c00176{bottom:1001.466667pt;}
.y53_c00176{bottom:1002.240000pt;}
.y52_c00176{bottom:1003.013333pt;}
.y4d_c00176{bottom:1016.826667pt;}
.y49_c00176{bottom:1018.373333pt;}
.y4f_c00176{bottom:1019.133333pt;}
.y4b_c00176{bottom:1020.666667pt;}
.y4e_c00176{bottom:1022.213333pt;}
.y4c_c00176{bottom:1022.973333pt;}
.y4a_c00176{bottom:1024.506667pt;}
.y48_c00176{bottom:1037.573333pt;}
.y46_c00176{bottom:1038.333333pt;}
.y44_c00176{bottom:1042.946667pt;}
.y47_c00176{bottom:1043.706667pt;}
.y45_c00176{bottom:1044.480000pt;}
.y42_c00176{bottom:1046.013333pt;}
.y43_c00176{bottom:1046.786667pt;}
.y41_c00176{bottom:1053.693333pt;}
.y3e_c00176{bottom:1062.146667pt;}
.y3f_c00176{bottom:1062.906667pt;}
.y3c_c00176{bottom:1063.680000pt;}
.y40_c00176{bottom:1066.746667pt;}
.y3d_c00176{bottom:1068.293333pt;}
.y3b_c00176{bottom:1070.586667pt;}
.y39_c00176{bottom:1082.880000pt;}
.y37_c00176{bottom:1084.413333pt;}
.y3a_c00176{bottom:1089.026667pt;}
.y38_c00176{bottom:1090.560000pt;}
.y36_c00176{bottom:1092.866667pt;}
.y35_c00176{bottom:1104.386667pt;}
.y31_c00176{bottom:1105.920000pt;}
.y32_c00176{bottom:1106.693333pt;}
.y2e_c00176{bottom:1107.453333pt;}
.y2f_c00176{bottom:1108.226667pt;}
.y34_c00176{bottom:1111.293333pt;}
.y33_c00176{bottom:1112.066667pt;}
.y30_c00176{bottom:1112.826667pt;}
.y2d_c00176{bottom:1117.440000pt;}
.y2b_c00176{bottom:1126.653333pt;}
.y2a_c00176{bottom:1128.186667pt;}
.y28_c00176{bottom:1128.960000pt;}
.y26_c00176{bottom:1129.733333pt;}
.y27_c00176{bottom:1130.493333pt;}
.y25_c00176{bottom:1131.266667pt;}
.y2c_c00176{bottom:1132.800000pt;}
.y29_c00176{bottom:1134.333333pt;}
.y20_c00176{bottom:1149.693333pt;}
.y24_c00176{bottom:1150.466667pt;}
.y23_c00176{bottom:1151.226667pt;}
.y21_c00176{bottom:1153.533333pt;}
.y1e_c00176{bottom:1155.840000pt;}
.y22_c00176{bottom:1156.613333pt;}
.y1f_c00176{bottom:1158.146667pt;}
.y1d_c00176{bottom:1171.200000pt;}
.y1c_c00176{bottom:1175.040000pt;}
.y17_c00176{bottom:1176.573333pt;}
.y1a_c00176{bottom:1178.106667pt;}
.y1b_c00176{bottom:1178.880000pt;}
.y19_c00176{bottom:1179.653333pt;}
.y18_c00176{bottom:1180.413333pt;}
.y15_c00176{bottom:1194.240000pt;}
.y14_c00176{bottom:1196.546667pt;}
.y16_c00176{bottom:1199.613333pt;}
.y13_c00176{bottom:1201.920000pt;}
.y12_c00176{bottom:1202.693333pt;}
.yf_c00176{bottom:1215.746667pt;}
.yd_c00176{bottom:1217.280000pt;}
.yc_c00176{bottom:1218.813333pt;}
.yb_c00176{bottom:1220.346667pt;}
.y11_c00176{bottom:1221.120000pt;}
.ye_c00176{bottom:1222.653333pt;}
.y10_c00176{bottom:1223.426667pt;}
.y5_c00176{bottom:1227.266667pt;}
.y15c_c00176{bottom:1230.333333pt;}
.y15b_c00176{bottom:1231.106667pt;}
.ya_c00176{bottom:1243.386667pt;}
.y4_c00176{bottom:1245.693333pt;}
.y9_c00176{bottom:1246.466667pt;}
.y3_c00176{bottom:1248.773333pt;}
.y8_c00176{bottom:1265.666667pt;}
.y7_c00176{bottom:1271.813333pt;}
.y6_c00176{bottom:1274.106667pt;}
.y2_c00176{bottom:1276.413333pt;}
.y1_c00176{bottom:1287.933333pt;}
.h7_c00176{height:2.764500pt;}
.h6_c00176{height:4.799479pt;}
.h9_c00176{height:5.519401pt;}
.h1b_c00176{height:8.303099pt;}
.h4_c00176{height:11.038802pt;}
.h1f_c00176{height:13.822500pt;}
.h3_c00176{height:16.606198pt;}
.h2_c00176{height:19.341901pt;}
.h1d_c00176{height:22.125599pt;}
.h25_c00176{height:24.861302pt;}
.h1e_c00176{height:27.645000pt;}
.h15_c00176{height:30.428698pt;}
.h8_c00176{height:33.164401pt;}
.h13_c00176{height:35.948099pt;}
.h21_c00176{height:38.683802pt;}
.h5_c00176{height:41.467500pt;}
.h20_c00176{height:44.251198pt;}
.h1c_c00176{height:46.986901pt;}
.h18_c00176{height:49.770599pt;}
.h10_c00176{height:52.506302pt;}
.ha_c00176{height:55.290000pt;}
.hf_c00176{height:58.073698pt;}
.he_c00176{height:60.809401pt;}
.h12_c00176{height:63.593099pt;}
.h14_c00176{height:66.328802pt;}
.hb_c00176{height:69.112500pt;}
.h11_c00176{height:71.896198pt;}
.h19_c00176{height:74.631901pt;}
.h16_c00176{height:77.415599pt;}
.hc_c00176{height:80.151302pt;}
.h1a_c00176{height:82.935000pt;}
.hd_c00176{height:85.718698pt;}
.h23_c00176{height:88.454401pt;}
.h17_c00176{height:93.973802pt;}
.h24_c00176{height:99.541198pt;}
.h22_c00176{height:102.276901pt;}
.h0_c00176{height:1353.986667pt;}
.h1_c00176{height:1354.000000pt;}
.w0_c00176{width:984.573333pt;}
.w1_c00176{width:984.666667pt;}
.x0_c00176{left:0.000000pt;}
.x5_c00176{left:116.733333pt;}
.x4_c00176{left:118.266667pt;}
.x3_c00176{left:121.346667pt;}
.x2b_c00176{left:152.826667pt;}
.x37_c00176{left:156.666667pt;}
.x19_c00176{left:169.733333pt;}
.x38_c00176{left:172.026667pt;}
.x49_c00176{left:191.226667pt;}
.x98_c00176{left:200.453333pt;}
.x1a_c00176{left:203.520000pt;}
.x8f_c00176{left:207.360000pt;}
.xb9_c00176{left:209.666667pt;}
.xc3_c00176{left:211.200000pt;}
.x79_c00176{left:213.506667pt;}
.xd9_c00176{left:215.813333pt;}
.xae_c00176{left:217.346667pt;}
.x90_c00176{left:218.880000pt;}
.x50_c00176{left:220.413333pt;}
.x99_c00176{left:221.946667pt;}
.x5a_c00176{left:223.493333pt;}
.x39_c00176{left:225.786667pt;}
.xd_c00176{left:227.333333pt;}
.x23_c00176{left:229.626667pt;}
.xc6_c00176{left:231.933333pt;}
.x40_c00176{left:234.240000pt;}
.xc0_c00176{left:238.080000pt;}
.x85_c00176{left:242.693333pt;}
.x9_c00176{left:247.293333pt;}
.xbc_c00176{left:250.373333pt;}
.xcb_c00176{left:251.906667pt;}
.xb3_c00176{left:254.973333pt;}
.x73_c00176{left:256.506667pt;}
.x15_c00176{left:258.813333pt;}
.x66_c00176{left:262.653333pt;}
.xa1_c00176{left:264.186667pt;}
.x32_c00176{left:268.026667pt;}
.xaf_c00176{left:269.573333pt;}
.xda_c00176{left:272.640000pt;}
.xe4_c00176{left:276.480000pt;}
.x91_c00176{left:278.013333pt;}
.xa2_c00176{left:279.546667pt;}
.x41_c00176{left:281.093333pt;}
.x51_c00176{left:282.626667pt;}
.x24_c00176{left:284.933333pt;}
.x2_c00176{left:288.000000pt;}
.xa_c00176{left:290.306667pt;}
.xa6_c00176{left:291.840000pt;}
.x74_c00176{left:295.680000pt;}
.xb4_c00176{left:298.746667pt;}
.x2c_c00176{left:304.893333pt;}
.x1b_c00176{left:306.426667pt;}
.x9a_c00176{left:308.733333pt;}
.xe_c00176{left:310.266667pt;}
.x3a_c00176{left:312.573333pt;}
.xbd_c00176{left:314.880000pt;}
.xdb_c00176{left:318.720000pt;}
.x33_c00176{left:321.026667pt;}
.x42_c00176{left:325.626667pt;}
.x16_c00176{left:327.933333pt;}
.xc4_c00176{left:331.773333pt;}
.x7f_c00176{left:333.306667pt;}
.x9b_c00176{left:337.920000pt;}
.xd0_c00176{left:340.986667pt;}
.x75_c00176{left:343.293333pt;}
.xcc_c00176{left:347.133333pt;}
.xc1_c00176{left:350.213333pt;}
.xb_c00176{left:353.280000pt;}
.x92_c00176{left:358.653333pt;}
.x2d_c00176{left:360.960000pt;}
.x1c_c00176{left:363.266667pt;}
.xb5_c00176{left:365.573333pt;}
.xde_c00176{left:367.106667pt;}
.xc7_c00176{left:368.640000pt;}
.x5b_c00176{left:371.706667pt;}
.x43_c00176{left:374.013333pt;}
.xd3_c00176{left:375.546667pt;}
.x34_c00176{left:377.853333pt;}
.x9c_c00176{left:379.386667pt;}
.x6d_c00176{left:382.466667pt;}
.xdc_c00176{left:385.533333pt;}
.xcd_c00176{left:387.066667pt;}
.x6_c00176{left:389.373333pt;}
.xa3_c00176{left:397.053333pt;}
.xc_c00176{left:399.360000pt;}
.x3b_c00176{left:400.893333pt;}
.x1d_c00176{left:402.426667pt;}
.x7_c00176{left:406.266067pt;}
.x93_c00176{left:409.346667pt;}
.x67_c00176{left:411.653333pt;}
.x8_c00176{left:415.493333pt;}
.xc8_c00176{left:417.026667pt;}
.xdf_c00176{left:420.093333pt;}
.x63_c00176{left:421.626667pt;}
.x8b_c00176{left:423.933333pt;}
.x80_c00176{left:427.013333pt;}
.x86_c00176{left:429.306667pt;}
.xd7_c00176{left:431.613333pt;}
.x4a_c00176{left:433.146667pt;}
.xa7_c00176{left:437.760000pt;}
.x71_c00176{left:443.906667pt;}
.x2e_c00176{left:445.440000pt;}
.x1e_c00176{left:447.746667pt;}
.x5c_c00176{left:452.346667pt;}
.x44_c00176{left:454.653333pt;}
.x52_c00176{left:456.186667pt;}
.xba_c00176{left:458.493333pt;}
.xbf_c00176{left:461.573333pt;}
.x6e_c00176{left:464.640000pt;}
.x53_c00176{left:466.946667pt;}
.xd4_c00176{left:469.253333pt;}
.x7a_c00176{left:471.546667pt;}
.x45_c00176{left:473.853333pt;}
.xf_c00176{left:476.933333pt;}
.x87_c00176{left:480.773333pt;}
.xb6_c00176{left:483.066667pt;}
.x4b_c00176{left:484.613333pt;}
.x81_c00176{left:487.680000pt;}
.x9d_c00176{left:489.213333pt;}
.xc2_c00176{left:491.520000pt;}
.xd1_c00176{left:494.586667pt;}
.x5d_c00176{left:496.893333pt;}
.x68_c00176{left:501.506667pt;}
.x94_c00176{left:503.813333pt;}
.xce_c00176{left:505.346667pt;}
.x54_c00176{left:506.880000pt;}
.x7b_c00176{left:508.413333pt;}
.x25_c00176{left:511.493333pt;}
.xb0_c00176{left:513.026667pt;}
.x2f_c00176{left:515.333333pt;}
.x82_c00176{left:518.400000pt;}
.x1f_c00176{left:522.240000pt;}
.x55_c00176{left:526.080000pt;}
.xa4_c00176{left:529.146667pt;}
.x8c_c00176{left:534.533333pt;}
.x3c_c00176{left:537.600000pt;}
.xe2_c00176{left:541.440000pt;}
.x9e_c00176{left:542.973333pt;}
.x5e_c00176{left:545.280000pt;}
.xe0_c00176{left:546.813333pt;}
.x8d_c00176{left:548.346667pt;}
.xe6_c00176{left:550.653333pt;}
.xe5_c00176{left:552.186667pt;}
.x6f_c00176{left:556.800000pt;}
.x69_c00176{left:560.640000pt;}
.xb1_c00176{left:564.480000pt;}
.x26_c00176{left:567.546667pt;}
.x9f_c00176{left:569.853333pt;}
.x76_c00176{left:571.386667pt;}
.x17_c00176{left:573.693333pt;}
.x5f_c00176{left:577.533333pt;}
.x88_c00176{left:581.373333pt;}
.x35_c00176{left:583.680000pt;}
.x27_c00176{left:586.746667pt;}
.xc9_c00176{left:589.053333pt;}
.x20_c00176{left:595.973333pt;}
.xd6_c00176{left:599.813333pt;}
.xb7_c00176{left:601.346667pt;}
.x89_c00176{left:603.653333pt;}
.xd2_c00176{left:605.186667pt;}
.x28_c00176{left:606.720000pt;}
.x4c_c00176{left:608.253333pt;}
.x3d_c00176{left:612.866667pt;}
.xa8_c00176{left:615.933333pt;}
.x83_c00176{left:619.773333pt;}
.x60_c00176{left:621.306667pt;}
.x77_c00176{left:623.613333pt;}
.x46_c00176{left:626.693333pt;}
.xa0_c00176{left:628.986667pt;}
.x10_c00176{left:632.066667pt;}
.x30_c00176{left:637.440000pt;}
.x64_c00176{left:639.746667pt;}
.x29_c00176{left:642.813333pt;}
.x70_c00176{left:645.120000pt;}
.xbb_c00176{left:646.653333pt;}
.x7c_c00176{left:648.186667pt;}
.x72_c00176{left:650.493333pt;}
.x11_c00176{left:652.800000pt;}
.x36_c00176{left:654.333333pt;}
.x95_c00176{left:656.640000pt;}
.xa9_c00176{left:658.173333pt;}
.xa5_c00176{left:659.706667pt;}
.xc5_c00176{left:663.546667pt;}
.x4d_c00176{left:665.093333pt;}
.x21_c00176{left:668.160000pt;}
.x6a_c00176{left:672.000000pt;}
.xd5_c00176{left:674.306667pt;}
.x47_c00176{left:675.840000pt;}
.x2a_c00176{left:678.146667pt;}
.xb2_c00176{left:680.453333pt;}
.xd8_c00176{left:682.746667pt;}
.x3e_c00176{left:684.293333pt;}
.x8a_c00176{left:685.826667pt;}
.xaa_c00176{left:687.360000pt;}
.x22_c00176{left:688.893333pt;}
.x78_c00176{left:691.200000pt;}
.x1_c00176{left:694.266667pt;}
.x7d_c00176{left:695.813333pt;}
.x12_c00176{left:698.106667pt;}
.xdd_c00176{left:700.413333pt;}
.x3f_c00176{left:702.720000pt;}
.x61_c00176{left:705.026667pt;}
.x48_c00176{left:708.866667pt;}
.x96_c00176{left:711.173333pt;}
.xe3_c00176{left:714.240000pt;}
.x4e_c00176{left:715.773333pt;}
.x56_c00176{left:718.080000pt;}
.x8e_c00176{left:722.693333pt;}
.x65_c00176{left:724.986667pt;}
.x4f_c00176{left:732.666667pt;}
.xe1_c00176{left:734.973333pt;}
.x57_c00176{left:737.280000pt;}
.xcf_c00176{left:738.813333pt;}
.x97_c00176{left:741.120000pt;}
.x18_c00176{left:742.653333pt;}
.xab_c00176{left:751.106667pt;}
.xca_c00176{left:753.413333pt;}
.x6b_c00176{left:755.706667pt;}
.x58_c00176{left:759.546667pt;}
.x31_c00176{left:762.626667pt;}
.x84_c00176{left:764.933333pt;}
.x59_c00176{left:767.226667pt;}
.xbe_c00176{left:774.906667pt;}
.xac_c00176{left:777.213333pt;}
.x6c_c00176{left:778.746667pt;}
.x13_c00176{left:781.826667pt;}
.xad_c00176{left:784.133333pt;}
.x14_c00176{left:787.200000pt;}
.x7e_c00176{left:788.733333pt;}
.x62_c00176{left:792.573333pt;}
.xb8_c00176{left:797.186667pt;}
.xe9_c00176{left:812.546667pt;}
.xec_c00176{left:840.186667pt;}
.xeb_c00176{left:844.026667pt;}
.xea_c00176{left:860.933333pt;}
.xe7_c00176{left:932.346667pt;}
.xe8_c00176{left:950.013333pt;}
.xed_c00176{left:956.933333pt;}
.xee_c00176{left:963.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00177;src:url('chunks/assets/font_c3d6cc21dfca13499e5138ad.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.109863;font-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_c00177{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);}
.v0_c00177{vertical-align:0.000000px;}
.ls0_c00177{letter-spacing:0.000000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00177{word-spacing:0.000000px;}
.fc0_c00177{color:transparent;}
.fs0_c00177{font-size:600.000000px;}
.y0_c00177{bottom:0.000000px;}
.y1_c00177{bottom:15.000000px;}
.h2_c00177{height:539.941406px;}
.h1_c00177{height:1503.000000px;}
.h0_c00177{height:1503.360000px;}
.w0_c00177{width:1090.365000px;}
.w1_c00177{width:1090.500000px;}
.x0_c00177{left:0.000000px;}
.x1_c00177{left:15.000000px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls0_c00177{letter-spacing:0.000000pt;}
.ws0_c00177{word-spacing:0.000000pt;}
.fs0_c00177{font-size:533.333333pt;}
.y0_c00177{bottom:0.000000pt;}
.y1_c00177{bottom:13.333333pt;}
.h2_c00177{height:479.947917pt;}
.h1_c00177{height:1336.000000pt;}
.h0_c00177{height:1336.320000pt;}
.w0_c00177{width:969.213333pt;}
.w1_c00177{width:969.333333pt;}
.x0_c00177{left:0.000000pt;}
.x1_c00177{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a6488ba37c3264ec784feabd.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.109863;font-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_c00178{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m33_c00178{transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);}
.m4a_c00178{transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);}
.m2e_c00178{transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);}
.m4c_c00178{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);}
.m52_c00178{transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);}
.m4d_c00178{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.mb_c00178{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00178{transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);}
.m8_c00178{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m39_c00178{transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);}
.m45_c00178{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);}
.m1_c00178{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m31_c00178{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);}
.m36_c00178{transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);}
.m28_c00178{transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);}
.m27_c00178{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);}
.m2f_c00178{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00178{transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);}
.m40_c00178{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.m2d_c00178{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);}
.m29_c00178{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);}
.m43_c00178{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);}
.m53_c00178{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.m4f_c00178{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);}
.m44_c00178{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m54_c00178{transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);}
.m42_c00178{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m2b_c00178{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m58_c00178{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m41_c00178{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m2a_c00178{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m35_c00178{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.m49_c00178{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.m30_c00178{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);}
.m24_c00178{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m1c_c00178{transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);}
.m37_c00178{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m51_c00178{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);}
.m48_c00178{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);}
.m38_c00178{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);}
.m18_c00178{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m3a_c00178{transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);}
.m46_c00178{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);}
.m2c_c00178{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.m15_c00178{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);}
.m21_c00178{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);}
.m1f_c00178{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);}
.m20_c00178{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00178{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00178{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m55_c00178{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);}
.m47_c00178{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);}
.m9_c00178{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00178{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00178{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c00178{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);}
.m1e_c00178{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00178{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_c00178{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c00178{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m50_c00178{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00178{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m16_c00178{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m17_c00178{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c00178{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);}
.m11_c00178{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m6_c00178{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m0_c00178{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00178{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);}
.m4_c00178{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m23_c00178{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00178{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m26_c00178{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m57_c00178{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);}
.m12_c00178{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m13_c00178{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);}
.m10_c00178{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m5_c00178{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m19_c00178{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);}
.m3d_c00178{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00178{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.me_c00178{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.ma_c00178{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);}
.m14_c00178{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m34_c00178{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m22_c00178{transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);}
.m2_c00178{transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);}
.m32_c00178{transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);}
.m56_c00178{transform:matrix(2.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.142500,0.000000,0.000000,0.250000,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;}
.fs2_c00178{font-size:3.456000px;}
.fsb_c00178{font-size:6.000000px;}
.fs9_c00178{font-size:6.900000px;}
.fs8_c00178{font-size:10.380000px;}
.fs1_c00178{font-size:13.800000px;}
.fs0_c00178{font-size:17.280000px;}
.fs6_c00178{font-size:20.760000px;}
.fs7_c00178{font-size:24.180000px;}
.fs3_c00178{font-size:27.660000px;}
.fs20_c00178{font-size:31.080000px;}
.fsa_c00178{font-size:34.560000px;}
.fs2a_c00178{font-size:41.460000px;}
.fs29_c00178{font-size:44.940000px;}
.fs4_c00178{font-size:48.360000px;}
.fs5_c00178{font-size:51.840000px;}
.fs26_c00178{font-size:58.740000px;}
.fs23_c00178{font-size:69.120000px;}
.fs1d_c00178{font-size:72.600000px;}
.fs22_c00178{font-size:76.020000px;}
.fs16_c00178{font-size:79.500000px;}
.fs17_c00178{font-size:82.920000px;}
.fs1a_c00178{font-size:86.400000px;}
.fs15_c00178{font-size:89.880000px;}
.fs21_c00178{font-size:93.300000px;}
.fs24_c00178{font-size:96.780000px;}
.fs1b_c00178{font-size:100.200000px;}
.fsd_c00178{font-size:103.680000px;}
.fs11_c00178{font-size:107.160000px;}
.fs14_c00178{font-size:110.580000px;}
.fse_c00178{font-size:114.060000px;}
.fs1e_c00178{font-size:117.480000px;}
.fsf_c00178{font-size:120.960000px;}
.fs18_c00178{font-size:124.440000px;}
.fs1c_c00178{font-size:127.860000px;}
.fs1f_c00178{font-size:131.340000px;}
.fs10_c00178{font-size:134.760000px;}
.fs13_c00178{font-size:138.240000px;}
.fsc_c00178{font-size:141.720000px;}
.fs19_c00178{font-size:145.140000px;}
.fs27_c00178{font-size:148.620000px;}
.fs25_c00178{font-size:152.040000px;}
.fs12_c00178{font-size:155.520000px;}
.fs28_c00178{font-size:172.800000px;}
.y0_c00178{bottom:0.000000px;}
.y76_c00178{bottom:258.330000px;}
.y77_c00178{bottom:259.200000px;}
.y78_c00178{bottom:260.070000px;}
.y75_c00178{bottom:415.590000px;}
.y74_c00178{bottom:432.000000px;}
.ya_c00178{bottom:576.285000px;}
.y6a_c00178{bottom:781.920000px;}
.y69_c00178{bottom:783.645000px;}
.y6c_c00178{bottom:789.690000px;}
.y6b_c00178{bottom:790.560000px;}
.y6e_c00178{bottom:793.155000px;}
.y6f_c00178{bottom:795.750000px;}
.y6d_c00178{bottom:800.070000px;}
.y70_c00178{bottom:805.245000px;}
.y72_c00178{bottom:806.970000px;}
.y71_c00178{bottom:807.840000px;}
.y62_c00178{bottom:811.290000px;}
.y61_c00178{bottom:813.030000px;}
.y73_c00178{bottom:813.885000px;}
.y64_c00178{bottom:815.610000px;}
.y60_c00178{bottom:817.350000px;}
.y5f_c00178{bottom:820.800000px;}
.y68_c00178{bottom:822.525000px;}
.y66_c00178{bottom:825.120000px;}
.y65_c00178{bottom:827.715000px;}
.y63_c00178{bottom:831.165000px;}
.y67_c00178{bottom:832.890000px;}
.y56_c00178{bottom:849.315000px;}
.y57_c00178{bottom:851.910000px;}
.y58_c00178{bottom:856.230000px;}
.y59_c00178{bottom:857.085000px;}
.y5d_c00178{bottom:863.130000px;}
.y5b_c00178{bottom:864.000000px;}
.y5e_c00178{bottom:866.595000px;}
.y5a_c00178{bottom:868.320000px;}
.y5c_c00178{bottom:870.045000px;}
.y4f_c00178{bottom:886.470000px;}
.y51_c00178{bottom:888.195000px;}
.y52_c00178{bottom:889.050000px;}
.y50_c00178{bottom:893.370000px;}
.y55_c00178{bottom:895.965000px;}
.y53_c00178{bottom:899.430000px;}
.y54_c00178{bottom:901.155000px;}
.y43_c00178{bottom:914.115000px;}
.y44_c00178{bottom:914.970000px;}
.y46_c00178{bottom:919.290000px;}
.y47_c00178{bottom:922.755000px;}
.y49_c00178{bottom:924.480000px;}
.y45_c00178{bottom:925.350000px;}
.y42_c00178{bottom:928.800000px;}
.y4d_c00178{bottom:931.395000px;}
.y48_c00178{bottom:933.120000px;}
.y4a_c00178{bottom:933.990000px;}
.y4c_c00178{bottom:935.715000px;}
.y4b_c00178{bottom:938.310000px;}
.y4e_c00178{bottom:952.995000px;}
.y3e_c00178{bottom:953.850000px;}
.y3d_c00178{bottom:954.720000px;}
.y3f_c00178{bottom:958.170000px;}
.y40_c00178{bottom:960.765000px;}
.y41_c00178{bottom:966.810000px;}
.y3c_c00178{bottom:974.595000px;}
.y37_c00178{bottom:984.090000px;}
.y39_c00178{bottom:987.555000px;}
.y38_c00178{bottom:991.005000px;}
.y35_c00178{bottom:992.730000px;}
.y36_c00178{bottom:993.600000px;}
.y34_c00178{bottom:996.195000px;}
.y3b_c00178{bottom:997.050000px;}
.y3a_c00178{bottom:1002.240000px;}
.y31_c00178{bottom:1054.080000px;}
.y2e_c00178{bottom:1054.950000px;}
.y30_c00178{bottom:1056.675000px;}
.y32_c00178{bottom:1060.995000px;}
.y2f_c00178{bottom:1061.850000px;}
.y33_c00178{bottom:1063.590000px;}
.y26_c00178{bottom:1085.190000px;}
.y27_c00178{bottom:1086.045000px;}
.y28_c00178{bottom:1086.915000px;}
.y29_c00178{bottom:1087.770000px;}
.y2b_c00178{bottom:1091.235000px;}
.y2a_c00178{bottom:1095.555000px;}
.y2c_c00178{bottom:1097.280000px;}
.y2d_c00178{bottom:1099.005000px;}
.y24_c00178{bottom:1123.200000px;}
.y25_c00178{bottom:1126.650000px;}
.y14_c00178{bottom:1128.390000px;}
.y22_c00178{bottom:1130.970000px;}
.y23_c00178{bottom:1131.840000px;}
.y13_c00178{bottom:1156.890000px;}
.y21_c00178{bottom:1191.450000px;}
.y20_c00178{bottom:1193.190000px;}
.y12_c00178{bottom:1194.045000px;}
.y1f_c00178{bottom:1206.150000px;}
.y1d_c00178{bottom:1209.600000px;}
.y1e_c00178{bottom:1213.920000px;}
.y1b_c00178{bottom:1237.245000px;}
.y1c_c00178{bottom:1238.970000px;}
.y19_c00178{bottom:1241.565000px;}
.y1a_c00178{bottom:1243.290000px;}
.y11_c00178{bottom:1244.160000px;}
.y18_c00178{bottom:1245.030000px;}
.y17_c00178{bottom:1248.480000px;}
.y16_c00178{bottom:1265.760000px;}
.y15_c00178{bottom:1267.485000px;}
.y10_c00178{bottom:1285.635000px;}
.yf_c00178{bottom:1288.230000px;}
.ye_c00178{bottom:1304.640000px;}
.yd_c00178{bottom:1307.235000px;}
.yb_c00178{bottom:1317.600000px;}
.yc_c00178{bottom:1318.470000px;}
.y7_c00178{bottom:1391.040000px;}
.y3_c00178{bottom:1394.490000px;}
.y9_c00178{bottom:1396.230000px;}
.y8_c00178{bottom:1403.130000px;}
.y6_c00178{bottom:1404.870000px;}
.y5_c00178{bottom:1422.150000px;}
.y4_c00178{bottom:1424.730000px;}
.y2_c00178{bottom:1444.605000px;}
.y1_c00178{bottom:1446.330000px;}
.h4_c00178{height:3.110063px;}
.hd_c00178{height:5.399414px;}
.hb_c00178{height:6.209326px;}
.ha_c00178{height:9.340986px;}
.h3_c00178{height:12.418652px;}
.h2_c00178{height:15.550313px;}
.h8_c00178{height:18.681973px;}
.h9_c00178{height:21.759639px;}
.h5_c00178{height:24.891299px;}
.h22_c00178{height:27.968965px;}
.hc_c00178{height:31.100625px;}
.h2c_c00178{height:37.309951px;}
.h2b_c00178{height:40.441611px;}
.h6_c00178{height:43.519277px;}
.h7_c00178{height:46.650937px;}
.h28_c00178{height:52.860264px;}
.h25_c00178{height:62.201250px;}
.h1f_c00178{height:65.332910px;}
.h24_c00178{height:68.410576px;}
.h18_c00178{height:71.542236px;}
.h19_c00178{height:74.619902px;}
.h1c_c00178{height:77.751563px;}
.h17_c00178{height:80.883223px;}
.h23_c00178{height:83.960889px;}
.h26_c00178{height:87.092549px;}
.h1d_c00178{height:90.170215px;}
.hf_c00178{height:93.301875px;}
.h13_c00178{height:96.433535px;}
.h16_c00178{height:99.511201px;}
.h10_c00178{height:102.642861px;}
.h20_c00178{height:105.720527px;}
.h11_c00178{height:108.852188px;}
.h1a_c00178{height:111.983848px;}
.h1e_c00178{height:115.061514px;}
.h21_c00178{height:118.193174px;}
.h12_c00178{height:121.270840px;}
.h15_c00178{height:124.402500px;}
.he_c00178{height:127.534160px;}
.h1b_c00178{height:130.611826px;}
.h29_c00178{height:133.743486px;}
.h27_c00178{height:136.821152px;}
.h14_c00178{height:139.952812px;}
.h2a_c00178{height:155.503125px;}
.h0_c00178{height:1523.235000px;}
.h1_c00178{height:1523.250000px;}
.w0_c00178{width:1107.645000px;}
.w1_c00178{width:1107.750000px;}
.x0_c00178{left:0.000000px;}
.x60_c00178{left:177.990000px;}
.x61_c00178{left:196.125000px;}
.x56_c00178{left:209.085000px;}
.x57_c00178{left:215.130000px;}
.x11_c00178{left:224.640000px;}
.x3f_c00178{left:233.280000px;}
.x26_c00178{left:243.645000px;}
.x58_c00178{left:249.690000px;}
.x4b_c00178{left:252.285000px;}
.x40_c00178{left:260.070000px;}
.x50_c00178{left:261.795000px;}
.xf_c00178{left:263.520000px;}
.x35_c00178{left:267.840000px;}
.x4c_c00178{left:274.755000px;}
.x10_c00178{left:283.395000px;}
.x13_c00178{left:291.165000px;}
.x12_c00178{left:311.040000px;}
.x27_c00178{left:318.810000px;}
.x41_c00178{left:342.150000px;}
.x51_c00178{left:350.790000px;}
.x28_c00178{left:353.370000px;}
.x2f_c00178{left:357.690000px;}
.x42_c00178{left:363.750000px;}
.x3b_c00178{left:371.520000px;}
.x43_c00178{left:376.710000px;}
.x3_c00178{left:378.435000px;}
.x3c_c00178{left:380.160000px;}
.x4d_c00178{left:381.885000px;}
.x59_c00178{left:390.525000px;}
.x24_c00178{left:401.760000px;}
.x36_c00178{left:406.080000px;}
.x25_c00178{left:410.400000px;}
.x62_c00178{left:412.125000px;}
.x5a_c00178{left:416.445000px;}
.x29_c00178{left:423.360000px;}
.x44_c00178{left:431.130000px;}
.x63_c00178{left:440.640000px;}
.x4e_c00178{left:442.365000px;}
.x6_c00178{left:450.150000px;}
.x37_c00178{left:453.600000px;}
.x4_c00178{left:456.195000px;}
.x5_c00178{left:466.560000px;}
.x52_c00178{left:489.885000px;}
.x64_c00178{left:495.930000px;}
.x2a_c00178{left:501.120000px;}
.x31_c00178{left:504.570000px;}
.x22_c00178{left:523.590000px;}
.x5b_c00178{left:527.040000px;}
.x38_c00178{left:537.405000px;}
.x23_c00178{left:540.870000px;}
.xb_c00178{left:559.875000px;}
.xc_c00178{left:568.515000px;}
.x32_c00178{left:579.750000px;}
.x45_c00178{left:585.795000px;}
.x53_c00178{left:603.930000px;}
.x4f_c00178{left:605.670000px;}
.x20_c00178{left:614.310000px;}
.x1_c00178{left:616.890000px;}
.x2_c00178{left:624.675000px;}
.x21_c00178{left:626.400000px;}
.x2b_c00178{left:632.445000px;}
.x1d_c00178{left:642.810000px;}
.x5c_c00178{left:648.000000px;}
.x39_c00178{left:652.320000px;}
.x46_c00178{left:656.640000px;}
.x3d_c00178{left:660.960000px;}
.x2c_c00178{left:669.600000px;}
.x3e_c00178{left:675.645000px;}
.x54_c00178{left:694.650000px;}
.x5d_c00178{left:704.160000px;}
.x33_c00178{left:716.250000px;}
.x47_c00178{left:724.035000px;}
.x16_c00178{left:758.595000px;}
.x65_c00178{left:768.090000px;}
.x17_c00178{left:774.150000px;}
.x5e_c00178{left:787.965000px;}
.x7_c00178{left:790.560000px;}
.x34_c00178{left:797.475000px;}
.x8_c00178{left:802.650000px;}
.x66_c00178{left:806.115000px;}
.x18_c00178{left:809.565000px;}
.x30_c00178{left:819.075000px;}
.x2d_c00178{left:821.670000px;}
.x3a_c00178{left:829.440000px;}
.x19_c00178{left:838.080000px;}
.x5f_c00178{left:852.765000px;}
.x55_c00178{left:863.130000px;}
.x2e_c00178{left:872.640000px;}
.x1a_c00178{left:878.685000px;}
.x67_c00178{left:893.370000px;}
.x1b_c00178{left:895.965000px;}
.x48_c00178{left:908.070000px;}
.x1c_c00178{left:912.390000px;}
.x49_c00178{left:921.030000px;}
.x4a_c00178{left:931.395000px;}
.x1f_c00178{left:1015.200000px;}
.x1e_c00178{left:1017.795000px;}
.xd_c00178{left:1020.390000px;}
.x14_c00178{left:1022.970000px;}
.x15_c00178{left:1032.480000px;}
.xe_c00178{left:1034.205000px;}
.x9_c00178{left:1041.120000px;}
.x6a_c00178{left:1048.890000px;}
.xa_c00178{left:1059.270000px;}
.x68_c00178{left:1060.995000px;}
.x6b_c00178{left:1066.170000px;}
.x69_c00178{left:1068.765000px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls0_c00178{letter-spacing:0.000000pt;}
.ws0_c00178{word-spacing:0.000000pt;}
.fs2_c00178{font-size:3.072000pt;}
.fsb_c00178{font-size:5.333333pt;}
.fs9_c00178{font-size:6.133333pt;}
.fs8_c00178{font-size:9.226667pt;}
.fs1_c00178{font-size:12.266667pt;}
.fs0_c00178{font-size:15.360000pt;}
.fs6_c00178{font-size:18.453333pt;}
.fs7_c00178{font-size:21.493333pt;}
.fs3_c00178{font-size:24.586667pt;}
.fs20_c00178{font-size:27.626667pt;}
.fsa_c00178{font-size:30.720000pt;}
.fs2a_c00178{font-size:36.853333pt;}
.fs29_c00178{font-size:39.946667pt;}
.fs4_c00178{font-size:42.986667pt;}
.fs5_c00178{font-size:46.080000pt;}
.fs26_c00178{font-size:52.213333pt;}
.fs23_c00178{font-size:61.440000pt;}
.fs1d_c00178{font-size:64.533333pt;}
.fs22_c00178{font-size:67.573333pt;}
.fs16_c00178{font-size:70.666667pt;}
.fs17_c00178{font-size:73.706667pt;}
.fs1a_c00178{font-size:76.800000pt;}
.fs15_c00178{font-size:79.893333pt;}
.fs21_c00178{font-size:82.933333pt;}
.fs24_c00178{font-size:86.026667pt;}
.fs1b_c00178{font-size:89.066667pt;}
.fsd_c00178{font-size:92.160000pt;}
.fs11_c00178{font-size:95.253333pt;}
.fs14_c00178{font-size:98.293333pt;}
.fse_c00178{font-size:101.386667pt;}
.fs1e_c00178{font-size:104.426667pt;}
.fsf_c00178{font-size:107.520000pt;}
.fs18_c00178{font-size:110.613333pt;}
.fs1c_c00178{font-size:113.653333pt;}
.fs1f_c00178{font-size:116.746667pt;}
.fs10_c00178{font-size:119.786667pt;}
.fs13_c00178{font-size:122.880000pt;}
.fsc_c00178{font-size:125.973333pt;}
.fs19_c00178{font-size:129.013333pt;}
.fs27_c00178{font-size:132.106667pt;}
.fs25_c00178{font-size:135.146667pt;}
.fs12_c00178{font-size:138.240000pt;}
.fs28_c00178{font-size:153.600000pt;}
.y0_c00178{bottom:0.000000pt;}
.y76_c00178{bottom:229.626667pt;}
.y77_c00178{bottom:230.400000pt;}
.y78_c00178{bottom:231.173333pt;}
.y75_c00178{bottom:369.413333pt;}
.y74_c00178{bottom:384.000000pt;}
.ya_c00178{bottom:512.253333pt;}
.y6a_c00178{bottom:695.040000pt;}
.y69_c00178{bottom:696.573333pt;}
.y6c_c00178{bottom:701.946667pt;}
.y6b_c00178{bottom:702.720000pt;}
.y6e_c00178{bottom:705.026667pt;}
.y6f_c00178{bottom:707.333333pt;}
.y6d_c00178{bottom:711.173333pt;}
.y70_c00178{bottom:715.773333pt;}
.y72_c00178{bottom:717.306667pt;}
.y71_c00178{bottom:718.080000pt;}
.y62_c00178{bottom:721.146667pt;}
.y61_c00178{bottom:722.693333pt;}
.y73_c00178{bottom:723.453333pt;}
.y64_c00178{bottom:724.986667pt;}
.y60_c00178{bottom:726.533333pt;}
.y5f_c00178{bottom:729.600000pt;}
.y68_c00178{bottom:731.133333pt;}
.y66_c00178{bottom:733.440000pt;}
.y65_c00178{bottom:735.746667pt;}
.y63_c00178{bottom:738.813333pt;}
.y67_c00178{bottom:740.346667pt;}
.y56_c00178{bottom:754.946667pt;}
.y57_c00178{bottom:757.253333pt;}
.y58_c00178{bottom:761.093333pt;}
.y59_c00178{bottom:761.853333pt;}
.y5d_c00178{bottom:767.226667pt;}
.y5b_c00178{bottom:768.000000pt;}
.y5e_c00178{bottom:770.306667pt;}
.y5a_c00178{bottom:771.840000pt;}
.y5c_c00178{bottom:773.373333pt;}
.y4f_c00178{bottom:787.973333pt;}
.y51_c00178{bottom:789.506667pt;}
.y52_c00178{bottom:790.266667pt;}
.y50_c00178{bottom:794.106667pt;}
.y55_c00178{bottom:796.413333pt;}
.y53_c00178{bottom:799.493333pt;}
.y54_c00178{bottom:801.026667pt;}
.y43_c00178{bottom:812.546667pt;}
.y44_c00178{bottom:813.306667pt;}
.y46_c00178{bottom:817.146667pt;}
.y47_c00178{bottom:820.226667pt;}
.y49_c00178{bottom:821.760000pt;}
.y45_c00178{bottom:822.533333pt;}
.y42_c00178{bottom:825.600000pt;}
.y4d_c00178{bottom:827.906667pt;}
.y48_c00178{bottom:829.440000pt;}
.y4a_c00178{bottom:830.213333pt;}
.y4c_c00178{bottom:831.746667pt;}
.y4b_c00178{bottom:834.053333pt;}
.y4e_c00178{bottom:847.106667pt;}
.y3e_c00178{bottom:847.866667pt;}
.y3d_c00178{bottom:848.640000pt;}
.y3f_c00178{bottom:851.706667pt;}
.y40_c00178{bottom:854.013333pt;}
.y41_c00178{bottom:859.386667pt;}
.y3c_c00178{bottom:866.306667pt;}
.y37_c00178{bottom:874.746667pt;}
.y39_c00178{bottom:877.826667pt;}
.y38_c00178{bottom:880.893333pt;}
.y35_c00178{bottom:882.426667pt;}
.y36_c00178{bottom:883.200000pt;}
.y34_c00178{bottom:885.506667pt;}
.y3b_c00178{bottom:886.266667pt;}
.y3a_c00178{bottom:890.880000pt;}
.y31_c00178{bottom:936.960000pt;}
.y2e_c00178{bottom:937.733333pt;}
.y30_c00178{bottom:939.266667pt;}
.y32_c00178{bottom:943.106667pt;}
.y2f_c00178{bottom:943.866667pt;}
.y33_c00178{bottom:945.413333pt;}
.y26_c00178{bottom:964.613333pt;}
.y27_c00178{bottom:965.373333pt;}
.y28_c00178{bottom:966.146667pt;}
.y29_c00178{bottom:966.906667pt;}
.y2b_c00178{bottom:969.986667pt;}
.y2a_c00178{bottom:973.826667pt;}
.y2c_c00178{bottom:975.360000pt;}
.y2d_c00178{bottom:976.893333pt;}
.y24_c00178{bottom:998.400000pt;}
.y25_c00178{bottom:1001.466667pt;}
.y14_c00178{bottom:1003.013333pt;}
.y22_c00178{bottom:1005.306667pt;}
.y23_c00178{bottom:1006.080000pt;}
.y13_c00178{bottom:1028.346667pt;}
.y21_c00178{bottom:1059.066667pt;}
.y20_c00178{bottom:1060.613333pt;}
.y12_c00178{bottom:1061.373333pt;}
.y1f_c00178{bottom:1072.133333pt;}
.y1d_c00178{bottom:1075.200000pt;}
.y1e_c00178{bottom:1079.040000pt;}
.y1b_c00178{bottom:1099.773333pt;}
.y1c_c00178{bottom:1101.306667pt;}
.y19_c00178{bottom:1103.613333pt;}
.y1a_c00178{bottom:1105.146667pt;}
.y11_c00178{bottom:1105.920000pt;}
.y18_c00178{bottom:1106.693333pt;}
.y17_c00178{bottom:1109.760000pt;}
.y16_c00178{bottom:1125.120000pt;}
.y15_c00178{bottom:1126.653333pt;}
.y10_c00178{bottom:1142.786667pt;}
.yf_c00178{bottom:1145.093333pt;}
.ye_c00178{bottom:1159.680000pt;}
.yd_c00178{bottom:1161.986667pt;}
.yb_c00178{bottom:1171.200000pt;}
.yc_c00178{bottom:1171.973333pt;}
.y7_c00178{bottom:1236.480000pt;}
.y3_c00178{bottom:1239.546667pt;}
.y9_c00178{bottom:1241.093333pt;}
.y8_c00178{bottom:1247.226667pt;}
.y6_c00178{bottom:1248.773333pt;}
.y5_c00178{bottom:1264.133333pt;}
.y4_c00178{bottom:1266.426667pt;}
.y2_c00178{bottom:1284.093333pt;}
.y1_c00178{bottom:1285.626667pt;}
.h4_c00178{height:2.764500pt;}
.hd_c00178{height:4.799479pt;}
.hb_c00178{height:5.519401pt;}
.ha_c00178{height:8.303099pt;}
.h3_c00178{height:11.038802pt;}
.h2_c00178{height:13.822500pt;}
.h8_c00178{height:16.606198pt;}
.h9_c00178{height:19.341901pt;}
.h5_c00178{height:22.125599pt;}
.h22_c00178{height:24.861302pt;}
.hc_c00178{height:27.645000pt;}
.h2c_c00178{height:33.164401pt;}
.h2b_c00178{height:35.948099pt;}
.h6_c00178{height:38.683802pt;}
.h7_c00178{height:41.467500pt;}
.h28_c00178{height:46.986901pt;}
.h25_c00178{height:55.290000pt;}
.h1f_c00178{height:58.073698pt;}
.h24_c00178{height:60.809401pt;}
.h18_c00178{height:63.593099pt;}
.h19_c00178{height:66.328802pt;}
.h1c_c00178{height:69.112500pt;}
.h17_c00178{height:71.896198pt;}
.h23_c00178{height:74.631901pt;}
.h26_c00178{height:77.415599pt;}
.h1d_c00178{height:80.151302pt;}
.hf_c00178{height:82.935000pt;}
.h13_c00178{height:85.718698pt;}
.h16_c00178{height:88.454401pt;}
.h10_c00178{height:91.238099pt;}
.h20_c00178{height:93.973802pt;}
.h11_c00178{height:96.757500pt;}
.h1a_c00178{height:99.541198pt;}
.h1e_c00178{height:102.276901pt;}
.h21_c00178{height:105.060599pt;}
.h12_c00178{height:107.796302pt;}
.h15_c00178{height:110.580000pt;}
.he_c00178{height:113.363698pt;}
.h1b_c00178{height:116.099401pt;}
.h29_c00178{height:118.883099pt;}
.h27_c00178{height:121.618802pt;}
.h14_c00178{height:124.402500pt;}
.h2a_c00178{height:138.225000pt;}
.h0_c00178{height:1353.986667pt;}
.h1_c00178{height:1354.000000pt;}
.w0_c00178{width:984.573333pt;}
.w1_c00178{width:984.666667pt;}
.x0_c00178{left:0.000000pt;}
.x60_c00178{left:158.213333pt;}
.x61_c00178{left:174.333333pt;}
.x56_c00178{left:185.853333pt;}
.x57_c00178{left:191.226667pt;}
.x11_c00178{left:199.680000pt;}
.x3f_c00178{left:207.360000pt;}
.x26_c00178{left:216.573333pt;}
.x58_c00178{left:221.946667pt;}
.x4b_c00178{left:224.253333pt;}
.x40_c00178{left:231.173333pt;}
.x50_c00178{left:232.706667pt;}
.xf_c00178{left:234.240000pt;}
.x35_c00178{left:238.080000pt;}
.x4c_c00178{left:244.226667pt;}
.x10_c00178{left:251.906667pt;}
.x13_c00178{left:258.813333pt;}
.x12_c00178{left:276.480000pt;}
.x27_c00178{left:283.386667pt;}
.x41_c00178{left:304.133333pt;}
.x51_c00178{left:311.813333pt;}
.x28_c00178{left:314.106667pt;}
.x2f_c00178{left:317.946667pt;}
.x42_c00178{left:323.333333pt;}
.x3b_c00178{left:330.240000pt;}
.x43_c00178{left:334.853333pt;}
.x3_c00178{left:336.386667pt;}
.x3c_c00178{left:337.920000pt;}
.x4d_c00178{left:339.453333pt;}
.x59_c00178{left:347.133333pt;}
.x24_c00178{left:357.120000pt;}
.x36_c00178{left:360.960000pt;}
.x25_c00178{left:364.800000pt;}
.x62_c00178{left:366.333333pt;}
.x5a_c00178{left:370.173333pt;}
.x29_c00178{left:376.320000pt;}
.x44_c00178{left:383.226667pt;}
.x63_c00178{left:391.680000pt;}
.x4e_c00178{left:393.213333pt;}
.x6_c00178{left:400.133333pt;}
.x37_c00178{left:403.200000pt;}
.x4_c00178{left:405.506667pt;}
.x5_c00178{left:414.720000pt;}
.x52_c00178{left:435.453333pt;}
.x64_c00178{left:440.826667pt;}
.x2a_c00178{left:445.440000pt;}
.x31_c00178{left:448.506667pt;}
.x22_c00178{left:465.413333pt;}
.x5b_c00178{left:468.480000pt;}
.x38_c00178{left:477.693333pt;}
.x23_c00178{left:480.773333pt;}
.xb_c00178{left:497.666667pt;}
.xc_c00178{left:505.346667pt;}
.x32_c00178{left:515.333333pt;}
.x45_c00178{left:520.706667pt;}
.x53_c00178{left:536.826667pt;}
.x4f_c00178{left:538.373333pt;}
.x20_c00178{left:546.053333pt;}
.x1_c00178{left:548.346667pt;}
.x2_c00178{left:555.266667pt;}
.x21_c00178{left:556.800000pt;}
.x2b_c00178{left:562.173333pt;}
.x1d_c00178{left:571.386667pt;}
.x5c_c00178{left:576.000000pt;}
.x39_c00178{left:579.840000pt;}
.x46_c00178{left:583.680000pt;}
.x3d_c00178{left:587.520000pt;}
.x2c_c00178{left:595.200000pt;}
.x3e_c00178{left:600.573333pt;}
.x54_c00178{left:617.466667pt;}
.x5d_c00178{left:625.920000pt;}
.x33_c00178{left:636.666667pt;}
.x47_c00178{left:643.586667pt;}
.x16_c00178{left:674.306667pt;}
.x65_c00178{left:682.746667pt;}
.x17_c00178{left:688.133333pt;}
.x5e_c00178{left:700.413333pt;}
.x7_c00178{left:702.720000pt;}
.x34_c00178{left:708.866667pt;}
.x8_c00178{left:713.466667pt;}
.x66_c00178{left:716.546667pt;}
.x18_c00178{left:719.613333pt;}
.x30_c00178{left:728.066667pt;}
.x2d_c00178{left:730.373333pt;}
.x3a_c00178{left:737.280000pt;}
.x19_c00178{left:744.960000pt;}
.x5f_c00178{left:758.013333pt;}
.x55_c00178{left:767.226667pt;}
.x2e_c00178{left:775.680000pt;}
.x1a_c00178{left:781.053333pt;}
.x67_c00178{left:794.106667pt;}
.x1b_c00178{left:796.413333pt;}
.x48_c00178{left:807.173333pt;}
.x1c_c00178{left:811.013333pt;}
.x49_c00178{left:818.693333pt;}
.x4a_c00178{left:827.906667pt;}
.x1f_c00178{left:902.400000pt;}
.x1e_c00178{left:904.706667pt;}
.xd_c00178{left:907.013333pt;}
.x14_c00178{left:909.306667pt;}
.x15_c00178{left:917.760000pt;}
.xe_c00178{left:919.293333pt;}
.x9_c00178{left:925.440000pt;}
.x6a_c00178{left:932.346667pt;}
.xa_c00178{left:941.573333pt;}
.x68_c00178{left:943.106667pt;}
.x6b_c00178{left:947.706667pt;}
.x69_c00178{left:950.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_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_af46c76fb98d86f4fb9b0094.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.109863;font-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_c00179{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m11_c00179{transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);}
.m13_c00179{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m2_c00179{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00179{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);}
.m5_c00179{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);}
.m1_c00179{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.ma_c00179{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);}
.mb_c00179{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);}
.m15_c00179{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);}
.me_c00179{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00179{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);}
.mc_c00179{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00179{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);}
.m0_c00179{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m14_c00179{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m9_c00179{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m8_c00179{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md_c00179{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m6_c00179{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m12_c00179{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mf_c00179{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,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;}
.fs6_c00179{font-size:3.456000px;}
.fsd_c00179{font-size:6.900000px;}
.fs8_c00179{font-size:10.380000px;}
.fs1_c00179{font-size:13.800000px;}
.fs2_c00179{font-size:17.280000px;}
.fs9_c00179{font-size:20.760000px;}
.fs0_c00179{font-size:24.180000px;}
.fsb_c00179{font-size:27.660000px;}
.fsa_c00179{font-size:31.080000px;}
.fs5_c00179{font-size:38.040000px;}
.fs4_c00179{font-size:41.460000px;}
.fs7_c00179{font-size:48.360000px;}
.fs3_c00179{font-size:55.320000px;}
.fsc_c00179{font-size:82.920000px;}
.y0_c00179{bottom:0.000000px;}
.y1c_c00179{bottom:1041.120000px;}
.y1b_c00179{bottom:1041.990000px;}
.y1a_c00179{bottom:1067.040000px;}
.y19_c00179{bottom:1071.360000px;}
.y16_c00179{bottom:1092.090000px;}
.y17_c00179{bottom:1093.830000px;}
.y18_c00179{bottom:1094.685000px;}
.y15_c00179{bottom:1098.150000px;}
.yd_c00179{bottom:1109.370000px;}
.y13_c00179{bottom:1156.035000px;}
.y14_c00179{bottom:1158.630000px;}
.y12_c00179{bottom:1177.635000px;}
.y11_c00179{bottom:1197.510000px;}
.y10_c00179{bottom:1206.150000px;}
.yc_c00179{bottom:1226.010000px;}
.yf_c00179{bottom:1296.870000px;}
.ye_c00179{bottom:1298.595000px;}
.y5_c00179{bottom:1397.085000px;}
.y8_c00179{bottom:1398.810000px;}
.y7_c00179{bottom:1400.550000px;}
.y9_c00179{bottom:1401.405000px;}
.y4_c00179{bottom:1402.275000px;}
.yb_c00179{bottom:1413.510000px;}
.y6_c00179{bottom:1416.090000px;}
.ya_c00179{bottom:1420.410000px;}
.y3_c00179{bottom:1438.560000px;}
.y1_c00179{bottom:1442.010000px;}
.y2_c00179{bottom:1446.330000px;}
.h8_c00179{height:3.110063px;}
.hf_c00179{height:6.209326px;}
.ha_c00179{height:9.340986px;}
.h3_c00179{height:12.418652px;}
.h4_c00179{height:15.550313px;}
.hb_c00179{height:18.681973px;}
.h2_c00179{height:21.759639px;}
.hd_c00179{height:24.891299px;}
.hc_c00179{height:27.968965px;}
.h7_c00179{height:34.232285px;}
.h6_c00179{height:37.309951px;}
.h9_c00179{height:43.519277px;}
.h5_c00179{height:49.782598px;}
.he_c00179{height:74.619902px;}
.h1_c00179{height:1503.000000px;}
.h0_c00179{height:1503.360000px;}
.w0_c00179{width:1090.365000px;}
.w1_c00179{width:1090.500000px;}
.x0_c00179{left:0.000000px;}
.x10_c00179{left:125.280000px;}
.xf_c00179{left:127.875000px;}
.xd_c00179{left:129.600000px;}
.x11_c00179{left:136.515000px;}
.x12_c00179{left:145.155000px;}
.xe_c00179{left:149.475000px;}
.xa_c00179{left:179.715000px;}
.xb_c00179{left:193.530000px;}
.x18_c00179{left:197.850000px;}
.x19_c00179{left:215.130000px;}
.x16_c00179{left:391.395000px;}
.x13_c00179{left:410.400000px;}
.x14_c00179{left:419.910000px;}
.x3_c00179{left:527.910000px;}
.x17_c00179{left:529.635000px;}
.x15_c00179{left:533.085000px;}
.x4_c00179{left:540.870000px;}
.x5_c00179{left:648.870000px;}
.x7_c00179{left:655.770000px;}
.x8_c00179{left:660.960000px;}
.x6_c00179{left:694.650000px;}
.x1_c00179{left:769.830000px;}
.x2_c00179{left:779.325000px;}
.x9_c00179{left:795.750000px;}
.xc_c00179{left:924.480000px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls0_c00179{letter-spacing:0.000000pt;}
.ws0_c00179{word-spacing:0.000000pt;}
.fs6_c00179{font-size:3.072000pt;}
.fsd_c00179{font-size:6.133333pt;}
.fs8_c00179{font-size:9.226667pt;}
.fs1_c00179{font-size:12.266667pt;}
.fs2_c00179{font-size:15.360000pt;}
.fs9_c00179{font-size:18.453333pt;}
.fs0_c00179{font-size:21.493333pt;}
.fsb_c00179{font-size:24.586667pt;}
.fsa_c00179{font-size:27.626667pt;}
.fs5_c00179{font-size:33.813333pt;}
.fs4_c00179{font-size:36.853333pt;}
.fs7_c00179{font-size:42.986667pt;}
.fs3_c00179{font-size:49.173333pt;}
.fsc_c00179{font-size:73.706667pt;}
.y0_c00179{bottom:0.000000pt;}
.y1c_c00179{bottom:925.440000pt;}
.y1b_c00179{bottom:926.213333pt;}
.y1a_c00179{bottom:948.480000pt;}
.y19_c00179{bottom:952.320000pt;}
.y16_c00179{bottom:970.746667pt;}
.y17_c00179{bottom:972.293333pt;}
.y18_c00179{bottom:973.053333pt;}
.y15_c00179{bottom:976.133333pt;}
.yd_c00179{bottom:986.106667pt;}
.y13_c00179{bottom:1027.586667pt;}
.y14_c00179{bottom:1029.893333pt;}
.y12_c00179{bottom:1046.786667pt;}
.y11_c00179{bottom:1064.453333pt;}
.y10_c00179{bottom:1072.133333pt;}
.yc_c00179{bottom:1089.786667pt;}
.yf_c00179{bottom:1152.773333pt;}
.ye_c00179{bottom:1154.306667pt;}
.y5_c00179{bottom:1241.853333pt;}
.y8_c00179{bottom:1243.386667pt;}
.y7_c00179{bottom:1244.933333pt;}
.y9_c00179{bottom:1245.693333pt;}
.y4_c00179{bottom:1246.466667pt;}
.yb_c00179{bottom:1256.453333pt;}
.y6_c00179{bottom:1258.746667pt;}
.ya_c00179{bottom:1262.586667pt;}
.y3_c00179{bottom:1278.720000pt;}
.y1_c00179{bottom:1281.786667pt;}
.y2_c00179{bottom:1285.626667pt;}
.h8_c00179{height:2.764500pt;}
.hf_c00179{height:5.519401pt;}
.ha_c00179{height:8.303099pt;}
.h3_c00179{height:11.038802pt;}
.h4_c00179{height:13.822500pt;}
.hb_c00179{height:16.606198pt;}
.h2_c00179{height:19.341901pt;}
.hd_c00179{height:22.125599pt;}
.hc_c00179{height:24.861302pt;}
.h7_c00179{height:30.428698pt;}
.h6_c00179{height:33.164401pt;}
.h9_c00179{height:38.683802pt;}
.h5_c00179{height:44.251198pt;}
.he_c00179{height:66.328802pt;}
.h1_c00179{height:1336.000000pt;}
.h0_c00179{height:1336.320000pt;}
.w0_c00179{width:969.213333pt;}
.w1_c00179{width:969.333333pt;}
.x0_c00179{left:0.000000pt;}
.x10_c00179{left:111.360000pt;}
.xf_c00179{left:113.666667pt;}
.xd_c00179{left:115.200000pt;}
.x11_c00179{left:121.346667pt;}
.x12_c00179{left:129.026667pt;}
.xe_c00179{left:132.866667pt;}
.xa_c00179{left:159.746667pt;}
.xb_c00179{left:172.026667pt;}
.x18_c00179{left:175.866667pt;}
.x19_c00179{left:191.226667pt;}
.x16_c00179{left:347.906667pt;}
.x13_c00179{left:364.800000pt;}
.x14_c00179{left:373.253333pt;}
.x3_c00179{left:469.253333pt;}
.x17_c00179{left:470.786667pt;}
.x15_c00179{left:473.853333pt;}
.x4_c00179{left:480.773333pt;}
.x5_c00179{left:576.773333pt;}
.x7_c00179{left:582.906667pt;}
.x8_c00179{left:587.520000pt;}
.x6_c00179{left:617.466667pt;}
.x1_c00179{left:684.293333pt;}
.x2_c00179{left:692.733333pt;}
.x9_c00179{left:707.333333pt;}
.xc_c00179{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_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_adcb4a8b6f7c3faff2ee1972.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.109863;font-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_c00180{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1d2_c00180{transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);}
.meb_c00180{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);}
.m135_c00180{transform:matrix(0.071200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071200,0.000000,0.000000,0.250000,0,0);}
.m14f_c00180{transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);}
.m11a_c00180{transform:matrix(0.074150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074150,0.000000,0.000000,0.250000,0,0);}
.mc1_c00180{transform:matrix(0.074575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074575,0.000000,0.000000,0.250000,0,0);}
.m1a_c00180{transform:matrix(0.081150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081150,0.000000,0.000000,0.250000,0,0);}
.m24_c00180{transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);}
.m192_c00180{transform:matrix(0.085225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085225,0.000000,0.000000,0.250000,0,0);}
.m17_c00180{transform:matrix(0.085275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085275,0.000000,0.000000,0.250000,0,0);}
.m18d_c00180{transform:matrix(0.085475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085475,0.000000,0.000000,0.250000,0,0);}
.md7_c00180{transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);}
.m27_c00180{transform:matrix(0.088450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088450,0.000000,0.000000,0.250000,0,0);}
.m5f_c00180{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m3b_c00180{transform:matrix(0.093175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093175,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00180{transform:matrix(0.093575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093575,0.000000,0.000000,0.250000,0,0);}
.m56_c00180{transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);}
.m25_c00180{transform:matrix(0.096875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096875,0.000000,0.000000,0.250000,0,0);}
.m26_c00180{transform:matrix(0.097325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097325,0.000000,0.000000,0.250000,0,0);}
.m15_c00180{transform:matrix(0.098675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098675,0.000000,0.000000,0.250000,0,0);}
.m1cd_c00180{transform:matrix(0.099050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099050,0.000000,0.000000,0.250000,0,0);}
.m18_c00180{transform:matrix(0.100675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100675,0.000000,0.000000,0.250000,0,0);}
.m1ba_c00180{transform:matrix(0.101675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101675,0.000000,0.000000,0.250000,0,0);}
.m1dd_c00180{transform:matrix(0.102675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102675,0.000000,0.000000,0.250000,0,0);}
.m22_c00180{transform:matrix(0.102925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102925,0.000000,0.000000,0.250000,0,0);}
.m143_c00180{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m108_c00180{transform:matrix(0.105950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105950,0.000000,0.000000,0.250000,0,0);}
.m60_c00180{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00180{transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);}
.m1d8_c00180{transform:matrix(0.110175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110175,0.000000,0.000000,0.250000,0,0);}
.m107_c00180{transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);}
.m14c_c00180{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m193_c00180{transform:matrix(0.111350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111350,0.000000,0.000000,0.250000,0,0);}
.ma2_c00180{transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);}
.m142_c00180{transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);}
.m189_c00180{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);}
.m16f_c00180{transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);}
.m77_c00180{transform:matrix(0.114125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114125,0.000000,0.000000,0.250000,0,0);}
.m179_c00180{transform:matrix(0.114400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114400,0.000000,0.000000,0.250000,0,0);}
.m157_c00180{transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);}
.m4d_c00180{transform:matrix(0.114850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114850,0.000000,0.000000,0.250000,0,0);}
.m196_c00180{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);}
.m50_c00180{transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);}
.ma7_c00180{transform:matrix(0.117075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117075,0.000000,0.000000,0.250000,0,0);}
.m52_c00180{transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);}
.m176_c00180{transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);}
.m11f_c00180{transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);}
.m8b_c00180{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m198_c00180{transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);}
.ma5_c00180{transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);}
.m170_c00180{transform:matrix(0.120300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120300,0.000000,0.000000,0.250000,0,0);}
.m90_c00180{transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);}
.m14d_c00180{transform:matrix(0.120400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120400,0.000000,0.000000,0.250000,0,0);}
.m128_c00180{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m147_c00180{transform:matrix(0.121275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121275,0.000000,0.000000,0.250000,0,0);}
.m172_c00180{transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00180{transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);}
.m106_c00180{transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);}
.m104_c00180{transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);}
.m1b9_c00180{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m138_c00180{transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);}
.m9d_c00180{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00180{transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);}
.m75_c00180{transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);}
.m146_c00180{transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);}
.m194_c00180{transform:matrix(0.126550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126550,0.000000,0.000000,0.250000,0,0);}
.m80_c00180{transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);}
.ma1_c00180{transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);}
.m187_c00180{transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);}
.md4_c00180{transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);}
.m2e_c00180{transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);}
.m9b_c00180{transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);}
.m16a_c00180{transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);}
.m14_c00180{transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);}
.m197_c00180{transform:matrix(0.130850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130850,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00180{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);}
.m116_c00180{transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);}
.m43_c00180{transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);}
.m66_c00180{transform:matrix(0.133850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133850,0.000000,0.000000,0.250000,0,0);}
.m188_c00180{transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);}
.mf6_c00180{transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);}
.m55_c00180{transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);}
.m165_c00180{transform:matrix(0.134925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134925,0.000000,0.000000,0.250000,0,0);}
.m8c_c00180{transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);}
.m1b8_c00180{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);}
.m18f_c00180{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.m7a_c00180{transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);}
.m103_c00180{transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);}
.mf_c00180{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.m155_c00180{transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00180{transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);}
.m153_c00180{transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);}
.m115_c00180{transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);}
.m140_c00180{transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);}
.md5_c00180{transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00180{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mca_c00180{transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);}
.m180_c00180{transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);}
.m111_c00180{transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);}
.m86_c00180{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00180{transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);}
.m99_c00180{transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);}
.m84_c00180{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m121_c00180{transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);}
.m1de_c00180{transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);}
.m96_c00180{transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);}
.m13d_c00180{transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);}
.m110_c00180{transform:matrix(0.141775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141775,0.000000,0.000000,0.250000,0,0);}
.m88_c00180{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m16b_c00180{transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);}
.mf2_c00180{transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);}
.m4c_c00180{transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);}
.m57_c00180{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb3_c00180{transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);}
.m6e_c00180{transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);}
.m0_c00180{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1d0_c00180{transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);}
.m13c_c00180{transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);}
.m10_c00180{transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);}
.m10d_c00180{transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);}
.m5c_c00180{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m13f_c00180{transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);}
.mf0_c00180{transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);}
.m94_c00180{transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);}
.md6_c00180{transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);}
.mb9_c00180{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);}
.m2d_c00180{transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);}
.m87_c00180{transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);}
.m7d_c00180{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.m40_c00180{transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);}
.m1db_c00180{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m191_c00180{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);}
.m10f_c00180{transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);}
.mae_c00180{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m5a_c00180{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m182_c00180{transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);}
.m47_c00180{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m120_c00180{transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);}
.me0_c00180{transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);}
.m18e_c00180{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.m10e_c00180{transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);}
.m1dc_c00180{transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);}
.m12b_c00180{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);}
.mce_c00180{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.md0_c00180{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m81_c00180{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m183_c00180{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);}
.mc3_c00180{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.m7f_c00180{transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);}
.m126_c00180{transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);}
.mfd_c00180{transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);}
.m2f_c00180{transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);}
.m1d3_c00180{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m145_c00180{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m8e_c00180{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);}
.m151_c00180{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);}
.m132_c00180{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m16d_c00180{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.m5d_c00180{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);}
.m1c_c00180{transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);}
.m134_c00180{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);}
.m1b6_c00180{transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);}
.m144_c00180{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);}
.m16c_c00180{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00180{transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);}
.m5b_c00180{transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00180{transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);}
.m7b_c00180{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m5e_c00180{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m1cc_c00180{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.mfc_c00180{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.mc2_c00180{transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);}
.mfb_c00180{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.m37_c00180{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.ma6_c00180{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);}
.m54_c00180{transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);}
.m1ca_c00180{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.mec_c00180{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);}
.m7e_c00180{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.maa_c00180{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.m156_c00180{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);}
.m10a_c00180{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.m1da_c00180{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m130_c00180{transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);}
.m1c8_c00180{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m123_c00180{transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);}
.m152_c00180{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);}
.m119_c00180{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m13a_c00180{transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);}
.m1cb_c00180{transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);}
.ma0_c00180{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.ma3_c00180{transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);}
.m112_c00180{transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);}
.mcc_c00180{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.mef_c00180{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m154_c00180{transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);}
.m1d6_c00180{transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);}
.m1d4_c00180{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.m17f_c00180{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.m17c_c00180{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);}
.mb8_c00180{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m16_c00180{transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);}
.mf3_c00180{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m51_c00180{transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00180{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);}
.m13e_c00180{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m12f_c00180{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.mc5_c00180{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m12d_c00180{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);}
.m148_c00180{transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);}
.m4a_c00180{transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);}
.m9c_c00180{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m19f_c00180{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);}
.m76_c00180{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);}
.m133_c00180{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m114_c00180{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.mb7_c00180{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);}
.m11d_c00180{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);}
.m4f_c00180{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);}
.m9f_c00180{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00180{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m125_c00180{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);}
.m95_c00180{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m18c_c00180{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);}
.m3f_c00180{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);}
.md2_c00180{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);}
.m136_c00180{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);}
.m1b1_c00180{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.m14a_c00180{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);}
.m59_c00180{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);}
.m122_c00180{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);}
.mc9_c00180{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.mf9_c00180{transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);}
.m164_c00180{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m6b_c00180{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);}
.m41_c00180{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);}
.md8_c00180{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);}
.mdc_c00180{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00180{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.mdb_c00180{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.m1c9_c00180{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.m171_c00180{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_c00180{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);}
.m173_c00180{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m10b_c00180{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.mdf_c00180{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);}
.m137_c00180{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m73_c00180{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m124_c00180{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00180{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);}
.m44_c00180{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.mb0_c00180{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m98_c00180{transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);}
.m19b_c00180{transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);}
.m141_c00180{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.mee_c00180{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.mf5_c00180{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);}
.m4b_c00180{transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);}
.m67_c00180{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m64_c00180{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m14e_c00180{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);}
.m28_c00180{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m12e_c00180{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m78_c00180{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);}
.me1_c00180{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);}
.mf8_c00180{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.me4_c00180{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.mcb_c00180{transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);}
.m42_c00180{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);}
.m1c7_c00180{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.m100_c00180{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);}
.m166_c00180{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m18b_c00180{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.med_c00180{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m11c_c00180{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);}
.mcf_c00180{transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);}
.mfe_c00180{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);}
.m89_c00180{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);}
.m3e_c00180{transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);}
.m113_c00180{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.mfa_c00180{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);}
.m3a_c00180{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.mad_c00180{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m1f_c00180{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);}
.m1bb_c00180{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);}
.m159_c00180{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);}
.ma4_c00180{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m46_c00180{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.m6c_c00180{transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00180{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.m129_c00180{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.md3_c00180{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.mb2_c00180{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.m13b_c00180{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.mc7_c00180{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);}
.m158_c00180{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);}
.m174_c00180{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.mcd_c00180{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);}
.mf4_c00180{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);}
.m150_c00180{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);}
.m68_c00180{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);}
.m8f_c00180{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.mde_c00180{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mda_c00180{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.m1b_c00180{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m83_c00180{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m118_c00180{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);}
.m16e_c00180{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.mdd_c00180{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);}
.m195_c00180{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);}
.m184_c00180{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.mab_c00180{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);}
.mba_c00180{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);}
.m17b_c00180{transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);}
.m185_c00180{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.m167_c00180{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);}
.m49_c00180{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.m85_c00180{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);}
.m31_c00180{transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);}
.md1_c00180{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);}
.m70_c00180{transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);}
.m102_c00180{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);}
.m2b_c00180{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.m1cf_c00180{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.me2_c00180{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m1be_c00180{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m17a_c00180{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m19d_c00180{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m105_c00180{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);}
.m1a2_c00180{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.mbc_c00180{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);}
.mf1_c00180{transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);}
.m139_c00180{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);}
.m181_c00180{transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);}
.mff_c00180{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m1c6_c00180{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);}
.m1ce_c00180{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);}
.m1bf_c00180{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);}
.m117_c00180{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m14b_c00180{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.m32_c00180{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m69_c00180{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);}
.m131_c00180{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.m18a_c00180{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);}
.me3_c00180{transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);}
.m10c_c00180{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);}
.m82_c00180{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);}
.m45_c00180{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);}
.m162_c00180{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);}
.m74_c00180{transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);}
.mb6_c00180{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m12_c00180{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);}
.m127_c00180{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m35_c00180{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);}
.m149_c00180{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);}
.m1a0_c00180{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);}
.mb1_c00180{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);}
.m9a_c00180{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);}
.m17d_c00180{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);}
.m72_c00180{transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);}
.mac_c00180{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);}
.m3d_c00180{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);}
.m1af_c00180{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);}
.m1c5_c00180{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);}
.m97_c00180{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);}
.m178_c00180{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);}
.mbf_c00180{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);}
.mc4_c00180{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);}
.mb4_c00180{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);}
.m1d5_c00180{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.md9_c00180{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);}
.mbb_c00180{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.me7_c00180{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);}
.m190_c00180{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);}
.m79_c00180{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);}
.m20_c00180{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);}
.ma9_c00180{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);}
.m36_c00180{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);}
.m23_c00180{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);}
.m4e_c00180{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00180{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m93_c00180{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00180{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);}
.m6d_c00180{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00180{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);}
.m62_c00180{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d9_c00180{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);}
.m30_c00180{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m53_c00180{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c00180{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);}
.m48_c00180{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);}
.m38_c00180{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);}
.m11_c00180{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m177_c00180{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00180{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11b_c00180{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m101_c00180{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);}
.mbd_c00180{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m92_c00180{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c00180{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00180{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00180{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c00180{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);}
.m1a4_c00180{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m33_c00180{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me6_c00180{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00180{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9e_c00180{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c00180{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);}
.m19_c00180{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m19c_c00180{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);}
.mc0_c00180{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.me5_c00180{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);}
.m39_c00180{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00180{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00180{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00180{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m8_c00180{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m175_c00180{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m15d_c00180{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);}
.m71_c00180{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);}
.maf_c00180{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);}
.m15c_c00180{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00180{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m91_c00180{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1d1_c00180{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.me_c00180{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00180{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);}
.m2a_c00180{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1c4_c00180{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00180{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m169_c00180{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m7_c00180{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m58_c00180{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m163_c00180{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m63_c00180{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);}
.m17e_c00180{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00180{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00180{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1df_c00180{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1bc_c00180{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m15e_c00180{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m161_c00180{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00180{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);}
.m2_c00180{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.mb_c00180{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00180{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1c0_c00180{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.me8_c00180{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m186_c00180{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00180{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m19a_c00180{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00180{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m15f_c00180{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m199_c00180{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m1c1_c00180{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00180{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m1c3_c00180{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m1d7_c00180{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00180{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00180{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m15b_c00180{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m29_c00180{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.me9_c00180{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m34_c00180{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.m61_c00180{transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00180{transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);}
.m1_c00180{transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);}
.m109_c00180{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.m1c2_c00180{transform:matrix(1.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.242500,0.000000,0.000000,0.250000,0,0);}
.m15a_c00180{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.m168_c00180{transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);}
.m65_c00180{transform:matrix(1.747500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.747500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.747500,0.000000,0.000000,0.250000,0,0);}
.m160_c00180{transform:matrix(1.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.767500,0.000000,0.000000,0.250000,0,0);}
.mc_c00180{transform:matrix(2.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.267500,0.000000,0.000000,0.250000,0,0);}
.mea_c00180{transform:matrix(2.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.410000,0.000000,0.000000,0.250000,0,0);}
.m19e_c00180{transform:matrix(2.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.565000,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00180{transform:matrix(4.900000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.900000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.900000,0.000000,0.000000,0.250000,0,0);}
.m4_c00180{transform:matrix(11.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(11.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(11.992500,0.000000,0.000000,0.250000,0,0);}
.v2_c00180{vertical-align:-13.860000px;}
.v1_c00180{vertical-align:-3.420000px;}
.v0_c00180{vertical-align:0.000000px;}
.ls2_c00180{letter-spacing:0.000000px;}
.ls1_c00180{letter-spacing:148.689000px;}
.ls0_c00180{letter-spacing:430.068000px;}
.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;}
}
.ws2_c00180{word-spacing:0.000000px;}
.ws1_c00180{word-spacing:27.224436px;}
.ws0_c00180{word-spacing:42.553152px;}
.fc0_c00180{color:transparent;}
.fs9_c00180{font-size:3.456000px;}
.fs2_c00180{font-size:6.000000px;}
.fs0_c00180{font-size:6.900000px;}
.fsc_c00180{font-size:10.380000px;}
.fsa_c00180{font-size:13.800000px;}
.fs1_c00180{font-size:17.280000px;}
.fsb_c00180{font-size:20.760000px;}
.fs14_c00180{font-size:24.180000px;}
.fs3_c00180{font-size:27.660000px;}
.fs26_c00180{font-size:31.080000px;}
.fs4_c00180{font-size:34.560000px;}
.fs18_c00180{font-size:38.040000px;}
.fs1c_c00180{font-size:41.460000px;}
.fs21_c00180{font-size:44.940000px;}
.fs23_c00180{font-size:48.360000px;}
.fs1e_c00180{font-size:51.840000px;}
.fs24_c00180{font-size:55.320000px;}
.fse_c00180{font-size:58.740000px;}
.fs1b_c00180{font-size:62.220000px;}
.fs12_c00180{font-size:65.640000px;}
.fs6_c00180{font-size:69.120000px;}
.fs7_c00180{font-size:72.600000px;}
.fs1d_c00180{font-size:76.020000px;}
.fs1f_c00180{font-size:79.500000px;}
.fs5_c00180{font-size:82.920000px;}
.fs15_c00180{font-size:86.400000px;}
.fs19_c00180{font-size:89.880000px;}
.fs17_c00180{font-size:93.300000px;}
.fs13_c00180{font-size:96.780000px;}
.fs1a_c00180{font-size:100.200000px;}
.fs8_c00180{font-size:103.680000px;}
.fs25_c00180{font-size:107.160000px;}
.fs16_c00180{font-size:110.580000px;}
.fs22_c00180{font-size:114.060000px;}
.fsd_c00180{font-size:117.480000px;}
.fs20_c00180{font-size:120.960000px;}
.fs11_c00180{font-size:124.440000px;}
.fs10_c00180{font-size:127.860000px;}
.fsf_c00180{font-size:131.340000px;}
.fs27_c00180{font-size:134.760000px;}
.y0_c00180{bottom:0.000000px;}
.y1bf_c00180{bottom:204.765000px;}
.y1b7_c00180{bottom:220.320000px;}
.y1b6_c00180{bottom:222.915000px;}
.y1ba_c00180{bottom:224.640000px;}
.y1bc_c00180{bottom:225.510000px;}
.y1be_c00180{bottom:226.365000px;}
.y1b8_c00180{bottom:229.830000px;}
.y1b9_c00180{bottom:232.410000px;}
.y1bd_c00180{bottom:234.150000px;}
.y1b5_c00180{bottom:245.370000px;}
.y1bb_c00180{bottom:247.110000px;}
.y1b0_c00180{bottom:250.560000px;}
.y1b4_c00180{bottom:252.285000px;}
.y1ae_c00180{bottom:254.010000px;}
.y1b3_c00180{bottom:254.880000px;}
.y1b2_c00180{bottom:256.605000px;}
.y1af_c00180{bottom:257.475000px;}
.y1b1_c00180{bottom:258.330000px;}
.y1ad_c00180{bottom:269.565000px;}
.y1ac_c00180{bottom:273.885000px;}
.y1aa_c00180{bottom:275.610000px;}
.y1a8_c00180{bottom:278.205000px;}
.y1a9_c00180{bottom:280.800000px;}
.y1ab_c00180{bottom:281.670000px;}
.y1a1_c00180{bottom:282.525000px;}
.y1a3_c00180{bottom:284.250000px;}
.y1a7_c00180{bottom:289.440000px;}
.y1a5_c00180{bottom:292.035000px;}
.y1a4_c00180{bottom:292.890000px;}
.y1a0_c00180{bottom:294.630000px;}
.y19f_c00180{bottom:295.485000px;}
.y1a6_c00180{bottom:298.950000px;}
.y1a2_c00180{bottom:300.675000px;}
.y19e_c00180{bottom:303.270000px;}
.y19d_c00180{bottom:304.125000px;}
.y19b_c00180{bottom:304.995000px;}
.y19c_c00180{bottom:308.445000px;}
.y19a_c00180{bottom:330.045000px;}
.y190_c00180{bottom:330.915000px;}
.y196_c00180{bottom:331.770000px;}
.y195_c00180{bottom:334.365000px;}
.y198_c00180{bottom:336.090000px;}
.y197_c00180{bottom:337.830000px;}
.y191_c00180{bottom:339.555000px;}
.y192_c00180{bottom:340.410000px;}
.y199_c00180{bottom:341.280000px;}
.y193_c00180{bottom:342.150000px;}
.y194_c00180{bottom:343.875000px;}
.y18a_c00180{bottom:344.730000px;}
.y18b_c00180{bottom:346.470000px;}
.y18c_c00180{bottom:347.325000px;}
.y18d_c00180{bottom:349.050000px;}
.y187_c00180{bottom:349.920000px;}
.y189_c00180{bottom:350.790000px;}
.y188_c00180{bottom:355.110000px;}
.y18e_c00180{bottom:359.430000px;}
.y18f_c00180{bottom:360.285000px;}
.y181_c00180{bottom:380.160000px;}
.y185_c00180{bottom:381.030000px;}
.y184_c00180{bottom:382.755000px;}
.y186_c00180{bottom:383.610000px;}
.y183_c00180{bottom:385.350000px;}
.y180_c00180{bottom:386.205000px;}
.y17e_c00180{bottom:387.075000px;}
.y17b_c00180{bottom:387.930000px;}
.y182_c00180{bottom:388.800000px;}
.y179_c00180{bottom:389.670000px;}
.y17c_c00180{bottom:391.395000px;}
.y17d_c00180{bottom:392.250000px;}
.y17f_c00180{bottom:393.120000px;}
.y173_c00180{bottom:393.990000px;}
.y174_c00180{bottom:394.845000px;}
.y178_c00180{bottom:397.440000px;}
.y172_c00180{bottom:398.310000px;}
.y175_c00180{bottom:399.165000px;}
.y177_c00180{bottom:400.035000px;}
.y176_c00180{bottom:400.890000px;}
.y171_c00180{bottom:403.485000px;}
.y17a_c00180{bottom:405.210000px;}
.y170_c00180{bottom:406.080000px;}
.y16c_c00180{bottom:406.950000px;}
.y16d_c00180{bottom:408.675000px;}
.y16e_c00180{bottom:413.850000px;}
.y16b_c00180{bottom:414.720000px;}
.y16f_c00180{bottom:415.590000px;}
.y169_c00180{bottom:428.550000px;}
.y166_c00180{bottom:429.405000px;}
.y167_c00180{bottom:432.000000px;}
.y168_c00180{bottom:435.450000px;}
.y16a_c00180{bottom:437.190000px;}
.y165_c00180{bottom:440.640000px;}
.y164_c00180{bottom:448.410000px;}
.y162_c00180{bottom:458.790000px;}
.y163_c00180{bottom:459.645000px;}
.y15e_c00180{bottom:460.515000px;}
.y161_c00180{bottom:462.240000px;}
.y15d_c00180{bottom:464.835000px;}
.y160_c00180{bottom:467.430000px;}
.y15f_c00180{bottom:470.880000px;}
.y155_c00180{bottom:480.390000px;}
.y154_c00180{bottom:483.840000px;}
.y159_c00180{bottom:484.710000px;}
.y15b_c00180{bottom:487.290000px;}
.y158_c00180{bottom:488.160000px;}
.y15a_c00180{bottom:489.030000px;}
.y153_c00180{bottom:489.885000px;}
.y157_c00180{bottom:492.480000px;}
.y156_c00180{bottom:493.350000px;}
.y15c_c00180{bottom:505.440000px;}
.y151_c00180{bottom:506.310000px;}
.y152_c00180{bottom:508.035000px;}
.y150_c00180{bottom:508.890000px;}
.y14f_c00180{bottom:510.630000px;}
.y14d_c00180{bottom:511.485000px;}
.y14e_c00180{bottom:512.355000px;}
.y14c_c00180{bottom:514.950000px;}
.y14b_c00180{bottom:540.000000px;}
.y148_c00180{bottom:540.870000px;}
.y14a_c00180{bottom:541.725000px;}
.y149_c00180{bottom:542.595000px;}
.y147_c00180{bottom:543.450000px;}
.y13b_c00180{bottom:544.320000px;}
.y13c_c00180{bottom:545.190000px;}
.y145_c00180{bottom:546.045000px;}
.y13e_c00180{bottom:546.915000px;}
.y143_c00180{bottom:547.770000px;}
.y13a_c00180{bottom:548.640000px;}
.y141_c00180{bottom:549.510000px;}
.y142_c00180{bottom:551.235000px;}
.y13f_c00180{bottom:552.090000px;}
.y13d_c00180{bottom:553.830000px;}
.y144_c00180{bottom:554.685000px;}
.y146_c00180{bottom:557.280000px;}
.y140_c00180{bottom:558.150000px;}
.y136_c00180{bottom:560.730000px;}
.y131_c00180{bottom:561.600000px;}
.y132_c00180{bottom:563.325000px;}
.y130_c00180{bottom:565.050000px;}
.y133_c00180{bottom:565.920000px;}
.y12f_c00180{bottom:571.110000px;}
.y134_c00180{bottom:571.965000px;}
.y12e_c00180{bottom:574.560000px;}
.y135_c00180{bottom:575.430000px;}
.y138_c00180{bottom:576.285000px;}
.y139_c00180{bottom:577.155000px;}
.y137_c00180{bottom:581.475000px;}
.y12d_c00180{bottom:584.070000px;}
.y12c_c00180{bottom:584.925000px;}
.y129_c00180{bottom:588.390000px;}
.y128_c00180{bottom:589.245000px;}
.y12b_c00180{bottom:590.115000px;}
.y127_c00180{bottom:592.710000px;}
.y12a_c00180{bottom:593.565000px;}
.y122_c00180{bottom:609.120000px;}
.y120_c00180{bottom:609.990000px;}
.y11c_c00180{bottom:610.845000px;}
.y11e_c00180{bottom:611.715000px;}
.y125_c00180{bottom:612.570000px;}
.y11f_c00180{bottom:613.440000px;}
.y124_c00180{bottom:614.310000px;}
.y126_c00180{bottom:615.165000px;}
.y11b_c00180{bottom:616.035000px;}
.y11d_c00180{bottom:616.890000px;}
.y123_c00180{bottom:620.355000px;}
.y121_c00180{bottom:624.675000px;}
.y119_c00180{bottom:634.170000px;}
.y116_c00180{bottom:636.765000px;}
.y117_c00180{bottom:637.635000px;}
.y118_c00180{bottom:639.360000px;}
.y114_c00180{bottom:640.230000px;}
.y113_c00180{bottom:641.085000px;}
.y115_c00180{bottom:642.810000px;}
.y11a_c00180{bottom:653.190000px;}
.y112_c00180{bottom:659.235000px;}
.y111_c00180{bottom:660.960000px;}
.y10c_c00180{bottom:661.830000px;}
.y10e_c00180{bottom:662.685000px;}
.y10f_c00180{bottom:663.555000px;}
.y110_c00180{bottom:664.410000px;}
.y10d_c00180{bottom:665.280000px;}
.y10a_c00180{bottom:686.010000px;}
.y105_c00180{bottom:687.750000px;}
.y106_c00180{bottom:688.605000px;}
.y109_c00180{bottom:689.475000px;}
.y104_c00180{bottom:691.200000px;}
.y107_c00180{bottom:695.520000px;}
.y108_c00180{bottom:696.390000px;}
.y10b_c00180{bottom:698.970000px;}
.y102_c00180{bottom:709.350000px;}
.yfa_c00180{bottom:710.205000px;}
.y103_c00180{bottom:711.930000px;}
.yfe_c00180{bottom:712.800000px;}
.y101_c00180{bottom:713.670000px;}
.yff_c00180{bottom:714.525000px;}
.yfc_c00180{bottom:716.250000px;}
.yfb_c00180{bottom:717.120000px;}
.y100_c00180{bottom:717.990000px;}
.y1c2_c00180{bottom:718.845000px;}
.yfd_c00180{bottom:720.570000px;}
.yf1_c00180{bottom:734.400000px;}
.yf6_c00180{bottom:735.270000px;}
.yf2_c00180{bottom:736.125000px;}
.yf7_c00180{bottom:736.995000px;}
.yf5_c00180{bottom:738.720000px;}
.yf8_c00180{bottom:739.590000px;}
.yf3_c00180{bottom:741.315000px;}
.yf4_c00180{bottom:746.490000px;}
.yf9_c00180{bottom:754.275000px;}
.yeb_c00180{bottom:757.725000px;}
.ye9_c00180{bottom:759.450000px;}
.yee_c00180{bottom:762.045000px;}
.yf0_c00180{bottom:763.770000px;}
.yec_c00180{bottom:764.640000px;}
.yef_c00180{bottom:765.510000px;}
.yed_c00180{bottom:768.090000px;}
.yea_c00180{bottom:769.830000px;}
.ye7_c00180{bottom:784.515000px;}
.ye6_c00180{bottom:785.370000px;}
.ye1_c00180{bottom:786.240000px;}
.ye3_c00180{bottom:787.110000px;}
.ye2_c00180{bottom:787.965000px;}
.ye4_c00180{bottom:788.835000px;}
.ye8_c00180{bottom:789.690000px;}
.ye0_c00180{bottom:792.285000px;}
.ye5_c00180{bottom:796.605000px;}
.ydd_c00180{bottom:807.840000px;}
.yda_c00180{bottom:808.710000px;}
.yde_c00180{bottom:809.565000px;}
.yd6_c00180{bottom:810.435000px;}
.yd7_c00180{bottom:811.290000px;}
.ydc_c00180{bottom:812.160000px;}
.ydb_c00180{bottom:813.030000px;}
.yd5_c00180{bottom:813.885000px;}
.yd9_c00180{bottom:814.755000px;}
.yd8_c00180{bottom:818.205000px;}
.ydf_c00180{bottom:822.525000px;}
.yd4_c00180{bottom:837.210000px;}
.ycc_c00180{bottom:838.950000px;}
.yd1_c00180{bottom:839.805000px;}
.yd2_c00180{bottom:840.675000px;}
.ycd_c00180{bottom:841.530000px;}
.yce_c00180{bottom:842.400000px;}
.ycf_c00180{bottom:844.125000px;}
.yd0_c00180{bottom:846.720000px;}
.yd3_c00180{bottom:850.170000px;}
.yc5_c00180{bottom:858.810000px;}
.yc7_c00180{bottom:859.680000px;}
.yc8_c00180{bottom:860.550000px;}
.yc9_c00180{bottom:861.405000px;}
.ycb_c00180{bottom:862.275000px;}
.yca_c00180{bottom:864.870000px;}
.yc6_c00180{bottom:866.595000px;}
.ybd_c00180{bottom:883.875000px;}
.ybc_c00180{bottom:884.730000px;}
.ybf_c00180{bottom:885.600000px;}
.yc3_c00180{bottom:886.470000px;}
.yc1_c00180{bottom:887.325000px;}
.ybe_c00180{bottom:889.050000px;}
.yc2_c00180{bottom:890.790000px;}
.yc0_c00180{bottom:893.370000px;}
.yc4_c00180{bottom:894.240000px;}
.ybb_c00180{bottom:904.605000px;}
.yba_c00180{bottom:908.925000px;}
.yb9_c00180{bottom:910.650000px;}
.yb8_c00180{bottom:911.520000px;}
.yb5_c00180{bottom:912.390000px;}
.yb7_c00180{bottom:914.115000px;}
.yb6_c00180{bottom:914.970000px;}
.yb4_c00180{bottom:929.670000px;}
.yb0_c00180{bottom:935.715000px;}
.yb1_c00180{bottom:936.570000px;}
.yad_c00180{bottom:937.440000px;}
.yab_c00180{bottom:938.310000px;}
.yae_c00180{bottom:939.165000px;}
.ya9_c00180{bottom:940.890000px;}
.yaa_c00180{bottom:941.760000px;}
.yac_c00180{bottom:942.630000px;}
.yb2_c00180{bottom:944.355000px;}
.y1c1_c00180{bottom:946.080000px;}
.yb3_c00180{bottom:947.805000px;}
.y1c0_c00180{bottom:948.675000px;}
.ya8_c00180{bottom:952.125000px;}
.yaf_c00180{bottom:952.995000px;}
.ya7_c00180{bottom:955.590000px;}
.ya6_c00180{bottom:957.315000px;}
.ya5_c00180{bottom:958.170000px;}
.ya3_c00180{bottom:959.040000px;}
.ya2_c00180{bottom:960.765000px;}
.ya1_c00180{bottom:961.635000px;}
.ya4_c00180{bottom:965.085000px;}
.y9d_c00180{bottom:965.955000px;}
.y9e_c00180{bottom:966.810000px;}
.y9f_c00180{bottom:967.680000px;}
.ya0_c00180{bottom:968.550000px;}
.y9b_c00180{bottom:974.595000px;}
.y9c_c00180{bottom:982.365000px;}
.y93_c00180{bottom:984.090000px;}
.y96_c00180{bottom:985.830000px;}
.y92_c00180{bottom:986.685000px;}
.y9a_c00180{bottom:988.410000px;}
.y99_c00180{bottom:989.280000px;}
.y95_c00180{bottom:990.150000px;}
.y97_c00180{bottom:991.005000px;}
.y94_c00180{bottom:992.730000px;}
.y98_c00180{bottom:994.470000px;}
.y90_c00180{bottom:1002.240000px;}
.y8b_c00180{bottom:1003.965000px;}
.y8a_c00180{bottom:1004.835000px;}
.y8c_c00180{bottom:1005.690000px;}
.y8f_c00180{bottom:1012.605000px;}
.y91_c00180{bottom:1016.925000px;}
.y8d_c00180{bottom:1019.520000px;}
.y8e_c00180{bottom:1026.435000px;}
.y87_c00180{bottom:1027.290000px;}
.y88_c00180{bottom:1028.160000px;}
.y83_c00180{bottom:1031.610000px;}
.y81_c00180{bottom:1033.350000px;}
.y89_c00180{bottom:1035.930000px;}
.y85_c00180{bottom:1040.250000px;}
.y86_c00180{bottom:1041.120000px;}
.y82_c00180{bottom:1041.990000px;}
.y84_c00180{bottom:1043.715000px;}
.y7b_c00180{bottom:1059.270000px;}
.y7a_c00180{bottom:1060.125000px;}
.y7f_c00180{bottom:1060.995000px;}
.y80_c00180{bottom:1062.720000px;}
.y7e_c00180{bottom:1066.170000px;}
.y7c_c00180{bottom:1067.910000px;}
.y7d_c00180{bottom:1072.230000px;}
.y78_c00180{bottom:1073.085000px;}
.y79_c00180{bottom:1074.810000px;}
.y6e_c00180{bottom:1082.595000px;}
.y71_c00180{bottom:1084.320000px;}
.y6f_c00180{bottom:1085.190000px;}
.y74_c00180{bottom:1086.915000px;}
.y70_c00180{bottom:1087.770000px;}
.y73_c00180{bottom:1088.640000px;}
.y76_c00180{bottom:1090.365000px;}
.y77_c00180{bottom:1092.090000px;}
.y75_c00180{bottom:1092.960000px;}
.y72_c00180{bottom:1097.280000px;}
.y66_c00180{bottom:1107.645000px;}
.y68_c00180{bottom:1111.965000px;}
.y67_c00180{bottom:1112.835000px;}
.y6c_c00180{bottom:1113.690000px;}
.y65_c00180{bottom:1114.560000px;}
.y6d_c00180{bottom:1115.430000px;}
.y69_c00180{bottom:1116.285000px;}
.y6b_c00180{bottom:1117.155000px;}
.y6a_c00180{bottom:1122.330000px;}
.y2_c00180{bottom:1127.520000px;}
.y1_c00180{bottom:1128.390000px;}
.y64_c00180{bottom:1135.290000px;}
.y5e_c00180{bottom:1136.160000px;}
.y60_c00180{bottom:1137.030000px;}
.y5f_c00180{bottom:1137.885000px;}
.y63_c00180{bottom:1138.755000px;}
.y61_c00180{bottom:1139.610000px;}
.y5d_c00180{bottom:1140.480000px;}
.y62_c00180{bottom:1141.350000px;}
.y59_c00180{bottom:1158.630000px;}
.y58_c00180{bottom:1161.210000px;}
.y57_c00180{bottom:1162.080000px;}
.y5a_c00180{bottom:1162.950000px;}
.y5c_c00180{bottom:1165.530000px;}
.y5b_c00180{bottom:1166.400000px;}
.y56_c00180{bottom:1177.635000px;}
.y53_c00180{bottom:1178.490000px;}
.y4d_c00180{bottom:1179.360000px;}
.y54_c00180{bottom:1180.230000px;}
.y4e_c00180{bottom:1181.085000px;}
.y4c_c00180{bottom:1181.955000px;}
.y4b_c00180{bottom:1182.810000px;}
.y55_c00180{bottom:1183.680000px;}
.y4f_c00180{bottom:1187.130000px;}
.y50_c00180{bottom:1188.870000px;}
.y51_c00180{bottom:1190.595000px;}
.y52_c00180{bottom:1192.320000px;}
.y4a_c00180{bottom:1202.685000px;}
.y46_c00180{bottom:1203.555000px;}
.y44_c00180{bottom:1206.150000px;}
.y43_c00180{bottom:1208.730000px;}
.y45_c00180{bottom:1210.470000px;}
.y48_c00180{bottom:1212.195000px;}
.y47_c00180{bottom:1217.370000px;}
.y49_c00180{bottom:1219.110000px;}
.y40_c00180{bottom:1236.390000px;}
.y3f_c00180{bottom:1237.245000px;}
.y41_c00180{bottom:1238.115000px;}
.y3e_c00180{bottom:1239.840000px;}
.y42_c00180{bottom:1240.710000px;}
.y3d_c00180{bottom:1259.715000px;}
.y37_c00180{bottom:1260.570000px;}
.y38_c00180{bottom:1264.890000px;}
.y39_c00180{bottom:1265.760000px;}
.y3a_c00180{bottom:1266.630000px;}
.y3c_c00180{bottom:1267.485000px;}
.y3b_c00180{bottom:1269.210000px;}
.y36_c00180{bottom:1276.995000px;}
.y2e_c00180{bottom:1283.910000px;}
.y35_c00180{bottom:1285.635000px;}
.y2b_c00180{bottom:1288.230000px;}
.y32_c00180{bottom:1289.085000px;}
.y30_c00180{bottom:1289.955000px;}
.y2c_c00180{bottom:1290.810000px;}
.y2d_c00180{bottom:1291.680000px;}
.y2f_c00180{bottom:1293.405000px;}
.y33_c00180{bottom:1294.275000px;}
.y34_c00180{bottom:1296.870000px;}
.y31_c00180{bottom:1308.960000px;}
.y2a_c00180{bottom:1309.830000px;}
.y25_c00180{bottom:1310.685000px;}
.y24_c00180{bottom:1311.555000px;}
.y26_c00180{bottom:1312.410000px;}
.y23_c00180{bottom:1313.280000px;}
.y28_c00180{bottom:1314.150000px;}
.y21_c00180{bottom:1315.005000px;}
.y22_c00180{bottom:1315.875000px;}
.y27_c00180{bottom:1317.600000px;}
.y29_c00180{bottom:1318.470000px;}
.y1f_c00180{bottom:1329.690000px;}
.y1d_c00180{bottom:1330.560000px;}
.y1a_c00180{bottom:1332.285000px;}
.y17_c00180{bottom:1333.155000px;}
.y1e_c00180{bottom:1335.750000px;}
.y19_c00180{bottom:1336.605000px;}
.y18_c00180{bottom:1339.200000px;}
.y16_c00180{bottom:1340.070000px;}
.y20_c00180{bottom:1340.925000px;}
.y1b_c00180{bottom:1343.520000px;}
.y1c_c00180{bottom:1344.390000px;}
.y15_c00180{bottom:1353.030000px;}
.y14_c00180{bottom:1354.755000px;}
.y10_c00180{bottom:1355.610000px;}
.yf_c00180{bottom:1358.205000px;}
.y11_c00180{bottom:1367.715000px;}
.y12_c00180{bottom:1368.570000px;}
.y13_c00180{bottom:1371.165000px;}
.yd_c00180{bottom:1388.445000px;}
.yb_c00180{bottom:1390.170000px;}
.ye_c00180{bottom:1391.040000px;}
.yc_c00180{bottom:1392.765000px;}
.y9_c00180{bottom:1394.490000px;}
.y6_c00180{bottom:1397.085000px;}
.y7_c00180{bottom:1401.405000px;}
.y8_c00180{bottom:1402.275000px;}
.ya_c00180{bottom:1403.130000px;}
.y5_c00180{bottom:1418.685000px;}
.y3_c00180{bottom:1421.280000px;}
.y4_c00180{bottom:1424.730000px;}
.hb_c00180{height:3.110063px;}
.h4_c00180{height:5.399414px;}
.he_c00180{height:5.920986px;}
.h2_c00180{height:6.209326px;}
.h17_c00180{height:9.340986px;}
.hc_c00180{height:12.418652px;}
.h3_c00180{height:15.550313px;}
.hd_c00180{height:18.681973px;}
.h16_c00180{height:21.759639px;}
.h5_c00180{height:24.891299px;}
.h29_c00180{height:27.968965px;}
.h6_c00180{height:31.100625px;}
.h1b_c00180{height:34.232285px;}
.h1f_c00180{height:37.309951px;}
.h24_c00180{height:40.441611px;}
.h26_c00180{height:43.519277px;}
.h21_c00180{height:46.650937px;}
.h27_c00180{height:49.782598px;}
.h10_c00180{height:52.860264px;}
.h1e_c00180{height:55.991924px;}
.h14_c00180{height:59.069590px;}
.h8_c00180{height:62.201250px;}
.h9_c00180{height:65.332910px;}
.h20_c00180{height:68.410576px;}
.h22_c00180{height:71.542236px;}
.h7_c00180{height:74.619902px;}
.h18_c00180{height:77.751563px;}
.h1c_c00180{height:80.883223px;}
.h1a_c00180{height:83.960889px;}
.h15_c00180{height:87.092549px;}
.h1d_c00180{height:90.170215px;}
.ha_c00180{height:93.301875px;}
.h28_c00180{height:96.433535px;}
.h19_c00180{height:99.511201px;}
.h25_c00180{height:102.642861px;}
.hf_c00180{height:105.720527px;}
.h23_c00180{height:108.852188px;}
.h13_c00180{height:111.983848px;}
.h12_c00180{height:115.061514px;}
.h11_c00180{height:118.193174px;}
.h2a_c00180{height:121.270840px;}
.h0_c00180{height:1523.235000px;}
.h1_c00180{height:1523.250000px;}
.w0_c00180{width:1107.645000px;}
.w1_c00180{width:1107.750000px;}
.x0_c00180{left:0.000000px;}
.x1_c00180{left:208.230000px;}
.x2_c00180{left:215.130000px;}
.xa5_c00180{left:218.595000px;}
.x3_c00180{left:228.960000px;}
.xa6_c00180{left:231.555000px;}
.x82_c00180{left:234.150000px;}
.x44_c00180{left:236.730375px;}
.x37_c00180{left:239.325000px;}
.xa7_c00180{left:241.050000px;}
.x45_c00180{left:243.645000px;}
.xb0_c00180{left:248.835000px;}
.x2a_c00180{left:251.430000px;}
.x8a_c00180{left:254.010000px;}
.x63_c00180{left:255.750000px;}
.x38_c00180{left:259.200000px;}
.x105_c00180{left:260.925000px;}
.xa8_c00180{left:263.520000px;}
.x71_c00180{left:266.970000px;}
.x9b_c00180{left:268.710000px;}
.x95_c00180{left:272.160000px;}
.x13_c00180{left:273.885000px;}
.x83_c00180{left:275.610000px;}
.x2b_c00180{left:277.350000px;}
.x1b_c00180{left:279.930000px;}
.xba_c00180{left:281.670000px;}
.xd9_c00180{left:283.395000px;}
.xdc_c00180{left:285.120000px;}
.x110_c00180{left:286.845000px;}
.x46_c00180{left:289.440000px;}
.xfa_c00180{left:298.080000px;}
.xe6_c00180{left:301.530000px;}
.x106_c00180{left:304.995000px;}
.xec_c00180{left:307.590000px;}
.x96_c00180{left:310.170000px;}
.xd4_c00180{left:311.910000px;}
.x84_c00180{left:314.490000px;}
.x1c_c00180{left:320.550000px;}
.xed_c00180{left:323.130000px;}
.x39_c00180{left:325.725000px;}
.x69_c00180{left:327.450000px;}
.x57_c00180{left:330.045000px;}
.x64_c00180{left:332.640000px;}
.x2c_c00180{left:336.090000px;}
.xf9_c00180{left:338.685000px;}
.xc5_c00180{left:340.410000px;}
.xa1_c00180{left:345.600000px;}
.xe2_c00180{left:347.325000px;}
.xb1_c00180{left:350.790000px;}
.x10c_c00180{left:352.515000px;}
.x4f_c00180{left:354.240000px;}
.xda_c00180{left:355.965000px;}
.x14_c00180{left:358.560000px;}
.xdd_c00180{left:360.285000px;}
.x97_c00180{left:362.010000px;}
.x8b_c00180{left:364.605000px;}
.x65_c00180{left:369.795000px;}
.x47_c00180{left:371.520000px;}
.x9_c00180{left:377.565000px;}
.xb2_c00180{left:380.160000px;}
.xd0_c00180{left:381.885000px;}
.xb4_c00180{left:385.350000px;}
.x3a_c00180{left:387.075000px;}
.x58_c00180{left:388.800000px;}
.x100_c00180{left:390.525000px;}
.x107_c00180{left:393.120000px;}
.x85_c00180{left:394.845000px;}
.x1d_c00180{left:400.890000px;}
.xde_c00180{left:404.355000px;}
.x2d_c00180{left:406.080000px;}
.x1e_c00180{left:411.270000px;}
.x1f_c00180{left:414.720000px;}
.xdf_c00180{left:416.445000px;}
.x6a_c00180{left:418.170000px;}
.xbb_c00180{left:419.910000px;}
.xe0_c00180{left:422.490000px;}
.xfb_c00180{left:424.230000px;}
.xb5_c00180{left:426.810000px;}
.x48_c00180{left:429.405000px;}
.x9c_c00180{left:432.000000px;}
.x15_c00180{left:436.320000px;}
.xa2_c00180{left:438.045000px;}
.x3b_c00180{left:440.640000px;}
.x10d_c00180{left:444.090000px;}
.x72_c00180{left:446.685000px;}
.x6b_c00180{left:448.410000px;}
.x10e_c00180{left:450.150000px;}
.xf_c00180{left:453.600000px;}
.x98_c00180{left:455.325000px;}
.x2e_c00180{left:457.050000px;}
.xee_c00180{left:458.790000px;}
.x101_c00180{left:460.515000px;}
.x86_c00180{left:463.110000px;}
.x9d_c00180{left:468.285000px;}
.x4_c00180{left:470.010000px;}
.x20_c00180{left:471.750000px;}
.x49_c00180{left:473.475000px;}
.xca_c00180{left:475.200000px;}
.xe3_c00180{left:476.925000px;}
.xa9_c00180{left:478.650000px;}
.x5_c00180{left:480.390000px;}
.x59_c00180{left:482.970000px;}
.x2f_c00180{left:484.710000px;}
.xa_c00180{left:487.290000px;}
.x87_c00180{left:489.885000px;}
.xaa_c00180{left:495.075000px;}
.x5a_c00180{left:496.800000px;}
.xd5_c00180{left:498.525000px;}
.x3c_c00180{left:500.250000px;}
.x79_c00180{left:501.990000px;}
.xfd_c00180{left:503.715000px;}
.xb8_c00180{left:505.440000px;}
.x88_c00180{left:508.890000px;}
.xfc_c00180{left:511.485000px;}
.x102_c00180{left:513.210000px;}
.x5b_c00180{left:515.805000px;}
.x10_c00180{left:518.400000px;}
.x21_c00180{left:520.995000px;}
.xd6_c00180{left:522.720000px;}
.xe7_c00180{left:527.040000px;}
.x10f_c00180{left:529.635000px;}
.xb_c00180{left:532.230000px;}
.xef_c00180{left:534.810000px;}
.xe4_c00180{left:536.550000px;}
.x8c_c00180{left:539.130000px;}
.x7a_c00180{left:541.725000px;}
.x11_c00180{left:543.450000px;}
.x3d_c00180{left:546.915000px;}
.xbf_c00180{left:548.640000px;}
.x6c_c00180{left:550.365000px;}
.xc6_c00180{left:552.090000px;}
.xab_c00180{left:554.685000px;}
.x7b_c00180{left:557.280000px;}
.x111_c00180{left:559.005000px;}
.x8d_c00180{left:561.600000px;}
.x4a_c00180{left:563.325000px;}
.x6_c00180{left:565.920000px;}
.xc0_c00180{left:568.515000px;}
.xdb_c00180{left:570.240000px;}
.xe5_c00180{left:571.965000px;}
.xe1_c00180{left:573.690000px;}
.x8e_c00180{left:576.285000px;}
.x16_c00180{left:578.010000px;}
.x7_c00180{left:579.750000px;}
.xc7_c00180{left:583.200000px;}
.x22_c00180{left:585.795000px;}
.x30_c00180{left:587.520000px;}
.x51_c00180{left:589.245000px;}
.xcb_c00180{left:590.970000px;}
.xd7_c00180{left:592.710000px;}
.xf5_c00180{left:596.160000px;}
.x8f_c00180{left:597.885000px;}
.xf0_c00180{left:599.610000px;}
.x5c_c00180{left:603.930000px;}
.xbc_c00180{left:605.670000px;}
.x6d_c00180{left:610.845000px;}
.x73_c00180{left:614.310000px;}
.x31_c00180{left:619.485000px;}
.xd1_c00180{left:621.210000px;}
.xc1_c00180{left:623.805000px;}
.xc_c00180{left:627.270000px;}
.x4b_c00180{left:629.850000px;}
.x66_c00180{left:633.315000px;}
.x5d_c00180{left:635.910000px;}
.x112_c00180{left:637.635000px;}
.x7c_c00180{left:639.360000px;}
.xf1_c00180{left:641.085000px;}
.x23_c00180{left:642.810000px;}
.xf6_c00180{left:644.550000px;}
.xcc_c00180{left:646.275000px;}
.xc2_c00180{left:648.870000px;}
.xf2_c00180{left:651.450000px;}
.x32_c00180{left:654.045000px;}
.xd_c00180{left:656.640000px;}
.xa3_c00180{left:660.090000px;}
.x3e_c00180{left:664.410000px;}
.xe8_c00180{left:666.150000px;}
.x52_c00180{left:667.875000px;}
.x24_c00180{left:669.600000px;}
.xc8_c00180{left:671.325000px;}
.x5e_c00180{left:673.920000px;}
.x17_c00180{left:675.645000px;}
.x89_c00180{left:677.370000px;}
.x90_c00180{left:679.965000px;}
.x99_c00180{left:682.560000px;}
.x6e_c00180{left:685.155000px;}
.x9e_c00180{left:686.880000px;}
.x25_c00180{left:689.475000px;}
.x74_c00180{left:691.200000px;}
.x5f_c00180{left:692.925000px;}
.xbd_c00180{left:694.650000px;}
.x18_c00180{left:697.245000px;}
.x75_c00180{left:699.840000px;}
.x7d_c00180{left:704.160000px;}
.x53_c00180{left:706.755000px;}
.x108_c00180{left:708.480000px;}
.x33_c00180{left:711.075000px;}
.x103_c00180{left:713.670000px;}
.xb3_c00180{left:719.715000px;}
.xac_c00180{left:721.440000px;}
.xfe_c00180{left:726.630000px;}
.xe9_c00180{left:729.210000px;}
.xc3_c00180{left:732.675000px;}
.xff_c00180{left:734.400000px;}
.x67_c00180{left:736.995000px;}
.x4c_c00180{left:738.720000px;}
.xa4_c00180{left:741.315000px;}
.x26_c00180{left:743.910000px;}
.x9f_c00180{left:745.635000px;}
.xd2_c00180{left:747.360000px;}
.x60_c00180{left:749.085000px;}
.x19_c00180{left:750.810000px;}
.x3f_c00180{left:753.405000px;}
.x76_c00180{left:759.450000px;}
.xcd_c00180{left:762.915000px;}
.x34_c00180{left:764.640000px;}
.x68_c00180{left:767.235000px;}
.xb6_c00180{left:770.685000px;}
.xa0_c00180{left:773.280000px;}
.x7e_c00180{left:775.875000px;}
.x61_c00180{left:777.600000px;}
.x6f_c00180{left:779.325000px;}
.x9a_c00180{left:782.790000px;}
.xf3_c00180{left:786.240000px;}
.x109_c00180{left:787.965525px;}
.x35_c00180{left:789.690000px;}
.xc4_c00180{left:791.430000px;}
.x7f_c00180{left:793.155000px;}
.x91_c00180{left:794.880000px;}
.x40_c00180{left:797.475000px;}
.x10a_c00180{left:799.200000px;}
.xad_c00180{left:804.390000px;}
.x50_c00180{left:806.115000px;}
.x77_c00180{left:809.565000px;}
.x1a_c00180{left:812.160000px;}
.x70_c00180{left:814.755000px;}
.x92_c00180{left:819.930000px;}
.x27_c00180{left:821.670000px;}
.x54_c00180{left:825.120000px;}
.x78_c00180{left:828.570000px;}
.x62_c00180{left:831.165000px;}
.xb9_c00180{left:832.890000px;}
.x93_c00180{left:835.485000px;}
.xc9_c00180{left:838.080000px;}
.xae_c00180{left:839.805000px;}
.x41_c00180{left:842.400000px;}
.x8_c00180{left:844.125000px;}
.x12_c00180{left:845.850000px;}
.x10b_c00180{left:847.590000px;}
.xea_c00180{left:851.040000px;}
.x104_c00180{left:852.765000px;}
.x28_c00180{left:855.360000px;}
.x94_c00180{left:857.955000px;}
.x4d_c00180{left:861.405000px;}
.xce_c00180{left:863.130000px;}
.x36_c00180{left:865.725000px;}
.x29_c00180{left:867.450000px;}
.xd3_c00180{left:869.190000px;}
.x42_c00180{left:870.915000px;}
.x80_c00180{left:874.365000px;}
.xe_c00180{left:876.960000px;}
.xd8_c00180{left:881.280000px;}
.x81_c00180{left:885.600000px;}
.xb7_c00180{left:887.325000px;}
.xeb_c00180{left:891.645000px;}
.x55_c00180{left:895.110000px;}
.x43_c00180{left:897.690000px;}
.xcf_c00180{left:902.880000px;}
.xf7_c00180{left:905.475000px;}
.x4e_c00180{left:907.200000px;}
.xf4_c00180{left:910.650000px;}
.xf8_c00180{left:913.245000px;}
.xaf_c00180{left:917.565000px;}
.x56_c00180{left:921.030000px;}
.xbe_c00180{left:924.480000px;}
.x116_c00180{left:946.950000px;}
.x117_c00180{left:966.810000px;}
.x113_c00180{left:1016.925000px;}
.x114_c00180{left:1040.250000px;}
.x115_c00180{left:1051.485000px;}
@media print{
.v2_c00180{vertical-align:-12.320000pt;}
.v1_c00180{vertical-align:-3.040000pt;}
.v0_c00180{vertical-align:0.000000pt;}
.ls2_c00180{letter-spacing:0.000000pt;}
.ls1_c00180{letter-spacing:132.168000pt;}
.ls0_c00180{letter-spacing:382.282667pt;}
.ws2_c00180{word-spacing:0.000000pt;}
.ws1_c00180{word-spacing:24.199498pt;}
.ws0_c00180{word-spacing:37.825024pt;}
.fs9_c00180{font-size:3.072000pt;}
.fs2_c00180{font-size:5.333333pt;}
.fs0_c00180{font-size:6.133333pt;}
.fsc_c00180{font-size:9.226667pt;}
.fsa_c00180{font-size:12.266667pt;}
.fs1_c00180{font-size:15.360000pt;}
.fsb_c00180{font-size:18.453333pt;}
.fs14_c00180{font-size:21.493333pt;}
.fs3_c00180{font-size:24.586667pt;}
.fs26_c00180{font-size:27.626667pt;}
.fs4_c00180{font-size:30.720000pt;}
.fs18_c00180{font-size:33.813333pt;}
.fs1c_c00180{font-size:36.853333pt;}
.fs21_c00180{font-size:39.946667pt;}
.fs23_c00180{font-size:42.986667pt;}
.fs1e_c00180{font-size:46.080000pt;}
.fs24_c00180{font-size:49.173333pt;}
.fse_c00180{font-size:52.213333pt;}
.fs1b_c00180{font-size:55.306667pt;}
.fs12_c00180{font-size:58.346667pt;}
.fs6_c00180{font-size:61.440000pt;}
.fs7_c00180{font-size:64.533333pt;}
.fs1d_c00180{font-size:67.573333pt;}
.fs1f_c00180{font-size:70.666667pt;}
.fs5_c00180{font-size:73.706667pt;}
.fs15_c00180{font-size:76.800000pt;}
.fs19_c00180{font-size:79.893333pt;}
.fs17_c00180{font-size:82.933333pt;}
.fs13_c00180{font-size:86.026667pt;}
.fs1a_c00180{font-size:89.066667pt;}
.fs8_c00180{font-size:92.160000pt;}
.fs25_c00180{font-size:95.253333pt;}
.fs16_c00180{font-size:98.293333pt;}
.fs22_c00180{font-size:101.386667pt;}
.fsd_c00180{font-size:104.426667pt;}
.fs20_c00180{font-size:107.520000pt;}
.fs11_c00180{font-size:110.613333pt;}
.fs10_c00180{font-size:113.653333pt;}
.fsf_c00180{font-size:116.746667pt;}
.fs27_c00180{font-size:119.786667pt;}
.y0_c00180{bottom:0.000000pt;}
.y1bf_c00180{bottom:182.013333pt;}
.y1b7_c00180{bottom:195.840000pt;}
.y1b6_c00180{bottom:198.146667pt;}
.y1ba_c00180{bottom:199.680000pt;}
.y1bc_c00180{bottom:200.453333pt;}
.y1be_c00180{bottom:201.213333pt;}
.y1b8_c00180{bottom:204.293333pt;}
.y1b9_c00180{bottom:206.586667pt;}
.y1bd_c00180{bottom:208.133333pt;}
.y1b5_c00180{bottom:218.106667pt;}
.y1bb_c00180{bottom:219.653333pt;}
.y1b0_c00180{bottom:222.720000pt;}
.y1b4_c00180{bottom:224.253333pt;}
.y1ae_c00180{bottom:225.786667pt;}
.y1b3_c00180{bottom:226.560000pt;}
.y1b2_c00180{bottom:228.093333pt;}
.y1af_c00180{bottom:228.866667pt;}
.y1b1_c00180{bottom:229.626667pt;}
.y1ad_c00180{bottom:239.613333pt;}
.y1ac_c00180{bottom:243.453333pt;}
.y1aa_c00180{bottom:244.986667pt;}
.y1a8_c00180{bottom:247.293333pt;}
.y1a9_c00180{bottom:249.600000pt;}
.y1ab_c00180{bottom:250.373333pt;}
.y1a1_c00180{bottom:251.133333pt;}
.y1a3_c00180{bottom:252.666667pt;}
.y1a7_c00180{bottom:257.280000pt;}
.y1a5_c00180{bottom:259.586667pt;}
.y1a4_c00180{bottom:260.346667pt;}
.y1a0_c00180{bottom:261.893333pt;}
.y19f_c00180{bottom:262.653333pt;}
.y1a6_c00180{bottom:265.733333pt;}
.y1a2_c00180{bottom:267.266667pt;}
.y19e_c00180{bottom:269.573333pt;}
.y19d_c00180{bottom:270.333333pt;}
.y19b_c00180{bottom:271.106667pt;}
.y19c_c00180{bottom:274.173333pt;}
.y19a_c00180{bottom:293.373333pt;}
.y190_c00180{bottom:294.146667pt;}
.y196_c00180{bottom:294.906667pt;}
.y195_c00180{bottom:297.213333pt;}
.y198_c00180{bottom:298.746667pt;}
.y197_c00180{bottom:300.293333pt;}
.y191_c00180{bottom:301.826667pt;}
.y192_c00180{bottom:302.586667pt;}
.y199_c00180{bottom:303.360000pt;}
.y193_c00180{bottom:304.133333pt;}
.y194_c00180{bottom:305.666667pt;}
.y18a_c00180{bottom:306.426667pt;}
.y18b_c00180{bottom:307.973333pt;}
.y18c_c00180{bottom:308.733333pt;}
.y18d_c00180{bottom:310.266667pt;}
.y187_c00180{bottom:311.040000pt;}
.y189_c00180{bottom:311.813333pt;}
.y188_c00180{bottom:315.653333pt;}
.y18e_c00180{bottom:319.493333pt;}
.y18f_c00180{bottom:320.253333pt;}
.y181_c00180{bottom:337.920000pt;}
.y185_c00180{bottom:338.693333pt;}
.y184_c00180{bottom:340.226667pt;}
.y186_c00180{bottom:340.986667pt;}
.y183_c00180{bottom:342.533333pt;}
.y180_c00180{bottom:343.293333pt;}
.y17e_c00180{bottom:344.066667pt;}
.y17b_c00180{bottom:344.826667pt;}
.y182_c00180{bottom:345.600000pt;}
.y179_c00180{bottom:346.373333pt;}
.y17c_c00180{bottom:347.906667pt;}
.y17d_c00180{bottom:348.666667pt;}
.y17f_c00180{bottom:349.440000pt;}
.y173_c00180{bottom:350.213333pt;}
.y174_c00180{bottom:350.973333pt;}
.y178_c00180{bottom:353.280000pt;}
.y172_c00180{bottom:354.053333pt;}
.y175_c00180{bottom:354.813333pt;}
.y177_c00180{bottom:355.586667pt;}
.y176_c00180{bottom:356.346667pt;}
.y171_c00180{bottom:358.653333pt;}
.y17a_c00180{bottom:360.186667pt;}
.y170_c00180{bottom:360.960000pt;}
.y16c_c00180{bottom:361.733333pt;}
.y16d_c00180{bottom:363.266667pt;}
.y16e_c00180{bottom:367.866667pt;}
.y16b_c00180{bottom:368.640000pt;}
.y16f_c00180{bottom:369.413333pt;}
.y169_c00180{bottom:380.933333pt;}
.y166_c00180{bottom:381.693333pt;}
.y167_c00180{bottom:384.000000pt;}
.y168_c00180{bottom:387.066667pt;}
.y16a_c00180{bottom:388.613333pt;}
.y165_c00180{bottom:391.680000pt;}
.y164_c00180{bottom:398.586667pt;}
.y162_c00180{bottom:407.813333pt;}
.y163_c00180{bottom:408.573333pt;}
.y15e_c00180{bottom:409.346667pt;}
.y161_c00180{bottom:410.880000pt;}
.y15d_c00180{bottom:413.186667pt;}
.y160_c00180{bottom:415.493333pt;}
.y15f_c00180{bottom:418.560000pt;}
.y155_c00180{bottom:427.013333pt;}
.y154_c00180{bottom:430.080000pt;}
.y159_c00180{bottom:430.853333pt;}
.y15b_c00180{bottom:433.146667pt;}
.y158_c00180{bottom:433.920000pt;}
.y15a_c00180{bottom:434.693333pt;}
.y153_c00180{bottom:435.453333pt;}
.y157_c00180{bottom:437.760000pt;}
.y156_c00180{bottom:438.533333pt;}
.y15c_c00180{bottom:449.280000pt;}
.y151_c00180{bottom:450.053333pt;}
.y152_c00180{bottom:451.586667pt;}
.y150_c00180{bottom:452.346667pt;}
.y14f_c00180{bottom:453.893333pt;}
.y14d_c00180{bottom:454.653333pt;}
.y14e_c00180{bottom:455.426667pt;}
.y14c_c00180{bottom:457.733333pt;}
.y14b_c00180{bottom:480.000000pt;}
.y148_c00180{bottom:480.773333pt;}
.y14a_c00180{bottom:481.533333pt;}
.y149_c00180{bottom:482.306667pt;}
.y147_c00180{bottom:483.066667pt;}
.y13b_c00180{bottom:483.840000pt;}
.y13c_c00180{bottom:484.613333pt;}
.y145_c00180{bottom:485.373333pt;}
.y13e_c00180{bottom:486.146667pt;}
.y143_c00180{bottom:486.906667pt;}
.y13a_c00180{bottom:487.680000pt;}
.y141_c00180{bottom:488.453333pt;}
.y142_c00180{bottom:489.986667pt;}
.y13f_c00180{bottom:490.746667pt;}
.y13d_c00180{bottom:492.293333pt;}
.y144_c00180{bottom:493.053333pt;}
.y146_c00180{bottom:495.360000pt;}
.y140_c00180{bottom:496.133333pt;}
.y136_c00180{bottom:498.426667pt;}
.y131_c00180{bottom:499.200000pt;}
.y132_c00180{bottom:500.733333pt;}
.y130_c00180{bottom:502.266667pt;}
.y133_c00180{bottom:503.040000pt;}
.y12f_c00180{bottom:507.653333pt;}
.y134_c00180{bottom:508.413333pt;}
.y12e_c00180{bottom:510.720000pt;}
.y135_c00180{bottom:511.493333pt;}
.y138_c00180{bottom:512.253333pt;}
.y139_c00180{bottom:513.026667pt;}
.y137_c00180{bottom:516.866667pt;}
.y12d_c00180{bottom:519.173333pt;}
.y12c_c00180{bottom:519.933333pt;}
.y129_c00180{bottom:523.013333pt;}
.y128_c00180{bottom:523.773333pt;}
.y12b_c00180{bottom:524.546667pt;}
.y127_c00180{bottom:526.853333pt;}
.y12a_c00180{bottom:527.613333pt;}
.y122_c00180{bottom:541.440000pt;}
.y120_c00180{bottom:542.213333pt;}
.y11c_c00180{bottom:542.973333pt;}
.y11e_c00180{bottom:543.746667pt;}
.y125_c00180{bottom:544.506667pt;}
.y11f_c00180{bottom:545.280000pt;}
.y124_c00180{bottom:546.053333pt;}
.y126_c00180{bottom:546.813333pt;}
.y11b_c00180{bottom:547.586667pt;}
.y11d_c00180{bottom:548.346667pt;}
.y123_c00180{bottom:551.426667pt;}
.y121_c00180{bottom:555.266667pt;}
.y119_c00180{bottom:563.706667pt;}
.y116_c00180{bottom:566.013333pt;}
.y117_c00180{bottom:566.786667pt;}
.y118_c00180{bottom:568.320000pt;}
.y114_c00180{bottom:569.093333pt;}
.y113_c00180{bottom:569.853333pt;}
.y115_c00180{bottom:571.386667pt;}
.y11a_c00180{bottom:580.613333pt;}
.y112_c00180{bottom:585.986667pt;}
.y111_c00180{bottom:587.520000pt;}
.y10c_c00180{bottom:588.293333pt;}
.y10e_c00180{bottom:589.053333pt;}
.y10f_c00180{bottom:589.826667pt;}
.y110_c00180{bottom:590.586667pt;}
.y10d_c00180{bottom:591.360000pt;}
.y10a_c00180{bottom:609.786667pt;}
.y105_c00180{bottom:611.333333pt;}
.y106_c00180{bottom:612.093333pt;}
.y109_c00180{bottom:612.866667pt;}
.y104_c00180{bottom:614.400000pt;}
.y107_c00180{bottom:618.240000pt;}
.y108_c00180{bottom:619.013333pt;}
.y10b_c00180{bottom:621.306667pt;}
.y102_c00180{bottom:630.533333pt;}
.yfa_c00180{bottom:631.293333pt;}
.y103_c00180{bottom:632.826667pt;}
.yfe_c00180{bottom:633.600000pt;}
.y101_c00180{bottom:634.373333pt;}
.yff_c00180{bottom:635.133333pt;}
.yfc_c00180{bottom:636.666667pt;}
.yfb_c00180{bottom:637.440000pt;}
.y100_c00180{bottom:638.213333pt;}
.y1c2_c00180{bottom:638.973333pt;}
.yfd_c00180{bottom:640.506667pt;}
.yf1_c00180{bottom:652.800000pt;}
.yf6_c00180{bottom:653.573333pt;}
.yf2_c00180{bottom:654.333333pt;}
.yf7_c00180{bottom:655.106667pt;}
.yf5_c00180{bottom:656.640000pt;}
.yf8_c00180{bottom:657.413333pt;}
.yf3_c00180{bottom:658.946667pt;}
.yf4_c00180{bottom:663.546667pt;}
.yf9_c00180{bottom:670.466667pt;}
.yeb_c00180{bottom:673.533333pt;}
.ye9_c00180{bottom:675.066667pt;}
.yee_c00180{bottom:677.373333pt;}
.yf0_c00180{bottom:678.906667pt;}
.yec_c00180{bottom:679.680000pt;}
.yef_c00180{bottom:680.453333pt;}
.yed_c00180{bottom:682.746667pt;}
.yea_c00180{bottom:684.293333pt;}
.ye7_c00180{bottom:697.346667pt;}
.ye6_c00180{bottom:698.106667pt;}
.ye1_c00180{bottom:698.880000pt;}
.ye3_c00180{bottom:699.653333pt;}
.ye2_c00180{bottom:700.413333pt;}
.ye4_c00180{bottom:701.186667pt;}
.ye8_c00180{bottom:701.946667pt;}
.ye0_c00180{bottom:704.253333pt;}
.ye5_c00180{bottom:708.093333pt;}
.ydd_c00180{bottom:718.080000pt;}
.yda_c00180{bottom:718.853333pt;}
.yde_c00180{bottom:719.613333pt;}
.yd6_c00180{bottom:720.386667pt;}
.yd7_c00180{bottom:721.146667pt;}
.ydc_c00180{bottom:721.920000pt;}
.ydb_c00180{bottom:722.693333pt;}
.yd5_c00180{bottom:723.453333pt;}
.yd9_c00180{bottom:724.226667pt;}
.yd8_c00180{bottom:727.293333pt;}
.ydf_c00180{bottom:731.133333pt;}
.yd4_c00180{bottom:744.186667pt;}
.ycc_c00180{bottom:745.733333pt;}
.yd1_c00180{bottom:746.493333pt;}
.yd2_c00180{bottom:747.266667pt;}
.ycd_c00180{bottom:748.026667pt;}
.yce_c00180{bottom:748.800000pt;}
.ycf_c00180{bottom:750.333333pt;}
.yd0_c00180{bottom:752.640000pt;}
.yd3_c00180{bottom:755.706667pt;}
.yc5_c00180{bottom:763.386667pt;}
.yc7_c00180{bottom:764.160000pt;}
.yc8_c00180{bottom:764.933333pt;}
.yc9_c00180{bottom:765.693333pt;}
.ycb_c00180{bottom:766.466667pt;}
.yca_c00180{bottom:768.773333pt;}
.yc6_c00180{bottom:770.306667pt;}
.ybd_c00180{bottom:785.666667pt;}
.ybc_c00180{bottom:786.426667pt;}
.ybf_c00180{bottom:787.200000pt;}
.yc3_c00180{bottom:787.973333pt;}
.yc1_c00180{bottom:788.733333pt;}
.ybe_c00180{bottom:790.266667pt;}
.yc2_c00180{bottom:791.813333pt;}
.yc0_c00180{bottom:794.106667pt;}
.yc4_c00180{bottom:794.880000pt;}
.ybb_c00180{bottom:804.093333pt;}
.yba_c00180{bottom:807.933333pt;}
.yb9_c00180{bottom:809.466667pt;}
.yb8_c00180{bottom:810.240000pt;}
.yb5_c00180{bottom:811.013333pt;}
.yb7_c00180{bottom:812.546667pt;}
.yb6_c00180{bottom:813.306667pt;}
.yb4_c00180{bottom:826.373333pt;}
.yb0_c00180{bottom:831.746667pt;}
.yb1_c00180{bottom:832.506667pt;}
.yad_c00180{bottom:833.280000pt;}
.yab_c00180{bottom:834.053333pt;}
.yae_c00180{bottom:834.813333pt;}
.ya9_c00180{bottom:836.346667pt;}
.yaa_c00180{bottom:837.120000pt;}
.yac_c00180{bottom:837.893333pt;}
.yb2_c00180{bottom:839.426667pt;}
.y1c1_c00180{bottom:840.960000pt;}
.yb3_c00180{bottom:842.493333pt;}
.y1c0_c00180{bottom:843.266667pt;}
.ya8_c00180{bottom:846.333333pt;}
.yaf_c00180{bottom:847.106667pt;}
.ya7_c00180{bottom:849.413333pt;}
.ya6_c00180{bottom:850.946667pt;}
.ya5_c00180{bottom:851.706667pt;}
.ya3_c00180{bottom:852.480000pt;}
.ya2_c00180{bottom:854.013333pt;}
.ya1_c00180{bottom:854.786667pt;}
.ya4_c00180{bottom:857.853333pt;}
.y9d_c00180{bottom:858.626667pt;}
.y9e_c00180{bottom:859.386667pt;}
.y9f_c00180{bottom:860.160000pt;}
.ya0_c00180{bottom:860.933333pt;}
.y9b_c00180{bottom:866.306667pt;}
.y9c_c00180{bottom:873.213333pt;}
.y93_c00180{bottom:874.746667pt;}
.y96_c00180{bottom:876.293333pt;}
.y92_c00180{bottom:877.053333pt;}
.y9a_c00180{bottom:878.586667pt;}
.y99_c00180{bottom:879.360000pt;}
.y95_c00180{bottom:880.133333pt;}
.y97_c00180{bottom:880.893333pt;}
.y94_c00180{bottom:882.426667pt;}
.y98_c00180{bottom:883.973333pt;}
.y90_c00180{bottom:890.880000pt;}
.y8b_c00180{bottom:892.413333pt;}
.y8a_c00180{bottom:893.186667pt;}
.y8c_c00180{bottom:893.946667pt;}
.y8f_c00180{bottom:900.093333pt;}
.y91_c00180{bottom:903.933333pt;}
.y8d_c00180{bottom:906.240000pt;}
.y8e_c00180{bottom:912.386667pt;}
.y87_c00180{bottom:913.146667pt;}
.y88_c00180{bottom:913.920000pt;}
.y83_c00180{bottom:916.986667pt;}
.y81_c00180{bottom:918.533333pt;}
.y89_c00180{bottom:920.826667pt;}
.y85_c00180{bottom:924.666667pt;}
.y86_c00180{bottom:925.440000pt;}
.y82_c00180{bottom:926.213333pt;}
.y84_c00180{bottom:927.746667pt;}
.y7b_c00180{bottom:941.573333pt;}
.y7a_c00180{bottom:942.333333pt;}
.y7f_c00180{bottom:943.106667pt;}
.y80_c00180{bottom:944.640000pt;}
.y7e_c00180{bottom:947.706667pt;}
.y7c_c00180{bottom:949.253333pt;}
.y7d_c00180{bottom:953.093333pt;}
.y78_c00180{bottom:953.853333pt;}
.y79_c00180{bottom:955.386667pt;}
.y6e_c00180{bottom:962.306667pt;}
.y71_c00180{bottom:963.840000pt;}
.y6f_c00180{bottom:964.613333pt;}
.y74_c00180{bottom:966.146667pt;}
.y70_c00180{bottom:966.906667pt;}
.y73_c00180{bottom:967.680000pt;}
.y76_c00180{bottom:969.213333pt;}
.y77_c00180{bottom:970.746667pt;}
.y75_c00180{bottom:971.520000pt;}
.y72_c00180{bottom:975.360000pt;}
.y66_c00180{bottom:984.573333pt;}
.y68_c00180{bottom:988.413333pt;}
.y67_c00180{bottom:989.186667pt;}
.y6c_c00180{bottom:989.946667pt;}
.y65_c00180{bottom:990.720000pt;}
.y6d_c00180{bottom:991.493333pt;}
.y69_c00180{bottom:992.253333pt;}
.y6b_c00180{bottom:993.026667pt;}
.y6a_c00180{bottom:997.626667pt;}
.y2_c00180{bottom:1002.240000pt;}
.y1_c00180{bottom:1003.013333pt;}
.y64_c00180{bottom:1009.146667pt;}
.y5e_c00180{bottom:1009.920000pt;}
.y60_c00180{bottom:1010.693333pt;}
.y5f_c00180{bottom:1011.453333pt;}
.y63_c00180{bottom:1012.226667pt;}
.y61_c00180{bottom:1012.986667pt;}
.y5d_c00180{bottom:1013.760000pt;}
.y62_c00180{bottom:1014.533333pt;}
.y59_c00180{bottom:1029.893333pt;}
.y58_c00180{bottom:1032.186667pt;}
.y57_c00180{bottom:1032.960000pt;}
.y5a_c00180{bottom:1033.733333pt;}
.y5c_c00180{bottom:1036.026667pt;}
.y5b_c00180{bottom:1036.800000pt;}
.y56_c00180{bottom:1046.786667pt;}
.y53_c00180{bottom:1047.546667pt;}
.y4d_c00180{bottom:1048.320000pt;}
.y54_c00180{bottom:1049.093333pt;}
.y4e_c00180{bottom:1049.853333pt;}
.y4c_c00180{bottom:1050.626667pt;}
.y4b_c00180{bottom:1051.386667pt;}
.y55_c00180{bottom:1052.160000pt;}
.y4f_c00180{bottom:1055.226667pt;}
.y50_c00180{bottom:1056.773333pt;}
.y51_c00180{bottom:1058.306667pt;}
.y52_c00180{bottom:1059.840000pt;}
.y4a_c00180{bottom:1069.053333pt;}
.y46_c00180{bottom:1069.826667pt;}
.y44_c00180{bottom:1072.133333pt;}
.y43_c00180{bottom:1074.426667pt;}
.y45_c00180{bottom:1075.973333pt;}
.y48_c00180{bottom:1077.506667pt;}
.y47_c00180{bottom:1082.106667pt;}
.y49_c00180{bottom:1083.653333pt;}
.y40_c00180{bottom:1099.013333pt;}
.y3f_c00180{bottom:1099.773333pt;}
.y41_c00180{bottom:1100.546667pt;}
.y3e_c00180{bottom:1102.080000pt;}
.y42_c00180{bottom:1102.853333pt;}
.y3d_c00180{bottom:1119.746667pt;}
.y37_c00180{bottom:1120.506667pt;}
.y38_c00180{bottom:1124.346667pt;}
.y39_c00180{bottom:1125.120000pt;}
.y3a_c00180{bottom:1125.893333pt;}
.y3c_c00180{bottom:1126.653333pt;}
.y3b_c00180{bottom:1128.186667pt;}
.y36_c00180{bottom:1135.106667pt;}
.y2e_c00180{bottom:1141.253333pt;}
.y35_c00180{bottom:1142.786667pt;}
.y2b_c00180{bottom:1145.093333pt;}
.y32_c00180{bottom:1145.853333pt;}
.y30_c00180{bottom:1146.626667pt;}
.y2c_c00180{bottom:1147.386667pt;}
.y2d_c00180{bottom:1148.160000pt;}
.y2f_c00180{bottom:1149.693333pt;}
.y33_c00180{bottom:1150.466667pt;}
.y34_c00180{bottom:1152.773333pt;}
.y31_c00180{bottom:1163.520000pt;}
.y2a_c00180{bottom:1164.293333pt;}
.y25_c00180{bottom:1165.053333pt;}
.y24_c00180{bottom:1165.826667pt;}
.y26_c00180{bottom:1166.586667pt;}
.y23_c00180{bottom:1167.360000pt;}
.y28_c00180{bottom:1168.133333pt;}
.y21_c00180{bottom:1168.893333pt;}
.y22_c00180{bottom:1169.666667pt;}
.y27_c00180{bottom:1171.200000pt;}
.y29_c00180{bottom:1171.973333pt;}
.y1f_c00180{bottom:1181.946667pt;}
.y1d_c00180{bottom:1182.720000pt;}
.y1a_c00180{bottom:1184.253333pt;}
.y17_c00180{bottom:1185.026667pt;}
.y1e_c00180{bottom:1187.333333pt;}
.y19_c00180{bottom:1188.093333pt;}
.y18_c00180{bottom:1190.400000pt;}
.y16_c00180{bottom:1191.173333pt;}
.y20_c00180{bottom:1191.933333pt;}
.y1b_c00180{bottom:1194.240000pt;}
.y1c_c00180{bottom:1195.013333pt;}
.y15_c00180{bottom:1202.693333pt;}
.y14_c00180{bottom:1204.226667pt;}
.y10_c00180{bottom:1204.986667pt;}
.yf_c00180{bottom:1207.293333pt;}
.y11_c00180{bottom:1215.746667pt;}
.y12_c00180{bottom:1216.506667pt;}
.y13_c00180{bottom:1218.813333pt;}
.yd_c00180{bottom:1234.173333pt;}
.yb_c00180{bottom:1235.706667pt;}
.ye_c00180{bottom:1236.480000pt;}
.yc_c00180{bottom:1238.013333pt;}
.y9_c00180{bottom:1239.546667pt;}
.y6_c00180{bottom:1241.853333pt;}
.y7_c00180{bottom:1245.693333pt;}
.y8_c00180{bottom:1246.466667pt;}
.ya_c00180{bottom:1247.226667pt;}
.y5_c00180{bottom:1261.053333pt;}
.y3_c00180{bottom:1263.360000pt;}
.y4_c00180{bottom:1266.426667pt;}
.hb_c00180{height:2.764500pt;}
.h4_c00180{height:4.799479pt;}
.he_c00180{height:5.263099pt;}
.h2_c00180{height:5.519401pt;}
.h17_c00180{height:8.303099pt;}
.hc_c00180{height:11.038802pt;}
.h3_c00180{height:13.822500pt;}
.hd_c00180{height:16.606198pt;}
.h16_c00180{height:19.341901pt;}
.h5_c00180{height:22.125599pt;}
.h29_c00180{height:24.861302pt;}
.h6_c00180{height:27.645000pt;}
.h1b_c00180{height:30.428698pt;}
.h1f_c00180{height:33.164401pt;}
.h24_c00180{height:35.948099pt;}
.h26_c00180{height:38.683802pt;}
.h21_c00180{height:41.467500pt;}
.h27_c00180{height:44.251198pt;}
.h10_c00180{height:46.986901pt;}
.h1e_c00180{height:49.770599pt;}
.h14_c00180{height:52.506302pt;}
.h8_c00180{height:55.290000pt;}
.h9_c00180{height:58.073698pt;}
.h20_c00180{height:60.809401pt;}
.h22_c00180{height:63.593099pt;}
.h7_c00180{height:66.328802pt;}
.h18_c00180{height:69.112500pt;}
.h1c_c00180{height:71.896198pt;}
.h1a_c00180{height:74.631901pt;}
.h15_c00180{height:77.415599pt;}
.h1d_c00180{height:80.151302pt;}
.ha_c00180{height:82.935000pt;}
.h28_c00180{height:85.718698pt;}
.h19_c00180{height:88.454401pt;}
.h25_c00180{height:91.238099pt;}
.hf_c00180{height:93.973802pt;}
.h23_c00180{height:96.757500pt;}
.h13_c00180{height:99.541198pt;}
.h12_c00180{height:102.276901pt;}
.h11_c00180{height:105.060599pt;}
.h2a_c00180{height:107.796302pt;}
.h0_c00180{height:1353.986667pt;}
.h1_c00180{height:1354.000000pt;}
.w0_c00180{width:984.573333pt;}
.w1_c00180{width:984.666667pt;}
.x0_c00180{left:0.000000pt;}
.x1_c00180{left:185.093333pt;}
.x2_c00180{left:191.226667pt;}
.xa5_c00180{left:194.306667pt;}
.x3_c00180{left:203.520000pt;}
.xa6_c00180{left:205.826667pt;}
.x82_c00180{left:208.133333pt;}
.x44_c00180{left:210.427000pt;}
.x37_c00180{left:212.733333pt;}
.xa7_c00180{left:214.266667pt;}
.x45_c00180{left:216.573333pt;}
.xb0_c00180{left:221.186667pt;}
.x2a_c00180{left:223.493333pt;}
.x8a_c00180{left:225.786667pt;}
.x63_c00180{left:227.333333pt;}
.x38_c00180{left:230.400000pt;}
.x105_c00180{left:231.933333pt;}
.xa8_c00180{left:234.240000pt;}
.x71_c00180{left:237.306667pt;}
.x9b_c00180{left:238.853333pt;}
.x95_c00180{left:241.920000pt;}
.x13_c00180{left:243.453333pt;}
.x83_c00180{left:244.986667pt;}
.x2b_c00180{left:246.533333pt;}
.x1b_c00180{left:248.826667pt;}
.xba_c00180{left:250.373333pt;}
.xd9_c00180{left:251.906667pt;}
.xdc_c00180{left:253.440000pt;}
.x110_c00180{left:254.973333pt;}
.x46_c00180{left:257.280000pt;}
.xfa_c00180{left:264.960000pt;}
.xe6_c00180{left:268.026667pt;}
.x106_c00180{left:271.106667pt;}
.xec_c00180{left:273.413333pt;}
.x96_c00180{left:275.706667pt;}
.xd4_c00180{left:277.253333pt;}
.x84_c00180{left:279.546667pt;}
.x1c_c00180{left:284.933333pt;}
.xed_c00180{left:287.226667pt;}
.x39_c00180{left:289.533333pt;}
.x69_c00180{left:291.066667pt;}
.x57_c00180{left:293.373333pt;}
.x64_c00180{left:295.680000pt;}
.x2c_c00180{left:298.746667pt;}
.xf9_c00180{left:301.053333pt;}
.xc5_c00180{left:302.586667pt;}
.xa1_c00180{left:307.200000pt;}
.xe2_c00180{left:308.733333pt;}
.xb1_c00180{left:311.813333pt;}
.x10c_c00180{left:313.346667pt;}
.x4f_c00180{left:314.880000pt;}
.xda_c00180{left:316.413333pt;}
.x14_c00180{left:318.720000pt;}
.xdd_c00180{left:320.253333pt;}
.x97_c00180{left:321.786667pt;}
.x8b_c00180{left:324.093333pt;}
.x65_c00180{left:328.706667pt;}
.x47_c00180{left:330.240000pt;}
.x9_c00180{left:335.613333pt;}
.xb2_c00180{left:337.920000pt;}
.xd0_c00180{left:339.453333pt;}
.xb4_c00180{left:342.533333pt;}
.x3a_c00180{left:344.066667pt;}
.x58_c00180{left:345.600000pt;}
.x100_c00180{left:347.133333pt;}
.x107_c00180{left:349.440000pt;}
.x85_c00180{left:350.973333pt;}
.x1d_c00180{left:356.346667pt;}
.xde_c00180{left:359.426667pt;}
.x2d_c00180{left:360.960000pt;}
.x1e_c00180{left:365.573333pt;}
.x1f_c00180{left:368.640000pt;}
.xdf_c00180{left:370.173333pt;}
.x6a_c00180{left:371.706667pt;}
.xbb_c00180{left:373.253333pt;}
.xe0_c00180{left:375.546667pt;}
.xfb_c00180{left:377.093333pt;}
.xb5_c00180{left:379.386667pt;}
.x48_c00180{left:381.693333pt;}
.x9c_c00180{left:384.000000pt;}
.x15_c00180{left:387.840000pt;}
.xa2_c00180{left:389.373333pt;}
.x3b_c00180{left:391.680000pt;}
.x10d_c00180{left:394.746667pt;}
.x72_c00180{left:397.053333pt;}
.x6b_c00180{left:398.586667pt;}
.x10e_c00180{left:400.133333pt;}
.xf_c00180{left:403.200000pt;}
.x98_c00180{left:404.733333pt;}
.x2e_c00180{left:406.266667pt;}
.xee_c00180{left:407.813333pt;}
.x101_c00180{left:409.346667pt;}
.x86_c00180{left:411.653333pt;}
.x9d_c00180{left:416.253333pt;}
.x4_c00180{left:417.786667pt;}
.x20_c00180{left:419.333333pt;}
.x49_c00180{left:420.866667pt;}
.xca_c00180{left:422.400000pt;}
.xe3_c00180{left:423.933333pt;}
.xa9_c00180{left:425.466667pt;}
.x5_c00180{left:427.013333pt;}
.x59_c00180{left:429.306667pt;}
.x2f_c00180{left:430.853333pt;}
.xa_c00180{left:433.146667pt;}
.x87_c00180{left:435.453333pt;}
.xaa_c00180{left:440.066667pt;}
.x5a_c00180{left:441.600000pt;}
.xd5_c00180{left:443.133333pt;}
.x3c_c00180{left:444.666667pt;}
.x79_c00180{left:446.213333pt;}
.xfd_c00180{left:447.746667pt;}
.xb8_c00180{left:449.280000pt;}
.x88_c00180{left:452.346667pt;}
.xfc_c00180{left:454.653333pt;}
.x102_c00180{left:456.186667pt;}
.x5b_c00180{left:458.493333pt;}
.x10_c00180{left:460.800000pt;}
.x21_c00180{left:463.106667pt;}
.xd6_c00180{left:464.640000pt;}
.xe7_c00180{left:468.480000pt;}
.x10f_c00180{left:470.786667pt;}
.xb_c00180{left:473.093333pt;}
.xef_c00180{left:475.386667pt;}
.xe4_c00180{left:476.933333pt;}
.x8c_c00180{left:479.226667pt;}
.x7a_c00180{left:481.533333pt;}
.x11_c00180{left:483.066667pt;}
.x3d_c00180{left:486.146667pt;}
.xbf_c00180{left:487.680000pt;}
.x6c_c00180{left:489.213333pt;}
.xc6_c00180{left:490.746667pt;}
.xab_c00180{left:493.053333pt;}
.x7b_c00180{left:495.360000pt;}
.x111_c00180{left:496.893333pt;}
.x8d_c00180{left:499.200000pt;}
.x4a_c00180{left:500.733333pt;}
.x6_c00180{left:503.040000pt;}
.xc0_c00180{left:505.346667pt;}
.xdb_c00180{left:506.880000pt;}
.xe5_c00180{left:508.413333pt;}
.xe1_c00180{left:509.946667pt;}
.x8e_c00180{left:512.253333pt;}
.x16_c00180{left:513.786667pt;}
.x7_c00180{left:515.333333pt;}
.xc7_c00180{left:518.400000pt;}
.x22_c00180{left:520.706667pt;}
.x30_c00180{left:522.240000pt;}
.x51_c00180{left:523.773333pt;}
.xcb_c00180{left:525.306667pt;}
.xd7_c00180{left:526.853333pt;}
.xf5_c00180{left:529.920000pt;}
.x8f_c00180{left:531.453333pt;}
.xf0_c00180{left:532.986667pt;}
.x5c_c00180{left:536.826667pt;}
.xbc_c00180{left:538.373333pt;}
.x6d_c00180{left:542.973333pt;}
.x73_c00180{left:546.053333pt;}
.x31_c00180{left:550.653333pt;}
.xd1_c00180{left:552.186667pt;}
.xc1_c00180{left:554.493333pt;}
.xc_c00180{left:557.573333pt;}
.x4b_c00180{left:559.866667pt;}
.x66_c00180{left:562.946667pt;}
.x5d_c00180{left:565.253333pt;}
.x112_c00180{left:566.786667pt;}
.x7c_c00180{left:568.320000pt;}
.xf1_c00180{left:569.853333pt;}
.x23_c00180{left:571.386667pt;}
.xf6_c00180{left:572.933333pt;}
.xcc_c00180{left:574.466667pt;}
.xc2_c00180{left:576.773333pt;}
.xf2_c00180{left:579.066667pt;}
.x32_c00180{left:581.373333pt;}
.xd_c00180{left:583.680000pt;}
.xa3_c00180{left:586.746667pt;}
.x3e_c00180{left:590.586667pt;}
.xe8_c00180{left:592.133333pt;}
.x52_c00180{left:593.666667pt;}
.x24_c00180{left:595.200000pt;}
.xc8_c00180{left:596.733333pt;}
.x5e_c00180{left:599.040000pt;}
.x17_c00180{left:600.573333pt;}
.x89_c00180{left:602.106667pt;}
.x90_c00180{left:604.413333pt;}
.x99_c00180{left:606.720000pt;}
.x6e_c00180{left:609.026667pt;}
.x9e_c00180{left:610.560000pt;}
.x25_c00180{left:612.866667pt;}
.x74_c00180{left:614.400000pt;}
.x5f_c00180{left:615.933333pt;}
.xbd_c00180{left:617.466667pt;}
.x18_c00180{left:619.773333pt;}
.x75_c00180{left:622.080000pt;}
.x7d_c00180{left:625.920000pt;}
.x53_c00180{left:628.226667pt;}
.x108_c00180{left:629.760000pt;}
.x33_c00180{left:632.066667pt;}
.x103_c00180{left:634.373333pt;}
.xb3_c00180{left:639.746667pt;}
.xac_c00180{left:641.280000pt;}
.xfe_c00180{left:645.893333pt;}
.xe9_c00180{left:648.186667pt;}
.xc3_c00180{left:651.266667pt;}
.xff_c00180{left:652.800000pt;}
.x67_c00180{left:655.106667pt;}
.x4c_c00180{left:656.640000pt;}
.xa4_c00180{left:658.946667pt;}
.x26_c00180{left:661.253333pt;}
.x9f_c00180{left:662.786667pt;}
.xd2_c00180{left:664.320000pt;}
.x60_c00180{left:665.853333pt;}
.x19_c00180{left:667.386667pt;}
.x3f_c00180{left:669.693333pt;}
.x76_c00180{left:675.066667pt;}
.xcd_c00180{left:678.146667pt;}
.x34_c00180{left:679.680000pt;}
.x68_c00180{left:681.986667pt;}
.xb6_c00180{left:685.053333pt;}
.xa0_c00180{left:687.360000pt;}
.x7e_c00180{left:689.666667pt;}
.x61_c00180{left:691.200000pt;}
.x6f_c00180{left:692.733333pt;}
.x9a_c00180{left:695.813333pt;}
.xf3_c00180{left:698.880000pt;}
.x109_c00180{left:700.413800pt;}
.x35_c00180{left:701.946667pt;}
.xc4_c00180{left:703.493333pt;}
.x7f_c00180{left:705.026667pt;}
.x91_c00180{left:706.560000pt;}
.x40_c00180{left:708.866667pt;}
.x10a_c00180{left:710.400000pt;}
.xad_c00180{left:715.013333pt;}
.x50_c00180{left:716.546667pt;}
.x77_c00180{left:719.613333pt;}
.x1a_c00180{left:721.920000pt;}
.x70_c00180{left:724.226667pt;}
.x92_c00180{left:728.826667pt;}
.x27_c00180{left:730.373333pt;}
.x54_c00180{left:733.440000pt;}
.x78_c00180{left:736.506667pt;}
.x62_c00180{left:738.813333pt;}
.xb9_c00180{left:740.346667pt;}
.x93_c00180{left:742.653333pt;}
.xc9_c00180{left:744.960000pt;}
.xae_c00180{left:746.493333pt;}
.x41_c00180{left:748.800000pt;}
.x8_c00180{left:750.333333pt;}
.x12_c00180{left:751.866667pt;}
.x10b_c00180{left:753.413333pt;}
.xea_c00180{left:756.480000pt;}
.x104_c00180{left:758.013333pt;}
.x28_c00180{left:760.320000pt;}
.x94_c00180{left:762.626667pt;}
.x4d_c00180{left:765.693333pt;}
.xce_c00180{left:767.226667pt;}
.x36_c00180{left:769.533333pt;}
.x29_c00180{left:771.066667pt;}
.xd3_c00180{left:772.613333pt;}
.x42_c00180{left:774.146667pt;}
.x80_c00180{left:777.213333pt;}
.xe_c00180{left:779.520000pt;}
.xd8_c00180{left:783.360000pt;}
.x81_c00180{left:787.200000pt;}
.xb7_c00180{left:788.733333pt;}
.xeb_c00180{left:792.573333pt;}
.x55_c00180{left:795.653333pt;}
.x43_c00180{left:797.946667pt;}
.xcf_c00180{left:802.560000pt;}
.xf7_c00180{left:804.866667pt;}
.x4e_c00180{left:806.400000pt;}
.xf4_c00180{left:809.466667pt;}
.xf8_c00180{left:811.773333pt;}
.xaf_c00180{left:815.613333pt;}
.x56_c00180{left:818.693333pt;}
.xbe_c00180{left:821.760000pt;}
.x116_c00180{left:841.733333pt;}
.x117_c00180{left:859.386667pt;}
.x113_c00180{left:903.933333pt;}
.x114_c00180{left:924.666667pt;}
.x115_c00180{left:934.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d03a8422c260eea7bf699657.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.109863;font-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_c00181{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);}
.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:600.000000px;}
.y0_c00181{bottom:0.000000px;}
.y1_c00181{bottom:15.000000px;}
.h2_c00181{height:539.941406px;}
.h1_c00181{height:1503.000000px;}
.h0_c00181{height:1503.360000px;}
.w0_c00181{width:1090.365000px;}
.w1_c00181{width:1090.500000px;}
.x0_c00181{left:0.000000px;}
.x1_c00181{left:15.000000px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls0_c00181{letter-spacing:0.000000pt;}
.ws0_c00181{word-spacing:0.000000pt;}
.fs0_c00181{font-size:533.333333pt;}
.y0_c00181{bottom:0.000000pt;}
.y1_c00181{bottom:13.333333pt;}
.h2_c00181{height:479.947917pt;}
.h1_c00181{height:1336.000000pt;}
.h0_c00181{height:1336.320000pt;}
.w0_c00181{width:969.213333pt;}
.w1_c00181{width:969.333333pt;}
.x0_c00181{left:0.000000pt;}
.x1_c00181{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c85e2ec593bd36e195b55537.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.109863;font-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_c00182{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00182{transform:matrix(0.097700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097700,0.000000,0.000000,0.250000,0,0);}
.m2c_c00182{transform:matrix(0.117900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117900,0.000000,0.000000,0.250000,0,0);}
.m32_c00182{transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);}
.m15_c00182{transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);}
.m29_c00182{transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);}
.m3_c00182{transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);}
.mc_c00182{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.m1_c00182{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00182{transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);}
.m30_c00182{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);}
.m10_c00182{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m3e_c00182{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);}
.m2e_c00182{transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);}
.m3a_c00182{transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);}
.m3c_c00182{transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);}
.m17_c00182{transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);}
.m9_c00182{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m3d_c00182{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m38_c00182{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m35_c00182{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m2d_c00182{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m44_c00182{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m16_c00182{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m1e_c00182{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m3b_c00182{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.m22_c00182{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);}
.m31_c00182{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m46_c00182{transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);}
.m2f_c00182{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.m34_c00182{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00182{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);}
.m3f_c00182{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mf_c00182{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m14_c00182{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m18_c00182{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);}
.m36_c00182{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);}
.m41_c00182{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m12_c00182{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.m40_c00182{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.m45_c00182{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);}
.m49_c00182{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m20_c00182{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m23_c00182{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m37_c00182{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.m1f_c00182{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m39_c00182{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);}
.m24_c00182{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);}
.m1b_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);}
.m11_c00182{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);}
.m1a_c00182{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);}
.m27_c00182{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m42_c00182{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);}
.ma_c00182{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c00182{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m43_c00182{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c00182{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);}
.mb_c00182{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c00182{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m13_c00182{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00182{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m28_c00182{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);}
.m4_c00182{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);}
.me_c00182{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);}
.m2_c00182{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);}
.m2b_c00182{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m19_c00182{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m8_c00182{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m21_c00182{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c00182{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m33_c00182{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);}
.m5_c00182{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m47_c00182{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m25_c00182{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,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;}
.fs6_c00182{font-size:3.456000px;}
.fs5_c00182{font-size:6.900000px;}
.fs14_c00182{font-size:10.380000px;}
.fs1b_c00182{font-size:13.800000px;}
.fs1_c00182{font-size:17.280000px;}
.fsc_c00182{font-size:27.660000px;}
.fs18_c00182{font-size:31.080000px;}
.fs10_c00182{font-size:34.560000px;}
.fs0_c00182{font-size:38.040000px;}
.fsb_c00182{font-size:51.840000px;}
.fsa_c00182{font-size:55.320000px;}
.fs1a_c00182{font-size:58.740000px;}
.fs8_c00182{font-size:62.220000px;}
.fs4_c00182{font-size:65.640000px;}
.fs2_c00182{font-size:69.120000px;}
.fs3_c00182{font-size:72.600000px;}
.fs7_c00182{font-size:76.020000px;}
.fs11_c00182{font-size:82.920000px;}
.fsd_c00182{font-size:86.400000px;}
.fs13_c00182{font-size:89.880000px;}
.fsf_c00182{font-size:93.300000px;}
.fs19_c00182{font-size:96.780000px;}
.fse_c00182{font-size:100.200000px;}
.fs12_c00182{font-size:107.160000px;}
.fs9_c00182{font-size:110.580000px;}
.fs17_c00182{font-size:114.060000px;}
.fs16_c00182{font-size:120.960000px;}
.fs15_c00182{font-size:127.860000px;}
.y0_c00182{bottom:0.000000px;}
.y40_c00182{bottom:602.205000px;}
.y3b_c00182{bottom:1105.920000px;}
.y3c_c00182{bottom:1109.370000px;}
.y3d_c00182{bottom:1110.240000px;}
.y3a_c00182{bottom:1111.965000px;}
.y34_c00182{bottom:1130.115000px;}
.y36_c00182{bottom:1130.970000px;}
.y35_c00182{bottom:1131.840000px;}
.y38_c00182{bottom:1137.030000px;}
.y39_c00182{bottom:1137.885000px;}
.y37_c00182{bottom:1139.610000px;}
.y33_c00182{bottom:1157.760000px;}
.y31_c00182{bottom:1160.355000px;}
.y32_c00182{bottom:1162.080000px;}
.y2c_c00182{bottom:1179.360000px;}
.y2e_c00182{bottom:1180.230000px;}
.y2f_c00182{bottom:1181.955000px;}
.y30_c00182{bottom:1183.680000px;}
.y2d_c00182{bottom:1187.130000px;}
.y28_c00182{bottom:1204.410000px;}
.y29_c00182{bottom:1205.280000px;}
.y2a_c00182{bottom:1207.005000px;}
.y2b_c00182{bottom:1208.730000px;}
.y24_c00182{bottom:1227.750000px;}
.y25_c00182{bottom:1229.475000px;}
.y27_c00182{bottom:1232.070000px;}
.y26_c00182{bottom:1239.840000px;}
.y21_c00182{bottom:1261.440000px;}
.y22_c00182{bottom:1262.310000px;}
.y23_c00182{bottom:1263.165000px;}
.y1f_c00182{bottom:1272.675000px;}
.y20_c00182{bottom:1274.400000px;}
.y1a_c00182{bottom:1277.850000px;}
.y19_c00182{bottom:1280.445000px;}
.y1b_c00182{bottom:1281.315000px;}
.y1c_c00182{bottom:1282.170000px;}
.y1d_c00182{bottom:1283.040000px;}
.y1e_c00182{bottom:1289.955000px;}
.y16_c00182{bottom:1304.640000px;}
.y15_c00182{bottom:1305.510000px;}
.y18_c00182{bottom:1311.555000px;}
.y17_c00182{bottom:1315.005000px;}
.y10_c00182{bottom:1332.285000px;}
.y12_c00182{bottom:1333.155000px;}
.y14_c00182{bottom:1335.750000px;}
.y11_c00182{bottom:1336.605000px;}
.y13_c00182{bottom:1339.200000px;}
.yd_c00182{bottom:1357.350000px;}
.ya_c00182{bottom:1360.800000px;}
.yb_c00182{bottom:1361.670000px;}
.ye_c00182{bottom:1362.525000px;}
.yc_c00182{bottom:1363.395000px;}
.yf_c00182{bottom:1367.715000px;}
.y3f_c00182{bottom:1369.440000px;}
.y3e_c00182{bottom:1372.890000px;}
.y9_c00182{bottom:1373.760000px;}
.y8_c00182{bottom:1375.485000px;}
.y3_c00182{bottom:1399.680000px;}
.y4_c00182{bottom:1400.550000px;}
.y5_c00182{bottom:1401.405000px;}
.y6_c00182{bottom:1402.275000px;}
.y7_c00182{bottom:1403.130000px;}
.y2_c00182{bottom:1448.070000px;}
.y1_c00182{bottom:1454.115000px;}
.h8_c00182{height:3.110063px;}
.h7_c00182{height:6.209326px;}
.h16_c00182{height:9.340986px;}
.h1d_c00182{height:12.418652px;}
.h3_c00182{height:15.550313px;}
.he_c00182{height:24.891299px;}
.h1a_c00182{height:27.968965px;}
.h12_c00182{height:31.100625px;}
.h2_c00182{height:34.232285px;}
.hd_c00182{height:46.650937px;}
.hc_c00182{height:49.782598px;}
.h1c_c00182{height:52.860264px;}
.ha_c00182{height:55.991924px;}
.h6_c00182{height:59.069590px;}
.h4_c00182{height:62.201250px;}
.h5_c00182{height:65.332910px;}
.h9_c00182{height:68.410576px;}
.h13_c00182{height:74.619902px;}
.hf_c00182{height:77.751563px;}
.h15_c00182{height:80.883223px;}
.h11_c00182{height:83.960889px;}
.h1b_c00182{height:87.092549px;}
.h10_c00182{height:90.170215px;}
.h14_c00182{height:96.433535px;}
.hb_c00182{height:99.511201px;}
.h19_c00182{height:102.642861px;}
.h18_c00182{height:108.852188px;}
.h17_c00182{height:115.061514px;}
.h0_c00182{height:1523.235000px;}
.h1_c00182{height:1523.250000px;}
.w0_c00182{width:1107.645000px;}
.w1_c00182{width:1107.750000px;}
.x0_c00182{left:0.000000px;}
.x9_c00182{left:246.240000px;}
.xa_c00182{left:257.475000px;}
.x22_c00182{left:259.200000px;}
.x20_c00182{left:265.245000px;}
.x30_c00182{left:273.885000px;}
.x2d_c00182{left:276.480000px;}
.xb_c00182{left:278.205000px;}
.x18_c00182{left:279.930000px;}
.x11_c00182{left:283.395000px;}
.x1d_c00182{left:290.310000px;}
.x19_c00182{left:312.765000px;}
.x28_c00182{left:315.360000px;}
.x33_c00182{left:319.680000px;}
.x12_c00182{left:324.870000px;}
.x31_c00182{left:328.320000px;}
.xc_c00182{left:336.090000px;}
.x13_c00182{left:338.685000px;}
.x29_c00182{left:340.410000px;}
.x32_c00182{left:363.750000px;}
.xd_c00182{left:374.115000px;}
.x14_c00182{left:375.840000px;}
.x2a_c00182{left:378.435000px;}
.x2e_c00182{left:384.480000px;}
.x1e_c00182{left:390.525000px;}
.xe_c00182{left:393.990000px;}
.x1a_c00182{left:400.890000px;}
.x21_c00182{left:406.080000px;}
.x15_c00182{left:421.635000px;}
.x34_c00182{left:428.550000px;}
.x25_c00182{left:430.275000px;}
.x2b_c00182{left:436.320000px;}
.x16_c00182{left:444.090000px;}
.x23_c00182{left:447.555000px;}
.x2f_c00182{left:450.150000px;}
.x1f_c00182{left:456.195000px;}
.x24_c00182{left:467.430000px;}
.x2c_c00182{left:474.330000px;}
.x26_c00182{left:479.520000px;}
.x1b_c00182{left:485.565000px;}
.x17_c00182{left:488.160000px;}
.xf_c00182{left:508.890000px;}
.x1c_c00182{left:514.080000px;}
.x10_c00182{left:542.595000px;}
.x27_c00182{left:548.640000px;}
.x3_c00182{left:649.725000px;}
.x4_c00182{left:687.750000px;}
.x5_c00182{left:714.525000px;}
.x6_c00182{left:735.270000px;}
.x7_c00182{left:759.450000px;}
.x8_c00182{left:780.195000px;}
.x1_c00182{left:850.170000px;}
.x2_c00182{left:851.910000px;}
.x38_c00182{left:1066.170000px;}
.x35_c00182{left:1072.230000px;}
.x36_c00182{left:1080.870000px;}
.x37_c00182{left:1088.640000px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls0_c00182{letter-spacing:0.000000pt;}
.ws0_c00182{word-spacing:0.000000pt;}
.fs6_c00182{font-size:3.072000pt;}
.fs5_c00182{font-size:6.133333pt;}
.fs14_c00182{font-size:9.226667pt;}
.fs1b_c00182{font-size:12.266667pt;}
.fs1_c00182{font-size:15.360000pt;}
.fsc_c00182{font-size:24.586667pt;}
.fs18_c00182{font-size:27.626667pt;}
.fs10_c00182{font-size:30.720000pt;}
.fs0_c00182{font-size:33.813333pt;}
.fsb_c00182{font-size:46.080000pt;}
.fsa_c00182{font-size:49.173333pt;}
.fs1a_c00182{font-size:52.213333pt;}
.fs8_c00182{font-size:55.306667pt;}
.fs4_c00182{font-size:58.346667pt;}
.fs2_c00182{font-size:61.440000pt;}
.fs3_c00182{font-size:64.533333pt;}
.fs7_c00182{font-size:67.573333pt;}
.fs11_c00182{font-size:73.706667pt;}
.fsd_c00182{font-size:76.800000pt;}
.fs13_c00182{font-size:79.893333pt;}
.fsf_c00182{font-size:82.933333pt;}
.fs19_c00182{font-size:86.026667pt;}
.fse_c00182{font-size:89.066667pt;}
.fs12_c00182{font-size:95.253333pt;}
.fs9_c00182{font-size:98.293333pt;}
.fs17_c00182{font-size:101.386667pt;}
.fs16_c00182{font-size:107.520000pt;}
.fs15_c00182{font-size:113.653333pt;}
.y0_c00182{bottom:0.000000pt;}
.y40_c00182{bottom:535.293333pt;}
.y3b_c00182{bottom:983.040000pt;}
.y3c_c00182{bottom:986.106667pt;}
.y3d_c00182{bottom:986.880000pt;}
.y3a_c00182{bottom:988.413333pt;}
.y34_c00182{bottom:1004.546667pt;}
.y36_c00182{bottom:1005.306667pt;}
.y35_c00182{bottom:1006.080000pt;}
.y38_c00182{bottom:1010.693333pt;}
.y39_c00182{bottom:1011.453333pt;}
.y37_c00182{bottom:1012.986667pt;}
.y33_c00182{bottom:1029.120000pt;}
.y31_c00182{bottom:1031.426667pt;}
.y32_c00182{bottom:1032.960000pt;}
.y2c_c00182{bottom:1048.320000pt;}
.y2e_c00182{bottom:1049.093333pt;}
.y2f_c00182{bottom:1050.626667pt;}
.y30_c00182{bottom:1052.160000pt;}
.y2d_c00182{bottom:1055.226667pt;}
.y28_c00182{bottom:1070.586667pt;}
.y29_c00182{bottom:1071.360000pt;}
.y2a_c00182{bottom:1072.893333pt;}
.y2b_c00182{bottom:1074.426667pt;}
.y24_c00182{bottom:1091.333333pt;}
.y25_c00182{bottom:1092.866667pt;}
.y27_c00182{bottom:1095.173333pt;}
.y26_c00182{bottom:1102.080000pt;}
.y21_c00182{bottom:1121.280000pt;}
.y22_c00182{bottom:1122.053333pt;}
.y23_c00182{bottom:1122.813333pt;}
.y1f_c00182{bottom:1131.266667pt;}
.y20_c00182{bottom:1132.800000pt;}
.y1a_c00182{bottom:1135.866667pt;}
.y19_c00182{bottom:1138.173333pt;}
.y1b_c00182{bottom:1138.946667pt;}
.y1c_c00182{bottom:1139.706667pt;}
.y1d_c00182{bottom:1140.480000pt;}
.y1e_c00182{bottom:1146.626667pt;}
.y16_c00182{bottom:1159.680000pt;}
.y15_c00182{bottom:1160.453333pt;}
.y18_c00182{bottom:1165.826667pt;}
.y17_c00182{bottom:1168.893333pt;}
.y10_c00182{bottom:1184.253333pt;}
.y12_c00182{bottom:1185.026667pt;}
.y14_c00182{bottom:1187.333333pt;}
.y11_c00182{bottom:1188.093333pt;}
.y13_c00182{bottom:1190.400000pt;}
.yd_c00182{bottom:1206.533333pt;}
.ya_c00182{bottom:1209.600000pt;}
.yb_c00182{bottom:1210.373333pt;}
.ye_c00182{bottom:1211.133333pt;}
.yc_c00182{bottom:1211.906667pt;}
.yf_c00182{bottom:1215.746667pt;}
.y3f_c00182{bottom:1217.280000pt;}
.y3e_c00182{bottom:1220.346667pt;}
.y9_c00182{bottom:1221.120000pt;}
.y8_c00182{bottom:1222.653333pt;}
.y3_c00182{bottom:1244.160000pt;}
.y4_c00182{bottom:1244.933333pt;}
.y5_c00182{bottom:1245.693333pt;}
.y6_c00182{bottom:1246.466667pt;}
.y7_c00182{bottom:1247.226667pt;}
.y2_c00182{bottom:1287.173333pt;}
.y1_c00182{bottom:1292.546667pt;}
.h8_c00182{height:2.764500pt;}
.h7_c00182{height:5.519401pt;}
.h16_c00182{height:8.303099pt;}
.h1d_c00182{height:11.038802pt;}
.h3_c00182{height:13.822500pt;}
.he_c00182{height:22.125599pt;}
.h1a_c00182{height:24.861302pt;}
.h12_c00182{height:27.645000pt;}
.h2_c00182{height:30.428698pt;}
.hd_c00182{height:41.467500pt;}
.hc_c00182{height:44.251198pt;}
.h1c_c00182{height:46.986901pt;}
.ha_c00182{height:49.770599pt;}
.h6_c00182{height:52.506302pt;}
.h4_c00182{height:55.290000pt;}
.h5_c00182{height:58.073698pt;}
.h9_c00182{height:60.809401pt;}
.h13_c00182{height:66.328802pt;}
.hf_c00182{height:69.112500pt;}
.h15_c00182{height:71.896198pt;}
.h11_c00182{height:74.631901pt;}
.h1b_c00182{height:77.415599pt;}
.h10_c00182{height:80.151302pt;}
.h14_c00182{height:85.718698pt;}
.hb_c00182{height:88.454401pt;}
.h19_c00182{height:91.238099pt;}
.h18_c00182{height:96.757500pt;}
.h17_c00182{height:102.276901pt;}
.h0_c00182{height:1353.986667pt;}
.h1_c00182{height:1354.000000pt;}
.w0_c00182{width:984.573333pt;}
.w1_c00182{width:984.666667pt;}
.x0_c00182{left:0.000000pt;}
.x9_c00182{left:218.880000pt;}
.xa_c00182{left:228.866667pt;}
.x22_c00182{left:230.400000pt;}
.x20_c00182{left:235.773333pt;}
.x30_c00182{left:243.453333pt;}
.x2d_c00182{left:245.760000pt;}
.xb_c00182{left:247.293333pt;}
.x18_c00182{left:248.826667pt;}
.x11_c00182{left:251.906667pt;}
.x1d_c00182{left:258.053333pt;}
.x19_c00182{left:278.013333pt;}
.x28_c00182{left:280.320000pt;}
.x33_c00182{left:284.160000pt;}
.x12_c00182{left:288.773333pt;}
.x31_c00182{left:291.840000pt;}
.xc_c00182{left:298.746667pt;}
.x13_c00182{left:301.053333pt;}
.x29_c00182{left:302.586667pt;}
.x32_c00182{left:323.333333pt;}
.xd_c00182{left:332.546667pt;}
.x14_c00182{left:334.080000pt;}
.x2a_c00182{left:336.386667pt;}
.x2e_c00182{left:341.760000pt;}
.x1e_c00182{left:347.133333pt;}
.xe_c00182{left:350.213333pt;}
.x1a_c00182{left:356.346667pt;}
.x21_c00182{left:360.960000pt;}
.x15_c00182{left:374.786667pt;}
.x34_c00182{left:380.933333pt;}
.x25_c00182{left:382.466667pt;}
.x2b_c00182{left:387.840000pt;}
.x16_c00182{left:394.746667pt;}
.x23_c00182{left:397.826667pt;}
.x2f_c00182{left:400.133333pt;}
.x1f_c00182{left:405.506667pt;}
.x24_c00182{left:415.493333pt;}
.x2c_c00182{left:421.626667pt;}
.x26_c00182{left:426.240000pt;}
.x1b_c00182{left:431.613333pt;}
.x17_c00182{left:433.920000pt;}
.xf_c00182{left:452.346667pt;}
.x1c_c00182{left:456.960000pt;}
.x10_c00182{left:482.306667pt;}
.x27_c00182{left:487.680000pt;}
.x3_c00182{left:577.533333pt;}
.x4_c00182{left:611.333333pt;}
.x5_c00182{left:635.133333pt;}
.x6_c00182{left:653.573333pt;}
.x7_c00182{left:675.066667pt;}
.x8_c00182{left:693.506667pt;}
.x1_c00182{left:755.706667pt;}
.x2_c00182{left:757.253333pt;}
.x38_c00182{left:947.706667pt;}
.x35_c00182{left:953.093333pt;}
.x36_c00182{left:960.773333pt;}
.x37_c00182{left:967.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_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_7b55e4f83ed267c182870d5d.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.109863;font-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_c00183{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m157_c00183{transform:matrix(0.064825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064825,0.000000,0.000000,0.250000,0,0);}
.mfd_c00183{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m4a_c00183{transform:matrix(0.073200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073200,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00183{transform:matrix(0.073425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073425,0.000000,0.000000,0.250000,0,0);}
.m17a_c00183{transform:matrix(0.082825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082825,0.000000,0.000000,0.250000,0,0);}
.m19e_c00183{transform:matrix(0.088275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088275,0.000000,0.000000,0.250000,0,0);}
.m31_c00183{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m12a_c00183{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m36_c00183{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.m4f_c00183{transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);}
.m60_c00183{transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);}
.m172_c00183{transform:matrix(0.100325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100325,0.000000,0.000000,0.250000,0,0);}
.m178_c00183{transform:matrix(0.100425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100425,0.000000,0.000000,0.250000,0,0);}
.m16_c00183{transform:matrix(0.100850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100850,0.000000,0.000000,0.250000,0,0);}
.m1d7_c00183{transform:matrix(0.101175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101175,0.000000,0.000000,0.250000,0,0);}
.m126_c00183{transform:matrix(0.104400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104400,0.000000,0.000000,0.250000,0,0);}
.m33_c00183{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);}
.md8_c00183{transform:matrix(0.105925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105925,0.000000,0.000000,0.250000,0,0);}
.m78_c00183{transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);}
.md2_c00183{transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);}
.m47_c00183{transform:matrix(0.109150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109150,0.000000,0.000000,0.250000,0,0);}
.m153_c00183{transform:matrix(0.111975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111975,0.000000,0.000000,0.250000,0,0);}
.m148_c00183{transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);}
.m101_c00183{transform:matrix(0.115575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115575,0.000000,0.000000,0.250000,0,0);}
.m29_c00183{transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);}
.m20_c00183{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);}
.m179_c00183{transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);}
.m10e_c00183{transform:matrix(0.118675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118675,0.000000,0.000000,0.250000,0,0);}
.m75_c00183{transform:matrix(0.119025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119025,0.000000,0.000000,0.250000,0,0);}
.m165_c00183{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00183{transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);}
.m168_c00183{transform:matrix(0.121175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121175,0.000000,0.000000,0.250000,0,0);}
.m17d_c00183{transform:matrix(0.121700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121700,0.000000,0.000000,0.250000,0,0);}
.mea_c00183{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);}
.mf5_c00183{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);}
.m2a_c00183{transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);}
.me7_c00183{transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);}
.maf_c00183{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m146_c00183{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m111_c00183{transform:matrix(0.127050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127050,0.000000,0.000000,0.250000,0,0);}
.m171_c00183{transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);}
.mca_c00183{transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);}
.m5_c00183{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m92_c00183{transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);}
.m49_c00183{transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00183{transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);}
.m1ca_c00183{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.mee_c00183{transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);}
.m177_c00183{transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);}
.m38_c00183{transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);}
.m93_c00183{transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);}
.m139_c00183{transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);}
.m5e_c00183{transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);}
.md0_c00183{transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);}
.m1e_c00183{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);}
.m14d_c00183{transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);}
.m195_c00183{transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);}
.m128_c00183{transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);}
.m4c_c00183{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.mcf_c00183{transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);}
.md1_c00183{transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);}
.m1d1_c00183{transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00183{transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);}
.m6e_c00183{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m67_c00183{transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);}
.m175_c00183{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.mcc_c00183{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.m173_c00183{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.mac_c00183{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.m54_c00183{transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);}
.m7a_c00183{transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);}
.md7_c00183{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);}
.m61_c00183{transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);}
.m51_c00183{transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);}
.m1d4_c00183{transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);}
.m102_c00183{transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);}
.m4d_c00183{transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);}
.m52_c00183{transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);}
.m15b_c00183{transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);}
.m17b_c00183{transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);}
.mbd_c00183{transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);}
.m1c1_c00183{transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);}
.md9_c00183{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m76_c00183{transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);}
.m1c5_c00183{transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);}
.m167_c00183{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m70_c00183{transform:matrix(0.142400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142400,0.000000,0.000000,0.250000,0,0);}
.mf7_c00183{transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);}
.m13b_c00183{transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00183{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00183{transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);}
.m149_c00183{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00183{transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);}
.m48_c00183{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m2_c00183{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00183{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.m1cd_c00183{transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);}
.m14c_c00183{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);}
.m152_c00183{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.m6d_c00183{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);}
.m12e_c00183{transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);}
.m4b_c00183{transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);}
.mcb_c00183{transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);}
.ma0_c00183{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.mc8_c00183{transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);}
.mf_c00183{transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);}
.m121_c00183{transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);}
.m3c_c00183{transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);}
.m137_c00183{transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);}
.mbe_c00183{transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);}
.mf0_c00183{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);}
.mc6_c00183{transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);}
.m147_c00183{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);}
.m112_c00183{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m180_c00183{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m11e_c00183{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.m181_c00183{transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);}
.m7_c00183{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);}
.m196_c00183{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m94_c00183{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);}
.m79_c00183{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);}
.m107_c00183{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m1c_c00183{transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00183{transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);}
.m1d8_c00183{transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);}
.m97_c00183{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);}
.m166_c00183{transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);}
.m123_c00183{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.mab_c00183{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00183{transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);}
.m1ce_c00183{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m15a_c00183{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);}
.m1c2_c00183{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);}
.m1d0_c00183{transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);}
.m119_c00183{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.m4e_c00183{transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);}
.mc9_c00183{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);}
.m161_c00183{transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);}
.m1b_c00183{transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);}
.md3_c00183{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.m18a_c00183{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.m11d_c00183{transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00183{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.m13c_c00183{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m108_c00183{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);}
.m1ba_c00183{transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);}
.m66_c00183{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.m3a_c00183{transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);}
.m1bc_c00183{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.ma2_c00183{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.m191_c00183{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m2d_c00183{transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);}
.mec_c00183{transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);}
.m2f_c00183{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);}
.m100_c00183{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.m9b_c00183{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.mf4_c00183{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.mb_c00183{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);}
.m18e_c00183{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);}
.m11a_c00183{transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);}
.m6a_c00183{transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);}
.m113_c00183{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m176_c00183{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);}
.m18d_c00183{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m155_c00183{transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);}
.m127_c00183{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.m164_c00183{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.mc1_c00183{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.mf3_c00183{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m17c_c00183{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m89_c00183{transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);}
.m18c_c00183{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m14a_c00183{transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);}
.m174_c00183{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.m24_c00183{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);}
.mef_c00183{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00183{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00183{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_c00183{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m16b_c00183{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.mdc_c00183{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m198_c00183{transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);}
.m5d_c00183{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.me0_c00183{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m1cc_c00183{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m150_c00183{transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);}
.m11f_c00183{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);}
.m14b_c00183{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m14e_c00183{transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);}
.m35_c00183{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.m106_c00183{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00183{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m73_c00183{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m65_c00183{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.mf9_c00183{transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);}
.m9f_c00183{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);}
.m156_c00183{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.m135_c00183{transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);}
.me3_c00183{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);}
.ma8_c00183{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.me2_c00183{transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);}
.m19a_c00183{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.m1d6_c00183{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m15c_c00183{transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);}
.me4_c00183{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.m1c6_c00183{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m1c3_c00183{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m16c_c00183{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);}
.me8_c00183{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m10d_c00183{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.mdf_c00183{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);}
.m16d_c00183{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);}
.m1a9_c00183{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);}
.m184_c00183{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.m9c_c00183{transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00183{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.mf2_c00183{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);}
.mc0_c00183{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);}
.m32_c00183{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m1cb_c00183{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m19c_c00183{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m9a_c00183{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);}
.mf6_c00183{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.mae_c00183{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);}
.md4_c00183{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m133_c00183{transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);}
.med_c00183{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);}
.m6f_c00183{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.m116_c00183{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m192_c00183{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m43_c00183{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m5a_c00183{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);}
.mb5_c00183{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);}
.mda_c00183{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.m145_c00183{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m34_c00183{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.m136_c00183{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);}
.m120_c00183{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00183{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m19d_c00183{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.me1_c00183{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);}
.m125_c00183{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);}
.m7b_c00183{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m62_c00183{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.m182_c00183{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.m99_c00183{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m1b8_c00183{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m103_c00183{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.mdb_c00183{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m151_c00183{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m19b_c00183{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);}
.m19f_c00183{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m1bf_c00183{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m10a_c00183{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m22_c00183{transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00183{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.m1af_c00183{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.m16e_c00183{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);}
.m142_c00183{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m8b_c00183{transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);}
.m110_c00183{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m96_c00183{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);}
.m109_c00183{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);}
.mb2_c00183{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);}
.m1b5_c00183{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.m1c8_c00183{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m7f_c00183{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.mb6_c00183{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m12d_c00183{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m190_c00183{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.ma5_c00183{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);}
.m58_c00183{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.ma6_c00183{transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);}
.m169_c00183{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);}
.mdd_c00183{transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);}
.m3b_c00183{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.mc5_c00183{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);}
.m95_c00183{transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);}
.md5_c00183{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m13e_c00183{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.m197_c00183{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);}
.m1be_c00183{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);}
.m1a1_c00183{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.mfc_c00183{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);}
.mf1_c00183{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);}
.mbc_c00183{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.m114_c00183{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m26_c00183{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);}
.m1c7_c00183{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);}
.m170_c00183{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);}
.m1a8_c00183{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);}
.m8f_c00183{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);}
.m16f_c00183{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);}
.m130_c00183{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);}
.mad_c00183{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m16a_c00183{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);}
.mb4_c00183{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);}
.m11b_c00183{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);}
.m2e_c00183{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);}
.m141_c00183{transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);}
.m186_c00183{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m10f_c00183{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m104_c00183{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m30_c00183{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);}
.m12b_c00183{transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);}
.m1c4_c00183{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m27_c00183{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);}
.m131_c00183{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);}
.m17e_c00183{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m68_c00183{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.mff_c00183{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.mfa_c00183{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m193_c00183{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);}
.mc3_c00183{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);}
.m115_c00183{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.m46_c00183{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);}
.m42_c00183{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);}
.m77_c00183{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m160_c00183{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m18_c00183{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);}
.m28_c00183{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m17f_c00183{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.mc2_c00183{transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);}
.m14f_c00183{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);}
.m82_c00183{transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);}
.m124_c00183{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);}
.m63_c00183{transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);}
.m134_c00183{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m1cf_c00183{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.mb1_c00183{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m18b_c00183{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);}
.m1bb_c00183{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);}
.m2b_c00183{transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);}
.m59_c00183{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00183{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.m71_c00183{transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);}
.mb7_c00183{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);}
.m57_c00183{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.m194_c00183{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m144_c00183{transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);}
.m13f_c00183{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m40_c00183{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m64_c00183{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);}
.maa_c00183{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);}
.me9_c00183{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);}
.m9e_c00183{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m5f_c00183{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);}
.m10c_c00183{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);}
.m7e_c00183{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m81_c00183{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.ma1_c00183{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);}
.m1b9_c00183{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);}
.m69_c00183{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);}
.m7c_c00183{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);}
.m1c9_c00183{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m9d_c00183{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.mbf_c00183{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);}
.m183_c00183{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);}
.m25_c00183{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);}
.mc4_c00183{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);}
.m37_c00183{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);}
.m39_c00183{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m44_c00183{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);}
.m84_c00183{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);}
.m8a_c00183{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);}
.m1d_c00183{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00183{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00183{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.meb_c00183{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);}
.mce_c00183{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m129_c00183{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);}
.m117_c00183{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);}
.ma3_c00183{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c00183{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);}
.m4_c00183{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb0_c00183{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m105_c00183{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);}
.m45_c00183{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00183{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);}
.m6b_c00183{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);}
.mfb_c00183{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mde_c00183{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m185_c00183{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);}
.m80_c00183{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00183{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00183{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);}
.m91_c00183{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m132_c00183{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00183{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00183{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m122_c00183{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m90_c00183{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c00183{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);}
.m3_c00183{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c00183{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00183{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m118_c00183{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);}
.m1a2_c00183{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00183{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11c_c00183{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);}
.m88_c00183{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00183{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00183{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m21_c00183{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);}
.m17_c00183{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me5_c00183{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m14_c00183{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);}
.m1d5_c00183{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00183{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);}
.m188_c00183{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m55_c00183{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m159_c00183{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m41_c00183{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);}
.m72_c00183{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00183{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);}
.m23_c00183{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00183{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m158_c00183{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mfe_c00183{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mba_c00183{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);}
.m85_c00183{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00183{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00183{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m11_c00183{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00183{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m18f_c00183{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);}
.m154_c00183{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m83_c00183{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m19_c00183{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1d3_c00183{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);}
.me6_c00183{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);}
.md_c00183{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m189_c00183{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);}
.m13d_c00183{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m53_c00183{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00183{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m6_c00183{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m0_c00183{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00183{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m1c0_c00183{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m15f_c00183{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.m162_c00183{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00183{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.mbb_c00183{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m50_c00183{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00183{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m143_c00183{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m8_c00183{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m56_c00183{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.md6_c00183{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.me_c00183{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m87_c00183{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m138_c00183{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00183{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m98_c00183{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00183{transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);}
.m15_c00183{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m187_c00183{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m15e_c00183{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00183{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m140_c00183{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.m163_c00183{transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);}
.ma_c00183{transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);}
.m1d9_c00183{transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00183{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m74_c00183{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m1d2_c00183{transform:matrix(1.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.350000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00183{transform:matrix(1.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.402500,0.000000,0.000000,0.250000,0,0);}
.mc_c00183{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m15d_c00183{transform:matrix(1.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.692500,0.000000,0.000000,0.250000,0,0);}
.m199_c00183{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m10b_c00183{transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);}
.m86_c00183{transform:matrix(3.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.170000,0.000000,0.000000,0.250000,0,0);}
.v0_c00183{vertical-align:0.000000px;}
.v1_c00183{vertical-align:3.480000px;}
.ls1_c00183{letter-spacing:0.000000px;}
.ls0_c00183{letter-spacing:37.373280px;}
.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;}
.fc0_c00183{color:transparent;}
.fs8_c00183{font-size:3.456000px;}
.fs1a_c00183{font-size:6.000000px;}
.fs2_c00183{font-size:6.900000px;}
.fs0_c00183{font-size:10.380000px;}
.fs1_c00183{font-size:13.800000px;}
.fs5_c00183{font-size:17.280000px;}
.fs6_c00183{font-size:20.760000px;}
.fs4_c00183{font-size:24.180000px;}
.fs23_c00183{font-size:27.660000px;}
.fs7_c00183{font-size:31.080000px;}
.fs22_c00183{font-size:34.560000px;}
.fs3_c00183{font-size:38.040000px;}
.fs20_c00183{font-size:41.460000px;}
.fs19_c00183{font-size:44.940000px;}
.fs26_c00183{font-size:48.360000px;}
.fs24_c00183{font-size:51.840000px;}
.fs13_c00183{font-size:55.320000px;}
.fs21_c00183{font-size:58.740000px;}
.fs12_c00183{font-size:62.220000px;}
.fsf_c00183{font-size:65.640000px;}
.fs15_c00183{font-size:69.120000px;}
.fs9_c00183{font-size:72.600000px;}
.fsc_c00183{font-size:76.020000px;}
.fsb_c00183{font-size:79.500000px;}
.fs17_c00183{font-size:82.920000px;}
.fs16_c00183{font-size:86.400000px;}
.fs10_c00183{font-size:89.880000px;}
.fs11_c00183{font-size:93.300000px;}
.fse_c00183{font-size:96.780000px;}
.fs25_c00183{font-size:100.200000px;}
.fs14_c00183{font-size:103.680000px;}
.fs1f_c00183{font-size:107.160000px;}
.fsa_c00183{font-size:110.580000px;}
.fs18_c00183{font-size:114.060000px;}
.fs1c_c00183{font-size:117.480000px;}
.fs1b_c00183{font-size:120.960000px;}
.fs1d_c00183{font-size:124.440000px;}
.fsd_c00183{font-size:127.860000px;}
.fs1e_c00183{font-size:131.340000px;}
.fs28_c00183{font-size:138.240000px;}
.fs27_c00183{font-size:159.000000px;}
.y0_c00183{bottom:0.000000px;}
.y204_c00183{bottom:235.005000px;}
.y203_c00183{bottom:235.875000px;}
.y205_c00183{bottom:236.730000px;}
.y1f8_c00183{bottom:239.325000px;}
.y1f9_c00183{bottom:241.050000px;}
.y1fd_c00183{bottom:247.110000px;}
.y1ff_c00183{bottom:247.965000px;}
.y1fe_c00183{bottom:254.880000px;}
.y1fb_c00183{bottom:255.750000px;}
.y202_c00183{bottom:256.605000px;}
.y200_c00183{bottom:260.070000px;}
.y201_c00183{bottom:260.925000px;}
.y1fc_c00183{bottom:262.650000px;}
.y1fa_c00183{bottom:263.520000px;}
.y1ee_c00183{bottom:264.390000px;}
.y1ed_c00183{bottom:265.245000px;}
.y1ef_c00183{bottom:266.115000px;}
.y1f0_c00183{bottom:267.840000px;}
.y1f1_c00183{bottom:268.710000px;}
.y1f2_c00183{bottom:270.435000px;}
.y1f6_c00183{bottom:276.480000px;}
.y1f7_c00183{bottom:280.800000px;}
.y1f5_c00183{bottom:281.670000px;}
.y1f3_c00183{bottom:288.570000px;}
.y1e6_c00183{bottom:290.310000px;}
.y1e7_c00183{bottom:291.165000px;}
.y1f4_c00183{bottom:292.035000px;}
.y1e2_c00183{bottom:292.890000px;}
.y1e3_c00183{bottom:293.760000px;}
.y1e5_c00183{bottom:295.485000px;}
.y1e4_c00183{bottom:296.355000px;}
.y1e8_c00183{bottom:300.675000px;}
.y1eb_c00183{bottom:303.270000px;}
.y1ea_c00183{bottom:304.125000px;}
.y1ec_c00183{bottom:304.995000px;}
.y1e9_c00183{bottom:309.315000px;}
.y1de_c00183{bottom:329.190000px;}
.y1df_c00183{bottom:333.510000px;}
.y1e1_c00183{bottom:334.365000px;}
.y1e0_c00183{bottom:335.235000px;}
.y1d4_c00183{bottom:338.685000px;}
.y1d2_c00183{bottom:339.555000px;}
.y1dd_c00183{bottom:341.280000px;}
.y1d5_c00183{bottom:342.150000px;}
.y1d6_c00183{bottom:343.875000px;}
.y1d7_c00183{bottom:346.470000px;}
.y1dc_c00183{bottom:350.790000px;}
.y1db_c00183{bottom:351.645000px;}
.y1d9_c00183{bottom:352.515000px;}
.y1d3_c00183{bottom:353.370000px;}
.y1d8_c00183{bottom:355.965000px;}
.y1da_c00183{bottom:362.010000px;}
.y1c7_c00183{bottom:366.330000px;}
.y1c6_c00183{bottom:367.200000px;}
.y1c5_c00183{bottom:368.070000px;}
.y1ca_c00183{bottom:368.925000px;}
.y1c8_c00183{bottom:371.520000px;}
.y1c9_c00183{bottom:373.245000px;}
.y1cb_c00183{bottom:374.115000px;}
.y1cc_c00183{bottom:375.840000px;}
.y1d0_c00183{bottom:376.710000px;}
.y1cd_c00183{bottom:377.565000px;}
.y1ce_c00183{bottom:378.435000px;}
.y1cf_c00183{bottom:384.480000px;}
.y1d1_c00183{bottom:387.930000px;}
.y1b9_c00183{bottom:388.800000px;}
.y1b7_c00183{bottom:390.525000px;}
.y1b8_c00183{bottom:393.120000px;}
.y1b6_c00183{bottom:394.845000px;}
.y1bb_c00183{bottom:395.715000px;}
.y1ba_c00183{bottom:396.570000px;}
.y1bc_c00183{bottom:398.310000px;}
.y1c1_c00183{bottom:399.165000px;}
.y1bd_c00183{bottom:400.035000px;}
.y1be_c00183{bottom:405.210000px;}
.y1c0_c00183{bottom:406.950000px;}
.y1bf_c00183{bottom:408.675000px;}
.y1c4_c00183{bottom:409.530000px;}
.y1c3_c00183{bottom:411.270000px;}
.y1ad_c00183{bottom:414.720000px;}
.y1c2_c00183{bottom:415.590000px;}
.y1ae_c00183{bottom:419.910000px;}
.y1ac_c00183{bottom:420.765000px;}
.y1af_c00183{bottom:421.635000px;}
.y1b0_c00183{bottom:427.680000px;}
.y1b2_c00183{bottom:428.550000px;}
.y1b1_c00183{bottom:429.405000px;}
.y1b4_c00183{bottom:434.595000px;}
.y1b5_c00183{bottom:435.450000px;}
.y1b3_c00183{bottom:440.640000px;}
.y1a3_c00183{bottom:444.090000px;}
.y1a5_c00183{bottom:444.960000px;}
.y1a4_c00183{bottom:445.830000px;}
.y1a6_c00183{bottom:447.555000px;}
.y1a7_c00183{bottom:448.410000px;}
.y1a9_c00183{bottom:451.005000px;}
.y1a8_c00183{bottom:453.600000px;}
.y1aa_c00183{bottom:457.920000px;}
.y1ab_c00183{bottom:460.515000px;}
.y195_c00183{bottom:468.285000px;}
.y194_c00183{bottom:469.155000px;}
.y196_c00183{bottom:471.750000px;}
.y197_c00183{bottom:472.605000px;}
.y19a_c00183{bottom:474.330000px;}
.y193_c00183{bottom:475.200000px;}
.y19e_c00183{bottom:476.925000px;}
.y199_c00183{bottom:477.795000px;}
.y19f_c00183{bottom:478.650000px;}
.y19c_c00183{bottom:480.390000px;}
.y19d_c00183{bottom:481.245000px;}
.y198_c00183{bottom:482.970000px;}
.y19b_c00183{bottom:483.840000px;}
.y1a0_c00183{bottom:484.710000px;}
.y1a2_c00183{bottom:486.435000px;}
.y18f_c00183{bottom:489.885000px;}
.y190_c00183{bottom:490.755000px;}
.y1a1_c00183{bottom:495.075000px;}
.y191_c00183{bottom:496.800000px;}
.y192_c00183{bottom:501.120000px;}
.y18e_c00183{bottom:503.715000px;}
.y183_c00183{bottom:507.165000px;}
.y185_c00183{bottom:508.890000px;}
.y187_c00183{bottom:510.630000px;}
.y188_c00183{bottom:514.080000px;}
.y186_c00183{bottom:516.675000px;}
.y184_c00183{bottom:517.530000px;}
.y182_c00183{bottom:519.270000px;}
.y189_c00183{bottom:520.995000px;}
.y18b_c00183{bottom:522.720000px;}
.y18c_c00183{bottom:523.590000px;}
.y18d_c00183{bottom:528.765000px;}
.y18a_c00183{bottom:533.955000px;}
.y177_c00183{bottom:541.725000px;}
.y178_c00183{bottom:542.595000px;}
.y175_c00183{bottom:543.450000px;}
.y179_c00183{bottom:544.320000px;}
.y176_c00183{bottom:546.045000px;}
.y17a_c00183{bottom:546.915000px;}
.y17c_c00183{bottom:548.640000px;}
.y17d_c00183{bottom:549.510000px;}
.y180_c00183{bottom:551.235000px;}
.y17b_c00183{bottom:552.090000px;}
.y17e_c00183{bottom:553.830000px;}
.y181_c00183{bottom:555.555000px;}
.y17f_c00183{bottom:559.005000px;}
.y16f_c00183{bottom:571.110000px;}
.y16e_c00183{bottom:572.835000px;}
.y16c_c00183{bottom:573.690000px;}
.y170_c00183{bottom:576.285000px;}
.y171_c00183{bottom:577.155000px;}
.y16d_c00183{bottom:578.010000px;}
.y174_c00183{bottom:580.605000px;}
.y163_c00183{bottom:584.070000px;}
.y166_c00183{bottom:587.520000px;}
.y172_c00183{bottom:588.390000px;}
.y167_c00183{bottom:589.245000px;}
.y173_c00183{bottom:590.970000px;}
.y10_c00183{bottom:593.565000px;}
.y164_c00183{bottom:594.435000px;}
.y165_c00183{bottom:597.030000px;}
.y16a_c00183{bottom:597.885000px;}
.y168_c00183{bottom:601.350000px;}
.y16b_c00183{bottom:603.075000px;}
.y169_c00183{bottom:606.525000px;}
.y159_c00183{bottom:613.440000px;}
.y15b_c00183{bottom:615.165000px;}
.y15d_c00183{bottom:618.630000px;}
.y15a_c00183{bottom:619.485000px;}
.y15e_c00183{bottom:622.080000px;}
.y15c_c00183{bottom:623.805000px;}
.y160_c00183{bottom:627.270000px;}
.y161_c00183{bottom:628.995000px;}
.y15f_c00183{bottom:634.170000px;}
.y162_c00183{bottom:635.910000px;}
.y14d_c00183{bottom:643.680000px;}
.y14b_c00183{bottom:644.550000px;}
.y14c_c00183{bottom:646.275000px;}
.y14f_c00183{bottom:647.130000px;}
.y150_c00183{bottom:648.000000px;}
.y14e_c00183{bottom:648.870000px;}
.y151_c00183{bottom:649.725000px;}
.y155_c00183{bottom:652.320000px;}
.y157_c00183{bottom:656.640000px;}
.y156_c00183{bottom:657.510000px;}
.y153_c00183{bottom:659.235000px;}
.y154_c00183{bottom:660.090000px;}
.y158_c00183{bottom:660.960000px;}
.y144_c00183{bottom:668.730000px;}
.y152_c00183{bottom:670.470000px;}
.y141_c00183{bottom:672.195000px;}
.y142_c00183{bottom:673.050000px;}
.y148_c00183{bottom:674.790000px;}
.y149_c00183{bottom:678.240000px;}
.y146_c00183{bottom:679.965000px;}
.y147_c00183{bottom:681.690000px;}
.y14a_c00183{bottom:682.560000px;}
.y143_c00183{bottom:685.155000px;}
.y133_c00183{bottom:686.880000px;}
.y145_c00183{bottom:690.330000px;}
.y134_c00183{bottom:691.200000px;}
.y136_c00183{bottom:692.925000px;}
.y132_c00183{bottom:694.650000px;}
.y138_c00183{bottom:695.520000px;}
.y13a_c00183{bottom:696.390000px;}
.y13c_c00183{bottom:698.970000px;}
.y137_c00183{bottom:699.840000px;}
.y139_c00183{bottom:700.710000px;}
.y140_c00183{bottom:703.290000px;}
.y13e_c00183{bottom:705.885000px;}
.y13f_c00183{bottom:709.350000px;}
.y135_c00183{bottom:711.930000px;}
.y12b_c00183{bottom:712.800000px;}
.y13b_c00183{bottom:714.525000px;}
.y12d_c00183{bottom:717.120000px;}
.y13d_c00183{bottom:718.845000px;}
.y12c_c00183{bottom:721.440000px;}
.y12e_c00183{bottom:724.035000px;}
.y131_c00183{bottom:726.630000px;}
.y12f_c00183{bottom:728.355000px;}
.y12a_c00183{bottom:731.805000px;}
.y130_c00183{bottom:732.675000px;}
.y11f_c00183{bottom:743.040000px;}
.y121_c00183{bottom:743.910000px;}
.y120_c00183{bottom:744.765000px;}
.y123_c00183{bottom:746.490000px;}
.y125_c00183{bottom:749.085000px;}
.y122_c00183{bottom:749.955000px;}
.y128_c00183{bottom:750.810000px;}
.y127_c00183{bottom:755.130000px;}
.y124_c00183{bottom:756.000000px;}
.y126_c00183{bottom:756.870000px;}
.y129_c00183{bottom:758.595000px;}
.y115_c00183{bottom:762.915000px;}
.y118_c00183{bottom:766.365000px;}
.y116_c00183{bottom:768.960000px;}
.y119_c00183{bottom:770.685000px;}
.y11b_c00183{bottom:771.555000px;}
.y11a_c00183{bottom:774.150000px;}
.y11c_c00183{bottom:775.005000px;}
.y11e_c00183{bottom:776.730000px;}
.y11d_c00183{bottom:778.470000px;}
.y117_c00183{bottom:785.370000px;}
.y10c_c00183{bottom:787.110000px;}
.y10d_c00183{bottom:790.560000px;}
.y10e_c00183{bottom:792.285000px;}
.y10f_c00183{bottom:794.010000px;}
.y110_c00183{bottom:795.750000px;}
.y112_c00183{bottom:796.605000px;}
.y114_c00183{bottom:800.070000px;}
.y113_c00183{bottom:800.925000px;}
.y111_c00183{bottom:804.390000px;}
.y103_c00183{bottom:817.350000px;}
.y102_c00183{bottom:818.205000px;}
.y107_c00183{bottom:821.670000px;}
.y105_c00183{bottom:822.525000px;}
.y101_c00183{bottom:823.395000px;}
.y108_c00183{bottom:825.120000px;}
.y106_c00183{bottom:827.715000px;}
.y10a_c00183{bottom:828.570000px;}
.ye_c00183{bottom:829.440000px;}
.y10b_c00183{bottom:832.035000px;}
.y104_c00183{bottom:832.890000px;}
.yf_c00183{bottom:834.630000px;}
.yfa_c00183{bottom:840.675000px;}
.yf9_c00183{bottom:841.530000px;}
.y109_c00183{bottom:842.400000px;}
.yfb_c00183{bottom:843.270000px;}
.yfc_c00183{bottom:846.720000px;}
.yfd_c00183{bottom:847.590000px;}
.yff_c00183{bottom:850.170000px;}
.yfe_c00183{bottom:852.765000px;}
.yf1_c00183{bottom:863.130000px;}
.yf3_c00183{bottom:865.725000px;}
.yd_c00183{bottom:866.595000px;}
.yc_c00183{bottom:867.450000px;}
.yf2_c00183{bottom:868.320000px;}
.yf4_c00183{bottom:871.770000px;}
.yf5_c00183{bottom:873.510000px;}
.y100_c00183{bottom:875.235000px;}
.yf6_c00183{bottom:876.960000px;}
.yf7_c00183{bottom:881.280000px;}
.yf8_c00183{bottom:885.600000px;}
.ye7_c00183{bottom:888.195000px;}
.ye9_c00183{bottom:889.050000px;}
.ye8_c00183{bottom:890.790000px;}
.ye6_c00183{bottom:893.370000px;}
.yee_c00183{bottom:897.690000px;}
.yea_c00183{bottom:898.560000px;}
.yef_c00183{bottom:899.430000px;}
.yec_c00183{bottom:902.880000px;}
.yeb_c00183{bottom:903.750000px;}
.yed_c00183{bottom:904.605000px;}
.ye5_c00183{bottom:906.330000px;}
.yf0_c00183{bottom:907.200000px;}
.ydc_c00183{bottom:917.565000px;}
.ydd_c00183{bottom:918.435000px;}
.ye1_c00183{bottom:920.160000px;}
.ydf_c00183{bottom:921.030000px;}
.yde_c00183{bottom:921.885000px;}
.ye0_c00183{bottom:922.755000px;}
.ye4_c00183{bottom:923.610000px;}
.ye2_c00183{bottom:931.395000px;}
.ye3_c00183{bottom:932.250000px;}
.yd7_c00183{bottom:940.035000px;}
.yd6_c00183{bottom:945.210000px;}
.yd8_c00183{bottom:946.080000px;}
.yda_c00183{bottom:946.950000px;}
.ydb_c00183{bottom:949.530000px;}
.yd9_c00183{bottom:958.170000px;}
.yd1_c00183{bottom:962.490000px;}
.ycb_c00183{bottom:965.085000px;}
.ycf_c00183{bottom:965.955000px;}
.yd2_c00183{bottom:966.810000px;}
.ycd_c00183{bottom:967.680000px;}
.yc9_c00183{bottom:969.405000px;}
.ycc_c00183{bottom:970.275000px;}
.yce_c00183{bottom:971.130000px;}
.yd5_c00183{bottom:974.595000px;}
.yd0_c00183{bottom:975.450000px;}
.yd4_c00183{bottom:976.320000px;}
.yd3_c00183{bottom:981.510000px;}
.yb_c00183{bottom:982.365000px;}
.yca_c00183{bottom:986.685000px;}
.ybd_c00183{bottom:990.150000px;}
.yc0_c00183{bottom:992.730000px;}
.ybe_c00183{bottom:993.600000px;}
.ybf_c00183{bottom:994.470000px;}
.yc2_c00183{bottom:995.325000px;}
.yc1_c00183{bottom:997.050000px;}
.yc7_c00183{bottom:998.790000px;}
.yc3_c00183{bottom:999.645000px;}
.yc5_c00183{bottom:1001.370000px;}
.yc4_c00183{bottom:1003.965000px;}
.yc6_c00183{bottom:1004.835000px;}
.yc8_c00183{bottom:1006.560000px;}
.yb0_c00183{bottom:1012.605000px;}
.yb1_c00183{bottom:1013.475000px;}
.yb2_c00183{bottom:1017.795000px;}
.yb3_c00183{bottom:1018.650000px;}
.yb7_c00183{bottom:1022.115000px;}
.yb4_c00183{bottom:1022.970000px;}
.yb5_c00183{bottom:1024.710000px;}
.yba_c00183{bottom:1025.565000px;}
.yb6_c00183{bottom:1027.290000px;}
.yb8_c00183{bottom:1028.160000px;}
.yb9_c00183{bottom:1029.030000px;}
.ya7_c00183{bottom:1029.885000px;}
.ya6_c00183{bottom:1033.350000px;}
.yaa_c00183{bottom:1034.205000px;}
.ya5_c00183{bottom:1035.075000px;}
.ybb_c00183{bottom:1038.525000px;}
.ybc_c00183{bottom:1039.395000px;}
.ya9_c00183{bottom:1048.035000px;}
.yaf_c00183{bottom:1051.485000px;}
.yac_c00183{bottom:1055.805000px;}
.yae_c00183{bottom:1056.675000px;}
.ya8_c00183{bottom:1057.530000px;}
.y9b_c00183{bottom:1062.720000px;}
.yad_c00183{bottom:1063.590000px;}
.yab_c00183{bottom:1064.445000px;}
.y9f_c00183{bottom:1065.315000px;}
.y9c_c00183{bottom:1066.170000px;}
.y9e_c00183{bottom:1067.910000px;}
.ya0_c00183{bottom:1070.490000px;}
.y9d_c00183{bottom:1071.360000px;}
.ya1_c00183{bottom:1073.085000px;}
.ya2_c00183{bottom:1076.550000px;}
.ya3_c00183{bottom:1077.405000px;}
.y8f_c00183{bottom:1088.640000px;}
.ya4_c00183{bottom:1092.960000px;}
.y92_c00183{bottom:1094.685000px;}
.y90_c00183{bottom:1095.555000px;}
.y91_c00183{bottom:1096.410000px;}
.y96_c00183{bottom:1097.280000px;}
.y97_c00183{bottom:1098.150000px;}
.y99_c00183{bottom:1099.005000px;}
.y93_c00183{bottom:1099.875000px;}
.y95_c00183{bottom:1101.600000px;}
.y94_c00183{bottom:1103.325000px;}
.y98_c00183{bottom:1106.790000px;}
.y9a_c00183{bottom:1115.430000px;}
.y84_c00183{bottom:1116.285000px;}
.y86_c00183{bottom:1118.010000px;}
.y85_c00183{bottom:1118.880000px;}
.y88_c00183{bottom:1120.605000px;}
.y8a_c00183{bottom:1122.330000px;}
.y8b_c00183{bottom:1123.200000px;}
.y87_c00183{bottom:1124.070000px;}
.y8c_c00183{bottom:1125.795000px;}
.y8d_c00183{bottom:1128.390000px;}
.y8e_c00183{bottom:1134.435000px;}
.y7b_c00183{bottom:1135.290000px;}
.y89_c00183{bottom:1136.160000px;}
.y7d_c00183{bottom:1141.350000px;}
.y7c_c00183{bottom:1142.205000px;}
.y7f_c00183{bottom:1145.670000px;}
.y7e_c00183{bottom:1147.395000px;}
.y81_c00183{bottom:1148.250000px;}
.y80_c00183{bottom:1149.120000px;}
.y83_c00183{bottom:1153.440000px;}
.y73_c00183{bottom:1154.310000px;}
.y77_c00183{bottom:1156.890000px;}
.y74_c00183{bottom:1157.760000px;}
.y75_c00183{bottom:1160.355000px;}
.y76_c00183{bottom:1162.950000px;}
.y82_c00183{bottom:1164.675000px;}
.y69_c00183{bottom:1165.530000px;}
.y78_c00183{bottom:1168.125000px;}
.y79_c00183{bottom:1168.995000px;}
.y6a_c00183{bottom:1169.850000px;}
.y6b_c00183{bottom:1170.720000px;}
.y68_c00183{bottom:1171.590000px;}
.y6f_c00183{bottom:1174.170000px;}
.y7a_c00183{bottom:1175.910000px;}
.y6c_c00183{bottom:1176.765000px;}
.y6d_c00183{bottom:1178.490000px;}
.y6e_c00183{bottom:1179.360000px;}
.y70_c00183{bottom:1181.085000px;}
.y71_c00183{bottom:1181.955000px;}
.y72_c00183{bottom:1182.810000px;}
.y5e_c00183{bottom:1189.725000px;}
.y206_c00183{bottom:1192.320000px;}
.y61_c00183{bottom:1193.190000px;}
.ya_c00183{bottom:1194.915000px;}
.y5f_c00183{bottom:1195.770000px;}
.y60_c00183{bottom:1196.640000px;}
.y62_c00183{bottom:1197.510000px;}
.y65_c00183{bottom:1198.365000px;}
.y64_c00183{bottom:1205.280000px;}
.y67_c00183{bottom:1206.150000px;}
.y66_c00183{bottom:1207.875000px;}
.y57_c00183{bottom:1212.195000px;}
.y63_c00183{bottom:1214.790000px;}
.y58_c00183{bottom:1216.515000px;}
.y59_c00183{bottom:1219.965000px;}
.y9_c00183{bottom:1221.690000px;}
.y8_c00183{bottom:1223.430000px;}
.y5b_c00183{bottom:1224.285000px;}
.y5a_c00183{bottom:1226.010000px;}
.y5c_c00183{bottom:1228.605000px;}
.y5d_c00183{bottom:1230.330000px;}
.y56_c00183{bottom:1232.070000px;}
.y4c_c00183{bottom:1236.390000px;}
.y4b_c00183{bottom:1240.710000px;}
.y4d_c00183{bottom:1243.290000px;}
.y51_c00183{bottom:1247.610000px;}
.y7_c00183{bottom:1249.350000px;}
.y55_c00183{bottom:1250.205000px;}
.y4e_c00183{bottom:1251.075000px;}
.y6_c00183{bottom:1253.670000px;}
.y4f_c00183{bottom:1254.525000px;}
.y52_c00183{bottom:1257.120000px;}
.y54_c00183{bottom:1258.845000px;}
.y53_c00183{bottom:1262.310000px;}
.y50_c00183{bottom:1264.890000px;}
.y43_c00183{bottom:1267.485000px;}
.y48_c00183{bottom:1268.355000px;}
.y45_c00183{bottom:1269.210000px;}
.y42_c00183{bottom:1271.805000px;}
.y44_c00183{bottom:1274.400000px;}
.y5_c00183{bottom:1275.270000px;}
.y46_c00183{bottom:1276.995000px;}
.y4a_c00183{bottom:1277.850000px;}
.y49_c00183{bottom:1281.315000px;}
.y39_c00183{bottom:1283.040000px;}
.y3b_c00183{bottom:1286.490000px;}
.y47_c00183{bottom:1287.360000px;}
.y3d_c00183{bottom:1288.230000px;}
.y3c_c00183{bottom:1290.810000px;}
.y3e_c00183{bottom:1294.275000px;}
.y3f_c00183{bottom:1295.130000px;}
.y3a_c00183{bottom:1296.870000px;}
.y40_c00183{bottom:1298.595000px;}
.y41_c00183{bottom:1302.915000px;}
.y30_c00183{bottom:1313.280000px;}
.y33_c00183{bottom:1318.470000px;}
.y2f_c00183{bottom:1321.050000px;}
.y35_c00183{bottom:1321.920000px;}
.y31_c00183{bottom:1323.645000px;}
.y32_c00183{bottom:1324.515000px;}
.y34_c00183{bottom:1325.370000px;}
.y36_c00183{bottom:1327.110000px;}
.y38_c00183{bottom:1327.965000px;}
.y37_c00183{bottom:1330.560000px;}
.y4_c00183{bottom:1333.155000px;}
.y26_c00183{bottom:1344.390000px;}
.y2a_c00183{bottom:1345.245000px;}
.y25_c00183{bottom:1346.970000px;}
.y2b_c00183{bottom:1347.840000px;}
.y27_c00183{bottom:1348.710000px;}
.y28_c00183{bottom:1350.435000px;}
.y2e_c00183{bottom:1351.290000px;}
.y29_c00183{bottom:1352.160000px;}
.y2c_c00183{bottom:1353.030000px;}
.y2d_c00183{bottom:1353.885000px;}
.y24_c00183{bottom:1359.930000px;}
.y3_c00183{bottom:1361.670000px;}
.y2_c00183{bottom:1365.120000px;}
.y1_c00183{bottom:1365.990000px;}
.y1b_c00183{bottom:1367.715000px;}
.y1c_c00183{bottom:1371.165000px;}
.y1d_c00183{bottom:1372.035000px;}
.y1f_c00183{bottom:1374.630000px;}
.y23_c00183{bottom:1377.210000px;}
.y1e_c00183{bottom:1378.950000px;}
.y22_c00183{bottom:1379.805000px;}
.y21_c00183{bottom:1380.675000px;}
.y20_c00183{bottom:1381.530000px;}
.y11_c00183{bottom:1396.230000px;}
.y13_c00183{bottom:1398.810000px;}
.y17_c00183{bottom:1403.130000px;}
.y19_c00183{bottom:1405.725000px;}
.y12_c00183{bottom:1406.595000px;}
.y1a_c00183{bottom:1407.450000px;}
.y15_c00183{bottom:1408.320000px;}
.y14_c00183{bottom:1409.190000px;}
.y16_c00183{bottom:1410.045000px;}
.y18_c00183{bottom:1410.915000px;}
.ha_c00183{height:3.110063px;}
.h22_c00183{height:5.399414px;}
.h4_c00183{height:6.209326px;}
.h2_c00183{height:9.340986px;}
.h3_c00183{height:12.418652px;}
.h7_c00183{height:15.550313px;}
.h8_c00183{height:18.681973px;}
.h6_c00183{height:21.759639px;}
.h25_c00183{height:24.891299px;}
.h9_c00183{height:27.968965px;}
.h24_c00183{height:31.100625px;}
.h5_c00183{height:34.232285px;}
.h21_c00183{height:37.309951px;}
.h1b_c00183{height:40.441611px;}
.h28_c00183{height:43.519277px;}
.h26_c00183{height:46.650937px;}
.h15_c00183{height:49.782598px;}
.h23_c00183{height:52.860264px;}
.h14_c00183{height:55.991924px;}
.h11_c00183{height:59.069590px;}
.h17_c00183{height:62.201250px;}
.hb_c00183{height:65.332910px;}
.he_c00183{height:68.410576px;}
.hd_c00183{height:71.542236px;}
.h19_c00183{height:74.619902px;}
.h18_c00183{height:77.751563px;}
.h12_c00183{height:80.883223px;}
.h13_c00183{height:83.960889px;}
.h10_c00183{height:87.092549px;}
.h27_c00183{height:90.170215px;}
.h16_c00183{height:93.301875px;}
.h20_c00183{height:96.433535px;}
.hc_c00183{height:99.511201px;}
.h1a_c00183{height:102.642861px;}
.h1d_c00183{height:105.720527px;}
.h1c_c00183{height:108.852188px;}
.h1e_c00183{height:111.983848px;}
.hf_c00183{height:115.061514px;}
.h1f_c00183{height:118.193174px;}
.h2a_c00183{height:124.402500px;}
.h29_c00183{height:143.084473px;}
.h1_c00183{height:1503.000000px;}
.h0_c00183{height:1503.360000px;}
.w0_c00183{width:1090.365000px;}
.w1_c00183{width:1090.500000px;}
.x0_c00183{left:0.000000px;}
.x7_c00183{left:6.915000px;}
.x4_c00183{left:21.600048px;}
.x8_c00183{left:28.515000px;}
.x9_c00183{left:45.795000px;}
.xc_c00183{left:109.725000px;}
.xd_c00183{left:127.005000px;}
.xa_c00183{left:134.790000px;}
.x5_c00183{left:147.750000px;}
.xb_c00183{left:152.925000px;}
.x6_c00183{left:154.650000px;}
.xe_c00183{left:176.250000px;}
.x1_c00183{left:181.440000px;}
.x2_c00183{left:190.080000px;}
.x3_c00183{left:197.850000px;}
.x56_c00183{left:201.315000px;}
.x61_c00183{left:212.550000px;}
.xd6_c00183{left:216.000000px;}
.x7a_c00183{left:221.190000px;}
.x62_c00183{left:222.915000px;}
.x68_c00183{left:224.640000px;}
.x63_c00183{left:229.830000px;}
.x20_c00183{left:233.280000px;}
.xb5_c00183{left:235.005000px;}
.x2a_c00183{left:236.730000px;}
.x9d_c00183{left:239.325000px;}
.xef_c00183{left:241.050000px;}
.xfd_c00183{left:244.515000px;}
.x69_c00183{left:247.110000px;}
.xbf_c00183{left:248.835000px;}
.x36_c00183{left:251.430000px;}
.x93_c00183{left:254.010000px;}
.x8c_c00183{left:256.605000px;}
.x2b_c00183{left:259.200000px;}
.x108_c00183{left:260.925000px;}
.xda_c00183{left:262.650000px;}
.xa2_c00183{left:266.970000px;}
.x105_c00183{left:270.435000px;}
.x10d_c00183{left:272.160000px;}
.x71_c00183{left:274.755000px;}
.x7b_c00183{left:277.350000px;}
.xe2_c00183{left:279.930000px;}
.x50_c00183{left:281.670000px;}
.x64_c00183{left:283.395000px;}
.x85_c00183{left:285.990000px;}
.xa3_c00183{left:291.165000px;}
.x2c_c00183{left:296.355000px;}
.xb6_c00183{left:298.950000px;}
.xf_c00183{left:301.530000px;}
.xb1_c00183{left:303.270000px;}
.xa7_c00183{left:306.720000px;}
.xad_c00183{left:311.910000px;}
.x7c_c00183{left:313.635000px;}
.x72_c00183{left:318.810000px;}
.x48_c00183{left:324.000000px;}
.x37_c00183{left:325.725000px;}
.x21_c00183{left:330.045000px;}
.xb7_c00183{left:331.770000px;}
.x94_c00183{left:335.235000px;}
.x38_c00183{left:338.685000px;}
.x6a_c00183{left:341.280000px;}
.x51_c00183{left:343.005000px;}
.x102_c00183{left:344.730000px;}
.xcb_c00183{left:349.920000px;}
.xf8_c00183{left:351.645000px;}
.xd7_c00183{left:354.240000px;}
.x39_c00183{left:356.835000px;}
.x10_c00183{left:358.560000px;}
.xa8_c00183{left:360.285000px;}
.xc0_c00183{left:363.750000px;}
.x110_c00183{left:365.475000px;}
.x6b_c00183{left:368.070000px;}
.xdb_c00183{left:370.650000px;}
.x7d_c00183{left:372.390000px;}
.xdc_c00183{left:374.115000px;}
.x11_c00183{left:376.710000px;}
.xb2_c00183{left:381.030000px;}
.x49_c00183{left:384.480000px;}
.xf0_c00183{left:386.205000px;}
.x3a_c00183{left:389.670000px;}
.xa9_c00183{left:391.395000px;}
.xe3_c00183{left:393.120000px;}
.xf9_c00183{left:396.570000px;}
.xe9_c00183{left:399.165000px;}
.xdf_c00183{left:404.355000px;}
.x2d_c00183{left:406.080000px;}
.xc8_c00183{left:411.270000px;}
.x4a_c00183{left:412.995000px;}
.x86_c00183{left:415.590000px;}
.xb8_c00183{left:418.170000px;}
.xae_c00183{left:419.910000px;}
.x95_c00183{left:421.635000px;}
.x3b_c00183{left:424.230000px;}
.x12_c00183{left:430.275000px;}
.xdd_c00183{left:432.870000px;}
.xe4_c00183{left:434.595000px;}
.xe7_c00183{left:439.770000px;}
.xce_c00183{left:442.365000px;}
.x57_c00183{left:444.090000px;}
.x10e_c00183{left:445.830000px;}
.x22_c00183{left:449.280000px;}
.x13_c00183{left:451.005000px;}
.x73_c00183{left:454.470000px;}
.x2e_c00183{left:456.195000px;}
.x58_c00183{left:457.920000px;}
.x3c_c00183{left:460.515000px;}
.xfe_c00183{left:462.240000px;}
.xaa_c00183{left:464.835000px;}
.x2f_c00183{left:466.560000px;}
.x6c_c00183{left:476.070000px;}
.xb9_c00183{left:478.650000px;}
.x65_c00183{left:481.245000px;}
.x3d_c00183{left:482.970000px;}
.xc1_c00183{left:484.710000px;}
.xab_c00183{left:486.435000px;}
.xea_c00183{left:489.885000px;}
.x23_c00183{left:492.480000px;}
.x59_c00183{left:494.205000px;}
.x14_c00183{left:495.930000px;}
.x7e_c00183{left:501.120000px;}
.x10b_c00183{left:503.715000px;}
.xc2_c00183{left:505.440000px;}
.x66_c00183{left:508.035000px;}
.xa4_c00183{left:509.760000px;}
.x24_c00183{left:511.485000px;}
.x9e_c00183{left:515.805000px;}
.x4b_c00183{left:518.400000px;}
.xcc_c00183{left:521.850000px;}
.x3e_c00183{left:523.590000px;}
.x15_c00183{left:526.170000px;}
.xeb_c00183{left:527.910000px;}
.xff_c00183{left:529.635000px;}
.x30_c00183{left:531.360000px;}
.x3f_c00183{left:533.085000px;}
.x52_c00183{left:535.680000px;}
.xba_c00183{left:537.405000px;}
.x74_c00183{left:540.000000px;}
.xec_c00183{left:541.725000px;}
.x10f_c00183{left:543.450000px;}
.xd8_c00183{left:545.190000px;}
.x16_c00183{left:548.640000px;}
.xf5_c00183{left:551.235000px;}
.xf2_c00183{left:554.685000px;}
.xe0_c00183{left:558.150000px;}
.xfa_c00183{left:560.730000px;}
.x25_c00183{left:565.050000px;}
.x5a_c00183{left:566.790000px;}
.x6d_c00183{left:569.370000px;}
.xd2_c00183{left:571.965000px;}
.x17_c00183{left:573.690000px;}
.x40_c00183{left:576.285000px;}
.xbb_c00183{left:580.605000px;}
.x26_c00183{left:583.200000px;}
.x87_c00183{left:584.925000px;}
.xd3_c00183{left:586.650000px;}
.x18_c00183{left:590.970000px;}
.x82_c00183{left:594.435000px;}
.xd9_c00183{left:596.160000px;}
.x9f_c00183{left:598.755000px;}
.x4c_c00183{left:600.480000px;}
.x5b_c00183{left:603.075000px;}
.x41_c00183{left:605.670000px;}
.x31_c00183{left:608.250000px;}
.x8d_c00183{left:609.990000px;}
.xc9_c00183{left:611.715000px;}
.xe1_c00183{left:613.440000px;}
.xd4_c00183{left:616.035000px;}
.xed_c00183{left:617.760000px;}
.xf6_c00183{left:619.485000px;}
.xf1_c00183{left:622.080000px;}
.xe5_c00183{left:624.675000px;}
.xe8_c00183{left:627.270000px;}
.x19_c00183{left:628.995000px;}
.x42_c00183{left:631.590000px;}
.x7f_c00183{left:634.170000px;}
.x75_c00183{left:639.360000px;}
.x43_c00183{left:641.955000px;}
.xee_c00183{left:646.275000px;}
.x96_c00183{left:648.000000px;}
.xcf_c00183{left:649.725000px;}
.x53_c00183{left:652.320000px;}
.x5c_c00183{left:654.915000px;}
.xaf_c00183{left:656.640000px;}
.x10a_c00183{left:660.960000px;}
.x5d_c00183{left:663.555000px;}
.x1a_c00183{left:665.280000px;}
.x8e_c00183{left:667.005000px;}
.x97_c00183{left:669.600000px;}
.x88_c00183{left:673.920000px;}
.x8f_c00183{left:675.645000px;}
.xb3_c00183{left:677.370000px;}
.x6e_c00183{left:680.835000px;}
.x106_c00183{left:682.560000px;}
.x4d_c00183{left:686.880000px;}
.xb0_c00183{left:688.605000px;}
.x1b_c00183{left:690.330000px;}
.xcd_c00183{left:692.925000px;}
.x54_c00183{left:698.115000px;}
.x76_c00183{left:703.290000px;}
.x32_c00183{left:705.030000px;}
.x67_c00183{left:707.610000px;}
.x101_c00183{left:709.350000px;}
.x1c_c00183{left:711.075000px;}
.x44_c00183{left:716.250000px;}
.xc3_c00183{left:720.570000px;}
.xc5_c00183{left:723.165000px;}
.x10c_c00183{left:724.890000px;}
.xf3_c00183{left:727.485000px;}
.xd0_c00183{left:730.950000px;}
.x89_c00183{left:732.675000px;}
.x98_c00183{left:737.850000px;}
.xac_c00183{left:742.170000px;}
.xa0_c00183{left:744.765000px;}
.x77_c00183{left:746.490000px;}
.xb4_c00183{left:748.230000px;}
.x5e_c00183{left:750.810000px;}
.x1d_c00183{left:754.275000px;}
.x45_c00183{left:756.000000px;}
.x83_c00183{left:757.725000px;}
.x27_c00183{left:760.320000px;}
.x33_c00183{left:762.915000px;}
.x6f_c00183{left:764.640000px;}
.x1e_c00183{left:770.685000px;}
.xbc_c00183{left:772.410000px;}
.x34_c00183{left:775.005000px;}
.x55_c00183{left:777.600000px;}
.x90_c00183{left:781.050000px;}
.xde_c00183{left:782.790000px;}
.x107_c00183{left:784.515000px;}
.x99_c00183{left:787.965000px;}
.x8a_c00183{left:790.560000px;}
.xd1_c00183{left:794.880000px;}
.x28_c00183{left:796.605000px;}
.x78_c00183{left:798.330000px;}
.x5f_c00183{left:800.925000px;}
.xfb_c00183{left:802.650000px;}
.xc6_c00183{left:804.390000px;}
.xf7_c00183{left:807.840000px;}
.xc4_c00183{left:813.030000px;}
.x29_c00183{left:816.480000px;}
.x46_c00183{left:818.205000px;}
.x109_c00183{left:821.670000px;}
.xbd_c00183{left:823.395000px;}
.xca_c00183{left:825.990000px;}
.x4e_c00183{left:828.570000px;}
.x35_c00183{left:830.310000px;}
.x60_c00183{left:833.760000px;}
.xc7_c00183{left:836.355000px;}
.x84_c00183{left:838.950000px;}
.xd5_c00183{left:840.675000px;}
.x100_c00183{left:842.400000px;}
.x79_c00183{left:844.125000px;}
.x1f_c00183{left:845.850000px;}
.x8b_c00183{left:848.445000px;}
.xbe_c00183{left:850.170000px;}
.x9a_c00183{left:854.490000px;}
.x80_c00183{left:860.550000px;}
.x9b_c00183{left:865.725000px;}
.xfc_c00183{left:867.450000px;}
.x4f_c00183{left:874.365000px;}
.x70_c00183{left:876.960000px;}
.xf4_c00183{left:881.280000px;}
.x47_c00183{left:883.005000px;}
.x91_c00183{left:884.730000px;}
.xa1_c00183{left:887.325000px;}
.xa5_c00183{left:889.050000px;}
.xe6_c00183{left:891.645000px;}
.x81_c00183{left:896.835000px;}
.x103_c00183{left:901.155000px;}
.x111_c00183{left:904.605000px;}
.xa6_c00183{left:908.070000px;}
.x92_c00183{left:910.650000px;}
.x104_c00183{left:915.840000px;}
.x9c_c00183{left:919.290000px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.v1_c00183{vertical-align:3.093333pt;}
.ls1_c00183{letter-spacing:0.000000pt;}
.ls0_c00183{letter-spacing:33.220693pt;}
.ws0_c00183{word-spacing:0.000000pt;}
.fs8_c00183{font-size:3.072000pt;}
.fs1a_c00183{font-size:5.333333pt;}
.fs2_c00183{font-size:6.133333pt;}
.fs0_c00183{font-size:9.226667pt;}
.fs1_c00183{font-size:12.266667pt;}
.fs5_c00183{font-size:15.360000pt;}
.fs6_c00183{font-size:18.453333pt;}
.fs4_c00183{font-size:21.493333pt;}
.fs23_c00183{font-size:24.586667pt;}
.fs7_c00183{font-size:27.626667pt;}
.fs22_c00183{font-size:30.720000pt;}
.fs3_c00183{font-size:33.813333pt;}
.fs20_c00183{font-size:36.853333pt;}
.fs19_c00183{font-size:39.946667pt;}
.fs26_c00183{font-size:42.986667pt;}
.fs24_c00183{font-size:46.080000pt;}
.fs13_c00183{font-size:49.173333pt;}
.fs21_c00183{font-size:52.213333pt;}
.fs12_c00183{font-size:55.306667pt;}
.fsf_c00183{font-size:58.346667pt;}
.fs15_c00183{font-size:61.440000pt;}
.fs9_c00183{font-size:64.533333pt;}
.fsc_c00183{font-size:67.573333pt;}
.fsb_c00183{font-size:70.666667pt;}
.fs17_c00183{font-size:73.706667pt;}
.fs16_c00183{font-size:76.800000pt;}
.fs10_c00183{font-size:79.893333pt;}
.fs11_c00183{font-size:82.933333pt;}
.fse_c00183{font-size:86.026667pt;}
.fs25_c00183{font-size:89.066667pt;}
.fs14_c00183{font-size:92.160000pt;}
.fs1f_c00183{font-size:95.253333pt;}
.fsa_c00183{font-size:98.293333pt;}
.fs18_c00183{font-size:101.386667pt;}
.fs1c_c00183{font-size:104.426667pt;}
.fs1b_c00183{font-size:107.520000pt;}
.fs1d_c00183{font-size:110.613333pt;}
.fsd_c00183{font-size:113.653333pt;}
.fs1e_c00183{font-size:116.746667pt;}
.fs28_c00183{font-size:122.880000pt;}
.fs27_c00183{font-size:141.333333pt;}
.y0_c00183{bottom:0.000000pt;}
.y204_c00183{bottom:208.893333pt;}
.y203_c00183{bottom:209.666667pt;}
.y205_c00183{bottom:210.426667pt;}
.y1f8_c00183{bottom:212.733333pt;}
.y1f9_c00183{bottom:214.266667pt;}
.y1fd_c00183{bottom:219.653333pt;}
.y1ff_c00183{bottom:220.413333pt;}
.y1fe_c00183{bottom:226.560000pt;}
.y1fb_c00183{bottom:227.333333pt;}
.y202_c00183{bottom:228.093333pt;}
.y200_c00183{bottom:231.173333pt;}
.y201_c00183{bottom:231.933333pt;}
.y1fc_c00183{bottom:233.466667pt;}
.y1fa_c00183{bottom:234.240000pt;}
.y1ee_c00183{bottom:235.013333pt;}
.y1ed_c00183{bottom:235.773333pt;}
.y1ef_c00183{bottom:236.546667pt;}
.y1f0_c00183{bottom:238.080000pt;}
.y1f1_c00183{bottom:238.853333pt;}
.y1f2_c00183{bottom:240.386667pt;}
.y1f6_c00183{bottom:245.760000pt;}
.y1f7_c00183{bottom:249.600000pt;}
.y1f5_c00183{bottom:250.373333pt;}
.y1f3_c00183{bottom:256.506667pt;}
.y1e6_c00183{bottom:258.053333pt;}
.y1e7_c00183{bottom:258.813333pt;}
.y1f4_c00183{bottom:259.586667pt;}
.y1e2_c00183{bottom:260.346667pt;}
.y1e3_c00183{bottom:261.120000pt;}
.y1e5_c00183{bottom:262.653333pt;}
.y1e4_c00183{bottom:263.426667pt;}
.y1e8_c00183{bottom:267.266667pt;}
.y1eb_c00183{bottom:269.573333pt;}
.y1ea_c00183{bottom:270.333333pt;}
.y1ec_c00183{bottom:271.106667pt;}
.y1e9_c00183{bottom:274.946667pt;}
.y1de_c00183{bottom:292.613333pt;}
.y1df_c00183{bottom:296.453333pt;}
.y1e1_c00183{bottom:297.213333pt;}
.y1e0_c00183{bottom:297.986667pt;}
.y1d4_c00183{bottom:301.053333pt;}
.y1d2_c00183{bottom:301.826667pt;}
.y1dd_c00183{bottom:303.360000pt;}
.y1d5_c00183{bottom:304.133333pt;}
.y1d6_c00183{bottom:305.666667pt;}
.y1d7_c00183{bottom:307.973333pt;}
.y1dc_c00183{bottom:311.813333pt;}
.y1db_c00183{bottom:312.573333pt;}
.y1d9_c00183{bottom:313.346667pt;}
.y1d3_c00183{bottom:314.106667pt;}
.y1d8_c00183{bottom:316.413333pt;}
.y1da_c00183{bottom:321.786667pt;}
.y1c7_c00183{bottom:325.626667pt;}
.y1c6_c00183{bottom:326.400000pt;}
.y1c5_c00183{bottom:327.173333pt;}
.y1ca_c00183{bottom:327.933333pt;}
.y1c8_c00183{bottom:330.240000pt;}
.y1c9_c00183{bottom:331.773333pt;}
.y1cb_c00183{bottom:332.546667pt;}
.y1cc_c00183{bottom:334.080000pt;}
.y1d0_c00183{bottom:334.853333pt;}
.y1cd_c00183{bottom:335.613333pt;}
.y1ce_c00183{bottom:336.386667pt;}
.y1cf_c00183{bottom:341.760000pt;}
.y1d1_c00183{bottom:344.826667pt;}
.y1b9_c00183{bottom:345.600000pt;}
.y1b7_c00183{bottom:347.133333pt;}
.y1b8_c00183{bottom:349.440000pt;}
.y1b6_c00183{bottom:350.973333pt;}
.y1bb_c00183{bottom:351.746667pt;}
.y1ba_c00183{bottom:352.506667pt;}
.y1bc_c00183{bottom:354.053333pt;}
.y1c1_c00183{bottom:354.813333pt;}
.y1bd_c00183{bottom:355.586667pt;}
.y1be_c00183{bottom:360.186667pt;}
.y1c0_c00183{bottom:361.733333pt;}
.y1bf_c00183{bottom:363.266667pt;}
.y1c4_c00183{bottom:364.026667pt;}
.y1c3_c00183{bottom:365.573333pt;}
.y1ad_c00183{bottom:368.640000pt;}
.y1c2_c00183{bottom:369.413333pt;}
.y1ae_c00183{bottom:373.253333pt;}
.y1ac_c00183{bottom:374.013333pt;}
.y1af_c00183{bottom:374.786667pt;}
.y1b0_c00183{bottom:380.160000pt;}
.y1b2_c00183{bottom:380.933333pt;}
.y1b1_c00183{bottom:381.693333pt;}
.y1b4_c00183{bottom:386.306667pt;}
.y1b5_c00183{bottom:387.066667pt;}
.y1b3_c00183{bottom:391.680000pt;}
.y1a3_c00183{bottom:394.746667pt;}
.y1a5_c00183{bottom:395.520000pt;}
.y1a4_c00183{bottom:396.293333pt;}
.y1a6_c00183{bottom:397.826667pt;}
.y1a7_c00183{bottom:398.586667pt;}
.y1a9_c00183{bottom:400.893333pt;}
.y1a8_c00183{bottom:403.200000pt;}
.y1aa_c00183{bottom:407.040000pt;}
.y1ab_c00183{bottom:409.346667pt;}
.y195_c00183{bottom:416.253333pt;}
.y194_c00183{bottom:417.026667pt;}
.y196_c00183{bottom:419.333333pt;}
.y197_c00183{bottom:420.093333pt;}
.y19a_c00183{bottom:421.626667pt;}
.y193_c00183{bottom:422.400000pt;}
.y19e_c00183{bottom:423.933333pt;}
.y199_c00183{bottom:424.706667pt;}
.y19f_c00183{bottom:425.466667pt;}
.y19c_c00183{bottom:427.013333pt;}
.y19d_c00183{bottom:427.773333pt;}
.y198_c00183{bottom:429.306667pt;}
.y19b_c00183{bottom:430.080000pt;}
.y1a0_c00183{bottom:430.853333pt;}
.y1a2_c00183{bottom:432.386667pt;}
.y18f_c00183{bottom:435.453333pt;}
.y190_c00183{bottom:436.226667pt;}
.y1a1_c00183{bottom:440.066667pt;}
.y191_c00183{bottom:441.600000pt;}
.y192_c00183{bottom:445.440000pt;}
.y18e_c00183{bottom:447.746667pt;}
.y183_c00183{bottom:450.813333pt;}
.y185_c00183{bottom:452.346667pt;}
.y187_c00183{bottom:453.893333pt;}
.y188_c00183{bottom:456.960000pt;}
.y186_c00183{bottom:459.266667pt;}
.y184_c00183{bottom:460.026667pt;}
.y182_c00183{bottom:461.573333pt;}
.y189_c00183{bottom:463.106667pt;}
.y18b_c00183{bottom:464.640000pt;}
.y18c_c00183{bottom:465.413333pt;}
.y18d_c00183{bottom:470.013333pt;}
.y18a_c00183{bottom:474.626667pt;}
.y177_c00183{bottom:481.533333pt;}
.y178_c00183{bottom:482.306667pt;}
.y175_c00183{bottom:483.066667pt;}
.y179_c00183{bottom:483.840000pt;}
.y176_c00183{bottom:485.373333pt;}
.y17a_c00183{bottom:486.146667pt;}
.y17c_c00183{bottom:487.680000pt;}
.y17d_c00183{bottom:488.453333pt;}
.y180_c00183{bottom:489.986667pt;}
.y17b_c00183{bottom:490.746667pt;}
.y17e_c00183{bottom:492.293333pt;}
.y181_c00183{bottom:493.826667pt;}
.y17f_c00183{bottom:496.893333pt;}
.y16f_c00183{bottom:507.653333pt;}
.y16e_c00183{bottom:509.186667pt;}
.y16c_c00183{bottom:509.946667pt;}
.y170_c00183{bottom:512.253333pt;}
.y171_c00183{bottom:513.026667pt;}
.y16d_c00183{bottom:513.786667pt;}
.y174_c00183{bottom:516.093333pt;}
.y163_c00183{bottom:519.173333pt;}
.y166_c00183{bottom:522.240000pt;}
.y172_c00183{bottom:523.013333pt;}
.y167_c00183{bottom:523.773333pt;}
.y173_c00183{bottom:525.306667pt;}
.y10_c00183{bottom:527.613333pt;}
.y164_c00183{bottom:528.386667pt;}
.y165_c00183{bottom:530.693333pt;}
.y16a_c00183{bottom:531.453333pt;}
.y168_c00183{bottom:534.533333pt;}
.y16b_c00183{bottom:536.066667pt;}
.y169_c00183{bottom:539.133333pt;}
.y159_c00183{bottom:545.280000pt;}
.y15b_c00183{bottom:546.813333pt;}
.y15d_c00183{bottom:549.893333pt;}
.y15a_c00183{bottom:550.653333pt;}
.y15e_c00183{bottom:552.960000pt;}
.y15c_c00183{bottom:554.493333pt;}
.y160_c00183{bottom:557.573333pt;}
.y161_c00183{bottom:559.106667pt;}
.y15f_c00183{bottom:563.706667pt;}
.y162_c00183{bottom:565.253333pt;}
.y14d_c00183{bottom:572.160000pt;}
.y14b_c00183{bottom:572.933333pt;}
.y14c_c00183{bottom:574.466667pt;}
.y14f_c00183{bottom:575.226667pt;}
.y150_c00183{bottom:576.000000pt;}
.y14e_c00183{bottom:576.773333pt;}
.y151_c00183{bottom:577.533333pt;}
.y155_c00183{bottom:579.840000pt;}
.y157_c00183{bottom:583.680000pt;}
.y156_c00183{bottom:584.453333pt;}
.y153_c00183{bottom:585.986667pt;}
.y154_c00183{bottom:586.746667pt;}
.y158_c00183{bottom:587.520000pt;}
.y144_c00183{bottom:594.426667pt;}
.y152_c00183{bottom:595.973333pt;}
.y141_c00183{bottom:597.506667pt;}
.y142_c00183{bottom:598.266667pt;}
.y148_c00183{bottom:599.813333pt;}
.y149_c00183{bottom:602.880000pt;}
.y146_c00183{bottom:604.413333pt;}
.y147_c00183{bottom:605.946667pt;}
.y14a_c00183{bottom:606.720000pt;}
.y143_c00183{bottom:609.026667pt;}
.y133_c00183{bottom:610.560000pt;}
.y145_c00183{bottom:613.626667pt;}
.y134_c00183{bottom:614.400000pt;}
.y136_c00183{bottom:615.933333pt;}
.y132_c00183{bottom:617.466667pt;}
.y138_c00183{bottom:618.240000pt;}
.y13a_c00183{bottom:619.013333pt;}
.y13c_c00183{bottom:621.306667pt;}
.y137_c00183{bottom:622.080000pt;}
.y139_c00183{bottom:622.853333pt;}
.y140_c00183{bottom:625.146667pt;}
.y13e_c00183{bottom:627.453333pt;}
.y13f_c00183{bottom:630.533333pt;}
.y135_c00183{bottom:632.826667pt;}
.y12b_c00183{bottom:633.600000pt;}
.y13b_c00183{bottom:635.133333pt;}
.y12d_c00183{bottom:637.440000pt;}
.y13d_c00183{bottom:638.973333pt;}
.y12c_c00183{bottom:641.280000pt;}
.y12e_c00183{bottom:643.586667pt;}
.y131_c00183{bottom:645.893333pt;}
.y12f_c00183{bottom:647.426667pt;}
.y12a_c00183{bottom:650.493333pt;}
.y130_c00183{bottom:651.266667pt;}
.y11f_c00183{bottom:660.480000pt;}
.y121_c00183{bottom:661.253333pt;}
.y120_c00183{bottom:662.013333pt;}
.y123_c00183{bottom:663.546667pt;}
.y125_c00183{bottom:665.853333pt;}
.y122_c00183{bottom:666.626667pt;}
.y128_c00183{bottom:667.386667pt;}
.y127_c00183{bottom:671.226667pt;}
.y124_c00183{bottom:672.000000pt;}
.y126_c00183{bottom:672.773333pt;}
.y129_c00183{bottom:674.306667pt;}
.y115_c00183{bottom:678.146667pt;}
.y118_c00183{bottom:681.213333pt;}
.y116_c00183{bottom:683.520000pt;}
.y119_c00183{bottom:685.053333pt;}
.y11b_c00183{bottom:685.826667pt;}
.y11a_c00183{bottom:688.133333pt;}
.y11c_c00183{bottom:688.893333pt;}
.y11e_c00183{bottom:690.426667pt;}
.y11d_c00183{bottom:691.973333pt;}
.y117_c00183{bottom:698.106667pt;}
.y10c_c00183{bottom:699.653333pt;}
.y10d_c00183{bottom:702.720000pt;}
.y10e_c00183{bottom:704.253333pt;}
.y10f_c00183{bottom:705.786667pt;}
.y110_c00183{bottom:707.333333pt;}
.y112_c00183{bottom:708.093333pt;}
.y114_c00183{bottom:711.173333pt;}
.y113_c00183{bottom:711.933333pt;}
.y111_c00183{bottom:715.013333pt;}
.y103_c00183{bottom:726.533333pt;}
.y102_c00183{bottom:727.293333pt;}
.y107_c00183{bottom:730.373333pt;}
.y105_c00183{bottom:731.133333pt;}
.y101_c00183{bottom:731.906667pt;}
.y108_c00183{bottom:733.440000pt;}
.y106_c00183{bottom:735.746667pt;}
.y10a_c00183{bottom:736.506667pt;}
.ye_c00183{bottom:737.280000pt;}
.y10b_c00183{bottom:739.586667pt;}
.y104_c00183{bottom:740.346667pt;}
.yf_c00183{bottom:741.893333pt;}
.yfa_c00183{bottom:747.266667pt;}
.yf9_c00183{bottom:748.026667pt;}
.y109_c00183{bottom:748.800000pt;}
.yfb_c00183{bottom:749.573333pt;}
.yfc_c00183{bottom:752.640000pt;}
.yfd_c00183{bottom:753.413333pt;}
.yff_c00183{bottom:755.706667pt;}
.yfe_c00183{bottom:758.013333pt;}
.yf1_c00183{bottom:767.226667pt;}
.yf3_c00183{bottom:769.533333pt;}
.yd_c00183{bottom:770.306667pt;}
.yc_c00183{bottom:771.066667pt;}
.yf2_c00183{bottom:771.840000pt;}
.yf4_c00183{bottom:774.906667pt;}
.yf5_c00183{bottom:776.453333pt;}
.y100_c00183{bottom:777.986667pt;}
.yf6_c00183{bottom:779.520000pt;}
.yf7_c00183{bottom:783.360000pt;}
.yf8_c00183{bottom:787.200000pt;}
.ye7_c00183{bottom:789.506667pt;}
.ye9_c00183{bottom:790.266667pt;}
.ye8_c00183{bottom:791.813333pt;}
.ye6_c00183{bottom:794.106667pt;}
.yee_c00183{bottom:797.946667pt;}
.yea_c00183{bottom:798.720000pt;}
.yef_c00183{bottom:799.493333pt;}
.yec_c00183{bottom:802.560000pt;}
.yeb_c00183{bottom:803.333333pt;}
.yed_c00183{bottom:804.093333pt;}
.ye5_c00183{bottom:805.626667pt;}
.yf0_c00183{bottom:806.400000pt;}
.ydc_c00183{bottom:815.613333pt;}
.ydd_c00183{bottom:816.386667pt;}
.ye1_c00183{bottom:817.920000pt;}
.ydf_c00183{bottom:818.693333pt;}
.yde_c00183{bottom:819.453333pt;}
.ye0_c00183{bottom:820.226667pt;}
.ye4_c00183{bottom:820.986667pt;}
.ye2_c00183{bottom:827.906667pt;}
.ye3_c00183{bottom:828.666667pt;}
.yd7_c00183{bottom:835.586667pt;}
.yd6_c00183{bottom:840.186667pt;}
.yd8_c00183{bottom:840.960000pt;}
.yda_c00183{bottom:841.733333pt;}
.ydb_c00183{bottom:844.026667pt;}
.yd9_c00183{bottom:851.706667pt;}
.yd1_c00183{bottom:855.546667pt;}
.ycb_c00183{bottom:857.853333pt;}
.ycf_c00183{bottom:858.626667pt;}
.yd2_c00183{bottom:859.386667pt;}
.ycd_c00183{bottom:860.160000pt;}
.yc9_c00183{bottom:861.693333pt;}
.ycc_c00183{bottom:862.466667pt;}
.yce_c00183{bottom:863.226667pt;}
.yd5_c00183{bottom:866.306667pt;}
.yd0_c00183{bottom:867.066667pt;}
.yd4_c00183{bottom:867.840000pt;}
.yd3_c00183{bottom:872.453333pt;}
.yb_c00183{bottom:873.213333pt;}
.yca_c00183{bottom:877.053333pt;}
.ybd_c00183{bottom:880.133333pt;}
.yc0_c00183{bottom:882.426667pt;}
.ybe_c00183{bottom:883.200000pt;}
.ybf_c00183{bottom:883.973333pt;}
.yc2_c00183{bottom:884.733333pt;}
.yc1_c00183{bottom:886.266667pt;}
.yc7_c00183{bottom:887.813333pt;}
.yc3_c00183{bottom:888.573333pt;}
.yc5_c00183{bottom:890.106667pt;}
.yc4_c00183{bottom:892.413333pt;}
.yc6_c00183{bottom:893.186667pt;}
.yc8_c00183{bottom:894.720000pt;}
.yb0_c00183{bottom:900.093333pt;}
.yb1_c00183{bottom:900.866667pt;}
.yb2_c00183{bottom:904.706667pt;}
.yb3_c00183{bottom:905.466667pt;}
.yb7_c00183{bottom:908.546667pt;}
.yb4_c00183{bottom:909.306667pt;}
.yb5_c00183{bottom:910.853333pt;}
.yba_c00183{bottom:911.613333pt;}
.yb6_c00183{bottom:913.146667pt;}
.yb8_c00183{bottom:913.920000pt;}
.yb9_c00183{bottom:914.693333pt;}
.ya7_c00183{bottom:915.453333pt;}
.ya6_c00183{bottom:918.533333pt;}
.yaa_c00183{bottom:919.293333pt;}
.ya5_c00183{bottom:920.066667pt;}
.ybb_c00183{bottom:923.133333pt;}
.ybc_c00183{bottom:923.906667pt;}
.ya9_c00183{bottom:931.586667pt;}
.yaf_c00183{bottom:934.653333pt;}
.yac_c00183{bottom:938.493333pt;}
.yae_c00183{bottom:939.266667pt;}
.ya8_c00183{bottom:940.026667pt;}
.y9b_c00183{bottom:944.640000pt;}
.yad_c00183{bottom:945.413333pt;}
.yab_c00183{bottom:946.173333pt;}
.y9f_c00183{bottom:946.946667pt;}
.y9c_c00183{bottom:947.706667pt;}
.y9e_c00183{bottom:949.253333pt;}
.ya0_c00183{bottom:951.546667pt;}
.y9d_c00183{bottom:952.320000pt;}
.ya1_c00183{bottom:953.853333pt;}
.ya2_c00183{bottom:956.933333pt;}
.ya3_c00183{bottom:957.693333pt;}
.y8f_c00183{bottom:967.680000pt;}
.ya4_c00183{bottom:971.520000pt;}
.y92_c00183{bottom:973.053333pt;}
.y90_c00183{bottom:973.826667pt;}
.y91_c00183{bottom:974.586667pt;}
.y96_c00183{bottom:975.360000pt;}
.y97_c00183{bottom:976.133333pt;}
.y99_c00183{bottom:976.893333pt;}
.y93_c00183{bottom:977.666667pt;}
.y95_c00183{bottom:979.200000pt;}
.y94_c00183{bottom:980.733333pt;}
.y98_c00183{bottom:983.813333pt;}
.y9a_c00183{bottom:991.493333pt;}
.y84_c00183{bottom:992.253333pt;}
.y86_c00183{bottom:993.786667pt;}
.y85_c00183{bottom:994.560000pt;}
.y88_c00183{bottom:996.093333pt;}
.y8a_c00183{bottom:997.626667pt;}
.y8b_c00183{bottom:998.400000pt;}
.y87_c00183{bottom:999.173333pt;}
.y8c_c00183{bottom:1000.706667pt;}
.y8d_c00183{bottom:1003.013333pt;}
.y8e_c00183{bottom:1008.386667pt;}
.y7b_c00183{bottom:1009.146667pt;}
.y89_c00183{bottom:1009.920000pt;}
.y7d_c00183{bottom:1014.533333pt;}
.y7c_c00183{bottom:1015.293333pt;}
.y7f_c00183{bottom:1018.373333pt;}
.y7e_c00183{bottom:1019.906667pt;}
.y81_c00183{bottom:1020.666667pt;}
.y80_c00183{bottom:1021.440000pt;}
.y83_c00183{bottom:1025.280000pt;}
.y73_c00183{bottom:1026.053333pt;}
.y77_c00183{bottom:1028.346667pt;}
.y74_c00183{bottom:1029.120000pt;}
.y75_c00183{bottom:1031.426667pt;}
.y76_c00183{bottom:1033.733333pt;}
.y82_c00183{bottom:1035.266667pt;}
.y69_c00183{bottom:1036.026667pt;}
.y78_c00183{bottom:1038.333333pt;}
.y79_c00183{bottom:1039.106667pt;}
.y6a_c00183{bottom:1039.866667pt;}
.y6b_c00183{bottom:1040.640000pt;}
.y68_c00183{bottom:1041.413333pt;}
.y6f_c00183{bottom:1043.706667pt;}
.y7a_c00183{bottom:1045.253333pt;}
.y6c_c00183{bottom:1046.013333pt;}
.y6d_c00183{bottom:1047.546667pt;}
.y6e_c00183{bottom:1048.320000pt;}
.y70_c00183{bottom:1049.853333pt;}
.y71_c00183{bottom:1050.626667pt;}
.y72_c00183{bottom:1051.386667pt;}
.y5e_c00183{bottom:1057.533333pt;}
.y206_c00183{bottom:1059.840000pt;}
.y61_c00183{bottom:1060.613333pt;}
.ya_c00183{bottom:1062.146667pt;}
.y5f_c00183{bottom:1062.906667pt;}
.y60_c00183{bottom:1063.680000pt;}
.y62_c00183{bottom:1064.453333pt;}
.y65_c00183{bottom:1065.213333pt;}
.y64_c00183{bottom:1071.360000pt;}
.y67_c00183{bottom:1072.133333pt;}
.y66_c00183{bottom:1073.666667pt;}
.y57_c00183{bottom:1077.506667pt;}
.y63_c00183{bottom:1079.813333pt;}
.y58_c00183{bottom:1081.346667pt;}
.y59_c00183{bottom:1084.413333pt;}
.y9_c00183{bottom:1085.946667pt;}
.y8_c00183{bottom:1087.493333pt;}
.y5b_c00183{bottom:1088.253333pt;}
.y5a_c00183{bottom:1089.786667pt;}
.y5c_c00183{bottom:1092.093333pt;}
.y5d_c00183{bottom:1093.626667pt;}
.y56_c00183{bottom:1095.173333pt;}
.y4c_c00183{bottom:1099.013333pt;}
.y4b_c00183{bottom:1102.853333pt;}
.y4d_c00183{bottom:1105.146667pt;}
.y51_c00183{bottom:1108.986667pt;}
.y7_c00183{bottom:1110.533333pt;}
.y55_c00183{bottom:1111.293333pt;}
.y4e_c00183{bottom:1112.066667pt;}
.y6_c00183{bottom:1114.373333pt;}
.y4f_c00183{bottom:1115.133333pt;}
.y52_c00183{bottom:1117.440000pt;}
.y54_c00183{bottom:1118.973333pt;}
.y53_c00183{bottom:1122.053333pt;}
.y50_c00183{bottom:1124.346667pt;}
.y43_c00183{bottom:1126.653333pt;}
.y48_c00183{bottom:1127.426667pt;}
.y45_c00183{bottom:1128.186667pt;}
.y42_c00183{bottom:1130.493333pt;}
.y44_c00183{bottom:1132.800000pt;}
.y5_c00183{bottom:1133.573333pt;}
.y46_c00183{bottom:1135.106667pt;}
.y4a_c00183{bottom:1135.866667pt;}
.y49_c00183{bottom:1138.946667pt;}
.y39_c00183{bottom:1140.480000pt;}
.y3b_c00183{bottom:1143.546667pt;}
.y47_c00183{bottom:1144.320000pt;}
.y3d_c00183{bottom:1145.093333pt;}
.y3c_c00183{bottom:1147.386667pt;}
.y3e_c00183{bottom:1150.466667pt;}
.y3f_c00183{bottom:1151.226667pt;}
.y3a_c00183{bottom:1152.773333pt;}
.y40_c00183{bottom:1154.306667pt;}
.y41_c00183{bottom:1158.146667pt;}
.y30_c00183{bottom:1167.360000pt;}
.y33_c00183{bottom:1171.973333pt;}
.y2f_c00183{bottom:1174.266667pt;}
.y35_c00183{bottom:1175.040000pt;}
.y31_c00183{bottom:1176.573333pt;}
.y32_c00183{bottom:1177.346667pt;}
.y34_c00183{bottom:1178.106667pt;}
.y36_c00183{bottom:1179.653333pt;}
.y38_c00183{bottom:1180.413333pt;}
.y37_c00183{bottom:1182.720000pt;}
.y4_c00183{bottom:1185.026667pt;}
.y26_c00183{bottom:1195.013333pt;}
.y2a_c00183{bottom:1195.773333pt;}
.y25_c00183{bottom:1197.306667pt;}
.y2b_c00183{bottom:1198.080000pt;}
.y27_c00183{bottom:1198.853333pt;}
.y28_c00183{bottom:1200.386667pt;}
.y2e_c00183{bottom:1201.146667pt;}
.y29_c00183{bottom:1201.920000pt;}
.y2c_c00183{bottom:1202.693333pt;}
.y2d_c00183{bottom:1203.453333pt;}
.y24_c00183{bottom:1208.826667pt;}
.y3_c00183{bottom:1210.373333pt;}
.y2_c00183{bottom:1213.440000pt;}
.y1_c00183{bottom:1214.213333pt;}
.y1b_c00183{bottom:1215.746667pt;}
.y1c_c00183{bottom:1218.813333pt;}
.y1d_c00183{bottom:1219.586667pt;}
.y1f_c00183{bottom:1221.893333pt;}
.y23_c00183{bottom:1224.186667pt;}
.y1e_c00183{bottom:1225.733333pt;}
.y22_c00183{bottom:1226.493333pt;}
.y21_c00183{bottom:1227.266667pt;}
.y20_c00183{bottom:1228.026667pt;}
.y11_c00183{bottom:1241.093333pt;}
.y13_c00183{bottom:1243.386667pt;}
.y17_c00183{bottom:1247.226667pt;}
.y19_c00183{bottom:1249.533333pt;}
.y12_c00183{bottom:1250.306667pt;}
.y1a_c00183{bottom:1251.066667pt;}
.y15_c00183{bottom:1251.840000pt;}
.y14_c00183{bottom:1252.613333pt;}
.y16_c00183{bottom:1253.373333pt;}
.y18_c00183{bottom:1254.146667pt;}
.ha_c00183{height:2.764500pt;}
.h22_c00183{height:4.799479pt;}
.h4_c00183{height:5.519401pt;}
.h2_c00183{height:8.303099pt;}
.h3_c00183{height:11.038802pt;}
.h7_c00183{height:13.822500pt;}
.h8_c00183{height:16.606198pt;}
.h6_c00183{height:19.341901pt;}
.h25_c00183{height:22.125599pt;}
.h9_c00183{height:24.861302pt;}
.h24_c00183{height:27.645000pt;}
.h5_c00183{height:30.428698pt;}
.h21_c00183{height:33.164401pt;}
.h1b_c00183{height:35.948099pt;}
.h28_c00183{height:38.683802pt;}
.h26_c00183{height:41.467500pt;}
.h15_c00183{height:44.251198pt;}
.h23_c00183{height:46.986901pt;}
.h14_c00183{height:49.770599pt;}
.h11_c00183{height:52.506302pt;}
.h17_c00183{height:55.290000pt;}
.hb_c00183{height:58.073698pt;}
.he_c00183{height:60.809401pt;}
.hd_c00183{height:63.593099pt;}
.h19_c00183{height:66.328802pt;}
.h18_c00183{height:69.112500pt;}
.h12_c00183{height:71.896198pt;}
.h13_c00183{height:74.631901pt;}
.h10_c00183{height:77.415599pt;}
.h27_c00183{height:80.151302pt;}
.h16_c00183{height:82.935000pt;}
.h20_c00183{height:85.718698pt;}
.hc_c00183{height:88.454401pt;}
.h1a_c00183{height:91.238099pt;}
.h1d_c00183{height:93.973802pt;}
.h1c_c00183{height:96.757500pt;}
.h1e_c00183{height:99.541198pt;}
.hf_c00183{height:102.276901pt;}
.h1f_c00183{height:105.060599pt;}
.h2a_c00183{height:110.580000pt;}
.h29_c00183{height:127.186198pt;}
.h1_c00183{height:1336.000000pt;}
.h0_c00183{height:1336.320000pt;}
.w0_c00183{width:969.213333pt;}
.w1_c00183{width:969.333333pt;}
.x0_c00183{left:0.000000pt;}
.x7_c00183{left:6.146667pt;}
.x4_c00183{left:19.200043pt;}
.x8_c00183{left:25.346667pt;}
.x9_c00183{left:40.706667pt;}
.xc_c00183{left:97.533333pt;}
.xd_c00183{left:112.893333pt;}
.xa_c00183{left:119.813333pt;}
.x5_c00183{left:131.333333pt;}
.xb_c00183{left:135.933333pt;}
.x6_c00183{left:137.466667pt;}
.xe_c00183{left:156.666667pt;}
.x1_c00183{left:161.280000pt;}
.x2_c00183{left:168.960000pt;}
.x3_c00183{left:175.866667pt;}
.x56_c00183{left:178.946667pt;}
.x61_c00183{left:188.933333pt;}
.xd6_c00183{left:192.000000pt;}
.x7a_c00183{left:196.613333pt;}
.x62_c00183{left:198.146667pt;}
.x68_c00183{left:199.680000pt;}
.x63_c00183{left:204.293333pt;}
.x20_c00183{left:207.360000pt;}
.xb5_c00183{left:208.893333pt;}
.x2a_c00183{left:210.426667pt;}
.x9d_c00183{left:212.733333pt;}
.xef_c00183{left:214.266667pt;}
.xfd_c00183{left:217.346667pt;}
.x69_c00183{left:219.653333pt;}
.xbf_c00183{left:221.186667pt;}
.x36_c00183{left:223.493333pt;}
.x93_c00183{left:225.786667pt;}
.x8c_c00183{left:228.093333pt;}
.x2b_c00183{left:230.400000pt;}
.x108_c00183{left:231.933333pt;}
.xda_c00183{left:233.466667pt;}
.xa2_c00183{left:237.306667pt;}
.x105_c00183{left:240.386667pt;}
.x10d_c00183{left:241.920000pt;}
.x71_c00183{left:244.226667pt;}
.x7b_c00183{left:246.533333pt;}
.xe2_c00183{left:248.826667pt;}
.x50_c00183{left:250.373333pt;}
.x64_c00183{left:251.906667pt;}
.x85_c00183{left:254.213333pt;}
.xa3_c00183{left:258.813333pt;}
.x2c_c00183{left:263.426667pt;}
.xb6_c00183{left:265.733333pt;}
.xf_c00183{left:268.026667pt;}
.xb1_c00183{left:269.573333pt;}
.xa7_c00183{left:272.640000pt;}
.xad_c00183{left:277.253333pt;}
.x7c_c00183{left:278.786667pt;}
.x72_c00183{left:283.386667pt;}
.x48_c00183{left:288.000000pt;}
.x37_c00183{left:289.533333pt;}
.x21_c00183{left:293.373333pt;}
.xb7_c00183{left:294.906667pt;}
.x94_c00183{left:297.986667pt;}
.x38_c00183{left:301.053333pt;}
.x6a_c00183{left:303.360000pt;}
.x51_c00183{left:304.893333pt;}
.x102_c00183{left:306.426667pt;}
.xcb_c00183{left:311.040000pt;}
.xf8_c00183{left:312.573333pt;}
.xd7_c00183{left:314.880000pt;}
.x39_c00183{left:317.186667pt;}
.x10_c00183{left:318.720000pt;}
.xa8_c00183{left:320.253333pt;}
.xc0_c00183{left:323.333333pt;}
.x110_c00183{left:324.866667pt;}
.x6b_c00183{left:327.173333pt;}
.xdb_c00183{left:329.466667pt;}
.x7d_c00183{left:331.013333pt;}
.xdc_c00183{left:332.546667pt;}
.x11_c00183{left:334.853333pt;}
.xb2_c00183{left:338.693333pt;}
.x49_c00183{left:341.760000pt;}
.xf0_c00183{left:343.293333pt;}
.x3a_c00183{left:346.373333pt;}
.xa9_c00183{left:347.906667pt;}
.xe3_c00183{left:349.440000pt;}
.xf9_c00183{left:352.506667pt;}
.xe9_c00183{left:354.813333pt;}
.xdf_c00183{left:359.426667pt;}
.x2d_c00183{left:360.960000pt;}
.xc8_c00183{left:365.573333pt;}
.x4a_c00183{left:367.106667pt;}
.x86_c00183{left:369.413333pt;}
.xb8_c00183{left:371.706667pt;}
.xae_c00183{left:373.253333pt;}
.x95_c00183{left:374.786667pt;}
.x3b_c00183{left:377.093333pt;}
.x12_c00183{left:382.466667pt;}
.xdd_c00183{left:384.773333pt;}
.xe4_c00183{left:386.306667pt;}
.xe7_c00183{left:390.906667pt;}
.xce_c00183{left:393.213333pt;}
.x57_c00183{left:394.746667pt;}
.x10e_c00183{left:396.293333pt;}
.x22_c00183{left:399.360000pt;}
.x13_c00183{left:400.893333pt;}
.x73_c00183{left:403.973333pt;}
.x2e_c00183{left:405.506667pt;}
.x58_c00183{left:407.040000pt;}
.x3c_c00183{left:409.346667pt;}
.xfe_c00183{left:410.880000pt;}
.xaa_c00183{left:413.186667pt;}
.x2f_c00183{left:414.720000pt;}
.x6c_c00183{left:423.173333pt;}
.xb9_c00183{left:425.466667pt;}
.x65_c00183{left:427.773333pt;}
.x3d_c00183{left:429.306667pt;}
.xc1_c00183{left:430.853333pt;}
.xab_c00183{left:432.386667pt;}
.xea_c00183{left:435.453333pt;}
.x23_c00183{left:437.760000pt;}
.x59_c00183{left:439.293333pt;}
.x14_c00183{left:440.826667pt;}
.x7e_c00183{left:445.440000pt;}
.x10b_c00183{left:447.746667pt;}
.xc2_c00183{left:449.280000pt;}
.x66_c00183{left:451.586667pt;}
.xa4_c00183{left:453.120000pt;}
.x24_c00183{left:454.653333pt;}
.x9e_c00183{left:458.493333pt;}
.x4b_c00183{left:460.800000pt;}
.xcc_c00183{left:463.866667pt;}
.x3e_c00183{left:465.413333pt;}
.x15_c00183{left:467.706667pt;}
.xeb_c00183{left:469.253333pt;}
.xff_c00183{left:470.786667pt;}
.x30_c00183{left:472.320000pt;}
.x3f_c00183{left:473.853333pt;}
.x52_c00183{left:476.160000pt;}
.xba_c00183{left:477.693333pt;}
.x74_c00183{left:480.000000pt;}
.xec_c00183{left:481.533333pt;}
.x10f_c00183{left:483.066667pt;}
.xd8_c00183{left:484.613333pt;}
.x16_c00183{left:487.680000pt;}
.xf5_c00183{left:489.986667pt;}
.xf2_c00183{left:493.053333pt;}
.xe0_c00183{left:496.133333pt;}
.xfa_c00183{left:498.426667pt;}
.x25_c00183{left:502.266667pt;}
.x5a_c00183{left:503.813333pt;}
.x6d_c00183{left:506.106667pt;}
.xd2_c00183{left:508.413333pt;}
.x17_c00183{left:509.946667pt;}
.x40_c00183{left:512.253333pt;}
.xbb_c00183{left:516.093333pt;}
.x26_c00183{left:518.400000pt;}
.x87_c00183{left:519.933333pt;}
.xd3_c00183{left:521.466667pt;}
.x18_c00183{left:525.306667pt;}
.x82_c00183{left:528.386667pt;}
.xd9_c00183{left:529.920000pt;}
.x9f_c00183{left:532.226667pt;}
.x4c_c00183{left:533.760000pt;}
.x5b_c00183{left:536.066667pt;}
.x41_c00183{left:538.373333pt;}
.x31_c00183{left:540.666667pt;}
.x8d_c00183{left:542.213333pt;}
.xc9_c00183{left:543.746667pt;}
.xe1_c00183{left:545.280000pt;}
.xd4_c00183{left:547.586667pt;}
.xed_c00183{left:549.120000pt;}
.xf6_c00183{left:550.653333pt;}
.xf1_c00183{left:552.960000pt;}
.xe5_c00183{left:555.266667pt;}
.xe8_c00183{left:557.573333pt;}
.x19_c00183{left:559.106667pt;}
.x42_c00183{left:561.413333pt;}
.x7f_c00183{left:563.706667pt;}
.x75_c00183{left:568.320000pt;}
.x43_c00183{left:570.626667pt;}
.xee_c00183{left:574.466667pt;}
.x96_c00183{left:576.000000pt;}
.xcf_c00183{left:577.533333pt;}
.x53_c00183{left:579.840000pt;}
.x5c_c00183{left:582.146667pt;}
.xaf_c00183{left:583.680000pt;}
.x10a_c00183{left:587.520000pt;}
.x5d_c00183{left:589.826667pt;}
.x1a_c00183{left:591.360000pt;}
.x8e_c00183{left:592.893333pt;}
.x97_c00183{left:595.200000pt;}
.x88_c00183{left:599.040000pt;}
.x8f_c00183{left:600.573333pt;}
.xb3_c00183{left:602.106667pt;}
.x6e_c00183{left:605.186667pt;}
.x106_c00183{left:606.720000pt;}
.x4d_c00183{left:610.560000pt;}
.xb0_c00183{left:612.093333pt;}
.x1b_c00183{left:613.626667pt;}
.xcd_c00183{left:615.933333pt;}
.x54_c00183{left:620.546667pt;}
.x76_c00183{left:625.146667pt;}
.x32_c00183{left:626.693333pt;}
.x67_c00183{left:628.986667pt;}
.x101_c00183{left:630.533333pt;}
.x1c_c00183{left:632.066667pt;}
.x44_c00183{left:636.666667pt;}
.xc3_c00183{left:640.506667pt;}
.xc5_c00183{left:642.813333pt;}
.x10c_c00183{left:644.346667pt;}
.xf3_c00183{left:646.653333pt;}
.xd0_c00183{left:649.733333pt;}
.x89_c00183{left:651.266667pt;}
.x98_c00183{left:655.866667pt;}
.xac_c00183{left:659.706667pt;}
.xa0_c00183{left:662.013333pt;}
.x77_c00183{left:663.546667pt;}
.xb4_c00183{left:665.093333pt;}
.x5e_c00183{left:667.386667pt;}
.x1d_c00183{left:670.466667pt;}
.x45_c00183{left:672.000000pt;}
.x83_c00183{left:673.533333pt;}
.x27_c00183{left:675.840000pt;}
.x33_c00183{left:678.146667pt;}
.x6f_c00183{left:679.680000pt;}
.x1e_c00183{left:685.053333pt;}
.xbc_c00183{left:686.586667pt;}
.x34_c00183{left:688.893333pt;}
.x55_c00183{left:691.200000pt;}
.x90_c00183{left:694.266667pt;}
.xde_c00183{left:695.813333pt;}
.x107_c00183{left:697.346667pt;}
.x99_c00183{left:700.413333pt;}
.x8a_c00183{left:702.720000pt;}
.xd1_c00183{left:706.560000pt;}
.x28_c00183{left:708.093333pt;}
.x78_c00183{left:709.626667pt;}
.x5f_c00183{left:711.933333pt;}
.xfb_c00183{left:713.466667pt;}
.xc6_c00183{left:715.013333pt;}
.xf7_c00183{left:718.080000pt;}
.xc4_c00183{left:722.693333pt;}
.x29_c00183{left:725.760000pt;}
.x46_c00183{left:727.293333pt;}
.x109_c00183{left:730.373333pt;}
.xbd_c00183{left:731.906667pt;}
.xca_c00183{left:734.213333pt;}
.x4e_c00183{left:736.506667pt;}
.x35_c00183{left:738.053333pt;}
.x60_c00183{left:741.120000pt;}
.xc7_c00183{left:743.426667pt;}
.x84_c00183{left:745.733333pt;}
.xd5_c00183{left:747.266667pt;}
.x100_c00183{left:748.800000pt;}
.x79_c00183{left:750.333333pt;}
.x1f_c00183{left:751.866667pt;}
.x8b_c00183{left:754.173333pt;}
.xbe_c00183{left:755.706667pt;}
.x9a_c00183{left:759.546667pt;}
.x80_c00183{left:764.933333pt;}
.x9b_c00183{left:769.533333pt;}
.xfc_c00183{left:771.066667pt;}
.x4f_c00183{left:777.213333pt;}
.x70_c00183{left:779.520000pt;}
.xf4_c00183{left:783.360000pt;}
.x47_c00183{left:784.893333pt;}
.x91_c00183{left:786.426667pt;}
.xa1_c00183{left:788.733333pt;}
.xa5_c00183{left:790.266667pt;}
.xe6_c00183{left:792.573333pt;}
.x81_c00183{left:797.186667pt;}
.x103_c00183{left:801.026667pt;}
.x111_c00183{left:804.093333pt;}
.xa6_c00183{left:807.173333pt;}
.x92_c00183{left:809.466667pt;}
.x104_c00183{left:814.080000pt;}
.x9c_c00183{left:817.146667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7dc481ecc1b5187f6ce59082.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.109863;font-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_c00184{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m50_c00184{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);}
.m37_c00184{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m5a_c00184{transform:matrix(0.104850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104850,0.000000,0.000000,0.250000,0,0);}
.m38_c00184{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m24_c00184{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);}
.m46_c00184{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m75_c00184{transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);}
.m59_c00184{transform:matrix(0.130100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130100,0.000000,0.000000,0.250000,0,0);}
.m5f_c00184{transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);}
.m6f_c00184{transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);}
.m5b_c00184{transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);}
.m41_c00184{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m88_c00184{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.m0_c00184{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m64_c00184{transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);}
.m6b_c00184{transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);}
.m8c_c00184{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.m1c_c00184{transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);}
.m45_c00184{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.m93_c00184{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.m5d_c00184{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00184{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.m8a_c00184{transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);}
.m77_c00184{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m21_c00184{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);}
.m47_c00184{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.m28_c00184{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);}
.m61_c00184{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m92_c00184{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);}
.m30_c00184{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.m44_c00184{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m79_c00184{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m1d_c00184{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m31_c00184{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.m11_c00184{transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);}
.m86_c00184{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m54_c00184{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);}
.m4f_c00184{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m57_c00184{transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);}
.m74_c00184{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);}
.m4e_c00184{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m23_c00184{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m19_c00184{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m1f_c00184{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.m16_c00184{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m13_c00184{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.m52_c00184{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.m89_c00184{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.m70_c00184{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00184{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);}
.m90_c00184{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.m55_c00184{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);}
.m76_c00184{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);}
.m8d_c00184{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m7f_c00184{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.m53_c00184{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m7b_c00184{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.m43_c00184{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m3d_c00184{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);}
.m4b_c00184{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m17_c00184{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.m6d_c00184{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m85_c00184{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);}
.m40_c00184{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m2d_c00184{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.m82_c00184{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);}
.m7c_c00184{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);}
.m3f_c00184{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m60_c00184{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);}
.m51_c00184{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.m20_c00184{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);}
.m73_c00184{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m5_c00184{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);}
.m32_c00184{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.m56_c00184{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);}
.m6c_c00184{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);}
.m8e_c00184{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);}
.m83_c00184{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m8f_c00184{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);}
.m7e_c00184{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m2f_c00184{transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);}
.m5c_c00184{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);}
.m67_c00184{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m58_c00184{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m3a_c00184{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.m36_c00184{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.m8b_c00184{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m62_c00184{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);}
.m81_c00184{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);}
.m33_c00184{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.m35_c00184{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.m39_c00184{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m66_c00184{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);}
.m3c_c00184{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);}
.m78_c00184{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);}
.m87_c00184{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);}
.m84_c00184{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);}
.m2b_c00184{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m69_c00184{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m2_c00184{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);}
.m15_c00184{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18_c00184{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);}
.m80_c00184{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);}
.m26_c00184{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);}
.mf_c00184{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m71_c00184{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00184{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m94_c00184{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);}
.m48_c00184{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);}
.m25_c00184{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00184{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m34_c00184{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);}
.m3b_c00184{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m65_c00184{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);}
.m29_c00184{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m63_c00184{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);}
.m27_c00184{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00184{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00184{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00184{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c00184{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c00184{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12_c00184{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00184{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7_c00184{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);}
.m4a_c00184{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00184{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c00184{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00184{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00184{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);}
.m8_c00184{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m22_c00184{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m6_c00184{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00184{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m9_c00184{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00184{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m68_c00184{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);}
.m42_c00184{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1_c00184{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00184{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00184{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m49_c00184{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4_c00184{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00184{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mc_c00184{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m72_c00184{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);}
.m91_c00184{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);}
.m6a_c00184{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,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;}
.fs0_c00184{font-size:3.456000px;}
.fse_c00184{font-size:6.000000px;}
.fsa_c00184{font-size:6.900000px;}
.fs2_c00184{font-size:10.380000px;}
.fsf_c00184{font-size:13.800000px;}
.fs1_c00184{font-size:17.280000px;}
.fs18_c00184{font-size:20.760000px;}
.fs4_c00184{font-size:24.180000px;}
.fs3_c00184{font-size:27.660000px;}
.fs1b_c00184{font-size:31.080000px;}
.fs1f_c00184{font-size:34.560000px;}
.fs17_c00184{font-size:38.040000px;}
.fs13_c00184{font-size:41.460000px;}
.fs10_c00184{font-size:44.940000px;}
.fs1a_c00184{font-size:48.360000px;}
.fs15_c00184{font-size:51.840000px;}
.fs19_c00184{font-size:55.320000px;}
.fs16_c00184{font-size:58.740000px;}
.fs7_c00184{font-size:62.220000px;}
.fs5_c00184{font-size:65.640000px;}
.fs6_c00184{font-size:69.120000px;}
.fs8_c00184{font-size:72.600000px;}
.fs9_c00184{font-size:76.020000px;}
.fsb_c00184{font-size:79.500000px;}
.fs20_c00184{font-size:82.920000px;}
.fs1d_c00184{font-size:86.400000px;}
.fsd_c00184{font-size:89.880000px;}
.fs12_c00184{font-size:93.300000px;}
.fs11_c00184{font-size:96.780000px;}
.fsc_c00184{font-size:100.200000px;}
.fs1c_c00184{font-size:103.680000px;}
.fs14_c00184{font-size:107.160000px;}
.fs21_c00184{font-size:114.060000px;}
.fs1e_c00184{font-size:120.960000px;}
.y0_c00184{bottom:0.000000px;}
.ya3_c00184{bottom:679.110000px;}
.ya4_c00184{bottom:679.965000px;}
.ya2_c00184{bottom:683.430000px;}
.ya1_c00184{bottom:700.710000px;}
.ya0_c00184{bottom:703.290000px;}
.y9f_c00184{bottom:704.160000px;}
.y9e_c00184{bottom:706.755000px;}
.y9d_c00184{bottom:712.800000px;}
.y9b_c00184{bottom:727.485000px;}
.y9c_c00184{bottom:728.355000px;}
.y99_c00184{bottom:752.550000px;}
.y97_c00184{bottom:753.405000px;}
.y95_c00184{bottom:754.275000px;}
.y96_c00184{bottom:755.130000px;}
.y9a_c00184{bottom:759.450000px;}
.y98_c00184{bottom:760.320000px;}
.y93_c00184{bottom:778.470000px;}
.y91_c00184{bottom:780.195000px;}
.y90_c00184{bottom:781.050000px;}
.y8f_c00184{bottom:781.920000px;}
.y94_c00184{bottom:784.515000px;}
.y92_c00184{bottom:785.370000px;}
.y8a_c00184{bottom:803.520000px;}
.y8b_c00184{bottom:804.390000px;}
.y8d_c00184{bottom:805.245000px;}
.y89_c00184{bottom:808.710000px;}
.y8c_c00184{bottom:809.565000px;}
.y8e_c00184{bottom:810.435000px;}
.y88_c00184{bottom:825.120000px;}
.y87_c00184{bottom:826.845000px;}
.y84_c00184{bottom:827.715000px;}
.y85_c00184{bottom:828.570000px;}
.y83_c00184{bottom:844.995000px;}
.y86_c00184{bottom:848.445000px;}
.y81_c00184{bottom:850.170000px;}
.y82_c00184{bottom:851.040000px;}
.y80_c00184{bottom:853.635000px;}
.y7e_c00184{bottom:878.685000px;}
.y7d_c00184{bottom:879.555000px;}
.y7f_c00184{bottom:882.150000px;}
.y7c_c00184{bottom:883.875000px;}
.y7a_c00184{bottom:902.880000px;}
.y78_c00184{bottom:905.475000px;}
.y77_c00184{bottom:906.330000px;}
.y79_c00184{bottom:907.200000px;}
.y7b_c00184{bottom:908.070000px;}
.y76_c00184{bottom:908.925000px;}
.y74_c00184{bottom:926.205000px;}
.y75_c00184{bottom:927.075000px;}
.y73_c00184{bottom:930.525000px;}
.y72_c00184{bottom:932.250000px;}
.y71_c00184{bottom:933.990000px;}
.y70_c00184{bottom:934.845000px;}
.y6c_c00184{bottom:951.270000px;}
.y6f_c00184{bottom:954.720000px;}
.y6d_c00184{bottom:957.315000px;}
.y6e_c00184{bottom:958.170000px;}
.y6b_c00184{bottom:959.040000px;}
.y64_c00184{bottom:974.595000px;}
.y62_c00184{bottom:975.450000px;}
.y65_c00184{bottom:977.190000px;}
.y69_c00184{bottom:978.045000px;}
.y67_c00184{bottom:978.915000px;}
.y6a_c00184{bottom:980.640000px;}
.y68_c00184{bottom:981.510000px;}
.y63_c00184{bottom:984.090000px;}
.y61_c00184{bottom:990.150000px;}
.y66_c00184{bottom:998.790000px;}
.y5d_c00184{bottom:1001.370000px;}
.ya5_c00184{bottom:1002.240000px;}
.y5e_c00184{bottom:1006.560000px;}
.y5f_c00184{bottom:1007.430000px;}
.y5c_c00184{bottom:1008.285000px;}
.y60_c00184{bottom:1010.880000px;}
.y5b_c00184{bottom:1013.475000px;}
.y58_c00184{bottom:1025.565000px;}
.y59_c00184{bottom:1030.755000px;}
.y5a_c00184{bottom:1032.480000px;}
.y57_c00184{bottom:1033.350000px;}
.y56_c00184{bottom:1050.630000px;}
.y54_c00184{bottom:1051.485000px;}
.y55_c00184{bottom:1052.355000px;}
.y52_c00184{bottom:1080.000000px;}
.y51_c00184{bottom:1080.870000px;}
.y4f_c00184{bottom:1082.595000px;}
.y50_c00184{bottom:1083.450000px;}
.y4d_c00184{bottom:1084.320000px;}
.y53_c00184{bottom:1087.770000px;}
.y4e_c00184{bottom:1098.150000px;}
.y49_c00184{bottom:1100.730000px;}
.y4a_c00184{bottom:1102.470000px;}
.y4c_c00184{bottom:1103.325000px;}
.y48_c00184{bottom:1104.195000px;}
.y4b_c00184{bottom:1108.515000px;}
.y47_c00184{bottom:1112.835000px;}
.y46_c00184{bottom:1124.070000px;}
.y44_c00184{bottom:1124.925000px;}
.y42_c00184{bottom:1126.650000px;}
.y43_c00184{bottom:1127.520000px;}
.y45_c00184{bottom:1132.710000px;}
.y1_c00184{bottom:1137.885000px;}
.y2_c00184{bottom:1139.610000px;}
.y41_c00184{bottom:1150.845000px;}
.y3f_c00184{bottom:1155.165000px;}
.y40_c00184{bottom:1156.035000px;}
.y3e_c00184{bottom:1158.630000px;}
.y39_c00184{bottom:1174.170000px;}
.y3b_c00184{bottom:1177.635000px;}
.y3a_c00184{bottom:1182.810000px;}
.y3c_c00184{bottom:1183.680000px;}
.y3d_c00184{bottom:1192.320000px;}
.y37_c00184{bottom:1214.790000px;}
.y36_c00184{bottom:1216.515000px;}
.y34_c00184{bottom:1222.560000px;}
.y35_c00184{bottom:1223.430000px;}
.y33_c00184{bottom:1225.155000px;}
.y31_c00184{bottom:1228.605000px;}
.y30_c00184{bottom:1232.925000px;}
.y32_c00184{bottom:1246.755000px;}
.y38_c00184{bottom:1247.610000px;}
.y2e_c00184{bottom:1251.075000px;}
.y2f_c00184{bottom:1251.930000px;}
.y2c_c00184{bottom:1257.120000px;}
.y2d_c00184{bottom:1257.990000px;}
.y2b_c00184{bottom:1258.845000px;}
.y28_c00184{bottom:1275.270000px;}
.y29_c00184{bottom:1276.125000px;}
.y27_c00184{bottom:1283.040000px;}
.y2a_c00184{bottom:1283.910000px;}
.y25_c00184{bottom:1289.085000px;}
.y26_c00184{bottom:1301.190000px;}
.y22_c00184{bottom:1303.770000px;}
.y24_c00184{bottom:1305.510000px;}
.y23_c00184{bottom:1307.235000px;}
.y21_c00184{bottom:1317.600000px;}
.y20_c00184{bottom:1322.790000px;}
.y1c_c00184{bottom:1323.645000px;}
.y1f_c00184{bottom:1326.240000px;}
.y1d_c00184{bottom:1329.690000px;}
.y1b_c00184{bottom:1333.155000px;}
.y1e_c00184{bottom:1334.010000px;}
.y18_c00184{bottom:1352.160000px;}
.y19_c00184{bottom:1353.030000px;}
.y1a_c00184{bottom:1353.885000px;}
.y17_c00184{bottom:1357.350000px;}
.y14_c00184{bottom:1362.525000px;}
.y16_c00184{bottom:1372.035000px;}
.y15_c00184{bottom:1374.630000px;}
.y12_c00184{bottom:1376.355000px;}
.y11_c00184{bottom:1377.210000px;}
.y13_c00184{bottom:1378.950000px;}
.y10_c00184{bottom:1382.400000px;}
.yf_c00184{bottom:1383.270000px;}
.ye_c00184{bottom:1386.720000px;}
.yc_c00184{bottom:1412.640000px;}
.yb_c00184{bottom:1414.365000px;}
.yd_c00184{bottom:1415.235000px;}
.ya_c00184{bottom:1416.090000px;}
.y9_c00184{bottom:1416.960000px;}
.y8_c00184{bottom:1417.830000px;}
.y4_c00184{bottom:1418.685000px;}
.y3_c00184{bottom:1421.280000px;}
.y7_c00184{bottom:1428.195000px;}
.y5_c00184{bottom:1437.690000px;}
.y6_c00184{bottom:1438.560000px;}
.h2_c00184{height:3.110063px;}
.h10_c00184{height:5.399414px;}
.hc_c00184{height:6.209326px;}
.h4_c00184{height:9.340986px;}
.h11_c00184{height:12.418652px;}
.h3_c00184{height:15.550313px;}
.h1a_c00184{height:18.681973px;}
.h6_c00184{height:21.759639px;}
.h5_c00184{height:24.891299px;}
.h1d_c00184{height:27.968965px;}
.h21_c00184{height:31.100625px;}
.h19_c00184{height:34.232285px;}
.h15_c00184{height:37.309951px;}
.h12_c00184{height:40.441611px;}
.h1c_c00184{height:43.519277px;}
.h17_c00184{height:46.650937px;}
.h1b_c00184{height:49.782598px;}
.h18_c00184{height:52.860264px;}
.h9_c00184{height:55.991924px;}
.h7_c00184{height:59.069590px;}
.h8_c00184{height:62.201250px;}
.ha_c00184{height:65.332910px;}
.hb_c00184{height:68.410576px;}
.hd_c00184{height:71.542236px;}
.h22_c00184{height:74.619902px;}
.h1f_c00184{height:77.751563px;}
.hf_c00184{height:80.883223px;}
.h14_c00184{height:83.960889px;}
.h13_c00184{height:87.092549px;}
.he_c00184{height:90.170215px;}
.h1e_c00184{height:93.301875px;}
.h16_c00184{height:96.433535px;}
.h23_c00184{height:102.642861px;}
.h20_c00184{height:108.852188px;}
.h0_c00184{height:1523.235000px;}
.h1_c00184{height:1523.250000px;}
.w0_c00184{width:1107.645000px;}
.w1_c00184{width:1107.750000px;}
.x0_c00184{left:0.000000px;}
.x17_c00184{left:169.350000px;}
.x18_c00184{left:175.395000px;}
.x3f_c00184{left:201.315000px;}
.x2f_c00184{left:246.240000px;}
.x3_c00184{left:247.965000px;}
.x30_c00184{left:253.154592px;}
.x68_c00184{left:254.880000px;}
.x31_c00184{left:258.330000px;}
.x64_c00184{left:261.795000px;}
.x1f_c00184{left:263.520000px;}
.x19_c00184{left:266.115000px;}
.x20_c00184{left:267.840000px;}
.x59_c00184{left:270.435000px;}
.x4_c00184{left:272.160000px;}
.x70_c00184{left:273.885000px;}
.x21_c00184{left:276.480000px;}
.x47_c00184{left:279.075000px;}
.x2a_c00184{left:283.395000px;}
.x65_c00184{left:285.120000px;}
.x56_c00184{left:286.845000px;}
.x48_c00184{left:289.440000px;}
.x22_c00184{left:291.165000px;}
.x2b_c00184{left:292.890000px;}
.x32_c00184{left:297.210000px;}
.x6e_c00184{left:305.850000px;}
.x50_c00184{left:311.040000px;}
.x1a_c00184{left:313.635000px;}
.x4c_c00184{left:315.360000px;}
.x27_c00184{left:318.810000px;}
.x4d_c00184{left:320.550000px;}
.x23_c00184{left:322.275000px;}
.x36_c00184{left:325.725000px;}
.x71_c00184{left:328.320000px;}
.x6f_c00184{left:334.365000px;}
.x3b_c00184{left:336.960000px;}
.x6b_c00184{left:338.685000px;}
.x63_c00184{left:344.730000px;}
.x7_c00184{left:347.325000px;}
.x4e_c00184{left:349.920000px;}
.x51_c00184{left:353.370000px;}
.x37_c00184{left:355.965000px;}
.x53_c00184{left:358.560000px;}
.x42_c00184{left:364.605000px;}
.x40_c00184{left:368.070000px;}
.x5d_c00184{left:369.795000px;}
.x1b_c00184{left:372.390000px;}
.x33_c00184{left:374.115000px;}
.x24_c00184{left:376.710000px;}
.x28_c00184{left:379.290000px;}
.x38_c00184{left:381.030000px;}
.x8_c00184{left:382.755000px;}
.x5a_c00184{left:385.350000px;}
.x44_c00184{left:391.395000px;}
.x43_c00184{left:393.990000px;}
.x69_c00184{left:400.890000px;}
.x29_c00184{left:404.355000px;}
.x1c_c00184{left:406.950000px;}
.x9_c00184{left:410.400000px;}
.x34_c00184{left:413.850000px;}
.x54_c00184{left:417.315000px;}
.x52_c00184{left:421.635000px;}
.x39_c00184{left:425.085000px;}
.x41_c00184{left:428.550000px;}
.x4f_c00184{left:437.190000px;}
.xa_c00184{left:442.365000px;}
.x45_c00184{left:444.960000px;}
.x25_c00184{left:449.280000px;}
.x49_c00184{left:454.470000px;}
.x60_c00184{left:457.050000px;}
.x26_c00184{left:461.370000px;}
.x55_c00184{left:464.835000px;}
.x1d_c00184{left:469.155000px;}
.xb_c00184{left:474.330000px;}
.x66_c00184{left:477.795000px;}
.x5e_c00184{left:479.520000px;}
.x4a_c00184{left:484.710000px;}
.x61_c00184{left:486.435000px;}
.x57_c00184{left:488.160000px;}
.x2c_c00184{left:493.350000px;}
.xc_c00184{left:500.250000px;}
.x2d_c00184{left:501.990000px;}
.x3a_c00184{left:505.440000px;}
.x6c_c00184{left:507.165000px;}
.x67_c00184{left:508.890000px;}
.x35_c00184{left:511.485000px;}
.x6d_c00184{left:513.210000px;}
.x6a_c00184{left:514.950000px;}
.x5b_c00184{left:516.675000px;}
.x2e_c00184{left:519.270000px;}
.x4b_c00184{left:520.995000px;}
.x5f_c00184{left:522.720000px;}
.x62_c00184{left:525.315000px;}
.x46_c00184{left:527.910000px;}
.x5c_c00184{left:533.085000px;}
.x3d_c00184{left:535.680000px;}
.x3e_c00184{left:537.404475px;}
.xd_c00184{left:545.190000px;}
.x58_c00184{left:550.365000px;}
.x3c_c00184{left:554.685000px;}
.x1e_c00184{left:557.280000px;}
.xe_c00184{left:573.690000px;}
.x5_c00184{left:583.200000px;}
.xf_c00184{left:594.435000px;}
.x10_c00184{left:641.085000px;}
.x11_c00184{left:672.195000px;}
.x12_c00184{left:703.290000px;}
.x13_c00184{left:725.760000px;}
.x14_c00184{left:749.085000px;}
.x15_c00184{left:773.280000px;}
.x16_c00184{left:794.880000px;}
.x6_c00184{left:808.710000px;}
.x1_c00184{left:1063.590000px;}
.x2_c00184{left:1069.635000px;}
.x72_c00184{left:1101.600000px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls0_c00184{letter-spacing:0.000000pt;}
.ws0_c00184{word-spacing:0.000000pt;}
.fs0_c00184{font-size:3.072000pt;}
.fse_c00184{font-size:5.333333pt;}
.fsa_c00184{font-size:6.133333pt;}
.fs2_c00184{font-size:9.226667pt;}
.fsf_c00184{font-size:12.266667pt;}
.fs1_c00184{font-size:15.360000pt;}
.fs18_c00184{font-size:18.453333pt;}
.fs4_c00184{font-size:21.493333pt;}
.fs3_c00184{font-size:24.586667pt;}
.fs1b_c00184{font-size:27.626667pt;}
.fs1f_c00184{font-size:30.720000pt;}
.fs17_c00184{font-size:33.813333pt;}
.fs13_c00184{font-size:36.853333pt;}
.fs10_c00184{font-size:39.946667pt;}
.fs1a_c00184{font-size:42.986667pt;}
.fs15_c00184{font-size:46.080000pt;}
.fs19_c00184{font-size:49.173333pt;}
.fs16_c00184{font-size:52.213333pt;}
.fs7_c00184{font-size:55.306667pt;}
.fs5_c00184{font-size:58.346667pt;}
.fs6_c00184{font-size:61.440000pt;}
.fs8_c00184{font-size:64.533333pt;}
.fs9_c00184{font-size:67.573333pt;}
.fsb_c00184{font-size:70.666667pt;}
.fs20_c00184{font-size:73.706667pt;}
.fs1d_c00184{font-size:76.800000pt;}
.fsd_c00184{font-size:79.893333pt;}
.fs12_c00184{font-size:82.933333pt;}
.fs11_c00184{font-size:86.026667pt;}
.fsc_c00184{font-size:89.066667pt;}
.fs1c_c00184{font-size:92.160000pt;}
.fs14_c00184{font-size:95.253333pt;}
.fs21_c00184{font-size:101.386667pt;}
.fs1e_c00184{font-size:107.520000pt;}
.y0_c00184{bottom:0.000000pt;}
.ya3_c00184{bottom:603.653333pt;}
.ya4_c00184{bottom:604.413333pt;}
.ya2_c00184{bottom:607.493333pt;}
.ya1_c00184{bottom:622.853333pt;}
.ya0_c00184{bottom:625.146667pt;}
.y9f_c00184{bottom:625.920000pt;}
.y9e_c00184{bottom:628.226667pt;}
.y9d_c00184{bottom:633.600000pt;}
.y9b_c00184{bottom:646.653333pt;}
.y9c_c00184{bottom:647.426667pt;}
.y99_c00184{bottom:668.933333pt;}
.y97_c00184{bottom:669.693333pt;}
.y95_c00184{bottom:670.466667pt;}
.y96_c00184{bottom:671.226667pt;}
.y9a_c00184{bottom:675.066667pt;}
.y98_c00184{bottom:675.840000pt;}
.y93_c00184{bottom:691.973333pt;}
.y91_c00184{bottom:693.506667pt;}
.y90_c00184{bottom:694.266667pt;}
.y8f_c00184{bottom:695.040000pt;}
.y94_c00184{bottom:697.346667pt;}
.y92_c00184{bottom:698.106667pt;}
.y8a_c00184{bottom:714.240000pt;}
.y8b_c00184{bottom:715.013333pt;}
.y8d_c00184{bottom:715.773333pt;}
.y89_c00184{bottom:718.853333pt;}
.y8c_c00184{bottom:719.613333pt;}
.y8e_c00184{bottom:720.386667pt;}
.y88_c00184{bottom:733.440000pt;}
.y87_c00184{bottom:734.973333pt;}
.y84_c00184{bottom:735.746667pt;}
.y85_c00184{bottom:736.506667pt;}
.y83_c00184{bottom:751.106667pt;}
.y86_c00184{bottom:754.173333pt;}
.y81_c00184{bottom:755.706667pt;}
.y82_c00184{bottom:756.480000pt;}
.y80_c00184{bottom:758.786667pt;}
.y7e_c00184{bottom:781.053333pt;}
.y7d_c00184{bottom:781.826667pt;}
.y7f_c00184{bottom:784.133333pt;}
.y7c_c00184{bottom:785.666667pt;}
.y7a_c00184{bottom:802.560000pt;}
.y78_c00184{bottom:804.866667pt;}
.y77_c00184{bottom:805.626667pt;}
.y79_c00184{bottom:806.400000pt;}
.y7b_c00184{bottom:807.173333pt;}
.y76_c00184{bottom:807.933333pt;}
.y74_c00184{bottom:823.293333pt;}
.y75_c00184{bottom:824.066667pt;}
.y73_c00184{bottom:827.133333pt;}
.y72_c00184{bottom:828.666667pt;}
.y71_c00184{bottom:830.213333pt;}
.y70_c00184{bottom:830.973333pt;}
.y6c_c00184{bottom:845.573333pt;}
.y6f_c00184{bottom:848.640000pt;}
.y6d_c00184{bottom:850.946667pt;}
.y6e_c00184{bottom:851.706667pt;}
.y6b_c00184{bottom:852.480000pt;}
.y64_c00184{bottom:866.306667pt;}
.y62_c00184{bottom:867.066667pt;}
.y65_c00184{bottom:868.613333pt;}
.y69_c00184{bottom:869.373333pt;}
.y67_c00184{bottom:870.146667pt;}
.y6a_c00184{bottom:871.680000pt;}
.y68_c00184{bottom:872.453333pt;}
.y63_c00184{bottom:874.746667pt;}
.y61_c00184{bottom:880.133333pt;}
.y66_c00184{bottom:887.813333pt;}
.y5d_c00184{bottom:890.106667pt;}
.ya5_c00184{bottom:890.880000pt;}
.y5e_c00184{bottom:894.720000pt;}
.y5f_c00184{bottom:895.493333pt;}
.y5c_c00184{bottom:896.253333pt;}
.y60_c00184{bottom:898.560000pt;}
.y5b_c00184{bottom:900.866667pt;}
.y58_c00184{bottom:911.613333pt;}
.y59_c00184{bottom:916.226667pt;}
.y5a_c00184{bottom:917.760000pt;}
.y57_c00184{bottom:918.533333pt;}
.y56_c00184{bottom:933.893333pt;}
.y54_c00184{bottom:934.653333pt;}
.y55_c00184{bottom:935.426667pt;}
.y52_c00184{bottom:960.000000pt;}
.y51_c00184{bottom:960.773333pt;}
.y4f_c00184{bottom:962.306667pt;}
.y50_c00184{bottom:963.066667pt;}
.y4d_c00184{bottom:963.840000pt;}
.y53_c00184{bottom:966.906667pt;}
.y4e_c00184{bottom:976.133333pt;}
.y49_c00184{bottom:978.426667pt;}
.y4a_c00184{bottom:979.973333pt;}
.y4c_c00184{bottom:980.733333pt;}
.y48_c00184{bottom:981.506667pt;}
.y4b_c00184{bottom:985.346667pt;}
.y47_c00184{bottom:989.186667pt;}
.y46_c00184{bottom:999.173333pt;}
.y44_c00184{bottom:999.933333pt;}
.y42_c00184{bottom:1001.466667pt;}
.y43_c00184{bottom:1002.240000pt;}
.y45_c00184{bottom:1006.853333pt;}
.y1_c00184{bottom:1011.453333pt;}
.y2_c00184{bottom:1012.986667pt;}
.y41_c00184{bottom:1022.973333pt;}
.y3f_c00184{bottom:1026.813333pt;}
.y40_c00184{bottom:1027.586667pt;}
.y3e_c00184{bottom:1029.893333pt;}
.y39_c00184{bottom:1043.706667pt;}
.y3b_c00184{bottom:1046.786667pt;}
.y3a_c00184{bottom:1051.386667pt;}
.y3c_c00184{bottom:1052.160000pt;}
.y3d_c00184{bottom:1059.840000pt;}
.y37_c00184{bottom:1079.813333pt;}
.y36_c00184{bottom:1081.346667pt;}
.y34_c00184{bottom:1086.720000pt;}
.y35_c00184{bottom:1087.493333pt;}
.y33_c00184{bottom:1089.026667pt;}
.y31_c00184{bottom:1092.093333pt;}
.y30_c00184{bottom:1095.933333pt;}
.y32_c00184{bottom:1108.226667pt;}
.y38_c00184{bottom:1108.986667pt;}
.y2e_c00184{bottom:1112.066667pt;}
.y2f_c00184{bottom:1112.826667pt;}
.y2c_c00184{bottom:1117.440000pt;}
.y2d_c00184{bottom:1118.213333pt;}
.y2b_c00184{bottom:1118.973333pt;}
.y28_c00184{bottom:1133.573333pt;}
.y29_c00184{bottom:1134.333333pt;}
.y27_c00184{bottom:1140.480000pt;}
.y2a_c00184{bottom:1141.253333pt;}
.y25_c00184{bottom:1145.853333pt;}
.y26_c00184{bottom:1156.613333pt;}
.y22_c00184{bottom:1158.906667pt;}
.y24_c00184{bottom:1160.453333pt;}
.y23_c00184{bottom:1161.986667pt;}
.y21_c00184{bottom:1171.200000pt;}
.y20_c00184{bottom:1175.813333pt;}
.y1c_c00184{bottom:1176.573333pt;}
.y1f_c00184{bottom:1178.880000pt;}
.y1d_c00184{bottom:1181.946667pt;}
.y1b_c00184{bottom:1185.026667pt;}
.y1e_c00184{bottom:1185.786667pt;}
.y18_c00184{bottom:1201.920000pt;}
.y19_c00184{bottom:1202.693333pt;}
.y1a_c00184{bottom:1203.453333pt;}
.y17_c00184{bottom:1206.533333pt;}
.y14_c00184{bottom:1211.133333pt;}
.y16_c00184{bottom:1219.586667pt;}
.y15_c00184{bottom:1221.893333pt;}
.y12_c00184{bottom:1223.426667pt;}
.y11_c00184{bottom:1224.186667pt;}
.y13_c00184{bottom:1225.733333pt;}
.y10_c00184{bottom:1228.800000pt;}
.yf_c00184{bottom:1229.573333pt;}
.ye_c00184{bottom:1232.640000pt;}
.yc_c00184{bottom:1255.680000pt;}
.yb_c00184{bottom:1257.213333pt;}
.yd_c00184{bottom:1257.986667pt;}
.ya_c00184{bottom:1258.746667pt;}
.y9_c00184{bottom:1259.520000pt;}
.y8_c00184{bottom:1260.293333pt;}
.y4_c00184{bottom:1261.053333pt;}
.y3_c00184{bottom:1263.360000pt;}
.y7_c00184{bottom:1269.506667pt;}
.y5_c00184{bottom:1277.946667pt;}
.y6_c00184{bottom:1278.720000pt;}
.h2_c00184{height:2.764500pt;}
.h10_c00184{height:4.799479pt;}
.hc_c00184{height:5.519401pt;}
.h4_c00184{height:8.303099pt;}
.h11_c00184{height:11.038802pt;}
.h3_c00184{height:13.822500pt;}
.h1a_c00184{height:16.606198pt;}
.h6_c00184{height:19.341901pt;}
.h5_c00184{height:22.125599pt;}
.h1d_c00184{height:24.861302pt;}
.h21_c00184{height:27.645000pt;}
.h19_c00184{height:30.428698pt;}
.h15_c00184{height:33.164401pt;}
.h12_c00184{height:35.948099pt;}
.h1c_c00184{height:38.683802pt;}
.h17_c00184{height:41.467500pt;}
.h1b_c00184{height:44.251198pt;}
.h18_c00184{height:46.986901pt;}
.h9_c00184{height:49.770599pt;}
.h7_c00184{height:52.506302pt;}
.h8_c00184{height:55.290000pt;}
.ha_c00184{height:58.073698pt;}
.hb_c00184{height:60.809401pt;}
.hd_c00184{height:63.593099pt;}
.h22_c00184{height:66.328802pt;}
.h1f_c00184{height:69.112500pt;}
.hf_c00184{height:71.896198pt;}
.h14_c00184{height:74.631901pt;}
.h13_c00184{height:77.415599pt;}
.he_c00184{height:80.151302pt;}
.h1e_c00184{height:82.935000pt;}
.h16_c00184{height:85.718698pt;}
.h23_c00184{height:91.238099pt;}
.h20_c00184{height:96.757500pt;}
.h0_c00184{height:1353.986667pt;}
.h1_c00184{height:1354.000000pt;}
.w0_c00184{width:984.573333pt;}
.w1_c00184{width:984.666667pt;}
.x0_c00184{left:0.000000pt;}
.x17_c00184{left:150.533333pt;}
.x18_c00184{left:155.906667pt;}
.x3f_c00184{left:178.946667pt;}
.x2f_c00184{left:218.880000pt;}
.x3_c00184{left:220.413333pt;}
.x30_c00184{left:225.026304pt;}
.x68_c00184{left:226.560000pt;}
.x31_c00184{left:229.626667pt;}
.x64_c00184{left:232.706667pt;}
.x1f_c00184{left:234.240000pt;}
.x19_c00184{left:236.546667pt;}
.x20_c00184{left:238.080000pt;}
.x59_c00184{left:240.386667pt;}
.x4_c00184{left:241.920000pt;}
.x70_c00184{left:243.453333pt;}
.x21_c00184{left:245.760000pt;}
.x47_c00184{left:248.066667pt;}
.x2a_c00184{left:251.906667pt;}
.x65_c00184{left:253.440000pt;}
.x56_c00184{left:254.973333pt;}
.x48_c00184{left:257.280000pt;}
.x22_c00184{left:258.813333pt;}
.x2b_c00184{left:260.346667pt;}
.x32_c00184{left:264.186667pt;}
.x6e_c00184{left:271.866667pt;}
.x50_c00184{left:276.480000pt;}
.x1a_c00184{left:278.786667pt;}
.x4c_c00184{left:280.320000pt;}
.x27_c00184{left:283.386667pt;}
.x4d_c00184{left:284.933333pt;}
.x23_c00184{left:286.466667pt;}
.x36_c00184{left:289.533333pt;}
.x71_c00184{left:291.840000pt;}
.x6f_c00184{left:297.213333pt;}
.x3b_c00184{left:299.520000pt;}
.x6b_c00184{left:301.053333pt;}
.x63_c00184{left:306.426667pt;}
.x7_c00184{left:308.733333pt;}
.x4e_c00184{left:311.040000pt;}
.x51_c00184{left:314.106667pt;}
.x37_c00184{left:316.413333pt;}
.x53_c00184{left:318.720000pt;}
.x42_c00184{left:324.093333pt;}
.x40_c00184{left:327.173333pt;}
.x5d_c00184{left:328.706667pt;}
.x1b_c00184{left:331.013333pt;}
.x33_c00184{left:332.546667pt;}
.x24_c00184{left:334.853333pt;}
.x28_c00184{left:337.146667pt;}
.x38_c00184{left:338.693333pt;}
.x8_c00184{left:340.226667pt;}
.x5a_c00184{left:342.533333pt;}
.x44_c00184{left:347.906667pt;}
.x43_c00184{left:350.213333pt;}
.x69_c00184{left:356.346667pt;}
.x29_c00184{left:359.426667pt;}
.x1c_c00184{left:361.733333pt;}
.x9_c00184{left:364.800000pt;}
.x34_c00184{left:367.866667pt;}
.x54_c00184{left:370.946667pt;}
.x52_c00184{left:374.786667pt;}
.x39_c00184{left:377.853333pt;}
.x41_c00184{left:380.933333pt;}
.x4f_c00184{left:388.613333pt;}
.xa_c00184{left:393.213333pt;}
.x45_c00184{left:395.520000pt;}
.x25_c00184{left:399.360000pt;}
.x49_c00184{left:403.973333pt;}
.x60_c00184{left:406.266667pt;}
.x26_c00184{left:410.106667pt;}
.x55_c00184{left:413.186667pt;}
.x1d_c00184{left:417.026667pt;}
.xb_c00184{left:421.626667pt;}
.x66_c00184{left:424.706667pt;}
.x5e_c00184{left:426.240000pt;}
.x4a_c00184{left:430.853333pt;}
.x61_c00184{left:432.386667pt;}
.x57_c00184{left:433.920000pt;}
.x2c_c00184{left:438.533333pt;}
.xc_c00184{left:444.666667pt;}
.x2d_c00184{left:446.213333pt;}
.x3a_c00184{left:449.280000pt;}
.x6c_c00184{left:450.813333pt;}
.x67_c00184{left:452.346667pt;}
.x35_c00184{left:454.653333pt;}
.x6d_c00184{left:456.186667pt;}
.x6a_c00184{left:457.733333pt;}
.x5b_c00184{left:459.266667pt;}
.x2e_c00184{left:461.573333pt;}
.x4b_c00184{left:463.106667pt;}
.x5f_c00184{left:464.640000pt;}
.x62_c00184{left:466.946667pt;}
.x46_c00184{left:469.253333pt;}
.x5c_c00184{left:473.853333pt;}
.x3d_c00184{left:476.160000pt;}
.x3e_c00184{left:477.692867pt;}
.xd_c00184{left:484.613333pt;}
.x58_c00184{left:489.213333pt;}
.x3c_c00184{left:493.053333pt;}
.x1e_c00184{left:495.360000pt;}
.xe_c00184{left:509.946667pt;}
.x5_c00184{left:518.400000pt;}
.xf_c00184{left:528.386667pt;}
.x10_c00184{left:569.853333pt;}
.x11_c00184{left:597.506667pt;}
.x12_c00184{left:625.146667pt;}
.x13_c00184{left:645.120000pt;}
.x14_c00184{left:665.853333pt;}
.x15_c00184{left:687.360000pt;}
.x16_c00184{left:706.560000pt;}
.x6_c00184{left:718.853333pt;}
.x1_c00184{left:945.413333pt;}
.x2_c00184{left:950.786667pt;}
.x72_c00184{left:979.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_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_6af6b195848d72c70814b0be.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.109863;font-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_c00185{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00185{transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);}
.m1b_c00185{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.me4_c00185{transform:matrix(0.070150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070150,0.000000,0.000000,0.250000,0,0);}
.me3_c00185{transform:matrix(0.074450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074450,0.000000,0.000000,0.250000,0,0);}
.m22_c00185{transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);}
.m176_c00185{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);}
.m1d_c00185{transform:matrix(0.087825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087825,0.000000,0.000000,0.250000,0,0);}
.m100_c00185{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.m175_c00185{transform:matrix(0.091900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091900,0.000000,0.000000,0.250000,0,0);}
.m13e_c00185{transform:matrix(0.092400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092400,0.000000,0.000000,0.250000,0,0);}
.me0_c00185{transform:matrix(0.097775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097775,0.000000,0.000000,0.250000,0,0);}
.me5_c00185{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);}
.m1f_c00185{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);}
.me_c00185{transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);}
.m19c_c00185{transform:matrix(0.102400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102400,0.000000,0.000000,0.250000,0,0);}
.mf3_c00185{transform:matrix(0.104875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104875,0.000000,0.000000,0.250000,0,0);}
.m4a_c00185{transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106750,0.000000,0.000000,0.250000,0,0);}
.m3b_c00185{transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);}
.mb6_c00185{transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00185{transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);}
.m20_c00185{transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);}
.m32_c00185{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.me1_c00185{transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);}
.m102_c00185{transform:matrix(0.114300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114300,0.000000,0.000000,0.250000,0,0);}
.m112_c00185{transform:matrix(0.116850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116850,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00185{transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);}
.m17f_c00185{transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);}
.m17b_c00185{transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);}
.m126_c00185{transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);}
.m10_c00185{transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);}
.m1be_c00185{transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00185{transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);}
.m132_c00185{transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);}
.m12d_c00185{transform:matrix(0.124425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124425,0.000000,0.000000,0.250000,0,0);}
.m11b_c00185{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m11a_c00185{transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);}
.m4b_c00185{transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);}
.m2f_c00185{transform:matrix(0.126825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126825,0.000000,0.000000,0.250000,0,0);}
.m146_c00185{transform:matrix(0.128150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128150,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00185{transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00185{transform:matrix(0.128575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128575,0.000000,0.000000,0.250000,0,0);}
.mf8_c00185{transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);}
.md1_c00185{transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);}
.m63_c00185{transform:matrix(0.132300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132300,0.000000,0.000000,0.250000,0,0);}
.m16f_c00185{transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);}
.mab_c00185{transform:matrix(0.132725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132725,0.000000,0.000000,0.250000,0,0);}
.m18a_c00185{transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);}
.m110_c00185{transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00185{transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);}
.m105_c00185{transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);}
.m184_c00185{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m17a_c00185{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.m136_c00185{transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);}
.md9_c00185{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.me7_c00185{transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);}
.m8_c00185{transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);}
.m165_c00185{transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);}
.mf2_c00185{transform:matrix(0.141775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141775,0.000000,0.000000,0.250000,0,0);}
.m10b_c00185{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m18c_c00185{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);}
.m1e_c00185{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00185{transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);}
.m14b_c00185{transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00185{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);}
.m30_c00185{transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);}
.m13b_c00185{transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);}
.m18b_c00185{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.m15c_c00185{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);}
.m14c_c00185{transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);}
.m43_c00185{transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00185{transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);}
.m7e_c00185{transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);}
.m44_c00185{transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);}
.mfe_c00185{transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);}
.m183_c00185{transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);}
.mb9_c00185{transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);}
.m8d_c00185{transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);}
.mae_c00185{transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);}
.m5c_c00185{transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);}
.m180_c00185{transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);}
.m109_c00185{transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);}
.m13a_c00185{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.m14d_c00185{transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);}
.m12f_c00185{transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);}
.mc7_c00185{transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);}
.m131_c00185{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m11c_c00185{transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);}
.m5a_c00185{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m149_c00185{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);}
.m66_c00185{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.m15b_c00185{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m1bb_c00185{transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00185{transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00185{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.m7c_c00185{transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);}
.mde_c00185{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.mf_c00185{transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);}
.mb4_c00185{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.m17d_c00185{transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);}
.m2_c00185{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);}
.m104_c00185{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.md3_c00185{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);}
.m182_c00185{transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);}
.m8e_c00185{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);}
.m179_c00185{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m189_c00185{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m107_c00185{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m138_c00185{transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);}
.m18f_c00185{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);}
.m56_c00185{transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);}
.me9_c00185{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.mbc_c00185{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m178_c00185{transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);}
.maf_c00185{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m81_c00185{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m155_c00185{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);}
.m139_c00185{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m198_c00185{transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);}
.m10e_c00185{transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);}
.me6_c00185{transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);}
.m154_c00185{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m12c_c00185{transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);}
.m9a_c00185{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m1bc_c00185{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m113_c00185{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m67_c00185{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00185{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m68_c00185{transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);}
.m80_c00185{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.m186_c00185{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m17c_c00185{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);}
.m195_c00185{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.mba_c00185{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.m83_c00185{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_c00185{transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00185{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);}
.m1b2_c00185{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m166_c00185{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00185{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.md8_c00185{transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);}
.m140_c00185{transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);}
.m59_c00185{transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);}
.m144_c00185{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.ma8_c00185{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.mdd_c00185{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m162_c00185{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.m9e_c00185{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.m5b_c00185{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m134_c00185{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.mac_c00185{transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);}
.m13f_c00185{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);}
.m50_c00185{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_c00185{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);}
.mdb_c00185{transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);}
.m127_c00185{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m99_c00185{transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);}
.m11d_c00185{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m14f_c00185{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m7f_c00185{transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);}
.m10d_c00185{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);}
.m6d_c00185{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);}
.mdf_c00185{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m11_c00185{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m171_c00185{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m10f_c00185{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.mca_c00185{transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);}
.mee_c00185{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);}
.m91_c00185{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00185{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m90_c00185{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m16d_c00185{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);}
.me2_c00185{transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);}
.m153_c00185{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);}
.m158_c00185{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.m133_c00185{transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);}
.m121_c00185{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m19b_c00185{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.mc4_c00185{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.m98_c00185{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);}
.m135_c00185{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.md7_c00185{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);}
.ma9_c00185{transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);}
.mc8_c00185{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);}
.m1b3_c00185{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);}
.m129_c00185{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m65_c00185{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);}
.m21_c00185{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m69_c00185{transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00185{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);}
.m8c_c00185{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m4_c00185{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);}
.m188_c00185{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m84_c00185{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);}
.m148_c00185{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.m11e_c00185{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m16_c00185{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.m42_c00185{transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);}
.m19f_c00185{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.mfd_c00185{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m101_c00185{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m111_c00185{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);}
.m1b5_c00185{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);}
.m152_c00185{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.mbb_c00185{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.md4_c00185{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00185{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m16e_c00185{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);}
.m17e_c00185{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m76_c00185{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);}
.m157_c00185{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);}
.m108_c00185{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_c00185{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_c00185{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);}
.m82_c00185{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m24_c00185{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);}
.mb5_c00185{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);}
.m64_c00185{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);}
.m173_c00185{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.ma3_c00185{transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);}
.maa_c00185{transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);}
.m12a_c00185{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);}
.m6a_c00185{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);}
.m92_c00185{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m4c_c00185{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);}
.m122_c00185{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);}
.m3e_c00185{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);}
.m94_c00185{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);}
.mda_c00185{transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);}
.m159_c00185{transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);}
.m25_c00185{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);}
.m187_c00185{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);}
.m14e_c00185{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m199_c00185{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m172_c00185{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);}
.m1ba_c00185{transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);}
.m1b9_c00185{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);}
.m177_c00185{transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);}
.m156_c00185{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.m19a_c00185{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.m85_c00185{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);}
.m6c_c00185{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);}
.m137_c00185{transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);}
.m185_c00185{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.m8f_c00185{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m13d_c00185{transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);}
.m145_c00185{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.m60_c00185{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m142_c00185{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);}
.m5_c00185{transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);}
.m143_c00185{transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);}
.m7_c00185{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mb8_c00185{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m58_c00185{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);}
.md_c00185{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);}
.m147_c00185{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.mc1_c00185{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);}
.m1a2_c00185{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m196_c00185{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);}
.mf9_c00185{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);}
.m141_c00185{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.md5_c00185{transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);}
.m89_c00185{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);}
.m181_c00185{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);}
.mbe_c00185{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_c00185{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);}
.m1aa_c00185{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);}
.m151_c00185{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m15a_c00185{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m53_c00185{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);}
.m14a_c00185{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.m6b_c00185{transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);}
.mc9_c00185{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m119_c00185{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.m13c_c00185{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.m174_c00185{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.mcb_c00185{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m197_c00185{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);}
.m18d_c00185{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m52_c00185{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.m6e_c00185{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);}
.m16a_c00185{transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);}
.m167_c00185{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.m128_c00185{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);}
.mc3_c00185{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);}
.mff_c00185{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.m191_c00185{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);}
.ma4_c00185{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);}
.m41_c00185{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);}
.m15e_c00185{transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);}
.mf1_c00185{transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);}
.m18e_c00185{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);}
.m1af_c00185{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);}
.m77_c00185{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);}
.m16c_c00185{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.m1b8_c00185{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m35_c00185{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);}
.m9b_c00185{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);}
.m192_c00185{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m103_c00185{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);}
.m116_c00185{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.md6_c00185{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);}
.m120_c00185{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m163_c00185{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m9d_c00185{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00185{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m4f_c00185{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.mc_c00185{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);}
.md0_c00185{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m49_c00185{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_c00185{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);}
.m40_c00185{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);}
.mbd_c00185{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);}
.mea_c00185{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m51_c00185{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m27_c00185{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00185{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);}
.mbf_c00185{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00185{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);}
.meb_c00185{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);}
.m1_c00185{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m96_c00185{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);}
.m0_c00185{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m78_c00185{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);}
.m5d_c00185{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00185{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);}
.m57_c00185{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);}
.m33_c00185{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00185{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00185{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);}
.mc2_c00185{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c00185{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00185{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);}
.mad_c00185{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00185{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m55_c00185{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00185{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m74_c00185{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00185{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00185{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m71_c00185{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);}
.m93_c00185{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m18_c00185{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00185{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00185{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);}
.m36_c00185{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);}
.m34_c00185{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00185{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c00185{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);}
.m190_c00185{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m3_c00185{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00185{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m23_c00185{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m28_c00185{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);}
.m75_c00185{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00185{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00185{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);}
.mb0_c00185{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.ma_c00185{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md2_c00185{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);}
.m9c_c00185{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mfa_c00185{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m54_c00185{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m79_c00185{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m124_c00185{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m37_c00185{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m169_c00185{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m19d_c00185{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);}
.m123_c00185{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);}
.m115_c00185{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00185{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);}
.mf0_c00185{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m70_c00185{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m97_c00185{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14_c00185{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00185{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.med_c00185{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00185{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00185{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00185{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00185{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);}
.m15_c00185{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m38_c00185{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00185{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mec_c00185{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00185{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m10a_c00185{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m17_c00185{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00185{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00185{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00185{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m12_c00185{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);}
.m48_c00185{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00185{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00185{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m95_c00185{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1bf_c00185{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m16b_c00185{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);}
.m6_c00185{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m39_c00185{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb2_c00185{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);}
.m5e_c00185{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m31_c00185{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00185{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);}
.mb7_c00185{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m46_c00185{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m168_c00185{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m45_c00185{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00185{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m87_c00185{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m15d_c00185{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00185{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00185{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00185{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m47_c00185{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m106_c00185{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m164_c00185{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);}
.m15f_c00185{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m194_c00185{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.mb1_c00185{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m61_c00185{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m150_c00185{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00185{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.me8_c00185{transform:matrix(0.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.880000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00185{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);}
.m117_c00185{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.m118_c00185{transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00185{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00185{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m11f_c00185{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.m73_c00185{transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);}
.m86_c00185{transform:matrix(1.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.120000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00185{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m130_c00185{transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00185{transform:matrix(1.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.217500,0.000000,0.000000,0.250000,0,0);}
.m29_c00185{transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);}
.m161_c00185{transform:matrix(1.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.260000,0.000000,0.000000,0.250000,0,0);}
.m125_c00185{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m160_c00185{transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);}
.m114_c00185{transform:matrix(1.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.577500,0.000000,0.000000,0.250000,0,0);}
.m193_c00185{transform:matrix(1.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.732500,0.000000,0.000000,0.250000,0,0);}
.mce_c00185{transform:matrix(1.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.757500,0.000000,0.000000,0.250000,0,0);}
.m72_c00185{transform:matrix(1.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.810000,0.000000,0.000000,0.250000,0,0);}
.m62_c00185{transform:matrix(1.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.980000,0.000000,0.000000,0.250000,0,0);}
.m19e_c00185{transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);}
.m88_c00185{transform:matrix(3.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.167500,0.000000,0.000000,0.250000,0,0);}
.m170_c00185{transform:matrix(3.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.455000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00185{transform:matrix(4.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.362500,0.000000,0.000000,0.250000,0,0);}
.v2_c00185{vertical-align:-6.900000px;}
.v0_c00185{vertical-align:0.000000px;}
.v3_c00185{vertical-align:3.480000px;}
.v1_c00185{vertical-align:6.960000px;}
.ls5_c00185{letter-spacing:0.000000px;}
.ls0_c00185{letter-spacing:42.876000px;}
.ls3_c00185{letter-spacing:44.042700px;}
.ls2_c00185{letter-spacing:122.219400px;}
.ls4_c00185{letter-spacing:171.190740px;}
.ls1_c00185{letter-spacing:202.734909px;}
.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:-31.502760px;}
.ws1_c00185{word-spacing:-7.589860px;}
.ws2_c00185{word-spacing:0.000000px;}
.fc0_c00185{color:transparent;}
.fs16_c00185{font-size:3.456000px;}
.fs1c_c00185{font-size:6.000000px;}
.fs21_c00185{font-size:6.900000px;}
.fs14_c00185{font-size:10.380000px;}
.fsc_c00185{font-size:13.800000px;}
.fs3_c00185{font-size:17.280000px;}
.fs2_c00185{font-size:20.760000px;}
.fs7_c00185{font-size:24.180000px;}
.fs1_c00185{font-size:27.660000px;}
.fs4_c00185{font-size:31.080000px;}
.fs12_c00185{font-size:34.560000px;}
.fs0_c00185{font-size:38.040000px;}
.fse_c00185{font-size:41.460000px;}
.fs10_c00185{font-size:44.940000px;}
.fs5_c00185{font-size:48.360000px;}
.fs8_c00185{font-size:51.840000px;}
.fs9_c00185{font-size:55.320000px;}
.fs23_c00185{font-size:58.740000px;}
.fs22_c00185{font-size:62.220000px;}
.fsb_c00185{font-size:65.640000px;}
.fs11_c00185{font-size:69.120000px;}
.fsf_c00185{font-size:72.600000px;}
.fs17_c00185{font-size:76.020000px;}
.fs24_c00185{font-size:79.500000px;}
.fs6_c00185{font-size:82.920000px;}
.fs15_c00185{font-size:86.400000px;}
.fs1d_c00185{font-size:89.880000px;}
.fsa_c00185{font-size:93.300000px;}
.fs13_c00185{font-size:96.780000px;}
.fs1e_c00185{font-size:103.680000px;}
.fsd_c00185{font-size:107.160000px;}
.fs1b_c00185{font-size:110.580000px;}
.fs27_c00185{font-size:114.060000px;}
.fs19_c00185{font-size:120.960000px;}
.fs25_c00185{font-size:134.760000px;}
.fs18_c00185{font-size:138.240000px;}
.fs20_c00185{font-size:141.720000px;}
.fs1a_c00185{font-size:145.140000px;}
.fs1f_c00185{font-size:155.520000px;}
.fs26_c00185{font-size:165.900000px;}
.y0_c00185{bottom:0.000000px;}
.y232_c00185{bottom:204.765000px;}
.y22f_c00185{bottom:207.360000px;}
.y230_c00185{bottom:208.230000px;}
.y231_c00185{bottom:212.550000px;}
.y22e_c00185{bottom:214.275000px;}
.y22d_c00185{bottom:215.130000px;}
.y22b_c00185{bottom:216.870000px;}
.y22c_c00185{bottom:218.595000px;}
.y229_c00185{bottom:221.190000px;}
.y228_c00185{bottom:222.045000px;}
.y22a_c00185{bottom:224.640000px;}
.y226_c00185{bottom:225.510000px;}
.y224_c00185{bottom:226.365000px;}
.y227_c00185{bottom:227.235000px;}
.y223_c00185{bottom:228.090000px;}
.y222_c00185{bottom:234.150000px;}
.y225_c00185{bottom:235.005000px;}
.y220_c00185{bottom:238.470000px;}
.y21f_c00185{bottom:241.050000px;}
.y21e_c00185{bottom:241.920000px;}
.y21d_c00185{bottom:243.645000px;}
.y221_c00185{bottom:244.515000px;}
.y21b_c00185{bottom:246.240000px;}
.y21a_c00185{bottom:247.965000px;}
.y21c_c00185{bottom:251.430000px;}
.y219_c00185{bottom:253.155000px;}
.y218_c00185{bottom:255.750000px;}
.y217_c00185{bottom:256.605000px;}
.y216_c00185{bottom:258.330000px;}
.y214_c00185{bottom:259.200000px;}
.y212_c00185{bottom:260.925000px;}
.y213_c00185{bottom:261.795000px;}
.y210_c00185{bottom:263.520000px;}
.y20f_c00185{bottom:265.245000px;}
.y215_c00185{bottom:267.840000px;}
.y211_c00185{bottom:268.710000px;}
.y20d_c00185{bottom:272.160000px;}
.y20b_c00185{bottom:273.885000px;}
.y20e_c00185{bottom:274.755000px;}
.y209_c00185{bottom:278.205000px;}
.y20a_c00185{bottom:279.075000px;}
.y208_c00185{bottom:279.930000px;}
.y20c_c00185{bottom:280.800000px;}
.y206_c00185{bottom:281.670000px;}
.y205_c00185{bottom:282.525000px;}
.y204_c00185{bottom:283.395000px;}
.y207_c00185{bottom:284.250000px;}
.y201_c00185{bottom:285.120000px;}
.y203_c00185{bottom:287.715000px;}
.y200_c00185{bottom:291.165000px;}
.y202_c00185{bottom:292.035000px;}
.y1fe_c00185{bottom:293.760000px;}
.y1fd_c00185{bottom:294.630000px;}
.y1ff_c00185{bottom:295.485000px;}
.y1fc_c00185{bottom:298.080000px;}
.y1f9_c00185{bottom:298.950000px;}
.y1fb_c00185{bottom:300.675000px;}
.y1f7_c00185{bottom:301.530000px;}
.y1fa_c00185{bottom:302.400000px;}
.y1f6_c00185{bottom:303.270000px;}
.y1f8_c00185{bottom:304.995000px;}
.y1f5_c00185{bottom:308.445000px;}
.y1f3_c00185{bottom:310.170000px;}
.y1f1_c00185{bottom:312.765000px;}
.y1f0_c00185{bottom:313.635000px;}
.y1f2_c00185{bottom:314.490000px;}
.y1f4_c00185{bottom:316.230000px;}
.y1ee_c00185{bottom:317.085000px;}
.y1ef_c00185{bottom:317.955000px;}
.y1ed_c00185{bottom:318.810000px;}
.y1ec_c00185{bottom:319.680000px;}
.y1ea_c00185{bottom:322.275000px;}
.y1e8_c00185{bottom:323.130000px;}
.y1e9_c00185{bottom:324.000000px;}
.y1e7_c00185{bottom:324.870000px;}
.y1e6_c00185{bottom:326.595000px;}
.y1eb_c00185{bottom:327.450000px;}
.y1e5_c00185{bottom:329.190000px;}
.y1e2_c00185{bottom:330.915000px;}
.y1e1_c00185{bottom:331.770000px;}
.y1e3_c00185{bottom:332.640000px;}
.y1e0_c00185{bottom:333.510000px;}
.y1df_c00185{bottom:336.090000px;}
.y1e4_c00185{bottom:338.685000px;}
.y1dd_c00185{bottom:339.555000px;}
.y1de_c00185{bottom:342.150000px;}
.y1db_c00185{bottom:343.875000px;}
.y1dc_c00185{bottom:344.730000px;}
.y1d9_c00185{bottom:345.600000px;}
.y1da_c00185{bottom:346.470000px;}
.y1d6_c00185{bottom:347.325000px;}
.y1d8_c00185{bottom:349.050000px;}
.y1d4_c00185{bottom:349.920000px;}
.y1d7_c00185{bottom:351.645000px;}
.y1d2_c00185{bottom:355.110000px;}
.y1d5_c00185{bottom:357.690000px;}
.y1d3_c00185{bottom:359.430000px;}
.y1d0_c00185{bottom:361.155000px;}
.y1cf_c00185{bottom:362.010000px;}
.y1cc_c00185{bottom:362.880000px;}
.y1d1_c00185{bottom:364.605000px;}
.y1ce_c00185{bottom:365.475000px;}
.y1c8_c00185{bottom:366.330000px;}
.y1ca_c00185{bottom:367.200000px;}
.y1c7_c00185{bottom:368.070000px;}
.y1cb_c00185{bottom:368.925000px;}
.y1cd_c00185{bottom:369.795000px;}
.y1c9_c00185{bottom:370.650000px;}
.y1c6_c00185{bottom:372.390000px;}
.y1c5_c00185{bottom:373.245000px;}
.y1c4_c00185{bottom:377.565000px;}
.y1c0_c00185{bottom:378.435000px;}
.y1c2_c00185{bottom:379.290000px;}
.y1bc_c00185{bottom:381.030000px;}
.y1c1_c00185{bottom:381.885000px;}
.y1c3_c00185{bottom:382.755000px;}
.y1bf_c00185{bottom:383.610000px;}
.y1bd_c00185{bottom:384.480000px;}
.y1be_c00185{bottom:385.350000px;}
.y1bb_c00185{bottom:386.205000px;}
.y1ba_c00185{bottom:389.670000px;}
.y1b8_c00185{bottom:390.525000px;}
.y1b9_c00185{bottom:391.395000px;}
.y1b3_c00185{bottom:392.250000px;}
.y1b7_c00185{bottom:393.120000px;}
.y1b6_c00185{bottom:393.990000px;}
.y1b4_c00185{bottom:394.845000px;}
.y1b5_c00185{bottom:397.440000px;}
.y1b0_c00185{bottom:398.310000px;}
.y1ad_c00185{bottom:399.165000px;}
.y1ab_c00185{bottom:400.890000px;}
.y1b2_c00185{bottom:401.760000px;}
.y1a9_c00185{bottom:402.630000px;}
.y1aa_c00185{bottom:403.485000px;}
.y1ae_c00185{bottom:404.355000px;}
.y1b1_c00185{bottom:405.210000px;}
.y1ac_c00185{bottom:406.080000px;}
.y1a8_c00185{bottom:408.675000px;}
.y1a7_c00185{bottom:411.270000px;}
.y1a5_c00185{bottom:413.850000px;}
.y1af_c00185{bottom:414.720000px;}
.y1a6_c00185{bottom:415.590000px;}
.y1a2_c00185{bottom:417.315000px;}
.y1a4_c00185{bottom:419.040000px;}
.y1a3_c00185{bottom:420.765000px;}
.y1a0_c00185{bottom:421.635000px;}
.y1a1_c00185{bottom:424.230000px;}
.y19e_c00185{bottom:425.955000px;}
.y19c_c00185{bottom:426.810000px;}
.y19f_c00185{bottom:427.680000px;}
.y19b_c00185{bottom:428.550000px;}
.y19d_c00185{bottom:432.000000px;}
.y19a_c00185{bottom:432.870000px;}
.y199_c00185{bottom:433.725000px;}
.y197_c00185{bottom:437.190000px;}
.y198_c00185{bottom:438.045000px;}
.y193_c00185{bottom:439.770000px;}
.y196_c00185{bottom:440.640000px;}
.y195_c00185{bottom:441.510000px;}
.y194_c00185{bottom:442.365000px;}
.y192_c00185{bottom:444.960000px;}
.y18f_c00185{bottom:445.830000px;}
.y18d_c00185{bottom:447.555000px;}
.y190_c00185{bottom:448.410000px;}
.y18b_c00185{bottom:450.150000px;}
.y18a_c00185{bottom:451.005000px;}
.y191_c00185{bottom:451.875000px;}
.y18c_c00185{bottom:452.730000px;}
.y189_c00185{bottom:454.470000px;}
.y18e_c00185{bottom:456.195000px;}
.y188_c00185{bottom:457.050000px;}
.y186_c00185{bottom:457.920000px;}
.y187_c00185{bottom:460.515000px;}
.y184_c00185{bottom:466.560000px;}
.y182_c00185{bottom:467.430000px;}
.y183_c00185{bottom:469.155000px;}
.y185_c00185{bottom:470.010000px;}
.y181_c00185{bottom:470.880000px;}
.y17c_c00185{bottom:471.750000px;}
.y180_c00185{bottom:472.605000px;}
.y17e_c00185{bottom:475.200000px;}
.y17a_c00185{bottom:476.070000px;}
.y17b_c00185{bottom:478.650000px;}
.y17d_c00185{bottom:480.390000px;}
.y178_c00185{bottom:481.245000px;}
.y179_c00185{bottom:482.115000px;}
.y177_c00185{bottom:483.840000px;}
.y175_c00185{bottom:484.710000px;}
.y176_c00185{bottom:487.290000px;}
.y17f_c00185{bottom:488.160000px;}
.y174_c00185{bottom:489.030000px;}
.y172_c00185{bottom:492.480000px;}
.y173_c00185{bottom:494.205000px;}
.y16f_c00185{bottom:495.075000px;}
.y171_c00185{bottom:495.930000px;}
.y170_c00185{bottom:497.670000px;}
.y16e_c00185{bottom:498.525000px;}
.y16c_c00185{bottom:501.120000px;}
.y16a_c00185{bottom:502.845000px;}
.y16d_c00185{bottom:503.715000px;}
.y16b_c00185{bottom:504.570000px;}
.y169_c00185{bottom:507.165000px;}
.y167_c00185{bottom:508.890000px;}
.y166_c00185{bottom:509.760000px;}
.y165_c00185{bottom:510.630000px;}
.y164_c00185{bottom:511.485000px;}
.y160_c00185{bottom:512.355000px;}
.y168_c00185{bottom:513.210000px;}
.y161_c00185{bottom:514.950000px;}
.y162_c00185{bottom:518.400000px;}
.y25_c00185{bottom:521.850000px;}
.y15f_c00185{bottom:522.720000px;}
.y15d_c00185{bottom:523.590000px;}
.y163_c00185{bottom:524.445000px;}
.y15e_c00185{bottom:525.315000px;}
.y15c_c00185{bottom:526.170000px;}
.y159_c00185{bottom:527.040000px;}
.y15a_c00185{bottom:527.910000px;}
.y156_c00185{bottom:528.765000px;}
.y157_c00185{bottom:529.635000px;}
.y158_c00185{bottom:530.490000px;}
.y24_c00185{bottom:533.085000px;}
.y15b_c00185{bottom:537.405000px;}
.y151_c00185{bottom:540.870000px;}
.y150_c00185{bottom:542.595000px;}
.y14d_c00185{bottom:544.320000px;}
.y154_c00185{bottom:545.190000px;}
.y14e_c00185{bottom:546.045000px;}
.y155_c00185{bottom:546.915000px;}
.y152_c00185{bottom:547.770000px;}
.y153_c00185{bottom:548.640000px;}
.y14f_c00185{bottom:549.510000px;}
.y14c_c00185{bottom:551.235000px;}
.y14b_c00185{bottom:553.830000px;}
.y149_c00185{bottom:556.410000px;}
.y146_c00185{bottom:561.600000px;}
.y148_c00185{bottom:562.470000px;}
.y14a_c00185{bottom:565.050000px;}
.y145_c00185{bottom:565.920000px;}
.y144_c00185{bottom:566.790000px;}
.y147_c00185{bottom:568.515000px;}
.y140_c00185{bottom:576.285000px;}
.y143_c00185{bottom:577.155000px;}
.y13f_c00185{bottom:578.010000px;}
.y13e_c00185{bottom:578.880000px;}
.y142_c00185{bottom:581.475000px;}
.y13c_c00185{bottom:582.330000px;}
.y13b_c00185{bottom:583.200000px;}
.y13d_c00185{bottom:584.070000px;}
.y141_c00185{bottom:584.925000px;}
.y13a_c00185{bottom:594.435000px;}
.y139_c00185{bottom:597.885000px;}
.y138_c00185{bottom:598.755000px;}
.y136_c00185{bottom:599.610000px;}
.y134_c00185{bottom:600.480000px;}
.y135_c00185{bottom:601.350000px;}
.y131_c00185{bottom:602.205000px;}
.y133_c00185{bottom:603.075000px;}
.y137_c00185{bottom:609.120000px;}
.y130_c00185{bottom:613.440000px;}
.y12f_c00185{bottom:617.760000px;}
.y132_c00185{bottom:618.630000px;}
.y12d_c00185{bottom:622.080000px;}
.y129_c00185{bottom:627.270000px;}
.y12c_c00185{bottom:628.125000px;}
.y128_c00185{bottom:628.995000px;}
.y12e_c00185{bottom:629.850000px;}
.y126_c00185{bottom:631.590000px;}
.y127_c00185{bottom:632.445000px;}
.y125_c00185{bottom:633.315000px;}
.y12b_c00185{bottom:635.910000px;}
.y12a_c00185{bottom:641.085000px;}
.y124_c00185{bottom:641.955000px;}
.y11f_c00185{bottom:642.810000px;}
.y11d_c00185{bottom:644.550000px;}
.y123_c00185{bottom:645.405000px;}
.y11c_c00185{bottom:646.275000px;}
.y122_c00185{bottom:648.000000px;}
.y11b_c00185{bottom:648.870000px;}
.y119_c00185{bottom:649.725000px;}
.y120_c00185{bottom:650.595000px;}
.y11e_c00185{bottom:651.450000px;}
.y11a_c00185{bottom:653.190000px;}
.y121_c00185{bottom:656.640000px;}
.y114_c00185{bottom:661.830000px;}
.y45_c00185{bottom:662.685000px;}
.y116_c00185{bottom:663.555000px;}
.y118_c00185{bottom:667.875000px;}
.y112_c00185{bottom:668.730000px;}
.y115_c00185{bottom:669.600000px;}
.y117_c00185{bottom:671.325000px;}
.y113_c00185{bottom:673.920000px;}
.y110_c00185{bottom:675.645000px;}
.y111_c00185{bottom:685.155000px;}
.y10e_c00185{bottom:686.010000px;}
.y10f_c00185{bottom:686.880000px;}
.y10a_c00185{bottom:688.605000px;}
.y108_c00185{bottom:689.475000px;}
.y10d_c00185{bottom:690.330000px;}
.y10c_c00185{bottom:691.200000px;}
.y10b_c00185{bottom:692.070000px;}
.y109_c00185{bottom:692.925000px;}
.y105_c00185{bottom:700.710000px;}
.y107_c00185{bottom:704.160000px;}
.y106_c00185{bottom:705.885000px;}
.y104_c00185{bottom:706.755000px;}
.y102_c00185{bottom:707.610000px;}
.y103_c00185{bottom:711.075000px;}
.yff_c00185{bottom:717.990000px;}
.yfe_c00185{bottom:718.845000px;}
.yfd_c00185{bottom:719.715000px;}
.yfa_c00185{bottom:722.310000px;}
.yfc_c00185{bottom:723.165000px;}
.yfb_c00185{bottom:724.890000px;}
.yf9_c00185{bottom:725.760000px;}
.y101_c00185{bottom:728.355000px;}
.y100_c00185{bottom:737.850000px;}
.yf8_c00185{bottom:749.085000px;}
.yf5_c00185{bottom:749.955000px;}
.yf7_c00185{bottom:750.810000px;}
.yf6_c00185{bottom:751.680000px;}
.yf3_c00185{bottom:752.550000px;}
.yf2_c00185{bottom:753.405000px;}
.yf4_c00185{bottom:755.130000px;}
.yf1_c00185{bottom:756.000000px;}
.yf0_c00185{bottom:765.510000px;}
.yee_c00185{bottom:768.090000px;}
.yed_c00185{bottom:768.960000px;}
.yec_c00185{bottom:769.830000px;}
.yef_c00185{bottom:770.685000px;}
.yea_c00185{bottom:772.410000px;}
.ye9_c00185{bottom:773.280000px;}
.yeb_c00185{bottom:774.150000px;}
.ye8_c00185{bottom:775.005000px;}
.ye7_c00185{bottom:775.875000px;}
.ye3_c00185{bottom:783.645000px;}
.ye1_c00185{bottom:784.515000px;}
.ye6_c00185{bottom:785.370000px;}
.ye5_c00185{bottom:786.240000px;}
.ye4_c00185{bottom:787.110000px;}
.ye2_c00185{bottom:788.835000px;}
.ye0_c00185{bottom:789.690000px;}
.y23_c00185{bottom:790.560000px;}
.ydf_c00185{bottom:798.330000px;}
.ydd_c00185{bottom:800.070000px;}
.yde_c00185{bottom:803.520000px;}
.ydc_c00185{bottom:804.390000px;}
.ydb_c00185{bottom:805.245000px;}
.yda_c00185{bottom:806.115000px;}
.yd8_c00185{bottom:806.970000px;}
.yd9_c00185{bottom:807.840000px;}
.y22_c00185{bottom:813.030000px;}
.yd7_c00185{bottom:816.480000px;}
.yd6_c00185{bottom:817.350000px;}
.yd4_c00185{bottom:819.075000px;}
.yd5_c00185{bottom:822.525000px;}
.yd3_c00185{bottom:823.395000px;}
.yd2_c00185{bottom:828.570000px;}
.y21_c00185{bottom:829.440000px;}
.yd0_c00185{bottom:830.310000px;}
.yd1_c00185{bottom:832.890000px;}
.ycd_c00185{bottom:834.630000px;}
.ycf_c00185{bottom:836.355000px;}
.yce_c00185{bottom:837.210000px;}
.ycc_c00185{bottom:838.080000px;}
.ycb_c00185{bottom:838.950000px;}
.yca_c00185{bottom:840.675000px;}
.yc9_c00185{bottom:844.995000px;}
.yc8_c00185{bottom:848.445000px;}
.yc4_c00185{bottom:849.315000px;}
.yc7_c00185{bottom:850.170000px;}
.yc5_c00185{bottom:851.910000px;}
.yc6_c00185{bottom:853.635000px;}
.yc1_c00185{bottom:854.490000px;}
.yc3_c00185{bottom:855.360000px;}
.yc2_c00185{bottom:856.230000px;}
.y20_c00185{bottom:867.450000px;}
.yc0_c00185{bottom:868.320000px;}
.ybf_c00185{bottom:869.190000px;}
.ybc_c00185{bottom:870.045000px;}
.ybe_c00185{bottom:870.915000px;}
.yb8_c00185{bottom:871.770000px;}
.ybb_c00185{bottom:872.640000px;}
.ybd_c00185{bottom:873.510000px;}
.yba_c00185{bottom:875.235000px;}
.yb9_c00185{bottom:876.090000px;}
.y1e_c00185{bottom:879.555000px;}
.yb7_c00185{bottom:884.730000px;}
.yb5_c00185{bottom:886.470000px;}
.yb1_c00185{bottom:887.325000px;}
.yb3_c00185{bottom:888.195000px;}
.yb2_c00185{bottom:889.050000px;}
.yaf_c00185{bottom:890.790000px;}
.yb4_c00185{bottom:893.370000px;}
.yb6_c00185{bottom:894.240000px;}
.yad_c00185{bottom:895.965000px;}
.yb0_c00185{bottom:896.835000px;}
.yae_c00185{bottom:898.560000px;}
.y1f_c00185{bottom:899.430000px;}
.yac_c00185{bottom:904.605000px;}
.y1d_c00185{bottom:905.475000px;}
.yab_c00185{bottom:910.650000px;}
.ya9_c00185{bottom:911.520000px;}
.ya7_c00185{bottom:912.390000px;}
.yaa_c00185{bottom:913.245000px;}
.ya8_c00185{bottom:915.840000px;}
.ya6_c00185{bottom:922.755000px;}
.ya4_c00185{bottom:924.480000px;}
.ya5_c00185{bottom:925.350000px;}
.ya3_c00185{bottom:926.205000px;}
.ya2_c00185{bottom:927.075000px;}
.ya1_c00185{bottom:927.930000px;}
.ya0_c00185{bottom:929.670000px;}
.y9e_c00185{bottom:930.525000px;}
.y9f_c00185{bottom:933.990000px;}
.y9c_c00185{bottom:937.440000px;}
.y9b_c00185{bottom:938.310000px;}
.y99_c00185{bottom:941.760000px;}
.y1b_c00185{bottom:942.630000px;}
.y9a_c00185{bottom:943.485000px;}
.y9d_c00185{bottom:945.210000px;}
.y98_c00185{bottom:946.080000px;}
.y94_c00185{bottom:946.950000px;}
.y1c_c00185{bottom:948.675000px;}
.y97_c00185{bottom:949.530000px;}
.y95_c00185{bottom:950.400000px;}
.y96_c00185{bottom:952.125000px;}
.y93_c00185{bottom:953.850000px;}
.y92_c00185{bottom:956.445000px;}
.y91_c00185{bottom:957.315000px;}
.y8f_c00185{bottom:959.040000px;}
.y8e_c00185{bottom:960.765000px;}
.y8d_c00185{bottom:961.635000px;}
.y90_c00185{bottom:962.490000px;}
.y8a_c00185{bottom:966.810000px;}
.y8c_c00185{bottom:967.680000px;}
.y8b_c00185{bottom:968.550000px;}
.y1a_c00185{bottom:969.405000px;}
.y88_c00185{bottom:976.320000px;}
.y89_c00185{bottom:977.190000px;}
.y86_c00185{bottom:978.915000px;}
.y87_c00185{bottom:979.770000px;}
.y19_c00185{bottom:980.640000px;}
.y85_c00185{bottom:981.510000px;}
.y83_c00185{bottom:984.960000px;}
.y84_c00185{bottom:986.685000px;}
.y18_c00185{bottom:987.555000px;}
.y7f_c00185{bottom:995.325000px;}
.y7e_c00185{bottom:996.195000px;}
.y7d_c00185{bottom:997.050000px;}
.y80_c00185{bottom:997.920000px;}
.y7c_c00185{bottom:998.790000px;}
.y7a_c00185{bottom:999.645000px;}
.y79_c00185{bottom:1000.515000px;}
.y82_c00185{bottom:1003.110000px;}
.y7b_c00185{bottom:1003.965000px;}
.y77_c00185{bottom:1008.285000px;}
.y81_c00185{bottom:1009.155000px;}
.y75_c00185{bottom:1010.010000px;}
.y74_c00185{bottom:1011.750000px;}
.y73_c00185{bottom:1012.605000px;}
.y76_c00185{bottom:1013.475000px;}
.y71_c00185{bottom:1015.200000px;}
.y6e_c00185{bottom:1016.070000px;}
.y6c_c00185{bottom:1016.925000px;}
.y6d_c00185{bottom:1017.795000px;}
.y72_c00185{bottom:1018.650000px;}
.y69_c00185{bottom:1019.520000px;}
.y78_c00185{bottom:1020.390000px;}
.y6b_c00185{bottom:1022.115000px;}
.y16_c00185{bottom:1025.565000px;}
.y70_c00185{bottom:1026.435000px;}
.y6a_c00185{bottom:1028.160000px;}
.y68_c00185{bottom:1029.030000px;}
.y6f_c00185{bottom:1029.885000px;}
.y66_c00185{bottom:1030.755000px;}
.y64_c00185{bottom:1031.610000px;}
.y65_c00185{bottom:1032.480000px;}
.y67_c00185{bottom:1034.205000px;}
.y62_c00185{bottom:1035.075000px;}
.y61_c00185{bottom:1035.930000px;}
.y63_c00185{bottom:1036.800000px;}
.y17_c00185{bottom:1037.670000px;}
.y60_c00185{bottom:1048.890000px;}
.y5f_c00185{bottom:1051.485000px;}
.y5e_c00185{bottom:1053.210000px;}
.y5c_c00185{bottom:1056.675000px;}
.y5d_c00185{bottom:1060.995000px;}
.y5b_c00185{bottom:1065.315000px;}
.y59_c00185{bottom:1066.170000px;}
.y58_c00185{bottom:1067.040000px;}
.y5a_c00185{bottom:1067.910000px;}
.y15_c00185{bottom:1068.765000px;}
.y56_c00185{bottom:1069.635000px;}
.y57_c00185{bottom:1073.085000px;}
.y13_c00185{bottom:1073.955000px;}
.y55_c00185{bottom:1074.810000px;}
.y14_c00185{bottom:1076.550000px;}
.y51_c00185{bottom:1081.725000px;}
.y54_c00185{bottom:1083.450000px;}
.y53_c00185{bottom:1085.190000px;}
.y4d_c00185{bottom:1086.915000px;}
.y4e_c00185{bottom:1087.770000px;}
.y12_c00185{bottom:1089.510000px;}
.y50_c00185{bottom:1091.235000px;}
.y4f_c00185{bottom:1092.960000px;}
.y52_c00185{bottom:1094.685000px;}
.y4b_c00185{bottom:1098.150000px;}
.y4c_c00185{bottom:1099.005000px;}
.y4a_c00185{bottom:1099.875000px;}
.y11_c00185{bottom:1105.050000px;}
.y49_c00185{bottom:1107.645000px;}
.y48_c00185{bottom:1109.370000px;}
.y47_c00185{bottom:1110.240000px;}
.y10_c00185{bottom:1131.840000px;}
.y41_c00185{bottom:1135.290000px;}
.y46_c00185{bottom:1137.885000px;}
.yf_c00185{bottom:1138.755000px;}
.y3f_c00185{bottom:1141.350000px;}
.y40_c00185{bottom:1142.205000px;}
.y39_c00185{bottom:1147.395000px;}
.y44_c00185{bottom:1148.250000px;}
.y43_c00185{bottom:1149.120000px;}
.y42_c00185{bottom:1149.990000px;}
.y3e_c00185{bottom:1151.715000px;}
.ye_c00185{bottom:1155.165000px;}
.yd_c00185{bottom:1162.950000px;}
.y35_c00185{bottom:1172.445000px;}
.y34_c00185{bottom:1175.910000px;}
.y38_c00185{bottom:1177.635000px;}
.y3d_c00185{bottom:1180.230000px;}
.yc_c00185{bottom:1182.810000px;}
.y33_c00185{bottom:1183.680000px;}
.y32_c00185{bottom:1189.725000px;}
.y31_c00185{bottom:1190.595000px;}
.ya_c00185{bottom:1197.510000px;}
.y37_c00185{bottom:1199.235000px;}
.yb_c00185{bottom:1200.960000px;}
.y3c_c00185{bottom:1203.555000px;}
.y36_c00185{bottom:1206.150000px;}
.y8_c00185{bottom:1207.875000px;}
.y9_c00185{bottom:1214.790000px;}
.y30_c00185{bottom:1217.370000px;}
.y2f_c00185{bottom:1219.110000px;}
.y2d_c00185{bottom:1219.965000px;}
.y2e_c00185{bottom:1220.835000px;}
.y2c_c00185{bottom:1221.690000px;}
.y3b_c00185{bottom:1222.560000px;}
.y2b_c00185{bottom:1223.430000px;}
.y2a_c00185{bottom:1224.285000px;}
.y29_c00185{bottom:1225.155000px;}
.y28_c00185{bottom:1226.010000px;}
.y27_c00185{bottom:1226.880000px;}
.y3a_c00185{bottom:1247.610000px;}
.y7_c00185{bottom:1271.805000px;}
.y6_c00185{bottom:1294.275000px;}
.y5_c00185{bottom:1321.920000px;}
.y4_c00185{bottom:1326.240000px;}
.y26_c00185{bottom:1352.160000px;}
.y3_c00185{bottom:1368.570000px;}
.y2_c00185{bottom:1371.165000px;}
.y1_c00185{bottom:1381.530000px;}
.h18_c00185{height:3.110063px;}
.h1e_c00185{height:5.399414px;}
.h23_c00185{height:6.209326px;}
.h16_c00185{height:9.340986px;}
.he_c00185{height:12.418652px;}
.h26_c00185{height:13.169326px;}
.h5_c00185{height:15.550313px;}
.h4_c00185{height:18.681973px;}
.h9_c00185{height:21.759639px;}
.h3_c00185{height:24.891299px;}
.h6_c00185{height:27.968965px;}
.h14_c00185{height:31.100625px;}
.h2_c00185{height:34.232285px;}
.h10_c00185{height:37.309951px;}
.h12_c00185{height:40.441611px;}
.h7_c00185{height:43.519277px;}
.ha_c00185{height:46.650937px;}
.hb_c00185{height:49.782598px;}
.h25_c00185{height:52.860264px;}
.h24_c00185{height:55.991924px;}
.hd_c00185{height:59.069590px;}
.h13_c00185{height:62.201250px;}
.h11_c00185{height:65.332910px;}
.h19_c00185{height:68.410576px;}
.h27_c00185{height:71.542236px;}
.h8_c00185{height:74.619902px;}
.h17_c00185{height:77.751563px;}
.h1f_c00185{height:80.883223px;}
.hc_c00185{height:83.960889px;}
.h15_c00185{height:87.092549px;}
.h20_c00185{height:93.301875px;}
.hf_c00185{height:96.433535px;}
.h1d_c00185{height:99.511201px;}
.h2a_c00185{height:102.642861px;}
.h1b_c00185{height:108.852188px;}
.h28_c00185{height:121.270840px;}
.h1a_c00185{height:124.402500px;}
.h22_c00185{height:127.534160px;}
.h1c_c00185{height:130.611826px;}
.h21_c00185{height:139.952812px;}
.h29_c00185{height:149.293799px;}
.h1_c00185{height:1503.000000px;}
.h0_c00185{height:1503.360000px;}
.w0_c00185{width:1090.365000px;}
.w1_c00185{width:1090.500000px;}
.x0_c00185{left:0.000000px;}
.x1_c00185{left:1.725000px;}
.x9_c00185{left:4.320000px;}
.xc_c00185{left:9.510000px;}
.x2_c00185{left:12.090000px;}
.x3_c00185{left:23.325000px;}
.x5_c00185{left:25.050000px;}
.x6_c00185{left:27.645000px;}
.xb_c00185{left:37.155000px;}
.x7_c00185{left:39.750000px;}
.xa_c00185{left:49.245000px;}
.x8_c00185{left:60.480000px;}
.x4_c00185{left:129.600000px;}
.xd_c00185{left:146.010000px;}
.xe_c00185{left:162.435000px;}
.x38_c00185{left:164.160000px;}
.x125_c00185{left:179.715000px;}
.xb6_c00185{left:203.040000px;}
.xe7_c00185{left:204.765000px;}
.xaf_c00185{left:206.490000px;}
.x74_c00185{left:211.680000px;}
.x106_c00185{left:215.130000px;}
.x101_c00185{left:216.870000px;}
.xb0_c00185{left:222.045000px;}
.xc2_c00185{left:223.770000px;}
.xf2_c00185{left:226.365000px;}
.x83_c00185{left:228.960000px;}
.xa4_c00185{left:230.685000px;}
.x57_c00185{left:233.280000px;}
.x4a_c00185{left:235.005000px;}
.xb7_c00185{left:241.050000px;}
.xe4_c00185{left:246.240000px;}
.xd3_c00185{left:247.965000px;}
.x5e_c00185{left:249.690000px;}
.xe8_c00185{left:251.430000px;}
.xb8_c00185{left:254.010000px;}
.xa8_c00185{left:255.750000px;}
.x4b_c00185{left:257.475000px;}
.x58_c00185{left:260.070000px;}
.x52_c00185{left:261.795000px;}
.xcb_c00185{left:263.520000px;}
.xcf_c00185{left:265.245000px;}
.x11d_c00185{left:273.885000px;}
.xb1_c00185{left:278.205000px;}
.xd2_c00185{left:282.525000px;}
.xf6_c00185{left:285.120000px;}
.xe9_c00185{left:287.715000px;}
.x75_c00185{left:290.310000px;}
.xa5_c00185{left:293.760000px;}
.x5f_c00185{left:296.355000px;}
.xd4_c00185{left:298.080000px;}
.x7d_c00185{left:302.400000px;}
.x6c_c00185{left:304.125000px;}
.xb9_c00185{left:306.720000px;}
.xab_c00185{left:308.445000px;}
.x84_c00185{left:310.170000px;}
.xcc_c00185{left:312.765000px;}
.x3b_c00185{left:317.085000px;}
.x4c_c00185{left:318.810000px;}
.xf7_c00185{left:321.405000px;}
.x8c_c00185{left:323.130000px;}
.x60_c00185{left:328.320000px;}
.x109_c00185{left:330.045000px;}
.x3c_c00185{left:334.365000px;}
.xf8_c00185{left:336.960000px;}
.x1f_c00185{left:338.685000px;}
.x76_c00185{left:340.410000px;}
.x59_c00185{left:342.150000px;}
.x10b_c00185{left:345.600000px;}
.x7e_c00185{left:347.325000px;}
.x3d_c00185{left:350.790000px;}
.x11e_c00185{left:352.515000px;}
.xac_c00185{left:354.240000px;}
.x53_c00185{left:355.965000px;}
.xcd_c00185{left:359.430000px;}
.xf9_c00185{left:362.010000px;}
.x94_c00185{left:364.605000px;}
.x20_c00185{left:368.070000px;}
.x9c_c00185{left:369.795000px;}
.x61_c00185{left:371.520000px;}
.x3e_c00185{left:373.245000px;}
.x121_c00185{left:374.970000px;}
.x92_c00185{left:378.435000px;}
.x2a_c00185{left:380.160000px;}
.xfa_c00185{left:381.885000px;}
.x9d_c00185{left:383.610000px;}
.xd5_c00185{left:385.350000px;}
.x97_c00185{left:387.075000px;}
.x3f_c00185{left:388.800000px;}
.xc3_c00185{left:390.525000px;}
.x77_c00185{left:393.990000px;}
.x62_c00185{left:397.440000px;}
.x8d_c00185{left:399.165000px;}
.x21_c00185{left:402.630000px;}
.x107_c00185{left:404.355000px;}
.x4d_c00185{left:406.950000px;}
.x39_c00185{left:410.400000px;}
.x63_c00185{left:413.850000px;}
.x9e_c00185{left:415.590000px;}
.xb2_c00185{left:417.315000px;}
.x40_c00185{left:420.765000px;}
.x4e_c00185{left:423.360000px;}
.x3a_c00185{left:425.085000px;}
.x6d_c00185{left:428.550000px;}
.xea_c00185{left:430.275000px;}
.x100_c00185{left:432.000000px;}
.x9f_c00185{left:433.725000px;}
.x22_c00185{left:437.190000px;}
.xec_c00185{left:440.640000px;}
.x64_c00185{left:442.365000px;}
.x54_c00185{left:444.090000px;}
.xef_c00185{left:445.830000px;}
.x11b_c00185{left:447.555000px;}
.xba_c00185{left:449.280000px;}
.x122_c00185{left:451.875000px;}
.x95_c00185{left:453.600000px;}
.x110_c00185{left:455.325000px;}
.x5a_c00185{left:457.920000px;}
.x10c_c00185{left:459.645000px;}
.x7f_c00185{left:461.370000px;}
.xad_c00185{left:463.110000px;}
.x11f_c00185{left:464.835000px;}
.x65_c00185{left:467.430000px;}
.x6e_c00185{left:470.880000px;}
.xa6_c00185{left:472.605000px;}
.x10a_c00185{left:474.330000px;}
.x23_c00185{left:477.795000px;}
.x85_c00185{left:479.520000px;}
.x96_c00185{left:481.245000px;}
.x114_c00185{left:482.970000px;}
.x86_c00185{left:485.565000px;}
.x10d_c00185{left:487.290000px;}
.xbb_c00185{left:489.030000px;}
.x87_c00185{left:491.610000px;}
.xb3_c00185{left:493.350000px;}
.xf3_c00185{left:495.930000px;}
.xd6_c00185{left:497.670000px;}
.xbc_c00185{left:500.250000px;}
.x5b_c00185{left:502.845000px;}
.xc9_c00185{left:504.570000px;}
.x55_c00185{left:506.310000px;}
.x66_c00185{left:508.890000px;}
.xb4_c00185{left:512.355000px;}
.xca_c00185{left:514.080000px;}
.x80_c00185{left:516.675000px;}
.xd7_c00185{left:520.995000px;}
.xf0_c00185{left:526.170000px;}
.xa0_c00185{left:527.910000px;}
.x67_c00185{left:531.360000px;}
.x10_c00185{left:538.275000px;}
.xdf_c00185{left:540.870000px;}
.xd8_c00185{left:543.450000px;}
.x10e_c00185{left:546.915000px;}
.x98_c00185{left:548.640000px;}
.xe0_c00185{left:550.365000px;}
.x118_c00185{left:552.090000px;}
.x5c_c00185{left:553.830000px;}
.x1d_c00185{left:556.410000px;}
.xc4_c00185{left:558.150000px;}
.x6f_c00185{left:559.875000px;}
.x68_c00185{left:562.470000px;}
.x41_c00185{left:564.195000px;}
.x123_c00185{left:565.920000px;}
.x99_c00185{left:568.515000px;}
.xbd_c00185{left:571.110000px;}
.x11_c00185{left:573.690000px;}
.x70_c00185{left:577.155000px;}
.x10f_c00185{left:578.880000px;}
.xc5_c00185{left:580.605000px;}
.x102_c00185{left:583.200000px;}
.x19_c00185{left:584.925000px;}
.xae_c00185{left:586.650000px;}
.x8e_c00185{left:589.245000px;}
.x43_c00185{left:590.970000px;}
.x33_c00185{left:592.710000px;}
.x42_c00185{left:596.160000px;}
.x69_c00185{left:597.885000px;}
.x4f_c00185{left:600.480000px;}
.x34_c00185{left:607.395000px;}
.xa9_c00185{left:609.120000px;}
.xd9_c00185{left:611.715000px;}
.x12_c00185{left:613.440000px;}
.xa1_c00185{left:616.035000px;}
.x103_c00185{left:617.760000px;}
.xbe_c00185{left:620.355000px;}
.x24_c00185{left:622.950000px;}
.x71_c00185{left:624.675000px;}
.x9a_c00185{left:626.400000px;}
.x115_c00185{left:628.995000px;}
.x35_c00185{left:631.590000px;}
.xe1_c00185{left:638.490000px;}
.x78_c00185{left:642.810000px;}
.xda_c00185{left:644.550000px;}
.x25_c00185{left:646.275000px;}
.x8f_c00185{left:648.000000px;}
.xfb_c00185{left:652.320000px;}
.x13_c00185{left:654.915000px;}
.x36_c00185{left:657.510000px;}
.xf4_c00185{left:659.235000px;}
.xdb_c00185{left:661.830000px;}
.xed_c00185{left:664.410000px;}
.x26_c00185{left:666.150000px;}
.x27_c00185{left:674.790000px;}
.x37_c00185{left:677.370000px;}
.x14_c00185{left:679.110000px;}
.xf1_c00185{left:680.835000px;}
.xc6_c00185{left:685.155000px;}
.x79_c00185{left:686.880000px;}
.xbf_c00185{left:688.605000px;}
.x1a_c00185{left:691.200000px;}
.xb5_c00185{left:694.650000px;}
.x104_c00185{left:697.245000px;}
.x90_c00185{left:701.565000px;}
.xdc_c00185{left:703.290000px;}
.xeb_c00185{left:706.755000px;}
.x15_c00185{left:710.205000px;}
.xce_c00185{left:711.930000px;}
.x124_c00185{left:713.670000px;}
.x28_c00185{left:715.395000px;}
.x44_c00185{left:717.120000px;}
.x7a_c00185{left:718.845000px;}
.xfc_c00185{left:722.310000px;}
.x91_c00185{left:725.760000px;}
.x72_c00185{left:730.080000px;}
.x93_c00185{left:731.805000px;}
.xc7_c00185{left:733.530000px;}
.x29_c00185{left:736.125000px;}
.x81_c00185{left:740.445000px;}
.x50_c00185{left:743.040000px;}
.x16_c00185{left:745.635000px;}
.x7b_c00185{left:749.955000px;}
.x1e_c00185{left:754.275000px;}
.xe2_c00185{left:756.000000px;}
.x88_c00185{left:758.595000px;}
.x111_c00185{left:761.190000px;}
.xf5_c00185{left:764.640000px;}
.xe5_c00185{left:768.090000px;}
.xc0_c00185{left:769.830000px;}
.x45_c00185{left:772.410000px;}
.x1b_c00185{left:775.005000px;}
.x112_c00185{left:776.730000px;}
.x119_c00185{left:778.470000px;}
.xe6_c00185{left:780.195000px;}
.x17_c00185{left:782.790000px;}
.xd0_c00185{left:784.515000px;}
.xaa_c00185{left:786.240000px;}
.xc1_c00185{left:788.835000px;}
.x120_c00185{left:790.560000px;}
.xfd_c00185{left:793.155000px;}
.x116_c00185{left:794.880000px;}
.x73_c00185{left:796.605000px;}
.x46_c00185{left:800.070000px;}
.x11c_c00185{left:801.795000px;}
.x47_c00185{left:803.520000px;}
.xd1_c00185{left:806.115000px;}
.x82_c00185{left:807.840000px;}
.x9b_c00185{left:809.565000px;}
.x51_c00185{left:811.290000px;}
.xa7_c00185{left:815.610000px;}
.x18_c00185{left:817.350000px;}
.xee_c00185{left:819.075000px;}
.x56_c00185{left:820.800000px;}
.xfe_c00185{left:823.395000px;}
.xe3_c00185{left:825.120000px;}
.x1c_c00185{left:826.845000px;}
.x48_c00185{left:829.440000px;}
.x89_c00185{left:832.035000px;}
.xa2_c00185{left:833.760000px;}
.x7c_c00185{left:835.485000px;}
.x11a_c00185{left:838.080000px;}
.xc8_c00185{left:841.530000px;}
.x5d_c00185{left:843.270000px;}
.x6a_c00185{left:845.850000px;}
.xdd_c00185{left:851.040000px;}
.x108_c00185{left:856.230000px;}
.x8a_c00185{left:857.955000px;}
.x49_c00185{left:859.680000px;}
.xde_c00185{left:862.275000px;}
.x117_c00185{left:864.000000px;}
.xa3_c00185{left:866.595000px;}
.x105_c00185{left:869.190000px;}
.x6b_c00185{left:872.640000px;}
.x113_c00185{left:874.365000px;}
.xff_c00185{left:877.830000px;}
.x8b_c00185{left:889.050000px;}
.x2f_c00185{left:895.110000px;}
.x30_c00185{left:918.435000px;}
.x2c_c00185{left:933.990000px;}
.x2b_c00185{left:937.440000px;}
.x2d_c00185{left:944.355000px;}
.x31_c00185{left:946.080000px;}
.x32_c00185{left:959.040000px;}
.x2e_c00185{left:968.550000px;}
.xf_c00185{left:973.725000px;}
@media print{
.v2_c00185{vertical-align:-6.133333pt;}
.v0_c00185{vertical-align:0.000000pt;}
.v3_c00185{vertical-align:3.093333pt;}
.v1_c00185{vertical-align:6.186667pt;}
.ls5_c00185{letter-spacing:0.000000pt;}
.ls0_c00185{letter-spacing:38.112000pt;}
.ls3_c00185{letter-spacing:39.149067pt;}
.ls2_c00185{letter-spacing:108.639467pt;}
.ls4_c00185{letter-spacing:152.169547pt;}
.ls1_c00185{letter-spacing:180.208808pt;}
.ws0_c00185{word-spacing:-28.002453pt;}
.ws1_c00185{word-spacing:-6.746542pt;}
.ws2_c00185{word-spacing:0.000000pt;}
.fs16_c00185{font-size:3.072000pt;}
.fs1c_c00185{font-size:5.333333pt;}
.fs21_c00185{font-size:6.133333pt;}
.fs14_c00185{font-size:9.226667pt;}
.fsc_c00185{font-size:12.266667pt;}
.fs3_c00185{font-size:15.360000pt;}
.fs2_c00185{font-size:18.453333pt;}
.fs7_c00185{font-size:21.493333pt;}
.fs1_c00185{font-size:24.586667pt;}
.fs4_c00185{font-size:27.626667pt;}
.fs12_c00185{font-size:30.720000pt;}
.fs0_c00185{font-size:33.813333pt;}
.fse_c00185{font-size:36.853333pt;}
.fs10_c00185{font-size:39.946667pt;}
.fs5_c00185{font-size:42.986667pt;}
.fs8_c00185{font-size:46.080000pt;}
.fs9_c00185{font-size:49.173333pt;}
.fs23_c00185{font-size:52.213333pt;}
.fs22_c00185{font-size:55.306667pt;}
.fsb_c00185{font-size:58.346667pt;}
.fs11_c00185{font-size:61.440000pt;}
.fsf_c00185{font-size:64.533333pt;}
.fs17_c00185{font-size:67.573333pt;}
.fs24_c00185{font-size:70.666667pt;}
.fs6_c00185{font-size:73.706667pt;}
.fs15_c00185{font-size:76.800000pt;}
.fs1d_c00185{font-size:79.893333pt;}
.fsa_c00185{font-size:82.933333pt;}
.fs13_c00185{font-size:86.026667pt;}
.fs1e_c00185{font-size:92.160000pt;}
.fsd_c00185{font-size:95.253333pt;}
.fs1b_c00185{font-size:98.293333pt;}
.fs27_c00185{font-size:101.386667pt;}
.fs19_c00185{font-size:107.520000pt;}
.fs25_c00185{font-size:119.786667pt;}
.fs18_c00185{font-size:122.880000pt;}
.fs20_c00185{font-size:125.973333pt;}
.fs1a_c00185{font-size:129.013333pt;}
.fs1f_c00185{font-size:138.240000pt;}
.fs26_c00185{font-size:147.466667pt;}
.y0_c00185{bottom:0.000000pt;}
.y232_c00185{bottom:182.013333pt;}
.y22f_c00185{bottom:184.320000pt;}
.y230_c00185{bottom:185.093333pt;}
.y231_c00185{bottom:188.933333pt;}
.y22e_c00185{bottom:190.466667pt;}
.y22d_c00185{bottom:191.226667pt;}
.y22b_c00185{bottom:192.773333pt;}
.y22c_c00185{bottom:194.306667pt;}
.y229_c00185{bottom:196.613333pt;}
.y228_c00185{bottom:197.373333pt;}
.y22a_c00185{bottom:199.680000pt;}
.y226_c00185{bottom:200.453333pt;}
.y224_c00185{bottom:201.213333pt;}
.y227_c00185{bottom:201.986667pt;}
.y223_c00185{bottom:202.746667pt;}
.y222_c00185{bottom:208.133333pt;}
.y225_c00185{bottom:208.893333pt;}
.y220_c00185{bottom:211.973333pt;}
.y21f_c00185{bottom:214.266667pt;}
.y21e_c00185{bottom:215.040000pt;}
.y21d_c00185{bottom:216.573333pt;}
.y221_c00185{bottom:217.346667pt;}
.y21b_c00185{bottom:218.880000pt;}
.y21a_c00185{bottom:220.413333pt;}
.y21c_c00185{bottom:223.493333pt;}
.y219_c00185{bottom:225.026667pt;}
.y218_c00185{bottom:227.333333pt;}
.y217_c00185{bottom:228.093333pt;}
.y216_c00185{bottom:229.626667pt;}
.y214_c00185{bottom:230.400000pt;}
.y212_c00185{bottom:231.933333pt;}
.y213_c00185{bottom:232.706667pt;}
.y210_c00185{bottom:234.240000pt;}
.y20f_c00185{bottom:235.773333pt;}
.y215_c00185{bottom:238.080000pt;}
.y211_c00185{bottom:238.853333pt;}
.y20d_c00185{bottom:241.920000pt;}
.y20b_c00185{bottom:243.453333pt;}
.y20e_c00185{bottom:244.226667pt;}
.y209_c00185{bottom:247.293333pt;}
.y20a_c00185{bottom:248.066667pt;}
.y208_c00185{bottom:248.826667pt;}
.y20c_c00185{bottom:249.600000pt;}
.y206_c00185{bottom:250.373333pt;}
.y205_c00185{bottom:251.133333pt;}
.y204_c00185{bottom:251.906667pt;}
.y207_c00185{bottom:252.666667pt;}
.y201_c00185{bottom:253.440000pt;}
.y203_c00185{bottom:255.746667pt;}
.y200_c00185{bottom:258.813333pt;}
.y202_c00185{bottom:259.586667pt;}
.y1fe_c00185{bottom:261.120000pt;}
.y1fd_c00185{bottom:261.893333pt;}
.y1ff_c00185{bottom:262.653333pt;}
.y1fc_c00185{bottom:264.960000pt;}
.y1f9_c00185{bottom:265.733333pt;}
.y1fb_c00185{bottom:267.266667pt;}
.y1f7_c00185{bottom:268.026667pt;}
.y1fa_c00185{bottom:268.800000pt;}
.y1f6_c00185{bottom:269.573333pt;}
.y1f8_c00185{bottom:271.106667pt;}
.y1f5_c00185{bottom:274.173333pt;}
.y1f3_c00185{bottom:275.706667pt;}
.y1f1_c00185{bottom:278.013333pt;}
.y1f0_c00185{bottom:278.786667pt;}
.y1f2_c00185{bottom:279.546667pt;}
.y1f4_c00185{bottom:281.093333pt;}
.y1ee_c00185{bottom:281.853333pt;}
.y1ef_c00185{bottom:282.626667pt;}
.y1ed_c00185{bottom:283.386667pt;}
.y1ec_c00185{bottom:284.160000pt;}
.y1ea_c00185{bottom:286.466667pt;}
.y1e8_c00185{bottom:287.226667pt;}
.y1e9_c00185{bottom:288.000000pt;}
.y1e7_c00185{bottom:288.773333pt;}
.y1e6_c00185{bottom:290.306667pt;}
.y1eb_c00185{bottom:291.066667pt;}
.y1e5_c00185{bottom:292.613333pt;}
.y1e2_c00185{bottom:294.146667pt;}
.y1e1_c00185{bottom:294.906667pt;}
.y1e3_c00185{bottom:295.680000pt;}
.y1e0_c00185{bottom:296.453333pt;}
.y1df_c00185{bottom:298.746667pt;}
.y1e4_c00185{bottom:301.053333pt;}
.y1dd_c00185{bottom:301.826667pt;}
.y1de_c00185{bottom:304.133333pt;}
.y1db_c00185{bottom:305.666667pt;}
.y1dc_c00185{bottom:306.426667pt;}
.y1d9_c00185{bottom:307.200000pt;}
.y1da_c00185{bottom:307.973333pt;}
.y1d6_c00185{bottom:308.733333pt;}
.y1d8_c00185{bottom:310.266667pt;}
.y1d4_c00185{bottom:311.040000pt;}
.y1d7_c00185{bottom:312.573333pt;}
.y1d2_c00185{bottom:315.653333pt;}
.y1d5_c00185{bottom:317.946667pt;}
.y1d3_c00185{bottom:319.493333pt;}
.y1d0_c00185{bottom:321.026667pt;}
.y1cf_c00185{bottom:321.786667pt;}
.y1cc_c00185{bottom:322.560000pt;}
.y1d1_c00185{bottom:324.093333pt;}
.y1ce_c00185{bottom:324.866667pt;}
.y1c8_c00185{bottom:325.626667pt;}
.y1ca_c00185{bottom:326.400000pt;}
.y1c7_c00185{bottom:327.173333pt;}
.y1cb_c00185{bottom:327.933333pt;}
.y1cd_c00185{bottom:328.706667pt;}
.y1c9_c00185{bottom:329.466667pt;}
.y1c6_c00185{bottom:331.013333pt;}
.y1c5_c00185{bottom:331.773333pt;}
.y1c4_c00185{bottom:335.613333pt;}
.y1c0_c00185{bottom:336.386667pt;}
.y1c2_c00185{bottom:337.146667pt;}
.y1bc_c00185{bottom:338.693333pt;}
.y1c1_c00185{bottom:339.453333pt;}
.y1c3_c00185{bottom:340.226667pt;}
.y1bf_c00185{bottom:340.986667pt;}
.y1bd_c00185{bottom:341.760000pt;}
.y1be_c00185{bottom:342.533333pt;}
.y1bb_c00185{bottom:343.293333pt;}
.y1ba_c00185{bottom:346.373333pt;}
.y1b8_c00185{bottom:347.133333pt;}
.y1b9_c00185{bottom:347.906667pt;}
.y1b3_c00185{bottom:348.666667pt;}
.y1b7_c00185{bottom:349.440000pt;}
.y1b6_c00185{bottom:350.213333pt;}
.y1b4_c00185{bottom:350.973333pt;}
.y1b5_c00185{bottom:353.280000pt;}
.y1b0_c00185{bottom:354.053333pt;}
.y1ad_c00185{bottom:354.813333pt;}
.y1ab_c00185{bottom:356.346667pt;}
.y1b2_c00185{bottom:357.120000pt;}
.y1a9_c00185{bottom:357.893333pt;}
.y1aa_c00185{bottom:358.653333pt;}
.y1ae_c00185{bottom:359.426667pt;}
.y1b1_c00185{bottom:360.186667pt;}
.y1ac_c00185{bottom:360.960000pt;}
.y1a8_c00185{bottom:363.266667pt;}
.y1a7_c00185{bottom:365.573333pt;}
.y1a5_c00185{bottom:367.866667pt;}
.y1af_c00185{bottom:368.640000pt;}
.y1a6_c00185{bottom:369.413333pt;}
.y1a2_c00185{bottom:370.946667pt;}
.y1a4_c00185{bottom:372.480000pt;}
.y1a3_c00185{bottom:374.013333pt;}
.y1a0_c00185{bottom:374.786667pt;}
.y1a1_c00185{bottom:377.093333pt;}
.y19e_c00185{bottom:378.626667pt;}
.y19c_c00185{bottom:379.386667pt;}
.y19f_c00185{bottom:380.160000pt;}
.y19b_c00185{bottom:380.933333pt;}
.y19d_c00185{bottom:384.000000pt;}
.y19a_c00185{bottom:384.773333pt;}
.y199_c00185{bottom:385.533333pt;}
.y197_c00185{bottom:388.613333pt;}
.y198_c00185{bottom:389.373333pt;}
.y193_c00185{bottom:390.906667pt;}
.y196_c00185{bottom:391.680000pt;}
.y195_c00185{bottom:392.453333pt;}
.y194_c00185{bottom:393.213333pt;}
.y192_c00185{bottom:395.520000pt;}
.y18f_c00185{bottom:396.293333pt;}
.y18d_c00185{bottom:397.826667pt;}
.y190_c00185{bottom:398.586667pt;}
.y18b_c00185{bottom:400.133333pt;}
.y18a_c00185{bottom:400.893333pt;}
.y191_c00185{bottom:401.666667pt;}
.y18c_c00185{bottom:402.426667pt;}
.y189_c00185{bottom:403.973333pt;}
.y18e_c00185{bottom:405.506667pt;}
.y188_c00185{bottom:406.266667pt;}
.y186_c00185{bottom:407.040000pt;}
.y187_c00185{bottom:409.346667pt;}
.y184_c00185{bottom:414.720000pt;}
.y182_c00185{bottom:415.493333pt;}
.y183_c00185{bottom:417.026667pt;}
.y185_c00185{bottom:417.786667pt;}
.y181_c00185{bottom:418.560000pt;}
.y17c_c00185{bottom:419.333333pt;}
.y180_c00185{bottom:420.093333pt;}
.y17e_c00185{bottom:422.400000pt;}
.y17a_c00185{bottom:423.173333pt;}
.y17b_c00185{bottom:425.466667pt;}
.y17d_c00185{bottom:427.013333pt;}
.y178_c00185{bottom:427.773333pt;}
.y179_c00185{bottom:428.546667pt;}
.y177_c00185{bottom:430.080000pt;}
.y175_c00185{bottom:430.853333pt;}
.y176_c00185{bottom:433.146667pt;}
.y17f_c00185{bottom:433.920000pt;}
.y174_c00185{bottom:434.693333pt;}
.y172_c00185{bottom:437.760000pt;}
.y173_c00185{bottom:439.293333pt;}
.y16f_c00185{bottom:440.066667pt;}
.y171_c00185{bottom:440.826667pt;}
.y170_c00185{bottom:442.373333pt;}
.y16e_c00185{bottom:443.133333pt;}
.y16c_c00185{bottom:445.440000pt;}
.y16a_c00185{bottom:446.973333pt;}
.y16d_c00185{bottom:447.746667pt;}
.y16b_c00185{bottom:448.506667pt;}
.y169_c00185{bottom:450.813333pt;}
.y167_c00185{bottom:452.346667pt;}
.y166_c00185{bottom:453.120000pt;}
.y165_c00185{bottom:453.893333pt;}
.y164_c00185{bottom:454.653333pt;}
.y160_c00185{bottom:455.426667pt;}
.y168_c00185{bottom:456.186667pt;}
.y161_c00185{bottom:457.733333pt;}
.y162_c00185{bottom:460.800000pt;}
.y25_c00185{bottom:463.866667pt;}
.y15f_c00185{bottom:464.640000pt;}
.y15d_c00185{bottom:465.413333pt;}
.y163_c00185{bottom:466.173333pt;}
.y15e_c00185{bottom:466.946667pt;}
.y15c_c00185{bottom:467.706667pt;}
.y159_c00185{bottom:468.480000pt;}
.y15a_c00185{bottom:469.253333pt;}
.y156_c00185{bottom:470.013333pt;}
.y157_c00185{bottom:470.786667pt;}
.y158_c00185{bottom:471.546667pt;}
.y24_c00185{bottom:473.853333pt;}
.y15b_c00185{bottom:477.693333pt;}
.y151_c00185{bottom:480.773333pt;}
.y150_c00185{bottom:482.306667pt;}
.y14d_c00185{bottom:483.840000pt;}
.y154_c00185{bottom:484.613333pt;}
.y14e_c00185{bottom:485.373333pt;}
.y155_c00185{bottom:486.146667pt;}
.y152_c00185{bottom:486.906667pt;}
.y153_c00185{bottom:487.680000pt;}
.y14f_c00185{bottom:488.453333pt;}
.y14c_c00185{bottom:489.986667pt;}
.y14b_c00185{bottom:492.293333pt;}
.y149_c00185{bottom:494.586667pt;}
.y146_c00185{bottom:499.200000pt;}
.y148_c00185{bottom:499.973333pt;}
.y14a_c00185{bottom:502.266667pt;}
.y145_c00185{bottom:503.040000pt;}
.y144_c00185{bottom:503.813333pt;}
.y147_c00185{bottom:505.346667pt;}
.y140_c00185{bottom:512.253333pt;}
.y143_c00185{bottom:513.026667pt;}
.y13f_c00185{bottom:513.786667pt;}
.y13e_c00185{bottom:514.560000pt;}
.y142_c00185{bottom:516.866667pt;}
.y13c_c00185{bottom:517.626667pt;}
.y13b_c00185{bottom:518.400000pt;}
.y13d_c00185{bottom:519.173333pt;}
.y141_c00185{bottom:519.933333pt;}
.y13a_c00185{bottom:528.386667pt;}
.y139_c00185{bottom:531.453333pt;}
.y138_c00185{bottom:532.226667pt;}
.y136_c00185{bottom:532.986667pt;}
.y134_c00185{bottom:533.760000pt;}
.y135_c00185{bottom:534.533333pt;}
.y131_c00185{bottom:535.293333pt;}
.y133_c00185{bottom:536.066667pt;}
.y137_c00185{bottom:541.440000pt;}
.y130_c00185{bottom:545.280000pt;}
.y12f_c00185{bottom:549.120000pt;}
.y132_c00185{bottom:549.893333pt;}
.y12d_c00185{bottom:552.960000pt;}
.y129_c00185{bottom:557.573333pt;}
.y12c_c00185{bottom:558.333333pt;}
.y128_c00185{bottom:559.106667pt;}
.y12e_c00185{bottom:559.866667pt;}
.y126_c00185{bottom:561.413333pt;}
.y127_c00185{bottom:562.173333pt;}
.y125_c00185{bottom:562.946667pt;}
.y12b_c00185{bottom:565.253333pt;}
.y12a_c00185{bottom:569.853333pt;}
.y124_c00185{bottom:570.626667pt;}
.y11f_c00185{bottom:571.386667pt;}
.y11d_c00185{bottom:572.933333pt;}
.y123_c00185{bottom:573.693333pt;}
.y11c_c00185{bottom:574.466667pt;}
.y122_c00185{bottom:576.000000pt;}
.y11b_c00185{bottom:576.773333pt;}
.y119_c00185{bottom:577.533333pt;}
.y120_c00185{bottom:578.306667pt;}
.y11e_c00185{bottom:579.066667pt;}
.y11a_c00185{bottom:580.613333pt;}
.y121_c00185{bottom:583.680000pt;}
.y114_c00185{bottom:588.293333pt;}
.y45_c00185{bottom:589.053333pt;}
.y116_c00185{bottom:589.826667pt;}
.y118_c00185{bottom:593.666667pt;}
.y112_c00185{bottom:594.426667pt;}
.y115_c00185{bottom:595.200000pt;}
.y117_c00185{bottom:596.733333pt;}
.y113_c00185{bottom:599.040000pt;}
.y110_c00185{bottom:600.573333pt;}
.y111_c00185{bottom:609.026667pt;}
.y10e_c00185{bottom:609.786667pt;}
.y10f_c00185{bottom:610.560000pt;}
.y10a_c00185{bottom:612.093333pt;}
.y108_c00185{bottom:612.866667pt;}
.y10d_c00185{bottom:613.626667pt;}
.y10c_c00185{bottom:614.400000pt;}
.y10b_c00185{bottom:615.173333pt;}
.y109_c00185{bottom:615.933333pt;}
.y105_c00185{bottom:622.853333pt;}
.y107_c00185{bottom:625.920000pt;}
.y106_c00185{bottom:627.453333pt;}
.y104_c00185{bottom:628.226667pt;}
.y102_c00185{bottom:628.986667pt;}
.y103_c00185{bottom:632.066667pt;}
.yff_c00185{bottom:638.213333pt;}
.yfe_c00185{bottom:638.973333pt;}
.yfd_c00185{bottom:639.746667pt;}
.yfa_c00185{bottom:642.053333pt;}
.yfc_c00185{bottom:642.813333pt;}
.yfb_c00185{bottom:644.346667pt;}
.yf9_c00185{bottom:645.120000pt;}
.y101_c00185{bottom:647.426667pt;}
.y100_c00185{bottom:655.866667pt;}
.yf8_c00185{bottom:665.853333pt;}
.yf5_c00185{bottom:666.626667pt;}
.yf7_c00185{bottom:667.386667pt;}
.yf6_c00185{bottom:668.160000pt;}
.yf3_c00185{bottom:668.933333pt;}
.yf2_c00185{bottom:669.693333pt;}
.yf4_c00185{bottom:671.226667pt;}
.yf1_c00185{bottom:672.000000pt;}
.yf0_c00185{bottom:680.453333pt;}
.yee_c00185{bottom:682.746667pt;}
.yed_c00185{bottom:683.520000pt;}
.yec_c00185{bottom:684.293333pt;}
.yef_c00185{bottom:685.053333pt;}
.yea_c00185{bottom:686.586667pt;}
.ye9_c00185{bottom:687.360000pt;}
.yeb_c00185{bottom:688.133333pt;}
.ye8_c00185{bottom:688.893333pt;}
.ye7_c00185{bottom:689.666667pt;}
.ye3_c00185{bottom:696.573333pt;}
.ye1_c00185{bottom:697.346667pt;}
.ye6_c00185{bottom:698.106667pt;}
.ye5_c00185{bottom:698.880000pt;}
.ye4_c00185{bottom:699.653333pt;}
.ye2_c00185{bottom:701.186667pt;}
.ye0_c00185{bottom:701.946667pt;}
.y23_c00185{bottom:702.720000pt;}
.ydf_c00185{bottom:709.626667pt;}
.ydd_c00185{bottom:711.173333pt;}
.yde_c00185{bottom:714.240000pt;}
.ydc_c00185{bottom:715.013333pt;}
.ydb_c00185{bottom:715.773333pt;}
.yda_c00185{bottom:716.546667pt;}
.yd8_c00185{bottom:717.306667pt;}
.yd9_c00185{bottom:718.080000pt;}
.y22_c00185{bottom:722.693333pt;}
.yd7_c00185{bottom:725.760000pt;}
.yd6_c00185{bottom:726.533333pt;}
.yd4_c00185{bottom:728.066667pt;}
.yd5_c00185{bottom:731.133333pt;}
.yd3_c00185{bottom:731.906667pt;}
.yd2_c00185{bottom:736.506667pt;}
.y21_c00185{bottom:737.280000pt;}
.yd0_c00185{bottom:738.053333pt;}
.yd1_c00185{bottom:740.346667pt;}
.ycd_c00185{bottom:741.893333pt;}
.ycf_c00185{bottom:743.426667pt;}
.yce_c00185{bottom:744.186667pt;}
.ycc_c00185{bottom:744.960000pt;}
.ycb_c00185{bottom:745.733333pt;}
.yca_c00185{bottom:747.266667pt;}
.yc9_c00185{bottom:751.106667pt;}
.yc8_c00185{bottom:754.173333pt;}
.yc4_c00185{bottom:754.946667pt;}
.yc7_c00185{bottom:755.706667pt;}
.yc5_c00185{bottom:757.253333pt;}
.yc6_c00185{bottom:758.786667pt;}
.yc1_c00185{bottom:759.546667pt;}
.yc3_c00185{bottom:760.320000pt;}
.yc2_c00185{bottom:761.093333pt;}
.y20_c00185{bottom:771.066667pt;}
.yc0_c00185{bottom:771.840000pt;}
.ybf_c00185{bottom:772.613333pt;}
.ybc_c00185{bottom:773.373333pt;}
.ybe_c00185{bottom:774.146667pt;}
.yb8_c00185{bottom:774.906667pt;}
.ybb_c00185{bottom:775.680000pt;}
.ybd_c00185{bottom:776.453333pt;}
.yba_c00185{bottom:777.986667pt;}
.yb9_c00185{bottom:778.746667pt;}
.y1e_c00185{bottom:781.826667pt;}
.yb7_c00185{bottom:786.426667pt;}
.yb5_c00185{bottom:787.973333pt;}
.yb1_c00185{bottom:788.733333pt;}
.yb3_c00185{bottom:789.506667pt;}
.yb2_c00185{bottom:790.266667pt;}
.yaf_c00185{bottom:791.813333pt;}
.yb4_c00185{bottom:794.106667pt;}
.yb6_c00185{bottom:794.880000pt;}
.yad_c00185{bottom:796.413333pt;}
.yb0_c00185{bottom:797.186667pt;}
.yae_c00185{bottom:798.720000pt;}
.y1f_c00185{bottom:799.493333pt;}
.yac_c00185{bottom:804.093333pt;}
.y1d_c00185{bottom:804.866667pt;}
.yab_c00185{bottom:809.466667pt;}
.ya9_c00185{bottom:810.240000pt;}
.ya7_c00185{bottom:811.013333pt;}
.yaa_c00185{bottom:811.773333pt;}
.ya8_c00185{bottom:814.080000pt;}
.ya6_c00185{bottom:820.226667pt;}
.ya4_c00185{bottom:821.760000pt;}
.ya5_c00185{bottom:822.533333pt;}
.ya3_c00185{bottom:823.293333pt;}
.ya2_c00185{bottom:824.066667pt;}
.ya1_c00185{bottom:824.826667pt;}
.ya0_c00185{bottom:826.373333pt;}
.y9e_c00185{bottom:827.133333pt;}
.y9f_c00185{bottom:830.213333pt;}
.y9c_c00185{bottom:833.280000pt;}
.y9b_c00185{bottom:834.053333pt;}
.y99_c00185{bottom:837.120000pt;}
.y1b_c00185{bottom:837.893333pt;}
.y9a_c00185{bottom:838.653333pt;}
.y9d_c00185{bottom:840.186667pt;}
.y98_c00185{bottom:840.960000pt;}
.y94_c00185{bottom:841.733333pt;}
.y1c_c00185{bottom:843.266667pt;}
.y97_c00185{bottom:844.026667pt;}
.y95_c00185{bottom:844.800000pt;}
.y96_c00185{bottom:846.333333pt;}
.y93_c00185{bottom:847.866667pt;}
.y92_c00185{bottom:850.173333pt;}
.y91_c00185{bottom:850.946667pt;}
.y8f_c00185{bottom:852.480000pt;}
.y8e_c00185{bottom:854.013333pt;}
.y8d_c00185{bottom:854.786667pt;}
.y90_c00185{bottom:855.546667pt;}
.y8a_c00185{bottom:859.386667pt;}
.y8c_c00185{bottom:860.160000pt;}
.y8b_c00185{bottom:860.933333pt;}
.y1a_c00185{bottom:861.693333pt;}
.y88_c00185{bottom:867.840000pt;}
.y89_c00185{bottom:868.613333pt;}
.y86_c00185{bottom:870.146667pt;}
.y87_c00185{bottom:870.906667pt;}
.y19_c00185{bottom:871.680000pt;}
.y85_c00185{bottom:872.453333pt;}
.y83_c00185{bottom:875.520000pt;}
.y84_c00185{bottom:877.053333pt;}
.y18_c00185{bottom:877.826667pt;}
.y7f_c00185{bottom:884.733333pt;}
.y7e_c00185{bottom:885.506667pt;}
.y7d_c00185{bottom:886.266667pt;}
.y80_c00185{bottom:887.040000pt;}
.y7c_c00185{bottom:887.813333pt;}
.y7a_c00185{bottom:888.573333pt;}
.y79_c00185{bottom:889.346667pt;}
.y82_c00185{bottom:891.653333pt;}
.y7b_c00185{bottom:892.413333pt;}
.y77_c00185{bottom:896.253333pt;}
.y81_c00185{bottom:897.026667pt;}
.y75_c00185{bottom:897.786667pt;}
.y74_c00185{bottom:899.333333pt;}
.y73_c00185{bottom:900.093333pt;}
.y76_c00185{bottom:900.866667pt;}
.y71_c00185{bottom:902.400000pt;}
.y6e_c00185{bottom:903.173333pt;}
.y6c_c00185{bottom:903.933333pt;}
.y6d_c00185{bottom:904.706667pt;}
.y72_c00185{bottom:905.466667pt;}
.y69_c00185{bottom:906.240000pt;}
.y78_c00185{bottom:907.013333pt;}
.y6b_c00185{bottom:908.546667pt;}
.y16_c00185{bottom:911.613333pt;}
.y70_c00185{bottom:912.386667pt;}
.y6a_c00185{bottom:913.920000pt;}
.y68_c00185{bottom:914.693333pt;}
.y6f_c00185{bottom:915.453333pt;}
.y66_c00185{bottom:916.226667pt;}
.y64_c00185{bottom:916.986667pt;}
.y65_c00185{bottom:917.760000pt;}
.y67_c00185{bottom:919.293333pt;}
.y62_c00185{bottom:920.066667pt;}
.y61_c00185{bottom:920.826667pt;}
.y63_c00185{bottom:921.600000pt;}
.y17_c00185{bottom:922.373333pt;}
.y60_c00185{bottom:932.346667pt;}
.y5f_c00185{bottom:934.653333pt;}
.y5e_c00185{bottom:936.186667pt;}
.y5c_c00185{bottom:939.266667pt;}
.y5d_c00185{bottom:943.106667pt;}
.y5b_c00185{bottom:946.946667pt;}
.y59_c00185{bottom:947.706667pt;}
.y58_c00185{bottom:948.480000pt;}
.y5a_c00185{bottom:949.253333pt;}
.y15_c00185{bottom:950.013333pt;}
.y56_c00185{bottom:950.786667pt;}
.y57_c00185{bottom:953.853333pt;}
.y13_c00185{bottom:954.626667pt;}
.y55_c00185{bottom:955.386667pt;}
.y14_c00185{bottom:956.933333pt;}
.y51_c00185{bottom:961.533333pt;}
.y54_c00185{bottom:963.066667pt;}
.y53_c00185{bottom:964.613333pt;}
.y4d_c00185{bottom:966.146667pt;}
.y4e_c00185{bottom:966.906667pt;}
.y12_c00185{bottom:968.453333pt;}
.y50_c00185{bottom:969.986667pt;}
.y4f_c00185{bottom:971.520000pt;}
.y52_c00185{bottom:973.053333pt;}
.y4b_c00185{bottom:976.133333pt;}
.y4c_c00185{bottom:976.893333pt;}
.y4a_c00185{bottom:977.666667pt;}
.y11_c00185{bottom:982.266667pt;}
.y49_c00185{bottom:984.573333pt;}
.y48_c00185{bottom:986.106667pt;}
.y47_c00185{bottom:986.880000pt;}
.y10_c00185{bottom:1006.080000pt;}
.y41_c00185{bottom:1009.146667pt;}
.y46_c00185{bottom:1011.453333pt;}
.yf_c00185{bottom:1012.226667pt;}
.y3f_c00185{bottom:1014.533333pt;}
.y40_c00185{bottom:1015.293333pt;}
.y39_c00185{bottom:1019.906667pt;}
.y44_c00185{bottom:1020.666667pt;}
.y43_c00185{bottom:1021.440000pt;}
.y42_c00185{bottom:1022.213333pt;}
.y3e_c00185{bottom:1023.746667pt;}
.ye_c00185{bottom:1026.813333pt;}
.yd_c00185{bottom:1033.733333pt;}
.y35_c00185{bottom:1042.173333pt;}
.y34_c00185{bottom:1045.253333pt;}
.y38_c00185{bottom:1046.786667pt;}
.y3d_c00185{bottom:1049.093333pt;}
.yc_c00185{bottom:1051.386667pt;}
.y33_c00185{bottom:1052.160000pt;}
.y32_c00185{bottom:1057.533333pt;}
.y31_c00185{bottom:1058.306667pt;}
.ya_c00185{bottom:1064.453333pt;}
.y37_c00185{bottom:1065.986667pt;}
.yb_c00185{bottom:1067.520000pt;}
.y3c_c00185{bottom:1069.826667pt;}
.y36_c00185{bottom:1072.133333pt;}
.y8_c00185{bottom:1073.666667pt;}
.y9_c00185{bottom:1079.813333pt;}
.y30_c00185{bottom:1082.106667pt;}
.y2f_c00185{bottom:1083.653333pt;}
.y2d_c00185{bottom:1084.413333pt;}
.y2e_c00185{bottom:1085.186667pt;}
.y2c_c00185{bottom:1085.946667pt;}
.y3b_c00185{bottom:1086.720000pt;}
.y2b_c00185{bottom:1087.493333pt;}
.y2a_c00185{bottom:1088.253333pt;}
.y29_c00185{bottom:1089.026667pt;}
.y28_c00185{bottom:1089.786667pt;}
.y27_c00185{bottom:1090.560000pt;}
.y3a_c00185{bottom:1108.986667pt;}
.y7_c00185{bottom:1130.493333pt;}
.y6_c00185{bottom:1150.466667pt;}
.y5_c00185{bottom:1175.040000pt;}
.y4_c00185{bottom:1178.880000pt;}
.y26_c00185{bottom:1201.920000pt;}
.y3_c00185{bottom:1216.506667pt;}
.y2_c00185{bottom:1218.813333pt;}
.y1_c00185{bottom:1228.026667pt;}
.h18_c00185{height:2.764500pt;}
.h1e_c00185{height:4.799479pt;}
.h23_c00185{height:5.519401pt;}
.h16_c00185{height:8.303099pt;}
.he_c00185{height:11.038802pt;}
.h26_c00185{height:11.706068pt;}
.h5_c00185{height:13.822500pt;}
.h4_c00185{height:16.606198pt;}
.h9_c00185{height:19.341901pt;}
.h3_c00185{height:22.125599pt;}
.h6_c00185{height:24.861302pt;}
.h14_c00185{height:27.645000pt;}
.h2_c00185{height:30.428698pt;}
.h10_c00185{height:33.164401pt;}
.h12_c00185{height:35.948099pt;}
.h7_c00185{height:38.683802pt;}
.ha_c00185{height:41.467500pt;}
.hb_c00185{height:44.251198pt;}
.h25_c00185{height:46.986901pt;}
.h24_c00185{height:49.770599pt;}
.hd_c00185{height:52.506302pt;}
.h13_c00185{height:55.290000pt;}
.h11_c00185{height:58.073698pt;}
.h19_c00185{height:60.809401pt;}
.h27_c00185{height:63.593099pt;}
.h8_c00185{height:66.328802pt;}
.h17_c00185{height:69.112500pt;}
.h1f_c00185{height:71.896198pt;}
.hc_c00185{height:74.631901pt;}
.h15_c00185{height:77.415599pt;}
.h20_c00185{height:82.935000pt;}
.hf_c00185{height:85.718698pt;}
.h1d_c00185{height:88.454401pt;}
.h2a_c00185{height:91.238099pt;}
.h1b_c00185{height:96.757500pt;}
.h28_c00185{height:107.796302pt;}
.h1a_c00185{height:110.580000pt;}
.h22_c00185{height:113.363698pt;}
.h1c_c00185{height:116.099401pt;}
.h21_c00185{height:124.402500pt;}
.h29_c00185{height:132.705599pt;}
.h1_c00185{height:1336.000000pt;}
.h0_c00185{height:1336.320000pt;}
.w0_c00185{width:969.213333pt;}
.w1_c00185{width:969.333333pt;}
.x0_c00185{left:0.000000pt;}
.x1_c00185{left:1.533333pt;}
.x9_c00185{left:3.840000pt;}
.xc_c00185{left:8.453333pt;}
.x2_c00185{left:10.746667pt;}
.x3_c00185{left:20.733333pt;}
.x5_c00185{left:22.266667pt;}
.x6_c00185{left:24.573333pt;}
.xb_c00185{left:33.026667pt;}
.x7_c00185{left:35.333333pt;}
.xa_c00185{left:43.773333pt;}
.x8_c00185{left:53.760000pt;}
.x4_c00185{left:115.200000pt;}
.xd_c00185{left:129.786667pt;}
.xe_c00185{left:144.386667pt;}
.x38_c00185{left:145.920000pt;}
.x125_c00185{left:159.746667pt;}
.xb6_c00185{left:180.480000pt;}
.xe7_c00185{left:182.013333pt;}
.xaf_c00185{left:183.546667pt;}
.x74_c00185{left:188.160000pt;}
.x106_c00185{left:191.226667pt;}
.x101_c00185{left:192.773333pt;}
.xb0_c00185{left:197.373333pt;}
.xc2_c00185{left:198.906667pt;}
.xf2_c00185{left:201.213333pt;}
.x83_c00185{left:203.520000pt;}
.xa4_c00185{left:205.053333pt;}
.x57_c00185{left:207.360000pt;}
.x4a_c00185{left:208.893333pt;}
.xb7_c00185{left:214.266667pt;}
.xe4_c00185{left:218.880000pt;}
.xd3_c00185{left:220.413333pt;}
.x5e_c00185{left:221.946667pt;}
.xe8_c00185{left:223.493333pt;}
.xb8_c00185{left:225.786667pt;}
.xa8_c00185{left:227.333333pt;}
.x4b_c00185{left:228.866667pt;}
.x58_c00185{left:231.173333pt;}
.x52_c00185{left:232.706667pt;}
.xcb_c00185{left:234.240000pt;}
.xcf_c00185{left:235.773333pt;}
.x11d_c00185{left:243.453333pt;}
.xb1_c00185{left:247.293333pt;}
.xd2_c00185{left:251.133333pt;}
.xf6_c00185{left:253.440000pt;}
.xe9_c00185{left:255.746667pt;}
.x75_c00185{left:258.053333pt;}
.xa5_c00185{left:261.120000pt;}
.x5f_c00185{left:263.426667pt;}
.xd4_c00185{left:264.960000pt;}
.x7d_c00185{left:268.800000pt;}
.x6c_c00185{left:270.333333pt;}
.xb9_c00185{left:272.640000pt;}
.xab_c00185{left:274.173333pt;}
.x84_c00185{left:275.706667pt;}
.xcc_c00185{left:278.013333pt;}
.x3b_c00185{left:281.853333pt;}
.x4c_c00185{left:283.386667pt;}
.xf7_c00185{left:285.693333pt;}
.x8c_c00185{left:287.226667pt;}
.x60_c00185{left:291.840000pt;}
.x109_c00185{left:293.373333pt;}
.x3c_c00185{left:297.213333pt;}
.xf8_c00185{left:299.520000pt;}
.x1f_c00185{left:301.053333pt;}
.x76_c00185{left:302.586667pt;}
.x59_c00185{left:304.133333pt;}
.x10b_c00185{left:307.200000pt;}
.x7e_c00185{left:308.733333pt;}
.x3d_c00185{left:311.813333pt;}
.x11e_c00185{left:313.346667pt;}
.xac_c00185{left:314.880000pt;}
.x53_c00185{left:316.413333pt;}
.xcd_c00185{left:319.493333pt;}
.xf9_c00185{left:321.786667pt;}
.x94_c00185{left:324.093333pt;}
.x20_c00185{left:327.173333pt;}
.x9c_c00185{left:328.706667pt;}
.x61_c00185{left:330.240000pt;}
.x3e_c00185{left:331.773333pt;}
.x121_c00185{left:333.306667pt;}
.x92_c00185{left:336.386667pt;}
.x2a_c00185{left:337.920000pt;}
.xfa_c00185{left:339.453333pt;}
.x9d_c00185{left:340.986667pt;}
.xd5_c00185{left:342.533333pt;}
.x97_c00185{left:344.066667pt;}
.x3f_c00185{left:345.600000pt;}
.xc3_c00185{left:347.133333pt;}
.x77_c00185{left:350.213333pt;}
.x62_c00185{left:353.280000pt;}
.x8d_c00185{left:354.813333pt;}
.x21_c00185{left:357.893333pt;}
.x107_c00185{left:359.426667pt;}
.x4d_c00185{left:361.733333pt;}
.x39_c00185{left:364.800000pt;}
.x63_c00185{left:367.866667pt;}
.x9e_c00185{left:369.413333pt;}
.xb2_c00185{left:370.946667pt;}
.x40_c00185{left:374.013333pt;}
.x4e_c00185{left:376.320000pt;}
.x3a_c00185{left:377.853333pt;}
.x6d_c00185{left:380.933333pt;}
.xea_c00185{left:382.466667pt;}
.x100_c00185{left:384.000000pt;}
.x9f_c00185{left:385.533333pt;}
.x22_c00185{left:388.613333pt;}
.xec_c00185{left:391.680000pt;}
.x64_c00185{left:393.213333pt;}
.x54_c00185{left:394.746667pt;}
.xef_c00185{left:396.293333pt;}
.x11b_c00185{left:397.826667pt;}
.xba_c00185{left:399.360000pt;}
.x122_c00185{left:401.666667pt;}
.x95_c00185{left:403.200000pt;}
.x110_c00185{left:404.733333pt;}
.x5a_c00185{left:407.040000pt;}
.x10c_c00185{left:408.573333pt;}
.x7f_c00185{left:410.106667pt;}
.xad_c00185{left:411.653333pt;}
.x11f_c00185{left:413.186667pt;}
.x65_c00185{left:415.493333pt;}
.x6e_c00185{left:418.560000pt;}
.xa6_c00185{left:420.093333pt;}
.x10a_c00185{left:421.626667pt;}
.x23_c00185{left:424.706667pt;}
.x85_c00185{left:426.240000pt;}
.x96_c00185{left:427.773333pt;}
.x114_c00185{left:429.306667pt;}
.x86_c00185{left:431.613333pt;}
.x10d_c00185{left:433.146667pt;}
.xbb_c00185{left:434.693333pt;}
.x87_c00185{left:436.986667pt;}
.xb3_c00185{left:438.533333pt;}
.xf3_c00185{left:440.826667pt;}
.xd6_c00185{left:442.373333pt;}
.xbc_c00185{left:444.666667pt;}
.x5b_c00185{left:446.973333pt;}
.xc9_c00185{left:448.506667pt;}
.x55_c00185{left:450.053333pt;}
.x66_c00185{left:452.346667pt;}
.xb4_c00185{left:455.426667pt;}
.xca_c00185{left:456.960000pt;}
.x80_c00185{left:459.266667pt;}
.xd7_c00185{left:463.106667pt;}
.xf0_c00185{left:467.706667pt;}
.xa0_c00185{left:469.253333pt;}
.x67_c00185{left:472.320000pt;}
.x10_c00185{left:478.466667pt;}
.xdf_c00185{left:480.773333pt;}
.xd8_c00185{left:483.066667pt;}
.x10e_c00185{left:486.146667pt;}
.x98_c00185{left:487.680000pt;}
.xe0_c00185{left:489.213333pt;}
.x118_c00185{left:490.746667pt;}
.x5c_c00185{left:492.293333pt;}
.x1d_c00185{left:494.586667pt;}
.xc4_c00185{left:496.133333pt;}
.x6f_c00185{left:497.666667pt;}
.x68_c00185{left:499.973333pt;}
.x41_c00185{left:501.506667pt;}
.x123_c00185{left:503.040000pt;}
.x99_c00185{left:505.346667pt;}
.xbd_c00185{left:507.653333pt;}
.x11_c00185{left:509.946667pt;}
.x70_c00185{left:513.026667pt;}
.x10f_c00185{left:514.560000pt;}
.xc5_c00185{left:516.093333pt;}
.x102_c00185{left:518.400000pt;}
.x19_c00185{left:519.933333pt;}
.xae_c00185{left:521.466667pt;}
.x8e_c00185{left:523.773333pt;}
.x43_c00185{left:525.306667pt;}
.x33_c00185{left:526.853333pt;}
.x42_c00185{left:529.920000pt;}
.x69_c00185{left:531.453333pt;}
.x4f_c00185{left:533.760000pt;}
.x34_c00185{left:539.906667pt;}
.xa9_c00185{left:541.440000pt;}
.xd9_c00185{left:543.746667pt;}
.x12_c00185{left:545.280000pt;}
.xa1_c00185{left:547.586667pt;}
.x103_c00185{left:549.120000pt;}
.xbe_c00185{left:551.426667pt;}
.x24_c00185{left:553.733333pt;}
.x71_c00185{left:555.266667pt;}
.x9a_c00185{left:556.800000pt;}
.x115_c00185{left:559.106667pt;}
.x35_c00185{left:561.413333pt;}
.xe1_c00185{left:567.546667pt;}
.x78_c00185{left:571.386667pt;}
.xda_c00185{left:572.933333pt;}
.x25_c00185{left:574.466667pt;}
.x8f_c00185{left:576.000000pt;}
.xfb_c00185{left:579.840000pt;}
.x13_c00185{left:582.146667pt;}
.x36_c00185{left:584.453333pt;}
.xf4_c00185{left:585.986667pt;}
.xdb_c00185{left:588.293333pt;}
.xed_c00185{left:590.586667pt;}
.x26_c00185{left:592.133333pt;}
.x27_c00185{left:599.813333pt;}
.x37_c00185{left:602.106667pt;}
.x14_c00185{left:603.653333pt;}
.xf1_c00185{left:605.186667pt;}
.xc6_c00185{left:609.026667pt;}
.x79_c00185{left:610.560000pt;}
.xbf_c00185{left:612.093333pt;}
.x1a_c00185{left:614.400000pt;}
.xb5_c00185{left:617.466667pt;}
.x104_c00185{left:619.773333pt;}
.x90_c00185{left:623.613333pt;}
.xdc_c00185{left:625.146667pt;}
.xeb_c00185{left:628.226667pt;}
.x15_c00185{left:631.293333pt;}
.xce_c00185{left:632.826667pt;}
.x124_c00185{left:634.373333pt;}
.x28_c00185{left:635.906667pt;}
.x44_c00185{left:637.440000pt;}
.x7a_c00185{left:638.973333pt;}
.xfc_c00185{left:642.053333pt;}
.x91_c00185{left:645.120000pt;}
.x72_c00185{left:648.960000pt;}
.x93_c00185{left:650.493333pt;}
.xc7_c00185{left:652.026667pt;}
.x29_c00185{left:654.333333pt;}
.x81_c00185{left:658.173333pt;}
.x50_c00185{left:660.480000pt;}
.x16_c00185{left:662.786667pt;}
.x7b_c00185{left:666.626667pt;}
.x1e_c00185{left:670.466667pt;}
.xe2_c00185{left:672.000000pt;}
.x88_c00185{left:674.306667pt;}
.x111_c00185{left:676.613333pt;}
.xf5_c00185{left:679.680000pt;}
.xe5_c00185{left:682.746667pt;}
.xc0_c00185{left:684.293333pt;}
.x45_c00185{left:686.586667pt;}
.x1b_c00185{left:688.893333pt;}
.x112_c00185{left:690.426667pt;}
.x119_c00185{left:691.973333pt;}
.xe6_c00185{left:693.506667pt;}
.x17_c00185{left:695.813333pt;}
.xd0_c00185{left:697.346667pt;}
.xaa_c00185{left:698.880000pt;}
.xc1_c00185{left:701.186667pt;}
.x120_c00185{left:702.720000pt;}
.xfd_c00185{left:705.026667pt;}
.x116_c00185{left:706.560000pt;}
.x73_c00185{left:708.093333pt;}
.x46_c00185{left:711.173333pt;}
.x11c_c00185{left:712.706667pt;}
.x47_c00185{left:714.240000pt;}
.xd1_c00185{left:716.546667pt;}
.x82_c00185{left:718.080000pt;}
.x9b_c00185{left:719.613333pt;}
.x51_c00185{left:721.146667pt;}
.xa7_c00185{left:724.986667pt;}
.x18_c00185{left:726.533333pt;}
.xee_c00185{left:728.066667pt;}
.x56_c00185{left:729.600000pt;}
.xfe_c00185{left:731.906667pt;}
.xe3_c00185{left:733.440000pt;}
.x1c_c00185{left:734.973333pt;}
.x48_c00185{left:737.280000pt;}
.x89_c00185{left:739.586667pt;}
.xa2_c00185{left:741.120000pt;}
.x7c_c00185{left:742.653333pt;}
.x11a_c00185{left:744.960000pt;}
.xc8_c00185{left:748.026667pt;}
.x5d_c00185{left:749.573333pt;}
.x6a_c00185{left:751.866667pt;}
.xdd_c00185{left:756.480000pt;}
.x108_c00185{left:761.093333pt;}
.x8a_c00185{left:762.626667pt;}
.x49_c00185{left:764.160000pt;}
.xde_c00185{left:766.466667pt;}
.x117_c00185{left:768.000000pt;}
.xa3_c00185{left:770.306667pt;}
.x105_c00185{left:772.613333pt;}
.x6b_c00185{left:775.680000pt;}
.x113_c00185{left:777.213333pt;}
.xff_c00185{left:780.293333pt;}
.x8b_c00185{left:790.266667pt;}
.x2f_c00185{left:795.653333pt;}
.x30_c00185{left:816.386667pt;}
.x2c_c00185{left:830.213333pt;}
.x2b_c00185{left:833.280000pt;}
.x2d_c00185{left:839.426667pt;}
.x31_c00185{left:840.960000pt;}
.x32_c00185{left:852.480000pt;}
.x2e_c00185{left:860.933333pt;}
.xf_c00185{left:865.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8edbc0498d077557f759f156.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.109863;font-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_c00186{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m110_c00186{transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);}
.mab_c00186{transform:matrix(0.044900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044900,0.000000,0.000000,0.250000,0,0);}
.m104_c00186{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.m192_c00186{transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);}
.m129_c00186{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.mc_c00186{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.md4_c00186{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m193_c00186{transform:matrix(0.094625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094625,0.000000,0.000000,0.250000,0,0);}
.m120_c00186{transform:matrix(0.101250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101250,0.000000,0.000000,0.250000,0,0);}
.maa_c00186{transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);}
.mf1_c00186{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);}
.m109_c00186{transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);}
.m133_c00186{transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122800,0.000000,0.000000,0.250000,0,0);}
.m12a_c00186{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00186{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m124_c00186{transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);}
.m5f_c00186{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m194_c00186{transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);}
.m13d_c00186{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m170_c00186{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);}
.m178_c00186{transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);}
.mc0_c00186{transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);}
.m77_c00186{transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);}
.mc7_c00186{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.m1d_c00186{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m16c_c00186{transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);}
.m111_c00186{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.m139_c00186{transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);}
.m4b_c00186{transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);}
.m174_c00186{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.m102_c00186{transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);}
.m45_c00186{transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);}
.mc1_c00186{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.m18f_c00186{transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);}
.m163_c00186{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.m98_c00186{transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);}
.m12f_c00186{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);}
.maf_c00186{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.m69_c00186{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.m142_c00186{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.m76_c00186{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);}
.m127_c00186{transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);}
.m4_c00186{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.m82_c00186{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m130_c00186{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.mb5_c00186{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.mf2_c00186{transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);}
.m128_c00186{transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);}
.m190_c00186{transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);}
.m183_c00186{transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);}
.m103_c00186{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);}
.m114_c00186{transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);}
.m6f_c00186{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.mfd_c00186{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);}
.m138_c00186{transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);}
.m7_c00186{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.m14d_c00186{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);}
.mc9_c00186{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);}
.m9_c00186{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.m134_c00186{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);}
.m184_c00186{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m38_c00186{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m18e_c00186{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.m10d_c00186{transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);}
.m4a_c00186{transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);}
.m63_c00186{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.mb_c00186{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);}
.m41_c00186{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.m86_c00186{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.m85_c00186{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.m150_c00186{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.m115_c00186{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);}
.mb8_c00186{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.m180_c00186{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m105_c00186{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m14f_c00186{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);}
.m186_c00186{transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);}
.m8b_c00186{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);}
.m18d_c00186{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.md7_c00186{transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);}
.mf0_c00186{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m11d_c00186{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m11c_c00186{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);}
.m25_c00186{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);}
.m162_c00186{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m126_c00186{transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);}
.m32_c00186{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);}
.m117_c00186{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.mcc_c00186{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m100_c00186{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mf6_c00186{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m14a_c00186{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.m15a_c00186{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m13c_c00186{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.m153_c00186{transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);}
.m17f_c00186{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.m15c_c00186{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.mca_c00186{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.md9_c00186{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m135_c00186{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m68_c00186{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.ma4_c00186{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);}
.m40_c00186{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.mbc_c00186{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.ma3_c00186{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.ma1_c00186{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);}
.me0_c00186{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);}
.m78_c00186{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);}
.m121_c00186{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);}
.m14e_c00186{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.mf3_c00186{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m34_c00186{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m152_c00186{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);}
.m2_c00186{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);}
.mcf_c00186{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.m144_c00186{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);}
.m11f_c00186{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.me8_c00186{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m145_c00186{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);}
.m158_c00186{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m165_c00186{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m7b_c00186{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);}
.m189_c00186{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);}
.m88_c00186{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.me6_c00186{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.m39_c00186{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.ma7_c00186{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m167_c00186{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);}
.m94_c00186{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.m2c_c00186{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m30_c00186{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);}
.ma8_c00186{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);}
.m108_c00186{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);}
.m122_c00186{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.m16e_c00186{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);}
.m15b_c00186{transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);}
.me5_c00186{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.mce_c00186{transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);}
.m141_c00186{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);}
.m64_c00186{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mff_c00186{transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);}
.ma2_c00186{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.mbd_c00186{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);}
.mbb_c00186{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);}
.m187_c00186{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m11b_c00186{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);}
.mfe_c00186{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);}
.m17a_c00186{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);}
.m24_c00186{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);}
.m148_c00186{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.m10a_c00186{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m116_c00186{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.me3_c00186{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);}
.m113_c00186{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m18_c00186{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);}
.m6a_c00186{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);}
.mb3_c00186{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.m8c_c00186{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);}
.m17c_c00186{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.m157_c00186{transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);}
.m9f_c00186{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);}
.me9_c00186{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m147_c00186{transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);}
.m0_c00186{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m97_c00186{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);}
.m168_c00186{transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);}
.m10e_c00186{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.md2_c00186{transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);}
.m132_c00186{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m125_c00186{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m67_c00186{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m3d_c00186{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m96_c00186{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);}
.mfa_c00186{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);}
.m49_c00186{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);}
.m56_c00186{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);}
.mfc_c00186{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);}
.m75_c00186{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.mdd_c00186{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);}
.mf9_c00186{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m146_c00186{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m12d_c00186{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.m166_c00186{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);}
.m17e_c00186{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.m13f_c00186{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.m140_c00186{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);}
.mda_c00186{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);}
.m164_c00186{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);}
.m161_c00186{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m18a_c00186{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.m83_c00186{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);}
.me1_c00186{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);}
.m89_c00186{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);}
.ma_c00186{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.mc3_c00186{transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);}
.ma6_c00186{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m171_c00186{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);}
.mdf_c00186{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);}
.mc2_c00186{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);}
.m16a_c00186{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);}
.m6d_c00186{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.mee_c00186{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.md0_c00186{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);}
.mf7_c00186{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);}
.mf4_c00186{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m149_c00186{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);}
.me7_c00186{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);}
.m9e_c00186{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m7e_c00186{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);}
.me2_c00186{transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);}
.mf_c00186{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2f_c00186{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m179_c00186{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);}
.m177_c00186{transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);}
.m176_c00186{transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);}
.m5_c00186{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);}
.m160_c00186{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.meb_c00186{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);}
.mef_c00186{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m1f_c00186{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);}
.mb0_c00186{transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227475,0.000000,0.000000,0.250000,0,0);}
.mad_c00186{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);}
.mba_c00186{transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);}
.mbf_c00186{transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);}
.m159_c00186{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);}
.m10f_c00186{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);}
.m169_c00186{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);}
.m71_c00186{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);}
.m143_c00186{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.m8a_c00186{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);}
.m3e_c00186{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);}
.m182_c00186{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);}
.m106_c00186{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);}
.m52_c00186{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m16f_c00186{transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);}
.m9b_c00186{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);}
.mb9_c00186{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);}
.md5_c00186{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.m131_c00186{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m13a_c00186{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.mb1_c00186{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);}
.ma9_c00186{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);}
.m15f_c00186{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);}
.mc4_c00186{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);}
.ma5_c00186{transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);}
.m175_c00186{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);}
.m33_c00186{transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);}
.m20_c00186{transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);}
.mae_c00186{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.me_c00186{transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);}
.m1a_c00186{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.mb7_c00186{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m16d_c00186{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m95_c00186{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);}
.m112_c00186{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);}
.m14c_c00186{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);}
.m172_c00186{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.mf5_c00186{transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);}
.m13e_c00186{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m21_c00186{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);}
.m26_c00186{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.md8_c00186{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m17d_c00186{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m9a_c00186{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);}
.mb6_c00186{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);}
.me4_c00186{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);}
.m66_c00186{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m84_c00186{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.mdb_c00186{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m9d_c00186{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m7c_c00186{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.mde_c00186{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);}
.m16b_c00186{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m173_c00186{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);}
.mac_c00186{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);}
.m123_c00186{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.mc8_c00186{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.m10b_c00186{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.m8d_c00186{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m61_c00186{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);}
.m136_c00186{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m47_c00186{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);}
.m81_c00186{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);}
.m37_c00186{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m70_c00186{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);}
.m7a_c00186{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);}
.m9c_c00186{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);}
.m27_c00186{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);}
.m53_c00186{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00186{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m29_c00186{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00186{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);}
.m79_c00186{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c00186{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);}
.m5c_c00186{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);}
.m50_c00186{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00186{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);}
.m6_c00186{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00186{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m10_c00186{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);}
.m22_c00186{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m44_c00186{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);}
.m5a_c00186{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);}
.m2e_c00186{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c00186{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m62_c00186{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);}
.m8_c00186{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m46_c00186{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c00186{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);}
.m35_c00186{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c00186{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m43_c00186{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5b_c00186{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00186{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m59_c00186{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m48_c00186{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md1_c00186{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m55_c00186{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);}
.m93_c00186{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00186{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md6_c00186{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c00186{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00186{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);}
.m54_c00186{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);}
.m7f_c00186{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00186{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00186{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);}
.m5d_c00186{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00186{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m99_c00186{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00186{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00186{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m11_c00186{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);}
.m60_c00186{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mdc_c00186{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);}
.m101_c00186{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m17_c00186{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00186{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m90_c00186{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m185_c00186{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3_c00186{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m74_c00186{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m42_c00186{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);}
.m4d_c00186{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);}
.m7d_c00186{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);}
.m15_c00186{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m12e_c00186{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00186{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);}
.m6b_c00186{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00186{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m14_c00186{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m72_c00186{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m107_c00186{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00186{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00186{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m11e_c00186{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m65_c00186{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);}
.m4f_c00186{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m51_c00186{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m73_c00186{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m92_c00186{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m14b_c00186{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00186{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m137_c00186{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m188_c00186{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m31_c00186{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00186{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00186{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00186{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m18c_c00186{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.md3_c00186{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);}
.m15d_c00186{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m17b_c00186{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m23_c00186{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);}
.m12_c00186{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m57_c00186{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m154_c00186{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m15e_c00186{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00186{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m18b_c00186{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.mea_c00186{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m58_c00186{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mcd_c00186{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00186{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m151_c00186{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m87_c00186{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m191_c00186{transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);}
.m156_c00186{transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00186{transform:matrix(0.997500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.997500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.997500,0.000000,0.000000,0.250000,0,0);}
.m80_c00186{transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00186{transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);}
.m12b_c00186{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.mec_c00186{transform:matrix(1.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.142500,0.000000,0.000000,0.250000,0,0);}
.m118_c00186{transform:matrix(1.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.155000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00186{transform:matrix(1.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.192500,0.000000,0.000000,0.250000,0,0);}
.m10c_c00186{transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);}
.med_c00186{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m181_c00186{transform:matrix(2.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.165000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00186{transform:matrix(2.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.250000,0.000000,0.000000,0.250000,0,0);}
.m119_c00186{transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00186{transform:matrix(4.850000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.850000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.850000,0.000000,0.000000,0.250000,0,0);}
.m91_c00186{transform:matrix(6.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.047500,0.000000,0.000000,0.250000,0,0);}
.m155_c00186{transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);}
.m36_c00186{transform:matrix(7.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.460000,0.000000,0.000000,0.250000,0,0);}
.v2_c00186{vertical-align:-3.420000px;}
.v0_c00186{vertical-align:0.000000px;}
.v1_c00186{vertical-align:3.480000px;}
.v3_c00186{vertical-align:13.800000px;}
.ls3_c00186{letter-spacing:0.000000px;}
.ls1_c00186{letter-spacing:53.000688px;}
.ls0_c00186{letter-spacing:54.513360px;}
.ls2_c00186{letter-spacing:434.916667px;}
.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;}
}
.ws3_c00186{word-spacing:-19.702680px;}
.ws2_c00186{word-spacing:-17.888040px;}
.ws1_c00186{word-spacing:-10.668240px;}
.ws4_c00186{word-spacing:-9.971760px;}
.ws0_c00186{word-spacing:-9.759120px;}
.ws5_c00186{word-spacing:0.000000px;}
.fc0_c00186{color:transparent;}
.fsa_c00186{font-size:3.456000px;}
.fs9_c00186{font-size:6.000000px;}
.fs14_c00186{font-size:6.900000px;}
.fs6_c00186{font-size:10.380000px;}
.fsb_c00186{font-size:13.800000px;}
.fs15_c00186{font-size:17.280000px;}
.fs8_c00186{font-size:20.760000px;}
.fs17_c00186{font-size:24.180000px;}
.fs13_c00186{font-size:27.660000px;}
.fs12_c00186{font-size:31.080000px;}
.fse_c00186{font-size:34.560000px;}
.fsf_c00186{font-size:38.040000px;}
.fsd_c00186{font-size:41.460000px;}
.fs4_c00186{font-size:44.940000px;}
.fsc_c00186{font-size:48.360000px;}
.fs11_c00186{font-size:51.840000px;}
.fs7_c00186{font-size:55.320000px;}
.fs0_c00186{font-size:58.740000px;}
.fs2_c00186{font-size:62.220000px;}
.fs10_c00186{font-size:65.640000px;}
.fs1_c00186{font-size:69.120000px;}
.fs16_c00186{font-size:72.600000px;}
.fs3_c00186{font-size:76.020000px;}
.fs18_c00186{font-size:79.500000px;}
.fs19_c00186{font-size:82.920000px;}
.fs1d_c00186{font-size:86.400000px;}
.fs5_c00186{font-size:89.880000px;}
.fs1c_c00186{font-size:93.300000px;}
.fs1b_c00186{font-size:100.200000px;}
.fs1a_c00186{font-size:103.680000px;}
.y0_c00186{bottom:0.000000px;}
.y1c7_c00186{bottom:218.595000px;}
.y273_c00186{bottom:224.640000px;}
.y1c6_c00186{bottom:225.510000px;}
.y1ce_c00186{bottom:227.235000px;}
.y1cb_c00186{bottom:228.090000px;}
.y1cf_c00186{bottom:228.960000px;}
.y1c9_c00186{bottom:229.830000px;}
.y1d0_c00186{bottom:230.685000px;}
.y1c8_c00186{bottom:231.555000px;}
.y1ca_c00186{bottom:233.280000px;}
.y1d1_c00186{bottom:235.005000px;}
.y1cc_c00186{bottom:235.875000px;}
.y1cd_c00186{bottom:236.730000px;}
.y1c3_c00186{bottom:239.325000px;}
.y1c2_c00186{bottom:240.195000px;}
.y271_c00186{bottom:241.050000px;}
.y1c4_c00186{bottom:243.645000px;}
.y1c0_c00186{bottom:244.515000px;}
.y1c1_c00186{bottom:245.370000px;}
.y272_c00186{bottom:246.240000px;}
.y1c5_c00186{bottom:247.110000px;}
.y26f_c00186{bottom:247.965000px;}
.y26e_c00186{bottom:248.835000px;}
.y270_c00186{bottom:250.560000px;}
.y1bf_c00186{bottom:254.880000px;}
.y26a_c00186{bottom:261.795000px;}
.y26b_c00186{bottom:262.650000px;}
.y1b9_c00186{bottom:263.520000px;}
.y26c_c00186{bottom:265.245000px;}
.y1be_c00186{bottom:266.970000px;}
.y1bc_c00186{bottom:268.710000px;}
.y1ba_c00186{bottom:269.565000px;}
.y1bd_c00186{bottom:271.290000px;}
.y1bb_c00186{bottom:273.885000px;}
.y26d_c00186{bottom:277.350000px;}
.y1b7_c00186{bottom:278.205000px;}
.y1b4_c00186{bottom:280.800000px;}
.y1b5_c00186{bottom:281.670000px;}
.y1b6_c00186{bottom:282.525000px;}
.y265_c00186{bottom:283.395000px;}
.y1b8_c00186{bottom:284.250000px;}
.y266_c00186{bottom:285.990000px;}
.y267_c00186{bottom:286.845000px;}
.y269_c00186{bottom:287.715000px;}
.y268_c00186{bottom:288.570000px;}
.y1b1_c00186{bottom:294.630000px;}
.y1b2_c00186{bottom:296.355000px;}
.y1b0_c00186{bottom:297.210000px;}
.y261_c00186{bottom:298.080000px;}
.y263_c00186{bottom:300.675000px;}
.y1b3_c00186{bottom:301.530000px;}
.y262_c00186{bottom:304.125000px;}
.y264_c00186{bottom:305.850000px;}
.y1af_c00186{bottom:306.720000px;}
.y1aa_c00186{bottom:311.910000px;}
.y1ab_c00186{bottom:315.360000px;}
.y1ac_c00186{bottom:316.230000px;}
.y1ad_c00186{bottom:317.955000px;}
.y1ae_c00186{bottom:318.810000px;}
.y25d_c00186{bottom:319.680000px;}
.y25e_c00186{bottom:320.550000px;}
.y25f_c00186{bottom:322.275000px;}
.y260_c00186{bottom:324.000000px;}
.y25c_c00186{bottom:327.450000px;}
.y1a4_c00186{bottom:331.770000px;}
.y258_c00186{bottom:333.510000px;}
.y1a5_c00186{bottom:334.365000px;}
.y1a3_c00186{bottom:335.235000px;}
.y259_c00186{bottom:336.090000px;}
.y25a_c00186{bottom:336.960000px;}
.y1a6_c00186{bottom:337.830000px;}
.y1a7_c00186{bottom:338.685000px;}
.y1a8_c00186{bottom:340.410000px;}
.y25b_c00186{bottom:343.875000px;}
.y19f_c00186{bottom:347.325000px;}
.y19c_c00186{bottom:348.195000px;}
.y1a0_c00186{bottom:349.050000px;}
.y1a9_c00186{bottom:349.920000px;}
.y19b_c00186{bottom:350.790000px;}
.y19e_c00186{bottom:351.645000px;}
.y1a2_c00186{bottom:353.370000px;}
.y1a1_c00186{bottom:354.240000px;}
.y255_c00186{bottom:355.965000px;}
.y256_c00186{bottom:356.835000px;}
.y257_c00186{bottom:359.430000px;}
.y19d_c00186{bottom:362.010000px;}
.y254_c00186{bottom:364.605000px;}
.y198_c00186{bottom:366.330000px;}
.y195_c00186{bottom:368.070000px;}
.y19a_c00186{bottom:368.925000px;}
.y196_c00186{bottom:370.650000px;}
.y197_c00186{bottom:371.520000px;}
.y199_c00186{bottom:372.390000px;}
.y24f_c00186{bottom:373.245000px;}
.y250_c00186{bottom:374.115000px;}
.y251_c00186{bottom:374.970000px;}
.y252_c00186{bottom:375.840000px;}
.y194_c00186{bottom:377.565000px;}
.y253_c00186{bottom:378.435000px;}
.y18f_c00186{bottom:382.755000px;}
.y193_c00186{bottom:386.205000px;}
.y192_c00186{bottom:387.075000px;}
.y191_c00186{bottom:387.930000px;}
.y190_c00186{bottom:389.670000px;}
.y24d_c00186{bottom:390.525000px;}
.y24c_c00186{bottom:391.395000px;}
.y24e_c00186{bottom:394.845000px;}
.y18b_c00186{bottom:400.890000px;}
.y18c_c00186{bottom:402.630000px;}
.y18e_c00186{bottom:404.355000px;}
.y18a_c00186{bottom:405.210000px;}
.y24b_c00186{bottom:408.675000px;}
.y24a_c00186{bottom:409.530000px;}
.y249_c00186{bottom:410.400000px;}
.y18d_c00186{bottom:412.125000px;}
.y185_c00186{bottom:418.170000px;}
.y186_c00186{bottom:419.040000px;}
.y187_c00186{bottom:421.635000px;}
.y189_c00186{bottom:422.490000px;}
.y188_c00186{bottom:425.085000px;}
.y245_c00186{bottom:426.810000px;}
.y246_c00186{bottom:429.405000px;}
.y247_c00186{bottom:430.275000px;}
.y248_c00186{bottom:433.725000px;}
.y17f_c00186{bottom:436.320000px;}
.y182_c00186{bottom:438.045000px;}
.y180_c00186{bottom:439.770000px;}
.y241_c00186{bottom:440.640000px;}
.y181_c00186{bottom:441.510000px;}
.y183_c00186{bottom:442.365000px;}
.y242_c00186{bottom:443.235000px;}
.y240_c00186{bottom:444.090000px;}
.y184_c00186{bottom:444.960000px;}
.y244_c00186{bottom:446.685000px;}
.y17e_c00186{bottom:453.600000px;}
.y17d_c00186{bottom:455.325000px;}
.y17c_c00186{bottom:456.195000px;}
.y23d_c00186{bottom:457.050000px;}
.y243_c00186{bottom:457.920000px;}
.y17b_c00186{bottom:458.790000px;}
.y23c_c00186{bottom:462.240000px;}
.y23e_c00186{bottom:463.110000px;}
.y23f_c00186{bottom:463.965000px;}
.y174_c00186{bottom:470.880000px;}
.y178_c00186{bottom:471.750000px;}
.y176_c00186{bottom:472.605000px;}
.y175_c00186{bottom:473.475000px;}
.y173_c00186{bottom:474.330000px;}
.y23a_c00186{bottom:476.070000px;}
.y177_c00186{bottom:476.925000px;}
.y179_c00186{bottom:477.795000px;}
.y17a_c00186{bottom:478.650000px;}
.y238_c00186{bottom:479.520000px;}
.y239_c00186{bottom:480.390000px;}
.y23b_c00186{bottom:482.970000px;}
.y16c_c00186{bottom:489.885000px;}
.y16f_c00186{bottom:490.755000px;}
.y171_c00186{bottom:491.610000px;}
.y235_c00186{bottom:493.350000px;}
.y16d_c00186{bottom:494.205000px;}
.y16e_c00186{bottom:495.075000px;}
.y172_c00186{bottom:495.930000px;}
.y234_c00186{bottom:496.800000px;}
.y237_c00186{bottom:497.670000px;}
.y236_c00186{bottom:499.395000px;}
.y170_c00186{bottom:500.250000px;}
.y16a_c00186{bottom:507.165000px;}
.y16b_c00186{bottom:508.035000px;}
.y169_c00186{bottom:508.890000px;}
.y167_c00186{bottom:509.760000px;}
.y168_c00186{bottom:510.630000px;}
.y232_c00186{bottom:511.485000px;}
.y230_c00186{bottom:514.080000px;}
.y231_c00186{bottom:514.950000px;}
.y233_c00186{bottom:521.850000px;}
.y163_c00186{bottom:525.315000px;}
.y165_c00186{bottom:526.170000px;}
.y162_c00186{bottom:527.910000px;}
.y22b_c00186{bottom:528.765000px;}
.y164_c00186{bottom:529.635000px;}
.y166_c00186{bottom:530.490000px;}
.y22e_c00186{bottom:531.360000px;}
.y22f_c00186{bottom:532.230000px;}
.y22a_c00186{bottom:533.085000px;}
.y22c_c00186{bottom:533.955000px;}
.y22d_c00186{bottom:540.000000px;}
.y15b_c00186{bottom:540.870000px;}
.y15d_c00186{bottom:542.595000px;}
.y15e_c00186{bottom:543.450000px;}
.y15c_c00186{bottom:546.045000px;}
.y226_c00186{bottom:547.770000px;}
.y15f_c00186{bottom:548.640000px;}
.y161_c00186{bottom:549.510000px;}
.y160_c00186{bottom:550.365000px;}
.y227_c00186{bottom:551.235000px;}
.y229_c00186{bottom:553.830000px;}
.y228_c00186{bottom:556.410000px;}
.y15a_c00186{bottom:557.280000px;}
.y152_c00186{bottom:562.470000px;}
.y153_c00186{bottom:563.325000px;}
.y154_c00186{bottom:564.195000px;}
.y155_c00186{bottom:565.050000px;}
.y157_c00186{bottom:565.920000px;}
.y156_c00186{bottom:566.790000px;}
.y224_c00186{bottom:567.645000px;}
.y159_c00186{bottom:568.515000px;}
.y225_c00186{bottom:571.110000px;}
.y151_c00186{bottom:575.430000px;}
.y158_c00186{bottom:576.285000px;}
.y14c_c00186{bottom:580.605000px;}
.y14e_c00186{bottom:581.475000px;}
.y14d_c00186{bottom:582.330000px;}
.y14f_c00186{bottom:584.070000px;}
.y21e_c00186{bottom:585.795000px;}
.y222_c00186{bottom:586.650000px;}
.y223_c00186{bottom:587.520000px;}
.y220_c00186{bottom:588.390000px;}
.y221_c00186{bottom:589.245000px;}
.y150_c00186{bottom:590.115000px;}
.y21f_c00186{bottom:593.565000px;}
.y148_c00186{bottom:596.160000px;}
.y147_c00186{bottom:597.030000px;}
.y149_c00186{bottom:597.885000px;}
.y21a_c00186{bottom:598.755000px;}
.y14a_c00186{bottom:602.205000px;}
.y218_c00186{bottom:603.075000px;}
.y219_c00186{bottom:603.930000px;}
.y14b_c00186{bottom:604.800000px;}
.y21b_c00186{bottom:605.670000px;}
.y21c_c00186{bottom:606.525000px;}
.y21d_c00186{bottom:608.250000px;}
.y27a_c00186{bottom:611.715000px;}
.y144_c00186{bottom:614.310000px;}
.y143_c00186{bottom:615.165000px;}
.y145_c00186{bottom:616.890000px;}
.y279_c00186{bottom:617.760000px;}
.y146_c00186{bottom:620.355000px;}
.y216_c00186{bottom:621.210000px;}
.y217_c00186{bottom:628.125000px;}
.y13d_c00186{bottom:630.720000px;}
.y13e_c00186{bottom:633.315000px;}
.y214_c00186{bottom:634.170000px;}
.y13f_c00186{bottom:635.040000px;}
.y140_c00186{bottom:635.910000px;}
.y141_c00186{bottom:636.765000px;}
.y142_c00186{bottom:637.635000px;}
.y213_c00186{bottom:639.360000px;}
.y215_c00186{bottom:641.085000px;}
.y139_c00186{bottom:650.595000px;}
.y13b_c00186{bottom:652.320000px;}
.y13a_c00186{bottom:654.045000px;}
.y210_c00186{bottom:654.915000px;}
.y20f_c00186{bottom:656.640000px;}
.y211_c00186{bottom:659.235000px;}
.y13c_c00186{bottom:663.555000px;}
.y212_c00186{bottom:667.005000px;}
.y133_c00186{bottom:667.875000px;}
.y134_c00186{bottom:668.730000px;}
.y135_c00186{bottom:669.600000px;}
.y136_c00186{bottom:670.470000px;}
.y137_c00186{bottom:671.325000px;}
.y138_c00186{bottom:672.195000px;}
.y20d_c00186{bottom:673.050000px;}
.y20e_c00186{bottom:676.515000px;}
.y131_c00186{bottom:684.285000px;}
.y130_c00186{bottom:686.880000px;}
.y132_c00186{bottom:687.750000px;}
.y20a_c00186{bottom:688.605000px;}
.y20b_c00186{bottom:690.330000px;}
.y209_c00186{bottom:691.200000px;}
.y20c_c00186{bottom:693.795000px;}
.y12b_c00186{bottom:698.970000px;}
.y12f_c00186{bottom:700.710000px;}
.y12d_c00186{bottom:702.435000px;}
.y12c_c00186{bottom:704.160000px;}
.y12e_c00186{bottom:705.030000px;}
.y203_c00186{bottom:706.755000px;}
.y207_c00186{bottom:707.610000px;}
.y204_c00186{bottom:708.480000px;}
.y208_c00186{bottom:711.075000px;}
.y206_c00186{bottom:712.800000px;}
.y127_c00186{bottom:717.990000px;}
.y205_c00186{bottom:718.845000px;}
.y201_c00186{bottom:719.715000px;}
.y128_c00186{bottom:720.570000px;}
.y12a_c00186{bottom:724.035000px;}
.y200_c00186{bottom:724.890000px;}
.y202_c00186{bottom:727.485000px;}
.y129_c00186{bottom:732.675000px;}
.y125_c00186{bottom:736.125000px;}
.y124_c00186{bottom:736.995000px;}
.y126_c00186{bottom:737.850000px;}
.y123_c00186{bottom:739.590000px;}
.y1fe_c00186{bottom:740.445000px;}
.y1fd_c00186{bottom:742.170000px;}
.y1fc_c00186{bottom:743.040000px;}
.y1ff_c00186{bottom:745.635000px;}
.y120_c00186{bottom:752.550000px;}
.y121_c00186{bottom:753.405000px;}
.y1f7_c00186{bottom:754.275000px;}
.y1f9_c00186{bottom:755.130000px;}
.y1f8_c00186{bottom:756.000000px;}
.y122_c00186{bottom:757.725000px;}
.y1fa_c00186{bottom:759.450000px;}
.y1fb_c00186{bottom:762.915000px;}
.y11e_c00186{bottom:768.960000px;}
.y11c_c00186{bottom:772.410000px;}
.y11d_c00186{bottom:773.280000px;}
.y11f_c00186{bottom:774.150000px;}
.y1f1_c00186{bottom:776.730000px;}
.y1f4_c00186{bottom:777.600000px;}
.y1f2_c00186{bottom:778.470000px;}
.y1f6_c00186{bottom:780.195000px;}
.y1f5_c00186{bottom:781.050000px;}
.y115_c00186{bottom:784.515000px;}
.y1f3_c00186{bottom:786.240000px;}
.y1f0_c00186{bottom:787.110000px;}
.y116_c00186{bottom:788.835000px;}
.y117_c00186{bottom:790.560000px;}
.y118_c00186{bottom:791.430000px;}
.y119_c00186{bottom:792.285000px;}
.y11a_c00186{bottom:794.010000px;}
.y1ed_c00186{bottom:794.880000px;}
.y11b_c00186{bottom:795.750000px;}
.y1ef_c00186{bottom:798.330000px;}
.y10f_c00186{bottom:801.795000px;}
.y110_c00186{bottom:804.390000px;}
.y112_c00186{bottom:805.245000px;}
.y111_c00186{bottom:806.115000px;}
.y1ee_c00186{bottom:806.970000px;}
.y1e8_c00186{bottom:807.840000px;}
.y114_c00186{bottom:808.710000px;}
.y1e9_c00186{bottom:811.290000px;}
.y1ea_c00186{bottom:812.160000px;}
.y1eb_c00186{bottom:813.885000px;}
.y1ec_c00186{bottom:814.755000px;}
.y113_c00186{bottom:818.205000px;}
.y10d_c00186{bottom:823.395000px;}
.y10e_c00186{bottom:824.250000px;}
.y1e7_c00186{bottom:834.630000px;}
.y109_c00186{bottom:836.355000px;}
.y10b_c00186{bottom:838.950000px;}
.y10a_c00186{bottom:839.805000px;}
.y10c_c00186{bottom:840.675000px;}
.y108_c00186{bottom:847.590000px;}
.y103_c00186{bottom:857.955000px;}
.y104_c00186{bottom:860.550000px;}
.y105_c00186{bottom:861.405000px;}
.y1e1_c00186{bottom:862.275000px;}
.y1e2_c00186{bottom:863.130000px;}
.y106_c00186{bottom:864.000000px;}
.y102_c00186{bottom:864.870000px;}
.y107_c00186{bottom:870.045000px;}
.yfa_c00186{bottom:870.915000px;}
.yfd_c00186{bottom:871.770000px;}
.yfb_c00186{bottom:872.640000px;}
.yff_c00186{bottom:873.510000px;}
.y100_c00186{bottom:874.365000px;}
.y1de_c00186{bottom:875.235000px;}
.yfc_c00186{bottom:876.090000px;}
.yfe_c00186{bottom:876.960000px;}
.y101_c00186{bottom:878.685000px;}
.y1df_c00186{bottom:880.410000px;}
.y1e0_c00186{bottom:882.150000px;}
.yf9_c00186{bottom:883.005000px;}
.y1e6_c00186{bottom:885.600000px;}
.yf4_c00186{bottom:889.050000px;}
.yf5_c00186{bottom:893.370000px;}
.yf8_c00186{bottom:894.240000px;}
.yf6_c00186{bottom:895.965000px;}
.y1dd_c00186{bottom:897.690000px;}
.yf7_c00186{bottom:898.560000px;}
.y1e4_c00186{bottom:899.430000px;}
.y1e5_c00186{bottom:902.880000px;}
.y278_c00186{bottom:903.750000px;}
.yec_c00186{bottom:906.330000px;}
.yf0_c00186{bottom:908.070000px;}
.yee_c00186{bottom:908.925000px;}
.yf2_c00186{bottom:909.795000px;}
.yf3_c00186{bottom:910.650000px;}
.yef_c00186{bottom:911.520000px;}
.yf1_c00186{bottom:913.245000px;}
.y1e3_c00186{bottom:914.115000px;}
.yed_c00186{bottom:914.970000px;}
.y1d8_c00186{bottom:920.160000px;}
.y1da_c00186{bottom:921.030000px;}
.y1db_c00186{bottom:921.885000px;}
.y1d9_c00186{bottom:923.610000px;}
.y1dc_c00186{bottom:924.480000px;}
.yea_c00186{bottom:929.670000px;}
.yeb_c00186{bottom:942.630000px;}
.ye8_c00186{bottom:952.125000px;}
.ye9_c00186{bottom:955.590000px;}
.ye0_c00186{bottom:957.315000px;}
.ye1_c00186{bottom:958.170000px;}
.ye2_c00186{bottom:959.040000px;}
.ye4_c00186{bottom:959.910000px;}
.ydf_c00186{bottom:963.360000px;}
.ye6_c00186{bottom:966.810000px;}
.ye3_c00186{bottom:968.550000px;}
.ye5_c00186{bottom:969.405000px;}
.ye7_c00186{bottom:970.275000px;}
.yd4_c00186{bottom:971.130000px;}
.yd5_c00186{bottom:975.450000px;}
.yd6_c00186{bottom:976.320000px;}
.yd7_c00186{bottom:978.045000px;}
.yd8_c00186{bottom:978.915000px;}
.yd9_c00186{bottom:980.640000px;}
.yda_c00186{bottom:983.235000px;}
.ydc_c00186{bottom:984.960000px;}
.ydb_c00186{bottom:985.830000px;}
.yce_c00186{bottom:987.555000px;}
.yde_c00186{bottom:988.410000px;}
.yd0_c00186{bottom:989.280000px;}
.ydd_c00186{bottom:990.150000px;}
.yd1_c00186{bottom:991.005000px;}
.ycb_c00186{bottom:991.875000px;}
.yc9_c00186{bottom:992.730000px;}
.yca_c00186{bottom:993.600000px;}
.ycc_c00186{bottom:995.325000px;}
.ycf_c00186{bottom:997.920000px;}
.yc8_c00186{bottom:1004.835000px;}
.yd2_c00186{bottom:1006.560000px;}
.yd3_c00186{bottom:1009.155000px;}
.ycd_c00186{bottom:1010.010000px;}
.yc1_c00186{bottom:1016.925000px;}
.yc2_c00186{bottom:1017.795000px;}
.yc6_c00186{bottom:1018.650000px;}
.yc0_c00186{bottom:1020.390000px;}
.yc3_c00186{bottom:1023.840000px;}
.yc7_c00186{bottom:1025.565000px;}
.yc4_c00186{bottom:1026.435000px;}
.yc5_c00186{bottom:1027.290000px;}
.ybc_c00186{bottom:1035.930000px;}
.ybd_c00186{bottom:1036.800000px;}
.yb9_c00186{bottom:1039.395000px;}
.yb7_c00186{bottom:1040.250000px;}
.yb8_c00186{bottom:1041.120000px;}
.ybe_c00186{bottom:1041.990000px;}
.yba_c00186{bottom:1042.845000px;}
.ybf_c00186{bottom:1043.715000px;}
.ybb_c00186{bottom:1047.165000px;}
.yb4_c00186{bottom:1054.950000px;}
.yb5_c00186{bottom:1055.805000px;}
.yb1_c00186{bottom:1056.675000px;}
.yb3_c00186{bottom:1059.270000px;}
.yb6_c00186{bottom:1061.850000px;}
.yb2_c00186{bottom:1068.765000px;}
.ya9_c00186{bottom:1070.490000px;}
.ya8_c00186{bottom:1071.360000px;}
.yae_c00186{bottom:1072.230000px;}
.yaa_c00186{bottom:1074.810000px;}
.yaf_c00186{bottom:1075.680000px;}
.yab_c00186{bottom:1076.550000px;}
.yac_c00186{bottom:1078.275000px;}
.yb0_c00186{bottom:1079.130000px;}
.yad_c00186{bottom:1080.000000px;}
.ya6_c00186{bottom:1090.365000px;}
.ya7_c00186{bottom:1091.235000px;}
.ya5_c00186{bottom:1092.960000px;}
.ya1_c00186{bottom:1093.830000px;}
.ya2_c00186{bottom:1094.685000px;}
.ya3_c00186{bottom:1095.555000px;}
.ya4_c00186{bottom:1096.410000px;}
.ya0_c00186{bottom:1105.920000px;}
.y9c_c00186{bottom:1107.645000px;}
.y98_c00186{bottom:1109.370000px;}
.y9b_c00186{bottom:1111.110000px;}
.y9d_c00186{bottom:1111.965000px;}
.y9f_c00186{bottom:1113.690000px;}
.y99_c00186{bottom:1115.430000px;}
.y9e_c00186{bottom:1116.285000px;}
.y9a_c00186{bottom:1118.880000px;}
.y97_c00186{bottom:1122.330000px;}
.y90_c00186{bottom:1124.070000px;}
.y96_c00186{bottom:1124.925000px;}
.y8c_c00186{bottom:1125.795000px;}
.y8e_c00186{bottom:1126.650000px;}
.y8f_c00186{bottom:1127.520000px;}
.y95_c00186{bottom:1129.245000px;}
.y91_c00186{bottom:1130.115000px;}
.y92_c00186{bottom:1130.970000px;}
.y93_c00186{bottom:1132.710000px;}
.y8d_c00186{bottom:1133.565000px;}
.y94_c00186{bottom:1135.290000px;}
.y8b_c00186{bottom:1139.610000px;}
.y88_c00186{bottom:1142.205000px;}
.y87_c00186{bottom:1144.800000px;}
.y89_c00186{bottom:1145.670000px;}
.y85_c00186{bottom:1146.525000px;}
.y86_c00186{bottom:1147.395000px;}
.y8a_c00186{bottom:1149.120000px;}
.y83_c00186{bottom:1162.080000px;}
.y79_c00186{bottom:1163.805000px;}
.y7a_c00186{bottom:1164.675000px;}
.y84_c00186{bottom:1165.530000px;}
.y7d_c00186{bottom:1168.125000px;}
.y7c_c00186{bottom:1168.995000px;}
.y7b_c00186{bottom:1169.850000px;}
.y7e_c00186{bottom:1175.040000px;}
.y82_c00186{bottom:1179.360000px;}
.y7f_c00186{bottom:1181.085000px;}
.y80_c00186{bottom:1181.955000px;}
.y81_c00186{bottom:1182.810000px;}
.y71_c00186{bottom:1188.870000px;}
.y70_c00186{bottom:1192.320000px;}
.y74_c00186{bottom:1194.045000px;}
.y73_c00186{bottom:1194.915000px;}
.y78_c00186{bottom:1198.365000px;}
.y75_c00186{bottom:1199.235000px;}
.y76_c00186{bottom:1200.090000px;}
.y77_c00186{bottom:1200.960000px;}
.y72_c00186{bottom:1201.830000px;}
.y62_c00186{bottom:1207.875000px;}
.y63_c00186{bottom:1208.730000px;}
.y64_c00186{bottom:1209.600000px;}
.y65_c00186{bottom:1210.470000px;}
.y68_c00186{bottom:1211.325000px;}
.y6b_c00186{bottom:1212.195000px;}
.y66_c00186{bottom:1213.050000px;}
.y67_c00186{bottom:1213.920000px;}
.y69_c00186{bottom:1214.790000px;}
.y6d_c00186{bottom:1215.645000px;}
.y6a_c00186{bottom:1216.515000px;}
.y6c_c00186{bottom:1217.370000px;}
.y6f_c00186{bottom:1219.110000px;}
.y6e_c00186{bottom:1221.690000px;}
.y58_c00186{bottom:1225.155000px;}
.y59_c00186{bottom:1226.010000px;}
.y5e_c00186{bottom:1227.750000px;}
.y5b_c00186{bottom:1228.605000px;}
.y5a_c00186{bottom:1229.475000px;}
.y5f_c00186{bottom:1230.330000px;}
.y61_c00186{bottom:1231.200000px;}
.y57_c00186{bottom:1232.070000px;}
.y5d_c00186{bottom:1232.925000px;}
.y5c_c00186{bottom:1233.795000px;}
.y60_c00186{bottom:1235.520000px;}
.y4e_c00186{bottom:1243.290000px;}
.y50_c00186{bottom:1244.160000px;}
.y51_c00186{bottom:1245.030000px;}
.y52_c00186{bottom:1246.755000px;}
.y53_c00186{bottom:1247.610000px;}
.y4f_c00186{bottom:1248.480000px;}
.y54_c00186{bottom:1249.350000px;}
.y56_c00186{bottom:1251.075000px;}
.y55_c00186{bottom:1259.715000px;}
.y45_c00186{bottom:1261.440000px;}
.y43_c00186{bottom:1262.310000px;}
.y42_c00186{bottom:1263.165000px;}
.y44_c00186{bottom:1264.035000px;}
.y46_c00186{bottom:1264.890000px;}
.y47_c00186{bottom:1265.760000px;}
.y4c_c00186{bottom:1266.630000px;}
.y49_c00186{bottom:1267.485000px;}
.y48_c00186{bottom:1269.210000px;}
.y4a_c00186{bottom:1270.080000px;}
.y4b_c00186{bottom:1271.805000px;}
.y4d_c00186{bottom:1275.270000px;}
.y3f_c00186{bottom:1282.170000px;}
.y39_c00186{bottom:1283.040000px;}
.y41_c00186{bottom:1284.765000px;}
.y3a_c00186{bottom:1285.635000px;}
.y40_c00186{bottom:1286.490000px;}
.y36_c00186{bottom:1287.360000px;}
.y37_c00186{bottom:1289.085000px;}
.y3e_c00186{bottom:1289.955000px;}
.y35_c00186{bottom:1290.810000px;}
.y3b_c00186{bottom:1291.680000px;}
.y3c_c00186{bottom:1293.405000px;}
.y3d_c00186{bottom:1294.275000px;}
.y32_c00186{bottom:1299.450000px;}
.y31_c00186{bottom:1300.320000px;}
.y38_c00186{bottom:1302.915000px;}
.y34_c00186{bottom:1303.770000px;}
.y33_c00186{bottom:1305.510000px;}
.y30_c00186{bottom:1306.365000px;}
.y2a_c00186{bottom:1307.235000px;}
.y29_c00186{bottom:1308.090000px;}
.y2b_c00186{bottom:1308.960000px;}
.y2e_c00186{bottom:1309.830000px;}
.y2c_c00186{bottom:1310.685000px;}
.y2d_c00186{bottom:1311.555000px;}
.y28_c00186{bottom:1313.280000px;}
.y2f_c00186{bottom:1316.730000px;}
.y26_c00186{bottom:1317.600000px;}
.y27_c00186{bottom:1320.195000px;}
.y24_c00186{bottom:1321.050000px;}
.y25_c00186{bottom:1321.920000px;}
.y1e_c00186{bottom:1322.790000px;}
.y1c_c00186{bottom:1324.515000px;}
.y1d_c00186{bottom:1325.370000px;}
.y21_c00186{bottom:1326.240000px;}
.y1f_c00186{bottom:1327.110000px;}
.y20_c00186{bottom:1327.965000px;}
.y22_c00186{bottom:1331.430000px;}
.y23_c00186{bottom:1335.750000px;}
.y1a_c00186{bottom:1339.200000px;}
.y19_c00186{bottom:1340.070000px;}
.y1b_c00186{bottom:1341.795000px;}
.ye_c00186{bottom:1343.520000px;}
.yf_c00186{bottom:1344.390000px;}
.y10_c00186{bottom:1345.245000px;}
.y11_c00186{bottom:1346.115000px;}
.y12_c00186{bottom:1346.970000px;}
.y16_c00186{bottom:1352.160000px;}
.y15_c00186{bottom:1354.755000px;}
.y13_c00186{bottom:1355.610000px;}
.y14_c00186{bottom:1356.480000px;}
.y17_c00186{bottom:1358.205000px;}
.y18_c00186{bottom:1359.930000px;}
.y1d2_c00186{bottom:1361.670000px;}
.y4_c00186{bottom:1366.845000px;}
.y2_c00186{bottom:1367.715000px;}
.y3_c00186{bottom:1369.440000px;}
.y6_c00186{bottom:1370.310000px;}
.y5_c00186{bottom:1372.035000px;}
.yd_c00186{bottom:1372.890000px;}
.y8_c00186{bottom:1373.760000px;}
.y7_c00186{bottom:1374.630000px;}
.yb_c00186{bottom:1378.080000px;}
.y9_c00186{bottom:1380.675000px;}
.ya_c00186{bottom:1381.530000px;}
.yc_c00186{bottom:1384.125000px;}
.y1_c00186{bottom:1393.635000px;}
.y1d7_c00186{bottom:1394.490000px;}
.y277_c00186{bottom:1404.000000px;}
.y276_c00186{bottom:1412.640000px;}
.y275_c00186{bottom:1419.555000px;}
.y1d5_c00186{bottom:1436.835000px;}
.y1d3_c00186{bottom:1437.690000px;}
.y1d4_c00186{bottom:1438.560000px;}
.y1d6_c00186{bottom:1444.605000px;}
.y274_c00186{bottom:1445.475000px;}
.hc_c00186{height:3.110063px;}
.hb_c00186{height:5.399414px;}
.h16_c00186{height:6.209326px;}
.h21_c00186{height:8.819414px;}
.h7_c00186{height:9.340986px;}
.hd_c00186{height:12.418652px;}
.h17_c00186{height:15.550313px;}
.ha_c00186{height:18.681973px;}
.h19_c00186{height:21.759639px;}
.h15_c00186{height:24.891299px;}
.h14_c00186{height:27.968965px;}
.h10_c00186{height:31.100625px;}
.h11_c00186{height:34.232285px;}
.hf_c00186{height:37.309951px;}
.h5_c00186{height:40.441611px;}
.he_c00186{height:43.519277px;}
.h13_c00186{height:46.650937px;}
.h8_c00186{height:49.782598px;}
.h1a_c00186{height:50.130937px;}
.h2_c00186{height:52.860264px;}
.h9_c00186{height:55.991924px;}
.h12_c00186{height:59.069590px;}
.h20_c00186{height:60.450938px;}
.h3_c00186{height:62.201250px;}
.h18_c00186{height:65.332910px;}
.h4_c00186{height:68.410576px;}
.h1b_c00186{height:71.542236px;}
.h1c_c00186{height:74.619902px;}
.h22_c00186{height:77.751563px;}
.h6_c00186{height:80.883223px;}
.h1f_c00186{height:83.960889px;}
.h1e_c00186{height:90.170215px;}
.h1d_c00186{height:93.301875px;}
.h0_c00186{height:1523.235000px;}
.h1_c00186{height:1523.250000px;}
.w0_c00186{width:1107.645000px;}
.w1_c00186{width:1107.750000px;}
.x0_c00186{left:0.000000px;}
.xee_c00186{left:184.890000px;}
.xef_c00186{left:196.125000px;}
.x7c_c00186{left:218.595000px;}
.x60_c00186{left:223.770000px;}
.x85_c00186{left:233.280000px;}
.x69_c00186{left:238.470000px;}
.x61_c00186{left:241.050000px;}
.xc4_c00186{left:242.790000px;}
.x44_c00186{left:246.240000px;}
.x8c_c00186{left:250.560000px;}
.x29_c00186{left:253.155000px;}
.x6a_c00186{left:254.880000px;}
.x86_c00186{left:256.605000px;}
.x9c_c00186{left:258.330000px;}
.x96_c00186{left:260.925000px;}
.x45_c00186{left:262.650000px;}
.xe1_c00186{left:264.390000px;}
.xde_c00186{left:266.115000px;}
.xea_c00186{left:267.840000px;}
.xb1_c00186{left:269.565000px;}
.x39_c00186{left:272.160000px;}
.xc1_c00186{left:273.885000px;}
.x46_c00186{left:276.480000px;}
.x2a_c00186{left:279.075000px;}
.x3_c00186{left:280.800000px;}
.x62_c00186{left:282.525000px;}
.x71_c00186{left:284.250000px;}
.xa3_c00186{left:285.990000px;}
.xc5_c00186{left:288.570000px;}
.xda_c00186{left:291.165000px;}
.x2b_c00186{left:293.760000px;}
.xeb_c00186{left:295.485000px;}
.xb2_c00186{left:299.805000px;}
.x63_c00186{left:305.850000px;}
.x4_c00186{left:311.040000px;}
.xec_c00186{left:312.765000px;}
.xca_c00186{left:314.490000px;}
.x47_c00186{left:317.085000px;}
.xd2_c00186{left:319.680000px;}
.x3a_c00186{left:321.405000px;}
.xc9_c00186{left:323.130000px;}
.x5_c00186{left:326.595000px;}
.xbb_c00186{left:329.190000px;}
.xa6_c00186{left:330.915000px;}
.x51_c00186{left:332.640000px;}
.x15_c00186{left:336.090000px;}
.xcb_c00186{left:339.555000px;}
.x2c_c00186{left:341.280000px;}
.xe6_c00186{left:343.005000px;}
.x3b_c00186{left:344.730000px;}
.xbc_c00186{left:347.325000px;}
.x16_c00186{left:349.050000px;}
.x48_c00186{left:351.645000px;}
.xe7_c00186{left:353.370000px;}
.xd1_c00186{left:356.835000px;}
.x7d_c00186{left:358.560000px;}
.x89_c00186{left:360.285000px;}
.x52_c00186{left:362.010000px;}
.xdf_c00186{left:363.750000px;}
.x17_c00186{left:366.330000px;}
.x2d_c00186{left:368.070000px;}
.x72_c00186{left:369.795000px;}
.xbd_c00186{left:371.520000px;}
.x3c_c00186{left:373.245000px;}
.x53_c00186{left:376.710000px;}
.x64_c00186{left:378.435000px;}
.x7e_c00186{left:380.160000px;}
.x18_c00186{left:383.610000px;}
.x49_c00186{left:386.205000px;}
.xe9_c00186{left:388.800000px;}
.x54_c00186{left:390.525000px;}
.x40_c00186{left:393.120000px;}
.xd4_c00186{left:396.570000px;}
.x19_c00186{left:400.890000px;}
.xc7_c00186{left:403.485000px;}
.x2e_c00186{left:405.210000px;}
.xb5_c00186{left:407.805000px;}
.x55_c00186{left:409.530000px;}
.x27_c00186{left:413.850000px;}
.x56_c00186{left:418.170000px;}
.x9d_c00186{left:422.490000px;}
.xce_c00186{left:425.085000px;}
.x1a_c00186{left:426.810000px;}
.xc3_c00186{left:428.550000px;}
.x97_c00186{left:430.275000px;}
.x57_c00186{left:433.725000px;}
.x2f_c00186{left:436.320000px;}
.xa7_c00186{left:438.915000px;}
.x1b_c00186{left:440.640000px;}
.xe4_c00186{left:442.365000px;}
.xd5_c00186{left:444.090000px;}
.x8d_c00186{left:445.830000px;}
.xd3_c00186{left:448.410000px;}
.xa8_c00186{left:452.730000px;}
.x1c_c00186{left:455.325000px;}
.xcf_c00186{left:457.920000px;}
.x4a_c00186{left:459.645000px;}
.x6_c00186{left:463.110000px;}
.xc2_c00186{left:466.560000px;}
.xd9_c00186{left:470.880000px;}
.xed_c00186{left:472.605000px;}
.x73_c00186{left:475.200000px;}
.xb6_c00186{left:476.925000px;}
.xd6_c00186{left:478.650000px;}
.xcd_c00186{left:481.245000px;}
.x65_c00186{left:483.840000px;}
.xe2_c00186{left:485.565000px;}
.xdd_c00186{left:489.885000px;}
.x74_c00186{left:491.610000px;}
.xd7_c00186{left:493.350000px;}
.x92_c00186{left:495.075000px;}
.x1_c00186{left:496.800000px;}
.x98_c00186{left:499.395000px;}
.xd0_c00186{left:504.570000px;}
.x66_c00186{left:506.310000px;}
.xc6_c00186{left:508.035000px;}
.xd8_c00186{left:509.760000px;}
.xe5_c00186{left:511.485000px;}
.xa9_c00186{left:514.080000px;}
.x9e_c00186{left:515.805000px;}
.x75_c00186{left:517.530000px;}
.x2_c00186{left:520.995000px;}
.x7_c00186{left:522.720000px;}
.xa4_c00186{left:526.170000px;}
.x3d_c00186{left:528.765000px;}
.x8_c00186{left:531.360000px;}
.xac_c00186{left:533.085000px;}
.xcc_c00186{left:534.810000px;}
.x6b_c00186{left:537.405000px;}
.xe0_c00186{left:539.130000px;}
.xe8_c00186{left:540.870000px;}
.xe3_c00186{left:542.595000px;}
.x30_c00186{left:546.915000px;}
.xb3_c00186{left:548.640000px;}
.x3e_c00186{left:551.235000px;}
.xdc_c00186{left:552.960000px;}
.x8e_c00186{left:556.410000px;}
.x9f_c00186{left:559.005000px;}
.x8f_c00186{left:560.730000px;}
.xdb_c00186{left:564.195000px;}
.x67_c00186{left:566.790000px;}
.x76_c00186{left:570.240000px;}
.xc8_c00186{left:574.560000px;}
.x7f_c00186{left:576.285000px;}
.x68_c00186{left:578.880000px;}
.xaa_c00186{left:580.605000px;}
.x1d_c00186{left:583.200000px;}
.x4b_c00186{left:584.925000px;}
.x8a_c00186{left:586.650000px;}
.xa5_c00186{left:588.390000px;}
.x3f_c00186{left:590.115000px;}
.xf2_c00186{left:591.840000px;}
.x102_c00186{left:593.565000px;}
.x106_c00186{left:595.290000px;}
.x10f_c00186{left:597.030000px;}
.x11c_c00186{left:598.755000px;}
.x28_c00186{left:605.670000px;}
.x9_c00186{left:607.395000px;}
.x1e_c00186{left:609.990000px;}
.x32_c00186{left:611.715000px;}
.x77_c00186{left:613.440000px;}
.x6c_c00186{left:615.165000px;}
.xa0_c00186{left:617.760000px;}
.xad_c00186{left:619.485000px;}
.xf8_c00186{left:622.080000px;}
.xa_c00186{left:625.530000px;}
.x120_c00186{left:627.270000px;}
.x11e_c00186{left:628.995000px;}
.x78_c00186{left:630.720000px;}
.x4c_c00186{left:633.315000px;}
.xff_c00186{left:635.040000px;}
.x10d_c00186{left:637.635000px;}
.x114_c00186{left:639.360000px;}
.x58_c00186{left:641.955000px;}
.xb7_c00186{left:645.405000px;}
.xa1_c00186{left:647.130000px;}
.x6d_c00186{left:648.870000px;}
.xb_c00186{left:651.450000px;}
.x33_c00186{left:655.770000px;}
.xf3_c00186{left:657.510000px;}
.x8b_c00186{left:659.235000px;}
.x1f_c00186{left:660.960000px;}
.x59_c00186{left:663.555000px;}
.x104_c00186{left:665.280000px;}
.xf9_c00186{left:667.005000px;}
.xb8_c00186{left:668.730000px;}
.x20_c00186{left:670.470000px;}
.x4d_c00186{left:672.195000px;}
.x34_c00186{left:673.920000px;}
.x10a_c00186{left:677.370000px;}
.x80_c00186{left:679.965000px;}
.x93_c00186{left:681.690000px;}
.x99_c00186{left:685.155000px;}
.xf7_c00186{left:686.880000px;}
.xbe_c00186{left:688.605000px;}
.x111_c00186{left:691.200000px;}
.x31_c00186{left:692.925000px;}
.x9a_c00186{left:694.650000px;}
.x108_c00186{left:696.390000px;}
.x5a_c00186{left:698.115000px;}
.xfd_c00186{left:699.840000px;}
.x21_c00186{left:702.435000px;}
.xc_c00186{left:705.030000px;}
.x11f_c00186{left:706.755000px;}
.xf4_c00186{left:708.480000px;}
.x105_c00186{left:711.930000px;}
.x41_c00186{left:713.670000px;}
.xfa_c00186{left:715.395000px;}
.x4e_c00186{left:717.120000px;}
.xbf_c00186{left:719.715000px;}
.x81_c00186{left:722.310000px;}
.x35_c00186{left:725.760000px;}
.x6e_c00186{left:727.485000px;}
.x22_c00186{left:731.805000px;}
.xae_c00186{left:735.270000px;}
.x5b_c00186{left:737.850000px;}
.xd_c00186{left:739.590000px;}
.x100_c00186{left:743.040000px;}
.xf5_c00186{left:745.635000px;}
.x10e_c00186{left:747.360000px;}
.xe_c00186{left:749.085000px;}
.x112_c00186{left:750.810000px;}
.x11d_c00186{left:753.405000px;}
.x36_c00186{left:756.870000px;}
.x115_c00186{left:758.595000px;}
.x90_c00186{left:760.320000px;}
.xf0_c00186{left:762.915000px;}
.x94_c00186{left:764.640000px;}
.x23_c00186{left:766.365000px;}
.x82_c00186{left:770.685000px;}
.xf1_c00186{left:772.410000px;}
.x121_c00186{left:774.150000px;}
.x42_c00186{left:777.600000px;}
.x79_c00186{left:780.195000px;}
.x101_c00186{left:781.920000px;}
.xfb_c00186{left:784.515000px;}
.x37_c00186{left:786.240000px;}
.xf_c00186{left:789.689775px;}
.x116_c00186{left:791.430000px;}
.x5c_c00186{left:793.155000px;}
.x24_c00186{left:794.880000px;}
.x4f_c00186{left:797.475000px;}
.x10_c00186{left:800.924700px;}
.xaf_c00186{left:803.520000px;}
.xb9_c00186{left:805.245000px;}
.x5d_c00186{left:806.970000px;}
.x25_c00186{left:810.435000px;}
.x11_c00186{left:812.160000px;}
.xa2_c00186{left:815.610000px;}
.x6f_c00186{left:819.075000px;}
.x9b_c00186{left:820.800000px;}
.x7a_c00186{left:822.525000px;}
.x87_c00186{left:826.845000px;}
.x91_c00186{left:829.440000px;}
.x119_c00186{left:831.165000px;}
.xc0_c00186{left:835.485000px;}
.x110_c00186{left:837.210000px;}
.xfe_c00186{left:838.950000px;}
.x83_c00186{left:840.675000px;}
.xba_c00186{left:844.125000px;}
.x12_c00186{left:845.850000px;}
.x50_c00186{left:848.445000px;}
.x5e_c00186{left:851.040000px;}
.x13_c00186{left:855.360000px;}
.x38_c00186{left:857.955000px;}
.x26_c00186{left:862.275000px;}
.x88_c00186{left:864.870000px;}
.xf6_c00186{left:867.450000px;}
.x103_c00186{left:869.190000px;}
.x84_c00186{left:870.915000px;}
.xb4_c00186{left:872.640000px;}
.x11b_c00186{left:875.235000px;}
.xb0_c00186{left:877.830000px;}
.x113_c00186{left:879.555000px;}
.x117_c00186{left:881.280000px;}
.x43_c00186{left:883.005000px;}
.x7b_c00186{left:884.730000px;}
.x95_c00186{left:886.470000px;}
.xab_c00186{left:888.195000px;}
.xfc_c00186{left:890.790000px;}
.x14_c00186{left:892.515000px;}
.x10b_c00186{left:894.240000px;}
.x109_c00186{left:896.835000px;}
.x5f_c00186{left:899.430000px;}
.x70_c00186{left:902.010000px;}
.x10c_c00186{left:908.925000px;}
.x11a_c00186{left:911.520000px;}
.x107_c00186{left:914.970000px;}
.x122_c00186{left:916.710000px;}
.x118_c00186{left:925.350000px;}
.x123_c00186{left:957.315000px;}
.x125_c00186{left:962.490000px;}
.x129_c00186{left:965.085000px;}
.x126_c00186{left:974.595000px;}
.x127_c00186{left:991.875000px;}
.x128_c00186{left:999.645000px;}
.x124_c00186{left:1001.370000px;}
@media print{
.v2_c00186{vertical-align:-3.040000pt;}
.v0_c00186{vertical-align:0.000000pt;}
.v1_c00186{vertical-align:3.093333pt;}
.v3_c00186{vertical-align:12.266667pt;}
.ls3_c00186{letter-spacing:0.000000pt;}
.ls1_c00186{letter-spacing:47.111723pt;}
.ls0_c00186{letter-spacing:48.456320pt;}
.ls2_c00186{letter-spacing:386.592593pt;}
.ws3_c00186{word-spacing:-17.513493pt;}
.ws2_c00186{word-spacing:-15.900480pt;}
.ws1_c00186{word-spacing:-9.482880pt;}
.ws4_c00186{word-spacing:-8.863787pt;}
.ws0_c00186{word-spacing:-8.674773pt;}
.ws5_c00186{word-spacing:0.000000pt;}
.fsa_c00186{font-size:3.072000pt;}
.fs9_c00186{font-size:5.333333pt;}
.fs14_c00186{font-size:6.133333pt;}
.fs6_c00186{font-size:9.226667pt;}
.fsb_c00186{font-size:12.266667pt;}
.fs15_c00186{font-size:15.360000pt;}
.fs8_c00186{font-size:18.453333pt;}
.fs17_c00186{font-size:21.493333pt;}
.fs13_c00186{font-size:24.586667pt;}
.fs12_c00186{font-size:27.626667pt;}
.fse_c00186{font-size:30.720000pt;}
.fsf_c00186{font-size:33.813333pt;}
.fsd_c00186{font-size:36.853333pt;}
.fs4_c00186{font-size:39.946667pt;}
.fsc_c00186{font-size:42.986667pt;}
.fs11_c00186{font-size:46.080000pt;}
.fs7_c00186{font-size:49.173333pt;}
.fs0_c00186{font-size:52.213333pt;}
.fs2_c00186{font-size:55.306667pt;}
.fs10_c00186{font-size:58.346667pt;}
.fs1_c00186{font-size:61.440000pt;}
.fs16_c00186{font-size:64.533333pt;}
.fs3_c00186{font-size:67.573333pt;}
.fs18_c00186{font-size:70.666667pt;}
.fs19_c00186{font-size:73.706667pt;}
.fs1d_c00186{font-size:76.800000pt;}
.fs5_c00186{font-size:79.893333pt;}
.fs1c_c00186{font-size:82.933333pt;}
.fs1b_c00186{font-size:89.066667pt;}
.fs1a_c00186{font-size:92.160000pt;}
.y0_c00186{bottom:0.000000pt;}
.y1c7_c00186{bottom:194.306667pt;}
.y273_c00186{bottom:199.680000pt;}
.y1c6_c00186{bottom:200.453333pt;}
.y1ce_c00186{bottom:201.986667pt;}
.y1cb_c00186{bottom:202.746667pt;}
.y1cf_c00186{bottom:203.520000pt;}
.y1c9_c00186{bottom:204.293333pt;}
.y1d0_c00186{bottom:205.053333pt;}
.y1c8_c00186{bottom:205.826667pt;}
.y1ca_c00186{bottom:207.360000pt;}
.y1d1_c00186{bottom:208.893333pt;}
.y1cc_c00186{bottom:209.666667pt;}
.y1cd_c00186{bottom:210.426667pt;}
.y1c3_c00186{bottom:212.733333pt;}
.y1c2_c00186{bottom:213.506667pt;}
.y271_c00186{bottom:214.266667pt;}
.y1c4_c00186{bottom:216.573333pt;}
.y1c0_c00186{bottom:217.346667pt;}
.y1c1_c00186{bottom:218.106667pt;}
.y272_c00186{bottom:218.880000pt;}
.y1c5_c00186{bottom:219.653333pt;}
.y26f_c00186{bottom:220.413333pt;}
.y26e_c00186{bottom:221.186667pt;}
.y270_c00186{bottom:222.720000pt;}
.y1bf_c00186{bottom:226.560000pt;}
.y26a_c00186{bottom:232.706667pt;}
.y26b_c00186{bottom:233.466667pt;}
.y1b9_c00186{bottom:234.240000pt;}
.y26c_c00186{bottom:235.773333pt;}
.y1be_c00186{bottom:237.306667pt;}
.y1bc_c00186{bottom:238.853333pt;}
.y1ba_c00186{bottom:239.613333pt;}
.y1bd_c00186{bottom:241.146667pt;}
.y1bb_c00186{bottom:243.453333pt;}
.y26d_c00186{bottom:246.533333pt;}
.y1b7_c00186{bottom:247.293333pt;}
.y1b4_c00186{bottom:249.600000pt;}
.y1b5_c00186{bottom:250.373333pt;}
.y1b6_c00186{bottom:251.133333pt;}
.y265_c00186{bottom:251.906667pt;}
.y1b8_c00186{bottom:252.666667pt;}
.y266_c00186{bottom:254.213333pt;}
.y267_c00186{bottom:254.973333pt;}
.y269_c00186{bottom:255.746667pt;}
.y268_c00186{bottom:256.506667pt;}
.y1b1_c00186{bottom:261.893333pt;}
.y1b2_c00186{bottom:263.426667pt;}
.y1b0_c00186{bottom:264.186667pt;}
.y261_c00186{bottom:264.960000pt;}
.y263_c00186{bottom:267.266667pt;}
.y1b3_c00186{bottom:268.026667pt;}
.y262_c00186{bottom:270.333333pt;}
.y264_c00186{bottom:271.866667pt;}
.y1af_c00186{bottom:272.640000pt;}
.y1aa_c00186{bottom:277.253333pt;}
.y1ab_c00186{bottom:280.320000pt;}
.y1ac_c00186{bottom:281.093333pt;}
.y1ad_c00186{bottom:282.626667pt;}
.y1ae_c00186{bottom:283.386667pt;}
.y25d_c00186{bottom:284.160000pt;}
.y25e_c00186{bottom:284.933333pt;}
.y25f_c00186{bottom:286.466667pt;}
.y260_c00186{bottom:288.000000pt;}
.y25c_c00186{bottom:291.066667pt;}
.y1a4_c00186{bottom:294.906667pt;}
.y258_c00186{bottom:296.453333pt;}
.y1a5_c00186{bottom:297.213333pt;}
.y1a3_c00186{bottom:297.986667pt;}
.y259_c00186{bottom:298.746667pt;}
.y25a_c00186{bottom:299.520000pt;}
.y1a6_c00186{bottom:300.293333pt;}
.y1a7_c00186{bottom:301.053333pt;}
.y1a8_c00186{bottom:302.586667pt;}
.y25b_c00186{bottom:305.666667pt;}
.y19f_c00186{bottom:308.733333pt;}
.y19c_c00186{bottom:309.506667pt;}
.y1a0_c00186{bottom:310.266667pt;}
.y1a9_c00186{bottom:311.040000pt;}
.y19b_c00186{bottom:311.813333pt;}
.y19e_c00186{bottom:312.573333pt;}
.y1a2_c00186{bottom:314.106667pt;}
.y1a1_c00186{bottom:314.880000pt;}
.y255_c00186{bottom:316.413333pt;}
.y256_c00186{bottom:317.186667pt;}
.y257_c00186{bottom:319.493333pt;}
.y19d_c00186{bottom:321.786667pt;}
.y254_c00186{bottom:324.093333pt;}
.y198_c00186{bottom:325.626667pt;}
.y195_c00186{bottom:327.173333pt;}
.y19a_c00186{bottom:327.933333pt;}
.y196_c00186{bottom:329.466667pt;}
.y197_c00186{bottom:330.240000pt;}
.y199_c00186{bottom:331.013333pt;}
.y24f_c00186{bottom:331.773333pt;}
.y250_c00186{bottom:332.546667pt;}
.y251_c00186{bottom:333.306667pt;}
.y252_c00186{bottom:334.080000pt;}
.y194_c00186{bottom:335.613333pt;}
.y253_c00186{bottom:336.386667pt;}
.y18f_c00186{bottom:340.226667pt;}
.y193_c00186{bottom:343.293333pt;}
.y192_c00186{bottom:344.066667pt;}
.y191_c00186{bottom:344.826667pt;}
.y190_c00186{bottom:346.373333pt;}
.y24d_c00186{bottom:347.133333pt;}
.y24c_c00186{bottom:347.906667pt;}
.y24e_c00186{bottom:350.973333pt;}
.y18b_c00186{bottom:356.346667pt;}
.y18c_c00186{bottom:357.893333pt;}
.y18e_c00186{bottom:359.426667pt;}
.y18a_c00186{bottom:360.186667pt;}
.y24b_c00186{bottom:363.266667pt;}
.y24a_c00186{bottom:364.026667pt;}
.y249_c00186{bottom:364.800000pt;}
.y18d_c00186{bottom:366.333333pt;}
.y185_c00186{bottom:371.706667pt;}
.y186_c00186{bottom:372.480000pt;}
.y187_c00186{bottom:374.786667pt;}
.y189_c00186{bottom:375.546667pt;}
.y188_c00186{bottom:377.853333pt;}
.y245_c00186{bottom:379.386667pt;}
.y246_c00186{bottom:381.693333pt;}
.y247_c00186{bottom:382.466667pt;}
.y248_c00186{bottom:385.533333pt;}
.y17f_c00186{bottom:387.840000pt;}
.y182_c00186{bottom:389.373333pt;}
.y180_c00186{bottom:390.906667pt;}
.y241_c00186{bottom:391.680000pt;}
.y181_c00186{bottom:392.453333pt;}
.y183_c00186{bottom:393.213333pt;}
.y242_c00186{bottom:393.986667pt;}
.y240_c00186{bottom:394.746667pt;}
.y184_c00186{bottom:395.520000pt;}
.y244_c00186{bottom:397.053333pt;}
.y17e_c00186{bottom:403.200000pt;}
.y17d_c00186{bottom:404.733333pt;}
.y17c_c00186{bottom:405.506667pt;}
.y23d_c00186{bottom:406.266667pt;}
.y243_c00186{bottom:407.040000pt;}
.y17b_c00186{bottom:407.813333pt;}
.y23c_c00186{bottom:410.880000pt;}
.y23e_c00186{bottom:411.653333pt;}
.y23f_c00186{bottom:412.413333pt;}
.y174_c00186{bottom:418.560000pt;}
.y178_c00186{bottom:419.333333pt;}
.y176_c00186{bottom:420.093333pt;}
.y175_c00186{bottom:420.866667pt;}
.y173_c00186{bottom:421.626667pt;}
.y23a_c00186{bottom:423.173333pt;}
.y177_c00186{bottom:423.933333pt;}
.y179_c00186{bottom:424.706667pt;}
.y17a_c00186{bottom:425.466667pt;}
.y238_c00186{bottom:426.240000pt;}
.y239_c00186{bottom:427.013333pt;}
.y23b_c00186{bottom:429.306667pt;}
.y16c_c00186{bottom:435.453333pt;}
.y16f_c00186{bottom:436.226667pt;}
.y171_c00186{bottom:436.986667pt;}
.y235_c00186{bottom:438.533333pt;}
.y16d_c00186{bottom:439.293333pt;}
.y16e_c00186{bottom:440.066667pt;}
.y172_c00186{bottom:440.826667pt;}
.y234_c00186{bottom:441.600000pt;}
.y237_c00186{bottom:442.373333pt;}
.y236_c00186{bottom:443.906667pt;}
.y170_c00186{bottom:444.666667pt;}
.y16a_c00186{bottom:450.813333pt;}
.y16b_c00186{bottom:451.586667pt;}
.y169_c00186{bottom:452.346667pt;}
.y167_c00186{bottom:453.120000pt;}
.y168_c00186{bottom:453.893333pt;}
.y232_c00186{bottom:454.653333pt;}
.y230_c00186{bottom:456.960000pt;}
.y231_c00186{bottom:457.733333pt;}
.y233_c00186{bottom:463.866667pt;}
.y163_c00186{bottom:466.946667pt;}
.y165_c00186{bottom:467.706667pt;}
.y162_c00186{bottom:469.253333pt;}
.y22b_c00186{bottom:470.013333pt;}
.y164_c00186{bottom:470.786667pt;}
.y166_c00186{bottom:471.546667pt;}
.y22e_c00186{bottom:472.320000pt;}
.y22f_c00186{bottom:473.093333pt;}
.y22a_c00186{bottom:473.853333pt;}
.y22c_c00186{bottom:474.626667pt;}
.y22d_c00186{bottom:480.000000pt;}
.y15b_c00186{bottom:480.773333pt;}
.y15d_c00186{bottom:482.306667pt;}
.y15e_c00186{bottom:483.066667pt;}
.y15c_c00186{bottom:485.373333pt;}
.y226_c00186{bottom:486.906667pt;}
.y15f_c00186{bottom:487.680000pt;}
.y161_c00186{bottom:488.453333pt;}
.y160_c00186{bottom:489.213333pt;}
.y227_c00186{bottom:489.986667pt;}
.y229_c00186{bottom:492.293333pt;}
.y228_c00186{bottom:494.586667pt;}
.y15a_c00186{bottom:495.360000pt;}
.y152_c00186{bottom:499.973333pt;}
.y153_c00186{bottom:500.733333pt;}
.y154_c00186{bottom:501.506667pt;}
.y155_c00186{bottom:502.266667pt;}
.y157_c00186{bottom:503.040000pt;}
.y156_c00186{bottom:503.813333pt;}
.y224_c00186{bottom:504.573333pt;}
.y159_c00186{bottom:505.346667pt;}
.y225_c00186{bottom:507.653333pt;}
.y151_c00186{bottom:511.493333pt;}
.y158_c00186{bottom:512.253333pt;}
.y14c_c00186{bottom:516.093333pt;}
.y14e_c00186{bottom:516.866667pt;}
.y14d_c00186{bottom:517.626667pt;}
.y14f_c00186{bottom:519.173333pt;}
.y21e_c00186{bottom:520.706667pt;}
.y222_c00186{bottom:521.466667pt;}
.y223_c00186{bottom:522.240000pt;}
.y220_c00186{bottom:523.013333pt;}
.y221_c00186{bottom:523.773333pt;}
.y150_c00186{bottom:524.546667pt;}
.y21f_c00186{bottom:527.613333pt;}
.y148_c00186{bottom:529.920000pt;}
.y147_c00186{bottom:530.693333pt;}
.y149_c00186{bottom:531.453333pt;}
.y21a_c00186{bottom:532.226667pt;}
.y14a_c00186{bottom:535.293333pt;}
.y218_c00186{bottom:536.066667pt;}
.y219_c00186{bottom:536.826667pt;}
.y14b_c00186{bottom:537.600000pt;}
.y21b_c00186{bottom:538.373333pt;}
.y21c_c00186{bottom:539.133333pt;}
.y21d_c00186{bottom:540.666667pt;}
.y27a_c00186{bottom:543.746667pt;}
.y144_c00186{bottom:546.053333pt;}
.y143_c00186{bottom:546.813333pt;}
.y145_c00186{bottom:548.346667pt;}
.y279_c00186{bottom:549.120000pt;}
.y146_c00186{bottom:551.426667pt;}
.y216_c00186{bottom:552.186667pt;}
.y217_c00186{bottom:558.333333pt;}
.y13d_c00186{bottom:560.640000pt;}
.y13e_c00186{bottom:562.946667pt;}
.y214_c00186{bottom:563.706667pt;}
.y13f_c00186{bottom:564.480000pt;}
.y140_c00186{bottom:565.253333pt;}
.y141_c00186{bottom:566.013333pt;}
.y142_c00186{bottom:566.786667pt;}
.y213_c00186{bottom:568.320000pt;}
.y215_c00186{bottom:569.853333pt;}
.y139_c00186{bottom:578.306667pt;}
.y13b_c00186{bottom:579.840000pt;}
.y13a_c00186{bottom:581.373333pt;}
.y210_c00186{bottom:582.146667pt;}
.y20f_c00186{bottom:583.680000pt;}
.y211_c00186{bottom:585.986667pt;}
.y13c_c00186{bottom:589.826667pt;}
.y212_c00186{bottom:592.893333pt;}
.y133_c00186{bottom:593.666667pt;}
.y134_c00186{bottom:594.426667pt;}
.y135_c00186{bottom:595.200000pt;}
.y136_c00186{bottom:595.973333pt;}
.y137_c00186{bottom:596.733333pt;}
.y138_c00186{bottom:597.506667pt;}
.y20d_c00186{bottom:598.266667pt;}
.y20e_c00186{bottom:601.346667pt;}
.y131_c00186{bottom:608.253333pt;}
.y130_c00186{bottom:610.560000pt;}
.y132_c00186{bottom:611.333333pt;}
.y20a_c00186{bottom:612.093333pt;}
.y20b_c00186{bottom:613.626667pt;}
.y209_c00186{bottom:614.400000pt;}
.y20c_c00186{bottom:616.706667pt;}
.y12b_c00186{bottom:621.306667pt;}
.y12f_c00186{bottom:622.853333pt;}
.y12d_c00186{bottom:624.386667pt;}
.y12c_c00186{bottom:625.920000pt;}
.y12e_c00186{bottom:626.693333pt;}
.y203_c00186{bottom:628.226667pt;}
.y207_c00186{bottom:628.986667pt;}
.y204_c00186{bottom:629.760000pt;}
.y208_c00186{bottom:632.066667pt;}
.y206_c00186{bottom:633.600000pt;}
.y127_c00186{bottom:638.213333pt;}
.y205_c00186{bottom:638.973333pt;}
.y201_c00186{bottom:639.746667pt;}
.y128_c00186{bottom:640.506667pt;}
.y12a_c00186{bottom:643.586667pt;}
.y200_c00186{bottom:644.346667pt;}
.y202_c00186{bottom:646.653333pt;}
.y129_c00186{bottom:651.266667pt;}
.y125_c00186{bottom:654.333333pt;}
.y124_c00186{bottom:655.106667pt;}
.y126_c00186{bottom:655.866667pt;}
.y123_c00186{bottom:657.413333pt;}
.y1fe_c00186{bottom:658.173333pt;}
.y1fd_c00186{bottom:659.706667pt;}
.y1fc_c00186{bottom:660.480000pt;}
.y1ff_c00186{bottom:662.786667pt;}
.y120_c00186{bottom:668.933333pt;}
.y121_c00186{bottom:669.693333pt;}
.y1f7_c00186{bottom:670.466667pt;}
.y1f9_c00186{bottom:671.226667pt;}
.y1f8_c00186{bottom:672.000000pt;}
.y122_c00186{bottom:673.533333pt;}
.y1fa_c00186{bottom:675.066667pt;}
.y1fb_c00186{bottom:678.146667pt;}
.y11e_c00186{bottom:683.520000pt;}
.y11c_c00186{bottom:686.586667pt;}
.y11d_c00186{bottom:687.360000pt;}
.y11f_c00186{bottom:688.133333pt;}
.y1f1_c00186{bottom:690.426667pt;}
.y1f4_c00186{bottom:691.200000pt;}
.y1f2_c00186{bottom:691.973333pt;}
.y1f6_c00186{bottom:693.506667pt;}
.y1f5_c00186{bottom:694.266667pt;}
.y115_c00186{bottom:697.346667pt;}
.y1f3_c00186{bottom:698.880000pt;}
.y1f0_c00186{bottom:699.653333pt;}
.y116_c00186{bottom:701.186667pt;}
.y117_c00186{bottom:702.720000pt;}
.y118_c00186{bottom:703.493333pt;}
.y119_c00186{bottom:704.253333pt;}
.y11a_c00186{bottom:705.786667pt;}
.y1ed_c00186{bottom:706.560000pt;}
.y11b_c00186{bottom:707.333333pt;}
.y1ef_c00186{bottom:709.626667pt;}
.y10f_c00186{bottom:712.706667pt;}
.y110_c00186{bottom:715.013333pt;}
.y112_c00186{bottom:715.773333pt;}
.y111_c00186{bottom:716.546667pt;}
.y1ee_c00186{bottom:717.306667pt;}
.y1e8_c00186{bottom:718.080000pt;}
.y114_c00186{bottom:718.853333pt;}
.y1e9_c00186{bottom:721.146667pt;}
.y1ea_c00186{bottom:721.920000pt;}
.y1eb_c00186{bottom:723.453333pt;}
.y1ec_c00186{bottom:724.226667pt;}
.y113_c00186{bottom:727.293333pt;}
.y10d_c00186{bottom:731.906667pt;}
.y10e_c00186{bottom:732.666667pt;}
.y1e7_c00186{bottom:741.893333pt;}
.y109_c00186{bottom:743.426667pt;}
.y10b_c00186{bottom:745.733333pt;}
.y10a_c00186{bottom:746.493333pt;}
.y10c_c00186{bottom:747.266667pt;}
.y108_c00186{bottom:753.413333pt;}
.y103_c00186{bottom:762.626667pt;}
.y104_c00186{bottom:764.933333pt;}
.y105_c00186{bottom:765.693333pt;}
.y1e1_c00186{bottom:766.466667pt;}
.y1e2_c00186{bottom:767.226667pt;}
.y106_c00186{bottom:768.000000pt;}
.y102_c00186{bottom:768.773333pt;}
.y107_c00186{bottom:773.373333pt;}
.yfa_c00186{bottom:774.146667pt;}
.yfd_c00186{bottom:774.906667pt;}
.yfb_c00186{bottom:775.680000pt;}
.yff_c00186{bottom:776.453333pt;}
.y100_c00186{bottom:777.213333pt;}
.y1de_c00186{bottom:777.986667pt;}
.yfc_c00186{bottom:778.746667pt;}
.yfe_c00186{bottom:779.520000pt;}
.y101_c00186{bottom:781.053333pt;}
.y1df_c00186{bottom:782.586667pt;}
.y1e0_c00186{bottom:784.133333pt;}
.yf9_c00186{bottom:784.893333pt;}
.y1e6_c00186{bottom:787.200000pt;}
.yf4_c00186{bottom:790.266667pt;}
.yf5_c00186{bottom:794.106667pt;}
.yf8_c00186{bottom:794.880000pt;}
.yf6_c00186{bottom:796.413333pt;}
.y1dd_c00186{bottom:797.946667pt;}
.yf7_c00186{bottom:798.720000pt;}
.y1e4_c00186{bottom:799.493333pt;}
.y1e5_c00186{bottom:802.560000pt;}
.y278_c00186{bottom:803.333333pt;}
.yec_c00186{bottom:805.626667pt;}
.yf0_c00186{bottom:807.173333pt;}
.yee_c00186{bottom:807.933333pt;}
.yf2_c00186{bottom:808.706667pt;}
.yf3_c00186{bottom:809.466667pt;}
.yef_c00186{bottom:810.240000pt;}
.yf1_c00186{bottom:811.773333pt;}
.y1e3_c00186{bottom:812.546667pt;}
.yed_c00186{bottom:813.306667pt;}
.y1d8_c00186{bottom:817.920000pt;}
.y1da_c00186{bottom:818.693333pt;}
.y1db_c00186{bottom:819.453333pt;}
.y1d9_c00186{bottom:820.986667pt;}
.y1dc_c00186{bottom:821.760000pt;}
.yea_c00186{bottom:826.373333pt;}
.yeb_c00186{bottom:837.893333pt;}
.ye8_c00186{bottom:846.333333pt;}
.ye9_c00186{bottom:849.413333pt;}
.ye0_c00186{bottom:850.946667pt;}
.ye1_c00186{bottom:851.706667pt;}
.ye2_c00186{bottom:852.480000pt;}
.ye4_c00186{bottom:853.253333pt;}
.ydf_c00186{bottom:856.320000pt;}
.ye6_c00186{bottom:859.386667pt;}
.ye3_c00186{bottom:860.933333pt;}
.ye5_c00186{bottom:861.693333pt;}
.ye7_c00186{bottom:862.466667pt;}
.yd4_c00186{bottom:863.226667pt;}
.yd5_c00186{bottom:867.066667pt;}
.yd6_c00186{bottom:867.840000pt;}
.yd7_c00186{bottom:869.373333pt;}
.yd8_c00186{bottom:870.146667pt;}
.yd9_c00186{bottom:871.680000pt;}
.yda_c00186{bottom:873.986667pt;}
.ydc_c00186{bottom:875.520000pt;}
.ydb_c00186{bottom:876.293333pt;}
.yce_c00186{bottom:877.826667pt;}
.yde_c00186{bottom:878.586667pt;}
.yd0_c00186{bottom:879.360000pt;}
.ydd_c00186{bottom:880.133333pt;}
.yd1_c00186{bottom:880.893333pt;}
.ycb_c00186{bottom:881.666667pt;}
.yc9_c00186{bottom:882.426667pt;}
.yca_c00186{bottom:883.200000pt;}
.ycc_c00186{bottom:884.733333pt;}
.ycf_c00186{bottom:887.040000pt;}
.yc8_c00186{bottom:893.186667pt;}
.yd2_c00186{bottom:894.720000pt;}
.yd3_c00186{bottom:897.026667pt;}
.ycd_c00186{bottom:897.786667pt;}
.yc1_c00186{bottom:903.933333pt;}
.yc2_c00186{bottom:904.706667pt;}
.yc6_c00186{bottom:905.466667pt;}
.yc0_c00186{bottom:907.013333pt;}
.yc3_c00186{bottom:910.080000pt;}
.yc7_c00186{bottom:911.613333pt;}
.yc4_c00186{bottom:912.386667pt;}
.yc5_c00186{bottom:913.146667pt;}
.ybc_c00186{bottom:920.826667pt;}
.ybd_c00186{bottom:921.600000pt;}
.yb9_c00186{bottom:923.906667pt;}
.yb7_c00186{bottom:924.666667pt;}
.yb8_c00186{bottom:925.440000pt;}
.ybe_c00186{bottom:926.213333pt;}
.yba_c00186{bottom:926.973333pt;}
.ybf_c00186{bottom:927.746667pt;}
.ybb_c00186{bottom:930.813333pt;}
.yb4_c00186{bottom:937.733333pt;}
.yb5_c00186{bottom:938.493333pt;}
.yb1_c00186{bottom:939.266667pt;}
.yb3_c00186{bottom:941.573333pt;}
.yb6_c00186{bottom:943.866667pt;}
.yb2_c00186{bottom:950.013333pt;}
.ya9_c00186{bottom:951.546667pt;}
.ya8_c00186{bottom:952.320000pt;}
.yae_c00186{bottom:953.093333pt;}
.yaa_c00186{bottom:955.386667pt;}
.yaf_c00186{bottom:956.160000pt;}
.yab_c00186{bottom:956.933333pt;}
.yac_c00186{bottom:958.466667pt;}
.yb0_c00186{bottom:959.226667pt;}
.yad_c00186{bottom:960.000000pt;}
.ya6_c00186{bottom:969.213333pt;}
.ya7_c00186{bottom:969.986667pt;}
.ya5_c00186{bottom:971.520000pt;}
.ya1_c00186{bottom:972.293333pt;}
.ya2_c00186{bottom:973.053333pt;}
.ya3_c00186{bottom:973.826667pt;}
.ya4_c00186{bottom:974.586667pt;}
.ya0_c00186{bottom:983.040000pt;}
.y9c_c00186{bottom:984.573333pt;}
.y98_c00186{bottom:986.106667pt;}
.y9b_c00186{bottom:987.653333pt;}
.y9d_c00186{bottom:988.413333pt;}
.y9f_c00186{bottom:989.946667pt;}
.y99_c00186{bottom:991.493333pt;}
.y9e_c00186{bottom:992.253333pt;}
.y9a_c00186{bottom:994.560000pt;}
.y97_c00186{bottom:997.626667pt;}
.y90_c00186{bottom:999.173333pt;}
.y96_c00186{bottom:999.933333pt;}
.y8c_c00186{bottom:1000.706667pt;}
.y8e_c00186{bottom:1001.466667pt;}
.y8f_c00186{bottom:1002.240000pt;}
.y95_c00186{bottom:1003.773333pt;}
.y91_c00186{bottom:1004.546667pt;}
.y92_c00186{bottom:1005.306667pt;}
.y93_c00186{bottom:1006.853333pt;}
.y8d_c00186{bottom:1007.613333pt;}
.y94_c00186{bottom:1009.146667pt;}
.y8b_c00186{bottom:1012.986667pt;}
.y88_c00186{bottom:1015.293333pt;}
.y87_c00186{bottom:1017.600000pt;}
.y89_c00186{bottom:1018.373333pt;}
.y85_c00186{bottom:1019.133333pt;}
.y86_c00186{bottom:1019.906667pt;}
.y8a_c00186{bottom:1021.440000pt;}
.y83_c00186{bottom:1032.960000pt;}
.y79_c00186{bottom:1034.493333pt;}
.y7a_c00186{bottom:1035.266667pt;}
.y84_c00186{bottom:1036.026667pt;}
.y7d_c00186{bottom:1038.333333pt;}
.y7c_c00186{bottom:1039.106667pt;}
.y7b_c00186{bottom:1039.866667pt;}
.y7e_c00186{bottom:1044.480000pt;}
.y82_c00186{bottom:1048.320000pt;}
.y7f_c00186{bottom:1049.853333pt;}
.y80_c00186{bottom:1050.626667pt;}
.y81_c00186{bottom:1051.386667pt;}
.y71_c00186{bottom:1056.773333pt;}
.y70_c00186{bottom:1059.840000pt;}
.y74_c00186{bottom:1061.373333pt;}
.y73_c00186{bottom:1062.146667pt;}
.y78_c00186{bottom:1065.213333pt;}
.y75_c00186{bottom:1065.986667pt;}
.y76_c00186{bottom:1066.746667pt;}
.y77_c00186{bottom:1067.520000pt;}
.y72_c00186{bottom:1068.293333pt;}
.y62_c00186{bottom:1073.666667pt;}
.y63_c00186{bottom:1074.426667pt;}
.y64_c00186{bottom:1075.200000pt;}
.y65_c00186{bottom:1075.973333pt;}
.y68_c00186{bottom:1076.733333pt;}
.y6b_c00186{bottom:1077.506667pt;}
.y66_c00186{bottom:1078.266667pt;}
.y67_c00186{bottom:1079.040000pt;}
.y69_c00186{bottom:1079.813333pt;}
.y6d_c00186{bottom:1080.573333pt;}
.y6a_c00186{bottom:1081.346667pt;}
.y6c_c00186{bottom:1082.106667pt;}
.y6f_c00186{bottom:1083.653333pt;}
.y6e_c00186{bottom:1085.946667pt;}
.y58_c00186{bottom:1089.026667pt;}
.y59_c00186{bottom:1089.786667pt;}
.y5e_c00186{bottom:1091.333333pt;}
.y5b_c00186{bottom:1092.093333pt;}
.y5a_c00186{bottom:1092.866667pt;}
.y5f_c00186{bottom:1093.626667pt;}
.y61_c00186{bottom:1094.400000pt;}
.y57_c00186{bottom:1095.173333pt;}
.y5d_c00186{bottom:1095.933333pt;}
.y5c_c00186{bottom:1096.706667pt;}
.y60_c00186{bottom:1098.240000pt;}
.y4e_c00186{bottom:1105.146667pt;}
.y50_c00186{bottom:1105.920000pt;}
.y51_c00186{bottom:1106.693333pt;}
.y52_c00186{bottom:1108.226667pt;}
.y53_c00186{bottom:1108.986667pt;}
.y4f_c00186{bottom:1109.760000pt;}
.y54_c00186{bottom:1110.533333pt;}
.y56_c00186{bottom:1112.066667pt;}
.y55_c00186{bottom:1119.746667pt;}
.y45_c00186{bottom:1121.280000pt;}
.y43_c00186{bottom:1122.053333pt;}
.y42_c00186{bottom:1122.813333pt;}
.y44_c00186{bottom:1123.586667pt;}
.y46_c00186{bottom:1124.346667pt;}
.y47_c00186{bottom:1125.120000pt;}
.y4c_c00186{bottom:1125.893333pt;}
.y49_c00186{bottom:1126.653333pt;}
.y48_c00186{bottom:1128.186667pt;}
.y4a_c00186{bottom:1128.960000pt;}
.y4b_c00186{bottom:1130.493333pt;}
.y4d_c00186{bottom:1133.573333pt;}
.y3f_c00186{bottom:1139.706667pt;}
.y39_c00186{bottom:1140.480000pt;}
.y41_c00186{bottom:1142.013333pt;}
.y3a_c00186{bottom:1142.786667pt;}
.y40_c00186{bottom:1143.546667pt;}
.y36_c00186{bottom:1144.320000pt;}
.y37_c00186{bottom:1145.853333pt;}
.y3e_c00186{bottom:1146.626667pt;}
.y35_c00186{bottom:1147.386667pt;}
.y3b_c00186{bottom:1148.160000pt;}
.y3c_c00186{bottom:1149.693333pt;}
.y3d_c00186{bottom:1150.466667pt;}
.y32_c00186{bottom:1155.066667pt;}
.y31_c00186{bottom:1155.840000pt;}
.y38_c00186{bottom:1158.146667pt;}
.y34_c00186{bottom:1158.906667pt;}
.y33_c00186{bottom:1160.453333pt;}
.y30_c00186{bottom:1161.213333pt;}
.y2a_c00186{bottom:1161.986667pt;}
.y29_c00186{bottom:1162.746667pt;}
.y2b_c00186{bottom:1163.520000pt;}
.y2e_c00186{bottom:1164.293333pt;}
.y2c_c00186{bottom:1165.053333pt;}
.y2d_c00186{bottom:1165.826667pt;}
.y28_c00186{bottom:1167.360000pt;}
.y2f_c00186{bottom:1170.426667pt;}
.y26_c00186{bottom:1171.200000pt;}
.y27_c00186{bottom:1173.506667pt;}
.y24_c00186{bottom:1174.266667pt;}
.y25_c00186{bottom:1175.040000pt;}
.y1e_c00186{bottom:1175.813333pt;}
.y1c_c00186{bottom:1177.346667pt;}
.y1d_c00186{bottom:1178.106667pt;}
.y21_c00186{bottom:1178.880000pt;}
.y1f_c00186{bottom:1179.653333pt;}
.y20_c00186{bottom:1180.413333pt;}
.y22_c00186{bottom:1183.493333pt;}
.y23_c00186{bottom:1187.333333pt;}
.y1a_c00186{bottom:1190.400000pt;}
.y19_c00186{bottom:1191.173333pt;}
.y1b_c00186{bottom:1192.706667pt;}
.ye_c00186{bottom:1194.240000pt;}
.yf_c00186{bottom:1195.013333pt;}
.y10_c00186{bottom:1195.773333pt;}
.y11_c00186{bottom:1196.546667pt;}
.y12_c00186{bottom:1197.306667pt;}
.y16_c00186{bottom:1201.920000pt;}
.y15_c00186{bottom:1204.226667pt;}
.y13_c00186{bottom:1204.986667pt;}
.y14_c00186{bottom:1205.760000pt;}
.y17_c00186{bottom:1207.293333pt;}
.y18_c00186{bottom:1208.826667pt;}
.y1d2_c00186{bottom:1210.373333pt;}
.y4_c00186{bottom:1214.973333pt;}
.y2_c00186{bottom:1215.746667pt;}
.y3_c00186{bottom:1217.280000pt;}
.y6_c00186{bottom:1218.053333pt;}
.y5_c00186{bottom:1219.586667pt;}
.yd_c00186{bottom:1220.346667pt;}
.y8_c00186{bottom:1221.120000pt;}
.y7_c00186{bottom:1221.893333pt;}
.yb_c00186{bottom:1224.960000pt;}
.y9_c00186{bottom:1227.266667pt;}
.ya_c00186{bottom:1228.026667pt;}
.yc_c00186{bottom:1230.333333pt;}
.y1_c00186{bottom:1238.786667pt;}
.y1d7_c00186{bottom:1239.546667pt;}
.y277_c00186{bottom:1248.000000pt;}
.y276_c00186{bottom:1255.680000pt;}
.y275_c00186{bottom:1261.826667pt;}
.y1d5_c00186{bottom:1277.186667pt;}
.y1d3_c00186{bottom:1277.946667pt;}
.y1d4_c00186{bottom:1278.720000pt;}
.y1d6_c00186{bottom:1284.093333pt;}
.y274_c00186{bottom:1284.866667pt;}
.hc_c00186{height:2.764500pt;}
.hb_c00186{height:4.799479pt;}
.h16_c00186{height:5.519401pt;}
.h21_c00186{height:7.839479pt;}
.h7_c00186{height:8.303099pt;}
.hd_c00186{height:11.038802pt;}
.h17_c00186{height:13.822500pt;}
.ha_c00186{height:16.606198pt;}
.h19_c00186{height:19.341901pt;}
.h15_c00186{height:22.125599pt;}
.h14_c00186{height:24.861302pt;}
.h10_c00186{height:27.645000pt;}
.h11_c00186{height:30.428698pt;}
.hf_c00186{height:33.164401pt;}
.h5_c00186{height:35.948099pt;}
.he_c00186{height:38.683802pt;}
.h13_c00186{height:41.467500pt;}
.h8_c00186{height:44.251198pt;}
.h1a_c00186{height:44.560833pt;}
.h2_c00186{height:46.986901pt;}
.h9_c00186{height:49.770599pt;}
.h12_c00186{height:52.506302pt;}
.h20_c00186{height:53.734167pt;}
.h3_c00186{height:55.290000pt;}
.h18_c00186{height:58.073698pt;}
.h4_c00186{height:60.809401pt;}
.h1b_c00186{height:63.593099pt;}
.h1c_c00186{height:66.328802pt;}
.h22_c00186{height:69.112500pt;}
.h6_c00186{height:71.896198pt;}
.h1f_c00186{height:74.631901pt;}
.h1e_c00186{height:80.151302pt;}
.h1d_c00186{height:82.935000pt;}
.h0_c00186{height:1353.986667pt;}
.h1_c00186{height:1354.000000pt;}
.w0_c00186{width:984.573333pt;}
.w1_c00186{width:984.666667pt;}
.x0_c00186{left:0.000000pt;}
.xee_c00186{left:164.346667pt;}
.xef_c00186{left:174.333333pt;}
.x7c_c00186{left:194.306667pt;}
.x60_c00186{left:198.906667pt;}
.x85_c00186{left:207.360000pt;}
.x69_c00186{left:211.973333pt;}
.x61_c00186{left:214.266667pt;}
.xc4_c00186{left:215.813333pt;}
.x44_c00186{left:218.880000pt;}
.x8c_c00186{left:222.720000pt;}
.x29_c00186{left:225.026667pt;}
.x6a_c00186{left:226.560000pt;}
.x86_c00186{left:228.093333pt;}
.x9c_c00186{left:229.626667pt;}
.x96_c00186{left:231.933333pt;}
.x45_c00186{left:233.466667pt;}
.xe1_c00186{left:235.013333pt;}
.xde_c00186{left:236.546667pt;}
.xea_c00186{left:238.080000pt;}
.xb1_c00186{left:239.613333pt;}
.x39_c00186{left:241.920000pt;}
.xc1_c00186{left:243.453333pt;}
.x46_c00186{left:245.760000pt;}
.x2a_c00186{left:248.066667pt;}
.x3_c00186{left:249.600000pt;}
.x62_c00186{left:251.133333pt;}
.x71_c00186{left:252.666667pt;}
.xa3_c00186{left:254.213333pt;}
.xc5_c00186{left:256.506667pt;}
.xda_c00186{left:258.813333pt;}
.x2b_c00186{left:261.120000pt;}
.xeb_c00186{left:262.653333pt;}
.xb2_c00186{left:266.493333pt;}
.x63_c00186{left:271.866667pt;}
.x4_c00186{left:276.480000pt;}
.xec_c00186{left:278.013333pt;}
.xca_c00186{left:279.546667pt;}
.x47_c00186{left:281.853333pt;}
.xd2_c00186{left:284.160000pt;}
.x3a_c00186{left:285.693333pt;}
.xc9_c00186{left:287.226667pt;}
.x5_c00186{left:290.306667pt;}
.xbb_c00186{left:292.613333pt;}
.xa6_c00186{left:294.146667pt;}
.x51_c00186{left:295.680000pt;}
.x15_c00186{left:298.746667pt;}
.xcb_c00186{left:301.826667pt;}
.x2c_c00186{left:303.360000pt;}
.xe6_c00186{left:304.893333pt;}
.x3b_c00186{left:306.426667pt;}
.xbc_c00186{left:308.733333pt;}
.x16_c00186{left:310.266667pt;}
.x48_c00186{left:312.573333pt;}
.xe7_c00186{left:314.106667pt;}
.xd1_c00186{left:317.186667pt;}
.x7d_c00186{left:318.720000pt;}
.x89_c00186{left:320.253333pt;}
.x52_c00186{left:321.786667pt;}
.xdf_c00186{left:323.333333pt;}
.x17_c00186{left:325.626667pt;}
.x2d_c00186{left:327.173333pt;}
.x72_c00186{left:328.706667pt;}
.xbd_c00186{left:330.240000pt;}
.x3c_c00186{left:331.773333pt;}
.x53_c00186{left:334.853333pt;}
.x64_c00186{left:336.386667pt;}
.x7e_c00186{left:337.920000pt;}
.x18_c00186{left:340.986667pt;}
.x49_c00186{left:343.293333pt;}
.xe9_c00186{left:345.600000pt;}
.x54_c00186{left:347.133333pt;}
.x40_c00186{left:349.440000pt;}
.xd4_c00186{left:352.506667pt;}
.x19_c00186{left:356.346667pt;}
.xc7_c00186{left:358.653333pt;}
.x2e_c00186{left:360.186667pt;}
.xb5_c00186{left:362.493333pt;}
.x55_c00186{left:364.026667pt;}
.x27_c00186{left:367.866667pt;}
.x56_c00186{left:371.706667pt;}
.x9d_c00186{left:375.546667pt;}
.xce_c00186{left:377.853333pt;}
.x1a_c00186{left:379.386667pt;}
.xc3_c00186{left:380.933333pt;}
.x97_c00186{left:382.466667pt;}
.x57_c00186{left:385.533333pt;}
.x2f_c00186{left:387.840000pt;}
.xa7_c00186{left:390.146667pt;}
.x1b_c00186{left:391.680000pt;}
.xe4_c00186{left:393.213333pt;}
.xd5_c00186{left:394.746667pt;}
.x8d_c00186{left:396.293333pt;}
.xd3_c00186{left:398.586667pt;}
.xa8_c00186{left:402.426667pt;}
.x1c_c00186{left:404.733333pt;}
.xcf_c00186{left:407.040000pt;}
.x4a_c00186{left:408.573333pt;}
.x6_c00186{left:411.653333pt;}
.xc2_c00186{left:414.720000pt;}
.xd9_c00186{left:418.560000pt;}
.xed_c00186{left:420.093333pt;}
.x73_c00186{left:422.400000pt;}
.xb6_c00186{left:423.933333pt;}
.xd6_c00186{left:425.466667pt;}
.xcd_c00186{left:427.773333pt;}
.x65_c00186{left:430.080000pt;}
.xe2_c00186{left:431.613333pt;}
.xdd_c00186{left:435.453333pt;}
.x74_c00186{left:436.986667pt;}
.xd7_c00186{left:438.533333pt;}
.x92_c00186{left:440.066667pt;}
.x1_c00186{left:441.600000pt;}
.x98_c00186{left:443.906667pt;}
.xd0_c00186{left:448.506667pt;}
.x66_c00186{left:450.053333pt;}
.xc6_c00186{left:451.586667pt;}
.xd8_c00186{left:453.120000pt;}
.xe5_c00186{left:454.653333pt;}
.xa9_c00186{left:456.960000pt;}
.x9e_c00186{left:458.493333pt;}
.x75_c00186{left:460.026667pt;}
.x2_c00186{left:463.106667pt;}
.x7_c00186{left:464.640000pt;}
.xa4_c00186{left:467.706667pt;}
.x3d_c00186{left:470.013333pt;}
.x8_c00186{left:472.320000pt;}
.xac_c00186{left:473.853333pt;}
.xcc_c00186{left:475.386667pt;}
.x6b_c00186{left:477.693333pt;}
.xe0_c00186{left:479.226667pt;}
.xe8_c00186{left:480.773333pt;}
.xe3_c00186{left:482.306667pt;}
.x30_c00186{left:486.146667pt;}
.xb3_c00186{left:487.680000pt;}
.x3e_c00186{left:489.986667pt;}
.xdc_c00186{left:491.520000pt;}
.x8e_c00186{left:494.586667pt;}
.x9f_c00186{left:496.893333pt;}
.x8f_c00186{left:498.426667pt;}
.xdb_c00186{left:501.506667pt;}
.x67_c00186{left:503.813333pt;}
.x76_c00186{left:506.880000pt;}
.xc8_c00186{left:510.720000pt;}
.x7f_c00186{left:512.253333pt;}
.x68_c00186{left:514.560000pt;}
.xaa_c00186{left:516.093333pt;}
.x1d_c00186{left:518.400000pt;}
.x4b_c00186{left:519.933333pt;}
.x8a_c00186{left:521.466667pt;}
.xa5_c00186{left:523.013333pt;}
.x3f_c00186{left:524.546667pt;}
.xf2_c00186{left:526.080000pt;}
.x102_c00186{left:527.613333pt;}
.x106_c00186{left:529.146667pt;}
.x10f_c00186{left:530.693333pt;}
.x11c_c00186{left:532.226667pt;}
.x28_c00186{left:538.373333pt;}
.x9_c00186{left:539.906667pt;}
.x1e_c00186{left:542.213333pt;}
.x32_c00186{left:543.746667pt;}
.x77_c00186{left:545.280000pt;}
.x6c_c00186{left:546.813333pt;}
.xa0_c00186{left:549.120000pt;}
.xad_c00186{left:550.653333pt;}
.xf8_c00186{left:552.960000pt;}
.xa_c00186{left:556.026667pt;}
.x120_c00186{left:557.573333pt;}
.x11e_c00186{left:559.106667pt;}
.x78_c00186{left:560.640000pt;}
.x4c_c00186{left:562.946667pt;}
.xff_c00186{left:564.480000pt;}
.x10d_c00186{left:566.786667pt;}
.x114_c00186{left:568.320000pt;}
.x58_c00186{left:570.626667pt;}
.xb7_c00186{left:573.693333pt;}
.xa1_c00186{left:575.226667pt;}
.x6d_c00186{left:576.773333pt;}
.xb_c00186{left:579.066667pt;}
.x33_c00186{left:582.906667pt;}
.xf3_c00186{left:584.453333pt;}
.x8b_c00186{left:585.986667pt;}
.x1f_c00186{left:587.520000pt;}
.x59_c00186{left:589.826667pt;}
.x104_c00186{left:591.360000pt;}
.xf9_c00186{left:592.893333pt;}
.xb8_c00186{left:594.426667pt;}
.x20_c00186{left:595.973333pt;}
.x4d_c00186{left:597.506667pt;}
.x34_c00186{left:599.040000pt;}
.x10a_c00186{left:602.106667pt;}
.x80_c00186{left:604.413333pt;}
.x93_c00186{left:605.946667pt;}
.x99_c00186{left:609.026667pt;}
.xf7_c00186{left:610.560000pt;}
.xbe_c00186{left:612.093333pt;}
.x111_c00186{left:614.400000pt;}
.x31_c00186{left:615.933333pt;}
.x9a_c00186{left:617.466667pt;}
.x108_c00186{left:619.013333pt;}
.x5a_c00186{left:620.546667pt;}
.xfd_c00186{left:622.080000pt;}
.x21_c00186{left:624.386667pt;}
.xc_c00186{left:626.693333pt;}
.x11f_c00186{left:628.226667pt;}
.xf4_c00186{left:629.760000pt;}
.x105_c00186{left:632.826667pt;}
.x41_c00186{left:634.373333pt;}
.xfa_c00186{left:635.906667pt;}
.x4e_c00186{left:637.440000pt;}
.xbf_c00186{left:639.746667pt;}
.x81_c00186{left:642.053333pt;}
.x35_c00186{left:645.120000pt;}
.x6e_c00186{left:646.653333pt;}
.x22_c00186{left:650.493333pt;}
.xae_c00186{left:653.573333pt;}
.x5b_c00186{left:655.866667pt;}
.xd_c00186{left:657.413333pt;}
.x100_c00186{left:660.480000pt;}
.xf5_c00186{left:662.786667pt;}
.x10e_c00186{left:664.320000pt;}
.xe_c00186{left:665.853333pt;}
.x112_c00186{left:667.386667pt;}
.x11d_c00186{left:669.693333pt;}
.x36_c00186{left:672.773333pt;}
.x115_c00186{left:674.306667pt;}
.x90_c00186{left:675.840000pt;}
.xf0_c00186{left:678.146667pt;}
.x94_c00186{left:679.680000pt;}
.x23_c00186{left:681.213333pt;}
.x82_c00186{left:685.053333pt;}
.xf1_c00186{left:686.586667pt;}
.x121_c00186{left:688.133333pt;}
.x42_c00186{left:691.200000pt;}
.x79_c00186{left:693.506667pt;}
.x101_c00186{left:695.040000pt;}
.xfb_c00186{left:697.346667pt;}
.x37_c00186{left:698.880000pt;}
.xf_c00186{left:701.946467pt;}
.x116_c00186{left:703.493333pt;}
.x5c_c00186{left:705.026667pt;}
.x24_c00186{left:706.560000pt;}
.x4f_c00186{left:708.866667pt;}
.x10_c00186{left:711.933067pt;}
.xaf_c00186{left:714.240000pt;}
.xb9_c00186{left:715.773333pt;}
.x5d_c00186{left:717.306667pt;}
.x25_c00186{left:720.386667pt;}
.x11_c00186{left:721.920000pt;}
.xa2_c00186{left:724.986667pt;}
.x6f_c00186{left:728.066667pt;}
.x9b_c00186{left:729.600000pt;}
.x7a_c00186{left:731.133333pt;}
.x87_c00186{left:734.973333pt;}
.x91_c00186{left:737.280000pt;}
.x119_c00186{left:738.813333pt;}
.xc0_c00186{left:742.653333pt;}
.x110_c00186{left:744.186667pt;}
.xfe_c00186{left:745.733333pt;}
.x83_c00186{left:747.266667pt;}
.xba_c00186{left:750.333333pt;}
.x12_c00186{left:751.866667pt;}
.x50_c00186{left:754.173333pt;}
.x5e_c00186{left:756.480000pt;}
.x13_c00186{left:760.320000pt;}
.x38_c00186{left:762.626667pt;}
.x26_c00186{left:766.466667pt;}
.x88_c00186{left:768.773333pt;}
.xf6_c00186{left:771.066667pt;}
.x103_c00186{left:772.613333pt;}
.x84_c00186{left:774.146667pt;}
.xb4_c00186{left:775.680000pt;}
.x11b_c00186{left:777.986667pt;}
.xb0_c00186{left:780.293333pt;}
.x113_c00186{left:781.826667pt;}
.x117_c00186{left:783.360000pt;}
.x43_c00186{left:784.893333pt;}
.x7b_c00186{left:786.426667pt;}
.x95_c00186{left:787.973333pt;}
.xab_c00186{left:789.506667pt;}
.xfc_c00186{left:791.813333pt;}
.x14_c00186{left:793.346667pt;}
.x10b_c00186{left:794.880000pt;}
.x109_c00186{left:797.186667pt;}
.x5f_c00186{left:799.493333pt;}
.x70_c00186{left:801.786667pt;}
.x10c_c00186{left:807.933333pt;}
.x11a_c00186{left:810.240000pt;}
.x107_c00186{left:813.306667pt;}
.x122_c00186{left:814.853333pt;}
.x118_c00186{left:822.533333pt;}
.x123_c00186{left:850.946667pt;}
.x125_c00186{left:855.546667pt;}
.x129_c00186{left:857.853333pt;}
.x126_c00186{left:866.306667pt;}
.x127_c00186{left:881.666667pt;}
.x128_c00186{left:888.573333pt;}
.x124_c00186{left:890.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_317a7cbef071f129faa22382.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.109863;font-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_c00187{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00187{transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);}
.m15_c00187{transform:matrix(0.051525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051525,0.000000,0.000000,0.250000,0,0);}
.mba_c00187{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);}
.m8c_c00187{transform:matrix(0.085250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085250,0.000000,0.000000,0.250000,0,0);}
.m23_c00187{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m17_c00187{transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);}
.mc4_c00187{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);}
.m8_c00187{transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);}
.m87_c00187{transform:matrix(0.121725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121725,0.000000,0.000000,0.250000,0,0);}
.mb6_c00187{transform:matrix(0.121800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121800,0.000000,0.000000,0.250000,0,0);}
.m92_c00187{transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);}
.m10_c00187{transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);}
.m83_c00187{transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);}
.m8f_c00187{transform:matrix(0.134925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134925,0.000000,0.000000,0.250000,0,0);}
.m1e_c00187{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m1f_c00187{transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);}
.mae_c00187{transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);}
.m9c_c00187{transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);}
.m4_c00187{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m24_c00187{transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);}
.m55_c00187{transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);}
.m25_c00187{transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);}
.m77_c00187{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);}
.m5c_c00187{transform:matrix(0.149575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149575,0.000000,0.000000,0.250000,0,0);}
.m6a_c00187{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.m9e_c00187{transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);}
.m58_c00187{transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);}
.m4c_c00187{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m61_c00187{transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);}
.mc0_c00187{transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);}
.m99_c00187{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m40_c00187{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m2d_c00187{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m13_c00187{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.m2f_c00187{transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);}
.mc8_c00187{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m8e_c00187{transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);}
.mb8_c00187{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.ma0_c00187{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_c00187{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.m19_c00187{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);}
.m5f_c00187{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.m1b_c00187{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);}
.mc5_c00187{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);}
.m1a_c00187{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.ma8_c00187{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.m18_c00187{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m9f_c00187{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);}
.mb5_c00187{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.mb1_c00187{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m41_c00187{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m45_c00187{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.m90_c00187{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc3_c00187{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);}
.m16_c00187{transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);}
.m60_c00187{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);}
.m9b_c00187{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m88_c00187{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m4e_c00187{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);}
.ma9_c00187{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m9a_c00187{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);}
.m1_c00187{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);}
.m73_c00187{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m98_c00187{transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);}
.m6c_c00187{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m36_c00187{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m89_c00187{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m54_c00187{transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);}
.m8b_c00187{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);}
.m50_c00187{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.ma7_c00187{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);}
.mac_c00187{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m44_c00187{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.mb3_c00187{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);}
.m72_c00187{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);}
.ma6_c00187{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.m97_c00187{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);}
.m4d_c00187{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m8a_c00187{transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);}
.m57_c00187{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);}
.mc2_c00187{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.m6e_c00187{transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);}
.m9d_c00187{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);}
.m5d_c00187{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m5b_c00187{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);}
.mc6_c00187{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);}
.mb2_c00187{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);}
.m43_c00187{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.m67_c00187{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);}
.m71_c00187{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.mb4_c00187{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);}
.m81_c00187{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);}
.mb0_c00187{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.m79_c00187{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);}
.m56_c00187{transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);}
.m2c_c00187{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);}
.m42_c00187{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);}
.m78_c00187{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);}
.maf_c00187{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);}
.m95_c00187{transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);}
.m76_c00187{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m7b_c00187{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);}
.m91_c00187{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);}
.m8d_c00187{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);}
.m84_c00187{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.mbf_c00187{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00187{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m4a_c00187{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.mad_c00187{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);}
.m74_c00187{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m59_c00187{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m86_c00187{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.m6d_c00187{transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);}
.m1d_c00187{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);}
.mab_c00187{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);}
.m2b_c00187{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);}
.m27_c00187{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m34_c00187{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);}
.m1c_c00187{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);}
.m32_c00187{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);}
.ma_c00187{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);}
.m28_c00187{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m39_c00187{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m31_c00187{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);}
.m4f_c00187{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m38_c00187{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);}
.m3_c00187{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);}
.mf_c00187{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00187{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);}
.mc_c00187{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m48_c00187{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m30_c00187{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);}
.m49_c00187{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c00187{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);}
.m33_c00187{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);}
.m37_c00187{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00187{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m29_c00187{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);}
.m14_c00187{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m75_c00187{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);}
.m20_c00187{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c00187{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m53_c00187{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m80_c00187{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.maa_c00187{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m65_c00187{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);}
.m63_c00187{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00187{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m26_c00187{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c00187{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m47_c00187{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.me_c00187{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);}
.m22_c00187{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00187{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m7d_c00187{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);}
.m62_c00187{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m35_c00187{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);}
.m12_c00187{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m9_c00187{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00187{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00187{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m68_c00187{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00187{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m94_c00187{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00187{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00187{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00187{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00187{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);}
.mbe_c00187{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00187{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m64_c00187{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);}
.m82_c00187{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00187{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2_c00187{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);}
.mc7_c00187{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00187{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m6_c00187{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m51_c00187{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00187{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);}
.m52_c00187{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00187{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00187{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m70_c00187{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00187{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);}
.m3e_c00187{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m93_c00187{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m21_c00187{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00187{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00187{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.m7_c00187{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00187{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.ma1_c00187{transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);}
.mb7_c00187{transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);}
.md_c00187{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m85_c00187{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.m69_c00187{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m96_c00187{transform:matrix(1.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.722500,0.000000,0.000000,0.250000,0,0);}
.m46_c00187{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00187{transform:matrix(1.915000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.915000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.915000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00187{transform:matrix(3.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.255000,0.000000,0.000000,0.250000,0,0);}
.v1_c00187{vertical-align:-38.040000px;}
.v0_c00187{vertical-align:0.000000px;}
.ls2_c00187{letter-spacing:0.000000px;}
.ls0_c00187{letter-spacing:22.237440px;}
.ls1_c00187{letter-spacing:52.047033px;}
.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;}
}
.ws1_c00187{word-spacing:0.000000px;}
.ws0_c00187{word-spacing:28.826400px;}
.fc0_c00187{color:transparent;}
.fs10_c00187{font-size:3.456000px;}
.fs4_c00187{font-size:6.000000px;}
.fsb_c00187{font-size:6.900000px;}
.fsf_c00187{font-size:10.380000px;}
.fsa_c00187{font-size:13.800000px;}
.fs1_c00187{font-size:17.280000px;}
.fs2_c00187{font-size:20.760000px;}
.fsc_c00187{font-size:24.180000px;}
.fs3_c00187{font-size:27.660000px;}
.fs5_c00187{font-size:31.080000px;}
.fs18_c00187{font-size:34.560000px;}
.fs11_c00187{font-size:38.040000px;}
.fs17_c00187{font-size:41.460000px;}
.fs0_c00187{font-size:44.940000px;}
.fs14_c00187{font-size:48.360000px;}
.fsd_c00187{font-size:51.840000px;}
.fs19_c00187{font-size:55.320000px;}
.fs1a_c00187{font-size:58.740000px;}
.fs7_c00187{font-size:62.220000px;}
.fs12_c00187{font-size:65.640000px;}
.fs8_c00187{font-size:69.120000px;}
.fs16_c00187{font-size:72.600000px;}
.fs13_c00187{font-size:76.020000px;}
.fs15_c00187{font-size:79.500000px;}
.fs9_c00187{font-size:82.920000px;}
.fse_c00187{font-size:86.400000px;}
.fs1b_c00187{font-size:100.200000px;}
.fs1c_c00187{font-size:107.160000px;}
.fs6_c00187{font-size:120.960000px;}
.y0_c00187{bottom:0.000000px;}
.yd1_c00187{bottom:808.710000px;}
.yd0_c00187{bottom:859.680000px;}
.ycf_c00187{bottom:876.960000px;}
.yce_c00187{bottom:889.920000px;}
.ycd_c00187{bottom:895.110000px;}
.ycc_c00187{bottom:948.675000px;}
.yc0_c00187{bottom:956.445000px;}
.ybe_c00187{bottom:959.040000px;}
.ybd_c00187{bottom:963.360000px;}
.ybf_c00187{bottom:965.085000px;}
.yba_c00187{bottom:965.955000px;}
.ybc_c00187{bottom:971.130000px;}
.ybb_c00187{bottom:975.450000px;}
.yb8_c00187{bottom:978.045000px;}
.yb6_c00187{bottom:978.915000px;}
.yb9_c00187{bottom:980.640000px;}
.yb7_c00187{bottom:981.510000px;}
.yb5_c00187{bottom:982.365000px;}
.yb4_c00187{bottom:983.235000px;}
.yb3_c00187{bottom:997.920000px;}
.yb0_c00187{bottom:998.790000px;}
.yb1_c00187{bottom:999.645000px;}
.ycb_c00187{bottom:1001.370000px;}
.yb2_c00187{bottom:1003.110000px;}
.yaf_c00187{bottom:1013.475000px;}
.yac_c00187{bottom:1014.330000px;}
.yab_c00187{bottom:1015.200000px;}
.yad_c00187{bottom:1016.070000px;}
.yae_c00187{bottom:1016.925000px;}
.yaa_c00187{bottom:1017.795000px;}
.ya9_c00187{bottom:1031.610000px;}
.ya8_c00187{bottom:1032.480000px;}
.yd6_c00187{bottom:1035.075000px;}
.yca_c00187{bottom:1035.930000px;}
.ya7_c00187{bottom:1036.800000px;}
.ya3_c00187{bottom:1051.485000px;}
.ya2_c00187{bottom:1052.355000px;}
.ya6_c00187{bottom:1053.210000px;}
.ya4_c00187{bottom:1054.080000px;}
.ya5_c00187{bottom:1054.950000px;}
.yc9_c00187{bottom:1055.805000px;}
.ya1_c00187{bottom:1063.590000px;}
.y9d_c00187{bottom:1066.170000px;}
.y9c_c00187{bottom:1067.040000px;}
.y9b_c00187{bottom:1067.910000px;}
.y99_c00187{bottom:1068.765000px;}
.y9a_c00187{bottom:1069.635000px;}
.y9f_c00187{bottom:1070.490000px;}
.yc8_c00187{bottom:1071.360000px;}
.yd5_c00187{bottom:1072.230000px;}
.ya0_c00187{bottom:1073.085000px;}
.y9e_c00187{bottom:1073.955000px;}
.y98_c00187{bottom:1083.450000px;}
.y95_c00187{bottom:1086.045000px;}
.y97_c00187{bottom:1087.770000px;}
.y94_c00187{bottom:1088.640000px;}
.y93_c00187{bottom:1089.510000px;}
.y92_c00187{bottom:1090.365000px;}
.y96_c00187{bottom:1091.235000px;}
.y91_c00187{bottom:1096.410000px;}
.yc7_c00187{bottom:1098.150000px;}
.y8d_c00187{bottom:1099.005000px;}
.y8f_c00187{bottom:1099.875000px;}
.y8e_c00187{bottom:1101.600000px;}
.y90_c00187{bottom:1102.470000px;}
.yd3_c00187{bottom:1105.920000px;}
.yd4_c00187{bottom:1110.240000px;}
.y88_c00187{bottom:1119.750000px;}
.y89_c00187{bottom:1120.605000px;}
.y8c_c00187{bottom:1123.200000px;}
.y8a_c00187{bottom:1124.070000px;}
.y6_c00187{bottom:1124.925000px;}
.yc6_c00187{bottom:1126.650000px;}
.y8b_c00187{bottom:1128.390000px;}
.y5_c00187{bottom:1135.290000px;}
.y87_c00187{bottom:1136.160000px;}
.y82_c00187{bottom:1137.030000px;}
.y83_c00187{bottom:1137.885000px;}
.y85_c00187{bottom:1138.755000px;}
.y84_c00187{bottom:1139.610000px;}
.y86_c00187{bottom:1140.480000px;}
.y81_c00187{bottom:1143.930000px;}
.y80_c00187{bottom:1148.250000px;}
.y7f_c00187{bottom:1149.120000px;}
.y7d_c00187{bottom:1149.990000px;}
.y7e_c00187{bottom:1150.845000px;}
.y7b_c00187{bottom:1153.440000px;}
.y7a_c00187{bottom:1155.165000px;}
.y77_c00187{bottom:1156.890000px;}
.y79_c00187{bottom:1158.630000px;}
.y7c_c00187{bottom:1159.485000px;}
.y78_c00187{bottom:1160.355000px;}
.y75_c00187{bottom:1161.210000px;}
.y76_c00187{bottom:1167.270000px;}
.y73_c00187{bottom:1172.445000px;}
.y74_c00187{bottom:1173.315000px;}
.y6f_c00187{bottom:1174.170000px;}
.y6e_c00187{bottom:1175.910000px;}
.y72_c00187{bottom:1177.635000px;}
.y71_c00187{bottom:1178.490000px;}
.y70_c00187{bottom:1181.955000px;}
.y6b_c00187{bottom:1190.595000px;}
.y69_c00187{bottom:1191.450000px;}
.y67_c00187{bottom:1192.320000px;}
.y6d_c00187{bottom:1193.190000px;}
.y6c_c00187{bottom:1194.045000px;}
.y68_c00187{bottom:1194.915000px;}
.y6a_c00187{bottom:1195.770000px;}
.y66_c00187{bottom:1196.640000px;}
.y65_c00187{bottom:1208.730000px;}
.y63_c00187{bottom:1209.600000px;}
.y62_c00187{bottom:1210.470000px;}
.y64_c00187{bottom:1211.325000px;}
.y61_c00187{bottom:1213.050000px;}
.y60_c00187{bottom:1213.920000px;}
.y5e_c00187{bottom:1226.010000px;}
.y55_c00187{bottom:1226.880000px;}
.y5b_c00187{bottom:1227.750000px;}
.y56_c00187{bottom:1228.605000px;}
.y5f_c00187{bottom:1229.475000px;}
.y58_c00187{bottom:1230.330000px;}
.y5c_c00187{bottom:1231.200000px;}
.y57_c00187{bottom:1236.390000px;}
.y5a_c00187{bottom:1238.115000px;}
.y59_c00187{bottom:1239.840000px;}
.y51_c00187{bottom:1241.565000px;}
.y52_c00187{bottom:1242.435000px;}
.y5d_c00187{bottom:1244.160000px;}
.y4f_c00187{bottom:1245.885000px;}
.y53_c00187{bottom:1246.755000px;}
.y4e_c00187{bottom:1247.610000px;}
.y50_c00187{bottom:1249.350000px;}
.y54_c00187{bottom:1255.395000px;}
.y4b_c00187{bottom:1260.570000px;}
.y4d_c00187{bottom:1261.440000px;}
.y46_c00187{bottom:1262.310000px;}
.y48_c00187{bottom:1263.165000px;}
.y4a_c00187{bottom:1264.890000px;}
.y47_c00187{bottom:1265.760000px;}
.y4c_c00187{bottom:1266.630000px;}
.y49_c00187{bottom:1272.675000px;}
.y42_c00187{bottom:1277.850000px;}
.y40_c00187{bottom:1279.590000px;}
.y44_c00187{bottom:1280.445000px;}
.y41_c00187{bottom:1283.040000px;}
.y43_c00187{bottom:1283.910000px;}
.y45_c00187{bottom:1289.955000px;}
.y3f_c00187{bottom:1294.275000px;}
.y37_c00187{bottom:1297.725000px;}
.y3a_c00187{bottom:1298.595000px;}
.y38_c00187{bottom:1300.320000px;}
.y3c_c00187{bottom:1301.190000px;}
.y3d_c00187{bottom:1302.045000px;}
.y39_c00187{bottom:1302.915000px;}
.y3e_c00187{bottom:1304.640000px;}
.y3b_c00187{bottom:1306.365000px;}
.y36_c00187{bottom:1313.280000px;}
.y32_c00187{bottom:1314.150000px;}
.y34_c00187{bottom:1315.005000px;}
.y31_c00187{bottom:1315.875000px;}
.y2f_c00187{bottom:1316.730000px;}
.y33_c00187{bottom:1317.600000px;}
.y2e_c00187{bottom:1318.470000px;}
.y30_c00187{bottom:1319.325000px;}
.yd2_c00187{bottom:1323.645000px;}
.y35_c00187{bottom:1328.835000px;}
.y26_c00187{bottom:1331.430000px;}
.y28_c00187{bottom:1332.285000px;}
.y2c_c00187{bottom:1333.155000px;}
.y2b_c00187{bottom:1334.010000px;}
.y2a_c00187{bottom:1334.880000px;}
.y29_c00187{bottom:1335.750000px;}
.y2d_c00187{bottom:1337.475000px;}
.y27_c00187{bottom:1343.520000px;}
.y24_c00187{bottom:1344.390000px;}
.y23_c00187{bottom:1345.245000px;}
.y1b_c00187{bottom:1346.115000px;}
.y20_c00187{bottom:1346.970000px;}
.y1f_c00187{bottom:1347.840000px;}
.y1a_c00187{bottom:1348.710000px;}
.y1c_c00187{bottom:1349.565000px;}
.y25_c00187{bottom:1350.435000px;}
.y1d_c00187{bottom:1352.160000px;}
.y19_c00187{bottom:1353.030000px;}
.y22_c00187{bottom:1353.885000px;}
.y1e_c00187{bottom:1354.755000px;}
.y21_c00187{bottom:1356.480000px;}
.yc5_c00187{bottom:1357.350000px;}
.yc4_c00187{bottom:1360.800000px;}
.y18_c00187{bottom:1363.395000px;}
.y17_c00187{bottom:1364.250000px;}
.y10_c00187{bottom:1365.990000px;}
.yc3_c00187{bottom:1366.845000px;}
.y13_c00187{bottom:1367.715000px;}
.y15_c00187{bottom:1368.570000px;}
.yf_c00187{bottom:1370.310000px;}
.y16_c00187{bottom:1375.485000px;}
.y14_c00187{bottom:1379.805000px;}
.y11_c00187{bottom:1380.675000px;}
.y12_c00187{bottom:1381.530000px;}
.yc_c00187{bottom:1385.850000px;}
.ye_c00187{bottom:1388.445000px;}
.yd_c00187{bottom:1389.315000px;}
.yb_c00187{bottom:1391.040000px;}
.y9_c00187{bottom:1391.910000px;}
.ya_c00187{bottom:1392.765000px;}
.yc2_c00187{bottom:1395.360000px;}
.yc1_c00187{bottom:1411.770000px;}
.y8_c00187{bottom:1419.555000px;}
.y7_c00187{bottom:1422.150000px;}
.y4_c00187{bottom:1428.195000px;}
.y3_c00187{bottom:1435.110000px;}
.y2_c00187{bottom:1435.965000px;}
.y1_c00187{bottom:1437.690000px;}
.h12_c00187{height:3.110063px;}
.h6_c00187{height:5.399414px;}
.hd_c00187{height:6.209326px;}
.h1e_c00187{height:8.610938px;}
.h11_c00187{height:9.340986px;}
.hc_c00187{height:12.418652px;}
.h3_c00187{height:15.550313px;}
.h4_c00187{height:18.681973px;}
.he_c00187{height:21.759639px;}
.h5_c00187{height:24.891299px;}
.h7_c00187{height:27.968965px;}
.h1a_c00187{height:31.100625px;}
.h13_c00187{height:34.232285px;}
.h19_c00187{height:37.309951px;}
.h2_c00187{height:40.441611px;}
.h16_c00187{height:43.519277px;}
.hf_c00187{height:46.650937px;}
.h1b_c00187{height:49.782598px;}
.h1c_c00187{height:52.860264px;}
.h9_c00187{height:55.991924px;}
.h14_c00187{height:59.069590px;}
.ha_c00187{height:62.201250px;}
.h18_c00187{height:65.332910px;}
.h15_c00187{height:68.410576px;}
.h17_c00187{height:71.542236px;}
.hb_c00187{height:74.619902px;}
.h10_c00187{height:77.751563px;}
.h1d_c00187{height:90.170215px;}
.h1f_c00187{height:96.433535px;}
.h8_c00187{height:108.852188px;}
.h1_c00187{height:1503.000000px;}
.h0_c00187{height:1503.360000px;}
.w0_c00187{width:1090.365000px;}
.w1_c00187{width:1090.500000px;}
.x0_c00187{left:0.000000px;}
.x1_c00187{left:67.395000px;}
.x9c_c00187{left:172.800000px;}
.x9e_c00187{left:176.250000px;}
.x9d_c00187{left:189.210000px;}
.x9f_c00187{left:193.530000px;}
.x5_c00187{left:228.090000px;}
.x6_c00187{left:235.005000px;}
.x30_c00187{left:236.730000px;}
.x68_c00187{left:248.835000px;}
.xa1_c00187{left:251.430000px;}
.x1c_c00187{left:260.925000px;}
.x11_c00187{left:263.520000px;}
.x43_c00187{left:280.800000px;}
.x48_c00187{left:283.395000px;}
.x3a_c00187{left:285.120000px;}
.x12_c00187{left:297.210000px;}
.x1d_c00187{left:308.445000px;}
.x49_c00187{left:311.040000px;}
.x62_c00187{left:320.550000px;}
.x51_c00187{left:324.870000px;}
.x71_c00187{left:327.450000px;}
.x52_c00187{left:333.510000px;}
.x44_c00187{left:338.685000px;}
.x2_c00187{left:341.280000px;}
.x13_c00187{left:345.600000px;}
.x3b_c00187{left:350.790000px;}
.x3_c00187{left:352.515000px;}
.x53_c00187{left:355.110000px;}
.x1e_c00187{left:360.285000px;}
.x31_c00187{left:364.605000px;}
.x63_c00187{left:368.925000px;}
.x69_c00187{left:371.520000px;}
.x7c_c00187{left:373.245000px;}
.x3c_c00187{left:376.710000px;}
.x64_c00187{left:384.480000px;}
.x9b_c00187{left:389.670000px;}
.x7d_c00187{left:394.845000px;}
.x14_c00187{left:396.570000px;}
.x32_c00187{left:401.760000px;}
.x1f_c00187{left:408.675000px;}
.x15_c00187{left:410.400000px;}
.x28_c00187{left:412.125000px;}
.x72_c00187{left:415.590000px;}
.x4a_c00187{left:419.910000px;}
.x6a_c00187{left:424.230000px;}
.x7e_c00187{left:429.405000px;}
.xd_c00187{left:438.045000px;}
.x16_c00187{left:441.510000px;}
.x56_c00187{left:444.960000px;}
.x6b_c00187{left:449.280000px;}
.xe_c00187{left:452.730000px;}
.x20_c00187{left:457.920000px;}
.x17_c00187{left:463.965000px;}
.x9_c00187{left:465.690000px;}
.xf_c00187{left:469.155000px;}
.x21_c00187{left:472.605000px;}
.x33_c00187{left:480.390000px;}
.x57_c00187{left:482.115456px;}
.x58_c00187{left:489.885000px;}
.x59_c00187{left:495.930000px;}
.x34_c00187{left:497.670000px;}
.x7_c00187{left:506.310000px;}
.x54_c00187{left:513.210000px;}
.x22_c00187{left:518.400000px;}
.xa_c00187{left:528.765000px;}
.x35_c00187{left:533.085000px;}
.x23_c00187{left:535.680000px;}
.x10_c00187{left:545.190000px;}
.x4_c00187{left:546.915000px;}
.x24_c00187{left:548.640000px;}
.x18_c00187{left:555.555000px;}
.x5a_c00187{left:557.280000px;}
.x7f_c00187{left:563.325000px;}
.xb_c00187{left:565.050000px;}
.x78_c00187{left:566.790000px;}
.x89_c00187{left:568.515000px;}
.x73_c00187{left:574.560000px;}
.x19_c00187{left:577.155000px;}
.x6c_c00187{left:580.605000px;}
.x90_c00187{left:583.200000px;}
.x25_c00187{left:584.925000px;}
.x4b_c00187{left:589.245000px;}
.xc_c00187{left:590.970000px;}
.x1a_c00187{left:593.565000px;}
.x5b_c00187{left:607.395000px;}
.x65_c00187{left:611.715000px;}
.x74_c00187{left:614.310000px;}
.x3d_c00187{left:616.890000px;}
.x8a_c00187{left:622.080000px;}
.x91_c00187{left:626.400000px;}
.x4c_c00187{left:628.125000px;}
.x75_c00187{left:629.850000px;}
.x84_c00187{left:632.445000px;}
.x8_c00187{left:634.170000px;}
.x5c_c00187{left:639.360000px;}
.x45_c00187{left:642.810000px;}
.x94_c00187{left:651.450000px;}
.x4d_c00187{left:653.190000px;}
.x3e_c00187{left:655.770000px;}
.x8b_c00187{left:661.830000px;}
.x79_c00187{left:663.555000px;}
.x29_c00187{left:666.150000px;}
.x85_c00187{left:667.875000px;}
.x80_c00187{left:674.790000px;}
.x6d_c00187{left:682.560000px;}
.x76_c00187{left:686.880000px;}
.x36_c00187{left:690.330000px;}
.x5d_c00187{left:695.520000px;}
.x8c_c00187{left:698.970000px;}
.x81_c00187{left:705.030000px;}
.x4e_c00187{left:710.205000px;}
.x9a_c00187{left:714.525000px;}
.x55_c00187{left:717.120000px;}
.x66_c00187{left:719.715000px;}
.x26_c00187{left:721.440000px;}
.x86_c00187{left:725.760000px;}
.x4f_c00187{left:727.485000px;}
.x37_c00187{left:735.270000px;}
.x2a_c00187{left:736.995000px;}
.x7a_c00187{left:738.720000px;}
.x77_c00187{left:740.445000px;}
.x5e_c00187{left:744.765000px;}
.x6e_c00187{left:747.360000px;}
.x2b_c00187{left:757.725000px;}
.x6f_c00187{left:760.320000px;}
.x8d_c00187{left:764.640000px;}
.x96_c00187{left:767.235000px;}
.x92_c00187{left:769.830000px;}
.x5f_c00187{left:773.280000px;}
.x3f_c00187{left:775.005000px;}
.x97_c00187{left:779.325000px;}
.x2c_c00187{left:781.050000px;}
.x38_c00187{left:787.965000px;}
.x95_c00187{left:791.430000px;}
.x67_c00187{left:793.155000px;}
.x93_c00187{left:796.605000px;}
.x82_c00187{left:798.330000px;}
.x40_c00187{left:800.925000px;}
.x8e_c00187{left:805.245000px;}
.x46_c00187{left:808.710000px;}
.x70_c00187{left:812.160000px;}
.x87_c00187{left:818.205000px;}
.x60_c00187{left:820.800000px;}
.x50_c00187{left:825.990000px;}
.x2d_c00187{left:831.165000px;}
.x83_c00187{left:832.890000px;}
.x41_c00187{left:835.485000px;}
.x1b_c00187{left:838.080000px;}
.x98_c00187{left:839.805000px;}
.x2e_c00187{left:841.530000px;}
.x47_c00187{left:844.125000px;}
.x27_c00187{left:849.315000px;}
.x99_c00187{left:852.765000px;}
.x42_c00187{left:860.550000px;}
.x2f_c00187{left:863.130000px;}
.x7b_c00187{left:864.870000px;}
.x61_c00187{left:874.365000px;}
.x88_c00187{left:876.960000px;}
.x8f_c00187{left:879.555000px;}
.x39_c00187{left:882.150000px;}
.xa0_c00187{left:930.525000px;}
@media print{
.v1_c00187{vertical-align:-33.813333pt;}
.v0_c00187{vertical-align:0.000000pt;}
.ls2_c00187{letter-spacing:0.000000pt;}
.ls0_c00187{letter-spacing:19.766613pt;}
.ls1_c00187{letter-spacing:46.264030pt;}
.ws1_c00187{word-spacing:0.000000pt;}
.ws0_c00187{word-spacing:25.623467pt;}
.fs10_c00187{font-size:3.072000pt;}
.fs4_c00187{font-size:5.333333pt;}
.fsb_c00187{font-size:6.133333pt;}
.fsf_c00187{font-size:9.226667pt;}
.fsa_c00187{font-size:12.266667pt;}
.fs1_c00187{font-size:15.360000pt;}
.fs2_c00187{font-size:18.453333pt;}
.fsc_c00187{font-size:21.493333pt;}
.fs3_c00187{font-size:24.586667pt;}
.fs5_c00187{font-size:27.626667pt;}
.fs18_c00187{font-size:30.720000pt;}
.fs11_c00187{font-size:33.813333pt;}
.fs17_c00187{font-size:36.853333pt;}
.fs0_c00187{font-size:39.946667pt;}
.fs14_c00187{font-size:42.986667pt;}
.fsd_c00187{font-size:46.080000pt;}
.fs19_c00187{font-size:49.173333pt;}
.fs1a_c00187{font-size:52.213333pt;}
.fs7_c00187{font-size:55.306667pt;}
.fs12_c00187{font-size:58.346667pt;}
.fs8_c00187{font-size:61.440000pt;}
.fs16_c00187{font-size:64.533333pt;}
.fs13_c00187{font-size:67.573333pt;}
.fs15_c00187{font-size:70.666667pt;}
.fs9_c00187{font-size:73.706667pt;}
.fse_c00187{font-size:76.800000pt;}
.fs1b_c00187{font-size:89.066667pt;}
.fs1c_c00187{font-size:95.253333pt;}
.fs6_c00187{font-size:107.520000pt;}
.y0_c00187{bottom:0.000000pt;}
.yd1_c00187{bottom:718.853333pt;}
.yd0_c00187{bottom:764.160000pt;}
.ycf_c00187{bottom:779.520000pt;}
.yce_c00187{bottom:791.040000pt;}
.ycd_c00187{bottom:795.653333pt;}
.ycc_c00187{bottom:843.266667pt;}
.yc0_c00187{bottom:850.173333pt;}
.ybe_c00187{bottom:852.480000pt;}
.ybd_c00187{bottom:856.320000pt;}
.ybf_c00187{bottom:857.853333pt;}
.yba_c00187{bottom:858.626667pt;}
.ybc_c00187{bottom:863.226667pt;}
.ybb_c00187{bottom:867.066667pt;}
.yb8_c00187{bottom:869.373333pt;}
.yb6_c00187{bottom:870.146667pt;}
.yb9_c00187{bottom:871.680000pt;}
.yb7_c00187{bottom:872.453333pt;}
.yb5_c00187{bottom:873.213333pt;}
.yb4_c00187{bottom:873.986667pt;}
.yb3_c00187{bottom:887.040000pt;}
.yb0_c00187{bottom:887.813333pt;}
.yb1_c00187{bottom:888.573333pt;}
.ycb_c00187{bottom:890.106667pt;}
.yb2_c00187{bottom:891.653333pt;}
.yaf_c00187{bottom:900.866667pt;}
.yac_c00187{bottom:901.626667pt;}
.yab_c00187{bottom:902.400000pt;}
.yad_c00187{bottom:903.173333pt;}
.yae_c00187{bottom:903.933333pt;}
.yaa_c00187{bottom:904.706667pt;}
.ya9_c00187{bottom:916.986667pt;}
.ya8_c00187{bottom:917.760000pt;}
.yd6_c00187{bottom:920.066667pt;}
.yca_c00187{bottom:920.826667pt;}
.ya7_c00187{bottom:921.600000pt;}
.ya3_c00187{bottom:934.653333pt;}
.ya2_c00187{bottom:935.426667pt;}
.ya6_c00187{bottom:936.186667pt;}
.ya4_c00187{bottom:936.960000pt;}
.ya5_c00187{bottom:937.733333pt;}
.yc9_c00187{bottom:938.493333pt;}
.ya1_c00187{bottom:945.413333pt;}
.y9d_c00187{bottom:947.706667pt;}
.y9c_c00187{bottom:948.480000pt;}
.y9b_c00187{bottom:949.253333pt;}
.y99_c00187{bottom:950.013333pt;}
.y9a_c00187{bottom:950.786667pt;}
.y9f_c00187{bottom:951.546667pt;}
.yc8_c00187{bottom:952.320000pt;}
.yd5_c00187{bottom:953.093333pt;}
.ya0_c00187{bottom:953.853333pt;}
.y9e_c00187{bottom:954.626667pt;}
.y98_c00187{bottom:963.066667pt;}
.y95_c00187{bottom:965.373333pt;}
.y97_c00187{bottom:966.906667pt;}
.y94_c00187{bottom:967.680000pt;}
.y93_c00187{bottom:968.453333pt;}
.y92_c00187{bottom:969.213333pt;}
.y96_c00187{bottom:969.986667pt;}
.y91_c00187{bottom:974.586667pt;}
.yc7_c00187{bottom:976.133333pt;}
.y8d_c00187{bottom:976.893333pt;}
.y8f_c00187{bottom:977.666667pt;}
.y8e_c00187{bottom:979.200000pt;}
.y90_c00187{bottom:979.973333pt;}
.yd3_c00187{bottom:983.040000pt;}
.yd4_c00187{bottom:986.880000pt;}
.y88_c00187{bottom:995.333333pt;}
.y89_c00187{bottom:996.093333pt;}
.y8c_c00187{bottom:998.400000pt;}
.y8a_c00187{bottom:999.173333pt;}
.y6_c00187{bottom:999.933333pt;}
.yc6_c00187{bottom:1001.466667pt;}
.y8b_c00187{bottom:1003.013333pt;}
.y5_c00187{bottom:1009.146667pt;}
.y87_c00187{bottom:1009.920000pt;}
.y82_c00187{bottom:1010.693333pt;}
.y83_c00187{bottom:1011.453333pt;}
.y85_c00187{bottom:1012.226667pt;}
.y84_c00187{bottom:1012.986667pt;}
.y86_c00187{bottom:1013.760000pt;}
.y81_c00187{bottom:1016.826667pt;}
.y80_c00187{bottom:1020.666667pt;}
.y7f_c00187{bottom:1021.440000pt;}
.y7d_c00187{bottom:1022.213333pt;}
.y7e_c00187{bottom:1022.973333pt;}
.y7b_c00187{bottom:1025.280000pt;}
.y7a_c00187{bottom:1026.813333pt;}
.y77_c00187{bottom:1028.346667pt;}
.y79_c00187{bottom:1029.893333pt;}
.y7c_c00187{bottom:1030.653333pt;}
.y78_c00187{bottom:1031.426667pt;}
.y75_c00187{bottom:1032.186667pt;}
.y76_c00187{bottom:1037.573333pt;}
.y73_c00187{bottom:1042.173333pt;}
.y74_c00187{bottom:1042.946667pt;}
.y6f_c00187{bottom:1043.706667pt;}
.y6e_c00187{bottom:1045.253333pt;}
.y72_c00187{bottom:1046.786667pt;}
.y71_c00187{bottom:1047.546667pt;}
.y70_c00187{bottom:1050.626667pt;}
.y6b_c00187{bottom:1058.306667pt;}
.y69_c00187{bottom:1059.066667pt;}
.y67_c00187{bottom:1059.840000pt;}
.y6d_c00187{bottom:1060.613333pt;}
.y6c_c00187{bottom:1061.373333pt;}
.y68_c00187{bottom:1062.146667pt;}
.y6a_c00187{bottom:1062.906667pt;}
.y66_c00187{bottom:1063.680000pt;}
.y65_c00187{bottom:1074.426667pt;}
.y63_c00187{bottom:1075.200000pt;}
.y62_c00187{bottom:1075.973333pt;}
.y64_c00187{bottom:1076.733333pt;}
.y61_c00187{bottom:1078.266667pt;}
.y60_c00187{bottom:1079.040000pt;}
.y5e_c00187{bottom:1089.786667pt;}
.y55_c00187{bottom:1090.560000pt;}
.y5b_c00187{bottom:1091.333333pt;}
.y56_c00187{bottom:1092.093333pt;}
.y5f_c00187{bottom:1092.866667pt;}
.y58_c00187{bottom:1093.626667pt;}
.y5c_c00187{bottom:1094.400000pt;}
.y57_c00187{bottom:1099.013333pt;}
.y5a_c00187{bottom:1100.546667pt;}
.y59_c00187{bottom:1102.080000pt;}
.y51_c00187{bottom:1103.613333pt;}
.y52_c00187{bottom:1104.386667pt;}
.y5d_c00187{bottom:1105.920000pt;}
.y4f_c00187{bottom:1107.453333pt;}
.y53_c00187{bottom:1108.226667pt;}
.y4e_c00187{bottom:1108.986667pt;}
.y50_c00187{bottom:1110.533333pt;}
.y54_c00187{bottom:1115.906667pt;}
.y4b_c00187{bottom:1120.506667pt;}
.y4d_c00187{bottom:1121.280000pt;}
.y46_c00187{bottom:1122.053333pt;}
.y48_c00187{bottom:1122.813333pt;}
.y4a_c00187{bottom:1124.346667pt;}
.y47_c00187{bottom:1125.120000pt;}
.y4c_c00187{bottom:1125.893333pt;}
.y49_c00187{bottom:1131.266667pt;}
.y42_c00187{bottom:1135.866667pt;}
.y40_c00187{bottom:1137.413333pt;}
.y44_c00187{bottom:1138.173333pt;}
.y41_c00187{bottom:1140.480000pt;}
.y43_c00187{bottom:1141.253333pt;}
.y45_c00187{bottom:1146.626667pt;}
.y3f_c00187{bottom:1150.466667pt;}
.y37_c00187{bottom:1153.533333pt;}
.y3a_c00187{bottom:1154.306667pt;}
.y38_c00187{bottom:1155.840000pt;}
.y3c_c00187{bottom:1156.613333pt;}
.y3d_c00187{bottom:1157.373333pt;}
.y39_c00187{bottom:1158.146667pt;}
.y3e_c00187{bottom:1159.680000pt;}
.y3b_c00187{bottom:1161.213333pt;}
.y36_c00187{bottom:1167.360000pt;}
.y32_c00187{bottom:1168.133333pt;}
.y34_c00187{bottom:1168.893333pt;}
.y31_c00187{bottom:1169.666667pt;}
.y2f_c00187{bottom:1170.426667pt;}
.y33_c00187{bottom:1171.200000pt;}
.y2e_c00187{bottom:1171.973333pt;}
.y30_c00187{bottom:1172.733333pt;}
.yd2_c00187{bottom:1176.573333pt;}
.y35_c00187{bottom:1181.186667pt;}
.y26_c00187{bottom:1183.493333pt;}
.y28_c00187{bottom:1184.253333pt;}
.y2c_c00187{bottom:1185.026667pt;}
.y2b_c00187{bottom:1185.786667pt;}
.y2a_c00187{bottom:1186.560000pt;}
.y29_c00187{bottom:1187.333333pt;}
.y2d_c00187{bottom:1188.866667pt;}
.y27_c00187{bottom:1194.240000pt;}
.y24_c00187{bottom:1195.013333pt;}
.y23_c00187{bottom:1195.773333pt;}
.y1b_c00187{bottom:1196.546667pt;}
.y20_c00187{bottom:1197.306667pt;}
.y1f_c00187{bottom:1198.080000pt;}
.y1a_c00187{bottom:1198.853333pt;}
.y1c_c00187{bottom:1199.613333pt;}
.y25_c00187{bottom:1200.386667pt;}
.y1d_c00187{bottom:1201.920000pt;}
.y19_c00187{bottom:1202.693333pt;}
.y22_c00187{bottom:1203.453333pt;}
.y1e_c00187{bottom:1204.226667pt;}
.y21_c00187{bottom:1205.760000pt;}
.yc5_c00187{bottom:1206.533333pt;}
.yc4_c00187{bottom:1209.600000pt;}
.y18_c00187{bottom:1211.906667pt;}
.y17_c00187{bottom:1212.666667pt;}
.y10_c00187{bottom:1214.213333pt;}
.yc3_c00187{bottom:1214.973333pt;}
.y13_c00187{bottom:1215.746667pt;}
.y15_c00187{bottom:1216.506667pt;}
.yf_c00187{bottom:1218.053333pt;}
.y16_c00187{bottom:1222.653333pt;}
.y14_c00187{bottom:1226.493333pt;}
.y11_c00187{bottom:1227.266667pt;}
.y12_c00187{bottom:1228.026667pt;}
.yc_c00187{bottom:1231.866667pt;}
.ye_c00187{bottom:1234.173333pt;}
.yd_c00187{bottom:1234.946667pt;}
.yb_c00187{bottom:1236.480000pt;}
.y9_c00187{bottom:1237.253333pt;}
.ya_c00187{bottom:1238.013333pt;}
.yc2_c00187{bottom:1240.320000pt;}
.yc1_c00187{bottom:1254.906667pt;}
.y8_c00187{bottom:1261.826667pt;}
.y7_c00187{bottom:1264.133333pt;}
.y4_c00187{bottom:1269.506667pt;}
.y3_c00187{bottom:1275.653333pt;}
.y2_c00187{bottom:1276.413333pt;}
.y1_c00187{bottom:1277.946667pt;}
.h12_c00187{height:2.764500pt;}
.h6_c00187{height:4.799479pt;}
.hd_c00187{height:5.519401pt;}
.h1e_c00187{height:7.654167pt;}
.h11_c00187{height:8.303099pt;}
.hc_c00187{height:11.038802pt;}
.h3_c00187{height:13.822500pt;}
.h4_c00187{height:16.606198pt;}
.he_c00187{height:19.341901pt;}
.h5_c00187{height:22.125599pt;}
.h7_c00187{height:24.861302pt;}
.h1a_c00187{height:27.645000pt;}
.h13_c00187{height:30.428698pt;}
.h19_c00187{height:33.164401pt;}
.h2_c00187{height:35.948099pt;}
.h16_c00187{height:38.683802pt;}
.hf_c00187{height:41.467500pt;}
.h1b_c00187{height:44.251198pt;}
.h1c_c00187{height:46.986901pt;}
.h9_c00187{height:49.770599pt;}
.h14_c00187{height:52.506302pt;}
.ha_c00187{height:55.290000pt;}
.h18_c00187{height:58.073698pt;}
.h15_c00187{height:60.809401pt;}
.h17_c00187{height:63.593099pt;}
.hb_c00187{height:66.328802pt;}
.h10_c00187{height:69.112500pt;}
.h1d_c00187{height:80.151302pt;}
.h1f_c00187{height:85.718698pt;}
.h8_c00187{height:96.757500pt;}
.h1_c00187{height:1336.000000pt;}
.h0_c00187{height:1336.320000pt;}
.w0_c00187{width:969.213333pt;}
.w1_c00187{width:969.333333pt;}
.x0_c00187{left:0.000000pt;}
.x1_c00187{left:59.906667pt;}
.x9c_c00187{left:153.600000pt;}
.x9e_c00187{left:156.666667pt;}
.x9d_c00187{left:168.186667pt;}
.x9f_c00187{left:172.026667pt;}
.x5_c00187{left:202.746667pt;}
.x6_c00187{left:208.893333pt;}
.x30_c00187{left:210.426667pt;}
.x68_c00187{left:221.186667pt;}
.xa1_c00187{left:223.493333pt;}
.x1c_c00187{left:231.933333pt;}
.x11_c00187{left:234.240000pt;}
.x43_c00187{left:249.600000pt;}
.x48_c00187{left:251.906667pt;}
.x3a_c00187{left:253.440000pt;}
.x12_c00187{left:264.186667pt;}
.x1d_c00187{left:274.173333pt;}
.x49_c00187{left:276.480000pt;}
.x62_c00187{left:284.933333pt;}
.x51_c00187{left:288.773333pt;}
.x71_c00187{left:291.066667pt;}
.x52_c00187{left:296.453333pt;}
.x44_c00187{left:301.053333pt;}
.x2_c00187{left:303.360000pt;}
.x13_c00187{left:307.200000pt;}
.x3b_c00187{left:311.813333pt;}
.x3_c00187{left:313.346667pt;}
.x53_c00187{left:315.653333pt;}
.x1e_c00187{left:320.253333pt;}
.x31_c00187{left:324.093333pt;}
.x63_c00187{left:327.933333pt;}
.x69_c00187{left:330.240000pt;}
.x7c_c00187{left:331.773333pt;}
.x3c_c00187{left:334.853333pt;}
.x64_c00187{left:341.760000pt;}
.x9b_c00187{left:346.373333pt;}
.x7d_c00187{left:350.973333pt;}
.x14_c00187{left:352.506667pt;}
.x32_c00187{left:357.120000pt;}
.x1f_c00187{left:363.266667pt;}
.x15_c00187{left:364.800000pt;}
.x28_c00187{left:366.333333pt;}
.x72_c00187{left:369.413333pt;}
.x4a_c00187{left:373.253333pt;}
.x6a_c00187{left:377.093333pt;}
.x7e_c00187{left:381.693333pt;}
.xd_c00187{left:389.373333pt;}
.x16_c00187{left:392.453333pt;}
.x56_c00187{left:395.520000pt;}
.x6b_c00187{left:399.360000pt;}
.xe_c00187{left:402.426667pt;}
.x20_c00187{left:407.040000pt;}
.x17_c00187{left:412.413333pt;}
.x9_c00187{left:413.946667pt;}
.xf_c00187{left:417.026667pt;}
.x21_c00187{left:420.093333pt;}
.x33_c00187{left:427.013333pt;}
.x57_c00187{left:428.547072pt;}
.x58_c00187{left:435.453333pt;}
.x59_c00187{left:440.826667pt;}
.x34_c00187{left:442.373333pt;}
.x7_c00187{left:450.053333pt;}
.x54_c00187{left:456.186667pt;}
.x22_c00187{left:460.800000pt;}
.xa_c00187{left:470.013333pt;}
.x35_c00187{left:473.853333pt;}
.x23_c00187{left:476.160000pt;}
.x10_c00187{left:484.613333pt;}
.x4_c00187{left:486.146667pt;}
.x24_c00187{left:487.680000pt;}
.x18_c00187{left:493.826667pt;}
.x5a_c00187{left:495.360000pt;}
.x7f_c00187{left:500.733333pt;}
.xb_c00187{left:502.266667pt;}
.x78_c00187{left:503.813333pt;}
.x89_c00187{left:505.346667pt;}
.x73_c00187{left:510.720000pt;}
.x19_c00187{left:513.026667pt;}
.x6c_c00187{left:516.093333pt;}
.x90_c00187{left:518.400000pt;}
.x25_c00187{left:519.933333pt;}
.x4b_c00187{left:523.773333pt;}
.xc_c00187{left:525.306667pt;}
.x1a_c00187{left:527.613333pt;}
.x5b_c00187{left:539.906667pt;}
.x65_c00187{left:543.746667pt;}
.x74_c00187{left:546.053333pt;}
.x3d_c00187{left:548.346667pt;}
.x8a_c00187{left:552.960000pt;}
.x91_c00187{left:556.800000pt;}
.x4c_c00187{left:558.333333pt;}
.x75_c00187{left:559.866667pt;}
.x84_c00187{left:562.173333pt;}
.x8_c00187{left:563.706667pt;}
.x5c_c00187{left:568.320000pt;}
.x45_c00187{left:571.386667pt;}
.x94_c00187{left:579.066667pt;}
.x4d_c00187{left:580.613333pt;}
.x3e_c00187{left:582.906667pt;}
.x8b_c00187{left:588.293333pt;}
.x79_c00187{left:589.826667pt;}
.x29_c00187{left:592.133333pt;}
.x85_c00187{left:593.666667pt;}
.x80_c00187{left:599.813333pt;}
.x6d_c00187{left:606.720000pt;}
.x76_c00187{left:610.560000pt;}
.x36_c00187{left:613.626667pt;}
.x5d_c00187{left:618.240000pt;}
.x8c_c00187{left:621.306667pt;}
.x81_c00187{left:626.693333pt;}
.x4e_c00187{left:631.293333pt;}
.x9a_c00187{left:635.133333pt;}
.x55_c00187{left:637.440000pt;}
.x66_c00187{left:639.746667pt;}
.x26_c00187{left:641.280000pt;}
.x86_c00187{left:645.120000pt;}
.x4f_c00187{left:646.653333pt;}
.x37_c00187{left:653.573333pt;}
.x2a_c00187{left:655.106667pt;}
.x7a_c00187{left:656.640000pt;}
.x77_c00187{left:658.173333pt;}
.x5e_c00187{left:662.013333pt;}
.x6e_c00187{left:664.320000pt;}
.x2b_c00187{left:673.533333pt;}
.x6f_c00187{left:675.840000pt;}
.x8d_c00187{left:679.680000pt;}
.x96_c00187{left:681.986667pt;}
.x92_c00187{left:684.293333pt;}
.x5f_c00187{left:687.360000pt;}
.x3f_c00187{left:688.893333pt;}
.x97_c00187{left:692.733333pt;}
.x2c_c00187{left:694.266667pt;}
.x38_c00187{left:700.413333pt;}
.x95_c00187{left:703.493333pt;}
.x67_c00187{left:705.026667pt;}
.x93_c00187{left:708.093333pt;}
.x82_c00187{left:709.626667pt;}
.x40_c00187{left:711.933333pt;}
.x8e_c00187{left:715.773333pt;}
.x46_c00187{left:718.853333pt;}
.x70_c00187{left:721.920000pt;}
.x87_c00187{left:727.293333pt;}
.x60_c00187{left:729.600000pt;}
.x50_c00187{left:734.213333pt;}
.x2d_c00187{left:738.813333pt;}
.x83_c00187{left:740.346667pt;}
.x41_c00187{left:742.653333pt;}
.x1b_c00187{left:744.960000pt;}
.x98_c00187{left:746.493333pt;}
.x2e_c00187{left:748.026667pt;}
.x47_c00187{left:750.333333pt;}
.x27_c00187{left:754.946667pt;}
.x99_c00187{left:758.013333pt;}
.x42_c00187{left:764.933333pt;}
.x2f_c00187{left:767.226667pt;}
.x7b_c00187{left:768.773333pt;}
.x61_c00187{left:777.213333pt;}
.x88_c00187{left:779.520000pt;}
.x8f_c00187{left:781.826667pt;}
.x39_c00187{left:784.133333pt;}
.xa0_c00187{left:827.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eca6c82d816ffb0472854ee5.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.109863;font-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_c00188{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m80_c00188{transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);}
.m1c6_c00188{transform:matrix(0.052950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052950,0.000000,0.000000,0.250000,0,0);}
.m163_c00188{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m11a_c00188{transform:matrix(0.064700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064700,0.000000,0.000000,0.250000,0,0);}
.m1ae_c00188{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.mf1_c00188{transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);}
.m1c3_c00188{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m187_c00188{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m1de_c00188{transform:matrix(0.094700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094700,0.000000,0.000000,0.250000,0,0);}
.m189_c00188{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m18a_c00188{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m1e0_c00188{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m194_c00188{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m13a_c00188{transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);}
.mb7_c00188{transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);}
.m19c_c00188{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m145_c00188{transform:matrix(0.113125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113125,0.000000,0.000000,0.250000,0,0);}
.m8e_c00188{transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);}
.m70_c00188{transform:matrix(0.115125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115125,0.000000,0.000000,0.250000,0,0);}
.m1c1_c00188{transform:matrix(0.117150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117150,0.000000,0.000000,0.250000,0,0);}
.m1e6_c00188{transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);}
.m1c8_c00188{transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);}
.m91_c00188{transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);}
.mba_c00188{transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);}
.m67_c00188{transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);}
.m13e_c00188{transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);}
.m1cf_c00188{transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);}
.mcd_c00188{transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);}
.m1b2_c00188{transform:matrix(0.129875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129875,0.000000,0.000000,0.250000,0,0);}
.m1c9_c00188{transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);}
.m1b4_c00188{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m1b3_c00188{transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);}
.m166_c00188{transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);}
.m78_c00188{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);}
.m1a1_c00188{transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);}
.mb0_c00188{transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);}
.mae_c00188{transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);}
.mbd_c00188{transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);}
.m1cb_c00188{transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);}
.m191_c00188{transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);}
.m1c2_c00188{transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00188{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.md9_c00188{transform:matrix(0.141150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141150,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00188{transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);}
.ma6_c00188{transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);}
.mac_c00188{transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);}
.m105_c00188{transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);}
.m3_c00188{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m174_c00188{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.m172_c00188{transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);}
.m8d_c00188{transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);}
.m1ca_c00188{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);}
.ma0_c00188{transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);}
.m76_c00188{transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);}
.m17f_c00188{transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00188{transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);}
.m96_c00188{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.md3_c00188{transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);}
.me_c00188{transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);}
.m140_c00188{transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);}
.m11_c00188{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m120_c00188{transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);}
.m33_c00188{transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00188{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);}
.mf8_c00188{transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);}
.mb9_c00188{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.m149_c00188{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.m169_c00188{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.m1d8_c00188{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);}
.mf0_c00188{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m81_c00188{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.m1db_c00188{transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);}
.md2_c00188{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.mc1_c00188{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m127_c00188{transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);}
.m1b0_c00188{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m1c7_c00188{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.mdc_c00188{transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);}
.m28_c00188{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m138_c00188{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m68_c00188{transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);}
.me1_c00188{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m16b_c00188{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.md7_c00188{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.m16c_c00188{transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);}
.m1d3_c00188{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.m11b_c00188{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);}
.m192_c00188{transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);}
.m100_c00188{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);}
.m6f_c00188{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.mb6_c00188{transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);}
.m98_c00188{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m188_c00188{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.m1f1_c00188{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m190_c00188{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);}
.m144_c00188{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.m18_c00188{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);}
.m16f_c00188{transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);}
.m90_c00188{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);}
.m1cc_c00188{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m11d_c00188{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);}
.mf7_c00188{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.m184_c00188{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.m15f_c00188{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m1dd_c00188{transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);}
.mcc_c00188{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.meb_c00188{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m69_c00188{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.m51_c00188{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.m1eb_c00188{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.md6_c00188{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);}
.m19b_c00188{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.m131_c00188{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);}
.m14e_c00188{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.mbb_c00188{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);}
.m1df_c00188{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);}
.m12a_c00188{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m40_c00188{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m1c5_c00188{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.m56_c00188{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);}
.m16a_c00188{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);}
.m164_c00188{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);}
.m17d_c00188{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m9b_c00188{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.m7c_c00188{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00188{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.m1c4_c00188{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m155_c00188{transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);}
.m151_c00188{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.mb4_c00188{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m43_c00188{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m1d4_c00188{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);}
.m77_c00188{transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);}
.m36_c00188{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);}
.m74_c00188{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);}
.m1a6_c00188{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);}
.m24_c00188{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m1e1_c00188{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m124_c00188{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);}
.m13c_c00188{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);}
.m122_c00188{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m1f2_c00188{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);}
.m10d_c00188{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);}
.m1c0_c00188{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00188{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);}
.m101_c00188{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m9f_c00188{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m1a9_c00188{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);}
.m19a_c00188{transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);}
.m97_c00188{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);}
.m13b_c00188{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.m44_c00188{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);}
.mdd_c00188{transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);}
.m50_c00188{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.m1ef_c00188{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);}
.m49_c00188{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m1b6_c00188{transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);}
.m137_c00188{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.mc7_c00188{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m10b_c00188{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);}
.mcb_c00188{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);}
.mb3_c00188{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.m119_c00188{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);}
.m1d7_c00188{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);}
.m1a5_c00188{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);}
.m14d_c00188{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);}
.m126_c00188{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);}
.m10a_c00188{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m4d_c00188{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m88_c00188{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_c00188{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.mb_c00188{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);}
.mef_c00188{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);}
.m135_c00188{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);}
.m79_c00188{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);}
.m18e_c00188{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);}
.mda_c00188{transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);}
.m7a_c00188{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m35_c00188{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);}
.m129_c00188{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);}
.m165_c00188{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);}
.m8b_c00188{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);}
.m170_c00188{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.m125_c00188{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);}
.m17e_c00188{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);}
.m6c_c00188{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.ma3_c00188{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m175_c00188{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.m1e4_c00188{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);}
.m3a_c00188{transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);}
.m167_c00188{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);}
.mab_c00188{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m10c_c00188{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m3c_c00188{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m14f_c00188{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);}
.m1da_c00188{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m121_c00188{transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);}
.m32_c00188{transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);}
.m154_c00188{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.m14b_c00188{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);}
.m1d2_c00188{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.m17a_c00188{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m1e9_c00188{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m10_c00188{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.mce_c00188{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);}
.m46_c00188{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m1e2_c00188{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);}
.m17_c00188{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.ma4_c00188{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.m139_c00188{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);}
.m1bb_c00188{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.mc9_c00188{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);}
.mdf_c00188{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m27_c00188{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.m134_c00188{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);}
.m94_c00188{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);}
.m106_c00188{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);}
.m158_c00188{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);}
.m12f_c00188{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);}
.m161_c00188{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m107_c00188{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);}
.m176_c00188{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);}
.mee_c00188{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.m115_c00188{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);}
.mfe_c00188{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m1f_c00188{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);}
.m150_c00188{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m156_c00188{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.mb2_c00188{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);}
.m11e_c00188{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.m2f_c00188{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.md5_c00188{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);}
.m53_c00188{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);}
.mca_c00188{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);}
.m92_c00188{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);}
.m3d_c00188{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);}
.m128_c00188{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.m1bd_c00188{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.mdb_c00188{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);}
.m1b_c00188{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);}
.m130_c00188{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.m1ad_c00188{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.mf_c00188{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);}
.m146_c00188{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.mf2_c00188{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m177_c00188{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);}
.m199_c00188{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);}
.mf9_c00188{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m52_c00188{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m12c_c00188{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);}
.m1d_c00188{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);}
.m1ee_c00188{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m9a_c00188{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m8a_c00188{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m4e_c00188{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m18d_c00188{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m117_c00188{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);}
.m75_c00188{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);}
.m17b_c00188{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);}
.m17c_c00188{transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);}
.m6a_c00188{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.me3_c00188{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m14a_c00188{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m13_c00188{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m5c_c00188{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);}
.m86_c00188{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);}
.m1a2_c00188{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);}
.m4a_c00188{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);}
.m93_c00188{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m1d9_c00188{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.m180_c00188{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.me0_c00188{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m15b_c00188{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);}
.mfa_c00188{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);}
.m1ec_c00188{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.ma_c00188{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m173_c00188{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.mde_c00188{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00188{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);}
.m113_c00188{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);}
.m12e_c00188{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);}
.m62_c00188{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m1f3_c00188{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.me7_c00188{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);}
.m84_c00188{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);}
.m6e_c00188{transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);}
.m54_c00188{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);}
.m85_c00188{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);}
.m99_c00188{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.m16d_c00188{transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);}
.m143_c00188{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);}
.m1f0_c00188{transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);}
.m18c_c00188{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m102_c00188{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);}
.m1d5_c00188{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.me5_c00188{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);}
.m147_c00188{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.m1cd_c00188{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m19e_c00188{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m1dc_c00188{transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);}
.m179_c00188{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);}
.m1b8_c00188{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00188{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);}
.ma2_c00188{transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);}
.m12b_c00188{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);}
.m1d1_c00188{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.m11f_c00188{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);}
.m132_c00188{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);}
.m31_c00188{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);}
.m141_c00188{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.md8_c00188{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);}
.m109_c00188{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.md4_c00188{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);}
.m11c_c00188{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);}
.m5b_c00188{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);}
.m181_c00188{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);}
.mc6_c00188{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);}
.m1bc_c00188{transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);}
.md1_c00188{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);}
.m197_c00188{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m142_c00188{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);}
.m1a8_c00188{transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);}
.m1ea_c00188{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);}
.ma1_c00188{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);}
.m71_c00188{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);}
.m1e3_c00188{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.m1ce_c00188{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.m42_c00188{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.mc3_c00188{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);}
.m160_c00188{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);}
.m1e8_c00188{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);}
.m8c_c00188{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.m26_c00188{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m104_c00188{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);}
.m162_c00188{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.m87_c00188{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);}
.m21_c00188{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);}
.m55_c00188{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);}
.m23_c00188{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m171_c00188{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m0_c00188{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);}
.m9e_c00188{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m108_c00188{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);}
.m29_c00188{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);}
.m3f_c00188{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);}
.m37_c00188{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);}
.m1c_c00188{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m48_c00188{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m15_c00188{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me6_c00188{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);}
.m2b_c00188{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m41_c00188{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);}
.mb1_c00188{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);}
.m30_c00188{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m47_c00188{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);}
.m1_c00188{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00188{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00188{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);}
.m3e_c00188{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m66_c00188{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);}
.m16_c00188{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);}
.m38_c00188{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00188{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15d_c00188{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);}
.mf3_c00188{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m45_c00188{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00188{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);}
.m118_c00188{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c00188{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00188{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00188{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m95_c00188{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mb8_c00188{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00188{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00188{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c00188{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);}
.med_c00188{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mad_c00188{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m116_c00188{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c00188{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);}
.m10e_c00188{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);}
.m14c_c00188{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c00188{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00188{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);}
.m157_c00188{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m123_c00188{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1b1_c00188{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc4_c00188{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00188{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mbf_c00188{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);}
.m114_c00188{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1bf_c00188{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00188{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);}
.m6d_c00188{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00188{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m12_c00188{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m8_c00188{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m9_c00188{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.me2_c00188{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mb5_c00188{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);}
.m112_c00188{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m60_c00188{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);}
.m182_c00188{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00188{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);}
.m2d_c00188{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.maf_c00188{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c00188{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m198_c00188{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m12d_c00188{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00188{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mff_c00188{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00188{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);}
.m7_c00188{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m59_c00188{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mec_c00188{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00188{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00188{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m18b_c00188{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m133_c00188{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m89_c00188{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1ba_c00188{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m111_c00188{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00188{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);}
.m65_c00188{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);}
.m16e_c00188{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m103_c00188{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5_c00188{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00188{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.maa_c00188{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);}
.m178_c00188{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m168_c00188{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m73_c00188{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m153_c00188{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00188{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1e7_c00188{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m19f_c00188{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00188{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m72_c00188{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m152_c00188{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.md_c00188{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mc_c00188{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m159_c00188{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m18f_c00188{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);}
.m1e_c00188{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m1b5_c00188{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m15c_c00188{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m15e_c00188{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m61_c00188{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);}
.ma9_c00188{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m185_c00188{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m15a_c00188{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m1ed_c00188{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.me8_c00188{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m34_c00188{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m57_c00188{transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);}
.m22_c00188{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);}
.m13d_c00188{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m19d_c00188{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);}
.m136_c00188{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.mfb_c00188{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m1b9_c00188{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m195_c00188{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00188{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00188{transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);}
.m13f_c00188{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.mea_c00188{transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);}
.m183_c00188{transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);}
.mf6_c00188{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.me9_c00188{transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);}
.m1b7_c00188{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00188{transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);}
.m193_c00188{transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);}
.m1af_c00188{transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);}
.m148_c00188{transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);}
.m1e5_c00188{transform:matrix(1.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.270000,0.000000,0.000000,0.250000,0,0);}
.m196_c00188{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m10f_c00188{transform:matrix(1.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.297500,0.000000,0.000000,0.250000,0,0);}
.m186_c00188{transform:matrix(1.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.330000,0.000000,0.000000,0.250000,0,0);}
.m1be_c00188{transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00188{transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);}
.md0_c00188{transform:matrix(1.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.517500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00188{transform:matrix(1.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.662500,0.000000,0.000000,0.250000,0,0);}
.m1d0_c00188{transform:matrix(1.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.672500,0.000000,0.000000,0.250000,0,0);}
.m20_c00188{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m83_c00188{transform:matrix(1.847500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.847500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.847500,0.000000,0.000000,0.250000,0,0);}
.m82_c00188{transform:matrix(1.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.860000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00188{transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00188{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00188{transform:matrix(2.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.530000,0.000000,0.000000,0.250000,0,0);}
.m110_c00188{transform:matrix(2.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.557500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00188{transform:matrix(2.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.632500,0.000000,0.000000,0.250000,0,0);}
.m39_c00188{transform:matrix(3.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.887500,0.000000,0.000000,0.250000,0,0);}
.m1d6_c00188{transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00188{transform:matrix(4.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.892500,0.000000,0.000000,0.250000,0,0);}
.m58_c00188{transform:matrix(5.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.055000,0.000000,0.000000,0.250000,0,0);}
.m64_c00188{transform:matrix(5.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.077500,0.000000,0.000000,0.250000,0,0);}
.m63_c00188{transform:matrix(6.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.335000,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00188{transform:matrix(7.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.055000,0.000000,0.000000,0.250000,0,0);}
.me4_c00188{transform:matrix(11.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(11.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(11.520000,0.000000,0.000000,0.250000,0,0);}
.v2_c00188{vertical-align:-6.960000px;}
.v1_c00188{vertical-align:-3.420000px;}
.v0_c00188{vertical-align:0.000000px;}
.ls3_c00188{letter-spacing:0.000000px;}
.ls0_c00188{letter-spacing:64.542000px;}
.ls1_c00188{letter-spacing:209.349360px;}
.ls2_c00188{letter-spacing:268.002000px;}
.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;}
}
.ws1_c00188{word-spacing:-32.251560px;}
.ws0_c00188{word-spacing:-15.650263px;}
.ws2_c00188{word-spacing:0.000000px;}
._0_c00188{width:8.386080px;}
.fc0_c00188{color:transparent;}
.fs1_c00188{font-size:3.456000px;}
.fs12_c00188{font-size:6.000000px;}
.fs3_c00188{font-size:6.900000px;}
.fs16_c00188{font-size:10.380000px;}
.fs5_c00188{font-size:13.800000px;}
.fs2_c00188{font-size:17.280000px;}
.fs4_c00188{font-size:20.760000px;}
.fs18_c00188{font-size:24.180000px;}
.fs6_c00188{font-size:27.660000px;}
.fs14_c00188{font-size:31.080000px;}
.fs15_c00188{font-size:34.560000px;}
.fse_c00188{font-size:38.040000px;}
.fs10_c00188{font-size:41.460000px;}
.fs13_c00188{font-size:44.940000px;}
.fsd_c00188{font-size:48.360000px;}
.fsf_c00188{font-size:51.840000px;}
.fs0_c00188{font-size:55.320000px;}
.fs11_c00188{font-size:58.740000px;}
.fs7_c00188{font-size:62.220000px;}
.fs8_c00188{font-size:65.640000px;}
.fsc_c00188{font-size:69.120000px;}
.fs9_c00188{font-size:72.600000px;}
.fs17_c00188{font-size:76.020000px;}
.fsa_c00188{font-size:79.500000px;}
.fs1a_c00188{font-size:82.920000px;}
.fsb_c00188{font-size:86.400000px;}
.fs1c_c00188{font-size:89.880000px;}
.fs1e_c00188{font-size:93.300000px;}
.fs19_c00188{font-size:96.780000px;}
.fs1d_c00188{font-size:100.200000px;}
.fs1f_c00188{font-size:107.160000px;}
.fs1b_c00188{font-size:117.480000px;}
.y0_c00188{bottom:0.000000px;}
.y212_c00188{bottom:264.390000px;}
.y20e_c00188{bottom:265.245000px;}
.y211_c00188{bottom:266.115000px;}
.y214_c00188{bottom:266.970000px;}
.y20d_c00188{bottom:267.840000px;}
.y208_c00188{bottom:268.710000px;}
.y20f_c00188{bottom:269.565000px;}
.y20a_c00188{bottom:271.290000px;}
.y20c_c00188{bottom:272.160000px;}
.y209_c00188{bottom:275.610000px;}
.y213_c00188{bottom:280.800000px;}
.y20b_c00188{bottom:282.525000px;}
.y210_c00188{bottom:287.715000px;}
.y203_c00188{bottom:291.165000px;}
.y204_c00188{bottom:292.035000px;}
.y202_c00188{bottom:292.890000px;}
.y201_c00188{bottom:293.760000px;}
.y205_c00188{bottom:300.675000px;}
.y207_c00188{bottom:303.270000px;}
.y206_c00188{bottom:304.995000px;}
.y1fe_c00188{bottom:305.850000px;}
.y1fc_c00188{bottom:306.720000px;}
.y1fb_c00188{bottom:309.315000px;}
.y200_c00188{bottom:310.170000px;}
.y1fd_c00188{bottom:311.910000px;}
.y1ff_c00188{bottom:312.765000px;}
.y1fa_c00188{bottom:314.490000px;}
.y1f9_c00188{bottom:315.360000px;}
.y1f8_c00188{bottom:323.130000px;}
.y1f2_c00188{bottom:324.870000px;}
.y1f0_c00188{bottom:325.725000px;}
.y1ef_c00188{bottom:326.595000px;}
.y1f7_c00188{bottom:327.450000px;}
.y1f3_c00188{bottom:328.320000px;}
.y1f6_c00188{bottom:329.190000px;}
.y1f4_c00188{bottom:330.045000px;}
.y1f1_c00188{bottom:333.510000px;}
.y1f5_c00188{bottom:335.235000px;}
.y1ec_c00188{bottom:338.685000px;}
.y1ed_c00188{bottom:340.410000px;}
.y1ea_c00188{bottom:341.280000px;}
.y1e8_c00188{bottom:343.005000px;}
.y1ee_c00188{bottom:344.730000px;}
.y1eb_c00188{bottom:345.600000px;}
.y1e9_c00188{bottom:346.470000px;}
.y1e0_c00188{bottom:360.285000px;}
.y1dd_c00188{bottom:362.010000px;}
.y1e2_c00188{bottom:363.750000px;}
.y1dc_c00188{bottom:364.605000px;}
.y1e7_c00188{bottom:365.475000px;}
.y1e3_c00188{bottom:366.330000px;}
.y1e5_c00188{bottom:367.200000px;}
.y1e4_c00188{bottom:368.070000px;}
.y1e6_c00188{bottom:368.925000px;}
.y1e1_c00188{bottom:370.650000px;}
.y1df_c00188{bottom:376.710000px;}
.y1de_c00188{bottom:380.160000px;}
.y1db_c00188{bottom:381.030000px;}
.y1d4_c00188{bottom:381.885000px;}
.y1d5_c00188{bottom:382.755000px;}
.y1d7_c00188{bottom:385.350000px;}
.y1d8_c00188{bottom:387.075000px;}
.y1d9_c00188{bottom:389.670000px;}
.y1d6_c00188{bottom:392.250000px;}
.y1da_c00188{bottom:396.570000px;}
.y1d1_c00188{bottom:398.310000px;}
.y1cc_c00188{bottom:399.165000px;}
.y1cf_c00188{bottom:400.035000px;}
.y1ce_c00188{bottom:401.760000px;}
.y1cd_c00188{bottom:402.630000px;}
.y1d3_c00188{bottom:403.485000px;}
.y1c9_c00188{bottom:404.355000px;}
.y1c5_c00188{bottom:405.210000px;}
.y1d2_c00188{bottom:406.080000px;}
.y1d0_c00188{bottom:412.125000px;}
.y1c4_c00188{bottom:412.995000px;}
.y1c7_c00188{bottom:414.720000px;}
.y1cb_c00188{bottom:415.590000px;}
.y1c8_c00188{bottom:417.315000px;}
.y1ca_c00188{bottom:420.765000px;}
.y1c6_c00188{bottom:423.360000px;}
.y1c3_c00188{bottom:425.085000px;}
.y1bb_c00188{bottom:425.955000px;}
.y1bd_c00188{bottom:426.810000px;}
.y1c0_c00188{bottom:430.275000px;}
.y1ba_c00188{bottom:435.450000px;}
.y1be_c00188{bottom:436.320000px;}
.y1c1_c00188{bottom:437.190000px;}
.y1c2_c00188{bottom:438.045000px;}
.y1bc_c00188{bottom:440.640000px;}
.y1bf_c00188{bottom:445.830000px;}
.y1b2_c00188{bottom:447.555000px;}
.y1b9_c00188{bottom:450.150000px;}
.y1b7_c00188{bottom:451.005000px;}
.y1b4_c00188{bottom:451.875000px;}
.y1b8_c00188{bottom:452.730000px;}
.y1b5_c00188{bottom:453.600000px;}
.y1b3_c00188{bottom:455.325000px;}
.y1b1_c00188{bottom:457.920000px;}
.y1b6_c00188{bottom:461.370000px;}
.y1ae_c00188{bottom:463.110000px;}
.y1ab_c00188{bottom:464.835000px;}
.y1af_c00188{bottom:465.690000px;}
.y1a9_c00188{bottom:466.560000px;}
.y1aa_c00188{bottom:467.430000px;}
.y1ad_c00188{bottom:469.155000px;}
.y1b0_c00188{bottom:470.010000px;}
.y1ac_c00188{bottom:470.880000px;}
.y1a8_c00188{bottom:482.115000px;}
.y1a5_c00188{bottom:483.840000px;}
.y1a3_c00188{bottom:485.565000px;}
.y1a6_c00188{bottom:487.290000px;}
.y1a4_c00188{bottom:488.160000px;}
.y1a7_c00188{bottom:495.930000px;}
.y1a1_c00188{bottom:499.395000px;}
.y1a0_c00188{bottom:500.250000px;}
.y19e_c00188{bottom:501.120000px;}
.y19b_c00188{bottom:501.990000px;}
.y1a2_c00188{bottom:502.845000px;}
.y19f_c00188{bottom:504.570000px;}
.y19d_c00188{bottom:505.440000px;}
.y19c_c00188{bottom:506.310000px;}
.y199_c00188{bottom:515.805000px;}
.y19a_c00188{bottom:516.675000px;}
.y195_c00188{bottom:517.530000px;}
.y194_c00188{bottom:518.400000px;}
.y193_c00188{bottom:520.125000px;}
.y198_c00188{bottom:522.720000px;}
.y196_c00188{bottom:523.590000px;}
.y192_c00188{bottom:526.170000px;}
.y197_c00188{bottom:527.040000px;}
.y190_c00188{bottom:534.810000px;}
.y18c_c00188{bottom:536.550000px;}
.y18e_c00188{bottom:537.405000px;}
.y18b_c00188{bottom:538.275000px;}
.y18f_c00188{bottom:539.130000px;}
.y18d_c00188{bottom:540.000000px;}
.y191_c00188{bottom:541.725000px;}
.y188_c00188{bottom:552.960000px;}
.y189_c00188{bottom:553.830000px;}
.y18a_c00188{bottom:554.685000px;}
.y182_c00188{bottom:555.555000px;}
.y180_c00188{bottom:556.410000px;}
.y184_c00188{bottom:557.280000px;}
.y183_c00188{bottom:558.150000px;}
.y185_c00188{bottom:559.005000px;}
.y186_c00188{bottom:562.470000px;}
.y187_c00188{bottom:566.790000px;}
.y181_c00188{bottom:569.370000px;}
.y178_c00188{bottom:571.110000px;}
.y17e_c00188{bottom:572.835000px;}
.y17f_c00188{bottom:573.690000px;}
.y17d_c00188{bottom:574.560000px;}
.y17c_c00188{bottom:575.430000px;}
.y179_c00188{bottom:576.285000px;}
.y17b_c00188{bottom:577.155000px;}
.y17a_c00188{bottom:581.475000px;}
.y177_c00188{bottom:582.330000px;}
.y176_c00188{bottom:587.520000px;}
.y175_c00188{bottom:588.390000px;}
.y174_c00188{bottom:589.245000px;}
.y172_c00188{bottom:592.710000px;}
.y173_c00188{bottom:593.565000px;}
.y170_c00188{bottom:605.670000px;}
.y16b_c00188{bottom:606.525000px;}
.y16e_c00188{bottom:607.395000px;}
.y169_c00188{bottom:608.250000px;}
.y16a_c00188{bottom:609.120000px;}
.y168_c00188{bottom:609.990000px;}
.y16c_c00188{bottom:611.715000px;}
.y171_c00188{bottom:613.440000px;}
.y16f_c00188{bottom:614.310000px;}
.y16d_c00188{bottom:618.630000px;}
.y167_c00188{bottom:621.210000px;}
.y166_c00188{bottom:623.805000px;}
.y15d_c00188{bottom:624.675000px;}
.y163_c00188{bottom:625.530000px;}
.y161_c00188{bottom:626.400000px;}
.y162_c00188{bottom:627.270000px;}
.y160_c00188{bottom:628.995000px;}
.y15f_c00188{bottom:629.850000px;}
.y165_c00188{bottom:633.315000px;}
.y15e_c00188{bottom:637.635000px;}
.y164_c00188{bottom:638.490000px;}
.y15b_c00188{bottom:640.230000px;}
.y15a_c00188{bottom:641.085000px;}
.y155_c00188{bottom:641.955000px;}
.y154_c00188{bottom:642.810000px;}
.y158_c00188{bottom:644.550000px;}
.y15c_c00188{bottom:645.405000px;}
.y156_c00188{bottom:646.275000px;}
.y157_c00188{bottom:647.130000px;}
.y159_c00188{bottom:652.320000px;}
.y14d_c00188{bottom:659.235000px;}
.y153_c00188{bottom:660.090000px;}
.y14f_c00188{bottom:660.960000px;}
.y14c_c00188{bottom:661.830000px;}
.y14a_c00188{bottom:662.685000px;}
.y14b_c00188{bottom:663.555000px;}
.y150_c00188{bottom:664.410000px;}
.y14e_c00188{bottom:669.600000px;}
.y152_c00188{bottom:670.470000px;}
.y151_c00188{bottom:671.325000px;}
.y148_c00188{bottom:676.515000px;}
.y146_c00188{bottom:677.370000px;}
.y145_c00188{bottom:678.240000px;}
.y149_c00188{bottom:679.110000px;}
.y144_c00188{bottom:679.965000px;}
.y143_c00188{bottom:680.835000px;}
.y147_c00188{bottom:681.690000px;}
.y13d_c00188{bottom:692.070000px;}
.y13f_c00188{bottom:692.925000px;}
.y13a_c00188{bottom:693.795000px;}
.y141_c00188{bottom:694.650000px;}
.y13e_c00188{bottom:695.520000px;}
.y142_c00188{bottom:696.390000px;}
.y13c_c00188{bottom:697.245000px;}
.y140_c00188{bottom:698.115000px;}
.y13b_c00188{bottom:699.840000px;}
.y136_c00188{bottom:707.610000px;}
.y135_c00188{bottom:708.480000px;}
.y134_c00188{bottom:709.350000px;}
.y137_c00188{bottom:710.205000px;}
.y138_c00188{bottom:711.930000px;}
.y139_c00188{bottom:712.800000px;}
.y132_c00188{bottom:714.525000px;}
.y133_c00188{bottom:715.395000px;}
.y12f_c00188{bottom:726.630000px;}
.y12e_c00188{bottom:728.355000px;}
.y131_c00188{bottom:730.950000px;}
.y130_c00188{bottom:731.805000px;}
.y12d_c00188{bottom:747.360000px;}
.y12b_c00188{bottom:749.085000px;}
.y12c_c00188{bottom:749.955000px;}
.y248_c00188{bottom:752.550000px;}
.y245_c00188{bottom:755.130000px;}
.y12a_c00188{bottom:756.000000px;}
.y247_c00188{bottom:757.725000px;}
.y246_c00188{bottom:758.595000px;}
.y127_c00188{bottom:761.190000px;}
.y129_c00188{bottom:762.915000px;}
.y124_c00188{bottom:763.770000px;}
.y128_c00188{bottom:764.640000px;}
.y125_c00188{bottom:767.235000px;}
.y126_c00188{bottom:768.960000px;}
.y241_c00188{bottom:772.410000px;}
.y244_c00188{bottom:775.875000px;}
.y121_c00188{bottom:779.325000px;}
.y242_c00188{bottom:780.195000px;}
.y243_c00188{bottom:781.050000px;}
.y11f_c00188{bottom:782.790000px;}
.y11e_c00188{bottom:783.645000px;}
.y120_c00188{bottom:784.515000px;}
.y122_c00188{bottom:785.370000px;}
.y123_c00188{bottom:787.110000px;}
.y240_c00188{bottom:791.430000px;}
.y11d_c00188{bottom:792.285000px;}
.y11c_c00188{bottom:795.750000px;}
.y119_c00188{bottom:796.605000px;}
.y11b_c00188{bottom:797.475000px;}
.y11a_c00188{bottom:799.200000px;}
.y118_c00188{bottom:801.795000px;}
.y23d_c00188{bottom:807.840000px;}
.y117_c00188{bottom:812.160000px;}
.y23e_c00188{bottom:813.030000px;}
.y116_c00188{bottom:813.885000px;}
.y115_c00188{bottom:814.755000px;}
.y114_c00188{bottom:817.350000px;}
.y113_c00188{bottom:818.205000px;}
.y23f_c00188{bottom:819.075000px;}
.y112_c00188{bottom:823.395000px;}
.y23a_c00188{bottom:828.570000px;}
.y23c_c00188{bottom:829.440000px;}
.y23b_c00188{bottom:830.310000px;}
.y111_c00188{bottom:832.035000px;}
.y109_c00188{bottom:832.890000px;}
.y10b_c00188{bottom:833.760000px;}
.y10e_c00188{bottom:834.630000px;}
.y10c_c00188{bottom:835.485000px;}
.y10f_c00188{bottom:837.210000px;}
.y10d_c00188{bottom:838.080000px;}
.y110_c00188{bottom:842.400000px;}
.y10a_c00188{bottom:843.270000px;}
.y104_c00188{bottom:845.850000px;}
.y237_c00188{bottom:847.590000px;}
.y106_c00188{bottom:848.445000px;}
.y107_c00188{bottom:851.910000px;}
.y105_c00188{bottom:852.765000px;}
.y108_c00188{bottom:854.490000px;}
.yff_c00188{bottom:866.595000px;}
.y235_c00188{bottom:867.450000px;}
.y234_c00188{bottom:868.320000px;}
.yfd_c00188{bottom:869.190000px;}
.yfe_c00188{bottom:870.045000px;}
.y100_c00188{bottom:870.915000px;}
.yfc_c00188{bottom:871.770000px;}
.y101_c00188{bottom:872.640000px;}
.y236_c00188{bottom:873.510000px;}
.y103_c00188{bottom:875.235000px;}
.y102_c00188{bottom:876.090000px;}
.yfb_c00188{bottom:882.150000px;}
.yf9_c00188{bottom:883.005000px;}
.yfa_c00188{bottom:883.875000px;}
.y233_c00188{bottom:884.730000px;}
.yf8_c00188{bottom:887.325000px;}
.yf7_c00188{bottom:888.195000px;}
.y232_c00188{bottom:889.920000px;}
.y231_c00188{bottom:894.240000px;}
.y22e_c00188{bottom:899.430000px;}
.yf4_c00188{bottom:902.880000px;}
.yf6_c00188{bottom:903.750000px;}
.yf5_c00188{bottom:904.605000px;}
.yf2_c00188{bottom:905.475000px;}
.y230_c00188{bottom:906.330000px;}
.y22f_c00188{bottom:908.070000px;}
.y22d_c00188{bottom:912.390000px;}
.yf0_c00188{bottom:913.245000px;}
.yef_c00188{bottom:914.970000px;}
.y22c_c00188{bottom:915.840000px;}
.yf1_c00188{bottom:916.710000px;}
.y22b_c00188{bottom:918.435000px;}
.yf3_c00188{bottom:919.290000px;}
.yec_c00188{bottom:921.030000px;}
.yeb_c00188{bottom:922.755000px;}
.yed_c00188{bottom:923.610000px;}
.yee_c00188{bottom:924.480000px;}
.ye8_c00188{bottom:936.570000px;}
.y22a_c00188{bottom:937.440000px;}
.y228_c00188{bottom:939.165000px;}
.yea_c00188{bottom:940.035000px;}
.ye9_c00188{bottom:940.890000px;}
.y224_c00188{bottom:943.485000px;}
.y229_c00188{bottom:944.355000px;}
.ye7_c00188{bottom:945.210000px;}
.y225_c00188{bottom:946.080000px;}
.y227_c00188{bottom:946.950000px;}
.y226_c00188{bottom:948.675000px;}
.y222_c00188{bottom:949.530000px;}
.ye6_c00188{bottom:950.400000px;}
.ye0_c00188{bottom:953.850000px;}
.ye3_c00188{bottom:954.720000px;}
.y223_c00188{bottom:955.590000px;}
.ye4_c00188{bottom:956.445000px;}
.ye1_c00188{bottom:957.315000px;}
.ye2_c00188{bottom:958.170000px;}
.ydf_c00188{bottom:959.040000px;}
.ye5_c00188{bottom:961.635000px;}
.y221_c00188{bottom:965.085000px;}
.y220_c00188{bottom:968.550000px;}
.ydb_c00188{bottom:970.275000px;}
.y21e_c00188{bottom:971.130000px;}
.y21f_c00188{bottom:972.000000px;}
.yd9_c00188{bottom:972.870000px;}
.ydd_c00188{bottom:973.725000px;}
.yda_c00188{bottom:975.450000px;}
.ydc_c00188{bottom:977.190000px;}
.yde_c00188{bottom:978.045000px;}
.y21d_c00188{bottom:983.235000px;}
.y21a_c00188{bottom:984.090000px;}
.y219_c00188{bottom:985.830000px;}
.y21b_c00188{bottom:986.685000px;}
.y21c_c00188{bottom:989.280000px;}
.yd3_c00188{bottom:990.150000px;}
.yd5_c00188{bottom:991.005000px;}
.yd7_c00188{bottom:992.730000px;}
.yd6_c00188{bottom:993.600000px;}
.y238_c00188{bottom:994.470000px;}
.yd8_c00188{bottom:995.325000px;}
.y239_c00188{bottom:997.050000px;}
.yd4_c00188{bottom:999.645000px;}
.yce_c00188{bottom:1005.690000px;}
.yd0_c00188{bottom:1006.560000px;}
.yd2_c00188{bottom:1007.430000px;}
.y217_c00188{bottom:1008.285000px;}
.y218_c00188{bottom:1009.155000px;}
.ycf_c00188{bottom:1010.880000px;}
.yd1_c00188{bottom:1011.750000px;}
.yc7_c00188{bottom:1023.840000px;}
.yc6_c00188{bottom:1024.710000px;}
.yc8_c00188{bottom:1025.565000px;}
.yc9_c00188{bottom:1026.435000px;}
.yca_c00188{bottom:1028.160000px;}
.ycb_c00188{bottom:1029.030000px;}
.ycc_c00188{bottom:1033.350000px;}
.yc5_c00188{bottom:1035.930000px;}
.yc3_c00188{bottom:1036.800000px;}
.ycd_c00188{bottom:1039.395000px;}
.yc1_c00188{bottom:1041.120000px;}
.yc0_c00188{bottom:1041.990000px;}
.yc2_c00188{bottom:1047.165000px;}
.yc4_c00188{bottom:1048.035000px;}
.ybb_c00188{bottom:1048.890000px;}
.ybe_c00188{bottom:1049.760000px;}
.ybc_c00188{bottom:1050.630000px;}
.ybd_c00188{bottom:1051.485000px;}
.yb3_c00188{bottom:1054.080000px;}
.ybf_c00188{bottom:1056.675000px;}
.yb7_c00188{bottom:1061.850000px;}
.yb8_c00188{bottom:1062.720000px;}
.yba_c00188{bottom:1066.170000px;}
.yb9_c00188{bottom:1067.040000px;}
.yb6_c00188{bottom:1071.360000px;}
.yb4_c00188{bottom:1072.230000px;}
.yb5_c00188{bottom:1073.085000px;}
.yb0_c00188{bottom:1073.955000px;}
.ya8_c00188{bottom:1074.810000px;}
.yaa_c00188{bottom:1076.550000px;}
.ya9_c00188{bottom:1077.405000px;}
.yb1_c00188{bottom:1078.275000px;}
.ya7_c00188{bottom:1080.870000px;}
.yb2_c00188{bottom:1081.725000px;}
.yab_c00188{bottom:1082.595000px;}
.yae_c00188{bottom:1084.320000px;}
.yaf_c00188{bottom:1085.190000px;}
.yac_c00188{bottom:1086.045000px;}
.yad_c00188{bottom:1087.770000px;}
.ya4_c00188{bottom:1097.280000px;}
.ya0_c00188{bottom:1098.150000px;}
.ya1_c00188{bottom:1099.875000px;}
.ya6_c00188{bottom:1100.730000px;}
.ya3_c00188{bottom:1105.920000px;}
.ya5_c00188{bottom:1106.790000px;}
.ya2_c00188{bottom:1110.240000px;}
.y9c_c00188{bottom:1111.110000px;}
.y9d_c00188{bottom:1111.965000px;}
.y99_c00188{bottom:1112.835000px;}
.y9a_c00188{bottom:1115.430000px;}
.y8_c00188{bottom:1116.285000px;}
.y9b_c00188{bottom:1118.010000px;}
.y9f_c00188{bottom:1118.880000px;}
.y9e_c00188{bottom:1120.605000px;}
.y6_c00188{bottom:1123.200000px;}
.y98_c00188{bottom:1124.070000px;}
.y7_c00188{bottom:1127.520000px;}
.y90_c00188{bottom:1130.970000px;}
.y8f_c00188{bottom:1131.840000px;}
.y94_c00188{bottom:1133.565000px;}
.y8d_c00188{bottom:1135.290000px;}
.y95_c00188{bottom:1137.030000px;}
.y93_c00188{bottom:1137.885000px;}
.y91_c00188{bottom:1138.755000px;}
.y97_c00188{bottom:1139.610000px;}
.y96_c00188{bottom:1140.480000px;}
.y8e_c00188{bottom:1141.350000px;}
.y92_c00188{bottom:1142.205000px;}
.y86_c00188{bottom:1146.525000px;}
.y83_c00188{bottom:1148.250000px;}
.y85_c00188{bottom:1150.845000px;}
.y87_c00188{bottom:1152.570000px;}
.y88_c00188{bottom:1153.440000px;}
.y8c_c00188{bottom:1154.310000px;}
.y84_c00188{bottom:1155.165000px;}
.y8a_c00188{bottom:1156.035000px;}
.y8b_c00188{bottom:1158.630000px;}
.y89_c00188{bottom:1159.485000px;}
.y7d_c00188{bottom:1168.995000px;}
.y7e_c00188{bottom:1170.720000px;}
.y7f_c00188{bottom:1173.315000px;}
.y7c_c00188{bottom:1175.910000px;}
.y80_c00188{bottom:1176.765000px;}
.y81_c00188{bottom:1182.810000px;}
.y82_c00188{bottom:1187.130000px;}
.y7b_c00188{bottom:1188.870000px;}
.y77_c00188{bottom:1189.725000px;}
.y79_c00188{bottom:1190.595000px;}
.y76_c00188{bottom:1191.450000px;}
.y7a_c00188{bottom:1192.320000px;}
.y78_c00188{bottom:1194.915000px;}
.y75_c00188{bottom:1198.365000px;}
.y6c_c00188{bottom:1199.235000px;}
.y74_c00188{bottom:1200.090000px;}
.y6e_c00188{bottom:1202.685000px;}
.y6b_c00188{bottom:1204.410000px;}
.y6d_c00188{bottom:1205.280000px;}
.y70_c00188{bottom:1206.150000px;}
.y6f_c00188{bottom:1207.005000px;}
.y72_c00188{bottom:1207.875000px;}
.y73_c00188{bottom:1208.730000px;}
.y71_c00188{bottom:1209.600000px;}
.y69_c00188{bottom:1212.195000px;}
.y6a_c00188{bottom:1214.790000px;}
.y61_c00188{bottom:1217.370000px;}
.y62_c00188{bottom:1218.240000px;}
.y65_c00188{bottom:1219.110000px;}
.y60_c00188{bottom:1221.690000px;}
.y64_c00188{bottom:1222.560000px;}
.y63_c00188{bottom:1223.430000px;}
.y67_c00188{bottom:1224.285000px;}
.y66_c00188{bottom:1225.155000px;}
.y68_c00188{bottom:1229.475000px;}
.y5b_c00188{bottom:1233.795000px;}
.y5f_c00188{bottom:1238.115000px;}
.y5c_c00188{bottom:1238.970000px;}
.y5d_c00188{bottom:1239.840000px;}
.y5e_c00188{bottom:1240.710000px;}
.y57_c00188{bottom:1242.435000px;}
.y58_c00188{bottom:1243.290000px;}
.y5a_c00188{bottom:1245.030000px;}
.y59_c00188{bottom:1246.755000px;}
.y56_c00188{bottom:1247.610000px;}
.y4f_c00188{bottom:1252.800000px;}
.y55_c00188{bottom:1253.670000px;}
.y53_c00188{bottom:1255.395000px;}
.y50_c00188{bottom:1256.250000px;}
.y46_c00188{bottom:1257.990000px;}
.y4a_c00188{bottom:1259.715000px;}
.y51_c00188{bottom:1260.570000px;}
.y54_c00188{bottom:1261.440000px;}
.y4c_c00188{bottom:1262.310000px;}
.y4d_c00188{bottom:1263.165000px;}
.y4b_c00188{bottom:1264.035000px;}
.y49_c00188{bottom:1264.890000px;}
.y4e_c00188{bottom:1265.760000px;}
.y52_c00188{bottom:1266.630000px;}
.y48_c00188{bottom:1267.485000px;}
.y47_c00188{bottom:1268.355000px;}
.y3f_c00188{bottom:1270.080000px;}
.y3d_c00188{bottom:1270.950000px;}
.y40_c00188{bottom:1274.400000px;}
.y3e_c00188{bottom:1275.270000px;}
.y43_c00188{bottom:1277.850000px;}
.y44_c00188{bottom:1278.720000px;}
.y41_c00188{bottom:1279.590000px;}
.y42_c00188{bottom:1281.315000px;}
.y45_c00188{bottom:1283.910000px;}
.y3a_c00188{bottom:1288.230000px;}
.y35_c00188{bottom:1289.085000px;}
.y3b_c00188{bottom:1289.955000px;}
.y38_c00188{bottom:1290.810000px;}
.y36_c00188{bottom:1291.680000px;}
.y37_c00188{bottom:1292.550000px;}
.y39_c00188{bottom:1293.405000px;}
.y3c_c00188{bottom:1294.275000px;}
.y2f_c00188{bottom:1306.365000px;}
.y30_c00188{bottom:1308.090000px;}
.y32_c00188{bottom:1308.960000px;}
.y31_c00188{bottom:1309.830000px;}
.y34_c00188{bottom:1310.685000px;}
.y33_c00188{bottom:1311.555000px;}
.y1_c00188{bottom:1314.150000px;}
.y28_c00188{bottom:1321.920000px;}
.y27_c00188{bottom:1322.790000px;}
.y29_c00188{bottom:1324.515000px;}
.y2a_c00188{bottom:1325.370000px;}
.y2b_c00188{bottom:1327.965000px;}
.y2c_c00188{bottom:1328.835000px;}
.y2e_c00188{bottom:1329.690000px;}
.y2d_c00188{bottom:1330.560000px;}
.y21_c00188{bottom:1340.070000px;}
.y20_c00188{bottom:1340.925000px;}
.y26_c00188{bottom:1342.650000px;}
.y25_c00188{bottom:1345.245000px;}
.y22_c00188{bottom:1346.115000px;}
.y23_c00188{bottom:1346.970000px;}
.y24_c00188{bottom:1347.840000px;}
.y15_c00188{bottom:1356.480000px;}
.y18_c00188{bottom:1358.205000px;}
.y17_c00188{bottom:1359.075000px;}
.y1d_c00188{bottom:1359.930000px;}
.y19_c00188{bottom:1360.800000px;}
.y16_c00188{bottom:1361.670000px;}
.y216_c00188{bottom:1362.525000px;}
.y1c_c00188{bottom:1363.395000px;}
.y1e_c00188{bottom:1364.250000px;}
.y1a_c00188{bottom:1368.570000px;}
.y215_c00188{bottom:1370.310000px;}
.y1b_c00188{bottom:1371.165000px;}
.y1f_c00188{bottom:1372.890000px;}
.yf_c00188{bottom:1374.630000px;}
.yd_c00188{bottom:1375.485000px;}
.y12_c00188{bottom:1376.355000px;}
.y13_c00188{bottom:1377.210000px;}
.ye_c00188{bottom:1379.805000px;}
.y10_c00188{bottom:1380.675000px;}
.y11_c00188{bottom:1381.530000px;}
.y14_c00188{bottom:1386.720000px;}
.yc_c00188{bottom:1397.955000px;}
.ya_c00188{bottom:1400.550000px;}
.y9_c00188{bottom:1401.405000px;}
.yb_c00188{bottom:1402.275000px;}
.y4_c00188{bottom:1419.555000px;}
.y5_c00188{bottom:1422.150000px;}
.y3_c00188{bottom:1428.195000px;}
.y2_c00188{bottom:1430.790000px;}
.h3_c00188{height:3.110063px;}
.h14_c00188{height:5.399414px;}
.h5_c00188{height:6.209326px;}
.h18_c00188{height:9.340986px;}
.h7_c00188{height:12.418652px;}
.h4_c00188{height:15.550313px;}
.h6_c00188{height:18.681973px;}
.h1a_c00188{height:21.759639px;}
.h8_c00188{height:24.891299px;}
.h16_c00188{height:27.968965px;}
.h17_c00188{height:31.100625px;}
.h10_c00188{height:34.232285px;}
.h12_c00188{height:37.309951px;}
.h15_c00188{height:40.441611px;}
.hf_c00188{height:43.519277px;}
.h11_c00188{height:46.650937px;}
.h2_c00188{height:49.782598px;}
.h13_c00188{height:52.860264px;}
.h9_c00188{height:55.991924px;}
.ha_c00188{height:59.069590px;}
.he_c00188{height:62.201250px;}
.hb_c00188{height:65.332910px;}
.h19_c00188{height:68.410576px;}
.hc_c00188{height:71.542236px;}
.h1c_c00188{height:74.619902px;}
.hd_c00188{height:77.751563px;}
.h1e_c00188{height:80.883223px;}
.h20_c00188{height:83.960889px;}
.h1b_c00188{height:87.092549px;}
.h1f_c00188{height:90.170215px;}
.h21_c00188{height:96.433535px;}
.h1d_c00188{height:105.720527px;}
.h0_c00188{height:1523.235000px;}
.h1_c00188{height:1523.250000px;}
.w0_c00188{width:1107.645000px;}
.w1_c00188{width:1107.750000px;}
.x0_c00188{left:0.000000px;}
.x1_c00188{left:177.120000px;}
.x6_c00188{left:216.000000px;}
.x8_c00188{left:221.190000px;}
.x7_c00188{left:227.235000px;}
.xc0_c00188{left:237.600000px;}
.xe5_c00188{left:246.240000px;}
.xda_c00188{left:247.965000px;}
.xc5_c00188{left:250.560000px;}
.xd4_c00188{left:254.880000px;}
.xa1_c00188{left:256.605000px;}
.x42_c00188{left:258.330000px;}
.x1c_c00188{left:260.925000px;}
.x92_c00188{left:262.650000px;}
.x9a_c00188{left:265.245000px;}
.x7c_c00188{left:266.970000px;}
.xf7_c00188{left:268.710000px;}
.xe6_c00188{left:272.160000px;}
.x9b_c00188{left:274.755000px;}
.xbb_c00188{left:276.480000px;}
.x10c_c00188{left:278.205000px;}
.x11_c00188{left:279.930000px;}
.xa9_c00188{left:282.525000px;}
.xdc_c00188{left:284.250000px;}
.x57_c00188{left:285.990000px;}
.x1d_c00188{left:287.715000px;}
.xaa_c00188{left:289.440000px;}
.x43_c00188{left:291.165000px;}
.x107_c00188{left:292.890000px;}
.x81_c00188{left:295.485000px;}
.x61_c00188{left:298.080000px;}
.x4d_c00188{left:302.400000px;}
.xc6_c00188{left:305.850000px;}
.xc9_c00188{left:307.590000px;}
.x32_c00188{left:311.040000px;}
.xc8_c00188{left:314.490000px;}
.xbc_c00188{left:317.955000px;}
.xe8_c00188{left:319.680000px;}
.xdf_c00188{left:321.405000px;}
.x44_c00188{left:324.000000px;}
.xdd_c00188{left:325.725000px;}
.xc1_c00188{left:327.450000px;}
.x4e_c00188{left:330.045000px;}
.xcf_c00188{left:331.770000px;}
.xd5_c00188{left:334.365000px;}
.x8f_c00188{left:336.090000px;}
.x10d_c00188{left:337.830000px;}
.x101_c00188{left:339.555000px;}
.x82_c00188{left:341.280000px;}
.x1e_c00188{left:343.005000px;}
.xca_c00188{left:345.600000px;}
.x9c_c00188{left:347.325000px;}
.xfa_c00188{left:351.645000px;}
.x93_c00188{left:353.370000px;}
.xab_c00188{left:355.110000px;}
.xd1_c00188{left:356.835000px;}
.x3b_c00188{left:358.560000px;}
.x73_c00188{left:360.285000px;}
.x10e_c00188{left:363.750000px;}
.xa4_c00188{left:365.475000px;}
.xdb_c00188{left:368.070000px;}
.x1f_c00188{left:371.520000px;}
.xbd_c00188{left:376.710000px;}
.x29_c00188{left:378.435000px;}
.x112_c00188{left:380.160000px;}
.x33_c00188{left:381.885000px;}
.xd6_c00188{left:384.480000px;}
.xd9_c00188{left:387.075000px;}
.x4f_c00188{left:388.800000px;}
.x62_c00188{left:391.395000px;}
.xa2_c00188{left:393.120000px;}
.xcd_c00188{left:395.715000px;}
.xa5_c00188{left:399.165816px;}
.x94_c00188{left:400.890000px;}
.x77_c00188{left:402.630000px;}
.xc2_c00188{left:404.355000px;}
.x63_c00188{left:406.080000px;}
.x83_c00188{left:407.805000px;}
.x58_c00188{left:410.400000px;}
.xcb_c00188{left:412.995000px;}
.xd7_c00188{left:415.590000px;}
.x45_c00188{left:417.315000px;}
.x69_c00188{left:419.040000px;}
.x2a_c00188{left:424.230000px;}
.x95_c00188{left:425.955000px;}
.x50_c00188{left:428.550000px;}
.xc7_c00188{left:431.130000px;}
.xe0_c00188{left:435.450000px;}
.xde_c00188{left:438.045000px;}
.x9d_c00188{left:440.640000px;}
.xd2_c00188{left:442.365000px;}
.xd8_c00188{left:444.090000px;}
.x51_c00188{left:446.685000px;}
.x12_c00188{left:448.410000px;}
.xbe_c00188{left:452.730000px;}
.xff_c00188{left:455.325000px;}
.x46_c00188{left:457.920000px;}
.x59_c00188{left:459.645000px;}
.x8a_c00188{left:461.370000px;}
.xce_c00188{left:463.965000px;}
.x34_c00188{left:465.690000px;}
.x78_c00188{left:468.285000px;}
.xe1_c00188{left:470.010000px;}
.x64_c00188{left:472.605000px;}
.x74_c00188{left:475.200000px;}
.x9e_c00188{left:477.795000px;}
.x47_c00188{left:479.520000px;}
.x110_c00188{left:482.115000px;}
.xa6_c00188{left:483.840000px;}
.xac_c00188{left:485.565000px;}
.x2b_c00188{left:489.030000px;}
.x84_c00188{left:490.755000px;}
.x96_c00188{left:493.350000px;}
.xc3_c00188{left:495.075000px;}
.x35_c00188{left:496.800000px;}
.x52_c00188{left:498.525000px;}
.xd0_c00188{left:501.990000px;}
.xcc_c00188{left:503.715000px;}
.xed_c00188{left:506.310000px;}
.xb4_c00188{left:508.035000px;}
.x9f_c00188{left:509.760000px;}
.x75_c00188{left:511.485000px;}
.x9_c00188{left:513.210000px;}
.xb8_c00188{left:516.675000px;}
.x48_c00188{left:519.270000px;}
.xc4_c00188{left:521.850000px;}
.x79_c00188{left:523.590000px;}
.xad_c00188{left:525.315000px;}
.x100_c00188{left:527.040000px;}
.x20_c00188{left:529.635000px;}
.xa_c00188{left:531.360000px;}
.x85_c00188{left:533.085000px;}
.x3c_c00188{left:535.680000px;}
.xb9_c00188{left:537.405000px;}
.x97_c00188{left:540.870000px;}
.x5a_c00188{left:542.595000px;}
.xd3_c00188{left:546.915000px;}
.x2c_c00188{left:549.510000px;}
.x49_c00188{left:552.090000px;}
.x102_c00188{left:553.830000px;}
.x4a_c00188{left:555.555000px;}
.x65_c00188{left:558.150000px;}
.x6a_c00188{left:559.875000px;}
.xb_c00188{left:561.600000px;}
.xae_c00188{left:569.370000px;}
.xa3_c00188{left:571.110000px;}
.x8b_c00188{left:573.690000px;}
.x7a_c00188{left:577.155000px;}
.xef_c00188{left:578.880000px;}
.xb5_c00188{left:581.475000px;}
.x11d_c00188{left:583.200000px;}
.xf3_c00188{left:584.925000px;}
.x13_c00188{left:586.650000px;}
.x6b_c00188{left:588.390000px;}
.x21_c00188{left:590.970000px;}
.xf6_c00188{left:592.710000px;}
.xc_c00188{left:594.435000px;}
.xaf_c00188{left:601.350000px;}
.x10f_c00188{left:603.930000px;}
.xe9_c00188{left:607.395000px;}
.x22_c00188{left:609.120000px;}
.x108_c00188{left:610.845000px;}
.x14_c00188{left:612.570000px;}
.x23_c00188{left:615.165000px;}
.x98_c00188{left:616.890000px;}
.xd_c00188{left:618.630000px;}
.xf0_c00188{left:620.355000px;}
.x105_c00188{left:622.080000px;}
.xb6_c00188{left:625.530000px;}
.x120_c00188{left:627.270000px;}
.x99_c00188{left:630.720000px;}
.x15_c00188{left:635.910000px;}
.x76_c00188{left:638.490000px;}
.x111_c00188{left:641.085000px;}
.x6c_c00188{left:642.810000px;}
.x5b_c00188{left:646.275000px;}
.x122_c00188{left:648.000000px;}
.xbf_c00188{left:649.725000px;}
.x66_c00188{left:653.190000px;}
.x86_c00188{left:656.640000px;}
.xb0_c00188{left:660.090000px;}
.xe_c00188{left:661.830000px;}
.x3d_c00188{left:665.280000px;}
.xe2_c00188{left:667.875000px;}
.x6d_c00188{left:669.600000px;}
.x11c_c00188{left:671.325000px;}
.x36_c00188{left:673.050000px;}
.x11a_c00188{left:674.790000px;}
.xf_c00188{left:676.515000px;}
.x121_c00188{left:678.240000px;}
.x53_c00188{left:679.965000px;}
.x7d_c00188{left:683.430000px;}
.xe3_c00188{left:685.155000px;}
.x16_c00188{left:686.880000px;}
.x2d_c00188{left:689.475000px;}
.x124_c00188{left:691.200000px;}
.x24_c00188{left:694.650000px;}
.x87_c00188{left:698.115000px;}
.xb1_c00188{left:701.565000px;}
.x6e_c00188{left:703.290000px;}
.xa7_c00188{left:705.885000px;}
.xf4_c00188{left:708.480000px;}
.x90_c00188{left:710.205000px;}
.xf1_c00188{left:711.930000px;}
.x17_c00188{left:713.670000px;}
.x5c_c00188{left:717.120000px;}
.x37_c00188{left:721.440000px;}
.x11e_c00188{left:723.165000px;}
.x8c_c00188{left:725.760000px;}
.x25_c00188{left:729.210000px;}
.x3e_c00188{left:731.805000px;}
.xf2_c00188{left:734.400000px;}
.x7e_c00188{left:737.850000px;}
.x10a_c00188{left:739.590000px;}
.x5d_c00188{left:742.170000px;}
.x6f_c00188{left:744.765000px;}
.x7b_c00188{left:746.490000px;}
.xe4_c00188{left:749.085000px;}
.x115_c00188{left:750.810000px;}
.x114_c00188{left:753.405000px;}
.x5e_c00188{left:756.000000px;}
.x18_c00188{left:758.595000px;}
.x70_c00188{left:760.320000px;}
.xa0_c00188{left:762.045000px;}
.x26_c00188{left:764.640000px;}
.x3f_c00188{left:766.365000px;}
.xe7_c00188{left:768.090000px;}
.x38_c00188{left:769.830000px;}
.x113_c00188{left:771.555000px;}
.x4b_c00188{left:773.280000px;}
.x88_c00188{left:775.005000px;}
.xa8_c00188{left:778.470000px;}
.xea_c00188{left:780.195000px;}
.x7f_c00188{left:781.920000px;}
.x2_c00188{left:785.370000px;}
.x19_c00188{left:787.965000px;}
.x2e_c00188{left:790.560000px;}
.xf8_c00188{left:793.155000px;}
.x39_c00188{left:795.750000px;}
.x2f_c00188{left:797.475000px;}
.x3_c00188{left:800.070000px;}
.x67_c00188{left:802.650000px;}
.xb7_c00188{left:805.245000px;}
.x4_c00188{left:807.840000px;}
.x5f_c00188{left:810.435000px;}
.x40_c00188{left:813.030000px;}
.x30_c00188{left:814.755000px;}
.x5_c00188{left:817.350000px;}
.x54_c00188{left:819.075000px;}
.xb2_c00188{left:821.670000px;}
.x68_c00188{left:824.250000px;}
.x106_c00188{left:825.990000px;}
.x4c_c00188{left:827.715000px;}
.x71_c00188{left:831.165000px;}
.xf9_c00188{left:834.630000px;}
.x8d_c00188{left:836.355000px;}
.x89_c00188{left:838.080000px;}
.x10_c00188{left:839.805000px;}
.x103_c00188{left:842.400000px;}
.x91_c00188{left:844.995000px;}
.xeb_c00188{left:846.720000px;}
.x11b_c00188{left:849.315000px;}
.x55_c00188{left:852.765000px;}
.x72_c00188{left:855.360000px;}
.x27_c00188{left:857.085000px;}
.x1a_c00188{left:858.810000px;}
.x41_c00188{left:861.405000px;}
.x80_c00188{left:863.130000px;}
.x31_c00188{left:864.870000px;}
.xee_c00188{left:867.450000px;}
.x104_c00188{left:870.045000px;}
.xec_c00188{left:872.640000px;}
.x11f_c00188{left:876.960000px;}
.x8e_c00188{left:879.555000px;}
.x56_c00188{left:882.150000px;}
.x3a_c00188{left:883.875000px;}
.xb3_c00188{left:885.600000px;}
.x109_c00188{left:887.325000px;}
.x60_c00188{left:889.050000px;}
.xba_c00188{left:891.645000px;}
.x10b_c00188{left:893.370000px;}
.x28_c00188{left:898.560000px;}
.x1b_c00188{left:901.155000px;}
.xfb_c00188{left:902.880000px;}
.x125_c00188{left:904.605000px;}
.xfe_c00188{left:910.650000px;}
.xf5_c00188{left:913.245000px;}
.xfc_c00188{left:914.970000px;}
.x119_c00188{left:924.480000px;}
.xfd_c00188{left:926.205000px;}
.x123_c00188{left:949.530000px;}
.x117_c00188{left:957.315000px;}
.x118_c00188{left:960.765000px;}
.x116_c00188{left:1052.355000px;}
@media print{
.v2_c00188{vertical-align:-6.186667pt;}
.v1_c00188{vertical-align:-3.040000pt;}
.v0_c00188{vertical-align:0.000000pt;}
.ls3_c00188{letter-spacing:0.000000pt;}
.ls0_c00188{letter-spacing:57.370667pt;}
.ls1_c00188{letter-spacing:186.088320pt;}
.ls2_c00188{letter-spacing:238.224000pt;}
.ws1_c00188{word-spacing:-28.668053pt;}
.ws0_c00188{word-spacing:-13.911345pt;}
.ws2_c00188{word-spacing:0.000000pt;}
._0_c00188{width:7.454293pt;}
.fs1_c00188{font-size:3.072000pt;}
.fs12_c00188{font-size:5.333333pt;}
.fs3_c00188{font-size:6.133333pt;}
.fs16_c00188{font-size:9.226667pt;}
.fs5_c00188{font-size:12.266667pt;}
.fs2_c00188{font-size:15.360000pt;}
.fs4_c00188{font-size:18.453333pt;}
.fs18_c00188{font-size:21.493333pt;}
.fs6_c00188{font-size:24.586667pt;}
.fs14_c00188{font-size:27.626667pt;}
.fs15_c00188{font-size:30.720000pt;}
.fse_c00188{font-size:33.813333pt;}
.fs10_c00188{font-size:36.853333pt;}
.fs13_c00188{font-size:39.946667pt;}
.fsd_c00188{font-size:42.986667pt;}
.fsf_c00188{font-size:46.080000pt;}
.fs0_c00188{font-size:49.173333pt;}
.fs11_c00188{font-size:52.213333pt;}
.fs7_c00188{font-size:55.306667pt;}
.fs8_c00188{font-size:58.346667pt;}
.fsc_c00188{font-size:61.440000pt;}
.fs9_c00188{font-size:64.533333pt;}
.fs17_c00188{font-size:67.573333pt;}
.fsa_c00188{font-size:70.666667pt;}
.fs1a_c00188{font-size:73.706667pt;}
.fsb_c00188{font-size:76.800000pt;}
.fs1c_c00188{font-size:79.893333pt;}
.fs1e_c00188{font-size:82.933333pt;}
.fs19_c00188{font-size:86.026667pt;}
.fs1d_c00188{font-size:89.066667pt;}
.fs1f_c00188{font-size:95.253333pt;}
.fs1b_c00188{font-size:104.426667pt;}
.y0_c00188{bottom:0.000000pt;}
.y212_c00188{bottom:235.013333pt;}
.y20e_c00188{bottom:235.773333pt;}
.y211_c00188{bottom:236.546667pt;}
.y214_c00188{bottom:237.306667pt;}
.y20d_c00188{bottom:238.080000pt;}
.y208_c00188{bottom:238.853333pt;}
.y20f_c00188{bottom:239.613333pt;}
.y20a_c00188{bottom:241.146667pt;}
.y20c_c00188{bottom:241.920000pt;}
.y209_c00188{bottom:244.986667pt;}
.y213_c00188{bottom:249.600000pt;}
.y20b_c00188{bottom:251.133333pt;}
.y210_c00188{bottom:255.746667pt;}
.y203_c00188{bottom:258.813333pt;}
.y204_c00188{bottom:259.586667pt;}
.y202_c00188{bottom:260.346667pt;}
.y201_c00188{bottom:261.120000pt;}
.y205_c00188{bottom:267.266667pt;}
.y207_c00188{bottom:269.573333pt;}
.y206_c00188{bottom:271.106667pt;}
.y1fe_c00188{bottom:271.866667pt;}
.y1fc_c00188{bottom:272.640000pt;}
.y1fb_c00188{bottom:274.946667pt;}
.y200_c00188{bottom:275.706667pt;}
.y1fd_c00188{bottom:277.253333pt;}
.y1ff_c00188{bottom:278.013333pt;}
.y1fa_c00188{bottom:279.546667pt;}
.y1f9_c00188{bottom:280.320000pt;}
.y1f8_c00188{bottom:287.226667pt;}
.y1f2_c00188{bottom:288.773333pt;}
.y1f0_c00188{bottom:289.533333pt;}
.y1ef_c00188{bottom:290.306667pt;}
.y1f7_c00188{bottom:291.066667pt;}
.y1f3_c00188{bottom:291.840000pt;}
.y1f6_c00188{bottom:292.613333pt;}
.y1f4_c00188{bottom:293.373333pt;}
.y1f1_c00188{bottom:296.453333pt;}
.y1f5_c00188{bottom:297.986667pt;}
.y1ec_c00188{bottom:301.053333pt;}
.y1ed_c00188{bottom:302.586667pt;}
.y1ea_c00188{bottom:303.360000pt;}
.y1e8_c00188{bottom:304.893333pt;}
.y1ee_c00188{bottom:306.426667pt;}
.y1eb_c00188{bottom:307.200000pt;}
.y1e9_c00188{bottom:307.973333pt;}
.y1e0_c00188{bottom:320.253333pt;}
.y1dd_c00188{bottom:321.786667pt;}
.y1e2_c00188{bottom:323.333333pt;}
.y1dc_c00188{bottom:324.093333pt;}
.y1e7_c00188{bottom:324.866667pt;}
.y1e3_c00188{bottom:325.626667pt;}
.y1e5_c00188{bottom:326.400000pt;}
.y1e4_c00188{bottom:327.173333pt;}
.y1e6_c00188{bottom:327.933333pt;}
.y1e1_c00188{bottom:329.466667pt;}
.y1df_c00188{bottom:334.853333pt;}
.y1de_c00188{bottom:337.920000pt;}
.y1db_c00188{bottom:338.693333pt;}
.y1d4_c00188{bottom:339.453333pt;}
.y1d5_c00188{bottom:340.226667pt;}
.y1d7_c00188{bottom:342.533333pt;}
.y1d8_c00188{bottom:344.066667pt;}
.y1d9_c00188{bottom:346.373333pt;}
.y1d6_c00188{bottom:348.666667pt;}
.y1da_c00188{bottom:352.506667pt;}
.y1d1_c00188{bottom:354.053333pt;}
.y1cc_c00188{bottom:354.813333pt;}
.y1cf_c00188{bottom:355.586667pt;}
.y1ce_c00188{bottom:357.120000pt;}
.y1cd_c00188{bottom:357.893333pt;}
.y1d3_c00188{bottom:358.653333pt;}
.y1c9_c00188{bottom:359.426667pt;}
.y1c5_c00188{bottom:360.186667pt;}
.y1d2_c00188{bottom:360.960000pt;}
.y1d0_c00188{bottom:366.333333pt;}
.y1c4_c00188{bottom:367.106667pt;}
.y1c7_c00188{bottom:368.640000pt;}
.y1cb_c00188{bottom:369.413333pt;}
.y1c8_c00188{bottom:370.946667pt;}
.y1ca_c00188{bottom:374.013333pt;}
.y1c6_c00188{bottom:376.320000pt;}
.y1c3_c00188{bottom:377.853333pt;}
.y1bb_c00188{bottom:378.626667pt;}
.y1bd_c00188{bottom:379.386667pt;}
.y1c0_c00188{bottom:382.466667pt;}
.y1ba_c00188{bottom:387.066667pt;}
.y1be_c00188{bottom:387.840000pt;}
.y1c1_c00188{bottom:388.613333pt;}
.y1c2_c00188{bottom:389.373333pt;}
.y1bc_c00188{bottom:391.680000pt;}
.y1bf_c00188{bottom:396.293333pt;}
.y1b2_c00188{bottom:397.826667pt;}
.y1b9_c00188{bottom:400.133333pt;}
.y1b7_c00188{bottom:400.893333pt;}
.y1b4_c00188{bottom:401.666667pt;}
.y1b8_c00188{bottom:402.426667pt;}
.y1b5_c00188{bottom:403.200000pt;}
.y1b3_c00188{bottom:404.733333pt;}
.y1b1_c00188{bottom:407.040000pt;}
.y1b6_c00188{bottom:410.106667pt;}
.y1ae_c00188{bottom:411.653333pt;}
.y1ab_c00188{bottom:413.186667pt;}
.y1af_c00188{bottom:413.946667pt;}
.y1a9_c00188{bottom:414.720000pt;}
.y1aa_c00188{bottom:415.493333pt;}
.y1ad_c00188{bottom:417.026667pt;}
.y1b0_c00188{bottom:417.786667pt;}
.y1ac_c00188{bottom:418.560000pt;}
.y1a8_c00188{bottom:428.546667pt;}
.y1a5_c00188{bottom:430.080000pt;}
.y1a3_c00188{bottom:431.613333pt;}
.y1a6_c00188{bottom:433.146667pt;}
.y1a4_c00188{bottom:433.920000pt;}
.y1a7_c00188{bottom:440.826667pt;}
.y1a1_c00188{bottom:443.906667pt;}
.y1a0_c00188{bottom:444.666667pt;}
.y19e_c00188{bottom:445.440000pt;}
.y19b_c00188{bottom:446.213333pt;}
.y1a2_c00188{bottom:446.973333pt;}
.y19f_c00188{bottom:448.506667pt;}
.y19d_c00188{bottom:449.280000pt;}
.y19c_c00188{bottom:450.053333pt;}
.y199_c00188{bottom:458.493333pt;}
.y19a_c00188{bottom:459.266667pt;}
.y195_c00188{bottom:460.026667pt;}
.y194_c00188{bottom:460.800000pt;}
.y193_c00188{bottom:462.333333pt;}
.y198_c00188{bottom:464.640000pt;}
.y196_c00188{bottom:465.413333pt;}
.y192_c00188{bottom:467.706667pt;}
.y197_c00188{bottom:468.480000pt;}
.y190_c00188{bottom:475.386667pt;}
.y18c_c00188{bottom:476.933333pt;}
.y18e_c00188{bottom:477.693333pt;}
.y18b_c00188{bottom:478.466667pt;}
.y18f_c00188{bottom:479.226667pt;}
.y18d_c00188{bottom:480.000000pt;}
.y191_c00188{bottom:481.533333pt;}
.y188_c00188{bottom:491.520000pt;}
.y189_c00188{bottom:492.293333pt;}
.y18a_c00188{bottom:493.053333pt;}
.y182_c00188{bottom:493.826667pt;}
.y180_c00188{bottom:494.586667pt;}
.y184_c00188{bottom:495.360000pt;}
.y183_c00188{bottom:496.133333pt;}
.y185_c00188{bottom:496.893333pt;}
.y186_c00188{bottom:499.973333pt;}
.y187_c00188{bottom:503.813333pt;}
.y181_c00188{bottom:506.106667pt;}
.y178_c00188{bottom:507.653333pt;}
.y17e_c00188{bottom:509.186667pt;}
.y17f_c00188{bottom:509.946667pt;}
.y17d_c00188{bottom:510.720000pt;}
.y17c_c00188{bottom:511.493333pt;}
.y179_c00188{bottom:512.253333pt;}
.y17b_c00188{bottom:513.026667pt;}
.y17a_c00188{bottom:516.866667pt;}
.y177_c00188{bottom:517.626667pt;}
.y176_c00188{bottom:522.240000pt;}
.y175_c00188{bottom:523.013333pt;}
.y174_c00188{bottom:523.773333pt;}
.y172_c00188{bottom:526.853333pt;}
.y173_c00188{bottom:527.613333pt;}
.y170_c00188{bottom:538.373333pt;}
.y16b_c00188{bottom:539.133333pt;}
.y16e_c00188{bottom:539.906667pt;}
.y169_c00188{bottom:540.666667pt;}
.y16a_c00188{bottom:541.440000pt;}
.y168_c00188{bottom:542.213333pt;}
.y16c_c00188{bottom:543.746667pt;}
.y171_c00188{bottom:545.280000pt;}
.y16f_c00188{bottom:546.053333pt;}
.y16d_c00188{bottom:549.893333pt;}
.y167_c00188{bottom:552.186667pt;}
.y166_c00188{bottom:554.493333pt;}
.y15d_c00188{bottom:555.266667pt;}
.y163_c00188{bottom:556.026667pt;}
.y161_c00188{bottom:556.800000pt;}
.y162_c00188{bottom:557.573333pt;}
.y160_c00188{bottom:559.106667pt;}
.y15f_c00188{bottom:559.866667pt;}
.y165_c00188{bottom:562.946667pt;}
.y15e_c00188{bottom:566.786667pt;}
.y164_c00188{bottom:567.546667pt;}
.y15b_c00188{bottom:569.093333pt;}
.y15a_c00188{bottom:569.853333pt;}
.y155_c00188{bottom:570.626667pt;}
.y154_c00188{bottom:571.386667pt;}
.y158_c00188{bottom:572.933333pt;}
.y15c_c00188{bottom:573.693333pt;}
.y156_c00188{bottom:574.466667pt;}
.y157_c00188{bottom:575.226667pt;}
.y159_c00188{bottom:579.840000pt;}
.y14d_c00188{bottom:585.986667pt;}
.y153_c00188{bottom:586.746667pt;}
.y14f_c00188{bottom:587.520000pt;}
.y14c_c00188{bottom:588.293333pt;}
.y14a_c00188{bottom:589.053333pt;}
.y14b_c00188{bottom:589.826667pt;}
.y150_c00188{bottom:590.586667pt;}
.y14e_c00188{bottom:595.200000pt;}
.y152_c00188{bottom:595.973333pt;}
.y151_c00188{bottom:596.733333pt;}
.y148_c00188{bottom:601.346667pt;}
.y146_c00188{bottom:602.106667pt;}
.y145_c00188{bottom:602.880000pt;}
.y149_c00188{bottom:603.653333pt;}
.y144_c00188{bottom:604.413333pt;}
.y143_c00188{bottom:605.186667pt;}
.y147_c00188{bottom:605.946667pt;}
.y13d_c00188{bottom:615.173333pt;}
.y13f_c00188{bottom:615.933333pt;}
.y13a_c00188{bottom:616.706667pt;}
.y141_c00188{bottom:617.466667pt;}
.y13e_c00188{bottom:618.240000pt;}
.y142_c00188{bottom:619.013333pt;}
.y13c_c00188{bottom:619.773333pt;}
.y140_c00188{bottom:620.546667pt;}
.y13b_c00188{bottom:622.080000pt;}
.y136_c00188{bottom:628.986667pt;}
.y135_c00188{bottom:629.760000pt;}
.y134_c00188{bottom:630.533333pt;}
.y137_c00188{bottom:631.293333pt;}
.y138_c00188{bottom:632.826667pt;}
.y139_c00188{bottom:633.600000pt;}
.y132_c00188{bottom:635.133333pt;}
.y133_c00188{bottom:635.906667pt;}
.y12f_c00188{bottom:645.893333pt;}
.y12e_c00188{bottom:647.426667pt;}
.y131_c00188{bottom:649.733333pt;}
.y130_c00188{bottom:650.493333pt;}
.y12d_c00188{bottom:664.320000pt;}
.y12b_c00188{bottom:665.853333pt;}
.y12c_c00188{bottom:666.626667pt;}
.y248_c00188{bottom:668.933333pt;}
.y245_c00188{bottom:671.226667pt;}
.y12a_c00188{bottom:672.000000pt;}
.y247_c00188{bottom:673.533333pt;}
.y246_c00188{bottom:674.306667pt;}
.y127_c00188{bottom:676.613333pt;}
.y129_c00188{bottom:678.146667pt;}
.y124_c00188{bottom:678.906667pt;}
.y128_c00188{bottom:679.680000pt;}
.y125_c00188{bottom:681.986667pt;}
.y126_c00188{bottom:683.520000pt;}
.y241_c00188{bottom:686.586667pt;}
.y244_c00188{bottom:689.666667pt;}
.y121_c00188{bottom:692.733333pt;}
.y242_c00188{bottom:693.506667pt;}
.y243_c00188{bottom:694.266667pt;}
.y11f_c00188{bottom:695.813333pt;}
.y11e_c00188{bottom:696.573333pt;}
.y120_c00188{bottom:697.346667pt;}
.y122_c00188{bottom:698.106667pt;}
.y123_c00188{bottom:699.653333pt;}
.y240_c00188{bottom:703.493333pt;}
.y11d_c00188{bottom:704.253333pt;}
.y11c_c00188{bottom:707.333333pt;}
.y119_c00188{bottom:708.093333pt;}
.y11b_c00188{bottom:708.866667pt;}
.y11a_c00188{bottom:710.400000pt;}
.y118_c00188{bottom:712.706667pt;}
.y23d_c00188{bottom:718.080000pt;}
.y117_c00188{bottom:721.920000pt;}
.y23e_c00188{bottom:722.693333pt;}
.y116_c00188{bottom:723.453333pt;}
.y115_c00188{bottom:724.226667pt;}
.y114_c00188{bottom:726.533333pt;}
.y113_c00188{bottom:727.293333pt;}
.y23f_c00188{bottom:728.066667pt;}
.y112_c00188{bottom:731.906667pt;}
.y23a_c00188{bottom:736.506667pt;}
.y23c_c00188{bottom:737.280000pt;}
.y23b_c00188{bottom:738.053333pt;}
.y111_c00188{bottom:739.586667pt;}
.y109_c00188{bottom:740.346667pt;}
.y10b_c00188{bottom:741.120000pt;}
.y10e_c00188{bottom:741.893333pt;}
.y10c_c00188{bottom:742.653333pt;}
.y10f_c00188{bottom:744.186667pt;}
.y10d_c00188{bottom:744.960000pt;}
.y110_c00188{bottom:748.800000pt;}
.y10a_c00188{bottom:749.573333pt;}
.y104_c00188{bottom:751.866667pt;}
.y237_c00188{bottom:753.413333pt;}
.y106_c00188{bottom:754.173333pt;}
.y107_c00188{bottom:757.253333pt;}
.y105_c00188{bottom:758.013333pt;}
.y108_c00188{bottom:759.546667pt;}
.yff_c00188{bottom:770.306667pt;}
.y235_c00188{bottom:771.066667pt;}
.y234_c00188{bottom:771.840000pt;}
.yfd_c00188{bottom:772.613333pt;}
.yfe_c00188{bottom:773.373333pt;}
.y100_c00188{bottom:774.146667pt;}
.yfc_c00188{bottom:774.906667pt;}
.y101_c00188{bottom:775.680000pt;}
.y236_c00188{bottom:776.453333pt;}
.y103_c00188{bottom:777.986667pt;}
.y102_c00188{bottom:778.746667pt;}
.yfb_c00188{bottom:784.133333pt;}
.yf9_c00188{bottom:784.893333pt;}
.yfa_c00188{bottom:785.666667pt;}
.y233_c00188{bottom:786.426667pt;}
.yf8_c00188{bottom:788.733333pt;}
.yf7_c00188{bottom:789.506667pt;}
.y232_c00188{bottom:791.040000pt;}
.y231_c00188{bottom:794.880000pt;}
.y22e_c00188{bottom:799.493333pt;}
.yf4_c00188{bottom:802.560000pt;}
.yf6_c00188{bottom:803.333333pt;}
.yf5_c00188{bottom:804.093333pt;}
.yf2_c00188{bottom:804.866667pt;}
.y230_c00188{bottom:805.626667pt;}
.y22f_c00188{bottom:807.173333pt;}
.y22d_c00188{bottom:811.013333pt;}
.yf0_c00188{bottom:811.773333pt;}
.yef_c00188{bottom:813.306667pt;}
.y22c_c00188{bottom:814.080000pt;}
.yf1_c00188{bottom:814.853333pt;}
.y22b_c00188{bottom:816.386667pt;}
.yf3_c00188{bottom:817.146667pt;}
.yec_c00188{bottom:818.693333pt;}
.yeb_c00188{bottom:820.226667pt;}
.yed_c00188{bottom:820.986667pt;}
.yee_c00188{bottom:821.760000pt;}
.ye8_c00188{bottom:832.506667pt;}
.y22a_c00188{bottom:833.280000pt;}
.y228_c00188{bottom:834.813333pt;}
.yea_c00188{bottom:835.586667pt;}
.ye9_c00188{bottom:836.346667pt;}
.y224_c00188{bottom:838.653333pt;}
.y229_c00188{bottom:839.426667pt;}
.ye7_c00188{bottom:840.186667pt;}
.y225_c00188{bottom:840.960000pt;}
.y227_c00188{bottom:841.733333pt;}
.y226_c00188{bottom:843.266667pt;}
.y222_c00188{bottom:844.026667pt;}
.ye6_c00188{bottom:844.800000pt;}
.ye0_c00188{bottom:847.866667pt;}
.ye3_c00188{bottom:848.640000pt;}
.y223_c00188{bottom:849.413333pt;}
.ye4_c00188{bottom:850.173333pt;}
.ye1_c00188{bottom:850.946667pt;}
.ye2_c00188{bottom:851.706667pt;}
.ydf_c00188{bottom:852.480000pt;}
.ye5_c00188{bottom:854.786667pt;}
.y221_c00188{bottom:857.853333pt;}
.y220_c00188{bottom:860.933333pt;}
.ydb_c00188{bottom:862.466667pt;}
.y21e_c00188{bottom:863.226667pt;}
.y21f_c00188{bottom:864.000000pt;}
.yd9_c00188{bottom:864.773333pt;}
.ydd_c00188{bottom:865.533333pt;}
.yda_c00188{bottom:867.066667pt;}
.ydc_c00188{bottom:868.613333pt;}
.yde_c00188{bottom:869.373333pt;}
.y21d_c00188{bottom:873.986667pt;}
.y21a_c00188{bottom:874.746667pt;}
.y219_c00188{bottom:876.293333pt;}
.y21b_c00188{bottom:877.053333pt;}
.y21c_c00188{bottom:879.360000pt;}
.yd3_c00188{bottom:880.133333pt;}
.yd5_c00188{bottom:880.893333pt;}
.yd7_c00188{bottom:882.426667pt;}
.yd6_c00188{bottom:883.200000pt;}
.y238_c00188{bottom:883.973333pt;}
.yd8_c00188{bottom:884.733333pt;}
.y239_c00188{bottom:886.266667pt;}
.yd4_c00188{bottom:888.573333pt;}
.yce_c00188{bottom:893.946667pt;}
.yd0_c00188{bottom:894.720000pt;}
.yd2_c00188{bottom:895.493333pt;}
.y217_c00188{bottom:896.253333pt;}
.y218_c00188{bottom:897.026667pt;}
.ycf_c00188{bottom:898.560000pt;}
.yd1_c00188{bottom:899.333333pt;}
.yc7_c00188{bottom:910.080000pt;}
.yc6_c00188{bottom:910.853333pt;}
.yc8_c00188{bottom:911.613333pt;}
.yc9_c00188{bottom:912.386667pt;}
.yca_c00188{bottom:913.920000pt;}
.ycb_c00188{bottom:914.693333pt;}
.ycc_c00188{bottom:918.533333pt;}
.yc5_c00188{bottom:920.826667pt;}
.yc3_c00188{bottom:921.600000pt;}
.ycd_c00188{bottom:923.906667pt;}
.yc1_c00188{bottom:925.440000pt;}
.yc0_c00188{bottom:926.213333pt;}
.yc2_c00188{bottom:930.813333pt;}
.yc4_c00188{bottom:931.586667pt;}
.ybb_c00188{bottom:932.346667pt;}
.ybe_c00188{bottom:933.120000pt;}
.ybc_c00188{bottom:933.893333pt;}
.ybd_c00188{bottom:934.653333pt;}
.yb3_c00188{bottom:936.960000pt;}
.ybf_c00188{bottom:939.266667pt;}
.yb7_c00188{bottom:943.866667pt;}
.yb8_c00188{bottom:944.640000pt;}
.yba_c00188{bottom:947.706667pt;}
.yb9_c00188{bottom:948.480000pt;}
.yb6_c00188{bottom:952.320000pt;}
.yb4_c00188{bottom:953.093333pt;}
.yb5_c00188{bottom:953.853333pt;}
.yb0_c00188{bottom:954.626667pt;}
.ya8_c00188{bottom:955.386667pt;}
.yaa_c00188{bottom:956.933333pt;}
.ya9_c00188{bottom:957.693333pt;}
.yb1_c00188{bottom:958.466667pt;}
.ya7_c00188{bottom:960.773333pt;}
.yb2_c00188{bottom:961.533333pt;}
.yab_c00188{bottom:962.306667pt;}
.yae_c00188{bottom:963.840000pt;}
.yaf_c00188{bottom:964.613333pt;}
.yac_c00188{bottom:965.373333pt;}
.yad_c00188{bottom:966.906667pt;}
.ya4_c00188{bottom:975.360000pt;}
.ya0_c00188{bottom:976.133333pt;}
.ya1_c00188{bottom:977.666667pt;}
.ya6_c00188{bottom:978.426667pt;}
.ya3_c00188{bottom:983.040000pt;}
.ya5_c00188{bottom:983.813333pt;}
.ya2_c00188{bottom:986.880000pt;}
.y9c_c00188{bottom:987.653333pt;}
.y9d_c00188{bottom:988.413333pt;}
.y99_c00188{bottom:989.186667pt;}
.y9a_c00188{bottom:991.493333pt;}
.y8_c00188{bottom:992.253333pt;}
.y9b_c00188{bottom:993.786667pt;}
.y9f_c00188{bottom:994.560000pt;}
.y9e_c00188{bottom:996.093333pt;}
.y6_c00188{bottom:998.400000pt;}
.y98_c00188{bottom:999.173333pt;}
.y7_c00188{bottom:1002.240000pt;}
.y90_c00188{bottom:1005.306667pt;}
.y8f_c00188{bottom:1006.080000pt;}
.y94_c00188{bottom:1007.613333pt;}
.y8d_c00188{bottom:1009.146667pt;}
.y95_c00188{bottom:1010.693333pt;}
.y93_c00188{bottom:1011.453333pt;}
.y91_c00188{bottom:1012.226667pt;}
.y97_c00188{bottom:1012.986667pt;}
.y96_c00188{bottom:1013.760000pt;}
.y8e_c00188{bottom:1014.533333pt;}
.y92_c00188{bottom:1015.293333pt;}
.y86_c00188{bottom:1019.133333pt;}
.y83_c00188{bottom:1020.666667pt;}
.y85_c00188{bottom:1022.973333pt;}
.y87_c00188{bottom:1024.506667pt;}
.y88_c00188{bottom:1025.280000pt;}
.y8c_c00188{bottom:1026.053333pt;}
.y84_c00188{bottom:1026.813333pt;}
.y8a_c00188{bottom:1027.586667pt;}
.y8b_c00188{bottom:1029.893333pt;}
.y89_c00188{bottom:1030.653333pt;}
.y7d_c00188{bottom:1039.106667pt;}
.y7e_c00188{bottom:1040.640000pt;}
.y7f_c00188{bottom:1042.946667pt;}
.y7c_c00188{bottom:1045.253333pt;}
.y80_c00188{bottom:1046.013333pt;}
.y81_c00188{bottom:1051.386667pt;}
.y82_c00188{bottom:1055.226667pt;}
.y7b_c00188{bottom:1056.773333pt;}
.y77_c00188{bottom:1057.533333pt;}
.y79_c00188{bottom:1058.306667pt;}
.y76_c00188{bottom:1059.066667pt;}
.y7a_c00188{bottom:1059.840000pt;}
.y78_c00188{bottom:1062.146667pt;}
.y75_c00188{bottom:1065.213333pt;}
.y6c_c00188{bottom:1065.986667pt;}
.y74_c00188{bottom:1066.746667pt;}
.y6e_c00188{bottom:1069.053333pt;}
.y6b_c00188{bottom:1070.586667pt;}
.y6d_c00188{bottom:1071.360000pt;}
.y70_c00188{bottom:1072.133333pt;}
.y6f_c00188{bottom:1072.893333pt;}
.y72_c00188{bottom:1073.666667pt;}
.y73_c00188{bottom:1074.426667pt;}
.y71_c00188{bottom:1075.200000pt;}
.y69_c00188{bottom:1077.506667pt;}
.y6a_c00188{bottom:1079.813333pt;}
.y61_c00188{bottom:1082.106667pt;}
.y62_c00188{bottom:1082.880000pt;}
.y65_c00188{bottom:1083.653333pt;}
.y60_c00188{bottom:1085.946667pt;}
.y64_c00188{bottom:1086.720000pt;}
.y63_c00188{bottom:1087.493333pt;}
.y67_c00188{bottom:1088.253333pt;}
.y66_c00188{bottom:1089.026667pt;}
.y68_c00188{bottom:1092.866667pt;}
.y5b_c00188{bottom:1096.706667pt;}
.y5f_c00188{bottom:1100.546667pt;}
.y5c_c00188{bottom:1101.306667pt;}
.y5d_c00188{bottom:1102.080000pt;}
.y5e_c00188{bottom:1102.853333pt;}
.y57_c00188{bottom:1104.386667pt;}
.y58_c00188{bottom:1105.146667pt;}
.y5a_c00188{bottom:1106.693333pt;}
.y59_c00188{bottom:1108.226667pt;}
.y56_c00188{bottom:1108.986667pt;}
.y4f_c00188{bottom:1113.600000pt;}
.y55_c00188{bottom:1114.373333pt;}
.y53_c00188{bottom:1115.906667pt;}
.y50_c00188{bottom:1116.666667pt;}
.y46_c00188{bottom:1118.213333pt;}
.y4a_c00188{bottom:1119.746667pt;}
.y51_c00188{bottom:1120.506667pt;}
.y54_c00188{bottom:1121.280000pt;}
.y4c_c00188{bottom:1122.053333pt;}
.y4d_c00188{bottom:1122.813333pt;}
.y4b_c00188{bottom:1123.586667pt;}
.y49_c00188{bottom:1124.346667pt;}
.y4e_c00188{bottom:1125.120000pt;}
.y52_c00188{bottom:1125.893333pt;}
.y48_c00188{bottom:1126.653333pt;}
.y47_c00188{bottom:1127.426667pt;}
.y3f_c00188{bottom:1128.960000pt;}
.y3d_c00188{bottom:1129.733333pt;}
.y40_c00188{bottom:1132.800000pt;}
.y3e_c00188{bottom:1133.573333pt;}
.y43_c00188{bottom:1135.866667pt;}
.y44_c00188{bottom:1136.640000pt;}
.y41_c00188{bottom:1137.413333pt;}
.y42_c00188{bottom:1138.946667pt;}
.y45_c00188{bottom:1141.253333pt;}
.y3a_c00188{bottom:1145.093333pt;}
.y35_c00188{bottom:1145.853333pt;}
.y3b_c00188{bottom:1146.626667pt;}
.y38_c00188{bottom:1147.386667pt;}
.y36_c00188{bottom:1148.160000pt;}
.y37_c00188{bottom:1148.933333pt;}
.y39_c00188{bottom:1149.693333pt;}
.y3c_c00188{bottom:1150.466667pt;}
.y2f_c00188{bottom:1161.213333pt;}
.y30_c00188{bottom:1162.746667pt;}
.y32_c00188{bottom:1163.520000pt;}
.y31_c00188{bottom:1164.293333pt;}
.y34_c00188{bottom:1165.053333pt;}
.y33_c00188{bottom:1165.826667pt;}
.y1_c00188{bottom:1168.133333pt;}
.y28_c00188{bottom:1175.040000pt;}
.y27_c00188{bottom:1175.813333pt;}
.y29_c00188{bottom:1177.346667pt;}
.y2a_c00188{bottom:1178.106667pt;}
.y2b_c00188{bottom:1180.413333pt;}
.y2c_c00188{bottom:1181.186667pt;}
.y2e_c00188{bottom:1181.946667pt;}
.y2d_c00188{bottom:1182.720000pt;}
.y21_c00188{bottom:1191.173333pt;}
.y20_c00188{bottom:1191.933333pt;}
.y26_c00188{bottom:1193.466667pt;}
.y25_c00188{bottom:1195.773333pt;}
.y22_c00188{bottom:1196.546667pt;}
.y23_c00188{bottom:1197.306667pt;}
.y24_c00188{bottom:1198.080000pt;}
.y15_c00188{bottom:1205.760000pt;}
.y18_c00188{bottom:1207.293333pt;}
.y17_c00188{bottom:1208.066667pt;}
.y1d_c00188{bottom:1208.826667pt;}
.y19_c00188{bottom:1209.600000pt;}
.y16_c00188{bottom:1210.373333pt;}
.y216_c00188{bottom:1211.133333pt;}
.y1c_c00188{bottom:1211.906667pt;}
.y1e_c00188{bottom:1212.666667pt;}
.y1a_c00188{bottom:1216.506667pt;}
.y215_c00188{bottom:1218.053333pt;}
.y1b_c00188{bottom:1218.813333pt;}
.y1f_c00188{bottom:1220.346667pt;}
.yf_c00188{bottom:1221.893333pt;}
.yd_c00188{bottom:1222.653333pt;}
.y12_c00188{bottom:1223.426667pt;}
.y13_c00188{bottom:1224.186667pt;}
.ye_c00188{bottom:1226.493333pt;}
.y10_c00188{bottom:1227.266667pt;}
.y11_c00188{bottom:1228.026667pt;}
.y14_c00188{bottom:1232.640000pt;}
.yc_c00188{bottom:1242.626667pt;}
.ya_c00188{bottom:1244.933333pt;}
.y9_c00188{bottom:1245.693333pt;}
.yb_c00188{bottom:1246.466667pt;}
.y4_c00188{bottom:1261.826667pt;}
.y5_c00188{bottom:1264.133333pt;}
.y3_c00188{bottom:1269.506667pt;}
.y2_c00188{bottom:1271.813333pt;}
.h3_c00188{height:2.764500pt;}
.h14_c00188{height:4.799479pt;}
.h5_c00188{height:5.519401pt;}
.h18_c00188{height:8.303099pt;}
.h7_c00188{height:11.038802pt;}
.h4_c00188{height:13.822500pt;}
.h6_c00188{height:16.606198pt;}
.h1a_c00188{height:19.341901pt;}
.h8_c00188{height:22.125599pt;}
.h16_c00188{height:24.861302pt;}
.h17_c00188{height:27.645000pt;}
.h10_c00188{height:30.428698pt;}
.h12_c00188{height:33.164401pt;}
.h15_c00188{height:35.948099pt;}
.hf_c00188{height:38.683802pt;}
.h11_c00188{height:41.467500pt;}
.h2_c00188{height:44.251198pt;}
.h13_c00188{height:46.986901pt;}
.h9_c00188{height:49.770599pt;}
.ha_c00188{height:52.506302pt;}
.he_c00188{height:55.290000pt;}
.hb_c00188{height:58.073698pt;}
.h19_c00188{height:60.809401pt;}
.hc_c00188{height:63.593099pt;}
.h1c_c00188{height:66.328802pt;}
.hd_c00188{height:69.112500pt;}
.h1e_c00188{height:71.896198pt;}
.h20_c00188{height:74.631901pt;}
.h1b_c00188{height:77.415599pt;}
.h1f_c00188{height:80.151302pt;}
.h21_c00188{height:85.718698pt;}
.h1d_c00188{height:93.973802pt;}
.h0_c00188{height:1353.986667pt;}
.h1_c00188{height:1354.000000pt;}
.w0_c00188{width:984.573333pt;}
.w1_c00188{width:984.666667pt;}
.x0_c00188{left:0.000000pt;}
.x1_c00188{left:157.440000pt;}
.x6_c00188{left:192.000000pt;}
.x8_c00188{left:196.613333pt;}
.x7_c00188{left:201.986667pt;}
.xc0_c00188{left:211.200000pt;}
.xe5_c00188{left:218.880000pt;}
.xda_c00188{left:220.413333pt;}
.xc5_c00188{left:222.720000pt;}
.xd4_c00188{left:226.560000pt;}
.xa1_c00188{left:228.093333pt;}
.x42_c00188{left:229.626667pt;}
.x1c_c00188{left:231.933333pt;}
.x92_c00188{left:233.466667pt;}
.x9a_c00188{left:235.773333pt;}
.x7c_c00188{left:237.306667pt;}
.xf7_c00188{left:238.853333pt;}
.xe6_c00188{left:241.920000pt;}
.x9b_c00188{left:244.226667pt;}
.xbb_c00188{left:245.760000pt;}
.x10c_c00188{left:247.293333pt;}
.x11_c00188{left:248.826667pt;}
.xa9_c00188{left:251.133333pt;}
.xdc_c00188{left:252.666667pt;}
.x57_c00188{left:254.213333pt;}
.x1d_c00188{left:255.746667pt;}
.xaa_c00188{left:257.280000pt;}
.x43_c00188{left:258.813333pt;}
.x107_c00188{left:260.346667pt;}
.x81_c00188{left:262.653333pt;}
.x61_c00188{left:264.960000pt;}
.x4d_c00188{left:268.800000pt;}
.xc6_c00188{left:271.866667pt;}
.xc9_c00188{left:273.413333pt;}
.x32_c00188{left:276.480000pt;}
.xc8_c00188{left:279.546667pt;}
.xbc_c00188{left:282.626667pt;}
.xe8_c00188{left:284.160000pt;}
.xdf_c00188{left:285.693333pt;}
.x44_c00188{left:288.000000pt;}
.xdd_c00188{left:289.533333pt;}
.xc1_c00188{left:291.066667pt;}
.x4e_c00188{left:293.373333pt;}
.xcf_c00188{left:294.906667pt;}
.xd5_c00188{left:297.213333pt;}
.x8f_c00188{left:298.746667pt;}
.x10d_c00188{left:300.293333pt;}
.x101_c00188{left:301.826667pt;}
.x82_c00188{left:303.360000pt;}
.x1e_c00188{left:304.893333pt;}
.xca_c00188{left:307.200000pt;}
.x9c_c00188{left:308.733333pt;}
.xfa_c00188{left:312.573333pt;}
.x93_c00188{left:314.106667pt;}
.xab_c00188{left:315.653333pt;}
.xd1_c00188{left:317.186667pt;}
.x3b_c00188{left:318.720000pt;}
.x73_c00188{left:320.253333pt;}
.x10e_c00188{left:323.333333pt;}
.xa4_c00188{left:324.866667pt;}
.xdb_c00188{left:327.173333pt;}
.x1f_c00188{left:330.240000pt;}
.xbd_c00188{left:334.853333pt;}
.x29_c00188{left:336.386667pt;}
.x112_c00188{left:337.920000pt;}
.x33_c00188{left:339.453333pt;}
.xd6_c00188{left:341.760000pt;}
.xd9_c00188{left:344.066667pt;}
.x4f_c00188{left:345.600000pt;}
.x62_c00188{left:347.906667pt;}
.xa2_c00188{left:349.440000pt;}
.xcd_c00188{left:351.746667pt;}
.xa5_c00188{left:354.814059pt;}
.x94_c00188{left:356.346667pt;}
.x77_c00188{left:357.893333pt;}
.xc2_c00188{left:359.426667pt;}
.x63_c00188{left:360.960000pt;}
.x83_c00188{left:362.493333pt;}
.x58_c00188{left:364.800000pt;}
.xcb_c00188{left:367.106667pt;}
.xd7_c00188{left:369.413333pt;}
.x45_c00188{left:370.946667pt;}
.x69_c00188{left:372.480000pt;}
.x2a_c00188{left:377.093333pt;}
.x95_c00188{left:378.626667pt;}
.x50_c00188{left:380.933333pt;}
.xc7_c00188{left:383.226667pt;}
.xe0_c00188{left:387.066667pt;}
.xde_c00188{left:389.373333pt;}
.x9d_c00188{left:391.680000pt;}
.xd2_c00188{left:393.213333pt;}
.xd8_c00188{left:394.746667pt;}
.x51_c00188{left:397.053333pt;}
.x12_c00188{left:398.586667pt;}
.xbe_c00188{left:402.426667pt;}
.xff_c00188{left:404.733333pt;}
.x46_c00188{left:407.040000pt;}
.x59_c00188{left:408.573333pt;}
.x8a_c00188{left:410.106667pt;}
.xce_c00188{left:412.413333pt;}
.x34_c00188{left:413.946667pt;}
.x78_c00188{left:416.253333pt;}
.xe1_c00188{left:417.786667pt;}
.x64_c00188{left:420.093333pt;}
.x74_c00188{left:422.400000pt;}
.x9e_c00188{left:424.706667pt;}
.x47_c00188{left:426.240000pt;}
.x110_c00188{left:428.546667pt;}
.xa6_c00188{left:430.080000pt;}
.xac_c00188{left:431.613333pt;}
.x2b_c00188{left:434.693333pt;}
.x84_c00188{left:436.226667pt;}
.x96_c00188{left:438.533333pt;}
.xc3_c00188{left:440.066667pt;}
.x35_c00188{left:441.600000pt;}
.x52_c00188{left:443.133333pt;}
.xd0_c00188{left:446.213333pt;}
.xcc_c00188{left:447.746667pt;}
.xed_c00188{left:450.053333pt;}
.xb4_c00188{left:451.586667pt;}
.x9f_c00188{left:453.120000pt;}
.x75_c00188{left:454.653333pt;}
.x9_c00188{left:456.186667pt;}
.xb8_c00188{left:459.266667pt;}
.x48_c00188{left:461.573333pt;}
.xc4_c00188{left:463.866667pt;}
.x79_c00188{left:465.413333pt;}
.xad_c00188{left:466.946667pt;}
.x100_c00188{left:468.480000pt;}
.x20_c00188{left:470.786667pt;}
.xa_c00188{left:472.320000pt;}
.x85_c00188{left:473.853333pt;}
.x3c_c00188{left:476.160000pt;}
.xb9_c00188{left:477.693333pt;}
.x97_c00188{left:480.773333pt;}
.x5a_c00188{left:482.306667pt;}
.xd3_c00188{left:486.146667pt;}
.x2c_c00188{left:488.453333pt;}
.x49_c00188{left:490.746667pt;}
.x102_c00188{left:492.293333pt;}
.x4a_c00188{left:493.826667pt;}
.x65_c00188{left:496.133333pt;}
.x6a_c00188{left:497.666667pt;}
.xb_c00188{left:499.200000pt;}
.xae_c00188{left:506.106667pt;}
.xa3_c00188{left:507.653333pt;}
.x8b_c00188{left:509.946667pt;}
.x7a_c00188{left:513.026667pt;}
.xef_c00188{left:514.560000pt;}
.xb5_c00188{left:516.866667pt;}
.x11d_c00188{left:518.400000pt;}
.xf3_c00188{left:519.933333pt;}
.x13_c00188{left:521.466667pt;}
.x6b_c00188{left:523.013333pt;}
.x21_c00188{left:525.306667pt;}
.xf6_c00188{left:526.853333pt;}
.xc_c00188{left:528.386667pt;}
.xaf_c00188{left:534.533333pt;}
.x10f_c00188{left:536.826667pt;}
.xe9_c00188{left:539.906667pt;}
.x22_c00188{left:541.440000pt;}
.x108_c00188{left:542.973333pt;}
.x14_c00188{left:544.506667pt;}
.x23_c00188{left:546.813333pt;}
.x98_c00188{left:548.346667pt;}
.xd_c00188{left:549.893333pt;}
.xf0_c00188{left:551.426667pt;}
.x105_c00188{left:552.960000pt;}
.xb6_c00188{left:556.026667pt;}
.x120_c00188{left:557.573333pt;}
.x99_c00188{left:560.640000pt;}
.x15_c00188{left:565.253333pt;}
.x76_c00188{left:567.546667pt;}
.x111_c00188{left:569.853333pt;}
.x6c_c00188{left:571.386667pt;}
.x5b_c00188{left:574.466667pt;}
.x122_c00188{left:576.000000pt;}
.xbf_c00188{left:577.533333pt;}
.x66_c00188{left:580.613333pt;}
.x86_c00188{left:583.680000pt;}
.xb0_c00188{left:586.746667pt;}
.xe_c00188{left:588.293333pt;}
.x3d_c00188{left:591.360000pt;}
.xe2_c00188{left:593.666667pt;}
.x6d_c00188{left:595.200000pt;}
.x11c_c00188{left:596.733333pt;}
.x36_c00188{left:598.266667pt;}
.x11a_c00188{left:599.813333pt;}
.xf_c00188{left:601.346667pt;}
.x121_c00188{left:602.880000pt;}
.x53_c00188{left:604.413333pt;}
.x7d_c00188{left:607.493333pt;}
.xe3_c00188{left:609.026667pt;}
.x16_c00188{left:610.560000pt;}
.x2d_c00188{left:612.866667pt;}
.x124_c00188{left:614.400000pt;}
.x24_c00188{left:617.466667pt;}
.x87_c00188{left:620.546667pt;}
.xb1_c00188{left:623.613333pt;}
.x6e_c00188{left:625.146667pt;}
.xa7_c00188{left:627.453333pt;}
.xf4_c00188{left:629.760000pt;}
.x90_c00188{left:631.293333pt;}
.xf1_c00188{left:632.826667pt;}
.x17_c00188{left:634.373333pt;}
.x5c_c00188{left:637.440000pt;}
.x37_c00188{left:641.280000pt;}
.x11e_c00188{left:642.813333pt;}
.x8c_c00188{left:645.120000pt;}
.x25_c00188{left:648.186667pt;}
.x3e_c00188{left:650.493333pt;}
.xf2_c00188{left:652.800000pt;}
.x7e_c00188{left:655.866667pt;}
.x10a_c00188{left:657.413333pt;}
.x5d_c00188{left:659.706667pt;}
.x6f_c00188{left:662.013333pt;}
.x7b_c00188{left:663.546667pt;}
.xe4_c00188{left:665.853333pt;}
.x115_c00188{left:667.386667pt;}
.x114_c00188{left:669.693333pt;}
.x5e_c00188{left:672.000000pt;}
.x18_c00188{left:674.306667pt;}
.x70_c00188{left:675.840000pt;}
.xa0_c00188{left:677.373333pt;}
.x26_c00188{left:679.680000pt;}
.x3f_c00188{left:681.213333pt;}
.xe7_c00188{left:682.746667pt;}
.x38_c00188{left:684.293333pt;}
.x113_c00188{left:685.826667pt;}
.x4b_c00188{left:687.360000pt;}
.x88_c00188{left:688.893333pt;}
.xa8_c00188{left:691.973333pt;}
.xea_c00188{left:693.506667pt;}
.x7f_c00188{left:695.040000pt;}
.x2_c00188{left:698.106667pt;}
.x19_c00188{left:700.413333pt;}
.x2e_c00188{left:702.720000pt;}
.xf8_c00188{left:705.026667pt;}
.x39_c00188{left:707.333333pt;}
.x2f_c00188{left:708.866667pt;}
.x3_c00188{left:711.173333pt;}
.x67_c00188{left:713.466667pt;}
.xb7_c00188{left:715.773333pt;}
.x4_c00188{left:718.080000pt;}
.x5f_c00188{left:720.386667pt;}
.x40_c00188{left:722.693333pt;}
.x30_c00188{left:724.226667pt;}
.x5_c00188{left:726.533333pt;}
.x54_c00188{left:728.066667pt;}
.xb2_c00188{left:730.373333pt;}
.x68_c00188{left:732.666667pt;}
.x106_c00188{left:734.213333pt;}
.x4c_c00188{left:735.746667pt;}
.x71_c00188{left:738.813333pt;}
.xf9_c00188{left:741.893333pt;}
.x8d_c00188{left:743.426667pt;}
.x89_c00188{left:744.960000pt;}
.x10_c00188{left:746.493333pt;}
.x103_c00188{left:748.800000pt;}
.x91_c00188{left:751.106667pt;}
.xeb_c00188{left:752.640000pt;}
.x11b_c00188{left:754.946667pt;}
.x55_c00188{left:758.013333pt;}
.x72_c00188{left:760.320000pt;}
.x27_c00188{left:761.853333pt;}
.x1a_c00188{left:763.386667pt;}
.x41_c00188{left:765.693333pt;}
.x80_c00188{left:767.226667pt;}
.x31_c00188{left:768.773333pt;}
.xee_c00188{left:771.066667pt;}
.x104_c00188{left:773.373333pt;}
.xec_c00188{left:775.680000pt;}
.x11f_c00188{left:779.520000pt;}
.x8e_c00188{left:781.826667pt;}
.x56_c00188{left:784.133333pt;}
.x3a_c00188{left:785.666667pt;}
.xb3_c00188{left:787.200000pt;}
.x109_c00188{left:788.733333pt;}
.x60_c00188{left:790.266667pt;}
.xba_c00188{left:792.573333pt;}
.x10b_c00188{left:794.106667pt;}
.x28_c00188{left:798.720000pt;}
.x1b_c00188{left:801.026667pt;}
.xfb_c00188{left:802.560000pt;}
.x125_c00188{left:804.093333pt;}
.xfe_c00188{left:809.466667pt;}
.xf5_c00188{left:811.773333pt;}
.xfc_c00188{left:813.306667pt;}
.x119_c00188{left:821.760000pt;}
.xfd_c00188{left:823.293333pt;}
.x123_c00188{left:844.026667pt;}
.x117_c00188{left:850.946667pt;}
.x118_c00188{left:854.013333pt;}
.x116_c00188{left:935.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_61062995395afba5002084b6.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.109863;font-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_c00189{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m153_c00189{transform:matrix(0.033325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033325,0.000000,0.000000,0.250000,0,0);}
.m82_c00189{transform:matrix(0.049350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049350,0.000000,0.000000,0.250000,0,0);}
.m146_c00189{transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);}
.md3_c00189{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m188_c00189{transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);}
.m19f_c00189{transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);}
.m19d_c00189{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00189{transform:matrix(0.072300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072300,0.000000,0.000000,0.250000,0,0);}
.m1f_c00189{transform:matrix(0.077100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077100,0.000000,0.000000,0.250000,0,0);}
.m160_c00189{transform:matrix(0.085625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085625,0.000000,0.000000,0.250000,0,0);}
.m122_c00189{transform:matrix(0.089600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089600,0.000000,0.000000,0.250000,0,0);}
.m9a_c00189{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.md8_c00189{transform:matrix(0.092900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092900,0.000000,0.000000,0.250000,0,0);}
.m197_c00189{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m13b_c00189{transform:matrix(0.097425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097425,0.000000,0.000000,0.250000,0,0);}
.m1a_c00189{transform:matrix(0.097825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097825,0.000000,0.000000,0.250000,0,0);}
.m19e_c00189{transform:matrix(0.098875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098875,0.000000,0.000000,0.250000,0,0);}
.m11e_c00189{transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);}
.m187_c00189{transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);}
.m13a_c00189{transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);}
.m117_c00189{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.mdc_c00189{transform:matrix(0.111925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111925,0.000000,0.000000,0.250000,0,0);}
.m136_c00189{transform:matrix(0.112175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112175,0.000000,0.000000,0.250000,0,0);}
.m101_c00189{transform:matrix(0.112325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112325,0.000000,0.000000,0.250000,0,0);}
.mff_c00189{transform:matrix(0.116600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116600,0.000000,0.000000,0.250000,0,0);}
.m142_c00189{transform:matrix(0.117725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117725,0.000000,0.000000,0.250000,0,0);}
.mfa_c00189{transform:matrix(0.118000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118000,0.000000,0.000000,0.250000,0,0);}
.md9_c00189{transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);}
.m56_c00189{transform:matrix(0.118600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118600,0.000000,0.000000,0.250000,0,0);}
.m13d_c00189{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);}
.mfb_c00189{transform:matrix(0.120025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120025,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00189{transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);}
.m113_c00189{transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);}
.m13f_c00189{transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);}
.m145_c00189{transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);}
.md7_c00189{transform:matrix(0.126700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126700,0.000000,0.000000,0.250000,0,0);}
.m92_c00189{transform:matrix(0.127575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127575,0.000000,0.000000,0.250000,0,0);}
.m21_c00189{transform:matrix(0.128175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128175,0.000000,0.000000,0.250000,0,0);}
.m129_c00189{transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);}
.me9_c00189{transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);}
.m128_c00189{transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);}
.m120_c00189{transform:matrix(0.131800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131800,0.000000,0.000000,0.250000,0,0);}
.m11c_c00189{transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);}
.m137_c00189{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mf1_c00189{transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);}
.m18b_c00189{transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00189{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);}
.mdd_c00189{transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);}
.md1_c00189{transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);}
.ma1_c00189{transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);}
.m10f_c00189{transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);}
.m13e_c00189{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);}
.m119_c00189{transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139075,0.000000,0.000000,0.250000,0,0);}
.md5_c00189{transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);}
.mfd_c00189{transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);}
.m17c_c00189{transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);}
.ma3_c00189{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m5d_c00189{transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142100,0.000000,0.000000,0.250000,0,0);}
.me1_c00189{transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);}
.m148_c00189{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m135_c00189{transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);}
.m19c_c00189{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m193_c00189{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.m6d_c00189{transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);}
.m10d_c00189{transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);}
.m1_c00189{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m189_c00189{transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);}
.m58_c00189{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.mc6_c00189{transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);}
.m168_c00189{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.m11d_c00189{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);}
.m149_c00189{transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);}
.m80_c00189{transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);}
.mf6_c00189{transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);}
.mfc_c00189{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);}
.m111_c00189{transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);}
.m52_c00189{transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);}
.m5c_c00189{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);}
.m61_c00189{transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);}
.m13c_c00189{transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);}
.m10e_c00189{transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);}
.m9c_c00189{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.m158_c00189{transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);}
.m44_c00189{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m156_c00189{transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);}
.md4_c00189{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);}
.m8a_c00189{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);}
.mdf_c00189{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m132_c00189{transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);}
.mf8_c00189{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);}
.m81_c00189{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.m2f_c00189{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.m130_c00189{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);}
.mfe_c00189{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m123_c00189{transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);}
.m12_c00189{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m100_c00189{transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);}
.m55_c00189{transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);}
.mcc_c00189{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);}
.m195_c00189{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.mad_c00189{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.ma4_c00189{transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);}
.m10c_c00189{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.m9b_c00189{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.m127_c00189{transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);}
.mf0_c00189{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m18a_c00189{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m85_c00189{transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);}
.m14a_c00189{transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);}
.ma6_c00189{transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);}
.m33_c00189{transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);}
.m15f_c00189{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);}
.mbc_c00189{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);}
.mae_c00189{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.m89_c00189{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.m64_c00189{transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);}
.m94_c00189{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.m125_c00189{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.mcf_c00189{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.m10b_c00189{transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);}
.m16a_c00189{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);}
.mf5_c00189{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.md2_c00189{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.mce_c00189{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.mc0_c00189{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);}
.mf2_c00189{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m5b_c00189{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);}
.m126_c00189{transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);}
.m112_c00189{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.mc4_c00189{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);}
.m138_c00189{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m144_c00189{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);}
.m16b_c00189{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);}
.m166_c00189{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);}
.m150_c00189{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m3e_c00189{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);}
.m172_c00189{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m7c_c00189{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.maf_c00189{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.me2_c00189{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m24_c00189{transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);}
.m43_c00189{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m12e_c00189{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m182_c00189{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.mc5_c00189{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);}
.mb8_c00189{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m18_c00189{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m164_c00189{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);}
.m185_c00189{transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);}
.m102_c00189{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.m173_c00189{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.m57_c00189{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);}
.mbf_c00189{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m42_c00189{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);}
.m95_c00189{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m3b_c00189{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb3_c00189{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.m76_c00189{transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);}
.m110_c00189{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);}
.m99_c00189{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);}
.m20_c00189{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m162_c00189{transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);}
.m69_c00189{transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);}
.mbb_c00189{transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);}
.m11_c00189{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.mb0_c00189{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);}
.m62_c00189{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);}
.m8_c00189{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.ma2_c00189{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m155_c00189{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.mea_c00189{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);}
.mde_c00189{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);}
.m75_c00189{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m8d_c00189{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.m108_c00189{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);}
.m17d_c00189{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.m65_c00189{transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);}
.me8_c00189{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.m67_c00189{transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);}
.mf7_c00189{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.m8e_c00189{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);}
.m179_c00189{transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);}
.m15b_c00189{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);}
.m47_c00189{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m7b_c00189{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);}
.m12f_c00189{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m103_c00189{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.m15d_c00189{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.m26_c00189{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);}
.mf4_c00189{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.m9e_c00189{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);}
.m10_c00189{transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);}
.md6_c00189{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m152_c00189{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);}
.m9f_c00189{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);}
.mc_c00189{transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);}
.m73_c00189{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);}
.m45_c00189{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);}
.mb1_c00189{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.m133_c00189{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb9_c00189{transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00189{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.mc9_c00189{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);}
.m180_c00189{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.m199_c00189{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.m15e_c00189{transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);}
.m198_c00189{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);}
.m37_c00189{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);}
.m159_c00189{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);}
.m4b_c00189{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);}
.m71_c00189{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);}
.mab_c00189{transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);}
.m11a_c00189{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);}
.m1a5_c00189{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mbd_c00189{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.m154_c00189{transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);}
.mb6_c00189{transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);}
.mec_c00189{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.m165_c00189{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.m167_c00189{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);}
.ma8_c00189{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m11b_c00189{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.mf3_c00189{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);}
.m86_c00189{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.ma9_c00189{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);}
.m5a_c00189{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);}
.m60_c00189{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.me7_c00189{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);}
.m4e_c00189{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);}
.m70_c00189{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.m177_c00189{transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);}
.m51_c00189{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);}
.m78_c00189{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);}
.mb5_c00189{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.mac_c00189{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m109_c00189{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);}
.m5f_c00189{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.m14e_c00189{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.m17b_c00189{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.m6e_c00189{transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);}
.m7e_c00189{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);}
.m28_c00189{transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);}
.ma5_c00189{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);}
.me5_c00189{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);}
.m157_c00189{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.mda_c00189{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);}
.m107_c00189{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.mcb_c00189{transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);}
.m169_c00189{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.m4d_c00189{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m6f_c00189{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m54_c00189{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m2d_c00189{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);}
.m4c_c00189{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);}
.m46_c00189{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);}
.m32_c00189{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.m16c_c00189{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);}
.m6c_c00189{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);}
.m15c_c00189{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.mcd_c00189{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.md0_c00189{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);}
.m90_c00189{transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);}
.m48_c00189{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.m8f_c00189{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);}
.m16e_c00189{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m98_c00189{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m14c_c00189{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);}
.me0_c00189{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);}
.m34_c00189{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m2c_c00189{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);}
.m5e_c00189{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);}
.m11f_c00189{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);}
.m18f_c00189{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.ma0_c00189{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m134_c00189{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);}
.m139_c00189{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);}
.m72_c00189{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);}
.m38_c00189{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);}
.mca_c00189{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m181_c00189{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);}
.m7_c00189{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.m121_c00189{transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);}
.m104_c00189{transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);}
.m53_c00189{transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);}
.m7d_c00189{transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);}
.m140_c00189{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);}
.m19b_c00189{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.m7f_c00189{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.mb7_c00189{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);}
.m1e_c00189{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m175_c00189{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);}
.m184_c00189{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m91_c00189{transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);}
.m77_c00189{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m174_c00189{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m3c_c00189{transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);}
.m12a_c00189{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);}
.mf9_c00189{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);}
.m2b_c00189{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m17f_c00189{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);}
.m63_c00189{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m3a_c00189{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.mb2_c00189{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m147_c00189{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m96_c00189{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m93_c00189{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m8b_c00189{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);}
.m66_c00189{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m40_c00189{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);}
.m68_c00189{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);}
.m79_c00189{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);}
.m6a_c00189{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);}
.m49_c00189{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m35_c00189{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m29_c00189{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m74_c00189{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);}
.m6b_c00189{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mba_c00189{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);}
.m17_c00189{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);}
.me_c00189{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00189{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);}
.m13_c00189{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00189{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m87_c00189{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);}
.m22_c00189{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);}
.m3d_c00189{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);}
.m30_c00189{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mbe_c00189{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);}
.m2a_c00189{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12b_c00189{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);}
.m41_c00189{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00189{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00189{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m19_c00189{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00189{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00189{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12d_c00189{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m15_c00189{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00189{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.maa_c00189{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);}
.m16f_c00189{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);}
.m151_c00189{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me3_c00189{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m59_c00189{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m25_c00189{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00189{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);}
.m14b_c00189{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);}
.m1c_c00189{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);}
.m6_c00189{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m106_c00189{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.meb_c00189{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m10a_c00189{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m23_c00189{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.med_c00189{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m115_c00189{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);}
.m36_c00189{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00189{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);}
.mf_c00189{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m190_c00189{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);}
.m50_c00189{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m161_c00189{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4_c00189{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00189{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m141_c00189{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m163_c00189{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m15a_c00189{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);}
.mef_c00189{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m14d_c00189{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m19a_c00189{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m3_c00189{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);}
.mb4_c00189{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m192_c00189{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m196_c00189{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00189{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m14f_c00189{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.md_c00189{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.mb_c00189{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.mc8_c00189{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m9_c00189{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mee_c00189{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m18d_c00189{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m14_c00189{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m105_c00189{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m170_c00189{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);}
.m2_c00189{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m191_c00189{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m143_c00189{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m17e_c00189{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m18e_c00189{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00189{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m31_c00189{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00189{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00189{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m124_c00189{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m39_c00189{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00189{transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);}
.me6_c00189{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m18c_c00189{transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);}
.m183_c00189{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m97_c00189{transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);}
.m83_c00189{transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);}
.m171_c00189{transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);}
.m116_c00189{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00189{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.me4_c00189{transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);}
.m17a_c00189{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m0_c00189{transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);}
.m114_c00189{transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);}
.m16d_c00189{transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);}
.m186_c00189{transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);}
.m88_c00189{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m84_c00189{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.m178_c00189{transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);}
.m194_c00189{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.mdb_c00189{transform:matrix(1.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.540000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00189{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m118_c00189{transform:matrix(2.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.817500,0.000000,0.000000,0.250000,0,0);}
.m131_c00189{transform:matrix(2.972500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.972500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.972500,0.000000,0.000000,0.250000,0,0);}
.m176_c00189{transform:matrix(3.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.167500,0.000000,0.000000,0.250000,0,0);}
.m27_c00189{transform:matrix(4.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.032500,0.000000,0.000000,0.250000,0,0);}
.ma_c00189{transform:matrix(6.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.772500,0.000000,0.000000,0.250000,0,0);}
.v1_c00189{vertical-align:-13.800000px;}
.v3_c00189{vertical-align:-10.380000px;}
.v2_c00189{vertical-align:-3.420000px;}
.v0_c00189{vertical-align:0.000000px;}
.ls3_c00189{letter-spacing:0.000000px;}
.ls1_c00189{letter-spacing:82.878576px;}
.ls2_c00189{letter-spacing:119.042688px;}
.ls0_c00189{letter-spacing:1847.361693px;}
.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:-15.925560px;}
.ws1_c00189{word-spacing:0.000000px;}
.fc0_c00189{color:transparent;}
.fs7_c00189{font-size:3.456000px;}
.fs8_c00189{font-size:6.000000px;}
.fs10_c00189{font-size:6.900000px;}
.fs2_c00189{font-size:10.380000px;}
.fsc_c00189{font-size:13.800000px;}
.fs0_c00189{font-size:17.280000px;}
.fs1_c00189{font-size:20.760000px;}
.fs1c_c00189{font-size:24.180000px;}
.fsb_c00189{font-size:27.660000px;}
.fsa_c00189{font-size:31.080000px;}
.fs11_c00189{font-size:34.560000px;}
.fs19_c00189{font-size:38.040000px;}
.fs17_c00189{font-size:41.460000px;}
.fs16_c00189{font-size:44.940000px;}
.fs13_c00189{font-size:48.360000px;}
.fs12_c00189{font-size:51.840000px;}
.fs9_c00189{font-size:55.320000px;}
.fs15_c00189{font-size:58.740000px;}
.fse_c00189{font-size:62.220000px;}
.fsd_c00189{font-size:65.640000px;}
.fsf_c00189{font-size:69.120000px;}
.fs18_c00189{font-size:72.600000px;}
.fs1b_c00189{font-size:76.020000px;}
.fs14_c00189{font-size:79.500000px;}
.fs1a_c00189{font-size:82.920000px;}
.fs1d_c00189{font-size:86.400000px;}
.fs4_c00189{font-size:89.880000px;}
.fs1f_c00189{font-size:93.300000px;}
.fs1e_c00189{font-size:96.780000px;}
.fs3_c00189{font-size:110.580000px;}
.fs6_c00189{font-size:145.140000px;}
.fs5_c00189{font-size:155.520000px;}
.y0_c00189{bottom:0.000000px;}
.y17c_c00189{bottom:499.395000px;}
.y17e_c00189{bottom:502.845000px;}
.y17d_c00189{bottom:504.570000px;}
.y180_c00189{bottom:508.035000px;}
.y17f_c00189{bottom:519.270000px;}
.y171_c00189{bottom:520.125000px;}
.y17a_c00189{bottom:520.995000px;}
.y17b_c00189{bottom:521.850000px;}
.y174_c00189{bottom:522.720000px;}
.y172_c00189{bottom:523.590000px;}
.y179_c00189{bottom:526.170000px;}
.y177_c00189{bottom:528.765000px;}
.y176_c00189{bottom:530.490000px;}
.y175_c00189{bottom:531.360000px;}
.y173_c00189{bottom:533.955000px;}
.y178_c00189{bottom:535.680000px;}
.y16c_c00189{bottom:536.550000px;}
.y168_c00189{bottom:537.405000px;}
.y16a_c00189{bottom:538.275000px;}
.y16d_c00189{bottom:540.870000px;}
.y169_c00189{bottom:541.725000px;}
.y16f_c00189{bottom:542.595000px;}
.y16b_c00189{bottom:543.450000px;}
.y170_c00189{bottom:544.320000px;}
.y16e_c00189{bottom:546.045000px;}
.y163_c00189{bottom:554.685000px;}
.y166_c00189{bottom:556.410000px;}
.y165_c00189{bottom:558.150000px;}
.y162_c00189{bottom:559.005000px;}
.y167_c00189{bottom:560.730000px;}
.y19f_c00189{bottom:565.920000px;}
.y1a0_c00189{bottom:569.370000px;}
.y164_c00189{bottom:570.240000px;}
.y15b_c00189{bottom:572.835000px;}
.y15d_c00189{bottom:573.690000px;}
.y15c_c00189{bottom:574.560000px;}
.y15f_c00189{bottom:576.285000px;}
.y15e_c00189{bottom:578.010000px;}
.y1a1_c00189{bottom:580.605000px;}
.y161_c00189{bottom:583.200000px;}
.y154_c00189{bottom:588.390000px;}
.y160_c00189{bottom:589.245000px;}
.y158_c00189{bottom:590.115000px;}
.y153_c00189{bottom:590.970000px;}
.y156_c00189{bottom:593.565000px;}
.y155_c00189{bottom:594.435000px;}
.y157_c00189{bottom:595.290000px;}
.y15a_c00189{bottom:597.030000px;}
.y159_c00189{bottom:597.885000px;}
.y19d_c00189{bottom:601.350000px;}
.y19e_c00189{bottom:604.800000px;}
.y14c_c00189{bottom:606.525000px;}
.y14d_c00189{bottom:608.250000px;}
.y151_c00189{bottom:609.120000px;}
.y14f_c00189{bottom:609.990000px;}
.y14b_c00189{bottom:610.845000px;}
.y150_c00189{bottom:613.440000px;}
.y14e_c00189{bottom:614.310000px;}
.y152_c00189{bottom:615.165000px;}
.y143_c00189{bottom:624.675000px;}
.y145_c00189{bottom:625.530000px;}
.y148_c00189{bottom:626.400000px;}
.y146_c00189{bottom:628.125000px;}
.y149_c00189{bottom:628.995000px;}
.y144_c00189{bottom:629.850000px;}
.y147_c00189{bottom:632.445000px;}
.y14a_c00189{bottom:633.315000px;}
.y19c_c00189{bottom:638.490000px;}
.y13b_c00189{bottom:641.085000px;}
.y13d_c00189{bottom:645.405000px;}
.y13f_c00189{bottom:646.275000px;}
.y13c_c00189{bottom:647.130000px;}
.y13e_c00189{bottom:648.000000px;}
.y140_c00189{bottom:648.870000px;}
.y141_c00189{bottom:649.725000px;}
.y142_c00189{bottom:650.595000px;}
.y136_c00189{bottom:660.090000px;}
.y138_c00189{bottom:661.830000px;}
.y13a_c00189{bottom:662.685000px;}
.y134_c00189{bottom:663.555000px;}
.y135_c00189{bottom:664.410000px;}
.y139_c00189{bottom:667.005000px;}
.y19b_c00189{bottom:671.325000px;}
.y12b_c00189{bottom:673.920000px;}
.y137_c00189{bottom:675.645000px;}
.y12c_c00189{bottom:676.515000px;}
.y12d_c00189{bottom:677.370000px;}
.y130_c00189{bottom:678.240000px;}
.y12f_c00189{bottom:679.110000px;}
.y131_c00189{bottom:680.835000px;}
.y12e_c00189{bottom:683.430000px;}
.y132_c00189{bottom:686.010000px;}
.y19a_c00189{bottom:688.605000px;}
.y133_c00189{bottom:697.245000px;}
.y120_c00189{bottom:698.115000px;}
.y124_c00189{bottom:698.970000px;}
.y121_c00189{bottom:699.840000px;}
.y126_c00189{bottom:700.710000px;}
.y125_c00189{bottom:701.565000px;}
.y128_c00189{bottom:702.435000px;}
.y129_c00189{bottom:703.290000px;}
.y199_c00189{bottom:705.030000px;}
.y12a_c00189{bottom:705.885000px;}
.y123_c00189{bottom:707.610000px;}
.y122_c00189{bottom:709.350000px;}
.y127_c00189{bottom:712.800000px;}
.y11e_c00189{bottom:713.670000px;}
.y119_c00189{bottom:715.395000px;}
.y11a_c00189{bottom:716.250000px;}
.y11b_c00189{bottom:717.120000px;}
.y11c_c00189{bottom:717.990000px;}
.y11d_c00189{bottom:718.845000px;}
.y11f_c00189{bottom:719.715000px;}
.y118_c00189{bottom:720.570000px;}
.y10f_c00189{bottom:723.165000px;}
.y10e_c00189{bottom:724.035000px;}
.y110_c00189{bottom:725.760000px;}
.y112_c00189{bottom:726.630000px;}
.y111_c00189{bottom:728.355000px;}
.y117_c00189{bottom:730.080000px;}
.y113_c00189{bottom:730.950000px;}
.y114_c00189{bottom:734.400000px;}
.y115_c00189{bottom:736.125000px;}
.y116_c00189{bottom:739.590000px;}
.y106_c00189{bottom:741.315000px;}
.y108_c00189{bottom:743.040000px;}
.y107_c00189{bottom:744.765000px;}
.y109_c00189{bottom:745.635000px;}
.y10d_c00189{bottom:747.360000px;}
.y10b_c00189{bottom:751.680000px;}
.y10a_c00189{bottom:752.550000px;}
.y10c_c00189{bottom:756.870000px;}
.yfb_c00189{bottom:759.450000px;}
.yfa_c00189{bottom:760.320000px;}
.yfc_c00189{bottom:761.190000px;}
.y102_c00189{bottom:762.045000px;}
.y101_c00189{bottom:762.915000px;}
.y104_c00189{bottom:763.770000px;}
.y103_c00189{bottom:764.640000px;}
.y105_c00189{bottom:765.510000px;}
.yfd_c00189{bottom:766.365000px;}
.y100_c00189{bottom:768.090000px;}
.yfe_c00189{bottom:768.960000px;}
.y197_c00189{bottom:770.685000px;}
.yff_c00189{bottom:772.410000px;}
.y198_c00189{bottom:775.875000px;}
.yf5_c00189{bottom:780.195000px;}
.yf7_c00189{bottom:781.050000px;}
.yf4_c00189{bottom:781.920000px;}
.yf9_c00189{bottom:782.790000px;}
.yf3_c00189{bottom:784.515000px;}
.yf6_c00189{bottom:786.240000px;}
.yf8_c00189{bottom:787.110000px;}
.y195_c00189{bottom:788.835000px;}
.yf2_c00189{bottom:793.155000px;}
.y196_c00189{bottom:794.010000px;}
.yee_c00189{bottom:797.475000px;}
.yf0_c00189{bottom:798.330000px;}
.yef_c00189{bottom:800.070000px;}
.yf1_c00189{bottom:802.650000px;}
.y194_c00189{bottom:805.245000px;}
.ye6_c00189{bottom:811.290000px;}
.ye7_c00189{bottom:812.160000px;}
.ye5_c00189{bottom:813.030000px;}
.ye9_c00189{bottom:813.885000px;}
.yec_c00189{bottom:814.755000px;}
.ye8_c00189{bottom:818.205000px;}
.yea_c00189{bottom:819.075000px;}
.yed_c00189{bottom:826.845000px;}
.yeb_c00189{bottom:828.570000px;}
.y193_c00189{bottom:830.310000px;}
.ye0_c00189{bottom:831.165000px;}
.ye2_c00189{bottom:832.890000px;}
.ye1_c00189{bottom:833.760000px;}
.ye4_c00189{bottom:837.210000px;}
.ye3_c00189{bottom:838.080000px;}
.yd8_c00189{bottom:848.445000px;}
.ydb_c00189{bottom:850.170000px;}
.yde_c00189{bottom:851.040000px;}
.yda_c00189{bottom:852.765000px;}
.yd9_c00189{bottom:853.635000px;}
.ydc_c00189{bottom:854.490000px;}
.ydd_c00189{bottom:855.360000px;}
.ydf_c00189{bottom:857.955000px;}
.yce_c00189{bottom:864.870000px;}
.yd6_c00189{bottom:867.450000px;}
.yd3_c00189{bottom:868.320000px;}
.yd7_c00189{bottom:869.190000px;}
.yd0_c00189{bottom:870.045000px;}
.ycf_c00189{bottom:870.915000px;}
.yd5_c00189{bottom:871.770000px;}
.yd4_c00189{bottom:874.365000px;}
.yd1_c00189{bottom:877.830000px;}
.y192_c00189{bottom:879.555000px;}
.yd2_c00189{bottom:880.410000px;}
.yc3_c00189{bottom:882.150000px;}
.yc5_c00189{bottom:883.005000px;}
.yc4_c00189{bottom:883.875000px;}
.ycb_c00189{bottom:884.730000px;}
.yca_c00189{bottom:885.600000px;}
.ycc_c00189{bottom:886.470000px;}
.ycd_c00189{bottom:888.195000px;}
.yc6_c00189{bottom:889.050000px;}
.yc8_c00189{bottom:892.515000px;}
.yc7_c00189{bottom:893.370000px;}
.yc9_c00189{bottom:895.110000px;}
.ybc_c00189{bottom:895.965000px;}
.ybe_c00189{bottom:898.560000px;}
.ybb_c00189{bottom:900.285000px;}
.ybd_c00189{bottom:901.155000px;}
.ybf_c00189{bottom:902.010000px;}
.yc2_c00189{bottom:902.880000px;}
.yc0_c00189{bottom:904.605000px;}
.yc1_c00189{bottom:908.070000px;}
.yb8_c00189{bottom:918.435000px;}
.yb7_c00189{bottom:920.160000px;}
.yb5_c00189{bottom:921.030000px;}
.yb6_c00189{bottom:922.755000px;}
.yba_c00189{bottom:928.800000px;}
.y4_c00189{bottom:933.120000px;}
.yb9_c00189{bottom:933.990000px;}
.yb3_c00189{bottom:939.165000px;}
.yaf_c00189{bottom:940.890000px;}
.yb2_c00189{bottom:943.485000px;}
.yb1_c00189{bottom:944.355000px;}
.yb4_c00189{bottom:946.950000px;}
.yae_c00189{bottom:949.530000px;}
.yb0_c00189{bottom:952.125000px;}
.ya7_c00189{bottom:953.850000px;}
.yad_c00189{bottom:955.590000px;}
.yab_c00189{bottom:956.445000px;}
.yac_c00189{bottom:957.315000px;}
.yaa_c00189{bottom:958.170000px;}
.ya8_c00189{bottom:960.765000px;}
.ya9_c00189{bottom:961.635000px;}
.y191_c00189{bottom:965.085000px;}
.ya0_c00189{bottom:970.275000px;}
.y9e_c00189{bottom:972.000000px;}
.y9f_c00189{bottom:972.870000px;}
.ya2_c00189{bottom:973.725000px;}
.ya3_c00189{bottom:974.595000px;}
.ya4_c00189{bottom:975.450000px;}
.ya1_c00189{bottom:976.320000px;}
.ya5_c00189{bottom:977.190000px;}
.ya6_c00189{bottom:979.770000px;}
.y190_c00189{bottom:981.510000px;}
.y9b_c00189{bottom:989.280000px;}
.y9c_c00189{bottom:991.875000px;}
.y9d_c00189{bottom:992.730000px;}
.y92_c00189{bottom:1005.690000px;}
.y98_c00189{bottom:1007.430000px;}
.y94_c00189{bottom:1008.285000px;}
.y96_c00189{bottom:1009.155000px;}
.y99_c00189{bottom:1010.010000px;}
.y97_c00189{bottom:1011.750000px;}
.y9a_c00189{bottom:1015.200000px;}
.y93_c00189{bottom:1018.650000px;}
.y95_c00189{bottom:1022.115000px;}
.y8e_c00189{bottom:1022.970000px;}
.y8b_c00189{bottom:1023.840000px;}
.y8d_c00189{bottom:1024.710000px;}
.y90_c00189{bottom:1025.565000px;}
.y8f_c00189{bottom:1026.435000px;}
.y8a_c00189{bottom:1029.030000px;}
.y91_c00189{bottom:1029.885000px;}
.y8c_c00189{bottom:1034.205000px;}
.y80_c00189{bottom:1040.250000px;}
.y81_c00189{bottom:1041.120000px;}
.y87_c00189{bottom:1041.990000px;}
.y82_c00189{bottom:1042.845000px;}
.y89_c00189{bottom:1045.440000px;}
.y18f_c00189{bottom:1046.310000px;}
.y86_c00189{bottom:1047.165000px;}
.y88_c00189{bottom:1048.035000px;}
.y85_c00189{bottom:1048.890000px;}
.y84_c00189{bottom:1051.485000px;}
.y83_c00189{bottom:1054.080000px;}
.y77_c00189{bottom:1059.270000px;}
.y79_c00189{bottom:1060.125000px;}
.y7e_c00189{bottom:1060.995000px;}
.y7a_c00189{bottom:1061.850000px;}
.y78_c00189{bottom:1062.720000px;}
.y7d_c00189{bottom:1063.590000px;}
.y18e_c00189{bottom:1064.445000px;}
.y7b_c00189{bottom:1065.315000px;}
.y7c_c00189{bottom:1066.170000px;}
.y7f_c00189{bottom:1067.910000px;}
.y18d_c00189{bottom:1072.230000px;}
.y6b_c00189{bottom:1076.550000px;}
.y70_c00189{bottom:1077.405000px;}
.y6c_c00189{bottom:1078.275000px;}
.y6e_c00189{bottom:1079.130000px;}
.y75_c00189{bottom:1080.000000px;}
.y74_c00189{bottom:1080.870000px;}
.y6d_c00189{bottom:1081.725000px;}
.y6f_c00189{bottom:1082.595000px;}
.y71_c00189{bottom:1083.450000px;}
.y76_c00189{bottom:1084.320000px;}
.y73_c00189{bottom:1085.190000px;}
.y72_c00189{bottom:1090.365000px;}
.y64_c00189{bottom:1095.555000px;}
.y63_c00189{bottom:1096.410000px;}
.y68_c00189{bottom:1097.280000px;}
.y65_c00189{bottom:1098.150000px;}
.y6a_c00189{bottom:1099.005000px;}
.y69_c00189{bottom:1101.600000px;}
.y67_c00189{bottom:1102.470000px;}
.y66_c00189{bottom:1108.515000px;}
.y5c_c00189{bottom:1111.965000px;}
.y5d_c00189{bottom:1112.835000px;}
.y62_c00189{bottom:1113.690000px;}
.y5e_c00189{bottom:1114.560000px;}
.y5f_c00189{bottom:1115.430000px;}
.y5b_c00189{bottom:1116.285000px;}
.y60_c00189{bottom:1117.155000px;}
.y61_c00189{bottom:1122.330000px;}
.y54_c00189{bottom:1129.245000px;}
.y55_c00189{bottom:1130.115000px;}
.y57_c00189{bottom:1131.840000px;}
.y58_c00189{bottom:1132.710000px;}
.y56_c00189{bottom:1133.565000px;}
.y5a_c00189{bottom:1135.290000px;}
.y59_c00189{bottom:1136.160000px;}
.y48_c00189{bottom:1144.800000px;}
.y4e_c00189{bottom:1145.670000px;}
.y4f_c00189{bottom:1146.525000px;}
.y4c_c00189{bottom:1147.395000px;}
.y4b_c00189{bottom:1148.250000px;}
.y49_c00189{bottom:1149.120000px;}
.y50_c00189{bottom:1149.990000px;}
.y51_c00189{bottom:1150.845000px;}
.y52_c00189{bottom:1151.715000px;}
.y4a_c00189{bottom:1152.570000px;}
.y4d_c00189{bottom:1153.440000px;}
.y53_c00189{bottom:1164.675000px;}
.y40_c00189{bottom:1165.530000px;}
.y42_c00189{bottom:1166.400000px;}
.y44_c00189{bottom:1167.270000px;}
.y3f_c00189{bottom:1168.995000px;}
.y41_c00189{bottom:1170.720000px;}
.y45_c00189{bottom:1171.590000px;}
.y46_c00189{bottom:1172.445000px;}
.y3e_c00189{bottom:1176.765000px;}
.y43_c00189{bottom:1179.360000px;}
.y47_c00189{bottom:1181.085000px;}
.y38_c00189{bottom:1182.810000px;}
.y37_c00189{bottom:1183.680000px;}
.y3c_c00189{bottom:1184.550000px;}
.y39_c00189{bottom:1185.405000px;}
.y3b_c00189{bottom:1186.275000px;}
.y3a_c00189{bottom:1187.130000px;}
.y3d_c00189{bottom:1191.450000px;}
.y35_c00189{bottom:1201.830000px;}
.y36_c00189{bottom:1202.685000px;}
.y33_c00189{bottom:1204.410000px;}
.y34_c00189{bottom:1205.280000px;}
.y18c_c00189{bottom:1213.050000px;}
.y2d_c00189{bottom:1217.370000px;}
.y2f_c00189{bottom:1219.110000px;}
.y32_c00189{bottom:1219.965000px;}
.y30_c00189{bottom:1220.835000px;}
.y2b_c00189{bottom:1221.690000px;}
.y2c_c00189{bottom:1222.560000px;}
.y31_c00189{bottom:1223.430000px;}
.y2e_c00189{bottom:1232.070000px;}
.y28_c00189{bottom:1235.520000px;}
.y26_c00189{bottom:1237.245000px;}
.y2a_c00189{bottom:1238.115000px;}
.y22_c00189{bottom:1238.970000px;}
.y23_c00189{bottom:1239.840000px;}
.y24_c00189{bottom:1240.710000px;}
.y27_c00189{bottom:1242.435000px;}
.y29_c00189{bottom:1243.290000px;}
.y18a_c00189{bottom:1245.885000px;}
.y18b_c00189{bottom:1247.610000px;}
.y25_c00189{bottom:1248.480000px;}
.y1e_c00189{bottom:1252.800000px;}
.y1c_c00189{bottom:1254.525000px;}
.y1d_c00189{bottom:1255.395000px;}
.y1a_c00189{bottom:1256.250000px;}
.y19_c00189{bottom:1257.120000px;}
.y1b_c00189{bottom:1257.990000px;}
.y1f_c00189{bottom:1259.715000px;}
.y21_c00189{bottom:1264.035000px;}
.y20_c00189{bottom:1266.630000px;}
.y189_c00189{bottom:1268.355000px;}
.y17_c00189{bottom:1271.805000px;}
.y16_c00189{bottom:1276.125000px;}
.y18_c00189{bottom:1277.850000px;}
.y15_c00189{bottom:1280.445000px;}
.y182_c00189{bottom:1282.170000px;}
.y183_c00189{bottom:1283.040000px;}
.y13_c00189{bottom:1289.955000px;}
.y184_c00189{bottom:1290.810000px;}
.y14_c00189{bottom:1291.680000px;}
.y11_c00189{bottom:1292.550000px;}
.y12_c00189{bottom:1293.405000px;}
.y181_c00189{bottom:1295.130000px;}
.y185_c00189{bottom:1296.870000px;}
.yd_c00189{bottom:1308.090000px;}
.yf_c00189{bottom:1310.685000px;}
.ye_c00189{bottom:1313.280000px;}
.y188_c00189{bottom:1315.875000px;}
.yc_c00189{bottom:1320.195000px;}
.y10_c00189{bottom:1321.050000px;}
.y9_c00189{bottom:1323.645000px;}
.ya_c00189{bottom:1325.370000px;}
.yb_c00189{bottom:1327.965000px;}
.y8_c00189{bottom:1329.690000px;}
.y6_c00189{bottom:1332.285000px;}
.y7_c00189{bottom:1334.880000px;}
.y5_c00189{bottom:1353.030000px;}
.y187_c00189{bottom:1354.755000px;}
.y186_c00189{bottom:1362.525000px;}
.y2_c00189{bottom:1380.675000px;}
.y3_c00189{bottom:1382.400000px;}
.y1_c00189{bottom:1393.635000px;}
.h9_c00189{height:3.110063px;}
.h22_c00189{height:5.170312px;}
.ha_c00189{height:5.399414px;}
.h12_c00189{height:6.209326px;}
.h4_c00189{height:9.340986px;}
.he_c00189{height:12.418652px;}
.h2_c00189{height:15.550313px;}
.h3_c00189{height:18.681973px;}
.h1e_c00189{height:21.759639px;}
.hd_c00189{height:24.891299px;}
.hc_c00189{height:27.968965px;}
.h13_c00189{height:31.100625px;}
.h1b_c00189{height:34.232285px;}
.h19_c00189{height:37.309951px;}
.h18_c00189{height:40.441611px;}
.h15_c00189{height:43.519277px;}
.h14_c00189{height:46.650937px;}
.hb_c00189{height:49.782598px;}
.h17_c00189{height:52.860264px;}
.h10_c00189{height:55.991924px;}
.hf_c00189{height:59.069590px;}
.h11_c00189{height:62.201250px;}
.h1a_c00189{height:65.332910px;}
.h1d_c00189{height:68.410576px;}
.h16_c00189{height:71.542236px;}
.h1c_c00189{height:74.619902px;}
.h1f_c00189{height:77.751563px;}
.h6_c00189{height:80.883223px;}
.h21_c00189{height:83.960889px;}
.h20_c00189{height:87.092549px;}
.h5_c00189{height:99.511201px;}
.h8_c00189{height:130.611826px;}
.h7_c00189{height:139.952812px;}
.h1_c00189{height:1503.000000px;}
.h0_c00189{height:1503.360000px;}
.w0_c00189{width:1090.365000px;}
.w1_c00189{width:1090.500000px;}
.x0_c00189{left:0.000000px;}
.x105_c00189{left:1.725000px;}
.x106_c00189{left:6.045000px;}
.x100_c00189{left:13.830000px;}
.x107_c00189{left:22.470000px;}
.x108_c00189{left:25.920000px;}
.x101_c00189{left:33.690000px;}
.x103_c00189{left:40.605000px;}
.xf8_c00189{left:66.525000px;}
.xf9_c00189{left:69.990000px;}
.xfa_c00189{left:126.150000px;}
.x102_c00189{left:142.560000px;}
.xff_c00189{left:144.285000px;}
.xfb_c00189{left:146.880000px;}
.xfc_c00189{left:154.650000px;}
.x4_c00189{left:161.565000px;}
.x104_c00189{left:164.160000px;}
.x8f_c00189{left:219.450000px;}
.x95_c00189{left:224.640000px;}
.xa7_c00189{left:226.365000px;}
.xd8_c00189{left:228.960000px;}
.x1_c00189{left:230.685000px;}
.x63_c00189{left:233.280000px;}
.xb1_c00189{left:235.005000px;}
.x50_c00189{left:239.325000px;}
.xd0_c00189{left:241.050000px;}
.xed_c00189{left:242.790000px;}
.x64_c00189{left:244.515000px;}
.x70_c00189{left:246.240000px;}
.xd6_c00189{left:247.965000px;}
.x5_c00189{left:249.690000px;}
.xa_c00189{left:252.285000px;}
.x6_c00189{left:263.520000px;}
.xb_c00189{left:266.115000px;}
.x9a_c00189{left:268.710000px;}
.xb2_c00189{left:270.435000px;}
.xf4_c00189{left:273.885000px;}
.xc1_c00189{left:275.610000px;}
.xc7_c00189{left:282.525000px;}
.xc2_c00189{left:285.120000px;}
.xf7_c00189{left:286.845000px;}
.xee_c00189{left:289.440000px;}
.x65_c00189{left:292.035000px;}
.x76_c00189{left:298.080000px;}
.xd1_c00189{left:300.675000px;}
.xef_c00189{left:302.400000px;}
.xc_c00189{left:305.850360px;}
.xd9_c00189{left:307.590000px;}
.x9e_c00189{left:309.315000px;}
.xf6_c00189{left:311.040000px;}
.xbb_c00189{left:314.490000px;}
.xbe_c00189{left:316.230000px;}
.x5b_c00189{left:320.550000px;}
.x71_c00189{left:322.275000px;}
.x9f_c00189{left:324.000000px;}
.x77_c00189{left:325.725000px;}
.xdc_c00189{left:327.450000px;}
.x66_c00189{left:330.915000px;}
.xca_c00189{left:334.365000px;}
.xb7_c00189{left:336.090000px;}
.xab_c00189{left:337.830000px;}
.xbc_c00189{left:340.410000px;}
.x20_c00189{left:343.875000px;}
.x51_c00189{left:345.600000px;}
.x7a_c00189{left:347.325000px;}
.x3c_c00189{left:349.050000px;}
.x7_c00189{left:354.240000px;}
.x9b_c00189{left:355.965000px;}
.xf0_c00189{left:357.690000px;}
.x67_c00189{left:359.430000px;}
.xac_c00189{left:361.155000px;}
.xdf_c00189{left:362.880000px;}
.x21_c00189{left:366.330000px;}
.xdd_c00189{left:368.925000px;}
.xea_c00189{left:370.650000px;}
.xa8_c00189{left:373.245000px;}
.x45_c00189{left:375.840000px;}
.x22_c00189{left:378.435000px;}
.xd2_c00189{left:381.030000px;}
.x90_c00189{left:383.610000px;}
.x52_c00189{left:386.205000px;}
.xe6_c00189{left:387.930000px;}
.x23_c00189{left:390.525000px;}
.x7b_c00189{left:392.250000px;}
.xc3_c00189{left:393.990000px;}
.x2e_c00189{left:395.715000px;}
.x96_c00189{left:399.165000px;}
.x8_c00189{left:400.890000px;}
.x24_c00189{left:402.630000px;}
.xe7_c00189{left:406.080000px;}
.x5c_c00189{left:407.805000px;}
.x7c_c00189{left:410.400000px;}
.x46_c00189{left:414.720000px;}
.x91_c00189{left:417.315000px;}
.x3d_c00189{left:421.635000px;}
.x25_c00189{left:423.360000px;}
.x53_c00189{left:426.810000px;}
.x2f_c00189{left:432.000000px;}
.xf5_c00189{left:433.725000px;}
.x49_c00189{left:435.450000px;}
.x7d_c00189{left:437.190000px;}
.x5d_c00189{left:442.365000px;}
.x68_c00189{left:444.090000px;}
.xa3_c00189{left:445.830000px;}
.xc6_c00189{left:450.150000px;}
.x89_c00189{left:451.875000px;}
.xcb_c00189{left:454.470000px;}
.x7e_c00189{left:457.920000px;}
.xd3_c00189{left:459.645000px;}
.x72_c00189{left:462.240000px;}
.x54_c00189{left:463.965000px;}
.xb8_c00189{left:465.690000px;}
.x9c_c00189{left:470.880000px;}
.xbf_c00189{left:473.475000px;}
.x69_c00189{left:477.795000px;}
.xa9_c00189{left:480.390000px;}
.xa4_c00189{left:482.970000px;}
.x26_c00189{left:484.710000px;}
.x30_c00189{left:487.290000px;}
.x47_c00189{left:489.030000px;}
.xe4_c00189{left:491.610000px;}
.x55_c00189{left:493.350000px;}
.x92_c00189{left:495.075000px;}
.xa5_c00189{left:496.800000px;}
.x7f_c00189{left:498.525000px;}
.x27_c00189{left:501.120000px;}
.x78_c00189{left:502.845000px;}
.x8a_c00189{left:505.440000px;}
.x97_c00189{left:507.165000px;}
.x6a_c00189{left:509.760000px;}
.x73_c00189{left:511.485000px;}
.x4a_c00189{left:513.210000px;}
.x31_c00189{left:514.950000px;}
.xb4_c00189{left:516.675000px;}
.x28_c00189{left:519.270000px;}
.x32_c00189{left:524.445000px;}
.x80_c00189{left:530.490000px;}
.xd4_c00189{left:540.870000px;}
.xf_c00189{left:542.595000px;}
.x56_c00189{left:544.320000px;}
.xb9_c00189{left:546.915000px;}
.x81_c00189{left:548.640000px;}
.xf2_c00189{left:550.365000px;}
.xc8_c00189{left:552.090000px;}
.x3e_c00189{left:553.830000px;}
.x33_c00189{left:556.410000px;}
.x1c_c00189{left:559.005000px;}
.xaa_c00189{left:560.730000px;}
.x15_c00189{left:563.325000px;}
.xbd_c00189{left:565.050000px;}
.x10_c00189{left:567.645000px;}
.x74_c00189{left:571.965000px;}
.xda_c00189{left:574.560000px;}
.x82_c00189{left:577.155000px;}
.x6b_c00189{left:578.880000px;}
.x4b_c00189{left:580.605000px;}
.x11_c00189{left:595.290000px;}
.x29_c00189{left:599.610000px;}
.xcc_c00189{left:603.075000px;}
.xe5_c00189{left:609.120000px;}
.xeb_c00189{left:610.845000px;}
.x83_c00189{left:613.440000px;}
.x2a_c00189{left:615.165000px;}
.xa6_c00189{left:617.760000px;}
.x16_c00189{left:620.355000px;}
.x6c_c00189{left:623.805000px;}
.x5e_c00189{left:626.400000px;}
.x84_c00189{left:628.995000px;}
.xd_c00189{left:630.720000px;}
.x57_c00189{left:632.445000px;}
.x93_c00189{left:635.040000px;}
.x34_c00189{left:638.490000px;}
.xba_c00189{left:640.230000px;}
.x4c_c00189{left:643.680000px;}
.x1d_c00189{left:647.130000px;}
.x6d_c00189{left:650.595000px;}
.xc9_c00189{left:652.320000px;}
.x35_c00189{left:654.045000px;}
.x5f_c00189{left:657.510000px;}
.x58_c00189{left:660.090000px;}
.x12_c00189{left:661.830000px;}
.x2b_c00189{left:664.410000px;}
.x9_c00189{left:666.150000px;}
.xa0_c00189{left:668.730000px;}
.xcd_c00189{left:673.050000px;}
.x4d_c00189{left:674.790000px;}
.xb5_c00189{left:677.370000px;}
.x85_c00189{left:681.690000px;}
.x8b_c00189{left:683.430000px;}
.x17_c00189{left:686.010000px;}
.xad_c00189{left:688.605000px;}
.x36_c00189{left:691.200000px;}
.x6e_c00189{left:692.925000px;}
.xce_c00189{left:694.650000px;}
.xf1_c00189{left:696.390000px;}
.xb6_c00189{left:698.115000px;}
.xb3_c00189{left:700.710000px;}
.x1e_c00189{left:705.030000px;}
.x9d_c00189{left:706.755000px;}
.xde_c00189{left:708.480000px;}
.x75_c00189{left:710.205000px;}
.x13_c00189{left:712.800000px;}
.xe0_c00189{left:715.395000px;}
.x37_c00189{left:717.120000px;}
.x2c_c00189{left:718.845000px;}
.x3f_c00189{left:721.440000px;}
.x40_c00189{left:726.630000px;}
.xe1_c00189{left:730.080000px;}
.x8c_c00189{left:731.805000px;}
.x94_c00189{left:735.270000px;}
.xcf_c00189{left:736.995000px;}
.x2d_c00189{left:740.445000px;}
.xa1_c00189{left:743.040000px;}
.x41_c00189{left:745.635000px;}
.x6f_c00189{left:747.360000px;}
.xae_c00189{left:749.085000px;}
.xd7_c00189{left:751.679088px;}
.x18_c00189{left:756.870000px;}
.x14_c00189{left:758.595000px;}
.x59_c00189{left:760.320000px;}
.xc4_c00189{left:763.770000px;}
.x42_c00189{left:766.365000px;}
.x38_c00189{left:770.685000px;}
.x60_c00189{left:773.280000px;}
.xaf_c00189{left:775.875000px;}
.x8d_c00189{left:778.470000px;}
.x86_c00189{left:781.050000px;}
.x43_c00189{left:782.790000px;}
.xa2_c00189{left:787.110000px;}
.x2_c00189{left:789.690000px;}
.x19_c00189{left:793.155000px;}
.x39_c00189{left:799.200000px;}
.x3_c00189{left:801.795000px;}
.x8e_c00189{left:805.245000px;}
.x48_c00189{left:808.710000px;}
.x98_c00189{left:814.755000px;}
.x87_c00189{left:816.480000px;}
.xe_c00189{left:819.075000px;}
.x1f_c00189{left:824.250000px;}
.x1a_c00189{left:825.990000px;}
.x4e_c00189{left:828.570000px;}
.x99_c00189{left:830.310000px;}
.x44_c00189{left:832.035000px;}
.x4f_c00189{left:834.630000px;}
.xc0_c00189{left:837.210000px;}
.xb0_c00189{left:838.950000px;}
.x3a_c00189{left:841.530000px;}
.x79_c00189{left:844.125000px;}
.x61_c00189{left:846.720000px;}
.xe2_c00189{left:848.445000px;}
.x88_c00189{left:851.040000px;}
.xdb_c00189{left:853.635000px;}
.x3b_c00189{left:856.230000px;}
.xe8_c00189{left:861.405000px;}
.x1b_c00189{left:863.130000px;}
.xf3_c00189{left:867.450000px;}
.x5a_c00189{left:871.770000px;}
.xe9_c00189{left:873.510000px;}
.x62_c00189{left:876.090000px;}
.xd5_c00189{left:877.830000px;}
.xe3_c00189{left:882.150000px;}
.xec_c00189{left:883.875000px;}
.xc5_c00189{left:898.560000px;}
.xfd_c00189{left:965.955000px;}
.xfe_c00189{left:987.555000px;}
@media print{
.v1_c00189{vertical-align:-12.266667pt;}
.v3_c00189{vertical-align:-9.226667pt;}
.v2_c00189{vertical-align:-3.040000pt;}
.v0_c00189{vertical-align:0.000000pt;}
.ls3_c00189{letter-spacing:0.000000pt;}
.ls1_c00189{letter-spacing:73.669845pt;}
.ls2_c00189{letter-spacing:105.815723pt;}
.ls0_c00189{letter-spacing:1642.099283pt;}
.ws0_c00189{word-spacing:-14.156053pt;}
.ws1_c00189{word-spacing:0.000000pt;}
.fs7_c00189{font-size:3.072000pt;}
.fs8_c00189{font-size:5.333333pt;}
.fs10_c00189{font-size:6.133333pt;}
.fs2_c00189{font-size:9.226667pt;}
.fsc_c00189{font-size:12.266667pt;}
.fs0_c00189{font-size:15.360000pt;}
.fs1_c00189{font-size:18.453333pt;}
.fs1c_c00189{font-size:21.493333pt;}
.fsb_c00189{font-size:24.586667pt;}
.fsa_c00189{font-size:27.626667pt;}
.fs11_c00189{font-size:30.720000pt;}
.fs19_c00189{font-size:33.813333pt;}
.fs17_c00189{font-size:36.853333pt;}
.fs16_c00189{font-size:39.946667pt;}
.fs13_c00189{font-size:42.986667pt;}
.fs12_c00189{font-size:46.080000pt;}
.fs9_c00189{font-size:49.173333pt;}
.fs15_c00189{font-size:52.213333pt;}
.fse_c00189{font-size:55.306667pt;}
.fsd_c00189{font-size:58.346667pt;}
.fsf_c00189{font-size:61.440000pt;}
.fs18_c00189{font-size:64.533333pt;}
.fs1b_c00189{font-size:67.573333pt;}
.fs14_c00189{font-size:70.666667pt;}
.fs1a_c00189{font-size:73.706667pt;}
.fs1d_c00189{font-size:76.800000pt;}
.fs4_c00189{font-size:79.893333pt;}
.fs1f_c00189{font-size:82.933333pt;}
.fs1e_c00189{font-size:86.026667pt;}
.fs3_c00189{font-size:98.293333pt;}
.fs6_c00189{font-size:129.013333pt;}
.fs5_c00189{font-size:138.240000pt;}
.y0_c00189{bottom:0.000000pt;}
.y17c_c00189{bottom:443.906667pt;}
.y17e_c00189{bottom:446.973333pt;}
.y17d_c00189{bottom:448.506667pt;}
.y180_c00189{bottom:451.586667pt;}
.y17f_c00189{bottom:461.573333pt;}
.y171_c00189{bottom:462.333333pt;}
.y17a_c00189{bottom:463.106667pt;}
.y17b_c00189{bottom:463.866667pt;}
.y174_c00189{bottom:464.640000pt;}
.y172_c00189{bottom:465.413333pt;}
.y179_c00189{bottom:467.706667pt;}
.y177_c00189{bottom:470.013333pt;}
.y176_c00189{bottom:471.546667pt;}
.y175_c00189{bottom:472.320000pt;}
.y173_c00189{bottom:474.626667pt;}
.y178_c00189{bottom:476.160000pt;}
.y16c_c00189{bottom:476.933333pt;}
.y168_c00189{bottom:477.693333pt;}
.y16a_c00189{bottom:478.466667pt;}
.y16d_c00189{bottom:480.773333pt;}
.y169_c00189{bottom:481.533333pt;}
.y16f_c00189{bottom:482.306667pt;}
.y16b_c00189{bottom:483.066667pt;}
.y170_c00189{bottom:483.840000pt;}
.y16e_c00189{bottom:485.373333pt;}
.y163_c00189{bottom:493.053333pt;}
.y166_c00189{bottom:494.586667pt;}
.y165_c00189{bottom:496.133333pt;}
.y162_c00189{bottom:496.893333pt;}
.y167_c00189{bottom:498.426667pt;}
.y19f_c00189{bottom:503.040000pt;}
.y1a0_c00189{bottom:506.106667pt;}
.y164_c00189{bottom:506.880000pt;}
.y15b_c00189{bottom:509.186667pt;}
.y15d_c00189{bottom:509.946667pt;}
.y15c_c00189{bottom:510.720000pt;}
.y15f_c00189{bottom:512.253333pt;}
.y15e_c00189{bottom:513.786667pt;}
.y1a1_c00189{bottom:516.093333pt;}
.y161_c00189{bottom:518.400000pt;}
.y154_c00189{bottom:523.013333pt;}
.y160_c00189{bottom:523.773333pt;}
.y158_c00189{bottom:524.546667pt;}
.y153_c00189{bottom:525.306667pt;}
.y156_c00189{bottom:527.613333pt;}
.y155_c00189{bottom:528.386667pt;}
.y157_c00189{bottom:529.146667pt;}
.y15a_c00189{bottom:530.693333pt;}
.y159_c00189{bottom:531.453333pt;}
.y19d_c00189{bottom:534.533333pt;}
.y19e_c00189{bottom:537.600000pt;}
.y14c_c00189{bottom:539.133333pt;}
.y14d_c00189{bottom:540.666667pt;}
.y151_c00189{bottom:541.440000pt;}
.y14f_c00189{bottom:542.213333pt;}
.y14b_c00189{bottom:542.973333pt;}
.y150_c00189{bottom:545.280000pt;}
.y14e_c00189{bottom:546.053333pt;}
.y152_c00189{bottom:546.813333pt;}
.y143_c00189{bottom:555.266667pt;}
.y145_c00189{bottom:556.026667pt;}
.y148_c00189{bottom:556.800000pt;}
.y146_c00189{bottom:558.333333pt;}
.y149_c00189{bottom:559.106667pt;}
.y144_c00189{bottom:559.866667pt;}
.y147_c00189{bottom:562.173333pt;}
.y14a_c00189{bottom:562.946667pt;}
.y19c_c00189{bottom:567.546667pt;}
.y13b_c00189{bottom:569.853333pt;}
.y13d_c00189{bottom:573.693333pt;}
.y13f_c00189{bottom:574.466667pt;}
.y13c_c00189{bottom:575.226667pt;}
.y13e_c00189{bottom:576.000000pt;}
.y140_c00189{bottom:576.773333pt;}
.y141_c00189{bottom:577.533333pt;}
.y142_c00189{bottom:578.306667pt;}
.y136_c00189{bottom:586.746667pt;}
.y138_c00189{bottom:588.293333pt;}
.y13a_c00189{bottom:589.053333pt;}
.y134_c00189{bottom:589.826667pt;}
.y135_c00189{bottom:590.586667pt;}
.y139_c00189{bottom:592.893333pt;}
.y19b_c00189{bottom:596.733333pt;}
.y12b_c00189{bottom:599.040000pt;}
.y137_c00189{bottom:600.573333pt;}
.y12c_c00189{bottom:601.346667pt;}
.y12d_c00189{bottom:602.106667pt;}
.y130_c00189{bottom:602.880000pt;}
.y12f_c00189{bottom:603.653333pt;}
.y131_c00189{bottom:605.186667pt;}
.y12e_c00189{bottom:607.493333pt;}
.y132_c00189{bottom:609.786667pt;}
.y19a_c00189{bottom:612.093333pt;}
.y133_c00189{bottom:619.773333pt;}
.y120_c00189{bottom:620.546667pt;}
.y124_c00189{bottom:621.306667pt;}
.y121_c00189{bottom:622.080000pt;}
.y126_c00189{bottom:622.853333pt;}
.y125_c00189{bottom:623.613333pt;}
.y128_c00189{bottom:624.386667pt;}
.y129_c00189{bottom:625.146667pt;}
.y199_c00189{bottom:626.693333pt;}
.y12a_c00189{bottom:627.453333pt;}
.y123_c00189{bottom:628.986667pt;}
.y122_c00189{bottom:630.533333pt;}
.y127_c00189{bottom:633.600000pt;}
.y11e_c00189{bottom:634.373333pt;}
.y119_c00189{bottom:635.906667pt;}
.y11a_c00189{bottom:636.666667pt;}
.y11b_c00189{bottom:637.440000pt;}
.y11c_c00189{bottom:638.213333pt;}
.y11d_c00189{bottom:638.973333pt;}
.y11f_c00189{bottom:639.746667pt;}
.y118_c00189{bottom:640.506667pt;}
.y10f_c00189{bottom:642.813333pt;}
.y10e_c00189{bottom:643.586667pt;}
.y110_c00189{bottom:645.120000pt;}
.y112_c00189{bottom:645.893333pt;}
.y111_c00189{bottom:647.426667pt;}
.y117_c00189{bottom:648.960000pt;}
.y113_c00189{bottom:649.733333pt;}
.y114_c00189{bottom:652.800000pt;}
.y115_c00189{bottom:654.333333pt;}
.y116_c00189{bottom:657.413333pt;}
.y106_c00189{bottom:658.946667pt;}
.y108_c00189{bottom:660.480000pt;}
.y107_c00189{bottom:662.013333pt;}
.y109_c00189{bottom:662.786667pt;}
.y10d_c00189{bottom:664.320000pt;}
.y10b_c00189{bottom:668.160000pt;}
.y10a_c00189{bottom:668.933333pt;}
.y10c_c00189{bottom:672.773333pt;}
.yfb_c00189{bottom:675.066667pt;}
.yfa_c00189{bottom:675.840000pt;}
.yfc_c00189{bottom:676.613333pt;}
.y102_c00189{bottom:677.373333pt;}
.y101_c00189{bottom:678.146667pt;}
.y104_c00189{bottom:678.906667pt;}
.y103_c00189{bottom:679.680000pt;}
.y105_c00189{bottom:680.453333pt;}
.yfd_c00189{bottom:681.213333pt;}
.y100_c00189{bottom:682.746667pt;}
.yfe_c00189{bottom:683.520000pt;}
.y197_c00189{bottom:685.053333pt;}
.yff_c00189{bottom:686.586667pt;}
.y198_c00189{bottom:689.666667pt;}
.yf5_c00189{bottom:693.506667pt;}
.yf7_c00189{bottom:694.266667pt;}
.yf4_c00189{bottom:695.040000pt;}
.yf9_c00189{bottom:695.813333pt;}
.yf3_c00189{bottom:697.346667pt;}
.yf6_c00189{bottom:698.880000pt;}
.yf8_c00189{bottom:699.653333pt;}
.y195_c00189{bottom:701.186667pt;}
.yf2_c00189{bottom:705.026667pt;}
.y196_c00189{bottom:705.786667pt;}
.yee_c00189{bottom:708.866667pt;}
.yf0_c00189{bottom:709.626667pt;}
.yef_c00189{bottom:711.173333pt;}
.yf1_c00189{bottom:713.466667pt;}
.y194_c00189{bottom:715.773333pt;}
.ye6_c00189{bottom:721.146667pt;}
.ye7_c00189{bottom:721.920000pt;}
.ye5_c00189{bottom:722.693333pt;}
.ye9_c00189{bottom:723.453333pt;}
.yec_c00189{bottom:724.226667pt;}
.ye8_c00189{bottom:727.293333pt;}
.yea_c00189{bottom:728.066667pt;}
.yed_c00189{bottom:734.973333pt;}
.yeb_c00189{bottom:736.506667pt;}
.y193_c00189{bottom:738.053333pt;}
.ye0_c00189{bottom:738.813333pt;}
.ye2_c00189{bottom:740.346667pt;}
.ye1_c00189{bottom:741.120000pt;}
.ye4_c00189{bottom:744.186667pt;}
.ye3_c00189{bottom:744.960000pt;}
.yd8_c00189{bottom:754.173333pt;}
.ydb_c00189{bottom:755.706667pt;}
.yde_c00189{bottom:756.480000pt;}
.yda_c00189{bottom:758.013333pt;}
.yd9_c00189{bottom:758.786667pt;}
.ydc_c00189{bottom:759.546667pt;}
.ydd_c00189{bottom:760.320000pt;}
.ydf_c00189{bottom:762.626667pt;}
.yce_c00189{bottom:768.773333pt;}
.yd6_c00189{bottom:771.066667pt;}
.yd3_c00189{bottom:771.840000pt;}
.yd7_c00189{bottom:772.613333pt;}
.yd0_c00189{bottom:773.373333pt;}
.ycf_c00189{bottom:774.146667pt;}
.yd5_c00189{bottom:774.906667pt;}
.yd4_c00189{bottom:777.213333pt;}
.yd1_c00189{bottom:780.293333pt;}
.y192_c00189{bottom:781.826667pt;}
.yd2_c00189{bottom:782.586667pt;}
.yc3_c00189{bottom:784.133333pt;}
.yc5_c00189{bottom:784.893333pt;}
.yc4_c00189{bottom:785.666667pt;}
.ycb_c00189{bottom:786.426667pt;}
.yca_c00189{bottom:787.200000pt;}
.ycc_c00189{bottom:787.973333pt;}
.ycd_c00189{bottom:789.506667pt;}
.yc6_c00189{bottom:790.266667pt;}
.yc8_c00189{bottom:793.346667pt;}
.yc7_c00189{bottom:794.106667pt;}
.yc9_c00189{bottom:795.653333pt;}
.ybc_c00189{bottom:796.413333pt;}
.ybe_c00189{bottom:798.720000pt;}
.ybb_c00189{bottom:800.253333pt;}
.ybd_c00189{bottom:801.026667pt;}
.ybf_c00189{bottom:801.786667pt;}
.yc2_c00189{bottom:802.560000pt;}
.yc0_c00189{bottom:804.093333pt;}
.yc1_c00189{bottom:807.173333pt;}
.yb8_c00189{bottom:816.386667pt;}
.yb7_c00189{bottom:817.920000pt;}
.yb5_c00189{bottom:818.693333pt;}
.yb6_c00189{bottom:820.226667pt;}
.yba_c00189{bottom:825.600000pt;}
.y4_c00189{bottom:829.440000pt;}
.yb9_c00189{bottom:830.213333pt;}
.yb3_c00189{bottom:834.813333pt;}
.yaf_c00189{bottom:836.346667pt;}
.yb2_c00189{bottom:838.653333pt;}
.yb1_c00189{bottom:839.426667pt;}
.yb4_c00189{bottom:841.733333pt;}
.yae_c00189{bottom:844.026667pt;}
.yb0_c00189{bottom:846.333333pt;}
.ya7_c00189{bottom:847.866667pt;}
.yad_c00189{bottom:849.413333pt;}
.yab_c00189{bottom:850.173333pt;}
.yac_c00189{bottom:850.946667pt;}
.yaa_c00189{bottom:851.706667pt;}
.ya8_c00189{bottom:854.013333pt;}
.ya9_c00189{bottom:854.786667pt;}
.y191_c00189{bottom:857.853333pt;}
.ya0_c00189{bottom:862.466667pt;}
.y9e_c00189{bottom:864.000000pt;}
.y9f_c00189{bottom:864.773333pt;}
.ya2_c00189{bottom:865.533333pt;}
.ya3_c00189{bottom:866.306667pt;}
.ya4_c00189{bottom:867.066667pt;}
.ya1_c00189{bottom:867.840000pt;}
.ya5_c00189{bottom:868.613333pt;}
.ya6_c00189{bottom:870.906667pt;}
.y190_c00189{bottom:872.453333pt;}
.y9b_c00189{bottom:879.360000pt;}
.y9c_c00189{bottom:881.666667pt;}
.y9d_c00189{bottom:882.426667pt;}
.y92_c00189{bottom:893.946667pt;}
.y98_c00189{bottom:895.493333pt;}
.y94_c00189{bottom:896.253333pt;}
.y96_c00189{bottom:897.026667pt;}
.y99_c00189{bottom:897.786667pt;}
.y97_c00189{bottom:899.333333pt;}
.y9a_c00189{bottom:902.400000pt;}
.y93_c00189{bottom:905.466667pt;}
.y95_c00189{bottom:908.546667pt;}
.y8e_c00189{bottom:909.306667pt;}
.y8b_c00189{bottom:910.080000pt;}
.y8d_c00189{bottom:910.853333pt;}
.y90_c00189{bottom:911.613333pt;}
.y8f_c00189{bottom:912.386667pt;}
.y8a_c00189{bottom:914.693333pt;}
.y91_c00189{bottom:915.453333pt;}
.y8c_c00189{bottom:919.293333pt;}
.y80_c00189{bottom:924.666667pt;}
.y81_c00189{bottom:925.440000pt;}
.y87_c00189{bottom:926.213333pt;}
.y82_c00189{bottom:926.973333pt;}
.y89_c00189{bottom:929.280000pt;}
.y18f_c00189{bottom:930.053333pt;}
.y86_c00189{bottom:930.813333pt;}
.y88_c00189{bottom:931.586667pt;}
.y85_c00189{bottom:932.346667pt;}
.y84_c00189{bottom:934.653333pt;}
.y83_c00189{bottom:936.960000pt;}
.y77_c00189{bottom:941.573333pt;}
.y79_c00189{bottom:942.333333pt;}
.y7e_c00189{bottom:943.106667pt;}
.y7a_c00189{bottom:943.866667pt;}
.y78_c00189{bottom:944.640000pt;}
.y7d_c00189{bottom:945.413333pt;}
.y18e_c00189{bottom:946.173333pt;}
.y7b_c00189{bottom:946.946667pt;}
.y7c_c00189{bottom:947.706667pt;}
.y7f_c00189{bottom:949.253333pt;}
.y18d_c00189{bottom:953.093333pt;}
.y6b_c00189{bottom:956.933333pt;}
.y70_c00189{bottom:957.693333pt;}
.y6c_c00189{bottom:958.466667pt;}
.y6e_c00189{bottom:959.226667pt;}
.y75_c00189{bottom:960.000000pt;}
.y74_c00189{bottom:960.773333pt;}
.y6d_c00189{bottom:961.533333pt;}
.y6f_c00189{bottom:962.306667pt;}
.y71_c00189{bottom:963.066667pt;}
.y76_c00189{bottom:963.840000pt;}
.y73_c00189{bottom:964.613333pt;}
.y72_c00189{bottom:969.213333pt;}
.y64_c00189{bottom:973.826667pt;}
.y63_c00189{bottom:974.586667pt;}
.y68_c00189{bottom:975.360000pt;}
.y65_c00189{bottom:976.133333pt;}
.y6a_c00189{bottom:976.893333pt;}
.y69_c00189{bottom:979.200000pt;}
.y67_c00189{bottom:979.973333pt;}
.y66_c00189{bottom:985.346667pt;}
.y5c_c00189{bottom:988.413333pt;}
.y5d_c00189{bottom:989.186667pt;}
.y62_c00189{bottom:989.946667pt;}
.y5e_c00189{bottom:990.720000pt;}
.y5f_c00189{bottom:991.493333pt;}
.y5b_c00189{bottom:992.253333pt;}
.y60_c00189{bottom:993.026667pt;}
.y61_c00189{bottom:997.626667pt;}
.y54_c00189{bottom:1003.773333pt;}
.y55_c00189{bottom:1004.546667pt;}
.y57_c00189{bottom:1006.080000pt;}
.y58_c00189{bottom:1006.853333pt;}
.y56_c00189{bottom:1007.613333pt;}
.y5a_c00189{bottom:1009.146667pt;}
.y59_c00189{bottom:1009.920000pt;}
.y48_c00189{bottom:1017.600000pt;}
.y4e_c00189{bottom:1018.373333pt;}
.y4f_c00189{bottom:1019.133333pt;}
.y4c_c00189{bottom:1019.906667pt;}
.y4b_c00189{bottom:1020.666667pt;}
.y49_c00189{bottom:1021.440000pt;}
.y50_c00189{bottom:1022.213333pt;}
.y51_c00189{bottom:1022.973333pt;}
.y52_c00189{bottom:1023.746667pt;}
.y4a_c00189{bottom:1024.506667pt;}
.y4d_c00189{bottom:1025.280000pt;}
.y53_c00189{bottom:1035.266667pt;}
.y40_c00189{bottom:1036.026667pt;}
.y42_c00189{bottom:1036.800000pt;}
.y44_c00189{bottom:1037.573333pt;}
.y3f_c00189{bottom:1039.106667pt;}
.y41_c00189{bottom:1040.640000pt;}
.y45_c00189{bottom:1041.413333pt;}
.y46_c00189{bottom:1042.173333pt;}
.y3e_c00189{bottom:1046.013333pt;}
.y43_c00189{bottom:1048.320000pt;}
.y47_c00189{bottom:1049.853333pt;}
.y38_c00189{bottom:1051.386667pt;}
.y37_c00189{bottom:1052.160000pt;}
.y3c_c00189{bottom:1052.933333pt;}
.y39_c00189{bottom:1053.693333pt;}
.y3b_c00189{bottom:1054.466667pt;}
.y3a_c00189{bottom:1055.226667pt;}
.y3d_c00189{bottom:1059.066667pt;}
.y35_c00189{bottom:1068.293333pt;}
.y36_c00189{bottom:1069.053333pt;}
.y33_c00189{bottom:1070.586667pt;}
.y34_c00189{bottom:1071.360000pt;}
.y18c_c00189{bottom:1078.266667pt;}
.y2d_c00189{bottom:1082.106667pt;}
.y2f_c00189{bottom:1083.653333pt;}
.y32_c00189{bottom:1084.413333pt;}
.y30_c00189{bottom:1085.186667pt;}
.y2b_c00189{bottom:1085.946667pt;}
.y2c_c00189{bottom:1086.720000pt;}
.y31_c00189{bottom:1087.493333pt;}
.y2e_c00189{bottom:1095.173333pt;}
.y28_c00189{bottom:1098.240000pt;}
.y26_c00189{bottom:1099.773333pt;}
.y2a_c00189{bottom:1100.546667pt;}
.y22_c00189{bottom:1101.306667pt;}
.y23_c00189{bottom:1102.080000pt;}
.y24_c00189{bottom:1102.853333pt;}
.y27_c00189{bottom:1104.386667pt;}
.y29_c00189{bottom:1105.146667pt;}
.y18a_c00189{bottom:1107.453333pt;}
.y18b_c00189{bottom:1108.986667pt;}
.y25_c00189{bottom:1109.760000pt;}
.y1e_c00189{bottom:1113.600000pt;}
.y1c_c00189{bottom:1115.133333pt;}
.y1d_c00189{bottom:1115.906667pt;}
.y1a_c00189{bottom:1116.666667pt;}
.y19_c00189{bottom:1117.440000pt;}
.y1b_c00189{bottom:1118.213333pt;}
.y1f_c00189{bottom:1119.746667pt;}
.y21_c00189{bottom:1123.586667pt;}
.y20_c00189{bottom:1125.893333pt;}
.y189_c00189{bottom:1127.426667pt;}
.y17_c00189{bottom:1130.493333pt;}
.y16_c00189{bottom:1134.333333pt;}
.y18_c00189{bottom:1135.866667pt;}
.y15_c00189{bottom:1138.173333pt;}
.y182_c00189{bottom:1139.706667pt;}
.y183_c00189{bottom:1140.480000pt;}
.y13_c00189{bottom:1146.626667pt;}
.y184_c00189{bottom:1147.386667pt;}
.y14_c00189{bottom:1148.160000pt;}
.y11_c00189{bottom:1148.933333pt;}
.y12_c00189{bottom:1149.693333pt;}
.y181_c00189{bottom:1151.226667pt;}
.y185_c00189{bottom:1152.773333pt;}
.yd_c00189{bottom:1162.746667pt;}
.yf_c00189{bottom:1165.053333pt;}
.ye_c00189{bottom:1167.360000pt;}
.y188_c00189{bottom:1169.666667pt;}
.yc_c00189{bottom:1173.506667pt;}
.y10_c00189{bottom:1174.266667pt;}
.y9_c00189{bottom:1176.573333pt;}
.ya_c00189{bottom:1178.106667pt;}
.yb_c00189{bottom:1180.413333pt;}
.y8_c00189{bottom:1181.946667pt;}
.y6_c00189{bottom:1184.253333pt;}
.y7_c00189{bottom:1186.560000pt;}
.y5_c00189{bottom:1202.693333pt;}
.y187_c00189{bottom:1204.226667pt;}
.y186_c00189{bottom:1211.133333pt;}
.y2_c00189{bottom:1227.266667pt;}
.y3_c00189{bottom:1228.800000pt;}
.y1_c00189{bottom:1238.786667pt;}
.h9_c00189{height:2.764500pt;}
.h22_c00189{height:4.595833pt;}
.ha_c00189{height:4.799479pt;}
.h12_c00189{height:5.519401pt;}
.h4_c00189{height:8.303099pt;}
.he_c00189{height:11.038802pt;}
.h2_c00189{height:13.822500pt;}
.h3_c00189{height:16.606198pt;}
.h1e_c00189{height:19.341901pt;}
.hd_c00189{height:22.125599pt;}
.hc_c00189{height:24.861302pt;}
.h13_c00189{height:27.645000pt;}
.h1b_c00189{height:30.428698pt;}
.h19_c00189{height:33.164401pt;}
.h18_c00189{height:35.948099pt;}
.h15_c00189{height:38.683802pt;}
.h14_c00189{height:41.467500pt;}
.hb_c00189{height:44.251198pt;}
.h17_c00189{height:46.986901pt;}
.h10_c00189{height:49.770599pt;}
.hf_c00189{height:52.506302pt;}
.h11_c00189{height:55.290000pt;}
.h1a_c00189{height:58.073698pt;}
.h1d_c00189{height:60.809401pt;}
.h16_c00189{height:63.593099pt;}
.h1c_c00189{height:66.328802pt;}
.h1f_c00189{height:69.112500pt;}
.h6_c00189{height:71.896198pt;}
.h21_c00189{height:74.631901pt;}
.h20_c00189{height:77.415599pt;}
.h5_c00189{height:88.454401pt;}
.h8_c00189{height:116.099401pt;}
.h7_c00189{height:124.402500pt;}
.h1_c00189{height:1336.000000pt;}
.h0_c00189{height:1336.320000pt;}
.w0_c00189{width:969.213333pt;}
.w1_c00189{width:969.333333pt;}
.x0_c00189{left:0.000000pt;}
.x105_c00189{left:1.533333pt;}
.x106_c00189{left:5.373333pt;}
.x100_c00189{left:12.293333pt;}
.x107_c00189{left:19.973333pt;}
.x108_c00189{left:23.040000pt;}
.x101_c00189{left:29.946667pt;}
.x103_c00189{left:36.093333pt;}
.xf8_c00189{left:59.133333pt;}
.xf9_c00189{left:62.213333pt;}
.xfa_c00189{left:112.133333pt;}
.x102_c00189{left:126.720000pt;}
.xff_c00189{left:128.253333pt;}
.xfb_c00189{left:130.560000pt;}
.xfc_c00189{left:137.466667pt;}
.x4_c00189{left:143.613333pt;}
.x104_c00189{left:145.920000pt;}
.x8f_c00189{left:195.066667pt;}
.x95_c00189{left:199.680000pt;}
.xa7_c00189{left:201.213333pt;}
.xd8_c00189{left:203.520000pt;}
.x1_c00189{left:205.053333pt;}
.x63_c00189{left:207.360000pt;}
.xb1_c00189{left:208.893333pt;}
.x50_c00189{left:212.733333pt;}
.xd0_c00189{left:214.266667pt;}
.xed_c00189{left:215.813333pt;}
.x64_c00189{left:217.346667pt;}
.x70_c00189{left:218.880000pt;}
.xd6_c00189{left:220.413333pt;}
.x5_c00189{left:221.946667pt;}
.xa_c00189{left:224.253333pt;}
.x6_c00189{left:234.240000pt;}
.xb_c00189{left:236.546667pt;}
.x9a_c00189{left:238.853333pt;}
.xb2_c00189{left:240.386667pt;}
.xf4_c00189{left:243.453333pt;}
.xc1_c00189{left:244.986667pt;}
.xc7_c00189{left:251.133333pt;}
.xc2_c00189{left:253.440000pt;}
.xf7_c00189{left:254.973333pt;}
.xee_c00189{left:257.280000pt;}
.x65_c00189{left:259.586667pt;}
.x76_c00189{left:264.960000pt;}
.xd1_c00189{left:267.266667pt;}
.xef_c00189{left:268.800000pt;}
.xc_c00189{left:271.866987pt;}
.xd9_c00189{left:273.413333pt;}
.x9e_c00189{left:274.946667pt;}
.xf6_c00189{left:276.480000pt;}
.xbb_c00189{left:279.546667pt;}
.xbe_c00189{left:281.093333pt;}
.x5b_c00189{left:284.933333pt;}
.x71_c00189{left:286.466667pt;}
.x9f_c00189{left:288.000000pt;}
.x77_c00189{left:289.533333pt;}
.xdc_c00189{left:291.066667pt;}
.x66_c00189{left:294.146667pt;}
.xca_c00189{left:297.213333pt;}
.xb7_c00189{left:298.746667pt;}
.xab_c00189{left:300.293333pt;}
.xbc_c00189{left:302.586667pt;}
.x20_c00189{left:305.666667pt;}
.x51_c00189{left:307.200000pt;}
.x7a_c00189{left:308.733333pt;}
.x3c_c00189{left:310.266667pt;}
.x7_c00189{left:314.880000pt;}
.x9b_c00189{left:316.413333pt;}
.xf0_c00189{left:317.946667pt;}
.x67_c00189{left:319.493333pt;}
.xac_c00189{left:321.026667pt;}
.xdf_c00189{left:322.560000pt;}
.x21_c00189{left:325.626667pt;}
.xdd_c00189{left:327.933333pt;}
.xea_c00189{left:329.466667pt;}
.xa8_c00189{left:331.773333pt;}
.x45_c00189{left:334.080000pt;}
.x22_c00189{left:336.386667pt;}
.xd2_c00189{left:338.693333pt;}
.x90_c00189{left:340.986667pt;}
.x52_c00189{left:343.293333pt;}
.xe6_c00189{left:344.826667pt;}
.x23_c00189{left:347.133333pt;}
.x7b_c00189{left:348.666667pt;}
.xc3_c00189{left:350.213333pt;}
.x2e_c00189{left:351.746667pt;}
.x96_c00189{left:354.813333pt;}
.x8_c00189{left:356.346667pt;}
.x24_c00189{left:357.893333pt;}
.xe7_c00189{left:360.960000pt;}
.x5c_c00189{left:362.493333pt;}
.x7c_c00189{left:364.800000pt;}
.x46_c00189{left:368.640000pt;}
.x91_c00189{left:370.946667pt;}
.x3d_c00189{left:374.786667pt;}
.x25_c00189{left:376.320000pt;}
.x53_c00189{left:379.386667pt;}
.x2f_c00189{left:384.000000pt;}
.xf5_c00189{left:385.533333pt;}
.x49_c00189{left:387.066667pt;}
.x7d_c00189{left:388.613333pt;}
.x5d_c00189{left:393.213333pt;}
.x68_c00189{left:394.746667pt;}
.xa3_c00189{left:396.293333pt;}
.xc6_c00189{left:400.133333pt;}
.x89_c00189{left:401.666667pt;}
.xcb_c00189{left:403.973333pt;}
.x7e_c00189{left:407.040000pt;}
.xd3_c00189{left:408.573333pt;}
.x72_c00189{left:410.880000pt;}
.x54_c00189{left:412.413333pt;}
.xb8_c00189{left:413.946667pt;}
.x9c_c00189{left:418.560000pt;}
.xbf_c00189{left:420.866667pt;}
.x69_c00189{left:424.706667pt;}
.xa9_c00189{left:427.013333pt;}
.xa4_c00189{left:429.306667pt;}
.x26_c00189{left:430.853333pt;}
.x30_c00189{left:433.146667pt;}
.x47_c00189{left:434.693333pt;}
.xe4_c00189{left:436.986667pt;}
.x55_c00189{left:438.533333pt;}
.x92_c00189{left:440.066667pt;}
.xa5_c00189{left:441.600000pt;}
.x7f_c00189{left:443.133333pt;}
.x27_c00189{left:445.440000pt;}
.x78_c00189{left:446.973333pt;}
.x8a_c00189{left:449.280000pt;}
.x97_c00189{left:450.813333pt;}
.x6a_c00189{left:453.120000pt;}
.x73_c00189{left:454.653333pt;}
.x4a_c00189{left:456.186667pt;}
.x31_c00189{left:457.733333pt;}
.xb4_c00189{left:459.266667pt;}
.x28_c00189{left:461.573333pt;}
.x32_c00189{left:466.173333pt;}
.x80_c00189{left:471.546667pt;}
.xd4_c00189{left:480.773333pt;}
.xf_c00189{left:482.306667pt;}
.x56_c00189{left:483.840000pt;}
.xb9_c00189{left:486.146667pt;}
.x81_c00189{left:487.680000pt;}
.xf2_c00189{left:489.213333pt;}
.xc8_c00189{left:490.746667pt;}
.x3e_c00189{left:492.293333pt;}
.x33_c00189{left:494.586667pt;}
.x1c_c00189{left:496.893333pt;}
.xaa_c00189{left:498.426667pt;}
.x15_c00189{left:500.733333pt;}
.xbd_c00189{left:502.266667pt;}
.x10_c00189{left:504.573333pt;}
.x74_c00189{left:508.413333pt;}
.xda_c00189{left:510.720000pt;}
.x82_c00189{left:513.026667pt;}
.x6b_c00189{left:514.560000pt;}
.x4b_c00189{left:516.093333pt;}
.x11_c00189{left:529.146667pt;}
.x29_c00189{left:532.986667pt;}
.xcc_c00189{left:536.066667pt;}
.xe5_c00189{left:541.440000pt;}
.xeb_c00189{left:542.973333pt;}
.x83_c00189{left:545.280000pt;}
.x2a_c00189{left:546.813333pt;}
.xa6_c00189{left:549.120000pt;}
.x16_c00189{left:551.426667pt;}
.x6c_c00189{left:554.493333pt;}
.x5e_c00189{left:556.800000pt;}
.x84_c00189{left:559.106667pt;}
.xd_c00189{left:560.640000pt;}
.x57_c00189{left:562.173333pt;}
.x93_c00189{left:564.480000pt;}
.x34_c00189{left:567.546667pt;}
.xba_c00189{left:569.093333pt;}
.x4c_c00189{left:572.160000pt;}
.x1d_c00189{left:575.226667pt;}
.x6d_c00189{left:578.306667pt;}
.xc9_c00189{left:579.840000pt;}
.x35_c00189{left:581.373333pt;}
.x5f_c00189{left:584.453333pt;}
.x58_c00189{left:586.746667pt;}
.x12_c00189{left:588.293333pt;}
.x2b_c00189{left:590.586667pt;}
.x9_c00189{left:592.133333pt;}
.xa0_c00189{left:594.426667pt;}
.xcd_c00189{left:598.266667pt;}
.x4d_c00189{left:599.813333pt;}
.xb5_c00189{left:602.106667pt;}
.x85_c00189{left:605.946667pt;}
.x8b_c00189{left:607.493333pt;}
.x17_c00189{left:609.786667pt;}
.xad_c00189{left:612.093333pt;}
.x36_c00189{left:614.400000pt;}
.x6e_c00189{left:615.933333pt;}
.xce_c00189{left:617.466667pt;}
.xf1_c00189{left:619.013333pt;}
.xb6_c00189{left:620.546667pt;}
.xb3_c00189{left:622.853333pt;}
.x1e_c00189{left:626.693333pt;}
.x9d_c00189{left:628.226667pt;}
.xde_c00189{left:629.760000pt;}
.x75_c00189{left:631.293333pt;}
.x13_c00189{left:633.600000pt;}
.xe0_c00189{left:635.906667pt;}
.x37_c00189{left:637.440000pt;}
.x2c_c00189{left:638.973333pt;}
.x3f_c00189{left:641.280000pt;}
.x40_c00189{left:645.893333pt;}
.xe1_c00189{left:648.960000pt;}
.x8c_c00189{left:650.493333pt;}
.x94_c00189{left:653.573333pt;}
.xcf_c00189{left:655.106667pt;}
.x2d_c00189{left:658.173333pt;}
.xa1_c00189{left:660.480000pt;}
.x41_c00189{left:662.786667pt;}
.x6f_c00189{left:664.320000pt;}
.xae_c00189{left:665.853333pt;}
.xd7_c00189{left:668.159189pt;}
.x18_c00189{left:672.773333pt;}
.x14_c00189{left:674.306667pt;}
.x59_c00189{left:675.840000pt;}
.xc4_c00189{left:678.906667pt;}
.x42_c00189{left:681.213333pt;}
.x38_c00189{left:685.053333pt;}
.x60_c00189{left:687.360000pt;}
.xaf_c00189{left:689.666667pt;}
.x8d_c00189{left:691.973333pt;}
.x86_c00189{left:694.266667pt;}
.x43_c00189{left:695.813333pt;}
.xa2_c00189{left:699.653333pt;}
.x2_c00189{left:701.946667pt;}
.x19_c00189{left:705.026667pt;}
.x39_c00189{left:710.400000pt;}
.x3_c00189{left:712.706667pt;}
.x8e_c00189{left:715.773333pt;}
.x48_c00189{left:718.853333pt;}
.x98_c00189{left:724.226667pt;}
.x87_c00189{left:725.760000pt;}
.xe_c00189{left:728.066667pt;}
.x1f_c00189{left:732.666667pt;}
.x1a_c00189{left:734.213333pt;}
.x4e_c00189{left:736.506667pt;}
.x99_c00189{left:738.053333pt;}
.x44_c00189{left:739.586667pt;}
.x4f_c00189{left:741.893333pt;}
.xc0_c00189{left:744.186667pt;}
.xb0_c00189{left:745.733333pt;}
.x3a_c00189{left:748.026667pt;}
.x79_c00189{left:750.333333pt;}
.x61_c00189{left:752.640000pt;}
.xe2_c00189{left:754.173333pt;}
.x88_c00189{left:756.480000pt;}
.xdb_c00189{left:758.786667pt;}
.x3b_c00189{left:761.093333pt;}
.xe8_c00189{left:765.693333pt;}
.x1b_c00189{left:767.226667pt;}
.xf3_c00189{left:771.066667pt;}
.x5a_c00189{left:774.906667pt;}
.xe9_c00189{left:776.453333pt;}
.x62_c00189{left:778.746667pt;}
.xd5_c00189{left:780.293333pt;}
.xe3_c00189{left:784.133333pt;}
.xec_c00189{left:785.666667pt;}
.xc5_c00189{left:798.720000pt;}
.xfd_c00189{left:858.626667pt;}
.xfe_c00189{left:877.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6064e85d8ec44af54dff0949.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.109863;font-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_c00190{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1a7_c00190{transform:matrix(0.035975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035975,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00190{transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);}
.m19e_c00190{transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);}
.md4_c00190{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m1a8_c00190{transform:matrix(0.071250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071250,0.000000,0.000000,0.250000,0,0);}
.m18c_c00190{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m12a_c00190{transform:matrix(0.074800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074800,0.000000,0.000000,0.250000,0,0);}
.m59_c00190{transform:matrix(0.075725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075725,0.000000,0.000000,0.250000,0,0);}
.m57_c00190{transform:matrix(0.090575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090575,0.000000,0.000000,0.250000,0,0);}
.m1ac_c00190{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.m183_c00190{transform:matrix(0.098875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098875,0.000000,0.000000,0.250000,0,0);}
.m58_c00190{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);}
.m2_c00190{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m15e_c00190{transform:matrix(0.100875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100875,0.000000,0.000000,0.250000,0,0);}
.m195_c00190{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m170_c00190{transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);}
.m197_c00190{transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);}
.m2a_c00190{transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);}
.m5c_c00190{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m7d_c00190{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.m79_c00190{transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);}
.m1aa_c00190{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m191_c00190{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00190{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.mc6_c00190{transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);}
.m17a_c00190{transform:matrix(0.117350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117350,0.000000,0.000000,0.250000,0,0);}
.meb_c00190{transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);}
.m182_c00190{transform:matrix(0.120475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120475,0.000000,0.000000,0.250000,0,0);}
.m15b_c00190{transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);}
.md2_c00190{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.md8_c00190{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.mcf_c00190{transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);}
.mab_c00190{transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);}
.m19c_c00190{transform:matrix(0.126875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126875,0.000000,0.000000,0.250000,0,0);}
.m126_c00190{transform:matrix(0.127150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127150,0.000000,0.000000,0.250000,0,0);}
.m115_c00190{transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);}
.m18a_c00190{transform:matrix(0.131050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131050,0.000000,0.000000,0.250000,0,0);}
.m9e_c00190{transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);}
.md3_c00190{transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);}
.m86_c00190{transform:matrix(0.132050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132050,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00190{transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);}
.mec_c00190{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.m11_c00190{transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);}
.m74_c00190{transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);}
.m76_c00190{transform:matrix(0.134775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134775,0.000000,0.000000,0.250000,0,0);}
.m16d_c00190{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);}
.m16b_c00190{transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);}
.m172_c00190{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);}
.m171_c00190{transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);}
.m18d_c00190{transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);}
.mfa_c00190{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m15_c00190{transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);}
.m173_c00190{transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);}
.m19a_c00190{transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);}
.m12b_c00190{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.ma7_c00190{transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);}
.m16c_c00190{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m1_c00190{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m181_c00190{transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00190{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);}
.md9_c00190{transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);}
.m111_c00190{transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);}
.m12_c00190{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);}
.m188_c00190{transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);}
.m18e_c00190{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m19b_c00190{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);}
.m7_c00190{transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);}
.m12e_c00190{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m14a_c00190{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);}
.m5a_c00190{transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);}
.m180_c00190{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.m3c_c00190{transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);}
.m127_c00190{transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);}
.m1b_c00190{transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);}
.ma2_c00190{transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);}
.m10b_c00190{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);}
.m185_c00190{transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);}
.m13b_c00190{transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);}
.m1f_c00190{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m16f_c00190{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.m148_c00190{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.m15d_c00190{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);}
.mba_c00190{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m1a2_c00190{transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);}
.mdd_c00190{transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);}
.m17f_c00190{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.m135_c00190{transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);}
.m10d_c00190{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.m149_c00190{transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);}
.mc7_c00190{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.ma8_c00190{transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);}
.m179_c00190{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.m17b_c00190{transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);}
.m7e_c00190{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.m12d_c00190{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m3e_c00190{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.ma9_c00190{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m66_c00190{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);}
.mdb_c00190{transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);}
.m109_c00190{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m99_c00190{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);}
.m5b_c00190{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.m5f_c00190{transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);}
.m4b_c00190{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m167_c00190{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);}
.m30_c00190{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.mb8_c00190{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);}
.m118_c00190{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);}
.m138_c00190{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.me0_c00190{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.md1_c00190{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.mda_c00190{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m198_c00190{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);}
.m10a_c00190{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m192_c00190{transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);}
.m18b_c00190{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m8a_c00190{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mfe_c00190{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m14b_c00190{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m144_c00190{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);}
.m20_c00190{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m184_c00190{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m154_c00190{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);}
.m9b_c00190{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);}
.m7b_c00190{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.m163_c00190{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.mee_c00190{transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);}
.m73_c00190{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);}
.m8f_c00190{transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);}
.m169_c00190{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);}
.me1_c00190{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.m105_c00190{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m35_c00190{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.m67_c00190{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m146_c00190{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.mb3_c00190{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.mac_c00190{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);}
.mf6_c00190{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.m4a_c00190{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);}
.ma4_c00190{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m139_c00190{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);}
.mca_c00190{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m12f_c00190{transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);}
.ma0_c00190{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m151_c00190{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m94_c00190{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m11e_c00190{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m143_c00190{transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);}
.m78_c00190{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);}
.m177_c00190{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);}
.m3d_c00190{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.m91_c00190{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.m62_c00190{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.m12c_c00190{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);}
.m160_c00190{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.me9_c00190{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m15f_c00190{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m124_c00190{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m122_c00190{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m15c_c00190{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.m190_c00190{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.mf0_c00190{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);}
.me2_c00190{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m64_c00190{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);}
.m38_c00190{transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);}
.m98_c00190{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m100_c00190{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m9d_c00190{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m187_c00190{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);}
.m87_c00190{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.mde_c00190{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m2f_c00190{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);}
.m46_c00190{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);}
.m52_c00190{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);}
.m159_c00190{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.m7f_c00190{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);}
.m17e_c00190{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);}
.m194_c00190{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);}
.m9_c00190{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.m117_c00190{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.mf1_c00190{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);}
.m13a_c00190{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.m23_c00190{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m8_c00190{transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);}
.m19_c00190{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.m9c_c00190{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m95_c00190{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);}
.m147_c00190{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.me7_c00190{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m7c_c00190{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);}
.m4e_c00190{transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);}
.m14f_c00190{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);}
.m2e_c00190{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);}
.m142_c00190{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);}
.mff_c00190{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m114_c00190{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m106_c00190{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);}
.m18f_c00190{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);}
.mef_c00190{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);}
.m189_c00190{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.mf7_c00190{transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);}
.me3_c00190{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);}
.m1a9_c00190{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);}
.mf2_c00190{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);}
.m108_c00190{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);}
.mb6_c00190{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.m133_c00190{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);}
.m129_c00190{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.m116_c00190{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m6d_c00190{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);}
.m125_c00190{transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);}
.m137_c00190{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);}
.maa_c00190{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);}
.mbd_c00190{transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);}
.m81_c00190{transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);}
.mbf_c00190{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);}
.m130_c00190{transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);}
.m55_c00190{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);}
.m3f_c00190{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m89_c00190{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);}
.m6c_c00190{transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);}
.ma3_c00190{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m155_c00190{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);}
.m53_c00190{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);}
.m85_c00190{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m110_c00190{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.m158_c00190{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.m132_c00190{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.m193_c00190{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);}
.mbe_c00190{transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);}
.m17d_c00190{transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);}
.mf9_c00190{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.me5_c00190{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.m157_c00190{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);}
.m48_c00190{transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);}
.m8b_c00190{transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);}
.m75_c00190{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mb1_c00190{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m51_c00190{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);}
.m4d_c00190{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);}
.m5d_c00190{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);}
.m123_c00190{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);}
.m80_c00190{transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);}
.m168_c00190{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);}
.m131_c00190{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.m15a_c00190{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.m11b_c00190{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m5e_c00190{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m92_c00190{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);}
.m9f_c00190{transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);}
.md6_c00190{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m102_c00190{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);}
.m60_c00190{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);}
.m11a_c00190{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);}
.m93_c00190{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);}
.md_c00190{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);}
.m14d_c00190{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);}
.m162_c00190{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.m63_c00190{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.m11f_c00190{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);}
.md0_c00190{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.mb5_c00190{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.m16e_c00190{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m32_c00190{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);}
.m84_c00190{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);}
.mf5_c00190{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.m178_c00190{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m70_c00190{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.m103_c00190{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m82_c00190{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);}
.m44_c00190{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);}
.m175_c00190{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);}
.m165_c00190{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);}
.m72_c00190{transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);}
.m166_c00190{transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);}
.m1ab_c00190{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);}
.m10f_c00190{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);}
.m112_c00190{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m16a_c00190{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.m140_c00190{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m11c_c00190{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);}
.m107_c00190{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);}
.m161_c00190{transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);}
.md7_c00190{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m121_c00190{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);}
.m134_c00190{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);}
.m156_c00190{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m6e_c00190{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);}
.md5_c00190{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);}
.m4_c00190{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.m199_c00190{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);}
.m176_c00190{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);}
.m14c_c00190{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);}
.m41_c00190{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m141_c00190{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);}
.m153_c00190{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.mfb_c00190{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.mfd_c00190{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.ma1_c00190{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);}
.m37_c00190{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);}
.m136_c00190{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);}
.m21_c00190{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);}
.m10c_c00190{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.m40_c00190{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m69_c00190{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);}
.mb7_c00190{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.mae_c00190{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.mdf_c00190{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);}
.m17c_c00190{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m34_c00190{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);}
.mcd_c00190{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);}
.m13e_c00190{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);}
.m14e_c00190{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m50_c00190{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);}
.mea_c00190{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m77_c00190{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);}
.m13f_c00190{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10_c00190{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);}
.m71_c00190{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);}
.m2b_c00190{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);}
.m3a_c00190{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);}
.m6b_c00190{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m13_c00190{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m49_c00190{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m39_c00190{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);}
.m3b_c00190{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m27_c00190{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);}
.mfc_c00190{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);}
.m16_c00190{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m145_c00190{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);}
.m6_c00190{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m42_c00190{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m43_c00190{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);}
.m31_c00190{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c00190{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);}
.m61_c00190{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);}
.m2c_c00190{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00190{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m28_c00190{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);}
.m17_c00190{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m36_c00190{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m90_c00190{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);}
.m4f_c00190{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00190{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c00190{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mce_c00190{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m26_c00190{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf8_c00190{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00190{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m113_c00190{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m18_c00190{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);}
.m33_c00190{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00190{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb2_c00190{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m56_c00190{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m83_c00190{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);}
.m164_c00190{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);}
.m10e_c00190{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00190{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);}
.me6_c00190{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m120_c00190{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c00190{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00190{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);}
.m186_c00190{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m128_c00190{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);}
.m88_c00190{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mc1_c00190{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);}
.mf4_c00190{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00190{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00190{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00190{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mf_c00190{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);}
.ma6_c00190{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);}
.m8e_c00190{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m104_c00190{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);}
.m11d_c00190{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m54_c00190{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m47_c00190{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00190{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.maf_c00190{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00190{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);}
.mb_c00190{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m68_c00190{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m174_c00190{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m96_c00190{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00190{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00190{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m14_c00190{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00190{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m150_c00190{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00190{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);}
.mcc_c00190{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m119_c00190{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mc8_c00190{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);}
.mf3_c00190{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);}
.mdc_c00190{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m13d_c00190{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m24_c00190{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.mc5_c00190{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.mb9_c00190{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m5_c00190{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00190{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00190{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m101_c00190{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00190{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00190{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.me8_c00190{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00190{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);}
.mc9_c00190{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m3_c00190{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00190{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m22_c00190{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);}
.mbb_c00190{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.mad_c00190{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00190{transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);}
.m65_c00190{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.me_c00190{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.mc3_c00190{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m0_c00190{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m19d_c00190{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.med_c00190{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m45_c00190{transform:matrix(1.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.135000,0.000000,0.000000,0.250000,0,0);}
.m97_c00190{transform:matrix(1.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.185000,0.000000,0.000000,0.250000,0,0);}
.m196_c00190{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.m19f_c00190{transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);}
.mc2_c00190{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.me4_c00190{transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);}
.m152_c00190{transform:matrix(4.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.607500,0.000000,0.000000,0.250000,0,0);}
.v1_c00190{vertical-align:-3.480000px;}
.v0_c00190{vertical-align:0.000000px;}
.v2_c00190{vertical-align:3.480000px;}
.ls4_c00190{letter-spacing:0.000000px;}
.ls3_c00190{letter-spacing:10.380000px;}
.ls1_c00190{letter-spacing:62.219400px;}
.ls2_c00190{letter-spacing:119.042688px;}
.ls0_c00190{letter-spacing:135.900000px;}
.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;}
.fc0_c00190{color:transparent;}
.fsa_c00190{font-size:3.456000px;}
.fs18_c00190{font-size:6.000000px;}
.fs6_c00190{font-size:6.900000px;}
.fsb_c00190{font-size:10.380000px;}
.fs5_c00190{font-size:13.800000px;}
.fs0_c00190{font-size:17.280000px;}
.fs1_c00190{font-size:20.760000px;}
.fs3_c00190{font-size:24.180000px;}
.fs10_c00190{font-size:27.660000px;}
.fs2_c00190{font-size:31.080000px;}
.fs12_c00190{font-size:34.560000px;}
.fse_c00190{font-size:38.040000px;}
.fs14_c00190{font-size:41.460000px;}
.fs9_c00190{font-size:44.940000px;}
.fs15_c00190{font-size:48.360000px;}
.fs4_c00190{font-size:51.840000px;}
.fsc_c00190{font-size:55.320000px;}
.fs17_c00190{font-size:58.740000px;}
.fs16_c00190{font-size:62.220000px;}
.fs13_c00190{font-size:65.640000px;}
.fs8_c00190{font-size:69.120000px;}
.fs19_c00190{font-size:72.600000px;}
.fs1a_c00190{font-size:76.020000px;}
.fsf_c00190{font-size:79.500000px;}
.fsd_c00190{font-size:82.920000px;}
.fs7_c00190{font-size:86.400000px;}
.fs1d_c00190{font-size:89.880000px;}
.fs1c_c00190{font-size:96.780000px;}
.fs1b_c00190{font-size:100.200000px;}
.fs11_c00190{font-size:107.160000px;}
.fs1f_c00190{font-size:120.960000px;}
.fs1e_c00190{font-size:124.440000px;}
.fs20_c00190{font-size:131.340000px;}
.y0_c00190{bottom:0.000000px;}
.y20b_c00190{bottom:223.770000px;}
.y213_c00190{bottom:230.685000px;}
.y20c_c00190{bottom:231.555000px;}
.y20e_c00190{bottom:238.470000px;}
.y210_c00190{bottom:240.195000px;}
.y20f_c00190{bottom:241.050000px;}
.y212_c00190{bottom:243.645000px;}
.y211_c00190{bottom:244.515000px;}
.y20d_c00190{bottom:247.110000px;}
.y20a_c00190{bottom:250.560000px;}
.y203_c00190{bottom:254.010000px;}
.y205_c00190{bottom:254.880000px;}
.y204_c00190{bottom:256.605000px;}
.y209_c00190{bottom:257.475000px;}
.y206_c00190{bottom:258.330000px;}
.y208_c00190{bottom:260.070000px;}
.y202_c00190{bottom:260.925000px;}
.y207_c00190{bottom:261.795000px;}
.y200_c00190{bottom:264.390000px;}
.y201_c00190{bottom:265.245000px;}
.y1ff_c00190{bottom:266.115000px;}
.y1fe_c00190{bottom:273.885000px;}
.y1fb_c00190{bottom:287.715000px;}
.y1fd_c00190{bottom:289.440000px;}
.y1fc_c00190{bottom:291.165000px;}
.y1fa_c00190{bottom:299.805000px;}
.y1f3_c00190{bottom:300.675000px;}
.y1f2_c00190{bottom:301.530000px;}
.y1f1_c00190{bottom:302.400000px;}
.y1f4_c00190{bottom:303.270000px;}
.y1f9_c00190{bottom:304.995000px;}
.y1f6_c00190{bottom:307.590000px;}
.y1f5_c00190{bottom:311.910000px;}
.y1f7_c00190{bottom:314.490000px;}
.y1f8_c00190{bottom:315.360000px;}
.y1ec_c00190{bottom:317.085000px;}
.y1ef_c00190{bottom:317.955000px;}
.y1eb_c00190{bottom:318.810000px;}
.y1ee_c00190{bottom:319.680000px;}
.y1ed_c00190{bottom:323.130000px;}
.y1f0_c00190{bottom:325.725000px;}
.y1ea_c00190{bottom:335.235000px;}
.y1e7_c00190{bottom:336.090000px;}
.y1e9_c00190{bottom:336.960000px;}
.y1e8_c00190{bottom:342.150000px;}
.y1e4_c00190{bottom:351.645000px;}
.y1e1_c00190{bottom:352.515000px;}
.y1e6_c00190{bottom:354.240000px;}
.y1e2_c00190{bottom:355.965000px;}
.y1e0_c00190{bottom:358.560000px;}
.y1e5_c00190{bottom:359.430000px;}
.y1e3_c00190{bottom:360.285000px;}
.y1d9_c00190{bottom:370.650000px;}
.y1db_c00190{bottom:371.520000px;}
.y1de_c00190{bottom:373.245000px;}
.y1dd_c00190{bottom:374.115000px;}
.y1df_c00190{bottom:375.840000px;}
.y1da_c00190{bottom:383.610000px;}
.y1dc_c00190{bottom:389.670000px;}
.y1d4_c00190{bottom:390.525000px;}
.y1d5_c00190{bottom:391.395000px;}
.y1d6_c00190{bottom:392.250000px;}
.y1d7_c00190{bottom:394.845000px;}
.y1d8_c00190{bottom:395.715000px;}
.y1d3_c00190{bottom:398.310000px;}
.y1d2_c00190{bottom:400.035000px;}
.y1cf_c00190{bottom:408.675000px;}
.y1cc_c00190{bottom:409.530000px;}
.y1d1_c00190{bottom:410.400000px;}
.y1d0_c00190{bottom:411.270000px;}
.y1ce_c00190{bottom:412.995000px;}
.y1cd_c00190{bottom:413.850000px;}
.y1ca_c00190{bottom:421.635000px;}
.y1c9_c00190{bottom:422.490000px;}
.y1cb_c00190{bottom:423.360000px;}
.y1c6_c00190{bottom:424.230000px;}
.y1c5_c00190{bottom:425.085000px;}
.y1c7_c00190{bottom:425.955000px;}
.y1c8_c00190{bottom:426.810000px;}
.y1c2_c00190{bottom:443.235000px;}
.y1c3_c00190{bottom:444.960000px;}
.y1c1_c00190{bottom:445.830000px;}
.y1c4_c00190{bottom:448.410000px;}
.y1ba_c00190{bottom:459.645000px;}
.y1bb_c00190{bottom:461.370000px;}
.y1bc_c00190{bottom:462.240000px;}
.y1c0_c00190{bottom:463.110000px;}
.y1be_c00190{bottom:465.690000px;}
.y1bd_c00190{bottom:466.560000px;}
.y1bf_c00190{bottom:467.430000px;}
.y1b1_c00190{bottom:476.925000px;}
.y1b5_c00190{bottom:477.795000px;}
.y1b3_c00190{bottom:478.650000px;}
.y1b4_c00190{bottom:479.520000px;}
.y1b9_c00190{bottom:480.390000px;}
.y1b7_c00190{bottom:481.245000px;}
.y1b2_c00190{bottom:482.970000px;}
.y1b6_c00190{bottom:484.710000px;}
.y1b8_c00190{bottom:485.565000px;}
.y1ad_c00190{bottom:496.800000px;}
.y1aa_c00190{bottom:497.670000px;}
.y1a9_c00190{bottom:498.525000px;}
.y1af_c00190{bottom:499.395000px;}
.y1ac_c00190{bottom:501.120000px;}
.y1ab_c00190{bottom:501.990000px;}
.y1b0_c00190{bottom:503.715000px;}
.y1ae_c00190{bottom:507.165000px;}
.y1a8_c00190{bottom:508.890000px;}
.y1a0_c00190{bottom:514.080000px;}
.y1a1_c00190{bottom:514.950000px;}
.y19f_c00190{bottom:515.805000px;}
.y1a4_c00190{bottom:516.675000px;}
.y1a2_c00190{bottom:519.270000px;}
.y1a3_c00190{bottom:520.995000px;}
.y1a7_c00190{bottom:521.850000px;}
.y1a5_c00190{bottom:522.720000px;}
.y1a6_c00190{bottom:528.765000px;}
.y197_c00190{bottom:531.360000px;}
.y198_c00190{bottom:532.230000px;}
.y19b_c00190{bottom:533.085000px;}
.y19d_c00190{bottom:533.955000px;}
.y19a_c00190{bottom:534.810000px;}
.y199_c00190{bottom:537.405000px;}
.y19c_c00190{bottom:538.275000px;}
.y19e_c00190{bottom:540.000000px;}
.y190_c00190{bottom:551.235000px;}
.y194_c00190{bottom:552.090000px;}
.y18f_c00190{bottom:552.960000px;}
.y195_c00190{bottom:553.830000px;}
.y191_c00190{bottom:554.685000px;}
.y193_c00190{bottom:556.410000px;}
.y196_c00190{bottom:557.280000px;}
.y192_c00190{bottom:560.730000px;}
.y18d_c00190{bottom:571.110000px;}
.y18b_c00190{bottom:571.965000px;}
.y189_c00190{bottom:572.835000px;}
.y18c_c00190{bottom:574.560000px;}
.y18e_c00190{bottom:575.430000px;}
.y218_c00190{bottom:579.750000px;}
.y18a_c00190{bottom:581.475000px;}
.y219_c00190{bottom:582.330000px;}
.y185_c00190{bottom:591.840000px;}
.y188_c00190{bottom:592.710000px;}
.y187_c00190{bottom:593.565000px;}
.y184_c00190{bottom:597.030000px;}
.y186_c00190{bottom:598.755000px;}
.y180_c00190{bottom:608.250000px;}
.y181_c00190{bottom:609.120000px;}
.y183_c00190{bottom:610.845000px;}
.y17e_c00190{bottom:613.440000px;}
.y17f_c00190{bottom:614.310000px;}
.y177_c00190{bottom:617.760000px;}
.y182_c00190{bottom:619.485000px;}
.y175_c00190{bottom:620.355000px;}
.y176_c00190{bottom:621.210000px;}
.y17c_c00190{bottom:622.080000px;}
.y17a_c00190{bottom:623.805000px;}
.y17d_c00190{bottom:624.675000px;}
.y174_c00190{bottom:625.530000px;}
.y178_c00190{bottom:626.400000px;}
.y179_c00190{bottom:627.270000px;}
.y17b_c00190{bottom:635.040000px;}
.y16b_c00190{bottom:639.360000px;}
.y171_c00190{bottom:640.230000px;}
.y170_c00190{bottom:641.085000px;}
.y16d_c00190{bottom:642.810000px;}
.y172_c00190{bottom:643.680000px;}
.y173_c00190{bottom:645.405000px;}
.y16e_c00190{bottom:646.275000px;}
.y16f_c00190{bottom:648.870000px;}
.y16c_c00190{bottom:650.595000px;}
.y165_c00190{bottom:653.190000px;}
.y168_c00190{bottom:654.915000px;}
.y167_c00190{bottom:655.770000px;}
.y16a_c00190{bottom:656.640000px;}
.y164_c00190{bottom:657.510000px;}
.y161_c00190{bottom:660.090000px;}
.y160_c00190{bottom:660.960000px;}
.y166_c00190{bottom:661.830000px;}
.y163_c00190{bottom:664.410000px;}
.y15f_c00190{bottom:667.005000px;}
.y162_c00190{bottom:668.730000px;}
.y169_c00190{bottom:674.790000px;}
.y15b_c00190{bottom:675.645000px;}
.y158_c00190{bottom:676.515000px;}
.y156_c00190{bottom:678.240000px;}
.y157_c00190{bottom:679.110000px;}
.y15a_c00190{bottom:679.965000px;}
.y159_c00190{bottom:680.835000px;}
.y15c_c00190{bottom:681.690000px;}
.y15d_c00190{bottom:685.155000px;}
.y15e_c00190{bottom:687.750000px;}
.y151_c00190{bottom:692.925000px;}
.y155_c00190{bottom:694.650000px;}
.y152_c00190{bottom:695.520000px;}
.y154_c00190{bottom:696.390000px;}
.y153_c00190{bottom:705.030000px;}
.y14e_c00190{bottom:707.610000px;}
.y14f_c00190{bottom:708.480000px;}
.y14d_c00190{bottom:711.075000px;}
.y150_c00190{bottom:711.930000px;}
.y14c_c00190{bottom:712.800000px;}
.y146_c00190{bottom:729.210000px;}
.y14a_c00190{bottom:730.080000px;}
.y149_c00190{bottom:730.950000px;}
.y14b_c00190{bottom:731.805000px;}
.y147_c00190{bottom:733.530000px;}
.y148_c00190{bottom:741.315000px;}
.y13f_c00190{bottom:742.170000px;}
.y13e_c00190{bottom:743.040000px;}
.y144_c00190{bottom:745.635000px;}
.y141_c00190{bottom:746.490000px;}
.y140_c00190{bottom:747.360000px;}
.y143_c00190{bottom:748.230000px;}
.y145_c00190{bottom:749.955000px;}
.y142_c00190{bottom:754.275000px;}
.y139_c00190{bottom:760.320000px;}
.y13a_c00190{bottom:761.190000px;}
.y137_c00190{bottom:762.045000px;}
.y13b_c00190{bottom:762.915000px;}
.y13c_c00190{bottom:763.770000px;}
.y138_c00190{bottom:764.640000px;}
.y13d_c00190{bottom:765.510000px;}
.y131_c00190{bottom:778.470000px;}
.y134_c00190{bottom:779.325000px;}
.y132_c00190{bottom:780.195000px;}
.y133_c00190{bottom:782.790000px;}
.y135_c00190{bottom:783.645000px;}
.y136_c00190{bottom:785.370000px;}
.y12a_c00190{bottom:794.880000px;}
.y12b_c00190{bottom:796.605000px;}
.y12e_c00190{bottom:797.475000px;}
.y129_c00190{bottom:799.200000px;}
.y12f_c00190{bottom:800.070000px;}
.y12c_c00190{bottom:805.245000px;}
.y12d_c00190{bottom:806.115000px;}
.y130_c00190{bottom:809.565000px;}
.y123_c00190{bottom:813.885000px;}
.y128_c00190{bottom:814.755000px;}
.y126_c00190{bottom:815.610000px;}
.y124_c00190{bottom:816.480000px;}
.y127_c00190{bottom:818.205000px;}
.y122_c00190{bottom:820.800000px;}
.y125_c00190{bottom:828.570000px;}
.y117_c00190{bottom:829.440000px;}
.y118_c00190{bottom:830.310000px;}
.y11c_c00190{bottom:832.035000px;}
.y121_c00190{bottom:833.760000px;}
.y119_c00190{bottom:834.630000px;}
.y11d_c00190{bottom:835.485000px;}
.y11b_c00190{bottom:836.355000px;}
.y11e_c00190{bottom:837.210000px;}
.y11a_c00190{bottom:841.530000px;}
.y11f_c00190{bottom:842.400000px;}
.y120_c00190{bottom:843.270000px;}
.y10e_c00190{bottom:845.850000px;}
.y113_c00190{bottom:847.590000px;}
.y114_c00190{bottom:848.445000px;}
.y10d_c00190{bottom:849.315000px;}
.y112_c00190{bottom:850.170000px;}
.y110_c00190{bottom:851.910000px;}
.y111_c00190{bottom:853.635000px;}
.y115_c00190{bottom:854.490000px;}
.y116_c00190{bottom:856.230000px;}
.y10f_c00190{bottom:857.085000px;}
.y10a_c00190{bottom:863.130000px;}
.y102_c00190{bottom:864.870000px;}
.y105_c00190{bottom:865.725000px;}
.y103_c00190{bottom:866.595000px;}
.y108_c00190{bottom:868.320000px;}
.y104_c00190{bottom:869.190000px;}
.y10c_c00190{bottom:870.915000px;}
.y100_c00190{bottom:871.770000px;}
.y107_c00190{bottom:874.365000px;}
.y101_c00190{bottom:875.235000px;}
.y10b_c00190{bottom:877.830000px;}
.y109_c00190{bottom:878.685000px;}
.y106_c00190{bottom:881.280000px;}
.yfd_c00190{bottom:883.005000px;}
.yf3_c00190{bottom:884.730000px;}
.yf9_c00190{bottom:885.600000px;}
.yff_c00190{bottom:886.470000px;}
.yfb_c00190{bottom:887.325000px;}
.yfc_c00190{bottom:888.195000px;}
.yfa_c00190{bottom:889.920000px;}
.yfe_c00190{bottom:899.430000px;}
.yf6_c00190{bottom:903.750000px;}
.yf4_c00190{bottom:904.605000px;}
.yf5_c00190{bottom:905.475000px;}
.yf8_c00190{bottom:907.200000px;}
.yf7_c00190{bottom:917.565000px;}
.yf0_c00190{bottom:918.435000px;}
.yec_c00190{bottom:919.290000px;}
.yef_c00190{bottom:921.030000px;}
.yea_c00190{bottom:923.610000px;}
.yeb_c00190{bottom:924.480000px;}
.yed_c00190{bottom:927.075000px;}
.yf1_c00190{bottom:931.395000px;}
.yee_c00190{bottom:934.845000px;}
.yf2_c00190{bottom:935.715000px;}
.ye7_c00190{bottom:938.310000px;}
.ye8_c00190{bottom:939.165000px;}
.ye6_c00190{bottom:940.035000px;}
.ydf_c00190{bottom:940.890000px;}
.ye4_c00190{bottom:943.485000px;}
.ye5_c00190{bottom:947.805000px;}
.ye9_c00190{bottom:949.530000px;}
.ydb_c00190{bottom:951.270000px;}
.ydc_c00190{bottom:952.995000px;}
.yde_c00190{bottom:956.445000px;}
.ye2_c00190{bottom:957.315000px;}
.ye0_c00190{bottom:958.170000px;}
.ye1_c00190{bottom:959.040000px;}
.ydd_c00190{bottom:959.910000px;}
.ye3_c00190{bottom:961.635000px;}
.yda_c00190{bottom:962.490000px;}
.yd1_c00190{bottom:972.000000px;}
.yd3_c00190{bottom:972.870000px;}
.yd0_c00190{bottom:974.595000px;}
.yd9_c00190{bottom:976.320000px;}
.yd2_c00190{bottom:978.045000px;}
.yd8_c00190{bottom:982.365000px;}
.yd6_c00190{bottom:983.235000px;}
.yd5_c00190{bottom:984.090000px;}
.yd7_c00190{bottom:987.555000px;}
.yd4_c00190{bottom:989.280000px;}
.yca_c00190{bottom:991.005000px;}
.yc7_c00190{bottom:992.730000px;}
.yc8_c00190{bottom:994.470000px;}
.yc9_c00190{bottom:995.325000px;}
.yce_c00190{bottom:1000.515000px;}
.ycb_c00190{bottom:1001.370000px;}
.ycd_c00190{bottom:1002.240000px;}
.ycc_c00190{bottom:1003.110000px;}
.ycf_c00190{bottom:1005.690000px;}
.yc2_c00190{bottom:1007.430000px;}
.yc5_c00190{bottom:1008.285000px;}
.yc4_c00190{bottom:1011.750000px;}
.yc3_c00190{bottom:1012.605000px;}
.yc6_c00190{bottom:1018.650000px;}
.yba_c00190{bottom:1024.710000px;}
.yc1_c00190{bottom:1025.565000px;}
.ybb_c00190{bottom:1026.435000px;}
.yb9_c00190{bottom:1029.030000px;}
.yc0_c00190{bottom:1029.885000px;}
.ybe_c00190{bottom:1030.755000px;}
.ybf_c00190{bottom:1031.610000px;}
.ybd_c00190{bottom:1033.350000px;}
.ybc_c00190{bottom:1037.670000px;}
.yb1_c00190{bottom:1041.990000px;}
.yae_c00190{bottom:1042.845000px;}
.yb7_c00190{bottom:1043.715000px;}
.yb0_c00190{bottom:1045.440000px;}
.yaf_c00190{bottom:1047.165000px;}
.yb2_c00190{bottom:1048.035000px;}
.yb5_c00190{bottom:1048.890000px;}
.yb8_c00190{bottom:1049.760000px;}
.yb4_c00190{bottom:1050.630000px;}
.yb6_c00190{bottom:1051.485000px;}
.yb3_c00190{bottom:1054.950000px;}
.ya5_c00190{bottom:1060.125000px;}
.ya6_c00190{bottom:1060.995000px;}
.ya7_c00190{bottom:1062.720000px;}
.yac_c00190{bottom:1064.445000px;}
.ya8_c00190{bottom:1065.315000px;}
.yaa_c00190{bottom:1067.040000px;}
.yad_c00190{bottom:1067.910000px;}
.yab_c00190{bottom:1069.635000px;}
.ya9_c00190{bottom:1070.490000px;}
.ya2_c00190{bottom:1076.550000px;}
.y9c_c00190{bottom:1078.275000px;}
.y9e_c00190{bottom:1079.130000px;}
.y9f_c00190{bottom:1080.000000px;}
.ya4_c00190{bottom:1080.870000px;}
.y9d_c00190{bottom:1082.595000px;}
.ya3_c00190{bottom:1083.450000px;}
.ya0_c00190{bottom:1086.915000px;}
.ya1_c00190{bottom:1089.510000px;}
.y94_c00190{bottom:1094.685000px;}
.y95_c00190{bottom:1096.410000px;}
.y98_c00190{bottom:1097.280000px;}
.y99_c00190{bottom:1098.150000px;}
.y93_c00190{bottom:1099.005000px;}
.y97_c00190{bottom:1099.875000px;}
.y96_c00190{bottom:1101.600000px;}
.y9b_c00190{bottom:1102.470000px;}
.y9a_c00190{bottom:1105.050000px;}
.y8f_c00190{bottom:1112.835000px;}
.y8e_c00190{bottom:1113.690000px;}
.y91_c00190{bottom:1114.560000px;}
.y90_c00190{bottom:1117.155000px;}
.y92_c00190{bottom:1118.010000px;}
.y88_c00190{bottom:1130.970000px;}
.y89_c00190{bottom:1133.565000px;}
.y87_c00190{bottom:1134.435000px;}
.y86_c00190{bottom:1135.290000px;}
.y85_c00190{bottom:1136.160000px;}
.y8b_c00190{bottom:1137.030000px;}
.y8a_c00190{bottom:1137.885000px;}
.y8d_c00190{bottom:1139.610000px;}
.y8c_c00190{bottom:1142.205000px;}
.y81_c00190{bottom:1147.395000px;}
.y7f_c00190{bottom:1148.250000px;}
.y84_c00190{bottom:1149.120000px;}
.y82_c00190{bottom:1149.990000px;}
.y83_c00190{bottom:1151.715000px;}
.y80_c00190{bottom:1152.570000px;}
.y217_c00190{bottom:1162.080000px;}
.y7d_c00190{bottom:1162.950000px;}
.y7e_c00190{bottom:1164.675000px;}
.y78_c00190{bottom:1166.400000px;}
.y79_c00190{bottom:1167.270000px;}
.y7c_c00190{bottom:1168.995000px;}
.y7a_c00190{bottom:1169.850000px;}
.y77_c00190{bottom:1170.720000px;}
.y7b_c00190{bottom:1173.315000px;}
.y74_c00190{bottom:1181.955000px;}
.y6c_c00190{bottom:1182.810000px;}
.y72_c00190{bottom:1183.680000px;}
.y6d_c00190{bottom:1184.550000px;}
.y73_c00190{bottom:1185.405000px;}
.y76_c00190{bottom:1186.275000px;}
.y6f_c00190{bottom:1187.130000px;}
.y75_c00190{bottom:1188.870000px;}
.y6b_c00190{bottom:1190.595000px;}
.y70_c00190{bottom:1191.450000px;}
.y68_c00190{bottom:1196.640000px;}
.y6a_c00190{bottom:1197.510000px;}
.y6e_c00190{bottom:1198.365000px;}
.y71_c00190{bottom:1199.235000px;}
.y60_c00190{bottom:1200.090000px;}
.y67_c00190{bottom:1201.830000px;}
.y66_c00190{bottom:1202.685000px;}
.y62_c00190{bottom:1203.555000px;}
.y5f_c00190{bottom:1204.410000px;}
.y69_c00190{bottom:1205.280000px;}
.y61_c00190{bottom:1206.150000px;}
.y63_c00190{bottom:1207.005000px;}
.y64_c00190{bottom:1207.875000px;}
.y65_c00190{bottom:1215.645000px;}
.y5d_c00190{bottom:1216.515000px;}
.y5c_c00190{bottom:1217.370000px;}
.y5b_c00190{bottom:1218.240000px;}
.y5a_c00190{bottom:1222.560000px;}
.y5e_c00190{bottom:1223.430000px;}
.y52_c00190{bottom:1231.200000px;}
.y51_c00190{bottom:1232.070000px;}
.y53_c00190{bottom:1232.925000px;}
.y4e_c00190{bottom:1235.520000px;}
.y57_c00190{bottom:1236.390000px;}
.y54_c00190{bottom:1237.245000px;}
.y56_c00190{bottom:1238.115000px;}
.y58_c00190{bottom:1238.970000px;}
.y59_c00190{bottom:1239.840000px;}
.y50_c00190{bottom:1240.710000px;}
.y4f_c00190{bottom:1241.565000px;}
.y55_c00190{bottom:1245.885000px;}
.y49_c00190{bottom:1254.525000px;}
.y4a_c00190{bottom:1255.395000px;}
.y4b_c00190{bottom:1256.250000px;}
.y4c_c00190{bottom:1257.120000px;}
.y48_c00190{bottom:1257.990000px;}
.y4d_c00190{bottom:1260.570000px;}
.y46_c00190{bottom:1262.310000px;}
.y47_c00190{bottom:1264.890000px;}
.y45_c00190{bottom:1267.485000px;}
.y40_c00190{bottom:1270.080000px;}
.y3e_c00190{bottom:1270.950000px;}
.y43_c00190{bottom:1271.805000px;}
.y3f_c00190{bottom:1272.675000px;}
.y42_c00190{bottom:1274.400000px;}
.y41_c00190{bottom:1275.270000px;}
.y3c_c00190{bottom:1279.590000px;}
.y3d_c00190{bottom:1285.635000px;}
.y44_c00190{bottom:1286.490000px;}
.y35_c00190{bottom:1288.230000px;}
.y36_c00190{bottom:1289.085000px;}
.y37_c00190{bottom:1289.955000px;}
.y3b_c00190{bottom:1292.550000px;}
.y38_c00190{bottom:1293.405000px;}
.y39_c00190{bottom:1294.275000px;}
.y216_c00190{bottom:1296.000000px;}
.y34_c00190{bottom:1298.595000px;}
.y3a_c00190{bottom:1301.190000px;}
.y33_c00190{bottom:1302.915000px;}
.y31_c00190{bottom:1306.365000px;}
.y2c_c00190{bottom:1308.090000px;}
.y2e_c00190{bottom:1309.830000px;}
.y2f_c00190{bottom:1310.685000px;}
.y32_c00190{bottom:1311.555000px;}
.y2d_c00190{bottom:1312.410000px;}
.y30_c00190{bottom:1313.280000px;}
.y215_c00190{bottom:1321.050000px;}
.y28_c00190{bottom:1324.515000px;}
.y26_c00190{bottom:1326.240000px;}
.y27_c00190{bottom:1329.690000px;}
.y2b_c00190{bottom:1330.560000px;}
.y2a_c00190{bottom:1331.430000px;}
.y25_c00190{bottom:1339.200000px;}
.y29_c00190{bottom:1340.070000px;}
.y1f_c00190{bottom:1341.795000px;}
.y1e_c00190{bottom:1342.650000px;}
.y21_c00190{bottom:1344.390000px;}
.y24_c00190{bottom:1345.245000px;}
.y1a_c00190{bottom:1346.115000px;}
.y20_c00190{bottom:1346.970000px;}
.y22_c00190{bottom:1347.840000px;}
.y23_c00190{bottom:1354.755000px;}
.y16_c00190{bottom:1355.610000px;}
.y13_c00190{bottom:1356.480000px;}
.y1d_c00190{bottom:1357.350000px;}
.y14_c00190{bottom:1358.205000px;}
.y1c_c00190{bottom:1359.075000px;}
.y12_c00190{bottom:1361.670000px;}
.y1b_c00190{bottom:1362.525000px;}
.y19_c00190{bottom:1364.250000px;}
.y15_c00190{bottom:1365.120000px;}
.y17_c00190{bottom:1365.990000px;}
.y18_c00190{bottom:1368.570000px;}
.y9_c00190{bottom:1377.210000px;}
.y8_c00190{bottom:1378.080000px;}
.ya_c00190{bottom:1379.805000px;}
.yc_c00190{bottom:1381.530000px;}
.ye_c00190{bottom:1382.400000px;}
.yf_c00190{bottom:1386.720000px;}
.y10_c00190{bottom:1390.170000px;}
.y11_c00190{bottom:1391.040000px;}
.yb_c00190{bottom:1394.490000px;}
.yd_c00190{bottom:1395.360000px;}
.y214_c00190{bottom:1397.955000px;}
.y6_c00190{bottom:1416.960000px;}
.y7_c00190{bottom:1418.685000px;}
.y5_c00190{bottom:1429.050000px;}
.y3_c00190{bottom:1431.645000px;}
.y2_c00190{bottom:1434.240000px;}
.y4_c00190{bottom:1442.880000px;}
.y1_c00190{bottom:1449.795000px;}
.hc_c00190{height:3.110063px;}
.h1a_c00190{height:5.399414px;}
.h8_c00190{height:6.209326px;}
.hd_c00190{height:9.340986px;}
.h21_c00190{height:9.629326px;}
.h20_c00190{height:9.689326px;}
.h7_c00190{height:12.418652px;}
.h2_c00190{height:15.550313px;}
.h3_c00190{height:18.681973px;}
.h5_c00190{height:21.759639px;}
.h12_c00190{height:24.891299px;}
.h4_c00190{height:27.968965px;}
.h14_c00190{height:31.100625px;}
.h10_c00190{height:34.232285px;}
.h16_c00190{height:37.309951px;}
.hb_c00190{height:40.441611px;}
.h17_c00190{height:43.519277px;}
.h6_c00190{height:46.650937px;}
.he_c00190{height:49.782598px;}
.h19_c00190{height:52.860264px;}
.h18_c00190{height:55.991924px;}
.h15_c00190{height:59.069590px;}
.ha_c00190{height:62.201250px;}
.h1b_c00190{height:65.332910px;}
.h1c_c00190{height:68.410576px;}
.h11_c00190{height:71.542236px;}
.hf_c00190{height:74.619902px;}
.h9_c00190{height:77.751563px;}
.h1f_c00190{height:80.883223px;}
.h1e_c00190{height:87.092549px;}
.h1d_c00190{height:90.170215px;}
.h13_c00190{height:96.433535px;}
.h23_c00190{height:108.852188px;}
.h22_c00190{height:111.983848px;}
.h24_c00190{height:118.193174px;}
.h0_c00190{height:1523.235000px;}
.h1_c00190{height:1523.250000px;}
.w0_c00190{width:1107.645000px;}
.w1_c00190{width:1107.750000px;}
.x0_c00190{left:0.000000px;}
.x115_c00190{left:213.405000px;}
.x11c_c00190{left:217.725000px;}
.xc4_c00190{left:222.915000px;}
.x112_c00190{left:226.365000px;}
.x10f_c00190{left:229.830000px;}
.xc5_c00190{left:234.150000px;}
.x113_c00190{left:237.600000px;}
.x2a_c00190{left:239.325000px;}
.xcf_c00190{left:241.920000px;}
.x119_c00190{left:243.645000px;}
.x32_c00190{left:245.370000px;}
.xc6_c00190{left:247.965000px;}
.x5d_c00190{left:250.560000px;}
.x2b_c00190{left:253.155000px;}
.x78_c00190{left:254.880000px;}
.x15_c00190{left:257.475000px;}
.x86_c00190{left:259.200000px;}
.x10d_c00190{left:260.925000px;}
.x8_c00190{left:264.390000px;}
.x4b_c00190{left:266.115000px;}
.x114_c00190{left:268.710000px;}
.x46_c00190{left:270.435000px;}
.x110_c00190{left:272.160000px;}
.xd0_c00190{left:274.755000px;}
.xcb_c00190{left:283.395000px;}
.x5e_c00190{left:285.120000px;}
.xd6_c00190{left:289.440000px;}
.x16_c00190{left:296.355000px;}
.x8f_c00190{left:302.400000px;}
.x10a_c00190{left:304.995000px;}
.x9_c00190{left:306.720000px;}
.xf1_c00190{left:308.445000px;}
.x9d_c00190{left:310.170000px;}
.xe0_c00190{left:311.910000px;}
.x33_c00190{left:314.490000px;}
.x3d_c00190{left:317.085000px;}
.xd1_c00190{left:318.810000px;}
.xa7_c00190{left:320.550000px;}
.xb3_c00190{left:322.275000px;}
.x67_c00190{left:324.000000px;}
.x5f_c00190{left:326.595000px;}
.xad_c00190{left:331.770000px;}
.xf6_c00190{left:333.510000px;}
.xe3_c00190{left:335.235000px;}
.x3e_c00190{left:337.830000px;}
.xa_c00190{left:339.555000px;}
.x79_c00190{left:341.280000px;}
.xa8_c00190{left:343.005000px;}
.x10b_c00190{left:346.470000px;}
.x90_c00190{left:350.790000px;}
.x47_c00190{left:353.370000px;}
.x34_c00190{left:355.110000px;}
.x6e_c00190{left:356.835000px;}
.x10e_c00190{left:359.430000px;}
.x17_c00190{left:361.155000px;}
.xb4_c00190{left:362.880000px;}
.x60_c00190{left:364.605000px;}
.x91_c00190{left:366.330000px;}
.x4c_c00190{left:368.070000px;}
.x35_c00190{left:369.795000px;}
.x18_c00190{left:371.520000px;}
.x6f_c00190{left:373.245000px;}
.xed_c00190{left:375.840000px;}
.xc0_c00190{left:377.565000px;}
.x97_c00190{left:379.290000px;}
.xf7_c00190{left:381.030000px;}
.x108_c00190{left:382.755000px;}
.x6_c00190{left:384.480000px;}
.x54_c00190{left:386.205000px;}
.x8a_c00190{left:387.930000px;}
.xc1_c00190{left:391.395000px;}
.x7f_c00190{left:393.120000px;}
.x7_c00190{left:394.845000px;}
.x111_c00190{left:396.570000px;}
.x7a_c00190{left:399.165000px;}
.x10c_c00190{left:401.760000px;}
.x2c_c00190{left:403.485000px;}
.xe2_c00190{left:406.950000px;}
.xf8_c00190{left:408.675000px;}
.x92_c00190{left:410.400000px;}
.xe4_c00190{left:412.125000px;}
.xb9_c00190{left:413.850000px;}
.x55_c00190{left:416.445000px;}
.xf2_c00190{left:418.170000px;}
.x3f_c00190{left:419.910000px;}
.x48_c00190{left:422.490000px;}
.x117_c00190{left:424.230000px;}
.x98_c00190{left:426.810000px;}
.x36_c00190{left:428.550000px;}
.xf3_c00190{left:430.275000px;}
.xd2_c00190{left:432.000000px;}
.x61_c00190{left:433.725000px;}
.xd7_c00190{left:435.450000px;}
.xea_c00190{left:438.045000px;}
.x68_c00190{left:440.640000px;}
.x9e_c00190{left:444.960000px;}
.x116_c00190{left:446.685000px;}
.xa9_c00190{left:449.280000px;}
.xd8_c00190{left:451.875000px;}
.x37_c00190{left:455.325000px;}
.x4d_c00190{left:457.920000px;}
.x19_c00190{left:459.645000px;}
.x93_c00190{left:462.240000px;}
.x4e_c00190{left:466.560000px;}
.xd3_c00190{left:468.285000px;}
.x7b_c00190{left:470.880000px;}
.x11a_c00190{left:473.475000px;}
.xbd_c00190{left:476.070000px;}
.x118_c00190{left:479.520048px;}
.x70_c00190{left:481.245000px;}
.x9f_c00190{left:482.970000px;}
.x40_c00190{left:485.565000px;}
.x1a_c00190{left:489.030000px;}
.xc7_c00190{left:490.755000px;}
.x2_c00190{left:493.350000px;}
.x105_c00190{left:495.075000px;}
.x2d_c00190{left:497.670000px;}
.x69_c00190{left:499.395000px;}
.x71_c00190{left:501.990000px;}
.x3_c00190{left:504.570000px;}
.xc9_c00190{left:507.165000px;}
.xd4_c00190{left:508.890000px;}
.x8b_c00190{left:510.630000px;}
.x49_c00190{left:515.805000px;}
.x72_c00190{left:517.530000px;}
.x62_c00190{left:519.270000px;}
.xb_c00190{left:521.850000px;}
.x1b_c00190{left:525.315000px;}
.x63_c00190{left:527.040000px;}
.xd9_c00190{left:528.765000px;}
.x6a_c00190{left:531.360000px;}
.x1c_c00190{left:534.810000px;}
.x4f_c00190{left:539.130000px;}
.x41_c00190{left:541.725000px;}
.xe1_c00190{left:544.320000px;}
.xca_c00190{left:546.045000px;}
.xc_c00190{left:548.640000px;}
.x38_c00190{left:551.235000px;}
.x50_c00190{left:553.830000px;}
.xae_c00190{left:555.555000px;}
.x39_c00190{left:557.280000px;}
.x11b_c00190{left:559.005000px;}
.xa0_c00190{left:561.600000px;}
.x56_c00190{left:563.325000px;}
.xd_c00190{left:567.645000px;}
.x101_c00190{left:569.370000px;}
.x73_c00190{left:571.110000px;}
.xfc_c00190{left:572.835000px;}
.xff_c00190{left:574.560000px;}
.x42_c00190{left:576.285000px;}
.x1d_c00190{left:578.880000px;}
.xa1_c00190{left:580.605000px;}
.xdd_c00190{left:583.200000px;}
.xc2_c00190{left:585.795000px;}
.x1e_c00190{left:587.520000px;}
.xbe_c00190{left:589.245000px;}
.xdb_c00190{left:591.840000px;}
.x64_c00190{left:596.160000px;}
.x100_c00190{left:597.885000px;}
.xa2_c00190{left:600.480000px;}
.x6b_c00190{left:602.205000px;}
.xe_c00190{left:604.800000px;}
.xbf_c00190{left:608.250000px;}
.xee_c00190{left:615.165000px;}
.xcc_c00190{left:616.890000px;}
.x1f_c00190{left:622.080000px;}
.xf9_c00190{left:624.675000px;}
.xda_c00190{left:626.400000px;}
.xd5_c00190{left:628.125000px;}
.xde_c00190{left:629.850000px;}
.xa3_c00190{left:632.445000px;}
.x20_c00190{left:635.040000px;}
.x3a_c00190{left:637.635000px;}
.x74_c00190{left:640.230000px;}
.xe5_c00190{left:641.955000px;}
.x94_c00190{left:643.680000px;}
.x21_c00190{left:645.405000px;}
.x80_c00190{left:648.870000px;}
.x57_c00190{left:651.450000px;}
.xaa_c00190{left:653.190000px;}
.xaf_c00190{left:654.915000px;}
.x99_c00190{left:658.365000px;}
.xdc_c00190{left:660.090000px;}
.x43_c00190{left:662.685000px;}
.x22_c00190{left:664.410000px;}
.x65_c00190{left:666.150000px;}
.xb2_c00190{left:667.875000px;}
.xef_c00190{left:669.600000px;}
.x95_c00190{left:673.920000px;}
.xe8_c00190{left:675.645000px;}
.x9a_c00190{left:677.370000px;}
.xf_c00190{left:679.965000px;}
.xb5_c00190{left:682.560000px;}
.x8c_c00190{left:684.285000px;}
.x23_c00190{left:686.880000px;}
.xb6_c00190{left:690.330000px;}
.x81_c00190{left:692.925000px;}
.xeb_c00190{left:696.390000px;}
.x2e_c00190{left:698.115000px;}
.x24_c00190{left:699.840000px;}
.x87_c00190{left:701.565000px;}
.xb0_c00190{left:703.290000px;}
.x102_c00190{left:705.030000px;}
.x25_c00190{left:710.205000px;}
.xab_c00190{left:715.395000px;}
.x10_c00190{left:717.120000px;}
.x106_c00190{left:718.845000px;}
.x5_c00190{left:720.570000px;}
.x26_c00190{left:722.310000px;}
.x82_c00190{left:724.035000px;}
.x11_c00190{left:725.760000px;}
.x4a_c00190{left:727.485000px;}
.x66_c00190{left:731.805000px;}
.x58_c00190{left:734.400000px;}
.x27_c00190{left:736.125000px;}
.xa5_c00190{left:737.850000px;}
.x9b_c00190{left:739.590000px;}
.x75_c00190{left:741.315000px;}
.xc8_c00190{left:743.040000px;}
.x4_c00190{left:745.635000px;}
.xfa_c00190{left:747.360000px;}
.x2f_c00190{left:751.680000px;}
.x88_c00190{left:754.275000px;}
.x59_c00190{left:758.595000px;}
.x103_c00190{left:761.190000px;}
.x1_c00190{left:762.915000px;}
.xb1_c00190{left:764.640000px;}
.xdf_c00190{left:767.235000px;}
.xba_c00190{left:768.960000px;}
.xfd_c00190{left:772.410000px;}
.x76_c00190{left:775.005000px;}
.x109_c00190{left:778.470000px;}
.x5a_c00190{left:783.645000px;}
.x12_c00190{left:786.240000px;}
.xa4_c00190{left:790.560000px;}
.xa6_c00190{left:794.010000px;}
.x96_c00190{left:795.750000px;}
.x7c_c00190{left:797.475000px;}
.xbb_c00190{left:799.200000px;}
.xfb_c00190{left:804.390000px;}
.xbc_c00190{left:807.840000px;}
.x107_c00190{left:812.160000px;}
.x51_c00190{left:813.885000px;}
.x5b_c00190{left:816.480000px;}
.xcd_c00190{left:819.075000px;}
.xb7_c00190{left:820.800000px;}
.x7d_c00190{left:822.525000px;}
.x30_c00190{left:825.990000px;}
.x8d_c00190{left:827.715000px;}
.x52_c00190{left:829.440000px;}
.x6c_c00190{left:832.035000px;}
.x13_c00190{left:834.630000px;}
.xf4_c00190{left:836.355000px;}
.x8e_c00190{left:840.675000px;}
.x3b_c00190{left:843.270000px;}
.x104_c00190{left:845.850000px;}
.x5c_c00190{left:848.445000px;}
.x44_c00190{left:852.765000px;}
.xb8_c00190{left:855.360000px;}
.x89_c00190{left:857.955000px;}
.x31_c00190{left:860.550000px;}
.xce_c00190{left:862.275000px;}
.x83_c00190{left:864.000000px;}
.x28_c00190{left:866.595000px;}
.x6d_c00190{left:868.320000px;}
.x77_c00190{left:871.770000px;}
.x14_c00190{left:873.510000px;}
.xf5_c00190{left:876.090000px;}
.xe9_c00190{left:878.685000px;}
.xc3_c00190{left:881.280000px;}
.xfe_c00190{left:883.005000px;}
.x3c_c00190{left:884.730000px;}
.x45_c00190{left:886.470000px;}
.xac_c00190{left:888.195000px;}
.x53_c00190{left:889.920000px;}
.xf0_c00190{left:895.965000px;}
.x84_c00190{left:897.690000px;}
.x9c_c00190{left:900.285000px;}
.x7e_c00190{left:902.010000px;}
.xe6_c00190{left:905.475000px;}
.x29_c00190{left:907.200000px;}
.x85_c00190{left:911.520000px;}
.xe7_c00190{left:914.115000px;}
.xec_c00190{left:921.885000px;}
.x124_c00190{left:966.810000px;}
.x125_c00190{left:984.960000px;}
.x11e_c00190{left:992.730000px;}
.x11d_c00190{left:1003.965000px;}
.x11f_c00190{left:1021.245000px;}
.x122_c00190{left:1031.610000px;}
.x123_c00190{left:1047.165000px;}
.x120_c00190{left:1050.630000px;}
.x121_c00190{left:1059.270000px;}
@media print{
.v1_c00190{vertical-align:-3.093333pt;}
.v0_c00190{vertical-align:0.000000pt;}
.v2_c00190{vertical-align:3.093333pt;}
.ls4_c00190{letter-spacing:0.000000pt;}
.ls3_c00190{letter-spacing:9.226667pt;}
.ls1_c00190{letter-spacing:55.306133pt;}
.ls2_c00190{letter-spacing:105.815723pt;}
.ls0_c00190{letter-spacing:120.800000pt;}
.ws0_c00190{word-spacing:0.000000pt;}
.fsa_c00190{font-size:3.072000pt;}
.fs18_c00190{font-size:5.333333pt;}
.fs6_c00190{font-size:6.133333pt;}
.fsb_c00190{font-size:9.226667pt;}
.fs5_c00190{font-size:12.266667pt;}
.fs0_c00190{font-size:15.360000pt;}
.fs1_c00190{font-size:18.453333pt;}
.fs3_c00190{font-size:21.493333pt;}
.fs10_c00190{font-size:24.586667pt;}
.fs2_c00190{font-size:27.626667pt;}
.fs12_c00190{font-size:30.720000pt;}
.fse_c00190{font-size:33.813333pt;}
.fs14_c00190{font-size:36.853333pt;}
.fs9_c00190{font-size:39.946667pt;}
.fs15_c00190{font-size:42.986667pt;}
.fs4_c00190{font-size:46.080000pt;}
.fsc_c00190{font-size:49.173333pt;}
.fs17_c00190{font-size:52.213333pt;}
.fs16_c00190{font-size:55.306667pt;}
.fs13_c00190{font-size:58.346667pt;}
.fs8_c00190{font-size:61.440000pt;}
.fs19_c00190{font-size:64.533333pt;}
.fs1a_c00190{font-size:67.573333pt;}
.fsf_c00190{font-size:70.666667pt;}
.fsd_c00190{font-size:73.706667pt;}
.fs7_c00190{font-size:76.800000pt;}
.fs1d_c00190{font-size:79.893333pt;}
.fs1c_c00190{font-size:86.026667pt;}
.fs1b_c00190{font-size:89.066667pt;}
.fs11_c00190{font-size:95.253333pt;}
.fs1f_c00190{font-size:107.520000pt;}
.fs1e_c00190{font-size:110.613333pt;}
.fs20_c00190{font-size:116.746667pt;}
.y0_c00190{bottom:0.000000pt;}
.y20b_c00190{bottom:198.906667pt;}
.y213_c00190{bottom:205.053333pt;}
.y20c_c00190{bottom:205.826667pt;}
.y20e_c00190{bottom:211.973333pt;}
.y210_c00190{bottom:213.506667pt;}
.y20f_c00190{bottom:214.266667pt;}
.y212_c00190{bottom:216.573333pt;}
.y211_c00190{bottom:217.346667pt;}
.y20d_c00190{bottom:219.653333pt;}
.y20a_c00190{bottom:222.720000pt;}
.y203_c00190{bottom:225.786667pt;}
.y205_c00190{bottom:226.560000pt;}
.y204_c00190{bottom:228.093333pt;}
.y209_c00190{bottom:228.866667pt;}
.y206_c00190{bottom:229.626667pt;}
.y208_c00190{bottom:231.173333pt;}
.y202_c00190{bottom:231.933333pt;}
.y207_c00190{bottom:232.706667pt;}
.y200_c00190{bottom:235.013333pt;}
.y201_c00190{bottom:235.773333pt;}
.y1ff_c00190{bottom:236.546667pt;}
.y1fe_c00190{bottom:243.453333pt;}
.y1fb_c00190{bottom:255.746667pt;}
.y1fd_c00190{bottom:257.280000pt;}
.y1fc_c00190{bottom:258.813333pt;}
.y1fa_c00190{bottom:266.493333pt;}
.y1f3_c00190{bottom:267.266667pt;}
.y1f2_c00190{bottom:268.026667pt;}
.y1f1_c00190{bottom:268.800000pt;}
.y1f4_c00190{bottom:269.573333pt;}
.y1f9_c00190{bottom:271.106667pt;}
.y1f6_c00190{bottom:273.413333pt;}
.y1f5_c00190{bottom:277.253333pt;}
.y1f7_c00190{bottom:279.546667pt;}
.y1f8_c00190{bottom:280.320000pt;}
.y1ec_c00190{bottom:281.853333pt;}
.y1ef_c00190{bottom:282.626667pt;}
.y1eb_c00190{bottom:283.386667pt;}
.y1ee_c00190{bottom:284.160000pt;}
.y1ed_c00190{bottom:287.226667pt;}
.y1f0_c00190{bottom:289.533333pt;}
.y1ea_c00190{bottom:297.986667pt;}
.y1e7_c00190{bottom:298.746667pt;}
.y1e9_c00190{bottom:299.520000pt;}
.y1e8_c00190{bottom:304.133333pt;}
.y1e4_c00190{bottom:312.573333pt;}
.y1e1_c00190{bottom:313.346667pt;}
.y1e6_c00190{bottom:314.880000pt;}
.y1e2_c00190{bottom:316.413333pt;}
.y1e0_c00190{bottom:318.720000pt;}
.y1e5_c00190{bottom:319.493333pt;}
.y1e3_c00190{bottom:320.253333pt;}
.y1d9_c00190{bottom:329.466667pt;}
.y1db_c00190{bottom:330.240000pt;}
.y1de_c00190{bottom:331.773333pt;}
.y1dd_c00190{bottom:332.546667pt;}
.y1df_c00190{bottom:334.080000pt;}
.y1da_c00190{bottom:340.986667pt;}
.y1dc_c00190{bottom:346.373333pt;}
.y1d4_c00190{bottom:347.133333pt;}
.y1d5_c00190{bottom:347.906667pt;}
.y1d6_c00190{bottom:348.666667pt;}
.y1d7_c00190{bottom:350.973333pt;}
.y1d8_c00190{bottom:351.746667pt;}
.y1d3_c00190{bottom:354.053333pt;}
.y1d2_c00190{bottom:355.586667pt;}
.y1cf_c00190{bottom:363.266667pt;}
.y1cc_c00190{bottom:364.026667pt;}
.y1d1_c00190{bottom:364.800000pt;}
.y1d0_c00190{bottom:365.573333pt;}
.y1ce_c00190{bottom:367.106667pt;}
.y1cd_c00190{bottom:367.866667pt;}
.y1ca_c00190{bottom:374.786667pt;}
.y1c9_c00190{bottom:375.546667pt;}
.y1cb_c00190{bottom:376.320000pt;}
.y1c6_c00190{bottom:377.093333pt;}
.y1c5_c00190{bottom:377.853333pt;}
.y1c7_c00190{bottom:378.626667pt;}
.y1c8_c00190{bottom:379.386667pt;}
.y1c2_c00190{bottom:393.986667pt;}
.y1c3_c00190{bottom:395.520000pt;}
.y1c1_c00190{bottom:396.293333pt;}
.y1c4_c00190{bottom:398.586667pt;}
.y1ba_c00190{bottom:408.573333pt;}
.y1bb_c00190{bottom:410.106667pt;}
.y1bc_c00190{bottom:410.880000pt;}
.y1c0_c00190{bottom:411.653333pt;}
.y1be_c00190{bottom:413.946667pt;}
.y1bd_c00190{bottom:414.720000pt;}
.y1bf_c00190{bottom:415.493333pt;}
.y1b1_c00190{bottom:423.933333pt;}
.y1b5_c00190{bottom:424.706667pt;}
.y1b3_c00190{bottom:425.466667pt;}
.y1b4_c00190{bottom:426.240000pt;}
.y1b9_c00190{bottom:427.013333pt;}
.y1b7_c00190{bottom:427.773333pt;}
.y1b2_c00190{bottom:429.306667pt;}
.y1b6_c00190{bottom:430.853333pt;}
.y1b8_c00190{bottom:431.613333pt;}
.y1ad_c00190{bottom:441.600000pt;}
.y1aa_c00190{bottom:442.373333pt;}
.y1a9_c00190{bottom:443.133333pt;}
.y1af_c00190{bottom:443.906667pt;}
.y1ac_c00190{bottom:445.440000pt;}
.y1ab_c00190{bottom:446.213333pt;}
.y1b0_c00190{bottom:447.746667pt;}
.y1ae_c00190{bottom:450.813333pt;}
.y1a8_c00190{bottom:452.346667pt;}
.y1a0_c00190{bottom:456.960000pt;}
.y1a1_c00190{bottom:457.733333pt;}
.y19f_c00190{bottom:458.493333pt;}
.y1a4_c00190{bottom:459.266667pt;}
.y1a2_c00190{bottom:461.573333pt;}
.y1a3_c00190{bottom:463.106667pt;}
.y1a7_c00190{bottom:463.866667pt;}
.y1a5_c00190{bottom:464.640000pt;}
.y1a6_c00190{bottom:470.013333pt;}
.y197_c00190{bottom:472.320000pt;}
.y198_c00190{bottom:473.093333pt;}
.y19b_c00190{bottom:473.853333pt;}
.y19d_c00190{bottom:474.626667pt;}
.y19a_c00190{bottom:475.386667pt;}
.y199_c00190{bottom:477.693333pt;}
.y19c_c00190{bottom:478.466667pt;}
.y19e_c00190{bottom:480.000000pt;}
.y190_c00190{bottom:489.986667pt;}
.y194_c00190{bottom:490.746667pt;}
.y18f_c00190{bottom:491.520000pt;}
.y195_c00190{bottom:492.293333pt;}
.y191_c00190{bottom:493.053333pt;}
.y193_c00190{bottom:494.586667pt;}
.y196_c00190{bottom:495.360000pt;}
.y192_c00190{bottom:498.426667pt;}
.y18d_c00190{bottom:507.653333pt;}
.y18b_c00190{bottom:508.413333pt;}
.y189_c00190{bottom:509.186667pt;}
.y18c_c00190{bottom:510.720000pt;}
.y18e_c00190{bottom:511.493333pt;}
.y218_c00190{bottom:515.333333pt;}
.y18a_c00190{bottom:516.866667pt;}
.y219_c00190{bottom:517.626667pt;}
.y185_c00190{bottom:526.080000pt;}
.y188_c00190{bottom:526.853333pt;}
.y187_c00190{bottom:527.613333pt;}
.y184_c00190{bottom:530.693333pt;}
.y186_c00190{bottom:532.226667pt;}
.y180_c00190{bottom:540.666667pt;}
.y181_c00190{bottom:541.440000pt;}
.y183_c00190{bottom:542.973333pt;}
.y17e_c00190{bottom:545.280000pt;}
.y17f_c00190{bottom:546.053333pt;}
.y177_c00190{bottom:549.120000pt;}
.y182_c00190{bottom:550.653333pt;}
.y175_c00190{bottom:551.426667pt;}
.y176_c00190{bottom:552.186667pt;}
.y17c_c00190{bottom:552.960000pt;}
.y17a_c00190{bottom:554.493333pt;}
.y17d_c00190{bottom:555.266667pt;}
.y174_c00190{bottom:556.026667pt;}
.y178_c00190{bottom:556.800000pt;}
.y179_c00190{bottom:557.573333pt;}
.y17b_c00190{bottom:564.480000pt;}
.y16b_c00190{bottom:568.320000pt;}
.y171_c00190{bottom:569.093333pt;}
.y170_c00190{bottom:569.853333pt;}
.y16d_c00190{bottom:571.386667pt;}
.y172_c00190{bottom:572.160000pt;}
.y173_c00190{bottom:573.693333pt;}
.y16e_c00190{bottom:574.466667pt;}
.y16f_c00190{bottom:576.773333pt;}
.y16c_c00190{bottom:578.306667pt;}
.y165_c00190{bottom:580.613333pt;}
.y168_c00190{bottom:582.146667pt;}
.y167_c00190{bottom:582.906667pt;}
.y16a_c00190{bottom:583.680000pt;}
.y164_c00190{bottom:584.453333pt;}
.y161_c00190{bottom:586.746667pt;}
.y160_c00190{bottom:587.520000pt;}
.y166_c00190{bottom:588.293333pt;}
.y163_c00190{bottom:590.586667pt;}
.y15f_c00190{bottom:592.893333pt;}
.y162_c00190{bottom:594.426667pt;}
.y169_c00190{bottom:599.813333pt;}
.y15b_c00190{bottom:600.573333pt;}
.y158_c00190{bottom:601.346667pt;}
.y156_c00190{bottom:602.880000pt;}
.y157_c00190{bottom:603.653333pt;}
.y15a_c00190{bottom:604.413333pt;}
.y159_c00190{bottom:605.186667pt;}
.y15c_c00190{bottom:605.946667pt;}
.y15d_c00190{bottom:609.026667pt;}
.y15e_c00190{bottom:611.333333pt;}
.y151_c00190{bottom:615.933333pt;}
.y155_c00190{bottom:617.466667pt;}
.y152_c00190{bottom:618.240000pt;}
.y154_c00190{bottom:619.013333pt;}
.y153_c00190{bottom:626.693333pt;}
.y14e_c00190{bottom:628.986667pt;}
.y14f_c00190{bottom:629.760000pt;}
.y14d_c00190{bottom:632.066667pt;}
.y150_c00190{bottom:632.826667pt;}
.y14c_c00190{bottom:633.600000pt;}
.y146_c00190{bottom:648.186667pt;}
.y14a_c00190{bottom:648.960000pt;}
.y149_c00190{bottom:649.733333pt;}
.y14b_c00190{bottom:650.493333pt;}
.y147_c00190{bottom:652.026667pt;}
.y148_c00190{bottom:658.946667pt;}
.y13f_c00190{bottom:659.706667pt;}
.y13e_c00190{bottom:660.480000pt;}
.y144_c00190{bottom:662.786667pt;}
.y141_c00190{bottom:663.546667pt;}
.y140_c00190{bottom:664.320000pt;}
.y143_c00190{bottom:665.093333pt;}
.y145_c00190{bottom:666.626667pt;}
.y142_c00190{bottom:670.466667pt;}
.y139_c00190{bottom:675.840000pt;}
.y13a_c00190{bottom:676.613333pt;}
.y137_c00190{bottom:677.373333pt;}
.y13b_c00190{bottom:678.146667pt;}
.y13c_c00190{bottom:678.906667pt;}
.y138_c00190{bottom:679.680000pt;}
.y13d_c00190{bottom:680.453333pt;}
.y131_c00190{bottom:691.973333pt;}
.y134_c00190{bottom:692.733333pt;}
.y132_c00190{bottom:693.506667pt;}
.y133_c00190{bottom:695.813333pt;}
.y135_c00190{bottom:696.573333pt;}
.y136_c00190{bottom:698.106667pt;}
.y12a_c00190{bottom:706.560000pt;}
.y12b_c00190{bottom:708.093333pt;}
.y12e_c00190{bottom:708.866667pt;}
.y129_c00190{bottom:710.400000pt;}
.y12f_c00190{bottom:711.173333pt;}
.y12c_c00190{bottom:715.773333pt;}
.y12d_c00190{bottom:716.546667pt;}
.y130_c00190{bottom:719.613333pt;}
.y123_c00190{bottom:723.453333pt;}
.y128_c00190{bottom:724.226667pt;}
.y126_c00190{bottom:724.986667pt;}
.y124_c00190{bottom:725.760000pt;}
.y127_c00190{bottom:727.293333pt;}
.y122_c00190{bottom:729.600000pt;}
.y125_c00190{bottom:736.506667pt;}
.y117_c00190{bottom:737.280000pt;}
.y118_c00190{bottom:738.053333pt;}
.y11c_c00190{bottom:739.586667pt;}
.y121_c00190{bottom:741.120000pt;}
.y119_c00190{bottom:741.893333pt;}
.y11d_c00190{bottom:742.653333pt;}
.y11b_c00190{bottom:743.426667pt;}
.y11e_c00190{bottom:744.186667pt;}
.y11a_c00190{bottom:748.026667pt;}
.y11f_c00190{bottom:748.800000pt;}
.y120_c00190{bottom:749.573333pt;}
.y10e_c00190{bottom:751.866667pt;}
.y113_c00190{bottom:753.413333pt;}
.y114_c00190{bottom:754.173333pt;}
.y10d_c00190{bottom:754.946667pt;}
.y112_c00190{bottom:755.706667pt;}
.y110_c00190{bottom:757.253333pt;}
.y111_c00190{bottom:758.786667pt;}
.y115_c00190{bottom:759.546667pt;}
.y116_c00190{bottom:761.093333pt;}
.y10f_c00190{bottom:761.853333pt;}
.y10a_c00190{bottom:767.226667pt;}
.y102_c00190{bottom:768.773333pt;}
.y105_c00190{bottom:769.533333pt;}
.y103_c00190{bottom:770.306667pt;}
.y108_c00190{bottom:771.840000pt;}
.y104_c00190{bottom:772.613333pt;}
.y10c_c00190{bottom:774.146667pt;}
.y100_c00190{bottom:774.906667pt;}
.y107_c00190{bottom:777.213333pt;}
.y101_c00190{bottom:777.986667pt;}
.y10b_c00190{bottom:780.293333pt;}
.y109_c00190{bottom:781.053333pt;}
.y106_c00190{bottom:783.360000pt;}
.yfd_c00190{bottom:784.893333pt;}
.yf3_c00190{bottom:786.426667pt;}
.yf9_c00190{bottom:787.200000pt;}
.yff_c00190{bottom:787.973333pt;}
.yfb_c00190{bottom:788.733333pt;}
.yfc_c00190{bottom:789.506667pt;}
.yfa_c00190{bottom:791.040000pt;}
.yfe_c00190{bottom:799.493333pt;}
.yf6_c00190{bottom:803.333333pt;}
.yf4_c00190{bottom:804.093333pt;}
.yf5_c00190{bottom:804.866667pt;}
.yf8_c00190{bottom:806.400000pt;}
.yf7_c00190{bottom:815.613333pt;}
.yf0_c00190{bottom:816.386667pt;}
.yec_c00190{bottom:817.146667pt;}
.yef_c00190{bottom:818.693333pt;}
.yea_c00190{bottom:820.986667pt;}
.yeb_c00190{bottom:821.760000pt;}
.yed_c00190{bottom:824.066667pt;}
.yf1_c00190{bottom:827.906667pt;}
.yee_c00190{bottom:830.973333pt;}
.yf2_c00190{bottom:831.746667pt;}
.ye7_c00190{bottom:834.053333pt;}
.ye8_c00190{bottom:834.813333pt;}
.ye6_c00190{bottom:835.586667pt;}
.ydf_c00190{bottom:836.346667pt;}
.ye4_c00190{bottom:838.653333pt;}
.ye5_c00190{bottom:842.493333pt;}
.ye9_c00190{bottom:844.026667pt;}
.ydb_c00190{bottom:845.573333pt;}
.ydc_c00190{bottom:847.106667pt;}
.yde_c00190{bottom:850.173333pt;}
.ye2_c00190{bottom:850.946667pt;}
.ye0_c00190{bottom:851.706667pt;}
.ye1_c00190{bottom:852.480000pt;}
.ydd_c00190{bottom:853.253333pt;}
.ye3_c00190{bottom:854.786667pt;}
.yda_c00190{bottom:855.546667pt;}
.yd1_c00190{bottom:864.000000pt;}
.yd3_c00190{bottom:864.773333pt;}
.yd0_c00190{bottom:866.306667pt;}
.yd9_c00190{bottom:867.840000pt;}
.yd2_c00190{bottom:869.373333pt;}
.yd8_c00190{bottom:873.213333pt;}
.yd6_c00190{bottom:873.986667pt;}
.yd5_c00190{bottom:874.746667pt;}
.yd7_c00190{bottom:877.826667pt;}
.yd4_c00190{bottom:879.360000pt;}
.yca_c00190{bottom:880.893333pt;}
.yc7_c00190{bottom:882.426667pt;}
.yc8_c00190{bottom:883.973333pt;}
.yc9_c00190{bottom:884.733333pt;}
.yce_c00190{bottom:889.346667pt;}
.ycb_c00190{bottom:890.106667pt;}
.ycd_c00190{bottom:890.880000pt;}
.ycc_c00190{bottom:891.653333pt;}
.ycf_c00190{bottom:893.946667pt;}
.yc2_c00190{bottom:895.493333pt;}
.yc5_c00190{bottom:896.253333pt;}
.yc4_c00190{bottom:899.333333pt;}
.yc3_c00190{bottom:900.093333pt;}
.yc6_c00190{bottom:905.466667pt;}
.yba_c00190{bottom:910.853333pt;}
.yc1_c00190{bottom:911.613333pt;}
.ybb_c00190{bottom:912.386667pt;}
.yb9_c00190{bottom:914.693333pt;}
.yc0_c00190{bottom:915.453333pt;}
.ybe_c00190{bottom:916.226667pt;}
.ybf_c00190{bottom:916.986667pt;}
.ybd_c00190{bottom:918.533333pt;}
.ybc_c00190{bottom:922.373333pt;}
.yb1_c00190{bottom:926.213333pt;}
.yae_c00190{bottom:926.973333pt;}
.yb7_c00190{bottom:927.746667pt;}
.yb0_c00190{bottom:929.280000pt;}
.yaf_c00190{bottom:930.813333pt;}
.yb2_c00190{bottom:931.586667pt;}
.yb5_c00190{bottom:932.346667pt;}
.yb8_c00190{bottom:933.120000pt;}
.yb4_c00190{bottom:933.893333pt;}
.yb6_c00190{bottom:934.653333pt;}
.yb3_c00190{bottom:937.733333pt;}
.ya5_c00190{bottom:942.333333pt;}
.ya6_c00190{bottom:943.106667pt;}
.ya7_c00190{bottom:944.640000pt;}
.yac_c00190{bottom:946.173333pt;}
.ya8_c00190{bottom:946.946667pt;}
.yaa_c00190{bottom:948.480000pt;}
.yad_c00190{bottom:949.253333pt;}
.yab_c00190{bottom:950.786667pt;}
.ya9_c00190{bottom:951.546667pt;}
.ya2_c00190{bottom:956.933333pt;}
.y9c_c00190{bottom:958.466667pt;}
.y9e_c00190{bottom:959.226667pt;}
.y9f_c00190{bottom:960.000000pt;}
.ya4_c00190{bottom:960.773333pt;}
.y9d_c00190{bottom:962.306667pt;}
.ya3_c00190{bottom:963.066667pt;}
.ya0_c00190{bottom:966.146667pt;}
.ya1_c00190{bottom:968.453333pt;}
.y94_c00190{bottom:973.053333pt;}
.y95_c00190{bottom:974.586667pt;}
.y98_c00190{bottom:975.360000pt;}
.y99_c00190{bottom:976.133333pt;}
.y93_c00190{bottom:976.893333pt;}
.y97_c00190{bottom:977.666667pt;}
.y96_c00190{bottom:979.200000pt;}
.y9b_c00190{bottom:979.973333pt;}
.y9a_c00190{bottom:982.266667pt;}
.y8f_c00190{bottom:989.186667pt;}
.y8e_c00190{bottom:989.946667pt;}
.y91_c00190{bottom:990.720000pt;}
.y90_c00190{bottom:993.026667pt;}
.y92_c00190{bottom:993.786667pt;}
.y88_c00190{bottom:1005.306667pt;}
.y89_c00190{bottom:1007.613333pt;}
.y87_c00190{bottom:1008.386667pt;}
.y86_c00190{bottom:1009.146667pt;}
.y85_c00190{bottom:1009.920000pt;}
.y8b_c00190{bottom:1010.693333pt;}
.y8a_c00190{bottom:1011.453333pt;}
.y8d_c00190{bottom:1012.986667pt;}
.y8c_c00190{bottom:1015.293333pt;}
.y81_c00190{bottom:1019.906667pt;}
.y7f_c00190{bottom:1020.666667pt;}
.y84_c00190{bottom:1021.440000pt;}
.y82_c00190{bottom:1022.213333pt;}
.y83_c00190{bottom:1023.746667pt;}
.y80_c00190{bottom:1024.506667pt;}
.y217_c00190{bottom:1032.960000pt;}
.y7d_c00190{bottom:1033.733333pt;}
.y7e_c00190{bottom:1035.266667pt;}
.y78_c00190{bottom:1036.800000pt;}
.y79_c00190{bottom:1037.573333pt;}
.y7c_c00190{bottom:1039.106667pt;}
.y7a_c00190{bottom:1039.866667pt;}
.y77_c00190{bottom:1040.640000pt;}
.y7b_c00190{bottom:1042.946667pt;}
.y74_c00190{bottom:1050.626667pt;}
.y6c_c00190{bottom:1051.386667pt;}
.y72_c00190{bottom:1052.160000pt;}
.y6d_c00190{bottom:1052.933333pt;}
.y73_c00190{bottom:1053.693333pt;}
.y76_c00190{bottom:1054.466667pt;}
.y6f_c00190{bottom:1055.226667pt;}
.y75_c00190{bottom:1056.773333pt;}
.y6b_c00190{bottom:1058.306667pt;}
.y70_c00190{bottom:1059.066667pt;}
.y68_c00190{bottom:1063.680000pt;}
.y6a_c00190{bottom:1064.453333pt;}
.y6e_c00190{bottom:1065.213333pt;}
.y71_c00190{bottom:1065.986667pt;}
.y60_c00190{bottom:1066.746667pt;}
.y67_c00190{bottom:1068.293333pt;}
.y66_c00190{bottom:1069.053333pt;}
.y62_c00190{bottom:1069.826667pt;}
.y5f_c00190{bottom:1070.586667pt;}
.y69_c00190{bottom:1071.360000pt;}
.y61_c00190{bottom:1072.133333pt;}
.y63_c00190{bottom:1072.893333pt;}
.y64_c00190{bottom:1073.666667pt;}
.y65_c00190{bottom:1080.573333pt;}
.y5d_c00190{bottom:1081.346667pt;}
.y5c_c00190{bottom:1082.106667pt;}
.y5b_c00190{bottom:1082.880000pt;}
.y5a_c00190{bottom:1086.720000pt;}
.y5e_c00190{bottom:1087.493333pt;}
.y52_c00190{bottom:1094.400000pt;}
.y51_c00190{bottom:1095.173333pt;}
.y53_c00190{bottom:1095.933333pt;}
.y4e_c00190{bottom:1098.240000pt;}
.y57_c00190{bottom:1099.013333pt;}
.y54_c00190{bottom:1099.773333pt;}
.y56_c00190{bottom:1100.546667pt;}
.y58_c00190{bottom:1101.306667pt;}
.y59_c00190{bottom:1102.080000pt;}
.y50_c00190{bottom:1102.853333pt;}
.y4f_c00190{bottom:1103.613333pt;}
.y55_c00190{bottom:1107.453333pt;}
.y49_c00190{bottom:1115.133333pt;}
.y4a_c00190{bottom:1115.906667pt;}
.y4b_c00190{bottom:1116.666667pt;}
.y4c_c00190{bottom:1117.440000pt;}
.y48_c00190{bottom:1118.213333pt;}
.y4d_c00190{bottom:1120.506667pt;}
.y46_c00190{bottom:1122.053333pt;}
.y47_c00190{bottom:1124.346667pt;}
.y45_c00190{bottom:1126.653333pt;}
.y40_c00190{bottom:1128.960000pt;}
.y3e_c00190{bottom:1129.733333pt;}
.y43_c00190{bottom:1130.493333pt;}
.y3f_c00190{bottom:1131.266667pt;}
.y42_c00190{bottom:1132.800000pt;}
.y41_c00190{bottom:1133.573333pt;}
.y3c_c00190{bottom:1137.413333pt;}
.y3d_c00190{bottom:1142.786667pt;}
.y44_c00190{bottom:1143.546667pt;}
.y35_c00190{bottom:1145.093333pt;}
.y36_c00190{bottom:1145.853333pt;}
.y37_c00190{bottom:1146.626667pt;}
.y3b_c00190{bottom:1148.933333pt;}
.y38_c00190{bottom:1149.693333pt;}
.y39_c00190{bottom:1150.466667pt;}
.y216_c00190{bottom:1152.000000pt;}
.y34_c00190{bottom:1154.306667pt;}
.y3a_c00190{bottom:1156.613333pt;}
.y33_c00190{bottom:1158.146667pt;}
.y31_c00190{bottom:1161.213333pt;}
.y2c_c00190{bottom:1162.746667pt;}
.y2e_c00190{bottom:1164.293333pt;}
.y2f_c00190{bottom:1165.053333pt;}
.y32_c00190{bottom:1165.826667pt;}
.y2d_c00190{bottom:1166.586667pt;}
.y30_c00190{bottom:1167.360000pt;}
.y215_c00190{bottom:1174.266667pt;}
.y28_c00190{bottom:1177.346667pt;}
.y26_c00190{bottom:1178.880000pt;}
.y27_c00190{bottom:1181.946667pt;}
.y2b_c00190{bottom:1182.720000pt;}
.y2a_c00190{bottom:1183.493333pt;}
.y25_c00190{bottom:1190.400000pt;}
.y29_c00190{bottom:1191.173333pt;}
.y1f_c00190{bottom:1192.706667pt;}
.y1e_c00190{bottom:1193.466667pt;}
.y21_c00190{bottom:1195.013333pt;}
.y24_c00190{bottom:1195.773333pt;}
.y1a_c00190{bottom:1196.546667pt;}
.y20_c00190{bottom:1197.306667pt;}
.y22_c00190{bottom:1198.080000pt;}
.y23_c00190{bottom:1204.226667pt;}
.y16_c00190{bottom:1204.986667pt;}
.y13_c00190{bottom:1205.760000pt;}
.y1d_c00190{bottom:1206.533333pt;}
.y14_c00190{bottom:1207.293333pt;}
.y1c_c00190{bottom:1208.066667pt;}
.y12_c00190{bottom:1210.373333pt;}
.y1b_c00190{bottom:1211.133333pt;}
.y19_c00190{bottom:1212.666667pt;}
.y15_c00190{bottom:1213.440000pt;}
.y17_c00190{bottom:1214.213333pt;}
.y18_c00190{bottom:1216.506667pt;}
.y9_c00190{bottom:1224.186667pt;}
.y8_c00190{bottom:1224.960000pt;}
.ya_c00190{bottom:1226.493333pt;}
.yc_c00190{bottom:1228.026667pt;}
.ye_c00190{bottom:1228.800000pt;}
.yf_c00190{bottom:1232.640000pt;}
.y10_c00190{bottom:1235.706667pt;}
.y11_c00190{bottom:1236.480000pt;}
.yb_c00190{bottom:1239.546667pt;}
.yd_c00190{bottom:1240.320000pt;}
.y214_c00190{bottom:1242.626667pt;}
.y6_c00190{bottom:1259.520000pt;}
.y7_c00190{bottom:1261.053333pt;}
.y5_c00190{bottom:1270.266667pt;}
.y3_c00190{bottom:1272.573333pt;}
.y2_c00190{bottom:1274.880000pt;}
.y4_c00190{bottom:1282.560000pt;}
.y1_c00190{bottom:1288.706667pt;}
.hc_c00190{height:2.764500pt;}
.h1a_c00190{height:4.799479pt;}
.h8_c00190{height:5.519401pt;}
.hd_c00190{height:8.303099pt;}
.h21_c00190{height:8.559401pt;}
.h20_c00190{height:8.612734pt;}
.h7_c00190{height:11.038802pt;}
.h2_c00190{height:13.822500pt;}
.h3_c00190{height:16.606198pt;}
.h5_c00190{height:19.341901pt;}
.h12_c00190{height:22.125599pt;}
.h4_c00190{height:24.861302pt;}
.h14_c00190{height:27.645000pt;}
.h10_c00190{height:30.428698pt;}
.h16_c00190{height:33.164401pt;}
.hb_c00190{height:35.948099pt;}
.h17_c00190{height:38.683802pt;}
.h6_c00190{height:41.467500pt;}
.he_c00190{height:44.251198pt;}
.h19_c00190{height:46.986901pt;}
.h18_c00190{height:49.770599pt;}
.h15_c00190{height:52.506302pt;}
.ha_c00190{height:55.290000pt;}
.h1b_c00190{height:58.073698pt;}
.h1c_c00190{height:60.809401pt;}
.h11_c00190{height:63.593099pt;}
.hf_c00190{height:66.328802pt;}
.h9_c00190{height:69.112500pt;}
.h1f_c00190{height:71.896198pt;}
.h1e_c00190{height:77.415599pt;}
.h1d_c00190{height:80.151302pt;}
.h13_c00190{height:85.718698pt;}
.h23_c00190{height:96.757500pt;}
.h22_c00190{height:99.541198pt;}
.h24_c00190{height:105.060599pt;}
.h0_c00190{height:1353.986667pt;}
.h1_c00190{height:1354.000000pt;}
.w0_c00190{width:984.573333pt;}
.w1_c00190{width:984.666667pt;}
.x0_c00190{left:0.000000pt;}
.x115_c00190{left:189.693333pt;}
.x11c_c00190{left:193.533333pt;}
.xc4_c00190{left:198.146667pt;}
.x112_c00190{left:201.213333pt;}
.x10f_c00190{left:204.293333pt;}
.xc5_c00190{left:208.133333pt;}
.x113_c00190{left:211.200000pt;}
.x2a_c00190{left:212.733333pt;}
.xcf_c00190{left:215.040000pt;}
.x119_c00190{left:216.573333pt;}
.x32_c00190{left:218.106667pt;}
.xc6_c00190{left:220.413333pt;}
.x5d_c00190{left:222.720000pt;}
.x2b_c00190{left:225.026667pt;}
.x78_c00190{left:226.560000pt;}
.x15_c00190{left:228.866667pt;}
.x86_c00190{left:230.400000pt;}
.x10d_c00190{left:231.933333pt;}
.x8_c00190{left:235.013333pt;}
.x4b_c00190{left:236.546667pt;}
.x114_c00190{left:238.853333pt;}
.x46_c00190{left:240.386667pt;}
.x110_c00190{left:241.920000pt;}
.xd0_c00190{left:244.226667pt;}
.xcb_c00190{left:251.906667pt;}
.x5e_c00190{left:253.440000pt;}
.xd6_c00190{left:257.280000pt;}
.x16_c00190{left:263.426667pt;}
.x8f_c00190{left:268.800000pt;}
.x10a_c00190{left:271.106667pt;}
.x9_c00190{left:272.640000pt;}
.xf1_c00190{left:274.173333pt;}
.x9d_c00190{left:275.706667pt;}
.xe0_c00190{left:277.253333pt;}
.x33_c00190{left:279.546667pt;}
.x3d_c00190{left:281.853333pt;}
.xd1_c00190{left:283.386667pt;}
.xa7_c00190{left:284.933333pt;}
.xb3_c00190{left:286.466667pt;}
.x67_c00190{left:288.000000pt;}
.x5f_c00190{left:290.306667pt;}
.xad_c00190{left:294.906667pt;}
.xf6_c00190{left:296.453333pt;}
.xe3_c00190{left:297.986667pt;}
.x3e_c00190{left:300.293333pt;}
.xa_c00190{left:301.826667pt;}
.x79_c00190{left:303.360000pt;}
.xa8_c00190{left:304.893333pt;}
.x10b_c00190{left:307.973333pt;}
.x90_c00190{left:311.813333pt;}
.x47_c00190{left:314.106667pt;}
.x34_c00190{left:315.653333pt;}
.x6e_c00190{left:317.186667pt;}
.x10e_c00190{left:319.493333pt;}
.x17_c00190{left:321.026667pt;}
.xb4_c00190{left:322.560000pt;}
.x60_c00190{left:324.093333pt;}
.x91_c00190{left:325.626667pt;}
.x4c_c00190{left:327.173333pt;}
.x35_c00190{left:328.706667pt;}
.x18_c00190{left:330.240000pt;}
.x6f_c00190{left:331.773333pt;}
.xed_c00190{left:334.080000pt;}
.xc0_c00190{left:335.613333pt;}
.x97_c00190{left:337.146667pt;}
.xf7_c00190{left:338.693333pt;}
.x108_c00190{left:340.226667pt;}
.x6_c00190{left:341.760000pt;}
.x54_c00190{left:343.293333pt;}
.x8a_c00190{left:344.826667pt;}
.xc1_c00190{left:347.906667pt;}
.x7f_c00190{left:349.440000pt;}
.x7_c00190{left:350.973333pt;}
.x111_c00190{left:352.506667pt;}
.x7a_c00190{left:354.813333pt;}
.x10c_c00190{left:357.120000pt;}
.x2c_c00190{left:358.653333pt;}
.xe2_c00190{left:361.733333pt;}
.xf8_c00190{left:363.266667pt;}
.x92_c00190{left:364.800000pt;}
.xe4_c00190{left:366.333333pt;}
.xb9_c00190{left:367.866667pt;}
.x55_c00190{left:370.173333pt;}
.xf2_c00190{left:371.706667pt;}
.x3f_c00190{left:373.253333pt;}
.x48_c00190{left:375.546667pt;}
.x117_c00190{left:377.093333pt;}
.x98_c00190{left:379.386667pt;}
.x36_c00190{left:380.933333pt;}
.xf3_c00190{left:382.466667pt;}
.xd2_c00190{left:384.000000pt;}
.x61_c00190{left:385.533333pt;}
.xd7_c00190{left:387.066667pt;}
.xea_c00190{left:389.373333pt;}
.x68_c00190{left:391.680000pt;}
.x9e_c00190{left:395.520000pt;}
.x116_c00190{left:397.053333pt;}
.xa9_c00190{left:399.360000pt;}
.xd8_c00190{left:401.666667pt;}
.x37_c00190{left:404.733333pt;}
.x4d_c00190{left:407.040000pt;}
.x19_c00190{left:408.573333pt;}
.x93_c00190{left:410.880000pt;}
.x4e_c00190{left:414.720000pt;}
.xd3_c00190{left:416.253333pt;}
.x7b_c00190{left:418.560000pt;}
.x11a_c00190{left:420.866667pt;}
.xbd_c00190{left:423.173333pt;}
.x118_c00190{left:426.240043pt;}
.x70_c00190{left:427.773333pt;}
.x9f_c00190{left:429.306667pt;}
.x40_c00190{left:431.613333pt;}
.x1a_c00190{left:434.693333pt;}
.xc7_c00190{left:436.226667pt;}
.x2_c00190{left:438.533333pt;}
.x105_c00190{left:440.066667pt;}
.x2d_c00190{left:442.373333pt;}
.x69_c00190{left:443.906667pt;}
.x71_c00190{left:446.213333pt;}
.x3_c00190{left:448.506667pt;}
.xc9_c00190{left:450.813333pt;}
.xd4_c00190{left:452.346667pt;}
.x8b_c00190{left:453.893333pt;}
.x49_c00190{left:458.493333pt;}
.x72_c00190{left:460.026667pt;}
.x62_c00190{left:461.573333pt;}
.xb_c00190{left:463.866667pt;}
.x1b_c00190{left:466.946667pt;}
.x63_c00190{left:468.480000pt;}
.xd9_c00190{left:470.013333pt;}
.x6a_c00190{left:472.320000pt;}
.x1c_c00190{left:475.386667pt;}
.x4f_c00190{left:479.226667pt;}
.x41_c00190{left:481.533333pt;}
.xe1_c00190{left:483.840000pt;}
.xca_c00190{left:485.373333pt;}
.xc_c00190{left:487.680000pt;}
.x38_c00190{left:489.986667pt;}
.x50_c00190{left:492.293333pt;}
.xae_c00190{left:493.826667pt;}
.x39_c00190{left:495.360000pt;}
.x11b_c00190{left:496.893333pt;}
.xa0_c00190{left:499.200000pt;}
.x56_c00190{left:500.733333pt;}
.xd_c00190{left:504.573333pt;}
.x101_c00190{left:506.106667pt;}
.x73_c00190{left:507.653333pt;}
.xfc_c00190{left:509.186667pt;}
.xff_c00190{left:510.720000pt;}
.x42_c00190{left:512.253333pt;}
.x1d_c00190{left:514.560000pt;}
.xa1_c00190{left:516.093333pt;}
.xdd_c00190{left:518.400000pt;}
.xc2_c00190{left:520.706667pt;}
.x1e_c00190{left:522.240000pt;}
.xbe_c00190{left:523.773333pt;}
.xdb_c00190{left:526.080000pt;}
.x64_c00190{left:529.920000pt;}
.x100_c00190{left:531.453333pt;}
.xa2_c00190{left:533.760000pt;}
.x6b_c00190{left:535.293333pt;}
.xe_c00190{left:537.600000pt;}
.xbf_c00190{left:540.666667pt;}
.xee_c00190{left:546.813333pt;}
.xcc_c00190{left:548.346667pt;}
.x1f_c00190{left:552.960000pt;}
.xf9_c00190{left:555.266667pt;}
.xda_c00190{left:556.800000pt;}
.xd5_c00190{left:558.333333pt;}
.xde_c00190{left:559.866667pt;}
.xa3_c00190{left:562.173333pt;}
.x20_c00190{left:564.480000pt;}
.x3a_c00190{left:566.786667pt;}
.x74_c00190{left:569.093333pt;}
.xe5_c00190{left:570.626667pt;}
.x94_c00190{left:572.160000pt;}
.x21_c00190{left:573.693333pt;}
.x80_c00190{left:576.773333pt;}
.x57_c00190{left:579.066667pt;}
.xaa_c00190{left:580.613333pt;}
.xaf_c00190{left:582.146667pt;}
.x99_c00190{left:585.213333pt;}
.xdc_c00190{left:586.746667pt;}
.x43_c00190{left:589.053333pt;}
.x22_c00190{left:590.586667pt;}
.x65_c00190{left:592.133333pt;}
.xb2_c00190{left:593.666667pt;}
.xef_c00190{left:595.200000pt;}
.x95_c00190{left:599.040000pt;}
.xe8_c00190{left:600.573333pt;}
.x9a_c00190{left:602.106667pt;}
.xf_c00190{left:604.413333pt;}
.xb5_c00190{left:606.720000pt;}
.x8c_c00190{left:608.253333pt;}
.x23_c00190{left:610.560000pt;}
.xb6_c00190{left:613.626667pt;}
.x81_c00190{left:615.933333pt;}
.xeb_c00190{left:619.013333pt;}
.x2e_c00190{left:620.546667pt;}
.x24_c00190{left:622.080000pt;}
.x87_c00190{left:623.613333pt;}
.xb0_c00190{left:625.146667pt;}
.x102_c00190{left:626.693333pt;}
.x25_c00190{left:631.293333pt;}
.xab_c00190{left:635.906667pt;}
.x10_c00190{left:637.440000pt;}
.x106_c00190{left:638.973333pt;}
.x5_c00190{left:640.506667pt;}
.x26_c00190{left:642.053333pt;}
.x82_c00190{left:643.586667pt;}
.x11_c00190{left:645.120000pt;}
.x4a_c00190{left:646.653333pt;}
.x66_c00190{left:650.493333pt;}
.x58_c00190{left:652.800000pt;}
.x27_c00190{left:654.333333pt;}
.xa5_c00190{left:655.866667pt;}
.x9b_c00190{left:657.413333pt;}
.x75_c00190{left:658.946667pt;}
.xc8_c00190{left:660.480000pt;}
.x4_c00190{left:662.786667pt;}
.xfa_c00190{left:664.320000pt;}
.x2f_c00190{left:668.160000pt;}
.x88_c00190{left:670.466667pt;}
.x59_c00190{left:674.306667pt;}
.x103_c00190{left:676.613333pt;}
.x1_c00190{left:678.146667pt;}
.xb1_c00190{left:679.680000pt;}
.xdf_c00190{left:681.986667pt;}
.xba_c00190{left:683.520000pt;}
.xfd_c00190{left:686.586667pt;}
.x76_c00190{left:688.893333pt;}
.x109_c00190{left:691.973333pt;}
.x5a_c00190{left:696.573333pt;}
.x12_c00190{left:698.880000pt;}
.xa4_c00190{left:702.720000pt;}
.xa6_c00190{left:705.786667pt;}
.x96_c00190{left:707.333333pt;}
.x7c_c00190{left:708.866667pt;}
.xbb_c00190{left:710.400000pt;}
.xfb_c00190{left:715.013333pt;}
.xbc_c00190{left:718.080000pt;}
.x107_c00190{left:721.920000pt;}
.x51_c00190{left:723.453333pt;}
.x5b_c00190{left:725.760000pt;}
.xcd_c00190{left:728.066667pt;}
.xb7_c00190{left:729.600000pt;}
.x7d_c00190{left:731.133333pt;}
.x30_c00190{left:734.213333pt;}
.x8d_c00190{left:735.746667pt;}
.x52_c00190{left:737.280000pt;}
.x6c_c00190{left:739.586667pt;}
.x13_c00190{left:741.893333pt;}
.xf4_c00190{left:743.426667pt;}
.x8e_c00190{left:747.266667pt;}
.x3b_c00190{left:749.573333pt;}
.x104_c00190{left:751.866667pt;}
.x5c_c00190{left:754.173333pt;}
.x44_c00190{left:758.013333pt;}
.xb8_c00190{left:760.320000pt;}
.x89_c00190{left:762.626667pt;}
.x31_c00190{left:764.933333pt;}
.xce_c00190{left:766.466667pt;}
.x83_c00190{left:768.000000pt;}
.x28_c00190{left:770.306667pt;}
.x6d_c00190{left:771.840000pt;}
.x77_c00190{left:774.906667pt;}
.x14_c00190{left:776.453333pt;}
.xf5_c00190{left:778.746667pt;}
.xe9_c00190{left:781.053333pt;}
.xc3_c00190{left:783.360000pt;}
.xfe_c00190{left:784.893333pt;}
.x3c_c00190{left:786.426667pt;}
.x45_c00190{left:787.973333pt;}
.xac_c00190{left:789.506667pt;}
.x53_c00190{left:791.040000pt;}
.xf0_c00190{left:796.413333pt;}
.x84_c00190{left:797.946667pt;}
.x9c_c00190{left:800.253333pt;}
.x7e_c00190{left:801.786667pt;}
.xe6_c00190{left:804.866667pt;}
.x29_c00190{left:806.400000pt;}
.x85_c00190{left:810.240000pt;}
.xe7_c00190{left:812.546667pt;}
.xec_c00190{left:819.453333pt;}
.x124_c00190{left:859.386667pt;}
.x125_c00190{left:875.520000pt;}
.x11e_c00190{left:882.426667pt;}
.x11d_c00190{left:892.413333pt;}
.x11f_c00190{left:907.773333pt;}
.x122_c00190{left:916.986667pt;}
.x123_c00190{left:930.813333pt;}
.x120_c00190{left:933.893333pt;}
.x121_c00190{left:941.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_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_7e924d56f2c5182c14875f8c.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.109863;font-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_c00191{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.md7_c00191{transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);}
.mda_c00191{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.ma0_c00191{transform:matrix(0.077475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077475,0.000000,0.000000,0.250000,0,0);}
.m9d_c00191{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);}
.m39_c00191{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m8b_c00191{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m12_c00191{transform:matrix(0.117050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117050,0.000000,0.000000,0.250000,0,0);}
.m15_c00191{transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);}
.ma1_c00191{transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);}
.m2d_c00191{transform:matrix(0.126175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126175,0.000000,0.000000,0.250000,0,0);}
.md9_c00191{transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);}
.mb9_c00191{transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);}
.mbe_c00191{transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);}
.m3c_c00191{transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);}
.m3f_c00191{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00191{transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);}
.m62_c00191{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);}
.m97_c00191{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m22_c00191{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);}
.mde_c00191{transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);}
.mf_c00191{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00191{transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);}
.me0_c00191{transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);}
.mc1_c00191{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00191{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.m4c_c00191{transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);}
.m34_c00191{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.m8e_c00191{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);}
.m9b_c00191{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);}
.m87_c00191{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m52_c00191{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.m13_c00191{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);}
.mdc_c00191{transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);}
.m2c_c00191{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);}
.m96_c00191{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.m9f_c00191{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m93_c00191{transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);}
.m1b_c00191{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);}
.mcb_c00191{transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);}
.mb2_c00191{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.m21_c00191{transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);}
.m7f_c00191{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.md_c00191{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);}
.m79_c00191{transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);}
.mc_c00191{transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);}
.m1e_c00191{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.mad_c00191{transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);}
.mb8_c00191{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m4f_c00191{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.m9e_c00191{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.m6d_c00191{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.maf_c00191{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.mb_c00191{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.mce_c00191{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.m40_c00191{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);}
.mc8_c00191{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.m92_c00191{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.mb3_c00191{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.m57_c00191{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);}
.me3_c00191{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m6a_c00191{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m23_c00191{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);}
.ma6_c00191{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.mbf_c00191{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m59_c00191{transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);}
.m63_c00191{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m18_c00191{transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);}
.mc6_c00191{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.ma7_c00191{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.mc5_c00191{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m10_c00191{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);}
.m7a_c00191{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.m58_c00191{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);}
.m17_c00191{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);}
.m16_c00191{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m74_c00191{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);}
.m2a_c00191{transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);}
.m80_c00191{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.mc2_c00191{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.mac_c00191{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);}
.m3e_c00191{transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);}
.m7e_c00191{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m24_c00191{transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);}
.ma2_c00191{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);}
.m85_c00191{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.md3_c00191{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m4e_c00191{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);}
.m66_c00191{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.mbc_c00191{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.ma8_c00191{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);}
.m6b_c00191{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.m68_c00191{transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);}
.m7d_c00191{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.ma3_c00191{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);}
.mae_c00191{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);}
.mc9_c00191{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);}
.m5c_c00191{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.maa_c00191{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);}
.m3_c00191{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m43_c00191{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);}
.m91_c00191{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);}
.m69_c00191{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m89_c00191{transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);}
.m1c_c00191{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);}
.m75_c00191{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);}
.m2b_c00191{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);}
.m88_c00191{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.mab_c00191{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m65_c00191{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);}
.m53_c00191{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);}
.m7c_c00191{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.m76_c00191{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m56_c00191{transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);}
.mb4_c00191{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);}
.m41_c00191{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.md2_c00191{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.ma9_c00191{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);}
.m30_c00191{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.m7b_c00191{transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);}
.m82_c00191{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);}
.m78_c00191{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.mca_c00191{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m84_c00191{transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);}
.m3b_c00191{transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);}
.mdb_c00191{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);}
.m44_c00191{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);}
.m81_c00191{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.mb5_c00191{transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);}
.m71_c00191{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m46_c00191{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.m73_c00191{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);}
.mb6_c00191{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);}
.m99_c00191{transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);}
.m6f_c00191{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);}
.m61_c00191{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);}
.md1_c00191{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);}
.m67_c00191{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);}
.m55_c00191{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.mb0_c00191{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.me1_c00191{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);}
.m95_c00191{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);}
.m9c_c00191{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);}
.mb7_c00191{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);}
.m26_c00191{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);}
.mc7_c00191{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);}
.m50_c00191{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mba_c00191{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);}
.m25_c00191{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);}
.m3a_c00191{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);}
.mcc_c00191{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);}
.m6c_c00191{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00191{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00191{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m90_c00191{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00191{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);}
.m2e_c00191{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);}
.ma5_c00191{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m42_c00191{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);}
.m1a_c00191{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m38_c00191{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m48_c00191{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);}
.m5d_c00191{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md0_c00191{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);}
.m77_c00191{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);}
.m32_c00191{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c00191{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00191{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);}
.m37_c00191{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00191{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00191{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);}
.mc0_c00191{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m31_c00191{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00191{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m35_c00191{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m33_c00191{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m83_c00191{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c00191{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c00191{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);}
.me_c00191{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c00191{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m29_c00191{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);}
.m54_c00191{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);}
.mdd_c00191{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m51_c00191{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00191{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_c00191{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00191{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);}
.mc3_c00191{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00191{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);}
.m60_c00191{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);}
.m27_c00191{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m49_c00191{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.md5_c00191{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00191{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00191{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m47_c00191{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m8_c00191{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);}
.m9a_c00191{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);}
.m14_c00191{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m7_c00191{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1_c00191{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00191{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mbd_c00191{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00191{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00191{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);}
.md4_c00191{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m72_c00191{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m86_c00191{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00191{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00191{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);}
.m98_c00191{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00191{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.md8_c00191{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.mdf_c00191{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m94_c00191{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma_c00191{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.me2_c00191{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m45_c00191{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00191{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m0_c00191{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.md6_c00191{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m36_c00191{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m70_c00191{transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);}
.m64_c00191{transform:matrix(1.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.450000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00191{transform:matrix(2.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.247500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00191{transform:matrix(3.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c00191{transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);}
.v0_c00191{vertical-align:0.000000px;}
.v1_c00191{vertical-align:6.960000px;}
.ls1_c00191{letter-spacing:0.000000px;}
.ls0_c00191{letter-spacing:34.142700px;}
.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:-8.744400px;}
.ws1_c00191{word-spacing:0.000000px;}
.fc0_c00191{color:transparent;}
.fs1_c00191{font-size:3.456000px;}
.fsf_c00191{font-size:6.000000px;}
.fse_c00191{font-size:6.900000px;}
.fs9_c00191{font-size:10.380000px;}
.fs18_c00191{font-size:13.800000px;}
.fs0_c00191{font-size:17.280000px;}
.fs1c_c00191{font-size:20.760000px;}
.fs19_c00191{font-size:24.180000px;}
.fs6_c00191{font-size:27.660000px;}
.fs2_c00191{font-size:31.080000px;}
.fs1a_c00191{font-size:34.560000px;}
.fs12_c00191{font-size:38.040000px;}
.fs8_c00191{font-size:41.460000px;}
.fsd_c00191{font-size:44.940000px;}
.fs17_c00191{font-size:48.360000px;}
.fsa_c00191{font-size:51.840000px;}
.fs13_c00191{font-size:55.320000px;}
.fs14_c00191{font-size:58.740000px;}
.fs10_c00191{font-size:62.220000px;}
.fs11_c00191{font-size:65.640000px;}
.fs7_c00191{font-size:69.120000px;}
.fs15_c00191{font-size:72.600000px;}
.fs4_c00191{font-size:76.020000px;}
.fs5_c00191{font-size:79.500000px;}
.fs16_c00191{font-size:82.920000px;}
.fs3_c00191{font-size:86.400000px;}
.fsc_c00191{font-size:89.880000px;}
.fsb_c00191{font-size:100.200000px;}
.fs1b_c00191{font-size:120.960000px;}
.fs1d_c00191{font-size:124.440000px;}
.y0_c00191{bottom:0.000000px;}
.y108_c00191{bottom:596.160000px;}
.y107_c00191{bottom:597.885000px;}
.y105_c00191{bottom:599.610000px;}
.y103_c00191{bottom:601.350000px;}
.y106_c00191{bottom:602.205000px;}
.y104_c00191{bottom:603.075000px;}
.y102_c00191{bottom:604.800000px;}
.yfd_c00191{bottom:617.760000px;}
.y100_c00191{bottom:620.355000px;}
.y101_c00191{bottom:622.950000px;}
.yfe_c00191{bottom:625.530000px;}
.yff_c00191{bottom:627.270000px;}
.yf9_c00191{bottom:634.170000px;}
.yfa_c00191{bottom:635.910000px;}
.yf6_c00191{bottom:636.765000px;}
.yfb_c00191{bottom:638.490000px;}
.yf7_c00191{bottom:639.360000px;}
.yf8_c00191{bottom:640.230000px;}
.yfc_c00191{bottom:651.450000px;}
.yf2_c00191{bottom:653.190000px;}
.yf3_c00191{bottom:654.045000px;}
.yf1_c00191{bottom:654.915000px;}
.yf5_c00191{bottom:655.770000px;}
.yf4_c00191{bottom:659.235000px;}
.yea_c00191{bottom:668.730000px;}
.yed_c00191{bottom:669.600000px;}
.yeb_c00191{bottom:670.470000px;}
.yf0_c00191{bottom:672.195000px;}
.yec_c00191{bottom:673.920000px;}
.yee_c00191{bottom:677.370000px;}
.yef_c00191{bottom:679.110000px;}
.ye3_c00191{bottom:686.010000px;}
.ye5_c00191{bottom:686.880000px;}
.ye7_c00191{bottom:689.475000px;}
.ye9_c00191{bottom:690.330000px;}
.ye4_c00191{bottom:691.200000px;}
.ye8_c00191{bottom:692.070000px;}
.ye6_c00191{bottom:692.925000px;}
.ydc_c00191{bottom:702.435000px;}
.yde_c00191{bottom:704.160000px;}
.ye1_c00191{bottom:705.030000px;}
.ye2_c00191{bottom:705.885000px;}
.ydd_c00191{bottom:707.610000px;}
.ydf_c00191{bottom:708.480000px;}
.ye0_c00191{bottom:709.350000px;}
.ydb_c00191{bottom:711.075000px;}
.yd6_c00191{bottom:721.440000px;}
.yda_c00191{bottom:723.165000px;}
.y10d_c00191{bottom:724.035000px;}
.yd7_c00191{bottom:724.890000px;}
.yd8_c00191{bottom:725.760000px;}
.yd9_c00191{bottom:726.630000px;}
.yd3_c00191{bottom:736.995000px;}
.yd4_c00191{bottom:737.850000px;}
.yd5_c00191{bottom:741.315000px;}
.y10c_c00191{bottom:742.170000px;}
.yd0_c00191{bottom:756.000000px;}
.yd2_c00191{bottom:756.870000px;}
.yd1_c00191{bottom:757.725000px;}
.ycf_c00191{bottom:758.595000px;}
.ycd_c00191{bottom:773.280000px;}
.ycb_c00191{bottom:775.875000px;}
.yca_c00191{bottom:776.730000px;}
.yc9_c00191{bottom:777.600000px;}
.ycc_c00191{bottom:778.470000px;}
.yce_c00191{bottom:781.920000px;}
.yc8_c00191{bottom:791.430000px;}
.yc7_c00191{bottom:792.285000px;}
.yc5_c00191{bottom:793.155000px;}
.yc4_c00191{bottom:794.010000px;}
.yc6_c00191{bottom:794.880000px;}
.ybe_c00191{bottom:805.245000px;}
.yc3_c00191{bottom:806.970000px;}
.yc0_c00191{bottom:807.840000px;}
.ybf_c00191{bottom:811.290000px;}
.yc1_c00191{bottom:813.030000px;}
.ybd_c00191{bottom:819.075000px;}
.y10a_c00191{bottom:821.670000px;}
.y109_c00191{bottom:822.525000px;}
.yb9_c00191{bottom:825.990000px;}
.yc2_c00191{bottom:826.845000px;}
.y10b_c00191{bottom:827.715000px;}
.ybc_c00191{bottom:829.440000px;}
.yba_c00191{bottom:830.310000px;}
.ybb_c00191{bottom:832.035000px;}
.yb8_c00191{bottom:842.400000px;}
.yb5_c00191{bottom:844.995000px;}
.yb6_c00191{bottom:845.850000px;}
.yb7_c00191{bottom:851.910000px;}
.yb3_c00191{bottom:852.765000px;}
.yb4_c00191{bottom:854.490000px;}
.yb2_c00191{bottom:860.550000px;}
.yb0_c00191{bottom:862.275000px;}
.yb1_c00191{bottom:864.000000px;}
.yaf_c00191{bottom:878.685000px;}
.yad_c00191{bottom:879.555000px;}
.yae_c00191{bottom:888.195000px;}
.yaa_c00191{bottom:893.370000px;}
.ya8_c00191{bottom:894.240000px;}
.yac_c00191{bottom:895.110000px;}
.ya9_c00191{bottom:896.835000px;}
.ya7_c00191{bottom:897.690000px;}
.yab_c00191{bottom:911.520000px;}
.ya2_c00191{bottom:915.840000px;}
.ya6_c00191{bottom:916.710000px;}
.ya4_c00191{bottom:917.565000px;}
.ya3_c00191{bottom:918.435000px;}
.ya5_c00191{bottom:926.205000px;}
.y9d_c00191{bottom:932.250000px;}
.y9e_c00191{bottom:933.990000px;}
.ya0_c00191{bottom:934.845000px;}
.ya1_c00191{bottom:935.715000px;}
.y9f_c00191{bottom:936.570000px;}
.y9c_c00191{bottom:949.530000px;}
.y9a_c00191{bottom:951.270000px;}
.y9b_c00191{bottom:952.995000px;}
.y97_c00191{bottom:962.490000px;}
.y98_c00191{bottom:964.230000px;}
.y99_c00191{bottom:966.810000px;}
.y96_c00191{bottom:984.090000px;}
.y94_c00191{bottom:984.960000px;}
.y95_c00191{bottom:985.830000px;}
.y93_c00191{bottom:998.790000px;}
.y92_c00191{bottom:1002.240000px;}
.y90_c00191{bottom:1003.110000px;}
.y91_c00191{bottom:1003.965000px;}
.y121_c00191{bottom:1007.430000px;}
.y11f_c00191{bottom:1008.285000px;}
.y120_c00191{bottom:1012.605000px;}
.y8d_c00191{bottom:1016.925000px;}
.y8c_c00191{bottom:1017.795000px;}
.y8e_c00191{bottom:1019.520000px;}
.y8b_c00191{bottom:1020.390000px;}
.y11e_c00191{bottom:1022.970000px;}
.y8f_c00191{bottom:1023.840000px;}
.y11d_c00191{bottom:1025.565000px;}
.y11c_c00191{bottom:1028.160000px;}
.y88_c00191{bottom:1033.350000px;}
.y87_c00191{bottom:1034.205000px;}
.y11a_c00191{bottom:1035.930000px;}
.y8a_c00191{bottom:1037.670000px;}
.y89_c00191{bottom:1039.395000px;}
.y11b_c00191{bottom:1041.120000px;}
.y86_c00191{bottom:1051.485000px;}
.y119_c00191{bottom:1057.530000px;}
.y82_c00191{bottom:1073.085000px;}
.y85_c00191{bottom:1076.550000px;}
.y84_c00191{bottom:1079.130000px;}
.y83_c00191{bottom:1080.000000px;}
.y7e_c00191{bottom:1086.045000px;}
.y7f_c00191{bottom:1086.915000px;}
.y81_c00191{bottom:1088.640000px;}
.y7d_c00191{bottom:1089.510000px;}
.y118_c00191{bottom:1091.235000px;}
.y80_c00191{bottom:1092.960000px;}
.y117_c00191{bottom:1099.005000px;}
.y79_c00191{bottom:1107.645000px;}
.y7c_c00191{bottom:1108.515000px;}
.y7a_c00191{bottom:1111.965000px;}
.y7b_c00191{bottom:1112.835000px;}
.y78_c00191{bottom:1124.925000px;}
.y75_c00191{bottom:1125.795000px;}
.y76_c00191{bottom:1126.650000px;}
.y77_c00191{bottom:1127.520000px;}
.y73_c00191{bottom:1143.075000px;}
.y74_c00191{bottom:1143.930000px;}
.y116_c00191{bottom:1145.670000px;}
.y72_c00191{bottom:1147.395000px;}
.y6b_c00191{bottom:1155.165000px;}
.y114_c00191{bottom:1156.035000px;}
.y115_c00191{bottom:1157.760000px;}
.y6e_c00191{bottom:1159.485000px;}
.y71_c00191{bottom:1160.355000px;}
.y6c_c00191{bottom:1161.210000px;}
.y6d_c00191{bottom:1162.080000px;}
.y70_c00191{bottom:1163.805000px;}
.y6f_c00191{bottom:1164.675000px;}
.y6a_c00191{bottom:1175.910000px;}
.y69_c00191{bottom:1177.635000px;}
.y54_c00191{bottom:1178.490000px;}
.y56_c00191{bottom:1182.810000px;}
.y55_c00191{bottom:1187.130000px;}
.y64_c00191{bottom:1192.320000px;}
.y65_c00191{bottom:1194.045000px;}
.y67_c00191{bottom:1194.915000px;}
.y63_c00191{bottom:1195.770000px;}
.y68_c00191{bottom:1196.640000px;}
.y66_c00191{bottom:1199.235000px;}
.y52_c00191{bottom:1200.090000px;}
.y113_c00191{bottom:1200.960000px;}
.y50_c00191{bottom:1201.830000px;}
.y51_c00191{bottom:1202.685000px;}
.y53_c00191{bottom:1204.410000px;}
.y59_c00191{bottom:1211.325000px;}
.y60_c00191{bottom:1212.195000px;}
.y62_c00191{bottom:1213.920000px;}
.y4c_c00191{bottom:1215.645000px;}
.y4d_c00191{bottom:1216.515000px;}
.y4f_c00191{bottom:1217.370000px;}
.y4b_c00191{bottom:1219.110000px;}
.y5f_c00191{bottom:1221.690000px;}
.y4e_c00191{bottom:1222.560000px;}
.y61_c00191{bottom:1223.430000px;}
.y5e_c00191{bottom:1228.605000px;}
.y5a_c00191{bottom:1229.475000px;}
.y5b_c00191{bottom:1230.330000px;}
.y5c_c00191{bottom:1231.200000px;}
.y5d_c00191{bottom:1232.070000px;}
.y49_c00191{bottom:1233.795000px;}
.y48_c00191{bottom:1234.650000px;}
.y47_c00191{bottom:1235.520000px;}
.y46_c00191{bottom:1237.245000px;}
.y4a_c00191{bottom:1242.435000px;}
.y44_c00191{bottom:1251.930000px;}
.y41_c00191{bottom:1253.670000px;}
.y43_c00191{bottom:1254.525000px;}
.y42_c00191{bottom:1255.395000px;}
.y58_c00191{bottom:1257.120000px;}
.y45_c00191{bottom:1263.165000px;}
.y57_c00191{bottom:1264.890000px;}
.y40_c00191{bottom:1269.210000px;}
.y3d_c00191{bottom:1271.805000px;}
.y3e_c00191{bottom:1272.675000px;}
.y3f_c00191{bottom:1275.270000px;}
.y39_c00191{bottom:1282.170000px;}
.y3a_c00191{bottom:1285.635000px;}
.y3b_c00191{bottom:1286.490000px;}
.y3c_c00191{bottom:1289.955000px;}
.y31_c00191{bottom:1293.405000px;}
.y2f_c00191{bottom:1294.275000px;}
.y32_c00191{bottom:1296.000000px;}
.y112_c00191{bottom:1296.870000px;}
.y36_c00191{bottom:1297.725000px;}
.y30_c00191{bottom:1298.595000px;}
.y38_c00191{bottom:1299.450000px;}
.y37_c00191{bottom:1300.320000px;}
.y33_c00191{bottom:1302.915000px;}
.y34_c00191{bottom:1305.510000px;}
.y35_c00191{bottom:1313.280000px;}
.y29_c00191{bottom:1314.150000px;}
.y28_c00191{bottom:1317.600000px;}
.y2b_c00191{bottom:1318.470000px;}
.y2a_c00191{bottom:1321.050000px;}
.y2e_c00191{bottom:1323.645000px;}
.y2d_c00191{bottom:1324.515000px;}
.y2c_c00191{bottom:1326.240000px;}
.y1f_c00191{bottom:1330.560000px;}
.y25_c00191{bottom:1332.285000px;}
.y26_c00191{bottom:1333.155000px;}
.y24_c00191{bottom:1334.880000px;}
.y20_c00191{bottom:1335.750000px;}
.y21_c00191{bottom:1338.330000px;}
.y22_c00191{bottom:1339.200000px;}
.y23_c00191{bottom:1340.070000px;}
.y27_c00191{bottom:1341.795000px;}
.y12_c00191{bottom:1347.840000px;}
.y14_c00191{bottom:1348.710000px;}
.y15_c00191{bottom:1349.565000px;}
.y17_c00191{bottom:1350.435000px;}
.y1d_c00191{bottom:1353.030000px;}
.y13_c00191{bottom:1353.885000px;}
.y1b_c00191{bottom:1354.755000px;}
.y18_c00191{bottom:1355.610000px;}
.y111_c00191{bottom:1356.480000px;}
.y16_c00191{bottom:1358.205000px;}
.y1a_c00191{bottom:1359.075000px;}
.y1e_c00191{bottom:1359.930000px;}
.y1c_c00191{bottom:1360.800000px;}
.y19_c00191{bottom:1362.525000px;}
.y110_c00191{bottom:1364.250000px;}
.y8_c00191{bottom:1365.990000px;}
.y9_c00191{bottom:1368.570000px;}
.yf_c00191{bottom:1369.440000px;}
.yc_c00191{bottom:1370.310000px;}
.y10_c00191{bottom:1371.165000px;}
.yd_c00191{bottom:1372.035000px;}
.y11_c00191{bottom:1374.630000px;}
.yb_c00191{bottom:1376.355000px;}
.ye_c00191{bottom:1377.210000px;}
.ya_c00191{bottom:1380.675000px;}
.y4_c00191{bottom:1391.910000px;}
.y5_c00191{bottom:1394.490000px;}
.y7_c00191{bottom:1396.230000px;}
.y6_c00191{bottom:1397.085000px;}
.y10f_c00191{bottom:1404.870000px;}
.y2_c00191{bottom:1423.875000px;}
.y3_c00191{bottom:1427.325000px;}
.y10e_c00191{bottom:1433.370000px;}
.y1_c00191{bottom:1444.605000px;}
.h3_c00191{height:3.110063px;}
.h11_c00191{height:5.399414px;}
.h10_c00191{height:6.209326px;}
.hb_c00191{height:9.340986px;}
.h1a_c00191{height:12.418652px;}
.h2_c00191{height:15.550313px;}
.h1f_c00191{height:18.681973px;}
.h1b_c00191{height:21.759639px;}
.h8_c00191{height:24.891299px;}
.h4_c00191{height:27.968965px;}
.h1d_c00191{height:31.100625px;}
.h14_c00191{height:34.232285px;}
.ha_c00191{height:37.309951px;}
.hf_c00191{height:40.441611px;}
.h19_c00191{height:43.519277px;}
.hc_c00191{height:46.650937px;}
.h15_c00191{height:49.782598px;}
.h1c_c00191{height:50.479277px;}
.h16_c00191{height:52.860264px;}
.h12_c00191{height:55.991924px;}
.h13_c00191{height:59.069590px;}
.h9_c00191{height:62.201250px;}
.h17_c00191{height:65.332910px;}
.h6_c00191{height:68.410576px;}
.h7_c00191{height:71.542236px;}
.h18_c00191{height:74.619902px;}
.h5_c00191{height:77.751563px;}
.he_c00191{height:80.883223px;}
.hd_c00191{height:90.170215px;}
.h1e_c00191{height:108.852188px;}
.h20_c00191{height:111.983848px;}
.h1_c00191{height:1503.000000px;}
.h0_c00191{height:1503.360000px;}
.w0_c00191{width:1090.365000px;}
.w1_c00191{width:1090.500000px;}
.x0_c00191{left:0.000000px;}
.xad_c00191{left:8.640000px;}
.x58_c00191{left:17.280000px;}
.xab_c00191{left:20.730000px;}
.xac_c00191{left:38.880000px;}
.xae_c00191{left:49.245000px;}
.xaf_c00191{left:65.670000px;}
.xb0_c00191{left:154.650675px;}
.x55_c00191{left:159.840000px;}
.xa9_c00191{left:187.485000px;}
.xa8_c00191{left:208.230000px;}
.x3d_c00191{left:222.045000px;}
.x7e_c00191{left:223.770000px;}
.x59_c00191{left:225.510000px;}
.x68_c00191{left:227.235000px;}
.x18_c00191{left:229.830000px;}
.xc_c00191{left:231.555000px;}
.x77_c00191{left:233.280000px;}
.x6c_c00191{left:235.875000px;}
.x97_c00191{left:237.600000px;}
.xa2_c00191{left:239.325000px;}
.xaa_c00191{left:241.050000px;}
.x35_c00191{left:248.835000px;}
.x61_c00191{left:250.560000px;}
.x8a_c00191{left:253.155000px;}
.x5a_c00191{left:260.925000px;}
.x62_c00191{left:265.245000px;}
.x69_c00191{left:267.840000px;}
.x78_c00191{left:270.435000px;}
.x98_c00191{left:272.160000px;}
.x7b_c00191{left:274.755000px;}
.x79_c00191{left:276.480000px;}
.x82_c00191{left:278.205000px;}
.x8b_c00191{left:279.930000px;}
.x5b_c00191{left:283.395000px;}
.x19_c00191{left:285.990000px;}
.xd_c00191{left:290.310000px;}
.x36_c00191{left:292.890000px;}
.x9f_c00191{left:294.630000px;}
.x91_c00191{left:297.210000px;}
.x6d_c00191{left:298.950000px;}
.x1a_c00191{left:301.530000px;}
.x7d_c00191{left:303.270000px;}
.x2a_c00191{left:304.995000px;}
.x5c_c00191{left:306.720000px;}
.x64_c00191{left:311.040000px;}
.x84_c00191{left:312.765000px;}
.x6e_c00191{left:315.360000px;}
.x5d_c00191{left:318.810000px;}
.xa3_c00191{left:324.000000px;}
.x8e_c00191{left:325.725000px;}
.xa6_c00191{left:327.450000px;}
.x7c_c00191{left:330.045000px;}
.x95_c00191{left:333.510000px;}
.x3e_c00191{left:336.090000px;}
.x5e_c00191{left:338.685000px;}
.x1_c00191{left:342.150000px;}
.x8c_c00191{left:346.470000px;}
.x1b_c00191{left:349.050000px;}
.xe_c00191{left:352.515000px;}
.x92_c00191{left:354.240000px;}
.x56_c00191{left:356.835000px;}
.x2b_c00191{left:358.560000px;}
.x89_c00191{left:360.285000px;}
.x85_c00191{left:366.330000px;}
.x4_c00191{left:368.925000px;}
.xa0_c00191{left:370.650000px;}
.x5f_c00191{left:374.970000px;}
.x57_c00191{left:379.290000px;}
.x2c_c00191{left:381.885000px;}
.xa1_c00191{left:385.350000px;}
.x9d_c00191{left:387.075000px;}
.x3f_c00191{left:388.800000px;}
.x8f_c00191{left:391.395000px;}
.xf_c00191{left:393.990000px;}
.x7f_c00191{left:395.715000px;}
.x93_c00191{left:397.440000px;}
.x1c_c00191{left:399.165000px;}
.x88_c00191{left:406.080000px;}
.xa7_c00191{left:408.675000px;}
.x86_c00191{left:411.270000px;}
.x1d_c00191{left:416.445000px;}
.x99_c00191{left:418.170000px;}
.x71_c00191{left:420.765000px;}
.x96_c00191{left:425.955000px;}
.x90_c00191{left:427.680000px;}
.xa4_c00191{left:432.000000px;}
.x94_c00191{left:437.190000px;}
.x2d_c00191{left:440.640000px;}
.x65_c00191{left:442.365000px;}
.x80_c00191{left:446.685000px;}
.x74_c00191{left:448.410000px;}
.x6a_c00191{left:453.600000px;}
.x2e_c00191{left:455.325000px;}
.x9e_c00191{left:457.050000px;}
.x66_c00191{left:458.790000px;}
.x9a_c00191{left:463.965000px;}
.x72_c00191{left:469.155000px;}
.x63_c00191{left:473.475000px;}
.x5_c00191{left:476.070000px;}
.x1e_c00191{left:482.115000px;}
.x75_c00191{left:485.565000px;}
.x6f_c00191{left:489.030000px;}
.x81_c00191{left:493.350000px;}
.x60_c00191{left:496.800000px;}
.x8d_c00191{left:499.395000px;}
.x6_c00191{left:501.990000px;}
.x9b_c00191{left:505.440000px;}
.x2f_c00191{left:507.165000px;}
.x1f_c00191{left:508.890000px;}
.x73_c00191{left:510.630000px;}
.x6b_c00191{left:513.210000px;}
.x10_c00191{left:516.675000px;}
.x7a_c00191{left:518.400000px;}
.xa5_c00191{left:520.125000px;}
.x67_c00191{left:521.850000px;}
.x87_c00191{left:525.315000px;}
.x40_c00191{left:529.635000px;}
.x9c_c00191{left:531.360000px;}
.x70_c00191{left:533.085000px;}
.x7_c00191{left:535.680000px;}
.x76_c00191{left:539.130000px;}
.x20_c00191{left:545.190000px;}
.x11_c00191{left:547.770000px;}
.x83_c00191{left:549.510000px;}
.x21_c00191{left:554.685000px;}
.x37_c00191{left:556.410000px;}
.x53_c00191{left:558.150000px;}
.x4d_c00191{left:559.875000px;}
.x12_c00191{left:561.600000px;}
.x4a_c00191{left:563.325000px;}
.x8_c00191{left:565.920000px;}
.x38_c00191{left:578.880000px;}
.x48_c00191{left:580.605000px;}
.x9_c00191{left:596.160000px;}
.x13_c00191{left:604.800000px;}
.x44_c00191{left:615.165000px;}
.xa_c00191{left:618.630000px;}
.x14_c00191{left:628.125000px;}
.x49_c00191{left:634.170000px;}
.x30_c00191{left:639.360000px;}
.x22_c00191{left:646.275000px;}
.x39_c00191{left:649.725000px;}
.x4b_c00191{left:660.960000px;}
.x23_c00191{left:665.280000px;}
.x15_c00191{left:669.600000px;}
.x4e_c00191{left:680.835000px;}
.x31_c00191{left:687.750000px;}
.xbb_c00191{left:697.245000px;}
.x46_c00191{left:702.435000px;}
.x54_c00191{left:713.670000px;}
.xbc_c00191{left:717.120000px;}
.x24_c00191{left:727.485000px;}
.x4f_c00191{left:729.210000px;}
.xb1_c00191{left:740.445000px;}
.x3a_c00191{left:744.765000px;}
.x32_c00191{left:751.680000px;}
.x25_c00191{left:756.870000px;}
.xb_c00191{left:760.320000px;}
.x50_c00191{left:769.830000px;}
.x41_c00191{left:778.470000px;}
.x33_c00191{left:785.370000px;}
.x16_c00191{left:796.605000px;}
.x26_c00191{left:800.070000px;}
.x4c_c00191{left:804.390000px;}
.x2_c00191{left:806.970000px;}
.x34_c00191{left:808.710000px;}
.x43_c00191{left:811.290000px;}
.xbd_c00191{left:816.480000px;}
.x45_c00191{left:818.205000px;}
.x3_c00191{left:820.800000px;}
.xc0_c00191{left:823.395000px;}
.x3b_c00191{left:826.845000px;}
.xbe_c00191{left:828.570000px;}
.x42_c00191{left:830.310000px;}
.x27_c00191{left:836.355000px;}
.xbf_c00191{left:838.080000px;}
.x51_c00191{left:839.805000px;}
.x28_c00191{left:842.400000px;}
.x17_c00191{left:845.850000px;}
.x52_c00191{left:848.445000px;}
.x3c_c00191{left:857.085000px;}
.xc1_c00191{left:865.725000px;}
.x47_c00191{left:870.915000px;}
.x29_c00191{left:873.510000px;}
.xc2_c00191{left:911.520000px;}
.xb2_c00191{left:914.115000px;}
.xc3_c00191{left:917.565408px;}
.xb8_c00191{left:945.210000px;}
.xb6_c00191{left:966.810000px;}
.xb7_c00191{left:974.595000px;}
.xb5_c00191{left:979.770000px;}
.xb9_c00191{left:986.685000px;}
.xb4_c00191{left:994.470000px;}
.xba_c00191{left:997.920000px;}
.xb3_c00191{left:1014.330000px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.v1_c00191{vertical-align:6.186667pt;}
.ls1_c00191{letter-spacing:0.000000pt;}
.ls0_c00191{letter-spacing:30.349067pt;}
.ws0_c00191{word-spacing:-7.772800pt;}
.ws1_c00191{word-spacing:0.000000pt;}
.fs1_c00191{font-size:3.072000pt;}
.fsf_c00191{font-size:5.333333pt;}
.fse_c00191{font-size:6.133333pt;}
.fs9_c00191{font-size:9.226667pt;}
.fs18_c00191{font-size:12.266667pt;}
.fs0_c00191{font-size:15.360000pt;}
.fs1c_c00191{font-size:18.453333pt;}
.fs19_c00191{font-size:21.493333pt;}
.fs6_c00191{font-size:24.586667pt;}
.fs2_c00191{font-size:27.626667pt;}
.fs1a_c00191{font-size:30.720000pt;}
.fs12_c00191{font-size:33.813333pt;}
.fs8_c00191{font-size:36.853333pt;}
.fsd_c00191{font-size:39.946667pt;}
.fs17_c00191{font-size:42.986667pt;}
.fsa_c00191{font-size:46.080000pt;}
.fs13_c00191{font-size:49.173333pt;}
.fs14_c00191{font-size:52.213333pt;}
.fs10_c00191{font-size:55.306667pt;}
.fs11_c00191{font-size:58.346667pt;}
.fs7_c00191{font-size:61.440000pt;}
.fs15_c00191{font-size:64.533333pt;}
.fs4_c00191{font-size:67.573333pt;}
.fs5_c00191{font-size:70.666667pt;}
.fs16_c00191{font-size:73.706667pt;}
.fs3_c00191{font-size:76.800000pt;}
.fsc_c00191{font-size:79.893333pt;}
.fsb_c00191{font-size:89.066667pt;}
.fs1b_c00191{font-size:107.520000pt;}
.fs1d_c00191{font-size:110.613333pt;}
.y0_c00191{bottom:0.000000pt;}
.y108_c00191{bottom:529.920000pt;}
.y107_c00191{bottom:531.453333pt;}
.y105_c00191{bottom:532.986667pt;}
.y103_c00191{bottom:534.533333pt;}
.y106_c00191{bottom:535.293333pt;}
.y104_c00191{bottom:536.066667pt;}
.y102_c00191{bottom:537.600000pt;}
.yfd_c00191{bottom:549.120000pt;}
.y100_c00191{bottom:551.426667pt;}
.y101_c00191{bottom:553.733333pt;}
.yfe_c00191{bottom:556.026667pt;}
.yff_c00191{bottom:557.573333pt;}
.yf9_c00191{bottom:563.706667pt;}
.yfa_c00191{bottom:565.253333pt;}
.yf6_c00191{bottom:566.013333pt;}
.yfb_c00191{bottom:567.546667pt;}
.yf7_c00191{bottom:568.320000pt;}
.yf8_c00191{bottom:569.093333pt;}
.yfc_c00191{bottom:579.066667pt;}
.yf2_c00191{bottom:580.613333pt;}
.yf3_c00191{bottom:581.373333pt;}
.yf1_c00191{bottom:582.146667pt;}
.yf5_c00191{bottom:582.906667pt;}
.yf4_c00191{bottom:585.986667pt;}
.yea_c00191{bottom:594.426667pt;}
.yed_c00191{bottom:595.200000pt;}
.yeb_c00191{bottom:595.973333pt;}
.yf0_c00191{bottom:597.506667pt;}
.yec_c00191{bottom:599.040000pt;}
.yee_c00191{bottom:602.106667pt;}
.yef_c00191{bottom:603.653333pt;}
.ye3_c00191{bottom:609.786667pt;}
.ye5_c00191{bottom:610.560000pt;}
.ye7_c00191{bottom:612.866667pt;}
.ye9_c00191{bottom:613.626667pt;}
.ye4_c00191{bottom:614.400000pt;}
.ye8_c00191{bottom:615.173333pt;}
.ye6_c00191{bottom:615.933333pt;}
.ydc_c00191{bottom:624.386667pt;}
.yde_c00191{bottom:625.920000pt;}
.ye1_c00191{bottom:626.693333pt;}
.ye2_c00191{bottom:627.453333pt;}
.ydd_c00191{bottom:628.986667pt;}
.ydf_c00191{bottom:629.760000pt;}
.ye0_c00191{bottom:630.533333pt;}
.ydb_c00191{bottom:632.066667pt;}
.yd6_c00191{bottom:641.280000pt;}
.yda_c00191{bottom:642.813333pt;}
.y10d_c00191{bottom:643.586667pt;}
.yd7_c00191{bottom:644.346667pt;}
.yd8_c00191{bottom:645.120000pt;}
.yd9_c00191{bottom:645.893333pt;}
.yd3_c00191{bottom:655.106667pt;}
.yd4_c00191{bottom:655.866667pt;}
.yd5_c00191{bottom:658.946667pt;}
.y10c_c00191{bottom:659.706667pt;}
.yd0_c00191{bottom:672.000000pt;}
.yd2_c00191{bottom:672.773333pt;}
.yd1_c00191{bottom:673.533333pt;}
.ycf_c00191{bottom:674.306667pt;}
.ycd_c00191{bottom:687.360000pt;}
.ycb_c00191{bottom:689.666667pt;}
.yca_c00191{bottom:690.426667pt;}
.yc9_c00191{bottom:691.200000pt;}
.ycc_c00191{bottom:691.973333pt;}
.yce_c00191{bottom:695.040000pt;}
.yc8_c00191{bottom:703.493333pt;}
.yc7_c00191{bottom:704.253333pt;}
.yc5_c00191{bottom:705.026667pt;}
.yc4_c00191{bottom:705.786667pt;}
.yc6_c00191{bottom:706.560000pt;}
.ybe_c00191{bottom:715.773333pt;}
.yc3_c00191{bottom:717.306667pt;}
.yc0_c00191{bottom:718.080000pt;}
.ybf_c00191{bottom:721.146667pt;}
.yc1_c00191{bottom:722.693333pt;}
.ybd_c00191{bottom:728.066667pt;}
.y10a_c00191{bottom:730.373333pt;}
.y109_c00191{bottom:731.133333pt;}
.yb9_c00191{bottom:734.213333pt;}
.yc2_c00191{bottom:734.973333pt;}
.y10b_c00191{bottom:735.746667pt;}
.ybc_c00191{bottom:737.280000pt;}
.yba_c00191{bottom:738.053333pt;}
.ybb_c00191{bottom:739.586667pt;}
.yb8_c00191{bottom:748.800000pt;}
.yb5_c00191{bottom:751.106667pt;}
.yb6_c00191{bottom:751.866667pt;}
.yb7_c00191{bottom:757.253333pt;}
.yb3_c00191{bottom:758.013333pt;}
.yb4_c00191{bottom:759.546667pt;}
.yb2_c00191{bottom:764.933333pt;}
.yb0_c00191{bottom:766.466667pt;}
.yb1_c00191{bottom:768.000000pt;}
.yaf_c00191{bottom:781.053333pt;}
.yad_c00191{bottom:781.826667pt;}
.yae_c00191{bottom:789.506667pt;}
.yaa_c00191{bottom:794.106667pt;}
.ya8_c00191{bottom:794.880000pt;}
.yac_c00191{bottom:795.653333pt;}
.ya9_c00191{bottom:797.186667pt;}
.ya7_c00191{bottom:797.946667pt;}
.yab_c00191{bottom:810.240000pt;}
.ya2_c00191{bottom:814.080000pt;}
.ya6_c00191{bottom:814.853333pt;}
.ya4_c00191{bottom:815.613333pt;}
.ya3_c00191{bottom:816.386667pt;}
.ya5_c00191{bottom:823.293333pt;}
.y9d_c00191{bottom:828.666667pt;}
.y9e_c00191{bottom:830.213333pt;}
.ya0_c00191{bottom:830.973333pt;}
.ya1_c00191{bottom:831.746667pt;}
.y9f_c00191{bottom:832.506667pt;}
.y9c_c00191{bottom:844.026667pt;}
.y9a_c00191{bottom:845.573333pt;}
.y9b_c00191{bottom:847.106667pt;}
.y97_c00191{bottom:855.546667pt;}
.y98_c00191{bottom:857.093333pt;}
.y99_c00191{bottom:859.386667pt;}
.y96_c00191{bottom:874.746667pt;}
.y94_c00191{bottom:875.520000pt;}
.y95_c00191{bottom:876.293333pt;}
.y93_c00191{bottom:887.813333pt;}
.y92_c00191{bottom:890.880000pt;}
.y90_c00191{bottom:891.653333pt;}
.y91_c00191{bottom:892.413333pt;}
.y121_c00191{bottom:895.493333pt;}
.y11f_c00191{bottom:896.253333pt;}
.y120_c00191{bottom:900.093333pt;}
.y8d_c00191{bottom:903.933333pt;}
.y8c_c00191{bottom:904.706667pt;}
.y8e_c00191{bottom:906.240000pt;}
.y8b_c00191{bottom:907.013333pt;}
.y11e_c00191{bottom:909.306667pt;}
.y8f_c00191{bottom:910.080000pt;}
.y11d_c00191{bottom:911.613333pt;}
.y11c_c00191{bottom:913.920000pt;}
.y88_c00191{bottom:918.533333pt;}
.y87_c00191{bottom:919.293333pt;}
.y11a_c00191{bottom:920.826667pt;}
.y8a_c00191{bottom:922.373333pt;}
.y89_c00191{bottom:923.906667pt;}
.y11b_c00191{bottom:925.440000pt;}
.y86_c00191{bottom:934.653333pt;}
.y119_c00191{bottom:940.026667pt;}
.y82_c00191{bottom:953.853333pt;}
.y85_c00191{bottom:956.933333pt;}
.y84_c00191{bottom:959.226667pt;}
.y83_c00191{bottom:960.000000pt;}
.y7e_c00191{bottom:965.373333pt;}
.y7f_c00191{bottom:966.146667pt;}
.y81_c00191{bottom:967.680000pt;}
.y7d_c00191{bottom:968.453333pt;}
.y118_c00191{bottom:969.986667pt;}
.y80_c00191{bottom:971.520000pt;}
.y117_c00191{bottom:976.893333pt;}
.y79_c00191{bottom:984.573333pt;}
.y7c_c00191{bottom:985.346667pt;}
.y7a_c00191{bottom:988.413333pt;}
.y7b_c00191{bottom:989.186667pt;}
.y78_c00191{bottom:999.933333pt;}
.y75_c00191{bottom:1000.706667pt;}
.y76_c00191{bottom:1001.466667pt;}
.y77_c00191{bottom:1002.240000pt;}
.y73_c00191{bottom:1016.066667pt;}
.y74_c00191{bottom:1016.826667pt;}
.y116_c00191{bottom:1018.373333pt;}
.y72_c00191{bottom:1019.906667pt;}
.y6b_c00191{bottom:1026.813333pt;}
.y114_c00191{bottom:1027.586667pt;}
.y115_c00191{bottom:1029.120000pt;}
.y6e_c00191{bottom:1030.653333pt;}
.y71_c00191{bottom:1031.426667pt;}
.y6c_c00191{bottom:1032.186667pt;}
.y6d_c00191{bottom:1032.960000pt;}
.y70_c00191{bottom:1034.493333pt;}
.y6f_c00191{bottom:1035.266667pt;}
.y6a_c00191{bottom:1045.253333pt;}
.y69_c00191{bottom:1046.786667pt;}
.y54_c00191{bottom:1047.546667pt;}
.y56_c00191{bottom:1051.386667pt;}
.y55_c00191{bottom:1055.226667pt;}
.y64_c00191{bottom:1059.840000pt;}
.y65_c00191{bottom:1061.373333pt;}
.y67_c00191{bottom:1062.146667pt;}
.y63_c00191{bottom:1062.906667pt;}
.y68_c00191{bottom:1063.680000pt;}
.y66_c00191{bottom:1065.986667pt;}
.y52_c00191{bottom:1066.746667pt;}
.y113_c00191{bottom:1067.520000pt;}
.y50_c00191{bottom:1068.293333pt;}
.y51_c00191{bottom:1069.053333pt;}
.y53_c00191{bottom:1070.586667pt;}
.y59_c00191{bottom:1076.733333pt;}
.y60_c00191{bottom:1077.506667pt;}
.y62_c00191{bottom:1079.040000pt;}
.y4c_c00191{bottom:1080.573333pt;}
.y4d_c00191{bottom:1081.346667pt;}
.y4f_c00191{bottom:1082.106667pt;}
.y4b_c00191{bottom:1083.653333pt;}
.y5f_c00191{bottom:1085.946667pt;}
.y4e_c00191{bottom:1086.720000pt;}
.y61_c00191{bottom:1087.493333pt;}
.y5e_c00191{bottom:1092.093333pt;}
.y5a_c00191{bottom:1092.866667pt;}
.y5b_c00191{bottom:1093.626667pt;}
.y5c_c00191{bottom:1094.400000pt;}
.y5d_c00191{bottom:1095.173333pt;}
.y49_c00191{bottom:1096.706667pt;}
.y48_c00191{bottom:1097.466667pt;}
.y47_c00191{bottom:1098.240000pt;}
.y46_c00191{bottom:1099.773333pt;}
.y4a_c00191{bottom:1104.386667pt;}
.y44_c00191{bottom:1112.826667pt;}
.y41_c00191{bottom:1114.373333pt;}
.y43_c00191{bottom:1115.133333pt;}
.y42_c00191{bottom:1115.906667pt;}
.y58_c00191{bottom:1117.440000pt;}
.y45_c00191{bottom:1122.813333pt;}
.y57_c00191{bottom:1124.346667pt;}
.y40_c00191{bottom:1128.186667pt;}
.y3d_c00191{bottom:1130.493333pt;}
.y3e_c00191{bottom:1131.266667pt;}
.y3f_c00191{bottom:1133.573333pt;}
.y39_c00191{bottom:1139.706667pt;}
.y3a_c00191{bottom:1142.786667pt;}
.y3b_c00191{bottom:1143.546667pt;}
.y3c_c00191{bottom:1146.626667pt;}
.y31_c00191{bottom:1149.693333pt;}
.y2f_c00191{bottom:1150.466667pt;}
.y32_c00191{bottom:1152.000000pt;}
.y112_c00191{bottom:1152.773333pt;}
.y36_c00191{bottom:1153.533333pt;}
.y30_c00191{bottom:1154.306667pt;}
.y38_c00191{bottom:1155.066667pt;}
.y37_c00191{bottom:1155.840000pt;}
.y33_c00191{bottom:1158.146667pt;}
.y34_c00191{bottom:1160.453333pt;}
.y35_c00191{bottom:1167.360000pt;}
.y29_c00191{bottom:1168.133333pt;}
.y28_c00191{bottom:1171.200000pt;}
.y2b_c00191{bottom:1171.973333pt;}
.y2a_c00191{bottom:1174.266667pt;}
.y2e_c00191{bottom:1176.573333pt;}
.y2d_c00191{bottom:1177.346667pt;}
.y2c_c00191{bottom:1178.880000pt;}
.y1f_c00191{bottom:1182.720000pt;}
.y25_c00191{bottom:1184.253333pt;}
.y26_c00191{bottom:1185.026667pt;}
.y24_c00191{bottom:1186.560000pt;}
.y20_c00191{bottom:1187.333333pt;}
.y21_c00191{bottom:1189.626667pt;}
.y22_c00191{bottom:1190.400000pt;}
.y23_c00191{bottom:1191.173333pt;}
.y27_c00191{bottom:1192.706667pt;}
.y12_c00191{bottom:1198.080000pt;}
.y14_c00191{bottom:1198.853333pt;}
.y15_c00191{bottom:1199.613333pt;}
.y17_c00191{bottom:1200.386667pt;}
.y1d_c00191{bottom:1202.693333pt;}
.y13_c00191{bottom:1203.453333pt;}
.y1b_c00191{bottom:1204.226667pt;}
.y18_c00191{bottom:1204.986667pt;}
.y111_c00191{bottom:1205.760000pt;}
.y16_c00191{bottom:1207.293333pt;}
.y1a_c00191{bottom:1208.066667pt;}
.y1e_c00191{bottom:1208.826667pt;}
.y1c_c00191{bottom:1209.600000pt;}
.y19_c00191{bottom:1211.133333pt;}
.y110_c00191{bottom:1212.666667pt;}
.y8_c00191{bottom:1214.213333pt;}
.y9_c00191{bottom:1216.506667pt;}
.yf_c00191{bottom:1217.280000pt;}
.yc_c00191{bottom:1218.053333pt;}
.y10_c00191{bottom:1218.813333pt;}
.yd_c00191{bottom:1219.586667pt;}
.y11_c00191{bottom:1221.893333pt;}
.yb_c00191{bottom:1223.426667pt;}
.ye_c00191{bottom:1224.186667pt;}
.ya_c00191{bottom:1227.266667pt;}
.y4_c00191{bottom:1237.253333pt;}
.y5_c00191{bottom:1239.546667pt;}
.y7_c00191{bottom:1241.093333pt;}
.y6_c00191{bottom:1241.853333pt;}
.y10f_c00191{bottom:1248.773333pt;}
.y2_c00191{bottom:1265.666667pt;}
.y3_c00191{bottom:1268.733333pt;}
.y10e_c00191{bottom:1274.106667pt;}
.y1_c00191{bottom:1284.093333pt;}
.h3_c00191{height:2.764500pt;}
.h11_c00191{height:4.799479pt;}
.h10_c00191{height:5.519401pt;}
.hb_c00191{height:8.303099pt;}
.h1a_c00191{height:11.038802pt;}
.h2_c00191{height:13.822500pt;}
.h1f_c00191{height:16.606198pt;}
.h1b_c00191{height:19.341901pt;}
.h8_c00191{height:22.125599pt;}
.h4_c00191{height:24.861302pt;}
.h1d_c00191{height:27.645000pt;}
.h14_c00191{height:30.428698pt;}
.ha_c00191{height:33.164401pt;}
.hf_c00191{height:35.948099pt;}
.h19_c00191{height:38.683802pt;}
.hc_c00191{height:41.467500pt;}
.h15_c00191{height:44.251198pt;}
.h1c_c00191{height:44.870469pt;}
.h16_c00191{height:46.986901pt;}
.h12_c00191{height:49.770599pt;}
.h13_c00191{height:52.506302pt;}
.h9_c00191{height:55.290000pt;}
.h17_c00191{height:58.073698pt;}
.h6_c00191{height:60.809401pt;}
.h7_c00191{height:63.593099pt;}
.h18_c00191{height:66.328802pt;}
.h5_c00191{height:69.112500pt;}
.he_c00191{height:71.896198pt;}
.hd_c00191{height:80.151302pt;}
.h1e_c00191{height:96.757500pt;}
.h20_c00191{height:99.541198pt;}
.h1_c00191{height:1336.000000pt;}
.h0_c00191{height:1336.320000pt;}
.w0_c00191{width:969.213333pt;}
.w1_c00191{width:969.333333pt;}
.x0_c00191{left:0.000000pt;}
.xad_c00191{left:7.680000pt;}
.x58_c00191{left:15.360000pt;}
.xab_c00191{left:18.426667pt;}
.xac_c00191{left:34.560000pt;}
.xae_c00191{left:43.773333pt;}
.xaf_c00191{left:58.373333pt;}
.xb0_c00191{left:137.467267pt;}
.x55_c00191{left:142.080000pt;}
.xa9_c00191{left:166.653333pt;}
.xa8_c00191{left:185.093333pt;}
.x3d_c00191{left:197.373333pt;}
.x7e_c00191{left:198.906667pt;}
.x59_c00191{left:200.453333pt;}
.x68_c00191{left:201.986667pt;}
.x18_c00191{left:204.293333pt;}
.xc_c00191{left:205.826667pt;}
.x77_c00191{left:207.360000pt;}
.x6c_c00191{left:209.666667pt;}
.x97_c00191{left:211.200000pt;}
.xa2_c00191{left:212.733333pt;}
.xaa_c00191{left:214.266667pt;}
.x35_c00191{left:221.186667pt;}
.x61_c00191{left:222.720000pt;}
.x8a_c00191{left:225.026667pt;}
.x5a_c00191{left:231.933333pt;}
.x62_c00191{left:235.773333pt;}
.x69_c00191{left:238.080000pt;}
.x78_c00191{left:240.386667pt;}
.x98_c00191{left:241.920000pt;}
.x7b_c00191{left:244.226667pt;}
.x79_c00191{left:245.760000pt;}
.x82_c00191{left:247.293333pt;}
.x8b_c00191{left:248.826667pt;}
.x5b_c00191{left:251.906667pt;}
.x19_c00191{left:254.213333pt;}
.xd_c00191{left:258.053333pt;}
.x36_c00191{left:260.346667pt;}
.x9f_c00191{left:261.893333pt;}
.x91_c00191{left:264.186667pt;}
.x6d_c00191{left:265.733333pt;}
.x1a_c00191{left:268.026667pt;}
.x7d_c00191{left:269.573333pt;}
.x2a_c00191{left:271.106667pt;}
.x5c_c00191{left:272.640000pt;}
.x64_c00191{left:276.480000pt;}
.x84_c00191{left:278.013333pt;}
.x6e_c00191{left:280.320000pt;}
.x5d_c00191{left:283.386667pt;}
.xa3_c00191{left:288.000000pt;}
.x8e_c00191{left:289.533333pt;}
.xa6_c00191{left:291.066667pt;}
.x7c_c00191{left:293.373333pt;}
.x95_c00191{left:296.453333pt;}
.x3e_c00191{left:298.746667pt;}
.x5e_c00191{left:301.053333pt;}
.x1_c00191{left:304.133333pt;}
.x8c_c00191{left:307.973333pt;}
.x1b_c00191{left:310.266667pt;}
.xe_c00191{left:313.346667pt;}
.x92_c00191{left:314.880000pt;}
.x56_c00191{left:317.186667pt;}
.x2b_c00191{left:318.720000pt;}
.x89_c00191{left:320.253333pt;}
.x85_c00191{left:325.626667pt;}
.x4_c00191{left:327.933333pt;}
.xa0_c00191{left:329.466667pt;}
.x5f_c00191{left:333.306667pt;}
.x57_c00191{left:337.146667pt;}
.x2c_c00191{left:339.453333pt;}
.xa1_c00191{left:342.533333pt;}
.x9d_c00191{left:344.066667pt;}
.x3f_c00191{left:345.600000pt;}
.x8f_c00191{left:347.906667pt;}
.xf_c00191{left:350.213333pt;}
.x7f_c00191{left:351.746667pt;}
.x93_c00191{left:353.280000pt;}
.x1c_c00191{left:354.813333pt;}
.x88_c00191{left:360.960000pt;}
.xa7_c00191{left:363.266667pt;}
.x86_c00191{left:365.573333pt;}
.x1d_c00191{left:370.173333pt;}
.x99_c00191{left:371.706667pt;}
.x71_c00191{left:374.013333pt;}
.x96_c00191{left:378.626667pt;}
.x90_c00191{left:380.160000pt;}
.xa4_c00191{left:384.000000pt;}
.x94_c00191{left:388.613333pt;}
.x2d_c00191{left:391.680000pt;}
.x65_c00191{left:393.213333pt;}
.x80_c00191{left:397.053333pt;}
.x74_c00191{left:398.586667pt;}
.x6a_c00191{left:403.200000pt;}
.x2e_c00191{left:404.733333pt;}
.x9e_c00191{left:406.266667pt;}
.x66_c00191{left:407.813333pt;}
.x9a_c00191{left:412.413333pt;}
.x72_c00191{left:417.026667pt;}
.x63_c00191{left:420.866667pt;}
.x5_c00191{left:423.173333pt;}
.x1e_c00191{left:428.546667pt;}
.x75_c00191{left:431.613333pt;}
.x6f_c00191{left:434.693333pt;}
.x81_c00191{left:438.533333pt;}
.x60_c00191{left:441.600000pt;}
.x8d_c00191{left:443.906667pt;}
.x6_c00191{left:446.213333pt;}
.x9b_c00191{left:449.280000pt;}
.x2f_c00191{left:450.813333pt;}
.x1f_c00191{left:452.346667pt;}
.x73_c00191{left:453.893333pt;}
.x6b_c00191{left:456.186667pt;}
.x10_c00191{left:459.266667pt;}
.x7a_c00191{left:460.800000pt;}
.xa5_c00191{left:462.333333pt;}
.x67_c00191{left:463.866667pt;}
.x87_c00191{left:466.946667pt;}
.x40_c00191{left:470.786667pt;}
.x9c_c00191{left:472.320000pt;}
.x70_c00191{left:473.853333pt;}
.x7_c00191{left:476.160000pt;}
.x76_c00191{left:479.226667pt;}
.x20_c00191{left:484.613333pt;}
.x11_c00191{left:486.906667pt;}
.x83_c00191{left:488.453333pt;}
.x21_c00191{left:493.053333pt;}
.x37_c00191{left:494.586667pt;}
.x53_c00191{left:496.133333pt;}
.x4d_c00191{left:497.666667pt;}
.x12_c00191{left:499.200000pt;}
.x4a_c00191{left:500.733333pt;}
.x8_c00191{left:503.040000pt;}
.x38_c00191{left:514.560000pt;}
.x48_c00191{left:516.093333pt;}
.x9_c00191{left:529.920000pt;}
.x13_c00191{left:537.600000pt;}
.x44_c00191{left:546.813333pt;}
.xa_c00191{left:549.893333pt;}
.x14_c00191{left:558.333333pt;}
.x49_c00191{left:563.706667pt;}
.x30_c00191{left:568.320000pt;}
.x22_c00191{left:574.466667pt;}
.x39_c00191{left:577.533333pt;}
.x4b_c00191{left:587.520000pt;}
.x23_c00191{left:591.360000pt;}
.x15_c00191{left:595.200000pt;}
.x4e_c00191{left:605.186667pt;}
.x31_c00191{left:611.333333pt;}
.xbb_c00191{left:619.773333pt;}
.x46_c00191{left:624.386667pt;}
.x54_c00191{left:634.373333pt;}
.xbc_c00191{left:637.440000pt;}
.x24_c00191{left:646.653333pt;}
.x4f_c00191{left:648.186667pt;}
.xb1_c00191{left:658.173333pt;}
.x3a_c00191{left:662.013333pt;}
.x32_c00191{left:668.160000pt;}
.x25_c00191{left:672.773333pt;}
.xb_c00191{left:675.840000pt;}
.x50_c00191{left:684.293333pt;}
.x41_c00191{left:691.973333pt;}
.x33_c00191{left:698.106667pt;}
.x16_c00191{left:708.093333pt;}
.x26_c00191{left:711.173333pt;}
.x4c_c00191{left:715.013333pt;}
.x2_c00191{left:717.306667pt;}
.x34_c00191{left:718.853333pt;}
.x43_c00191{left:721.146667pt;}
.xbd_c00191{left:725.760000pt;}
.x45_c00191{left:727.293333pt;}
.x3_c00191{left:729.600000pt;}
.xc0_c00191{left:731.906667pt;}
.x3b_c00191{left:734.973333pt;}
.xbe_c00191{left:736.506667pt;}
.x42_c00191{left:738.053333pt;}
.x27_c00191{left:743.426667pt;}
.xbf_c00191{left:744.960000pt;}
.x51_c00191{left:746.493333pt;}
.x28_c00191{left:748.800000pt;}
.x17_c00191{left:751.866667pt;}
.x52_c00191{left:754.173333pt;}
.x3c_c00191{left:761.853333pt;}
.xc1_c00191{left:769.533333pt;}
.x47_c00191{left:774.146667pt;}
.x29_c00191{left:776.453333pt;}
.xc2_c00191{left:810.240000pt;}
.xb2_c00191{left:812.546667pt;}
.xc3_c00191{left:815.613696pt;}
.xb8_c00191{left:840.186667pt;}
.xb6_c00191{left:859.386667pt;}
.xb7_c00191{left:866.306667pt;}
.xb5_c00191{left:870.906667pt;}
.xb9_c00191{left:877.053333pt;}
.xb4_c00191{left:883.973333pt;}
.xba_c00191{left:887.040000pt;}
.xb3_c00191{left:901.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_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_9b7562e35e440c2f85ae66bf.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.109863;font-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_c00192{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mf8_c00192{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m15b_c00192{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m196_c00192{transform:matrix(0.076125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076125,0.000000,0.000000,0.250000,0,0);}
.m147_c00192{transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);}
.m14e_c00192{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m194_c00192{transform:matrix(0.084725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084725,0.000000,0.000000,0.250000,0,0);}
.me_c00192{transform:matrix(0.094800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094800,0.000000,0.000000,0.250000,0,0);}
.m160_c00192{transform:matrix(0.095775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095775,0.000000,0.000000,0.250000,0,0);}
.m195_c00192{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m23_c00192{transform:matrix(0.106425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106425,0.000000,0.000000,0.250000,0,0);}
.m14b_c00192{transform:matrix(0.106650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106650,0.000000,0.000000,0.250000,0,0);}
.mf2_c00192{transform:matrix(0.110725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110725,0.000000,0.000000,0.250000,0,0);}
.m17_c00192{transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);}
.mef_c00192{transform:matrix(0.115200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115200,0.000000,0.000000,0.250000,0,0);}
.m79_c00192{transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00192{transform:matrix(0.118125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118125,0.000000,0.000000,0.250000,0,0);}
.mbd_c00192{transform:matrix(0.119100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119100,0.000000,0.000000,0.250000,0,0);}
.m137_c00192{transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);}
.m188_c00192{transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);}
.m1a1_c00192{transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);}
.m35_c00192{transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);}
.m6c_c00192{transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);}
.md_c00192{transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);}
.m81_c00192{transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);}
.m4d_c00192{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m157_c00192{transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);}
.m19e_c00192{transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);}
.m2d_c00192{transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);}
.m193_c00192{transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);}
.m97_c00192{transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);}
.m94_c00192{transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);}
.m17f_c00192{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);}
.m191_c00192{transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);}
.m169_c00192{transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);}
.m154_c00192{transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);}
.m2_c00192{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m145_c00192{transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);}
.m187_c00192{transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);}
.m151_c00192{transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);}
.m7d_c00192{transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);}
.m150_c00192{transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);}
.m19d_c00192{transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);}
.m18c_c00192{transform:matrix(0.149125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149125,0.000000,0.000000,0.250000,0,0);}
.mc8_c00192{transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);}
.m168_c00192{transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);}
.me7_c00192{transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);}
.m10c_c00192{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.m149_c00192{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.mca_c00192{transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);}
.m192_c00192{transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);}
.mee_c00192{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);}
.m72_c00192{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);}
.mf3_c00192{transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);}
.m7a_c00192{transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);}
.m21_c00192{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m182_c00192{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);}
.m7f_c00192{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.mf5_c00192{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00192{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m179_c00192{transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);}
.m1e_c00192{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.m155_c00192{transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);}
.m185_c00192{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.m43_c00192{transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);}
.mf4_c00192{transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);}
.mcc_c00192{transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);}
.m142_c00192{transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);}
.m114_c00192{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m89_c00192{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m11d_c00192{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.md5_c00192{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m12c_c00192{transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);}
.m156_c00192{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.mb2_c00192{transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);}
.m199_c00192{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m11e_c00192{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);}
.m121_c00192{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m15e_c00192{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m14d_c00192{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m11a_c00192{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m120_c00192{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.ma9_c00192{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.m180_c00192{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.mb7_c00192{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.m6e_c00192{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);}
.m132_c00192{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);}
.m42_c00192{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.m19_c00192{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);}
.m124_c00192{transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);}
.mc5_c00192{transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);}
.m17d_c00192{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m181_c00192{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);}
.m140_c00192{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);}
.m12d_c00192{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m17a_c00192{transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);}
.ma8_c00192{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00192{transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);}
.mdd_c00192{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);}
.m16e_c00192{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.mb1_c00192{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m139_c00192{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.me6_c00192{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.m87_c00192{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m19a_c00192{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m166_c00192{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);}
.ma2_c00192{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m13f_c00192{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.m18a_c00192{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);}
.mf_c00192{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);}
.m77_c00192{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m190_c00192{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);}
.m167_c00192{transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);}
.m11b_c00192{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.m54_c00192{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);}
.m174_c00192{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.md4_c00192{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m197_c00192{transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);}
.mda_c00192{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.m184_c00192{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m131_c00192{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);}
.m15d_c00192{transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);}
.m33_c00192{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);}
.mdc_c00192{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m1a6_c00192{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.md8_c00192{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m62_c00192{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);}
.m31_c00192{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.m67_c00192{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m14c_c00192{transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);}
.m171_c00192{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m12b_c00192{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m90_c00192{transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);}
.m119_c00192{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.m5f_c00192{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);}
.m122_c00192{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);}
.m106_c00192{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);}
.m5b_c00192{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m22_c00192{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.m107_c00192{transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);}
.m65_c00192{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m170_c00192{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);}
.m110_c00192{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);}
.mfe_c00192{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);}
.mde_c00192{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m69_c00192{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);}
.m2c_c00192{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);}
.m17b_c00192{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m96_c00192{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);}
.m161_c00192{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.m173_c00192{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.m45_c00192{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);}
.m15_c00192{transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);}
.m183_c00192{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);}
.mdf_c00192{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);}
.m3e_c00192{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);}
.m9e_c00192{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.md3_c00192{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m11f_c00192{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);}
.m144_c00192{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);}
.m10b_c00192{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.med_c00192{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);}
.mbe_c00192{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.m112_c00192{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m130_c00192{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.m8d_c00192{transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);}
.m198_c00192{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);}
.m123_c00192{transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);}
.ma1_c00192{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);}
.mfc_c00192{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m71_c00192{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.m49_c00192{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);}
.m104_c00192{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.mc7_c00192{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);}
.m9d_c00192{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m164_c00192{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);}
.m113_c00192{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);}
.m10f_c00192{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.m39_c00192{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m19b_c00192{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m135_c00192{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m1c_c00192{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m102_c00192{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);}
.m74_c00192{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.me3_c00192{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.m37_c00192{transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);}
.m8f_c00192{transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);}
.md1_c00192{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m12a_c00192{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m143_c00192{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);}
.m24_c00192{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);}
.m3c_c00192{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);}
.mc3_c00192{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);}
.m63_c00192{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m2e_c00192{transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);}
.m136_c00192{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.me4_c00192{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);}
.m15c_c00192{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.maf_c00192{transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);}
.ma6_c00192{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m141_c00192{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);}
.m61_c00192{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m16c_c00192{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);}
.m36_c00192{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.mb3_c00192{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);}
.mf1_c00192{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.m41_c00192{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);}
.m13e_c00192{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);}
.m18d_c00192{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.ma5_c00192{transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);}
.m176_c00192{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);}
.m109_c00192{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);}
.m1a2_c00192{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);}
.m4c_c00192{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);}
.m118_c00192{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.m128_c00192{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);}
.m162_c00192{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.mc6_c00192{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.m101_c00192{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);}
.m9b_c00192{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);}
.m3b_c00192{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);}
.m111_c00192{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.mf6_c00192{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);}
.m152_c00192{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.me0_c00192{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);}
.m40_c00192{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);}
.m129_c00192{transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);}
.me5_c00192{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);}
.m175_c00192{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);}
.m4b_c00192{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);}
.mf9_c00192{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m9c_c00192{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);}
.mf7_c00192{transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);}
.mbf_c00192{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);}
.mfa_c00192{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);}
.m105_c00192{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m165_c00192{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);}
.m7b_c00192{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);}
.m177_c00192{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);}
.m73_c00192{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m70_c00192{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.m189_c00192{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);}
.m92_c00192{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.mb6_c00192{transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);}
.m153_c00192{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m14a_c00192{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);}
.md9_c00192{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.md7_c00192{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);}
.m158_c00192{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);}
.m1a_c00192{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);}
.ma4_c00192{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.m133_c00192{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);}
.mb9_c00192{transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);}
.mc0_c00192{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);}
.m148_c00192{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m12e_c00192{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);}
.m125_c00192{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);}
.m19c_c00192{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);}
.mfd_c00192{transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);}
.mc4_c00192{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);}
.m75_c00192{transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);}
.m7c_c00192{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m13_c00192{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.m57_c00192{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);}
.mbc_c00192{transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);}
.m117_c00192{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m19f_c00192{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m134_c00192{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);}
.mab_c00192{transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);}
.m13a_c00192{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);}
.mba_c00192{transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);}
.m8a_c00192{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);}
.mcf_c00192{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);}
.md2_c00192{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);}
.mfb_c00192{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);}
.m14f_c00192{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);}
.m4a_c00192{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);}
.m9_c00192{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);}
.m12f_c00192{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.mcd_c00192{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);}
.me1_c00192{transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);}
.mc2_c00192{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);}
.m18b_c00192{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);}
.mce_c00192{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);}
.m66_c00192{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);}
.m13d_c00192{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);}
.mae_c00192{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);}
.m5_c00192{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);}
.mb5_c00192{transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);}
.ma0_c00192{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);}
.m59_c00192{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);}
.mea_c00192{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);}
.m51_c00192{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m10a_c00192{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);}
.mf0_c00192{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m17e_c00192{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.meb_c00192{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);}
.m9f_c00192{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);}
.m18_c00192{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00192{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);}
.m8b_c00192{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);}
.me2_c00192{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);}
.m91_c00192{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);}
.m86_c00192{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m83_c00192{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m32_c00192{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m116_c00192{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_c00192{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m26_c00192{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);}
.m47_c00192{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);}
.m20_c00192{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m80_c00192{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);}
.mb_c00192{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m84_c00192{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00192{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);}
.m38_c00192{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6a_c00192{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);}
.m1f_c00192{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);}
.m58_c00192{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00192{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00192{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);}
.m108_c00192{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00192{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m46_c00192{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);}
.mec_c00192{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m60_c00192{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00192{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m52_c00192{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00192{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.maa_c00192{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00192{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m53_c00192{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00192{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);}
.m8_c00192{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md0_c00192{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb0_c00192{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00192{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);}
.m55_c00192{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);}
.m85_c00192{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m100_c00192{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m30_c00192{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);}
.m5d_c00192{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m15a_c00192{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m64_c00192{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);}
.m25_c00192{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m17c_c00192{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m29_c00192{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);}
.md6_c00192{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mff_c00192{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m82_c00192{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00192{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00192{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m172_c00192{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m6_c00192{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);}
.ma3_c00192{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00192{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);}
.m159_c00192{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mc_c00192{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3_c00192{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mc9_c00192{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m56_c00192{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m68_c00192{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m146_c00192{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);}
.mdb_c00192{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m28_c00192{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m8e_c00192{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00192{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00192{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);}
.m103_c00192{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m88_c00192{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);}
.m7_c00192{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m14_c00192{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00192{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4_c00192{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00192{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m186_c00192{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m98_c00192{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m76_c00192{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m44_c00192{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);}
.m10_c00192{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.me9_c00192{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m0_c00192{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00192{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m163_c00192{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m13c_c00192{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m1a0_c00192{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m115_c00192{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00192{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.m27_c00192{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m18f_c00192{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);}
.mbb_c00192{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m9a_c00192{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m16f_c00192{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m34_c00192{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1a4_c00192{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);}
.m1_c00192{transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);}
.me8_c00192{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m1a3_c00192{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m178_c00192{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m78_c00192{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m48_c00192{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m11_c00192{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m16b_c00192{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m16d_c00192{transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);}
.mad_c00192{transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);}
.m1a5_c00192{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00192{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m10d_c00192{transform:matrix(1.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.187500,0.000000,0.000000,0.250000,0,0);}
.m95_c00192{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00192{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m15f_c00192{transform:matrix(1.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.370000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00192{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m138_c00192{transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);}
.m18e_c00192{transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.610000,0.000000,0.000000,0.250000,0,0);}
.mb8_c00192{transform:matrix(2.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.217500,0.000000,0.000000,0.250000,0,0);}
.mac_c00192{transform:matrix(2.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c00192{transform:matrix(2.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.412500,0.000000,0.000000,0.250000,0,0);}
.m126_c00192{transform:matrix(2.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.960000,0.000000,0.000000,0.250000,0,0);}
.m16_c00192{transform:matrix(3.005000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.005000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.005000,0.000000,0.000000,0.250000,0,0);}
.m16a_c00192{transform:matrix(3.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.585000,0.000000,0.000000,0.250000,0,0);}
.m93_c00192{transform:matrix(4.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.032500,0.000000,0.000000,0.250000,0,0);}
.m127_c00192{transform:matrix(4.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.262500,0.000000,0.000000,0.250000,0,0);}
.m99_c00192{transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.760000,0.000000,0.000000,0.250000,0,0);}
.v2_c00192{vertical-align:-6.900000px;}
.v0_c00192{vertical-align:0.000000px;}
.v3_c00192{vertical-align:3.420000px;}
.v1_c00192{vertical-align:10.380000px;}
.v4_c00192{vertical-align:13.800000px;}
.ls1_c00192{letter-spacing:0.000000px;}
.ls0_c00192{letter-spacing:55.404600px;}
.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;}
}
.ws4_c00192{word-spacing:-32.251560px;}
.ws2_c00192{word-spacing:-9.333360px;}
.ws3_c00192{word-spacing:-5.403840px;}
.ws5_c00192{word-spacing:0.000000px;}
.ws1_c00192{word-spacing:42.860833px;}
.ws0_c00192{word-spacing:72.864000px;}
._0_c00192{width:5.931480px;}
.fc0_c00192{color:transparent;}
.fs2_c00192{font-size:3.456000px;}
.fs8_c00192{font-size:6.000000px;}
.fse_c00192{font-size:6.900000px;}
.fs6_c00192{font-size:10.380000px;}
.fsc_c00192{font-size:13.800000px;}
.fs3_c00192{font-size:17.280000px;}
.fs7_c00192{font-size:20.760000px;}
.fs19_c00192{font-size:24.180000px;}
.fs1e_c00192{font-size:27.660000px;}
.fs4_c00192{font-size:31.080000px;}
.fs1_c00192{font-size:34.560000px;}
.fs16_c00192{font-size:38.040000px;}
.fs15_c00192{font-size:41.460000px;}
.fs5_c00192{font-size:44.940000px;}
.fs17_c00192{font-size:48.360000px;}
.fs13_c00192{font-size:51.840000px;}
.fs12_c00192{font-size:55.320000px;}
.fs1a_c00192{font-size:58.740000px;}
.fsd_c00192{font-size:62.220000px;}
.fs10_c00192{font-size:65.640000px;}
.fsf_c00192{font-size:69.120000px;}
.fs9_c00192{font-size:72.600000px;}
.fs1f_c00192{font-size:76.020000px;}
.fs18_c00192{font-size:79.500000px;}
.fs21_c00192{font-size:82.920000px;}
.fs1c_c00192{font-size:86.400000px;}
.fsa_c00192{font-size:89.880000px;}
.fs14_c00192{font-size:96.780000px;}
.fsb_c00192{font-size:107.160000px;}
.fs1b_c00192{font-size:110.580000px;}
.fs11_c00192{font-size:120.960000px;}
.fs20_c00192{font-size:124.440000px;}
.fs1d_c00192{font-size:127.860000px;}
.fs0_c00192{font-size:134.760000px;}
.y0_c00192{bottom:0.000000px;}
.y214_c00192{bottom:110.595000px;}
.y213_c00192{bottom:121.830000px;}
.y20a_c00192{bottom:292.035000px;}
.y20b_c00192{bottom:292.890000px;}
.y20c_c00192{bottom:294.630000px;}
.y208_c00192{bottom:298.080000px;}
.y209_c00192{bottom:298.950000px;}
.y207_c00192{bottom:311.040000px;}
.y203_c00192{bottom:328.320000px;}
.y206_c00192{bottom:330.045000px;}
.y202_c00192{bottom:333.510000px;}
.y204_c00192{bottom:334.365000px;}
.y205_c00192{bottom:348.195000px;}
.y200_c00192{bottom:349.920000px;}
.y1fe_c00192{bottom:351.645000px;}
.y201_c00192{bottom:353.370000px;}
.y1fd_c00192{bottom:355.110000px;}
.y1ff_c00192{bottom:355.965000px;}
.y1fb_c00192{bottom:368.070000px;}
.y1fa_c00192{bottom:368.925000px;}
.y1f8_c00192{bottom:369.795000px;}
.y1fc_c00192{bottom:370.650000px;}
.y1f9_c00192{bottom:372.390000px;}
.y1f7_c00192{bottom:383.610000px;}
.y1f3_c00192{bottom:386.205000px;}
.y1f5_c00192{bottom:387.930000px;}
.y1f6_c00192{bottom:388.800000px;}
.y1f2_c00192{bottom:391.395000px;}
.y1f4_c00192{bottom:392.250000px;}
.y1f1_c00192{bottom:393.120000px;}
.y1ee_c00192{bottom:403.485000px;}
.y1ed_c00192{bottom:404.355000px;}
.y1f0_c00192{bottom:406.080000px;}
.y1ef_c00192{bottom:407.805000px;}
.y1ec_c00192{bottom:423.360000px;}
.y1eb_c00192{bottom:424.230000px;}
.y1e8_c00192{bottom:425.085000px;}
.y1e6_c00192{bottom:425.955000px;}
.y1e9_c00192{bottom:426.810000px;}
.y1e7_c00192{bottom:427.680000px;}
.y1ea_c00192{bottom:430.275000px;}
.y1e1_c00192{bottom:432.870000px;}
.y1e3_c00192{bottom:435.450000px;}
.y1df_c00192{bottom:437.190000px;}
.y1e5_c00192{bottom:438.045000px;}
.y1e4_c00192{bottom:438.915000px;}
.y1dd_c00192{bottom:439.770000px;}
.y1e0_c00192{bottom:443.235000px;}
.y1de_c00192{bottom:444.090000px;}
.y1e2_c00192{bottom:447.555000px;}
.y1db_c00192{bottom:450.150000px;}
.y1dc_c00192{bottom:451.005000px;}
.y1d9_c00192{bottom:452.730000px;}
.y1d7_c00192{bottom:454.470000px;}
.y1da_c00192{bottom:455.325000px;}
.y1d8_c00192{bottom:456.195000px;}
.y1d5_c00192{bottom:457.050000px;}
.y1d6_c00192{bottom:458.790000px;}
.y1d0_c00192{bottom:470.010000px;}
.y1cf_c00192{bottom:470.880000px;}
.y1d3_c00192{bottom:472.605000px;}
.y1d2_c00192{bottom:473.475000px;}
.y1cb_c00192{bottom:474.330000px;}
.y1ca_c00192{bottom:475.200000px;}
.y1ce_c00192{bottom:476.925000px;}
.y1cd_c00192{bottom:477.795000px;}
.y1cc_c00192{bottom:478.650000px;}
.y1d1_c00192{bottom:481.245000px;}
.y1d4_c00192{bottom:482.115000px;}
.y1c7_c00192{bottom:483.840000px;}
.y1c8_c00192{bottom:485.565000px;}
.y1c6_c00192{bottom:486.435000px;}
.y1c9_c00192{bottom:488.160000px;}
.y1c4_c00192{bottom:489.885000px;}
.y1c5_c00192{bottom:490.755000px;}
.y1c3_c00192{bottom:491.610000px;}
.y1c2_c00192{bottom:492.480000px;}
.y1bf_c00192{bottom:502.845000px;}
.y1be_c00192{bottom:503.715000px;}
.y1bc_c00192{bottom:506.310000px;}
.y1bd_c00192{bottom:508.035000px;}
.y1bb_c00192{bottom:508.890000px;}
.y1c1_c00192{bottom:510.630000px;}
.y1c0_c00192{bottom:513.210000px;}
.y1ba_c00192{bottom:520.995000px;}
.y1b9_c00192{bottom:523.590000px;}
.y1b8_c00192{bottom:525.315000px;}
.y1b7_c00192{bottom:526.170000px;}
.y1b3_c00192{bottom:527.040000px;}
.y1b5_c00192{bottom:527.910000px;}
.y1b6_c00192{bottom:528.765000px;}
.y1b4_c00192{bottom:530.490000px;}
.y1b2_c00192{bottom:534.810000px;}
.y1b1_c00192{bottom:538.275000px;}
.y1af_c00192{bottom:540.870000px;}
.y1b0_c00192{bottom:541.725000px;}
.y1ad_c00192{bottom:542.595000px;}
.y1ac_c00192{bottom:543.450000px;}
.y1ab_c00192{bottom:545.190000px;}
.y1ae_c00192{bottom:547.770000px;}
.y1aa_c00192{bottom:552.960000px;}
.y1a9_c00192{bottom:553.830000px;}
.y1a8_c00192{bottom:554.685000px;}
.y1a7_c00192{bottom:555.555000px;}
.y1a4_c00192{bottom:557.280000px;}
.y1a5_c00192{bottom:558.150000px;}
.y1a1_c00192{bottom:559.005000px;}
.y1a3_c00192{bottom:562.470000px;}
.y1a2_c00192{bottom:566.790000px;}
.y1a6_c00192{bottom:570.240000px;}
.y19f_c00192{bottom:571.965000px;}
.y1a0_c00192{bottom:572.835000px;}
.y19e_c00192{bottom:574.560000px;}
.y19d_c00192{bottom:575.430000px;}
.y19c_c00192{bottom:576.285000px;}
.y19a_c00192{bottom:577.155000px;}
.y19b_c00192{bottom:578.880000px;}
.y197_c00192{bottom:579.750000px;}
.y198_c00192{bottom:580.605000px;}
.y199_c00192{bottom:583.200000px;}
.y195_c00192{bottom:588.390000px;}
.y194_c00192{bottom:590.115000px;}
.y196_c00192{bottom:590.970000px;}
.y192_c00192{bottom:597.030000px;}
.y191_c00192{bottom:598.755000px;}
.y190_c00192{bottom:600.480000px;}
.y18d_c00192{bottom:602.205000px;}
.y18f_c00192{bottom:603.075000px;}
.y193_c00192{bottom:603.930000px;}
.y18e_c00192{bottom:607.395000px;}
.y18b_c00192{bottom:611.715000px;}
.y18a_c00192{bottom:613.440000px;}
.y188_c00192{bottom:616.035000px;}
.y18c_c00192{bottom:616.890000px;}
.y189_c00192{bottom:619.485000px;}
.y187_c00192{bottom:622.080000px;}
.y185_c00192{bottom:623.805000px;}
.y184_c00192{bottom:626.400000px;}
.y186_c00192{bottom:627.270000px;}
.y183_c00192{bottom:628.125000px;}
.y182_c00192{bottom:629.850000px;}
.y180_c00192{bottom:631.590000px;}
.y181_c00192{bottom:633.315000px;}
.y17e_c00192{bottom:634.170000px;}
.y17f_c00192{bottom:635.040000px;}
.y17d_c00192{bottom:635.910000px;}
.y17b_c00192{bottom:641.085000px;}
.y17c_c00192{bottom:643.680000px;}
.y17a_c00192{bottom:644.550000px;}
.y178_c00192{bottom:646.275000px;}
.y179_c00192{bottom:647.130000px;}
.y176_c00192{bottom:650.595000px;}
.y177_c00192{bottom:651.450000px;}
.y174_c00192{bottom:652.320000px;}
.y175_c00192{bottom:655.770000px;}
.y170_c00192{bottom:660.090000px;}
.y172_c00192{bottom:660.960000px;}
.y16e_c00192{bottom:661.830000px;}
.y171_c00192{bottom:662.685000px;}
.y173_c00192{bottom:664.410000px;}
.y16d_c00192{bottom:666.150000px;}
.y16b_c00192{bottom:667.005000px;}
.y169_c00192{bottom:667.875000px;}
.y16c_c00192{bottom:670.470000px;}
.y16a_c00192{bottom:671.325000px;}
.y16f_c00192{bottom:675.645000px;}
.y168_c00192{bottom:677.370000px;}
.y166_c00192{bottom:678.240000px;}
.y167_c00192{bottom:679.110000px;}
.y165_c00192{bottom:679.965000px;}
.y164_c00192{bottom:682.560000px;}
.y162_c00192{bottom:683.430000px;}
.y160_c00192{bottom:684.285000px;}
.y161_c00192{bottom:685.155000px;}
.y163_c00192{bottom:686.010000px;}
.y15f_c00192{bottom:689.475000px;}
.y15e_c00192{bottom:692.925000px;}
.y15d_c00192{bottom:696.390000px;}
.y15c_c00192{bottom:697.245000px;}
.y15b_c00192{bottom:698.115000px;}
.y159_c00192{bottom:698.970000px;}
.y156_c00192{bottom:701.565000px;}
.y15a_c00192{bottom:702.435000px;}
.y155_c00192{bottom:703.290000px;}
.y158_c00192{bottom:708.480000px;}
.y153_c00192{bottom:710.205000px;}
.y152_c00192{bottom:711.075000px;}
.y151_c00192{bottom:711.930000px;}
.y150_c00192{bottom:712.800000px;}
.y154_c00192{bottom:713.670000px;}
.y14f_c00192{bottom:714.525000px;}
.y14d_c00192{bottom:715.395000px;}
.y14c_c00192{bottom:717.120000px;}
.y157_c00192{bottom:717.990000px;}
.y14e_c00192{bottom:719.715000px;}
.y14a_c00192{bottom:720.570000px;}
.y148_c00192{bottom:721.440000px;}
.y14b_c00192{bottom:722.310000px;}
.y149_c00192{bottom:724.035000px;}
.y147_c00192{bottom:727.485000px;}
.y144_c00192{bottom:729.210000px;}
.y146_c00192{bottom:730.080000px;}
.y143_c00192{bottom:730.950000px;}
.y142_c00192{bottom:731.805000px;}
.y141_c00192{bottom:732.675000px;}
.y145_c00192{bottom:735.270000px;}
.y13c_c00192{bottom:736.125000px;}
.y13e_c00192{bottom:736.995000px;}
.y140_c00192{bottom:737.850000px;}
.y13f_c00192{bottom:739.590000px;}
.y13d_c00192{bottom:740.445000px;}
.y139_c00192{bottom:749.955000px;}
.y138_c00192{bottom:750.810000px;}
.y13b_c00192{bottom:752.550000px;}
.y13a_c00192{bottom:753.405000px;}
.y137_c00192{bottom:754.275000px;}
.y134_c00192{bottom:756.000000px;}
.y136_c00192{bottom:756.870000px;}
.y135_c00192{bottom:758.595000px;}
.y133_c00192{bottom:764.640000px;}
.y130_c00192{bottom:767.235000px;}
.y132_c00192{bottom:768.960000px;}
.y131_c00192{bottom:769.830000px;}
.y12d_c00192{bottom:771.555000px;}
.y12e_c00192{bottom:773.280000px;}
.y12f_c00192{bottom:774.150000px;}
.y12c_c00192{bottom:775.875000px;}
.y12b_c00192{bottom:781.050000px;}
.y12a_c00192{bottom:782.790000px;}
.y129_c00192{bottom:784.515000px;}
.y128_c00192{bottom:785.370000px;}
.y127_c00192{bottom:787.110000px;}
.y125_c00192{bottom:788.835000px;}
.y126_c00192{bottom:792.285000px;}
.y124_c00192{bottom:797.475000px;}
.y122_c00192{bottom:800.925000px;}
.y120_c00192{bottom:802.650000px;}
.y123_c00192{bottom:803.520000px;}
.y11e_c00192{bottom:805.245000px;}
.y121_c00192{bottom:806.970000px;}
.y11d_c00192{bottom:807.840000px;}
.y11f_c00192{bottom:808.710000px;}
.y11c_c00192{bottom:812.160000px;}
.y11b_c00192{bottom:815.610000px;}
.y11a_c00192{bottom:818.205000px;}
.y119_c00192{bottom:823.395000px;}
.y118_c00192{bottom:824.250000px;}
.y117_c00192{bottom:825.120000px;}
.y116_c00192{bottom:825.990000px;}
.y115_c00192{bottom:826.845000px;}
.y8_c00192{bottom:833.760000px;}
.y114_c00192{bottom:834.630000px;}
.y112_c00192{bottom:836.355000px;}
.y7_c00192{bottom:837.210000px;}
.y110_c00192{bottom:838.080000px;}
.y111_c00192{bottom:838.950000px;}
.y10f_c00192{bottom:839.805000px;}
.y113_c00192{bottom:840.675000px;}
.y10e_c00192{bottom:841.530000px;}
.y6_c00192{bottom:848.445000px;}
.y10d_c00192{bottom:851.910000px;}
.y109_c00192{bottom:854.490000px;}
.y10c_c00192{bottom:857.085000px;}
.y10a_c00192{bottom:857.955000px;}
.y10b_c00192{bottom:858.810000px;}
.y108_c00192{bottom:861.405000px;}
.y107_c00192{bottom:866.595000px;}
.y106_c00192{bottom:870.045000px;}
.y104_c00192{bottom:871.770000px;}
.y105_c00192{bottom:875.235000px;}
.y103_c00192{bottom:876.090000px;}
.y101_c00192{bottom:876.960000px;}
.y102_c00192{bottom:877.830000px;}
.yfd_c00192{bottom:884.730000px;}
.y100_c00192{bottom:886.470000px;}
.yfe_c00192{bottom:889.050000px;}
.yfc_c00192{bottom:889.920000px;}
.yff_c00192{bottom:891.645000px;}
.yfa_c00192{bottom:892.515000px;}
.yf7_c00192{bottom:894.240000px;}
.yf8_c00192{bottom:895.110000px;}
.yf9_c00192{bottom:895.965000px;}
.yfb_c00192{bottom:902.880000px;}
.yf5_c00192{bottom:904.605000px;}
.yf6_c00192{bottom:906.330000px;}
.yf2_c00192{bottom:907.200000px;}
.yf0_c00192{bottom:908.070000px;}
.yf4_c00192{bottom:910.650000px;}
.yf1_c00192{bottom:911.520000px;}
.yee_c00192{bottom:912.390000px;}
.yef_c00192{bottom:914.115000px;}
.yf3_c00192{bottom:921.030000px;}
.yeb_c00192{bottom:921.885000px;}
.ye9_c00192{bottom:922.755000px;}
.yed_c00192{bottom:923.610000px;}
.yec_c00192{bottom:924.480000px;}
.yea_c00192{bottom:925.350000px;}
.ye6_c00192{bottom:926.205000px;}
.ye8_c00192{bottom:927.075000px;}
.ye7_c00192{bottom:927.930000px;}
.ye5_c00192{bottom:932.250000px;}
.ye4_c00192{bottom:933.120000px;}
.ye2_c00192{bottom:939.165000px;}
.ye1_c00192{bottom:940.035000px;}
.ydf_c00192{bottom:940.890000px;}
.ye3_c00192{bottom:941.760000px;}
.ydc_c00192{bottom:942.630000px;}
.ye0_c00192{bottom:943.485000px;}
.yd8_c00192{bottom:944.355000px;}
.ydd_c00192{bottom:946.080000px;}
.yde_c00192{bottom:946.950000px;}
.yd6_c00192{bottom:948.675000px;}
.yd9_c00192{bottom:952.995000px;}
.yda_c00192{bottom:953.850000px;}
.yd5_c00192{bottom:955.590000px;}
.ydb_c00192{bottom:959.040000px;}
.yd4_c00192{bottom:959.910000px;}
.yd3_c00192{bottom:960.765000px;}
.yd1_c00192{bottom:961.635000px;}
.yd2_c00192{bottom:962.490000px;}
.yd7_c00192{bottom:963.360000px;}
.yce_c00192{bottom:964.230000px;}
.yd0_c00192{bottom:965.085000px;}
.ycf_c00192{bottom:966.810000px;}
.y5_c00192{bottom:967.680000px;}
.ycb_c00192{bottom:974.595000px;}
.yca_c00192{bottom:975.450000px;}
.ycd_c00192{bottom:977.190000px;}
.ycc_c00192{bottom:978.045000px;}
.yc8_c00192{bottom:978.915000px;}
.yc6_c00192{bottom:979.770000px;}
.yc9_c00192{bottom:981.510000px;}
.yc7_c00192{bottom:982.365000px;}
.yc4_c00192{bottom:984.090000px;}
.yc5_c00192{bottom:984.960000px;}
.yc3_c00192{bottom:985.830000px;}
.yc1_c00192{bottom:993.600000px;}
.yc0_c00192{bottom:994.470000px;}
.ybe_c00192{bottom:995.325000px;}
.ybf_c00192{bottom:996.195000px;}
.ybd_c00192{bottom:997.050000px;}
.ybb_c00192{bottom:998.790000px;}
.yc2_c00192{bottom:1000.515000px;}
.ybc_c00192{bottom:1001.370000px;}
.yba_c00192{bottom:1008.285000px;}
.yb9_c00192{bottom:1010.010000px;}
.yb8_c00192{bottom:1014.330000px;}
.yb7_c00192{bottom:1015.200000px;}
.yae_c00192{bottom:1016.070000px;}
.yb5_c00192{bottom:1019.520000px;}
.yb6_c00192{bottom:1020.390000px;}
.yb3_c00192{bottom:1025.565000px;}
.yb4_c00192{bottom:1030.755000px;}
.yb2_c00192{bottom:1031.610000px;}
.yb1_c00192{bottom:1033.350000px;}
.yaf_c00192{bottom:1034.205000px;}
.yb0_c00192{bottom:1035.075000px;}
.yad_c00192{bottom:1035.930000px;}
.yac_c00192{bottom:1036.800000px;}
.yaa_c00192{bottom:1042.845000px;}
.ya9_c00192{bottom:1048.035000px;}
.ya5_c00192{bottom:1048.890000px;}
.ya4_c00192{bottom:1049.760000px;}
.ya7_c00192{bottom:1050.630000px;}
.ya6_c00192{bottom:1053.210000px;}
.yab_c00192{bottom:1056.675000px;}
.ya8_c00192{bottom:1060.125000px;}
.ya3_c00192{bottom:1066.170000px;}
.ya2_c00192{bottom:1068.765000px;}
.ya1_c00192{bottom:1073.085000px;}
.ya0_c00192{bottom:1083.450000px;}
.y9f_c00192{bottom:1084.320000px;}
.y9d_c00192{bottom:1086.045000px;}
.y9b_c00192{bottom:1086.915000px;}
.y9e_c00192{bottom:1089.510000px;}
.y9c_c00192{bottom:1090.365000px;}
.y212_c00192{bottom:1097.280000px;}
.y99_c00192{bottom:1101.600000px;}
.y9a_c00192{bottom:1102.470000px;}
.y97_c00192{bottom:1103.325000px;}
.y98_c00192{bottom:1105.050000px;}
.y96_c00192{bottom:1105.920000px;}
.y94_c00192{bottom:1115.430000px;}
.y92_c00192{bottom:1117.155000px;}
.y95_c00192{bottom:1118.010000px;}
.y8f_c00192{bottom:1119.750000px;}
.y8d_c00192{bottom:1120.605000px;}
.y90_c00192{bottom:1121.475000px;}
.y91_c00192{bottom:1122.330000px;}
.y93_c00192{bottom:1123.200000px;}
.y8e_c00192{bottom:1124.925000px;}
.y8c_c00192{bottom:1130.970000px;}
.y8b_c00192{bottom:1134.435000px;}
.y87_c00192{bottom:1136.160000px;}
.y8a_c00192{bottom:1137.030000px;}
.y84_c00192{bottom:1137.885000px;}
.y88_c00192{bottom:1138.755000px;}
.y89_c00192{bottom:1139.610000px;}
.y83_c00192{bottom:1141.350000px;}
.y85_c00192{bottom:1142.205000px;}
.y82_c00192{bottom:1143.075000px;}
.y86_c00192{bottom:1150.845000px;}
.y80_c00192{bottom:1151.715000px;}
.y81_c00192{bottom:1153.440000px;}
.y7d_c00192{bottom:1155.165000px;}
.y7b_c00192{bottom:1156.035000px;}
.y7f_c00192{bottom:1156.890000px;}
.y7e_c00192{bottom:1157.760000px;}
.y7a_c00192{bottom:1159.485000px;}
.y79_c00192{bottom:1161.210000px;}
.y78_c00192{bottom:1162.950000px;}
.y77_c00192{bottom:1164.675000px;}
.y75_c00192{bottom:1165.530000px;}
.y74_c00192{bottom:1166.400000px;}
.y7c_c00192{bottom:1167.270000px;}
.y72_c00192{bottom:1168.125000px;}
.y76_c00192{bottom:1170.720000px;}
.y73_c00192{bottom:1172.445000px;}
.y70_c00192{bottom:1173.315000px;}
.y6f_c00192{bottom:1174.170000px;}
.y71_c00192{bottom:1186.275000px;}
.y6d_c00192{bottom:1188.000000px;}
.y6e_c00192{bottom:1188.870000px;}
.y67_c00192{bottom:1189.725000px;}
.y69_c00192{bottom:1190.595000px;}
.y6c_c00192{bottom:1191.450000px;}
.y68_c00192{bottom:1192.320000px;}
.y6a_c00192{bottom:1193.190000px;}
.y5d_c00192{bottom:1195.770000px;}
.y6b_c00192{bottom:1198.365000px;}
.y66_c00192{bottom:1202.685000px;}
.y61_c00192{bottom:1207.005000px;}
.y64_c00192{bottom:1207.875000px;}
.y5f_c00192{bottom:1208.730000px;}
.y63_c00192{bottom:1211.325000px;}
.y60_c00192{bottom:1212.195000px;}
.y4_c00192{bottom:1213.050000px;}
.y5e_c00192{bottom:1213.920000px;}
.y65_c00192{bottom:1217.370000px;}
.y62_c00192{bottom:1218.240000px;}
.y5b_c00192{bottom:1220.835000px;}
.y59_c00192{bottom:1221.690000px;}
.y58_c00192{bottom:1222.560000px;}
.y5c_c00192{bottom:1224.285000px;}
.y56_c00192{bottom:1225.155000px;}
.y57_c00192{bottom:1226.010000px;}
.y53_c00192{bottom:1228.605000px;}
.y5a_c00192{bottom:1233.795000px;}
.y54_c00192{bottom:1234.650000px;}
.y55_c00192{bottom:1235.520000px;}
.y52_c00192{bottom:1238.970000px;}
.y51_c00192{bottom:1241.565000px;}
.y4f_c00192{bottom:1242.435000px;}
.y50_c00192{bottom:1243.290000px;}
.y4e_c00192{bottom:1244.160000px;}
.y210_c00192{bottom:1245.885000px;}
.y211_c00192{bottom:1247.610000px;}
.y49_c00192{bottom:1256.250000px;}
.y3_c00192{bottom:1257.120000px;}
.y4d_c00192{bottom:1258.845000px;}
.y48_c00192{bottom:1259.715000px;}
.y4c_c00192{bottom:1260.570000px;}
.y4b_c00192{bottom:1262.310000px;}
.y4a_c00192{bottom:1263.165000px;}
.y46_c00192{bottom:1264.890000px;}
.y47_c00192{bottom:1266.630000px;}
.y45_c00192{bottom:1272.675000px;}
.y42_c00192{bottom:1276.995000px;}
.y44_c00192{bottom:1277.850000px;}
.y3f_c00192{bottom:1278.720000px;}
.y40_c00192{bottom:1281.315000px;}
.y41_c00192{bottom:1282.170000px;}
.y3e_c00192{bottom:1289.955000px;}
.y3d_c00192{bottom:1290.810000px;}
.y43_c00192{bottom:1292.550000px;}
.y3b_c00192{bottom:1295.130000px;}
.y3c_c00192{bottom:1296.000000px;}
.y3a_c00192{bottom:1296.870000px;}
.y39_c00192{bottom:1297.725000px;}
.y37_c00192{bottom:1303.770000px;}
.y36_c00192{bottom:1308.960000px;}
.y35_c00192{bottom:1309.830000px;}
.y38_c00192{bottom:1310.685000px;}
.y32_c00192{bottom:1311.555000px;}
.y2f_c00192{bottom:1313.280000px;}
.y31_c00192{bottom:1314.150000px;}
.y33_c00192{bottom:1315.005000px;}
.y34_c00192{bottom:1315.875000px;}
.y30_c00192{bottom:1319.325000px;}
.y2b_c00192{bottom:1325.370000px;}
.y2c_c00192{bottom:1326.240000px;}
.y27_c00192{bottom:1327.110000px;}
.y28_c00192{bottom:1329.690000px;}
.y2a_c00192{bottom:1330.560000px;}
.y25_c00192{bottom:1331.430000px;}
.y29_c00192{bottom:1332.285000px;}
.y2e_c00192{bottom:1334.880000px;}
.y26_c00192{bottom:1335.750000px;}
.y2d_c00192{bottom:1337.475000px;}
.y22_c00192{bottom:1344.390000px;}
.y24_c00192{bottom:1345.245000px;}
.y23_c00192{bottom:1347.840000px;}
.y19_c00192{bottom:1348.710000px;}
.y21_c00192{bottom:1349.565000px;}
.y20_c00192{bottom:1352.160000px;}
.y1f_c00192{bottom:1353.885000px;}
.y1d_c00192{bottom:1357.350000px;}
.y1b_c00192{bottom:1358.205000px;}
.y1c_c00192{bottom:1360.800000px;}
.y2_c00192{bottom:1361.670000px;}
.y1e_c00192{bottom:1362.525000px;}
.y18_c00192{bottom:1364.250000px;}
.y14_c00192{bottom:1365.990000px;}
.y1a_c00192{bottom:1366.845000px;}
.y16_c00192{bottom:1367.715000px;}
.y15_c00192{bottom:1371.165000px;}
.y17_c00192{bottom:1373.760000px;}
.y20f_c00192{bottom:1375.485000px;}
.y1_c00192{bottom:1378.950000px;}
.ye_c00192{bottom:1379.805000px;}
.y13_c00192{bottom:1381.530000px;}
.yf_c00192{bottom:1382.400000px;}
.yd_c00192{bottom:1384.125000px;}
.y12_c00192{bottom:1386.720000px;}
.y11_c00192{bottom:1388.445000px;}
.y10_c00192{bottom:1395.360000px;}
.y20d_c00192{bottom:1404.870000px;}
.yc_c00192{bottom:1405.725000px;}
.yb_c00192{bottom:1408.320000px;}
.ya_c00192{bottom:1410.045000px;}
.y20e_c00192{bottom:1414.365000px;}
.y9_c00192{bottom:1426.470000px;}
.h4_c00192{height:3.110063px;}
.ha_c00192{height:5.399414px;}
.h10_c00192{height:6.209326px;}
.h8_c00192{height:9.340986px;}
.he_c00192{height:12.418652px;}
.h5_c00192{height:15.550313px;}
.h9_c00192{height:18.681973px;}
.h25_c00192{height:20.009326px;}
.h1b_c00192{height:21.759639px;}
.h20_c00192{height:24.891299px;}
.h6_c00192{height:27.968965px;}
.h3_c00192{height:31.100625px;}
.h18_c00192{height:34.232285px;}
.h17_c00192{height:37.309951px;}
.h23_c00192{height:38.348965px;}
.h7_c00192{height:40.441611px;}
.h19_c00192{height:43.519277px;}
.h15_c00192{height:46.650937px;}
.h14_c00192{height:49.782598px;}
.h1c_c00192{height:52.860264px;}
.hf_c00192{height:55.991924px;}
.h12_c00192{height:59.069590px;}
.h11_c00192{height:62.201250px;}
.hb_c00192{height:65.332910px;}
.h21_c00192{height:68.410576px;}
.h1a_c00192{height:71.542236px;}
.h24_c00192{height:74.619902px;}
.h1e_c00192{height:77.751563px;}
.hc_c00192{height:80.883223px;}
.h16_c00192{height:87.092549px;}
.hd_c00192{height:96.433535px;}
.h1d_c00192{height:99.511201px;}
.h13_c00192{height:108.852188px;}
.h22_c00192{height:111.983848px;}
.h1f_c00192{height:115.061514px;}
.h2_c00192{height:121.270840px;}
.h0_c00192{height:1523.235000px;}
.h1_c00192{height:1523.250000px;}
.w0_c00192{width:1107.645000px;}
.w1_c00192{width:1107.750000px;}
.x0_c00192{left:0.000000px;}
.x6_c00192{left:153.795000px;}
.x8_c00192{left:155.520000px;}
.x1_c00192{left:158.115000px;}
.x2_c00192{left:174.525000px;}
.x3_c00192{left:192.675000px;}
.x7_c00192{left:196.995000px;}
.x5_c00192{left:201.315000px;}
.x4_c00192{left:204.765000px;}
.x10c_c00192{left:239.325000px;}
.x10d_c00192{left:242.790000px;}
.x10f_c00192{left:245.370000px;}
.xe2_c00192{left:247.965000px;}
.xee_c00192{left:249.690000px;}
.xd7_c00192{left:252.285000px;}
.xca_c00192{left:254.010000px;}
.xc1_c00192{left:255.750000px;}
.xe5_c00192{left:257.475000px;}
.x4f_c00192{left:259.200000px;}
.xc5_c00192{left:260.925000px;}
.xc2_c00192{left:262.650000px;}
.xf_c00192{left:264.390000px;}
.x29_c00192{left:266.115000px;}
.x18_c00192{left:268.710000px;}
.xd8_c00192{left:270.435000px;}
.xcf_c00192{left:273.030000px;}
.xf4_c00192{left:276.480000px;}
.x8f_c00192{left:284.250000px;}
.xb8_c00192{left:288.570000px;}
.xc3_c00192{left:290.310000px;}
.xb1_c00192{left:292.890000px;}
.xbc_c00192{left:294.630000px;}
.x69_c00192{left:298.080000px;}
.xc_c00192{left:300.675000px;}
.xef_c00192{left:302.400000px;}
.x104_c00192{left:304.125000px;}
.x10e_c00192{left:305.850000px;}
.xa6_c00192{left:307.590000px;}
.x60_c00192{left:309.315000px;}
.xff_c00192{left:311.040000px;}
.x10_c00192{left:314.490000px;}
.xaa_c00192{left:316.230000px;}
.xe0_c00192{left:317.955000px;}
.x61_c00192{left:319.680000px;}
.xe8_c00192{left:321.405000px;}
.xda_c00192{left:324.870000px;}
.x9b_c00192{left:328.320000px;}
.x95_c00192{left:332.640000px;}
.x40_c00192{left:335.235000px;}
.x2a_c00192{left:336.960000px;}
.x9a_c00192{left:339.555000px;}
.x39_c00192{left:341.280000px;}
.xbd_c00192{left:343.875000px;}
.xf8_c00192{left:345.600000px;}
.xb2_c00192{left:348.195000px;}
.xab_c00192{left:349.920000px;}
.x31_c00192{left:353.370000px;}
.x96_c00192{left:355.965000px;}
.x6a_c00192{left:358.560000px;}
.x87_c00192{left:361.155000px;}
.x2b_c00192{left:362.880000px;}
.x3a_c00192{left:366.330000px;}
.x62_c00192{left:368.070000px;}
.xb3_c00192{left:369.795000px;}
.x6f_c00192{left:374.115000px;}
.x41_c00192{left:375.840000px;}
.xa7_c00192{left:377.565000px;}
.xdb_c00192{left:380.160000px;}
.x7e_c00192{left:381.885000px;}
.xe9_c00192{left:383.610000px;}
.x48_c00192{left:386.205000px;}
.x50_c00192{left:389.670000px;}
.x77_c00192{left:392.250000px;}
.xd0_c00192{left:396.570000px;}
.x32_c00192{left:399.165000px;}
.xb4_c00192{left:400.890000px;}
.xf1_c00192{left:402.630000px;}
.xc6_c00192{left:404.355000px;}
.x88_c00192{left:406.080000px;}
.xd_c00192{left:408.675000px;}
.x59_c00192{left:410.400000px;}
.xfb_c00192{left:412.125000px;}
.xcb_c00192{left:414.720000px;}
.xea_c00192{left:416.445000px;}
.x90_c00192{left:419.040000px;}
.x49_c00192{left:421.635000px;}
.x97_c00192{left:423.360000px;}
.x5a_c00192{left:426.810000px;}
.xd1_c00192{left:428.550000px;}
.xd5_c00192{left:430.275000px;}
.x19_c00192{left:432.870000px;}
.xbe_c00192{left:434.595000px;}
.x105_c00192{left:436.320000px;}
.x6b_c00192{left:438.045000px;}
.xce_c00192{left:442.365000px;}
.x89_c00192{left:444.090000px;}
.x98_c00192{left:445.830000px;}
.xac_c00192{left:449.280000px;}
.x2c_c00192{left:451.875000px;}
.x7f_c00192{left:457.920000px;}
.xd2_c00192{left:459.645000px;}
.x3b_c00192{left:463.110000px;}
.x70_c00192{left:466.560000px;}
.x8a_c00192{left:468.285000px;}
.x11_c00192{left:471.750000px;}
.x91_c00192{left:475.200000px;}
.xaf_c00192{left:477.795000px;}
.xfc_c00192{left:480.389592px;}
.x80_c00192{left:482.115000px;}
.x8b_c00192{left:483.840000px;}
.xf2_c00192{left:485.565000px;}
.xd3_c00192{left:487.290000px;}
.x10a_c00192{left:489.030000px;}
.x9c_c00192{left:490.755000px;}
.xd9_c00192{left:492.480000px;}
.xa8_c00192{left:495.075000px;}
.x81_c00192{left:496.800000px;}
.x10b_c00192{left:499.395000px;}
.xb5_c00192{left:501.120000px;}
.x1a_c00192{left:505.440000px;}
.x99_c00192{left:508.035000px;}
.x9_c00192{left:509.760000px;}
.x1b_c00192{left:513.210000px;}
.x9d_c00192{left:514.950000px;}
.xe_c00192{left:516.675000px;}
.x63_c00192{left:523.590000px;}
.xf0_c00192{left:526.170000px;}
.x82_c00192{left:527.910000px;}
.xd6_c00192{left:529.635000px;}
.x9e_c00192{left:531.360000px;}
.x4a_c00192{left:533.085000px;}
.xa9_c00192{left:534.810000px;}
.x78_c00192{left:536.550000px;}
.xa_c00192{left:538.275000px;}
.x64_c00192{left:540.000000px;}
.x12_c00192{left:542.595000px;}
.xb_c00192{left:545.190000px;}
.xbf_c00192{left:546.915000px;}
.x42_c00192{left:549.510000px;}
.x1c_c00192{left:552.090000px;}
.x110_c00192{left:554.685000px;}
.x33_c00192{left:556.410000px;}
.x92_c00192{left:558.150000px;}
.xc0_c00192{left:561.600000px;}
.x79_c00192{left:563.325000px;}
.x3c_c00192{left:565.920000px;}
.x106_c00192{left:568.515000px;}
.xde_c00192{left:570.240000px;}
.xe6_c00192{left:573.690000px;}
.x13_c00192{left:575.430000px;}
.x83_c00192{left:578.010000px;}
.x6c_c00192{left:580.605000px;}
.xdc_c00192{left:583.200000px;}
.x7a_c00192{left:585.795000px;}
.x65_c00192{left:589.245000px;}
.x5b_c00192{left:591.840000px;}
.xc8_c00192{left:593.565000px;}
.x93_c00192{left:595.290000px;}
.x4b_c00192{left:597.030000px;}
.x1d_c00192{left:598.755000px;}
.x100_c00192{left:602.205000px;}
.x107_c00192{left:603.930000px;}
.x9f_c00192{left:606.525000px;}
.x43_c00192{left:609.120000px;}
.xa3_c00192{left:611.715000px;}
.x14_c00192{left:613.440000px;}
.xc4_c00192{left:615.165000px;}
.x8c_c00192{left:626.400000px;}
.xeb_c00192{left:628.125000px;}
.xf3_c00192{left:631.590000px;}
.xc9_c00192{left:634.170000px;}
.x57_c00192{left:636.765000px;}
.xb6_c00192{left:638.490000px;}
.xf5_c00192{left:640.230000px;}
.x1e_c00192{left:641.955000px;}
.x2d_c00192{left:646.275000px;}
.xdf_c00192{left:648.000000px;}
.x51_c00192{left:649.725000px;}
.x1f_c00192{left:651.450000px;}
.x8d_c00192{left:653.190000px;}
.xb9_c00192{left:655.770000px;}
.x44_c00192{left:658.365000px;}
.x20_c00192{left:660.090000px;}
.x84_c00192{left:661.830000px;}
.x7b_c00192{left:663.555000px;}
.x52_c00192{left:666.150000px;}
.x101_c00192{left:671.325000px;}
.xcc_c00192{left:674.790000px;}
.x5c_c00192{left:677.370000px;}
.x108_c00192{left:679.110000px;}
.x34_c00192{left:682.560000px;}
.x3d_c00192{left:685.155000px;}
.x21_c00192{left:686.880000px;}
.x4c_c00192{left:692.070000px;}
.x71_c00192{left:695.520000px;}
.xa2_c00192{left:697.245000px;}
.x22_c00192{left:698.970000px;}
.xec_c00192{left:702.435000px;}
.xe7_c00192{left:705.885000px;}
.x23_c00192{left:708.480000px;}
.xf6_c00192{left:712.800000px;}
.x45_c00192{left:714.525000px;}
.x94_c00192{left:717.120000px;}
.xba_c00192{left:718.845000px;}
.x24_c00192{left:720.570000px;}
.x66_c00192{left:723.165000px;}
.xad_c00192{left:727.485000px;}
.xf9_c00192{left:729.210000px;}
.x25_c00192{left:730.950000px;}
.x53_c00192{left:734.400000px;}
.x4d_c00192{left:736.125000px;}
.x15_c00192{left:738.720000px;}
.x72_c00192{left:740.445000px;}
.x58_c00192{left:742.170000px;}
.x26_c00192{left:743.910000px;}
.x46_c00192{left:746.490000px;}
.x8e_c00192{left:749.955000px;}
.xfd_c00192{left:755.130000px;}
.x16_c00192{left:756.870000px;}
.x4e_c00192{left:761.190000px;}
.x7c_c00192{left:762.915000px;}
.xdd_c00192{left:766.365000px;}
.xa0_c00192{left:768.960000px;}
.x2e_c00192{left:771.555000px;}
.xe3_c00192{left:773.280000px;}
.xed_c00192{left:778.470000px;}
.x3e_c00192{left:780.195000px;}
.xa4_c00192{left:789.690000px;}
.x7d_c00192{left:792.285000px;}
.x54_c00192{left:796.605000px;}
.x47_c00192{left:800.070000px;}
.x103_c00192{left:802.650000px;}
.x35_c00192{left:806.115000px;}
.x27_c00192{left:808.710000px;}
.x73_c00192{left:813.030000px;}
.xa5_c00192{left:817.350000px;}
.x5d_c00192{left:819.930000px;}
.x67_c00192{left:821.670000px;}
.xfa_c00192{left:823.395000px;}
.xe4_c00192{left:825.120000px;}
.x85_c00192{left:826.845000px;}
.x5e_c00192{left:832.890000px;}
.x6d_c00192{left:835.485000px;}
.x36_c00192{left:838.950000px;}
.xae_c00192{left:843.270000px;}
.x102_c00192{left:844.995000px;}
.xe1_c00192{left:846.720000px;}
.x109_c00192{left:851.040000px;}
.x6e_c00192{left:852.765000px;}
.x86_c00192{left:854.490000px;}
.xbb_c00192{left:856.230000px;}
.x37_c00192{left:858.810000px;}
.x68_c00192{left:860.550000px;}
.x5f_c00192{left:863.130000px;}
.xd4_c00192{left:864.870000px;}
.x2f_c00192{left:867.450000px;}
.x55_c00192{left:870.045000px;}
.x74_c00192{left:871.770000px;}
.xcd_c00192{left:875.235000px;}
.xb0_c00192{left:876.960000px;}
.xc7_c00192{left:878.685000px;}
.x38_c00192{left:881.280000px;}
.xfe_c00192{left:883.005000px;}
.x28_c00192{left:884.730000px;}
.x3f_c00192{left:887.325000px;}
.xf7_c00192{left:889.050000px;}
.x75_c00192{left:890.790000px;}
.xb7_c00192{left:892.515000px;}
.x56_c00192{left:894.240000px;}
.x30_c00192{left:896.835000px;}
.x17_c00192{left:901.155000px;}
.xa1_c00192{left:902.880000px;}
.x76_c00192{left:908.070000px;}
.x118_c00192{left:916.710000px;}
.x115_c00192{left:923.610000px;}
.x116_c00192{left:940.035000px;}
.x114_c00192{left:970.275000px;}
.x111_c00192{left:1027.290000px;}
.x112_c00192{left:1035.075000px;}
.x117_c00192{left:1061.850000px;}
.x11a_c00192{left:1070.490000px;}
.x113_c00192{left:1084.320000px;}
.x11b_c00192{left:1090.365000px;}
.x119_c00192{left:1099.875000px;}
@media print{
.v2_c00192{vertical-align:-6.133333pt;}
.v0_c00192{vertical-align:0.000000pt;}
.v3_c00192{vertical-align:3.040000pt;}
.v1_c00192{vertical-align:9.226667pt;}
.v4_c00192{vertical-align:12.266667pt;}
.ls1_c00192{letter-spacing:0.000000pt;}
.ls0_c00192{letter-spacing:49.248533pt;}
.ws4_c00192{word-spacing:-28.668053pt;}
.ws2_c00192{word-spacing:-8.296320pt;}
.ws3_c00192{word-spacing:-4.803413pt;}
.ws5_c00192{word-spacing:0.000000pt;}
.ws1_c00192{word-spacing:38.098519pt;}
.ws0_c00192{word-spacing:64.768000pt;}
._0_c00192{width:5.272427pt;}
.fs2_c00192{font-size:3.072000pt;}
.fs8_c00192{font-size:5.333333pt;}
.fse_c00192{font-size:6.133333pt;}
.fs6_c00192{font-size:9.226667pt;}
.fsc_c00192{font-size:12.266667pt;}
.fs3_c00192{font-size:15.360000pt;}
.fs7_c00192{font-size:18.453333pt;}
.fs19_c00192{font-size:21.493333pt;}
.fs1e_c00192{font-size:24.586667pt;}
.fs4_c00192{font-size:27.626667pt;}
.fs1_c00192{font-size:30.720000pt;}
.fs16_c00192{font-size:33.813333pt;}
.fs15_c00192{font-size:36.853333pt;}
.fs5_c00192{font-size:39.946667pt;}
.fs17_c00192{font-size:42.986667pt;}
.fs13_c00192{font-size:46.080000pt;}
.fs12_c00192{font-size:49.173333pt;}
.fs1a_c00192{font-size:52.213333pt;}
.fsd_c00192{font-size:55.306667pt;}
.fs10_c00192{font-size:58.346667pt;}
.fsf_c00192{font-size:61.440000pt;}
.fs9_c00192{font-size:64.533333pt;}
.fs1f_c00192{font-size:67.573333pt;}
.fs18_c00192{font-size:70.666667pt;}
.fs21_c00192{font-size:73.706667pt;}
.fs1c_c00192{font-size:76.800000pt;}
.fsa_c00192{font-size:79.893333pt;}
.fs14_c00192{font-size:86.026667pt;}
.fsb_c00192{font-size:95.253333pt;}
.fs1b_c00192{font-size:98.293333pt;}
.fs11_c00192{font-size:107.520000pt;}
.fs20_c00192{font-size:110.613333pt;}
.fs1d_c00192{font-size:113.653333pt;}
.fs0_c00192{font-size:119.786667pt;}
.y0_c00192{bottom:0.000000pt;}
.y214_c00192{bottom:98.306667pt;}
.y213_c00192{bottom:108.293333pt;}
.y20a_c00192{bottom:259.586667pt;}
.y20b_c00192{bottom:260.346667pt;}
.y20c_c00192{bottom:261.893333pt;}
.y208_c00192{bottom:264.960000pt;}
.y209_c00192{bottom:265.733333pt;}
.y207_c00192{bottom:276.480000pt;}
.y203_c00192{bottom:291.840000pt;}
.y206_c00192{bottom:293.373333pt;}
.y202_c00192{bottom:296.453333pt;}
.y204_c00192{bottom:297.213333pt;}
.y205_c00192{bottom:309.506667pt;}
.y200_c00192{bottom:311.040000pt;}
.y1fe_c00192{bottom:312.573333pt;}
.y201_c00192{bottom:314.106667pt;}
.y1fd_c00192{bottom:315.653333pt;}
.y1ff_c00192{bottom:316.413333pt;}
.y1fb_c00192{bottom:327.173333pt;}
.y1fa_c00192{bottom:327.933333pt;}
.y1f8_c00192{bottom:328.706667pt;}
.y1fc_c00192{bottom:329.466667pt;}
.y1f9_c00192{bottom:331.013333pt;}
.y1f7_c00192{bottom:340.986667pt;}
.y1f3_c00192{bottom:343.293333pt;}
.y1f5_c00192{bottom:344.826667pt;}
.y1f6_c00192{bottom:345.600000pt;}
.y1f2_c00192{bottom:347.906667pt;}
.y1f4_c00192{bottom:348.666667pt;}
.y1f1_c00192{bottom:349.440000pt;}
.y1ee_c00192{bottom:358.653333pt;}
.y1ed_c00192{bottom:359.426667pt;}
.y1f0_c00192{bottom:360.960000pt;}
.y1ef_c00192{bottom:362.493333pt;}
.y1ec_c00192{bottom:376.320000pt;}
.y1eb_c00192{bottom:377.093333pt;}
.y1e8_c00192{bottom:377.853333pt;}
.y1e6_c00192{bottom:378.626667pt;}
.y1e9_c00192{bottom:379.386667pt;}
.y1e7_c00192{bottom:380.160000pt;}
.y1ea_c00192{bottom:382.466667pt;}
.y1e1_c00192{bottom:384.773333pt;}
.y1e3_c00192{bottom:387.066667pt;}
.y1df_c00192{bottom:388.613333pt;}
.y1e5_c00192{bottom:389.373333pt;}
.y1e4_c00192{bottom:390.146667pt;}
.y1dd_c00192{bottom:390.906667pt;}
.y1e0_c00192{bottom:393.986667pt;}
.y1de_c00192{bottom:394.746667pt;}
.y1e2_c00192{bottom:397.826667pt;}
.y1db_c00192{bottom:400.133333pt;}
.y1dc_c00192{bottom:400.893333pt;}
.y1d9_c00192{bottom:402.426667pt;}
.y1d7_c00192{bottom:403.973333pt;}
.y1da_c00192{bottom:404.733333pt;}
.y1d8_c00192{bottom:405.506667pt;}
.y1d5_c00192{bottom:406.266667pt;}
.y1d6_c00192{bottom:407.813333pt;}
.y1d0_c00192{bottom:417.786667pt;}
.y1cf_c00192{bottom:418.560000pt;}
.y1d3_c00192{bottom:420.093333pt;}
.y1d2_c00192{bottom:420.866667pt;}
.y1cb_c00192{bottom:421.626667pt;}
.y1ca_c00192{bottom:422.400000pt;}
.y1ce_c00192{bottom:423.933333pt;}
.y1cd_c00192{bottom:424.706667pt;}
.y1cc_c00192{bottom:425.466667pt;}
.y1d1_c00192{bottom:427.773333pt;}
.y1d4_c00192{bottom:428.546667pt;}
.y1c7_c00192{bottom:430.080000pt;}
.y1c8_c00192{bottom:431.613333pt;}
.y1c6_c00192{bottom:432.386667pt;}
.y1c9_c00192{bottom:433.920000pt;}
.y1c4_c00192{bottom:435.453333pt;}
.y1c5_c00192{bottom:436.226667pt;}
.y1c3_c00192{bottom:436.986667pt;}
.y1c2_c00192{bottom:437.760000pt;}
.y1bf_c00192{bottom:446.973333pt;}
.y1be_c00192{bottom:447.746667pt;}
.y1bc_c00192{bottom:450.053333pt;}
.y1bd_c00192{bottom:451.586667pt;}
.y1bb_c00192{bottom:452.346667pt;}
.y1c1_c00192{bottom:453.893333pt;}
.y1c0_c00192{bottom:456.186667pt;}
.y1ba_c00192{bottom:463.106667pt;}
.y1b9_c00192{bottom:465.413333pt;}
.y1b8_c00192{bottom:466.946667pt;}
.y1b7_c00192{bottom:467.706667pt;}
.y1b3_c00192{bottom:468.480000pt;}
.y1b5_c00192{bottom:469.253333pt;}
.y1b6_c00192{bottom:470.013333pt;}
.y1b4_c00192{bottom:471.546667pt;}
.y1b2_c00192{bottom:475.386667pt;}
.y1b1_c00192{bottom:478.466667pt;}
.y1af_c00192{bottom:480.773333pt;}
.y1b0_c00192{bottom:481.533333pt;}
.y1ad_c00192{bottom:482.306667pt;}
.y1ac_c00192{bottom:483.066667pt;}
.y1ab_c00192{bottom:484.613333pt;}
.y1ae_c00192{bottom:486.906667pt;}
.y1aa_c00192{bottom:491.520000pt;}
.y1a9_c00192{bottom:492.293333pt;}
.y1a8_c00192{bottom:493.053333pt;}
.y1a7_c00192{bottom:493.826667pt;}
.y1a4_c00192{bottom:495.360000pt;}
.y1a5_c00192{bottom:496.133333pt;}
.y1a1_c00192{bottom:496.893333pt;}
.y1a3_c00192{bottom:499.973333pt;}
.y1a2_c00192{bottom:503.813333pt;}
.y1a6_c00192{bottom:506.880000pt;}
.y19f_c00192{bottom:508.413333pt;}
.y1a0_c00192{bottom:509.186667pt;}
.y19e_c00192{bottom:510.720000pt;}
.y19d_c00192{bottom:511.493333pt;}
.y19c_c00192{bottom:512.253333pt;}
.y19a_c00192{bottom:513.026667pt;}
.y19b_c00192{bottom:514.560000pt;}
.y197_c00192{bottom:515.333333pt;}
.y198_c00192{bottom:516.093333pt;}
.y199_c00192{bottom:518.400000pt;}
.y195_c00192{bottom:523.013333pt;}
.y194_c00192{bottom:524.546667pt;}
.y196_c00192{bottom:525.306667pt;}
.y192_c00192{bottom:530.693333pt;}
.y191_c00192{bottom:532.226667pt;}
.y190_c00192{bottom:533.760000pt;}
.y18d_c00192{bottom:535.293333pt;}
.y18f_c00192{bottom:536.066667pt;}
.y193_c00192{bottom:536.826667pt;}
.y18e_c00192{bottom:539.906667pt;}
.y18b_c00192{bottom:543.746667pt;}
.y18a_c00192{bottom:545.280000pt;}
.y188_c00192{bottom:547.586667pt;}
.y18c_c00192{bottom:548.346667pt;}
.y189_c00192{bottom:550.653333pt;}
.y187_c00192{bottom:552.960000pt;}
.y185_c00192{bottom:554.493333pt;}
.y184_c00192{bottom:556.800000pt;}
.y186_c00192{bottom:557.573333pt;}
.y183_c00192{bottom:558.333333pt;}
.y182_c00192{bottom:559.866667pt;}
.y180_c00192{bottom:561.413333pt;}
.y181_c00192{bottom:562.946667pt;}
.y17e_c00192{bottom:563.706667pt;}
.y17f_c00192{bottom:564.480000pt;}
.y17d_c00192{bottom:565.253333pt;}
.y17b_c00192{bottom:569.853333pt;}
.y17c_c00192{bottom:572.160000pt;}
.y17a_c00192{bottom:572.933333pt;}
.y178_c00192{bottom:574.466667pt;}
.y179_c00192{bottom:575.226667pt;}
.y176_c00192{bottom:578.306667pt;}
.y177_c00192{bottom:579.066667pt;}
.y174_c00192{bottom:579.840000pt;}
.y175_c00192{bottom:582.906667pt;}
.y170_c00192{bottom:586.746667pt;}
.y172_c00192{bottom:587.520000pt;}
.y16e_c00192{bottom:588.293333pt;}
.y171_c00192{bottom:589.053333pt;}
.y173_c00192{bottom:590.586667pt;}
.y16d_c00192{bottom:592.133333pt;}
.y16b_c00192{bottom:592.893333pt;}
.y169_c00192{bottom:593.666667pt;}
.y16c_c00192{bottom:595.973333pt;}
.y16a_c00192{bottom:596.733333pt;}
.y16f_c00192{bottom:600.573333pt;}
.y168_c00192{bottom:602.106667pt;}
.y166_c00192{bottom:602.880000pt;}
.y167_c00192{bottom:603.653333pt;}
.y165_c00192{bottom:604.413333pt;}
.y164_c00192{bottom:606.720000pt;}
.y162_c00192{bottom:607.493333pt;}
.y160_c00192{bottom:608.253333pt;}
.y161_c00192{bottom:609.026667pt;}
.y163_c00192{bottom:609.786667pt;}
.y15f_c00192{bottom:612.866667pt;}
.y15e_c00192{bottom:615.933333pt;}
.y15d_c00192{bottom:619.013333pt;}
.y15c_c00192{bottom:619.773333pt;}
.y15b_c00192{bottom:620.546667pt;}
.y159_c00192{bottom:621.306667pt;}
.y156_c00192{bottom:623.613333pt;}
.y15a_c00192{bottom:624.386667pt;}
.y155_c00192{bottom:625.146667pt;}
.y158_c00192{bottom:629.760000pt;}
.y153_c00192{bottom:631.293333pt;}
.y152_c00192{bottom:632.066667pt;}
.y151_c00192{bottom:632.826667pt;}
.y150_c00192{bottom:633.600000pt;}
.y154_c00192{bottom:634.373333pt;}
.y14f_c00192{bottom:635.133333pt;}
.y14d_c00192{bottom:635.906667pt;}
.y14c_c00192{bottom:637.440000pt;}
.y157_c00192{bottom:638.213333pt;}
.y14e_c00192{bottom:639.746667pt;}
.y14a_c00192{bottom:640.506667pt;}
.y148_c00192{bottom:641.280000pt;}
.y14b_c00192{bottom:642.053333pt;}
.y149_c00192{bottom:643.586667pt;}
.y147_c00192{bottom:646.653333pt;}
.y144_c00192{bottom:648.186667pt;}
.y146_c00192{bottom:648.960000pt;}
.y143_c00192{bottom:649.733333pt;}
.y142_c00192{bottom:650.493333pt;}
.y141_c00192{bottom:651.266667pt;}
.y145_c00192{bottom:653.573333pt;}
.y13c_c00192{bottom:654.333333pt;}
.y13e_c00192{bottom:655.106667pt;}
.y140_c00192{bottom:655.866667pt;}
.y13f_c00192{bottom:657.413333pt;}
.y13d_c00192{bottom:658.173333pt;}
.y139_c00192{bottom:666.626667pt;}
.y138_c00192{bottom:667.386667pt;}
.y13b_c00192{bottom:668.933333pt;}
.y13a_c00192{bottom:669.693333pt;}
.y137_c00192{bottom:670.466667pt;}
.y134_c00192{bottom:672.000000pt;}
.y136_c00192{bottom:672.773333pt;}
.y135_c00192{bottom:674.306667pt;}
.y133_c00192{bottom:679.680000pt;}
.y130_c00192{bottom:681.986667pt;}
.y132_c00192{bottom:683.520000pt;}
.y131_c00192{bottom:684.293333pt;}
.y12d_c00192{bottom:685.826667pt;}
.y12e_c00192{bottom:687.360000pt;}
.y12f_c00192{bottom:688.133333pt;}
.y12c_c00192{bottom:689.666667pt;}
.y12b_c00192{bottom:694.266667pt;}
.y12a_c00192{bottom:695.813333pt;}
.y129_c00192{bottom:697.346667pt;}
.y128_c00192{bottom:698.106667pt;}
.y127_c00192{bottom:699.653333pt;}
.y125_c00192{bottom:701.186667pt;}
.y126_c00192{bottom:704.253333pt;}
.y124_c00192{bottom:708.866667pt;}
.y122_c00192{bottom:711.933333pt;}
.y120_c00192{bottom:713.466667pt;}
.y123_c00192{bottom:714.240000pt;}
.y11e_c00192{bottom:715.773333pt;}
.y121_c00192{bottom:717.306667pt;}
.y11d_c00192{bottom:718.080000pt;}
.y11f_c00192{bottom:718.853333pt;}
.y11c_c00192{bottom:721.920000pt;}
.y11b_c00192{bottom:724.986667pt;}
.y11a_c00192{bottom:727.293333pt;}
.y119_c00192{bottom:731.906667pt;}
.y118_c00192{bottom:732.666667pt;}
.y117_c00192{bottom:733.440000pt;}
.y116_c00192{bottom:734.213333pt;}
.y115_c00192{bottom:734.973333pt;}
.y8_c00192{bottom:741.120000pt;}
.y114_c00192{bottom:741.893333pt;}
.y112_c00192{bottom:743.426667pt;}
.y7_c00192{bottom:744.186667pt;}
.y110_c00192{bottom:744.960000pt;}
.y111_c00192{bottom:745.733333pt;}
.y10f_c00192{bottom:746.493333pt;}
.y113_c00192{bottom:747.266667pt;}
.y10e_c00192{bottom:748.026667pt;}
.y6_c00192{bottom:754.173333pt;}
.y10d_c00192{bottom:757.253333pt;}
.y109_c00192{bottom:759.546667pt;}
.y10c_c00192{bottom:761.853333pt;}
.y10a_c00192{bottom:762.626667pt;}
.y10b_c00192{bottom:763.386667pt;}
.y108_c00192{bottom:765.693333pt;}
.y107_c00192{bottom:770.306667pt;}
.y106_c00192{bottom:773.373333pt;}
.y104_c00192{bottom:774.906667pt;}
.y105_c00192{bottom:777.986667pt;}
.y103_c00192{bottom:778.746667pt;}
.y101_c00192{bottom:779.520000pt;}
.y102_c00192{bottom:780.293333pt;}
.yfd_c00192{bottom:786.426667pt;}
.y100_c00192{bottom:787.973333pt;}
.yfe_c00192{bottom:790.266667pt;}
.yfc_c00192{bottom:791.040000pt;}
.yff_c00192{bottom:792.573333pt;}
.yfa_c00192{bottom:793.346667pt;}
.yf7_c00192{bottom:794.880000pt;}
.yf8_c00192{bottom:795.653333pt;}
.yf9_c00192{bottom:796.413333pt;}
.yfb_c00192{bottom:802.560000pt;}
.yf5_c00192{bottom:804.093333pt;}
.yf6_c00192{bottom:805.626667pt;}
.yf2_c00192{bottom:806.400000pt;}
.yf0_c00192{bottom:807.173333pt;}
.yf4_c00192{bottom:809.466667pt;}
.yf1_c00192{bottom:810.240000pt;}
.yee_c00192{bottom:811.013333pt;}
.yef_c00192{bottom:812.546667pt;}
.yf3_c00192{bottom:818.693333pt;}
.yeb_c00192{bottom:819.453333pt;}
.ye9_c00192{bottom:820.226667pt;}
.yed_c00192{bottom:820.986667pt;}
.yec_c00192{bottom:821.760000pt;}
.yea_c00192{bottom:822.533333pt;}
.ye6_c00192{bottom:823.293333pt;}
.ye8_c00192{bottom:824.066667pt;}
.ye7_c00192{bottom:824.826667pt;}
.ye5_c00192{bottom:828.666667pt;}
.ye4_c00192{bottom:829.440000pt;}
.ye2_c00192{bottom:834.813333pt;}
.ye1_c00192{bottom:835.586667pt;}
.ydf_c00192{bottom:836.346667pt;}
.ye3_c00192{bottom:837.120000pt;}
.ydc_c00192{bottom:837.893333pt;}
.ye0_c00192{bottom:838.653333pt;}
.yd8_c00192{bottom:839.426667pt;}
.ydd_c00192{bottom:840.960000pt;}
.yde_c00192{bottom:841.733333pt;}
.yd6_c00192{bottom:843.266667pt;}
.yd9_c00192{bottom:847.106667pt;}
.yda_c00192{bottom:847.866667pt;}
.yd5_c00192{bottom:849.413333pt;}
.ydb_c00192{bottom:852.480000pt;}
.yd4_c00192{bottom:853.253333pt;}
.yd3_c00192{bottom:854.013333pt;}
.yd1_c00192{bottom:854.786667pt;}
.yd2_c00192{bottom:855.546667pt;}
.yd7_c00192{bottom:856.320000pt;}
.yce_c00192{bottom:857.093333pt;}
.yd0_c00192{bottom:857.853333pt;}
.ycf_c00192{bottom:859.386667pt;}
.y5_c00192{bottom:860.160000pt;}
.ycb_c00192{bottom:866.306667pt;}
.yca_c00192{bottom:867.066667pt;}
.ycd_c00192{bottom:868.613333pt;}
.ycc_c00192{bottom:869.373333pt;}
.yc8_c00192{bottom:870.146667pt;}
.yc6_c00192{bottom:870.906667pt;}
.yc9_c00192{bottom:872.453333pt;}
.yc7_c00192{bottom:873.213333pt;}
.yc4_c00192{bottom:874.746667pt;}
.yc5_c00192{bottom:875.520000pt;}
.yc3_c00192{bottom:876.293333pt;}
.yc1_c00192{bottom:883.200000pt;}
.yc0_c00192{bottom:883.973333pt;}
.ybe_c00192{bottom:884.733333pt;}
.ybf_c00192{bottom:885.506667pt;}
.ybd_c00192{bottom:886.266667pt;}
.ybb_c00192{bottom:887.813333pt;}
.yc2_c00192{bottom:889.346667pt;}
.ybc_c00192{bottom:890.106667pt;}
.yba_c00192{bottom:896.253333pt;}
.yb9_c00192{bottom:897.786667pt;}
.yb8_c00192{bottom:901.626667pt;}
.yb7_c00192{bottom:902.400000pt;}
.yae_c00192{bottom:903.173333pt;}
.yb5_c00192{bottom:906.240000pt;}
.yb6_c00192{bottom:907.013333pt;}
.yb3_c00192{bottom:911.613333pt;}
.yb4_c00192{bottom:916.226667pt;}
.yb2_c00192{bottom:916.986667pt;}
.yb1_c00192{bottom:918.533333pt;}
.yaf_c00192{bottom:919.293333pt;}
.yb0_c00192{bottom:920.066667pt;}
.yad_c00192{bottom:920.826667pt;}
.yac_c00192{bottom:921.600000pt;}
.yaa_c00192{bottom:926.973333pt;}
.ya9_c00192{bottom:931.586667pt;}
.ya5_c00192{bottom:932.346667pt;}
.ya4_c00192{bottom:933.120000pt;}
.ya7_c00192{bottom:933.893333pt;}
.ya6_c00192{bottom:936.186667pt;}
.yab_c00192{bottom:939.266667pt;}
.ya8_c00192{bottom:942.333333pt;}
.ya3_c00192{bottom:947.706667pt;}
.ya2_c00192{bottom:950.013333pt;}
.ya1_c00192{bottom:953.853333pt;}
.ya0_c00192{bottom:963.066667pt;}
.y9f_c00192{bottom:963.840000pt;}
.y9d_c00192{bottom:965.373333pt;}
.y9b_c00192{bottom:966.146667pt;}
.y9e_c00192{bottom:968.453333pt;}
.y9c_c00192{bottom:969.213333pt;}
.y212_c00192{bottom:975.360000pt;}
.y99_c00192{bottom:979.200000pt;}
.y9a_c00192{bottom:979.973333pt;}
.y97_c00192{bottom:980.733333pt;}
.y98_c00192{bottom:982.266667pt;}
.y96_c00192{bottom:983.040000pt;}
.y94_c00192{bottom:991.493333pt;}
.y92_c00192{bottom:993.026667pt;}
.y95_c00192{bottom:993.786667pt;}
.y8f_c00192{bottom:995.333333pt;}
.y8d_c00192{bottom:996.093333pt;}
.y90_c00192{bottom:996.866667pt;}
.y91_c00192{bottom:997.626667pt;}
.y93_c00192{bottom:998.400000pt;}
.y8e_c00192{bottom:999.933333pt;}
.y8c_c00192{bottom:1005.306667pt;}
.y8b_c00192{bottom:1008.386667pt;}
.y87_c00192{bottom:1009.920000pt;}
.y8a_c00192{bottom:1010.693333pt;}
.y84_c00192{bottom:1011.453333pt;}
.y88_c00192{bottom:1012.226667pt;}
.y89_c00192{bottom:1012.986667pt;}
.y83_c00192{bottom:1014.533333pt;}
.y85_c00192{bottom:1015.293333pt;}
.y82_c00192{bottom:1016.066667pt;}
.y86_c00192{bottom:1022.973333pt;}
.y80_c00192{bottom:1023.746667pt;}
.y81_c00192{bottom:1025.280000pt;}
.y7d_c00192{bottom:1026.813333pt;}
.y7b_c00192{bottom:1027.586667pt;}
.y7f_c00192{bottom:1028.346667pt;}
.y7e_c00192{bottom:1029.120000pt;}
.y7a_c00192{bottom:1030.653333pt;}
.y79_c00192{bottom:1032.186667pt;}
.y78_c00192{bottom:1033.733333pt;}
.y77_c00192{bottom:1035.266667pt;}
.y75_c00192{bottom:1036.026667pt;}
.y74_c00192{bottom:1036.800000pt;}
.y7c_c00192{bottom:1037.573333pt;}
.y72_c00192{bottom:1038.333333pt;}
.y76_c00192{bottom:1040.640000pt;}
.y73_c00192{bottom:1042.173333pt;}
.y70_c00192{bottom:1042.946667pt;}
.y6f_c00192{bottom:1043.706667pt;}
.y71_c00192{bottom:1054.466667pt;}
.y6d_c00192{bottom:1056.000000pt;}
.y6e_c00192{bottom:1056.773333pt;}
.y67_c00192{bottom:1057.533333pt;}
.y69_c00192{bottom:1058.306667pt;}
.y6c_c00192{bottom:1059.066667pt;}
.y68_c00192{bottom:1059.840000pt;}
.y6a_c00192{bottom:1060.613333pt;}
.y5d_c00192{bottom:1062.906667pt;}
.y6b_c00192{bottom:1065.213333pt;}
.y66_c00192{bottom:1069.053333pt;}
.y61_c00192{bottom:1072.893333pt;}
.y64_c00192{bottom:1073.666667pt;}
.y5f_c00192{bottom:1074.426667pt;}
.y63_c00192{bottom:1076.733333pt;}
.y60_c00192{bottom:1077.506667pt;}
.y4_c00192{bottom:1078.266667pt;}
.y5e_c00192{bottom:1079.040000pt;}
.y65_c00192{bottom:1082.106667pt;}
.y62_c00192{bottom:1082.880000pt;}
.y5b_c00192{bottom:1085.186667pt;}
.y59_c00192{bottom:1085.946667pt;}
.y58_c00192{bottom:1086.720000pt;}
.y5c_c00192{bottom:1088.253333pt;}
.y56_c00192{bottom:1089.026667pt;}
.y57_c00192{bottom:1089.786667pt;}
.y53_c00192{bottom:1092.093333pt;}
.y5a_c00192{bottom:1096.706667pt;}
.y54_c00192{bottom:1097.466667pt;}
.y55_c00192{bottom:1098.240000pt;}
.y52_c00192{bottom:1101.306667pt;}
.y51_c00192{bottom:1103.613333pt;}
.y4f_c00192{bottom:1104.386667pt;}
.y50_c00192{bottom:1105.146667pt;}
.y4e_c00192{bottom:1105.920000pt;}
.y210_c00192{bottom:1107.453333pt;}
.y211_c00192{bottom:1108.986667pt;}
.y49_c00192{bottom:1116.666667pt;}
.y3_c00192{bottom:1117.440000pt;}
.y4d_c00192{bottom:1118.973333pt;}
.y48_c00192{bottom:1119.746667pt;}
.y4c_c00192{bottom:1120.506667pt;}
.y4b_c00192{bottom:1122.053333pt;}
.y4a_c00192{bottom:1122.813333pt;}
.y46_c00192{bottom:1124.346667pt;}
.y47_c00192{bottom:1125.893333pt;}
.y45_c00192{bottom:1131.266667pt;}
.y42_c00192{bottom:1135.106667pt;}
.y44_c00192{bottom:1135.866667pt;}
.y3f_c00192{bottom:1136.640000pt;}
.y40_c00192{bottom:1138.946667pt;}
.y41_c00192{bottom:1139.706667pt;}
.y3e_c00192{bottom:1146.626667pt;}
.y3d_c00192{bottom:1147.386667pt;}
.y43_c00192{bottom:1148.933333pt;}
.y3b_c00192{bottom:1151.226667pt;}
.y3c_c00192{bottom:1152.000000pt;}
.y3a_c00192{bottom:1152.773333pt;}
.y39_c00192{bottom:1153.533333pt;}
.y37_c00192{bottom:1158.906667pt;}
.y36_c00192{bottom:1163.520000pt;}
.y35_c00192{bottom:1164.293333pt;}
.y38_c00192{bottom:1165.053333pt;}
.y32_c00192{bottom:1165.826667pt;}
.y2f_c00192{bottom:1167.360000pt;}
.y31_c00192{bottom:1168.133333pt;}
.y33_c00192{bottom:1168.893333pt;}
.y34_c00192{bottom:1169.666667pt;}
.y30_c00192{bottom:1172.733333pt;}
.y2b_c00192{bottom:1178.106667pt;}
.y2c_c00192{bottom:1178.880000pt;}
.y27_c00192{bottom:1179.653333pt;}
.y28_c00192{bottom:1181.946667pt;}
.y2a_c00192{bottom:1182.720000pt;}
.y25_c00192{bottom:1183.493333pt;}
.y29_c00192{bottom:1184.253333pt;}
.y2e_c00192{bottom:1186.560000pt;}
.y26_c00192{bottom:1187.333333pt;}
.y2d_c00192{bottom:1188.866667pt;}
.y22_c00192{bottom:1195.013333pt;}
.y24_c00192{bottom:1195.773333pt;}
.y23_c00192{bottom:1198.080000pt;}
.y19_c00192{bottom:1198.853333pt;}
.y21_c00192{bottom:1199.613333pt;}
.y20_c00192{bottom:1201.920000pt;}
.y1f_c00192{bottom:1203.453333pt;}
.y1d_c00192{bottom:1206.533333pt;}
.y1b_c00192{bottom:1207.293333pt;}
.y1c_c00192{bottom:1209.600000pt;}
.y2_c00192{bottom:1210.373333pt;}
.y1e_c00192{bottom:1211.133333pt;}
.y18_c00192{bottom:1212.666667pt;}
.y14_c00192{bottom:1214.213333pt;}
.y1a_c00192{bottom:1214.973333pt;}
.y16_c00192{bottom:1215.746667pt;}
.y15_c00192{bottom:1218.813333pt;}
.y17_c00192{bottom:1221.120000pt;}
.y20f_c00192{bottom:1222.653333pt;}
.y1_c00192{bottom:1225.733333pt;}
.ye_c00192{bottom:1226.493333pt;}
.y13_c00192{bottom:1228.026667pt;}
.yf_c00192{bottom:1228.800000pt;}
.yd_c00192{bottom:1230.333333pt;}
.y12_c00192{bottom:1232.640000pt;}
.y11_c00192{bottom:1234.173333pt;}
.y10_c00192{bottom:1240.320000pt;}
.y20d_c00192{bottom:1248.773333pt;}
.yc_c00192{bottom:1249.533333pt;}
.yb_c00192{bottom:1251.840000pt;}
.ya_c00192{bottom:1253.373333pt;}
.y20e_c00192{bottom:1257.213333pt;}
.y9_c00192{bottom:1267.973333pt;}
.h4_c00192{height:2.764500pt;}
.ha_c00192{height:4.799479pt;}
.h10_c00192{height:5.519401pt;}
.h8_c00192{height:8.303099pt;}
.he_c00192{height:11.038802pt;}
.h5_c00192{height:13.822500pt;}
.h9_c00192{height:16.606198pt;}
.h25_c00192{height:17.786068pt;}
.h1b_c00192{height:19.341901pt;}
.h20_c00192{height:22.125599pt;}
.h6_c00192{height:24.861302pt;}
.h3_c00192{height:27.645000pt;}
.h18_c00192{height:30.428698pt;}
.h17_c00192{height:33.164401pt;}
.h23_c00192{height:34.087969pt;}
.h7_c00192{height:35.948099pt;}
.h19_c00192{height:38.683802pt;}
.h15_c00192{height:41.467500pt;}
.h14_c00192{height:44.251198pt;}
.h1c_c00192{height:46.986901pt;}
.hf_c00192{height:49.770599pt;}
.h12_c00192{height:52.506302pt;}
.h11_c00192{height:55.290000pt;}
.hb_c00192{height:58.073698pt;}
.h21_c00192{height:60.809401pt;}
.h1a_c00192{height:63.593099pt;}
.h24_c00192{height:66.328802pt;}
.h1e_c00192{height:69.112500pt;}
.hc_c00192{height:71.896198pt;}
.h16_c00192{height:77.415599pt;}
.hd_c00192{height:85.718698pt;}
.h1d_c00192{height:88.454401pt;}
.h13_c00192{height:96.757500pt;}
.h22_c00192{height:99.541198pt;}
.h1f_c00192{height:102.276901pt;}
.h2_c00192{height:107.796302pt;}
.h0_c00192{height:1353.986667pt;}
.h1_c00192{height:1354.000000pt;}
.w0_c00192{width:984.573333pt;}
.w1_c00192{width:984.666667pt;}
.x0_c00192{left:0.000000pt;}
.x6_c00192{left:136.706667pt;}
.x8_c00192{left:138.240000pt;}
.x1_c00192{left:140.546667pt;}
.x2_c00192{left:155.133333pt;}
.x3_c00192{left:171.266667pt;}
.x7_c00192{left:175.106667pt;}
.x5_c00192{left:178.946667pt;}
.x4_c00192{left:182.013333pt;}
.x10c_c00192{left:212.733333pt;}
.x10d_c00192{left:215.813333pt;}
.x10f_c00192{left:218.106667pt;}
.xe2_c00192{left:220.413333pt;}
.xee_c00192{left:221.946667pt;}
.xd7_c00192{left:224.253333pt;}
.xca_c00192{left:225.786667pt;}
.xc1_c00192{left:227.333333pt;}
.xe5_c00192{left:228.866667pt;}
.x4f_c00192{left:230.400000pt;}
.xc5_c00192{left:231.933333pt;}
.xc2_c00192{left:233.466667pt;}
.xf_c00192{left:235.013333pt;}
.x29_c00192{left:236.546667pt;}
.x18_c00192{left:238.853333pt;}
.xd8_c00192{left:240.386667pt;}
.xcf_c00192{left:242.693333pt;}
.xf4_c00192{left:245.760000pt;}
.x8f_c00192{left:252.666667pt;}
.xb8_c00192{left:256.506667pt;}
.xc3_c00192{left:258.053333pt;}
.xb1_c00192{left:260.346667pt;}
.xbc_c00192{left:261.893333pt;}
.x69_c00192{left:264.960000pt;}
.xc_c00192{left:267.266667pt;}
.xef_c00192{left:268.800000pt;}
.x104_c00192{left:270.333333pt;}
.x10e_c00192{left:271.866667pt;}
.xa6_c00192{left:273.413333pt;}
.x60_c00192{left:274.946667pt;}
.xff_c00192{left:276.480000pt;}
.x10_c00192{left:279.546667pt;}
.xaa_c00192{left:281.093333pt;}
.xe0_c00192{left:282.626667pt;}
.x61_c00192{left:284.160000pt;}
.xe8_c00192{left:285.693333pt;}
.xda_c00192{left:288.773333pt;}
.x9b_c00192{left:291.840000pt;}
.x95_c00192{left:295.680000pt;}
.x40_c00192{left:297.986667pt;}
.x2a_c00192{left:299.520000pt;}
.x9a_c00192{left:301.826667pt;}
.x39_c00192{left:303.360000pt;}
.xbd_c00192{left:305.666667pt;}
.xf8_c00192{left:307.200000pt;}
.xb2_c00192{left:309.506667pt;}
.xab_c00192{left:311.040000pt;}
.x31_c00192{left:314.106667pt;}
.x96_c00192{left:316.413333pt;}
.x6a_c00192{left:318.720000pt;}
.x87_c00192{left:321.026667pt;}
.x2b_c00192{left:322.560000pt;}
.x3a_c00192{left:325.626667pt;}
.x62_c00192{left:327.173333pt;}
.xb3_c00192{left:328.706667pt;}
.x6f_c00192{left:332.546667pt;}
.x41_c00192{left:334.080000pt;}
.xa7_c00192{left:335.613333pt;}
.xdb_c00192{left:337.920000pt;}
.x7e_c00192{left:339.453333pt;}
.xe9_c00192{left:340.986667pt;}
.x48_c00192{left:343.293333pt;}
.x50_c00192{left:346.373333pt;}
.x77_c00192{left:348.666667pt;}
.xd0_c00192{left:352.506667pt;}
.x32_c00192{left:354.813333pt;}
.xb4_c00192{left:356.346667pt;}
.xf1_c00192{left:357.893333pt;}
.xc6_c00192{left:359.426667pt;}
.x88_c00192{left:360.960000pt;}
.xd_c00192{left:363.266667pt;}
.x59_c00192{left:364.800000pt;}
.xfb_c00192{left:366.333333pt;}
.xcb_c00192{left:368.640000pt;}
.xea_c00192{left:370.173333pt;}
.x90_c00192{left:372.480000pt;}
.x49_c00192{left:374.786667pt;}
.x97_c00192{left:376.320000pt;}
.x5a_c00192{left:379.386667pt;}
.xd1_c00192{left:380.933333pt;}
.xd5_c00192{left:382.466667pt;}
.x19_c00192{left:384.773333pt;}
.xbe_c00192{left:386.306667pt;}
.x105_c00192{left:387.840000pt;}
.x6b_c00192{left:389.373333pt;}
.xce_c00192{left:393.213333pt;}
.x89_c00192{left:394.746667pt;}
.x98_c00192{left:396.293333pt;}
.xac_c00192{left:399.360000pt;}
.x2c_c00192{left:401.666667pt;}
.x7f_c00192{left:407.040000pt;}
.xd2_c00192{left:408.573333pt;}
.x3b_c00192{left:411.653333pt;}
.x70_c00192{left:414.720000pt;}
.x8a_c00192{left:416.253333pt;}
.x11_c00192{left:419.333333pt;}
.x91_c00192{left:422.400000pt;}
.xaf_c00192{left:424.706667pt;}
.xfc_c00192{left:427.012971pt;}
.x80_c00192{left:428.546667pt;}
.x8b_c00192{left:430.080000pt;}
.xf2_c00192{left:431.613333pt;}
.xd3_c00192{left:433.146667pt;}
.x10a_c00192{left:434.693333pt;}
.x9c_c00192{left:436.226667pt;}
.xd9_c00192{left:437.760000pt;}
.xa8_c00192{left:440.066667pt;}
.x81_c00192{left:441.600000pt;}
.x10b_c00192{left:443.906667pt;}
.xb5_c00192{left:445.440000pt;}
.x1a_c00192{left:449.280000pt;}
.x99_c00192{left:451.586667pt;}
.x9_c00192{left:453.120000pt;}
.x1b_c00192{left:456.186667pt;}
.x9d_c00192{left:457.733333pt;}
.xe_c00192{left:459.266667pt;}
.x63_c00192{left:465.413333pt;}
.xf0_c00192{left:467.706667pt;}
.x82_c00192{left:469.253333pt;}
.xd6_c00192{left:470.786667pt;}
.x9e_c00192{left:472.320000pt;}
.x4a_c00192{left:473.853333pt;}
.xa9_c00192{left:475.386667pt;}
.x78_c00192{left:476.933333pt;}
.xa_c00192{left:478.466667pt;}
.x64_c00192{left:480.000000pt;}
.x12_c00192{left:482.306667pt;}
.xb_c00192{left:484.613333pt;}
.xbf_c00192{left:486.146667pt;}
.x42_c00192{left:488.453333pt;}
.x1c_c00192{left:490.746667pt;}
.x110_c00192{left:493.053333pt;}
.x33_c00192{left:494.586667pt;}
.x92_c00192{left:496.133333pt;}
.xc0_c00192{left:499.200000pt;}
.x79_c00192{left:500.733333pt;}
.x3c_c00192{left:503.040000pt;}
.x106_c00192{left:505.346667pt;}
.xde_c00192{left:506.880000pt;}
.xe6_c00192{left:509.946667pt;}
.x13_c00192{left:511.493333pt;}
.x83_c00192{left:513.786667pt;}
.x6c_c00192{left:516.093333pt;}
.xdc_c00192{left:518.400000pt;}
.x7a_c00192{left:520.706667pt;}
.x65_c00192{left:523.773333pt;}
.x5b_c00192{left:526.080000pt;}
.xc8_c00192{left:527.613333pt;}
.x93_c00192{left:529.146667pt;}
.x4b_c00192{left:530.693333pt;}
.x1d_c00192{left:532.226667pt;}
.x100_c00192{left:535.293333pt;}
.x107_c00192{left:536.826667pt;}
.x9f_c00192{left:539.133333pt;}
.x43_c00192{left:541.440000pt;}
.xa3_c00192{left:543.746667pt;}
.x14_c00192{left:545.280000pt;}
.xc4_c00192{left:546.813333pt;}
.x8c_c00192{left:556.800000pt;}
.xeb_c00192{left:558.333333pt;}
.xf3_c00192{left:561.413333pt;}
.xc9_c00192{left:563.706667pt;}
.x57_c00192{left:566.013333pt;}
.xb6_c00192{left:567.546667pt;}
.xf5_c00192{left:569.093333pt;}
.x1e_c00192{left:570.626667pt;}
.x2d_c00192{left:574.466667pt;}
.xdf_c00192{left:576.000000pt;}
.x51_c00192{left:577.533333pt;}
.x1f_c00192{left:579.066667pt;}
.x8d_c00192{left:580.613333pt;}
.xb9_c00192{left:582.906667pt;}
.x44_c00192{left:585.213333pt;}
.x20_c00192{left:586.746667pt;}
.x84_c00192{left:588.293333pt;}
.x7b_c00192{left:589.826667pt;}
.x52_c00192{left:592.133333pt;}
.x101_c00192{left:596.733333pt;}
.xcc_c00192{left:599.813333pt;}
.x5c_c00192{left:602.106667pt;}
.x108_c00192{left:603.653333pt;}
.x34_c00192{left:606.720000pt;}
.x3d_c00192{left:609.026667pt;}
.x21_c00192{left:610.560000pt;}
.x4c_c00192{left:615.173333pt;}
.x71_c00192{left:618.240000pt;}
.xa2_c00192{left:619.773333pt;}
.x22_c00192{left:621.306667pt;}
.xec_c00192{left:624.386667pt;}
.xe7_c00192{left:627.453333pt;}
.x23_c00192{left:629.760000pt;}
.xf6_c00192{left:633.600000pt;}
.x45_c00192{left:635.133333pt;}
.x94_c00192{left:637.440000pt;}
.xba_c00192{left:638.973333pt;}
.x24_c00192{left:640.506667pt;}
.x66_c00192{left:642.813333pt;}
.xad_c00192{left:646.653333pt;}
.xf9_c00192{left:648.186667pt;}
.x25_c00192{left:649.733333pt;}
.x53_c00192{left:652.800000pt;}
.x4d_c00192{left:654.333333pt;}
.x15_c00192{left:656.640000pt;}
.x72_c00192{left:658.173333pt;}
.x58_c00192{left:659.706667pt;}
.x26_c00192{left:661.253333pt;}
.x46_c00192{left:663.546667pt;}
.x8e_c00192{left:666.626667pt;}
.xfd_c00192{left:671.226667pt;}
.x16_c00192{left:672.773333pt;}
.x4e_c00192{left:676.613333pt;}
.x7c_c00192{left:678.146667pt;}
.xdd_c00192{left:681.213333pt;}
.xa0_c00192{left:683.520000pt;}
.x2e_c00192{left:685.826667pt;}
.xe3_c00192{left:687.360000pt;}
.xed_c00192{left:691.973333pt;}
.x3e_c00192{left:693.506667pt;}
.xa4_c00192{left:701.946667pt;}
.x7d_c00192{left:704.253333pt;}
.x54_c00192{left:708.093333pt;}
.x47_c00192{left:711.173333pt;}
.x103_c00192{left:713.466667pt;}
.x35_c00192{left:716.546667pt;}
.x27_c00192{left:718.853333pt;}
.x73_c00192{left:722.693333pt;}
.xa5_c00192{left:726.533333pt;}
.x5d_c00192{left:728.826667pt;}
.x67_c00192{left:730.373333pt;}
.xfa_c00192{left:731.906667pt;}
.xe4_c00192{left:733.440000pt;}
.x85_c00192{left:734.973333pt;}
.x5e_c00192{left:740.346667pt;}
.x6d_c00192{left:742.653333pt;}
.x36_c00192{left:745.733333pt;}
.xae_c00192{left:749.573333pt;}
.x102_c00192{left:751.106667pt;}
.xe1_c00192{left:752.640000pt;}
.x109_c00192{left:756.480000pt;}
.x6e_c00192{left:758.013333pt;}
.x86_c00192{left:759.546667pt;}
.xbb_c00192{left:761.093333pt;}
.x37_c00192{left:763.386667pt;}
.x68_c00192{left:764.933333pt;}
.x5f_c00192{left:767.226667pt;}
.xd4_c00192{left:768.773333pt;}
.x2f_c00192{left:771.066667pt;}
.x55_c00192{left:773.373333pt;}
.x74_c00192{left:774.906667pt;}
.xcd_c00192{left:777.986667pt;}
.xb0_c00192{left:779.520000pt;}
.xc7_c00192{left:781.053333pt;}
.x38_c00192{left:783.360000pt;}
.xfe_c00192{left:784.893333pt;}
.x28_c00192{left:786.426667pt;}
.x3f_c00192{left:788.733333pt;}
.xf7_c00192{left:790.266667pt;}
.x75_c00192{left:791.813333pt;}
.xb7_c00192{left:793.346667pt;}
.x56_c00192{left:794.880000pt;}
.x30_c00192{left:797.186667pt;}
.x17_c00192{left:801.026667pt;}
.xa1_c00192{left:802.560000pt;}
.x76_c00192{left:807.173333pt;}
.x118_c00192{left:814.853333pt;}
.x115_c00192{left:820.986667pt;}
.x116_c00192{left:835.586667pt;}
.x114_c00192{left:862.466667pt;}
.x111_c00192{left:913.146667pt;}
.x112_c00192{left:920.066667pt;}
.x117_c00192{left:943.866667pt;}
.x11a_c00192{left:951.546667pt;}
.x113_c00192{left:963.840000pt;}
.x11b_c00192{left:969.213333pt;}
.x119_c00192{left:977.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7f53868e39ba26f272b4820.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.109863;font-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_c00193{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m36_c00193{transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);}
.m34_c00193{transform:matrix(0.070025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070025,0.000000,0.000000,0.250000,0,0);}
.m24_c00193{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);}
.m37_c00193{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m25_c00193{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);}
.m52_c00193{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m51_c00193{transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);}
.m35_c00193{transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123900,0.000000,0.000000,0.250000,0,0);}
.m49_c00193{transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);}
.m32_c00193{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m7_c00193{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m46_c00193{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);}
.m31_c00193{transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);}
.m21_c00193{transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);}
.m33_c00193{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m2b_c00193{transform:matrix(0.160275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160275,0.000000,0.000000,0.250000,0,0);}
.m4e_c00193{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m55_c00193{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m30_c00193{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m15_c00193{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);}
.mc_c00193{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.m20_c00193{transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);}
.me_c00193{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m56_c00193{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);}
.md_c00193{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m53_c00193{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.m4c_c00193{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);}
.m41_c00193{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);}
.m3f_c00193{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m2a_c00193{transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);}
.m43_c00193{transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);}
.m12_c00193{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);}
.m1a_c00193{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);}
.m14_c00193{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);}
.m4_c00193{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m45_c00193{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);}
.m42_c00193{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);}
.m1_c00193{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00193{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00193{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);}
.m1b_c00193{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);}
.m5_c00193{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);}
.m11_c00193{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00193{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m13_c00193{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00193{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m29_c00193{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c00193{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00193{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00193{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00193{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00193{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m50_c00193{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);}
.m1e_c00193{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00193{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);}
.m10_c00193{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);}
.m47_c00193{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m18_c00193{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m40_c00193{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m9_c00193{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m19_c00193{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m57_c00193{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);}
.m48_c00193{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m16_c00193{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00193{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m28_c00193{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m17_c00193{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m8_c00193{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00193{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00193{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00193{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m3_c00193{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);}
.m54_c00193{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m6_c00193{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m44_c00193{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m22_c00193{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00193{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m23_c00193{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00193{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m39_c00193{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);}
.m3a_c00193{transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);}
.m26_c00193{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00193{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00193{transform:matrix(1.627500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.627500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.627500,0.000000,0.000000,0.250000,0,0);}
.mb_c00193{transform:matrix(2.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.230000,0.000000,0.000000,0.250000,0,0);}
.m38_c00193{transform:matrix(2.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.410000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00193{transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);}
.v2_c00193{vertical-align:-13.800000px;}
.v0_c00193{vertical-align:0.000000px;}
.v1_c00193{vertical-align:3.480000px;}
.v3_c00193{vertical-align:6.900000px;}
.ls2_c00193{letter-spacing:0.000000px;}
.ls0_c00193{letter-spacing:59.042688px;}
.ls1_c00193{letter-spacing:147.124740px;}
.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;}
}
.ws1_c00193{word-spacing:0.000000px;}
.ws0_c00193{word-spacing:45.901920px;}
.fc0_c00193{color:transparent;}
.fs6_c00193{font-size:3.456000px;}
.fsb_c00193{font-size:6.000000px;}
.fs9_c00193{font-size:6.900000px;}
.fs8_c00193{font-size:10.380000px;}
.fs1_c00193{font-size:13.800000px;}
.fs16_c00193{font-size:17.280000px;}
.fsa_c00193{font-size:20.760000px;}
.fs7_c00193{font-size:24.180000px;}
.fs4_c00193{font-size:27.660000px;}
.fs2_c00193{font-size:31.080000px;}
.fs5_c00193{font-size:34.560000px;}
.fs3_c00193{font-size:38.040000px;}
.fs23_c00193{font-size:41.460000px;}
.fs25_c00193{font-size:44.940000px;}
.fs26_c00193{font-size:48.360000px;}
.fs0_c00193{font-size:51.840000px;}
.fs24_c00193{font-size:55.320000px;}
.fs22_c00193{font-size:62.220000px;}
.fs1c_c00193{font-size:65.640000px;}
.fs1d_c00193{font-size:69.120000px;}
.fs1f_c00193{font-size:72.600000px;}
.fs1e_c00193{font-size:79.500000px;}
.fsc_c00193{font-size:86.400000px;}
.fs1b_c00193{font-size:89.880000px;}
.fs19_c00193{font-size:100.200000px;}
.fs17_c00193{font-size:103.680000px;}
.fs18_c00193{font-size:107.160000px;}
.fsd_c00193{font-size:110.580000px;}
.fs20_c00193{font-size:114.060000px;}
.fsf_c00193{font-size:117.480000px;}
.fse_c00193{font-size:120.960000px;}
.fs21_c00193{font-size:124.440000px;}
.fs1a_c00193{font-size:162.420000px;}
.fs11_c00193{font-size:165.900000px;}
.fs12_c00193{font-size:179.700000px;}
.fs13_c00193{font-size:183.180000px;}
.fs10_c00193{font-size:186.600000px;}
.fs15_c00193{font-size:196.980000px;}
.fs14_c00193{font-size:221.160000px;}
.y0_c00193{bottom:0.000000px;}
.y74_c00193{bottom:107.130000px;}
.y75_c00193{bottom:108.870000px;}
.y73_c00193{bottom:112.320000px;}
.y71_c00193{bottom:114.045000px;}
.y72_c00193{bottom:118.365000px;}
.y6c_c00193{bottom:138.240000px;}
.y6e_c00193{bottom:144.285000px;}
.y6f_c00193{bottom:146.880000px;}
.y6d_c00193{bottom:147.750000px;}
.y6b_c00193{bottom:150.330000px;}
.y70_c00193{bottom:151.200000px;}
.y6a_c00193{bottom:197.850000px;}
.y69_c00193{bottom:203.040000px;}
.y67_c00193{bottom:495.930000px;}
.y68_c00193{bottom:506.310000px;}
.y66_c00193{bottom:513.210000px;}
.y65_c00193{bottom:527.040000px;}
.y64_c00193{bottom:545.190000px;}
.y62_c00193{bottom:583.200000px;}
.y63_c00193{bottom:597.885000px;}
.y61_c00193{bottom:617.760000px;}
.y60_c00193{bottom:627.270000px;}
.y5f_c00193{bottom:635.910000px;}
.y5e_c00193{bottom:653.190000px;}
.y5d_c00193{bottom:671.325000px;}
.y5c_c00193{bottom:684.285000px;}
.y5b_c00193{bottom:705.885000px;}
.y5a_c00193{bottom:757.725000px;}
.y59_c00193{bottom:774.150000px;}
.y58_c00193{bottom:793.155000px;}
.y57_c00193{bottom:811.290000px;}
.y56_c00193{bottom:828.570000px;}
.y55_c00193{bottom:857.955000px;}
.y54_c00193{bottom:862.275000px;}
.y4d_c00193{bottom:940.035000px;}
.y50_c00193{bottom:941.760000px;}
.y4c_c00193{bottom:942.630000px;}
.y4e_c00193{bottom:943.485000px;}
.y4f_c00193{bottom:944.355000px;}
.y51_c00193{bottom:946.080000px;}
.y47_c00193{bottom:960.765000px;}
.y48_c00193{bottom:961.635000px;}
.y49_c00193{bottom:962.490000px;}
.y3b_c00193{bottom:963.360000px;}
.y4a_c00193{bottom:965.085000px;}
.y4b_c00193{bottom:966.810000px;}
.y3e_c00193{bottom:967.680000px;}
.y40_c00193{bottom:968.550000px;}
.y3d_c00193{bottom:969.405000px;}
.y41_c00193{bottom:970.275000px;}
.y42_c00193{bottom:971.130000px;}
.y46_c00193{bottom:972.870000px;}
.y3c_c00193{bottom:975.450000px;}
.y3f_c00193{bottom:976.320000px;}
.y43_c00193{bottom:985.830000px;}
.y45_c00193{bottom:992.730000px;}
.y36_c00193{bottom:996.195000px;}
.y35_c00193{bottom:997.920000px;}
.y38_c00193{bottom:998.790000px;}
.y44_c00193{bottom:999.645000px;}
.y37_c00193{bottom:1000.515000px;}
.y39_c00193{bottom:1003.110000px;}
.y3a_c00193{bottom:1003.965000px;}
.y31_c00193{bottom:1004.835000px;}
.y32_c00193{bottom:1007.430000px;}
.y33_c00193{bottom:1010.010000px;}
.y34_c00193{bottom:1011.750000px;}
.y2a_c00193{bottom:1025.565000px;}
.y2b_c00193{bottom:1027.290000px;}
.y2f_c00193{bottom:1029.030000px;}
.y2d_c00193{bottom:1029.885000px;}
.y2e_c00193{bottom:1030.755000px;}
.y2c_c00193{bottom:1031.610000px;}
.y30_c00193{bottom:1034.205000px;}
.y24_c00193{bottom:1035.075000px;}
.y26_c00193{bottom:1040.250000px;}
.y25_c00193{bottom:1041.120000px;}
.y27_c00193{bottom:1041.990000px;}
.y28_c00193{bottom:1048.035000px;}
.y29_c00193{bottom:1049.760000px;}
.y53_c00193{bottom:1069.635000px;}
.y1d_c00193{bottom:1072.230000px;}
.y1c_c00193{bottom:1073.085000px;}
.y1e_c00193{bottom:1075.680000px;}
.y1f_c00193{bottom:1077.405000px;}
.y52_c00193{bottom:1078.275000px;}
.y20_c00193{bottom:1080.000000px;}
.y23_c00193{bottom:1088.640000px;}
.y19_c00193{bottom:1108.515000px;}
.y1a_c00193{bottom:1116.285000px;}
.y13_c00193{bottom:1120.605000px;}
.y14_c00193{bottom:1123.200000px;}
.y15_c00193{bottom:1124.070000px;}
.y16_c00193{bottom:1124.925000px;}
.y1b_c00193{bottom:1126.650000px;}
.y17_c00193{bottom:1127.520000px;}
.y18_c00193{bottom:1132.710000px;}
.y12_c00193{bottom:1164.675000px;}
.y10_c00193{bottom:1185.405000px;}
.y11_c00193{bottom:1187.130000px;}
.yf_c00193{bottom:1189.725000px;}
.y21_c00193{bottom:1209.600000px;}
.y22_c00193{bottom:1211.325000px;}
.yb_c00193{bottom:1214.790000px;}
.yc_c00193{bottom:1215.645000px;}
.ye_c00193{bottom:1216.515000px;}
.yd_c00193{bottom:1217.370000px;}
.y9_c00193{bottom:1244.160000px;}
.ya_c00193{bottom:1245.885000px;}
.y6_c00193{bottom:1293.405000px;}
.y7_c00193{bottom:1296.870000px;}
.y8_c00193{bottom:1297.725000px;}
.y4_c00193{bottom:1320.195000px;}
.y2_c00193{bottom:1337.475000px;}
.y5_c00193{bottom:1340.925000px;}
.y3_c00193{bottom:1351.290000px;}
.y1_c00193{bottom:1353.885000px;}
.ha_c00193{height:3.110063px;}
.hd_c00193{height:5.399414px;}
.hb_c00193{height:6.209326px;}
.h9_c00193{height:9.340986px;}
.h22_c00193{height:10.010062px;}
.h3_c00193{height:12.418652px;}
.h20_c00193{height:15.550313px;}
.hc_c00193{height:18.681973px;}
.h8_c00193{height:21.759639px;}
.h6_c00193{height:24.891299px;}
.h4_c00193{height:27.968965px;}
.h7_c00193{height:31.100625px;}
.h5_c00193{height:34.232285px;}
.h26_c00193{height:37.309951px;}
.h28_c00193{height:40.441611px;}
.h29_c00193{height:43.519277px;}
.h2_c00193{height:46.650937px;}
.h27_c00193{height:49.782598px;}
.h25_c00193{height:55.991924px;}
.h1d_c00193{height:59.069590px;}
.h1e_c00193{height:62.201250px;}
.h21_c00193{height:65.332910px;}
.h1f_c00193{height:71.542236px;}
.he_c00193{height:77.751563px;}
.h1c_c00193{height:80.883223px;}
.h1a_c00193{height:90.170215px;}
.h18_c00193{height:93.301875px;}
.h19_c00193{height:96.433535px;}
.hf_c00193{height:99.511201px;}
.h23_c00193{height:102.642861px;}
.h11_c00193{height:105.720527px;}
.h10_c00193{height:108.852188px;}
.h24_c00193{height:111.983848px;}
.h1b_c00193{height:146.162139px;}
.h13_c00193{height:149.293799px;}
.h14_c00193{height:161.712451px;}
.h15_c00193{height:164.844111px;}
.h12_c00193{height:167.921777px;}
.h17_c00193{height:177.262764px;}
.h16_c00193{height:199.022402px;}
.h1_c00193{height:1503.000000px;}
.h0_c00193{height:1503.360000px;}
.w0_c00193{width:1090.365000px;}
.w1_c00193{width:1090.500000px;}
.x0_c00193{left:0.000000px;}
.x59_c00193{left:2.595000px;}
.x1_c00193{left:6.915000px;}
.x58_c00193{left:76.035000px;}
.x2_c00193{left:79.485000px;}
.x5b_c00193{left:85.530000px;}
.x24_c00193{left:171.075000px;}
.x5a_c00193{left:174.525000px;}
.x13_c00193{left:200.445000px;}
.x14_c00193{left:222.915000px;}
.x1a_c00193{left:239.325000px;}
.x1b_c00193{left:272.160000px;}
.x1d_c00193{left:275.610000px;}
.x15_c00193{left:294.630000px;}
.x3b_c00193{left:315.360000px;}
.x3c_c00193{left:327.450000px;}
.x32_c00193{left:329.190000px;}
.x1e_c00193{left:330.915000px;}
.x36_c00193{left:344.730000px;}
.x16_c00193{left:355.965000px;}
.x1f_c00193{left:362.010000px;}
.x37_c00193{left:363.750000px;}
.x2b_c00193{left:367.200000px;}
.x17_c00193{left:407.805000px;}
.xf_c00193{left:415.590000px;}
.x38_c00193{left:436.320000px;}
.x45_c00193{left:440.640000px;}
.xb_c00193{left:457.050000px;}
.x10_c00193{left:458.790000px;}
.x33_c00193{left:471.750000px;}
.x20_c00193{left:476.925000px;}
.x4e_c00193{left:480.390000px;}
.x46_c00193{left:486.435000px;}
.xc_c00193{left:489.030000px;}
.x4f_c00193{left:494.205000px;}
.x2c_c00193{left:496.800000px;}
.x25_c00193{left:509.760000px;}
.x18_c00193{left:512.355000px;}
.x3d_c00193{left:514.080000px;}
.x50_c00193{left:516.675000px;}
.x47_c00193{left:524.445000px;}
.xd_c00193{left:532.230000px;}
.x26_c00193{left:535.680000px;}
.x3e_c00193{left:540.000000px;}
.x51_c00193{left:541.725000px;}
.x11_c00193{left:544.320000px;}
.x48_c00193{left:567.645000px;}
.xe_c00193{left:577.155000px;}
.x39_c00193{left:583.200000px;}
.x52_c00193{left:588.390000px;}
.x2d_c00193{left:596.160000px;}
.x49_c00193{left:601.350000px;}
.x12_c00193{left:604.800000px;}
.x63_c00193{left:612.570000px;}
.x64_c00193{left:615.165000px;}
.x4a_c00193{left:621.210000px;}
.x4b_c00193{left:630.720000px;}
.x53_c00193{left:641.085000px;}
.x27_c00193{left:645.405000px;}
.x21_c00193{left:673.050000px;}
.x2e_c00193{left:675.645000px;}
.x2f_c00193{left:678.240000px;}
.x30_c00193{left:680.835000px;}
.x3f_c00193{left:684.285000px;}
.x19_c00193{left:692.925000px;}
.x65_c00193{left:713.670000px;}
.x66_c00193{left:721.440000px;}
.x3a_c00193{left:725.760000px;}
.x40_c00193{left:737.850000px;}
.x41_c00193{left:756.000000px;}
.x42_c00193{left:767.235000px;}
.x5f_c00193{left:769.830000px;}
.x5e_c00193{left:771.555000px;}
.x43_c00193{left:777.600000px;}
.x34_c00193{left:782.790000px;}
.x67_c00193{left:790.560000px;}
.x28_c00193{left:792.285000px;}
.x68_c00193{left:799.200000px;}
.x4c_c00193{left:803.520000px;}
.x29_c00193{left:808.710000px;}
.x1c_c00193{left:810.435000px;}
.x44_c00193{left:814.755000px;}
.x35_c00193{left:826.845000px;}
.x31_c00193{left:828.570000px;}
.x22_c00193{left:833.760000px;}
.x4d_c00193{left:835.485000px;}
.x23_c00193{left:840.675000px;}
.x56_c00193{left:846.720000px;}
.x54_c00193{left:848.445000px;}
.x55_c00193{left:857.955000px;}
.x2a_c00193{left:859.680000px;}
.x57_c00193{left:864.000000px;}
.x60_c00193{left:876.090000px;}
.x5c_c00193{left:931.395000px;}
.x5d_c00193{left:942.630000px;}
.x9_c00193{left:944.355000px;}
.x3_c00193{left:946.080000px;}
.x5_c00193{left:948.675000px;}
.xa_c00193{left:952.995000px;}
.x6_c00193{left:961.635000px;}
.x61_c00193{left:971.130000px;}
.x7_c00193{left:973.725000px;}
.x4_c00193{left:978.045000px;}
.x62_c00193{left:979.770000px;}
.x8_c00193{left:988.410000px;}
@media print{
.v2_c00193{vertical-align:-12.266667pt;}
.v0_c00193{vertical-align:0.000000pt;}
.v1_c00193{vertical-align:3.093333pt;}
.v3_c00193{vertical-align:6.133333pt;}
.ls2_c00193{letter-spacing:0.000000pt;}
.ls0_c00193{letter-spacing:52.482389pt;}
.ls1_c00193{letter-spacing:130.777547pt;}
.ws1_c00193{word-spacing:0.000000pt;}
.ws0_c00193{word-spacing:40.801707pt;}
.fs6_c00193{font-size:3.072000pt;}
.fsb_c00193{font-size:5.333333pt;}
.fs9_c00193{font-size:6.133333pt;}
.fs8_c00193{font-size:9.226667pt;}
.fs1_c00193{font-size:12.266667pt;}
.fs16_c00193{font-size:15.360000pt;}
.fsa_c00193{font-size:18.453333pt;}
.fs7_c00193{font-size:21.493333pt;}
.fs4_c00193{font-size:24.586667pt;}
.fs2_c00193{font-size:27.626667pt;}
.fs5_c00193{font-size:30.720000pt;}
.fs3_c00193{font-size:33.813333pt;}
.fs23_c00193{font-size:36.853333pt;}
.fs25_c00193{font-size:39.946667pt;}
.fs26_c00193{font-size:42.986667pt;}
.fs0_c00193{font-size:46.080000pt;}
.fs24_c00193{font-size:49.173333pt;}
.fs22_c00193{font-size:55.306667pt;}
.fs1c_c00193{font-size:58.346667pt;}
.fs1d_c00193{font-size:61.440000pt;}
.fs1f_c00193{font-size:64.533333pt;}
.fs1e_c00193{font-size:70.666667pt;}
.fsc_c00193{font-size:76.800000pt;}
.fs1b_c00193{font-size:79.893333pt;}
.fs19_c00193{font-size:89.066667pt;}
.fs17_c00193{font-size:92.160000pt;}
.fs18_c00193{font-size:95.253333pt;}
.fsd_c00193{font-size:98.293333pt;}
.fs20_c00193{font-size:101.386667pt;}
.fsf_c00193{font-size:104.426667pt;}
.fse_c00193{font-size:107.520000pt;}
.fs21_c00193{font-size:110.613333pt;}
.fs1a_c00193{font-size:144.373333pt;}
.fs11_c00193{font-size:147.466667pt;}
.fs12_c00193{font-size:159.733333pt;}
.fs13_c00193{font-size:162.826667pt;}
.fs10_c00193{font-size:165.866667pt;}
.fs15_c00193{font-size:175.093333pt;}
.fs14_c00193{font-size:196.586667pt;}
.y0_c00193{bottom:0.000000pt;}
.y74_c00193{bottom:95.226667pt;}
.y75_c00193{bottom:96.773333pt;}
.y73_c00193{bottom:99.840000pt;}
.y71_c00193{bottom:101.373333pt;}
.y72_c00193{bottom:105.213333pt;}
.y6c_c00193{bottom:122.880000pt;}
.y6e_c00193{bottom:128.253333pt;}
.y6f_c00193{bottom:130.560000pt;}
.y6d_c00193{bottom:131.333333pt;}
.y6b_c00193{bottom:133.626667pt;}
.y70_c00193{bottom:134.400000pt;}
.y6a_c00193{bottom:175.866667pt;}
.y69_c00193{bottom:180.480000pt;}
.y67_c00193{bottom:440.826667pt;}
.y68_c00193{bottom:450.053333pt;}
.y66_c00193{bottom:456.186667pt;}
.y65_c00193{bottom:468.480000pt;}
.y64_c00193{bottom:484.613333pt;}
.y62_c00193{bottom:518.400000pt;}
.y63_c00193{bottom:531.453333pt;}
.y61_c00193{bottom:549.120000pt;}
.y60_c00193{bottom:557.573333pt;}
.y5f_c00193{bottom:565.253333pt;}
.y5e_c00193{bottom:580.613333pt;}
.y5d_c00193{bottom:596.733333pt;}
.y5c_c00193{bottom:608.253333pt;}
.y5b_c00193{bottom:627.453333pt;}
.y5a_c00193{bottom:673.533333pt;}
.y59_c00193{bottom:688.133333pt;}
.y58_c00193{bottom:705.026667pt;}
.y57_c00193{bottom:721.146667pt;}
.y56_c00193{bottom:736.506667pt;}
.y55_c00193{bottom:762.626667pt;}
.y54_c00193{bottom:766.466667pt;}
.y4d_c00193{bottom:835.586667pt;}
.y50_c00193{bottom:837.120000pt;}
.y4c_c00193{bottom:837.893333pt;}
.y4e_c00193{bottom:838.653333pt;}
.y4f_c00193{bottom:839.426667pt;}
.y51_c00193{bottom:840.960000pt;}
.y47_c00193{bottom:854.013333pt;}
.y48_c00193{bottom:854.786667pt;}
.y49_c00193{bottom:855.546667pt;}
.y3b_c00193{bottom:856.320000pt;}
.y4a_c00193{bottom:857.853333pt;}
.y4b_c00193{bottom:859.386667pt;}
.y3e_c00193{bottom:860.160000pt;}
.y40_c00193{bottom:860.933333pt;}
.y3d_c00193{bottom:861.693333pt;}
.y41_c00193{bottom:862.466667pt;}
.y42_c00193{bottom:863.226667pt;}
.y46_c00193{bottom:864.773333pt;}
.y3c_c00193{bottom:867.066667pt;}
.y3f_c00193{bottom:867.840000pt;}
.y43_c00193{bottom:876.293333pt;}
.y45_c00193{bottom:882.426667pt;}
.y36_c00193{bottom:885.506667pt;}
.y35_c00193{bottom:887.040000pt;}
.y38_c00193{bottom:887.813333pt;}
.y44_c00193{bottom:888.573333pt;}
.y37_c00193{bottom:889.346667pt;}
.y39_c00193{bottom:891.653333pt;}
.y3a_c00193{bottom:892.413333pt;}
.y31_c00193{bottom:893.186667pt;}
.y32_c00193{bottom:895.493333pt;}
.y33_c00193{bottom:897.786667pt;}
.y34_c00193{bottom:899.333333pt;}
.y2a_c00193{bottom:911.613333pt;}
.y2b_c00193{bottom:913.146667pt;}
.y2f_c00193{bottom:914.693333pt;}
.y2d_c00193{bottom:915.453333pt;}
.y2e_c00193{bottom:916.226667pt;}
.y2c_c00193{bottom:916.986667pt;}
.y30_c00193{bottom:919.293333pt;}
.y24_c00193{bottom:920.066667pt;}
.y26_c00193{bottom:924.666667pt;}
.y25_c00193{bottom:925.440000pt;}
.y27_c00193{bottom:926.213333pt;}
.y28_c00193{bottom:931.586667pt;}
.y29_c00193{bottom:933.120000pt;}
.y53_c00193{bottom:950.786667pt;}
.y1d_c00193{bottom:953.093333pt;}
.y1c_c00193{bottom:953.853333pt;}
.y1e_c00193{bottom:956.160000pt;}
.y1f_c00193{bottom:957.693333pt;}
.y52_c00193{bottom:958.466667pt;}
.y20_c00193{bottom:960.000000pt;}
.y23_c00193{bottom:967.680000pt;}
.y19_c00193{bottom:985.346667pt;}
.y1a_c00193{bottom:992.253333pt;}
.y13_c00193{bottom:996.093333pt;}
.y14_c00193{bottom:998.400000pt;}
.y15_c00193{bottom:999.173333pt;}
.y16_c00193{bottom:999.933333pt;}
.y1b_c00193{bottom:1001.466667pt;}
.y17_c00193{bottom:1002.240000pt;}
.y18_c00193{bottom:1006.853333pt;}
.y12_c00193{bottom:1035.266667pt;}
.y10_c00193{bottom:1053.693333pt;}
.y11_c00193{bottom:1055.226667pt;}
.yf_c00193{bottom:1057.533333pt;}
.y21_c00193{bottom:1075.200000pt;}
.y22_c00193{bottom:1076.733333pt;}
.yb_c00193{bottom:1079.813333pt;}
.yc_c00193{bottom:1080.573333pt;}
.ye_c00193{bottom:1081.346667pt;}
.yd_c00193{bottom:1082.106667pt;}
.y9_c00193{bottom:1105.920000pt;}
.ya_c00193{bottom:1107.453333pt;}
.y6_c00193{bottom:1149.693333pt;}
.y7_c00193{bottom:1152.773333pt;}
.y8_c00193{bottom:1153.533333pt;}
.y4_c00193{bottom:1173.506667pt;}
.y2_c00193{bottom:1188.866667pt;}
.y5_c00193{bottom:1191.933333pt;}
.y3_c00193{bottom:1201.146667pt;}
.y1_c00193{bottom:1203.453333pt;}
.ha_c00193{height:2.764500pt;}
.hd_c00193{height:4.799479pt;}
.hb_c00193{height:5.519401pt;}
.h9_c00193{height:8.303099pt;}
.h22_c00193{height:8.897833pt;}
.h3_c00193{height:11.038802pt;}
.h20_c00193{height:13.822500pt;}
.hc_c00193{height:16.606198pt;}
.h8_c00193{height:19.341901pt;}
.h6_c00193{height:22.125599pt;}
.h4_c00193{height:24.861302pt;}
.h7_c00193{height:27.645000pt;}
.h5_c00193{height:30.428698pt;}
.h26_c00193{height:33.164401pt;}
.h28_c00193{height:35.948099pt;}
.h29_c00193{height:38.683802pt;}
.h2_c00193{height:41.467500pt;}
.h27_c00193{height:44.251198pt;}
.h25_c00193{height:49.770599pt;}
.h1d_c00193{height:52.506302pt;}
.h1e_c00193{height:55.290000pt;}
.h21_c00193{height:58.073698pt;}
.h1f_c00193{height:63.593099pt;}
.he_c00193{height:69.112500pt;}
.h1c_c00193{height:71.896198pt;}
.h1a_c00193{height:80.151302pt;}
.h18_c00193{height:82.935000pt;}
.h19_c00193{height:85.718698pt;}
.hf_c00193{height:88.454401pt;}
.h23_c00193{height:91.238099pt;}
.h11_c00193{height:93.973802pt;}
.h10_c00193{height:96.757500pt;}
.h24_c00193{height:99.541198pt;}
.h1b_c00193{height:129.921901pt;}
.h13_c00193{height:132.705599pt;}
.h14_c00193{height:143.744401pt;}
.h15_c00193{height:146.528099pt;}
.h12_c00193{height:149.263802pt;}
.h17_c00193{height:157.566901pt;}
.h16_c00193{height:176.908802pt;}
.h1_c00193{height:1336.000000pt;}
.h0_c00193{height:1336.320000pt;}
.w0_c00193{width:969.213333pt;}
.w1_c00193{width:969.333333pt;}
.x0_c00193{left:0.000000pt;}
.x59_c00193{left:2.306667pt;}
.x1_c00193{left:6.146667pt;}
.x58_c00193{left:67.586667pt;}
.x2_c00193{left:70.653333pt;}
.x5b_c00193{left:76.026667pt;}
.x24_c00193{left:152.066667pt;}
.x5a_c00193{left:155.133333pt;}
.x13_c00193{left:178.173333pt;}
.x14_c00193{left:198.146667pt;}
.x1a_c00193{left:212.733333pt;}
.x1b_c00193{left:241.920000pt;}
.x1d_c00193{left:244.986667pt;}
.x15_c00193{left:261.893333pt;}
.x3b_c00193{left:280.320000pt;}
.x3c_c00193{left:291.066667pt;}
.x32_c00193{left:292.613333pt;}
.x1e_c00193{left:294.146667pt;}
.x36_c00193{left:306.426667pt;}
.x16_c00193{left:316.413333pt;}
.x1f_c00193{left:321.786667pt;}
.x37_c00193{left:323.333333pt;}
.x2b_c00193{left:326.400000pt;}
.x17_c00193{left:362.493333pt;}
.xf_c00193{left:369.413333pt;}
.x38_c00193{left:387.840000pt;}
.x45_c00193{left:391.680000pt;}
.xb_c00193{left:406.266667pt;}
.x10_c00193{left:407.813333pt;}
.x33_c00193{left:419.333333pt;}
.x20_c00193{left:423.933333pt;}
.x4e_c00193{left:427.013333pt;}
.x46_c00193{left:432.386667pt;}
.xc_c00193{left:434.693333pt;}
.x4f_c00193{left:439.293333pt;}
.x2c_c00193{left:441.600000pt;}
.x25_c00193{left:453.120000pt;}
.x18_c00193{left:455.426667pt;}
.x3d_c00193{left:456.960000pt;}
.x50_c00193{left:459.266667pt;}
.x47_c00193{left:466.173333pt;}
.xd_c00193{left:473.093333pt;}
.x26_c00193{left:476.160000pt;}
.x3e_c00193{left:480.000000pt;}
.x51_c00193{left:481.533333pt;}
.x11_c00193{left:483.840000pt;}
.x48_c00193{left:504.573333pt;}
.xe_c00193{left:513.026667pt;}
.x39_c00193{left:518.400000pt;}
.x52_c00193{left:523.013333pt;}
.x2d_c00193{left:529.920000pt;}
.x49_c00193{left:534.533333pt;}
.x12_c00193{left:537.600000pt;}
.x63_c00193{left:544.506667pt;}
.x64_c00193{left:546.813333pt;}
.x4a_c00193{left:552.186667pt;}
.x4b_c00193{left:560.640000pt;}
.x53_c00193{left:569.853333pt;}
.x27_c00193{left:573.693333pt;}
.x21_c00193{left:598.266667pt;}
.x2e_c00193{left:600.573333pt;}
.x2f_c00193{left:602.880000pt;}
.x30_c00193{left:605.186667pt;}
.x3f_c00193{left:608.253333pt;}
.x19_c00193{left:615.933333pt;}
.x65_c00193{left:634.373333pt;}
.x66_c00193{left:641.280000pt;}
.x3a_c00193{left:645.120000pt;}
.x40_c00193{left:655.866667pt;}
.x41_c00193{left:672.000000pt;}
.x42_c00193{left:681.986667pt;}
.x5f_c00193{left:684.293333pt;}
.x5e_c00193{left:685.826667pt;}
.x43_c00193{left:691.200000pt;}
.x34_c00193{left:695.813333pt;}
.x67_c00193{left:702.720000pt;}
.x28_c00193{left:704.253333pt;}
.x68_c00193{left:710.400000pt;}
.x4c_c00193{left:714.240000pt;}
.x29_c00193{left:718.853333pt;}
.x1c_c00193{left:720.386667pt;}
.x44_c00193{left:724.226667pt;}
.x35_c00193{left:734.973333pt;}
.x31_c00193{left:736.506667pt;}
.x22_c00193{left:741.120000pt;}
.x4d_c00193{left:742.653333pt;}
.x23_c00193{left:747.266667pt;}
.x56_c00193{left:752.640000pt;}
.x54_c00193{left:754.173333pt;}
.x55_c00193{left:762.626667pt;}
.x2a_c00193{left:764.160000pt;}
.x57_c00193{left:768.000000pt;}
.x60_c00193{left:778.746667pt;}
.x5c_c00193{left:827.906667pt;}
.x5d_c00193{left:837.893333pt;}
.x9_c00193{left:839.426667pt;}
.x3_c00193{left:840.960000pt;}
.x5_c00193{left:843.266667pt;}
.xa_c00193{left:847.106667pt;}
.x6_c00193{left:854.786667pt;}
.x61_c00193{left:863.226667pt;}
.x7_c00193{left:865.533333pt;}
.x4_c00193{left:869.373333pt;}
.x62_c00193{left:870.906667pt;}
.x8_c00193{left:878.586667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7b6641a7a4e1b194daedeee7.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.109863;font-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_c00194{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m2_c00194{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);}
.m0_c00194{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,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;}
.fs0_c00194{font-size:10.380000px;}
.fs2_c00194{font-size:20.760000px;}
.fs1_c00194{font-size:55.320000px;}
.y0_c00194{bottom:0.000000px;}
.y2_c00194{bottom:869.190000px;}
.y1_c00194{bottom:1156.890000px;}
.h2_c00194{height:9.340986px;}
.h4_c00194{height:18.681973px;}
.h3_c00194{height:49.782598px;}
.h0_c00194{height:1523.235000px;}
.h1_c00194{height:1523.250000px;}
.w0_c00194{width:1107.645000px;}
.w1_c00194{width:1107.750000px;}
.x0_c00194{left:0.000000px;}
.x1_c00194{left:985.830000px;}
.x2_c00194{left:1006.560000px;}
.x3_c00194{left:1081.725000px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ws0_c00194{word-spacing:0.000000pt;}
.fs0_c00194{font-size:9.226667pt;}
.fs2_c00194{font-size:18.453333pt;}
.fs1_c00194{font-size:49.173333pt;}
.y0_c00194{bottom:0.000000pt;}
.y2_c00194{bottom:772.613333pt;}
.y1_c00194{bottom:1028.346667pt;}
.h2_c00194{height:8.303099pt;}
.h4_c00194{height:16.606198pt;}
.h3_c00194{height:44.251198pt;}
.h0_c00194{height:1353.986667pt;}
.h1_c00194{height:1354.000000pt;}
.w0_c00194{width:984.573333pt;}
.w1_c00194{width:984.666667pt;}
.x0_c00194{left:0.000000pt;}
.x1_c00194{left:876.293333pt;}
.x2_c00194{left:894.720000pt;}
.x3_c00194{left:961.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00195;src:url('chunks/assets/font_e7a754943776567c7c5f5630.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.109863;font-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_c00195{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m23_c00195{transform:matrix(0.067950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067950,0.000000,0.000000,0.250000,0,0);}
.m21_c00195{transform:matrix(0.095725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095725,0.000000,0.000000,0.250000,0,0);}
.m10_c00195{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m22_c00195{transform:matrix(0.131975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131975,0.000000,0.000000,0.250000,0,0);}
.m1b_c00195{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m5_c00195{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m12_c00195{transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);}
.m11_c00195{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);}
.md_c00195{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);}
.m13_c00195{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);}
.m17_c00195{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);}
.m1f_c00195{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);}
.mb_c00195{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);}
.m14_c00195{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);}
.m1a_c00195{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);}
.m9_c00195{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);}
.m2_c00195{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00195{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);}
.m16_c00195{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c00195{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19_c00195{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);}
.m1d_c00195{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00195{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c00195{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);}
.mc_c00195{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m18_c00195{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c00195{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m15_c00195{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00195{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m20_c00195{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4_c00195{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m7_c00195{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mf_c00195{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m3_c00195{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.m1_c00195{transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.v1_c00195{vertical-align:6.960000px;}
.ls1_c00195{letter-spacing:0.000000px;}
.ls0_c00195{letter-spacing:117.695640px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00195{word-spacing:0.000000px;}
.fc0_c00195{color:transparent;}
.fs0_c00195{font-size:3.456000px;}
.fs1_c00195{font-size:10.380000px;}
.fs5_c00195{font-size:13.800000px;}
.fs6_c00195{font-size:17.280000px;}
.fs3_c00195{font-size:24.180000px;}
.fs11_c00195{font-size:27.660000px;}
.fsc_c00195{font-size:31.080000px;}
.fs4_c00195{font-size:34.560000px;}
.fs8_c00195{font-size:38.040000px;}
.fsb_c00195{font-size:41.460000px;}
.fs10_c00195{font-size:48.360000px;}
.fs9_c00195{font-size:51.840000px;}
.fs2_c00195{font-size:55.320000px;}
.fsa_c00195{font-size:58.740000px;}
.fse_c00195{font-size:69.120000px;}
.fsf_c00195{font-size:79.500000px;}
.fsd_c00195{font-size:86.400000px;}
.fs12_c00195{font-size:89.880000px;}
.fs14_c00195{font-size:93.300000px;}
.fs7_c00195{font-size:96.780000px;}
.fs15_c00195{font-size:100.200000px;}
.fs13_c00195{font-size:114.060000px;}
.y0_c00195{bottom:0.000000px;}
.y26_c00195{bottom:566.790000px;}
.y25_c00195{bottom:591.840000px;}
.y24_c00195{bottom:620.355000px;}
.y23_c00195{bottom:648.000000px;}
.y22_c00195{bottom:656.640000px;}
.y21_c00195{bottom:660.090000px;}
.y1f_c00195{bottom:683.430000px;}
.y20_c00195{bottom:686.010000px;}
.y1e_c00195{bottom:698.115000px;}
.y1d_c00195{bottom:723.165000px;}
.y1c_c00195{bottom:749.955000px;}
.y1b_c00195{bottom:774.150000px;}
.y1a_c00195{bottom:798.330000px;}
.y19_c00195{bottom:821.670000px;}
.y18_c00195{bottom:850.170000px;}
.y16_c00195{bottom:859.680000px;}
.y17_c00195{bottom:862.275000px;}
.y15_c00195{bottom:875.235000px;}
.y13_c00195{bottom:895.965000px;}
.y14_c00195{bottom:902.880000px;}
.y12_c00195{bottom:1097.280000px;}
.y11_c00195{bottom:1103.325000px;}
.y10_c00195{bottom:1112.835000px;}
.yf_c00195{bottom:1127.520000px;}
.ye_c00195{bottom:1146.525000px;}
.yc_c00195{bottom:1156.035000px;}
.yd_c00195{bottom:1160.355000px;}
.yb_c00195{bottom:1178.490000px;}
.ya_c00195{bottom:1188.000000px;}
.y9_c00195{bottom:1214.790000px;}
.y5_c00195{bottom:1353.885000px;}
.y4_c00195{bottom:1365.120000px;}
.y3_c00195{bottom:1375.485000px;}
.y6_c00195{bottom:1390.170000px;}
.y2_c00195{bottom:1393.635000px;}
.y1_c00195{bottom:1397.085000px;}
.y7_c00195{bottom:1430.790000px;}
.y8_c00195{bottom:1435.110000px;}
.h2_c00195{height:3.110063px;}
.h3_c00195{height:9.340986px;}
.h8_c00195{height:15.550313px;}
.h7_c00195{height:19.378652px;}
.h5_c00195{height:21.759639px;}
.h13_c00195{height:24.891299px;}
.he_c00195{height:27.968965px;}
.h6_c00195{height:31.100625px;}
.ha_c00195{height:34.232285px;}
.hd_c00195{height:37.309951px;}
.h12_c00195{height:43.519277px;}
.hb_c00195{height:46.650937px;}
.h4_c00195{height:49.782598px;}
.hc_c00195{height:52.860264px;}
.h10_c00195{height:62.201250px;}
.h11_c00195{height:71.542236px;}
.hf_c00195{height:77.751563px;}
.h14_c00195{height:80.883223px;}
.h16_c00195{height:83.960889px;}
.h9_c00195{height:87.092549px;}
.h17_c00195{height:90.170215px;}
.h15_c00195{height:102.642861px;}
.h1_c00195{height:1503.000000px;}
.h0_c00195{height:1503.360000px;}
.w0_c00195{width:1090.365000px;}
.w1_c00195{width:1090.500000px;}
.x0_c00195{left:0.000000px;}
.x8_c00195{left:1.725000px;}
.x1_c00195{left:4.320000px;}
.x6_c00195{left:6.045000px;}
.xa_c00195{left:8.640000px;}
.x2_c00195{left:10.365000px;}
.x9_c00195{left:12.960000px;}
.xc_c00195{left:15.555000px;}
.xd_c00195{left:27.645000px;}
.xb_c00195{left:30.240000px;}
.x4_c00195{left:44.925000px;}
.x7_c00195{left:49.245000px;}
.x5_c00195{left:52.710000px;}
.x3_c00195{left:73.440000px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.v1_c00195{vertical-align:6.186667pt;}
.ls1_c00195{letter-spacing:0.000000pt;}
.ls0_c00195{letter-spacing:104.618347pt;}
.ws0_c00195{word-spacing:0.000000pt;}
.fs0_c00195{font-size:3.072000pt;}
.fs1_c00195{font-size:9.226667pt;}
.fs5_c00195{font-size:12.266667pt;}
.fs6_c00195{font-size:15.360000pt;}
.fs3_c00195{font-size:21.493333pt;}
.fs11_c00195{font-size:24.586667pt;}
.fsc_c00195{font-size:27.626667pt;}
.fs4_c00195{font-size:30.720000pt;}
.fs8_c00195{font-size:33.813333pt;}
.fsb_c00195{font-size:36.853333pt;}
.fs10_c00195{font-size:42.986667pt;}
.fs9_c00195{font-size:46.080000pt;}
.fs2_c00195{font-size:49.173333pt;}
.fsa_c00195{font-size:52.213333pt;}
.fse_c00195{font-size:61.440000pt;}
.fsf_c00195{font-size:70.666667pt;}
.fsd_c00195{font-size:76.800000pt;}
.fs12_c00195{font-size:79.893333pt;}
.fs14_c00195{font-size:82.933333pt;}
.fs7_c00195{font-size:86.026667pt;}
.fs15_c00195{font-size:89.066667pt;}
.fs13_c00195{font-size:101.386667pt;}
.y0_c00195{bottom:0.000000pt;}
.y26_c00195{bottom:503.813333pt;}
.y25_c00195{bottom:526.080000pt;}
.y24_c00195{bottom:551.426667pt;}
.y23_c00195{bottom:576.000000pt;}
.y22_c00195{bottom:583.680000pt;}
.y21_c00195{bottom:586.746667pt;}
.y1f_c00195{bottom:607.493333pt;}
.y20_c00195{bottom:609.786667pt;}
.y1e_c00195{bottom:620.546667pt;}
.y1d_c00195{bottom:642.813333pt;}
.y1c_c00195{bottom:666.626667pt;}
.y1b_c00195{bottom:688.133333pt;}
.y1a_c00195{bottom:709.626667pt;}
.y19_c00195{bottom:730.373333pt;}
.y18_c00195{bottom:755.706667pt;}
.y16_c00195{bottom:764.160000pt;}
.y17_c00195{bottom:766.466667pt;}
.y15_c00195{bottom:777.986667pt;}
.y13_c00195{bottom:796.413333pt;}
.y14_c00195{bottom:802.560000pt;}
.y12_c00195{bottom:975.360000pt;}
.y11_c00195{bottom:980.733333pt;}
.y10_c00195{bottom:989.186667pt;}
.yf_c00195{bottom:1002.240000pt;}
.ye_c00195{bottom:1019.133333pt;}
.yc_c00195{bottom:1027.586667pt;}
.yd_c00195{bottom:1031.426667pt;}
.yb_c00195{bottom:1047.546667pt;}
.ya_c00195{bottom:1056.000000pt;}
.y9_c00195{bottom:1079.813333pt;}
.y5_c00195{bottom:1203.453333pt;}
.y4_c00195{bottom:1213.440000pt;}
.y3_c00195{bottom:1222.653333pt;}
.y6_c00195{bottom:1235.706667pt;}
.y2_c00195{bottom:1238.786667pt;}
.y1_c00195{bottom:1241.853333pt;}
.y7_c00195{bottom:1271.813333pt;}
.y8_c00195{bottom:1275.653333pt;}
.h2_c00195{height:2.764500pt;}
.h3_c00195{height:8.303099pt;}
.h8_c00195{height:13.822500pt;}
.h7_c00195{height:17.225469pt;}
.h5_c00195{height:19.341901pt;}
.h13_c00195{height:22.125599pt;}
.he_c00195{height:24.861302pt;}
.h6_c00195{height:27.645000pt;}
.ha_c00195{height:30.428698pt;}
.hd_c00195{height:33.164401pt;}
.h12_c00195{height:38.683802pt;}
.hb_c00195{height:41.467500pt;}
.h4_c00195{height:44.251198pt;}
.hc_c00195{height:46.986901pt;}
.h10_c00195{height:55.290000pt;}
.h11_c00195{height:63.593099pt;}
.hf_c00195{height:69.112500pt;}
.h14_c00195{height:71.896198pt;}
.h16_c00195{height:74.631901pt;}
.h9_c00195{height:77.415599pt;}
.h17_c00195{height:80.151302pt;}
.h15_c00195{height:91.238099pt;}
.h1_c00195{height:1336.000000pt;}
.h0_c00195{height:1336.320000pt;}
.w0_c00195{width:969.213333pt;}
.w1_c00195{width:969.333333pt;}
.x0_c00195{left:0.000000pt;}
.x8_c00195{left:1.533333pt;}
.x1_c00195{left:3.840000pt;}
.x6_c00195{left:5.373333pt;}
.xa_c00195{left:7.680000pt;}
.x2_c00195{left:9.213333pt;}
.x9_c00195{left:11.520000pt;}
.xc_c00195{left:13.826667pt;}
.xd_c00195{left:24.573333pt;}
.xb_c00195{left:26.880000pt;}
.x4_c00195{left:39.933333pt;}
.x7_c00195{left:43.773333pt;}
.x5_c00195{left:46.853333pt;}
.x3_c00195{left:65.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_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_0619cdcbc7f911787e21ac90.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.109863;font-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_c00196{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);}
.m0_c00196{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m5_c00196{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c00196{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c00196{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8_c00196{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00196{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00196{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);}
.m3_c00196{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_c00196{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c00196{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.mb_c00196{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,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;}
.fs5_c00196{font-size:27.660000px;}
.fs0_c00196{font-size:55.320000px;}
.fs1_c00196{font-size:58.740000px;}
.fs2_c00196{font-size:62.220000px;}
.fs3_c00196{font-size:65.640000px;}
.fs4_c00196{font-size:86.400000px;}
.y0_c00196{bottom:0.000000px;}
.y6_c00196{bottom:712.800000px;}
.y4_c00196{bottom:1410.915000px;}
.y2_c00196{bottom:1411.770000px;}
.y1_c00196{bottom:1412.640000px;}
.y3_c00196{bottom:1413.510000px;}
.y5_c00196{bottom:1414.365000px;}
.h7_c00196{height:24.891299px;}
.h2_c00196{height:49.782598px;}
.h3_c00196{height:52.860264px;}
.h4_c00196{height:55.991924px;}
.h5_c00196{height:59.069590px;}
.h6_c00196{height:77.751563px;}
.h0_c00196{height:1523.235000px;}
.h1_c00196{height:1523.250000px;}
.w0_c00196{width:1107.645000px;}
.w1_c00196{width:1107.750000px;}
.x0_c00196{left:0.000000px;}
.x1_c00196{left:439.770000px;}
.x2_c00196{left:457.920000px;}
.x3_c00196{left:481.245000px;}
.x4_c00196{left:506.310000px;}
.x5_c00196{left:529.635000px;}
.x6_c00196{left:553.830000px;}
.x7_c00196{left:580.605000px;}
.x8_c00196{left:617.760000px;}
.x9_c00196{left:639.360000px;}
.xa_c00196{left:661.830000px;}
.xb_c00196{left:685.155000px;}
.xc_c00196{left:710.205000px;}
.xd_c00196{left:1086.915000px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls0_c00196{letter-spacing:0.000000pt;}
.ws0_c00196{word-spacing:0.000000pt;}
.fs5_c00196{font-size:24.586667pt;}
.fs0_c00196{font-size:49.173333pt;}
.fs1_c00196{font-size:52.213333pt;}
.fs2_c00196{font-size:55.306667pt;}
.fs3_c00196{font-size:58.346667pt;}
.fs4_c00196{font-size:76.800000pt;}
.y0_c00196{bottom:0.000000pt;}
.y6_c00196{bottom:633.600000pt;}
.y4_c00196{bottom:1254.146667pt;}
.y2_c00196{bottom:1254.906667pt;}
.y1_c00196{bottom:1255.680000pt;}
.y3_c00196{bottom:1256.453333pt;}
.y5_c00196{bottom:1257.213333pt;}
.h7_c00196{height:22.125599pt;}
.h2_c00196{height:44.251198pt;}
.h3_c00196{height:46.986901pt;}
.h4_c00196{height:49.770599pt;}
.h5_c00196{height:52.506302pt;}
.h6_c00196{height:69.112500pt;}
.h0_c00196{height:1353.986667pt;}
.h1_c00196{height:1354.000000pt;}
.w0_c00196{width:984.573333pt;}
.w1_c00196{width:984.666667pt;}
.x0_c00196{left:0.000000pt;}
.x1_c00196{left:390.906667pt;}
.x2_c00196{left:407.040000pt;}
.x3_c00196{left:427.773333pt;}
.x4_c00196{left:450.053333pt;}
.x5_c00196{left:470.786667pt;}
.x6_c00196{left:492.293333pt;}
.x7_c00196{left:516.093333pt;}
.x8_c00196{left:549.120000pt;}
.x9_c00196{left:568.320000pt;}
.xa_c00196{left:588.293333pt;}
.xb_c00196{left:609.026667pt;}
.xc_c00196{left:631.293333pt;}
.xd_c00196{left:966.146667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4a48a28699271696264e2078.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.109863;font-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_c00197{transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);}
.m7_c00197{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.m2_c00197{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00197{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00197{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);}
.m8_c00197{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3_c00197{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.m1_c00197{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m6_c00197{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,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;}
.fs1_c00197{font-size:10.380000px;}
.fs0_c00197{font-size:13.800000px;}
.fs3_c00197{font-size:17.280000px;}
.fs6_c00197{font-size:41.460000px;}
.fs2_c00197{font-size:44.940000px;}
.fs7_c00197{font-size:51.840000px;}
.fs5_c00197{font-size:62.220000px;}
.fs4_c00197{font-size:65.640000px;}
.y0_c00197{bottom:0.000000px;}
.y9_c00197{bottom:439.770000px;}
.y8_c00197{bottom:466.560000px;}
.y6_c00197{bottom:486.435000px;}
.y7_c00197{bottom:497.670000px;}
.y5_c00197{bottom:510.630000px;}
.y4_c00197{bottom:528.765000px;}
.y3_c00197{bottom:543.450000px;}
.y2_c00197{bottom:1365.990000px;}
.y1_c00197{bottom:1368.570000px;}
.h3_c00197{height:9.340986px;}
.h2_c00197{height:12.418652px;}
.h5_c00197{height:15.550313px;}
.h8_c00197{height:37.309951px;}
.h4_c00197{height:40.441611px;}
.h9_c00197{height:46.650937px;}
.h7_c00197{height:55.991924px;}
.h6_c00197{height:59.069590px;}
.h1_c00197{height:1503.000000px;}
.h0_c00197{height:1503.360000px;}
.w0_c00197{width:1090.365000px;}
.w1_c00197{width:1090.500000px;}
.x0_c00197{left:0.000000px;}
.x3_c00197{left:3.450000px;}
.x4_c00197{left:9.510000px;}
.x1_c00197{left:86.400000px;}
.x2_c00197{left:92.445000px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls0_c00197{letter-spacing:0.000000pt;}
.ws0_c00197{word-spacing:0.000000pt;}
.fs1_c00197{font-size:9.226667pt;}
.fs0_c00197{font-size:12.266667pt;}
.fs3_c00197{font-size:15.360000pt;}
.fs6_c00197{font-size:36.853333pt;}
.fs2_c00197{font-size:39.946667pt;}
.fs7_c00197{font-size:46.080000pt;}
.fs5_c00197{font-size:55.306667pt;}
.fs4_c00197{font-size:58.346667pt;}
.y0_c00197{bottom:0.000000pt;}
.y9_c00197{bottom:390.906667pt;}
.y8_c00197{bottom:414.720000pt;}
.y6_c00197{bottom:432.386667pt;}
.y7_c00197{bottom:442.373333pt;}
.y5_c00197{bottom:453.893333pt;}
.y4_c00197{bottom:470.013333pt;}
.y3_c00197{bottom:483.066667pt;}
.y2_c00197{bottom:1214.213333pt;}
.y1_c00197{bottom:1216.506667pt;}
.h3_c00197{height:8.303099pt;}
.h2_c00197{height:11.038802pt;}
.h5_c00197{height:13.822500pt;}
.h8_c00197{height:33.164401pt;}
.h4_c00197{height:35.948099pt;}
.h9_c00197{height:41.467500pt;}
.h7_c00197{height:49.770599pt;}
.h6_c00197{height:52.506302pt;}
.h1_c00197{height:1336.000000pt;}
.h0_c00197{height:1336.320000pt;}
.w0_c00197{width:969.213333pt;}
.w1_c00197{width:969.333333pt;}
.x0_c00197{left:0.000000pt;}
.x3_c00197{left:3.066667pt;}
.x4_c00197{left:8.453333pt;}
.x1_c00197{left:76.800000pt;}
.x2_c00197{left:82.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b9ae5c110e23ff8ececc7da8.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.109863;font-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_c00198{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c00198{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c00198{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,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;}
.fs1_c00198{font-size:3.456000px;}
.fs0_c00198{font-size:20.760000px;}
.fs2_c00198{font-size:44.940000px;}
.y0_c00198{bottom:0.000000px;}
.y1_c00198{bottom:804.390000px;}
.y2_c00198{bottom:806.115000px;}
.y3_c00198{bottom:923.610000px;}
.h3_c00198{height:3.110063px;}
.h2_c00198{height:18.681973px;}
.h4_c00198{height:40.441611px;}
.h0_c00198{height:1523.235000px;}
.h1_c00198{height:1523.250000px;}
.w0_c00198{width:1107.645000px;}
.w1_c00198{width:1107.750000px;}
.x0_c00198{left:0.000000px;}
.x1_c00198{left:954.720000px;}
.x2_c00198{left:965.085000px;}
.x3_c00198{left:1054.080000px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls0_c00198{letter-spacing:0.000000pt;}
.ws0_c00198{word-spacing:0.000000pt;}
.fs1_c00198{font-size:3.072000pt;}
.fs0_c00198{font-size:18.453333pt;}
.fs2_c00198{font-size:39.946667pt;}
.y0_c00198{bottom:0.000000pt;}
.y1_c00198{bottom:715.013333pt;}
.y2_c00198{bottom:716.546667pt;}
.y3_c00198{bottom:820.986667pt;}
.h3_c00198{height:2.764500pt;}
.h2_c00198{height:16.606198pt;}
.h4_c00198{height:35.948099pt;}
.h0_c00198{height:1353.986667pt;}
.h1_c00198{height:1354.000000pt;}
.w0_c00198{width:984.573333pt;}
.w1_c00198{width:984.666667pt;}
.x0_c00198{left:0.000000pt;}
.x1_c00198{left:848.640000pt;}
.x2_c00198{left:857.853333pt;}
.x3_c00198{left:936.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_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_88bacb5db757229f6535bc4f.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.109863;font-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_c00199{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m29_c00199{transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);}
.m2c_c00199{transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);}
.m6_c00199{transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);}
.m22_c00199{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c00199{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.m16_c00199{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.m17_c00199{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m13_c00199{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m1e_c00199{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m1a_c00199{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m1b_c00199{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m21_c00199{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.md_c00199{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);}
.m15_c00199{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);}
.m14_c00199{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);}
.m2d_c00199{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);}
.m5_c00199{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m23_c00199{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.m10_c00199{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);}
.m9_c00199{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);}
.m3_c00199{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00199{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c00199{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00199{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);}
.m28_c00199{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);}
.m25_c00199{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c00199{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);}
.m1f_c00199{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c00199{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);}
.m2_c00199{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m8_c00199{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);}
.m12_c00199{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m20_c00199{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00199{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m0_c00199{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);}
.m19_c00199{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m27_c00199{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00199{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m24_c00199{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m11_c00199{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00199{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mc_c00199{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m18_c00199{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m26_c00199{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.me_c00199{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,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;}
.fs11_c00199{font-size:10.380000px;}
.fs8_c00199{font-size:13.800000px;}
.fs0_c00199{font-size:17.280000px;}
.fs7_c00199{font-size:24.180000px;}
.fs9_c00199{font-size:27.660000px;}
.fs1_c00199{font-size:31.080000px;}
.fs4_c00199{font-size:34.560000px;}
.fsc_c00199{font-size:38.040000px;}
.fs2_c00199{font-size:41.460000px;}
.fse_c00199{font-size:44.940000px;}
.fsf_c00199{font-size:51.840000px;}
.fsd_c00199{font-size:55.320000px;}
.fs5_c00199{font-size:58.740000px;}
.fs10_c00199{font-size:65.640000px;}
.fsa_c00199{font-size:69.120000px;}
.fs3_c00199{font-size:76.020000px;}
.fsb_c00199{font-size:79.500000px;}
.fs6_c00199{font-size:100.200000px;}
.fs12_c00199{font-size:103.680000px;}
.y0_c00199{bottom:0.000000px;}
.y3a_c00199{bottom:224.640000px;}
.y39_c00199{bottom:250.560000px;}
.y38_c00199{bottom:262.650000px;}
.y37_c00199{bottom:279.930000px;}
.y35_c00199{bottom:286.845000px;}
.y36_c00199{bottom:294.630000px;}
.y34_c00199{bottom:314.490000px;}
.y33_c00199{bottom:330.915000px;}
.y32_c00199{bottom:343.875000px;}
.y31_c00199{bottom:354.240000px;}
.y30_c00199{bottom:377.565000px;}
.y2f_c00199{bottom:406.080000px;}
.y2e_c00199{bottom:416.445000px;}
.y2d_c00199{bottom:432.870000px;}
.y2c_c00199{bottom:441.510000px;}
.y29_c00199{bottom:458.790000px;}
.y2a_c00199{bottom:463.965000px;}
.y2b_c00199{bottom:469.155000px;}
.y27_c00199{bottom:482.115000px;}
.y28_c00199{bottom:483.840000px;}
.y25_c00199{bottom:491.610000px;}
.y26_c00199{bottom:495.930000px;}
.y24_c00199{bottom:505.440000px;}
.y22_c00199{bottom:517.530000px;}
.y23_c00199{bottom:519.270000px;}
.y21_c00199{bottom:532.230000px;}
.y20_c00199{bottom:541.725000px;}
.y1f_c00199{bottom:559.005000px;}
.y1e_c00199{bottom:584.070000px;}
.y1d_c00199{bottom:594.435000px;}
.y1c_c00199{bottom:609.120000px;}
.y1b_c00199{bottom:633.315000px;}
.y1a_c00199{bottom:660.090000px;}
.y19_c00199{bottom:680.835000px;}
.y18_c00199{bottom:709.350000px;}
.y17_c00199{bottom:734.400000px;}
.y16_c00199{bottom:758.595000px;}
.y15_c00199{bottom:760.320000px;}
.y14_c00199{bottom:773.280000px;}
.y13_c00199{bottom:786.240000px;}
.y12_c00199{bottom:795.750000px;}
.y11_c00199{bottom:813.030000px;}
.y10_c00199{bottom:819.075000px;}
.yf_c00199{bottom:882.150000px;}
.ye_c00199{bottom:910.650000px;}
.yd_c00199{bottom:921.030000px;}
.yc_c00199{bottom:936.570000px;}
.yb_c00199{bottom:946.950000px;}
.ya_c00199{bottom:959.910000px;}
.y9_c00199{bottom:971.130000px;}
.y8_c00199{bottom:978.045000px;}
.y7_c00199{bottom:1004.835000px;}
.y6_c00199{bottom:1036.800000px;}
.y5_c00199{bottom:1046.310000px;}
.y4_c00199{bottom:1085.190000px;}
.y3_c00199{bottom:1102.470000px;}
.y2_c00199{bottom:1111.965000px;}
.y1_c00199{bottom:1123.200000px;}
.h13_c00199{height:9.340986px;}
.ha_c00199{height:12.418652px;}
.h2_c00199{height:15.550313px;}
.h9_c00199{height:21.759639px;}
.hb_c00199{height:24.891299px;}
.h3_c00199{height:27.968965px;}
.h6_c00199{height:31.100625px;}
.he_c00199{height:34.232285px;}
.h4_c00199{height:37.309951px;}
.h10_c00199{height:40.441611px;}
.h11_c00199{height:46.650937px;}
.hf_c00199{height:49.782598px;}
.h7_c00199{height:52.860264px;}
.h12_c00199{height:59.069590px;}
.hc_c00199{height:62.201250px;}
.h5_c00199{height:68.410576px;}
.hd_c00199{height:71.542236px;}
.h8_c00199{height:90.170215px;}
.h14_c00199{height:93.301875px;}
.h1_c00199{height:1503.000000px;}
.h0_c00199{height:1503.360000px;}
.w0_c00199{width:1090.365000px;}
.w1_c00199{width:1090.500000px;}
.x0_c00199{left:0.000000px;}
.x1_c00199{left:2.595000px;}
.x3_c00199{left:4.320000px;}
.x6_c00199{left:6.045000px;}
.x5_c00199{left:8.640000px;}
.x4_c00199{left:57.885000px;}
.x7_c00199{left:83.805000px;}
.x8_c00199{left:147.750000px;}
.x9_c00199{left:161.565000px;}
.x2_c00199{left:198.720000px;}
.xa_c00199{left:213.405000px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls0_c00199{letter-spacing:0.000000pt;}
.ws0_c00199{word-spacing:0.000000pt;}
.fs11_c00199{font-size:9.226667pt;}
.fs8_c00199{font-size:12.266667pt;}
.fs0_c00199{font-size:15.360000pt;}
.fs7_c00199{font-size:21.493333pt;}
.fs9_c00199{font-size:24.586667pt;}
.fs1_c00199{font-size:27.626667pt;}
.fs4_c00199{font-size:30.720000pt;}
.fsc_c00199{font-size:33.813333pt;}
.fs2_c00199{font-size:36.853333pt;}
.fse_c00199{font-size:39.946667pt;}
.fsf_c00199{font-size:46.080000pt;}
.fsd_c00199{font-size:49.173333pt;}
.fs5_c00199{font-size:52.213333pt;}
.fs10_c00199{font-size:58.346667pt;}
.fsa_c00199{font-size:61.440000pt;}
.fs3_c00199{font-size:67.573333pt;}
.fsb_c00199{font-size:70.666667pt;}
.fs6_c00199{font-size:89.066667pt;}
.fs12_c00199{font-size:92.160000pt;}
.y0_c00199{bottom:0.000000pt;}
.y3a_c00199{bottom:199.680000pt;}
.y39_c00199{bottom:222.720000pt;}
.y38_c00199{bottom:233.466667pt;}
.y37_c00199{bottom:248.826667pt;}
.y35_c00199{bottom:254.973333pt;}
.y36_c00199{bottom:261.893333pt;}
.y34_c00199{bottom:279.546667pt;}
.y33_c00199{bottom:294.146667pt;}
.y32_c00199{bottom:305.666667pt;}
.y31_c00199{bottom:314.880000pt;}
.y30_c00199{bottom:335.613333pt;}
.y2f_c00199{bottom:360.960000pt;}
.y2e_c00199{bottom:370.173333pt;}
.y2d_c00199{bottom:384.773333pt;}
.y2c_c00199{bottom:392.453333pt;}
.y29_c00199{bottom:407.813333pt;}
.y2a_c00199{bottom:412.413333pt;}
.y2b_c00199{bottom:417.026667pt;}
.y27_c00199{bottom:428.546667pt;}
.y28_c00199{bottom:430.080000pt;}
.y25_c00199{bottom:436.986667pt;}
.y26_c00199{bottom:440.826667pt;}
.y24_c00199{bottom:449.280000pt;}
.y22_c00199{bottom:460.026667pt;}
.y23_c00199{bottom:461.573333pt;}
.y21_c00199{bottom:473.093333pt;}
.y20_c00199{bottom:481.533333pt;}
.y1f_c00199{bottom:496.893333pt;}
.y1e_c00199{bottom:519.173333pt;}
.y1d_c00199{bottom:528.386667pt;}
.y1c_c00199{bottom:541.440000pt;}
.y1b_c00199{bottom:562.946667pt;}
.y1a_c00199{bottom:586.746667pt;}
.y19_c00199{bottom:605.186667pt;}
.y18_c00199{bottom:630.533333pt;}
.y17_c00199{bottom:652.800000pt;}
.y16_c00199{bottom:674.306667pt;}
.y15_c00199{bottom:675.840000pt;}
.y14_c00199{bottom:687.360000pt;}
.y13_c00199{bottom:698.880000pt;}
.y12_c00199{bottom:707.333333pt;}
.y11_c00199{bottom:722.693333pt;}
.y10_c00199{bottom:728.066667pt;}
.yf_c00199{bottom:784.133333pt;}
.ye_c00199{bottom:809.466667pt;}
.yd_c00199{bottom:818.693333pt;}
.yc_c00199{bottom:832.506667pt;}
.yb_c00199{bottom:841.733333pt;}
.ya_c00199{bottom:853.253333pt;}
.y9_c00199{bottom:863.226667pt;}
.y8_c00199{bottom:869.373333pt;}
.y7_c00199{bottom:893.186667pt;}
.y6_c00199{bottom:921.600000pt;}
.y5_c00199{bottom:930.053333pt;}
.y4_c00199{bottom:964.613333pt;}
.y3_c00199{bottom:979.973333pt;}
.y2_c00199{bottom:988.413333pt;}
.y1_c00199{bottom:998.400000pt;}
.h13_c00199{height:8.303099pt;}
.ha_c00199{height:11.038802pt;}
.h2_c00199{height:13.822500pt;}
.h9_c00199{height:19.341901pt;}
.hb_c00199{height:22.125599pt;}
.h3_c00199{height:24.861302pt;}
.h6_c00199{height:27.645000pt;}
.he_c00199{height:30.428698pt;}
.h4_c00199{height:33.164401pt;}
.h10_c00199{height:35.948099pt;}
.h11_c00199{height:41.467500pt;}
.hf_c00199{height:44.251198pt;}
.h7_c00199{height:46.986901pt;}
.h12_c00199{height:52.506302pt;}
.hc_c00199{height:55.290000pt;}
.h5_c00199{height:60.809401pt;}
.hd_c00199{height:63.593099pt;}
.h8_c00199{height:80.151302pt;}
.h14_c00199{height:82.935000pt;}
.h1_c00199{height:1336.000000pt;}
.h0_c00199{height:1336.320000pt;}
.w0_c00199{width:969.213333pt;}
.w1_c00199{width:969.333333pt;}
.x0_c00199{left:0.000000pt;}
.x1_c00199{left:2.306667pt;}
.x3_c00199{left:3.840000pt;}
.x6_c00199{left:5.373333pt;}
.x5_c00199{left:7.680000pt;}
.x4_c00199{left:51.453333pt;}
.x7_c00199{left:74.493333pt;}
.x8_c00199{left:131.333333pt;}
.x9_c00199{left:143.613333pt;}
.x2_c00199{left:176.640000pt;}
.xa_c00199{left:189.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_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_5a978dece2bd4667c61a69eb.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.109863;font-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_c00200{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);}
.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:600.000000px;}
.y0_c00200{bottom:0.000000px;}
.y1_c00200{bottom:15.000000px;}
.h2_c00200{height:539.941406px;}
.h0_c00200{height:1523.235000px;}
.h1_c00200{height:1523.250000px;}
.w1_c00200{width:1122.000000px;}
.w0_c00200{width:1122.330000px;}
.x0_c00200{left:0.000000px;}
.x1_c00200{left:15.000000px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls0_c00200{letter-spacing:0.000000pt;}
.ws0_c00200{word-spacing:0.000000pt;}
.fs0_c00200{font-size:533.333333pt;}
.y0_c00200{bottom:0.000000pt;}
.y1_c00200{bottom:13.333333pt;}
.h2_c00200{height:479.947917pt;}
.h0_c00200{height:1353.986667pt;}
.h1_c00200{height:1354.000000pt;}
.w1_c00200{width:997.333333pt;}
.w0_c00200{width:997.626667pt;}
.x0_c00200{left:0.000000pt;}
.x1_c00200{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00201;src:url('chunks/assets/font_278649308cc4378c3fd9f5e0.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.109863;font-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_c00201{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);}
.v0_c00201{vertical-align:0.000000px;}
.ls0_c00201{letter-spacing:0.000000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00201{word-spacing:0.000000px;}
.fc0_c00201{color:transparent;}
.fs0_c00201{font-size:600.000000px;}
.y0_c00201{bottom:0.000000px;}
.y1_c00201{bottom:15.000000px;}
.h2_c00201{height:539.941406px;}
.h0_c00201{height:1509.405000px;}
.h1_c00201{height:1509.750000px;}
.w0_c00201{width:1118.010000px;}
.w1_c00201{width:1118.250000px;}
.x0_c00201{left:0.000000px;}
.x1_c00201{left:15.000000px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls0_c00201{letter-spacing:0.000000pt;}
.ws0_c00201{word-spacing:0.000000pt;}
.fs0_c00201{font-size:533.333333pt;}
.y0_c00201{bottom:0.000000pt;}
.y1_c00201{bottom:13.333333pt;}
.h2_c00201{height:479.947917pt;}
.h0_c00201{height:1341.693333pt;}
.h1_c00201{height:1342.000000pt;}
.w0_c00201{width:993.786667pt;}
.w1_c00201{width:994.000000pt;}
.x0_c00201{left:0.000000pt;}
.x1_c00201{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16e23bad7dd86d1650928243.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.109863;font-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_c00202{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m0_c00202{transform:matrix(0.023450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023450,0.000000,0.000000,0.250000,0,0);}
.m47_c00202{transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);}
.m37_c00202{transform:matrix(0.094825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094825,0.000000,0.000000,0.250000,0,0);}
.m3_c00202{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);}
.m46_c00202{transform:matrix(0.104625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104625,0.000000,0.000000,0.250000,0,0);}
.m17_c00202{transform:matrix(0.106575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106575,0.000000,0.000000,0.250000,0,0);}
.m36_c00202{transform:matrix(0.114275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114275,0.000000,0.000000,0.250000,0,0);}
.m39_c00202{transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);}
.m1b_c00202{transform:matrix(0.130025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130025,0.000000,0.000000,0.250000,0,0);}
.m3c_c00202{transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);}
.m43_c00202{transform:matrix(0.134650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134650,0.000000,0.000000,0.250000,0,0);}
.m40_c00202{transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);}
.m1_c00202{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00202{transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);}
.m3d_c00202{transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);}
.m44_c00202{transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);}
.m3b_c00202{transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);}
.m32_c00202{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m51_c00202{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m4f_c00202{transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);}
.m1e_c00202{transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);}
.m3f_c00202{transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);}
.mc_c00202{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m34_c00202{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.m25_c00202{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m38_c00202{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.m33_c00202{transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);}
.m41_c00202{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);}
.m45_c00202{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m18_c00202{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m26_c00202{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m49_c00202{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m42_c00202{transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);}
.m22_c00202{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);}
.m23_c00202{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.m28_c00202{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);}
.m29_c00202{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m20_c00202{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.m10_c00202{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);}
.m2d_c00202{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m15_c00202{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m19_c00202{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);}
.m1d_c00202{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);}
.m21_c00202{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m24_c00202{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m12_c00202{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m16_c00202{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);}
.m1c_c00202{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13_c00202{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);}
.m2a_c00202{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00202{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00202{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);}
.m27_c00202{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00202{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00202{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00202{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);}
.m4d_c00202{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);}
.m11_c00202{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00202{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m48_c00202{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c00202{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);}
.m30_c00202{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);}
.m2f_c00202{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c00202{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00202{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m4_c00202{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00202{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m9_c00202{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.md_c00202{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mb_c00202{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);}
.m4a_c00202{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m6_c00202{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00202{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);}
.m1a_c00202{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c00202{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me_c00202{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m14_c00202{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00202{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m52_c00202{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m50_c00202{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m35_c00202{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m7_c00202{transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815000,0.000000,0.000000,0.250000,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;}
.fs7_c00202{font-size:3.456000px;}
.fs2_c00202{font-size:6.000000px;}
.fs1_c00202{font-size:6.900000px;}
.fs3_c00202{font-size:10.380000px;}
.fs5_c00202{font-size:13.800000px;}
.fs4_c00202{font-size:17.280000px;}
.fs1b_c00202{font-size:20.760000px;}
.fs6_c00202{font-size:24.180000px;}
.fs18_c00202{font-size:27.660000px;}
.fs23_c00202{font-size:31.080000px;}
.fs25_c00202{font-size:34.560000px;}
.fs13_c00202{font-size:41.460000px;}
.fsb_c00202{font-size:44.940000px;}
.fs19_c00202{font-size:48.360000px;}
.fs1a_c00202{font-size:55.320000px;}
.fsc_c00202{font-size:58.740000px;}
.fs10_c00202{font-size:62.220000px;}
.fs24_c00202{font-size:69.120000px;}
.fs9_c00202{font-size:72.600000px;}
.fsa_c00202{font-size:76.020000px;}
.fs8_c00202{font-size:79.500000px;}
.fs16_c00202{font-size:82.920000px;}
.fs11_c00202{font-size:86.400000px;}
.fs12_c00202{font-size:89.880000px;}
.fs14_c00202{font-size:93.300000px;}
.fs1f_c00202{font-size:96.780000px;}
.fs17_c00202{font-size:100.200000px;}
.fsf_c00202{font-size:103.680000px;}
.fse_c00202{font-size:107.160000px;}
.fs0_c00202{font-size:110.580000px;}
.fs15_c00202{font-size:114.060000px;}
.fs1e_c00202{font-size:117.480000px;}
.fs1d_c00202{font-size:120.960000px;}
.fsd_c00202{font-size:124.440000px;}
.fs22_c00202{font-size:127.860000px;}
.fs20_c00202{font-size:131.340000px;}
.fs21_c00202{font-size:134.760000px;}
.fs1c_c00202{font-size:141.720000px;}
.y0_c00202{bottom:0.000000px;}
.y58_c00202{bottom:635.040000px;}
.y59_c00202{bottom:638.490000px;}
.y57_c00202{bottom:649.725000px;}
.y56_c00202{bottom:946.080000px;}
.y50_c00202{bottom:1067.040000px;}
.y55_c00202{bottom:1067.910000px;}
.y54_c00202{bottom:1073.955000px;}
.y52_c00202{bottom:1074.810000px;}
.y53_c00202{bottom:1075.680000px;}
.y51_c00202{bottom:1076.550000px;}
.y4c_c00202{bottom:1100.730000px;}
.y4d_c00202{bottom:1101.600000px;}
.y4a_c00202{bottom:1104.195000px;}
.y31_c00202{bottom:1105.920000px;}
.y2f_c00202{bottom:1107.645000px;}
.y30_c00202{bottom:1108.515000px;}
.y2e_c00202{bottom:1110.240000px;}
.y4b_c00202{bottom:1114.560000px;}
.y46_c00202{bottom:1116.285000px;}
.y48_c00202{bottom:1118.010000px;}
.y47_c00202{bottom:1124.925000px;}
.y49_c00202{bottom:1126.650000px;}
.y2c_c00202{bottom:1142.205000px;}
.y2d_c00202{bottom:1143.075000px;}
.y2a_c00202{bottom:1147.395000px;}
.y29_c00202{bottom:1149.120000px;}
.y2b_c00202{bottom:1149.990000px;}
.y41_c00202{bottom:1151.715000px;}
.y42_c00202{bottom:1152.570000px;}
.y43_c00202{bottom:1153.440000px;}
.y45_c00202{bottom:1158.630000px;}
.y44_c00202{bottom:1159.485000px;}
.y28_c00202{bottom:1169.850000px;}
.y24_c00202{bottom:1173.315000px;}
.y25_c00202{bottom:1175.040000px;}
.y27_c00202{bottom:1176.765000px;}
.y26_c00202{bottom:1180.230000px;}
.y23_c00202{bottom:1182.810000px;}
.y3e_c00202{bottom:1184.550000px;}
.y3f_c00202{bottom:1185.405000px;}
.y3d_c00202{bottom:1187.130000px;}
.y3c_c00202{bottom:1189.725000px;}
.y40_c00202{bottom:1191.450000px;}
.y20_c00202{bottom:1206.150000px;}
.y1f_c00202{bottom:1207.875000px;}
.y1d_c00202{bottom:1209.600000px;}
.y1e_c00202{bottom:1213.920000px;}
.y39_c00202{bottom:1214.790000px;}
.y21_c00202{bottom:1215.645000px;}
.y22_c00202{bottom:1216.515000px;}
.y36_c00202{bottom:1218.240000px;}
.y37_c00202{bottom:1221.690000px;}
.y3b_c00202{bottom:1222.560000px;}
.y3a_c00202{bottom:1224.285000px;}
.y4e_c00202{bottom:1226.010000px;}
.y4f_c00202{bottom:1229.475000px;}
.y38_c00202{bottom:1231.200000px;}
.y1b_c00202{bottom:1238.970000px;}
.y19_c00202{bottom:1239.840000px;}
.y1a_c00202{bottom:1240.710000px;}
.y18_c00202{bottom:1245.030000px;}
.y17_c00202{bottom:1246.755000px;}
.y1c_c00202{bottom:1249.350000px;}
.y35_c00202{bottom:1254.525000px;}
.y34_c00202{bottom:1255.395000px;}
.y32_c00202{bottom:1256.250000px;}
.y33_c00202{bottom:1257.120000px;}
.y9_c00202{bottom:1278.720000px;}
.ya_c00202{bottom:1280.445000px;}
.yb_c00202{bottom:1283.910000px;}
.yc_c00202{bottom:1285.635000px;}
.yd_c00202{bottom:1286.490000px;}
.ye_c00202{bottom:1294.275000px;}
.y6_c00202{bottom:1305.510000px;}
.y8_c00202{bottom:1307.235000px;}
.y7_c00202{bottom:1308.960000px;}
.y5_c00202{bottom:1309.830000px;}
.y4_c00202{bottom:1316.730000px;}
.y3_c00202{bottom:1317.600000px;}
.y15_c00202{bottom:1325.370000px;}
.y14_c00202{bottom:1326.240000px;}
.y13_c00202{bottom:1350.435000px;}
.y12_c00202{bottom:1351.290000px;}
.y10_c00202{bottom:1383.270000px;}
.y11_c00202{bottom:1386.720000px;}
.yf_c00202{bottom:1412.640000px;}
.y16_c00202{bottom:1413.510000px;}
.y1_c00202{bottom:1440.285000px;}
.y2_c00202{bottom:1441.155000px;}
.h9_c00202{height:3.110063px;}
.h4_c00202{height:5.399414px;}
.h3_c00202{height:6.209326px;}
.h5_c00202{height:9.340986px;}
.h7_c00202{height:12.418652px;}
.h6_c00202{height:15.550313px;}
.h1d_c00202{height:18.681973px;}
.h8_c00202{height:21.759639px;}
.h1a_c00202{height:24.891299px;}
.h25_c00202{height:27.968965px;}
.h27_c00202{height:31.100625px;}
.h15_c00202{height:37.309951px;}
.hd_c00202{height:40.441611px;}
.h1b_c00202{height:43.519277px;}
.h1c_c00202{height:49.782598px;}
.he_c00202{height:52.860264px;}
.h12_c00202{height:55.991924px;}
.h26_c00202{height:62.201250px;}
.hb_c00202{height:65.332910px;}
.hc_c00202{height:68.410576px;}
.ha_c00202{height:71.542236px;}
.h18_c00202{height:74.619902px;}
.h13_c00202{height:77.751563px;}
.h14_c00202{height:80.883223px;}
.h16_c00202{height:83.960889px;}
.h21_c00202{height:87.092549px;}
.h19_c00202{height:90.170215px;}
.h11_c00202{height:93.301875px;}
.h10_c00202{height:96.433535px;}
.h2_c00202{height:99.511201px;}
.h17_c00202{height:102.642861px;}
.h20_c00202{height:105.720527px;}
.h1f_c00202{height:108.852188px;}
.hf_c00202{height:111.983848px;}
.h24_c00202{height:115.061514px;}
.h22_c00202{height:118.193174px;}
.h23_c00202{height:121.270840px;}
.h1e_c00202{height:127.534160px;}
.h0_c00202{height:1523.235000px;}
.h1_c00202{height:1523.250000px;}
.w0_c00202{width:1100.730000px;}
.w1_c00202{width:1101.000000px;}
.x0_c00202{left:0.000000px;}
.x11_c00202{left:245.370000px;}
.x24_c00202{left:269.565000px;}
.x14_c00202{left:274.755000px;}
.x1e_c00202{left:277.350000px;}
.x25_c00202{left:279.075000px;}
.xf_c00202{left:285.990000px;}
.x3_c00202{left:298.080000px;}
.x4a_c00202{left:300.675000px;}
.x5_c00202{left:303.270000px;}
.x1f_c00202{left:314.490000px;}
.x1a_c00202{left:316.230000px;}
.x4_c00202{left:317.955000px;}
.x29_c00202{left:374.970000px;}
.x15_c00202{left:379.290000px;}
.x26_c00202{left:393.120000px;}
.x16_c00202{left:395.715000px;}
.x27_c00202{left:404.355000px;}
.x13_c00202{left:406.950000px;}
.x20_c00202{left:419.040000px;}
.x17_c00202{left:432.000000px;}
.x1b_c00202{left:443.235000px;}
.x28_c00202{left:445.830000px;}
.x18_c00202{left:459.645000px;}
.x4b_c00202{left:462.240000px;}
.x9_c00202{left:482.115000px;}
.x2a_c00202{left:489.885000px;}
.x1c_c00202{left:493.350000px;}
.x21_c00202{left:499.395000px;}
.x1d_c00202{left:509.760000px;}
.xa_c00202{left:512.355000px;}
.x22_c00202{left:518.400000px;}
.x19_c00202{left:532.230000px;}
.x10_c00202{left:541.725000px;}
.x23_c00202{left:549.510000px;}
.xb_c00202{left:563.325000px;}
.x12_c00202{left:568.515000px;}
.x46_c00202{left:577.155000px;}
.x2b_c00202{left:580.605000px;}
.x47_c00202{left:592.710000px;}
.x45_c00202{left:616.890000px;}
.x35_c00202{left:618.630000px;}
.x3a_c00202{left:634.170000px;}
.xc_c00202{left:645.405000px;}
.x6_c00202{left:649.725000px;}
.x4c_c00202{left:665.280000px;}
.x2c_c00202{left:667.005000px;}
.x7_c00202{left:685.155000px;}
.x2d_c00202{left:686.880000px;}
.x4d_c00202{left:689.475000px;}
.x8_c00202{left:692.070000px;}
.x3b_c00202{left:700.710000px;}
.x4e_c00202{left:703.290000px;}
.x2e_c00202{left:710.205000px;}
.xd_c00202{left:715.395000px;}
.x4f_c00202{left:724.035000px;}
.x2f_c00202{left:731.805000px;}
.x36_c00202{left:733.530000px;}
.x50_c00202{left:738.720000px;}
.x37_c00202{left:743.910000px;}
.x3c_c00202{left:752.550000px;}
.x30_c00202{left:767.235000px;}
.x3f_c00202{left:774.150000px;}
.x42_c00202{left:783.645000px;}
.x31_c00202{left:791.430000px;}
.x3d_c00202{left:794.010000px;}
.x38_c00202{left:797.475000px;}
.x32_c00202{left:809.565000px;}
.x43_c00202{left:813.885000px;}
.x40_c00202{left:825.120000px;}
.x33_c00202{left:827.715000px;}
.x3e_c00202{left:842.400000px;}
.x41_c00202{left:851.040000px;}
.x34_c00202{left:860.550000px;}
.x39_c00202{left:868.320000px;}
.x44_c00202{left:880.410000px;}
.x48_c00202{left:991.005000px;}
.x1_c00202{left:992.730000px;}
.x49_c00202{left:995.325000px;}
.x2_c00202{left:1005.690000px;}
.xe_c00202{left:1030.755000px;}
.x51_c00202{left:1032.480000px;}
.x52_c00202{left:1053.210000px;}
.x54_c00202{left:1072.230000px;}
.x53_c00202{left:1091.235000px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws0_c00202{word-spacing:0.000000pt;}
.fs7_c00202{font-size:3.072000pt;}
.fs2_c00202{font-size:5.333333pt;}
.fs1_c00202{font-size:6.133333pt;}
.fs3_c00202{font-size:9.226667pt;}
.fs5_c00202{font-size:12.266667pt;}
.fs4_c00202{font-size:15.360000pt;}
.fs1b_c00202{font-size:18.453333pt;}
.fs6_c00202{font-size:21.493333pt;}
.fs18_c00202{font-size:24.586667pt;}
.fs23_c00202{font-size:27.626667pt;}
.fs25_c00202{font-size:30.720000pt;}
.fs13_c00202{font-size:36.853333pt;}
.fsb_c00202{font-size:39.946667pt;}
.fs19_c00202{font-size:42.986667pt;}
.fs1a_c00202{font-size:49.173333pt;}
.fsc_c00202{font-size:52.213333pt;}
.fs10_c00202{font-size:55.306667pt;}
.fs24_c00202{font-size:61.440000pt;}
.fs9_c00202{font-size:64.533333pt;}
.fsa_c00202{font-size:67.573333pt;}
.fs8_c00202{font-size:70.666667pt;}
.fs16_c00202{font-size:73.706667pt;}
.fs11_c00202{font-size:76.800000pt;}
.fs12_c00202{font-size:79.893333pt;}
.fs14_c00202{font-size:82.933333pt;}
.fs1f_c00202{font-size:86.026667pt;}
.fs17_c00202{font-size:89.066667pt;}
.fsf_c00202{font-size:92.160000pt;}
.fse_c00202{font-size:95.253333pt;}
.fs0_c00202{font-size:98.293333pt;}
.fs15_c00202{font-size:101.386667pt;}
.fs1e_c00202{font-size:104.426667pt;}
.fs1d_c00202{font-size:107.520000pt;}
.fsd_c00202{font-size:110.613333pt;}
.fs22_c00202{font-size:113.653333pt;}
.fs20_c00202{font-size:116.746667pt;}
.fs21_c00202{font-size:119.786667pt;}
.fs1c_c00202{font-size:125.973333pt;}
.y0_c00202{bottom:0.000000pt;}
.y58_c00202{bottom:564.480000pt;}
.y59_c00202{bottom:567.546667pt;}
.y57_c00202{bottom:577.533333pt;}
.y56_c00202{bottom:840.960000pt;}
.y50_c00202{bottom:948.480000pt;}
.y55_c00202{bottom:949.253333pt;}
.y54_c00202{bottom:954.626667pt;}
.y52_c00202{bottom:955.386667pt;}
.y53_c00202{bottom:956.160000pt;}
.y51_c00202{bottom:956.933333pt;}
.y4c_c00202{bottom:978.426667pt;}
.y4d_c00202{bottom:979.200000pt;}
.y4a_c00202{bottom:981.506667pt;}
.y31_c00202{bottom:983.040000pt;}
.y2f_c00202{bottom:984.573333pt;}
.y30_c00202{bottom:985.346667pt;}
.y2e_c00202{bottom:986.880000pt;}
.y4b_c00202{bottom:990.720000pt;}
.y46_c00202{bottom:992.253333pt;}
.y48_c00202{bottom:993.786667pt;}
.y47_c00202{bottom:999.933333pt;}
.y49_c00202{bottom:1001.466667pt;}
.y2c_c00202{bottom:1015.293333pt;}
.y2d_c00202{bottom:1016.066667pt;}
.y2a_c00202{bottom:1019.906667pt;}
.y29_c00202{bottom:1021.440000pt;}
.y2b_c00202{bottom:1022.213333pt;}
.y41_c00202{bottom:1023.746667pt;}
.y42_c00202{bottom:1024.506667pt;}
.y43_c00202{bottom:1025.280000pt;}
.y45_c00202{bottom:1029.893333pt;}
.y44_c00202{bottom:1030.653333pt;}
.y28_c00202{bottom:1039.866667pt;}
.y24_c00202{bottom:1042.946667pt;}
.y25_c00202{bottom:1044.480000pt;}
.y27_c00202{bottom:1046.013333pt;}
.y26_c00202{bottom:1049.093333pt;}
.y23_c00202{bottom:1051.386667pt;}
.y3e_c00202{bottom:1052.933333pt;}
.y3f_c00202{bottom:1053.693333pt;}
.y3d_c00202{bottom:1055.226667pt;}
.y3c_c00202{bottom:1057.533333pt;}
.y40_c00202{bottom:1059.066667pt;}
.y20_c00202{bottom:1072.133333pt;}
.y1f_c00202{bottom:1073.666667pt;}
.y1d_c00202{bottom:1075.200000pt;}
.y1e_c00202{bottom:1079.040000pt;}
.y39_c00202{bottom:1079.813333pt;}
.y21_c00202{bottom:1080.573333pt;}
.y22_c00202{bottom:1081.346667pt;}
.y36_c00202{bottom:1082.880000pt;}
.y37_c00202{bottom:1085.946667pt;}
.y3b_c00202{bottom:1086.720000pt;}
.y3a_c00202{bottom:1088.253333pt;}
.y4e_c00202{bottom:1089.786667pt;}
.y4f_c00202{bottom:1092.866667pt;}
.y38_c00202{bottom:1094.400000pt;}
.y1b_c00202{bottom:1101.306667pt;}
.y19_c00202{bottom:1102.080000pt;}
.y1a_c00202{bottom:1102.853333pt;}
.y18_c00202{bottom:1106.693333pt;}
.y17_c00202{bottom:1108.226667pt;}
.y1c_c00202{bottom:1110.533333pt;}
.y35_c00202{bottom:1115.133333pt;}
.y34_c00202{bottom:1115.906667pt;}
.y32_c00202{bottom:1116.666667pt;}
.y33_c00202{bottom:1117.440000pt;}
.y9_c00202{bottom:1136.640000pt;}
.ya_c00202{bottom:1138.173333pt;}
.yb_c00202{bottom:1141.253333pt;}
.yc_c00202{bottom:1142.786667pt;}
.yd_c00202{bottom:1143.546667pt;}
.ye_c00202{bottom:1150.466667pt;}
.y6_c00202{bottom:1160.453333pt;}
.y8_c00202{bottom:1161.986667pt;}
.y7_c00202{bottom:1163.520000pt;}
.y5_c00202{bottom:1164.293333pt;}
.y4_c00202{bottom:1170.426667pt;}
.y3_c00202{bottom:1171.200000pt;}
.y15_c00202{bottom:1178.106667pt;}
.y14_c00202{bottom:1178.880000pt;}
.y13_c00202{bottom:1200.386667pt;}
.y12_c00202{bottom:1201.146667pt;}
.y10_c00202{bottom:1229.573333pt;}
.y11_c00202{bottom:1232.640000pt;}
.yf_c00202{bottom:1255.680000pt;}
.y16_c00202{bottom:1256.453333pt;}
.y1_c00202{bottom:1280.253333pt;}
.y2_c00202{bottom:1281.026667pt;}
.h9_c00202{height:2.764500pt;}
.h4_c00202{height:4.799479pt;}
.h3_c00202{height:5.519401pt;}
.h5_c00202{height:8.303099pt;}
.h7_c00202{height:11.038802pt;}
.h6_c00202{height:13.822500pt;}
.h1d_c00202{height:16.606198pt;}
.h8_c00202{height:19.341901pt;}
.h1a_c00202{height:22.125599pt;}
.h25_c00202{height:24.861302pt;}
.h27_c00202{height:27.645000pt;}
.h15_c00202{height:33.164401pt;}
.hd_c00202{height:35.948099pt;}
.h1b_c00202{height:38.683802pt;}
.h1c_c00202{height:44.251198pt;}
.he_c00202{height:46.986901pt;}
.h12_c00202{height:49.770599pt;}
.h26_c00202{height:55.290000pt;}
.hb_c00202{height:58.073698pt;}
.hc_c00202{height:60.809401pt;}
.ha_c00202{height:63.593099pt;}
.h18_c00202{height:66.328802pt;}
.h13_c00202{height:69.112500pt;}
.h14_c00202{height:71.896198pt;}
.h16_c00202{height:74.631901pt;}
.h21_c00202{height:77.415599pt;}
.h19_c00202{height:80.151302pt;}
.h11_c00202{height:82.935000pt;}
.h10_c00202{height:85.718698pt;}
.h2_c00202{height:88.454401pt;}
.h17_c00202{height:91.238099pt;}
.h20_c00202{height:93.973802pt;}
.h1f_c00202{height:96.757500pt;}
.hf_c00202{height:99.541198pt;}
.h24_c00202{height:102.276901pt;}
.h22_c00202{height:105.060599pt;}
.h23_c00202{height:107.796302pt;}
.h1e_c00202{height:113.363698pt;}
.h0_c00202{height:1353.986667pt;}
.h1_c00202{height:1354.000000pt;}
.w0_c00202{width:978.426667pt;}
.w1_c00202{width:978.666667pt;}
.x0_c00202{left:0.000000pt;}
.x11_c00202{left:218.106667pt;}
.x24_c00202{left:239.613333pt;}
.x14_c00202{left:244.226667pt;}
.x1e_c00202{left:246.533333pt;}
.x25_c00202{left:248.066667pt;}
.xf_c00202{left:254.213333pt;}
.x3_c00202{left:264.960000pt;}
.x4a_c00202{left:267.266667pt;}
.x5_c00202{left:269.573333pt;}
.x1f_c00202{left:279.546667pt;}
.x1a_c00202{left:281.093333pt;}
.x4_c00202{left:282.626667pt;}
.x29_c00202{left:333.306667pt;}
.x15_c00202{left:337.146667pt;}
.x26_c00202{left:349.440000pt;}
.x16_c00202{left:351.746667pt;}
.x27_c00202{left:359.426667pt;}
.x13_c00202{left:361.733333pt;}
.x20_c00202{left:372.480000pt;}
.x17_c00202{left:384.000000pt;}
.x1b_c00202{left:393.986667pt;}
.x28_c00202{left:396.293333pt;}
.x18_c00202{left:408.573333pt;}
.x4b_c00202{left:410.880000pt;}
.x9_c00202{left:428.546667pt;}
.x2a_c00202{left:435.453333pt;}
.x1c_c00202{left:438.533333pt;}
.x21_c00202{left:443.906667pt;}
.x1d_c00202{left:453.120000pt;}
.xa_c00202{left:455.426667pt;}
.x22_c00202{left:460.800000pt;}
.x19_c00202{left:473.093333pt;}
.x10_c00202{left:481.533333pt;}
.x23_c00202{left:488.453333pt;}
.xb_c00202{left:500.733333pt;}
.x12_c00202{left:505.346667pt;}
.x46_c00202{left:513.026667pt;}
.x2b_c00202{left:516.093333pt;}
.x47_c00202{left:526.853333pt;}
.x45_c00202{left:548.346667pt;}
.x35_c00202{left:549.893333pt;}
.x3a_c00202{left:563.706667pt;}
.xc_c00202{left:573.693333pt;}
.x6_c00202{left:577.533333pt;}
.x4c_c00202{left:591.360000pt;}
.x2c_c00202{left:592.893333pt;}
.x7_c00202{left:609.026667pt;}
.x2d_c00202{left:610.560000pt;}
.x4d_c00202{left:612.866667pt;}
.x8_c00202{left:615.173333pt;}
.x3b_c00202{left:622.853333pt;}
.x4e_c00202{left:625.146667pt;}
.x2e_c00202{left:631.293333pt;}
.xd_c00202{left:635.906667pt;}
.x4f_c00202{left:643.586667pt;}
.x2f_c00202{left:650.493333pt;}
.x36_c00202{left:652.026667pt;}
.x50_c00202{left:656.640000pt;}
.x37_c00202{left:661.253333pt;}
.x3c_c00202{left:668.933333pt;}
.x30_c00202{left:681.986667pt;}
.x3f_c00202{left:688.133333pt;}
.x42_c00202{left:696.573333pt;}
.x31_c00202{left:703.493333pt;}
.x3d_c00202{left:705.786667pt;}
.x38_c00202{left:708.866667pt;}
.x32_c00202{left:719.613333pt;}
.x43_c00202{left:723.453333pt;}
.x40_c00202{left:733.440000pt;}
.x33_c00202{left:735.746667pt;}
.x3e_c00202{left:748.800000pt;}
.x41_c00202{left:756.480000pt;}
.x34_c00202{left:764.933333pt;}
.x39_c00202{left:771.840000pt;}
.x44_c00202{left:782.586667pt;}
.x48_c00202{left:880.893333pt;}
.x1_c00202{left:882.426667pt;}
.x49_c00202{left:884.733333pt;}
.x2_c00202{left:893.946667pt;}
.xe_c00202{left:916.226667pt;}
.x51_c00202{left:917.760000pt;}
.x52_c00202{left:936.186667pt;}
.x54_c00202{left:953.093333pt;}
.x53_c00202{left:969.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_124c3b021daef8d0f06d32c9.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.109863;font-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_c00203{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c00203{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c00203{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m8_c00203{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m5_c00203{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m6_c00203{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);}
.mc_c00203{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mb_c00203{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);}
.m2_c00203{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.ma_c00203{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m7_c00203{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m9_c00203{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m4_c00203{transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787500,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:3.456000px;}
.fs8_c00203{font-size:6.900000px;}
.fs3_c00203{font-size:10.380000px;}
.fs2_c00203{font-size:17.280000px;}
.fs0_c00203{font-size:20.760000px;}
.fs7_c00203{font-size:24.180000px;}
.fs6_c00203{font-size:27.660000px;}
.fs1_c00203{font-size:31.080000px;}
.fs5_c00203{font-size:34.560000px;}
.y0_c00203{bottom:0.000000px;}
.ye_c00203{bottom:90.720000px;}
.yd_c00203{bottom:105.405000px;}
.yc_c00203{bottom:114.045000px;}
.yb_c00203{bottom:115.770000px;}
.ya_c00203{bottom:575.430000px;}
.y9_c00203{bottom:659.235000px;}
.y8_c00203{bottom:673.050000px;}
.y7_c00203{bottom:930.525000px;}
.y6_c00203{bottom:1034.205000px;}
.y5_c00203{bottom:1066.170000px;}
.y3_c00203{bottom:1176.765000px;}
.y4_c00203{bottom:1178.490000px;}
.y1_c00203{bottom:1224.285000px;}
.y2_c00203{bottom:1226.880000px;}
.h6_c00203{height:3.110063px;}
.ha_c00203{height:6.209326px;}
.h5_c00203{height:9.340986px;}
.h4_c00203{height:15.550313px;}
.h2_c00203{height:18.681973px;}
.h9_c00203{height:21.759639px;}
.h8_c00203{height:24.891299px;}
.h3_c00203{height:27.968965px;}
.h7_c00203{height:31.100625px;}
.h0_c00203{height:1509.405000px;}
.h1_c00203{height:1509.750000px;}
.w0_c00203{width:1105.920000px;}
.w1_c00203{width:1106.250000px;}
.x0_c00203{left:0.000000px;}
.x1_c00203{left:109.725000px;}
.x6_c00203{left:111.450000px;}
.x2_c00203{left:114.045000px;}
.xa_c00203{left:120.090000px;}
.x3_c00203{left:126.150000px;}
.x9_c00203{left:131.325000px;}
.x4_c00203{left:139.965000px;}
.x5_c00203{left:151.200000px;}
.x8_c00203{left:157.245000px;}
.x7_c00203{left:186.630000px;}
.xb_c00203{left:571.965000px;}
.xd_c00203{left:592.710000px;}
.xe_c00203{left:595.290000px;}
.xc_c00203{left:597.030000px;}
.xf_c00203{left:803.520000px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls0_c00203{letter-spacing:0.000000pt;}
.ws0_c00203{word-spacing:0.000000pt;}
.fs4_c00203{font-size:3.072000pt;}
.fs8_c00203{font-size:6.133333pt;}
.fs3_c00203{font-size:9.226667pt;}
.fs2_c00203{font-size:15.360000pt;}
.fs0_c00203{font-size:18.453333pt;}
.fs7_c00203{font-size:21.493333pt;}
.fs6_c00203{font-size:24.586667pt;}
.fs1_c00203{font-size:27.626667pt;}
.fs5_c00203{font-size:30.720000pt;}
.y0_c00203{bottom:0.000000pt;}
.ye_c00203{bottom:80.640000pt;}
.yd_c00203{bottom:93.693333pt;}
.yc_c00203{bottom:101.373333pt;}
.yb_c00203{bottom:102.906667pt;}
.ya_c00203{bottom:511.493333pt;}
.y9_c00203{bottom:585.986667pt;}
.y8_c00203{bottom:598.266667pt;}
.y7_c00203{bottom:827.133333pt;}
.y6_c00203{bottom:919.293333pt;}
.y5_c00203{bottom:947.706667pt;}
.y3_c00203{bottom:1046.013333pt;}
.y4_c00203{bottom:1047.546667pt;}
.y1_c00203{bottom:1088.253333pt;}
.y2_c00203{bottom:1090.560000pt;}
.h6_c00203{height:2.764500pt;}
.ha_c00203{height:5.519401pt;}
.h5_c00203{height:8.303099pt;}
.h4_c00203{height:13.822500pt;}
.h2_c00203{height:16.606198pt;}
.h9_c00203{height:19.341901pt;}
.h8_c00203{height:22.125599pt;}
.h3_c00203{height:24.861302pt;}
.h7_c00203{height:27.645000pt;}
.h0_c00203{height:1341.693333pt;}
.h1_c00203{height:1342.000000pt;}
.w0_c00203{width:983.040000pt;}
.w1_c00203{width:983.333333pt;}
.x0_c00203{left:0.000000pt;}
.x1_c00203{left:97.533333pt;}
.x6_c00203{left:99.066667pt;}
.x2_c00203{left:101.373333pt;}
.xa_c00203{left:106.746667pt;}
.x3_c00203{left:112.133333pt;}
.x9_c00203{left:116.733333pt;}
.x4_c00203{left:124.413333pt;}
.x5_c00203{left:134.400000pt;}
.x8_c00203{left:139.773333pt;}
.x7_c00203{left:165.893333pt;}
.xb_c00203{left:508.413333pt;}
.xd_c00203{left:526.853333pt;}
.xe_c00203{left:529.146667pt;}
.xc_c00203{left:530.693333pt;}
.xf_c00203{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_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_e745a7c83c08d1e2bb485b89.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.109863;font-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.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma_c00204{transform:matrix(0.038825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038825,0.000000,0.000000,0.250000,0,0);}
.m4_c00204{transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);}
.m6_c00204{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m8_c00204{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00204{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00204{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);}
.m1_c00204{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00204{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m0_c00204{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m7_c00204{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);}
.v1_c00204{vertical-align:-3.480000px;}
.v0_c00204{vertical-align:0.000000px;}
.ls1_c00204{letter-spacing:0.000000px;}
.ls0_c00204{letter-spacing:80.239900px;}
.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;}
.fs4_c00204{font-size:3.456000px;}
.fs3_c00204{font-size:10.380000px;}
.fs6_c00204{font-size:13.800000px;}
.fs7_c00204{font-size:17.280000px;}
.fs5_c00204{font-size:20.760000px;}
.fs1_c00204{font-size:24.180000px;}
.fs2_c00204{font-size:27.660000px;}
.fs0_c00204{font-size:51.840000px;}
.fs8_c00204{font-size:200.460000px;}
.y0_c00204{bottom:0.000000px;}
.y7_c00204{bottom:118.365000px;}
.y6_c00204{bottom:123.555000px;}
.y2_c00204{bottom:151.200000px;}
.y1_c00204{bottom:199.590000px;}
.yc_c00204{bottom:263.520000px;}
.yb_c00204{bottom:317.955000px;}
.y5_c00204{bottom:736.995000px;}
.y4_c00204{bottom:748.230000px;}
.ya_c00204{bottom:874.365000px;}
.y9_c00204{bottom:1272.675000px;}
.y3_c00204{bottom:1334.010000px;}
.y8_c00204{bottom:1385.850000px;}
.h6_c00204{height:3.110063px;}
.h5_c00204{height:9.340986px;}
.h8_c00204{height:12.418652px;}
.h9_c00204{height:15.550313px;}
.h7_c00204{height:18.681973px;}
.h3_c00204{height:21.759639px;}
.h4_c00204{height:24.891299px;}
.h2_c00204{height:46.650937px;}
.ha_c00204{height:180.394424px;}
.h0_c00204{height:1523.235000px;}
.h1_c00204{height:1523.250000px;}
.w0_c00204{width:1100.730000px;}
.w1_c00204{width:1101.000000px;}
.x0_c00204{left:0.000000px;}
.x2_c00204{left:677.370000px;}
.x1_c00204{left:753.405000px;}
.x3_c00204{left:911.520000px;}
.x4_c00204{left:921.885000px;}
.x6_c00204{left:925.350000px;}
.x7_c00204{left:933.120000px;}
.x5_c00204{left:941.760000px;}
.x8_c00204{left:954.720000px;}
.xb_c00204{left:989.280000px;}
.xa_c00204{left:1020.390000px;}
.x9_c00204{left:1048.890000px;}
@media print{
.v1_c00204{vertical-align:-3.093333pt;}
.v0_c00204{vertical-align:0.000000pt;}
.ls1_c00204{letter-spacing:0.000000pt;}
.ls0_c00204{letter-spacing:71.324356pt;}
.ws0_c00204{word-spacing:0.000000pt;}
.fs4_c00204{font-size:3.072000pt;}
.fs3_c00204{font-size:9.226667pt;}
.fs6_c00204{font-size:12.266667pt;}
.fs7_c00204{font-size:15.360000pt;}
.fs5_c00204{font-size:18.453333pt;}
.fs1_c00204{font-size:21.493333pt;}
.fs2_c00204{font-size:24.586667pt;}
.fs0_c00204{font-size:46.080000pt;}
.fs8_c00204{font-size:178.186667pt;}
.y0_c00204{bottom:0.000000pt;}
.y7_c00204{bottom:105.213333pt;}
.y6_c00204{bottom:109.826667pt;}
.y2_c00204{bottom:134.400000pt;}
.y1_c00204{bottom:177.413333pt;}
.yc_c00204{bottom:234.240000pt;}
.yb_c00204{bottom:282.626667pt;}
.y5_c00204{bottom:655.106667pt;}
.y4_c00204{bottom:665.093333pt;}
.ya_c00204{bottom:777.213333pt;}
.y9_c00204{bottom:1131.266667pt;}
.y3_c00204{bottom:1185.786667pt;}
.y8_c00204{bottom:1231.866667pt;}
.h6_c00204{height:2.764500pt;}
.h5_c00204{height:8.303099pt;}
.h8_c00204{height:11.038802pt;}
.h9_c00204{height:13.822500pt;}
.h7_c00204{height:16.606198pt;}
.h3_c00204{height:19.341901pt;}
.h4_c00204{height:22.125599pt;}
.h2_c00204{height:41.467500pt;}
.ha_c00204{height:160.350599pt;}
.h0_c00204{height:1353.986667pt;}
.h1_c00204{height:1354.000000pt;}
.w0_c00204{width:978.426667pt;}
.w1_c00204{width:978.666667pt;}
.x0_c00204{left:0.000000pt;}
.x2_c00204{left:602.106667pt;}
.x1_c00204{left:669.693333pt;}
.x3_c00204{left:810.240000pt;}
.x4_c00204{left:819.453333pt;}
.x6_c00204{left:822.533333pt;}
.x7_c00204{left:829.440000pt;}
.x5_c00204{left:837.120000pt;}
.x8_c00204{left:848.640000pt;}
.xb_c00204{left:879.360000pt;}
.xa_c00204{left:907.013333pt;}
.x9_c00204{left:932.346667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00205;src:url('chunks/assets/font_aa4415f9f994886b819a7b11.woff2')format("woff");}.ff1_c00205{font-family:ff1_c00205;line-height:1.109863;font-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_c00205{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00205{transform:matrix(0.100150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100150,0.000000,0.000000,0.250000,0,0);}
.m3_c00205{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m39_c00205{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m54_c00205{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m2c_c00205{transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);}
.m3d_c00205{transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);}
.m2_c00205{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m11_c00205{transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);}
.m3e_c00205{transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);}
.m28_c00205{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);}
.m23_c00205{transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);}
.me_c00205{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);}
.m1f_c00205{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m53_c00205{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m37_c00205{transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);}
.m25_c00205{transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);}
.m4a_c00205{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.m13_c00205{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);}
.m52_c00205{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m56_c00205{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.m47_c00205{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);}
.m44_c00205{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);}
.m18_c00205{transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);}
.m31_c00205{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);}
.m51_c00205{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.m43_c00205{transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);}
.m36_c00205{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);}
.m4c_c00205{transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);}
.m4f_c00205{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);}
.m2b_c00205{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m27_c00205{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);}
.m24_c00205{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);}
.m45_c00205{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);}
.m17_c00205{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);}
.m41_c00205{transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);}
.m1d_c00205{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m34_c00205{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m38_c00205{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_c00205{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);}
.m21_c00205{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);}
.m26_c00205{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c00205{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m48_c00205{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);}
.m15_c00205{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c00205{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);}
.m7_c00205{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c00205{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);}
.m40_c00205{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c00205{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00205{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);}
.m29_c00205{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m35_c00205{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00205{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c00205{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c00205{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c00205{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);}
.ma_c00205{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m50_c00205{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m57_c00205{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);}
.m58_c00205{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m42_c00205{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8_c00205{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m49_c00205{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md_c00205{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);}
.mb_c00205{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m55_c00205{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c00205{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m0_c00205{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m33_c00205{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);}
.m20_c00205{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);}
.m5a_c00205{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00205{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00205{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m14_c00205{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m59_c00205{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00205{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);}
.m4d_c00205{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m6_c00205{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00205{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m46_c00205{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00205{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00205{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00205{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1_c00205{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m9_c00205{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);}
.m2e_c00205{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00205{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00205{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m30_c00205{transform:matrix(1.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.682500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00205{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls0_c00205{letter-spacing:0.000000px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:0.000000px;}
.fc0_c00205{color:transparent;}
.fs4_c00205{font-size:3.456000px;}
.fs1a_c00205{font-size:6.000000px;}
.fs2_c00205{font-size:6.900000px;}
.fs12_c00205{font-size:10.380000px;}
.fs1b_c00205{font-size:13.800000px;}
.fs1_c00205{font-size:17.280000px;}
.fs6_c00205{font-size:20.760000px;}
.fs3_c00205{font-size:24.180000px;}
.fs0_c00205{font-size:27.660000px;}
.fs5_c00205{font-size:31.080000px;}
.fs7_c00205{font-size:34.560000px;}
.fs11_c00205{font-size:38.040000px;}
.fs1c_c00205{font-size:41.460000px;}
.fs1d_c00205{font-size:44.940000px;}
.fs10_c00205{font-size:48.360000px;}
.fse_c00205{font-size:51.840000px;}
.fsd_c00205{font-size:55.320000px;}
.fs19_c00205{font-size:58.740000px;}
.fs8_c00205{font-size:62.220000px;}
.fsa_c00205{font-size:65.640000px;}
.fs9_c00205{font-size:69.120000px;}
.fsb_c00205{font-size:72.600000px;}
.fsf_c00205{font-size:76.020000px;}
.fs21_c00205{font-size:79.500000px;}
.fs13_c00205{font-size:82.920000px;}
.fs17_c00205{font-size:86.400000px;}
.fs14_c00205{font-size:89.880000px;}
.fs16_c00205{font-size:93.300000px;}
.fs18_c00205{font-size:96.780000px;}
.fs23_c00205{font-size:100.200000px;}
.fs20_c00205{font-size:103.680000px;}
.fs15_c00205{font-size:107.160000px;}
.fsc_c00205{font-size:110.580000px;}
.fs22_c00205{font-size:114.060000px;}
.fs1e_c00205{font-size:117.480000px;}
.fs1f_c00205{font-size:131.340000px;}
.y0_c00205{bottom:0.000000px;}
.y7_c00205{bottom:117.510000px;}
.y6_c00205{bottom:121.830000px;}
.y55_c00205{bottom:201.315000px;}
.y54_c00205{bottom:203.910000px;}
.y52_c00205{bottom:221.190000px;}
.y53_c00205{bottom:222.045000px;}
.y5_c00205{bottom:735.270000px;}
.y4_c00205{bottom:742.170000px;}
.y3_c00205{bottom:746.490000px;}
.y9_c00205{bottom:792.285000px;}
.ya_c00205{bottom:793.155000px;}
.y2_c00205{bottom:818.205000px;}
.y4e_c00205{bottom:930.525000px;}
.y4c_c00205{bottom:935.715000px;}
.y4b_c00205{bottom:936.570000px;}
.y4f_c00205{bottom:937.440000px;}
.y50_c00205{bottom:939.165000px;}
.y51_c00205{bottom:940.890000px;}
.y4d_c00205{bottom:951.270000px;}
.y3a_c00205{bottom:982.365000px;}
.y48_c00205{bottom:983.235000px;}
.y49_c00205{bottom:985.830000px;}
.y38_c00205{bottom:987.555000px;}
.y4a_c00205{bottom:988.410000px;}
.y39_c00205{bottom:992.730000px;}
.y47_c00205{bottom:1007.430000px;}
.y3b_c00205{bottom:1012.605000px;}
.y46_c00205{bottom:1015.200000px;}
.y33_c00205{bottom:1018.650000px;}
.y32_c00205{bottom:1019.520000px;}
.y31_c00205{bottom:1020.390000px;}
.y34_c00205{bottom:1022.970000px;}
.y35_c00205{bottom:1023.840000px;}
.y2f_c00205{bottom:1024.710000px;}
.y30_c00205{bottom:1025.565000px;}
.y37_c00205{bottom:1027.290000px;}
.y36_c00205{bottom:1028.160000px;}
.y2e_c00205{bottom:1035.075000px;}
.y2d_c00205{bottom:1037.670000px;}
.y29_c00205{bottom:1039.395000px;}
.y2b_c00205{bottom:1040.250000px;}
.y2a_c00205{bottom:1041.120000px;}
.y2c_c00205{bottom:1041.990000px;}
.y43_c00205{bottom:1048.035000px;}
.y44_c00205{bottom:1051.485000px;}
.y25_c00205{bottom:1052.355000px;}
.y24_c00205{bottom:1053.210000px;}
.y27_c00205{bottom:1054.080000px;}
.y26_c00205{bottom:1055.805000px;}
.y23_c00205{bottom:1056.675000px;}
.y28_c00205{bottom:1062.720000px;}
.y45_c00205{bottom:1063.590000px;}
.y40_c00205{bottom:1072.230000px;}
.y42_c00205{bottom:1073.955000px;}
.y41_c00205{bottom:1078.275000px;}
.y22_c00205{bottom:1079.130000px;}
.y3f_c00205{bottom:1080.000000px;}
.y1b_c00205{bottom:1081.725000px;}
.y1d_c00205{bottom:1082.595000px;}
.y1f_c00205{bottom:1083.450000px;}
.y1c_c00205{bottom:1084.320000px;}
.y20_c00205{bottom:1089.510000px;}
.y1e_c00205{bottom:1090.365000px;}
.y21_c00205{bottom:1093.830000px;}
.y19_c00205{bottom:1099.005000px;}
.y1a_c00205{bottom:1102.470000px;}
.y16_c00205{bottom:1103.325000px;}
.y3e_c00205{bottom:1104.195000px;}
.y15_c00205{bottom:1106.790000px;}
.y17_c00205{bottom:1111.110000px;}
.y18_c00205{bottom:1113.690000px;}
.y11_c00205{bottom:1114.560000px;}
.y12_c00205{bottom:1117.155000px;}
.y13_c00205{bottom:1119.750000px;}
.y14_c00205{bottom:1120.605000px;}
.y3c_c00205{bottom:1135.290000px;}
.y3d_c00205{bottom:1138.755000px;}
.ye_c00205{bottom:1144.800000px;}
.y10_c00205{bottom:1145.670000px;}
.yd_c00205{bottom:1146.525000px;}
.yf_c00205{bottom:1147.395000px;}
.yc_c00205{bottom:1167.270000px;}
.y1_c00205{bottom:1332.285000px;}
.yb_c00205{bottom:1348.710000px;}
.y8_c00205{bottom:1383.270000px;}
.h6_c00205{height:3.110063px;}
.h1c_c00205{height:5.399414px;}
.h4_c00205{height:6.209326px;}
.h14_c00205{height:9.340986px;}
.h1d_c00205{height:12.418652px;}
.h3_c00205{height:15.550313px;}
.h8_c00205{height:18.681973px;}
.h5_c00205{height:21.759639px;}
.h2_c00205{height:24.891299px;}
.h7_c00205{height:27.968965px;}
.h9_c00205{height:31.100625px;}
.h13_c00205{height:34.232285px;}
.h1e_c00205{height:37.309951px;}
.h1f_c00205{height:40.441611px;}
.h12_c00205{height:43.519277px;}
.h10_c00205{height:46.650937px;}
.hf_c00205{height:49.782598px;}
.h1b_c00205{height:52.860264px;}
.ha_c00205{height:55.991924px;}
.hc_c00205{height:59.069590px;}
.hb_c00205{height:62.201250px;}
.hd_c00205{height:65.332910px;}
.h11_c00205{height:68.410576px;}
.h23_c00205{height:71.542236px;}
.h15_c00205{height:74.619902px;}
.h19_c00205{height:77.751563px;}
.h16_c00205{height:80.883223px;}
.h18_c00205{height:83.960889px;}
.h1a_c00205{height:87.092549px;}
.h25_c00205{height:90.170215px;}
.h22_c00205{height:93.301875px;}
.h17_c00205{height:96.433535px;}
.he_c00205{height:99.511201px;}
.h24_c00205{height:102.642861px;}
.h20_c00205{height:105.720527px;}
.h21_c00205{height:118.193174px;}
.h0_c00205{height:1509.405000px;}
.h1_c00205{height:1509.750000px;}
.w0_c00205{width:1105.920000px;}
.w1_c00205{width:1106.250000px;}
.x0_c00205{left:0.000000px;}
.x2_c00205{left:7.770000px;}
.x1_c00205{left:31.110000px;}
.x3_c00205{left:40.605000px;}
.x5_c00205{left:44.070000px;}
.x6_c00205{left:51.840000px;}
.x4_c00205{left:61.350000px;}
.x7_c00205{left:73.440000px;}
.x8_c00205{left:150.330000px;}
.x9_c00205{left:168.480000px;}
.xa_c00205{left:184.035000px;}
.x62_c00205{left:185.760000px;}
.x63_c00205{left:195.270000px;}
.xb_c00205{left:233.280000px;}
.xc_c00205{left:237.600000px;}
.x3a_c00205{left:239.325000px;}
.x42_c00205{left:247.965000px;}
.x35_c00205{left:250.560000px;}
.x27_c00205{left:252.285000px;}
.x19_c00205{left:254.010000px;}
.xd_c00205{left:260.925000px;}
.x1f_c00205{left:272.160000px;}
.xe_c00205{left:281.670000px;}
.x20_c00205{left:284.250000px;}
.x3b_c00205{left:289.440000px;}
.x2f_c00205{left:292.890000px;}
.xf_c00205{left:311.910000px;}
.x36_c00205{left:317.085000px;}
.x28_c00205{left:323.130000px;}
.x3c_c00205{left:329.190000px;}
.x10_c00205{left:331.770000px;}
.x29_c00205{left:334.365000px;}
.x30_c00205{left:338.685000px;}
.x3d_c00205{left:340.410000px;}
.x21_c00205{left:347.325000px;}
.x43_c00205{left:349.050000px;}
.x11_c00205{left:355.110000px;}
.x22_c00205{left:358.559592px;}
.x37_c00205{left:364.605000px;}
.x2a_c00205{left:370.650000px;}
.x12_c00205{left:377.565000px;}
.x3e_c00205{left:390.525000px;}
.x1a_c00205{left:392.250000px;}
.x2b_c00205{left:397.440000px;}
.x13_c00205{left:400.890000px;}
.x38_c00205{left:412.125000px;}
.x14_c00205{left:419.910000px;}
.x39_c00205{left:421.635000px;}
.x31_c00205{left:423.360000px;}
.x23_c00205{left:430.275000px;}
.x1b_c00205{left:438.045000px;}
.x15_c00205{left:442.365000px;}
.x60_c00205{left:449.280000px;}
.x2c_c00205{left:451.005000px;}
.x1c_c00205{left:456.195000px;}
.x3f_c00205{left:457.920000px;}
.x5f_c00205{left:460.515000px;}
.x16_c00205{left:464.835000px;}
.x24_c00205{left:482.115000px;}
.x1d_c00205{left:489.030000px;}
.x32_c00205{left:490.755000px;}
.x25_c00205{left:495.075000px;}
.x40_c00205{left:497.670000px;}
.x61_c00205{left:501.120000px;}
.x1e_c00205{left:509.760000px;}
.x2d_c00205{left:512.355000px;}
.x17_c00205{left:514.080000px;}
.x2e_c00205{left:515.805000px;}
.x33_c00205{left:520.995000px;}
.x18_c00205{left:533.085000px;}
.x41_c00205{left:542.595000px;}
.x26_c00205{left:547.770000px;}
.x34_c00205{left:557.280000px;}
.x44_c00205{left:575.430000px;}
.x53_c00205{left:603.930000px;}
.x49_c00205{left:608.250000px;}
.x59_c00205{left:631.590000px;}
.x54_c00205{left:648.000000px;}
.x5a_c00205{left:654.915000px;}
.x45_c00205{left:694.650000px;}
.x4b_c00205{left:710.205000px;}
.x5b_c00205{left:717.990000px;}
.x4e_c00205{left:734.400000px;}
.x55_c00205{left:736.125000px;}
.x4a_c00205{left:742.170000px;}
.x5c_c00205{left:750.810000px;}
.x4f_c00205{left:765.510000px;}
.x5d_c00205{left:773.280000px;}
.x46_c00205{left:778.470000px;}
.x5e_c00205{left:782.790000px;}
.x4c_c00205{left:801.795000px;}
.x47_c00205{left:808.710000px;}
.x56_c00205{left:811.290000px;}
.x48_c00205{left:835.485000px;}
.x57_c00205{left:850.170000px;}
.x4d_c00205{left:853.635000px;}
.x50_c00205{left:866.595000px;}
.x58_c00205{left:873.510000px;}
.x51_c00205{left:878.685000px;}
.x52_c00205{left:892.515000px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls0_c00205{letter-spacing:0.000000pt;}
.ws0_c00205{word-spacing:0.000000pt;}
.fs4_c00205{font-size:3.072000pt;}
.fs1a_c00205{font-size:5.333333pt;}
.fs2_c00205{font-size:6.133333pt;}
.fs12_c00205{font-size:9.226667pt;}
.fs1b_c00205{font-size:12.266667pt;}
.fs1_c00205{font-size:15.360000pt;}
.fs6_c00205{font-size:18.453333pt;}
.fs3_c00205{font-size:21.493333pt;}
.fs0_c00205{font-size:24.586667pt;}
.fs5_c00205{font-size:27.626667pt;}
.fs7_c00205{font-size:30.720000pt;}
.fs11_c00205{font-size:33.813333pt;}
.fs1c_c00205{font-size:36.853333pt;}
.fs1d_c00205{font-size:39.946667pt;}
.fs10_c00205{font-size:42.986667pt;}
.fse_c00205{font-size:46.080000pt;}
.fsd_c00205{font-size:49.173333pt;}
.fs19_c00205{font-size:52.213333pt;}
.fs8_c00205{font-size:55.306667pt;}
.fsa_c00205{font-size:58.346667pt;}
.fs9_c00205{font-size:61.440000pt;}
.fsb_c00205{font-size:64.533333pt;}
.fsf_c00205{font-size:67.573333pt;}
.fs21_c00205{font-size:70.666667pt;}
.fs13_c00205{font-size:73.706667pt;}
.fs17_c00205{font-size:76.800000pt;}
.fs14_c00205{font-size:79.893333pt;}
.fs16_c00205{font-size:82.933333pt;}
.fs18_c00205{font-size:86.026667pt;}
.fs23_c00205{font-size:89.066667pt;}
.fs20_c00205{font-size:92.160000pt;}
.fs15_c00205{font-size:95.253333pt;}
.fsc_c00205{font-size:98.293333pt;}
.fs22_c00205{font-size:101.386667pt;}
.fs1e_c00205{font-size:104.426667pt;}
.fs1f_c00205{font-size:116.746667pt;}
.y0_c00205{bottom:0.000000pt;}
.y7_c00205{bottom:104.453333pt;}
.y6_c00205{bottom:108.293333pt;}
.y55_c00205{bottom:178.946667pt;}
.y54_c00205{bottom:181.253333pt;}
.y52_c00205{bottom:196.613333pt;}
.y53_c00205{bottom:197.373333pt;}
.y5_c00205{bottom:653.573333pt;}
.y4_c00205{bottom:659.706667pt;}
.y3_c00205{bottom:663.546667pt;}
.y9_c00205{bottom:704.253333pt;}
.ya_c00205{bottom:705.026667pt;}
.y2_c00205{bottom:727.293333pt;}
.y4e_c00205{bottom:827.133333pt;}
.y4c_c00205{bottom:831.746667pt;}
.y4b_c00205{bottom:832.506667pt;}
.y4f_c00205{bottom:833.280000pt;}
.y50_c00205{bottom:834.813333pt;}
.y51_c00205{bottom:836.346667pt;}
.y4d_c00205{bottom:845.573333pt;}
.y3a_c00205{bottom:873.213333pt;}
.y48_c00205{bottom:873.986667pt;}
.y49_c00205{bottom:876.293333pt;}
.y38_c00205{bottom:877.826667pt;}
.y4a_c00205{bottom:878.586667pt;}
.y39_c00205{bottom:882.426667pt;}
.y47_c00205{bottom:895.493333pt;}
.y3b_c00205{bottom:900.093333pt;}
.y46_c00205{bottom:902.400000pt;}
.y33_c00205{bottom:905.466667pt;}
.y32_c00205{bottom:906.240000pt;}
.y31_c00205{bottom:907.013333pt;}
.y34_c00205{bottom:909.306667pt;}
.y35_c00205{bottom:910.080000pt;}
.y2f_c00205{bottom:910.853333pt;}
.y30_c00205{bottom:911.613333pt;}
.y37_c00205{bottom:913.146667pt;}
.y36_c00205{bottom:913.920000pt;}
.y2e_c00205{bottom:920.066667pt;}
.y2d_c00205{bottom:922.373333pt;}
.y29_c00205{bottom:923.906667pt;}
.y2b_c00205{bottom:924.666667pt;}
.y2a_c00205{bottom:925.440000pt;}
.y2c_c00205{bottom:926.213333pt;}
.y43_c00205{bottom:931.586667pt;}
.y44_c00205{bottom:934.653333pt;}
.y25_c00205{bottom:935.426667pt;}
.y24_c00205{bottom:936.186667pt;}
.y27_c00205{bottom:936.960000pt;}
.y26_c00205{bottom:938.493333pt;}
.y23_c00205{bottom:939.266667pt;}
.y28_c00205{bottom:944.640000pt;}
.y45_c00205{bottom:945.413333pt;}
.y40_c00205{bottom:953.093333pt;}
.y42_c00205{bottom:954.626667pt;}
.y41_c00205{bottom:958.466667pt;}
.y22_c00205{bottom:959.226667pt;}
.y3f_c00205{bottom:960.000000pt;}
.y1b_c00205{bottom:961.533333pt;}
.y1d_c00205{bottom:962.306667pt;}
.y1f_c00205{bottom:963.066667pt;}
.y1c_c00205{bottom:963.840000pt;}
.y20_c00205{bottom:968.453333pt;}
.y1e_c00205{bottom:969.213333pt;}
.y21_c00205{bottom:972.293333pt;}
.y19_c00205{bottom:976.893333pt;}
.y1a_c00205{bottom:979.973333pt;}
.y16_c00205{bottom:980.733333pt;}
.y3e_c00205{bottom:981.506667pt;}
.y15_c00205{bottom:983.813333pt;}
.y17_c00205{bottom:987.653333pt;}
.y18_c00205{bottom:989.946667pt;}
.y11_c00205{bottom:990.720000pt;}
.y12_c00205{bottom:993.026667pt;}
.y13_c00205{bottom:995.333333pt;}
.y14_c00205{bottom:996.093333pt;}
.y3c_c00205{bottom:1009.146667pt;}
.y3d_c00205{bottom:1012.226667pt;}
.ye_c00205{bottom:1017.600000pt;}
.y10_c00205{bottom:1018.373333pt;}
.yd_c00205{bottom:1019.133333pt;}
.yf_c00205{bottom:1019.906667pt;}
.yc_c00205{bottom:1037.573333pt;}
.y1_c00205{bottom:1184.253333pt;}
.yb_c00205{bottom:1198.853333pt;}
.y8_c00205{bottom:1229.573333pt;}
.h6_c00205{height:2.764500pt;}
.h1c_c00205{height:4.799479pt;}
.h4_c00205{height:5.519401pt;}
.h14_c00205{height:8.303099pt;}
.h1d_c00205{height:11.038802pt;}
.h3_c00205{height:13.822500pt;}
.h8_c00205{height:16.606198pt;}
.h5_c00205{height:19.341901pt;}
.h2_c00205{height:22.125599pt;}
.h7_c00205{height:24.861302pt;}
.h9_c00205{height:27.645000pt;}
.h13_c00205{height:30.428698pt;}
.h1e_c00205{height:33.164401pt;}
.h1f_c00205{height:35.948099pt;}
.h12_c00205{height:38.683802pt;}
.h10_c00205{height:41.467500pt;}
.hf_c00205{height:44.251198pt;}
.h1b_c00205{height:46.986901pt;}
.ha_c00205{height:49.770599pt;}
.hc_c00205{height:52.506302pt;}
.hb_c00205{height:55.290000pt;}
.hd_c00205{height:58.073698pt;}
.h11_c00205{height:60.809401pt;}
.h23_c00205{height:63.593099pt;}
.h15_c00205{height:66.328802pt;}
.h19_c00205{height:69.112500pt;}
.h16_c00205{height:71.896198pt;}
.h18_c00205{height:74.631901pt;}
.h1a_c00205{height:77.415599pt;}
.h25_c00205{height:80.151302pt;}
.h22_c00205{height:82.935000pt;}
.h17_c00205{height:85.718698pt;}
.he_c00205{height:88.454401pt;}
.h24_c00205{height:91.238099pt;}
.h20_c00205{height:93.973802pt;}
.h21_c00205{height:105.060599pt;}
.h0_c00205{height:1341.693333pt;}
.h1_c00205{height:1342.000000pt;}
.w0_c00205{width:983.040000pt;}
.w1_c00205{width:983.333333pt;}
.x0_c00205{left:0.000000pt;}
.x2_c00205{left:6.906667pt;}
.x1_c00205{left:27.653333pt;}
.x3_c00205{left:36.093333pt;}
.x5_c00205{left:39.173333pt;}
.x6_c00205{left:46.080000pt;}
.x4_c00205{left:54.533333pt;}
.x7_c00205{left:65.280000pt;}
.x8_c00205{left:133.626667pt;}
.x9_c00205{left:149.760000pt;}
.xa_c00205{left:163.586667pt;}
.x62_c00205{left:165.120000pt;}
.x63_c00205{left:173.573333pt;}
.xb_c00205{left:207.360000pt;}
.xc_c00205{left:211.200000pt;}
.x3a_c00205{left:212.733333pt;}
.x42_c00205{left:220.413333pt;}
.x35_c00205{left:222.720000pt;}
.x27_c00205{left:224.253333pt;}
.x19_c00205{left:225.786667pt;}
.xd_c00205{left:231.933333pt;}
.x1f_c00205{left:241.920000pt;}
.xe_c00205{left:250.373333pt;}
.x20_c00205{left:252.666667pt;}
.x3b_c00205{left:257.280000pt;}
.x2f_c00205{left:260.346667pt;}
.xf_c00205{left:277.253333pt;}
.x36_c00205{left:281.853333pt;}
.x28_c00205{left:287.226667pt;}
.x3c_c00205{left:292.613333pt;}
.x10_c00205{left:294.906667pt;}
.x29_c00205{left:297.213333pt;}
.x30_c00205{left:301.053333pt;}
.x3d_c00205{left:302.586667pt;}
.x21_c00205{left:308.733333pt;}
.x43_c00205{left:310.266667pt;}
.x11_c00205{left:315.653333pt;}
.x22_c00205{left:318.719637pt;}
.x37_c00205{left:324.093333pt;}
.x2a_c00205{left:329.466667pt;}
.x12_c00205{left:335.613333pt;}
.x3e_c00205{left:347.133333pt;}
.x1a_c00205{left:348.666667pt;}
.x2b_c00205{left:353.280000pt;}
.x13_c00205{left:356.346667pt;}
.x38_c00205{left:366.333333pt;}
.x14_c00205{left:373.253333pt;}
.x39_c00205{left:374.786667pt;}
.x31_c00205{left:376.320000pt;}
.x23_c00205{left:382.466667pt;}
.x1b_c00205{left:389.373333pt;}
.x15_c00205{left:393.213333pt;}
.x60_c00205{left:399.360000pt;}
.x2c_c00205{left:400.893333pt;}
.x1c_c00205{left:405.506667pt;}
.x3f_c00205{left:407.040000pt;}
.x5f_c00205{left:409.346667pt;}
.x16_c00205{left:413.186667pt;}
.x24_c00205{left:428.546667pt;}
.x1d_c00205{left:434.693333pt;}
.x32_c00205{left:436.226667pt;}
.x25_c00205{left:440.066667pt;}
.x40_c00205{left:442.373333pt;}
.x61_c00205{left:445.440000pt;}
.x1e_c00205{left:453.120000pt;}
.x2d_c00205{left:455.426667pt;}
.x17_c00205{left:456.960000pt;}
.x2e_c00205{left:458.493333pt;}
.x33_c00205{left:463.106667pt;}
.x18_c00205{left:473.853333pt;}
.x41_c00205{left:482.306667pt;}
.x26_c00205{left:486.906667pt;}
.x34_c00205{left:495.360000pt;}
.x44_c00205{left:511.493333pt;}
.x53_c00205{left:536.826667pt;}
.x49_c00205{left:540.666667pt;}
.x59_c00205{left:561.413333pt;}
.x54_c00205{left:576.000000pt;}
.x5a_c00205{left:582.146667pt;}
.x45_c00205{left:617.466667pt;}
.x4b_c00205{left:631.293333pt;}
.x5b_c00205{left:638.213333pt;}
.x4e_c00205{left:652.800000pt;}
.x55_c00205{left:654.333333pt;}
.x4a_c00205{left:659.706667pt;}
.x5c_c00205{left:667.386667pt;}
.x4f_c00205{left:680.453333pt;}
.x5d_c00205{left:687.360000pt;}
.x46_c00205{left:691.973333pt;}
.x5e_c00205{left:695.813333pt;}
.x4c_c00205{left:712.706667pt;}
.x47_c00205{left:718.853333pt;}
.x56_c00205{left:721.146667pt;}
.x48_c00205{left:742.653333pt;}
.x57_c00205{left:755.706667pt;}
.x4d_c00205{left:758.786667pt;}
.x50_c00205{left:770.306667pt;}
.x58_c00205{left:776.453333pt;}
.x51_c00205{left:781.053333pt;}
.x52_c00205{left:793.346667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f2396a5a6d48e89581031f64.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.109863;font-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_c00206{transform:matrix(0.020850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020850,0.000000,0.000000,0.250000,0,0);}
.m6_c00206{transform:matrix(0.054150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054150,0.000000,0.000000,0.250000,0,0);}
.m7_c00206{transform:matrix(0.058875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058875,0.000000,0.000000,0.250000,0,0);}
.m9_c00206{transform:matrix(0.077350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077350,0.000000,0.000000,0.250000,0,0);}
.m3_c00206{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m5_c00206{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m8_c00206{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c00206{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m2_c00206{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1_c00206{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m0_c00206{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);}
.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;}
.fs9_c00206{font-size:3.456000px;}
.fs7_c00206{font-size:10.380000px;}
.fs1_c00206{font-size:13.800000px;}
.fs0_c00206{font-size:17.280000px;}
.fs4_c00206{font-size:20.760000px;}
.fs3_c00206{font-size:24.180000px;}
.fs2_c00206{font-size:27.660000px;}
.fs8_c00206{font-size:120.960000px;}
.fsa_c00206{font-size:124.440000px;}
.fs5_c00206{font-size:172.800000px;}
.fs6_c00206{font-size:176.280000px;}
.y0_c00206{bottom:0.000000px;}
.yb_c00206{bottom:1048.035000px;}
.ya_c00206{bottom:1054.950000px;}
.y9_c00206{bottom:1082.595000px;}
.y8_c00206{bottom:1220.835000px;}
.y7_c00206{bottom:1226.010000px;}
.y6_c00206{bottom:1270.950000px;}
.y5_c00206{bottom:1315.875000px;}
.y4_c00206{bottom:1326.240000px;}
.y3_c00206{bottom:1328.835000px;}
.y2_c00206{bottom:1339.200000px;}
.y1_c00206{bottom:1346.115000px;}
.hb_c00206{height:3.110063px;}
.h9_c00206{height:9.340986px;}
.h3_c00206{height:12.418652px;}
.h2_c00206{height:15.550313px;}
.h6_c00206{height:18.681973px;}
.h5_c00206{height:21.759639px;}
.h4_c00206{height:24.891299px;}
.ha_c00206{height:108.852188px;}
.hc_c00206{height:111.983848px;}
.h7_c00206{height:155.503125px;}
.h8_c00206{height:158.634785px;}
.h0_c00206{height:1523.235000px;}
.h1_c00206{height:1523.250000px;}
.w0_c00206{width:1100.730000px;}
.w1_c00206{width:1101.000000px;}
.x0_c00206{left:0.000000px;}
.x1_c00206{left:941.760000px;}
.x2_c00206{left:959.910000px;}
.x3_c00206{left:979.770000px;}
.x7_c00206{left:985.830000px;}
.x6_c00206{left:991.875000px;}
.x4_c00206{left:993.600000px;}
.x5_c00206{left:1016.925000px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls0_c00206{letter-spacing:0.000000pt;}
.ws0_c00206{word-spacing:0.000000pt;}
.fs9_c00206{font-size:3.072000pt;}
.fs7_c00206{font-size:9.226667pt;}
.fs1_c00206{font-size:12.266667pt;}
.fs0_c00206{font-size:15.360000pt;}
.fs4_c00206{font-size:18.453333pt;}
.fs3_c00206{font-size:21.493333pt;}
.fs2_c00206{font-size:24.586667pt;}
.fs8_c00206{font-size:107.520000pt;}
.fsa_c00206{font-size:110.613333pt;}
.fs5_c00206{font-size:153.600000pt;}
.fs6_c00206{font-size:156.693333pt;}
.y0_c00206{bottom:0.000000pt;}
.yb_c00206{bottom:931.586667pt;}
.ya_c00206{bottom:937.733333pt;}
.y9_c00206{bottom:962.306667pt;}
.y8_c00206{bottom:1085.186667pt;}
.y7_c00206{bottom:1089.786667pt;}
.y6_c00206{bottom:1129.733333pt;}
.y5_c00206{bottom:1169.666667pt;}
.y4_c00206{bottom:1178.880000pt;}
.y3_c00206{bottom:1181.186667pt;}
.y2_c00206{bottom:1190.400000pt;}
.y1_c00206{bottom:1196.546667pt;}
.hb_c00206{height:2.764500pt;}
.h9_c00206{height:8.303099pt;}
.h3_c00206{height:11.038802pt;}
.h2_c00206{height:13.822500pt;}
.h6_c00206{height:16.606198pt;}
.h5_c00206{height:19.341901pt;}
.h4_c00206{height:22.125599pt;}
.ha_c00206{height:96.757500pt;}
.hc_c00206{height:99.541198pt;}
.h7_c00206{height:138.225000pt;}
.h8_c00206{height:141.008698pt;}
.h0_c00206{height:1353.986667pt;}
.h1_c00206{height:1354.000000pt;}
.w0_c00206{width:978.426667pt;}
.w1_c00206{width:978.666667pt;}
.x0_c00206{left:0.000000pt;}
.x1_c00206{left:837.120000pt;}
.x2_c00206{left:853.253333pt;}
.x3_c00206{left:870.906667pt;}
.x7_c00206{left:876.293333pt;}
.x6_c00206{left:881.666667pt;}
.x4_c00206{left:883.200000pt;}
.x5_c00206{left:903.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00207;src:url('chunks/assets/font_01a2b60e7153af4a32dda40d.woff2')format("woff");}.ff1_c00207{font-family:ff1_c00207;line-height:1.109863;font-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_c00207{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);}
.v0_c00207{vertical-align:0.000000px;}
.ls0_c00207{letter-spacing:0.000000px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00207{word-spacing:0.000000px;}
.fc0_c00207{color:transparent;}
.fs0_c00207{font-size:600.000000px;}
.y0_c00207{bottom:0.000000px;}
.y1_c00207{bottom:15.000000px;}
.h2_c00207{height:539.941406px;}
.h0_c00207{height:1509.405000px;}
.h1_c00207{height:1509.750000px;}
.w0_c00207{width:1105.920000px;}
.w1_c00207{width:1106.250000px;}
.x0_c00207{left:0.000000px;}
.x1_c00207{left:15.000000px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls0_c00207{letter-spacing:0.000000pt;}
.ws0_c00207{word-spacing:0.000000pt;}
.fs0_c00207{font-size:533.333333pt;}
.y0_c00207{bottom:0.000000pt;}
.y1_c00207{bottom:13.333333pt;}
.h2_c00207{height:479.947917pt;}
.h0_c00207{height:1341.693333pt;}
.h1_c00207{height:1342.000000pt;}
.w0_c00207{width:983.040000pt;}
.w1_c00207{width:983.333333pt;}
.x0_c00207{left:0.000000pt;}
.x1_c00207{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4baebd5f914bdd94b404d224.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.109863;font-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_c00208{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c00208{transform:matrix(0.027800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027800,0.000000,0.000000,0.250000,0,0);}
.m5_c00208{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.m0_c00208{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10_c00208{transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);}
.m6_c00208{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.mf_c00208{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c00208{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);}
.m3_c00208{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00208{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00208{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);}
.mc_c00208{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m9_c00208{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m7_c00208{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);}
.me_c00208{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.ma_c00208{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);}
.m8_c00208{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m12_c00208{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m11_c00208{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,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;}
.fs1_c00208{font-size:3.456000px;}
.fs3_c00208{font-size:6.900000px;}
.fs0_c00208{font-size:20.760000px;}
.fsd_c00208{font-size:24.180000px;}
.fs8_c00208{font-size:31.080000px;}
.fs4_c00208{font-size:34.560000px;}
.fs6_c00208{font-size:38.040000px;}
.fs5_c00208{font-size:41.460000px;}
.fse_c00208{font-size:48.360000px;}
.fs7_c00208{font-size:51.840000px;}
.fs9_c00208{font-size:55.320000px;}
.fsa_c00208{font-size:58.740000px;}
.fsb_c00208{font-size:65.640000px;}
.fsc_c00208{font-size:86.400000px;}
.fs2_c00208{font-size:93.300000px;}
.y0_c00208{bottom:0.000000px;}
.y1_c00208{bottom:140.835000px;}
.y2_c00208{bottom:143.430000px;}
.y15_c00208{bottom:216.000000px;}
.yf_c00208{bottom:703.290000px;}
.ye_c00208{bottom:704.160000px;}
.y13_c00208{bottom:709.350000px;}
.y12_c00208{bottom:711.075000px;}
.y10_c00208{bottom:713.670000px;}
.y11_c00208{bottom:714.525000px;}
.y14_c00208{bottom:726.630000px;}
.yd_c00208{bottom:984.960000px;}
.yc_c00208{bottom:1018.650000px;}
.yb_c00208{bottom:1069.635000px;}
.ya_c00208{bottom:1105.920000px;}
.y9_c00208{bottom:1108.515000px;}
.y8_c00208{bottom:1109.370000px;}
.y7_c00208{bottom:1116.285000px;}
.y6_c00208{bottom:1122.330000px;}
.y4_c00208{bottom:1227.750000px;}
.y5_c00208{bottom:1228.605000px;}
.y3_c00208{bottom:1238.970000px;}
.h3_c00208{height:3.110063px;}
.h5_c00208{height:6.209326px;}
.h2_c00208{height:18.681973px;}
.hf_c00208{height:21.759639px;}
.ha_c00208{height:27.968965px;}
.h6_c00208{height:31.100625px;}
.h8_c00208{height:34.232285px;}
.h7_c00208{height:37.309951px;}
.h10_c00208{height:43.519277px;}
.h9_c00208{height:46.650937px;}
.hb_c00208{height:49.782598px;}
.hc_c00208{height:52.860264px;}
.hd_c00208{height:59.069590px;}
.he_c00208{height:77.751563px;}
.h4_c00208{height:83.960889px;}
.h0_c00208{height:1523.235000px;}
.h1_c00208{height:1523.250000px;}
.w0_c00208{width:1100.730000px;}
.w1_c00208{width:1101.000000px;}
.x0_c00208{left:0.000000px;}
.xb_c00208{left:441.510000px;}
.xc_c00208{left:473.475000px;}
.xd_c00208{left:648.000000px;}
.xe_c00208{left:670.470000px;}
.xf_c00208{left:694.650000px;}
.x10_c00208{left:708.480000px;}
.x11_c00208{left:729.210000px;}
.x12_c00208{left:743.040000px;}
.x13_c00208{left:774.150000px;}
.x14_c00208{left:842.400000px;}
.x15_c00208{left:882.150000px;}
.x1_c00208{left:892.515000px;}
.x2_c00208{left:904.605000px;}
.xa_c00208{left:940.890000px;}
.x5_c00208{left:979.770000px;}
.x4_c00208{left:982.365000px;}
.x3_c00208{left:991.875000px;}
.x6_c00208{left:1000.515000px;}
.x8_c00208{left:1011.750000px;}
.x9_c00208{left:1030.755000px;}
.x7_c00208{left:1044.570000px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls0_c00208{letter-spacing:0.000000pt;}
.ws0_c00208{word-spacing:0.000000pt;}
.fs1_c00208{font-size:3.072000pt;}
.fs3_c00208{font-size:6.133333pt;}
.fs0_c00208{font-size:18.453333pt;}
.fsd_c00208{font-size:21.493333pt;}
.fs8_c00208{font-size:27.626667pt;}
.fs4_c00208{font-size:30.720000pt;}
.fs6_c00208{font-size:33.813333pt;}
.fs5_c00208{font-size:36.853333pt;}
.fse_c00208{font-size:42.986667pt;}
.fs7_c00208{font-size:46.080000pt;}
.fs9_c00208{font-size:49.173333pt;}
.fsa_c00208{font-size:52.213333pt;}
.fsb_c00208{font-size:58.346667pt;}
.fsc_c00208{font-size:76.800000pt;}
.fs2_c00208{font-size:82.933333pt;}
.y0_c00208{bottom:0.000000pt;}
.y1_c00208{bottom:125.186667pt;}
.y2_c00208{bottom:127.493333pt;}
.y15_c00208{bottom:192.000000pt;}
.yf_c00208{bottom:625.146667pt;}
.ye_c00208{bottom:625.920000pt;}
.y13_c00208{bottom:630.533333pt;}
.y12_c00208{bottom:632.066667pt;}
.y10_c00208{bottom:634.373333pt;}
.y11_c00208{bottom:635.133333pt;}
.y14_c00208{bottom:645.893333pt;}
.yd_c00208{bottom:875.520000pt;}
.yc_c00208{bottom:905.466667pt;}
.yb_c00208{bottom:950.786667pt;}
.ya_c00208{bottom:983.040000pt;}
.y9_c00208{bottom:985.346667pt;}
.y8_c00208{bottom:986.106667pt;}
.y7_c00208{bottom:992.253333pt;}
.y6_c00208{bottom:997.626667pt;}
.y4_c00208{bottom:1091.333333pt;}
.y5_c00208{bottom:1092.093333pt;}
.y3_c00208{bottom:1101.306667pt;}
.h3_c00208{height:2.764500pt;}
.h5_c00208{height:5.519401pt;}
.h2_c00208{height:16.606198pt;}
.hf_c00208{height:19.341901pt;}
.ha_c00208{height:24.861302pt;}
.h6_c00208{height:27.645000pt;}
.h8_c00208{height:30.428698pt;}
.h7_c00208{height:33.164401pt;}
.h10_c00208{height:38.683802pt;}
.h9_c00208{height:41.467500pt;}
.hb_c00208{height:44.251198pt;}
.hc_c00208{height:46.986901pt;}
.hd_c00208{height:52.506302pt;}
.he_c00208{height:69.112500pt;}
.h4_c00208{height:74.631901pt;}
.h0_c00208{height:1353.986667pt;}
.h1_c00208{height:1354.000000pt;}
.w0_c00208{width:978.426667pt;}
.w1_c00208{width:978.666667pt;}
.x0_c00208{left:0.000000pt;}
.xb_c00208{left:392.453333pt;}
.xc_c00208{left:420.866667pt;}
.xd_c00208{left:576.000000pt;}
.xe_c00208{left:595.973333pt;}
.xf_c00208{left:617.466667pt;}
.x10_c00208{left:629.760000pt;}
.x11_c00208{left:648.186667pt;}
.x12_c00208{left:660.480000pt;}
.x13_c00208{left:688.133333pt;}
.x14_c00208{left:748.800000pt;}
.x15_c00208{left:784.133333pt;}
.x1_c00208{left:793.346667pt;}
.x2_c00208{left:804.093333pt;}
.xa_c00208{left:836.346667pt;}
.x5_c00208{left:870.906667pt;}
.x4_c00208{left:873.213333pt;}
.x3_c00208{left:881.666667pt;}
.x6_c00208{left:889.346667pt;}
.x8_c00208{left:899.333333pt;}
.x9_c00208{left:916.226667pt;}
.x7_c00208{left:928.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_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_d119c4b9f8f2412dc31617f3.woff2')format("woff");}.ff1_c00209{font-family:ff1_c00209;line-height:1.109863;font-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_c00209{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);}
.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:600.000000px;}
.y0_c00209{bottom:0.000000px;}
.y1_c00209{bottom:15.000000px;}
.h2_c00209{height:539.941406px;}
.h0_c00209{height:1509.405000px;}
.h1_c00209{height:1509.750000px;}
.w0_c00209{width:1105.920000px;}
.w1_c00209{width:1106.250000px;}
.x0_c00209{left:0.000000px;}
.x1_c00209{left:15.000000px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws0_c00209{word-spacing:0.000000pt;}
.fs0_c00209{font-size:533.333333pt;}
.y0_c00209{bottom:0.000000pt;}
.y1_c00209{bottom:13.333333pt;}
.h2_c00209{height:479.947917pt;}
.h0_c00209{height:1341.693333pt;}
.h1_c00209{height:1342.000000pt;}
.w0_c00209{width:983.040000pt;}
.w1_c00209{width:983.333333pt;}
.x0_c00209{left:0.000000pt;}
.x1_c00209{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00210;src:url('chunks/assets/font_438217b94f4a8e25eec6a16b.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.109863;font-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_c00210{transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);}
.m2_c00210{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c00210{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);}
.v0_c00210{vertical-align:0.000000px;}
.ls0_c00210{letter-spacing:0.000000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00210{word-spacing:0.000000px;}
.fc0_c00210{color:transparent;}
.fs2_c00210{font-size:3.456000px;}
.fs0_c00210{font-size:17.280000px;}
.fs1_c00210{font-size:72.600000px;}
.y0_c00210{bottom:0.000000px;}
.y2_c00210{bottom:239.325000px;}
.y3_c00210{bottom:254.880000px;}
.y1_c00210{bottom:290.310000px;}
.h4_c00210{height:3.110063px;}
.h2_c00210{height:15.550313px;}
.h3_c00210{height:65.332910px;}
.h0_c00210{height:1523.235000px;}
.h1_c00210{height:1523.250000px;}
.w0_c00210{width:1100.730000px;}
.w1_c00210{width:1101.000000px;}
.x0_c00210{left:0.000000px;}
.x2_c00210{left:993.600000px;}
.x3_c00210{left:1004.835000px;}
.x1_c00210{left:1086.045000px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws0_c00210{word-spacing:0.000000pt;}
.fs2_c00210{font-size:3.072000pt;}
.fs0_c00210{font-size:15.360000pt;}
.fs1_c00210{font-size:64.533333pt;}
.y0_c00210{bottom:0.000000pt;}
.y2_c00210{bottom:212.733333pt;}
.y3_c00210{bottom:226.560000pt;}
.y1_c00210{bottom:258.053333pt;}
.h4_c00210{height:2.764500pt;}
.h2_c00210{height:13.822500pt;}
.h3_c00210{height:58.073698pt;}
.h0_c00210{height:1353.986667pt;}
.h1_c00210{height:1354.000000pt;}
.w0_c00210{width:978.426667pt;}
.w1_c00210{width:978.666667pt;}
.x0_c00210{left:0.000000pt;}
.x2_c00210{left:883.200000pt;}
.x3_c00210{left:893.186667pt;}
.x1_c00210{left:965.373333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98381f98a4c424153b8fadd2.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.109863;font-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_c00211{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00211{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00211{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c00211{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4_c00211{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,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;}
.fs4_c00211{font-size:3.456000px;}
.fs2_c00211{font-size:10.380000px;}
.fs3_c00211{font-size:17.280000px;}
.fs1_c00211{font-size:62.220000px;}
.fs0_c00211{font-size:69.120000px;}
.y0_c00211{bottom:0.000000px;}
.y4_c00211{bottom:1230.330000px;}
.y5_c00211{bottom:1231.200000px;}
.y3_c00211{bottom:1361.670000px;}
.y2_c00211{bottom:1368.570000px;}
.y1_c00211{bottom:1388.445000px;}
.h6_c00211{height:3.110063px;}
.h4_c00211{height:9.340986px;}
.h5_c00211{height:15.550313px;}
.h3_c00211{height:55.991924px;}
.h2_c00211{height:62.201250px;}
.h0_c00211{height:1509.405000px;}
.h1_c00211{height:1509.750000px;}
.w0_c00211{width:1105.920000px;}
.w1_c00211{width:1106.250000px;}
.x0_c00211{left:0.000000px;}
.x5_c00211{left:9.510000px;}
.x6_c00211{left:16.410000px;}
.x3_c00211{left:132.195000px;}
.x4_c00211{left:134.790000px;}
.x1_c00211{left:464.835000px;}
.x2_c00211{left:635.910000px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls0_c00211{letter-spacing:0.000000pt;}
.ws0_c00211{word-spacing:0.000000pt;}
.fs4_c00211{font-size:3.072000pt;}
.fs2_c00211{font-size:9.226667pt;}
.fs3_c00211{font-size:15.360000pt;}
.fs1_c00211{font-size:55.306667pt;}
.fs0_c00211{font-size:61.440000pt;}
.y0_c00211{bottom:0.000000pt;}
.y4_c00211{bottom:1093.626667pt;}
.y5_c00211{bottom:1094.400000pt;}
.y3_c00211{bottom:1210.373333pt;}
.y2_c00211{bottom:1216.506667pt;}
.y1_c00211{bottom:1234.173333pt;}
.h6_c00211{height:2.764500pt;}
.h4_c00211{height:8.303099pt;}
.h5_c00211{height:13.822500pt;}
.h3_c00211{height:49.770599pt;}
.h2_c00211{height:55.290000pt;}
.h0_c00211{height:1341.693333pt;}
.h1_c00211{height:1342.000000pt;}
.w0_c00211{width:983.040000pt;}
.w1_c00211{width:983.333333pt;}
.x0_c00211{left:0.000000pt;}
.x5_c00211{left:8.453333pt;}
.x6_c00211{left:14.586667pt;}
.x3_c00211{left:117.506667pt;}
.x4_c00211{left:119.813333pt;}
.x1_c00211{left:413.186667pt;}
.x2_c00211{left:565.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2e568d9c5c96360b0d39aca.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.109863;font-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_c00212{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m0_c00212{transform:matrix(0.019625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019625,0.000000,0.000000,0.250000,0,0);}
.m2_c00212{transform:matrix(0.037525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037525,0.000000,0.000000,0.250000,0,0);}
.m4_c00212{transform:matrix(0.078475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078475,0.000000,0.000000,0.250000,0,0);}
.m6_c00212{transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);}
.m1_c00212{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m9_c00212{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00212{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc_c00212{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);}
.mb_c00212{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);}
.m8_c00212{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5_c00212{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);}
.m7_c00212{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);}
.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;}
.fs7_c00212{font-size:3.456000px;}
.fs8_c00212{font-size:6.000000px;}
.fs6_c00212{font-size:17.280000px;}
.fs3_c00212{font-size:20.760000px;}
.fs1_c00212{font-size:24.180000px;}
.fs2_c00212{font-size:69.120000px;}
.fs5_c00212{font-size:72.600000px;}
.fs4_c00212{font-size:79.500000px;}
.fs0_c00212{font-size:159.000000px;}
.y0_c00212{bottom:0.000000px;}
.ye_c00212{bottom:327.450000px;}
.yd_c00212{bottom:330.915000px;}
.yc_c00212{bottom:522.720000px;}
.ya_c00212{bottom:722.310000px;}
.yb_c00212{bottom:724.035000px;}
.y9_c00212{bottom:1002.240000px;}
.y8_c00212{bottom:1112.835000px;}
.y7_c00212{bottom:1291.680000px;}
.y5_c00212{bottom:1311.555000px;}
.y6_c00212{bottom:1326.240000px;}
.y4_c00212{bottom:1327.965000px;}
.y3_c00212{bottom:1337.475000px;}
.y2_c00212{bottom:1355.610000px;}
.y1_c00212{bottom:1362.525000px;}
.h9_c00212{height:3.110063px;}
.ha_c00212{height:5.399414px;}
.h8_c00212{height:15.550313px;}
.h5_c00212{height:18.681973px;}
.h3_c00212{height:21.759639px;}
.h4_c00212{height:62.201250px;}
.h7_c00212{height:65.332910px;}
.h6_c00212{height:71.542236px;}
.h2_c00212{height:143.084473px;}
.h0_c00212{height:1523.235000px;}
.h1_c00212{height:1523.250000px;}
.w0_c00212{width:1100.730000px;}
.w1_c00212{width:1101.000000px;}
.x0_c00212{left:0.000000px;}
.x4_c00212{left:933.120000px;}
.x8_c00212{left:966.810000px;}
.x2_c00212{left:980.640000px;}
.x6_c00212{left:991.875000px;}
.x1_c00212{left:997.920000px;}
.x7_c00212{left:1009.155000px;}
.x3_c00212{left:1015.200000px;}
.x9_c00212{left:1059.270000px;}
.x5_c00212{left:1068.765000px;}
.xa_c00212{left:1081.725000px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls0_c00212{letter-spacing:0.000000pt;}
.ws0_c00212{word-spacing:0.000000pt;}
.fs7_c00212{font-size:3.072000pt;}
.fs8_c00212{font-size:5.333333pt;}
.fs6_c00212{font-size:15.360000pt;}
.fs3_c00212{font-size:18.453333pt;}
.fs1_c00212{font-size:21.493333pt;}
.fs2_c00212{font-size:61.440000pt;}
.fs5_c00212{font-size:64.533333pt;}
.fs4_c00212{font-size:70.666667pt;}
.fs0_c00212{font-size:141.333333pt;}
.y0_c00212{bottom:0.000000pt;}
.ye_c00212{bottom:291.066667pt;}
.yd_c00212{bottom:294.146667pt;}
.yc_c00212{bottom:464.640000pt;}
.ya_c00212{bottom:642.053333pt;}
.yb_c00212{bottom:643.586667pt;}
.y9_c00212{bottom:890.880000pt;}
.y8_c00212{bottom:989.186667pt;}
.y7_c00212{bottom:1148.160000pt;}
.y5_c00212{bottom:1165.826667pt;}
.y6_c00212{bottom:1178.880000pt;}
.y4_c00212{bottom:1180.413333pt;}
.y3_c00212{bottom:1188.866667pt;}
.y2_c00212{bottom:1204.986667pt;}
.y1_c00212{bottom:1211.133333pt;}
.h9_c00212{height:2.764500pt;}
.ha_c00212{height:4.799479pt;}
.h8_c00212{height:13.822500pt;}
.h5_c00212{height:16.606198pt;}
.h3_c00212{height:19.341901pt;}
.h4_c00212{height:55.290000pt;}
.h7_c00212{height:58.073698pt;}
.h6_c00212{height:63.593099pt;}
.h2_c00212{height:127.186198pt;}
.h0_c00212{height:1353.986667pt;}
.h1_c00212{height:1354.000000pt;}
.w0_c00212{width:978.426667pt;}
.w1_c00212{width:978.666667pt;}
.x0_c00212{left:0.000000pt;}
.x4_c00212{left:829.440000pt;}
.x8_c00212{left:859.386667pt;}
.x2_c00212{left:871.680000pt;}
.x6_c00212{left:881.666667pt;}
.x1_c00212{left:887.040000pt;}
.x7_c00212{left:897.026667pt;}
.x3_c00212{left:902.400000pt;}
.x9_c00212{left:941.573333pt;}
.x5_c00212{left:950.013333pt;}
.xa_c00212{left:961.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca09ad0e5fcad81e9ea15636.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.109863;font-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_c00213{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m11_c00213{transform:matrix(0.017850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017850,0.000000,0.000000,0.250000,0,0);}
.m16_c00213{transform:matrix(0.036875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036875,0.000000,0.000000,0.250000,0,0);}
.m1b_c00213{transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);}
.m17_c00213{transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);}
.m12_c00213{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m5_c00213{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10_c00213{transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);}
.m6_c00213{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.ma_c00213{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);}
.m9_c00213{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m8_c00213{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m14_c00213{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.m1c_c00213{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);}
.mf_c00213{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m18_c00213{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);}
.m3_c00213{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4_c00213{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);}
.me_c00213{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00213{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);}
.m1f_c00213{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00213{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.md_c00213{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m19_c00213{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);}
.m1e_c00213{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m15_c00213{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);}
.m1d_c00213{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m20_c00213{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);}
.m2_c00213{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1_c00213{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m13_c00213{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.mb_c00213{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00213{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);}
.v1_c00213{vertical-align:-6.900000px;}
.v0_c00213{vertical-align:0.000000px;}
.ls1_c00213{letter-spacing:0.000000px;}
.ls0_c00213{letter-spacing:56.279400px;}
.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;}
.fs14_c00213{font-size:3.456000px;}
.fs15_c00213{font-size:6.900000px;}
.fs0_c00213{font-size:10.380000px;}
.fs4_c00213{font-size:13.800000px;}
.fs1_c00213{font-size:17.280000px;}
.fsa_c00213{font-size:20.760000px;}
.fs13_c00213{font-size:24.180000px;}
.fsb_c00213{font-size:27.660000px;}
.fs6_c00213{font-size:31.080000px;}
.fs7_c00213{font-size:34.560000px;}
.fs12_c00213{font-size:44.940000px;}
.fsd_c00213{font-size:48.360000px;}
.fs5_c00213{font-size:51.840000px;}
.fsc_c00213{font-size:58.740000px;}
.fsf_c00213{font-size:62.220000px;}
.fs2_c00213{font-size:65.640000px;}
.fs3_c00213{font-size:69.120000px;}
.fs8_c00213{font-size:86.400000px;}
.fs11_c00213{font-size:96.780000px;}
.fs9_c00213{font-size:100.200000px;}
.fse_c00213{font-size:120.960000px;}
.fs10_c00213{font-size:210.840000px;}
.y0_c00213{bottom:0.000000px;}
.y24_c00213{bottom:325.725000px;}
.y23_c00213{bottom:327.450000px;}
.y1e_c00213{bottom:330.045000px;}
.y1d_c00213{bottom:337.830000px;}
.y22_c00213{bottom:354.240000px;}
.y20_c00213{bottom:476.925000px;}
.y21_c00213{bottom:480.390000px;}
.y1f_c00213{bottom:613.440000px;}
.y1b_c00213{bottom:809.565000px;}
.y1c_c00213{bottom:812.160000px;}
.y1a_c00213{bottom:819.075000px;}
.y19_c00213{bottom:832.890000px;}
.y18_c00213{bottom:843.270000px;}
.y17_c00213{bottom:865.725000px;}
.y16_c00213{bottom:959.910000px;}
.y15_c00213{bottom:970.275000px;}
.y13_c00213{bottom:985.830000px;}
.y14_c00213{bottom:1000.515000px;}
.y12_c00213{bottom:1022.115000px;}
.y11_c00213{bottom:1034.205000px;}
.y10_c00213{bottom:1058.400000px;}
.yf_c00213{bottom:1060.995000px;}
.ye_c00213{bottom:1062.720000px;}
.yd_c00213{bottom:1064.445000px;}
.yc_c00213{bottom:1092.960000px;}
.yb_c00213{bottom:1113.690000px;}
.ya_c00213{bottom:1138.755000px;}
.y9_c00213{bottom:1161.210000px;}
.y8_c00213{bottom:1169.850000px;}
.y7_c00213{bottom:1177.635000px;}
.y2_c00213{bottom:1346.970000px;}
.y1_c00213{bottom:1350.435000px;}
.y4_c00213{bottom:1402.275000px;}
.y3_c00213{bottom:1404.000000px;}
.y5_c00213{bottom:1410.045000px;}
.y6_c00213{bottom:1410.915000px;}
.h16_c00213{height:3.110063px;}
.h17_c00213{height:6.209326px;}
.h2_c00213{height:9.340986px;}
.h6_c00213{height:12.418652px;}
.h3_c00213{height:15.550313px;}
.hc_c00213{height:18.681973px;}
.h15_c00213{height:21.759639px;}
.hd_c00213{height:24.891299px;}
.h8_c00213{height:27.968965px;}
.h9_c00213{height:31.100625px;}
.h14_c00213{height:40.441611px;}
.hf_c00213{height:43.519277px;}
.h7_c00213{height:46.650937px;}
.he_c00213{height:52.860264px;}
.h11_c00213{height:55.991924px;}
.h4_c00213{height:59.069590px;}
.h5_c00213{height:62.201250px;}
.ha_c00213{height:77.751563px;}
.h13_c00213{height:87.092549px;}
.hb_c00213{height:90.170215px;}
.h10_c00213{height:108.852188px;}
.h12_c00213{height:189.735410px;}
.h0_c00213{height:1509.405000px;}
.h1_c00213{height:1509.750000px;}
.w0_c00213{width:1105.920000px;}
.w1_c00213{width:1106.250000px;}
.x0_c00213{left:0.000000px;}
.xb_c00213{left:2.595000px;}
.x1_c00213{left:6.045000px;}
.x2_c00213{left:17.280000px;}
.x8_c00213{left:46.650000px;}
.x9_c00213{left:56.160000px;}
.xc_c00213{left:127.005000px;}
.xe_c00213{left:146.880000px;}
.x7_c00213{left:157.245000px;}
.xf_c00213{left:177.119250px;}
.xd_c00213{left:180.570000px;}
.xa_c00213{left:184.035000px;}
.x10_c00213{left:186.630000px;}
.x3_c00213{left:446.685000px;}
.x4_c00213{left:615.165000px;}
.x5_c00213{left:803.520000px;}
.x6_c00213{left:815.610000px;}
@media print{
.v1_c00213{vertical-align:-6.133333pt;}
.v0_c00213{vertical-align:0.000000pt;}
.ls1_c00213{letter-spacing:0.000000pt;}
.ls0_c00213{letter-spacing:50.026133pt;}
.ws0_c00213{word-spacing:0.000000pt;}
.fs14_c00213{font-size:3.072000pt;}
.fs15_c00213{font-size:6.133333pt;}
.fs0_c00213{font-size:9.226667pt;}
.fs4_c00213{font-size:12.266667pt;}
.fs1_c00213{font-size:15.360000pt;}
.fsa_c00213{font-size:18.453333pt;}
.fs13_c00213{font-size:21.493333pt;}
.fsb_c00213{font-size:24.586667pt;}
.fs6_c00213{font-size:27.626667pt;}
.fs7_c00213{font-size:30.720000pt;}
.fs12_c00213{font-size:39.946667pt;}
.fsd_c00213{font-size:42.986667pt;}
.fs5_c00213{font-size:46.080000pt;}
.fsc_c00213{font-size:52.213333pt;}
.fsf_c00213{font-size:55.306667pt;}
.fs2_c00213{font-size:58.346667pt;}
.fs3_c00213{font-size:61.440000pt;}
.fs8_c00213{font-size:76.800000pt;}
.fs11_c00213{font-size:86.026667pt;}
.fs9_c00213{font-size:89.066667pt;}
.fse_c00213{font-size:107.520000pt;}
.fs10_c00213{font-size:187.413333pt;}
.y0_c00213{bottom:0.000000pt;}
.y24_c00213{bottom:289.533333pt;}
.y23_c00213{bottom:291.066667pt;}
.y1e_c00213{bottom:293.373333pt;}
.y1d_c00213{bottom:300.293333pt;}
.y22_c00213{bottom:314.880000pt;}
.y20_c00213{bottom:423.933333pt;}
.y21_c00213{bottom:427.013333pt;}
.y1f_c00213{bottom:545.280000pt;}
.y1b_c00213{bottom:719.613333pt;}
.y1c_c00213{bottom:721.920000pt;}
.y1a_c00213{bottom:728.066667pt;}
.y19_c00213{bottom:740.346667pt;}
.y18_c00213{bottom:749.573333pt;}
.y17_c00213{bottom:769.533333pt;}
.y16_c00213{bottom:853.253333pt;}
.y15_c00213{bottom:862.466667pt;}
.y13_c00213{bottom:876.293333pt;}
.y14_c00213{bottom:889.346667pt;}
.y12_c00213{bottom:908.546667pt;}
.y11_c00213{bottom:919.293333pt;}
.y10_c00213{bottom:940.800000pt;}
.yf_c00213{bottom:943.106667pt;}
.ye_c00213{bottom:944.640000pt;}
.yd_c00213{bottom:946.173333pt;}
.yc_c00213{bottom:971.520000pt;}
.yb_c00213{bottom:989.946667pt;}
.ya_c00213{bottom:1012.226667pt;}
.y9_c00213{bottom:1032.186667pt;}
.y8_c00213{bottom:1039.866667pt;}
.y7_c00213{bottom:1046.786667pt;}
.y2_c00213{bottom:1197.306667pt;}
.y1_c00213{bottom:1200.386667pt;}
.y4_c00213{bottom:1246.466667pt;}
.y3_c00213{bottom:1248.000000pt;}
.y5_c00213{bottom:1253.373333pt;}
.y6_c00213{bottom:1254.146667pt;}
.h16_c00213{height:2.764500pt;}
.h17_c00213{height:5.519401pt;}
.h2_c00213{height:8.303099pt;}
.h6_c00213{height:11.038802pt;}
.h3_c00213{height:13.822500pt;}
.hc_c00213{height:16.606198pt;}
.h15_c00213{height:19.341901pt;}
.hd_c00213{height:22.125599pt;}
.h8_c00213{height:24.861302pt;}
.h9_c00213{height:27.645000pt;}
.h14_c00213{height:35.948099pt;}
.hf_c00213{height:38.683802pt;}
.h7_c00213{height:41.467500pt;}
.he_c00213{height:46.986901pt;}
.h11_c00213{height:49.770599pt;}
.h4_c00213{height:52.506302pt;}
.h5_c00213{height:55.290000pt;}
.ha_c00213{height:69.112500pt;}
.h13_c00213{height:77.415599pt;}
.hb_c00213{height:80.151302pt;}
.h10_c00213{height:96.757500pt;}
.h12_c00213{height:168.653698pt;}
.h0_c00213{height:1341.693333pt;}
.h1_c00213{height:1342.000000pt;}
.w0_c00213{width:983.040000pt;}
.w1_c00213{width:983.333333pt;}
.x0_c00213{left:0.000000pt;}
.xb_c00213{left:2.306667pt;}
.x1_c00213{left:5.373333pt;}
.x2_c00213{left:15.360000pt;}
.x8_c00213{left:41.466667pt;}
.x9_c00213{left:49.920000pt;}
.xc_c00213{left:112.893333pt;}
.xe_c00213{left:130.560000pt;}
.x7_c00213{left:139.773333pt;}
.xf_c00213{left:157.439333pt;}
.xd_c00213{left:160.506667pt;}
.xa_c00213{left:163.586667pt;}
.x10_c00213{left:165.893333pt;}
.x3_c00213{left:397.053333pt;}
.x4_c00213{left:546.813333pt;}
.x5_c00213{left:714.240000pt;}
.x6_c00213{left:724.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_808cbd50b81631e89c4de0a8.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.109863;font-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_c00214{transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);}
.m5_c00214{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00214{transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);}
.m3_c00214{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m0_c00214{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m7_c00214{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m4_c00214{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00214{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);}
.m8_c00214{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,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;}
.fc0_c00214{color:transparent;}
.fs4_c00214{font-size:17.280000px;}
.fs5_c00214{font-size:20.760000px;}
.fs3_c00214{font-size:34.560000px;}
.fs0_c00214{font-size:38.040000px;}
.fs1_c00214{font-size:41.460000px;}
.fs2_c00214{font-size:51.840000px;}
.fs6_c00214{font-size:86.400000px;}
.y0_c00214{bottom:0.000000px;}
.ya_c00214{bottom:714.525000px;}
.y9_c00214{bottom:762.915000px;}
.y8_c00214{bottom:772.410000px;}
.y7_c00214{bottom:799.200000px;}
.y6_c00214{bottom:1096.410000px;}
.y5_c00214{bottom:1099.005000px;}
.y4_c00214{bottom:1257.990000px;}
.y2_c00214{bottom:1270.950000px;}
.y3_c00214{bottom:1272.675000px;}
.y1_c00214{bottom:1295.130000px;}
.h6_c00214{height:15.550313px;}
.h7_c00214{height:18.681973px;}
.h5_c00214{height:31.100625px;}
.h2_c00214{height:34.232285px;}
.h3_c00214{height:37.309951px;}
.h4_c00214{height:46.650937px;}
.h8_c00214{height:77.751563px;}
.h0_c00214{height:1523.235000px;}
.h1_c00214{height:1523.250000px;}
.w0_c00214{width:1100.730000px;}
.w1_c00214{width:1101.000000px;}
.x0_c00214{left:0.000000px;}
.x8_c00214{left:952.995000px;}
.x5_c00214{left:971.130000px;}
.x6_c00214{left:986.685000px;}
.x4_c00214{left:990.150000px;}
.x7_c00214{left:991.875000px;}
.x2_c00214{left:995.325000px;}
.x1_c00214{left:1007.430000px;}
.x3_c00214{left:1016.925000px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls0_c00214{letter-spacing:0.000000pt;}
.ws0_c00214{word-spacing:0.000000pt;}
.fs4_c00214{font-size:15.360000pt;}
.fs5_c00214{font-size:18.453333pt;}
.fs3_c00214{font-size:30.720000pt;}
.fs0_c00214{font-size:33.813333pt;}
.fs1_c00214{font-size:36.853333pt;}
.fs2_c00214{font-size:46.080000pt;}
.fs6_c00214{font-size:76.800000pt;}
.y0_c00214{bottom:0.000000pt;}
.ya_c00214{bottom:635.133333pt;}
.y9_c00214{bottom:678.146667pt;}
.y8_c00214{bottom:686.586667pt;}
.y7_c00214{bottom:710.400000pt;}
.y6_c00214{bottom:974.586667pt;}
.y5_c00214{bottom:976.893333pt;}
.y4_c00214{bottom:1118.213333pt;}
.y2_c00214{bottom:1129.733333pt;}
.y3_c00214{bottom:1131.266667pt;}
.y1_c00214{bottom:1151.226667pt;}
.h6_c00214{height:13.822500pt;}
.h7_c00214{height:16.606198pt;}
.h5_c00214{height:27.645000pt;}
.h2_c00214{height:30.428698pt;}
.h3_c00214{height:33.164401pt;}
.h4_c00214{height:41.467500pt;}
.h8_c00214{height:69.112500pt;}
.h0_c00214{height:1353.986667pt;}
.h1_c00214{height:1354.000000pt;}
.w0_c00214{width:978.426667pt;}
.w1_c00214{width:978.666667pt;}
.x0_c00214{left:0.000000pt;}
.x8_c00214{left:847.106667pt;}
.x5_c00214{left:863.226667pt;}
.x6_c00214{left:877.053333pt;}
.x4_c00214{left:880.133333pt;}
.x7_c00214{left:881.666667pt;}
.x2_c00214{left:884.733333pt;}
.x1_c00214{left:895.493333pt;}
.x3_c00214{left:903.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00215;src:url('chunks/assets/font_fc7315172553e5d352a5d219.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.109863;font-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_c00215{transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);}
.m7_c00215{transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);}
.m1_c00215{transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);}
.m0_c00215{transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);}
.m3_c00215{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c00215{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);}
.m4_c00215{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c00215{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);}
.m2_c00215{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6_c00215{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c00215{vertical-align:0.000000px;}
.ls0_c00215{letter-spacing:0.000000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00215{word-spacing:0.000000px;}
.fc0_c00215{color:transparent;}
.fs3_c00215{font-size:3.456000px;}
.fs9_c00215{font-size:6.000000px;}
.fs6_c00215{font-size:10.380000px;}
.fs1_c00215{font-size:17.280000px;}
.fs4_c00215{font-size:20.760000px;}
.fs2_c00215{font-size:27.660000px;}
.fs5_c00215{font-size:31.080000px;}
.fs7_c00215{font-size:58.740000px;}
.fs0_c00215{font-size:69.120000px;}
.fs8_c00215{font-size:172.800000px;}
.y0_c00215{bottom:0.000000px;}
.ya_c00215{bottom:870.045000px;}
.y9_c00215{bottom:873.510000px;}
.y8_c00215{bottom:941.760000px;}
.y7_c00215{bottom:1207.005000px;}
.y6_c00215{bottom:1416.960000px;}
.y5_c00215{bottom:1429.050000px;}
.y3_c00215{bottom:1435.110000px;}
.y4_c00215{bottom:1439.430000px;}
.y2_c00215{bottom:1442.880000px;}
.y1_c00215{bottom:1446.330000px;}
.h5_c00215{height:3.110063px;}
.hb_c00215{height:5.399414px;}
.h8_c00215{height:9.340986px;}
.h3_c00215{height:15.550313px;}
.h6_c00215{height:18.681973px;}
.h4_c00215{height:24.891299px;}
.h7_c00215{height:27.968965px;}
.h9_c00215{height:52.860264px;}
.h2_c00215{height:62.201250px;}
.ha_c00215{height:155.503125px;}
.h0_c00215{height:1509.405000px;}
.h1_c00215{height:1509.750000px;}
.w0_c00215{width:1105.920000px;}
.w1_c00215{width:1106.250000px;}
.x0_c00215{left:0.000000px;}
.x5_c00215{left:96.765000px;}
.x7_c00215{left:111.450000px;}
.x6_c00215{left:114.915000px;}
.x8_c00215{left:119.235000px;}
.x9_c00215{left:127.005000px;}
.x1_c00215{left:971.130000px;}
.x4_c00215{left:973.725000px;}
.x2_c00215{left:975.450000px;}
.x3_c00215{left:986.685000px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls0_c00215{letter-spacing:0.000000pt;}
.ws0_c00215{word-spacing:0.000000pt;}
.fs3_c00215{font-size:3.072000pt;}
.fs9_c00215{font-size:5.333333pt;}
.fs6_c00215{font-size:9.226667pt;}
.fs1_c00215{font-size:15.360000pt;}
.fs4_c00215{font-size:18.453333pt;}
.fs2_c00215{font-size:24.586667pt;}
.fs5_c00215{font-size:27.626667pt;}
.fs7_c00215{font-size:52.213333pt;}
.fs0_c00215{font-size:61.440000pt;}
.fs8_c00215{font-size:153.600000pt;}
.y0_c00215{bottom:0.000000pt;}
.ya_c00215{bottom:773.373333pt;}
.y9_c00215{bottom:776.453333pt;}
.y8_c00215{bottom:837.120000pt;}
.y7_c00215{bottom:1072.893333pt;}
.y6_c00215{bottom:1259.520000pt;}
.y5_c00215{bottom:1270.266667pt;}
.y3_c00215{bottom:1275.653333pt;}
.y4_c00215{bottom:1279.493333pt;}
.y2_c00215{bottom:1282.560000pt;}
.y1_c00215{bottom:1285.626667pt;}
.h5_c00215{height:2.764500pt;}
.hb_c00215{height:4.799479pt;}
.h8_c00215{height:8.303099pt;}
.h3_c00215{height:13.822500pt;}
.h6_c00215{height:16.606198pt;}
.h4_c00215{height:22.125599pt;}
.h7_c00215{height:24.861302pt;}
.h9_c00215{height:46.986901pt;}
.h2_c00215{height:55.290000pt;}
.ha_c00215{height:138.225000pt;}
.h0_c00215{height:1341.693333pt;}
.h1_c00215{height:1342.000000pt;}
.w0_c00215{width:983.040000pt;}
.w1_c00215{width:983.333333pt;}
.x0_c00215{left:0.000000pt;}
.x5_c00215{left:86.013333pt;}
.x7_c00215{left:99.066667pt;}
.x6_c00215{left:102.146667pt;}
.x8_c00215{left:105.986667pt;}
.x9_c00215{left:112.893333pt;}
.x1_c00215{left:863.226667pt;}
.x4_c00215{left:865.533333pt;}
.x2_c00215{left:867.066667pt;}
.x3_c00215{left:877.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26c13728a59bc7ef2ef763a8.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.109863;font-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_c00216{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);}
.m0_c00216{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);}
.m4_c00216{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00216{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00216{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);}
.m3_c00216{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m6_c00216{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);}
.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;}
.fs3_c00216{font-size:6.000000px;}
.fs4_c00216{font-size:6.900000px;}
.fs7_c00216{font-size:10.380000px;}
.fs2_c00216{font-size:17.280000px;}
.fs6_c00216{font-size:20.760000px;}
.fs5_c00216{font-size:27.660000px;}
.fs0_c00216{font-size:31.080000px;}
.fs1_c00216{font-size:34.560000px;}
.y0_c00216{bottom:0.000000px;}
.y9_c00216{bottom:381.885000px;}
.y8_c00216{bottom:382.755000px;}
.y6_c00216{bottom:416.445000px;}
.y7_c00216{bottom:419.910000px;}
.y5_c00216{bottom:420.765000px;}
.y1_c00216{bottom:754.275000px;}
.y2_c00216{bottom:793.155000px;}
.y3_c00216{bottom:802.650000px;}
.y4_c00216{bottom:803.520000px;}
.h5_c00216{height:5.399414px;}
.h6_c00216{height:6.209326px;}
.h9_c00216{height:9.340986px;}
.h4_c00216{height:15.550313px;}
.h8_c00216{height:18.681973px;}
.h7_c00216{height:24.891299px;}
.h2_c00216{height:27.968965px;}
.h3_c00216{height:31.100625px;}
.h0_c00216{height:1523.235000px;}
.h1_c00216{height:1523.250000px;}
.w0_c00216{width:1100.730000px;}
.w1_c00216{width:1101.000000px;}
.x0_c00216{left:0.000000px;}
.x5_c00216{left:999.645000px;}
.x6_c00216{left:1008.285000px;}
.x2_c00216{left:1028.160000px;}
.x7_c00216{left:1047.165000px;}
.x3_c00216{left:1053.210000px;}
.x8_c00216{left:1057.530000px;}
.x4_c00216{left:1073.955000px;}
.x1_c00216{left:1085.190000px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls0_c00216{letter-spacing:0.000000pt;}
.ws0_c00216{word-spacing:0.000000pt;}
.fs3_c00216{font-size:5.333333pt;}
.fs4_c00216{font-size:6.133333pt;}
.fs7_c00216{font-size:9.226667pt;}
.fs2_c00216{font-size:15.360000pt;}
.fs6_c00216{font-size:18.453333pt;}
.fs5_c00216{font-size:24.586667pt;}
.fs0_c00216{font-size:27.626667pt;}
.fs1_c00216{font-size:30.720000pt;}
.y0_c00216{bottom:0.000000pt;}
.y9_c00216{bottom:339.453333pt;}
.y8_c00216{bottom:340.226667pt;}
.y6_c00216{bottom:370.173333pt;}
.y7_c00216{bottom:373.253333pt;}
.y5_c00216{bottom:374.013333pt;}
.y1_c00216{bottom:670.466667pt;}
.y2_c00216{bottom:705.026667pt;}
.y3_c00216{bottom:713.466667pt;}
.y4_c00216{bottom:714.240000pt;}
.h5_c00216{height:4.799479pt;}
.h6_c00216{height:5.519401pt;}
.h9_c00216{height:8.303099pt;}
.h4_c00216{height:13.822500pt;}
.h8_c00216{height:16.606198pt;}
.h7_c00216{height:22.125599pt;}
.h2_c00216{height:24.861302pt;}
.h3_c00216{height:27.645000pt;}
.h0_c00216{height:1353.986667pt;}
.h1_c00216{height:1354.000000pt;}
.w0_c00216{width:978.426667pt;}
.w1_c00216{width:978.666667pt;}
.x0_c00216{left:0.000000pt;}
.x5_c00216{left:888.573333pt;}
.x6_c00216{left:896.253333pt;}
.x2_c00216{left:913.920000pt;}
.x7_c00216{left:930.813333pt;}
.x3_c00216{left:936.186667pt;}
.x8_c00216{left:940.026667pt;}
.x4_c00216{left:954.626667pt;}
.x1_c00216{left:964.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08f53151daf3193fa4a7624d.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.109863;font-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_c00217{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c00217{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m5_c00217{transform:matrix(0.085700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085700,0.000000,0.000000,0.250000,0,0);}
.mb_c00217{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m12_c00217{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m1d_c00217{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00217{transform:matrix(0.117175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117175,0.000000,0.000000,0.250000,0,0);}
.m10_c00217{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m9_c00217{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m0_c00217{transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);}
.m1_c00217{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m19_c00217{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m11_c00217{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);}
.m13_c00217{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.m1b_c00217{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);}
.md_c00217{transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);}
.m14_c00217{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m16_c00217{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);}
.m3_c00217{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c00217{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c00217{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c00217{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);}
.mf_c00217{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c00217{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m2_c00217{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m15_c00217{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00217{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m6_c00217{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m8_c00217{transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);}
.me_c00217{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,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;}
.fc0_c00217{color:transparent;}
.fs1_c00217{font-size:6.000000px;}
.fs9_c00217{font-size:13.800000px;}
.fsa_c00217{font-size:17.280000px;}
.fs7_c00217{font-size:20.760000px;}
.fs5_c00217{font-size:24.180000px;}
.fs2_c00217{font-size:27.660000px;}
.fs3_c00217{font-size:31.080000px;}
.fs11_c00217{font-size:34.560000px;}
.fs8_c00217{font-size:38.040000px;}
.fs10_c00217{font-size:41.460000px;}
.fsc_c00217{font-size:44.940000px;}
.fs4_c00217{font-size:51.840000px;}
.fs0_c00217{font-size:55.320000px;}
.fse_c00217{font-size:62.220000px;}
.fsd_c00217{font-size:86.400000px;}
.fs12_c00217{font-size:100.200000px;}
.fs6_c00217{font-size:110.580000px;}
.fsb_c00217{font-size:120.960000px;}
.fsf_c00217{font-size:162.420000px;}
.y0_c00217{bottom:0.000000px;}
.y20_c00217{bottom:209.085000px;}
.y1e_c00217{bottom:239.325000px;}
.y1f_c00217{bottom:248.835000px;}
.y1c_c00217{bottom:254.010000px;}
.y1d_c00217{bottom:279.930000px;}
.y1b_c00217{bottom:281.670000px;}
.y1a_c00217{bottom:308.445000px;}
.y19_c00217{bottom:316.230000px;}
.y18_c00217{bottom:344.730000px;}
.y17_c00217{bottom:355.110000px;}
.y16_c00217{bottom:366.330000px;}
.y15_c00217{bottom:377.565000px;}
.y14_c00217{bottom:419.040000px;}
.y13_c00217{bottom:427.680000px;}
.y12_c00217{bottom:444.960000px;}
.y11_c00217{bottom:466.560000px;}
.y10_c00217{bottom:479.520000px;}
.yf_c00217{bottom:495.075000px;}
.ye_c00217{bottom:522.720000px;}
.ya_c00217{bottom:553.830000px;}
.yc_c00217{bottom:554.685000px;}
.yb_c00217{bottom:555.555000px;}
.yd_c00217{bottom:560.730000px;}
.y9_c00217{bottom:572.835000px;}
.y8_c00217{bottom:595.290000px;}
.y7_c00217{bottom:622.950000px;}
.y6_c00217{bottom:632.445000px;}
.y5_c00217{bottom:647.130000px;}
.y4_c00217{bottom:672.195000px;}
.y3_c00217{bottom:681.690000px;}
.y2_c00217{bottom:683.430000px;}
.y1_c00217{bottom:697.245000px;}
.h3_c00217{height:5.399414px;}
.hb_c00217{height:12.418652px;}
.hc_c00217{height:15.550313px;}
.h9_c00217{height:18.681973px;}
.h7_c00217{height:21.759639px;}
.h4_c00217{height:24.891299px;}
.h5_c00217{height:27.968965px;}
.h13_c00217{height:31.100625px;}
.ha_c00217{height:34.232285px;}
.h12_c00217{height:37.309951px;}
.he_c00217{height:40.441611px;}
.h6_c00217{height:46.650937px;}
.h2_c00217{height:49.782598px;}
.h10_c00217{height:55.991924px;}
.hf_c00217{height:77.751563px;}
.h14_c00217{height:90.170215px;}
.h8_c00217{height:99.511201px;}
.hd_c00217{height:108.852188px;}
.h11_c00217{height:146.162139px;}
.h0_c00217{height:1509.405000px;}
.h1_c00217{height:1509.750000px;}
.w0_c00217{width:1105.920000px;}
.w1_c00217{width:1106.250000px;}
.x0_c00217{left:0.000000px;}
.x1_c00217{left:2.595000px;}
.x6_c00217{left:4.320000px;}
.x2_c00217{left:6.915000px;}
.x3_c00217{left:35.430000px;}
.x7_c00217{left:39.750000px;}
.x4_c00217{left:50.115000px;}
.x8_c00217{left:54.435000px;}
.x5_c00217{left:59.610000px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls0_c00217{letter-spacing:0.000000pt;}
.ws0_c00217{word-spacing:0.000000pt;}
.fs1_c00217{font-size:5.333333pt;}
.fs9_c00217{font-size:12.266667pt;}
.fsa_c00217{font-size:15.360000pt;}
.fs7_c00217{font-size:18.453333pt;}
.fs5_c00217{font-size:21.493333pt;}
.fs2_c00217{font-size:24.586667pt;}
.fs3_c00217{font-size:27.626667pt;}
.fs11_c00217{font-size:30.720000pt;}
.fs8_c00217{font-size:33.813333pt;}
.fs10_c00217{font-size:36.853333pt;}
.fsc_c00217{font-size:39.946667pt;}
.fs4_c00217{font-size:46.080000pt;}
.fs0_c00217{font-size:49.173333pt;}
.fse_c00217{font-size:55.306667pt;}
.fsd_c00217{font-size:76.800000pt;}
.fs12_c00217{font-size:89.066667pt;}
.fs6_c00217{font-size:98.293333pt;}
.fsb_c00217{font-size:107.520000pt;}
.fsf_c00217{font-size:144.373333pt;}
.y0_c00217{bottom:0.000000pt;}
.y20_c00217{bottom:185.853333pt;}
.y1e_c00217{bottom:212.733333pt;}
.y1f_c00217{bottom:221.186667pt;}
.y1c_c00217{bottom:225.786667pt;}
.y1d_c00217{bottom:248.826667pt;}
.y1b_c00217{bottom:250.373333pt;}
.y1a_c00217{bottom:274.173333pt;}
.y19_c00217{bottom:281.093333pt;}
.y18_c00217{bottom:306.426667pt;}
.y17_c00217{bottom:315.653333pt;}
.y16_c00217{bottom:325.626667pt;}
.y15_c00217{bottom:335.613333pt;}
.y14_c00217{bottom:372.480000pt;}
.y13_c00217{bottom:380.160000pt;}
.y12_c00217{bottom:395.520000pt;}
.y11_c00217{bottom:414.720000pt;}
.y10_c00217{bottom:426.240000pt;}
.yf_c00217{bottom:440.066667pt;}
.ye_c00217{bottom:464.640000pt;}
.ya_c00217{bottom:492.293333pt;}
.yc_c00217{bottom:493.053333pt;}
.yb_c00217{bottom:493.826667pt;}
.yd_c00217{bottom:498.426667pt;}
.y9_c00217{bottom:509.186667pt;}
.y8_c00217{bottom:529.146667pt;}
.y7_c00217{bottom:553.733333pt;}
.y6_c00217{bottom:562.173333pt;}
.y5_c00217{bottom:575.226667pt;}
.y4_c00217{bottom:597.506667pt;}
.y3_c00217{bottom:605.946667pt;}
.y2_c00217{bottom:607.493333pt;}
.y1_c00217{bottom:619.773333pt;}
.h3_c00217{height:4.799479pt;}
.hb_c00217{height:11.038802pt;}
.hc_c00217{height:13.822500pt;}
.h9_c00217{height:16.606198pt;}
.h7_c00217{height:19.341901pt;}
.h4_c00217{height:22.125599pt;}
.h5_c00217{height:24.861302pt;}
.h13_c00217{height:27.645000pt;}
.ha_c00217{height:30.428698pt;}
.h12_c00217{height:33.164401pt;}
.he_c00217{height:35.948099pt;}
.h6_c00217{height:41.467500pt;}
.h2_c00217{height:44.251198pt;}
.h10_c00217{height:49.770599pt;}
.hf_c00217{height:69.112500pt;}
.h14_c00217{height:80.151302pt;}
.h8_c00217{height:88.454401pt;}
.hd_c00217{height:96.757500pt;}
.h11_c00217{height:129.921901pt;}
.h0_c00217{height:1341.693333pt;}
.h1_c00217{height:1342.000000pt;}
.w0_c00217{width:983.040000pt;}
.w1_c00217{width:983.333333pt;}
.x0_c00217{left:0.000000pt;}
.x1_c00217{left:2.306667pt;}
.x6_c00217{left:3.840000pt;}
.x2_c00217{left:6.146667pt;}
.x3_c00217{left:31.493333pt;}
.x7_c00217{left:35.333333pt;}
.x4_c00217{left:44.546667pt;}
.x8_c00217{left:48.386667pt;}
.x5_c00217{left:52.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2419e154d89fdc33e54cac99.woff2')format("woff");}.ff1_c00218{font-family:ff1_c00218;line-height:1.109863;font-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_c00218{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);}
.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;}
.fs0_c00218{font-size:600.000000px;}
.y0_c00218{bottom:0.000000px;}
.y1_c00218{bottom:15.000000px;}
.h2_c00218{height:539.941406px;}
.h0_c00218{height:1523.235000px;}
.h1_c00218{height:1523.250000px;}
.w0_c00218{width:1100.730000px;}
.w1_c00218{width:1101.000000px;}
.x0_c00218{left:0.000000px;}
.x1_c00218{left:15.000000px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls0_c00218{letter-spacing:0.000000pt;}
.ws0_c00218{word-spacing:0.000000pt;}
.fs0_c00218{font-size:533.333333pt;}
.y0_c00218{bottom:0.000000pt;}
.y1_c00218{bottom:13.333333pt;}
.h2_c00218{height:479.947917pt;}
.h0_c00218{height:1353.986667pt;}
.h1_c00218{height:1354.000000pt;}
.w0_c00218{width:978.426667pt;}
.w1_c00218{width:978.666667pt;}
.x0_c00218{left:0.000000pt;}
.x1_c00218{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00219;src:url('chunks/assets/font_0ce18c41b9feaa499e8d3940.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.109863;font-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_c00219{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00219{transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00219{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m12_c00219{transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070000,0.000000,0.000000,0.250000,0,0);}
.m0_c00219{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.mc_c00219{transform:matrix(0.102800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102800,0.000000,0.000000,0.250000,0,0);}
.m25_c00219{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.ma_c00219{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m23_c00219{transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);}
.m24_c00219{transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);}
.m7_c00219{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00219{transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);}
.m26_c00219{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m6_c00219{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);}
.md_c00219{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m4_c00219{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m9_c00219{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);}
.m16_c00219{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);}
.m1_c00219{transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);}
.m20_c00219{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);}
.m22_c00219{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);}
.m1d_c00219{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);}
.m10_c00219{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);}
.m14_c00219{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c00219{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00219{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c00219{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00219{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);}
.m18_c00219{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17_c00219{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00219{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m15_c00219{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mb_c00219{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m8_c00219{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m19_c00219{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m21_c00219{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m13_c00219{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m3_c00219{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mf_c00219{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.v0_c00219{vertical-align:0.000000px;}
.v1_c00219{vertical-align:3.420000px;}
.ls1_c00219{letter-spacing:0.000000px;}
.ls0_c00219{letter-spacing:23.096688px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00219{word-spacing:0.000000px;}
.fc0_c00219{color:transparent;}
.fsc_c00219{font-size:3.456000px;}
.fs11_c00219{font-size:6.000000px;}
.fs4_c00219{font-size:6.900000px;}
.fs2_c00219{font-size:10.380000px;}
.fs6_c00219{font-size:13.800000px;}
.fs7_c00219{font-size:17.280000px;}
.fs9_c00219{font-size:24.180000px;}
.fs8_c00219{font-size:27.660000px;}
.fsd_c00219{font-size:31.080000px;}
.fs10_c00219{font-size:34.560000px;}
.fs12_c00219{font-size:38.040000px;}
.fs5_c00219{font-size:41.460000px;}
.fs0_c00219{font-size:44.940000px;}
.fse_c00219{font-size:48.360000px;}
.fs3_c00219{font-size:55.320000px;}
.fs1_c00219{font-size:58.740000px;}
.fsb_c00219{font-size:62.220000px;}
.fs16_c00219{font-size:69.120000px;}
.fsf_c00219{font-size:86.400000px;}
.fsa_c00219{font-size:103.680000px;}
.fs14_c00219{font-size:134.760000px;}
.fs15_c00219{font-size:155.520000px;}
.fs13_c00219{font-size:172.800000px;}
.y0_c00219{bottom:0.000000px;}
.y30_c00219{bottom:226.365000px;}
.y33_c00219{bottom:232.410000px;}
.y32_c00219{bottom:233.280000px;}
.y31_c00219{bottom:241.920000px;}
.y2f_c00219{bottom:255.750000px;}
.y2e_c00219{bottom:271.290000px;}
.y2d_c00219{bottom:285.990000px;}
.y2c_c00219{bottom:307.590000px;}
.y2b_c00219{bottom:316.230000px;}
.y2a_c00219{bottom:321.405000px;}
.y29_c00219{bottom:330.045000px;}
.y26_c00219{bottom:336.090000px;}
.y28_c00219{bottom:346.470000px;}
.y27_c00219{bottom:368.070000px;}
.y24_c00219{bottom:383.610000px;}
.y25_c00219{bottom:387.075000px;}
.y22_c00219{bottom:387.930000px;}
.y23_c00219{bottom:391.395000px;}
.y21_c00219{bottom:432.000000px;}
.y1e_c00219{bottom:448.410000px;}
.y20_c00219{bottom:451.875000px;}
.y1f_c00219{bottom:455.325000px;}
.y1d_c00219{bottom:463.110000px;}
.y1c_c00219{bottom:473.475000px;}
.y1b_c00219{bottom:481.245000px;}
.y1a_c00219{bottom:488.160000px;}
.y19_c00219{bottom:497.670000px;}
.y18_c00219{bottom:507.165000px;}
.y16_c00219{bottom:513.210000px;}
.y17_c00219{bottom:523.590000px;}
.y15_c00219{bottom:533.955000px;}
.y14_c00219{bottom:561.600000px;}
.y11_c00219{bottom:573.690000px;}
.y12_c00219{bottom:578.880000px;}
.y13_c00219{bottom:580.605000px;}
.y10_c00219{bottom:583.200000px;}
.ye_c00219{bottom:586.650000px;}
.yf_c00219{bottom:592.710000px;}
.yd_c00219{bottom:597.885000px;}
.yb_c00219{bottom:622.950000px;}
.yc_c00219{bottom:624.675000px;}
.y9_c00219{bottom:625.530000px;}
.ya_c00219{bottom:627.270000px;}
.y8_c00219{bottom:1070.490000px;}
.y7_c00219{bottom:1255.395000px;}
.y6_c00219{bottom:1347.840000px;}
.y5_c00219{bottom:1349.565000px;}
.y4_c00219{bottom:1397.955000px;}
.y2_c00219{bottom:1398.810000px;}
.y3_c00219{bottom:1410.045000px;}
.y1_c00219{bottom:1425.600000px;}
.he_c00219{height:3.110063px;}
.h13_c00219{height:5.399414px;}
.h6_c00219{height:6.209326px;}
.h4_c00219{height:9.340986px;}
.h8_c00219{height:12.418652px;}
.h9_c00219{height:15.550313px;}
.h17_c00219{height:18.970313px;}
.hb_c00219{height:21.759639px;}
.ha_c00219{height:24.891299px;}
.hf_c00219{height:27.968965px;}
.h12_c00219{height:31.100625px;}
.h14_c00219{height:34.232285px;}
.h7_c00219{height:37.309951px;}
.h2_c00219{height:40.441611px;}
.h10_c00219{height:43.519277px;}
.h5_c00219{height:49.782598px;}
.h3_c00219{height:52.860264px;}
.hd_c00219{height:55.991924px;}
.h19_c00219{height:62.201250px;}
.h11_c00219{height:77.751563px;}
.hc_c00219{height:93.301875px;}
.h16_c00219{height:121.270840px;}
.h18_c00219{height:139.952812px;}
.h15_c00219{height:155.503125px;}
.h0_c00219{height:1509.405000px;}
.h1_c00219{height:1509.750000px;}
.w0_c00219{width:1105.920000px;}
.w1_c00219{width:1106.250000px;}
.x0_c00219{left:0.000000px;}
.x1d_c00219{left:1.725000px;}
.x19_c00219{left:4.320000px;}
.x14_c00219{left:6.915000px;}
.x15_c00219{left:8.640000px;}
.x10_c00219{left:12.090000px;}
.x16_c00219{left:14.685000px;}
.x13_c00219{left:16.410000px;}
.x1c_c00219{left:19.005000px;}
.x11_c00219{left:21.600000px;}
.xe_c00219{left:27.645000px;}
.x1b_c00219{left:29.370000px;}
.x6_c00219{left:32.835000px;}
.x7_c00219{left:46.650000px;}
.xf_c00219{left:48.389640px;}
.x12_c00219{left:53.565000px;}
.xa_c00219{left:69.120000px;}
.x8_c00219{left:70.845000px;}
.x1e_c00219{left:74.310000px;}
.x9_c00219{left:77.760000px;}
.x17_c00219{left:106.275000px;}
.x18_c00219{left:113.190000px;}
.x1a_c00219{left:133.920000px;}
.xb_c00219{left:169.350000px;}
.xc_c00219{left:189.210000px;}
.xd_c00219{left:194.400000px;}
.x2_c00219{left:626.400000px;}
.x3_c00219{left:680.835000px;}
.x4_c00219{left:683.430000px;}
.x5_c00219{left:698.115000px;}
.x1_c00219{left:699.840000px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.v1_c00219{vertical-align:3.040000pt;}
.ls1_c00219{letter-spacing:0.000000pt;}
.ls0_c00219{letter-spacing:20.530389pt;}
.ws0_c00219{word-spacing:0.000000pt;}
.fsc_c00219{font-size:3.072000pt;}
.fs11_c00219{font-size:5.333333pt;}
.fs4_c00219{font-size:6.133333pt;}
.fs2_c00219{font-size:9.226667pt;}
.fs6_c00219{font-size:12.266667pt;}
.fs7_c00219{font-size:15.360000pt;}
.fs9_c00219{font-size:21.493333pt;}
.fs8_c00219{font-size:24.586667pt;}
.fsd_c00219{font-size:27.626667pt;}
.fs10_c00219{font-size:30.720000pt;}
.fs12_c00219{font-size:33.813333pt;}
.fs5_c00219{font-size:36.853333pt;}
.fs0_c00219{font-size:39.946667pt;}
.fse_c00219{font-size:42.986667pt;}
.fs3_c00219{font-size:49.173333pt;}
.fs1_c00219{font-size:52.213333pt;}
.fsb_c00219{font-size:55.306667pt;}
.fs16_c00219{font-size:61.440000pt;}
.fsf_c00219{font-size:76.800000pt;}
.fsa_c00219{font-size:92.160000pt;}
.fs14_c00219{font-size:119.786667pt;}
.fs15_c00219{font-size:138.240000pt;}
.fs13_c00219{font-size:153.600000pt;}
.y0_c00219{bottom:0.000000pt;}
.y30_c00219{bottom:201.213333pt;}
.y33_c00219{bottom:206.586667pt;}
.y32_c00219{bottom:207.360000pt;}
.y31_c00219{bottom:215.040000pt;}
.y2f_c00219{bottom:227.333333pt;}
.y2e_c00219{bottom:241.146667pt;}
.y2d_c00219{bottom:254.213333pt;}
.y2c_c00219{bottom:273.413333pt;}
.y2b_c00219{bottom:281.093333pt;}
.y2a_c00219{bottom:285.693333pt;}
.y29_c00219{bottom:293.373333pt;}
.y26_c00219{bottom:298.746667pt;}
.y28_c00219{bottom:307.973333pt;}
.y27_c00219{bottom:327.173333pt;}
.y24_c00219{bottom:340.986667pt;}
.y25_c00219{bottom:344.066667pt;}
.y22_c00219{bottom:344.826667pt;}
.y23_c00219{bottom:347.906667pt;}
.y21_c00219{bottom:384.000000pt;}
.y1e_c00219{bottom:398.586667pt;}
.y20_c00219{bottom:401.666667pt;}
.y1f_c00219{bottom:404.733333pt;}
.y1d_c00219{bottom:411.653333pt;}
.y1c_c00219{bottom:420.866667pt;}
.y1b_c00219{bottom:427.773333pt;}
.y1a_c00219{bottom:433.920000pt;}
.y19_c00219{bottom:442.373333pt;}
.y18_c00219{bottom:450.813333pt;}
.y16_c00219{bottom:456.186667pt;}
.y17_c00219{bottom:465.413333pt;}
.y15_c00219{bottom:474.626667pt;}
.y14_c00219{bottom:499.200000pt;}
.y11_c00219{bottom:509.946667pt;}
.y12_c00219{bottom:514.560000pt;}
.y13_c00219{bottom:516.093333pt;}
.y10_c00219{bottom:518.400000pt;}
.ye_c00219{bottom:521.466667pt;}
.yf_c00219{bottom:526.853333pt;}
.yd_c00219{bottom:531.453333pt;}
.yb_c00219{bottom:553.733333pt;}
.yc_c00219{bottom:555.266667pt;}
.y9_c00219{bottom:556.026667pt;}
.ya_c00219{bottom:557.573333pt;}
.y8_c00219{bottom:951.546667pt;}
.y7_c00219{bottom:1115.906667pt;}
.y6_c00219{bottom:1198.080000pt;}
.y5_c00219{bottom:1199.613333pt;}
.y4_c00219{bottom:1242.626667pt;}
.y2_c00219{bottom:1243.386667pt;}
.y3_c00219{bottom:1253.373333pt;}
.y1_c00219{bottom:1267.200000pt;}
.he_c00219{height:2.764500pt;}
.h13_c00219{height:4.799479pt;}
.h6_c00219{height:5.519401pt;}
.h4_c00219{height:8.303099pt;}
.h8_c00219{height:11.038802pt;}
.h9_c00219{height:13.822500pt;}
.h17_c00219{height:16.862500pt;}
.hb_c00219{height:19.341901pt;}
.ha_c00219{height:22.125599pt;}
.hf_c00219{height:24.861302pt;}
.h12_c00219{height:27.645000pt;}
.h14_c00219{height:30.428698pt;}
.h7_c00219{height:33.164401pt;}
.h2_c00219{height:35.948099pt;}
.h10_c00219{height:38.683802pt;}
.h5_c00219{height:44.251198pt;}
.h3_c00219{height:46.986901pt;}
.hd_c00219{height:49.770599pt;}
.h19_c00219{height:55.290000pt;}
.h11_c00219{height:69.112500pt;}
.hc_c00219{height:82.935000pt;}
.h16_c00219{height:107.796302pt;}
.h18_c00219{height:124.402500pt;}
.h15_c00219{height:138.225000pt;}
.h0_c00219{height:1341.693333pt;}
.h1_c00219{height:1342.000000pt;}
.w0_c00219{width:983.040000pt;}
.w1_c00219{width:983.333333pt;}
.x0_c00219{left:0.000000pt;}
.x1d_c00219{left:1.533333pt;}
.x19_c00219{left:3.840000pt;}
.x14_c00219{left:6.146667pt;}
.x15_c00219{left:7.680000pt;}
.x10_c00219{left:10.746667pt;}
.x16_c00219{left:13.053333pt;}
.x13_c00219{left:14.586667pt;}
.x1c_c00219{left:16.893333pt;}
.x11_c00219{left:19.200000pt;}
.xe_c00219{left:24.573333pt;}
.x1b_c00219{left:26.106667pt;}
.x6_c00219{left:29.186667pt;}
.x7_c00219{left:41.466667pt;}
.xf_c00219{left:43.013013pt;}
.x12_c00219{left:47.613333pt;}
.xa_c00219{left:61.440000pt;}
.x8_c00219{left:62.973333pt;}
.x1e_c00219{left:66.053333pt;}
.x9_c00219{left:69.120000pt;}
.x17_c00219{left:94.466667pt;}
.x18_c00219{left:100.613333pt;}
.x1a_c00219{left:119.040000pt;}
.xb_c00219{left:150.533333pt;}
.xc_c00219{left:168.186667pt;}
.xd_c00219{left:172.800000pt;}
.x2_c00219{left:556.800000pt;}
.x3_c00219{left:605.186667pt;}
.x4_c00219{left:607.493333pt;}
.x5_c00219{left:620.546667pt;}
.x1_c00219{left:622.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_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_4c99b86bc765799f1cbb7fbf.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.109863;font-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_c00220{transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140825,0.000000,0.000000,0.250000,0,0);}
.m0_c00220{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m1_c00220{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00220{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);}
.m4_c00220{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00220{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m7_c00220{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m5_c00220{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,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;}
.fs3_c00220{font-size:3.456000px;}
.fs6_c00220{font-size:6.900000px;}
.fs1_c00220{font-size:10.380000px;}
.fs5_c00220{font-size:17.280000px;}
.fs4_c00220{font-size:20.760000px;}
.fs0_c00220{font-size:24.180000px;}
.fs7_c00220{font-size:31.080000px;}
.fs2_c00220{font-size:162.420000px;}
.y0_c00220{bottom:0.000000px;}
.ya_c00220{bottom:484.710000px;}
.y9_c00220{bottom:664.410000px;}
.y8_c00220{bottom:667.005000px;}
.y7_c00220{bottom:673.920000px;}
.y6_c00220{bottom:681.690000px;}
.y1_c00220{bottom:1141.350000px;}
.y2_c00220{bottom:1144.800000px;}
.y3_c00220{bottom:1288.230000px;}
.y4_c00220{bottom:1292.550000px;}
.y5_c00220{bottom:1295.130000px;}
.h5_c00220{height:3.110063px;}
.h8_c00220{height:6.209326px;}
.h3_c00220{height:9.340986px;}
.h7_c00220{height:15.550313px;}
.h6_c00220{height:18.681973px;}
.h2_c00220{height:21.759639px;}
.h9_c00220{height:27.968965px;}
.h4_c00220{height:146.162139px;}
.h0_c00220{height:1523.235000px;}
.h1_c00220{height:1523.250000px;}
.w0_c00220{width:1100.730000px;}
.w1_c00220{width:1101.000000px;}
.x0_c00220{left:0.000000px;}
.x1_c00220{left:983.235000px;}
.x2_c00220{left:1004.835000px;}
.x3_c00220{left:1007.430000px;}
.x4_c00220{left:1011.750000px;}
.x5_c00220{left:1023.840000px;}
.x8_c00220{left:1061.850000px;}
.x7_c00220{left:1086.045000px;}
.x6_c00220{left:1092.960000px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls0_c00220{letter-spacing:0.000000pt;}
.ws0_c00220{word-spacing:0.000000pt;}
.fs3_c00220{font-size:3.072000pt;}
.fs6_c00220{font-size:6.133333pt;}
.fs1_c00220{font-size:9.226667pt;}
.fs5_c00220{font-size:15.360000pt;}
.fs4_c00220{font-size:18.453333pt;}
.fs0_c00220{font-size:21.493333pt;}
.fs7_c00220{font-size:27.626667pt;}
.fs2_c00220{font-size:144.373333pt;}
.y0_c00220{bottom:0.000000pt;}
.ya_c00220{bottom:430.853333pt;}
.y9_c00220{bottom:590.586667pt;}
.y8_c00220{bottom:592.893333pt;}
.y7_c00220{bottom:599.040000pt;}
.y6_c00220{bottom:605.946667pt;}
.y1_c00220{bottom:1014.533333pt;}
.y2_c00220{bottom:1017.600000pt;}
.y3_c00220{bottom:1145.093333pt;}
.y4_c00220{bottom:1148.933333pt;}
.y5_c00220{bottom:1151.226667pt;}
.h5_c00220{height:2.764500pt;}
.h8_c00220{height:5.519401pt;}
.h3_c00220{height:8.303099pt;}
.h7_c00220{height:13.822500pt;}
.h6_c00220{height:16.606198pt;}
.h2_c00220{height:19.341901pt;}
.h9_c00220{height:24.861302pt;}
.h4_c00220{height:129.921901pt;}
.h0_c00220{height:1353.986667pt;}
.h1_c00220{height:1354.000000pt;}
.w0_c00220{width:978.426667pt;}
.w1_c00220{width:978.666667pt;}
.x0_c00220{left:0.000000pt;}
.x1_c00220{left:873.986667pt;}
.x2_c00220{left:893.186667pt;}
.x3_c00220{left:895.493333pt;}
.x4_c00220{left:899.333333pt;}
.x5_c00220{left:910.080000pt;}
.x8_c00220{left:943.866667pt;}
.x7_c00220{left:965.373333pt;}
.x6_c00220{left:971.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_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;}
@font-face{font-family:ff1_c00221;src:url('chunks/assets/font_7d33a63f48ad2ce7fa42f7f7.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.109863;font-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_c00221{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.m12_c00221{transform:matrix(0.064225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064225,0.000000,0.000000,0.250000,0,0);}
.m8_c00221{transform:matrix(0.072575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072575,0.000000,0.000000,0.250000,0,0);}
.mc_c00221{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me_c00221{transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);}
.m3_c00221{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);}
.mf_c00221{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);}
.m2_c00221{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);}
.mb_c00221{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00221{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);}
.m9_c00221{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c00221{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00221{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);}
.md_c00221{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m13_c00221{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);}
.m4_c00221{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma_c00221{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m5_c00221{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m11_c00221{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m7_c00221{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.v0_c00221{vertical-align:0.000000px;}
.ls0_c00221{letter-spacing:0.000000px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00221{word-spacing:0.000000px;}
.fc0_c00221{color:transparent;}
.fs5_c00221{font-size:10.380000px;}
.fs8_c00221{font-size:13.800000px;}
.fs4_c00221{font-size:17.280000px;}
.fsc_c00221{font-size:20.760000px;}
.fsb_c00221{font-size:24.180000px;}
.fs6_c00221{font-size:27.660000px;}
.fsa_c00221{font-size:31.080000px;}
.fs0_c00221{font-size:34.560000px;}
.fs2_c00221{font-size:38.040000px;}
.fs3_c00221{font-size:55.320000px;}
.fs1_c00221{font-size:72.600000px;}
.fs7_c00221{font-size:107.160000px;}
.fs9_c00221{font-size:127.860000px;}
.y0_c00221{bottom:0.000000px;}
.ya_c00221{bottom:228.090000px;}
.y9_c00221{bottom:230.685000px;}
.y8_c00221{bottom:254.010000px;}
.y6_c00221{bottom:281.670000px;}
.y7_c00221{bottom:284.250000px;}
.y5_c00221{bottom:292.035000px;}
.y4_c00221{bottom:300.675000px;}
.y3_c00221{bottom:307.590000px;}
.y14_c00221{bottom:308.445000px;}
.y2_c00221{bottom:312.765000px;}
.y1_c00221{bottom:331.770000px;}
.y13_c00221{bottom:333.510000px;}
.y12_c00221{bottom:379.290000px;}
.y11_c00221{bottom:414.720000px;}
.y10_c00221{bottom:454.470000px;}
.yf_c00221{bottom:476.925000px;}
.yd_c00221{bottom:539.130000px;}
.ye_c00221{bottom:544.320000px;}
.yc_c00221{bottom:558.150000px;}
.yb_c00221{bottom:566.790000px;}
.h7_c00221{height:9.340986px;}
.ha_c00221{height:12.418652px;}
.h6_c00221{height:15.550313px;}
.he_c00221{height:18.681973px;}
.hd_c00221{height:21.759639px;}
.h8_c00221{height:24.891299px;}
.hc_c00221{height:27.968965px;}
.h2_c00221{height:31.100625px;}
.h4_c00221{height:34.232285px;}
.h5_c00221{height:49.782598px;}
.h3_c00221{height:65.332910px;}
.h9_c00221{height:96.433535px;}
.hb_c00221{height:115.061514px;}
.h0_c00221{height:1509.405000px;}
.h1_c00221{height:1509.750000px;}
.w0_c00221{width:1105.920000px;}
.w1_c00221{width:1106.250000px;}
.x0_c00221{left:0.000000px;}
.x2_c00221{left:2.595000px;}
.x4_c00221{left:6.045000px;}
.x5_c00221{left:11.235000px;}
.x3_c00221{left:14.685000px;}
.x1_c00221{left:26.790000px;}
.xa_c00221{left:88.125000px;}
.x8_c00221{left:112.320000px;}
.x9_c00221{left:122.685000px;}
.xd_c00221{left:141.690000px;}
.xb_c00221{left:148.605000px;}
.xc_c00221{left:171.930000px;}
.x6_c00221{left:199.590000px;}
.x7_c00221{left:202.170000px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls0_c00221{letter-spacing:0.000000pt;}
.ws0_c00221{word-spacing:0.000000pt;}
.fs5_c00221{font-size:9.226667pt;}
.fs8_c00221{font-size:12.266667pt;}
.fs4_c00221{font-size:15.360000pt;}
.fsc_c00221{font-size:18.453333pt;}
.fsb_c00221{font-size:21.493333pt;}
.fs6_c00221{font-size:24.586667pt;}
.fsa_c00221{font-size:27.626667pt;}
.fs0_c00221{font-size:30.720000pt;}
.fs2_c00221{font-size:33.813333pt;}
.fs3_c00221{font-size:49.173333pt;}
.fs1_c00221{font-size:64.533333pt;}
.fs7_c00221{font-size:95.253333pt;}
.fs9_c00221{font-size:113.653333pt;}
.y0_c00221{bottom:0.000000pt;}
.ya_c00221{bottom:202.746667pt;}
.y9_c00221{bottom:205.053333pt;}
.y8_c00221{bottom:225.786667pt;}
.y6_c00221{bottom:250.373333pt;}
.y7_c00221{bottom:252.666667pt;}
.y5_c00221{bottom:259.586667pt;}
.y4_c00221{bottom:267.266667pt;}
.y3_c00221{bottom:273.413333pt;}
.y14_c00221{bottom:274.173333pt;}
.y2_c00221{bottom:278.013333pt;}
.y1_c00221{bottom:294.906667pt;}
.y13_c00221{bottom:296.453333pt;}
.y12_c00221{bottom:337.146667pt;}
.y11_c00221{bottom:368.640000pt;}
.y10_c00221{bottom:403.973333pt;}
.yf_c00221{bottom:423.933333pt;}
.yd_c00221{bottom:479.226667pt;}
.ye_c00221{bottom:483.840000pt;}
.yc_c00221{bottom:496.133333pt;}
.yb_c00221{bottom:503.813333pt;}
.h7_c00221{height:8.303099pt;}
.ha_c00221{height:11.038802pt;}
.h6_c00221{height:13.822500pt;}
.he_c00221{height:16.606198pt;}
.hd_c00221{height:19.341901pt;}
.h8_c00221{height:22.125599pt;}
.hc_c00221{height:24.861302pt;}
.h2_c00221{height:27.645000pt;}
.h4_c00221{height:30.428698pt;}
.h5_c00221{height:44.251198pt;}
.h3_c00221{height:58.073698pt;}
.h9_c00221{height:85.718698pt;}
.hb_c00221{height:102.276901pt;}
.h0_c00221{height:1341.693333pt;}
.h1_c00221{height:1342.000000pt;}
.w0_c00221{width:983.040000pt;}
.w1_c00221{width:983.333333pt;}
.x0_c00221{left:0.000000pt;}
.x2_c00221{left:2.306667pt;}
.x4_c00221{left:5.373333pt;}
.x5_c00221{left:9.986667pt;}
.x3_c00221{left:13.053333pt;}
.x1_c00221{left:23.813333pt;}
.xa_c00221{left:78.333333pt;}
.x8_c00221{left:99.840000pt;}
.x9_c00221{left:109.053333pt;}
.xd_c00221{left:125.946667pt;}
.xb_c00221{left:132.093333pt;}
.xc_c00221{left:152.826667pt;}
.x6_c00221{left:177.413333pt;}
.x7_c00221{left:179.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d362f62d3be0f1fe801dd756.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.109863;font-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.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);}
.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;}
.fs0_c00222{font-size:600.000000px;}
.y0_c00222{bottom:0.000000px;}
.y1_c00222{bottom:15.000000px;}
.h2_c00222{height:539.941406px;}
.h0_c00222{height:1523.235000px;}
.h1_c00222{height:1523.250000px;}
.w0_c00222{width:1100.730000px;}
.w1_c00222{width:1101.000000px;}
.x0_c00222{left:0.000000px;}
.x1_c00222{left:15.000000px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ws0_c00222{word-spacing:0.000000pt;}
.fs0_c00222{font-size:533.333333pt;}
.y0_c00222{bottom:0.000000pt;}
.y1_c00222{bottom:13.333333pt;}
.h2_c00222{height:479.947917pt;}
.h0_c00222{height:1353.986667pt;}
.h1_c00222{height:1354.000000pt;}
.w0_c00222{width:978.426667pt;}
.w1_c00222{width:978.666667pt;}
.x0_c00222{left:0.000000pt;}
.x1_c00222{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a3eb2b747cb01aeaabcc2665.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.109863;font-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.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00223{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.m1d_c00223{transform:matrix(0.077600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077600,0.000000,0.000000,0.250000,0,0);}
.m1c_c00223{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m18_c00223{transform:matrix(0.091925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091925,0.000000,0.000000,0.250000,0,0);}
.m19_c00223{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m1e_c00223{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m16_c00223{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);}
.m14_c00223{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c00223{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.ma_c00223{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.m12_c00223{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.m1f_c00223{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m22_c00223{transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);}
.me_c00223{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);}
.m13_c00223{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);}
.m21_c00223{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);}
.mf_c00223{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m1a_c00223{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);}
.m2_c00223{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);}
.m0_c00223{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);}
.m24_c00223{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00223{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);}
.m15_c00223{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m26_c00223{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);}
.m8_c00223{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m25_c00223{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m28_c00223{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c00223{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);}
.m27_c00223{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c00223{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m7_c00223{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);}
.m3_c00223{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c00223{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);}
.m6_c00223{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m20_c00223{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mc_c00223{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);}
.m5_c00223{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m29_c00223{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mb_c00223{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m17_c00223{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m23_c00223{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m9_c00223{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,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;}
.fs7_c00223{font-size:3.456000px;}
.fs1_c00223{font-size:6.000000px;}
.fsf_c00223{font-size:6.900000px;}
.fs15_c00223{font-size:10.380000px;}
.fsa_c00223{font-size:17.280000px;}
.fs0_c00223{font-size:20.760000px;}
.fs6_c00223{font-size:24.180000px;}
.fsc_c00223{font-size:27.660000px;}
.fs9_c00223{font-size:31.080000px;}
.fsd_c00223{font-size:34.560000px;}
.fs14_c00223{font-size:38.040000px;}
.fsb_c00223{font-size:41.460000px;}
.fs8_c00223{font-size:44.940000px;}
.fs5_c00223{font-size:55.320000px;}
.fs3_c00223{font-size:58.740000px;}
.fs4_c00223{font-size:65.640000px;}
.fs2_c00223{font-size:69.120000px;}
.fs13_c00223{font-size:76.020000px;}
.fse_c00223{font-size:100.200000px;}
.fs12_c00223{font-size:103.680000px;}
.fs10_c00223{font-size:145.140000px;}
.fs11_c00223{font-size:221.160000px;}
.y0_c00223{bottom:0.000000px;}
.y2c_c00223{bottom:895.110000px;}
.y23_c00223{bottom:910.650000px;}
.y2b_c00223{bottom:913.245000px;}
.y22_c00223{bottom:921.885000px;}
.y21_c00223{bottom:927.075000px;}
.y2a_c00223{bottom:937.440000px;}
.y29_c00223{bottom:940.035000px;}
.y28_c00223{bottom:942.630000px;}
.y27_c00223{bottom:943.485000px;}
.y20_c00223{bottom:944.355000px;}
.y26_c00223{bottom:958.170000px;}
.y24_c00223{bottom:959.040000px;}
.y25_c00223{bottom:968.550000px;}
.y1f_c00223{bottom:969.405000px;}
.y1c_c00223{bottom:995.325000px;}
.y1d_c00223{bottom:1048.035000px;}
.y1e_c00223{bottom:1051.485000px;}
.y1b_c00223{bottom:1063.590000px;}
.y1a_c00223{bottom:1065.315000px;}
.y19_c00223{bottom:1084.320000px;}
.y18_c00223{bottom:1123.200000px;}
.y17_c00223{bottom:1135.290000px;}
.y15_c00223{bottom:1146.525000px;}
.y16_c00223{bottom:1158.630000px;}
.y13_c00223{bottom:1163.805000px;}
.y14_c00223{bottom:1169.850000px;}
.y12_c00223{bottom:1174.170000px;}
.y11_c00223{bottom:1178.490000px;}
.y10_c00223{bottom:1214.790000px;}
.yf_c00223{bottom:1224.285000px;}
.ye_c00223{bottom:1238.970000px;}
.yd_c00223{bottom:1262.310000px;}
.yc_c00223{bottom:1276.125000px;}
.yb_c00223{bottom:1289.955000px;}
.ya_c00223{bottom:1310.685000px;}
.y8_c00223{bottom:1335.750000px;}
.y9_c00223{bottom:1338.330000px;}
.y7_c00223{bottom:1357.350000px;}
.y3_c00223{bottom:1389.315000px;}
.y6_c00223{bottom:1390.170000px;}
.y5_c00223{bottom:1391.040000px;}
.y4_c00223{bottom:1391.910000px;}
.y2_c00223{bottom:1435.965000px;}
.y1_c00223{bottom:1436.835000px;}
.h9_c00223{height:3.110063px;}
.h3_c00223{height:5.399414px;}
.h11_c00223{height:6.209326px;}
.h17_c00223{height:9.340986px;}
.hc_c00223{height:15.550313px;}
.h2_c00223{height:18.681973px;}
.h8_c00223{height:21.759639px;}
.he_c00223{height:24.891299px;}
.hb_c00223{height:27.968965px;}
.hf_c00223{height:31.100625px;}
.h16_c00223{height:34.232285px;}
.hd_c00223{height:37.309951px;}
.ha_c00223{height:40.441611px;}
.h7_c00223{height:49.782598px;}
.h5_c00223{height:52.860264px;}
.h6_c00223{height:59.069590px;}
.h4_c00223{height:62.201250px;}
.h15_c00223{height:68.410576px;}
.h10_c00223{height:90.170215px;}
.h14_c00223{height:93.301875px;}
.h12_c00223{height:130.611826px;}
.h13_c00223{height:199.022402px;}
.h0_c00223{height:1509.405000px;}
.h1_c00223{height:1509.750000px;}
.w0_c00223{width:1105.920000px;}
.w1_c00223{width:1106.250000px;}
.x0_c00223{left:0.000000px;}
.xf_c00223{left:2.595000px;}
.x1_c00223{left:4.320000px;}
.xd_c00223{left:9.510000px;}
.x2_c00223{left:12.960000px;}
.xc_c00223{left:19.005000px;}
.x10_c00223{left:22.470000px;}
.xe_c00223{left:28.515000px;}
.x11_c00223{left:31.110000px;}
.xb_c00223{left:34.560000px;}
.x1c_c00223{left:60.480000px;}
.x12_c00223{left:325.725000px;}
.x1b_c00223{left:349.920000px;}
.x14_c00223{left:456.195000px;}
.x3_c00223{left:459.645000px;}
.x13_c00223{left:466.560000px;}
.x15_c00223{left:470.010000px;}
.x4_c00223{left:483.840000px;}
.x5_c00223{left:515.805000px;}
.x6_c00223{left:547.770000px;}
.x7_c00223{left:569.370000px;}
.x8_c00223{left:592.710000px;}
.x9_c00223{left:609.990000px;}
.x16_c00223{left:635.910000px;}
.xa_c00223{left:651.450000px;}
.x17_c00223{left:665.280000px;}
.x18_c00223{left:687.750000px;}
.x19_c00223{left:727.485000px;}
.x1a_c00223{left:746.490000px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls0_c00223{letter-spacing:0.000000pt;}
.ws0_c00223{word-spacing:0.000000pt;}
.fs7_c00223{font-size:3.072000pt;}
.fs1_c00223{font-size:5.333333pt;}
.fsf_c00223{font-size:6.133333pt;}
.fs15_c00223{font-size:9.226667pt;}
.fsa_c00223{font-size:15.360000pt;}
.fs0_c00223{font-size:18.453333pt;}
.fs6_c00223{font-size:21.493333pt;}
.fsc_c00223{font-size:24.586667pt;}
.fs9_c00223{font-size:27.626667pt;}
.fsd_c00223{font-size:30.720000pt;}
.fs14_c00223{font-size:33.813333pt;}
.fsb_c00223{font-size:36.853333pt;}
.fs8_c00223{font-size:39.946667pt;}
.fs5_c00223{font-size:49.173333pt;}
.fs3_c00223{font-size:52.213333pt;}
.fs4_c00223{font-size:58.346667pt;}
.fs2_c00223{font-size:61.440000pt;}
.fs13_c00223{font-size:67.573333pt;}
.fse_c00223{font-size:89.066667pt;}
.fs12_c00223{font-size:92.160000pt;}
.fs10_c00223{font-size:129.013333pt;}
.fs11_c00223{font-size:196.586667pt;}
.y0_c00223{bottom:0.000000pt;}
.y2c_c00223{bottom:795.653333pt;}
.y23_c00223{bottom:809.466667pt;}
.y2b_c00223{bottom:811.773333pt;}
.y22_c00223{bottom:819.453333pt;}
.y21_c00223{bottom:824.066667pt;}
.y2a_c00223{bottom:833.280000pt;}
.y29_c00223{bottom:835.586667pt;}
.y28_c00223{bottom:837.893333pt;}
.y27_c00223{bottom:838.653333pt;}
.y20_c00223{bottom:839.426667pt;}
.y26_c00223{bottom:851.706667pt;}
.y24_c00223{bottom:852.480000pt;}
.y25_c00223{bottom:860.933333pt;}
.y1f_c00223{bottom:861.693333pt;}
.y1c_c00223{bottom:884.733333pt;}
.y1d_c00223{bottom:931.586667pt;}
.y1e_c00223{bottom:934.653333pt;}
.y1b_c00223{bottom:945.413333pt;}
.y1a_c00223{bottom:946.946667pt;}
.y19_c00223{bottom:963.840000pt;}
.y18_c00223{bottom:998.400000pt;}
.y17_c00223{bottom:1009.146667pt;}
.y15_c00223{bottom:1019.133333pt;}
.y16_c00223{bottom:1029.893333pt;}
.y13_c00223{bottom:1034.493333pt;}
.y14_c00223{bottom:1039.866667pt;}
.y12_c00223{bottom:1043.706667pt;}
.y11_c00223{bottom:1047.546667pt;}
.y10_c00223{bottom:1079.813333pt;}
.yf_c00223{bottom:1088.253333pt;}
.ye_c00223{bottom:1101.306667pt;}
.yd_c00223{bottom:1122.053333pt;}
.yc_c00223{bottom:1134.333333pt;}
.yb_c00223{bottom:1146.626667pt;}
.ya_c00223{bottom:1165.053333pt;}
.y8_c00223{bottom:1187.333333pt;}
.y9_c00223{bottom:1189.626667pt;}
.y7_c00223{bottom:1206.533333pt;}
.y3_c00223{bottom:1234.946667pt;}
.y6_c00223{bottom:1235.706667pt;}
.y5_c00223{bottom:1236.480000pt;}
.y4_c00223{bottom:1237.253333pt;}
.y2_c00223{bottom:1276.413333pt;}
.y1_c00223{bottom:1277.186667pt;}
.h9_c00223{height:2.764500pt;}
.h3_c00223{height:4.799479pt;}
.h11_c00223{height:5.519401pt;}
.h17_c00223{height:8.303099pt;}
.hc_c00223{height:13.822500pt;}
.h2_c00223{height:16.606198pt;}
.h8_c00223{height:19.341901pt;}
.he_c00223{height:22.125599pt;}
.hb_c00223{height:24.861302pt;}
.hf_c00223{height:27.645000pt;}
.h16_c00223{height:30.428698pt;}
.hd_c00223{height:33.164401pt;}
.ha_c00223{height:35.948099pt;}
.h7_c00223{height:44.251198pt;}
.h5_c00223{height:46.986901pt;}
.h6_c00223{height:52.506302pt;}
.h4_c00223{height:55.290000pt;}
.h15_c00223{height:60.809401pt;}
.h10_c00223{height:80.151302pt;}
.h14_c00223{height:82.935000pt;}
.h12_c00223{height:116.099401pt;}
.h13_c00223{height:176.908802pt;}
.h0_c00223{height:1341.693333pt;}
.h1_c00223{height:1342.000000pt;}
.w0_c00223{width:983.040000pt;}
.w1_c00223{width:983.333333pt;}
.x0_c00223{left:0.000000pt;}
.xf_c00223{left:2.306667pt;}
.x1_c00223{left:3.840000pt;}
.xd_c00223{left:8.453333pt;}
.x2_c00223{left:11.520000pt;}
.xc_c00223{left:16.893333pt;}
.x10_c00223{left:19.973333pt;}
.xe_c00223{left:25.346667pt;}
.x11_c00223{left:27.653333pt;}
.xb_c00223{left:30.720000pt;}
.x1c_c00223{left:53.760000pt;}
.x12_c00223{left:289.533333pt;}
.x1b_c00223{left:311.040000pt;}
.x14_c00223{left:405.506667pt;}
.x3_c00223{left:408.573333pt;}
.x13_c00223{left:414.720000pt;}
.x15_c00223{left:417.786667pt;}
.x4_c00223{left:430.080000pt;}
.x5_c00223{left:458.493333pt;}
.x6_c00223{left:486.906667pt;}
.x7_c00223{left:506.106667pt;}
.x8_c00223{left:526.853333pt;}
.x9_c00223{left:542.213333pt;}
.x16_c00223{left:565.253333pt;}
.xa_c00223{left:579.066667pt;}
.x17_c00223{left:591.360000pt;}
.x18_c00223{left:611.333333pt;}
.x19_c00223{left:646.653333pt;}
.x1a_c00223{left:663.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1df08bddbf85ecb209f3a26.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.109863;font-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_c00224{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);}
.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;}
.fs0_c00224{font-size:600.000000px;}
.y0_c00224{bottom:0.000000px;}
.y1_c00224{bottom:15.000000px;}
.h2_c00224{height:539.941406px;}
.h0_c00224{height:1523.235000px;}
.h1_c00224{height:1523.250000px;}
.w0_c00224{width:1100.730000px;}
.w1_c00224{width:1101.000000px;}
.x0_c00224{left:0.000000px;}
.x1_c00224{left:15.000000px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls0_c00224{letter-spacing:0.000000pt;}
.ws0_c00224{word-spacing:0.000000pt;}
.fs0_c00224{font-size:533.333333pt;}
.y0_c00224{bottom:0.000000pt;}
.y1_c00224{bottom:13.333333pt;}
.h2_c00224{height:479.947917pt;}
.h0_c00224{height:1353.986667pt;}
.h1_c00224{height:1354.000000pt;}
.w0_c00224{width:978.426667pt;}
.w1_c00224{width:978.666667pt;}
.x0_c00224{left:0.000000pt;}
.x1_c00224{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5b789464eca9838794d664d.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.109863;font-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_c00225{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c00225{transform:matrix(0.028875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028875,0.000000,0.000000,0.250000,0,0);}
.m2_c00225{transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);}
.m0_c00225{transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);}
.mf_c00225{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.md_c00225{transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);}
.mc_c00225{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m10_c00225{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00225{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m5_c00225{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);}
.m8_c00225{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);}
.m13_c00225{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1_c00225{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);}
.mb_c00225{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00225{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00225{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);}
.m12_c00225{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);}
.m14_c00225{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4_c00225{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c00225{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c00225{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,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;}
.fsc_c00225{font-size:3.456000px;}
.fsa_c00225{font-size:6.000000px;}
.fs6_c00225{font-size:17.280000px;}
.fse_c00225{font-size:20.760000px;}
.fs4_c00225{font-size:27.660000px;}
.fs1_c00225{font-size:31.080000px;}
.fs3_c00225{font-size:34.560000px;}
.fsd_c00225{font-size:38.040000px;}
.fsb_c00225{font-size:41.460000px;}
.fs0_c00225{font-size:65.640000px;}
.fs8_c00225{font-size:69.120000px;}
.fs9_c00225{font-size:76.020000px;}
.fs5_c00225{font-size:96.780000px;}
.fs2_c00225{font-size:117.480000px;}
.fs7_c00225{font-size:210.840000px;}
.y0_c00225{bottom:0.000000px;}
.y16_c00225{bottom:232.410000px;}
.y15_c00225{bottom:255.750000px;}
.y14_c00225{bottom:263.520000px;}
.y11_c00225{bottom:266.115000px;}
.y13_c00225{bottom:267.840000px;}
.y12_c00225{bottom:276.480000px;}
.yf_c00225{bottom:284.250000px;}
.y10_c00225{bottom:285.120000px;}
.ye_c00225{bottom:304.995000px;}
.yd_c00225{bottom:332.640000px;}
.yc_c00225{bottom:348.195000px;}
.yb_c00225{bottom:351.645000px;}
.ya_c00225{bottom:352.515000px;}
.y9_c00225{bottom:372.390000px;}
.y8_c00225{bottom:387.930000px;}
.y6_c00225{bottom:441.510000px;}
.y7_c00225{bottom:444.090000px;}
.y5_c00225{bottom:468.285000px;}
.y3_c00225{bottom:483.840000px;}
.y4_c00225{bottom:489.885000px;}
.y2_c00225{bottom:559.875000px;}
.y1_c00225{bottom:567.645000px;}
.he_c00225{height:3.110063px;}
.hc_c00225{height:5.399414px;}
.h8_c00225{height:15.550313px;}
.h10_c00225{height:18.681973px;}
.h6_c00225{height:24.891299px;}
.h3_c00225{height:27.968965px;}
.h5_c00225{height:31.100625px;}
.hf_c00225{height:34.232285px;}
.hd_c00225{height:37.309951px;}
.h2_c00225{height:59.069590px;}
.ha_c00225{height:62.201250px;}
.hb_c00225{height:68.410576px;}
.h7_c00225{height:87.092549px;}
.h4_c00225{height:105.720527px;}
.h9_c00225{height:189.735410px;}
.h0_c00225{height:1509.405000px;}
.h1_c00225{height:1509.750000px;}
.w0_c00225{width:1105.920000px;}
.w1_c00225{width:1106.250000px;}
.x0_c00225{left:0.000000px;}
.x5_c00225{left:8.640000px;}
.x4_c00225{left:13.830000px;}
.x3_c00225{left:18.150000px;}
.x6_c00225{left:25.920000px;}
.x1_c00225{left:51.840000px;}
.x2_c00225{left:69.990000px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls0_c00225{letter-spacing:0.000000pt;}
.ws0_c00225{word-spacing:0.000000pt;}
.fsc_c00225{font-size:3.072000pt;}
.fsa_c00225{font-size:5.333333pt;}
.fs6_c00225{font-size:15.360000pt;}
.fse_c00225{font-size:18.453333pt;}
.fs4_c00225{font-size:24.586667pt;}
.fs1_c00225{font-size:27.626667pt;}
.fs3_c00225{font-size:30.720000pt;}
.fsd_c00225{font-size:33.813333pt;}
.fsb_c00225{font-size:36.853333pt;}
.fs0_c00225{font-size:58.346667pt;}
.fs8_c00225{font-size:61.440000pt;}
.fs9_c00225{font-size:67.573333pt;}
.fs5_c00225{font-size:86.026667pt;}
.fs2_c00225{font-size:104.426667pt;}
.fs7_c00225{font-size:187.413333pt;}
.y0_c00225{bottom:0.000000pt;}
.y16_c00225{bottom:206.586667pt;}
.y15_c00225{bottom:227.333333pt;}
.y14_c00225{bottom:234.240000pt;}
.y11_c00225{bottom:236.546667pt;}
.y13_c00225{bottom:238.080000pt;}
.y12_c00225{bottom:245.760000pt;}
.yf_c00225{bottom:252.666667pt;}
.y10_c00225{bottom:253.440000pt;}
.ye_c00225{bottom:271.106667pt;}
.yd_c00225{bottom:295.680000pt;}
.yc_c00225{bottom:309.506667pt;}
.yb_c00225{bottom:312.573333pt;}
.ya_c00225{bottom:313.346667pt;}
.y9_c00225{bottom:331.013333pt;}
.y8_c00225{bottom:344.826667pt;}
.y6_c00225{bottom:392.453333pt;}
.y7_c00225{bottom:394.746667pt;}
.y5_c00225{bottom:416.253333pt;}
.y3_c00225{bottom:430.080000pt;}
.y4_c00225{bottom:435.453333pt;}
.y2_c00225{bottom:497.666667pt;}
.y1_c00225{bottom:504.573333pt;}
.he_c00225{height:2.764500pt;}
.hc_c00225{height:4.799479pt;}
.h8_c00225{height:13.822500pt;}
.h10_c00225{height:16.606198pt;}
.h6_c00225{height:22.125599pt;}
.h3_c00225{height:24.861302pt;}
.h5_c00225{height:27.645000pt;}
.hf_c00225{height:30.428698pt;}
.hd_c00225{height:33.164401pt;}
.h2_c00225{height:52.506302pt;}
.ha_c00225{height:55.290000pt;}
.hb_c00225{height:60.809401pt;}
.h7_c00225{height:77.415599pt;}
.h4_c00225{height:93.973802pt;}
.h9_c00225{height:168.653698pt;}
.h0_c00225{height:1341.693333pt;}
.h1_c00225{height:1342.000000pt;}
.w0_c00225{width:983.040000pt;}
.w1_c00225{width:983.333333pt;}
.x0_c00225{left:0.000000pt;}
.x5_c00225{left:7.680000pt;}
.x4_c00225{left:12.293333pt;}
.x3_c00225{left:16.133333pt;}
.x6_c00225{left:23.040000pt;}
.x1_c00225{left:46.080000pt;}
.x2_c00225{left:62.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5ae3a23742b628c78c5703e8.woff2')format("woff");}.ff1_c00226{font-family:ff1_c00226;line-height:1.109863;font-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.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);}
.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;}
.fs0_c00226{font-size:600.000000px;}
.y0_c00226{bottom:0.000000px;}
.y1_c00226{bottom:15.000000px;}
.h2_c00226{height:539.941406px;}
.h0_c00226{height:1523.235000px;}
.h1_c00226{height:1523.250000px;}
.w0_c00226{width:1100.730000px;}
.w1_c00226{width:1101.000000px;}
.x0_c00226{left:0.000000px;}
.x1_c00226{left:15.000000px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls0_c00226{letter-spacing:0.000000pt;}
.ws0_c00226{word-spacing:0.000000pt;}
.fs0_c00226{font-size:533.333333pt;}
.y0_c00226{bottom:0.000000pt;}
.y1_c00226{bottom:13.333333pt;}
.h2_c00226{height:479.947917pt;}
.h0_c00226{height:1353.986667pt;}
.h1_c00226{height:1354.000000pt;}
.w0_c00226{width:978.426667pt;}
.w1_c00226{width:978.666667pt;}
.x0_c00226{left:0.000000pt;}
.x1_c00226{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85ce80ffe8d1af005163859d.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.109863;font-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_c00227{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);}
.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;}
.fs0_c00227{font-size:600.000000px;}
.y0_c00227{bottom:0.000000px;}
.y1_c00227{bottom:15.000000px;}
.h2_c00227{height:539.941406px;}
.h0_c00227{height:1509.405000px;}
.h1_c00227{height:1509.750000px;}
.w0_c00227{width:1105.920000px;}
.w1_c00227{width:1106.250000px;}
.x0_c00227{left:0.000000px;}
.x1_c00227{left:15.000000px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ws0_c00227{word-spacing:0.000000pt;}
.fs0_c00227{font-size:533.333333pt;}
.y0_c00227{bottom:0.000000pt;}
.y1_c00227{bottom:13.333333pt;}
.h2_c00227{height:479.947917pt;}
.h0_c00227{height:1341.693333pt;}
.h1_c00227{height:1342.000000pt;}
.w0_c00227{width:983.040000pt;}
.w1_c00227{width:983.333333pt;}
.x0_c00227{left:0.000000pt;}
.x1_c00227{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c01f64e1b3967af4e121e02a.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.109863;font-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_c00228{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);}
.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:600.000000px;}
.y0_c00228{bottom:0.000000px;}
.y1_c00228{bottom:15.000000px;}
.h2_c00228{height:539.941406px;}
.h0_c00228{height:1523.235000px;}
.h1_c00228{height:1523.250000px;}
.w0_c00228{width:1100.730000px;}
.w1_c00228{width:1101.000000px;}
.x0_c00228{left:0.000000px;}
.x1_c00228{left:15.000000px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls0_c00228{letter-spacing:0.000000pt;}
.ws0_c00228{word-spacing:0.000000pt;}
.fs0_c00228{font-size:533.333333pt;}
.y0_c00228{bottom:0.000000pt;}
.y1_c00228{bottom:13.333333pt;}
.h2_c00228{height:479.947917pt;}
.h0_c00228{height:1353.986667pt;}
.h1_c00228{height:1354.000000pt;}
.w0_c00228{width:978.426667pt;}
.w1_c00228{width:978.666667pt;}
.x0_c00228{left:0.000000pt;}
.x1_c00228{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28cc954a8deda52919bb941f.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.109863;font-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_c00229{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);}
.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;}
.fs0_c00229{font-size:600.000000px;}
.y0_c00229{bottom:0.000000px;}
.y1_c00229{bottom:15.000000px;}
.h2_c00229{height:539.941406px;}
.h0_c00229{height:1509.405000px;}
.h1_c00229{height:1509.750000px;}
.w0_c00229{width:1105.920000px;}
.w1_c00229{width:1106.250000px;}
.x0_c00229{left:0.000000px;}
.x1_c00229{left:15.000000px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls0_c00229{letter-spacing:0.000000pt;}
.ws0_c00229{word-spacing:0.000000pt;}
.fs0_c00229{font-size:533.333333pt;}
.y0_c00229{bottom:0.000000pt;}
.y1_c00229{bottom:13.333333pt;}
.h2_c00229{height:479.947917pt;}
.h0_c00229{height:1341.693333pt;}
.h1_c00229{height:1342.000000pt;}
.w0_c00229{width:983.040000pt;}
.w1_c00229{width:983.333333pt;}
.x0_c00229{left:0.000000pt;}
.x1_c00229{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3624abc94f5264891a96ba35.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.109863;font-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_c00230{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00230{transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);}
.m5d_c00230{transform:matrix(0.063225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063225,0.000000,0.000000,0.250000,0,0);}
.m6c_c00230{transform:matrix(0.080375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080375,0.000000,0.000000,0.250000,0,0);}
.m6a_c00230{transform:matrix(0.099525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099525,0.000000,0.000000,0.250000,0,0);}
.m5c_c00230{transform:matrix(0.109950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109950,0.000000,0.000000,0.250000,0,0);}
.m37_c00230{transform:matrix(0.110125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110125,0.000000,0.000000,0.250000,0,0);}
.m65_c00230{transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);}
.m29_c00230{transform:matrix(0.115800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115800,0.000000,0.000000,0.250000,0,0);}
.m21_c00230{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);}
.m64_c00230{transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);}
.m66_c00230{transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);}
.m20_c00230{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);}
.m39_c00230{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);}
.m27_c00230{transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);}
.m31_c00230{transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);}
.m5a_c00230{transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);}
.m3f_c00230{transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);}
.m40_c00230{transform:matrix(0.138275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138275,0.000000,0.000000,0.250000,0,0);}
.m2b_c00230{transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);}
.m22_c00230{transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);}
.me_c00230{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m28_c00230{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);}
.m3d_c00230{transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);}
.m50_c00230{transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);}
.m3e_c00230{transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);}
.m1f_c00230{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);}
.m30_c00230{transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);}
.m68_c00230{transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);}
.m52_c00230{transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);}
.m33_c00230{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m3c_c00230{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m61_c00230{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m16_c00230{transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);}
.m32_c00230{transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168300,0.000000,0.000000,0.250000,0,0);}
.m25_c00230{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.m60_c00230{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.m58_c00230{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.m1d_c00230{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.m36_c00230{transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);}
.m15_c00230{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m3b_c00230{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);}
.m1c_c00230{transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);}
.m54_c00230{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);}
.m14_c00230{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m26_c00230{transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);}
.m43_c00230{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);}
.m63_c00230{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);}
.m23_c00230{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);}
.m4c_c00230{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);}
.m35_c00230{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.m67_c00230{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m5b_c00230{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m42_c00230{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m34_c00230{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m2d_c00230{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00230{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m53_c00230{transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);}
.md_c00230{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);}
.m19_c00230{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);}
.m57_c00230{transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00230{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);}
.m6b_c00230{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);}
.m5e_c00230{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);}
.m41_c00230{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00230{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00230{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00230{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);}
.mc_c00230{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);}
.ma_c00230{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c00230{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00230{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);}
.m55_c00230{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);}
.m48_c00230{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m45_c00230{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);}
.m12_c00230{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00230{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);}
.m11_c00230{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00230{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c00230{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c00230{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m62_c00230{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m18_c00230{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);}
.m4_c00230{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m47_c00230{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m1_c00230{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00230{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);}
.m17_c00230{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m7_c00230{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);}
.m2c_c00230{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c00230{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00230{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m46_c00230{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m10_c00230{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00230{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00230{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5_c00230{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);}
.m59_c00230{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);}
.m6_c00230{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00230{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m49_c00230{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m56_c00230{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m8_c00230{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m38_c00230{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00230{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m9_c00230{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m44_c00230{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m69_c00230{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m51_c00230{transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735000,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;}
.fs7_c00230{font-size:3.456000px;}
.fs1e_c00230{font-size:6.000000px;}
.fs4_c00230{font-size:6.900000px;}
.fs5_c00230{font-size:10.380000px;}
.fs22_c00230{font-size:13.800000px;}
.fs1d_c00230{font-size:17.280000px;}
.fs23_c00230{font-size:27.660000px;}
.fs6_c00230{font-size:31.080000px;}
.fs20_c00230{font-size:34.560000px;}
.fsd_c00230{font-size:38.040000px;}
.fs25_c00230{font-size:41.460000px;}
.fs19_c00230{font-size:44.940000px;}
.fs1f_c00230{font-size:48.360000px;}
.fs24_c00230{font-size:51.840000px;}
.fs3_c00230{font-size:55.320000px;}
.fs1_c00230{font-size:58.740000px;}
.fs21_c00230{font-size:62.220000px;}
.fs0_c00230{font-size:65.640000px;}
.fs2_c00230{font-size:69.120000px;}
.fsb_c00230{font-size:72.600000px;}
.fs1a_c00230{font-size:76.020000px;}
.fs14_c00230{font-size:79.500000px;}
.fs1c_c00230{font-size:82.920000px;}
.fsc_c00230{font-size:86.400000px;}
.fs18_c00230{font-size:89.880000px;}
.fs17_c00230{font-size:93.300000px;}
.fse_c00230{font-size:96.780000px;}
.fs8_c00230{font-size:103.680000px;}
.fs9_c00230{font-size:107.160000px;}
.fs1b_c00230{font-size:110.580000px;}
.fsa_c00230{font-size:114.060000px;}
.fs12_c00230{font-size:117.480000px;}
.fs15_c00230{font-size:120.960000px;}
.fs16_c00230{font-size:124.440000px;}
.fs11_c00230{font-size:127.860000px;}
.fsf_c00230{font-size:131.340000px;}
.fs13_c00230{font-size:134.760000px;}
.fs10_c00230{font-size:138.240000px;}
.y0_c00230{bottom:0.000000px;}
.y5_c00230{bottom:457.050000px;}
.y3_c00230{bottom:468.285000px;}
.y4_c00230{bottom:472.605000px;}
.y2_c00230{bottom:476.070000px;}
.y1_c00230{bottom:476.925000px;}
.y5a_c00230{bottom:517.530000px;}
.y5b_c00230{bottom:518.400000px;}
.y5d_c00230{bottom:519.270000px;}
.y60_c00230{bottom:520.125000px;}
.y5c_c00230{bottom:520.995000px;}
.y61_c00230{bottom:522.720000px;}
.y5f_c00230{bottom:534.810000px;}
.y5e_c00230{bottom:546.045000px;}
.y56_c00230{bottom:552.960000px;}
.y53_c00230{bottom:554.685000px;}
.y58_c00230{bottom:555.555000px;}
.y59_c00230{bottom:558.150000px;}
.y54_c00230{bottom:559.875000px;}
.y55_c00230{bottom:560.730000px;}
.y57_c00230{bottom:561.600000px;}
.y52_c00230{bottom:583.200000px;}
.y51_c00230{bottom:584.070000px;}
.y4c_c00230{bottom:584.925000px;}
.y4a_c00230{bottom:585.795000px;}
.y4b_c00230{bottom:586.650000px;}
.y48_c00230{bottom:587.520000px;}
.y49_c00230{bottom:588.390000px;}
.y4e_c00230{bottom:589.245000px;}
.y4d_c00230{bottom:590.115000px;}
.y50_c00230{bottom:590.970000px;}
.y4f_c00230{bottom:592.710000px;}
.y3e_c00230{bottom:594.435000px;}
.y3f_c00230{bottom:598.755000px;}
.y43_c00230{bottom:601.350000px;}
.y3c_c00230{bottom:603.930000px;}
.y45_c00230{bottom:604.800000px;}
.y47_c00230{bottom:606.525000px;}
.y42_c00230{bottom:607.395000px;}
.y3b_c00230{bottom:608.250000px;}
.y41_c00230{bottom:609.120000px;}
.y44_c00230{bottom:611.715000px;}
.y40_c00230{bottom:614.310000px;}
.y3d_c00230{bottom:615.165000px;}
.y46_c00230{bottom:616.035000px;}
.y33_c00230{bottom:616.890000px;}
.y36_c00230{bottom:618.630000px;}
.y37_c00230{bottom:620.355000px;}
.y34_c00230{bottom:621.210000px;}
.y3a_c00230{bottom:622.080000px;}
.y32_c00230{bottom:622.950000px;}
.y35_c00230{bottom:623.805000px;}
.y38_c00230{bottom:625.530000px;}
.y39_c00230{bottom:626.400000px;}
.y2f_c00230{bottom:649.725000px;}
.y31_c00230{bottom:650.595000px;}
.y2d_c00230{bottom:651.450000px;}
.y2c_c00230{bottom:652.320000px;}
.y2b_c00230{bottom:653.190000px;}
.y2e_c00230{bottom:654.045000px;}
.y30_c00230{bottom:665.280000px;}
.y29_c00230{bottom:681.690000px;}
.y28_c00230{bottom:683.430000px;}
.y25_c00230{bottom:684.285000px;}
.y2a_c00230{bottom:686.880000px;}
.y27_c00230{bottom:687.750000px;}
.y26_c00230{bottom:688.605000px;}
.y24_c00230{bottom:690.330000px;}
.y1f_c00230{bottom:711.930000px;}
.y21_c00230{bottom:712.800000px;}
.y23_c00230{bottom:713.670000px;}
.y20_c00230{bottom:716.250000px;}
.y22_c00230{bottom:719.715000px;}
.y1e_c00230{bottom:722.310000px;}
.y1a_c00230{bottom:742.170000px;}
.y18_c00230{bottom:743.040000px;}
.y1c_c00230{bottom:743.910000px;}
.y1b_c00230{bottom:744.765000px;}
.y19_c00230{bottom:745.635000px;}
.y1d_c00230{bottom:747.360000px;}
.y17_c00230{bottom:751.680000px;}
.y15_c00230{bottom:775.875000px;}
.y11_c00230{bottom:776.730000px;}
.y14_c00230{bottom:780.195000px;}
.y12_c00230{bottom:782.790000px;}
.y16_c00230{bottom:783.645000px;}
.y13_c00230{bottom:806.115000px;}
.yb_c00230{bottom:807.840000px;}
.yf_c00230{bottom:808.710000px;}
.ye_c00230{bottom:809.565000px;}
.yc_c00230{bottom:817.350000px;}
.ya_c00230{bottom:819.930000px;}
.yd_c00230{bottom:837.210000px;}
.y10_c00230{bottom:841.530000px;}
.y9_c00230{bottom:848.445000px;}
.y8_c00230{bottom:873.510000px;}
.y7_c00230{bottom:903.750000px;}
.y6_c00230{bottom:904.605000px;}
.h9_c00230{height:3.110063px;}
.h20_c00230{height:5.399414px;}
.h6_c00230{height:6.209326px;}
.h7_c00230{height:9.340986px;}
.h24_c00230{height:12.418652px;}
.h1f_c00230{height:15.550313px;}
.h25_c00230{height:24.891299px;}
.h8_c00230{height:27.968965px;}
.h22_c00230{height:31.100625px;}
.hf_c00230{height:34.232285px;}
.h27_c00230{height:37.309951px;}
.h1b_c00230{height:40.441611px;}
.h21_c00230{height:43.519277px;}
.h26_c00230{height:46.650937px;}
.h5_c00230{height:49.782598px;}
.h3_c00230{height:52.860264px;}
.h23_c00230{height:55.991924px;}
.h2_c00230{height:59.069590px;}
.h4_c00230{height:62.201250px;}
.hd_c00230{height:65.332910px;}
.h1c_c00230{height:68.410576px;}
.h16_c00230{height:71.542236px;}
.h1e_c00230{height:74.619902px;}
.he_c00230{height:77.751563px;}
.h1a_c00230{height:80.883223px;}
.h19_c00230{height:83.960889px;}
.h10_c00230{height:87.092549px;}
.ha_c00230{height:93.301875px;}
.hb_c00230{height:96.433535px;}
.h1d_c00230{height:99.511201px;}
.hc_c00230{height:102.642861px;}
.h14_c00230{height:105.720527px;}
.h17_c00230{height:108.852188px;}
.h18_c00230{height:111.983848px;}
.h13_c00230{height:115.061514px;}
.h11_c00230{height:118.193174px;}
.h15_c00230{height:121.270840px;}
.h12_c00230{height:124.402500px;}
.h0_c00230{height:1523.235000px;}
.h1_c00230{height:1523.250000px;}
.w0_c00230{width:1100.730000px;}
.w1_c00230{width:1101.000000px;}
.x0_c00230{left:0.000000px;}
.xf_c00230{left:246.240000px;}
.x4c_c00230{left:249.690000px;}
.x3f_c00230{left:252.285000px;}
.x10_c00230{left:256.605000px;}
.x1a_c00230{left:259.200000px;}
.x28_c00230{left:266.970000px;}
.x1f_c00230{left:268.710000px;}
.x39_c00230{left:272.160000px;}
.x4d_c00230{left:273.885000px;}
.x20_c00230{left:277.350000px;}
.x2e_c00230{left:279.930000px;}
.x57_c00230{left:281.670000px;}
.x40_c00230{left:284.250000px;}
.x6_c00230{left:292.035000px;}
.x7_c00230{left:300.675000px;}
.x1_c00230{left:302.400000px;}
.x29_c00230{left:306.720000px;}
.x4e_c00230{left:311.910000px;}
.x34_c00230{left:317.085000px;}
.x4f_c00230{left:328.320000px;}
.x5d_c00230{left:330.915000px;}
.x11_c00230{left:333.510000px;}
.x58_c00230{left:345.600000px;}
.x2_c00230{left:358.560000px;}
.x35_c00230{left:362.010000px;}
.x3a_c00230{left:365.475000px;}
.x8_c00230{left:368.070000px;}
.x2f_c00230{left:369.795000px;}
.x12_c00230{left:386.205000px;}
.x3_c00230{left:397.440000px;}
.xa_c00230{left:402.630000px;}
.x9_c00230{left:406.950000px;}
.x4_c00230{left:415.590000px;}
.x13_c00230{left:420.765000px;}
.x5e_c00230{left:424.230000px;}
.x5_c00230{left:430.275000px;}
.x21_c00230{left:432.870000px;}
.x36_c00230{left:446.685000px;}
.x30_c00230{left:470.880000px;}
.x50_c00230{left:472.605000px;}
.x2a_c00230{left:482.115000px;}
.x51_c00230{left:489.885000px;}
.x41_c00230{left:493.350000px;}
.x52_c00230{left:559.005000px;}
.x1b_c00230{left:561.600000px;}
.x14_c00230{left:563.325000px;}
.x5f_c00230{left:571.965000px;}
.x15_c00230{left:581.475000px;}
.xe_c00230{left:583.200000px;}
.xd_c00230{left:588.390000px;}
.x22_c00230{left:592.710000px;}
.x2b_c00230{left:594.435000px;}
.x31_c00230{left:596.160000px;}
.x1c_c00230{left:597.885000px;}
.x53_c00230{left:628.125000px;}
.x16_c00230{left:629.850000px;}
.x59_c00230{left:633.315000px;}
.x23_c00230{left:635.040000px;}
.x5a_c00230{left:638.490000px;}
.x42_c00230{left:647.130000px;}
.x54_c00230{left:648.870000px;}
.xb_c00230{left:659.235000px;}
.x37_c00230{left:668.730000px;}
.x60_c00230{left:678.240000px;}
.x43_c00230{left:679.965000px;}
.x2c_c00230{left:684.285000px;}
.x61_c00230{left:686.880000px;}
.x44_c00230{left:689.475000px;}
.x3b_c00230{left:704.160000px;}
.x45_c00230{left:713.670000px;}
.xc_c00230{left:720.570000px;}
.x24_c00230{left:727.485000px;}
.x5b_c00230{left:729.210000px;}
.x2d_c00230{left:745.635000px;}
.x25_c00230{left:752.550000px;}
.x46_c00230{left:756.000000px;}
.x55_c00230{left:757.725000px;}
.x47_c00230{left:768.090000px;}
.x32_c00230{left:771.555000px;}
.x3c_c00230{left:775.005000px;}
.x48_c00230{left:779.325000px;}
.x1d_c00230{left:792.285000px;}
.x49_c00230{left:803.520000px;}
.x5c_c00230{left:806.115000px;}
.x17_c00230{left:818.205000px;}
.x18_c00230{left:825.990000px;}
.x26_c00230{left:828.570000px;}
.x38_c00230{left:832.035000px;}
.x3d_c00230{left:838.080000px;}
.x4a_c00230{left:840.675000px;}
.x19_c00230{left:851.040000px;}
.x56_c00230{left:853.635000px;}
.x3e_c00230{left:856.230000px;}
.x4b_c00230{left:859.680000px;}
.x1e_c00230{left:862.275000px;}
.x33_c00230{left:876.090000px;}
.x27_c00230{left:904.605000px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls0_c00230{letter-spacing:0.000000pt;}
.ws0_c00230{word-spacing:0.000000pt;}
.fs7_c00230{font-size:3.072000pt;}
.fs1e_c00230{font-size:5.333333pt;}
.fs4_c00230{font-size:6.133333pt;}
.fs5_c00230{font-size:9.226667pt;}
.fs22_c00230{font-size:12.266667pt;}
.fs1d_c00230{font-size:15.360000pt;}
.fs23_c00230{font-size:24.586667pt;}
.fs6_c00230{font-size:27.626667pt;}
.fs20_c00230{font-size:30.720000pt;}
.fsd_c00230{font-size:33.813333pt;}
.fs25_c00230{font-size:36.853333pt;}
.fs19_c00230{font-size:39.946667pt;}
.fs1f_c00230{font-size:42.986667pt;}
.fs24_c00230{font-size:46.080000pt;}
.fs3_c00230{font-size:49.173333pt;}
.fs1_c00230{font-size:52.213333pt;}
.fs21_c00230{font-size:55.306667pt;}
.fs0_c00230{font-size:58.346667pt;}
.fs2_c00230{font-size:61.440000pt;}
.fsb_c00230{font-size:64.533333pt;}
.fs1a_c00230{font-size:67.573333pt;}
.fs14_c00230{font-size:70.666667pt;}
.fs1c_c00230{font-size:73.706667pt;}
.fsc_c00230{font-size:76.800000pt;}
.fs18_c00230{font-size:79.893333pt;}
.fs17_c00230{font-size:82.933333pt;}
.fse_c00230{font-size:86.026667pt;}
.fs8_c00230{font-size:92.160000pt;}
.fs9_c00230{font-size:95.253333pt;}
.fs1b_c00230{font-size:98.293333pt;}
.fsa_c00230{font-size:101.386667pt;}
.fs12_c00230{font-size:104.426667pt;}
.fs15_c00230{font-size:107.520000pt;}
.fs16_c00230{font-size:110.613333pt;}
.fs11_c00230{font-size:113.653333pt;}
.fsf_c00230{font-size:116.746667pt;}
.fs13_c00230{font-size:119.786667pt;}
.fs10_c00230{font-size:122.880000pt;}
.y0_c00230{bottom:0.000000pt;}
.y5_c00230{bottom:406.266667pt;}
.y3_c00230{bottom:416.253333pt;}
.y4_c00230{bottom:420.093333pt;}
.y2_c00230{bottom:423.173333pt;}
.y1_c00230{bottom:423.933333pt;}
.y5a_c00230{bottom:460.026667pt;}
.y5b_c00230{bottom:460.800000pt;}
.y5d_c00230{bottom:461.573333pt;}
.y60_c00230{bottom:462.333333pt;}
.y5c_c00230{bottom:463.106667pt;}
.y61_c00230{bottom:464.640000pt;}
.y5f_c00230{bottom:475.386667pt;}
.y5e_c00230{bottom:485.373333pt;}
.y56_c00230{bottom:491.520000pt;}
.y53_c00230{bottom:493.053333pt;}
.y58_c00230{bottom:493.826667pt;}
.y59_c00230{bottom:496.133333pt;}
.y54_c00230{bottom:497.666667pt;}
.y55_c00230{bottom:498.426667pt;}
.y57_c00230{bottom:499.200000pt;}
.y52_c00230{bottom:518.400000pt;}
.y51_c00230{bottom:519.173333pt;}
.y4c_c00230{bottom:519.933333pt;}
.y4a_c00230{bottom:520.706667pt;}
.y4b_c00230{bottom:521.466667pt;}
.y48_c00230{bottom:522.240000pt;}
.y49_c00230{bottom:523.013333pt;}
.y4e_c00230{bottom:523.773333pt;}
.y4d_c00230{bottom:524.546667pt;}
.y50_c00230{bottom:525.306667pt;}
.y4f_c00230{bottom:526.853333pt;}
.y3e_c00230{bottom:528.386667pt;}
.y3f_c00230{bottom:532.226667pt;}
.y43_c00230{bottom:534.533333pt;}
.y3c_c00230{bottom:536.826667pt;}
.y45_c00230{bottom:537.600000pt;}
.y47_c00230{bottom:539.133333pt;}
.y42_c00230{bottom:539.906667pt;}
.y3b_c00230{bottom:540.666667pt;}
.y41_c00230{bottom:541.440000pt;}
.y44_c00230{bottom:543.746667pt;}
.y40_c00230{bottom:546.053333pt;}
.y3d_c00230{bottom:546.813333pt;}
.y46_c00230{bottom:547.586667pt;}
.y33_c00230{bottom:548.346667pt;}
.y36_c00230{bottom:549.893333pt;}
.y37_c00230{bottom:551.426667pt;}
.y34_c00230{bottom:552.186667pt;}
.y3a_c00230{bottom:552.960000pt;}
.y32_c00230{bottom:553.733333pt;}
.y35_c00230{bottom:554.493333pt;}
.y38_c00230{bottom:556.026667pt;}
.y39_c00230{bottom:556.800000pt;}
.y2f_c00230{bottom:577.533333pt;}
.y31_c00230{bottom:578.306667pt;}
.y2d_c00230{bottom:579.066667pt;}
.y2c_c00230{bottom:579.840000pt;}
.y2b_c00230{bottom:580.613333pt;}
.y2e_c00230{bottom:581.373333pt;}
.y30_c00230{bottom:591.360000pt;}
.y29_c00230{bottom:605.946667pt;}
.y28_c00230{bottom:607.493333pt;}
.y25_c00230{bottom:608.253333pt;}
.y2a_c00230{bottom:610.560000pt;}
.y27_c00230{bottom:611.333333pt;}
.y26_c00230{bottom:612.093333pt;}
.y24_c00230{bottom:613.626667pt;}
.y1f_c00230{bottom:632.826667pt;}
.y21_c00230{bottom:633.600000pt;}
.y23_c00230{bottom:634.373333pt;}
.y20_c00230{bottom:636.666667pt;}
.y22_c00230{bottom:639.746667pt;}
.y1e_c00230{bottom:642.053333pt;}
.y1a_c00230{bottom:659.706667pt;}
.y18_c00230{bottom:660.480000pt;}
.y1c_c00230{bottom:661.253333pt;}
.y1b_c00230{bottom:662.013333pt;}
.y19_c00230{bottom:662.786667pt;}
.y1d_c00230{bottom:664.320000pt;}
.y17_c00230{bottom:668.160000pt;}
.y15_c00230{bottom:689.666667pt;}
.y11_c00230{bottom:690.426667pt;}
.y14_c00230{bottom:693.506667pt;}
.y12_c00230{bottom:695.813333pt;}
.y16_c00230{bottom:696.573333pt;}
.y13_c00230{bottom:716.546667pt;}
.yb_c00230{bottom:718.080000pt;}
.yf_c00230{bottom:718.853333pt;}
.ye_c00230{bottom:719.613333pt;}
.yc_c00230{bottom:726.533333pt;}
.ya_c00230{bottom:728.826667pt;}
.yd_c00230{bottom:744.186667pt;}
.y10_c00230{bottom:748.026667pt;}
.y9_c00230{bottom:754.173333pt;}
.y8_c00230{bottom:776.453333pt;}
.y7_c00230{bottom:803.333333pt;}
.y6_c00230{bottom:804.093333pt;}
.h9_c00230{height:2.764500pt;}
.h20_c00230{height:4.799479pt;}
.h6_c00230{height:5.519401pt;}
.h7_c00230{height:8.303099pt;}
.h24_c00230{height:11.038802pt;}
.h1f_c00230{height:13.822500pt;}
.h25_c00230{height:22.125599pt;}
.h8_c00230{height:24.861302pt;}
.h22_c00230{height:27.645000pt;}
.hf_c00230{height:30.428698pt;}
.h27_c00230{height:33.164401pt;}
.h1b_c00230{height:35.948099pt;}
.h21_c00230{height:38.683802pt;}
.h26_c00230{height:41.467500pt;}
.h5_c00230{height:44.251198pt;}
.h3_c00230{height:46.986901pt;}
.h23_c00230{height:49.770599pt;}
.h2_c00230{height:52.506302pt;}
.h4_c00230{height:55.290000pt;}
.hd_c00230{height:58.073698pt;}
.h1c_c00230{height:60.809401pt;}
.h16_c00230{height:63.593099pt;}
.h1e_c00230{height:66.328802pt;}
.he_c00230{height:69.112500pt;}
.h1a_c00230{height:71.896198pt;}
.h19_c00230{height:74.631901pt;}
.h10_c00230{height:77.415599pt;}
.ha_c00230{height:82.935000pt;}
.hb_c00230{height:85.718698pt;}
.h1d_c00230{height:88.454401pt;}
.hc_c00230{height:91.238099pt;}
.h14_c00230{height:93.973802pt;}
.h17_c00230{height:96.757500pt;}
.h18_c00230{height:99.541198pt;}
.h13_c00230{height:102.276901pt;}
.h11_c00230{height:105.060599pt;}
.h15_c00230{height:107.796302pt;}
.h12_c00230{height:110.580000pt;}
.h0_c00230{height:1353.986667pt;}
.h1_c00230{height:1354.000000pt;}
.w0_c00230{width:978.426667pt;}
.w1_c00230{width:978.666667pt;}
.x0_c00230{left:0.000000pt;}
.xf_c00230{left:218.880000pt;}
.x4c_c00230{left:221.946667pt;}
.x3f_c00230{left:224.253333pt;}
.x10_c00230{left:228.093333pt;}
.x1a_c00230{left:230.400000pt;}
.x28_c00230{left:237.306667pt;}
.x1f_c00230{left:238.853333pt;}
.x39_c00230{left:241.920000pt;}
.x4d_c00230{left:243.453333pt;}
.x20_c00230{left:246.533333pt;}
.x2e_c00230{left:248.826667pt;}
.x57_c00230{left:250.373333pt;}
.x40_c00230{left:252.666667pt;}
.x6_c00230{left:259.586667pt;}
.x7_c00230{left:267.266667pt;}
.x1_c00230{left:268.800000pt;}
.x29_c00230{left:272.640000pt;}
.x4e_c00230{left:277.253333pt;}
.x34_c00230{left:281.853333pt;}
.x4f_c00230{left:291.840000pt;}
.x5d_c00230{left:294.146667pt;}
.x11_c00230{left:296.453333pt;}
.x58_c00230{left:307.200000pt;}
.x2_c00230{left:318.720000pt;}
.x35_c00230{left:321.786667pt;}
.x3a_c00230{left:324.866667pt;}
.x8_c00230{left:327.173333pt;}
.x2f_c00230{left:328.706667pt;}
.x12_c00230{left:343.293333pt;}
.x3_c00230{left:353.280000pt;}
.xa_c00230{left:357.893333pt;}
.x9_c00230{left:361.733333pt;}
.x4_c00230{left:369.413333pt;}
.x13_c00230{left:374.013333pt;}
.x5e_c00230{left:377.093333pt;}
.x5_c00230{left:382.466667pt;}
.x21_c00230{left:384.773333pt;}
.x36_c00230{left:397.053333pt;}
.x30_c00230{left:418.560000pt;}
.x50_c00230{left:420.093333pt;}
.x2a_c00230{left:428.546667pt;}
.x51_c00230{left:435.453333pt;}
.x41_c00230{left:438.533333pt;}
.x52_c00230{left:496.893333pt;}
.x1b_c00230{left:499.200000pt;}
.x14_c00230{left:500.733333pt;}
.x5f_c00230{left:508.413333pt;}
.x15_c00230{left:516.866667pt;}
.xe_c00230{left:518.400000pt;}
.xd_c00230{left:523.013333pt;}
.x22_c00230{left:526.853333pt;}
.x2b_c00230{left:528.386667pt;}
.x31_c00230{left:529.920000pt;}
.x1c_c00230{left:531.453333pt;}
.x53_c00230{left:558.333333pt;}
.x16_c00230{left:559.866667pt;}
.x59_c00230{left:562.946667pt;}
.x23_c00230{left:564.480000pt;}
.x5a_c00230{left:567.546667pt;}
.x42_c00230{left:575.226667pt;}
.x54_c00230{left:576.773333pt;}
.xb_c00230{left:585.986667pt;}
.x37_c00230{left:594.426667pt;}
.x60_c00230{left:602.880000pt;}
.x43_c00230{left:604.413333pt;}
.x2c_c00230{left:608.253333pt;}
.x61_c00230{left:610.560000pt;}
.x44_c00230{left:612.866667pt;}
.x3b_c00230{left:625.920000pt;}
.x45_c00230{left:634.373333pt;}
.xc_c00230{left:640.506667pt;}
.x24_c00230{left:646.653333pt;}
.x5b_c00230{left:648.186667pt;}
.x2d_c00230{left:662.786667pt;}
.x25_c00230{left:668.933333pt;}
.x46_c00230{left:672.000000pt;}
.x55_c00230{left:673.533333pt;}
.x47_c00230{left:682.746667pt;}
.x32_c00230{left:685.826667pt;}
.x3c_c00230{left:688.893333pt;}
.x48_c00230{left:692.733333pt;}
.x1d_c00230{left:704.253333pt;}
.x49_c00230{left:714.240000pt;}
.x5c_c00230{left:716.546667pt;}
.x17_c00230{left:727.293333pt;}
.x18_c00230{left:734.213333pt;}
.x26_c00230{left:736.506667pt;}
.x38_c00230{left:739.586667pt;}
.x3d_c00230{left:744.960000pt;}
.x4a_c00230{left:747.266667pt;}
.x19_c00230{left:756.480000pt;}
.x56_c00230{left:758.786667pt;}
.x3e_c00230{left:761.093333pt;}
.x4b_c00230{left:764.160000pt;}
.x1e_c00230{left:766.466667pt;}
.x33_c00230{left:778.746667pt;}
.x27_c00230{left:804.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00231;src:url('chunks/assets/font_1221f73de8db07a64137f335.woff2')format("woff");}.ff1_c00231{font-family:ff1_c00231;line-height:1.109863;font-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_c00231{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);}
.m7_c00231{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c00231{transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);}
.m6_c00231{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m2_c00231{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.m3_c00231{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m9_c00231{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);}
.m4_c00231{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00231{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m1_c00231{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v0_c00231{vertical-align:0.000000px;}
.ls0_c00231{letter-spacing:0.000000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00231{word-spacing:0.000000px;}
.fc0_c00231{color:transparent;}
.fs6_c00231{font-size:3.456000px;}
.fs8_c00231{font-size:13.800000px;}
.fs3_c00231{font-size:20.760000px;}
.fs0_c00231{font-size:24.180000px;}
.fs2_c00231{font-size:31.080000px;}
.fs1_c00231{font-size:38.040000px;}
.fs4_c00231{font-size:58.740000px;}
.fs5_c00231{font-size:69.120000px;}
.fs7_c00231{font-size:107.160000px;}
.y0_c00231{bottom:0.000000px;}
.ya_c00231{bottom:372.390000px;}
.y9_c00231{bottom:376.710000px;}
.y8_c00231{bottom:384.480000px;}
.y7_c00231{bottom:1329.690000px;}
.y6_c00231{bottom:1351.290000px;}
.y4_c00231{bottom:1365.990000px;}
.y5_c00231{bottom:1367.715000px;}
.y3_c00231{bottom:1382.400000px;}
.y2_c00231{bottom:1393.635000px;}
.y1_c00231{bottom:1422.150000px;}
.h8_c00231{height:3.110063px;}
.ha_c00231{height:12.418652px;}
.h5_c00231{height:18.681973px;}
.h2_c00231{height:21.759639px;}
.h4_c00231{height:27.968965px;}
.h3_c00231{height:34.232285px;}
.h6_c00231{height:52.860264px;}
.h7_c00231{height:62.201250px;}
.h9_c00231{height:96.433535px;}
.h0_c00231{height:1509.405000px;}
.h1_c00231{height:1509.750000px;}
.w0_c00231{width:1105.920000px;}
.w1_c00231{width:1106.250000px;}
.x0_c00231{left:0.000000px;}
.x5_c00231{left:2.595000px;}
.x2_c00231{left:5.190000px;}
.x3_c00231{left:18.150000px;}
.x4_c00231{left:25.920000px;}
.x1_c00231{left:981.510000px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws0_c00231{word-spacing:0.000000pt;}
.fs6_c00231{font-size:3.072000pt;}
.fs8_c00231{font-size:12.266667pt;}
.fs3_c00231{font-size:18.453333pt;}
.fs0_c00231{font-size:21.493333pt;}
.fs2_c00231{font-size:27.626667pt;}
.fs1_c00231{font-size:33.813333pt;}
.fs4_c00231{font-size:52.213333pt;}
.fs5_c00231{font-size:61.440000pt;}
.fs7_c00231{font-size:95.253333pt;}
.y0_c00231{bottom:0.000000pt;}
.ya_c00231{bottom:331.013333pt;}
.y9_c00231{bottom:334.853333pt;}
.y8_c00231{bottom:341.760000pt;}
.y7_c00231{bottom:1181.946667pt;}
.y6_c00231{bottom:1201.146667pt;}
.y4_c00231{bottom:1214.213333pt;}
.y5_c00231{bottom:1215.746667pt;}
.y3_c00231{bottom:1228.800000pt;}
.y2_c00231{bottom:1238.786667pt;}
.y1_c00231{bottom:1264.133333pt;}
.h8_c00231{height:2.764500pt;}
.ha_c00231{height:11.038802pt;}
.h5_c00231{height:16.606198pt;}
.h2_c00231{height:19.341901pt;}
.h4_c00231{height:24.861302pt;}
.h3_c00231{height:30.428698pt;}
.h6_c00231{height:46.986901pt;}
.h7_c00231{height:55.290000pt;}
.h9_c00231{height:85.718698pt;}
.h0_c00231{height:1341.693333pt;}
.h1_c00231{height:1342.000000pt;}
.w0_c00231{width:983.040000pt;}
.w1_c00231{width:983.333333pt;}
.x0_c00231{left:0.000000pt;}
.x5_c00231{left:2.306667pt;}
.x2_c00231{left:4.613333pt;}
.x3_c00231{left:16.133333pt;}
.x4_c00231{left:23.040000pt;}
.x1_c00231{left:872.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6632b0317ea3a6e3c1950339.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.109863;font-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_c00232{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);}
.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:600.000000px;}
.y0_c00232{bottom:0.000000px;}
.y1_c00232{bottom:15.000000px;}
.h2_c00232{height:539.941406px;}
.h0_c00232{height:1523.235000px;}
.h1_c00232{height:1523.250000px;}
.w0_c00232{width:1100.730000px;}
.w1_c00232{width:1101.000000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:15.000000px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls0_c00232{letter-spacing:0.000000pt;}
.ws0_c00232{word-spacing:0.000000pt;}
.fs0_c00232{font-size:533.333333pt;}
.y0_c00232{bottom:0.000000pt;}
.y1_c00232{bottom:13.333333pt;}
.h2_c00232{height:479.947917pt;}
.h0_c00232{height:1353.986667pt;}
.h1_c00232{height:1354.000000pt;}
.w0_c00232{width:978.426667pt;}
.w1_c00232{width:978.666667pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_992732c2be3e423c1459ea77.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.109863;font-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_c00233{transform:matrix(0.067200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067200,0.000000,0.000000,0.250000,0,0);}
.me_c00233{transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);}
.m16_c00233{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m6_c00233{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.m17_c00233{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.m9_c00233{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00233{transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);}
.mf_c00233{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);}
.md_c00233{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.ma_c00233{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m12_c00233{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m14_c00233{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m19_c00233{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.mc_c00233{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb_c00233{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);}
.m1e_c00233{transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);}
.m1b_c00233{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m18_c00233{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);}
.m1c_c00233{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);}
.m22_c00233{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);}
.m20_c00233{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);}
.m23_c00233{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);}
.m13_c00233{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);}
.m24_c00233{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);}
.m10_c00233{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c00233{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00233{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);}
.m8_c00233{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);}
.m3_c00233{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c00233{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);}
.m21_c00233{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m0_c00233{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c00233{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);}
.m4_c00233{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00233{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m11_c00233{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00233{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.v1_c00233{vertical-align:-17.280000px;}
.v0_c00233{vertical-align:0.000000px;}
.v2_c00233{vertical-align:3.480000px;}
.ls1_c00233{letter-spacing:0.000000px;}
.ls0_c00233{letter-spacing:1613.105188px;}
.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;}
}
.ws1_c00233{word-spacing:0.000000px;}
.ws0_c00233{word-spacing:26.309400px;}
.fc0_c00233{color:transparent;}
.fs4_c00233{font-size:3.456000px;}
.fs13_c00233{font-size:6.000000px;}
.fs0_c00233{font-size:6.900000px;}
.fs9_c00233{font-size:10.380000px;}
.fs1_c00233{font-size:13.800000px;}
.fs2_c00233{font-size:17.280000px;}
.fs5_c00233{font-size:20.760000px;}
.fse_c00233{font-size:24.180000px;}
.fs8_c00233{font-size:27.660000px;}
.fs10_c00233{font-size:31.080000px;}
.fs7_c00233{font-size:34.560000px;}
.fs14_c00233{font-size:38.040000px;}
.fsa_c00233{font-size:44.940000px;}
.fs6_c00233{font-size:55.320000px;}
.fs11_c00233{font-size:58.740000px;}
.fsd_c00233{font-size:65.640000px;}
.fsf_c00233{font-size:69.120000px;}
.fsb_c00233{font-size:72.600000px;}
.fsc_c00233{font-size:76.020000px;}
.fs12_c00233{font-size:82.920000px;}
.fs15_c00233{font-size:93.300000px;}
.fs3_c00233{font-size:120.960000px;}
.y0_c00233{bottom:0.000000px;}
.y29_c00233{bottom:743.040000px;}
.y27_c00233{bottom:743.910000px;}
.y28_c00233{bottom:744.765000px;}
.y26_c00233{bottom:745.635000px;}
.y22_c00233{bottom:748.230000px;}
.y25_c00233{bottom:750.810000px;}
.y24_c00233{bottom:761.190000px;}
.y2a_c00233{bottom:762.045000px;}
.y23_c00233{bottom:763.770000px;}
.y1c_c00233{bottom:768.090000px;}
.y1e_c00233{bottom:768.960000px;}
.y1f_c00233{bottom:769.830000px;}
.y1d_c00233{bottom:770.685000px;}
.y21_c00233{bottom:772.410000px;}
.y20_c00233{bottom:773.280000px;}
.yf_c00233{bottom:775.005000px;}
.ye_c00233{bottom:779.325000px;}
.yd_c00233{bottom:782.790000px;}
.y14_c00233{bottom:787.110000px;}
.y16_c00233{bottom:787.965000px;}
.y13_c00233{bottom:788.835000px;}
.y17_c00233{bottom:789.690000px;}
.y15_c00233{bottom:790.560000px;}
.y1a_c00233{bottom:792.285000px;}
.y18_c00233{bottom:793.155000px;}
.y19_c00233{bottom:794.880000px;}
.y1b_c00233{bottom:804.390000px;}
.y10_c00233{bottom:813.030000px;}
.y11_c00233{bottom:813.885000px;}
.y12_c00233{bottom:814.755000px;}
.yc_c00233{bottom:970.275000px;}
.ya_c00233{bottom:983.235000px;}
.yb_c00233{bottom:988.410000px;}
.y9_c00233{bottom:1019.520000px;}
.y8_c00233{bottom:1034.205000px;}
.y7_c00233{bottom:1048.035000px;}
.y4_c00233{bottom:1208.730000px;}
.y5_c00233{bottom:1232.925000px;}
.y3_c00233{bottom:1238.970000px;}
.y1_c00233{bottom:1245.885000px;}
.y2_c00233{bottom:1246.755000px;}
.y6_c00233{bottom:1279.590000px;}
.h6_c00233{height:3.110063px;}
.h17_c00233{height:5.399414px;}
.h2_c00233{height:6.209326px;}
.hc_c00233{height:9.340986px;}
.h3_c00233{height:12.418652px;}
.he_c00233{height:12.820986px;}
.h4_c00233{height:15.550313px;}
.h7_c00233{height:18.681973px;}
.h12_c00233{height:21.759639px;}
.hb_c00233{height:24.891299px;}
.h14_c00233{height:27.968965px;}
.h9_c00233{height:31.100625px;}
.h8_c00233{height:32.502598px;}
.h18_c00233{height:34.232285px;}
.hd_c00233{height:40.441611px;}
.ha_c00233{height:49.782598px;}
.h15_c00233{height:52.860264px;}
.h11_c00233{height:59.069590px;}
.h13_c00233{height:62.201250px;}
.hf_c00233{height:65.332910px;}
.h10_c00233{height:68.410576px;}
.h16_c00233{height:74.619902px;}
.h19_c00233{height:83.960889px;}
.h5_c00233{height:108.852188px;}
.h0_c00233{height:1509.405000px;}
.h1_c00233{height:1509.750000px;}
.w0_c00233{width:1105.920000px;}
.w1_c00233{width:1106.250000px;}
.x0_c00233{left:0.000000px;}
.x7_c00233{left:6.915000px;}
.x8_c00233{left:24.195000px;}
.x1_c00233{left:93.315000px;}
.x3_c00233{left:100.229475px;}
.x2_c00233{left:110.595000px;}
.x4_c00233{left:159.840000px;}
.x5_c00233{left:171.075000px;}
.x9_c00233{left:172.800000px;}
.xb_c00233{left:175.395000px;}
.xa_c00233{left:185.760000px;}
.x1c_c00233{left:580.605000px;}
.x22_c00233{left:582.330000px;}
.xf_c00233{left:601.350000px;}
.x1d_c00233{left:606.525000px;}
.x10_c00233{left:638.490000px;}
.xc_c00233{left:651.450000px;}
.x1e_c00233{left:667.005000px;}
.x23_c00233{left:669.600000px;}
.x24_c00233{left:692.070048px;}
.xd_c00233{left:694.650000px;}
.x11_c00233{left:699.840000px;}
.x1f_c00233{left:702.435000px;}
.x12_c00233{left:711.930000px;}
.x13_c00233{left:748.230000px;}
.x25_c00233{left:757.725000px;}
.x14_c00233{left:785.370000px;}
.x20_c00233{left:788.835000px;}
.x15_c00233{left:796.605000px;}
.x26_c00233{left:810.435000px;}
.x27_c00233{left:818.205000px;}
.x28_c00233{left:832.890000px;}
.x29_c00233{left:849.315000px;}
.x16_c00233{left:857.085000px;}
.x2a_c00233{left:867.450000px;}
.x21_c00233{left:872.640000px;}
.x6_c00233{left:875.235000px;}
.x17_c00233{left:886.470000px;}
.x18_c00233{left:926.205000px;}
.x19_c00233{left:938.310000px;}
.x1a_c00233{left:950.400000px;}
.x1b_c00233{left:963.360000px;}
.xe_c00233{left:965.085000px;}
@media print{
.v1_c00233{vertical-align:-15.360000pt;}
.v0_c00233{vertical-align:0.000000pt;}
.v2_c00233{vertical-align:3.093333pt;}
.ls1_c00233{letter-spacing:0.000000pt;}
.ls0_c00233{letter-spacing:1433.871278pt;}
.ws1_c00233{word-spacing:0.000000pt;}
.ws0_c00233{word-spacing:23.386133pt;}
.fs4_c00233{font-size:3.072000pt;}
.fs13_c00233{font-size:5.333333pt;}
.fs0_c00233{font-size:6.133333pt;}
.fs9_c00233{font-size:9.226667pt;}
.fs1_c00233{font-size:12.266667pt;}
.fs2_c00233{font-size:15.360000pt;}
.fs5_c00233{font-size:18.453333pt;}
.fse_c00233{font-size:21.493333pt;}
.fs8_c00233{font-size:24.586667pt;}
.fs10_c00233{font-size:27.626667pt;}
.fs7_c00233{font-size:30.720000pt;}
.fs14_c00233{font-size:33.813333pt;}
.fsa_c00233{font-size:39.946667pt;}
.fs6_c00233{font-size:49.173333pt;}
.fs11_c00233{font-size:52.213333pt;}
.fsd_c00233{font-size:58.346667pt;}
.fsf_c00233{font-size:61.440000pt;}
.fsb_c00233{font-size:64.533333pt;}
.fsc_c00233{font-size:67.573333pt;}
.fs12_c00233{font-size:73.706667pt;}
.fs15_c00233{font-size:82.933333pt;}
.fs3_c00233{font-size:107.520000pt;}
.y0_c00233{bottom:0.000000pt;}
.y29_c00233{bottom:660.480000pt;}
.y27_c00233{bottom:661.253333pt;}
.y28_c00233{bottom:662.013333pt;}
.y26_c00233{bottom:662.786667pt;}
.y22_c00233{bottom:665.093333pt;}
.y25_c00233{bottom:667.386667pt;}
.y24_c00233{bottom:676.613333pt;}
.y2a_c00233{bottom:677.373333pt;}
.y23_c00233{bottom:678.906667pt;}
.y1c_c00233{bottom:682.746667pt;}
.y1e_c00233{bottom:683.520000pt;}
.y1f_c00233{bottom:684.293333pt;}
.y1d_c00233{bottom:685.053333pt;}
.y21_c00233{bottom:686.586667pt;}
.y20_c00233{bottom:687.360000pt;}
.yf_c00233{bottom:688.893333pt;}
.ye_c00233{bottom:692.733333pt;}
.yd_c00233{bottom:695.813333pt;}
.y14_c00233{bottom:699.653333pt;}
.y16_c00233{bottom:700.413333pt;}
.y13_c00233{bottom:701.186667pt;}
.y17_c00233{bottom:701.946667pt;}
.y15_c00233{bottom:702.720000pt;}
.y1a_c00233{bottom:704.253333pt;}
.y18_c00233{bottom:705.026667pt;}
.y19_c00233{bottom:706.560000pt;}
.y1b_c00233{bottom:715.013333pt;}
.y10_c00233{bottom:722.693333pt;}
.y11_c00233{bottom:723.453333pt;}
.y12_c00233{bottom:724.226667pt;}
.yc_c00233{bottom:862.466667pt;}
.ya_c00233{bottom:873.986667pt;}
.yb_c00233{bottom:878.586667pt;}
.y9_c00233{bottom:906.240000pt;}
.y8_c00233{bottom:919.293333pt;}
.y7_c00233{bottom:931.586667pt;}
.y4_c00233{bottom:1074.426667pt;}
.y5_c00233{bottom:1095.933333pt;}
.y3_c00233{bottom:1101.306667pt;}
.y1_c00233{bottom:1107.453333pt;}
.y2_c00233{bottom:1108.226667pt;}
.y6_c00233{bottom:1137.413333pt;}
.h6_c00233{height:2.764500pt;}
.h17_c00233{height:4.799479pt;}
.h2_c00233{height:5.519401pt;}
.hc_c00233{height:8.303099pt;}
.h3_c00233{height:11.038802pt;}
.he_c00233{height:11.396432pt;}
.h4_c00233{height:13.822500pt;}
.h7_c00233{height:16.606198pt;}
.h12_c00233{height:19.341901pt;}
.hb_c00233{height:22.125599pt;}
.h14_c00233{height:24.861302pt;}
.h9_c00233{height:27.645000pt;}
.h8_c00233{height:28.891198pt;}
.h18_c00233{height:30.428698pt;}
.hd_c00233{height:35.948099pt;}
.ha_c00233{height:44.251198pt;}
.h15_c00233{height:46.986901pt;}
.h11_c00233{height:52.506302pt;}
.h13_c00233{height:55.290000pt;}
.hf_c00233{height:58.073698pt;}
.h10_c00233{height:60.809401pt;}
.h16_c00233{height:66.328802pt;}
.h19_c00233{height:74.631901pt;}
.h5_c00233{height:96.757500pt;}
.h0_c00233{height:1341.693333pt;}
.h1_c00233{height:1342.000000pt;}
.w0_c00233{width:983.040000pt;}
.w1_c00233{width:983.333333pt;}
.x0_c00233{left:0.000000pt;}
.x7_c00233{left:6.146667pt;}
.x8_c00233{left:21.506667pt;}
.x1_c00233{left:82.946667pt;}
.x3_c00233{left:89.092867pt;}
.x2_c00233{left:98.306667pt;}
.x4_c00233{left:142.080000pt;}
.x5_c00233{left:152.066667pt;}
.x9_c00233{left:153.600000pt;}
.xb_c00233{left:155.906667pt;}
.xa_c00233{left:165.120000pt;}
.x1c_c00233{left:516.093333pt;}
.x22_c00233{left:517.626667pt;}
.xf_c00233{left:534.533333pt;}
.x1d_c00233{left:539.133333pt;}
.x10_c00233{left:567.546667pt;}
.xc_c00233{left:579.066667pt;}
.x1e_c00233{left:592.893333pt;}
.x23_c00233{left:595.200000pt;}
.x24_c00233{left:615.173376pt;}
.xd_c00233{left:617.466667pt;}
.x11_c00233{left:622.080000pt;}
.x1f_c00233{left:624.386667pt;}
.x12_c00233{left:632.826667pt;}
.x13_c00233{left:665.093333pt;}
.x25_c00233{left:673.533333pt;}
.x14_c00233{left:698.106667pt;}
.x20_c00233{left:701.186667pt;}
.x15_c00233{left:708.093333pt;}
.x26_c00233{left:720.386667pt;}
.x27_c00233{left:727.293333pt;}
.x28_c00233{left:740.346667pt;}
.x29_c00233{left:754.946667pt;}
.x16_c00233{left:761.853333pt;}
.x2a_c00233{left:771.066667pt;}
.x21_c00233{left:775.680000pt;}
.x6_c00233{left:777.986667pt;}
.x17_c00233{left:787.973333pt;}
.x18_c00233{left:823.293333pt;}
.x19_c00233{left:834.053333pt;}
.x1a_c00233{left:844.800000pt;}
.x1b_c00233{left:856.320000pt;}
.xe_c00233{left:857.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_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_ef1004928bcb85e8bfcbc02b.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.109863;font-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_c00234{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);}
.m2_c00234{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m0_c00234{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m1_c00234{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,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;}
.fc0_c00234{color:transparent;}
.fs0_c00234{font-size:55.320000px;}
.fs1_c00234{font-size:62.220000px;}
.fs2_c00234{font-size:93.300000px;}
.y0_c00234{bottom:0.000000px;}
.y3_c00234{bottom:647.130000px;}
.y2_c00234{bottom:653.190000px;}
.y1_c00234{bottom:654.045000px;}
.h2_c00234{height:49.782598px;}
.h3_c00234{height:55.991924px;}
.h4_c00234{height:83.960889px;}
.h0_c00234{height:1523.235000px;}
.h1_c00234{height:1523.250000px;}
.w0_c00234{width:1100.730000px;}
.w1_c00234{width:1101.000000px;}
.x0_c00234{left:0.000000px;}
.x1_c00234{left:650.595000px;}
.x2_c00234{left:673.050000px;}
.x3_c00234{left:710.205000px;}
.x4_c00234{left:781.920000px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls0_c00234{letter-spacing:0.000000pt;}
.ws0_c00234{word-spacing:0.000000pt;}
.fs0_c00234{font-size:49.173333pt;}
.fs1_c00234{font-size:55.306667pt;}
.fs2_c00234{font-size:82.933333pt;}
.y0_c00234{bottom:0.000000pt;}
.y3_c00234{bottom:575.226667pt;}
.y2_c00234{bottom:580.613333pt;}
.y1_c00234{bottom:581.373333pt;}
.h2_c00234{height:44.251198pt;}
.h3_c00234{height:49.770599pt;}
.h4_c00234{height:74.631901pt;}
.h0_c00234{height:1353.986667pt;}
.h1_c00234{height:1354.000000pt;}
.w0_c00234{width:978.426667pt;}
.w1_c00234{width:978.666667pt;}
.x0_c00234{left:0.000000pt;}
.x1_c00234{left:578.306667pt;}
.x2_c00234{left:598.266667pt;}
.x3_c00234{left:631.293333pt;}
.x4_c00234{left:695.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_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;}
@font-face{font-family:ff1_c00235;src:url('chunks/assets/font_d6fe59e1389e8de6a43945a1.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.109863;font-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_c00235{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c00235{transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);}
.m3_c00235{transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);}
.m0_c00235{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.m4_c00235{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m2_c00235{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c00235{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls0_c00235{letter-spacing:0.000000px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00235{word-spacing:0.000000px;}
.fc0_c00235{color:transparent;}
.fs5_c00235{font-size:13.800000px;}
.fs2_c00235{font-size:17.280000px;}
.fs6_c00235{font-size:20.760000px;}
.fs4_c00235{font-size:27.660000px;}
.fs3_c00235{font-size:55.320000px;}
.fs1_c00235{font-size:93.300000px;}
.fs0_c00235{font-size:207.360000px;}
.y0_c00235{bottom:0.000000px;}
.y4_c00235{bottom:798.330000px;}
.y3_c00235{bottom:806.115000px;}
.y2_c00235{bottom:822.525000px;}
.y6_c00235{bottom:825.120000px;}
.y5_c00235{bottom:827.715000px;}
.y1_c00235{bottom:846.720000px;}
.h7_c00235{height:12.418652px;}
.h4_c00235{height:15.550313px;}
.h8_c00235{height:18.681973px;}
.h6_c00235{height:24.891299px;}
.h5_c00235{height:49.782598px;}
.h3_c00235{height:83.960889px;}
.h2_c00235{height:186.603750px;}
.h0_c00235{height:1509.405000px;}
.h1_c00235{height:1509.750000px;}
.w0_c00235{width:1105.920000px;}
.w1_c00235{width:1106.250000px;}
.x0_c00235{left:0.000000px;}
.x1_c00235{left:114.915000px;}
.x3_c00235{left:116.640000px;}
.x2_c00235{left:124.410000px;}
.x4_c00235{left:194.400000px;}
.x5_c00235{left:209.955000px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls0_c00235{letter-spacing:0.000000pt;}
.ws0_c00235{word-spacing:0.000000pt;}
.fs5_c00235{font-size:12.266667pt;}
.fs2_c00235{font-size:15.360000pt;}
.fs6_c00235{font-size:18.453333pt;}
.fs4_c00235{font-size:24.586667pt;}
.fs3_c00235{font-size:49.173333pt;}
.fs1_c00235{font-size:82.933333pt;}
.fs0_c00235{font-size:184.320000pt;}
.y0_c00235{bottom:0.000000pt;}
.y4_c00235{bottom:709.626667pt;}
.y3_c00235{bottom:716.546667pt;}
.y2_c00235{bottom:731.133333pt;}
.y6_c00235{bottom:733.440000pt;}
.y5_c00235{bottom:735.746667pt;}
.y1_c00235{bottom:752.640000pt;}
.h7_c00235{height:11.038802pt;}
.h4_c00235{height:13.822500pt;}
.h8_c00235{height:16.606198pt;}
.h6_c00235{height:22.125599pt;}
.h5_c00235{height:44.251198pt;}
.h3_c00235{height:74.631901pt;}
.h2_c00235{height:165.870000pt;}
.h0_c00235{height:1341.693333pt;}
.h1_c00235{height:1342.000000pt;}
.w0_c00235{width:983.040000pt;}
.w1_c00235{width:983.333333pt;}
.x0_c00235{left:0.000000pt;}
.x1_c00235{left:102.146667pt;}
.x3_c00235{left:103.680000pt;}
.x2_c00235{left:110.586667pt;}
.x4_c00235{left:172.800000pt;}
.x5_c00235{left:186.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_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_ca58941a4cae33768b359aa6.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.109863;font-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_c00236{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c00236{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);}
.m0_c00236{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);}
.m1_c00236{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c00236{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.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;}
.fs2_c00236{font-size:3.456000px;}
.fs1_c00236{font-size:17.280000px;}
.fs0_c00236{font-size:20.760000px;}
.fs3_c00236{font-size:69.120000px;}
.y0_c00236{bottom:0.000000px;}
.y2_c00236{bottom:1407.450000px;}
.y3_c00236{bottom:1410.045000px;}
.y1_c00236{bottom:1414.365000px;}
.y5_c00236{bottom:1428.195000px;}
.y4_c00236{bottom:1448.070000px;}
.h4_c00236{height:3.110063px;}
.h3_c00236{height:15.550313px;}
.h2_c00236{height:18.681973px;}
.h5_c00236{height:62.201250px;}
.h0_c00236{height:1515.450000px;}
.h1_c00236{height:1515.750000px;}
.w1_c00236{width:1110.000000px;}
.w0_c00236{width:1110.240000px;}
.x0_c00236{left:0.000000px;}
.x5_c00236{left:709.350000px;}
.x4_c00236{left:730.080000px;}
.x2_c00236{left:821.670000px;}
.x1_c00236{left:825.120000px;}
.x3_c00236{left:830.310000px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls0_c00236{letter-spacing:0.000000pt;}
.ws0_c00236{word-spacing:0.000000pt;}
.fs2_c00236{font-size:3.072000pt;}
.fs1_c00236{font-size:15.360000pt;}
.fs0_c00236{font-size:18.453333pt;}
.fs3_c00236{font-size:61.440000pt;}
.y0_c00236{bottom:0.000000pt;}
.y2_c00236{bottom:1251.066667pt;}
.y3_c00236{bottom:1253.373333pt;}
.y1_c00236{bottom:1257.213333pt;}
.y5_c00236{bottom:1269.506667pt;}
.y4_c00236{bottom:1287.173333pt;}
.h4_c00236{height:2.764500pt;}
.h3_c00236{height:13.822500pt;}
.h2_c00236{height:16.606198pt;}
.h5_c00236{height:55.290000pt;}
.h0_c00236{height:1347.066667pt;}
.h1_c00236{height:1347.333333pt;}
.w1_c00236{width:986.666667pt;}
.w0_c00236{width:986.880000pt;}
.x0_c00236{left:0.000000pt;}
.x5_c00236{left:630.533333pt;}
.x4_c00236{left:648.960000pt;}
.x2_c00236{left:730.373333pt;}
.x1_c00236{left:733.440000pt;}
.x3_c00236{left:738.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00237;src:url('chunks/assets/font_67f7a6a71a6e55e0660adb5b.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.109863;font-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_c00237{transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021750,0.000000,0.000000,0.250000,0,0);}
.m13_c00237{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m2e_c00237{transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);}
.m11_c00237{transform:matrix(0.123975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123975,0.000000,0.000000,0.250000,0,0);}
.m12_c00237{transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140250,0.000000,0.000000,0.250000,0,0);}
.m2f_c00237{transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);}
.me_c00237{transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);}
.m10_c00237{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.m1d_c00237{transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);}
.m1f_c00237{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);}
.m27_c00237{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m21_c00237{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m2_c00237{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);}
.m28_c00237{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);}
.m7_c00237{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);}
.m2c_c00237{transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);}
.m2d_c00237{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.m16_c00237{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.m1a_c00237{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m33_c00237{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);}
.m24_c00237{transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);}
.m8_c00237{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);}
.m18_c00237{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m14_c00237{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);}
.m32_c00237{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00237{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);}
.m23_c00237{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);}
.m3_c00237{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c00237{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);}
.m26_c00237{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00237{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);}
.m17_c00237{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);}
.mb_c00237{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);}
.md_c00237{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c00237{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c00237{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);}
.m15_c00237{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c00237{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00237{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);}
.m29_c00237{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m25_c00237{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);}
.m5_c00237{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00237{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);}
.m31_c00237{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m0_c00237{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00237{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m9_c00237{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);}
.m4_c00237{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.ma_c00237{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00237{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m22_c00237{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);}
.mc_c00237{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.v1_c00237{vertical-align:-3.480000px;}
.v0_c00237{vertical-align:0.000000px;}
.ls0_c00237{letter-spacing:0.000000px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00237{word-spacing:-34.245420px;}
.ws0_c00237{word-spacing:-4.060680px;}
.ws2_c00237{word-spacing:0.000000px;}
._0_c00237{width:8.138640px;}
.fc0_c00237{color:transparent;}
.fs0_c00237{font-size:3.456000px;}
.fs8_c00237{font-size:6.900000px;}
.fse_c00237{font-size:10.380000px;}
.fs14_c00237{font-size:17.280000px;}
.fs12_c00237{font-size:20.760000px;}
.fs4_c00237{font-size:24.180000px;}
.fs9_c00237{font-size:27.660000px;}
.fs16_c00237{font-size:31.080000px;}
.fsa_c00237{font-size:34.560000px;}
.fsd_c00237{font-size:41.460000px;}
.fs5_c00237{font-size:48.360000px;}
.fs3_c00237{font-size:51.840000px;}
.fsf_c00237{font-size:55.320000px;}
.fs7_c00237{font-size:58.740000px;}
.fs2_c00237{font-size:62.220000px;}
.fs10_c00237{font-size:65.640000px;}
.fs6_c00237{font-size:69.120000px;}
.fs1_c00237{font-size:72.600000px;}
.fs15_c00237{font-size:76.020000px;}
.fs11_c00237{font-size:79.500000px;}
.fsc_c00237{font-size:82.920000px;}
.fsb_c00237{font-size:86.400000px;}
.fs13_c00237{font-size:89.880000px;}
.fs17_c00237{font-size:114.060000px;}
.y0_c00237{bottom:0.000000px;}
.y31_c00237{bottom:512.355000px;}
.y27_c00237{bottom:1030.755000px;}
.y26_c00237{bottom:1034.205000px;}
.y2d_c00237{bottom:1035.075000px;}
.y2e_c00237{bottom:1038.525000px;}
.y2c_c00237{bottom:1040.250000px;}
.y2b_c00237{bottom:1041.120000px;}
.y30_c00237{bottom:1044.570000px;}
.y2f_c00237{bottom:1053.210000px;}
.y2a_c00237{bottom:1057.530000px;}
.y29_c00237{bottom:1059.270000px;}
.y28_c00237{bottom:1060.125000px;}
.y24_c00237{bottom:1096.410000px;}
.y23_c00237{bottom:1099.005000px;}
.y25_c00237{bottom:1100.730000px;}
.y22_c00237{bottom:1111.110000px;}
.y21_c00237{bottom:1115.430000px;}
.y1d_c00237{bottom:1117.155000px;}
.y20_c00237{bottom:1121.475000px;}
.y1e_c00237{bottom:1122.330000px;}
.y1f_c00237{bottom:1134.435000px;}
.y19_c00237{bottom:1137.885000px;}
.y1b_c00237{bottom:1138.755000px;}
.y1c_c00237{bottom:1139.610000px;}
.y17_c00237{bottom:1142.205000px;}
.y1a_c00237{bottom:1143.075000px;}
.y18_c00237{bottom:1143.930000px;}
.y13_c00237{bottom:1158.630000px;}
.y16_c00237{bottom:1159.485000px;}
.y15_c00237{bottom:1162.080000px;}
.y14_c00237{bottom:1163.805000px;}
.y12_c00237{bottom:1182.810000px;}
.y11_c00237{bottom:1215.645000px;}
.yf_c00237{bottom:1216.515000px;}
.yb_c00237{bottom:1217.370000px;}
.ye_c00237{bottom:1218.240000px;}
.yd_c00237{bottom:1219.110000px;}
.y10_c00237{bottom:1221.690000px;}
.yc_c00237{bottom:1225.155000px;}
.ya_c00237{bottom:1238.115000px;}
.y9_c00237{bottom:1238.970000px;}
.y8_c00237{bottom:1240.710000px;}
.y4_c00237{bottom:1241.565000px;}
.y6_c00237{bottom:1243.290000px;}
.y5_c00237{bottom:1245.030000px;}
.y3_c00237{bottom:1245.885000px;}
.y7_c00237{bottom:1257.120000px;}
.y2_c00237{bottom:1262.310000px;}
.y1_c00237{bottom:1264.890000px;}
.h2_c00237{height:3.110063px;}
.ha_c00237{height:6.209326px;}
.h10_c00237{height:9.340986px;}
.h16_c00237{height:15.550313px;}
.h14_c00237{height:18.681973px;}
.h6_c00237{height:21.759639px;}
.hb_c00237{height:24.891299px;}
.h18_c00237{height:27.968965px;}
.hc_c00237{height:31.100625px;}
.hf_c00237{height:37.309951px;}
.h7_c00237{height:43.519277px;}
.h5_c00237{height:46.650937px;}
.h11_c00237{height:49.782598px;}
.h9_c00237{height:52.860264px;}
.h4_c00237{height:55.991924px;}
.h12_c00237{height:59.069590px;}
.h8_c00237{height:62.201250px;}
.h3_c00237{height:65.332910px;}
.h17_c00237{height:68.410576px;}
.h13_c00237{height:71.542236px;}
.he_c00237{height:74.619902px;}
.hd_c00237{height:77.751563px;}
.h15_c00237{height:80.883223px;}
.h19_c00237{height:102.642861px;}
.h1_c00237{height:1503.000000px;}
.h0_c00237{height:1503.360000px;}
.w0_c00237{width:1096.410000px;}
.w1_c00237{width:1096.500000px;}
.x0_c00237{left:0.000000px;}
.x32_c00237{left:6.045000px;}
.x25_c00237{left:46.650000px;}
.x26_c00237{left:60.480000px;}
.x27_c00237{left:551.235000px;}
.x22_c00237{left:557.280000px;}
.x19_c00237{left:570.240000px;}
.x10_c00237{left:571.965000px;}
.x1_c00237{left:574.560000px;}
.x2b_c00237{left:579.750090px;}
.x15_c00237{left:589.245000px;}
.x3_c00237{left:591.840000px;}
.x2c_c00237{left:605.670000px;}
.x28_c00237{left:616.890000px;}
.x2_c00237{left:618.630000px;}
.x1a_c00237{left:630.720000px;}
.xb_c00237{left:641.955000px;}
.x4_c00237{left:643.680000px;}
.x11_c00237{left:648.000000px;}
.x23_c00237{left:650.595000px;}
.x1e_c00237{left:654.045000px;}
.x1b_c00237{left:655.770000px;}
.xc_c00237{left:665.280000px;}
.x5_c00237{left:685.155000px;}
.x6_c00237{left:694.650000px;}
.xd_c00237{left:697.245000px;}
.x2d_c00237{left:707.610000px;}
.x1f_c00237{left:710.205000px;}
.x12_c00237{left:717.120000px;}
.x20_c00237{left:719.715000px;}
.x7_c00237{left:721.440000px;}
.x16_c00237{left:724.890000px;}
.x29_c00237{left:735.270000px;}
.x24_c00237{left:739.590000px;}
.x17_c00237{left:749.085000px;}
.x2e_c00237{left:753.405000px;}
.x13_c00237{left:756.000000px;}
.x2f_c00237{left:768.960000px;}
.x2a_c00237{left:770.685000px;}
.x8_c00237{left:775.875000px;}
.xe_c00237{left:781.920000px;}
.x18_c00237{left:791.430000px;}
.x30_c00237{left:797.475000px;}
.x1c_c00237{left:805.245000px;}
.x31_c00237{left:807.840000px;}
.x9_c00237{left:812.160000px;}
.x14_c00237{left:814.755000px;}
.x1d_c00237{left:819.075000px;}
.x21_c00237{left:826.845000px;}
.xf_c00237{left:858.810000px;}
.xa_c00237{left:860.550000px;}
@media print{
.v1_c00237{vertical-align:-3.093333pt;}
.v0_c00237{vertical-align:0.000000pt;}
.ls0_c00237{letter-spacing:0.000000pt;}
.ws1_c00237{word-spacing:-30.440373pt;}
.ws0_c00237{word-spacing:-3.609493pt;}
.ws2_c00237{word-spacing:0.000000pt;}
._0_c00237{width:7.234347pt;}
.fs0_c00237{font-size:3.072000pt;}
.fs8_c00237{font-size:6.133333pt;}
.fse_c00237{font-size:9.226667pt;}
.fs14_c00237{font-size:15.360000pt;}
.fs12_c00237{font-size:18.453333pt;}
.fs4_c00237{font-size:21.493333pt;}
.fs9_c00237{font-size:24.586667pt;}
.fs16_c00237{font-size:27.626667pt;}
.fsa_c00237{font-size:30.720000pt;}
.fsd_c00237{font-size:36.853333pt;}
.fs5_c00237{font-size:42.986667pt;}
.fs3_c00237{font-size:46.080000pt;}
.fsf_c00237{font-size:49.173333pt;}
.fs7_c00237{font-size:52.213333pt;}
.fs2_c00237{font-size:55.306667pt;}
.fs10_c00237{font-size:58.346667pt;}
.fs6_c00237{font-size:61.440000pt;}
.fs1_c00237{font-size:64.533333pt;}
.fs15_c00237{font-size:67.573333pt;}
.fs11_c00237{font-size:70.666667pt;}
.fsc_c00237{font-size:73.706667pt;}
.fsb_c00237{font-size:76.800000pt;}
.fs13_c00237{font-size:79.893333pt;}
.fs17_c00237{font-size:101.386667pt;}
.y0_c00237{bottom:0.000000pt;}
.y31_c00237{bottom:455.426667pt;}
.y27_c00237{bottom:916.226667pt;}
.y26_c00237{bottom:919.293333pt;}
.y2d_c00237{bottom:920.066667pt;}
.y2e_c00237{bottom:923.133333pt;}
.y2c_c00237{bottom:924.666667pt;}
.y2b_c00237{bottom:925.440000pt;}
.y30_c00237{bottom:928.506667pt;}
.y2f_c00237{bottom:936.186667pt;}
.y2a_c00237{bottom:940.026667pt;}
.y29_c00237{bottom:941.573333pt;}
.y28_c00237{bottom:942.333333pt;}
.y24_c00237{bottom:974.586667pt;}
.y23_c00237{bottom:976.893333pt;}
.y25_c00237{bottom:978.426667pt;}
.y22_c00237{bottom:987.653333pt;}
.y21_c00237{bottom:991.493333pt;}
.y1d_c00237{bottom:993.026667pt;}
.y20_c00237{bottom:996.866667pt;}
.y1e_c00237{bottom:997.626667pt;}
.y1f_c00237{bottom:1008.386667pt;}
.y19_c00237{bottom:1011.453333pt;}
.y1b_c00237{bottom:1012.226667pt;}
.y1c_c00237{bottom:1012.986667pt;}
.y17_c00237{bottom:1015.293333pt;}
.y1a_c00237{bottom:1016.066667pt;}
.y18_c00237{bottom:1016.826667pt;}
.y13_c00237{bottom:1029.893333pt;}
.y16_c00237{bottom:1030.653333pt;}
.y15_c00237{bottom:1032.960000pt;}
.y14_c00237{bottom:1034.493333pt;}
.y12_c00237{bottom:1051.386667pt;}
.y11_c00237{bottom:1080.573333pt;}
.yf_c00237{bottom:1081.346667pt;}
.yb_c00237{bottom:1082.106667pt;}
.ye_c00237{bottom:1082.880000pt;}
.yd_c00237{bottom:1083.653333pt;}
.y10_c00237{bottom:1085.946667pt;}
.yc_c00237{bottom:1089.026667pt;}
.ya_c00237{bottom:1100.546667pt;}
.y9_c00237{bottom:1101.306667pt;}
.y8_c00237{bottom:1102.853333pt;}
.y4_c00237{bottom:1103.613333pt;}
.y6_c00237{bottom:1105.146667pt;}
.y5_c00237{bottom:1106.693333pt;}
.y3_c00237{bottom:1107.453333pt;}
.y7_c00237{bottom:1117.440000pt;}
.y2_c00237{bottom:1122.053333pt;}
.y1_c00237{bottom:1124.346667pt;}
.h2_c00237{height:2.764500pt;}
.ha_c00237{height:5.519401pt;}
.h10_c00237{height:8.303099pt;}
.h16_c00237{height:13.822500pt;}
.h14_c00237{height:16.606198pt;}
.h6_c00237{height:19.341901pt;}
.hb_c00237{height:22.125599pt;}
.h18_c00237{height:24.861302pt;}
.hc_c00237{height:27.645000pt;}
.hf_c00237{height:33.164401pt;}
.h7_c00237{height:38.683802pt;}
.h5_c00237{height:41.467500pt;}
.h11_c00237{height:44.251198pt;}
.h9_c00237{height:46.986901pt;}
.h4_c00237{height:49.770599pt;}
.h12_c00237{height:52.506302pt;}
.h8_c00237{height:55.290000pt;}
.h3_c00237{height:58.073698pt;}
.h17_c00237{height:60.809401pt;}
.h13_c00237{height:63.593099pt;}
.he_c00237{height:66.328802pt;}
.hd_c00237{height:69.112500pt;}
.h15_c00237{height:71.896198pt;}
.h19_c00237{height:91.238099pt;}
.h1_c00237{height:1336.000000pt;}
.h0_c00237{height:1336.320000pt;}
.w0_c00237{width:974.586667pt;}
.w1_c00237{width:974.666667pt;}
.x0_c00237{left:0.000000pt;}
.x32_c00237{left:5.373333pt;}
.x25_c00237{left:41.466667pt;}
.x26_c00237{left:53.760000pt;}
.x27_c00237{left:489.986667pt;}
.x22_c00237{left:495.360000pt;}
.x19_c00237{left:506.880000pt;}
.x10_c00237{left:508.413333pt;}
.x1_c00237{left:510.720000pt;}
.x2b_c00237{left:515.333413pt;}
.x15_c00237{left:523.773333pt;}
.x3_c00237{left:526.080000pt;}
.x2c_c00237{left:538.373333pt;}
.x28_c00237{left:548.346667pt;}
.x2_c00237{left:549.893333pt;}
.x1a_c00237{left:560.640000pt;}
.xb_c00237{left:570.626667pt;}
.x4_c00237{left:572.160000pt;}
.x11_c00237{left:576.000000pt;}
.x23_c00237{left:578.306667pt;}
.x1e_c00237{left:581.373333pt;}
.x1b_c00237{left:582.906667pt;}
.xc_c00237{left:591.360000pt;}
.x5_c00237{left:609.026667pt;}
.x6_c00237{left:617.466667pt;}
.xd_c00237{left:619.773333pt;}
.x2d_c00237{left:628.986667pt;}
.x1f_c00237{left:631.293333pt;}
.x12_c00237{left:637.440000pt;}
.x20_c00237{left:639.746667pt;}
.x7_c00237{left:641.280000pt;}
.x16_c00237{left:644.346667pt;}
.x29_c00237{left:653.573333pt;}
.x24_c00237{left:657.413333pt;}
.x17_c00237{left:665.853333pt;}
.x2e_c00237{left:669.693333pt;}
.x13_c00237{left:672.000000pt;}
.x2f_c00237{left:683.520000pt;}
.x2a_c00237{left:685.053333pt;}
.x8_c00237{left:689.666667pt;}
.xe_c00237{left:695.040000pt;}
.x18_c00237{left:703.493333pt;}
.x30_c00237{left:708.866667pt;}
.x1c_c00237{left:715.773333pt;}
.x31_c00237{left:718.080000pt;}
.x9_c00237{left:721.920000pt;}
.x14_c00237{left:724.226667pt;}
.x1d_c00237{left:728.066667pt;}
.x21_c00237{left:734.973333pt;}
.xf_c00237{left:763.386667pt;}
.xa_c00237{left:764.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_892a56c4565571100c0a5922.woff2')format("woff");}.ff1_c00238{font-family:ff1_c00238;line-height:1.109863;font-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_c00238{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m4_c00238{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c00238{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.m6_c00238{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00238{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);}
.m7_c00238{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);}
.m9_c00238{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m0_c00238{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);}
.mc_c00238{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);}
.m10_c00238{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m8_c00238{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2_c00238{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1_c00238{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.me_c00238{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mf_c00238{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.ma_c00238{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m3_c00238{transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.867500,0.000000,0.000000,0.250000,0,0);}
.v0_c00238{vertical-align:0.000000px;}
.v1_c00238{vertical-align:13.860000px;}
.ls1_c00238{letter-spacing:0.000000px;}
.ls0_c00238{letter-spacing:90.287760px;}
.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;}
.fsb_c00238{font-size:3.456000px;}
.fs4_c00238{font-size:6.900000px;}
.fs5_c00238{font-size:17.280000px;}
.fs6_c00238{font-size:20.760000px;}
.fs3_c00238{font-size:24.180000px;}
.fsa_c00238{font-size:27.660000px;}
.fs9_c00238{font-size:31.080000px;}
.fs8_c00238{font-size:34.560000px;}
.fs0_c00238{font-size:41.460000px;}
.fs7_c00238{font-size:55.320000px;}
.fs1_c00238{font-size:65.640000px;}
.fs2_c00238{font-size:69.120000px;}
.y0_c00238{bottom:0.000000px;}
.y12_c00238{bottom:274.755000px;}
.y13_c00238{bottom:277.350000px;}
.y11_c00238{bottom:484.710000px;}
.y10_c00238{bottom:707.610000px;}
.yf_c00238{bottom:837.210000px;}
.yd_c00238{bottom:912.390000px;}
.ye_c00238{bottom:919.290000px;}
.yc_c00238{bottom:946.950000px;}
.y9_c00238{bottom:1057.530000px;}
.ya_c00238{bottom:1060.125000px;}
.yb_c00238{bottom:1070.490000px;}
.y8_c00238{bottom:1083.450000px;}
.y1_c00238{bottom:1166.400000px;}
.y7_c00238{bottom:1350.435000px;}
.y6_c00238{bottom:1357.350000px;}
.y4_c00238{bottom:1367.715000px;}
.y5_c00238{bottom:1368.570000px;}
.y2_c00238{bottom:1394.490000px;}
.y3_c00238{bottom:1397.955000px;}
.he_c00238{height:3.110063px;}
.h6_c00238{height:6.209326px;}
.h7_c00238{height:15.550313px;}
.hd_c00238{height:16.970063px;}
.h8_c00238{height:18.681973px;}
.h5_c00238{height:21.759639px;}
.hc_c00238{height:24.891299px;}
.hb_c00238{height:27.968965px;}
.ha_c00238{height:31.100625px;}
.h2_c00238{height:37.309951px;}
.h9_c00238{height:49.782598px;}
.h3_c00238{height:59.069590px;}
.h4_c00238{height:62.201250px;}
.h0_c00238{height:1515.450000px;}
.h1_c00238{height:1515.750000px;}
.w1_c00238{width:1110.000000px;}
.w0_c00238{width:1110.240000px;}
.x0_c00238{left:0.000000px;}
.x2_c00238{left:435.450000px;}
.x3_c00238{left:578.880000px;}
.x8_c00238{left:648.870000px;}
.x9_c00238{left:745.635000px;}
.xb_c00238{left:787.110000px;}
.xa_c00238{left:788.835000px;}
.xd_c00238{left:958.170000px;}
.xe_c00238{left:975.450000px;}
.xc_c00238{left:1035.930000px;}
.xf_c00238{left:1040.250864px;}
.x11_c00238{left:1043.715000px;}
.x7_c00238{left:1060.125000px;}
.x4_c00238{left:1062.720000px;}
.x1_c00238{left:1074.810000px;}
.x6_c00238{left:1077.405000px;}
.x5_c00238{left:1085.190000px;}
.x10_c00238{left:1102.470000px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.v1_c00238{vertical-align:12.320000pt;}
.ls1_c00238{letter-spacing:0.000000pt;}
.ls0_c00238{letter-spacing:80.255787pt;}
.ws0_c00238{word-spacing:0.000000pt;}
.fsb_c00238{font-size:3.072000pt;}
.fs4_c00238{font-size:6.133333pt;}
.fs5_c00238{font-size:15.360000pt;}
.fs6_c00238{font-size:18.453333pt;}
.fs3_c00238{font-size:21.493333pt;}
.fsa_c00238{font-size:24.586667pt;}
.fs9_c00238{font-size:27.626667pt;}
.fs8_c00238{font-size:30.720000pt;}
.fs0_c00238{font-size:36.853333pt;}
.fs7_c00238{font-size:49.173333pt;}
.fs1_c00238{font-size:58.346667pt;}
.fs2_c00238{font-size:61.440000pt;}
.y0_c00238{bottom:0.000000pt;}
.y12_c00238{bottom:244.226667pt;}
.y13_c00238{bottom:246.533333pt;}
.y11_c00238{bottom:430.853333pt;}
.y10_c00238{bottom:628.986667pt;}
.yf_c00238{bottom:744.186667pt;}
.yd_c00238{bottom:811.013333pt;}
.ye_c00238{bottom:817.146667pt;}
.yc_c00238{bottom:841.733333pt;}
.y9_c00238{bottom:940.026667pt;}
.ya_c00238{bottom:942.333333pt;}
.yb_c00238{bottom:951.546667pt;}
.y8_c00238{bottom:963.066667pt;}
.y1_c00238{bottom:1036.800000pt;}
.y7_c00238{bottom:1200.386667pt;}
.y6_c00238{bottom:1206.533333pt;}
.y4_c00238{bottom:1215.746667pt;}
.y5_c00238{bottom:1216.506667pt;}
.y2_c00238{bottom:1239.546667pt;}
.y3_c00238{bottom:1242.626667pt;}
.he_c00238{height:2.764500pt;}
.h6_c00238{height:5.519401pt;}
.h7_c00238{height:13.822500pt;}
.hd_c00238{height:15.084500pt;}
.h8_c00238{height:16.606198pt;}
.h5_c00238{height:19.341901pt;}
.hc_c00238{height:22.125599pt;}
.hb_c00238{height:24.861302pt;}
.ha_c00238{height:27.645000pt;}
.h2_c00238{height:33.164401pt;}
.h9_c00238{height:44.251198pt;}
.h3_c00238{height:52.506302pt;}
.h4_c00238{height:55.290000pt;}
.h0_c00238{height:1347.066667pt;}
.h1_c00238{height:1347.333333pt;}
.w1_c00238{width:986.666667pt;}
.w0_c00238{width:986.880000pt;}
.x0_c00238{left:0.000000pt;}
.x2_c00238{left:387.066667pt;}
.x3_c00238{left:514.560000pt;}
.x8_c00238{left:576.773333pt;}
.x9_c00238{left:662.786667pt;}
.xb_c00238{left:699.653333pt;}
.xa_c00238{left:701.186667pt;}
.xd_c00238{left:851.706667pt;}
.xe_c00238{left:867.066667pt;}
.xc_c00238{left:920.826667pt;}
.xf_c00238{left:924.667435pt;}
.x11_c00238{left:927.746667pt;}
.x7_c00238{left:942.333333pt;}
.x4_c00238{left:944.640000pt;}
.x1_c00238{left:955.386667pt;}
.x6_c00238{left:957.693333pt;}
.x5_c00238{left:964.613333pt;}
.x10_c00238{left:979.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dec1cf582394bc1d3dffbff7.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.109863;font-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_c00239{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);}
.m1_c00239{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);}
.m4_c00239{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c00239{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m5_c00239{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m0_c00239{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,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;}
.fs3_c00239{font-size:13.800000px;}
.fs0_c00239{font-size:17.280000px;}
.fs2_c00239{font-size:24.180000px;}
.fs4_c00239{font-size:27.660000px;}
.fs1_c00239{font-size:31.080000px;}
.y0_c00239{bottom:0.000000px;}
.y5_c00239{bottom:122.685000px;}
.y6_c00239{bottom:127.005000px;}
.y4_c00239{bottom:128.730000px;}
.y2_c00239{bottom:558.150000px;}
.y3_c00239{bottom:945.210000px;}
.y1_c00239{bottom:1022.115000px;}
.h5_c00239{height:12.418652px;}
.h2_c00239{height:15.550313px;}
.h4_c00239{height:21.759639px;}
.h6_c00239{height:24.891299px;}
.h3_c00239{height:27.968965px;}
.h1_c00239{height:1503.000000px;}
.h0_c00239{height:1503.360000px;}
.w0_c00239{width:1096.410000px;}
.w1_c00239{width:1096.500000px;}
.x0_c00239{left:0.000000px;}
.x1_c00239{left:3.450000px;}
.x2_c00239{left:19.005000px;}
.x3_c00239{left:135.645000px;}
.x4_c00239{left:608.250000px;}
.x5_c00239{left:698.970000px;}
.x6_c00239{left:712.800000px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls0_c00239{letter-spacing:0.000000pt;}
.ws0_c00239{word-spacing:0.000000pt;}
.fs3_c00239{font-size:12.266667pt;}
.fs0_c00239{font-size:15.360000pt;}
.fs2_c00239{font-size:21.493333pt;}
.fs4_c00239{font-size:24.586667pt;}
.fs1_c00239{font-size:27.626667pt;}
.y0_c00239{bottom:0.000000pt;}
.y5_c00239{bottom:109.053333pt;}
.y6_c00239{bottom:112.893333pt;}
.y4_c00239{bottom:114.426667pt;}
.y2_c00239{bottom:496.133333pt;}
.y3_c00239{bottom:840.186667pt;}
.y1_c00239{bottom:908.546667pt;}
.h5_c00239{height:11.038802pt;}
.h2_c00239{height:13.822500pt;}
.h4_c00239{height:19.341901pt;}
.h6_c00239{height:22.125599pt;}
.h3_c00239{height:24.861302pt;}
.h1_c00239{height:1336.000000pt;}
.h0_c00239{height:1336.320000pt;}
.w0_c00239{width:974.586667pt;}
.w1_c00239{width:974.666667pt;}
.x0_c00239{left:0.000000pt;}
.x1_c00239{left:3.066667pt;}
.x2_c00239{left:16.893333pt;}
.x3_c00239{left:120.573333pt;}
.x4_c00239{left:540.666667pt;}
.x5_c00239{left:621.306667pt;}
.x6_c00239{left:633.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_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_632e4ef37329a9d7f1a60e5e.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.109863;font-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_c00240{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m40_c00240{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m16_c00240{transform:matrix(0.129975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129975,0.000000,0.000000,0.250000,0,0);}
.m3c_c00240{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m2b_c00240{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m46_c00240{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m2f_c00240{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m1c_c00240{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.m3e_c00240{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.me_c00240{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m39_c00240{transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);}
.m43_c00240{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m12_c00240{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);}
.m38_c00240{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);}
.m20_c00240{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m14_c00240{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m3d_c00240{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.m10_c00240{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.m37_c00240{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);}
.m3f_c00240{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);}
.m41_c00240{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.md_c00240{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.m45_c00240{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);}
.m15_c00240{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);}
.m29_c00240{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m3a_c00240{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc_c00240{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);}
.m2a_c00240{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);}
.m35_c00240{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m22_c00240{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00240{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);}
.m24_c00240{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);}
.m11_c00240{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00240{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);}
.m30_c00240{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m25_c00240{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);}
.m33_c00240{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);}
.m34_c00240{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);}
.m32_c00240{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c00240{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);}
.m26_c00240{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00240{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00240{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00240{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00240{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c00240{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m13_c00240{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m18_c00240{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00240{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);}
.m23_c00240{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6_c00240{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);}
.m42_c00240{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);}
.m17_c00240{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m36_c00240{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00240{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);}
.m2e_c00240{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7_c00240{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m44_c00240{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);}
.m0_c00240{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);}
.mb_c00240{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c00240{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);}
.m2c_c00240{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4_c00240{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m28_c00240{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.ma_c00240{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);}
.m31_c00240{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00240{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m27_c00240{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);}
.m3_c00240{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m5_c00240{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m9_c00240{transform:matrix(2.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.030000,0.000000,0.000000,0.250000,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;}
.fs2_c00240{font-size:3.456000px;}
.fs10_c00240{font-size:6.900000px;}
.fs7_c00240{font-size:10.380000px;}
.fs3_c00240{font-size:13.800000px;}
.fs11_c00240{font-size:17.280000px;}
.fs4_c00240{font-size:20.760000px;}
.fsf_c00240{font-size:27.660000px;}
.fs17_c00240{font-size:31.080000px;}
.fs1_c00240{font-size:34.560000px;}
.fs13_c00240{font-size:38.040000px;}
.fse_c00240{font-size:41.460000px;}
.fs15_c00240{font-size:44.940000px;}
.fs14_c00240{font-size:48.360000px;}
.fsa_c00240{font-size:51.840000px;}
.fs6_c00240{font-size:55.320000px;}
.fs5_c00240{font-size:58.740000px;}
.fsd_c00240{font-size:62.220000px;}
.fsc_c00240{font-size:65.640000px;}
.fs0_c00240{font-size:69.120000px;}
.fs12_c00240{font-size:72.600000px;}
.fs8_c00240{font-size:76.020000px;}
.fs9_c00240{font-size:79.500000px;}
.fsb_c00240{font-size:82.920000px;}
.fs16_c00240{font-size:86.400000px;}
.y0_c00240{bottom:0.000000px;}
.y41_c00240{bottom:235.005000px;}
.y43_c00240{bottom:238.470000px;}
.y40_c00240{bottom:241.050000px;}
.y42_c00240{bottom:242.790000px;}
.y3b_c00240{bottom:257.475000px;}
.y3d_c00240{bottom:258.330000px;}
.y3e_c00240{bottom:259.200000px;}
.y3f_c00240{bottom:260.925000px;}
.y3a_c00240{bottom:261.795000px;}
.y3c_c00240{bottom:262.650000px;}
.y33_c00240{bottom:276.480000px;}
.y35_c00240{bottom:278.205000px;}
.y36_c00240{bottom:279.075000px;}
.y34_c00240{bottom:280.800000px;}
.y37_c00240{bottom:285.120000px;}
.y38_c00240{bottom:287.715000px;}
.y39_c00240{bottom:288.570000px;}
.y2e_c00240{bottom:300.675000px;}
.y2c_c00240{bottom:301.530000px;}
.y2d_c00240{bottom:303.270000px;}
.y2f_c00240{bottom:304.125000px;}
.y30_c00240{bottom:304.995000px;}
.y31_c00240{bottom:305.850000px;}
.y32_c00240{bottom:306.720000px;}
.y27_c00240{bottom:317.955000px;}
.y29_c00240{bottom:318.810000px;}
.y28_c00240{bottom:321.405000px;}
.y24_c00240{bottom:324.000000px;}
.y2a_c00240{bottom:325.725000px;}
.y2b_c00240{bottom:326.595000px;}
.y22_c00240{bottom:333.510000px;}
.y23_c00240{bottom:338.685000px;}
.y25_c00240{bottom:340.410000px;}
.y26_c00240{bottom:342.150000px;}
.y1f_c00240{bottom:343.005000px;}
.y20_c00240{bottom:343.875000px;}
.y21_c00240{bottom:346.470000px;}
.y1d_c00240{bottom:361.155000px;}
.y1a_c00240{bottom:362.880000px;}
.y1c_c00240{bottom:365.475000px;}
.y1b_c00240{bottom:366.330000px;}
.y1e_c00240{bottom:367.200000px;}
.y15_c00240{bottom:381.885000px;}
.y17_c00240{bottom:385.350000px;}
.y16_c00240{bottom:386.205000px;}
.y18_c00240{bottom:387.075000px;}
.y19_c00240{bottom:387.930000px;}
.y10_c00240{bottom:400.035000px;}
.y13_c00240{bottom:402.630000px;}
.y12_c00240{bottom:405.210000px;}
.y11_c00240{bottom:406.950000px;}
.y14_c00240{bottom:407.805000px;}
.ya_c00240{bottom:419.040000px;}
.ye_c00240{bottom:421.635000px;}
.yb_c00240{bottom:422.490000px;}
.yd_c00240{bottom:423.360000px;}
.yf_c00240{bottom:429.405000px;}
.yc_c00240{bottom:437.190000px;}
.y7_c00240{bottom:446.685000px;}
.y8_c00240{bottom:448.410000px;}
.y9_c00240{bottom:449.280000px;}
.y6_c00240{bottom:453.600000px;}
.y2_c00240{bottom:568.515000px;}
.y5_c00240{bottom:747.360000px;}
.y3_c00240{bottom:1340.925000px;}
.y4_c00240{bottom:1341.795000px;}
.y1_c00240{bottom:1409.190000px;}
.h4_c00240{height:3.110063px;}
.h12_c00240{height:6.209326px;}
.h9_c00240{height:9.340986px;}
.h5_c00240{height:12.418652px;}
.h13_c00240{height:15.550313px;}
.h6_c00240{height:18.681973px;}
.h11_c00240{height:24.891299px;}
.h19_c00240{height:27.968965px;}
.h3_c00240{height:31.100625px;}
.h15_c00240{height:34.232285px;}
.h10_c00240{height:37.309951px;}
.h17_c00240{height:40.441611px;}
.h16_c00240{height:43.519277px;}
.hc_c00240{height:46.650937px;}
.h8_c00240{height:49.782598px;}
.h7_c00240{height:52.860264px;}
.hf_c00240{height:55.991924px;}
.he_c00240{height:59.069590px;}
.h2_c00240{height:62.201250px;}
.h14_c00240{height:65.332910px;}
.ha_c00240{height:68.410576px;}
.hb_c00240{height:71.542236px;}
.hd_c00240{height:74.619902px;}
.h18_c00240{height:77.751563px;}
.h1_c00240{height:1518.750000px;}
.h0_c00240{height:1518.915000px;}
.w1_c00240{width:1110.000000px;}
.w0_c00240{width:1110.240000px;}
.x0_c00240{left:0.000000px;}
.xb_c00240{left:236.730000px;}
.xc_c00240{left:245.370000px;}
.x14_c00240{left:258.330000px;}
.x2f_c00240{left:260.070000px;}
.x38_c00240{left:262.650000px;}
.xd_c00240{left:278.205000px;}
.x27_c00240{left:281.670000px;}
.xe_c00240{left:286.845000px;}
.x28_c00240{left:298.950000px;}
.x33_c00240{left:303.270000px;}
.x23_c00240{left:306.720000px;}
.x19_c00240{left:311.040000px;}
.x6_c00240{left:314.490000px;}
.x39_c00240{left:322.275000px;}
.x1f_c00240{left:327.450000px;}
.x7_c00240{left:333.510000px;}
.x1a_c00240{left:338.685000px;}
.x3e_c00240{left:341.280000px;}
.xf_c00240{left:344.730000px;}
.x2b_c00240{left:354.240000px;}
.x34_c00240{left:358.560000px;}
.x1b_c00240{left:360.285000px;}
.x30_c00240{left:368.070000px;}
.x10_c00240{left:380.160000px;}
.x24_c00240{left:381.885000px;}
.x3a_c00240{left:392.250000px;}
.x15_c00240{left:393.990000px;}
.x8_c00240{left:395.715000px;}
.x2c_c00240{left:398.310000px;}
.x31_c00240{left:400.890000px;}
.x20_c00240{left:406.080000px;}
.x3f_c00240{left:407.805000px;}
.x1c_c00240{left:412.125000px;}
.x1_c00240{left:425.085000px;}
.x25_c00240{left:430.275000px;}
.x29_c00240{left:432.870000px;}
.x9_c00240{left:434.595000px;}
.x11_c00240{left:440.640000px;}
.x1d_c00240{left:444.960000px;}
.x40_c00240{left:449.280000px;}
.x16_c00240{left:461.370000px;}
.x21_c00240{left:463.110000px;}
.x32_c00240{left:464.835000px;}
.x3b_c00240{left:470.880000px;}
.xa_c00240{left:476.070000px;}
.x12_c00240{left:489.030000px;}
.x2d_c00240{left:490.755000px;}
.x22_c00240{left:498.525000px;}
.x1e_c00240{left:505.440000px;}
.x17_c00240{left:513.210000px;}
.x2e_c00240{left:515.805000px;}
.x26_c00240{left:519.270000px;}
.x3c_c00240{left:527.910000px;}
.x18_c00240{left:531.360000px;}
.x3d_c00240{left:533.085000px;}
.x13_c00240{left:538.275000px;}
.x35_c00240{left:541.725000px;}
.x36_c00240{left:550.365000px;}
.x2a_c00240{left:552.960000px;}
.x37_c00240{left:557.280000px;}
.x2_c00240{left:954.720000px;}
.x5_c00240{left:1010.010000px;}
.x3_c00240{left:1042.845000px;}
.x4_c00240{left:1052.355000px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls0_c00240{letter-spacing:0.000000pt;}
.ws0_c00240{word-spacing:0.000000pt;}
.fs2_c00240{font-size:3.072000pt;}
.fs10_c00240{font-size:6.133333pt;}
.fs7_c00240{font-size:9.226667pt;}
.fs3_c00240{font-size:12.266667pt;}
.fs11_c00240{font-size:15.360000pt;}
.fs4_c00240{font-size:18.453333pt;}
.fsf_c00240{font-size:24.586667pt;}
.fs17_c00240{font-size:27.626667pt;}
.fs1_c00240{font-size:30.720000pt;}
.fs13_c00240{font-size:33.813333pt;}
.fse_c00240{font-size:36.853333pt;}
.fs15_c00240{font-size:39.946667pt;}
.fs14_c00240{font-size:42.986667pt;}
.fsa_c00240{font-size:46.080000pt;}
.fs6_c00240{font-size:49.173333pt;}
.fs5_c00240{font-size:52.213333pt;}
.fsd_c00240{font-size:55.306667pt;}
.fsc_c00240{font-size:58.346667pt;}
.fs0_c00240{font-size:61.440000pt;}
.fs12_c00240{font-size:64.533333pt;}
.fs8_c00240{font-size:67.573333pt;}
.fs9_c00240{font-size:70.666667pt;}
.fsb_c00240{font-size:73.706667pt;}
.fs16_c00240{font-size:76.800000pt;}
.y0_c00240{bottom:0.000000pt;}
.y41_c00240{bottom:208.893333pt;}
.y43_c00240{bottom:211.973333pt;}
.y40_c00240{bottom:214.266667pt;}
.y42_c00240{bottom:215.813333pt;}
.y3b_c00240{bottom:228.866667pt;}
.y3d_c00240{bottom:229.626667pt;}
.y3e_c00240{bottom:230.400000pt;}
.y3f_c00240{bottom:231.933333pt;}
.y3a_c00240{bottom:232.706667pt;}
.y3c_c00240{bottom:233.466667pt;}
.y33_c00240{bottom:245.760000pt;}
.y35_c00240{bottom:247.293333pt;}
.y36_c00240{bottom:248.066667pt;}
.y34_c00240{bottom:249.600000pt;}
.y37_c00240{bottom:253.440000pt;}
.y38_c00240{bottom:255.746667pt;}
.y39_c00240{bottom:256.506667pt;}
.y2e_c00240{bottom:267.266667pt;}
.y2c_c00240{bottom:268.026667pt;}
.y2d_c00240{bottom:269.573333pt;}
.y2f_c00240{bottom:270.333333pt;}
.y30_c00240{bottom:271.106667pt;}
.y31_c00240{bottom:271.866667pt;}
.y32_c00240{bottom:272.640000pt;}
.y27_c00240{bottom:282.626667pt;}
.y29_c00240{bottom:283.386667pt;}
.y28_c00240{bottom:285.693333pt;}
.y24_c00240{bottom:288.000000pt;}
.y2a_c00240{bottom:289.533333pt;}
.y2b_c00240{bottom:290.306667pt;}
.y22_c00240{bottom:296.453333pt;}
.y23_c00240{bottom:301.053333pt;}
.y25_c00240{bottom:302.586667pt;}
.y26_c00240{bottom:304.133333pt;}
.y1f_c00240{bottom:304.893333pt;}
.y20_c00240{bottom:305.666667pt;}
.y21_c00240{bottom:307.973333pt;}
.y1d_c00240{bottom:321.026667pt;}
.y1a_c00240{bottom:322.560000pt;}
.y1c_c00240{bottom:324.866667pt;}
.y1b_c00240{bottom:325.626667pt;}
.y1e_c00240{bottom:326.400000pt;}
.y15_c00240{bottom:339.453333pt;}
.y17_c00240{bottom:342.533333pt;}
.y16_c00240{bottom:343.293333pt;}
.y18_c00240{bottom:344.066667pt;}
.y19_c00240{bottom:344.826667pt;}
.y10_c00240{bottom:355.586667pt;}
.y13_c00240{bottom:357.893333pt;}
.y12_c00240{bottom:360.186667pt;}
.y11_c00240{bottom:361.733333pt;}
.y14_c00240{bottom:362.493333pt;}
.ya_c00240{bottom:372.480000pt;}
.ye_c00240{bottom:374.786667pt;}
.yb_c00240{bottom:375.546667pt;}
.yd_c00240{bottom:376.320000pt;}
.yf_c00240{bottom:381.693333pt;}
.yc_c00240{bottom:388.613333pt;}
.y7_c00240{bottom:397.053333pt;}
.y8_c00240{bottom:398.586667pt;}
.y9_c00240{bottom:399.360000pt;}
.y6_c00240{bottom:403.200000pt;}
.y2_c00240{bottom:505.346667pt;}
.y5_c00240{bottom:664.320000pt;}
.y3_c00240{bottom:1191.933333pt;}
.y4_c00240{bottom:1192.706667pt;}
.y1_c00240{bottom:1252.613333pt;}
.h4_c00240{height:2.764500pt;}
.h12_c00240{height:5.519401pt;}
.h9_c00240{height:8.303099pt;}
.h5_c00240{height:11.038802pt;}
.h13_c00240{height:13.822500pt;}
.h6_c00240{height:16.606198pt;}
.h11_c00240{height:22.125599pt;}
.h19_c00240{height:24.861302pt;}
.h3_c00240{height:27.645000pt;}
.h15_c00240{height:30.428698pt;}
.h10_c00240{height:33.164401pt;}
.h17_c00240{height:35.948099pt;}
.h16_c00240{height:38.683802pt;}
.hc_c00240{height:41.467500pt;}
.h8_c00240{height:44.251198pt;}
.h7_c00240{height:46.986901pt;}
.hf_c00240{height:49.770599pt;}
.he_c00240{height:52.506302pt;}
.h2_c00240{height:55.290000pt;}
.h14_c00240{height:58.073698pt;}
.ha_c00240{height:60.809401pt;}
.hb_c00240{height:63.593099pt;}
.hd_c00240{height:66.328802pt;}
.h18_c00240{height:69.112500pt;}
.h1_c00240{height:1350.000000pt;}
.h0_c00240{height:1350.146667pt;}
.w1_c00240{width:986.666667pt;}
.w0_c00240{width:986.880000pt;}
.x0_c00240{left:0.000000pt;}
.xb_c00240{left:210.426667pt;}
.xc_c00240{left:218.106667pt;}
.x14_c00240{left:229.626667pt;}
.x2f_c00240{left:231.173333pt;}
.x38_c00240{left:233.466667pt;}
.xd_c00240{left:247.293333pt;}
.x27_c00240{left:250.373333pt;}
.xe_c00240{left:254.973333pt;}
.x28_c00240{left:265.733333pt;}
.x33_c00240{left:269.573333pt;}
.x23_c00240{left:272.640000pt;}
.x19_c00240{left:276.480000pt;}
.x6_c00240{left:279.546667pt;}
.x39_c00240{left:286.466667pt;}
.x1f_c00240{left:291.066667pt;}
.x7_c00240{left:296.453333pt;}
.x1a_c00240{left:301.053333pt;}
.x3e_c00240{left:303.360000pt;}
.xf_c00240{left:306.426667pt;}
.x2b_c00240{left:314.880000pt;}
.x34_c00240{left:318.720000pt;}
.x1b_c00240{left:320.253333pt;}
.x30_c00240{left:327.173333pt;}
.x10_c00240{left:337.920000pt;}
.x24_c00240{left:339.453333pt;}
.x3a_c00240{left:348.666667pt;}
.x15_c00240{left:350.213333pt;}
.x8_c00240{left:351.746667pt;}
.x2c_c00240{left:354.053333pt;}
.x31_c00240{left:356.346667pt;}
.x20_c00240{left:360.960000pt;}
.x3f_c00240{left:362.493333pt;}
.x1c_c00240{left:366.333333pt;}
.x1_c00240{left:377.853333pt;}
.x25_c00240{left:382.466667pt;}
.x29_c00240{left:384.773333pt;}
.x9_c00240{left:386.306667pt;}
.x11_c00240{left:391.680000pt;}
.x1d_c00240{left:395.520000pt;}
.x40_c00240{left:399.360000pt;}
.x16_c00240{left:410.106667pt;}
.x21_c00240{left:411.653333pt;}
.x32_c00240{left:413.186667pt;}
.x3b_c00240{left:418.560000pt;}
.xa_c00240{left:423.173333pt;}
.x12_c00240{left:434.693333pt;}
.x2d_c00240{left:436.226667pt;}
.x22_c00240{left:443.133333pt;}
.x1e_c00240{left:449.280000pt;}
.x17_c00240{left:456.186667pt;}
.x2e_c00240{left:458.493333pt;}
.x26_c00240{left:461.573333pt;}
.x3c_c00240{left:469.253333pt;}
.x18_c00240{left:472.320000pt;}
.x3d_c00240{left:473.853333pt;}
.x13_c00240{left:478.466667pt;}
.x35_c00240{left:481.533333pt;}
.x36_c00240{left:489.213333pt;}
.x2a_c00240{left:491.520000pt;}
.x37_c00240{left:495.360000pt;}
.x2_c00240{left:848.640000pt;}
.x5_c00240{left:897.786667pt;}
.x3_c00240{left:926.973333pt;}
.x4_c00240{left:935.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6f1d88337a1b51c7dbda43d.woff2')format("woff");}.ff1_c00241{font-family:ff1_c00241;line-height:1.109863;font-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_c00241{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mf_c00241{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c00241{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);}
.m3_c00241{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c00241{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c00241{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);}
.m8_c00241{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);}
.m6_c00241{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);}
.m9_c00241{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.ma_c00241{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mc_c00241{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m7_c00241{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);}
.m4_c00241{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c00241{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m2_c00241{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c00241{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,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;}
.fs1_c00241{font-size:3.456000px;}
.fs2_c00241{font-size:13.800000px;}
.fs3_c00241{font-size:17.280000px;}
.fs0_c00241{font-size:20.760000px;}
.fs4_c00241{font-size:27.660000px;}
.fs9_c00241{font-size:34.560000px;}
.fs6_c00241{font-size:51.840000px;}
.fs5_c00241{font-size:55.320000px;}
.fs7_c00241{font-size:58.740000px;}
.fs8_c00241{font-size:62.220000px;}
.y0_c00241{bottom:0.000000px;}
.y1_c00241{bottom:518.400000px;}
.yc_c00241{bottom:716.250000px;}
.ya_c00241{bottom:718.845000px;}
.yb_c00241{bottom:724.890000px;}
.y7_c00241{bottom:742.170000px;}
.y8_c00241{bottom:743.040000px;}
.y9_c00241{bottom:743.910000px;}
.y6_c00241{bottom:770.685000px;}
.y5_c00241{bottom:928.800000px;}
.y4_c00241{bottom:934.845000px;}
.y2_c00241{bottom:1334.880000px;}
.y3_c00241{bottom:1335.750000px;}
.h3_c00241{height:3.110063px;}
.h4_c00241{height:12.418652px;}
.h5_c00241{height:15.550313px;}
.h2_c00241{height:18.681973px;}
.h6_c00241{height:24.891299px;}
.hb_c00241{height:31.100625px;}
.h8_c00241{height:46.650937px;}
.h7_c00241{height:49.782598px;}
.h9_c00241{height:52.860264px;}
.ha_c00241{height:55.991924px;}
.h1_c00241{height:1503.000000px;}
.h0_c00241{height:1503.360000px;}
.w0_c00241{width:1096.410000px;}
.w1_c00241{width:1096.500000px;}
.x0_c00241{left:0.000000px;}
.x1_c00241{left:5.190000px;}
.x2_c00241{left:142.560000px;}
.x3_c00241{left:152.070000px;}
.x4_c00241{left:193.530000px;}
.x5_c00241{left:199.590000px;}
.xd_c00241{left:304.995000px;}
.xe_c00241{left:433.725000px;}
.xf_c00241{left:435.450000px;}
.x10_c00241{left:461.370000px;}
.x7_c00241{left:616.035000px;}
.x8_c00241{left:640.230000px;}
.x9_c00241{left:663.555000px;}
.xa_c00241{left:687.750000px;}
.x6_c00241{left:693.795000px;}
.xb_c00241{left:700.710000px;}
.xc_c00241{left:720.570000px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls0_c00241{letter-spacing:0.000000pt;}
.ws0_c00241{word-spacing:0.000000pt;}
.fs1_c00241{font-size:3.072000pt;}
.fs2_c00241{font-size:12.266667pt;}
.fs3_c00241{font-size:15.360000pt;}
.fs0_c00241{font-size:18.453333pt;}
.fs4_c00241{font-size:24.586667pt;}
.fs9_c00241{font-size:30.720000pt;}
.fs6_c00241{font-size:46.080000pt;}
.fs5_c00241{font-size:49.173333pt;}
.fs7_c00241{font-size:52.213333pt;}
.fs8_c00241{font-size:55.306667pt;}
.y0_c00241{bottom:0.000000pt;}
.y1_c00241{bottom:460.800000pt;}
.yc_c00241{bottom:636.666667pt;}
.ya_c00241{bottom:638.973333pt;}
.yb_c00241{bottom:644.346667pt;}
.y7_c00241{bottom:659.706667pt;}
.y8_c00241{bottom:660.480000pt;}
.y9_c00241{bottom:661.253333pt;}
.y6_c00241{bottom:685.053333pt;}
.y5_c00241{bottom:825.600000pt;}
.y4_c00241{bottom:830.973333pt;}
.y2_c00241{bottom:1186.560000pt;}
.y3_c00241{bottom:1187.333333pt;}
.h3_c00241{height:2.764500pt;}
.h4_c00241{height:11.038802pt;}
.h5_c00241{height:13.822500pt;}
.h2_c00241{height:16.606198pt;}
.h6_c00241{height:22.125599pt;}
.hb_c00241{height:27.645000pt;}
.h8_c00241{height:41.467500pt;}
.h7_c00241{height:44.251198pt;}
.h9_c00241{height:46.986901pt;}
.ha_c00241{height:49.770599pt;}
.h1_c00241{height:1336.000000pt;}
.h0_c00241{height:1336.320000pt;}
.w0_c00241{width:974.586667pt;}
.w1_c00241{width:974.666667pt;}
.x0_c00241{left:0.000000pt;}
.x1_c00241{left:4.613333pt;}
.x2_c00241{left:126.720000pt;}
.x3_c00241{left:135.173333pt;}
.x4_c00241{left:172.026667pt;}
.x5_c00241{left:177.413333pt;}
.xd_c00241{left:271.106667pt;}
.xe_c00241{left:385.533333pt;}
.xf_c00241{left:387.066667pt;}
.x10_c00241{left:410.106667pt;}
.x7_c00241{left:547.586667pt;}
.x8_c00241{left:569.093333pt;}
.x9_c00241{left:589.826667pt;}
.xa_c00241{left:611.333333pt;}
.x6_c00241{left:616.706667pt;}
.xb_c00241{left:622.853333pt;}
.xc_c00241{left:640.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_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_265e2e085e9c3a16fc139f5e.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.109863;font-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_c00242{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.md_c00242{transform:matrix(0.023450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023450,0.000000,0.000000,0.250000,0,0);}
.mb_c00242{transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);}
.m7_c00242{transform:matrix(0.045050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045050,0.000000,0.000000,0.250000,0,0);}
.ma_c00242{transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);}
.m8_c00242{transform:matrix(0.059575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059575,0.000000,0.000000,0.250000,0,0);}
.mc_c00242{transform:matrix(0.072200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072200,0.000000,0.000000,0.250000,0,0);}
.me_c00242{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m1_c00242{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.m0_c00242{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c00242{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);}
.m3_c00242{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);}
.m4_c00242{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);}
.m9_c00242{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m6_c00242{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.v0_c00242{vertical-align:0.000000px;}
.v1_c00242{vertical-align:3.480000px;}
.ls1_c00242{letter-spacing:0.000000px;}
.ls0_c00242{letter-spacing:53.001021px;}
.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;}
.fs0_c00242{font-size:3.456000px;}
.fsb_c00242{font-size:6.900000px;}
.fs8_c00242{font-size:10.380000px;}
.fs1_c00242{font-size:13.800000px;}
.fs3_c00242{font-size:17.280000px;}
.fs2_c00242{font-size:20.760000px;}
.fs5_c00242{font-size:27.660000px;}
.fs4_c00242{font-size:34.560000px;}
.fs9_c00242{font-size:62.220000px;}
.fsc_c00242{font-size:86.400000px;}
.fsa_c00242{font-size:93.300000px;}
.fsd_c00242{font-size:110.580000px;}
.fs6_c00242{font-size:172.800000px;}
.fs7_c00242{font-size:217.740000px;}
.y0_c00242{bottom:0.000000px;}
.y11_c00242{bottom:1024.710000px;}
.y10_c00242{bottom:1035.075000px;}
.yf_c00242{bottom:1063.590000px;}
.ye_c00242{bottom:1081.725000px;}
.yd_c00242{bottom:1086.915000px;}
.yb_c00242{bottom:1111.965000px;}
.yc_c00242{bottom:1120.605000px;}
.y9_c00242{bottom:1200.090000px;}
.ya_c00242{bottom:1229.475000px;}
.y8_c00242{bottom:1256.250000px;}
.y7_c00242{bottom:1304.640000px;}
.y6_c00242{bottom:1315.875000px;}
.y4_c00242{bottom:1323.645000px;}
.y5_c00242{bottom:1326.240000px;}
.y3_c00242{bottom:1337.475000px;}
.y2_c00242{bottom:1367.715000px;}
.y1_c00242{bottom:1373.760000px;}
.hd_c00242{height:6.209326px;}
.ha_c00242{height:9.340986px;}
.h4_c00242{height:12.418652px;}
.h5_c00242{height:15.550313px;}
.h2_c00242{height:15.898652px;}
.h3_c00242{height:18.681973px;}
.h7_c00242{height:24.891299px;}
.h6_c00242{height:31.100625px;}
.hb_c00242{height:55.991924px;}
.he_c00242{height:77.751563px;}
.hc_c00242{height:83.960889px;}
.hf_c00242{height:99.511201px;}
.h8_c00242{height:155.503125px;}
.h9_c00242{height:195.944736px;}
.h0_c00242{height:1509.405000px;}
.h1_c00242{height:1509.750000px;}
.w1_c00242{width:1104.000000px;}
.w0_c00242{width:1104.195000px;}
.x0_c00242{left:0.000000px;}
.x3_c00242{left:965.955000px;}
.x4_c00242{left:970.275000px;}
.x8_c00242{left:978.915000px;}
.x5_c00242{left:987.555000px;}
.x2_c00242{left:989.280000px;}
.x6_c00242{left:997.920000px;}
.x7_c00242{left:1003.110000px;}
.x1_c00242{left:1076.550000px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.v1_c00242{vertical-align:3.093333pt;}
.ls1_c00242{letter-spacing:0.000000pt;}
.ls0_c00242{letter-spacing:47.112019pt;}
.ws0_c00242{word-spacing:0.000000pt;}
.fs0_c00242{font-size:3.072000pt;}
.fsb_c00242{font-size:6.133333pt;}
.fs8_c00242{font-size:9.226667pt;}
.fs1_c00242{font-size:12.266667pt;}
.fs3_c00242{font-size:15.360000pt;}
.fs2_c00242{font-size:18.453333pt;}
.fs5_c00242{font-size:24.586667pt;}
.fs4_c00242{font-size:30.720000pt;}
.fs9_c00242{font-size:55.306667pt;}
.fsc_c00242{font-size:76.800000pt;}
.fsa_c00242{font-size:82.933333pt;}
.fsd_c00242{font-size:98.293333pt;}
.fs6_c00242{font-size:153.600000pt;}
.fs7_c00242{font-size:193.546667pt;}
.y0_c00242{bottom:0.000000pt;}
.y11_c00242{bottom:910.853333pt;}
.y10_c00242{bottom:920.066667pt;}
.yf_c00242{bottom:945.413333pt;}
.ye_c00242{bottom:961.533333pt;}
.yd_c00242{bottom:966.146667pt;}
.yb_c00242{bottom:988.413333pt;}
.yc_c00242{bottom:996.093333pt;}
.y9_c00242{bottom:1066.746667pt;}
.ya_c00242{bottom:1092.866667pt;}
.y8_c00242{bottom:1116.666667pt;}
.y7_c00242{bottom:1159.680000pt;}
.y6_c00242{bottom:1169.666667pt;}
.y4_c00242{bottom:1176.573333pt;}
.y5_c00242{bottom:1178.880000pt;}
.y3_c00242{bottom:1188.866667pt;}
.y2_c00242{bottom:1215.746667pt;}
.y1_c00242{bottom:1221.120000pt;}
.hd_c00242{height:5.519401pt;}
.ha_c00242{height:8.303099pt;}
.h4_c00242{height:11.038802pt;}
.h5_c00242{height:13.822500pt;}
.h2_c00242{height:14.132135pt;}
.h3_c00242{height:16.606198pt;}
.h7_c00242{height:22.125599pt;}
.h6_c00242{height:27.645000pt;}
.hb_c00242{height:49.770599pt;}
.he_c00242{height:69.112500pt;}
.hc_c00242{height:74.631901pt;}
.hf_c00242{height:88.454401pt;}
.h8_c00242{height:138.225000pt;}
.h9_c00242{height:174.173099pt;}
.h0_c00242{height:1341.693333pt;}
.h1_c00242{height:1342.000000pt;}
.w1_c00242{width:981.333333pt;}
.w0_c00242{width:981.506667pt;}
.x0_c00242{left:0.000000pt;}
.x3_c00242{left:858.626667pt;}
.x4_c00242{left:862.466667pt;}
.x8_c00242{left:870.146667pt;}
.x5_c00242{left:877.826667pt;}
.x2_c00242{left:879.360000pt;}
.x6_c00242{left:887.040000pt;}
.x7_c00242{left:891.653333pt;}
.x1_c00242{left:956.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_db607f00c95a6598cd39697b.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.109863;font-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_c00243{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);}
.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;}
.fs0_c00243{font-size:600.000000px;}
.y0_c00243{bottom:0.000000px;}
.y1_c00243{bottom:15.000000px;}
.h2_c00243{height:539.941406px;}
.h0_c00243{height:1509.405000px;}
.h1_c00243{height:1509.750000px;}
.w0_c00243{width:1113.690000px;}
.w1_c00243{width:1113.750000px;}
.x0_c00243{left:0.000000px;}
.x1_c00243{left:15.000000px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls0_c00243{letter-spacing:0.000000pt;}
.ws0_c00243{word-spacing:0.000000pt;}
.fs0_c00243{font-size:533.333333pt;}
.y0_c00243{bottom:0.000000pt;}
.y1_c00243{bottom:13.333333pt;}
.h2_c00243{height:479.947917pt;}
.h0_c00243{height:1341.693333pt;}
.h1_c00243{height:1342.000000pt;}
.w0_c00243{width:989.946667pt;}
.w1_c00243{width:990.000000pt;}
.x0_c00243{left:0.000000pt;}
.x1_c00243{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_65b76cd0e22a28e4cbc6b5e8.woff2')format("woff");}.ff1_c00244{font-family:ff1_c00244;line-height:1.109863;font-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_c00244{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);}
.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;}
.fs0_c00244{font-size:600.000000px;}
.y0_c00244{bottom:0.000000px;}
.y1_c00244{bottom:15.000000px;}
.h2_c00244{height:539.941406px;}
.h0_c00244{height:1509.405000px;}
.h1_c00244{height:1509.750000px;}
.w1_c00244{width:1104.000000px;}
.w0_c00244{width:1104.195000px;}
.x0_c00244{left:0.000000px;}
.x1_c00244{left:15.000000px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls0_c00244{letter-spacing:0.000000pt;}
.ws0_c00244{word-spacing:0.000000pt;}
.fs0_c00244{font-size:533.333333pt;}
.y0_c00244{bottom:0.000000pt;}
.y1_c00244{bottom:13.333333pt;}
.h2_c00244{height:479.947917pt;}
.h0_c00244{height:1341.693333pt;}
.h1_c00244{height:1342.000000pt;}
.w1_c00244{width:981.333333pt;}
.w0_c00244{width:981.506667pt;}
.x0_c00244{left:0.000000pt;}
.x1_c00244{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00245;src:url('chunks/assets/font_f853ee35ddcf6d0e1b2a5655.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.109863;font-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_c00245{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c00245{transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);}
.m1_c00245{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m3_c00245{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m0_c00245{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00245{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c00245{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00245{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6_c00245{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);}
.m9_c00245{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.ma_c00245{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4_c00245{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c00245{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.v0_c00245{vertical-align:0.000000px;}
.ls0_c00245{letter-spacing:0.000000px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00245{word-spacing:0.000000px;}
.fc0_c00245{color:transparent;}
.fs0_c00245{font-size:3.456000px;}
.fs2_c00245{font-size:6.000000px;}
.fs6_c00245{font-size:10.380000px;}
.fs3_c00245{font-size:17.280000px;}
.fs7_c00245{font-size:24.180000px;}
.fs1_c00245{font-size:34.560000px;}
.fs4_c00245{font-size:51.840000px;}
.fs5_c00245{font-size:55.320000px;}
.y0_c00245{bottom:0.000000px;}
.y3_c00245{bottom:571.110000px;}
.y2_c00245{bottom:578.880000px;}
.yd_c00245{bottom:673.920000px;}
.yc_c00245{bottom:674.790000px;}
.y1_c00245{bottom:1302.915000px;}
.y7_c00245{bottom:1389.315000px;}
.y8_c00245{bottom:1390.170000px;}
.y9_c00245{bottom:1391.040000px;}
.ya_c00245{bottom:1391.910000px;}
.yb_c00245{bottom:1392.765000px;}
.y5_c00245{bottom:1407.450000px;}
.y4_c00245{bottom:1409.190000px;}
.y6_c00245{bottom:1425.600000px;}
.h2_c00245{height:3.110063px;}
.h4_c00245{height:5.399414px;}
.h8_c00245{height:9.340986px;}
.h5_c00245{height:15.550313px;}
.h9_c00245{height:21.759639px;}
.h3_c00245{height:31.100625px;}
.h6_c00245{height:46.650937px;}
.h7_c00245{height:49.782598px;}
.h1_c00245{height:1507.500000px;}
.h0_c00245{height:1507.680000px;}
.w0_c00245{width:1113.690000px;}
.w1_c00245{width:1113.750000px;}
.x0_c00245{left:0.000000px;}
.x1_c00245{left:1.725000px;}
.x2_c00245{left:10.365000px;}
.x3_c00245{left:72.570000px;}
.x4_c00245{left:92.445000px;}
.x11_c00245{left:151.200000px;}
.x12_c00245{left:161.565000px;}
.x5_c00245{left:206.490000px;}
.x6_c00245{left:220.320000px;}
.x8_c00245{left:436.320000px;}
.x7_c00245{left:455.325000px;}
.x9_c00245{left:462.240000px;}
.xa_c00245{left:488.160000px;}
.xb_c00245{left:515.805000px;}
.xc_c00245{left:532.230000px;}
.xd_c00245{left:556.410000px;}
.xe_c00245{left:572.835000px;}
.xf_c00245{left:613.440000px;}
.x10_c00245{left:629.850000px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls0_c00245{letter-spacing:0.000000pt;}
.ws0_c00245{word-spacing:0.000000pt;}
.fs0_c00245{font-size:3.072000pt;}
.fs2_c00245{font-size:5.333333pt;}
.fs6_c00245{font-size:9.226667pt;}
.fs3_c00245{font-size:15.360000pt;}
.fs7_c00245{font-size:21.493333pt;}
.fs1_c00245{font-size:30.720000pt;}
.fs4_c00245{font-size:46.080000pt;}
.fs5_c00245{font-size:49.173333pt;}
.y0_c00245{bottom:0.000000pt;}
.y3_c00245{bottom:507.653333pt;}
.y2_c00245{bottom:514.560000pt;}
.yd_c00245{bottom:599.040000pt;}
.yc_c00245{bottom:599.813333pt;}
.y1_c00245{bottom:1158.146667pt;}
.y7_c00245{bottom:1234.946667pt;}
.y8_c00245{bottom:1235.706667pt;}
.y9_c00245{bottom:1236.480000pt;}
.ya_c00245{bottom:1237.253333pt;}
.yb_c00245{bottom:1238.013333pt;}
.y5_c00245{bottom:1251.066667pt;}
.y4_c00245{bottom:1252.613333pt;}
.y6_c00245{bottom:1267.200000pt;}
.h2_c00245{height:2.764500pt;}
.h4_c00245{height:4.799479pt;}
.h8_c00245{height:8.303099pt;}
.h5_c00245{height:13.822500pt;}
.h9_c00245{height:19.341901pt;}
.h3_c00245{height:27.645000pt;}
.h6_c00245{height:41.467500pt;}
.h7_c00245{height:44.251198pt;}
.h1_c00245{height:1340.000000pt;}
.h0_c00245{height:1340.160000pt;}
.w0_c00245{width:989.946667pt;}
.w1_c00245{width:990.000000pt;}
.x0_c00245{left:0.000000pt;}
.x1_c00245{left:1.533333pt;}
.x2_c00245{left:9.213333pt;}
.x3_c00245{left:64.506667pt;}
.x4_c00245{left:82.173333pt;}
.x11_c00245{left:134.400000pt;}
.x12_c00245{left:143.613333pt;}
.x5_c00245{left:183.546667pt;}
.x6_c00245{left:195.840000pt;}
.x8_c00245{left:387.840000pt;}
.x7_c00245{left:404.733333pt;}
.x9_c00245{left:410.880000pt;}
.xa_c00245{left:433.920000pt;}
.xb_c00245{left:458.493333pt;}
.xc_c00245{left:473.093333pt;}
.xd_c00245{left:494.586667pt;}
.xe_c00245{left:509.186667pt;}
.xf_c00245{left:545.280000pt;}
.x10_c00245{left:559.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_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_d5838a697c04c2b2d445f1cd.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.109863;font-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_c00246{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);}
.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;}
.fs0_c00246{font-size:600.000000px;}
.y0_c00246{bottom:0.000000px;}
.y1_c00246{bottom:15.000000px;}
.h2_c00246{height:539.941406px;}
.h0_c00246{height:1509.405000px;}
.h1_c00246{height:1509.750000px;}
.w1_c00246{width:1104.000000px;}
.w0_c00246{width:1104.195000px;}
.x0_c00246{left:0.000000px;}
.x1_c00246{left:15.000000px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls0_c00246{letter-spacing:0.000000pt;}
.ws0_c00246{word-spacing:0.000000pt;}
.fs0_c00246{font-size:533.333333pt;}
.y0_c00246{bottom:0.000000pt;}
.y1_c00246{bottom:13.333333pt;}
.h2_c00246{height:479.947917pt;}
.h0_c00246{height:1341.693333pt;}
.h1_c00246{height:1342.000000pt;}
.w1_c00246{width:981.333333pt;}
.w0_c00246{width:981.506667pt;}
.x0_c00246{left:0.000000pt;}
.x1_c00246{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d68b43c99dea78334da3c32f.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.109863;font-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_c00247{transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);}
.m2_c00247{transform:matrix(0.063175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063175,0.000000,0.000000,0.250000,0,0);}
.m0_c00247{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,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;}
.fs0_c00247{font-size:69.120000px;}
.fs1_c00247{font-size:93.300000px;}
.fs2_c00247{font-size:345.600000px;}
.y0_c00247{bottom:0.000000px;}
.y3_c00247{bottom:623.805000px;}
.y2_c00247{bottom:711.075000px;}
.y1_c00247{bottom:1393.635000px;}
.h2_c00247{height:62.201250px;}
.h3_c00247{height:83.960889px;}
.h4_c00247{height:311.006250px;}
.h1_c00247{height:1502.250000px;}
.h0_c00247{height:1502.490000px;}
.w0_c00247{width:1113.690000px;}
.w1_c00247{width:1113.750000px;}
.x0_c00247{left:0.000000px;}
.x3_c00247{left:112.320000px;}
.x2_c00247{left:114.045000px;}
.x1_c00247{left:457.920000px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ws0_c00247{word-spacing:0.000000pt;}
.fs0_c00247{font-size:61.440000pt;}
.fs1_c00247{font-size:82.933333pt;}
.fs2_c00247{font-size:307.200000pt;}
.y0_c00247{bottom:0.000000pt;}
.y3_c00247{bottom:554.493333pt;}
.y2_c00247{bottom:632.066667pt;}
.y1_c00247{bottom:1238.786667pt;}
.h2_c00247{height:55.290000pt;}
.h3_c00247{height:74.631901pt;}
.h4_c00247{height:276.450000pt;}
.h1_c00247{height:1335.333333pt;}
.h0_c00247{height:1335.546667pt;}
.w0_c00247{width:989.946667pt;}
.w1_c00247{width:990.000000pt;}
.x0_c00247{left:0.000000pt;}
.x3_c00247{left:99.840000pt;}
.x2_c00247{left:101.373333pt;}
.x1_c00247{left:407.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_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_5e82989f679a9dc668dd25a6.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.109863;font-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_c00248{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c00248{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);}
.m6_c00248{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00248{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);}
.m1_c00248{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);}
.m4_c00248{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2_c00248{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m0_c00248{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m8_c00248{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,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;}
.fs5_c00248{font-size:3.456000px;}
.fs6_c00248{font-size:13.800000px;}
.fs0_c00248{font-size:17.280000px;}
.fs1_c00248{font-size:20.760000px;}
.fs8_c00248{font-size:31.080000px;}
.fs2_c00248{font-size:38.040000px;}
.fs3_c00248{font-size:51.840000px;}
.fs4_c00248{font-size:65.640000px;}
.fs7_c00248{font-size:183.180000px;}
.y0_c00248{bottom:0.000000px;}
.y9_c00248{bottom:714.525000px;}
.y8_c00248{bottom:870.045000px;}
.y7_c00248{bottom:889.050000px;}
.y6_c00248{bottom:893.370000px;}
.y5_c00248{bottom:950.400000px;}
.y4_c00248{bottom:1092.960000px;}
.y1_c00248{bottom:1319.325000px;}
.y3_c00248{bottom:1369.440000px;}
.y2_c00248{bottom:1391.910000px;}
.h7_c00248{height:3.110063px;}
.h8_c00248{height:12.418652px;}
.h2_c00248{height:15.550313px;}
.h3_c00248{height:18.681973px;}
.ha_c00248{height:27.968965px;}
.h4_c00248{height:34.232285px;}
.h5_c00248{height:46.650937px;}
.h6_c00248{height:59.069590px;}
.h9_c00248{height:164.844111px;}
.h0_c00248{height:1509.405000px;}
.h1_c00248{height:1509.750000px;}
.w1_c00248{width:1104.000000px;}
.w0_c00248{width:1104.195000px;}
.x0_c00248{left:0.000000px;}
.x6_c00248{left:912.390000px;}
.x7_c00248{left:918.435000px;}
.x9_c00248{left:927.930000px;}
.x1_c00248{left:929.670000px;}
.x8_c00248{left:990.150000px;}
.x2_c00248{left:1022.970000px;}
.x3_c00248{left:1045.440000px;}
.x4_c00248{left:1055.805000px;}
.x5_c00248{left:1086.915000px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls0_c00248{letter-spacing:0.000000pt;}
.ws0_c00248{word-spacing:0.000000pt;}
.fs5_c00248{font-size:3.072000pt;}
.fs6_c00248{font-size:12.266667pt;}
.fs0_c00248{font-size:15.360000pt;}
.fs1_c00248{font-size:18.453333pt;}
.fs8_c00248{font-size:27.626667pt;}
.fs2_c00248{font-size:33.813333pt;}
.fs3_c00248{font-size:46.080000pt;}
.fs4_c00248{font-size:58.346667pt;}
.fs7_c00248{font-size:162.826667pt;}
.y0_c00248{bottom:0.000000pt;}
.y9_c00248{bottom:635.133333pt;}
.y8_c00248{bottom:773.373333pt;}
.y7_c00248{bottom:790.266667pt;}
.y6_c00248{bottom:794.106667pt;}
.y5_c00248{bottom:844.800000pt;}
.y4_c00248{bottom:971.520000pt;}
.y1_c00248{bottom:1172.733333pt;}
.y3_c00248{bottom:1217.280000pt;}
.y2_c00248{bottom:1237.253333pt;}
.h7_c00248{height:2.764500pt;}
.h8_c00248{height:11.038802pt;}
.h2_c00248{height:13.822500pt;}
.h3_c00248{height:16.606198pt;}
.ha_c00248{height:24.861302pt;}
.h4_c00248{height:30.428698pt;}
.h5_c00248{height:41.467500pt;}
.h6_c00248{height:52.506302pt;}
.h9_c00248{height:146.528099pt;}
.h0_c00248{height:1341.693333pt;}
.h1_c00248{height:1342.000000pt;}
.w1_c00248{width:981.333333pt;}
.w0_c00248{width:981.506667pt;}
.x0_c00248{left:0.000000pt;}
.x6_c00248{left:811.013333pt;}
.x7_c00248{left:816.386667pt;}
.x9_c00248{left:824.826667pt;}
.x1_c00248{left:826.373333pt;}
.x8_c00248{left:880.133333pt;}
.x2_c00248{left:909.306667pt;}
.x3_c00248{left:929.280000pt;}
.x4_c00248{left:938.493333pt;}
.x5_c00248{left:966.146667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00249;src:url('chunks/assets/font_ffc7325eec7070b70b6159e5.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.109863;font-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_c00249{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb_c00249{transform:matrix(0.054700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054700,0.000000,0.000000,0.250000,0,0);}
.m8_c00249{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00249{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m1d_c00249{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);}
.m17_c00249{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);}
.m13_c00249{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);}
.m15_c00249{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);}
.m1e_c00249{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);}
.m19_c00249{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00249{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);}
.m9_c00249{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00249{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);}
.m14_c00249{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00249{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c00249{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m20_c00249{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00249{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c00249{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);}
.me_c00249{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m23_c00249{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6_c00249{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);}
.m10_c00249{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mf_c00249{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2_c00249{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m16_c00249{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);}
.m12_c00249{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c00249{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.md_c00249{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);}
.m21_c00249{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1_c00249{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.ma_c00249{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m5_c00249{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m22_c00249{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m0_c00249{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m18_c00249{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.v0_c00249{vertical-align:0.000000px;}
.ls0_c00249{letter-spacing:0.000000px;}
.sc__c00249{text-shadow:none;}
.sc0_c00249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00249{-webkit-text-stroke:0px transparent;}
.sc0_c00249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00249{word-spacing:0.000000px;}
.fc0_c00249{color:transparent;}
.fs7_c00249{font-size:3.456000px;}
.fs13_c00249{font-size:6.000000px;}
.fsf_c00249{font-size:6.900000px;}
.fs15_c00249{font-size:10.380000px;}
.fs8_c00249{font-size:13.800000px;}
.fs0_c00249{font-size:17.280000px;}
.fs3_c00249{font-size:20.760000px;}
.fs14_c00249{font-size:24.180000px;}
.fs5_c00249{font-size:27.660000px;}
.fsd_c00249{font-size:34.560000px;}
.fs4_c00249{font-size:38.040000px;}
.fse_c00249{font-size:41.460000px;}
.fs9_c00249{font-size:44.940000px;}
.fs6_c00249{font-size:51.840000px;}
.fsb_c00249{font-size:55.320000px;}
.fs2_c00249{font-size:58.740000px;}
.fs1_c00249{font-size:62.220000px;}
.fsc_c00249{font-size:65.640000px;}
.fs11_c00249{font-size:69.120000px;}
.fs12_c00249{font-size:79.500000px;}
.fs10_c00249{font-size:86.400000px;}
.fsa_c00249{font-size:114.060000px;}
.y0_c00249{bottom:0.000000px;}
.y1e_c00249{bottom:602.205000px;}
.y1d_c00249{bottom:604.800000px;}
.y1c_c00249{bottom:618.630000px;}
.y18_c00249{bottom:697.245000px;}
.y1a_c00249{bottom:701.565000px;}
.y19_c00249{bottom:702.435000px;}
.y1b_c00249{bottom:703.290000px;}
.y15_c00249{bottom:717.120000px;}
.y14_c00249{bottom:720.570000px;}
.y16_c00249{bottom:721.440000px;}
.y17_c00249{bottom:724.035000px;}
.y13_c00249{bottom:727.485000px;}
.y12_c00249{bottom:740.445000px;}
.y10_c00249{bottom:742.170000px;}
.y11_c00249{bottom:743.040000px;}
.yc_c00249{bottom:761.190000px;}
.yd_c00249{bottom:762.915000px;}
.yf_c00249{bottom:786.240000px;}
.ye_c00249{bottom:788.835000px;}
.y9_c00249{bottom:883.875000px;}
.y8_c00249{bottom:888.195000px;}
.yb_c00249{bottom:950.400000px;}
.ya_c00249{bottom:962.490000px;}
.y6_c00249{bottom:1073.085000px;}
.y7_c00249{bottom:1087.770000px;}
.y5_c00249{bottom:1364.250000px;}
.y4_c00249{bottom:1386.720000px;}
.y2_c00249{bottom:1392.765000px;}
.y3_c00249{bottom:1394.490000px;}
.y1_c00249{bottom:1411.770000px;}
.h9_c00249{height:3.110063px;}
.h15_c00249{height:5.399414px;}
.h11_c00249{height:6.209326px;}
.h17_c00249{height:9.340986px;}
.ha_c00249{height:12.418652px;}
.h2_c00249{height:15.550313px;}
.h5_c00249{height:18.681973px;}
.h16_c00249{height:21.759639px;}
.h7_c00249{height:24.891299px;}
.hf_c00249{height:31.100625px;}
.h6_c00249{height:34.232285px;}
.h10_c00249{height:37.309951px;}
.hb_c00249{height:40.441611px;}
.h8_c00249{height:46.650937px;}
.hd_c00249{height:49.782598px;}
.h4_c00249{height:52.860264px;}
.h3_c00249{height:55.991924px;}
.he_c00249{height:59.069590px;}
.h13_c00249{height:62.201250px;}
.h14_c00249{height:71.542236px;}
.h12_c00249{height:77.751563px;}
.hc_c00249{height:102.642861px;}
.h1_c00249{height:1502.250000px;}
.h0_c00249{height:1502.490000px;}
.w0_c00249{width:1113.690000px;}
.w1_c00249{width:1113.750000px;}
.x0_c00249{left:0.000000px;}
.x25_c00249{left:5.190000px;}
.x26_c00249{left:21.600000px;}
.x8_c00249{left:37.155000px;}
.x9_c00249{left:43.200000px;}
.x23_c00249{left:85.530000px;}
.x24_c00249{left:88.125000px;}
.x6_c00249{left:101.085000px;}
.xc_c00249{left:115.770000px;}
.xd_c00249{left:120.090000px;}
.x4_c00249{left:147.750000px;}
.x5_c00249{left:170.205000px;}
.x7_c00249{left:180.570000px;}
.xb_c00249{left:211.680000px;}
.xa_c00249{left:217.725000px;}
.x1_c00249{left:228.960000px;}
.xe_c00249{left:319.680000px;}
.xf_c00249{left:342.150000px;}
.x10_c00249{left:365.475000px;}
.x11_c00249{left:379.290000px;}
.x2_c00249{left:455.325000px;}
.x3_c00249{left:626.400000px;}
.x1a_c00249{left:674.790000px;}
.x1e_c00249{left:688.605000px;}
.x12_c00249{left:690.330000px;}
.x13_c00249{left:705.885000px;}
.x14_c00249{left:723.165000px;}
.x15_c00249{left:736.125000px;}
.x16_c00249{left:747.360000px;}
.x1f_c00249{left:752.550000px;}
.x17_c00249{left:775.005000px;}
.x1b_c00249{left:794.880000px;}
.x20_c00249{left:830.310000px;}
.x18_c00249{left:834.630000px;}
.x1c_c00249{left:837.210000px;}
.x21_c00249{left:848.445000px;}
.x19_c00249{left:855.360000px;}
.x22_c00249{left:872.640000px;}
.x1d_c00249{left:891.645000px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls0_c00249{letter-spacing:0.000000pt;}
.ws0_c00249{word-spacing:0.000000pt;}
.fs7_c00249{font-size:3.072000pt;}
.fs13_c00249{font-size:5.333333pt;}
.fsf_c00249{font-size:6.133333pt;}
.fs15_c00249{font-size:9.226667pt;}
.fs8_c00249{font-size:12.266667pt;}
.fs0_c00249{font-size:15.360000pt;}
.fs3_c00249{font-size:18.453333pt;}
.fs14_c00249{font-size:21.493333pt;}
.fs5_c00249{font-size:24.586667pt;}
.fsd_c00249{font-size:30.720000pt;}
.fs4_c00249{font-size:33.813333pt;}
.fse_c00249{font-size:36.853333pt;}
.fs9_c00249{font-size:39.946667pt;}
.fs6_c00249{font-size:46.080000pt;}
.fsb_c00249{font-size:49.173333pt;}
.fs2_c00249{font-size:52.213333pt;}
.fs1_c00249{font-size:55.306667pt;}
.fsc_c00249{font-size:58.346667pt;}
.fs11_c00249{font-size:61.440000pt;}
.fs12_c00249{font-size:70.666667pt;}
.fs10_c00249{font-size:76.800000pt;}
.fsa_c00249{font-size:101.386667pt;}
.y0_c00249{bottom:0.000000pt;}
.y1e_c00249{bottom:535.293333pt;}
.y1d_c00249{bottom:537.600000pt;}
.y1c_c00249{bottom:549.893333pt;}
.y18_c00249{bottom:619.773333pt;}
.y1a_c00249{bottom:623.613333pt;}
.y19_c00249{bottom:624.386667pt;}
.y1b_c00249{bottom:625.146667pt;}
.y15_c00249{bottom:637.440000pt;}
.y14_c00249{bottom:640.506667pt;}
.y16_c00249{bottom:641.280000pt;}
.y17_c00249{bottom:643.586667pt;}
.y13_c00249{bottom:646.653333pt;}
.y12_c00249{bottom:658.173333pt;}
.y10_c00249{bottom:659.706667pt;}
.y11_c00249{bottom:660.480000pt;}
.yc_c00249{bottom:676.613333pt;}
.yd_c00249{bottom:678.146667pt;}
.yf_c00249{bottom:698.880000pt;}
.ye_c00249{bottom:701.186667pt;}
.y9_c00249{bottom:785.666667pt;}
.y8_c00249{bottom:789.506667pt;}
.yb_c00249{bottom:844.800000pt;}
.ya_c00249{bottom:855.546667pt;}
.y6_c00249{bottom:953.853333pt;}
.y7_c00249{bottom:966.906667pt;}
.y5_c00249{bottom:1212.666667pt;}
.y4_c00249{bottom:1232.640000pt;}
.y2_c00249{bottom:1238.013333pt;}
.y3_c00249{bottom:1239.546667pt;}
.y1_c00249{bottom:1254.906667pt;}
.h9_c00249{height:2.764500pt;}
.h15_c00249{height:4.799479pt;}
.h11_c00249{height:5.519401pt;}
.h17_c00249{height:8.303099pt;}
.ha_c00249{height:11.038802pt;}
.h2_c00249{height:13.822500pt;}
.h5_c00249{height:16.606198pt;}
.h16_c00249{height:19.341901pt;}
.h7_c00249{height:22.125599pt;}
.hf_c00249{height:27.645000pt;}
.h6_c00249{height:30.428698pt;}
.h10_c00249{height:33.164401pt;}
.hb_c00249{height:35.948099pt;}
.h8_c00249{height:41.467500pt;}
.hd_c00249{height:44.251198pt;}
.h4_c00249{height:46.986901pt;}
.h3_c00249{height:49.770599pt;}
.he_c00249{height:52.506302pt;}
.h13_c00249{height:55.290000pt;}
.h14_c00249{height:63.593099pt;}
.h12_c00249{height:69.112500pt;}
.hc_c00249{height:91.238099pt;}
.h1_c00249{height:1335.333333pt;}
.h0_c00249{height:1335.546667pt;}
.w0_c00249{width:989.946667pt;}
.w1_c00249{width:990.000000pt;}
.x0_c00249{left:0.000000pt;}
.x25_c00249{left:4.613333pt;}
.x26_c00249{left:19.200000pt;}
.x8_c00249{left:33.026667pt;}
.x9_c00249{left:38.400000pt;}
.x23_c00249{left:76.026667pt;}
.x24_c00249{left:78.333333pt;}
.x6_c00249{left:89.853333pt;}
.xc_c00249{left:102.906667pt;}
.xd_c00249{left:106.746667pt;}
.x4_c00249{left:131.333333pt;}
.x5_c00249{left:151.293333pt;}
.x7_c00249{left:160.506667pt;}
.xb_c00249{left:188.160000pt;}
.xa_c00249{left:193.533333pt;}
.x1_c00249{left:203.520000pt;}
.xe_c00249{left:284.160000pt;}
.xf_c00249{left:304.133333pt;}
.x10_c00249{left:324.866667pt;}
.x11_c00249{left:337.146667pt;}
.x2_c00249{left:404.733333pt;}
.x3_c00249{left:556.800000pt;}
.x1a_c00249{left:599.813333pt;}
.x1e_c00249{left:612.093333pt;}
.x12_c00249{left:613.626667pt;}
.x13_c00249{left:627.453333pt;}
.x14_c00249{left:642.813333pt;}
.x15_c00249{left:654.333333pt;}
.x16_c00249{left:664.320000pt;}
.x1f_c00249{left:668.933333pt;}
.x17_c00249{left:688.893333pt;}
.x1b_c00249{left:706.560000pt;}
.x20_c00249{left:738.053333pt;}
.x18_c00249{left:741.893333pt;}
.x1c_c00249{left:744.186667pt;}
.x21_c00249{left:754.173333pt;}
.x19_c00249{left:760.320000pt;}
.x22_c00249{left:775.680000pt;}
.x1d_c00249{left:792.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_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_2c6d7e0ba9aa1c1f299051e6.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.109863;font-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_c00250{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);}
.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;}
.fs0_c00250{font-size:600.000000px;}
.y0_c00250{bottom:0.000000px;}
.y1_c00250{bottom:15.000000px;}
.h2_c00250{height:539.941406px;}
.h0_c00250{height:1509.405000px;}
.h1_c00250{height:1509.750000px;}
.w1_c00250{width:1104.000000px;}
.w0_c00250{width:1104.195000px;}
.x0_c00250{left:0.000000px;}
.x1_c00250{left:15.000000px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls0_c00250{letter-spacing:0.000000pt;}
.ws0_c00250{word-spacing:0.000000pt;}
.fs0_c00250{font-size:533.333333pt;}
.y0_c00250{bottom:0.000000pt;}
.y1_c00250{bottom:13.333333pt;}
.h2_c00250{height:479.947917pt;}
.h0_c00250{height:1341.693333pt;}
.h1_c00250{height:1342.000000pt;}
.w1_c00250{width:981.333333pt;}
.w0_c00250{width:981.506667pt;}
.x0_c00250{left:0.000000pt;}
.x1_c00250{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00251;src:url('chunks/assets/font_4a703f9dc6daf5bc611bacbb.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.109863;font-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_c00251{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c00251{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00251{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c00251{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.v0_c00251{vertical-align:0.000000px;}
.ls1_c00251{letter-spacing:0.000000px;}
.ls0_c00251{letter-spacing:63.627000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00251{word-spacing:0.000000px;}
.fc0_c00251{color:transparent;}
.fs2_c00251{font-size:6.900000px;}
.fs3_c00251{font-size:10.380000px;}
.fs1_c00251{font-size:13.800000px;}
.fs4_c00251{font-size:17.280000px;}
.fs0_c00251{font-size:58.740000px;}
.y0_c00251{bottom:0.000000px;}
.y6_c00251{bottom:543.450000px;}
.y5_c00251{bottom:544.320000px;}
.y4_c00251{bottom:578.010000px;}
.y3_c00251{bottom:582.330000px;}
.y2_c00251{bottom:1385.850000px;}
.y1_c00251{bottom:1391.910000px;}
.h5_c00251{height:6.209326px;}
.h4_c00251{height:9.340986px;}
.h3_c00251{height:12.418652px;}
.h6_c00251{height:15.550313px;}
.h2_c00251{height:52.860264px;}
.h1_c00251{height:1502.250000px;}
.h0_c00251{height:1502.490000px;}
.w0_c00251{width:1113.690000px;}
.w1_c00251{width:1113.750000px;}
.x0_c00251{left:0.000000px;}
.x3_c00251{left:29.370000px;}
.x4_c00251{left:38.010000px;}
.x5_c00251{left:73.440000px;}
.x6_c00251{left:86.400000px;}
.x1_c00251{left:453.600000px;}
.x2_c00251{left:479.520000px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls1_c00251{letter-spacing:0.000000pt;}
.ls0_c00251{letter-spacing:56.557333pt;}
.ws0_c00251{word-spacing:0.000000pt;}
.fs2_c00251{font-size:6.133333pt;}
.fs3_c00251{font-size:9.226667pt;}
.fs1_c00251{font-size:12.266667pt;}
.fs4_c00251{font-size:15.360000pt;}
.fs0_c00251{font-size:52.213333pt;}
.y0_c00251{bottom:0.000000pt;}
.y6_c00251{bottom:483.066667pt;}
.y5_c00251{bottom:483.840000pt;}
.y4_c00251{bottom:513.786667pt;}
.y3_c00251{bottom:517.626667pt;}
.y2_c00251{bottom:1231.866667pt;}
.y1_c00251{bottom:1237.253333pt;}
.h5_c00251{height:5.519401pt;}
.h4_c00251{height:8.303099pt;}
.h3_c00251{height:11.038802pt;}
.h6_c00251{height:13.822500pt;}
.h2_c00251{height:46.986901pt;}
.h1_c00251{height:1335.333333pt;}
.h0_c00251{height:1335.546667pt;}
.w0_c00251{width:989.946667pt;}
.w1_c00251{width:990.000000pt;}
.x0_c00251{left:0.000000pt;}
.x3_c00251{left:26.106667pt;}
.x4_c00251{left:33.786667pt;}
.x5_c00251{left:65.280000pt;}
.x6_c00251{left:76.800000pt;}
.x1_c00251{left:403.200000pt;}
.x2_c00251{left:426.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_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_c68b61a37486fffe432aea1c.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.109863;font-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_c00252{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);}
.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;}
.fc0_c00252{color:transparent;}
.fs0_c00252{font-size:600.000000px;}
.y0_c00252{bottom:0.000000px;}
.y1_c00252{bottom:15.000000px;}
.h2_c00252{height:539.941406px;}
.h0_c00252{height:1509.405000px;}
.h1_c00252{height:1509.750000px;}
.w1_c00252{width:1104.000000px;}
.w0_c00252{width:1104.195000px;}
.x0_c00252{left:0.000000px;}
.x1_c00252{left:15.000000px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls0_c00252{letter-spacing:0.000000pt;}
.ws0_c00252{word-spacing:0.000000pt;}
.fs0_c00252{font-size:533.333333pt;}
.y0_c00252{bottom:0.000000pt;}
.y1_c00252{bottom:13.333333pt;}
.h2_c00252{height:479.947917pt;}
.h0_c00252{height:1341.693333pt;}
.h1_c00252{height:1342.000000pt;}
.w1_c00252{width:981.333333pt;}
.w0_c00252{width:981.506667pt;}
.x0_c00252{left:0.000000pt;}
.x1_c00252{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe33943e17bf870e65bef50e.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.109863;font-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_c00253{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c00253{transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);}
.m6_c00253{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.ma_c00253{transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);}
.m4_c00253{transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);}
.m7_c00253{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);}
.m2_c00253{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m1_c00253{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);}
.m0_c00253{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);}
.m9_c00253{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00253{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,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;}
.fc0_c00253{color:transparent;}
.fs3_c00253{font-size:3.456000px;}
.fs0_c00253{font-size:10.380000px;}
.fs5_c00253{font-size:17.280000px;}
.fs2_c00253{font-size:31.080000px;}
.fs7_c00253{font-size:38.040000px;}
.fs4_c00253{font-size:44.940000px;}
.fs1_c00253{font-size:51.840000px;}
.fs8_c00253{font-size:86.400000px;}
.fs6_c00253{font-size:103.680000px;}
.y0_c00253{bottom:0.000000px;}
.ya_c00253{bottom:360.285000px;}
.y9_c00253{bottom:381.885000px;}
.y8_c00253{bottom:387.075000px;}
.y7_c00253{bottom:432.000000px;}
.y6_c00253{bottom:482.115000px;}
.y4_c00253{bottom:504.570000px;}
.y5_c00253{bottom:511.485000px;}
.y3_c00253{bottom:515.805000px;}
.y2_c00253{bottom:524.445000px;}
.y1_c00253{bottom:560.730000px;}
.h5_c00253{height:3.110063px;}
.h2_c00253{height:9.340986px;}
.h7_c00253{height:15.550313px;}
.h4_c00253{height:27.968965px;}
.h9_c00253{height:34.232285px;}
.h6_c00253{height:40.441611px;}
.h3_c00253{height:46.650937px;}
.ha_c00253{height:77.751563px;}
.h8_c00253{height:93.301875px;}
.h1_c00253{height:1502.250000px;}
.h0_c00253{height:1502.490000px;}
.w0_c00253{width:1113.690000px;}
.w1_c00253{width:1113.750000px;}
.x0_c00253{left:0.000000px;}
.x2_c00253{left:10.365000px;}
.x3_c00253{left:12.090000px;}
.x1_c00253{left:181.440000px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls0_c00253{letter-spacing:0.000000pt;}
.ws0_c00253{word-spacing:0.000000pt;}
.fs3_c00253{font-size:3.072000pt;}
.fs0_c00253{font-size:9.226667pt;}
.fs5_c00253{font-size:15.360000pt;}
.fs2_c00253{font-size:27.626667pt;}
.fs7_c00253{font-size:33.813333pt;}
.fs4_c00253{font-size:39.946667pt;}
.fs1_c00253{font-size:46.080000pt;}
.fs8_c00253{font-size:76.800000pt;}
.fs6_c00253{font-size:92.160000pt;}
.y0_c00253{bottom:0.000000pt;}
.ya_c00253{bottom:320.253333pt;}
.y9_c00253{bottom:339.453333pt;}
.y8_c00253{bottom:344.066667pt;}
.y7_c00253{bottom:384.000000pt;}
.y6_c00253{bottom:428.546667pt;}
.y4_c00253{bottom:448.506667pt;}
.y5_c00253{bottom:454.653333pt;}
.y3_c00253{bottom:458.493333pt;}
.y2_c00253{bottom:466.173333pt;}
.y1_c00253{bottom:498.426667pt;}
.h5_c00253{height:2.764500pt;}
.h2_c00253{height:8.303099pt;}
.h7_c00253{height:13.822500pt;}
.h4_c00253{height:24.861302pt;}
.h9_c00253{height:30.428698pt;}
.h6_c00253{height:35.948099pt;}
.h3_c00253{height:41.467500pt;}
.ha_c00253{height:69.112500pt;}
.h8_c00253{height:82.935000pt;}
.h1_c00253{height:1335.333333pt;}
.h0_c00253{height:1335.546667pt;}
.w0_c00253{width:989.946667pt;}
.w1_c00253{width:990.000000pt;}
.x0_c00253{left:0.000000pt;}
.x2_c00253{left:9.213333pt;}
.x3_c00253{left:10.746667pt;}
.x1_c00253{left:161.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_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_73779c4e9eb887131f0285d2.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.109863;font-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_c00254{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);}
.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;}
.fc0_c00254{color:transparent;}
.fs0_c00254{font-size:600.000000px;}
.y0_c00254{bottom:0.000000px;}
.y1_c00254{bottom:15.000000px;}
.h2_c00254{height:539.941406px;}
.h0_c00254{height:1509.405000px;}
.h1_c00254{height:1509.750000px;}
.w1_c00254{width:1104.000000px;}
.w0_c00254{width:1104.195000px;}
.x0_c00254{left:0.000000px;}
.x1_c00254{left:15.000000px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls0_c00254{letter-spacing:0.000000pt;}
.ws0_c00254{word-spacing:0.000000pt;}
.fs0_c00254{font-size:533.333333pt;}
.y0_c00254{bottom:0.000000pt;}
.y1_c00254{bottom:13.333333pt;}
.h2_c00254{height:479.947917pt;}
.h0_c00254{height:1341.693333pt;}
.h1_c00254{height:1342.000000pt;}
.w1_c00254{width:981.333333pt;}
.w0_c00254{width:981.506667pt;}
.x0_c00254{left:0.000000pt;}
.x1_c00254{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81e1be46b5729234dfcaff51.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.109863;font-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_c00255{transform:matrix(0.027475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027475,0.000000,0.000000,0.250000,0,0);}
.ma_c00255{transform:matrix(0.036250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036250,0.000000,0.000000,0.250000,0,0);}
.m0_c00255{transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);}
.m5_c00255{transform:matrix(0.123650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123650,0.000000,0.000000,0.250000,0,0);}
.m10_c00255{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.md_c00255{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);}
.m3_c00255{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m11_c00255{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c00255{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m12_c00255{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);}
.m14_c00255{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);}
.m17_c00255{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c00255{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00255{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m9_c00255{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);}
.m4_c00255{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c00255{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m18_c00255{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m16_c00255{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m8_c00255{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m13_c00255{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc_c00255{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m19_c00255{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m2_c00255{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m6_c00255{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m7_c00255{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,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;}
.fs9_c00255{font-size:6.000000px;}
.fsd_c00255{font-size:6.900000px;}
.fsa_c00255{font-size:10.380000px;}
.fs2_c00255{font-size:13.800000px;}
.fsf_c00255{font-size:17.280000px;}
.fs4_c00255{font-size:20.760000px;}
.fs6_c00255{font-size:24.180000px;}
.fs3_c00255{font-size:27.660000px;}
.fs1_c00255{font-size:31.080000px;}
.fse_c00255{font-size:34.560000px;}
.fs11_c00255{font-size:38.040000px;}
.fs7_c00255{font-size:41.460000px;}
.fs0_c00255{font-size:48.360000px;}
.fs5_c00255{font-size:65.640000px;}
.fs10_c00255{font-size:69.120000px;}
.fs12_c00255{font-size:72.600000px;}
.fsb_c00255{font-size:114.060000px;}
.fs8_c00255{font-size:186.600000px;}
.fsc_c00255{font-size:196.980000px;}
.y0_c00255{bottom:0.000000px;}
.y1b_c00255{bottom:782.790000px;}
.y1a_c00255{bottom:794.010000px;}
.y16_c00255{bottom:1032.480000px;}
.y15_c00255{bottom:1043.715000px;}
.y14_c00255{bottom:1058.400000px;}
.y11_c00255{bottom:1084.320000px;}
.y13_c00255{bottom:1092.090000px;}
.y12_c00255{bottom:1093.830000px;}
.ye_c00255{bottom:1094.685000px;}
.y10_c00255{bottom:1098.150000px;}
.yf_c00255{bottom:1127.520000px;}
.yd_c00255{bottom:1143.930000px;}
.ya_c00255{bottom:1173.315000px;}
.yb_c00255{bottom:1188.870000px;}
.yc_c00255{bottom:1189.725000px;}
.y9_c00255{bottom:1232.925000px;}
.y8_c00255{bottom:1252.800000px;}
.y7_c00255{bottom:1262.310000px;}
.y6_c00255{bottom:1270.080000px;}
.y5_c00255{bottom:1284.765000px;}
.y4_c00255{bottom:1337.475000px;}
.y3_c00255{bottom:1356.480000px;}
.y2_c00255{bottom:1359.075000px;}
.y1_c00255{bottom:1365.120000px;}
.y18_c00255{bottom:1388.445000px;}
.y17_c00255{bottom:1389.315000px;}
.y19_c00255{bottom:1391.040000px;}
.hb_c00255{height:5.399414px;}
.hf_c00255{height:6.209326px;}
.hc_c00255{height:9.340986px;}
.h4_c00255{height:12.418652px;}
.h11_c00255{height:15.550313px;}
.h6_c00255{height:18.681973px;}
.h8_c00255{height:21.759639px;}
.h5_c00255{height:24.891299px;}
.h3_c00255{height:27.968965px;}
.h10_c00255{height:31.100625px;}
.h13_c00255{height:34.232285px;}
.h9_c00255{height:37.309951px;}
.h2_c00255{height:43.519277px;}
.h7_c00255{height:59.069590px;}
.h12_c00255{height:62.201250px;}
.h14_c00255{height:65.332910px;}
.hd_c00255{height:102.642861px;}
.ha_c00255{height:167.921777px;}
.he_c00255{height:177.262764px;}
.h1_c00255{height:1502.250000px;}
.h0_c00255{height:1502.490000px;}
.w0_c00255{width:1113.690000px;}
.w1_c00255{width:1113.750000px;}
.x0_c00255{left:0.000000px;}
.x8_c00255{left:4.320000px;}
.x1_c00255{left:25.920000px;}
.x6_c00255{left:30.240000px;}
.x7_c00255{left:38.010000px;}
.x2_c00255{left:48.390000px;}
.x5_c00255{left:181.440000px;}
.x3_c00255{left:203.910000px;}
.x4_c00255{left:205.635000px;}
.x9_c00255{left:578.880000px;}
.xa_c00255{left:602.205000px;}
.xb_c00255{left:619.485000px;}
.xc_c00255{left:638.490000px;}
.xd_c00255{left:654.045000px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls0_c00255{letter-spacing:0.000000pt;}
.ws0_c00255{word-spacing:0.000000pt;}
.fs9_c00255{font-size:5.333333pt;}
.fsd_c00255{font-size:6.133333pt;}
.fsa_c00255{font-size:9.226667pt;}
.fs2_c00255{font-size:12.266667pt;}
.fsf_c00255{font-size:15.360000pt;}
.fs4_c00255{font-size:18.453333pt;}
.fs6_c00255{font-size:21.493333pt;}
.fs3_c00255{font-size:24.586667pt;}
.fs1_c00255{font-size:27.626667pt;}
.fse_c00255{font-size:30.720000pt;}
.fs11_c00255{font-size:33.813333pt;}
.fs7_c00255{font-size:36.853333pt;}
.fs0_c00255{font-size:42.986667pt;}
.fs5_c00255{font-size:58.346667pt;}
.fs10_c00255{font-size:61.440000pt;}
.fs12_c00255{font-size:64.533333pt;}
.fsb_c00255{font-size:101.386667pt;}
.fs8_c00255{font-size:165.866667pt;}
.fsc_c00255{font-size:175.093333pt;}
.y0_c00255{bottom:0.000000pt;}
.y1b_c00255{bottom:695.813333pt;}
.y1a_c00255{bottom:705.786667pt;}
.y16_c00255{bottom:917.760000pt;}
.y15_c00255{bottom:927.746667pt;}
.y14_c00255{bottom:940.800000pt;}
.y11_c00255{bottom:963.840000pt;}
.y13_c00255{bottom:970.746667pt;}
.y12_c00255{bottom:972.293333pt;}
.ye_c00255{bottom:973.053333pt;}
.y10_c00255{bottom:976.133333pt;}
.yf_c00255{bottom:1002.240000pt;}
.yd_c00255{bottom:1016.826667pt;}
.ya_c00255{bottom:1042.946667pt;}
.yb_c00255{bottom:1056.773333pt;}
.yc_c00255{bottom:1057.533333pt;}
.y9_c00255{bottom:1095.933333pt;}
.y8_c00255{bottom:1113.600000pt;}
.y7_c00255{bottom:1122.053333pt;}
.y6_c00255{bottom:1128.960000pt;}
.y5_c00255{bottom:1142.013333pt;}
.y4_c00255{bottom:1188.866667pt;}
.y3_c00255{bottom:1205.760000pt;}
.y2_c00255{bottom:1208.066667pt;}
.y1_c00255{bottom:1213.440000pt;}
.y18_c00255{bottom:1234.173333pt;}
.y17_c00255{bottom:1234.946667pt;}
.y19_c00255{bottom:1236.480000pt;}
.hb_c00255{height:4.799479pt;}
.hf_c00255{height:5.519401pt;}
.hc_c00255{height:8.303099pt;}
.h4_c00255{height:11.038802pt;}
.h11_c00255{height:13.822500pt;}
.h6_c00255{height:16.606198pt;}
.h8_c00255{height:19.341901pt;}
.h5_c00255{height:22.125599pt;}
.h3_c00255{height:24.861302pt;}
.h10_c00255{height:27.645000pt;}
.h13_c00255{height:30.428698pt;}
.h9_c00255{height:33.164401pt;}
.h2_c00255{height:38.683802pt;}
.h7_c00255{height:52.506302pt;}
.h12_c00255{height:55.290000pt;}
.h14_c00255{height:58.073698pt;}
.hd_c00255{height:91.238099pt;}
.ha_c00255{height:149.263802pt;}
.he_c00255{height:157.566901pt;}
.h1_c00255{height:1335.333333pt;}
.h0_c00255{height:1335.546667pt;}
.w0_c00255{width:989.946667pt;}
.w1_c00255{width:990.000000pt;}
.x0_c00255{left:0.000000pt;}
.x8_c00255{left:3.840000pt;}
.x1_c00255{left:23.040000pt;}
.x6_c00255{left:26.880000pt;}
.x7_c00255{left:33.786667pt;}
.x2_c00255{left:43.013333pt;}
.x5_c00255{left:161.280000pt;}
.x3_c00255{left:181.253333pt;}
.x4_c00255{left:182.786667pt;}
.x9_c00255{left:514.560000pt;}
.xa_c00255{left:535.293333pt;}
.xb_c00255{left:550.653333pt;}
.xc_c00255{left:567.546667pt;}
.xd_c00255{left:581.373333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83f107772281e7c395995066.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.109863;font-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_c00256{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);}
.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:600.000000px;}
.y0_c00256{bottom:0.000000px;}
.y1_c00256{bottom:15.000000px;}
.h2_c00256{height:539.941406px;}
.h0_c00256{height:1509.405000px;}
.h1_c00256{height:1509.750000px;}
.w1_c00256{width:1104.000000px;}
.w0_c00256{width:1104.195000px;}
.x0_c00256{left:0.000000px;}
.x1_c00256{left:15.000000px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws0_c00256{word-spacing:0.000000pt;}
.fs0_c00256{font-size:533.333333pt;}
.y0_c00256{bottom:0.000000pt;}
.y1_c00256{bottom:13.333333pt;}
.h2_c00256{height:479.947917pt;}
.h0_c00256{height:1341.693333pt;}
.h1_c00256{height:1342.000000pt;}
.w1_c00256{width:981.333333pt;}
.w0_c00256{width:981.506667pt;}
.x0_c00256{left:0.000000pt;}
.x1_c00256{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_267dc172d0bc05eddc579daa.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.109863;font-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_c00257{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.m4_c00257{transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);}
.m13_c00257{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.md_c00257{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m8_c00257{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);}
.m12_c00257{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);}
.m3_c00257{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m18_c00257{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);}
.m1a_c00257{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.mf_c00257{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m5_c00257{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.me_c00257{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m10_c00257{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);}
.m14_c00257{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);}
.m6_c00257{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.mb_c00257{transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);}
.m1b_c00257{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);}
.m16_c00257{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);}
.m15_c00257{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc_c00257{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00257{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);}
.m19_c00257{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c00257{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00257{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00257{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);}
.m1_c00257{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2_c00257{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m11_c00257{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m7_c00257{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.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;}
.fc0_c00257{color:transparent;}
.fs5_c00257{font-size:3.456000px;}
.fsc_c00257{font-size:17.280000px;}
.fsd_c00257{font-size:20.760000px;}
.fsb_c00257{font-size:41.460000px;}
.fs7_c00257{font-size:72.600000px;}
.fs1_c00257{font-size:76.020000px;}
.fs9_c00257{font-size:79.500000px;}
.fs4_c00257{font-size:86.400000px;}
.fs0_c00257{font-size:93.300000px;}
.fs6_c00257{font-size:100.200000px;}
.fs8_c00257{font-size:103.680000px;}
.fse_c00257{font-size:107.160000px;}
.fs2_c00257{font-size:114.060000px;}
.fsa_c00257{font-size:127.860000px;}
.fs3_c00257{font-size:134.760000px;}
.y0_c00257{bottom:0.000000px;}
.y19_c00257{bottom:625.530000px;}
.y1a_c00257{bottom:632.445000px;}
.y18_c00257{bottom:633.315000px;}
.y17_c00257{bottom:655.770000px;}
.y15_c00257{bottom:656.640000px;}
.y14_c00257{bottom:657.510000px;}
.y16_c00257{bottom:665.280000px;}
.y12_c00257{bottom:686.880000px;}
.y13_c00257{bottom:687.750000px;}
.y11_c00257{bottom:690.330000px;}
.y10_c00257{bottom:695.520000px;}
.yd_c00257{bottom:716.250000px;}
.yc_c00257{bottom:717.990000px;}
.ya_c00257{bottom:719.715000px;}
.yb_c00257{bottom:721.440000px;}
.ye_c00257{bottom:733.530000px;}
.yf_c00257{bottom:742.170000px;}
.y9_c00257{bottom:749.085000px;}
.y7_c00257{bottom:751.680000px;}
.y6_c00257{bottom:753.405000px;}
.y8_c00257{bottom:754.275000px;}
.y5_c00257{bottom:758.595000px;}
.y4_c00257{bottom:782.790000px;}
.y3_c00257{bottom:817.350000px;}
.y1_c00257{bottom:820.800000px;}
.y2_c00257{bottom:821.670000px;}
.h7_c00257{height:3.110063px;}
.he_c00257{height:15.550313px;}
.hf_c00257{height:18.681973px;}
.hd_c00257{height:37.309951px;}
.h9_c00257{height:65.332910px;}
.h3_c00257{height:68.410576px;}
.hb_c00257{height:71.542236px;}
.h6_c00257{height:77.751563px;}
.h2_c00257{height:83.960889px;}
.h8_c00257{height:90.170215px;}
.ha_c00257{height:93.301875px;}
.h10_c00257{height:96.433535px;}
.h4_c00257{height:102.642861px;}
.hc_c00257{height:115.061514px;}
.h5_c00257{height:121.270840px;}
.h1_c00257{height:1502.250000px;}
.h0_c00257{height:1502.490000px;}
.w0_c00257{width:1113.690000px;}
.w1_c00257{width:1113.750000px;}
.x0_c00257{left:0.000000px;}
.x1_c00257{left:586.650000px;}
.xf_c00257{left:595.290000px;}
.x5_c00257{left:617.760000px;}
.x14_c00257{left:648.000000px;}
.x2_c00257{left:650.595000px;}
.x12_c00257{left:659.235000px;}
.xa_c00257{left:683.430000px;}
.x3_c00257{left:695.520000px;}
.x10_c00257{left:708.480000px;}
.x6_c00257{left:730.950000px;}
.x13_c00257{left:734.400000px;}
.x7_c00257{left:740.445000px;}
.x15_c00257{left:746.490000px;}
.xb_c00257{left:756.000000px;}
.x4_c00257{left:787.965000px;}
.x8_c00257{left:806.115000px;}
.x11_c00257{left:816.480000px;}
.x16_c00257{left:821.670000px;}
.x9_c00257{left:829.440000px;}
.xc_c00257{left:854.490000px;}
.xd_c00257{left:889.050000px;}
.xe_c00257{left:900.285000px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls0_c00257{letter-spacing:0.000000pt;}
.ws0_c00257{word-spacing:0.000000pt;}
.fs5_c00257{font-size:3.072000pt;}
.fsc_c00257{font-size:15.360000pt;}
.fsd_c00257{font-size:18.453333pt;}
.fsb_c00257{font-size:36.853333pt;}
.fs7_c00257{font-size:64.533333pt;}
.fs1_c00257{font-size:67.573333pt;}
.fs9_c00257{font-size:70.666667pt;}
.fs4_c00257{font-size:76.800000pt;}
.fs0_c00257{font-size:82.933333pt;}
.fs6_c00257{font-size:89.066667pt;}
.fs8_c00257{font-size:92.160000pt;}
.fse_c00257{font-size:95.253333pt;}
.fs2_c00257{font-size:101.386667pt;}
.fsa_c00257{font-size:113.653333pt;}
.fs3_c00257{font-size:119.786667pt;}
.y0_c00257{bottom:0.000000pt;}
.y19_c00257{bottom:556.026667pt;}
.y1a_c00257{bottom:562.173333pt;}
.y18_c00257{bottom:562.946667pt;}
.y17_c00257{bottom:582.906667pt;}
.y15_c00257{bottom:583.680000pt;}
.y14_c00257{bottom:584.453333pt;}
.y16_c00257{bottom:591.360000pt;}
.y12_c00257{bottom:610.560000pt;}
.y13_c00257{bottom:611.333333pt;}
.y11_c00257{bottom:613.626667pt;}
.y10_c00257{bottom:618.240000pt;}
.yd_c00257{bottom:636.666667pt;}
.yc_c00257{bottom:638.213333pt;}
.ya_c00257{bottom:639.746667pt;}
.yb_c00257{bottom:641.280000pt;}
.ye_c00257{bottom:652.026667pt;}
.yf_c00257{bottom:659.706667pt;}
.y9_c00257{bottom:665.853333pt;}
.y7_c00257{bottom:668.160000pt;}
.y6_c00257{bottom:669.693333pt;}
.y8_c00257{bottom:670.466667pt;}
.y5_c00257{bottom:674.306667pt;}
.y4_c00257{bottom:695.813333pt;}
.y3_c00257{bottom:726.533333pt;}
.y1_c00257{bottom:729.600000pt;}
.y2_c00257{bottom:730.373333pt;}
.h7_c00257{height:2.764500pt;}
.he_c00257{height:13.822500pt;}
.hf_c00257{height:16.606198pt;}
.hd_c00257{height:33.164401pt;}
.h9_c00257{height:58.073698pt;}
.h3_c00257{height:60.809401pt;}
.hb_c00257{height:63.593099pt;}
.h6_c00257{height:69.112500pt;}
.h2_c00257{height:74.631901pt;}
.h8_c00257{height:80.151302pt;}
.ha_c00257{height:82.935000pt;}
.h10_c00257{height:85.718698pt;}
.h4_c00257{height:91.238099pt;}
.hc_c00257{height:102.276901pt;}
.h5_c00257{height:107.796302pt;}
.h1_c00257{height:1335.333333pt;}
.h0_c00257{height:1335.546667pt;}
.w0_c00257{width:989.946667pt;}
.w1_c00257{width:990.000000pt;}
.x0_c00257{left:0.000000pt;}
.x1_c00257{left:521.466667pt;}
.xf_c00257{left:529.146667pt;}
.x5_c00257{left:549.120000pt;}
.x14_c00257{left:576.000000pt;}
.x2_c00257{left:578.306667pt;}
.x12_c00257{left:585.986667pt;}
.xa_c00257{left:607.493333pt;}
.x3_c00257{left:618.240000pt;}
.x10_c00257{left:629.760000pt;}
.x6_c00257{left:649.733333pt;}
.x13_c00257{left:652.800000pt;}
.x7_c00257{left:658.173333pt;}
.x15_c00257{left:663.546667pt;}
.xb_c00257{left:672.000000pt;}
.x4_c00257{left:700.413333pt;}
.x8_c00257{left:716.546667pt;}
.x11_c00257{left:725.760000pt;}
.x16_c00257{left:730.373333pt;}
.x9_c00257{left:737.280000pt;}
.xc_c00257{left:759.546667pt;}
.xd_c00257{left:790.266667pt;}
.xe_c00257{left:800.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2009ccdedca4d95718720b32.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.109863;font-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_c00258{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);}
.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:600.000000px;}
.y0_c00258{bottom:0.000000px;}
.y1_c00258{bottom:15.000000px;}
.h2_c00258{height:539.941406px;}
.h0_c00258{height:1509.405000px;}
.h1_c00258{height:1509.750000px;}
.w1_c00258{width:1104.000000px;}
.w0_c00258{width:1104.195000px;}
.x0_c00258{left:0.000000px;}
.x1_c00258{left:15.000000px;}
@media print{
.v0_c00258{vertical-align:0.000000pt;}
.ls0_c00258{letter-spacing:0.000000pt;}
.ws0_c00258{word-spacing:0.000000pt;}
.fs0_c00258{font-size:533.333333pt;}
.y0_c00258{bottom:0.000000pt;}
.y1_c00258{bottom:13.333333pt;}
.h2_c00258{height:479.947917pt;}
.h0_c00258{height:1341.693333pt;}
.h1_c00258{height:1342.000000pt;}
.w1_c00258{width:981.333333pt;}
.w0_c00258{width:981.506667pt;}
.x0_c00258{left:0.000000pt;}
.x1_c00258{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3d013fc25c890f3cfe6704e.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.109863;font-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_c00259{transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);}
.m6_c00259{transform:matrix(0.115150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115150,0.000000,0.000000,0.250000,0,0);}
.m1e_c00259{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m1f_c00259{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.mb_c00259{transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);}
.m3_c00259{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m16_c00259{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);}
.m12_c00259{transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);}
.m13_c00259{transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);}
.m18_c00259{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.ma_c00259{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);}
.m9_c00259{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m15_c00259{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.me_c00259{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);}
.m14_c00259{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m10_c00259{transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);}
.m17_c00259{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.m5_c00259{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);}
.m19_c00259{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c00259{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);}
.m4_c00259{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c00259{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);}
.m7_c00259{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11_c00259{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c00259{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00259{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00259{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.md_c00259{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00259{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);}
.m2_c00259{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m0_c00259{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00259{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,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;}
.fs3_c00259{font-size:3.456000px;}
.fs1_c00259{font-size:6.000000px;}
.fs11_c00259{font-size:6.900000px;}
.fs13_c00259{font-size:10.380000px;}
.fs4_c00259{font-size:13.800000px;}
.fs0_c00259{font-size:20.760000px;}
.fs14_c00259{font-size:24.180000px;}
.fs2_c00259{font-size:27.660000px;}
.fs7_c00259{font-size:48.360000px;}
.fsc_c00259{font-size:55.320000px;}
.fs5_c00259{font-size:58.740000px;}
.fse_c00259{font-size:62.220000px;}
.fs9_c00259{font-size:65.640000px;}
.fs10_c00259{font-size:69.120000px;}
.fsd_c00259{font-size:72.600000px;}
.fs8_c00259{font-size:76.020000px;}
.fsf_c00259{font-size:79.500000px;}
.fs6_c00259{font-size:82.920000px;}
.fs12_c00259{font-size:86.400000px;}
.fsa_c00259{font-size:89.880000px;}
.fsb_c00259{font-size:93.300000px;}
.y0_c00259{bottom:0.000000px;}
.y1c_c00259{bottom:210.810000px;}
.y19_c00259{bottom:213.405000px;}
.y6_c00259{bottom:214.275000px;}
.y1b_c00259{bottom:216.870000px;}
.y1a_c00259{bottom:228.090000px;}
.y14_c00259{bottom:229.830000px;}
.y15_c00259{bottom:230.685000px;}
.y16_c00259{bottom:231.555000px;}
.y18_c00259{bottom:235.875000px;}
.y17_c00259{bottom:238.470000px;}
.y1e_c00259{bottom:242.790000px;}
.y10_c00259{bottom:250.560000px;}
.y1d_c00259{bottom:251.430000px;}
.yf_c00259{bottom:252.285000px;}
.y11_c00259{bottom:253.155000px;}
.y12_c00259{bottom:254.010000px;}
.y13_c00259{bottom:254.880000px;}
.ye_c00259{bottom:259.200000px;}
.ya_c00259{bottom:270.435000px;}
.yc_c00259{bottom:271.290000px;}
.yd_c00259{bottom:272.160000px;}
.y9_c00259{bottom:273.885000px;}
.yb_c00259{bottom:274.755000px;}
.y8_c00259{bottom:294.630000px;}
.y7_c00259{bottom:295.485000px;}
.y3_c00259{bottom:319.680000px;}
.y4_c00259{bottom:406.080000px;}
.y5_c00259{bottom:406.950000px;}
.y1_c00259{bottom:454.470000px;}
.y2_c00259{bottom:456.195000px;}
.h5_c00259{height:3.110063px;}
.h3_c00259{height:5.399414px;}
.h13_c00259{height:6.209326px;}
.h15_c00259{height:9.340986px;}
.h6_c00259{height:12.418652px;}
.h2_c00259{height:18.681973px;}
.h16_c00259{height:21.759639px;}
.h4_c00259{height:24.891299px;}
.h9_c00259{height:43.519277px;}
.he_c00259{height:49.782598px;}
.h7_c00259{height:52.860264px;}
.h10_c00259{height:55.991924px;}
.hb_c00259{height:59.069590px;}
.h12_c00259{height:62.201250px;}
.hf_c00259{height:65.332910px;}
.ha_c00259{height:68.410576px;}
.h11_c00259{height:71.542236px;}
.h8_c00259{height:74.619902px;}
.h14_c00259{height:77.751563px;}
.hc_c00259{height:80.883223px;}
.hd_c00259{height:83.960889px;}
.h1_c00259{height:1502.250000px;}
.h0_c00259{height:1502.490000px;}
.w0_c00259{width:1113.690000px;}
.w1_c00259{width:1113.750000px;}
.x0_c00259{left:0.000000px;}
.x4_c00259{left:63.075000px;}
.x5_c00259{left:70.845000px;}
.x1_c00259{left:77.760000px;}
.x2_c00259{left:94.170000px;}
.x22_c00259{left:110.595000px;}
.x6_c00259{left:117.510000px;}
.x23_c00259{left:120.090000px;}
.x7_c00259{left:128.730000px;}
.xf_c00259{left:576.285000px;}
.x18_c00259{left:585.795000px;}
.x10_c00259{left:588.390000px;}
.xa_c00259{left:609.120000px;}
.x11_c00259{left:613.440000px;}
.x8_c00259{left:615.165000px;}
.x1c_c00259{left:630.720000px;}
.x9_c00259{left:632.445000px;}
.xb_c00259{left:643.680000px;}
.x19_c00259{left:648.870000px;}
.x12_c00259{left:672.195000px;}
.x13_c00259{left:685.155000px;}
.xc_c00259{left:705.885000px;}
.x14_c00259{left:720.570000px;}
.x15_c00259{left:736.995000px;}
.x1d_c00259{left:739.590000px;}
.xd_c00259{left:755.130000px;}
.x1e_c00259{left:763.770000px;}
.x1a_c00259{left:765.510000px;}
.x1f_c00259{left:781.920000px;}
.x16_c00259{left:791.430000px;}
.x20_c00259{left:801.795000px;}
.xe_c00259{left:816.480000px;}
.x1b_c00259{left:822.525000px;}
.x17_c00259{left:827.715000px;}
.x21_c00259{left:843.270000px;}
.x3_c00259{left:857.085000px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws0_c00259{word-spacing:0.000000pt;}
.fs3_c00259{font-size:3.072000pt;}
.fs1_c00259{font-size:5.333333pt;}
.fs11_c00259{font-size:6.133333pt;}
.fs13_c00259{font-size:9.226667pt;}
.fs4_c00259{font-size:12.266667pt;}
.fs0_c00259{font-size:18.453333pt;}
.fs14_c00259{font-size:21.493333pt;}
.fs2_c00259{font-size:24.586667pt;}
.fs7_c00259{font-size:42.986667pt;}
.fsc_c00259{font-size:49.173333pt;}
.fs5_c00259{font-size:52.213333pt;}
.fse_c00259{font-size:55.306667pt;}
.fs9_c00259{font-size:58.346667pt;}
.fs10_c00259{font-size:61.440000pt;}
.fsd_c00259{font-size:64.533333pt;}
.fs8_c00259{font-size:67.573333pt;}
.fsf_c00259{font-size:70.666667pt;}
.fs6_c00259{font-size:73.706667pt;}
.fs12_c00259{font-size:76.800000pt;}
.fsa_c00259{font-size:79.893333pt;}
.fsb_c00259{font-size:82.933333pt;}
.y0_c00259{bottom:0.000000pt;}
.y1c_c00259{bottom:187.386667pt;}
.y19_c00259{bottom:189.693333pt;}
.y6_c00259{bottom:190.466667pt;}
.y1b_c00259{bottom:192.773333pt;}
.y1a_c00259{bottom:202.746667pt;}
.y14_c00259{bottom:204.293333pt;}
.y15_c00259{bottom:205.053333pt;}
.y16_c00259{bottom:205.826667pt;}
.y18_c00259{bottom:209.666667pt;}
.y17_c00259{bottom:211.973333pt;}
.y1e_c00259{bottom:215.813333pt;}
.y10_c00259{bottom:222.720000pt;}
.y1d_c00259{bottom:223.493333pt;}
.yf_c00259{bottom:224.253333pt;}
.y11_c00259{bottom:225.026667pt;}
.y12_c00259{bottom:225.786667pt;}
.y13_c00259{bottom:226.560000pt;}
.ye_c00259{bottom:230.400000pt;}
.ya_c00259{bottom:240.386667pt;}
.yc_c00259{bottom:241.146667pt;}
.yd_c00259{bottom:241.920000pt;}
.y9_c00259{bottom:243.453333pt;}
.yb_c00259{bottom:244.226667pt;}
.y8_c00259{bottom:261.893333pt;}
.y7_c00259{bottom:262.653333pt;}
.y3_c00259{bottom:284.160000pt;}
.y4_c00259{bottom:360.960000pt;}
.y5_c00259{bottom:361.733333pt;}
.y1_c00259{bottom:403.973333pt;}
.y2_c00259{bottom:405.506667pt;}
.h5_c00259{height:2.764500pt;}
.h3_c00259{height:4.799479pt;}
.h13_c00259{height:5.519401pt;}
.h15_c00259{height:8.303099pt;}
.h6_c00259{height:11.038802pt;}
.h2_c00259{height:16.606198pt;}
.h16_c00259{height:19.341901pt;}
.h4_c00259{height:22.125599pt;}
.h9_c00259{height:38.683802pt;}
.he_c00259{height:44.251198pt;}
.h7_c00259{height:46.986901pt;}
.h10_c00259{height:49.770599pt;}
.hb_c00259{height:52.506302pt;}
.h12_c00259{height:55.290000pt;}
.hf_c00259{height:58.073698pt;}
.ha_c00259{height:60.809401pt;}
.h11_c00259{height:63.593099pt;}
.h8_c00259{height:66.328802pt;}
.h14_c00259{height:69.112500pt;}
.hc_c00259{height:71.896198pt;}
.hd_c00259{height:74.631901pt;}
.h1_c00259{height:1335.333333pt;}
.h0_c00259{height:1335.546667pt;}
.w0_c00259{width:989.946667pt;}
.w1_c00259{width:990.000000pt;}
.x0_c00259{left:0.000000pt;}
.x4_c00259{left:56.066667pt;}
.x5_c00259{left:62.973333pt;}
.x1_c00259{left:69.120000pt;}
.x2_c00259{left:83.706667pt;}
.x22_c00259{left:98.306667pt;}
.x6_c00259{left:104.453333pt;}
.x23_c00259{left:106.746667pt;}
.x7_c00259{left:114.426667pt;}
.xf_c00259{left:512.253333pt;}
.x18_c00259{left:520.706667pt;}
.x10_c00259{left:523.013333pt;}
.xa_c00259{left:541.440000pt;}
.x11_c00259{left:545.280000pt;}
.x8_c00259{left:546.813333pt;}
.x1c_c00259{left:560.640000pt;}
.x9_c00259{left:562.173333pt;}
.xb_c00259{left:572.160000pt;}
.x19_c00259{left:576.773333pt;}
.x12_c00259{left:597.506667pt;}
.x13_c00259{left:609.026667pt;}
.xc_c00259{left:627.453333pt;}
.x14_c00259{left:640.506667pt;}
.x15_c00259{left:655.106667pt;}
.x1d_c00259{left:657.413333pt;}
.xd_c00259{left:671.226667pt;}
.x1e_c00259{left:678.906667pt;}
.x1a_c00259{left:680.453333pt;}
.x1f_c00259{left:695.040000pt;}
.x16_c00259{left:703.493333pt;}
.x20_c00259{left:712.706667pt;}
.xe_c00259{left:725.760000pt;}
.x1b_c00259{left:731.133333pt;}
.x17_c00259{left:735.746667pt;}
.x21_c00259{left:749.573333pt;}
.x3_c00259{left:761.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_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_a1afd2559defbf18924fc8f1.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.109863;font-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_c00260{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma3_c00260{transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);}
.m15_c00260{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m68_c00260{transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);}
.m90_c00260{transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);}
.m6d_c00260{transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);}
.m99_c00260{transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);}
.m97_c00260{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.m43_c00260{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m61_c00260{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.m83_c00260{transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);}
.m81_c00260{transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);}
.m82_c00260{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m9a_c00260{transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);}
.m27_c00260{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m2e_c00260{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m3f_c00260{transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);}
.m1b_c00260{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);}
.m9e_c00260{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m88_c00260{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.m34_c00260{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.ma0_c00260{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.m4f_c00260{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);}
.m6f_c00260{transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);}
.ma2_c00260{transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);}
.m41_c00260{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m21_c00260{transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);}
.m80_c00260{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);}
.m84_c00260{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);}
.m35_c00260{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);}
.m8f_c00260{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);}
.m7b_c00260{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);}
.m9b_c00260{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);}
.m7c_c00260{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.m5b_c00260{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);}
.m6c_c00260{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);}
.m6e_c00260{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);}
.m3d_c00260{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m31_c00260{transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);}
.m87_c00260{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m8c_c00260{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);}
.m5a_c00260{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);}
.m10_c00260{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m7f_c00260{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);}
.m3b_c00260{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);}
.m2c_c00260{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);}
.m47_c00260{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);}
.ma4_c00260{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_c00260{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);}
.m9f_c00260{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m7e_c00260{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m3e_c00260{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m50_c00260{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.m2b_c00260{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);}
.m95_c00260{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);}
.m1a_c00260{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);}
.m6a_c00260{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);}
.m71_c00260{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);}
.m4c_c00260{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);}
.m40_c00260{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);}
.m69_c00260{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);}
.m70_c00260{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);}
.m75_c00260{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);}
.m77_c00260{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m29_c00260{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m4e_c00260{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);}
.m91_c00260{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);}
.m1c_c00260{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00260{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);}
.m12_c00260{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);}
.m89_c00260{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);}
.m49_c00260{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);}
.m51_c00260{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00260{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m59_c00260{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.me_c00260{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);}
.mb_c00260{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00260{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);}
.m24_c00260{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);}
.m4_c00260{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m78_c00260{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);}
.m2a_c00260{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m48_c00260{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);}
.m7_c00260{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m42_c00260{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);}
.m11_c00260{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m79_c00260{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00260{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m38_c00260{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00260{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);}
.m85_c00260{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00260{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m46_c00260{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m86_c00260{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m39_c00260{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m62_c00260{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00260{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m37_c00260{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c00260{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);}
.m94_c00260{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m92_c00260{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m63_c00260{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m53_c00260{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_c00260{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);}
.m14_c00260{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);}
.m1_c00260{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m72_c00260{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m93_c00260{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md_c00260{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m60_c00260{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m58_c00260{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);}
.m5d_c00260{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00260{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);}
.m55_c00260{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m13_c00260{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m2_c00260{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m6_c00260{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m23_c00260{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m8_c00260{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m57_c00260{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);}
.m64_c00260{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);}
.m44_c00260{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);}
.m52_c00260{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00260{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m32_c00260{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m8d_c00260{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00260{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m17_c00260{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);}
.m19_c00260{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma_c00260{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00260{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m0_c00260{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00260{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m25_c00260{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);}
.m3_c00260{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m7d_c00260{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m20_c00260{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00260{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);}
.m22_c00260{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m16_c00260{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m36_c00260{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m96_c00260{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m5f_c00260{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m73_c00260{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m54_c00260{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m28_c00260{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00260{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mf_c00260{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00260{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00260{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m30_c00260{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00260{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m9c_c00260{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m76_c00260{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m26_c00260{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m98_c00260{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m67_c00260{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m65_c00260{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m18_c00260{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00260{transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);}
.m74_c00260{transform:matrix(1.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.340000,0.000000,0.000000,0.250000,0,0);}
.m66_c00260{transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);}
.m56_c00260{transform:matrix(1.917500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.917500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.917500,0.000000,0.000000,0.250000,0,0);}
.m45_c00260{transform:matrix(1.932500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.932500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.932500,0.000000,0.000000,0.250000,0,0);}
.m9d_c00260{transform:matrix(2.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.207500,0.000000,0.000000,0.250000,0,0);}
.v1_c00260{vertical-align:-20.760000px;}
.v0_c00260{vertical-align:0.000000px;}
.v2_c00260{vertical-align:13.800000px;}
.ls2_c00260{letter-spacing:0.000000px;}
.ls1_c00260{letter-spacing:39.327480px;}
.ls0_c00260{letter-spacing:257.282880px;}
.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:-17.162145px;}
.ws1_c00260{word-spacing:0.000000px;}
.fc0_c00260{color:transparent;}
.fs15_c00260{font-size:3.456000px;}
.fs14_c00260{font-size:6.000000px;}
.fs10_c00260{font-size:6.900000px;}
.fsc_c00260{font-size:10.380000px;}
.fsb_c00260{font-size:13.800000px;}
.fs9_c00260{font-size:17.280000px;}
.fs6_c00260{font-size:20.760000px;}
.fsa_c00260{font-size:24.180000px;}
.fs8_c00260{font-size:27.660000px;}
.fse_c00260{font-size:31.080000px;}
.fsd_c00260{font-size:34.560000px;}
.fs11_c00260{font-size:38.040000px;}
.fs12_c00260{font-size:41.460000px;}
.fs13_c00260{font-size:44.940000px;}
.fsf_c00260{font-size:48.360000px;}
.fs2_c00260{font-size:51.840000px;}
.fs1_c00260{font-size:55.320000px;}
.fs3_c00260{font-size:58.740000px;}
.fs4_c00260{font-size:62.220000px;}
.fs5_c00260{font-size:65.640000px;}
.fs0_c00260{font-size:69.120000px;}
.fs17_c00260{font-size:72.600000px;}
.fs16_c00260{font-size:76.020000px;}
.fs7_c00260{font-size:79.500000px;}
.fs19_c00260{font-size:82.920000px;}
.fs1a_c00260{font-size:86.400000px;}
.fs18_c00260{font-size:89.880000px;}
.y0_c00260{bottom:0.000000px;}
.ya9_c00260{bottom:205.635000px;}
.ya6_c00260{bottom:229.830000px;}
.ya4_c00260{bottom:230.685000px;}
.ya8_c00260{bottom:232.410000px;}
.ya5_c00260{bottom:235.875000px;}
.ya7_c00260{bottom:238.470000px;}
.ya1_c00260{bottom:243.645000px;}
.ya2_c00260{bottom:247.110000px;}
.ya3_c00260{bottom:248.835000px;}
.ya0_c00260{bottom:249.690000px;}
.y9e_c00260{bottom:250.560000px;}
.y9d_c00260{bottom:251.430000px;}
.y9f_c00260{bottom:252.285000px;}
.y9b_c00260{bottom:256.605000px;}
.y9a_c00260{bottom:257.475000px;}
.y98_c00260{bottom:260.925000px;}
.y99_c00260{bottom:261.795000px;}
.y9c_c00260{bottom:262.650000px;}
.y91_c00260{bottom:266.115000px;}
.y92_c00260{bottom:270.435000px;}
.y96_c00260{bottom:271.290000px;}
.y93_c00260{bottom:272.160000px;}
.y94_c00260{bottom:273.885000px;}
.y97_c00260{bottom:278.205000px;}
.y95_c00260{bottom:283.395000px;}
.y8f_c00260{bottom:287.715000px;}
.y90_c00260{bottom:289.440000px;}
.y8e_c00260{bottom:290.310000px;}
.y8d_c00260{bottom:315.360000px;}
.y8c_c00260{bottom:338.685000px;}
.y8a_c00260{bottom:339.555000px;}
.y8b_c00260{bottom:340.410000px;}
.y88_c00260{bottom:341.280000px;}
.y89_c00260{bottom:342.150000px;}
.y86_c00260{bottom:355.110000px;}
.y87_c00260{bottom:356.835000px;}
.y82_c00260{bottom:716.250000px;}
.y85_c00260{bottom:996.195000px;}
.y83_c00260{bottom:1033.350000px;}
.y84_c00260{bottom:1039.395000px;}
.y80_c00260{bottom:1126.650000px;}
.y81_c00260{bottom:1128.390000px;}
.y7f_c00260{bottom:1133.565000px;}
.y7d_c00260{bottom:1142.205000px;}
.y7c_c00260{bottom:1144.800000px;}
.y7b_c00260{bottom:1147.395000px;}
.y7e_c00260{bottom:1156.890000px;}
.y7a_c00260{bottom:1159.485000px;}
.y79_c00260{bottom:1162.950000px;}
.y75_c00260{bottom:1163.805000px;}
.y76_c00260{bottom:1167.270000px;}
.y77_c00260{bottom:1168.125000px;}
.y74_c00260{bottom:1168.995000px;}
.y78_c00260{bottom:1169.850000px;}
.y73_c00260{bottom:1182.810000px;}
.y72_c00260{bottom:1183.680000px;}
.y6b_c00260{bottom:1184.550000px;}
.y6d_c00260{bottom:1185.405000px;}
.y6f_c00260{bottom:1186.275000px;}
.y71_c00260{bottom:1187.130000px;}
.y6c_c00260{bottom:1188.000000px;}
.y70_c00260{bottom:1188.870000px;}
.y6e_c00260{bottom:1189.725000px;}
.y64_c00260{bottom:1204.410000px;}
.y66_c00260{bottom:1205.280000px;}
.y68_c00260{bottom:1207.005000px;}
.y65_c00260{bottom:1207.875000px;}
.y67_c00260{bottom:1208.730000px;}
.y69_c00260{bottom:1209.600000px;}
.y6a_c00260{bottom:1211.325000px;}
.y60_c00260{bottom:1217.370000px;}
.y5f_c00260{bottom:1218.240000px;}
.y62_c00260{bottom:1219.965000px;}
.y63_c00260{bottom:1221.690000px;}
.y5c_c00260{bottom:1222.560000px;}
.y5b_c00260{bottom:1223.430000px;}
.y5d_c00260{bottom:1224.285000px;}
.y61_c00260{bottom:1225.155000px;}
.y5e_c00260{bottom:1226.880000px;}
.y5a_c00260{bottom:1228.605000px;}
.y59_c00260{bottom:1229.475000px;}
.y4f_c00260{bottom:1230.330000px;}
.y57_c00260{bottom:1232.070000px;}
.y51_c00260{bottom:1234.650000px;}
.y54_c00260{bottom:1235.520000px;}
.y55_c00260{bottom:1236.390000px;}
.y52_c00260{bottom:1237.245000px;}
.y56_c00260{bottom:1238.115000px;}
.y53_c00260{bottom:1239.840000px;}
.y58_c00260{bottom:1242.435000px;}
.y50_c00260{bottom:1244.160000px;}
.y4d_c00260{bottom:1246.755000px;}
.y4b_c00260{bottom:1247.610000px;}
.y4a_c00260{bottom:1248.480000px;}
.y49_c00260{bottom:1249.350000px;}
.y4c_c00260{bottom:1250.205000px;}
.y4e_c00260{bottom:1251.075000px;}
.y46_c00260{bottom:1256.250000px;}
.y48_c00260{bottom:1257.990000px;}
.y47_c00260{bottom:1260.570000px;}
.y44_c00260{bottom:1262.310000px;}
.y43_c00260{bottom:1263.165000px;}
.y45_c00260{bottom:1264.035000px;}
.y42_c00260{bottom:1266.630000px;}
.y41_c00260{bottom:1268.355000px;}
.y3d_c00260{bottom:1269.210000px;}
.y3e_c00260{bottom:1270.080000px;}
.y40_c00260{bottom:1270.950000px;}
.y3f_c00260{bottom:1274.400000px;}
.y3c_c00260{bottom:1275.270000px;}
.y3b_c00260{bottom:1283.910000px;}
.y38_c00260{bottom:1284.765000px;}
.y37_c00260{bottom:1286.490000px;}
.y39_c00260{bottom:1287.360000px;}
.y3a_c00260{bottom:1289.085000px;}
.y31_c00260{bottom:1289.955000px;}
.y2f_c00260{bottom:1290.810000px;}
.y36_c00260{bottom:1295.130000px;}
.y34_c00260{bottom:1296.000000px;}
.y35_c00260{bottom:1296.870000px;}
.y32_c00260{bottom:1298.595000px;}
.y33_c00260{bottom:1299.450000px;}
.y30_c00260{bottom:1302.045000px;}
.y27_c00260{bottom:1304.640000px;}
.y2a_c00260{bottom:1305.510000px;}
.y29_c00260{bottom:1306.365000px;}
.y2e_c00260{bottom:1307.235000px;}
.y2c_c00260{bottom:1308.090000px;}
.y25_c00260{bottom:1308.960000px;}
.y24_c00260{bottom:1309.830000px;}
.y26_c00260{bottom:1310.685000px;}
.y2b_c00260{bottom:1312.410000px;}
.y2d_c00260{bottom:1313.280000px;}
.y28_c00260{bottom:1314.150000px;}
.y1f_c00260{bottom:1319.325000px;}
.y22_c00260{bottom:1320.195000px;}
.y23_c00260{bottom:1321.050000px;}
.y21_c00260{bottom:1321.920000px;}
.y20_c00260{bottom:1323.645000px;}
.y1e_c00260{bottom:1324.515000px;}
.y1d_c00260{bottom:1326.240000px;}
.y15_c00260{bottom:1328.835000px;}
.y13_c00260{bottom:1329.690000px;}
.y14_c00260{bottom:1330.560000px;}
.y1b_c00260{bottom:1331.430000px;}
.y18_c00260{bottom:1333.155000px;}
.y16_c00260{bottom:1334.010000px;}
.y1c_c00260{bottom:1335.750000px;}
.y19_c00260{bottom:1338.330000px;}
.y10_c00260{bottom:1339.200000px;}
.y17_c00260{bottom:1340.070000px;}
.ye_c00260{bottom:1340.925000px;}
.y1a_c00260{bottom:1343.520000px;}
.y12_c00260{bottom:1344.390000px;}
.yc_c00260{bottom:1345.245000px;}
.ya_c00260{bottom:1346.115000px;}
.yb_c00260{bottom:1346.970000px;}
.y9_c00260{bottom:1349.565000px;}
.yd_c00260{bottom:1350.435000px;}
.yf_c00260{bottom:1351.290000px;}
.y11_c00260{bottom:1352.160000px;}
.y7_c00260{bottom:1364.250000px;}
.y8_c00260{bottom:1365.120000px;}
.y5_c00260{bottom:1369.440000px;}
.y4_c00260{bottom:1370.310000px;}
.y6_c00260{bottom:1371.165000px;}
.y2_c00260{bottom:1393.635000px;}
.y3_c00260{bottom:1394.490000px;}
.y1_c00260{bottom:1397.085000px;}
.h17_c00260{height:3.110063px;}
.h16_c00260{height:5.399414px;}
.h12_c00260{height:6.209326px;}
.he_c00260{height:9.340986px;}
.hd_c00260{height:12.418652px;}
.hb_c00260{height:15.550313px;}
.h8_c00260{height:18.681973px;}
.hc_c00260{height:21.759639px;}
.ha_c00260{height:24.891299px;}
.h10_c00260{height:27.968965px;}
.hf_c00260{height:31.100625px;}
.h13_c00260{height:34.232285px;}
.h14_c00260{height:37.309951px;}
.h15_c00260{height:40.441611px;}
.h11_c00260{height:43.519277px;}
.h4_c00260{height:46.650937px;}
.h3_c00260{height:49.782598px;}
.h5_c00260{height:52.860264px;}
.h6_c00260{height:55.991924px;}
.h7_c00260{height:59.069590px;}
.h2_c00260{height:62.201250px;}
.h19_c00260{height:65.332910px;}
.h18_c00260{height:68.410576px;}
.h9_c00260{height:71.542236px;}
.h1b_c00260{height:74.619902px;}
.h1c_c00260{height:77.751563px;}
.h1a_c00260{height:80.883223px;}
.h0_c00260{height:1509.405000px;}
.h1_c00260{height:1509.750000px;}
.w1_c00260{width:1104.000000px;}
.w0_c00260{width:1104.195000px;}
.x0_c00260{left:0.000000px;}
.x43_c00260{left:251.429400px;}
.x21_c00260{left:253.155000px;}
.x4b_c00260{left:255.750000px;}
.x4c_c00260{left:261.795000px;}
.x12_c00260{left:269.565000px;}
.x22_c00260{left:285.990000px;}
.x4d_c00260{left:292.035000px;}
.x89_c00260{left:298.080000px;}
.x60_c00260{left:299.805000px;}
.x57_c00260{left:302.400000px;}
.x80_c00260{left:304.125000px;}
.x67_c00260{left:310.170000px;}
.x39_c00260{left:313.635000px;}
.x7c_c00260{left:315.360000px;}
.x23_c00260{left:321.405000px;}
.x5_c00260{left:323.130000px;}
.x4e_c00260{left:326.595000px;}
.x58_c00260{left:330.915000px;}
.x8a_c00260{left:334.365000px;}
.x61_c00260{left:336.960000px;}
.x13_c00260{left:340.410000px;}
.x81_c00260{left:343.875000px;}
.x4f_c00260{left:346.470000px;}
.x68_c00260{left:354.240000px;}
.x6_c00260{left:356.835000px;}
.x24_c00260{left:359.430000px;}
.x77_c00260{left:362.880000px;}
.x7_c00260{left:370.650000px;}
.x3a_c00260{left:376.710000px;}
.x8c_c00260{left:378.435000px;}
.x7d_c00260{left:382.755000px;}
.x25_c00260{left:388.800000px;}
.x14_c00260{left:393.990000px;}
.x82_c00260{left:398.310000px;}
.x26_c00260{left:401.760000px;}
.x8_c00260{left:405.210000px;}
.x15_c00260{left:409.530000px;}
.x8d_c00260{left:414.720000px;}
.x27_c00260{left:422.490000px;}
.x9_c00260{left:425.085000px;}
.x50_c00260{left:435.450000px;}
.xa_c00260{left:437.190000px;}
.x1_c00260{left:439.770000px;}
.x83_c00260{left:442.365000px;}
.x78_c00260{left:445.830000px;}
.x86_c00260{left:449.280000px;}
.x3b_c00260{left:458.790000px;}
.x62_c00260{left:464.835000px;}
.x51_c00260{left:468.285000px;}
.x44_c00260{left:470.010000px;}
.x6e_c00260{left:475.200000px;}
.x8b_c00260{left:477.795000px;}
.x16_c00260{left:479.520000px;}
.x7e_c00260{left:481.245000px;}
.x45_c00260{left:483.840000px;}
.x87_c00260{left:491.610000px;}
.x52_c00260{left:493.350000px;}
.x69_c00260{left:497.670000px;}
.x59_c00260{left:501.120000px;}
.x28_c00260{left:507.165000px;}
.x3c_c00260{left:511.485000px;}
.x7f_c00260{left:514.080000px;}
.x5a_c00260{left:516.675000px;}
.x63_c00260{left:526.170000px;}
.x29_c00260{left:537.405000px;}
.x6f_c00260{left:540.870000px;}
.x9f_c00260{left:545.190000px;}
.xb_c00260{left:548.640000px;}
.xa0_c00260{left:551.235000px;}
.x9d_c00260{left:568.515000px;}
.x3d_c00260{left:570.240000px;}
.x2_c00260{left:573.690000px;}
.x46_c00260{left:578.010000px;}
.x98_c00260{left:580.605000px;}
.x3e_c00260{left:584.925000px;}
.x84_c00260{left:589.245000px;}
.x17_c00260{left:596.160000px;}
.x47_c00260{left:600.480000px;}
.x88_c00260{left:602.205000px;}
.x2a_c00260{left:607.395000px;}
.x53_c00260{left:609.990000px;}
.x97_c00260{left:612.570000px;}
.x79_c00260{left:616.890000px;}
.x64_c00260{left:618.630000px;}
.x70_c00260{left:623.805000px;}
.x71_c00260{left:625.530000px;}
.x30_c00260{left:628.125000px;}
.x18_c00260{left:630.720000px;}
.x72_c00260{left:634.170000px;}
.xa1_c00260{left:635.910000px;}
.x73_c00260{left:637.635000px;}
.x6a_c00260{left:641.085000px;}
.x85_c00260{left:642.810000px;}
.x3f_c00260{left:644.550000px;}
.x9e_c00260{left:648.870000px;}
.x92_c00260{left:656.640000px;}
.x2b_c00260{left:660.090000px;}
.x19_c00260{left:662.685000px;}
.x65_c00260{left:666.150000px;}
.x74_c00260{left:668.730000px;}
.xc_c00260{left:670.470000px;}
.x2c_c00260{left:673.050000px;}
.x31_c00260{left:676.515000px;}
.x1a_c00260{left:687.750000px;}
.x93_c00260{left:691.200000px;}
.x5b_c00260{left:692.925000px;}
.x6b_c00260{left:694.650000px;}
.x54_c00260{left:699.840000px;}
.x3_c00260{left:704.160000px;}
.xd_c00260{left:706.755000px;}
.x5c_c00260{left:710.205000px;}
.x2d_c00260{left:715.395000px;}
.x4_c00260{left:723.165000px;}
.xe_c00260{left:724.890000px;}
.x94_c00260{left:726.630000px;}
.x5d_c00260{left:733.530000px;}
.x1b_c00260{left:736.995000px;}
.xf_c00260{left:739.590000px;}
.x48_c00260{left:741.315000px;}
.x95_c00260{left:744.765000px;}
.x32_c00260{left:746.490000px;}
.x10_c00260{left:750.810000px;}
.x96_c00260{left:754.275000px;}
.x9c_c00260{left:756.000000px;}
.x49_c00260{left:757.725000px;}
.x1c_c00260{left:760.320000px;}
.x33_c00260{left:764.640000px;}
.x6c_c00260{left:766.365000px;}
.x11_c00260{left:768.960000px;}
.x2e_c00260{left:773.280000px;}
.x34_c00260{left:781.920000px;}
.x99_c00260{left:785.370000px;}
.x35_c00260{left:787.110000px;}
.x66_c00260{left:792.285000px;}
.xa3_c00260{left:794.010000px;}
.x5e_c00260{left:796.605000px;}
.x9a_c00260{left:798.330000px;}
.x4a_c00260{left:800.070000px;}
.x40_c00260{left:805.245000px;}
.x36_c00260{left:807.840000px;}
.x9b_c00260{left:812.160000px;}
.x1d_c00260{left:813.885000px;}
.x55_c00260{left:815.610000px;}
.x41_c00260{left:818.205000px;}
.xa2_c00260{left:820.800000px;}
.x5f_c00260{left:826.845000px;}
.x2f_c00260{left:828.570000px;}
.x37_c00260{left:832.035000px;}
.x1e_c00260{left:834.630000px;}
.x7a_c00260{left:841.530000px;}
.x75_c00260{left:850.170000px;}
.x56_c00260{left:852.765000px;}
.x1f_c00260{left:858.810000px;}
.x6d_c00260{left:861.405000px;}
.x42_c00260{left:864.000000px;}
.x7b_c00260{left:866.595000px;}
.x20_c00260{left:870.915000px;}
.x38_c00260{left:874.365000px;}
.x76_c00260{left:891.645000px;}
.x8f_c00260{left:994.470000px;}
.x90_c00260{left:1008.285000px;}
.x91_c00260{left:1067.040225px;}
.x8e_c00260{left:1089.510000px;}
@media print{
.v1_c00260{vertical-align:-18.453333pt;}
.v0_c00260{vertical-align:0.000000pt;}
.v2_c00260{vertical-align:12.266667pt;}
.ls2_c00260{letter-spacing:0.000000pt;}
.ls1_c00260{letter-spacing:34.957760pt;}
.ls0_c00260{letter-spacing:228.695893pt;}
.ws0_c00260{word-spacing:-15.255240pt;}
.ws1_c00260{word-spacing:0.000000pt;}
.fs15_c00260{font-size:3.072000pt;}
.fs14_c00260{font-size:5.333333pt;}
.fs10_c00260{font-size:6.133333pt;}
.fsc_c00260{font-size:9.226667pt;}
.fsb_c00260{font-size:12.266667pt;}
.fs9_c00260{font-size:15.360000pt;}
.fs6_c00260{font-size:18.453333pt;}
.fsa_c00260{font-size:21.493333pt;}
.fs8_c00260{font-size:24.586667pt;}
.fse_c00260{font-size:27.626667pt;}
.fsd_c00260{font-size:30.720000pt;}
.fs11_c00260{font-size:33.813333pt;}
.fs12_c00260{font-size:36.853333pt;}
.fs13_c00260{font-size:39.946667pt;}
.fsf_c00260{font-size:42.986667pt;}
.fs2_c00260{font-size:46.080000pt;}
.fs1_c00260{font-size:49.173333pt;}
.fs3_c00260{font-size:52.213333pt;}
.fs4_c00260{font-size:55.306667pt;}
.fs5_c00260{font-size:58.346667pt;}
.fs0_c00260{font-size:61.440000pt;}
.fs17_c00260{font-size:64.533333pt;}
.fs16_c00260{font-size:67.573333pt;}
.fs7_c00260{font-size:70.666667pt;}
.fs19_c00260{font-size:73.706667pt;}
.fs1a_c00260{font-size:76.800000pt;}
.fs18_c00260{font-size:79.893333pt;}
.y0_c00260{bottom:0.000000pt;}
.ya9_c00260{bottom:182.786667pt;}
.ya6_c00260{bottom:204.293333pt;}
.ya4_c00260{bottom:205.053333pt;}
.ya8_c00260{bottom:206.586667pt;}
.ya5_c00260{bottom:209.666667pt;}
.ya7_c00260{bottom:211.973333pt;}
.ya1_c00260{bottom:216.573333pt;}
.ya2_c00260{bottom:219.653333pt;}
.ya3_c00260{bottom:221.186667pt;}
.ya0_c00260{bottom:221.946667pt;}
.y9e_c00260{bottom:222.720000pt;}
.y9d_c00260{bottom:223.493333pt;}
.y9f_c00260{bottom:224.253333pt;}
.y9b_c00260{bottom:228.093333pt;}
.y9a_c00260{bottom:228.866667pt;}
.y98_c00260{bottom:231.933333pt;}
.y99_c00260{bottom:232.706667pt;}
.y9c_c00260{bottom:233.466667pt;}
.y91_c00260{bottom:236.546667pt;}
.y92_c00260{bottom:240.386667pt;}
.y96_c00260{bottom:241.146667pt;}
.y93_c00260{bottom:241.920000pt;}
.y94_c00260{bottom:243.453333pt;}
.y97_c00260{bottom:247.293333pt;}
.y95_c00260{bottom:251.906667pt;}
.y8f_c00260{bottom:255.746667pt;}
.y90_c00260{bottom:257.280000pt;}
.y8e_c00260{bottom:258.053333pt;}
.y8d_c00260{bottom:280.320000pt;}
.y8c_c00260{bottom:301.053333pt;}
.y8a_c00260{bottom:301.826667pt;}
.y8b_c00260{bottom:302.586667pt;}
.y88_c00260{bottom:303.360000pt;}
.y89_c00260{bottom:304.133333pt;}
.y86_c00260{bottom:315.653333pt;}
.y87_c00260{bottom:317.186667pt;}
.y82_c00260{bottom:636.666667pt;}
.y85_c00260{bottom:885.506667pt;}
.y83_c00260{bottom:918.533333pt;}
.y84_c00260{bottom:923.906667pt;}
.y80_c00260{bottom:1001.466667pt;}
.y81_c00260{bottom:1003.013333pt;}
.y7f_c00260{bottom:1007.613333pt;}
.y7d_c00260{bottom:1015.293333pt;}
.y7c_c00260{bottom:1017.600000pt;}
.y7b_c00260{bottom:1019.906667pt;}
.y7e_c00260{bottom:1028.346667pt;}
.y7a_c00260{bottom:1030.653333pt;}
.y79_c00260{bottom:1033.733333pt;}
.y75_c00260{bottom:1034.493333pt;}
.y76_c00260{bottom:1037.573333pt;}
.y77_c00260{bottom:1038.333333pt;}
.y74_c00260{bottom:1039.106667pt;}
.y78_c00260{bottom:1039.866667pt;}
.y73_c00260{bottom:1051.386667pt;}
.y72_c00260{bottom:1052.160000pt;}
.y6b_c00260{bottom:1052.933333pt;}
.y6d_c00260{bottom:1053.693333pt;}
.y6f_c00260{bottom:1054.466667pt;}
.y71_c00260{bottom:1055.226667pt;}
.y6c_c00260{bottom:1056.000000pt;}
.y70_c00260{bottom:1056.773333pt;}
.y6e_c00260{bottom:1057.533333pt;}
.y64_c00260{bottom:1070.586667pt;}
.y66_c00260{bottom:1071.360000pt;}
.y68_c00260{bottom:1072.893333pt;}
.y65_c00260{bottom:1073.666667pt;}
.y67_c00260{bottom:1074.426667pt;}
.y69_c00260{bottom:1075.200000pt;}
.y6a_c00260{bottom:1076.733333pt;}
.y60_c00260{bottom:1082.106667pt;}
.y5f_c00260{bottom:1082.880000pt;}
.y62_c00260{bottom:1084.413333pt;}
.y63_c00260{bottom:1085.946667pt;}
.y5c_c00260{bottom:1086.720000pt;}
.y5b_c00260{bottom:1087.493333pt;}
.y5d_c00260{bottom:1088.253333pt;}
.y61_c00260{bottom:1089.026667pt;}
.y5e_c00260{bottom:1090.560000pt;}
.y5a_c00260{bottom:1092.093333pt;}
.y59_c00260{bottom:1092.866667pt;}
.y4f_c00260{bottom:1093.626667pt;}
.y57_c00260{bottom:1095.173333pt;}
.y51_c00260{bottom:1097.466667pt;}
.y54_c00260{bottom:1098.240000pt;}
.y55_c00260{bottom:1099.013333pt;}
.y52_c00260{bottom:1099.773333pt;}
.y56_c00260{bottom:1100.546667pt;}
.y53_c00260{bottom:1102.080000pt;}
.y58_c00260{bottom:1104.386667pt;}
.y50_c00260{bottom:1105.920000pt;}
.y4d_c00260{bottom:1108.226667pt;}
.y4b_c00260{bottom:1108.986667pt;}
.y4a_c00260{bottom:1109.760000pt;}
.y49_c00260{bottom:1110.533333pt;}
.y4c_c00260{bottom:1111.293333pt;}
.y4e_c00260{bottom:1112.066667pt;}
.y46_c00260{bottom:1116.666667pt;}
.y48_c00260{bottom:1118.213333pt;}
.y47_c00260{bottom:1120.506667pt;}
.y44_c00260{bottom:1122.053333pt;}
.y43_c00260{bottom:1122.813333pt;}
.y45_c00260{bottom:1123.586667pt;}
.y42_c00260{bottom:1125.893333pt;}
.y41_c00260{bottom:1127.426667pt;}
.y3d_c00260{bottom:1128.186667pt;}
.y3e_c00260{bottom:1128.960000pt;}
.y40_c00260{bottom:1129.733333pt;}
.y3f_c00260{bottom:1132.800000pt;}
.y3c_c00260{bottom:1133.573333pt;}
.y3b_c00260{bottom:1141.253333pt;}
.y38_c00260{bottom:1142.013333pt;}
.y37_c00260{bottom:1143.546667pt;}
.y39_c00260{bottom:1144.320000pt;}
.y3a_c00260{bottom:1145.853333pt;}
.y31_c00260{bottom:1146.626667pt;}
.y2f_c00260{bottom:1147.386667pt;}
.y36_c00260{bottom:1151.226667pt;}
.y34_c00260{bottom:1152.000000pt;}
.y35_c00260{bottom:1152.773333pt;}
.y32_c00260{bottom:1154.306667pt;}
.y33_c00260{bottom:1155.066667pt;}
.y30_c00260{bottom:1157.373333pt;}
.y27_c00260{bottom:1159.680000pt;}
.y2a_c00260{bottom:1160.453333pt;}
.y29_c00260{bottom:1161.213333pt;}
.y2e_c00260{bottom:1161.986667pt;}
.y2c_c00260{bottom:1162.746667pt;}
.y25_c00260{bottom:1163.520000pt;}
.y24_c00260{bottom:1164.293333pt;}
.y26_c00260{bottom:1165.053333pt;}
.y2b_c00260{bottom:1166.586667pt;}
.y2d_c00260{bottom:1167.360000pt;}
.y28_c00260{bottom:1168.133333pt;}
.y1f_c00260{bottom:1172.733333pt;}
.y22_c00260{bottom:1173.506667pt;}
.y23_c00260{bottom:1174.266667pt;}
.y21_c00260{bottom:1175.040000pt;}
.y20_c00260{bottom:1176.573333pt;}
.y1e_c00260{bottom:1177.346667pt;}
.y1d_c00260{bottom:1178.880000pt;}
.y15_c00260{bottom:1181.186667pt;}
.y13_c00260{bottom:1181.946667pt;}
.y14_c00260{bottom:1182.720000pt;}
.y1b_c00260{bottom:1183.493333pt;}
.y18_c00260{bottom:1185.026667pt;}
.y16_c00260{bottom:1185.786667pt;}
.y1c_c00260{bottom:1187.333333pt;}
.y19_c00260{bottom:1189.626667pt;}
.y10_c00260{bottom:1190.400000pt;}
.y17_c00260{bottom:1191.173333pt;}
.ye_c00260{bottom:1191.933333pt;}
.y1a_c00260{bottom:1194.240000pt;}
.y12_c00260{bottom:1195.013333pt;}
.yc_c00260{bottom:1195.773333pt;}
.ya_c00260{bottom:1196.546667pt;}
.yb_c00260{bottom:1197.306667pt;}
.y9_c00260{bottom:1199.613333pt;}
.yd_c00260{bottom:1200.386667pt;}
.yf_c00260{bottom:1201.146667pt;}
.y11_c00260{bottom:1201.920000pt;}
.y7_c00260{bottom:1212.666667pt;}
.y8_c00260{bottom:1213.440000pt;}
.y5_c00260{bottom:1217.280000pt;}
.y4_c00260{bottom:1218.053333pt;}
.y6_c00260{bottom:1218.813333pt;}
.y2_c00260{bottom:1238.786667pt;}
.y3_c00260{bottom:1239.546667pt;}
.y1_c00260{bottom:1241.853333pt;}
.h17_c00260{height:2.764500pt;}
.h16_c00260{height:4.799479pt;}
.h12_c00260{height:5.519401pt;}
.he_c00260{height:8.303099pt;}
.hd_c00260{height:11.038802pt;}
.hb_c00260{height:13.822500pt;}
.h8_c00260{height:16.606198pt;}
.hc_c00260{height:19.341901pt;}
.ha_c00260{height:22.125599pt;}
.h10_c00260{height:24.861302pt;}
.hf_c00260{height:27.645000pt;}
.h13_c00260{height:30.428698pt;}
.h14_c00260{height:33.164401pt;}
.h15_c00260{height:35.948099pt;}
.h11_c00260{height:38.683802pt;}
.h4_c00260{height:41.467500pt;}
.h3_c00260{height:44.251198pt;}
.h5_c00260{height:46.986901pt;}
.h6_c00260{height:49.770599pt;}
.h7_c00260{height:52.506302pt;}
.h2_c00260{height:55.290000pt;}
.h19_c00260{height:58.073698pt;}
.h18_c00260{height:60.809401pt;}
.h9_c00260{height:63.593099pt;}
.h1b_c00260{height:66.328802pt;}
.h1c_c00260{height:69.112500pt;}
.h1a_c00260{height:71.896198pt;}
.h0_c00260{height:1341.693333pt;}
.h1_c00260{height:1342.000000pt;}
.w1_c00260{width:981.333333pt;}
.w0_c00260{width:981.506667pt;}
.x0_c00260{left:0.000000pt;}
.x43_c00260{left:223.492800pt;}
.x21_c00260{left:225.026667pt;}
.x4b_c00260{left:227.333333pt;}
.x4c_c00260{left:232.706667pt;}
.x12_c00260{left:239.613333pt;}
.x22_c00260{left:254.213333pt;}
.x4d_c00260{left:259.586667pt;}
.x89_c00260{left:264.960000pt;}
.x60_c00260{left:266.493333pt;}
.x57_c00260{left:268.800000pt;}
.x80_c00260{left:270.333333pt;}
.x67_c00260{left:275.706667pt;}
.x39_c00260{left:278.786667pt;}
.x7c_c00260{left:280.320000pt;}
.x23_c00260{left:285.693333pt;}
.x5_c00260{left:287.226667pt;}
.x4e_c00260{left:290.306667pt;}
.x58_c00260{left:294.146667pt;}
.x8a_c00260{left:297.213333pt;}
.x61_c00260{left:299.520000pt;}
.x13_c00260{left:302.586667pt;}
.x81_c00260{left:305.666667pt;}
.x4f_c00260{left:307.973333pt;}
.x68_c00260{left:314.880000pt;}
.x6_c00260{left:317.186667pt;}
.x24_c00260{left:319.493333pt;}
.x77_c00260{left:322.560000pt;}
.x7_c00260{left:329.466667pt;}
.x3a_c00260{left:334.853333pt;}
.x8c_c00260{left:336.386667pt;}
.x7d_c00260{left:340.226667pt;}
.x25_c00260{left:345.600000pt;}
.x14_c00260{left:350.213333pt;}
.x82_c00260{left:354.053333pt;}
.x26_c00260{left:357.120000pt;}
.x8_c00260{left:360.186667pt;}
.x15_c00260{left:364.026667pt;}
.x8d_c00260{left:368.640000pt;}
.x27_c00260{left:375.546667pt;}
.x9_c00260{left:377.853333pt;}
.x50_c00260{left:387.066667pt;}
.xa_c00260{left:388.613333pt;}
.x1_c00260{left:390.906667pt;}
.x83_c00260{left:393.213333pt;}
.x78_c00260{left:396.293333pt;}
.x86_c00260{left:399.360000pt;}
.x3b_c00260{left:407.813333pt;}
.x62_c00260{left:413.186667pt;}
.x51_c00260{left:416.253333pt;}
.x44_c00260{left:417.786667pt;}
.x6e_c00260{left:422.400000pt;}
.x8b_c00260{left:424.706667pt;}
.x16_c00260{left:426.240000pt;}
.x7e_c00260{left:427.773333pt;}
.x45_c00260{left:430.080000pt;}
.x87_c00260{left:436.986667pt;}
.x52_c00260{left:438.533333pt;}
.x69_c00260{left:442.373333pt;}
.x59_c00260{left:445.440000pt;}
.x28_c00260{left:450.813333pt;}
.x3c_c00260{left:454.653333pt;}
.x7f_c00260{left:456.960000pt;}
.x5a_c00260{left:459.266667pt;}
.x63_c00260{left:467.706667pt;}
.x29_c00260{left:477.693333pt;}
.x6f_c00260{left:480.773333pt;}
.x9f_c00260{left:484.613333pt;}
.xb_c00260{left:487.680000pt;}
.xa0_c00260{left:489.986667pt;}
.x9d_c00260{left:505.346667pt;}
.x3d_c00260{left:506.880000pt;}
.x2_c00260{left:509.946667pt;}
.x46_c00260{left:513.786667pt;}
.x98_c00260{left:516.093333pt;}
.x3e_c00260{left:519.933333pt;}
.x84_c00260{left:523.773333pt;}
.x17_c00260{left:529.920000pt;}
.x47_c00260{left:533.760000pt;}
.x88_c00260{left:535.293333pt;}
.x2a_c00260{left:539.906667pt;}
.x53_c00260{left:542.213333pt;}
.x97_c00260{left:544.506667pt;}
.x79_c00260{left:548.346667pt;}
.x64_c00260{left:549.893333pt;}
.x70_c00260{left:554.493333pt;}
.x71_c00260{left:556.026667pt;}
.x30_c00260{left:558.333333pt;}
.x18_c00260{left:560.640000pt;}
.x72_c00260{left:563.706667pt;}
.xa1_c00260{left:565.253333pt;}
.x73_c00260{left:566.786667pt;}
.x6a_c00260{left:569.853333pt;}
.x85_c00260{left:571.386667pt;}
.x3f_c00260{left:572.933333pt;}
.x9e_c00260{left:576.773333pt;}
.x92_c00260{left:583.680000pt;}
.x2b_c00260{left:586.746667pt;}
.x19_c00260{left:589.053333pt;}
.x65_c00260{left:592.133333pt;}
.x74_c00260{left:594.426667pt;}
.xc_c00260{left:595.973333pt;}
.x2c_c00260{left:598.266667pt;}
.x31_c00260{left:601.346667pt;}
.x1a_c00260{left:611.333333pt;}
.x93_c00260{left:614.400000pt;}
.x5b_c00260{left:615.933333pt;}
.x6b_c00260{left:617.466667pt;}
.x54_c00260{left:622.080000pt;}
.x3_c00260{left:625.920000pt;}
.xd_c00260{left:628.226667pt;}
.x5c_c00260{left:631.293333pt;}
.x2d_c00260{left:635.906667pt;}
.x4_c00260{left:642.813333pt;}
.xe_c00260{left:644.346667pt;}
.x94_c00260{left:645.893333pt;}
.x5d_c00260{left:652.026667pt;}
.x1b_c00260{left:655.106667pt;}
.xf_c00260{left:657.413333pt;}
.x48_c00260{left:658.946667pt;}
.x95_c00260{left:662.013333pt;}
.x32_c00260{left:663.546667pt;}
.x10_c00260{left:667.386667pt;}
.x96_c00260{left:670.466667pt;}
.x9c_c00260{left:672.000000pt;}
.x49_c00260{left:673.533333pt;}
.x1c_c00260{left:675.840000pt;}
.x33_c00260{left:679.680000pt;}
.x6c_c00260{left:681.213333pt;}
.x11_c00260{left:683.520000pt;}
.x2e_c00260{left:687.360000pt;}
.x34_c00260{left:695.040000pt;}
.x99_c00260{left:698.106667pt;}
.x35_c00260{left:699.653333pt;}
.x66_c00260{left:704.253333pt;}
.xa3_c00260{left:705.786667pt;}
.x5e_c00260{left:708.093333pt;}
.x9a_c00260{left:709.626667pt;}
.x4a_c00260{left:711.173333pt;}
.x40_c00260{left:715.773333pt;}
.x36_c00260{left:718.080000pt;}
.x9b_c00260{left:721.920000pt;}
.x1d_c00260{left:723.453333pt;}
.x55_c00260{left:724.986667pt;}
.x41_c00260{left:727.293333pt;}
.xa2_c00260{left:729.600000pt;}
.x5f_c00260{left:734.973333pt;}
.x2f_c00260{left:736.506667pt;}
.x37_c00260{left:739.586667pt;}
.x1e_c00260{left:741.893333pt;}
.x7a_c00260{left:748.026667pt;}
.x75_c00260{left:755.706667pt;}
.x56_c00260{left:758.013333pt;}
.x1f_c00260{left:763.386667pt;}
.x6d_c00260{left:765.693333pt;}
.x42_c00260{left:768.000000pt;}
.x7b_c00260{left:770.306667pt;}
.x20_c00260{left:774.146667pt;}
.x38_c00260{left:777.213333pt;}
.x76_c00260{left:792.573333pt;}
.x8f_c00260{left:883.973333pt;}
.x90_c00260{left:896.253333pt;}
.x91_c00260{left:948.480200pt;}
.x8e_c00260{left:968.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e85ffd2a5fb8e46be470153.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.109863;font-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_c00261{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);}
.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;}
.fs0_c00261{font-size:600.000000px;}
.y0_c00261{bottom:0.000000px;}
.y1_c00261{bottom:15.000000px;}
.h2_c00261{height:539.941406px;}
.h1_c00261{height:1502.250000px;}
.h0_c00261{height:1502.490000px;}
.w0_c00261{width:1113.690000px;}
.w1_c00261{width:1113.750000px;}
.x0_c00261{left:0.000000px;}
.x1_c00261{left:15.000000px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws0_c00261{word-spacing:0.000000pt;}
.fs0_c00261{font-size:533.333333pt;}
.y0_c00261{bottom:0.000000pt;}
.y1_c00261{bottom:13.333333pt;}
.h2_c00261{height:479.947917pt;}
.h1_c00261{height:1335.333333pt;}
.h0_c00261{height:1335.546667pt;}
.w0_c00261{width:989.946667pt;}
.w1_c00261{width:990.000000pt;}
.x0_c00261{left:0.000000pt;}
.x1_c00261{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_564bf55795da3723ec62af4a.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.109863;font-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.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);}
.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;}
.fs0_c00262{font-size:600.000000px;}
.y0_c00262{bottom:0.000000px;}
.y1_c00262{bottom:15.000000px;}
.h2_c00262{height:539.941406px;}
.h0_c00262{height:1509.405000px;}
.h1_c00262{height:1509.750000px;}
.w1_c00262{width:1104.000000px;}
.w0_c00262{width:1104.195000px;}
.x0_c00262{left:0.000000px;}
.x1_c00262{left:15.000000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls0_c00262{letter-spacing:0.000000pt;}
.ws0_c00262{word-spacing:0.000000pt;}
.fs0_c00262{font-size:533.333333pt;}
.y0_c00262{bottom:0.000000pt;}
.y1_c00262{bottom:13.333333pt;}
.h2_c00262{height:479.947917pt;}
.h0_c00262{height:1341.693333pt;}
.h1_c00262{height:1342.000000pt;}
.w1_c00262{width:981.333333pt;}
.w0_c00262{width:981.506667pt;}
.x0_c00262{left:0.000000pt;}
.x1_c00262{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63eef7898069767d8b8327d4.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.109863;font-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_c00263{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);}
.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;}
.fs0_c00263{font-size:600.000000px;}
.y0_c00263{bottom:0.000000px;}
.y1_c00263{bottom:15.000000px;}
.h2_c00263{height:539.941406px;}
.h1_c00263{height:1502.250000px;}
.h0_c00263{height:1502.490000px;}
.w0_c00263{width:1113.690000px;}
.w1_c00263{width:1113.750000px;}
.x0_c00263{left:0.000000px;}
.x1_c00263{left:15.000000px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws0_c00263{word-spacing:0.000000pt;}
.fs0_c00263{font-size:533.333333pt;}
.y0_c00263{bottom:0.000000pt;}
.y1_c00263{bottom:13.333333pt;}
.h2_c00263{height:479.947917pt;}
.h1_c00263{height:1335.333333pt;}
.h0_c00263{height:1335.546667pt;}
.w0_c00263{width:989.946667pt;}
.w1_c00263{width:990.000000pt;}
.x0_c00263{left:0.000000pt;}
.x1_c00263{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_124ad501359148df759ee856.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.109863;font-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_c00264{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);}
.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;}
.fc0_c00264{color:transparent;}
.fs0_c00264{font-size:600.000000px;}
.y0_c00264{bottom:0.000000px;}
.y1_c00264{bottom:15.000000px;}
.h1_c00264{height:539.941406px;}
.h0_c00264{height:1512.000000px;}
.w1_c00264{width:1104.000000px;}
.w0_c00264{width:1104.195000px;}
.x0_c00264{left:0.000000px;}
.x1_c00264{left:15.000000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls0_c00264{letter-spacing:0.000000pt;}
.ws0_c00264{word-spacing:0.000000pt;}
.fs0_c00264{font-size:533.333333pt;}
.y0_c00264{bottom:0.000000pt;}
.y1_c00264{bottom:13.333333pt;}
.h1_c00264{height:479.947917pt;}
.h0_c00264{height:1344.000000pt;}
.w1_c00264{width:981.333333pt;}
.w0_c00264{width:981.506667pt;}
.x0_c00264{left:0.000000pt;}
.x1_c00264{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c294040624a0dad514f4417f.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.109863;font-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_c00265{transform:matrix(0.073200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073200,0.000000,0.000000,0.250000,0,0);}
.m6_c00265{transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);}
.m1_c00265{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00265{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00265{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);}
.ma_c00265{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00265{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);}
.m2_c00265{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m8_c00265{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m0_c00265{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4_c00265{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,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;}
.fs2_c00265{font-size:3.456000px;}
.fs6_c00265{font-size:6.000000px;}
.fs1_c00265{font-size:6.900000px;}
.fs9_c00265{font-size:13.800000px;}
.fs3_c00265{font-size:17.280000px;}
.fs7_c00265{font-size:20.760000px;}
.fs5_c00265{font-size:31.080000px;}
.fs0_c00265{font-size:38.040000px;}
.fs4_c00265{font-size:62.220000px;}
.fs8_c00265{font-size:141.720000px;}
.y0_c00265{bottom:0.000000px;}
.yd_c00265{bottom:852.765000px;}
.ye_c00265{bottom:855.360000px;}
.yc_c00265{bottom:904.605000px;}
.yb_c00265{bottom:927.075000px;}
.ya_c00265{bottom:1104.195000px;}
.y9_c00265{bottom:1130.970000px;}
.y8_c00265{bottom:1132.710000px;}
.y7_c00265{bottom:1135.290000px;}
.y6_c00265{bottom:1136.160000px;}
.y5_c00265{bottom:1313.280000px;}
.y4_c00265{bottom:1329.690000px;}
.y3_c00265{bottom:1422.150000px;}
.y1_c00265{bottom:1425.600000px;}
.y2_c00265{bottom:1427.325000px;}
.h4_c00265{height:3.110063px;}
.h8_c00265{height:5.399414px;}
.h3_c00265{height:6.209326px;}
.hb_c00265{height:12.418652px;}
.h5_c00265{height:15.550313px;}
.h9_c00265{height:18.681973px;}
.h7_c00265{height:27.968965px;}
.h2_c00265{height:34.232285px;}
.h6_c00265{height:55.991924px;}
.ha_c00265{height:127.534160px;}
.h0_c00265{height:1499.910000px;}
.h1_c00265{height:1500.000000px;}
.w0_c00265{width:1102.470000px;}
.w1_c00265{width:1102.500000px;}
.x0_c00265{left:0.000000px;}
.x6_c00265{left:49.245000px;}
.x5_c00265{left:51.840000px;}
.x7_c00265{left:64.800000px;}
.x8_c00265{left:71.715000px;}
.xc_c00265{left:98.490000px;}
.xd_c00265{left:138.240000px;}
.xe_c00265{left:144.285000px;}
.x9_c00265{left:147.749592px;}
.xa_c00265{left:155.520000px;}
.xb_c00265{left:177.990000px;}
.xf_c00265{left:181.440000px;}
.x10_c00265{left:187.485000px;}
.x1_c00265{left:735.270000px;}
.x2_c00265{left:756.000000px;}
.x3_c00265{left:810.435000px;}
.x4_c00265{left:827.715000px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws0_c00265{word-spacing:0.000000pt;}
.fs2_c00265{font-size:3.072000pt;}
.fs6_c00265{font-size:5.333333pt;}
.fs1_c00265{font-size:6.133333pt;}
.fs9_c00265{font-size:12.266667pt;}
.fs3_c00265{font-size:15.360000pt;}
.fs7_c00265{font-size:18.453333pt;}
.fs5_c00265{font-size:27.626667pt;}
.fs0_c00265{font-size:33.813333pt;}
.fs4_c00265{font-size:55.306667pt;}
.fs8_c00265{font-size:125.973333pt;}
.y0_c00265{bottom:0.000000pt;}
.yd_c00265{bottom:758.013333pt;}
.ye_c00265{bottom:760.320000pt;}
.yc_c00265{bottom:804.093333pt;}
.yb_c00265{bottom:824.066667pt;}
.ya_c00265{bottom:981.506667pt;}
.y9_c00265{bottom:1005.306667pt;}
.y8_c00265{bottom:1006.853333pt;}
.y7_c00265{bottom:1009.146667pt;}
.y6_c00265{bottom:1009.920000pt;}
.y5_c00265{bottom:1167.360000pt;}
.y4_c00265{bottom:1181.946667pt;}
.y3_c00265{bottom:1264.133333pt;}
.y1_c00265{bottom:1267.200000pt;}
.y2_c00265{bottom:1268.733333pt;}
.h4_c00265{height:2.764500pt;}
.h8_c00265{height:4.799479pt;}
.h3_c00265{height:5.519401pt;}
.hb_c00265{height:11.038802pt;}
.h5_c00265{height:13.822500pt;}
.h9_c00265{height:16.606198pt;}
.h7_c00265{height:24.861302pt;}
.h2_c00265{height:30.428698pt;}
.h6_c00265{height:49.770599pt;}
.ha_c00265{height:113.363698pt;}
.h0_c00265{height:1333.253333pt;}
.h1_c00265{height:1333.333333pt;}
.w0_c00265{width:979.973333pt;}
.w1_c00265{width:980.000000pt;}
.x0_c00265{left:0.000000pt;}
.x6_c00265{left:43.773333pt;}
.x5_c00265{left:46.080000pt;}
.x7_c00265{left:57.600000pt;}
.x8_c00265{left:63.746667pt;}
.xc_c00265{left:87.546667pt;}
.xd_c00265{left:122.880000pt;}
.xe_c00265{left:128.253333pt;}
.x9_c00265{left:131.332971pt;}
.xa_c00265{left:138.240000pt;}
.xb_c00265{left:158.213333pt;}
.xf_c00265{left:161.280000pt;}
.x10_c00265{left:166.653333pt;}
.x1_c00265{left:653.573333pt;}
.x2_c00265{left:672.000000pt;}
.x3_c00265{left:720.386667pt;}
.x4_c00265{left:735.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_992c8c447859a45f816e56f9.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.109863;font-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_c00266{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00266{transform:matrix(0.047750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047750,0.000000,0.000000,0.250000,0,0);}
.m27_c00266{transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);}
.me_c00266{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m17_c00266{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.m1c_c00266{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_c00266{transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);}
.m1e_c00266{transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);}
.m11_c00266{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m20_c00266{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m26_c00266{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);}
.m21_c00266{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m2d_c00266{transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);}
.m18_c00266{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);}
.m23_c00266{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m1d_c00266{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);}
.m0_c00266{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);}
.m2c_c00266{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.mc_c00266{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m22_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);}
.m9_c00266{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);}
.m1f_c00266{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_c00266{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);}
.m12_c00266{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00266{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m28_c00266{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);}
.mb_c00266{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);}
.ma_c00266{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c00266{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00266{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00266{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);}
.m1_c00266{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);}
.m7_c00266{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);}
.mf_c00266{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m3_c00266{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);}
.m4_c00266{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m14_c00266{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m8_c00266{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m19_c00266{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);}
.m16_c00266{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m29_c00266{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);}
.m2a_c00266{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00266{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m15_c00266{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m24_c00266{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.m13_c00266{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.md_c00266{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.v1_c00266{vertical-align:-10.380000px;}
.v0_c00266{vertical-align:0.000000px;}
.ls2_c00266{letter-spacing:0.000000px;}
.ls0_c00266{letter-spacing:57.226740px;}
.ls1_c00266{letter-spacing:71.024688px;}
.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;}
.fc0_c00266{color:transparent;}
.fs7_c00266{font-size:3.456000px;}
.fs1a_c00266{font-size:6.000000px;}
.fs6_c00266{font-size:10.380000px;}
.fs12_c00266{font-size:13.800000px;}
.fs3_c00266{font-size:17.280000px;}
.fs19_c00266{font-size:20.760000px;}
.fsf_c00266{font-size:24.180000px;}
.fs9_c00266{font-size:27.660000px;}
.fs10_c00266{font-size:31.080000px;}
.fs8_c00266{font-size:34.560000px;}
.fs11_c00266{font-size:38.040000px;}
.fs18_c00266{font-size:44.940000px;}
.fs13_c00266{font-size:51.840000px;}
.fs2_c00266{font-size:55.320000px;}
.fs0_c00266{font-size:58.740000px;}
.fs1_c00266{font-size:62.220000px;}
.fs5_c00266{font-size:65.640000px;}
.fs14_c00266{font-size:76.020000px;}
.fs15_c00266{font-size:79.500000px;}
.fs4_c00266{font-size:86.400000px;}
.fsc_c00266{font-size:89.880000px;}
.fs17_c00266{font-size:96.780000px;}
.fsb_c00266{font-size:103.680000px;}
.fs16_c00266{font-size:110.580000px;}
.fse_c00266{font-size:114.060000px;}
.fsa_c00266{font-size:124.440000px;}
.fsd_c00266{font-size:127.860000px;}
.y0_c00266{bottom:0.000000px;}
.y2b_c00266{bottom:1143.930000px;}
.y2d_c00266{bottom:1147.395000px;}
.y2a_c00266{bottom:1150.845000px;}
.y29_c00266{bottom:1151.715000px;}
.y2c_c00266{bottom:1161.210000px;}
.y26_c00266{bottom:1191.450000px;}
.y25_c00266{bottom:1194.045000px;}
.y27_c00266{bottom:1197.510000px;}
.y28_c00266{bottom:1202.685000px;}
.y24_c00266{bottom:1208.730000px;}
.y23_c00266{bottom:1219.965000px;}
.y1d_c00266{bottom:1226.010000px;}
.y1e_c00266{bottom:1227.750000px;}
.y1a_c00266{bottom:1228.605000px;}
.y21_c00266{bottom:1230.330000px;}
.y22_c00266{bottom:1232.070000px;}
.y1c_c00266{bottom:1232.925000px;}
.y20_c00266{bottom:1233.795000px;}
.y1f_c00266{bottom:1236.390000px;}
.y1b_c00266{bottom:1237.245000px;}
.y19_c00266{bottom:1246.755000px;}
.y18_c00266{bottom:1249.350000px;}
.y17_c00266{bottom:1251.075000px;}
.y12_c00266{bottom:1251.930000px;}
.y16_c00266{bottom:1252.800000px;}
.y11_c00266{bottom:1253.670000px;}
.y13_c00266{bottom:1254.525000px;}
.y15_c00266{bottom:1256.250000px;}
.y14_c00266{bottom:1257.990000px;}
.yd_c00266{bottom:1261.440000px;}
.y10_c00266{bottom:1262.310000px;}
.yf_c00266{bottom:1263.165000px;}
.ye_c00266{bottom:1265.760000px;}
.yb_c00266{bottom:1296.000000px;}
.yc_c00266{bottom:1296.870000px;}
.ya_c00266{bottom:1386.720000px;}
.y6_c00266{bottom:1397.085000px;}
.y1_c00266{bottom:1401.405000px;}
.y2_c00266{bottom:1402.275000px;}
.y3_c00266{bottom:1403.130000px;}
.y4_c00266{bottom:1404.000000px;}
.y7_c00266{bottom:1404.870000px;}
.y9_c00266{bottom:1413.510000px;}
.y5_c00266{bottom:1415.235000px;}
.y8_c00266{bottom:1418.685000px;}
.hb_c00266{height:3.110063px;}
.h1c_c00266{height:5.399414px;}
.h1b_c00266{height:8.301973px;}
.h8_c00266{height:9.340986px;}
.h14_c00266{height:12.418652px;}
.h5_c00266{height:15.550313px;}
.h1d_c00266{height:18.681973px;}
.h11_c00266{height:21.759639px;}
.ha_c00266{height:24.891299px;}
.h12_c00266{height:27.968965px;}
.h9_c00266{height:31.100625px;}
.h13_c00266{height:34.232285px;}
.h1a_c00266{height:40.441611px;}
.h15_c00266{height:46.650937px;}
.h4_c00266{height:49.782598px;}
.h2_c00266{height:52.860264px;}
.h3_c00266{height:55.991924px;}
.h7_c00266{height:59.069590px;}
.h16_c00266{height:68.410576px;}
.h17_c00266{height:71.542236px;}
.h6_c00266{height:77.751563px;}
.he_c00266{height:80.883223px;}
.h19_c00266{height:87.092549px;}
.hd_c00266{height:93.301875px;}
.h18_c00266{height:99.511201px;}
.h10_c00266{height:102.642861px;}
.hc_c00266{height:111.983848px;}
.hf_c00266{height:115.061514px;}
.h0_c00266{height:1515.450000px;}
.h1_c00266{height:1515.750000px;}
.w1_c00266{width:1104.000000px;}
.w0_c00266{width:1104.195000px;}
.x0_c00266{left:0.000000px;}
.x17_c00266{left:216.000000px;}
.x18_c00266{left:228.960000px;}
.x12_c00266{left:241.920000px;}
.x20_c00266{left:251.430000px;}
.x21_c00266{left:270.435000px;}
.x22_c00266{left:291.165000px;}
.x23_c00266{left:315.360000px;}
.x19_c00266{left:332.640000px;}
.x2d_c00266{left:335.235000px;}
.x2e_c00266{left:344.730000px;}
.x13_c00266{left:362.010000px;}
.x1a_c00266{left:387.930000px;}
.x2f_c00266{left:412.995000px;}
.x24_c00266{left:423.360000px;}
.x1_c00266{left:425.955000px;}
.x30_c00266{left:444.090000px;}
.x2_c00266{left:445.830000px;}
.x3_c00266{left:470.010000px;}
.x4_c00266{left:494.205000px;}
.x5_c00266{left:517.530000px;}
.x14_c00266{left:538.275000px;}
.x6_c00266{left:540.000000px;}
.x1b_c00266{left:544.320000px;}
.x7_c00266{left:552.960000px;}
.x8_c00266{left:573.690000px;}
.x25_c00266{left:597.885000px;}
.x9_c00266{left:600.480000px;}
.x15_c00266{left:604.800000px;}
.x26_c00266{left:617.760000px;}
.xa_c00266{left:624.675000px;}
.x11_c00266{left:630.720000px;}
.x33_c00266{left:636.765000px;}
.x1c_c00266{left:641.955000px;}
.xb_c00266{left:647.130000px;}
.x34_c00266{left:657.510000px;}
.x37_c00266{left:669.600000px;}
.x27_c00266{left:671.325000px;}
.x31_c00266{left:683.430000px;}
.xc_c00266{left:692.925000px;}
.x35_c00266{left:695.520000px;}
.x1d_c00266{left:706.755000px;}
.xd_c00266{left:708.480000px;}
.x1e_c00266{left:714.525000px;}
.x36_c00266{left:716.250000px;}
.x2c_c00266{left:726.630000px;}
.x28_c00266{left:732.675000px;}
.x1f_c00266{left:734.400000px;}
.x32_c00266{left:743.040000px;}
.x16_c00266{left:747.360000px;}
.x39_c00266{left:763.770000px;}
.x10_c00266{left:769.830000px;}
.x29_c00266{left:772.410000px;}
.x38_c00266{left:778.470000px;}
.x3a_c00266{left:781.050000px;}
.x2a_c00266{left:846.720000px;}
.x2b_c00266{left:870.915000px;}
.xe_c00266{left:902.880000px;}
.xf_c00266{left:934.845000px;}
@media print{
.v1_c00266{vertical-align:-9.226667pt;}
.v0_c00266{vertical-align:0.000000pt;}
.ls2_c00266{letter-spacing:0.000000pt;}
.ls0_c00266{letter-spacing:50.868213pt;}
.ls1_c00266{letter-spacing:63.133056pt;}
.ws0_c00266{word-spacing:0.000000pt;}
.fs7_c00266{font-size:3.072000pt;}
.fs1a_c00266{font-size:5.333333pt;}
.fs6_c00266{font-size:9.226667pt;}
.fs12_c00266{font-size:12.266667pt;}
.fs3_c00266{font-size:15.360000pt;}
.fs19_c00266{font-size:18.453333pt;}
.fsf_c00266{font-size:21.493333pt;}
.fs9_c00266{font-size:24.586667pt;}
.fs10_c00266{font-size:27.626667pt;}
.fs8_c00266{font-size:30.720000pt;}
.fs11_c00266{font-size:33.813333pt;}
.fs18_c00266{font-size:39.946667pt;}
.fs13_c00266{font-size:46.080000pt;}
.fs2_c00266{font-size:49.173333pt;}
.fs0_c00266{font-size:52.213333pt;}
.fs1_c00266{font-size:55.306667pt;}
.fs5_c00266{font-size:58.346667pt;}
.fs14_c00266{font-size:67.573333pt;}
.fs15_c00266{font-size:70.666667pt;}
.fs4_c00266{font-size:76.800000pt;}
.fsc_c00266{font-size:79.893333pt;}
.fs17_c00266{font-size:86.026667pt;}
.fsb_c00266{font-size:92.160000pt;}
.fs16_c00266{font-size:98.293333pt;}
.fse_c00266{font-size:101.386667pt;}
.fsa_c00266{font-size:110.613333pt;}
.fsd_c00266{font-size:113.653333pt;}
.y0_c00266{bottom:0.000000pt;}
.y2b_c00266{bottom:1016.826667pt;}
.y2d_c00266{bottom:1019.906667pt;}
.y2a_c00266{bottom:1022.973333pt;}
.y29_c00266{bottom:1023.746667pt;}
.y2c_c00266{bottom:1032.186667pt;}
.y26_c00266{bottom:1059.066667pt;}
.y25_c00266{bottom:1061.373333pt;}
.y27_c00266{bottom:1064.453333pt;}
.y28_c00266{bottom:1069.053333pt;}
.y24_c00266{bottom:1074.426667pt;}
.y23_c00266{bottom:1084.413333pt;}
.y1d_c00266{bottom:1089.786667pt;}
.y1e_c00266{bottom:1091.333333pt;}
.y1a_c00266{bottom:1092.093333pt;}
.y21_c00266{bottom:1093.626667pt;}
.y22_c00266{bottom:1095.173333pt;}
.y1c_c00266{bottom:1095.933333pt;}
.y20_c00266{bottom:1096.706667pt;}
.y1f_c00266{bottom:1099.013333pt;}
.y1b_c00266{bottom:1099.773333pt;}
.y19_c00266{bottom:1108.226667pt;}
.y18_c00266{bottom:1110.533333pt;}
.y17_c00266{bottom:1112.066667pt;}
.y12_c00266{bottom:1112.826667pt;}
.y16_c00266{bottom:1113.600000pt;}
.y11_c00266{bottom:1114.373333pt;}
.y13_c00266{bottom:1115.133333pt;}
.y15_c00266{bottom:1116.666667pt;}
.y14_c00266{bottom:1118.213333pt;}
.yd_c00266{bottom:1121.280000pt;}
.y10_c00266{bottom:1122.053333pt;}
.yf_c00266{bottom:1122.813333pt;}
.ye_c00266{bottom:1125.120000pt;}
.yb_c00266{bottom:1152.000000pt;}
.yc_c00266{bottom:1152.773333pt;}
.ya_c00266{bottom:1232.640000pt;}
.y6_c00266{bottom:1241.853333pt;}
.y1_c00266{bottom:1245.693333pt;}
.y2_c00266{bottom:1246.466667pt;}
.y3_c00266{bottom:1247.226667pt;}
.y4_c00266{bottom:1248.000000pt;}
.y7_c00266{bottom:1248.773333pt;}
.y9_c00266{bottom:1256.453333pt;}
.y5_c00266{bottom:1257.986667pt;}
.y8_c00266{bottom:1261.053333pt;}
.hb_c00266{height:2.764500pt;}
.h1c_c00266{height:4.799479pt;}
.h1b_c00266{height:7.379531pt;}
.h8_c00266{height:8.303099pt;}
.h14_c00266{height:11.038802pt;}
.h5_c00266{height:13.822500pt;}
.h1d_c00266{height:16.606198pt;}
.h11_c00266{height:19.341901pt;}
.ha_c00266{height:22.125599pt;}
.h12_c00266{height:24.861302pt;}
.h9_c00266{height:27.645000pt;}
.h13_c00266{height:30.428698pt;}
.h1a_c00266{height:35.948099pt;}
.h15_c00266{height:41.467500pt;}
.h4_c00266{height:44.251198pt;}
.h2_c00266{height:46.986901pt;}
.h3_c00266{height:49.770599pt;}
.h7_c00266{height:52.506302pt;}
.h16_c00266{height:60.809401pt;}
.h17_c00266{height:63.593099pt;}
.h6_c00266{height:69.112500pt;}
.he_c00266{height:71.896198pt;}
.h19_c00266{height:77.415599pt;}
.hd_c00266{height:82.935000pt;}
.h18_c00266{height:88.454401pt;}
.h10_c00266{height:91.238099pt;}
.hc_c00266{height:99.541198pt;}
.hf_c00266{height:102.276901pt;}
.h0_c00266{height:1347.066667pt;}
.h1_c00266{height:1347.333333pt;}
.w1_c00266{width:981.333333pt;}
.w0_c00266{width:981.506667pt;}
.x0_c00266{left:0.000000pt;}
.x17_c00266{left:192.000000pt;}
.x18_c00266{left:203.520000pt;}
.x12_c00266{left:215.040000pt;}
.x20_c00266{left:223.493333pt;}
.x21_c00266{left:240.386667pt;}
.x22_c00266{left:258.813333pt;}
.x23_c00266{left:280.320000pt;}
.x19_c00266{left:295.680000pt;}
.x2d_c00266{left:297.986667pt;}
.x2e_c00266{left:306.426667pt;}
.x13_c00266{left:321.786667pt;}
.x1a_c00266{left:344.826667pt;}
.x2f_c00266{left:367.106667pt;}
.x24_c00266{left:376.320000pt;}
.x1_c00266{left:378.626667pt;}
.x30_c00266{left:394.746667pt;}
.x2_c00266{left:396.293333pt;}
.x3_c00266{left:417.786667pt;}
.x4_c00266{left:439.293333pt;}
.x5_c00266{left:460.026667pt;}
.x14_c00266{left:478.466667pt;}
.x6_c00266{left:480.000000pt;}
.x1b_c00266{left:483.840000pt;}
.x7_c00266{left:491.520000pt;}
.x8_c00266{left:509.946667pt;}
.x25_c00266{left:531.453333pt;}
.x9_c00266{left:533.760000pt;}
.x15_c00266{left:537.600000pt;}
.x26_c00266{left:549.120000pt;}
.xa_c00266{left:555.266667pt;}
.x11_c00266{left:560.640000pt;}
.x33_c00266{left:566.013333pt;}
.x1c_c00266{left:570.626667pt;}
.xb_c00266{left:575.226667pt;}
.x34_c00266{left:584.453333pt;}
.x37_c00266{left:595.200000pt;}
.x27_c00266{left:596.733333pt;}
.x31_c00266{left:607.493333pt;}
.xc_c00266{left:615.933333pt;}
.x35_c00266{left:618.240000pt;}
.x1d_c00266{left:628.226667pt;}
.xd_c00266{left:629.760000pt;}
.x1e_c00266{left:635.133333pt;}
.x36_c00266{left:636.666667pt;}
.x2c_c00266{left:645.893333pt;}
.x28_c00266{left:651.266667pt;}
.x1f_c00266{left:652.800000pt;}
.x32_c00266{left:660.480000pt;}
.x16_c00266{left:664.320000pt;}
.x39_c00266{left:678.906667pt;}
.x10_c00266{left:684.293333pt;}
.x29_c00266{left:686.586667pt;}
.x38_c00266{left:691.973333pt;}
.x3a_c00266{left:694.266667pt;}
.x2a_c00266{left:752.640000pt;}
.x2b_c00266{left:774.146667pt;}
.xe_c00266{left:802.560000pt;}
.xf_c00266{left:830.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_32d576db95080d195c177fe9.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.109863;font-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_c00267{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);}
.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;}
.fc0_c00267{color:transparent;}
.fs0_c00267{font-size:600.000000px;}
.y0_c00267{bottom:0.000000px;}
.y1_c00267{bottom:15.000000px;}
.h2_c00267{height:539.941406px;}
.h0_c00267{height:1509.405000px;}
.h1_c00267{height:1509.750000px;}
.w0_c00267{width:1102.470000px;}
.w1_c00267{width:1102.500000px;}
.x0_c00267{left:0.000000px;}
.x1_c00267{left:15.000000px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws0_c00267{word-spacing:0.000000pt;}
.fs0_c00267{font-size:533.333333pt;}
.y0_c00267{bottom:0.000000pt;}
.y1_c00267{bottom:13.333333pt;}
.h2_c00267{height:479.947917pt;}
.h0_c00267{height:1341.693333pt;}
.h1_c00267{height:1342.000000pt;}
.w0_c00267{width:979.973333pt;}
.w1_c00267{width:980.000000pt;}
.x0_c00267{left:0.000000pt;}
.x1_c00267{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e15583bc98f14849ca6ce96b.woff2')format("woff");}.ff1_c00268{font-family:ff1_c00268;line-height:1.109863;font-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_c00268{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);}
.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;}
.fs0_c00268{font-size:600.000000px;}
.y0_c00268{bottom:0.000000px;}
.y1_c00268{bottom:15.000000px;}
.h2_c00268{height:539.941406px;}
.h0_c00268{height:1515.450000px;}
.h1_c00268{height:1515.750000px;}
.w1_c00268{width:1104.000000px;}
.w0_c00268{width:1104.195000px;}
.x0_c00268{left:0.000000px;}
.x1_c00268{left:15.000000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls0_c00268{letter-spacing:0.000000pt;}
.ws0_c00268{word-spacing:0.000000pt;}
.fs0_c00268{font-size:533.333333pt;}
.y0_c00268{bottom:0.000000pt;}
.y1_c00268{bottom:13.333333pt;}
.h2_c00268{height:479.947917pt;}
.h0_c00268{height:1347.066667pt;}
.h1_c00268{height:1347.333333pt;}
.w1_c00268{width:981.333333pt;}
.w0_c00268{width:981.506667pt;}
.x0_c00268{left:0.000000pt;}
.x1_c00268{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d189e7ac05f7ff95b201801.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.109863;font-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_c00269{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c00269{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);}
.m7_c00269{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);}
.m3_c00269{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c00269{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c00269{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1_c00269{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma_c00269{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c00269{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m9_c00269{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.md_c00269{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m8_c00269{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m0_c00269{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.mb_c00269{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,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;}
.fs7_c00269{font-size:3.456000px;}
.fs1_c00269{font-size:13.800000px;}
.fs6_c00269{font-size:17.280000px;}
.fs0_c00269{font-size:20.760000px;}
.fs2_c00269{font-size:27.660000px;}
.fs4_c00269{font-size:58.740000px;}
.fs3_c00269{font-size:62.220000px;}
.fs5_c00269{font-size:79.500000px;}
.y0_c00269{bottom:0.000000px;}
.yd_c00269{bottom:1229.475000px;}
.yc_c00269{bottom:1232.070000px;}
.y4_c00269{bottom:1394.490000px;}
.y5_c00269{bottom:1397.085000px;}
.y6_c00269{bottom:1399.680000px;}
.y7_c00269{bottom:1400.550000px;}
.y8_c00269{bottom:1403.130000px;}
.y9_c00269{bottom:1404.000000px;}
.ya_c00269{bottom:1404.870000px;}
.yb_c00269{bottom:1412.640000px;}
.y3_c00269{bottom:1416.960000px;}
.y1_c00269{bottom:1435.110000px;}
.y2_c00269{bottom:1437.690000px;}
.h9_c00269{height:3.110063px;}
.h3_c00269{height:12.418652px;}
.h8_c00269{height:15.550313px;}
.h2_c00269{height:18.681973px;}
.h4_c00269{height:24.891299px;}
.h6_c00269{height:52.860264px;}
.h5_c00269{height:55.991924px;}
.h7_c00269{height:71.542236px;}
.h0_c00269{height:1509.405000px;}
.h1_c00269{height:1509.750000px;}
.w0_c00269{width:1102.470000px;}
.w1_c00269{width:1102.500000px;}
.x0_c00269{left:0.000000px;}
.x4_c00269{left:127.875000px;}
.x5_c00269{left:146.880000px;}
.xd_c00269{left:181.440000px;}
.xe_c00269{left:190.080000px;}
.x3_c00269{left:244.515000px;}
.x6_c00269{left:443.235000px;}
.x7_c00269{left:471.750000px;}
.x8_c00269{left:497.670000px;}
.x1_c00269{left:506.310000px;}
.x2_c00269{left:519.270000px;}
.x9_c00269{left:528.765000px;}
.xa_c00269{left:591.840000px;}
.xb_c00269{left:625.530000px;}
.xc_c00269{left:805.245000px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls0_c00269{letter-spacing:0.000000pt;}
.ws0_c00269{word-spacing:0.000000pt;}
.fs7_c00269{font-size:3.072000pt;}
.fs1_c00269{font-size:12.266667pt;}
.fs6_c00269{font-size:15.360000pt;}
.fs0_c00269{font-size:18.453333pt;}
.fs2_c00269{font-size:24.586667pt;}
.fs4_c00269{font-size:52.213333pt;}
.fs3_c00269{font-size:55.306667pt;}
.fs5_c00269{font-size:70.666667pt;}
.y0_c00269{bottom:0.000000pt;}
.yd_c00269{bottom:1092.866667pt;}
.yc_c00269{bottom:1095.173333pt;}
.y4_c00269{bottom:1239.546667pt;}
.y5_c00269{bottom:1241.853333pt;}
.y6_c00269{bottom:1244.160000pt;}
.y7_c00269{bottom:1244.933333pt;}
.y8_c00269{bottom:1247.226667pt;}
.y9_c00269{bottom:1248.000000pt;}
.ya_c00269{bottom:1248.773333pt;}
.yb_c00269{bottom:1255.680000pt;}
.y3_c00269{bottom:1259.520000pt;}
.y1_c00269{bottom:1275.653333pt;}
.y2_c00269{bottom:1277.946667pt;}
.h9_c00269{height:2.764500pt;}
.h3_c00269{height:11.038802pt;}
.h8_c00269{height:13.822500pt;}
.h2_c00269{height:16.606198pt;}
.h4_c00269{height:22.125599pt;}
.h6_c00269{height:46.986901pt;}
.h5_c00269{height:49.770599pt;}
.h7_c00269{height:63.593099pt;}
.h0_c00269{height:1341.693333pt;}
.h1_c00269{height:1342.000000pt;}
.w0_c00269{width:979.973333pt;}
.w1_c00269{width:980.000000pt;}
.x0_c00269{left:0.000000pt;}
.x4_c00269{left:113.666667pt;}
.x5_c00269{left:130.560000pt;}
.xd_c00269{left:161.280000pt;}
.xe_c00269{left:168.960000pt;}
.x3_c00269{left:217.346667pt;}
.x6_c00269{left:393.986667pt;}
.x7_c00269{left:419.333333pt;}
.x8_c00269{left:442.373333pt;}
.x1_c00269{left:450.053333pt;}
.x2_c00269{left:461.573333pt;}
.x9_c00269{left:470.013333pt;}
.xa_c00269{left:526.080000pt;}
.xb_c00269{left:556.026667pt;}
.xc_c00269{left:715.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fac7849b0dc4397b057dcc2d.woff2')format("woff");}.ff1_c00270{font-family:ff1_c00270;line-height:1.109863;font-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_c00270{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);}
.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;}
.fs0_c00270{font-size:600.000000px;}
.y0_c00270{bottom:0.000000px;}
.y1_c00270{bottom:15.000000px;}
.h2_c00270{height:539.941406px;}
.h0_c00270{height:1515.450000px;}
.h1_c00270{height:1515.750000px;}
.w1_c00270{width:1104.000000px;}
.w0_c00270{width:1104.195000px;}
.x0_c00270{left:0.000000px;}
.x1_c00270{left:15.000000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws0_c00270{word-spacing:0.000000pt;}
.fs0_c00270{font-size:533.333333pt;}
.y0_c00270{bottom:0.000000pt;}
.y1_c00270{bottom:13.333333pt;}
.h2_c00270{height:479.947917pt;}
.h0_c00270{height:1347.066667pt;}
.h1_c00270{height:1347.333333pt;}
.w1_c00270{width:981.333333pt;}
.w0_c00270{width:981.506667pt;}
.x0_c00270{left:0.000000pt;}
.x1_c00270{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b8c168a0502329b10aaafb92.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.109863;font-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_c00271{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);}
.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;}
.fs0_c00271{font-size:600.000000px;}
.y0_c00271{bottom:0.000000px;}
.y1_c00271{bottom:15.000000px;}
.h2_c00271{height:539.941406px;}
.h0_c00271{height:1509.405000px;}
.h1_c00271{height:1509.750000px;}
.w0_c00271{width:1102.470000px;}
.w1_c00271{width:1102.500000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:15.000000px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws0_c00271{word-spacing:0.000000pt;}
.fs0_c00271{font-size:533.333333pt;}
.y0_c00271{bottom:0.000000pt;}
.y1_c00271{bottom:13.333333pt;}
.h2_c00271{height:479.947917pt;}
.h0_c00271{height:1341.693333pt;}
.h1_c00271{height:1342.000000pt;}
.w0_c00271{width:979.973333pt;}
.w1_c00271{width:980.000000pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_43a03a9cd49c227fb6834ae7.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.109863;font-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_c00272{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c00272{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);}
.m2_c00272{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,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;}
.fs1_c00272{font-size:17.280000px;}
.fs0_c00272{font-size:20.760000px;}
.fs2_c00272{font-size:72.600000px;}
.y0_c00272{bottom:0.000000px;}
.y2_c00272{bottom:1380.675000px;}
.y1_c00272{bottom:1401.405000px;}
.h3_c00272{height:15.550313px;}
.h2_c00272{height:18.681973px;}
.h4_c00272{height:65.332910px;}
.h0_c00272{height:1515.450000px;}
.h1_c00272{height:1515.750000px;}
.w1_c00272{width:1104.000000px;}
.w0_c00272{width:1104.195000px;}
.x0_c00272{left:0.000000px;}
.x3_c00272{left:419.040000px;}
.x1_c00272{left:423.360000px;}
.x2_c00272{left:536.550000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls0_c00272{letter-spacing:0.000000pt;}
.ws0_c00272{word-spacing:0.000000pt;}
.fs1_c00272{font-size:15.360000pt;}
.fs0_c00272{font-size:18.453333pt;}
.fs2_c00272{font-size:64.533333pt;}
.y0_c00272{bottom:0.000000pt;}
.y2_c00272{bottom:1227.266667pt;}
.y1_c00272{bottom:1245.693333pt;}
.h3_c00272{height:13.822500pt;}
.h2_c00272{height:16.606198pt;}
.h4_c00272{height:58.073698pt;}
.h0_c00272{height:1347.066667pt;}
.h1_c00272{height:1347.333333pt;}
.w1_c00272{width:981.333333pt;}
.w0_c00272{width:981.506667pt;}
.x0_c00272{left:0.000000pt;}
.x3_c00272{left:372.480000pt;}
.x1_c00272{left:376.320000pt;}
.x2_c00272{left:476.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe9bfb35c48efc09953a31c8.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.109863;font-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_c00273{transform:matrix(0.044025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044025,0.000000,0.000000,0.250000,0,0);}
.m1_c00273{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m0_c00273{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);}
.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;}
.fs0_c00273{font-size:17.280000px;}
.fs1_c00273{font-size:86.400000px;}
.fs2_c00273{font-size:141.720000px;}
.y0_c00273{bottom:0.000000px;}
.y3_c00273{bottom:586.650000px;}
.y2_c00273{bottom:623.805000px;}
.y1_c00273{bottom:649.725000px;}
.h2_c00273{height:15.550313px;}
.h3_c00273{height:77.751563px;}
.h4_c00273{height:127.534160px;}
.h0_c00273{height:1509.405000px;}
.h1_c00273{height:1509.750000px;}
.w0_c00273{width:1102.470000px;}
.w1_c00273{width:1102.500000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:43.200000px;}
.x2_c00273{left:102.810000px;}
.x3_c00273{left:108.870000px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws0_c00273{word-spacing:0.000000pt;}
.fs0_c00273{font-size:15.360000pt;}
.fs1_c00273{font-size:76.800000pt;}
.fs2_c00273{font-size:125.973333pt;}
.y0_c00273{bottom:0.000000pt;}
.y3_c00273{bottom:521.466667pt;}
.y2_c00273{bottom:554.493333pt;}
.y1_c00273{bottom:577.533333pt;}
.h2_c00273{height:13.822500pt;}
.h3_c00273{height:69.112500pt;}
.h4_c00273{height:113.363698pt;}
.h0_c00273{height:1341.693333pt;}
.h1_c00273{height:1342.000000pt;}
.w0_c00273{width:979.973333pt;}
.w1_c00273{width:980.000000pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:38.400000pt;}
.x2_c00273{left:91.386667pt;}
.x3_c00273{left:96.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49e7d299245c874e9ccd60b8.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.109863;font-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_c00274{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m0_c00274{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,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;}
.fc0_c00274{color:transparent;}
.fs0_c00274{font-size:24.180000px;}
.fs1_c00274{font-size:51.840000px;}
.y0_c00274{bottom:0.000000px;}
.y1_c00274{bottom:800.925000px;}
.y2_c00274{bottom:932.250000px;}
.h2_c00274{height:21.759639px;}
.h3_c00274{height:46.650937px;}
.h0_c00274{height:1515.450000px;}
.h1_c00274{height:1515.750000px;}
.w1_c00274{width:1104.000000px;}
.w0_c00274{width:1104.195000px;}
.x0_c00274{left:0.000000px;}
.x1_c00274{left:933.120000px;}
.x2_c00274{left:1019.520000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls0_c00274{letter-spacing:0.000000pt;}
.ws0_c00274{word-spacing:0.000000pt;}
.fs0_c00274{font-size:21.493333pt;}
.fs1_c00274{font-size:46.080000pt;}
.y0_c00274{bottom:0.000000pt;}
.y1_c00274{bottom:711.933333pt;}
.y2_c00274{bottom:828.666667pt;}
.h2_c00274{height:19.341901pt;}
.h3_c00274{height:41.467500pt;}
.h0_c00274{height:1347.066667pt;}
.h1_c00274{height:1347.333333pt;}
.w1_c00274{width:981.333333pt;}
.w0_c00274{width:981.506667pt;}
.x0_c00274{left:0.000000pt;}
.x1_c00274{left:829.440000pt;}
.x2_c00274{left:906.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_cb682bc1e3079f19b8243c4d.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.109863;font-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.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);}
.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:600.000000px;}
.y0_c00275{bottom:0.000000px;}
.y1_c00275{bottom:15.000000px;}
.h2_c00275{height:539.941406px;}
.h0_c00275{height:1509.405000px;}
.h1_c00275{height:1509.750000px;}
.w0_c00275{width:1102.470000px;}
.w1_c00275{width:1102.500000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:15.000000px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ws0_c00275{word-spacing:0.000000pt;}
.fs0_c00275{font-size:533.333333pt;}
.y0_c00275{bottom:0.000000pt;}
.y1_c00275{bottom:13.333333pt;}
.h2_c00275{height:479.947917pt;}
.h0_c00275{height:1341.693333pt;}
.h1_c00275{height:1342.000000pt;}
.w0_c00275{width:979.973333pt;}
.w1_c00275{width:980.000000pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cacb76c337cfcf3cbd460eb2.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.109863;font-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_c00276{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c00276{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00276{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);}
.m1_c00276{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m0_c00276{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,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;}
.fs3_c00276{font-size:10.380000px;}
.fs4_c00276{font-size:20.760000px;}
.fs2_c00276{font-size:51.840000px;}
.fs0_c00276{font-size:62.220000px;}
.fs1_c00276{font-size:65.640000px;}
.y0_c00276{bottom:0.000000px;}
.y5_c00276{bottom:519.270000px;}
.y4_c00276{bottom:520.125000px;}
.y3_c00276{bottom:1203.555000px;}
.y2_c00276{bottom:1394.490000px;}
.y1_c00276{bottom:1395.360000px;}
.h5_c00276{height:9.340986px;}
.h6_c00276{height:18.681973px;}
.h4_c00276{height:46.650937px;}
.h2_c00276{height:55.991924px;}
.h3_c00276{height:59.069590px;}
.h0_c00276{height:1515.450000px;}
.h1_c00276{height:1515.750000px;}
.w1_c00276{width:1104.000000px;}
.w0_c00276{width:1104.195000px;}
.x0_c00276{left:0.000000px;}
.x1_c00276{left:409.530000px;}
.x2_c00276{left:565.920000px;}
.x3_c00276{left:1032.480000px;}
.x4_c00276{left:1036.800000px;}
.x5_c00276{left:1050.630000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls0_c00276{letter-spacing:0.000000pt;}
.ws0_c00276{word-spacing:0.000000pt;}
.fs3_c00276{font-size:9.226667pt;}
.fs4_c00276{font-size:18.453333pt;}
.fs2_c00276{font-size:46.080000pt;}
.fs0_c00276{font-size:55.306667pt;}
.fs1_c00276{font-size:58.346667pt;}
.y0_c00276{bottom:0.000000pt;}
.y5_c00276{bottom:461.573333pt;}
.y4_c00276{bottom:462.333333pt;}
.y3_c00276{bottom:1069.826667pt;}
.y2_c00276{bottom:1239.546667pt;}
.y1_c00276{bottom:1240.320000pt;}
.h5_c00276{height:8.303099pt;}
.h6_c00276{height:16.606198pt;}
.h4_c00276{height:41.467500pt;}
.h2_c00276{height:49.770599pt;}
.h3_c00276{height:52.506302pt;}
.h0_c00276{height:1347.066667pt;}
.h1_c00276{height:1347.333333pt;}
.w1_c00276{width:981.333333pt;}
.w0_c00276{width:981.506667pt;}
.x0_c00276{left:0.000000pt;}
.x1_c00276{left:364.026667pt;}
.x2_c00276{left:503.040000pt;}
.x3_c00276{left:917.760000pt;}
.x4_c00276{left:921.600000pt;}
.x5_c00276{left:933.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00277;src:url('chunks/assets/font_9d2eeed2e910e5723ee48dcd.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.109863;font-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_c00277{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c00277{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.m13_c00277{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.m11_c00277{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m14_c00277{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);}
.m10_c00277{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m15_c00277{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);}
.m7_c00277{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);}
.m3_c00277{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);}
.m5_c00277{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);}
.m12_c00277{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);}
.m1_c00277{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);}
.m6_c00277{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00277{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00277{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);}
.m9_c00277{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c00277{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m16_c00277{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);}
.m0_c00277{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.ma_c00277{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.me_c00277{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.mb_c00277{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc_c00277{transform:matrix(1.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.962500,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls0_c00277{letter-spacing:0.000000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00277{word-spacing:0.000000px;}
.fc0_c00277{color:transparent;}
.fs7_c00277{font-size:3.456000px;}
.fs9_c00277{font-size:6.900000px;}
.fsc_c00277{font-size:17.280000px;}
.fsb_c00277{font-size:20.760000px;}
.fsa_c00277{font-size:27.660000px;}
.fs8_c00277{font-size:34.560000px;}
.fs0_c00277{font-size:38.040000px;}
.fsf_c00277{font-size:48.360000px;}
.fs1_c00277{font-size:51.840000px;}
.fs3_c00277{font-size:55.320000px;}
.fs6_c00277{font-size:58.740000px;}
.fs4_c00277{font-size:62.220000px;}
.fse_c00277{font-size:69.120000px;}
.fs5_c00277{font-size:72.600000px;}
.fsd_c00277{font-size:79.500000px;}
.fs2_c00277{font-size:82.920000px;}
.y0_c00277{bottom:0.000000px;}
.y14_c00277{bottom:501.120000px;}
.y10_c00277{bottom:520.995000px;}
.y13_c00277{bottom:525.315000px;}
.y12_c00277{bottom:526.170000px;}
.yf_c00277{bottom:528.765000px;}
.y11_c00277{bottom:529.635000px;}
.ye_c00277{bottom:531.360000px;}
.y9_c00277{bottom:542.595000px;}
.yb_c00277{bottom:543.450000px;}
.y8_c00277{bottom:545.190000px;}
.y7_c00277{bottom:546.045000px;}
.ya_c00277{bottom:548.640000px;}
.yd_c00277{bottom:549.510000px;}
.yc_c00277{bottom:551.235000px;}
.y3_c00277{bottom:556.410000px;}
.y4_c00277{bottom:557.280000px;}
.y5_c00277{bottom:558.150000px;}
.y6_c00277{bottom:559.005000px;}
.y2_c00277{bottom:1199.235000px;}
.y1_c00277{bottom:1240.710000px;}
.h9_c00277{height:3.110063px;}
.hb_c00277{height:6.209326px;}
.he_c00277{height:15.550313px;}
.hd_c00277{height:18.681973px;}
.hc_c00277{height:24.891299px;}
.ha_c00277{height:31.100625px;}
.h2_c00277{height:34.232285px;}
.h11_c00277{height:43.519277px;}
.h3_c00277{height:46.650937px;}
.h5_c00277{height:49.782598px;}
.h8_c00277{height:52.860264px;}
.h6_c00277{height:55.991924px;}
.h10_c00277{height:62.201250px;}
.h7_c00277{height:65.332910px;}
.hf_c00277{height:71.542236px;}
.h4_c00277{height:74.619902px;}
.h0_c00277{height:1509.405000px;}
.h1_c00277{height:1509.750000px;}
.w0_c00277{width:1102.470000px;}
.w1_c00277{width:1102.500000px;}
.x0_c00277{left:0.000000px;}
.x1_c00277{left:69.120000px;}
.x2_c00277{left:146.010000px;}
.x16_c00277{left:228.960000px;}
.x11_c00277{left:254.010000px;}
.x12_c00277{left:276.480000px;}
.x9_c00277{left:302.400000px;}
.x3_c00277{left:320.550000px;}
.xa_c00277{left:330.915000px;}
.x4_c00277{left:336.960000px;}
.x13_c00277{left:344.730000px;}
.x5_c00277{left:351.645000px;}
.x6_c00277{left:374.115000px;}
.xb_c00277{left:385.350000px;}
.x14_c00277{left:392.250000px;}
.x7_c00277{left:429.405000px;}
.xc_c00277{left:438.045000px;}
.x8_c00277{left:439.770000px;}
.xd_c00277{left:474.330000px;}
.xe_c00277{left:506.310000px;}
.x15_c00277{left:512.355000px;}
.xf_c00277{left:530.490000px;}
.x10_c00277{left:554.685000px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ws0_c00277{word-spacing:0.000000pt;}
.fs7_c00277{font-size:3.072000pt;}
.fs9_c00277{font-size:6.133333pt;}
.fsc_c00277{font-size:15.360000pt;}
.fsb_c00277{font-size:18.453333pt;}
.fsa_c00277{font-size:24.586667pt;}
.fs8_c00277{font-size:30.720000pt;}
.fs0_c00277{font-size:33.813333pt;}
.fsf_c00277{font-size:42.986667pt;}
.fs1_c00277{font-size:46.080000pt;}
.fs3_c00277{font-size:49.173333pt;}
.fs6_c00277{font-size:52.213333pt;}
.fs4_c00277{font-size:55.306667pt;}
.fse_c00277{font-size:61.440000pt;}
.fs5_c00277{font-size:64.533333pt;}
.fsd_c00277{font-size:70.666667pt;}
.fs2_c00277{font-size:73.706667pt;}
.y0_c00277{bottom:0.000000pt;}
.y14_c00277{bottom:445.440000pt;}
.y10_c00277{bottom:463.106667pt;}
.y13_c00277{bottom:466.946667pt;}
.y12_c00277{bottom:467.706667pt;}
.yf_c00277{bottom:470.013333pt;}
.y11_c00277{bottom:470.786667pt;}
.ye_c00277{bottom:472.320000pt;}
.y9_c00277{bottom:482.306667pt;}
.yb_c00277{bottom:483.066667pt;}
.y8_c00277{bottom:484.613333pt;}
.y7_c00277{bottom:485.373333pt;}
.ya_c00277{bottom:487.680000pt;}
.yd_c00277{bottom:488.453333pt;}
.yc_c00277{bottom:489.986667pt;}
.y3_c00277{bottom:494.586667pt;}
.y4_c00277{bottom:495.360000pt;}
.y5_c00277{bottom:496.133333pt;}
.y6_c00277{bottom:496.893333pt;}
.y2_c00277{bottom:1065.986667pt;}
.y1_c00277{bottom:1102.853333pt;}
.h9_c00277{height:2.764500pt;}
.hb_c00277{height:5.519401pt;}
.he_c00277{height:13.822500pt;}
.hd_c00277{height:16.606198pt;}
.hc_c00277{height:22.125599pt;}
.ha_c00277{height:27.645000pt;}
.h2_c00277{height:30.428698pt;}
.h11_c00277{height:38.683802pt;}
.h3_c00277{height:41.467500pt;}
.h5_c00277{height:44.251198pt;}
.h8_c00277{height:46.986901pt;}
.h6_c00277{height:49.770599pt;}
.h10_c00277{height:55.290000pt;}
.h7_c00277{height:58.073698pt;}
.hf_c00277{height:63.593099pt;}
.h4_c00277{height:66.328802pt;}
.h0_c00277{height:1341.693333pt;}
.h1_c00277{height:1342.000000pt;}
.w0_c00277{width:979.973333pt;}
.w1_c00277{width:980.000000pt;}
.x0_c00277{left:0.000000pt;}
.x1_c00277{left:61.440000pt;}
.x2_c00277{left:129.786667pt;}
.x16_c00277{left:203.520000pt;}
.x11_c00277{left:225.786667pt;}
.x12_c00277{left:245.760000pt;}
.x9_c00277{left:268.800000pt;}
.x3_c00277{left:284.933333pt;}
.xa_c00277{left:294.146667pt;}
.x4_c00277{left:299.520000pt;}
.x13_c00277{left:306.426667pt;}
.x5_c00277{left:312.573333pt;}
.x6_c00277{left:332.546667pt;}
.xb_c00277{left:342.533333pt;}
.x14_c00277{left:348.666667pt;}
.x7_c00277{left:381.693333pt;}
.xc_c00277{left:389.373333pt;}
.x8_c00277{left:390.906667pt;}
.xd_c00277{left:421.626667pt;}
.xe_c00277{left:450.053333pt;}
.x15_c00277{left:455.426667pt;}
.xf_c00277{left:471.546667pt;}
.x10_c00277{left:493.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f851ceee0ced65d546dab9de.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.109863;font-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_c00278{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb_c00278{transform:matrix(0.116825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116825,0.000000,0.000000,0.250000,0,0);}
.m27_c00278{transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);}
.m1_c00278{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m29_c00278{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);}
.m8_c00278{transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);}
.m11_c00278{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m12_c00278{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);}
.m6_c00278{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m14_c00278{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.m7_c00278{transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);}
.m21_c00278{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.m1c_c00278{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.m19_c00278{transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);}
.m4_c00278{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.me_c00278{transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);}
.md_c00278{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);}
.m20_c00278{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);}
.m18_c00278{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00278{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00278{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);}
.m22_c00278{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c00278{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c00278{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);}
.ma_c00278{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);}
.m10_c00278{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c00278{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c00278{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c00278{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);}
.mf_c00278{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m28_c00278{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m26_c00278{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m15_c00278{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);}
.m25_c00278{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00278{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m16_c00278{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);}
.m2b_c00278{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00278{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m3_c00278{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00278{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m23_c00278{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m24_c00278{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m13_c00278{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00278{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v1_c00278{vertical-align:-10.380000px;}
.v0_c00278{vertical-align:0.000000px;}
.ls1_c00278{letter-spacing:0.000000px;}
.ls0_c00278{letter-spacing:68.174688px;}
.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;}
.fs2_c00278{font-size:3.456000px;}
.fs18_c00278{font-size:6.000000px;}
.fs1_c00278{font-size:6.900000px;}
.fse_c00278{font-size:10.380000px;}
.fs13_c00278{font-size:13.800000px;}
.fs0_c00278{font-size:17.280000px;}
.fs3_c00278{font-size:20.760000px;}
.fs16_c00278{font-size:24.180000px;}
.fs15_c00278{font-size:27.660000px;}
.fs4_c00278{font-size:31.080000px;}
.fs14_c00278{font-size:34.560000px;}
.fs11_c00278{font-size:38.040000px;}
.fs12_c00278{font-size:41.460000px;}
.fs10_c00278{font-size:51.840000px;}
.fs9_c00278{font-size:55.320000px;}
.fs6_c00278{font-size:58.740000px;}
.fs17_c00278{font-size:62.220000px;}
.fsc_c00278{font-size:69.120000px;}
.fsb_c00278{font-size:72.600000px;}
.fs7_c00278{font-size:76.020000px;}
.fsd_c00278{font-size:79.500000px;}
.fs5_c00278{font-size:82.920000px;}
.fsf_c00278{font-size:86.400000px;}
.fsa_c00278{font-size:89.880000px;}
.fs8_c00278{font-size:103.680000px;}
.y0_c00278{bottom:0.000000px;}
.y2c_c00278{bottom:473.475000px;}
.y27_c00278{bottom:1217.370000px;}
.y29_c00278{bottom:1219.110000px;}
.y28_c00278{bottom:1223.430000px;}
.y24_c00278{bottom:1224.285000px;}
.y2a_c00278{bottom:1226.010000px;}
.y23_c00278{bottom:1232.070000px;}
.y2b_c00278{bottom:1232.925000px;}
.y26_c00278{bottom:1233.795000px;}
.y25_c00278{bottom:1236.390000px;}
.y22_c00278{bottom:1238.970000px;}
.y21_c00278{bottom:1239.840000px;}
.y20_c00278{bottom:1244.160000px;}
.y1f_c00278{bottom:1248.480000px;}
.y4_c00278{bottom:1249.350000px;}
.y5_c00278{bottom:1251.930000px;}
.y1b_c00278{bottom:1258.845000px;}
.y1d_c00278{bottom:1259.715000px;}
.y1a_c00278{bottom:1260.570000px;}
.y1c_c00278{bottom:1264.890000px;}
.y1e_c00278{bottom:1267.485000px;}
.y17_c00278{bottom:1278.720000px;}
.y16_c00278{bottom:1282.170000px;}
.y18_c00278{bottom:1286.490000px;}
.y19_c00278{bottom:1292.550000px;}
.y12_c00278{bottom:1299.450000px;}
.y13_c00278{bottom:1300.320000px;}
.y11_c00278{bottom:1305.510000px;}
.y14_c00278{bottom:1308.960000px;}
.y15_c00278{bottom:1311.555000px;}
.y10_c00278{bottom:1320.195000px;}
.yf_c00278{bottom:1321.920000px;}
.ye_c00278{bottom:1325.370000px;}
.yb_c00278{bottom:1334.880000px;}
.yd_c00278{bottom:1339.200000px;}
.y9_c00278{bottom:1340.070000px;}
.ya_c00278{bottom:1340.925000px;}
.yc_c00278{bottom:1346.115000px;}
.y7_c00278{bottom:1362.525000px;}
.y8_c00278{bottom:1365.120000px;}
.y6_c00278{bottom:1370.310000px;}
.y3_c00278{bottom:1401.405000px;}
.y1_c00278{bottom:1418.685000px;}
.y2_c00278{bottom:1419.555000px;}
.h6_c00278{height:3.110063px;}
.h1b_c00278{height:5.399414px;}
.h3_c00278{height:6.209326px;}
.h4_c00278{height:8.301973px;}
.h11_c00278{height:9.340986px;}
.h16_c00278{height:12.418652px;}
.h2_c00278{height:15.550313px;}
.h7_c00278{height:18.681973px;}
.h19_c00278{height:21.759639px;}
.h18_c00278{height:24.891299px;}
.h5_c00278{height:27.968965px;}
.h17_c00278{height:31.100625px;}
.h14_c00278{height:34.232285px;}
.h15_c00278{height:37.309951px;}
.h13_c00278{height:46.650937px;}
.hc_c00278{height:49.782598px;}
.h9_c00278{height:52.860264px;}
.h1a_c00278{height:55.991924px;}
.hf_c00278{height:62.201250px;}
.he_c00278{height:65.332910px;}
.ha_c00278{height:68.410576px;}
.h10_c00278{height:71.542236px;}
.h8_c00278{height:74.619902px;}
.h12_c00278{height:77.751563px;}
.hd_c00278{height:80.883223px;}
.hb_c00278{height:93.301875px;}
.h0_c00278{height:1515.450000px;}
.h1_c00278{height:1515.750000px;}
.w1_c00278{width:1104.000000px;}
.w0_c00278{width:1104.195000px;}
.x0_c00278{left:0.000000px;}
.x4_c00278{left:145.155000px;}
.x5_c00278{left:160.710000px;}
.x1a_c00278{left:232.410000px;}
.x17_c00278{left:237.600000px;}
.x21_c00278{left:240.195000px;}
.x10_c00278{left:252.285000px;}
.x25_c00278{left:256.605000px;}
.x6_c00278{left:263.520000px;}
.x9_c00278{left:272.160000px;}
.x26_c00278{left:273.885000px;}
.x29_c00278{left:279.075000px;}
.x11_c00278{left:287.715000px;}
.x1_c00278{left:296.355000px;}
.x1b_c00278{left:304.995000px;}
.x2_c00278{left:308.445000px;}
.xa_c00278{left:319.680000px;}
.x7_c00278{left:322.275000px;}
.x27_c00278{left:348.195000px;}
.x22_c00278{left:360.285000px;}
.x2a_c00278{left:362.010000px;}
.xb_c00278{left:365.475000px;}
.x12_c00278{left:371.520000px;}
.x1c_c00278{left:373.245000px;}
.x23_c00278{left:431.130000px;}
.x13_c00278{left:442.365000px;}
.xc_c00278{left:444.090000px;}
.x1d_c00278{left:451.875000px;}
.x24_c00278{left:463.965000px;}
.xd_c00278{left:469.155000px;}
.x1e_c00278{left:471.750000px;}
.x14_c00278{left:488.160000px;}
.x1f_c00278{left:508.890000px;}
.xe_c00278{left:513.210000px;}
.x28_c00278{left:520.995000px;}
.x18_c00278{left:526.170000px;}
.x2b_c00278{left:527.910000px;}
.x20_c00278{left:531.360000px;}
.x15_c00278{left:533.955000px;}
.x16_c00278{left:538.275000px;}
.x8_c00278{left:541.725000px;}
.xf_c00278{left:544.320000px;}
.x19_c00278{left:550.365000px;}
.x3_c00278{left:1068.765000px;}
.x2c_c00278{left:1086.915000px;}
@media print{
.v1_c00278{vertical-align:-9.226667pt;}
.v0_c00278{vertical-align:0.000000pt;}
.ls1_c00278{letter-spacing:0.000000pt;}
.ls0_c00278{letter-spacing:60.599723pt;}
.ws0_c00278{word-spacing:0.000000pt;}
.fs2_c00278{font-size:3.072000pt;}
.fs18_c00278{font-size:5.333333pt;}
.fs1_c00278{font-size:6.133333pt;}
.fse_c00278{font-size:9.226667pt;}
.fs13_c00278{font-size:12.266667pt;}
.fs0_c00278{font-size:15.360000pt;}
.fs3_c00278{font-size:18.453333pt;}
.fs16_c00278{font-size:21.493333pt;}
.fs15_c00278{font-size:24.586667pt;}
.fs4_c00278{font-size:27.626667pt;}
.fs14_c00278{font-size:30.720000pt;}
.fs11_c00278{font-size:33.813333pt;}
.fs12_c00278{font-size:36.853333pt;}
.fs10_c00278{font-size:46.080000pt;}
.fs9_c00278{font-size:49.173333pt;}
.fs6_c00278{font-size:52.213333pt;}
.fs17_c00278{font-size:55.306667pt;}
.fsc_c00278{font-size:61.440000pt;}
.fsb_c00278{font-size:64.533333pt;}
.fs7_c00278{font-size:67.573333pt;}
.fsd_c00278{font-size:70.666667pt;}
.fs5_c00278{font-size:73.706667pt;}
.fsf_c00278{font-size:76.800000pt;}
.fsa_c00278{font-size:79.893333pt;}
.fs8_c00278{font-size:92.160000pt;}
.y0_c00278{bottom:0.000000pt;}
.y2c_c00278{bottom:420.866667pt;}
.y27_c00278{bottom:1082.106667pt;}
.y29_c00278{bottom:1083.653333pt;}
.y28_c00278{bottom:1087.493333pt;}
.y24_c00278{bottom:1088.253333pt;}
.y2a_c00278{bottom:1089.786667pt;}
.y23_c00278{bottom:1095.173333pt;}
.y2b_c00278{bottom:1095.933333pt;}
.y26_c00278{bottom:1096.706667pt;}
.y25_c00278{bottom:1099.013333pt;}
.y22_c00278{bottom:1101.306667pt;}
.y21_c00278{bottom:1102.080000pt;}
.y20_c00278{bottom:1105.920000pt;}
.y1f_c00278{bottom:1109.760000pt;}
.y4_c00278{bottom:1110.533333pt;}
.y5_c00278{bottom:1112.826667pt;}
.y1b_c00278{bottom:1118.973333pt;}
.y1d_c00278{bottom:1119.746667pt;}
.y1a_c00278{bottom:1120.506667pt;}
.y1c_c00278{bottom:1124.346667pt;}
.y1e_c00278{bottom:1126.653333pt;}
.y17_c00278{bottom:1136.640000pt;}
.y16_c00278{bottom:1139.706667pt;}
.y18_c00278{bottom:1143.546667pt;}
.y19_c00278{bottom:1148.933333pt;}
.y12_c00278{bottom:1155.066667pt;}
.y13_c00278{bottom:1155.840000pt;}
.y11_c00278{bottom:1160.453333pt;}
.y14_c00278{bottom:1163.520000pt;}
.y15_c00278{bottom:1165.826667pt;}
.y10_c00278{bottom:1173.506667pt;}
.yf_c00278{bottom:1175.040000pt;}
.ye_c00278{bottom:1178.106667pt;}
.yb_c00278{bottom:1186.560000pt;}
.yd_c00278{bottom:1190.400000pt;}
.y9_c00278{bottom:1191.173333pt;}
.ya_c00278{bottom:1191.933333pt;}
.yc_c00278{bottom:1196.546667pt;}
.y7_c00278{bottom:1211.133333pt;}
.y8_c00278{bottom:1213.440000pt;}
.y6_c00278{bottom:1218.053333pt;}
.y3_c00278{bottom:1245.693333pt;}
.y1_c00278{bottom:1261.053333pt;}
.y2_c00278{bottom:1261.826667pt;}
.h6_c00278{height:2.764500pt;}
.h1b_c00278{height:4.799479pt;}
.h3_c00278{height:5.519401pt;}
.h4_c00278{height:7.379531pt;}
.h11_c00278{height:8.303099pt;}
.h16_c00278{height:11.038802pt;}
.h2_c00278{height:13.822500pt;}
.h7_c00278{height:16.606198pt;}
.h19_c00278{height:19.341901pt;}
.h18_c00278{height:22.125599pt;}
.h5_c00278{height:24.861302pt;}
.h17_c00278{height:27.645000pt;}
.h14_c00278{height:30.428698pt;}
.h15_c00278{height:33.164401pt;}
.h13_c00278{height:41.467500pt;}
.hc_c00278{height:44.251198pt;}
.h9_c00278{height:46.986901pt;}
.h1a_c00278{height:49.770599pt;}
.hf_c00278{height:55.290000pt;}
.he_c00278{height:58.073698pt;}
.ha_c00278{height:60.809401pt;}
.h10_c00278{height:63.593099pt;}
.h8_c00278{height:66.328802pt;}
.h12_c00278{height:69.112500pt;}
.hd_c00278{height:71.896198pt;}
.hb_c00278{height:82.935000pt;}
.h0_c00278{height:1347.066667pt;}
.h1_c00278{height:1347.333333pt;}
.w1_c00278{width:981.333333pt;}
.w0_c00278{width:981.506667pt;}
.x0_c00278{left:0.000000pt;}
.x4_c00278{left:129.026667pt;}
.x5_c00278{left:142.853333pt;}
.x1a_c00278{left:206.586667pt;}
.x17_c00278{left:211.200000pt;}
.x21_c00278{left:213.506667pt;}
.x10_c00278{left:224.253333pt;}
.x25_c00278{left:228.093333pt;}
.x6_c00278{left:234.240000pt;}
.x9_c00278{left:241.920000pt;}
.x26_c00278{left:243.453333pt;}
.x29_c00278{left:248.066667pt;}
.x11_c00278{left:255.746667pt;}
.x1_c00278{left:263.426667pt;}
.x1b_c00278{left:271.106667pt;}
.x2_c00278{left:274.173333pt;}
.xa_c00278{left:284.160000pt;}
.x7_c00278{left:286.466667pt;}
.x27_c00278{left:309.506667pt;}
.x22_c00278{left:320.253333pt;}
.x2a_c00278{left:321.786667pt;}
.xb_c00278{left:324.866667pt;}
.x12_c00278{left:330.240000pt;}
.x1c_c00278{left:331.773333pt;}
.x23_c00278{left:383.226667pt;}
.x13_c00278{left:393.213333pt;}
.xc_c00278{left:394.746667pt;}
.x1d_c00278{left:401.666667pt;}
.x24_c00278{left:412.413333pt;}
.xd_c00278{left:417.026667pt;}
.x1e_c00278{left:419.333333pt;}
.x14_c00278{left:433.920000pt;}
.x1f_c00278{left:452.346667pt;}
.xe_c00278{left:456.186667pt;}
.x28_c00278{left:463.106667pt;}
.x18_c00278{left:467.706667pt;}
.x2b_c00278{left:469.253333pt;}
.x20_c00278{left:472.320000pt;}
.x15_c00278{left:474.626667pt;}
.x16_c00278{left:478.466667pt;}
.x8_c00278{left:481.533333pt;}
.xf_c00278{left:483.840000pt;}
.x19_c00278{left:489.213333pt;}
.x3_c00278{left:950.013333pt;}
.x2c_c00278{left:966.146667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e0080c1c768f01e576141b25.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.109863;font-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_c00279{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);}
.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;}
.fs0_c00279{font-size:600.000000px;}
.y0_c00279{bottom:0.000000px;}
.y1_c00279{bottom:15.000000px;}
.h2_c00279{height:539.941406px;}
.h0_c00279{height:1509.405000px;}
.h1_c00279{height:1509.750000px;}
.w0_c00279{width:1102.470000px;}
.w1_c00279{width:1102.500000px;}
.x0_c00279{left:0.000000px;}
.x1_c00279{left:15.000000px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws0_c00279{word-spacing:0.000000pt;}
.fs0_c00279{font-size:533.333333pt;}
.y0_c00279{bottom:0.000000pt;}
.y1_c00279{bottom:13.333333pt;}
.h2_c00279{height:479.947917pt;}
.h0_c00279{height:1341.693333pt;}
.h1_c00279{height:1342.000000pt;}
.w0_c00279{width:979.973333pt;}
.w1_c00279{width:980.000000pt;}
.x0_c00279{left:0.000000pt;}
.x1_c00279{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5acbb0df3d5931114fbff150.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.109863;font-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_c00280{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);}
.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:600.000000px;}
.y0_c00280{bottom:0.000000px;}
.y1_c00280{bottom:15.000000px;}
.h2_c00280{height:539.941406px;}
.h0_c00280{height:1515.450000px;}
.h1_c00280{height:1515.750000px;}
.w1_c00280{width:1104.000000px;}
.w0_c00280{width:1104.195000px;}
.x0_c00280{left:0.000000px;}
.x1_c00280{left:15.000000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls0_c00280{letter-spacing:0.000000pt;}
.ws0_c00280{word-spacing:0.000000pt;}
.fs0_c00280{font-size:533.333333pt;}
.y0_c00280{bottom:0.000000pt;}
.y1_c00280{bottom:13.333333pt;}
.h2_c00280{height:479.947917pt;}
.h0_c00280{height:1347.066667pt;}
.h1_c00280{height:1347.333333pt;}
.w1_c00280{width:981.333333pt;}
.w0_c00280{width:981.506667pt;}
.x0_c00280{left:0.000000pt;}
.x1_c00280{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1cf144c33e3dc60c56648c08.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.109863;font-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.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);}
.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:600.000000px;}
.y0_c00281{bottom:0.000000px;}
.y1_c00281{bottom:15.000000px;}
.h2_c00281{height:539.941406px;}
.h0_c00281{height:1509.405000px;}
.h1_c00281{height:1509.750000px;}
.w0_c00281{width:1102.470000px;}
.w1_c00281{width:1102.500000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:15.000000px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls0_c00281{letter-spacing:0.000000pt;}
.ws0_c00281{word-spacing:0.000000pt;}
.fs0_c00281{font-size:533.333333pt;}
.y0_c00281{bottom:0.000000pt;}
.y1_c00281{bottom:13.333333pt;}
.h2_c00281{height:479.947917pt;}
.h0_c00281{height:1341.693333pt;}
.h1_c00281{height:1342.000000pt;}
.w0_c00281{width:979.973333pt;}
.w1_c00281{width:980.000000pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e18845df4cd6936fb475b51b.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.109863;font-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_c00282{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);}
.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:600.000000px;}
.y0_c00282{bottom:0.000000px;}
.y1_c00282{bottom:15.000000px;}
.h2_c00282{height:539.941406px;}
.h0_c00282{height:1515.450000px;}
.h1_c00282{height:1515.750000px;}
.w1_c00282{width:1104.000000px;}
.w0_c00282{width:1104.195000px;}
.x0_c00282{left:0.000000px;}
.x1_c00282{left:15.000000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls0_c00282{letter-spacing:0.000000pt;}
.ws0_c00282{word-spacing:0.000000pt;}
.fs0_c00282{font-size:533.333333pt;}
.y0_c00282{bottom:0.000000pt;}
.y1_c00282{bottom:13.333333pt;}
.h2_c00282{height:479.947917pt;}
.h0_c00282{height:1347.066667pt;}
.h1_c00282{height:1347.333333pt;}
.w1_c00282{width:981.333333pt;}
.w0_c00282{width:981.506667pt;}
.x0_c00282{left:0.000000pt;}
.x1_c00282{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bceb20938ecefdc99e89dcf5.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.109863;font-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_c00283{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00283{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m0_c00283{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);}
.m4_c00283{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3_c00283{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,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;}
.fc0_c00283{color:transparent;}
.fs1_c00283{font-size:17.280000px;}
.fs3_c00283{font-size:20.760000px;}
.fs4_c00283{font-size:27.660000px;}
.fs2_c00283{font-size:38.040000px;}
.fs0_c00283{font-size:65.640000px;}
.y0_c00283{bottom:0.000000px;}
.y5_c00283{bottom:1017.795000px;}
.y4_c00283{bottom:1156.890000px;}
.y3_c00283{bottom:1162.080000px;}
.y2_c00283{bottom:1175.040000px;}
.y1_c00283{bottom:1391.040000px;}
.h3_c00283{height:15.550313px;}
.h5_c00283{height:18.681973px;}
.h6_c00283{height:24.891299px;}
.h4_c00283{height:34.232285px;}
.h2_c00283{height:59.069590px;}
.h0_c00283{height:1509.405000px;}
.h1_c00283{height:1509.750000px;}
.w0_c00283{width:1102.470000px;}
.w1_c00283{width:1102.500000px;}
.x0_c00283{left:0.000000px;}
.x4_c00283{left:21.600000px;}
.x2_c00283{left:108.000000px;}
.x3_c00283{left:112.320000px;}
.x1_c00283{left:453.600000px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws0_c00283{word-spacing:0.000000pt;}
.fs1_c00283{font-size:15.360000pt;}
.fs3_c00283{font-size:18.453333pt;}
.fs4_c00283{font-size:24.586667pt;}
.fs2_c00283{font-size:33.813333pt;}
.fs0_c00283{font-size:58.346667pt;}
.y0_c00283{bottom:0.000000pt;}
.y5_c00283{bottom:904.706667pt;}
.y4_c00283{bottom:1028.346667pt;}
.y3_c00283{bottom:1032.960000pt;}
.y2_c00283{bottom:1044.480000pt;}
.y1_c00283{bottom:1236.480000pt;}
.h3_c00283{height:13.822500pt;}
.h5_c00283{height:16.606198pt;}
.h6_c00283{height:22.125599pt;}
.h4_c00283{height:30.428698pt;}
.h2_c00283{height:52.506302pt;}
.h0_c00283{height:1341.693333pt;}
.h1_c00283{height:1342.000000pt;}
.w0_c00283{width:979.973333pt;}
.w1_c00283{width:980.000000pt;}
.x0_c00283{left:0.000000pt;}
.x4_c00283{left:19.200000pt;}
.x2_c00283{left:96.000000pt;}
.x3_c00283{left:99.840000pt;}
.x1_c00283{left:403.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_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_f8a882cf28f5136e71b8cc6a.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.109863;font-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_c00284{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);}
.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;}
.fs0_c00284{font-size:600.000000px;}
.y0_c00284{bottom:0.000000px;}
.y1_c00284{bottom:15.000000px;}
.h2_c00284{height:539.941406px;}
.h0_c00284{height:1515.450000px;}
.h1_c00284{height:1515.750000px;}
.w1_c00284{width:1104.000000px;}
.w0_c00284{width:1104.195000px;}
.x0_c00284{left:0.000000px;}
.x1_c00284{left:15.000000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws0_c00284{word-spacing:0.000000pt;}
.fs0_c00284{font-size:533.333333pt;}
.y0_c00284{bottom:0.000000pt;}
.y1_c00284{bottom:13.333333pt;}
.h2_c00284{height:479.947917pt;}
.h0_c00284{height:1347.066667pt;}
.h1_c00284{height:1347.333333pt;}
.w1_c00284{width:981.333333pt;}
.w0_c00284{width:981.506667pt;}
.x0_c00284{left:0.000000pt;}
.x1_c00284{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2cacabdacbc8b5d6a4e87f3f.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.109863;font-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.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);}
.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:600.000000px;}
.y0_c00285{bottom:0.000000px;}
.y1_c00285{bottom:15.000000px;}
.h2_c00285{height:539.941406px;}
.h0_c00285{height:1509.405000px;}
.h1_c00285{height:1509.750000px;}
.w0_c00285{width:1102.470000px;}
.w1_c00285{width:1102.500000px;}
.x0_c00285{left:0.000000px;}
.x1_c00285{left:15.000000px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws0_c00285{word-spacing:0.000000pt;}
.fs0_c00285{font-size:533.333333pt;}
.y0_c00285{bottom:0.000000pt;}
.y1_c00285{bottom:13.333333pt;}
.h2_c00285{height:479.947917pt;}
.h0_c00285{height:1341.693333pt;}
.h1_c00285{height:1342.000000pt;}
.w0_c00285{width:979.973333pt;}
.w1_c00285{width:980.000000pt;}
.x0_c00285{left:0.000000pt;}
.x1_c00285{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_58657d41b243bf23edcf2949.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.109863;font-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_c00286{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m3_c00286{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.m1_c00286{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00286{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);}
.m0_c00286{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m5_c00286{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,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;}
.fc0_c00286{color:transparent;}
.fs1_c00286{font-size:17.280000px;}
.fs0_c00286{font-size:27.660000px;}
.fs4_c00286{font-size:38.040000px;}
.fs3_c00286{font-size:51.840000px;}
.fs2_c00286{font-size:82.920000px;}
.y0_c00286{bottom:0.000000px;}
.y6_c00286{bottom:593.565000px;}
.y5_c00286{bottom:1016.070000px;}
.y4_c00286{bottom:1032.480000px;}
.y3_c00286{bottom:1098.150000px;}
.y2_c00286{bottom:1099.875000px;}
.y1_c00286{bottom:1374.630000px;}
.h3_c00286{height:15.550313px;}
.h2_c00286{height:24.891299px;}
.h6_c00286{height:34.232285px;}
.h5_c00286{height:46.650937px;}
.h4_c00286{height:74.619902px;}
.h0_c00286{height:1515.450000px;}
.h1_c00286{height:1515.750000px;}
.w1_c00286{width:1104.000000px;}
.w0_c00286{width:1104.195000px;}
.x0_c00286{left:0.000000px;}
.x4_c00286{left:997.920000px;}
.x2_c00286{left:1016.070000px;}
.x3_c00286{left:1022.970000px;}
.x1_c00286{left:1035.930000px;}
.x5_c00286{left:1054.950000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls0_c00286{letter-spacing:0.000000pt;}
.ws0_c00286{word-spacing:0.000000pt;}
.fs1_c00286{font-size:15.360000pt;}
.fs0_c00286{font-size:24.586667pt;}
.fs4_c00286{font-size:33.813333pt;}
.fs3_c00286{font-size:46.080000pt;}
.fs2_c00286{font-size:73.706667pt;}
.y0_c00286{bottom:0.000000pt;}
.y6_c00286{bottom:527.613333pt;}
.y5_c00286{bottom:903.173333pt;}
.y4_c00286{bottom:917.760000pt;}
.y3_c00286{bottom:976.133333pt;}
.y2_c00286{bottom:977.666667pt;}
.y1_c00286{bottom:1221.893333pt;}
.h3_c00286{height:13.822500pt;}
.h2_c00286{height:22.125599pt;}
.h6_c00286{height:30.428698pt;}
.h5_c00286{height:41.467500pt;}
.h4_c00286{height:66.328802pt;}
.h0_c00286{height:1347.066667pt;}
.h1_c00286{height:1347.333333pt;}
.w1_c00286{width:981.333333pt;}
.w0_c00286{width:981.506667pt;}
.x0_c00286{left:0.000000pt;}
.x4_c00286{left:887.040000pt;}
.x2_c00286{left:903.173333pt;}
.x3_c00286{left:909.306667pt;}
.x1_c00286{left:920.826667pt;}
.x5_c00286{left:937.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8e1c2530977d558e6cece93.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.109863;font-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_c00287{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mf_c00287{transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);}
.m1b_c00287{transform:matrix(0.040950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040950,0.000000,0.000000,0.250000,0,0);}
.m1d_c00287{transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);}
.m12_c00287{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m8_c00287{transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);}
.m4_c00287{transform:matrix(0.089300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089300,0.000000,0.000000,0.250000,0,0);}
.m1f_c00287{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m3_c00287{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.me_c00287{transform:matrix(0.115575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115575,0.000000,0.000000,0.250000,0,0);}
.m11_c00287{transform:matrix(0.121100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121100,0.000000,0.000000,0.250000,0,0);}
.m14_c00287{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mb_c00287{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10_c00287{transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);}
.m1a_c00287{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m16_c00287{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.ma_c00287{transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);}
.m5_c00287{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m15_c00287{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);}
.md_c00287{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);}
.m9_c00287{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00287{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);}
.m7_c00287{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00287{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_c00287{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00287{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c00287{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19_c00287{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m17_c00287{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mc_c00287{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m13_c00287{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00287{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,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;}
.fsc_c00287{font-size:3.456000px;}
.fs9_c00287{font-size:10.380000px;}
.fs1_c00287{font-size:13.800000px;}
.fsd_c00287{font-size:17.280000px;}
.fs0_c00287{font-size:20.760000px;}
.fs2_c00287{font-size:24.180000px;}
.fs3_c00287{font-size:27.660000px;}
.fs7_c00287{font-size:31.080000px;}
.fs13_c00287{font-size:34.560000px;}
.fsa_c00287{font-size:38.040000px;}
.fs15_c00287{font-size:41.460000px;}
.fs12_c00287{font-size:48.360000px;}
.fs5_c00287{font-size:51.840000px;}
.fs10_c00287{font-size:55.320000px;}
.fsb_c00287{font-size:62.220000px;}
.fs4_c00287{font-size:72.600000px;}
.fs8_c00287{font-size:86.400000px;}
.fsf_c00287{font-size:89.880000px;}
.fs6_c00287{font-size:100.200000px;}
.fse_c00287{font-size:103.680000px;}
.fs11_c00287{font-size:107.160000px;}
.fs17_c00287{font-size:179.700000px;}
.fs16_c00287{font-size:190.080000px;}
.fs14_c00287{font-size:196.980000px;}
.y0_c00287{bottom:0.000000px;}
.y21_c00287{bottom:658.365000px;}
.y22_c00287{bottom:660.090000px;}
.y23_c00287{bottom:674.790000px;}
.y20_c00287{bottom:692.925000px;}
.y1f_c00287{bottom:709.350000px;}
.y1d_c00287{bottom:718.845000px;}
.y1e_c00287{bottom:726.630000px;}
.y1c_c00287{bottom:752.550000px;}
.y1a_c00287{bottom:780.195000px;}
.y1b_c00287{bottom:786.240000px;}
.y19_c00287{bottom:842.400000px;}
.y18_c00287{bottom:850.170000px;}
.y17_c00287{bottom:863.130000px;}
.y16_c00287{bottom:875.235000px;}
.y15_c00287{bottom:999.645000px;}
.y14_c00287{bottom:1012.605000px;}
.y13_c00287{bottom:1017.795000px;}
.y11_c00287{bottom:1028.160000px;}
.y12_c00287{bottom:1029.030000px;}
.yf_c00287{bottom:1040.250000px;}
.y10_c00287{bottom:1054.080000px;}
.ye_c00287{bottom:1061.850000px;}
.yb_c00287{bottom:1087.770000px;}
.yc_c00287{bottom:1088.640000px;}
.yd_c00287{bottom:1094.685000px;}
.ya_c00287{bottom:1103.325000px;}
.y9_c00287{bottom:1118.010000px;}
.y8_c00287{bottom:1132.710000px;}
.y7_c00287{bottom:1155.165000px;}
.y6_c00287{bottom:1162.950000px;}
.y5_c00287{bottom:1182.810000px;}
.y4_c00287{bottom:1195.770000px;}
.y3_c00287{bottom:1214.790000px;}
.y2_c00287{bottom:1232.925000px;}
.y1_c00287{bottom:1257.990000px;}
.he_c00287{height:3.110063px;}
.hb_c00287{height:9.340986px;}
.h3_c00287{height:12.418652px;}
.hf_c00287{height:15.550313px;}
.h2_c00287{height:18.681973px;}
.h4_c00287{height:21.759639px;}
.h5_c00287{height:24.891299px;}
.h9_c00287{height:27.968965px;}
.h15_c00287{height:31.100625px;}
.hc_c00287{height:34.232285px;}
.h17_c00287{height:37.309951px;}
.h14_c00287{height:43.519277px;}
.h7_c00287{height:46.650937px;}
.h12_c00287{height:49.782598px;}
.hd_c00287{height:55.991924px;}
.h6_c00287{height:65.332910px;}
.ha_c00287{height:77.751563px;}
.h11_c00287{height:80.883223px;}
.h8_c00287{height:90.170215px;}
.h10_c00287{height:93.301875px;}
.h13_c00287{height:96.433535px;}
.h19_c00287{height:161.712451px;}
.h18_c00287{height:171.053437px;}
.h16_c00287{height:177.262764px;}
.h0_c00287{height:1509.405000px;}
.h1_c00287{height:1509.750000px;}
.w0_c00287{width:1102.470000px;}
.w1_c00287{width:1102.500000px;}
.x0_c00287{left:0.000000px;}
.x1_c00287{left:1.725000px;}
.x2_c00287{left:6.045000px;}
.x5_c00287{left:12.090000px;}
.x8_c00287{left:34.560000px;}
.x9_c00287{left:103.680000px;}
.x6_c00287{left:111.450000px;}
.xa_c00287{left:117.510000px;}
.x7_c00287{left:120.960000px;}
.x3_c00287{left:129.600000px;}
.x4_c00287{left:135.645000px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws0_c00287{word-spacing:0.000000pt;}
.fsc_c00287{font-size:3.072000pt;}
.fs9_c00287{font-size:9.226667pt;}
.fs1_c00287{font-size:12.266667pt;}
.fsd_c00287{font-size:15.360000pt;}
.fs0_c00287{font-size:18.453333pt;}
.fs2_c00287{font-size:21.493333pt;}
.fs3_c00287{font-size:24.586667pt;}
.fs7_c00287{font-size:27.626667pt;}
.fs13_c00287{font-size:30.720000pt;}
.fsa_c00287{font-size:33.813333pt;}
.fs15_c00287{font-size:36.853333pt;}
.fs12_c00287{font-size:42.986667pt;}
.fs5_c00287{font-size:46.080000pt;}
.fs10_c00287{font-size:49.173333pt;}
.fsb_c00287{font-size:55.306667pt;}
.fs4_c00287{font-size:64.533333pt;}
.fs8_c00287{font-size:76.800000pt;}
.fsf_c00287{font-size:79.893333pt;}
.fs6_c00287{font-size:89.066667pt;}
.fse_c00287{font-size:92.160000pt;}
.fs11_c00287{font-size:95.253333pt;}
.fs17_c00287{font-size:159.733333pt;}
.fs16_c00287{font-size:168.960000pt;}
.fs14_c00287{font-size:175.093333pt;}
.y0_c00287{bottom:0.000000pt;}
.y21_c00287{bottom:585.213333pt;}
.y22_c00287{bottom:586.746667pt;}
.y23_c00287{bottom:599.813333pt;}
.y20_c00287{bottom:615.933333pt;}
.y1f_c00287{bottom:630.533333pt;}
.y1d_c00287{bottom:638.973333pt;}
.y1e_c00287{bottom:645.893333pt;}
.y1c_c00287{bottom:668.933333pt;}
.y1a_c00287{bottom:693.506667pt;}
.y1b_c00287{bottom:698.880000pt;}
.y19_c00287{bottom:748.800000pt;}
.y18_c00287{bottom:755.706667pt;}
.y17_c00287{bottom:767.226667pt;}
.y16_c00287{bottom:777.986667pt;}
.y15_c00287{bottom:888.573333pt;}
.y14_c00287{bottom:900.093333pt;}
.y13_c00287{bottom:904.706667pt;}
.y11_c00287{bottom:913.920000pt;}
.y12_c00287{bottom:914.693333pt;}
.yf_c00287{bottom:924.666667pt;}
.y10_c00287{bottom:936.960000pt;}
.ye_c00287{bottom:943.866667pt;}
.yb_c00287{bottom:966.906667pt;}
.yc_c00287{bottom:967.680000pt;}
.yd_c00287{bottom:973.053333pt;}
.ya_c00287{bottom:980.733333pt;}
.y9_c00287{bottom:993.786667pt;}
.y8_c00287{bottom:1006.853333pt;}
.y7_c00287{bottom:1026.813333pt;}
.y6_c00287{bottom:1033.733333pt;}
.y5_c00287{bottom:1051.386667pt;}
.y4_c00287{bottom:1062.906667pt;}
.y3_c00287{bottom:1079.813333pt;}
.y2_c00287{bottom:1095.933333pt;}
.y1_c00287{bottom:1118.213333pt;}
.he_c00287{height:2.764500pt;}
.hb_c00287{height:8.303099pt;}
.h3_c00287{height:11.038802pt;}
.hf_c00287{height:13.822500pt;}
.h2_c00287{height:16.606198pt;}
.h4_c00287{height:19.341901pt;}
.h5_c00287{height:22.125599pt;}
.h9_c00287{height:24.861302pt;}
.h15_c00287{height:27.645000pt;}
.hc_c00287{height:30.428698pt;}
.h17_c00287{height:33.164401pt;}
.h14_c00287{height:38.683802pt;}
.h7_c00287{height:41.467500pt;}
.h12_c00287{height:44.251198pt;}
.hd_c00287{height:49.770599pt;}
.h6_c00287{height:58.073698pt;}
.ha_c00287{height:69.112500pt;}
.h11_c00287{height:71.896198pt;}
.h8_c00287{height:80.151302pt;}
.h10_c00287{height:82.935000pt;}
.h13_c00287{height:85.718698pt;}
.h19_c00287{height:143.744401pt;}
.h18_c00287{height:152.047500pt;}
.h16_c00287{height:157.566901pt;}
.h0_c00287{height:1341.693333pt;}
.h1_c00287{height:1342.000000pt;}
.w0_c00287{width:979.973333pt;}
.w1_c00287{width:980.000000pt;}
.x0_c00287{left:0.000000pt;}
.x1_c00287{left:1.533333pt;}
.x2_c00287{left:5.373333pt;}
.x5_c00287{left:10.746667pt;}
.x8_c00287{left:30.720000pt;}
.x9_c00287{left:92.160000pt;}
.x6_c00287{left:99.066667pt;}
.xa_c00287{left:104.453333pt;}
.x7_c00287{left:107.520000pt;}
.x3_c00287{left:115.200000pt;}
.x4_c00287{left:120.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_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_c7e5db6974973f7b6d3c697b.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.109863;font-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_c00288{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);}
.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;}
.fs0_c00288{font-size:600.000000px;}
.y0_c00288{bottom:0.000000px;}
.y1_c00288{bottom:15.000000px;}
.h2_c00288{height:539.941406px;}
.h0_c00288{height:1515.450000px;}
.h1_c00288{height:1515.750000px;}
.w1_c00288{width:1104.000000px;}
.w0_c00288{width:1104.195000px;}
.x0_c00288{left:0.000000px;}
.x1_c00288{left:15.000000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ws0_c00288{word-spacing:0.000000pt;}
.fs0_c00288{font-size:533.333333pt;}
.y0_c00288{bottom:0.000000pt;}
.y1_c00288{bottom:13.333333pt;}
.h2_c00288{height:479.947917pt;}
.h0_c00288{height:1347.066667pt;}
.h1_c00288{height:1347.333333pt;}
.w1_c00288{width:981.333333pt;}
.w0_c00288{width:981.506667pt;}
.x0_c00288{left:0.000000pt;}
.x1_c00288{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_777bca57e2c22f892a4f06fe.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.109863;font-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_c00289{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c00289{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00289{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);}
.m6_c00289{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c00289{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);}
.m2_c00289{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7_c00289{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5_c00289{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,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;}
.fs2_c00289{font-size:3.456000px;}
.fs4_c00289{font-size:6.900000px;}
.fs0_c00289{font-size:13.800000px;}
.fs3_c00289{font-size:17.280000px;}
.fs5_c00289{font-size:58.740000px;}
.fs1_c00289{font-size:62.220000px;}
.fs6_c00289{font-size:69.120000px;}
.y0_c00289{bottom:0.000000px;}
.y5_c00289{bottom:1397.085000px;}
.y6_c00289{bottom:1397.955000px;}
.y7_c00289{bottom:1399.680000px;}
.y4_c00289{bottom:1408.320000px;}
.y3_c00289{bottom:1416.960000px;}
.y2_c00289{bottom:1427.325000px;}
.y1_c00289{bottom:1443.750000px;}
.h4_c00289{height:3.110063px;}
.h6_c00289{height:6.209326px;}
.h2_c00289{height:12.418652px;}
.h5_c00289{height:15.550313px;}
.h7_c00289{height:52.860264px;}
.h3_c00289{height:55.991924px;}
.h8_c00289{height:62.201250px;}
.h0_c00289{height:1509.405000px;}
.h1_c00289{height:1509.750000px;}
.w0_c00289{width:1102.470000px;}
.w1_c00289{width:1102.500000px;}
.x0_c00289{left:0.000000px;}
.x2_c00289{left:330.045000px;}
.x1_c00289{left:335.235000px;}
.x5_c00289{left:420.765000px;}
.x6_c00289{left:429.405000px;}
.x3_c00289{left:477.795000px;}
.x4_c00289{left:501.120000px;}
.x7_c00289{left:507.165000px;}
.x8_c00289{left:561.600000px;}
.x9_c00289{left:602.205000px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws0_c00289{word-spacing:0.000000pt;}
.fs2_c00289{font-size:3.072000pt;}
.fs4_c00289{font-size:6.133333pt;}
.fs0_c00289{font-size:12.266667pt;}
.fs3_c00289{font-size:15.360000pt;}
.fs5_c00289{font-size:52.213333pt;}
.fs1_c00289{font-size:55.306667pt;}
.fs6_c00289{font-size:61.440000pt;}
.y0_c00289{bottom:0.000000pt;}
.y5_c00289{bottom:1241.853333pt;}
.y6_c00289{bottom:1242.626667pt;}
.y7_c00289{bottom:1244.160000pt;}
.y4_c00289{bottom:1251.840000pt;}
.y3_c00289{bottom:1259.520000pt;}
.y2_c00289{bottom:1268.733333pt;}
.y1_c00289{bottom:1283.333333pt;}
.h4_c00289{height:2.764500pt;}
.h6_c00289{height:5.519401pt;}
.h2_c00289{height:11.038802pt;}
.h5_c00289{height:13.822500pt;}
.h7_c00289{height:46.986901pt;}
.h3_c00289{height:49.770599pt;}
.h8_c00289{height:55.290000pt;}
.h0_c00289{height:1341.693333pt;}
.h1_c00289{height:1342.000000pt;}
.w0_c00289{width:979.973333pt;}
.w1_c00289{width:980.000000pt;}
.x0_c00289{left:0.000000pt;}
.x2_c00289{left:293.373333pt;}
.x1_c00289{left:297.986667pt;}
.x5_c00289{left:374.013333pt;}
.x6_c00289{left:381.693333pt;}
.x3_c00289{left:424.706667pt;}
.x4_c00289{left:445.440000pt;}
.x7_c00289{left:450.813333pt;}
.x8_c00289{left:499.200000pt;}
.x9_c00289{left:535.293333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_47f26650bc5c40571f329fa9.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.109863;font-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_c00290{transform:matrix(0.106275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106275,0.000000,0.000000,0.250000,0,0);}
.m0_c00290{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1_c00290{transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.955000,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;}
.fs0_c00290{font-size:20.760000px;}
.fs1_c00290{font-size:114.060000px;}
.y0_c00290{bottom:0.000000px;}
.y2_c00290{bottom:954.720000px;}
.y3_c00290{bottom:1188.870000px;}
.y1_c00290{bottom:1364.250000px;}
.h2_c00290{height:18.681973px;}
.h3_c00290{height:102.642861px;}
.h0_c00290{height:1515.450000px;}
.h1_c00290{height:1515.750000px;}
.w1_c00290{width:1104.000000px;}
.w0_c00290{width:1104.195000px;}
.x0_c00290{left:0.000000px;}
.x3_c00290{left:996.195000px;}
.x2_c00290{left:1060.125000px;}
.x1_c00290{left:1080.870000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws0_c00290{word-spacing:0.000000pt;}
.fs0_c00290{font-size:18.453333pt;}
.fs1_c00290{font-size:101.386667pt;}
.y0_c00290{bottom:0.000000pt;}
.y2_c00290{bottom:848.640000pt;}
.y3_c00290{bottom:1056.773333pt;}
.y1_c00290{bottom:1212.666667pt;}
.h2_c00290{height:16.606198pt;}
.h3_c00290{height:91.238099pt;}
.h0_c00290{height:1347.066667pt;}
.h1_c00290{height:1347.333333pt;}
.w1_c00290{width:981.333333pt;}
.w0_c00290{width:981.506667pt;}
.x0_c00290{left:0.000000pt;}
.x3_c00290{left:885.506667pt;}
.x2_c00290{left:942.333333pt;}
.x1_c00290{left:960.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_616cb1fbb33d3a28c9568803.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.109863;font-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_c00291{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);}
.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;}
.fc0_c00291{color:transparent;}
.fs0_c00291{font-size:600.000000px;}
.y0_c00291{bottom:0.000000px;}
.y1_c00291{bottom:15.000000px;}
.h2_c00291{height:539.941406px;}
.h0_c00291{height:1509.405000px;}
.h1_c00291{height:1509.750000px;}
.w0_c00291{width:1102.470000px;}
.w1_c00291{width:1102.500000px;}
.x0_c00291{left:0.000000px;}
.x1_c00291{left:15.000000px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ws0_c00291{word-spacing:0.000000pt;}
.fs0_c00291{font-size:533.333333pt;}
.y0_c00291{bottom:0.000000pt;}
.y1_c00291{bottom:13.333333pt;}
.h2_c00291{height:479.947917pt;}
.h0_c00291{height:1341.693333pt;}
.h1_c00291{height:1342.000000pt;}
.w0_c00291{width:979.973333pt;}
.w1_c00291{width:980.000000pt;}
.x0_c00291{left:0.000000pt;}
.x1_c00291{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c9df4f28a26f36d4155337a.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.109863;font-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_c00292{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);}
.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;}
.fs0_c00292{font-size:600.000000px;}
.y0_c00292{bottom:0.000000px;}
.y1_c00292{bottom:15.000000px;}
.h2_c00292{height:539.941406px;}
.h0_c00292{height:1515.450000px;}
.h1_c00292{height:1515.750000px;}
.w1_c00292{width:1104.000000px;}
.w0_c00292{width:1104.195000px;}
.x0_c00292{left:0.000000px;}
.x1_c00292{left:15.000000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls0_c00292{letter-spacing:0.000000pt;}
.ws0_c00292{word-spacing:0.000000pt;}
.fs0_c00292{font-size:533.333333pt;}
.y0_c00292{bottom:0.000000pt;}
.y1_c00292{bottom:13.333333pt;}
.h2_c00292{height:479.947917pt;}
.h0_c00292{height:1347.066667pt;}
.h1_c00292{height:1347.333333pt;}
.w1_c00292{width:981.333333pt;}
.w0_c00292{width:981.506667pt;}
.x0_c00292{left:0.000000pt;}
.x1_c00292{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_472ad70fde20479683ff3e46.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.109863;font-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_c00293{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);}
.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;}
.fc0_c00293{color:transparent;}
.fs0_c00293{font-size:600.000000px;}
.y0_c00293{bottom:0.000000px;}
.y1_c00293{bottom:15.000000px;}
.h2_c00293{height:539.941406px;}
.h0_c00293{height:1509.405000px;}
.h1_c00293{height:1509.750000px;}
.w0_c00293{width:1102.470000px;}
.w1_c00293{width:1102.500000px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:15.000000px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws0_c00293{word-spacing:0.000000pt;}
.fs0_c00293{font-size:533.333333pt;}
.y0_c00293{bottom:0.000000pt;}
.y1_c00293{bottom:13.333333pt;}
.h2_c00293{height:479.947917pt;}
.h0_c00293{height:1341.693333pt;}
.h1_c00293{height:1342.000000pt;}
.w0_c00293{width:979.973333pt;}
.w1_c00293{width:980.000000pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a47c24f832d1f169284aef7.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.109863;font-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_c00294{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);}
.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;}
.fc0_c00294{color:transparent;}
.fs0_c00294{font-size:600.000000px;}
.y0_c00294{bottom:0.000000px;}
.y1_c00294{bottom:15.000000px;}
.h2_c00294{height:539.941406px;}
.h1_c00294{height:1518.750000px;}
.h0_c00294{height:1518.915000px;}
.w1_c00294{width:1104.000000px;}
.w0_c00294{width:1104.195000px;}
.x0_c00294{left:0.000000px;}
.x1_c00294{left:15.000000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls0_c00294{letter-spacing:0.000000pt;}
.ws0_c00294{word-spacing:0.000000pt;}
.fs0_c00294{font-size:533.333333pt;}
.y0_c00294{bottom:0.000000pt;}
.y1_c00294{bottom:13.333333pt;}
.h2_c00294{height:479.947917pt;}
.h1_c00294{height:1350.000000pt;}
.h0_c00294{height:1350.146667pt;}
.w1_c00294{width:981.333333pt;}
.w0_c00294{width:981.506667pt;}
.x0_c00294{left:0.000000pt;}
.x1_c00294{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_371c8d788343bec643542b58.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.109863;font-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_c00295{transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);}
.m5_c00295{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.m12_c00295{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c00295{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m4_c00295{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);}
.m10_c00295{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);}
.m6_c00295{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);}
.mc_c00295{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);}
.mf_c00295{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.m1_c00295{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_c00295{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);}
.mb_c00295{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);}
.me_c00295{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00295{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);}
.m8_c00295{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m15_c00295{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3_c00295{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c00295{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c00295{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m18_c00295{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m2_c00295{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m9_c00295{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m14_c00295{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);}
.m17_c00295{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m13_c00295{transform:matrix(6.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.192500,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;}
.fc0_c00295{color:transparent;}
.fs7_c00295{font-size:3.456000px;}
.fs8_c00295{font-size:6.900000px;}
.fs10_c00295{font-size:10.380000px;}
.fs12_c00295{font-size:13.800000px;}
.fs0_c00295{font-size:17.280000px;}
.fs1_c00295{font-size:20.760000px;}
.fs2_c00295{font-size:31.080000px;}
.fs11_c00295{font-size:44.940000px;}
.fs13_c00295{font-size:58.740000px;}
.fsd_c00295{font-size:76.020000px;}
.fs9_c00295{font-size:79.500000px;}
.fs3_c00295{font-size:82.920000px;}
.fs6_c00295{font-size:86.400000px;}
.fsa_c00295{font-size:89.880000px;}
.fse_c00295{font-size:93.300000px;}
.fsc_c00295{font-size:100.200000px;}
.fs5_c00295{font-size:103.680000px;}
.fsb_c00295{font-size:107.160000px;}
.fs4_c00295{font-size:110.580000px;}
.fsf_c00295{font-size:134.760000px;}
.y0_c00295{bottom:0.000000px;}
.y18_c00295{bottom:1089.510000px;}
.y15_c00295{bottom:1138.755000px;}
.y14_c00295{bottom:1139.610000px;}
.y16_c00295{bottom:1146.525000px;}
.y17_c00295{bottom:1149.990000px;}
.y13_c00295{bottom:1156.035000px;}
.y12_c00295{bottom:1159.485000px;}
.yf_c00295{bottom:1162.950000px;}
.y11_c00295{bottom:1164.675000px;}
.y10_c00295{bottom:1165.530000px;}
.yd_c00295{bottom:1167.270000px;}
.ye_c00295{bottom:1171.590000px;}
.yc_c00295{bottom:1194.045000px;}
.yb_c00295{bottom:1196.640000px;}
.ya_c00295{bottom:1205.280000px;}
.y9_c00295{bottom:1213.050000px;}
.y8_c00295{bottom:1229.475000px;}
.y6_c00295{bottom:1230.330000px;}
.y5_c00295{bottom:1232.925000px;}
.y7_c00295{bottom:1235.520000px;}
.y4_c00295{bottom:1237.245000px;}
.y3_c00295{bottom:1245.030000px;}
.y2_c00295{bottom:1384.995000px;}
.y1_c00295{bottom:1395.360000px;}
.h8_c00295{height:3.110063px;}
.h9_c00295{height:6.209326px;}
.h11_c00295{height:9.340986px;}
.h13_c00295{height:12.418652px;}
.h1_c00295{height:15.550313px;}
.h2_c00295{height:18.681973px;}
.h3_c00295{height:27.968965px;}
.h12_c00295{height:40.441611px;}
.h14_c00295{height:52.860264px;}
.he_c00295{height:68.410576px;}
.ha_c00295{height:71.542236px;}
.h4_c00295{height:74.619902px;}
.h7_c00295{height:77.751563px;}
.hb_c00295{height:80.883223px;}
.hf_c00295{height:83.960889px;}
.hd_c00295{height:90.170215px;}
.h6_c00295{height:93.301875px;}
.hc_c00295{height:96.433535px;}
.h5_c00295{height:99.511201px;}
.h10_c00295{height:121.270840px;}
.h0_c00295{height:1512.000000px;}
.w0_c00295{width:1111.965000px;}
.w1_c00295{width:1112.250000px;}
.x0_c00295{left:0.000000px;}
.x1_c00295{left:171.930000px;}
.x18_c00295{left:324.000000px;}
.xa_c00295{left:606.525000px;}
.x2_c00295{left:616.890000px;}
.x3_c00295{left:623.805000px;}
.x7_c00295{left:647.130000px;}
.xd_c00295{left:669.600000px;}
.x4_c00295{left:689.475000px;}
.xe_c00295{left:695.520000px;}
.xb_c00295{left:709.350000px;}
.xf_c00295{left:758.595000px;}
.x5_c00295{left:776.730000px;}
.xc_c00295{left:778.470000px;}
.x14_c00295{left:806.970000px;}
.x6_c00295{left:810.435000px;}
.x8_c00295{left:815.610000px;}
.x11_c00295{left:828.570000px;}
.x10_c00295{left:831.165000px;}
.x12_c00295{left:833.760000px;}
.x15_c00295{left:851.040000px;}
.x9_c00295{left:864.000000px;}
.x16_c00295{left:868.320000px;}
.x13_c00295{left:871.770000px;}
.x17_c00295{left:890.790000px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws0_c00295{word-spacing:0.000000pt;}
.fs7_c00295{font-size:3.072000pt;}
.fs8_c00295{font-size:6.133333pt;}
.fs10_c00295{font-size:9.226667pt;}
.fs12_c00295{font-size:12.266667pt;}
.fs0_c00295{font-size:15.360000pt;}
.fs1_c00295{font-size:18.453333pt;}
.fs2_c00295{font-size:27.626667pt;}
.fs11_c00295{font-size:39.946667pt;}
.fs13_c00295{font-size:52.213333pt;}
.fsd_c00295{font-size:67.573333pt;}
.fs9_c00295{font-size:70.666667pt;}
.fs3_c00295{font-size:73.706667pt;}
.fs6_c00295{font-size:76.800000pt;}
.fsa_c00295{font-size:79.893333pt;}
.fse_c00295{font-size:82.933333pt;}
.fsc_c00295{font-size:89.066667pt;}
.fs5_c00295{font-size:92.160000pt;}
.fsb_c00295{font-size:95.253333pt;}
.fs4_c00295{font-size:98.293333pt;}
.fsf_c00295{font-size:119.786667pt;}
.y0_c00295{bottom:0.000000pt;}
.y18_c00295{bottom:968.453333pt;}
.y15_c00295{bottom:1012.226667pt;}
.y14_c00295{bottom:1012.986667pt;}
.y16_c00295{bottom:1019.133333pt;}
.y17_c00295{bottom:1022.213333pt;}
.y13_c00295{bottom:1027.586667pt;}
.y12_c00295{bottom:1030.653333pt;}
.yf_c00295{bottom:1033.733333pt;}
.y11_c00295{bottom:1035.266667pt;}
.y10_c00295{bottom:1036.026667pt;}
.yd_c00295{bottom:1037.573333pt;}
.ye_c00295{bottom:1041.413333pt;}
.yc_c00295{bottom:1061.373333pt;}
.yb_c00295{bottom:1063.680000pt;}
.ya_c00295{bottom:1071.360000pt;}
.y9_c00295{bottom:1078.266667pt;}
.y8_c00295{bottom:1092.866667pt;}
.y6_c00295{bottom:1093.626667pt;}
.y5_c00295{bottom:1095.933333pt;}
.y7_c00295{bottom:1098.240000pt;}
.y4_c00295{bottom:1099.773333pt;}
.y3_c00295{bottom:1106.693333pt;}
.y2_c00295{bottom:1231.106667pt;}
.y1_c00295{bottom:1240.320000pt;}
.h8_c00295{height:2.764500pt;}
.h9_c00295{height:5.519401pt;}
.h11_c00295{height:8.303099pt;}
.h13_c00295{height:11.038802pt;}
.h1_c00295{height:13.822500pt;}
.h2_c00295{height:16.606198pt;}
.h3_c00295{height:24.861302pt;}
.h12_c00295{height:35.948099pt;}
.h14_c00295{height:46.986901pt;}
.he_c00295{height:60.809401pt;}
.ha_c00295{height:63.593099pt;}
.h4_c00295{height:66.328802pt;}
.h7_c00295{height:69.112500pt;}
.hb_c00295{height:71.896198pt;}
.hf_c00295{height:74.631901pt;}
.hd_c00295{height:80.151302pt;}
.h6_c00295{height:82.935000pt;}
.hc_c00295{height:85.718698pt;}
.h5_c00295{height:88.454401pt;}
.h10_c00295{height:107.796302pt;}
.h0_c00295{height:1344.000000pt;}
.w0_c00295{width:988.413333pt;}
.w1_c00295{width:988.666667pt;}
.x0_c00295{left:0.000000pt;}
.x1_c00295{left:152.826667pt;}
.x18_c00295{left:288.000000pt;}
.xa_c00295{left:539.133333pt;}
.x2_c00295{left:548.346667pt;}
.x3_c00295{left:554.493333pt;}
.x7_c00295{left:575.226667pt;}
.xd_c00295{left:595.200000pt;}
.x4_c00295{left:612.866667pt;}
.xe_c00295{left:618.240000pt;}
.xb_c00295{left:630.533333pt;}
.xf_c00295{left:674.306667pt;}
.x5_c00295{left:690.426667pt;}
.xc_c00295{left:691.973333pt;}
.x14_c00295{left:717.306667pt;}
.x6_c00295{left:720.386667pt;}
.x8_c00295{left:724.986667pt;}
.x11_c00295{left:736.506667pt;}
.x10_c00295{left:738.813333pt;}
.x12_c00295{left:741.120000pt;}
.x15_c00295{left:756.480000pt;}
.x9_c00295{left:768.000000pt;}
.x16_c00295{left:771.840000pt;}
.x13_c00295{left:774.906667pt;}
.x17_c00295{left:791.813333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c9eb7cabca82d0bf9b61e12.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.109863;font-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_c00296{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m0_c00296{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,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;}
.fs0_c00296{font-size:69.120000px;}
.fs1_c00296{font-size:103.680000px;}
.y0_c00296{bottom:0.000000px;}
.y1_c00296{bottom:1391.910000px;}
.y2_c00296{bottom:1393.635000px;}
.h2_c00296{height:62.201250px;}
.h3_c00296{height:93.301875px;}
.h1_c00296{height:1518.750000px;}
.h0_c00296{height:1518.915000px;}
.w1_c00296{width:1104.000000px;}
.w0_c00296{width:1104.195000px;}
.x0_c00296{left:0.000000px;}
.x1_c00296{left:443.235000px;}
.x2_c00296{left:567.645000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws0_c00296{word-spacing:0.000000pt;}
.fs0_c00296{font-size:61.440000pt;}
.fs1_c00296{font-size:92.160000pt;}
.y0_c00296{bottom:0.000000pt;}
.y1_c00296{bottom:1237.253333pt;}
.y2_c00296{bottom:1238.786667pt;}
.h2_c00296{height:55.290000pt;}
.h3_c00296{height:82.935000pt;}
.h1_c00296{height:1350.000000pt;}
.h0_c00296{height:1350.146667pt;}
.w1_c00296{width:981.333333pt;}
.w0_c00296{width:981.506667pt;}
.x0_c00296{left:0.000000pt;}
.x1_c00296{left:393.986667pt;}
.x2_c00296{left:504.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_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_7cf1ca144ca2999de48dd5a9.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.109863;font-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_c00297{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.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;}
.fs0_c00297{font-size:44.940000px;}
.y0_c00297{bottom:0.000000px;}
.y1_c00297{bottom:768.960000px;}
.h1_c00297{height:40.441611px;}
.h0_c00297{height:1512.000000px;}
.w0_c00297{width:1111.965000px;}
.w1_c00297{width:1112.250000px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:2.595000px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls0_c00297{letter-spacing:0.000000pt;}
.ws0_c00297{word-spacing:0.000000pt;}
.fs0_c00297{font-size:39.946667pt;}
.y0_c00297{bottom:0.000000pt;}
.y1_c00297{bottom:683.520000pt;}
.h1_c00297{height:35.948099pt;}
.h0_c00297{height:1344.000000pt;}
.w0_c00297{width:988.413333pt;}
.w1_c00297{width:988.666667pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:2.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5e3812d3487ec24ed43a7f8.woff2')format("woff");}.ff1_c00298{font-family:ff1_c00298;line-height:1.109863;font-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_c00298{transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);}
.m2_c00298{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c00298{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00298{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m4_c00298{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);}
.m0_c00298{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m5_c00298{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,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;}
.fs4_c00298{font-size:6.900000px;}
.fs1_c00298{font-size:10.380000px;}
.fs2_c00298{font-size:13.800000px;}
.fs0_c00298{font-size:17.280000px;}
.fs3_c00298{font-size:24.180000px;}
.fs5_c00298{font-size:241.920000px;}
.y0_c00298{bottom:0.000000px;}
.y9_c00298{bottom:447.555000px;}
.y5_c00298{bottom:470.010000px;}
.y1_c00298{bottom:711.075000px;}
.y3_c00298{bottom:713.670000px;}
.y2_c00298{bottom:715.395000px;}
.y4_c00298{bottom:716.250000px;}
.y8_c00298{bottom:996.195000px;}
.y6_c00298{bottom:1194.915000px;}
.y7_c00298{bottom:1197.510000px;}
.h6_c00298{height:6.209326px;}
.h3_c00298{height:9.340986px;}
.h4_c00298{height:12.418652px;}
.h2_c00298{height:15.550313px;}
.h5_c00298{height:21.759639px;}
.h7_c00298{height:217.704375px;}
.h1_c00298{height:1518.750000px;}
.h0_c00298{height:1518.915000px;}
.w1_c00298{width:1104.000000px;}
.w0_c00298{width:1104.195000px;}
.x0_c00298{left:0.000000px;}
.x1_c00298{left:924.480000px;}
.x2_c00298{left:945.210000px;}
.x3_c00298{left:960.765000px;}
.x5_c00298{left:972.000000px;}
.x4_c00298{left:978.915000px;}
.x9_c00298{left:999.645000px;}
.x8_c00298{left:1057.530000px;}
.x6_c00298{left:1064.445000px;}
.x7_c00298{left:1071.360000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws0_c00298{word-spacing:0.000000pt;}
.fs4_c00298{font-size:6.133333pt;}
.fs1_c00298{font-size:9.226667pt;}
.fs2_c00298{font-size:12.266667pt;}
.fs0_c00298{font-size:15.360000pt;}
.fs3_c00298{font-size:21.493333pt;}
.fs5_c00298{font-size:215.040000pt;}
.y0_c00298{bottom:0.000000pt;}
.y9_c00298{bottom:397.826667pt;}
.y5_c00298{bottom:417.786667pt;}
.y1_c00298{bottom:632.066667pt;}
.y3_c00298{bottom:634.373333pt;}
.y2_c00298{bottom:635.906667pt;}
.y4_c00298{bottom:636.666667pt;}
.y8_c00298{bottom:885.506667pt;}
.y6_c00298{bottom:1062.146667pt;}
.y7_c00298{bottom:1064.453333pt;}
.h6_c00298{height:5.519401pt;}
.h3_c00298{height:8.303099pt;}
.h4_c00298{height:11.038802pt;}
.h2_c00298{height:13.822500pt;}
.h5_c00298{height:19.341901pt;}
.h7_c00298{height:193.515000pt;}
.h1_c00298{height:1350.000000pt;}
.h0_c00298{height:1350.146667pt;}
.w1_c00298{width:981.333333pt;}
.w0_c00298{width:981.506667pt;}
.x0_c00298{left:0.000000pt;}
.x1_c00298{left:821.760000pt;}
.x2_c00298{left:840.186667pt;}
.x3_c00298{left:854.013333pt;}
.x5_c00298{left:864.000000pt;}
.x4_c00298{left:870.146667pt;}
.x9_c00298{left:888.573333pt;}
.x8_c00298{left:940.026667pt;}
.x6_c00298{left:946.173333pt;}
.x7_c00298{left:952.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_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_cf99096d41ec053e53b57aa7.woff2')format("woff");}.ff1_c00299{font-family:ff1_c00299;line-height:1.109863;font-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_c00299{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);}
.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;}
.fs0_c00299{font-size:600.000000px;}
.y0_c00299{bottom:0.000000px;}
.y1_c00299{bottom:15.000000px;}
.h1_c00299{height:539.941406px;}
.h0_c00299{height:1512.000000px;}
.w0_c00299{width:1111.965000px;}
.w1_c00299{width:1112.250000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:15.000000px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws0_c00299{word-spacing:0.000000pt;}
.fs0_c00299{font-size:533.333333pt;}
.y0_c00299{bottom:0.000000pt;}
.y1_c00299{bottom:13.333333pt;}
.h1_c00299{height:479.947917pt;}
.h0_c00299{height:1344.000000pt;}
.w0_c00299{width:988.413333pt;}
.w1_c00299{width:988.666667pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_11fd53b922a66b3dfa75a138.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.109863;font-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_c00300{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);}
.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;}
.fs0_c00300{font-size:600.000000px;}
.y0_c00300{bottom:0.000000px;}
.y1_c00300{bottom:15.000000px;}
.h2_c00300{height:539.941406px;}
.h1_c00300{height:1518.750000px;}
.h0_c00300{height:1518.915000px;}
.w1_c00300{width:1104.000000px;}
.w0_c00300{width:1104.195000px;}
.x0_c00300{left:0.000000px;}
.x1_c00300{left:15.000000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws0_c00300{word-spacing:0.000000pt;}
.fs0_c00300{font-size:533.333333pt;}
.y0_c00300{bottom:0.000000pt;}
.y1_c00300{bottom:13.333333pt;}
.h2_c00300{height:479.947917pt;}
.h1_c00300{height:1350.000000pt;}
.h0_c00300{height:1350.146667pt;}
.w1_c00300{width:981.333333pt;}
.w0_c00300{width:981.506667pt;}
.x0_c00300{left:0.000000pt;}
.x1_c00300{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb45c5d37c8b80624a4cb3a0.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.109863;font-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_c00301{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma_c00301{transform:matrix(0.066975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066975,0.000000,0.000000,0.250000,0,0);}
.m1_c00301{transform:matrix(0.071250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071250,0.000000,0.000000,0.250000,0,0);}
.m12_c00301{transform:matrix(0.081325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081325,0.000000,0.000000,0.250000,0,0);}
.m6_c00301{transform:matrix(0.092600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092600,0.000000,0.000000,0.250000,0,0);}
.m1a_c00301{transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106775,0.000000,0.000000,0.250000,0,0);}
.m0_c00301{transform:matrix(0.120250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120250,0.000000,0.000000,0.250000,0,0);}
.m17_c00301{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m15_c00301{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);}
.m16_c00301{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m11_c00301{transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);}
.m7_c00301{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);}
.md_c00301{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m19_c00301{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);}
.m18_c00301{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);}
.mf_c00301{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);}
.m3_c00301{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_c00301{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00301{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);}
.m20_c00301{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c00301{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c00301{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c00301{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);}
.m14_c00301{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00301{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00301{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00301{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m8_c00301{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m5_c00301{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mc_c00301{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m9_c00301{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);}
.m1d_c00301{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.mb_c00301{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,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;}
.fsa_c00301{font-size:3.456000px;}
.fs11_c00301{font-size:6.000000px;}
.fs8_c00301{font-size:6.900000px;}
.fs13_c00301{font-size:10.380000px;}
.fs4_c00301{font-size:13.800000px;}
.fsf_c00301{font-size:17.280000px;}
.fse_c00301{font-size:20.760000px;}
.fsb_c00301{font-size:24.180000px;}
.fs0_c00301{font-size:31.080000px;}
.fsc_c00301{font-size:34.560000px;}
.fs7_c00301{font-size:38.040000px;}
.fs2_c00301{font-size:44.940000px;}
.fs10_c00301{font-size:58.740000px;}
.fs3_c00301{font-size:62.220000px;}
.fs1_c00301{font-size:65.640000px;}
.fs5_c00301{font-size:93.300000px;}
.fs9_c00301{font-size:96.780000px;}
.fs6_c00301{font-size:107.160000px;}
.fsd_c00301{font-size:145.140000px;}
.fs12_c00301{font-size:152.040000px;}
.y0_c00301{bottom:0.000000px;}
.y27_c00301{bottom:203.910000px;}
.y25_c00301{bottom:231.555000px;}
.y26_c00301{bottom:236.730000px;}
.y24_c00301{bottom:241.920000px;}
.y23_c00301{bottom:254.010000px;}
.y22_c00301{bottom:260.925000px;}
.y20_c00301{bottom:266.970000px;}
.y21_c00301{bottom:270.435000px;}
.y1f_c00301{bottom:304.995000px;}
.y1e_c00301{bottom:315.360000px;}
.y1d_c00301{bottom:330.045000px;}
.y1b_c00301{bottom:338.685000px;}
.y1c_c00301{bottom:344.730000px;}
.y19_c00301{bottom:349.050000px;}
.y1a_c00301{bottom:360.285000px;}
.y16_c00301{bottom:381.030000px;}
.y17_c00301{bottom:406.950000px;}
.y18_c00301{bottom:412.995000px;}
.y15_c00301{bottom:418.170000px;}
.y14_c00301{bottom:430.275000px;}
.y13_c00301{bottom:456.195000px;}
.y11_c00301{bottom:481.245000px;}
.y12_c00301{bottom:489.030000px;}
.y10_c00301{bottom:503.715000px;}
.yf_c00301{bottom:505.440000px;}
.ye_c00301{bottom:518.400000px;}
.yd_c00301{bottom:525.315000px;}
.yc_c00301{bottom:534.810000px;}
.yb_c00301{bottom:538.275000px;}
.y9_c00301{bottom:563.325000px;}
.y8_c00301{bottom:564.195000px;}
.ya_c00301{bottom:571.110000px;}
.y7_c00301{bottom:591.840000px;}
.y5_c00301{bottom:615.165000px;}
.y6_c00301{bottom:619.485000px;}
.y4_c00301{bottom:632.445000px;}
.y3_c00301{bottom:658.365000px;}
.y2_c00301{bottom:666.150000px;}
.y1_c00301{bottom:682.560000px;}
.hb_c00301{height:3.110063px;}
.h12_c00301{height:5.399414px;}
.h9_c00301{height:6.209326px;}
.h14_c00301{height:9.340986px;}
.h5_c00301{height:12.418652px;}
.h10_c00301{height:15.550313px;}
.hf_c00301{height:18.681973px;}
.hc_c00301{height:21.759639px;}
.h1_c00301{height:27.968965px;}
.hd_c00301{height:31.100625px;}
.h8_c00301{height:34.232285px;}
.h3_c00301{height:40.441611px;}
.h11_c00301{height:52.860264px;}
.h4_c00301{height:55.991924px;}
.h2_c00301{height:59.069590px;}
.h6_c00301{height:83.960889px;}
.ha_c00301{height:87.092549px;}
.h7_c00301{height:96.433535px;}
.he_c00301{height:130.611826px;}
.h13_c00301{height:136.821152px;}
.h0_c00301{height:1512.000000px;}
.w0_c00301{width:1111.965000px;}
.w1_c00301{width:1112.250000px;}
.x0_c00301{left:0.000000px;}
.x4_c00301{left:1.725000px;}
.x1_c00301{left:3.450000px;}
.xb_c00301{left:7.770000px;}
.xa_c00301{left:15.555000px;}
.x8_c00301{left:19.005000px;}
.x2_c00301{left:21.600000px;}
.x5_c00301{left:23.325000px;}
.x7_c00301{left:25.050000px;}
.x6_c00301{left:39.750000px;}
.x3_c00301{left:42.330000px;}
.xc_c00301{left:47.520000px;}
.x9_c00301{left:64.800000px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ws0_c00301{word-spacing:0.000000pt;}
.fsa_c00301{font-size:3.072000pt;}
.fs11_c00301{font-size:5.333333pt;}
.fs8_c00301{font-size:6.133333pt;}
.fs13_c00301{font-size:9.226667pt;}
.fs4_c00301{font-size:12.266667pt;}
.fsf_c00301{font-size:15.360000pt;}
.fse_c00301{font-size:18.453333pt;}
.fsb_c00301{font-size:21.493333pt;}
.fs0_c00301{font-size:27.626667pt;}
.fsc_c00301{font-size:30.720000pt;}
.fs7_c00301{font-size:33.813333pt;}
.fs2_c00301{font-size:39.946667pt;}
.fs10_c00301{font-size:52.213333pt;}
.fs3_c00301{font-size:55.306667pt;}
.fs1_c00301{font-size:58.346667pt;}
.fs5_c00301{font-size:82.933333pt;}
.fs9_c00301{font-size:86.026667pt;}
.fs6_c00301{font-size:95.253333pt;}
.fsd_c00301{font-size:129.013333pt;}
.fs12_c00301{font-size:135.146667pt;}
.y0_c00301{bottom:0.000000pt;}
.y27_c00301{bottom:181.253333pt;}
.y25_c00301{bottom:205.826667pt;}
.y26_c00301{bottom:210.426667pt;}
.y24_c00301{bottom:215.040000pt;}
.y23_c00301{bottom:225.786667pt;}
.y22_c00301{bottom:231.933333pt;}
.y20_c00301{bottom:237.306667pt;}
.y21_c00301{bottom:240.386667pt;}
.y1f_c00301{bottom:271.106667pt;}
.y1e_c00301{bottom:280.320000pt;}
.y1d_c00301{bottom:293.373333pt;}
.y1b_c00301{bottom:301.053333pt;}
.y1c_c00301{bottom:306.426667pt;}
.y19_c00301{bottom:310.266667pt;}
.y1a_c00301{bottom:320.253333pt;}
.y16_c00301{bottom:338.693333pt;}
.y17_c00301{bottom:361.733333pt;}
.y18_c00301{bottom:367.106667pt;}
.y15_c00301{bottom:371.706667pt;}
.y14_c00301{bottom:382.466667pt;}
.y13_c00301{bottom:405.506667pt;}
.y11_c00301{bottom:427.773333pt;}
.y12_c00301{bottom:434.693333pt;}
.y10_c00301{bottom:447.746667pt;}
.yf_c00301{bottom:449.280000pt;}
.ye_c00301{bottom:460.800000pt;}
.yd_c00301{bottom:466.946667pt;}
.yc_c00301{bottom:475.386667pt;}
.yb_c00301{bottom:478.466667pt;}
.y9_c00301{bottom:500.733333pt;}
.y8_c00301{bottom:501.506667pt;}
.ya_c00301{bottom:507.653333pt;}
.y7_c00301{bottom:526.080000pt;}
.y5_c00301{bottom:546.813333pt;}
.y6_c00301{bottom:550.653333pt;}
.y4_c00301{bottom:562.173333pt;}
.y3_c00301{bottom:585.213333pt;}
.y2_c00301{bottom:592.133333pt;}
.y1_c00301{bottom:606.720000pt;}
.hb_c00301{height:2.764500pt;}
.h12_c00301{height:4.799479pt;}
.h9_c00301{height:5.519401pt;}
.h14_c00301{height:8.303099pt;}
.h5_c00301{height:11.038802pt;}
.h10_c00301{height:13.822500pt;}
.hf_c00301{height:16.606198pt;}
.hc_c00301{height:19.341901pt;}
.h1_c00301{height:24.861302pt;}
.hd_c00301{height:27.645000pt;}
.h8_c00301{height:30.428698pt;}
.h3_c00301{height:35.948099pt;}
.h11_c00301{height:46.986901pt;}
.h4_c00301{height:49.770599pt;}
.h2_c00301{height:52.506302pt;}
.h6_c00301{height:74.631901pt;}
.ha_c00301{height:77.415599pt;}
.h7_c00301{height:85.718698pt;}
.he_c00301{height:116.099401pt;}
.h13_c00301{height:121.618802pt;}
.h0_c00301{height:1344.000000pt;}
.w0_c00301{width:988.413333pt;}
.w1_c00301{width:988.666667pt;}
.x0_c00301{left:0.000000pt;}
.x4_c00301{left:1.533333pt;}
.x1_c00301{left:3.066667pt;}
.xb_c00301{left:6.906667pt;}
.xa_c00301{left:13.826667pt;}
.x8_c00301{left:16.893333pt;}
.x2_c00301{left:19.200000pt;}
.x5_c00301{left:20.733333pt;}
.x7_c00301{left:22.266667pt;}
.x6_c00301{left:35.333333pt;}
.x3_c00301{left:37.626667pt;}
.xc_c00301{left:42.240000pt;}
.x9_c00301{left:57.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_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_87e3e41c9c8a1fc978fa1cc5.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.109863;font-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_c00302{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c00302{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00302{transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);}
.m17_c00302{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.m12_c00302{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.m18_c00302{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.m13_c00302{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m14_c00302{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m1c_c00302{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);}
.m6_c00302{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.mf_c00302{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);}
.m9_c00302{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);}
.m16_c00302{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m1b_c00302{transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);}
.m11_c00302{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m1e_c00302{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c00302{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);}
.m10_c00302{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);}
.md_c00302{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c00302{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c00302{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);}
.m15_c00302{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);}
.m1_c00302{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3_c00302{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00302{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);}
.m5_c00302{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mb_c00302{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4_c00302{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc_c00302{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.ma_c00302{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);}
.m7_c00302{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,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;}
.fc0_c00302{color:transparent;}
.fs4_c00302{font-size:3.456000px;}
.fsb_c00302{font-size:6.000000px;}
.fs5_c00302{font-size:6.900000px;}
.fse_c00302{font-size:10.380000px;}
.fsa_c00302{font-size:13.800000px;}
.fs16_c00302{font-size:17.280000px;}
.fs7_c00302{font-size:51.840000px;}
.fs3_c00302{font-size:55.320000px;}
.fs0_c00302{font-size:58.740000px;}
.fs1_c00302{font-size:62.220000px;}
.fsd_c00302{font-size:69.120000px;}
.fs8_c00302{font-size:72.600000px;}
.fs2_c00302{font-size:76.020000px;}
.fs11_c00302{font-size:79.500000px;}
.fs9_c00302{font-size:82.920000px;}
.fs13_c00302{font-size:86.400000px;}
.fs6_c00302{font-size:103.680000px;}
.fsc_c00302{font-size:107.160000px;}
.fsf_c00302{font-size:110.580000px;}
.fs10_c00302{font-size:114.060000px;}
.fs15_c00302{font-size:120.960000px;}
.fs12_c00302{font-size:131.340000px;}
.fs14_c00302{font-size:141.720000px;}
.y0_c00302{bottom:0.000000px;}
.y1f_c00302{bottom:1125.795000px;}
.y1e_c00302{bottom:1126.650000px;}
.y1d_c00302{bottom:1133.565000px;}
.y22_c00302{bottom:1147.395000px;}
.y20_c00302{bottom:1155.165000px;}
.y1c_c00302{bottom:1156.035000px;}
.y18_c00302{bottom:1156.890000px;}
.y21_c00302{bottom:1157.760000px;}
.y19_c00302{bottom:1159.485000px;}
.y1a_c00302{bottom:1160.355000px;}
.y1b_c00302{bottom:1168.125000px;}
.y17_c00302{bottom:1188.000000px;}
.y15_c00302{bottom:1190.595000px;}
.y16_c00302{bottom:1192.320000px;}
.y14_c00302{bottom:1200.960000px;}
.y13_c00302{bottom:1201.830000px;}
.y10_c00302{bottom:1224.285000px;}
.y12_c00302{bottom:1231.200000px;}
.y11_c00302{bottom:1233.795000px;}
.yf_c00302{bottom:1250.205000px;}
.ye_c00302{bottom:1251.075000px;}
.yd_c00302{bottom:1261.440000px;}
.yb_c00302{bottom:1263.165000px;}
.ya_c00302{bottom:1264.035000px;}
.yc_c00302{bottom:1264.890000px;}
.y3_c00302{bottom:1397.955000px;}
.y2_c00302{bottom:1399.680000px;}
.y1_c00302{bottom:1400.550000px;}
.y4_c00302{bottom:1401.405000px;}
.y5_c00302{bottom:1402.275000px;}
.y9_c00302{bottom:1417.830000px;}
.y8_c00302{bottom:1419.555000px;}
.y6_c00302{bottom:1422.150000px;}
.y7_c00302{bottom:1440.285000px;}
.h6_c00302{height:3.110063px;}
.hd_c00302{height:5.399414px;}
.h7_c00302{height:6.209326px;}
.h10_c00302{height:9.340986px;}
.hc_c00302{height:12.418652px;}
.h18_c00302{height:15.550313px;}
.h9_c00302{height:46.650937px;}
.h5_c00302{height:49.782598px;}
.h2_c00302{height:52.860264px;}
.h3_c00302{height:55.991924px;}
.hf_c00302{height:62.201250px;}
.ha_c00302{height:65.332910px;}
.h4_c00302{height:68.410576px;}
.h13_c00302{height:71.542236px;}
.hb_c00302{height:74.619902px;}
.h15_c00302{height:77.751563px;}
.h8_c00302{height:93.301875px;}
.he_c00302{height:96.433535px;}
.h11_c00302{height:99.511201px;}
.h12_c00302{height:102.642861px;}
.h17_c00302{height:108.852188px;}
.h14_c00302{height:118.193174px;}
.h16_c00302{height:127.534160px;}
.h1_c00302{height:1518.750000px;}
.h0_c00302{height:1518.915000px;}
.w1_c00302{width:1104.000000px;}
.w0_c00302{width:1104.195000px;}
.x0_c00302{left:0.000000px;}
.xc_c00302{left:253.155000px;}
.x11_c00302{left:261.795000px;}
.x12_c00302{left:265.245000px;}
.x16_c00302{left:271.290000px;}
.x17_c00302{left:279.930000px;}
.x1b_c00302{left:281.670000px;}
.x13_c00302{left:285.120000px;}
.x1c_c00302{left:310.170000px;}
.xd_c00302{left:333.510000px;}
.x18_c00302{left:371.520000px;}
.x1d_c00302{left:391.395000px;}
.x1f_c00302{left:406.950000px;}
.x1_c00302{left:412.125000px;}
.x19_c00302{left:419.040000px;}
.x1e_c00302{left:427.680000px;}
.x14_c00302{left:431.130000px;}
.x2_c00302{left:438.045000px;}
.x3_c00302{left:460.515000px;}
.xe_c00302{left:476.925000px;}
.xf_c00302{left:492.480000px;}
.x10_c00302{left:496.800000px;}
.x1a_c00302{left:500.250000px;}
.x4_c00302{left:509.760000px;}
.x15_c00302{left:517.530000px;}
.x5_c00302{left:532.230000px;}
.x9_c00302{left:564.195000px;}
.x6_c00302{left:671.325000px;}
.x7_c00302{left:711.928965px;}
.x8_c00302{left:722.310000px;}
.xa_c00302{left:745.635000px;}
.xb_c00302{left:769.830000px;}
.x20_c00302{left:918.435000px;}
.x22_c00302{left:922.755000px;}
.x21_c00302{left:927.930000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls0_c00302{letter-spacing:0.000000pt;}
.ws0_c00302{word-spacing:0.000000pt;}
.fs4_c00302{font-size:3.072000pt;}
.fsb_c00302{font-size:5.333333pt;}
.fs5_c00302{font-size:6.133333pt;}
.fse_c00302{font-size:9.226667pt;}
.fsa_c00302{font-size:12.266667pt;}
.fs16_c00302{font-size:15.360000pt;}
.fs7_c00302{font-size:46.080000pt;}
.fs3_c00302{font-size:49.173333pt;}
.fs0_c00302{font-size:52.213333pt;}
.fs1_c00302{font-size:55.306667pt;}
.fsd_c00302{font-size:61.440000pt;}
.fs8_c00302{font-size:64.533333pt;}
.fs2_c00302{font-size:67.573333pt;}
.fs11_c00302{font-size:70.666667pt;}
.fs9_c00302{font-size:73.706667pt;}
.fs13_c00302{font-size:76.800000pt;}
.fs6_c00302{font-size:92.160000pt;}
.fsc_c00302{font-size:95.253333pt;}
.fsf_c00302{font-size:98.293333pt;}
.fs10_c00302{font-size:101.386667pt;}
.fs15_c00302{font-size:107.520000pt;}
.fs12_c00302{font-size:116.746667pt;}
.fs14_c00302{font-size:125.973333pt;}
.y0_c00302{bottom:0.000000pt;}
.y1f_c00302{bottom:1000.706667pt;}
.y1e_c00302{bottom:1001.466667pt;}
.y1d_c00302{bottom:1007.613333pt;}
.y22_c00302{bottom:1019.906667pt;}
.y20_c00302{bottom:1026.813333pt;}
.y1c_c00302{bottom:1027.586667pt;}
.y18_c00302{bottom:1028.346667pt;}
.y21_c00302{bottom:1029.120000pt;}
.y19_c00302{bottom:1030.653333pt;}
.y1a_c00302{bottom:1031.426667pt;}
.y1b_c00302{bottom:1038.333333pt;}
.y17_c00302{bottom:1056.000000pt;}
.y15_c00302{bottom:1058.306667pt;}
.y16_c00302{bottom:1059.840000pt;}
.y14_c00302{bottom:1067.520000pt;}
.y13_c00302{bottom:1068.293333pt;}
.y10_c00302{bottom:1088.253333pt;}
.y12_c00302{bottom:1094.400000pt;}
.y11_c00302{bottom:1096.706667pt;}
.yf_c00302{bottom:1111.293333pt;}
.ye_c00302{bottom:1112.066667pt;}
.yd_c00302{bottom:1121.280000pt;}
.yb_c00302{bottom:1122.813333pt;}
.ya_c00302{bottom:1123.586667pt;}
.yc_c00302{bottom:1124.346667pt;}
.y3_c00302{bottom:1242.626667pt;}
.y2_c00302{bottom:1244.160000pt;}
.y1_c00302{bottom:1244.933333pt;}
.y4_c00302{bottom:1245.693333pt;}
.y5_c00302{bottom:1246.466667pt;}
.y9_c00302{bottom:1260.293333pt;}
.y8_c00302{bottom:1261.826667pt;}
.y6_c00302{bottom:1264.133333pt;}
.y7_c00302{bottom:1280.253333pt;}
.h6_c00302{height:2.764500pt;}
.hd_c00302{height:4.799479pt;}
.h7_c00302{height:5.519401pt;}
.h10_c00302{height:8.303099pt;}
.hc_c00302{height:11.038802pt;}
.h18_c00302{height:13.822500pt;}
.h9_c00302{height:41.467500pt;}
.h5_c00302{height:44.251198pt;}
.h2_c00302{height:46.986901pt;}
.h3_c00302{height:49.770599pt;}
.hf_c00302{height:55.290000pt;}
.ha_c00302{height:58.073698pt;}
.h4_c00302{height:60.809401pt;}
.h13_c00302{height:63.593099pt;}
.hb_c00302{height:66.328802pt;}
.h15_c00302{height:69.112500pt;}
.h8_c00302{height:82.935000pt;}
.he_c00302{height:85.718698pt;}
.h11_c00302{height:88.454401pt;}
.h12_c00302{height:91.238099pt;}
.h17_c00302{height:96.757500pt;}
.h14_c00302{height:105.060599pt;}
.h16_c00302{height:113.363698pt;}
.h1_c00302{height:1350.000000pt;}
.h0_c00302{height:1350.146667pt;}
.w1_c00302{width:981.333333pt;}
.w0_c00302{width:981.506667pt;}
.x0_c00302{left:0.000000pt;}
.xc_c00302{left:225.026667pt;}
.x11_c00302{left:232.706667pt;}
.x12_c00302{left:235.773333pt;}
.x16_c00302{left:241.146667pt;}
.x17_c00302{left:248.826667pt;}
.x1b_c00302{left:250.373333pt;}
.x13_c00302{left:253.440000pt;}
.x1c_c00302{left:275.706667pt;}
.xd_c00302{left:296.453333pt;}
.x18_c00302{left:330.240000pt;}
.x1d_c00302{left:347.906667pt;}
.x1f_c00302{left:361.733333pt;}
.x1_c00302{left:366.333333pt;}
.x19_c00302{left:372.480000pt;}
.x1e_c00302{left:380.160000pt;}
.x14_c00302{left:383.226667pt;}
.x2_c00302{left:389.373333pt;}
.x3_c00302{left:409.346667pt;}
.xe_c00302{left:423.933333pt;}
.xf_c00302{left:437.760000pt;}
.x10_c00302{left:441.600000pt;}
.x1a_c00302{left:444.666667pt;}
.x4_c00302{left:453.120000pt;}
.x15_c00302{left:460.026667pt;}
.x5_c00302{left:473.093333pt;}
.x9_c00302{left:501.506667pt;}
.x6_c00302{left:596.733333pt;}
.x7_c00302{left:632.825747pt;}
.x8_c00302{left:642.053333pt;}
.xa_c00302{left:662.786667pt;}
.xb_c00302{left:684.293333pt;}
.x20_c00302{left:816.386667pt;}
.x22_c00302{left:820.226667pt;}
.x21_c00302{left:824.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00303;src:url('chunks/assets/font_76342ed8c2e8a35f78d0e95c.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.109863;font-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_c00303{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c00303{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.ls0_c00303{letter-spacing:0.000000px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00303{word-spacing:0.000000px;}
.fc0_c00303{color:transparent;}
.fs1_c00303{font-size:72.600000px;}
.fs0_c00303{font-size:79.500000px;}
.y0_c00303{bottom:0.000000px;}
.y1_c00303{bottom:1396.230000px;}
.y2_c00303{bottom:1398.810000px;}
.h2_c00303{height:65.332910px;}
.h1_c00303{height:71.542236px;}
.h0_c00303{height:1512.000000px;}
.w0_c00303{width:1111.965000px;}
.w1_c00303{width:1112.250000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:448.410000px;}
.x2_c00303{left:633.315000px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ws0_c00303{word-spacing:0.000000pt;}
.fs1_c00303{font-size:64.533333pt;}
.fs0_c00303{font-size:70.666667pt;}
.y0_c00303{bottom:0.000000pt;}
.y1_c00303{bottom:1241.093333pt;}
.y2_c00303{bottom:1243.386667pt;}
.h2_c00303{height:58.073698pt;}
.h1_c00303{height:63.593099pt;}
.h0_c00303{height:1344.000000pt;}
.w0_c00303{width:988.413333pt;}
.w1_c00303{width:988.666667pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:398.586667pt;}
.x2_c00303{left:562.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_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_c82fa739a0483bc19959b279.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.109863;font-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_c00304{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);}
.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;}
.fs0_c00304{font-size:600.000000px;}
.y0_c00304{bottom:0.000000px;}
.y1_c00304{bottom:15.000000px;}
.h2_c00304{height:539.941406px;}
.h1_c00304{height:1518.750000px;}
.h0_c00304{height:1518.915000px;}
.w1_c00304{width:1104.000000px;}
.w0_c00304{width:1104.195000px;}
.x0_c00304{left:0.000000px;}
.x1_c00304{left:15.000000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls0_c00304{letter-spacing:0.000000pt;}
.ws0_c00304{word-spacing:0.000000pt;}
.fs0_c00304{font-size:533.333333pt;}
.y0_c00304{bottom:0.000000pt;}
.y1_c00304{bottom:13.333333pt;}
.h2_c00304{height:479.947917pt;}
.h1_c00304{height:1350.000000pt;}
.h0_c00304{height:1350.146667pt;}
.w1_c00304{width:981.333333pt;}
.w0_c00304{width:981.506667pt;}
.x0_c00304{left:0.000000pt;}
.x1_c00304{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6ad89edd2281f721acf0be24.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.109863;font-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_c00305{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);}
.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:600.000000px;}
.y0_c00305{bottom:0.000000px;}
.y1_c00305{bottom:15.000000px;}
.h1_c00305{height:539.941406px;}
.h0_c00305{height:1512.000000px;}
.w0_c00305{width:1111.965000px;}
.w1_c00305{width:1112.250000px;}
.x0_c00305{left:0.000000px;}
.x1_c00305{left:15.000000px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls0_c00305{letter-spacing:0.000000pt;}
.ws0_c00305{word-spacing:0.000000pt;}
.fs0_c00305{font-size:533.333333pt;}
.y0_c00305{bottom:0.000000pt;}
.y1_c00305{bottom:13.333333pt;}
.h1_c00305{height:479.947917pt;}
.h0_c00305{height:1344.000000pt;}
.w0_c00305{width:988.413333pt;}
.w1_c00305{width:988.666667pt;}
.x0_c00305{left:0.000000pt;}
.x1_c00305{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63becb49660ab0299213ac01.woff2')format("woff");}.ff1_c00306{font-family:ff1_c00306;line-height:1.109863;font-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_c00306{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);}
.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:600.000000px;}
.y0_c00306{bottom:0.000000px;}
.y1_c00306{bottom:15.000000px;}
.h2_c00306{height:539.941406px;}
.h1_c00306{height:1518.750000px;}
.h0_c00306{height:1518.915000px;}
.w1_c00306{width:1104.000000px;}
.w0_c00306{width:1104.195000px;}
.x0_c00306{left:0.000000px;}
.x1_c00306{left:15.000000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls0_c00306{letter-spacing:0.000000pt;}
.ws0_c00306{word-spacing:0.000000pt;}
.fs0_c00306{font-size:533.333333pt;}
.y0_c00306{bottom:0.000000pt;}
.y1_c00306{bottom:13.333333pt;}
.h2_c00306{height:479.947917pt;}
.h1_c00306{height:1350.000000pt;}
.h0_c00306{height:1350.146667pt;}
.w1_c00306{width:981.333333pt;}
.w0_c00306{width:981.506667pt;}
.x0_c00306{left:0.000000pt;}
.x1_c00306{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00307;src:url('chunks/assets/font_91152aa918f6d04af867615b.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.109863;font-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_c00307{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);}
.v0_c00307{vertical-align:0.000000px;}
.ls0_c00307{letter-spacing:0.000000px;}
.sc__c00307{text-shadow:none;}
.sc0_c00307{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00307{-webkit-text-stroke:0px transparent;}
.sc0_c00307{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00307{word-spacing:0.000000px;}
.fc0_c00307{color:transparent;}
.fs0_c00307{font-size:600.000000px;}
.y0_c00307{bottom:0.000000px;}
.y1_c00307{bottom:15.000000px;}
.h2_c00307{height:539.941406px;}
.h0_c00307{height:1509.405000px;}
.h1_c00307{height:1509.750000px;}
.w0_c00307{width:1111.965000px;}
.w1_c00307{width:1112.250000px;}
.x0_c00307{left:0.000000px;}
.x1_c00307{left:15.000000px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ws0_c00307{word-spacing:0.000000pt;}
.fs0_c00307{font-size:533.333333pt;}
.y0_c00307{bottom:0.000000pt;}
.y1_c00307{bottom:13.333333pt;}
.h2_c00307{height:479.947917pt;}
.h0_c00307{height:1341.693333pt;}
.h1_c00307{height:1342.000000pt;}
.w0_c00307{width:988.413333pt;}
.w1_c00307{width:988.666667pt;}
.x0_c00307{left:0.000000pt;}
.x1_c00307{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dadf7577ede1da376911bded.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.109863;font-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.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);}
.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;}
.fs0_c00308{font-size:600.000000px;}
.y0_c00308{bottom:0.000000px;}
.y1_c00308{bottom:15.000000px;}
.h2_c00308{height:539.941406px;}
.h1_c00308{height:1518.750000px;}
.h0_c00308{height:1518.915000px;}
.w1_c00308{width:1104.000000px;}
.w0_c00308{width:1104.195000px;}
.x0_c00308{left:0.000000px;}
.x1_c00308{left:15.000000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls0_c00308{letter-spacing:0.000000pt;}
.ws0_c00308{word-spacing:0.000000pt;}
.fs0_c00308{font-size:533.333333pt;}
.y0_c00308{bottom:0.000000pt;}
.y1_c00308{bottom:13.333333pt;}
.h2_c00308{height:479.947917pt;}
.h1_c00308{height:1350.000000pt;}
.h0_c00308{height:1350.146667pt;}
.w1_c00308{width:981.333333pt;}
.w0_c00308{width:981.506667pt;}
.x0_c00308{left:0.000000pt;}
.x1_c00308{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e1a91715b37328b10abf1c3.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.109863;font-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_c00309{transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);}
.m30_c00309{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m16_c00309{transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);}
.m1b_c00309{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.m1d_c00309{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.m18_c00309{transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);}
.ma_c00309{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.m28_c00309{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.m2c_c00309{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m27_c00309{transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);}
.m2f_c00309{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);}
.m15_c00309{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);}
.m2a_c00309{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);}
.m26_c00309{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m2e_c00309{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);}
.m14_c00309{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);}
.m25_c00309{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_c00309{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m29_c00309{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00309{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m23_c00309{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3_c00309{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);}
.m8_c00309{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);}
.m7_c00309{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c00309{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);}
.m11_c00309{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00309{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);}
.m9_c00309{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m20_c00309{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00309{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);}
.mf_c00309{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m10_c00309{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.md_c00309{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m24_c00309{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00309{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mc_c00309{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m4_c00309{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00309{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);}
.mb_c00309{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m5_c00309{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);}
.m17_c00309{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);}
.m1_c00309{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00309{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00309{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c00309{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m2_c00309{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m31_c00309{transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.852500,0.000000,0.000000,0.250000,0,0);}
.m21_c00309{transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);}
.m12_c00309{transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);}
.m22_c00309{transform:matrix(2.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.302500,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;}
.fs13_c00309{font-size:3.456000px;}
.fs1b_c00309{font-size:6.000000px;}
.fs10_c00309{font-size:6.900000px;}
.fsd_c00309{font-size:10.380000px;}
.fs14_c00309{font-size:13.800000px;}
.fs3_c00309{font-size:17.280000px;}
.fs19_c00309{font-size:20.760000px;}
.fs1a_c00309{font-size:24.180000px;}
.fs1c_c00309{font-size:31.080000px;}
.fs12_c00309{font-size:34.560000px;}
.fs15_c00309{font-size:38.040000px;}
.fs16_c00309{font-size:44.940000px;}
.fs17_c00309{font-size:51.840000px;}
.fsb_c00309{font-size:55.320000px;}
.fsc_c00309{font-size:58.740000px;}
.fs1_c00309{font-size:62.220000px;}
.fs0_c00309{font-size:65.640000px;}
.fs2_c00309{font-size:69.120000px;}
.fs8_c00309{font-size:72.600000px;}
.fs7_c00309{font-size:79.500000px;}
.fs9_c00309{font-size:82.920000px;}
.fsa_c00309{font-size:86.400000px;}
.fse_c00309{font-size:89.880000px;}
.fs18_c00309{font-size:93.300000px;}
.fs4_c00309{font-size:96.780000px;}
.fsf_c00309{font-size:103.680000px;}
.fs5_c00309{font-size:107.160000px;}
.fs6_c00309{font-size:114.060000px;}
.fs11_c00309{font-size:117.480000px;}
.y0_c00309{bottom:0.000000px;}
.y2a_c00309{bottom:365.475000px;}
.y27_c00309{bottom:1098.150000px;}
.y29_c00309{bottom:1099.005000px;}
.y28_c00309{bottom:1100.730000px;}
.y26_c00309{bottom:1111.965000px;}
.y23_c00309{bottom:1130.115000px;}
.y25_c00309{bottom:1135.290000px;}
.y24_c00309{bottom:1136.160000px;}
.y21_c00309{bottom:1140.480000px;}
.y1f_c00309{bottom:1143.075000px;}
.y22_c00309{bottom:1145.670000px;}
.y20_c00309{bottom:1146.525000px;}
.y1e_c00309{bottom:1148.250000px;}
.y1d_c00309{bottom:1156.890000px;}
.y1c_c00309{bottom:1160.355000px;}
.y1b_c00309{bottom:1161.210000px;}
.y1a_c00309{bottom:1162.080000px;}
.y16_c00309{bottom:1173.315000px;}
.y15_c00309{bottom:1174.170000px;}
.y17_c00309{bottom:1175.040000px;}
.y14_c00309{bottom:1175.910000px;}
.y13_c00309{bottom:1177.635000px;}
.y18_c00309{bottom:1178.490000px;}
.y19_c00309{bottom:1187.130000px;}
.y12_c00309{bottom:1188.000000px;}
.y10_c00309{bottom:1209.600000px;}
.y11_c00309{bottom:1211.325000px;}
.ye_c00309{bottom:1237.245000px;}
.yc_c00309{bottom:1241.565000px;}
.yd_c00309{bottom:1242.435000px;}
.yf_c00309{bottom:1245.885000px;}
.ya_c00309{bottom:1265.760000px;}
.yb_c00309{bottom:1268.355000px;}
.y9_c00309{bottom:1289.085000px;}
.y8_c00309{bottom:1304.640000px;}
.y7_c00309{bottom:1332.285000px;}
.y6_c00309{bottom:1334.010000px;}
.y5_c00309{bottom:1370.310000px;}
.y1_c00309{bottom:1395.360000px;}
.y2_c00309{bottom:1396.230000px;}
.y3_c00309{bottom:1397.085000px;}
.y4_c00309{bottom:1410.915000px;}
.h15_c00309{height:3.110063px;}
.h1d_c00309{height:5.399414px;}
.h12_c00309{height:6.209326px;}
.hf_c00309{height:9.340986px;}
.h16_c00309{height:12.418652px;}
.h5_c00309{height:15.550313px;}
.h1b_c00309{height:18.681973px;}
.h1c_c00309{height:21.759639px;}
.h1e_c00309{height:27.968965px;}
.h14_c00309{height:31.100625px;}
.h17_c00309{height:34.232285px;}
.h18_c00309{height:40.441611px;}
.h19_c00309{height:46.650937px;}
.hd_c00309{height:49.782598px;}
.he_c00309{height:52.860264px;}
.h3_c00309{height:55.991924px;}
.h2_c00309{height:59.069590px;}
.h4_c00309{height:62.201250px;}
.ha_c00309{height:65.332910px;}
.h9_c00309{height:71.542236px;}
.hb_c00309{height:74.619902px;}
.hc_c00309{height:77.751563px;}
.h10_c00309{height:80.883223px;}
.h1a_c00309{height:83.960889px;}
.h6_c00309{height:87.092549px;}
.h11_c00309{height:93.301875px;}
.h7_c00309{height:96.433535px;}
.h8_c00309{height:102.642861px;}
.h13_c00309{height:105.720527px;}
.h0_c00309{height:1509.405000px;}
.h1_c00309{height:1509.750000px;}
.w0_c00309{width:1111.965000px;}
.w1_c00309{width:1112.250000px;}
.x0_c00309{left:0.000000px;}
.x2c_c00309{left:38.880000px;}
.x29_c00309{left:167.610000px;}
.x2a_c00309{left:175.395000px;}
.x17_c00309{left:234.150000px;}
.x28_c00309{left:237.600000px;}
.xc_c00309{left:239.325000px;}
.x13_c00309{left:254.010000px;}
.xf_c00309{left:255.750000px;}
.xb_c00309{left:264.390000px;}
.x1d_c00309{left:272.160000px;}
.x1e_c00309{left:286.845000px;}
.x18_c00309{left:292.035000px;}
.x25_c00309{left:301.530000px;}
.x10_c00309{left:319.680000px;}
.x20_c00309{left:324.000000px;}
.x14_c00309{left:332.640000px;}
.x19_c00309{left:348.195000px;}
.xd_c00309{left:349.920000px;}
.x1a_c00309{left:358.560000px;}
.x15_c00309{left:362.010000px;}
.x2b_c00309{left:368.070000px;}
.x21_c00309{left:390.525000px;}
.x11_c00309{left:393.120000px;}
.x22_c00309{left:419.040000px;}
.xe_c00309{left:436.320000px;}
.x1_c00309{left:458.790000px;}
.x1b_c00309{left:463.965000px;}
.x1c_c00309{left:474.330000px;}
.x16_c00309{left:482.970000px;}
.x26_c00309{left:494.205000px;}
.x23_c00309{left:495.930000px;}
.x1f_c00309{left:522.720000px;}
.x24_c00309{left:528.765000px;}
.x2_c00309{left:534.810000px;}
.x3_c00309{left:551.235000px;}
.x27_c00309{left:559.875000px;}
.x8_c00309{left:569.370000px;}
.x4_c00309{left:571.965000px;}
.x12_c00309{left:585.795000px;}
.x9_c00309{left:587.520000px;}
.x5_c00309{left:589.245000px;}
.x6_c00309{left:623.805000px;}
.x7_c00309{left:704.160000px;}
.xa_c00309{left:721.440000px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls0_c00309{letter-spacing:0.000000pt;}
.ws0_c00309{word-spacing:0.000000pt;}
.fs13_c00309{font-size:3.072000pt;}
.fs1b_c00309{font-size:5.333333pt;}
.fs10_c00309{font-size:6.133333pt;}
.fsd_c00309{font-size:9.226667pt;}
.fs14_c00309{font-size:12.266667pt;}
.fs3_c00309{font-size:15.360000pt;}
.fs19_c00309{font-size:18.453333pt;}
.fs1a_c00309{font-size:21.493333pt;}
.fs1c_c00309{font-size:27.626667pt;}
.fs12_c00309{font-size:30.720000pt;}
.fs15_c00309{font-size:33.813333pt;}
.fs16_c00309{font-size:39.946667pt;}
.fs17_c00309{font-size:46.080000pt;}
.fsb_c00309{font-size:49.173333pt;}
.fsc_c00309{font-size:52.213333pt;}
.fs1_c00309{font-size:55.306667pt;}
.fs0_c00309{font-size:58.346667pt;}
.fs2_c00309{font-size:61.440000pt;}
.fs8_c00309{font-size:64.533333pt;}
.fs7_c00309{font-size:70.666667pt;}
.fs9_c00309{font-size:73.706667pt;}
.fsa_c00309{font-size:76.800000pt;}
.fse_c00309{font-size:79.893333pt;}
.fs18_c00309{font-size:82.933333pt;}
.fs4_c00309{font-size:86.026667pt;}
.fsf_c00309{font-size:92.160000pt;}
.fs5_c00309{font-size:95.253333pt;}
.fs6_c00309{font-size:101.386667pt;}
.fs11_c00309{font-size:104.426667pt;}
.y0_c00309{bottom:0.000000pt;}
.y2a_c00309{bottom:324.866667pt;}
.y27_c00309{bottom:976.133333pt;}
.y29_c00309{bottom:976.893333pt;}
.y28_c00309{bottom:978.426667pt;}
.y26_c00309{bottom:988.413333pt;}
.y23_c00309{bottom:1004.546667pt;}
.y25_c00309{bottom:1009.146667pt;}
.y24_c00309{bottom:1009.920000pt;}
.y21_c00309{bottom:1013.760000pt;}
.y1f_c00309{bottom:1016.066667pt;}
.y22_c00309{bottom:1018.373333pt;}
.y20_c00309{bottom:1019.133333pt;}
.y1e_c00309{bottom:1020.666667pt;}
.y1d_c00309{bottom:1028.346667pt;}
.y1c_c00309{bottom:1031.426667pt;}
.y1b_c00309{bottom:1032.186667pt;}
.y1a_c00309{bottom:1032.960000pt;}
.y16_c00309{bottom:1042.946667pt;}
.y15_c00309{bottom:1043.706667pt;}
.y17_c00309{bottom:1044.480000pt;}
.y14_c00309{bottom:1045.253333pt;}
.y13_c00309{bottom:1046.786667pt;}
.y18_c00309{bottom:1047.546667pt;}
.y19_c00309{bottom:1055.226667pt;}
.y12_c00309{bottom:1056.000000pt;}
.y10_c00309{bottom:1075.200000pt;}
.y11_c00309{bottom:1076.733333pt;}
.ye_c00309{bottom:1099.773333pt;}
.yc_c00309{bottom:1103.613333pt;}
.yd_c00309{bottom:1104.386667pt;}
.yf_c00309{bottom:1107.453333pt;}
.ya_c00309{bottom:1125.120000pt;}
.yb_c00309{bottom:1127.426667pt;}
.y9_c00309{bottom:1145.853333pt;}
.y8_c00309{bottom:1159.680000pt;}
.y7_c00309{bottom:1184.253333pt;}
.y6_c00309{bottom:1185.786667pt;}
.y5_c00309{bottom:1218.053333pt;}
.y1_c00309{bottom:1240.320000pt;}
.y2_c00309{bottom:1241.093333pt;}
.y3_c00309{bottom:1241.853333pt;}
.y4_c00309{bottom:1254.146667pt;}
.h15_c00309{height:2.764500pt;}
.h1d_c00309{height:4.799479pt;}
.h12_c00309{height:5.519401pt;}
.hf_c00309{height:8.303099pt;}
.h16_c00309{height:11.038802pt;}
.h5_c00309{height:13.822500pt;}
.h1b_c00309{height:16.606198pt;}
.h1c_c00309{height:19.341901pt;}
.h1e_c00309{height:24.861302pt;}
.h14_c00309{height:27.645000pt;}
.h17_c00309{height:30.428698pt;}
.h18_c00309{height:35.948099pt;}
.h19_c00309{height:41.467500pt;}
.hd_c00309{height:44.251198pt;}
.he_c00309{height:46.986901pt;}
.h3_c00309{height:49.770599pt;}
.h2_c00309{height:52.506302pt;}
.h4_c00309{height:55.290000pt;}
.ha_c00309{height:58.073698pt;}
.h9_c00309{height:63.593099pt;}
.hb_c00309{height:66.328802pt;}
.hc_c00309{height:69.112500pt;}
.h10_c00309{height:71.896198pt;}
.h1a_c00309{height:74.631901pt;}
.h6_c00309{height:77.415599pt;}
.h11_c00309{height:82.935000pt;}
.h7_c00309{height:85.718698pt;}
.h8_c00309{height:91.238099pt;}
.h13_c00309{height:93.973802pt;}
.h0_c00309{height:1341.693333pt;}
.h1_c00309{height:1342.000000pt;}
.w0_c00309{width:988.413333pt;}
.w1_c00309{width:988.666667pt;}
.x0_c00309{left:0.000000pt;}
.x2c_c00309{left:34.560000pt;}
.x29_c00309{left:148.986667pt;}
.x2a_c00309{left:155.906667pt;}
.x17_c00309{left:208.133333pt;}
.x28_c00309{left:211.200000pt;}
.xc_c00309{left:212.733333pt;}
.x13_c00309{left:225.786667pt;}
.xf_c00309{left:227.333333pt;}
.xb_c00309{left:235.013333pt;}
.x1d_c00309{left:241.920000pt;}
.x1e_c00309{left:254.973333pt;}
.x18_c00309{left:259.586667pt;}
.x25_c00309{left:268.026667pt;}
.x10_c00309{left:284.160000pt;}
.x20_c00309{left:288.000000pt;}
.x14_c00309{left:295.680000pt;}
.x19_c00309{left:309.506667pt;}
.xd_c00309{left:311.040000pt;}
.x1a_c00309{left:318.720000pt;}
.x15_c00309{left:321.786667pt;}
.x2b_c00309{left:327.173333pt;}
.x21_c00309{left:347.133333pt;}
.x11_c00309{left:349.440000pt;}
.x22_c00309{left:372.480000pt;}
.xe_c00309{left:387.840000pt;}
.x1_c00309{left:407.813333pt;}
.x1b_c00309{left:412.413333pt;}
.x1c_c00309{left:421.626667pt;}
.x16_c00309{left:429.306667pt;}
.x26_c00309{left:439.293333pt;}
.x23_c00309{left:440.826667pt;}
.x1f_c00309{left:464.640000pt;}
.x24_c00309{left:470.013333pt;}
.x2_c00309{left:475.386667pt;}
.x3_c00309{left:489.986667pt;}
.x27_c00309{left:497.666667pt;}
.x8_c00309{left:506.106667pt;}
.x4_c00309{left:508.413333pt;}
.x12_c00309{left:520.706667pt;}
.x9_c00309{left:522.240000pt;}
.x5_c00309{left:523.773333pt;}
.x6_c00309{left:554.493333pt;}
.x7_c00309{left:625.920000pt;}
.xa_c00309{left:641.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_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_99784c5572aadb4849d56e74.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.109863;font-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.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);}
.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;}
.fs0_c00310{font-size:600.000000px;}
.y0_c00310{bottom:0.000000px;}
.y1_c00310{bottom:15.000000px;}
.h2_c00310{height:539.941406px;}
.h1_c00310{height:1518.750000px;}
.h0_c00310{height:1518.915000px;}
.w1_c00310{width:1104.000000px;}
.w0_c00310{width:1104.195000px;}
.x0_c00310{left:0.000000px;}
.x1_c00310{left:15.000000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.ws0_c00310{word-spacing:0.000000pt;}
.fs0_c00310{font-size:533.333333pt;}
.y0_c00310{bottom:0.000000pt;}
.y1_c00310{bottom:13.333333pt;}
.h2_c00310{height:479.947917pt;}
.h1_c00310{height:1350.000000pt;}
.h0_c00310{height:1350.146667pt;}
.w1_c00310{width:981.333333pt;}
.w0_c00310{width:981.506667pt;}
.x0_c00310{left:0.000000pt;}
.x1_c00310{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d938acdd6988f63b0b055cd.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.109863;font-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_c00311{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);}
.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;}
.fs0_c00311{font-size:600.000000px;}
.y0_c00311{bottom:0.000000px;}
.y1_c00311{bottom:15.000000px;}
.h2_c00311{height:539.941406px;}
.h0_c00311{height:1509.405000px;}
.h1_c00311{height:1509.750000px;}
.w0_c00311{width:1111.965000px;}
.w1_c00311{width:1112.250000px;}
.x0_c00311{left:0.000000px;}
.x1_c00311{left:15.000000px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls0_c00311{letter-spacing:0.000000pt;}
.ws0_c00311{word-spacing:0.000000pt;}
.fs0_c00311{font-size:533.333333pt;}
.y0_c00311{bottom:0.000000pt;}
.y1_c00311{bottom:13.333333pt;}
.h2_c00311{height:479.947917pt;}
.h0_c00311{height:1341.693333pt;}
.h1_c00311{height:1342.000000pt;}
.w0_c00311{width:988.413333pt;}
.w1_c00311{width:988.666667pt;}
.x0_c00311{left:0.000000pt;}
.x1_c00311{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b26c3cd5af9e8583d987cfc2.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.109863;font-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_c00312{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m6_c00312{transform:matrix(0.138400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138400,0.000000,0.000000,0.250000,0,0);}
.m0_c00312{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00312{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00312{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);}
.m1_c00312{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m7_c00312{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c00312{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m8_c00312{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,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;}
.fs0_c00312{font-size:3.456000px;}
.fs1_c00312{font-size:6.900000px;}
.fs3_c00312{font-size:13.800000px;}
.fs2_c00312{font-size:17.280000px;}
.fs4_c00312{font-size:34.560000px;}
.fs5_c00312{font-size:38.040000px;}
.y0_c00312{bottom:0.000000px;}
.ya_c00312{bottom:1453.245000px;}
.y8_c00312{bottom:1467.930000px;}
.y9_c00312{bottom:1469.670000px;}
.y5_c00312{bottom:1470.525000px;}
.y7_c00312{bottom:1471.395000px;}
.y4_c00312{bottom:1472.250000px;}
.y6_c00312{bottom:1473.120000px;}
.y3_c00312{bottom:1474.845000px;}
.y2_c00312{bottom:1485.210000px;}
.y1_c00312{bottom:1487.805000px;}
.h2_c00312{height:3.110063px;}
.h3_c00312{height:6.209326px;}
.h5_c00312{height:12.418652px;}
.h4_c00312{height:15.550313px;}
.h6_c00312{height:31.100625px;}
.h7_c00312{height:34.232285px;}
.h1_c00312{height:1518.750000px;}
.h0_c00312{height:1518.915000px;}
.w1_c00312{width:1104.000000px;}
.w0_c00312{width:1104.195000px;}
.x0_c00312{left:0.000000px;}
.xb_c00312{left:299.805000px;}
.x1_c00312{left:348.195000px;}
.x3_c00312{left:822.525000px;}
.x4_c00312{left:927.075000px;}
.x5_c00312{left:946.950000px;}
.x6_c00312{left:950.400000px;}
.x7_c00312{left:955.590000px;}
.x8_c00312{left:965.085000px;}
.x9_c00312{left:970.275000px;}
.xa_c00312{left:1016.925000px;}
.x2_c00312{left:1051.485000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls0_c00312{letter-spacing:0.000000pt;}
.ws0_c00312{word-spacing:0.000000pt;}
.fs0_c00312{font-size:3.072000pt;}
.fs1_c00312{font-size:6.133333pt;}
.fs3_c00312{font-size:12.266667pt;}
.fs2_c00312{font-size:15.360000pt;}
.fs4_c00312{font-size:30.720000pt;}
.fs5_c00312{font-size:33.813333pt;}
.y0_c00312{bottom:0.000000pt;}
.ya_c00312{bottom:1291.773333pt;}
.y8_c00312{bottom:1304.826667pt;}
.y9_c00312{bottom:1306.373333pt;}
.y5_c00312{bottom:1307.133333pt;}
.y7_c00312{bottom:1307.906667pt;}
.y4_c00312{bottom:1308.666667pt;}
.y6_c00312{bottom:1309.440000pt;}
.y3_c00312{bottom:1310.973333pt;}
.y2_c00312{bottom:1320.186667pt;}
.y1_c00312{bottom:1322.493333pt;}
.h2_c00312{height:2.764500pt;}
.h3_c00312{height:5.519401pt;}
.h5_c00312{height:11.038802pt;}
.h4_c00312{height:13.822500pt;}
.h6_c00312{height:27.645000pt;}
.h7_c00312{height:30.428698pt;}
.h1_c00312{height:1350.000000pt;}
.h0_c00312{height:1350.146667pt;}
.w1_c00312{width:981.333333pt;}
.w0_c00312{width:981.506667pt;}
.x0_c00312{left:0.000000pt;}
.xb_c00312{left:266.493333pt;}
.x1_c00312{left:309.506667pt;}
.x3_c00312{left:731.133333pt;}
.x4_c00312{left:824.066667pt;}
.x5_c00312{left:841.733333pt;}
.x6_c00312{left:844.800000pt;}
.x7_c00312{left:849.413333pt;}
.x8_c00312{left:857.853333pt;}
.x9_c00312{left:862.466667pt;}
.xa_c00312{left:903.933333pt;}
.x2_c00312{left:934.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5aedf27f02a21771657f4fa9.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.109863;font-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_c00313{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);}
.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;}
.fs0_c00313{font-size:600.000000px;}
.y0_c00313{bottom:0.000000px;}
.y1_c00313{bottom:15.000000px;}
.h2_c00313{height:539.941406px;}
.h0_c00313{height:1509.405000px;}
.h1_c00313{height:1509.750000px;}
.w0_c00313{width:1111.965000px;}
.w1_c00313{width:1112.250000px;}
.x0_c00313{left:0.000000px;}
.x1_c00313{left:15.000000px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls0_c00313{letter-spacing:0.000000pt;}
.ws0_c00313{word-spacing:0.000000pt;}
.fs0_c00313{font-size:533.333333pt;}
.y0_c00313{bottom:0.000000pt;}
.y1_c00313{bottom:13.333333pt;}
.h2_c00313{height:479.947917pt;}
.h0_c00313{height:1341.693333pt;}
.h1_c00313{height:1342.000000pt;}
.w0_c00313{width:988.413333pt;}
.w1_c00313{width:988.666667pt;}
.x0_c00313{left:0.000000pt;}
.x1_c00313{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de98d17f489923408f22a612.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.109863;font-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_c00314{transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);}
.md_c00314{transform:matrix(0.106200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106200,0.000000,0.000000,0.250000,0,0);}
.ma_c00314{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.mc_c00314{transform:matrix(0.118300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118300,0.000000,0.000000,0.250000,0,0);}
.m3_c00314{transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);}
.m1_c00314{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m13_c00314{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m15_c00314{transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);}
.m14_c00314{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);}
.m12_c00314{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);}
.m10_c00314{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.m7_c00314{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);}
.m6_c00314{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00314{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c00314{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00314{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2_c00314{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);}
.mf_c00314{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c00314{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m16_c00314{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m5_c00314{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m9_c00314{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m17_c00314{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.me_c00314{transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.445000,0.000000,0.000000,0.250000,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;}
.fs5_c00314{font-size:3.456000px;}
.fsc_c00314{font-size:6.000000px;}
.fs2_c00314{font-size:6.900000px;}
.fs1_c00314{font-size:10.380000px;}
.fs8_c00314{font-size:17.280000px;}
.fsf_c00314{font-size:20.760000px;}
.fs0_c00314{font-size:24.180000px;}
.fsd_c00314{font-size:27.660000px;}
.fs7_c00314{font-size:31.080000px;}
.fse_c00314{font-size:34.560000px;}
.fs4_c00314{font-size:48.360000px;}
.fs9_c00314{font-size:55.320000px;}
.fs6_c00314{font-size:62.220000px;}
.fs3_c00314{font-size:76.020000px;}
.fsb_c00314{font-size:245.400000px;}
.fsa_c00314{font-size:252.300000px;}
.y0_c00314{bottom:0.000000px;}
.y13_c00314{bottom:95.910000px;}
.y11_c00314{bottom:126.150000px;}
.y12_c00314{bottom:132.195000px;}
.y10_c00314{bottom:133.050000px;}
.yd_c00314{bottom:1291.680000px;}
.ye_c00314{bottom:1292.550000px;}
.yc_c00314{bottom:1293.405000px;}
.yb_c00314{bottom:1296.870000px;}
.yf_c00314{bottom:1299.450000px;}
.ya_c00314{bottom:1300.320000px;}
.y9_c00314{bottom:1309.830000px;}
.y1_c00314{bottom:1349.565000px;}
.y2_c00314{bottom:1371.165000px;}
.y8_c00314{bottom:1372.035000px;}
.y4_c00314{bottom:1372.890000px;}
.y3_c00314{bottom:1373.760000px;}
.y6_c00314{bottom:1374.630000px;}
.y5_c00314{bottom:1378.080000px;}
.y7_c00314{bottom:1378.950000px;}
.h7_c00314{height:3.110063px;}
.he_c00314{height:5.399414px;}
.h4_c00314{height:6.209326px;}
.h3_c00314{height:9.340986px;}
.ha_c00314{height:15.550313px;}
.h11_c00314{height:18.681973px;}
.h2_c00314{height:21.759639px;}
.hf_c00314{height:24.891299px;}
.h9_c00314{height:27.968965px;}
.h10_c00314{height:31.100625px;}
.h6_c00314{height:43.519277px;}
.hb_c00314{height:49.782598px;}
.h8_c00314{height:55.991924px;}
.h5_c00314{height:68.410576px;}
.hd_c00314{height:220.836035px;}
.hc_c00314{height:227.045361px;}
.h1_c00314{height:1518.750000px;}
.h0_c00314{height:1518.915000px;}
.w1_c00314{width:1104.000000px;}
.w0_c00314{width:1104.195000px;}
.x0_c00314{left:0.000000px;}
.x1_c00314{left:190.080000px;}
.xe_c00314{left:260.070000px;}
.x2_c00314{left:349.050000px;}
.x3_c00314{left:369.795000px;}
.x13_c00314{left:380.160000px;}
.x4_c00314{left:388.800000px;}
.x18_c00314{left:394.845000px;}
.x17_c00314{left:397.440000px;}
.x14_c00314{left:401.760000px;}
.x5_c00314{left:427.680000px;}
.x6_c00314{left:442.365000px;}
.x7_c00314{left:460.515000px;}
.x15_c00314{left:462.240000px;}
.x8_c00314{left:476.070000px;}
.x9_c00314{left:489.885000px;}
.x16_c00314{left:497.670000px;}
.xa_c00314{left:501.990000px;}
.xb_c00314{left:527.040000px;}
.xc_c00314{left:540.000000px;}
.xd_c00314{left:548.640000px;}
.xf_c00314{left:567.645000px;}
.x10_c00314{left:617.760000px;}
.x11_c00314{left:627.270000px;}
.x1b_c00314{left:632.445000px;}
.x12_c00314{left:648.870000px;}
.x19_c00314{left:845.850000px;}
.x1a_c00314{left:864.870000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls0_c00314{letter-spacing:0.000000pt;}
.ws0_c00314{word-spacing:0.000000pt;}
.fs5_c00314{font-size:3.072000pt;}
.fsc_c00314{font-size:5.333333pt;}
.fs2_c00314{font-size:6.133333pt;}
.fs1_c00314{font-size:9.226667pt;}
.fs8_c00314{font-size:15.360000pt;}
.fsf_c00314{font-size:18.453333pt;}
.fs0_c00314{font-size:21.493333pt;}
.fsd_c00314{font-size:24.586667pt;}
.fs7_c00314{font-size:27.626667pt;}
.fse_c00314{font-size:30.720000pt;}
.fs4_c00314{font-size:42.986667pt;}
.fs9_c00314{font-size:49.173333pt;}
.fs6_c00314{font-size:55.306667pt;}
.fs3_c00314{font-size:67.573333pt;}
.fsb_c00314{font-size:218.133333pt;}
.fsa_c00314{font-size:224.266667pt;}
.y0_c00314{bottom:0.000000pt;}
.y13_c00314{bottom:85.253333pt;}
.y11_c00314{bottom:112.133333pt;}
.y12_c00314{bottom:117.506667pt;}
.y10_c00314{bottom:118.266667pt;}
.yd_c00314{bottom:1148.160000pt;}
.ye_c00314{bottom:1148.933333pt;}
.yc_c00314{bottom:1149.693333pt;}
.yb_c00314{bottom:1152.773333pt;}
.yf_c00314{bottom:1155.066667pt;}
.ya_c00314{bottom:1155.840000pt;}
.y9_c00314{bottom:1164.293333pt;}
.y1_c00314{bottom:1199.613333pt;}
.y2_c00314{bottom:1218.813333pt;}
.y8_c00314{bottom:1219.586667pt;}
.y4_c00314{bottom:1220.346667pt;}
.y3_c00314{bottom:1221.120000pt;}
.y6_c00314{bottom:1221.893333pt;}
.y5_c00314{bottom:1224.960000pt;}
.y7_c00314{bottom:1225.733333pt;}
.h7_c00314{height:2.764500pt;}
.he_c00314{height:4.799479pt;}
.h4_c00314{height:5.519401pt;}
.h3_c00314{height:8.303099pt;}
.ha_c00314{height:13.822500pt;}
.h11_c00314{height:16.606198pt;}
.h2_c00314{height:19.341901pt;}
.hf_c00314{height:22.125599pt;}
.h9_c00314{height:24.861302pt;}
.h10_c00314{height:27.645000pt;}
.h6_c00314{height:38.683802pt;}
.hb_c00314{height:44.251198pt;}
.h8_c00314{height:49.770599pt;}
.h5_c00314{height:60.809401pt;}
.hd_c00314{height:196.298698pt;}
.hc_c00314{height:201.818099pt;}
.h1_c00314{height:1350.000000pt;}
.h0_c00314{height:1350.146667pt;}
.w1_c00314{width:981.333333pt;}
.w0_c00314{width:981.506667pt;}
.x0_c00314{left:0.000000pt;}
.x1_c00314{left:168.960000pt;}
.xe_c00314{left:231.173333pt;}
.x2_c00314{left:310.266667pt;}
.x3_c00314{left:328.706667pt;}
.x13_c00314{left:337.920000pt;}
.x4_c00314{left:345.600000pt;}
.x18_c00314{left:350.973333pt;}
.x17_c00314{left:353.280000pt;}
.x14_c00314{left:357.120000pt;}
.x5_c00314{left:380.160000pt;}
.x6_c00314{left:393.213333pt;}
.x7_c00314{left:409.346667pt;}
.x15_c00314{left:410.880000pt;}
.x8_c00314{left:423.173333pt;}
.x9_c00314{left:435.453333pt;}
.x16_c00314{left:442.373333pt;}
.xa_c00314{left:446.213333pt;}
.xb_c00314{left:468.480000pt;}
.xc_c00314{left:480.000000pt;}
.xd_c00314{left:487.680000pt;}
.xf_c00314{left:504.573333pt;}
.x10_c00314{left:549.120000pt;}
.x11_c00314{left:557.573333pt;}
.x1b_c00314{left:562.173333pt;}
.x12_c00314{left:576.773333pt;}
.x19_c00314{left:751.866667pt;}
.x1a_c00314{left:768.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfee82f623c7153a1a3d240a.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.109863;font-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_c00315{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);}
.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;}
.fs0_c00315{font-size:600.000000px;}
.y0_c00315{bottom:0.000000px;}
.y1_c00315{bottom:15.000000px;}
.h2_c00315{height:539.941406px;}
.h0_c00315{height:1509.405000px;}
.h1_c00315{height:1509.750000px;}
.w0_c00315{width:1111.965000px;}
.w1_c00315{width:1112.250000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:15.000000px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ws0_c00315{word-spacing:0.000000pt;}
.fs0_c00315{font-size:533.333333pt;}
.y0_c00315{bottom:0.000000pt;}
.y1_c00315{bottom:13.333333pt;}
.h2_c00315{height:479.947917pt;}
.h0_c00315{height:1341.693333pt;}
.h1_c00315{height:1342.000000pt;}
.w0_c00315{width:988.413333pt;}
.w1_c00315{width:988.666667pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f3b2ae4eeb6a475cbc59a3f5.woff2')format("woff");}.ff1_c00316{font-family:ff1_c00316;line-height:1.109863;font-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_c00316{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);}
.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;}
.fs0_c00316{font-size:600.000000px;}
.y0_c00316{bottom:0.000000px;}
.y1_c00316{bottom:15.000000px;}
.h2_c00316{height:539.941406px;}
.h0_c00316{height:1526.685000px;}
.h1_c00316{height:1527.000000px;}
.w1_c00316{width:1104.000000px;}
.w0_c00316{width:1104.195000px;}
.x0_c00316{left:0.000000px;}
.x1_c00316{left:15.000000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws0_c00316{word-spacing:0.000000pt;}
.fs0_c00316{font-size:533.333333pt;}
.y0_c00316{bottom:0.000000pt;}
.y1_c00316{bottom:13.333333pt;}
.h2_c00316{height:479.947917pt;}
.h0_c00316{height:1357.053333pt;}
.h1_c00316{height:1357.333333pt;}
.w1_c00316{width:981.333333pt;}
.w0_c00316{width:981.506667pt;}
.x0_c00316{left:0.000000pt;}
.x1_c00316{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3a4bd2e1774659290a90adbb.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.109863;font-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_c00317{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);}
.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:600.000000px;}
.y0_c00317{bottom:0.000000px;}
.y1_c00317{bottom:15.000000px;}
.h2_c00317{height:539.941406px;}
.h1_c00317{height:1507.500000px;}
.h0_c00317{height:1507.680000px;}
.w0_c00317{width:1111.965000px;}
.w1_c00317{width:1112.250000px;}
.x0_c00317{left:0.000000px;}
.x1_c00317{left:15.000000px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ws0_c00317{word-spacing:0.000000pt;}
.fs0_c00317{font-size:533.333333pt;}
.y0_c00317{bottom:0.000000pt;}
.y1_c00317{bottom:13.333333pt;}
.h2_c00317{height:479.947917pt;}
.h1_c00317{height:1340.000000pt;}
.h0_c00317{height:1340.160000pt;}
.w0_c00317{width:988.413333pt;}
.w1_c00317{width:988.666667pt;}
.x0_c00317{left:0.000000pt;}
.x1_c00317{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f1f70f94d227b3685ad38009.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.109863;font-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_c00318{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);}
.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;}
.fs0_c00318{font-size:600.000000px;}
.y0_c00318{bottom:0.000000px;}
.y1_c00318{bottom:15.000000px;}
.h2_c00318{height:539.941406px;}
.h0_c00318{height:1526.685000px;}
.h1_c00318{height:1527.000000px;}
.w0_c00318{width:1100.730000px;}
.w1_c00318{width:1101.000000px;}
.x0_c00318{left:0.000000px;}
.x1_c00318{left:15.000000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls0_c00318{letter-spacing:0.000000pt;}
.ws0_c00318{word-spacing:0.000000pt;}
.fs0_c00318{font-size:533.333333pt;}
.y0_c00318{bottom:0.000000pt;}
.y1_c00318{bottom:13.333333pt;}
.h2_c00318{height:479.947917pt;}
.h0_c00318{height:1357.053333pt;}
.h1_c00318{height:1357.333333pt;}
.w0_c00318{width:978.426667pt;}
.w1_c00318{width:978.666667pt;}
.x0_c00318{left:0.000000pt;}
.x1_c00318{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00319;src:url('chunks/assets/font_beecc9f6cb4b1880e87f726f.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.109863;font-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_c00319{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m14_c00319{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m39_c00319{transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);}
.m2e_c00319{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);}
.m1a_c00319{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00319{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m37_c00319{transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);}
.m6_c00319{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.m2f_c00319{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);}
.m22_c00319{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);}
.m30_c00319{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.m19_c00319{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.m42_c00319{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.m43_c00319{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m28_c00319{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);}
.m33_c00319{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);}
.m4b_c00319{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00319{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);}
.m46_c00319{transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);}
.m26_c00319{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.md_c00319{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.m23_c00319{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.m27_c00319{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m34_c00319{transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);}
.m1b_c00319{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m44_c00319{transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);}
.m48_c00319{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m3c_c00319{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);}
.m5_c00319{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.m38_c00319{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);}
.me_c00319{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m24_c00319{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.m25_c00319{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);}
.m17_c00319{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00319{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m0_c00319{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);}
.m4_c00319{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m29_c00319{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m41_c00319{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00319{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);}
.m20_c00319{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);}
.m49_c00319{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00319{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00319{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c00319{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);}
.m35_c00319{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00319{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00319{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m47_c00319{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c00319{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00319{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);}
.m16_c00319{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c00319{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);}
.m3f_c00319{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7_c00319{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);}
.m18_c00319{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.ma_c00319{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);}
.m21_c00319{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c00319{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m32_c00319{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m15_c00319{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);}
.m9_c00319{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m10_c00319{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mb_c00319{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);}
.m12_c00319{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m45_c00319{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m31_c00319{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c00319{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00319{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);}
.m3_c00319{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00319{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00319{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1_c00319{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);}
.m40_c00319{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m36_c00319{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00319{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.v0_c00319{vertical-align:0.000000px;}
.v1_c00319{vertical-align:17.280000px;}
.ls0_c00319{letter-spacing:0.000000px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00319{word-spacing:-9.242820px;}
.ws1_c00319{word-spacing:0.000000px;}
.fc0_c00319{color:transparent;}
.fs13_c00319{font-size:3.456000px;}
.fsa_c00319{font-size:6.000000px;}
.fs17_c00319{font-size:6.900000px;}
.fs0_c00319{font-size:17.280000px;}
.fs18_c00319{font-size:20.760000px;}
.fs1b_c00319{font-size:24.180000px;}
.fs14_c00319{font-size:27.660000px;}
.fs19_c00319{font-size:31.080000px;}
.fs2_c00319{font-size:34.560000px;}
.fs4_c00319{font-size:38.040000px;}
.fs1c_c00319{font-size:41.460000px;}
.fs10_c00319{font-size:44.940000px;}
.fs11_c00319{font-size:48.360000px;}
.fsf_c00319{font-size:51.840000px;}
.fs9_c00319{font-size:55.320000px;}
.fse_c00319{font-size:58.740000px;}
.fs3_c00319{font-size:62.220000px;}
.fs8_c00319{font-size:65.640000px;}
.fs6_c00319{font-size:69.120000px;}
.fsd_c00319{font-size:72.600000px;}
.fs16_c00319{font-size:76.020000px;}
.fs7_c00319{font-size:79.500000px;}
.fs1d_c00319{font-size:82.920000px;}
.fs15_c00319{font-size:89.880000px;}
.fs1a_c00319{font-size:93.300000px;}
.fs5_c00319{font-size:96.780000px;}
.fs12_c00319{font-size:100.200000px;}
.fsc_c00319{font-size:103.680000px;}
.fsb_c00319{font-size:114.060000px;}
.fs1_c00319{font-size:200.460000px;}
.y0_c00319{bottom:0.000000px;}
.y45_c00319{bottom:844.125000px;}
.y46_c00319{bottom:844.995000px;}
.y47_c00319{bottom:846.720000px;}
.y41_c00319{bottom:858.810000px;}
.y42_c00319{bottom:861.405000px;}
.y44_c00319{bottom:862.275000px;}
.y43_c00319{bottom:863.130000px;}
.y40_c00319{bottom:870.915000px;}
.y3d_c00319{bottom:883.005000px;}
.y3c_c00319{bottom:886.470000px;}
.y3e_c00319{bottom:887.325000px;}
.y3f_c00319{bottom:888.195000px;}
.y37_c00319{bottom:902.010000px;}
.y38_c00319{bottom:903.750000px;}
.y39_c00319{bottom:907.200000px;}
.y3a_c00319{bottom:908.070000px;}
.y3b_c00319{bottom:911.520000px;}
.y32_c00319{bottom:921.885000px;}
.y34_c00319{bottom:924.480000px;}
.y31_c00319{bottom:927.075000px;}
.y33_c00319{bottom:927.930000px;}
.y35_c00319{bottom:929.670000px;}
.y2a_c00319{bottom:936.570000px;}
.y29_c00319{bottom:937.440000px;}
.y36_c00319{bottom:938.310000px;}
.y2d_c00319{bottom:940.890000px;}
.y2b_c00319{bottom:941.760000px;}
.y2f_c00319{bottom:944.355000px;}
.y2c_c00319{bottom:948.675000px;}
.y2e_c00319{bottom:949.530000px;}
.y30_c00319{bottom:959.040000px;}
.y28_c00319{bottom:963.360000px;}
.y25_c00319{bottom:964.230000px;}
.y27_c00319{bottom:965.085000px;}
.y26_c00319{bottom:965.955000px;}
.y20_c00319{bottom:982.365000px;}
.y21_c00319{bottom:984.090000px;}
.y22_c00319{bottom:984.960000px;}
.y1f_c00319{bottom:985.830000px;}
.y23_c00319{bottom:995.325000px;}
.y24_c00319{bottom:999.645000px;}
.y1d_c00319{bottom:1008.285000px;}
.y1e_c00319{bottom:1009.155000px;}
.y18_c00319{bottom:1022.970000px;}
.y1a_c00319{bottom:1028.160000px;}
.y1c_c00319{bottom:1029.885000px;}
.y1b_c00319{bottom:1030.755000px;}
.y19_c00319{bottom:1037.670000px;}
.y16_c00319{bottom:1073.085000px;}
.y14_c00319{bottom:1073.955000px;}
.y15_c00319{bottom:1074.810000px;}
.y17_c00319{bottom:1075.680000px;}
.y10_c00319{bottom:1083.450000px;}
.y11_c00319{bottom:1086.915000px;}
.y12_c00319{bottom:1087.770000px;}
.y13_c00319{bottom:1088.640000px;}
.yf_c00319{bottom:1304.640000px;}
.y48_c00319{bottom:1322.790000px;}
.ye_c00319{bottom:1329.690000px;}
.yd_c00319{bottom:1347.840000px;}
.yc_c00319{bottom:1367.715000px;}
.y6_c00319{bottom:1372.890000px;}
.y3_c00319{bottom:1374.630000px;}
.y5_c00319{bottom:1378.080000px;}
.y7_c00319{bottom:1386.720000px;}
.y4_c00319{bottom:1390.170000px;}
.y9_c00319{bottom:1391.040000px;}
.y8_c00319{bottom:1393.635000px;}
.ya_c00319{bottom:1395.360000px;}
.yb_c00319{bottom:1396.230000px;}
.y2_c00319{bottom:1408.320000px;}
.y1_c00319{bottom:1444.605000px;}
.h16_c00319{height:3.110063px;}
.hc_c00319{height:5.399414px;}
.h1a_c00319{height:6.209326px;}
.h2_c00319{height:15.550313px;}
.h1b_c00319{height:18.681973px;}
.h1e_c00319{height:21.759639px;}
.h17_c00319{height:24.891299px;}
.h1c_c00319{height:27.968965px;}
.h4_c00319{height:31.100625px;}
.h6_c00319{height:34.232285px;}
.h1f_c00319{height:37.309951px;}
.h13_c00319{height:40.441611px;}
.h14_c00319{height:43.519277px;}
.h11_c00319{height:46.650937px;}
.hb_c00319{height:49.782598px;}
.h10_c00319{height:52.860264px;}
.h5_c00319{height:55.991924px;}
.ha_c00319{height:59.069590px;}
.h8_c00319{height:62.201250px;}
.hf_c00319{height:65.332910px;}
.h12_c00319{height:67.062598px;}
.h19_c00319{height:68.410576px;}
.h9_c00319{height:71.542236px;}
.h20_c00319{height:74.619902px;}
.h18_c00319{height:80.883223px;}
.h1d_c00319{height:83.960889px;}
.h7_c00319{height:87.092549px;}
.h15_c00319{height:90.170215px;}
.he_c00319{height:93.301875px;}
.hd_c00319{height:102.642861px;}
.h3_c00319{height:180.394424px;}
.h1_c00319{height:1507.500000px;}
.h0_c00319{height:1507.680000px;}
.w0_c00319{width:1111.965000px;}
.w1_c00319{width:1112.250000px;}
.x0_c00319{left:0.000000px;}
.x4_c00319{left:283.395000px;}
.x2_c00319{left:310.170000px;}
.x10_c00319{left:316.230000px;}
.x11_c00319{left:337.830000px;}
.x3_c00319{left:340.410000px;}
.x5_c00319{left:345.600000px;}
.x6_c00319{left:358.560000px;}
.x12_c00319{left:362.010000px;}
.x13_c00319{left:374.970000px;}
.x1_c00319{left:384.480000px;}
.x14_c00319{left:395.715000px;}
.x15_c00319{left:410.400000px;}
.x7_c00319{left:444.960000px;}
.x8_c00319{left:472.605000px;}
.x9_c00319{left:495.075000px;}
.xa_c00319{left:523.590000px;}
.xd_c00319{left:559.875000px;}
.x47_c00319{left:564.195000px;}
.xe_c00319{left:571.110000px;}
.x3b_c00319{left:574.560000px;}
.xf_c00319{left:578.880000px;}
.x1e_c00319{left:580.605000px;}
.x34_c00319{left:586.650000px;}
.x35_c00319{left:604.800000px;}
.xb_c00319{left:610.845000px;}
.x3c_c00319{left:614.310000px;}
.x16_c00319{left:616.035000px;}
.x42_c00319{left:620.355000px;}
.x3d_c00319{left:624.675000px;}
.xc_c00319{left:635.040000px;}
.x17_c00319{left:639.360000px;}
.x3e_c00319{left:649.725000px;}
.x2d_c00319{left:656.640000px;}
.x18_c00319{left:660.090000px;}
.x48_c00319{left:670.470000px;}
.x3f_c00319{left:677.370000px;}
.x24_c00319{left:680.835000px;}
.x19_c00319{left:685.155000px;}
.x49_c00319{left:689.475000px;}
.x1f_c00319{left:692.070000px;}
.x20_c00319{left:695.520000px;}
.x1a_c00319{left:698.970000px;}
.x43_c00319{left:704.160000px;}
.x44_c00319{left:715.395000px;}
.x1b_c00319{left:718.845000px;}
.x2e_c00319{left:721.440000px;}
.x36_c00319{left:725.760000px;}
.x1c_c00319{left:731.805000px;}
.x21_c00319{left:733.530000px;}
.x45_c00319{left:736.995000px;}
.x27_c00319{left:743.910000px;}
.x2a_c00319{left:757.725000px;}
.x25_c00319{left:759.450000px;}
.x46_c00319{left:761.190000px;}
.x2b_c00319{left:768.090000px;}
.x1d_c00319{left:772.410000px;}
.x2f_c00319{left:779.325000px;}
.x22_c00319{left:785.370000px;}
.x37_c00319{left:787.965000px;}
.x40_c00319{left:790.560000px;}
.x30_c00319{left:802.650000px;}
.x28_c00319{left:808.710000px;}
.x23_c00319{left:811.290000px;}
.x26_c00319{left:817.350000px;}
.x31_c00319{left:836.355000px;}
.x38_c00319{left:838.080000px;}
.x32_c00319{left:864.870000px;}
.x33_c00319{left:867.450000px;}
.x4a_c00319{left:870.045000px;}
.x29_c00319{left:874.365000px;}
.x39_c00319{left:876.960000px;}
.x41_c00319{left:901.155000px;}
.x3a_c00319{left:902.880000px;}
.x2c_c00319{left:920.160000px;}
.x4b_c00319{left:924.480000px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.v1_c00319{vertical-align:15.360000pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ws0_c00319{word-spacing:-8.215840pt;}
.ws1_c00319{word-spacing:0.000000pt;}
.fs13_c00319{font-size:3.072000pt;}
.fsa_c00319{font-size:5.333333pt;}
.fs17_c00319{font-size:6.133333pt;}
.fs0_c00319{font-size:15.360000pt;}
.fs18_c00319{font-size:18.453333pt;}
.fs1b_c00319{font-size:21.493333pt;}
.fs14_c00319{font-size:24.586667pt;}
.fs19_c00319{font-size:27.626667pt;}
.fs2_c00319{font-size:30.720000pt;}
.fs4_c00319{font-size:33.813333pt;}
.fs1c_c00319{font-size:36.853333pt;}
.fs10_c00319{font-size:39.946667pt;}
.fs11_c00319{font-size:42.986667pt;}
.fsf_c00319{font-size:46.080000pt;}
.fs9_c00319{font-size:49.173333pt;}
.fse_c00319{font-size:52.213333pt;}
.fs3_c00319{font-size:55.306667pt;}
.fs8_c00319{font-size:58.346667pt;}
.fs6_c00319{font-size:61.440000pt;}
.fsd_c00319{font-size:64.533333pt;}
.fs16_c00319{font-size:67.573333pt;}
.fs7_c00319{font-size:70.666667pt;}
.fs1d_c00319{font-size:73.706667pt;}
.fs15_c00319{font-size:79.893333pt;}
.fs1a_c00319{font-size:82.933333pt;}
.fs5_c00319{font-size:86.026667pt;}
.fs12_c00319{font-size:89.066667pt;}
.fsc_c00319{font-size:92.160000pt;}
.fsb_c00319{font-size:101.386667pt;}
.fs1_c00319{font-size:178.186667pt;}
.y0_c00319{bottom:0.000000pt;}
.y45_c00319{bottom:750.333333pt;}
.y46_c00319{bottom:751.106667pt;}
.y47_c00319{bottom:752.640000pt;}
.y41_c00319{bottom:763.386667pt;}
.y42_c00319{bottom:765.693333pt;}
.y44_c00319{bottom:766.466667pt;}
.y43_c00319{bottom:767.226667pt;}
.y40_c00319{bottom:774.146667pt;}
.y3d_c00319{bottom:784.893333pt;}
.y3c_c00319{bottom:787.973333pt;}
.y3e_c00319{bottom:788.733333pt;}
.y3f_c00319{bottom:789.506667pt;}
.y37_c00319{bottom:801.786667pt;}
.y38_c00319{bottom:803.333333pt;}
.y39_c00319{bottom:806.400000pt;}
.y3a_c00319{bottom:807.173333pt;}
.y3b_c00319{bottom:810.240000pt;}
.y32_c00319{bottom:819.453333pt;}
.y34_c00319{bottom:821.760000pt;}
.y31_c00319{bottom:824.066667pt;}
.y33_c00319{bottom:824.826667pt;}
.y35_c00319{bottom:826.373333pt;}
.y2a_c00319{bottom:832.506667pt;}
.y29_c00319{bottom:833.280000pt;}
.y36_c00319{bottom:834.053333pt;}
.y2d_c00319{bottom:836.346667pt;}
.y2b_c00319{bottom:837.120000pt;}
.y2f_c00319{bottom:839.426667pt;}
.y2c_c00319{bottom:843.266667pt;}
.y2e_c00319{bottom:844.026667pt;}
.y30_c00319{bottom:852.480000pt;}
.y28_c00319{bottom:856.320000pt;}
.y25_c00319{bottom:857.093333pt;}
.y27_c00319{bottom:857.853333pt;}
.y26_c00319{bottom:858.626667pt;}
.y20_c00319{bottom:873.213333pt;}
.y21_c00319{bottom:874.746667pt;}
.y22_c00319{bottom:875.520000pt;}
.y1f_c00319{bottom:876.293333pt;}
.y23_c00319{bottom:884.733333pt;}
.y24_c00319{bottom:888.573333pt;}
.y1d_c00319{bottom:896.253333pt;}
.y1e_c00319{bottom:897.026667pt;}
.y18_c00319{bottom:909.306667pt;}
.y1a_c00319{bottom:913.920000pt;}
.y1c_c00319{bottom:915.453333pt;}
.y1b_c00319{bottom:916.226667pt;}
.y19_c00319{bottom:922.373333pt;}
.y16_c00319{bottom:953.853333pt;}
.y14_c00319{bottom:954.626667pt;}
.y15_c00319{bottom:955.386667pt;}
.y17_c00319{bottom:956.160000pt;}
.y10_c00319{bottom:963.066667pt;}
.y11_c00319{bottom:966.146667pt;}
.y12_c00319{bottom:966.906667pt;}
.y13_c00319{bottom:967.680000pt;}
.yf_c00319{bottom:1159.680000pt;}
.y48_c00319{bottom:1175.813333pt;}
.ye_c00319{bottom:1181.946667pt;}
.yd_c00319{bottom:1198.080000pt;}
.yc_c00319{bottom:1215.746667pt;}
.y6_c00319{bottom:1220.346667pt;}
.y3_c00319{bottom:1221.893333pt;}
.y5_c00319{bottom:1224.960000pt;}
.y7_c00319{bottom:1232.640000pt;}
.y4_c00319{bottom:1235.706667pt;}
.y9_c00319{bottom:1236.480000pt;}
.y8_c00319{bottom:1238.786667pt;}
.ya_c00319{bottom:1240.320000pt;}
.yb_c00319{bottom:1241.093333pt;}
.y2_c00319{bottom:1251.840000pt;}
.y1_c00319{bottom:1284.093333pt;}
.h16_c00319{height:2.764500pt;}
.hc_c00319{height:4.799479pt;}
.h1a_c00319{height:5.519401pt;}
.h2_c00319{height:13.822500pt;}
.h1b_c00319{height:16.606198pt;}
.h1e_c00319{height:19.341901pt;}
.h17_c00319{height:22.125599pt;}
.h1c_c00319{height:24.861302pt;}
.h4_c00319{height:27.645000pt;}
.h6_c00319{height:30.428698pt;}
.h1f_c00319{height:33.164401pt;}
.h13_c00319{height:35.948099pt;}
.h14_c00319{height:38.683802pt;}
.h11_c00319{height:41.467500pt;}
.hb_c00319{height:44.251198pt;}
.h10_c00319{height:46.986901pt;}
.h5_c00319{height:49.770599pt;}
.ha_c00319{height:52.506302pt;}
.h8_c00319{height:55.290000pt;}
.hf_c00319{height:58.073698pt;}
.h12_c00319{height:59.611198pt;}
.h19_c00319{height:60.809401pt;}
.h9_c00319{height:63.593099pt;}
.h20_c00319{height:66.328802pt;}
.h18_c00319{height:71.896198pt;}
.h1d_c00319{height:74.631901pt;}
.h7_c00319{height:77.415599pt;}
.h15_c00319{height:80.151302pt;}
.he_c00319{height:82.935000pt;}
.hd_c00319{height:91.238099pt;}
.h3_c00319{height:160.350599pt;}
.h1_c00319{height:1340.000000pt;}
.h0_c00319{height:1340.160000pt;}
.w0_c00319{width:988.413333pt;}
.w1_c00319{width:988.666667pt;}
.x0_c00319{left:0.000000pt;}
.x4_c00319{left:251.906667pt;}
.x2_c00319{left:275.706667pt;}
.x10_c00319{left:281.093333pt;}
.x11_c00319{left:300.293333pt;}
.x3_c00319{left:302.586667pt;}
.x5_c00319{left:307.200000pt;}
.x6_c00319{left:318.720000pt;}
.x12_c00319{left:321.786667pt;}
.x13_c00319{left:333.306667pt;}
.x1_c00319{left:341.760000pt;}
.x14_c00319{left:351.746667pt;}
.x15_c00319{left:364.800000pt;}
.x7_c00319{left:395.520000pt;}
.x8_c00319{left:420.093333pt;}
.x9_c00319{left:440.066667pt;}
.xa_c00319{left:465.413333pt;}
.xd_c00319{left:497.666667pt;}
.x47_c00319{left:501.506667pt;}
.xe_c00319{left:507.653333pt;}
.x3b_c00319{left:510.720000pt;}
.xf_c00319{left:514.560000pt;}
.x1e_c00319{left:516.093333pt;}
.x34_c00319{left:521.466667pt;}
.x35_c00319{left:537.600000pt;}
.xb_c00319{left:542.973333pt;}
.x3c_c00319{left:546.053333pt;}
.x16_c00319{left:547.586667pt;}
.x42_c00319{left:551.426667pt;}
.x3d_c00319{left:555.266667pt;}
.xc_c00319{left:564.480000pt;}
.x17_c00319{left:568.320000pt;}
.x3e_c00319{left:577.533333pt;}
.x2d_c00319{left:583.680000pt;}
.x18_c00319{left:586.746667pt;}
.x48_c00319{left:595.973333pt;}
.x3f_c00319{left:602.106667pt;}
.x24_c00319{left:605.186667pt;}
.x19_c00319{left:609.026667pt;}
.x49_c00319{left:612.866667pt;}
.x1f_c00319{left:615.173333pt;}
.x20_c00319{left:618.240000pt;}
.x1a_c00319{left:621.306667pt;}
.x43_c00319{left:625.920000pt;}
.x44_c00319{left:635.906667pt;}
.x1b_c00319{left:638.973333pt;}
.x2e_c00319{left:641.280000pt;}
.x36_c00319{left:645.120000pt;}
.x1c_c00319{left:650.493333pt;}
.x21_c00319{left:652.026667pt;}
.x45_c00319{left:655.106667pt;}
.x27_c00319{left:661.253333pt;}
.x2a_c00319{left:673.533333pt;}
.x25_c00319{left:675.066667pt;}
.x46_c00319{left:676.613333pt;}
.x2b_c00319{left:682.746667pt;}
.x1d_c00319{left:686.586667pt;}
.x2f_c00319{left:692.733333pt;}
.x22_c00319{left:698.106667pt;}
.x37_c00319{left:700.413333pt;}
.x40_c00319{left:702.720000pt;}
.x30_c00319{left:713.466667pt;}
.x28_c00319{left:718.853333pt;}
.x23_c00319{left:721.146667pt;}
.x26_c00319{left:726.533333pt;}
.x31_c00319{left:743.426667pt;}
.x38_c00319{left:744.960000pt;}
.x32_c00319{left:768.773333pt;}
.x33_c00319{left:771.066667pt;}
.x4a_c00319{left:773.373333pt;}
.x29_c00319{left:777.213333pt;}
.x39_c00319{left:779.520000pt;}
.x41_c00319{left:801.026667pt;}
.x3a_c00319{left:802.560000pt;}
.x2c_c00319{left:817.920000pt;}
.x4b_c00319{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_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_1c0a492a8d46321d399145a3.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.109863;font-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_c00320{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c00320{transform:matrix(0.026825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026825,0.000000,0.000000,0.250000,0,0);}
.m6_c00320{transform:matrix(0.068200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068200,0.000000,0.000000,0.250000,0,0);}
.m5_c00320{transform:matrix(0.074025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074025,0.000000,0.000000,0.250000,0,0);}
.m2_c00320{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m8_c00320{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m0_c00320{transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);}
.m3_c00320{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00320{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,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;}
.fs8_c00320{font-size:3.456000px;}
.fs3_c00320{font-size:10.380000px;}
.fs4_c00320{font-size:17.280000px;}
.fs9_c00320{font-size:24.180000px;}
.fs2_c00320{font-size:65.640000px;}
.fs7_c00320{font-size:76.020000px;}
.fs0_c00320{font-size:79.500000px;}
.fs1_c00320{font-size:96.780000px;}
.fs6_c00320{font-size:152.040000px;}
.fs5_c00320{font-size:245.400000px;}
.y0_c00320{bottom:0.000000px;}
.y8_c00320{bottom:750.810000px;}
.y3_c00320{bottom:905.475000px;}
.y2_c00320{bottom:923.610000px;}
.y1_c00320{bottom:948.675000px;}
.y7_c00320{bottom:1069.635000px;}
.y6_c00320{bottom:1091.235000px;}
.y5_c00320{bottom:1131.840000px;}
.y4_c00320{bottom:1391.040000px;}
.ha_c00320{height:3.110063px;}
.h5_c00320{height:9.340986px;}
.h6_c00320{height:15.550313px;}
.hb_c00320{height:21.759639px;}
.h4_c00320{height:59.069590px;}
.h9_c00320{height:68.410576px;}
.h2_c00320{height:71.542236px;}
.h3_c00320{height:87.092549px;}
.h8_c00320{height:136.821152px;}
.h7_c00320{height:220.836035px;}
.h0_c00320{height:1526.685000px;}
.h1_c00320{height:1527.000000px;}
.w0_c00320{width:1100.730000px;}
.w1_c00320{width:1101.000000px;}
.x0_c00320{left:0.000000px;}
.x5_c00320{left:982.365000px;}
.x2_c00320{left:989.280000px;}
.x1_c00320{left:991.005000px;}
.x3_c00320{left:1049.760000px;}
.x4_c00320{left:1062.720000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls0_c00320{letter-spacing:0.000000pt;}
.ws0_c00320{word-spacing:0.000000pt;}
.fs8_c00320{font-size:3.072000pt;}
.fs3_c00320{font-size:9.226667pt;}
.fs4_c00320{font-size:15.360000pt;}
.fs9_c00320{font-size:21.493333pt;}
.fs2_c00320{font-size:58.346667pt;}
.fs7_c00320{font-size:67.573333pt;}
.fs0_c00320{font-size:70.666667pt;}
.fs1_c00320{font-size:86.026667pt;}
.fs6_c00320{font-size:135.146667pt;}
.fs5_c00320{font-size:218.133333pt;}
.y0_c00320{bottom:0.000000pt;}
.y8_c00320{bottom:667.386667pt;}
.y3_c00320{bottom:804.866667pt;}
.y2_c00320{bottom:820.986667pt;}
.y1_c00320{bottom:843.266667pt;}
.y7_c00320{bottom:950.786667pt;}
.y6_c00320{bottom:969.986667pt;}
.y5_c00320{bottom:1006.080000pt;}
.y4_c00320{bottom:1236.480000pt;}
.ha_c00320{height:2.764500pt;}
.h5_c00320{height:8.303099pt;}
.h6_c00320{height:13.822500pt;}
.hb_c00320{height:19.341901pt;}
.h4_c00320{height:52.506302pt;}
.h9_c00320{height:60.809401pt;}
.h2_c00320{height:63.593099pt;}
.h3_c00320{height:77.415599pt;}
.h8_c00320{height:121.618802pt;}
.h7_c00320{height:196.298698pt;}
.h0_c00320{height:1357.053333pt;}
.h1_c00320{height:1357.333333pt;}
.w0_c00320{width:978.426667pt;}
.w1_c00320{width:978.666667pt;}
.x0_c00320{left:0.000000pt;}
.x5_c00320{left:873.213333pt;}
.x2_c00320{left:879.360000pt;}
.x1_c00320{left:880.893333pt;}
.x3_c00320{left:933.120000pt;}
.x4_c00320{left:944.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_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_f27682dacd59542e9b2c1514.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.109863;font-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_c00321{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);}
.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;}
.fs0_c00321{font-size:600.000000px;}
.y0_c00321{bottom:0.000000px;}
.y1_c00321{bottom:15.000000px;}
.h2_c00321{height:539.941406px;}
.h1_c00321{height:1507.500000px;}
.h0_c00321{height:1507.680000px;}
.w0_c00321{width:1111.965000px;}
.w1_c00321{width:1112.250000px;}
.x0_c00321{left:0.000000px;}
.x1_c00321{left:15.000000px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ws0_c00321{word-spacing:0.000000pt;}
.fs0_c00321{font-size:533.333333pt;}
.y0_c00321{bottom:0.000000pt;}
.y1_c00321{bottom:13.333333pt;}
.h2_c00321{height:479.947917pt;}
.h1_c00321{height:1340.000000pt;}
.h0_c00321{height:1340.160000pt;}
.w0_c00321{width:988.413333pt;}
.w1_c00321{width:988.666667pt;}
.x0_c00321{left:0.000000pt;}
.x1_c00321{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_281e4c5b31424b1c835e4fc6.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.109863;font-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_c00322{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m20_c00322{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);}
.m5_c00322{transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);}
.m10_c00322{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf_c00322{transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);}
.m22_c00322{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m15_c00322{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);}
.m8_c00322{transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);}
.m1b_c00322{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.m3a_c00322{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);}
.m11_c00322{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);}
.me_c00322{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);}
.m9_c00322{transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);}
.m23_c00322{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.md_c00322{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m12_c00322{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.ma_c00322{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00322{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);}
.m25_c00322{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m45_c00322{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m44_c00322{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);}
.m21_c00322{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m49_c00322{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m24_c00322{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);}
.m18_c00322{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m14_c00322{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m4b_c00322{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);}
.m17_c00322{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m26_c00322{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);}
.m19_c00322{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);}
.m3f_c00322{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);}
.m3b_c00322{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c00322{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m48_c00322{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);}
.m4c_c00322{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m37_c00322{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m42_c00322{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m41_c00322{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00322{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);}
.m43_c00322{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m33_c00322{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c00322{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m46_c00322{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c00322{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c00322{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00322{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00322{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m16_c00322{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m38_c00322{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);}
.m32_c00322{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00322{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m13_c00322{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00322{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);}
.m39_c00322{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00322{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00322{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_c00322{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c00322{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00322{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m30_c00322{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mc_c00322{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m6_c00322{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m34_c00322{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);}
.m40_c00322{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00322{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00322{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m36_c00322{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m47_c00322{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m3_c00322{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m28_c00322{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00322{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m31_c00322{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m27_c00322{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);}
.m29_c00322{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m4_c00322{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00322{transform:matrix(2.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.095000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00322{transform:matrix(4.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.512500,0.000000,0.000000,0.250000,0,0);}
.v0_c00322{vertical-align:0.000000px;}
.v1_c00322{vertical-align:10.380000px;}
.ls1_c00322{letter-spacing:0.000000px;}
.ls0_c00322{letter-spacing:55.213440px;}
.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;}
.fs16_c00322{font-size:3.456000px;}
.fs15_c00322{font-size:6.000000px;}
.fs0_c00322{font-size:6.900000px;}
.fs17_c00322{font-size:10.380000px;}
.fs13_c00322{font-size:13.800000px;}
.fs3_c00322{font-size:17.280000px;}
.fs14_c00322{font-size:20.760000px;}
.fs1b_c00322{font-size:24.180000px;}
.fs1_c00322{font-size:27.660000px;}
.fs19_c00322{font-size:31.080000px;}
.fs1a_c00322{font-size:34.560000px;}
.fs9_c00322{font-size:38.040000px;}
.fs12_c00322{font-size:41.460000px;}
.fs1c_c00322{font-size:48.360000px;}
.fsf_c00322{font-size:55.320000px;}
.fs5_c00322{font-size:58.740000px;}
.fs18_c00322{font-size:62.220000px;}
.fs2_c00322{font-size:65.640000px;}
.fse_c00322{font-size:69.120000px;}
.fs10_c00322{font-size:72.600000px;}
.fs11_c00322{font-size:76.020000px;}
.fsd_c00322{font-size:79.500000px;}
.fs8_c00322{font-size:82.920000px;}
.fs4_c00322{font-size:86.400000px;}
.fsb_c00322{font-size:89.880000px;}
.fsa_c00322{font-size:93.300000px;}
.fsc_c00322{font-size:96.780000px;}
.fs7_c00322{font-size:100.200000px;}
.fs6_c00322{font-size:103.680000px;}
.y0_c00322{bottom:0.000000px;}
.y4e_c00322{bottom:234.150000px;}
.y4c_c00322{bottom:235.005000px;}
.y4b_c00322{bottom:235.875000px;}
.y49_c00322{bottom:237.600000px;}
.y4a_c00322{bottom:238.470000px;}
.y4d_c00322{bottom:239.325000px;}
.y4f_c00322{bottom:244.515000px;}
.y48_c00322{bottom:250.560000px;}
.y47_c00322{bottom:254.010000px;}
.y50_c00322{bottom:254.880000px;}
.y46_c00322{bottom:255.750000px;}
.y45_c00322{bottom:258.330000px;}
.y44_c00322{bottom:259.200000px;}
.y43_c00322{bottom:275.610000px;}
.y40_c00322{bottom:276.480000px;}
.y3f_c00322{bottom:277.350000px;}
.y3e_c00322{bottom:278.205000px;}
.y42_c00322{bottom:279.930000px;}
.y41_c00322{bottom:292.890000px;}
.y3a_c00322{bottom:294.630000px;}
.y37_c00322{bottom:295.485000px;}
.y3c_c00322{bottom:296.355000px;}
.y39_c00322{bottom:298.950000px;}
.y38_c00322{bottom:299.805000px;}
.y3b_c00322{bottom:300.675000px;}
.y3d_c00322{bottom:304.995000px;}
.y36_c00322{bottom:320.550000px;}
.y35_c00322{bottom:342.150000px;}
.y34_c00322{bottom:344.730000px;}
.y33_c00322{bottom:380.160000px;}
.y24_c00322{bottom:387.075000px;}
.y25_c00322{bottom:388.800000px;}
.y26_c00322{bottom:392.250000px;}
.y27_c00322{bottom:404.355000px;}
.y22_c00322{bottom:406.080000px;}
.y23_c00322{bottom:406.950000px;}
.y20_c00322{bottom:411.270000px;}
.y21_c00322{bottom:412.995000px;}
.y1f_c00322{bottom:429.405000px;}
.y1b_c00322{bottom:430.275000px;}
.y1d_c00322{bottom:431.130000px;}
.y1c_c00322{bottom:432.870000px;}
.y1e_c00322{bottom:433.725000px;}
.y17_c00322{bottom:435.450000px;}
.y16_c00322{bottom:437.190000px;}
.y19_c00322{bottom:438.915000px;}
.y18_c00322{bottom:439.770000px;}
.y1a_c00322{bottom:442.365000px;}
.y10_c00322{bottom:455.325000px;}
.y14_c00322{bottom:457.920000px;}
.y12_c00322{bottom:461.370000px;}
.y11_c00322{bottom:463.110000px;}
.y13_c00322{bottom:464.835000px;}
.y15_c00322{bottom:468.285000px;}
.y28_c00322{bottom:476.925000px;}
.yf_c00322{bottom:480.390000px;}
.yd_c00322{bottom:482.115000px;}
.ye_c00322{bottom:483.840000px;}
.yc_c00322{bottom:484.710000px;}
.yb_c00322{bottom:488.160000px;}
.y6_c00322{bottom:505.440000px;}
.y9_c00322{bottom:506.310000px;}
.ya_c00322{bottom:511.485000px;}
.y8_c00322{bottom:512.355000px;}
.y7_c00322{bottom:514.950000px;}
.y2f_c00322{bottom:535.680000px;}
.y30_c00322{bottom:539.130000px;}
.y2e_c00322{bottom:540.000000px;}
.y31_c00322{bottom:542.595000px;}
.y32_c00322{bottom:548.640000px;}
.y2c_c00322{bottom:559.005000px;}
.y2a_c00322{bottom:559.875000px;}
.y2b_c00322{bottom:560.730000px;}
.y2d_c00322{bottom:561.600000px;}
.y29_c00322{bottom:578.010000px;}
.y5_c00322{bottom:857.085000px;}
.y4_c00322{bottom:1060.125000px;}
.y3_c00322{bottom:1199.235000px;}
.y2_c00322{bottom:1367.715000px;}
.y1_c00322{bottom:1372.035000px;}
.h18_c00322{height:3.110063px;}
.h17_c00322{height:5.399414px;}
.h2_c00322{height:6.209326px;}
.h1a_c00322{height:9.340986px;}
.h15_c00322{height:12.418652px;}
.h5_c00322{height:15.550313px;}
.h16_c00322{height:18.681973px;}
.h1e_c00322{height:21.759639px;}
.h19_c00322{height:22.798652px;}
.h3_c00322{height:24.891299px;}
.h1c_c00322{height:27.968965px;}
.h1d_c00322{height:31.100625px;}
.hb_c00322{height:34.232285px;}
.h14_c00322{height:37.309951px;}
.h1f_c00322{height:43.519277px;}
.h11_c00322{height:49.782598px;}
.h7_c00322{height:52.860264px;}
.h1b_c00322{height:55.991924px;}
.h4_c00322{height:59.069590px;}
.h10_c00322{height:62.201250px;}
.h12_c00322{height:65.332910px;}
.h13_c00322{height:68.410576px;}
.hf_c00322{height:71.542236px;}
.ha_c00322{height:74.619902px;}
.h6_c00322{height:77.751563px;}
.hd_c00322{height:80.883223px;}
.hc_c00322{height:83.960889px;}
.he_c00322{height:87.092549px;}
.h9_c00322{height:90.170215px;}
.h8_c00322{height:93.301875px;}
.h0_c00322{height:1526.685000px;}
.h1_c00322{height:1527.000000px;}
.w0_c00322{width:1100.730000px;}
.w1_c00322{width:1101.000000px;}
.x0_c00322{left:0.000000px;}
.x44_c00322{left:236.730000px;}
.x2d_c00322{left:238.470000px;}
.x6_c00322{left:241.920000px;}
.x2e_c00322{left:246.240000px;}
.x7_c00322{left:254.010000px;}
.x1f_c00322{left:260.070000px;}
.x1c_c00322{left:263.520000px;}
.x10_c00322{left:266.115000px;}
.x8_c00322{left:270.435000px;}
.x35_c00322{left:283.395000px;}
.x9_c00322{left:289.440000px;}
.x20_c00322{left:292.890000px;}
.x36_c00322{left:307.590000px;}
.xd_c00322{left:309.315000px;}
.x37_c00322{left:324.000000px;}
.x11_c00322{left:329.190000px;}
.x45_c00322{left:333.510000px;}
.x38_c00322{left:336.090000px;}
.x17_c00322{left:342.150000px;}
.x39_c00322{left:348.195000px;}
.x3f_c00322{left:349.920000px;}
.xa_c00322{left:351.645000px;}
.x12_c00322{left:355.110000px;}
.x28_c00322{left:356.835000px;}
.x23_c00322{left:359.430000px;}
.x3a_c00322{left:362.880000px;}
.x21_c00322{left:365.475000px;}
.x42_c00322{left:371.520000px;}
.x3b_c00322{left:378.435000px;}
.xe_c00322{left:380.160000px;}
.x24_c00322{left:389.670000px;}
.xf_c00322{left:406.080000px;}
.x18_c00322{left:407.805000px;}
.x46_c00322{left:415.590000px;}
.x3c_c00322{left:423.360000px;}
.xb_c00322{left:425.085000px;}
.x13_c00322{left:432.870000px;}
.x40_c00322{left:437.190000px;}
.x19_c00322{left:443.235000px;}
.x22_c00322{left:455.325000px;}
.x3d_c00322{left:462.240000px;}
.x14_c00322{left:466.560000px;}
.x41_c00322{left:468.285000px;}
.x15_c00322{left:479.520000px;}
.xc_c00322{left:485.565000px;}
.x29_c00322{left:489.885000px;}
.x1a_c00322{left:498.525000px;}
.x25_c00322{left:506.310000px;}
.x43_c00322{left:509.760000px;}
.x1d_c00322{left:514.080000px;}
.x1b_c00322{left:520.995000px;}
.x3e_c00322{left:524.445000px;}
.x16_c00322{left:533.955000px;}
.x2f_c00322{left:539.130000px;}
.x1e_c00322{left:545.190000px;}
.x30_c00322{left:554.685000px;}
.x31_c00322{left:575.430000px;}
.x32_c00322{left:614.310000px;}
.x2a_c00322{left:635.040000px;}
.x2b_c00322{left:667.005000px;}
.x2c_c00322{left:714.525000px;}
.x33_c00322{left:773.280000px;}
.x1_c00322{left:935.715000px;}
.x2_c00322{left:946.950000px;}
.x34_c00322{left:1014.330000px;}
.x48_c00322{left:1047.165000px;}
.x47_c00322{left:1052.363640px;}
.x4_c00322{left:1056.675000px;}
.x27_c00322{left:1067.910000px;}
.x5_c00322{left:1075.680000px;}
.x26_c00322{left:1083.450000px;}
.x3_c00322{left:1085.190000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.v1_c00322{vertical-align:9.226667pt;}
.ls1_c00322{letter-spacing:0.000000pt;}
.ls0_c00322{letter-spacing:49.078613pt;}
.ws0_c00322{word-spacing:0.000000pt;}
.fs16_c00322{font-size:3.072000pt;}
.fs15_c00322{font-size:5.333333pt;}
.fs0_c00322{font-size:6.133333pt;}
.fs17_c00322{font-size:9.226667pt;}
.fs13_c00322{font-size:12.266667pt;}
.fs3_c00322{font-size:15.360000pt;}
.fs14_c00322{font-size:18.453333pt;}
.fs1b_c00322{font-size:21.493333pt;}
.fs1_c00322{font-size:24.586667pt;}
.fs19_c00322{font-size:27.626667pt;}
.fs1a_c00322{font-size:30.720000pt;}
.fs9_c00322{font-size:33.813333pt;}
.fs12_c00322{font-size:36.853333pt;}
.fs1c_c00322{font-size:42.986667pt;}
.fsf_c00322{font-size:49.173333pt;}
.fs5_c00322{font-size:52.213333pt;}
.fs18_c00322{font-size:55.306667pt;}
.fs2_c00322{font-size:58.346667pt;}
.fse_c00322{font-size:61.440000pt;}
.fs10_c00322{font-size:64.533333pt;}
.fs11_c00322{font-size:67.573333pt;}
.fsd_c00322{font-size:70.666667pt;}
.fs8_c00322{font-size:73.706667pt;}
.fs4_c00322{font-size:76.800000pt;}
.fsb_c00322{font-size:79.893333pt;}
.fsa_c00322{font-size:82.933333pt;}
.fsc_c00322{font-size:86.026667pt;}
.fs7_c00322{font-size:89.066667pt;}
.fs6_c00322{font-size:92.160000pt;}
.y0_c00322{bottom:0.000000pt;}
.y4e_c00322{bottom:208.133333pt;}
.y4c_c00322{bottom:208.893333pt;}
.y4b_c00322{bottom:209.666667pt;}
.y49_c00322{bottom:211.200000pt;}
.y4a_c00322{bottom:211.973333pt;}
.y4d_c00322{bottom:212.733333pt;}
.y4f_c00322{bottom:217.346667pt;}
.y48_c00322{bottom:222.720000pt;}
.y47_c00322{bottom:225.786667pt;}
.y50_c00322{bottom:226.560000pt;}
.y46_c00322{bottom:227.333333pt;}
.y45_c00322{bottom:229.626667pt;}
.y44_c00322{bottom:230.400000pt;}
.y43_c00322{bottom:244.986667pt;}
.y40_c00322{bottom:245.760000pt;}
.y3f_c00322{bottom:246.533333pt;}
.y3e_c00322{bottom:247.293333pt;}
.y42_c00322{bottom:248.826667pt;}
.y41_c00322{bottom:260.346667pt;}
.y3a_c00322{bottom:261.893333pt;}
.y37_c00322{bottom:262.653333pt;}
.y3c_c00322{bottom:263.426667pt;}
.y39_c00322{bottom:265.733333pt;}
.y38_c00322{bottom:266.493333pt;}
.y3b_c00322{bottom:267.266667pt;}
.y3d_c00322{bottom:271.106667pt;}
.y36_c00322{bottom:284.933333pt;}
.y35_c00322{bottom:304.133333pt;}
.y34_c00322{bottom:306.426667pt;}
.y33_c00322{bottom:337.920000pt;}
.y24_c00322{bottom:344.066667pt;}
.y25_c00322{bottom:345.600000pt;}
.y26_c00322{bottom:348.666667pt;}
.y27_c00322{bottom:359.426667pt;}
.y22_c00322{bottom:360.960000pt;}
.y23_c00322{bottom:361.733333pt;}
.y20_c00322{bottom:365.573333pt;}
.y21_c00322{bottom:367.106667pt;}
.y1f_c00322{bottom:381.693333pt;}
.y1b_c00322{bottom:382.466667pt;}
.y1d_c00322{bottom:383.226667pt;}
.y1c_c00322{bottom:384.773333pt;}
.y1e_c00322{bottom:385.533333pt;}
.y17_c00322{bottom:387.066667pt;}
.y16_c00322{bottom:388.613333pt;}
.y19_c00322{bottom:390.146667pt;}
.y18_c00322{bottom:390.906667pt;}
.y1a_c00322{bottom:393.213333pt;}
.y10_c00322{bottom:404.733333pt;}
.y14_c00322{bottom:407.040000pt;}
.y12_c00322{bottom:410.106667pt;}
.y11_c00322{bottom:411.653333pt;}
.y13_c00322{bottom:413.186667pt;}
.y15_c00322{bottom:416.253333pt;}
.y28_c00322{bottom:423.933333pt;}
.yf_c00322{bottom:427.013333pt;}
.yd_c00322{bottom:428.546667pt;}
.ye_c00322{bottom:430.080000pt;}
.yc_c00322{bottom:430.853333pt;}
.yb_c00322{bottom:433.920000pt;}
.y6_c00322{bottom:449.280000pt;}
.y9_c00322{bottom:450.053333pt;}
.ya_c00322{bottom:454.653333pt;}
.y8_c00322{bottom:455.426667pt;}
.y7_c00322{bottom:457.733333pt;}
.y2f_c00322{bottom:476.160000pt;}
.y30_c00322{bottom:479.226667pt;}
.y2e_c00322{bottom:480.000000pt;}
.y31_c00322{bottom:482.306667pt;}
.y32_c00322{bottom:487.680000pt;}
.y2c_c00322{bottom:496.893333pt;}
.y2a_c00322{bottom:497.666667pt;}
.y2b_c00322{bottom:498.426667pt;}
.y2d_c00322{bottom:499.200000pt;}
.y29_c00322{bottom:513.786667pt;}
.y5_c00322{bottom:761.853333pt;}
.y4_c00322{bottom:942.333333pt;}
.y3_c00322{bottom:1065.986667pt;}
.y2_c00322{bottom:1215.746667pt;}
.y1_c00322{bottom:1219.586667pt;}
.h18_c00322{height:2.764500pt;}
.h17_c00322{height:4.799479pt;}
.h2_c00322{height:5.519401pt;}
.h1a_c00322{height:8.303099pt;}
.h15_c00322{height:11.038802pt;}
.h5_c00322{height:13.822500pt;}
.h16_c00322{height:16.606198pt;}
.h1e_c00322{height:19.341901pt;}
.h19_c00322{height:20.265469pt;}
.h3_c00322{height:22.125599pt;}
.h1c_c00322{height:24.861302pt;}
.h1d_c00322{height:27.645000pt;}
.hb_c00322{height:30.428698pt;}
.h14_c00322{height:33.164401pt;}
.h1f_c00322{height:38.683802pt;}
.h11_c00322{height:44.251198pt;}
.h7_c00322{height:46.986901pt;}
.h1b_c00322{height:49.770599pt;}
.h4_c00322{height:52.506302pt;}
.h10_c00322{height:55.290000pt;}
.h12_c00322{height:58.073698pt;}
.h13_c00322{height:60.809401pt;}
.hf_c00322{height:63.593099pt;}
.ha_c00322{height:66.328802pt;}
.h6_c00322{height:69.112500pt;}
.hd_c00322{height:71.896198pt;}
.hc_c00322{height:74.631901pt;}
.he_c00322{height:77.415599pt;}
.h9_c00322{height:80.151302pt;}
.h8_c00322{height:82.935000pt;}
.h0_c00322{height:1357.053333pt;}
.h1_c00322{height:1357.333333pt;}
.w0_c00322{width:978.426667pt;}
.w1_c00322{width:978.666667pt;}
.x0_c00322{left:0.000000pt;}
.x44_c00322{left:210.426667pt;}
.x2d_c00322{left:211.973333pt;}
.x6_c00322{left:215.040000pt;}
.x2e_c00322{left:218.880000pt;}
.x7_c00322{left:225.786667pt;}
.x1f_c00322{left:231.173333pt;}
.x1c_c00322{left:234.240000pt;}
.x10_c00322{left:236.546667pt;}
.x8_c00322{left:240.386667pt;}
.x35_c00322{left:251.906667pt;}
.x9_c00322{left:257.280000pt;}
.x20_c00322{left:260.346667pt;}
.x36_c00322{left:273.413333pt;}
.xd_c00322{left:274.946667pt;}
.x37_c00322{left:288.000000pt;}
.x11_c00322{left:292.613333pt;}
.x45_c00322{left:296.453333pt;}
.x38_c00322{left:298.746667pt;}
.x17_c00322{left:304.133333pt;}
.x39_c00322{left:309.506667pt;}
.x3f_c00322{left:311.040000pt;}
.xa_c00322{left:312.573333pt;}
.x12_c00322{left:315.653333pt;}
.x28_c00322{left:317.186667pt;}
.x23_c00322{left:319.493333pt;}
.x3a_c00322{left:322.560000pt;}
.x21_c00322{left:324.866667pt;}
.x42_c00322{left:330.240000pt;}
.x3b_c00322{left:336.386667pt;}
.xe_c00322{left:337.920000pt;}
.x24_c00322{left:346.373333pt;}
.xf_c00322{left:360.960000pt;}
.x18_c00322{left:362.493333pt;}
.x46_c00322{left:369.413333pt;}
.x3c_c00322{left:376.320000pt;}
.xb_c00322{left:377.853333pt;}
.x13_c00322{left:384.773333pt;}
.x40_c00322{left:388.613333pt;}
.x19_c00322{left:393.986667pt;}
.x22_c00322{left:404.733333pt;}
.x3d_c00322{left:410.880000pt;}
.x14_c00322{left:414.720000pt;}
.x41_c00322{left:416.253333pt;}
.x15_c00322{left:426.240000pt;}
.xc_c00322{left:431.613333pt;}
.x29_c00322{left:435.453333pt;}
.x1a_c00322{left:443.133333pt;}
.x25_c00322{left:450.053333pt;}
.x43_c00322{left:453.120000pt;}
.x1d_c00322{left:456.960000pt;}
.x1b_c00322{left:463.106667pt;}
.x3e_c00322{left:466.173333pt;}
.x16_c00322{left:474.626667pt;}
.x2f_c00322{left:479.226667pt;}
.x1e_c00322{left:484.613333pt;}
.x30_c00322{left:493.053333pt;}
.x31_c00322{left:511.493333pt;}
.x32_c00322{left:546.053333pt;}
.x2a_c00322{left:564.480000pt;}
.x2b_c00322{left:592.893333pt;}
.x2c_c00322{left:635.133333pt;}
.x33_c00322{left:687.360000pt;}
.x1_c00322{left:831.746667pt;}
.x2_c00322{left:841.733333pt;}
.x34_c00322{left:901.626667pt;}
.x48_c00322{left:930.813333pt;}
.x47_c00322{left:935.434347pt;}
.x4_c00322{left:939.266667pt;}
.x27_c00322{left:949.253333pt;}
.x5_c00322{left:956.160000pt;}
.x26_c00322{left:963.066667pt;}
.x3_c00322{left:964.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3cadb57f24d70fa6a5ce7083.woff2')format("woff");}.ff1_c00323{font-family:ff1_c00323;line-height:1.109863;font-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_c00323{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);}
.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;}
.fs0_c00323{font-size:600.000000px;}
.y0_c00323{bottom:0.000000px;}
.y1_c00323{bottom:15.000000px;}
.h2_c00323{height:539.941406px;}
.h1_c00323{height:1507.500000px;}
.h0_c00323{height:1507.680000px;}
.w0_c00323{width:1111.965000px;}
.w1_c00323{width:1112.250000px;}
.x0_c00323{left:0.000000px;}
.x1_c00323{left:15.000000px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws0_c00323{word-spacing:0.000000pt;}
.fs0_c00323{font-size:533.333333pt;}
.y0_c00323{bottom:0.000000pt;}
.y1_c00323{bottom:13.333333pt;}
.h2_c00323{height:479.947917pt;}
.h1_c00323{height:1340.000000pt;}
.h0_c00323{height:1340.160000pt;}
.w0_c00323{width:988.413333pt;}
.w1_c00323{width:988.666667pt;}
.x0_c00323{left:0.000000pt;}
.x1_c00323{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7416280d6f7a0ae0be12bd83.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.109863;font-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_c00324{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c00324{transform:matrix(0.022075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022075,0.000000,0.000000,0.250000,0,0);}
.m2_c00324{transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);}
.m4_c00324{transform:matrix(0.065275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065275,0.000000,0.000000,0.250000,0,0);}
.m0_c00324{transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);}
.m6_c00324{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c00324{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m7_c00324{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);}
.m1_c00324{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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;}
.fs6_c00324{font-size:10.380000px;}
.fs8_c00324{font-size:17.280000px;}
.fs1_c00324{font-size:20.760000px;}
.fs0_c00324{font-size:24.180000px;}
.fs3_c00324{font-size:27.660000px;}
.fs7_c00324{font-size:31.080000px;}
.fs2_c00324{font-size:76.020000px;}
.fs4_c00324{font-size:79.500000px;}
.fs5_c00324{font-size:117.480000px;}
.y0_c00324{bottom:0.000000px;}
.y9_c00324{bottom:94.170000px;}
.y8_c00324{bottom:96.765000px;}
.y2_c00324{bottom:168.480000px;}
.y6_c00324{bottom:174.525000px;}
.y7_c00324{bottom:182.310000px;}
.y5_c00324{bottom:204.765000px;}
.y4_c00324{bottom:229.830000px;}
.y3_c00324{bottom:242.790000px;}
.y1_c00324{bottom:854.490000px;}
.h8_c00324{height:9.340986px;}
.ha_c00324{height:15.550313px;}
.h3_c00324{height:18.681973px;}
.h2_c00324{height:21.759639px;}
.h5_c00324{height:24.891299px;}
.h9_c00324{height:27.968965px;}
.h4_c00324{height:68.410576px;}
.h6_c00324{height:71.542236px;}
.h7_c00324{height:105.720527px;}
.h0_c00324{height:1526.685000px;}
.h1_c00324{height:1527.000000px;}
.w0_c00324{width:1100.730000px;}
.w1_c00324{width:1101.000000px;}
.x0_c00324{left:0.000000px;}
.x5_c00324{left:770.685000px;}
.x2_c00324{left:773.280000px;}
.x6_c00324{left:817.350000px;}
.x3_c00324{left:997.050000px;}
.x4_c00324{left:1009.155000px;}
.x1_c00324{left:1018.650000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls0_c00324{letter-spacing:0.000000pt;}
.ws0_c00324{word-spacing:0.000000pt;}
.fs6_c00324{font-size:9.226667pt;}
.fs8_c00324{font-size:15.360000pt;}
.fs1_c00324{font-size:18.453333pt;}
.fs0_c00324{font-size:21.493333pt;}
.fs3_c00324{font-size:24.586667pt;}
.fs7_c00324{font-size:27.626667pt;}
.fs2_c00324{font-size:67.573333pt;}
.fs4_c00324{font-size:70.666667pt;}
.fs5_c00324{font-size:104.426667pt;}
.y0_c00324{bottom:0.000000pt;}
.y9_c00324{bottom:83.706667pt;}
.y8_c00324{bottom:86.013333pt;}
.y2_c00324{bottom:149.760000pt;}
.y6_c00324{bottom:155.133333pt;}
.y7_c00324{bottom:162.053333pt;}
.y5_c00324{bottom:182.013333pt;}
.y4_c00324{bottom:204.293333pt;}
.y3_c00324{bottom:215.813333pt;}
.y1_c00324{bottom:759.546667pt;}
.h8_c00324{height:8.303099pt;}
.ha_c00324{height:13.822500pt;}
.h3_c00324{height:16.606198pt;}
.h2_c00324{height:19.341901pt;}
.h5_c00324{height:22.125599pt;}
.h9_c00324{height:24.861302pt;}
.h4_c00324{height:60.809401pt;}
.h6_c00324{height:63.593099pt;}
.h7_c00324{height:93.973802pt;}
.h0_c00324{height:1357.053333pt;}
.h1_c00324{height:1357.333333pt;}
.w0_c00324{width:978.426667pt;}
.w1_c00324{width:978.666667pt;}
.x0_c00324{left:0.000000pt;}
.x5_c00324{left:685.053333pt;}
.x2_c00324{left:687.360000pt;}
.x6_c00324{left:726.533333pt;}
.x3_c00324{left:886.266667pt;}
.x4_c00324{left:897.026667pt;}
.x1_c00324{left:905.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_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_5acc07cf723ee1b41beb69d4.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.109863;font-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_c00325{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m21_c00325{transform:matrix(0.124650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124650,0.000000,0.000000,0.250000,0,0);}
.m2c_c00325{transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);}
.m17_c00325{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00325{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00325{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m1e_c00325{transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);}
.m1d_c00325{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m16_c00325{transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);}
.me_c00325{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m13_c00325{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);}
.m25_c00325{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);}
.m2e_c00325{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m11_c00325{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m14_c00325{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);}
.m8_c00325{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);}
.m18_c00325{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m7_c00325{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);}
.m12_c00325{transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);}
.m22_c00325{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m1a_c00325{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);}
.m15_c00325{transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);}
.mf_c00325{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);}
.m30_c00325{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);}
.m4_c00325{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c00325{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);}
.m19_c00325{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c00325{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00325{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);}
.m2a_c00325{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00325{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c00325{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00325{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);}
.m2_c00325{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c00325{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);}
.ma_c00325{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m28_c00325{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mb_c00325{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m26_c00325{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);}
.m1b_c00325{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);}
.mc_c00325{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.md_c00325{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m20_c00325{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m31_c00325{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m27_c00325{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m0_c00325{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);}
.m10_c00325{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m24_c00325{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m32_c00325{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1_c00325{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m23_c00325{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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:-17.165516px;}
.ws1_c00325{word-spacing:0.000000px;}
.fc0_c00325{color:transparent;}
.fs14_c00325{font-size:3.456000px;}
.fs0_c00325{font-size:6.900000px;}
.fs8_c00325{font-size:10.380000px;}
.fs16_c00325{font-size:13.800000px;}
.fs15_c00325{font-size:17.280000px;}
.fs1a_c00325{font-size:24.180000px;}
.fs19_c00325{font-size:27.660000px;}
.fs17_c00325{font-size:31.080000px;}
.fs1b_c00325{font-size:38.040000px;}
.fs13_c00325{font-size:41.460000px;}
.fs9_c00325{font-size:51.840000px;}
.fse_c00325{font-size:55.320000px;}
.fs18_c00325{font-size:58.740000px;}
.fs3_c00325{font-size:62.220000px;}
.fs2_c00325{font-size:65.640000px;}
.fs1_c00325{font-size:69.120000px;}
.fs10_c00325{font-size:72.600000px;}
.fs5_c00325{font-size:76.020000px;}
.fsb_c00325{font-size:79.500000px;}
.fs4_c00325{font-size:82.920000px;}
.fs11_c00325{font-size:89.880000px;}
.fs6_c00325{font-size:93.300000px;}
.fs12_c00325{font-size:100.200000px;}
.fs7_c00325{font-size:103.680000px;}
.fsa_c00325{font-size:107.160000px;}
.fsc_c00325{font-size:110.580000px;}
.fsd_c00325{font-size:114.060000px;}
.fsf_c00325{font-size:131.340000px;}
.y0_c00325{bottom:0.000000px;}
.y29_c00325{bottom:167.610000px;}
.y27_c00325{bottom:176.250000px;}
.y28_c00325{bottom:177.120000px;}
.y26_c00325{bottom:455.325000px;}
.y25_c00325{bottom:458.790000px;}
.y24_c00325{bottom:688.605000px;}
.y23_c00325{bottom:762.915000px;}
.y22_c00325{bottom:768.960000px;}
.y21_c00325{bottom:978.045000px;}
.y1f_c00325{bottom:980.640000px;}
.y20_c00325{bottom:981.510000px;}
.y1d_c00325{bottom:984.960000px;}
.y1e_c00325{bottom:986.685000px;}
.y1b_c00325{bottom:1000.515000px;}
.y1c_c00325{bottom:1003.965000px;}
.y1a_c00325{bottom:1008.285000px;}
.y16_c00325{bottom:1015.200000px;}
.y17_c00325{bottom:1029.885000px;}
.y18_c00325{bottom:1030.755000px;}
.y19_c00325{bottom:1031.610000px;}
.y14_c00325{bottom:1045.440000px;}
.y15_c00325{bottom:1052.355000px;}
.y13_c00325{bottom:1054.950000px;}
.y12_c00325{bottom:1057.530000px;}
.y10_c00325{bottom:1060.125000px;}
.yd_c00325{bottom:1060.995000px;}
.y11_c00325{bottom:1061.850000px;}
.yc_c00325{bottom:1062.720000px;}
.yf_c00325{bottom:1063.590000px;}
.ye_c00325{bottom:1064.445000px;}
.ya_c00325{bottom:1089.510000px;}
.y6_c00325{bottom:1092.090000px;}
.y3_c00325{bottom:1093.830000px;}
.y9_c00325{bottom:1094.685000px;}
.y4_c00325{bottom:1095.555000px;}
.y5_c00325{bottom:1096.410000px;}
.y7_c00325{bottom:1097.280000px;}
.y8_c00325{bottom:1098.150000px;}
.yb_c00325{bottom:1116.285000px;}
.y1_c00325{bottom:1120.605000px;}
.y2_c00325{bottom:1122.330000px;}
.h16_c00325{height:3.110063px;}
.h2_c00325{height:6.209326px;}
.ha_c00325{height:9.340986px;}
.h18_c00325{height:12.418652px;}
.h17_c00325{height:15.550313px;}
.h1c_c00325{height:21.759639px;}
.h1b_c00325{height:24.891299px;}
.h19_c00325{height:27.968965px;}
.h1d_c00325{height:34.232285px;}
.h15_c00325{height:37.309951px;}
.hb_c00325{height:46.650937px;}
.h10_c00325{height:49.782598px;}
.h1a_c00325{height:52.860264px;}
.h5_c00325{height:55.991924px;}
.h4_c00325{height:59.069590px;}
.h3_c00325{height:62.201250px;}
.h12_c00325{height:65.332910px;}
.h7_c00325{height:68.410576px;}
.hd_c00325{height:71.542236px;}
.h6_c00325{height:74.619902px;}
.h13_c00325{height:80.883223px;}
.h8_c00325{height:83.960889px;}
.h14_c00325{height:90.170215px;}
.h9_c00325{height:93.301875px;}
.hc_c00325{height:96.433535px;}
.he_c00325{height:99.511201px;}
.hf_c00325{height:102.642861px;}
.h11_c00325{height:118.193174px;}
.h1_c00325{height:1507.500000px;}
.h0_c00325{height:1507.680000px;}
.w0_c00325{width:1111.965000px;}
.w1_c00325{width:1112.250000px;}
.x0_c00325{left:0.000000px;}
.x35_c00325{left:43.200000px;}
.x36_c00325{left:51.840000px;}
.x32_c00325{left:92.445000px;}
.x34_c00325{left:95.910000px;}
.x33_c00325{left:98.490000px;}
.x39_c00325{left:191.805000px;}
.x3_c00325{left:224.640000px;}
.x28_c00325{left:235.875000px;}
.x29_c00325{left:238.470000px;}
.x37_c00325{left:247.110000px;}
.x4_c00325{left:252.285000px;}
.x16_c00325{left:255.750000px;}
.x38_c00325{left:263.520000px;}
.x5_c00325{left:275.610000px;}
.x24_c00325{left:286.845000px;}
.x6_c00325{left:298.080000px;}
.x25_c00325{left:299.805000px;}
.x17_c00325{left:305.850000px;}
.x2d_c00325{left:320.550000px;}
.x7_c00325{left:332.640000px;}
.x18_c00325{left:343.005000px;}
.x2e_c00325{left:344.730000px;}
.x2f_c00325{left:358.560000px;}
.x8_c00325{left:367.200000px;}
.x19_c00325{left:374.115000px;}
.x30_c00325{left:379.290000px;}
.x9_c00325{left:388.800000px;}
.x31_c00325{left:393.990000px;}
.x1a_c00325{left:402.630000px;}
.xa_c00325{left:411.270000px;}
.xb_c00325{left:434.595000px;}
.x1b_c00325{left:450.150000px;}
.xc_c00325{left:476.925000px;}
.x1c_c00325{left:513.210000px;}
.xd_c00325{left:520.125000px;}
.x1d_c00325{left:555.555000px;}
.xe_c00325{left:572.835000px;}
.x1e_c00325{left:597.030000px;}
.x26_c00325{left:602.205000px;}
.xf_c00325{left:607.395000px;}
.x2b_c00325{left:616.890000px;}
.x2a_c00325{left:646.275000px;}
.x27_c00325{left:652.320000px;}
.x10_c00325{left:659.235000px;}
.x1f_c00325{left:662.685000px;}
.x1_c00325{left:679.965000px;}
.x11_c00325{left:694.650000px;}
.x12_c00325{left:727.485000px;}
.x2c_c00325{left:748.230000px;}
.x20_c00325{left:749.955000px;}
.x13_c00325{left:758.595000px;}
.x21_c00325{left:762.915000px;}
.x2_c00325{left:782.790000px;}
.x22_c00325{left:789.690000px;}
.x23_c00325{left:824.250000px;}
.x14_c00325{left:845.850000px;}
.x15_c00325{left:867.450000px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls0_c00325{letter-spacing:0.000000pt;}
.ws0_c00325{word-spacing:-15.258237pt;}
.ws1_c00325{word-spacing:0.000000pt;}
.fs14_c00325{font-size:3.072000pt;}
.fs0_c00325{font-size:6.133333pt;}
.fs8_c00325{font-size:9.226667pt;}
.fs16_c00325{font-size:12.266667pt;}
.fs15_c00325{font-size:15.360000pt;}
.fs1a_c00325{font-size:21.493333pt;}
.fs19_c00325{font-size:24.586667pt;}
.fs17_c00325{font-size:27.626667pt;}
.fs1b_c00325{font-size:33.813333pt;}
.fs13_c00325{font-size:36.853333pt;}
.fs9_c00325{font-size:46.080000pt;}
.fse_c00325{font-size:49.173333pt;}
.fs18_c00325{font-size:52.213333pt;}
.fs3_c00325{font-size:55.306667pt;}
.fs2_c00325{font-size:58.346667pt;}
.fs1_c00325{font-size:61.440000pt;}
.fs10_c00325{font-size:64.533333pt;}
.fs5_c00325{font-size:67.573333pt;}
.fsb_c00325{font-size:70.666667pt;}
.fs4_c00325{font-size:73.706667pt;}
.fs11_c00325{font-size:79.893333pt;}
.fs6_c00325{font-size:82.933333pt;}
.fs12_c00325{font-size:89.066667pt;}
.fs7_c00325{font-size:92.160000pt;}
.fsa_c00325{font-size:95.253333pt;}
.fsc_c00325{font-size:98.293333pt;}
.fsd_c00325{font-size:101.386667pt;}
.fsf_c00325{font-size:116.746667pt;}
.y0_c00325{bottom:0.000000pt;}
.y29_c00325{bottom:148.986667pt;}
.y27_c00325{bottom:156.666667pt;}
.y28_c00325{bottom:157.440000pt;}
.y26_c00325{bottom:404.733333pt;}
.y25_c00325{bottom:407.813333pt;}
.y24_c00325{bottom:612.093333pt;}
.y23_c00325{bottom:678.146667pt;}
.y22_c00325{bottom:683.520000pt;}
.y21_c00325{bottom:869.373333pt;}
.y1f_c00325{bottom:871.680000pt;}
.y20_c00325{bottom:872.453333pt;}
.y1d_c00325{bottom:875.520000pt;}
.y1e_c00325{bottom:877.053333pt;}
.y1b_c00325{bottom:889.346667pt;}
.y1c_c00325{bottom:892.413333pt;}
.y1a_c00325{bottom:896.253333pt;}
.y16_c00325{bottom:902.400000pt;}
.y17_c00325{bottom:915.453333pt;}
.y18_c00325{bottom:916.226667pt;}
.y19_c00325{bottom:916.986667pt;}
.y14_c00325{bottom:929.280000pt;}
.y15_c00325{bottom:935.426667pt;}
.y13_c00325{bottom:937.733333pt;}
.y12_c00325{bottom:940.026667pt;}
.y10_c00325{bottom:942.333333pt;}
.yd_c00325{bottom:943.106667pt;}
.y11_c00325{bottom:943.866667pt;}
.yc_c00325{bottom:944.640000pt;}
.yf_c00325{bottom:945.413333pt;}
.ye_c00325{bottom:946.173333pt;}
.ya_c00325{bottom:968.453333pt;}
.y6_c00325{bottom:970.746667pt;}
.y3_c00325{bottom:972.293333pt;}
.y9_c00325{bottom:973.053333pt;}
.y4_c00325{bottom:973.826667pt;}
.y5_c00325{bottom:974.586667pt;}
.y7_c00325{bottom:975.360000pt;}
.y8_c00325{bottom:976.133333pt;}
.yb_c00325{bottom:992.253333pt;}
.y1_c00325{bottom:996.093333pt;}
.y2_c00325{bottom:997.626667pt;}
.h16_c00325{height:2.764500pt;}
.h2_c00325{height:5.519401pt;}
.ha_c00325{height:8.303099pt;}
.h18_c00325{height:11.038802pt;}
.h17_c00325{height:13.822500pt;}
.h1c_c00325{height:19.341901pt;}
.h1b_c00325{height:22.125599pt;}
.h19_c00325{height:24.861302pt;}
.h1d_c00325{height:30.428698pt;}
.h15_c00325{height:33.164401pt;}
.hb_c00325{height:41.467500pt;}
.h10_c00325{height:44.251198pt;}
.h1a_c00325{height:46.986901pt;}
.h5_c00325{height:49.770599pt;}
.h4_c00325{height:52.506302pt;}
.h3_c00325{height:55.290000pt;}
.h12_c00325{height:58.073698pt;}
.h7_c00325{height:60.809401pt;}
.hd_c00325{height:63.593099pt;}
.h6_c00325{height:66.328802pt;}
.h13_c00325{height:71.896198pt;}
.h8_c00325{height:74.631901pt;}
.h14_c00325{height:80.151302pt;}
.h9_c00325{height:82.935000pt;}
.hc_c00325{height:85.718698pt;}
.he_c00325{height:88.454401pt;}
.hf_c00325{height:91.238099pt;}
.h11_c00325{height:105.060599pt;}
.h1_c00325{height:1340.000000pt;}
.h0_c00325{height:1340.160000pt;}
.w0_c00325{width:988.413333pt;}
.w1_c00325{width:988.666667pt;}
.x0_c00325{left:0.000000pt;}
.x35_c00325{left:38.400000pt;}
.x36_c00325{left:46.080000pt;}
.x32_c00325{left:82.173333pt;}
.x34_c00325{left:85.253333pt;}
.x33_c00325{left:87.546667pt;}
.x39_c00325{left:170.493333pt;}
.x3_c00325{left:199.680000pt;}
.x28_c00325{left:209.666667pt;}
.x29_c00325{left:211.973333pt;}
.x37_c00325{left:219.653333pt;}
.x4_c00325{left:224.253333pt;}
.x16_c00325{left:227.333333pt;}
.x38_c00325{left:234.240000pt;}
.x5_c00325{left:244.986667pt;}
.x24_c00325{left:254.973333pt;}
.x6_c00325{left:264.960000pt;}
.x25_c00325{left:266.493333pt;}
.x17_c00325{left:271.866667pt;}
.x2d_c00325{left:284.933333pt;}
.x7_c00325{left:295.680000pt;}
.x18_c00325{left:304.893333pt;}
.x2e_c00325{left:306.426667pt;}
.x2f_c00325{left:318.720000pt;}
.x8_c00325{left:326.400000pt;}
.x19_c00325{left:332.546667pt;}
.x30_c00325{left:337.146667pt;}
.x9_c00325{left:345.600000pt;}
.x31_c00325{left:350.213333pt;}
.x1a_c00325{left:357.893333pt;}
.xa_c00325{left:365.573333pt;}
.xb_c00325{left:386.306667pt;}
.x1b_c00325{left:400.133333pt;}
.xc_c00325{left:423.933333pt;}
.x1c_c00325{left:456.186667pt;}
.xd_c00325{left:462.333333pt;}
.x1d_c00325{left:493.826667pt;}
.xe_c00325{left:509.186667pt;}
.x1e_c00325{left:530.693333pt;}
.x26_c00325{left:535.293333pt;}
.xf_c00325{left:539.906667pt;}
.x2b_c00325{left:548.346667pt;}
.x2a_c00325{left:574.466667pt;}
.x27_c00325{left:579.840000pt;}
.x10_c00325{left:585.986667pt;}
.x1f_c00325{left:589.053333pt;}
.x1_c00325{left:604.413333pt;}
.x11_c00325{left:617.466667pt;}
.x12_c00325{left:646.653333pt;}
.x2c_c00325{left:665.093333pt;}
.x20_c00325{left:666.626667pt;}
.x13_c00325{left:674.306667pt;}
.x21_c00325{left:678.146667pt;}
.x2_c00325{left:695.813333pt;}
.x22_c00325{left:701.946667pt;}
.x23_c00325{left:732.666667pt;}
.x14_c00325{left:751.866667pt;}
.x15_c00325{left:771.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ee02088af062dada11cc6c0.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.109863;font-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_c00326{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m19_c00326{transform:matrix(0.088050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088050,0.000000,0.000000,0.250000,0,0);}
.m4d_c00326{transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102000,0.000000,0.000000,0.250000,0,0);}
.m4_c00326{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m5b_c00326{transform:matrix(0.111800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111800,0.000000,0.000000,0.250000,0,0);}
.m5c_c00326{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m32_c00326{transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);}
.m59_c00326{transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00326{transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);}
.mf_c00326{transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);}
.mc_c00326{transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);}
.m34_c00326{transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);}
.m45_c00326{transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);}
.m5a_c00326{transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);}
.m1a_c00326{transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);}
.m11_c00326{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00326{transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);}
.m63_c00326{transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);}
.m25_c00326{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);}
.m33_c00326{transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);}
.m57_c00326{transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);}
.m31_c00326{transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);}
.m35_c00326{transform:matrix(0.166150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166150,0.000000,0.000000,0.250000,0,0);}
.m44_c00326{transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);}
.m54_c00326{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m42_c00326{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m61_c00326{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);}
.m18_c00326{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m56_c00326{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);}
.m40_c00326{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);}
.m2f_c00326{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m5d_c00326{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m51_c00326{transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);}
.m1f_c00326{transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);}
.m17_c00326{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m60_c00326{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);}
.m37_c00326{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m36_c00326{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m66_c00326{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.m38_c00326{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);}
.m29_c00326{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m3e_c00326{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m2d_c00326{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);}
.m62_c00326{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.m1c_c00326{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);}
.m39_c00326{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);}
.m58_c00326{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);}
.m26_c00326{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);}
.m5e_c00326{transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);}
.m1e_c00326{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m4b_c00326{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);}
.m41_c00326{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);}
.m1d_c00326{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);}
.m5f_c00326{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);}
.m43_c00326{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m21_c00326{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);}
.m3b_c00326{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00326{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);}
.m3_c00326{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m47_c00326{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);}
.m27_c00326{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c00326{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m52_c00326{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c00326{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);}
.m3c_c00326{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);}
.m28_c00326{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);}
.m5_c00326{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);}
.md_c00326{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma_c00326{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c00326{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m50_c00326{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c00326{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00326{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10_c00326{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);}
.m7_c00326{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2_c00326{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);}
.m65_c00326{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m14_c00326{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1_c00326{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00326{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m6_c00326{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.me_c00326{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);}
.m49_c00326{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m0_c00326{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00326{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m23_c00326{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00326{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m22_c00326{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m53_c00326{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m30_c00326{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m55_c00326{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m48_c00326{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00326{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m64_c00326{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00326{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00326{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m8_c00326{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00326{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m16_c00326{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m12_c00326{transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);}
.m13_c00326{transform:matrix(1.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.395000,0.000000,0.000000,0.250000,0,0);}
.m15_c00326{transform:matrix(2.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.767500,0.000000,0.000000,0.250000,0,0);}
.m46_c00326{transform:matrix(4.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.452500,0.000000,0.000000,0.250000,0,0);}
.v0_c00326{vertical-align:0.000000px;}
.v1_c00326{vertical-align:6.900000px;}
.ls1_c00326{letter-spacing:0.000000px;}
.ls0_c00326{letter-spacing:109.171440px;}
.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;}
.fs2_c00326{font-size:3.456000px;}
.fs16_c00326{font-size:6.000000px;}
.fs0_c00326{font-size:6.900000px;}
.fs29_c00326{font-size:10.380000px;}
.fsd_c00326{font-size:13.800000px;}
.fse_c00326{font-size:17.280000px;}
.fs3_c00326{font-size:20.760000px;}
.fs2c_c00326{font-size:24.180000px;}
.fs1_c00326{font-size:27.660000px;}
.fs24_c00326{font-size:31.080000px;}
.fsc_c00326{font-size:34.560000px;}
.fs27_c00326{font-size:41.460000px;}
.fs1c_c00326{font-size:44.940000px;}
.fs1d_c00326{font-size:48.360000px;}
.fsf_c00326{font-size:55.320000px;}
.fs7_c00326{font-size:58.740000px;}
.fs8_c00326{font-size:62.220000px;}
.fs4_c00326{font-size:69.120000px;}
.fs17_c00326{font-size:72.600000px;}
.fs25_c00326{font-size:76.020000px;}
.fs6_c00326{font-size:79.500000px;}
.fs23_c00326{font-size:82.920000px;}
.fs21_c00326{font-size:86.400000px;}
.fs9_c00326{font-size:89.880000px;}
.fs26_c00326{font-size:96.780000px;}
.fsa_c00326{font-size:100.200000px;}
.fs13_c00326{font-size:103.680000px;}
.fs22_c00326{font-size:107.160000px;}
.fs18_c00326{font-size:110.580000px;}
.fs14_c00326{font-size:114.060000px;}
.fs15_c00326{font-size:117.480000px;}
.fs1f_c00326{font-size:120.960000px;}
.fs5_c00326{font-size:124.440000px;}
.fs10_c00326{font-size:127.860000px;}
.fs1e_c00326{font-size:131.340000px;}
.fs2b_c00326{font-size:134.760000px;}
.fs1b_c00326{font-size:141.720000px;}
.fs28_c00326{font-size:145.140000px;}
.fsb_c00326{font-size:148.620000px;}
.fs1a_c00326{font-size:152.040000px;}
.fs20_c00326{font-size:155.520000px;}
.fs19_c00326{font-size:159.000000px;}
.fs2a_c00326{font-size:165.900000px;}
.fs12_c00326{font-size:190.080000px;}
.fs11_c00326{font-size:210.840000px;}
.y0_c00326{bottom:0.000000px;}
.y65_c00326{bottom:1015.200000px;}
.y64_c00326{bottom:1029.885000px;}
.y5c_c00326{bottom:1059.270000px;}
.y5a_c00326{bottom:1060.995000px;}
.y5e_c00326{bottom:1066.170000px;}
.y5b_c00326{bottom:1067.910000px;}
.y5f_c00326{bottom:1068.765000px;}
.y60_c00326{bottom:1069.635000px;}
.y5d_c00326{bottom:1073.085000px;}
.y51_c00326{bottom:1086.915000px;}
.y56_c00326{bottom:1087.770000px;}
.y52_c00326{bottom:1092.090000px;}
.y50_c00326{bottom:1093.830000px;}
.y4f_c00326{bottom:1095.555000px;}
.y54_c00326{bottom:1096.410000px;}
.y53_c00326{bottom:1100.730000px;}
.y55_c00326{bottom:1102.470000px;}
.y57_c00326{bottom:1103.325000px;}
.y59_c00326{bottom:1105.920000px;}
.y58_c00326{bottom:1109.370000px;}
.y48_c00326{bottom:1123.200000px;}
.y47_c00326{bottom:1125.795000px;}
.y4a_c00326{bottom:1126.650000px;}
.y4c_c00326{bottom:1129.245000px;}
.y4d_c00326{bottom:1130.115000px;}
.y4b_c00326{bottom:1131.840000px;}
.y49_c00326{bottom:1132.710000px;}
.y4e_c00326{bottom:1136.160000px;}
.y46_c00326{bottom:1145.670000px;}
.y45_c00326{bottom:1146.525000px;}
.y44_c00326{bottom:1149.120000px;}
.y43_c00326{bottom:1151.715000px;}
.y3c_c00326{bottom:1156.035000px;}
.y3e_c00326{bottom:1156.890000px;}
.y3b_c00326{bottom:1157.760000px;}
.y42_c00326{bottom:1161.210000px;}
.y3f_c00326{bottom:1163.805000px;}
.y3d_c00326{bottom:1164.675000px;}
.y41_c00326{bottom:1165.530000px;}
.y40_c00326{bottom:1168.995000px;}
.y37_c00326{bottom:1183.680000px;}
.y32_c00326{bottom:1185.405000px;}
.y36_c00326{bottom:1186.275000px;}
.y35_c00326{bottom:1187.130000px;}
.y33_c00326{bottom:1188.000000px;}
.y34_c00326{bottom:1189.725000px;}
.y38_c00326{bottom:1196.640000px;}
.y3a_c00326{bottom:1199.235000px;}
.y39_c00326{bottom:1200.090000px;}
.y63_c00326{bottom:1210.470000px;}
.y31_c00326{bottom:1214.790000px;}
.y30_c00326{bottom:1216.515000px;}
.y2e_c00326{bottom:1218.240000px;}
.y2d_c00326{bottom:1219.110000px;}
.y2b_c00326{bottom:1221.690000px;}
.y2f_c00326{bottom:1222.560000px;}
.y2c_c00326{bottom:1229.475000px;}
.y29_c00326{bottom:1230.330000px;}
.y2a_c00326{bottom:1232.070000px;}
.y62_c00326{bottom:1242.435000px;}
.y26_c00326{bottom:1246.755000px;}
.y25_c00326{bottom:1247.610000px;}
.y24_c00326{bottom:1249.350000px;}
.y27_c00326{bottom:1250.205000px;}
.y21_c00326{bottom:1255.395000px;}
.y61_c00326{bottom:1258.845000px;}
.y28_c00326{bottom:1263.165000px;}
.y23_c00326{bottom:1264.035000px;}
.y22_c00326{bottom:1264.890000px;}
.y1d_c00326{bottom:1275.270000px;}
.y1e_c00326{bottom:1276.995000px;}
.y1f_c00326{bottom:1292.550000px;}
.y20_c00326{bottom:1295.130000px;}
.y1b_c00326{bottom:1308.090000px;}
.y1c_c00326{bottom:1309.830000px;}
.y1a_c00326{bottom:1311.555000px;}
.y17_c00326{bottom:1323.645000px;}
.y18_c00326{bottom:1327.965000px;}
.y15_c00326{bottom:1332.285000px;}
.y16_c00326{bottom:1337.475000px;}
.y19_c00326{bottom:1338.330000px;}
.y14_c00326{bottom:1372.890000px;}
.y11_c00326{bottom:1375.485000px;}
.y12_c00326{bottom:1376.355000px;}
.y13_c00326{bottom:1377.210000px;}
.yf_c00326{bottom:1378.080000px;}
.y10_c00326{bottom:1382.400000px;}
.ye_c00326{bottom:1385.850000px;}
.y6_c00326{bottom:1387.590000px;}
.yd_c00326{bottom:1391.040000px;}
.ya_c00326{bottom:1395.360000px;}
.y7_c00326{bottom:1398.810000px;}
.y5_c00326{bottom:1400.550000px;}
.yc_c00326{bottom:1401.405000px;}
.yb_c00326{bottom:1402.275000px;}
.y9_c00326{bottom:1403.130000px;}
.y8_c00326{bottom:1404.000000px;}
.y4_c00326{bottom:1412.640000px;}
.y3_c00326{bottom:1420.410000px;}
.y2_c00326{bottom:1423.875000px;}
.y1_c00326{bottom:1426.470000px;}
.h4_c00326{height:3.110063px;}
.h18_c00326{height:5.399414px;}
.h2_c00326{height:6.209326px;}
.h2b_c00326{height:9.340986px;}
.hf_c00326{height:12.418652px;}
.h10_c00326{height:15.550313px;}
.h5_c00326{height:18.681973px;}
.h2e_c00326{height:21.759639px;}
.h3_c00326{height:24.891299px;}
.h26_c00326{height:27.968965px;}
.he_c00326{height:31.100625px;}
.h29_c00326{height:37.309951px;}
.h1e_c00326{height:40.441611px;}
.h1f_c00326{height:43.519277px;}
.h11_c00326{height:49.782598px;}
.h9_c00326{height:52.860264px;}
.ha_c00326{height:55.991924px;}
.h6_c00326{height:62.201250px;}
.h19_c00326{height:65.332910px;}
.h27_c00326{height:68.410576px;}
.h8_c00326{height:71.542236px;}
.h25_c00326{height:74.619902px;}
.h23_c00326{height:77.751563px;}
.hb_c00326{height:80.883223px;}
.h28_c00326{height:87.092549px;}
.hc_c00326{height:90.170215px;}
.h15_c00326{height:93.301875px;}
.h24_c00326{height:96.433535px;}
.h1a_c00326{height:99.511201px;}
.h16_c00326{height:102.642861px;}
.h17_c00326{height:105.720527px;}
.h21_c00326{height:108.852188px;}
.h7_c00326{height:111.983848px;}
.h12_c00326{height:115.061514px;}
.h20_c00326{height:118.193174px;}
.h2d_c00326{height:121.270840px;}
.h1d_c00326{height:127.534160px;}
.h2a_c00326{height:130.611826px;}
.hd_c00326{height:133.743486px;}
.h1c_c00326{height:136.821152px;}
.h22_c00326{height:139.952812px;}
.h1b_c00326{height:143.084473px;}
.h2c_c00326{height:149.293799px;}
.h14_c00326{height:171.053437px;}
.h13_c00326{height:189.735410px;}
.h0_c00326{height:1526.685000px;}
.h1_c00326{height:1527.000000px;}
.w0_c00326{width:1100.730000px;}
.w1_c00326{width:1101.000000px;}
.x0_c00326{left:0.000000px;}
.x22_c00326{left:196.125000px;}
.x23_c00326{left:218.595000px;}
.x12_c00326{left:228.090000px;}
.x13_c00326{left:241.050000px;}
.x14_c00326{left:252.285000px;}
.x26_c00326{left:255.750000px;}
.x1b_c00326{left:259.200000px;}
.x15_c00326{left:266.970000px;}
.x20_c00326{left:268.710000px;}
.x32_c00326{left:271.290000px;}
.x50_c00326{left:275.610000px;}
.x57_c00326{left:278.205000px;}
.x46_c00326{left:280.800000px;}
.x4a_c00326{left:282.525000px;}
.x39_c00326{left:285.120000px;}
.x33_c00326{left:286.845000px;}
.x27_c00326{left:304.995000px;}
.x28_c00326{left:329.190000px;}
.x4b_c00326{left:333.510000px;}
.x42_c00326{left:354.240000px;}
.x29_c00326{left:363.750000px;}
.x3a_c00326{left:367.200000px;}
.x51_c00326{left:373.245000px;}
.x21_c00326{left:377.565000px;}
.x34_c00326{left:389.670000px;}
.x2a_c00326{left:391.395000px;}
.x43_c00326{left:419.910000px;}
.x3_c00326{left:423.360000px;}
.x1_c00326{left:425.955000px;}
.x1c_c00326{left:430.275000px;}
.x3b_c00326{left:433.725000px;}
.x58_c00326{left:437.190000px;}
.x4_c00326{left:441.510000px;}
.x5_c00326{left:452.730000px;}
.x44_c00326{left:468.285000px;}
.x6_c00326{left:470.010000px;}
.x1d_c00326{left:482.970000px;}
.x35_c00326{left:487.290000px;}
.x7_c00326{left:490.755000px;}
.x52_c00326{left:495.930000px;}
.x3c_c00326{left:499.395000px;}
.x8_c00326{left:516.675000px;}
.x9_c00326{left:538.275000px;}
.x16_c00326{left:541.725000px;}
.x2b_c00326{left:551.235000px;}
.x1e_c00326{left:561.600000px;}
.xa_c00326{left:565.920000px;}
.x53_c00326{left:569.370000px;}
.x3d_c00326{left:584.070000px;}
.x4c_c00326{left:586.650000px;}
.x36_c00326{left:588.390000px;}
.xb_c00326{left:599.610000px;}
.x2c_c00326{left:613.440000px;}
.x37_c00326{left:622.950000px;}
.xc_c00326{left:628.995000px;}
.x3e_c00326{left:642.810000px;}
.xd_c00326{left:648.870000px;}
.x54_c00326{left:651.450000px;}
.x17_c00326{left:656.640000px;}
.x47_c00326{left:663.555000px;}
.xe_c00326{left:671.325000px;}
.xf_c00326{left:694.650000px;}
.x4d_c00326{left:698.970000px;}
.x2d_c00326{left:705.885000px;}
.x18_c00326{left:710.205000px;}
.x10_c00326{left:718.845000px;}
.x59_c00326{left:724.890000px;}
.x2e_c00326{left:726.630000px;}
.x45_c00326{left:730.080000px;}
.x11_c00326{left:737.850000px;}
.x2_c00326{left:743.040000px;}
.x4e_c00326{left:756.870000px;}
.x48_c00326{left:759.450000px;}
.x2f_c00326{left:772.410000px;}
.x5f_c00326{left:778.470000px;}
.x5a_c00326{left:787.965000px;}
.x19_c00326{left:799.200000px;}
.x3f_c00326{left:801.795000px;}
.x1a_c00326{left:805.245408px;}
.x24_c00326{left:810.435000px;}
.x60_c00326{left:813.030000px;}
.x49_c00326{left:819.930000px;}
.x30_c00326{left:822.525000px;}
.x25_c00326{left:827.715000px;}
.x40_c00326{left:834.630000px;}
.x38_c00326{left:849.315000px;}
.x4f_c00326{left:857.085000px;}
.x41_c00326{left:864.870000px;}
.x31_c00326{left:868.320000px;}
.x1f_c00326{left:895.110000px;}
.x55_c00326{left:907.200000px;}
.x56_c00326{left:915.840000px;}
.x5d_c00326{left:930.525000px;}
.x5e_c00326{left:1036.800000px;}
.x5b_c00326{left:1039.395000px;}
.x5c_c00326{left:1053.210000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.v1_c00326{vertical-align:6.133333pt;}
.ls1_c00326{letter-spacing:0.000000pt;}
.ls0_c00326{letter-spacing:97.041280pt;}
.ws0_c00326{word-spacing:0.000000pt;}
.fs2_c00326{font-size:3.072000pt;}
.fs16_c00326{font-size:5.333333pt;}
.fs0_c00326{font-size:6.133333pt;}
.fs29_c00326{font-size:9.226667pt;}
.fsd_c00326{font-size:12.266667pt;}
.fse_c00326{font-size:15.360000pt;}
.fs3_c00326{font-size:18.453333pt;}
.fs2c_c00326{font-size:21.493333pt;}
.fs1_c00326{font-size:24.586667pt;}
.fs24_c00326{font-size:27.626667pt;}
.fsc_c00326{font-size:30.720000pt;}
.fs27_c00326{font-size:36.853333pt;}
.fs1c_c00326{font-size:39.946667pt;}
.fs1d_c00326{font-size:42.986667pt;}
.fsf_c00326{font-size:49.173333pt;}
.fs7_c00326{font-size:52.213333pt;}
.fs8_c00326{font-size:55.306667pt;}
.fs4_c00326{font-size:61.440000pt;}
.fs17_c00326{font-size:64.533333pt;}
.fs25_c00326{font-size:67.573333pt;}
.fs6_c00326{font-size:70.666667pt;}
.fs23_c00326{font-size:73.706667pt;}
.fs21_c00326{font-size:76.800000pt;}
.fs9_c00326{font-size:79.893333pt;}
.fs26_c00326{font-size:86.026667pt;}
.fsa_c00326{font-size:89.066667pt;}
.fs13_c00326{font-size:92.160000pt;}
.fs22_c00326{font-size:95.253333pt;}
.fs18_c00326{font-size:98.293333pt;}
.fs14_c00326{font-size:101.386667pt;}
.fs15_c00326{font-size:104.426667pt;}
.fs1f_c00326{font-size:107.520000pt;}
.fs5_c00326{font-size:110.613333pt;}
.fs10_c00326{font-size:113.653333pt;}
.fs1e_c00326{font-size:116.746667pt;}
.fs2b_c00326{font-size:119.786667pt;}
.fs1b_c00326{font-size:125.973333pt;}
.fs28_c00326{font-size:129.013333pt;}
.fsb_c00326{font-size:132.106667pt;}
.fs1a_c00326{font-size:135.146667pt;}
.fs20_c00326{font-size:138.240000pt;}
.fs19_c00326{font-size:141.333333pt;}
.fs2a_c00326{font-size:147.466667pt;}
.fs12_c00326{font-size:168.960000pt;}
.fs11_c00326{font-size:187.413333pt;}
.y0_c00326{bottom:0.000000pt;}
.y65_c00326{bottom:902.400000pt;}
.y64_c00326{bottom:915.453333pt;}
.y5c_c00326{bottom:941.573333pt;}
.y5a_c00326{bottom:943.106667pt;}
.y5e_c00326{bottom:947.706667pt;}
.y5b_c00326{bottom:949.253333pt;}
.y5f_c00326{bottom:950.013333pt;}
.y60_c00326{bottom:950.786667pt;}
.y5d_c00326{bottom:953.853333pt;}
.y51_c00326{bottom:966.146667pt;}
.y56_c00326{bottom:966.906667pt;}
.y52_c00326{bottom:970.746667pt;}
.y50_c00326{bottom:972.293333pt;}
.y4f_c00326{bottom:973.826667pt;}
.y54_c00326{bottom:974.586667pt;}
.y53_c00326{bottom:978.426667pt;}
.y55_c00326{bottom:979.973333pt;}
.y57_c00326{bottom:980.733333pt;}
.y59_c00326{bottom:983.040000pt;}
.y58_c00326{bottom:986.106667pt;}
.y48_c00326{bottom:998.400000pt;}
.y47_c00326{bottom:1000.706667pt;}
.y4a_c00326{bottom:1001.466667pt;}
.y4c_c00326{bottom:1003.773333pt;}
.y4d_c00326{bottom:1004.546667pt;}
.y4b_c00326{bottom:1006.080000pt;}
.y49_c00326{bottom:1006.853333pt;}
.y4e_c00326{bottom:1009.920000pt;}
.y46_c00326{bottom:1018.373333pt;}
.y45_c00326{bottom:1019.133333pt;}
.y44_c00326{bottom:1021.440000pt;}
.y43_c00326{bottom:1023.746667pt;}
.y3c_c00326{bottom:1027.586667pt;}
.y3e_c00326{bottom:1028.346667pt;}
.y3b_c00326{bottom:1029.120000pt;}
.y42_c00326{bottom:1032.186667pt;}
.y3f_c00326{bottom:1034.493333pt;}
.y3d_c00326{bottom:1035.266667pt;}
.y41_c00326{bottom:1036.026667pt;}
.y40_c00326{bottom:1039.106667pt;}
.y37_c00326{bottom:1052.160000pt;}
.y32_c00326{bottom:1053.693333pt;}
.y36_c00326{bottom:1054.466667pt;}
.y35_c00326{bottom:1055.226667pt;}
.y33_c00326{bottom:1056.000000pt;}
.y34_c00326{bottom:1057.533333pt;}
.y38_c00326{bottom:1063.680000pt;}
.y3a_c00326{bottom:1065.986667pt;}
.y39_c00326{bottom:1066.746667pt;}
.y63_c00326{bottom:1075.973333pt;}
.y31_c00326{bottom:1079.813333pt;}
.y30_c00326{bottom:1081.346667pt;}
.y2e_c00326{bottom:1082.880000pt;}
.y2d_c00326{bottom:1083.653333pt;}
.y2b_c00326{bottom:1085.946667pt;}
.y2f_c00326{bottom:1086.720000pt;}
.y2c_c00326{bottom:1092.866667pt;}
.y29_c00326{bottom:1093.626667pt;}
.y2a_c00326{bottom:1095.173333pt;}
.y62_c00326{bottom:1104.386667pt;}
.y26_c00326{bottom:1108.226667pt;}
.y25_c00326{bottom:1108.986667pt;}
.y24_c00326{bottom:1110.533333pt;}
.y27_c00326{bottom:1111.293333pt;}
.y21_c00326{bottom:1115.906667pt;}
.y61_c00326{bottom:1118.973333pt;}
.y28_c00326{bottom:1122.813333pt;}
.y23_c00326{bottom:1123.586667pt;}
.y22_c00326{bottom:1124.346667pt;}
.y1d_c00326{bottom:1133.573333pt;}
.y1e_c00326{bottom:1135.106667pt;}
.y1f_c00326{bottom:1148.933333pt;}
.y20_c00326{bottom:1151.226667pt;}
.y1b_c00326{bottom:1162.746667pt;}
.y1c_c00326{bottom:1164.293333pt;}
.y1a_c00326{bottom:1165.826667pt;}
.y17_c00326{bottom:1176.573333pt;}
.y18_c00326{bottom:1180.413333pt;}
.y15_c00326{bottom:1184.253333pt;}
.y16_c00326{bottom:1188.866667pt;}
.y19_c00326{bottom:1189.626667pt;}
.y14_c00326{bottom:1220.346667pt;}
.y11_c00326{bottom:1222.653333pt;}
.y12_c00326{bottom:1223.426667pt;}
.y13_c00326{bottom:1224.186667pt;}
.yf_c00326{bottom:1224.960000pt;}
.y10_c00326{bottom:1228.800000pt;}
.ye_c00326{bottom:1231.866667pt;}
.y6_c00326{bottom:1233.413333pt;}
.yd_c00326{bottom:1236.480000pt;}
.ya_c00326{bottom:1240.320000pt;}
.y7_c00326{bottom:1243.386667pt;}
.y5_c00326{bottom:1244.933333pt;}
.yc_c00326{bottom:1245.693333pt;}
.yb_c00326{bottom:1246.466667pt;}
.y9_c00326{bottom:1247.226667pt;}
.y8_c00326{bottom:1248.000000pt;}
.y4_c00326{bottom:1255.680000pt;}
.y3_c00326{bottom:1262.586667pt;}
.y2_c00326{bottom:1265.666667pt;}
.y1_c00326{bottom:1267.973333pt;}
.h4_c00326{height:2.764500pt;}
.h18_c00326{height:4.799479pt;}
.h2_c00326{height:5.519401pt;}
.h2b_c00326{height:8.303099pt;}
.hf_c00326{height:11.038802pt;}
.h10_c00326{height:13.822500pt;}
.h5_c00326{height:16.606198pt;}
.h2e_c00326{height:19.341901pt;}
.h3_c00326{height:22.125599pt;}
.h26_c00326{height:24.861302pt;}
.he_c00326{height:27.645000pt;}
.h29_c00326{height:33.164401pt;}
.h1e_c00326{height:35.948099pt;}
.h1f_c00326{height:38.683802pt;}
.h11_c00326{height:44.251198pt;}
.h9_c00326{height:46.986901pt;}
.ha_c00326{height:49.770599pt;}
.h6_c00326{height:55.290000pt;}
.h19_c00326{height:58.073698pt;}
.h27_c00326{height:60.809401pt;}
.h8_c00326{height:63.593099pt;}
.h25_c00326{height:66.328802pt;}
.h23_c00326{height:69.112500pt;}
.hb_c00326{height:71.896198pt;}
.h28_c00326{height:77.415599pt;}
.hc_c00326{height:80.151302pt;}
.h15_c00326{height:82.935000pt;}
.h24_c00326{height:85.718698pt;}
.h1a_c00326{height:88.454401pt;}
.h16_c00326{height:91.238099pt;}
.h17_c00326{height:93.973802pt;}
.h21_c00326{height:96.757500pt;}
.h7_c00326{height:99.541198pt;}
.h12_c00326{height:102.276901pt;}
.h20_c00326{height:105.060599pt;}
.h2d_c00326{height:107.796302pt;}
.h1d_c00326{height:113.363698pt;}
.h2a_c00326{height:116.099401pt;}
.hd_c00326{height:118.883099pt;}
.h1c_c00326{height:121.618802pt;}
.h22_c00326{height:124.402500pt;}
.h1b_c00326{height:127.186198pt;}
.h2c_c00326{height:132.705599pt;}
.h14_c00326{height:152.047500pt;}
.h13_c00326{height:168.653698pt;}
.h0_c00326{height:1357.053333pt;}
.h1_c00326{height:1357.333333pt;}
.w0_c00326{width:978.426667pt;}
.w1_c00326{width:978.666667pt;}
.x0_c00326{left:0.000000pt;}
.x22_c00326{left:174.333333pt;}
.x23_c00326{left:194.306667pt;}
.x12_c00326{left:202.746667pt;}
.x13_c00326{left:214.266667pt;}
.x14_c00326{left:224.253333pt;}
.x26_c00326{left:227.333333pt;}
.x1b_c00326{left:230.400000pt;}
.x15_c00326{left:237.306667pt;}
.x20_c00326{left:238.853333pt;}
.x32_c00326{left:241.146667pt;}
.x50_c00326{left:244.986667pt;}
.x57_c00326{left:247.293333pt;}
.x46_c00326{left:249.600000pt;}
.x4a_c00326{left:251.133333pt;}
.x39_c00326{left:253.440000pt;}
.x33_c00326{left:254.973333pt;}
.x27_c00326{left:271.106667pt;}
.x28_c00326{left:292.613333pt;}
.x4b_c00326{left:296.453333pt;}
.x42_c00326{left:314.880000pt;}
.x29_c00326{left:323.333333pt;}
.x3a_c00326{left:326.400000pt;}
.x51_c00326{left:331.773333pt;}
.x21_c00326{left:335.613333pt;}
.x34_c00326{left:346.373333pt;}
.x2a_c00326{left:347.906667pt;}
.x43_c00326{left:373.253333pt;}
.x3_c00326{left:376.320000pt;}
.x1_c00326{left:378.626667pt;}
.x1c_c00326{left:382.466667pt;}
.x3b_c00326{left:385.533333pt;}
.x58_c00326{left:388.613333pt;}
.x4_c00326{left:392.453333pt;}
.x5_c00326{left:402.426667pt;}
.x44_c00326{left:416.253333pt;}
.x6_c00326{left:417.786667pt;}
.x1d_c00326{left:429.306667pt;}
.x35_c00326{left:433.146667pt;}
.x7_c00326{left:436.226667pt;}
.x52_c00326{left:440.826667pt;}
.x3c_c00326{left:443.906667pt;}
.x8_c00326{left:459.266667pt;}
.x9_c00326{left:478.466667pt;}
.x16_c00326{left:481.533333pt;}
.x2b_c00326{left:489.986667pt;}
.x1e_c00326{left:499.200000pt;}
.xa_c00326{left:503.040000pt;}
.x53_c00326{left:506.106667pt;}
.x3d_c00326{left:519.173333pt;}
.x4c_c00326{left:521.466667pt;}
.x36_c00326{left:523.013333pt;}
.xb_c00326{left:532.986667pt;}
.x2c_c00326{left:545.280000pt;}
.x37_c00326{left:553.733333pt;}
.xc_c00326{left:559.106667pt;}
.x3e_c00326{left:571.386667pt;}
.xd_c00326{left:576.773333pt;}
.x54_c00326{left:579.066667pt;}
.x17_c00326{left:583.680000pt;}
.x47_c00326{left:589.826667pt;}
.xe_c00326{left:596.733333pt;}
.xf_c00326{left:617.466667pt;}
.x4d_c00326{left:621.306667pt;}
.x2d_c00326{left:627.453333pt;}
.x18_c00326{left:631.293333pt;}
.x10_c00326{left:638.973333pt;}
.x59_c00326{left:644.346667pt;}
.x2e_c00326{left:645.893333pt;}
.x45_c00326{left:648.960000pt;}
.x11_c00326{left:655.866667pt;}
.x2_c00326{left:660.480000pt;}
.x4e_c00326{left:672.773333pt;}
.x48_c00326{left:675.066667pt;}
.x2f_c00326{left:686.586667pt;}
.x5f_c00326{left:691.973333pt;}
.x5a_c00326{left:700.413333pt;}
.x19_c00326{left:710.400000pt;}
.x3f_c00326{left:712.706667pt;}
.x1a_c00326{left:715.773696pt;}
.x24_c00326{left:720.386667pt;}
.x60_c00326{left:722.693333pt;}
.x49_c00326{left:728.826667pt;}
.x30_c00326{left:731.133333pt;}
.x25_c00326{left:735.746667pt;}
.x40_c00326{left:741.893333pt;}
.x38_c00326{left:754.946667pt;}
.x4f_c00326{left:761.853333pt;}
.x41_c00326{left:768.773333pt;}
.x31_c00326{left:771.840000pt;}
.x1f_c00326{left:795.653333pt;}
.x55_c00326{left:806.400000pt;}
.x56_c00326{left:814.080000pt;}
.x5d_c00326{left:827.133333pt;}
.x5e_c00326{left:921.600000pt;}
.x5b_c00326{left:923.906667pt;}
.x5c_c00326{left:936.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00327;src:url('chunks/assets/font_87192617b1db4d07774db160.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.109863;font-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_c00327{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);}
.v0_c00327{vertical-align:0.000000px;}
.ls0_c00327{letter-spacing:0.000000px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00327{word-spacing:0.000000px;}
.fc0_c00327{color:transparent;}
.fs0_c00327{font-size:600.000000px;}
.y0_c00327{bottom:0.000000px;}
.y1_c00327{bottom:15.000000px;}
.h2_c00327{height:539.941406px;}
.h1_c00327{height:1507.500000px;}
.h0_c00327{height:1507.680000px;}
.w0_c00327{width:1111.965000px;}
.w1_c00327{width:1112.250000px;}
.x0_c00327{left:0.000000px;}
.x1_c00327{left:15.000000px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ws0_c00327{word-spacing:0.000000pt;}
.fs0_c00327{font-size:533.333333pt;}
.y0_c00327{bottom:0.000000pt;}
.y1_c00327{bottom:13.333333pt;}
.h2_c00327{height:479.947917pt;}
.h1_c00327{height:1340.000000pt;}
.h0_c00327{height:1340.160000pt;}
.w0_c00327{width:988.413333pt;}
.w1_c00327{width:988.666667pt;}
.x0_c00327{left:0.000000pt;}
.x1_c00327{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_347c197891c4e1b3f9f5a643.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.109863;font-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_c00328{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m17_c00328{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.mb_c00328{transform:matrix(0.095375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095375,0.000000,0.000000,0.250000,0,0);}
.ma_c00328{transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);}
.mf_c00328{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m15_c00328{transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);}
.m8_c00328{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);}
.md_c00328{transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);}
.m9_c00328{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);}
.mc_c00328{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.me_c00328{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);}
.m12_c00328{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);}
.m5_c00328{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00328{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4_c00328{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00328{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);}
.m3_c00328{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m13_c00328{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_c00328{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m14_c00328{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_c00328{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m7_c00328{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m11_c00328{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);}
.m10_c00328{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m18_c00328{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.v1_c00328{vertical-align:-3.480000px;}
.v0_c00328{vertical-align:0.000000px;}
.ls1_c00328{letter-spacing:0.000000px;}
.ls0_c00328{letter-spacing:41.126021px;}
.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;}
.fsb_c00328{font-size:3.456000px;}
.fse_c00328{font-size:6.900000px;}
.fsd_c00328{font-size:17.280000px;}
.fsc_c00328{font-size:20.760000px;}
.fs6_c00328{font-size:24.180000px;}
.fsf_c00328{font-size:51.840000px;}
.fs5_c00328{font-size:55.320000px;}
.fs1_c00328{font-size:58.740000px;}
.fs4_c00328{font-size:62.220000px;}
.fs3_c00328{font-size:65.640000px;}
.fs0_c00328{font-size:69.120000px;}
.fs2_c00328{font-size:79.500000px;}
.fs7_c00328{font-size:93.300000px;}
.fs9_c00328{font-size:100.200000px;}
.fsa_c00328{font-size:110.580000px;}
.fs8_c00328{font-size:155.520000px;}
.y0_c00328{bottom:0.000000px;}
.y14_c00328{bottom:971.130000px;}
.y13_c00328{bottom:982.365000px;}
.y12_c00328{bottom:986.685000px;}
.y10_c00328{bottom:995.325000px;}
.yf_c00328{bottom:997.050000px;}
.y11_c00328{bottom:997.920000px;}
.yd_c00328{bottom:1094.685000px;}
.ye_c00328{bottom:1095.555000px;}
.yc_c00328{bottom:1115.430000px;}
.yb_c00328{bottom:1314.150000px;}
.y9_c00328{bottom:1324.515000px;}
.ya_c00328{bottom:1339.200000px;}
.y2_c00328{bottom:1373.760000px;}
.y8_c00328{bottom:1386.720000px;}
.y1_c00328{bottom:1401.405000px;}
.y4_c00328{bottom:1402.275000px;}
.y3_c00328{bottom:1403.130000px;}
.y5_c00328{bottom:1404.000000px;}
.y7_c00328{bottom:1410.045000px;}
.y6_c00328{bottom:1416.090000px;}
.h11_c00328{height:3.110063px;}
.hf_c00328{height:6.209326px;}
.hd_c00328{height:15.201973px;}
.he_c00328{height:15.550313px;}
.h12_c00328{height:18.681973px;}
.h8_c00328{height:21.759639px;}
.h10_c00328{height:46.650937px;}
.h7_c00328{height:49.782598px;}
.h3_c00328{height:52.860264px;}
.h6_c00328{height:55.991924px;}
.h5_c00328{height:59.069590px;}
.h2_c00328{height:62.201250px;}
.h4_c00328{height:71.542236px;}
.h9_c00328{height:83.960889px;}
.hb_c00328{height:90.170215px;}
.hc_c00328{height:99.511201px;}
.ha_c00328{height:139.952812px;}
.h0_c00328{height:1526.685000px;}
.h1_c00328{height:1527.000000px;}
.w0_c00328{width:1100.730000px;}
.w1_c00328{width:1101.000000px;}
.x0_c00328{left:0.000000px;}
.x1_c00328{left:419.910000px;}
.x2_c00328{left:540.000000px;}
.x3_c00328{left:565.920000px;}
.xc_c00328{left:569.370000px;}
.xd_c00328{left:594.435000px;}
.x4_c00328{left:616.035000px;}
.x5_c00328{left:641.955000px;}
.x6_c00328{left:663.555000px;}
.x7_c00328{left:685.155000px;}
.x12_c00328{left:687.750000px;}
.x8_c00328{left:700.710000px;}
.xe_c00328{left:721.440000px;}
.x13_c00328{left:732.675000px;}
.x9_c00328{left:745.635000px;}
.xa_c00328{left:749.955000px;}
.xb_c00328{left:756.000000px;}
.x14_c00328{left:772.410000px;}
.x17_c00328{left:775.005000px;}
.xf_c00328{left:914.970000px;}
.x15_c00328{left:989.280000px;}
.x16_c00328{left:995.325000px;}
.x10_c00328{left:1032.480000px;}
.x11_c00328{left:1054.950000px;}
@media print{
.v1_c00328{vertical-align:-3.093333pt;}
.v0_c00328{vertical-align:0.000000pt;}
.ls1_c00328{letter-spacing:0.000000pt;}
.ls0_c00328{letter-spacing:36.556463pt;}
.ws0_c00328{word-spacing:0.000000pt;}
.fsb_c00328{font-size:3.072000pt;}
.fse_c00328{font-size:6.133333pt;}
.fsd_c00328{font-size:15.360000pt;}
.fsc_c00328{font-size:18.453333pt;}
.fs6_c00328{font-size:21.493333pt;}
.fsf_c00328{font-size:46.080000pt;}
.fs5_c00328{font-size:49.173333pt;}
.fs1_c00328{font-size:52.213333pt;}
.fs4_c00328{font-size:55.306667pt;}
.fs3_c00328{font-size:58.346667pt;}
.fs0_c00328{font-size:61.440000pt;}
.fs2_c00328{font-size:70.666667pt;}
.fs7_c00328{font-size:82.933333pt;}
.fs9_c00328{font-size:89.066667pt;}
.fsa_c00328{font-size:98.293333pt;}
.fs8_c00328{font-size:138.240000pt;}
.y0_c00328{bottom:0.000000pt;}
.y14_c00328{bottom:863.226667pt;}
.y13_c00328{bottom:873.213333pt;}
.y12_c00328{bottom:877.053333pt;}
.y10_c00328{bottom:884.733333pt;}
.yf_c00328{bottom:886.266667pt;}
.y11_c00328{bottom:887.040000pt;}
.yd_c00328{bottom:973.053333pt;}
.ye_c00328{bottom:973.826667pt;}
.yc_c00328{bottom:991.493333pt;}
.yb_c00328{bottom:1168.133333pt;}
.y9_c00328{bottom:1177.346667pt;}
.ya_c00328{bottom:1190.400000pt;}
.y2_c00328{bottom:1221.120000pt;}
.y8_c00328{bottom:1232.640000pt;}
.y1_c00328{bottom:1245.693333pt;}
.y4_c00328{bottom:1246.466667pt;}
.y3_c00328{bottom:1247.226667pt;}
.y5_c00328{bottom:1248.000000pt;}
.y7_c00328{bottom:1253.373333pt;}
.y6_c00328{bottom:1258.746667pt;}
.h11_c00328{height:2.764500pt;}
.hf_c00328{height:5.519401pt;}
.hd_c00328{height:13.512865pt;}
.he_c00328{height:13.822500pt;}
.h12_c00328{height:16.606198pt;}
.h8_c00328{height:19.341901pt;}
.h10_c00328{height:41.467500pt;}
.h7_c00328{height:44.251198pt;}
.h3_c00328{height:46.986901pt;}
.h6_c00328{height:49.770599pt;}
.h5_c00328{height:52.506302pt;}
.h2_c00328{height:55.290000pt;}
.h4_c00328{height:63.593099pt;}
.h9_c00328{height:74.631901pt;}
.hb_c00328{height:80.151302pt;}
.hc_c00328{height:88.454401pt;}
.ha_c00328{height:124.402500pt;}
.h0_c00328{height:1357.053333pt;}
.h1_c00328{height:1357.333333pt;}
.w0_c00328{width:978.426667pt;}
.w1_c00328{width:978.666667pt;}
.x0_c00328{left:0.000000pt;}
.x1_c00328{left:373.253333pt;}
.x2_c00328{left:480.000000pt;}
.x3_c00328{left:503.040000pt;}
.xc_c00328{left:506.106667pt;}
.xd_c00328{left:528.386667pt;}
.x4_c00328{left:547.586667pt;}
.x5_c00328{left:570.626667pt;}
.x6_c00328{left:589.826667pt;}
.x7_c00328{left:609.026667pt;}
.x12_c00328{left:611.333333pt;}
.x8_c00328{left:622.853333pt;}
.xe_c00328{left:641.280000pt;}
.x13_c00328{left:651.266667pt;}
.x9_c00328{left:662.786667pt;}
.xa_c00328{left:666.626667pt;}
.xb_c00328{left:672.000000pt;}
.x14_c00328{left:686.586667pt;}
.x17_c00328{left:688.893333pt;}
.xf_c00328{left:813.306667pt;}
.x15_c00328{left:879.360000pt;}
.x16_c00328{left:884.733333pt;}
.x10_c00328{left:917.760000pt;}
.x11_c00328{left:937.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00329;src:url('chunks/assets/font_4bc73c91b6d69a1ad1347838.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.109863;font-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_c00329{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);}
.v0_c00329{vertical-align:0.000000px;}
.ls0_c00329{letter-spacing:0.000000px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00329{word-spacing:0.000000px;}
.fc0_c00329{color:transparent;}
.fs0_c00329{font-size:600.000000px;}
.y0_c00329{bottom:0.000000px;}
.y1_c00329{bottom:15.000000px;}
.h2_c00329{height:539.941406px;}
.h1_c00329{height:1507.500000px;}
.h0_c00329{height:1507.680000px;}
.w0_c00329{width:1111.965000px;}
.w1_c00329{width:1112.250000px;}
.x0_c00329{left:0.000000px;}
.x1_c00329{left:15.000000px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ws0_c00329{word-spacing:0.000000pt;}
.fs0_c00329{font-size:533.333333pt;}
.y0_c00329{bottom:0.000000pt;}
.y1_c00329{bottom:13.333333pt;}
.h2_c00329{height:479.947917pt;}
.h1_c00329{height:1340.000000pt;}
.h0_c00329{height:1340.160000pt;}
.w0_c00329{width:988.413333pt;}
.w1_c00329{width:988.666667pt;}
.x0_c00329{left:0.000000pt;}
.x1_c00329{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_232efd9475212fbee3b147e8.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.109863;font-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_c00330{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);}
.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;}
.fs0_c00330{font-size:600.000000px;}
.y0_c00330{bottom:0.000000px;}
.y1_c00330{bottom:15.000000px;}
.h2_c00330{height:539.941406px;}
.h0_c00330{height:1526.685000px;}
.h1_c00330{height:1527.000000px;}
.w0_c00330{width:1100.730000px;}
.w1_c00330{width:1101.000000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:15.000000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls0_c00330{letter-spacing:0.000000pt;}
.ws0_c00330{word-spacing:0.000000pt;}
.fs0_c00330{font-size:533.333333pt;}
.y0_c00330{bottom:0.000000pt;}
.y1_c00330{bottom:13.333333pt;}
.h2_c00330{height:479.947917pt;}
.h0_c00330{height:1357.053333pt;}
.h1_c00330{height:1357.333333pt;}
.w0_c00330{width:978.426667pt;}
.w1_c00330{width:978.666667pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00331;src:url('chunks/assets/font_50aa787a566a7612368cbf27.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.109863;font-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_c00331{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c00331{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c00331{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);}
.m4_c00331{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00331{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);}
.m9_c00331{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma_c00331{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);}
.m5_c00331{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m7_c00331{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);}
.m3_c00331{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m6_c00331{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.v0_c00331{vertical-align:0.000000px;}
.ls0_c00331{letter-spacing:0.000000px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00331{word-spacing:0.000000px;}
.fc0_c00331{color:transparent;}
.fs3_c00331{font-size:3.456000px;}
.fs2_c00331{font-size:6.000000px;}
.fs1_c00331{font-size:10.380000px;}
.fs4_c00331{font-size:17.280000px;}
.fs0_c00331{font-size:20.760000px;}
.fs6_c00331{font-size:27.660000px;}
.fs7_c00331{font-size:34.560000px;}
.fs8_c00331{font-size:44.940000px;}
.fs5_c00331{font-size:62.220000px;}
.y0_c00331{bottom:0.000000px;}
.y11_c00331{bottom:494.205000px;}
.y12_c00331{bottom:495.075000px;}
.y10_c00331{bottom:569.370000px;}
.yc_c00331{bottom:711.930000px;}
.ye_c00331{bottom:712.800000px;}
.yf_c00331{bottom:714.525000px;}
.yd_c00331{bottom:723.165000px;}
.ya_c00331{bottom:755.130000px;}
.yb_c00331{bottom:759.450000px;}
.y9_c00331{bottom:766.365000px;}
.y8_c00331{bottom:768.960000px;}
.y6_c00331{bottom:942.630000px;}
.y4_c00331{bottom:949.530000px;}
.y5_c00331{bottom:954.720000px;}
.y3_c00331{bottom:955.590000px;}
.y7_c00331{bottom:1083.450000px;}
.y2_c00331{bottom:1150.845000px;}
.y1_c00331{bottom:1152.570000px;}
.h5_c00331{height:3.110063px;}
.h4_c00331{height:5.399414px;}
.h3_c00331{height:9.340986px;}
.h6_c00331{height:15.550313px;}
.h2_c00331{height:18.681973px;}
.h8_c00331{height:24.891299px;}
.h9_c00331{height:31.100625px;}
.ha_c00331{height:40.441611px;}
.h7_c00331{height:55.991924px;}
.h1_c00331{height:1507.500000px;}
.h0_c00331{height:1507.680000px;}
.w0_c00331{width:1111.965000px;}
.w1_c00331{width:1112.250000px;}
.x0_c00331{left:0.000000px;}
.x3_c00331{left:29.370000px;}
.x4_c00331{left:34.560000px;}
.x7_c00331{left:45.795000px;}
.x5_c00331{left:48.390000px;}
.x8_c00331{left:56.160000px;}
.x10_c00331{left:140.835000px;}
.x1_c00331{left:155.520000px;}
.x2_c00331{left:163.290000px;}
.xf_c00331{left:188.355000px;}
.x6_c00331{left:192.675000px;}
.xb_c00331{left:310.170000px;}
.x9_c00331{left:381.030000px;}
.xa_c00331{left:392.250000px;}
.xd_c00331{left:439.770000px;}
.xc_c00331{left:456.195000px;}
.xe_c00331{left:470.880000px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls0_c00331{letter-spacing:0.000000pt;}
.ws0_c00331{word-spacing:0.000000pt;}
.fs3_c00331{font-size:3.072000pt;}
.fs2_c00331{font-size:5.333333pt;}
.fs1_c00331{font-size:9.226667pt;}
.fs4_c00331{font-size:15.360000pt;}
.fs0_c00331{font-size:18.453333pt;}
.fs6_c00331{font-size:24.586667pt;}
.fs7_c00331{font-size:30.720000pt;}
.fs8_c00331{font-size:39.946667pt;}
.fs5_c00331{font-size:55.306667pt;}
.y0_c00331{bottom:0.000000pt;}
.y11_c00331{bottom:439.293333pt;}
.y12_c00331{bottom:440.066667pt;}
.y10_c00331{bottom:506.106667pt;}
.yc_c00331{bottom:632.826667pt;}
.ye_c00331{bottom:633.600000pt;}
.yf_c00331{bottom:635.133333pt;}
.yd_c00331{bottom:642.813333pt;}
.ya_c00331{bottom:671.226667pt;}
.yb_c00331{bottom:675.066667pt;}
.y9_c00331{bottom:681.213333pt;}
.y8_c00331{bottom:683.520000pt;}
.y6_c00331{bottom:837.893333pt;}
.y4_c00331{bottom:844.026667pt;}
.y5_c00331{bottom:848.640000pt;}
.y3_c00331{bottom:849.413333pt;}
.y7_c00331{bottom:963.066667pt;}
.y2_c00331{bottom:1022.973333pt;}
.y1_c00331{bottom:1024.506667pt;}
.h5_c00331{height:2.764500pt;}
.h4_c00331{height:4.799479pt;}
.h3_c00331{height:8.303099pt;}
.h6_c00331{height:13.822500pt;}
.h2_c00331{height:16.606198pt;}
.h8_c00331{height:22.125599pt;}
.h9_c00331{height:27.645000pt;}
.ha_c00331{height:35.948099pt;}
.h7_c00331{height:49.770599pt;}
.h1_c00331{height:1340.000000pt;}
.h0_c00331{height:1340.160000pt;}
.w0_c00331{width:988.413333pt;}
.w1_c00331{width:988.666667pt;}
.x0_c00331{left:0.000000pt;}
.x3_c00331{left:26.106667pt;}
.x4_c00331{left:30.720000pt;}
.x7_c00331{left:40.706667pt;}
.x5_c00331{left:43.013333pt;}
.x8_c00331{left:49.920000pt;}
.x10_c00331{left:125.186667pt;}
.x1_c00331{left:138.240000pt;}
.x2_c00331{left:145.146667pt;}
.xf_c00331{left:167.426667pt;}
.x6_c00331{left:171.266667pt;}
.xb_c00331{left:275.706667pt;}
.x9_c00331{left:338.693333pt;}
.xa_c00331{left:348.666667pt;}
.xd_c00331{left:390.906667pt;}
.xc_c00331{left:405.506667pt;}
.xe_c00331{left:418.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_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_d9da096fe5112008b29a04cf.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.109863;font-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_c00332{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c00332{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m0_c00332{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,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;}
.fc0_c00332{color:transparent;}
.fs1_c00332{font-size:6.900000px;}
.fs0_c00332{font-size:20.760000px;}
.y0_c00332{bottom:0.000000px;}
.y1_c00332{bottom:758.595000px;}
.y2_c00332{bottom:763.770000px;}
.y3_c00332{bottom:1206.150000px;}
.h3_c00332{height:6.209326px;}
.h2_c00332{height:18.681973px;}
.h0_c00332{height:1526.685000px;}
.h1_c00332{height:1527.000000px;}
.w0_c00332{width:1100.730000px;}
.w1_c00332{width:1101.000000px;}
.x0_c00332{left:0.000000px;}
.x3_c00332{left:1035.930000px;}
.x1_c00332{left:1058.400000px;}
.x2_c00332{left:1079.130000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls0_c00332{letter-spacing:0.000000pt;}
.ws0_c00332{word-spacing:0.000000pt;}
.fs1_c00332{font-size:6.133333pt;}
.fs0_c00332{font-size:18.453333pt;}
.y0_c00332{bottom:0.000000pt;}
.y1_c00332{bottom:674.306667pt;}
.y2_c00332{bottom:678.906667pt;}
.y3_c00332{bottom:1072.133333pt;}
.h3_c00332{height:5.519401pt;}
.h2_c00332{height:16.606198pt;}
.h0_c00332{height:1357.053333pt;}
.h1_c00332{height:1357.333333pt;}
.w0_c00332{width:978.426667pt;}
.w1_c00332{width:978.666667pt;}
.x0_c00332{left:0.000000pt;}
.x3_c00332{left:920.826667pt;}
.x1_c00332{left:940.800000pt;}
.x2_c00332{left:959.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_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;}
@font-face{font-family:ff1_c00333;src:url('chunks/assets/font_bbcdc8fe7fe7667bbe679b75.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.109863;font-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_c00333{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c00333{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.v0_c00333{vertical-align:0.000000px;}
.ls0_c00333{letter-spacing:0.000000px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00333{word-spacing:0.000000px;}
.fc0_c00333{color:transparent;}
.fs0_c00333{font-size:3.456000px;}
.fs1_c00333{font-size:13.800000px;}
.y0_c00333{bottom:0.000000px;}
.y2_c00333{bottom:1417.830000px;}
.y1_c00333{bottom:1420.410000px;}
.h2_c00333{height:3.110063px;}
.h3_c00333{height:12.418652px;}
.h1_c00333{height:1507.500000px;}
.h0_c00333{height:1507.680000px;}
.w0_c00333{width:1111.965000px;}
.w1_c00333{width:1112.250000px;}
.x0_c00333{left:0.000000px;}
.x1_c00333{left:22.470000px;}
.x2_c00333{left:29.370000px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ws0_c00333{word-spacing:0.000000pt;}
.fs0_c00333{font-size:3.072000pt;}
.fs1_c00333{font-size:12.266667pt;}
.y0_c00333{bottom:0.000000pt;}
.y2_c00333{bottom:1260.293333pt;}
.y1_c00333{bottom:1262.586667pt;}
.h2_c00333{height:2.764500pt;}
.h3_c00333{height:11.038802pt;}
.h1_c00333{height:1340.000000pt;}
.h0_c00333{height:1340.160000pt;}
.w0_c00333{width:988.413333pt;}
.w1_c00333{width:988.666667pt;}
.x0_c00333{left:0.000000pt;}
.x1_c00333{left:19.973333pt;}
.x2_c00333{left:26.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3220e93c93348a602431a371.woff2')format("woff");}.ff1_c00334{font-family:ff1_c00334;line-height:1.109863;font-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_c00334{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);}
.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;}
.fs0_c00334{font-size:600.000000px;}
.y0_c00334{bottom:0.000000px;}
.y1_c00334{bottom:15.000000px;}
.h2_c00334{height:539.941406px;}
.h0_c00334{height:1526.685000px;}
.h1_c00334{height:1527.000000px;}
.w0_c00334{width:1100.730000px;}
.w1_c00334{width:1101.000000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:15.000000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls0_c00334{letter-spacing:0.000000pt;}
.ws0_c00334{word-spacing:0.000000pt;}
.fs0_c00334{font-size:533.333333pt;}
.y0_c00334{bottom:0.000000pt;}
.y1_c00334{bottom:13.333333pt;}
.h2_c00334{height:479.947917pt;}
.h0_c00334{height:1357.053333pt;}
.h1_c00334{height:1357.333333pt;}
.w0_c00334{width:978.426667pt;}
.w1_c00334{width:978.666667pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00335;src:url('chunks/assets/font_6bf0123ba78aaff465307b61.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:1.109863;font-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_c00335{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m0_c00335{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m6_c00335{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc_c00335{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.md_c00335{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m9_c00335{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m1_c00335{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m7_c00335{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);}
.m2_c00335{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00335{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8_c00335{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c00335{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);}
.m3_c00335{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.me_c00335{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m4_c00335{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls1_c00335{letter-spacing:0.000000px;}
.ls0_c00335{letter-spacing:38.469000px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00335{word-spacing:0.000000px;}
.fc0_c00335{color:transparent;}
.fs5_c00335{font-size:3.456000px;}
.fs2_c00335{font-size:6.000000px;}
.fs6_c00335{font-size:6.900000px;}
.fs9_c00335{font-size:10.380000px;}
.fs4_c00335{font-size:13.800000px;}
.fs1_c00335{font-size:17.280000px;}
.fs7_c00335{font-size:20.760000px;}
.fs0_c00335{font-size:24.180000px;}
.fs3_c00335{font-size:27.660000px;}
.fs8_c00335{font-size:31.080000px;}
.fsc_c00335{font-size:41.460000px;}
.fsb_c00335{font-size:51.840000px;}
.fsa_c00335{font-size:69.120000px;}
.y0_c00335{bottom:0.000000px;}
.y12_c00335{bottom:298.080000px;}
.y11_c00335{bottom:312.765000px;}
.yf_c00335{bottom:322.275000px;}
.y10_c00335{bottom:328.320000px;}
.ye_c00335{bottom:341.280000px;}
.yd_c00335{bottom:342.150000px;}
.yc_c00335{bottom:349.920000px;}
.yb_c00335{bottom:540.870000px;}
.ya_c00335{bottom:546.915000px;}
.y9_c00335{bottom:730.950000px;}
.y8_c00335{bottom:1032.480000px;}
.y7_c00335{bottom:1035.075000px;}
.y5_c00335{bottom:1076.550000px;}
.y6_c00335{bottom:1080.000000px;}
.y4_c00335{bottom:1094.685000px;}
.y2_c00335{bottom:1280.445000px;}
.y3_c00335{bottom:1283.040000px;}
.y1_c00335{bottom:1284.765000px;}
.h7_c00335{height:3.110063px;}
.h4_c00335{height:5.399414px;}
.h8_c00335{height:6.209326px;}
.hb_c00335{height:9.340986px;}
.h6_c00335{height:12.418652px;}
.h3_c00335{height:15.550313px;}
.h9_c00335{height:18.681973px;}
.h2_c00335{height:21.759639px;}
.h5_c00335{height:24.891299px;}
.ha_c00335{height:27.968965px;}
.he_c00335{height:37.309951px;}
.hd_c00335{height:46.650937px;}
.hc_c00335{height:62.201250px;}
.h1_c00335{height:1507.500000px;}
.h0_c00335{height:1507.680000px;}
.w0_c00335{width:1111.965000px;}
.w1_c00335{width:1112.250000px;}
.x0_c00335{left:0.000000px;}
.x3_c00335{left:5.190000px;}
.xe_c00335{left:8.640000px;}
.x4_c00335{left:10.365000px;}
.xd_c00335{left:13.830000px;}
.xb_c00335{left:16.410600px;}
.x9_c00335{left:19.875000px;}
.x5_c00335{left:23.325000px;}
.xa_c00335{left:28.515000px;}
.xc_c00335{left:42.330000px;}
.x8_c00335{left:51.840000px;}
.x1_c00335{left:77.760000px;}
.x2_c00335{left:88.995000px;}
.x6_c00335{left:194.400000px;}
.x7_c00335{left:203.040000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls1_c00335{letter-spacing:0.000000pt;}
.ls0_c00335{letter-spacing:34.194667pt;}
.ws0_c00335{word-spacing:0.000000pt;}
.fs5_c00335{font-size:3.072000pt;}
.fs2_c00335{font-size:5.333333pt;}
.fs6_c00335{font-size:6.133333pt;}
.fs9_c00335{font-size:9.226667pt;}
.fs4_c00335{font-size:12.266667pt;}
.fs1_c00335{font-size:15.360000pt;}
.fs7_c00335{font-size:18.453333pt;}
.fs0_c00335{font-size:21.493333pt;}
.fs3_c00335{font-size:24.586667pt;}
.fs8_c00335{font-size:27.626667pt;}
.fsc_c00335{font-size:36.853333pt;}
.fsb_c00335{font-size:46.080000pt;}
.fsa_c00335{font-size:61.440000pt;}
.y0_c00335{bottom:0.000000pt;}
.y12_c00335{bottom:264.960000pt;}
.y11_c00335{bottom:278.013333pt;}
.yf_c00335{bottom:286.466667pt;}
.y10_c00335{bottom:291.840000pt;}
.ye_c00335{bottom:303.360000pt;}
.yd_c00335{bottom:304.133333pt;}
.yc_c00335{bottom:311.040000pt;}
.yb_c00335{bottom:480.773333pt;}
.ya_c00335{bottom:486.146667pt;}
.y9_c00335{bottom:649.733333pt;}
.y8_c00335{bottom:917.760000pt;}
.y7_c00335{bottom:920.066667pt;}
.y5_c00335{bottom:956.933333pt;}
.y6_c00335{bottom:960.000000pt;}
.y4_c00335{bottom:973.053333pt;}
.y2_c00335{bottom:1138.173333pt;}
.y3_c00335{bottom:1140.480000pt;}
.y1_c00335{bottom:1142.013333pt;}
.h7_c00335{height:2.764500pt;}
.h4_c00335{height:4.799479pt;}
.h8_c00335{height:5.519401pt;}
.hb_c00335{height:8.303099pt;}
.h6_c00335{height:11.038802pt;}
.h3_c00335{height:13.822500pt;}
.h9_c00335{height:16.606198pt;}
.h2_c00335{height:19.341901pt;}
.h5_c00335{height:22.125599pt;}
.ha_c00335{height:24.861302pt;}
.he_c00335{height:33.164401pt;}
.hd_c00335{height:41.467500pt;}
.hc_c00335{height:55.290000pt;}
.h1_c00335{height:1340.000000pt;}
.h0_c00335{height:1340.160000pt;}
.w0_c00335{width:988.413333pt;}
.w1_c00335{width:988.666667pt;}
.x0_c00335{left:0.000000pt;}
.x3_c00335{left:4.613333pt;}
.xe_c00335{left:7.680000pt;}
.x4_c00335{left:9.213333pt;}
.xd_c00335{left:12.293333pt;}
.xb_c00335{left:14.587200pt;}
.x9_c00335{left:17.666667pt;}
.x5_c00335{left:20.733333pt;}
.xa_c00335{left:25.346667pt;}
.xc_c00335{left:37.626667pt;}
.x8_c00335{left:46.080000pt;}
.x1_c00335{left:69.120000pt;}
.x2_c00335{left:79.106667pt;}
.x6_c00335{left:172.800000pt;}
.x7_c00335{left:180.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_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_9d7ec1ebb0dbf78e502ee70f.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:1.109863;font-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_c00336{transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);}
.m15_c00336{transform:matrix(0.076725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076725,0.000000,0.000000,0.250000,0,0);}
.m19_c00336{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.mf_c00336{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m16_c00336{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c00336{transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);}
.m29_c00336{transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);}
.m1d_c00336{transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);}
.m27_c00336{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.m20_c00336{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m2b_c00336{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m2c_c00336{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);}
.m12_c00336{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.m22_c00336{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m1f_c00336{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.me_c00336{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);}
.m2a_c00336{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);}
.m23_c00336{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);}
.m1a_c00336{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m14_c00336{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);}
.m11_c00336{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);}
.m21_c00336{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);}
.m10_c00336{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00336{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_c00336{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);}
.m17_c00336{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);}
.m25_c00336{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc_c00336{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c00336{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00336{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m28_c00336{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00336{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);}
.m1_c00336{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m24_c00336{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m26_c00336{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m6_c00336{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);}
.m3_c00336{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m9_c00336{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);}
.m1e_c00336{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);}
.m0_c00336{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m13_c00336{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.ma_c00336{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m5_c00336{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m7_c00336{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);}
.m4_c00336{transform:matrix(2.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.265000,0.000000,0.000000,0.250000,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;}
.fs8_c00336{font-size:3.456000px;}
.fs10_c00336{font-size:6.000000px;}
.fs16_c00336{font-size:6.900000px;}
.fs3_c00336{font-size:13.800000px;}
.fs13_c00336{font-size:17.280000px;}
.fs4_c00336{font-size:20.760000px;}
.fs2_c00336{font-size:24.180000px;}
.fs15_c00336{font-size:31.080000px;}
.fs11_c00336{font-size:34.560000px;}
.fs1_c00336{font-size:55.320000px;}
.fs5_c00336{font-size:58.740000px;}
.fs0_c00336{font-size:62.220000px;}
.fsc_c00336{font-size:65.640000px;}
.fs6_c00336{font-size:69.120000px;}
.fsd_c00336{font-size:72.600000px;}
.fsf_c00336{font-size:76.020000px;}
.fs7_c00336{font-size:79.500000px;}
.fsa_c00336{font-size:82.920000px;}
.fse_c00336{font-size:86.400000px;}
.fs12_c00336{font-size:89.880000px;}
.fs14_c00336{font-size:93.300000px;}
.fs18_c00336{font-size:96.780000px;}
.fs17_c00336{font-size:100.200000px;}
.fsb_c00336{font-size:103.680000px;}
.fs9_c00336{font-size:114.060000px;}
.y0_c00336{bottom:0.000000px;}
.y1_c00336{bottom:801.795000px;}
.y2_c00336{bottom:803.520000px;}
.y25_c00336{bottom:841.530000px;}
.y26_c00336{bottom:842.400000px;}
.y27_c00336{bottom:843.270000px;}
.y24_c00336{bottom:864.000000px;}
.y1e_c00336{bottom:867.450000px;}
.y22_c00336{bottom:868.320000px;}
.y1f_c00336{bottom:873.510000px;}
.y20_c00336{bottom:875.235000px;}
.y21_c00336{bottom:876.090000px;}
.y23_c00336{bottom:887.325000px;}
.y1d_c00336{bottom:894.240000px;}
.y1b_c00336{bottom:898.560000px;}
.y1c_c00336{bottom:900.285000px;}
.y1a_c00336{bottom:919.290000px;}
.y14_c00336{bottom:920.160000px;}
.y19_c00336{bottom:921.885000px;}
.y16_c00336{bottom:923.610000px;}
.y17_c00336{bottom:924.480000px;}
.y18_c00336{bottom:925.350000px;}
.y15_c00336{bottom:929.670000px;}
.y13_c00336{bottom:942.630000px;}
.y12_c00336{bottom:943.485000px;}
.y11_c00336{bottom:947.805000px;}
.y10_c00336{bottom:948.675000px;}
.yf_c00336{bottom:964.230000px;}
.yd_c00336{bottom:965.955000px;}
.ye_c00336{bottom:966.810000px;}
.yc_c00336{bottom:980.640000px;}
.yb_c00336{bottom:996.195000px;}
.y7_c00336{bottom:997.920000px;}
.y8_c00336{bottom:998.790000px;}
.y9_c00336{bottom:999.645000px;}
.ya_c00336{bottom:1000.515000px;}
.y3_c00336{bottom:1016.070000px;}
.y5_c00336{bottom:1016.925000px;}
.y6_c00336{bottom:1017.795000px;}
.y4_c00336{bottom:1020.390000px;}
.ha_c00336{height:3.110063px;}
.h12_c00336{height:5.399414px;}
.h18_c00336{height:6.209326px;}
.h5_c00336{height:12.418652px;}
.h15_c00336{height:15.550313px;}
.h6_c00336{height:18.681973px;}
.h4_c00336{height:21.759639px;}
.h17_c00336{height:27.968965px;}
.h13_c00336{height:31.100625px;}
.h3_c00336{height:49.782598px;}
.h7_c00336{height:52.860264px;}
.h2_c00336{height:55.991924px;}
.he_c00336{height:59.069590px;}
.h8_c00336{height:62.201250px;}
.hf_c00336{height:65.332910px;}
.h11_c00336{height:68.410576px;}
.h9_c00336{height:71.542236px;}
.hc_c00336{height:74.619902px;}
.h10_c00336{height:77.751563px;}
.h14_c00336{height:80.883223px;}
.h16_c00336{height:83.960889px;}
.h1a_c00336{height:87.092549px;}
.h19_c00336{height:90.170215px;}
.hd_c00336{height:93.301875px;}
.hb_c00336{height:102.642861px;}
.h0_c00336{height:1526.685000px;}
.h1_c00336{height:1527.000000px;}
.w0_c00336{width:1100.730000px;}
.w1_c00336{width:1101.000000px;}
.x0_c00336{left:0.000000px;}
.x7_c00336{left:239.325000px;}
.x16_c00336{left:241.920000px;}
.x3_c00336{left:244.515000px;}
.x4_c00336{left:254.010000px;}
.x17_c00336{left:256.605000px;}
.xd_c00336{left:260.070000px;}
.xe_c00336{left:265.245000px;}
.x11_c00336{left:266.970000px;}
.x1f_c00336{left:268.710000px;}
.x1_c00336{left:276.480000px;}
.x12_c00336{left:314.490000px;}
.x8_c00336{left:317.085000px;}
.x18_c00336{left:328.320000px;}
.x20_c00336{left:335.235000px;}
.x21_c00336{left:349.920000px;}
.x19_c00336{left:353.370000px;}
.x9_c00336{left:366.330000px;}
.x1a_c00336{left:368.925000px;}
.x1d_c00336{left:376.710000px;}
.xa_c00336{left:391.395000px;}
.x25_c00336{left:397.440000px;}
.x13_c00336{left:400.035000px;}
.x22_c00336{left:409.530000px;}
.xb_c00336{left:419.040000px;}
.x5_c00336{left:426.810000px;}
.x1b_c00336{left:430.275000px;}
.xf_c00336{left:432.000000px;}
.x2_c00336{left:436.320000px;}
.x23_c00336{left:451.005000px;}
.xc_c00336{left:453.600000px;}
.x10_c00336{left:456.195000px;}
.x14_c00336{left:470.010000px;}
.x1e_c00336{left:481.245000px;}
.x1c_c00336{left:492.480000px;}
.x15_c00336{left:499.395000px;}
.x6_c00336{left:502.845000px;}
.x24_c00336{left:532.230000px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls0_c00336{letter-spacing:0.000000pt;}
.ws0_c00336{word-spacing:0.000000pt;}
.fs8_c00336{font-size:3.072000pt;}
.fs10_c00336{font-size:5.333333pt;}
.fs16_c00336{font-size:6.133333pt;}
.fs3_c00336{font-size:12.266667pt;}
.fs13_c00336{font-size:15.360000pt;}
.fs4_c00336{font-size:18.453333pt;}
.fs2_c00336{font-size:21.493333pt;}
.fs15_c00336{font-size:27.626667pt;}
.fs11_c00336{font-size:30.720000pt;}
.fs1_c00336{font-size:49.173333pt;}
.fs5_c00336{font-size:52.213333pt;}
.fs0_c00336{font-size:55.306667pt;}
.fsc_c00336{font-size:58.346667pt;}
.fs6_c00336{font-size:61.440000pt;}
.fsd_c00336{font-size:64.533333pt;}
.fsf_c00336{font-size:67.573333pt;}
.fs7_c00336{font-size:70.666667pt;}
.fsa_c00336{font-size:73.706667pt;}
.fse_c00336{font-size:76.800000pt;}
.fs12_c00336{font-size:79.893333pt;}
.fs14_c00336{font-size:82.933333pt;}
.fs18_c00336{font-size:86.026667pt;}
.fs17_c00336{font-size:89.066667pt;}
.fsb_c00336{font-size:92.160000pt;}
.fs9_c00336{font-size:101.386667pt;}
.y0_c00336{bottom:0.000000pt;}
.y1_c00336{bottom:712.706667pt;}
.y2_c00336{bottom:714.240000pt;}
.y25_c00336{bottom:748.026667pt;}
.y26_c00336{bottom:748.800000pt;}
.y27_c00336{bottom:749.573333pt;}
.y24_c00336{bottom:768.000000pt;}
.y1e_c00336{bottom:771.066667pt;}
.y22_c00336{bottom:771.840000pt;}
.y1f_c00336{bottom:776.453333pt;}
.y20_c00336{bottom:777.986667pt;}
.y21_c00336{bottom:778.746667pt;}
.y23_c00336{bottom:788.733333pt;}
.y1d_c00336{bottom:794.880000pt;}
.y1b_c00336{bottom:798.720000pt;}
.y1c_c00336{bottom:800.253333pt;}
.y1a_c00336{bottom:817.146667pt;}
.y14_c00336{bottom:817.920000pt;}
.y19_c00336{bottom:819.453333pt;}
.y16_c00336{bottom:820.986667pt;}
.y17_c00336{bottom:821.760000pt;}
.y18_c00336{bottom:822.533333pt;}
.y15_c00336{bottom:826.373333pt;}
.y13_c00336{bottom:837.893333pt;}
.y12_c00336{bottom:838.653333pt;}
.y11_c00336{bottom:842.493333pt;}
.y10_c00336{bottom:843.266667pt;}
.yf_c00336{bottom:857.093333pt;}
.yd_c00336{bottom:858.626667pt;}
.ye_c00336{bottom:859.386667pt;}
.yc_c00336{bottom:871.680000pt;}
.yb_c00336{bottom:885.506667pt;}
.y7_c00336{bottom:887.040000pt;}
.y8_c00336{bottom:887.813333pt;}
.y9_c00336{bottom:888.573333pt;}
.ya_c00336{bottom:889.346667pt;}
.y3_c00336{bottom:903.173333pt;}
.y5_c00336{bottom:903.933333pt;}
.y6_c00336{bottom:904.706667pt;}
.y4_c00336{bottom:907.013333pt;}
.ha_c00336{height:2.764500pt;}
.h12_c00336{height:4.799479pt;}
.h18_c00336{height:5.519401pt;}
.h5_c00336{height:11.038802pt;}
.h15_c00336{height:13.822500pt;}
.h6_c00336{height:16.606198pt;}
.h4_c00336{height:19.341901pt;}
.h17_c00336{height:24.861302pt;}
.h13_c00336{height:27.645000pt;}
.h3_c00336{height:44.251198pt;}
.h7_c00336{height:46.986901pt;}
.h2_c00336{height:49.770599pt;}
.he_c00336{height:52.506302pt;}
.h8_c00336{height:55.290000pt;}
.hf_c00336{height:58.073698pt;}
.h11_c00336{height:60.809401pt;}
.h9_c00336{height:63.593099pt;}
.hc_c00336{height:66.328802pt;}
.h10_c00336{height:69.112500pt;}
.h14_c00336{height:71.896198pt;}
.h16_c00336{height:74.631901pt;}
.h1a_c00336{height:77.415599pt;}
.h19_c00336{height:80.151302pt;}
.hd_c00336{height:82.935000pt;}
.hb_c00336{height:91.238099pt;}
.h0_c00336{height:1357.053333pt;}
.h1_c00336{height:1357.333333pt;}
.w0_c00336{width:978.426667pt;}
.w1_c00336{width:978.666667pt;}
.x0_c00336{left:0.000000pt;}
.x7_c00336{left:212.733333pt;}
.x16_c00336{left:215.040000pt;}
.x3_c00336{left:217.346667pt;}
.x4_c00336{left:225.786667pt;}
.x17_c00336{left:228.093333pt;}
.xd_c00336{left:231.173333pt;}
.xe_c00336{left:235.773333pt;}
.x11_c00336{left:237.306667pt;}
.x1f_c00336{left:238.853333pt;}
.x1_c00336{left:245.760000pt;}
.x12_c00336{left:279.546667pt;}
.x8_c00336{left:281.853333pt;}
.x18_c00336{left:291.840000pt;}
.x20_c00336{left:297.986667pt;}
.x21_c00336{left:311.040000pt;}
.x19_c00336{left:314.106667pt;}
.x9_c00336{left:325.626667pt;}
.x1a_c00336{left:327.933333pt;}
.x1d_c00336{left:334.853333pt;}
.xa_c00336{left:347.906667pt;}
.x25_c00336{left:353.280000pt;}
.x13_c00336{left:355.586667pt;}
.x22_c00336{left:364.026667pt;}
.xb_c00336{left:372.480000pt;}
.x5_c00336{left:379.386667pt;}
.x1b_c00336{left:382.466667pt;}
.xf_c00336{left:384.000000pt;}
.x2_c00336{left:387.840000pt;}
.x23_c00336{left:400.893333pt;}
.xc_c00336{left:403.200000pt;}
.x10_c00336{left:405.506667pt;}
.x14_c00336{left:417.786667pt;}
.x1e_c00336{left:427.773333pt;}
.x1c_c00336{left:437.760000pt;}
.x15_c00336{left:443.906667pt;}
.x6_c00336{left:446.973333pt;}
.x24_c00336{left:473.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00337;src:url('chunks/assets/font_31a69d1fea372950a3e45285.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:1.109863;font-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_c00337{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m53_c00337{transform:matrix(0.090600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090600,0.000000,0.000000,0.250000,0,0);}
.m14_c00337{transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);}
.m18_c00337{transform:matrix(0.117150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117150,0.000000,0.000000,0.250000,0,0);}
.m3b_c00337{transform:matrix(0.118200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118200,0.000000,0.000000,0.250000,0,0);}
.m17_c00337{transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);}
.m1a_c00337{transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);}
.m54_c00337{transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);}
.m60_c00337{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.m16_c00337{transform:matrix(0.134650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134650,0.000000,0.000000,0.250000,0,0);}
.m42_c00337{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.m4a_c00337{transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);}
.m12_c00337{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00337{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.m13_c00337{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.me_c00337{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);}
.m50_c00337{transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);}
.m52_c00337{transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);}
.m4d_c00337{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.m2a_c00337{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m62_c00337{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);}
.m65_c00337{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);}
.m56_c00337{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m46_c00337{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);}
.m1c_c00337{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);}
.m48_c00337{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);}
.m66_c00337{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m3f_c00337{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00337{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);}
.m45_c00337{transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);}
.m57_c00337{transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);}
.m55_c00337{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);}
.m6b_c00337{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);}
.m23_c00337{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.m5a_c00337{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);}
.m3e_c00337{transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);}
.m5e_c00337{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.m33_c00337{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);}
.m26_c00337{transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);}
.m5f_c00337{transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);}
.m38_c00337{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m44_c00337{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m15_c00337{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m61_c00337{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.m31_c00337{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);}
.m4e_c00337{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);}
.m25_c00337{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m69_c00337{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m47_c00337{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m3c_c00337{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);}
.m58_c00337{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);}
.m4b_c00337{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);}
.m4_c00337{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.m51_c00337{transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);}
.m49_c00337{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);}
.m5b_c00337{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);}
.m4f_c00337{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m27_c00337{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);}
.m28_c00337{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m36_c00337{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c00337{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m29_c00337{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);}
.m1b_c00337{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m22_c00337{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);}
.m35_c00337{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);}
.m2e_c00337{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m67_c00337{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00337{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);}
.m5_c00337{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);}
.m2_c00337{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00337{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);}
.m30_c00337{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m40_c00337{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c00337{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00337{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m68_c00337{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);}
.m2f_c00337{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00337{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c00337{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_c00337{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);}
.ma_c00337{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00337{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);}
.m7_c00337{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m11_c00337{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mb_c00337{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);}
.md_c00337{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m37_c00337{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);}
.mc_c00337{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);}
.m3d_c00337{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1_c00337{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c00337{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m34_c00337{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m41_c00337{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m0_c00337{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);}
.m1e_c00337{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m43_c00337{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m64_c00337{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m24_c00337{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);}
.m19_c00337{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m39_c00337{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00337{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00337{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00337{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m10_c00337{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m59_c00337{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);}
.m20_c00337{transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);}
.m21_c00337{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);}
.m63_c00337{transform:matrix(5.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.225000,0.000000,0.000000,0.250000,0,0);}
.v0_c00337{vertical-align:0.000000px;}
.ls0_c00337{letter-spacing:0.000000px;}
.sc__c00337{text-shadow:none;}
.sc0_c00337{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00337{-webkit-text-stroke:0px transparent;}
.sc0_c00337{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00337{word-spacing:0.000000px;}
.fc0_c00337{color:transparent;}
.fsc_c00337{font-size:3.456000px;}
.fs2_c00337{font-size:6.000000px;}
.fsb_c00337{font-size:6.900000px;}
.fs1a_c00337{font-size:10.380000px;}
.fs15_c00337{font-size:13.800000px;}
.fs0_c00337{font-size:17.280000px;}
.fs1_c00337{font-size:20.760000px;}
.fs14_c00337{font-size:27.660000px;}
.fs17_c00337{font-size:31.080000px;}
.fs16_c00337{font-size:34.560000px;}
.fs13_c00337{font-size:38.040000px;}
.fs19_c00337{font-size:41.460000px;}
.fs3_c00337{font-size:48.360000px;}
.fsa_c00337{font-size:51.840000px;}
.fs7_c00337{font-size:55.320000px;}
.fs5_c00337{font-size:58.740000px;}
.fs4_c00337{font-size:62.220000px;}
.fs18_c00337{font-size:65.640000px;}
.fs6_c00337{font-size:69.120000px;}
.fs8_c00337{font-size:72.600000px;}
.fs12_c00337{font-size:76.020000px;}
.fse_c00337{font-size:79.500000px;}
.fs1b_c00337{font-size:82.920000px;}
.fs1c_c00337{font-size:86.400000px;}
.fs11_c00337{font-size:89.880000px;}
.fs9_c00337{font-size:93.300000px;}
.fsf_c00337{font-size:96.780000px;}
.fs10_c00337{font-size:100.200000px;}
.fs1e_c00337{font-size:103.680000px;}
.fs1d_c00337{font-size:110.580000px;}
.fsd_c00337{font-size:117.480000px;}
.y0_c00337{bottom:0.000000px;}
.y67_c00337{bottom:736.995000px;}
.y65_c00337{bottom:1180.230000px;}
.y66_c00337{bottom:1181.955000px;}
.y5e_c00337{bottom:1198.365000px;}
.y5d_c00337{bottom:1200.960000px;}
.y62_c00337{bottom:1201.830000px;}
.y5f_c00337{bottom:1202.685000px;}
.y64_c00337{bottom:1205.280000px;}
.y63_c00337{bottom:1211.325000px;}
.y60_c00337{bottom:1214.790000px;}
.y61_c00337{bottom:1219.965000px;}
.y57_c00337{bottom:1224.285000px;}
.y56_c00337{bottom:1225.155000px;}
.y59_c00337{bottom:1226.010000px;}
.y58_c00337{bottom:1226.880000px;}
.y1_c00337{bottom:1227.750000px;}
.y5a_c00337{bottom:1228.605000px;}
.y5b_c00337{bottom:1236.390000px;}
.y5c_c00337{bottom:1237.245000px;}
.y52_c00337{bottom:1242.435000px;}
.y53_c00337{bottom:1244.160000px;}
.y54_c00337{bottom:1246.755000px;}
.y50_c00337{bottom:1247.610000px;}
.y55_c00337{bottom:1248.480000px;}
.y51_c00337{bottom:1249.350000px;}
.y46_c00337{bottom:1250.205000px;}
.y44_c00337{bottom:1251.075000px;}
.y45_c00337{bottom:1252.800000px;}
.y49_c00337{bottom:1253.670000px;}
.y47_c00337{bottom:1255.395000px;}
.y48_c00337{bottom:1257.990000px;}
.y4d_c00337{bottom:1262.310000px;}
.y4b_c00337{bottom:1263.165000px;}
.y4c_c00337{bottom:1264.890000px;}
.y4f_c00337{bottom:1265.760000px;}
.y4a_c00337{bottom:1268.355000px;}
.y4e_c00337{bottom:1269.210000px;}
.y3b_c00337{bottom:1275.270000px;}
.y3d_c00337{bottom:1276.995000px;}
.y3c_c00337{bottom:1277.850000px;}
.y3e_c00337{bottom:1279.590000px;}
.y3f_c00337{bottom:1281.315000px;}
.y41_c00337{bottom:1282.170000px;}
.y40_c00337{bottom:1288.230000px;}
.y42_c00337{bottom:1289.085000px;}
.y43_c00337{bottom:1292.550000px;}
.y36_c00337{bottom:1300.320000px;}
.y34_c00337{bottom:1301.190000px;}
.y35_c00337{bottom:1302.045000px;}
.y39_c00337{bottom:1302.915000px;}
.y3a_c00337{bottom:1303.770000px;}
.y37_c00337{bottom:1304.640000px;}
.y30_c00337{bottom:1305.510000px;}
.y38_c00337{bottom:1308.960000px;}
.y2f_c00337{bottom:1309.830000px;}
.y2d_c00337{bottom:1312.410000px;}
.y31_c00337{bottom:1313.280000px;}
.y33_c00337{bottom:1314.150000px;}
.y2e_c00337{bottom:1315.875000px;}
.y32_c00337{bottom:1317.600000px;}
.y2b_c00337{bottom:1322.790000px;}
.y2c_c00337{bottom:1323.645000px;}
.y26_c00337{bottom:1324.515000px;}
.y27_c00337{bottom:1325.370000px;}
.y2a_c00337{bottom:1327.965000px;}
.y29_c00337{bottom:1328.835000px;}
.y28_c00337{bottom:1329.690000px;}
.y23_c00337{bottom:1332.285000px;}
.y25_c00337{bottom:1334.010000px;}
.y1d_c00337{bottom:1337.475000px;}
.y1e_c00337{bottom:1338.330000px;}
.y21_c00337{bottom:1340.925000px;}
.y24_c00337{bottom:1342.650000px;}
.y1c_c00337{bottom:1343.520000px;}
.y22_c00337{bottom:1345.245000px;}
.y1f_c00337{bottom:1346.970000px;}
.y20_c00337{bottom:1347.840000px;}
.y11_c00337{bottom:1348.710000px;}
.y16_c00337{bottom:1350.435000px;}
.y13_c00337{bottom:1351.290000px;}
.y15_c00337{bottom:1352.160000px;}
.y12_c00337{bottom:1353.885000px;}
.y14_c00337{bottom:1354.755000px;}
.y17_c00337{bottom:1358.205000px;}
.y19_c00337{bottom:1359.930000px;}
.y1a_c00337{bottom:1363.395000px;}
.y18_c00337{bottom:1365.120000px;}
.y1b_c00337{bottom:1367.715000px;}
.y10_c00337{bottom:1368.570000px;}
.ya_c00337{bottom:1379.805000px;}
.yc_c00337{bottom:1381.530000px;}
.yf_c00337{bottom:1384.995000px;}
.yb_c00337{bottom:1387.590000px;}
.yd_c00337{bottom:1388.445000px;}
.ye_c00337{bottom:1389.315000px;}
.y4_c00337{bottom:1405.725000px;}
.y3_c00337{bottom:1407.450000px;}
.y2_c00337{bottom:1409.190000px;}
.y5_c00337{bottom:1410.045000px;}
.y6_c00337{bottom:1410.915000px;}
.y7_c00337{bottom:1411.770000px;}
.y8_c00337{bottom:1412.640000px;}
.y9_c00337{bottom:1413.510000px;}
.he_c00337{height:3.110063px;}
.h4_c00337{height:5.399414px;}
.hd_c00337{height:6.209326px;}
.h1c_c00337{height:9.340986px;}
.h17_c00337{height:12.418652px;}
.h2_c00337{height:15.550313px;}
.h3_c00337{height:18.681973px;}
.h16_c00337{height:24.891299px;}
.h19_c00337{height:27.968965px;}
.h18_c00337{height:31.100625px;}
.h15_c00337{height:34.232285px;}
.h1b_c00337{height:37.309951px;}
.h5_c00337{height:43.519277px;}
.hc_c00337{height:46.650937px;}
.h9_c00337{height:49.782598px;}
.h7_c00337{height:52.860264px;}
.h6_c00337{height:55.991924px;}
.h1a_c00337{height:59.069590px;}
.h8_c00337{height:62.201250px;}
.ha_c00337{height:65.332910px;}
.h14_c00337{height:68.410576px;}
.h10_c00337{height:71.542236px;}
.h1d_c00337{height:74.619902px;}
.h1e_c00337{height:77.751563px;}
.h13_c00337{height:80.883223px;}
.hb_c00337{height:83.960889px;}
.h11_c00337{height:87.092549px;}
.h12_c00337{height:90.170215px;}
.h20_c00337{height:93.301875px;}
.h1f_c00337{height:99.511201px;}
.hf_c00337{height:105.720527px;}
.h1_c00337{height:1507.500000px;}
.h0_c00337{height:1507.680000px;}
.w0_c00337{width:1111.965000px;}
.w1_c00337{width:1112.250000px;}
.x0_c00337{left:0.000000px;}
.x68_c00337{left:32.835000px;}
.x1_c00337{left:151.200000px;}
.x23_c00337{left:223.770000px;}
.x44_c00337{left:225.510000px;}
.x17_c00337{left:230.685000px;}
.x24_c00337{left:236.730000px;}
.x18_c00337{left:246.240000px;}
.x31_c00337{left:250.560000px;}
.x3b_c00337{left:254.010000px;}
.x25_c00337{left:259.200000px;}
.x26_c00337{left:275.611650px;}
.x45_c00337{left:280.800000px;}
.x3c_c00337{left:291.165000px;}
.x27_c00337{left:298.950000px;}
.x46_c00337{left:304.125000px;}
.x11_c00337{left:311.040000px;}
.x2_c00337{left:313.635000px;}
.x19_c00337{left:315.360000px;}
.x5b_c00337{left:317.955000px;}
.x3d_c00337{left:323.130000px;}
.x3_c00337{left:332.640000px;}
.x4e_c00337{left:336.090000px;}
.x1a_c00337{left:339.555000px;}
.x4_c00337{left:345.600000px;}
.x4f_c00337{left:357.690000px;}
.x32_c00337{left:362.880000px;}
.x1b_c00337{left:366.330000px;}
.x60_c00337{left:374.115000px;}
.x33_c00337{left:375.840000px;}
.x1c_c00337{left:380.160000px;}
.x47_c00337{left:384.480000px;}
.x3e_c00337{left:388.800000px;}
.x28_c00337{left:396.570000px;}
.x3f_c00337{left:400.035000px;}
.x56_c00337{left:403.485000px;}
.x5c_c00337{left:414.720000px;}
.x5_c00337{left:417.315000px;}
.x48_c00337{left:422.490000px;}
.x49_c00337{left:428.550000px;}
.x40_c00337{left:431.130000px;}
.x1d_c00337{left:442.365000px;}
.x6_c00337{left:444.090000px;}
.x29_c00337{left:445.830000px;}
.x67_c00337{left:451.005000px;}
.x61_c00337{left:452.730000px;}
.x2a_c00337{left:455.325000px;}
.x34_c00337{left:459.645000px;}
.x41_c00337{left:463.110000px;}
.x7_c00337{left:466.560000px;}
.x50_c00337{left:470.880000px;}
.x63_c00337{left:472.605000px;}
.x64_c00337{left:482.115000px;}
.x57_c00337{left:483.840000px;}
.x35_c00337{left:486.435000px;}
.x2b_c00337{left:493.350000px;}
.x8_c00337{left:495.075000px;}
.x51_c00337{left:496.800000px;}
.x42_c00337{left:506.310000px;}
.x9_c00337{left:512.355000px;}
.x2c_c00337{left:518.400000px;}
.x36_c00337{left:522.720000px;}
.xa_c00337{left:533.085000px;}
.x43_c00337{left:538.275000px;}
.x65_c00337{left:540.000000px;}
.xb_c00337{left:549.510000px;}
.x12_c00337{left:551.235000px;}
.x2d_c00337{left:572.835000px;}
.x4a_c00337{left:574.560000px;}
.x58_c00337{left:576.285000px;}
.x13_c00337{left:584.925000px;}
.x1e_c00337{left:593.565000px;}
.xc_c00337{left:596.160000px;}
.x66_c00337{left:610.845000px;}
.xd_c00337{left:616.035000px;}
.x5d_c00337{left:617.760000px;}
.x4b_c00337{left:622.950000px;}
.x37_c00337{left:631.590000px;}
.xe_c00337{left:634.170000px;}
.x14_c00337{left:640.230000px;}
.x1f_c00337{left:643.680000px;}
.xf_c00337{left:651.450000px;}
.x62_c00337{left:656.640000px;}
.x59_c00337{left:658.365000px;}
.x5a_c00337{left:667.005000px;}
.x4c_c00337{left:677.370000px;}
.x2e_c00337{left:679.965000px;}
.x20_c00337{left:686.010000px;}
.x5e_c00337{left:692.070000px;}
.x52_c00337{left:715.395000px;}
.x38_c00337{left:723.165000px;}
.x53_c00337{left:737.850000px;}
.x2f_c00337{left:743.040000px;}
.x39_c00337{left:754.275000px;}
.x21_c00337{left:776.730000px;}
.x5f_c00337{left:781.920000px;}
.x15_c00337{left:800.925000px;}
.x30_c00337{left:804.390000px;}
.x4d_c00337{left:819.075000px;}
.x3a_c00337{left:832.035000px;}
.x10_c00337{left:833.760000px;}
.x54_c00337{left:835.485000px;}
.x55_c00337{left:850.170000px;}
.x22_c00337{left:851.910000px;}
.x16_c00337{left:853.635000px;}
@media print{
.v0_c00337{vertical-align:0.000000pt;}
.ls0_c00337{letter-spacing:0.000000pt;}
.ws0_c00337{word-spacing:0.000000pt;}
.fsc_c00337{font-size:3.072000pt;}
.fs2_c00337{font-size:5.333333pt;}
.fsb_c00337{font-size:6.133333pt;}
.fs1a_c00337{font-size:9.226667pt;}
.fs15_c00337{font-size:12.266667pt;}
.fs0_c00337{font-size:15.360000pt;}
.fs1_c00337{font-size:18.453333pt;}
.fs14_c00337{font-size:24.586667pt;}
.fs17_c00337{font-size:27.626667pt;}
.fs16_c00337{font-size:30.720000pt;}
.fs13_c00337{font-size:33.813333pt;}
.fs19_c00337{font-size:36.853333pt;}
.fs3_c00337{font-size:42.986667pt;}
.fsa_c00337{font-size:46.080000pt;}
.fs7_c00337{font-size:49.173333pt;}
.fs5_c00337{font-size:52.213333pt;}
.fs4_c00337{font-size:55.306667pt;}
.fs18_c00337{font-size:58.346667pt;}
.fs6_c00337{font-size:61.440000pt;}
.fs8_c00337{font-size:64.533333pt;}
.fs12_c00337{font-size:67.573333pt;}
.fse_c00337{font-size:70.666667pt;}
.fs1b_c00337{font-size:73.706667pt;}
.fs1c_c00337{font-size:76.800000pt;}
.fs11_c00337{font-size:79.893333pt;}
.fs9_c00337{font-size:82.933333pt;}
.fsf_c00337{font-size:86.026667pt;}
.fs10_c00337{font-size:89.066667pt;}
.fs1e_c00337{font-size:92.160000pt;}
.fs1d_c00337{font-size:98.293333pt;}
.fsd_c00337{font-size:104.426667pt;}
.y0_c00337{bottom:0.000000pt;}
.y67_c00337{bottom:655.106667pt;}
.y65_c00337{bottom:1049.093333pt;}
.y66_c00337{bottom:1050.626667pt;}
.y5e_c00337{bottom:1065.213333pt;}
.y5d_c00337{bottom:1067.520000pt;}
.y62_c00337{bottom:1068.293333pt;}
.y5f_c00337{bottom:1069.053333pt;}
.y64_c00337{bottom:1071.360000pt;}
.y63_c00337{bottom:1076.733333pt;}
.y60_c00337{bottom:1079.813333pt;}
.y61_c00337{bottom:1084.413333pt;}
.y57_c00337{bottom:1088.253333pt;}
.y56_c00337{bottom:1089.026667pt;}
.y59_c00337{bottom:1089.786667pt;}
.y58_c00337{bottom:1090.560000pt;}
.y1_c00337{bottom:1091.333333pt;}
.y5a_c00337{bottom:1092.093333pt;}
.y5b_c00337{bottom:1099.013333pt;}
.y5c_c00337{bottom:1099.773333pt;}
.y52_c00337{bottom:1104.386667pt;}
.y53_c00337{bottom:1105.920000pt;}
.y54_c00337{bottom:1108.226667pt;}
.y50_c00337{bottom:1108.986667pt;}
.y55_c00337{bottom:1109.760000pt;}
.y51_c00337{bottom:1110.533333pt;}
.y46_c00337{bottom:1111.293333pt;}
.y44_c00337{bottom:1112.066667pt;}
.y45_c00337{bottom:1113.600000pt;}
.y49_c00337{bottom:1114.373333pt;}
.y47_c00337{bottom:1115.906667pt;}
.y48_c00337{bottom:1118.213333pt;}
.y4d_c00337{bottom:1122.053333pt;}
.y4b_c00337{bottom:1122.813333pt;}
.y4c_c00337{bottom:1124.346667pt;}
.y4f_c00337{bottom:1125.120000pt;}
.y4a_c00337{bottom:1127.426667pt;}
.y4e_c00337{bottom:1128.186667pt;}
.y3b_c00337{bottom:1133.573333pt;}
.y3d_c00337{bottom:1135.106667pt;}
.y3c_c00337{bottom:1135.866667pt;}
.y3e_c00337{bottom:1137.413333pt;}
.y3f_c00337{bottom:1138.946667pt;}
.y41_c00337{bottom:1139.706667pt;}
.y40_c00337{bottom:1145.093333pt;}
.y42_c00337{bottom:1145.853333pt;}
.y43_c00337{bottom:1148.933333pt;}
.y36_c00337{bottom:1155.840000pt;}
.y34_c00337{bottom:1156.613333pt;}
.y35_c00337{bottom:1157.373333pt;}
.y39_c00337{bottom:1158.146667pt;}
.y3a_c00337{bottom:1158.906667pt;}
.y37_c00337{bottom:1159.680000pt;}
.y30_c00337{bottom:1160.453333pt;}
.y38_c00337{bottom:1163.520000pt;}
.y2f_c00337{bottom:1164.293333pt;}
.y2d_c00337{bottom:1166.586667pt;}
.y31_c00337{bottom:1167.360000pt;}
.y33_c00337{bottom:1168.133333pt;}
.y2e_c00337{bottom:1169.666667pt;}
.y32_c00337{bottom:1171.200000pt;}
.y2b_c00337{bottom:1175.813333pt;}
.y2c_c00337{bottom:1176.573333pt;}
.y26_c00337{bottom:1177.346667pt;}
.y27_c00337{bottom:1178.106667pt;}
.y2a_c00337{bottom:1180.413333pt;}
.y29_c00337{bottom:1181.186667pt;}
.y28_c00337{bottom:1181.946667pt;}
.y23_c00337{bottom:1184.253333pt;}
.y25_c00337{bottom:1185.786667pt;}
.y1d_c00337{bottom:1188.866667pt;}
.y1e_c00337{bottom:1189.626667pt;}
.y21_c00337{bottom:1191.933333pt;}
.y24_c00337{bottom:1193.466667pt;}
.y1c_c00337{bottom:1194.240000pt;}
.y22_c00337{bottom:1195.773333pt;}
.y1f_c00337{bottom:1197.306667pt;}
.y20_c00337{bottom:1198.080000pt;}
.y11_c00337{bottom:1198.853333pt;}
.y16_c00337{bottom:1200.386667pt;}
.y13_c00337{bottom:1201.146667pt;}
.y15_c00337{bottom:1201.920000pt;}
.y12_c00337{bottom:1203.453333pt;}
.y14_c00337{bottom:1204.226667pt;}
.y17_c00337{bottom:1207.293333pt;}
.y19_c00337{bottom:1208.826667pt;}
.y1a_c00337{bottom:1211.906667pt;}
.y18_c00337{bottom:1213.440000pt;}
.y1b_c00337{bottom:1215.746667pt;}
.y10_c00337{bottom:1216.506667pt;}
.ya_c00337{bottom:1226.493333pt;}
.yc_c00337{bottom:1228.026667pt;}
.yf_c00337{bottom:1231.106667pt;}
.yb_c00337{bottom:1233.413333pt;}
.yd_c00337{bottom:1234.173333pt;}
.ye_c00337{bottom:1234.946667pt;}
.y4_c00337{bottom:1249.533333pt;}
.y3_c00337{bottom:1251.066667pt;}
.y2_c00337{bottom:1252.613333pt;}
.y5_c00337{bottom:1253.373333pt;}
.y6_c00337{bottom:1254.146667pt;}
.y7_c00337{bottom:1254.906667pt;}
.y8_c00337{bottom:1255.680000pt;}
.y9_c00337{bottom:1256.453333pt;}
.he_c00337{height:2.764500pt;}
.h4_c00337{height:4.799479pt;}
.hd_c00337{height:5.519401pt;}
.h1c_c00337{height:8.303099pt;}
.h17_c00337{height:11.038802pt;}
.h2_c00337{height:13.822500pt;}
.h3_c00337{height:16.606198pt;}
.h16_c00337{height:22.125599pt;}
.h19_c00337{height:24.861302pt;}
.h18_c00337{height:27.645000pt;}
.h15_c00337{height:30.428698pt;}
.h1b_c00337{height:33.164401pt;}
.h5_c00337{height:38.683802pt;}
.hc_c00337{height:41.467500pt;}
.h9_c00337{height:44.251198pt;}
.h7_c00337{height:46.986901pt;}
.h6_c00337{height:49.770599pt;}
.h1a_c00337{height:52.506302pt;}
.h8_c00337{height:55.290000pt;}
.ha_c00337{height:58.073698pt;}
.h14_c00337{height:60.809401pt;}
.h10_c00337{height:63.593099pt;}
.h1d_c00337{height:66.328802pt;}
.h1e_c00337{height:69.112500pt;}
.h13_c00337{height:71.896198pt;}
.hb_c00337{height:74.631901pt;}
.h11_c00337{height:77.415599pt;}
.h12_c00337{height:80.151302pt;}
.h20_c00337{height:82.935000pt;}
.h1f_c00337{height:88.454401pt;}
.hf_c00337{height:93.973802pt;}
.h1_c00337{height:1340.000000pt;}
.h0_c00337{height:1340.160000pt;}
.w0_c00337{width:988.413333pt;}
.w1_c00337{width:988.666667pt;}
.x0_c00337{left:0.000000pt;}
.x68_c00337{left:29.186667pt;}
.x1_c00337{left:134.400000pt;}
.x23_c00337{left:198.906667pt;}
.x44_c00337{left:200.453333pt;}
.x17_c00337{left:205.053333pt;}
.x24_c00337{left:210.426667pt;}
.x18_c00337{left:218.880000pt;}
.x31_c00337{left:222.720000pt;}
.x3b_c00337{left:225.786667pt;}
.x25_c00337{left:230.400000pt;}
.x26_c00337{left:244.988133pt;}
.x45_c00337{left:249.600000pt;}
.x3c_c00337{left:258.813333pt;}
.x27_c00337{left:265.733333pt;}
.x46_c00337{left:270.333333pt;}
.x11_c00337{left:276.480000pt;}
.x2_c00337{left:278.786667pt;}
.x19_c00337{left:280.320000pt;}
.x5b_c00337{left:282.626667pt;}
.x3d_c00337{left:287.226667pt;}
.x3_c00337{left:295.680000pt;}
.x4e_c00337{left:298.746667pt;}
.x1a_c00337{left:301.826667pt;}
.x4_c00337{left:307.200000pt;}
.x4f_c00337{left:317.946667pt;}
.x32_c00337{left:322.560000pt;}
.x1b_c00337{left:325.626667pt;}
.x60_c00337{left:332.546667pt;}
.x33_c00337{left:334.080000pt;}
.x1c_c00337{left:337.920000pt;}
.x47_c00337{left:341.760000pt;}
.x3e_c00337{left:345.600000pt;}
.x28_c00337{left:352.506667pt;}
.x3f_c00337{left:355.586667pt;}
.x56_c00337{left:358.653333pt;}
.x5c_c00337{left:368.640000pt;}
.x5_c00337{left:370.946667pt;}
.x48_c00337{left:375.546667pt;}
.x49_c00337{left:380.933333pt;}
.x40_c00337{left:383.226667pt;}
.x1d_c00337{left:393.213333pt;}
.x6_c00337{left:394.746667pt;}
.x29_c00337{left:396.293333pt;}
.x67_c00337{left:400.893333pt;}
.x61_c00337{left:402.426667pt;}
.x2a_c00337{left:404.733333pt;}
.x34_c00337{left:408.573333pt;}
.x41_c00337{left:411.653333pt;}
.x7_c00337{left:414.720000pt;}
.x50_c00337{left:418.560000pt;}
.x63_c00337{left:420.093333pt;}
.x64_c00337{left:428.546667pt;}
.x57_c00337{left:430.080000pt;}
.x35_c00337{left:432.386667pt;}
.x2b_c00337{left:438.533333pt;}
.x8_c00337{left:440.066667pt;}
.x51_c00337{left:441.600000pt;}
.x42_c00337{left:450.053333pt;}
.x9_c00337{left:455.426667pt;}
.x2c_c00337{left:460.800000pt;}
.x36_c00337{left:464.640000pt;}
.xa_c00337{left:473.853333pt;}
.x43_c00337{left:478.466667pt;}
.x65_c00337{left:480.000000pt;}
.xb_c00337{left:488.453333pt;}
.x12_c00337{left:489.986667pt;}
.x2d_c00337{left:509.186667pt;}
.x4a_c00337{left:510.720000pt;}
.x58_c00337{left:512.253333pt;}
.x13_c00337{left:519.933333pt;}
.x1e_c00337{left:527.613333pt;}
.xc_c00337{left:529.920000pt;}
.x66_c00337{left:542.973333pt;}
.xd_c00337{left:547.586667pt;}
.x5d_c00337{left:549.120000pt;}
.x4b_c00337{left:553.733333pt;}
.x37_c00337{left:561.413333pt;}
.xe_c00337{left:563.706667pt;}
.x14_c00337{left:569.093333pt;}
.x1f_c00337{left:572.160000pt;}
.xf_c00337{left:579.066667pt;}
.x62_c00337{left:583.680000pt;}
.x59_c00337{left:585.213333pt;}
.x5a_c00337{left:592.893333pt;}
.x4c_c00337{left:602.106667pt;}
.x2e_c00337{left:604.413333pt;}
.x20_c00337{left:609.786667pt;}
.x5e_c00337{left:615.173333pt;}
.x52_c00337{left:635.906667pt;}
.x38_c00337{left:642.813333pt;}
.x53_c00337{left:655.866667pt;}
.x2f_c00337{left:660.480000pt;}
.x39_c00337{left:670.466667pt;}
.x21_c00337{left:690.426667pt;}
.x5f_c00337{left:695.040000pt;}
.x15_c00337{left:711.933333pt;}
.x30_c00337{left:715.013333pt;}
.x4d_c00337{left:728.066667pt;}
.x3a_c00337{left:739.586667pt;}
.x10_c00337{left:741.120000pt;}
.x54_c00337{left:742.653333pt;}
.x55_c00337{left:755.706667pt;}
.x22_c00337{left:757.253333pt;}
.x16_c00337{left:758.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0c160735ff2059f6c505ee1.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.109863;font-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_c00338{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c00338{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);}
.m0_c00338{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);}
.m5_c00338{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c00338{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00338{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c00338{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2_c00338{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);}
.mb_c00338{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7_c00338{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1_c00338{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.ma_c00338{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mc_c00338{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,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;}
.fs5_c00338{font-size:3.456000px;}
.fs8_c00338{font-size:13.800000px;}
.fs0_c00338{font-size:17.280000px;}
.fs6_c00338{font-size:20.760000px;}
.fs7_c00338{font-size:27.660000px;}
.fs3_c00338{font-size:55.320000px;}
.fs2_c00338{font-size:58.740000px;}
.fs4_c00338{font-size:62.220000px;}
.fs1_c00338{font-size:65.640000px;}
.y0_c00338{bottom:0.000000px;}
.y1_c00338{bottom:1103.325000px;}
.y7_c00338{bottom:1125.795000px;}
.y8_c00338{bottom:1127.520000px;}
.y6_c00338{bottom:1368.570000px;}
.y4_c00338{bottom:1421.280000px;}
.y3_c00338{bottom:1422.150000px;}
.y2_c00338{bottom:1423.005000px;}
.y5_c00338{bottom:1425.600000px;}
.h7_c00338{height:3.110063px;}
.ha_c00338{height:12.418652px;}
.h2_c00338{height:15.550313px;}
.h8_c00338{height:18.681973px;}
.h9_c00338{height:24.891299px;}
.h5_c00338{height:49.782598px;}
.h4_c00338{height:52.860264px;}
.h6_c00338{height:55.991924px;}
.h3_c00338{height:59.069590px;}
.h0_c00338{height:1526.685000px;}
.h1_c00338{height:1527.000000px;}
.w0_c00338{width:1100.730000px;}
.w1_c00338{width:1101.000000px;}
.x0_c00338{left:0.000000px;}
.x2_c00338{left:422.490000px;}
.x3_c00338{left:570.240000px;}
.x4_c00338{left:595.290000px;}
.x5_c00338{left:617.760000px;}
.x6_c00338{left:641.955000px;}
.x7_c00338{left:662.685000px;}
.x8_c00338{left:685.155000px;}
.x9_c00338{left:700.710000px;}
.xa_c00338{left:890.790000px;}
.xb_c00338{left:910.650000px;}
.xc_c00338{left:1064.445000px;}
.xd_c00338{left:1068.765000px;}
.x1_c00338{left:1078.275000px;}
.xe_c00338{left:1080.000000px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls0_c00338{letter-spacing:0.000000pt;}
.ws0_c00338{word-spacing:0.000000pt;}
.fs5_c00338{font-size:3.072000pt;}
.fs8_c00338{font-size:12.266667pt;}
.fs0_c00338{font-size:15.360000pt;}
.fs6_c00338{font-size:18.453333pt;}
.fs7_c00338{font-size:24.586667pt;}
.fs3_c00338{font-size:49.173333pt;}
.fs2_c00338{font-size:52.213333pt;}
.fs4_c00338{font-size:55.306667pt;}
.fs1_c00338{font-size:58.346667pt;}
.y0_c00338{bottom:0.000000pt;}
.y1_c00338{bottom:980.733333pt;}
.y7_c00338{bottom:1000.706667pt;}
.y8_c00338{bottom:1002.240000pt;}
.y6_c00338{bottom:1216.506667pt;}
.y4_c00338{bottom:1263.360000pt;}
.y3_c00338{bottom:1264.133333pt;}
.y2_c00338{bottom:1264.893333pt;}
.y5_c00338{bottom:1267.200000pt;}
.h7_c00338{height:2.764500pt;}
.ha_c00338{height:11.038802pt;}
.h2_c00338{height:13.822500pt;}
.h8_c00338{height:16.606198pt;}
.h9_c00338{height:22.125599pt;}
.h5_c00338{height:44.251198pt;}
.h4_c00338{height:46.986901pt;}
.h6_c00338{height:49.770599pt;}
.h3_c00338{height:52.506302pt;}
.h0_c00338{height:1357.053333pt;}
.h1_c00338{height:1357.333333pt;}
.w0_c00338{width:978.426667pt;}
.w1_c00338{width:978.666667pt;}
.x0_c00338{left:0.000000pt;}
.x2_c00338{left:375.546667pt;}
.x3_c00338{left:506.880000pt;}
.x4_c00338{left:529.146667pt;}
.x5_c00338{left:549.120000pt;}
.x6_c00338{left:570.626667pt;}
.x7_c00338{left:589.053333pt;}
.x8_c00338{left:609.026667pt;}
.x9_c00338{left:622.853333pt;}
.xa_c00338{left:791.813333pt;}
.xb_c00338{left:809.466667pt;}
.xc_c00338{left:946.173333pt;}
.xd_c00338{left:950.013333pt;}
.x1_c00338{left:958.466667pt;}
.xe_c00338{left:960.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_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;}
@font-face{font-family:ff1_c00339;src:url('chunks/assets/font_fcc0176c8eef9c8bc73f5ee6.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:1.109863;font-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_c00339{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);}
.v0_c00339{vertical-align:0.000000px;}
.ls0_c00339{letter-spacing:0.000000px;}
.sc__c00339{text-shadow:none;}
.sc0_c00339{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00339{-webkit-text-stroke:0px transparent;}
.sc0_c00339{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00339{word-spacing:0.000000px;}
.fc0_c00339{color:transparent;}
.fs0_c00339{font-size:600.000000px;}
.y0_c00339{bottom:0.000000px;}
.y1_c00339{bottom:15.000000px;}
.h2_c00339{height:539.941406px;}
.h1_c00339{height:1507.500000px;}
.h0_c00339{height:1507.680000px;}
.w0_c00339{width:1111.965000px;}
.w1_c00339{width:1112.250000px;}
.x0_c00339{left:0.000000px;}
.x1_c00339{left:15.000000px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls0_c00339{letter-spacing:0.000000pt;}
.ws0_c00339{word-spacing:0.000000pt;}
.fs0_c00339{font-size:533.333333pt;}
.y0_c00339{bottom:0.000000pt;}
.y1_c00339{bottom:13.333333pt;}
.h2_c00339{height:479.947917pt;}
.h1_c00339{height:1340.000000pt;}
.h0_c00339{height:1340.160000pt;}
.w0_c00339{width:988.413333pt;}
.w1_c00339{width:988.666667pt;}
.x0_c00339{left:0.000000pt;}
.x1_c00339{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f8f7a4cd5d6418b2f850c28.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.109863;font-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_c00340{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);}
.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;}
.fs0_c00340{font-size:600.000000px;}
.y0_c00340{bottom:0.000000px;}
.y1_c00340{bottom:15.000000px;}
.h2_c00340{height:539.941406px;}
.h0_c00340{height:1526.685000px;}
.h1_c00340{height:1527.000000px;}
.w0_c00340{width:1100.730000px;}
.w1_c00340{width:1101.000000px;}
.x0_c00340{left:0.000000px;}
.x1_c00340{left:15.000000px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.ls0_c00340{letter-spacing:0.000000pt;}
.ws0_c00340{word-spacing:0.000000pt;}
.fs0_c00340{font-size:533.333333pt;}
.y0_c00340{bottom:0.000000pt;}
.y1_c00340{bottom:13.333333pt;}
.h2_c00340{height:479.947917pt;}
.h0_c00340{height:1357.053333pt;}
.h1_c00340{height:1357.333333pt;}
.w0_c00340{width:978.426667pt;}
.w1_c00340{width:978.666667pt;}
.x0_c00340{left:0.000000pt;}
.x1_c00340{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00341;src:url('chunks/assets/font_e20b69fa3cd9e40e97890f9e.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:1.109863;font-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_c00341{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.v0_c00341{vertical-align:0.000000px;}
.ls0_c00341{letter-spacing:0.000000px;}
.sc__c00341{text-shadow:none;}
.sc0_c00341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00341{-webkit-text-stroke:0px transparent;}
.sc0_c00341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00341{word-spacing:0.000000px;}
.fc0_c00341{color:transparent;}
.fs0_c00341{font-size:10.380000px;}
.y0_c00341{bottom:0.000000px;}
.y1_c00341{bottom:1334.010000px;}
.h2_c00341{height:9.340986px;}
.h1_c00341{height:1507.500000px;}
.h0_c00341{height:1507.680000px;}
.w0_c00341{width:1111.965000px;}
.w1_c00341{width:1112.250000px;}
.x0_c00341{left:0.000000px;}
.x1_c00341{left:72.570000px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls0_c00341{letter-spacing:0.000000pt;}
.ws0_c00341{word-spacing:0.000000pt;}
.fs0_c00341{font-size:9.226667pt;}
.y0_c00341{bottom:0.000000pt;}
.y1_c00341{bottom:1185.786667pt;}
.h2_c00341{height:8.303099pt;}
.h1_c00341{height:1340.000000pt;}
.h0_c00341{height:1340.160000pt;}
.w0_c00341{width:988.413333pt;}
.w1_c00341{width:988.666667pt;}
.x0_c00341{left:0.000000pt;}
.x1_c00341{left:64.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_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_ef4d8b155b4c5a67a751cb22.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.109863;font-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_c00342{transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);}
.m23_c00342{transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);}
.m31_c00342{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.ma_c00342{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m12_c00342{transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);}
.m2d_c00342{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m2f_c00342{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m37_c00342{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.m7_c00342{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m9_c00342{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m10_c00342{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m22_c00342{transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);}
.mf_c00342{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m21_c00342{transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);}
.m18_c00342{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);}
.m1e_c00342{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m2a_c00342{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m27_c00342{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m14_c00342{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);}
.m11_c00342{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);}
.m1f_c00342{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.m19_c00342{transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);}
.me_c00342{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);}
.m13_c00342{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.mc_c00342{transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);}
.m1a_c00342{transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);}
.m25_c00342{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);}
.m28_c00342{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);}
.md_c00342{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m39_c00342{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00342{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m0_c00342{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);}
.m16_c00342{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_c00342{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c00342{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);}
.m8_c00342{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c00342{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m36_c00342{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00342{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c00342{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m29_c00342{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00342{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m38_c00342{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4_c00342{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m26_c00342{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00342{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);}
.m17_c00342{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m34_c00342{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m30_c00342{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);}
.m2c_c00342{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);}
.m2b_c00342{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mb_c00342{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);}
.m1_c00342{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m3_c00342{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5_c00342{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00342{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);}
.m3a_c00342{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);}
.m1d_c00342{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m15_c00342{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m35_c00342{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m6_c00342{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c00342{vertical-align:0.000000px;}
.v1_c00342{vertical-align:3.420000px;}
.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:-11.690760px;}
.ws1_c00342{word-spacing:0.000000px;}
.fc0_c00342{color:transparent;}
.fs9_c00342{font-size:3.456000px;}
.fs12_c00342{font-size:6.000000px;}
.fs13_c00342{font-size:10.380000px;}
.fs14_c00342{font-size:13.800000px;}
.fs11_c00342{font-size:20.760000px;}
.fsa_c00342{font-size:31.080000px;}
.fsc_c00342{font-size:34.560000px;}
.fs10_c00342{font-size:41.460000px;}
.fs7_c00342{font-size:44.940000px;}
.fs5_c00342{font-size:51.840000px;}
.fsb_c00342{font-size:55.320000px;}
.fsd_c00342{font-size:58.740000px;}
.fs4_c00342{font-size:62.220000px;}
.fs3_c00342{font-size:65.640000px;}
.fs8_c00342{font-size:69.120000px;}
.fs1_c00342{font-size:72.600000px;}
.fsf_c00342{font-size:76.020000px;}
.fs6_c00342{font-size:79.500000px;}
.fse_c00342{font-size:82.920000px;}
.fs2_c00342{font-size:89.880000px;}
.fs0_c00342{font-size:100.200000px;}
.y0_c00342{bottom:0.000000px;}
.y38_c00342{bottom:1143.075000px;}
.y36_c00342{bottom:1143.930000px;}
.y37_c00342{bottom:1144.800000px;}
.y35_c00342{bottom:1147.395000px;}
.y34_c00342{bottom:1148.250000px;}
.y32_c00342{bottom:1162.950000px;}
.y31_c00342{bottom:1164.675000px;}
.y33_c00342{bottom:1165.530000px;}
.y2f_c00342{bottom:1167.270000px;}
.y30_c00342{bottom:1168.125000px;}
.y2a_c00342{bottom:1181.955000px;}
.y2d_c00342{bottom:1182.810000px;}
.y2c_c00342{bottom:1187.130000px;}
.y2b_c00342{bottom:1188.000000px;}
.y2e_c00342{bottom:1188.870000px;}
.y26_c00342{bottom:1201.830000px;}
.y27_c00342{bottom:1202.685000px;}
.y24_c00342{bottom:1203.555000px;}
.y25_c00342{bottom:1204.410000px;}
.y28_c00342{bottom:1208.730000px;}
.y29_c00342{bottom:1209.600000px;}
.y22_c00342{bottom:1222.560000px;}
.y20_c00342{bottom:1224.285000px;}
.y1f_c00342{bottom:1226.880000px;}
.y21_c00342{bottom:1228.605000px;}
.y23_c00342{bottom:1229.475000px;}
.y1e_c00342{bottom:1240.710000px;}
.y1b_c00342{bottom:1241.565000px;}
.y1c_c00342{bottom:1242.435000px;}
.y1d_c00342{bottom:1243.290000px;}
.y19_c00342{bottom:1262.310000px;}
.y17_c00342{bottom:1267.485000px;}
.y18_c00342{bottom:1268.355000px;}
.y1a_c00342{bottom:1270.080000px;}
.y14_c00342{bottom:1283.040000px;}
.y15_c00342{bottom:1283.910000px;}
.y13_c00342{bottom:1284.765000px;}
.y12_c00342{bottom:1289.085000px;}
.y16_c00342{bottom:1289.955000px;}
.y11_c00342{bottom:1308.090000px;}
.y10_c00342{bottom:1327.965000px;}
.ye_c00342{bottom:1344.390000px;}
.yf_c00342{bottom:1346.970000px;}
.yb_c00342{bottom:1348.710000px;}
.yd_c00342{bottom:1349.565000px;}
.yc_c00342{bottom:1350.435000px;}
.y6_c00342{bottom:1364.250000px;}
.y8_c00342{bottom:1366.845000px;}
.y7_c00342{bottom:1370.310000px;}
.ya_c00342{bottom:1371.165000px;}
.y9_c00342{bottom:1372.890000px;}
.y4_c00342{bottom:1390.170000px;}
.y5_c00342{bottom:1391.040000px;}
.y2_c00342{bottom:1416.090000px;}
.y3_c00342{bottom:1416.960000px;}
.y1_c00342{bottom:1440.285000px;}
.hb_c00342{height:3.110063px;}
.h15_c00342{height:5.399414px;}
.h16_c00342{height:9.340986px;}
.h17_c00342{height:12.418652px;}
.h13_c00342{height:18.681973px;}
.hc_c00342{height:27.968965px;}
.he_c00342{height:31.100625px;}
.h12_c00342{height:37.309951px;}
.h9_c00342{height:40.441611px;}
.h7_c00342{height:46.650937px;}
.hd_c00342{height:49.782598px;}
.h14_c00342{height:50.070938px;}
.hf_c00342{height:52.860264px;}
.h6_c00342{height:55.991924px;}
.h5_c00342{height:59.069590px;}
.ha_c00342{height:62.201250px;}
.h3_c00342{height:65.332910px;}
.h11_c00342{height:68.410576px;}
.h8_c00342{height:71.542236px;}
.h10_c00342{height:74.619902px;}
.h4_c00342{height:80.883223px;}
.h2_c00342{height:90.170215px;}
.h0_c00342{height:1526.685000px;}
.h1_c00342{height:1527.000000px;}
.w0_c00342{width:1100.730000px;}
.w1_c00342{width:1101.000000px;}
.x0_c00342{left:0.000000px;}
.xf_c00342{left:222.045000px;}
.x17_c00342{left:224.640000px;}
.x29_c00342{left:226.365000px;}
.x37_c00342{left:236.730000px;}
.x8_c00342{left:247.110000px;}
.x1f_c00342{left:254.880000px;}
.x4_c00342{left:268.710000px;}
.x1c_c00342{left:270.435000px;}
.x10_c00342{left:272.160000px;}
.x2a_c00342{left:274.755000px;}
.x21_c00342{left:278.205000px;}
.x1d_c00342{left:288.570000px;}
.x18_c00342{left:293.760000px;}
.x11_c00342{left:302.400000px;}
.x24_c00342{left:304.995000px;}
.x12_c00342{left:314.490000px;}
.x9_c00342{left:316.230000px;}
.x2f_c00342{left:319.680000px;}
.x25_c00342{left:325.725000px;}
.x30_c00342{left:330.045000px;}
.x13_c00342{left:334.365000px;}
.x34_c00342{left:337.830000px;}
.x2b_c00342{left:351.645000px;}
.x19_c00342{left:360.285000px;}
.x26_c00342{left:362.010000px;}
.x2c_c00342{left:364.605000px;}
.xa_c00342{left:366.330000px;}
.x22_c00342{left:373.245000px;}
.x31_c00342{left:381.030000px;}
.x5_c00342{left:385.350000px;}
.x14_c00342{left:387.930000px;}
.x35_c00342{left:397.440000px;}
.x2d_c00342{left:403.485000px;}
.x1a_c00342{left:410.400000px;}
.x2_c00342{left:415.590000px;}
.x6_c00342{left:420.765000px;}
.x27_c00342{left:422.490000px;}
.xb_c00342{left:425.085000px;}
.x15_c00342{left:430.275000px;}
.x36_c00342{left:433.725000px;}
.xc_c00342{left:436.320000px;}
.xd_c00342{left:453.600000px;}
.x2e_c00342{left:455.325000px;}
.x23_c00342{left:457.920000px;}
.x28_c00342{left:459.645000px;}
.x16_c00342{left:462.240000px;}
.x32_c00342{left:463.965000px;}
.x20_c00342{left:466.560000px;}
.x1e_c00342{left:472.605000px;}
.x1b_c00342{left:484.710000px;}
.xe_c00342{left:492.480000px;}
.x38_c00342{left:494.205000px;}
.x33_c00342{left:504.570000px;}
.x7_c00342{left:514.080000px;}
.x3_c00342{left:561.600000px;}
.x1_c00342{left:724.035000px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.v1_c00342{vertical-align:3.040000pt;}
.ls0_c00342{letter-spacing:0.000000pt;}
.ws0_c00342{word-spacing:-10.391787pt;}
.ws1_c00342{word-spacing:0.000000pt;}
.fs9_c00342{font-size:3.072000pt;}
.fs12_c00342{font-size:5.333333pt;}
.fs13_c00342{font-size:9.226667pt;}
.fs14_c00342{font-size:12.266667pt;}
.fs11_c00342{font-size:18.453333pt;}
.fsa_c00342{font-size:27.626667pt;}
.fsc_c00342{font-size:30.720000pt;}
.fs10_c00342{font-size:36.853333pt;}
.fs7_c00342{font-size:39.946667pt;}
.fs5_c00342{font-size:46.080000pt;}
.fsb_c00342{font-size:49.173333pt;}
.fsd_c00342{font-size:52.213333pt;}
.fs4_c00342{font-size:55.306667pt;}
.fs3_c00342{font-size:58.346667pt;}
.fs8_c00342{font-size:61.440000pt;}
.fs1_c00342{font-size:64.533333pt;}
.fsf_c00342{font-size:67.573333pt;}
.fs6_c00342{font-size:70.666667pt;}
.fse_c00342{font-size:73.706667pt;}
.fs2_c00342{font-size:79.893333pt;}
.fs0_c00342{font-size:89.066667pt;}
.y0_c00342{bottom:0.000000pt;}
.y38_c00342{bottom:1016.066667pt;}
.y36_c00342{bottom:1016.826667pt;}
.y37_c00342{bottom:1017.600000pt;}
.y35_c00342{bottom:1019.906667pt;}
.y34_c00342{bottom:1020.666667pt;}
.y32_c00342{bottom:1033.733333pt;}
.y31_c00342{bottom:1035.266667pt;}
.y33_c00342{bottom:1036.026667pt;}
.y2f_c00342{bottom:1037.573333pt;}
.y30_c00342{bottom:1038.333333pt;}
.y2a_c00342{bottom:1050.626667pt;}
.y2d_c00342{bottom:1051.386667pt;}
.y2c_c00342{bottom:1055.226667pt;}
.y2b_c00342{bottom:1056.000000pt;}
.y2e_c00342{bottom:1056.773333pt;}
.y26_c00342{bottom:1068.293333pt;}
.y27_c00342{bottom:1069.053333pt;}
.y24_c00342{bottom:1069.826667pt;}
.y25_c00342{bottom:1070.586667pt;}
.y28_c00342{bottom:1074.426667pt;}
.y29_c00342{bottom:1075.200000pt;}
.y22_c00342{bottom:1086.720000pt;}
.y20_c00342{bottom:1088.253333pt;}
.y1f_c00342{bottom:1090.560000pt;}
.y21_c00342{bottom:1092.093333pt;}
.y23_c00342{bottom:1092.866667pt;}
.y1e_c00342{bottom:1102.853333pt;}
.y1b_c00342{bottom:1103.613333pt;}
.y1c_c00342{bottom:1104.386667pt;}
.y1d_c00342{bottom:1105.146667pt;}
.y19_c00342{bottom:1122.053333pt;}
.y17_c00342{bottom:1126.653333pt;}
.y18_c00342{bottom:1127.426667pt;}
.y1a_c00342{bottom:1128.960000pt;}
.y14_c00342{bottom:1140.480000pt;}
.y15_c00342{bottom:1141.253333pt;}
.y13_c00342{bottom:1142.013333pt;}
.y12_c00342{bottom:1145.853333pt;}
.y16_c00342{bottom:1146.626667pt;}
.y11_c00342{bottom:1162.746667pt;}
.y10_c00342{bottom:1180.413333pt;}
.ye_c00342{bottom:1195.013333pt;}
.yf_c00342{bottom:1197.306667pt;}
.yb_c00342{bottom:1198.853333pt;}
.yd_c00342{bottom:1199.613333pt;}
.yc_c00342{bottom:1200.386667pt;}
.y6_c00342{bottom:1212.666667pt;}
.y8_c00342{bottom:1214.973333pt;}
.y7_c00342{bottom:1218.053333pt;}
.ya_c00342{bottom:1218.813333pt;}
.y9_c00342{bottom:1220.346667pt;}
.y4_c00342{bottom:1235.706667pt;}
.y5_c00342{bottom:1236.480000pt;}
.y2_c00342{bottom:1258.746667pt;}
.y3_c00342{bottom:1259.520000pt;}
.y1_c00342{bottom:1280.253333pt;}
.hb_c00342{height:2.764500pt;}
.h15_c00342{height:4.799479pt;}
.h16_c00342{height:8.303099pt;}
.h17_c00342{height:11.038802pt;}
.h13_c00342{height:16.606198pt;}
.hc_c00342{height:24.861302pt;}
.he_c00342{height:27.645000pt;}
.h12_c00342{height:33.164401pt;}
.h9_c00342{height:35.948099pt;}
.h7_c00342{height:41.467500pt;}
.hd_c00342{height:44.251198pt;}
.h14_c00342{height:44.507500pt;}
.hf_c00342{height:46.986901pt;}
.h6_c00342{height:49.770599pt;}
.h5_c00342{height:52.506302pt;}
.ha_c00342{height:55.290000pt;}
.h3_c00342{height:58.073698pt;}
.h11_c00342{height:60.809401pt;}
.h8_c00342{height:63.593099pt;}
.h10_c00342{height:66.328802pt;}
.h4_c00342{height:71.896198pt;}
.h2_c00342{height:80.151302pt;}
.h0_c00342{height:1357.053333pt;}
.h1_c00342{height:1357.333333pt;}
.w0_c00342{width:978.426667pt;}
.w1_c00342{width:978.666667pt;}
.x0_c00342{left:0.000000pt;}
.xf_c00342{left:197.373333pt;}
.x17_c00342{left:199.680000pt;}
.x29_c00342{left:201.213333pt;}
.x37_c00342{left:210.426667pt;}
.x8_c00342{left:219.653333pt;}
.x1f_c00342{left:226.560000pt;}
.x4_c00342{left:238.853333pt;}
.x1c_c00342{left:240.386667pt;}
.x10_c00342{left:241.920000pt;}
.x2a_c00342{left:244.226667pt;}
.x21_c00342{left:247.293333pt;}
.x1d_c00342{left:256.506667pt;}
.x18_c00342{left:261.120000pt;}
.x11_c00342{left:268.800000pt;}
.x24_c00342{left:271.106667pt;}
.x12_c00342{left:279.546667pt;}
.x9_c00342{left:281.093333pt;}
.x2f_c00342{left:284.160000pt;}
.x25_c00342{left:289.533333pt;}
.x30_c00342{left:293.373333pt;}
.x13_c00342{left:297.213333pt;}
.x34_c00342{left:300.293333pt;}
.x2b_c00342{left:312.573333pt;}
.x19_c00342{left:320.253333pt;}
.x26_c00342{left:321.786667pt;}
.x2c_c00342{left:324.093333pt;}
.xa_c00342{left:325.626667pt;}
.x22_c00342{left:331.773333pt;}
.x31_c00342{left:338.693333pt;}
.x5_c00342{left:342.533333pt;}
.x14_c00342{left:344.826667pt;}
.x35_c00342{left:353.280000pt;}
.x2d_c00342{left:358.653333pt;}
.x1a_c00342{left:364.800000pt;}
.x2_c00342{left:369.413333pt;}
.x6_c00342{left:374.013333pt;}
.x27_c00342{left:375.546667pt;}
.xb_c00342{left:377.853333pt;}
.x15_c00342{left:382.466667pt;}
.x36_c00342{left:385.533333pt;}
.xc_c00342{left:387.840000pt;}
.xd_c00342{left:403.200000pt;}
.x2e_c00342{left:404.733333pt;}
.x23_c00342{left:407.040000pt;}
.x28_c00342{left:408.573333pt;}
.x16_c00342{left:410.880000pt;}
.x32_c00342{left:412.413333pt;}
.x20_c00342{left:414.720000pt;}
.x1e_c00342{left:420.093333pt;}
.x1b_c00342{left:430.853333pt;}
.xe_c00342{left:437.760000pt;}
.x38_c00342{left:439.293333pt;}
.x33_c00342{left:448.506667pt;}
.x7_c00342{left:456.960000pt;}
.x3_c00342{left:499.200000pt;}
.x1_c00342{left:643.586667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4b3109b4528472ee9571ceb.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:1.109863;font-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_c00343{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);}
.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;}
.fs0_c00343{font-size:600.000000px;}
.y0_c00343{bottom:0.000000px;}
.y1_c00343{bottom:15.000000px;}
.h2_c00343{height:539.941406px;}
.h1_c00343{height:1507.500000px;}
.h0_c00343{height:1507.680000px;}
.w0_c00343{width:1111.965000px;}
.w1_c00343{width:1112.250000px;}
.x0_c00343{left:0.000000px;}
.x1_c00343{left:15.000000px;}
@media print{
.v0_c00343{vertical-align:0.000000pt;}
.ls0_c00343{letter-spacing:0.000000pt;}
.ws0_c00343{word-spacing:0.000000pt;}
.fs0_c00343{font-size:533.333333pt;}
.y0_c00343{bottom:0.000000pt;}
.y1_c00343{bottom:13.333333pt;}
.h2_c00343{height:479.947917pt;}
.h1_c00343{height:1340.000000pt;}
.h0_c00343{height:1340.160000pt;}
.w0_c00343{width:988.413333pt;}
.w1_c00343{width:988.666667pt;}
.x0_c00343{left:0.000000pt;}
.x1_c00343{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36e6094aecd4d6542b0884a9.woff2')format("woff");}.ff1_c00344{font-family:ff1_c00344;line-height:1.109863;font-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_c00344{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c00344{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00344{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c00344{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m2_c00344{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m4_c00344{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,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;}
.fs0_c00344{font-size:10.380000px;}
.fs3_c00344{font-size:17.280000px;}
.fs1_c00344{font-size:20.760000px;}
.fs4_c00344{font-size:24.180000px;}
.fs2_c00344{font-size:34.560000px;}
.y0_c00344{bottom:0.000000px;}
.y7_c00344{bottom:744.765000px;}
.y6_c00344{bottom:1188.000000px;}
.y5_c00344{bottom:1384.995000px;}
.y4_c00344{bottom:1386.720000px;}
.y3_c00344{bottom:1391.910000px;}
.y2_c00344{bottom:1400.550000px;}
.y1_c00344{bottom:1403.130000px;}
.h2_c00344{height:9.340986px;}
.h5_c00344{height:15.550313px;}
.h3_c00344{height:18.681973px;}
.h6_c00344{height:21.759639px;}
.h4_c00344{height:31.100625px;}
.h0_c00344{height:1526.685000px;}
.h1_c00344{height:1527.000000px;}
.w0_c00344{width:1100.730000px;}
.w1_c00344{width:1101.000000px;}
.x0_c00344{left:0.000000px;}
.x1_c00344{left:125.280000px;}
.x2_c00344{left:139.965000px;}
.x4_c00344{left:189.210000px;}
.x5_c00344{left:198.720000px;}
.x3_c00344{left:228.960000px;}
.x6_c00344{left:1050.630000px;}
.x7_c00344{left:1064.445000px;}
@media print{
.v0_c00344{vertical-align:0.000000pt;}
.ls0_c00344{letter-spacing:0.000000pt;}
.ws0_c00344{word-spacing:0.000000pt;}
.fs0_c00344{font-size:9.226667pt;}
.fs3_c00344{font-size:15.360000pt;}
.fs1_c00344{font-size:18.453333pt;}
.fs4_c00344{font-size:21.493333pt;}
.fs2_c00344{font-size:30.720000pt;}
.y0_c00344{bottom:0.000000pt;}
.y7_c00344{bottom:662.013333pt;}
.y6_c00344{bottom:1056.000000pt;}
.y5_c00344{bottom:1231.106667pt;}
.y4_c00344{bottom:1232.640000pt;}
.y3_c00344{bottom:1237.253333pt;}
.y2_c00344{bottom:1244.933333pt;}
.y1_c00344{bottom:1247.226667pt;}
.h2_c00344{height:8.303099pt;}
.h5_c00344{height:13.822500pt;}
.h3_c00344{height:16.606198pt;}
.h6_c00344{height:19.341901pt;}
.h4_c00344{height:27.645000pt;}
.h0_c00344{height:1357.053333pt;}
.h1_c00344{height:1357.333333pt;}
.w0_c00344{width:978.426667pt;}
.w1_c00344{width:978.666667pt;}
.x0_c00344{left:0.000000pt;}
.x1_c00344{left:111.360000pt;}
.x2_c00344{left:124.413333pt;}
.x4_c00344{left:168.186667pt;}
.x5_c00344{left:176.640000pt;}
.x3_c00344{left:203.520000pt;}
.x6_c00344{left:933.893333pt;}
.x7_c00344{left:946.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a327a1ec02b7add4f628a288.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:1.109863;font-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.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma_c00345{transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);}
.m6_c00345{transform:matrix(0.094775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094775,0.000000,0.000000,0.250000,0,0);}
.m4_c00345{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb_c00345{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m8_c00345{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);}
.m5_c00345{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c00345{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00345{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m9_c00345{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c00345{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c00345{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,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;}
.fs1_c00345{font-size:3.456000px;}
.fsa_c00345{font-size:6.900000px;}
.fs7_c00345{font-size:10.380000px;}
.fs4_c00345{font-size:13.800000px;}
.fs3_c00345{font-size:17.280000px;}
.fs5_c00345{font-size:20.760000px;}
.fs2_c00345{font-size:24.180000px;}
.fs8_c00345{font-size:27.660000px;}
.fsb_c00345{font-size:48.360000px;}
.fs9_c00345{font-size:62.220000px;}
.fs6_c00345{font-size:65.640000px;}
.fs0_c00345{font-size:69.120000px;}
.y0_c00345{bottom:0.000000px;}
.ye_c00345{bottom:332.640000px;}
.yd_c00345{bottom:334.365000px;}
.ya_c00345{bottom:399.165000px;}
.yc_c00345{bottom:402.630000px;}
.yb_c00345{bottom:405.210000px;}
.y8_c00345{bottom:522.720000px;}
.y7_c00345{bottom:527.910000px;}
.y9_c00345{bottom:542.595000px;}
.y6_c00345{bottom:575.430000px;}
.y5_c00345{bottom:597.030000px;}
.y4_c00345{bottom:597.885000px;}
.y3_c00345{bottom:733.530000px;}
.y2_c00345{bottom:737.850000px;}
.y1_c00345{bottom:1395.360000px;}
.h3_c00345{height:3.110063px;}
.hc_c00345{height:6.209326px;}
.h9_c00345{height:9.340986px;}
.h6_c00345{height:12.418652px;}
.h5_c00345{height:15.550313px;}
.h7_c00345{height:18.681973px;}
.h4_c00345{height:21.759639px;}
.ha_c00345{height:24.891299px;}
.hd_c00345{height:43.519277px;}
.hb_c00345{height:55.991924px;}
.h8_c00345{height:59.069590px;}
.h2_c00345{height:62.201250px;}
.h1_c00345{height:1507.500000px;}
.h0_c00345{height:1507.680000px;}
.w0_c00345{width:1111.965000px;}
.w1_c00345{width:1112.250000px;}
.x0_c00345{left:0.000000px;}
.x7_c00345{left:103.680000px;}
.x8_c00345{left:107.130000px;}
.x4_c00345{left:146.880000px;}
.x9_c00345{left:152.070000px;}
.x5_c00345{left:158.970000px;}
.xa_c00345{left:164.160000px;}
.xb_c00345{left:171.930000px;}
.x2_c00345{left:177.120000px;}
.x3_c00345{left:181.440000px;}
.xc_c00345{left:196.125000px;}
.x6_c00345{left:205.635000px;}
.xd_c00345{left:207.360000px;}
.x1_c00345{left:460.515000px;}
@media print{
.v0_c00345{vertical-align:0.000000pt;}
.ls0_c00345{letter-spacing:0.000000pt;}
.ws0_c00345{word-spacing:0.000000pt;}
.fs1_c00345{font-size:3.072000pt;}
.fsa_c00345{font-size:6.133333pt;}
.fs7_c00345{font-size:9.226667pt;}
.fs4_c00345{font-size:12.266667pt;}
.fs3_c00345{font-size:15.360000pt;}
.fs5_c00345{font-size:18.453333pt;}
.fs2_c00345{font-size:21.493333pt;}
.fs8_c00345{font-size:24.586667pt;}
.fsb_c00345{font-size:42.986667pt;}
.fs9_c00345{font-size:55.306667pt;}
.fs6_c00345{font-size:58.346667pt;}
.fs0_c00345{font-size:61.440000pt;}
.y0_c00345{bottom:0.000000pt;}
.ye_c00345{bottom:295.680000pt;}
.yd_c00345{bottom:297.213333pt;}
.ya_c00345{bottom:354.813333pt;}
.yc_c00345{bottom:357.893333pt;}
.yb_c00345{bottom:360.186667pt;}
.y8_c00345{bottom:464.640000pt;}
.y7_c00345{bottom:469.253333pt;}
.y9_c00345{bottom:482.306667pt;}
.y6_c00345{bottom:511.493333pt;}
.y5_c00345{bottom:530.693333pt;}
.y4_c00345{bottom:531.453333pt;}
.y3_c00345{bottom:652.026667pt;}
.y2_c00345{bottom:655.866667pt;}
.y1_c00345{bottom:1240.320000pt;}
.h3_c00345{height:2.764500pt;}
.hc_c00345{height:5.519401pt;}
.h9_c00345{height:8.303099pt;}
.h6_c00345{height:11.038802pt;}
.h5_c00345{height:13.822500pt;}
.h7_c00345{height:16.606198pt;}
.h4_c00345{height:19.341901pt;}
.ha_c00345{height:22.125599pt;}
.hd_c00345{height:38.683802pt;}
.hb_c00345{height:49.770599pt;}
.h8_c00345{height:52.506302pt;}
.h2_c00345{height:55.290000pt;}
.h1_c00345{height:1340.000000pt;}
.h0_c00345{height:1340.160000pt;}
.w0_c00345{width:988.413333pt;}
.w1_c00345{width:988.666667pt;}
.x0_c00345{left:0.000000pt;}
.x7_c00345{left:92.160000pt;}
.x8_c00345{left:95.226667pt;}
.x4_c00345{left:130.560000pt;}
.x9_c00345{left:135.173333pt;}
.x5_c00345{left:141.306667pt;}
.xa_c00345{left:145.920000pt;}
.xb_c00345{left:152.826667pt;}
.x2_c00345{left:157.440000pt;}
.x3_c00345{left:161.280000pt;}
.xc_c00345{left:174.333333pt;}
.x6_c00345{left:182.786667pt;}
.xd_c00345{left:184.320000pt;}
.x1_c00345{left:409.346667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bacfaa03446c100ed0381c10.woff2')format("woff");}.ff1_c00346{font-family:ff1_c00346;line-height:1.109863;font-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_c00346{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);}
.v0_c00346{vertical-align:0.000000px;}
.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;}
.fc0_c00346{color:transparent;}
.fs0_c00346{font-size:600.000000px;}
.y0_c00346{bottom:0.000000px;}
.y1_c00346{bottom:15.000000px;}
.h2_c00346{height:539.941406px;}
.h0_c00346{height:1526.685000px;}
.h1_c00346{height:1527.000000px;}
.w0_c00346{width:1100.730000px;}
.w1_c00346{width:1101.000000px;}
.x0_c00346{left:0.000000px;}
.x1_c00346{left:15.000000px;}
@media print{
.v0_c00346{vertical-align:0.000000pt;}
.ls0_c00346{letter-spacing:0.000000pt;}
.ws0_c00346{word-spacing:0.000000pt;}
.fs0_c00346{font-size:533.333333pt;}
.y0_c00346{bottom:0.000000pt;}
.y1_c00346{bottom:13.333333pt;}
.h2_c00346{height:479.947917pt;}
.h0_c00346{height:1357.053333pt;}
.h1_c00346{height:1357.333333pt;}
.w0_c00346{width:978.426667pt;}
.w1_c00346{width:978.666667pt;}
.x0_c00346{left:0.000000pt;}
.x1_c00346{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9827756d841cdc76a1765afc.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:1.109863;font-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_c00347{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c00347{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m2_c00347{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);}
.m4_c00347{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);}
.m3_c00347{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00347{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.v0_c00347{vertical-align:0.000000px;}
.v1_c00347{vertical-align:3.420000px;}
.ls1_c00347{letter-spacing:0.000000px;}
.ls0_c00347{letter-spacing:64.380000px;}
.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:6.000000px;}
.fs6_c00347{font-size:6.900000px;}
.fs2_c00347{font-size:10.380000px;}
.fs4_c00347{font-size:13.800000px;}
.fs5_c00347{font-size:17.280000px;}
.fs3_c00347{font-size:24.180000px;}
.fs0_c00347{font-size:38.040000px;}
.y0_c00347{bottom:0.000000px;}
.y6_c00347{bottom:855.360000px;}
.y7_c00347{bottom:856.230000px;}
.y5_c00347{bottom:1156.890000px;}
.y4_c00347{bottom:1159.485000px;}
.y3_c00347{bottom:1242.435000px;}
.y1_c00347{bottom:1429.920000px;}
.y2_c00347{bottom:1432.515000px;}
.h7_c00347{height:6.209326px;}
.h5_c00347{height:12.418652px;}
.h3_c00347{height:12.760986px;}
.h6_c00347{height:15.550313px;}
.h4_c00347{height:21.759639px;}
.h2_c00347{height:34.232285px;}
.h1_c00347{height:1507.500000px;}
.h0_c00347{height:1507.680000px;}
.w0_c00347{width:1111.965000px;}
.w1_c00347{width:1112.250000px;}
.x0_c00347{left:0.000000px;}
.x3_c00347{left:76.035000px;}
.x6_c00347{left:86.400000px;}
.x4_c00347{left:165.030000px;}
.x5_c00347{left:177.990000px;}
.x1_c00347{left:904.605000px;}
.x2_c00347{left:972.000000px;}
@media print{
.v0_c00347{vertical-align:0.000000pt;}
.v1_c00347{vertical-align:3.040000pt;}
.ls1_c00347{letter-spacing:0.000000pt;}
.ls0_c00347{letter-spacing:57.226667pt;}
.ws0_c00347{word-spacing:0.000000pt;}
.fs1_c00347{font-size:5.333333pt;}
.fs6_c00347{font-size:6.133333pt;}
.fs2_c00347{font-size:9.226667pt;}
.fs4_c00347{font-size:12.266667pt;}
.fs5_c00347{font-size:15.360000pt;}
.fs3_c00347{font-size:21.493333pt;}
.fs0_c00347{font-size:33.813333pt;}
.y0_c00347{bottom:0.000000pt;}
.y6_c00347{bottom:760.320000pt;}
.y7_c00347{bottom:761.093333pt;}
.y5_c00347{bottom:1028.346667pt;}
.y4_c00347{bottom:1030.653333pt;}
.y3_c00347{bottom:1104.386667pt;}
.y1_c00347{bottom:1271.040000pt;}
.y2_c00347{bottom:1273.346667pt;}
.h7_c00347{height:5.519401pt;}
.h5_c00347{height:11.038802pt;}
.h3_c00347{height:11.343099pt;}
.h6_c00347{height:13.822500pt;}
.h4_c00347{height:19.341901pt;}
.h2_c00347{height:30.428698pt;}
.h1_c00347{height:1340.000000pt;}
.h0_c00347{height:1340.160000pt;}
.w0_c00347{width:988.413333pt;}
.w1_c00347{width:988.666667pt;}
.x0_c00347{left:0.000000pt;}
.x3_c00347{left:67.586667pt;}
.x6_c00347{left:76.800000pt;}
.x4_c00347{left:146.693333pt;}
.x5_c00347{left:158.213333pt;}
.x1_c00347{left:804.093333pt;}
.x2_c00347{left:864.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_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_a0418555ef7ce14250759cf5.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.109863;font-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_c00348{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m33_c00348{transform:matrix(0.097700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097700,0.000000,0.000000,0.250000,0,0);}
.m19_c00348{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.m0_c00348{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf_c00348{transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);}
.m2_c00348{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m11_c00348{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m1f_c00348{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.me_c00348{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.m28_c00348{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m2a_c00348{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.m1c_c00348{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);}
.m10_c00348{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m2c_c00348{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);}
.m2e_c00348{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m25_c00348{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m2d_c00348{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m39_c00348{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m20_c00348{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);}
.m1_c00348{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m38_c00348{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m2b_c00348{transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);}
.m12_c00348{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);}
.m1e_c00348{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1b_c00348{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);}
.m30_c00348{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);}
.m14_c00348{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m3_c00348{transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);}
.m31_c00348{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);}
.md_c00348{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.m27_c00348{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);}
.m1d_c00348{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);}
.m21_c00348{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);}
.m17_c00348{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m18_c00348{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m22_c00348{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);}
.m35_c00348{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m29_c00348{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);}
.m24_c00348{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);}
.mc_c00348{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c00348{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);}
.m34_c00348{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00348{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c00348{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);}
.m15_c00348{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00348{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);}
.m9_c00348{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c00348{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m16_c00348{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);}
.m1a_c00348{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.ma_c00348{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);}
.m37_c00348{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m23_c00348{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);}
.m3a_c00348{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00348{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m32_c00348{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m36_c00348{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m8_c00348{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m4_c00348{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m7_c00348{transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);}
.mb_c00348{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,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;}
.fs0_c00348{font-size:3.456000px;}
.fs5_c00348{font-size:6.000000px;}
.fsa_c00348{font-size:6.900000px;}
.fs18_c00348{font-size:20.760000px;}
.fs4_c00348{font-size:24.180000px;}
.fs10_c00348{font-size:27.660000px;}
.fs1b_c00348{font-size:31.080000px;}
.fs1c_c00348{font-size:34.560000px;}
.fse_c00348{font-size:38.040000px;}
.fs14_c00348{font-size:44.940000px;}
.fs15_c00348{font-size:51.840000px;}
.fsb_c00348{font-size:55.320000px;}
.fs12_c00348{font-size:58.740000px;}
.fs1a_c00348{font-size:62.220000px;}
.fs19_c00348{font-size:65.640000px;}
.fs7_c00348{font-size:69.120000px;}
.fs6_c00348{font-size:72.600000px;}
.fs8_c00348{font-size:76.020000px;}
.fsf_c00348{font-size:79.500000px;}
.fs9_c00348{font-size:82.920000px;}
.fs11_c00348{font-size:86.400000px;}
.fs13_c00348{font-size:89.880000px;}
.fs17_c00348{font-size:96.780000px;}
.fs2_c00348{font-size:100.200000px;}
.fs3_c00348{font-size:103.680000px;}
.fsd_c00348{font-size:110.580000px;}
.fs1_c00348{font-size:114.060000px;}
.fsc_c00348{font-size:117.480000px;}
.fs16_c00348{font-size:124.440000px;}
.y0_c00348{bottom:0.000000px;}
.y3c_c00348{bottom:965.085000px;}
.y3d_c00348{bottom:965.955000px;}
.y3b_c00348{bottom:974.595000px;}
.y3a_c00348{bottom:984.960000px;}
.y2c_c00348{bottom:1000.515000px;}
.y2d_c00348{bottom:1002.240000px;}
.y2b_c00348{bottom:1003.965000px;}
.y29_c00348{bottom:1033.350000px;}
.y2a_c00348{bottom:1035.075000px;}
.y28_c00348{bottom:1041.120000px;}
.y24_c00348{bottom:1064.445000px;}
.y27_c00348{bottom:1067.910000px;}
.y25_c00348{bottom:1073.085000px;}
.y26_c00348{bottom:1073.955000px;}
.y1f_c00348{bottom:1100.730000px;}
.y23_c00348{bottom:1103.325000px;}
.y20_c00348{bottom:1104.195000px;}
.y21_c00348{bottom:1105.920000px;}
.y22_c00348{bottom:1109.370000px;}
.y1c_c00348{bottom:1129.245000px;}
.y1d_c00348{bottom:1139.610000px;}
.y1e_c00348{bottom:1141.350000px;}
.y16_c00348{bottom:1162.080000px;}
.y1a_c00348{bottom:1165.530000px;}
.y17_c00348{bottom:1169.850000px;}
.y19_c00348{bottom:1170.720000px;}
.y18_c00348{bottom:1171.590000px;}
.y1b_c00348{bottom:1174.170000px;}
.y15_c00348{bottom:1182.810000px;}
.y12_c00348{bottom:1193.190000px;}
.y13_c00348{bottom:1194.045000px;}
.y14_c00348{bottom:1196.640000px;}
.y11_c00348{bottom:1219.965000px;}
.yf_c00348{bottom:1226.010000px;}
.yd_c00348{bottom:1229.475000px;}
.y10_c00348{bottom:1230.330000px;}
.ye_c00348{bottom:1233.795000px;}
.y9_c00348{bottom:1265.760000px;}
.y8_c00348{bottom:1266.630000px;}
.ya_c00348{bottom:1267.485000px;}
.yc_c00348{bottom:1268.355000px;}
.yb_c00348{bottom:1270.080000px;}
.y6_c00348{bottom:1298.595000px;}
.y7_c00348{bottom:1301.190000px;}
.y5_c00348{bottom:1306.365000px;}
.y3_c00348{bottom:1313.280000px;}
.y4_c00348{bottom:1315.875000px;}
.y2_c00348{bottom:1338.330000px;}
.y39_c00348{bottom:1346.970000px;}
.y1_c00348{bottom:1347.840000px;}
.y2f_c00348{bottom:1356.480000px;}
.y30_c00348{bottom:1376.355000px;}
.y2e_c00348{bottom:1377.210000px;}
.y31_c00348{bottom:1402.275000px;}
.y32_c00348{bottom:1403.130000px;}
.y33_c00348{bottom:1404.000000px;}
.y34_c00348{bottom:1405.725000px;}
.y35_c00348{bottom:1406.595000px;}
.y36_c00348{bottom:1407.450000px;}
.y37_c00348{bottom:1409.190000px;}
.y38_c00348{bottom:1410.045000px;}
.h2_c00348{height:3.110063px;}
.h7_c00348{height:5.399414px;}
.hc_c00348{height:6.209326px;}
.h1a_c00348{height:18.681973px;}
.h6_c00348{height:21.759639px;}
.h12_c00348{height:24.891299px;}
.h1d_c00348{height:27.968965px;}
.h1e_c00348{height:31.100625px;}
.h10_c00348{height:34.232285px;}
.h16_c00348{height:40.441611px;}
.h17_c00348{height:46.650937px;}
.hd_c00348{height:49.782598px;}
.h14_c00348{height:52.860264px;}
.h1c_c00348{height:55.991924px;}
.h1b_c00348{height:59.069590px;}
.h9_c00348{height:62.201250px;}
.h8_c00348{height:65.332910px;}
.ha_c00348{height:68.410576px;}
.h11_c00348{height:71.542236px;}
.hb_c00348{height:74.619902px;}
.h13_c00348{height:77.751563px;}
.h15_c00348{height:80.883223px;}
.h19_c00348{height:87.092549px;}
.h4_c00348{height:90.170215px;}
.h5_c00348{height:93.301875px;}
.hf_c00348{height:99.511201px;}
.h3_c00348{height:102.642861px;}
.he_c00348{height:105.720527px;}
.h18_c00348{height:111.983848px;}
.h0_c00348{height:1526.685000px;}
.h1_c00348{height:1527.000000px;}
.w0_c00348{width:1100.730000px;}
.w1_c00348{width:1101.000000px;}
.x0_c00348{left:0.000000px;}
.x1_c00348{left:241.920000px;}
.x2_c00348{left:248.835000px;}
.xc_c00348{left:266.970000px;}
.x10_c00348{left:269.565000px;}
.x15_c00348{left:274.755000px;}
.x1e_c00348{left:276.480000px;}
.xd_c00348{left:280.800000px;}
.x24_c00348{left:284.250000px;}
.x16_c00348{left:293.760000px;}
.x6_c00348{left:296.355000px;}
.xe_c00348{left:298.950000px;}
.x8_c00348{left:300.675000px;}
.x11_c00348{left:317.955000px;}
.x1b_c00348{left:322.275000px;}
.x9_c00348{left:328.320000px;}
.x26_c00348{left:331.770000px;}
.x1f_c00348{left:334.365000px;}
.x25_c00348{left:349.920000px;}
.x17_c00348{left:351.645000px;}
.x21_c00348{left:355.110000px;}
.xf_c00348{left:380.160000px;}
.x7_c00348{left:383.610000px;}
.x1c_c00348{left:409.530000px;}
.x18_c00348{left:412.995000px;}
.x20_c00348{left:416.445000px;}
.x3_c00348{left:425.085000px;}
.x2c_c00348{left:434.595000px;}
.x22_c00348{left:437.190000px;}
.x4_c00348{left:443.235000px;}
.x2d_c00348{left:455.325000px;}
.x12_c00348{left:469.155000px;}
.xa_c00348{left:473.475000px;}
.x13_c00348{left:476.070000px;}
.x19_c00348{left:487.290000px;}
.x23_c00348{left:496.800000px;}
.xb_c00348{left:501.120000px;}
.x5_c00348{left:509.760000px;}
.x1d_c00348{left:511.485000px;}
.x1a_c00348{left:514.080000px;}
.x2e_c00348{left:523.590000px;}
.x27_c00348{left:533.955000px;}
.x14_c00348{left:540.870000px;}
.x28_c00348{left:554.685000px;}
.x2f_c00348{left:582.330000px;}
.x30_c00348{left:605.670000px;}
.x31_c00348{left:673.050000px;}
.x32_c00348{left:686.880000px;}
.x2a_c00348{left:732.675000px;}
.x2b_c00348{left:742.170000px;}
.x35_c00348{left:770.685000px;}
.x34_c00348{left:776.730000px;}
.x36_c00348{left:834.630000px;}
.x37_c00348{left:854.490000px;}
.x29_c00348{left:887.325000px;}
.x33_c00348{left:1035.930000px;}
@media print{
.v0_c00348{vertical-align:0.000000pt;}
.ls0_c00348{letter-spacing:0.000000pt;}
.ws0_c00348{word-spacing:0.000000pt;}
.fs0_c00348{font-size:3.072000pt;}
.fs5_c00348{font-size:5.333333pt;}
.fsa_c00348{font-size:6.133333pt;}
.fs18_c00348{font-size:18.453333pt;}
.fs4_c00348{font-size:21.493333pt;}
.fs10_c00348{font-size:24.586667pt;}
.fs1b_c00348{font-size:27.626667pt;}
.fs1c_c00348{font-size:30.720000pt;}
.fse_c00348{font-size:33.813333pt;}
.fs14_c00348{font-size:39.946667pt;}
.fs15_c00348{font-size:46.080000pt;}
.fsb_c00348{font-size:49.173333pt;}
.fs12_c00348{font-size:52.213333pt;}
.fs1a_c00348{font-size:55.306667pt;}
.fs19_c00348{font-size:58.346667pt;}
.fs7_c00348{font-size:61.440000pt;}
.fs6_c00348{font-size:64.533333pt;}
.fs8_c00348{font-size:67.573333pt;}
.fsf_c00348{font-size:70.666667pt;}
.fs9_c00348{font-size:73.706667pt;}
.fs11_c00348{font-size:76.800000pt;}
.fs13_c00348{font-size:79.893333pt;}
.fs17_c00348{font-size:86.026667pt;}
.fs2_c00348{font-size:89.066667pt;}
.fs3_c00348{font-size:92.160000pt;}
.fsd_c00348{font-size:98.293333pt;}
.fs1_c00348{font-size:101.386667pt;}
.fsc_c00348{font-size:104.426667pt;}
.fs16_c00348{font-size:110.613333pt;}
.y0_c00348{bottom:0.000000pt;}
.y3c_c00348{bottom:857.853333pt;}
.y3d_c00348{bottom:858.626667pt;}
.y3b_c00348{bottom:866.306667pt;}
.y3a_c00348{bottom:875.520000pt;}
.y2c_c00348{bottom:889.346667pt;}
.y2d_c00348{bottom:890.880000pt;}
.y2b_c00348{bottom:892.413333pt;}
.y29_c00348{bottom:918.533333pt;}
.y2a_c00348{bottom:920.066667pt;}
.y28_c00348{bottom:925.440000pt;}
.y24_c00348{bottom:946.173333pt;}
.y27_c00348{bottom:949.253333pt;}
.y25_c00348{bottom:953.853333pt;}
.y26_c00348{bottom:954.626667pt;}
.y1f_c00348{bottom:978.426667pt;}
.y23_c00348{bottom:980.733333pt;}
.y20_c00348{bottom:981.506667pt;}
.y21_c00348{bottom:983.040000pt;}
.y22_c00348{bottom:986.106667pt;}
.y1c_c00348{bottom:1003.773333pt;}
.y1d_c00348{bottom:1012.986667pt;}
.y1e_c00348{bottom:1014.533333pt;}
.y16_c00348{bottom:1032.960000pt;}
.y1a_c00348{bottom:1036.026667pt;}
.y17_c00348{bottom:1039.866667pt;}
.y19_c00348{bottom:1040.640000pt;}
.y18_c00348{bottom:1041.413333pt;}
.y1b_c00348{bottom:1043.706667pt;}
.y15_c00348{bottom:1051.386667pt;}
.y12_c00348{bottom:1060.613333pt;}
.y13_c00348{bottom:1061.373333pt;}
.y14_c00348{bottom:1063.680000pt;}
.y11_c00348{bottom:1084.413333pt;}
.yf_c00348{bottom:1089.786667pt;}
.yd_c00348{bottom:1092.866667pt;}
.y10_c00348{bottom:1093.626667pt;}
.ye_c00348{bottom:1096.706667pt;}
.y9_c00348{bottom:1125.120000pt;}
.y8_c00348{bottom:1125.893333pt;}
.ya_c00348{bottom:1126.653333pt;}
.yc_c00348{bottom:1127.426667pt;}
.yb_c00348{bottom:1128.960000pt;}
.y6_c00348{bottom:1154.306667pt;}
.y7_c00348{bottom:1156.613333pt;}
.y5_c00348{bottom:1161.213333pt;}
.y3_c00348{bottom:1167.360000pt;}
.y4_c00348{bottom:1169.666667pt;}
.y2_c00348{bottom:1189.626667pt;}
.y39_c00348{bottom:1197.306667pt;}
.y1_c00348{bottom:1198.080000pt;}
.y2f_c00348{bottom:1205.760000pt;}
.y30_c00348{bottom:1223.426667pt;}
.y2e_c00348{bottom:1224.186667pt;}
.y31_c00348{bottom:1246.466667pt;}
.y32_c00348{bottom:1247.226667pt;}
.y33_c00348{bottom:1248.000000pt;}
.y34_c00348{bottom:1249.533333pt;}
.y35_c00348{bottom:1250.306667pt;}
.y36_c00348{bottom:1251.066667pt;}
.y37_c00348{bottom:1252.613333pt;}
.y38_c00348{bottom:1253.373333pt;}
.h2_c00348{height:2.764500pt;}
.h7_c00348{height:4.799479pt;}
.hc_c00348{height:5.519401pt;}
.h1a_c00348{height:16.606198pt;}
.h6_c00348{height:19.341901pt;}
.h12_c00348{height:22.125599pt;}
.h1d_c00348{height:24.861302pt;}
.h1e_c00348{height:27.645000pt;}
.h10_c00348{height:30.428698pt;}
.h16_c00348{height:35.948099pt;}
.h17_c00348{height:41.467500pt;}
.hd_c00348{height:44.251198pt;}
.h14_c00348{height:46.986901pt;}
.h1c_c00348{height:49.770599pt;}
.h1b_c00348{height:52.506302pt;}
.h9_c00348{height:55.290000pt;}
.h8_c00348{height:58.073698pt;}
.ha_c00348{height:60.809401pt;}
.h11_c00348{height:63.593099pt;}
.hb_c00348{height:66.328802pt;}
.h13_c00348{height:69.112500pt;}
.h15_c00348{height:71.896198pt;}
.h19_c00348{height:77.415599pt;}
.h4_c00348{height:80.151302pt;}
.h5_c00348{height:82.935000pt;}
.hf_c00348{height:88.454401pt;}
.h3_c00348{height:91.238099pt;}
.he_c00348{height:93.973802pt;}
.h18_c00348{height:99.541198pt;}
.h0_c00348{height:1357.053333pt;}
.h1_c00348{height:1357.333333pt;}
.w0_c00348{width:978.426667pt;}
.w1_c00348{width:978.666667pt;}
.x0_c00348{left:0.000000pt;}
.x1_c00348{left:215.040000pt;}
.x2_c00348{left:221.186667pt;}
.xc_c00348{left:237.306667pt;}
.x10_c00348{left:239.613333pt;}
.x15_c00348{left:244.226667pt;}
.x1e_c00348{left:245.760000pt;}
.xd_c00348{left:249.600000pt;}
.x24_c00348{left:252.666667pt;}
.x16_c00348{left:261.120000pt;}
.x6_c00348{left:263.426667pt;}
.xe_c00348{left:265.733333pt;}
.x8_c00348{left:267.266667pt;}
.x11_c00348{left:282.626667pt;}
.x1b_c00348{left:286.466667pt;}
.x9_c00348{left:291.840000pt;}
.x26_c00348{left:294.906667pt;}
.x1f_c00348{left:297.213333pt;}
.x25_c00348{left:311.040000pt;}
.x17_c00348{left:312.573333pt;}
.x21_c00348{left:315.653333pt;}
.xf_c00348{left:337.920000pt;}
.x7_c00348{left:340.986667pt;}
.x1c_c00348{left:364.026667pt;}
.x18_c00348{left:367.106667pt;}
.x20_c00348{left:370.173333pt;}
.x3_c00348{left:377.853333pt;}
.x2c_c00348{left:386.306667pt;}
.x22_c00348{left:388.613333pt;}
.x4_c00348{left:393.986667pt;}
.x2d_c00348{left:404.733333pt;}
.x12_c00348{left:417.026667pt;}
.xa_c00348{left:420.866667pt;}
.x13_c00348{left:423.173333pt;}
.x19_c00348{left:433.146667pt;}
.x23_c00348{left:441.600000pt;}
.xb_c00348{left:445.440000pt;}
.x5_c00348{left:453.120000pt;}
.x1d_c00348{left:454.653333pt;}
.x1a_c00348{left:456.960000pt;}
.x2e_c00348{left:465.413333pt;}
.x27_c00348{left:474.626667pt;}
.x14_c00348{left:480.773333pt;}
.x28_c00348{left:493.053333pt;}
.x2f_c00348{left:517.626667pt;}
.x30_c00348{left:538.373333pt;}
.x31_c00348{left:598.266667pt;}
.x32_c00348{left:610.560000pt;}
.x2a_c00348{left:651.266667pt;}
.x2b_c00348{left:659.706667pt;}
.x35_c00348{left:685.053333pt;}
.x34_c00348{left:690.426667pt;}
.x36_c00348{left:741.893333pt;}
.x37_c00348{left:759.546667pt;}
.x29_c00348{left:788.733333pt;}
.x33_c00348{left:920.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_590346003c2eb2672adb9a05.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:1.109863;font-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_c00349{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);}
.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;}
.fs0_c00349{font-size:600.000000px;}
.y0_c00349{bottom:0.000000px;}
.y1_c00349{bottom:15.000000px;}
.h2_c00349{height:539.941406px;}
.h1_c00349{height:1507.500000px;}
.h0_c00349{height:1507.680000px;}
.w0_c00349{width:1111.965000px;}
.w1_c00349{width:1112.250000px;}
.x0_c00349{left:0.000000px;}
.x1_c00349{left:15.000000px;}
@media print{
.v0_c00349{vertical-align:0.000000pt;}
.ls0_c00349{letter-spacing:0.000000pt;}
.ws0_c00349{word-spacing:0.000000pt;}
.fs0_c00349{font-size:533.333333pt;}
.y0_c00349{bottom:0.000000pt;}
.y1_c00349{bottom:13.333333pt;}
.h2_c00349{height:479.947917pt;}
.h1_c00349{height:1340.000000pt;}
.h0_c00349{height:1340.160000pt;}
.w0_c00349{width:988.413333pt;}
.w1_c00349{width:988.666667pt;}
.x0_c00349{left:0.000000pt;}
.x1_c00349{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d500bcd53afc79b7bdce7ba.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.109863;font-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_c00350{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);}
.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;}
.fc0_c00350{color:transparent;}
.fs0_c00350{font-size:600.000000px;}
.y0_c00350{bottom:0.000000px;}
.y1_c00350{bottom:15.000000px;}
.h2_c00350{height:539.941406px;}
.h0_c00350{height:1526.685000px;}
.h1_c00350{height:1527.000000px;}
.w0_c00350{width:1100.730000px;}
.w1_c00350{width:1101.000000px;}
.x0_c00350{left:0.000000px;}
.x1_c00350{left:15.000000px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.ws0_c00350{word-spacing:0.000000pt;}
.fs0_c00350{font-size:533.333333pt;}
.y0_c00350{bottom:0.000000pt;}
.y1_c00350{bottom:13.333333pt;}
.h2_c00350{height:479.947917pt;}
.h0_c00350{height:1357.053333pt;}
.h1_c00350{height:1357.333333pt;}
.w0_c00350{width:978.426667pt;}
.w1_c00350{width:978.666667pt;}
.x0_c00350{left:0.000000pt;}
.x1_c00350{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e9ad362ea4d22cc79e6ba86a.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:1.109863;font-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_c00351{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);}
.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:600.000000px;}
.y0_c00351{bottom:0.000000px;}
.y1_c00351{bottom:15.000000px;}
.h2_c00351{height:539.941406px;}
.h1_c00351{height:1507.500000px;}
.h0_c00351{height:1507.680000px;}
.w0_c00351{width:1111.965000px;}
.w1_c00351{width:1112.250000px;}
.x0_c00351{left:0.000000px;}
.x1_c00351{left:15.000000px;}
@media print{
.v0_c00351{vertical-align:0.000000pt;}
.ls0_c00351{letter-spacing:0.000000pt;}
.ws0_c00351{word-spacing:0.000000pt;}
.fs0_c00351{font-size:533.333333pt;}
.y0_c00351{bottom:0.000000pt;}
.y1_c00351{bottom:13.333333pt;}
.h2_c00351{height:479.947917pt;}
.h1_c00351{height:1340.000000pt;}
.h0_c00351{height:1340.160000pt;}
.w0_c00351{width:988.413333pt;}
.w1_c00351{width:988.666667pt;}
.x0_c00351{left:0.000000pt;}
.x1_c00351{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aec8fb4d4a70e5eb025fad9f.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.109863;font-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_c00352{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m5_c00352{transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);}
.m6_c00352{transform:matrix(0.080350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080350,0.000000,0.000000,0.250000,0,0);}
.m4_c00352{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c00352{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00352{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3_c00352{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c00352{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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;}
.fs4_c00352{font-size:3.456000px;}
.fs2_c00352{font-size:6.900000px;}
.fs0_c00352{font-size:10.380000px;}
.fs1_c00352{font-size:17.280000px;}
.fs3_c00352{font-size:41.460000px;}
.fs6_c00352{font-size:44.940000px;}
.fs5_c00352{font-size:120.960000px;}
.y0_c00352{bottom:0.000000px;}
.ya_c00352{bottom:443.235000px;}
.yb_c00352{bottom:449.280000px;}
.y9_c00352{bottom:455.325000px;}
.y7_c00352{bottom:493.350000px;}
.y8_c00352{bottom:495.075000px;}
.y6_c00352{bottom:499.395000px;}
.y3_c00352{bottom:699.840000px;}
.y4_c00352{bottom:802.650000px;}
.y5_c00352{bottom:807.840000px;}
.y1_c00352{bottom:1334.880000px;}
.y2_c00352{bottom:1337.475000px;}
.h6_c00352{height:3.110063px;}
.h4_c00352{height:6.209326px;}
.h2_c00352{height:9.340986px;}
.h3_c00352{height:15.550313px;}
.h5_c00352{height:37.309951px;}
.h8_c00352{height:40.441611px;}
.h7_c00352{height:108.852188px;}
.h0_c00352{height:1526.685000px;}
.h1_c00352{height:1527.000000px;}
.w0_c00352{width:1100.730000px;}
.w1_c00352{width:1101.000000px;}
.x0_c00352{left:0.000000px;}
.x4_c00352{left:906.330000px;}
.x5_c00352{left:917.565000px;}
.x1_c00352{left:930.525000px;}
.x6_c00352{left:932.250000px;}
.x2_c00352{left:950.400000px;}
.x7_c00352{left:995.325000px;}
.x9_c00352{left:1007.430000px;}
.x8_c00352{left:1010.010000px;}
.x3_c00352{left:1011.750000px;}
@media print{
.v0_c00352{vertical-align:0.000000pt;}
.ls0_c00352{letter-spacing:0.000000pt;}
.ws0_c00352{word-spacing:0.000000pt;}
.fs4_c00352{font-size:3.072000pt;}
.fs2_c00352{font-size:6.133333pt;}
.fs0_c00352{font-size:9.226667pt;}
.fs1_c00352{font-size:15.360000pt;}
.fs3_c00352{font-size:36.853333pt;}
.fs6_c00352{font-size:39.946667pt;}
.fs5_c00352{font-size:107.520000pt;}
.y0_c00352{bottom:0.000000pt;}
.ya_c00352{bottom:393.986667pt;}
.yb_c00352{bottom:399.360000pt;}
.y9_c00352{bottom:404.733333pt;}
.y7_c00352{bottom:438.533333pt;}
.y8_c00352{bottom:440.066667pt;}
.y6_c00352{bottom:443.906667pt;}
.y3_c00352{bottom:622.080000pt;}
.y4_c00352{bottom:713.466667pt;}
.y5_c00352{bottom:718.080000pt;}
.y1_c00352{bottom:1186.560000pt;}
.y2_c00352{bottom:1188.866667pt;}
.h6_c00352{height:2.764500pt;}
.h4_c00352{height:5.519401pt;}
.h2_c00352{height:8.303099pt;}
.h3_c00352{height:13.822500pt;}
.h5_c00352{height:33.164401pt;}
.h8_c00352{height:35.948099pt;}
.h7_c00352{height:96.757500pt;}
.h0_c00352{height:1357.053333pt;}
.h1_c00352{height:1357.333333pt;}
.w0_c00352{width:978.426667pt;}
.w1_c00352{width:978.666667pt;}
.x0_c00352{left:0.000000pt;}
.x4_c00352{left:805.626667pt;}
.x5_c00352{left:815.613333pt;}
.x1_c00352{left:827.133333pt;}
.x6_c00352{left:828.666667pt;}
.x2_c00352{left:844.800000pt;}
.x7_c00352{left:884.733333pt;}
.x9_c00352{left:895.493333pt;}
.x8_c00352{left:897.786667pt;}
.x3_c00352{left:899.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f1c5f46d81c4a70ecf61173.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:1.109863;font-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_c00353{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c00353{transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);}
.m4_c00353{transform:matrix(0.045975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045975,0.000000,0.000000,0.250000,0,0);}
.m6_c00353{transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);}
.m0_c00353{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m1_c00353{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m3_c00353{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,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;}
.fs2_c00353{font-size:3.456000px;}
.fs3_c00353{font-size:27.660000px;}
.fs0_c00353{font-size:31.080000px;}
.fs6_c00353{font-size:55.320000px;}
.fs1_c00353{font-size:96.780000px;}
.fs5_c00353{font-size:138.240000px;}
.fs4_c00353{font-size:169.320000px;}
.y0_c00353{bottom:0.000000px;}
.y7_c00353{bottom:967.680000px;}
.y6_c00353{bottom:984.090000px;}
.y5_c00353{bottom:1019.520000px;}
.y4_c00353{bottom:1054.950000px;}
.y2_c00353{bottom:1056.675000px;}
.y3_c00353{bottom:1063.590000px;}
.y1_c00353{bottom:1080.870000px;}
.h4_c00353{height:3.110063px;}
.h5_c00353{height:24.891299px;}
.h2_c00353{height:27.968965px;}
.h8_c00353{height:49.782598px;}
.h3_c00353{height:87.092549px;}
.h7_c00353{height:124.402500px;}
.h6_c00353{height:152.371465px;}
.h1_c00353{height:1507.500000px;}
.h0_c00353{height:1507.680000px;}
.w0_c00353{width:1111.965000px;}
.w1_c00353{width:1112.250000px;}
.x0_c00353{left:0.000000px;}
.x2_c00353{left:101.085000px;}
.x1_c00353{left:104.550000px;}
.x3_c00353{left:114.045000px;}
.x4_c00353{left:119.235000px;}
@media print{
.v0_c00353{vertical-align:0.000000pt;}
.ls0_c00353{letter-spacing:0.000000pt;}
.ws0_c00353{word-spacing:0.000000pt;}
.fs2_c00353{font-size:3.072000pt;}
.fs3_c00353{font-size:24.586667pt;}
.fs0_c00353{font-size:27.626667pt;}
.fs6_c00353{font-size:49.173333pt;}
.fs1_c00353{font-size:86.026667pt;}
.fs5_c00353{font-size:122.880000pt;}
.fs4_c00353{font-size:150.506667pt;}
.y0_c00353{bottom:0.000000pt;}
.y7_c00353{bottom:860.160000pt;}
.y6_c00353{bottom:874.746667pt;}
.y5_c00353{bottom:906.240000pt;}
.y4_c00353{bottom:937.733333pt;}
.y2_c00353{bottom:939.266667pt;}
.y3_c00353{bottom:945.413333pt;}
.y1_c00353{bottom:960.773333pt;}
.h4_c00353{height:2.764500pt;}
.h5_c00353{height:22.125599pt;}
.h2_c00353{height:24.861302pt;}
.h8_c00353{height:44.251198pt;}
.h3_c00353{height:77.415599pt;}
.h7_c00353{height:110.580000pt;}
.h6_c00353{height:135.441302pt;}
.h1_c00353{height:1340.000000pt;}
.h0_c00353{height:1340.160000pt;}
.w0_c00353{width:988.413333pt;}
.w1_c00353{width:988.666667pt;}
.x0_c00353{left:0.000000pt;}
.x2_c00353{left:89.853333pt;}
.x1_c00353{left:92.933333pt;}
.x3_c00353{left:101.373333pt;}
.x4_c00353{left:105.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69d52a377fd81033a681482c.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.109863;font-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_c00354{transform:matrix(0.112425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112425,0.000000,0.000000,0.250000,0,0);}
.m2_c00354{transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);}
.m3_c00354{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.m4_c00354{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m5_c00354{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);}
.m1_c00354{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.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:3.456000px;}
.fs0_c00354{font-size:27.660000px;}
.fs5_c00354{font-size:41.460000px;}
.fs3_c00354{font-size:51.840000px;}
.fs4_c00354{font-size:62.220000px;}
.fs2_c00354{font-size:120.960000px;}
.y0_c00354{bottom:0.000000px;}
.y4_c00354{bottom:1072.230000px;}
.y5_c00354{bottom:1076.550000px;}
.y3_c00354{bottom:1104.195000px;}
.y2_c00354{bottom:1385.850000px;}
.y1_c00354{bottom:1454.970000px;}
.h3_c00354{height:3.110063px;}
.h2_c00354{height:24.891299px;}
.h7_c00354{height:37.309951px;}
.h5_c00354{height:46.650937px;}
.h6_c00354{height:55.991924px;}
.h4_c00354{height:108.852188px;}
.h0_c00354{height:1526.685000px;}
.h1_c00354{height:1527.000000px;}
.w0_c00354{width:1100.730000px;}
.w1_c00354{width:1101.000000px;}
.x0_c00354{left:0.000000px;}
.x4_c00354{left:184.890000px;}
.x5_c00354{left:214.275000px;}
.x1_c00354{left:952.125000px;}
.x2_c00354{left:968.550000px;}
.x3_c00354{left:992.730000px;}
@media print{
.v0_c00354{vertical-align:0.000000pt;}
.ls0_c00354{letter-spacing:0.000000pt;}
.ws0_c00354{word-spacing:0.000000pt;}
.fs1_c00354{font-size:3.072000pt;}
.fs0_c00354{font-size:24.586667pt;}
.fs5_c00354{font-size:36.853333pt;}
.fs3_c00354{font-size:46.080000pt;}
.fs4_c00354{font-size:55.306667pt;}
.fs2_c00354{font-size:107.520000pt;}
.y0_c00354{bottom:0.000000pt;}
.y4_c00354{bottom:953.093333pt;}
.y5_c00354{bottom:956.933333pt;}
.y3_c00354{bottom:981.506667pt;}
.y2_c00354{bottom:1231.866667pt;}
.y1_c00354{bottom:1293.306667pt;}
.h3_c00354{height:2.764500pt;}
.h2_c00354{height:22.125599pt;}
.h7_c00354{height:33.164401pt;}
.h5_c00354{height:41.467500pt;}
.h6_c00354{height:49.770599pt;}
.h4_c00354{height:96.757500pt;}
.h0_c00354{height:1357.053333pt;}
.h1_c00354{height:1357.333333pt;}
.w0_c00354{width:978.426667pt;}
.w1_c00354{width:978.666667pt;}
.x0_c00354{left:0.000000pt;}
.x4_c00354{left:164.346667pt;}
.x5_c00354{left:190.466667pt;}
.x1_c00354{left:846.333333pt;}
.x2_c00354{left:860.933333pt;}
.x3_c00354{left:882.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00355;src:url('chunks/assets/font_7587dcec76881858b06ddc4c.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:1.109863;font-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_c00355{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m14_c00355{transform:matrix(0.110950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110950,0.000000,0.000000,0.250000,0,0);}
.m16_c00355{transform:matrix(0.113450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113450,0.000000,0.000000,0.250000,0,0);}
.m19_c00355{transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);}
.mf_c00355{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m18_c00355{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m15_c00355{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.m17_c00355{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m1d_c00355{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m9_c00355{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m11_c00355{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);}
.m5_c00355{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);}
.mb_c00355{transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);}
.m10_c00355{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);}
.m6_c00355{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);}
.m2_c00355{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);}
.ma_c00355{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);}
.m1a_c00355{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);}
.m4_c00355{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);}
.m1c_c00355{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c00355{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c00355{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00355{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);}
.m12_c00355{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m8_c00355{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);}
.m7_c00355{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);}
.m13_c00355{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.me_c00355{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);}
.m1_c00355{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m3_c00355{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c00355{vertical-align:0.000000px;}
.ls0_c00355{letter-spacing:0.000000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00355{word-spacing:0.000000px;}
.fc0_c00355{color:transparent;}
.fs1_c00355{font-size:3.456000px;}
.fs3_c00355{font-size:6.900000px;}
.fsb_c00355{font-size:17.280000px;}
.fs2_c00355{font-size:24.180000px;}
.fsa_c00355{font-size:34.560000px;}
.fsd_c00355{font-size:38.040000px;}
.fs12_c00355{font-size:41.460000px;}
.fs0_c00355{font-size:44.940000px;}
.fs9_c00355{font-size:48.360000px;}
.fs5_c00355{font-size:51.840000px;}
.fs4_c00355{font-size:55.320000px;}
.fs7_c00355{font-size:58.740000px;}
.fs8_c00355{font-size:65.640000px;}
.fs6_c00355{font-size:69.120000px;}
.fsc_c00355{font-size:76.020000px;}
.fs11_c00355{font-size:82.920000px;}
.fsf_c00355{font-size:89.880000px;}
.fs10_c00355{font-size:96.780000px;}
.fse_c00355{font-size:110.580000px;}
.y0_c00355{bottom:0.000000px;}
.y1d_c00355{bottom:211.680000px;}
.y1c_c00355{bottom:217.725000px;}
.y1b_c00355{bottom:218.595000px;}
.y18_c00355{bottom:231.555000px;}
.y17_c00355{bottom:232.410000px;}
.y19_c00355{bottom:238.470000px;}
.y1a_c00355{bottom:240.195000px;}
.y14_c00355{bottom:252.285000px;}
.y16_c00355{bottom:253.155000px;}
.y15_c00355{bottom:254.010000px;}
.y3_c00355{bottom:268.710000px;}
.y2_c00355{bottom:272.160000px;}
.y11_c00355{bottom:273.885000px;}
.y10_c00355{bottom:277.350000px;}
.yf_c00355{bottom:278.205000px;}
.y12_c00355{bottom:279.930000px;}
.y13_c00355{bottom:281.670000px;}
.y9_c00355{bottom:293.760000px;}
.ya_c00355{bottom:294.630000px;}
.yd_c00355{bottom:295.485000px;}
.y8_c00355{bottom:297.210000px;}
.yc_c00355{bottom:298.950000px;}
.ye_c00355{bottom:300.675000px;}
.yb_c00355{bottom:302.400000px;}
.y5_c00355{bottom:317.955000px;}
.y6_c00355{bottom:318.810000px;}
.y4_c00355{bottom:319.680000px;}
.y7_c00355{bottom:321.405000px;}
.y1_c00355{bottom:1174.170000px;}
.h3_c00355{height:3.110063px;}
.h5_c00355{height:6.209326px;}
.hd_c00355{height:15.550313px;}
.h4_c00355{height:21.759639px;}
.hc_c00355{height:31.100625px;}
.hf_c00355{height:34.232285px;}
.h14_c00355{height:37.309951px;}
.h2_c00355{height:40.441611px;}
.hb_c00355{height:43.519277px;}
.h7_c00355{height:46.650937px;}
.h6_c00355{height:49.782598px;}
.h9_c00355{height:52.860264px;}
.ha_c00355{height:59.069590px;}
.h8_c00355{height:62.201250px;}
.he_c00355{height:68.410576px;}
.h13_c00355{height:74.619902px;}
.h11_c00355{height:80.883223px;}
.h12_c00355{height:87.092549px;}
.h10_c00355{height:99.511201px;}
.h1_c00355{height:1507.500000px;}
.h0_c00355{height:1507.680000px;}
.w0_c00355{width:1111.965000px;}
.w1_c00355{width:1112.250000px;}
.x0_c00355{left:0.000000px;}
.x2_c00355{left:58.755000px;}
.x1_c00355{left:73.440000px;}
.x3_c00355{left:76.035000px;}
.x1a_c00355{left:581.475000px;}
.x1b_c00355{left:585.795000px;}
.x15_c00355{left:590.970000px;}
.xd_c00355{left:611.715000px;}
.x16_c00355{left:622.080000px;}
.x17_c00355{left:641.955000px;}
.xe_c00355{left:646.275000px;}
.x4_c00355{left:648.000000px;}
.x5_c00355{left:661.830000px;}
.x6_c00355{left:693.795000px;}
.x1c_c00355{left:705.885000px;}
.x7_c00355{left:707.610000px;}
.xf_c00355{left:712.800000px;}
.x18_c00355{left:720.570000px;}
.x8_c00355{left:722.310000px;}
.x9_c00355{left:741.315000px;}
.x20_c00355{left:745.635000px;}
.xa_c00355{left:759.450000px;}
.x21_c00355{left:763.770000px;}
.xb_c00355{left:771.555000px;}
.xc_c00355{left:781.920000px;}
.x10_c00355{left:783.645000px;}
.x22_c00355{left:790.560000px;}
.x19_c00355{left:794.880000px;}
.x11_c00355{left:796.605000px;}
.x1d_c00355{left:804.390000px;}
.x1e_c00355{left:829.440000px;}
.x12_c00355{left:832.035000px;}
.x13_c00355{left:841.530000px;}
.x14_c00355{left:844.125000px;}
.x1f_c00355{left:880.410000px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ws0_c00355{word-spacing:0.000000pt;}
.fs1_c00355{font-size:3.072000pt;}
.fs3_c00355{font-size:6.133333pt;}
.fsb_c00355{font-size:15.360000pt;}
.fs2_c00355{font-size:21.493333pt;}
.fsa_c00355{font-size:30.720000pt;}
.fsd_c00355{font-size:33.813333pt;}
.fs12_c00355{font-size:36.853333pt;}
.fs0_c00355{font-size:39.946667pt;}
.fs9_c00355{font-size:42.986667pt;}
.fs5_c00355{font-size:46.080000pt;}
.fs4_c00355{font-size:49.173333pt;}
.fs7_c00355{font-size:52.213333pt;}
.fs8_c00355{font-size:58.346667pt;}
.fs6_c00355{font-size:61.440000pt;}
.fsc_c00355{font-size:67.573333pt;}
.fs11_c00355{font-size:73.706667pt;}
.fsf_c00355{font-size:79.893333pt;}
.fs10_c00355{font-size:86.026667pt;}
.fse_c00355{font-size:98.293333pt;}
.y0_c00355{bottom:0.000000pt;}
.y1d_c00355{bottom:188.160000pt;}
.y1c_c00355{bottom:193.533333pt;}
.y1b_c00355{bottom:194.306667pt;}
.y18_c00355{bottom:205.826667pt;}
.y17_c00355{bottom:206.586667pt;}
.y19_c00355{bottom:211.973333pt;}
.y1a_c00355{bottom:213.506667pt;}
.y14_c00355{bottom:224.253333pt;}
.y16_c00355{bottom:225.026667pt;}
.y15_c00355{bottom:225.786667pt;}
.y3_c00355{bottom:238.853333pt;}
.y2_c00355{bottom:241.920000pt;}
.y11_c00355{bottom:243.453333pt;}
.y10_c00355{bottom:246.533333pt;}
.yf_c00355{bottom:247.293333pt;}
.y12_c00355{bottom:248.826667pt;}
.y13_c00355{bottom:250.373333pt;}
.y9_c00355{bottom:261.120000pt;}
.ya_c00355{bottom:261.893333pt;}
.yd_c00355{bottom:262.653333pt;}
.y8_c00355{bottom:264.186667pt;}
.yc_c00355{bottom:265.733333pt;}
.ye_c00355{bottom:267.266667pt;}
.yb_c00355{bottom:268.800000pt;}
.y5_c00355{bottom:282.626667pt;}
.y6_c00355{bottom:283.386667pt;}
.y4_c00355{bottom:284.160000pt;}
.y7_c00355{bottom:285.693333pt;}
.y1_c00355{bottom:1043.706667pt;}
.h3_c00355{height:2.764500pt;}
.h5_c00355{height:5.519401pt;}
.hd_c00355{height:13.822500pt;}
.h4_c00355{height:19.341901pt;}
.hc_c00355{height:27.645000pt;}
.hf_c00355{height:30.428698pt;}
.h14_c00355{height:33.164401pt;}
.h2_c00355{height:35.948099pt;}
.hb_c00355{height:38.683802pt;}
.h7_c00355{height:41.467500pt;}
.h6_c00355{height:44.251198pt;}
.h9_c00355{height:46.986901pt;}
.ha_c00355{height:52.506302pt;}
.h8_c00355{height:55.290000pt;}
.he_c00355{height:60.809401pt;}
.h13_c00355{height:66.328802pt;}
.h11_c00355{height:71.896198pt;}
.h12_c00355{height:77.415599pt;}
.h10_c00355{height:88.454401pt;}
.h1_c00355{height:1340.000000pt;}
.h0_c00355{height:1340.160000pt;}
.w0_c00355{width:988.413333pt;}
.w1_c00355{width:988.666667pt;}
.x0_c00355{left:0.000000pt;}
.x2_c00355{left:52.226667pt;}
.x1_c00355{left:65.280000pt;}
.x3_c00355{left:67.586667pt;}
.x1a_c00355{left:516.866667pt;}
.x1b_c00355{left:520.706667pt;}
.x15_c00355{left:525.306667pt;}
.xd_c00355{left:543.746667pt;}
.x16_c00355{left:552.960000pt;}
.x17_c00355{left:570.626667pt;}
.xe_c00355{left:574.466667pt;}
.x4_c00355{left:576.000000pt;}
.x5_c00355{left:588.293333pt;}
.x6_c00355{left:616.706667pt;}
.x1c_c00355{left:627.453333pt;}
.x7_c00355{left:628.986667pt;}
.xf_c00355{left:633.600000pt;}
.x18_c00355{left:640.506667pt;}
.x8_c00355{left:642.053333pt;}
.x9_c00355{left:658.946667pt;}
.x20_c00355{left:662.786667pt;}
.xa_c00355{left:675.066667pt;}
.x21_c00355{left:678.906667pt;}
.xb_c00355{left:685.826667pt;}
.xc_c00355{left:695.040000pt;}
.x10_c00355{left:696.573333pt;}
.x22_c00355{left:702.720000pt;}
.x19_c00355{left:706.560000pt;}
.x11_c00355{left:708.093333pt;}
.x1d_c00355{left:715.013333pt;}
.x1e_c00355{left:737.280000pt;}
.x12_c00355{left:739.586667pt;}
.x13_c00355{left:748.026667pt;}
.x14_c00355{left:750.333333pt;}
.x1f_c00355{left:782.586667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_367e092bba1aa54ec63ae787.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.109863;font-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_c00356{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m4_c00356{transform:matrix(0.117725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117725,0.000000,0.000000,0.250000,0,0);}
.m1_c00356{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);}
.m2_c00356{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00356{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,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;}
.fs2_c00356{font-size:17.280000px;}
.fs0_c00356{font-size:20.760000px;}
.fs1_c00356{font-size:34.560000px;}
.fs3_c00356{font-size:44.940000px;}
.fs4_c00356{font-size:79.500000px;}
.y0_c00356{bottom:0.000000px;}
.y1_c00356{bottom:804.390000px;}
.y3_c00356{bottom:1253.670000px;}
.y2_c00356{bottom:1257.120000px;}
.y5_c00356{bottom:1259.715000px;}
.y6_c00356{bottom:1271.805000px;}
.y4_c00356{bottom:1281.315000px;}
.h4_c00356{height:15.550313px;}
.h2_c00356{height:18.681973px;}
.h3_c00356{height:31.100625px;}
.h5_c00356{height:40.441611px;}
.h6_c00356{height:71.542236px;}
.h0_c00356{height:1526.685000px;}
.h1_c00356{height:1527.000000px;}
.w0_c00356{width:1100.730000px;}
.w1_c00356{width:1101.000000px;}
.x0_c00356{left:0.000000px;}
.x2_c00356{left:895.110000px;}
.x3_c00356{left:908.070000px;}
.x4_c00356{left:991.875000px;}
.x5_c00356{left:1009.155000px;}
.x1_c00356{left:1071.360000px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls0_c00356{letter-spacing:0.000000pt;}
.ws0_c00356{word-spacing:0.000000pt;}
.fs2_c00356{font-size:15.360000pt;}
.fs0_c00356{font-size:18.453333pt;}
.fs1_c00356{font-size:30.720000pt;}
.fs3_c00356{font-size:39.946667pt;}
.fs4_c00356{font-size:70.666667pt;}
.y0_c00356{bottom:0.000000pt;}
.y1_c00356{bottom:715.013333pt;}
.y3_c00356{bottom:1114.373333pt;}
.y2_c00356{bottom:1117.440000pt;}
.y5_c00356{bottom:1119.746667pt;}
.y6_c00356{bottom:1130.493333pt;}
.y4_c00356{bottom:1138.946667pt;}
.h4_c00356{height:13.822500pt;}
.h2_c00356{height:16.606198pt;}
.h3_c00356{height:27.645000pt;}
.h5_c00356{height:35.948099pt;}
.h6_c00356{height:63.593099pt;}
.h0_c00356{height:1357.053333pt;}
.h1_c00356{height:1357.333333pt;}
.w0_c00356{width:978.426667pt;}
.w1_c00356{width:978.666667pt;}
.x0_c00356{left:0.000000pt;}
.x2_c00356{left:795.653333pt;}
.x3_c00356{left:807.173333pt;}
.x4_c00356{left:881.666667pt;}
.x5_c00356{left:897.026667pt;}
.x1_c00356{left:952.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_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_57d2305d447fb56bd9377ca9.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:1.109863;font-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_c00357{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m11_c00357{transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);}
.mc_c00357{transform:matrix(0.030075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030075,0.000000,0.000000,0.250000,0,0);}
.m9_c00357{transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);}
.ma_c00357{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m10_c00357{transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);}
.m8_c00357{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.m6_c00357{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.mb_c00357{transform:matrix(0.114425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114425,0.000000,0.000000,0.250000,0,0);}
.mf_c00357{transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);}
.m0_c00357{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c00357{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);}
.m12_c00357{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_c00357{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00357{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);}
.me_c00357{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4_c00357{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md_c00357{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m7_c00357{transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);}
.v1_c00357{vertical-align:-3.420000px;}
.v0_c00357{vertical-align:0.000000px;}
.ls1_c00357{letter-spacing:0.000000px;}
.ls0_c00357{letter-spacing:36.202740px;}
.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:3.456000px;}
.fsd_c00357{font-size:6.900000px;}
.fs3_c00357{font-size:10.380000px;}
.fs0_c00357{font-size:13.800000px;}
.fs4_c00357{font-size:17.280000px;}
.fs5_c00357{font-size:24.180000px;}
.fs6_c00357{font-size:27.660000px;}
.fs1_c00357{font-size:31.080000px;}
.fsb_c00357{font-size:41.460000px;}
.fsa_c00357{font-size:65.640000px;}
.fs10_c00357{font-size:72.600000px;}
.fs8_c00357{font-size:76.020000px;}
.fsc_c00357{font-size:103.680000px;}
.fs7_c00357{font-size:124.440000px;}
.fs9_c00357{font-size:131.340000px;}
.fsf_c00357{font-size:207.360000px;}
.fse_c00357{font-size:352.500000px;}
.y0_c00357{bottom:0.000000px;}
.y12_c00357{bottom:74.310000px;}
.y13_c00357{bottom:76.035000px;}
.y11_c00357{bottom:181.440000px;}
.y10_c00357{bottom:263.520000px;}
.yf_c00357{bottom:293.760000px;}
.yd_c00357{bottom:305.850000px;}
.ye_c00357{bottom:311.910000px;}
.yc_c00357{bottom:362.880000px;}
.yb_c00357{bottom:384.480000px;}
.ya_c00357{bottom:393.990000px;}
.y9_c00357{bottom:418.170000px;}
.y8_c00357{bottom:461.370000px;}
.y7_c00357{bottom:500.250000px;}
.y6_c00357{bottom:508.035000px;}
.y5_c00357{bottom:515.805000px;}
.y18_c00357{bottom:873.510000px;}
.y4_c00357{bottom:1243.290000px;}
.y2_c00357{bottom:1247.610000px;}
.y3_c00357{bottom:1248.480000px;}
.y1_c00357{bottom:1256.250000px;}
.y17_c00357{bottom:1288.230000px;}
.y15_c00357{bottom:1315.875000px;}
.y16_c00357{bottom:1363.395000px;}
.y14_c00357{bottom:1367.715000px;}
.h4_c00357{height:3.110063px;}
.hf_c00357{height:6.209326px;}
.h5_c00357{height:9.340986px;}
.h2_c00357{height:12.418652px;}
.h6_c00357{height:15.550313px;}
.h7_c00357{height:21.759639px;}
.h8_c00357{height:24.891299px;}
.h3_c00357{height:27.968965px;}
.hd_c00357{height:37.309951px;}
.hc_c00357{height:59.069590px;}
.h12_c00357{height:65.332910px;}
.ha_c00357{height:68.410576px;}
.he_c00357{height:93.301875px;}
.h9_c00357{height:111.983848px;}
.hb_c00357{height:118.193174px;}
.h11_c00357{height:186.603750px;}
.h10_c00357{height:317.215576px;}
.h1_c00357{height:1507.500000px;}
.h0_c00357{height:1507.680000px;}
.w0_c00357{width:1111.965000px;}
.w1_c00357{width:1112.250000px;}
.x0_c00357{left:0.000000px;}
.x1_c00357{left:8.640000px;}
.x3_c00357{left:10.365000px;}
.xb_c00357{left:12.090000px;}
.x2_c00357{left:22.470000px;}
.x6_c00357{left:43.200000px;}
.xa_c00357{left:92.445000px;}
.xc_c00357{left:102.810000px;}
.x7_c00357{left:104.550000px;}
.x4_c00357{left:106.275000px;}
.x8_c00357{left:108.000000px;}
.x9_c00357{left:115.770000px;}
.xd_c00357{left:129.600000px;}
.x5_c00357{left:146.880000px;}
@media print{
.v1_c00357{vertical-align:-3.040000pt;}
.v0_c00357{vertical-align:0.000000pt;}
.ls1_c00357{letter-spacing:0.000000pt;}
.ls0_c00357{letter-spacing:32.180213pt;}
.ws0_c00357{word-spacing:0.000000pt;}
.fs2_c00357{font-size:3.072000pt;}
.fsd_c00357{font-size:6.133333pt;}
.fs3_c00357{font-size:9.226667pt;}
.fs0_c00357{font-size:12.266667pt;}
.fs4_c00357{font-size:15.360000pt;}
.fs5_c00357{font-size:21.493333pt;}
.fs6_c00357{font-size:24.586667pt;}
.fs1_c00357{font-size:27.626667pt;}
.fsb_c00357{font-size:36.853333pt;}
.fsa_c00357{font-size:58.346667pt;}
.fs10_c00357{font-size:64.533333pt;}
.fs8_c00357{font-size:67.573333pt;}
.fsc_c00357{font-size:92.160000pt;}
.fs7_c00357{font-size:110.613333pt;}
.fs9_c00357{font-size:116.746667pt;}
.fsf_c00357{font-size:184.320000pt;}
.fse_c00357{font-size:313.333333pt;}
.y0_c00357{bottom:0.000000pt;}
.y12_c00357{bottom:66.053333pt;}
.y13_c00357{bottom:67.586667pt;}
.y11_c00357{bottom:161.280000pt;}
.y10_c00357{bottom:234.240000pt;}
.yf_c00357{bottom:261.120000pt;}
.yd_c00357{bottom:271.866667pt;}
.ye_c00357{bottom:277.253333pt;}
.yc_c00357{bottom:322.560000pt;}
.yb_c00357{bottom:341.760000pt;}
.ya_c00357{bottom:350.213333pt;}
.y9_c00357{bottom:371.706667pt;}
.y8_c00357{bottom:410.106667pt;}
.y7_c00357{bottom:444.666667pt;}
.y6_c00357{bottom:451.586667pt;}
.y5_c00357{bottom:458.493333pt;}
.y18_c00357{bottom:776.453333pt;}
.y4_c00357{bottom:1105.146667pt;}
.y2_c00357{bottom:1108.986667pt;}
.y3_c00357{bottom:1109.760000pt;}
.y1_c00357{bottom:1116.666667pt;}
.y17_c00357{bottom:1145.093333pt;}
.y15_c00357{bottom:1169.666667pt;}
.y16_c00357{bottom:1211.906667pt;}
.y14_c00357{bottom:1215.746667pt;}
.h4_c00357{height:2.764500pt;}
.hf_c00357{height:5.519401pt;}
.h5_c00357{height:8.303099pt;}
.h2_c00357{height:11.038802pt;}
.h6_c00357{height:13.822500pt;}
.h7_c00357{height:19.341901pt;}
.h8_c00357{height:22.125599pt;}
.h3_c00357{height:24.861302pt;}
.hd_c00357{height:33.164401pt;}
.hc_c00357{height:52.506302pt;}
.h12_c00357{height:58.073698pt;}
.ha_c00357{height:60.809401pt;}
.he_c00357{height:82.935000pt;}
.h9_c00357{height:99.541198pt;}
.hb_c00357{height:105.060599pt;}
.h11_c00357{height:165.870000pt;}
.h10_c00357{height:281.969401pt;}
.h1_c00357{height:1340.000000pt;}
.h0_c00357{height:1340.160000pt;}
.w0_c00357{width:988.413333pt;}
.w1_c00357{width:988.666667pt;}
.x0_c00357{left:0.000000pt;}
.x1_c00357{left:7.680000pt;}
.x3_c00357{left:9.213333pt;}
.xb_c00357{left:10.746667pt;}
.x2_c00357{left:19.973333pt;}
.x6_c00357{left:38.400000pt;}
.xa_c00357{left:82.173333pt;}
.xc_c00357{left:91.386667pt;}
.x7_c00357{left:92.933333pt;}
.x4_c00357{left:94.466667pt;}
.x8_c00357{left:96.000000pt;}
.x9_c00357{left:102.906667pt;}
.xd_c00357{left:115.200000pt;}
.x5_c00357{left:130.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_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_750432d20b88d56a88ac515c.woff2')format("woff");}.ff1_c00358{font-family:ff1_c00358;line-height:1.109863;font-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_c00358{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c00358{transform:matrix(0.025075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025075,0.000000,0.000000,0.250000,0,0);}
.m4_c00358{transform:matrix(0.026450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026450,0.000000,0.000000,0.250000,0,0);}
.ma_c00358{transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);}
.m6_c00358{transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);}
.m3_c00358{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_c00358{transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);}
.m5_c00358{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00358{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00358{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);}
.m1_c00358{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,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;}
.fc0_c00358{color:transparent;}
.fs2_c00358{font-size:6.900000px;}
.fs0_c00358{font-size:10.380000px;}
.fs9_c00358{font-size:17.280000px;}
.fs1_c00358{font-size:31.080000px;}
.fs3_c00358{font-size:51.840000px;}
.fs4_c00358{font-size:58.740000px;}
.fs6_c00358{font-size:69.120000px;}
.fs5_c00358{font-size:86.400000px;}
.fs8_c00358{font-size:89.880000px;}
.fs7_c00358{font-size:124.440000px;}
.y0_c00358{bottom:0.000000px;}
.yf_c00358{bottom:609.990000px;}
.ye_c00358{bottom:616.890000px;}
.yd_c00358{bottom:617.760000px;}
.yc_c00358{bottom:623.805000px;}
.yb_c00358{bottom:684.285000px;}
.ya_c00358{bottom:1032.480000px;}
.y9_c00358{bottom:1067.910000px;}
.y2_c00358{bottom:1069.635000px;}
.y3_c00358{bottom:1075.680000px;}
.y8_c00358{bottom:1226.880000px;}
.y6_c00358{bottom:1249.350000px;}
.y7_c00358{bottom:1263.165000px;}
.y4_c00358{bottom:1264.890000px;}
.y5_c00358{bottom:1267.485000px;}
.y1_c00358{bottom:1449.795000px;}
.h4_c00358{height:6.209326px;}
.h2_c00358{height:9.340986px;}
.hb_c00358{height:15.550313px;}
.h3_c00358{height:27.968965px;}
.h5_c00358{height:46.650937px;}
.h6_c00358{height:52.860264px;}
.h8_c00358{height:62.201250px;}
.h7_c00358{height:77.751563px;}
.ha_c00358{height:80.883223px;}
.h9_c00358{height:111.983848px;}
.h0_c00358{height:1526.685000px;}
.h1_c00358{height:1527.000000px;}
.w0_c00358{width:1100.730000px;}
.w1_c00358{width:1101.000000px;}
.x0_c00358{left:0.000000px;}
.x4_c00358{left:992.730000px;}
.x7_c00358{left:994.470000px;}
.x5_c00358{left:998.790000px;}
.x9_c00358{left:1003.110000px;}
.x6_c00358{left:1009.155000px;}
.x8_c00358{left:1049.760000px;}
.x2_c00358{left:1054.080000px;}
.x3_c00358{left:1071.360000px;}
.x1_c00358{left:1090.365000px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls0_c00358{letter-spacing:0.000000pt;}
.ws0_c00358{word-spacing:0.000000pt;}
.fs2_c00358{font-size:6.133333pt;}
.fs0_c00358{font-size:9.226667pt;}
.fs9_c00358{font-size:15.360000pt;}
.fs1_c00358{font-size:27.626667pt;}
.fs3_c00358{font-size:46.080000pt;}
.fs4_c00358{font-size:52.213333pt;}
.fs6_c00358{font-size:61.440000pt;}
.fs5_c00358{font-size:76.800000pt;}
.fs8_c00358{font-size:79.893333pt;}
.fs7_c00358{font-size:110.613333pt;}
.y0_c00358{bottom:0.000000pt;}
.yf_c00358{bottom:542.213333pt;}
.ye_c00358{bottom:548.346667pt;}
.yd_c00358{bottom:549.120000pt;}
.yc_c00358{bottom:554.493333pt;}
.yb_c00358{bottom:608.253333pt;}
.ya_c00358{bottom:917.760000pt;}
.y9_c00358{bottom:949.253333pt;}
.y2_c00358{bottom:950.786667pt;}
.y3_c00358{bottom:956.160000pt;}
.y8_c00358{bottom:1090.560000pt;}
.y6_c00358{bottom:1110.533333pt;}
.y7_c00358{bottom:1122.813333pt;}
.y4_c00358{bottom:1124.346667pt;}
.y5_c00358{bottom:1126.653333pt;}
.y1_c00358{bottom:1288.706667pt;}
.h4_c00358{height:5.519401pt;}
.h2_c00358{height:8.303099pt;}
.hb_c00358{height:13.822500pt;}
.h3_c00358{height:24.861302pt;}
.h5_c00358{height:41.467500pt;}
.h6_c00358{height:46.986901pt;}
.h8_c00358{height:55.290000pt;}
.h7_c00358{height:69.112500pt;}
.ha_c00358{height:71.896198pt;}
.h9_c00358{height:99.541198pt;}
.h0_c00358{height:1357.053333pt;}
.h1_c00358{height:1357.333333pt;}
.w0_c00358{width:978.426667pt;}
.w1_c00358{width:978.666667pt;}
.x0_c00358{left:0.000000pt;}
.x4_c00358{left:882.426667pt;}
.x7_c00358{left:883.973333pt;}
.x5_c00358{left:887.813333pt;}
.x9_c00358{left:891.653333pt;}
.x6_c00358{left:897.026667pt;}
.x8_c00358{left:933.120000pt;}
.x2_c00358{left:936.960000pt;}
.x3_c00358{left:952.320000pt;}
.x1_c00358{left:969.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0705ab1235969fec3467f90.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:1.109863;font-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_c00359{transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);}
.m1_c00359{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m39_c00359{transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);}
.m2c_c00359{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);}
.m1d_c00359{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);}
.m4_c00359{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);}
.m6_c00359{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);}
.m29_c00359{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.m26_c00359{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m31_c00359{transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);}
.m11_c00359{transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);}
.m38_c00359{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m23_c00359{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m18_c00359{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m36_c00359{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.mc_c00359{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);}
.m34_c00359{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);}
.m2b_c00359{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);}
.m13_c00359{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);}
.ma_c00359{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m22_c00359{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c00359{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c00359{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m32_c00359{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00359{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);}
.m15_c00359{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00359{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);}
.m1a_c00359{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m30_c00359{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_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);}
.m7_c00359{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c00359{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00359{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00359{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00359{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c00359{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);}
.m14_c00359{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c00359{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m20_c00359{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m16_c00359{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);}
.m1c_c00359{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m10_c00359{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m12_c00359{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);}
.mb_c00359{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);}
.md_c00359{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2_c00359{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m33_c00359{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m27_c00359{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);}
.m35_c00359{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m28_c00359{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);}
.m37_c00359{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m25_c00359{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5_c00359{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m24_c00359{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m3_c00359{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);}
.m1e_c00359{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00359{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m0_c00359{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00359{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.v1_c00359{vertical-align:3.480000px;}
.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:-13.852020px;}
.ws1_c00359{word-spacing:0.000000px;}
.fc0_c00359{color:transparent;}
.fs9_c00359{font-size:3.456000px;}
.fs1_c00359{font-size:6.000000px;}
.fs3_c00359{font-size:6.900000px;}
.fs2_c00359{font-size:10.380000px;}
.fs4_c00359{font-size:17.280000px;}
.fs10_c00359{font-size:20.760000px;}
.fs12_c00359{font-size:24.180000px;}
.fs0_c00359{font-size:27.660000px;}
.fs8_c00359{font-size:31.080000px;}
.fs5_c00359{font-size:34.560000px;}
.fsa_c00359{font-size:38.040000px;}
.fs7_c00359{font-size:41.460000px;}
.fse_c00359{font-size:44.940000px;}
.fs14_c00359{font-size:48.360000px;}
.fsc_c00359{font-size:51.840000px;}
.fsd_c00359{font-size:55.320000px;}
.fsb_c00359{font-size:58.740000px;}
.fs6_c00359{font-size:62.220000px;}
.fs13_c00359{font-size:69.120000px;}
.fs11_c00359{font-size:72.600000px;}
.fsf_c00359{font-size:76.020000px;}
.fs15_c00359{font-size:89.880000px;}
.y0_c00359{bottom:0.000000px;}
.y39_c00359{bottom:578.880000px;}
.y38_c00359{bottom:580.605000px;}
.y37_c00359{bottom:581.475000px;}
.y36_c00359{bottom:582.330000px;}
.y3a_c00359{bottom:583.200000px;}
.y3b_c00359{bottom:584.925000px;}
.y35_c00359{bottom:598.755000px;}
.y32_c00359{bottom:599.610000px;}
.y31_c00359{bottom:601.350000px;}
.y33_c00359{bottom:603.075000px;}
.y34_c00359{bottom:603.930000px;}
.y2e_c00359{bottom:622.080000px;}
.y2c_c00359{bottom:622.950000px;}
.y2d_c00359{bottom:623.805000px;}
.y30_c00359{bottom:624.675000px;}
.y2f_c00359{bottom:632.445000px;}
.y2b_c00359{bottom:639.360000px;}
.y28_c00359{bottom:643.680000px;}
.y29_c00359{bottom:644.550000px;}
.y2a_c00359{bottom:645.405000px;}
.y22_c00359{bottom:658.365000px;}
.y24_c00359{bottom:660.090000px;}
.y25_c00359{bottom:660.960000px;}
.y26_c00359{bottom:663.555000px;}
.y23_c00359{bottom:664.410000px;}
.y27_c00359{bottom:665.280000px;}
.y1d_c00359{bottom:680.835000px;}
.y20_c00359{bottom:681.690000px;}
.y1e_c00359{bottom:682.560000px;}
.y21_c00359{bottom:684.285000px;}
.y1f_c00359{bottom:685.155000px;}
.y19_c00359{bottom:698.115000px;}
.y1c_c00359{bottom:698.970000px;}
.y1a_c00359{bottom:704.160000px;}
.y1b_c00359{bottom:705.030000px;}
.y16_c00359{bottom:719.715000px;}
.y17_c00359{bottom:720.570000px;}
.y15_c00359{bottom:724.035000px;}
.y18_c00359{bottom:733.530000px;}
.y13_c00359{bottom:743.910000px;}
.y14_c00359{bottom:744.765000px;}
.y12_c00359{bottom:747.360000px;}
.y11_c00359{bottom:762.045000px;}
.y10_c00359{bottom:763.770000px;}
.yf_c00359{bottom:764.640000px;}
.yb_c00359{bottom:781.050000px;}
.yd_c00359{bottom:782.790000px;}
.ye_c00359{bottom:783.645000px;}
.yc_c00359{bottom:784.515000px;}
.y9_c00359{bottom:808.710000px;}
.ya_c00359{bottom:815.610000px;}
.y8_c00359{bottom:836.355000px;}
.y6_c00359{bottom:837.210000px;}
.y7_c00359{bottom:848.445000px;}
.y5_c00359{bottom:853.635000px;}
.y4_c00359{bottom:883.875000px;}
.y3_c00359{bottom:884.730000px;}
.y1_c00359{bottom:1058.400000px;}
.y2_c00359{bottom:1064.445000px;}
.hb_c00359{height:3.110063px;}
.h3_c00359{height:5.399414px;}
.h5_c00359{height:6.209326px;}
.h4_c00359{height:9.340986px;}
.h6_c00359{height:15.550313px;}
.h12_c00359{height:18.681973px;}
.h14_c00359{height:21.759639px;}
.h2_c00359{height:24.891299px;}
.ha_c00359{height:27.968965px;}
.h7_c00359{height:31.100625px;}
.hc_c00359{height:34.232285px;}
.h9_c00359{height:37.309951px;}
.h10_c00359{height:40.441611px;}
.h16_c00359{height:43.519277px;}
.he_c00359{height:46.650937px;}
.hf_c00359{height:49.782598px;}
.hd_c00359{height:52.860264px;}
.h8_c00359{height:55.991924px;}
.h15_c00359{height:62.201250px;}
.h13_c00359{height:65.332910px;}
.h11_c00359{height:68.410576px;}
.h17_c00359{height:80.883223px;}
.h1_c00359{height:1507.500000px;}
.h0_c00359{height:1507.680000px;}
.w0_c00359{width:1111.965000px;}
.w1_c00359{width:1112.250000px;}
.x0_c00359{left:0.000000px;}
.x1_c00359{left:167.610000px;}
.x2_c00359{left:175.395000px;}
.x3_c00359{left:184.890360px;}
.x4_c00359{left:189.210000px;}
.x5_c00359{left:203.040000px;}
.x7_c00359{left:313.635000px;}
.x6_c00359{left:353.370000px;}
.x9_c00359{left:450.150000px;}
.x8_c00359{left:468.285000px;}
.xc_c00359{left:582.330000px;}
.x3c_c00359{left:584.070000px;}
.x23_c00359{left:597.885000px;}
.x39_c00359{left:615.165000px;}
.x33_c00359{left:622.080000px;}
.x3a_c00359{left:626.400000px;}
.x36_c00359{left:641.955000px;}
.x2d_c00359{left:646.275000px;}
.x27_c00359{left:654.915000px;}
.x1a_c00359{left:672.195000px;}
.xd_c00359{left:681.690000px;}
.x28_c00359{left:685.155000px;}
.xa_c00359{left:692.925000px;}
.x34_c00359{left:696.390000px;}
.x1e_c00359{left:701.565000px;}
.x2e_c00359{left:703.290000px;}
.xb_c00359{left:705.030000px;}
.xe_c00359{left:708.480000px;}
.x37_c00359{left:710.205000px;}
.x3d_c00359{left:717.120000px;}
.x17_c00359{left:719.715000px;}
.x1b_c00359{left:722.310000px;}
.xf_c00359{left:724.890000px;}
.x1c_c00359{left:730.080000px;}
.x24_c00359{left:736.125000px;}
.x10_c00359{left:738.720000px;}
.x11_c00359{left:753.405000px;}
.x2f_c00359{left:756.870000px;}
.x29_c00359{left:763.770000px;}
.x35_c00359{left:766.365000px;}
.x12_c00359{left:769.830000px;}
.x25_c00359{left:775.005000px;}
.x2a_c00359{left:778.470000px;}
.x13_c00359{left:783.645000px;}
.x18_c00359{left:786.240000px;}
.x38_c00359{left:789.690000px;}
.x14_c00359{left:794.880000px;}
.x1f_c00359{left:800.070000px;}
.x1d_c00359{left:803.520000px;}
.x20_c00359{left:808.710000px;}
.x2b_c00359{left:813.030000px;}
.x30_c00359{left:815.610000px;}
.x15_c00359{left:825.120000px;}
.x31_c00359{left:829.440000px;}
.x26_c00359{left:832.035000px;}
.x21_c00359{left:839.805000px;}
.x19_c00359{left:841.530000px;}
.x3b_c00359{left:844.995000px;}
.x2c_c00359{left:848.445000px;}
.x32_c00359{left:853.635000px;}
.x16_c00359{left:859.680000px;}
.x3e_c00359{left:863.130000px;}
.x22_c00359{left:874.365000px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.v1_c00359{vertical-align:3.093333pt;}
.ls0_c00359{letter-spacing:0.000000pt;}
.ws0_c00359{word-spacing:-12.312907pt;}
.ws1_c00359{word-spacing:0.000000pt;}
.fs9_c00359{font-size:3.072000pt;}
.fs1_c00359{font-size:5.333333pt;}
.fs3_c00359{font-size:6.133333pt;}
.fs2_c00359{font-size:9.226667pt;}
.fs4_c00359{font-size:15.360000pt;}
.fs10_c00359{font-size:18.453333pt;}
.fs12_c00359{font-size:21.493333pt;}
.fs0_c00359{font-size:24.586667pt;}
.fs8_c00359{font-size:27.626667pt;}
.fs5_c00359{font-size:30.720000pt;}
.fsa_c00359{font-size:33.813333pt;}
.fs7_c00359{font-size:36.853333pt;}
.fse_c00359{font-size:39.946667pt;}
.fs14_c00359{font-size:42.986667pt;}
.fsc_c00359{font-size:46.080000pt;}
.fsd_c00359{font-size:49.173333pt;}
.fsb_c00359{font-size:52.213333pt;}
.fs6_c00359{font-size:55.306667pt;}
.fs13_c00359{font-size:61.440000pt;}
.fs11_c00359{font-size:64.533333pt;}
.fsf_c00359{font-size:67.573333pt;}
.fs15_c00359{font-size:79.893333pt;}
.y0_c00359{bottom:0.000000pt;}
.y39_c00359{bottom:514.560000pt;}
.y38_c00359{bottom:516.093333pt;}
.y37_c00359{bottom:516.866667pt;}
.y36_c00359{bottom:517.626667pt;}
.y3a_c00359{bottom:518.400000pt;}
.y3b_c00359{bottom:519.933333pt;}
.y35_c00359{bottom:532.226667pt;}
.y32_c00359{bottom:532.986667pt;}
.y31_c00359{bottom:534.533333pt;}
.y33_c00359{bottom:536.066667pt;}
.y34_c00359{bottom:536.826667pt;}
.y2e_c00359{bottom:552.960000pt;}
.y2c_c00359{bottom:553.733333pt;}
.y2d_c00359{bottom:554.493333pt;}
.y30_c00359{bottom:555.266667pt;}
.y2f_c00359{bottom:562.173333pt;}
.y2b_c00359{bottom:568.320000pt;}
.y28_c00359{bottom:572.160000pt;}
.y29_c00359{bottom:572.933333pt;}
.y2a_c00359{bottom:573.693333pt;}
.y22_c00359{bottom:585.213333pt;}
.y24_c00359{bottom:586.746667pt;}
.y25_c00359{bottom:587.520000pt;}
.y26_c00359{bottom:589.826667pt;}
.y23_c00359{bottom:590.586667pt;}
.y27_c00359{bottom:591.360000pt;}
.y1d_c00359{bottom:605.186667pt;}
.y20_c00359{bottom:605.946667pt;}
.y1e_c00359{bottom:606.720000pt;}
.y21_c00359{bottom:608.253333pt;}
.y1f_c00359{bottom:609.026667pt;}
.y19_c00359{bottom:620.546667pt;}
.y1c_c00359{bottom:621.306667pt;}
.y1a_c00359{bottom:625.920000pt;}
.y1b_c00359{bottom:626.693333pt;}
.y16_c00359{bottom:639.746667pt;}
.y17_c00359{bottom:640.506667pt;}
.y15_c00359{bottom:643.586667pt;}
.y18_c00359{bottom:652.026667pt;}
.y13_c00359{bottom:661.253333pt;}
.y14_c00359{bottom:662.013333pt;}
.y12_c00359{bottom:664.320000pt;}
.y11_c00359{bottom:677.373333pt;}
.y10_c00359{bottom:678.906667pt;}
.yf_c00359{bottom:679.680000pt;}
.yb_c00359{bottom:694.266667pt;}
.yd_c00359{bottom:695.813333pt;}
.ye_c00359{bottom:696.573333pt;}
.yc_c00359{bottom:697.346667pt;}
.y9_c00359{bottom:718.853333pt;}
.ya_c00359{bottom:724.986667pt;}
.y8_c00359{bottom:743.426667pt;}
.y6_c00359{bottom:744.186667pt;}
.y7_c00359{bottom:754.173333pt;}
.y5_c00359{bottom:758.786667pt;}
.y4_c00359{bottom:785.666667pt;}
.y3_c00359{bottom:786.426667pt;}
.y1_c00359{bottom:940.800000pt;}
.y2_c00359{bottom:946.173333pt;}
.hb_c00359{height:2.764500pt;}
.h3_c00359{height:4.799479pt;}
.h5_c00359{height:5.519401pt;}
.h4_c00359{height:8.303099pt;}
.h6_c00359{height:13.822500pt;}
.h12_c00359{height:16.606198pt;}
.h14_c00359{height:19.341901pt;}
.h2_c00359{height:22.125599pt;}
.ha_c00359{height:24.861302pt;}
.h7_c00359{height:27.645000pt;}
.hc_c00359{height:30.428698pt;}
.h9_c00359{height:33.164401pt;}
.h10_c00359{height:35.948099pt;}
.h16_c00359{height:38.683802pt;}
.he_c00359{height:41.467500pt;}
.hf_c00359{height:44.251198pt;}
.hd_c00359{height:46.986901pt;}
.h8_c00359{height:49.770599pt;}
.h15_c00359{height:55.290000pt;}
.h13_c00359{height:58.073698pt;}
.h11_c00359{height:60.809401pt;}
.h17_c00359{height:71.896198pt;}
.h1_c00359{height:1340.000000pt;}
.h0_c00359{height:1340.160000pt;}
.w0_c00359{width:988.413333pt;}
.w1_c00359{width:988.666667pt;}
.x0_c00359{left:0.000000pt;}
.x1_c00359{left:148.986667pt;}
.x2_c00359{left:155.906667pt;}
.x3_c00359{left:164.346987pt;}
.x4_c00359{left:168.186667pt;}
.x5_c00359{left:180.480000pt;}
.x7_c00359{left:278.786667pt;}
.x6_c00359{left:314.106667pt;}
.x9_c00359{left:400.133333pt;}
.x8_c00359{left:416.253333pt;}
.xc_c00359{left:517.626667pt;}
.x3c_c00359{left:519.173333pt;}
.x23_c00359{left:531.453333pt;}
.x39_c00359{left:546.813333pt;}
.x33_c00359{left:552.960000pt;}
.x3a_c00359{left:556.800000pt;}
.x36_c00359{left:570.626667pt;}
.x2d_c00359{left:574.466667pt;}
.x27_c00359{left:582.146667pt;}
.x1a_c00359{left:597.506667pt;}
.xd_c00359{left:605.946667pt;}
.x28_c00359{left:609.026667pt;}
.xa_c00359{left:615.933333pt;}
.x34_c00359{left:619.013333pt;}
.x1e_c00359{left:623.613333pt;}
.x2e_c00359{left:625.146667pt;}
.xb_c00359{left:626.693333pt;}
.xe_c00359{left:629.760000pt;}
.x37_c00359{left:631.293333pt;}
.x3d_c00359{left:637.440000pt;}
.x17_c00359{left:639.746667pt;}
.x1b_c00359{left:642.053333pt;}
.xf_c00359{left:644.346667pt;}
.x1c_c00359{left:648.960000pt;}
.x24_c00359{left:654.333333pt;}
.x10_c00359{left:656.640000pt;}
.x11_c00359{left:669.693333pt;}
.x2f_c00359{left:672.773333pt;}
.x29_c00359{left:678.906667pt;}
.x35_c00359{left:681.213333pt;}
.x12_c00359{left:684.293333pt;}
.x25_c00359{left:688.893333pt;}
.x2a_c00359{left:691.973333pt;}
.x13_c00359{left:696.573333pt;}
.x18_c00359{left:698.880000pt;}
.x38_c00359{left:701.946667pt;}
.x14_c00359{left:706.560000pt;}
.x1f_c00359{left:711.173333pt;}
.x1d_c00359{left:714.240000pt;}
.x20_c00359{left:718.853333pt;}
.x2b_c00359{left:722.693333pt;}
.x30_c00359{left:724.986667pt;}
.x15_c00359{left:733.440000pt;}
.x31_c00359{left:737.280000pt;}
.x26_c00359{left:739.586667pt;}
.x21_c00359{left:746.493333pt;}
.x19_c00359{left:748.026667pt;}
.x3b_c00359{left:751.106667pt;}
.x2c_c00359{left:754.173333pt;}
.x32_c00359{left:758.786667pt;}
.x16_c00359{left:764.160000pt;}
.x3e_c00359{left:767.226667pt;}
.x22_c00359{left:777.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75d31718c34968139e5ee1cb.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.109863;font-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_c00360{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);}
.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;}
.fc0_c00360{color:transparent;}
.fs0_c00360{font-size:600.000000px;}
.y0_c00360{bottom:0.000000px;}
.y1_c00360{bottom:15.000000px;}
.h2_c00360{height:539.941406px;}
.h0_c00360{height:1526.685000px;}
.h1_c00360{height:1527.000000px;}
.w0_c00360{width:1100.730000px;}
.w1_c00360{width:1101.000000px;}
.x0_c00360{left:0.000000px;}
.x1_c00360{left:15.000000px;}
@media print{
.v0_c00360{vertical-align:0.000000pt;}
.ls0_c00360{letter-spacing:0.000000pt;}
.ws0_c00360{word-spacing:0.000000pt;}
.fs0_c00360{font-size:533.333333pt;}
.y0_c00360{bottom:0.000000pt;}
.y1_c00360{bottom:13.333333pt;}
.h2_c00360{height:479.947917pt;}
.h0_c00360{height:1357.053333pt;}
.h1_c00360{height:1357.333333pt;}
.w0_c00360{width:978.426667pt;}
.w1_c00360{width:978.666667pt;}
.x0_c00360{left:0.000000pt;}
.x1_c00360{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be450090da48c5e9900278a9.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:1.109863;font-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_c00361{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c00361{transform:matrix(0.033325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033325,0.000000,0.000000,0.250000,0,0);}
.m3_c00361{transform:matrix(0.039250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039250,0.000000,0.000000,0.250000,0,0);}
.ma_c00361{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m0_c00361{transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);}
.m1_c00361{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf_c00361{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.mc_c00361{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);}
.m4_c00361{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00361{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);}
.me_c00361{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);}
.m11_c00361{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);}
.m7_c00361{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m6_c00361{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mb_c00361{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5_c00361{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);}
.m9_c00361{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m10_c00361{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.v0_c00361{vertical-align:0.000000px;}
.v1_c00361{vertical-align:6.960000px;}
.ls1_c00361{letter-spacing:0.000000px;}
.ls0_c00361{letter-spacing:116.177400px;}
.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;}
.fs9_c00361{font-size:3.456000px;}
.fs3_c00361{font-size:6.000000px;}
.fs1_c00361{font-size:6.900000px;}
.fs5_c00361{font-size:10.380000px;}
.fs6_c00361{font-size:13.800000px;}
.fs8_c00361{font-size:17.280000px;}
.fsc_c00361{font-size:20.760000px;}
.fs0_c00361{font-size:24.180000px;}
.fs7_c00361{font-size:27.660000px;}
.fsb_c00361{font-size:34.560000px;}
.fsa_c00361{font-size:44.940000px;}
.fs2_c00361{font-size:51.840000px;}
.fs4_c00361{font-size:159.000000px;}
.y0_c00361{bottom:0.000000px;}
.y16_c00361{bottom:88.995000px;}
.y15_c00361{bottom:105.405000px;}
.y14_c00361{bottom:138.240000px;}
.y13_c00361{bottom:151.200000px;}
.y11_c00361{bottom:162.435000px;}
.y10_c00361{bottom:166.755000px;}
.y12_c00361{bottom:168.480000px;}
.yf_c00361{bottom:177.120000px;}
.ye_c00361{bottom:191.805000px;}
.yd_c00361{bottom:233.280000px;}
.yc_c00361{bottom:240.195000px;}
.yb_c00361{bottom:260.925000px;}
.ya_c00361{bottom:410.400000px;}
.y8_c00361{bottom:485.565000px;}
.y9_c00361{bottom:486.435000px;}
.y7_c00361{bottom:664.410000px;}
.y6_c00361{bottom:1012.605000px;}
.y5_c00361{bottom:1265.760000px;}
.y3_c00361{bottom:1307.235000px;}
.y4_c00361{bottom:1308.090000px;}
.y1_c00361{bottom:1346.970000px;}
.y2_c00361{bottom:1349.565000px;}
.hc_c00361{height:3.110063px;}
.h5_c00361{height:5.399414px;}
.h3_c00361{height:6.209326px;}
.h7_c00361{height:9.340986px;}
.hb_c00361{height:12.418652px;}
.ha_c00361{height:15.550313px;}
.h8_c00361{height:16.300986px;}
.hf_c00361{height:18.681973px;}
.h2_c00361{height:21.759639px;}
.h9_c00361{height:24.891299px;}
.he_c00361{height:31.100625px;}
.hd_c00361{height:40.441611px;}
.h4_c00361{height:46.650937px;}
.h6_c00361{height:143.084473px;}
.h1_c00361{height:1507.500000px;}
.h0_c00361{height:1507.680000px;}
.w0_c00361{width:1111.965000px;}
.w1_c00361{width:1112.250000px;}
.x0_c00361{left:0.000000px;}
.x9_c00361{left:11.235000px;}
.xa_c00361{left:26.790000px;}
.xb_c00361{left:37.155000px;}
.xc_c00361{left:41.475000px;}
.x5_c00361{left:43.200000px;}
.x7_c00361{left:46.650000px;}
.x8_c00361{left:53.565000px;}
.x3_c00361{left:104.550000px;}
.x6_c00361{left:107.129952px;}
.x1_c00361{left:110.595000px;}
.x4_c00361{left:118.365000px;}
.x2_c00361{left:126.150000px;}
.x13_c00361{left:221.190000px;}
.xf_c00361{left:257.475000px;}
.x16_c00361{left:260.925000px;}
.xd_c00361{left:282.525000px;}
.x10_c00361{left:710.205150px;}
.xe_c00361{left:851.910000px;}
.x11_c00361{left:882.150000px;}
.x14_c00361{left:884.730000px;}
.x15_c00361{left:892.515000px;}
.x12_c00361{left:901.155000px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.v1_c00361{vertical-align:6.186667pt;}
.ls1_c00361{letter-spacing:0.000000pt;}
.ls0_c00361{letter-spacing:103.268800pt;}
.ws0_c00361{word-spacing:0.000000pt;}
.fs9_c00361{font-size:3.072000pt;}
.fs3_c00361{font-size:5.333333pt;}
.fs1_c00361{font-size:6.133333pt;}
.fs5_c00361{font-size:9.226667pt;}
.fs6_c00361{font-size:12.266667pt;}
.fs8_c00361{font-size:15.360000pt;}
.fsc_c00361{font-size:18.453333pt;}
.fs0_c00361{font-size:21.493333pt;}
.fs7_c00361{font-size:24.586667pt;}
.fsb_c00361{font-size:30.720000pt;}
.fsa_c00361{font-size:39.946667pt;}
.fs2_c00361{font-size:46.080000pt;}
.fs4_c00361{font-size:141.333333pt;}
.y0_c00361{bottom:0.000000pt;}
.y16_c00361{bottom:79.106667pt;}
.y15_c00361{bottom:93.693333pt;}
.y14_c00361{bottom:122.880000pt;}
.y13_c00361{bottom:134.400000pt;}
.y11_c00361{bottom:144.386667pt;}
.y10_c00361{bottom:148.226667pt;}
.y12_c00361{bottom:149.760000pt;}
.yf_c00361{bottom:157.440000pt;}
.ye_c00361{bottom:170.493333pt;}
.yd_c00361{bottom:207.360000pt;}
.yc_c00361{bottom:213.506667pt;}
.yb_c00361{bottom:231.933333pt;}
.ya_c00361{bottom:364.800000pt;}
.y8_c00361{bottom:431.613333pt;}
.y9_c00361{bottom:432.386667pt;}
.y7_c00361{bottom:590.586667pt;}
.y6_c00361{bottom:900.093333pt;}
.y5_c00361{bottom:1125.120000pt;}
.y3_c00361{bottom:1161.986667pt;}
.y4_c00361{bottom:1162.746667pt;}
.y1_c00361{bottom:1197.306667pt;}
.y2_c00361{bottom:1199.613333pt;}
.hc_c00361{height:2.764500pt;}
.h5_c00361{height:4.799479pt;}
.h3_c00361{height:5.519401pt;}
.h7_c00361{height:8.303099pt;}
.hb_c00361{height:11.038802pt;}
.ha_c00361{height:13.822500pt;}
.h8_c00361{height:14.489766pt;}
.hf_c00361{height:16.606198pt;}
.h2_c00361{height:19.341901pt;}
.h9_c00361{height:22.125599pt;}
.he_c00361{height:27.645000pt;}
.hd_c00361{height:35.948099pt;}
.h4_c00361{height:41.467500pt;}
.h6_c00361{height:127.186198pt;}
.h1_c00361{height:1340.000000pt;}
.h0_c00361{height:1340.160000pt;}
.w0_c00361{width:988.413333pt;}
.w1_c00361{width:988.666667pt;}
.x0_c00361{left:0.000000pt;}
.x9_c00361{left:9.986667pt;}
.xa_c00361{left:23.813333pt;}
.xb_c00361{left:33.026667pt;}
.xc_c00361{left:36.866667pt;}
.x5_c00361{left:38.400000pt;}
.x7_c00361{left:41.466667pt;}
.x8_c00361{left:47.613333pt;}
.x3_c00361{left:92.933333pt;}
.x6_c00361{left:95.226624pt;}
.x1_c00361{left:98.306667pt;}
.x4_c00361{left:105.213333pt;}
.x2_c00361{left:112.133333pt;}
.x13_c00361{left:196.613333pt;}
.xf_c00361{left:228.866667pt;}
.x16_c00361{left:231.933333pt;}
.xd_c00361{left:251.133333pt;}
.x10_c00361{left:631.293467pt;}
.xe_c00361{left:757.253333pt;}
.x11_c00361{left:784.133333pt;}
.x14_c00361{left:786.426667pt;}
.x15_c00361{left:793.346667pt;}
.x12_c00361{left:801.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6a145cf9cd75d247ed891b7.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.109863;font-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_c00362{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);}
.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;}
.fc0_c00362{color:transparent;}
.fs0_c00362{font-size:600.000000px;}
.y0_c00362{bottom:0.000000px;}
.y1_c00362{bottom:15.000000px;}
.h2_c00362{height:539.941406px;}
.h0_c00362{height:1526.685000px;}
.h1_c00362{height:1527.000000px;}
.w0_c00362{width:1100.730000px;}
.w1_c00362{width:1101.000000px;}
.x0_c00362{left:0.000000px;}
.x1_c00362{left:15.000000px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls0_c00362{letter-spacing:0.000000pt;}
.ws0_c00362{word-spacing:0.000000pt;}
.fs0_c00362{font-size:533.333333pt;}
.y0_c00362{bottom:0.000000pt;}
.y1_c00362{bottom:13.333333pt;}
.h2_c00362{height:479.947917pt;}
.h0_c00362{height:1357.053333pt;}
.h1_c00362{height:1357.333333pt;}
.w0_c00362{width:978.426667pt;}
.w1_c00362{width:978.666667pt;}
.x0_c00362{left:0.000000pt;}
.x1_c00362{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0b4a599d56a5efd165c7dbf.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:1.109863;font-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_c00363{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);}
.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;}
.fs0_c00363{font-size:600.000000px;}
.y0_c00363{bottom:0.000000px;}
.y1_c00363{bottom:15.000000px;}
.h2_c00363{height:539.941406px;}
.h1_c00363{height:1507.500000px;}
.h0_c00363{height:1507.680000px;}
.w0_c00363{width:1111.965000px;}
.w1_c00363{width:1112.250000px;}
.x0_c00363{left:0.000000px;}
.x1_c00363{left:15.000000px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls0_c00363{letter-spacing:0.000000pt;}
.ws0_c00363{word-spacing:0.000000pt;}
.fs0_c00363{font-size:533.333333pt;}
.y0_c00363{bottom:0.000000pt;}
.y1_c00363{bottom:13.333333pt;}
.h2_c00363{height:479.947917pt;}
.h1_c00363{height:1340.000000pt;}
.h0_c00363{height:1340.160000pt;}
.w0_c00363{width:988.413333pt;}
.w1_c00363{width:988.666667pt;}
.x0_c00363{left:0.000000pt;}
.x1_c00363{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_763c3bc627461a9a5683909f.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.109863;font-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_c00364{transform:matrix(0.057250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057250,0.000000,0.000000,0.250000,0,0);}
.m4_c00364{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00364{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);}
.m0_c00364{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00364{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,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;}
.fc0_c00364{color:transparent;}
.fs4_c00364{font-size:3.456000px;}
.fs5_c00364{font-size:6.000000px;}
.fs3_c00364{font-size:17.280000px;}
.fs2_c00364{font-size:31.080000px;}
.fs0_c00364{font-size:44.940000px;}
.fs1_c00364{font-size:120.960000px;}
.y0_c00364{bottom:0.000000px;}
.y4_c00364{bottom:1078.275000px;}
.y6_c00364{bottom:1080.000000px;}
.y5_c00364{bottom:1082.595000px;}
.y3_c00364{bottom:1175.040000px;}
.y2_c00364{bottom:1183.680000px;}
.y1_c00364{bottom:1216.515000px;}
.h6_c00364{height:3.110063px;}
.h7_c00364{height:5.399414px;}
.h5_c00364{height:15.550313px;}
.h4_c00364{height:27.968965px;}
.h2_c00364{height:40.441611px;}
.h3_c00364{height:108.852188px;}
.h0_c00364{height:1526.685000px;}
.h1_c00364{height:1527.000000px;}
.w0_c00364{width:1100.730000px;}
.w1_c00364{width:1101.000000px;}
.x0_c00364{left:0.000000px;}
.x2_c00364{left:933.990000px;}
.x3_c00364{left:946.080000px;}
.x4_c00364{left:952.995456px;}
.x1_c00364{left:991.005000px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls0_c00364{letter-spacing:0.000000pt;}
.ws0_c00364{word-spacing:0.000000pt;}
.fs4_c00364{font-size:3.072000pt;}
.fs5_c00364{font-size:5.333333pt;}
.fs3_c00364{font-size:15.360000pt;}
.fs2_c00364{font-size:27.626667pt;}
.fs0_c00364{font-size:39.946667pt;}
.fs1_c00364{font-size:107.520000pt;}
.y0_c00364{bottom:0.000000pt;}
.y4_c00364{bottom:958.466667pt;}
.y6_c00364{bottom:960.000000pt;}
.y5_c00364{bottom:962.306667pt;}
.y3_c00364{bottom:1044.480000pt;}
.y2_c00364{bottom:1052.160000pt;}
.y1_c00364{bottom:1081.346667pt;}
.h6_c00364{height:2.764500pt;}
.h7_c00364{height:4.799479pt;}
.h5_c00364{height:13.822500pt;}
.h4_c00364{height:24.861302pt;}
.h2_c00364{height:35.948099pt;}
.h3_c00364{height:96.757500pt;}
.h0_c00364{height:1357.053333pt;}
.h1_c00364{height:1357.333333pt;}
.w0_c00364{width:978.426667pt;}
.w1_c00364{width:978.666667pt;}
.x0_c00364{left:0.000000pt;}
.x2_c00364{left:830.213333pt;}
.x3_c00364{left:840.960000pt;}
.x4_c00364{left:847.107072pt;}
.x1_c00364{left:880.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00365;src:url('chunks/assets/font_af6eb335c5b440cc0243b5a3.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:1.109863;font-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_c00365{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);}
.v0_c00365{vertical-align:0.000000px;}
.ls0_c00365{letter-spacing:0.000000px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00365{word-spacing:0.000000px;}
.fc0_c00365{color:transparent;}
.fs0_c00365{font-size:600.000000px;}
.y0_c00365{bottom:0.000000px;}
.y1_c00365{bottom:15.000000px;}
.h2_c00365{height:539.941406px;}
.h1_c00365{height:1507.500000px;}
.h0_c00365{height:1507.680000px;}
.w0_c00365{width:1111.965000px;}
.w1_c00365{width:1112.250000px;}
.x0_c00365{left:0.000000px;}
.x1_c00365{left:15.000000px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls0_c00365{letter-spacing:0.000000pt;}
.ws0_c00365{word-spacing:0.000000pt;}
.fs0_c00365{font-size:533.333333pt;}
.y0_c00365{bottom:0.000000pt;}
.y1_c00365{bottom:13.333333pt;}
.h2_c00365{height:479.947917pt;}
.h1_c00365{height:1340.000000pt;}
.h0_c00365{height:1340.160000pt;}
.w0_c00365{width:988.413333pt;}
.w1_c00365{width:988.666667pt;}
.x0_c00365{left:0.000000pt;}
.x1_c00365{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2ef6eb2eb1cc7a2bbbf11d4.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.109863;font-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_c00366{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me_c00366{transform:matrix(0.057350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057350,0.000000,0.000000,0.250000,0,0);}
.m14_c00366{transform:matrix(0.077225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077225,0.000000,0.000000,0.250000,0,0);}
.m9_c00366{transform:matrix(0.087350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087350,0.000000,0.000000,0.250000,0,0);}
.m2b_c00366{transform:matrix(0.101100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101100,0.000000,0.000000,0.250000,0,0);}
.m2e_c00366{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m34_c00366{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m29_c00366{transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);}
.m2f_c00366{transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);}
.m31_c00366{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m12_c00366{transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);}
.m0_c00366{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m24_c00366{transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);}
.m22_c00366{transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);}
.m21_c00366{transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);}
.m23_c00366{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);}
.m35_c00366{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);}
.m13_c00366{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.md_c00366{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);}
.m1d_c00366{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);}
.m32_c00366{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.mb_c00366{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);}
.m11_c00366{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);}
.m20_c00366{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);}
.m1e_c00366{transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);}
.m4_c00366{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m2d_c00366{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m30_c00366{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);}
.m2c_c00366{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);}
.m28_c00366{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);}
.m1_c00366{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);}
.m33_c00366{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);}
.mf_c00366{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);}
.m1f_c00366{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m25_c00366{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);}
.m26_c00366{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c00366{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00366{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c00366{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);}
.m10_c00366{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3_c00366{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00366{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m27_c00366{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m5_c00366{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m16_c00366{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c00366{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m17_c00366{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m7_c00366{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);}
.m2a_c00366{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m15_c00366{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00366{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m36_c00366{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.mc_c00366{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m19_c00366{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00366{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);}
.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;}
.fc0_c00366{color:transparent;}
.fsc_c00366{font-size:3.456000px;}
.fs1e_c00366{font-size:6.900000px;}
.fs8_c00366{font-size:10.380000px;}
.fs10_c00366{font-size:13.800000px;}
.fs13_c00366{font-size:17.280000px;}
.fs12_c00366{font-size:20.760000px;}
.fs0_c00366{font-size:27.660000px;}
.fs1d_c00366{font-size:31.080000px;}
.fs14_c00366{font-size:38.040000px;}
.fs11_c00366{font-size:44.940000px;}
.fs15_c00366{font-size:58.740000px;}
.fs5_c00366{font-size:65.640000px;}
.fsa_c00366{font-size:69.120000px;}
.fs7_c00366{font-size:72.600000px;}
.fs1c_c00366{font-size:76.020000px;}
.fs6_c00366{font-size:79.500000px;}
.fs3_c00366{font-size:86.400000px;}
.fs16_c00366{font-size:89.880000px;}
.fse_c00366{font-size:93.300000px;}
.fsd_c00366{font-size:96.780000px;}
.fs4_c00366{font-size:100.200000px;}
.fsb_c00366{font-size:103.680000px;}
.fs9_c00366{font-size:107.160000px;}
.fs1_c00366{font-size:110.580000px;}
.fs2_c00366{font-size:120.960000px;}
.fs1b_c00366{font-size:124.440000px;}
.fs1a_c00366{font-size:127.860000px;}
.fs17_c00366{font-size:138.240000px;}
.fsf_c00366{font-size:141.720000px;}
.fs18_c00366{font-size:148.620000px;}
.fs19_c00366{font-size:162.420000px;}
.y0_c00366{bottom:0.000000px;}
.y2a_c00366{bottom:674.790000px;}
.y2b_c00366{bottom:676.515000px;}
.y33_c00366{bottom:679.110000px;}
.y2f_c00366{bottom:680.835000px;}
.y29_c00366{bottom:683.430000px;}
.y31_c00366{bottom:689.475000px;}
.y30_c00366{bottom:691.200000px;}
.y2d_c00366{bottom:692.925000px;}
.y28_c00366{bottom:694.650000px;}
.y2e_c00366{bottom:696.390000px;}
.y2c_c00366{bottom:698.115000px;}
.y32_c00366{bottom:699.840000px;}
.y23_c00366{bottom:700.710000px;}
.y22_c00366{bottom:704.160000px;}
.y1e_c00366{bottom:706.755000px;}
.y1f_c00366{bottom:707.610000px;}
.y24_c00366{bottom:708.480000px;}
.y26_c00366{bottom:711.075000px;}
.y20_c00366{bottom:711.930000px;}
.y21_c00366{bottom:714.525000px;}
.y27_c00366{bottom:715.395000px;}
.y25_c00366{bottom:717.120000px;}
.y17_c00366{bottom:736.995000px;}
.y16_c00366{bottom:738.720000px;}
.y1d_c00366{bottom:742.170000px;}
.y1c_c00366{bottom:743.040000px;}
.y18_c00366{bottom:743.910000px;}
.y15_c00366{bottom:744.765000px;}
.y19_c00366{bottom:747.360000px;}
.y1b_c00366{bottom:749.955000px;}
.y1a_c00366{bottom:753.405000px;}
.y14_c00366{bottom:762.045000px;}
.y13_c00366{bottom:766.365000px;}
.y10_c00366{bottom:768.090000px;}
.y12_c00366{bottom:768.960000px;}
.y11_c00366{bottom:769.830000px;}
.yf_c00366{bottom:770.685000px;}
.y8_c00366{bottom:773.280000px;}
.yd_c00366{bottom:774.150000px;}
.ye_c00366{bottom:775.875000px;}
.yc_c00366{bottom:776.730000px;}
.ya_c00366{bottom:777.600000px;}
.y7_c00366{bottom:779.325000px;}
.y9_c00366{bottom:782.790000px;}
.yb_c00366{bottom:789.690000px;}
.y6_c00366{bottom:798.330000px;}
.y4_c00366{bottom:809.565000px;}
.y2_c00366{bottom:810.435000px;}
.y5_c00366{bottom:811.290000px;}
.y3_c00366{bottom:813.030000px;}
.y1_c00366{bottom:1171.590000px;}
.he_c00366{height:3.110063px;}
.h20_c00366{height:6.209326px;}
.ha_c00366{height:9.340986px;}
.h12_c00366{height:12.418652px;}
.h15_c00366{height:15.550313px;}
.h14_c00366{height:18.681973px;}
.h2_c00366{height:24.891299px;}
.h1f_c00366{height:27.968965px;}
.h16_c00366{height:34.232285px;}
.h13_c00366{height:40.441611px;}
.h17_c00366{height:52.860264px;}
.h7_c00366{height:59.069590px;}
.hc_c00366{height:62.201250px;}
.h9_c00366{height:65.332910px;}
.h1e_c00366{height:68.410576px;}
.h8_c00366{height:71.542236px;}
.h5_c00366{height:77.751563px;}
.h18_c00366{height:80.883223px;}
.h10_c00366{height:83.960889px;}
.hf_c00366{height:87.092549px;}
.h6_c00366{height:90.170215px;}
.hd_c00366{height:93.301875px;}
.hb_c00366{height:96.433535px;}
.h3_c00366{height:99.511201px;}
.h4_c00366{height:108.852188px;}
.h1d_c00366{height:111.983848px;}
.h1c_c00366{height:115.061514px;}
.h19_c00366{height:124.402500px;}
.h11_c00366{height:127.534160px;}
.h1a_c00366{height:133.743486px;}
.h1b_c00366{height:146.162139px;}
.h0_c00366{height:1526.685000px;}
.h1_c00366{height:1527.000000px;}
.w0_c00366{width:1100.730000px;}
.w1_c00366{width:1101.000000px;}
.x0_c00366{left:0.000000px;}
.x9_c00366{left:230.685000px;}
.x2_c00366{left:233.280000px;}
.xa_c00366{left:262.650000px;}
.x24_c00366{left:267.840000px;}
.xb_c00366{left:275.610000px;}
.x2f_c00366{left:279.075000px;}
.x3_c00366{left:305.850000px;}
.x30_c00366{left:313.635000px;}
.xc_c00366{left:319.680000px;}
.x16_c00366{left:334.365000px;}
.x1d_c00366{left:343.005000px;}
.x25_c00366{left:359.430000px;}
.x1e_c00366{left:380.160000px;}
.x26_c00366{left:390.525000px;}
.x17_c00366{left:393.120000px;}
.xd_c00366{left:394.845000px;}
.x31_c00366{left:398.310000px;}
.xe_c00366{left:403.485000px;}
.x27_c00366{left:407.805000px;}
.x18_c00366{left:410.400000px;}
.x28_c00366{left:434.595000px;}
.x32_c00366{left:445.830000px;}
.x4_c00366{left:457.920000px;}
.x1f_c00366{left:459.645000px;}
.x19_c00366{left:468.285000px;}
.x29_c00366{left:471.750000px;}
.xf_c00366{left:482.970000px;}
.x10_c00366{left:488.160000px;}
.x20_c00366{left:501.990000px;}
.x11_c00366{left:536.550000px;}
.x5_c00366{left:550.365000px;}
.x2a_c00366{left:564.195000px;}
.x21_c00366{left:574.560000px;}
.x12_c00366{left:583.200000px;}
.x6_c00366{left:616.035000px;}
.x2b_c00366{left:637.635000px;}
.x22_c00366{left:661.830000px;}
.x1a_c00366{left:663.555000px;}
.x33_c00366{left:672.195000px;}
.x13_c00366{left:682.560000px;}
.x7_c00366{left:685.155000px;}
.x1b_c00366{left:724.035000px;}
.x23_c00366{left:753.405000px;}
.x2c_c00366{left:763.770000px;}
.x34_c00366{left:781.920000px;}
.x2d_c00366{left:786.240000px;}
.x14_c00366{left:792.285000px;}
.x8_c00366{left:795.750000px;}
.x35_c00366{left:802.650000px;}
.x2e_c00366{left:845.850000px;}
.x1c_c00366{left:859.680000px;}
.x15_c00366{left:861.405000px;}
.x1_c00366{left:989.280000px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls0_c00366{letter-spacing:0.000000pt;}
.ws0_c00366{word-spacing:0.000000pt;}
.fsc_c00366{font-size:3.072000pt;}
.fs1e_c00366{font-size:6.133333pt;}
.fs8_c00366{font-size:9.226667pt;}
.fs10_c00366{font-size:12.266667pt;}
.fs13_c00366{font-size:15.360000pt;}
.fs12_c00366{font-size:18.453333pt;}
.fs0_c00366{font-size:24.586667pt;}
.fs1d_c00366{font-size:27.626667pt;}
.fs14_c00366{font-size:33.813333pt;}
.fs11_c00366{font-size:39.946667pt;}
.fs15_c00366{font-size:52.213333pt;}
.fs5_c00366{font-size:58.346667pt;}
.fsa_c00366{font-size:61.440000pt;}
.fs7_c00366{font-size:64.533333pt;}
.fs1c_c00366{font-size:67.573333pt;}
.fs6_c00366{font-size:70.666667pt;}
.fs3_c00366{font-size:76.800000pt;}
.fs16_c00366{font-size:79.893333pt;}
.fse_c00366{font-size:82.933333pt;}
.fsd_c00366{font-size:86.026667pt;}
.fs4_c00366{font-size:89.066667pt;}
.fsb_c00366{font-size:92.160000pt;}
.fs9_c00366{font-size:95.253333pt;}
.fs1_c00366{font-size:98.293333pt;}
.fs2_c00366{font-size:107.520000pt;}
.fs1b_c00366{font-size:110.613333pt;}
.fs1a_c00366{font-size:113.653333pt;}
.fs17_c00366{font-size:122.880000pt;}
.fsf_c00366{font-size:125.973333pt;}
.fs18_c00366{font-size:132.106667pt;}
.fs19_c00366{font-size:144.373333pt;}
.y0_c00366{bottom:0.000000pt;}
.y2a_c00366{bottom:599.813333pt;}
.y2b_c00366{bottom:601.346667pt;}
.y33_c00366{bottom:603.653333pt;}
.y2f_c00366{bottom:605.186667pt;}
.y29_c00366{bottom:607.493333pt;}
.y31_c00366{bottom:612.866667pt;}
.y30_c00366{bottom:614.400000pt;}
.y2d_c00366{bottom:615.933333pt;}
.y28_c00366{bottom:617.466667pt;}
.y2e_c00366{bottom:619.013333pt;}
.y2c_c00366{bottom:620.546667pt;}
.y32_c00366{bottom:622.080000pt;}
.y23_c00366{bottom:622.853333pt;}
.y22_c00366{bottom:625.920000pt;}
.y1e_c00366{bottom:628.226667pt;}
.y1f_c00366{bottom:628.986667pt;}
.y24_c00366{bottom:629.760000pt;}
.y26_c00366{bottom:632.066667pt;}
.y20_c00366{bottom:632.826667pt;}
.y21_c00366{bottom:635.133333pt;}
.y27_c00366{bottom:635.906667pt;}
.y25_c00366{bottom:637.440000pt;}
.y17_c00366{bottom:655.106667pt;}
.y16_c00366{bottom:656.640000pt;}
.y1d_c00366{bottom:659.706667pt;}
.y1c_c00366{bottom:660.480000pt;}
.y18_c00366{bottom:661.253333pt;}
.y15_c00366{bottom:662.013333pt;}
.y19_c00366{bottom:664.320000pt;}
.y1b_c00366{bottom:666.626667pt;}
.y1a_c00366{bottom:669.693333pt;}
.y14_c00366{bottom:677.373333pt;}
.y13_c00366{bottom:681.213333pt;}
.y10_c00366{bottom:682.746667pt;}
.y12_c00366{bottom:683.520000pt;}
.y11_c00366{bottom:684.293333pt;}
.yf_c00366{bottom:685.053333pt;}
.y8_c00366{bottom:687.360000pt;}
.yd_c00366{bottom:688.133333pt;}
.ye_c00366{bottom:689.666667pt;}
.yc_c00366{bottom:690.426667pt;}
.ya_c00366{bottom:691.200000pt;}
.y7_c00366{bottom:692.733333pt;}
.y9_c00366{bottom:695.813333pt;}
.yb_c00366{bottom:701.946667pt;}
.y6_c00366{bottom:709.626667pt;}
.y4_c00366{bottom:719.613333pt;}
.y2_c00366{bottom:720.386667pt;}
.y5_c00366{bottom:721.146667pt;}
.y3_c00366{bottom:722.693333pt;}
.y1_c00366{bottom:1041.413333pt;}
.he_c00366{height:2.764500pt;}
.h20_c00366{height:5.519401pt;}
.ha_c00366{height:8.303099pt;}
.h12_c00366{height:11.038802pt;}
.h15_c00366{height:13.822500pt;}
.h14_c00366{height:16.606198pt;}
.h2_c00366{height:22.125599pt;}
.h1f_c00366{height:24.861302pt;}
.h16_c00366{height:30.428698pt;}
.h13_c00366{height:35.948099pt;}
.h17_c00366{height:46.986901pt;}
.h7_c00366{height:52.506302pt;}
.hc_c00366{height:55.290000pt;}
.h9_c00366{height:58.073698pt;}
.h1e_c00366{height:60.809401pt;}
.h8_c00366{height:63.593099pt;}
.h5_c00366{height:69.112500pt;}
.h18_c00366{height:71.896198pt;}
.h10_c00366{height:74.631901pt;}
.hf_c00366{height:77.415599pt;}
.h6_c00366{height:80.151302pt;}
.hd_c00366{height:82.935000pt;}
.hb_c00366{height:85.718698pt;}
.h3_c00366{height:88.454401pt;}
.h4_c00366{height:96.757500pt;}
.h1d_c00366{height:99.541198pt;}
.h1c_c00366{height:102.276901pt;}
.h19_c00366{height:110.580000pt;}
.h11_c00366{height:113.363698pt;}
.h1a_c00366{height:118.883099pt;}
.h1b_c00366{height:129.921901pt;}
.h0_c00366{height:1357.053333pt;}
.h1_c00366{height:1357.333333pt;}
.w0_c00366{width:978.426667pt;}
.w1_c00366{width:978.666667pt;}
.x0_c00366{left:0.000000pt;}
.x9_c00366{left:205.053333pt;}
.x2_c00366{left:207.360000pt;}
.xa_c00366{left:233.466667pt;}
.x24_c00366{left:238.080000pt;}
.xb_c00366{left:244.986667pt;}
.x2f_c00366{left:248.066667pt;}
.x3_c00366{left:271.866667pt;}
.x30_c00366{left:278.786667pt;}
.xc_c00366{left:284.160000pt;}
.x16_c00366{left:297.213333pt;}
.x1d_c00366{left:304.893333pt;}
.x25_c00366{left:319.493333pt;}
.x1e_c00366{left:337.920000pt;}
.x26_c00366{left:347.133333pt;}
.x17_c00366{left:349.440000pt;}
.xd_c00366{left:350.973333pt;}
.x31_c00366{left:354.053333pt;}
.xe_c00366{left:358.653333pt;}
.x27_c00366{left:362.493333pt;}
.x18_c00366{left:364.800000pt;}
.x28_c00366{left:386.306667pt;}
.x32_c00366{left:396.293333pt;}
.x4_c00366{left:407.040000pt;}
.x1f_c00366{left:408.573333pt;}
.x19_c00366{left:416.253333pt;}
.x29_c00366{left:419.333333pt;}
.xf_c00366{left:429.306667pt;}
.x10_c00366{left:433.920000pt;}
.x20_c00366{left:446.213333pt;}
.x11_c00366{left:476.933333pt;}
.x5_c00366{left:489.213333pt;}
.x2a_c00366{left:501.506667pt;}
.x21_c00366{left:510.720000pt;}
.x12_c00366{left:518.400000pt;}
.x6_c00366{left:547.586667pt;}
.x2b_c00366{left:566.786667pt;}
.x22_c00366{left:588.293333pt;}
.x1a_c00366{left:589.826667pt;}
.x33_c00366{left:597.506667pt;}
.x13_c00366{left:606.720000pt;}
.x7_c00366{left:609.026667pt;}
.x1b_c00366{left:643.586667pt;}
.x23_c00366{left:669.693333pt;}
.x2c_c00366{left:678.906667pt;}
.x34_c00366{left:695.040000pt;}
.x2d_c00366{left:698.880000pt;}
.x14_c00366{left:704.253333pt;}
.x8_c00366{left:707.333333pt;}
.x35_c00366{left:713.466667pt;}
.x2e_c00366{left:751.866667pt;}
.x1c_c00366{left:764.160000pt;}
.x15_c00366{left:765.693333pt;}
.x1_c00366{left:879.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_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_371a5a27c9a6af926aa22c27.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:1.109863;font-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_c00367{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);}
.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;}
.fs0_c00367{font-size:600.000000px;}
.y0_c00367{bottom:0.000000px;}
.y1_c00367{bottom:15.000000px;}
.h2_c00367{height:539.941406px;}
.h1_c00367{height:1507.500000px;}
.h0_c00367{height:1507.680000px;}
.w0_c00367{width:1111.965000px;}
.w1_c00367{width:1112.250000px;}
.x0_c00367{left:0.000000px;}
.x1_c00367{left:15.000000px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls0_c00367{letter-spacing:0.000000pt;}
.ws0_c00367{word-spacing:0.000000pt;}
.fs0_c00367{font-size:533.333333pt;}
.y0_c00367{bottom:0.000000pt;}
.y1_c00367{bottom:13.333333pt;}
.h2_c00367{height:479.947917pt;}
.h1_c00367{height:1340.000000pt;}
.h0_c00367{height:1340.160000pt;}
.w0_c00367{width:988.413333pt;}
.w1_c00367{width:988.666667pt;}
.x0_c00367{left:0.000000pt;}
.x1_c00367{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4e5610171fdd1d9726371149.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.109863;font-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_c00368{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mc_c00368{transform:matrix(0.080725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080725,0.000000,0.000000,0.250000,0,0);}
.mb_c00368{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c00368{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7_c00368{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9_c00368{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00368{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c00368{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c00368{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);}
.ma_c00368{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);}
.m4_c00368{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m0_c00368{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c00368{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);}
.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:3.456000px;}
.fs4_c00368{font-size:6.000000px;}
.fs7_c00368{font-size:20.760000px;}
.fs9_c00368{font-size:38.040000px;}
.fs5_c00368{font-size:55.320000px;}
.fs2_c00368{font-size:58.740000px;}
.fs1_c00368{font-size:62.220000px;}
.fs3_c00368{font-size:65.640000px;}
.fs6_c00368{font-size:69.120000px;}
.fs8_c00368{font-size:321.420000px;}
.y0_c00368{bottom:0.000000px;}
.yb_c00368{bottom:1102.470000px;}
.ya_c00368{bottom:1108.515000px;}
.y9_c00368{bottom:1111.965000px;}
.y8_c00368{bottom:1159.485000px;}
.y7_c00368{bottom:1164.675000px;}
.y2_c00368{bottom:1385.850000px;}
.y3_c00368{bottom:1386.720000px;}
.y1_c00368{bottom:1387.590000px;}
.y5_c00368{bottom:1388.445000px;}
.y6_c00368{bottom:1389.315000px;}
.y4_c00368{bottom:1399.680000px;}
.h2_c00368{height:3.110063px;}
.h6_c00368{height:5.399414px;}
.h9_c00368{height:18.681973px;}
.hb_c00368{height:34.232285px;}
.h7_c00368{height:49.782598px;}
.h4_c00368{height:52.860264px;}
.h3_c00368{height:55.991924px;}
.h5_c00368{height:59.069590px;}
.h8_c00368{height:62.201250px;}
.ha_c00368{height:289.246611px;}
.h0_c00368{height:1526.685000px;}
.h1_c00368{height:1527.000000px;}
.w0_c00368{width:1100.730000px;}
.w1_c00368{width:1101.000000px;}
.x0_c00368{left:0.000000px;}
.x1_c00368{left:406.080000px;}
.x2_c00368{left:415.590000px;}
.x3_c00368{left:436.320000px;}
.x4_c00368{left:460.515000px;}
.x5_c00368{left:485.565000px;}
.x6_c00368{left:507.165000px;}
.x7_c00368{left:556.410000px;}
.x8_c00368{left:564.195000px;}
.x9_c00368{left:591.840000px;}
.xa_c00368{left:615.165000px;}
.xb_c00368{left:637.635000px;}
.xc_c00368{left:660.090000px;}
.xd_c00368{left:677.370000px;}
.xe_c00368{left:950.400000px;}
.xf_c00368{left:958.169952px;}
.x11_c00368{left:977.190000px;}
.x10_c00368{left:989.280000px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls0_c00368{letter-spacing:0.000000pt;}
.ws0_c00368{word-spacing:0.000000pt;}
.fs0_c00368{font-size:3.072000pt;}
.fs4_c00368{font-size:5.333333pt;}
.fs7_c00368{font-size:18.453333pt;}
.fs9_c00368{font-size:33.813333pt;}
.fs5_c00368{font-size:49.173333pt;}
.fs2_c00368{font-size:52.213333pt;}
.fs1_c00368{font-size:55.306667pt;}
.fs3_c00368{font-size:58.346667pt;}
.fs6_c00368{font-size:61.440000pt;}
.fs8_c00368{font-size:285.706667pt;}
.y0_c00368{bottom:0.000000pt;}
.yb_c00368{bottom:979.973333pt;}
.ya_c00368{bottom:985.346667pt;}
.y9_c00368{bottom:988.413333pt;}
.y8_c00368{bottom:1030.653333pt;}
.y7_c00368{bottom:1035.266667pt;}
.y2_c00368{bottom:1231.866667pt;}
.y3_c00368{bottom:1232.640000pt;}
.y1_c00368{bottom:1233.413333pt;}
.y5_c00368{bottom:1234.173333pt;}
.y6_c00368{bottom:1234.946667pt;}
.y4_c00368{bottom:1244.160000pt;}
.h2_c00368{height:2.764500pt;}
.h6_c00368{height:4.799479pt;}
.h9_c00368{height:16.606198pt;}
.hb_c00368{height:30.428698pt;}
.h7_c00368{height:44.251198pt;}
.h4_c00368{height:46.986901pt;}
.h3_c00368{height:49.770599pt;}
.h5_c00368{height:52.506302pt;}
.h8_c00368{height:55.290000pt;}
.ha_c00368{height:257.108099pt;}
.h0_c00368{height:1357.053333pt;}
.h1_c00368{height:1357.333333pt;}
.w0_c00368{width:978.426667pt;}
.w1_c00368{width:978.666667pt;}
.x0_c00368{left:0.000000pt;}
.x1_c00368{left:360.960000pt;}
.x2_c00368{left:369.413333pt;}
.x3_c00368{left:387.840000pt;}
.x4_c00368{left:409.346667pt;}
.x5_c00368{left:431.613333pt;}
.x6_c00368{left:450.813333pt;}
.x7_c00368{left:494.586667pt;}
.x8_c00368{left:501.506667pt;}
.x9_c00368{left:526.080000pt;}
.xa_c00368{left:546.813333pt;}
.xb_c00368{left:566.786667pt;}
.xc_c00368{left:586.746667pt;}
.xd_c00368{left:602.106667pt;}
.xe_c00368{left:844.800000pt;}
.xf_c00368{left:851.706624pt;}
.x11_c00368{left:868.613333pt;}
.x10_c00368{left:879.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_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_30780039413d680730a7fb19.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:1.109863;font-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_c00369{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00369{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);}
.m3_c00369{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);}
.m6_c00369{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9_c00369{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);}
.m4_c00369{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);}
.m1_c00369{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);}
.m5_c00369{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m8_c00369{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m7_c00369{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m0_c00369{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c00369{vertical-align:0.000000px;}
.v1_c00369{vertical-align:13.800000px;}
.ls1_c00369{letter-spacing:0.000000px;}
.ls0_c00369{letter-spacing:85.114800px;}
.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;}
.fsa_c00369{font-size:6.900000px;}
.fs9_c00369{font-size:13.800000px;}
.fs0_c00369{font-size:17.280000px;}
.fs8_c00369{font-size:24.180000px;}
.fs7_c00369{font-size:34.560000px;}
.fs4_c00369{font-size:51.840000px;}
.fs6_c00369{font-size:55.320000px;}
.fs5_c00369{font-size:58.740000px;}
.fs1_c00369{font-size:62.220000px;}
.fs3_c00369{font-size:65.640000px;}
.fs2_c00369{font-size:69.120000px;}
.y0_c00369{bottom:0.000000px;}
.y8_c00369{bottom:1045.440000px;}
.y3_c00369{bottom:1381.530000px;}
.y4_c00369{bottom:1384.125000px;}
.y2_c00369{bottom:1384.995000px;}
.y5_c00369{bottom:1386.720000px;}
.y6_c00369{bottom:1387.590000px;}
.y7_c00369{bottom:1394.490000px;}
.y1_c00369{bottom:1423.005000px;}
.h2_c00369{height:15.550313px;}
.hb_c00369{height:20.009326px;}
.ha_c00369{height:21.759639px;}
.h9_c00369{height:31.100625px;}
.h6_c00369{height:46.650937px;}
.h8_c00369{height:49.782598px;}
.h7_c00369{height:52.860264px;}
.h3_c00369{height:55.991924px;}
.h5_c00369{height:59.069590px;}
.h4_c00369{height:62.201250px;}
.h1_c00369{height:1507.500000px;}
.h0_c00369{height:1507.680000px;}
.w0_c00369{width:1111.965000px;}
.w1_c00369{width:1112.250000px;}
.x0_c00369{left:0.000000px;}
.xa_c00369{left:7.770000px;}
.x2_c00369{left:428.550000px;}
.x3_c00369{left:454.470000px;}
.x4_c00369{left:477.795000px;}
.x1_c00369{left:504.570000px;}
.x5_c00369{left:520.995000px;}
.x6_c00369{left:560.730000px;}
.x7_c00369{left:603.930000px;}
.x8_c00369{left:654.045000px;}
.x9_c00369{left:683.430000px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.v1_c00369{vertical-align:12.266667pt;}
.ls1_c00369{letter-spacing:0.000000pt;}
.ls0_c00369{letter-spacing:75.657600pt;}
.ws0_c00369{word-spacing:0.000000pt;}
.fsa_c00369{font-size:6.133333pt;}
.fs9_c00369{font-size:12.266667pt;}
.fs0_c00369{font-size:15.360000pt;}
.fs8_c00369{font-size:21.493333pt;}
.fs7_c00369{font-size:30.720000pt;}
.fs4_c00369{font-size:46.080000pt;}
.fs6_c00369{font-size:49.173333pt;}
.fs5_c00369{font-size:52.213333pt;}
.fs1_c00369{font-size:55.306667pt;}
.fs3_c00369{font-size:58.346667pt;}
.fs2_c00369{font-size:61.440000pt;}
.y0_c00369{bottom:0.000000pt;}
.y8_c00369{bottom:929.280000pt;}
.y3_c00369{bottom:1228.026667pt;}
.y4_c00369{bottom:1230.333333pt;}
.y2_c00369{bottom:1231.106667pt;}
.y5_c00369{bottom:1232.640000pt;}
.y6_c00369{bottom:1233.413333pt;}
.y7_c00369{bottom:1239.546667pt;}
.y1_c00369{bottom:1264.893333pt;}
.h2_c00369{height:13.822500pt;}
.hb_c00369{height:17.786068pt;}
.ha_c00369{height:19.341901pt;}
.h9_c00369{height:27.645000pt;}
.h6_c00369{height:41.467500pt;}
.h8_c00369{height:44.251198pt;}
.h7_c00369{height:46.986901pt;}
.h3_c00369{height:49.770599pt;}
.h5_c00369{height:52.506302pt;}
.h4_c00369{height:55.290000pt;}
.h1_c00369{height:1340.000000pt;}
.h0_c00369{height:1340.160000pt;}
.w0_c00369{width:988.413333pt;}
.w1_c00369{width:988.666667pt;}
.x0_c00369{left:0.000000pt;}
.xa_c00369{left:6.906667pt;}
.x2_c00369{left:380.933333pt;}
.x3_c00369{left:403.973333pt;}
.x4_c00369{left:424.706667pt;}
.x1_c00369{left:448.506667pt;}
.x5_c00369{left:463.106667pt;}
.x6_c00369{left:498.426667pt;}
.x7_c00369{left:536.826667pt;}
.x8_c00369{left:581.373333pt;}
.x9_c00369{left:607.493333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_18f0fd6702741abbc6669b84.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.109863;font-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_c00370{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m3_c00370{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00370{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c00370{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_c00370{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m1_c00370{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c00370{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m4_c00370{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,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;}
.fs1_c00370{font-size:6.900000px;}
.fs5_c00370{font-size:13.800000px;}
.fs2_c00370{font-size:17.280000px;}
.fs3_c00370{font-size:20.760000px;}
.fs4_c00370{font-size:27.660000px;}
.fs0_c00370{font-size:34.560000px;}
.y0_c00370{bottom:0.000000px;}
.y9_c00370{bottom:708.480000px;}
.y8_c00370{bottom:712.800000px;}
.y7_c00370{bottom:722.310000px;}
.y6_c00370{bottom:729.210000px;}
.y5_c00370{bottom:773.280000px;}
.y4_c00370{bottom:805.245000px;}
.y3_c00370{bottom:828.570000px;}
.y1_c00370{bottom:842.400000px;}
.y2_c00370{bottom:851.040000px;}
.h3_c00370{height:6.209326px;}
.h7_c00370{height:12.418652px;}
.h4_c00370{height:15.550313px;}
.h5_c00370{height:18.681973px;}
.h6_c00370{height:24.891299px;}
.h2_c00370{height:31.100625px;}
.h0_c00370{height:1526.685000px;}
.h1_c00370{height:1527.000000px;}
.w0_c00370{width:1100.730000px;}
.w1_c00370{width:1101.000000px;}
.x0_c00370{left:0.000000px;}
.x4_c00370{left:913.245000px;}
.x6_c00370{left:927.075000px;}
.x1_c00370{left:930.525000px;}
.x7_c00370{left:956.445000px;}
.x5_c00370{left:1021.245000px;}
.x2_c00370{left:1053.210000px;}
.x8_c00370{left:1057.530000px;}
.x3_c00370{left:1074.810000px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.ws0_c00370{word-spacing:0.000000pt;}
.fs1_c00370{font-size:6.133333pt;}
.fs5_c00370{font-size:12.266667pt;}
.fs2_c00370{font-size:15.360000pt;}
.fs3_c00370{font-size:18.453333pt;}
.fs4_c00370{font-size:24.586667pt;}
.fs0_c00370{font-size:30.720000pt;}
.y0_c00370{bottom:0.000000pt;}
.y9_c00370{bottom:629.760000pt;}
.y8_c00370{bottom:633.600000pt;}
.y7_c00370{bottom:642.053333pt;}
.y6_c00370{bottom:648.186667pt;}
.y5_c00370{bottom:687.360000pt;}
.y4_c00370{bottom:715.773333pt;}
.y3_c00370{bottom:736.506667pt;}
.y1_c00370{bottom:748.800000pt;}
.y2_c00370{bottom:756.480000pt;}
.h3_c00370{height:5.519401pt;}
.h7_c00370{height:11.038802pt;}
.h4_c00370{height:13.822500pt;}
.h5_c00370{height:16.606198pt;}
.h6_c00370{height:22.125599pt;}
.h2_c00370{height:27.645000pt;}
.h0_c00370{height:1357.053333pt;}
.h1_c00370{height:1357.333333pt;}
.w0_c00370{width:978.426667pt;}
.w1_c00370{width:978.666667pt;}
.x0_c00370{left:0.000000pt;}
.x4_c00370{left:811.773333pt;}
.x6_c00370{left:824.066667pt;}
.x1_c00370{left:827.133333pt;}
.x7_c00370{left:850.173333pt;}
.x5_c00370{left:907.773333pt;}
.x2_c00370{left:936.186667pt;}
.x8_c00370{left:940.026667pt;}
.x3_c00370{left:955.386667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_587bc4d313d7a8fbc84acc40.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:1.109863;font-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_c00371{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c00371{transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);}
.m0_c00371{transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);}
.m2e_c00371{transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);}
.m31_c00371{transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);}
.m2_c00371{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00371{transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);}
.m1c_c00371{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);}
.m2d_c00371{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.m30_c00371{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.mb_c00371{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m36_c00371{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m17_c00371{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.m1d_c00371{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m3_c00371{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m19_c00371{transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);}
.m32_c00371{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);}
.mc_c00371{transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);}
.m35_c00371{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.md_c00371{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);}
.m26_c00371{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);}
.m23_c00371{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);}
.m37_c00371{transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);}
.m1e_c00371{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m2f_c00371{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m33_c00371{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);}
.m29_c00371{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.me_c00371{transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);}
.m24_c00371{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);}
.m15_c00371{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);}
.m4_c00371{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00371{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m13_c00371{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m28_c00371{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m34_c00371{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);}
.m14_c00371{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf_c00371{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00371{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);}
.m3d_c00371{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);}
.m25_c00371{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);}
.m16_c00371{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);}
.m10_c00371{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);}
.m1f_c00371{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00371{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);}
.m9_c00371{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00371{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);}
.m8_c00371{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m39_c00371{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);}
.ma_c00371{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6_c00371{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);}
.m27_c00371{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m12_c00371{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);}
.m3b_c00371{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c00371{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);}
.m3a_c00371{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00371{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m38_c00371{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m11_c00371{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);}
.m1b_c00371{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m18_c00371{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);}
.m21_c00371{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m20_c00371{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00371{transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.890000,0.000000,0.000000,0.250000,0,0);}
.m22_c00371{transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.130000,0.000000,0.000000,0.250000,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;}
.fc0_c00371{color:transparent;}
.fs2_c00371{font-size:3.456000px;}
.fsb_c00371{font-size:6.000000px;}
.fs1d_c00371{font-size:6.900000px;}
.fs18_c00371{font-size:13.800000px;}
.fsd_c00371{font-size:17.280000px;}
.fs16_c00371{font-size:27.660000px;}
.fsa_c00371{font-size:34.560000px;}
.fse_c00371{font-size:38.040000px;}
.fsc_c00371{font-size:41.460000px;}
.fs10_c00371{font-size:44.940000px;}
.fs1_c00371{font-size:48.360000px;}
.fs12_c00371{font-size:51.840000px;}
.fsf_c00371{font-size:55.320000px;}
.fs3_c00371{font-size:58.740000px;}
.fs11_c00371{font-size:62.220000px;}
.fs5_c00371{font-size:65.640000px;}
.fs4_c00371{font-size:69.120000px;}
.fs6_c00371{font-size:72.600000px;}
.fs17_c00371{font-size:76.020000px;}
.fs1a_c00371{font-size:79.500000px;}
.fs15_c00371{font-size:86.400000px;}
.fs9_c00371{font-size:89.880000px;}
.fs14_c00371{font-size:93.300000px;}
.fs8_c00371{font-size:100.200000px;}
.fs19_c00371{font-size:103.680000px;}
.fs13_c00371{font-size:107.160000px;}
.fs7_c00371{font-size:110.580000px;}
.fs1c_c00371{font-size:114.060000px;}
.fs1b_c00371{font-size:117.480000px;}
.fs0_c00371{font-size:148.620000px;}
.y0_c00371{bottom:0.000000px;}
.y3a_c00371{bottom:116.640000px;}
.y3b_c00371{bottom:118.365000px;}
.y3c_c00371{bottom:119.235000px;}
.y35_c00371{bottom:815.610000px;}
.y36_c00371{bottom:819.075000px;}
.y37_c00371{bottom:819.930000px;}
.y39_c00371{bottom:830.310000px;}
.y38_c00371{bottom:835.485000px;}
.y34_c00371{bottom:837.210000px;}
.y33_c00371{bottom:838.950000px;}
.y32_c00371{bottom:854.490000px;}
.y20_c00371{bottom:869.190000px;}
.y21_c00371{bottom:882.150000px;}
.y1d_c00371{bottom:883.875000px;}
.y1e_c00371{bottom:884.730000px;}
.y1f_c00371{bottom:886.470000px;}
.y31_c00371{bottom:887.325000px;}
.y30_c00371{bottom:892.515000px;}
.y19_c00371{bottom:896.835000px;}
.y18_c00371{bottom:897.690000px;}
.y1b_c00371{bottom:901.155000px;}
.y1a_c00371{bottom:902.010000px;}
.y1c_c00371{bottom:902.880000px;}
.y2f_c00371{bottom:905.475000px;}
.y2e_c00371{bottom:909.795000px;}
.y29_c00371{bottom:917.565000px;}
.y2a_c00371{bottom:918.435000px;}
.y2d_c00371{bottom:922.755000px;}
.y2c_c00371{bottom:923.610000px;}
.y2b_c00371{bottom:924.480000px;}
.y13_c00371{bottom:929.670000px;}
.y14_c00371{bottom:930.525000px;}
.y11_c00371{bottom:931.395000px;}
.y17_c00371{bottom:932.250000px;}
.y12_c00371{bottom:933.120000px;}
.y15_c00371{bottom:933.990000px;}
.y16_c00371{bottom:934.845000px;}
.yd_c00371{bottom:946.950000px;}
.yf_c00371{bottom:949.530000px;}
.y10_c00371{bottom:950.400000px;}
.y27_c00371{bottom:952.125000px;}
.ye_c00371{bottom:954.720000px;}
.y28_c00371{bottom:956.445000px;}
.y25_c00371{bottom:957.315000px;}
.y9_c00371{bottom:958.170000px;}
.y26_c00371{bottom:959.040000px;}
.yc_c00371{bottom:962.490000px;}
.ya_c00371{bottom:964.230000px;}
.yb_c00371{bottom:966.810000px;}
.y24_c00371{bottom:983.235000px;}
.y22_c00371{bottom:984.090000px;}
.y23_c00371{bottom:989.280000px;}
.y7_c00371{bottom:995.325000px;}
.y5_c00371{bottom:996.195000px;}
.y6_c00371{bottom:997.050000px;}
.y8_c00371{bottom:997.920000px;}
.y4_c00371{bottom:1094.685000px;}
.y3_c00371{bottom:1095.555000px;}
.y2_c00371{bottom:1224.285000px;}
.y1_c00371{bottom:1237.245000px;}
.h4_c00371{height:3.110063px;}
.hd_c00371{height:5.399414px;}
.h1f_c00371{height:6.209326px;}
.h1a_c00371{height:12.418652px;}
.hf_c00371{height:15.550313px;}
.h18_c00371{height:24.891299px;}
.hc_c00371{height:31.100625px;}
.h10_c00371{height:34.232285px;}
.he_c00371{height:37.309951px;}
.h12_c00371{height:40.441611px;}
.h3_c00371{height:43.519277px;}
.h14_c00371{height:46.650937px;}
.h11_c00371{height:49.782598px;}
.h5_c00371{height:52.860264px;}
.h13_c00371{height:55.991924px;}
.h7_c00371{height:59.069590px;}
.h6_c00371{height:62.201250px;}
.h8_c00371{height:65.332910px;}
.h19_c00371{height:68.410576px;}
.h1c_c00371{height:71.542236px;}
.h17_c00371{height:77.751563px;}
.hb_c00371{height:80.883223px;}
.h16_c00371{height:83.960889px;}
.ha_c00371{height:90.170215px;}
.h1b_c00371{height:93.301875px;}
.h15_c00371{height:96.433535px;}
.h9_c00371{height:99.511201px;}
.h1e_c00371{height:102.642861px;}
.h1d_c00371{height:105.720527px;}
.h2_c00371{height:133.743486px;}
.h1_c00371{height:1507.500000px;}
.h0_c00371{height:1507.680000px;}
.w0_c00371{width:1111.965000px;}
.w1_c00371{width:1112.250000px;}
.x0_c00371{left:0.000000px;}
.x1_c00371{left:102.810000px;}
.x38_c00371{left:166.755000px;}
.x39_c00371{left:172.800000px;}
.x2_c00371{left:181.440000px;}
.x3_c00371{left:190.080000px;}
.x4_c00371{left:230.685000px;}
.x5_c00371{left:254.010000px;}
.xb_c00371{left:255.750000px;}
.x6_c00371{left:273.885000px;}
.xf_c00371{left:283.395000px;}
.x10_c00371{left:292.890000px;}
.x7_c00371{left:302.400000px;}
.x3a_c00371{left:307.590000px;}
.x21_c00371{left:314.490000px;}
.x8_c00371{left:324.870000px;}
.x15_c00371{left:330.045000px;}
.x24_c00371{left:335.235000px;}
.x22_c00371{left:340.410000px;}
.x16_c00371{left:348.195000px;}
.x3b_c00371{left:353.370000px;}
.x11_c00371{left:356.835000px;}
.x25_c00371{left:361.155000px;}
.x1d_c00371{left:364.605000px;}
.x3c_c00371{left:366.330000px;}
.x17_c00371{left:374.115000px;}
.x23_c00371{left:385.350000px;}
.x9_c00371{left:387.075000px;}
.x3d_c00371{left:388.800000px;}
.x1e_c00371{left:393.120000px;}
.x18_c00371{left:394.845000px;}
.x3e_c00371{left:403.485000px;}
.xc_c00371{left:406.080000px;}
.x19_c00371{left:411.270000px;}
.x26_c00371{left:418.170000px;}
.x1f_c00371{left:425.955000px;}
.xd_c00371{left:436.320000px;}
.x41_c00371{left:443.235000px;}
.x3f_c00371{left:447.555000px;}
.x12_c00371{left:454.470000px;}
.x40_c00371{left:465.690000px;}
.xe_c00371{left:471.750000px;}
.x1a_c00371{left:476.070000px;}
.x13_c00371{left:483.840000px;}
.x20_c00371{left:505.440000px;}
.x1b_c00371{left:512.355000px;}
.x1c_c00371{left:531.360000px;}
.xa_c00371{left:537.405000px;}
.x14_c00371{left:543.450000px;}
.x33_c00371{left:592.710000px;}
.x34_c00371{left:601.350000px;}
.x2f_c00371{left:608.250000px;}
.x27_c00371{left:611.715000px;}
.x2b_c00371{left:636.765000px;}
.x30_c00371{left:644.550000px;}
.x28_c00371{left:648.000000px;}
.x35_c00371{left:674.790000px;}
.x42_c00371{left:701.565000px;}
.x2c_c00371{left:707.610000px;}
.x29_c00371{left:722.310000px;}
.x31_c00371{left:734.400000px;}
.x43_c00371{left:736.995000px;}
.x32_c00371{left:757.725000px;}
.x2d_c00371{left:774.150000px;}
.x36_c00371{left:783.645000px;}
.x37_c00371{left:789.690000px;}
.x2a_c00371{left:811.290000px;}
.x2e_c00371{left:871.770000px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls0_c00371{letter-spacing:0.000000pt;}
.ws0_c00371{word-spacing:0.000000pt;}
.fs2_c00371{font-size:3.072000pt;}
.fsb_c00371{font-size:5.333333pt;}
.fs1d_c00371{font-size:6.133333pt;}
.fs18_c00371{font-size:12.266667pt;}
.fsd_c00371{font-size:15.360000pt;}
.fs16_c00371{font-size:24.586667pt;}
.fsa_c00371{font-size:30.720000pt;}
.fse_c00371{font-size:33.813333pt;}
.fsc_c00371{font-size:36.853333pt;}
.fs10_c00371{font-size:39.946667pt;}
.fs1_c00371{font-size:42.986667pt;}
.fs12_c00371{font-size:46.080000pt;}
.fsf_c00371{font-size:49.173333pt;}
.fs3_c00371{font-size:52.213333pt;}
.fs11_c00371{font-size:55.306667pt;}
.fs5_c00371{font-size:58.346667pt;}
.fs4_c00371{font-size:61.440000pt;}
.fs6_c00371{font-size:64.533333pt;}
.fs17_c00371{font-size:67.573333pt;}
.fs1a_c00371{font-size:70.666667pt;}
.fs15_c00371{font-size:76.800000pt;}
.fs9_c00371{font-size:79.893333pt;}
.fs14_c00371{font-size:82.933333pt;}
.fs8_c00371{font-size:89.066667pt;}
.fs19_c00371{font-size:92.160000pt;}
.fs13_c00371{font-size:95.253333pt;}
.fs7_c00371{font-size:98.293333pt;}
.fs1c_c00371{font-size:101.386667pt;}
.fs1b_c00371{font-size:104.426667pt;}
.fs0_c00371{font-size:132.106667pt;}
.y0_c00371{bottom:0.000000pt;}
.y3a_c00371{bottom:103.680000pt;}
.y3b_c00371{bottom:105.213333pt;}
.y3c_c00371{bottom:105.986667pt;}
.y35_c00371{bottom:724.986667pt;}
.y36_c00371{bottom:728.066667pt;}
.y37_c00371{bottom:728.826667pt;}
.y39_c00371{bottom:738.053333pt;}
.y38_c00371{bottom:742.653333pt;}
.y34_c00371{bottom:744.186667pt;}
.y33_c00371{bottom:745.733333pt;}
.y32_c00371{bottom:759.546667pt;}
.y20_c00371{bottom:772.613333pt;}
.y21_c00371{bottom:784.133333pt;}
.y1d_c00371{bottom:785.666667pt;}
.y1e_c00371{bottom:786.426667pt;}
.y1f_c00371{bottom:787.973333pt;}
.y31_c00371{bottom:788.733333pt;}
.y30_c00371{bottom:793.346667pt;}
.y19_c00371{bottom:797.186667pt;}
.y18_c00371{bottom:797.946667pt;}
.y1b_c00371{bottom:801.026667pt;}
.y1a_c00371{bottom:801.786667pt;}
.y1c_c00371{bottom:802.560000pt;}
.y2f_c00371{bottom:804.866667pt;}
.y2e_c00371{bottom:808.706667pt;}
.y29_c00371{bottom:815.613333pt;}
.y2a_c00371{bottom:816.386667pt;}
.y2d_c00371{bottom:820.226667pt;}
.y2c_c00371{bottom:820.986667pt;}
.y2b_c00371{bottom:821.760000pt;}
.y13_c00371{bottom:826.373333pt;}
.y14_c00371{bottom:827.133333pt;}
.y11_c00371{bottom:827.906667pt;}
.y17_c00371{bottom:828.666667pt;}
.y12_c00371{bottom:829.440000pt;}
.y15_c00371{bottom:830.213333pt;}
.y16_c00371{bottom:830.973333pt;}
.yd_c00371{bottom:841.733333pt;}
.yf_c00371{bottom:844.026667pt;}
.y10_c00371{bottom:844.800000pt;}
.y27_c00371{bottom:846.333333pt;}
.ye_c00371{bottom:848.640000pt;}
.y28_c00371{bottom:850.173333pt;}
.y25_c00371{bottom:850.946667pt;}
.y9_c00371{bottom:851.706667pt;}
.y26_c00371{bottom:852.480000pt;}
.yc_c00371{bottom:855.546667pt;}
.ya_c00371{bottom:857.093333pt;}
.yb_c00371{bottom:859.386667pt;}
.y24_c00371{bottom:873.986667pt;}
.y22_c00371{bottom:874.746667pt;}
.y23_c00371{bottom:879.360000pt;}
.y7_c00371{bottom:884.733333pt;}
.y5_c00371{bottom:885.506667pt;}
.y6_c00371{bottom:886.266667pt;}
.y8_c00371{bottom:887.040000pt;}
.y4_c00371{bottom:973.053333pt;}
.y3_c00371{bottom:973.826667pt;}
.y2_c00371{bottom:1088.253333pt;}
.y1_c00371{bottom:1099.773333pt;}
.h4_c00371{height:2.764500pt;}
.hd_c00371{height:4.799479pt;}
.h1f_c00371{height:5.519401pt;}
.h1a_c00371{height:11.038802pt;}
.hf_c00371{height:13.822500pt;}
.h18_c00371{height:22.125599pt;}
.hc_c00371{height:27.645000pt;}
.h10_c00371{height:30.428698pt;}
.he_c00371{height:33.164401pt;}
.h12_c00371{height:35.948099pt;}
.h3_c00371{height:38.683802pt;}
.h14_c00371{height:41.467500pt;}
.h11_c00371{height:44.251198pt;}
.h5_c00371{height:46.986901pt;}
.h13_c00371{height:49.770599pt;}
.h7_c00371{height:52.506302pt;}
.h6_c00371{height:55.290000pt;}
.h8_c00371{height:58.073698pt;}
.h19_c00371{height:60.809401pt;}
.h1c_c00371{height:63.593099pt;}
.h17_c00371{height:69.112500pt;}
.hb_c00371{height:71.896198pt;}
.h16_c00371{height:74.631901pt;}
.ha_c00371{height:80.151302pt;}
.h1b_c00371{height:82.935000pt;}
.h15_c00371{height:85.718698pt;}
.h9_c00371{height:88.454401pt;}
.h1e_c00371{height:91.238099pt;}
.h1d_c00371{height:93.973802pt;}
.h2_c00371{height:118.883099pt;}
.h1_c00371{height:1340.000000pt;}
.h0_c00371{height:1340.160000pt;}
.w0_c00371{width:988.413333pt;}
.w1_c00371{width:988.666667pt;}
.x0_c00371{left:0.000000pt;}
.x1_c00371{left:91.386667pt;}
.x38_c00371{left:148.226667pt;}
.x39_c00371{left:153.600000pt;}
.x2_c00371{left:161.280000pt;}
.x3_c00371{left:168.960000pt;}
.x4_c00371{left:205.053333pt;}
.x5_c00371{left:225.786667pt;}
.xb_c00371{left:227.333333pt;}
.x6_c00371{left:243.453333pt;}
.xf_c00371{left:251.906667pt;}
.x10_c00371{left:260.346667pt;}
.x7_c00371{left:268.800000pt;}
.x3a_c00371{left:273.413333pt;}
.x21_c00371{left:279.546667pt;}
.x8_c00371{left:288.773333pt;}
.x15_c00371{left:293.373333pt;}
.x24_c00371{left:297.986667pt;}
.x22_c00371{left:302.586667pt;}
.x16_c00371{left:309.506667pt;}
.x3b_c00371{left:314.106667pt;}
.x11_c00371{left:317.186667pt;}
.x25_c00371{left:321.026667pt;}
.x1d_c00371{left:324.093333pt;}
.x3c_c00371{left:325.626667pt;}
.x17_c00371{left:332.546667pt;}
.x23_c00371{left:342.533333pt;}
.x9_c00371{left:344.066667pt;}
.x3d_c00371{left:345.600000pt;}
.x1e_c00371{left:349.440000pt;}
.x18_c00371{left:350.973333pt;}
.x3e_c00371{left:358.653333pt;}
.xc_c00371{left:360.960000pt;}
.x19_c00371{left:365.573333pt;}
.x26_c00371{left:371.706667pt;}
.x1f_c00371{left:378.626667pt;}
.xd_c00371{left:387.840000pt;}
.x41_c00371{left:393.986667pt;}
.x3f_c00371{left:397.826667pt;}
.x12_c00371{left:403.973333pt;}
.x40_c00371{left:413.946667pt;}
.xe_c00371{left:419.333333pt;}
.x1a_c00371{left:423.173333pt;}
.x13_c00371{left:430.080000pt;}
.x20_c00371{left:449.280000pt;}
.x1b_c00371{left:455.426667pt;}
.x1c_c00371{left:472.320000pt;}
.xa_c00371{left:477.693333pt;}
.x14_c00371{left:483.066667pt;}
.x33_c00371{left:526.853333pt;}
.x34_c00371{left:534.533333pt;}
.x2f_c00371{left:540.666667pt;}
.x27_c00371{left:543.746667pt;}
.x2b_c00371{left:566.013333pt;}
.x30_c00371{left:572.933333pt;}
.x28_c00371{left:576.000000pt;}
.x35_c00371{left:599.813333pt;}
.x42_c00371{left:623.613333pt;}
.x2c_c00371{left:628.986667pt;}
.x29_c00371{left:642.053333pt;}
.x31_c00371{left:652.800000pt;}
.x43_c00371{left:655.106667pt;}
.x32_c00371{left:673.533333pt;}
.x2d_c00371{left:688.133333pt;}
.x36_c00371{left:696.573333pt;}
.x37_c00371{left:701.946667pt;}
.x2a_c00371{left:721.146667pt;}
.x2e_c00371{left:774.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87f40eb71d2389c650a782a0.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.109863;font-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_c00372{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mf_c00372{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m0_c00372{transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);}
.md_c00372{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me_c00372{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m9_c00372{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m1_c00372{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);}
.m2_c00372{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c00372{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);}
.m11_c00372{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);}
.ma_c00372{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c00372{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m5_c00372{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3_c00372{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);}
.m8_c00372{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);}
.mb_c00372{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mc_c00372{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m4_c00372{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,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;}
.fc0_c00372{color:transparent;}
.fs6_c00372{font-size:17.280000px;}
.fs8_c00372{font-size:27.660000px;}
.fs5_c00372{font-size:34.560000px;}
.fs7_c00372{font-size:41.460000px;}
.fs0_c00372{font-size:55.320000px;}
.fs4_c00372{font-size:58.740000px;}
.fs3_c00372{font-size:62.220000px;}
.fs2_c00372{font-size:65.640000px;}
.fs1_c00372{font-size:69.120000px;}
.y0_c00372{bottom:0.000000px;}
.yb_c00372{bottom:1064.445000px;}
.ya_c00372{bottom:1067.910000px;}
.y9_c00372{bottom:1068.765000px;}
.y8_c00372{bottom:1092.090000px;}
.y7_c00372{bottom:1103.325000px;}
.y6_c00372{bottom:1329.690000px;}
.y2_c00372{bottom:1380.675000px;}
.y3_c00372{bottom:1382.400000px;}
.y4_c00372{bottom:1384.125000px;}
.y5_c00372{bottom:1384.995000px;}
.y1_c00372{bottom:1421.280000px;}
.h8_c00372{height:15.550313px;}
.ha_c00372{height:24.891299px;}
.h7_c00372{height:31.100625px;}
.h9_c00372{height:37.309951px;}
.h2_c00372{height:49.782598px;}
.h6_c00372{height:52.860264px;}
.h5_c00372{height:55.991924px;}
.h4_c00372{height:59.069590px;}
.h3_c00372{height:62.201250px;}
.h0_c00372{height:1526.685000px;}
.h1_c00372{height:1527.000000px;}
.w0_c00372{width:1100.730000px;}
.w1_c00372{width:1101.000000px;}
.x0_c00372{left:0.000000px;}
.x2_c00372{left:412.125000px;}
.x3_c00372{left:455.325000px;}
.x4_c00372{left:479.520000px;}
.x5_c00372{left:501.120000px;}
.x6_c00372{left:521.850000px;}
.x7_c00372{left:556.410000px;}
.x8_c00372{left:580.605000px;}
.x9_c00372{left:603.075000px;}
.x1_c00372{left:623.805000px;}
.xa_c00372{left:629.850000px;}
.xb_c00372{left:649.725000px;}
.xc_c00372{left:673.050000px;}
.xf_c00372{left:902.010000px;}
.x10_c00372{left:920.160000px;}
.x11_c00372{left:933.120000px;}
.xd_c00372{left:940.890000px;}
.xe_c00372{left:979.770000px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls0_c00372{letter-spacing:0.000000pt;}
.ws0_c00372{word-spacing:0.000000pt;}
.fs6_c00372{font-size:15.360000pt;}
.fs8_c00372{font-size:24.586667pt;}
.fs5_c00372{font-size:30.720000pt;}
.fs7_c00372{font-size:36.853333pt;}
.fs0_c00372{font-size:49.173333pt;}
.fs4_c00372{font-size:52.213333pt;}
.fs3_c00372{font-size:55.306667pt;}
.fs2_c00372{font-size:58.346667pt;}
.fs1_c00372{font-size:61.440000pt;}
.y0_c00372{bottom:0.000000pt;}
.yb_c00372{bottom:946.173333pt;}
.ya_c00372{bottom:949.253333pt;}
.y9_c00372{bottom:950.013333pt;}
.y8_c00372{bottom:970.746667pt;}
.y7_c00372{bottom:980.733333pt;}
.y6_c00372{bottom:1181.946667pt;}
.y2_c00372{bottom:1227.266667pt;}
.y3_c00372{bottom:1228.800000pt;}
.y4_c00372{bottom:1230.333333pt;}
.y5_c00372{bottom:1231.106667pt;}
.y1_c00372{bottom:1263.360000pt;}
.h8_c00372{height:13.822500pt;}
.ha_c00372{height:22.125599pt;}
.h7_c00372{height:27.645000pt;}
.h9_c00372{height:33.164401pt;}
.h2_c00372{height:44.251198pt;}
.h6_c00372{height:46.986901pt;}
.h5_c00372{height:49.770599pt;}
.h4_c00372{height:52.506302pt;}
.h3_c00372{height:55.290000pt;}
.h0_c00372{height:1357.053333pt;}
.h1_c00372{height:1357.333333pt;}
.w0_c00372{width:978.426667pt;}
.w1_c00372{width:978.666667pt;}
.x0_c00372{left:0.000000pt;}
.x2_c00372{left:366.333333pt;}
.x3_c00372{left:404.733333pt;}
.x4_c00372{left:426.240000pt;}
.x5_c00372{left:445.440000pt;}
.x6_c00372{left:463.866667pt;}
.x7_c00372{left:494.586667pt;}
.x8_c00372{left:516.093333pt;}
.x9_c00372{left:536.066667pt;}
.x1_c00372{left:554.493333pt;}
.xa_c00372{left:559.866667pt;}
.xb_c00372{left:577.533333pt;}
.xc_c00372{left:598.266667pt;}
.xf_c00372{left:801.786667pt;}
.x10_c00372{left:817.920000pt;}
.x11_c00372{left:829.440000pt;}
.xd_c00372{left:836.346667pt;}
.xe_c00372{left:870.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e01625ac0b0802213c4fe899.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:1.109863;font-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_c00373{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c00373{transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);}
.m9_c00373{transform:matrix(0.048775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048775,0.000000,0.000000,0.250000,0,0);}
.m0_c00373{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m3_c00373{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00373{transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);}
.m5_c00373{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);}
.m6_c00373{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00373{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);}
.m2_c00373{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,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;}
.fs2_c00373{font-size:3.456000px;}
.fs9_c00373{font-size:6.900000px;}
.fs5_c00373{font-size:10.380000px;}
.fs1_c00373{font-size:17.280000px;}
.fs3_c00373{font-size:20.760000px;}
.fs0_c00373{font-size:24.180000px;}
.fs4_c00373{font-size:31.080000px;}
.fs6_c00373{font-size:38.040000px;}
.fs8_c00373{font-size:127.860000px;}
.fs7_c00373{font-size:172.800000px;}
.y0_c00373{bottom:0.000000px;}
.y3_c00373{bottom:199.590000px;}
.y4_c00373{bottom:201.315000px;}
.yc_c00373{bottom:766.365000px;}
.ye_c00373{bottom:783.645000px;}
.yd_c00373{bottom:793.155000px;}
.yb_c00373{bottom:799.200000px;}
.y2_c00373{bottom:1056.675000px;}
.y1_c00373{bottom:1057.530000px;}
.y9_c00373{bottom:1080.870000px;}
.ya_c00373{bottom:1086.045000px;}
.y8_c00373{bottom:1092.090000px;}
.y7_c00373{bottom:1154.310000px;}
.y6_c00373{bottom:1155.165000px;}
.y5_c00373{bottom:1398.810000px;}
.h4_c00373{height:3.110063px;}
.hb_c00373{height:6.209326px;}
.h7_c00373{height:9.340986px;}
.h3_c00373{height:15.550313px;}
.h5_c00373{height:18.681973px;}
.h2_c00373{height:21.759639px;}
.h6_c00373{height:27.968965px;}
.h8_c00373{height:34.232285px;}
.ha_c00373{height:115.061514px;}
.h9_c00373{height:155.503125px;}
.h1_c00373{height:1507.500000px;}
.h0_c00373{height:1507.680000px;}
.w0_c00373{width:1111.965000px;}
.w1_c00373{width:1112.250000px;}
.x0_c00373{left:0.000000px;}
.x1_c00373{left:14.685000px;}
.x2_c00373{left:33.690000px;}
.x3_c00373{left:57.030000px;}
.x4_c00373{left:64.800000px;}
.x9_c00373{left:91.590000px;}
.x8_c00373{left:93.315000px;}
.xb_c00373{left:106.275000px;}
.xa_c00373{left:109.725000px;}
.xc_c00373{left:123.555000px;}
.xd_c00373{left:139.965000px;}
.x5_c00373{left:142.560000px;}
.x6_c00373{left:194.400000px;}
.x7_c00373{left:214.275000px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls0_c00373{letter-spacing:0.000000pt;}
.ws0_c00373{word-spacing:0.000000pt;}
.fs2_c00373{font-size:3.072000pt;}
.fs9_c00373{font-size:6.133333pt;}
.fs5_c00373{font-size:9.226667pt;}
.fs1_c00373{font-size:15.360000pt;}
.fs3_c00373{font-size:18.453333pt;}
.fs0_c00373{font-size:21.493333pt;}
.fs4_c00373{font-size:27.626667pt;}
.fs6_c00373{font-size:33.813333pt;}
.fs8_c00373{font-size:113.653333pt;}
.fs7_c00373{font-size:153.600000pt;}
.y0_c00373{bottom:0.000000pt;}
.y3_c00373{bottom:177.413333pt;}
.y4_c00373{bottom:178.946667pt;}
.yc_c00373{bottom:681.213333pt;}
.ye_c00373{bottom:696.573333pt;}
.yd_c00373{bottom:705.026667pt;}
.yb_c00373{bottom:710.400000pt;}
.y2_c00373{bottom:939.266667pt;}
.y1_c00373{bottom:940.026667pt;}
.y9_c00373{bottom:960.773333pt;}
.ya_c00373{bottom:965.373333pt;}
.y8_c00373{bottom:970.746667pt;}
.y7_c00373{bottom:1026.053333pt;}
.y6_c00373{bottom:1026.813333pt;}
.y5_c00373{bottom:1243.386667pt;}
.h4_c00373{height:2.764500pt;}
.hb_c00373{height:5.519401pt;}
.h7_c00373{height:8.303099pt;}
.h3_c00373{height:13.822500pt;}
.h5_c00373{height:16.606198pt;}
.h2_c00373{height:19.341901pt;}
.h6_c00373{height:24.861302pt;}
.h8_c00373{height:30.428698pt;}
.ha_c00373{height:102.276901pt;}
.h9_c00373{height:138.225000pt;}
.h1_c00373{height:1340.000000pt;}
.h0_c00373{height:1340.160000pt;}
.w0_c00373{width:988.413333pt;}
.w1_c00373{width:988.666667pt;}
.x0_c00373{left:0.000000pt;}
.x1_c00373{left:13.053333pt;}
.x2_c00373{left:29.946667pt;}
.x3_c00373{left:50.693333pt;}
.x4_c00373{left:57.600000pt;}
.x9_c00373{left:81.413333pt;}
.x8_c00373{left:82.946667pt;}
.xb_c00373{left:94.466667pt;}
.xa_c00373{left:97.533333pt;}
.xc_c00373{left:109.826667pt;}
.xd_c00373{left:124.413333pt;}
.x5_c00373{left:126.720000pt;}
.x6_c00373{left:172.800000pt;}
.x7_c00373{left:190.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_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_08684d576002b281915b29e6.woff2')format("woff");}.ff1_c00374{font-family:ff1_c00374;line-height:1.109863;font-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_c00374{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m39_c00374{transform:matrix(0.077650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077650,0.000000,0.000000,0.250000,0,0);}
.m38_c00374{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m0_c00374{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m23_c00374{transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);}
.m20_c00374{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);}
.m1a_c00374{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);}
.m1f_c00374{transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);}
.md_c00374{transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);}
.m2a_c00374{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m24_c00374{transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);}
.m27_c00374{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00374{transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);}
.m34_c00374{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m22_c00374{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);}
.m19_c00374{transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);}
.m17_c00374{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.mf_c00374{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);}
.m21_c00374{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);}
.m15_c00374{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m28_c00374{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);}
.m10_c00374{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m1b_c00374{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m16_c00374{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);}
.m2_c00374{transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);}
.m11_c00374{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);}
.m1e_c00374{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m14_c00374{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m26_c00374{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m30_c00374{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);}
.m2f_c00374{transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);}
.m18_c00374{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);}
.m1_c00374{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);}
.m32_c00374{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);}
.m25_c00374{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);}
.m5_c00374{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);}
.m3_c00374{transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);}
.m4_c00374{transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);}
.ma_c00374{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_c00374{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);}
.m29_c00374{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m12_c00374{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00374{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m33_c00374{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);}
.me_c00374{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);}
.m1c_c00374{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c00374{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6_c00374{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9_c00374{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00374{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mb_c00374{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m36_c00374{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00374{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m31_c00374{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00374{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m7_c00374{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);}
.m35_c00374{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc_c00374{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00374{transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.090000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.090000,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;}
.fs16_c00374{font-size:6.000000px;}
.fs1a_c00374{font-size:6.900000px;}
.fs1f_c00374{font-size:10.380000px;}
.fs1e_c00374{font-size:13.800000px;}
.fs9_c00374{font-size:17.280000px;}
.fs18_c00374{font-size:20.760000px;}
.fs1d_c00374{font-size:27.660000px;}
.fs17_c00374{font-size:34.560000px;}
.fs0_c00374{font-size:41.460000px;}
.fs19_c00374{font-size:44.940000px;}
.fs13_c00374{font-size:51.840000px;}
.fs1b_c00374{font-size:55.320000px;}
.fs6_c00374{font-size:62.220000px;}
.fs8_c00374{font-size:65.640000px;}
.fs7_c00374{font-size:69.120000px;}
.fs1c_c00374{font-size:72.600000px;}
.fs5_c00374{font-size:76.020000px;}
.fsd_c00374{font-size:79.500000px;}
.fsf_c00374{font-size:86.400000px;}
.fsc_c00374{font-size:89.880000px;}
.fs4_c00374{font-size:93.300000px;}
.fsb_c00374{font-size:96.780000px;}
.fse_c00374{font-size:100.200000px;}
.fs3_c00374{font-size:103.680000px;}
.fs2_c00374{font-size:107.160000px;}
.fs15_c00374{font-size:110.580000px;}
.fsa_c00374{font-size:114.060000px;}
.fs14_c00374{font-size:117.480000px;}
.fs11_c00374{font-size:120.960000px;}
.fs12_c00374{font-size:124.440000px;}
.fs1_c00374{font-size:127.860000px;}
.fs10_c00374{font-size:138.240000px;}
.y0_c00374{bottom:0.000000px;}
.y3a_c00374{bottom:355.965000px;}
.y3b_c00374{bottom:363.750000px;}
.y2e_c00374{bottom:694.650000px;}
.y2c_c00374{bottom:696.390000px;}
.y2b_c00374{bottom:697.245000px;}
.y2f_c00374{bottom:698.970000px;}
.y2d_c00374{bottom:701.565000px;}
.y26_c00374{bottom:711.075000px;}
.y28_c00374{bottom:712.800000px;}
.y27_c00374{bottom:714.525000px;}
.y2a_c00374{bottom:715.395000px;}
.y29_c00374{bottom:716.250000px;}
.y25_c00374{bottom:723.165000px;}
.y21_c00374{bottom:724.035000px;}
.y20_c00374{bottom:725.760000px;}
.y22_c00374{bottom:728.355000px;}
.y24_c00374{bottom:729.210000px;}
.y23_c00374{bottom:732.675000px;}
.y19_c00374{bottom:756.000000px;}
.y17_c00374{bottom:757.725000px;}
.y1f_c00374{bottom:758.595000px;}
.y18_c00374{bottom:759.450000px;}
.y1a_c00374{bottom:762.045000px;}
.y1d_c00374{bottom:762.915000px;}
.y1e_c00374{bottom:763.770000px;}
.y1b_c00374{bottom:764.640000px;}
.y1c_c00374{bottom:765.510000px;}
.y39_c00374{bottom:777.600000px;}
.y13_c00374{bottom:787.110000px;}
.y15_c00374{bottom:788.835000px;}
.y14_c00374{bottom:790.560000px;}
.y12_c00374{bottom:794.010000px;}
.y16_c00374{bottom:796.605000px;}
.y38_c00374{bottom:806.115000px;}
.y37_c00374{bottom:818.205000px;}
.y10_c00374{bottom:824.250000px;}
.yc_c00374{bottom:825.120000px;}
.ye_c00374{bottom:826.845000px;}
.yd_c00374{bottom:827.715000px;}
.yf_c00374{bottom:828.570000px;}
.y11_c00374{bottom:829.440000px;}
.y35_c00374{bottom:838.950000px;}
.y36_c00374{bottom:843.270000px;}
.y6_c00374{bottom:856.230000px;}
.y7_c00374{bottom:857.085000px;}
.y9_c00374{bottom:859.680000px;}
.y8_c00374{bottom:860.550000px;}
.ya_c00374{bottom:861.405000px;}
.yb_c00374{bottom:864.870000px;}
.y4_c00374{bottom:903.750000px;}
.y5_c00374{bottom:906.330000px;}
.y2_c00374{bottom:929.670000px;}
.y3_c00374{bottom:930.525000px;}
.y1_c00374{bottom:946.080000px;}
.y33_c00374{bottom:1082.595000px;}
.y34_c00374{bottom:1084.320000px;}
.y32_c00374{bottom:1292.550000px;}
.y30_c00374{bottom:1334.010000px;}
.y31_c00374{bottom:1336.605000px;}
.h18_c00374{height:5.399414px;}
.h1c_c00374{height:6.209326px;}
.h21_c00374{height:9.340986px;}
.h20_c00374{height:12.418652px;}
.hb_c00374{height:15.550313px;}
.h1a_c00374{height:18.681973px;}
.h1f_c00374{height:24.891299px;}
.h19_c00374{height:31.100625px;}
.h2_c00374{height:37.309951px;}
.h1b_c00374{height:40.441611px;}
.h15_c00374{height:46.650937px;}
.h1d_c00374{height:49.782598px;}
.h8_c00374{height:55.991924px;}
.ha_c00374{height:59.069590px;}
.h9_c00374{height:62.201250px;}
.h1e_c00374{height:65.332910px;}
.h7_c00374{height:68.410576px;}
.hf_c00374{height:71.542236px;}
.h11_c00374{height:77.751563px;}
.he_c00374{height:80.883223px;}
.h6_c00374{height:83.960889px;}
.hd_c00374{height:87.092549px;}
.h10_c00374{height:90.170215px;}
.h5_c00374{height:93.301875px;}
.h4_c00374{height:96.433535px;}
.h17_c00374{height:99.511201px;}
.hc_c00374{height:102.642861px;}
.h16_c00374{height:105.720527px;}
.h13_c00374{height:108.852188px;}
.h14_c00374{height:111.983848px;}
.h3_c00374{height:115.061514px;}
.h12_c00374{height:124.402500px;}
.h0_c00374{height:1526.685000px;}
.h1_c00374{height:1527.000000px;}
.w0_c00374{width:1100.730000px;}
.w1_c00374{width:1101.000000px;}
.x0_c00374{left:0.000000px;}
.x1_c00374{left:232.410000px;}
.x2_c00374{left:247.110000px;}
.x5_c00374{left:384.480000px;}
.x3_c00374{left:568.515000px;}
.x4_c00374{left:570.240000px;}
.x2c_c00374{left:578.010000px;}
.x13_c00374{left:582.330000px;}
.xd_c00374{left:584.925000px;}
.x24_c00374{left:590.970000px;}
.x25_c00374{left:600.480000px;}
.x6_c00374{left:604.800000px;}
.x18_c00374{left:616.890000px;}
.x14_c00374{left:619.485000px;}
.x19_c00374{left:647.130000px;}
.xe_c00374{left:653.190000px;}
.x26_c00374{left:671.325000px;}
.x21_c00374{left:674.790000px;}
.x1a_c00374{left:681.690000px;}
.x27_c00374{left:684.285000px;}
.x15_c00374{left:692.925000px;}
.x22_c00374{left:695.520000px;}
.xf_c00374{left:702.435000px;}
.x2d_c00374{left:714.525000px;}
.x1b_c00374{left:716.250000px;}
.x28_c00374{left:717.990000px;}
.x10_c00374{left:733.530000px;}
.x1c_c00374{left:738.720000px;}
.x7_c00374{left:743.040000px;}
.x1d_c00374{left:751.680000px;}
.x8_c00374{left:771.555000px;}
.x1e_c00374{left:775.005000px;}
.x23_c00374{left:776.730000px;}
.x16_c00374{left:778.470000px;}
.x2e_c00374{left:793.155000px;}
.x29_c00374{left:794.880000px;}
.x11_c00374{left:803.520000px;}
.x1f_c00374{left:807.840000px;}
.x9_c00374{left:809.565000px;}
.x20_c00374{left:825.120000px;}
.x2a_c00374{left:829.440000px;}
.xa_c00374{left:843.270000px;}
.x12_c00374{left:848.445000px;}
.x17_c00374{left:863.130000px;}
.xb_c00374{left:864.870000px;}
.xc_c00374{left:873.510000px;}
.x2b_c00374{left:882.150000px;}
.x34_c00374{left:991.875000px;}
.x35_c00374{left:1003.965000px;}
.x2f_c00374{left:1029.030000px;}
.x30_c00374{left:1041.120000px;}
.x31_c00374{left:1043.715000px;}
.x36_c00374{left:1067.040000px;}
.x32_c00374{left:1069.635000px;}
.x37_c00374{left:1088.640000px;}
.x33_c00374{left:1092.090000px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls0_c00374{letter-spacing:0.000000pt;}
.ws0_c00374{word-spacing:0.000000pt;}
.fs16_c00374{font-size:5.333333pt;}
.fs1a_c00374{font-size:6.133333pt;}
.fs1f_c00374{font-size:9.226667pt;}
.fs1e_c00374{font-size:12.266667pt;}
.fs9_c00374{font-size:15.360000pt;}
.fs18_c00374{font-size:18.453333pt;}
.fs1d_c00374{font-size:24.586667pt;}
.fs17_c00374{font-size:30.720000pt;}
.fs0_c00374{font-size:36.853333pt;}
.fs19_c00374{font-size:39.946667pt;}
.fs13_c00374{font-size:46.080000pt;}
.fs1b_c00374{font-size:49.173333pt;}
.fs6_c00374{font-size:55.306667pt;}
.fs8_c00374{font-size:58.346667pt;}
.fs7_c00374{font-size:61.440000pt;}
.fs1c_c00374{font-size:64.533333pt;}
.fs5_c00374{font-size:67.573333pt;}
.fsd_c00374{font-size:70.666667pt;}
.fsf_c00374{font-size:76.800000pt;}
.fsc_c00374{font-size:79.893333pt;}
.fs4_c00374{font-size:82.933333pt;}
.fsb_c00374{font-size:86.026667pt;}
.fse_c00374{font-size:89.066667pt;}
.fs3_c00374{font-size:92.160000pt;}
.fs2_c00374{font-size:95.253333pt;}
.fs15_c00374{font-size:98.293333pt;}
.fsa_c00374{font-size:101.386667pt;}
.fs14_c00374{font-size:104.426667pt;}
.fs11_c00374{font-size:107.520000pt;}
.fs12_c00374{font-size:110.613333pt;}
.fs1_c00374{font-size:113.653333pt;}
.fs10_c00374{font-size:122.880000pt;}
.y0_c00374{bottom:0.000000pt;}
.y3a_c00374{bottom:316.413333pt;}
.y3b_c00374{bottom:323.333333pt;}
.y2e_c00374{bottom:617.466667pt;}
.y2c_c00374{bottom:619.013333pt;}
.y2b_c00374{bottom:619.773333pt;}
.y2f_c00374{bottom:621.306667pt;}
.y2d_c00374{bottom:623.613333pt;}
.y26_c00374{bottom:632.066667pt;}
.y28_c00374{bottom:633.600000pt;}
.y27_c00374{bottom:635.133333pt;}
.y2a_c00374{bottom:635.906667pt;}
.y29_c00374{bottom:636.666667pt;}
.y25_c00374{bottom:642.813333pt;}
.y21_c00374{bottom:643.586667pt;}
.y20_c00374{bottom:645.120000pt;}
.y22_c00374{bottom:647.426667pt;}
.y24_c00374{bottom:648.186667pt;}
.y23_c00374{bottom:651.266667pt;}
.y19_c00374{bottom:672.000000pt;}
.y17_c00374{bottom:673.533333pt;}
.y1f_c00374{bottom:674.306667pt;}
.y18_c00374{bottom:675.066667pt;}
.y1a_c00374{bottom:677.373333pt;}
.y1d_c00374{bottom:678.146667pt;}
.y1e_c00374{bottom:678.906667pt;}
.y1b_c00374{bottom:679.680000pt;}
.y1c_c00374{bottom:680.453333pt;}
.y39_c00374{bottom:691.200000pt;}
.y13_c00374{bottom:699.653333pt;}
.y15_c00374{bottom:701.186667pt;}
.y14_c00374{bottom:702.720000pt;}
.y12_c00374{bottom:705.786667pt;}
.y16_c00374{bottom:708.093333pt;}
.y38_c00374{bottom:716.546667pt;}
.y37_c00374{bottom:727.293333pt;}
.y10_c00374{bottom:732.666667pt;}
.yc_c00374{bottom:733.440000pt;}
.ye_c00374{bottom:734.973333pt;}
.yd_c00374{bottom:735.746667pt;}
.yf_c00374{bottom:736.506667pt;}
.y11_c00374{bottom:737.280000pt;}
.y35_c00374{bottom:745.733333pt;}
.y36_c00374{bottom:749.573333pt;}
.y6_c00374{bottom:761.093333pt;}
.y7_c00374{bottom:761.853333pt;}
.y9_c00374{bottom:764.160000pt;}
.y8_c00374{bottom:764.933333pt;}
.ya_c00374{bottom:765.693333pt;}
.yb_c00374{bottom:768.773333pt;}
.y4_c00374{bottom:803.333333pt;}
.y5_c00374{bottom:805.626667pt;}
.y2_c00374{bottom:826.373333pt;}
.y3_c00374{bottom:827.133333pt;}
.y1_c00374{bottom:840.960000pt;}
.y33_c00374{bottom:962.306667pt;}
.y34_c00374{bottom:963.840000pt;}
.y32_c00374{bottom:1148.933333pt;}
.y30_c00374{bottom:1185.786667pt;}
.y31_c00374{bottom:1188.093333pt;}
.h18_c00374{height:4.799479pt;}
.h1c_c00374{height:5.519401pt;}
.h21_c00374{height:8.303099pt;}
.h20_c00374{height:11.038802pt;}
.hb_c00374{height:13.822500pt;}
.h1a_c00374{height:16.606198pt;}
.h1f_c00374{height:22.125599pt;}
.h19_c00374{height:27.645000pt;}
.h2_c00374{height:33.164401pt;}
.h1b_c00374{height:35.948099pt;}
.h15_c00374{height:41.467500pt;}
.h1d_c00374{height:44.251198pt;}
.h8_c00374{height:49.770599pt;}
.ha_c00374{height:52.506302pt;}
.h9_c00374{height:55.290000pt;}
.h1e_c00374{height:58.073698pt;}
.h7_c00374{height:60.809401pt;}
.hf_c00374{height:63.593099pt;}
.h11_c00374{height:69.112500pt;}
.he_c00374{height:71.896198pt;}
.h6_c00374{height:74.631901pt;}
.hd_c00374{height:77.415599pt;}
.h10_c00374{height:80.151302pt;}
.h5_c00374{height:82.935000pt;}
.h4_c00374{height:85.718698pt;}
.h17_c00374{height:88.454401pt;}
.hc_c00374{height:91.238099pt;}
.h16_c00374{height:93.973802pt;}
.h13_c00374{height:96.757500pt;}
.h14_c00374{height:99.541198pt;}
.h3_c00374{height:102.276901pt;}
.h12_c00374{height:110.580000pt;}
.h0_c00374{height:1357.053333pt;}
.h1_c00374{height:1357.333333pt;}
.w0_c00374{width:978.426667pt;}
.w1_c00374{width:978.666667pt;}
.x0_c00374{left:0.000000pt;}
.x1_c00374{left:206.586667pt;}
.x2_c00374{left:219.653333pt;}
.x5_c00374{left:341.760000pt;}
.x3_c00374{left:505.346667pt;}
.x4_c00374{left:506.880000pt;}
.x2c_c00374{left:513.786667pt;}
.x13_c00374{left:517.626667pt;}
.xd_c00374{left:519.933333pt;}
.x24_c00374{left:525.306667pt;}
.x25_c00374{left:533.760000pt;}
.x6_c00374{left:537.600000pt;}
.x18_c00374{left:548.346667pt;}
.x14_c00374{left:550.653333pt;}
.x19_c00374{left:575.226667pt;}
.xe_c00374{left:580.613333pt;}
.x26_c00374{left:596.733333pt;}
.x21_c00374{left:599.813333pt;}
.x1a_c00374{left:605.946667pt;}
.x27_c00374{left:608.253333pt;}
.x15_c00374{left:615.933333pt;}
.x22_c00374{left:618.240000pt;}
.xf_c00374{left:624.386667pt;}
.x2d_c00374{left:635.133333pt;}
.x1b_c00374{left:636.666667pt;}
.x28_c00374{left:638.213333pt;}
.x10_c00374{left:652.026667pt;}
.x1c_c00374{left:656.640000pt;}
.x7_c00374{left:660.480000pt;}
.x1d_c00374{left:668.160000pt;}
.x8_c00374{left:685.826667pt;}
.x1e_c00374{left:688.893333pt;}
.x23_c00374{left:690.426667pt;}
.x16_c00374{left:691.973333pt;}
.x2e_c00374{left:705.026667pt;}
.x29_c00374{left:706.560000pt;}
.x11_c00374{left:714.240000pt;}
.x1f_c00374{left:718.080000pt;}
.x9_c00374{left:719.613333pt;}
.x20_c00374{left:733.440000pt;}
.x2a_c00374{left:737.280000pt;}
.xa_c00374{left:749.573333pt;}
.x12_c00374{left:754.173333pt;}
.x17_c00374{left:767.226667pt;}
.xb_c00374{left:768.773333pt;}
.xc_c00374{left:776.453333pt;}
.x2b_c00374{left:784.133333pt;}
.x34_c00374{left:881.666667pt;}
.x35_c00374{left:892.413333pt;}
.x2f_c00374{left:914.693333pt;}
.x30_c00374{left:925.440000pt;}
.x31_c00374{left:927.746667pt;}
.x36_c00374{left:948.480000pt;}
.x32_c00374{left:950.786667pt;}
.x37_c00374{left:967.680000pt;}
.x33_c00374{left:970.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ae939476e35fa55603f3dc84.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:1.109863;font-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_c00375{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);}
.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;}
.fs0_c00375{font-size:600.000000px;}
.y0_c00375{bottom:0.000000px;}
.y1_c00375{bottom:15.000000px;}
.h2_c00375{height:539.941406px;}
.h1_c00375{height:1507.500000px;}
.h0_c00375{height:1507.680000px;}
.w0_c00375{width:1111.965000px;}
.w1_c00375{width:1112.250000px;}
.x0_c00375{left:0.000000px;}
.x1_c00375{left:15.000000px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls0_c00375{letter-spacing:0.000000pt;}
.ws0_c00375{word-spacing:0.000000pt;}
.fs0_c00375{font-size:533.333333pt;}
.y0_c00375{bottom:0.000000pt;}
.y1_c00375{bottom:13.333333pt;}
.h2_c00375{height:479.947917pt;}
.h1_c00375{height:1340.000000pt;}
.h0_c00375{height:1340.160000pt;}
.w0_c00375{width:988.413333pt;}
.w1_c00375{width:988.666667pt;}
.x0_c00375{left:0.000000pt;}
.x1_c00375{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0f83d564496a35b1a79b7fe.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.109863;font-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_c00376{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m3_c00376{transform:matrix(0.066050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066050,0.000000,0.000000,0.250000,0,0);}
.m4_c00376{transform:matrix(0.080450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080450,0.000000,0.000000,0.250000,0,0);}
.m2_c00376{transform:matrix(0.100175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100175,0.000000,0.000000,0.250000,0,0);}
.m1_c00376{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);}
.m5_c00376{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);}
.m6_c00376{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,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;}
.fs5_c00376{font-size:10.380000px;}
.fs1_c00376{font-size:17.280000px;}
.fs6_c00376{font-size:34.560000px;}
.fs4_c00376{font-size:96.780000px;}
.fs0_c00376{font-size:103.680000px;}
.fs3_c00376{font-size:141.720000px;}
.fs2_c00376{font-size:155.520000px;}
.y0_c00376{bottom:0.000000px;}
.y7_c00376{bottom:690.330000px;}
.y6_c00376{bottom:726.630000px;}
.y5_c00376{bottom:744.765000px;}
.y4_c00376{bottom:769.830000px;}
.y3_c00376{bottom:811.290000px;}
.y2_c00376{bottom:813.885000px;}
.y1_c00376{bottom:876.960000px;}
.h7_c00376{height:9.340986px;}
.h3_c00376{height:15.550313px;}
.h8_c00376{height:31.100625px;}
.h6_c00376{height:87.092549px;}
.h2_c00376{height:93.301875px;}
.h5_c00376{height:127.534160px;}
.h4_c00376{height:139.952812px;}
.h0_c00376{height:1526.685000px;}
.h1_c00376{height:1527.000000px;}
.w0_c00376{width:1100.730000px;}
.w1_c00376{width:1101.000000px;}
.x0_c00376{left:0.000000px;}
.x2_c00376{left:949.530000px;}
.x3_c00376{left:984.090000px;}
.x1_c00376{left:990.150000px;}
.x5_c00376{left:1035.930000px;}
.x4_c00376{left:1058.400000px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls0_c00376{letter-spacing:0.000000pt;}
.ws0_c00376{word-spacing:0.000000pt;}
.fs5_c00376{font-size:9.226667pt;}
.fs1_c00376{font-size:15.360000pt;}
.fs6_c00376{font-size:30.720000pt;}
.fs4_c00376{font-size:86.026667pt;}
.fs0_c00376{font-size:92.160000pt;}
.fs3_c00376{font-size:125.973333pt;}
.fs2_c00376{font-size:138.240000pt;}
.y0_c00376{bottom:0.000000pt;}
.y7_c00376{bottom:613.626667pt;}
.y6_c00376{bottom:645.893333pt;}
.y5_c00376{bottom:662.013333pt;}
.y4_c00376{bottom:684.293333pt;}
.y3_c00376{bottom:721.146667pt;}
.y2_c00376{bottom:723.453333pt;}
.y1_c00376{bottom:779.520000pt;}
.h7_c00376{height:8.303099pt;}
.h3_c00376{height:13.822500pt;}
.h8_c00376{height:27.645000pt;}
.h6_c00376{height:77.415599pt;}
.h2_c00376{height:82.935000pt;}
.h5_c00376{height:113.363698pt;}
.h4_c00376{height:124.402500pt;}
.h0_c00376{height:1357.053333pt;}
.h1_c00376{height:1357.333333pt;}
.w0_c00376{width:978.426667pt;}
.w1_c00376{width:978.666667pt;}
.x0_c00376{left:0.000000pt;}
.x2_c00376{left:844.026667pt;}
.x3_c00376{left:874.746667pt;}
.x1_c00376{left:880.133333pt;}
.x5_c00376{left:920.826667pt;}
.x4_c00376{left:940.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_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_b11a87a7e8b230bde41f1cba.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:1.109863;font-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_c00377{transform:matrix(0.044025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044025,0.000000,0.000000,0.250000,0,0);}
.m3_c00377{transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);}
.m6_c00377{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c00377{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);}
.m7_c00377{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00377{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);}
.m1_c00377{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m2_c00377{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);}
.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;}
.fs6_c00377{font-size:6.000000px;}
.fs0_c00377{font-size:17.280000px;}
.fs7_c00377{font-size:24.180000px;}
.fs1_c00377{font-size:31.080000px;}
.fs2_c00377{font-size:38.040000px;}
.fs3_c00377{font-size:120.960000px;}
.fs5_c00377{font-size:141.720000px;}
.fs4_c00377{font-size:152.040000px;}
.y0_c00377{bottom:0.000000px;}
.y8_c00377{bottom:661.830000px;}
.y7_c00377{bottom:666.150000px;}
.y2_c00377{bottom:700.710000px;}
.y6_c00377{bottom:758.595000px;}
.y1_c00377{bottom:802.650000px;}
.y5_c00377{bottom:805.245000px;}
.y4_c00377{bottom:869.190000px;}
.y3_c00377{bottom:902.880000px;}
.h8_c00377{height:5.399414px;}
.h2_c00377{height:15.550313px;}
.h9_c00377{height:21.759639px;}
.h3_c00377{height:27.968965px;}
.h4_c00377{height:34.232285px;}
.h5_c00377{height:108.852188px;}
.h7_c00377{height:127.534160px;}
.h6_c00377{height:136.821152px;}
.h1_c00377{height:1507.500000px;}
.h0_c00377{height:1507.680000px;}
.w0_c00377{width:1111.965000px;}
.w1_c00377{width:1112.250000px;}
.x0_c00377{left:0.000000px;}
.x2_c00377{left:42.330000px;}
.x1_c00377{left:62.205000px;}
.x4_c00377{left:96.765000px;}
.x3_c00377{left:103.680000px;}
.x5_c00377{left:133.050000px;}
.x6_c00377{left:140.835000px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls0_c00377{letter-spacing:0.000000pt;}
.ws0_c00377{word-spacing:0.000000pt;}
.fs6_c00377{font-size:5.333333pt;}
.fs0_c00377{font-size:15.360000pt;}
.fs7_c00377{font-size:21.493333pt;}
.fs1_c00377{font-size:27.626667pt;}
.fs2_c00377{font-size:33.813333pt;}
.fs3_c00377{font-size:107.520000pt;}
.fs5_c00377{font-size:125.973333pt;}
.fs4_c00377{font-size:135.146667pt;}
.y0_c00377{bottom:0.000000pt;}
.y8_c00377{bottom:588.293333pt;}
.y7_c00377{bottom:592.133333pt;}
.y2_c00377{bottom:622.853333pt;}
.y6_c00377{bottom:674.306667pt;}
.y1_c00377{bottom:713.466667pt;}
.y5_c00377{bottom:715.773333pt;}
.y4_c00377{bottom:772.613333pt;}
.y3_c00377{bottom:802.560000pt;}
.h8_c00377{height:4.799479pt;}
.h2_c00377{height:13.822500pt;}
.h9_c00377{height:19.341901pt;}
.h3_c00377{height:24.861302pt;}
.h4_c00377{height:30.428698pt;}
.h5_c00377{height:96.757500pt;}
.h7_c00377{height:113.363698pt;}
.h6_c00377{height:121.618802pt;}
.h1_c00377{height:1340.000000pt;}
.h0_c00377{height:1340.160000pt;}
.w0_c00377{width:988.413333pt;}
.w1_c00377{width:988.666667pt;}
.x0_c00377{left:0.000000pt;}
.x2_c00377{left:37.626667pt;}
.x1_c00377{left:55.293333pt;}
.x4_c00377{left:86.013333pt;}
.x3_c00377{left:92.160000pt;}
.x5_c00377{left:118.266667pt;}
.x6_c00377{left:125.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea3ae17e0631711f1b8630c9.woff2')format("woff");}.ff1_c00378{font-family:ff1_c00378;line-height:1.109863;font-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_c00378{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.md_c00378{transform:matrix(0.049225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049225,0.000000,0.000000,0.250000,0,0);}
.m9_c00378{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m0_c00378{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00378{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m3_c00378{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);}
.m4_c00378{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);}
.mc_c00378{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c00378{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c00378{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m6_c00378{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1_c00378{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma_c00378{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m7_c00378{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);}
.mb_c00378{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.v1_c00378{vertical-align:6.900000px;}
.ls1_c00378{letter-spacing:0.000000px;}
.ls0_c00378{letter-spacing:61.315440px;}
.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:3.456000px;}
.fs2_c00378{font-size:6.900000px;}
.fs1_c00378{font-size:10.380000px;}
.fs3_c00378{font-size:17.280000px;}
.fs4_c00378{font-size:20.760000px;}
.fs5_c00378{font-size:24.180000px;}
.fs7_c00378{font-size:27.660000px;}
.fs6_c00378{font-size:31.080000px;}
.fs8_c00378{font-size:58.740000px;}
.fs9_c00378{font-size:190.080000px;}
.y0_c00378{bottom:0.000000px;}
.y13_c00378{bottom:509.760000px;}
.y12_c00378{bottom:512.355000px;}
.y10_c00378{bottom:516.675000px;}
.y11_c00378{bottom:520.995000px;}
.yf_c00378{bottom:622.080000px;}
.ye_c00378{bottom:627.270000px;}
.yd_c00378{bottom:727.485000px;}
.yb_c00378{bottom:728.355000px;}
.ya_c00378{bottom:864.870000px;}
.yc_c00378{bottom:1281.315000px;}
.y9_c00378{bottom:1467.075000px;}
.y7_c00378{bottom:1473.990000px;}
.y8_c00378{bottom:1474.845000px;}
.y6_c00378{bottom:1475.715000px;}
.y5_c00378{bottom:1477.440000px;}
.y4_c00378{bottom:1478.310000px;}
.y3_c00378{bottom:1481.760000px;}
.y2_c00378{bottom:1487.805000px;}
.y1_c00378{bottom:1493.850000px;}
.h2_c00378{height:3.110063px;}
.h4_c00378{height:6.209326px;}
.h3_c00378{height:9.340986px;}
.h5_c00378{height:15.550313px;}
.h6_c00378{height:18.681973px;}
.h7_c00378{height:21.759639px;}
.ha_c00378{height:22.450312px;}
.h9_c00378{height:24.891299px;}
.h8_c00378{height:27.968965px;}
.hb_c00378{height:52.860264px;}
.hc_c00378{height:171.053437px;}
.h0_c00378{height:1526.685000px;}
.h1_c00378{height:1527.000000px;}
.w0_c00378{width:1100.730000px;}
.w1_c00378{width:1101.000000px;}
.x0_c00378{left:0.000000px;}
.xb_c00378{left:91.590000px;}
.xc_c00378{left:97.635000px;}
.x1_c00378{left:325.725000px;}
.x3_c00378{left:797.475000px;}
.xd_c00378{left:917.565000px;}
.xe_c00378{left:933.990000px;}
.x4_c00378{left:936.570000px;}
.x5_c00378{left:945.210000px;}
.x6_c00378{left:959.040000px;}
.x7_c00378{left:982.365000px;}
.x10_c00378{left:991.875000px;}
.xf_c00378{left:1003.965000px;}
.x8_c00378{left:1005.690000px;}
.x9_c00378{left:1010.010000px;}
.xa_c00378{left:1015.200000px;}
.x11_c00378{left:1034.205000px;}
.x2_c00378{left:1037.670000px;}
.x12_c00378{left:1051.485000px;}
.x13_c00378{left:1086.045000px;}
.x14_c00378{left:1092.090000px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.v1_c00378{vertical-align:6.133333pt;}
.ls1_c00378{letter-spacing:0.000000pt;}
.ls0_c00378{letter-spacing:54.502613pt;}
.ws0_c00378{word-spacing:0.000000pt;}
.fs0_c00378{font-size:3.072000pt;}
.fs2_c00378{font-size:6.133333pt;}
.fs1_c00378{font-size:9.226667pt;}
.fs3_c00378{font-size:15.360000pt;}
.fs4_c00378{font-size:18.453333pt;}
.fs5_c00378{font-size:21.493333pt;}
.fs7_c00378{font-size:24.586667pt;}
.fs6_c00378{font-size:27.626667pt;}
.fs8_c00378{font-size:52.213333pt;}
.fs9_c00378{font-size:168.960000pt;}
.y0_c00378{bottom:0.000000pt;}
.y13_c00378{bottom:453.120000pt;}
.y12_c00378{bottom:455.426667pt;}
.y10_c00378{bottom:459.266667pt;}
.y11_c00378{bottom:463.106667pt;}
.yf_c00378{bottom:552.960000pt;}
.ye_c00378{bottom:557.573333pt;}
.yd_c00378{bottom:646.653333pt;}
.yb_c00378{bottom:647.426667pt;}
.ya_c00378{bottom:768.773333pt;}
.yc_c00378{bottom:1138.946667pt;}
.y9_c00378{bottom:1304.066667pt;}
.y7_c00378{bottom:1310.213333pt;}
.y8_c00378{bottom:1310.973333pt;}
.y6_c00378{bottom:1311.746667pt;}
.y5_c00378{bottom:1313.280000pt;}
.y4_c00378{bottom:1314.053333pt;}
.y3_c00378{bottom:1317.120000pt;}
.y2_c00378{bottom:1322.493333pt;}
.y1_c00378{bottom:1327.866667pt;}
.h2_c00378{height:2.764500pt;}
.h4_c00378{height:5.519401pt;}
.h3_c00378{height:8.303099pt;}
.h5_c00378{height:13.822500pt;}
.h6_c00378{height:16.606198pt;}
.h7_c00378{height:19.341901pt;}
.ha_c00378{height:19.955833pt;}
.h9_c00378{height:22.125599pt;}
.h8_c00378{height:24.861302pt;}
.hb_c00378{height:46.986901pt;}
.hc_c00378{height:152.047500pt;}
.h0_c00378{height:1357.053333pt;}
.h1_c00378{height:1357.333333pt;}
.w0_c00378{width:978.426667pt;}
.w1_c00378{width:978.666667pt;}
.x0_c00378{left:0.000000pt;}
.xb_c00378{left:81.413333pt;}
.xc_c00378{left:86.786667pt;}
.x1_c00378{left:289.533333pt;}
.x3_c00378{left:708.866667pt;}
.xd_c00378{left:815.613333pt;}
.xe_c00378{left:830.213333pt;}
.x4_c00378{left:832.506667pt;}
.x5_c00378{left:840.186667pt;}
.x6_c00378{left:852.480000pt;}
.x7_c00378{left:873.213333pt;}
.x10_c00378{left:881.666667pt;}
.xf_c00378{left:892.413333pt;}
.x8_c00378{left:893.946667pt;}
.x9_c00378{left:897.786667pt;}
.xa_c00378{left:902.400000pt;}
.x11_c00378{left:919.293333pt;}
.x2_c00378{left:922.373333pt;}
.x12_c00378{left:934.653333pt;}
.x13_c00378{left:965.373333pt;}
.x14_c00378{left:970.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00379;src:url('chunks/assets/font_6848f6352802e11a25566fc2.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:1.109863;font-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_c00379{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);}
.v0_c00379{vertical-align:0.000000px;}
.ls0_c00379{letter-spacing:0.000000px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00379{word-spacing:0.000000px;}
.fc0_c00379{color:transparent;}
.fs0_c00379{font-size:600.000000px;}
.y0_c00379{bottom:0.000000px;}
.y1_c00379{bottom:15.000000px;}
.h2_c00379{height:539.941406px;}
.h1_c00379{height:1507.500000px;}
.h0_c00379{height:1507.680000px;}
.w0_c00379{width:1111.965000px;}
.w1_c00379{width:1112.250000px;}
.x0_c00379{left:0.000000px;}
.x1_c00379{left:15.000000px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls0_c00379{letter-spacing:0.000000pt;}
.ws0_c00379{word-spacing:0.000000pt;}
.fs0_c00379{font-size:533.333333pt;}
.y0_c00379{bottom:0.000000pt;}
.y1_c00379{bottom:13.333333pt;}
.h2_c00379{height:479.947917pt;}
.h1_c00379{height:1340.000000pt;}
.h0_c00379{height:1340.160000pt;}
.w0_c00379{width:988.413333pt;}
.w1_c00379{width:988.666667pt;}
.x0_c00379{left:0.000000pt;}
.x1_c00379{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b955a21dd50330c96963ad8.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.109863;font-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_c00380{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);}
.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;}
.fs0_c00380{font-size:600.000000px;}
.y0_c00380{bottom:0.000000px;}
.y1_c00380{bottom:15.000000px;}
.h2_c00380{height:539.941406px;}
.h0_c00380{height:1515.450000px;}
.h1_c00380{height:1515.750000px;}
.w1_c00380{width:1080.750000px;}
.w0_c00380{width:1080.870000px;}
.x0_c00380{left:0.000000px;}
.x1_c00380{left:15.000000px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls0_c00380{letter-spacing:0.000000pt;}
.ws0_c00380{word-spacing:0.000000pt;}
.fs0_c00380{font-size:533.333333pt;}
.y0_c00380{bottom:0.000000pt;}
.y1_c00380{bottom:13.333333pt;}
.h2_c00380{height:479.947917pt;}
.h0_c00380{height:1347.066667pt;}
.h1_c00380{height:1347.333333pt;}
.w1_c00380{width:960.666667pt;}
.w0_c00380{width:960.773333pt;}
.x0_c00380{left:0.000000pt;}
.x1_c00380{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aaeadf25fc429fc5260e7325.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c00381{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00381{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.m38_c00381{transform:matrix(0.120200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120200,0.000000,0.000000,0.250000,0,0);}
.m28_c00381{transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);}
.m4b_c00381{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);}
.m27_c00381{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m32_c00381{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);}
.m45_c00381{transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);}
.m42_c00381{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);}
.m4d_c00381{transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);}
.m5_c00381{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00381{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m41_c00381{transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);}
.m34_c00381{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);}
.m37_c00381{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);}
.m36_c00381{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m44_c00381{transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);}
.m2c_c00381{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m35_c00381{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m31_c00381{transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);}
.m26_c00381{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);}
.me_c00381{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);}
.m3f_c00381{transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);}
.m3e_c00381{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00381{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);}
.m16_c00381{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);}
.m2a_c00381{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);}
.m2f_c00381{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);}
.m2e_c00381{transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);}
.md_c00381{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m3d_c00381{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);}
.m40_c00381{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.m13_c00381{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.mf_c00381{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m30_c00381{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m4_c00381{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);}
.m29_c00381{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);}
.m23_c00381{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);}
.m2b_c00381{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00381{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);}
.m7_c00381{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);}
.m10_c00381{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00381{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m12_c00381{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);}
.m8_c00381{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c00381{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c00381{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);}
.m46_c00381{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m43_c00381{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m21_c00381{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);}
.m1c_c00381{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);}
.m15_c00381{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m17_c00381{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mc_c00381{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);}
.m39_c00381{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);}
.m24_c00381{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m20_c00381{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m48_c00381{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m22_c00381{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m11_c00381{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);}
.m1f_c00381{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);}
.m1_c00381{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);}
.m1e_c00381{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);}
.m47_c00381{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00381{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m25_c00381{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);}
.m4c_c00381{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);}
.m1a_c00381{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);}
.mb_c00381{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00381{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m18_c00381{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m14_c00381{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m6_c00381{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m0_c00381{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m3_c00381{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m33_c00381{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00381{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m49_c00381{transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.230000,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;}
.fs4_c00381{font-size:3.456000px;}
.fs18_c00381{font-size:6.900000px;}
.fs3_c00381{font-size:10.380000px;}
.fs21_c00381{font-size:13.800000px;}
.fs0_c00381{font-size:17.280000px;}
.fs5_c00381{font-size:24.180000px;}
.fs2_c00381{font-size:27.660000px;}
.fs1_c00381{font-size:31.080000px;}
.fs20_c00381{font-size:38.040000px;}
.fs1d_c00381{font-size:41.460000px;}
.fsa_c00381{font-size:51.840000px;}
.fs1f_c00381{font-size:55.320000px;}
.fs11_c00381{font-size:62.220000px;}
.fs6_c00381{font-size:65.640000px;}
.fs9_c00381{font-size:69.120000px;}
.fs10_c00381{font-size:72.600000px;}
.fse_c00381{font-size:76.020000px;}
.fsf_c00381{font-size:79.500000px;}
.fs16_c00381{font-size:82.920000px;}
.fs7_c00381{font-size:86.400000px;}
.fs19_c00381{font-size:89.880000px;}
.fs8_c00381{font-size:93.300000px;}
.fs14_c00381{font-size:96.780000px;}
.fs12_c00381{font-size:100.200000px;}
.fsd_c00381{font-size:103.680000px;}
.fs17_c00381{font-size:107.160000px;}
.fsb_c00381{font-size:110.580000px;}
.fs15_c00381{font-size:114.060000px;}
.fsc_c00381{font-size:120.960000px;}
.fs1a_c00381{font-size:127.860000px;}
.fs1b_c00381{font-size:141.720000px;}
.fs13_c00381{font-size:145.140000px;}
.fs1c_c00381{font-size:148.620000px;}
.fs1e_c00381{font-size:162.420000px;}
.y0_c00381{bottom:0.000000px;}
.y3c_c00381{bottom:350.790000px;}
.y3b_c00381{bottom:381.030000px;}
.y34_c00381{bottom:384.480000px;}
.y39_c00381{bottom:398.310000px;}
.y36_c00381{bottom:399.165000px;}
.y35_c00381{bottom:400.035000px;}
.y38_c00381{bottom:401.760000px;}
.y37_c00381{bottom:407.805000px;}
.y3a_c00381{bottom:412.995000px;}
.y32_c00381{bottom:421.635000px;}
.y31_c00381{bottom:423.360000px;}
.y2f_c00381{bottom:425.085000px;}
.y2d_c00381{bottom:427.680000px;}
.y33_c00381{bottom:429.405000px;}
.y30_c00381{bottom:430.275000px;}
.y2e_c00381{bottom:432.000000px;}
.y2b_c00381{bottom:456.195000px;}
.y27_c00381{bottom:457.050000px;}
.y28_c00381{bottom:457.920000px;}
.y2a_c00381{bottom:459.645000px;}
.y25_c00381{bottom:462.240000px;}
.y26_c00381{bottom:463.110000px;}
.y24_c00381{bottom:465.690000px;}
.y29_c00381{bottom:481.245000px;}
.y2c_c00381{bottom:482.115000px;}
.y1c_c00381{bottom:483.840000px;}
.y23_c00381{bottom:487.290000px;}
.y22_c00381{bottom:488.160000px;}
.y1f_c00381{bottom:490.755000px;}
.y1b_c00381{bottom:493.350000px;}
.y1d_c00381{bottom:495.075000px;}
.y1e_c00381{bottom:495.930000px;}
.y20_c00381{bottom:496.800000px;}
.y1a_c00381{bottom:508.035000px;}
.y21_c00381{bottom:513.210000px;}
.y19_c00381{bottom:520.125000px;}
.y3e_c00381{bottom:520.995000px;}
.y12_c00381{bottom:525.315000px;}
.y14_c00381{bottom:526.170000px;}
.y13_c00381{bottom:527.040000px;}
.y16_c00381{bottom:527.910000px;}
.y15_c00381{bottom:528.765000px;}
.y17_c00381{bottom:529.635000px;}
.y18_c00381{bottom:533.955000px;}
.y11_c00381{bottom:536.550000px;}
.y3d_c00381{bottom:546.915000px;}
.y8_c00381{bottom:566.790000px;}
.yf_c00381{bottom:571.110000px;}
.y10_c00381{bottom:574.560000px;}
.yc_c00381{bottom:599.610000px;}
.yd_c00381{bottom:600.480000px;}
.ye_c00381{bottom:601.350000px;}
.ya_c00381{bottom:612.570000px;}
.yb_c00381{bottom:613.440000px;}
.y9_c00381{bottom:641.955000px;}
.y5_c00381{bottom:663.555000px;}
.y7_c00381{bottom:664.410000px;}
.y6_c00381{bottom:667.875000px;}
.y3_c00381{bottom:673.920000px;}
.y4_c00381{bottom:677.370000px;}
.y2_c00381{bottom:862.275000px;}
.y1_c00381{bottom:1340.925000px;}
.h6_c00381{height:3.110063px;}
.h1a_c00381{height:6.209326px;}
.h5_c00381{height:9.340986px;}
.h23_c00381{height:12.418652px;}
.h2_c00381{height:15.550313px;}
.h7_c00381{height:21.759639px;}
.h4_c00381{height:24.891299px;}
.h3_c00381{height:27.968965px;}
.h22_c00381{height:34.232285px;}
.h1f_c00381{height:37.309951px;}
.hc_c00381{height:46.650937px;}
.h21_c00381{height:49.782598px;}
.h13_c00381{height:55.991924px;}
.h8_c00381{height:59.069590px;}
.hb_c00381{height:62.201250px;}
.h12_c00381{height:65.332910px;}
.h10_c00381{height:68.410576px;}
.h11_c00381{height:71.542236px;}
.h18_c00381{height:74.619902px;}
.h9_c00381{height:77.751563px;}
.h1b_c00381{height:80.883223px;}
.ha_c00381{height:83.960889px;}
.h16_c00381{height:87.092549px;}
.h14_c00381{height:90.170215px;}
.hf_c00381{height:93.301875px;}
.h19_c00381{height:96.433535px;}
.hd_c00381{height:99.511201px;}
.h17_c00381{height:102.642861px;}
.he_c00381{height:108.852188px;}
.h1c_c00381{height:115.061514px;}
.h1d_c00381{height:127.534160px;}
.h15_c00381{height:130.611826px;}
.h1e_c00381{height:133.743486px;}
.h20_c00381{height:146.162139px;}
.h1_c00381{height:1502.250000px;}
.h0_c00381{height:1502.490000px;}
.w0_c00381{width:1088.640000px;}
.w1_c00381{width:1089.000000px;}
.x0_c00381{left:0.000000px;}
.x45_c00381{left:10.365000px;}
.x1_c00381{left:14.685000px;}
.x2_c00381{left:43.200000px;}
.x46_c00381{left:53.565000px;}
.x47_c00381{left:55.290000px;}
.x3_c00381{left:138.240000px;}
.x4_c00381{left:147.750000px;}
.x8_c00381{left:180.570000px;}
.xe_c00381{left:231.555000px;}
.xa_c00381{left:240.195000px;}
.xf_c00381{left:241.920000px;}
.x2e_c00381{left:250.560000px;}
.x22_c00381{left:252.285000px;}
.x5_c00381{left:261.795000px;}
.x10_c00381{left:266.970000px;}
.x3f_c00381{left:270.435000px;}
.x11_c00381{left:286.845000px;}
.x36_c00381{left:304.995000px;}
.x2f_c00381{left:307.590000px;}
.x23_c00381{left:336.090000px;}
.x12_c00381{left:338.685000px;}
.x37_c00381{left:342.150000px;}
.x13_c00381{left:360.285000px;}
.x30_c00381{left:362.880000px;}
.x40_c00381{left:365.475000px;}
.x38_c00381{left:379.290000px;}
.x14_c00381{left:385.350000px;}
.x41_c00381{left:393.990000px;}
.x24_c00381{left:403.485000px;}
.x39_c00381{left:412.995000px;}
.xd_c00381{left:418.170000px;}
.x15_c00381{left:422.490000px;}
.x25_c00381{left:425.955000px;}
.x42_c00381{left:428.550000px;}
.x6_c00381{left:431.130000px;}
.x7_c00381{left:444.960000px;}
.x26_c00381{left:453.600000px;}
.x16_c00381{left:468.285000px;}
.x43_c00381{left:470.880000px;}
.x27_c00381{left:477.795000px;}
.x3a_c00381{left:484.710000px;}
.x17_c00381{left:507.165000px;}
.x18_c00381{left:531.360000px;}
.x28_c00381{left:534.810000px;}
.x9_c00381{left:540.000000px;}
.x19_c00381{left:551.235000px;}
.x1a_c00381{left:560.730000px;}
.x1b_c00381{left:572.835000px;}
.x31_c00381{left:574.560000px;}
.x29_c00381{left:589.245000px;}
.xb_c00381{left:593.565000px;}
.x44_c00381{left:617.760000px;}
.x1c_c00381{left:621.210000px;}
.x3b_c00381{left:622.950000px;}
.x32_c00381{left:626.400000px;}
.xc_c00381{left:648.000000px;}
.x1d_c00381{left:657.510000px;}
.x1e_c00381{left:677.370000px;}
.x33_c00381{left:690.330000px;}
.x1f_c00381{left:717.120000px;}
.x2a_c00381{left:725.760000px;}
.x3c_c00381{left:733.530000px;}
.x2b_c00381{left:738.720000px;}
.x3d_c00381{left:745.635000px;}
.x2c_c00381{left:780.195000px;}
.x20_c00381{left:789.690000px;}
.x21_c00381{left:809.565000px;}
.x3e_c00381{left:814.755000px;}
.x34_c00381{left:849.315000px;}
.x2d_c00381{left:854.490000px;}
.x35_c00381{left:893.370000px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls0_c00381{letter-spacing:0.000000pt;}
.ws0_c00381{word-spacing:0.000000pt;}
.fs4_c00381{font-size:3.072000pt;}
.fs18_c00381{font-size:6.133333pt;}
.fs3_c00381{font-size:9.226667pt;}
.fs21_c00381{font-size:12.266667pt;}
.fs0_c00381{font-size:15.360000pt;}
.fs5_c00381{font-size:21.493333pt;}
.fs2_c00381{font-size:24.586667pt;}
.fs1_c00381{font-size:27.626667pt;}
.fs20_c00381{font-size:33.813333pt;}
.fs1d_c00381{font-size:36.853333pt;}
.fsa_c00381{font-size:46.080000pt;}
.fs1f_c00381{font-size:49.173333pt;}
.fs11_c00381{font-size:55.306667pt;}
.fs6_c00381{font-size:58.346667pt;}
.fs9_c00381{font-size:61.440000pt;}
.fs10_c00381{font-size:64.533333pt;}
.fse_c00381{font-size:67.573333pt;}
.fsf_c00381{font-size:70.666667pt;}
.fs16_c00381{font-size:73.706667pt;}
.fs7_c00381{font-size:76.800000pt;}
.fs19_c00381{font-size:79.893333pt;}
.fs8_c00381{font-size:82.933333pt;}
.fs14_c00381{font-size:86.026667pt;}
.fs12_c00381{font-size:89.066667pt;}
.fsd_c00381{font-size:92.160000pt;}
.fs17_c00381{font-size:95.253333pt;}
.fsb_c00381{font-size:98.293333pt;}
.fs15_c00381{font-size:101.386667pt;}
.fsc_c00381{font-size:107.520000pt;}
.fs1a_c00381{font-size:113.653333pt;}
.fs1b_c00381{font-size:125.973333pt;}
.fs13_c00381{font-size:129.013333pt;}
.fs1c_c00381{font-size:132.106667pt;}
.fs1e_c00381{font-size:144.373333pt;}
.y0_c00381{bottom:0.000000pt;}
.y3c_c00381{bottom:311.813333pt;}
.y3b_c00381{bottom:338.693333pt;}
.y34_c00381{bottom:341.760000pt;}
.y39_c00381{bottom:354.053333pt;}
.y36_c00381{bottom:354.813333pt;}
.y35_c00381{bottom:355.586667pt;}
.y38_c00381{bottom:357.120000pt;}
.y37_c00381{bottom:362.493333pt;}
.y3a_c00381{bottom:367.106667pt;}
.y32_c00381{bottom:374.786667pt;}
.y31_c00381{bottom:376.320000pt;}
.y2f_c00381{bottom:377.853333pt;}
.y2d_c00381{bottom:380.160000pt;}
.y33_c00381{bottom:381.693333pt;}
.y30_c00381{bottom:382.466667pt;}
.y2e_c00381{bottom:384.000000pt;}
.y2b_c00381{bottom:405.506667pt;}
.y27_c00381{bottom:406.266667pt;}
.y28_c00381{bottom:407.040000pt;}
.y2a_c00381{bottom:408.573333pt;}
.y25_c00381{bottom:410.880000pt;}
.y26_c00381{bottom:411.653333pt;}
.y24_c00381{bottom:413.946667pt;}
.y29_c00381{bottom:427.773333pt;}
.y2c_c00381{bottom:428.546667pt;}
.y1c_c00381{bottom:430.080000pt;}
.y23_c00381{bottom:433.146667pt;}
.y22_c00381{bottom:433.920000pt;}
.y1f_c00381{bottom:436.226667pt;}
.y1b_c00381{bottom:438.533333pt;}
.y1d_c00381{bottom:440.066667pt;}
.y1e_c00381{bottom:440.826667pt;}
.y20_c00381{bottom:441.600000pt;}
.y1a_c00381{bottom:451.586667pt;}
.y21_c00381{bottom:456.186667pt;}
.y19_c00381{bottom:462.333333pt;}
.y3e_c00381{bottom:463.106667pt;}
.y12_c00381{bottom:466.946667pt;}
.y14_c00381{bottom:467.706667pt;}
.y13_c00381{bottom:468.480000pt;}
.y16_c00381{bottom:469.253333pt;}
.y15_c00381{bottom:470.013333pt;}
.y17_c00381{bottom:470.786667pt;}
.y18_c00381{bottom:474.626667pt;}
.y11_c00381{bottom:476.933333pt;}
.y3d_c00381{bottom:486.146667pt;}
.y8_c00381{bottom:503.813333pt;}
.yf_c00381{bottom:507.653333pt;}
.y10_c00381{bottom:510.720000pt;}
.yc_c00381{bottom:532.986667pt;}
.yd_c00381{bottom:533.760000pt;}
.ye_c00381{bottom:534.533333pt;}
.ya_c00381{bottom:544.506667pt;}
.yb_c00381{bottom:545.280000pt;}
.y9_c00381{bottom:570.626667pt;}
.y5_c00381{bottom:589.826667pt;}
.y7_c00381{bottom:590.586667pt;}
.y6_c00381{bottom:593.666667pt;}
.y3_c00381{bottom:599.040000pt;}
.y4_c00381{bottom:602.106667pt;}
.y2_c00381{bottom:766.466667pt;}
.y1_c00381{bottom:1191.933333pt;}
.h6_c00381{height:2.764500pt;}
.h1a_c00381{height:5.519401pt;}
.h5_c00381{height:8.303099pt;}
.h23_c00381{height:11.038802pt;}
.h2_c00381{height:13.822500pt;}
.h7_c00381{height:19.341901pt;}
.h4_c00381{height:22.125599pt;}
.h3_c00381{height:24.861302pt;}
.h22_c00381{height:30.428698pt;}
.h1f_c00381{height:33.164401pt;}
.hc_c00381{height:41.467500pt;}
.h21_c00381{height:44.251198pt;}
.h13_c00381{height:49.770599pt;}
.h8_c00381{height:52.506302pt;}
.hb_c00381{height:55.290000pt;}
.h12_c00381{height:58.073698pt;}
.h10_c00381{height:60.809401pt;}
.h11_c00381{height:63.593099pt;}
.h18_c00381{height:66.328802pt;}
.h9_c00381{height:69.112500pt;}
.h1b_c00381{height:71.896198pt;}
.ha_c00381{height:74.631901pt;}
.h16_c00381{height:77.415599pt;}
.h14_c00381{height:80.151302pt;}
.hf_c00381{height:82.935000pt;}
.h19_c00381{height:85.718698pt;}
.hd_c00381{height:88.454401pt;}
.h17_c00381{height:91.238099pt;}
.he_c00381{height:96.757500pt;}
.h1c_c00381{height:102.276901pt;}
.h1d_c00381{height:113.363698pt;}
.h15_c00381{height:116.099401pt;}
.h1e_c00381{height:118.883099pt;}
.h20_c00381{height:129.921901pt;}
.h1_c00381{height:1335.333333pt;}
.h0_c00381{height:1335.546667pt;}
.w0_c00381{width:967.680000pt;}
.w1_c00381{width:968.000000pt;}
.x0_c00381{left:0.000000pt;}
.x45_c00381{left:9.213333pt;}
.x1_c00381{left:13.053333pt;}
.x2_c00381{left:38.400000pt;}
.x46_c00381{left:47.613333pt;}
.x47_c00381{left:49.146667pt;}
.x3_c00381{left:122.880000pt;}
.x4_c00381{left:131.333333pt;}
.x8_c00381{left:160.506667pt;}
.xe_c00381{left:205.826667pt;}
.xa_c00381{left:213.506667pt;}
.xf_c00381{left:215.040000pt;}
.x2e_c00381{left:222.720000pt;}
.x22_c00381{left:224.253333pt;}
.x5_c00381{left:232.706667pt;}
.x10_c00381{left:237.306667pt;}
.x3f_c00381{left:240.386667pt;}
.x11_c00381{left:254.973333pt;}
.x36_c00381{left:271.106667pt;}
.x2f_c00381{left:273.413333pt;}
.x23_c00381{left:298.746667pt;}
.x12_c00381{left:301.053333pt;}
.x37_c00381{left:304.133333pt;}
.x13_c00381{left:320.253333pt;}
.x30_c00381{left:322.560000pt;}
.x40_c00381{left:324.866667pt;}
.x38_c00381{left:337.146667pt;}
.x14_c00381{left:342.533333pt;}
.x41_c00381{left:350.213333pt;}
.x24_c00381{left:358.653333pt;}
.x39_c00381{left:367.106667pt;}
.xd_c00381{left:371.706667pt;}
.x15_c00381{left:375.546667pt;}
.x25_c00381{left:378.626667pt;}
.x42_c00381{left:380.933333pt;}
.x6_c00381{left:383.226667pt;}
.x7_c00381{left:395.520000pt;}
.x26_c00381{left:403.200000pt;}
.x16_c00381{left:416.253333pt;}
.x43_c00381{left:418.560000pt;}
.x27_c00381{left:424.706667pt;}
.x3a_c00381{left:430.853333pt;}
.x17_c00381{left:450.813333pt;}
.x18_c00381{left:472.320000pt;}
.x28_c00381{left:475.386667pt;}
.x9_c00381{left:480.000000pt;}
.x19_c00381{left:489.986667pt;}
.x1a_c00381{left:498.426667pt;}
.x1b_c00381{left:509.186667pt;}
.x31_c00381{left:510.720000pt;}
.x29_c00381{left:523.773333pt;}
.xb_c00381{left:527.613333pt;}
.x44_c00381{left:549.120000pt;}
.x1c_c00381{left:552.186667pt;}
.x3b_c00381{left:553.733333pt;}
.x32_c00381{left:556.800000pt;}
.xc_c00381{left:576.000000pt;}
.x1d_c00381{left:584.453333pt;}
.x1e_c00381{left:602.106667pt;}
.x33_c00381{left:613.626667pt;}
.x1f_c00381{left:637.440000pt;}
.x2a_c00381{left:645.120000pt;}
.x3c_c00381{left:652.026667pt;}
.x2b_c00381{left:656.640000pt;}
.x3d_c00381{left:662.786667pt;}
.x2c_c00381{left:693.506667pt;}
.x20_c00381{left:701.946667pt;}
.x21_c00381{left:719.613333pt;}
.x3e_c00381{left:724.226667pt;}
.x34_c00381{left:754.946667pt;}
.x2d_c00381{left:759.546667pt;}
.x35_c00381{left:794.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac2cde027c8a1181526bc055.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.109863;font-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_c00382{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);}
.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;}
.fc0_c00382{color:transparent;}
.fs0_c00382{font-size:600.000000px;}
.y0_c00382{bottom:0.000000px;}
.y1_c00382{bottom:15.000000px;}
.h2_c00382{height:539.941406px;}
.h0_c00382{height:1515.450000px;}
.h1_c00382{height:1515.750000px;}
.w1_c00382{width:1080.750000px;}
.w0_c00382{width:1080.870000px;}
.x0_c00382{left:0.000000px;}
.x1_c00382{left:15.000000px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls0_c00382{letter-spacing:0.000000pt;}
.ws0_c00382{word-spacing:0.000000pt;}
.fs0_c00382{font-size:533.333333pt;}
.y0_c00382{bottom:0.000000pt;}
.y1_c00382{bottom:13.333333pt;}
.h2_c00382{height:479.947917pt;}
.h0_c00382{height:1347.066667pt;}
.h1_c00382{height:1347.333333pt;}
.w1_c00382{width:960.666667pt;}
.w0_c00382{width:960.773333pt;}
.x0_c00382{left:0.000000pt;}
.x1_c00382{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95cd0064f719c568d64d8134.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:1.109863;font-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_c00383{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);}
.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;}
.fs0_c00383{font-size:600.000000px;}
.y0_c00383{bottom:0.000000px;}
.y1_c00383{bottom:15.000000px;}
.h2_c00383{height:539.941406px;}
.h1_c00383{height:1502.250000px;}
.h0_c00383{height:1502.490000px;}
.w0_c00383{width:1088.640000px;}
.w1_c00383{width:1089.000000px;}
.x0_c00383{left:0.000000px;}
.x1_c00383{left:15.000000px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls0_c00383{letter-spacing:0.000000pt;}
.ws0_c00383{word-spacing:0.000000pt;}
.fs0_c00383{font-size:533.333333pt;}
.y0_c00383{bottom:0.000000pt;}
.y1_c00383{bottom:13.333333pt;}
.h2_c00383{height:479.947917pt;}
.h1_c00383{height:1335.333333pt;}
.h0_c00383{height:1335.546667pt;}
.w0_c00383{width:967.680000pt;}
.w1_c00383{width:968.000000pt;}
.x0_c00383{left:0.000000pt;}
.x1_c00383{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ac02d28c31e5bc7f7a57dcd.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.109863;font-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_c00384{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);}
.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;}
.fc0_c00384{color:transparent;}
.fs0_c00384{font-size:600.000000px;}
.y0_c00384{bottom:0.000000px;}
.y1_c00384{bottom:15.000000px;}
.h2_c00384{height:539.941406px;}
.h0_c00384{height:1515.450000px;}
.h1_c00384{height:1515.750000px;}
.w1_c00384{width:1080.750000px;}
.w0_c00384{width:1080.870000px;}
.x0_c00384{left:0.000000px;}
.x1_c00384{left:15.000000px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws0_c00384{word-spacing:0.000000pt;}
.fs0_c00384{font-size:533.333333pt;}
.y0_c00384{bottom:0.000000pt;}
.y1_c00384{bottom:13.333333pt;}
.h2_c00384{height:479.947917pt;}
.h0_c00384{height:1347.066667pt;}
.h1_c00384{height:1347.333333pt;}
.w1_c00384{width:960.666667pt;}
.w0_c00384{width:960.773333pt;}
.x0_c00384{left:0.000000pt;}
.x1_c00384{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68ef282358d91a1650a9539b.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:1.109863;font-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_c00385{transform:matrix(0.112950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112950,0.000000,0.000000,0.250000,0,0);}
.m1a_c00385{transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);}
.m1_c00385{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00385{transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);}
.m10_c00385{transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);}
.m16_c00385{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m9_c00385{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.me_c00385{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m29_c00385{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);}
.m14_c00385{transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);}
.m2b_c00385{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);}
.m13_c00385{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m19_c00385{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);}
.mf_c00385{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);}
.m18_c00385{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);}
.m2d_c00385{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.m28_c00385{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);}
.m15_c00385{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);}
.m12_c00385{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c00385{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);}
.m26_c00385{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_c00385{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c00385{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c00385{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);}
.m23_c00385{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c00385{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00385{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);}
.m24_c00385{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);}
.m2e_c00385{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c00385{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c00385{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mc_c00385{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c00385{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c00385{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mb_c00385{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00385{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);}
.m21_c00385{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);}
.m1d_c00385{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00385{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.ma_c00385{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3_c00385{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00385{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2_c00385{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00385{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m0_c00385{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m11_c00385{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00385{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m27_c00385{transform:matrix(1.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.437500,0.000000,0.000000,0.250000,0,0);}
.v1_c00385{vertical-align:-13.800000px;}
.v0_c00385{vertical-align:0.000000px;}
.ls1_c00385{letter-spacing:0.000000px;}
.ls0_c00385{letter-spacing:141.082740px;}
.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;}
.fs14_c00385{font-size:6.000000px;}
.fs12_c00385{font-size:6.900000px;}
.fs13_c00385{font-size:10.380000px;}
.fs1_c00385{font-size:13.800000px;}
.fs15_c00385{font-size:17.280000px;}
.fs9_c00385{font-size:20.760000px;}
.fs0_c00385{font-size:24.180000px;}
.fs1a_c00385{font-size:27.660000px;}
.fs11_c00385{font-size:31.080000px;}
.fs18_c00385{font-size:51.840000px;}
.fs4_c00385{font-size:62.220000px;}
.fs3_c00385{font-size:65.640000px;}
.fs2_c00385{font-size:69.120000px;}
.fs17_c00385{font-size:72.600000px;}
.fsf_c00385{font-size:76.020000px;}
.fs5_c00385{font-size:79.500000px;}
.fs1b_c00385{font-size:82.920000px;}
.fs19_c00385{font-size:86.400000px;}
.fs16_c00385{font-size:93.300000px;}
.fsa_c00385{font-size:96.780000px;}
.fs6_c00385{font-size:100.200000px;}
.fs7_c00385{font-size:103.680000px;}
.fse_c00385{font-size:107.160000px;}
.fsb_c00385{font-size:110.580000px;}
.fsc_c00385{font-size:114.060000px;}
.fsd_c00385{font-size:124.440000px;}
.fs10_c00385{font-size:127.860000px;}
.fs8_c00385{font-size:152.040000px;}
.y0_c00385{bottom:0.000000px;}
.y29_c00385{bottom:958.170000px;}
.y27_c00385{bottom:1109.370000px;}
.y26_c00385{bottom:1111.965000px;}
.y28_c00385{bottom:1115.430000px;}
.y1c_c00385{bottom:1150.845000px;}
.y1b_c00385{bottom:1154.310000px;}
.y15_c00385{bottom:1156.035000px;}
.y16_c00385{bottom:1162.080000px;}
.y19_c00385{bottom:1163.805000px;}
.y1a_c00385{bottom:1167.270000px;}
.y17_c00385{bottom:1168.125000px;}
.y21_c00385{bottom:1187.130000px;}
.y18_c00385{bottom:1188.000000px;}
.y24_c00385{bottom:1188.870000px;}
.y25_c00385{bottom:1189.725000px;}
.y12_c00385{bottom:1190.595000px;}
.y10_c00385{bottom:1191.450000px;}
.y11_c00385{bottom:1192.320000px;}
.y22_c00385{bottom:1194.045000px;}
.y13_c00385{bottom:1195.770000px;}
.y23_c00385{bottom:1197.510000px;}
.y14_c00385{bottom:1200.090000px;}
.y20_c00385{bottom:1217.370000px;}
.y1_c00385{bottom:1218.240000px;}
.yc_c00385{bottom:1221.690000px;}
.y1f_c00385{bottom:1222.560000px;}
.ya_c00385{bottom:1226.010000px;}
.yf_c00385{bottom:1226.880000px;}
.yb_c00385{bottom:1227.750000px;}
.y1e_c00385{bottom:1228.605000px;}
.ye_c00385{bottom:1230.330000px;}
.yd_c00385{bottom:1237.245000px;}
.y4_c00385{bottom:1258.845000px;}
.y5_c00385{bottom:1259.715000px;}
.y6_c00385{bottom:1260.570000px;}
.y8_c00385{bottom:1261.440000px;}
.y7_c00385{bottom:1262.310000px;}
.y9_c00385{bottom:1264.035000px;}
.y1d_c00385{bottom:1264.890000px;}
.y3_c00385{bottom:1283.910000px;}
.y2_c00385{bottom:1284.765000px;}
.h16_c00385{height:5.399414px;}
.h14_c00385{height:6.209326px;}
.h15_c00385{height:9.340986px;}
.h3_c00385{height:12.418652px;}
.h17_c00385{height:15.550313px;}
.hb_c00385{height:18.681973px;}
.h2_c00385{height:21.759639px;}
.h1c_c00385{height:24.891299px;}
.h13_c00385{height:27.968965px;}
.h1a_c00385{height:46.650937px;}
.h6_c00385{height:55.991924px;}
.h5_c00385{height:59.069590px;}
.h4_c00385{height:62.201250px;}
.h19_c00385{height:65.332910px;}
.h11_c00385{height:68.410576px;}
.h7_c00385{height:71.542236px;}
.h1d_c00385{height:74.619902px;}
.h1b_c00385{height:77.751563px;}
.h18_c00385{height:83.960889px;}
.hc_c00385{height:87.092549px;}
.h8_c00385{height:90.170215px;}
.h9_c00385{height:93.301875px;}
.h10_c00385{height:96.433535px;}
.hd_c00385{height:99.511201px;}
.he_c00385{height:102.642861px;}
.hf_c00385{height:111.983848px;}
.h12_c00385{height:115.061514px;}
.ha_c00385{height:136.821152px;}
.h0_c00385{height:1505.955000px;}
.h1_c00385{height:1506.000000px;}
.w0_c00385{width:1096.410000px;}
.w1_c00385{width:1096.500000px;}
.x0_c00385{left:0.000000px;}
.x1_c00385{left:15.555000px;}
.x30_c00385{left:186.630000px;}
.x4_c00385{left:221.190000px;}
.x1f_c00385{left:246.240000px;}
.x15_c00385{left:247.965000px;}
.x1a_c00385{left:250.560000px;}
.xf_c00385{left:252.285000px;}
.x5_c00385{left:263.520000px;}
.x6_c00385{left:281.670000px;}
.x16_c00385{left:292.890000px;}
.x7_c00385{left:316.230000px;}
.x10_c00385{left:325.725000px;}
.x17_c00385{left:331.770000px;}
.x8_c00385{left:339.555000px;}
.x2_c00385{left:341.280000px;}
.x1b_c00385{left:344.730000px;}
.x9_c00385{left:352.515000px;}
.x1c_c00385{left:364.605000px;}
.x11_c00385{left:366.330000px;}
.x20_c00385{left:368.925000px;}
.xa_c00385{left:373.245000px;}
.x18_c00385{left:381.030000px;}
.x1d_c00385{left:400.890000px;}
.x3_c00385{left:417.315000px;}
.xb_c00385{left:419.910000px;}
.x1e_c00385{left:425.955000px;}
.x12_c00385{left:432.000000px;}
.x13_c00385{left:444.090000px;}
.xc_c00385{left:463.110000px;}
.x14_c00385{left:483.840000px;}
.xd_c00385{left:490.755000px;}
.xe_c00385{left:519.270000px;}
.x19_c00385{left:523.590000px;}
.x21_c00385{left:571.965000px;}
.x27_c00385{left:598.755000px;}
.x29_c00385{left:603.075000px;}
.x24_c00385{left:604.800000px;}
.x22_c00385{left:643.680000px;}
.x2a_c00385{left:691.200000px;}
.x2b_c00385{left:704.160000px;}
.x25_c00385{left:717.120000px;}
.x28_c00385{left:725.760000px;}
.x2c_c00385{left:727.485000px;}
.x2e_c00385{left:737.850000px;}
.x2d_c00385{left:799.200000px;}
.x23_c00385{left:805.245000px;}
.x2f_c00385{left:832.035000px;}
.x26_c00385{left:836.355000px;}
@media print{
.v1_c00385{vertical-align:-12.266667pt;}
.v0_c00385{vertical-align:0.000000pt;}
.ls1_c00385{letter-spacing:0.000000pt;}
.ls0_c00385{letter-spacing:125.406880pt;}
.ws0_c00385{word-spacing:0.000000pt;}
.fs14_c00385{font-size:5.333333pt;}
.fs12_c00385{font-size:6.133333pt;}
.fs13_c00385{font-size:9.226667pt;}
.fs1_c00385{font-size:12.266667pt;}
.fs15_c00385{font-size:15.360000pt;}
.fs9_c00385{font-size:18.453333pt;}
.fs0_c00385{font-size:21.493333pt;}
.fs1a_c00385{font-size:24.586667pt;}
.fs11_c00385{font-size:27.626667pt;}
.fs18_c00385{font-size:46.080000pt;}
.fs4_c00385{font-size:55.306667pt;}
.fs3_c00385{font-size:58.346667pt;}
.fs2_c00385{font-size:61.440000pt;}
.fs17_c00385{font-size:64.533333pt;}
.fsf_c00385{font-size:67.573333pt;}
.fs5_c00385{font-size:70.666667pt;}
.fs1b_c00385{font-size:73.706667pt;}
.fs19_c00385{font-size:76.800000pt;}
.fs16_c00385{font-size:82.933333pt;}
.fsa_c00385{font-size:86.026667pt;}
.fs6_c00385{font-size:89.066667pt;}
.fs7_c00385{font-size:92.160000pt;}
.fse_c00385{font-size:95.253333pt;}
.fsb_c00385{font-size:98.293333pt;}
.fsc_c00385{font-size:101.386667pt;}
.fsd_c00385{font-size:110.613333pt;}
.fs10_c00385{font-size:113.653333pt;}
.fs8_c00385{font-size:135.146667pt;}
.y0_c00385{bottom:0.000000pt;}
.y29_c00385{bottom:851.706667pt;}
.y27_c00385{bottom:986.106667pt;}
.y26_c00385{bottom:988.413333pt;}
.y28_c00385{bottom:991.493333pt;}
.y1c_c00385{bottom:1022.973333pt;}
.y1b_c00385{bottom:1026.053333pt;}
.y15_c00385{bottom:1027.586667pt;}
.y16_c00385{bottom:1032.960000pt;}
.y19_c00385{bottom:1034.493333pt;}
.y1a_c00385{bottom:1037.573333pt;}
.y17_c00385{bottom:1038.333333pt;}
.y21_c00385{bottom:1055.226667pt;}
.y18_c00385{bottom:1056.000000pt;}
.y24_c00385{bottom:1056.773333pt;}
.y25_c00385{bottom:1057.533333pt;}
.y12_c00385{bottom:1058.306667pt;}
.y10_c00385{bottom:1059.066667pt;}
.y11_c00385{bottom:1059.840000pt;}
.y22_c00385{bottom:1061.373333pt;}
.y13_c00385{bottom:1062.906667pt;}
.y23_c00385{bottom:1064.453333pt;}
.y14_c00385{bottom:1066.746667pt;}
.y20_c00385{bottom:1082.106667pt;}
.y1_c00385{bottom:1082.880000pt;}
.yc_c00385{bottom:1085.946667pt;}
.y1f_c00385{bottom:1086.720000pt;}
.ya_c00385{bottom:1089.786667pt;}
.yf_c00385{bottom:1090.560000pt;}
.yb_c00385{bottom:1091.333333pt;}
.y1e_c00385{bottom:1092.093333pt;}
.ye_c00385{bottom:1093.626667pt;}
.yd_c00385{bottom:1099.773333pt;}
.y4_c00385{bottom:1118.973333pt;}
.y5_c00385{bottom:1119.746667pt;}
.y6_c00385{bottom:1120.506667pt;}
.y8_c00385{bottom:1121.280000pt;}
.y7_c00385{bottom:1122.053333pt;}
.y9_c00385{bottom:1123.586667pt;}
.y1d_c00385{bottom:1124.346667pt;}
.y3_c00385{bottom:1141.253333pt;}
.y2_c00385{bottom:1142.013333pt;}
.h16_c00385{height:4.799479pt;}
.h14_c00385{height:5.519401pt;}
.h15_c00385{height:8.303099pt;}
.h3_c00385{height:11.038802pt;}
.h17_c00385{height:13.822500pt;}
.hb_c00385{height:16.606198pt;}
.h2_c00385{height:19.341901pt;}
.h1c_c00385{height:22.125599pt;}
.h13_c00385{height:24.861302pt;}
.h1a_c00385{height:41.467500pt;}
.h6_c00385{height:49.770599pt;}
.h5_c00385{height:52.506302pt;}
.h4_c00385{height:55.290000pt;}
.h19_c00385{height:58.073698pt;}
.h11_c00385{height:60.809401pt;}
.h7_c00385{height:63.593099pt;}
.h1d_c00385{height:66.328802pt;}
.h1b_c00385{height:69.112500pt;}
.h18_c00385{height:74.631901pt;}
.hc_c00385{height:77.415599pt;}
.h8_c00385{height:80.151302pt;}
.h9_c00385{height:82.935000pt;}
.h10_c00385{height:85.718698pt;}
.hd_c00385{height:88.454401pt;}
.he_c00385{height:91.238099pt;}
.hf_c00385{height:99.541198pt;}
.h12_c00385{height:102.276901pt;}
.ha_c00385{height:121.618802pt;}
.h0_c00385{height:1338.626667pt;}
.h1_c00385{height:1338.666667pt;}
.w0_c00385{width:974.586667pt;}
.w1_c00385{width:974.666667pt;}
.x0_c00385{left:0.000000pt;}
.x1_c00385{left:13.826667pt;}
.x30_c00385{left:165.893333pt;}
.x4_c00385{left:196.613333pt;}
.x1f_c00385{left:218.880000pt;}
.x15_c00385{left:220.413333pt;}
.x1a_c00385{left:222.720000pt;}
.xf_c00385{left:224.253333pt;}
.x5_c00385{left:234.240000pt;}
.x6_c00385{left:250.373333pt;}
.x16_c00385{left:260.346667pt;}
.x7_c00385{left:281.093333pt;}
.x10_c00385{left:289.533333pt;}
.x17_c00385{left:294.906667pt;}
.x8_c00385{left:301.826667pt;}
.x2_c00385{left:303.360000pt;}
.x1b_c00385{left:306.426667pt;}
.x9_c00385{left:313.346667pt;}
.x1c_c00385{left:324.093333pt;}
.x11_c00385{left:325.626667pt;}
.x20_c00385{left:327.933333pt;}
.xa_c00385{left:331.773333pt;}
.x18_c00385{left:338.693333pt;}
.x1d_c00385{left:356.346667pt;}
.x3_c00385{left:370.946667pt;}
.xb_c00385{left:373.253333pt;}
.x1e_c00385{left:378.626667pt;}
.x12_c00385{left:384.000000pt;}
.x13_c00385{left:394.746667pt;}
.xc_c00385{left:411.653333pt;}
.x14_c00385{left:430.080000pt;}
.xd_c00385{left:436.226667pt;}
.xe_c00385{left:461.573333pt;}
.x19_c00385{left:465.413333pt;}
.x21_c00385{left:508.413333pt;}
.x27_c00385{left:532.226667pt;}
.x29_c00385{left:536.066667pt;}
.x24_c00385{left:537.600000pt;}
.x22_c00385{left:572.160000pt;}
.x2a_c00385{left:614.400000pt;}
.x2b_c00385{left:625.920000pt;}
.x25_c00385{left:637.440000pt;}
.x28_c00385{left:645.120000pt;}
.x2c_c00385{left:646.653333pt;}
.x2e_c00385{left:655.866667pt;}
.x2d_c00385{left:710.400000pt;}
.x23_c00385{left:715.773333pt;}
.x2f_c00385{left:739.586667pt;}
.x26_c00385{left:743.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54d84e1d703276cb169b510c.woff2')format("woff");}.ff1_c00386{font-family:ff1_c00386;line-height:1.109863;font-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_c00386{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m39_c00386{transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);}
.m2e_c00386{transform:matrix(0.114125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114125,0.000000,0.000000,0.250000,0,0);}
.m15_c00386{transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);}
.m0_c00386{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m17_c00386{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m20_c00386{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.m2f_c00386{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.m4_c00386{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.m27_c00386{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);}
.m14_c00386{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m21_c00386{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.m2a_c00386{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.m36_c00386{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);}
.m37_c00386{transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);}
.m26_c00386{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);}
.m2c_c00386{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.mc_c00386{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2d_c00386{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);}
.m18_c00386{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);}
.m16_c00386{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);}
.m23_c00386{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);}
.m25_c00386{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00386{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00386{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);}
.m6_c00386{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c00386{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00386{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c00386{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c00386{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);}
.m1_c00386{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c00386{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m13_c00386{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);}
.m34_c00386{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m35_c00386{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);}
.m9_c00386{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);}
.m31_c00386{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);}
.m1e_c00386{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m11_c00386{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb_c00386{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m24_c00386{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.ma_c00386{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00386{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m22_c00386{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);}
.m32_c00386{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00386{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m29_c00386{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);}
.m1d_c00386{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c00386{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);}
.m33_c00386{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m5_c00386{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m12_c00386{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m10_c00386{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m30_c00386{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00386{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m38_c00386{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00386{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.md_c00386{transform:matrix(1.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.472500,0.000000,0.000000,0.250000,0,0);}
.me_c00386{transform:matrix(2.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.415000,0.000000,0.000000,0.250000,0,0);}
.v1_c00386{vertical-align:-3.480000px;}
.v0_c00386{vertical-align:0.000000px;}
.ls1_c00386{letter-spacing:0.000000px;}
.ls0_c00386{letter-spacing:23.005680px;}
.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;}
.fc0_c00386{color:transparent;}
.fs7_c00386{font-size:3.456000px;}
.fs8_c00386{font-size:6.000000px;}
.fs0_c00386{font-size:6.900000px;}
.fs9_c00386{font-size:10.380000px;}
.fs4_c00386{font-size:13.800000px;}
.fs6_c00386{font-size:17.280000px;}
.fsa_c00386{font-size:20.760000px;}
.fs19_c00386{font-size:24.180000px;}
.fs1c_c00386{font-size:27.660000px;}
.fs18_c00386{font-size:34.560000px;}
.fsf_c00386{font-size:41.460000px;}
.fs16_c00386{font-size:44.940000px;}
.fse_c00386{font-size:48.360000px;}
.fs10_c00386{font-size:51.840000px;}
.fs1_c00386{font-size:55.320000px;}
.fs3_c00386{font-size:58.740000px;}
.fs2_c00386{font-size:62.220000px;}
.fs5_c00386{font-size:65.640000px;}
.fsc_c00386{font-size:69.120000px;}
.fsd_c00386{font-size:72.600000px;}
.fs15_c00386{font-size:76.020000px;}
.fs12_c00386{font-size:79.500000px;}
.fs11_c00386{font-size:82.920000px;}
.fs1a_c00386{font-size:86.400000px;}
.fs13_c00386{font-size:107.160000px;}
.fs17_c00386{font-size:114.060000px;}
.fsb_c00386{font-size:117.480000px;}
.fs14_c00386{font-size:120.960000px;}
.fs1b_c00386{font-size:179.700000px;}
.y0_c00386{bottom:0.000000px;}
.y37_c00386{bottom:605.670000px;}
.y36_c00386{bottom:610.845000px;}
.y2b_c00386{bottom:700.710000px;}
.y35_c00386{bottom:1044.570000px;}
.y33_c00386{bottom:1056.675000px;}
.y34_c00386{bottom:1064.445000px;}
.y31_c00386{bottom:1168.125000px;}
.y2f_c00386{bottom:1171.590000px;}
.y2e_c00386{bottom:1172.445000px;}
.y30_c00386{bottom:1173.315000px;}
.y32_c00386{bottom:1175.910000px;}
.y2c_c00386{bottom:1176.765000px;}
.y2d_c00386{bottom:1177.635000px;}
.yd_c00386{bottom:1198.365000px;}
.yc_c00386{bottom:1201.830000px;}
.yb_c00386{bottom:1202.685000px;}
.y10_c00386{bottom:1215.645000px;}
.y11_c00386{bottom:1217.370000px;}
.y1c_c00386{bottom:1218.240000px;}
.y28_c00386{bottom:1226.880000px;}
.y27_c00386{bottom:1227.750000px;}
.y26_c00386{bottom:1232.925000px;}
.y1b_c00386{bottom:1240.710000px;}
.y25_c00386{bottom:1242.435000px;}
.y29_c00386{bottom:1252.800000px;}
.y24_c00386{bottom:1260.570000px;}
.y1a_c00386{bottom:1264.890000px;}
.y22_c00386{bottom:1266.630000px;}
.y1f_c00386{bottom:1267.485000px;}
.y20_c00386{bottom:1268.355000px;}
.y23_c00386{bottom:1270.080000px;}
.y21_c00386{bottom:1277.850000px;}
.y2a_c00386{bottom:1279.590000px;}
.y19_c00386{bottom:1312.410000px;}
.y17_c00386{bottom:1313.280000px;}
.y18_c00386{bottom:1314.150000px;}
.y16_c00386{bottom:1320.195000px;}
.y1e_c00386{bottom:1324.515000px;}
.y1d_c00386{bottom:1327.110000px;}
.y14_c00386{bottom:1338.330000px;}
.y15_c00386{bottom:1340.070000px;}
.yf_c00386{bottom:1358.205000px;}
.ye_c00386{bottom:1359.930000px;}
.y12_c00386{bottom:1372.890000px;}
.y13_c00386{bottom:1374.630000px;}
.y9_c00386{bottom:1397.085000px;}
.ya_c00386{bottom:1397.955000px;}
.y7_c00386{bottom:1398.810000px;}
.y8_c00386{bottom:1400.550000px;}
.y2_c00386{bottom:1402.275000px;}
.y3_c00386{bottom:1403.130000px;}
.y5_c00386{bottom:1404.000000px;}
.y6_c00386{bottom:1404.870000px;}
.y4_c00386{bottom:1405.725000px;}
.y1_c00386{bottom:1410.045000px;}
.h9_c00386{height:3.110063px;}
.ha_c00386{height:5.399414px;}
.h2_c00386{height:6.209326px;}
.hb_c00386{height:9.340986px;}
.h6_c00386{height:12.418652px;}
.h8_c00386{height:15.550313px;}
.hc_c00386{height:18.681973px;}
.h1b_c00386{height:21.759639px;}
.h1e_c00386{height:24.891299px;}
.h1a_c00386{height:31.100625px;}
.h11_c00386{height:37.309951px;}
.h18_c00386{height:40.441611px;}
.h10_c00386{height:43.519277px;}
.h12_c00386{height:46.650937px;}
.h3_c00386{height:49.782598px;}
.h5_c00386{height:52.860264px;}
.h4_c00386{height:55.991924px;}
.h7_c00386{height:59.069590px;}
.he_c00386{height:62.201250px;}
.hf_c00386{height:65.332910px;}
.h17_c00386{height:68.410576px;}
.h14_c00386{height:71.542236px;}
.h13_c00386{height:74.619902px;}
.h1c_c00386{height:77.751563px;}
.h15_c00386{height:96.433535px;}
.h19_c00386{height:102.642861px;}
.hd_c00386{height:105.720527px;}
.h16_c00386{height:108.852188px;}
.h1d_c00386{height:161.712451px;}
.h0_c00386{height:1515.450000px;}
.h1_c00386{height:1515.750000px;}
.w1_c00386{width:1080.750000px;}
.w0_c00386{width:1080.870000px;}
.x0_c00386{left:0.000000px;}
.x18_c00386{left:119.235675px;}
.x19_c00386{left:129.600000px;}
.x13_c00386{left:224.640000px;}
.x1c_c00386{left:226.365000px;}
.x3b_c00386{left:250.560000px;}
.x22_c00386{left:258.330000px;}
.x1d_c00386{left:279.075000px;}
.x21_c00386{left:290.310000px;}
.x1e_c00386{left:305.850000px;}
.x23_c00386{left:313.635000px;}
.x24_c00386{left:351.645000px;}
.x1f_c00386{left:356.835000px;}
.x3c_c00386{left:381.030000px;}
.x1_c00386{left:405.210000px;}
.x2_c00386{left:415.590000px;}
.xe_c00386{left:419.040000px;}
.x3_c00386{left:434.595000px;}
.x4_c00386{left:457.920000px;}
.x20_c00386{left:462.240000px;}
.x5_c00386{left:482.970000px;}
.xf_c00386{left:488.160000px;}
.x1a_c00386{left:490.755000px;}
.x6_c00386{left:508.035000px;}
.x1b_c00386{left:514.080000px;}
.x28_c00386{left:533.955000px;}
.x7_c00386{left:552.960000px;}
.x29_c00386{left:557.280000px;}
.x33_c00386{left:560.730000px;}
.x8_c00386{left:565.050000px;}
.x34_c00386{left:570.240000px;}
.x2a_c00386{left:576.285000px;}
.x9_c00386{left:594.435000px;}
.x35_c00386{left:608.250000px;}
.x3d_c00386{left:610.845000px;}
.xa_c00386{left:616.035000px;}
.x14_c00386{left:617.760000px;}
.x2b_c00386{left:628.125000px;}
.x3e_c00386{left:633.315000px;}
.x15_c00386{left:636.765408px;}
.x36_c00386{left:643.680000px;}
.x10_c00386{left:647.130000px;}
.x11_c00386{left:652.320000px;}
.x3f_c00386{left:657.510000px;}
.xb_c00386{left:661.830000px;}
.x31_c00386{left:667.875000px;}
.x40_c00386{left:670.470000px;}
.x2c_c00386{left:673.920000px;}
.x12_c00386{left:685.155000px;}
.xc_c00386{left:686.880000px;}
.x41_c00386{left:692.070000px;}
.xd_c00386{left:704.160000px;}
.x37_c00386{left:705.885000px;}
.x2d_c00386{left:712.800000px;}
.x42_c00386{left:731.805000px;}
.x2e_c00386{left:781.920000px;}
.x43_c00386{left:794.880000px;}
.x2f_c00386{left:803.520000px;}
.x30_c00386{left:827.715000px;}
.x38_c00386{left:832.890000px;}
.x32_c00386{left:836.355000px;}
.x44_c00386{left:972.000000px;}
.x25_c00386{left:977.190000px;}
.x27_c00386{left:979.770000px;}
.x26_c00386{left:986.685000px;}
.x45_c00386{left:988.410000px;}
.x46_c00386{left:1000.515000px;}
.x47_c00386{left:1004.835000px;}
.x39_c00386{left:1009.155000px;}
.x16_c00386{left:1016.070000px;}
.x17_c00386{left:1029.030000px;}
.x3a_c00386{left:1073.085000px;}
@media print{
.v1_c00386{vertical-align:-3.093333pt;}
.v0_c00386{vertical-align:0.000000pt;}
.ls1_c00386{letter-spacing:0.000000pt;}
.ls0_c00386{letter-spacing:20.449493pt;}
.ws0_c00386{word-spacing:0.000000pt;}
.fs7_c00386{font-size:3.072000pt;}
.fs8_c00386{font-size:5.333333pt;}
.fs0_c00386{font-size:6.133333pt;}
.fs9_c00386{font-size:9.226667pt;}
.fs4_c00386{font-size:12.266667pt;}
.fs6_c00386{font-size:15.360000pt;}
.fsa_c00386{font-size:18.453333pt;}
.fs19_c00386{font-size:21.493333pt;}
.fs1c_c00386{font-size:24.586667pt;}
.fs18_c00386{font-size:30.720000pt;}
.fsf_c00386{font-size:36.853333pt;}
.fs16_c00386{font-size:39.946667pt;}
.fse_c00386{font-size:42.986667pt;}
.fs10_c00386{font-size:46.080000pt;}
.fs1_c00386{font-size:49.173333pt;}
.fs3_c00386{font-size:52.213333pt;}
.fs2_c00386{font-size:55.306667pt;}
.fs5_c00386{font-size:58.346667pt;}
.fsc_c00386{font-size:61.440000pt;}
.fsd_c00386{font-size:64.533333pt;}
.fs15_c00386{font-size:67.573333pt;}
.fs12_c00386{font-size:70.666667pt;}
.fs11_c00386{font-size:73.706667pt;}
.fs1a_c00386{font-size:76.800000pt;}
.fs13_c00386{font-size:95.253333pt;}
.fs17_c00386{font-size:101.386667pt;}
.fsb_c00386{font-size:104.426667pt;}
.fs14_c00386{font-size:107.520000pt;}
.fs1b_c00386{font-size:159.733333pt;}
.y0_c00386{bottom:0.000000pt;}
.y37_c00386{bottom:538.373333pt;}
.y36_c00386{bottom:542.973333pt;}
.y2b_c00386{bottom:622.853333pt;}
.y35_c00386{bottom:928.506667pt;}
.y33_c00386{bottom:939.266667pt;}
.y34_c00386{bottom:946.173333pt;}
.y31_c00386{bottom:1038.333333pt;}
.y2f_c00386{bottom:1041.413333pt;}
.y2e_c00386{bottom:1042.173333pt;}
.y30_c00386{bottom:1042.946667pt;}
.y32_c00386{bottom:1045.253333pt;}
.y2c_c00386{bottom:1046.013333pt;}
.y2d_c00386{bottom:1046.786667pt;}
.yd_c00386{bottom:1065.213333pt;}
.yc_c00386{bottom:1068.293333pt;}
.yb_c00386{bottom:1069.053333pt;}
.y10_c00386{bottom:1080.573333pt;}
.y11_c00386{bottom:1082.106667pt;}
.y1c_c00386{bottom:1082.880000pt;}
.y28_c00386{bottom:1090.560000pt;}
.y27_c00386{bottom:1091.333333pt;}
.y26_c00386{bottom:1095.933333pt;}
.y1b_c00386{bottom:1102.853333pt;}
.y25_c00386{bottom:1104.386667pt;}
.y29_c00386{bottom:1113.600000pt;}
.y24_c00386{bottom:1120.506667pt;}
.y1a_c00386{bottom:1124.346667pt;}
.y22_c00386{bottom:1125.893333pt;}
.y1f_c00386{bottom:1126.653333pt;}
.y20_c00386{bottom:1127.426667pt;}
.y23_c00386{bottom:1128.960000pt;}
.y21_c00386{bottom:1135.866667pt;}
.y2a_c00386{bottom:1137.413333pt;}
.y19_c00386{bottom:1166.586667pt;}
.y17_c00386{bottom:1167.360000pt;}
.y18_c00386{bottom:1168.133333pt;}
.y16_c00386{bottom:1173.506667pt;}
.y1e_c00386{bottom:1177.346667pt;}
.y1d_c00386{bottom:1179.653333pt;}
.y14_c00386{bottom:1189.626667pt;}
.y15_c00386{bottom:1191.173333pt;}
.yf_c00386{bottom:1207.293333pt;}
.ye_c00386{bottom:1208.826667pt;}
.y12_c00386{bottom:1220.346667pt;}
.y13_c00386{bottom:1221.893333pt;}
.y9_c00386{bottom:1241.853333pt;}
.ya_c00386{bottom:1242.626667pt;}
.y7_c00386{bottom:1243.386667pt;}
.y8_c00386{bottom:1244.933333pt;}
.y2_c00386{bottom:1246.466667pt;}
.y3_c00386{bottom:1247.226667pt;}
.y5_c00386{bottom:1248.000000pt;}
.y6_c00386{bottom:1248.773333pt;}
.y4_c00386{bottom:1249.533333pt;}
.y1_c00386{bottom:1253.373333pt;}
.h9_c00386{height:2.764500pt;}
.ha_c00386{height:4.799479pt;}
.h2_c00386{height:5.519401pt;}
.hb_c00386{height:8.303099pt;}
.h6_c00386{height:11.038802pt;}
.h8_c00386{height:13.822500pt;}
.hc_c00386{height:16.606198pt;}
.h1b_c00386{height:19.341901pt;}
.h1e_c00386{height:22.125599pt;}
.h1a_c00386{height:27.645000pt;}
.h11_c00386{height:33.164401pt;}
.h18_c00386{height:35.948099pt;}
.h10_c00386{height:38.683802pt;}
.h12_c00386{height:41.467500pt;}
.h3_c00386{height:44.251198pt;}
.h5_c00386{height:46.986901pt;}
.h4_c00386{height:49.770599pt;}
.h7_c00386{height:52.506302pt;}
.he_c00386{height:55.290000pt;}
.hf_c00386{height:58.073698pt;}
.h17_c00386{height:60.809401pt;}
.h14_c00386{height:63.593099pt;}
.h13_c00386{height:66.328802pt;}
.h1c_c00386{height:69.112500pt;}
.h15_c00386{height:85.718698pt;}
.h19_c00386{height:91.238099pt;}
.hd_c00386{height:93.973802pt;}
.h16_c00386{height:96.757500pt;}
.h1d_c00386{height:143.744401pt;}
.h0_c00386{height:1347.066667pt;}
.h1_c00386{height:1347.333333pt;}
.w1_c00386{width:960.666667pt;}
.w0_c00386{width:960.773333pt;}
.x0_c00386{left:0.000000pt;}
.x18_c00386{left:105.987267pt;}
.x19_c00386{left:115.200000pt;}
.x13_c00386{left:199.680000pt;}
.x1c_c00386{left:201.213333pt;}
.x3b_c00386{left:222.720000pt;}
.x22_c00386{left:229.626667pt;}
.x1d_c00386{left:248.066667pt;}
.x21_c00386{left:258.053333pt;}
.x1e_c00386{left:271.866667pt;}
.x23_c00386{left:278.786667pt;}
.x24_c00386{left:312.573333pt;}
.x1f_c00386{left:317.186667pt;}
.x3c_c00386{left:338.693333pt;}
.x1_c00386{left:360.186667pt;}
.x2_c00386{left:369.413333pt;}
.xe_c00386{left:372.480000pt;}
.x3_c00386{left:386.306667pt;}
.x4_c00386{left:407.040000pt;}
.x20_c00386{left:410.880000pt;}
.x5_c00386{left:429.306667pt;}
.xf_c00386{left:433.920000pt;}
.x1a_c00386{left:436.226667pt;}
.x6_c00386{left:451.586667pt;}
.x1b_c00386{left:456.960000pt;}
.x28_c00386{left:474.626667pt;}
.x7_c00386{left:491.520000pt;}
.x29_c00386{left:495.360000pt;}
.x33_c00386{left:498.426667pt;}
.x8_c00386{left:502.266667pt;}
.x34_c00386{left:506.880000pt;}
.x2a_c00386{left:512.253333pt;}
.x9_c00386{left:528.386667pt;}
.x35_c00386{left:540.666667pt;}
.x3d_c00386{left:542.973333pt;}
.xa_c00386{left:547.586667pt;}
.x14_c00386{left:549.120000pt;}
.x2b_c00386{left:558.333333pt;}
.x3e_c00386{left:562.946667pt;}
.x15_c00386{left:566.013696pt;}
.x36_c00386{left:572.160000pt;}
.x10_c00386{left:575.226667pt;}
.x11_c00386{left:579.840000pt;}
.x3f_c00386{left:584.453333pt;}
.xb_c00386{left:588.293333pt;}
.x31_c00386{left:593.666667pt;}
.x40_c00386{left:595.973333pt;}
.x2c_c00386{left:599.040000pt;}
.x12_c00386{left:609.026667pt;}
.xc_c00386{left:610.560000pt;}
.x41_c00386{left:615.173333pt;}
.xd_c00386{left:625.920000pt;}
.x37_c00386{left:627.453333pt;}
.x2d_c00386{left:633.600000pt;}
.x42_c00386{left:650.493333pt;}
.x2e_c00386{left:695.040000pt;}
.x43_c00386{left:706.560000pt;}
.x2f_c00386{left:714.240000pt;}
.x30_c00386{left:735.746667pt;}
.x38_c00386{left:740.346667pt;}
.x32_c00386{left:743.426667pt;}
.x44_c00386{left:864.000000pt;}
.x25_c00386{left:868.613333pt;}
.x27_c00386{left:870.906667pt;}
.x26_c00386{left:877.053333pt;}
.x45_c00386{left:878.586667pt;}
.x46_c00386{left:889.346667pt;}
.x47_c00386{left:893.186667pt;}
.x39_c00386{left:897.026667pt;}
.x16_c00386{left:903.173333pt;}
.x17_c00386{left:914.693333pt;}
.x3a_c00386{left:953.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_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_4539de9e83db159679d023c2.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:1.109863;font-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_c00387{transform:matrix(0.125150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125150,0.000000,0.000000,0.250000,0,0);}
.m4_c00387{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m5_c00387{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00387{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_c00387{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m0_c00387{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3_c00387{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m8_c00387{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m6_c00387{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m2_c00387{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,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;}
.fs4_c00387{font-size:3.456000px;}
.fs6_c00387{font-size:6.900000px;}
.fs5_c00387{font-size:17.280000px;}
.fs2_c00387{font-size:20.760000px;}
.fs7_c00387{font-size:31.080000px;}
.fs8_c00387{font-size:34.560000px;}
.fs3_c00387{font-size:38.040000px;}
.fs0_c00387{font-size:41.460000px;}
.fs1_c00387{font-size:117.480000px;}
.y0_c00387{bottom:0.000000px;}
.yb_c00387{bottom:1036.800000px;}
.ya_c00387{bottom:1272.675000px;}
.y9_c00387{bottom:1324.515000px;}
.y8_c00387{bottom:1326.240000px;}
.y5_c00387{bottom:1413.510000px;}
.y2_c00387{bottom:1414.365000px;}
.y6_c00387{bottom:1418.685000px;}
.y4_c00387{bottom:1424.730000px;}
.y3_c00387{bottom:1430.790000px;}
.y1_c00387{bottom:1439.430000px;}
.y7_c00387{bottom:1448.070000px;}
.h6_c00387{height:3.110063px;}
.h8_c00387{height:6.209326px;}
.h7_c00387{height:15.550313px;}
.h4_c00387{height:18.681973px;}
.h9_c00387{height:27.968965px;}
.ha_c00387{height:31.100625px;}
.h5_c00387{height:34.232285px;}
.h2_c00387{height:37.309951px;}
.h3_c00387{height:105.720527px;}
.h0_c00387{height:1505.955000px;}
.h1_c00387{height:1506.000000px;}
.w0_c00387{width:1096.410000px;}
.w1_c00387{width:1096.500000px;}
.x0_c00387{left:0.000000px;}
.xb_c00387{left:141.690000px;}
.xa_c00387{left:150.330000px;}
.x8_c00387{left:161.565000px;}
.x9_c00387{left:177.120000px;}
.x2_c00387{left:324.000000px;}
.x5_c00387{left:327.450000px;}
.x4_c00387{left:335.235000px;}
.x1_c00387{left:336.960000px;}
.x3_c00387{left:358.560000px;}
.x6_c00387{left:383.610000px;}
.x7_c00387{left:397.440000px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls0_c00387{letter-spacing:0.000000pt;}
.ws0_c00387{word-spacing:0.000000pt;}
.fs4_c00387{font-size:3.072000pt;}
.fs6_c00387{font-size:6.133333pt;}
.fs5_c00387{font-size:15.360000pt;}
.fs2_c00387{font-size:18.453333pt;}
.fs7_c00387{font-size:27.626667pt;}
.fs8_c00387{font-size:30.720000pt;}
.fs3_c00387{font-size:33.813333pt;}
.fs0_c00387{font-size:36.853333pt;}
.fs1_c00387{font-size:104.426667pt;}
.y0_c00387{bottom:0.000000pt;}
.yb_c00387{bottom:921.600000pt;}
.ya_c00387{bottom:1131.266667pt;}
.y9_c00387{bottom:1177.346667pt;}
.y8_c00387{bottom:1178.880000pt;}
.y5_c00387{bottom:1256.453333pt;}
.y2_c00387{bottom:1257.213333pt;}
.y6_c00387{bottom:1261.053333pt;}
.y4_c00387{bottom:1266.426667pt;}
.y3_c00387{bottom:1271.813333pt;}
.y1_c00387{bottom:1279.493333pt;}
.y7_c00387{bottom:1287.173333pt;}
.h6_c00387{height:2.764500pt;}
.h8_c00387{height:5.519401pt;}
.h7_c00387{height:13.822500pt;}
.h4_c00387{height:16.606198pt;}
.h9_c00387{height:24.861302pt;}
.ha_c00387{height:27.645000pt;}
.h5_c00387{height:30.428698pt;}
.h2_c00387{height:33.164401pt;}
.h3_c00387{height:93.973802pt;}
.h0_c00387{height:1338.626667pt;}
.h1_c00387{height:1338.666667pt;}
.w0_c00387{width:974.586667pt;}
.w1_c00387{width:974.666667pt;}
.x0_c00387{left:0.000000pt;}
.xb_c00387{left:125.946667pt;}
.xa_c00387{left:133.626667pt;}
.x8_c00387{left:143.613333pt;}
.x9_c00387{left:157.440000pt;}
.x2_c00387{left:288.000000pt;}
.x5_c00387{left:291.066667pt;}
.x4_c00387{left:297.986667pt;}
.x1_c00387{left:299.520000pt;}
.x3_c00387{left:318.720000pt;}
.x6_c00387{left:340.986667pt;}
.x7_c00387{left:353.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_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_4d8294d2e4cd1d88a9646691.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.109863;font-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_c00388{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);}
.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;}
.fs0_c00388{font-size:600.000000px;}
.y0_c00388{bottom:0.000000px;}
.y1_c00388{bottom:15.000000px;}
.h2_c00388{height:539.941406px;}
.h0_c00388{height:1515.450000px;}
.h1_c00388{height:1515.750000px;}
.w1_c00388{width:1080.750000px;}
.w0_c00388{width:1080.870000px;}
.x0_c00388{left:0.000000px;}
.x1_c00388{left:15.000000px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls0_c00388{letter-spacing:0.000000pt;}
.ws0_c00388{word-spacing:0.000000pt;}
.fs0_c00388{font-size:533.333333pt;}
.y0_c00388{bottom:0.000000pt;}
.y1_c00388{bottom:13.333333pt;}
.h2_c00388{height:479.947917pt;}
.h0_c00388{height:1347.066667pt;}
.h1_c00388{height:1347.333333pt;}
.w1_c00388{width:960.666667pt;}
.w0_c00388{width:960.773333pt;}
.x0_c00388{left:0.000000pt;}
.x1_c00388{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00389;src:url('chunks/assets/font_31ff08c44a65fc6a67ddb559.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:1.109863;font-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_c00389{transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);}
.mf_c00389{transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);}
.m2_c00389{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m14_c00389{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);}
.m1f_c00389{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.m1_c00389{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m1a_c00389{transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);}
.m19_c00389{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m7_c00389{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m9_c00389{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m1d_c00389{transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);}
.m18_c00389{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.md_c00389{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);}
.m16_c00389{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m1e_c00389{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);}
.mc_c00389{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.m12_c00389{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);}
.mb_c00389{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);}
.m17_c00389{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);}
.m11_c00389{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);}
.m10_c00389{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);}
.m5_c00389{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);}
.m21_c00389{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c00389{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);}
.m8_c00389{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);}
.m4_c00389{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c00389{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c00389{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m13_c00389{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00389{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m22_c00389{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00389{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);}
.m20_c00389{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m0_c00389{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m3_c00389{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.me_c00389{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v0_c00389{vertical-align:0.000000px;}
.ls0_c00389{letter-spacing:0.000000px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00389{word-spacing:0.000000px;}
.fc0_c00389{color:transparent;}
.fs13_c00389{font-size:3.456000px;}
.fs15_c00389{font-size:6.000000px;}
.fs12_c00389{font-size:6.900000px;}
.fs2_c00389{font-size:10.380000px;}
.fs14_c00389{font-size:13.800000px;}
.fs0_c00389{font-size:17.280000px;}
.fsa_c00389{font-size:24.180000px;}
.fs1_c00389{font-size:27.660000px;}
.fs10_c00389{font-size:31.080000px;}
.fs4_c00389{font-size:34.560000px;}
.fse_c00389{font-size:38.040000px;}
.fsd_c00389{font-size:41.460000px;}
.fs6_c00389{font-size:44.940000px;}
.fs11_c00389{font-size:48.360000px;}
.fsb_c00389{font-size:51.840000px;}
.fs3_c00389{font-size:55.320000px;}
.fsf_c00389{font-size:58.740000px;}
.fsc_c00389{font-size:65.640000px;}
.fs9_c00389{font-size:72.600000px;}
.fs5_c00389{font-size:76.020000px;}
.fs7_c00389{font-size:82.920000px;}
.fs8_c00389{font-size:100.200000px;}
.y0_c00389{bottom:0.000000px;}
.y1b_c00389{bottom:673.920000px;}
.y1a_c00389{bottom:676.515000px;}
.y1d_c00389{bottom:677.370000px;}
.y16_c00389{bottom:679.110000px;}
.y15_c00389{bottom:680.835000px;}
.y1c_c00389{bottom:682.560000px;}
.y17_c00389{bottom:684.285000px;}
.y18_c00389{bottom:685.155000px;}
.y19_c00389{bottom:697.245000px;}
.y10_c00389{bottom:698.115000px;}
.y11_c00389{bottom:698.970000px;}
.y13_c00389{bottom:699.840000px;}
.yf_c00389{bottom:701.565000px;}
.y14_c00389{bottom:702.435000px;}
.y12_c00389{bottom:703.290000px;}
.yc_c00389{bottom:717.990000px;}
.ya_c00389{bottom:718.845000px;}
.yb_c00389{bottom:719.715000px;}
.yd_c00389{bottom:722.310000px;}
.y9_c00389{bottom:723.165000px;}
.ye_c00389{bottom:724.890000px;}
.y8_c00389{bottom:739.590000px;}
.y6_c00389{bottom:742.170000px;}
.y7_c00389{bottom:743.040000px;}
.y5_c00389{bottom:743.910000px;}
.y4_c00389{bottom:1239.840000px;}
.y1_c00389{bottom:1296.870000px;}
.y2_c00389{bottom:1384.125000px;}
.y3_c00389{bottom:1388.445000px;}
.h15_c00389{height:3.110063px;}
.h17_c00389{height:5.399414px;}
.h14_c00389{height:6.209326px;}
.h4_c00389{height:9.340986px;}
.h16_c00389{height:12.418652px;}
.h2_c00389{height:15.550313px;}
.hc_c00389{height:21.759639px;}
.h3_c00389{height:24.891299px;}
.h12_c00389{height:27.968965px;}
.h6_c00389{height:31.100625px;}
.h10_c00389{height:34.232285px;}
.hf_c00389{height:37.309951px;}
.h8_c00389{height:40.441611px;}
.h13_c00389{height:43.519277px;}
.hd_c00389{height:46.650937px;}
.h5_c00389{height:49.782598px;}
.h11_c00389{height:52.860264px;}
.he_c00389{height:59.069590px;}
.hb_c00389{height:65.332910px;}
.h7_c00389{height:68.410576px;}
.h9_c00389{height:74.619902px;}
.ha_c00389{height:90.170215px;}
.h0_c00389{height:1505.955000px;}
.h1_c00389{height:1506.000000px;}
.w0_c00389{width:1096.410000px;}
.w1_c00389{width:1096.500000px;}
.x0_c00389{left:0.000000px;}
.x1_c00389{left:18.150000px;}
.x2_c00389{left:168.480000px;}
.x3_c00389{left:180.570000px;}
.x4_c00389{left:183.165000px;}
.x15_c00389{left:589.245000px;}
.xd_c00389{left:591.840000px;}
.x1c_c00389{left:593.565000px;}
.x23_c00389{left:608.250000px;}
.x5_c00389{left:613.440000px;}
.x1d_c00389{left:615.165000px;}
.x16_c00389{left:617.760000px;}
.x24_c00389{left:622.950000px;}
.x6_c00389{left:628.125000px;}
.x7_c00389{left:646.275000px;}
.xe_c00389{left:650.595000px;}
.xf_c00389{left:658.365000px;}
.x8_c00389{left:667.005000px;}
.x17_c00389{left:676.515000px;}
.x10_c00389{left:679.965000px;}
.x11_c00389{left:695.520000px;}
.x1e_c00389{left:699.840000px;}
.x9_c00389{left:718.845000px;}
.x12_c00389{left:730.080000px;}
.x18_c00389{left:731.805000px;}
.xa_c00389{left:743.040000px;}
.x1f_c00389{left:758.595000px;}
.x20_c00389{left:782.790000px;}
.x19_c00389{left:787.965000px;}
.x13_c00389{left:800.925000px;}
.x21_c00389{left:812.160000px;}
.x14_c00389{left:816.480000px;}
.x25_c00389{left:821.670000px;}
.x1a_c00389{left:825.120000px;}
.xb_c00389{left:831.165000px;}
.x26_c00389{left:838.950000px;}
.xc_c00389{left:853.635000px;}
.x22_c00389{left:859.680000px;}
.x1b_c00389{left:870.915000px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls0_c00389{letter-spacing:0.000000pt;}
.ws0_c00389{word-spacing:0.000000pt;}
.fs13_c00389{font-size:3.072000pt;}
.fs15_c00389{font-size:5.333333pt;}
.fs12_c00389{font-size:6.133333pt;}
.fs2_c00389{font-size:9.226667pt;}
.fs14_c00389{font-size:12.266667pt;}
.fs0_c00389{font-size:15.360000pt;}
.fsa_c00389{font-size:21.493333pt;}
.fs1_c00389{font-size:24.586667pt;}
.fs10_c00389{font-size:27.626667pt;}
.fs4_c00389{font-size:30.720000pt;}
.fse_c00389{font-size:33.813333pt;}
.fsd_c00389{font-size:36.853333pt;}
.fs6_c00389{font-size:39.946667pt;}
.fs11_c00389{font-size:42.986667pt;}
.fsb_c00389{font-size:46.080000pt;}
.fs3_c00389{font-size:49.173333pt;}
.fsf_c00389{font-size:52.213333pt;}
.fsc_c00389{font-size:58.346667pt;}
.fs9_c00389{font-size:64.533333pt;}
.fs5_c00389{font-size:67.573333pt;}
.fs7_c00389{font-size:73.706667pt;}
.fs8_c00389{font-size:89.066667pt;}
.y0_c00389{bottom:0.000000pt;}
.y1b_c00389{bottom:599.040000pt;}
.y1a_c00389{bottom:601.346667pt;}
.y1d_c00389{bottom:602.106667pt;}
.y16_c00389{bottom:603.653333pt;}
.y15_c00389{bottom:605.186667pt;}
.y1c_c00389{bottom:606.720000pt;}
.y17_c00389{bottom:608.253333pt;}
.y18_c00389{bottom:609.026667pt;}
.y19_c00389{bottom:619.773333pt;}
.y10_c00389{bottom:620.546667pt;}
.y11_c00389{bottom:621.306667pt;}
.y13_c00389{bottom:622.080000pt;}
.yf_c00389{bottom:623.613333pt;}
.y14_c00389{bottom:624.386667pt;}
.y12_c00389{bottom:625.146667pt;}
.yc_c00389{bottom:638.213333pt;}
.ya_c00389{bottom:638.973333pt;}
.yb_c00389{bottom:639.746667pt;}
.yd_c00389{bottom:642.053333pt;}
.y9_c00389{bottom:642.813333pt;}
.ye_c00389{bottom:644.346667pt;}
.y8_c00389{bottom:657.413333pt;}
.y6_c00389{bottom:659.706667pt;}
.y7_c00389{bottom:660.480000pt;}
.y5_c00389{bottom:661.253333pt;}
.y4_c00389{bottom:1102.080000pt;}
.y1_c00389{bottom:1152.773333pt;}
.y2_c00389{bottom:1230.333333pt;}
.y3_c00389{bottom:1234.173333pt;}
.h15_c00389{height:2.764500pt;}
.h17_c00389{height:4.799479pt;}
.h14_c00389{height:5.519401pt;}
.h4_c00389{height:8.303099pt;}
.h16_c00389{height:11.038802pt;}
.h2_c00389{height:13.822500pt;}
.hc_c00389{height:19.341901pt;}
.h3_c00389{height:22.125599pt;}
.h12_c00389{height:24.861302pt;}
.h6_c00389{height:27.645000pt;}
.h10_c00389{height:30.428698pt;}
.hf_c00389{height:33.164401pt;}
.h8_c00389{height:35.948099pt;}
.h13_c00389{height:38.683802pt;}
.hd_c00389{height:41.467500pt;}
.h5_c00389{height:44.251198pt;}
.h11_c00389{height:46.986901pt;}
.he_c00389{height:52.506302pt;}
.hb_c00389{height:58.073698pt;}
.h7_c00389{height:60.809401pt;}
.h9_c00389{height:66.328802pt;}
.ha_c00389{height:80.151302pt;}
.h0_c00389{height:1338.626667pt;}
.h1_c00389{height:1338.666667pt;}
.w0_c00389{width:974.586667pt;}
.w1_c00389{width:974.666667pt;}
.x0_c00389{left:0.000000pt;}
.x1_c00389{left:16.133333pt;}
.x2_c00389{left:149.760000pt;}
.x3_c00389{left:160.506667pt;}
.x4_c00389{left:162.813333pt;}
.x15_c00389{left:523.773333pt;}
.xd_c00389{left:526.080000pt;}
.x1c_c00389{left:527.613333pt;}
.x23_c00389{left:540.666667pt;}
.x5_c00389{left:545.280000pt;}
.x1d_c00389{left:546.813333pt;}
.x16_c00389{left:549.120000pt;}
.x24_c00389{left:553.733333pt;}
.x6_c00389{left:558.333333pt;}
.x7_c00389{left:574.466667pt;}
.xe_c00389{left:578.306667pt;}
.xf_c00389{left:585.213333pt;}
.x8_c00389{left:592.893333pt;}
.x17_c00389{left:601.346667pt;}
.x10_c00389{left:604.413333pt;}
.x11_c00389{left:618.240000pt;}
.x1e_c00389{left:622.080000pt;}
.x9_c00389{left:638.973333pt;}
.x12_c00389{left:648.960000pt;}
.x18_c00389{left:650.493333pt;}
.xa_c00389{left:660.480000pt;}
.x1f_c00389{left:674.306667pt;}
.x20_c00389{left:695.813333pt;}
.x19_c00389{left:700.413333pt;}
.x13_c00389{left:711.933333pt;}
.x21_c00389{left:721.920000pt;}
.x14_c00389{left:725.760000pt;}
.x25_c00389{left:730.373333pt;}
.x1a_c00389{left:733.440000pt;}
.xb_c00389{left:738.813333pt;}
.x26_c00389{left:745.733333pt;}
.xc_c00389{left:758.786667pt;}
.x22_c00389{left:764.160000pt;}
.x1b_c00389{left:774.146667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_055ce3076e38b7f5085fd907.woff2')format("woff");}.ff1_c00390{font-family:ff1_c00390;line-height:1.109863;font-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_c00390{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m4_c00390{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m3_c00390{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);}
.m1_c00390{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);}
.m2_c00390{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m0_c00390{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m6_c00390{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);}
.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;}
.fs0_c00390{font-size:20.760000px;}
.fs4_c00390{font-size:24.180000px;}
.fs1_c00390{font-size:31.080000px;}
.fs3_c00390{font-size:34.560000px;}
.fs2_c00390{font-size:44.940000px;}
.y0_c00390{bottom:0.000000px;}
.y7_c00390{bottom:1373.760000px;}
.y6_c00390{bottom:1378.080000px;}
.y4_c00390{bottom:1384.995000px;}
.y5_c00390{bottom:1390.170000px;}
.y3_c00390{bottom:1417.830000px;}
.y2_c00390{bottom:1429.050000px;}
.y1_c00390{bottom:1453.245000px;}
.h2_c00390{height:18.681973px;}
.h6_c00390{height:21.759639px;}
.h3_c00390{height:27.968965px;}
.h5_c00390{height:31.100625px;}
.h4_c00390{height:40.441611px;}
.h0_c00390{height:1515.450000px;}
.h1_c00390{height:1515.750000px;}
.w1_c00390{width:1080.750000px;}
.w0_c00390{width:1080.870000px;}
.x0_c00390{left:0.000000px;}
.x3_c00390{left:165.030000px;}
.x2_c00390{left:201.315000px;}
.x4_c00390{left:1030.755000px;}
.x1_c00390{left:1052.355000px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls0_c00390{letter-spacing:0.000000pt;}
.ws0_c00390{word-spacing:0.000000pt;}
.fs0_c00390{font-size:18.453333pt;}
.fs4_c00390{font-size:21.493333pt;}
.fs1_c00390{font-size:27.626667pt;}
.fs3_c00390{font-size:30.720000pt;}
.fs2_c00390{font-size:39.946667pt;}
.y0_c00390{bottom:0.000000pt;}
.y7_c00390{bottom:1221.120000pt;}
.y6_c00390{bottom:1224.960000pt;}
.y4_c00390{bottom:1231.106667pt;}
.y5_c00390{bottom:1235.706667pt;}
.y3_c00390{bottom:1260.293333pt;}
.y2_c00390{bottom:1270.266667pt;}
.y1_c00390{bottom:1291.773333pt;}
.h2_c00390{height:16.606198pt;}
.h6_c00390{height:19.341901pt;}
.h3_c00390{height:24.861302pt;}
.h5_c00390{height:27.645000pt;}
.h4_c00390{height:35.948099pt;}
.h0_c00390{height:1347.066667pt;}
.h1_c00390{height:1347.333333pt;}
.w1_c00390{width:960.666667pt;}
.w0_c00390{width:960.773333pt;}
.x0_c00390{left:0.000000pt;}
.x3_c00390{left:146.693333pt;}
.x2_c00390{left:178.946667pt;}
.x4_c00390{left:916.226667pt;}
.x1_c00390{left:935.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_406f7c6b1bb40f6084e56b14.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:1.109863;font-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_c00391{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c00391{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);}
.m1_c00391{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,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;}
.fs0_c00391{font-size:58.740000px;}
.fs2_c00391{font-size:62.220000px;}
.fs1_c00391{font-size:65.640000px;}
.y0_c00391{bottom:0.000000px;}
.y2_c00391{bottom:886.470000px;}
.y1_c00391{bottom:888.195000px;}
.h2_c00391{height:52.860264px;}
.h4_c00391{height:55.991924px;}
.h3_c00391{height:59.069590px;}
.h0_c00391{height:1505.955000px;}
.h1_c00391{height:1506.000000px;}
.w0_c00391{width:1096.410000px;}
.w1_c00391{width:1096.500000px;}
.x0_c00391{left:0.000000px;}
.x1_c00391{left:320.550000px;}
.x2_c00391{left:371.520000px;}
.x3_c00391{left:426.810000px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ws0_c00391{word-spacing:0.000000pt;}
.fs0_c00391{font-size:52.213333pt;}
.fs2_c00391{font-size:55.306667pt;}
.fs1_c00391{font-size:58.346667pt;}
.y0_c00391{bottom:0.000000pt;}
.y2_c00391{bottom:787.973333pt;}
.y1_c00391{bottom:789.506667pt;}
.h2_c00391{height:46.986901pt;}
.h4_c00391{height:49.770599pt;}
.h3_c00391{height:52.506302pt;}
.h0_c00391{height:1338.626667pt;}
.h1_c00391{height:1338.666667pt;}
.w0_c00391{width:974.586667pt;}
.w1_c00391{width:974.666667pt;}
.x0_c00391{left:0.000000pt;}
.x1_c00391{left:284.933333pt;}
.x2_c00391{left:330.240000pt;}
.x3_c00391{left:379.386667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad16c4bec29a037484603c80.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.109863;font-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_c00392{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma_c00392{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);}
.m6_c00392{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00392{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m9_c00392{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m8_c00392{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c00392{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00392{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1_c00392{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m4_c00392{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c00392{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mb_c00392{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,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;}
.fs7_c00392{font-size:6.000000px;}
.fs4_c00392{font-size:6.900000px;}
.fs6_c00392{font-size:10.380000px;}
.fs5_c00392{font-size:13.800000px;}
.fs3_c00392{font-size:17.280000px;}
.fs8_c00392{font-size:24.180000px;}
.fs2_c00392{font-size:34.560000px;}
.fs9_c00392{font-size:38.040000px;}
.fs0_c00392{font-size:62.220000px;}
.fs1_c00392{font-size:82.920000px;}
.y0_c00392{bottom:0.000000px;}
.ye_c00392{bottom:405.210000px;}
.yf_c00392{bottom:406.950000px;}
.yc_c00392{bottom:531.360000px;}
.yd_c00392{bottom:536.550000px;}
.yb_c00392{bottom:594.435000px;}
.y9_c00392{bottom:609.120000px;}
.ya_c00392{bottom:612.570000px;}
.y4_c00392{bottom:743.040000px;}
.y8_c00392{bottom:1217.370000px;}
.y7_c00392{bottom:1219.110000px;}
.y6_c00392{bottom:1262.310000px;}
.y5_c00392{bottom:1263.165000px;}
.y3_c00392{bottom:1390.170000px;}
.y2_c00392{bottom:1391.040000px;}
.y1_c00392{bottom:1395.360000px;}
.h9_c00392{height:5.399414px;}
.h6_c00392{height:6.209326px;}
.h8_c00392{height:9.340986px;}
.h7_c00392{height:12.418652px;}
.h5_c00392{height:15.550313px;}
.ha_c00392{height:21.759639px;}
.h4_c00392{height:31.100625px;}
.hb_c00392{height:34.232285px;}
.h2_c00392{height:55.991924px;}
.h3_c00392{height:74.619902px;}
.h0_c00392{height:1515.450000px;}
.h1_c00392{height:1515.750000px;}
.w0_c00392{width:1088.640000px;}
.w1_c00392{width:1089.000000px;}
.x0_c00392{left:0.000000px;}
.x1_c00392{left:416.445000px;}
.x2_c00392{left:562.470000px;}
.x3_c00392{left:916.710000px;}
.x4_c00392{left:927.930000px;}
.x5_c00392{left:947.805000px;}
.x6_c00392{left:969.405000px;}
.xd_c00392{left:996.195000px;}
.xe_c00392{left:1010.010000px;}
.xa_c00392{left:1025.565000px;}
.xb_c00392{left:1034.205000px;}
.xf_c00392{left:1038.525000px;}
.x7_c00392{left:1061.850000px;}
.xc_c00392{left:1068.765000px;}
.x9_c00392{left:1070.490000px;}
.x8_c00392{left:1076.550000px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ws0_c00392{word-spacing:0.000000pt;}
.fs7_c00392{font-size:5.333333pt;}
.fs4_c00392{font-size:6.133333pt;}
.fs6_c00392{font-size:9.226667pt;}
.fs5_c00392{font-size:12.266667pt;}
.fs3_c00392{font-size:15.360000pt;}
.fs8_c00392{font-size:21.493333pt;}
.fs2_c00392{font-size:30.720000pt;}
.fs9_c00392{font-size:33.813333pt;}
.fs0_c00392{font-size:55.306667pt;}
.fs1_c00392{font-size:73.706667pt;}
.y0_c00392{bottom:0.000000pt;}
.ye_c00392{bottom:360.186667pt;}
.yf_c00392{bottom:361.733333pt;}
.yc_c00392{bottom:472.320000pt;}
.yd_c00392{bottom:476.933333pt;}
.yb_c00392{bottom:528.386667pt;}
.y9_c00392{bottom:541.440000pt;}
.ya_c00392{bottom:544.506667pt;}
.y4_c00392{bottom:660.480000pt;}
.y8_c00392{bottom:1082.106667pt;}
.y7_c00392{bottom:1083.653333pt;}
.y6_c00392{bottom:1122.053333pt;}
.y5_c00392{bottom:1122.813333pt;}
.y3_c00392{bottom:1235.706667pt;}
.y2_c00392{bottom:1236.480000pt;}
.y1_c00392{bottom:1240.320000pt;}
.h9_c00392{height:4.799479pt;}
.h6_c00392{height:5.519401pt;}
.h8_c00392{height:8.303099pt;}
.h7_c00392{height:11.038802pt;}
.h5_c00392{height:13.822500pt;}
.ha_c00392{height:19.341901pt;}
.h4_c00392{height:27.645000pt;}
.hb_c00392{height:30.428698pt;}
.h2_c00392{height:49.770599pt;}
.h3_c00392{height:66.328802pt;}
.h0_c00392{height:1347.066667pt;}
.h1_c00392{height:1347.333333pt;}
.w0_c00392{width:967.680000pt;}
.w1_c00392{width:968.000000pt;}
.x0_c00392{left:0.000000pt;}
.x1_c00392{left:370.173333pt;}
.x2_c00392{left:499.973333pt;}
.x3_c00392{left:814.853333pt;}
.x4_c00392{left:824.826667pt;}
.x5_c00392{left:842.493333pt;}
.x6_c00392{left:861.693333pt;}
.xd_c00392{left:885.506667pt;}
.xe_c00392{left:897.786667pt;}
.xa_c00392{left:911.613333pt;}
.xb_c00392{left:919.293333pt;}
.xf_c00392{left:923.133333pt;}
.x7_c00392{left:943.866667pt;}
.xc_c00392{left:950.013333pt;}
.x9_c00392{left:951.546667pt;}
.x8_c00392{left:956.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_842010bb488cb2880c7b1814.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:1.109863;font-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_c00393{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);}
.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;}
.fs0_c00393{font-size:600.000000px;}
.y0_c00393{bottom:0.000000px;}
.y1_c00393{bottom:15.000000px;}
.h2_c00393{height:539.941406px;}
.h0_c00393{height:1505.955000px;}
.h1_c00393{height:1506.000000px;}
.w0_c00393{width:1088.640000px;}
.w1_c00393{width:1089.000000px;}
.x0_c00393{left:0.000000px;}
.x1_c00393{left:15.000000px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ws0_c00393{word-spacing:0.000000pt;}
.fs0_c00393{font-size:533.333333pt;}
.y0_c00393{bottom:0.000000pt;}
.y1_c00393{bottom:13.333333pt;}
.h2_c00393{height:479.947917pt;}
.h0_c00393{height:1338.626667pt;}
.h1_c00393{height:1338.666667pt;}
.w0_c00393{width:967.680000pt;}
.w1_c00393{width:968.000000pt;}
.x0_c00393{left:0.000000pt;}
.x1_c00393{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9613a80a4c5d101dfc5574e7.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.109863;font-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_c00394{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);}
.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:600.000000px;}
.y0_c00394{bottom:0.000000px;}
.y1_c00394{bottom:15.000000px;}
.h2_c00394{height:539.941406px;}
.h0_c00394{height:1515.450000px;}
.h1_c00394{height:1515.750000px;}
.w0_c00394{width:1088.640000px;}
.w1_c00394{width:1089.000000px;}
.x0_c00394{left:0.000000px;}
.x1_c00394{left:15.000000px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls0_c00394{letter-spacing:0.000000pt;}
.ws0_c00394{word-spacing:0.000000pt;}
.fs0_c00394{font-size:533.333333pt;}
.y0_c00394{bottom:0.000000pt;}
.y1_c00394{bottom:13.333333pt;}
.h2_c00394{height:479.947917pt;}
.h0_c00394{height:1347.066667pt;}
.h1_c00394{height:1347.333333pt;}
.w0_c00394{width:967.680000pt;}
.w1_c00394{width:968.000000pt;}
.x0_c00394{left:0.000000pt;}
.x1_c00394{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4117191bd796cdac92d07957.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:1.109863;font-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_c00395{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me_c00395{transform:matrix(0.101250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101250,0.000000,0.000000,0.250000,0,0);}
.m31_c00395{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.mf_c00395{transform:matrix(0.118550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118550,0.000000,0.000000,0.250000,0,0);}
.m29_c00395{transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);}
.m13_c00395{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m17_c00395{transform:matrix(0.126825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126825,0.000000,0.000000,0.250000,0,0);}
.m2_c00395{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m41_c00395{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.m1d_c00395{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m28_c00395{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);}
.m2f_c00395{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);}
.m30_c00395{transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);}
.m24_c00395{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);}
.m1a_c00395{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.mc_c00395{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.m1e_c00395{transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188225,0.000000,0.000000,0.250000,0,0);}
.m5_c00395{transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);}
.m12_c00395{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m1f_c00395{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m2a_c00395{transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);}
.m1b_c00395{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);}
.m33_c00395{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);}
.m34_c00395{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);}
.m36_c00395{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.md_c00395{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m3_c00395{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);}
.m18_c00395{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6_c00395{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m40_c00395{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);}
.m2e_c00395{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00395{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);}
.m2c_c00395{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00395{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);}
.m22_c00395{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);}
.m32_c00395{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m38_c00395{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c00395{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00395{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00395{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00395{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);}
.ma_c00395{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c00395{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);}
.m3f_c00395{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00395{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00395{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);}
.m14_c00395{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m27_c00395{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);}
.m39_c00395{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);}
.m19_c00395{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00395{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00395{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m37_c00395{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m23_c00395{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4_c00395{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m26_c00395{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m20_c00395{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);}
.m1_c00395{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m8_c00395{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);}
.m9_c00395{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mb_c00395{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m25_c00395{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m42_c00395{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m11_c00395{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);}
.m43_c00395{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m35_c00395{transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);}
.m21_c00395{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m0_c00395{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m44_c00395{transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);}
.v0_c00395{vertical-align:0.000000px;}
.v1_c00395{vertical-align:6.960000px;}
.ls1_c00395{letter-spacing:0.000000px;}
.ls0_c00395{letter-spacing:41.167440px;}
.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;}
.fse_c00395{font-size:3.456000px;}
.fs4_c00395{font-size:6.900000px;}
.fs3_c00395{font-size:10.380000px;}
.fs2_c00395{font-size:13.800000px;}
.fs0_c00395{font-size:17.280000px;}
.fs5_c00395{font-size:20.760000px;}
.fs1_c00395{font-size:24.180000px;}
.fs16_c00395{font-size:34.560000px;}
.fs1b_c00395{font-size:38.040000px;}
.fs15_c00395{font-size:41.460000px;}
.fs17_c00395{font-size:48.360000px;}
.fs1c_c00395{font-size:51.840000px;}
.fsf_c00395{font-size:55.320000px;}
.fs9_c00395{font-size:58.740000px;}
.fs1d_c00395{font-size:62.220000px;}
.fs7_c00395{font-size:65.640000px;}
.fs6_c00395{font-size:69.120000px;}
.fsc_c00395{font-size:72.600000px;}
.fs19_c00395{font-size:76.020000px;}
.fsb_c00395{font-size:79.500000px;}
.fsd_c00395{font-size:82.920000px;}
.fs10_c00395{font-size:86.400000px;}
.fs8_c00395{font-size:89.880000px;}
.fsa_c00395{font-size:96.780000px;}
.fs12_c00395{font-size:100.200000px;}
.fs14_c00395{font-size:103.680000px;}
.fs1a_c00395{font-size:107.160000px;}
.fs13_c00395{font-size:110.580000px;}
.fs11_c00395{font-size:114.060000px;}
.fs18_c00395{font-size:120.960000px;}
.y0_c00395{bottom:0.000000px;}
.y40_c00395{bottom:438.915000px;}
.y41_c00395{bottom:442.365000px;}
.y43_c00395{bottom:501.990000px;}
.y42_c00395{bottom:505.440000px;}
.y3f_c00395{bottom:1094.685000px;}
.y3d_c00395{bottom:1131.840000px;}
.y3e_c00395{bottom:1132.710000px;}
.y3c_c00395{bottom:1133.565000px;}
.y3b_c00395{bottom:1134.435000px;}
.y34_c00395{bottom:1137.030000px;}
.y37_c00395{bottom:1139.610000px;}
.y36_c00395{bottom:1140.480000px;}
.y35_c00395{bottom:1141.350000px;}
.y38_c00395{bottom:1142.205000px;}
.y39_c00395{bottom:1153.440000px;}
.y3a_c00395{bottom:1157.760000px;}
.y23_c00395{bottom:1172.445000px;}
.y1d_c00395{bottom:1177.635000px;}
.y20_c00395{bottom:1179.360000px;}
.y1f_c00395{bottom:1183.680000px;}
.y30_c00395{bottom:1185.405000px;}
.y1e_c00395{bottom:1188.000000px;}
.y22_c00395{bottom:1188.870000px;}
.y31_c00395{bottom:1190.595000px;}
.y2f_c00395{bottom:1192.320000px;}
.y33_c00395{bottom:1193.190000px;}
.y21_c00395{bottom:1195.770000px;}
.y1a_c00395{bottom:1198.365000px;}
.y1b_c00395{bottom:1199.235000px;}
.y1c_c00395{bottom:1200.960000px;}
.y32_c00395{bottom:1201.830000px;}
.y2e_c00395{bottom:1207.875000px;}
.y2d_c00395{bottom:1210.470000px;}
.y14_c00395{bottom:1211.325000px;}
.y16_c00395{bottom:1213.050000px;}
.y15_c00395{bottom:1214.790000px;}
.y29_c00395{bottom:1215.645000px;}
.y17_c00395{bottom:1216.515000px;}
.y13_c00395{bottom:1218.240000px;}
.y18_c00395{bottom:1219.110000px;}
.y19_c00395{bottom:1219.965000px;}
.y2b_c00395{bottom:1220.835000px;}
.y2c_c00395{bottom:1223.430000px;}
.y2a_c00395{bottom:1224.285000px;}
.y28_c00395{bottom:1226.010000px;}
.ye_c00395{bottom:1235.520000px;}
.yd_c00395{bottom:1237.245000px;}
.y26_c00395{bottom:1248.480000px;}
.y11_c00395{bottom:1249.350000px;}
.y12_c00395{bottom:1251.930000px;}
.y27_c00395{bottom:1256.250000px;}
.yf_c00395{bottom:1270.950000px;}
.y10_c00395{bottom:1271.805000px;}
.y25_c00395{bottom:1303.770000px;}
.y24_c00395{bottom:1328.835000px;}
.ya_c00395{bottom:1362.525000px;}
.y1_c00395{bottom:1365.990000px;}
.y2_c00395{bottom:1370.310000px;}
.y5_c00395{bottom:1375.485000px;}
.yc_c00395{bottom:1376.355000px;}
.y4_c00395{bottom:1382.400000px;}
.yb_c00395{bottom:1384.125000px;}
.y3_c00395{bottom:1386.720000px;}
.y6_c00395{bottom:1388.445000px;}
.y8_c00395{bottom:1389.315000px;}
.y7_c00395{bottom:1390.170000px;}
.y9_c00395{bottom:1391.910000px;}
.h10_c00395{height:3.110063px;}
.h6_c00395{height:6.209326px;}
.h5_c00395{height:9.340986px;}
.h4_c00395{height:12.418652px;}
.h2_c00395{height:15.550313px;}
.h7_c00395{height:18.681973px;}
.h3_c00395{height:21.759639px;}
.h1b_c00395{height:22.510313px;}
.h18_c00395{height:31.100625px;}
.h1e_c00395{height:34.232285px;}
.h17_c00395{height:37.309951px;}
.h19_c00395{height:43.519277px;}
.h1f_c00395{height:46.650937px;}
.h11_c00395{height:49.782598px;}
.hb_c00395{height:52.860264px;}
.h20_c00395{height:55.991924px;}
.h9_c00395{height:59.069590px;}
.h8_c00395{height:62.201250px;}
.he_c00395{height:65.332910px;}
.h1c_c00395{height:68.410576px;}
.hd_c00395{height:71.542236px;}
.hf_c00395{height:74.619902px;}
.h12_c00395{height:77.751563px;}
.ha_c00395{height:80.883223px;}
.hc_c00395{height:87.092549px;}
.h14_c00395{height:90.170215px;}
.h16_c00395{height:93.301875px;}
.h1d_c00395{height:96.433535px;}
.h15_c00395{height:99.511201px;}
.h13_c00395{height:102.642861px;}
.h1a_c00395{height:108.852188px;}
.h0_c00395{height:1505.955000px;}
.h1_c00395{height:1506.000000px;}
.w0_c00395{width:1100.730000px;}
.w1_c00395{width:1101.000000px;}
.x0_c00395{left:0.000000px;}
.x55_c00395{left:1.725000px;}
.x1_c00395{left:7.770000px;}
.x56_c00395{left:22.470000px;}
.x53_c00395{left:39.750000px;}
.x52_c00395{left:47.520000px;}
.x54_c00395{left:52.710000px;}
.x2_c00395{left:78.630000px;}
.x18_c00395{left:101.085000px;}
.x19_c00395{left:110.595000px;}
.x6_c00395{left:165.885000px;}
.x3_c00395{left:199.590000px;}
.x4_c00395{left:202.170000px;}
.x5_c00395{left:211.680000px;}
.x1a_c00395{left:231.555000px;}
.x1c_c00395{left:233.280000px;}
.x25_c00395{left:256.605000px;}
.x1e_c00395{left:263.520000px;}
.x26_c00395{left:289.440000px;}
.x1f_c00395{left:297.210000px;}
.x49_c00395{left:308.445000px;}
.x4b_c00395{left:311.040000px;}
.x27_c00395{left:320.550000px;}
.x4a_c00395{left:324.870000px;}
.x4c_c00395{left:332.640000px;}
.x29_c00395{left:337.830000px;}
.x1b_c00395{left:348.195000px;}
.x20_c00395{left:353.370000px;}
.x4d_c00395{left:355.965000px;}
.x2a_c00395{left:358.560000px;}
.x4e_c00395{left:369.795000px;}
.x2d_c00395{left:372.390000px;}
.x2b_c00395{left:377.565000px;}
.x4f_c00395{left:391.395000px;}
.x2c_c00395{left:397.440000px;}
.x21_c00395{left:403.485000px;}
.x50_c00395{left:406.950000px;}
.x7_c00395{left:412.125000px;}
.x28_c00395{left:419.040000px;}
.x22_c00395{left:436.320000px;}
.x51_c00395{left:440.640000px;}
.x8_c00395{left:449.280000px;}
.x9_c00395{left:476.925000px;}
.x1d_c00395{left:492.480000px;}
.x23_c00395{left:496.800000px;}
.xa_c00395{left:504.570000px;}
.xb_c00395{left:518.400000px;}
.x24_c00395{left:521.850000px;}
.xc_c00395{left:529.635000px;}
.xd_c00395{left:545.190000px;}
.x14_c00395{left:565.920000px;}
.xe_c00395{left:571.110000px;}
.x32_c00395{left:578.010000px;}
.x30_c00395{left:580.605000px;}
.xf_c00395{left:594.435000px;}
.x41_c00395{left:604.800000px;}
.x38_c00395{left:613.440000px;}
.x33_c00395{left:616.890000px;}
.x3c_c00395{left:618.630000px;}
.x42_c00395{left:628.995000px;}
.x10_c00395{left:638.490000px;}
.x39_c00395{left:641.955000px;}
.x43_c00395{left:649.725000px;}
.x11_c00395{left:659.235000px;}
.x12_c00395{left:667.005000px;}
.x44_c00395{left:674.790000px;}
.x34_c00395{left:681.690000px;}
.x45_c00395{left:688.605000px;}
.x3d_c00395{left:692.070000px;}
.x13_c00395{left:699.840000px;}
.x46_c00395{left:708.480000px;}
.x47_c00395{left:721.440000px;}
.x3e_c00395{left:738.720000px;}
.x35_c00395{left:751.680000px;}
.x48_c00395{left:762.915000px;}
.x31_c00395{left:765.510000px;}
.x3f_c00395{left:767.235000px;}
.x15_c00395{left:774.150000px;}
.x16_c00395{left:779.325000px;}
.x17_c00395{left:793.155000px;}
.x36_c00395{left:806.970000px;}
.x40_c00395{left:819.930000px;}
.x3a_c00395{left:826.845000px;}
.x37_c00395{left:828.570000px;}
.x2f_c00395{left:832.035000px;}
.x2e_c00395{left:836.355000px;}
.x3b_c00395{left:868.320000px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.v1_c00395{vertical-align:6.186667pt;}
.ls1_c00395{letter-spacing:0.000000pt;}
.ls0_c00395{letter-spacing:36.593280pt;}
.ws0_c00395{word-spacing:0.000000pt;}
.fse_c00395{font-size:3.072000pt;}
.fs4_c00395{font-size:6.133333pt;}
.fs3_c00395{font-size:9.226667pt;}
.fs2_c00395{font-size:12.266667pt;}
.fs0_c00395{font-size:15.360000pt;}
.fs5_c00395{font-size:18.453333pt;}
.fs1_c00395{font-size:21.493333pt;}
.fs16_c00395{font-size:30.720000pt;}
.fs1b_c00395{font-size:33.813333pt;}
.fs15_c00395{font-size:36.853333pt;}
.fs17_c00395{font-size:42.986667pt;}
.fs1c_c00395{font-size:46.080000pt;}
.fsf_c00395{font-size:49.173333pt;}
.fs9_c00395{font-size:52.213333pt;}
.fs1d_c00395{font-size:55.306667pt;}
.fs7_c00395{font-size:58.346667pt;}
.fs6_c00395{font-size:61.440000pt;}
.fsc_c00395{font-size:64.533333pt;}
.fs19_c00395{font-size:67.573333pt;}
.fsb_c00395{font-size:70.666667pt;}
.fsd_c00395{font-size:73.706667pt;}
.fs10_c00395{font-size:76.800000pt;}
.fs8_c00395{font-size:79.893333pt;}
.fsa_c00395{font-size:86.026667pt;}
.fs12_c00395{font-size:89.066667pt;}
.fs14_c00395{font-size:92.160000pt;}
.fs1a_c00395{font-size:95.253333pt;}
.fs13_c00395{font-size:98.293333pt;}
.fs11_c00395{font-size:101.386667pt;}
.fs18_c00395{font-size:107.520000pt;}
.y0_c00395{bottom:0.000000pt;}
.y40_c00395{bottom:390.146667pt;}
.y41_c00395{bottom:393.213333pt;}
.y43_c00395{bottom:446.213333pt;}
.y42_c00395{bottom:449.280000pt;}
.y3f_c00395{bottom:973.053333pt;}
.y3d_c00395{bottom:1006.080000pt;}
.y3e_c00395{bottom:1006.853333pt;}
.y3c_c00395{bottom:1007.613333pt;}
.y3b_c00395{bottom:1008.386667pt;}
.y34_c00395{bottom:1010.693333pt;}
.y37_c00395{bottom:1012.986667pt;}
.y36_c00395{bottom:1013.760000pt;}
.y35_c00395{bottom:1014.533333pt;}
.y38_c00395{bottom:1015.293333pt;}
.y39_c00395{bottom:1025.280000pt;}
.y3a_c00395{bottom:1029.120000pt;}
.y23_c00395{bottom:1042.173333pt;}
.y1d_c00395{bottom:1046.786667pt;}
.y20_c00395{bottom:1048.320000pt;}
.y1f_c00395{bottom:1052.160000pt;}
.y30_c00395{bottom:1053.693333pt;}
.y1e_c00395{bottom:1056.000000pt;}
.y22_c00395{bottom:1056.773333pt;}
.y31_c00395{bottom:1058.306667pt;}
.y2f_c00395{bottom:1059.840000pt;}
.y33_c00395{bottom:1060.613333pt;}
.y21_c00395{bottom:1062.906667pt;}
.y1a_c00395{bottom:1065.213333pt;}
.y1b_c00395{bottom:1065.986667pt;}
.y1c_c00395{bottom:1067.520000pt;}
.y32_c00395{bottom:1068.293333pt;}
.y2e_c00395{bottom:1073.666667pt;}
.y2d_c00395{bottom:1075.973333pt;}
.y14_c00395{bottom:1076.733333pt;}
.y16_c00395{bottom:1078.266667pt;}
.y15_c00395{bottom:1079.813333pt;}
.y29_c00395{bottom:1080.573333pt;}
.y17_c00395{bottom:1081.346667pt;}
.y13_c00395{bottom:1082.880000pt;}
.y18_c00395{bottom:1083.653333pt;}
.y19_c00395{bottom:1084.413333pt;}
.y2b_c00395{bottom:1085.186667pt;}
.y2c_c00395{bottom:1087.493333pt;}
.y2a_c00395{bottom:1088.253333pt;}
.y28_c00395{bottom:1089.786667pt;}
.ye_c00395{bottom:1098.240000pt;}
.yd_c00395{bottom:1099.773333pt;}
.y26_c00395{bottom:1109.760000pt;}
.y11_c00395{bottom:1110.533333pt;}
.y12_c00395{bottom:1112.826667pt;}
.y27_c00395{bottom:1116.666667pt;}
.yf_c00395{bottom:1129.733333pt;}
.y10_c00395{bottom:1130.493333pt;}
.y25_c00395{bottom:1158.906667pt;}
.y24_c00395{bottom:1181.186667pt;}
.ya_c00395{bottom:1211.133333pt;}
.y1_c00395{bottom:1214.213333pt;}
.y2_c00395{bottom:1218.053333pt;}
.y5_c00395{bottom:1222.653333pt;}
.yc_c00395{bottom:1223.426667pt;}
.y4_c00395{bottom:1228.800000pt;}
.yb_c00395{bottom:1230.333333pt;}
.y3_c00395{bottom:1232.640000pt;}
.y6_c00395{bottom:1234.173333pt;}
.y8_c00395{bottom:1234.946667pt;}
.y7_c00395{bottom:1235.706667pt;}
.y9_c00395{bottom:1237.253333pt;}
.h10_c00395{height:2.764500pt;}
.h6_c00395{height:5.519401pt;}
.h5_c00395{height:8.303099pt;}
.h4_c00395{height:11.038802pt;}
.h2_c00395{height:13.822500pt;}
.h7_c00395{height:16.606198pt;}
.h3_c00395{height:19.341901pt;}
.h1b_c00395{height:20.009167pt;}
.h18_c00395{height:27.645000pt;}
.h1e_c00395{height:30.428698pt;}
.h17_c00395{height:33.164401pt;}
.h19_c00395{height:38.683802pt;}
.h1f_c00395{height:41.467500pt;}
.h11_c00395{height:44.251198pt;}
.hb_c00395{height:46.986901pt;}
.h20_c00395{height:49.770599pt;}
.h9_c00395{height:52.506302pt;}
.h8_c00395{height:55.290000pt;}
.he_c00395{height:58.073698pt;}
.h1c_c00395{height:60.809401pt;}
.hd_c00395{height:63.593099pt;}
.hf_c00395{height:66.328802pt;}
.h12_c00395{height:69.112500pt;}
.ha_c00395{height:71.896198pt;}
.hc_c00395{height:77.415599pt;}
.h14_c00395{height:80.151302pt;}
.h16_c00395{height:82.935000pt;}
.h1d_c00395{height:85.718698pt;}
.h15_c00395{height:88.454401pt;}
.h13_c00395{height:91.238099pt;}
.h1a_c00395{height:96.757500pt;}
.h0_c00395{height:1338.626667pt;}
.h1_c00395{height:1338.666667pt;}
.w0_c00395{width:978.426667pt;}
.w1_c00395{width:978.666667pt;}
.x0_c00395{left:0.000000pt;}
.x55_c00395{left:1.533333pt;}
.x1_c00395{left:6.906667pt;}
.x56_c00395{left:19.973333pt;}
.x53_c00395{left:35.333333pt;}
.x52_c00395{left:42.240000pt;}
.x54_c00395{left:46.853333pt;}
.x2_c00395{left:69.893333pt;}
.x18_c00395{left:89.853333pt;}
.x19_c00395{left:98.306667pt;}
.x6_c00395{left:147.453333pt;}
.x3_c00395{left:177.413333pt;}
.x4_c00395{left:179.706667pt;}
.x5_c00395{left:188.160000pt;}
.x1a_c00395{left:205.826667pt;}
.x1c_c00395{left:207.360000pt;}
.x25_c00395{left:228.093333pt;}
.x1e_c00395{left:234.240000pt;}
.x26_c00395{left:257.280000pt;}
.x1f_c00395{left:264.186667pt;}
.x49_c00395{left:274.173333pt;}
.x4b_c00395{left:276.480000pt;}
.x27_c00395{left:284.933333pt;}
.x4a_c00395{left:288.773333pt;}
.x4c_c00395{left:295.680000pt;}
.x29_c00395{left:300.293333pt;}
.x1b_c00395{left:309.506667pt;}
.x20_c00395{left:314.106667pt;}
.x4d_c00395{left:316.413333pt;}
.x2a_c00395{left:318.720000pt;}
.x4e_c00395{left:328.706667pt;}
.x2d_c00395{left:331.013333pt;}
.x2b_c00395{left:335.613333pt;}
.x4f_c00395{left:347.906667pt;}
.x2c_c00395{left:353.280000pt;}
.x21_c00395{left:358.653333pt;}
.x50_c00395{left:361.733333pt;}
.x7_c00395{left:366.333333pt;}
.x28_c00395{left:372.480000pt;}
.x22_c00395{left:387.840000pt;}
.x51_c00395{left:391.680000pt;}
.x8_c00395{left:399.360000pt;}
.x9_c00395{left:423.933333pt;}
.x1d_c00395{left:437.760000pt;}
.x23_c00395{left:441.600000pt;}
.xa_c00395{left:448.506667pt;}
.xb_c00395{left:460.800000pt;}
.x24_c00395{left:463.866667pt;}
.xc_c00395{left:470.786667pt;}
.xd_c00395{left:484.613333pt;}
.x14_c00395{left:503.040000pt;}
.xe_c00395{left:507.653333pt;}
.x32_c00395{left:513.786667pt;}
.x30_c00395{left:516.093333pt;}
.xf_c00395{left:528.386667pt;}
.x41_c00395{left:537.600000pt;}
.x38_c00395{left:545.280000pt;}
.x33_c00395{left:548.346667pt;}
.x3c_c00395{left:549.893333pt;}
.x42_c00395{left:559.106667pt;}
.x10_c00395{left:567.546667pt;}
.x39_c00395{left:570.626667pt;}
.x43_c00395{left:577.533333pt;}
.x11_c00395{left:585.986667pt;}
.x12_c00395{left:592.893333pt;}
.x44_c00395{left:599.813333pt;}
.x34_c00395{left:605.946667pt;}
.x45_c00395{left:612.093333pt;}
.x3d_c00395{left:615.173333pt;}
.x13_c00395{left:622.080000pt;}
.x46_c00395{left:629.760000pt;}
.x47_c00395{left:641.280000pt;}
.x3e_c00395{left:656.640000pt;}
.x35_c00395{left:668.160000pt;}
.x48_c00395{left:678.146667pt;}
.x31_c00395{left:680.453333pt;}
.x3f_c00395{left:681.986667pt;}
.x15_c00395{left:688.133333pt;}
.x16_c00395{left:692.733333pt;}
.x17_c00395{left:705.026667pt;}
.x36_c00395{left:717.306667pt;}
.x40_c00395{left:728.826667pt;}
.x3a_c00395{left:734.973333pt;}
.x37_c00395{left:736.506667pt;}
.x2f_c00395{left:739.586667pt;}
.x2e_c00395{left:743.426667pt;}
.x3b_c00395{left:771.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_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_90c42cb5c568dc7a57d869ae.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.109863;font-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_c00396{transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);}
.mf_c00396{transform:matrix(0.115800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115800,0.000000,0.000000,0.250000,0,0);}
.m1a_c00396{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m1d_c00396{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00396{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);}
.m19_c00396{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);}
.m1c_c00396{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);}
.m5_c00396{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m8_c00396{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);}
.m1b_c00396{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);}
.m10_c00396{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m4_c00396{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);}
.m3_c00396{transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);}
.m15_c00396{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.m22_c00396{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c00396{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);}
.m23_c00396{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c00396{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00396{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_c00396{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c00396{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m16_c00396{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me_c00396{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c00396{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00396{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_c00396{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mb_c00396{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m14_c00396{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m18_c00396{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);}
.m20_c00396{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);}
.m9_c00396{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m6_c00396{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);}
.m17_c00396{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m28_c00396{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m21_c00396{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m29_c00396{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mc_c00396{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);}
.m0_c00396{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00396{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m2_c00396{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m25_c00396{transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);}
.m26_c00396{transform:matrix(1.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.420000,0.000000,0.000000,0.250000,0,0);}
.m11_c00396{transform:matrix(3.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.655000,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;}
.fs12_c00396{font-size:6.000000px;}
.fs8_c00396{font-size:10.380000px;}
.fsb_c00396{font-size:13.800000px;}
.fs0_c00396{font-size:17.280000px;}
.fs17_c00396{font-size:20.760000px;}
.fs2_c00396{font-size:24.180000px;}
.fs1_c00396{font-size:31.080000px;}
.fse_c00396{font-size:34.560000px;}
.fs13_c00396{font-size:41.460000px;}
.fs14_c00396{font-size:44.940000px;}
.fsa_c00396{font-size:55.320000px;}
.fsc_c00396{font-size:58.740000px;}
.fs6_c00396{font-size:65.640000px;}
.fs7_c00396{font-size:69.120000px;}
.fs15_c00396{font-size:76.020000px;}
.fs10_c00396{font-size:79.500000px;}
.fsd_c00396{font-size:86.400000px;}
.fs11_c00396{font-size:93.300000px;}
.fs4_c00396{font-size:96.780000px;}
.fsf_c00396{font-size:100.200000px;}
.fs9_c00396{font-size:103.680000px;}
.fs3_c00396{font-size:110.580000px;}
.fs5_c00396{font-size:114.060000px;}
.fs16_c00396{font-size:159.000000px;}
.y0_c00396{bottom:0.000000px;}
.y27_c00396{bottom:775.005000px;}
.y22_c00396{bottom:1072.230000px;}
.y23_c00396{bottom:1075.680000px;}
.y1f_c00396{bottom:1104.195000px;}
.y26_c00396{bottom:1109.370000px;}
.y25_c00396{bottom:1124.925000px;}
.y24_c00396{bottom:1130.115000px;}
.y20_c00396{bottom:1142.205000px;}
.y21_c00396{bottom:1146.525000px;}
.y1b_c00396{bottom:1148.250000px;}
.y1a_c00396{bottom:1152.570000px;}
.y1e_c00396{bottom:1153.440000px;}
.y1c_c00396{bottom:1154.310000px;}
.y1d_c00396{bottom:1155.165000px;}
.y19_c00396{bottom:1166.400000px;}
.y14_c00396{bottom:1176.765000px;}
.y15_c00396{bottom:1177.635000px;}
.y16_c00396{bottom:1179.360000px;}
.y17_c00396{bottom:1180.230000px;}
.y18_c00396{bottom:1182.810000px;}
.y11_c00396{bottom:1213.920000px;}
.yf_c00396{bottom:1214.790000px;}
.y10_c00396{bottom:1216.515000px;}
.y12_c00396{bottom:1219.110000px;}
.y13_c00396{bottom:1229.475000px;}
.yd_c00396{bottom:1236.390000px;}
.ye_c00396{bottom:1238.970000px;}
.yb_c00396{bottom:1256.250000px;}
.y7_c00396{bottom:1257.990000px;}
.y8_c00396{bottom:1258.845000px;}
.ya_c00396{bottom:1259.715000px;}
.y9_c00396{bottom:1271.805000px;}
.yc_c00396{bottom:1285.635000px;}
.y6_c00396{bottom:1303.770000px;}
.y4_c00396{bottom:1328.835000px;}
.y5_c00396{bottom:1333.155000px;}
.y2_c00396{bottom:1383.270000px;}
.y1_c00396{bottom:1384.125000px;}
.y3_c00396{bottom:1396.230000px;}
.h14_c00396{height:5.399414px;}
.ha_c00396{height:9.340986px;}
.hd_c00396{height:12.418652px;}
.h2_c00396{height:15.550313px;}
.h19_c00396{height:18.681973px;}
.h4_c00396{height:21.759639px;}
.h3_c00396{height:27.968965px;}
.h10_c00396{height:31.100625px;}
.h15_c00396{height:37.309951px;}
.h16_c00396{height:40.441611px;}
.hc_c00396{height:49.782598px;}
.he_c00396{height:52.860264px;}
.h8_c00396{height:59.069590px;}
.h9_c00396{height:62.201250px;}
.h17_c00396{height:68.410576px;}
.h12_c00396{height:71.542236px;}
.hf_c00396{height:77.751563px;}
.h13_c00396{height:83.960889px;}
.h6_c00396{height:87.092549px;}
.h11_c00396{height:90.170215px;}
.hb_c00396{height:93.301875px;}
.h5_c00396{height:99.511201px;}
.h7_c00396{height:102.642861px;}
.h18_c00396{height:143.084473px;}
.h0_c00396{height:1515.450000px;}
.h1_c00396{height:1515.750000px;}
.w0_c00396{width:1088.640000px;}
.w1_c00396{width:1089.000000px;}
.x0_c00396{left:0.000000px;}
.x23_c00396{left:248.835000px;}
.x12_c00396{left:252.285000px;}
.x1c_c00396{left:260.070000px;}
.x1d_c00396{left:269.565000px;}
.x18_c00396{left:284.250000px;}
.x14_c00396{left:317.955000px;}
.x15_c00396{left:340.410000px;}
.x1e_c00396{left:349.920000px;}
.x1f_c00396{left:361.155000px;}
.x13_c00396{left:368.070000px;}
.x24_c00396{left:382.755000px;}
.x19_c00396{left:387.075000px;}
.x20_c00396{left:426.810000px;}
.x1a_c00396{left:434.595000px;}
.x22_c00396{left:452.730000px;}
.x21_c00396{left:454.470000px;}
.x1b_c00396{left:461.370000px;}
.x16_c00396{left:467.430000px;}
.x25_c00396{left:514.950000px;}
.x17_c00396{left:526.170000px;}
.x6_c00396{left:541.725000px;}
.x4_c00396{left:544.320000px;}
.x7_c00396{left:616.890000px;}
.x26_c00396{left:622.080000px;}
.x8_c00396{left:639.360000px;}
.x9_c00396{left:664.410000px;}
.xa_c00396{left:686.880000px;}
.xb_c00396{left:730.080000px;}
.xc_c00396{left:756.870000px;}
.xd_c00396{left:781.920000px;}
.xe_c00396{left:792.285000px;}
.x1_c00396{left:797.475000px;}
.xf_c00396{left:815.610000px;}
.x2_c00396{left:819.930000px;}
.x5_c00396{left:823.395000px;}
.x10_c00396{left:835.485000px;}
.x11_c00396{left:1006.560000px;}
.x27_c00396{left:1020.390000px;}
.x3_c00396{left:1067.040000px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls0_c00396{letter-spacing:0.000000pt;}
.ws0_c00396{word-spacing:0.000000pt;}
.fs12_c00396{font-size:5.333333pt;}
.fs8_c00396{font-size:9.226667pt;}
.fsb_c00396{font-size:12.266667pt;}
.fs0_c00396{font-size:15.360000pt;}
.fs17_c00396{font-size:18.453333pt;}
.fs2_c00396{font-size:21.493333pt;}
.fs1_c00396{font-size:27.626667pt;}
.fse_c00396{font-size:30.720000pt;}
.fs13_c00396{font-size:36.853333pt;}
.fs14_c00396{font-size:39.946667pt;}
.fsa_c00396{font-size:49.173333pt;}
.fsc_c00396{font-size:52.213333pt;}
.fs6_c00396{font-size:58.346667pt;}
.fs7_c00396{font-size:61.440000pt;}
.fs15_c00396{font-size:67.573333pt;}
.fs10_c00396{font-size:70.666667pt;}
.fsd_c00396{font-size:76.800000pt;}
.fs11_c00396{font-size:82.933333pt;}
.fs4_c00396{font-size:86.026667pt;}
.fsf_c00396{font-size:89.066667pt;}
.fs9_c00396{font-size:92.160000pt;}
.fs3_c00396{font-size:98.293333pt;}
.fs5_c00396{font-size:101.386667pt;}
.fs16_c00396{font-size:141.333333pt;}
.y0_c00396{bottom:0.000000pt;}
.y27_c00396{bottom:688.893333pt;}
.y22_c00396{bottom:953.093333pt;}
.y23_c00396{bottom:956.160000pt;}
.y1f_c00396{bottom:981.506667pt;}
.y26_c00396{bottom:986.106667pt;}
.y25_c00396{bottom:999.933333pt;}
.y24_c00396{bottom:1004.546667pt;}
.y20_c00396{bottom:1015.293333pt;}
.y21_c00396{bottom:1019.133333pt;}
.y1b_c00396{bottom:1020.666667pt;}
.y1a_c00396{bottom:1024.506667pt;}
.y1e_c00396{bottom:1025.280000pt;}
.y1c_c00396{bottom:1026.053333pt;}
.y1d_c00396{bottom:1026.813333pt;}
.y19_c00396{bottom:1036.800000pt;}
.y14_c00396{bottom:1046.013333pt;}
.y15_c00396{bottom:1046.786667pt;}
.y16_c00396{bottom:1048.320000pt;}
.y17_c00396{bottom:1049.093333pt;}
.y18_c00396{bottom:1051.386667pt;}
.y11_c00396{bottom:1079.040000pt;}
.yf_c00396{bottom:1079.813333pt;}
.y10_c00396{bottom:1081.346667pt;}
.y12_c00396{bottom:1083.653333pt;}
.y13_c00396{bottom:1092.866667pt;}
.yd_c00396{bottom:1099.013333pt;}
.ye_c00396{bottom:1101.306667pt;}
.yb_c00396{bottom:1116.666667pt;}
.y7_c00396{bottom:1118.213333pt;}
.y8_c00396{bottom:1118.973333pt;}
.ya_c00396{bottom:1119.746667pt;}
.y9_c00396{bottom:1130.493333pt;}
.yc_c00396{bottom:1142.786667pt;}
.y6_c00396{bottom:1158.906667pt;}
.y4_c00396{bottom:1181.186667pt;}
.y5_c00396{bottom:1185.026667pt;}
.y2_c00396{bottom:1229.573333pt;}
.y1_c00396{bottom:1230.333333pt;}
.y3_c00396{bottom:1241.093333pt;}
.h14_c00396{height:4.799479pt;}
.ha_c00396{height:8.303099pt;}
.hd_c00396{height:11.038802pt;}
.h2_c00396{height:13.822500pt;}
.h19_c00396{height:16.606198pt;}
.h4_c00396{height:19.341901pt;}
.h3_c00396{height:24.861302pt;}
.h10_c00396{height:27.645000pt;}
.h15_c00396{height:33.164401pt;}
.h16_c00396{height:35.948099pt;}
.hc_c00396{height:44.251198pt;}
.he_c00396{height:46.986901pt;}
.h8_c00396{height:52.506302pt;}
.h9_c00396{height:55.290000pt;}
.h17_c00396{height:60.809401pt;}
.h12_c00396{height:63.593099pt;}
.hf_c00396{height:69.112500pt;}
.h13_c00396{height:74.631901pt;}
.h6_c00396{height:77.415599pt;}
.h11_c00396{height:80.151302pt;}
.hb_c00396{height:82.935000pt;}
.h5_c00396{height:88.454401pt;}
.h7_c00396{height:91.238099pt;}
.h18_c00396{height:127.186198pt;}
.h0_c00396{height:1347.066667pt;}
.h1_c00396{height:1347.333333pt;}
.w0_c00396{width:967.680000pt;}
.w1_c00396{width:968.000000pt;}
.x0_c00396{left:0.000000pt;}
.x23_c00396{left:221.186667pt;}
.x12_c00396{left:224.253333pt;}
.x1c_c00396{left:231.173333pt;}
.x1d_c00396{left:239.613333pt;}
.x18_c00396{left:252.666667pt;}
.x14_c00396{left:282.626667pt;}
.x15_c00396{left:302.586667pt;}
.x1e_c00396{left:311.040000pt;}
.x1f_c00396{left:321.026667pt;}
.x13_c00396{left:327.173333pt;}
.x24_c00396{left:340.226667pt;}
.x19_c00396{left:344.066667pt;}
.x20_c00396{left:379.386667pt;}
.x1a_c00396{left:386.306667pt;}
.x22_c00396{left:402.426667pt;}
.x21_c00396{left:403.973333pt;}
.x1b_c00396{left:410.106667pt;}
.x16_c00396{left:415.493333pt;}
.x25_c00396{left:457.733333pt;}
.x17_c00396{left:467.706667pt;}
.x6_c00396{left:481.533333pt;}
.x4_c00396{left:483.840000pt;}
.x7_c00396{left:548.346667pt;}
.x26_c00396{left:552.960000pt;}
.x8_c00396{left:568.320000pt;}
.x9_c00396{left:590.586667pt;}
.xa_c00396{left:610.560000pt;}
.xb_c00396{left:648.960000pt;}
.xc_c00396{left:672.773333pt;}
.xd_c00396{left:695.040000pt;}
.xe_c00396{left:704.253333pt;}
.x1_c00396{left:708.866667pt;}
.xf_c00396{left:724.986667pt;}
.x2_c00396{left:728.826667pt;}
.x5_c00396{left:731.906667pt;}
.x10_c00396{left:742.653333pt;}
.x11_c00396{left:894.720000pt;}
.x27_c00396{left:907.013333pt;}
.x3_c00396{left:948.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_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_54be151efc504fb783e21861.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:1.109863;font-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_c00397{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c00397{transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031250,0.000000,0.000000,0.250000,0,0);}
.m14_c00397{transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);}
.md_c00397{transform:matrix(0.048375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048375,0.000000,0.000000,0.250000,0,0);}
.m59_c00397{transform:matrix(0.072925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072925,0.000000,0.000000,0.250000,0,0);}
.m4_c00397{transform:matrix(0.077775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077775,0.000000,0.000000,0.250000,0,0);}
.m13_c00397{transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);}
.m16_c00397{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);}
.m65_c00397{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.ma_c00397{transform:matrix(0.093150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093150,0.000000,0.000000,0.250000,0,0);}
.m17_c00397{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m15_c00397{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.m3_c00397{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m19_c00397{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m31_c00397{transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);}
.m7_c00397{transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);}
.m9_c00397{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m40_c00397{transform:matrix(0.131225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131225,0.000000,0.000000,0.250000,0,0);}
.m1d_c00397{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m58_c00397{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.m25_c00397{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m18_c00397{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m5_c00397{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m63_c00397{transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);}
.m5d_c00397{transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);}
.m20_c00397{transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);}
.m2f_c00397{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m32_c00397{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);}
.m4a_c00397{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.m50_c00397{transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);}
.m39_c00397{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m26_c00397{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m1a_c00397{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);}
.m51_c00397{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m57_c00397{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m56_c00397{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);}
.m5a_c00397{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00397{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.m2a_c00397{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.m21_c00397{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);}
.m33_c00397{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.m49_c00397{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m28_c00397{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);}
.m47_c00397{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m37_c00397{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);}
.m5e_c00397{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.m3a_c00397{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00397{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);}
.m1e_c00397{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m62_c00397{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m1f_c00397{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);}
.m1c_c00397{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);}
.m46_c00397{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);}
.m52_c00397{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);}
.m3e_c00397{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);}
.mc_c00397{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);}
.m35_c00397{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m36_c00397{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);}
.m4d_c00397{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);}
.m38_c00397{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m48_c00397{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);}
.m22_c00397{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m0_c00397{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);}
.m4e_c00397{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);}
.m45_c00397{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00397{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00397{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);}
.m5b_c00397{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);}
.m11_c00397{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m60_c00397{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c00397{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);}
.m61_c00397{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m34_c00397{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);}
.m64_c00397{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m27_c00397{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);}
.m23_c00397{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c00397{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00397{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);}
.m5c_c00397{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4b_c00397{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m29_c00397{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m54_c00397{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m44_c00397{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);}
.m2c_c00397{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);}
.m3d_c00397{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);}
.m5f_c00397{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m55_c00397{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.me_c00397{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m43_c00397{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);}
.m30_c00397{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00397{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00397{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m12_c00397{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m53_c00397{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1_c00397{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);}
.mb_c00397{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4c_c00397{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m6_c00397{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);}
.m2d_c00397{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);}
.m10_c00397{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m8_c00397{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m41_c00397{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.v0_c00397{vertical-align:0.000000px;}
.v1_c00397{vertical-align:3.420000px;}
.ls2_c00397{letter-spacing:0.000000px;}
.ls1_c00397{letter-spacing:68.174688px;}
.ls0_c00397{letter-spacing:307.634700px;}
.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:-13.167360px;}
.ws1_c00397{word-spacing:0.000000px;}
.fc0_c00397{color:transparent;}
.fsc_c00397{font-size:3.456000px;}
.fs5_c00397{font-size:6.000000px;}
.fsd_c00397{font-size:6.900000px;}
.fs13_c00397{font-size:13.800000px;}
.fs1_c00397{font-size:17.280000px;}
.fs7_c00397{font-size:20.760000px;}
.fs0_c00397{font-size:27.660000px;}
.fs3_c00397{font-size:31.080000px;}
.fs8_c00397{font-size:34.560000px;}
.fs12_c00397{font-size:38.040000px;}
.fs15_c00397{font-size:41.460000px;}
.fs16_c00397{font-size:44.940000px;}
.fs17_c00397{font-size:48.360000px;}
.fs4_c00397{font-size:51.840000px;}
.fs11_c00397{font-size:55.320000px;}
.fsa_c00397{font-size:58.740000px;}
.fs19_c00397{font-size:62.220000px;}
.fs6_c00397{font-size:65.640000px;}
.fs14_c00397{font-size:69.120000px;}
.fse_c00397{font-size:72.600000px;}
.fs9_c00397{font-size:76.020000px;}
.fs1b_c00397{font-size:79.500000px;}
.fs1c_c00397{font-size:82.920000px;}
.fs10_c00397{font-size:86.400000px;}
.fs18_c00397{font-size:89.880000px;}
.fs1a_c00397{font-size:93.300000px;}
.fsb_c00397{font-size:107.160000px;}
.fsf_c00397{font-size:110.580000px;}
.fs2_c00397{font-size:165.900000px;}
.y0_c00397{bottom:0.000000px;}
.y1f_c00397{bottom:249.690000px;}
.y1e_c00397{bottom:263.520000px;}
.y1a_c00397{bottom:281.670000px;}
.y1c_c00397{bottom:285.990000px;}
.y1d_c00397{bottom:292.035000px;}
.y1b_c00397{bottom:293.760000px;}
.y19_c00397{bottom:310.170000px;}
.y18_c00397{bottom:320.550000px;}
.y17_c00397{bottom:335.235000px;}
.y16_c00397{bottom:356.835000px;}
.y15_c00397{bottom:381.885000px;}
.y14_c00397{bottom:400.890000px;}
.y10_c00397{bottom:418.170000px;}
.y11_c00397{bottom:419.910000px;}
.y12_c00397{bottom:420.765000px;}
.y13_c00397{bottom:421.635000px;}
.ye_c00397{bottom:426.810000px;}
.yf_c00397{bottom:438.045000px;}
.yd_c00397{bottom:479.520000px;}
.yc_c00397{bottom:501.990000px;}
.yb_c00397{bottom:510.630000px;}
.ya_c00397{bottom:552.960000px;}
.y8_c00397{bottom:580.605000px;}
.y9_c00397{bottom:590.970000px;}
.y5_c00397{bottom:597.885000px;}
.y7_c00397{bottom:603.930000px;}
.y6_c00397{bottom:609.120000px;}
.y4_c00397{bottom:610.845000px;}
.y3_c00397{bottom:619.485000px;}
.y2_c00397{bottom:664.410000px;}
.y1_c00397{bottom:676.515000px;}
.y23_c00397{bottom:938.310000px;}
.y22_c00397{bottom:948.675000px;}
.y21_c00397{bottom:962.490000px;}
.y20_c00397{bottom:972.000000px;}
.y62_c00397{bottom:1109.370000px;}
.y61_c00397{bottom:1110.240000px;}
.y64_c00397{bottom:1111.965000px;}
.y63_c00397{bottom:1112.835000px;}
.y60_c00397{bottom:1114.560000px;}
.y5f_c00397{bottom:1115.430000px;}
.y5c_c00397{bottom:1125.795000px;}
.y57_c00397{bottom:1129.245000px;}
.y5d_c00397{bottom:1131.840000px;}
.y5e_c00397{bottom:1133.565000px;}
.y58_c00397{bottom:1134.435000px;}
.y59_c00397{bottom:1135.290000px;}
.y56_c00397{bottom:1136.160000px;}
.y5a_c00397{bottom:1137.030000px;}
.y5b_c00397{bottom:1140.480000px;}
.y55_c00397{bottom:1146.525000px;}
.y53_c00397{bottom:1149.120000px;}
.y4f_c00397{bottom:1149.990000px;}
.y54_c00397{bottom:1150.845000px;}
.y50_c00397{bottom:1154.310000px;}
.y52_c00397{bottom:1155.165000px;}
.y51_c00397{bottom:1156.035000px;}
.y4c_c00397{bottom:1169.850000px;}
.y4b_c00397{bottom:1171.590000px;}
.y4e_c00397{bottom:1172.445000px;}
.y4d_c00397{bottom:1175.040000px;}
.y49_c00397{bottom:1175.910000px;}
.y4a_c00397{bottom:1177.635000px;}
.y48_c00397{bottom:1190.595000px;}
.y44_c00397{bottom:1191.450000px;}
.y45_c00397{bottom:1194.915000px;}
.y46_c00397{bottom:1196.640000px;}
.y47_c00397{bottom:1211.325000px;}
.y43_c00397{bottom:1215.645000px;}
.y40_c00397{bottom:1246.755000px;}
.y3c_c00397{bottom:1251.930000px;}
.y3b_c00397{bottom:1257.120000px;}
.y3d_c00397{bottom:1258.845000px;}
.y3e_c00397{bottom:1270.950000px;}
.y3f_c00397{bottom:1271.805000px;}
.y38_c00397{bottom:1272.675000px;}
.y39_c00397{bottom:1275.270000px;}
.y37_c00397{bottom:1276.125000px;}
.y36_c00397{bottom:1277.850000px;}
.y24_c00397{bottom:1278.720000px;}
.y3a_c00397{bottom:1279.590000px;}
.y33_c00397{bottom:1293.405000px;}
.y35_c00397{bottom:1294.275000px;}
.y32_c00397{bottom:1298.595000px;}
.y31_c00397{bottom:1299.450000px;}
.y34_c00397{bottom:1310.685000px;}
.y2e_c00397{bottom:1315.875000px;}
.y30_c00397{bottom:1316.730000px;}
.y2f_c00397{bottom:1320.195000px;}
.y2b_c00397{bottom:1334.010000px;}
.y2c_c00397{bottom:1334.880000px;}
.y2d_c00397{bottom:1336.605000px;}
.y2a_c00397{bottom:1339.200000px;}
.y29_c00397{bottom:1349.565000px;}
.y28_c00397{bottom:1359.075000px;}
.y41_c00397{bottom:1383.270000px;}
.y42_c00397{bottom:1384.125000px;}
.y27_c00397{bottom:1384.995000px;}
.y25_c00397{bottom:1385.850000px;}
.y26_c00397{bottom:1386.720000px;}
.he_c00397{height:3.110063px;}
.h7_c00397{height:5.399414px;}
.hf_c00397{height:6.209326px;}
.h1f_c00397{height:6.530063px;}
.h15_c00397{height:12.418652px;}
.h3_c00397{height:15.550313px;}
.h9_c00397{height:18.681973px;}
.h2_c00397{height:24.891299px;}
.h5_c00397{height:27.968965px;}
.ha_c00397{height:31.100625px;}
.h14_c00397{height:34.232285px;}
.h17_c00397{height:37.309951px;}
.h18_c00397{height:40.441611px;}
.h19_c00397{height:43.519277px;}
.h6_c00397{height:46.650937px;}
.h13_c00397{height:49.782598px;}
.hc_c00397{height:52.860264px;}
.h1b_c00397{height:55.991924px;}
.h8_c00397{height:59.069590px;}
.h16_c00397{height:62.201250px;}
.h10_c00397{height:65.332910px;}
.hb_c00397{height:68.410576px;}
.h1d_c00397{height:71.542236px;}
.h1e_c00397{height:74.619902px;}
.h12_c00397{height:77.751563px;}
.h1a_c00397{height:80.883223px;}
.h1c_c00397{height:83.960889px;}
.hd_c00397{height:96.433535px;}
.h11_c00397{height:99.511201px;}
.h4_c00397{height:149.293799px;}
.h0_c00397{height:1505.955000px;}
.h1_c00397{height:1506.000000px;}
.w0_c00397{width:1100.730000px;}
.w1_c00397{width:1101.000000px;}
.x0_c00397{left:0.000000px;}
.x2_c00397{left:1.725000px;}
.x3_c00397{left:9.510000px;}
.xa_c00397{left:13.830000px;}
.xb_c00397{left:38.880000px;}
.xc_c00397{left:53.565000px;}
.x5_c00397{left:71.715000px;}
.x1_c00397{left:86.400000px;}
.xe_c00397{left:99.360000px;}
.xd_c00397{left:114.045000px;}
.x7_c00397{left:138.240000px;}
.xf_c00397{left:142.560000px;}
.x8_c00397{left:145.155000px;}
.x9_c00397{left:153.795000px;}
.x6_c00397{left:168.480000px;}
.x4_c00397{left:201.315000px;}
.x36_c00397{left:456.195000px;}
.x37_c00397{left:483.840000px;}
.x38_c00397{left:507.165000px;}
.x39_c00397{left:534.810000px;}
.x31_c00397{left:565.050000px;}
.x35_c00397{left:569.370000px;}
.x32_c00397{left:571.110000px;}
.x3a_c00397{left:573.690000px;}
.x1c_c00397{left:577.155000px;}
.x22_c00397{left:578.880000px;}
.x3b_c00397{left:589.245000px;}
.x15_c00397{left:595.290000px;}
.x16_c00397{left:603.930000px;}
.x50_c00397{left:605.670000px;}
.x23_c00397{left:609.120000px;}
.x14_c00397{left:616.890000px;}
.x1d_c00397{left:618.630000px;}
.x2a_c00397{left:628.125000px;}
.x10_c00397{left:631.590000px;}
.x2b_c00397{left:637.635000px;}
.x17_c00397{left:641.085000px;}
.x3c_c00397{left:645.405000px;}
.x41_c00397{left:647.130000px;}
.x11_c00397{left:648.870000px;}
.x24_c00397{left:652.320000px;}
.x4b_c00397{left:654.045000px;}
.x2c_c00397{left:660.090000px;}
.x12_c00397{left:666.150000px;}
.x13_c00397{left:671.325000px;}
.x2d_c00397{left:685.155000px;}
.x45_c00397{left:688.605000px;}
.x33_c00397{left:690.330000px;}
.x18_c00397{left:695.520000px;}
.x51_c00397{left:700.710000px;}
.x25_c00397{left:704.160000px;}
.x1e_c00397{left:708.480000px;}
.x26_c00397{left:711.075000px;}
.x1f_c00397{left:720.570000px;}
.x3d_c00397{left:730.080000px;}
.x20_c00397{left:740.445000px;}
.x34_c00397{left:742.170000px;}
.x52_c00397{left:749.085000px;}
.x4c_c00397{left:756.000000px;}
.x2e_c00397{left:760.320000px;}
.x27_c00397{left:762.915000px;}
.x53_c00397{left:768.960000px;}
.x2f_c00397{left:773.280000px;}
.x46_c00397{left:776.730000px;}
.x4d_c00397{left:781.920450px;}
.x3e_c00397{left:784.515000px;}
.x42_c00397{left:787.965000px;}
.x19_c00397{left:797.475000px;}
.x21_c00397{left:801.795000px;}
.x43_c00397{left:806.115000px;}
.x3f_c00397{left:812.160000px;}
.x1a_c00397{left:819.075000px;}
.x28_c00397{left:820.800000px;}
.x47_c00397{left:825.120000px;}
.x40_c00397{left:826.845000px;}
.x29_c00397{left:839.805000px;}
.x4e_c00397{left:841.530000px;}
.x30_c00397{left:847.590000px;}
.x1b_c00397{left:855.360000px;}
.x4f_c00397{left:863.130000px;}
.x48_c00397{left:865.725000px;}
.x44_c00397{left:867.450000px;}
.x49_c00397{left:888.195000px;}
.x4a_c00397{left:908.925000px;}
.x54_c00397{left:914.115000px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.v1_c00397{vertical-align:3.040000pt;}
.ls2_c00397{letter-spacing:0.000000pt;}
.ls1_c00397{letter-spacing:60.599723pt;}
.ls0_c00397{letter-spacing:273.453067pt;}
.ws0_c00397{word-spacing:-11.704320pt;}
.ws1_c00397{word-spacing:0.000000pt;}
.fsc_c00397{font-size:3.072000pt;}
.fs5_c00397{font-size:5.333333pt;}
.fsd_c00397{font-size:6.133333pt;}
.fs13_c00397{font-size:12.266667pt;}
.fs1_c00397{font-size:15.360000pt;}
.fs7_c00397{font-size:18.453333pt;}
.fs0_c00397{font-size:24.586667pt;}
.fs3_c00397{font-size:27.626667pt;}
.fs8_c00397{font-size:30.720000pt;}
.fs12_c00397{font-size:33.813333pt;}
.fs15_c00397{font-size:36.853333pt;}
.fs16_c00397{font-size:39.946667pt;}
.fs17_c00397{font-size:42.986667pt;}
.fs4_c00397{font-size:46.080000pt;}
.fs11_c00397{font-size:49.173333pt;}
.fsa_c00397{font-size:52.213333pt;}
.fs19_c00397{font-size:55.306667pt;}
.fs6_c00397{font-size:58.346667pt;}
.fs14_c00397{font-size:61.440000pt;}
.fse_c00397{font-size:64.533333pt;}
.fs9_c00397{font-size:67.573333pt;}
.fs1b_c00397{font-size:70.666667pt;}
.fs1c_c00397{font-size:73.706667pt;}
.fs10_c00397{font-size:76.800000pt;}
.fs18_c00397{font-size:79.893333pt;}
.fs1a_c00397{font-size:82.933333pt;}
.fsb_c00397{font-size:95.253333pt;}
.fsf_c00397{font-size:98.293333pt;}
.fs2_c00397{font-size:147.466667pt;}
.y0_c00397{bottom:0.000000pt;}
.y1f_c00397{bottom:221.946667pt;}
.y1e_c00397{bottom:234.240000pt;}
.y1a_c00397{bottom:250.373333pt;}
.y1c_c00397{bottom:254.213333pt;}
.y1d_c00397{bottom:259.586667pt;}
.y1b_c00397{bottom:261.120000pt;}
.y19_c00397{bottom:275.706667pt;}
.y18_c00397{bottom:284.933333pt;}
.y17_c00397{bottom:297.986667pt;}
.y16_c00397{bottom:317.186667pt;}
.y15_c00397{bottom:339.453333pt;}
.y14_c00397{bottom:356.346667pt;}
.y10_c00397{bottom:371.706667pt;}
.y11_c00397{bottom:373.253333pt;}
.y12_c00397{bottom:374.013333pt;}
.y13_c00397{bottom:374.786667pt;}
.ye_c00397{bottom:379.386667pt;}
.yf_c00397{bottom:389.373333pt;}
.yd_c00397{bottom:426.240000pt;}
.yc_c00397{bottom:446.213333pt;}
.yb_c00397{bottom:453.893333pt;}
.ya_c00397{bottom:491.520000pt;}
.y8_c00397{bottom:516.093333pt;}
.y9_c00397{bottom:525.306667pt;}
.y5_c00397{bottom:531.453333pt;}
.y7_c00397{bottom:536.826667pt;}
.y6_c00397{bottom:541.440000pt;}
.y4_c00397{bottom:542.973333pt;}
.y3_c00397{bottom:550.653333pt;}
.y2_c00397{bottom:590.586667pt;}
.y1_c00397{bottom:601.346667pt;}
.y23_c00397{bottom:834.053333pt;}
.y22_c00397{bottom:843.266667pt;}
.y21_c00397{bottom:855.546667pt;}
.y20_c00397{bottom:864.000000pt;}
.y62_c00397{bottom:986.106667pt;}
.y61_c00397{bottom:986.880000pt;}
.y64_c00397{bottom:988.413333pt;}
.y63_c00397{bottom:989.186667pt;}
.y60_c00397{bottom:990.720000pt;}
.y5f_c00397{bottom:991.493333pt;}
.y5c_c00397{bottom:1000.706667pt;}
.y57_c00397{bottom:1003.773333pt;}
.y5d_c00397{bottom:1006.080000pt;}
.y5e_c00397{bottom:1007.613333pt;}
.y58_c00397{bottom:1008.386667pt;}
.y59_c00397{bottom:1009.146667pt;}
.y56_c00397{bottom:1009.920000pt;}
.y5a_c00397{bottom:1010.693333pt;}
.y5b_c00397{bottom:1013.760000pt;}
.y55_c00397{bottom:1019.133333pt;}
.y53_c00397{bottom:1021.440000pt;}
.y4f_c00397{bottom:1022.213333pt;}
.y54_c00397{bottom:1022.973333pt;}
.y50_c00397{bottom:1026.053333pt;}
.y52_c00397{bottom:1026.813333pt;}
.y51_c00397{bottom:1027.586667pt;}
.y4c_c00397{bottom:1039.866667pt;}
.y4b_c00397{bottom:1041.413333pt;}
.y4e_c00397{bottom:1042.173333pt;}
.y4d_c00397{bottom:1044.480000pt;}
.y49_c00397{bottom:1045.253333pt;}
.y4a_c00397{bottom:1046.786667pt;}
.y48_c00397{bottom:1058.306667pt;}
.y44_c00397{bottom:1059.066667pt;}
.y45_c00397{bottom:1062.146667pt;}
.y46_c00397{bottom:1063.680000pt;}
.y47_c00397{bottom:1076.733333pt;}
.y43_c00397{bottom:1080.573333pt;}
.y40_c00397{bottom:1108.226667pt;}
.y3c_c00397{bottom:1112.826667pt;}
.y3b_c00397{bottom:1117.440000pt;}
.y3d_c00397{bottom:1118.973333pt;}
.y3e_c00397{bottom:1129.733333pt;}
.y3f_c00397{bottom:1130.493333pt;}
.y38_c00397{bottom:1131.266667pt;}
.y39_c00397{bottom:1133.573333pt;}
.y37_c00397{bottom:1134.333333pt;}
.y36_c00397{bottom:1135.866667pt;}
.y24_c00397{bottom:1136.640000pt;}
.y3a_c00397{bottom:1137.413333pt;}
.y33_c00397{bottom:1149.693333pt;}
.y35_c00397{bottom:1150.466667pt;}
.y32_c00397{bottom:1154.306667pt;}
.y31_c00397{bottom:1155.066667pt;}
.y34_c00397{bottom:1165.053333pt;}
.y2e_c00397{bottom:1169.666667pt;}
.y30_c00397{bottom:1170.426667pt;}
.y2f_c00397{bottom:1173.506667pt;}
.y2b_c00397{bottom:1185.786667pt;}
.y2c_c00397{bottom:1186.560000pt;}
.y2d_c00397{bottom:1188.093333pt;}
.y2a_c00397{bottom:1190.400000pt;}
.y29_c00397{bottom:1199.613333pt;}
.y28_c00397{bottom:1208.066667pt;}
.y41_c00397{bottom:1229.573333pt;}
.y42_c00397{bottom:1230.333333pt;}
.y27_c00397{bottom:1231.106667pt;}
.y25_c00397{bottom:1231.866667pt;}
.y26_c00397{bottom:1232.640000pt;}
.he_c00397{height:2.764500pt;}
.h7_c00397{height:4.799479pt;}
.hf_c00397{height:5.519401pt;}
.h1f_c00397{height:5.804500pt;}
.h15_c00397{height:11.038802pt;}
.h3_c00397{height:13.822500pt;}
.h9_c00397{height:16.606198pt;}
.h2_c00397{height:22.125599pt;}
.h5_c00397{height:24.861302pt;}
.ha_c00397{height:27.645000pt;}
.h14_c00397{height:30.428698pt;}
.h17_c00397{height:33.164401pt;}
.h18_c00397{height:35.948099pt;}
.h19_c00397{height:38.683802pt;}
.h6_c00397{height:41.467500pt;}
.h13_c00397{height:44.251198pt;}
.hc_c00397{height:46.986901pt;}
.h1b_c00397{height:49.770599pt;}
.h8_c00397{height:52.506302pt;}
.h16_c00397{height:55.290000pt;}
.h10_c00397{height:58.073698pt;}
.hb_c00397{height:60.809401pt;}
.h1d_c00397{height:63.593099pt;}
.h1e_c00397{height:66.328802pt;}
.h12_c00397{height:69.112500pt;}
.h1a_c00397{height:71.896198pt;}
.h1c_c00397{height:74.631901pt;}
.hd_c00397{height:85.718698pt;}
.h11_c00397{height:88.454401pt;}
.h4_c00397{height:132.705599pt;}
.h0_c00397{height:1338.626667pt;}
.h1_c00397{height:1338.666667pt;}
.w0_c00397{width:978.426667pt;}
.w1_c00397{width:978.666667pt;}
.x0_c00397{left:0.000000pt;}
.x2_c00397{left:1.533333pt;}
.x3_c00397{left:8.453333pt;}
.xa_c00397{left:12.293333pt;}
.xb_c00397{left:34.560000pt;}
.xc_c00397{left:47.613333pt;}
.x5_c00397{left:63.746667pt;}
.x1_c00397{left:76.800000pt;}
.xe_c00397{left:88.320000pt;}
.xd_c00397{left:101.373333pt;}
.x7_c00397{left:122.880000pt;}
.xf_c00397{left:126.720000pt;}
.x8_c00397{left:129.026667pt;}
.x9_c00397{left:136.706667pt;}
.x6_c00397{left:149.760000pt;}
.x4_c00397{left:178.946667pt;}
.x36_c00397{left:405.506667pt;}
.x37_c00397{left:430.080000pt;}
.x38_c00397{left:450.813333pt;}
.x39_c00397{left:475.386667pt;}
.x31_c00397{left:502.266667pt;}
.x35_c00397{left:506.106667pt;}
.x32_c00397{left:507.653333pt;}
.x3a_c00397{left:509.946667pt;}
.x1c_c00397{left:513.026667pt;}
.x22_c00397{left:514.560000pt;}
.x3b_c00397{left:523.773333pt;}
.x15_c00397{left:529.146667pt;}
.x16_c00397{left:536.826667pt;}
.x50_c00397{left:538.373333pt;}
.x23_c00397{left:541.440000pt;}
.x14_c00397{left:548.346667pt;}
.x1d_c00397{left:549.893333pt;}
.x2a_c00397{left:558.333333pt;}
.x10_c00397{left:561.413333pt;}
.x2b_c00397{left:566.786667pt;}
.x17_c00397{left:569.853333pt;}
.x3c_c00397{left:573.693333pt;}
.x41_c00397{left:575.226667pt;}
.x11_c00397{left:576.773333pt;}
.x24_c00397{left:579.840000pt;}
.x4b_c00397{left:581.373333pt;}
.x2c_c00397{left:586.746667pt;}
.x12_c00397{left:592.133333pt;}
.x13_c00397{left:596.733333pt;}
.x2d_c00397{left:609.026667pt;}
.x45_c00397{left:612.093333pt;}
.x33_c00397{left:613.626667pt;}
.x18_c00397{left:618.240000pt;}
.x51_c00397{left:622.853333pt;}
.x25_c00397{left:625.920000pt;}
.x1e_c00397{left:629.760000pt;}
.x26_c00397{left:632.066667pt;}
.x1f_c00397{left:640.506667pt;}
.x3d_c00397{left:648.960000pt;}
.x20_c00397{left:658.173333pt;}
.x34_c00397{left:659.706667pt;}
.x52_c00397{left:665.853333pt;}
.x4c_c00397{left:672.000000pt;}
.x2e_c00397{left:675.840000pt;}
.x27_c00397{left:678.146667pt;}
.x53_c00397{left:683.520000pt;}
.x2f_c00397{left:687.360000pt;}
.x46_c00397{left:690.426667pt;}
.x4d_c00397{left:695.040400pt;}
.x3e_c00397{left:697.346667pt;}
.x42_c00397{left:700.413333pt;}
.x19_c00397{left:708.866667pt;}
.x21_c00397{left:712.706667pt;}
.x43_c00397{left:716.546667pt;}
.x3f_c00397{left:721.920000pt;}
.x1a_c00397{left:728.066667pt;}
.x28_c00397{left:729.600000pt;}
.x47_c00397{left:733.440000pt;}
.x40_c00397{left:734.973333pt;}
.x29_c00397{left:746.493333pt;}
.x4e_c00397{left:748.026667pt;}
.x30_c00397{left:753.413333pt;}
.x1b_c00397{left:760.320000pt;}
.x4f_c00397{left:767.226667pt;}
.x48_c00397{left:769.533333pt;}
.x44_c00397{left:771.066667pt;}
.x49_c00397{left:789.506667pt;}
.x4a_c00397{left:807.933333pt;}
.x54_c00397{left:812.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49d9983fd4053e2941b4fa33.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.109863;font-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_c00398{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c00398{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);}
.m4_c00398{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c00398{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m0_c00398{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m3_c00398{transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887500,0.000000,0.000000,0.250000,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;}
.fs1_c00398{font-size:10.380000px;}
.fs0_c00398{font-size:13.800000px;}
.fs3_c00398{font-size:38.040000px;}
.fs2_c00398{font-size:58.740000px;}
.fs4_c00398{font-size:76.020000px;}
.y0_c00398{bottom:0.000000px;}
.y5_c00398{bottom:473.475000px;}
.y6_c00398{bottom:474.330000px;}
.y4_c00398{bottom:499.395000px;}
.y3_c00398{bottom:1142.205000px;}
.y2_c00398{bottom:1434.240000px;}
.y1_c00398{bottom:1435.965000px;}
.h3_c00398{height:9.340986px;}
.h2_c00398{height:12.418652px;}
.h5_c00398{height:34.232285px;}
.h4_c00398{height:52.860264px;}
.h6_c00398{height:68.410576px;}
.h0_c00398{height:1515.450000px;}
.h1_c00398{height:1515.750000px;}
.w0_c00398{width:1088.640000px;}
.w1_c00398{width:1089.000000px;}
.x0_c00398{left:0.000000px;}
.x5_c00398{left:277.350000px;}
.x6_c00398{left:393.120000px;}
.x4_c00398{left:398.310000px;}
.x1_c00398{left:868.320000px;}
.x2_c00398{left:880.410000px;}
.x3_c00398{left:1041.990000px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ws0_c00398{word-spacing:0.000000pt;}
.fs1_c00398{font-size:9.226667pt;}
.fs0_c00398{font-size:12.266667pt;}
.fs3_c00398{font-size:33.813333pt;}
.fs2_c00398{font-size:52.213333pt;}
.fs4_c00398{font-size:67.573333pt;}
.y0_c00398{bottom:0.000000pt;}
.y5_c00398{bottom:420.866667pt;}
.y6_c00398{bottom:421.626667pt;}
.y4_c00398{bottom:443.906667pt;}
.y3_c00398{bottom:1015.293333pt;}
.y2_c00398{bottom:1274.880000pt;}
.y1_c00398{bottom:1276.413333pt;}
.h3_c00398{height:8.303099pt;}
.h2_c00398{height:11.038802pt;}
.h5_c00398{height:30.428698pt;}
.h4_c00398{height:46.986901pt;}
.h6_c00398{height:60.809401pt;}
.h0_c00398{height:1347.066667pt;}
.h1_c00398{height:1347.333333pt;}
.w0_c00398{width:967.680000pt;}
.w1_c00398{width:968.000000pt;}
.x0_c00398{left:0.000000pt;}
.x5_c00398{left:246.533333pt;}
.x6_c00398{left:349.440000pt;}
.x4_c00398{left:354.053333pt;}
.x1_c00398{left:771.840000pt;}
.x2_c00398{left:782.586667pt;}
.x3_c00398{left:926.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b907f9e9680b9a7b1989cf02.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:1.109863;font-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_c00399{transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);}
.m7_c00399{transform:matrix(0.105450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105450,0.000000,0.000000,0.250000,0,0);}
.m9_c00399{transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);}
.m1_c00399{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma_c00399{transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);}
.m12_c00399{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m5_c00399{transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);}
.m10_c00399{transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);}
.me_c00399{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);}
.m11_c00399{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.m6_c00399{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);}
.mb_c00399{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c00399{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);}
.mc_c00399{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c00399{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c00399{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c00399{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c00399{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m13_c00399{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c00399{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,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;}
.fsb_c00399{font-size:3.456000px;}
.fs1_c00399{font-size:10.380000px;}
.fs0_c00399{font-size:13.800000px;}
.fsc_c00399{font-size:51.840000px;}
.fse_c00399{font-size:55.320000px;}
.fs4_c00399{font-size:65.640000px;}
.fs8_c00399{font-size:69.120000px;}
.fs3_c00399{font-size:72.600000px;}
.fsf_c00399{font-size:76.020000px;}
.fsd_c00399{font-size:86.400000px;}
.fs6_c00399{font-size:89.880000px;}
.fs5_c00399{font-size:100.200000px;}
.fs9_c00399{font-size:107.160000px;}
.fsa_c00399{font-size:110.580000px;}
.fs7_c00399{font-size:114.060000px;}
.fs2_c00399{font-size:138.240000px;}
.y0_c00399{bottom:0.000000px;}
.yf_c00399{bottom:610.845000px;}
.ye_c00399{bottom:614.310000px;}
.y10_c00399{bottom:632.445000px;}
.yc_c00399{bottom:635.910000px;}
.ya_c00399{bottom:642.810000px;}
.yd_c00399{bottom:643.680000px;}
.yb_c00399{bottom:646.275000px;}
.y7_c00399{bottom:659.235000px;}
.y9_c00399{bottom:660.090000px;}
.y6_c00399{bottom:660.960000px;}
.y8_c00399{bottom:664.410000px;}
.y4_c00399{bottom:688.605000px;}
.y5_c00399{bottom:690.330000px;}
.y3_c00399{bottom:1236.390000px;}
.y2_c00399{bottom:1426.470000px;}
.y1_c00399{bottom:1429.050000px;}
.hd_c00399{height:3.110063px;}
.h3_c00399{height:9.340986px;}
.h2_c00399{height:12.418652px;}
.he_c00399{height:46.650937px;}
.h10_c00399{height:49.782598px;}
.h6_c00399{height:59.069590px;}
.ha_c00399{height:62.201250px;}
.h5_c00399{height:65.332910px;}
.h11_c00399{height:68.410576px;}
.hf_c00399{height:77.751563px;}
.h8_c00399{height:80.883223px;}
.h7_c00399{height:90.170215px;}
.hb_c00399{height:96.433535px;}
.hc_c00399{height:99.511201px;}
.h9_c00399{height:102.642861px;}
.h4_c00399{height:124.402500px;}
.h0_c00399{height:1505.955000px;}
.h1_c00399{height:1506.000000px;}
.w0_c00399{width:1100.730000px;}
.w1_c00399{width:1101.000000px;}
.x0_c00399{left:0.000000px;}
.x1_c00399{left:3.450000px;}
.x2_c00399{left:15.555000px;}
.x5_c00399{left:571.965000px;}
.x3_c00399{left:577.155000px;}
.x6_c00399{left:597.885000px;}
.x11_c00399{left:600.480000px;}
.xb_c00399{left:603.075000px;}
.x7_c00399{left:638.490000px;}
.xc_c00399{left:647.130000px;}
.xd_c00399{left:653.190000px;}
.x12_c00399{left:662.685000px;}
.x8_c00399{left:723.165000px;}
.xe_c00399{left:744.765000px;}
.x13_c00399{left:749.085000px;}
.x4_c00399{left:765.510000px;}
.x9_c00399{left:791.430000px;}
.xf_c00399{left:802.650000px;}
.xa_c00399{left:823.395000px;}
.x10_c00399{left:835.485000px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls0_c00399{letter-spacing:0.000000pt;}
.ws0_c00399{word-spacing:0.000000pt;}
.fsb_c00399{font-size:3.072000pt;}
.fs1_c00399{font-size:9.226667pt;}
.fs0_c00399{font-size:12.266667pt;}
.fsc_c00399{font-size:46.080000pt;}
.fse_c00399{font-size:49.173333pt;}
.fs4_c00399{font-size:58.346667pt;}
.fs8_c00399{font-size:61.440000pt;}
.fs3_c00399{font-size:64.533333pt;}
.fsf_c00399{font-size:67.573333pt;}
.fsd_c00399{font-size:76.800000pt;}
.fs6_c00399{font-size:79.893333pt;}
.fs5_c00399{font-size:89.066667pt;}
.fs9_c00399{font-size:95.253333pt;}
.fsa_c00399{font-size:98.293333pt;}
.fs7_c00399{font-size:101.386667pt;}
.fs2_c00399{font-size:122.880000pt;}
.y0_c00399{bottom:0.000000pt;}
.yf_c00399{bottom:542.973333pt;}
.ye_c00399{bottom:546.053333pt;}
.y10_c00399{bottom:562.173333pt;}
.yc_c00399{bottom:565.253333pt;}
.ya_c00399{bottom:571.386667pt;}
.yd_c00399{bottom:572.160000pt;}
.yb_c00399{bottom:574.466667pt;}
.y7_c00399{bottom:585.986667pt;}
.y9_c00399{bottom:586.746667pt;}
.y6_c00399{bottom:587.520000pt;}
.y8_c00399{bottom:590.586667pt;}
.y4_c00399{bottom:612.093333pt;}
.y5_c00399{bottom:613.626667pt;}
.y3_c00399{bottom:1099.013333pt;}
.y2_c00399{bottom:1267.973333pt;}
.y1_c00399{bottom:1270.266667pt;}
.hd_c00399{height:2.764500pt;}
.h3_c00399{height:8.303099pt;}
.h2_c00399{height:11.038802pt;}
.he_c00399{height:41.467500pt;}
.h10_c00399{height:44.251198pt;}
.h6_c00399{height:52.506302pt;}
.ha_c00399{height:55.290000pt;}
.h5_c00399{height:58.073698pt;}
.h11_c00399{height:60.809401pt;}
.hf_c00399{height:69.112500pt;}
.h8_c00399{height:71.896198pt;}
.h7_c00399{height:80.151302pt;}
.hb_c00399{height:85.718698pt;}
.hc_c00399{height:88.454401pt;}
.h9_c00399{height:91.238099pt;}
.h4_c00399{height:110.580000pt;}
.h0_c00399{height:1338.626667pt;}
.h1_c00399{height:1338.666667pt;}
.w0_c00399{width:978.426667pt;}
.w1_c00399{width:978.666667pt;}
.x0_c00399{left:0.000000pt;}
.x1_c00399{left:3.066667pt;}
.x2_c00399{left:13.826667pt;}
.x5_c00399{left:508.413333pt;}
.x3_c00399{left:513.026667pt;}
.x6_c00399{left:531.453333pt;}
.x11_c00399{left:533.760000pt;}
.xb_c00399{left:536.066667pt;}
.x7_c00399{left:567.546667pt;}
.xc_c00399{left:575.226667pt;}
.xd_c00399{left:580.613333pt;}
.x12_c00399{left:589.053333pt;}
.x8_c00399{left:642.813333pt;}
.xe_c00399{left:662.013333pt;}
.x13_c00399{left:665.853333pt;}
.x4_c00399{left:680.453333pt;}
.x9_c00399{left:703.493333pt;}
.xf_c00399{left:713.466667pt;}
.xa_c00399{left:731.906667pt;}
.x10_c00399{left:742.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e3ed7f6069bca558a99cdcaa.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.109863;font-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_c00400{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);}
.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:600.000000px;}
.y0_c00400{bottom:0.000000px;}
.y1_c00400{bottom:15.000000px;}
.h2_c00400{height:539.941406px;}
.h0_c00400{height:1515.450000px;}
.h1_c00400{height:1515.750000px;}
.w0_c00400{width:1088.640000px;}
.w1_c00400{width:1089.000000px;}
.x0_c00400{left:0.000000px;}
.x1_c00400{left:15.000000px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls0_c00400{letter-spacing:0.000000pt;}
.ws0_c00400{word-spacing:0.000000pt;}
.fs0_c00400{font-size:533.333333pt;}
.y0_c00400{bottom:0.000000pt;}
.y1_c00400{bottom:13.333333pt;}
.h2_c00400{height:479.947917pt;}
.h0_c00400{height:1347.066667pt;}
.h1_c00400{height:1347.333333pt;}
.w0_c00400{width:967.680000pt;}
.w1_c00400{width:968.000000pt;}
.x0_c00400{left:0.000000pt;}
.x1_c00400{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ad740656b60181f8246bae4.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:1.109863;font-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_c00401{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c00401{transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);}
.m7_c00401{transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);}
.m1c_c00401{transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);}
.m2_c00401{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m15_c00401{transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);}
.m24_c00401{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.m26_c00401{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m11_c00401{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m12_c00401{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);}
.m23_c00401{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.m17_c00401{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m1b_c00401{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);}
.mc_c00401{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m9_c00401{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);}
.m19_c00401{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m14_c00401{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.m13_c00401{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);}
.m10_c00401{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);}
.m0_c00401{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);}
.m1f_c00401{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);}
.m25_c00401{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c00401{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00401{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m18_c00401{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c00401{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c00401{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m22_c00401{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00401{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);}
.m16_c00401{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c00401{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);}
.m5_c00401{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m28_c00401{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);}
.m27_c00401{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);}
.mf_c00401{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m29_c00401{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c00401{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.md_c00401{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);}
.m3_c00401{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00401{transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);}
.m8_c00401{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00401{transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735000,0.000000,0.000000,0.250000,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:-18.196929px;}
.ws1_c00401{word-spacing:0.000000px;}
.fc0_c00401{color:transparent;}
.fs7_c00401{font-size:3.456000px;}
.fs17_c00401{font-size:6.000000px;}
.fs5_c00401{font-size:6.900000px;}
.fs1_c00401{font-size:10.380000px;}
.fs16_c00401{font-size:13.800000px;}
.fs8_c00401{font-size:17.280000px;}
.fs1b_c00401{font-size:20.760000px;}
.fs0_c00401{font-size:24.180000px;}
.fs18_c00401{font-size:27.660000px;}
.fs15_c00401{font-size:31.080000px;}
.fs2_c00401{font-size:34.560000px;}
.fsa_c00401{font-size:38.040000px;}
.fs6_c00401{font-size:44.940000px;}
.fs9_c00401{font-size:51.840000px;}
.fs3_c00401{font-size:55.320000px;}
.fs19_c00401{font-size:58.740000px;}
.fs1c_c00401{font-size:65.640000px;}
.fs1a_c00401{font-size:69.120000px;}
.fs12_c00401{font-size:72.600000px;}
.fsb_c00401{font-size:79.500000px;}
.fs10_c00401{font-size:86.400000px;}
.fsf_c00401{font-size:89.880000px;}
.fse_c00401{font-size:93.300000px;}
.fs14_c00401{font-size:96.780000px;}
.fsc_c00401{font-size:103.680000px;}
.fs13_c00401{font-size:110.580000px;}
.fsd_c00401{font-size:114.060000px;}
.fs11_c00401{font-size:120.960000px;}
.fs4_c00401{font-size:134.760000px;}
.y0_c00401{bottom:0.000000px;}
.y2e_c00401{bottom:1009.155000px;}
.y2d_c00401{bottom:1064.445000px;}
.y2c_c00401{bottom:1065.315000px;}
.y2b_c00401{bottom:1071.360000px;}
.y29_c00401{bottom:1073.085000px;}
.y2a_c00401{bottom:1073.955000px;}
.y26_c00401{bottom:1074.810000px;}
.y27_c00401{bottom:1075.680000px;}
.y28_c00401{bottom:1076.550000px;}
.y24_c00401{bottom:1086.045000px;}
.y25_c00401{bottom:1090.365000px;}
.y22_c00401{bottom:1092.960000px;}
.y23_c00401{bottom:1094.685000px;}
.y21_c00401{bottom:1099.875000px;}
.y1e_c00401{bottom:1106.790000px;}
.y20_c00401{bottom:1113.690000px;}
.y1f_c00401{bottom:1114.560000px;}
.y1d_c00401{bottom:1132.710000px;}
.y1c_c00401{bottom:1133.565000px;}
.y1b_c00401{bottom:1141.350000px;}
.y1a_c00401{bottom:1142.205000px;}
.y19_c00401{bottom:1143.075000px;}
.y18_c00401{bottom:1150.845000px;}
.y17_c00401{bottom:1175.910000px;}
.y16_c00401{bottom:1181.085000px;}
.y8_c00401{bottom:1206.150000px;}
.y14_c00401{bottom:1207.005000px;}
.y15_c00401{bottom:1207.875000px;}
.y12_c00401{bottom:1208.730000px;}
.y13_c00401{bottom:1213.920000px;}
.y7_c00401{bottom:1214.790000px;}
.y6_c00401{bottom:1219.110000px;}
.y11_c00401{bottom:1246.755000px;}
.yf_c00401{bottom:1247.610000px;}
.y5_c00401{bottom:1253.670000px;}
.y9_c00401{bottom:1257.990000px;}
.ya_c00401{bottom:1258.845000px;}
.y10_c00401{bottom:1264.890000px;}
.y4_c00401{bottom:1268.355000px;}
.ye_c00401{bottom:1289.085000px;}
.y3_c00401{bottom:1320.195000px;}
.y1_c00401{bottom:1321.050000px;}
.y2_c00401{bottom:1326.240000px;}
.yd_c00401{bottom:1371.165000px;}
.yc_c00401{bottom:1378.080000px;}
.yb_c00401{bottom:1385.850000px;}
.h9_c00401{height:3.110063px;}
.h19_c00401{height:5.399414px;}
.h7_c00401{height:6.209326px;}
.h3_c00401{height:9.340986px;}
.h18_c00401{height:12.418652px;}
.ha_c00401{height:15.550313px;}
.h1d_c00401{height:18.681973px;}
.h2_c00401{height:21.759639px;}
.h1a_c00401{height:24.891299px;}
.h17_c00401{height:27.968965px;}
.h4_c00401{height:31.100625px;}
.hc_c00401{height:34.232285px;}
.h8_c00401{height:40.441611px;}
.hb_c00401{height:46.650937px;}
.h5_c00401{height:49.782598px;}
.h1b_c00401{height:52.860264px;}
.h1e_c00401{height:59.069590px;}
.h1c_c00401{height:62.201250px;}
.h14_c00401{height:65.332910px;}
.hd_c00401{height:71.542236px;}
.h12_c00401{height:77.751563px;}
.h11_c00401{height:80.883223px;}
.h10_c00401{height:83.960889px;}
.h16_c00401{height:87.092549px;}
.he_c00401{height:93.301875px;}
.h15_c00401{height:99.511201px;}
.hf_c00401{height:102.642861px;}
.h13_c00401{height:108.852188px;}
.h6_c00401{height:121.270840px;}
.h0_c00401{height:1505.955000px;}
.h1_c00401{height:1506.000000px;}
.w0_c00401{width:1100.730000px;}
.w1_c00401{width:1101.000000px;}
.x0_c00401{left:0.000000px;}
.x1_c00401{left:25.920000px;}
.x6_c00401{left:30.240000px;}
.x2_c00401{left:39.750000px;}
.x3_c00401{left:52.710000px;}
.x7_c00401{left:55.290000px;}
.x5_c00401{left:95.040000px;}
.x4_c00401{left:114.045000px;}
.x2d_c00401{left:161.565000px;}
.xa_c00401{left:176.250000px;}
.x21_c00401{left:336.960000px;}
.x22_c00401{left:355.965000px;}
.x23_c00401{left:387.075000px;}
.x24_c00401{left:404.355000px;}
.x1d_c00401{left:406.950000px;}
.x25_c00401{left:418.170000px;}
.x26_c00401{left:449.280000px;}
.x1e_c00401{left:453.600000px;}
.x1f_c00401{left:472.605000px;}
.x20_c00401{left:494.205000px;}
.x27_c00401{left:497.670000px;}
.x28_c00401{left:578.010000px;}
.xc_c00401{left:598.755000px;}
.x1c_c00401{left:609.120000px;}
.xf_c00401{left:622.080000px;}
.x19_c00401{left:627.270000px;}
.x13_c00401{left:628.995000px;}
.x29_c00401{left:638.490000px;}
.x17_c00401{left:657.510000px;}
.x10_c00401{left:660.090000px;}
.x15_c00401{left:673.920000px;}
.x18_c00401{left:692.925000px;}
.xd_c00401{left:698.115000px;}
.xe_c00401{left:711.930000px;}
.x11_c00401{left:738.720000px;}
.x16_c00401{left:773.280000px;}
.x2a_c00401{left:776.730000px;}
.x14_c00401{left:789.690000px;}
.x12_c00401{left:847.590000px;}
.x9_c00401{left:851.040000px;}
.x8_c00401{left:853.635000px;}
.x2b_c00401{left:900.285000px;}
.x2c_c00401{left:914.970000px;}
.x1a_c00401{left:945.210000px;}
.xb_c00401{left:952.995000px;}
.x1b_c00401{left:968.550000px;}
@media print{
.v0_c00401{vertical-align:0.000000pt;}
.ls0_c00401{letter-spacing:0.000000pt;}
.ws0_c00401{word-spacing:-16.175048pt;}
.ws1_c00401{word-spacing:0.000000pt;}
.fs7_c00401{font-size:3.072000pt;}
.fs17_c00401{font-size:5.333333pt;}
.fs5_c00401{font-size:6.133333pt;}
.fs1_c00401{font-size:9.226667pt;}
.fs16_c00401{font-size:12.266667pt;}
.fs8_c00401{font-size:15.360000pt;}
.fs1b_c00401{font-size:18.453333pt;}
.fs0_c00401{font-size:21.493333pt;}
.fs18_c00401{font-size:24.586667pt;}
.fs15_c00401{font-size:27.626667pt;}
.fs2_c00401{font-size:30.720000pt;}
.fsa_c00401{font-size:33.813333pt;}
.fs6_c00401{font-size:39.946667pt;}
.fs9_c00401{font-size:46.080000pt;}
.fs3_c00401{font-size:49.173333pt;}
.fs19_c00401{font-size:52.213333pt;}
.fs1c_c00401{font-size:58.346667pt;}
.fs1a_c00401{font-size:61.440000pt;}
.fs12_c00401{font-size:64.533333pt;}
.fsb_c00401{font-size:70.666667pt;}
.fs10_c00401{font-size:76.800000pt;}
.fsf_c00401{font-size:79.893333pt;}
.fse_c00401{font-size:82.933333pt;}
.fs14_c00401{font-size:86.026667pt;}
.fsc_c00401{font-size:92.160000pt;}
.fs13_c00401{font-size:98.293333pt;}
.fsd_c00401{font-size:101.386667pt;}
.fs11_c00401{font-size:107.520000pt;}
.fs4_c00401{font-size:119.786667pt;}
.y0_c00401{bottom:0.000000pt;}
.y2e_c00401{bottom:897.026667pt;}
.y2d_c00401{bottom:946.173333pt;}
.y2c_c00401{bottom:946.946667pt;}
.y2b_c00401{bottom:952.320000pt;}
.y29_c00401{bottom:953.853333pt;}
.y2a_c00401{bottom:954.626667pt;}
.y26_c00401{bottom:955.386667pt;}
.y27_c00401{bottom:956.160000pt;}
.y28_c00401{bottom:956.933333pt;}
.y24_c00401{bottom:965.373333pt;}
.y25_c00401{bottom:969.213333pt;}
.y22_c00401{bottom:971.520000pt;}
.y23_c00401{bottom:973.053333pt;}
.y21_c00401{bottom:977.666667pt;}
.y1e_c00401{bottom:983.813333pt;}
.y20_c00401{bottom:989.946667pt;}
.y1f_c00401{bottom:990.720000pt;}
.y1d_c00401{bottom:1006.853333pt;}
.y1c_c00401{bottom:1007.613333pt;}
.y1b_c00401{bottom:1014.533333pt;}
.y1a_c00401{bottom:1015.293333pt;}
.y19_c00401{bottom:1016.066667pt;}
.y18_c00401{bottom:1022.973333pt;}
.y17_c00401{bottom:1045.253333pt;}
.y16_c00401{bottom:1049.853333pt;}
.y8_c00401{bottom:1072.133333pt;}
.y14_c00401{bottom:1072.893333pt;}
.y15_c00401{bottom:1073.666667pt;}
.y12_c00401{bottom:1074.426667pt;}
.y13_c00401{bottom:1079.040000pt;}
.y7_c00401{bottom:1079.813333pt;}
.y6_c00401{bottom:1083.653333pt;}
.y11_c00401{bottom:1108.226667pt;}
.yf_c00401{bottom:1108.986667pt;}
.y5_c00401{bottom:1114.373333pt;}
.y9_c00401{bottom:1118.213333pt;}
.ya_c00401{bottom:1118.973333pt;}
.y10_c00401{bottom:1124.346667pt;}
.y4_c00401{bottom:1127.426667pt;}
.ye_c00401{bottom:1145.853333pt;}
.y3_c00401{bottom:1173.506667pt;}
.y1_c00401{bottom:1174.266667pt;}
.y2_c00401{bottom:1178.880000pt;}
.yd_c00401{bottom:1218.813333pt;}
.yc_c00401{bottom:1224.960000pt;}
.yb_c00401{bottom:1231.866667pt;}
.h9_c00401{height:2.764500pt;}
.h19_c00401{height:4.799479pt;}
.h7_c00401{height:5.519401pt;}
.h3_c00401{height:8.303099pt;}
.h18_c00401{height:11.038802pt;}
.ha_c00401{height:13.822500pt;}
.h1d_c00401{height:16.606198pt;}
.h2_c00401{height:19.341901pt;}
.h1a_c00401{height:22.125599pt;}
.h17_c00401{height:24.861302pt;}
.h4_c00401{height:27.645000pt;}
.hc_c00401{height:30.428698pt;}
.h8_c00401{height:35.948099pt;}
.hb_c00401{height:41.467500pt;}
.h5_c00401{height:44.251198pt;}
.h1b_c00401{height:46.986901pt;}
.h1e_c00401{height:52.506302pt;}
.h1c_c00401{height:55.290000pt;}
.h14_c00401{height:58.073698pt;}
.hd_c00401{height:63.593099pt;}
.h12_c00401{height:69.112500pt;}
.h11_c00401{height:71.896198pt;}
.h10_c00401{height:74.631901pt;}
.h16_c00401{height:77.415599pt;}
.he_c00401{height:82.935000pt;}
.h15_c00401{height:88.454401pt;}
.hf_c00401{height:91.238099pt;}
.h13_c00401{height:96.757500pt;}
.h6_c00401{height:107.796302pt;}
.h0_c00401{height:1338.626667pt;}
.h1_c00401{height:1338.666667pt;}
.w0_c00401{width:978.426667pt;}
.w1_c00401{width:978.666667pt;}
.x0_c00401{left:0.000000pt;}
.x1_c00401{left:23.040000pt;}
.x6_c00401{left:26.880000pt;}
.x2_c00401{left:35.333333pt;}
.x3_c00401{left:46.853333pt;}
.x7_c00401{left:49.146667pt;}
.x5_c00401{left:84.480000pt;}
.x4_c00401{left:101.373333pt;}
.x2d_c00401{left:143.613333pt;}
.xa_c00401{left:156.666667pt;}
.x21_c00401{left:299.520000pt;}
.x22_c00401{left:316.413333pt;}
.x23_c00401{left:344.066667pt;}
.x24_c00401{left:359.426667pt;}
.x1d_c00401{left:361.733333pt;}
.x25_c00401{left:371.706667pt;}
.x26_c00401{left:399.360000pt;}
.x1e_c00401{left:403.200000pt;}
.x1f_c00401{left:420.093333pt;}
.x20_c00401{left:439.293333pt;}
.x27_c00401{left:442.373333pt;}
.x28_c00401{left:513.786667pt;}
.xc_c00401{left:532.226667pt;}
.x1c_c00401{left:541.440000pt;}
.xf_c00401{left:552.960000pt;}
.x19_c00401{left:557.573333pt;}
.x13_c00401{left:559.106667pt;}
.x29_c00401{left:567.546667pt;}
.x17_c00401{left:584.453333pt;}
.x10_c00401{left:586.746667pt;}
.x15_c00401{left:599.040000pt;}
.x18_c00401{left:615.933333pt;}
.xd_c00401{left:620.546667pt;}
.xe_c00401{left:632.826667pt;}
.x11_c00401{left:656.640000pt;}
.x16_c00401{left:687.360000pt;}
.x2a_c00401{left:690.426667pt;}
.x14_c00401{left:701.946667pt;}
.x12_c00401{left:753.413333pt;}
.x9_c00401{left:756.480000pt;}
.x8_c00401{left:758.786667pt;}
.x2b_c00401{left:800.253333pt;}
.x2c_c00401{left:813.306667pt;}
.x1a_c00401{left:840.186667pt;}
.xb_c00401{left:847.106667pt;}
.x1b_c00401{left:860.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2d33c3d2399e3c36f7569645.woff2')format("woff");}.ff1_c00402{font-family:ff1_c00402;line-height:1.109863;font-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_c00402{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_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);}
.m2_c00402{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c00402{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);}
.m8_c00402{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);}
.m5_c00402{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4_c00402{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m7_c00402{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m0_c00402{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,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;}
.fc0_c00402{color:transparent;}
.fs3_c00402{font-size:3.456000px;}
.fs4_c00402{font-size:13.800000px;}
.fs0_c00402{font-size:17.280000px;}
.fs1_c00402{font-size:20.760000px;}
.fs5_c00402{font-size:27.660000px;}
.fs2_c00402{font-size:44.940000px;}
.fs6_c00402{font-size:48.360000px;}
.y0_c00402{bottom:0.000000px;}
.y8_c00402{bottom:691.200000px;}
.y9_c00402{bottom:698.115000px;}
.y7_c00402{bottom:705.030000px;}
.y6_c00402{bottom:1175.910000px;}
.y5_c00402{bottom:1256.250000px;}
.y4_c00402{bottom:1259.715000px;}
.y3_c00402{bottom:1350.435000px;}
.y2_c00402{bottom:1351.290000px;}
.y1_c00402{bottom:1428.195000px;}
.h5_c00402{height:3.110063px;}
.h6_c00402{height:12.418652px;}
.h2_c00402{height:15.550313px;}
.h3_c00402{height:18.681973px;}
.h7_c00402{height:24.891299px;}
.h4_c00402{height:40.441611px;}
.h8_c00402{height:43.519277px;}
.h0_c00402{height:1515.450000px;}
.h1_c00402{height:1515.750000px;}
.w0_c00402{width:1088.640000px;}
.w1_c00402{width:1089.000000px;}
.x0_c00402{left:0.000000px;}
.x8_c00402{left:741.315000px;}
.x7_c00402{left:764.640000px;}
.x6_c00402{left:892.515000px;}
.x4_c00402{left:937.440000px;}
.x5_c00402{left:952.995000px;}
.x9_c00402{left:965.085000px;}
.x2_c00402{left:1035.930000px;}
.x3_c00402{left:1051.485000px;}
.x1_c00402{left:1058.400000px;}
@media print{
.v0_c00402{vertical-align:0.000000pt;}
.ls0_c00402{letter-spacing:0.000000pt;}
.ws0_c00402{word-spacing:0.000000pt;}
.fs3_c00402{font-size:3.072000pt;}
.fs4_c00402{font-size:12.266667pt;}
.fs0_c00402{font-size:15.360000pt;}
.fs1_c00402{font-size:18.453333pt;}
.fs5_c00402{font-size:24.586667pt;}
.fs2_c00402{font-size:39.946667pt;}
.fs6_c00402{font-size:42.986667pt;}
.y0_c00402{bottom:0.000000pt;}
.y8_c00402{bottom:614.400000pt;}
.y9_c00402{bottom:620.546667pt;}
.y7_c00402{bottom:626.693333pt;}
.y6_c00402{bottom:1045.253333pt;}
.y5_c00402{bottom:1116.666667pt;}
.y4_c00402{bottom:1119.746667pt;}
.y3_c00402{bottom:1200.386667pt;}
.y2_c00402{bottom:1201.146667pt;}
.y1_c00402{bottom:1269.506667pt;}
.h5_c00402{height:2.764500pt;}
.h6_c00402{height:11.038802pt;}
.h2_c00402{height:13.822500pt;}
.h3_c00402{height:16.606198pt;}
.h7_c00402{height:22.125599pt;}
.h4_c00402{height:35.948099pt;}
.h8_c00402{height:38.683802pt;}
.h0_c00402{height:1347.066667pt;}
.h1_c00402{height:1347.333333pt;}
.w0_c00402{width:967.680000pt;}
.w1_c00402{width:968.000000pt;}
.x0_c00402{left:0.000000pt;}
.x8_c00402{left:658.946667pt;}
.x7_c00402{left:679.680000pt;}
.x6_c00402{left:793.346667pt;}
.x4_c00402{left:833.280000pt;}
.x5_c00402{left:847.106667pt;}
.x9_c00402{left:857.853333pt;}
.x2_c00402{left:920.826667pt;}
.x3_c00402{left:934.653333pt;}
.x1_c00402{left:940.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_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_daffb46534d4e4943ce6ccb3.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:1.109863;font-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_c00403{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);}
.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:600.000000px;}
.y0_c00403{bottom:0.000000px;}
.y1_c00403{bottom:15.000000px;}
.h2_c00403{height:539.941406px;}
.h0_c00403{height:1505.955000px;}
.h1_c00403{height:1506.000000px;}
.w0_c00403{width:1100.730000px;}
.w1_c00403{width:1101.000000px;}
.x0_c00403{left:0.000000px;}
.x1_c00403{left:15.000000px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.ls0_c00403{letter-spacing:0.000000pt;}
.ws0_c00403{word-spacing:0.000000pt;}
.fs0_c00403{font-size:533.333333pt;}
.y0_c00403{bottom:0.000000pt;}
.y1_c00403{bottom:13.333333pt;}
.h2_c00403{height:479.947917pt;}
.h0_c00403{height:1338.626667pt;}
.h1_c00403{height:1338.666667pt;}
.w0_c00403{width:978.426667pt;}
.w1_c00403{width:978.666667pt;}
.x0_c00403{left:0.000000pt;}
.x1_c00403{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_594417f211d3725d4b24d8a2.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.109863;font-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_c00404{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c00404{transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);}
.m3_c00404{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);}
.m4_c00404{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.m5_c00404{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.m9_c00404{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);}
.m6_c00404{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);}
.m1_c00404{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);}
.m8_c00404{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c00404{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,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;}
.fs8_c00404{font-size:3.456000px;}
.fs9_c00404{font-size:6.900000px;}
.fs2_c00404{font-size:13.800000px;}
.fs0_c00404{font-size:24.180000px;}
.fs6_c00404{font-size:31.080000px;}
.fs1_c00404{font-size:44.940000px;}
.fsa_c00404{font-size:48.360000px;}
.fs7_c00404{font-size:55.320000px;}
.fs5_c00404{font-size:58.740000px;}
.fs4_c00404{font-size:86.400000px;}
.fs3_c00404{font-size:131.340000px;}
.y0_c00404{bottom:0.000000px;}
.yb_c00404{bottom:921.885000px;}
.ya_c00404{bottom:927.930000px;}
.y2_c00404{bottom:1322.790000px;}
.y8_c00404{bottom:1334.010000px;}
.y1_c00404{bottom:1335.750000px;}
.y9_c00404{bottom:1338.330000px;}
.y7_c00404{bottom:1348.710000px;}
.y6_c00404{bottom:1358.205000px;}
.y5_c00404{bottom:1373.760000px;}
.y4_c00404{bottom:1397.085000px;}
.y3_c00404{bottom:1432.515000px;}
.ha_c00404{height:3.110063px;}
.hb_c00404{height:6.209326px;}
.h4_c00404{height:12.418652px;}
.h2_c00404{height:21.759639px;}
.h8_c00404{height:27.968965px;}
.h3_c00404{height:40.441611px;}
.hc_c00404{height:43.519277px;}
.h9_c00404{height:49.782598px;}
.h7_c00404{height:52.860264px;}
.h6_c00404{height:77.751563px;}
.h5_c00404{height:118.193174px;}
.h0_c00404{height:1515.450000px;}
.h1_c00404{height:1515.750000px;}
.w0_c00404{width:1088.640000px;}
.w1_c00404{width:1089.000000px;}
.x0_c00404{left:0.000000px;}
.x2_c00404{left:897.690000px;}
.x1_c00404{left:912.390000px;}
.x4_c00404{left:980.640000px;}
.x3_c00404{left:982.365000px;}
.x5_c00404{left:991.005000px;}
.x6_c00404{left:1047.165000px;}
.x7_c00404{left:1060.125000px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ws0_c00404{word-spacing:0.000000pt;}
.fs8_c00404{font-size:3.072000pt;}
.fs9_c00404{font-size:6.133333pt;}
.fs2_c00404{font-size:12.266667pt;}
.fs0_c00404{font-size:21.493333pt;}
.fs6_c00404{font-size:27.626667pt;}
.fs1_c00404{font-size:39.946667pt;}
.fsa_c00404{font-size:42.986667pt;}
.fs7_c00404{font-size:49.173333pt;}
.fs5_c00404{font-size:52.213333pt;}
.fs4_c00404{font-size:76.800000pt;}
.fs3_c00404{font-size:116.746667pt;}
.y0_c00404{bottom:0.000000pt;}
.yb_c00404{bottom:819.453333pt;}
.ya_c00404{bottom:824.826667pt;}
.y2_c00404{bottom:1175.813333pt;}
.y8_c00404{bottom:1185.786667pt;}
.y1_c00404{bottom:1187.333333pt;}
.y9_c00404{bottom:1189.626667pt;}
.y7_c00404{bottom:1198.853333pt;}
.y6_c00404{bottom:1207.293333pt;}
.y5_c00404{bottom:1221.120000pt;}
.y4_c00404{bottom:1241.853333pt;}
.y3_c00404{bottom:1273.346667pt;}
.ha_c00404{height:2.764500pt;}
.hb_c00404{height:5.519401pt;}
.h4_c00404{height:11.038802pt;}
.h2_c00404{height:19.341901pt;}
.h8_c00404{height:24.861302pt;}
.h3_c00404{height:35.948099pt;}
.hc_c00404{height:38.683802pt;}
.h9_c00404{height:44.251198pt;}
.h7_c00404{height:46.986901pt;}
.h6_c00404{height:69.112500pt;}
.h5_c00404{height:105.060599pt;}
.h0_c00404{height:1347.066667pt;}
.h1_c00404{height:1347.333333pt;}
.w0_c00404{width:967.680000pt;}
.w1_c00404{width:968.000000pt;}
.x0_c00404{left:0.000000pt;}
.x2_c00404{left:797.946667pt;}
.x1_c00404{left:811.013333pt;}
.x4_c00404{left:871.680000pt;}
.x3_c00404{left:873.213333pt;}
.x5_c00404{left:880.893333pt;}
.x6_c00404{left:930.813333pt;}
.x7_c00404{left:942.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91e24ec06007b7ca2ac7062a.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:1.109863;font-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_c00405{transform:matrix(0.093375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093375,0.000000,0.000000,0.250000,0,0);}
.m3_c00405{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c00405{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m5_c00405{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00405{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1_c00405{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);}
.m0_c00405{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,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;}
.fs3_c00405{font-size:3.456000px;}
.fs5_c00405{font-size:10.380000px;}
.fs0_c00405{font-size:17.280000px;}
.fs1_c00405{font-size:24.180000px;}
.fs6_c00405{font-size:31.080000px;}
.fs2_c00405{font-size:48.360000px;}
.fs4_c00405{font-size:100.200000px;}
.y0_c00405{bottom:0.000000px;}
.y7_c00405{bottom:349.050000px;}
.y6_c00405{bottom:355.110000px;}
.y5_c00405{bottom:358.560000px;}
.y3_c00405{bottom:1314.150000px;}
.y4_c00405{bottom:1326.240000px;}
.y2_c00405{bottom:1327.965000px;}
.y1_c00405{bottom:1400.550000px;}
.h5_c00405{height:3.110063px;}
.h7_c00405{height:9.340986px;}
.h2_c00405{height:15.550313px;}
.h3_c00405{height:21.759639px;}
.h8_c00405{height:27.968965px;}
.h4_c00405{height:43.519277px;}
.h6_c00405{height:90.170215px;}
.h0_c00405{height:1505.955000px;}
.h1_c00405{height:1506.000000px;}
.w0_c00405{width:1100.730000px;}
.w1_c00405{width:1101.000000px;}
.x0_c00405{left:0.000000px;}
.x4_c00405{left:8.640000px;}
.x3_c00405{left:32.835000px;}
.x2_c00405{left:47.520000px;}
.x1_c00405{left:53.565000px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws0_c00405{word-spacing:0.000000pt;}
.fs3_c00405{font-size:3.072000pt;}
.fs5_c00405{font-size:9.226667pt;}
.fs0_c00405{font-size:15.360000pt;}
.fs1_c00405{font-size:21.493333pt;}
.fs6_c00405{font-size:27.626667pt;}
.fs2_c00405{font-size:42.986667pt;}
.fs4_c00405{font-size:89.066667pt;}
.y0_c00405{bottom:0.000000pt;}
.y7_c00405{bottom:310.266667pt;}
.y6_c00405{bottom:315.653333pt;}
.y5_c00405{bottom:318.720000pt;}
.y3_c00405{bottom:1168.133333pt;}
.y4_c00405{bottom:1178.880000pt;}
.y2_c00405{bottom:1180.413333pt;}
.y1_c00405{bottom:1244.933333pt;}
.h5_c00405{height:2.764500pt;}
.h7_c00405{height:8.303099pt;}
.h2_c00405{height:13.822500pt;}
.h3_c00405{height:19.341901pt;}
.h8_c00405{height:24.861302pt;}
.h4_c00405{height:38.683802pt;}
.h6_c00405{height:80.151302pt;}
.h0_c00405{height:1338.626667pt;}
.h1_c00405{height:1338.666667pt;}
.w0_c00405{width:978.426667pt;}
.w1_c00405{width:978.666667pt;}
.x0_c00405{left:0.000000pt;}
.x4_c00405{left:7.680000pt;}
.x3_c00405{left:29.186667pt;}
.x2_c00405{left:42.240000pt;}
.x1_c00405{left:47.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_480b918f14af41b4db268faa.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.109863;font-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_c00406{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);}
.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;}
.fs0_c00406{font-size:600.000000px;}
.y0_c00406{bottom:0.000000px;}
.y1_c00406{bottom:15.000000px;}
.h2_c00406{height:539.941406px;}
.h0_c00406{height:1515.450000px;}
.h1_c00406{height:1515.750000px;}
.w0_c00406{width:1088.640000px;}
.w1_c00406{width:1089.000000px;}
.x0_c00406{left:0.000000px;}
.x1_c00406{left:15.000000px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.ls0_c00406{letter-spacing:0.000000pt;}
.ws0_c00406{word-spacing:0.000000pt;}
.fs0_c00406{font-size:533.333333pt;}
.y0_c00406{bottom:0.000000pt;}
.y1_c00406{bottom:13.333333pt;}
.h2_c00406{height:479.947917pt;}
.h0_c00406{height:1347.066667pt;}
.h1_c00406{height:1347.333333pt;}
.w0_c00406{width:967.680000pt;}
.w1_c00406{width:968.000000pt;}
.x0_c00406{left:0.000000pt;}
.x1_c00406{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f7f4f4834deb28cbe66c5af.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:1.109863;font-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_c00407{transform:matrix(0.066925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066925,0.000000,0.000000,0.250000,0,0);}
.m18_c00407{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m19_c00407{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.m13_c00407{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m11_c00407{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m15_c00407{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.m12_c00407{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m9_c00407{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);}
.m8_c00407{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m1c_c00407{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m16_c00407{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m1a_c00407{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c00407{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00407{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);}
.m5_c00407{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);}
.mb_c00407{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c00407{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c00407{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);}
.m2_c00407{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);}
.m1e_c00407{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m14_c00407{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4_c00407{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);}
.ma_c00407{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);}
.m1b_c00407{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00407{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.me_c00407{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mc_c00407{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m0_c00407{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m7_c00407{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);}
.m6_c00407{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.md_c00407{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00407{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,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;}
.fs12_c00407{font-size:3.456000px;}
.fs5_c00407{font-size:6.900000px;}
.fs4_c00407{font-size:10.380000px;}
.fs11_c00407{font-size:17.280000px;}
.fs2_c00407{font-size:51.840000px;}
.fs0_c00407{font-size:55.320000px;}
.fs1_c00407{font-size:58.740000px;}
.fs15_c00407{font-size:65.640000px;}
.fsb_c00407{font-size:69.120000px;}
.fsa_c00407{font-size:72.600000px;}
.fs9_c00407{font-size:76.020000px;}
.fse_c00407{font-size:79.500000px;}
.fs3_c00407{font-size:82.920000px;}
.fsc_c00407{font-size:86.400000px;}
.fs7_c00407{font-size:89.880000px;}
.fs8_c00407{font-size:93.300000px;}
.fsf_c00407{font-size:100.200000px;}
.fs10_c00407{font-size:103.680000px;}
.fsd_c00407{font-size:107.160000px;}
.fs6_c00407{font-size:114.060000px;}
.fs14_c00407{font-size:117.480000px;}
.fs13_c00407{font-size:127.860000px;}
.y0_c00407{bottom:0.000000px;}
.y17_c00407{bottom:864.870000px;}
.y3_c00407{bottom:1077.405000px;}
.y4_c00407{bottom:1079.130000px;}
.y2_c00407{bottom:1080.870000px;}
.y1_c00407{bottom:1081.725000px;}
.y16_c00407{bottom:1091.235000px;}
.y13_c00407{bottom:1128.390000px;}
.y15_c00407{bottom:1130.970000px;}
.y14_c00407{bottom:1138.755000px;}
.y12_c00407{bottom:1158.630000px;}
.y11_c00407{bottom:1160.355000px;}
.y10_c00407{bottom:1194.915000px;}
.yd_c00407{bottom:1199.235000px;}
.yf_c00407{bottom:1200.090000px;}
.ye_c00407{bottom:1204.410000px;}
.ya_c00407{bottom:1229.475000px;}
.yc_c00407{bottom:1232.070000px;}
.yb_c00407{bottom:1237.245000px;}
.y5_c00407{bottom:1260.570000px;}
.y7_c00407{bottom:1264.035000px;}
.y8_c00407{bottom:1267.485000px;}
.y9_c00407{bottom:1268.355000px;}
.y6_c00407{bottom:1270.080000px;}
.h14_c00407{height:3.110063px;}
.h7_c00407{height:6.209326px;}
.h6_c00407{height:9.340986px;}
.h13_c00407{height:15.550313px;}
.h4_c00407{height:46.650937px;}
.h2_c00407{height:49.782598px;}
.h3_c00407{height:52.860264px;}
.h17_c00407{height:59.069590px;}
.hd_c00407{height:62.201250px;}
.hc_c00407{height:65.332910px;}
.hb_c00407{height:68.410576px;}
.h10_c00407{height:71.542236px;}
.h5_c00407{height:74.619902px;}
.he_c00407{height:77.751563px;}
.h9_c00407{height:80.883223px;}
.ha_c00407{height:83.960889px;}
.h11_c00407{height:90.170215px;}
.h12_c00407{height:93.301875px;}
.hf_c00407{height:96.433535px;}
.h8_c00407{height:102.642861px;}
.h16_c00407{height:105.720527px;}
.h15_c00407{height:115.061514px;}
.h0_c00407{height:1505.955000px;}
.h1_c00407{height:1506.000000px;}
.w0_c00407{width:1100.730000px;}
.w1_c00407{width:1101.000000px;}
.x0_c00407{left:0.000000px;}
.x20_c00407{left:149.475000px;}
.x1_c00407{left:316.230000px;}
.x2_c00407{left:338.685000px;}
.x3_c00407{left:362.880000px;}
.x4_c00407{left:375.840000px;}
.x5_c00407{left:397.440000px;}
.x6_c00407{left:412.995000px;}
.x7_c00407{left:444.960000px;}
.x8_c00407{left:472.605000px;}
.x9_c00407{left:478.650000px;}
.x1b_c00407{left:584.925000px;}
.x19_c00407{left:593.565000px;}
.xa_c00407{left:595.290000px;}
.x12_c00407{left:599.610000px;}
.x1a_c00407{left:603.930000px;}
.x15_c00407{left:606.525000px;}
.x13_c00407{left:610.845000px;}
.x1e_c00407{left:628.125000px;}
.xb_c00407{left:654.915000px;}
.x16_c00407{left:658.365000px;}
.x1c_c00407{left:673.050000px;}
.x17_c00407{left:684.285000px;}
.xc_c00407{left:686.010000px;}
.xd_c00407{left:720.570000px;}
.x1d_c00407{left:736.995000px;}
.xe_c00407{left:750.810000px;}
.x1f_c00407{left:763.770000px;}
.xf_c00407{left:782.790000px;}
.x14_c00407{left:795.750000px;}
.x18_c00407{left:817.350000px;}
.x10_c00407{left:832.890000px;}
.x11_c00407{left:851.040000px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ws0_c00407{word-spacing:0.000000pt;}
.fs12_c00407{font-size:3.072000pt;}
.fs5_c00407{font-size:6.133333pt;}
.fs4_c00407{font-size:9.226667pt;}
.fs11_c00407{font-size:15.360000pt;}
.fs2_c00407{font-size:46.080000pt;}
.fs0_c00407{font-size:49.173333pt;}
.fs1_c00407{font-size:52.213333pt;}
.fs15_c00407{font-size:58.346667pt;}
.fsb_c00407{font-size:61.440000pt;}
.fsa_c00407{font-size:64.533333pt;}
.fs9_c00407{font-size:67.573333pt;}
.fse_c00407{font-size:70.666667pt;}
.fs3_c00407{font-size:73.706667pt;}
.fsc_c00407{font-size:76.800000pt;}
.fs7_c00407{font-size:79.893333pt;}
.fs8_c00407{font-size:82.933333pt;}
.fsf_c00407{font-size:89.066667pt;}
.fs10_c00407{font-size:92.160000pt;}
.fsd_c00407{font-size:95.253333pt;}
.fs6_c00407{font-size:101.386667pt;}
.fs14_c00407{font-size:104.426667pt;}
.fs13_c00407{font-size:113.653333pt;}
.y0_c00407{bottom:0.000000pt;}
.y17_c00407{bottom:768.773333pt;}
.y3_c00407{bottom:957.693333pt;}
.y4_c00407{bottom:959.226667pt;}
.y2_c00407{bottom:960.773333pt;}
.y1_c00407{bottom:961.533333pt;}
.y16_c00407{bottom:969.986667pt;}
.y13_c00407{bottom:1003.013333pt;}
.y15_c00407{bottom:1005.306667pt;}
.y14_c00407{bottom:1012.226667pt;}
.y12_c00407{bottom:1029.893333pt;}
.y11_c00407{bottom:1031.426667pt;}
.y10_c00407{bottom:1062.146667pt;}
.yd_c00407{bottom:1065.986667pt;}
.yf_c00407{bottom:1066.746667pt;}
.ye_c00407{bottom:1070.586667pt;}
.ya_c00407{bottom:1092.866667pt;}
.yc_c00407{bottom:1095.173333pt;}
.yb_c00407{bottom:1099.773333pt;}
.y5_c00407{bottom:1120.506667pt;}
.y7_c00407{bottom:1123.586667pt;}
.y8_c00407{bottom:1126.653333pt;}
.y9_c00407{bottom:1127.426667pt;}
.y6_c00407{bottom:1128.960000pt;}
.h14_c00407{height:2.764500pt;}
.h7_c00407{height:5.519401pt;}
.h6_c00407{height:8.303099pt;}
.h13_c00407{height:13.822500pt;}
.h4_c00407{height:41.467500pt;}
.h2_c00407{height:44.251198pt;}
.h3_c00407{height:46.986901pt;}
.h17_c00407{height:52.506302pt;}
.hd_c00407{height:55.290000pt;}
.hc_c00407{height:58.073698pt;}
.hb_c00407{height:60.809401pt;}
.h10_c00407{height:63.593099pt;}
.h5_c00407{height:66.328802pt;}
.he_c00407{height:69.112500pt;}
.h9_c00407{height:71.896198pt;}
.ha_c00407{height:74.631901pt;}
.h11_c00407{height:80.151302pt;}
.h12_c00407{height:82.935000pt;}
.hf_c00407{height:85.718698pt;}
.h8_c00407{height:91.238099pt;}
.h16_c00407{height:93.973802pt;}
.h15_c00407{height:102.276901pt;}
.h0_c00407{height:1338.626667pt;}
.h1_c00407{height:1338.666667pt;}
.w0_c00407{width:978.426667pt;}
.w1_c00407{width:978.666667pt;}
.x0_c00407{left:0.000000pt;}
.x20_c00407{left:132.866667pt;}
.x1_c00407{left:281.093333pt;}
.x2_c00407{left:301.053333pt;}
.x3_c00407{left:322.560000pt;}
.x4_c00407{left:334.080000pt;}
.x5_c00407{left:353.280000pt;}
.x6_c00407{left:367.106667pt;}
.x7_c00407{left:395.520000pt;}
.x8_c00407{left:420.093333pt;}
.x9_c00407{left:425.466667pt;}
.x1b_c00407{left:519.933333pt;}
.x19_c00407{left:527.613333pt;}
.xa_c00407{left:529.146667pt;}
.x12_c00407{left:532.986667pt;}
.x1a_c00407{left:536.826667pt;}
.x15_c00407{left:539.133333pt;}
.x13_c00407{left:542.973333pt;}
.x1e_c00407{left:558.333333pt;}
.xb_c00407{left:582.146667pt;}
.x16_c00407{left:585.213333pt;}
.x1c_c00407{left:598.266667pt;}
.x17_c00407{left:608.253333pt;}
.xc_c00407{left:609.786667pt;}
.xd_c00407{left:640.506667pt;}
.x1d_c00407{left:655.106667pt;}
.xe_c00407{left:667.386667pt;}
.x1f_c00407{left:678.906667pt;}
.xf_c00407{left:695.813333pt;}
.x14_c00407{left:707.333333pt;}
.x18_c00407{left:726.533333pt;}
.x10_c00407{left:740.346667pt;}
.x11_c00407{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_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_9eda94906b74fec5512f08d5.woff2')format("woff");}.ff1_c00408{font-family:ff1_c00408;line-height:1.109863;font-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_c00408{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);}
.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:600.000000px;}
.y0_c00408{bottom:0.000000px;}
.y1_c00408{bottom:15.000000px;}
.h2_c00408{height:539.941406px;}
.h0_c00408{height:1515.450000px;}
.h1_c00408{height:1515.750000px;}
.w0_c00408{width:1088.640000px;}
.w1_c00408{width:1089.000000px;}
.x0_c00408{left:0.000000px;}
.x1_c00408{left:15.000000px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ws0_c00408{word-spacing:0.000000pt;}
.fs0_c00408{font-size:533.333333pt;}
.y0_c00408{bottom:0.000000pt;}
.y1_c00408{bottom:13.333333pt;}
.h2_c00408{height:479.947917pt;}
.h0_c00408{height:1347.066667pt;}
.h1_c00408{height:1347.333333pt;}
.w0_c00408{width:967.680000pt;}
.w1_c00408{width:968.000000pt;}
.x0_c00408{left:0.000000pt;}
.x1_c00408{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2e802496e912e2f721fc2ec.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:1.109863;font-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_c00409{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);}
.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;}
.fs0_c00409{font-size:600.000000px;}
.y0_c00409{bottom:0.000000px;}
.y1_c00409{bottom:15.000000px;}
.h2_c00409{height:539.941406px;}
.h0_c00409{height:1505.955000px;}
.h1_c00409{height:1506.000000px;}
.w0_c00409{width:1100.730000px;}
.w1_c00409{width:1101.000000px;}
.x0_c00409{left:0.000000px;}
.x1_c00409{left:15.000000px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls0_c00409{letter-spacing:0.000000pt;}
.ws0_c00409{word-spacing:0.000000pt;}
.fs0_c00409{font-size:533.333333pt;}
.y0_c00409{bottom:0.000000pt;}
.y1_c00409{bottom:13.333333pt;}
.h2_c00409{height:479.947917pt;}
.h0_c00409{height:1338.626667pt;}
.h1_c00409{height:1338.666667pt;}
.w0_c00409{width:978.426667pt;}
.w1_c00409{width:978.666667pt;}
.x0_c00409{left:0.000000pt;}
.x1_c00409{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e76dce5622306dbb9cff13fb.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.109863;font-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_c00410{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);}
.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;}
.fc0_c00410{color:transparent;}
.fs0_c00410{font-size:600.000000px;}
.y0_c00410{bottom:0.000000px;}
.y1_c00410{bottom:15.000000px;}
.h2_c00410{height:539.941406px;}
.h0_c00410{height:1515.450000px;}
.h1_c00410{height:1515.750000px;}
.w0_c00410{width:1088.640000px;}
.w1_c00410{width:1089.000000px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:15.000000px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls0_c00410{letter-spacing:0.000000pt;}
.ws0_c00410{word-spacing:0.000000pt;}
.fs0_c00410{font-size:533.333333pt;}
.y0_c00410{bottom:0.000000pt;}
.y1_c00410{bottom:13.333333pt;}
.h2_c00410{height:479.947917pt;}
.h0_c00410{height:1347.066667pt;}
.h1_c00410{height:1347.333333pt;}
.w0_c00410{width:967.680000pt;}
.w1_c00410{width:968.000000pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c857d702db9d0c75494ea6f0.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:1.109863;font-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_c00411{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m4_c00411{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m2_c00411{transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);}
.m0_c00411{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);}
.m1_c00411{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);}
.m5_c00411{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);}
.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;}
.fs0_c00411{font-size:17.280000px;}
.fs2_c00411{font-size:38.040000px;}
.fs3_c00411{font-size:41.460000px;}
.fs1_c00411{font-size:65.640000px;}
.y0_c00411{bottom:0.000000px;}
.y6_c00411{bottom:1227.750000px;}
.y5_c00411{bottom:1243.290000px;}
.y4_c00411{bottom:1292.550000px;}
.y3_c00411{bottom:1314.150000px;}
.y2_c00411{bottom:1335.750000px;}
.y1_c00411{bottom:1346.970000px;}
.h2_c00411{height:15.550313px;}
.h4_c00411{height:34.232285px;}
.h5_c00411{height:37.309951px;}
.h3_c00411{height:59.069590px;}
.h0_c00411{height:1505.955000px;}
.h1_c00411{height:1506.000000px;}
.w0_c00411{width:1100.730000px;}
.w1_c00411{width:1101.000000px;}
.x0_c00411{left:0.000000px;}
.x1_c00411{left:72.570000px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls0_c00411{letter-spacing:0.000000pt;}
.ws0_c00411{word-spacing:0.000000pt;}
.fs0_c00411{font-size:15.360000pt;}
.fs2_c00411{font-size:33.813333pt;}
.fs3_c00411{font-size:36.853333pt;}
.fs1_c00411{font-size:58.346667pt;}
.y0_c00411{bottom:0.000000pt;}
.y6_c00411{bottom:1091.333333pt;}
.y5_c00411{bottom:1105.146667pt;}
.y4_c00411{bottom:1148.933333pt;}
.y3_c00411{bottom:1168.133333pt;}
.y2_c00411{bottom:1187.333333pt;}
.y1_c00411{bottom:1197.306667pt;}
.h2_c00411{height:13.822500pt;}
.h4_c00411{height:30.428698pt;}
.h5_c00411{height:33.164401pt;}
.h3_c00411{height:52.506302pt;}
.h0_c00411{height:1338.626667pt;}
.h1_c00411{height:1338.666667pt;}
.w0_c00411{width:978.426667pt;}
.w1_c00411{width:978.666667pt;}
.x0_c00411{left:0.000000pt;}
.x1_c00411{left:64.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_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_9cee567ca25057579db8d707.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.109863;font-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_c00412{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);}
.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:600.000000px;}
.y0_c00412{bottom:0.000000px;}
.y1_c00412{bottom:15.000000px;}
.h2_c00412{height:539.941406px;}
.h0_c00412{height:1515.450000px;}
.h1_c00412{height:1515.750000px;}
.w0_c00412{width:1088.640000px;}
.w1_c00412{width:1089.000000px;}
.x0_c00412{left:0.000000px;}
.x1_c00412{left:15.000000px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls0_c00412{letter-spacing:0.000000pt;}
.ws0_c00412{word-spacing:0.000000pt;}
.fs0_c00412{font-size:533.333333pt;}
.y0_c00412{bottom:0.000000pt;}
.y1_c00412{bottom:13.333333pt;}
.h2_c00412{height:479.947917pt;}
.h0_c00412{height:1347.066667pt;}
.h1_c00412{height:1347.333333pt;}
.w0_c00412{width:967.680000pt;}
.w1_c00412{width:968.000000pt;}
.x0_c00412{left:0.000000pt;}
.x1_c00412{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_987764b0438b5360e6ef89e2.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:1.109863;font-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_c00413{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c00413{transform:matrix(0.032400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032400,0.000000,0.000000,0.250000,0,0);}
.m4_c00413{transform:matrix(0.058725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058725,0.000000,0.000000,0.250000,0,0);}
.m7_c00413{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.mb_c00413{transform:matrix(0.080575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080575,0.000000,0.000000,0.250000,0,0);}
.ma_c00413{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m3_c00413{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m2_c00413{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m0_c00413{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf_c00413{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);}
.mc_c00413{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m10_c00413{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m6_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8_c00413{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c00413{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c00413{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c00413{transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.255000,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;}
.fs1_c00413{font-size:3.456000px;}
.fs0_c00413{font-size:6.900000px;}
.fs2_c00413{font-size:10.380000px;}
.fsd_c00413{font-size:17.280000px;}
.fsb_c00413{font-size:20.760000px;}
.fs8_c00413{font-size:27.660000px;}
.fs3_c00413{font-size:31.080000px;}
.fs9_c00413{font-size:38.040000px;}
.fse_c00413{font-size:41.460000px;}
.fs4_c00413{font-size:44.940000px;}
.fs7_c00413{font-size:48.360000px;}
.fsc_c00413{font-size:51.840000px;}
.fs5_c00413{font-size:82.920000px;}
.fsa_c00413{font-size:96.780000px;}
.fs6_c00413{font-size:186.600000px;}
.y0_c00413{bottom:0.000000px;}
.y12_c00413{bottom:260.070000px;}
.y11_c00413{bottom:316.230000px;}
.y10_c00413{bottom:327.450000px;}
.yf_c00413{bottom:332.640000px;}
.ye_c00413{bottom:353.370000px;}
.yd_c00413{bottom:362.880000px;}
.yc_c00413{bottom:387.075000px;}
.yb_c00413{bottom:397.440000px;}
.ya_c00413{bottom:405.210000px;}
.y9_c00413{bottom:433.725000px;}
.y8_c00413{bottom:445.830000px;}
.y7_c00413{bottom:450.150000px;}
.y6_c00413{bottom:513.210000px;}
.y5_c00413{bottom:535.680000px;}
.y4_c00413{bottom:549.510000px;}
.y2_c00413{bottom:1392.765000px;}
.y1_c00413{bottom:1393.635000px;}
.y3_c00413{bottom:1394.490000px;}
.h3_c00413{height:3.110063px;}
.h2_c00413{height:6.209326px;}
.h4_c00413{height:9.340986px;}
.hf_c00413{height:15.550313px;}
.hd_c00413{height:18.681973px;}
.ha_c00413{height:24.891299px;}
.h5_c00413{height:27.968965px;}
.hb_c00413{height:34.232285px;}
.h10_c00413{height:37.309951px;}
.h6_c00413{height:40.441611px;}
.h9_c00413{height:43.519277px;}
.he_c00413{height:46.650937px;}
.h7_c00413{height:74.619902px;}
.hc_c00413{height:87.092549px;}
.h8_c00413{height:167.921777px;}
.h0_c00413{height:1505.955000px;}
.h1_c00413{height:1506.000000px;}
.w0_c00413{width:1100.730000px;}
.w1_c00413{width:1101.000000px;}
.x0_c00413{left:0.000000px;}
.x4_c00413{left:72.570000px;}
.x1_c00413{left:209.955000px;}
.x2_c00413{left:221.190000px;}
.x3_c00413{left:232.410000px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.ls0_c00413{letter-spacing:0.000000pt;}
.ws0_c00413{word-spacing:0.000000pt;}
.fs1_c00413{font-size:3.072000pt;}
.fs0_c00413{font-size:6.133333pt;}
.fs2_c00413{font-size:9.226667pt;}
.fsd_c00413{font-size:15.360000pt;}
.fsb_c00413{font-size:18.453333pt;}
.fs8_c00413{font-size:24.586667pt;}
.fs3_c00413{font-size:27.626667pt;}
.fs9_c00413{font-size:33.813333pt;}
.fse_c00413{font-size:36.853333pt;}
.fs4_c00413{font-size:39.946667pt;}
.fs7_c00413{font-size:42.986667pt;}
.fsc_c00413{font-size:46.080000pt;}
.fs5_c00413{font-size:73.706667pt;}
.fsa_c00413{font-size:86.026667pt;}
.fs6_c00413{font-size:165.866667pt;}
.y0_c00413{bottom:0.000000pt;}
.y12_c00413{bottom:231.173333pt;}
.y11_c00413{bottom:281.093333pt;}
.y10_c00413{bottom:291.066667pt;}
.yf_c00413{bottom:295.680000pt;}
.ye_c00413{bottom:314.106667pt;}
.yd_c00413{bottom:322.560000pt;}
.yc_c00413{bottom:344.066667pt;}
.yb_c00413{bottom:353.280000pt;}
.ya_c00413{bottom:360.186667pt;}
.y9_c00413{bottom:385.533333pt;}
.y8_c00413{bottom:396.293333pt;}
.y7_c00413{bottom:400.133333pt;}
.y6_c00413{bottom:456.186667pt;}
.y5_c00413{bottom:476.160000pt;}
.y4_c00413{bottom:488.453333pt;}
.y2_c00413{bottom:1238.013333pt;}
.y1_c00413{bottom:1238.786667pt;}
.y3_c00413{bottom:1239.546667pt;}
.h3_c00413{height:2.764500pt;}
.h2_c00413{height:5.519401pt;}
.h4_c00413{height:8.303099pt;}
.hf_c00413{height:13.822500pt;}
.hd_c00413{height:16.606198pt;}
.ha_c00413{height:22.125599pt;}
.h5_c00413{height:24.861302pt;}
.hb_c00413{height:30.428698pt;}
.h10_c00413{height:33.164401pt;}
.h6_c00413{height:35.948099pt;}
.h9_c00413{height:38.683802pt;}
.he_c00413{height:41.467500pt;}
.h7_c00413{height:66.328802pt;}
.hc_c00413{height:77.415599pt;}
.h8_c00413{height:149.263802pt;}
.h0_c00413{height:1338.626667pt;}
.h1_c00413{height:1338.666667pt;}
.w0_c00413{width:978.426667pt;}
.w1_c00413{width:978.666667pt;}
.x0_c00413{left:0.000000pt;}
.x4_c00413{left:64.506667pt;}
.x1_c00413{left:186.626667pt;}
.x2_c00413{left:196.613333pt;}
.x3_c00413{left:206.586667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f72ad50618eac9dc36faf18.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.109863;font-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_c00414{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);}
.v0_c00414{vertical-align:0.000000px;}
.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;}
.fc0_c00414{color:transparent;}
.fs0_c00414{font-size:600.000000px;}
.y0_c00414{bottom:0.000000px;}
.y1_c00414{bottom:15.000000px;}
.h2_c00414{height:539.941406px;}
.h0_c00414{height:1515.450000px;}
.h1_c00414{height:1515.750000px;}
.w0_c00414{width:1088.640000px;}
.w1_c00414{width:1089.000000px;}
.x0_c00414{left:0.000000px;}
.x1_c00414{left:15.000000px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls0_c00414{letter-spacing:0.000000pt;}
.ws0_c00414{word-spacing:0.000000pt;}
.fs0_c00414{font-size:533.333333pt;}
.y0_c00414{bottom:0.000000pt;}
.y1_c00414{bottom:13.333333pt;}
.h2_c00414{height:479.947917pt;}
.h0_c00414{height:1347.066667pt;}
.h1_c00414{height:1347.333333pt;}
.w0_c00414{width:967.680000pt;}
.w1_c00414{width:968.000000pt;}
.x0_c00414{left:0.000000pt;}
.x1_c00414{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e1ca2a19da6953c902a0b14.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:1.109863;font-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_c00415{transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);}
.m3_c00415{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c00415{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.mf_c00415{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m0_c00415{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.m6_c00415{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.mc_c00415{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);}
.m8_c00415{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);}
.m1_c00415{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00415{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);}
.me_c00415{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma_c00415{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00415{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);}
.md_c00415{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12_c00415{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);}
.m10_c00415{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c00415{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);}
.m7_c00415{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m11_c00415{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m14_c00415{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m2_c00415{transform:matrix(5.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.215000,0.000000,0.000000,0.250000,0,0);}
.v0_c00415{vertical-align:0.000000px;}
.v1_c00415{vertical-align:6.900000px;}
.ls1_c00415{letter-spacing:0.000000px;}
.ls0_c00415{letter-spacing:77.841480px;}
.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;}
.fs1_c00415{font-size:3.456000px;}
.fs3_c00415{font-size:6.000000px;}
.fs2_c00415{font-size:6.900000px;}
.fs4_c00415{font-size:10.380000px;}
.fsd_c00415{font-size:13.800000px;}
.fs5_c00415{font-size:17.280000px;}
.fs6_c00415{font-size:24.180000px;}
.fsb_c00415{font-size:41.460000px;}
.fsa_c00415{font-size:51.840000px;}
.fs8_c00415{font-size:55.320000px;}
.fs9_c00415{font-size:58.740000px;}
.fs7_c00415{font-size:62.220000px;}
.fsc_c00415{font-size:69.120000px;}
.fs0_c00415{font-size:103.680000px;}
.y0_c00415{bottom:0.000000px;}
.y13_c00415{bottom:755.130000px;}
.y14_c00415{bottom:758.595000px;}
.y12_c00415{bottom:908.925000px;}
.y11_c00415{bottom:1391.040000px;}
.y10_c00415{bottom:1392.765000px;}
.yd_c00415{bottom:1393.635000px;}
.yf_c00415{bottom:1394.490000px;}
.ye_c00415{bottom:1395.360000px;}
.yc_c00415{bottom:1396.230000px;}
.yb_c00415{bottom:1397.085000px;}
.y9_c00415{bottom:1417.830000px;}
.ya_c00415{bottom:1420.410000px;}
.y7_c00415{bottom:1423.005000px;}
.y8_c00415{bottom:1426.470000px;}
.y1_c00415{bottom:1429.050000px;}
.y5_c00415{bottom:1429.920000px;}
.y6_c00415{bottom:1432.515000px;}
.y4_c00415{bottom:1434.240000px;}
.y3_c00415{bottom:1437.690000px;}
.y2_c00415{bottom:1441.155000px;}
.h3_c00415{height:3.110063px;}
.h5_c00415{height:5.399414px;}
.h4_c00415{height:6.209326px;}
.h6_c00415{height:9.340986px;}
.h10_c00415{height:12.418652px;}
.h7_c00415{height:15.550313px;}
.h8_c00415{height:21.759639px;}
.he_c00415{height:37.309951px;}
.hc_c00415{height:46.650937px;}
.ha_c00415{height:49.782598px;}
.hb_c00415{height:52.860264px;}
.h9_c00415{height:55.991924px;}
.hf_c00415{height:62.201250px;}
.hd_c00415{height:62.891924px;}
.h2_c00415{height:93.301875px;}
.h0_c00415{height:1505.955000px;}
.h1_c00415{height:1506.000000px;}
.w0_c00415{width:1100.730000px;}
.w1_c00415{width:1101.000000px;}
.x0_c00415{left:0.000000px;}
.x18_c00415{left:115.770000px;}
.x19_c00415{left:119.235000px;}
.x1a_c00415{left:127.875000px;}
.xd_c00415{left:440.640000px;}
.xe_c00415{left:471.750000px;}
.xf_c00415{left:495.075000px;}
.x10_c00415{left:524.445000px;}
.x11_c00415{left:537.405000px;}
.x12_c00415{left:557.280000px;}
.x13_c00415{left:580.605000px;}
.x2_c00415{left:603.930000px;}
.x1_c00415{left:606.525000px;}
.x6_c00415{left:619.485000px;}
.x7_c00415{left:627.270000px;}
.x8_c00415{left:633.315000px;}
.x14_c00415{left:647.130000px;}
.x16_c00415{left:657.510000px;}
.x3_c00415{left:660.090000px;}
.x17_c00415{left:664.410000px;}
.x15_c00415{left:667.875000px;}
.x9_c00415{left:686.880000px;}
.x4_c00415{left:700.710000px;}
.xa_c00415{left:704.160000px;}
.x5_c00415{left:715.395408px;}
.xb_c00415{left:828.570000px;}
.xc_c00415{left:842.400000px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.v1_c00415{vertical-align:6.133333pt;}
.ls1_c00415{letter-spacing:0.000000pt;}
.ls0_c00415{letter-spacing:69.192427pt;}
.ws0_c00415{word-spacing:0.000000pt;}
.fs1_c00415{font-size:3.072000pt;}
.fs3_c00415{font-size:5.333333pt;}
.fs2_c00415{font-size:6.133333pt;}
.fs4_c00415{font-size:9.226667pt;}
.fsd_c00415{font-size:12.266667pt;}
.fs5_c00415{font-size:15.360000pt;}
.fs6_c00415{font-size:21.493333pt;}
.fsb_c00415{font-size:36.853333pt;}
.fsa_c00415{font-size:46.080000pt;}
.fs8_c00415{font-size:49.173333pt;}
.fs9_c00415{font-size:52.213333pt;}
.fs7_c00415{font-size:55.306667pt;}
.fsc_c00415{font-size:61.440000pt;}
.fs0_c00415{font-size:92.160000pt;}
.y0_c00415{bottom:0.000000pt;}
.y13_c00415{bottom:671.226667pt;}
.y14_c00415{bottom:674.306667pt;}
.y12_c00415{bottom:807.933333pt;}
.y11_c00415{bottom:1236.480000pt;}
.y10_c00415{bottom:1238.013333pt;}
.yd_c00415{bottom:1238.786667pt;}
.yf_c00415{bottom:1239.546667pt;}
.ye_c00415{bottom:1240.320000pt;}
.yc_c00415{bottom:1241.093333pt;}
.yb_c00415{bottom:1241.853333pt;}
.y9_c00415{bottom:1260.293333pt;}
.ya_c00415{bottom:1262.586667pt;}
.y7_c00415{bottom:1264.893333pt;}
.y8_c00415{bottom:1267.973333pt;}
.y1_c00415{bottom:1270.266667pt;}
.y5_c00415{bottom:1271.040000pt;}
.y6_c00415{bottom:1273.346667pt;}
.y4_c00415{bottom:1274.880000pt;}
.y3_c00415{bottom:1277.946667pt;}
.y2_c00415{bottom:1281.026667pt;}
.h3_c00415{height:2.764500pt;}
.h5_c00415{height:4.799479pt;}
.h4_c00415{height:5.519401pt;}
.h6_c00415{height:8.303099pt;}
.h10_c00415{height:11.038802pt;}
.h7_c00415{height:13.822500pt;}
.h8_c00415{height:19.341901pt;}
.he_c00415{height:33.164401pt;}
.hc_c00415{height:41.467500pt;}
.ha_c00415{height:44.251198pt;}
.hb_c00415{height:46.986901pt;}
.h9_c00415{height:49.770599pt;}
.hf_c00415{height:55.290000pt;}
.hd_c00415{height:55.903932pt;}
.h2_c00415{height:82.935000pt;}
.h0_c00415{height:1338.626667pt;}
.h1_c00415{height:1338.666667pt;}
.w0_c00415{width:978.426667pt;}
.w1_c00415{width:978.666667pt;}
.x0_c00415{left:0.000000pt;}
.x18_c00415{left:102.906667pt;}
.x19_c00415{left:105.986667pt;}
.x1a_c00415{left:113.666667pt;}
.xd_c00415{left:391.680000pt;}
.xe_c00415{left:419.333333pt;}
.xf_c00415{left:440.066667pt;}
.x10_c00415{left:466.173333pt;}
.x11_c00415{left:477.693333pt;}
.x12_c00415{left:495.360000pt;}
.x13_c00415{left:516.093333pt;}
.x2_c00415{left:536.826667pt;}
.x1_c00415{left:539.133333pt;}
.x6_c00415{left:550.653333pt;}
.x7_c00415{left:557.573333pt;}
.x8_c00415{left:562.946667pt;}
.x14_c00415{left:575.226667pt;}
.x16_c00415{left:584.453333pt;}
.x3_c00415{left:586.746667pt;}
.x17_c00415{left:590.586667pt;}
.x15_c00415{left:593.666667pt;}
.x9_c00415{left:610.560000pt;}
.x4_c00415{left:622.853333pt;}
.xa_c00415{left:625.920000pt;}
.x5_c00415{left:635.907029pt;}
.xb_c00415{left:736.506667pt;}
.xc_c00415{left:748.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_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_eb8654bbe17e31d5705f78c1.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.109863;font-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_c00416{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);}
.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;}
.fs0_c00416{font-size:600.000000px;}
.y0_c00416{bottom:0.000000px;}
.y1_c00416{bottom:15.000000px;}
.h2_c00416{height:539.941406px;}
.h0_c00416{height:1515.450000px;}
.h1_c00416{height:1515.750000px;}
.w0_c00416{width:1088.640000px;}
.w1_c00416{width:1089.000000px;}
.x0_c00416{left:0.000000px;}
.x1_c00416{left:15.000000px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ws0_c00416{word-spacing:0.000000pt;}
.fs0_c00416{font-size:533.333333pt;}
.y0_c00416{bottom:0.000000pt;}
.y1_c00416{bottom:13.333333pt;}
.h2_c00416{height:479.947917pt;}
.h0_c00416{height:1347.066667pt;}
.h1_c00416{height:1347.333333pt;}
.w0_c00416{width:967.680000pt;}
.w1_c00416{width:968.000000pt;}
.x0_c00416{left:0.000000pt;}
.x1_c00416{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4c99aee34c2ffb5ea1e892a9.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:1.109863;font-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_c00417{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);}
.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;}
.fs0_c00417{font-size:600.000000px;}
.y0_c00417{bottom:0.000000px;}
.y1_c00417{bottom:15.000000px;}
.h2_c00417{height:539.941406px;}
.h0_c00417{height:1505.955000px;}
.h1_c00417{height:1506.000000px;}
.w0_c00417{width:1100.730000px;}
.w1_c00417{width:1101.000000px;}
.x0_c00417{left:0.000000px;}
.x1_c00417{left:15.000000px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls0_c00417{letter-spacing:0.000000pt;}
.ws0_c00417{word-spacing:0.000000pt;}
.fs0_c00417{font-size:533.333333pt;}
.y0_c00417{bottom:0.000000pt;}
.y1_c00417{bottom:13.333333pt;}
.h2_c00417{height:479.947917pt;}
.h0_c00417{height:1338.626667pt;}
.h1_c00417{height:1338.666667pt;}
.w0_c00417{width:978.426667pt;}
.w1_c00417{width:978.666667pt;}
.x0_c00417{left:0.000000pt;}
.x1_c00417{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28ad8a5505034c6debd04583.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.109863;font-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_c00418{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);}
.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;}
.fc0_c00418{color:transparent;}
.fs0_c00418{font-size:600.000000px;}
.y0_c00418{bottom:0.000000px;}
.y1_c00418{bottom:15.000000px;}
.h2_c00418{height:539.941406px;}
.h0_c00418{height:1515.450000px;}
.h1_c00418{height:1515.750000px;}
.w0_c00418{width:1088.640000px;}
.w1_c00418{width:1089.000000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:15.000000px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.ls0_c00418{letter-spacing:0.000000pt;}
.ws0_c00418{word-spacing:0.000000pt;}
.fs0_c00418{font-size:533.333333pt;}
.y0_c00418{bottom:0.000000pt;}
.y1_c00418{bottom:13.333333pt;}
.h2_c00418{height:479.947917pt;}
.h0_c00418{height:1347.066667pt;}
.h1_c00418{height:1347.333333pt;}
.w0_c00418{width:967.680000pt;}
.w1_c00418{width:968.000000pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2acbceabffcb5d5a9fb42561.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:1.109863;font-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_c00419{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m19_c00419{transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);}
.m21_c00419{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00419{transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);}
.m2c_c00419{transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);}
.m1a_c00419{transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);}
.m35_c00419{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);}
.m2e_c00419{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m2b_c00419{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.md_c00419{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);}
.m26_c00419{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m15_c00419{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);}
.m30_c00419{transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);}
.m2d_c00419{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.mc_c00419{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m25_c00419{transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);}
.m23_c00419{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m2a_c00419{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);}
.m12_c00419{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);}
.m2_c00419{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00419{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);}
.m1f_c00419{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);}
.m24_c00419{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m16_c00419{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00419{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m38_c00419{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m20_c00419{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);}
.m34_c00419{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c00419{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);}
.m4_c00419{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m33_c00419{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);}
.m10_c00419{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);}
.m8_c00419{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);}
.m32_c00419{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mb_c00419{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9_c00419{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);}
.m14_c00419{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m18_c00419{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);}
.me_c00419{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6_c00419{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m29_c00419{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.ma_c00419{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m28_c00419{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m13_c00419{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5_c00419{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3_c00419{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00419{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m37_c00419{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m22_c00419{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m36_c00419{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m7_c00419{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mf_c00419{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m31_c00419{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);}
.m27_c00419{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1_c00419{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m0_c00419{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00419{transform:matrix(2.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.460000,0.000000,0.000000,0.250000,0,0);}
.v1_c00419{vertical-align:-10.380000px;}
.v0_c00419{vertical-align:0.000000px;}
.ls1_c00419{letter-spacing:0.000000px;}
.ls0_c00419{letter-spacing:94.275500px;}
.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;}
.fs1_c00419{font-size:3.456000px;}
.fs13_c00419{font-size:6.000000px;}
.fs6_c00419{font-size:6.900000px;}
.fsd_c00419{font-size:10.380000px;}
.fs14_c00419{font-size:13.800000px;}
.fs1a_c00419{font-size:17.280000px;}
.fs12_c00419{font-size:24.180000px;}
.fs0_c00419{font-size:27.660000px;}
.fs1b_c00419{font-size:38.040000px;}
.fs4_c00419{font-size:51.840000px;}
.fs5_c00419{font-size:55.320000px;}
.fs2_c00419{font-size:58.740000px;}
.fs3_c00419{font-size:62.220000px;}
.fs7_c00419{font-size:65.640000px;}
.fsa_c00419{font-size:69.120000px;}
.fs8_c00419{font-size:72.600000px;}
.fs9_c00419{font-size:76.020000px;}
.fs16_c00419{font-size:79.500000px;}
.fsb_c00419{font-size:86.400000px;}
.fs17_c00419{font-size:89.880000px;}
.fs15_c00419{font-size:96.780000px;}
.fse_c00419{font-size:103.680000px;}
.fsc_c00419{font-size:107.160000px;}
.fs10_c00419{font-size:110.580000px;}
.fs11_c00419{font-size:114.060000px;}
.fsf_c00419{font-size:117.480000px;}
.fs19_c00419{font-size:120.960000px;}
.fs18_c00419{font-size:138.240000px;}
.y0_c00419{bottom:0.000000px;}
.y2a_c00419{bottom:1141.350000px;}
.y29_c00419{bottom:1146.525000px;}
.y28_c00419{bottom:1147.395000px;}
.y27_c00419{bottom:1148.250000px;}
.y2e_c00419{bottom:1149.120000px;}
.y2f_c00419{bottom:1149.990000px;}
.y2b_c00419{bottom:1151.715000px;}
.y30_c00419{bottom:1156.035000px;}
.y2d_c00419{bottom:1165.530000px;}
.y2c_c00419{bottom:1168.125000px;}
.y1a_c00419{bottom:1182.810000px;}
.y1b_c00419{bottom:1183.680000px;}
.y17_c00419{bottom:1186.275000px;}
.y18_c00419{bottom:1188.870000px;}
.y19_c00419{bottom:1189.725000px;}
.y1c_c00419{bottom:1190.595000px;}
.y14_c00419{bottom:1193.190000px;}
.y12_c00419{bottom:1194.045000px;}
.y13_c00419{bottom:1201.830000px;}
.y16_c00419{bottom:1205.280000px;}
.y26_c00419{bottom:1216.515000px;}
.y25_c00419{bottom:1217.370000px;}
.y15_c00419{bottom:1220.835000px;}
.y11_c00419{bottom:1221.690000px;}
.y10_c00419{bottom:1223.430000px;}
.yd_c00419{bottom:1225.155000px;}
.ye_c00419{bottom:1228.605000px;}
.yf_c00419{bottom:1229.475000px;}
.y24_c00419{bottom:1259.715000px;}
.y23_c00419{bottom:1260.570000px;}
.yb_c00419{bottom:1261.440000px;}
.yc_c00419{bottom:1262.310000px;}
.y9_c00419{bottom:1263.165000px;}
.ya_c00419{bottom:1264.035000px;}
.y22_c00419{bottom:1305.510000px;}
.y21_c00419{bottom:1309.830000px;}
.y20_c00419{bottom:1310.685000px;}
.y1f_c00419{bottom:1333.155000px;}
.y1e_c00419{bottom:1335.750000px;}
.y1d_c00419{bottom:1367.715000px;}
.y8_c00419{bottom:1395.360000px;}
.y7_c00419{bottom:1397.085000px;}
.y4_c00419{bottom:1397.955000px;}
.y6_c00419{bottom:1398.810000px;}
.y3_c00419{bottom:1399.680000px;}
.y5_c00419{bottom:1400.550000px;}
.y1_c00419{bottom:1408.320000px;}
.y2_c00419{bottom:1417.830000px;}
.h3_c00419{height:3.110063px;}
.h15_c00419{height:5.399414px;}
.h8_c00419{height:6.209326px;}
.hf_c00419{height:9.340986px;}
.h16_c00419{height:12.418652px;}
.h14_c00419{height:21.759639px;}
.h2_c00419{height:24.891299px;}
.h1c_c00419{height:34.232285px;}
.h6_c00419{height:46.650937px;}
.h7_c00419{height:49.782598px;}
.h4_c00419{height:52.860264px;}
.h5_c00419{height:55.991924px;}
.h9_c00419{height:59.069590px;}
.hc_c00419{height:62.201250px;}
.ha_c00419{height:65.332910px;}
.hb_c00419{height:68.410576px;}
.h18_c00419{height:71.542236px;}
.hd_c00419{height:77.751563px;}
.h19_c00419{height:80.883223px;}
.h17_c00419{height:87.092549px;}
.h10_c00419{height:93.301875px;}
.he_c00419{height:96.433535px;}
.h12_c00419{height:99.511201px;}
.h13_c00419{height:102.642861px;}
.h11_c00419{height:105.720527px;}
.h1b_c00419{height:108.852188px;}
.h1a_c00419{height:124.402500px;}
.h0_c00419{height:1505.955000px;}
.h1_c00419{height:1506.000000px;}
.w0_c00419{width:1100.730000px;}
.w1_c00419{width:1101.000000px;}
.x0_c00419{left:0.000000px;}
.x1_c00419{left:20.730000px;}
.xf_c00419{left:247.965000px;}
.x26_c00419{left:249.690000px;}
.x16_c00419{left:274.755000px;}
.x20_c00419{left:289.440000px;}
.x21_c00419{left:298.080000px;}
.x28_c00419{left:299.805000px;}
.x33_c00419{left:324.870000px;}
.x22_c00419{left:338.685000px;}
.x1c_c00419{left:342.150000px;}
.x34_c00419{left:346.470000px;}
.x23_c00419{left:351.645000px;}
.x17_c00419{left:353.370000px;}
.x10_c00419{left:360.285000px;}
.x35_c00419{left:370.650000px;}
.x11_c00419{left:383.610000px;}
.x18_c00419{left:389.670000px;}
.x19_c00419{left:396.570000px;}
.x36_c00419{left:406.080000px;}
.x12_c00419{left:418.170000px;}
.x37_c00419{left:422.490000px;}
.x1d_c00419{left:430.275000px;}
.x13_c00419{left:438.915000px;}
.x3_c00419{left:441.510000px;}
.x1a_c00419{left:447.555000px;}
.x38_c00419{left:460.515000px;}
.x4_c00419{left:470.010000px;}
.x14_c00419{left:480.390000px;}
.x5_c00419{left:496.800000px;}
.x1e_c00419{left:498.525000px;}
.x1b_c00419{left:508.890000px;}
.x6_c00419{left:527.040000px;}
.x15_c00419{left:529.635000px;}
.x7_c00419{left:548.640000px;}
.x2_c00419{left:557.280000px;}
.x25_c00419{left:562.470000px;}
.x1f_c00419{left:566.790000px;}
.x8_c00419{left:571.965000px;}
.x24_c00419{left:573.690000px;}
.x9_c00419{left:589.245000px;}
.x29_c00419{left:600.480000px;}
.x27_c00419{left:603.075000px;}
.xa_c00419{left:609.120000px;}
.xb_c00419{left:621.210000px;}
.x31_c00419{left:628.995000px;}
.x2e_c00419{left:633.315000px;}
.x3b_c00419{left:635.040000px;}
.xc_c00419{left:640.230000px;}
.xd_c00419{left:654.915000px;}
.x32_c00419{left:656.640000px;}
.x2a_c00419{left:670.470000px;}
.xe_c00419{left:672.195000px;}
.x39_c00419{left:679.110000px;}
.x3a_c00419{left:701.565000px;}
.x2b_c00419{left:711.930000px;}
.x3c_c00419{left:768.090000px;}
.x2c_c00419{left:784.515000px;}
.x3d_c00419{left:802.650000px;}
.x2f_c00419{left:819.930000px;}
.x2d_c00419{left:833.760000px;}
.x30_c00419{left:859.680000px;}
.x3e_c00419{left:918.435000px;}
@media print{
.v1_c00419{vertical-align:-9.226667pt;}
.v0_c00419{vertical-align:0.000000pt;}
.ls1_c00419{letter-spacing:0.000000pt;}
.ls0_c00419{letter-spacing:83.800444pt;}
.ws0_c00419{word-spacing:0.000000pt;}
.fs1_c00419{font-size:3.072000pt;}
.fs13_c00419{font-size:5.333333pt;}
.fs6_c00419{font-size:6.133333pt;}
.fsd_c00419{font-size:9.226667pt;}
.fs14_c00419{font-size:12.266667pt;}
.fs1a_c00419{font-size:15.360000pt;}
.fs12_c00419{font-size:21.493333pt;}
.fs0_c00419{font-size:24.586667pt;}
.fs1b_c00419{font-size:33.813333pt;}
.fs4_c00419{font-size:46.080000pt;}
.fs5_c00419{font-size:49.173333pt;}
.fs2_c00419{font-size:52.213333pt;}
.fs3_c00419{font-size:55.306667pt;}
.fs7_c00419{font-size:58.346667pt;}
.fsa_c00419{font-size:61.440000pt;}
.fs8_c00419{font-size:64.533333pt;}
.fs9_c00419{font-size:67.573333pt;}
.fs16_c00419{font-size:70.666667pt;}
.fsb_c00419{font-size:76.800000pt;}
.fs17_c00419{font-size:79.893333pt;}
.fs15_c00419{font-size:86.026667pt;}
.fse_c00419{font-size:92.160000pt;}
.fsc_c00419{font-size:95.253333pt;}
.fs10_c00419{font-size:98.293333pt;}
.fs11_c00419{font-size:101.386667pt;}
.fsf_c00419{font-size:104.426667pt;}
.fs19_c00419{font-size:107.520000pt;}
.fs18_c00419{font-size:122.880000pt;}
.y0_c00419{bottom:0.000000pt;}
.y2a_c00419{bottom:1014.533333pt;}
.y29_c00419{bottom:1019.133333pt;}
.y28_c00419{bottom:1019.906667pt;}
.y27_c00419{bottom:1020.666667pt;}
.y2e_c00419{bottom:1021.440000pt;}
.y2f_c00419{bottom:1022.213333pt;}
.y2b_c00419{bottom:1023.746667pt;}
.y30_c00419{bottom:1027.586667pt;}
.y2d_c00419{bottom:1036.026667pt;}
.y2c_c00419{bottom:1038.333333pt;}
.y1a_c00419{bottom:1051.386667pt;}
.y1b_c00419{bottom:1052.160000pt;}
.y17_c00419{bottom:1054.466667pt;}
.y18_c00419{bottom:1056.773333pt;}
.y19_c00419{bottom:1057.533333pt;}
.y1c_c00419{bottom:1058.306667pt;}
.y14_c00419{bottom:1060.613333pt;}
.y12_c00419{bottom:1061.373333pt;}
.y13_c00419{bottom:1068.293333pt;}
.y16_c00419{bottom:1071.360000pt;}
.y26_c00419{bottom:1081.346667pt;}
.y25_c00419{bottom:1082.106667pt;}
.y15_c00419{bottom:1085.186667pt;}
.y11_c00419{bottom:1085.946667pt;}
.y10_c00419{bottom:1087.493333pt;}
.yd_c00419{bottom:1089.026667pt;}
.ye_c00419{bottom:1092.093333pt;}
.yf_c00419{bottom:1092.866667pt;}
.y24_c00419{bottom:1119.746667pt;}
.y23_c00419{bottom:1120.506667pt;}
.yb_c00419{bottom:1121.280000pt;}
.yc_c00419{bottom:1122.053333pt;}
.y9_c00419{bottom:1122.813333pt;}
.ya_c00419{bottom:1123.586667pt;}
.y22_c00419{bottom:1160.453333pt;}
.y21_c00419{bottom:1164.293333pt;}
.y20_c00419{bottom:1165.053333pt;}
.y1f_c00419{bottom:1185.026667pt;}
.y1e_c00419{bottom:1187.333333pt;}
.y1d_c00419{bottom:1215.746667pt;}
.y8_c00419{bottom:1240.320000pt;}
.y7_c00419{bottom:1241.853333pt;}
.y4_c00419{bottom:1242.626667pt;}
.y6_c00419{bottom:1243.386667pt;}
.y3_c00419{bottom:1244.160000pt;}
.y5_c00419{bottom:1244.933333pt;}
.y1_c00419{bottom:1251.840000pt;}
.y2_c00419{bottom:1260.293333pt;}
.h3_c00419{height:2.764500pt;}
.h15_c00419{height:4.799479pt;}
.h8_c00419{height:5.519401pt;}
.hf_c00419{height:8.303099pt;}
.h16_c00419{height:11.038802pt;}
.h14_c00419{height:19.341901pt;}
.h2_c00419{height:22.125599pt;}
.h1c_c00419{height:30.428698pt;}
.h6_c00419{height:41.467500pt;}
.h7_c00419{height:44.251198pt;}
.h4_c00419{height:46.986901pt;}
.h5_c00419{height:49.770599pt;}
.h9_c00419{height:52.506302pt;}
.hc_c00419{height:55.290000pt;}
.ha_c00419{height:58.073698pt;}
.hb_c00419{height:60.809401pt;}
.h18_c00419{height:63.593099pt;}
.hd_c00419{height:69.112500pt;}
.h19_c00419{height:71.896198pt;}
.h17_c00419{height:77.415599pt;}
.h10_c00419{height:82.935000pt;}
.he_c00419{height:85.718698pt;}
.h12_c00419{height:88.454401pt;}
.h13_c00419{height:91.238099pt;}
.h11_c00419{height:93.973802pt;}
.h1b_c00419{height:96.757500pt;}
.h1a_c00419{height:110.580000pt;}
.h0_c00419{height:1338.626667pt;}
.h1_c00419{height:1338.666667pt;}
.w0_c00419{width:978.426667pt;}
.w1_c00419{width:978.666667pt;}
.x0_c00419{left:0.000000pt;}
.x1_c00419{left:18.426667pt;}
.xf_c00419{left:220.413333pt;}
.x26_c00419{left:221.946667pt;}
.x16_c00419{left:244.226667pt;}
.x20_c00419{left:257.280000pt;}
.x21_c00419{left:264.960000pt;}
.x28_c00419{left:266.493333pt;}
.x33_c00419{left:288.773333pt;}
.x22_c00419{left:301.053333pt;}
.x1c_c00419{left:304.133333pt;}
.x34_c00419{left:307.973333pt;}
.x23_c00419{left:312.573333pt;}
.x17_c00419{left:314.106667pt;}
.x10_c00419{left:320.253333pt;}
.x35_c00419{left:329.466667pt;}
.x11_c00419{left:340.986667pt;}
.x18_c00419{left:346.373333pt;}
.x19_c00419{left:352.506667pt;}
.x36_c00419{left:360.960000pt;}
.x12_c00419{left:371.706667pt;}
.x37_c00419{left:375.546667pt;}
.x1d_c00419{left:382.466667pt;}
.x13_c00419{left:390.146667pt;}
.x3_c00419{left:392.453333pt;}
.x1a_c00419{left:397.826667pt;}
.x38_c00419{left:409.346667pt;}
.x4_c00419{left:417.786667pt;}
.x14_c00419{left:427.013333pt;}
.x5_c00419{left:441.600000pt;}
.x1e_c00419{left:443.133333pt;}
.x1b_c00419{left:452.346667pt;}
.x6_c00419{left:468.480000pt;}
.x15_c00419{left:470.786667pt;}
.x7_c00419{left:487.680000pt;}
.x2_c00419{left:495.360000pt;}
.x25_c00419{left:499.973333pt;}
.x1f_c00419{left:503.813333pt;}
.x8_c00419{left:508.413333pt;}
.x24_c00419{left:509.946667pt;}
.x9_c00419{left:523.773333pt;}
.x29_c00419{left:533.760000pt;}
.x27_c00419{left:536.066667pt;}
.xa_c00419{left:541.440000pt;}
.xb_c00419{left:552.186667pt;}
.x31_c00419{left:559.106667pt;}
.x2e_c00419{left:562.946667pt;}
.x3b_c00419{left:564.480000pt;}
.xc_c00419{left:569.093333pt;}
.xd_c00419{left:582.146667pt;}
.x32_c00419{left:583.680000pt;}
.x2a_c00419{left:595.973333pt;}
.xe_c00419{left:597.506667pt;}
.x39_c00419{left:603.653333pt;}
.x3a_c00419{left:623.613333pt;}
.x2b_c00419{left:632.826667pt;}
.x3c_c00419{left:682.746667pt;}
.x2c_c00419{left:697.346667pt;}
.x3d_c00419{left:713.466667pt;}
.x2f_c00419{left:728.826667pt;}
.x2d_c00419{left:741.120000pt;}
.x30_c00419{left:764.160000pt;}
.x3e_c00419{left:816.386667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51fe2591336f0978a1dcad1a.woff2')format("woff");}.ff1_c00420{font-family:ff1_c00420;line-height:1.109863;font-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_c00420{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);}
.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;}
.fs0_c00420{font-size:600.000000px;}
.y0_c00420{bottom:0.000000px;}
.y1_c00420{bottom:15.000000px;}
.h2_c00420{height:539.941406px;}
.h0_c00420{height:1515.450000px;}
.h1_c00420{height:1515.750000px;}
.w0_c00420{width:1088.640000px;}
.w1_c00420{width:1089.000000px;}
.x0_c00420{left:0.000000px;}
.x1_c00420{left:15.000000px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.ls0_c00420{letter-spacing:0.000000pt;}
.ws0_c00420{word-spacing:0.000000pt;}
.fs0_c00420{font-size:533.333333pt;}
.y0_c00420{bottom:0.000000pt;}
.y1_c00420{bottom:13.333333pt;}
.h2_c00420{height:479.947917pt;}
.h0_c00420{height:1347.066667pt;}
.h1_c00420{height:1347.333333pt;}
.w0_c00420{width:967.680000pt;}
.w1_c00420{width:968.000000pt;}
.x0_c00420{left:0.000000pt;}
.x1_c00420{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9dcde26a8965ea0986553ce1.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:1.109863;font-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_c00421{transform:matrix(0.010875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.010875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.010875,0.000000,0.000000,0.250000,0,0);}
.m2_c00421{transform:matrix(0.040175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040175,0.000000,0.000000,0.250000,0,0);}
.m3_c00421{transform:matrix(0.105025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105025,0.000000,0.000000,0.250000,0,0);}
.m1_c00421{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c00421{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);}
.m4_c00421{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.m0_c00421{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,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;}
.fs1_c00421{font-size:6.000000px;}
.fs0_c00421{font-size:34.560000px;}
.fs2_c00421{font-size:55.320000px;}
.fs5_c00421{font-size:62.220000px;}
.fs4_c00421{font-size:65.640000px;}
.fs6_c00421{font-size:79.500000px;}
.fs3_c00421{font-size:86.400000px;}
.y0_c00421{bottom:0.000000px;}
.y7_c00421{bottom:447.555000px;}
.y6_c00421{bottom:468.285000px;}
.y5_c00421{bottom:484.710000px;}
.y4_c00421{bottom:504.570000px;}
.y3_c00421{bottom:527.040000px;}
.y1_c00421{bottom:541.725000px;}
.y2_c00421{bottom:542.595000px;}
.h3_c00421{height:5.399414px;}
.h2_c00421{height:31.100625px;}
.h4_c00421{height:49.782598px;}
.h7_c00421{height:55.991924px;}
.h6_c00421{height:59.069590px;}
.h8_c00421{height:71.542236px;}
.h5_c00421{height:77.751563px;}
.h0_c00421{height:1505.955000px;}
.h1_c00421{height:1506.000000px;}
.w0_c00421{width:1100.730000px;}
.w1_c00421{width:1101.000000px;}
.x0_c00421{left:0.000000px;}
.x1_c00421{left:22.470000px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ws0_c00421{word-spacing:0.000000pt;}
.fs1_c00421{font-size:5.333333pt;}
.fs0_c00421{font-size:30.720000pt;}
.fs2_c00421{font-size:49.173333pt;}
.fs5_c00421{font-size:55.306667pt;}
.fs4_c00421{font-size:58.346667pt;}
.fs6_c00421{font-size:70.666667pt;}
.fs3_c00421{font-size:76.800000pt;}
.y0_c00421{bottom:0.000000pt;}
.y7_c00421{bottom:397.826667pt;}
.y6_c00421{bottom:416.253333pt;}
.y5_c00421{bottom:430.853333pt;}
.y4_c00421{bottom:448.506667pt;}
.y3_c00421{bottom:468.480000pt;}
.y1_c00421{bottom:481.533333pt;}
.y2_c00421{bottom:482.306667pt;}
.h3_c00421{height:4.799479pt;}
.h2_c00421{height:27.645000pt;}
.h4_c00421{height:44.251198pt;}
.h7_c00421{height:49.770599pt;}
.h6_c00421{height:52.506302pt;}
.h8_c00421{height:63.593099pt;}
.h5_c00421{height:69.112500pt;}
.h0_c00421{height:1338.626667pt;}
.h1_c00421{height:1338.666667pt;}
.w0_c00421{width:978.426667pt;}
.w1_c00421{width:978.666667pt;}
.x0_c00421{left:0.000000pt;}
.x1_c00421{left:19.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_180f9d046aabdc250914ab69.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.109863;font-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_c00422{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);}
.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;}
.fs0_c00422{font-size:600.000000px;}
.y0_c00422{bottom:0.000000px;}
.y1_c00422{bottom:15.000000px;}
.h2_c00422{height:539.941406px;}
.h0_c00422{height:1515.450000px;}
.h1_c00422{height:1515.750000px;}
.w0_c00422{width:1079.130000px;}
.w1_c00422{width:1079.250000px;}
.x0_c00422{left:0.000000px;}
.x1_c00422{left:15.000000px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.ws0_c00422{word-spacing:0.000000pt;}
.fs0_c00422{font-size:533.333333pt;}
.y0_c00422{bottom:0.000000pt;}
.y1_c00422{bottom:13.333333pt;}
.h2_c00422{height:479.947917pt;}
.h0_c00422{height:1347.066667pt;}
.h1_c00422{height:1347.333333pt;}
.w0_c00422{width:959.226667pt;}
.w1_c00422{width:959.333333pt;}
.x0_c00422{left:0.000000pt;}
.x1_c00422{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e77b9364466a0d0768914757.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:1.109863;font-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_c00423{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);}
.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;}
.fs0_c00423{font-size:600.000000px;}
.y0_c00423{bottom:0.000000px;}
.y1_c00423{bottom:15.000000px;}
.h2_c00423{height:539.941406px;}
.h0_c00423{height:1505.955000px;}
.h1_c00423{height:1506.000000px;}
.w1_c00423{width:1086.750000px;}
.w0_c00423{width:1086.915000px;}
.x0_c00423{left:0.000000px;}
.x1_c00423{left:15.000000px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls0_c00423{letter-spacing:0.000000pt;}
.ws0_c00423{word-spacing:0.000000pt;}
.fs0_c00423{font-size:533.333333pt;}
.y0_c00423{bottom:0.000000pt;}
.y1_c00423{bottom:13.333333pt;}
.h2_c00423{height:479.947917pt;}
.h0_c00423{height:1338.626667pt;}
.h1_c00423{height:1338.666667pt;}
.w1_c00423{width:966.000000pt;}
.w0_c00423{width:966.146667pt;}
.x0_c00423{left:0.000000pt;}
.x1_c00423{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_034b71eeba32bb22e0e2d324.woff2')format("woff");}.ff1_c00424{font-family:ff1_c00424;line-height:1.109863;font-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_c00424{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c00424{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m9_c00424{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00424{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);}
.m5_c00424{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);}
.m1_c00424{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00424{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00424{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c00424{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m0_c00424{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,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;}
.fs5_c00424{font-size:3.456000px;}
.fs9_c00424{font-size:6.000000px;}
.fs8_c00424{font-size:10.380000px;}
.fs1_c00424{font-size:17.280000px;}
.fs2_c00424{font-size:24.180000px;}
.fs6_c00424{font-size:27.660000px;}
.fs7_c00424{font-size:34.560000px;}
.fs4_c00424{font-size:41.460000px;}
.fs3_c00424{font-size:62.220000px;}
.fs0_c00424{font-size:89.880000px;}
.y0_c00424{bottom:0.000000px;}
.yc_c00424{bottom:1340.925000px;}
.yb_c00424{bottom:1343.520000px;}
.y4_c00424{bottom:1358.205000px;}
.y5_c00424{bottom:1361.670000px;}
.y3_c00424{bottom:1377.210000px;}
.y9_c00424{bottom:1382.400000px;}
.ya_c00424{bottom:1383.270000px;}
.y8_c00424{bottom:1390.170000px;}
.y7_c00424{bottom:1400.550000px;}
.y6_c00424{bottom:1405.725000px;}
.y2_c00424{bottom:1429.050000px;}
.y1_c00424{bottom:1435.110000px;}
.h7_c00424{height:3.110063px;}
.hb_c00424{height:5.399414px;}
.ha_c00424{height:9.340986px;}
.h3_c00424{height:15.550313px;}
.h4_c00424{height:21.759639px;}
.h8_c00424{height:24.891299px;}
.h9_c00424{height:31.100625px;}
.h6_c00424{height:37.309951px;}
.h5_c00424{height:55.991924px;}
.h2_c00424{height:80.883223px;}
.h0_c00424{height:1515.450000px;}
.h1_c00424{height:1515.750000px;}
.w0_c00424{width:1079.130000px;}
.w1_c00424{width:1079.250000px;}
.x0_c00424{left:0.000000px;}
.x1_c00424{left:420.765000px;}
.x2_c00424{left:538.275000px;}
.x4_c00424{left:967.680000px;}
.x3_c00424{left:973.725000px;}
.x5_c00424{left:983.235000px;}
.xb_c00424{left:1007.430000px;}
.x9_c00424{left:1015.200000px;}
.xc_c00424{left:1016.925000px;}
.x8_c00424{left:1033.350000px;}
.xa_c00424{left:1035.930000px;}
.x6_c00424{left:1044.570000px;}
.x7_c00424{left:1052.355000px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls0_c00424{letter-spacing:0.000000pt;}
.ws0_c00424{word-spacing:0.000000pt;}
.fs5_c00424{font-size:3.072000pt;}
.fs9_c00424{font-size:5.333333pt;}
.fs8_c00424{font-size:9.226667pt;}
.fs1_c00424{font-size:15.360000pt;}
.fs2_c00424{font-size:21.493333pt;}
.fs6_c00424{font-size:24.586667pt;}
.fs7_c00424{font-size:30.720000pt;}
.fs4_c00424{font-size:36.853333pt;}
.fs3_c00424{font-size:55.306667pt;}
.fs0_c00424{font-size:79.893333pt;}
.y0_c00424{bottom:0.000000pt;}
.yc_c00424{bottom:1191.933333pt;}
.yb_c00424{bottom:1194.240000pt;}
.y4_c00424{bottom:1207.293333pt;}
.y5_c00424{bottom:1210.373333pt;}
.y3_c00424{bottom:1224.186667pt;}
.y9_c00424{bottom:1228.800000pt;}
.ya_c00424{bottom:1229.573333pt;}
.y8_c00424{bottom:1235.706667pt;}
.y7_c00424{bottom:1244.933333pt;}
.y6_c00424{bottom:1249.533333pt;}
.y2_c00424{bottom:1270.266667pt;}
.y1_c00424{bottom:1275.653333pt;}
.h7_c00424{height:2.764500pt;}
.hb_c00424{height:4.799479pt;}
.ha_c00424{height:8.303099pt;}
.h3_c00424{height:13.822500pt;}
.h4_c00424{height:19.341901pt;}
.h8_c00424{height:22.125599pt;}
.h9_c00424{height:27.645000pt;}
.h6_c00424{height:33.164401pt;}
.h5_c00424{height:49.770599pt;}
.h2_c00424{height:71.896198pt;}
.h0_c00424{height:1347.066667pt;}
.h1_c00424{height:1347.333333pt;}
.w0_c00424{width:959.226667pt;}
.w1_c00424{width:959.333333pt;}
.x0_c00424{left:0.000000pt;}
.x1_c00424{left:374.013333pt;}
.x2_c00424{left:478.466667pt;}
.x4_c00424{left:860.160000pt;}
.x3_c00424{left:865.533333pt;}
.x5_c00424{left:873.986667pt;}
.xb_c00424{left:895.493333pt;}
.x9_c00424{left:902.400000pt;}
.xc_c00424{left:903.933333pt;}
.x8_c00424{left:918.533333pt;}
.xa_c00424{left:920.826667pt;}
.x6_c00424{left:928.506667pt;}
.x7_c00424{left:935.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b25bd9236c1addca47273bb.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:1.109863;font-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_c00425{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);}
.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;}
.fs0_c00425{font-size:600.000000px;}
.y0_c00425{bottom:0.000000px;}
.y1_c00425{bottom:15.000000px;}
.h2_c00425{height:539.941406px;}
.h0_c00425{height:1505.955000px;}
.h1_c00425{height:1506.000000px;}
.w1_c00425{width:1086.750000px;}
.w0_c00425{width:1086.915000px;}
.x0_c00425{left:0.000000px;}
.x1_c00425{left:15.000000px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ws0_c00425{word-spacing:0.000000pt;}
.fs0_c00425{font-size:533.333333pt;}
.y0_c00425{bottom:0.000000pt;}
.y1_c00425{bottom:13.333333pt;}
.h2_c00425{height:479.947917pt;}
.h0_c00425{height:1338.626667pt;}
.h1_c00425{height:1338.666667pt;}
.w1_c00425{width:966.000000pt;}
.w0_c00425{width:966.146667pt;}
.x0_c00425{left:0.000000pt;}
.x1_c00425{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3f1c64deb244875bab43356d.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.109863;font-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_c00426{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb_c00426{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);}
.m5_c00426{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c00426{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mc_c00426{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);}
.md_c00426{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c00426{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00426{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c00426{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);}
.m4_c00426{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m9_c00426{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.ma_c00426{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m2_c00426{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3_c00426{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.v1_c00426{vertical-align:-3.420000px;}
.v0_c00426{vertical-align:0.000000px;}
.ls1_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:4.903152px;}
.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;}
.fc0_c00426{color:transparent;}
.fs1_c00426{font-size:3.456000px;}
.fs5_c00426{font-size:6.000000px;}
.fs2_c00426{font-size:6.900000px;}
.fs7_c00426{font-size:10.380000px;}
.fs6_c00426{font-size:13.800000px;}
.fs0_c00426{font-size:24.180000px;}
.fsb_c00426{font-size:27.660000px;}
.fs4_c00426{font-size:31.080000px;}
.fs8_c00426{font-size:34.560000px;}
.fsa_c00426{font-size:38.040000px;}
.fs9_c00426{font-size:89.880000px;}
.fs3_c00426{font-size:96.780000px;}
.y0_c00426{bottom:0.000000px;}
.y11_c00426{bottom:301.530000px;}
.y10_c00426{bottom:1104.195000px;}
.yf_c00426{bottom:1105.920000px;}
.yb_c00426{bottom:1225.155000px;}
.ye_c00426{bottom:1264.890000px;}
.yd_c00426{bottom:1303.770000px;}
.yc_c00426{bottom:1313.280000px;}
.y1_c00426{bottom:1365.990000px;}
.ya_c00426{bottom:1413.510000px;}
.y3_c00426{bottom:1416.960000px;}
.y2_c00426{bottom:1418.685000px;}
.y5_c00426{bottom:1420.410000px;}
.y9_c00426{bottom:1422.150000px;}
.y7_c00426{bottom:1424.730000px;}
.y8_c00426{bottom:1426.470000px;}
.y6_c00426{bottom:1428.195000px;}
.y4_c00426{bottom:1430.790000px;}
.h3_c00426{height:3.110063px;}
.h6_c00426{height:5.399414px;}
.h8_c00426{height:6.209326px;}
.h9_c00426{height:9.340986px;}
.h7_c00426{height:12.418652px;}
.h2_c00426{height:21.759639px;}
.hd_c00426{height:24.891299px;}
.h5_c00426{height:27.968965px;}
.ha_c00426{height:31.100625px;}
.hc_c00426{height:34.232285px;}
.hb_c00426{height:80.883223px;}
.h4_c00426{height:87.092549px;}
.h0_c00426{height:1515.450000px;}
.h1_c00426{height:1515.750000px;}
.w0_c00426{width:1079.130000px;}
.w1_c00426{width:1079.250000px;}
.x0_c00426{left:0.000000px;}
.x5_c00426{left:422.490000px;}
.x4_c00426{left:425.085000px;}
.x6_c00426{left:505.440000px;}
.x7_c00426{left:512.355000px;}
.x8_c00426{left:521.850000px;}
.x9_c00426{left:556.410000px;}
.xb_c00426{left:559.005000px;}
.xa_c00426{left:572.835000px;}
.x1_c00426{left:889.050000px;}
.xe_c00426{left:955.590000px;}
.xf_c00426{left:963.360000px;}
.xc_c00426{left:967.680000px;}
.xd_c00426{left:972.870000px;}
.x10_c00426{left:1010.880000px;}
.x2_c00426{left:1066.170000px;}
.x3_c00426{left:1069.635000px;}
@media print{
.v1_c00426{vertical-align:-3.040000pt;}
.v0_c00426{vertical-align:0.000000pt;}
.ls1_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:4.358357pt;}
.ws0_c00426{word-spacing:0.000000pt;}
.fs1_c00426{font-size:3.072000pt;}
.fs5_c00426{font-size:5.333333pt;}
.fs2_c00426{font-size:6.133333pt;}
.fs7_c00426{font-size:9.226667pt;}
.fs6_c00426{font-size:12.266667pt;}
.fs0_c00426{font-size:21.493333pt;}
.fsb_c00426{font-size:24.586667pt;}
.fs4_c00426{font-size:27.626667pt;}
.fs8_c00426{font-size:30.720000pt;}
.fsa_c00426{font-size:33.813333pt;}
.fs9_c00426{font-size:79.893333pt;}
.fs3_c00426{font-size:86.026667pt;}
.y0_c00426{bottom:0.000000pt;}
.y11_c00426{bottom:268.026667pt;}
.y10_c00426{bottom:981.506667pt;}
.yf_c00426{bottom:983.040000pt;}
.yb_c00426{bottom:1089.026667pt;}
.ye_c00426{bottom:1124.346667pt;}
.yd_c00426{bottom:1158.906667pt;}
.yc_c00426{bottom:1167.360000pt;}
.y1_c00426{bottom:1214.213333pt;}
.ya_c00426{bottom:1256.453333pt;}
.y3_c00426{bottom:1259.520000pt;}
.y2_c00426{bottom:1261.053333pt;}
.y5_c00426{bottom:1262.586667pt;}
.y9_c00426{bottom:1264.133333pt;}
.y7_c00426{bottom:1266.426667pt;}
.y8_c00426{bottom:1267.973333pt;}
.y6_c00426{bottom:1269.506667pt;}
.y4_c00426{bottom:1271.813333pt;}
.h3_c00426{height:2.764500pt;}
.h6_c00426{height:4.799479pt;}
.h8_c00426{height:5.519401pt;}
.h9_c00426{height:8.303099pt;}
.h7_c00426{height:11.038802pt;}
.h2_c00426{height:19.341901pt;}
.hd_c00426{height:22.125599pt;}
.h5_c00426{height:24.861302pt;}
.ha_c00426{height:27.645000pt;}
.hc_c00426{height:30.428698pt;}
.hb_c00426{height:71.896198pt;}
.h4_c00426{height:77.415599pt;}
.h0_c00426{height:1347.066667pt;}
.h1_c00426{height:1347.333333pt;}
.w0_c00426{width:959.226667pt;}
.w1_c00426{width:959.333333pt;}
.x0_c00426{left:0.000000pt;}
.x5_c00426{left:375.546667pt;}
.x4_c00426{left:377.853333pt;}
.x6_c00426{left:449.280000pt;}
.x7_c00426{left:455.426667pt;}
.x8_c00426{left:463.866667pt;}
.x9_c00426{left:494.586667pt;}
.xb_c00426{left:496.893333pt;}
.xa_c00426{left:509.186667pt;}
.x1_c00426{left:790.266667pt;}
.xe_c00426{left:849.413333pt;}
.xf_c00426{left:856.320000pt;}
.xc_c00426{left:860.160000pt;}
.xd_c00426{left:864.773333pt;}
.x10_c00426{left:898.560000pt;}
.x2_c00426{left:947.706667pt;}
.x3_c00426{left:950.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6a70beafb039a04fb1e7b18d.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:1.109863;font-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_c00427{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c00427{transform:matrix(0.075250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075250,0.000000,0.000000,0.250000,0,0);}
.m8_c00427{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.m9_c00427{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c00427{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00427{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7_c00427{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c00427{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1_c00427{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m6_c00427{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,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;}
.fs3_c00427{font-size:13.800000px;}
.fs5_c00427{font-size:17.280000px;}
.fs1_c00427{font-size:24.180000px;}
.fs0_c00427{font-size:27.660000px;}
.fs2_c00427{font-size:31.080000px;}
.fs4_c00427{font-size:103.680000px;}
.y0_c00427{bottom:0.000000px;}
.yc_c00427{bottom:1188.870000px;}
.yd_c00427{bottom:1191.450000px;}
.ya_c00427{bottom:1212.195000px;}
.yb_c00427{bottom:1213.920000px;}
.y9_c00427{bottom:1218.240000px;}
.y8_c00427{bottom:1219.965000px;}
.y7_c00427{bottom:1232.070000px;}
.y6_c00427{bottom:1257.120000px;}
.y5_c00427{bottom:1270.950000px;}
.y4_c00427{bottom:1283.910000px;}
.y3_c00427{bottom:1321.050000px;}
.y2_c00427{bottom:1358.205000px;}
.y1_c00427{bottom:1409.190000px;}
.h5_c00427{height:12.418652px;}
.h7_c00427{height:15.550313px;}
.h3_c00427{height:21.759639px;}
.h2_c00427{height:24.891299px;}
.h4_c00427{height:27.968965px;}
.h6_c00427{height:93.301875px;}
.h0_c00427{height:1505.955000px;}
.h1_c00427{height:1506.000000px;}
.w1_c00427{width:1086.750000px;}
.w0_c00427{width:1086.915000px;}
.x0_c00427{left:0.000000px;}
.x2_c00427{left:19.875000px;}
.x3_c00427{left:32.835000px;}
.x5_c00427{left:85.530000px;}
.x7_c00427{left:87.270000px;}
.x6_c00427{left:94.170000px;}
.x8_c00427{left:95.910000px;}
.x4_c00427{left:103.680000px;}
.x1_c00427{left:196.995000px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls0_c00427{letter-spacing:0.000000pt;}
.ws0_c00427{word-spacing:0.000000pt;}
.fs3_c00427{font-size:12.266667pt;}
.fs5_c00427{font-size:15.360000pt;}
.fs1_c00427{font-size:21.493333pt;}
.fs0_c00427{font-size:24.586667pt;}
.fs2_c00427{font-size:27.626667pt;}
.fs4_c00427{font-size:92.160000pt;}
.y0_c00427{bottom:0.000000pt;}
.yc_c00427{bottom:1056.773333pt;}
.yd_c00427{bottom:1059.066667pt;}
.ya_c00427{bottom:1077.506667pt;}
.yb_c00427{bottom:1079.040000pt;}
.y9_c00427{bottom:1082.880000pt;}
.y8_c00427{bottom:1084.413333pt;}
.y7_c00427{bottom:1095.173333pt;}
.y6_c00427{bottom:1117.440000pt;}
.y5_c00427{bottom:1129.733333pt;}
.y4_c00427{bottom:1141.253333pt;}
.y3_c00427{bottom:1174.266667pt;}
.y2_c00427{bottom:1207.293333pt;}
.y1_c00427{bottom:1252.613333pt;}
.h5_c00427{height:11.038802pt;}
.h7_c00427{height:13.822500pt;}
.h3_c00427{height:19.341901pt;}
.h2_c00427{height:22.125599pt;}
.h4_c00427{height:24.861302pt;}
.h6_c00427{height:82.935000pt;}
.h0_c00427{height:1338.626667pt;}
.h1_c00427{height:1338.666667pt;}
.w1_c00427{width:966.000000pt;}
.w0_c00427{width:966.146667pt;}
.x0_c00427{left:0.000000pt;}
.x2_c00427{left:17.666667pt;}
.x3_c00427{left:29.186667pt;}
.x5_c00427{left:76.026667pt;}
.x7_c00427{left:77.573333pt;}
.x6_c00427{left:83.706667pt;}
.x8_c00427{left:85.253333pt;}
.x4_c00427{left:92.160000pt;}
.x1_c00427{left:175.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_443b2ce1328490c9c4e80958.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.109863;font-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_c00428{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);}
.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;}
.fs0_c00428{font-size:600.000000px;}
.y0_c00428{bottom:0.000000px;}
.y1_c00428{bottom:15.000000px;}
.h2_c00428{height:539.941406px;}
.h0_c00428{height:1515.450000px;}
.h1_c00428{height:1515.750000px;}
.w0_c00428{width:1079.130000px;}
.w1_c00428{width:1079.250000px;}
.x0_c00428{left:0.000000px;}
.x1_c00428{left:15.000000px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls0_c00428{letter-spacing:0.000000pt;}
.ws0_c00428{word-spacing:0.000000pt;}
.fs0_c00428{font-size:533.333333pt;}
.y0_c00428{bottom:0.000000pt;}
.y1_c00428{bottom:13.333333pt;}
.h2_c00428{height:479.947917pt;}
.h0_c00428{height:1347.066667pt;}
.h1_c00428{height:1347.333333pt;}
.w0_c00428{width:959.226667pt;}
.w1_c00428{width:959.333333pt;}
.x0_c00428{left:0.000000pt;}
.x1_c00428{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_12f42996bc335d68e79917c8.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:1.109863;font-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_c00429{transform:matrix(0.115600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115600,0.000000,0.000000,0.250000,0,0);}
.m7_c00429{transform:matrix(0.129925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129925,0.000000,0.000000,0.250000,0,0);}
.m11_c00429{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);}
.m8_c00429{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m12_c00429{transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);}
.m10_c00429{transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);}
.mc_c00429{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m6_c00429{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.me_c00429{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);}
.ma_c00429{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);}
.m9_c00429{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);}
.md_c00429{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);}
.mb_c00429{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);}
.m4_c00429{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);}
.mf_c00429{transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);}
.m5_c00429{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c00429{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3_c00429{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c00429{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,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;}
.fs7_c00429{font-size:3.456000px;}
.fsc_c00429{font-size:6.000000px;}
.fs1_c00429{font-size:20.760000px;}
.fs8_c00429{font-size:27.660000px;}
.fs5_c00429{font-size:79.500000px;}
.fs2_c00429{font-size:93.300000px;}
.fs9_c00429{font-size:100.200000px;}
.fsb_c00429{font-size:103.680000px;}
.fs3_c00429{font-size:107.160000px;}
.fsa_c00429{font-size:110.580000px;}
.fs6_c00429{font-size:117.480000px;}
.fs4_c00429{font-size:120.960000px;}
.fs0_c00429{font-size:134.760000px;}
.y0_c00429{bottom:0.000000px;}
.y12_c00429{bottom:605.670000px;}
.y11_c00429{bottom:642.810000px;}
.yf_c00429{bottom:648.000000px;}
.ye_c00429{bottom:650.595000px;}
.y10_c00429{bottom:669.600000px;}
.ya_c00429{bottom:673.920000px;}
.yd_c00429{bottom:674.790000px;}
.yc_c00429{bottom:675.645000px;}
.yb_c00429{bottom:679.965000px;}
.y9_c00429{bottom:688.605000px;}
.y7_c00429{bottom:705.885000px;}
.y8_c00429{bottom:707.610000px;}
.y6_c00429{bottom:712.800000px;}
.y4_c00429{bottom:738.720000px;}
.y5_c00429{bottom:743.040000px;}
.y3_c00429{bottom:745.635000px;}
.y2_c00429{bottom:1158.630000px;}
.y1_c00429{bottom:1366.845000px;}
.h9_c00429{height:3.110063px;}
.he_c00429{height:5.399414px;}
.h3_c00429{height:18.681973px;}
.ha_c00429{height:24.891299px;}
.h7_c00429{height:71.542236px;}
.h4_c00429{height:83.960889px;}
.hb_c00429{height:90.170215px;}
.hd_c00429{height:93.301875px;}
.h5_c00429{height:96.433535px;}
.hc_c00429{height:99.511201px;}
.h8_c00429{height:105.720527px;}
.h6_c00429{height:108.852188px;}
.h2_c00429{height:121.270840px;}
.h0_c00429{height:1505.955000px;}
.h1_c00429{height:1506.000000px;}
.w1_c00429{width:1086.750000px;}
.w0_c00429{width:1086.915000px;}
.x0_c00429{left:0.000000px;}
.x1_c00429{left:104.550000px;}
.x2_c00429{left:168.480000px;}
.x3_c00429{left:594.435000px;}
.x9_c00429{left:622.080000px;}
.x6_c00429{left:626.400000px;}
.xe_c00429{left:628.125000px;}
.xf_c00429{left:676.515000px;}
.x7_c00429{left:681.690000px;}
.x4_c00429{left:687.750000px;}
.xa_c00429{left:694.650000px;}
.xb_c00429{left:730.080000px;}
.xc_c00429{left:776.730000px;}
.x5_c00429{left:806.970000px;}
.x10_c00429{left:818.205000px;}
.x11_c00429{left:827.715000px;}
.x8_c00429{left:840.675000px;}
.xd_c00429{left:852.765000px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ws0_c00429{word-spacing:0.000000pt;}
.fs7_c00429{font-size:3.072000pt;}
.fsc_c00429{font-size:5.333333pt;}
.fs1_c00429{font-size:18.453333pt;}
.fs8_c00429{font-size:24.586667pt;}
.fs5_c00429{font-size:70.666667pt;}
.fs2_c00429{font-size:82.933333pt;}
.fs9_c00429{font-size:89.066667pt;}
.fsb_c00429{font-size:92.160000pt;}
.fs3_c00429{font-size:95.253333pt;}
.fsa_c00429{font-size:98.293333pt;}
.fs6_c00429{font-size:104.426667pt;}
.fs4_c00429{font-size:107.520000pt;}
.fs0_c00429{font-size:119.786667pt;}
.y0_c00429{bottom:0.000000pt;}
.y12_c00429{bottom:538.373333pt;}
.y11_c00429{bottom:571.386667pt;}
.yf_c00429{bottom:576.000000pt;}
.ye_c00429{bottom:578.306667pt;}
.y10_c00429{bottom:595.200000pt;}
.ya_c00429{bottom:599.040000pt;}
.yd_c00429{bottom:599.813333pt;}
.yc_c00429{bottom:600.573333pt;}
.yb_c00429{bottom:604.413333pt;}
.y9_c00429{bottom:612.093333pt;}
.y7_c00429{bottom:627.453333pt;}
.y8_c00429{bottom:628.986667pt;}
.y6_c00429{bottom:633.600000pt;}
.y4_c00429{bottom:656.640000pt;}
.y5_c00429{bottom:660.480000pt;}
.y3_c00429{bottom:662.786667pt;}
.y2_c00429{bottom:1029.893333pt;}
.y1_c00429{bottom:1214.973333pt;}
.h9_c00429{height:2.764500pt;}
.he_c00429{height:4.799479pt;}
.h3_c00429{height:16.606198pt;}
.ha_c00429{height:22.125599pt;}
.h7_c00429{height:63.593099pt;}
.h4_c00429{height:74.631901pt;}
.hb_c00429{height:80.151302pt;}
.hd_c00429{height:82.935000pt;}
.h5_c00429{height:85.718698pt;}
.hc_c00429{height:88.454401pt;}
.h8_c00429{height:93.973802pt;}
.h6_c00429{height:96.757500pt;}
.h2_c00429{height:107.796302pt;}
.h0_c00429{height:1338.626667pt;}
.h1_c00429{height:1338.666667pt;}
.w1_c00429{width:966.000000pt;}
.w0_c00429{width:966.146667pt;}
.x0_c00429{left:0.000000pt;}
.x1_c00429{left:92.933333pt;}
.x2_c00429{left:149.760000pt;}
.x3_c00429{left:528.386667pt;}
.x9_c00429{left:552.960000pt;}
.x6_c00429{left:556.800000pt;}
.xe_c00429{left:558.333333pt;}
.xf_c00429{left:601.346667pt;}
.x7_c00429{left:605.946667pt;}
.x4_c00429{left:611.333333pt;}
.xa_c00429{left:617.466667pt;}
.xb_c00429{left:648.960000pt;}
.xc_c00429{left:690.426667pt;}
.x5_c00429{left:717.306667pt;}
.x10_c00429{left:727.293333pt;}
.x11_c00429{left:735.746667pt;}
.x8_c00429{left:747.266667pt;}
.xd_c00429{left:758.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_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_0666198cb4750e46ce0c0b4c.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.109863;font-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_c00430{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);}
.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;}
.fc0_c00430{color:transparent;}
.fs0_c00430{font-size:600.000000px;}
.y0_c00430{bottom:0.000000px;}
.y1_c00430{bottom:15.000000px;}
.h2_c00430{height:539.941406px;}
.h0_c00430{height:1515.450000px;}
.h1_c00430{height:1515.750000px;}
.w0_c00430{width:1079.130000px;}
.w1_c00430{width:1079.250000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:15.000000px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls0_c00430{letter-spacing:0.000000pt;}
.ws0_c00430{word-spacing:0.000000pt;}
.fs0_c00430{font-size:533.333333pt;}
.y0_c00430{bottom:0.000000pt;}
.y1_c00430{bottom:13.333333pt;}
.h2_c00430{height:479.947917pt;}
.h0_c00430{height:1347.066667pt;}
.h1_c00430{height:1347.333333pt;}
.w0_c00430{width:959.226667pt;}
.w1_c00430{width:959.333333pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_978133fc6d355071f8201169.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:1.109863;font-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_c00431{transform:matrix(0.068725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068725,0.000000,0.000000,0.250000,0,0);}
.m8_c00431{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m5_c00431{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00431{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);}
.m1_c00431{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);}
.m0_c00431{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);}
.ma_c00431{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c00431{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m6_c00431{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);}
.m9_c00431{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mb_c00431{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m4_c00431{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,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;}
.fs5_c00431{font-size:3.456000px;}
.fs4_c00431{font-size:13.800000px;}
.fs8_c00431{font-size:17.280000px;}
.fs6_c00431{font-size:20.760000px;}
.fs2_c00431{font-size:24.180000px;}
.fs0_c00431{font-size:31.080000px;}
.fs3_c00431{font-size:69.120000px;}
.fs1_c00431{font-size:72.600000px;}
.fs7_c00431{font-size:93.300000px;}
.y0_c00431{bottom:0.000000px;}
.yb_c00431{bottom:293.760000px;}
.y9_c00431{bottom:541.725000px;}
.ya_c00431{bottom:546.045000px;}
.y8_c00431{bottom:1194.915000px;}
.y7_c00431{bottom:1203.555000px;}
.y6_c00431{bottom:1229.475000px;}
.y3_c00431{bottom:1403.130000px;}
.y2_c00431{bottom:1420.410000px;}
.y1_c00431{bottom:1432.515000px;}
.y5_c00431{bottom:1437.690000px;}
.y4_c00431{bottom:1438.560000px;}
.h7_c00431{height:3.110063px;}
.h6_c00431{height:12.418652px;}
.ha_c00431{height:15.550313px;}
.h8_c00431{height:18.681973px;}
.h4_c00431{height:21.759639px;}
.h2_c00431{height:27.968965px;}
.h5_c00431{height:62.201250px;}
.h3_c00431{height:65.332910px;}
.h9_c00431{height:83.960889px;}
.h0_c00431{height:1505.955000px;}
.h1_c00431{height:1506.000000px;}
.w1_c00431{width:1086.750000px;}
.w0_c00431{width:1086.915000px;}
.x0_c00431{left:0.000000px;}
.xc_c00431{left:19.005000px;}
.xa_c00431{left:25.050000px;}
.xb_c00431{left:38.010000px;}
.x8_c00431{left:101.085000px;}
.x9_c00431{left:106.275000px;}
.x7_c00431{left:160.710000px;}
.x1_c00431{left:361.155000px;}
.x4_c00431{left:374.970000px;}
.x2_c00431{left:405.210000px;}
.x3_c00431{left:420.765000px;}
.x5_c00431{left:635.040000px;}
.x6_c00431{left:657.510000px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ws0_c00431{word-spacing:0.000000pt;}
.fs5_c00431{font-size:3.072000pt;}
.fs4_c00431{font-size:12.266667pt;}
.fs8_c00431{font-size:15.360000pt;}
.fs6_c00431{font-size:18.453333pt;}
.fs2_c00431{font-size:21.493333pt;}
.fs0_c00431{font-size:27.626667pt;}
.fs3_c00431{font-size:61.440000pt;}
.fs1_c00431{font-size:64.533333pt;}
.fs7_c00431{font-size:82.933333pt;}
.y0_c00431{bottom:0.000000pt;}
.yb_c00431{bottom:261.120000pt;}
.y9_c00431{bottom:481.533333pt;}
.ya_c00431{bottom:485.373333pt;}
.y8_c00431{bottom:1062.146667pt;}
.y7_c00431{bottom:1069.826667pt;}
.y6_c00431{bottom:1092.866667pt;}
.y3_c00431{bottom:1247.226667pt;}
.y2_c00431{bottom:1262.586667pt;}
.y1_c00431{bottom:1273.346667pt;}
.y5_c00431{bottom:1277.946667pt;}
.y4_c00431{bottom:1278.720000pt;}
.h7_c00431{height:2.764500pt;}
.h6_c00431{height:11.038802pt;}
.ha_c00431{height:13.822500pt;}
.h8_c00431{height:16.606198pt;}
.h4_c00431{height:19.341901pt;}
.h2_c00431{height:24.861302pt;}
.h5_c00431{height:55.290000pt;}
.h3_c00431{height:58.073698pt;}
.h9_c00431{height:74.631901pt;}
.h0_c00431{height:1338.626667pt;}
.h1_c00431{height:1338.666667pt;}
.w1_c00431{width:966.000000pt;}
.w0_c00431{width:966.146667pt;}
.x0_c00431{left:0.000000pt;}
.xc_c00431{left:16.893333pt;}
.xa_c00431{left:22.266667pt;}
.xb_c00431{left:33.786667pt;}
.x8_c00431{left:89.853333pt;}
.x9_c00431{left:94.466667pt;}
.x7_c00431{left:142.853333pt;}
.x1_c00431{left:321.026667pt;}
.x4_c00431{left:333.306667pt;}
.x2_c00431{left:360.186667pt;}
.x3_c00431{left:374.013333pt;}
.x5_c00431{left:564.480000pt;}
.x6_c00431{left:584.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d487c78d2e33c521ffb8770a.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.109863;font-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_c00432{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c00432{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);}
.m3a_c00432{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m40_c00432{transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);}
.m5_c00432{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m20_c00432{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00432{transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);}
.m22_c00432{transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);}
.m21_c00432{transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);}
.m11_c00432{transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);}
.m4_c00432{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00432{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);}
.m29_c00432{transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);}
.m2a_c00432{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.m37_c00432{transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);}
.m13_c00432{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.m44_c00432{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m48_c00432{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m4a_c00432{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);}
.m2b_c00432{transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);}
.m42_c00432{transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);}
.m49_c00432{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);}
.m14_c00432{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);}
.m3e_c00432{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m32_c00432{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.m19_c00432{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.md_c00432{transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);}
.m41_c00432{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);}
.m50_c00432{transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);}
.m3f_c00432{transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);}
.m47_c00432{transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);}
.m46_c00432{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m12_c00432{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);}
.m27_c00432{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.me_c00432{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);}
.ma_c00432{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);}
.m31_c00432{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m30_c00432{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);}
.m38_c00432{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);}
.m2d_c00432{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);}
.m1b_c00432{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mf_c00432{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9_c00432{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);}
.mb_c00432{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00432{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00432{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00432{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c00432{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);}
.m17_c00432{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);}
.m4d_c00432{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m45_c00432{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00432{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);}
.m43_c00432{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00432{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m0_c00432{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7_c00432{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);}
.m28_c00432{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00432{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m39_c00432{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m26_c00432{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);}
.m24_c00432{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6_c00432{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);}
.m23_c00432{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00432{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m15_c00432{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);}
.m16_c00432{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00432{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00432{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m34_c00432{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m18_c00432{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);}
.m35_c00432{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m8_c00432{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m33_c00432{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c00432{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00432{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m10_c00432{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mc_c00432{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00432{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m25_c00432{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1c_c00432{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00432{transform:matrix(2.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.007500,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;}
.fs2_c00432{font-size:3.456000px;}
.fs24_c00432{font-size:6.000000px;}
.fs17_c00432{font-size:6.900000px;}
.fs4_c00432{font-size:10.380000px;}
.fs3_c00432{font-size:13.800000px;}
.fs0_c00432{font-size:17.280000px;}
.fs22_c00432{font-size:20.760000px;}
.fs25_c00432{font-size:24.180000px;}
.fs5_c00432{font-size:27.660000px;}
.fsa_c00432{font-size:31.080000px;}
.fs1_c00432{font-size:34.560000px;}
.fsd_c00432{font-size:38.040000px;}
.fs20_c00432{font-size:41.460000px;}
.fs21_c00432{font-size:48.360000px;}
.fs8_c00432{font-size:51.840000px;}
.fs7_c00432{font-size:55.320000px;}
.fs9_c00432{font-size:58.740000px;}
.fs1b_c00432{font-size:62.220000px;}
.fsc_c00432{font-size:65.640000px;}
.fs6_c00432{font-size:69.120000px;}
.fs14_c00432{font-size:72.600000px;}
.fs13_c00432{font-size:76.020000px;}
.fs18_c00432{font-size:79.500000px;}
.fs1f_c00432{font-size:82.920000px;}
.fse_c00432{font-size:86.400000px;}
.fs23_c00432{font-size:89.880000px;}
.fs10_c00432{font-size:93.300000px;}
.fs1e_c00432{font-size:100.200000px;}
.fs1d_c00432{font-size:107.160000px;}
.fsb_c00432{font-size:110.580000px;}
.fsf_c00432{font-size:114.060000px;}
.fs1c_c00432{font-size:117.480000px;}
.fs19_c00432{font-size:124.440000px;}
.fs15_c00432{font-size:127.860000px;}
.fs16_c00432{font-size:131.340000px;}
.fs1a_c00432{font-size:138.240000px;}
.fs11_c00432{font-size:155.520000px;}
.fs12_c00432{font-size:159.000000px;}
.y0_c00432{bottom:0.000000px;}
.y56_c00432{bottom:594.435000px;}
.y59_c00432{bottom:596.160000px;}
.y57_c00432{bottom:597.030000px;}
.y58_c00432{bottom:598.755000px;}
.y4e_c00432{bottom:612.570000px;}
.y50_c00432{bottom:614.310000px;}
.y53_c00432{bottom:615.165000px;}
.y52_c00432{bottom:616.035000px;}
.y55_c00432{bottom:617.760000px;}
.y51_c00432{bottom:618.630000px;}
.y54_c00432{bottom:619.485000px;}
.y4f_c00432{bottom:621.210000px;}
.y49_c00432{bottom:628.995000px;}
.y4a_c00432{bottom:630.720000px;}
.y4b_c00432{bottom:632.445000px;}
.y4c_c00432{bottom:640.230000px;}
.y4d_c00432{bottom:641.085000px;}
.y42_c00432{bottom:647.130000px;}
.y43_c00432{bottom:648.870000px;}
.y45_c00432{bottom:652.320000px;}
.y48_c00432{bottom:653.190000px;}
.y46_c00432{bottom:656.640000px;}
.y44_c00432{bottom:658.365000px;}
.y41_c00432{bottom:662.685000px;}
.y47_c00432{bottom:668.730000px;}
.y40_c00432{bottom:674.790000px;}
.y3f_c00432{bottom:675.645000px;}
.y3d_c00432{bottom:676.515000px;}
.y3e_c00432{bottom:678.240000px;}
.y3c_c00432{bottom:685.155000px;}
.y38_c00432{bottom:696.390000px;}
.y39_c00432{bottom:697.245000px;}
.y3a_c00432{bottom:698.115000px;}
.y3b_c00432{bottom:699.840000px;}
.y36_c00432{bottom:713.670000px;}
.y33_c00432{bottom:716.250000px;}
.y34_c00432{bottom:717.120000px;}
.y35_c00432{bottom:717.990000px;}
.y37_c00432{bottom:719.715000px;}
.y7_c00432{bottom:771.555000px;}
.y8_c00432{bottom:772.410000px;}
.y5_c00432{bottom:778.470000px;}
.y4_c00432{bottom:781.050000px;}
.y9_c00432{bottom:781.920000px;}
.y1_c00432{bottom:783.645000px;}
.y2_c00432{bottom:786.240000px;}
.y6_c00432{bottom:792.285000px;}
.y3_c00432{bottom:797.475000px;}
.y30_c00432{bottom:801.795000px;}
.y2d_c00432{bottom:803.520000px;}
.y2c_c00432{bottom:806.115000px;}
.y2f_c00432{bottom:807.840000px;}
.y31_c00432{bottom:814.755000px;}
.y2e_c00432{bottom:822.525000px;}
.y32_c00432{bottom:825.120000px;}
.y26_c00432{bottom:826.845000px;}
.y25_c00432{bottom:829.440000px;}
.y2a_c00432{bottom:838.950000px;}
.y27_c00432{bottom:845.850000px;}
.y2b_c00432{bottom:846.720000px;}
.y29_c00432{bottom:848.445000px;}
.y28_c00432{bottom:849.315000px;}
.y18_c00432{bottom:864.870000px;}
.y1f_c00432{bottom:867.450000px;}
.y1e_c00432{bottom:869.190000px;}
.y17_c00432{bottom:870.045000px;}
.y15_c00432{bottom:870.915000px;}
.y16_c00432{bottom:871.770000px;}
.y19_c00432{bottom:874.365000px;}
.y1c_c00432{bottom:880.410000px;}
.y1b_c00432{bottom:883.875000px;}
.y1d_c00432{bottom:884.730000px;}
.y20_c00432{bottom:885.600000px;}
.y21_c00432{bottom:887.325000px;}
.y23_c00432{bottom:888.195000px;}
.y24_c00432{bottom:889.050000px;}
.y22_c00432{bottom:892.515000px;}
.y1a_c00432{bottom:895.965000px;}
.y12_c00432{bottom:907.200000px;}
.y13_c00432{bottom:913.245000px;}
.y11_c00432{bottom:917.565000px;}
.y14_c00432{bottom:922.755000px;}
.ye_c00432{bottom:936.570000px;}
.yc_c00432{bottom:941.760000px;}
.y10_c00432{bottom:942.630000px;}
.yd_c00432{bottom:944.355000px;}
.yf_c00432{bottom:957.315000px;}
.ya_c00432{bottom:969.405000px;}
.yb_c00432{bottom:974.595000px;}
.h4_c00432{height:3.110063px;}
.h26_c00432{height:5.399414px;}
.h19_c00432{height:6.209326px;}
.h6_c00432{height:9.340986px;}
.h5_c00432{height:12.418652px;}
.h2_c00432{height:15.550313px;}
.h24_c00432{height:18.681973px;}
.h27_c00432{height:21.759639px;}
.h7_c00432{height:24.891299px;}
.hc_c00432{height:27.968965px;}
.h3_c00432{height:31.100625px;}
.hf_c00432{height:34.232285px;}
.h22_c00432{height:37.309951px;}
.h23_c00432{height:43.519277px;}
.ha_c00432{height:46.650937px;}
.h9_c00432{height:49.782598px;}
.hb_c00432{height:52.860264px;}
.h1d_c00432{height:55.991924px;}
.he_c00432{height:59.069590px;}
.h8_c00432{height:62.201250px;}
.h16_c00432{height:65.332910px;}
.h15_c00432{height:68.410576px;}
.h1a_c00432{height:71.542236px;}
.h21_c00432{height:74.619902px;}
.h10_c00432{height:77.751563px;}
.h25_c00432{height:80.883223px;}
.h12_c00432{height:83.960889px;}
.h20_c00432{height:90.170215px;}
.h1f_c00432{height:96.433535px;}
.hd_c00432{height:99.511201px;}
.h11_c00432{height:102.642861px;}
.h1e_c00432{height:105.720527px;}
.h1b_c00432{height:111.983848px;}
.h17_c00432{height:115.061514px;}
.h18_c00432{height:118.193174px;}
.h1c_c00432{height:124.402500px;}
.h13_c00432{height:139.952812px;}
.h14_c00432{height:143.084473px;}
.h0_c00432{height:1515.450000px;}
.h1_c00432{height:1515.750000px;}
.w0_c00432{width:1079.130000px;}
.w1_c00432{width:1079.250000px;}
.x0_c00432{left:0.000000px;}
.x10_c00432{left:207.360000px;}
.x50_c00432{left:214.275000px;}
.x16_c00432{left:216.000000px;}
.x4c_c00432{left:219.450000px;}
.x2d_c00432{left:242.790000px;}
.x34_c00432{left:246.240000px;}
.x19_c00432{left:250.560000px;}
.xe_c00432{left:269.565000px;}
.x17_c00432{left:271.290000px;}
.x1a_c00432{left:280.800000px;}
.x48_c00432{left:284.250000px;}
.x4d_c00432{left:286.845000px;}
.x54_c00432{left:293.760000px;}
.x1_c00432{left:298.950000px;}
.x42_c00432{left:304.995000px;}
.x4_c00432{left:311.910000px;}
.x55_c00432{left:314.490000px;}
.x2_c00432{left:316.230000px;}
.x3e_c00432{left:317.955000px;}
.x49_c00432{left:320.550000px;}
.x35_c00432{left:322.275000px;}
.x5_c00432{left:324.000000px;}
.x3_c00432{left:330.915000px;}
.x3b_c00432{left:336.960000px;}
.x1b_c00432{left:346.470000px;}
.x2e_c00432{left:352.515000px;}
.x43_c00432{left:355.110000px;}
.x56_c00432{left:367.200000px;}
.x1c_c00432{left:369.795000px;}
.x44_c00432{left:375.840000px;}
.x3f_c00432{left:384.480000px;}
.x1d_c00432{left:387.930000px;}
.x51_c00432{left:395.715000px;}
.x45_c00432{left:400.035000px;}
.x4a_c00432{left:401.760000px;}
.x2f_c00432{left:405.210000px;}
.x4e_c00432{left:408.675000px;}
.x46_c00432{left:410.400000px;}
.x57_c00432{left:418.170000px;}
.x3c_c00432{left:421.635000px;}
.x40_c00432{left:431.130000px;}
.x52_c00432{left:432.870000px;}
.x1e_c00432{left:437.190000px;}
.xf_c00432{left:438.915000px;}
.x47_c00432{left:441.510000px;}
.x36_c00432{left:451.875000px;}
.x4f_c00432{left:457.050000px;}
.x41_c00432{left:461.370000px;}
.x3d_c00432{left:470.880000px;}
.x37_c00432{left:475.200000px;}
.x1f_c00432{left:490.755000px;}
.x53_c00432{left:499.395000px;}
.x38_c00432{left:505.440000px;}
.x4b_c00432{left:507.165000px;}
.x20_c00432{left:514.950000px;}
.x21_c00432{left:522.720000px;}
.x30_c00432{left:531.360000px;}
.x11_c00432{left:537.405000px;}
.x22_c00432{left:548.640000px;}
.x31_c00432{left:561.600000px;}
.x12_c00432{left:563.325000px;}
.x13_c00432{left:566.790000px;}
.x23_c00432{left:569.370000px;}
.x14_c00432{left:588.390000px;}
.x24_c00432{left:591.840000px;}
.x7_c00432{left:613.440000px;}
.x25_c00432{left:619.485000px;}
.x8_c00432{left:635.040000px;}
.x6_c00432{left:644.550000px;}
.x39_c00432{left:646.275000px;}
.x9_c00432{left:659.235000px;}
.x32_c00432{left:671.325000px;}
.xa_c00432{left:673.050000px;}
.x26_c00432{left:698.115000px;}
.x27_c00432{left:711.075000px;}
.x33_c00432{left:726.630000px;}
.x15_c00432{left:733.530000px;}
.xc_c00432{left:738.720000px;}
.xb_c00432{left:748.230000px;}
.x28_c00432{left:756.870000px;}
.xd_c00432{left:765.510000px;}
.x3a_c00432{left:775.005000px;}
.x29_c00432{left:786.240000px;}
.x2a_c00432{left:796.605000px;}
.x2b_c00432{left:819.075000px;}
.x2c_c00432{left:832.035000px;}
.x18_c00432{left:844.995000px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls0_c00432{letter-spacing:0.000000pt;}
.ws0_c00432{word-spacing:0.000000pt;}
.fs2_c00432{font-size:3.072000pt;}
.fs24_c00432{font-size:5.333333pt;}
.fs17_c00432{font-size:6.133333pt;}
.fs4_c00432{font-size:9.226667pt;}
.fs3_c00432{font-size:12.266667pt;}
.fs0_c00432{font-size:15.360000pt;}
.fs22_c00432{font-size:18.453333pt;}
.fs25_c00432{font-size:21.493333pt;}
.fs5_c00432{font-size:24.586667pt;}
.fsa_c00432{font-size:27.626667pt;}
.fs1_c00432{font-size:30.720000pt;}
.fsd_c00432{font-size:33.813333pt;}
.fs20_c00432{font-size:36.853333pt;}
.fs21_c00432{font-size:42.986667pt;}
.fs8_c00432{font-size:46.080000pt;}
.fs7_c00432{font-size:49.173333pt;}
.fs9_c00432{font-size:52.213333pt;}
.fs1b_c00432{font-size:55.306667pt;}
.fsc_c00432{font-size:58.346667pt;}
.fs6_c00432{font-size:61.440000pt;}
.fs14_c00432{font-size:64.533333pt;}
.fs13_c00432{font-size:67.573333pt;}
.fs18_c00432{font-size:70.666667pt;}
.fs1f_c00432{font-size:73.706667pt;}
.fse_c00432{font-size:76.800000pt;}
.fs23_c00432{font-size:79.893333pt;}
.fs10_c00432{font-size:82.933333pt;}
.fs1e_c00432{font-size:89.066667pt;}
.fs1d_c00432{font-size:95.253333pt;}
.fsb_c00432{font-size:98.293333pt;}
.fsf_c00432{font-size:101.386667pt;}
.fs1c_c00432{font-size:104.426667pt;}
.fs19_c00432{font-size:110.613333pt;}
.fs15_c00432{font-size:113.653333pt;}
.fs16_c00432{font-size:116.746667pt;}
.fs1a_c00432{font-size:122.880000pt;}
.fs11_c00432{font-size:138.240000pt;}
.fs12_c00432{font-size:141.333333pt;}
.y0_c00432{bottom:0.000000pt;}
.y56_c00432{bottom:528.386667pt;}
.y59_c00432{bottom:529.920000pt;}
.y57_c00432{bottom:530.693333pt;}
.y58_c00432{bottom:532.226667pt;}
.y4e_c00432{bottom:544.506667pt;}
.y50_c00432{bottom:546.053333pt;}
.y53_c00432{bottom:546.813333pt;}
.y52_c00432{bottom:547.586667pt;}
.y55_c00432{bottom:549.120000pt;}
.y51_c00432{bottom:549.893333pt;}
.y54_c00432{bottom:550.653333pt;}
.y4f_c00432{bottom:552.186667pt;}
.y49_c00432{bottom:559.106667pt;}
.y4a_c00432{bottom:560.640000pt;}
.y4b_c00432{bottom:562.173333pt;}
.y4c_c00432{bottom:569.093333pt;}
.y4d_c00432{bottom:569.853333pt;}
.y42_c00432{bottom:575.226667pt;}
.y43_c00432{bottom:576.773333pt;}
.y45_c00432{bottom:579.840000pt;}
.y48_c00432{bottom:580.613333pt;}
.y46_c00432{bottom:583.680000pt;}
.y44_c00432{bottom:585.213333pt;}
.y41_c00432{bottom:589.053333pt;}
.y47_c00432{bottom:594.426667pt;}
.y40_c00432{bottom:599.813333pt;}
.y3f_c00432{bottom:600.573333pt;}
.y3d_c00432{bottom:601.346667pt;}
.y3e_c00432{bottom:602.880000pt;}
.y3c_c00432{bottom:609.026667pt;}
.y38_c00432{bottom:619.013333pt;}
.y39_c00432{bottom:619.773333pt;}
.y3a_c00432{bottom:620.546667pt;}
.y3b_c00432{bottom:622.080000pt;}
.y36_c00432{bottom:634.373333pt;}
.y33_c00432{bottom:636.666667pt;}
.y34_c00432{bottom:637.440000pt;}
.y35_c00432{bottom:638.213333pt;}
.y37_c00432{bottom:639.746667pt;}
.y7_c00432{bottom:685.826667pt;}
.y8_c00432{bottom:686.586667pt;}
.y5_c00432{bottom:691.973333pt;}
.y4_c00432{bottom:694.266667pt;}
.y9_c00432{bottom:695.040000pt;}
.y1_c00432{bottom:696.573333pt;}
.y2_c00432{bottom:698.880000pt;}
.y6_c00432{bottom:704.253333pt;}
.y3_c00432{bottom:708.866667pt;}
.y30_c00432{bottom:712.706667pt;}
.y2d_c00432{bottom:714.240000pt;}
.y2c_c00432{bottom:716.546667pt;}
.y2f_c00432{bottom:718.080000pt;}
.y31_c00432{bottom:724.226667pt;}
.y2e_c00432{bottom:731.133333pt;}
.y32_c00432{bottom:733.440000pt;}
.y26_c00432{bottom:734.973333pt;}
.y25_c00432{bottom:737.280000pt;}
.y2a_c00432{bottom:745.733333pt;}
.y27_c00432{bottom:751.866667pt;}
.y2b_c00432{bottom:752.640000pt;}
.y29_c00432{bottom:754.173333pt;}
.y28_c00432{bottom:754.946667pt;}
.y18_c00432{bottom:768.773333pt;}
.y1f_c00432{bottom:771.066667pt;}
.y1e_c00432{bottom:772.613333pt;}
.y17_c00432{bottom:773.373333pt;}
.y15_c00432{bottom:774.146667pt;}
.y16_c00432{bottom:774.906667pt;}
.y19_c00432{bottom:777.213333pt;}
.y1c_c00432{bottom:782.586667pt;}
.y1b_c00432{bottom:785.666667pt;}
.y1d_c00432{bottom:786.426667pt;}
.y20_c00432{bottom:787.200000pt;}
.y21_c00432{bottom:788.733333pt;}
.y23_c00432{bottom:789.506667pt;}
.y24_c00432{bottom:790.266667pt;}
.y22_c00432{bottom:793.346667pt;}
.y1a_c00432{bottom:796.413333pt;}
.y12_c00432{bottom:806.400000pt;}
.y13_c00432{bottom:811.773333pt;}
.y11_c00432{bottom:815.613333pt;}
.y14_c00432{bottom:820.226667pt;}
.ye_c00432{bottom:832.506667pt;}
.yc_c00432{bottom:837.120000pt;}
.y10_c00432{bottom:837.893333pt;}
.yd_c00432{bottom:839.426667pt;}
.yf_c00432{bottom:850.946667pt;}
.ya_c00432{bottom:861.693333pt;}
.yb_c00432{bottom:866.306667pt;}
.h4_c00432{height:2.764500pt;}
.h26_c00432{height:4.799479pt;}
.h19_c00432{height:5.519401pt;}
.h6_c00432{height:8.303099pt;}
.h5_c00432{height:11.038802pt;}
.h2_c00432{height:13.822500pt;}
.h24_c00432{height:16.606198pt;}
.h27_c00432{height:19.341901pt;}
.h7_c00432{height:22.125599pt;}
.hc_c00432{height:24.861302pt;}
.h3_c00432{height:27.645000pt;}
.hf_c00432{height:30.428698pt;}
.h22_c00432{height:33.164401pt;}
.h23_c00432{height:38.683802pt;}
.ha_c00432{height:41.467500pt;}
.h9_c00432{height:44.251198pt;}
.hb_c00432{height:46.986901pt;}
.h1d_c00432{height:49.770599pt;}
.he_c00432{height:52.506302pt;}
.h8_c00432{height:55.290000pt;}
.h16_c00432{height:58.073698pt;}
.h15_c00432{height:60.809401pt;}
.h1a_c00432{height:63.593099pt;}
.h21_c00432{height:66.328802pt;}
.h10_c00432{height:69.112500pt;}
.h25_c00432{height:71.896198pt;}
.h12_c00432{height:74.631901pt;}
.h20_c00432{height:80.151302pt;}
.h1f_c00432{height:85.718698pt;}
.hd_c00432{height:88.454401pt;}
.h11_c00432{height:91.238099pt;}
.h1e_c00432{height:93.973802pt;}
.h1b_c00432{height:99.541198pt;}
.h17_c00432{height:102.276901pt;}
.h18_c00432{height:105.060599pt;}
.h1c_c00432{height:110.580000pt;}
.h13_c00432{height:124.402500pt;}
.h14_c00432{height:127.186198pt;}
.h0_c00432{height:1347.066667pt;}
.h1_c00432{height:1347.333333pt;}
.w0_c00432{width:959.226667pt;}
.w1_c00432{width:959.333333pt;}
.x0_c00432{left:0.000000pt;}
.x10_c00432{left:184.320000pt;}
.x50_c00432{left:190.466667pt;}
.x16_c00432{left:192.000000pt;}
.x4c_c00432{left:195.066667pt;}
.x2d_c00432{left:215.813333pt;}
.x34_c00432{left:218.880000pt;}
.x19_c00432{left:222.720000pt;}
.xe_c00432{left:239.613333pt;}
.x17_c00432{left:241.146667pt;}
.x1a_c00432{left:249.600000pt;}
.x48_c00432{left:252.666667pt;}
.x4d_c00432{left:254.973333pt;}
.x54_c00432{left:261.120000pt;}
.x1_c00432{left:265.733333pt;}
.x42_c00432{left:271.106667pt;}
.x4_c00432{left:277.253333pt;}
.x55_c00432{left:279.546667pt;}
.x2_c00432{left:281.093333pt;}
.x3e_c00432{left:282.626667pt;}
.x49_c00432{left:284.933333pt;}
.x35_c00432{left:286.466667pt;}
.x5_c00432{left:288.000000pt;}
.x3_c00432{left:294.146667pt;}
.x3b_c00432{left:299.520000pt;}
.x1b_c00432{left:307.973333pt;}
.x2e_c00432{left:313.346667pt;}
.x43_c00432{left:315.653333pt;}
.x56_c00432{left:326.400000pt;}
.x1c_c00432{left:328.706667pt;}
.x44_c00432{left:334.080000pt;}
.x3f_c00432{left:341.760000pt;}
.x1d_c00432{left:344.826667pt;}
.x51_c00432{left:351.746667pt;}
.x45_c00432{left:355.586667pt;}
.x4a_c00432{left:357.120000pt;}
.x2f_c00432{left:360.186667pt;}
.x4e_c00432{left:363.266667pt;}
.x46_c00432{left:364.800000pt;}
.x57_c00432{left:371.706667pt;}
.x3c_c00432{left:374.786667pt;}
.x40_c00432{left:383.226667pt;}
.x52_c00432{left:384.773333pt;}
.x1e_c00432{left:388.613333pt;}
.xf_c00432{left:390.146667pt;}
.x47_c00432{left:392.453333pt;}
.x36_c00432{left:401.666667pt;}
.x4f_c00432{left:406.266667pt;}
.x41_c00432{left:410.106667pt;}
.x3d_c00432{left:418.560000pt;}
.x37_c00432{left:422.400000pt;}
.x1f_c00432{left:436.226667pt;}
.x53_c00432{left:443.906667pt;}
.x38_c00432{left:449.280000pt;}
.x4b_c00432{left:450.813333pt;}
.x20_c00432{left:457.733333pt;}
.x21_c00432{left:464.640000pt;}
.x30_c00432{left:472.320000pt;}
.x11_c00432{left:477.693333pt;}
.x22_c00432{left:487.680000pt;}
.x31_c00432{left:499.200000pt;}
.x12_c00432{left:500.733333pt;}
.x13_c00432{left:503.813333pt;}
.x23_c00432{left:506.106667pt;}
.x14_c00432{left:523.013333pt;}
.x24_c00432{left:526.080000pt;}
.x7_c00432{left:545.280000pt;}
.x25_c00432{left:550.653333pt;}
.x8_c00432{left:564.480000pt;}
.x6_c00432{left:572.933333pt;}
.x39_c00432{left:574.466667pt;}
.x9_c00432{left:585.986667pt;}
.x32_c00432{left:596.733333pt;}
.xa_c00432{left:598.266667pt;}
.x26_c00432{left:620.546667pt;}
.x27_c00432{left:632.066667pt;}
.x33_c00432{left:645.893333pt;}
.x15_c00432{left:652.026667pt;}
.xc_c00432{left:656.640000pt;}
.xb_c00432{left:665.093333pt;}
.x28_c00432{left:672.773333pt;}
.xd_c00432{left:680.453333pt;}
.x3a_c00432{left:688.893333pt;}
.x29_c00432{left:698.880000pt;}
.x2a_c00432{left:708.093333pt;}
.x2b_c00432{left:728.066667pt;}
.x2c_c00432{left:739.586667pt;}
.x18_c00432{left:751.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00433;src:url('chunks/assets/font_f108596ddce6e1cd2c85c947.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:1.109863;font-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_c00433{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);}
.v0_c00433{vertical-align:0.000000px;}
.ls0_c00433{letter-spacing:0.000000px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00433{word-spacing:0.000000px;}
.fc0_c00433{color:transparent;}
.fs0_c00433{font-size:600.000000px;}
.y0_c00433{bottom:0.000000px;}
.y1_c00433{bottom:15.000000px;}
.h2_c00433{height:539.941406px;}
.h0_c00433{height:1505.955000px;}
.h1_c00433{height:1506.000000px;}
.w1_c00433{width:1086.750000px;}
.w0_c00433{width:1086.915000px;}
.x0_c00433{left:0.000000px;}
.x1_c00433{left:15.000000px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ws0_c00433{word-spacing:0.000000pt;}
.fs0_c00433{font-size:533.333333pt;}
.y0_c00433{bottom:0.000000pt;}
.y1_c00433{bottom:13.333333pt;}
.h2_c00433{height:479.947917pt;}
.h0_c00433{height:1338.626667pt;}
.h1_c00433{height:1338.666667pt;}
.w1_c00433{width:966.000000pt;}
.w0_c00433{width:966.146667pt;}
.x0_c00433{left:0.000000pt;}
.x1_c00433{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b2272f676b6d0772c3f034a.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.109863;font-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_c00434{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c00434{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m6_c00434{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c00434{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);}
.m3_c00434{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00434{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c00434{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);}
.m1_c00434{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c00434{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2_c00434{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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;}
.fc0_c00434{color:transparent;}
.fs1_c00434{font-size:3.456000px;}
.fs7_c00434{font-size:6.000000px;}
.fs2_c00434{font-size:6.900000px;}
.fs3_c00434{font-size:10.380000px;}
.fs9_c00434{font-size:13.800000px;}
.fs5_c00434{font-size:17.280000px;}
.fs6_c00434{font-size:24.180000px;}
.fs0_c00434{font-size:41.460000px;}
.fs8_c00434{font-size:55.320000px;}
.fs4_c00434{font-size:124.440000px;}
.y0_c00434{bottom:0.000000px;}
.yb_c00434{bottom:869.190000px;}
.ya_c00434{bottom:873.510000px;}
.y9_c00434{bottom:1266.630000px;}
.y7_c00434{bottom:1351.290000px;}
.y8_c00434{bottom:1354.755000px;}
.y5_c00434{bottom:1368.570000px;}
.y6_c00434{bottom:1370.310000px;}
.y3_c00434{bottom:1373.760000px;}
.y4_c00434{bottom:1374.630000px;}
.y1_c00434{bottom:1415.235000px;}
.y2_c00434{bottom:1420.410000px;}
.h3_c00434{height:3.110063px;}
.h9_c00434{height:5.399414px;}
.h4_c00434{height:6.209326px;}
.h5_c00434{height:9.340986px;}
.hb_c00434{height:12.418652px;}
.h7_c00434{height:15.550313px;}
.h8_c00434{height:21.759639px;}
.h2_c00434{height:37.309951px;}
.ha_c00434{height:49.782598px;}
.h6_c00434{height:111.983848px;}
.h0_c00434{height:1515.450000px;}
.h1_c00434{height:1515.750000px;}
.w0_c00434{width:1079.130000px;}
.w1_c00434{width:1079.250000px;}
.x0_c00434{left:0.000000px;}
.x3_c00434{left:105.405000px;}
.x8_c00434{left:118.365000px;}
.x4_c00434{left:122.685000px;}
.x9_c00434{left:127.005000px;}
.x6_c00434{left:155.520000px;}
.x5_c00434{left:158.115000px;}
.x7_c00434{left:172.800000px;}
.x1_c00434{left:175.395000px;}
.x2_c00434{left:204.765000px;}
.xb_c00434{left:1043.715000px;}
.xa_c00434{left:1051.485000px;}
.xc_c00434{left:1053.210000px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls0_c00434{letter-spacing:0.000000pt;}
.ws0_c00434{word-spacing:0.000000pt;}
.fs1_c00434{font-size:3.072000pt;}
.fs7_c00434{font-size:5.333333pt;}
.fs2_c00434{font-size:6.133333pt;}
.fs3_c00434{font-size:9.226667pt;}
.fs9_c00434{font-size:12.266667pt;}
.fs5_c00434{font-size:15.360000pt;}
.fs6_c00434{font-size:21.493333pt;}
.fs0_c00434{font-size:36.853333pt;}
.fs8_c00434{font-size:49.173333pt;}
.fs4_c00434{font-size:110.613333pt;}
.y0_c00434{bottom:0.000000pt;}
.yb_c00434{bottom:772.613333pt;}
.ya_c00434{bottom:776.453333pt;}
.y9_c00434{bottom:1125.893333pt;}
.y7_c00434{bottom:1201.146667pt;}
.y8_c00434{bottom:1204.226667pt;}
.y5_c00434{bottom:1216.506667pt;}
.y6_c00434{bottom:1218.053333pt;}
.y3_c00434{bottom:1221.120000pt;}
.y4_c00434{bottom:1221.893333pt;}
.y1_c00434{bottom:1257.986667pt;}
.y2_c00434{bottom:1262.586667pt;}
.h3_c00434{height:2.764500pt;}
.h9_c00434{height:4.799479pt;}
.h4_c00434{height:5.519401pt;}
.h5_c00434{height:8.303099pt;}
.hb_c00434{height:11.038802pt;}
.h7_c00434{height:13.822500pt;}
.h8_c00434{height:19.341901pt;}
.h2_c00434{height:33.164401pt;}
.ha_c00434{height:44.251198pt;}
.h6_c00434{height:99.541198pt;}
.h0_c00434{height:1347.066667pt;}
.h1_c00434{height:1347.333333pt;}
.w0_c00434{width:959.226667pt;}
.w1_c00434{width:959.333333pt;}
.x0_c00434{left:0.000000pt;}
.x3_c00434{left:93.693333pt;}
.x8_c00434{left:105.213333pt;}
.x4_c00434{left:109.053333pt;}
.x9_c00434{left:112.893333pt;}
.x6_c00434{left:138.240000pt;}
.x5_c00434{left:140.546667pt;}
.x7_c00434{left:153.600000pt;}
.x1_c00434{left:155.906667pt;}
.x2_c00434{left:182.013333pt;}
.xb_c00434{left:927.746667pt;}
.xa_c00434{left:934.653333pt;}
.xc_c00434{left:936.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33e306ca8b133d716bc1d060.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:1.109863;font-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_c00435{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);}
.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;}
.fs0_c00435{font-size:600.000000px;}
.y0_c00435{bottom:0.000000px;}
.y1_c00435{bottom:15.000000px;}
.h1_c00435{height:539.941406px;}
.h0_c00435{height:1512.000000px;}
.w0_c00435{width:1100.730000px;}
.w1_c00435{width:1101.000000px;}
.x0_c00435{left:0.000000px;}
.x1_c00435{left:15.000000px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ws0_c00435{word-spacing:0.000000pt;}
.fs0_c00435{font-size:533.333333pt;}
.y0_c00435{bottom:0.000000pt;}
.y1_c00435{bottom:13.333333pt;}
.h1_c00435{height:479.947917pt;}
.h0_c00435{height:1344.000000pt;}
.w0_c00435{width:978.426667pt;}
.w1_c00435{width:978.666667pt;}
.x0_c00435{left:0.000000pt;}
.x1_c00435{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5295c796346e3ee7b96f153a.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.109863;font-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_c00436{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);}
.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;}
.fs0_c00436{font-size:600.000000px;}
.y0_c00436{bottom:0.000000px;}
.y1_c00436{bottom:15.000000px;}
.h2_c00436{height:539.941406px;}
.h0_c00436{height:1515.450000px;}
.h1_c00436{height:1515.750000px;}
.w0_c00436{width:1079.130000px;}
.w1_c00436{width:1079.250000px;}
.x0_c00436{left:0.000000px;}
.x1_c00436{left:15.000000px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls0_c00436{letter-spacing:0.000000pt;}
.ws0_c00436{word-spacing:0.000000pt;}
.fs0_c00436{font-size:533.333333pt;}
.y0_c00436{bottom:0.000000pt;}
.y1_c00436{bottom:13.333333pt;}
.h2_c00436{height:479.947917pt;}
.h0_c00436{height:1347.066667pt;}
.h1_c00436{height:1347.333333pt;}
.w0_c00436{width:959.226667pt;}
.w1_c00436{width:959.333333pt;}
.x0_c00436{left:0.000000pt;}
.x1_c00436{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85c221e9d1e6f53bdc8ca9a1.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:1.109863;font-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_c00437{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c00437{transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);}
.mf_c00437{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10_c00437{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);}
.me_c00437{transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);}
.m8_c00437{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c00437{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00437{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);}
.m9_c00437{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);}
.mc_c00437{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);}
.ma_c00437{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m11_c00437{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m12_c00437{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m13_c00437{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mb_c00437{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m6_c00437{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md_c00437{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5_c00437{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m0_c00437{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m14_c00437{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m2_c00437{transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.847500,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;}
.fs5_c00437{font-size:3.456000px;}
.fs3_c00437{font-size:6.900000px;}
.fs0_c00437{font-size:13.800000px;}
.fs2_c00437{font-size:17.280000px;}
.fs7_c00437{font-size:24.180000px;}
.fs6_c00437{font-size:27.660000px;}
.fs8_c00437{font-size:31.080000px;}
.fs1_c00437{font-size:41.460000px;}
.fs4_c00437{font-size:51.840000px;}
.fsc_c00437{font-size:79.500000px;}
.fs9_c00437{font-size:103.680000px;}
.fsb_c00437{font-size:110.580000px;}
.fsa_c00437{font-size:145.140000px;}
.y0_c00437{bottom:0.000000px;}
.y13_c00437{bottom:885.600000px;}
.y12_c00437{bottom:892.515000px;}
.y11_c00437{bottom:893.370000px;}
.yf_c00437{bottom:933.990000px;}
.yd_c00437{bottom:936.570000px;}
.y10_c00437{bottom:941.760000px;}
.ye_c00437{bottom:966.810000px;}
.yc_c00437{bottom:973.725000px;}
.ya_c00437{bottom:974.595000px;}
.yb_c00437{bottom:978.915000px;}
.y9_c00437{bottom:1132.710000px;}
.y8_c00437{bottom:1229.475000px;}
.y7_c00437{bottom:1232.925000px;}
.y5_c00437{bottom:1299.450000px;}
.y6_c00437{bottom:1304.640000px;}
.y2_c00437{bottom:1309.830000px;}
.y3_c00437{bottom:1317.600000px;}
.y4_c00437{bottom:1318.470000px;}
.y1_c00437{bottom:1322.790000px;}
.h6_c00437{height:3.110063px;}
.h4_c00437{height:6.209326px;}
.h1_c00437{height:12.418652px;}
.h3_c00437{height:15.550313px;}
.h8_c00437{height:21.759639px;}
.h7_c00437{height:24.891299px;}
.h9_c00437{height:27.968965px;}
.h2_c00437{height:37.309951px;}
.h5_c00437{height:46.650937px;}
.hd_c00437{height:71.542236px;}
.ha_c00437{height:93.301875px;}
.hc_c00437{height:99.511201px;}
.hb_c00437{height:130.611826px;}
.h0_c00437{height:1512.000000px;}
.w0_c00437{width:1100.730000px;}
.w1_c00437{width:1101.000000px;}
.x0_c00437{left:0.000000px;}
.x9_c00437{left:168.480000px;}
.xa_c00437{left:212.550000px;}
.xb_c00437{left:253.155000px;}
.xf_c00437{left:277.350000px;}
.xc_c00437{left:281.670000px;}
.x10_c00437{left:310.170000px;}
.x11_c00437{left:314.490000px;}
.xd_c00437{left:318.810000px;}
.x14_c00437{left:332.640000px;}
.x15_c00437{left:336.090000px;}
.xe_c00437{left:355.965000px;}
.x16_c00437{left:365.475000px;}
.x12_c00437{left:387.075000px;}
.x1_c00437{left:465.690000px;}
.x2_c00437{left:467.430000px;}
.x13_c00437{left:476.070000px;}
.x3_c00437{left:491.610000px;}
.x4_c00437{left:506.310000px;}
.x5_c00437{left:514.080000px;}
.x7_c00437{left:578.010000px;}
.x8_c00437{left:583.200000px;}
.x6_c00437{left:787.110000px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ws0_c00437{word-spacing:0.000000pt;}
.fs5_c00437{font-size:3.072000pt;}
.fs3_c00437{font-size:6.133333pt;}
.fs0_c00437{font-size:12.266667pt;}
.fs2_c00437{font-size:15.360000pt;}
.fs7_c00437{font-size:21.493333pt;}
.fs6_c00437{font-size:24.586667pt;}
.fs8_c00437{font-size:27.626667pt;}
.fs1_c00437{font-size:36.853333pt;}
.fs4_c00437{font-size:46.080000pt;}
.fsc_c00437{font-size:70.666667pt;}
.fs9_c00437{font-size:92.160000pt;}
.fsb_c00437{font-size:98.293333pt;}
.fsa_c00437{font-size:129.013333pt;}
.y0_c00437{bottom:0.000000pt;}
.y13_c00437{bottom:787.200000pt;}
.y12_c00437{bottom:793.346667pt;}
.y11_c00437{bottom:794.106667pt;}
.yf_c00437{bottom:830.213333pt;}
.yd_c00437{bottom:832.506667pt;}
.y10_c00437{bottom:837.120000pt;}
.ye_c00437{bottom:859.386667pt;}
.yc_c00437{bottom:865.533333pt;}
.ya_c00437{bottom:866.306667pt;}
.yb_c00437{bottom:870.146667pt;}
.y9_c00437{bottom:1006.853333pt;}
.y8_c00437{bottom:1092.866667pt;}
.y7_c00437{bottom:1095.933333pt;}
.y5_c00437{bottom:1155.066667pt;}
.y6_c00437{bottom:1159.680000pt;}
.y2_c00437{bottom:1164.293333pt;}
.y3_c00437{bottom:1171.200000pt;}
.y4_c00437{bottom:1171.973333pt;}
.y1_c00437{bottom:1175.813333pt;}
.h6_c00437{height:2.764500pt;}
.h4_c00437{height:5.519401pt;}
.h1_c00437{height:11.038802pt;}
.h3_c00437{height:13.822500pt;}
.h8_c00437{height:19.341901pt;}
.h7_c00437{height:22.125599pt;}
.h9_c00437{height:24.861302pt;}
.h2_c00437{height:33.164401pt;}
.h5_c00437{height:41.467500pt;}
.hd_c00437{height:63.593099pt;}
.ha_c00437{height:82.935000pt;}
.hc_c00437{height:88.454401pt;}
.hb_c00437{height:116.099401pt;}
.h0_c00437{height:1344.000000pt;}
.w0_c00437{width:978.426667pt;}
.w1_c00437{width:978.666667pt;}
.x0_c00437{left:0.000000pt;}
.x9_c00437{left:149.760000pt;}
.xa_c00437{left:188.933333pt;}
.xb_c00437{left:225.026667pt;}
.xf_c00437{left:246.533333pt;}
.xc_c00437{left:250.373333pt;}
.x10_c00437{left:275.706667pt;}
.x11_c00437{left:279.546667pt;}
.xd_c00437{left:283.386667pt;}
.x14_c00437{left:295.680000pt;}
.x15_c00437{left:298.746667pt;}
.xe_c00437{left:316.413333pt;}
.x16_c00437{left:324.866667pt;}
.x12_c00437{left:344.066667pt;}
.x1_c00437{left:413.946667pt;}
.x2_c00437{left:415.493333pt;}
.x13_c00437{left:423.173333pt;}
.x3_c00437{left:436.986667pt;}
.x4_c00437{left:450.053333pt;}
.x5_c00437{left:456.960000pt;}
.x7_c00437{left:513.786667pt;}
.x8_c00437{left:518.400000pt;}
.x6_c00437{left:699.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cd809ca8a8f5ef8abca9b898.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.109863;font-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_c00438{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00438{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.mbd_c00438{transform:matrix(0.074250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074250,0.000000,0.000000,0.250000,0,0);}
.m22_c00438{transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);}
.m60_c00438{transform:matrix(0.082825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082825,0.000000,0.000000,0.250000,0,0);}
.md_c00438{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m44_c00438{transform:matrix(0.101675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101675,0.000000,0.000000,0.250000,0,0);}
.mb8_c00438{transform:matrix(0.114325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114325,0.000000,0.000000,0.250000,0,0);}
.mb4_c00438{transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);}
.m50_c00438{transform:matrix(0.121725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121725,0.000000,0.000000,0.250000,0,0);}
.m6e_c00438{transform:matrix(0.124525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124525,0.000000,0.000000,0.250000,0,0);}
.mc0_c00438{transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);}
.m80_c00438{transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);}
.m40_c00438{transform:matrix(0.129325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129325,0.000000,0.000000,0.250000,0,0);}
.m3d_c00438{transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);}
.m3f_c00438{transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);}
.m0_c00438{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00438{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00438{transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);}
.m2f_c00438{transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);}
.m86_c00438{transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);}
.mbb_c00438{transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);}
.m7b_c00438{transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);}
.m29_c00438{transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);}
.ma3_c00438{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);}
.m71_c00438{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m41_c00438{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m33_c00438{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);}
.mb3_c00438{transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);}
.m69_c00438{transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);}
.m34_c00438{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m83_c00438{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m8a_c00438{transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);}
.m6f_c00438{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);}
.mb6_c00438{transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);}
.m8d_c00438{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m70_c00438{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m91_c00438{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m2d_c00438{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);}
.mb7_c00438{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m3e_c00438{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m90_c00438{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.ma9_c00438{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m7c_c00438{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);}
.m7a_c00438{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m32_c00438{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);}
.m85_c00438{transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182375,0.000000,0.000000,0.250000,0,0);}
.m6b_c00438{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);}
.m35_c00438{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.m51_c00438{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m2c_c00438{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);}
.m66_c00438{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.ma2_c00438{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m8b_c00438{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m26_c00438{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m3c_c00438{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);}
.m7f_c00438{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.m7d_c00438{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);}
.maa_c00438{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);}
.m5f_c00438{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m43_c00438{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);}
.m47_c00438{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.m97_c00438{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);}
.mbf_c00438{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m5e_c00438{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.m84_c00438{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.m9c_c00438{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.m81_c00438{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m37_c00438{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.mc5_c00438{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);}
.m49_c00438{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);}
.m31_c00438{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m74_c00438{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);}
.m9f_c00438{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.ma1_c00438{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m95_c00438{transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);}
.ma0_c00438{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);}
.mc2_c00438{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);}
.m92_c00438{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.m39_c00438{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.m7_c00438{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.m94_c00438{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m68_c00438{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.m6_c00438{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.mb0_c00438{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);}
.m75_c00438{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);}
.m4d_c00438{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);}
.m42_c00438{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);}
.m4a_c00438{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);}
.m24_c00438{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);}
.m98_c00438{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.mb2_c00438{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m99_c00438{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m52_c00438{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);}
.m4c_c00438{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);}
.m2a_c00438{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.mb9_c00438{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.ma6_c00438{transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);}
.m48_c00438{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.mae_c00438{transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);}
.m46_c00438{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);}
.m87_c00438{transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);}
.mbe_c00438{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);}
.m9a_c00438{transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);}
.m77_c00438{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m3a_c00438{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.mab_c00438{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);}
.mac_c00438{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);}
.m78_c00438{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.mba_c00438{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);}
.m88_c00438{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);}
.mb5_c00438{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);}
.me_c00438{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);}
.ma8_c00438{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4f_c00438{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);}
.m4b_c00438{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);}
.m23_c00438{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);}
.m30_c00438{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);}
.m6a_c00438{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m54_c00438{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00438{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m38_c00438{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00438{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);}
.m25_c00438{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);}
.m12_c00438{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m79_c00438{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9d_c00438{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);}
.m6d_c00438{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00438{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);}
.m27_c00438{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);}
.m2b_c00438{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00438{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc_c00438{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8c_c00438{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00438{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);}
.m72_c00438{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00438{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m20_c00438{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m73_c00438{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00438{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00438{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c00438{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_c00438{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.maf_c00438{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m89_c00438{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00438{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m9_c00438{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);}
.m9e_c00438{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00438{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m21_c00438{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m5a_c00438{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);}
.m82_c00438{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2_c00438{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);}
.m61_c00438{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00438{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m67_c00438{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00438{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00438{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);}
.m57_c00438{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mad_c00438{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);}
.m58_c00438{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m13_c00438{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1_c00438{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma_c00438{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m59_c00438{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m56_c00438{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m62_c00438{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m55_c00438{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m16_c00438{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.mf_c00438{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);}
.m9b_c00438{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5d_c00438{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m76_c00438{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mbc_c00438{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m6c_c00438{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m17_c00438{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4_c00438{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m96_c00438{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m3_c00438{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m36_c00438{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00438{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.ma5_c00438{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m8_c00438{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.mb_c00438{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);}
.m53_c00438{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m11_c00438{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc3_c00438{transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);}
.m93_c00438{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00438{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m14_c00438{transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);}
.m5_c00438{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00438{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.m19_c00438{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.m18_c00438{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m15_c00438{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m64_c00438{transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);}
.m65_c00438{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m7e_c00438{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00438{transform:matrix(4.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.817500,0.000000,0.000000,0.250000,0,0);}
.m63_c00438{transform:matrix(10.945000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(10.945000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(10.945000,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;}
.fs0_c00438{font-size:3.456000px;}
.fsa_c00438{font-size:6.000000px;}
.fs4_c00438{font-size:6.900000px;}
.fs9_c00438{font-size:10.380000px;}
.fs1_c00438{font-size:13.800000px;}
.fs7_c00438{font-size:17.280000px;}
.fs2_c00438{font-size:20.760000px;}
.fs3_c00438{font-size:24.180000px;}
.fsb_c00438{font-size:27.660000px;}
.fs5_c00438{font-size:31.080000px;}
.fs6_c00438{font-size:34.560000px;}
.fs26_c00438{font-size:38.040000px;}
.fs8_c00438{font-size:41.460000px;}
.fs29_c00438{font-size:44.940000px;}
.fs1d_c00438{font-size:48.360000px;}
.fs24_c00438{font-size:51.840000px;}
.fs22_c00438{font-size:55.320000px;}
.fs27_c00438{font-size:58.740000px;}
.fs20_c00438{font-size:62.220000px;}
.fs1f_c00438{font-size:65.640000px;}
.fs11_c00438{font-size:69.120000px;}
.fs10_c00438{font-size:72.600000px;}
.fsc_c00438{font-size:76.020000px;}
.fs17_c00438{font-size:79.500000px;}
.fs14_c00438{font-size:82.920000px;}
.fsd_c00438{font-size:86.400000px;}
.fs25_c00438{font-size:89.880000px;}
.fs23_c00438{font-size:93.300000px;}
.fs1c_c00438{font-size:96.780000px;}
.fs18_c00438{font-size:100.200000px;}
.fse_c00438{font-size:103.680000px;}
.fsf_c00438{font-size:107.160000px;}
.fs13_c00438{font-size:110.580000px;}
.fs19_c00438{font-size:114.060000px;}
.fs16_c00438{font-size:117.480000px;}
.fs15_c00438{font-size:120.960000px;}
.fs12_c00438{font-size:124.440000px;}
.fs1b_c00438{font-size:127.860000px;}
.fs1a_c00438{font-size:131.340000px;}
.fs1e_c00438{font-size:134.760000px;}
.fs21_c00438{font-size:138.240000px;}
.fs28_c00438{font-size:141.720000px;}
.y0_c00438{bottom:0.000000px;}
.yfe_c00438{bottom:415.590000px;}
.yfd_c00438{bottom:417.315000px;}
.yfb_c00438{bottom:419.910000px;}
.y103_c00438{bottom:421.635000px;}
.y100_c00438{bottom:422.490000px;}
.y107_c00438{bottom:423.360000px;}
.y109_c00438{bottom:425.085000px;}
.yfa_c00438{bottom:425.955000px;}
.yff_c00438{bottom:426.810000px;}
.y102_c00438{bottom:427.680000px;}
.yfc_c00438{bottom:430.275000px;}
.y101_c00438{bottom:431.130000px;}
.y10a_c00438{bottom:432.870000px;}
.y104_c00438{bottom:433.725000px;}
.y106_c00438{bottom:434.595000px;}
.y108_c00438{bottom:438.915000px;}
.y105_c00438{bottom:441.510000px;}
.yf3_c00438{bottom:442.365000px;}
.yf0_c00438{bottom:443.235000px;}
.yf5_c00438{bottom:444.090000px;}
.yf2_c00438{bottom:444.960000px;}
.yf6_c00438{bottom:447.555000px;}
.yf4_c00438{bottom:451.005000px;}
.yf9_c00438{bottom:451.875000px;}
.yef_c00438{bottom:452.730000px;}
.yf7_c00438{bottom:453.600000px;}
.yf1_c00438{bottom:460.515000px;}
.yf8_c00438{bottom:461.370000px;}
.ye6_c00438{bottom:470.880000px;}
.ye5_c00438{bottom:471.750000px;}
.ye8_c00438{bottom:474.330000px;}
.ye9_c00438{bottom:477.795000px;}
.ye7_c00438{bottom:478.650000px;}
.yea_c00438{bottom:485.565000px;}
.yeb_c00438{bottom:486.435000px;}
.yec_c00438{bottom:489.030000px;}
.yee_c00438{bottom:492.480000px;}
.ydf_c00438{bottom:498.525000px;}
.yed_c00438{bottom:500.250000px;}
.yde_c00438{bottom:501.120000px;}
.ye2_c00438{bottom:503.715000px;}
.ye0_c00438{bottom:504.570000px;}
.ye3_c00438{bottom:505.440000px;}
.ydb_c00438{bottom:506.310000px;}
.ydd_c00438{bottom:508.035000px;}
.ye1_c00438{bottom:508.890000px;}
.ye4_c00438{bottom:509.760000px;}
.ydc_c00438{bottom:514.080000px;}
.yd3_c00438{bottom:522.720000px;}
.yd4_c00438{bottom:525.315000px;}
.yd5_c00438{bottom:526.170000px;}
.yd6_c00438{bottom:527.040000px;}
.yd0_c00438{bottom:527.910000px;}
.yd2_c00438{bottom:529.635000px;}
.yd8_c00438{bottom:530.490000px;}
.yd9_c00438{bottom:535.680000px;}
.yd7_c00438{bottom:536.550000px;}
.yda_c00438{bottom:540.000000px;}
.yd1_c00438{bottom:545.190000px;}
.yc8_c00438{bottom:547.770000px;}
.yc9_c00438{bottom:549.510000px;}
.yca_c00438{bottom:550.365000px;}
.ycb_c00438{bottom:552.090000px;}
.ycd_c00438{bottom:552.960000px;}
.ycf_c00438{bottom:557.280000px;}
.ycc_c00438{bottom:560.730000px;}
.yce_c00438{bottom:561.600000px;}
.yc7_c00438{bottom:563.325000px;}
.ybf_c00438{bottom:577.155000px;}
.yc3_c00438{bottom:579.750000px;}
.yc2_c00438{bottom:580.605000px;}
.yc5_c00438{bottom:581.475000px;}
.yc0_c00438{bottom:582.330000px;}
.yc1_c00438{bottom:583.200000px;}
.yc6_c00438{bottom:585.795000px;}
.yc4_c00438{bottom:586.650000px;}
.ybe_c00438{bottom:588.390000px;}
.ybd_c00438{bottom:597.885000px;}
.yb6_c00438{bottom:599.610000px;}
.yb9_c00438{bottom:603.075000px;}
.yba_c00438{bottom:603.930000px;}
.yb7_c00438{bottom:605.670000px;}
.yb5_c00438{bottom:606.525000px;}
.yb8_c00438{bottom:609.120000px;}
.ybb_c00438{bottom:611.715000px;}
.ybc_c00438{bottom:615.165000px;}
.yaa_c00438{bottom:620.355000px;}
.yae_c00438{bottom:622.080000px;}
.yab_c00438{bottom:625.530000px;}
.yb0_c00438{bottom:626.400000px;}
.yad_c00438{bottom:627.270000px;}
.yac_c00438{bottom:628.125000px;}
.yb1_c00438{bottom:628.995000px;}
.yb3_c00438{bottom:629.850000px;}
.yb4_c00438{bottom:630.720000px;}
.yaf_c00438{bottom:634.170000px;}
.yb2_c00438{bottom:635.910000px;}
.ya5_c00438{bottom:649.725000px;}
.ya6_c00438{bottom:651.450000px;}
.ya7_c00438{bottom:656.640000px;}
.ya8_c00438{bottom:667.005000px;}
.ya4_c00438{bottom:673.050000px;}
.y9e_c00438{bottom:675.645000px;}
.y9d_c00438{bottom:676.515000px;}
.y9f_c00438{bottom:677.370000px;}
.ya9_c00438{bottom:679.965000px;}
.ya3_c00438{bottom:681.690000px;}
.ya0_c00438{bottom:683.430000px;}
.ya1_c00438{bottom:685.155000px;}
.ya2_c00438{bottom:686.010000px;}
.y97_c00438{bottom:698.115000px;}
.y96_c00438{bottom:698.970000px;}
.y98_c00438{bottom:699.840000px;}
.y9a_c00438{bottom:702.435000px;}
.y99_c00438{bottom:709.350000px;}
.y9b_c00438{bottom:711.075000px;}
.y9c_c00438{bottom:713.670000px;}
.y92_c00438{bottom:727.485000px;}
.y94_c00438{bottom:730.080000px;}
.y93_c00438{bottom:731.805000px;}
.y95_c00438{bottom:736.125000px;}
.y91_c00438{bottom:742.170000px;}
.y90_c00438{bottom:743.910000px;}
.y89_c00438{bottom:748.230000px;}
.y8b_c00438{bottom:750.810000px;}
.y8a_c00438{bottom:751.680000px;}
.y8e_c00438{bottom:752.550000px;}
.y8c_c00438{bottom:757.725000px;}
.y8d_c00438{bottom:758.595000px;}
.y8f_c00438{bottom:780.195000px;}
.y87_c00438{bottom:800.070000px;}
.y88_c00438{bottom:801.795000px;}
.y7a_c00438{bottom:823.395000px;}
.y7b_c00438{bottom:826.845000px;}
.y79_c00438{bottom:827.715000px;}
.y73_c00438{bottom:828.570000px;}
.y74_c00438{bottom:829.440000px;}
.y7c_c00438{bottom:830.310000px;}
.y76_c00438{bottom:832.035000px;}
.y77_c00438{bottom:834.630000px;}
.y78_c00438{bottom:837.210000px;}
.y75_c00438{bottom:846.720000px;}
.y6d_c00438{bottom:849.315000px;}
.y6c_c00438{bottom:850.170000px;}
.y71_c00438{bottom:851.040000px;}
.y6f_c00438{bottom:851.910000px;}
.y72_c00438{bottom:853.635000px;}
.y6e_c00438{bottom:857.085000px;}
.y70_c00438{bottom:857.955000px;}
.y65_c00438{bottom:859.680000px;}
.y67_c00438{bottom:864.000000px;}
.y6a_c00438{bottom:866.595000px;}
.y63_c00438{bottom:868.320000px;}
.y66_c00438{bottom:870.045000px;}
.y68_c00438{bottom:872.640000px;}
.y69_c00438{bottom:874.365000px;}
.y6b_c00438{bottom:876.090000px;}
.y64_c00438{bottom:877.830000px;}
.y5e_c00438{bottom:893.370000px;}
.y5f_c00438{bottom:895.965000px;}
.y60_c00438{bottom:898.560000px;}
.y62_c00438{bottom:901.155000px;}
.y61_c00438{bottom:904.605000px;}
.y85_c00438{bottom:907.200000px;}
.y86_c00438{bottom:910.650000px;}
.y5d_c00438{bottom:915.840000px;}
.y56_c00438{bottom:921.885000px;}
.y57_c00438{bottom:922.755000px;}
.y58_c00438{bottom:924.480000px;}
.y59_c00438{bottom:928.800000px;}
.y5a_c00438{bottom:930.525000px;}
.y55_c00438{bottom:936.570000px;}
.y5b_c00438{bottom:942.630000px;}
.y5c_c00438{bottom:944.355000px;}
.y4e_c00438{bottom:959.910000px;}
.y50_c00438{bottom:963.360000px;}
.y51_c00438{bottom:965.085000px;}
.y54_c00438{bottom:965.955000px;}
.y53_c00438{bottom:966.810000px;}
.y4f_c00438{bottom:968.550000px;}
.y4d_c00438{bottom:969.405000px;}
.y52_c00438{bottom:973.725000px;}
.y84_c00438{bottom:978.915000px;}
.y47_c00438{bottom:981.510000px;}
.y48_c00438{bottom:992.730000px;}
.y4a_c00438{bottom:993.600000px;}
.y4b_c00438{bottom:994.470000px;}
.y4c_c00438{bottom:1001.370000px;}
.y49_c00438{bottom:1003.110000px;}
.y3e_c00438{bottom:1024.710000px;}
.y41_c00438{bottom:1026.435000px;}
.y44_c00438{bottom:1029.030000px;}
.y42_c00438{bottom:1029.885000px;}
.y2c_c00438{bottom:1030.755000px;}
.y45_c00438{bottom:1031.610000px;}
.y40_c00438{bottom:1034.205000px;}
.y43_c00438{bottom:1037.670000px;}
.y46_c00438{bottom:1041.990000px;}
.y3f_c00438{bottom:1042.845000px;}
.y35_c00438{bottom:1060.995000px;}
.y39_c00438{bottom:1061.850000px;}
.y3b_c00438{bottom:1062.720000px;}
.y37_c00438{bottom:1063.590000px;}
.y38_c00438{bottom:1064.445000px;}
.y36_c00438{bottom:1065.315000px;}
.y3a_c00438{bottom:1067.910000px;}
.y3c_c00438{bottom:1071.360000px;}
.y3d_c00438{bottom:1073.085000px;}
.y31_c00438{bottom:1093.830000px;}
.y32_c00438{bottom:1095.555000px;}
.y30_c00438{bottom:1098.150000px;}
.y34_c00438{bottom:1099.005000px;}
.y33_c00438{bottom:1100.730000px;}
.y2f_c00438{bottom:1105.920000px;}
.y2e_c00438{bottom:1108.515000px;}
.y82_c00438{bottom:1111.965000px;}
.y81_c00438{bottom:1112.835000px;}
.y83_c00438{bottom:1115.430000px;}
.y7d_c00438{bottom:1116.285000px;}
.y7e_c00438{bottom:1118.010000px;}
.y2d_c00438{bottom:1120.605000px;}
.y7f_c00438{bottom:1130.970000px;}
.y80_c00438{bottom:1140.480000px;}
.y2b_c00438{bottom:1163.805000px;}
.y2a_c00438{bottom:1167.270000px;}
.y14_c00438{bottom:1173.315000px;}
.y13_c00438{bottom:1175.910000px;}
.y12_c00438{bottom:1189.725000px;}
.y11_c00438{bottom:1199.235000px;}
.y28_c00438{bottom:1205.280000px;}
.y29_c00438{bottom:1207.005000px;}
.y26_c00438{bottom:1213.050000px;}
.y27_c00438{bottom:1216.515000px;}
.y10_c00438{bottom:1218.240000px;}
.y25_c00438{bottom:1220.835000px;}
.y23_c00438{bottom:1223.430000px;}
.y24_c00438{bottom:1225.155000px;}
.yf_c00438{bottom:1232.925000px;}
.y2_c00438{bottom:1239.840000px;}
.y1_c00438{bottom:1243.290000px;}
.y22_c00438{bottom:1245.030000px;}
.y21_c00438{bottom:1251.930000px;}
.y1f_c00438{bottom:1253.670000px;}
.y20_c00438{bottom:1255.395000px;}
.y1e_c00438{bottom:1257.120000px;}
.y1c_c00438{bottom:1264.890000px;}
.y1d_c00438{bottom:1265.760000px;}
.ye_c00438{bottom:1272.675000px;}
.y1b_c00438{bottom:1294.275000px;}
.y1a_c00438{bottom:1304.640000px;}
.yc_c00438{bottom:1314.150000px;}
.yb_c00438{bottom:1315.005000px;}
.yd_c00438{bottom:1317.600000px;}
.y19_c00438{bottom:1324.515000px;}
.ya_c00438{bottom:1327.110000px;}
.y18_c00438{bottom:1327.965000px;}
.y9_c00438{bottom:1332.285000px;}
.y8_c00438{bottom:1334.880000px;}
.y17_c00438{bottom:1340.925000px;}
.y16_c00438{bottom:1350.435000px;}
.y7_c00438{bottom:1356.480000px;}
.y15_c00438{bottom:1359.075000px;}
.y6_c00438{bottom:1361.670000px;}
.y5_c00438{bottom:1373.760000px;}
.y4_c00438{bottom:1415.235000px;}
.y3_c00438{bottom:1421.280000px;}
.h2_c00438{height:3.110063px;}
.hc_c00438{height:5.399414px;}
.h6_c00438{height:6.209326px;}
.hb_c00438{height:9.340986px;}
.h3_c00438{height:12.418652px;}
.h9_c00438{height:15.550313px;}
.h4_c00438{height:18.681973px;}
.h5_c00438{height:21.759639px;}
.hd_c00438{height:24.891299px;}
.h7_c00438{height:27.968965px;}
.h8_c00438{height:31.100625px;}
.h28_c00438{height:34.232285px;}
.ha_c00438{height:37.309951px;}
.h2b_c00438{height:40.441611px;}
.h1f_c00438{height:43.519277px;}
.h26_c00438{height:46.650937px;}
.h24_c00438{height:49.782598px;}
.h29_c00438{height:52.860264px;}
.h22_c00438{height:55.991924px;}
.h21_c00438{height:59.069590px;}
.h13_c00438{height:62.201250px;}
.h12_c00438{height:65.332910px;}
.he_c00438{height:68.410576px;}
.h19_c00438{height:71.542236px;}
.h16_c00438{height:74.619902px;}
.hf_c00438{height:77.751563px;}
.h27_c00438{height:80.883223px;}
.h25_c00438{height:83.960889px;}
.h1e_c00438{height:87.092549px;}
.h1a_c00438{height:90.170215px;}
.h10_c00438{height:93.301875px;}
.h11_c00438{height:96.433535px;}
.h15_c00438{height:99.511201px;}
.h1b_c00438{height:102.642861px;}
.h18_c00438{height:105.720527px;}
.h17_c00438{height:108.852188px;}
.h14_c00438{height:111.983848px;}
.h1d_c00438{height:115.061514px;}
.h1c_c00438{height:118.193174px;}
.h20_c00438{height:121.270840px;}
.h23_c00438{height:124.402500px;}
.h2a_c00438{height:127.534160px;}
.h0_c00438{height:1515.450000px;}
.h1_c00438{height:1515.750000px;}
.w0_c00438{width:1079.130000px;}
.w1_c00438{width:1079.250000px;}
.x0_c00438{left:0.000000px;}
.x1b_c00438{left:124.410000px;}
.xb3_c00438{left:157.245000px;}
.xc0_c00438{left:165.885000px;}
.x17_c00438{left:176.250000px;}
.xc1_c00438{left:179.715000px;}
.xb8_c00438{left:181.440000px;}
.xb4_c00438{left:184.035000px;}
.xb5_c00438{left:193.530000px;}
.x5a_c00438{left:199.590000px;}
.x18_c00438{left:202.170000px;}
.x24_c00438{left:207.360000px;}
.xac_c00438{left:210.810000px;}
.x56_c00438{left:212.548815px;}
.xa6_c00438{left:215.130000px;}
.x15_c00438{left:216.870000px;}
.x16_c00438{left:219.450000px;}
.x25_c00438{left:221.190000px;}
.x5b_c00438{left:224.640000px;}
.xa7_c00438{left:227.235000px;}
.x9a_c00438{left:230.685000px;}
.xaf_c00438{left:232.410000px;}
.x5c_c00438{left:234.150000px;}
.xb9_c00438{left:235.875000px;}
.x35_c00438{left:240.195000px;}
.x46_c00438{left:241.920000px;}
.x9b_c00438{left:269.565000px;}
.x57_c00438{left:283.395000px;}
.x4f_c00438{left:286.845000px;}
.x9c_c00438{left:291.165000px;}
.xaa_c00438{left:296.355000px;}
.xb0_c00438{left:311.040000px;}
.x4a_c00438{left:323.130000px;}
.x9d_c00438{left:327.450000px;}
.xb6_c00438{left:329.190000px;}
.xc2_c00438{left:330.915000px;}
.x8e_c00438{left:334.365000px;}
.x3f_c00438{left:338.685000px;}
.x36_c00438{left:342.150000px;}
.x96_c00438{left:343.875000px;}
.x50_c00438{left:345.600000px;}
.x5d_c00438{left:348.195000px;}
.x2e_c00438{left:351.645000px;}
.x7e_c00438{left:354.240000px;}
.xc3_c00438{left:355.965000px;}
.x26_c00438{left:361.155000px;}
.x1_c00438{left:362.880000px;}
.xa8_c00438{left:365.475000px;}
.x27_c00438{left:374.115000px;}
.x2_c00438{left:376.710000px;}
.x2c_c00438{left:378.435000px;}
.x81_c00438{left:380.160000px;}
.x2f_c00438{left:382.755000px;}
.x37_c00438{left:388.800000px;}
.x89_c00438{left:390.525000px;}
.xba_c00438{left:393.990000px;}
.x40_c00438{left:397.440000px;}
.x72_c00438{left:401.760000px;}
.x38_c00438{left:403.485000px;}
.x97_c00438{left:411.270000px;}
.x82_c00438{left:415.590000px;}
.x47_c00438{left:419.040000px;}
.x84_c00438{left:422.490000px;}
.x5e_c00438{left:425.955000px;}
.x7_c00438{left:430.275000px;}
.x9e_c00438{left:432.000000px;}
.x75_c00438{left:436.318755px;}
.x4b_c00438{left:438.915000px;}
.x3_c00438{left:443.235000px;}
.xbb_c00438{left:446.685000px;}
.x65_c00438{left:448.410000px;}
.x10_c00438{left:451.875000px;}
.x5_c00438{left:455.325000px;}
.x62_c00438{left:457.050000px;}
.x76_c00438{left:459.645000px;}
.xd_c00438{left:461.370000px;}
.x66_c00438{left:468.285000px;}
.xf_c00438{left:470.880000px;}
.x7f_c00438{left:480.390000px;}
.x9f_c00438{left:482.970000px;}
.x12_c00438{left:484.710000px;}
.x58_c00438{left:488.160000px;}
.x6b_c00438{left:495.930000px;}
.xa2_c00438{left:499.395000px;}
.x11_c00438{left:501.990000px;}
.x6c_c00438{left:505.440000px;}
.x30_c00438{left:509.760000px;}
.x8f_c00438{left:514.950000px;}
.x8_c00438{left:518.400000px;}
.x59_c00438{left:520.125000px;}
.x85_c00438{left:522.720000px;}
.x9_c00438{left:525.315000px;}
.xe_c00438{left:527.040000px;}
.x67_c00438{left:535.680000px;}
.xa_c00438{left:538.275000px;}
.x4c_c00438{left:540.000000px;}
.xb_c00438{left:546.045000px;}
.xc_c00438{left:552.960000px;}
.xbc_c00438{left:554.685000px;}
.x73_c00438{left:557.280000px;}
.x4_c00438{left:560.730000px;}
.x77_c00438{left:562.470000px;}
.x6_c00438{left:565.920000px;}
.x41_c00438{left:569.370000px;}
.x63_c00438{left:571.110000px;}
.x48_c00438{left:575.430000px;}
.x6d_c00438{left:581.475000px;}
.x90_c00438{left:584.070000px;}
.x91_c00438{left:588.390000px;}
.x5f_c00438{left:592.710000px;}
.x39_c00438{left:595.290000px;}
.xa3_c00438{left:597.030000px;}
.x51_c00438{left:601.350000px;}
.xb1_c00438{left:603.930000px;}
.x3a_c00438{left:606.525000px;}
.x86_c00438{left:616.035000px;}
.xad_c00438{left:620.355000px;}
.x6e_c00438{left:622.950000px;}
.x1c_c00438{left:626.400000px;}
.x1d_c00438{left:628.125000px;}
.x92_c00438{left:630.720000px;}
.x8a_c00438{left:635.040000px;}
.x1e_c00438{left:637.635000px;}
.x28_c00438{left:639.360000px;}
.x87_c00438{left:642.810000px;}
.xc4_c00438{left:647.130000px;}
.x29_c00438{left:651.450000px;}
.x42_c00438{left:653.190000px;}
.x52_c00438{left:659.235000px;}
.xa4_c00438{left:664.410000px;}
.x4d_c00438{left:672.195000px;}
.x78_c00438{left:676.515000px;}
.x31_c00438{left:692.070000px;}
.x93_c00438{left:696.390000px;}
.xa0_c00438{left:699.840000px;}
.x43_c00438{left:704.160000px;}
.x3b_c00438{left:706.755000px;}
.x53_c00438{left:708.480000px;}
.xbd_c00438{left:710.205000px;}
.x8b_c00438{left:712.800000px;}
.x74_c00438{left:715.395000px;}
.x68_c00438{left:722.310000px;}
.x3c_c00438{left:724.035000px;}
.xae_c00438{left:730.080000px;}
.x44_c00438{left:733.530000px;}
.x60_c00438{left:739.590000px;}
.xc5_c00438{left:747.360000px;}
.x6f_c00438{left:749.085000px;}
.x94_c00438{left:753.405000px;}
.xa5_c00438{left:756.000000px;}
.x83_c00438{left:757.725000px;}
.xb2_c00438{left:760.320000px;}
.x3d_c00438{left:765.510000px;}
.xa9_c00438{left:769.830000px;}
.x61_c00438{left:773.280000px;}
.x80_c00438{left:775.875000px;}
.xa1_c00438{left:784.515000px;}
.x32_c00438{left:786.240000px;}
.x49_c00438{left:787.965000px;}
.x3e_c00438{left:789.690000px;}
.x8c_c00438{left:794.010000px;}
.xbe_c00438{left:800.070000px;}
.x54_c00438{left:806.115000px;}
.xab_c00438{left:810.435000px;}
.xbf_c00438{left:812.160000px;}
.xc6_c00438{left:813.885000px;}
.x4e_c00438{left:817.350000px;}
.xc7_c00438{left:824.250000px;}
.x13_c00438{left:825.990000px;}
.x64_c00438{left:828.570000px;}
.x33_c00438{left:832.035000px;}
.x55_c00438{left:834.630000px;}
.x45_c00438{left:838.950000px;}
.x8d_c00438{left:847.590000px;}
.x14_c00438{left:851.910000px;}
.xc8_c00438{left:853.635000px;}
.xc9_c00438{left:861.405000px;}
.x70_c00438{left:864.870000px;}
.x88_c00438{left:867.450000px;}
.x69_c00438{left:870.915000px;}
.x71_c00438{left:873.510000px;}
.xb7_c00438{left:877.830000px;}
.x34_c00438{left:879.555000px;}
.x95_c00438{left:883.005000px;}
.x6a_c00438{left:885.600000px;}
.x98_c00438{left:892.515000px;}
.x79_c00438{left:894.240000px;}
.x2a_c00438{left:906.330000px;}
.x7a_c00438{left:914.115000px;}
.x99_c00438{left:916.710000px;}
.x2b_c00438{left:928.800000px;}
.x1f_c00438{left:932.250000px;}
.x20_c00438{left:939.165000px;}
.x7b_c00438{left:940.890000px;}
.x21_c00438{left:946.080456px;}
.x22_c00438{left:994.470000px;}
.x19_c00438{left:998.790000px;}
.x23_c00438{left:1005.690000px;}
.x1a_c00438{left:1009.155000px;}
.x7c_c00438{left:1035.075000px;}
.x7d_c00438{left:1048.890000px;}
.x2d_c00438{left:1057.530000px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ws0_c00438{word-spacing:0.000000pt;}
.fs0_c00438{font-size:3.072000pt;}
.fsa_c00438{font-size:5.333333pt;}
.fs4_c00438{font-size:6.133333pt;}
.fs9_c00438{font-size:9.226667pt;}
.fs1_c00438{font-size:12.266667pt;}
.fs7_c00438{font-size:15.360000pt;}
.fs2_c00438{font-size:18.453333pt;}
.fs3_c00438{font-size:21.493333pt;}
.fsb_c00438{font-size:24.586667pt;}
.fs5_c00438{font-size:27.626667pt;}
.fs6_c00438{font-size:30.720000pt;}
.fs26_c00438{font-size:33.813333pt;}
.fs8_c00438{font-size:36.853333pt;}
.fs29_c00438{font-size:39.946667pt;}
.fs1d_c00438{font-size:42.986667pt;}
.fs24_c00438{font-size:46.080000pt;}
.fs22_c00438{font-size:49.173333pt;}
.fs27_c00438{font-size:52.213333pt;}
.fs20_c00438{font-size:55.306667pt;}
.fs1f_c00438{font-size:58.346667pt;}
.fs11_c00438{font-size:61.440000pt;}
.fs10_c00438{font-size:64.533333pt;}
.fsc_c00438{font-size:67.573333pt;}
.fs17_c00438{font-size:70.666667pt;}
.fs14_c00438{font-size:73.706667pt;}
.fsd_c00438{font-size:76.800000pt;}
.fs25_c00438{font-size:79.893333pt;}
.fs23_c00438{font-size:82.933333pt;}
.fs1c_c00438{font-size:86.026667pt;}
.fs18_c00438{font-size:89.066667pt;}
.fse_c00438{font-size:92.160000pt;}
.fsf_c00438{font-size:95.253333pt;}
.fs13_c00438{font-size:98.293333pt;}
.fs19_c00438{font-size:101.386667pt;}
.fs16_c00438{font-size:104.426667pt;}
.fs15_c00438{font-size:107.520000pt;}
.fs12_c00438{font-size:110.613333pt;}
.fs1b_c00438{font-size:113.653333pt;}
.fs1a_c00438{font-size:116.746667pt;}
.fs1e_c00438{font-size:119.786667pt;}
.fs21_c00438{font-size:122.880000pt;}
.fs28_c00438{font-size:125.973333pt;}
.y0_c00438{bottom:0.000000pt;}
.yfe_c00438{bottom:369.413333pt;}
.yfd_c00438{bottom:370.946667pt;}
.yfb_c00438{bottom:373.253333pt;}
.y103_c00438{bottom:374.786667pt;}
.y100_c00438{bottom:375.546667pt;}
.y107_c00438{bottom:376.320000pt;}
.y109_c00438{bottom:377.853333pt;}
.yfa_c00438{bottom:378.626667pt;}
.yff_c00438{bottom:379.386667pt;}
.y102_c00438{bottom:380.160000pt;}
.yfc_c00438{bottom:382.466667pt;}
.y101_c00438{bottom:383.226667pt;}
.y10a_c00438{bottom:384.773333pt;}
.y104_c00438{bottom:385.533333pt;}
.y106_c00438{bottom:386.306667pt;}
.y108_c00438{bottom:390.146667pt;}
.y105_c00438{bottom:392.453333pt;}
.yf3_c00438{bottom:393.213333pt;}
.yf0_c00438{bottom:393.986667pt;}
.yf5_c00438{bottom:394.746667pt;}
.yf2_c00438{bottom:395.520000pt;}
.yf6_c00438{bottom:397.826667pt;}
.yf4_c00438{bottom:400.893333pt;}
.yf9_c00438{bottom:401.666667pt;}
.yef_c00438{bottom:402.426667pt;}
.yf7_c00438{bottom:403.200000pt;}
.yf1_c00438{bottom:409.346667pt;}
.yf8_c00438{bottom:410.106667pt;}
.ye6_c00438{bottom:418.560000pt;}
.ye5_c00438{bottom:419.333333pt;}
.ye8_c00438{bottom:421.626667pt;}
.ye9_c00438{bottom:424.706667pt;}
.ye7_c00438{bottom:425.466667pt;}
.yea_c00438{bottom:431.613333pt;}
.yeb_c00438{bottom:432.386667pt;}
.yec_c00438{bottom:434.693333pt;}
.yee_c00438{bottom:437.760000pt;}
.ydf_c00438{bottom:443.133333pt;}
.yed_c00438{bottom:444.666667pt;}
.yde_c00438{bottom:445.440000pt;}
.ye2_c00438{bottom:447.746667pt;}
.ye0_c00438{bottom:448.506667pt;}
.ye3_c00438{bottom:449.280000pt;}
.ydb_c00438{bottom:450.053333pt;}
.ydd_c00438{bottom:451.586667pt;}
.ye1_c00438{bottom:452.346667pt;}
.ye4_c00438{bottom:453.120000pt;}
.ydc_c00438{bottom:456.960000pt;}
.yd3_c00438{bottom:464.640000pt;}
.yd4_c00438{bottom:466.946667pt;}
.yd5_c00438{bottom:467.706667pt;}
.yd6_c00438{bottom:468.480000pt;}
.yd0_c00438{bottom:469.253333pt;}
.yd2_c00438{bottom:470.786667pt;}
.yd8_c00438{bottom:471.546667pt;}
.yd9_c00438{bottom:476.160000pt;}
.yd7_c00438{bottom:476.933333pt;}
.yda_c00438{bottom:480.000000pt;}
.yd1_c00438{bottom:484.613333pt;}
.yc8_c00438{bottom:486.906667pt;}
.yc9_c00438{bottom:488.453333pt;}
.yca_c00438{bottom:489.213333pt;}
.ycb_c00438{bottom:490.746667pt;}
.ycd_c00438{bottom:491.520000pt;}
.ycf_c00438{bottom:495.360000pt;}
.ycc_c00438{bottom:498.426667pt;}
.yce_c00438{bottom:499.200000pt;}
.yc7_c00438{bottom:500.733333pt;}
.ybf_c00438{bottom:513.026667pt;}
.yc3_c00438{bottom:515.333333pt;}
.yc2_c00438{bottom:516.093333pt;}
.yc5_c00438{bottom:516.866667pt;}
.yc0_c00438{bottom:517.626667pt;}
.yc1_c00438{bottom:518.400000pt;}
.yc6_c00438{bottom:520.706667pt;}
.yc4_c00438{bottom:521.466667pt;}
.ybe_c00438{bottom:523.013333pt;}
.ybd_c00438{bottom:531.453333pt;}
.yb6_c00438{bottom:532.986667pt;}
.yb9_c00438{bottom:536.066667pt;}
.yba_c00438{bottom:536.826667pt;}
.yb7_c00438{bottom:538.373333pt;}
.yb5_c00438{bottom:539.133333pt;}
.yb8_c00438{bottom:541.440000pt;}
.ybb_c00438{bottom:543.746667pt;}
.ybc_c00438{bottom:546.813333pt;}
.yaa_c00438{bottom:551.426667pt;}
.yae_c00438{bottom:552.960000pt;}
.yab_c00438{bottom:556.026667pt;}
.yb0_c00438{bottom:556.800000pt;}
.yad_c00438{bottom:557.573333pt;}
.yac_c00438{bottom:558.333333pt;}
.yb1_c00438{bottom:559.106667pt;}
.yb3_c00438{bottom:559.866667pt;}
.yb4_c00438{bottom:560.640000pt;}
.yaf_c00438{bottom:563.706667pt;}
.yb2_c00438{bottom:565.253333pt;}
.ya5_c00438{bottom:577.533333pt;}
.ya6_c00438{bottom:579.066667pt;}
.ya7_c00438{bottom:583.680000pt;}
.ya8_c00438{bottom:592.893333pt;}
.ya4_c00438{bottom:598.266667pt;}
.y9e_c00438{bottom:600.573333pt;}
.y9d_c00438{bottom:601.346667pt;}
.y9f_c00438{bottom:602.106667pt;}
.ya9_c00438{bottom:604.413333pt;}
.ya3_c00438{bottom:605.946667pt;}
.ya0_c00438{bottom:607.493333pt;}
.ya1_c00438{bottom:609.026667pt;}
.ya2_c00438{bottom:609.786667pt;}
.y97_c00438{bottom:620.546667pt;}
.y96_c00438{bottom:621.306667pt;}
.y98_c00438{bottom:622.080000pt;}
.y9a_c00438{bottom:624.386667pt;}
.y99_c00438{bottom:630.533333pt;}
.y9b_c00438{bottom:632.066667pt;}
.y9c_c00438{bottom:634.373333pt;}
.y92_c00438{bottom:646.653333pt;}
.y94_c00438{bottom:648.960000pt;}
.y93_c00438{bottom:650.493333pt;}
.y95_c00438{bottom:654.333333pt;}
.y91_c00438{bottom:659.706667pt;}
.y90_c00438{bottom:661.253333pt;}
.y89_c00438{bottom:665.093333pt;}
.y8b_c00438{bottom:667.386667pt;}
.y8a_c00438{bottom:668.160000pt;}
.y8e_c00438{bottom:668.933333pt;}
.y8c_c00438{bottom:673.533333pt;}
.y8d_c00438{bottom:674.306667pt;}
.y8f_c00438{bottom:693.506667pt;}
.y87_c00438{bottom:711.173333pt;}
.y88_c00438{bottom:712.706667pt;}
.y7a_c00438{bottom:731.906667pt;}
.y7b_c00438{bottom:734.973333pt;}
.y79_c00438{bottom:735.746667pt;}
.y73_c00438{bottom:736.506667pt;}
.y74_c00438{bottom:737.280000pt;}
.y7c_c00438{bottom:738.053333pt;}
.y76_c00438{bottom:739.586667pt;}
.y77_c00438{bottom:741.893333pt;}
.y78_c00438{bottom:744.186667pt;}
.y75_c00438{bottom:752.640000pt;}
.y6d_c00438{bottom:754.946667pt;}
.y6c_c00438{bottom:755.706667pt;}
.y71_c00438{bottom:756.480000pt;}
.y6f_c00438{bottom:757.253333pt;}
.y72_c00438{bottom:758.786667pt;}
.y6e_c00438{bottom:761.853333pt;}
.y70_c00438{bottom:762.626667pt;}
.y65_c00438{bottom:764.160000pt;}
.y67_c00438{bottom:768.000000pt;}
.y6a_c00438{bottom:770.306667pt;}
.y63_c00438{bottom:771.840000pt;}
.y66_c00438{bottom:773.373333pt;}
.y68_c00438{bottom:775.680000pt;}
.y69_c00438{bottom:777.213333pt;}
.y6b_c00438{bottom:778.746667pt;}
.y64_c00438{bottom:780.293333pt;}
.y5e_c00438{bottom:794.106667pt;}
.y5f_c00438{bottom:796.413333pt;}
.y60_c00438{bottom:798.720000pt;}
.y62_c00438{bottom:801.026667pt;}
.y61_c00438{bottom:804.093333pt;}
.y85_c00438{bottom:806.400000pt;}
.y86_c00438{bottom:809.466667pt;}
.y5d_c00438{bottom:814.080000pt;}
.y56_c00438{bottom:819.453333pt;}
.y57_c00438{bottom:820.226667pt;}
.y58_c00438{bottom:821.760000pt;}
.y59_c00438{bottom:825.600000pt;}
.y5a_c00438{bottom:827.133333pt;}
.y55_c00438{bottom:832.506667pt;}
.y5b_c00438{bottom:837.893333pt;}
.y5c_c00438{bottom:839.426667pt;}
.y4e_c00438{bottom:853.253333pt;}
.y50_c00438{bottom:856.320000pt;}
.y51_c00438{bottom:857.853333pt;}
.y54_c00438{bottom:858.626667pt;}
.y53_c00438{bottom:859.386667pt;}
.y4f_c00438{bottom:860.933333pt;}
.y4d_c00438{bottom:861.693333pt;}
.y52_c00438{bottom:865.533333pt;}
.y84_c00438{bottom:870.146667pt;}
.y47_c00438{bottom:872.453333pt;}
.y48_c00438{bottom:882.426667pt;}
.y4a_c00438{bottom:883.200000pt;}
.y4b_c00438{bottom:883.973333pt;}
.y4c_c00438{bottom:890.106667pt;}
.y49_c00438{bottom:891.653333pt;}
.y3e_c00438{bottom:910.853333pt;}
.y41_c00438{bottom:912.386667pt;}
.y44_c00438{bottom:914.693333pt;}
.y42_c00438{bottom:915.453333pt;}
.y2c_c00438{bottom:916.226667pt;}
.y45_c00438{bottom:916.986667pt;}
.y40_c00438{bottom:919.293333pt;}
.y43_c00438{bottom:922.373333pt;}
.y46_c00438{bottom:926.213333pt;}
.y3f_c00438{bottom:926.973333pt;}
.y35_c00438{bottom:943.106667pt;}
.y39_c00438{bottom:943.866667pt;}
.y3b_c00438{bottom:944.640000pt;}
.y37_c00438{bottom:945.413333pt;}
.y38_c00438{bottom:946.173333pt;}
.y36_c00438{bottom:946.946667pt;}
.y3a_c00438{bottom:949.253333pt;}
.y3c_c00438{bottom:952.320000pt;}
.y3d_c00438{bottom:953.853333pt;}
.y31_c00438{bottom:972.293333pt;}
.y32_c00438{bottom:973.826667pt;}
.y30_c00438{bottom:976.133333pt;}
.y34_c00438{bottom:976.893333pt;}
.y33_c00438{bottom:978.426667pt;}
.y2f_c00438{bottom:983.040000pt;}
.y2e_c00438{bottom:985.346667pt;}
.y82_c00438{bottom:988.413333pt;}
.y81_c00438{bottom:989.186667pt;}
.y83_c00438{bottom:991.493333pt;}
.y7d_c00438{bottom:992.253333pt;}
.y7e_c00438{bottom:993.786667pt;}
.y2d_c00438{bottom:996.093333pt;}
.y7f_c00438{bottom:1005.306667pt;}
.y80_c00438{bottom:1013.760000pt;}
.y2b_c00438{bottom:1034.493333pt;}
.y2a_c00438{bottom:1037.573333pt;}
.y14_c00438{bottom:1042.946667pt;}
.y13_c00438{bottom:1045.253333pt;}
.y12_c00438{bottom:1057.533333pt;}
.y11_c00438{bottom:1065.986667pt;}
.y28_c00438{bottom:1071.360000pt;}
.y29_c00438{bottom:1072.893333pt;}
.y26_c00438{bottom:1078.266667pt;}
.y27_c00438{bottom:1081.346667pt;}
.y10_c00438{bottom:1082.880000pt;}
.y25_c00438{bottom:1085.186667pt;}
.y23_c00438{bottom:1087.493333pt;}
.y24_c00438{bottom:1089.026667pt;}
.yf_c00438{bottom:1095.933333pt;}
.y2_c00438{bottom:1102.080000pt;}
.y1_c00438{bottom:1105.146667pt;}
.y22_c00438{bottom:1106.693333pt;}
.y21_c00438{bottom:1112.826667pt;}
.y1f_c00438{bottom:1114.373333pt;}
.y20_c00438{bottom:1115.906667pt;}
.y1e_c00438{bottom:1117.440000pt;}
.y1c_c00438{bottom:1124.346667pt;}
.y1d_c00438{bottom:1125.120000pt;}
.ye_c00438{bottom:1131.266667pt;}
.y1b_c00438{bottom:1150.466667pt;}
.y1a_c00438{bottom:1159.680000pt;}
.yc_c00438{bottom:1168.133333pt;}
.yb_c00438{bottom:1168.893333pt;}
.yd_c00438{bottom:1171.200000pt;}
.y19_c00438{bottom:1177.346667pt;}
.ya_c00438{bottom:1179.653333pt;}
.y18_c00438{bottom:1180.413333pt;}
.y9_c00438{bottom:1184.253333pt;}
.y8_c00438{bottom:1186.560000pt;}
.y17_c00438{bottom:1191.933333pt;}
.y16_c00438{bottom:1200.386667pt;}
.y7_c00438{bottom:1205.760000pt;}
.y15_c00438{bottom:1208.066667pt;}
.y6_c00438{bottom:1210.373333pt;}
.y5_c00438{bottom:1221.120000pt;}
.y4_c00438{bottom:1257.986667pt;}
.y3_c00438{bottom:1263.360000pt;}
.h2_c00438{height:2.764500pt;}
.hc_c00438{height:4.799479pt;}
.h6_c00438{height:5.519401pt;}
.hb_c00438{height:8.303099pt;}
.h3_c00438{height:11.038802pt;}
.h9_c00438{height:13.822500pt;}
.h4_c00438{height:16.606198pt;}
.h5_c00438{height:19.341901pt;}
.hd_c00438{height:22.125599pt;}
.h7_c00438{height:24.861302pt;}
.h8_c00438{height:27.645000pt;}
.h28_c00438{height:30.428698pt;}
.ha_c00438{height:33.164401pt;}
.h2b_c00438{height:35.948099pt;}
.h1f_c00438{height:38.683802pt;}
.h26_c00438{height:41.467500pt;}
.h24_c00438{height:44.251198pt;}
.h29_c00438{height:46.986901pt;}
.h22_c00438{height:49.770599pt;}
.h21_c00438{height:52.506302pt;}
.h13_c00438{height:55.290000pt;}
.h12_c00438{height:58.073698pt;}
.he_c00438{height:60.809401pt;}
.h19_c00438{height:63.593099pt;}
.h16_c00438{height:66.328802pt;}
.hf_c00438{height:69.112500pt;}
.h27_c00438{height:71.896198pt;}
.h25_c00438{height:74.631901pt;}
.h1e_c00438{height:77.415599pt;}
.h1a_c00438{height:80.151302pt;}
.h10_c00438{height:82.935000pt;}
.h11_c00438{height:85.718698pt;}
.h15_c00438{height:88.454401pt;}
.h1b_c00438{height:91.238099pt;}
.h18_c00438{height:93.973802pt;}
.h17_c00438{height:96.757500pt;}
.h14_c00438{height:99.541198pt;}
.h1d_c00438{height:102.276901pt;}
.h1c_c00438{height:105.060599pt;}
.h20_c00438{height:107.796302pt;}
.h23_c00438{height:110.580000pt;}
.h2a_c00438{height:113.363698pt;}
.h0_c00438{height:1347.066667pt;}
.h1_c00438{height:1347.333333pt;}
.w0_c00438{width:959.226667pt;}
.w1_c00438{width:959.333333pt;}
.x0_c00438{left:0.000000pt;}
.x1b_c00438{left:110.586667pt;}
.xb3_c00438{left:139.773333pt;}
.xc0_c00438{left:147.453333pt;}
.x17_c00438{left:156.666667pt;}
.xc1_c00438{left:159.746667pt;}
.xb8_c00438{left:161.280000pt;}
.xb4_c00438{left:163.586667pt;}
.xb5_c00438{left:172.026667pt;}
.x5a_c00438{left:177.413333pt;}
.x18_c00438{left:179.706667pt;}
.x24_c00438{left:184.320000pt;}
.xac_c00438{left:187.386667pt;}
.x56_c00438{left:188.932280pt;}
.xa6_c00438{left:191.226667pt;}
.x15_c00438{left:192.773333pt;}
.x16_c00438{left:195.066667pt;}
.x25_c00438{left:196.613333pt;}
.x5b_c00438{left:199.680000pt;}
.xa7_c00438{left:201.986667pt;}
.x9a_c00438{left:205.053333pt;}
.xaf_c00438{left:206.586667pt;}
.x5c_c00438{left:208.133333pt;}
.xb9_c00438{left:209.666667pt;}
.x35_c00438{left:213.506667pt;}
.x46_c00438{left:215.040000pt;}
.x9b_c00438{left:239.613333pt;}
.x57_c00438{left:251.906667pt;}
.x4f_c00438{left:254.973333pt;}
.x9c_c00438{left:258.813333pt;}
.xaa_c00438{left:263.426667pt;}
.xb0_c00438{left:276.480000pt;}
.x4a_c00438{left:287.226667pt;}
.x9d_c00438{left:291.066667pt;}
.xb6_c00438{left:292.613333pt;}
.xc2_c00438{left:294.146667pt;}
.x8e_c00438{left:297.213333pt;}
.x3f_c00438{left:301.053333pt;}
.x36_c00438{left:304.133333pt;}
.x96_c00438{left:305.666667pt;}
.x50_c00438{left:307.200000pt;}
.x5d_c00438{left:309.506667pt;}
.x2e_c00438{left:312.573333pt;}
.x7e_c00438{left:314.880000pt;}
.xc3_c00438{left:316.413333pt;}
.x26_c00438{left:321.026667pt;}
.x1_c00438{left:322.560000pt;}
.xa8_c00438{left:324.866667pt;}
.x27_c00438{left:332.546667pt;}
.x2_c00438{left:334.853333pt;}
.x2c_c00438{left:336.386667pt;}
.x81_c00438{left:337.920000pt;}
.x2f_c00438{left:340.226667pt;}
.x37_c00438{left:345.600000pt;}
.x89_c00438{left:347.133333pt;}
.xba_c00438{left:350.213333pt;}
.x40_c00438{left:353.280000pt;}
.x72_c00438{left:357.120000pt;}
.x38_c00438{left:358.653333pt;}
.x97_c00438{left:365.573333pt;}
.x82_c00438{left:369.413333pt;}
.x47_c00438{left:372.480000pt;}
.x84_c00438{left:375.546667pt;}
.x5e_c00438{left:378.626667pt;}
.x7_c00438{left:382.466667pt;}
.x9e_c00438{left:384.000000pt;}
.x75_c00438{left:387.838893pt;}
.x4b_c00438{left:390.146667pt;}
.x3_c00438{left:393.986667pt;}
.xbb_c00438{left:397.053333pt;}
.x65_c00438{left:398.586667pt;}
.x10_c00438{left:401.666667pt;}
.x5_c00438{left:404.733333pt;}
.x62_c00438{left:406.266667pt;}
.x76_c00438{left:408.573333pt;}
.xd_c00438{left:410.106667pt;}
.x66_c00438{left:416.253333pt;}
.xf_c00438{left:418.560000pt;}
.x7f_c00438{left:427.013333pt;}
.x9f_c00438{left:429.306667pt;}
.x12_c00438{left:430.853333pt;}
.x58_c00438{left:433.920000pt;}
.x6b_c00438{left:440.826667pt;}
.xa2_c00438{left:443.906667pt;}
.x11_c00438{left:446.213333pt;}
.x6c_c00438{left:449.280000pt;}
.x30_c00438{left:453.120000pt;}
.x8f_c00438{left:457.733333pt;}
.x8_c00438{left:460.800000pt;}
.x59_c00438{left:462.333333pt;}
.x85_c00438{left:464.640000pt;}
.x9_c00438{left:466.946667pt;}
.xe_c00438{left:468.480000pt;}
.x67_c00438{left:476.160000pt;}
.xa_c00438{left:478.466667pt;}
.x4c_c00438{left:480.000000pt;}
.xb_c00438{left:485.373333pt;}
.xc_c00438{left:491.520000pt;}
.xbc_c00438{left:493.053333pt;}
.x73_c00438{left:495.360000pt;}
.x4_c00438{left:498.426667pt;}
.x77_c00438{left:499.973333pt;}
.x6_c00438{left:503.040000pt;}
.x41_c00438{left:506.106667pt;}
.x63_c00438{left:507.653333pt;}
.x48_c00438{left:511.493333pt;}
.x6d_c00438{left:516.866667pt;}
.x90_c00438{left:519.173333pt;}
.x91_c00438{left:523.013333pt;}
.x5f_c00438{left:526.853333pt;}
.x39_c00438{left:529.146667pt;}
.xa3_c00438{left:530.693333pt;}
.x51_c00438{left:534.533333pt;}
.xb1_c00438{left:536.826667pt;}
.x3a_c00438{left:539.133333pt;}
.x86_c00438{left:547.586667pt;}
.xad_c00438{left:551.426667pt;}
.x6e_c00438{left:553.733333pt;}
.x1c_c00438{left:556.800000pt;}
.x1d_c00438{left:558.333333pt;}
.x92_c00438{left:560.640000pt;}
.x8a_c00438{left:564.480000pt;}
.x1e_c00438{left:566.786667pt;}
.x28_c00438{left:568.320000pt;}
.x87_c00438{left:571.386667pt;}
.xc4_c00438{left:575.226667pt;}
.x29_c00438{left:579.066667pt;}
.x42_c00438{left:580.613333pt;}
.x52_c00438{left:585.986667pt;}
.xa4_c00438{left:590.586667pt;}
.x4d_c00438{left:597.506667pt;}
.x78_c00438{left:601.346667pt;}
.x31_c00438{left:615.173333pt;}
.x93_c00438{left:619.013333pt;}
.xa0_c00438{left:622.080000pt;}
.x43_c00438{left:625.920000pt;}
.x3b_c00438{left:628.226667pt;}
.x53_c00438{left:629.760000pt;}
.xbd_c00438{left:631.293333pt;}
.x8b_c00438{left:633.600000pt;}
.x74_c00438{left:635.906667pt;}
.x68_c00438{left:642.053333pt;}
.x3c_c00438{left:643.586667pt;}
.xae_c00438{left:648.960000pt;}
.x44_c00438{left:652.026667pt;}
.x60_c00438{left:657.413333pt;}
.xc5_c00438{left:664.320000pt;}
.x6f_c00438{left:665.853333pt;}
.x94_c00438{left:669.693333pt;}
.xa5_c00438{left:672.000000pt;}
.x83_c00438{left:673.533333pt;}
.xb2_c00438{left:675.840000pt;}
.x3d_c00438{left:680.453333pt;}
.xa9_c00438{left:684.293333pt;}
.x61_c00438{left:687.360000pt;}
.x80_c00438{left:689.666667pt;}
.xa1_c00438{left:697.346667pt;}
.x32_c00438{left:698.880000pt;}
.x49_c00438{left:700.413333pt;}
.x3e_c00438{left:701.946667pt;}
.x8c_c00438{left:705.786667pt;}
.xbe_c00438{left:711.173333pt;}
.x54_c00438{left:716.546667pt;}
.xab_c00438{left:720.386667pt;}
.xbf_c00438{left:721.920000pt;}
.xc6_c00438{left:723.453333pt;}
.x4e_c00438{left:726.533333pt;}
.xc7_c00438{left:732.666667pt;}
.x13_c00438{left:734.213333pt;}
.x64_c00438{left:736.506667pt;}
.x33_c00438{left:739.586667pt;}
.x55_c00438{left:741.893333pt;}
.x45_c00438{left:745.733333pt;}
.x8d_c00438{left:753.413333pt;}
.x14_c00438{left:757.253333pt;}
.xc8_c00438{left:758.786667pt;}
.xc9_c00438{left:765.693333pt;}
.x70_c00438{left:768.773333pt;}
.x88_c00438{left:771.066667pt;}
.x69_c00438{left:774.146667pt;}
.x71_c00438{left:776.453333pt;}
.xb7_c00438{left:780.293333pt;}
.x34_c00438{left:781.826667pt;}
.x95_c00438{left:784.893333pt;}
.x6a_c00438{left:787.200000pt;}
.x98_c00438{left:793.346667pt;}
.x79_c00438{left:794.880000pt;}
.x2a_c00438{left:805.626667pt;}
.x7a_c00438{left:812.546667pt;}
.x99_c00438{left:814.853333pt;}
.x2b_c00438{left:825.600000pt;}
.x1f_c00438{left:828.666667pt;}
.x20_c00438{left:834.813333pt;}
.x7b_c00438{left:836.346667pt;}
.x21_c00438{left:840.960405pt;}
.x22_c00438{left:883.973333pt;}
.x19_c00438{left:887.813333pt;}
.x23_c00438{left:893.946667pt;}
.x1a_c00438{left:897.026667pt;}
.x7c_c00438{left:920.066667pt;}
.x7d_c00438{left:932.346667pt;}
.x2d_c00438{left:940.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7cef6c399ad28011495cfcda.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:1.109863;font-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_c00439{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m12_c00439{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);}
.me_c00439{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);}
.m4_c00439{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m5_c00439{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m14_c00439{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m0_c00439{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10_c00439{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);}
.m15_c00439{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);}
.m17_c00439{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.mc_c00439{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m1_c00439{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00439{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);}
.m13_c00439{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c00439{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mf_c00439{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c00439{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m11_c00439{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);}
.ma_c00439{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.md_c00439{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.mb_c00439{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m9_c00439{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m16_c00439{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.m6_c00439{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.v1_c00439{vertical-align:-6.900000px;}
.v0_c00439{vertical-align:0.000000px;}
.ls1_c00439{letter-spacing:0.000000px;}
.ls0_c00439{letter-spacing:82.398000px;}
.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;}
.fs4_c00439{font-size:3.456000px;}
.fs9_c00439{font-size:6.000000px;}
.fs8_c00439{font-size:6.900000px;}
.fs1_c00439{font-size:10.380000px;}
.fs7_c00439{font-size:13.800000px;}
.fs0_c00439{font-size:17.280000px;}
.fs6_c00439{font-size:20.760000px;}
.fs5_c00439{font-size:24.180000px;}
.fs3_c00439{font-size:31.080000px;}
.fs2_c00439{font-size:34.560000px;}
.fsf_c00439{font-size:38.040000px;}
.fse_c00439{font-size:62.220000px;}
.fsc_c00439{font-size:65.640000px;}
.fsb_c00439{font-size:131.340000px;}
.fsa_c00439{font-size:155.520000px;}
.fsd_c00439{font-size:159.000000px;}
.y0_c00439{bottom:0.000000px;}
.y29_c00439{bottom:629.850000px;}
.y28_c00439{bottom:639.360000px;}
.y27_c00439{bottom:666.150000px;}
.y25_c00439{bottom:794.880000px;}
.y26_c00439{bottom:796.605000px;}
.y24_c00439{bottom:831.165000px;}
.y23_c00439{bottom:832.890000px;}
.y20_c00439{bottom:835.485000px;}
.y22_c00439{bottom:842.400000px;}
.y21_c00439{bottom:844.995000px;}
.y1e_c00439{bottom:907.200000px;}
.y1f_c00439{bottom:908.925000px;}
.y1b_c00439{bottom:910.650000px;}
.y18_c00439{bottom:949.530000px;}
.y1d_c00439{bottom:950.400000px;}
.y1c_c00439{bottom:951.270000px;}
.y1a_c00439{bottom:965.085000px;}
.y19_c00439{bottom:978.045000px;}
.y16_c00439{bottom:987.555000px;}
.y17_c00439{bottom:1012.605000px;}
.y15_c00439{bottom:1029.885000px;}
.y14_c00439{bottom:1090.365000px;}
.y13_c00439{bottom:1168.125000px;}
.y12_c00439{bottom:1168.995000px;}
.y10_c00439{bottom:1204.410000px;}
.y11_c00439{bottom:1207.005000px;}
.yf_c00439{bottom:1243.290000px;}
.ye_c00439{bottom:1249.350000px;}
.yd_c00439{bottom:1251.075000px;}
.yb_c00439{bottom:1344.390000px;}
.yc_c00439{bottom:1346.115000px;}
.y9_c00439{bottom:1374.630000px;}
.ya_c00439{bottom:1376.355000px;}
.y5_c00439{bottom:1396.230000px;}
.y4_c00439{bottom:1397.085000px;}
.y8_c00439{bottom:1398.810000px;}
.y6_c00439{bottom:1403.130000px;}
.y7_c00439{bottom:1404.000000px;}
.y3_c00439{bottom:1428.195000px;}
.y1_c00439{bottom:1432.515000px;}
.y2_c00439{bottom:1433.370000px;}
.h5_c00439{height:3.110063px;}
.ha_c00439{height:5.399414px;}
.h9_c00439{height:6.209326px;}
.hb_c00439{height:8.650313px;}
.h2_c00439{height:9.340986px;}
.h8_c00439{height:12.418652px;}
.h1_c00439{height:15.550313px;}
.h7_c00439{height:18.681973px;}
.h6_c00439{height:21.759639px;}
.h4_c00439{height:27.968965px;}
.h3_c00439{height:31.100625px;}
.h11_c00439{height:34.232285px;}
.h10_c00439{height:55.991924px;}
.he_c00439{height:59.069590px;}
.hd_c00439{height:118.193174px;}
.hc_c00439{height:139.952812px;}
.hf_c00439{height:143.084473px;}
.h0_c00439{height:1512.000000px;}
.w0_c00439{width:1100.730000px;}
.w1_c00439{width:1101.000000px;}
.x0_c00439{left:0.000000px;}
.x25_c00439{left:2.595000px;}
.x21_c00439{left:16.410000px;}
.x1a_c00439{left:22.470000px;}
.x1b_c00439{left:25.050000px;}
.x14_c00439{left:36.285000px;}
.x1c_c00439{left:38.010000px;}
.x24_c00439{left:42.330000px;}
.x15_c00439{left:64.800000px;}
.x23_c00439{left:83.805000px;}
.x18_c00439{left:85.530000px;}
.x22_c00439{left:108.870000px;}
.x10_c00439{left:125.280000px;}
.x11_c00439{left:134.790000px;}
.x12_c00439{left:136.515000px;}
.x13_c00439{left:151.200000px;}
.x1f_c00439{left:166.755000px;}
.x20_c00439{left:179.715000px;}
.xe_c00439{left:181.440000px;}
.x19_c00439{left:187.485000px;}
.xf_c00439{left:193.530000px;}
.x1d_c00439{left:195.270000px;}
.x1e_c00439{left:204.765000px;}
.x4_c00439{left:227.235000px;}
.xc_c00439{left:231.555000px;}
.xd_c00439{left:244.515000px;}
.x5_c00439{left:252.285000px;}
.x1_c00439{left:412.125000px;}
.x2_c00439{left:433.725000px;}
.x6_c00439{left:456.195000px;}
.x7_c00439{left:470.010000px;}
.x8_c00439{left:520.125000px;}
.x9_c00439{left:534.810000px;}
.xa_c00439{left:735.270000px;}
.xb_c00439{left:756.000000px;}
.x3_c00439{left:816.480000px;}
.x16_c00439{left:936.570000px;}
.x17_c00439{left:964.230000px;}
@media print{
.v1_c00439{vertical-align:-6.133333pt;}
.v0_c00439{vertical-align:0.000000pt;}
.ls1_c00439{letter-spacing:0.000000pt;}
.ls0_c00439{letter-spacing:73.242667pt;}
.ws0_c00439{word-spacing:0.000000pt;}
.fs4_c00439{font-size:3.072000pt;}
.fs9_c00439{font-size:5.333333pt;}
.fs8_c00439{font-size:6.133333pt;}
.fs1_c00439{font-size:9.226667pt;}
.fs7_c00439{font-size:12.266667pt;}
.fs0_c00439{font-size:15.360000pt;}
.fs6_c00439{font-size:18.453333pt;}
.fs5_c00439{font-size:21.493333pt;}
.fs3_c00439{font-size:27.626667pt;}
.fs2_c00439{font-size:30.720000pt;}
.fsf_c00439{font-size:33.813333pt;}
.fse_c00439{font-size:55.306667pt;}
.fsc_c00439{font-size:58.346667pt;}
.fsb_c00439{font-size:116.746667pt;}
.fsa_c00439{font-size:138.240000pt;}
.fsd_c00439{font-size:141.333333pt;}
.y0_c00439{bottom:0.000000pt;}
.y29_c00439{bottom:559.866667pt;}
.y28_c00439{bottom:568.320000pt;}
.y27_c00439{bottom:592.133333pt;}
.y25_c00439{bottom:706.560000pt;}
.y26_c00439{bottom:708.093333pt;}
.y24_c00439{bottom:738.813333pt;}
.y23_c00439{bottom:740.346667pt;}
.y20_c00439{bottom:742.653333pt;}
.y22_c00439{bottom:748.800000pt;}
.y21_c00439{bottom:751.106667pt;}
.y1e_c00439{bottom:806.400000pt;}
.y1f_c00439{bottom:807.933333pt;}
.y1b_c00439{bottom:809.466667pt;}
.y18_c00439{bottom:844.026667pt;}
.y1d_c00439{bottom:844.800000pt;}
.y1c_c00439{bottom:845.573333pt;}
.y1a_c00439{bottom:857.853333pt;}
.y19_c00439{bottom:869.373333pt;}
.y16_c00439{bottom:877.826667pt;}
.y17_c00439{bottom:900.093333pt;}
.y15_c00439{bottom:915.453333pt;}
.y14_c00439{bottom:969.213333pt;}
.y13_c00439{bottom:1038.333333pt;}
.y12_c00439{bottom:1039.106667pt;}
.y10_c00439{bottom:1070.586667pt;}
.y11_c00439{bottom:1072.893333pt;}
.yf_c00439{bottom:1105.146667pt;}
.ye_c00439{bottom:1110.533333pt;}
.yd_c00439{bottom:1112.066667pt;}
.yb_c00439{bottom:1195.013333pt;}
.yc_c00439{bottom:1196.546667pt;}
.y9_c00439{bottom:1221.893333pt;}
.ya_c00439{bottom:1223.426667pt;}
.y5_c00439{bottom:1241.093333pt;}
.y4_c00439{bottom:1241.853333pt;}
.y8_c00439{bottom:1243.386667pt;}
.y6_c00439{bottom:1247.226667pt;}
.y7_c00439{bottom:1248.000000pt;}
.y3_c00439{bottom:1269.506667pt;}
.y1_c00439{bottom:1273.346667pt;}
.y2_c00439{bottom:1274.106667pt;}
.h5_c00439{height:2.764500pt;}
.ha_c00439{height:4.799479pt;}
.h9_c00439{height:5.519401pt;}
.hb_c00439{height:7.689167pt;}
.h2_c00439{height:8.303099pt;}
.h8_c00439{height:11.038802pt;}
.h1_c00439{height:13.822500pt;}
.h7_c00439{height:16.606198pt;}
.h6_c00439{height:19.341901pt;}
.h4_c00439{height:24.861302pt;}
.h3_c00439{height:27.645000pt;}
.h11_c00439{height:30.428698pt;}
.h10_c00439{height:49.770599pt;}
.he_c00439{height:52.506302pt;}
.hd_c00439{height:105.060599pt;}
.hc_c00439{height:124.402500pt;}
.hf_c00439{height:127.186198pt;}
.h0_c00439{height:1344.000000pt;}
.w0_c00439{width:978.426667pt;}
.w1_c00439{width:978.666667pt;}
.x0_c00439{left:0.000000pt;}
.x25_c00439{left:2.306667pt;}
.x21_c00439{left:14.586667pt;}
.x1a_c00439{left:19.973333pt;}
.x1b_c00439{left:22.266667pt;}
.x14_c00439{left:32.253333pt;}
.x1c_c00439{left:33.786667pt;}
.x24_c00439{left:37.626667pt;}
.x15_c00439{left:57.600000pt;}
.x23_c00439{left:74.493333pt;}
.x18_c00439{left:76.026667pt;}
.x22_c00439{left:96.773333pt;}
.x10_c00439{left:111.360000pt;}
.x11_c00439{left:119.813333pt;}
.x12_c00439{left:121.346667pt;}
.x13_c00439{left:134.400000pt;}
.x1f_c00439{left:148.226667pt;}
.x20_c00439{left:159.746667pt;}
.xe_c00439{left:161.280000pt;}
.x19_c00439{left:166.653333pt;}
.xf_c00439{left:172.026667pt;}
.x1d_c00439{left:173.573333pt;}
.x1e_c00439{left:182.013333pt;}
.x4_c00439{left:201.986667pt;}
.xc_c00439{left:205.826667pt;}
.xd_c00439{left:217.346667pt;}
.x5_c00439{left:224.253333pt;}
.x1_c00439{left:366.333333pt;}
.x2_c00439{left:385.533333pt;}
.x6_c00439{left:405.506667pt;}
.x7_c00439{left:417.786667pt;}
.x8_c00439{left:462.333333pt;}
.x9_c00439{left:475.386667pt;}
.xa_c00439{left:653.573333pt;}
.xb_c00439{left:672.000000pt;}
.x3_c00439{left:725.760000pt;}
.x16_c00439{left:832.506667pt;}
.x17_c00439{left:857.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc2ccfb9b5b21c97dea7533b.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.109863;font-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_c00440{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c00440{transform:matrix(0.003375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.003375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.003375,0.000000,0.000000,0.250000,0,0);}
.m10_c00440{transform:matrix(0.027075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027075,0.000000,0.000000,0.250000,0,0);}
.m4_c00440{transform:matrix(0.032825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032825,0.000000,0.000000,0.250000,0,0);}
.m12d_c00440{transform:matrix(0.034100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034100,0.000000,0.000000,0.250000,0,0);}
.m11_c00440{transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034725,0.000000,0.000000,0.250000,0,0);}
.mbc_c00440{transform:matrix(0.037050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037050,0.000000,0.000000,0.250000,0,0);}
.m7_c00440{transform:matrix(0.051875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051875,0.000000,0.000000,0.250000,0,0);}
.m12e_c00440{transform:matrix(0.055800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055800,0.000000,0.000000,0.250000,0,0);}
.m5c_c00440{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m148_c00440{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.meb_c00440{transform:matrix(0.072475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072475,0.000000,0.000000,0.250000,0,0);}
.m1a_c00440{transform:matrix(0.080225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080225,0.000000,0.000000,0.250000,0,0);}
.mf0_c00440{transform:matrix(0.088100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088100,0.000000,0.000000,0.250000,0,0);}
.mc7_c00440{transform:matrix(0.088300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088300,0.000000,0.000000,0.250000,0,0);}
.m141_c00440{transform:matrix(0.094625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094625,0.000000,0.000000,0.250000,0,0);}
.m1_c00440{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m125_c00440{transform:matrix(0.102225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102225,0.000000,0.000000,0.250000,0,0);}
.m6f_c00440{transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);}
.m13f_c00440{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.md2_c00440{transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);}
.m8c_c00440{transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00440{transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);}
.m13e_c00440{transform:matrix(0.114425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114425,0.000000,0.000000,0.250000,0,0);}
.m6d_c00440{transform:matrix(0.116600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116600,0.000000,0.000000,0.250000,0,0);}
.m3e_c00440{transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);}
.m10f_c00440{transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);}
.m7d_c00440{transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);}
.m114_c00440{transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);}
.m4f_c00440{transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);}
.mca_c00440{transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);}
.m54_c00440{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m116_c00440{transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);}
.m10a_c00440{transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);}
.med_c00440{transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);}
.mbe_c00440{transform:matrix(0.131025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131025,0.000000,0.000000,0.250000,0,0);}
.m11c_c00440{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);}
.m3b_c00440{transform:matrix(0.132925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132925,0.000000,0.000000,0.250000,0,0);}
.m109_c00440{transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);}
.md0_c00440{transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);}
.m112_c00440{transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);}
.mde_c00440{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);}
.mb3_c00440{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);}
.m117_c00440{transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);}
.mc_c00440{transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);}
.m140_c00440{transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);}
.m12b_c00440{transform:matrix(0.136025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136025,0.000000,0.000000,0.250000,0,0);}
.m3f_c00440{transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);}
.mec_c00440{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m4a_c00440{transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);}
.m3a_c00440{transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);}
.m129_c00440{transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);}
.m78_c00440{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);}
.m7a_c00440{transform:matrix(0.138025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138025,0.000000,0.000000,0.250000,0,0);}
.m142_c00440{transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);}
.m66_c00440{transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);}
.md1_c00440{transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);}
.m10b_c00440{transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);}
.mb7_c00440{transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);}
.m33_c00440{transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);}
.m27_c00440{transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);}
.m10e_c00440{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m119_c00440{transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);}
.me4_c00440{transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);}
.m150_c00440{transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);}
.m133_c00440{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.md_c00440{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m14a_c00440{transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);}
.m118_c00440{transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);}
.m9f_c00440{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.mdf_c00440{transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);}
.m98_c00440{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.m132_c00440{transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);}
.mb4_c00440{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00440{transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);}
.me2_c00440{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.m102_c00440{transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);}
.mef_c00440{transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);}
.m99_c00440{transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);}
.mc6_c00440{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);}
.m72_c00440{transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);}
.m70_c00440{transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);}
.m130_c00440{transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);}
.m14f_c00440{transform:matrix(0.150200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150200,0.000000,0.000000,0.250000,0,0);}
.m1e_c00440{transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);}
.m14e_c00440{transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);}
.m128_c00440{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.me9_c00440{transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);}
.m12f_c00440{transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);}
.m115_c00440{transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);}
.me1_c00440{transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);}
.m105_c00440{transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);}
.m8d_c00440{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m14c_c00440{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.mbf_c00440{transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);}
.m63_c00440{transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);}
.m39_c00440{transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156000,0.000000,0.000000,0.250000,0,0);}
.m126_c00440{transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);}
.ma6_c00440{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.mb6_c00440{transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);}
.m104_c00440{transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);}
.m14d_c00440{transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);}
.m14b_c00440{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);}
.m111_c00440{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.ma4_c00440{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.mc0_c00440{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);}
.md6_c00440{transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);}
.m120_c00440{transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);}
.mb9_c00440{transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159400,0.000000,0.000000,0.250000,0,0);}
.m121_c00440{transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);}
.mcd_c00440{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);}
.m13d_c00440{transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);}
.mab_c00440{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.m37_c00440{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m29_c00440{transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);}
.m2b_c00440{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);}
.mee_c00440{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.m9c_c00440{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m8f_c00440{transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);}
.mc8_c00440{transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);}
.m100_c00440{transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);}
.mce_c00440{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.m65_c00440{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m43_c00440{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);}
.m90_c00440{transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);}
.mf6_c00440{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.m94_c00440{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);}
.m110_c00440{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m5d_c00440{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m62_c00440{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);}
.ma5_c00440{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mfd_c00440{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m46_c00440{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);}
.m92_c00440{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.mb5_c00440{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m122_c00440{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.mb2_c00440{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);}
.m7e_c00440{transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);}
.mc2_c00440{transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);}
.me0_c00440{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.me6_c00440{transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);}
.m7f_c00440{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);}
.m138_c00440{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);}
.m89_c00440{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m149_c00440{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);}
.m83_c00440{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);}
.m45_c00440{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.ma3_c00440{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);}
.mf2_c00440{transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);}
.m77_c00440{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.m146_c00440{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m145_c00440{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m32_c00440{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);}
.m9b_c00440{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);}
.m60_c00440{transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);}
.m80_c00440{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.m34_c00440{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m75_c00440{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m47_c00440{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.m93_c00440{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);}
.m59_c00440{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);}
.m103_c00440{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);}
.mfb_c00440{transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);}
.m127_c00440{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);}
.m113_c00440{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.mf8_c00440{transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);}
.m35_c00440{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);}
.m11b_c00440{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.m71_c00440{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);}
.m124_c00440{transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);}
.m42_c00440{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.mdd_c00440{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);}
.m137_c00440{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m143_c00440{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);}
.m6b_c00440{transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);}
.m81_c00440{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m108_c00440{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m97_c00440{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);}
.m2_c00440{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);}
.m144_c00440{transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);}
.m24_c00440{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);}
.ma2_c00440{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.mae_c00440{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m76_c00440{transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);}
.ma8_c00440{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00440{transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);}
.m101_c00440{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);}
.mf5_c00440{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m131_c00440{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.m44_c00440{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m135_c00440{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.mb8_c00440{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m6c_c00440{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.m95_c00440{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m12a_c00440{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.mfa_c00440{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);}
.m96_c00440{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);}
.m7b_c00440{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.m52_c00440{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);}
.m11e_c00440{transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);}
.mad_c00440{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);}
.mf1_c00440{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);}
.md4_c00440{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.mb0_c00440{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m11d_c00440{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);}
.m10d_c00440{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);}
.m134_c00440{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);}
.maf_c00440{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.me5_c00440{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);}
.ma1_c00440{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);}
.m9e_c00440{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);}
.m5f_c00440{transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);}
.mf3_c00440{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m26_c00440{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);}
.m147_c00440{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);}
.m3c_c00440{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m123_c00440{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m136_c00440{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);}
.m8b_c00440{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);}
.m1c_c00440{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);}
.m68_c00440{transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);}
.me8_c00440{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);}
.m61_c00440{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);}
.m5e_c00440{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.m31_c00440{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);}
.mac_c00440{transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);}
.mf4_c00440{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);}
.m58_c00440{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);}
.m51_c00440{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.mc4_c00440{transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);}
.mc3_c00440{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.m107_c00440{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);}
.m64_c00440{transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);}
.m2d_c00440{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);}
.m10c_c00440{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.m69_c00440{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);}
.m9d_c00440{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m53_c00440{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);}
.m11a_c00440{transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);}
.m49_c00440{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);}
.m9a_c00440{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.m2a_c00440{transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);}
.mc1_c00440{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);}
.m12c_c00440{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);}
.m88_c00440{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m19_c00440{transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);}
.md5_c00440{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);}
.maa_c00440{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);}
.ma7_c00440{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);}
.m4e_c00440{transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241375,0.000000,0.000000,0.250000,0,0);}
.m86_c00440{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m7c_c00440{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);}
.mff_c00440{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);}
.m2f_c00440{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);}
.m154_c00440{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8_c00440{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);}
.m56_c00440{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);}
.m12_c00440{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);}
.m91_c00440{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);}
.m30_c00440{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mfe_c00440{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00440{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8a_c00440{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);}
.m28_c00440{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00440{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);}
.m4d_c00440{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m85_c00440{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);}
.m6_c00440{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00440{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m48_c00440{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);}
.m36_c00440{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2e_c00440{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);}
.m50_c00440{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);}
.m40_c00440{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);}
.m9_c00440{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf9_c00440{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00440{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);}
.ma0_c00440{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c00440{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mdb_c00440{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m87_c00440{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);}
.m15_c00440{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me7_c00440{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);}
.md8_c00440{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m106_c00440{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);}
.md3_c00440{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00440{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);}
.m67_c00440{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m38_c00440{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);}
.ma_c00440{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00440{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m41_c00440{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);}
.m84_c00440{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);}
.mc9_c00440{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);}
.m1f_c00440{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf_c00440{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me3_c00440{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m79_c00440{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mcf_c00440{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m57_c00440{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m82_c00440{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m153_c00440{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m18_c00440{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mb1_c00440{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);}
.mbd_c00440{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);}
.m1b_c00440{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m13c_c00440{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.md9_c00440{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00440{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m55_c00440{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m8e_c00440{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);}
.m16_c00440{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m22_c00440{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m21_c00440{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m155_c00440{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);}
.m13_c00440{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m152_c00440{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.mfc_c00440{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m25_c00440{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m14_c00440{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m17_c00440{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mcb_c00440{transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);}
.m20_c00440{transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);}
.m151_c00440{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m4b_c00440{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m5b_c00440{transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);}
.mba_c00440{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00440{transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.945000,0.000000,0.000000,0.250000,0,0);}
.mcc_c00440{transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);}
.m73_c00440{transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);}
.m74_c00440{transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);}
.m23_c00440{transform:matrix(1.292500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.292500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.292500,0.000000,0.000000,0.250000,0,0);}
.m5_c00440{transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);}
.mea_c00440{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00440{transform:matrix(1.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.520000,0.000000,0.000000,0.250000,0,0);}
.md7_c00440{transform:matrix(1.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.545000,0.000000,0.000000,0.250000,0,0);}
.mda_c00440{transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00440{transform:matrix(3.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.235000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00440{transform:matrix(4.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.302500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00440{transform:matrix(4.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.752500,0.000000,0.000000,0.250000,0,0);}
.me_c00440{transform:matrix(5.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.487500,0.000000,0.000000,0.250000,0,0);}
.m139_c00440{transform:matrix(6.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.115000,0.000000,0.000000,0.250000,0,0);}
.v0_c00440{vertical-align:0.000000px;}
.v1_c00440{vertical-align:6.900000px;}
.ls2_c00440{letter-spacing:0.000000px;}
.ls0_c00440{letter-spacing:76.713000px;}
.ls1_c00440{letter-spacing:83.000688px;}
.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:-18.650400px;}
.ws1_c00440{word-spacing:0.000000px;}
.fc0_c00440{color:transparent;}
.fs6_c00440{font-size:3.456000px;}
.fs10_c00440{font-size:6.000000px;}
.fse_c00440{font-size:6.900000px;}
.fs7_c00440{font-size:10.380000px;}
.fsf_c00440{font-size:13.800000px;}
.fsc_c00440{font-size:17.280000px;}
.fs5_c00440{font-size:20.760000px;}
.fs16_c00440{font-size:24.180000px;}
.fsb_c00440{font-size:27.660000px;}
.fs1_c00440{font-size:31.080000px;}
.fs2_c00440{font-size:34.560000px;}
.fs0_c00440{font-size:38.040000px;}
.fs9_c00440{font-size:41.460000px;}
.fs8_c00440{font-size:44.940000px;}
.fs2b_c00440{font-size:48.360000px;}
.fsa_c00440{font-size:51.840000px;}
.fs17_c00440{font-size:55.320000px;}
.fs23_c00440{font-size:58.740000px;}
.fs13_c00440{font-size:62.220000px;}
.fs25_c00440{font-size:65.640000px;}
.fs2a_c00440{font-size:69.120000px;}
.fsd_c00440{font-size:72.600000px;}
.fs1f_c00440{font-size:76.020000px;}
.fs26_c00440{font-size:79.500000px;}
.fs1e_c00440{font-size:82.920000px;}
.fs1b_c00440{font-size:86.400000px;}
.fs12_c00440{font-size:89.880000px;}
.fs24_c00440{font-size:93.300000px;}
.fs18_c00440{font-size:96.780000px;}
.fs15_c00440{font-size:100.200000px;}
.fs14_c00440{font-size:103.680000px;}
.fs19_c00440{font-size:107.160000px;}
.fs1c_c00440{font-size:110.580000px;}
.fs22_c00440{font-size:114.060000px;}
.fs1a_c00440{font-size:117.480000px;}
.fs3_c00440{font-size:120.960000px;}
.fs27_c00440{font-size:124.440000px;}
.fs21_c00440{font-size:127.860000px;}
.fs20_c00440{font-size:131.340000px;}
.fs1d_c00440{font-size:134.760000px;}
.fs29_c00440{font-size:138.240000px;}
.fs4_c00440{font-size:141.720000px;}
.fs2c_c00440{font-size:145.140000px;}
.fs2d_c00440{font-size:152.040000px;}
.fs28_c00440{font-size:155.520000px;}
.fs11_c00440{font-size:345.600000px;}
.y0_c00440{bottom:0.000000px;}
.y150_c00440{bottom:191.805000px;}
.y14e_c00440{bottom:193.530000px;}
.y14f_c00440{bottom:196.995000px;}
.y151_c00440{bottom:198.720000px;}
.y14c_c00440{bottom:229.830000px;}
.y14b_c00440{bottom:230.685000px;}
.y14d_c00440{bottom:231.555000px;}
.y14a_c00440{bottom:242.790000px;}
.y148_c00440{bottom:247.965000px;}
.y149_c00440{bottom:250.560000px;}
.y142_c00440{bottom:258.330000px;}
.y147_c00440{bottom:260.925000px;}
.y145_c00440{bottom:261.795000px;}
.y144_c00440{bottom:265.245000px;}
.y146_c00440{bottom:266.115000px;}
.y143_c00440{bottom:269.565000px;}
.y13f_c00440{bottom:294.630000px;}
.y13e_c00440{bottom:296.355000px;}
.y141_c00440{bottom:297.210000px;}
.y13d_c00440{bottom:299.805000px;}
.y13c_c00440{bottom:303.270000px;}
.y140_c00440{bottom:305.850000px;}
.y13b_c00440{bottom:324.870000px;}
.y139_c00440{bottom:325.725000px;}
.y13a_c00440{bottom:326.595000px;}
.y138_c00440{bottom:327.450000px;}
.y137_c00440{bottom:329.190000px;}
.y132_c00440{bottom:330.915000px;}
.y130_c00440{bottom:331.770000px;}
.y133_c00440{bottom:333.510000px;}
.y131_c00440{bottom:336.090000px;}
.y134_c00440{bottom:337.830000px;}
.y135_c00440{bottom:338.685000px;}
.y12f_c00440{bottom:346.470000px;}
.y136_c00440{bottom:356.835000px;}
.y12b_c00440{bottom:358.560000px;}
.y12e_c00440{bottom:359.430000px;}
.y12c_c00440{bottom:360.285000px;}
.y12d_c00440{bottom:364.605000px;}
.y12a_c00440{bottom:368.925000px;}
.y129_c00440{bottom:385.350000px;}
.y123_c00440{bottom:391.395000px;}
.y122_c00440{bottom:393.120000px;}
.y126_c00440{bottom:394.845000px;}
.y125_c00440{bottom:395.715000px;}
.y127_c00440{bottom:400.035000px;}
.y128_c00440{bottom:401.760000px;}
.y124_c00440{bottom:402.630000px;}
.y11d_c00440{bottom:425.085000px;}
.y11f_c00440{bottom:425.955000px;}
.y11c_c00440{bottom:426.810000px;}
.y120_c00440{bottom:427.680000px;}
.y121_c00440{bottom:434.595000px;}
.y11e_c00440{bottom:438.045000px;}
.y117_c00440{bottom:455.325000px;}
.y113_c00440{bottom:456.195000px;}
.y114_c00440{bottom:457.050000px;}
.y116_c00440{bottom:459.645000px;}
.y115_c00440{bottom:460.515000px;}
.y118_c00440{bottom:461.370000px;}
.y119_c00440{bottom:462.240000px;}
.y11a_c00440{bottom:465.690000px;}
.y11b_c00440{bottom:488.160000px;}
.y10e_c00440{bottom:491.610000px;}
.y110_c00440{bottom:492.480000px;}
.y10d_c00440{bottom:493.350000px;}
.y111_c00440{bottom:494.205000px;}
.y112_c00440{bottom:495.075000px;}
.y10f_c00440{bottom:497.670000px;}
.y10c_c00440{bottom:514.080000px;}
.y109_c00440{bottom:525.315000px;}
.y108_c00440{bottom:526.170000px;}
.y10a_c00440{bottom:527.040000px;}
.y107_c00440{bottom:528.765000px;}
.y10b_c00440{bottom:540.000000px;}
.y104_c00440{bottom:556.410000px;}
.y101_c00440{bottom:557.280000px;}
.yff_c00440{bottom:558.150000px;}
.y103_c00440{bottom:559.875000px;}
.y106_c00440{bottom:561.600000px;}
.y102_c00440{bottom:565.920000px;}
.y105_c00440{bottom:566.790000px;}
.y100_c00440{bottom:570.240000px;}
.yfe_c00440{bottom:586.650000px;}
.yf8_c00440{bottom:589.245000px;}
.yf9_c00440{bottom:590.115000px;}
.yfc_c00440{bottom:590.970000px;}
.yfd_c00440{bottom:591.840000px;}
.yfa_c00440{bottom:593.565000px;}
.yfb_c00440{bottom:595.290000px;}
.yf2_c00440{bottom:622.080000px;}
.yf7_c00440{bottom:623.805000px;}
.yf4_c00440{bottom:625.530000px;}
.yf5_c00440{bottom:629.850000px;}
.yf6_c00440{bottom:632.445000px;}
.yf3_c00440{bottom:641.085000px;}
.yec_c00440{bottom:654.045000px;}
.yf1_c00440{bottom:654.915000px;}
.yee_c00440{bottom:657.510000px;}
.yf0_c00440{bottom:659.235000px;}
.yed_c00440{bottom:660.090000px;}
.yeb_c00440{bottom:661.830000px;}
.yef_c00440{bottom:664.410000px;}
.yea_c00440{bottom:667.005000px;}
.ye0_c00440{bottom:686.010000px;}
.y157_c00440{bottom:686.880000px;}
.ye3_c00440{bottom:687.750000px;}
.ye5_c00440{bottom:688.605000px;}
.y158_c00440{bottom:689.475000px;}
.ye7_c00440{bottom:690.330000px;}
.ye2_c00440{bottom:691.200000px;}
.ye4_c00440{bottom:692.925000px;}
.ye6_c00440{bottom:695.520000px;}
.ye8_c00440{bottom:699.840000px;}
.ye1_c00440{bottom:701.565000px;}
.ye9_c00440{bottom:704.160000px;}
.yd7_c00440{bottom:716.250000px;}
.yda_c00440{bottom:717.120000px;}
.ydb_c00440{bottom:717.990000px;}
.ydf_c00440{bottom:719.715000px;}
.yd8_c00440{bottom:721.440000px;}
.ydd_c00440{bottom:722.310000px;}
.yd9_c00440{bottom:724.035000px;}
.ydc_c00440{bottom:724.890000px;}
.yde_c00440{bottom:725.760000px;}
.yd1_c00440{bottom:751.680000px;}
.yd5_c00440{bottom:753.405000px;}
.yd0_c00440{bottom:754.275000px;}
.yd4_c00440{bottom:755.130000px;}
.yd6_c00440{bottom:756.000000px;}
.yd2_c00440{bottom:756.870000px;}
.yd3_c00440{bottom:757.725000px;}
.yc6_c00440{bottom:758.595000px;}
.yc5_c00440{bottom:759.450000px;}
.yc8_c00440{bottom:764.640000px;}
.yc4_c00440{bottom:765.510000px;}
.yc7_c00440{bottom:767.235000px;}
.ycf_c00440{bottom:768.090000px;}
.yca_c00440{bottom:768.960000px;}
.yc9_c00440{bottom:770.685000px;}
.ycb_c00440{bottom:772.410000px;}
.ycd_c00440{bottom:775.005000px;}
.ycc_c00440{bottom:775.875000px;}
.yce_c00440{bottom:776.730000px;}
.ybc_c00440{bottom:777.600000px;}
.yc0_c00440{bottom:778.470000px;}
.yc3_c00440{bottom:783.645000px;}
.ybb_c00440{bottom:787.110000px;}
.yba_c00440{bottom:787.965000px;}
.ybd_c00440{bottom:788.835000px;}
.ybf_c00440{bottom:790.560000px;}
.y156_c00440{bottom:793.155000px;}
.y155_c00440{bottom:796.605000px;}
.yc2_c00440{bottom:800.925000px;}
.yc1_c00440{bottom:804.390000px;}
.ybe_c00440{bottom:806.115000px;}
.y154_c00440{bottom:806.970000px;}
.yb3_c00440{bottom:809.565000px;}
.yb8_c00440{bottom:812.160000px;}
.yb7_c00440{bottom:813.030000px;}
.yb6_c00440{bottom:817.350000px;}
.yb9_c00440{bottom:822.525000px;}
.yb4_c00440{bottom:831.165000px;}
.yb5_c00440{bottom:837.210000px;}
.yab_c00440{bottom:843.270000px;}
.yb1_c00440{bottom:844.125000px;}
.yac_c00440{bottom:844.995000px;}
.yad_c00440{bottom:845.850000px;}
.yae_c00440{bottom:847.590000px;}
.yaa_c00440{bottom:848.445000px;}
.ya9_c00440{bottom:850.170000px;}
.yb0_c00440{bottom:853.635000px;}
.yaf_c00440{bottom:856.230000px;}
.yb2_c00440{bottom:860.550000px;}
.ya2_c00440{bottom:877.830000px;}
.ya0_c00440{bottom:878.685000px;}
.ya3_c00440{bottom:879.555000px;}
.ya6_c00440{bottom:883.875000px;}
.ya1_c00440{bottom:887.325000px;}
.ya4_c00440{bottom:888.195000px;}
.ya5_c00440{bottom:889.920000px;}
.y9f_c00440{bottom:894.240000px;}
.ya8_c00440{bottom:895.965000px;}
.ya7_c00440{bottom:897.690000px;}
.y9c_c00440{bottom:910.650000px;}
.y9b_c00440{bottom:911.520000px;}
.y9e_c00440{bottom:913.245000px;}
.y9d_c00440{bottom:921.885000px;}
.y97_c00440{bottom:942.630000px;}
.y99_c00440{bottom:946.080000px;}
.y9a_c00440{bottom:946.950000px;}
.y95_c00440{bottom:947.805000px;}
.y96_c00440{bottom:952.125000px;}
.y98_c00440{bottom:952.995000px;}
.y152_c00440{bottom:969.405000px;}
.y92_c00440{bottom:975.450000px;}
.y8c_c00440{bottom:976.320000px;}
.y8d_c00440{bottom:978.045000px;}
.y91_c00440{bottom:978.915000px;}
.y94_c00440{bottom:980.640000px;}
.y8e_c00440{bottom:981.510000px;}
.y8f_c00440{bottom:984.090000px;}
.y90_c00440{bottom:984.960000px;}
.y93_c00440{bottom:985.830000px;}
.y81_c00440{bottom:1008.285000px;}
.y86_c00440{bottom:1009.155000px;}
.y83_c00440{bottom:1010.010000px;}
.y88_c00440{bottom:1010.880000px;}
.y80_c00440{bottom:1012.605000px;}
.y85_c00440{bottom:1014.330000px;}
.y89_c00440{bottom:1016.070000px;}
.y84_c00440{bottom:1016.925000px;}
.y87_c00440{bottom:1017.795000px;}
.y8a_c00440{bottom:1018.650000px;}
.y8b_c00440{bottom:1027.290000px;}
.y82_c00440{bottom:1040.250000px;}
.y79_c00440{bottom:1041.120000px;}
.y7a_c00440{bottom:1041.990000px;}
.y7b_c00440{bottom:1042.845000px;}
.y7d_c00440{bottom:1044.570000px;}
.y7f_c00440{bottom:1046.310000px;}
.y7e_c00440{bottom:1050.630000px;}
.y7c_c00440{bottom:1051.485000px;}
.y6f_c00440{bottom:1068.765000px;}
.y71_c00440{bottom:1070.490000px;}
.y75_c00440{bottom:1072.230000px;}
.y72_c00440{bottom:1073.085000px;}
.y70_c00440{bottom:1073.955000px;}
.y77_c00440{bottom:1074.810000px;}
.y74_c00440{bottom:1077.405000px;}
.y76_c00440{bottom:1080.870000px;}
.y73_c00440{bottom:1083.450000px;}
.y67_c00440{bottom:1093.830000px;}
.y78_c00440{bottom:1094.685000px;}
.y68_c00440{bottom:1099.005000px;}
.y6a_c00440{bottom:1099.875000px;}
.y6b_c00440{bottom:1106.790000px;}
.y6d_c00440{bottom:1107.645000px;}
.y69_c00440{bottom:1112.835000px;}
.y6c_c00440{bottom:1115.430000px;}
.y6e_c00440{bottom:1128.390000px;}
.y62_c00440{bottom:1137.885000px;}
.y63_c00440{bottom:1138.755000px;}
.y65_c00440{bottom:1139.610000px;}
.y66_c00440{bottom:1143.075000px;}
.y64_c00440{bottom:1147.395000px;}
.y61_c00440{bottom:1160.355000px;}
.y5a_c00440{bottom:1169.850000px;}
.y5e_c00440{bottom:1170.720000px;}
.y5c_c00440{bottom:1171.590000px;}
.y5b_c00440{bottom:1172.445000px;}
.y5d_c00440{bottom:1175.040000px;}
.y60_c00440{bottom:1178.490000px;}
.y5f_c00440{bottom:1180.230000px;}
.y58_c00440{bottom:1183.680000px;}
.y59_c00440{bottom:1197.510000px;}
.y56_c00440{bottom:1199.235000px;}
.y57_c00440{bottom:1201.830000px;}
.y51_c00440{bottom:1205.280000px;}
.y54_c00440{bottom:1206.150000px;}
.y4f_c00440{bottom:1207.005000px;}
.y55_c00440{bottom:1208.730000px;}
.y50_c00440{bottom:1209.600000px;}
.y4e_c00440{bottom:1210.470000px;}
.y53_c00440{bottom:1212.195000px;}
.y52_c00440{bottom:1213.050000px;}
.y4d_c00440{bottom:1214.790000px;}
.y153_c00440{bottom:1224.285000px;}
.y49_c00440{bottom:1231.200000px;}
.y46_c00440{bottom:1233.795000px;}
.y4a_c00440{bottom:1234.650000px;}
.y4c_c00440{bottom:1236.390000px;}
.y48_c00440{bottom:1237.245000px;}
.y45_c00440{bottom:1238.115000px;}
.y4b_c00440{bottom:1238.970000px;}
.y47_c00440{bottom:1239.840000px;}
.y44_c00440{bottom:1240.710000px;}
.y43_c00440{bottom:1245.030000px;}
.y42_c00440{bottom:1246.755000px;}
.y3d_c00440{bottom:1265.760000px;}
.y3f_c00440{bottom:1268.355000px;}
.y3e_c00440{bottom:1269.210000px;}
.y3b_c00440{bottom:1270.080000px;}
.y40_c00440{bottom:1272.675000px;}
.y3c_c00440{bottom:1275.270000px;}
.y3a_c00440{bottom:1278.720000px;}
.y41_c00440{bottom:1280.445000px;}
.y35_c00440{bottom:1298.595000px;}
.y36_c00440{bottom:1300.320000px;}
.y38_c00440{bottom:1301.190000px;}
.y37_c00440{bottom:1302.045000px;}
.y39_c00440{bottom:1304.640000px;}
.y13_c00440{bottom:1312.410000px;}
.y34_c00440{bottom:1315.005000px;}
.y33_c00440{bottom:1319.325000px;}
.y2e_c00440{bottom:1334.880000px;}
.y31_c00440{bottom:1336.605000px;}
.y30_c00440{bottom:1337.475000px;}
.y2d_c00440{bottom:1340.070000px;}
.y2f_c00440{bottom:1342.650000px;}
.y2b_c00440{bottom:1343.520000px;}
.y32_c00440{bottom:1344.390000px;}
.y2c_c00440{bottom:1348.710000px;}
.y27_c00440{bottom:1366.845000px;}
.y25_c00440{bottom:1368.570000px;}
.y26_c00440{bottom:1369.440000px;}
.y28_c00440{bottom:1372.035000px;}
.y29_c00440{bottom:1372.890000px;}
.y2a_c00440{bottom:1374.630000px;}
.y1c_c00440{bottom:1376.355000px;}
.y1f_c00440{bottom:1378.080000px;}
.y16_c00440{bottom:1379.805000px;}
.y18_c00440{bottom:1380.675000px;}
.y24_c00440{bottom:1382.400000px;}
.y1e_c00440{bottom:1384.995000px;}
.y14_c00440{bottom:1385.850000px;}
.y23_c00440{bottom:1386.720000px;}
.y1a_c00440{bottom:1387.590000px;}
.y1d_c00440{bottom:1389.315000px;}
.y1b_c00440{bottom:1390.170000px;}
.y22_c00440{bottom:1391.040000px;}
.y19_c00440{bottom:1394.490000px;}
.y17_c00440{bottom:1397.085000px;}
.y15_c00440{bottom:1397.955000px;}
.y20_c00440{bottom:1400.550000px;}
.y12_c00440{bottom:1402.275000px;}
.y21_c00440{bottom:1403.130000px;}
.yf_c00440{bottom:1404.000000px;}
.ye_c00440{bottom:1404.870000px;}
.y11_c00440{bottom:1407.450000px;}
.y10_c00440{bottom:1408.320000px;}
.y6_c00440{bottom:1410.045000px;}
.ya_c00440{bottom:1410.915000px;}
.y5_c00440{bottom:1411.770000px;}
.yc_c00440{bottom:1418.685000px;}
.yb_c00440{bottom:1419.555000px;}
.yd_c00440{bottom:1425.600000px;}
.y9_c00440{bottom:1435.110000px;}
.y7_c00440{bottom:1436.835000px;}
.y8_c00440{bottom:1439.430000px;}
.y2_c00440{bottom:1442.880000px;}
.y4_c00440{bottom:1445.475000px;}
.y3_c00440{bottom:1446.330000px;}
.y1_c00440{bottom:1454.970000px;}
.h8_c00440{height:3.110063px;}
.h12_c00440{height:5.399414px;}
.h10_c00440{height:6.209326px;}
.h9_c00440{height:9.340986px;}
.h11_c00440{height:12.418652px;}
.he_c00440{height:15.550313px;}
.h2b_c00440{height:16.240986px;}
.h7_c00440{height:18.681973px;}
.h18_c00440{height:21.759639px;}
.hd_c00440{height:24.891299px;}
.h3_c00440{height:27.968965px;}
.h4_c00440{height:31.100625px;}
.h2_c00440{height:34.232285px;}
.hb_c00440{height:37.309951px;}
.ha_c00440{height:40.441611px;}
.h2d_c00440{height:43.519277px;}
.hc_c00440{height:46.650937px;}
.h19_c00440{height:49.782598px;}
.h24_c00440{height:52.860264px;}
.h15_c00440{height:55.991924px;}
.h26_c00440{height:59.069590px;}
.h2c_c00440{height:62.201250px;}
.hf_c00440{height:65.332910px;}
.h20_c00440{height:68.410576px;}
.h27_c00440{height:71.542236px;}
.h1f_c00440{height:74.619902px;}
.h2e_c00440{height:77.751563px;}
.h14_c00440{height:80.883223px;}
.h25_c00440{height:83.960889px;}
.h1a_c00440{height:87.092549px;}
.h17_c00440{height:90.170215px;}
.h16_c00440{height:93.301875px;}
.h1b_c00440{height:96.433535px;}
.h1d_c00440{height:99.511201px;}
.h23_c00440{height:102.642861px;}
.h1c_c00440{height:105.720527px;}
.h5_c00440{height:108.852188px;}
.h28_c00440{height:111.983848px;}
.h22_c00440{height:115.061514px;}
.h21_c00440{height:118.193174px;}
.h1e_c00440{height:121.270840px;}
.h2a_c00440{height:124.402500px;}
.h6_c00440{height:127.534160px;}
.h2f_c00440{height:130.611826px;}
.h30_c00440{height:136.821152px;}
.h29_c00440{height:139.952812px;}
.h13_c00440{height:311.006250px;}
.h0_c00440{height:1515.450000px;}
.h1_c00440{height:1515.750000px;}
.w0_c00440{width:1079.130000px;}
.w1_c00440{width:1079.250000px;}
.x0_c00440{left:0.000000px;}
.x1_c00440{left:48.390000px;}
.x2_c00440{left:50.970000px;}
.x10_c00440{left:58.755000px;}
.x3_c00440{left:60.480000px;}
.x2d_c00440{left:62.205000px;}
.x8_c00440{left:69.990000px;}
.x11_c00440{left:76.035000px;}
.x4_c00440{left:77.760000px;}
.x12_c00440{left:85.530000px;}
.x13_c00440{left:95.040000px;}
.x5_c00440{left:108.000000px;}
.x39_c00440{left:111.450000px;}
.x9a_c00440{left:125.280000px;}
.x14_c00440{left:127.875000px;}
.x6_c00440{left:129.600000px;}
.xa6_c00440{left:136.515000px;}
.x9_c00440{left:140.835000px;}
.x15_c00440{left:146.010000px;}
.x33_c00440{left:153.795000px;}
.x2e_c00440{left:155.520000px;}
.xa7_c00440{left:158.115000px;}
.x16_c00440{left:159.840000px;}
.xc0_c00440{left:162.435000px;}
.x9e_c00440{left:164.160000px;}
.xd9_c00440{left:168.480000px;}
.xa_c00440{left:170.205000px;}
.xdf_c00440{left:178.845000px;}
.x49_c00440{left:180.570000px;}
.xcd_c00440{left:184.035000px;}
.x7d_c00440{left:185.760000px;}
.x3a_c00440{left:188.355000px;}
.x82_c00440{left:190.080000px;}
.x3f_c00440{left:191.805000px;}
.x5a_c00440{left:193.530000px;}
.x87_c00440{left:196.125000px;}
.x2f_c00440{left:197.850000px;}
.x17_c00440{left:201.315000px;}
.x52_c00440{left:203.910000px;}
.xce_c00440{left:205.635000px;}
.x5b_c00440{left:208.230000px;}
.x4a_c00440{left:209.955000px;}
.x40_c00440{left:211.680000px;}
.x98_c00440{left:215.130000px;}
.x6d_c00440{left:216.870000px;}
.x18_c00440{left:219.450000px;}
.x91_c00440{left:222.045000px;}
.x41_c00440{left:224.640000px;}
.x19_c00440{left:227.235000px;}
.xd1_c00440{left:228.960000px;}
.xbe_c00440{left:231.555000px;}
.xae_c00440{left:233.280000px;}
.x1a_c00440{left:242.790000px;}
.xa9_c00440{left:249.690000px;}
.x1b_c00440{left:256.605000px;}
.x9b_c00440{left:260.925000px;}
.xcf_c00440{left:266.970000px;}
.x42_c00440{left:268.710000px;}
.xbf_c00440{left:271.290000px;}
.x9f_c00440{left:273.030000px;}
.x7_c00440{left:276.480300px;}
.x4b_c00440{left:279.930000px;}
.x1c_c00440{left:281.670000px;}
.x3b_c00440{left:285.990000px;}
.x67_c00440{left:292.890000px;}
.xe0_c00440{left:294.630000px;}
.x5c_c00440{left:301.530000px;}
.xcb_c00440{left:312.765000px;}
.x88_c00440{left:314.490000px;}
.x4c_c00440{left:316.230000px;}
.x1d_c00440{left:318.810000px;}
.xaf_c00440{left:323.130000px;}
.x34_c00440{left:326.595000px;}
.x92_c00440{left:328.320000px;}
.xdc_c00440{left:330.045000px;}
.xc7_c00440{left:335.235000px;}
.x53_c00440{left:345.600000px;}
.x9c_c00440{left:347.325000px;}
.x1e_c00440{left:350.790000px;}
.x5d_c00440{left:352.515000px;}
.x6e_c00440{left:360.285000px;}
.x7e_c00440{left:362.880000px;}
.x1f_c00440{left:364.605000px;}
.x89_c00440{left:366.330000px;}
.xd5_c00440{left:368.070000px;}
.x68_c00440{left:369.795000px;}
.xc4_c00440{left:371.520000px;}
.xa0_c00440{left:373.245000px;}
.x8a_c00440{left:375.840000px;}
.x4d_c00440{left:380.160000px;}
.xb0_c00440{left:381.885000px;}
.x74_c00440{left:385.350000px;}
.x93_c00440{left:387.930000px;}
.x54_c00440{left:391.395000px;}
.xbc_c00440{left:401.760000px;}
.x43_c00440{left:405.210000px;}
.xd6_c00440{left:406.950000px;}
.x94_c00440{left:417.315000px;}
.x20_c00440{left:419.910000px;}
.xb1_c00440{left:422.490000px;}
.xcc_c00440{left:425.955000px;}
.x21_c00440{left:427.680000px;}
.xc8_c00440{left:436.320000px;}
.xe9_c00440{left:438.045000px;}
.xb2_c00440{left:439.770000px;}
.xe1_c00440{left:442.365000px;}
.x5e_c00440{left:448.410000px;}
.xdd_c00440{left:451.005000px;}
.x7f_c00440{left:452.730000px;}
.xaa_c00440{left:457.920000px;}
.xd3_c00440{left:459.645000px;}
.x6f_c00440{left:463.110000px;}
.x22_c00440{left:465.690000px;}
.x95_c00440{left:467.430000px;}
.xda_c00440{left:469.155000px;}
.x23_c00440{left:473.475000px;}
.x4e_c00440{left:476.925000px;}
.x83_c00440{left:478.650000px;}
.x75_c00440{left:487.290000px;}
.x70_c00440{left:489.030000px;}
.x5f_c00440{left:491.610000px;}
.xd7_c00440{left:493.350000px;}
.xe3_c00440{left:495.075000px;}
.xc9_c00440{left:496.800000px;}
.x69_c00440{left:498.525000px;}
.x76_c00440{left:501.990000px;}
.x8b_c00440{left:504.570000px;}
.x35_c00440{left:509.760000px;}
.x60_c00440{left:520.125000px;}
.xca_c00440{left:522.720000px;}
.x80_c00440{left:525.315000px;}
.xc5_c00440{left:528.765000px;}
.x8c_c00440{left:530.490000px;}
.xab_c00440{left:534.810000px;}
.xde_c00440{left:536.550000px;}
.x4f_c00440{left:549.510000px;}
.xb_c00440{left:552.960000px;}
.x55_c00440{left:554.685000px;}
.x56_c00440{left:560.730000px;}
.xc_c00440{left:563.325000px;}
.x6a_c00440{left:569.370000px;}
.x84_c00440{left:571.965000px;}
.xa1_c00440{left:574.560000px;}
.xc1_c00440{left:583.200000px;}
.x30_c00440{left:586.650000px;}
.x36_c00440{left:588.390000px;}
.x71_c00440{left:591.840000px;}
.xd8_c00440{left:594.435000px;}
.x3c_c00440{left:596.160000px;}
.x99_c00440{left:597.885000px;}
.xd2_c00440{left:603.075000px;}
.x24_c00440{left:605.670000px;}
.x44_c00440{left:608.250000px;}
.xb3_c00440{left:609.990000px;}
.x85_c00440{left:615.165000px;}
.xb4_c00440{left:619.485000px;}
.x25_c00440{left:623.805000px;}
.x8d_c00440{left:625.530000px;}
.x6b_c00440{left:627.270000px;}
.x77_c00440{left:628.995000px;}
.x26_c00440{left:631.590000px;}
.x8e_c00440{left:635.040000px;}
.x61_c00440{left:636.765000px;}
.xe7_c00440{left:643.680000px;}
.x45_c00440{left:646.275000px;}
.x27_c00440{left:651.450000px;}
.x62_c00440{left:654.045000px;}
.xc6_c00440{left:656.640000px;}
.x31_c00440{left:661.830000px;}
.xe4_c00440{left:666.150000px;}
.x50_c00440{left:667.875000px;}
.x28_c00440{left:673.920000px;}
.x57_c00440{left:675.645000px;}
.xb5_c00440{left:677.370000px;}
.xdb_c00440{left:679.110000px;}
.x37_c00440{left:680.835000px;}
.x58_c00440{left:691.200000px;}
.x29_c00440{left:693.795000px;}
.xc2_c00440{left:696.390000px;}
.x46_c00440{left:698.970000px;}
.xd_c00440{left:705.885000px;}
.xeb_c00440{left:709.350000px;}
.x2a_c00440{left:715.395525px;}
.xa2_c00440{left:717.990000px;}
.x3d_c00440{left:723.165000px;}
.x51_c00440{left:729.210000px;}
.x38_c00440{left:731.805000px;}
.x78_c00440{left:735.270000px;}
.x81_c00440{left:739.590000px;}
.xea_c00440{left:741.315000px;}
.xb6_c00440{left:743.910000px;}
.xe_c00440{left:747.360000px;}
.x79_c00440{left:749.085000px;}
.x72_c00440{left:752.550000px;}
.xb7_c00440{left:759.450000px;}
.x96_c00440{left:761.190000px;}
.xa3_c00440{left:763.770000px;}
.xe2_c00440{left:766.365000px;}
.xa4_c00440{left:775.005000px;}
.xb8_c00440{left:777.600000px;}
.x47_c00440{left:781.050000px;}
.x63_c00440{left:786.240000px;}
.xe5_c00440{left:787.965000px;}
.xac_c00440{left:790.560000px;}
.xf_c00440{left:794.880000px;}
.xd0_c00440{left:796.605000px;}
.x7a_c00440{left:800.925000px;}
.x86_c00440{left:804.390000px;}
.x59_c00440{left:806.970000px;}
.x2b_c00440{left:812.160000px;}
.xe6_c00440{left:818.205000px;}
.x32_c00440{left:819.930000px;}
.x3e_c00440{left:825.120000px;}
.x64_c00440{left:828.570000px;}
.x48_c00440{left:831.165000px;}
.xbd_c00440{left:834.630000px;}
.xb9_c00440{left:838.950000px;}
.xd4_c00440{left:841.530000px;}
.xba_c00440{left:851.040000px;}
.xa5_c00440{left:855.360000px;}
.xe8_c00440{left:864.000000px;}
.x2c_c00440{left:866.595000px;}
.xad_c00440{left:869.190000px;}
.x8f_c00440{left:871.770000px;}
.x7b_c00440{left:873.510000px;}
.x97_c00440{left:875.235000px;}
.xbb_c00440{left:877.830000px;}
.x90_c00440{left:881.280000px;}
.xc3_c00440{left:889.920000px;}
.xa8_c00440{left:892.515000px;}
.x9d_c00440{left:900.285000px;}
.x6c_c00440{left:902.010000px;}
.x73_c00440{left:905.475000px;}
.x7c_c00440{left:916.710000px;}
.x65_c00440{left:931.395000px;}
.x66_c00440{left:960.765000px;}
.xf1_c00440{left:974.595000px;}
.xee_c00440{left:993.600000px;}
.xef_c00440{left:1000.515000px;}
.xf2_c00440{left:1014.330000px;}
.xf0_c00440{left:1029.885000px;}
.xec_c00440{left:1032.480000px;}
.xed_c00440{left:1042.845000px;}
.xf3_c00440{left:1058.400000px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.v1_c00440{vertical-align:6.133333pt;}
.ls2_c00440{letter-spacing:0.000000pt;}
.ls0_c00440{letter-spacing:68.189333pt;}
.ls1_c00440{letter-spacing:73.778389pt;}
.ws0_c00440{word-spacing:-16.578133pt;}
.ws1_c00440{word-spacing:0.000000pt;}
.fs6_c00440{font-size:3.072000pt;}
.fs10_c00440{font-size:5.333333pt;}
.fse_c00440{font-size:6.133333pt;}
.fs7_c00440{font-size:9.226667pt;}
.fsf_c00440{font-size:12.266667pt;}
.fsc_c00440{font-size:15.360000pt;}
.fs5_c00440{font-size:18.453333pt;}
.fs16_c00440{font-size:21.493333pt;}
.fsb_c00440{font-size:24.586667pt;}
.fs1_c00440{font-size:27.626667pt;}
.fs2_c00440{font-size:30.720000pt;}
.fs0_c00440{font-size:33.813333pt;}
.fs9_c00440{font-size:36.853333pt;}
.fs8_c00440{font-size:39.946667pt;}
.fs2b_c00440{font-size:42.986667pt;}
.fsa_c00440{font-size:46.080000pt;}
.fs17_c00440{font-size:49.173333pt;}
.fs23_c00440{font-size:52.213333pt;}
.fs13_c00440{font-size:55.306667pt;}
.fs25_c00440{font-size:58.346667pt;}
.fs2a_c00440{font-size:61.440000pt;}
.fsd_c00440{font-size:64.533333pt;}
.fs1f_c00440{font-size:67.573333pt;}
.fs26_c00440{font-size:70.666667pt;}
.fs1e_c00440{font-size:73.706667pt;}
.fs1b_c00440{font-size:76.800000pt;}
.fs12_c00440{font-size:79.893333pt;}
.fs24_c00440{font-size:82.933333pt;}
.fs18_c00440{font-size:86.026667pt;}
.fs15_c00440{font-size:89.066667pt;}
.fs14_c00440{font-size:92.160000pt;}
.fs19_c00440{font-size:95.253333pt;}
.fs1c_c00440{font-size:98.293333pt;}
.fs22_c00440{font-size:101.386667pt;}
.fs1a_c00440{font-size:104.426667pt;}
.fs3_c00440{font-size:107.520000pt;}
.fs27_c00440{font-size:110.613333pt;}
.fs21_c00440{font-size:113.653333pt;}
.fs20_c00440{font-size:116.746667pt;}
.fs1d_c00440{font-size:119.786667pt;}
.fs29_c00440{font-size:122.880000pt;}
.fs4_c00440{font-size:125.973333pt;}
.fs2c_c00440{font-size:129.013333pt;}
.fs2d_c00440{font-size:135.146667pt;}
.fs28_c00440{font-size:138.240000pt;}
.fs11_c00440{font-size:307.200000pt;}
.y0_c00440{bottom:0.000000pt;}
.y150_c00440{bottom:170.493333pt;}
.y14e_c00440{bottom:172.026667pt;}
.y14f_c00440{bottom:175.106667pt;}
.y151_c00440{bottom:176.640000pt;}
.y14c_c00440{bottom:204.293333pt;}
.y14b_c00440{bottom:205.053333pt;}
.y14d_c00440{bottom:205.826667pt;}
.y14a_c00440{bottom:215.813333pt;}
.y148_c00440{bottom:220.413333pt;}
.y149_c00440{bottom:222.720000pt;}
.y142_c00440{bottom:229.626667pt;}
.y147_c00440{bottom:231.933333pt;}
.y145_c00440{bottom:232.706667pt;}
.y144_c00440{bottom:235.773333pt;}
.y146_c00440{bottom:236.546667pt;}
.y143_c00440{bottom:239.613333pt;}
.y13f_c00440{bottom:261.893333pt;}
.y13e_c00440{bottom:263.426667pt;}
.y141_c00440{bottom:264.186667pt;}
.y13d_c00440{bottom:266.493333pt;}
.y13c_c00440{bottom:269.573333pt;}
.y140_c00440{bottom:271.866667pt;}
.y13b_c00440{bottom:288.773333pt;}
.y139_c00440{bottom:289.533333pt;}
.y13a_c00440{bottom:290.306667pt;}
.y138_c00440{bottom:291.066667pt;}
.y137_c00440{bottom:292.613333pt;}
.y132_c00440{bottom:294.146667pt;}
.y130_c00440{bottom:294.906667pt;}
.y133_c00440{bottom:296.453333pt;}
.y131_c00440{bottom:298.746667pt;}
.y134_c00440{bottom:300.293333pt;}
.y135_c00440{bottom:301.053333pt;}
.y12f_c00440{bottom:307.973333pt;}
.y136_c00440{bottom:317.186667pt;}
.y12b_c00440{bottom:318.720000pt;}
.y12e_c00440{bottom:319.493333pt;}
.y12c_c00440{bottom:320.253333pt;}
.y12d_c00440{bottom:324.093333pt;}
.y12a_c00440{bottom:327.933333pt;}
.y129_c00440{bottom:342.533333pt;}
.y123_c00440{bottom:347.906667pt;}
.y122_c00440{bottom:349.440000pt;}
.y126_c00440{bottom:350.973333pt;}
.y125_c00440{bottom:351.746667pt;}
.y127_c00440{bottom:355.586667pt;}
.y128_c00440{bottom:357.120000pt;}
.y124_c00440{bottom:357.893333pt;}
.y11d_c00440{bottom:377.853333pt;}
.y11f_c00440{bottom:378.626667pt;}
.y11c_c00440{bottom:379.386667pt;}
.y120_c00440{bottom:380.160000pt;}
.y121_c00440{bottom:386.306667pt;}
.y11e_c00440{bottom:389.373333pt;}
.y117_c00440{bottom:404.733333pt;}
.y113_c00440{bottom:405.506667pt;}
.y114_c00440{bottom:406.266667pt;}
.y116_c00440{bottom:408.573333pt;}
.y115_c00440{bottom:409.346667pt;}
.y118_c00440{bottom:410.106667pt;}
.y119_c00440{bottom:410.880000pt;}
.y11a_c00440{bottom:413.946667pt;}
.y11b_c00440{bottom:433.920000pt;}
.y10e_c00440{bottom:436.986667pt;}
.y110_c00440{bottom:437.760000pt;}
.y10d_c00440{bottom:438.533333pt;}
.y111_c00440{bottom:439.293333pt;}
.y112_c00440{bottom:440.066667pt;}
.y10f_c00440{bottom:442.373333pt;}
.y10c_c00440{bottom:456.960000pt;}
.y109_c00440{bottom:466.946667pt;}
.y108_c00440{bottom:467.706667pt;}
.y10a_c00440{bottom:468.480000pt;}
.y107_c00440{bottom:470.013333pt;}
.y10b_c00440{bottom:480.000000pt;}
.y104_c00440{bottom:494.586667pt;}
.y101_c00440{bottom:495.360000pt;}
.yff_c00440{bottom:496.133333pt;}
.y103_c00440{bottom:497.666667pt;}
.y106_c00440{bottom:499.200000pt;}
.y102_c00440{bottom:503.040000pt;}
.y105_c00440{bottom:503.813333pt;}
.y100_c00440{bottom:506.880000pt;}
.yfe_c00440{bottom:521.466667pt;}
.yf8_c00440{bottom:523.773333pt;}
.yf9_c00440{bottom:524.546667pt;}
.yfc_c00440{bottom:525.306667pt;}
.yfd_c00440{bottom:526.080000pt;}
.yfa_c00440{bottom:527.613333pt;}
.yfb_c00440{bottom:529.146667pt;}
.yf2_c00440{bottom:552.960000pt;}
.yf7_c00440{bottom:554.493333pt;}
.yf4_c00440{bottom:556.026667pt;}
.yf5_c00440{bottom:559.866667pt;}
.yf6_c00440{bottom:562.173333pt;}
.yf3_c00440{bottom:569.853333pt;}
.yec_c00440{bottom:581.373333pt;}
.yf1_c00440{bottom:582.146667pt;}
.yee_c00440{bottom:584.453333pt;}
.yf0_c00440{bottom:585.986667pt;}
.yed_c00440{bottom:586.746667pt;}
.yeb_c00440{bottom:588.293333pt;}
.yef_c00440{bottom:590.586667pt;}
.yea_c00440{bottom:592.893333pt;}
.ye0_c00440{bottom:609.786667pt;}
.y157_c00440{bottom:610.560000pt;}
.ye3_c00440{bottom:611.333333pt;}
.ye5_c00440{bottom:612.093333pt;}
.y158_c00440{bottom:612.866667pt;}
.ye7_c00440{bottom:613.626667pt;}
.ye2_c00440{bottom:614.400000pt;}
.ye4_c00440{bottom:615.933333pt;}
.ye6_c00440{bottom:618.240000pt;}
.ye8_c00440{bottom:622.080000pt;}
.ye1_c00440{bottom:623.613333pt;}
.ye9_c00440{bottom:625.920000pt;}
.yd7_c00440{bottom:636.666667pt;}
.yda_c00440{bottom:637.440000pt;}
.ydb_c00440{bottom:638.213333pt;}
.ydf_c00440{bottom:639.746667pt;}
.yd8_c00440{bottom:641.280000pt;}
.ydd_c00440{bottom:642.053333pt;}
.yd9_c00440{bottom:643.586667pt;}
.ydc_c00440{bottom:644.346667pt;}
.yde_c00440{bottom:645.120000pt;}
.yd1_c00440{bottom:668.160000pt;}
.yd5_c00440{bottom:669.693333pt;}
.yd0_c00440{bottom:670.466667pt;}
.yd4_c00440{bottom:671.226667pt;}
.yd6_c00440{bottom:672.000000pt;}
.yd2_c00440{bottom:672.773333pt;}
.yd3_c00440{bottom:673.533333pt;}
.yc6_c00440{bottom:674.306667pt;}
.yc5_c00440{bottom:675.066667pt;}
.yc8_c00440{bottom:679.680000pt;}
.yc4_c00440{bottom:680.453333pt;}
.yc7_c00440{bottom:681.986667pt;}
.ycf_c00440{bottom:682.746667pt;}
.yca_c00440{bottom:683.520000pt;}
.yc9_c00440{bottom:685.053333pt;}
.ycb_c00440{bottom:686.586667pt;}
.ycd_c00440{bottom:688.893333pt;}
.ycc_c00440{bottom:689.666667pt;}
.yce_c00440{bottom:690.426667pt;}
.ybc_c00440{bottom:691.200000pt;}
.yc0_c00440{bottom:691.973333pt;}
.yc3_c00440{bottom:696.573333pt;}
.ybb_c00440{bottom:699.653333pt;}
.yba_c00440{bottom:700.413333pt;}
.ybd_c00440{bottom:701.186667pt;}
.ybf_c00440{bottom:702.720000pt;}
.y156_c00440{bottom:705.026667pt;}
.y155_c00440{bottom:708.093333pt;}
.yc2_c00440{bottom:711.933333pt;}
.yc1_c00440{bottom:715.013333pt;}
.ybe_c00440{bottom:716.546667pt;}
.y154_c00440{bottom:717.306667pt;}
.yb3_c00440{bottom:719.613333pt;}
.yb8_c00440{bottom:721.920000pt;}
.yb7_c00440{bottom:722.693333pt;}
.yb6_c00440{bottom:726.533333pt;}
.yb9_c00440{bottom:731.133333pt;}
.yb4_c00440{bottom:738.813333pt;}
.yb5_c00440{bottom:744.186667pt;}
.yab_c00440{bottom:749.573333pt;}
.yb1_c00440{bottom:750.333333pt;}
.yac_c00440{bottom:751.106667pt;}
.yad_c00440{bottom:751.866667pt;}
.yae_c00440{bottom:753.413333pt;}
.yaa_c00440{bottom:754.173333pt;}
.ya9_c00440{bottom:755.706667pt;}
.yb0_c00440{bottom:758.786667pt;}
.yaf_c00440{bottom:761.093333pt;}
.yb2_c00440{bottom:764.933333pt;}
.ya2_c00440{bottom:780.293333pt;}
.ya0_c00440{bottom:781.053333pt;}
.ya3_c00440{bottom:781.826667pt;}
.ya6_c00440{bottom:785.666667pt;}
.ya1_c00440{bottom:788.733333pt;}
.ya4_c00440{bottom:789.506667pt;}
.ya5_c00440{bottom:791.040000pt;}
.y9f_c00440{bottom:794.880000pt;}
.ya8_c00440{bottom:796.413333pt;}
.ya7_c00440{bottom:797.946667pt;}
.y9c_c00440{bottom:809.466667pt;}
.y9b_c00440{bottom:810.240000pt;}
.y9e_c00440{bottom:811.773333pt;}
.y9d_c00440{bottom:819.453333pt;}
.y97_c00440{bottom:837.893333pt;}
.y99_c00440{bottom:840.960000pt;}
.y9a_c00440{bottom:841.733333pt;}
.y95_c00440{bottom:842.493333pt;}
.y96_c00440{bottom:846.333333pt;}
.y98_c00440{bottom:847.106667pt;}
.y152_c00440{bottom:861.693333pt;}
.y92_c00440{bottom:867.066667pt;}
.y8c_c00440{bottom:867.840000pt;}
.y8d_c00440{bottom:869.373333pt;}
.y91_c00440{bottom:870.146667pt;}
.y94_c00440{bottom:871.680000pt;}
.y8e_c00440{bottom:872.453333pt;}
.y8f_c00440{bottom:874.746667pt;}
.y90_c00440{bottom:875.520000pt;}
.y93_c00440{bottom:876.293333pt;}
.y81_c00440{bottom:896.253333pt;}
.y86_c00440{bottom:897.026667pt;}
.y83_c00440{bottom:897.786667pt;}
.y88_c00440{bottom:898.560000pt;}
.y80_c00440{bottom:900.093333pt;}
.y85_c00440{bottom:901.626667pt;}
.y89_c00440{bottom:903.173333pt;}
.y84_c00440{bottom:903.933333pt;}
.y87_c00440{bottom:904.706667pt;}
.y8a_c00440{bottom:905.466667pt;}
.y8b_c00440{bottom:913.146667pt;}
.y82_c00440{bottom:924.666667pt;}
.y79_c00440{bottom:925.440000pt;}
.y7a_c00440{bottom:926.213333pt;}
.y7b_c00440{bottom:926.973333pt;}
.y7d_c00440{bottom:928.506667pt;}
.y7f_c00440{bottom:930.053333pt;}
.y7e_c00440{bottom:933.893333pt;}
.y7c_c00440{bottom:934.653333pt;}
.y6f_c00440{bottom:950.013333pt;}
.y71_c00440{bottom:951.546667pt;}
.y75_c00440{bottom:953.093333pt;}
.y72_c00440{bottom:953.853333pt;}
.y70_c00440{bottom:954.626667pt;}
.y77_c00440{bottom:955.386667pt;}
.y74_c00440{bottom:957.693333pt;}
.y76_c00440{bottom:960.773333pt;}
.y73_c00440{bottom:963.066667pt;}
.y67_c00440{bottom:972.293333pt;}
.y78_c00440{bottom:973.053333pt;}
.y68_c00440{bottom:976.893333pt;}
.y6a_c00440{bottom:977.666667pt;}
.y6b_c00440{bottom:983.813333pt;}
.y6d_c00440{bottom:984.573333pt;}
.y69_c00440{bottom:989.186667pt;}
.y6c_c00440{bottom:991.493333pt;}
.y6e_c00440{bottom:1003.013333pt;}
.y62_c00440{bottom:1011.453333pt;}
.y63_c00440{bottom:1012.226667pt;}
.y65_c00440{bottom:1012.986667pt;}
.y66_c00440{bottom:1016.066667pt;}
.y64_c00440{bottom:1019.906667pt;}
.y61_c00440{bottom:1031.426667pt;}
.y5a_c00440{bottom:1039.866667pt;}
.y5e_c00440{bottom:1040.640000pt;}
.y5c_c00440{bottom:1041.413333pt;}
.y5b_c00440{bottom:1042.173333pt;}
.y5d_c00440{bottom:1044.480000pt;}
.y60_c00440{bottom:1047.546667pt;}
.y5f_c00440{bottom:1049.093333pt;}
.y58_c00440{bottom:1052.160000pt;}
.y59_c00440{bottom:1064.453333pt;}
.y56_c00440{bottom:1065.986667pt;}
.y57_c00440{bottom:1068.293333pt;}
.y51_c00440{bottom:1071.360000pt;}
.y54_c00440{bottom:1072.133333pt;}
.y4f_c00440{bottom:1072.893333pt;}
.y55_c00440{bottom:1074.426667pt;}
.y50_c00440{bottom:1075.200000pt;}
.y4e_c00440{bottom:1075.973333pt;}
.y53_c00440{bottom:1077.506667pt;}
.y52_c00440{bottom:1078.266667pt;}
.y4d_c00440{bottom:1079.813333pt;}
.y153_c00440{bottom:1088.253333pt;}
.y49_c00440{bottom:1094.400000pt;}
.y46_c00440{bottom:1096.706667pt;}
.y4a_c00440{bottom:1097.466667pt;}
.y4c_c00440{bottom:1099.013333pt;}
.y48_c00440{bottom:1099.773333pt;}
.y45_c00440{bottom:1100.546667pt;}
.y4b_c00440{bottom:1101.306667pt;}
.y47_c00440{bottom:1102.080000pt;}
.y44_c00440{bottom:1102.853333pt;}
.y43_c00440{bottom:1106.693333pt;}
.y42_c00440{bottom:1108.226667pt;}
.y3d_c00440{bottom:1125.120000pt;}
.y3f_c00440{bottom:1127.426667pt;}
.y3e_c00440{bottom:1128.186667pt;}
.y3b_c00440{bottom:1128.960000pt;}
.y40_c00440{bottom:1131.266667pt;}
.y3c_c00440{bottom:1133.573333pt;}
.y3a_c00440{bottom:1136.640000pt;}
.y41_c00440{bottom:1138.173333pt;}
.y35_c00440{bottom:1154.306667pt;}
.y36_c00440{bottom:1155.840000pt;}
.y38_c00440{bottom:1156.613333pt;}
.y37_c00440{bottom:1157.373333pt;}
.y39_c00440{bottom:1159.680000pt;}
.y13_c00440{bottom:1166.586667pt;}
.y34_c00440{bottom:1168.893333pt;}
.y33_c00440{bottom:1172.733333pt;}
.y2e_c00440{bottom:1186.560000pt;}
.y31_c00440{bottom:1188.093333pt;}
.y30_c00440{bottom:1188.866667pt;}
.y2d_c00440{bottom:1191.173333pt;}
.y2f_c00440{bottom:1193.466667pt;}
.y2b_c00440{bottom:1194.240000pt;}
.y32_c00440{bottom:1195.013333pt;}
.y2c_c00440{bottom:1198.853333pt;}
.y27_c00440{bottom:1214.973333pt;}
.y25_c00440{bottom:1216.506667pt;}
.y26_c00440{bottom:1217.280000pt;}
.y28_c00440{bottom:1219.586667pt;}
.y29_c00440{bottom:1220.346667pt;}
.y2a_c00440{bottom:1221.893333pt;}
.y1c_c00440{bottom:1223.426667pt;}
.y1f_c00440{bottom:1224.960000pt;}
.y16_c00440{bottom:1226.493333pt;}
.y18_c00440{bottom:1227.266667pt;}
.y24_c00440{bottom:1228.800000pt;}
.y1e_c00440{bottom:1231.106667pt;}
.y14_c00440{bottom:1231.866667pt;}
.y23_c00440{bottom:1232.640000pt;}
.y1a_c00440{bottom:1233.413333pt;}
.y1d_c00440{bottom:1234.946667pt;}
.y1b_c00440{bottom:1235.706667pt;}
.y22_c00440{bottom:1236.480000pt;}
.y19_c00440{bottom:1239.546667pt;}
.y17_c00440{bottom:1241.853333pt;}
.y15_c00440{bottom:1242.626667pt;}
.y20_c00440{bottom:1244.933333pt;}
.y12_c00440{bottom:1246.466667pt;}
.y21_c00440{bottom:1247.226667pt;}
.yf_c00440{bottom:1248.000000pt;}
.ye_c00440{bottom:1248.773333pt;}
.y11_c00440{bottom:1251.066667pt;}
.y10_c00440{bottom:1251.840000pt;}
.y6_c00440{bottom:1253.373333pt;}
.ya_c00440{bottom:1254.146667pt;}
.y5_c00440{bottom:1254.906667pt;}
.yc_c00440{bottom:1261.053333pt;}
.yb_c00440{bottom:1261.826667pt;}
.yd_c00440{bottom:1267.200000pt;}
.y9_c00440{bottom:1275.653333pt;}
.y7_c00440{bottom:1277.186667pt;}
.y8_c00440{bottom:1279.493333pt;}
.y2_c00440{bottom:1282.560000pt;}
.y4_c00440{bottom:1284.866667pt;}
.y3_c00440{bottom:1285.626667pt;}
.y1_c00440{bottom:1293.306667pt;}
.h8_c00440{height:2.764500pt;}
.h12_c00440{height:4.799479pt;}
.h10_c00440{height:5.519401pt;}
.h9_c00440{height:8.303099pt;}
.h11_c00440{height:11.038802pt;}
.he_c00440{height:13.822500pt;}
.h2b_c00440{height:14.436432pt;}
.h7_c00440{height:16.606198pt;}
.h18_c00440{height:19.341901pt;}
.hd_c00440{height:22.125599pt;}
.h3_c00440{height:24.861302pt;}
.h4_c00440{height:27.645000pt;}
.h2_c00440{height:30.428698pt;}
.hb_c00440{height:33.164401pt;}
.ha_c00440{height:35.948099pt;}
.h2d_c00440{height:38.683802pt;}
.hc_c00440{height:41.467500pt;}
.h19_c00440{height:44.251198pt;}
.h24_c00440{height:46.986901pt;}
.h15_c00440{height:49.770599pt;}
.h26_c00440{height:52.506302pt;}
.h2c_c00440{height:55.290000pt;}
.hf_c00440{height:58.073698pt;}
.h20_c00440{height:60.809401pt;}
.h27_c00440{height:63.593099pt;}
.h1f_c00440{height:66.328802pt;}
.h2e_c00440{height:69.112500pt;}
.h14_c00440{height:71.896198pt;}
.h25_c00440{height:74.631901pt;}
.h1a_c00440{height:77.415599pt;}
.h17_c00440{height:80.151302pt;}
.h16_c00440{height:82.935000pt;}
.h1b_c00440{height:85.718698pt;}
.h1d_c00440{height:88.454401pt;}
.h23_c00440{height:91.238099pt;}
.h1c_c00440{height:93.973802pt;}
.h5_c00440{height:96.757500pt;}
.h28_c00440{height:99.541198pt;}
.h22_c00440{height:102.276901pt;}
.h21_c00440{height:105.060599pt;}
.h1e_c00440{height:107.796302pt;}
.h2a_c00440{height:110.580000pt;}
.h6_c00440{height:113.363698pt;}
.h2f_c00440{height:116.099401pt;}
.h30_c00440{height:121.618802pt;}
.h29_c00440{height:124.402500pt;}
.h13_c00440{height:276.450000pt;}
.h0_c00440{height:1347.066667pt;}
.h1_c00440{height:1347.333333pt;}
.w0_c00440{width:959.226667pt;}
.w1_c00440{width:959.333333pt;}
.x0_c00440{left:0.000000pt;}
.x1_c00440{left:43.013333pt;}
.x2_c00440{left:45.306667pt;}
.x10_c00440{left:52.226667pt;}
.x3_c00440{left:53.760000pt;}
.x2d_c00440{left:55.293333pt;}
.x8_c00440{left:62.213333pt;}
.x11_c00440{left:67.586667pt;}
.x4_c00440{left:69.120000pt;}
.x12_c00440{left:76.026667pt;}
.x13_c00440{left:84.480000pt;}
.x5_c00440{left:96.000000pt;}
.x39_c00440{left:99.066667pt;}
.x9a_c00440{left:111.360000pt;}
.x14_c00440{left:113.666667pt;}
.x6_c00440{left:115.200000pt;}
.xa6_c00440{left:121.346667pt;}
.x9_c00440{left:125.186667pt;}
.x15_c00440{left:129.786667pt;}
.x33_c00440{left:136.706667pt;}
.x2e_c00440{left:138.240000pt;}
.xa7_c00440{left:140.546667pt;}
.x16_c00440{left:142.080000pt;}
.xc0_c00440{left:144.386667pt;}
.x9e_c00440{left:145.920000pt;}
.xd9_c00440{left:149.760000pt;}
.xa_c00440{left:151.293333pt;}
.xdf_c00440{left:158.973333pt;}
.x49_c00440{left:160.506667pt;}
.xcd_c00440{left:163.586667pt;}
.x7d_c00440{left:165.120000pt;}
.x3a_c00440{left:167.426667pt;}
.x82_c00440{left:168.960000pt;}
.x3f_c00440{left:170.493333pt;}
.x5a_c00440{left:172.026667pt;}
.x87_c00440{left:174.333333pt;}
.x2f_c00440{left:175.866667pt;}
.x17_c00440{left:178.946667pt;}
.x52_c00440{left:181.253333pt;}
.xce_c00440{left:182.786667pt;}
.x5b_c00440{left:185.093333pt;}
.x4a_c00440{left:186.626667pt;}
.x40_c00440{left:188.160000pt;}
.x98_c00440{left:191.226667pt;}
.x6d_c00440{left:192.773333pt;}
.x18_c00440{left:195.066667pt;}
.x91_c00440{left:197.373333pt;}
.x41_c00440{left:199.680000pt;}
.x19_c00440{left:201.986667pt;}
.xd1_c00440{left:203.520000pt;}
.xbe_c00440{left:205.826667pt;}
.xae_c00440{left:207.360000pt;}
.x1a_c00440{left:215.813333pt;}
.xa9_c00440{left:221.946667pt;}
.x1b_c00440{left:228.093333pt;}
.x9b_c00440{left:231.933333pt;}
.xcf_c00440{left:237.306667pt;}
.x42_c00440{left:238.853333pt;}
.xbf_c00440{left:241.146667pt;}
.x9f_c00440{left:242.693333pt;}
.x7_c00440{left:245.760267pt;}
.x4b_c00440{left:248.826667pt;}
.x1c_c00440{left:250.373333pt;}
.x3b_c00440{left:254.213333pt;}
.x67_c00440{left:260.346667pt;}
.xe0_c00440{left:261.893333pt;}
.x5c_c00440{left:268.026667pt;}
.xcb_c00440{left:278.013333pt;}
.x88_c00440{left:279.546667pt;}
.x4c_c00440{left:281.093333pt;}
.x1d_c00440{left:283.386667pt;}
.xaf_c00440{left:287.226667pt;}
.x34_c00440{left:290.306667pt;}
.x92_c00440{left:291.840000pt;}
.xdc_c00440{left:293.373333pt;}
.xc7_c00440{left:297.986667pt;}
.x53_c00440{left:307.200000pt;}
.x9c_c00440{left:308.733333pt;}
.x1e_c00440{left:311.813333pt;}
.x5d_c00440{left:313.346667pt;}
.x6e_c00440{left:320.253333pt;}
.x7e_c00440{left:322.560000pt;}
.x1f_c00440{left:324.093333pt;}
.x89_c00440{left:325.626667pt;}
.xd5_c00440{left:327.173333pt;}
.x68_c00440{left:328.706667pt;}
.xc4_c00440{left:330.240000pt;}
.xa0_c00440{left:331.773333pt;}
.x8a_c00440{left:334.080000pt;}
.x4d_c00440{left:337.920000pt;}
.xb0_c00440{left:339.453333pt;}
.x74_c00440{left:342.533333pt;}
.x93_c00440{left:344.826667pt;}
.x54_c00440{left:347.906667pt;}
.xbc_c00440{left:357.120000pt;}
.x43_c00440{left:360.186667pt;}
.xd6_c00440{left:361.733333pt;}
.x94_c00440{left:370.946667pt;}
.x20_c00440{left:373.253333pt;}
.xb1_c00440{left:375.546667pt;}
.xcc_c00440{left:378.626667pt;}
.x21_c00440{left:380.160000pt;}
.xc8_c00440{left:387.840000pt;}
.xe9_c00440{left:389.373333pt;}
.xb2_c00440{left:390.906667pt;}
.xe1_c00440{left:393.213333pt;}
.x5e_c00440{left:398.586667pt;}
.xdd_c00440{left:400.893333pt;}
.x7f_c00440{left:402.426667pt;}
.xaa_c00440{left:407.040000pt;}
.xd3_c00440{left:408.573333pt;}
.x6f_c00440{left:411.653333pt;}
.x22_c00440{left:413.946667pt;}
.x95_c00440{left:415.493333pt;}
.xda_c00440{left:417.026667pt;}
.x23_c00440{left:420.866667pt;}
.x4e_c00440{left:423.933333pt;}
.x83_c00440{left:425.466667pt;}
.x75_c00440{left:433.146667pt;}
.x70_c00440{left:434.693333pt;}
.x5f_c00440{left:436.986667pt;}
.xd7_c00440{left:438.533333pt;}
.xe3_c00440{left:440.066667pt;}
.xc9_c00440{left:441.600000pt;}
.x69_c00440{left:443.133333pt;}
.x76_c00440{left:446.213333pt;}
.x8b_c00440{left:448.506667pt;}
.x35_c00440{left:453.120000pt;}
.x60_c00440{left:462.333333pt;}
.xca_c00440{left:464.640000pt;}
.x80_c00440{left:466.946667pt;}
.xc5_c00440{left:470.013333pt;}
.x8c_c00440{left:471.546667pt;}
.xab_c00440{left:475.386667pt;}
.xde_c00440{left:476.933333pt;}
.x4f_c00440{left:488.453333pt;}
.xb_c00440{left:491.520000pt;}
.x55_c00440{left:493.053333pt;}
.x56_c00440{left:498.426667pt;}
.xc_c00440{left:500.733333pt;}
.x6a_c00440{left:506.106667pt;}
.x84_c00440{left:508.413333pt;}
.xa1_c00440{left:510.720000pt;}
.xc1_c00440{left:518.400000pt;}
.x30_c00440{left:521.466667pt;}
.x36_c00440{left:523.013333pt;}
.x71_c00440{left:526.080000pt;}
.xd8_c00440{left:528.386667pt;}
.x3c_c00440{left:529.920000pt;}
.x99_c00440{left:531.453333pt;}
.xd2_c00440{left:536.066667pt;}
.x24_c00440{left:538.373333pt;}
.x44_c00440{left:540.666667pt;}
.xb3_c00440{left:542.213333pt;}
.x85_c00440{left:546.813333pt;}
.xb4_c00440{left:550.653333pt;}
.x25_c00440{left:554.493333pt;}
.x8d_c00440{left:556.026667pt;}
.x6b_c00440{left:557.573333pt;}
.x77_c00440{left:559.106667pt;}
.x26_c00440{left:561.413333pt;}
.x8e_c00440{left:564.480000pt;}
.x61_c00440{left:566.013333pt;}
.xe7_c00440{left:572.160000pt;}
.x45_c00440{left:574.466667pt;}
.x27_c00440{left:579.066667pt;}
.x62_c00440{left:581.373333pt;}
.xc6_c00440{left:583.680000pt;}
.x31_c00440{left:588.293333pt;}
.xe4_c00440{left:592.133333pt;}
.x50_c00440{left:593.666667pt;}
.x28_c00440{left:599.040000pt;}
.x57_c00440{left:600.573333pt;}
.xb5_c00440{left:602.106667pt;}
.xdb_c00440{left:603.653333pt;}
.x37_c00440{left:605.186667pt;}
.x58_c00440{left:614.400000pt;}
.x29_c00440{left:616.706667pt;}
.xc2_c00440{left:619.013333pt;}
.x46_c00440{left:621.306667pt;}
.xd_c00440{left:627.453333pt;}
.xeb_c00440{left:630.533333pt;}
.x2a_c00440{left:635.907133pt;}
.xa2_c00440{left:638.213333pt;}
.x3d_c00440{left:642.813333pt;}
.x51_c00440{left:648.186667pt;}
.x38_c00440{left:650.493333pt;}
.x78_c00440{left:653.573333pt;}
.x81_c00440{left:657.413333pt;}
.xea_c00440{left:658.946667pt;}
.xb6_c00440{left:661.253333pt;}
.xe_c00440{left:664.320000pt;}
.x79_c00440{left:665.853333pt;}
.x72_c00440{left:668.933333pt;}
.xb7_c00440{left:675.066667pt;}
.x96_c00440{left:676.613333pt;}
.xa3_c00440{left:678.906667pt;}
.xe2_c00440{left:681.213333pt;}
.xa4_c00440{left:688.893333pt;}
.xb8_c00440{left:691.200000pt;}
.x47_c00440{left:694.266667pt;}
.x63_c00440{left:698.880000pt;}
.xe5_c00440{left:700.413333pt;}
.xac_c00440{left:702.720000pt;}
.xf_c00440{left:706.560000pt;}
.xd0_c00440{left:708.093333pt;}
.x7a_c00440{left:711.933333pt;}
.x86_c00440{left:715.013333pt;}
.x59_c00440{left:717.306667pt;}
.x2b_c00440{left:721.920000pt;}
.xe6_c00440{left:727.293333pt;}
.x32_c00440{left:728.826667pt;}
.x3e_c00440{left:733.440000pt;}
.x64_c00440{left:736.506667pt;}
.x48_c00440{left:738.813333pt;}
.xbd_c00440{left:741.893333pt;}
.xb9_c00440{left:745.733333pt;}
.xd4_c00440{left:748.026667pt;}
.xba_c00440{left:756.480000pt;}
.xa5_c00440{left:760.320000pt;}
.xe8_c00440{left:768.000000pt;}
.x2c_c00440{left:770.306667pt;}
.xad_c00440{left:772.613333pt;}
.x8f_c00440{left:774.906667pt;}
.x7b_c00440{left:776.453333pt;}
.x97_c00440{left:777.986667pt;}
.xbb_c00440{left:780.293333pt;}
.x90_c00440{left:783.360000pt;}
.xc3_c00440{left:791.040000pt;}
.xa8_c00440{left:793.346667pt;}
.x9d_c00440{left:800.253333pt;}
.x6c_c00440{left:801.786667pt;}
.x73_c00440{left:804.866667pt;}
.x7c_c00440{left:814.853333pt;}
.x65_c00440{left:827.906667pt;}
.x66_c00440{left:854.013333pt;}
.xf1_c00440{left:866.306667pt;}
.xee_c00440{left:883.200000pt;}
.xef_c00440{left:889.346667pt;}
.xf2_c00440{left:901.626667pt;}
.xf0_c00440{left:915.453333pt;}
.xec_c00440{left:917.760000pt;}
.xed_c00440{left:926.973333pt;}
.xf3_c00440{left:940.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_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_3bb7b9a4fa1d04e891b34795.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:1.109863;font-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_c00441{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00441{transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);}
.m10b_c00441{transform:matrix(0.034575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034575,0.000000,0.000000,0.250000,0,0);}
.m130_c00441{transform:matrix(0.042050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042050,0.000000,0.000000,0.250000,0,0);}
.m125_c00441{transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);}
.m127_c00441{transform:matrix(0.045350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045350,0.000000,0.000000,0.250000,0,0);}
.m10d_c00441{transform:matrix(0.048275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048275,0.000000,0.000000,0.250000,0,0);}
.m120_c00441{transform:matrix(0.048425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048425,0.000000,0.000000,0.250000,0,0);}
.m13e_c00441{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);}
.m116_c00441{transform:matrix(0.059225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059225,0.000000,0.000000,0.250000,0,0);}
.m110_c00441{transform:matrix(0.070600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070600,0.000000,0.000000,0.250000,0,0);}
.m113_c00441{transform:matrix(0.074500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074500,0.000000,0.000000,0.250000,0,0);}
.mc7_c00441{transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);}
.m10a_c00441{transform:matrix(0.080850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080850,0.000000,0.000000,0.250000,0,0);}
.maf_c00441{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.md3_c00441{transform:matrix(0.085775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085775,0.000000,0.000000,0.250000,0,0);}
.m13a_c00441{transform:matrix(0.087150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087150,0.000000,0.000000,0.250000,0,0);}
.m144_c00441{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.m11c_c00441{transform:matrix(0.090950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090950,0.000000,0.000000,0.250000,0,0);}
.m112_c00441{transform:matrix(0.092725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092725,0.000000,0.000000,0.250000,0,0);}
.mcc_c00441{transform:matrix(0.093425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093425,0.000000,0.000000,0.250000,0,0);}
.m51_c00441{transform:matrix(0.094575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094575,0.000000,0.000000,0.250000,0,0);}
.mbb_c00441{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);}
.m149_c00441{transform:matrix(0.100100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100100,0.000000,0.000000,0.250000,0,0);}
.m10f_c00441{transform:matrix(0.100125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100125,0.000000,0.000000,0.250000,0,0);}
.mbc_c00441{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.mdf_c00441{transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);}
.mcd_c00441{transform:matrix(0.104775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104775,0.000000,0.000000,0.250000,0,0);}
.m9d_c00441{transform:matrix(0.106125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106125,0.000000,0.000000,0.250000,0,0);}
.m50_c00441{transform:matrix(0.110600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110600,0.000000,0.000000,0.250000,0,0);}
.m9c_c00441{transform:matrix(0.110725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110725,0.000000,0.000000,0.250000,0,0);}
.m106_c00441{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m15_c00441{transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);}
.m9e_c00441{transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);}
.m128_c00441{transform:matrix(0.115950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115950,0.000000,0.000000,0.250000,0,0);}
.md_c00441{transform:matrix(0.117600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117600,0.000000,0.000000,0.250000,0,0);}
.mc9_c00441{transform:matrix(0.118950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118950,0.000000,0.000000,0.250000,0,0);}
.mfe_c00441{transform:matrix(0.119400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119400,0.000000,0.000000,0.250000,0,0);}
.md0_c00441{transform:matrix(0.119425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119425,0.000000,0.000000,0.250000,0,0);}
.m64_c00441{transform:matrix(0.119950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119950,0.000000,0.000000,0.250000,0,0);}
.m105_c00441{transform:matrix(0.120450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120450,0.000000,0.000000,0.250000,0,0);}
.m115_c00441{transform:matrix(0.120575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120575,0.000000,0.000000,0.250000,0,0);}
.m107_c00441{transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);}
.m10e_c00441{transform:matrix(0.121700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121700,0.000000,0.000000,0.250000,0,0);}
.m60_c00441{transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);}
.m108_c00441{transform:matrix(0.124650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124650,0.000000,0.000000,0.250000,0,0);}
.m111_c00441{transform:matrix(0.124700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124700,0.000000,0.000000,0.250000,0,0);}
.m95_c00441{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m122_c00441{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);}
.m11e_c00441{transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125500,0.000000,0.000000,0.250000,0,0);}
.m23_c00441{transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125750,0.000000,0.000000,0.250000,0,0);}
.m4a_c00441{transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);}
.meb_c00441{transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);}
.mb9_c00441{transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);}
.m30_c00441{transform:matrix(0.127700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127700,0.000000,0.000000,0.250000,0,0);}
.m7_c00441{transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);}
.m22_c00441{transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);}
.m117_c00441{transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);}
.mee_c00441{transform:matrix(0.131025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131025,0.000000,0.000000,0.250000,0,0);}
.m1f_c00441{transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);}
.mb3_c00441{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00441{transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);}
.m10c_c00441{transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);}
.m21_c00441{transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);}
.m5a_c00441{transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);}
.mf5_c00441{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.m5f_c00441{transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);}
.m34_c00441{transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);}
.mdb_c00441{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.mb8_c00441{transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);}
.m8e_c00441{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.m12b_c00441{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.mf_c00441{transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);}
.mec_c00441{transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);}
.mc3_c00441{transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);}
.m14_c00441{transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);}
.m49_c00441{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m12f_c00441{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m6b_c00441{transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);}
.m1_c00441{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00441{transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);}
.mea_c00441{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.m109_c00441{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.m4d_c00441{transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);}
.m8f_c00441{transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);}
.mca_c00441{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);}
.md8_c00441{transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);}
.m55_c00441{transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);}
.m61_c00441{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.med_c00441{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);}
.m70_c00441{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.m11d_c00441{transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);}
.mfa_c00441{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);}
.m86_c00441{transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);}
.m12d_c00441{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m3a_c00441{transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);}
.m53_c00441{transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);}
.m66_c00441{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.me5_c00441{transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);}
.m2e_c00441{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);}
.m58_c00441{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.mce_c00441{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);}
.m6a_c00441{transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);}
.ma0_c00441{transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);}
.mc5_c00441{transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);}
.mb0_c00441{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m2d_c00441{transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);}
.m20_c00441{transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);}
.m39_c00441{transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);}
.m1c_c00441{transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);}
.mb1_c00441{transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);}
.m8a_c00441{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);}
.m119_c00441{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.m6c_c00441{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.mba_c00441{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.mcb_c00441{transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);}
.m142_c00441{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.mbe_c00441{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.ma_c00441{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m11_c00441{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);}
.m38_c00441{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.m1e_c00441{transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);}
.m13b_c00441{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.mb7_c00441{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.ma2_c00441{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);}
.mb6_c00441{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m46_c00441{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m31_c00441{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m91_c00441{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);}
.m67_c00441{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.mcf_c00441{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.me0_c00441{transform:matrix(0.172225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172225,0.000000,0.000000,0.250000,0,0);}
.m102_c00441{transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);}
.mc6_c00441{transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);}
.m2a_c00441{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m56_c00441{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m118_c00441{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);}
.ma3_c00441{transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);}
.ma1_c00441{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.m129_c00441{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m33_c00441{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.md6_c00441{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);}
.m6f_c00441{transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);}
.m63_c00441{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);}
.m5d_c00441{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.m5b_c00441{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m44_c00441{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m7e_c00441{transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);}
.m36_c00441{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.mf9_c00441{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.me8_c00441{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.m59_c00441{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);}
.mde_c00441{transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);}
.m2b_c00441{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m123_c00441{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.mf3_c00441{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m136_c00441{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);}
.m6_c00441{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);}
.mc_c00441{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m32_c00441{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.md1_c00441{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.mf6_c00441{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);}
.m72_c00441{transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);}
.m90_c00441{transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);}
.mf7_c00441{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m8c_c00441{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m6e_c00441{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);}
.m4b_c00441{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.m145_c00441{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.m83_c00441{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.md5_c00441{transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);}
.m8b_c00441{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.me2_c00441{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.mc2_c00441{transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);}
.m29_c00441{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m101_c00441{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);}
.m100_c00441{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);}
.m7d_c00441{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.m88_c00441{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);}
.m13_c00441{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m2f_c00441{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.m48_c00441{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);}
.m80_c00441{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);}
.m68_c00441{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);}
.m12e_c00441{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m73_c00441{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.mf8_c00441{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.md7_c00441{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);}
.m17_c00441{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m40_c00441{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);}
.m45_c00441{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.m7b_c00441{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);}
.mb5_c00441{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.m81_c00441{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);}
.mb2_c00441{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m62_c00441{transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);}
.ma8_c00441{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m5e_c00441{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);}
.m85_c00441{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);}
.mc8_c00441{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);}
.md9_c00441{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.m27_c00441{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m78_c00441{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.mf2_c00441{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m26_c00441{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.m9f_c00441{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);}
.mfd_c00441{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);}
.me7_c00441{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m7a_c00441{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m13d_c00441{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m138_c00441{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);}
.m137_c00441{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);}
.m9_c00441{transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);}
.me4_c00441{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.m12a_c00441{transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);}
.m47_c00441{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);}
.m11a_c00441{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);}
.mdc_c00441{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.mb_c00441{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);}
.m28_c00441{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m77_c00441{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m5_c00441{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.m11b_c00441{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);}
.m4e_c00441{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);}
.me3_c00441{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m76_c00441{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);}
.mfc_c00441{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);}
.maa_c00441{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);}
.m87_c00441{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);}
.mf0_c00441{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);}
.m93_c00441{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.m4f_c00441{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);}
.m4c_c00441{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.mf1_c00441{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);}
.m12_c00441{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);}
.m71_c00441{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m103_c00441{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);}
.m37_c00441{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);}
.me1_c00441{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);}
.m35_c00441{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c00441{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00441{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m25_c00441{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);}
.m19_c00441{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9b_c00441{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);}
.m0_c00441{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c00441{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mda_c00441{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);}
.mff_c00441{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m75_c00441{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);}
.md4_c00441{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mfb_c00441{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m84_c00441{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);}
.m124_c00441{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c00441{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);}
.m89_c00441{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m74_c00441{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m54_c00441{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5c_c00441{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00441{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);}
.m134_c00441{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m126_c00441{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00441{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m79_c00441{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);}
.m6d_c00441{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);}
.mc1_c00441{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.me6_c00441{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);}
.mef_c00441{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00441{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);}
.m43_c00441{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mae_c00441{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);}
.m96_c00441{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00441{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m13c_c00441{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);}
.m24_c00441{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m69_c00441{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);}
.me9_c00441{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m65_c00441{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);}
.mdd_c00441{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c00441{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m12c_c00441{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00441{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00441{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.ma5_c00441{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md2_c00441{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m8_c00441{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m146_c00441{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);}
.m141_c00441{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m52_c00441{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m148_c00441{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00441{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m18_c00441{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);}
.m147_c00441{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m135_c00441{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.ma6_c00441{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mab_c00441{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m41_c00441{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m3c_c00441{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00441{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m42_c00441{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00441{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00441{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m99_c00441{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00441{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m143_c00441{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.m121_c00441{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m133_c00441{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m3_c00441{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m82_c00441{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m94_c00441{transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);}
.m14b_c00441{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00441{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00441{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.mad_c00441{transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);}
.m92_c00441{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m14a_c00441{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m140_c00441{transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);}
.m57_c00441{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m97_c00441{transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00441{transform:matrix(1.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.192500,0.000000,0.000000,0.250000,0,0);}
.m13f_c00441{transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);}
.m114_c00441{transform:matrix(1.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.382500,0.000000,0.000000,0.250000,0,0);}
.m132_c00441{transform:matrix(1.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.385000,0.000000,0.000000,0.250000,0,0);}
.mac_c00441{transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);}
.m3e_c00441{transform:matrix(1.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.540000,0.000000,0.000000,0.250000,0,0);}
.m11f_c00441{transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);}
.m131_c00441{transform:matrix(2.005000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.005000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.005000,0.000000,0.000000,0.250000,0,0);}
.m98_c00441{transform:matrix(2.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.295000,0.000000,0.000000,0.250000,0,0);}
.m3b_c00441{transform:matrix(2.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.355000,0.000000,0.000000,0.250000,0,0);}
.ma7_c00441{transform:matrix(3.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.310000,0.000000,0.000000,0.250000,0,0);}
.m139_c00441{transform:matrix(3.985000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.985000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.985000,0.000000,0.000000,0.250000,0,0);}
.m104_c00441{transform:matrix(14.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(14.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(14.545000,0.000000,0.000000,0.250000,0,0);}
.v1_c00441{vertical-align:-6.900000px;}
.v0_c00441{vertical-align:0.000000px;}
.ls1_c00441{letter-spacing:0.000000px;}
.ls0_c00441{letter-spacing:677.373360px;}
.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;}
.fs2_c00441{font-size:3.456000px;}
.fs3_c00441{font-size:6.000000px;}
.fs0_c00441{font-size:6.900000px;}
.fs4_c00441{font-size:10.380000px;}
.fs1f_c00441{font-size:13.800000px;}
.fs1_c00441{font-size:17.280000px;}
.fse_c00441{font-size:20.760000px;}
.fs22_c00441{font-size:24.180000px;}
.fs1e_c00441{font-size:27.660000px;}
.fs2f_c00441{font-size:31.080000px;}
.fs1c_c00441{font-size:34.560000px;}
.fs8_c00441{font-size:38.040000px;}
.fs1d_c00441{font-size:41.460000px;}
.fs2c_c00441{font-size:44.940000px;}
.fs20_c00441{font-size:48.360000px;}
.fs2e_c00441{font-size:51.840000px;}
.fs11_c00441{font-size:55.320000px;}
.fs21_c00441{font-size:58.740000px;}
.fs15_c00441{font-size:62.220000px;}
.fs18_c00441{font-size:65.640000px;}
.fs10_c00441{font-size:69.120000px;}
.fs2a_c00441{font-size:72.600000px;}
.fsd_c00441{font-size:76.020000px;}
.fs19_c00441{font-size:79.500000px;}
.fs2d_c00441{font-size:82.920000px;}
.fs1a_c00441{font-size:86.400000px;}
.fs17_c00441{font-size:89.880000px;}
.fsb_c00441{font-size:93.300000px;}
.fs14_c00441{font-size:96.780000px;}
.fs2b_c00441{font-size:100.200000px;}
.fs5_c00441{font-size:103.680000px;}
.fs6_c00441{font-size:107.160000px;}
.fs12_c00441{font-size:110.580000px;}
.fsc_c00441{font-size:114.060000px;}
.fs9_c00441{font-size:117.480000px;}
.fs13_c00441{font-size:120.960000px;}
.fs28_c00441{font-size:124.440000px;}
.fs1b_c00441{font-size:127.860000px;}
.fsf_c00441{font-size:131.340000px;}
.fs24_c00441{font-size:134.760000px;}
.fs7_c00441{font-size:138.240000px;}
.fs27_c00441{font-size:141.720000px;}
.fs16_c00441{font-size:145.140000px;}
.fs30_c00441{font-size:148.620000px;}
.fsa_c00441{font-size:152.040000px;}
.fs26_c00441{font-size:155.520000px;}
.fs23_c00441{font-size:159.000000px;}
.fs29_c00441{font-size:162.420000px;}
.fs25_c00441{font-size:169.320000px;}
.fs31_c00441{font-size:207.360000px;}
.fs32_c00441{font-size:252.300000px;}
.fs33_c00441{font-size:255.720000px;}
.fs34_c00441{font-size:262.680000px;}
.fs35_c00441{font-size:321.420000px;}
.y0_c00441{bottom:0.000000px;}
.y181_c00441{bottom:86.400000px;}
.y17f_c00441{bottom:88.125000px;}
.y15f_c00441{bottom:88.995000px;}
.y17e_c00441{bottom:89.850000px;}
.y179_c00441{bottom:94.170000px;}
.y17b_c00441{bottom:95.910000px;}
.y180_c00441{bottom:98.490000px;}
.y17d_c00441{bottom:99.360000px;}
.y17c_c00441{bottom:100.230000px;}
.y17a_c00441{bottom:101.085000px;}
.y176_c00441{bottom:103.680000px;}
.y178_c00441{bottom:104.550000px;}
.y177_c00441{bottom:105.405000px;}
.y175_c00441{bottom:108.000000px;}
.y174_c00441{bottom:113.190000px;}
.y173_c00441{bottom:114.045000px;}
.y171_c00441{bottom:114.915000px;}
.y172_c00441{bottom:117.510000px;}
.y170_c00441{bottom:121.830000px;}
.y16f_c00441{bottom:122.685000px;}
.y16d_c00441{bottom:124.410000px;}
.y16e_c00441{bottom:127.875000px;}
.y16c_c00441{bottom:128.730000px;}
.y155_c00441{bottom:129.600000px;}
.y169_c00441{bottom:132.195000px;}
.y165_c00441{bottom:133.920000px;}
.y16b_c00441{bottom:135.645000px;}
.y168_c00441{bottom:136.515000px;}
.y16a_c00441{bottom:137.370000px;}
.y166_c00441{bottom:138.240000px;}
.y164_c00441{bottom:139.965000px;}
.y162_c00441{bottom:140.835000px;}
.y167_c00441{bottom:142.560000px;}
.y163_c00441{bottom:144.285000px;}
.y161_c00441{bottom:146.010000px;}
.y15d_c00441{bottom:146.880000px;}
.y15e_c00441{bottom:147.750000px;}
.y156_c00441{bottom:149.475000px;}
.y15b_c00441{bottom:151.200000px;}
.y159_c00441{bottom:152.070000px;}
.y158_c00441{bottom:152.925000px;}
.y15c_c00441{bottom:154.650000px;}
.y160_c00441{bottom:156.390000px;}
.y157_c00441{bottom:158.970000px;}
.y15a_c00441{bottom:162.435000px;}
.y14e_c00441{bottom:165.030000px;}
.y153_c00441{bottom:165.885000px;}
.y14f_c00441{bottom:166.755000px;}
.y14d_c00441{bottom:171.075000px;}
.y154_c00441{bottom:172.800000px;}
.y152_c00441{bottom:177.120000px;}
.y150_c00441{bottom:177.990000px;}
.y151_c00441{bottom:180.570000px;}
.y141_c00441{bottom:187.485000px;}
.y14a_c00441{bottom:188.355000px;}
.y146_c00441{bottom:189.210000px;}
.y148_c00441{bottom:190.080000px;}
.y147_c00441{bottom:190.950000px;}
.y149_c00441{bottom:191.805000px;}
.y14b_c00441{bottom:193.530000px;}
.y13d_c00441{bottom:194.400000px;}
.y142_c00441{bottom:196.125000px;}
.y145_c00441{bottom:196.995000px;}
.y144_c00441{bottom:197.850000px;}
.y13a_c00441{bottom:198.720000px;}
.y139_c00441{bottom:202.170000px;}
.y14c_c00441{bottom:203.040000px;}
.y143_c00441{bottom:203.910000px;}
.y13c_c00441{bottom:205.635000px;}
.y140_c00441{bottom:218.595000px;}
.y13f_c00441{bottom:222.045000px;}
.y13b_c00441{bottom:223.770000px;}
.y138_c00441{bottom:224.640000px;}
.y13e_c00441{bottom:237.600000px;}
.y136_c00441{bottom:247.965000px;}
.y133_c00441{bottom:249.690000px;}
.y137_c00441{bottom:250.560000px;}
.y131_c00441{bottom:254.010000px;}
.y132_c00441{bottom:255.750000px;}
.y130_c00441{bottom:256.605000px;}
.y135_c00441{bottom:260.925000px;}
.y134_c00441{bottom:261.795000px;}
.y12f_c00441{bottom:290.310000px;}
.y12e_c00441{bottom:292.035000px;}
.y12a_c00441{bottom:292.890000px;}
.y128_c00441{bottom:293.760000px;}
.y12d_c00441{bottom:294.630000px;}
.y127_c00441{bottom:295.485000px;}
.y124_c00441{bottom:296.355000px;}
.y129_c00441{bottom:297.210000px;}
.y123_c00441{bottom:299.805000px;}
.y12c_c00441{bottom:303.270000px;}
.y126_c00441{bottom:304.125000px;}
.y125_c00441{bottom:306.720000px;}
.y122_c00441{bottom:308.445000px;}
.y12b_c00441{bottom:311.910000px;}
.y120_c00441{bottom:319.680000px;}
.y11f_c00441{bottom:320.550000px;}
.y11d_c00441{bottom:324.870000px;}
.y11c_c00441{bottom:325.725000px;}
.y121_c00441{bottom:327.450000px;}
.y11a_c00441{bottom:329.190000px;}
.y11b_c00441{bottom:333.510000px;}
.y11e_c00441{bottom:335.235000px;}
.y119_c00441{bottom:356.835000px;}
.y118_c00441{bottom:359.430000px;}
.y117_c00441{bottom:367.200000px;}
.y116_c00441{bottom:370.650000px;}
.y115_c00441{bottom:372.390000px;}
.y111_c00441{bottom:386.205000px;}
.y114_c00441{bottom:387.075000px;}
.y10f_c00441{bottom:387.930000px;}
.y110_c00441{bottom:388.800000px;}
.y10e_c00441{bottom:391.395000px;}
.y10c_c00441{bottom:393.990000px;}
.y109_c00441{bottom:394.845000px;}
.y10d_c00441{bottom:395.715000px;}
.y10b_c00441{bottom:397.440000px;}
.y10a_c00441{bottom:399.165000px;}
.y107_c00441{bottom:402.630000px;}
.y112_c00441{bottom:414.720000px;}
.y113_c00441{bottom:415.590000px;}
.y108_c00441{bottom:418.170000px;}
.y105_c00441{bottom:424.230000px;}
.y102_c00441{bottom:427.680000px;}
.y106_c00441{bottom:428.550000px;}
.y101_c00441{bottom:429.405000px;}
.y103_c00441{bottom:430.275000px;}
.y104_c00441{bottom:432.000000px;}
.y100_c00441{bottom:434.595000px;}
.yfc_c00441{bottom:453.600000px;}
.yff_c00441{bottom:454.470000px;}
.yfb_c00441{bottom:456.195000px;}
.yf7_c00441{bottom:458.790000px;}
.yfd_c00441{bottom:460.515000px;}
.yfe_c00441{bottom:462.240000px;}
.yf9_c00441{bottom:463.110000px;}
.yf8_c00441{bottom:466.560000px;}
.yfa_c00441{bottom:468.285000px;}
.yf6_c00441{bottom:479.520000px;}
.yf3_c00441{bottom:484.710000px;}
.yf5_c00441{bottom:486.435000px;}
.yf1_c00441{bottom:487.290000px;}
.yf0_c00441{bottom:489.030000px;}
.yf2_c00441{bottom:489.885000px;}
.yef_c00441{bottom:490.755000px;}
.yee_c00441{bottom:495.075000px;}
.yed_c00441{bottom:501.120000px;}
.yf4_c00441{bottom:506.310000px;}
.ye9_c00441{bottom:510.630000px;}
.ye7_c00441{bottom:511.485000px;}
.yea_c00441{bottom:513.210000px;}
.ye6_c00441{bottom:515.805000px;}
.ye4_c00441{bottom:516.675000px;}
.ye8_c00441{bottom:518.400000px;}
.ye5_c00441{bottom:523.590000px;}
.yeb_c00441{bottom:527.040000px;}
.ye2_c00441{bottom:529.635000px;}
.ye1_c00441{bottom:530.490000px;}
.yec_c00441{bottom:533.085000px;}
.ye3_c00441{bottom:534.810000px;}
.ye0_c00441{bottom:545.190000px;}
.ydc_c00441{bottom:546.915000px;}
.yda_c00441{bottom:548.640000px;}
.yd9_c00441{bottom:556.410000px;}
.ydd_c00441{bottom:557.280000px;}
.ydf_c00441{bottom:559.005000px;}
.yd5_c00441{bottom:559.875000px;}
.ydb_c00441{bottom:561.600000px;}
.yd7_c00441{bottom:563.325000px;}
.yd6_c00441{bottom:565.050000px;}
.yd8_c00441{bottom:565.920000px;}
.yd4_c00441{bottom:567.645000px;}
.yd3_c00441{bottom:569.370000px;}
.yde_c00441{bottom:573.690000px;}
.yd1_c00441{bottom:578.010000px;}
.ycf_c00441{bottom:578.880000px;}
.yd2_c00441{bottom:580.605000px;}
.ycd_c00441{bottom:582.330000px;}
.ycc_c00441{bottom:586.650000px;}
.yc9_c00441{bottom:587.520000px;}
.ycb_c00441{bottom:589.245000px;}
.yce_c00441{bottom:594.435000px;}
.yca_c00441{bottom:597.885000px;}
.yd0_c00441{bottom:598.755000px;}
.yc8_c00441{bottom:610.845000px;}
.yc7_c00441{bottom:615.165000px;}
.yc4_c00441{bottom:616.035000px;}
.yc5_c00441{bottom:617.760000px;}
.yc2_c00441{bottom:621.210000px;}
.yc3_c00441{bottom:622.080000px;}
.yc6_c00441{bottom:622.950000px;}
.yc0_c00441{bottom:627.270000px;}
.yc1_c00441{bottom:631.590000px;}
.ybc_c00441{bottom:649.725000px;}
.ybd_c00441{bottom:650.595000px;}
.ybe_c00441{bottom:651.450000px;}
.yb4_c00441{bottom:652.320000px;}
.yb9_c00441{bottom:653.190000px;}
.yb8_c00441{bottom:654.045000px;}
.ybb_c00441{bottom:654.915000px;}
.yb7_c00441{bottom:655.770000px;}
.yb3_c00441{bottom:656.640000px;}
.yb1_c00441{bottom:657.510000px;}
.yb2_c00441{bottom:658.365000px;}
.ybf_c00441{bottom:659.235000px;}
.yba_c00441{bottom:661.830000px;}
.yb0_c00441{bottom:662.685000px;}
.yb5_c00441{bottom:668.730000px;}
.yaf_c00441{bottom:669.600000px;}
.yb6_c00441{bottom:671.325000px;}
.y18d_c00441{bottom:673.920000px;}
.y18c_c00441{bottom:675.645000px;}
.yab_c00441{bottom:679.110000px;}
.yaa_c00441{bottom:680.835000px;}
.yac_c00441{bottom:681.690000px;}
.yad_c00441{bottom:682.560000px;}
.ya9_c00441{bottom:693.795000px;}
.yae_c00441{bottom:698.970000px;}
.ya8_c00441{bottom:702.435000px;}
.ya1_c00441{bottom:705.030000px;}
.ya2_c00441{bottom:705.885000px;}
.ya7_c00441{bottom:706.755000px;}
.ya6_c00441{bottom:708.480000px;}
.ya3_c00441{bottom:709.350000px;}
.ya5_c00441{bottom:711.075000px;}
.ya4_c00441{bottom:711.930000px;}
.y9e_c00441{bottom:713.670000px;}
.y9d_c00441{bottom:714.525000px;}
.y9c_c00441{bottom:715.395000px;}
.y9a_c00441{bottom:717.990000px;}
.y99_c00441{bottom:718.845000px;}
.y98_c00441{bottom:721.440000px;}
.ya0_c00441{bottom:723.165000px;}
.y9b_c00441{bottom:726.630000px;}
.y18b_c00441{bottom:730.950000px;}
.y18a_c00441{bottom:732.675000px;}
.y9f_c00441{bottom:735.270000px;}
.y95_c00441{bottom:744.765000px;}
.y96_c00441{bottom:745.635000px;}
.y93_c00441{bottom:749.955000px;}
.y91_c00441{bottom:750.810000px;}
.y94_c00441{bottom:753.405000px;}
.y92_c00441{bottom:760.320000px;}
.y97_c00441{bottom:762.045000px;}
.y90_c00441{bottom:780.195000px;}
.y8d_c00441{bottom:781.050000px;}
.y8b_c00441{bottom:783.645000px;}
.y87_c00441{bottom:784.515000px;}
.y8e_c00441{bottom:786.240000px;}
.y8f_c00441{bottom:787.110000px;}
.y8a_c00441{bottom:788.835000px;}
.y8c_c00441{bottom:790.560000px;}
.y89_c00441{bottom:791.430000px;}
.y88_c00441{bottom:792.285000px;}
.y86_c00441{bottom:810.435000px;}
.y83_c00441{bottom:813.885000px;}
.y81_c00441{bottom:814.755000px;}
.y84_c00441{bottom:816.480000px;}
.y80_c00441{bottom:818.205000px;}
.y85_c00441{bottom:819.075000px;}
.y82_c00441{bottom:821.670000px;}
.y7e_c00441{bottom:842.400000px;}
.y7b_c00441{bottom:843.270000px;}
.y7a_c00441{bottom:844.995000px;}
.y79_c00441{bottom:845.850000px;}
.y7d_c00441{bottom:846.720000px;}
.y7c_c00441{bottom:851.040000px;}
.y78_c00441{bottom:853.635000px;}
.y77_c00441{bottom:859.680000px;}
.y7f_c00441{bottom:860.550000px;}
.y75_c00441{bottom:870.045000px;}
.y76_c00441{bottom:872.640000px;}
.y71_c00441{bottom:874.365000px;}
.y74_c00441{bottom:876.090000px;}
.y72_c00441{bottom:879.555000px;}
.y70_c00441{bottom:880.410000px;}
.y73_c00441{bottom:883.005000px;}
.y6e_c00441{bottom:901.155000px;}
.y6d_c00441{bottom:902.010000px;}
.y6c_c00441{bottom:903.750000px;}
.y6b_c00441{bottom:908.925000px;}
.y6f_c00441{bottom:910.650000px;}
.y6a_c00441{bottom:921.885000px;}
.y68_c00441{bottom:938.310000px;}
.y67_c00441{bottom:939.165000px;}
.y66_c00441{bottom:940.890000px;}
.y65_c00441{bottom:941.760000px;}
.y64_c00441{bottom:942.630000px;}
.y63_c00441{bottom:951.270000px;}
.y69_c00441{bottom:953.850000px;}
.y61_c00441{bottom:967.680000px;}
.y62_c00441{bottom:968.550000px;}
.y60_c00441{bottom:973.725000px;}
.y5f_c00441{bottom:977.190000px;}
.y5d_c00441{bottom:1001.370000px;}
.y5c_c00441{bottom:1004.835000px;}
.y5a_c00441{bottom:1008.285000px;}
.y5b_c00441{bottom:1016.070000px;}
.y5e_c00441{bottom:1029.885000px;}
.y57_c00441{bottom:1035.075000px;}
.y59_c00441{bottom:1038.525000px;}
.y54_c00441{bottom:1040.250000px;}
.y55_c00441{bottom:1045.440000px;}
.y56_c00441{bottom:1046.310000px;}
.y58_c00441{bottom:1058.400000px;}
.y50_c00441{bottom:1071.360000px;}
.y52_c00441{bottom:1072.230000px;}
.y53_c00441{bottom:1073.085000px;}
.y4f_c00441{bottom:1073.955000px;}
.y51_c00441{bottom:1076.550000px;}
.y4e_c00441{bottom:1077.405000px;}
.y4d_c00441{bottom:1079.130000px;}
.y4a_c00441{bottom:1083.450000px;}
.y4c_c00441{bottom:1088.640000px;}
.y49_c00441{bottom:1090.365000px;}
.y4b_c00441{bottom:1091.235000px;}
.y47_c00441{bottom:1092.090000px;}
.y46_c00441{bottom:1093.830000px;}
.y48_c00441{bottom:1094.685000px;}
.y45_c00441{bottom:1095.555000px;}
.y44_c00441{bottom:1096.410000px;}
.y42_c00441{bottom:1097.280000px;}
.y40_c00441{bottom:1098.150000px;}
.y3f_c00441{bottom:1099.875000px;}
.y43_c00441{bottom:1100.730000px;}
.y3e_c00441{bottom:1101.600000px;}
.y3c_c00441{bottom:1105.920000px;}
.y41_c00441{bottom:1106.790000px;}
.y3d_c00441{bottom:1109.370000px;}
.y3b_c00441{bottom:1113.690000px;}
.y3a_c00441{bottom:1131.840000px;}
.y39_c00441{bottom:1133.565000px;}
.y37_c00441{bottom:1137.030000px;}
.y38_c00441{bottom:1139.610000px;}
.y35_c00441{bottom:1161.210000px;}
.y34_c00441{bottom:1166.400000px;}
.y33_c00441{bottom:1167.270000px;}
.y30_c00441{bottom:1168.995000px;}
.y31_c00441{bottom:1169.850000px;}
.y2a_c00441{bottom:1170.720000px;}
.y2c_c00441{bottom:1171.590000px;}
.y32_c00441{bottom:1173.315000px;}
.y2d_c00441{bottom:1174.170000px;}
.y2f_c00441{bottom:1175.910000px;}
.y2e_c00441{bottom:1176.765000px;}
.y2b_c00441{bottom:1178.490000px;}
.y36_c00441{bottom:1188.870000px;}
.y29_c00441{bottom:1194.045000px;}
.y28_c00441{bottom:1197.510000px;}
.y189_c00441{bottom:1198.365000px;}
.y188_c00441{bottom:1207.875000px;}
.y27_c00441{bottom:1229.475000px;}
.y25_c00441{bottom:1230.330000px;}
.y26_c00441{bottom:1232.070000px;}
.y24_c00441{bottom:1233.795000px;}
.y23_c00441{bottom:1234.650000px;}
.y22_c00441{bottom:1245.885000px;}
.y21_c00441{bottom:1249.350000px;}
.y20_c00441{bottom:1257.120000px;}
.y1e_c00441{bottom:1261.440000px;}
.y1f_c00441{bottom:1262.310000px;}
.y1a_c00441{bottom:1264.890000px;}
.y1d_c00441{bottom:1265.760000px;}
.y1c_c00441{bottom:1266.630000px;}
.y1b_c00441{bottom:1268.355000px;}
.y19_c00441{bottom:1270.080000px;}
.y187_c00441{bottom:1270.950000px;}
.y18_c00441{bottom:1272.675000px;}
.y17_c00441{bottom:1286.490000px;}
.y16_c00441{bottom:1291.680000px;}
.y15_c00441{bottom:1294.275000px;}
.y14_c00441{bottom:1296.000000px;}
.y11_c00441{bottom:1297.725000px;}
.y12_c00441{bottom:1301.190000px;}
.y10_c00441{bottom:1303.770000px;}
.y13_c00441{bottom:1307.235000px;}
.y184_c00441{bottom:1311.555000px;}
.y186_c00441{bottom:1315.875000px;}
.y185_c00441{bottom:1317.600000px;}
.yf_c00441{bottom:1321.920000px;}
.yc_c00441{bottom:1327.110000px;}
.ye_c00441{bottom:1328.835000px;}
.yd_c00441{bottom:1333.155000px;}
.yb_c00441{bottom:1334.010000px;}
.ya_c00441{bottom:1334.880000px;}
.y9_c00441{bottom:1346.970000px;}
.y8_c00441{bottom:1361.670000px;}
.y5_c00441{bottom:1366.845000px;}
.y7_c00441{bottom:1367.715000px;}
.y3_c00441{bottom:1368.570000px;}
.y6_c00441{bottom:1369.440000px;}
.y4_c00441{bottom:1370.310000px;}
.y18f_c00441{bottom:1372.035000px;}
.y190_c00441{bottom:1374.630000px;}
.y1_c00441{bottom:1375.485000px;}
.y2_c00441{bottom:1376.355000px;}
.y183_c00441{bottom:1405.725000px;}
.y182_c00441{bottom:1407.450000px;}
.y18e_c00441{bottom:1445.475000px;}
.h3_c00441{height:3.110063px;}
.h4_c00441{height:5.399414px;}
.h1_c00441{height:6.209326px;}
.h5_c00441{height:9.340986px;}
.h20_c00441{height:12.418652px;}
.h2_c00441{height:15.550313px;}
.hf_c00441{height:18.681973px;}
.h23_c00441{height:21.759639px;}
.h1f_c00441{height:24.891299px;}
.h30_c00441{height:27.968965px;}
.h1d_c00441{height:31.100625px;}
.h9_c00441{height:34.232285px;}
.h1e_c00441{height:37.309951px;}
.h2d_c00441{height:40.441611px;}
.h21_c00441{height:43.519277px;}
.h2f_c00441{height:46.650937px;}
.h12_c00441{height:49.782598px;}
.h22_c00441{height:52.860264px;}
.h16_c00441{height:55.991924px;}
.h19_c00441{height:59.069590px;}
.h11_c00441{height:62.201250px;}
.h2b_c00441{height:65.332910px;}
.he_c00441{height:68.410576px;}
.h1a_c00441{height:71.542236px;}
.h2e_c00441{height:74.619902px;}
.h1b_c00441{height:77.751563px;}
.h18_c00441{height:80.883223px;}
.hc_c00441{height:83.960889px;}
.h15_c00441{height:87.092549px;}
.h2c_c00441{height:90.170215px;}
.h6_c00441{height:93.301875px;}
.h7_c00441{height:96.433535px;}
.h13_c00441{height:99.511201px;}
.hd_c00441{height:102.642861px;}
.ha_c00441{height:105.720527px;}
.h14_c00441{height:108.852188px;}
.h29_c00441{height:111.983848px;}
.h1c_c00441{height:115.061514px;}
.h10_c00441{height:118.193174px;}
.h25_c00441{height:121.270840px;}
.h8_c00441{height:124.402500px;}
.h28_c00441{height:127.534160px;}
.h17_c00441{height:130.611826px;}
.h31_c00441{height:133.743486px;}
.hb_c00441{height:136.821152px;}
.h27_c00441{height:139.952812px;}
.h24_c00441{height:143.084473px;}
.h2a_c00441{height:146.162139px;}
.h26_c00441{height:152.371465px;}
.h32_c00441{height:186.603750px;}
.h33_c00441{height:227.045361px;}
.h34_c00441{height:230.123027px;}
.h35_c00441{height:236.386348px;}
.h36_c00441{height:289.246611px;}
.h0_c00441{height:1512.000000px;}
.w0_c00441{width:1100.730000px;}
.w1_c00441{width:1101.000000px;}
.x0_c00441{left:0.000000px;}
.x101_c00441{left:25.920000px;}
.x102_c00441{left:51.840000px;}
.x103_c00441{left:62.205000px;}
.x106_c00441{left:65.670000px;}
.x104_c00441{left:80.355000px;}
.x108_c00441{left:84.675000px;}
.x107_c00441{left:88.995000px;}
.x109_c00441{left:91.590000px;}
.x105_c00441{left:95.910000px;}
.x10e_c00441{left:98.490000px;}
.x10a_c00441{left:120.960000px;}
.x10b_c00441{left:124.410000px;}
.xcd_c00441{left:143.430000px;}
.x10c_c00441{left:149.475000px;}
.x10d_c00441{left:161.565000px;}
.xb8_c00441{left:163.290000px;}
.xb0_c00441{left:165.885000px;}
.xd2_c00441{left:173.670000px;}
.xb9_c00441{left:178.845000px;}
.xb1_c00441{left:182.310000px;}
.xa8_c00441{left:192.675000px;}
.xba_c00441{left:200.445000px;}
.x5f_c00441{left:203.040000px;}
.xa1_c00441{left:209.085000px;}
.x6e_c00441{left:210.810000px;}
.x5b_c00441{left:213.405000px;}
.x1_c00441{left:216.000000px;}
.x6f_c00441{left:220.320000px;}
.x9_c00441{left:222.045000px;}
.x18_c00441{left:224.640000px;}
.x2_c00441{left:226.365000px;}
.x57_c00441{left:228.090000px;}
.x22_c00441{left:230.685000px;}
.xa_c00441{left:232.410000px;}
.x3_c00441{left:235.875048px;}
.x10_c00441{left:237.600000px;}
.x3f_c00441{left:249.690000px;}
.xa2_c00441{left:253.155000px;}
.x37_c00441{left:262.650000px;}
.x68_c00441{left:266.970000px;}
.xc3_c00441{left:268.710000px;}
.xe7_c00441{left:270.435000px;}
.x1b_c00441{left:272.160000px;}
.xb2_c00441{left:273.885000px;}
.x29_c00441{left:279.075000px;}
.xdc_c00441{left:280.800000px;}
.x85_c00441{left:285.990000px;}
.x11_c00441{left:290.310000px;}
.xc8_c00441{left:295.485000px;}
.x95_c00441{left:297.210000px;}
.x73_c00441{left:302.400000px;}
.x81_c00441{left:304.125000px;}
.x19_c00441{left:307.590000px;}
.x91_c00441{left:309.315000px;}
.x79_c00441{left:311.910000px;}
.x40_c00441{left:314.490000px;}
.x2a_c00441{left:316.230000px;}
.x51_c00441{left:317.955000px;}
.xb_c00441{left:322.275000px;}
.x82_c00441{left:332.640000px;}
.xbb_c00441{left:335.235000px;}
.xa9_c00441{left:336.960000px;}
.x38_c00441{left:338.685000px;}
.x2b_c00441{left:341.280000px;}
.x41_c00441{left:350.790000px;}
.x2c_c00441{left:355.110000px;}
.xdd_c00441{left:358.560000px;}
.x7a_c00441{left:369.795000px;}
.xc4_c00441{left:371.520000px;}
.x23_c00441{left:373.245000px;}
.x42_c00441{left:377.565000px;}
.xce_c00441{left:381.885000px;}
.x69_c00441{left:388.800000px;}
.x2d_c00441{left:391.395000px;}
.xc_c00441{left:395.715000px;}
.xa3_c00441{left:400.035000px;}
.x12_c00441{left:401.760000px;}
.x2e_c00441{left:403.485000px;}
.x8b_c00441{left:408.675000px;}
.x64_c00441{left:410.400000px;}
.x5c_c00441{left:413.850000px;}
.x52_c00441{left:416.445000px;}
.x7b_c00441{left:418.170000px;}
.x1c_c00441{left:420.765000px;}
.x43_c00441{left:423.360000px;}
.xe3_c00441{left:426.810000px;}
.x9a_c00441{left:428.550000px;}
.x13_c00441{left:430.275000px;}
.x60_c00441{left:434.595000px;}
.xd3_c00441{left:436.320000px;}
.xbc_c00441{left:442.365000px;}
.x39_c00441{left:444.960000px;}
.x96_c00441{left:447.555000px;}
.x24_c00441{left:449.280000px;}
.x70_c00441{left:451.005000px;}
.xaa_c00441{left:453.600000px;}
.x5d_c00441{left:456.195000px;}
.x14_c00441{left:457.920000px;}
.x9b_c00441{left:463.965000px;}
.x1d_c00441{left:465.690000px;}
.xbd_c00441{left:468.285000px;}
.x7c_c00441{left:471.750000px;}
.x9c_c00441{left:476.070000px;}
.x65_c00441{left:477.795000px;}
.xcf_c00441{left:480.390000px;}
.xde_c00441{left:483.840000px;}
.x34_c00441{left:485.565000px;}
.x2f_c00441{left:490.755000px;}
.x58_c00441{left:492.480000px;}
.x74_c00441{left:496.800000px;}
.xda_c00441{left:502.845000px;}
.x6c_c00441{left:505.440000px;}
.x59_c00441{left:509.760000px;}
.x7d_c00441{left:512.355000px;}
.x9d_c00441{left:515.805000px;}
.x4_c00441{left:517.530000px;}
.x1e_c00441{left:522.720000px;}
.x5_c00441{left:525.315000px;}
.x30_c00441{left:527.910000px;}
.x61_c00441{left:532.230000px;}
.x6_c00441{left:538.275000px;}
.x25_c00441{left:540.000000px;}
.x3a_c00441{left:543.450000px;}
.x97_c00441{left:546.915000px;}
.x75_c00441{left:549.510000px;}
.xcb_c00441{left:552.960000px;}
.x35_c00441{left:557.280000px;}
.x9e_c00441{left:561.600000px;}
.x8c_c00441{left:565.050000px;}
.x3b_c00441{left:570.240000px;}
.x31_c00441{left:573.690000px;}
.x8d_c00441{left:577.155000px;}
.x86_c00441{left:579.750000px;}
.x92_c00441{left:585.795000px;}
.x83_c00441{left:590.970000px;}
.xd0_c00441{left:603.075000px;}
.xbe_c00441{left:606.525000px;}
.x44_c00441{left:609.990000px;}
.x45_c00441{left:616.035000px;}
.x76_c00441{left:617.760000px;}
.x8e_c00441{left:622.080000px;}
.x6a_c00441{left:628.125000px;}
.x5e_c00441{left:632.445000px;}
.x98_c00441{left:639.360000px;}
.x28_c00441{left:642.810000px;}
.xf4_c00441{left:646.275000px;}
.x77_c00441{left:648.000000px;}
.xc9_c00441{left:649.725000px;}
.x7_c00441{left:652.320000px;}
.x36_c00441{left:654.045000px;}
.x1f_c00441{left:656.640000px;}
.x9f_c00441{left:659.235000px;}
.x6d_c00441{left:661.830000px;}
.x3c_c00441{left:663.555000px;}
.xa0_c00441{left:665.280000px;}
.x15_c00441{left:669.600000px;}
.xf7_c00441{left:671.325000px;}
.x20_c00441{left:674.790000px;}
.x46_c00441{left:678.240000px;}
.x71_c00441{left:683.430000px;}
.xed_c00441{left:685.155000px;}
.x78_c00441{left:688.605000px;}
.xdf_c00441{left:690.330000px;}
.xbf_c00441{left:692.070000px;}
.xf9_c00441{left:695.520000px;}
.xf5_c00441{left:698.115000px;}
.x47_c00441{left:701.565000px;}
.x32_c00441{left:712.800000px;}
.x16_c00441{left:716.250000px;}
.xee_c00441{left:719.715000px;}
.x53_c00441{left:724.035000px;}
.xfd_c00441{left:727.485000px;}
.x72_c00441{left:733.530000px;}
.xfe_c00441{left:738.720000px;}
.x66_c00441{left:740.445000px;}
.xef_c00441{left:742.170000px;}
.x8f_c00441{left:743.910000px;}
.xd_c00441{left:746.490000px;}
.x54_c00441{left:748.230000px;}
.xab_c00441{left:749.955000px;}
.xd4_c00441{left:751.680000px;}
.x8_c00441{left:753.405000px;}
.xe_c00441{left:757.725000px;}
.x48_c00441{left:760.320000px;}
.x7e_c00441{left:763.770000px;}
.xf0_c00441{left:766.365000px;}
.xfc_c00441{left:768.090000px;}
.x21_c00441{left:769.830000px;}
.x10f_c00441{left:774.150000px;}
.xf8_c00441{left:776.730000px;}
.x90_c00441{left:781.920000px;}
.x49_c00441{left:785.370000px;}
.xf_c00441{left:787.965000px;}
.xca_c00441{left:790.560000px;}
.x4a_c00441{left:795.750000px;}
.x87_c00441{left:799.200000px;}
.x6b_c00441{left:804.390000px;}
.x4b_c00441{left:806.970000px;}
.xb3_c00441{left:808.710000px;}
.xc0_c00441{left:811.290000px;}
.x93_c00441{left:814.755000px;}
.x4c_c00441{left:816.480000px;}
.x55_c00441{left:822.525000px;}
.xd1_c00441{left:825.120000px;}
.x4d_c00441{left:827.715000px;}
.x7f_c00441{left:832.035000px;}
.xd5_c00441{left:836.355000px;}
.x26_c00441{left:838.080000px;}
.x3d_c00441{left:840.675000px;}
.x84_c00441{left:844.125000px;}
.x56_c00441{left:851.910000px;}
.x80_c00441{left:855.360000px;}
.x4e_c00441{left:857.085000px;}
.xcc_c00441{left:865.725000px;}
.x4f_c00441{left:867.450000px;}
.x99_c00441{left:869.190000px;}
.x50_c00441{left:873.510000px;}
.x88_c00441{left:875.235000px;}
.x27_c00441{left:878.685000px;}
.x3e_c00441{left:880.410000px;}
.xc5_c00441{left:882.150000px;}
.x33_c00441{left:883.875000px;}
.x67_c00441{left:888.195000px;}
.x89_c00441{left:889.920000px;}
.x62_c00441{left:892.515000px;}
.x1a_c00441{left:894.240000px;}
.x8a_c00441{left:899.430000px;}
.xc6_c00441{left:902.880000px;}
.x94_c00441{left:904.605000px;}
.x63_c00441{left:907.200000px;}
.xf6_c00441{left:909.795000px;}
.x5a_c00441{left:911.520000px;}
.xc7_c00441{left:915.840000px;}
.xe8_c00441{left:919.290000px;}
.xac_c00441{left:922.755000px;}
.xd6_c00441{left:925.350000px;}
.xfa_c00441{left:930.525000px;}
.xad_c00441{left:932.250000px;}
.xe0_c00441{left:935.715000px;}
.x17_c00441{left:937.440000px;}
.xd7_c00441{left:940.035000px;}
.xfb_c00441{left:944.355000px;}
.xd9_c00441{left:946.080000px;}
.xe9_c00441{left:948.675000px;}
.xae_c00441{left:954.720000px;}
.xe1_c00441{left:956.445000px;}
.xb4_c00441{left:962.490000px;}
.xc1_c00441{left:966.810000px;}
.xa4_c00441{left:968.550000px;}
.xd8_c00441{left:972.000000px;}
.xea_c00441{left:973.725000px;}
.xf1_c00441{left:980.640000px;}
.xb5_c00441{left:984.960000px;}
.xe4_c00441{left:986.685000px;}
.xa5_c00441{left:989.280000px;}
.xeb_c00441{left:993.600000px;}
.xb6_c00441{left:998.790000px;}
.xaf_c00441{left:1003.965000px;}
.xff_c00441{left:1005.690000px;}
.xa6_c00441{left:1007.430000px;}
.xe2_c00441{left:1010.880000px;}
.xb7_c00441{left:1014.330000px;}
.xc2_c00441{left:1016.070000px;}
.xec_c00441{left:1018.650000px;}
.xa7_c00441{left:1021.245000px;}
.xe5_c00441{left:1029.885000px;}
.xdb_c00441{left:1034.205000px;}
.xe6_c00441{left:1037.670000px;}
.xf3_c00441{left:1041.120000px;}
.xf2_c00441{left:1053.210000px;}
.x100_c00441{left:1054.950000px;}
@media print{
.v1_c00441{vertical-align:-6.133333pt;}
.v0_c00441{vertical-align:0.000000pt;}
.ls1_c00441{letter-spacing:0.000000pt;}
.ls0_c00441{letter-spacing:602.109653pt;}
.ws0_c00441{word-spacing:0.000000pt;}
.fs2_c00441{font-size:3.072000pt;}
.fs3_c00441{font-size:5.333333pt;}
.fs0_c00441{font-size:6.133333pt;}
.fs4_c00441{font-size:9.226667pt;}
.fs1f_c00441{font-size:12.266667pt;}
.fs1_c00441{font-size:15.360000pt;}
.fse_c00441{font-size:18.453333pt;}
.fs22_c00441{font-size:21.493333pt;}
.fs1e_c00441{font-size:24.586667pt;}
.fs2f_c00441{font-size:27.626667pt;}
.fs1c_c00441{font-size:30.720000pt;}
.fs8_c00441{font-size:33.813333pt;}
.fs1d_c00441{font-size:36.853333pt;}
.fs2c_c00441{font-size:39.946667pt;}
.fs20_c00441{font-size:42.986667pt;}
.fs2e_c00441{font-size:46.080000pt;}
.fs11_c00441{font-size:49.173333pt;}
.fs21_c00441{font-size:52.213333pt;}
.fs15_c00441{font-size:55.306667pt;}
.fs18_c00441{font-size:58.346667pt;}
.fs10_c00441{font-size:61.440000pt;}
.fs2a_c00441{font-size:64.533333pt;}
.fsd_c00441{font-size:67.573333pt;}
.fs19_c00441{font-size:70.666667pt;}
.fs2d_c00441{font-size:73.706667pt;}
.fs1a_c00441{font-size:76.800000pt;}
.fs17_c00441{font-size:79.893333pt;}
.fsb_c00441{font-size:82.933333pt;}
.fs14_c00441{font-size:86.026667pt;}
.fs2b_c00441{font-size:89.066667pt;}
.fs5_c00441{font-size:92.160000pt;}
.fs6_c00441{font-size:95.253333pt;}
.fs12_c00441{font-size:98.293333pt;}
.fsc_c00441{font-size:101.386667pt;}
.fs9_c00441{font-size:104.426667pt;}
.fs13_c00441{font-size:107.520000pt;}
.fs28_c00441{font-size:110.613333pt;}
.fs1b_c00441{font-size:113.653333pt;}
.fsf_c00441{font-size:116.746667pt;}
.fs24_c00441{font-size:119.786667pt;}
.fs7_c00441{font-size:122.880000pt;}
.fs27_c00441{font-size:125.973333pt;}
.fs16_c00441{font-size:129.013333pt;}
.fs30_c00441{font-size:132.106667pt;}
.fsa_c00441{font-size:135.146667pt;}
.fs26_c00441{font-size:138.240000pt;}
.fs23_c00441{font-size:141.333333pt;}
.fs29_c00441{font-size:144.373333pt;}
.fs25_c00441{font-size:150.506667pt;}
.fs31_c00441{font-size:184.320000pt;}
.fs32_c00441{font-size:224.266667pt;}
.fs33_c00441{font-size:227.306667pt;}
.fs34_c00441{font-size:233.493333pt;}
.fs35_c00441{font-size:285.706667pt;}
.y0_c00441{bottom:0.000000pt;}
.y181_c00441{bottom:76.800000pt;}
.y17f_c00441{bottom:78.333333pt;}
.y15f_c00441{bottom:79.106667pt;}
.y17e_c00441{bottom:79.866667pt;}
.y179_c00441{bottom:83.706667pt;}
.y17b_c00441{bottom:85.253333pt;}
.y180_c00441{bottom:87.546667pt;}
.y17d_c00441{bottom:88.320000pt;}
.y17c_c00441{bottom:89.093333pt;}
.y17a_c00441{bottom:89.853333pt;}
.y176_c00441{bottom:92.160000pt;}
.y178_c00441{bottom:92.933333pt;}
.y177_c00441{bottom:93.693333pt;}
.y175_c00441{bottom:96.000000pt;}
.y174_c00441{bottom:100.613333pt;}
.y173_c00441{bottom:101.373333pt;}
.y171_c00441{bottom:102.146667pt;}
.y172_c00441{bottom:104.453333pt;}
.y170_c00441{bottom:108.293333pt;}
.y16f_c00441{bottom:109.053333pt;}
.y16d_c00441{bottom:110.586667pt;}
.y16e_c00441{bottom:113.666667pt;}
.y16c_c00441{bottom:114.426667pt;}
.y155_c00441{bottom:115.200000pt;}
.y169_c00441{bottom:117.506667pt;}
.y165_c00441{bottom:119.040000pt;}
.y16b_c00441{bottom:120.573333pt;}
.y168_c00441{bottom:121.346667pt;}
.y16a_c00441{bottom:122.106667pt;}
.y166_c00441{bottom:122.880000pt;}
.y164_c00441{bottom:124.413333pt;}
.y162_c00441{bottom:125.186667pt;}
.y167_c00441{bottom:126.720000pt;}
.y163_c00441{bottom:128.253333pt;}
.y161_c00441{bottom:129.786667pt;}
.y15d_c00441{bottom:130.560000pt;}
.y15e_c00441{bottom:131.333333pt;}
.y156_c00441{bottom:132.866667pt;}
.y15b_c00441{bottom:134.400000pt;}
.y159_c00441{bottom:135.173333pt;}
.y158_c00441{bottom:135.933333pt;}
.y15c_c00441{bottom:137.466667pt;}
.y160_c00441{bottom:139.013333pt;}
.y157_c00441{bottom:141.306667pt;}
.y15a_c00441{bottom:144.386667pt;}
.y14e_c00441{bottom:146.693333pt;}
.y153_c00441{bottom:147.453333pt;}
.y14f_c00441{bottom:148.226667pt;}
.y14d_c00441{bottom:152.066667pt;}
.y154_c00441{bottom:153.600000pt;}
.y152_c00441{bottom:157.440000pt;}
.y150_c00441{bottom:158.213333pt;}
.y151_c00441{bottom:160.506667pt;}
.y141_c00441{bottom:166.653333pt;}
.y14a_c00441{bottom:167.426667pt;}
.y146_c00441{bottom:168.186667pt;}
.y148_c00441{bottom:168.960000pt;}
.y147_c00441{bottom:169.733333pt;}
.y149_c00441{bottom:170.493333pt;}
.y14b_c00441{bottom:172.026667pt;}
.y13d_c00441{bottom:172.800000pt;}
.y142_c00441{bottom:174.333333pt;}
.y145_c00441{bottom:175.106667pt;}
.y144_c00441{bottom:175.866667pt;}
.y13a_c00441{bottom:176.640000pt;}
.y139_c00441{bottom:179.706667pt;}
.y14c_c00441{bottom:180.480000pt;}
.y143_c00441{bottom:181.253333pt;}
.y13c_c00441{bottom:182.786667pt;}
.y140_c00441{bottom:194.306667pt;}
.y13f_c00441{bottom:197.373333pt;}
.y13b_c00441{bottom:198.906667pt;}
.y138_c00441{bottom:199.680000pt;}
.y13e_c00441{bottom:211.200000pt;}
.y136_c00441{bottom:220.413333pt;}
.y133_c00441{bottom:221.946667pt;}
.y137_c00441{bottom:222.720000pt;}
.y131_c00441{bottom:225.786667pt;}
.y132_c00441{bottom:227.333333pt;}
.y130_c00441{bottom:228.093333pt;}
.y135_c00441{bottom:231.933333pt;}
.y134_c00441{bottom:232.706667pt;}
.y12f_c00441{bottom:258.053333pt;}
.y12e_c00441{bottom:259.586667pt;}
.y12a_c00441{bottom:260.346667pt;}
.y128_c00441{bottom:261.120000pt;}
.y12d_c00441{bottom:261.893333pt;}
.y127_c00441{bottom:262.653333pt;}
.y124_c00441{bottom:263.426667pt;}
.y129_c00441{bottom:264.186667pt;}
.y123_c00441{bottom:266.493333pt;}
.y12c_c00441{bottom:269.573333pt;}
.y126_c00441{bottom:270.333333pt;}
.y125_c00441{bottom:272.640000pt;}
.y122_c00441{bottom:274.173333pt;}
.y12b_c00441{bottom:277.253333pt;}
.y120_c00441{bottom:284.160000pt;}
.y11f_c00441{bottom:284.933333pt;}
.y11d_c00441{bottom:288.773333pt;}
.y11c_c00441{bottom:289.533333pt;}
.y121_c00441{bottom:291.066667pt;}
.y11a_c00441{bottom:292.613333pt;}
.y11b_c00441{bottom:296.453333pt;}
.y11e_c00441{bottom:297.986667pt;}
.y119_c00441{bottom:317.186667pt;}
.y118_c00441{bottom:319.493333pt;}
.y117_c00441{bottom:326.400000pt;}
.y116_c00441{bottom:329.466667pt;}
.y115_c00441{bottom:331.013333pt;}
.y111_c00441{bottom:343.293333pt;}
.y114_c00441{bottom:344.066667pt;}
.y10f_c00441{bottom:344.826667pt;}
.y110_c00441{bottom:345.600000pt;}
.y10e_c00441{bottom:347.906667pt;}
.y10c_c00441{bottom:350.213333pt;}
.y109_c00441{bottom:350.973333pt;}
.y10d_c00441{bottom:351.746667pt;}
.y10b_c00441{bottom:353.280000pt;}
.y10a_c00441{bottom:354.813333pt;}
.y107_c00441{bottom:357.893333pt;}
.y112_c00441{bottom:368.640000pt;}
.y113_c00441{bottom:369.413333pt;}
.y108_c00441{bottom:371.706667pt;}
.y105_c00441{bottom:377.093333pt;}
.y102_c00441{bottom:380.160000pt;}
.y106_c00441{bottom:380.933333pt;}
.y101_c00441{bottom:381.693333pt;}
.y103_c00441{bottom:382.466667pt;}
.y104_c00441{bottom:384.000000pt;}
.y100_c00441{bottom:386.306667pt;}
.yfc_c00441{bottom:403.200000pt;}
.yff_c00441{bottom:403.973333pt;}
.yfb_c00441{bottom:405.506667pt;}
.yf7_c00441{bottom:407.813333pt;}
.yfd_c00441{bottom:409.346667pt;}
.yfe_c00441{bottom:410.880000pt;}
.yf9_c00441{bottom:411.653333pt;}
.yf8_c00441{bottom:414.720000pt;}
.yfa_c00441{bottom:416.253333pt;}
.yf6_c00441{bottom:426.240000pt;}
.yf3_c00441{bottom:430.853333pt;}
.yf5_c00441{bottom:432.386667pt;}
.yf1_c00441{bottom:433.146667pt;}
.yf0_c00441{bottom:434.693333pt;}
.yf2_c00441{bottom:435.453333pt;}
.yef_c00441{bottom:436.226667pt;}
.yee_c00441{bottom:440.066667pt;}
.yed_c00441{bottom:445.440000pt;}
.yf4_c00441{bottom:450.053333pt;}
.ye9_c00441{bottom:453.893333pt;}
.ye7_c00441{bottom:454.653333pt;}
.yea_c00441{bottom:456.186667pt;}
.ye6_c00441{bottom:458.493333pt;}
.ye4_c00441{bottom:459.266667pt;}
.ye8_c00441{bottom:460.800000pt;}
.ye5_c00441{bottom:465.413333pt;}
.yeb_c00441{bottom:468.480000pt;}
.ye2_c00441{bottom:470.786667pt;}
.ye1_c00441{bottom:471.546667pt;}
.yec_c00441{bottom:473.853333pt;}
.ye3_c00441{bottom:475.386667pt;}
.ye0_c00441{bottom:484.613333pt;}
.ydc_c00441{bottom:486.146667pt;}
.yda_c00441{bottom:487.680000pt;}
.yd9_c00441{bottom:494.586667pt;}
.ydd_c00441{bottom:495.360000pt;}
.ydf_c00441{bottom:496.893333pt;}
.yd5_c00441{bottom:497.666667pt;}
.ydb_c00441{bottom:499.200000pt;}
.yd7_c00441{bottom:500.733333pt;}
.yd6_c00441{bottom:502.266667pt;}
.yd8_c00441{bottom:503.040000pt;}
.yd4_c00441{bottom:504.573333pt;}
.yd3_c00441{bottom:506.106667pt;}
.yde_c00441{bottom:509.946667pt;}
.yd1_c00441{bottom:513.786667pt;}
.ycf_c00441{bottom:514.560000pt;}
.yd2_c00441{bottom:516.093333pt;}
.ycd_c00441{bottom:517.626667pt;}
.ycc_c00441{bottom:521.466667pt;}
.yc9_c00441{bottom:522.240000pt;}
.ycb_c00441{bottom:523.773333pt;}
.yce_c00441{bottom:528.386667pt;}
.yca_c00441{bottom:531.453333pt;}
.yd0_c00441{bottom:532.226667pt;}
.yc8_c00441{bottom:542.973333pt;}
.yc7_c00441{bottom:546.813333pt;}
.yc4_c00441{bottom:547.586667pt;}
.yc5_c00441{bottom:549.120000pt;}
.yc2_c00441{bottom:552.186667pt;}
.yc3_c00441{bottom:552.960000pt;}
.yc6_c00441{bottom:553.733333pt;}
.yc0_c00441{bottom:557.573333pt;}
.yc1_c00441{bottom:561.413333pt;}
.ybc_c00441{bottom:577.533333pt;}
.ybd_c00441{bottom:578.306667pt;}
.ybe_c00441{bottom:579.066667pt;}
.yb4_c00441{bottom:579.840000pt;}
.yb9_c00441{bottom:580.613333pt;}
.yb8_c00441{bottom:581.373333pt;}
.ybb_c00441{bottom:582.146667pt;}
.yb7_c00441{bottom:582.906667pt;}
.yb3_c00441{bottom:583.680000pt;}
.yb1_c00441{bottom:584.453333pt;}
.yb2_c00441{bottom:585.213333pt;}
.ybf_c00441{bottom:585.986667pt;}
.yba_c00441{bottom:588.293333pt;}
.yb0_c00441{bottom:589.053333pt;}
.yb5_c00441{bottom:594.426667pt;}
.yaf_c00441{bottom:595.200000pt;}
.yb6_c00441{bottom:596.733333pt;}
.y18d_c00441{bottom:599.040000pt;}
.y18c_c00441{bottom:600.573333pt;}
.yab_c00441{bottom:603.653333pt;}
.yaa_c00441{bottom:605.186667pt;}
.yac_c00441{bottom:605.946667pt;}
.yad_c00441{bottom:606.720000pt;}
.ya9_c00441{bottom:616.706667pt;}
.yae_c00441{bottom:621.306667pt;}
.ya8_c00441{bottom:624.386667pt;}
.ya1_c00441{bottom:626.693333pt;}
.ya2_c00441{bottom:627.453333pt;}
.ya7_c00441{bottom:628.226667pt;}
.ya6_c00441{bottom:629.760000pt;}
.ya3_c00441{bottom:630.533333pt;}
.ya5_c00441{bottom:632.066667pt;}
.ya4_c00441{bottom:632.826667pt;}
.y9e_c00441{bottom:634.373333pt;}
.y9d_c00441{bottom:635.133333pt;}
.y9c_c00441{bottom:635.906667pt;}
.y9a_c00441{bottom:638.213333pt;}
.y99_c00441{bottom:638.973333pt;}
.y98_c00441{bottom:641.280000pt;}
.ya0_c00441{bottom:642.813333pt;}
.y9b_c00441{bottom:645.893333pt;}
.y18b_c00441{bottom:649.733333pt;}
.y18a_c00441{bottom:651.266667pt;}
.y9f_c00441{bottom:653.573333pt;}
.y95_c00441{bottom:662.013333pt;}
.y96_c00441{bottom:662.786667pt;}
.y93_c00441{bottom:666.626667pt;}
.y91_c00441{bottom:667.386667pt;}
.y94_c00441{bottom:669.693333pt;}
.y92_c00441{bottom:675.840000pt;}
.y97_c00441{bottom:677.373333pt;}
.y90_c00441{bottom:693.506667pt;}
.y8d_c00441{bottom:694.266667pt;}
.y8b_c00441{bottom:696.573333pt;}
.y87_c00441{bottom:697.346667pt;}
.y8e_c00441{bottom:698.880000pt;}
.y8f_c00441{bottom:699.653333pt;}
.y8a_c00441{bottom:701.186667pt;}
.y8c_c00441{bottom:702.720000pt;}
.y89_c00441{bottom:703.493333pt;}
.y88_c00441{bottom:704.253333pt;}
.y86_c00441{bottom:720.386667pt;}
.y83_c00441{bottom:723.453333pt;}
.y81_c00441{bottom:724.226667pt;}
.y84_c00441{bottom:725.760000pt;}
.y80_c00441{bottom:727.293333pt;}
.y85_c00441{bottom:728.066667pt;}
.y82_c00441{bottom:730.373333pt;}
.y7e_c00441{bottom:748.800000pt;}
.y7b_c00441{bottom:749.573333pt;}
.y7a_c00441{bottom:751.106667pt;}
.y79_c00441{bottom:751.866667pt;}
.y7d_c00441{bottom:752.640000pt;}
.y7c_c00441{bottom:756.480000pt;}
.y78_c00441{bottom:758.786667pt;}
.y77_c00441{bottom:764.160000pt;}
.y7f_c00441{bottom:764.933333pt;}
.y75_c00441{bottom:773.373333pt;}
.y76_c00441{bottom:775.680000pt;}
.y71_c00441{bottom:777.213333pt;}
.y74_c00441{bottom:778.746667pt;}
.y72_c00441{bottom:781.826667pt;}
.y70_c00441{bottom:782.586667pt;}
.y73_c00441{bottom:784.893333pt;}
.y6e_c00441{bottom:801.026667pt;}
.y6d_c00441{bottom:801.786667pt;}
.y6c_c00441{bottom:803.333333pt;}
.y6b_c00441{bottom:807.933333pt;}
.y6f_c00441{bottom:809.466667pt;}
.y6a_c00441{bottom:819.453333pt;}
.y68_c00441{bottom:834.053333pt;}
.y67_c00441{bottom:834.813333pt;}
.y66_c00441{bottom:836.346667pt;}
.y65_c00441{bottom:837.120000pt;}
.y64_c00441{bottom:837.893333pt;}
.y63_c00441{bottom:845.573333pt;}
.y69_c00441{bottom:847.866667pt;}
.y61_c00441{bottom:860.160000pt;}
.y62_c00441{bottom:860.933333pt;}
.y60_c00441{bottom:865.533333pt;}
.y5f_c00441{bottom:868.613333pt;}
.y5d_c00441{bottom:890.106667pt;}
.y5c_c00441{bottom:893.186667pt;}
.y5a_c00441{bottom:896.253333pt;}
.y5b_c00441{bottom:903.173333pt;}
.y5e_c00441{bottom:915.453333pt;}
.y57_c00441{bottom:920.066667pt;}
.y59_c00441{bottom:923.133333pt;}
.y54_c00441{bottom:924.666667pt;}
.y55_c00441{bottom:929.280000pt;}
.y56_c00441{bottom:930.053333pt;}
.y58_c00441{bottom:940.800000pt;}
.y50_c00441{bottom:952.320000pt;}
.y52_c00441{bottom:953.093333pt;}
.y53_c00441{bottom:953.853333pt;}
.y4f_c00441{bottom:954.626667pt;}
.y51_c00441{bottom:956.933333pt;}
.y4e_c00441{bottom:957.693333pt;}
.y4d_c00441{bottom:959.226667pt;}
.y4a_c00441{bottom:963.066667pt;}
.y4c_c00441{bottom:967.680000pt;}
.y49_c00441{bottom:969.213333pt;}
.y4b_c00441{bottom:969.986667pt;}
.y47_c00441{bottom:970.746667pt;}
.y46_c00441{bottom:972.293333pt;}
.y48_c00441{bottom:973.053333pt;}
.y45_c00441{bottom:973.826667pt;}
.y44_c00441{bottom:974.586667pt;}
.y42_c00441{bottom:975.360000pt;}
.y40_c00441{bottom:976.133333pt;}
.y3f_c00441{bottom:977.666667pt;}
.y43_c00441{bottom:978.426667pt;}
.y3e_c00441{bottom:979.200000pt;}
.y3c_c00441{bottom:983.040000pt;}
.y41_c00441{bottom:983.813333pt;}
.y3d_c00441{bottom:986.106667pt;}
.y3b_c00441{bottom:989.946667pt;}
.y3a_c00441{bottom:1006.080000pt;}
.y39_c00441{bottom:1007.613333pt;}
.y37_c00441{bottom:1010.693333pt;}
.y38_c00441{bottom:1012.986667pt;}
.y35_c00441{bottom:1032.186667pt;}
.y34_c00441{bottom:1036.800000pt;}
.y33_c00441{bottom:1037.573333pt;}
.y30_c00441{bottom:1039.106667pt;}
.y31_c00441{bottom:1039.866667pt;}
.y2a_c00441{bottom:1040.640000pt;}
.y2c_c00441{bottom:1041.413333pt;}
.y32_c00441{bottom:1042.946667pt;}
.y2d_c00441{bottom:1043.706667pt;}
.y2f_c00441{bottom:1045.253333pt;}
.y2e_c00441{bottom:1046.013333pt;}
.y2b_c00441{bottom:1047.546667pt;}
.y36_c00441{bottom:1056.773333pt;}
.y29_c00441{bottom:1061.373333pt;}
.y28_c00441{bottom:1064.453333pt;}
.y189_c00441{bottom:1065.213333pt;}
.y188_c00441{bottom:1073.666667pt;}
.y27_c00441{bottom:1092.866667pt;}
.y25_c00441{bottom:1093.626667pt;}
.y26_c00441{bottom:1095.173333pt;}
.y24_c00441{bottom:1096.706667pt;}
.y23_c00441{bottom:1097.466667pt;}
.y22_c00441{bottom:1107.453333pt;}
.y21_c00441{bottom:1110.533333pt;}
.y20_c00441{bottom:1117.440000pt;}
.y1e_c00441{bottom:1121.280000pt;}
.y1f_c00441{bottom:1122.053333pt;}
.y1a_c00441{bottom:1124.346667pt;}
.y1d_c00441{bottom:1125.120000pt;}
.y1c_c00441{bottom:1125.893333pt;}
.y1b_c00441{bottom:1127.426667pt;}
.y19_c00441{bottom:1128.960000pt;}
.y187_c00441{bottom:1129.733333pt;}
.y18_c00441{bottom:1131.266667pt;}
.y17_c00441{bottom:1143.546667pt;}
.y16_c00441{bottom:1148.160000pt;}
.y15_c00441{bottom:1150.466667pt;}
.y14_c00441{bottom:1152.000000pt;}
.y11_c00441{bottom:1153.533333pt;}
.y12_c00441{bottom:1156.613333pt;}
.y10_c00441{bottom:1158.906667pt;}
.y13_c00441{bottom:1161.986667pt;}
.y184_c00441{bottom:1165.826667pt;}
.y186_c00441{bottom:1169.666667pt;}
.y185_c00441{bottom:1171.200000pt;}
.yf_c00441{bottom:1175.040000pt;}
.yc_c00441{bottom:1179.653333pt;}
.ye_c00441{bottom:1181.186667pt;}
.yd_c00441{bottom:1185.026667pt;}
.yb_c00441{bottom:1185.786667pt;}
.ya_c00441{bottom:1186.560000pt;}
.y9_c00441{bottom:1197.306667pt;}
.y8_c00441{bottom:1210.373333pt;}
.y5_c00441{bottom:1214.973333pt;}
.y7_c00441{bottom:1215.746667pt;}
.y3_c00441{bottom:1216.506667pt;}
.y6_c00441{bottom:1217.280000pt;}
.y4_c00441{bottom:1218.053333pt;}
.y18f_c00441{bottom:1219.586667pt;}
.y190_c00441{bottom:1221.893333pt;}
.y1_c00441{bottom:1222.653333pt;}
.y2_c00441{bottom:1223.426667pt;}
.y183_c00441{bottom:1249.533333pt;}
.y182_c00441{bottom:1251.066667pt;}
.y18e_c00441{bottom:1284.866667pt;}
.h3_c00441{height:2.764500pt;}
.h4_c00441{height:4.799479pt;}
.h1_c00441{height:5.519401pt;}
.h5_c00441{height:8.303099pt;}
.h20_c00441{height:11.038802pt;}
.h2_c00441{height:13.822500pt;}
.hf_c00441{height:16.606198pt;}
.h23_c00441{height:19.341901pt;}
.h1f_c00441{height:22.125599pt;}
.h30_c00441{height:24.861302pt;}
.h1d_c00441{height:27.645000pt;}
.h9_c00441{height:30.428698pt;}
.h1e_c00441{height:33.164401pt;}
.h2d_c00441{height:35.948099pt;}
.h21_c00441{height:38.683802pt;}
.h2f_c00441{height:41.467500pt;}
.h12_c00441{height:44.251198pt;}
.h22_c00441{height:46.986901pt;}
.h16_c00441{height:49.770599pt;}
.h19_c00441{height:52.506302pt;}
.h11_c00441{height:55.290000pt;}
.h2b_c00441{height:58.073698pt;}
.he_c00441{height:60.809401pt;}
.h1a_c00441{height:63.593099pt;}
.h2e_c00441{height:66.328802pt;}
.h1b_c00441{height:69.112500pt;}
.h18_c00441{height:71.896198pt;}
.hc_c00441{height:74.631901pt;}
.h15_c00441{height:77.415599pt;}
.h2c_c00441{height:80.151302pt;}
.h6_c00441{height:82.935000pt;}
.h7_c00441{height:85.718698pt;}
.h13_c00441{height:88.454401pt;}
.hd_c00441{height:91.238099pt;}
.ha_c00441{height:93.973802pt;}
.h14_c00441{height:96.757500pt;}
.h29_c00441{height:99.541198pt;}
.h1c_c00441{height:102.276901pt;}
.h10_c00441{height:105.060599pt;}
.h25_c00441{height:107.796302pt;}
.h8_c00441{height:110.580000pt;}
.h28_c00441{height:113.363698pt;}
.h17_c00441{height:116.099401pt;}
.h31_c00441{height:118.883099pt;}
.hb_c00441{height:121.618802pt;}
.h27_c00441{height:124.402500pt;}
.h24_c00441{height:127.186198pt;}
.h2a_c00441{height:129.921901pt;}
.h26_c00441{height:135.441302pt;}
.h32_c00441{height:165.870000pt;}
.h33_c00441{height:201.818099pt;}
.h34_c00441{height:204.553802pt;}
.h35_c00441{height:210.121198pt;}
.h36_c00441{height:257.108099pt;}
.h0_c00441{height:1344.000000pt;}
.w0_c00441{width:978.426667pt;}
.w1_c00441{width:978.666667pt;}
.x0_c00441{left:0.000000pt;}
.x101_c00441{left:23.040000pt;}
.x102_c00441{left:46.080000pt;}
.x103_c00441{left:55.293333pt;}
.x106_c00441{left:58.373333pt;}
.x104_c00441{left:71.426667pt;}
.x108_c00441{left:75.266667pt;}
.x107_c00441{left:79.106667pt;}
.x109_c00441{left:81.413333pt;}
.x105_c00441{left:85.253333pt;}
.x10e_c00441{left:87.546667pt;}
.x10a_c00441{left:107.520000pt;}
.x10b_c00441{left:110.586667pt;}
.xcd_c00441{left:127.493333pt;}
.x10c_c00441{left:132.866667pt;}
.x10d_c00441{left:143.613333pt;}
.xb8_c00441{left:145.146667pt;}
.xb0_c00441{left:147.453333pt;}
.xd2_c00441{left:154.373333pt;}
.xb9_c00441{left:158.973333pt;}
.xb1_c00441{left:162.053333pt;}
.xa8_c00441{left:171.266667pt;}
.xba_c00441{left:178.173333pt;}
.x5f_c00441{left:180.480000pt;}
.xa1_c00441{left:185.853333pt;}
.x6e_c00441{left:187.386667pt;}
.x5b_c00441{left:189.693333pt;}
.x1_c00441{left:192.000000pt;}
.x6f_c00441{left:195.840000pt;}
.x9_c00441{left:197.373333pt;}
.x18_c00441{left:199.680000pt;}
.x2_c00441{left:201.213333pt;}
.x57_c00441{left:202.746667pt;}
.x22_c00441{left:205.053333pt;}
.xa_c00441{left:206.586667pt;}
.x3_c00441{left:209.666709pt;}
.x10_c00441{left:211.200000pt;}
.x3f_c00441{left:221.946667pt;}
.xa2_c00441{left:225.026667pt;}
.x37_c00441{left:233.466667pt;}
.x68_c00441{left:237.306667pt;}
.xc3_c00441{left:238.853333pt;}
.xe7_c00441{left:240.386667pt;}
.x1b_c00441{left:241.920000pt;}
.xb2_c00441{left:243.453333pt;}
.x29_c00441{left:248.066667pt;}
.xdc_c00441{left:249.600000pt;}
.x85_c00441{left:254.213333pt;}
.x11_c00441{left:258.053333pt;}
.xc8_c00441{left:262.653333pt;}
.x95_c00441{left:264.186667pt;}
.x73_c00441{left:268.800000pt;}
.x81_c00441{left:270.333333pt;}
.x19_c00441{left:273.413333pt;}
.x91_c00441{left:274.946667pt;}
.x79_c00441{left:277.253333pt;}
.x40_c00441{left:279.546667pt;}
.x2a_c00441{left:281.093333pt;}
.x51_c00441{left:282.626667pt;}
.xb_c00441{left:286.466667pt;}
.x82_c00441{left:295.680000pt;}
.xbb_c00441{left:297.986667pt;}
.xa9_c00441{left:299.520000pt;}
.x38_c00441{left:301.053333pt;}
.x2b_c00441{left:303.360000pt;}
.x41_c00441{left:311.813333pt;}
.x2c_c00441{left:315.653333pt;}
.xdd_c00441{left:318.720000pt;}
.x7a_c00441{left:328.706667pt;}
.xc4_c00441{left:330.240000pt;}
.x23_c00441{left:331.773333pt;}
.x42_c00441{left:335.613333pt;}
.xce_c00441{left:339.453333pt;}
.x69_c00441{left:345.600000pt;}
.x2d_c00441{left:347.906667pt;}
.xc_c00441{left:351.746667pt;}
.xa3_c00441{left:355.586667pt;}
.x12_c00441{left:357.120000pt;}
.x2e_c00441{left:358.653333pt;}
.x8b_c00441{left:363.266667pt;}
.x64_c00441{left:364.800000pt;}
.x5c_c00441{left:367.866667pt;}
.x52_c00441{left:370.173333pt;}
.x7b_c00441{left:371.706667pt;}
.x1c_c00441{left:374.013333pt;}
.x43_c00441{left:376.320000pt;}
.xe3_c00441{left:379.386667pt;}
.x9a_c00441{left:380.933333pt;}
.x13_c00441{left:382.466667pt;}
.x60_c00441{left:386.306667pt;}
.xd3_c00441{left:387.840000pt;}
.xbc_c00441{left:393.213333pt;}
.x39_c00441{left:395.520000pt;}
.x96_c00441{left:397.826667pt;}
.x24_c00441{left:399.360000pt;}
.x70_c00441{left:400.893333pt;}
.xaa_c00441{left:403.200000pt;}
.x5d_c00441{left:405.506667pt;}
.x14_c00441{left:407.040000pt;}
.x9b_c00441{left:412.413333pt;}
.x1d_c00441{left:413.946667pt;}
.xbd_c00441{left:416.253333pt;}
.x7c_c00441{left:419.333333pt;}
.x9c_c00441{left:423.173333pt;}
.x65_c00441{left:424.706667pt;}
.xcf_c00441{left:427.013333pt;}
.xde_c00441{left:430.080000pt;}
.x34_c00441{left:431.613333pt;}
.x2f_c00441{left:436.226667pt;}
.x58_c00441{left:437.760000pt;}
.x74_c00441{left:441.600000pt;}
.xda_c00441{left:446.973333pt;}
.x6c_c00441{left:449.280000pt;}
.x59_c00441{left:453.120000pt;}
.x7d_c00441{left:455.426667pt;}
.x9d_c00441{left:458.493333pt;}
.x4_c00441{left:460.026667pt;}
.x1e_c00441{left:464.640000pt;}
.x5_c00441{left:466.946667pt;}
.x30_c00441{left:469.253333pt;}
.x61_c00441{left:473.093333pt;}
.x6_c00441{left:478.466667pt;}
.x25_c00441{left:480.000000pt;}
.x3a_c00441{left:483.066667pt;}
.x97_c00441{left:486.146667pt;}
.x75_c00441{left:488.453333pt;}
.xcb_c00441{left:491.520000pt;}
.x35_c00441{left:495.360000pt;}
.x9e_c00441{left:499.200000pt;}
.x8c_c00441{left:502.266667pt;}
.x3b_c00441{left:506.880000pt;}
.x31_c00441{left:509.946667pt;}
.x8d_c00441{left:513.026667pt;}
.x86_c00441{left:515.333333pt;}
.x92_c00441{left:520.706667pt;}
.x83_c00441{left:525.306667pt;}
.xd0_c00441{left:536.066667pt;}
.xbe_c00441{left:539.133333pt;}
.x44_c00441{left:542.213333pt;}
.x45_c00441{left:547.586667pt;}
.x76_c00441{left:549.120000pt;}
.x8e_c00441{left:552.960000pt;}
.x6a_c00441{left:558.333333pt;}
.x5e_c00441{left:562.173333pt;}
.x98_c00441{left:568.320000pt;}
.x28_c00441{left:571.386667pt;}
.xf4_c00441{left:574.466667pt;}
.x77_c00441{left:576.000000pt;}
.xc9_c00441{left:577.533333pt;}
.x7_c00441{left:579.840000pt;}
.x36_c00441{left:581.373333pt;}
.x1f_c00441{left:583.680000pt;}
.x9f_c00441{left:585.986667pt;}
.x6d_c00441{left:588.293333pt;}
.x3c_c00441{left:589.826667pt;}
.xa0_c00441{left:591.360000pt;}
.x15_c00441{left:595.200000pt;}
.xf7_c00441{left:596.733333pt;}
.x20_c00441{left:599.813333pt;}
.x46_c00441{left:602.880000pt;}
.x71_c00441{left:607.493333pt;}
.xed_c00441{left:609.026667pt;}
.x78_c00441{left:612.093333pt;}
.xdf_c00441{left:613.626667pt;}
.xbf_c00441{left:615.173333pt;}
.xf9_c00441{left:618.240000pt;}
.xf5_c00441{left:620.546667pt;}
.x47_c00441{left:623.613333pt;}
.x32_c00441{left:633.600000pt;}
.x16_c00441{left:636.666667pt;}
.xee_c00441{left:639.746667pt;}
.x53_c00441{left:643.586667pt;}
.xfd_c00441{left:646.653333pt;}
.x72_c00441{left:652.026667pt;}
.xfe_c00441{left:656.640000pt;}
.x66_c00441{left:658.173333pt;}
.xef_c00441{left:659.706667pt;}
.x8f_c00441{left:661.253333pt;}
.xd_c00441{left:663.546667pt;}
.x54_c00441{left:665.093333pt;}
.xab_c00441{left:666.626667pt;}
.xd4_c00441{left:668.160000pt;}
.x8_c00441{left:669.693333pt;}
.xe_c00441{left:673.533333pt;}
.x48_c00441{left:675.840000pt;}
.x7e_c00441{left:678.906667pt;}
.xf0_c00441{left:681.213333pt;}
.xfc_c00441{left:682.746667pt;}
.x21_c00441{left:684.293333pt;}
.x10f_c00441{left:688.133333pt;}
.xf8_c00441{left:690.426667pt;}
.x90_c00441{left:695.040000pt;}
.x49_c00441{left:698.106667pt;}
.xf_c00441{left:700.413333pt;}
.xca_c00441{left:702.720000pt;}
.x4a_c00441{left:707.333333pt;}
.x87_c00441{left:710.400000pt;}
.x6b_c00441{left:715.013333pt;}
.x4b_c00441{left:717.306667pt;}
.xb3_c00441{left:718.853333pt;}
.xc0_c00441{left:721.146667pt;}
.x93_c00441{left:724.226667pt;}
.x4c_c00441{left:725.760000pt;}
.x55_c00441{left:731.133333pt;}
.xd1_c00441{left:733.440000pt;}
.x4d_c00441{left:735.746667pt;}
.x7f_c00441{left:739.586667pt;}
.xd5_c00441{left:743.426667pt;}
.x26_c00441{left:744.960000pt;}
.x3d_c00441{left:747.266667pt;}
.x84_c00441{left:750.333333pt;}
.x56_c00441{left:757.253333pt;}
.x80_c00441{left:760.320000pt;}
.x4e_c00441{left:761.853333pt;}
.xcc_c00441{left:769.533333pt;}
.x4f_c00441{left:771.066667pt;}
.x99_c00441{left:772.613333pt;}
.x50_c00441{left:776.453333pt;}
.x88_c00441{left:777.986667pt;}
.x27_c00441{left:781.053333pt;}
.x3e_c00441{left:782.586667pt;}
.xc5_c00441{left:784.133333pt;}
.x33_c00441{left:785.666667pt;}
.x67_c00441{left:789.506667pt;}
.x89_c00441{left:791.040000pt;}
.x62_c00441{left:793.346667pt;}
.x1a_c00441{left:794.880000pt;}
.x8a_c00441{left:799.493333pt;}
.xc6_c00441{left:802.560000pt;}
.x94_c00441{left:804.093333pt;}
.x63_c00441{left:806.400000pt;}
.xf6_c00441{left:808.706667pt;}
.x5a_c00441{left:810.240000pt;}
.xc7_c00441{left:814.080000pt;}
.xe8_c00441{left:817.146667pt;}
.xac_c00441{left:820.226667pt;}
.xd6_c00441{left:822.533333pt;}
.xfa_c00441{left:827.133333pt;}
.xad_c00441{left:828.666667pt;}
.xe0_c00441{left:831.746667pt;}
.x17_c00441{left:833.280000pt;}
.xd7_c00441{left:835.586667pt;}
.xfb_c00441{left:839.426667pt;}
.xd9_c00441{left:840.960000pt;}
.xe9_c00441{left:843.266667pt;}
.xae_c00441{left:848.640000pt;}
.xe1_c00441{left:850.173333pt;}
.xb4_c00441{left:855.546667pt;}
.xc1_c00441{left:859.386667pt;}
.xa4_c00441{left:860.933333pt;}
.xd8_c00441{left:864.000000pt;}
.xea_c00441{left:865.533333pt;}
.xf1_c00441{left:871.680000pt;}
.xb5_c00441{left:875.520000pt;}
.xe4_c00441{left:877.053333pt;}
.xa5_c00441{left:879.360000pt;}
.xeb_c00441{left:883.200000pt;}
.xb6_c00441{left:887.813333pt;}
.xaf_c00441{left:892.413333pt;}
.xff_c00441{left:893.946667pt;}
.xa6_c00441{left:895.493333pt;}
.xe2_c00441{left:898.560000pt;}
.xb7_c00441{left:901.626667pt;}
.xc2_c00441{left:903.173333pt;}
.xec_c00441{left:905.466667pt;}
.xa7_c00441{left:907.773333pt;}
.xe5_c00441{left:915.453333pt;}
.xdb_c00441{left:919.293333pt;}
.xe6_c00441{left:922.373333pt;}
.xf3_c00441{left:925.440000pt;}
.xf2_c00441{left:936.186667pt;}
.x100_c00441{left:937.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2773f9c79f97b9e60480dacf.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.109863;font-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_c00442{transform:matrix(0.048075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048075,0.000000,0.000000,0.250000,0,0);}
.m6a_c00442{transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);}
.mad_c00442{transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);}
.m10_c00442{transform:matrix(0.073375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073375,0.000000,0.000000,0.250000,0,0);}
.m90_c00442{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m16_c00442{transform:matrix(0.083900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083900,0.000000,0.000000,0.250000,0,0);}
.m93_c00442{transform:matrix(0.091900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091900,0.000000,0.000000,0.250000,0,0);}
.ma3_c00442{transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);}
.m58_c00442{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.mc_c00442{transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);}
.m68_c00442{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m84_c00442{transform:matrix(0.120925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120925,0.000000,0.000000,0.250000,0,0);}
.m42_c00442{transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);}
.m6_c00442{transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);}
.m7f_c00442{transform:matrix(0.131225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131225,0.000000,0.000000,0.250000,0,0);}
.m5_c00442{transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);}
.m26_c00442{transform:matrix(0.135975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135975,0.000000,0.000000,0.250000,0,0);}
.m9f_c00442{transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);}
.m57_c00442{transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);}
.m86_c00442{transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);}
.mf_c00442{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m7_c00442{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3c_c00442{transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);}
.m75_c00442{transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);}
.m25_c00442{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);}
.m44_c00442{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m63_c00442{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.ma_c00442{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);}
.m21_c00442{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);}
.m4b_c00442{transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);}
.m37_c00442{transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);}
.m5a_c00442{transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);}
.m8a_c00442{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.m30_c00442{transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);}
.m8d_c00442{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m43_c00442{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);}
.m7c_c00442{transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);}
.m7a_c00442{transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);}
.m72_c00442{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.m28_c00442{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);}
.m9e_c00442{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);}
.m2f_c00442{transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);}
.m3f_c00442{transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);}
.m65_c00442{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.ma2_c00442{transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);}
.m9d_c00442{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.m1d_c00442{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m22_c00442{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m29_c00442{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m89_c00442{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m2e_c00442{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);}
.m54_c00442{transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);}
.m19_c00442{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);}
.m23_c00442{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.m6b_c00442{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.m13_c00442{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m12_c00442{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);}
.m60_c00442{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);}
.m74_c00442{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m27_c00442{transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);}
.m97_c00442{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00442{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);}
.m66_c00442{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);}
.m3d_c00442{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m17_c00442{transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);}
.m52_c00442{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.m5c_c00442{transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);}
.m55_c00442{transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);}
.m4d_c00442{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);}
.m56_c00442{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);}
.m2c_c00442{transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);}
.m3e_c00442{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);}
.m5d_c00442{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m9b_c00442{transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);}
.m59_c00442{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.m7b_c00442{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.m80_c00442{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.m8e_c00442{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);}
.m11_c00442{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.md_c00442{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.m18_c00442{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);}
.m3a_c00442{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);}
.m73_c00442{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);}
.m53_c00442{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m9c_c00442{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);}
.m5b_c00442{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);}
.m61_c00442{transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);}
.m85_c00442{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);}
.m9_c00442{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m7e_c00442{transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);}
.m78_c00442{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);}
.m36_c00442{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m64_c00442{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m4c_c00442{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.m5e_c00442{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);}
.m38_c00442{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);}
.m47_c00442{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);}
.m7d_c00442{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);}
.m91_c00442{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);}
.ma5_c00442{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.ma7_c00442{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);}
.m81_c00442{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);}
.m1e_c00442{transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);}
.mb_c00442{transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);}
.m8_c00442{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);}
.m76_c00442{transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);}
.m35_c00442{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m6c_c00442{transform:matrix(0.237600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237600,0.000000,0.000000,0.250000,0,0);}
.m46_c00442{transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);}
.m6d_c00442{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.m15_c00442{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);}
.m69_c00442{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m94_c00442{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);}
.m71_c00442{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);}
.m1c_c00442{transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);}
.m2a_c00442{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);}
.ma1_c00442{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);}
.m24_c00442{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m83_c00442{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);}
.m99_c00442{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m39_c00442{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00442{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);}
.m82_c00442{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);}
.m31_c00442{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c00442{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m79_c00442{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4e_c00442{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00442{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);}
.m6f_c00442{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m20_c00442{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);}
.m45_c00442{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00442{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c00442{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m77_c00442{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m67_c00442{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);}
.m2d_c00442{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00442{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);}
.m70_c00442{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m50_c00442{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);}
.m4f_c00442{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00442{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m33_c00442{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m34_c00442{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.me_c00442{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m40_c00442{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);}
.m62_c00442{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00442{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);}
.m2_c00442{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m41_c00442{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.maa_c00442{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m8b_c00442{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m8c_c00442{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00442{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m88_c00442{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3_c00442{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m51_c00442{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m0_c00442{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00442{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.mae_c00442{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m92_c00442{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4_c00442{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m98_c00442{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.maf_c00442{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m95_c00442{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00442{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m96_c00442{transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);}
.mac_c00442{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00442{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.ma6_c00442{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00442{transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);}
.m4a_c00442{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.mab_c00442{transform:matrix(1.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.595000,0.000000,0.000000,0.250000,0,0);}
.m48_c00442{transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);}
.m49_c00442{transform:matrix(1.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.820000,0.000000,0.000000,0.250000,0,0);}
.m32_c00442{transform:matrix(3.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.790000,0.000000,0.000000,0.250000,0,0);}
.m87_c00442{transform:matrix(10.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(10.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(10.655000,0.000000,0.000000,0.250000,0,0);}
.v1_c00442{vertical-align:-6.900000px;}
.v2_c00442{vertical-align:-3.420000px;}
.v0_c00442{vertical-align:0.000000px;}
.v3_c00442{vertical-align:3.420000px;}
.v4_c00442{vertical-align:10.380000px;}
.ls4_c00442{letter-spacing:0.000000px;}
.ls3_c00442{letter-spacing:47.060688px;}
.ls0_c00442{letter-spacing:82.151200px;}
.ls2_c00442{letter-spacing:215.934000px;}
.ls1_c00442{letter-spacing:290.610000px;}
.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:-26.200020px;}
.ws1_c00442{word-spacing:-10.495920px;}
.ws2_c00442{word-spacing:0.000000px;}
._0_c00442{width:2.535020px;}
.fc0_c00442{color:transparent;}
.fs0_c00442{font-size:3.456000px;}
.fs1d_c00442{font-size:6.000000px;}
.fs1a_c00442{font-size:6.900000px;}
.fs5_c00442{font-size:10.380000px;}
.fs15_c00442{font-size:13.800000px;}
.fs4_c00442{font-size:17.280000px;}
.fs1_c00442{font-size:20.760000px;}
.fs2a_c00442{font-size:24.180000px;}
.fs3_c00442{font-size:27.660000px;}
.fs29_c00442{font-size:31.080000px;}
.fs2_c00442{font-size:34.560000px;}
.fs28_c00442{font-size:38.040000px;}
.fs27_c00442{font-size:41.460000px;}
.fs1c_c00442{font-size:44.940000px;}
.fs20_c00442{font-size:48.360000px;}
.fs17_c00442{font-size:51.840000px;}
.fs26_c00442{font-size:55.320000px;}
.fs22_c00442{font-size:58.740000px;}
.fs18_c00442{font-size:62.220000px;}
.fs21_c00442{font-size:65.640000px;}
.fs16_c00442{font-size:69.120000px;}
.fs12_c00442{font-size:72.600000px;}
.fs1f_c00442{font-size:76.020000px;}
.fs10_c00442{font-size:79.500000px;}
.fs1e_c00442{font-size:82.920000px;}
.fs11_c00442{font-size:86.400000px;}
.fs1b_c00442{font-size:89.880000px;}
.fsd_c00442{font-size:93.300000px;}
.fs8_c00442{font-size:96.780000px;}
.fsf_c00442{font-size:100.200000px;}
.fs14_c00442{font-size:103.680000px;}
.fsb_c00442{font-size:107.160000px;}
.fsa_c00442{font-size:110.580000px;}
.fs9_c00442{font-size:114.060000px;}
.fs13_c00442{font-size:117.480000px;}
.fse_c00442{font-size:120.960000px;}
.fs6_c00442{font-size:124.440000px;}
.fs19_c00442{font-size:127.860000px;}
.fs7_c00442{font-size:131.340000px;}
.fs24_c00442{font-size:134.760000px;}
.fs25_c00442{font-size:145.140000px;}
.fs23_c00442{font-size:152.040000px;}
.fsc_c00442{font-size:155.520000px;}
.y0_c00442{bottom:0.000000px;}
.y9d_c00442{bottom:847.590000px;}
.ya0_c00442{bottom:849.315000px;}
.y9c_c00442{bottom:851.040000px;}
.ya1_c00442{bottom:852.765000px;}
.ya3_c00442{bottom:853.635000px;}
.ya6_c00442{bottom:855.360000px;}
.ya9_c00442{bottom:856.230000px;}
.yaa_c00442{bottom:857.955000px;}
.ya5_c00442{bottom:859.680000px;}
.y9e_c00442{bottom:861.405000px;}
.y9f_c00442{bottom:862.275000px;}
.ya7_c00442{bottom:863.130000px;}
.ya8_c00442{bottom:864.870000px;}
.ya4_c00442{bottom:867.450000px;}
.yaf_c00442{bottom:868.320000px;}
.yac_c00442{bottom:870.915000px;}
.yad_c00442{bottom:876.090000px;}
.ya2_c00442{bottom:877.830000px;}
.yab_c00442{bottom:881.280000px;}
.y98_c00442{bottom:882.150000px;}
.yae_c00442{bottom:883.005000px;}
.y95_c00442{bottom:883.875000px;}
.y96_c00442{bottom:885.600000px;}
.y97_c00442{bottom:887.325000px;}
.y99_c00442{bottom:889.920000px;}
.y9b_c00442{bottom:897.690000px;}
.y9a_c00442{bottom:901.155000px;}
.y8b_c00442{bottom:914.115000px;}
.y8a_c00442{bottom:915.840000px;}
.y8d_c00442{bottom:916.710000px;}
.y8e_c00442{bottom:917.565000px;}
.y90_c00442{bottom:918.435000px;}
.y8f_c00442{bottom:919.290000px;}
.y92_c00442{bottom:920.160000px;}
.y93_c00442{bottom:921.030000px;}
.y94_c00442{bottom:921.885000px;}
.y8c_c00442{bottom:922.755000px;}
.y91_c00442{bottom:924.480000px;}
.y85_c00442{bottom:930.525000px;}
.y86_c00442{bottom:933.120000px;}
.y88_c00442{bottom:933.990000px;}
.y80_c00442{bottom:935.715000px;}
.y87_c00442{bottom:936.570000px;}
.y89_c00442{bottom:937.440000px;}
.y7d_c00442{bottom:939.165000px;}
.y7e_c00442{bottom:941.760000px;}
.y82_c00442{bottom:942.630000px;}
.y7f_c00442{bottom:943.485000px;}
.y84_c00442{bottom:944.355000px;}
.y83_c00442{bottom:946.080000px;}
.y81_c00442{bottom:956.445000px;}
.y76_c00442{bottom:968.550000px;}
.y78_c00442{bottom:970.275000px;}
.y75_c00442{bottom:972.870000px;}
.y79_c00442{bottom:973.725000px;}
.y77_c00442{bottom:974.595000px;}
.y74_c00442{bottom:975.450000px;}
.y7b_c00442{bottom:976.320000px;}
.y7a_c00442{bottom:981.510000px;}
.y7c_c00442{bottom:984.960000px;}
.yb7_c00442{bottom:996.195000px;}
.y6c_c00442{bottom:999.645000px;}
.y6d_c00442{bottom:1000.515000px;}
.y6e_c00442{bottom:1001.370000px;}
.y6b_c00442{bottom:1005.690000px;}
.y6f_c00442{bottom:1008.285000px;}
.y70_c00442{bottom:1010.880000px;}
.y71_c00442{bottom:1012.605000px;}
.y72_c00442{bottom:1014.330000px;}
.y73_c00442{bottom:1016.070000px;}
.y6a_c00442{bottom:1021.245000px;}
.y64_c00442{bottom:1039.395000px;}
.y61_c00442{bottom:1040.250000px;}
.y5f_c00442{bottom:1041.120000px;}
.y60_c00442{bottom:1041.990000px;}
.y62_c00442{bottom:1043.715000px;}
.y68_c00442{bottom:1044.570000px;}
.y63_c00442{bottom:1045.440000px;}
.y65_c00442{bottom:1046.310000px;}
.y66_c00442{bottom:1048.035000px;}
.y67_c00442{bottom:1048.890000px;}
.y69_c00442{bottom:1049.760000px;}
.y57_c00442{bottom:1065.315000px;}
.y58_c00442{bottom:1067.910000px;}
.y56_c00442{bottom:1069.635000px;}
.y5a_c00442{bottom:1072.230000px;}
.y5c_c00442{bottom:1073.085000px;}
.y59_c00442{bottom:1076.550000px;}
.y5b_c00442{bottom:1080.000000px;}
.y5d_c00442{bottom:1082.595000px;}
.yb6_c00442{bottom:1092.090000px;}
.y4e_c00442{bottom:1092.960000px;}
.y4f_c00442{bottom:1097.280000px;}
.y5e_c00442{bottom:1098.150000px;}
.y51_c00442{bottom:1099.005000px;}
.y52_c00442{bottom:1100.730000px;}
.y50_c00442{bottom:1102.470000px;}
.y53_c00442{bottom:1103.325000px;}
.y54_c00442{bottom:1105.050000px;}
.y55_c00442{bottom:1111.110000px;}
.yb3_c00442{bottom:1117.155000px;}
.yb4_c00442{bottom:1118.010000px;}
.yb5_c00442{bottom:1119.750000px;}
.y48_c00442{bottom:1130.115000px;}
.y49_c00442{bottom:1134.435000px;}
.y47_c00442{bottom:1137.885000px;}
.y4d_c00442{bottom:1138.755000px;}
.y4a_c00442{bottom:1142.205000px;}
.y4b_c00442{bottom:1143.930000px;}
.y4c_c00442{bottom:1144.800000px;}
.y42_c00442{bottom:1156.890000px;}
.y43_c00442{bottom:1158.630000px;}
.y35_c00442{bottom:1160.355000px;}
.y44_c00442{bottom:1161.210000px;}
.y45_c00442{bottom:1162.950000px;}
.y36_c00442{bottom:1163.805000px;}
.y34_c00442{bottom:1164.675000px;}
.y46_c00442{bottom:1165.530000px;}
.y38_c00442{bottom:1166.400000px;}
.y3b_c00442{bottom:1168.125000px;}
.y3c_c00442{bottom:1168.995000px;}
.y39_c00442{bottom:1170.720000px;}
.y3d_c00442{bottom:1171.590000px;}
.y37_c00442{bottom:1172.445000px;}
.y3f_c00442{bottom:1175.040000px;}
.y3a_c00442{bottom:1175.910000px;}
.y3e_c00442{bottom:1179.360000px;}
.y41_c00442{bottom:1181.955000px;}
.y31_c00442{bottom:1195.770000px;}
.y2e_c00442{bottom:1198.365000px;}
.y32_c00442{bottom:1200.090000px;}
.y40_c00442{bottom:1201.830000px;}
.y30_c00442{bottom:1203.555000px;}
.y33_c00442{bottom:1207.005000px;}
.y2f_c00442{bottom:1212.195000px;}
.y21_c00442{bottom:1225.155000px;}
.y23_c00442{bottom:1226.010000px;}
.y24_c00442{bottom:1226.880000px;}
.y2d_c00442{bottom:1229.475000px;}
.y25_c00442{bottom:1230.330000px;}
.y2c_c00442{bottom:1231.200000px;}
.y27_c00442{bottom:1232.925000px;}
.y2a_c00442{bottom:1233.795000px;}
.y28_c00442{bottom:1234.650000px;}
.y22_c00442{bottom:1236.390000px;}
.y2b_c00442{bottom:1237.245000px;}
.y26_c00442{bottom:1238.970000px;}
.y20_c00442{bottom:1239.840000px;}
.y29_c00442{bottom:1242.435000px;}
.y1b_c00442{bottom:1264.035000px;}
.y18_c00442{bottom:1264.890000px;}
.y1a_c00442{bottom:1265.760000px;}
.y1f_c00442{bottom:1266.630000px;}
.y19_c00442{bottom:1268.355000px;}
.y1d_c00442{bottom:1269.210000px;}
.y1c_c00442{bottom:1270.950000px;}
.y1e_c00442{bottom:1272.675000px;}
.y12_c00442{bottom:1292.550000px;}
.y15_c00442{bottom:1296.870000px;}
.y11_c00442{bottom:1297.725000px;}
.y14_c00442{bottom:1301.190000px;}
.y16_c00442{bottom:1302.915000px;}
.y13_c00442{bottom:1304.640000px;}
.yb1_c00442{bottom:1314.150000px;}
.yb2_c00442{bottom:1320.195000px;}
.y17_c00442{bottom:1323.645000px;}
.ya_c00442{bottom:1324.515000px;}
.yb_c00442{bottom:1326.240000px;}
.yf_c00442{bottom:1333.155000px;}
.yd_c00442{bottom:1334.010000px;}
.yc_c00442{bottom:1337.475000px;}
.ye_c00442{bottom:1339.200000px;}
.y9_c00442{bottom:1346.115000px;}
.y10_c00442{bottom:1346.970000px;}
.y6_c00442{bottom:1372.035000px;}
.yb0_c00442{bottom:1373.760000px;}
.y7_c00442{bottom:1377.210000px;}
.y8_c00442{bottom:1378.080000px;}
.y4_c00442{bottom:1392.765000px;}
.y5_c00442{bottom:1395.360000px;}
.y3_c00442{bottom:1406.595000px;}
.y2_c00442{bottom:1435.965000px;}
.y1_c00442{bottom:1436.835000px;}
.h2_c00442{height:3.110063px;}
.h1f_c00442{height:5.399414px;}
.h1c_c00442{height:6.209326px;}
.h23_c00442{height:6.530063px;}
.h7_c00442{height:9.340986px;}
.h17_c00442{height:12.418652px;}
.h6_c00442{height:15.550313px;}
.h3_c00442{height:18.681973px;}
.h2d_c00442{height:21.759639px;}
.h5_c00442{height:24.891299px;}
.h2c_c00442{height:27.968965px;}
.h4_c00442{height:31.100625px;}
.h2b_c00442{height:34.232285px;}
.h2a_c00442{height:37.309951px;}
.h1e_c00442{height:40.441611px;}
.h22_c00442{height:43.519277px;}
.h19_c00442{height:46.650937px;}
.h29_c00442{height:49.782598px;}
.h25_c00442{height:52.860264px;}
.h1a_c00442{height:55.991924px;}
.h24_c00442{height:59.069590px;}
.h18_c00442{height:62.201250px;}
.h14_c00442{height:65.332910px;}
.h21_c00442{height:68.410576px;}
.h12_c00442{height:71.542236px;}
.h20_c00442{height:74.619902px;}
.h13_c00442{height:77.751563px;}
.h1d_c00442{height:80.883223px;}
.hf_c00442{height:83.960889px;}
.ha_c00442{height:87.092549px;}
.h11_c00442{height:90.170215px;}
.h16_c00442{height:93.301875px;}
.hd_c00442{height:96.433535px;}
.hc_c00442{height:99.511201px;}
.hb_c00442{height:102.642861px;}
.h15_c00442{height:105.720527px;}
.h10_c00442{height:108.852188px;}
.h8_c00442{height:111.983848px;}
.h1b_c00442{height:115.061514px;}
.h9_c00442{height:118.193174px;}
.h27_c00442{height:121.270840px;}
.h28_c00442{height:130.611826px;}
.h26_c00442{height:136.821152px;}
.he_c00442{height:139.952812px;}
.h0_c00442{height:1515.450000px;}
.h1_c00442{height:1515.750000px;}
.w0_c00442{width:1079.130000px;}
.w1_c00442{width:1079.250000px;}
.x0_c00442{left:0.000000px;}
.x28_c00442{left:180.570000px;}
.x39_c00442{left:187.485000px;}
.x1e_c00442{left:198.720000px;}
.xa_c00442{left:204.765000px;}
.x3e_c00442{left:208.230000px;}
.xb_c00442{left:211.680000px;}
.x70_c00442{left:213.405000px;}
.x14_c00442{left:216.000000px;}
.x3a_c00442{left:217.725000px;}
.x53_c00442{left:219.450000px;}
.x5f_c00442{left:221.190000px;}
.x77_c00442{left:222.915000px;}
.x88_c00442{left:225.510000px;}
.x83_c00442{left:232.410540px;}
.x78_c00442{left:246.240000px;}
.xc_c00442{left:250.560000px;}
.x1f_c00442{left:254.010000px;}
.x71_c00442{left:255.750000px;}
.x29_c00442{left:259.200000px;}
.x95_c00442{left:264.390000px;}
.x3b_c00442{left:266.970000px;}
.x54_c00442{left:271.290000px;}
.x60_c00442{left:273.030000px;}
.x49_c00442{left:275.610000px;}
.x7e_c00442{left:279.930000px;}
.x79_c00442{left:282.525000px;}
.x2a_c00442{left:285.120000px;}
.x96_c00442{left:287.715000px;}
.x72_c00442{left:294.630000px;}
.x89_c00442{left:298.080000px;}
.x8a_c00442{left:307.590000px;}
.x15_c00442{left:311.910000px;}
.x4a_c00442{left:317.085000px;}
.x8b_c00442{left:318.810000px;}
.x84_c00442{left:328.320000px;}
.x66_c00442{left:332.640000px;}
.x8c_c00442{left:336.960000px;}
.xd_c00442{left:339.555000px;}
.x5a_c00442{left:345.600000px;}
.x3c_c00442{left:352.515000px;}
.x4_c00442{left:366.330000px;}
.x5b_c00442{left:368.925000px;}
.x20_c00442{left:370.650000px;}
.x61_c00442{left:372.390000px;}
.x16_c00442{left:380.160000px;}
.x97_c00442{left:382.755000px;}
.x7a_c00442{left:387.930000px;}
.x4b_c00442{left:390.525000px;}
.x5_c00442{left:394.845000px;}
.x4c_c00442{left:396.570000px;}
.x2b_c00442{left:400.890000px;}
.x3_c00442{left:403.485000px;}
.x8d_c00442{left:407.805000px;}
.x67_c00442{left:412.995000px;}
.x32_c00442{left:417.315000px;}
.x98_c00442{left:419.040000px;}
.x3f_c00442{left:423.360000px;}
.x17_c00442{left:430.275000px;}
.x21_c00442{left:432.870000px;}
.x8e_c00442{left:439.770000px;}
.x55_c00442{left:441.510000px;}
.x68_c00442{left:447.555000px;}
.x18_c00442{left:451.005000px;}
.xe_c00442{left:458.790000px;}
.x99_c00442{left:460.515000px;}
.x7f_c00442{left:462.240000px;}
.x73_c00442{left:463.965000px;}
.x4d_c00442{left:466.560000px;}
.x7b_c00442{left:468.285000px;}
.x19_c00442{left:471.750000px;}
.x1a_c00442{left:484.710000px;}
.x8f_c00442{left:487.290000px;}
.x74_c00442{left:492.480000px;}
.x2c_c00442{left:495.075000px;}
.x33_c00442{left:502.845000px;}
.x4e_c00442{left:507.165000px;}
.xf_c00442{left:509.760000px;}
.x40_c00442{left:512.355000px;}
.x69_c00442{left:514.080000px;}
.x22_c00442{left:518.400000px;}
.x5c_c00442{left:520.995000px;}
.x90_c00442{left:523.590000px;}
.x85_c00442{left:525.315000px;}
.x23_c00442{left:531.360000px;}
.x62_c00442{left:538.275000px;}
.x10_c00442{left:541.725000px;}
.x4f_c00442{left:545.190000px;}
.x7c_c00442{left:548.640000px;}
.x56_c00442{left:551.235000px;}
.x5d_c00442{left:555.555000px;}
.x1_c00442{left:557.280000px;}
.x24_c00442{left:561.600000px;}
.x2d_c00442{left:563.325000px;}
.x9a_c00442{left:565.049430px;}
.x2_c00442{left:566.790000px;}
.x9b_c00442{left:572.835000px;}
.x91_c00442{left:578.010000px;}
.x86_c00442{left:580.605000px;}
.x50_c00442{left:582.330000px;}
.x41_c00442{left:584.925000px;}
.x6a_c00442{left:590.115000px;}
.x80_c00442{left:592.710000px;}
.x9c_c00442{left:598.755000px;}
.x75_c00442{left:603.930000px;}
.x25_c00442{left:605.670000px;}
.x11_c00442{left:614.310000px;}
.x3d_c00442{left:616.035000px;}
.x81_c00442{left:625.530000px;}
.x2e_c00442{left:627.270000px;}
.x63_c00442{left:630.720000px;}
.x57_c00442{left:633.315000px;}
.x1b_c00442{left:635.040000px;}
.x92_c00442{left:637.635000px;}
.x12_c00442{left:639.360000px;}
.x6b_c00442{left:641.955000px;}
.x2f_c00442{left:647.130000px;}
.x6c_c00442{left:648.870000px;}
.x6_c00442{left:650.595000px;}
.x87_c00442{left:656.640000px;}
.x58_c00442{left:658.365000px;}
.x9d_c00442{left:662.685000px;}
.x7d_c00442{left:667.005000px;}
.x26_c00442{left:669.600000px;}
.x9e_c00442{left:674.790000px;}
.x82_c00442{left:677.370000px;}
.x9f_c00442{left:679.110000px;}
.x59_c00442{left:684.285000px;}
.x5e_c00442{left:686.010000px;}
.x6d_c00442{left:688.605000px;}
.x42_c00442{left:692.925000px;}
.x51_c00442{left:699.840000px;}
.x34_c00442{left:701.565000px;}
.x93_c00442{left:706.755000px;}
.x35_c00442{left:708.480000px;}
.x1c_c00442{left:719.715000px;}
.x30_c00442{left:722.310000px;}
.x76_c00442{left:732.675000px;}
.xa0_c00442{left:737.850000px;}
.x43_c00442{left:740.445000px;}
.x7_c00442{left:743.910000px;}
.x64_c00442{left:749.085000px;}
.x44_c00442{left:752.550000px;}
.x8_c00442{left:765.510000px;}
.x52_c00442{left:768.960000px;}
.x9_c00442{left:781.050000px;}
.x31_c00442{left:782.790000px;}
.x45_c00442{left:787.965000px;}
.xa1_c00442{left:794.880000px;}
.x36_c00442{left:796.605000px;}
.x27_c00442{left:800.070000px;}
.x37_c00442{left:809.565000px;}
.x46_c00442{left:815.610000px;}
.xa2_c00442{left:821.670000px;}
.x6e_c00442{left:825.990000px;}
.xa3_c00442{left:830.310000px;}
.x65_c00442{left:832.890000px;}
.xa4_c00442{left:843.270000px;}
.x6f_c00442{left:849.315000px;}
.x94_c00442{left:851.040000px;}
.x13_c00442{left:860.550000px;}
.x38_c00442{left:862.275912px;}
.x1d_c00442{left:864.000000px;}
.x47_c00442{left:878.685000px;}
.x48_c00442{left:883.005000px;}
.xac_c00442{left:954.720000px;}
.xa6_c00442{left:975.450000px;}
.xa7_c00442{left:983.235000px;}
.xa5_c00442{left:1000.515000px;}
.xae_c00442{left:1006.560000px;}
.xad_c00442{left:1020.390000px;}
.xab_c00442{left:1034.205000px;}
.xa8_c00442{left:1043.715000px;}
.xa9_c00442{left:1049.760000px;}
.xaa_c00442{left:1060.125000px;}
@media print{
.v1_c00442{vertical-align:-6.133333pt;}
.v2_c00442{vertical-align:-3.040000pt;}
.v0_c00442{vertical-align:0.000000pt;}
.v3_c00442{vertical-align:3.040000pt;}
.v4_c00442{vertical-align:9.226667pt;}
.ls4_c00442{letter-spacing:0.000000pt;}
.ls3_c00442{letter-spacing:41.831723pt;}
.ls0_c00442{letter-spacing:73.023289pt;}
.ls2_c00442{letter-spacing:191.941333pt;}
.ls1_c00442{letter-spacing:258.320000pt;}
.ws0_c00442{word-spacing:-23.288907pt;}
.ws1_c00442{word-spacing:-9.329707pt;}
.ws2_c00442{word-spacing:0.000000pt;}
._0_c00442{width:2.253352pt;}
.fs0_c00442{font-size:3.072000pt;}
.fs1d_c00442{font-size:5.333333pt;}
.fs1a_c00442{font-size:6.133333pt;}
.fs5_c00442{font-size:9.226667pt;}
.fs15_c00442{font-size:12.266667pt;}
.fs4_c00442{font-size:15.360000pt;}
.fs1_c00442{font-size:18.453333pt;}
.fs2a_c00442{font-size:21.493333pt;}
.fs3_c00442{font-size:24.586667pt;}
.fs29_c00442{font-size:27.626667pt;}
.fs2_c00442{font-size:30.720000pt;}
.fs28_c00442{font-size:33.813333pt;}
.fs27_c00442{font-size:36.853333pt;}
.fs1c_c00442{font-size:39.946667pt;}
.fs20_c00442{font-size:42.986667pt;}
.fs17_c00442{font-size:46.080000pt;}
.fs26_c00442{font-size:49.173333pt;}
.fs22_c00442{font-size:52.213333pt;}
.fs18_c00442{font-size:55.306667pt;}
.fs21_c00442{font-size:58.346667pt;}
.fs16_c00442{font-size:61.440000pt;}
.fs12_c00442{font-size:64.533333pt;}
.fs1f_c00442{font-size:67.573333pt;}
.fs10_c00442{font-size:70.666667pt;}
.fs1e_c00442{font-size:73.706667pt;}
.fs11_c00442{font-size:76.800000pt;}
.fs1b_c00442{font-size:79.893333pt;}
.fsd_c00442{font-size:82.933333pt;}
.fs8_c00442{font-size:86.026667pt;}
.fsf_c00442{font-size:89.066667pt;}
.fs14_c00442{font-size:92.160000pt;}
.fsb_c00442{font-size:95.253333pt;}
.fsa_c00442{font-size:98.293333pt;}
.fs9_c00442{font-size:101.386667pt;}
.fs13_c00442{font-size:104.426667pt;}
.fse_c00442{font-size:107.520000pt;}
.fs6_c00442{font-size:110.613333pt;}
.fs19_c00442{font-size:113.653333pt;}
.fs7_c00442{font-size:116.746667pt;}
.fs24_c00442{font-size:119.786667pt;}
.fs25_c00442{font-size:129.013333pt;}
.fs23_c00442{font-size:135.146667pt;}
.fsc_c00442{font-size:138.240000pt;}
.y0_c00442{bottom:0.000000pt;}
.y9d_c00442{bottom:753.413333pt;}
.ya0_c00442{bottom:754.946667pt;}
.y9c_c00442{bottom:756.480000pt;}
.ya1_c00442{bottom:758.013333pt;}
.ya3_c00442{bottom:758.786667pt;}
.ya6_c00442{bottom:760.320000pt;}
.ya9_c00442{bottom:761.093333pt;}
.yaa_c00442{bottom:762.626667pt;}
.ya5_c00442{bottom:764.160000pt;}
.y9e_c00442{bottom:765.693333pt;}
.y9f_c00442{bottom:766.466667pt;}
.ya7_c00442{bottom:767.226667pt;}
.ya8_c00442{bottom:768.773333pt;}
.ya4_c00442{bottom:771.066667pt;}
.yaf_c00442{bottom:771.840000pt;}
.yac_c00442{bottom:774.146667pt;}
.yad_c00442{bottom:778.746667pt;}
.ya2_c00442{bottom:780.293333pt;}
.yab_c00442{bottom:783.360000pt;}
.y98_c00442{bottom:784.133333pt;}
.yae_c00442{bottom:784.893333pt;}
.y95_c00442{bottom:785.666667pt;}
.y96_c00442{bottom:787.200000pt;}
.y97_c00442{bottom:788.733333pt;}
.y99_c00442{bottom:791.040000pt;}
.y9b_c00442{bottom:797.946667pt;}
.y9a_c00442{bottom:801.026667pt;}
.y8b_c00442{bottom:812.546667pt;}
.y8a_c00442{bottom:814.080000pt;}
.y8d_c00442{bottom:814.853333pt;}
.y8e_c00442{bottom:815.613333pt;}
.y90_c00442{bottom:816.386667pt;}
.y8f_c00442{bottom:817.146667pt;}
.y92_c00442{bottom:817.920000pt;}
.y93_c00442{bottom:818.693333pt;}
.y94_c00442{bottom:819.453333pt;}
.y8c_c00442{bottom:820.226667pt;}
.y91_c00442{bottom:821.760000pt;}
.y85_c00442{bottom:827.133333pt;}
.y86_c00442{bottom:829.440000pt;}
.y88_c00442{bottom:830.213333pt;}
.y80_c00442{bottom:831.746667pt;}
.y87_c00442{bottom:832.506667pt;}
.y89_c00442{bottom:833.280000pt;}
.y7d_c00442{bottom:834.813333pt;}
.y7e_c00442{bottom:837.120000pt;}
.y82_c00442{bottom:837.893333pt;}
.y7f_c00442{bottom:838.653333pt;}
.y84_c00442{bottom:839.426667pt;}
.y83_c00442{bottom:840.960000pt;}
.y81_c00442{bottom:850.173333pt;}
.y76_c00442{bottom:860.933333pt;}
.y78_c00442{bottom:862.466667pt;}
.y75_c00442{bottom:864.773333pt;}
.y79_c00442{bottom:865.533333pt;}
.y77_c00442{bottom:866.306667pt;}
.y74_c00442{bottom:867.066667pt;}
.y7b_c00442{bottom:867.840000pt;}
.y7a_c00442{bottom:872.453333pt;}
.y7c_c00442{bottom:875.520000pt;}
.yb7_c00442{bottom:885.506667pt;}
.y6c_c00442{bottom:888.573333pt;}
.y6d_c00442{bottom:889.346667pt;}
.y6e_c00442{bottom:890.106667pt;}
.y6b_c00442{bottom:893.946667pt;}
.y6f_c00442{bottom:896.253333pt;}
.y70_c00442{bottom:898.560000pt;}
.y71_c00442{bottom:900.093333pt;}
.y72_c00442{bottom:901.626667pt;}
.y73_c00442{bottom:903.173333pt;}
.y6a_c00442{bottom:907.773333pt;}
.y64_c00442{bottom:923.906667pt;}
.y61_c00442{bottom:924.666667pt;}
.y5f_c00442{bottom:925.440000pt;}
.y60_c00442{bottom:926.213333pt;}
.y62_c00442{bottom:927.746667pt;}
.y68_c00442{bottom:928.506667pt;}
.y63_c00442{bottom:929.280000pt;}
.y65_c00442{bottom:930.053333pt;}
.y66_c00442{bottom:931.586667pt;}
.y67_c00442{bottom:932.346667pt;}
.y69_c00442{bottom:933.120000pt;}
.y57_c00442{bottom:946.946667pt;}
.y58_c00442{bottom:949.253333pt;}
.y56_c00442{bottom:950.786667pt;}
.y5a_c00442{bottom:953.093333pt;}
.y5c_c00442{bottom:953.853333pt;}
.y59_c00442{bottom:956.933333pt;}
.y5b_c00442{bottom:960.000000pt;}
.y5d_c00442{bottom:962.306667pt;}
.yb6_c00442{bottom:970.746667pt;}
.y4e_c00442{bottom:971.520000pt;}
.y4f_c00442{bottom:975.360000pt;}
.y5e_c00442{bottom:976.133333pt;}
.y51_c00442{bottom:976.893333pt;}
.y52_c00442{bottom:978.426667pt;}
.y50_c00442{bottom:979.973333pt;}
.y53_c00442{bottom:980.733333pt;}
.y54_c00442{bottom:982.266667pt;}
.y55_c00442{bottom:987.653333pt;}
.yb3_c00442{bottom:993.026667pt;}
.yb4_c00442{bottom:993.786667pt;}
.yb5_c00442{bottom:995.333333pt;}
.y48_c00442{bottom:1004.546667pt;}
.y49_c00442{bottom:1008.386667pt;}
.y47_c00442{bottom:1011.453333pt;}
.y4d_c00442{bottom:1012.226667pt;}
.y4a_c00442{bottom:1015.293333pt;}
.y4b_c00442{bottom:1016.826667pt;}
.y4c_c00442{bottom:1017.600000pt;}
.y42_c00442{bottom:1028.346667pt;}
.y43_c00442{bottom:1029.893333pt;}
.y35_c00442{bottom:1031.426667pt;}
.y44_c00442{bottom:1032.186667pt;}
.y45_c00442{bottom:1033.733333pt;}
.y36_c00442{bottom:1034.493333pt;}
.y34_c00442{bottom:1035.266667pt;}
.y46_c00442{bottom:1036.026667pt;}
.y38_c00442{bottom:1036.800000pt;}
.y3b_c00442{bottom:1038.333333pt;}
.y3c_c00442{bottom:1039.106667pt;}
.y39_c00442{bottom:1040.640000pt;}
.y3d_c00442{bottom:1041.413333pt;}
.y37_c00442{bottom:1042.173333pt;}
.y3f_c00442{bottom:1044.480000pt;}
.y3a_c00442{bottom:1045.253333pt;}
.y3e_c00442{bottom:1048.320000pt;}
.y41_c00442{bottom:1050.626667pt;}
.y31_c00442{bottom:1062.906667pt;}
.y2e_c00442{bottom:1065.213333pt;}
.y32_c00442{bottom:1066.746667pt;}
.y40_c00442{bottom:1068.293333pt;}
.y30_c00442{bottom:1069.826667pt;}
.y33_c00442{bottom:1072.893333pt;}
.y2f_c00442{bottom:1077.506667pt;}
.y21_c00442{bottom:1089.026667pt;}
.y23_c00442{bottom:1089.786667pt;}
.y24_c00442{bottom:1090.560000pt;}
.y2d_c00442{bottom:1092.866667pt;}
.y25_c00442{bottom:1093.626667pt;}
.y2c_c00442{bottom:1094.400000pt;}
.y27_c00442{bottom:1095.933333pt;}
.y2a_c00442{bottom:1096.706667pt;}
.y28_c00442{bottom:1097.466667pt;}
.y22_c00442{bottom:1099.013333pt;}
.y2b_c00442{bottom:1099.773333pt;}
.y26_c00442{bottom:1101.306667pt;}
.y20_c00442{bottom:1102.080000pt;}
.y29_c00442{bottom:1104.386667pt;}
.y1b_c00442{bottom:1123.586667pt;}
.y18_c00442{bottom:1124.346667pt;}
.y1a_c00442{bottom:1125.120000pt;}
.y1f_c00442{bottom:1125.893333pt;}
.y19_c00442{bottom:1127.426667pt;}
.y1d_c00442{bottom:1128.186667pt;}
.y1c_c00442{bottom:1129.733333pt;}
.y1e_c00442{bottom:1131.266667pt;}
.y12_c00442{bottom:1148.933333pt;}
.y15_c00442{bottom:1152.773333pt;}
.y11_c00442{bottom:1153.533333pt;}
.y14_c00442{bottom:1156.613333pt;}
.y16_c00442{bottom:1158.146667pt;}
.y13_c00442{bottom:1159.680000pt;}
.yb1_c00442{bottom:1168.133333pt;}
.yb2_c00442{bottom:1173.506667pt;}
.y17_c00442{bottom:1176.573333pt;}
.ya_c00442{bottom:1177.346667pt;}
.yb_c00442{bottom:1178.880000pt;}
.yf_c00442{bottom:1185.026667pt;}
.yd_c00442{bottom:1185.786667pt;}
.yc_c00442{bottom:1188.866667pt;}
.ye_c00442{bottom:1190.400000pt;}
.y9_c00442{bottom:1196.546667pt;}
.y10_c00442{bottom:1197.306667pt;}
.y6_c00442{bottom:1219.586667pt;}
.yb0_c00442{bottom:1221.120000pt;}
.y7_c00442{bottom:1224.186667pt;}
.y8_c00442{bottom:1224.960000pt;}
.y4_c00442{bottom:1238.013333pt;}
.y5_c00442{bottom:1240.320000pt;}
.y3_c00442{bottom:1250.306667pt;}
.y2_c00442{bottom:1276.413333pt;}
.y1_c00442{bottom:1277.186667pt;}
.h2_c00442{height:2.764500pt;}
.h1f_c00442{height:4.799479pt;}
.h1c_c00442{height:5.519401pt;}
.h23_c00442{height:5.804500pt;}
.h7_c00442{height:8.303099pt;}
.h17_c00442{height:11.038802pt;}
.h6_c00442{height:13.822500pt;}
.h3_c00442{height:16.606198pt;}
.h2d_c00442{height:19.341901pt;}
.h5_c00442{height:22.125599pt;}
.h2c_c00442{height:24.861302pt;}
.h4_c00442{height:27.645000pt;}
.h2b_c00442{height:30.428698pt;}
.h2a_c00442{height:33.164401pt;}
.h1e_c00442{height:35.948099pt;}
.h22_c00442{height:38.683802pt;}
.h19_c00442{height:41.467500pt;}
.h29_c00442{height:44.251198pt;}
.h25_c00442{height:46.986901pt;}
.h1a_c00442{height:49.770599pt;}
.h24_c00442{height:52.506302pt;}
.h18_c00442{height:55.290000pt;}
.h14_c00442{height:58.073698pt;}
.h21_c00442{height:60.809401pt;}
.h12_c00442{height:63.593099pt;}
.h20_c00442{height:66.328802pt;}
.h13_c00442{height:69.112500pt;}
.h1d_c00442{height:71.896198pt;}
.hf_c00442{height:74.631901pt;}
.ha_c00442{height:77.415599pt;}
.h11_c00442{height:80.151302pt;}
.h16_c00442{height:82.935000pt;}
.hd_c00442{height:85.718698pt;}
.hc_c00442{height:88.454401pt;}
.hb_c00442{height:91.238099pt;}
.h15_c00442{height:93.973802pt;}
.h10_c00442{height:96.757500pt;}
.h8_c00442{height:99.541198pt;}
.h1b_c00442{height:102.276901pt;}
.h9_c00442{height:105.060599pt;}
.h27_c00442{height:107.796302pt;}
.h28_c00442{height:116.099401pt;}
.h26_c00442{height:121.618802pt;}
.he_c00442{height:124.402500pt;}
.h0_c00442{height:1347.066667pt;}
.h1_c00442{height:1347.333333pt;}
.w0_c00442{width:959.226667pt;}
.w1_c00442{width:959.333333pt;}
.x0_c00442{left:0.000000pt;}
.x28_c00442{left:160.506667pt;}
.x39_c00442{left:166.653333pt;}
.x1e_c00442{left:176.640000pt;}
.xa_c00442{left:182.013333pt;}
.x3e_c00442{left:185.093333pt;}
.xb_c00442{left:188.160000pt;}
.x70_c00442{left:189.693333pt;}
.x14_c00442{left:192.000000pt;}
.x3a_c00442{left:193.533333pt;}
.x53_c00442{left:195.066667pt;}
.x5f_c00442{left:196.613333pt;}
.x77_c00442{left:198.146667pt;}
.x88_c00442{left:200.453333pt;}
.x83_c00442{left:206.587147pt;}
.x78_c00442{left:218.880000pt;}
.xc_c00442{left:222.720000pt;}
.x1f_c00442{left:225.786667pt;}
.x71_c00442{left:227.333333pt;}
.x29_c00442{left:230.400000pt;}
.x95_c00442{left:235.013333pt;}
.x3b_c00442{left:237.306667pt;}
.x54_c00442{left:241.146667pt;}
.x60_c00442{left:242.693333pt;}
.x49_c00442{left:244.986667pt;}
.x7e_c00442{left:248.826667pt;}
.x79_c00442{left:251.133333pt;}
.x2a_c00442{left:253.440000pt;}
.x96_c00442{left:255.746667pt;}
.x72_c00442{left:261.893333pt;}
.x89_c00442{left:264.960000pt;}
.x8a_c00442{left:273.413333pt;}
.x15_c00442{left:277.253333pt;}
.x4a_c00442{left:281.853333pt;}
.x8b_c00442{left:283.386667pt;}
.x84_c00442{left:291.840000pt;}
.x66_c00442{left:295.680000pt;}
.x8c_c00442{left:299.520000pt;}
.xd_c00442{left:301.826667pt;}
.x5a_c00442{left:307.200000pt;}
.x3c_c00442{left:313.346667pt;}
.x4_c00442{left:325.626667pt;}
.x5b_c00442{left:327.933333pt;}
.x20_c00442{left:329.466667pt;}
.x61_c00442{left:331.013333pt;}
.x16_c00442{left:337.920000pt;}
.x97_c00442{left:340.226667pt;}
.x7a_c00442{left:344.826667pt;}
.x4b_c00442{left:347.133333pt;}
.x5_c00442{left:350.973333pt;}
.x4c_c00442{left:352.506667pt;}
.x2b_c00442{left:356.346667pt;}
.x3_c00442{left:358.653333pt;}
.x8d_c00442{left:362.493333pt;}
.x67_c00442{left:367.106667pt;}
.x32_c00442{left:370.946667pt;}
.x98_c00442{left:372.480000pt;}
.x3f_c00442{left:376.320000pt;}
.x17_c00442{left:382.466667pt;}
.x21_c00442{left:384.773333pt;}
.x8e_c00442{left:390.906667pt;}
.x55_c00442{left:392.453333pt;}
.x68_c00442{left:397.826667pt;}
.x18_c00442{left:400.893333pt;}
.xe_c00442{left:407.813333pt;}
.x99_c00442{left:409.346667pt;}
.x7f_c00442{left:410.880000pt;}
.x73_c00442{left:412.413333pt;}
.x4d_c00442{left:414.720000pt;}
.x7b_c00442{left:416.253333pt;}
.x19_c00442{left:419.333333pt;}
.x1a_c00442{left:430.853333pt;}
.x8f_c00442{left:433.146667pt;}
.x74_c00442{left:437.760000pt;}
.x2c_c00442{left:440.066667pt;}
.x33_c00442{left:446.973333pt;}
.x4e_c00442{left:450.813333pt;}
.xf_c00442{left:453.120000pt;}
.x40_c00442{left:455.426667pt;}
.x69_c00442{left:456.960000pt;}
.x22_c00442{left:460.800000pt;}
.x5c_c00442{left:463.106667pt;}
.x90_c00442{left:465.413333pt;}
.x85_c00442{left:466.946667pt;}
.x23_c00442{left:472.320000pt;}
.x62_c00442{left:478.466667pt;}
.x10_c00442{left:481.533333pt;}
.x4f_c00442{left:484.613333pt;}
.x7c_c00442{left:487.680000pt;}
.x56_c00442{left:489.986667pt;}
.x5d_c00442{left:493.826667pt;}
.x1_c00442{left:495.360000pt;}
.x24_c00442{left:499.200000pt;}
.x2d_c00442{left:500.733333pt;}
.x9a_c00442{left:502.266160pt;}
.x2_c00442{left:503.813333pt;}
.x9b_c00442{left:509.186667pt;}
.x91_c00442{left:513.786667pt;}
.x86_c00442{left:516.093333pt;}
.x50_c00442{left:517.626667pt;}
.x41_c00442{left:519.933333pt;}
.x6a_c00442{left:524.546667pt;}
.x80_c00442{left:526.853333pt;}
.x9c_c00442{left:532.226667pt;}
.x75_c00442{left:536.826667pt;}
.x25_c00442{left:538.373333pt;}
.x11_c00442{left:546.053333pt;}
.x3d_c00442{left:547.586667pt;}
.x81_c00442{left:556.026667pt;}
.x2e_c00442{left:557.573333pt;}
.x63_c00442{left:560.640000pt;}
.x57_c00442{left:562.946667pt;}
.x1b_c00442{left:564.480000pt;}
.x92_c00442{left:566.786667pt;}
.x12_c00442{left:568.320000pt;}
.x6b_c00442{left:570.626667pt;}
.x2f_c00442{left:575.226667pt;}
.x6c_c00442{left:576.773333pt;}
.x6_c00442{left:578.306667pt;}
.x87_c00442{left:583.680000pt;}
.x58_c00442{left:585.213333pt;}
.x9d_c00442{left:589.053333pt;}
.x7d_c00442{left:592.893333pt;}
.x26_c00442{left:595.200000pt;}
.x9e_c00442{left:599.813333pt;}
.x82_c00442{left:602.106667pt;}
.x9f_c00442{left:603.653333pt;}
.x59_c00442{left:608.253333pt;}
.x5e_c00442{left:609.786667pt;}
.x6d_c00442{left:612.093333pt;}
.x42_c00442{left:615.933333pt;}
.x51_c00442{left:622.080000pt;}
.x34_c00442{left:623.613333pt;}
.x93_c00442{left:628.226667pt;}
.x35_c00442{left:629.760000pt;}
.x1c_c00442{left:639.746667pt;}
.x30_c00442{left:642.053333pt;}
.x76_c00442{left:651.266667pt;}
.xa0_c00442{left:655.866667pt;}
.x43_c00442{left:658.173333pt;}
.x7_c00442{left:661.253333pt;}
.x64_c00442{left:665.853333pt;}
.x44_c00442{left:668.933333pt;}
.x8_c00442{left:680.453333pt;}
.x52_c00442{left:683.520000pt;}
.x9_c00442{left:694.266667pt;}
.x31_c00442{left:695.813333pt;}
.x45_c00442{left:700.413333pt;}
.xa1_c00442{left:706.560000pt;}
.x36_c00442{left:708.093333pt;}
.x27_c00442{left:711.173333pt;}
.x37_c00442{left:719.613333pt;}
.x46_c00442{left:724.986667pt;}
.xa2_c00442{left:730.373333pt;}
.x6e_c00442{left:734.213333pt;}
.xa3_c00442{left:738.053333pt;}
.x65_c00442{left:740.346667pt;}
.xa4_c00442{left:749.573333pt;}
.x6f_c00442{left:754.946667pt;}
.x94_c00442{left:756.480000pt;}
.x13_c00442{left:764.933333pt;}
.x38_c00442{left:766.467477pt;}
.x1d_c00442{left:768.000000pt;}
.x47_c00442{left:781.053333pt;}
.x48_c00442{left:784.893333pt;}
.xac_c00442{left:848.640000pt;}
.xa6_c00442{left:867.066667pt;}
.xa7_c00442{left:873.986667pt;}
.xa5_c00442{left:889.346667pt;}
.xae_c00442{left:894.720000pt;}
.xad_c00442{left:907.013333pt;}
.xab_c00442{left:919.293333pt;}
.xa8_c00442{left:927.746667pt;}
.xa9_c00442{left:933.120000pt;}
.xaa_c00442{left:942.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3dd621d7d166da4d153cd71f.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4a_c00443{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m26_c00443{transform:matrix(0.043975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043975,0.000000,0.000000,0.250000,0,0);}
.m3a_c00443{transform:matrix(0.048625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048625,0.000000,0.000000,0.250000,0,0);}
.m22_c00443{transform:matrix(0.059125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059125,0.000000,0.000000,0.250000,0,0);}
.m65_c00443{transform:matrix(0.060250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060250,0.000000,0.000000,0.250000,0,0);}
.m6_c00443{transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);}
.m34_c00443{transform:matrix(0.065825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065825,0.000000,0.000000,0.250000,0,0);}
.m23_c00443{transform:matrix(0.072875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072875,0.000000,0.000000,0.250000,0,0);}
.m2f_c00443{transform:matrix(0.072950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072950,0.000000,0.000000,0.250000,0,0);}
.m2e_c00443{transform:matrix(0.073550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073550,0.000000,0.000000,0.250000,0,0);}
.m29_c00443{transform:matrix(0.074125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074125,0.000000,0.000000,0.250000,0,0);}
.ma_c00443{transform:matrix(0.075750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075750,0.000000,0.000000,0.250000,0,0);}
.m16_c00443{transform:matrix(0.077775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077775,0.000000,0.000000,0.250000,0,0);}
.m1d_c00443{transform:matrix(0.079625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079625,0.000000,0.000000,0.250000,0,0);}
.m8c_c00443{transform:matrix(0.080575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080575,0.000000,0.000000,0.250000,0,0);}
.m4b_c00443{transform:matrix(0.080650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080650,0.000000,0.000000,0.250000,0,0);}
.m14b_c00443{transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081250,0.000000,0.000000,0.250000,0,0);}
.m16c_c00443{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m31_c00443{transform:matrix(0.082000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082000,0.000000,0.000000,0.250000,0,0);}
.m7_c00443{transform:matrix(0.082150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082150,0.000000,0.000000,0.250000,0,0);}
.m8_c00443{transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00443{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.mb3_c00443{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m28_c00443{transform:matrix(0.093225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093225,0.000000,0.000000,0.250000,0,0);}
.m14c_c00443{transform:matrix(0.095675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095675,0.000000,0.000000,0.250000,0,0);}
.m4_c00443{transform:matrix(0.096075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096075,0.000000,0.000000,0.250000,0,0);}
.m25_c00443{transform:matrix(0.097800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097800,0.000000,0.000000,0.250000,0,0);}
.m114_c00443{transform:matrix(0.104575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104575,0.000000,0.000000,0.250000,0,0);}
.m1c_c00443{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);}
.m2a_c00443{transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);}
.m52_c00443{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.m164_c00443{transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);}
.m105_c00443{transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);}
.m18_c00443{transform:matrix(0.113175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113175,0.000000,0.000000,0.250000,0,0);}
.m62_c00443{transform:matrix(0.117175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117175,0.000000,0.000000,0.250000,0,0);}
.m138_c00443{transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);}
.m4d_c00443{transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);}
.m69_c00443{transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);}
.m141_c00443{transform:matrix(0.120200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120200,0.000000,0.000000,0.250000,0,0);}
.m5_c00443{transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);}
.m59_c00443{transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);}
.mf8_c00443{transform:matrix(0.123275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123275,0.000000,0.000000,0.250000,0,0);}
.m24_c00443{transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);}
.m12e_c00443{transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);}
.m150_c00443{transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);}
.m43_c00443{transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);}
.m21_c00443{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);}
.m13b_c00443{transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);}
.mbc_c00443{transform:matrix(0.126475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126475,0.000000,0.000000,0.250000,0,0);}
.m3c_c00443{transform:matrix(0.126525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126525,0.000000,0.000000,0.250000,0,0);}
.m2b_c00443{transform:matrix(0.127825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127825,0.000000,0.000000,0.250000,0,0);}
.mae_c00443{transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);}
.m100_c00443{transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);}
.m45_c00443{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m63_c00443{transform:matrix(0.129175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129175,0.000000,0.000000,0.250000,0,0);}
.m111_c00443{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);}
.mdd_c00443{transform:matrix(0.130300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130300,0.000000,0.000000,0.250000,0,0);}
.maf_c00443{transform:matrix(0.131875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131875,0.000000,0.000000,0.250000,0,0);}
.mab_c00443{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.mcc_c00443{transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);}
.mda_c00443{transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);}
.m131_c00443{transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);}
.m153_c00443{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m155_c00443{transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);}
.m5b_c00443{transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);}
.m152_c00443{transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);}
.m40_c00443{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.m112_c00443{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.mfa_c00443{transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);}
.m48_c00443{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m60_c00443{transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);}
.m5c_c00443{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m4f_c00443{transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);}
.m5f_c00443{transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);}
.mb2_c00443{transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);}
.mb8_c00443{transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);}
.m156_c00443{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);}
.m11_c00443{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m37_c00443{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m123_c00443{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.m15a_c00443{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);}
.mbf_c00443{transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);}
.m8b_c00443{transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);}
.m79_c00443{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.m13a_c00443{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);}
.md2_c00443{transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);}
.m61_c00443{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);}
.mad_c00443{transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);}
.m122_c00443{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.md4_c00443{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.m117_c00443{transform:matrix(0.149575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149575,0.000000,0.000000,0.250000,0,0);}
.m108_c00443{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.mbe_c00443{transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);}
.m14d_c00443{transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);}
.m19_c00443{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m166_c00443{transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);}
.mba_c00443{transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);}
.mb0_c00443{transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);}
.m2d_c00443{transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);}
.mca_c00443{transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);}
.m13f_c00443{transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);}
.m124_c00443{transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);}
.ma6_c00443{transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);}
.m10a_c00443{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.m11f_c00443{transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);}
.mc1_c00443{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.m33_c00443{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mb_c00443{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m154_c00443{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m140_c00443{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m12c_c00443{transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);}
.m162_c00443{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);}
.m135_c00443{transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);}
.mc8_c00443{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.md5_c00443{transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);}
.mcf_c00443{transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);}
.m104_c00443{transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);}
.md7_c00443{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m5d_c00443{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m11d_c00443{transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);}
.m163_c00443{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);}
.mb4_c00443{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);}
.m88_c00443{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m86_c00443{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.m7e_c00443{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.m16a_c00443{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.mf1_c00443{transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);}
.m1b_c00443{transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);}
.m11e_c00443{transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);}
.me9_c00443{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m101_c00443{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);}
.md8_c00443{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.mbb_c00443{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.mf6_c00443{transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);}
.mb6_c00443{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.m15d_c00443{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m7f_c00443{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m129_c00443{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.m130_c00443{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m145_c00443{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);}
.mc0_c00443{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.m80_c00443{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.mc9_c00443{transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);}
.m27_c00443{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m36_c00443{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m3f_c00443{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.ma8_c00443{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.m9b_c00443{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m158_c00443{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.m102_c00443{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m13d_c00443{transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);}
.ma2_c00443{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m68_c00443{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);}
.mfe_c00443{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);}
.m161_c00443{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);}
.m13e_c00443{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m110_c00443{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m84_c00443{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);}
.mfb_c00443{transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);}
.m32_c00443{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m96_c00443{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.mc3_c00443{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m97_c00443{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);}
.mc4_c00443{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m126_c00443{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m95_c00443{transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);}
.m3e_c00443{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);}
.med_c00443{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.mc7_c00443{transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);}
.m50_c00443{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mc5_c00443{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);}
.mdb_c00443{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);}
.m120_c00443{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);}
.m128_c00443{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.m133_c00443{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m115_c00443{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m1a_c00443{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.md9_c00443{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);}
.m11a_c00443{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);}
.m136_c00443{transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);}
.m10d_c00443{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);}
.ma3_c00443{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);}
.m14a_c00443{transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);}
.mf3_c00443{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);}
.mcd_c00443{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m10b_c00443{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);}
.mf4_c00443{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);}
.m9c_c00443{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m147_c00443{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);}
.m165_c00443{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.m107_c00443{transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);}
.m53_c00443{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);}
.m121_c00443{transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);}
.m13c_c00443{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.m137_c00443{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m46_c00443{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.mff_c00443{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);}
.m10c_c00443{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m134_c00443{transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);}
.md3_c00443{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);}
.mc_c00443{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);}
.mb5_c00443{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.mee_c00443{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m15c_c00443{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.m157_c00443{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.mdc_c00443{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.mf5_c00443{transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);}
.m12a_c00443{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);}
.m160_c00443{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);}
.ma5_c00443{transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);}
.mf2_c00443{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);}
.m151_c00443{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);}
.m14e_c00443{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.mf0_c00443{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_c00443{transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);}
.m142_c00443{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);}
.m15b_c00443{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);}
.m146_c00443{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.maa_c00443{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.m6c_c00443{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m6a_c00443{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.m12d_c00443{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);}
.m9a_c00443{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.me_c00443{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);}
.mde_c00443{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);}
.ma9_c00443{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);}
.mb7_c00443{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);}
.mb9_c00443{transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);}
.m144_c00443{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);}
.mea_c00443{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);}
.md_c00443{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);}
.m16d_c00443{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);}
.m159_c00443{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.ma7_c00443{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);}
.m20_c00443{transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);}
.m15f_c00443{transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);}
.m51_c00443{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);}
.md6_c00443{transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);}
.m8a_c00443{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m99_c00443{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.me0_c00443{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);}
.m116_c00443{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);}
.m47_c00443{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m76_c00443{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);}
.mce_c00443{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m149_c00443{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);}
.m72_c00443{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);}
.m87_c00443{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m82_c00443{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);}
.m9d_c00443{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);}
.mbd_c00443{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);}
.m67_c00443{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);}
.mf9_c00443{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m78_c00443{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me8_c00443{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m127_c00443{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);}
.m91_c00443{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);}
.m7d_c00443{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);}
.m73_c00443{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me7_c00443{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);}
.m14_c00443{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m75_c00443{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9e_c00443{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);}
.m12b_c00443{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c00443{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);}
.m9_c00443{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);}
.m93_c00443{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc6_c00443{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);}
.mb1_c00443{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m89_c00443{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m83_c00443{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6b_c00443{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00443{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c00443{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c00443{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf7_c00443{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c00443{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mdf_c00443{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00443{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);}
.m9f_c00443{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00443{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m41_c00443{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mfc_c00443{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7a_c00443{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);}
.m15_c00443{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.me4_c00443{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mef_c00443{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);}
.m148_c00443{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.me5_c00443{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md0_c00443{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m49_c00443{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);}
.m77_c00443{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m17_c00443{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);}
.meb_c00443{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00443{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);}
.m118_c00443{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m125_c00443{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m90_c00443{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mcb_c00443{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);}
.m4e_c00443{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);}
.m6e_c00443{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.me2_c00443{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);}
.m139_c00443{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m103_c00443{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m106_c00443{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00443{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mf_c00443{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m81_c00443{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m11b_c00443{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m7b_c00443{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);}
.m7c_c00443{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md1_c00443{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.mec_c00443{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m14f_c00443{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m10e_c00443{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m109_c00443{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m15e_c00443{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);}
.m8e_c00443{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);}
.m132_c00443{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m71_c00443{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m98_c00443{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00443{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m66_c00443{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m12f_c00443{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.mfd_c00443{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00443{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m12_c00443{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m70_c00443{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);}
.m64_c00443{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m85_c00443{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m92_c00443{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.ma1_c00443{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.m16b_c00443{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);}
.me6_c00443{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m74_c00443{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m54_c00443{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.mac_c00443{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m113_c00443{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m13_c00443{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m58_c00443{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3_c00443{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m39_c00443{transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);}
.m11c_c00443{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m42_c00443{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m143_c00443{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m56_c00443{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.me3_c00443{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00443{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);}
.m10_c00443{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00443{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m2_c00443{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m55_c00443{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m44_c00443{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00443{transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.022500,0.000000,0.000000,0.250000,0,0);}
.me1_c00443{transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.122500,0.000000,0.000000,0.250000,0,0);}
.mc2_c00443{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00443{transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);}
.m167_c00443{transform:matrix(1.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.300000,0.000000,0.000000,0.250000,0,0);}
.m169_c00443{transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);}
.m38_c00443{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);}
.m119_c00443{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m57_c00443{transform:matrix(2.932500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.932500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.932500,0.000000,0.000000,0.250000,0,0);}
.m6f_c00443{transform:matrix(3.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.455000,0.000000,0.000000,0.250000,0,0);}
.m8f_c00443{transform:matrix(3.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.742500,0.000000,0.000000,0.250000,0,0);}
.m168_c00443{transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00443{transform:matrix(8.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.470000,0.000000,0.000000,0.250000,0,0);}
.v0_c00443{vertical-align:0.000000px;}
.v1_c00443{vertical-align:3.480000px;}
.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;}
}
.ws1_c00443{word-spacing:0.000000px;}
.ws0_c00443{word-spacing:78.444000px;}
._0_c00443{width:310.320000px;}
.fc0_c00443{color:transparent;}
.fs2_c00443{font-size:3.456000px;}
.fs25_c00443{font-size:6.000000px;}
.fs11_c00443{font-size:6.900000px;}
.fs10_c00443{font-size:10.380000px;}
.fs26_c00443{font-size:13.800000px;}
.fsd_c00443{font-size:17.280000px;}
.fs2b_c00443{font-size:20.760000px;}
.fs2a_c00443{font-size:24.180000px;}
.fs1_c00443{font-size:27.660000px;}
.fs0_c00443{font-size:31.080000px;}
.fs22_c00443{font-size:34.560000px;}
.fs21_c00443{font-size:38.040000px;}
.fs2e_c00443{font-size:41.460000px;}
.fs14_c00443{font-size:44.940000px;}
.fsc_c00443{font-size:48.360000px;}
.fse_c00443{font-size:51.840000px;}
.fs19_c00443{font-size:55.320000px;}
.fs24_c00443{font-size:58.740000px;}
.fs23_c00443{font-size:62.220000px;}
.fsf_c00443{font-size:65.640000px;}
.fs1f_c00443{font-size:69.120000px;}
.fs2c_c00443{font-size:72.600000px;}
.fs2f_c00443{font-size:76.020000px;}
.fs1a_c00443{font-size:79.500000px;}
.fs2d_c00443{font-size:82.920000px;}
.fs12_c00443{font-size:86.400000px;}
.fs28_c00443{font-size:89.880000px;}
.fs27_c00443{font-size:93.300000px;}
.fs5_c00443{font-size:96.780000px;}
.fs30_c00443{font-size:100.200000px;}
.fs16_c00443{font-size:103.680000px;}
.fs6_c00443{font-size:107.160000px;}
.fs9_c00443{font-size:110.580000px;}
.fs8_c00443{font-size:114.060000px;}
.fsb_c00443{font-size:117.480000px;}
.fs20_c00443{font-size:120.960000px;}
.fs1d_c00443{font-size:124.440000px;}
.fs3_c00443{font-size:134.760000px;}
.fs4_c00443{font-size:138.240000px;}
.fs7_c00443{font-size:141.720000px;}
.fsa_c00443{font-size:145.140000px;}
.fs1c_c00443{font-size:148.620000px;}
.fs15_c00443{font-size:155.520000px;}
.fs1b_c00443{font-size:159.000000px;}
.fs1e_c00443{font-size:165.900000px;}
.fs13_c00443{font-size:176.280000px;}
.fs17_c00443{font-size:210.840000px;}
.fs29_c00443{font-size:221.160000px;}
.fs18_c00443{font-size:245.400000px;}
.y0_c00443{bottom:0.000000px;}
.y15d_c00443{bottom:183.165000px;}
.y15b_c00443{bottom:188.355000px;}
.y15e_c00443{bottom:190.080000px;}
.y156_c00443{bottom:194.400000px;}
.y159_c00443{bottom:195.270000px;}
.y15a_c00443{bottom:198.720000px;}
.y157_c00443{bottom:199.590000px;}
.y155_c00443{bottom:200.445000px;}
.y15c_c00443{bottom:201.315000px;}
.y158_c00443{bottom:203.040000px;}
.y152_c00443{bottom:203.910000px;}
.y154_c00443{bottom:204.765000px;}
.y150_c00443{bottom:205.635000px;}
.y14a_c00443{bottom:206.490000px;}
.y151_c00443{bottom:208.230000px;}
.y153_c00443{bottom:209.085000px;}
.y14f_c00443{bottom:209.955000px;}
.y14c_c00443{bottom:211.680000px;}
.y14d_c00443{bottom:212.550000px;}
.y14e_c00443{bottom:213.405000px;}
.y14b_c00443{bottom:215.130000px;}
.y147_c00443{bottom:230.685000px;}
.y148_c00443{bottom:231.555000px;}
.y149_c00443{bottom:236.730000px;}
.y145_c00443{bottom:239.325000px;}
.y146_c00443{bottom:240.195000px;}
.y140_c00443{bottom:256.605000px;}
.y13d_c00443{bottom:257.475000px;}
.y13f_c00443{bottom:259.200000px;}
.y142_c00443{bottom:261.795000px;}
.y141_c00443{bottom:262.650000px;}
.y13e_c00443{bottom:266.115000px;}
.y143_c00443{bottom:266.970000px;}
.y144_c00443{bottom:277.350000px;}
.y13a_c00443{bottom:279.930000px;}
.y139_c00443{bottom:281.670000px;}
.y13c_c00443{bottom:282.525000px;}
.y133_c00443{bottom:284.250000px;}
.y138_c00443{bottom:285.120000px;}
.y137_c00443{bottom:287.715000px;}
.y135_c00443{bottom:288.570000px;}
.y13b_c00443{bottom:289.440000px;}
.y134_c00443{bottom:291.165000px;}
.y136_c00443{bottom:292.890000px;}
.y131_c00443{bottom:305.850000px;}
.y12b_c00443{bottom:306.720000px;}
.y12d_c00443{bottom:307.590000px;}
.y12e_c00443{bottom:308.445000px;}
.y12c_c00443{bottom:309.315000px;}
.y132_c00443{bottom:311.040000px;}
.y130_c00443{bottom:313.635000px;}
.y12f_c00443{bottom:315.360000px;}
.y128_c00443{bottom:329.190000px;}
.y126_c00443{bottom:330.045000px;}
.y129_c00443{bottom:331.770000px;}
.y124_c00443{bottom:337.830000px;}
.y125_c00443{bottom:340.410000px;}
.y127_c00443{bottom:342.150000px;}
.y12a_c00443{bottom:348.195000px;}
.y121_c00443{bottom:354.240000px;}
.y11f_c00443{bottom:356.835000px;}
.y11e_c00443{bottom:360.285000px;}
.y120_c00443{bottom:362.010000px;}
.y123_c00443{bottom:362.880000px;}
.y122_c00443{bottom:363.750000px;}
.y11c_c00443{bottom:379.290000px;}
.y119_c00443{bottom:382.755000px;}
.y11b_c00443{bottom:383.610000px;}
.y11d_c00443{bottom:384.480000px;}
.y118_c00443{bottom:386.205000px;}
.y117_c00443{bottom:387.075000px;}
.y11a_c00443{bottom:387.930000px;}
.y116_c00443{bottom:391.395000px;}
.y115_c00443{bottom:401.760000px;}
.y112_c00443{bottom:406.080000px;}
.y110_c00443{bottom:406.950000px;}
.y10e_c00443{bottom:407.805000px;}
.y10f_c00443{bottom:409.530000px;}
.y113_c00443{bottom:410.400000px;}
.y111_c00443{bottom:413.850000px;}
.y114_c00443{bottom:418.170000px;}
.y10b_c00443{bottom:431.130000px;}
.y10a_c00443{bottom:432.000000px;}
.y105_c00443{bottom:432.870000px;}
.y10c_c00443{bottom:433.725000px;}
.y109_c00443{bottom:434.595000px;}
.y10d_c00443{bottom:435.450000px;}
.y107_c00443{bottom:436.320000px;}
.y106_c00443{bottom:441.510000px;}
.y108_c00443{bottom:442.365000px;}
.yfa_c00443{bottom:458.790000px;}
.y104_c00443{bottom:460.515000px;}
.yfe_c00443{bottom:461.370000px;}
.yf8_c00443{bottom:463.110000px;}
.y103_c00443{bottom:463.965000px;}
.y100_c00443{bottom:464.835000px;}
.yfb_c00443{bottom:465.690000px;}
.yf9_c00443{bottom:466.560000px;}
.yff_c00443{bottom:467.430000px;}
.yf7_c00443{bottom:468.285000px;}
.yfc_c00443{bottom:472.605000px;}
.y101_c00443{bottom:475.200000px;}
.y102_c00443{bottom:476.925000px;}
.yfd_c00443{bottom:479.520000px;}
.yf5_c00443{bottom:480.390000px;}
.yf3_c00443{bottom:481.245000px;}
.yf6_c00443{bottom:482.115000px;}
.yf4_c00443{bottom:490.755000px;}
.yf1_c00443{bottom:495.930000px;}
.yf2_c00443{bottom:498.525000px;}
.yed_c00443{bottom:506.310000px;}
.yf0_c00443{bottom:507.165000px;}
.yeb_c00443{bottom:508.035000px;}
.yea_c00443{bottom:508.890000px;}
.yee_c00443{bottom:510.630000px;}
.yef_c00443{bottom:513.210000px;}
.yec_c00443{bottom:515.805000px;}
.ye9_c00443{bottom:516.675000px;}
.ye7_c00443{bottom:526.170000px;}
.ye5_c00443{bottom:529.635000px;}
.ye8_c00443{bottom:530.490000px;}
.ye4_c00443{bottom:531.360000px;}
.ydf_c00443{bottom:532.230000px;}
.ye1_c00443{bottom:533.085000px;}
.ye0_c00443{bottom:533.955000px;}
.ye3_c00443{bottom:536.550000px;}
.ye2_c00443{bottom:540.000000px;}
.ye6_c00443{bottom:544.320000px;}
.ydd_c00443{bottom:556.410000px;}
.yda_c00443{bottom:558.150000px;}
.ydc_c00443{bottom:559.005000px;}
.yde_c00443{bottom:563.325000px;}
.yd9_c00443{bottom:565.050000px;}
.ydb_c00443{bottom:565.920000px;}
.yd6_c00443{bottom:582.330000px;}
.yd1_c00443{bottom:583.200000px;}
.yd3_c00443{bottom:584.925000px;}
.yd4_c00443{bottom:585.795000px;}
.ycf_c00443{bottom:587.520000px;}
.yd5_c00443{bottom:588.390000px;}
.yd0_c00443{bottom:590.115000px;}
.yd2_c00443{bottom:590.970000px;}
.yd8_c00443{bottom:596.160000px;}
.yd7_c00443{bottom:597.885000px;}
.yc8_c00443{bottom:607.395000px;}
.yc9_c00443{bottom:608.250000px;}
.ycb_c00443{bottom:611.715000px;}
.ycc_c00443{bottom:613.440000px;}
.yc5_c00443{bottom:614.310000px;}
.yca_c00443{bottom:615.165000px;}
.yc2_c00443{bottom:616.035000px;}
.ycd_c00443{bottom:618.630000px;}
.yc4_c00443{bottom:622.080000px;}
.yc0_c00443{bottom:623.805000px;}
.ybe_c00443{bottom:624.675000px;}
.yce_c00443{bottom:625.530000px;}
.yc7_c00443{bottom:627.270000px;}
.yc3_c00443{bottom:628.125000px;}
.yc6_c00443{bottom:628.995000px;}
.ybf_c00443{bottom:629.850000px;}
.yc1_c00443{bottom:630.720000px;}
.yb7_c00443{bottom:631.590000px;}
.ybd_c00443{bottom:632.445000px;}
.yb9_c00443{bottom:633.315000px;}
.yba_c00443{bottom:634.170000px;}
.ybc_c00443{bottom:635.040000px;}
.yb8_c00443{bottom:635.910000px;}
.ybb_c00443{bottom:640.230000px;}
.yb6_c00443{bottom:641.085000px;}
.yb4_c00443{bottom:657.510000px;}
.yb2_c00443{bottom:660.090000px;}
.yb3_c00443{bottom:660.960000px;}
.yb0_c00443{bottom:661.830000px;}
.yb5_c00443{bottom:664.410000px;}
.yaf_c00443{bottom:666.150000px;}
.yae_c00443{bottom:671.325000px;}
.yb1_c00443{bottom:681.690000px;}
.yad_c00443{bottom:682.560000px;}
.yaa_c00443{bottom:683.430000px;}
.ya9_c00443{bottom:684.285000px;}
.yab_c00443{bottom:685.155000px;}
.yac_c00443{bottom:689.475000px;}
.ya7_c00443{bottom:707.610000px;}
.y166_c00443{bottom:711.930000px;}
.ya8_c00443{bottom:713.670000px;}
.ya5_c00443{bottom:717.990000px;}
.y167_c00443{bottom:718.845000px;}
.ya6_c00443{bottom:723.165000px;}
.ya3_c00443{bottom:730.080000px;}
.ya4_c00443{bottom:730.950000px;}
.ya1_c00443{bottom:732.675000px;}
.ya2_c00443{bottom:736.125000px;}
.ya0_c00443{bottom:737.850000px;}
.y9f_c00443{bottom:740.445000px;}
.y9e_c00443{bottom:749.955000px;}
.y9d_c00443{bottom:753.405000px;}
.y9c_c00443{bottom:754.275000px;}
.y9a_c00443{bottom:756.870000px;}
.y165_c00443{bottom:759.450000px;}
.y9b_c00443{bottom:760.320000px;}
.y164_c00443{bottom:762.915000px;}
.y99_c00443{bottom:765.510000px;}
.y163_c00443{bottom:775.875000px;}
.y95_c00443{bottom:783.645000px;}
.y96_c00443{bottom:786.240000px;}
.y94_c00443{bottom:787.110000px;}
.y97_c00443{bottom:787.965000px;}
.y98_c00443{bottom:788.835000px;}
.y93_c00443{bottom:794.880000px;}
.y90_c00443{bottom:804.390000px;}
.y8e_c00443{bottom:805.245000px;}
.y8c_c00443{bottom:806.970000px;}
.y8f_c00443{bottom:807.840000px;}
.y91_c00443{bottom:809.565000px;}
.y8d_c00443{bottom:812.160000px;}
.y92_c00443{bottom:814.755000px;}
.y8b_c00443{bottom:820.800000px;}
.y88_c00443{bottom:830.310000px;}
.y89_c00443{bottom:831.165000px;}
.y86_c00443{bottom:832.035000px;}
.y87_c00443{bottom:832.890000px;}
.y8a_c00443{bottom:833.760000px;}
.y82_c00443{bottom:848.445000px;}
.y85_c00443{bottom:850.170000px;}
.y84_c00443{bottom:851.040000px;}
.y83_c00443{bottom:851.910000px;}
.y7f_c00443{bottom:852.765000px;}
.y7e_c00443{bottom:853.635000px;}
.y80_c00443{bottom:854.490000px;}
.y7a_c00443{bottom:855.360000px;}
.y81_c00443{bottom:856.230000px;}
.y77_c00443{bottom:857.085000px;}
.y78_c00443{bottom:857.955000px;}
.y7c_c00443{bottom:860.550000px;}
.y7b_c00443{bottom:861.405000px;}
.y79_c00443{bottom:863.130000px;}
.y76_c00443{bottom:864.870000px;}
.y7d_c00443{bottom:873.510000px;}
.y75_c00443{bottom:879.555000px;}
.y71_c00443{bottom:880.410000px;}
.y6f_c00443{bottom:881.280000px;}
.y74_c00443{bottom:882.150000px;}
.y6c_c00443{bottom:883.005000px;}
.y72_c00443{bottom:886.470000px;}
.y73_c00443{bottom:887.325000px;}
.y70_c00443{bottom:888.195000px;}
.y6d_c00443{bottom:889.050000px;}
.y6e_c00443{bottom:890.790000px;}
.y69_c00443{bottom:906.330000px;}
.y68_c00443{bottom:907.200000px;}
.y6a_c00443{bottom:908.070000px;}
.y66_c00443{bottom:910.650000px;}
.y6b_c00443{bottom:911.520000px;}
.y60_c00443{bottom:913.245000px;}
.y5e_c00443{bottom:914.115000px;}
.y5c_c00443{bottom:914.970000px;}
.y65_c00443{bottom:915.840000px;}
.y63_c00443{bottom:916.710000px;}
.y67_c00443{bottom:917.565000px;}
.y162_c00443{bottom:920.160000px;}
.y64_c00443{bottom:921.030000px;}
.y62_c00443{bottom:921.885000px;}
.y5d_c00443{bottom:922.755000px;}
.y5a_c00443{bottom:923.610000px;}
.y5f_c00443{bottom:924.480000px;}
.y61_c00443{bottom:925.350000px;}
.y5b_c00443{bottom:927.930000px;}
.y57_c00443{bottom:928.800000px;}
.y58_c00443{bottom:929.670000px;}
.y54_c00443{bottom:931.395000px;}
.y59_c00443{bottom:932.250000px;}
.y53_c00443{bottom:933.120000px;}
.y55_c00443{bottom:936.570000px;}
.y50_c00443{bottom:938.310000px;}
.y4f_c00443{bottom:939.165000px;}
.y52_c00443{bottom:940.890000px;}
.y4d_c00443{bottom:941.760000px;}
.y51_c00443{bottom:942.630000px;}
.y4e_c00443{bottom:943.485000px;}
.y56_c00443{bottom:953.850000px;}
.y4c_c00443{bottom:955.590000px;}
.y4b_c00443{bottom:956.445000px;}
.y4a_c00443{bottom:961.635000px;}
.y49_c00443{bottom:969.405000px;}
.y48_c00443{bottom:980.640000px;}
.y46_c00443{bottom:981.510000px;}
.y45_c00443{bottom:982.365000px;}
.y40_c00443{bottom:984.090000px;}
.y47_c00443{bottom:985.830000px;}
.y41_c00443{bottom:992.730000px;}
.y42_c00443{bottom:993.600000px;}
.y3f_c00443{bottom:995.325000px;}
.y2b_c00443{bottom:997.050000px;}
.y3b_c00443{bottom:998.790000px;}
.y34_c00443{bottom:1000.515000px;}
.y43_c00443{bottom:1001.370000px;}
.y44_c00443{bottom:1005.690000px;}
.y39_c00443{bottom:1006.560000px;}
.y3d_c00443{bottom:1007.430000px;}
.y3e_c00443{bottom:1008.285000px;}
.y38_c00443{bottom:1010.010000px;}
.y32_c00443{bottom:1010.880000px;}
.y3c_c00443{bottom:1011.750000px;}
.y3a_c00443{bottom:1012.605000px;}
.y37_c00443{bottom:1013.475000px;}
.y35_c00443{bottom:1014.330000px;}
.y30_c00443{bottom:1015.200000px;}
.y33_c00443{bottom:1016.925000px;}
.y36_c00443{bottom:1017.795000px;}
.y31_c00443{bottom:1018.650000px;}
.y2f_c00443{bottom:1035.075000px;}
.y2c_c00443{bottom:1039.395000px;}
.y2d_c00443{bottom:1042.845000px;}
.y29_c00443{bottom:1043.715000px;}
.y2a_c00443{bottom:1048.035000px;}
.y2e_c00443{bottom:1048.890000px;}
.y26_c00443{bottom:1054.950000px;}
.y25_c00443{bottom:1056.675000px;}
.y24_c00443{bottom:1057.530000px;}
.y22_c00443{bottom:1064.445000px;}
.y21_c00443{bottom:1065.315000px;}
.y23_c00443{bottom:1067.040000px;}
.y27_c00443{bottom:1073.085000px;}
.y28_c00443{bottom:1075.680000px;}
.y1d_c00443{bottom:1086.915000px;}
.y19_c00443{bottom:1089.510000px;}
.y15_c00443{bottom:1090.365000px;}
.y16_c00443{bottom:1091.235000px;}
.y17_c00443{bottom:1095.555000px;}
.y1e_c00443{bottom:1096.410000px;}
.y1a_c00443{bottom:1098.150000px;}
.y18_c00443{bottom:1099.875000px;}
.y20_c00443{bottom:1105.050000px;}
.y1c_c00443{bottom:1107.645000px;}
.y1f_c00443{bottom:1113.690000px;}
.y11_c00443{bottom:1115.430000px;}
.y10_c00443{bottom:1119.750000px;}
.y1b_c00443{bottom:1121.475000px;}
.yc_c00443{bottom:1130.970000px;}
.ye_c00443{bottom:1132.710000px;}
.y13_c00443{bottom:1137.030000px;}
.y12_c00443{bottom:1139.610000px;}
.yf_c00443{bottom:1141.350000px;}
.yd_c00443{bottom:1142.205000px;}
.y14_c00443{bottom:1147.395000px;}
.y8_c00443{bottom:1168.995000px;}
.y9_c00443{bottom:1169.850000px;}
.y5_c00443{bottom:1170.720000px;}
.y4_c00443{bottom:1171.590000px;}
.y6_c00443{bottom:1172.445000px;}
.y7_c00443{bottom:1173.315000px;}
.ya_c00443{bottom:1174.170000px;}
.yb_c00443{bottom:1179.360000px;}
.y1_c00443{bottom:1206.150000px;}
.y2_c00443{bottom:1207.005000px;}
.y3_c00443{bottom:1210.470000px;}
.y161_c00443{bottom:1316.730000px;}
.y160_c00443{bottom:1334.010000px;}
.y15f_c00443{bottom:1335.750000px;}
.y16e_c00443{bottom:1340.070000px;}
.y16f_c00443{bottom:1344.390000px;}
.y16b_c00443{bottom:1372.890000px;}
.y16c_c00443{bottom:1373.760000px;}
.y16d_c00443{bottom:1375.485000px;}
.y16a_c00443{bottom:1381.530000px;}
.y169_c00443{bottom:1386.720000px;}
.y168_c00443{bottom:1387.590000px;}
.h3_c00443{height:3.110063px;}
.h26_c00443{height:5.399414px;}
.h12_c00443{height:6.209326px;}
.h32_c00443{height:8.879414px;}
.h11_c00443{height:9.340986px;}
.h27_c00443{height:12.418652px;}
.he_c00443{height:15.550313px;}
.h2c_c00443{height:18.681973px;}
.h2b_c00443{height:21.759639px;}
.h2_c00443{height:24.891299px;}
.h1_c00443{height:27.968965px;}
.h23_c00443{height:31.100625px;}
.h22_c00443{height:34.232285px;}
.h2f_c00443{height:37.309951px;}
.h15_c00443{height:40.441611px;}
.hd_c00443{height:43.519277px;}
.hf_c00443{height:46.650937px;}
.h1a_c00443{height:49.782598px;}
.h25_c00443{height:52.860264px;}
.h24_c00443{height:55.991924px;}
.h10_c00443{height:59.069590px;}
.h20_c00443{height:62.201250px;}
.h2d_c00443{height:65.332910px;}
.h30_c00443{height:68.410576px;}
.h1b_c00443{height:71.542236px;}
.h2e_c00443{height:74.619902px;}
.h13_c00443{height:77.751563px;}
.h29_c00443{height:80.883223px;}
.h28_c00443{height:83.960889px;}
.h6_c00443{height:87.092549px;}
.h31_c00443{height:90.170215px;}
.h17_c00443{height:93.301875px;}
.h7_c00443{height:96.433535px;}
.ha_c00443{height:99.511201px;}
.h9_c00443{height:102.642861px;}
.hc_c00443{height:105.720527px;}
.h21_c00443{height:108.852188px;}
.h1e_c00443{height:111.983848px;}
.h4_c00443{height:121.270840px;}
.h5_c00443{height:124.402500px;}
.h8_c00443{height:127.534160px;}
.hb_c00443{height:130.611826px;}
.h1d_c00443{height:133.743486px;}
.h16_c00443{height:139.952812px;}
.h1c_c00443{height:143.084473px;}
.h1f_c00443{height:149.293799px;}
.h14_c00443{height:158.634785px;}
.h18_c00443{height:189.735410px;}
.h2a_c00443{height:199.022402px;}
.h19_c00443{height:220.836035px;}
.h0_c00443{height:1512.000000px;}
.w0_c00443{width:1100.730000px;}
.w1_c00443{width:1101.000000px;}
.x0_c00443{left:0.000000px;}
.x110_c00443{left:25.920000px;}
.x10a_c00443{left:87.270000px;}
.x10c_c00443{left:106.275000px;}
.x10b_c00443{left:108.000000px;}
.x111_c00443{left:126.150000px;}
.x10d_c00443{left:130.470000px;}
.x112_c00443{left:136.515000px;}
.x10e_c00443{left:138.240000px;}
.x10f_c00443{left:142.560000px;}
.xd3_c00443{left:152.925000px;}
.xd4_c00443{left:174.525000px;}
.xa6_c00443{left:181.440000px;}
.xcb_c00443{left:184.035000px;}
.xa7_c00443{left:190.950000px;}
.x99_c00443{left:198.720000px;}
.x94_c00443{left:201.315000px;}
.xd0_c00443{left:203.040105px;}
.xa8_c00443{left:204.765000px;}
.xdc_c00443{left:207.360000px;}
.xcc_c00443{left:209.955000px;}
.xa0_c00443{left:211.680000px;}
.xa3_c00443{left:215.130000px;}
.xe0_c00443{left:216.870000px;}
.x7a_c00443{left:219.450000px;}
.xe7_c00443{left:221.190000px;}
.xdd_c00443{left:222.915000px;}
.x9a_c00443{left:224.640000px;}
.x95_c00443{left:226.365000px;}
.xc5_c00443{left:228.960000px;}
.x78_c00443{left:230.685000px;}
.xd1_c00443{left:232.410000px;}
.x17_c00443{left:235.005000px;}
.x5_c00443{left:237.600000px;}
.x73_c00443{left:240.195000px;}
.x35_c00443{left:241.920000px;}
.x6_c00443{left:247.110000px;}
.x3f_c00443{left:250.560000px;}
.x104_c00443{left:254.010000px;}
.x1_c00443{left:255.750000px;}
.x74_c00443{left:258.330000px;}
.x66_c00443{left:260.070000px;}
.x51_c00443{left:263.520000px;}
.x36_c00443{left:266.115000px;}
.x59_c00443{left:269.565000px;}
.x5d_c00443{left:273.885000px;}
.x2_c00443{left:276.480000px;}
.x37_c00443{left:279.075000px;}
.x5e_c00443{left:281.670000px;}
.x52_c00443{left:284.250000px;}
.x38_c00443{left:287.715000px;}
.x39_c00443{left:290.310000px;}
.xd5_c00443{left:292.035000px;}
.x87_c00443{left:297.210000px;}
.x43_c00443{left:299.805000px;}
.x3a_c00443{left:303.270000px;}
.x44_c00443{left:305.850000px;}
.x9b_c00443{left:307.590000px;}
.xf9_c00443{left:309.315000px;}
.x7_c00443{left:311.040000px;}
.x8_c00443{left:314.490000px;}
.x3_c00443{left:316.230000px;}
.xeb_c00443{left:318.810000px;}
.x5f_c00443{left:321.405000px;}
.x18_c00443{left:324.870000px;}
.x88_c00443{left:326.595000px;}
.x9_c00443{left:329.190000px;}
.x53_c00443{left:330.915000px;}
.x40_c00443{left:333.510000px;}
.x75_c00443{left:336.090000px;}
.x92_c00443{left:337.830000px;}
.x45_c00443{left:339.555000px;}
.x19_c00443{left:341.280000px;}
.xfe_c00443{left:343.005000px;}
.x41_c00443{left:345.600000px;}
.x21_c00443{left:349.050000px;}
.x67_c00443{left:351.644400px;}
.x60_c00443{left:355.110000px;}
.xcd_c00443{left:357.690000px;}
.x46_c00443{left:360.285000px;}
.x54_c00443{left:362.880000px;}
.x7b_c00443{left:364.605000px;}
.x42_c00443{left:366.330000px;}
.xe1_c00443{left:368.925000px;}
.xa_c00443{left:372.390000px;}
.xbe_c00443{left:376.710000px;}
.x55_c00443{left:380.160000px;}
.x22_c00443{left:382.755000px;}
.xb_c00443{left:384.480000px;}
.x5a_c00443{left:386.205000px;}
.xec_c00443{left:387.930000px;}
.x47_c00443{left:389.670000px;}
.x3b_c00443{left:393.120000px;}
.x23_c00443{left:395.715000px;}
.xc_c00443{left:398.310000px;}
.x4_c00443{left:400.035000px;}
.x68_c00443{left:401.760000px;}
.x24_c00443{left:405.210000px;}
.xed_c00443{left:406.950000px;}
.x96_c00443{left:412.125000px;}
.xd_c00443{left:415.590000px;}
.xaa_c00443{left:417.315000px;}
.xbf_c00443{left:419.040000px;}
.x4e_c00443{left:420.765000px;}
.xf3_c00443{left:428.550000px;}
.x3c_c00443{left:431.130000px;}
.xe2_c00443{left:434.595000px;}
.x89_c00443{left:436.320000px;}
.x61_c00443{left:438.045000px;}
.x25_c00443{left:441.510000px;}
.x105_c00443{left:444.090000px;}
.x69_c00443{left:450.150000px;}
.xd6_c00443{left:451.875000px;}
.xb3_c00443{left:454.470000px;}
.xc6_c00443{left:465.690000px;}
.x4f_c00443{left:470.010000px;}
.x9e_c00443{left:472.605000px;}
.x6a_c00443{left:474.330000px;}
.xe8_c00443{left:478.650000px;}
.xe_c00443{left:482.115000px;}
.x97_c00443{left:483.840000px;}
.xf4_c00443{left:485.565000px;}
.x26_c00443{left:487.290000px;}
.x6b_c00443{left:489.030000px;}
.x48_c00443{left:490.755000px;}
.xb8_c00443{left:494.205000px;}
.x27_c00443{left:501.120000px;}
.x1a_c00443{left:503.715000px;}
.x28_c00443{left:507.165000px;}
.xdf_c00443{left:508.890000px;}
.xc0_c00443{left:510.630000px;}
.xef_c00443{left:514.080000px;}
.xf_c00443{left:515.805000px;}
.xb4_c00443{left:518.400000px;}
.x10_c00443{left:521.850000px;}
.xf0_c00443{left:524.445000px;}
.xd2_c00443{left:527.040000px;}
.x6c_c00443{left:528.765000px;}
.x106_c00443{left:533.085000px;}
.xe3_c00443{left:535.680000px;}
.x49_c00443{left:538.275000px;}
.x7c_c00443{left:540.870000px;}
.x11_c00443{left:545.190000px;}
.xf5_c00443{left:549.510000px;}
.xa1_c00443{left:551.235000px;}
.x56_c00443{left:554.685000px;}
.xc7_c00443{left:564.195000px;}
.x98_c00443{left:565.920000px;}
.xb9_c00443{left:568.515000px;}
.x9f_c00443{left:571.110000px;}
.xf1_c00443{left:572.835000px;}
.x29_c00443{left:577.155000px;}
.xfc_c00443{left:579.750000px;}
.x12_c00443{left:581.475000px;}
.xa2_c00443{left:583.200000px;}
.xc8_c00443{left:584.925000px;}
.xee_c00443{left:591.840000px;}
.x2a_c00443{left:595.290000px;}
.x79_c00443{left:597.885000px;}
.x9c_c00443{left:599.610000px;}
.xb5_c00443{left:601.350000px;}
.xf2_c00443{left:603.075000px;}
.xa4_c00443{left:605.670000px;}
.xab_c00443{left:608.250000px;}
.xce_c00443{left:609.990000px;}
.xd7_c00443{left:612.570000px;}
.x13_c00443{left:614.310000px;}
.xfa_c00443{left:617.760000px;}
.xf6_c00443{left:621.210000px;}
.xa5_c00443{left:623.805000px;}
.xd8_c00443{left:625.530000px;}
.x62_c00443{left:628.125000px;}
.x5b_c00443{left:629.850000px;}
.x6d_c00443{left:636.765000px;}
.x4a_c00443{left:639.360000px;}
.xc9_c00443{left:642.810000px;}
.xf7_c00443{left:644.550000px;}
.x4b_c00443{left:647.130000px;}
.xff_c00443{left:652.320000px;}
.x57_c00443{left:654.915000px;}
.xac_c00443{left:660.090000px;}
.x2b_c00443{left:662.685000px;}
.x6e_c00443{left:667.005000px;}
.xe9_c00443{left:669.600000px;}
.x2c_c00443{left:673.050000px;}
.xf8_c00443{left:677.370000px;}
.x8a_c00443{left:679.965000px;}
.xad_c00443{left:682.560000px;}
.xd9_c00443{left:686.010000px;}
.xb6_c00443{left:692.070000px;}
.x107_c00443{left:693.795000px;}
.x93_c00443{left:698.970000px;}
.x4c_c00443{left:700.710000px;}
.x1b_c00443{left:704.160000px;}
.xcf_c00443{left:705.885000px;}
.x14_c00443{left:707.610000px;}
.xb7_c00443{left:709.350000px;}
.x108_c00443{left:711.930000px;}
.xda_c00443{left:713.670000px;}
.x63_c00443{left:716.250000px;}
.x9d_c00443{left:717.990000px;}
.xae_c00443{left:723.165000px;}
.x81_c00443{left:727.485000px;}
.x8b_c00443{left:730.080000px;}
.xdb_c00443{left:732.675000px;}
.x7d_c00443{left:734.400000px;}
.x8c_c00443{left:736.125000px;}
.x82_c00443{left:738.720000px;}
.x8d_c00443{left:744.765000px;}
.xc1_c00443{left:746.490000px;}
.x2d_c00443{left:752.550000px;}
.xfd_c00443{left:754.275000px;}
.x15_c00443{left:756.000000px;}
.xea_c00443{left:759.450000px;}
.x58_c00443{left:762.045000px;}
.x1c_c00443{left:766.365000px;}
.x6f_c00443{left:770.685000px;}
.x109_c00443{left:774.150000px;}
.x1d_c00443{left:775.875000px;}
.x2e_c00443{left:779.325000px;}
.x16_c00443{left:781.920000px;}
.x100_c00443{left:783.645000px;}
.x70_c00443{left:786.240000px;}
.x8e_c00443{left:787.965000px;}
.x1e_c00443{left:790.560000px;}
.x4d_c00443{left:794.010000px;}
.xaf_c00443{left:796.605000px;}
.x2f_c00443{left:798.330000px;}
.xc2_c00443{left:800.070000px;}
.x101_c00443{left:806.970000px;}
.x83_c00443{left:808.710000px;}
.x50_c00443{left:810.435000px;}
.x8f_c00443{left:813.885000px;}
.x102_c00443{left:816.480000px;}
.x1f_c00443{left:818.205000px;}
.x84_c00443{left:820.800000px;}
.xc3_c00443{left:822.525000px;}
.x30_c00443{left:824.250000px;}
.x113_c00443{left:825.990000px;}
.x31_c00443{left:829.440000px;}
.xa9_c00443{left:832.890000px;}
.x90_c00443{left:834.630000px;}
.xe4_c00443{left:836.355000px;}
.xba_c00443{left:838.080000px;}
.x115_c00443{left:840.675000px;}
.xde_c00443{left:843.270000px;}
.xe5_c00443{left:844.995000px;}
.xe6_c00443{left:847.590000px;}
.x64_c00443{left:849.315000px;}
.x32_c00443{left:851.040000px;}
.x20_c00443{left:857.085000px;}
.xca_c00443{left:858.810000px;}
.x91_c00443{left:860.550000px;}
.x33_c00443{left:864.870000px;}
.x7e_c00443{left:867.450000px;}
.x5c_c00443{left:876.090000px;}
.x76_c00443{left:877.830000px;}
.x71_c00443{left:879.555000px;}
.x34_c00443{left:881.280000px;}
.xfb_c00443{left:884.730000px;}
.x103_c00443{left:886.470000px;}
.x3d_c00443{left:895.110000px;}
.x72_c00443{left:898.560000px;}
.x7f_c00443{left:901.155000px;}
.x85_c00443{left:903.750000px;}
.xb0_c00443{left:906.330000px;}
.x77_c00443{left:914.970000px;}
.xbb_c00443{left:916.710000px;}
.x80_c00443{left:919.290000px;}
.x3e_c00443{left:925.350000px;}
.xc4_c00443{left:927.075000px;}
.x114_c00443{left:933.120000px;}
.xbc_c00443{left:936.570000px;}
.x86_c00443{left:943.485000px;}
.xbd_c00443{left:947.805000px;}
.x65_c00443{left:952.995000px;}
.xb1_c00443{left:957.315000px;}
.xb2_c00443{left:972.000000px;}
@media print{
.v0_c00443{vertical-align:0.000000pt;}
.v1_c00443{vertical-align:3.093333pt;}
.ls0_c00443{letter-spacing:0.000000pt;}
.ws1_c00443{word-spacing:0.000000pt;}
.ws0_c00443{word-spacing:69.728000pt;}
._0_c00443{width:275.840000pt;}
.fs2_c00443{font-size:3.072000pt;}
.fs25_c00443{font-size:5.333333pt;}
.fs11_c00443{font-size:6.133333pt;}
.fs10_c00443{font-size:9.226667pt;}
.fs26_c00443{font-size:12.266667pt;}
.fsd_c00443{font-size:15.360000pt;}
.fs2b_c00443{font-size:18.453333pt;}
.fs2a_c00443{font-size:21.493333pt;}
.fs1_c00443{font-size:24.586667pt;}
.fs0_c00443{font-size:27.626667pt;}
.fs22_c00443{font-size:30.720000pt;}
.fs21_c00443{font-size:33.813333pt;}
.fs2e_c00443{font-size:36.853333pt;}
.fs14_c00443{font-size:39.946667pt;}
.fsc_c00443{font-size:42.986667pt;}
.fse_c00443{font-size:46.080000pt;}
.fs19_c00443{font-size:49.173333pt;}
.fs24_c00443{font-size:52.213333pt;}
.fs23_c00443{font-size:55.306667pt;}
.fsf_c00443{font-size:58.346667pt;}
.fs1f_c00443{font-size:61.440000pt;}
.fs2c_c00443{font-size:64.533333pt;}
.fs2f_c00443{font-size:67.573333pt;}
.fs1a_c00443{font-size:70.666667pt;}
.fs2d_c00443{font-size:73.706667pt;}
.fs12_c00443{font-size:76.800000pt;}
.fs28_c00443{font-size:79.893333pt;}
.fs27_c00443{font-size:82.933333pt;}
.fs5_c00443{font-size:86.026667pt;}
.fs30_c00443{font-size:89.066667pt;}
.fs16_c00443{font-size:92.160000pt;}
.fs6_c00443{font-size:95.253333pt;}
.fs9_c00443{font-size:98.293333pt;}
.fs8_c00443{font-size:101.386667pt;}
.fsb_c00443{font-size:104.426667pt;}
.fs20_c00443{font-size:107.520000pt;}
.fs1d_c00443{font-size:110.613333pt;}
.fs3_c00443{font-size:119.786667pt;}
.fs4_c00443{font-size:122.880000pt;}
.fs7_c00443{font-size:125.973333pt;}
.fsa_c00443{font-size:129.013333pt;}
.fs1c_c00443{font-size:132.106667pt;}
.fs15_c00443{font-size:138.240000pt;}
.fs1b_c00443{font-size:141.333333pt;}
.fs1e_c00443{font-size:147.466667pt;}
.fs13_c00443{font-size:156.693333pt;}
.fs17_c00443{font-size:187.413333pt;}
.fs29_c00443{font-size:196.586667pt;}
.fs18_c00443{font-size:218.133333pt;}
.y0_c00443{bottom:0.000000pt;}
.y15d_c00443{bottom:162.813333pt;}
.y15b_c00443{bottom:167.426667pt;}
.y15e_c00443{bottom:168.960000pt;}
.y156_c00443{bottom:172.800000pt;}
.y159_c00443{bottom:173.573333pt;}
.y15a_c00443{bottom:176.640000pt;}
.y157_c00443{bottom:177.413333pt;}
.y155_c00443{bottom:178.173333pt;}
.y15c_c00443{bottom:178.946667pt;}
.y158_c00443{bottom:180.480000pt;}
.y152_c00443{bottom:181.253333pt;}
.y154_c00443{bottom:182.013333pt;}
.y150_c00443{bottom:182.786667pt;}
.y14a_c00443{bottom:183.546667pt;}
.y151_c00443{bottom:185.093333pt;}
.y153_c00443{bottom:185.853333pt;}
.y14f_c00443{bottom:186.626667pt;}
.y14c_c00443{bottom:188.160000pt;}
.y14d_c00443{bottom:188.933333pt;}
.y14e_c00443{bottom:189.693333pt;}
.y14b_c00443{bottom:191.226667pt;}
.y147_c00443{bottom:205.053333pt;}
.y148_c00443{bottom:205.826667pt;}
.y149_c00443{bottom:210.426667pt;}
.y145_c00443{bottom:212.733333pt;}
.y146_c00443{bottom:213.506667pt;}
.y140_c00443{bottom:228.093333pt;}
.y13d_c00443{bottom:228.866667pt;}
.y13f_c00443{bottom:230.400000pt;}
.y142_c00443{bottom:232.706667pt;}
.y141_c00443{bottom:233.466667pt;}
.y13e_c00443{bottom:236.546667pt;}
.y143_c00443{bottom:237.306667pt;}
.y144_c00443{bottom:246.533333pt;}
.y13a_c00443{bottom:248.826667pt;}
.y139_c00443{bottom:250.373333pt;}
.y13c_c00443{bottom:251.133333pt;}
.y133_c00443{bottom:252.666667pt;}
.y138_c00443{bottom:253.440000pt;}
.y137_c00443{bottom:255.746667pt;}
.y135_c00443{bottom:256.506667pt;}
.y13b_c00443{bottom:257.280000pt;}
.y134_c00443{bottom:258.813333pt;}
.y136_c00443{bottom:260.346667pt;}
.y131_c00443{bottom:271.866667pt;}
.y12b_c00443{bottom:272.640000pt;}
.y12d_c00443{bottom:273.413333pt;}
.y12e_c00443{bottom:274.173333pt;}
.y12c_c00443{bottom:274.946667pt;}
.y132_c00443{bottom:276.480000pt;}
.y130_c00443{bottom:278.786667pt;}
.y12f_c00443{bottom:280.320000pt;}
.y128_c00443{bottom:292.613333pt;}
.y126_c00443{bottom:293.373333pt;}
.y129_c00443{bottom:294.906667pt;}
.y124_c00443{bottom:300.293333pt;}
.y125_c00443{bottom:302.586667pt;}
.y127_c00443{bottom:304.133333pt;}
.y12a_c00443{bottom:309.506667pt;}
.y121_c00443{bottom:314.880000pt;}
.y11f_c00443{bottom:317.186667pt;}
.y11e_c00443{bottom:320.253333pt;}
.y120_c00443{bottom:321.786667pt;}
.y123_c00443{bottom:322.560000pt;}
.y122_c00443{bottom:323.333333pt;}
.y11c_c00443{bottom:337.146667pt;}
.y119_c00443{bottom:340.226667pt;}
.y11b_c00443{bottom:340.986667pt;}
.y11d_c00443{bottom:341.760000pt;}
.y118_c00443{bottom:343.293333pt;}
.y117_c00443{bottom:344.066667pt;}
.y11a_c00443{bottom:344.826667pt;}
.y116_c00443{bottom:347.906667pt;}
.y115_c00443{bottom:357.120000pt;}
.y112_c00443{bottom:360.960000pt;}
.y110_c00443{bottom:361.733333pt;}
.y10e_c00443{bottom:362.493333pt;}
.y10f_c00443{bottom:364.026667pt;}
.y113_c00443{bottom:364.800000pt;}
.y111_c00443{bottom:367.866667pt;}
.y114_c00443{bottom:371.706667pt;}
.y10b_c00443{bottom:383.226667pt;}
.y10a_c00443{bottom:384.000000pt;}
.y105_c00443{bottom:384.773333pt;}
.y10c_c00443{bottom:385.533333pt;}
.y109_c00443{bottom:386.306667pt;}
.y10d_c00443{bottom:387.066667pt;}
.y107_c00443{bottom:387.840000pt;}
.y106_c00443{bottom:392.453333pt;}
.y108_c00443{bottom:393.213333pt;}
.yfa_c00443{bottom:407.813333pt;}
.y104_c00443{bottom:409.346667pt;}
.yfe_c00443{bottom:410.106667pt;}
.yf8_c00443{bottom:411.653333pt;}
.y103_c00443{bottom:412.413333pt;}
.y100_c00443{bottom:413.186667pt;}
.yfb_c00443{bottom:413.946667pt;}
.yf9_c00443{bottom:414.720000pt;}
.yff_c00443{bottom:415.493333pt;}
.yf7_c00443{bottom:416.253333pt;}
.yfc_c00443{bottom:420.093333pt;}
.y101_c00443{bottom:422.400000pt;}
.y102_c00443{bottom:423.933333pt;}
.yfd_c00443{bottom:426.240000pt;}
.yf5_c00443{bottom:427.013333pt;}
.yf3_c00443{bottom:427.773333pt;}
.yf6_c00443{bottom:428.546667pt;}
.yf4_c00443{bottom:436.226667pt;}
.yf1_c00443{bottom:440.826667pt;}
.yf2_c00443{bottom:443.133333pt;}
.yed_c00443{bottom:450.053333pt;}
.yf0_c00443{bottom:450.813333pt;}
.yeb_c00443{bottom:451.586667pt;}
.yea_c00443{bottom:452.346667pt;}
.yee_c00443{bottom:453.893333pt;}
.yef_c00443{bottom:456.186667pt;}
.yec_c00443{bottom:458.493333pt;}
.ye9_c00443{bottom:459.266667pt;}
.ye7_c00443{bottom:467.706667pt;}
.ye5_c00443{bottom:470.786667pt;}
.ye8_c00443{bottom:471.546667pt;}
.ye4_c00443{bottom:472.320000pt;}
.ydf_c00443{bottom:473.093333pt;}
.ye1_c00443{bottom:473.853333pt;}
.ye0_c00443{bottom:474.626667pt;}
.ye3_c00443{bottom:476.933333pt;}
.ye2_c00443{bottom:480.000000pt;}
.ye6_c00443{bottom:483.840000pt;}
.ydd_c00443{bottom:494.586667pt;}
.yda_c00443{bottom:496.133333pt;}
.ydc_c00443{bottom:496.893333pt;}
.yde_c00443{bottom:500.733333pt;}
.yd9_c00443{bottom:502.266667pt;}
.ydb_c00443{bottom:503.040000pt;}
.yd6_c00443{bottom:517.626667pt;}
.yd1_c00443{bottom:518.400000pt;}
.yd3_c00443{bottom:519.933333pt;}
.yd4_c00443{bottom:520.706667pt;}
.ycf_c00443{bottom:522.240000pt;}
.yd5_c00443{bottom:523.013333pt;}
.yd0_c00443{bottom:524.546667pt;}
.yd2_c00443{bottom:525.306667pt;}
.yd8_c00443{bottom:529.920000pt;}
.yd7_c00443{bottom:531.453333pt;}
.yc8_c00443{bottom:539.906667pt;}
.yc9_c00443{bottom:540.666667pt;}
.ycb_c00443{bottom:543.746667pt;}
.ycc_c00443{bottom:545.280000pt;}
.yc5_c00443{bottom:546.053333pt;}
.yca_c00443{bottom:546.813333pt;}
.yc2_c00443{bottom:547.586667pt;}
.ycd_c00443{bottom:549.893333pt;}
.yc4_c00443{bottom:552.960000pt;}
.yc0_c00443{bottom:554.493333pt;}
.ybe_c00443{bottom:555.266667pt;}
.yce_c00443{bottom:556.026667pt;}
.yc7_c00443{bottom:557.573333pt;}
.yc3_c00443{bottom:558.333333pt;}
.yc6_c00443{bottom:559.106667pt;}
.ybf_c00443{bottom:559.866667pt;}
.yc1_c00443{bottom:560.640000pt;}
.yb7_c00443{bottom:561.413333pt;}
.ybd_c00443{bottom:562.173333pt;}
.yb9_c00443{bottom:562.946667pt;}
.yba_c00443{bottom:563.706667pt;}
.ybc_c00443{bottom:564.480000pt;}
.yb8_c00443{bottom:565.253333pt;}
.ybb_c00443{bottom:569.093333pt;}
.yb6_c00443{bottom:569.853333pt;}
.yb4_c00443{bottom:584.453333pt;}
.yb2_c00443{bottom:586.746667pt;}
.yb3_c00443{bottom:587.520000pt;}
.yb0_c00443{bottom:588.293333pt;}
.yb5_c00443{bottom:590.586667pt;}
.yaf_c00443{bottom:592.133333pt;}
.yae_c00443{bottom:596.733333pt;}
.yb1_c00443{bottom:605.946667pt;}
.yad_c00443{bottom:606.720000pt;}
.yaa_c00443{bottom:607.493333pt;}
.ya9_c00443{bottom:608.253333pt;}
.yab_c00443{bottom:609.026667pt;}
.yac_c00443{bottom:612.866667pt;}
.ya7_c00443{bottom:628.986667pt;}
.y166_c00443{bottom:632.826667pt;}
.ya8_c00443{bottom:634.373333pt;}
.ya5_c00443{bottom:638.213333pt;}
.y167_c00443{bottom:638.973333pt;}
.ya6_c00443{bottom:642.813333pt;}
.ya3_c00443{bottom:648.960000pt;}
.ya4_c00443{bottom:649.733333pt;}
.ya1_c00443{bottom:651.266667pt;}
.ya2_c00443{bottom:654.333333pt;}
.ya0_c00443{bottom:655.866667pt;}
.y9f_c00443{bottom:658.173333pt;}
.y9e_c00443{bottom:666.626667pt;}
.y9d_c00443{bottom:669.693333pt;}
.y9c_c00443{bottom:670.466667pt;}
.y9a_c00443{bottom:672.773333pt;}
.y165_c00443{bottom:675.066667pt;}
.y9b_c00443{bottom:675.840000pt;}
.y164_c00443{bottom:678.146667pt;}
.y99_c00443{bottom:680.453333pt;}
.y163_c00443{bottom:689.666667pt;}
.y95_c00443{bottom:696.573333pt;}
.y96_c00443{bottom:698.880000pt;}
.y94_c00443{bottom:699.653333pt;}
.y97_c00443{bottom:700.413333pt;}
.y98_c00443{bottom:701.186667pt;}
.y93_c00443{bottom:706.560000pt;}
.y90_c00443{bottom:715.013333pt;}
.y8e_c00443{bottom:715.773333pt;}
.y8c_c00443{bottom:717.306667pt;}
.y8f_c00443{bottom:718.080000pt;}
.y91_c00443{bottom:719.613333pt;}
.y8d_c00443{bottom:721.920000pt;}
.y92_c00443{bottom:724.226667pt;}
.y8b_c00443{bottom:729.600000pt;}
.y88_c00443{bottom:738.053333pt;}
.y89_c00443{bottom:738.813333pt;}
.y86_c00443{bottom:739.586667pt;}
.y87_c00443{bottom:740.346667pt;}
.y8a_c00443{bottom:741.120000pt;}
.y82_c00443{bottom:754.173333pt;}
.y85_c00443{bottom:755.706667pt;}
.y84_c00443{bottom:756.480000pt;}
.y83_c00443{bottom:757.253333pt;}
.y7f_c00443{bottom:758.013333pt;}
.y7e_c00443{bottom:758.786667pt;}
.y80_c00443{bottom:759.546667pt;}
.y7a_c00443{bottom:760.320000pt;}
.y81_c00443{bottom:761.093333pt;}
.y77_c00443{bottom:761.853333pt;}
.y78_c00443{bottom:762.626667pt;}
.y7c_c00443{bottom:764.933333pt;}
.y7b_c00443{bottom:765.693333pt;}
.y79_c00443{bottom:767.226667pt;}
.y76_c00443{bottom:768.773333pt;}
.y7d_c00443{bottom:776.453333pt;}
.y75_c00443{bottom:781.826667pt;}
.y71_c00443{bottom:782.586667pt;}
.y6f_c00443{bottom:783.360000pt;}
.y74_c00443{bottom:784.133333pt;}
.y6c_c00443{bottom:784.893333pt;}
.y72_c00443{bottom:787.973333pt;}
.y73_c00443{bottom:788.733333pt;}
.y70_c00443{bottom:789.506667pt;}
.y6d_c00443{bottom:790.266667pt;}
.y6e_c00443{bottom:791.813333pt;}
.y69_c00443{bottom:805.626667pt;}
.y68_c00443{bottom:806.400000pt;}
.y6a_c00443{bottom:807.173333pt;}
.y66_c00443{bottom:809.466667pt;}
.y6b_c00443{bottom:810.240000pt;}
.y60_c00443{bottom:811.773333pt;}
.y5e_c00443{bottom:812.546667pt;}
.y5c_c00443{bottom:813.306667pt;}
.y65_c00443{bottom:814.080000pt;}
.y63_c00443{bottom:814.853333pt;}
.y67_c00443{bottom:815.613333pt;}
.y162_c00443{bottom:817.920000pt;}
.y64_c00443{bottom:818.693333pt;}
.y62_c00443{bottom:819.453333pt;}
.y5d_c00443{bottom:820.226667pt;}
.y5a_c00443{bottom:820.986667pt;}
.y5f_c00443{bottom:821.760000pt;}
.y61_c00443{bottom:822.533333pt;}
.y5b_c00443{bottom:824.826667pt;}
.y57_c00443{bottom:825.600000pt;}
.y58_c00443{bottom:826.373333pt;}
.y54_c00443{bottom:827.906667pt;}
.y59_c00443{bottom:828.666667pt;}
.y53_c00443{bottom:829.440000pt;}
.y55_c00443{bottom:832.506667pt;}
.y50_c00443{bottom:834.053333pt;}
.y4f_c00443{bottom:834.813333pt;}
.y52_c00443{bottom:836.346667pt;}
.y4d_c00443{bottom:837.120000pt;}
.y51_c00443{bottom:837.893333pt;}
.y4e_c00443{bottom:838.653333pt;}
.y56_c00443{bottom:847.866667pt;}
.y4c_c00443{bottom:849.413333pt;}
.y4b_c00443{bottom:850.173333pt;}
.y4a_c00443{bottom:854.786667pt;}
.y49_c00443{bottom:861.693333pt;}
.y48_c00443{bottom:871.680000pt;}
.y46_c00443{bottom:872.453333pt;}
.y45_c00443{bottom:873.213333pt;}
.y40_c00443{bottom:874.746667pt;}
.y47_c00443{bottom:876.293333pt;}
.y41_c00443{bottom:882.426667pt;}
.y42_c00443{bottom:883.200000pt;}
.y3f_c00443{bottom:884.733333pt;}
.y2b_c00443{bottom:886.266667pt;}
.y3b_c00443{bottom:887.813333pt;}
.y34_c00443{bottom:889.346667pt;}
.y43_c00443{bottom:890.106667pt;}
.y44_c00443{bottom:893.946667pt;}
.y39_c00443{bottom:894.720000pt;}
.y3d_c00443{bottom:895.493333pt;}
.y3e_c00443{bottom:896.253333pt;}
.y38_c00443{bottom:897.786667pt;}
.y32_c00443{bottom:898.560000pt;}
.y3c_c00443{bottom:899.333333pt;}
.y3a_c00443{bottom:900.093333pt;}
.y37_c00443{bottom:900.866667pt;}
.y35_c00443{bottom:901.626667pt;}
.y30_c00443{bottom:902.400000pt;}
.y33_c00443{bottom:903.933333pt;}
.y36_c00443{bottom:904.706667pt;}
.y31_c00443{bottom:905.466667pt;}
.y2f_c00443{bottom:920.066667pt;}
.y2c_c00443{bottom:923.906667pt;}
.y2d_c00443{bottom:926.973333pt;}
.y29_c00443{bottom:927.746667pt;}
.y2a_c00443{bottom:931.586667pt;}
.y2e_c00443{bottom:932.346667pt;}
.y26_c00443{bottom:937.733333pt;}
.y25_c00443{bottom:939.266667pt;}
.y24_c00443{bottom:940.026667pt;}
.y22_c00443{bottom:946.173333pt;}
.y21_c00443{bottom:946.946667pt;}
.y23_c00443{bottom:948.480000pt;}
.y27_c00443{bottom:953.853333pt;}
.y28_c00443{bottom:956.160000pt;}
.y1d_c00443{bottom:966.146667pt;}
.y19_c00443{bottom:968.453333pt;}
.y15_c00443{bottom:969.213333pt;}
.y16_c00443{bottom:969.986667pt;}
.y17_c00443{bottom:973.826667pt;}
.y1e_c00443{bottom:974.586667pt;}
.y1a_c00443{bottom:976.133333pt;}
.y18_c00443{bottom:977.666667pt;}
.y20_c00443{bottom:982.266667pt;}
.y1c_c00443{bottom:984.573333pt;}
.y1f_c00443{bottom:989.946667pt;}
.y11_c00443{bottom:991.493333pt;}
.y10_c00443{bottom:995.333333pt;}
.y1b_c00443{bottom:996.866667pt;}
.yc_c00443{bottom:1005.306667pt;}
.ye_c00443{bottom:1006.853333pt;}
.y13_c00443{bottom:1010.693333pt;}
.y12_c00443{bottom:1012.986667pt;}
.yf_c00443{bottom:1014.533333pt;}
.yd_c00443{bottom:1015.293333pt;}
.y14_c00443{bottom:1019.906667pt;}
.y8_c00443{bottom:1039.106667pt;}
.y9_c00443{bottom:1039.866667pt;}
.y5_c00443{bottom:1040.640000pt;}
.y4_c00443{bottom:1041.413333pt;}
.y6_c00443{bottom:1042.173333pt;}
.y7_c00443{bottom:1042.946667pt;}
.ya_c00443{bottom:1043.706667pt;}
.yb_c00443{bottom:1048.320000pt;}
.y1_c00443{bottom:1072.133333pt;}
.y2_c00443{bottom:1072.893333pt;}
.y3_c00443{bottom:1075.973333pt;}
.y161_c00443{bottom:1170.426667pt;}
.y160_c00443{bottom:1185.786667pt;}
.y15f_c00443{bottom:1187.333333pt;}
.y16e_c00443{bottom:1191.173333pt;}
.y16f_c00443{bottom:1195.013333pt;}
.y16b_c00443{bottom:1220.346667pt;}
.y16c_c00443{bottom:1221.120000pt;}
.y16d_c00443{bottom:1222.653333pt;}
.y16a_c00443{bottom:1228.026667pt;}
.y169_c00443{bottom:1232.640000pt;}
.y168_c00443{bottom:1233.413333pt;}
.h3_c00443{height:2.764500pt;}
.h26_c00443{height:4.799479pt;}
.h12_c00443{height:5.519401pt;}
.h32_c00443{height:7.892813pt;}
.h11_c00443{height:8.303099pt;}
.h27_c00443{height:11.038802pt;}
.he_c00443{height:13.822500pt;}
.h2c_c00443{height:16.606198pt;}
.h2b_c00443{height:19.341901pt;}
.h2_c00443{height:22.125599pt;}
.h1_c00443{height:24.861302pt;}
.h23_c00443{height:27.645000pt;}
.h22_c00443{height:30.428698pt;}
.h2f_c00443{height:33.164401pt;}
.h15_c00443{height:35.948099pt;}
.hd_c00443{height:38.683802pt;}
.hf_c00443{height:41.467500pt;}
.h1a_c00443{height:44.251198pt;}
.h25_c00443{height:46.986901pt;}
.h24_c00443{height:49.770599pt;}
.h10_c00443{height:52.506302pt;}
.h20_c00443{height:55.290000pt;}
.h2d_c00443{height:58.073698pt;}
.h30_c00443{height:60.809401pt;}
.h1b_c00443{height:63.593099pt;}
.h2e_c00443{height:66.328802pt;}
.h13_c00443{height:69.112500pt;}
.h29_c00443{height:71.896198pt;}
.h28_c00443{height:74.631901pt;}
.h6_c00443{height:77.415599pt;}
.h31_c00443{height:80.151302pt;}
.h17_c00443{height:82.935000pt;}
.h7_c00443{height:85.718698pt;}
.ha_c00443{height:88.454401pt;}
.h9_c00443{height:91.238099pt;}
.hc_c00443{height:93.973802pt;}
.h21_c00443{height:96.757500pt;}
.h1e_c00443{height:99.541198pt;}
.h4_c00443{height:107.796302pt;}
.h5_c00443{height:110.580000pt;}
.h8_c00443{height:113.363698pt;}
.hb_c00443{height:116.099401pt;}
.h1d_c00443{height:118.883099pt;}
.h16_c00443{height:124.402500pt;}
.h1c_c00443{height:127.186198pt;}
.h1f_c00443{height:132.705599pt;}
.h14_c00443{height:141.008698pt;}
.h18_c00443{height:168.653698pt;}
.h2a_c00443{height:176.908802pt;}
.h19_c00443{height:196.298698pt;}
.h0_c00443{height:1344.000000pt;}
.w0_c00443{width:978.426667pt;}
.w1_c00443{width:978.666667pt;}
.x0_c00443{left:0.000000pt;}
.x110_c00443{left:23.040000pt;}
.x10a_c00443{left:77.573333pt;}
.x10c_c00443{left:94.466667pt;}
.x10b_c00443{left:96.000000pt;}
.x111_c00443{left:112.133333pt;}
.x10d_c00443{left:115.973333pt;}
.x112_c00443{left:121.346667pt;}
.x10e_c00443{left:122.880000pt;}
.x10f_c00443{left:126.720000pt;}
.xd3_c00443{left:135.933333pt;}
.xd4_c00443{left:155.133333pt;}
.xa6_c00443{left:161.280000pt;}
.xcb_c00443{left:163.586667pt;}
.xa7_c00443{left:169.733333pt;}
.x99_c00443{left:176.640000pt;}
.x94_c00443{left:178.946667pt;}
.xd0_c00443{left:180.480093pt;}
.xa8_c00443{left:182.013333pt;}
.xdc_c00443{left:184.320000pt;}
.xcc_c00443{left:186.626667pt;}
.xa0_c00443{left:188.160000pt;}
.xa3_c00443{left:191.226667pt;}
.xe0_c00443{left:192.773333pt;}
.x7a_c00443{left:195.066667pt;}
.xe7_c00443{left:196.613333pt;}
.xdd_c00443{left:198.146667pt;}
.x9a_c00443{left:199.680000pt;}
.x95_c00443{left:201.213333pt;}
.xc5_c00443{left:203.520000pt;}
.x78_c00443{left:205.053333pt;}
.xd1_c00443{left:206.586667pt;}
.x17_c00443{left:208.893333pt;}
.x5_c00443{left:211.200000pt;}
.x73_c00443{left:213.506667pt;}
.x35_c00443{left:215.040000pt;}
.x6_c00443{left:219.653333pt;}
.x3f_c00443{left:222.720000pt;}
.x104_c00443{left:225.786667pt;}
.x1_c00443{left:227.333333pt;}
.x74_c00443{left:229.626667pt;}
.x66_c00443{left:231.173333pt;}
.x51_c00443{left:234.240000pt;}
.x36_c00443{left:236.546667pt;}
.x59_c00443{left:239.613333pt;}
.x5d_c00443{left:243.453333pt;}
.x2_c00443{left:245.760000pt;}
.x37_c00443{left:248.066667pt;}
.x5e_c00443{left:250.373333pt;}
.x52_c00443{left:252.666667pt;}
.x38_c00443{left:255.746667pt;}
.x39_c00443{left:258.053333pt;}
.xd5_c00443{left:259.586667pt;}
.x87_c00443{left:264.186667pt;}
.x43_c00443{left:266.493333pt;}
.x3a_c00443{left:269.573333pt;}
.x44_c00443{left:271.866667pt;}
.x9b_c00443{left:273.413333pt;}
.xf9_c00443{left:274.946667pt;}
.x7_c00443{left:276.480000pt;}
.x8_c00443{left:279.546667pt;}
.x3_c00443{left:281.093333pt;}
.xeb_c00443{left:283.386667pt;}
.x5f_c00443{left:285.693333pt;}
.x18_c00443{left:288.773333pt;}
.x88_c00443{left:290.306667pt;}
.x9_c00443{left:292.613333pt;}
.x53_c00443{left:294.146667pt;}
.x40_c00443{left:296.453333pt;}
.x75_c00443{left:298.746667pt;}
.x92_c00443{left:300.293333pt;}
.x45_c00443{left:301.826667pt;}
.x19_c00443{left:303.360000pt;}
.xfe_c00443{left:304.893333pt;}
.x41_c00443{left:307.200000pt;}
.x21_c00443{left:310.266667pt;}
.x67_c00443{left:312.572800pt;}
.x60_c00443{left:315.653333pt;}
.xcd_c00443{left:317.946667pt;}
.x46_c00443{left:320.253333pt;}
.x54_c00443{left:322.560000pt;}
.x7b_c00443{left:324.093333pt;}
.x42_c00443{left:325.626667pt;}
.xe1_c00443{left:327.933333pt;}
.xa_c00443{left:331.013333pt;}
.xbe_c00443{left:334.853333pt;}
.x55_c00443{left:337.920000pt;}
.x22_c00443{left:340.226667pt;}
.xb_c00443{left:341.760000pt;}
.x5a_c00443{left:343.293333pt;}
.xec_c00443{left:344.826667pt;}
.x47_c00443{left:346.373333pt;}
.x3b_c00443{left:349.440000pt;}
.x23_c00443{left:351.746667pt;}
.xc_c00443{left:354.053333pt;}
.x4_c00443{left:355.586667pt;}
.x68_c00443{left:357.120000pt;}
.x24_c00443{left:360.186667pt;}
.xed_c00443{left:361.733333pt;}
.x96_c00443{left:366.333333pt;}
.xd_c00443{left:369.413333pt;}
.xaa_c00443{left:370.946667pt;}
.xbf_c00443{left:372.480000pt;}
.x4e_c00443{left:374.013333pt;}
.xf3_c00443{left:380.933333pt;}
.x3c_c00443{left:383.226667pt;}
.xe2_c00443{left:386.306667pt;}
.x89_c00443{left:387.840000pt;}
.x61_c00443{left:389.373333pt;}
.x25_c00443{left:392.453333pt;}
.x105_c00443{left:394.746667pt;}
.x69_c00443{left:400.133333pt;}
.xd6_c00443{left:401.666667pt;}
.xb3_c00443{left:403.973333pt;}
.xc6_c00443{left:413.946667pt;}
.x4f_c00443{left:417.786667pt;}
.x9e_c00443{left:420.093333pt;}
.x6a_c00443{left:421.626667pt;}
.xe8_c00443{left:425.466667pt;}
.xe_c00443{left:428.546667pt;}
.x97_c00443{left:430.080000pt;}
.xf4_c00443{left:431.613333pt;}
.x26_c00443{left:433.146667pt;}
.x6b_c00443{left:434.693333pt;}
.x48_c00443{left:436.226667pt;}
.xb8_c00443{left:439.293333pt;}
.x27_c00443{left:445.440000pt;}
.x1a_c00443{left:447.746667pt;}
.x28_c00443{left:450.813333pt;}
.xdf_c00443{left:452.346667pt;}
.xc0_c00443{left:453.893333pt;}
.xef_c00443{left:456.960000pt;}
.xf_c00443{left:458.493333pt;}
.xb4_c00443{left:460.800000pt;}
.x10_c00443{left:463.866667pt;}
.xf0_c00443{left:466.173333pt;}
.xd2_c00443{left:468.480000pt;}
.x6c_c00443{left:470.013333pt;}
.x106_c00443{left:473.853333pt;}
.xe3_c00443{left:476.160000pt;}
.x49_c00443{left:478.466667pt;}
.x7c_c00443{left:480.773333pt;}
.x11_c00443{left:484.613333pt;}
.xf5_c00443{left:488.453333pt;}
.xa1_c00443{left:489.986667pt;}
.x56_c00443{left:493.053333pt;}
.xc7_c00443{left:501.506667pt;}
.x98_c00443{left:503.040000pt;}
.xb9_c00443{left:505.346667pt;}
.x9f_c00443{left:507.653333pt;}
.xf1_c00443{left:509.186667pt;}
.x29_c00443{left:513.026667pt;}
.xfc_c00443{left:515.333333pt;}
.x12_c00443{left:516.866667pt;}
.xa2_c00443{left:518.400000pt;}
.xc8_c00443{left:519.933333pt;}
.xee_c00443{left:526.080000pt;}
.x2a_c00443{left:529.146667pt;}
.x79_c00443{left:531.453333pt;}
.x9c_c00443{left:532.986667pt;}
.xb5_c00443{left:534.533333pt;}
.xf2_c00443{left:536.066667pt;}
.xa4_c00443{left:538.373333pt;}
.xab_c00443{left:540.666667pt;}
.xce_c00443{left:542.213333pt;}
.xd7_c00443{left:544.506667pt;}
.x13_c00443{left:546.053333pt;}
.xfa_c00443{left:549.120000pt;}
.xf6_c00443{left:552.186667pt;}
.xa5_c00443{left:554.493333pt;}
.xd8_c00443{left:556.026667pt;}
.x62_c00443{left:558.333333pt;}
.x5b_c00443{left:559.866667pt;}
.x6d_c00443{left:566.013333pt;}
.x4a_c00443{left:568.320000pt;}
.xc9_c00443{left:571.386667pt;}
.xf7_c00443{left:572.933333pt;}
.x4b_c00443{left:575.226667pt;}
.xff_c00443{left:579.840000pt;}
.x57_c00443{left:582.146667pt;}
.xac_c00443{left:586.746667pt;}
.x2b_c00443{left:589.053333pt;}
.x6e_c00443{left:592.893333pt;}
.xe9_c00443{left:595.200000pt;}
.x2c_c00443{left:598.266667pt;}
.xf8_c00443{left:602.106667pt;}
.x8a_c00443{left:604.413333pt;}
.xad_c00443{left:606.720000pt;}
.xd9_c00443{left:609.786667pt;}
.xb6_c00443{left:615.173333pt;}
.x107_c00443{left:616.706667pt;}
.x93_c00443{left:621.306667pt;}
.x4c_c00443{left:622.853333pt;}
.x1b_c00443{left:625.920000pt;}
.xcf_c00443{left:627.453333pt;}
.x14_c00443{left:628.986667pt;}
.xb7_c00443{left:630.533333pt;}
.x108_c00443{left:632.826667pt;}
.xda_c00443{left:634.373333pt;}
.x63_c00443{left:636.666667pt;}
.x9d_c00443{left:638.213333pt;}
.xae_c00443{left:642.813333pt;}
.x81_c00443{left:646.653333pt;}
.x8b_c00443{left:648.960000pt;}
.xdb_c00443{left:651.266667pt;}
.x7d_c00443{left:652.800000pt;}
.x8c_c00443{left:654.333333pt;}
.x82_c00443{left:656.640000pt;}
.x8d_c00443{left:662.013333pt;}
.xc1_c00443{left:663.546667pt;}
.x2d_c00443{left:668.933333pt;}
.xfd_c00443{left:670.466667pt;}
.x15_c00443{left:672.000000pt;}
.xea_c00443{left:675.066667pt;}
.x58_c00443{left:677.373333pt;}
.x1c_c00443{left:681.213333pt;}
.x6f_c00443{left:685.053333pt;}
.x109_c00443{left:688.133333pt;}
.x1d_c00443{left:689.666667pt;}
.x2e_c00443{left:692.733333pt;}
.x16_c00443{left:695.040000pt;}
.x100_c00443{left:696.573333pt;}
.x70_c00443{left:698.880000pt;}
.x8e_c00443{left:700.413333pt;}
.x1e_c00443{left:702.720000pt;}
.x4d_c00443{left:705.786667pt;}
.xaf_c00443{left:708.093333pt;}
.x2f_c00443{left:709.626667pt;}
.xc2_c00443{left:711.173333pt;}
.x101_c00443{left:717.306667pt;}
.x83_c00443{left:718.853333pt;}
.x50_c00443{left:720.386667pt;}
.x8f_c00443{left:723.453333pt;}
.x102_c00443{left:725.760000pt;}
.x1f_c00443{left:727.293333pt;}
.x84_c00443{left:729.600000pt;}
.xc3_c00443{left:731.133333pt;}
.x30_c00443{left:732.666667pt;}
.x113_c00443{left:734.213333pt;}
.x31_c00443{left:737.280000pt;}
.xa9_c00443{left:740.346667pt;}
.x90_c00443{left:741.893333pt;}
.xe4_c00443{left:743.426667pt;}
.xba_c00443{left:744.960000pt;}
.x115_c00443{left:747.266667pt;}
.xde_c00443{left:749.573333pt;}
.xe5_c00443{left:751.106667pt;}
.xe6_c00443{left:753.413333pt;}
.x64_c00443{left:754.946667pt;}
.x32_c00443{left:756.480000pt;}
.x20_c00443{left:761.853333pt;}
.xca_c00443{left:763.386667pt;}
.x91_c00443{left:764.933333pt;}
.x33_c00443{left:768.773333pt;}
.x7e_c00443{left:771.066667pt;}
.x5c_c00443{left:778.746667pt;}
.x76_c00443{left:780.293333pt;}
.x71_c00443{left:781.826667pt;}
.x34_c00443{left:783.360000pt;}
.xfb_c00443{left:786.426667pt;}
.x103_c00443{left:787.973333pt;}
.x3d_c00443{left:795.653333pt;}
.x72_c00443{left:798.720000pt;}
.x7f_c00443{left:801.026667pt;}
.x85_c00443{left:803.333333pt;}
.xb0_c00443{left:805.626667pt;}
.x77_c00443{left:813.306667pt;}
.xbb_c00443{left:814.853333pt;}
.x80_c00443{left:817.146667pt;}
.x3e_c00443{left:822.533333pt;}
.xc4_c00443{left:824.066667pt;}
.x114_c00443{left:829.440000pt;}
.xbc_c00443{left:832.506667pt;}
.x86_c00443{left:838.653333pt;}
.xbd_c00443{left:842.493333pt;}
.x65_c00443{left:847.106667pt;}
.xb1_c00443{left:850.946667pt;}
.xb2_c00443{left:864.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_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_982d9a4998ad5bcbf47fa83a.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.109863;font-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_c00444{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m75_c00444{transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020000,0.000000,0.000000,0.250000,0,0);}
.mbb_c00444{transform:matrix(0.039200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039200,0.000000,0.000000,0.250000,0,0);}
.m8f_c00444{transform:matrix(0.049525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049525,0.000000,0.000000,0.250000,0,0);}
.m99_c00444{transform:matrix(0.051325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051325,0.000000,0.000000,0.250000,0,0);}
.mfb_c00444{transform:matrix(0.056200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056200,0.000000,0.000000,0.250000,0,0);}
.m9d_c00444{transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);}
.m104_c00444{transform:matrix(0.060025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060025,0.000000,0.000000,0.250000,0,0);}
.m9f_c00444{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.mb5_c00444{transform:matrix(0.061550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061550,0.000000,0.000000,0.250000,0,0);}
.m90_c00444{transform:matrix(0.068425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068425,0.000000,0.000000,0.250000,0,0);}
.m10d_c00444{transform:matrix(0.073425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073425,0.000000,0.000000,0.250000,0,0);}
.mc4_c00444{transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);}
.m34_c00444{transform:matrix(0.077775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077775,0.000000,0.000000,0.250000,0,0);}
.m119_c00444{transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078000,0.000000,0.000000,0.250000,0,0);}
.m106_c00444{transform:matrix(0.083850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083850,0.000000,0.000000,0.250000,0,0);}
.m91_c00444{transform:matrix(0.084025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084025,0.000000,0.000000,0.250000,0,0);}
.m1f_c00444{transform:matrix(0.085100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085100,0.000000,0.000000,0.250000,0,0);}
.m15b_c00444{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.m3e_c00444{transform:matrix(0.092150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092150,0.000000,0.000000,0.250000,0,0);}
.m150_c00444{transform:matrix(0.093800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093800,0.000000,0.000000,0.250000,0,0);}
.mb7_c00444{transform:matrix(0.095500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095500,0.000000,0.000000,0.250000,0,0);}
.m145_c00444{transform:matrix(0.098625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098625,0.000000,0.000000,0.250000,0,0);}
.m146_c00444{transform:matrix(0.098650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098650,0.000000,0.000000,0.250000,0,0);}
.m7a_c00444{transform:matrix(0.099125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099125,0.000000,0.000000,0.250000,0,0);}
.m10_c00444{transform:matrix(0.100400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100400,0.000000,0.000000,0.250000,0,0);}
.ma0_c00444{transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);}
.m147_c00444{transform:matrix(0.100925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100925,0.000000,0.000000,0.250000,0,0);}
.m95_c00444{transform:matrix(0.101775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101775,0.000000,0.000000,0.250000,0,0);}
.m1e_c00444{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);}
.mdf_c00444{transform:matrix(0.106425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106425,0.000000,0.000000,0.250000,0,0);}
.m11d_c00444{transform:matrix(0.106950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106950,0.000000,0.000000,0.250000,0,0);}
.m12_c00444{transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);}
.m149_c00444{transform:matrix(0.108900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108900,0.000000,0.000000,0.250000,0,0);}
.m124_c00444{transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);}
.m8c_c00444{transform:matrix(0.109300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109300,0.000000,0.000000,0.250000,0,0);}
.m25_c00444{transform:matrix(0.109525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109525,0.000000,0.000000,0.250000,0,0);}
.m13d_c00444{transform:matrix(0.110050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110050,0.000000,0.000000,0.250000,0,0);}
.m81_c00444{transform:matrix(0.110275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110275,0.000000,0.000000,0.250000,0,0);}
.mb4_c00444{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m67_c00444{transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);}
.m115_c00444{transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);}
.m2a_c00444{transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118500,0.000000,0.000000,0.250000,0,0);}
.mf_c00444{transform:matrix(0.118575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118575,0.000000,0.000000,0.250000,0,0);}
.m77_c00444{transform:matrix(0.119300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119300,0.000000,0.000000,0.250000,0,0);}
.m46_c00444{transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);}
.m123_c00444{transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);}
.m107_c00444{transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);}
.m69_c00444{transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);}
.m80_c00444{transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);}
.mff_c00444{transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);}
.m21_c00444{transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);}
.m1d_c00444{transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);}
.m10a_c00444{transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);}
.m13a_c00444{transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);}
.m101_c00444{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m13_c00444{transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);}
.m9c_c00444{transform:matrix(0.126175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126175,0.000000,0.000000,0.250000,0,0);}
.m93_c00444{transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);}
.m156_c00444{transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);}
.m6b_c00444{transform:matrix(0.127225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127225,0.000000,0.000000,0.250000,0,0);}
.m76_c00444{transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);}
.mf9_c00444{transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);}
.m117_c00444{transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);}
.m143_c00444{transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);}
.maa_c00444{transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);}
.m27_c00444{transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);}
.m26_c00444{transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);}
.m78_c00444{transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);}
.m87_c00444{transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);}
.m16_c00444{transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);}
.m85_c00444{transform:matrix(0.131350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131350,0.000000,0.000000,0.250000,0,0);}
.m18_c00444{transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);}
.m8a_c00444{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.m158_c00444{transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);}
.m79_c00444{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.mb6_c00444{transform:matrix(0.136950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136950,0.000000,0.000000,0.250000,0,0);}
.mfe_c00444{transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);}
.m19_c00444{transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);}
.m151_c00444{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.m103_c00444{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m12c_c00444{transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);}
.m15c_c00444{transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);}
.ma7_c00444{transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);}
.m10f_c00444{transform:matrix(0.142400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142400,0.000000,0.000000,0.250000,0,0);}
.m36_c00444{transform:matrix(0.142800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142800,0.000000,0.000000,0.250000,0,0);}
.m7e_c00444{transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);}
.m108_c00444{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.m45_c00444{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.mbe_c00444{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);}
.mec_c00444{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m0_c00444{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c00444{transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);}
.m8b_c00444{transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);}
.me_c00444{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);}
.m12e_c00444{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);}
.me4_c00444{transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);}
.m41_c00444{transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);}
.m22_c00444{transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);}
.ma1_c00444{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.md_c00444{transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);}
.m126_c00444{transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);}
.m12a_c00444{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m164_c00444{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.ma6_c00444{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.md1_c00444{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.ma_c00444{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);}
.m7f_c00444{transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);}
.m114_c00444{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m3f_c00444{transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);}
.m14e_c00444{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma4_c00444{transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);}
.mf2_c00444{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.mb9_c00444{transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);}
.m1b_c00444{transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);}
.m131_c00444{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);}
.m5a_c00444{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);}
.m125_c00444{transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);}
.m63_c00444{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);}
.mfa_c00444{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.m15a_c00444{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.m13f_c00444{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);}
.m15f_c00444{transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);}
.m154_c00444{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m160_c00444{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);}
.m2d_c00444{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.m127_c00444{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);}
.m138_c00444{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.maf_c00444{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.mc1_c00444{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.md4_c00444{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.mc3_c00444{transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);}
.m159_c00444{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m148_c00444{transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);}
.mdd_c00444{transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);}
.m44_c00444{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.m111_c00444{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.mbc_c00444{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.mba_c00444{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.mac_c00444{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.m31_c00444{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.m4b_c00444{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m144_c00444{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.mbd_c00444{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m162_c00444{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);}
.m132_c00444{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.md0_c00444{transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);}
.mb1_c00444{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mad_c00444{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.mdc_c00444{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);}
.m11a_c00444{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);}
.m135_c00444{transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);}
.m3_c00444{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m122_c00444{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.mbf_c00444{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m7c_c00444{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);}
.m83_c00444{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.m142_c00444{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m141_c00444{transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);}
.m66_c00444{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.ma3_c00444{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.mfd_c00444{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.m68_c00444{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m152_c00444{transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);}
.m14d_c00444{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);}
.m102_c00444{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m13e_c00444{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.md7_c00444{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.me1_c00444{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.mc0_c00444{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.m130_c00444{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);}
.m137_c00444{transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);}
.m2f_c00444{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m133_c00444{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);}
.m94_c00444{transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);}
.m140_c00444{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);}
.m59_c00444{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);}
.m12f_c00444{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);}
.md9_c00444{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m112_c00444{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);}
.mc5_c00444{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);}
.m58_c00444{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.m84_c00444{transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);}
.m129_c00444{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m29_c00444{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);}
.mc9_c00444{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.m9e_c00444{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m71_c00444{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m89_c00444{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);}
.m11e_c00444{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m50_c00444{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);}
.m52_c00444{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m157_c00444{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.m51_c00444{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.m23_c00444{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);}
.mb_c00444{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);}
.m139_c00444{transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);}
.mdb_c00444{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);}
.m10c_c00444{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.me3_c00444{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);}
.m14b_c00444{transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);}
.m82_c00444{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.m118_c00444{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);}
.m11f_c00444{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);}
.m110_c00444{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);}
.m11c_c00444{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.m14c_c00444{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);}
.ma5_c00444{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m13c_c00444{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.m42_c00444{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.mb0_c00444{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);}
.me2_c00444{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);}
.mfc_c00444{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m15d_c00444{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.mc2_c00444{transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);}
.m74_c00444{transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);}
.m28_c00444{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);}
.m105_c00444{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m113_c00444{transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);}
.m11b_c00444{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m57_c00444{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);}
.m37_c00444{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.mde_c00444{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);}
.m3c_c00444{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.md2_c00444{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m116_c00444{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);}
.mf6_c00444{transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);}
.m4c_c00444{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.m120_c00444{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m98_c00444{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m24_c00444{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.m155_c00444{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.m163_c00444{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);}
.m15_c00444{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);}
.m38_c00444{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m30_c00444{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m14f_c00444{transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);}
.m65_c00444{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m73_c00444{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);}
.m136_c00444{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.m49_c00444{transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);}
.m9_c00444{transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);}
.m48_c00444{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.mcb_c00444{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.mb8_c00444{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m92_c00444{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);}
.mf3_c00444{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mc8_c00444{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);}
.md8_c00444{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m7d_c00444{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);}
.m20_c00444{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);}
.m109_c00444{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);}
.m121_c00444{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m153_c00444{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.m12d_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);}
.m17_c00444{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);}
.m100_c00444{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);}
.me0_c00444{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);}
.m97_c00444{transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);}
.m53_c00444{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);}
.m12b_c00444{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);}
.m128_c00444{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);}
.m5b_c00444{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.mf8_c00444{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);}
.m8_c00444{transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);}
.mca_c00444{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);}
.m4_c00444{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.mae_c00444{transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);}
.mc6_c00444{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);}
.m4f_c00444{transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243275,0.000000,0.000000,0.250000,0,0);}
.m161_c00444{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);}
.mcc_c00444{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.m10b_c00444{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m1c_c00444{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);}
.m54_c00444{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);}
.m9b_c00444{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4d_c00444{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);}
.m6_c00444{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);}
.m55_c00444{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);}
.mcf_c00444{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);}
.m8e_c00444{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9a_c00444{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m11_c00444{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma8_c00444{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);}
.ma9_c00444{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);}
.m5f_c00444{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_c00444{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00444{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);}
.m2b_c00444{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00444{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c00444{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);}
.m43_c00444{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m96_c00444{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);}
.md3_c00444{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);}
.m7b_c00444{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c00444{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3d_c00444{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);}
.ma2_c00444{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00444{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);}
.md6_c00444{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mcd_c00444{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00444{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m56_c00444{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc7_c00444{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m134_c00444{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m62_c00444{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);}
.mb2_c00444{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.med_c00444{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);}
.m10e_c00444{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);}
.me6_c00444{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);}
.mce_c00444{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m167_c00444{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mee_c00444{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);}
.mf4_c00444{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mab_c00444{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m5d_c00444{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m35_c00444{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m88_c00444{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m15e_c00444{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mea_c00444{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5c_c00444{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m64_c00444{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);}
.m165_c00444{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);}
.m40_c00444{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mda_c00444{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);}
.meb_c00444{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14_c00444{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.me5_c00444{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m32_c00444{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m6e_c00444{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00444{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mf5_c00444{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m70_c00444{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m47_c00444{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mf7_c00444{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m72_c00444{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m61_c00444{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00444{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);}
.m39_c00444{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m4e_c00444{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.me9_c00444{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mef_c00444{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.md5_c00444{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00444{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.me8_c00444{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m86_c00444{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m14a_c00444{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00444{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m2_c00444{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1_c00444{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00444{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m60_c00444{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);}
.me7_c00444{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m166_c00444{transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);}
.m8d_c00444{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00444{transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);}
.m5e_c00444{transform:matrix(1.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.565000,0.000000,0.000000,0.250000,0,0);}
.m13b_c00444{transform:matrix(1.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.692500,0.000000,0.000000,0.250000,0,0);}
.m6c_c00444{transform:matrix(3.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.952500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00444{transform:matrix(6.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.332500,0.000000,0.000000,0.250000,0,0);}
.v2_c00444{vertical-align:-13.860000px;}
.v0_c00444{vertical-align:0.000000px;}
.v1_c00444{vertical-align:3.480000px;}
.v3_c00444{vertical-align:27.600000px;}
.ls2_c00444{letter-spacing:0.000000px;}
.ls1_c00444{letter-spacing:21.900000px;}
.ls0_c00444{letter-spacing:82.151200px;}
.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:-26.852400px;}
.ws2_c00444{word-spacing:0.000000px;}
.ws1_c00444{word-spacing:480.426000px;}
.fc0_c00444{color:transparent;}
.fs1_c00444{font-size:3.456000px;}
.fs0_c00444{font-size:6.000000px;}
.fs15_c00444{font-size:6.900000px;}
.fs12_c00444{font-size:10.380000px;}
.fs2_c00444{font-size:13.800000px;}
.fsd_c00444{font-size:17.280000px;}
.fs25_c00444{font-size:20.760000px;}
.fs13_c00444{font-size:24.180000px;}
.fs1b_c00444{font-size:27.660000px;}
.fs27_c00444{font-size:31.080000px;}
.fs23_c00444{font-size:34.560000px;}
.fs20_c00444{font-size:38.040000px;}
.fse_c00444{font-size:41.460000px;}
.fs1f_c00444{font-size:44.940000px;}
.fs22_c00444{font-size:48.360000px;}
.fs1a_c00444{font-size:51.840000px;}
.fs1d_c00444{font-size:55.320000px;}
.fs24_c00444{font-size:58.740000px;}
.fs18_c00444{font-size:62.220000px;}
.fs16_c00444{font-size:65.640000px;}
.fs9_c00444{font-size:69.120000px;}
.fs21_c00444{font-size:72.600000px;}
.fs6_c00444{font-size:76.020000px;}
.fs19_c00444{font-size:79.500000px;}
.fs7_c00444{font-size:82.920000px;}
.fs4_c00444{font-size:86.400000px;}
.fs10_c00444{font-size:89.880000px;}
.fs14_c00444{font-size:93.300000px;}
.fsf_c00444{font-size:96.780000px;}
.fs3_c00444{font-size:100.200000px;}
.fs8_c00444{font-size:103.680000px;}
.fs11_c00444{font-size:107.160000px;}
.fsb_c00444{font-size:110.580000px;}
.fs1c_c00444{font-size:114.060000px;}
.fsa_c00444{font-size:117.480000px;}
.fs5_c00444{font-size:120.960000px;}
.fs17_c00444{font-size:124.440000px;}
.fsc_c00444{font-size:127.860000px;}
.fs26_c00444{font-size:131.340000px;}
.fs1e_c00444{font-size:141.720000px;}
.y0_c00444{bottom:0.000000px;}
.y15d_c00444{bottom:194.400000px;}
.y15c_c00444{bottom:198.720000px;}
.y157_c00444{bottom:201.315000px;}
.y155_c00444{bottom:203.040000px;}
.y15b_c00444{bottom:203.910000px;}
.y159_c00444{bottom:204.765000px;}
.y15a_c00444{bottom:206.490000px;}
.y156_c00444{bottom:209.085000px;}
.y158_c00444{bottom:209.955000px;}
.y14f_c00444{bottom:226.365000px;}
.y150_c00444{bottom:227.235000px;}
.y14e_c00444{bottom:228.090000px;}
.y151_c00444{bottom:228.960000px;}
.y152_c00444{bottom:229.830000px;}
.y153_c00444{bottom:232.410000px;}
.y154_c00444{bottom:236.730000px;}
.y149_c00444{bottom:252.285000px;}
.y14a_c00444{bottom:253.155000px;}
.y14c_c00444{bottom:254.010000px;}
.y146_c00444{bottom:256.605000px;}
.y148_c00444{bottom:258.330000px;}
.y147_c00444{bottom:259.200000px;}
.y14b_c00444{bottom:260.925000px;}
.y14d_c00444{bottom:262.650000px;}
.y140_c00444{bottom:277.350000px;}
.y142_c00444{bottom:278.205000px;}
.y144_c00444{bottom:279.075000px;}
.y143_c00444{bottom:281.670000px;}
.y145_c00444{bottom:283.395000px;}
.y141_c00444{bottom:285.120000px;}
.y13a_c00444{bottom:297.210000px;}
.y13c_c00444{bottom:298.080000px;}
.y13b_c00444{bottom:298.950000px;}
.y13d_c00444{bottom:299.805000px;}
.y139_c00444{bottom:301.530000px;}
.y13e_c00444{bottom:302.400000px;}
.y13f_c00444{bottom:310.170000px;}
.y132_c00444{bottom:327.450000px;}
.y134_c00444{bottom:330.045000px;}
.y137_c00444{bottom:330.915000px;}
.y135_c00444{bottom:332.640000px;}
.y136_c00444{bottom:334.365000px;}
.y133_c00444{bottom:335.235000px;}
.y130_c00444{bottom:338.685000px;}
.y138_c00444{bottom:343.005000px;}
.y131_c00444{bottom:348.195000px;}
.y12c_c00444{bottom:353.370000px;}
.y12d_c00444{bottom:355.110000px;}
.y12f_c00444{bottom:355.965000px;}
.y12e_c00444{bottom:356.835000px;}
.y125_c00444{bottom:378.435000px;}
.y127_c00444{bottom:379.290000px;}
.y126_c00444{bottom:380.160000px;}
.y12a_c00444{bottom:381.885000px;}
.y128_c00444{bottom:386.205000px;}
.y129_c00444{bottom:387.930000px;}
.y12b_c00444{bottom:389.670000px;}
.y122_c00444{bottom:405.210000px;}
.y120_c00444{bottom:406.080000px;}
.y124_c00444{bottom:406.950000px;}
.y11e_c00444{bottom:407.805000px;}
.y121_c00444{bottom:409.530000px;}
.y11f_c00444{bottom:412.995000px;}
.y123_c00444{bottom:413.850000px;}
.y11a_c00444{bottom:429.405000px;}
.y119_c00444{bottom:430.275000px;}
.y11b_c00444{bottom:431.130000px;}
.y11c_c00444{bottom:433.725000px;}
.y11d_c00444{bottom:435.450000px;}
.y115_c00444{bottom:457.920000px;}
.y117_c00444{bottom:459.645000px;}
.y116_c00444{bottom:460.515000px;}
.y118_c00444{bottom:461.370000px;}
.y10a_c00444{bottom:477.795000px;}
.y10e_c00444{bottom:481.245000px;}
.y111_c00444{bottom:482.115000px;}
.y10f_c00444{bottom:482.970000px;}
.y10d_c00444{bottom:483.840000px;}
.y110_c00444{bottom:486.435000px;}
.y113_c00444{bottom:487.290000px;}
.y112_c00444{bottom:489.030000px;}
.y114_c00444{bottom:489.885000px;}
.y10b_c00444{bottom:492.480000px;}
.y10c_c00444{bottom:504.570000px;}
.y103_c00444{bottom:508.035000px;}
.y104_c00444{bottom:508.890000px;}
.y106_c00444{bottom:509.760000px;}
.y102_c00444{bottom:510.630000px;}
.y108_c00444{bottom:511.485000px;}
.y107_c00444{bottom:512.355000px;}
.y105_c00444{bottom:514.080000px;}
.y101_c00444{bottom:516.675000px;}
.y109_c00444{bottom:517.530000px;}
.yfc_c00444{bottom:529.635000px;}
.yfe_c00444{bottom:530.490000px;}
.yfa_c00444{bottom:531.360000px;}
.yfb_c00444{bottom:532.230000px;}
.yff_c00444{bottom:537.405000px;}
.yfd_c00444{bottom:539.130000px;}
.yf9_c00444{bottom:540.000000px;}
.y100_c00444{bottom:546.045000px;}
.yf7_c00444{bottom:558.150000px;}
.yf3_c00444{bottom:559.005000px;}
.yf6_c00444{bottom:560.730000px;}
.yf4_c00444{bottom:562.470000px;}
.yf5_c00444{bottom:577.155000px;}
.yf8_c00444{bottom:581.475000px;}
.yed_c00444{bottom:582.330000px;}
.yeb_c00444{bottom:584.070000px;}
.ye9_c00444{bottom:585.795000px;}
.yef_c00444{bottom:586.650000px;}
.yee_c00444{bottom:587.520000px;}
.yf2_c00444{bottom:589.245000px;}
.yf1_c00444{bottom:590.115000px;}
.yf0_c00444{bottom:590.970000px;}
.yec_c00444{bottom:596.160000px;}
.yea_c00444{bottom:597.885000px;}
.ye2_c00444{bottom:604.800000px;}
.ye8_c00444{bottom:605.670000px;}
.ye5_c00444{bottom:606.525000px;}
.ye7_c00444{bottom:608.250000px;}
.ye6_c00444{bottom:609.120000px;}
.ye3_c00444{bottom:612.570000px;}
.yda_c00444{bottom:614.310000px;}
.ydc_c00444{bottom:615.165000px;}
.yde_c00444{bottom:616.035000px;}
.ye0_c00444{bottom:616.890000px;}
.ye4_c00444{bottom:617.760000px;}
.ydd_c00444{bottom:622.080000px;}
.ydb_c00444{bottom:622.950000px;}
.yd5_c00444{bottom:623.805000px;}
.yd6_c00444{bottom:624.675000px;}
.ye1_c00444{bottom:625.530000px;}
.yd9_c00444{bottom:626.400000px;}
.yd8_c00444{bottom:627.270000px;}
.yd7_c00444{bottom:628.995000px;}
.yce_c00444{bottom:629.850000px;}
.ydf_c00444{bottom:630.720000px;}
.yd1_c00444{bottom:632.445000px;}
.ycd_c00444{bottom:633.315000px;}
.yd4_c00444{bottom:634.170000px;}
.yd0_c00444{bottom:635.910000px;}
.yd2_c00444{bottom:636.765000px;}
.yd3_c00444{bottom:640.230000px;}
.ycf_c00444{bottom:648.870000px;}
.ycb_c00444{bottom:658.365000px;}
.ycc_c00444{bottom:659.235000px;}
.yca_c00444{bottom:660.090000px;}
.yc8_c00444{bottom:660.960000px;}
.yc9_c00444{bottom:661.830000px;}
.yc7_c00444{bottom:664.410000px;}
.y16a_c00444{bottom:673.920000px;}
.yc6_c00444{bottom:682.560000px;}
.yc3_c00444{bottom:683.430000px;}
.yc4_c00444{bottom:684.285000px;}
.yc5_c00444{bottom:688.605000px;}
.yc2_c00444{bottom:690.330000px;}
.yc0_c00444{bottom:695.520000px;}
.yc1_c00444{bottom:700.710000px;}
.ybb_c00444{bottom:705.885000px;}
.ybc_c00444{bottom:706.755000px;}
.ybf_c00444{bottom:707.610000px;}
.ybe_c00444{bottom:708.480000px;}
.yba_c00444{bottom:711.075000px;}
.ybd_c00444{bottom:712.800000px;}
.yb9_c00444{bottom:720.570000px;}
.yb4_c00444{bottom:731.805000px;}
.yb5_c00444{bottom:733.530000px;}
.yb7_c00444{bottom:734.400000px;}
.yb3_c00444{bottom:735.270000px;}
.yb6_c00444{bottom:736.125000px;}
.yb2_c00444{bottom:737.850000px;}
.yb8_c00444{bottom:740.445000px;}
.yaa_c00444{bottom:755.130000px;}
.yae_c00444{bottom:756.000000px;}
.yab_c00444{bottom:756.870000px;}
.yad_c00444{bottom:758.595000px;}
.yb1_c00444{bottom:761.190000px;}
.yaf_c00444{bottom:762.045000px;}
.yac_c00444{bottom:763.770000px;}
.yb0_c00444{bottom:765.510000px;}
.ya8_c00444{bottom:781.920000px;}
.ya5_c00444{bottom:783.645000px;}
.ya7_c00444{bottom:786.240000px;}
.ya9_c00444{bottom:787.965000px;}
.ya6_c00444{bottom:788.835000px;}
.ya2_c00444{bottom:806.970000px;}
.ya0_c00444{bottom:807.840000px;}
.ya1_c00444{bottom:809.565000px;}
.ya4_c00444{bottom:810.435000px;}
.ya3_c00444{bottom:813.030000px;}
.y9f_c00444{bottom:819.075000px;}
.y99_c00444{bottom:831.165000px;}
.y9d_c00444{bottom:832.035000px;}
.y9e_c00444{bottom:832.890000px;}
.y98_c00444{bottom:836.355000px;}
.y9b_c00444{bottom:837.210000px;}
.y9c_c00444{bottom:838.080000px;}
.y97_c00444{bottom:840.675000px;}
.y96_c00444{bottom:843.270000px;}
.y9a_c00444{bottom:846.720000px;}
.y95_c00444{bottom:853.635000px;}
.y8f_c00444{bottom:854.490000px;}
.y90_c00444{bottom:856.230000px;}
.y92_c00444{bottom:857.085000px;}
.y8e_c00444{bottom:858.810000px;}
.y91_c00444{bottom:862.275000px;}
.y93_c00444{bottom:864.000000px;}
.y94_c00444{bottom:865.725000px;}
.y8d_c00444{bottom:876.960000px;}
.y86_c00444{bottom:878.685000px;}
.y8a_c00444{bottom:879.555000px;}
.y87_c00444{bottom:880.410000px;}
.y8c_c00444{bottom:883.005000px;}
.y89_c00444{bottom:883.875000px;}
.y8b_c00444{bottom:885.600000px;}
.y88_c00444{bottom:886.470000px;}
.y81_c00444{bottom:906.330000px;}
.y7f_c00444{bottom:907.200000px;}
.y82_c00444{bottom:908.070000px;}
.y80_c00444{bottom:908.925000px;}
.y85_c00444{bottom:909.795000px;}
.y7e_c00444{bottom:912.390000px;}
.y83_c00444{bottom:914.115000px;}
.y84_c00444{bottom:915.840000px;}
.y78_c00444{bottom:931.395000px;}
.y79_c00444{bottom:932.250000px;}
.y7c_c00444{bottom:933.120000px;}
.y7b_c00444{bottom:933.990000px;}
.y7a_c00444{bottom:938.310000px;}
.y7d_c00444{bottom:945.210000px;}
.y77_c00444{bottom:952.125000px;}
.y75_c00444{bottom:956.445000px;}
.y72_c00444{bottom:958.170000px;}
.y73_c00444{bottom:959.040000px;}
.y76_c00444{bottom:960.765000px;}
.y74_c00444{bottom:966.810000px;}
.y71_c00444{bottom:979.770000px;}
.y70_c00444{bottom:980.640000px;}
.y6f_c00444{bottom:982.365000px;}
.y6d_c00444{bottom:984.960000px;}
.y6e_c00444{bottom:986.685000px;}
.y6c_c00444{bottom:987.555000px;}
.y6b_c00444{bottom:988.410000px;}
.y67_c00444{bottom:999.645000px;}
.y68_c00444{bottom:1001.370000px;}
.y69_c00444{bottom:1003.965000px;}
.y66_c00444{bottom:1007.430000px;}
.y65_c00444{bottom:1008.285000px;}
.y6a_c00444{bottom:1010.010000px;}
.y5b_c00444{bottom:1026.435000px;}
.y63_c00444{bottom:1029.030000px;}
.y64_c00444{bottom:1029.885000px;}
.y5e_c00444{bottom:1030.755000px;}
.y59_c00444{bottom:1031.610000px;}
.y61_c00444{bottom:1032.480000px;}
.y5f_c00444{bottom:1033.350000px;}
.y60_c00444{bottom:1034.205000px;}
.y62_c00444{bottom:1035.075000px;}
.y5d_c00444{bottom:1035.930000px;}
.y58_c00444{bottom:1037.670000px;}
.y5a_c00444{bottom:1038.525000px;}
.y5c_c00444{bottom:1040.250000px;}
.y57_c00444{bottom:1055.805000px;}
.y56_c00444{bottom:1057.530000px;}
.y55_c00444{bottom:1058.400000px;}
.y52_c00444{bottom:1059.270000px;}
.y54_c00444{bottom:1060.125000px;}
.y51_c00444{bottom:1060.995000px;}
.y53_c00444{bottom:1061.850000px;}
.y4d_c00444{bottom:1062.720000px;}
.y4c_c00444{bottom:1063.590000px;}
.y4e_c00444{bottom:1064.445000px;}
.y4a_c00444{bottom:1065.315000px;}
.y4f_c00444{bottom:1066.170000px;}
.y50_c00444{bottom:1067.040000px;}
.y4b_c00444{bottom:1073.085000px;}
.y44_c00444{bottom:1082.595000px;}
.y43_c00444{bottom:1084.320000px;}
.y45_c00444{bottom:1085.190000px;}
.y48_c00444{bottom:1087.770000px;}
.y169_c00444{bottom:1089.510000px;}
.y46_c00444{bottom:1091.235000px;}
.y49_c00444{bottom:1092.090000px;}
.y47_c00444{bottom:1092.960000px;}
.y168_c00444{bottom:1099.005000px;}
.y42_c00444{bottom:1103.325000px;}
.y3d_c00444{bottom:1105.920000px;}
.y3e_c00444{bottom:1108.515000px;}
.y3f_c00444{bottom:1109.370000px;}
.y41_c00444{bottom:1112.835000px;}
.y3b_c00444{bottom:1113.690000px;}
.y3c_c00444{bottom:1114.560000px;}
.y40_c00444{bottom:1117.155000px;}
.y36_c00444{bottom:1126.650000px;}
.y38_c00444{bottom:1127.520000px;}
.y35_c00444{bottom:1128.390000px;}
.y39_c00444{bottom:1130.115000px;}
.y34_c00444{bottom:1137.030000px;}
.y33_c00444{bottom:1139.610000px;}
.y37_c00444{bottom:1140.480000px;}
.y3a_c00444{bottom:1143.075000px;}
.y2e_c00444{bottom:1157.760000px;}
.y2f_c00444{bottom:1159.485000px;}
.y32_c00444{bottom:1160.355000px;}
.y31_c00444{bottom:1162.950000px;}
.y2c_c00444{bottom:1163.805000px;}
.y2d_c00444{bottom:1164.675000px;}
.y2b_c00444{bottom:1165.530000px;}
.y30_c00444{bottom:1167.270000px;}
.y23_c00444{bottom:1183.680000px;}
.y26_c00444{bottom:1184.550000px;}
.y27_c00444{bottom:1185.405000px;}
.y25_c00444{bottom:1187.130000px;}
.y29_c00444{bottom:1188.870000px;}
.y22_c00444{bottom:1189.725000px;}
.y24_c00444{bottom:1190.595000px;}
.y28_c00444{bottom:1192.320000px;}
.y2a_c00444{bottom:1204.410000px;}
.y20_c00444{bottom:1207.875000px;}
.y1e_c00444{bottom:1209.600000px;}
.y1f_c00444{bottom:1210.470000px;}
.y21_c00444{bottom:1228.605000px;}
.y1b_c00444{bottom:1232.070000px;}
.y1d_c00444{bottom:1232.925000px;}
.y1c_c00444{bottom:1233.795000px;}
.y1a_c00444{bottom:1235.520000px;}
.y19_c00444{bottom:1251.930000px;}
.y17_c00444{bottom:1254.525000px;}
.y14_c00444{bottom:1256.250000px;}
.y15_c00444{bottom:1257.120000px;}
.y16_c00444{bottom:1257.990000px;}
.y166_c00444{bottom:1258.845000px;}
.y167_c00444{bottom:1259.715000px;}
.y18_c00444{bottom:1261.440000px;}
.y165_c00444{bottom:1263.165000px;}
.y10_c00444{bottom:1283.040000px;}
.y12_c00444{bottom:1283.910000px;}
.y13_c00444{bottom:1284.765000px;}
.y11_c00444{bottom:1285.635000px;}
.yf_c00444{bottom:1289.085000px;}
.yb_c00444{bottom:1302.045000px;}
.yc_c00444{bottom:1302.915000px;}
.ye_c00444{bottom:1304.640000px;}
.yd_c00444{bottom:1313.280000px;}
.y6_c00444{bottom:1333.155000px;}
.y4_c00444{bottom:1335.750000px;}
.y5_c00444{bottom:1336.605000px;}
.y9_c00444{bottom:1339.200000px;}
.y7_c00444{bottom:1340.070000px;}
.y8_c00444{bottom:1340.925000px;}
.ya_c00444{bottom:1343.520000px;}
.y3_c00444{bottom:1365.120000px;}
.y1_c00444{bottom:1367.715000px;}
.y2_c00444{bottom:1368.570000px;}
.y163_c00444{bottom:1391.040000px;}
.y164_c00444{bottom:1393.635000px;}
.y161_c00444{bottom:1414.365000px;}
.y162_c00444{bottom:1415.235000px;}
.y160_c00444{bottom:1421.280000px;}
.y15f_c00444{bottom:1426.470000px;}
.y15e_c00444{bottom:1428.195000px;}
.h3_c00444{height:3.110063px;}
.h2_c00444{height:5.399414px;}
.h1c_c00444{height:6.209326px;}
.h17_c00444{height:6.590063px;}
.h14_c00444{height:9.340986px;}
.h4_c00444{height:12.418652px;}
.hf_c00444{height:15.550313px;}
.h28_c00444{height:18.681973px;}
.h15_c00444{height:21.759639px;}
.h1e_c00444{height:24.891299px;}
.h2a_c00444{height:27.968965px;}
.h26_c00444{height:31.100625px;}
.h23_c00444{height:34.232285px;}
.h10_c00444{height:37.309951px;}
.h22_c00444{height:40.441611px;}
.h25_c00444{height:43.519277px;}
.h1d_c00444{height:46.650937px;}
.h20_c00444{height:49.782598px;}
.h27_c00444{height:52.860264px;}
.h1a_c00444{height:55.991924px;}
.h18_c00444{height:59.069590px;}
.hb_c00444{height:62.201250px;}
.h24_c00444{height:65.332910px;}
.h8_c00444{height:68.410576px;}
.h1b_c00444{height:71.542236px;}
.h9_c00444{height:74.619902px;}
.h6_c00444{height:77.751563px;}
.h12_c00444{height:80.883223px;}
.h16_c00444{height:83.960889px;}
.h11_c00444{height:87.092549px;}
.h2b_c00444{height:89.801250px;}
.h5_c00444{height:90.170215px;}
.ha_c00444{height:93.301875px;}
.h13_c00444{height:96.433535px;}
.hd_c00444{height:99.511201px;}
.h1f_c00444{height:102.642861px;}
.hc_c00444{height:105.720527px;}
.h7_c00444{height:108.852188px;}
.h19_c00444{height:111.983848px;}
.he_c00444{height:115.061514px;}
.h29_c00444{height:118.193174px;}
.h21_c00444{height:127.534160px;}
.h0_c00444{height:1515.450000px;}
.h1_c00444{height:1515.750000px;}
.w0_c00444{width:1079.130000px;}
.w1_c00444{width:1079.250000px;}
.x0_c00444{left:0.000000px;}
.xcb_c00444{left:77.760000px;}
.xb0_c00444{left:87.270000px;}
.xb5_c00444{left:88.995000px;}
.xb6_c00444{left:110.595000px;}
.xcc_c00444{left:113.190000px;}
.xb1_c00444{left:115.770000px;}
.xc4_c00444{left:121.830150px;}
.xc5_c00444{left:133.050000px;}
.xb7_c00444{left:134.790000px;}
.x90_c00444{left:142.560000px;}
.x78_c00444{left:146.880000px;}
.x7f_c00444{left:148.605000px;}
.xd9_c00444{left:150.330000px;}
.x47_c00444{left:158.970000px;}
.x79_c00444{left:160.710000px;}
.x65_c00444{left:168.480000px;}
.x96_c00444{left:173.670000px;}
.xc6_c00444{left:175.395000px;}
.x87_c00444{left:177.120000px;}
.x19_c00444{left:179.715000px;}
.x53_c00444{left:181.440000px;}
.x80_c00444{left:186.629175px;}
.x97_c00444{left:188.355000px;}
.xad_c00444{left:190.080000px;}
.x1a_c00444{left:192.675000px;}
.xa0_c00444{left:194.400000px;}
.x7a_c00444{left:196.125000px;}
.xae_c00444{left:197.849952px;}
.x2e_c00444{left:201.315000px;}
.x6e_c00444{left:203.040000px;}
.x88_c00444{left:204.765000px;}
.x40_c00444{left:209.085000px;}
.x72_c00444{left:212.550000px;}
.x48_c00444{left:214.275000px;}
.xe_c00444{left:216.000000px;}
.x4_c00444{left:217.725000px;}
.x41_c00444{left:219.450000px;}
.x5f_c00444{left:221.190000px;}
.x7b_c00444{left:222.915000px;}
.xb8_c00444{left:225.510000px;}
.xf1_c00444{left:227.235000px;}
.xc7_c00444{left:235.875000px;}
.xa2_c00444{left:242.790000px;}
.x15_c00444{left:245.370000px;}
.x81_c00444{left:248.835000px;}
.xf7_c00444{left:254.010000px;}
.xb9_c00444{left:255.750000px;}
.x1f_c00444{left:259.200000px;}
.x54_c00444{left:260.925408px;}
.x2f_c00444{left:263.520000px;}
.x34_c00444{left:265.245000px;}
.x98_c00444{left:267.840000px;}
.x73_c00444{left:269.565000px;}
.x82_c00444{left:272.160000px;}
.x5_c00444{left:273.885000px;}
.xee_c00444{left:276.480000px;}
.x35_c00444{left:279.075000px;}
.x89_c00444{left:280.800000px;}
.x26_c00444{left:283.395000px;}
.x60_c00444{left:285.990000px;}
.xe7_c00444{left:288.570000px;}
.xf_c00444{left:292.035000px;}
.xd0_c00444{left:294.630000px;}
.x3b_c00444{left:296.355000px;}
.x20_c00444{left:302.400000px;}
.xe3_c00444{left:304.125000px;}
.x36_c00444{left:307.590000px;}
.x55_c00444{left:309.315456px;}
.xef_c00444{left:312.765000px;}
.x42_c00444{left:314.490000px;}
.x49_c00444{left:319.680000px;}
.x16_c00444{left:322.275000px;}
.xb2_c00444{left:325.725000px;}
.xdc_c00444{left:328.320000px;}
.x91_c00444{left:330.045000px;}
.xa4_c00444{left:334.365000px;}
.x6_c00444{left:337.830000px;}
.x74_c00444{left:339.555000px;}
.x56_c00444{left:342.150000px;}
.x8d_c00444{left:345.600000px;}
.x92_c00444{left:349.050000px;}
.x30_c00444{left:351.645000px;}
.x4a_c00444{left:357.690000px;}
.x83_c00444{left:360.285000px;}
.x57_c00444{left:362.880000px;}
.xda_c00444{left:368.070000px;}
.xba_c00444{left:369.795000px;}
.xdd_c00444{left:371.520000px;}
.xa5_c00444{left:373.245000px;}
.x27_c00444{left:376.710000px;}
.x58_c00444{left:380.160000px;}
.x25_c00444{left:381.885000px;}
.x4b_c00444{left:384.480000px;}
.xd6_c00444{left:386.205000px;}
.xe4_c00444{left:389.670000px;}
.xe1_c00444{left:393.120000px;}
.x61_c00444{left:395.715000px;}
.x7_c00444{left:399.165000px;}
.xb3_c00444{left:400.890000px;}
.xa7_c00444{left:406.950000px;}
.xd7_c00444{left:408.675000px;}
.x43_c00444{left:412.995000px;}
.x17_c00444{left:416.445000px;}
.x10_c00444{left:418.170000px;}
.xaf_c00444{left:419.910000px;}
.x4c_c00444{left:423.360000px;}
.x59_c00444{left:427.680000px;}
.xf8_c00444{left:431.130000px;}
.x7c_c00444{left:434.595000px;}
.x62_c00444{left:436.320000px;}
.x99_c00444{left:438.915000px;}
.x8e_c00444{left:440.640000px;}
.x9a_c00444{left:443.235000px;}
.x8_c00444{left:445.830000px;}
.xed_c00444{left:447.555000px;}
.x21_c00444{left:452.730000px;}
.x6f_c00444{left:459.645000px;}
.x66_c00444{left:462.240000px;}
.x9_c00444{left:468.285000px;}
.x84_c00444{left:471.750000px;}
.x1b_c00444{left:473.475000px;}
.xbb_c00444{left:475.200000px;}
.x4d_c00444{left:476.925000px;}
.xe8_c00444{left:482.115000px;}
.x28_c00444{left:486.435000px;}
.xe2_c00444{left:488.160000px;}
.xd3_c00444{left:490.755000px;}
.x37_c00444{left:492.480000px;}
.x11_c00444{left:495.075000px;}
.x9b_c00444{left:497.670000px;}
.x4e_c00444{left:500.250000px;}
.xa1_c00444{left:501.990000px;}
.xd8_c00444{left:504.570000px;}
.x63_c00444{left:509.760000px;}
.x38_c00444{left:513.210000px;}
.x22_c00444{left:514.950000px;}
.x1c_c00444{left:519.270000px;}
.x75_c00444{left:520.995000px;}
.x8a_c00444{left:524.445000px;}
.x70_c00444{left:533.955000px;}
.xbc_c00444{left:535.680000px;}
.xe0_c00444{left:544.320000px;}
.xcd_c00444{left:546.915000px;}
.xa6_c00444{left:551.235000px;}
.x93_c00444{left:553.830000px;}
.x71_c00444{left:559.005000px;}
.xf3_c00444{left:562.470000px;}
.xa_c00444{left:565.050000px;}
.xce_c00444{left:578.010000px;}
.x7d_c00444{left:579.750000px;}
.xc8_c00444{left:581.475000px;}
.x9c_c00444{left:584.070000px;}
.xf2_c00444{left:587.520000px;}
.xe5_c00444{left:589.245000px;}
.xbd_c00444{left:590.970000px;}
.x1d_c00444{left:593.565000px;}
.x3c_c00444{left:597.030000px;}
.x23_c00444{left:600.480000px;}
.x94_c00444{left:603.075000px;}
.xeb_c00444{left:606.525000px;}
.xf5_c00444{left:608.250000px;}
.xbe_c00444{left:609.990000px;}
.x8f_c00444{left:612.570000px;}
.x8b_c00444{left:614.310000px;}
.x85_c00444{left:616.035000px;}
.xf0_c00444{left:620.355000px;}
.xc9_c00444{left:628.125000px;}
.x5a_c00444{left:632.445000px;}
.x31_c00444{left:634.170000px;}
.xb_c00444{left:636.765000px;}
.x64_c00444{left:640.230000px;}
.x29_c00444{left:643.680000px;}
.xa8_c00444{left:647.130000px;}
.xde_c00444{left:649.725000px;}
.xbf_c00444{left:654.045000px;}
.x76_c00444{left:656.640000px;}
.x4f_c00444{left:666.150000px;}
.x9d_c00444{left:668.730000px;}
.xa3_c00444{left:672.195000px;}
.xab_c00444{left:673.920000px;}
.x12_c00444{left:676.515000px;}
.x13_c00444{left:678.240000px;}
.xc0_c00444{left:681.690000px;}
.x32_c00444{left:687.750000px;}
.xf6_c00444{left:689.475000px;}
.xf4_c00444{left:692.925000px;}
.x95_c00444{left:695.520000px;}
.xca_c00444{left:698.115000px;}
.x9e_c00444{left:700.710000px;}
.x50_c00444{left:703.290000px;}
.x44_c00444{left:705.885000px;}
.x24_c00444{left:709.350000px;}
.x7e_c00444{left:711.930000px;}
.xc1_c00444{left:713.670000px;}
.x67_c00444{left:715.395000px;}
.x3d_c00444{left:717.990000px;}
.x5b_c00444{left:719.715000px;}
.x39_c00444{left:724.035000px;}
.x5c_c00444{left:727.485000px;}
.x68_c00444{left:729.210000px;}
.x2a_c00444{left:730.950000px;}
.xa9_c00444{left:735.270000px;}
.x9f_c00444{left:738.720000px;}
.x8c_c00444{left:746.490000px;}
.x69_c00444{left:748.230000px;}
.xc_c00444{left:749.955000px;}
.x45_c00444{left:751.680000px;}
.xe6_c00444{left:753.405000px;}
.x77_c00444{left:756.870000px;}
.xdb_c00444{left:759.450000px;}
.x18_c00444{left:761.190000px;}
.xc2_c00444{left:762.915000px;}
.x14_c00444{left:764.640000px;}
.xd4_c00444{left:767.235000px;}
.x2b_c00444{left:771.555000px;}
.x51_c00444{left:775.875000px;}
.xb4_c00444{left:777.600000px;}
.x6a_c00444{left:783.645000px;}
.x5d_c00444{left:785.370000px;}
.x3e_c00444{left:787.965000px;}
.x2c_c00444{left:793.155000px;}
.x6b_c00444{left:798.330000px;}
.x5e_c00444{left:800.070000px;}
.xec_c00444{left:801.795000px;}
.x33_c00444{left:805.245000px;}
.xac_c00444{left:807.840000px;}
.xdf_c00444{left:810.435000px;}
.xaa_c00444{left:813.885000px;}
.x3a_c00444{left:818.205000px;}
.x6c_c00444{left:819.930000px;}
.x46_c00444{left:823.395000px;}
.x3f_c00444{left:825.990000px;}
.xd_c00444{left:828.570000px;}
.x52_c00444{left:831.165000px;}
.x6d_c00444{left:833.760000px;}
.xc3_c00444{left:844.995000px;}
.x86_c00444{left:851.910000px;}
.x2d_c00444{left:866.595000px;}
.x1_c00444{left:870.915000px;}
.xd1_c00444{left:873.510000px;}
.xd5_c00444{left:876.960000px;}
.x2_c00444{left:880.410000px;}
.xe9_c00444{left:882.150000px;}
.x1e_c00444{left:887.325000px;}
.x3_c00444{left:895.110000px;}
.xea_c00444{left:897.690000px;}
.xcf_c00444{left:907.200000px;}
.xd2_c00444{left:915.840000px;}
.xfd_c00444{left:940.035000px;}
.xfe_c00444{left:965.085000px;}
.xf9_c00444{left:991.875000px;}
.xfb_c00444{left:994.470000px;}
.xfa_c00444{left:1002.240000px;}
.xfc_c00444{left:1013.475000px;}
.xff_c00444{left:1056.675000px;}
@media print{
.v2_c00444{vertical-align:-12.320000pt;}
.v0_c00444{vertical-align:0.000000pt;}
.v1_c00444{vertical-align:3.093333pt;}
.v3_c00444{vertical-align:24.533333pt;}
.ls2_c00444{letter-spacing:0.000000pt;}
.ls1_c00444{letter-spacing:19.466667pt;}
.ls0_c00444{letter-spacing:73.023289pt;}
.ws0_c00444{word-spacing:-23.868800pt;}
.ws2_c00444{word-spacing:0.000000pt;}
.ws1_c00444{word-spacing:427.045333pt;}
.fs1_c00444{font-size:3.072000pt;}
.fs0_c00444{font-size:5.333333pt;}
.fs15_c00444{font-size:6.133333pt;}
.fs12_c00444{font-size:9.226667pt;}
.fs2_c00444{font-size:12.266667pt;}
.fsd_c00444{font-size:15.360000pt;}
.fs25_c00444{font-size:18.453333pt;}
.fs13_c00444{font-size:21.493333pt;}
.fs1b_c00444{font-size:24.586667pt;}
.fs27_c00444{font-size:27.626667pt;}
.fs23_c00444{font-size:30.720000pt;}
.fs20_c00444{font-size:33.813333pt;}
.fse_c00444{font-size:36.853333pt;}
.fs1f_c00444{font-size:39.946667pt;}
.fs22_c00444{font-size:42.986667pt;}
.fs1a_c00444{font-size:46.080000pt;}
.fs1d_c00444{font-size:49.173333pt;}
.fs24_c00444{font-size:52.213333pt;}
.fs18_c00444{font-size:55.306667pt;}
.fs16_c00444{font-size:58.346667pt;}
.fs9_c00444{font-size:61.440000pt;}
.fs21_c00444{font-size:64.533333pt;}
.fs6_c00444{font-size:67.573333pt;}
.fs19_c00444{font-size:70.666667pt;}
.fs7_c00444{font-size:73.706667pt;}
.fs4_c00444{font-size:76.800000pt;}
.fs10_c00444{font-size:79.893333pt;}
.fs14_c00444{font-size:82.933333pt;}
.fsf_c00444{font-size:86.026667pt;}
.fs3_c00444{font-size:89.066667pt;}
.fs8_c00444{font-size:92.160000pt;}
.fs11_c00444{font-size:95.253333pt;}
.fsb_c00444{font-size:98.293333pt;}
.fs1c_c00444{font-size:101.386667pt;}
.fsa_c00444{font-size:104.426667pt;}
.fs5_c00444{font-size:107.520000pt;}
.fs17_c00444{font-size:110.613333pt;}
.fsc_c00444{font-size:113.653333pt;}
.fs26_c00444{font-size:116.746667pt;}
.fs1e_c00444{font-size:125.973333pt;}
.y0_c00444{bottom:0.000000pt;}
.y15d_c00444{bottom:172.800000pt;}
.y15c_c00444{bottom:176.640000pt;}
.y157_c00444{bottom:178.946667pt;}
.y155_c00444{bottom:180.480000pt;}
.y15b_c00444{bottom:181.253333pt;}
.y159_c00444{bottom:182.013333pt;}
.y15a_c00444{bottom:183.546667pt;}
.y156_c00444{bottom:185.853333pt;}
.y158_c00444{bottom:186.626667pt;}
.y14f_c00444{bottom:201.213333pt;}
.y150_c00444{bottom:201.986667pt;}
.y14e_c00444{bottom:202.746667pt;}
.y151_c00444{bottom:203.520000pt;}
.y152_c00444{bottom:204.293333pt;}
.y153_c00444{bottom:206.586667pt;}
.y154_c00444{bottom:210.426667pt;}
.y149_c00444{bottom:224.253333pt;}
.y14a_c00444{bottom:225.026667pt;}
.y14c_c00444{bottom:225.786667pt;}
.y146_c00444{bottom:228.093333pt;}
.y148_c00444{bottom:229.626667pt;}
.y147_c00444{bottom:230.400000pt;}
.y14b_c00444{bottom:231.933333pt;}
.y14d_c00444{bottom:233.466667pt;}
.y140_c00444{bottom:246.533333pt;}
.y142_c00444{bottom:247.293333pt;}
.y144_c00444{bottom:248.066667pt;}
.y143_c00444{bottom:250.373333pt;}
.y145_c00444{bottom:251.906667pt;}
.y141_c00444{bottom:253.440000pt;}
.y13a_c00444{bottom:264.186667pt;}
.y13c_c00444{bottom:264.960000pt;}
.y13b_c00444{bottom:265.733333pt;}
.y13d_c00444{bottom:266.493333pt;}
.y139_c00444{bottom:268.026667pt;}
.y13e_c00444{bottom:268.800000pt;}
.y13f_c00444{bottom:275.706667pt;}
.y132_c00444{bottom:291.066667pt;}
.y134_c00444{bottom:293.373333pt;}
.y137_c00444{bottom:294.146667pt;}
.y135_c00444{bottom:295.680000pt;}
.y136_c00444{bottom:297.213333pt;}
.y133_c00444{bottom:297.986667pt;}
.y130_c00444{bottom:301.053333pt;}
.y138_c00444{bottom:304.893333pt;}
.y131_c00444{bottom:309.506667pt;}
.y12c_c00444{bottom:314.106667pt;}
.y12d_c00444{bottom:315.653333pt;}
.y12f_c00444{bottom:316.413333pt;}
.y12e_c00444{bottom:317.186667pt;}
.y125_c00444{bottom:336.386667pt;}
.y127_c00444{bottom:337.146667pt;}
.y126_c00444{bottom:337.920000pt;}
.y12a_c00444{bottom:339.453333pt;}
.y128_c00444{bottom:343.293333pt;}
.y129_c00444{bottom:344.826667pt;}
.y12b_c00444{bottom:346.373333pt;}
.y122_c00444{bottom:360.186667pt;}
.y120_c00444{bottom:360.960000pt;}
.y124_c00444{bottom:361.733333pt;}
.y11e_c00444{bottom:362.493333pt;}
.y121_c00444{bottom:364.026667pt;}
.y11f_c00444{bottom:367.106667pt;}
.y123_c00444{bottom:367.866667pt;}
.y11a_c00444{bottom:381.693333pt;}
.y119_c00444{bottom:382.466667pt;}
.y11b_c00444{bottom:383.226667pt;}
.y11c_c00444{bottom:385.533333pt;}
.y11d_c00444{bottom:387.066667pt;}
.y115_c00444{bottom:407.040000pt;}
.y117_c00444{bottom:408.573333pt;}
.y116_c00444{bottom:409.346667pt;}
.y118_c00444{bottom:410.106667pt;}
.y10a_c00444{bottom:424.706667pt;}
.y10e_c00444{bottom:427.773333pt;}
.y111_c00444{bottom:428.546667pt;}
.y10f_c00444{bottom:429.306667pt;}
.y10d_c00444{bottom:430.080000pt;}
.y110_c00444{bottom:432.386667pt;}
.y113_c00444{bottom:433.146667pt;}
.y112_c00444{bottom:434.693333pt;}
.y114_c00444{bottom:435.453333pt;}
.y10b_c00444{bottom:437.760000pt;}
.y10c_c00444{bottom:448.506667pt;}
.y103_c00444{bottom:451.586667pt;}
.y104_c00444{bottom:452.346667pt;}
.y106_c00444{bottom:453.120000pt;}
.y102_c00444{bottom:453.893333pt;}
.y108_c00444{bottom:454.653333pt;}
.y107_c00444{bottom:455.426667pt;}
.y105_c00444{bottom:456.960000pt;}
.y101_c00444{bottom:459.266667pt;}
.y109_c00444{bottom:460.026667pt;}
.yfc_c00444{bottom:470.786667pt;}
.yfe_c00444{bottom:471.546667pt;}
.yfa_c00444{bottom:472.320000pt;}
.yfb_c00444{bottom:473.093333pt;}
.yff_c00444{bottom:477.693333pt;}
.yfd_c00444{bottom:479.226667pt;}
.yf9_c00444{bottom:480.000000pt;}
.y100_c00444{bottom:485.373333pt;}
.yf7_c00444{bottom:496.133333pt;}
.yf3_c00444{bottom:496.893333pt;}
.yf6_c00444{bottom:498.426667pt;}
.yf4_c00444{bottom:499.973333pt;}
.yf5_c00444{bottom:513.026667pt;}
.yf8_c00444{bottom:516.866667pt;}
.yed_c00444{bottom:517.626667pt;}
.yeb_c00444{bottom:519.173333pt;}
.ye9_c00444{bottom:520.706667pt;}
.yef_c00444{bottom:521.466667pt;}
.yee_c00444{bottom:522.240000pt;}
.yf2_c00444{bottom:523.773333pt;}
.yf1_c00444{bottom:524.546667pt;}
.yf0_c00444{bottom:525.306667pt;}
.yec_c00444{bottom:529.920000pt;}
.yea_c00444{bottom:531.453333pt;}
.ye2_c00444{bottom:537.600000pt;}
.ye8_c00444{bottom:538.373333pt;}
.ye5_c00444{bottom:539.133333pt;}
.ye7_c00444{bottom:540.666667pt;}
.ye6_c00444{bottom:541.440000pt;}
.ye3_c00444{bottom:544.506667pt;}
.yda_c00444{bottom:546.053333pt;}
.ydc_c00444{bottom:546.813333pt;}
.yde_c00444{bottom:547.586667pt;}
.ye0_c00444{bottom:548.346667pt;}
.ye4_c00444{bottom:549.120000pt;}
.ydd_c00444{bottom:552.960000pt;}
.ydb_c00444{bottom:553.733333pt;}
.yd5_c00444{bottom:554.493333pt;}
.yd6_c00444{bottom:555.266667pt;}
.ye1_c00444{bottom:556.026667pt;}
.yd9_c00444{bottom:556.800000pt;}
.yd8_c00444{bottom:557.573333pt;}
.yd7_c00444{bottom:559.106667pt;}
.yce_c00444{bottom:559.866667pt;}
.ydf_c00444{bottom:560.640000pt;}
.yd1_c00444{bottom:562.173333pt;}
.ycd_c00444{bottom:562.946667pt;}
.yd4_c00444{bottom:563.706667pt;}
.yd0_c00444{bottom:565.253333pt;}
.yd2_c00444{bottom:566.013333pt;}
.yd3_c00444{bottom:569.093333pt;}
.ycf_c00444{bottom:576.773333pt;}
.ycb_c00444{bottom:585.213333pt;}
.ycc_c00444{bottom:585.986667pt;}
.yca_c00444{bottom:586.746667pt;}
.yc8_c00444{bottom:587.520000pt;}
.yc9_c00444{bottom:588.293333pt;}
.yc7_c00444{bottom:590.586667pt;}
.y16a_c00444{bottom:599.040000pt;}
.yc6_c00444{bottom:606.720000pt;}
.yc3_c00444{bottom:607.493333pt;}
.yc4_c00444{bottom:608.253333pt;}
.yc5_c00444{bottom:612.093333pt;}
.yc2_c00444{bottom:613.626667pt;}
.yc0_c00444{bottom:618.240000pt;}
.yc1_c00444{bottom:622.853333pt;}
.ybb_c00444{bottom:627.453333pt;}
.ybc_c00444{bottom:628.226667pt;}
.ybf_c00444{bottom:628.986667pt;}
.ybe_c00444{bottom:629.760000pt;}
.yba_c00444{bottom:632.066667pt;}
.ybd_c00444{bottom:633.600000pt;}
.yb9_c00444{bottom:640.506667pt;}
.yb4_c00444{bottom:650.493333pt;}
.yb5_c00444{bottom:652.026667pt;}
.yb7_c00444{bottom:652.800000pt;}
.yb3_c00444{bottom:653.573333pt;}
.yb6_c00444{bottom:654.333333pt;}
.yb2_c00444{bottom:655.866667pt;}
.yb8_c00444{bottom:658.173333pt;}
.yaa_c00444{bottom:671.226667pt;}
.yae_c00444{bottom:672.000000pt;}
.yab_c00444{bottom:672.773333pt;}
.yad_c00444{bottom:674.306667pt;}
.yb1_c00444{bottom:676.613333pt;}
.yaf_c00444{bottom:677.373333pt;}
.yac_c00444{bottom:678.906667pt;}
.yb0_c00444{bottom:680.453333pt;}
.ya8_c00444{bottom:695.040000pt;}
.ya5_c00444{bottom:696.573333pt;}
.ya7_c00444{bottom:698.880000pt;}
.ya9_c00444{bottom:700.413333pt;}
.ya6_c00444{bottom:701.186667pt;}
.ya2_c00444{bottom:717.306667pt;}
.ya0_c00444{bottom:718.080000pt;}
.ya1_c00444{bottom:719.613333pt;}
.ya4_c00444{bottom:720.386667pt;}
.ya3_c00444{bottom:722.693333pt;}
.y9f_c00444{bottom:728.066667pt;}
.y99_c00444{bottom:738.813333pt;}
.y9d_c00444{bottom:739.586667pt;}
.y9e_c00444{bottom:740.346667pt;}
.y98_c00444{bottom:743.426667pt;}
.y9b_c00444{bottom:744.186667pt;}
.y9c_c00444{bottom:744.960000pt;}
.y97_c00444{bottom:747.266667pt;}
.y96_c00444{bottom:749.573333pt;}
.y9a_c00444{bottom:752.640000pt;}
.y95_c00444{bottom:758.786667pt;}
.y8f_c00444{bottom:759.546667pt;}
.y90_c00444{bottom:761.093333pt;}
.y92_c00444{bottom:761.853333pt;}
.y8e_c00444{bottom:763.386667pt;}
.y91_c00444{bottom:766.466667pt;}
.y93_c00444{bottom:768.000000pt;}
.y94_c00444{bottom:769.533333pt;}
.y8d_c00444{bottom:779.520000pt;}
.y86_c00444{bottom:781.053333pt;}
.y8a_c00444{bottom:781.826667pt;}
.y87_c00444{bottom:782.586667pt;}
.y8c_c00444{bottom:784.893333pt;}
.y89_c00444{bottom:785.666667pt;}
.y8b_c00444{bottom:787.200000pt;}
.y88_c00444{bottom:787.973333pt;}
.y81_c00444{bottom:805.626667pt;}
.y7f_c00444{bottom:806.400000pt;}
.y82_c00444{bottom:807.173333pt;}
.y80_c00444{bottom:807.933333pt;}
.y85_c00444{bottom:808.706667pt;}
.y7e_c00444{bottom:811.013333pt;}
.y83_c00444{bottom:812.546667pt;}
.y84_c00444{bottom:814.080000pt;}
.y78_c00444{bottom:827.906667pt;}
.y79_c00444{bottom:828.666667pt;}
.y7c_c00444{bottom:829.440000pt;}
.y7b_c00444{bottom:830.213333pt;}
.y7a_c00444{bottom:834.053333pt;}
.y7d_c00444{bottom:840.186667pt;}
.y77_c00444{bottom:846.333333pt;}
.y75_c00444{bottom:850.173333pt;}
.y72_c00444{bottom:851.706667pt;}
.y73_c00444{bottom:852.480000pt;}
.y76_c00444{bottom:854.013333pt;}
.y74_c00444{bottom:859.386667pt;}
.y71_c00444{bottom:870.906667pt;}
.y70_c00444{bottom:871.680000pt;}
.y6f_c00444{bottom:873.213333pt;}
.y6d_c00444{bottom:875.520000pt;}
.y6e_c00444{bottom:877.053333pt;}
.y6c_c00444{bottom:877.826667pt;}
.y6b_c00444{bottom:878.586667pt;}
.y67_c00444{bottom:888.573333pt;}
.y68_c00444{bottom:890.106667pt;}
.y69_c00444{bottom:892.413333pt;}
.y66_c00444{bottom:895.493333pt;}
.y65_c00444{bottom:896.253333pt;}
.y6a_c00444{bottom:897.786667pt;}
.y5b_c00444{bottom:912.386667pt;}
.y63_c00444{bottom:914.693333pt;}
.y64_c00444{bottom:915.453333pt;}
.y5e_c00444{bottom:916.226667pt;}
.y59_c00444{bottom:916.986667pt;}
.y61_c00444{bottom:917.760000pt;}
.y5f_c00444{bottom:918.533333pt;}
.y60_c00444{bottom:919.293333pt;}
.y62_c00444{bottom:920.066667pt;}
.y5d_c00444{bottom:920.826667pt;}
.y58_c00444{bottom:922.373333pt;}
.y5a_c00444{bottom:923.133333pt;}
.y5c_c00444{bottom:924.666667pt;}
.y57_c00444{bottom:938.493333pt;}
.y56_c00444{bottom:940.026667pt;}
.y55_c00444{bottom:940.800000pt;}
.y52_c00444{bottom:941.573333pt;}
.y54_c00444{bottom:942.333333pt;}
.y51_c00444{bottom:943.106667pt;}
.y53_c00444{bottom:943.866667pt;}
.y4d_c00444{bottom:944.640000pt;}
.y4c_c00444{bottom:945.413333pt;}
.y4e_c00444{bottom:946.173333pt;}
.y4a_c00444{bottom:946.946667pt;}
.y4f_c00444{bottom:947.706667pt;}
.y50_c00444{bottom:948.480000pt;}
.y4b_c00444{bottom:953.853333pt;}
.y44_c00444{bottom:962.306667pt;}
.y43_c00444{bottom:963.840000pt;}
.y45_c00444{bottom:964.613333pt;}
.y48_c00444{bottom:966.906667pt;}
.y169_c00444{bottom:968.453333pt;}
.y46_c00444{bottom:969.986667pt;}
.y49_c00444{bottom:970.746667pt;}
.y47_c00444{bottom:971.520000pt;}
.y168_c00444{bottom:976.893333pt;}
.y42_c00444{bottom:980.733333pt;}
.y3d_c00444{bottom:983.040000pt;}
.y3e_c00444{bottom:985.346667pt;}
.y3f_c00444{bottom:986.106667pt;}
.y41_c00444{bottom:989.186667pt;}
.y3b_c00444{bottom:989.946667pt;}
.y3c_c00444{bottom:990.720000pt;}
.y40_c00444{bottom:993.026667pt;}
.y36_c00444{bottom:1001.466667pt;}
.y38_c00444{bottom:1002.240000pt;}
.y35_c00444{bottom:1003.013333pt;}
.y39_c00444{bottom:1004.546667pt;}
.y34_c00444{bottom:1010.693333pt;}
.y33_c00444{bottom:1012.986667pt;}
.y37_c00444{bottom:1013.760000pt;}
.y3a_c00444{bottom:1016.066667pt;}
.y2e_c00444{bottom:1029.120000pt;}
.y2f_c00444{bottom:1030.653333pt;}
.y32_c00444{bottom:1031.426667pt;}
.y31_c00444{bottom:1033.733333pt;}
.y2c_c00444{bottom:1034.493333pt;}
.y2d_c00444{bottom:1035.266667pt;}
.y2b_c00444{bottom:1036.026667pt;}
.y30_c00444{bottom:1037.573333pt;}
.y23_c00444{bottom:1052.160000pt;}
.y26_c00444{bottom:1052.933333pt;}
.y27_c00444{bottom:1053.693333pt;}
.y25_c00444{bottom:1055.226667pt;}
.y29_c00444{bottom:1056.773333pt;}
.y22_c00444{bottom:1057.533333pt;}
.y24_c00444{bottom:1058.306667pt;}
.y28_c00444{bottom:1059.840000pt;}
.y2a_c00444{bottom:1070.586667pt;}
.y20_c00444{bottom:1073.666667pt;}
.y1e_c00444{bottom:1075.200000pt;}
.y1f_c00444{bottom:1075.973333pt;}
.y21_c00444{bottom:1092.093333pt;}
.y1b_c00444{bottom:1095.173333pt;}
.y1d_c00444{bottom:1095.933333pt;}
.y1c_c00444{bottom:1096.706667pt;}
.y1a_c00444{bottom:1098.240000pt;}
.y19_c00444{bottom:1112.826667pt;}
.y17_c00444{bottom:1115.133333pt;}
.y14_c00444{bottom:1116.666667pt;}
.y15_c00444{bottom:1117.440000pt;}
.y16_c00444{bottom:1118.213333pt;}
.y166_c00444{bottom:1118.973333pt;}
.y167_c00444{bottom:1119.746667pt;}
.y18_c00444{bottom:1121.280000pt;}
.y165_c00444{bottom:1122.813333pt;}
.y10_c00444{bottom:1140.480000pt;}
.y12_c00444{bottom:1141.253333pt;}
.y13_c00444{bottom:1142.013333pt;}
.y11_c00444{bottom:1142.786667pt;}
.yf_c00444{bottom:1145.853333pt;}
.yb_c00444{bottom:1157.373333pt;}
.yc_c00444{bottom:1158.146667pt;}
.ye_c00444{bottom:1159.680000pt;}
.yd_c00444{bottom:1167.360000pt;}
.y6_c00444{bottom:1185.026667pt;}
.y4_c00444{bottom:1187.333333pt;}
.y5_c00444{bottom:1188.093333pt;}
.y9_c00444{bottom:1190.400000pt;}
.y7_c00444{bottom:1191.173333pt;}
.y8_c00444{bottom:1191.933333pt;}
.ya_c00444{bottom:1194.240000pt;}
.y3_c00444{bottom:1213.440000pt;}
.y1_c00444{bottom:1215.746667pt;}
.y2_c00444{bottom:1216.506667pt;}
.y163_c00444{bottom:1236.480000pt;}
.y164_c00444{bottom:1238.786667pt;}
.y161_c00444{bottom:1257.213333pt;}
.y162_c00444{bottom:1257.986667pt;}
.y160_c00444{bottom:1263.360000pt;}
.y15f_c00444{bottom:1267.973333pt;}
.y15e_c00444{bottom:1269.506667pt;}
.h3_c00444{height:2.764500pt;}
.h2_c00444{height:4.799479pt;}
.h1c_c00444{height:5.519401pt;}
.h17_c00444{height:5.857833pt;}
.h14_c00444{height:8.303099pt;}
.h4_c00444{height:11.038802pt;}
.hf_c00444{height:13.822500pt;}
.h28_c00444{height:16.606198pt;}
.h15_c00444{height:19.341901pt;}
.h1e_c00444{height:22.125599pt;}
.h2a_c00444{height:24.861302pt;}
.h26_c00444{height:27.645000pt;}
.h23_c00444{height:30.428698pt;}
.h10_c00444{height:33.164401pt;}
.h22_c00444{height:35.948099pt;}
.h25_c00444{height:38.683802pt;}
.h1d_c00444{height:41.467500pt;}
.h20_c00444{height:44.251198pt;}
.h27_c00444{height:46.986901pt;}
.h1a_c00444{height:49.770599pt;}
.h18_c00444{height:52.506302pt;}
.hb_c00444{height:55.290000pt;}
.h24_c00444{height:58.073698pt;}
.h8_c00444{height:60.809401pt;}
.h1b_c00444{height:63.593099pt;}
.h9_c00444{height:66.328802pt;}
.h6_c00444{height:69.112500pt;}
.h12_c00444{height:71.896198pt;}
.h16_c00444{height:74.631901pt;}
.h11_c00444{height:77.415599pt;}
.h2b_c00444{height:79.823333pt;}
.h5_c00444{height:80.151302pt;}
.ha_c00444{height:82.935000pt;}
.h13_c00444{height:85.718698pt;}
.hd_c00444{height:88.454401pt;}
.h1f_c00444{height:91.238099pt;}
.hc_c00444{height:93.973802pt;}
.h7_c00444{height:96.757500pt;}
.h19_c00444{height:99.541198pt;}
.he_c00444{height:102.276901pt;}
.h29_c00444{height:105.060599pt;}
.h21_c00444{height:113.363698pt;}
.h0_c00444{height:1347.066667pt;}
.h1_c00444{height:1347.333333pt;}
.w0_c00444{width:959.226667pt;}
.w1_c00444{width:959.333333pt;}
.x0_c00444{left:0.000000pt;}
.xcb_c00444{left:69.120000pt;}
.xb0_c00444{left:77.573333pt;}
.xb5_c00444{left:79.106667pt;}
.xb6_c00444{left:98.306667pt;}
.xcc_c00444{left:100.613333pt;}
.xb1_c00444{left:102.906667pt;}
.xc4_c00444{left:108.293467pt;}
.xc5_c00444{left:118.266667pt;}
.xb7_c00444{left:119.813333pt;}
.x90_c00444{left:126.720000pt;}
.x78_c00444{left:130.560000pt;}
.x7f_c00444{left:132.093333pt;}
.xd9_c00444{left:133.626667pt;}
.x47_c00444{left:141.306667pt;}
.x79_c00444{left:142.853333pt;}
.x65_c00444{left:149.760000pt;}
.x96_c00444{left:154.373333pt;}
.xc6_c00444{left:155.906667pt;}
.x87_c00444{left:157.440000pt;}
.x19_c00444{left:159.746667pt;}
.x53_c00444{left:161.280000pt;}
.x80_c00444{left:165.892600pt;}
.x97_c00444{left:167.426667pt;}
.xad_c00444{left:168.960000pt;}
.x1a_c00444{left:171.266667pt;}
.xa0_c00444{left:172.800000pt;}
.x7a_c00444{left:174.333333pt;}
.xae_c00444{left:175.866624pt;}
.x2e_c00444{left:178.946667pt;}
.x6e_c00444{left:180.480000pt;}
.x88_c00444{left:182.013333pt;}
.x40_c00444{left:185.853333pt;}
.x72_c00444{left:188.933333pt;}
.x48_c00444{left:190.466667pt;}
.xe_c00444{left:192.000000pt;}
.x4_c00444{left:193.533333pt;}
.x41_c00444{left:195.066667pt;}
.x5f_c00444{left:196.613333pt;}
.x7b_c00444{left:198.146667pt;}
.xb8_c00444{left:200.453333pt;}
.xf1_c00444{left:201.986667pt;}
.xc7_c00444{left:209.666667pt;}
.xa2_c00444{left:215.813333pt;}
.x15_c00444{left:218.106667pt;}
.x81_c00444{left:221.186667pt;}
.xf7_c00444{left:225.786667pt;}
.xb9_c00444{left:227.333333pt;}
.x1f_c00444{left:230.400000pt;}
.x54_c00444{left:231.933696pt;}
.x2f_c00444{left:234.240000pt;}
.x34_c00444{left:235.773333pt;}
.x98_c00444{left:238.080000pt;}
.x73_c00444{left:239.613333pt;}
.x82_c00444{left:241.920000pt;}
.x5_c00444{left:243.453333pt;}
.xee_c00444{left:245.760000pt;}
.x35_c00444{left:248.066667pt;}
.x89_c00444{left:249.600000pt;}
.x26_c00444{left:251.906667pt;}
.x60_c00444{left:254.213333pt;}
.xe7_c00444{left:256.506667pt;}
.xf_c00444{left:259.586667pt;}
.xd0_c00444{left:261.893333pt;}
.x3b_c00444{left:263.426667pt;}
.x20_c00444{left:268.800000pt;}
.xe3_c00444{left:270.333333pt;}
.x36_c00444{left:273.413333pt;}
.x55_c00444{left:274.947072pt;}
.xef_c00444{left:278.013333pt;}
.x42_c00444{left:279.546667pt;}
.x49_c00444{left:284.160000pt;}
.x16_c00444{left:286.466667pt;}
.xb2_c00444{left:289.533333pt;}
.xdc_c00444{left:291.840000pt;}
.x91_c00444{left:293.373333pt;}
.xa4_c00444{left:297.213333pt;}
.x6_c00444{left:300.293333pt;}
.x74_c00444{left:301.826667pt;}
.x56_c00444{left:304.133333pt;}
.x8d_c00444{left:307.200000pt;}
.x92_c00444{left:310.266667pt;}
.x30_c00444{left:312.573333pt;}
.x4a_c00444{left:317.946667pt;}
.x83_c00444{left:320.253333pt;}
.x57_c00444{left:322.560000pt;}
.xda_c00444{left:327.173333pt;}
.xba_c00444{left:328.706667pt;}
.xdd_c00444{left:330.240000pt;}
.xa5_c00444{left:331.773333pt;}
.x27_c00444{left:334.853333pt;}
.x58_c00444{left:337.920000pt;}
.x25_c00444{left:339.453333pt;}
.x4b_c00444{left:341.760000pt;}
.xd6_c00444{left:343.293333pt;}
.xe4_c00444{left:346.373333pt;}
.xe1_c00444{left:349.440000pt;}
.x61_c00444{left:351.746667pt;}
.x7_c00444{left:354.813333pt;}
.xb3_c00444{left:356.346667pt;}
.xa7_c00444{left:361.733333pt;}
.xd7_c00444{left:363.266667pt;}
.x43_c00444{left:367.106667pt;}
.x17_c00444{left:370.173333pt;}
.x10_c00444{left:371.706667pt;}
.xaf_c00444{left:373.253333pt;}
.x4c_c00444{left:376.320000pt;}
.x59_c00444{left:380.160000pt;}
.xf8_c00444{left:383.226667pt;}
.x7c_c00444{left:386.306667pt;}
.x62_c00444{left:387.840000pt;}
.x99_c00444{left:390.146667pt;}
.x8e_c00444{left:391.680000pt;}
.x9a_c00444{left:393.986667pt;}
.x8_c00444{left:396.293333pt;}
.xed_c00444{left:397.826667pt;}
.x21_c00444{left:402.426667pt;}
.x6f_c00444{left:408.573333pt;}
.x66_c00444{left:410.880000pt;}
.x9_c00444{left:416.253333pt;}
.x84_c00444{left:419.333333pt;}
.x1b_c00444{left:420.866667pt;}
.xbb_c00444{left:422.400000pt;}
.x4d_c00444{left:423.933333pt;}
.xe8_c00444{left:428.546667pt;}
.x28_c00444{left:432.386667pt;}
.xe2_c00444{left:433.920000pt;}
.xd3_c00444{left:436.226667pt;}
.x37_c00444{left:437.760000pt;}
.x11_c00444{left:440.066667pt;}
.x9b_c00444{left:442.373333pt;}
.x4e_c00444{left:444.666667pt;}
.xa1_c00444{left:446.213333pt;}
.xd8_c00444{left:448.506667pt;}
.x63_c00444{left:453.120000pt;}
.x38_c00444{left:456.186667pt;}
.x22_c00444{left:457.733333pt;}
.x1c_c00444{left:461.573333pt;}
.x75_c00444{left:463.106667pt;}
.x8a_c00444{left:466.173333pt;}
.x70_c00444{left:474.626667pt;}
.xbc_c00444{left:476.160000pt;}
.xe0_c00444{left:483.840000pt;}
.xcd_c00444{left:486.146667pt;}
.xa6_c00444{left:489.986667pt;}
.x93_c00444{left:492.293333pt;}
.x71_c00444{left:496.893333pt;}
.xf3_c00444{left:499.973333pt;}
.xa_c00444{left:502.266667pt;}
.xce_c00444{left:513.786667pt;}
.x7d_c00444{left:515.333333pt;}
.xc8_c00444{left:516.866667pt;}
.x9c_c00444{left:519.173333pt;}
.xf2_c00444{left:522.240000pt;}
.xe5_c00444{left:523.773333pt;}
.xbd_c00444{left:525.306667pt;}
.x1d_c00444{left:527.613333pt;}
.x3c_c00444{left:530.693333pt;}
.x23_c00444{left:533.760000pt;}
.x94_c00444{left:536.066667pt;}
.xeb_c00444{left:539.133333pt;}
.xf5_c00444{left:540.666667pt;}
.xbe_c00444{left:542.213333pt;}
.x8f_c00444{left:544.506667pt;}
.x8b_c00444{left:546.053333pt;}
.x85_c00444{left:547.586667pt;}
.xf0_c00444{left:551.426667pt;}
.xc9_c00444{left:558.333333pt;}
.x5a_c00444{left:562.173333pt;}
.x31_c00444{left:563.706667pt;}
.xb_c00444{left:566.013333pt;}
.x64_c00444{left:569.093333pt;}
.x29_c00444{left:572.160000pt;}
.xa8_c00444{left:575.226667pt;}
.xde_c00444{left:577.533333pt;}
.xbf_c00444{left:581.373333pt;}
.x76_c00444{left:583.680000pt;}
.x4f_c00444{left:592.133333pt;}
.x9d_c00444{left:594.426667pt;}
.xa3_c00444{left:597.506667pt;}
.xab_c00444{left:599.040000pt;}
.x12_c00444{left:601.346667pt;}
.x13_c00444{left:602.880000pt;}
.xc0_c00444{left:605.946667pt;}
.x32_c00444{left:611.333333pt;}
.xf6_c00444{left:612.866667pt;}
.xf4_c00444{left:615.933333pt;}
.x95_c00444{left:618.240000pt;}
.xca_c00444{left:620.546667pt;}
.x9e_c00444{left:622.853333pt;}
.x50_c00444{left:625.146667pt;}
.x44_c00444{left:627.453333pt;}
.x24_c00444{left:630.533333pt;}
.x7e_c00444{left:632.826667pt;}
.xc1_c00444{left:634.373333pt;}
.x67_c00444{left:635.906667pt;}
.x3d_c00444{left:638.213333pt;}
.x5b_c00444{left:639.746667pt;}
.x39_c00444{left:643.586667pt;}
.x5c_c00444{left:646.653333pt;}
.x68_c00444{left:648.186667pt;}
.x2a_c00444{left:649.733333pt;}
.xa9_c00444{left:653.573333pt;}
.x9f_c00444{left:656.640000pt;}
.x8c_c00444{left:663.546667pt;}
.x69_c00444{left:665.093333pt;}
.xc_c00444{left:666.626667pt;}
.x45_c00444{left:668.160000pt;}
.xe6_c00444{left:669.693333pt;}
.x77_c00444{left:672.773333pt;}
.xdb_c00444{left:675.066667pt;}
.x18_c00444{left:676.613333pt;}
.xc2_c00444{left:678.146667pt;}
.x14_c00444{left:679.680000pt;}
.xd4_c00444{left:681.986667pt;}
.x2b_c00444{left:685.826667pt;}
.x51_c00444{left:689.666667pt;}
.xb4_c00444{left:691.200000pt;}
.x6a_c00444{left:696.573333pt;}
.x5d_c00444{left:698.106667pt;}
.x3e_c00444{left:700.413333pt;}
.x2c_c00444{left:705.026667pt;}
.x6b_c00444{left:709.626667pt;}
.x5e_c00444{left:711.173333pt;}
.xec_c00444{left:712.706667pt;}
.x33_c00444{left:715.773333pt;}
.xac_c00444{left:718.080000pt;}
.xdf_c00444{left:720.386667pt;}
.xaa_c00444{left:723.453333pt;}
.x3a_c00444{left:727.293333pt;}
.x6c_c00444{left:728.826667pt;}
.x46_c00444{left:731.906667pt;}
.x3f_c00444{left:734.213333pt;}
.xd_c00444{left:736.506667pt;}
.x52_c00444{left:738.813333pt;}
.x6d_c00444{left:741.120000pt;}
.xc3_c00444{left:751.106667pt;}
.x86_c00444{left:757.253333pt;}
.x2d_c00444{left:770.306667pt;}
.x1_c00444{left:774.146667pt;}
.xd1_c00444{left:776.453333pt;}
.xd5_c00444{left:779.520000pt;}
.x2_c00444{left:782.586667pt;}
.xe9_c00444{left:784.133333pt;}
.x1e_c00444{left:788.733333pt;}
.x3_c00444{left:795.653333pt;}
.xea_c00444{left:797.946667pt;}
.xcf_c00444{left:806.400000pt;}
.xd2_c00444{left:814.080000pt;}
.xfd_c00444{left:835.586667pt;}
.xfe_c00444{left:857.853333pt;}
.xf9_c00444{left:881.666667pt;}
.xfb_c00444{left:883.973333pt;}
.xfa_c00444{left:890.880000pt;}
.xfc_c00444{left:900.866667pt;}
.xff_c00444{left:939.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_664a79f953b2713bf33debc3.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.109863;font-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_c00445{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m80_c00445{transform:matrix(0.030125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030125,0.000000,0.000000,0.250000,0,0);}
.m5a_c00445{transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);}
.mf_c00445{transform:matrix(0.058725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058725,0.000000,0.000000,0.250000,0,0);}
.m12_c00445{transform:matrix(0.089050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089050,0.000000,0.000000,0.250000,0,0);}
.m51_c00445{transform:matrix(0.092650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092650,0.000000,0.000000,0.250000,0,0);}
.m9d_c00445{transform:matrix(0.095500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095500,0.000000,0.000000,0.250000,0,0);}
.mbc_c00445{transform:matrix(0.098300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098300,0.000000,0.000000,0.250000,0,0);}
.m6_c00445{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m3b_c00445{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);}
.m68_c00445{transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);}
.m16_c00445{transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);}
.mb3_c00445{transform:matrix(0.122175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122175,0.000000,0.000000,0.250000,0,0);}
.m2b_c00445{transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);}
.m8e_c00445{transform:matrix(0.124550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124550,0.000000,0.000000,0.250000,0,0);}
.m1f_c00445{transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);}
.m15_c00445{transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);}
.m88_c00445{transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);}
.m14_c00445{transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);}
.m71_c00445{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);}
.m56_c00445{transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);}
.m97_c00445{transform:matrix(0.130400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130400,0.000000,0.000000,0.250000,0,0);}
.m13_c00445{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.mb5_c00445{transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);}
.m33_c00445{transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);}
.m60_c00445{transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);}
.m93_c00445{transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);}
.m96_c00445{transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139900,0.000000,0.000000,0.250000,0,0);}
.ma8_c00445{transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);}
.m9b_c00445{transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);}
.m2_c00445{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma0_c00445{transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);}
.ma5_c00445{transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);}
.m4b_c00445{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.mb8_c00445{transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);}
.m50_c00445{transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);}
.mb1_c00445{transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);}
.m66_c00445{transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);}
.m5d_c00445{transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);}
.ma1_c00445{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m92_c00445{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m7a_c00445{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.ma4_c00445{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.mb2_c00445{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.mb7_c00445{transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);}
.mb9_c00445{transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);}
.m36_c00445{transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);}
.mb0_c00445{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.m3a_c00445{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m30_c00445{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m44_c00445{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);}
.ma6_c00445{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m26_c00445{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.mba_c00445{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m9f_c00445{transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);}
.m8b_c00445{transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);}
.m69_c00445{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);}
.m7b_c00445{transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);}
.mb4_c00445{transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);}
.m28_c00445{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.m8f_c00445{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);}
.m27_c00445{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);}
.m53_c00445{transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);}
.m6a_c00445{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);}
.m63_c00445{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.m2d_c00445{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.m91_c00445{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m37_c00445{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.m1b_c00445{transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);}
.m99_c00445{transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);}
.m4a_c00445{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);}
.mae_c00445{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);}
.m8c_c00445{transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);}
.m4e_c00445{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);}
.m5f_c00445{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);}
.m94_c00445{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);}
.m9e_c00445{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);}
.mb6_c00445{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.ma3_c00445{transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);}
.m9_c00445{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.m9a_c00445{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m38_c00445{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m95_c00445{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);}
.m31_c00445{transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);}
.m29_c00445{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.m35_c00445{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m78_c00445{transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);}
.m67_c00445{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);}
.m23_c00445{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.ma7_c00445{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m24_c00445{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);}
.m1d_c00445{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m98_c00445{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.m7d_c00445{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m5e_c00445{transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);}
.m87_c00445{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m4f_c00445{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.mbb_c00445{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);}
.m32_c00445{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);}
.m8a_c00445{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m6f_c00445{transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);}
.m62_c00445{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.m83_c00445{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m21_c00445{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);}
.m3c_c00445{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m52_c00445{transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);}
.mac_c00445{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.mad_c00445{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m89_c00445{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m5b_c00445{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);}
.m64_c00445{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m9c_c00445{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);}
.m46_c00445{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);}
.m7c_c00445{transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);}
.m84_c00445{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);}
.m2f_c00445{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m76_c00445{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);}
.m39_c00445{transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);}
.m57_c00445{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);}
.mab_c00445{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);}
.m2c_c00445{transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);}
.m59_c00445{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m2e_c00445{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m20_c00445{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m1a_c00445{transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);}
.m86_c00445{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.m2a_c00445{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);}
.m82_c00445{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);}
.m6b_c00445{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m40_c00445{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);}
.m6c_c00445{transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);}
.m3e_c00445{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);}
.m8d_c00445{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);}
.maf_c00445{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);}
.m3f_c00445{transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);}
.m11_c00445{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m7f_c00445{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);}
.me_c00445{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);}
.m5c_c00445{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m47_c00445{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);}
.m42_c00445{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);}
.m55_c00445{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);}
.m22_c00445{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);}
.m70_c00445{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m72_c00445{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m90_c00445{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);}
.m41_c00445{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m77_c00445{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);}
.m0_c00445{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m54_c00445{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4c_c00445{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);}
.m1c_c00445{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00445{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);}
.m34_c00445{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);}
.m3d_c00445{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7e_c00445{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);}
.m25_c00445{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00445{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);}
.m45_c00445{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m61_c00445{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m10_c00445{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m75_c00445{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c00445{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m43_c00445{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m58_c00445{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);}
.m65_c00445{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);}
.m85_c00445{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m6d_c00445{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);}
.m73_c00445{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);}
.m48_c00445{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.ma_c00445{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m81_c00445{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m49_c00445{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);}
.m1_c00445{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md_c00445{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m74_c00445{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m6e_c00445{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mbf_c00445{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);}
.m5_c00445{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);}
.ma9_c00445{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m8_c00445{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mc1_c00445{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);}
.m79_c00445{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m7_c00445{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m18_c00445{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m3_c00445{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mbe_c00445{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);}
.maa_c00445{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.ma2_c00445{transform:matrix(1.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.145000,0.000000,0.000000,0.250000,0,0);}
.m4_c00445{transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);}
.mc0_c00445{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.mbd_c00445{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m17_c00445{transform:matrix(1.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.902500,0.000000,0.000000,0.250000,0,0);}
.m19_c00445{transform:matrix(1.945000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.945000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.945000,0.000000,0.000000,0.250000,0,0);}
.v2_c00445{vertical-align:-24.180000px;}
.v1_c00445{vertical-align:-6.960000px;}
.v0_c00445{vertical-align:0.000000px;}
.v3_c00445{vertical-align:3.420000px;}
.ls2_c00445{letter-spacing:0.000000px;}
.ls1_c00445{letter-spacing:13.026000px;}
.ls0_c00445{letter-spacing:61.220700px;}
.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:-15.873600px;}
.ws1_c00445{word-spacing:0.000000px;}
.fc0_c00445{color:transparent;}
.fs2_c00445{font-size:3.456000px;}
.fs4_c00445{font-size:6.000000px;}
.fs0_c00445{font-size:6.900000px;}
.fs5_c00445{font-size:10.380000px;}
.fs7_c00445{font-size:13.800000px;}
.fs1_c00445{font-size:17.280000px;}
.fs3_c00445{font-size:20.760000px;}
.fs10_c00445{font-size:24.180000px;}
.fs8_c00445{font-size:27.660000px;}
.fs1d_c00445{font-size:38.040000px;}
.fsf_c00445{font-size:41.460000px;}
.fs21_c00445{font-size:44.940000px;}
.fs6_c00445{font-size:51.840000px;}
.fs9_c00445{font-size:55.320000px;}
.fs20_c00445{font-size:58.740000px;}
.fs14_c00445{font-size:62.220000px;}
.fs1e_c00445{font-size:65.640000px;}
.fsb_c00445{font-size:69.120000px;}
.fs19_c00445{font-size:72.600000px;}
.fs13_c00445{font-size:76.020000px;}
.fs1f_c00445{font-size:79.500000px;}
.fs1b_c00445{font-size:82.920000px;}
.fs11_c00445{font-size:86.400000px;}
.fs1c_c00445{font-size:89.880000px;}
.fs1a_c00445{font-size:93.300000px;}
.fs16_c00445{font-size:96.780000px;}
.fs17_c00445{font-size:100.200000px;}
.fsa_c00445{font-size:103.680000px;}
.fs12_c00445{font-size:107.160000px;}
.fs15_c00445{font-size:110.580000px;}
.fs18_c00445{font-size:114.060000px;}
.fs22_c00445{font-size:117.480000px;}
.fsd_c00445{font-size:120.960000px;}
.fse_c00445{font-size:124.440000px;}
.fsc_c00445{font-size:141.720000px;}
.y0_c00445{bottom:0.000000px;}
.yae_c00445{bottom:778.470000px;}
.yaf_c00445{bottom:780.195000px;}
.yad_c00445{bottom:782.790000px;}
.ya4_c00445{bottom:784.515000px;}
.ya3_c00445{bottom:786.240000px;}
.ya6_c00445{bottom:788.835000px;}
.ya8_c00445{bottom:791.430000px;}
.ya5_c00445{bottom:794.010000px;}
.yac_c00445{bottom:805.245000px;}
.yab_c00445{bottom:806.115000px;}
.yaa_c00445{bottom:807.840000px;}
.ya7_c00445{bottom:808.710000px;}
.ya9_c00445{bottom:809.565000px;}
.ya2_c00445{bottom:810.435000px;}
.ya0_c00445{bottom:811.290000px;}
.y9e_c00445{bottom:812.160000px;}
.y9f_c00445{bottom:813.885000px;}
.ya1_c00445{bottom:815.610000px;}
.y9d_c00445{bottom:823.395000px;}
.yb_c00445{bottom:836.355000px;}
.ya_c00445{bottom:837.210000px;}
.y9a_c00445{bottom:838.080000px;}
.y9c_c00445{bottom:838.950000px;}
.y99_c00445{bottom:839.805000px;}
.y9b_c00445{bottom:841.530000px;}
.y8_c00445{bottom:843.270000px;}
.y98_c00445{bottom:844.125000px;}
.y9_c00445{bottom:845.850000px;}
.y91_c00445{bottom:859.680000px;}
.y90_c00445{bottom:860.550000px;}
.y92_c00445{bottom:861.405000px;}
.y97_c00445{bottom:862.275000px;}
.y8f_c00445{bottom:864.870000px;}
.y93_c00445{bottom:866.595000px;}
.y94_c00445{bottom:869.190000px;}
.y95_c00445{bottom:877.830000px;}
.y96_c00445{bottom:881.280000px;}
.y8b_c00445{bottom:886.470000px;}
.y8a_c00445{bottom:887.325000px;}
.y8d_c00445{bottom:888.195000px;}
.y8c_c00445{bottom:889.920000px;}
.y8e_c00445{bottom:908.925000px;}
.y87_c00445{bottom:910.650000px;}
.y85_c00445{bottom:912.390000px;}
.y84_c00445{bottom:913.245000px;}
.y86_c00445{bottom:914.115000px;}
.y88_c00445{bottom:917.565000px;}
.y89_c00445{bottom:918.435000px;}
.y83_c00445{bottom:936.570000px;}
.y7e_c00445{bottom:938.310000px;}
.y7_c00445{bottom:939.165000px;}
.y81_c00445{bottom:940.035000px;}
.y80_c00445{bottom:940.890000px;}
.y7f_c00445{bottom:943.485000px;}
.y82_c00445{bottom:945.210000px;}
.y7d_c00445{bottom:959.910000px;}
.y79_c00445{bottom:961.635000px;}
.y7b_c00445{bottom:963.360000px;}
.y7a_c00445{bottom:968.550000px;}
.y7c_c00445{bottom:969.405000px;}
.y75_c00445{bottom:984.960000px;}
.y76_c00445{bottom:987.555000px;}
.y72_c00445{bottom:988.410000px;}
.y74_c00445{bottom:989.280000px;}
.y73_c00445{bottom:990.150000px;}
.y77_c00445{bottom:992.730000px;}
.y78_c00445{bottom:993.600000px;}
.y71_c00445{bottom:994.470000px;}
.y6e_c00445{bottom:1010.880000px;}
.y6f_c00445{bottom:1011.750000px;}
.y70_c00445{bottom:1014.330000px;}
.y6c_c00445{bottom:1015.200000px;}
.y6d_c00445{bottom:1016.070000px;}
.y6b_c00445{bottom:1017.795000px;}
.y6a_c00445{bottom:1018.650000px;}
.y69_c00445{bottom:1034.205000px;}
.y68_c00445{bottom:1035.075000px;}
.y64_c00445{bottom:1038.525000px;}
.y63_c00445{bottom:1039.395000px;}
.y66_c00445{bottom:1040.250000px;}
.y65_c00445{bottom:1042.845000px;}
.y67_c00445{bottom:1043.715000px;}
.y61_c00445{bottom:1059.270000px;}
.y5f_c00445{bottom:1060.125000px;}
.y62_c00445{bottom:1060.995000px;}
.y60_c00445{bottom:1061.850000px;}
.y5b_c00445{bottom:1086.045000px;}
.y5d_c00445{bottom:1086.915000px;}
.y5e_c00445{bottom:1090.365000px;}
.y5a_c00445{bottom:1091.235000px;}
.y5c_c00445{bottom:1092.960000px;}
.y59_c00445{bottom:1110.240000px;}
.y54_c00445{bottom:1111.110000px;}
.y50_c00445{bottom:1111.965000px;}
.y4f_c00445{bottom:1112.835000px;}
.y56_c00445{bottom:1114.560000px;}
.y58_c00445{bottom:1115.430000px;}
.y51_c00445{bottom:1116.285000px;}
.y57_c00445{bottom:1117.155000px;}
.y52_c00445{bottom:1118.880000px;}
.y55_c00445{bottom:1121.475000px;}
.y53_c00445{bottom:1124.925000px;}
.y4e_c00445{bottom:1135.290000px;}
.y4a_c00445{bottom:1136.160000px;}
.y4b_c00445{bottom:1137.885000px;}
.y4d_c00445{bottom:1138.755000px;}
.y4c_c00445{bottom:1142.205000px;}
.y49_c00445{bottom:1143.075000px;}
.y13_c00445{bottom:1145.670000px;}
.y45_c00445{bottom:1161.210000px;}
.y43_c00445{bottom:1162.080000px;}
.y46_c00445{bottom:1163.805000px;}
.y47_c00445{bottom:1165.530000px;}
.y48_c00445{bottom:1167.270000px;}
.y44_c00445{bottom:1169.850000px;}
.y41_c00445{bottom:1186.275000px;}
.y3b_c00445{bottom:1187.130000px;}
.y3c_c00445{bottom:1188.000000px;}
.y3d_c00445{bottom:1189.725000px;}
.y42_c00445{bottom:1192.320000px;}
.y3a_c00445{bottom:1193.190000px;}
.y40_c00445{bottom:1194.045000px;}
.y3f_c00445{bottom:1194.915000px;}
.y3e_c00445{bottom:1208.730000px;}
.y39_c00445{bottom:1209.600000px;}
.y38_c00445{bottom:1211.325000px;}
.y34_c00445{bottom:1212.195000px;}
.y37_c00445{bottom:1213.050000px;}
.y35_c00445{bottom:1213.920000px;}
.y36_c00445{bottom:1219.965000px;}
.y2f_c00445{bottom:1235.520000px;}
.y33_c00445{bottom:1236.390000px;}
.y2e_c00445{bottom:1237.245000px;}
.y32_c00445{bottom:1238.115000px;}
.y31_c00445{bottom:1238.970000px;}
.y2c_c00445{bottom:1240.710000px;}
.y2d_c00445{bottom:1241.565000px;}
.y30_c00445{bottom:1245.030000px;}
.y2b_c00445{bottom:1260.570000px;}
.y29_c00445{bottom:1262.310000px;}
.y2a_c00445{bottom:1263.165000px;}
.y27_c00445{bottom:1287.360000px;}
.y26_c00445{bottom:1289.085000px;}
.y24_c00445{bottom:1289.955000px;}
.y23_c00445{bottom:1290.810000px;}
.y28_c00445{bottom:1292.550000px;}
.y25_c00445{bottom:1294.275000px;}
.y1f_c00445{bottom:1311.555000px;}
.y21_c00445{bottom:1314.150000px;}
.y1e_c00445{bottom:1315.005000px;}
.y22_c00445{bottom:1319.325000px;}
.y20_c00445{bottom:1320.195000px;}
.y1c_c00445{bottom:1333.155000px;}
.y18_c00445{bottom:1337.475000px;}
.y1d_c00445{bottom:1339.200000px;}
.y1b_c00445{bottom:1340.070000px;}
.y1a_c00445{bottom:1342.650000px;}
.y17_c00445{bottom:1343.520000px;}
.y19_c00445{bottom:1344.390000px;}
.y16_c00445{bottom:1347.840000px;}
.y6_c00445{bottom:1364.250000px;}
.y4_c00445{bottom:1365.990000px;}
.y5_c00445{bottom:1366.845000px;}
.y15_c00445{bottom:1375.485000px;}
.y14_c00445{bottom:1376.355000px;}
.y3_c00445{bottom:1383.270000px;}
.y2_c00445{bottom:1384.995000px;}
.y12_c00445{bottom:1397.085000px;}
.y11_c00445{bottom:1408.320000px;}
.ye_c00445{bottom:1417.830000px;}
.yf_c00445{bottom:1424.730000px;}
.y1_c00445{bottom:1426.470000px;}
.y10_c00445{bottom:1431.645000px;}
.yc_c00445{bottom:1442.010000px;}
.yd_c00445{bottom:1442.880000px;}
.h2_c00445{height:3.110063px;}
.h4_c00445{height:5.399414px;}
.h8_c00445{height:6.209326px;}
.h1_c00445{height:8.590312px;}
.h5_c00445{height:9.340986px;}
.h7_c00445{height:12.418652px;}
.h9_c00445{height:15.550313px;}
.h3_c00445{height:18.681973px;}
.h12_c00445{height:21.759639px;}
.ha_c00445{height:24.891299px;}
.h1f_c00445{height:34.232285px;}
.h11_c00445{height:37.309951px;}
.h21_c00445{height:38.021250px;}
.h25_c00445{height:40.441611px;}
.h6_c00445{height:46.650937px;}
.hb_c00445{height:49.782598px;}
.h24_c00445{height:52.860264px;}
.h16_c00445{height:55.991924px;}
.h20_c00445{height:59.069590px;}
.hd_c00445{height:62.201250px;}
.h1b_c00445{height:65.332910px;}
.h22_c00445{height:65.621250px;}
.h15_c00445{height:68.410576px;}
.h23_c00445{height:71.542236px;}
.h1d_c00445{height:74.619902px;}
.h13_c00445{height:77.751563px;}
.h1e_c00445{height:80.883223px;}
.h1c_c00445{height:83.960889px;}
.h18_c00445{height:87.092549px;}
.h19_c00445{height:90.170215px;}
.hc_c00445{height:93.301875px;}
.h14_c00445{height:96.433535px;}
.h17_c00445{height:99.511201px;}
.h1a_c00445{height:102.642861px;}
.h26_c00445{height:105.720527px;}
.hf_c00445{height:108.852188px;}
.h10_c00445{height:111.983848px;}
.he_c00445{height:127.534160px;}
.h0_c00445{height:1512.000000px;}
.w0_c00445{width:1100.730000px;}
.w1_c00445{width:1101.000000px;}
.x0_c00445{left:0.000000px;}
.x1_c00445{left:1.725000px;}
.x5_c00445{left:11.235000px;}
.x6_c00445{left:25.920000px;}
.x2_c00445{left:64.799625px;}
.x3_c00445{left:75.165000px;}
.x4_c00445{left:89.850000px;}
.x8_c00445{left:161.565000px;}
.x7_c00445{left:165.885000px;}
.x9_c00445{left:168.480000px;}
.x13_c00445{left:173.670000px;}
.xa_c00445{left:180.570000px;}
.x2f_c00445{left:199.590000px;}
.x53_c00445{left:212.550000px;}
.x30_c00445{left:216.000000px;}
.x16_c00445{left:219.450000px;}
.x97_c00445{left:227.235000px;}
.x2b_c00445{left:229.830000px;}
.x5d_c00445{left:233.280000px;}
.x4a_c00445{left:235.005000px;}
.x17_c00445{left:236.730000px;}
.x6c_c00445{left:254.010000px;}
.x94_c00445{left:258.330000px;}
.x31_c00445{left:270.435000px;}
.x1e_c00445{left:272.160000px;}
.x14_c00445{left:283.395000px;}
.x66_c00445{left:285.120000px;}
.x18_c00445{left:291.165000px;}
.x21_c00445{left:298.080000px;}
.x7e_c00445{left:300.675000px;}
.x6d_c00445{left:307.590000px;}
.x1f_c00445{left:309.315000px;}
.x4b_c00445{left:312.765000px;}
.x88_c00445{left:314.490000px;}
.x99_c00445{left:322.275000px;}
.xb_c00445{left:324.000000px;}
.x19_c00445{left:331.770000px;}
.x5e_c00445{left:339.555000px;}
.x54_c00445{left:342.150000px;}
.xc_c00445{left:345.600000px;}
.x78_c00445{left:349.920000px;}
.x8d_c00445{left:351.645000px;}
.x79_c00445{left:357.690000px;}
.x1a_c00445{left:367.200000px;}
.x7f_c00445{left:374.970000px;}
.x84_c00445{left:376.710000px;}
.x27_c00445{left:379.290000px;}
.x32_c00445{left:385.350000px;}
.x67_c00445{left:388.800000px;}
.x3a_c00445{left:393.990000px;}
.x37_c00445{left:402.630000px;}
.x68_c00445{left:409.530000px;}
.x4c_c00445{left:412.995000px;}
.x80_c00445{left:428.550000px;}
.x5f_c00445{left:432.870000px;}
.x22_c00445{left:434.595000px;}
.x10_c00445{left:438.045000px;}
.x2c_c00445{left:448.410000px;}
.x33_c00445{left:451.005000px;}
.x6e_c00445{left:452.730000px;}
.x8e_c00445{left:454.470000px;}
.x64_c00445{left:463.110000px;}
.x44_c00445{left:470.010000px;}
.x3b_c00445{left:472.605000px;}
.x89_c00445{left:474.330000px;}
.x95_c00445{left:476.925000px;}
.x60_c00445{left:485.565000px;}
.x38_c00445{left:489.885000px;}
.x28_c00445{left:499.395000px;}
.x85_c00445{left:505.440000px;}
.xd_c00445{left:507.165000px;}
.x55_c00445{left:508.890000px;}
.x56_c00445{left:514.950000px;}
.x4d_c00445{left:520.125000px;}
.x2d_c00445{left:525.315000px;}
.xe_c00445{left:527.910000px;}
.x96_c00445{left:529.635000px;}
.x6f_c00445{left:531.360000px;}
.x70_c00445{left:533.085000px;}
.xf_c00445{left:540.870000px;}
.x71_c00445{left:543.450000px;}
.x45_c00445{left:545.190000px;}
.x9a_c00445{left:546.915000px;}
.x1b_c00445{left:554.685000px;}
.x69_c00445{left:556.410000px;}
.xa0_c00445{left:558.150000px;}
.x8a_c00445{left:561.600000px;}
.x82_c00445{left:563.325000px;}
.x23_c00445{left:565.920000px;}
.x3c_c00445{left:571.965000px;}
.x72_c00445{left:574.560000px;}
.x3d_c00445{left:577.155000px;}
.xa1_c00445{left:583.200000px;}
.x34_c00445{left:602.205000px;}
.x57_c00445{left:604.800000px;}
.x1c_c00445{left:609.990000px;}
.x4e_c00445{left:611.715000px;}
.x9b_c00445{left:615.165000px;}
.x35_c00445{left:622.080000px;}
.x81_c00445{left:626.400000px;}
.x6a_c00445{left:628.125000px;}
.x8b_c00445{left:630.720000px;}
.x46_c00445{left:634.170000px;}
.x15_c00445{left:641.955000px;}
.x86_c00445{left:646.275000px;}
.x98_c00445{left:648.870000px;}
.x24_c00445{left:651.450000px;}
.x58_c00445{left:654.045000px;}
.x3e_c00445{left:655.770000px;}
.x7a_c00445{left:658.365000px;}
.x29_c00445{left:665.280000px;}
.x61_c00445{left:669.600000px;}
.x3f_c00445{left:672.195000px;}
.x7b_c00445{left:673.920000px;}
.x6b_c00445{left:678.240000px;}
.x20_c00445{left:680.835000px;}
.x73_c00445{left:686.880000px;}
.x11_c00445{left:691.200000px;}
.x9c_c00445{left:695.520000px;}
.x4f_c00445{left:703.290000px;}
.x12_c00445{left:706.755000px;}
.x25_c00445{left:710.205000px;}
.x9d_c00445{left:713.670000px;}
.x2a_c00445{left:715.395000px;}
.x8f_c00445{left:720.570000px;}
.x47_c00445{left:724.035000px;}
.x7c_c00445{left:732.675000px;}
.x1d_c00445{left:734.400000px;}
.x74_c00445{left:738.720000px;}
.x40_c00445{left:740.445000px;}
.x59_c00445{left:748.230000px;}
.x2e_c00445{left:749.955000px;}
.x36_c00445{left:761.190000px;}
.x50_c00445{left:768.960000px;}
.x62_c00445{left:771.555000px;}
.x41_c00445{left:782.790000px;}
.x26_c00445{left:788.835000px;}
.x63_c00445{left:794.010000px;}
.x48_c00445{left:796.605000px;}
.x51_c00445{left:801.795000px;}
.x39_c00445{left:803.520000px;}
.x9e_c00445{left:805.245000px;}
.x5a_c00445{left:809.565000px;}
.x5b_c00445{left:822.525000px;}
.x75_c00445{left:824.250000px;}
.x42_c00445{left:830.310000px;}
.x90_c00445{left:834.630000px;}
.x7d_c00445{left:837.210000px;}
.x9f_c00445{left:840.675000px;}
.x49_c00445{left:842.400000px;}
.x76_c00445{left:851.910000px;}
.x83_c00445{left:857.955000px;}
.x43_c00445{left:864.870000px;}
.x5c_c00445{left:877.830000px;}
.x77_c00445{left:881.280000px;}
.x65_c00445{left:884.730000px;}
.x52_c00445{left:889.050000px;}
.x91_c00445{left:894.240000px;}
.x8c_c00445{left:897.690000px;}
.x92_c00445{left:909.795000px;}
.x87_c00445{left:915.840000px;}
.x93_c00445{left:919.289400px;}
@media print{
.v2_c00445{vertical-align:-21.493333pt;}
.v1_c00445{vertical-align:-6.186667pt;}
.v0_c00445{vertical-align:0.000000pt;}
.v3_c00445{vertical-align:3.040000pt;}
.ls2_c00445{letter-spacing:0.000000pt;}
.ls1_c00445{letter-spacing:11.578667pt;}
.ls0_c00445{letter-spacing:54.418400pt;}
.ws0_c00445{word-spacing:-14.109867pt;}
.ws1_c00445{word-spacing:0.000000pt;}
.fs2_c00445{font-size:3.072000pt;}
.fs4_c00445{font-size:5.333333pt;}
.fs0_c00445{font-size:6.133333pt;}
.fs5_c00445{font-size:9.226667pt;}
.fs7_c00445{font-size:12.266667pt;}
.fs1_c00445{font-size:15.360000pt;}
.fs3_c00445{font-size:18.453333pt;}
.fs10_c00445{font-size:21.493333pt;}
.fs8_c00445{font-size:24.586667pt;}
.fs1d_c00445{font-size:33.813333pt;}
.fsf_c00445{font-size:36.853333pt;}
.fs21_c00445{font-size:39.946667pt;}
.fs6_c00445{font-size:46.080000pt;}
.fs9_c00445{font-size:49.173333pt;}
.fs20_c00445{font-size:52.213333pt;}
.fs14_c00445{font-size:55.306667pt;}
.fs1e_c00445{font-size:58.346667pt;}
.fsb_c00445{font-size:61.440000pt;}
.fs19_c00445{font-size:64.533333pt;}
.fs13_c00445{font-size:67.573333pt;}
.fs1f_c00445{font-size:70.666667pt;}
.fs1b_c00445{font-size:73.706667pt;}
.fs11_c00445{font-size:76.800000pt;}
.fs1c_c00445{font-size:79.893333pt;}
.fs1a_c00445{font-size:82.933333pt;}
.fs16_c00445{font-size:86.026667pt;}
.fs17_c00445{font-size:89.066667pt;}
.fsa_c00445{font-size:92.160000pt;}
.fs12_c00445{font-size:95.253333pt;}
.fs15_c00445{font-size:98.293333pt;}
.fs18_c00445{font-size:101.386667pt;}
.fs22_c00445{font-size:104.426667pt;}
.fsd_c00445{font-size:107.520000pt;}
.fse_c00445{font-size:110.613333pt;}
.fsc_c00445{font-size:125.973333pt;}
.y0_c00445{bottom:0.000000pt;}
.yae_c00445{bottom:691.973333pt;}
.yaf_c00445{bottom:693.506667pt;}
.yad_c00445{bottom:695.813333pt;}
.ya4_c00445{bottom:697.346667pt;}
.ya3_c00445{bottom:698.880000pt;}
.ya6_c00445{bottom:701.186667pt;}
.ya8_c00445{bottom:703.493333pt;}
.ya5_c00445{bottom:705.786667pt;}
.yac_c00445{bottom:715.773333pt;}
.yab_c00445{bottom:716.546667pt;}
.yaa_c00445{bottom:718.080000pt;}
.ya7_c00445{bottom:718.853333pt;}
.ya9_c00445{bottom:719.613333pt;}
.ya2_c00445{bottom:720.386667pt;}
.ya0_c00445{bottom:721.146667pt;}
.y9e_c00445{bottom:721.920000pt;}
.y9f_c00445{bottom:723.453333pt;}
.ya1_c00445{bottom:724.986667pt;}
.y9d_c00445{bottom:731.906667pt;}
.yb_c00445{bottom:743.426667pt;}
.ya_c00445{bottom:744.186667pt;}
.y9a_c00445{bottom:744.960000pt;}
.y9c_c00445{bottom:745.733333pt;}
.y99_c00445{bottom:746.493333pt;}
.y9b_c00445{bottom:748.026667pt;}
.y8_c00445{bottom:749.573333pt;}
.y98_c00445{bottom:750.333333pt;}
.y9_c00445{bottom:751.866667pt;}
.y91_c00445{bottom:764.160000pt;}
.y90_c00445{bottom:764.933333pt;}
.y92_c00445{bottom:765.693333pt;}
.y97_c00445{bottom:766.466667pt;}
.y8f_c00445{bottom:768.773333pt;}
.y93_c00445{bottom:770.306667pt;}
.y94_c00445{bottom:772.613333pt;}
.y95_c00445{bottom:780.293333pt;}
.y96_c00445{bottom:783.360000pt;}
.y8b_c00445{bottom:787.973333pt;}
.y8a_c00445{bottom:788.733333pt;}
.y8d_c00445{bottom:789.506667pt;}
.y8c_c00445{bottom:791.040000pt;}
.y8e_c00445{bottom:807.933333pt;}
.y87_c00445{bottom:809.466667pt;}
.y85_c00445{bottom:811.013333pt;}
.y84_c00445{bottom:811.773333pt;}
.y86_c00445{bottom:812.546667pt;}
.y88_c00445{bottom:815.613333pt;}
.y89_c00445{bottom:816.386667pt;}
.y83_c00445{bottom:832.506667pt;}
.y7e_c00445{bottom:834.053333pt;}
.y7_c00445{bottom:834.813333pt;}
.y81_c00445{bottom:835.586667pt;}
.y80_c00445{bottom:836.346667pt;}
.y7f_c00445{bottom:838.653333pt;}
.y82_c00445{bottom:840.186667pt;}
.y7d_c00445{bottom:853.253333pt;}
.y79_c00445{bottom:854.786667pt;}
.y7b_c00445{bottom:856.320000pt;}
.y7a_c00445{bottom:860.933333pt;}
.y7c_c00445{bottom:861.693333pt;}
.y75_c00445{bottom:875.520000pt;}
.y76_c00445{bottom:877.826667pt;}
.y72_c00445{bottom:878.586667pt;}
.y74_c00445{bottom:879.360000pt;}
.y73_c00445{bottom:880.133333pt;}
.y77_c00445{bottom:882.426667pt;}
.y78_c00445{bottom:883.200000pt;}
.y71_c00445{bottom:883.973333pt;}
.y6e_c00445{bottom:898.560000pt;}
.y6f_c00445{bottom:899.333333pt;}
.y70_c00445{bottom:901.626667pt;}
.y6c_c00445{bottom:902.400000pt;}
.y6d_c00445{bottom:903.173333pt;}
.y6b_c00445{bottom:904.706667pt;}
.y6a_c00445{bottom:905.466667pt;}
.y69_c00445{bottom:919.293333pt;}
.y68_c00445{bottom:920.066667pt;}
.y64_c00445{bottom:923.133333pt;}
.y63_c00445{bottom:923.906667pt;}
.y66_c00445{bottom:924.666667pt;}
.y65_c00445{bottom:926.973333pt;}
.y67_c00445{bottom:927.746667pt;}
.y61_c00445{bottom:941.573333pt;}
.y5f_c00445{bottom:942.333333pt;}
.y62_c00445{bottom:943.106667pt;}
.y60_c00445{bottom:943.866667pt;}
.y5b_c00445{bottom:965.373333pt;}
.y5d_c00445{bottom:966.146667pt;}
.y5e_c00445{bottom:969.213333pt;}
.y5a_c00445{bottom:969.986667pt;}
.y5c_c00445{bottom:971.520000pt;}
.y59_c00445{bottom:986.880000pt;}
.y54_c00445{bottom:987.653333pt;}
.y50_c00445{bottom:988.413333pt;}
.y4f_c00445{bottom:989.186667pt;}
.y56_c00445{bottom:990.720000pt;}
.y58_c00445{bottom:991.493333pt;}
.y51_c00445{bottom:992.253333pt;}
.y57_c00445{bottom:993.026667pt;}
.y52_c00445{bottom:994.560000pt;}
.y55_c00445{bottom:996.866667pt;}
.y53_c00445{bottom:999.933333pt;}
.y4e_c00445{bottom:1009.146667pt;}
.y4a_c00445{bottom:1009.920000pt;}
.y4b_c00445{bottom:1011.453333pt;}
.y4d_c00445{bottom:1012.226667pt;}
.y4c_c00445{bottom:1015.293333pt;}
.y49_c00445{bottom:1016.066667pt;}
.y13_c00445{bottom:1018.373333pt;}
.y45_c00445{bottom:1032.186667pt;}
.y43_c00445{bottom:1032.960000pt;}
.y46_c00445{bottom:1034.493333pt;}
.y47_c00445{bottom:1036.026667pt;}
.y48_c00445{bottom:1037.573333pt;}
.y44_c00445{bottom:1039.866667pt;}
.y41_c00445{bottom:1054.466667pt;}
.y3b_c00445{bottom:1055.226667pt;}
.y3c_c00445{bottom:1056.000000pt;}
.y3d_c00445{bottom:1057.533333pt;}
.y42_c00445{bottom:1059.840000pt;}
.y3a_c00445{bottom:1060.613333pt;}
.y40_c00445{bottom:1061.373333pt;}
.y3f_c00445{bottom:1062.146667pt;}
.y3e_c00445{bottom:1074.426667pt;}
.y39_c00445{bottom:1075.200000pt;}
.y38_c00445{bottom:1076.733333pt;}
.y34_c00445{bottom:1077.506667pt;}
.y37_c00445{bottom:1078.266667pt;}
.y35_c00445{bottom:1079.040000pt;}
.y36_c00445{bottom:1084.413333pt;}
.y2f_c00445{bottom:1098.240000pt;}
.y33_c00445{bottom:1099.013333pt;}
.y2e_c00445{bottom:1099.773333pt;}
.y32_c00445{bottom:1100.546667pt;}
.y31_c00445{bottom:1101.306667pt;}
.y2c_c00445{bottom:1102.853333pt;}
.y2d_c00445{bottom:1103.613333pt;}
.y30_c00445{bottom:1106.693333pt;}
.y2b_c00445{bottom:1120.506667pt;}
.y29_c00445{bottom:1122.053333pt;}
.y2a_c00445{bottom:1122.813333pt;}
.y27_c00445{bottom:1144.320000pt;}
.y26_c00445{bottom:1145.853333pt;}
.y24_c00445{bottom:1146.626667pt;}
.y23_c00445{bottom:1147.386667pt;}
.y28_c00445{bottom:1148.933333pt;}
.y25_c00445{bottom:1150.466667pt;}
.y1f_c00445{bottom:1165.826667pt;}
.y21_c00445{bottom:1168.133333pt;}
.y1e_c00445{bottom:1168.893333pt;}
.y22_c00445{bottom:1172.733333pt;}
.y20_c00445{bottom:1173.506667pt;}
.y1c_c00445{bottom:1185.026667pt;}
.y18_c00445{bottom:1188.866667pt;}
.y1d_c00445{bottom:1190.400000pt;}
.y1b_c00445{bottom:1191.173333pt;}
.y1a_c00445{bottom:1193.466667pt;}
.y17_c00445{bottom:1194.240000pt;}
.y19_c00445{bottom:1195.013333pt;}
.y16_c00445{bottom:1198.080000pt;}
.y6_c00445{bottom:1212.666667pt;}
.y4_c00445{bottom:1214.213333pt;}
.y5_c00445{bottom:1214.973333pt;}
.y15_c00445{bottom:1222.653333pt;}
.y14_c00445{bottom:1223.426667pt;}
.y3_c00445{bottom:1229.573333pt;}
.y2_c00445{bottom:1231.106667pt;}
.y12_c00445{bottom:1241.853333pt;}
.y11_c00445{bottom:1251.840000pt;}
.ye_c00445{bottom:1260.293333pt;}
.yf_c00445{bottom:1266.426667pt;}
.y1_c00445{bottom:1267.973333pt;}
.y10_c00445{bottom:1272.573333pt;}
.yc_c00445{bottom:1281.786667pt;}
.yd_c00445{bottom:1282.560000pt;}
.h2_c00445{height:2.764500pt;}
.h4_c00445{height:4.799479pt;}
.h8_c00445{height:5.519401pt;}
.h1_c00445{height:7.635833pt;}
.h5_c00445{height:8.303099pt;}
.h7_c00445{height:11.038802pt;}
.h9_c00445{height:13.822500pt;}
.h3_c00445{height:16.606198pt;}
.h12_c00445{height:19.341901pt;}
.ha_c00445{height:22.125599pt;}
.h1f_c00445{height:30.428698pt;}
.h11_c00445{height:33.164401pt;}
.h21_c00445{height:33.796667pt;}
.h25_c00445{height:35.948099pt;}
.h6_c00445{height:41.467500pt;}
.hb_c00445{height:44.251198pt;}
.h24_c00445{height:46.986901pt;}
.h16_c00445{height:49.770599pt;}
.h20_c00445{height:52.506302pt;}
.hd_c00445{height:55.290000pt;}
.h1b_c00445{height:58.073698pt;}
.h22_c00445{height:58.330000pt;}
.h15_c00445{height:60.809401pt;}
.h23_c00445{height:63.593099pt;}
.h1d_c00445{height:66.328802pt;}
.h13_c00445{height:69.112500pt;}
.h1e_c00445{height:71.896198pt;}
.h1c_c00445{height:74.631901pt;}
.h18_c00445{height:77.415599pt;}
.h19_c00445{height:80.151302pt;}
.hc_c00445{height:82.935000pt;}
.h14_c00445{height:85.718698pt;}
.h17_c00445{height:88.454401pt;}
.h1a_c00445{height:91.238099pt;}
.h26_c00445{height:93.973802pt;}
.hf_c00445{height:96.757500pt;}
.h10_c00445{height:99.541198pt;}
.he_c00445{height:113.363698pt;}
.h0_c00445{height:1344.000000pt;}
.w0_c00445{width:978.426667pt;}
.w1_c00445{width:978.666667pt;}
.x0_c00445{left:0.000000pt;}
.x1_c00445{left:1.533333pt;}
.x5_c00445{left:9.986667pt;}
.x6_c00445{left:23.040000pt;}
.x2_c00445{left:57.599667pt;}
.x3_c00445{left:66.813333pt;}
.x4_c00445{left:79.866667pt;}
.x8_c00445{left:143.613333pt;}
.x7_c00445{left:147.453333pt;}
.x9_c00445{left:149.760000pt;}
.x13_c00445{left:154.373333pt;}
.xa_c00445{left:160.506667pt;}
.x2f_c00445{left:177.413333pt;}
.x53_c00445{left:188.933333pt;}
.x30_c00445{left:192.000000pt;}
.x16_c00445{left:195.066667pt;}
.x97_c00445{left:201.986667pt;}
.x2b_c00445{left:204.293333pt;}
.x5d_c00445{left:207.360000pt;}
.x4a_c00445{left:208.893333pt;}
.x17_c00445{left:210.426667pt;}
.x6c_c00445{left:225.786667pt;}
.x94_c00445{left:229.626667pt;}
.x31_c00445{left:240.386667pt;}
.x1e_c00445{left:241.920000pt;}
.x14_c00445{left:251.906667pt;}
.x66_c00445{left:253.440000pt;}
.x18_c00445{left:258.813333pt;}
.x21_c00445{left:264.960000pt;}
.x7e_c00445{left:267.266667pt;}
.x6d_c00445{left:273.413333pt;}
.x1f_c00445{left:274.946667pt;}
.x4b_c00445{left:278.013333pt;}
.x88_c00445{left:279.546667pt;}
.x99_c00445{left:286.466667pt;}
.xb_c00445{left:288.000000pt;}
.x19_c00445{left:294.906667pt;}
.x5e_c00445{left:301.826667pt;}
.x54_c00445{left:304.133333pt;}
.xc_c00445{left:307.200000pt;}
.x78_c00445{left:311.040000pt;}
.x8d_c00445{left:312.573333pt;}
.x79_c00445{left:317.946667pt;}
.x1a_c00445{left:326.400000pt;}
.x7f_c00445{left:333.306667pt;}
.x84_c00445{left:334.853333pt;}
.x27_c00445{left:337.146667pt;}
.x32_c00445{left:342.533333pt;}
.x67_c00445{left:345.600000pt;}
.x3a_c00445{left:350.213333pt;}
.x37_c00445{left:357.893333pt;}
.x68_c00445{left:364.026667pt;}
.x4c_c00445{left:367.106667pt;}
.x80_c00445{left:380.933333pt;}
.x5f_c00445{left:384.773333pt;}
.x22_c00445{left:386.306667pt;}
.x10_c00445{left:389.373333pt;}
.x2c_c00445{left:398.586667pt;}
.x33_c00445{left:400.893333pt;}
.x6e_c00445{left:402.426667pt;}
.x8e_c00445{left:403.973333pt;}
.x64_c00445{left:411.653333pt;}
.x44_c00445{left:417.786667pt;}
.x3b_c00445{left:420.093333pt;}
.x89_c00445{left:421.626667pt;}
.x95_c00445{left:423.933333pt;}
.x60_c00445{left:431.613333pt;}
.x38_c00445{left:435.453333pt;}
.x28_c00445{left:443.906667pt;}
.x85_c00445{left:449.280000pt;}
.xd_c00445{left:450.813333pt;}
.x55_c00445{left:452.346667pt;}
.x56_c00445{left:457.733333pt;}
.x4d_c00445{left:462.333333pt;}
.x2d_c00445{left:466.946667pt;}
.xe_c00445{left:469.253333pt;}
.x96_c00445{left:470.786667pt;}
.x6f_c00445{left:472.320000pt;}
.x70_c00445{left:473.853333pt;}
.xf_c00445{left:480.773333pt;}
.x71_c00445{left:483.066667pt;}
.x45_c00445{left:484.613333pt;}
.x9a_c00445{left:486.146667pt;}
.x1b_c00445{left:493.053333pt;}
.x69_c00445{left:494.586667pt;}
.xa0_c00445{left:496.133333pt;}
.x8a_c00445{left:499.200000pt;}
.x82_c00445{left:500.733333pt;}
.x23_c00445{left:503.040000pt;}
.x3c_c00445{left:508.413333pt;}
.x72_c00445{left:510.720000pt;}
.x3d_c00445{left:513.026667pt;}
.xa1_c00445{left:518.400000pt;}
.x34_c00445{left:535.293333pt;}
.x57_c00445{left:537.600000pt;}
.x1c_c00445{left:542.213333pt;}
.x4e_c00445{left:543.746667pt;}
.x9b_c00445{left:546.813333pt;}
.x35_c00445{left:552.960000pt;}
.x81_c00445{left:556.800000pt;}
.x6a_c00445{left:558.333333pt;}
.x8b_c00445{left:560.640000pt;}
.x46_c00445{left:563.706667pt;}
.x15_c00445{left:570.626667pt;}
.x86_c00445{left:574.466667pt;}
.x98_c00445{left:576.773333pt;}
.x24_c00445{left:579.066667pt;}
.x58_c00445{left:581.373333pt;}
.x3e_c00445{left:582.906667pt;}
.x7a_c00445{left:585.213333pt;}
.x29_c00445{left:591.360000pt;}
.x61_c00445{left:595.200000pt;}
.x3f_c00445{left:597.506667pt;}
.x7b_c00445{left:599.040000pt;}
.x6b_c00445{left:602.880000pt;}
.x20_c00445{left:605.186667pt;}
.x73_c00445{left:610.560000pt;}
.x11_c00445{left:614.400000pt;}
.x9c_c00445{left:618.240000pt;}
.x4f_c00445{left:625.146667pt;}
.x12_c00445{left:628.226667pt;}
.x25_c00445{left:631.293333pt;}
.x9d_c00445{left:634.373333pt;}
.x2a_c00445{left:635.906667pt;}
.x8f_c00445{left:640.506667pt;}
.x47_c00445{left:643.586667pt;}
.x7c_c00445{left:651.266667pt;}
.x1d_c00445{left:652.800000pt;}
.x74_c00445{left:656.640000pt;}
.x40_c00445{left:658.173333pt;}
.x59_c00445{left:665.093333pt;}
.x2e_c00445{left:666.626667pt;}
.x36_c00445{left:676.613333pt;}
.x50_c00445{left:683.520000pt;}
.x62_c00445{left:685.826667pt;}
.x41_c00445{left:695.813333pt;}
.x26_c00445{left:701.186667pt;}
.x63_c00445{left:705.786667pt;}
.x48_c00445{left:708.093333pt;}
.x51_c00445{left:712.706667pt;}
.x39_c00445{left:714.240000pt;}
.x9e_c00445{left:715.773333pt;}
.x5a_c00445{left:719.613333pt;}
.x5b_c00445{left:731.133333pt;}
.x75_c00445{left:732.666667pt;}
.x42_c00445{left:738.053333pt;}
.x90_c00445{left:741.893333pt;}
.x7d_c00445{left:744.186667pt;}
.x9f_c00445{left:747.266667pt;}
.x49_c00445{left:748.800000pt;}
.x76_c00445{left:757.253333pt;}
.x83_c00445{left:762.626667pt;}
.x43_c00445{left:768.773333pt;}
.x5c_c00445{left:780.293333pt;}
.x77_c00445{left:783.360000pt;}
.x65_c00445{left:786.426667pt;}
.x52_c00445{left:790.266667pt;}
.x91_c00445{left:794.880000pt;}
.x8c_c00445{left:797.946667pt;}
.x92_c00445{left:808.706667pt;}
.x87_c00445{left:814.080000pt;}
.x93_c00445{left:817.146133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70c611f2ed2d3d17d462c469.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.109863;font-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_c00446{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m9_c00446{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);}
.m11_c00446{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m1_c00446{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m28_c00446{transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);}
.m24_c00446{transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);}
.ma_c00446{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.m18_c00446{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m17_c00446{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.m1e_c00446{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.m14_c00446{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);}
.m1c_c00446{transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);}
.m16_c00446{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);}
.mf_c00446{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);}
.m8_c00446{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c00446{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c00446{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c00446{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m29_c00446{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);}
.m1d_c00446{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);}
.m23_c00446{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m22_c00446{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00446{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb_c00446{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);}
.md_c00446{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00446{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m21_c00446{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);}
.m15_c00446{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m20_c00446{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00446{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);}
.m27_c00446{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5_c00446{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m25_c00446{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m13_c00446{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);}
.m7_c00446{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m26_c00446{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m2a_c00446{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m2_c00446{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m0_c00446{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m6_c00446{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m12_c00446{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m3_c00446{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.me_c00446{transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);}
.v0_c00446{vertical-align:0.000000px;}
.v1_c00446{vertical-align:3.480000px;}
.ls1_c00446{letter-spacing:0.000000px;}
.ls0_c00446{letter-spacing:557.978688px;}
.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;}
.fs6_c00446{font-size:3.456000px;}
.fs1_c00446{font-size:6.000000px;}
.fs3_c00446{font-size:6.900000px;}
.fsb_c00446{font-size:10.380000px;}
.fs2_c00446{font-size:13.800000px;}
.fs4_c00446{font-size:17.280000px;}
.fs5_c00446{font-size:20.760000px;}
.fs0_c00446{font-size:24.180000px;}
.fsa_c00446{font-size:27.660000px;}
.fsc_c00446{font-size:34.560000px;}
.fsf_c00446{font-size:41.460000px;}
.fs10_c00446{font-size:44.940000px;}
.fs11_c00446{font-size:48.360000px;}
.fs12_c00446{font-size:58.740000px;}
.fsd_c00446{font-size:62.220000px;}
.fs9_c00446{font-size:65.640000px;}
.fs7_c00446{font-size:69.120000px;}
.fse_c00446{font-size:72.600000px;}
.fs8_c00446{font-size:76.020000px;}
.y0_c00446{bottom:0.000000px;}
.y1f_c00446{bottom:978.045000px;}
.y1e_c00446{bottom:978.915000px;}
.y1a_c00446{bottom:990.150000px;}
.y18_c00446{bottom:991.005000px;}
.y16_c00446{bottom:992.730000px;}
.y17_c00446{bottom:993.600000px;}
.y15_c00446{bottom:994.470000px;}
.y1d_c00446{bottom:996.195000px;}
.y1b_c00446{bottom:997.050000px;}
.y19_c00446{bottom:997.920000px;}
.y1c_c00446{bottom:998.790000px;}
.y13_c00446{bottom:1009.155000px;}
.y11_c00446{bottom:1010.880000px;}
.y14_c00446{bottom:1011.750000px;}
.y10_c00446{bottom:1013.475000px;}
.y12_c00446{bottom:1014.330000px;}
.yf_c00446{bottom:1016.070000px;}
.yd_c00446{bottom:1016.925000px;}
.ye_c00446{bottom:1017.795000px;}
.yc_c00446{bottom:1018.650000px;}
.yb_c00446{bottom:1035.930000px;}
.y8_c00446{bottom:1036.800000px;}
.y9_c00446{bottom:1037.670000px;}
.ya_c00446{bottom:1038.525000px;}
.y7_c00446{bottom:1172.445000px;}
.y6_c00446{bottom:1219.965000px;}
.y5_c00446{bottom:1234.650000px;}
.y1_c00446{bottom:1253.670000px;}
.y2_c00446{bottom:1436.835000px;}
.y4_c00446{bottom:1438.560000px;}
.y3_c00446{bottom:1441.155000px;}
.h8_c00446{height:3.110063px;}
.h3_c00446{height:5.399414px;}
.h5_c00446{height:6.209326px;}
.h15_c00446{height:9.340986px;}
.h4_c00446{height:12.418652px;}
.hd_c00446{height:12.820986px;}
.h6_c00446{height:15.550313px;}
.h7_c00446{height:18.681973px;}
.h2_c00446{height:21.759639px;}
.hc_c00446{height:24.891299px;}
.he_c00446{height:31.100625px;}
.h11_c00446{height:37.309951px;}
.h12_c00446{height:40.441611px;}
.h13_c00446{height:43.519277px;}
.h14_c00446{height:52.860264px;}
.hf_c00446{height:55.991924px;}
.hb_c00446{height:59.069590px;}
.h9_c00446{height:62.201250px;}
.h10_c00446{height:65.332910px;}
.ha_c00446{height:68.410576px;}
.h0_c00446{height:1515.450000px;}
.h1_c00446{height:1515.750000px;}
.w0_c00446{width:1079.130000px;}
.w1_c00446{width:1079.250000px;}
.x0_c00446{left:0.000000px;}
.x1b_c00446{left:239.325000px;}
.x1c_c00446{left:247.110000px;}
.xf_c00446{left:252.285000px;}
.x9_c00446{left:263.520000px;}
.x13_c00446{left:278.205000px;}
.x1d_c00446{left:289.440000px;}
.x1e_c00446{left:303.270000px;}
.x10_c00446{left:304.995000px;}
.x1f_c00446{left:350.790000px;}
.x20_c00446{left:360.285000px;}
.x21_c00446{left:375.840000px;}
.x2_c00446{left:399.165000px;}
.x3_c00446{left:407.805000px;}
.x22_c00446{left:417.315000px;}
.xa_c00446{left:427.680000px;}
.x14_c00446{left:431.130000px;}
.x23_c00446{left:436.320000px;}
.x4_c00446{left:441.510000px;}
.x24_c00446{left:451.005000px;}
.xb_c00446{left:463.965000px;}
.x5_c00446{left:466.560000px;}
.x25_c00446{left:469.155000px;}
.xc_c00446{left:476.925000px;}
.x26_c00446{left:488.160000px;}
.x15_c00446{left:496.800000px;}
.x27_c00446{left:507.165000px;}
.x11_c00446{left:512.355000px;}
.x28_c00446{left:525.315000px;}
.x29_c00446{left:537.405000px;}
.x16_c00446{left:546.915000px;}
.x2a_c00446{left:559.005000px;}
.x17_c00446{left:560.730000px;}
.x18_c00446{left:570.240000px;}
.x19_c00446{left:577.155000px;}
.xd_c00446{left:594.435000px;}
.x1a_c00446{left:609.120000px;}
.x2b_c00446{left:611.715000px;}
.x2c_c00446{left:628.995000px;}
.x12_c00446{left:638.490000px;}
.x2d_c00446{left:641.955000px;}
.x2e_c00446{left:660.960000px;}
.x38_c00446{left:667.875000px;}
.x2f_c00446{left:676.515000px;}
.x30_c00446{left:698.970000px;}
.x31_c00446{left:721.440000px;}
.x32_c00446{left:732.675000px;}
.xe_c00446{left:749.955000px;}
.x33_c00446{left:757.725000px;}
.x34_c00446{left:803.520000px;}
.x35_c00446{left:820.800000px;}
.x36_c00446{left:832.035000px;}
.x37_c00446{left:844.125000px;}
.x6_c00446{left:1017.795000px;}
.x8_c00446{left:1022.115000px;}
.x1_c00446{left:1028.160000px;}
.x7_c00446{left:1030.755000px;}
@media print{
.v0_c00446{vertical-align:0.000000pt;}
.v1_c00446{vertical-align:3.093333pt;}
.ls1_c00446{letter-spacing:0.000000pt;}
.ls0_c00446{letter-spacing:495.981056pt;}
.ws0_c00446{word-spacing:0.000000pt;}
.fs6_c00446{font-size:3.072000pt;}
.fs1_c00446{font-size:5.333333pt;}
.fs3_c00446{font-size:6.133333pt;}
.fsb_c00446{font-size:9.226667pt;}
.fs2_c00446{font-size:12.266667pt;}
.fs4_c00446{font-size:15.360000pt;}
.fs5_c00446{font-size:18.453333pt;}
.fs0_c00446{font-size:21.493333pt;}
.fsa_c00446{font-size:24.586667pt;}
.fsc_c00446{font-size:30.720000pt;}
.fsf_c00446{font-size:36.853333pt;}
.fs10_c00446{font-size:39.946667pt;}
.fs11_c00446{font-size:42.986667pt;}
.fs12_c00446{font-size:52.213333pt;}
.fsd_c00446{font-size:55.306667pt;}
.fs9_c00446{font-size:58.346667pt;}
.fs7_c00446{font-size:61.440000pt;}
.fse_c00446{font-size:64.533333pt;}
.fs8_c00446{font-size:67.573333pt;}
.y0_c00446{bottom:0.000000pt;}
.y1f_c00446{bottom:869.373333pt;}
.y1e_c00446{bottom:870.146667pt;}
.y1a_c00446{bottom:880.133333pt;}
.y18_c00446{bottom:880.893333pt;}
.y16_c00446{bottom:882.426667pt;}
.y17_c00446{bottom:883.200000pt;}
.y15_c00446{bottom:883.973333pt;}
.y1d_c00446{bottom:885.506667pt;}
.y1b_c00446{bottom:886.266667pt;}
.y19_c00446{bottom:887.040000pt;}
.y1c_c00446{bottom:887.813333pt;}
.y13_c00446{bottom:897.026667pt;}
.y11_c00446{bottom:898.560000pt;}
.y14_c00446{bottom:899.333333pt;}
.y10_c00446{bottom:900.866667pt;}
.y12_c00446{bottom:901.626667pt;}
.yf_c00446{bottom:903.173333pt;}
.yd_c00446{bottom:903.933333pt;}
.ye_c00446{bottom:904.706667pt;}
.yc_c00446{bottom:905.466667pt;}
.yb_c00446{bottom:920.826667pt;}
.y8_c00446{bottom:921.600000pt;}
.y9_c00446{bottom:922.373333pt;}
.ya_c00446{bottom:923.133333pt;}
.y7_c00446{bottom:1042.173333pt;}
.y6_c00446{bottom:1084.413333pt;}
.y5_c00446{bottom:1097.466667pt;}
.y1_c00446{bottom:1114.373333pt;}
.y2_c00446{bottom:1277.186667pt;}
.y4_c00446{bottom:1278.720000pt;}
.y3_c00446{bottom:1281.026667pt;}
.h8_c00446{height:2.764500pt;}
.h3_c00446{height:4.799479pt;}
.h5_c00446{height:5.519401pt;}
.h15_c00446{height:8.303099pt;}
.h4_c00446{height:11.038802pt;}
.hd_c00446{height:11.396432pt;}
.h6_c00446{height:13.822500pt;}
.h7_c00446{height:16.606198pt;}
.h2_c00446{height:19.341901pt;}
.hc_c00446{height:22.125599pt;}
.he_c00446{height:27.645000pt;}
.h11_c00446{height:33.164401pt;}
.h12_c00446{height:35.948099pt;}
.h13_c00446{height:38.683802pt;}
.h14_c00446{height:46.986901pt;}
.hf_c00446{height:49.770599pt;}
.hb_c00446{height:52.506302pt;}
.h9_c00446{height:55.290000pt;}
.h10_c00446{height:58.073698pt;}
.ha_c00446{height:60.809401pt;}
.h0_c00446{height:1347.066667pt;}
.h1_c00446{height:1347.333333pt;}
.w0_c00446{width:959.226667pt;}
.w1_c00446{width:959.333333pt;}
.x0_c00446{left:0.000000pt;}
.x1b_c00446{left:212.733333pt;}
.x1c_c00446{left:219.653333pt;}
.xf_c00446{left:224.253333pt;}
.x9_c00446{left:234.240000pt;}
.x13_c00446{left:247.293333pt;}
.x1d_c00446{left:257.280000pt;}
.x1e_c00446{left:269.573333pt;}
.x10_c00446{left:271.106667pt;}
.x1f_c00446{left:311.813333pt;}
.x20_c00446{left:320.253333pt;}
.x21_c00446{left:334.080000pt;}
.x2_c00446{left:354.813333pt;}
.x3_c00446{left:362.493333pt;}
.x22_c00446{left:370.946667pt;}
.xa_c00446{left:380.160000pt;}
.x14_c00446{left:383.226667pt;}
.x23_c00446{left:387.840000pt;}
.x4_c00446{left:392.453333pt;}
.x24_c00446{left:400.893333pt;}
.xb_c00446{left:412.413333pt;}
.x5_c00446{left:414.720000pt;}
.x25_c00446{left:417.026667pt;}
.xc_c00446{left:423.933333pt;}
.x26_c00446{left:433.920000pt;}
.x15_c00446{left:441.600000pt;}
.x27_c00446{left:450.813333pt;}
.x11_c00446{left:455.426667pt;}
.x28_c00446{left:466.946667pt;}
.x29_c00446{left:477.693333pt;}
.x16_c00446{left:486.146667pt;}
.x2a_c00446{left:496.893333pt;}
.x17_c00446{left:498.426667pt;}
.x18_c00446{left:506.880000pt;}
.x19_c00446{left:513.026667pt;}
.xd_c00446{left:528.386667pt;}
.x1a_c00446{left:541.440000pt;}
.x2b_c00446{left:543.746667pt;}
.x2c_c00446{left:559.106667pt;}
.x12_c00446{left:567.546667pt;}
.x2d_c00446{left:570.626667pt;}
.x2e_c00446{left:587.520000pt;}
.x38_c00446{left:593.666667pt;}
.x2f_c00446{left:601.346667pt;}
.x30_c00446{left:621.306667pt;}
.x31_c00446{left:641.280000pt;}
.x32_c00446{left:651.266667pt;}
.xe_c00446{left:666.626667pt;}
.x33_c00446{left:673.533333pt;}
.x34_c00446{left:714.240000pt;}
.x35_c00446{left:729.600000pt;}
.x36_c00446{left:739.586667pt;}
.x37_c00446{left:750.333333pt;}
.x6_c00446{left:904.706667pt;}
.x8_c00446{left:908.546667pt;}
.x1_c00446{left:913.920000pt;}
.x7_c00446{left:916.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_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_7f2549e518a06e38c92619d4.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.109863;font-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_c00447{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.md_c00447{transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);}
.m79_c00447{transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);}
.m4a_c00447{transform:matrix(0.079500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079500,0.000000,0.000000,0.250000,0,0);}
.m34_c00447{transform:matrix(0.079750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079750,0.000000,0.000000,0.250000,0,0);}
.m58_c00447{transform:matrix(0.089500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089500,0.000000,0.000000,0.250000,0,0);}
.m50_c00447{transform:matrix(0.093450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093450,0.000000,0.000000,0.250000,0,0);}
.m38_c00447{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m2e_c00447{transform:matrix(0.098175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098175,0.000000,0.000000,0.250000,0,0);}
.m5d_c00447{transform:matrix(0.099975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099975,0.000000,0.000000,0.250000,0,0);}
.m9_c00447{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);}
.m36_c00447{transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);}
.m92_c00447{transform:matrix(0.109450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109450,0.000000,0.000000,0.250000,0,0);}
.m4b_c00447{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);}
.m4_c00447{transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);}
.m1f_c00447{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m70_c00447{transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);}
.m69_c00447{transform:matrix(0.128350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128350,0.000000,0.000000,0.250000,0,0);}
.m99_c00447{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m67_c00447{transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);}
.m89_c00447{transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);}
.m23_c00447{transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);}
.m62_c00447{transform:matrix(0.140400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140400,0.000000,0.000000,0.250000,0,0);}
.m0_c00447{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7f_c00447{transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);}
.m63_c00447{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m8e_c00447{transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);}
.m7_c00447{transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);}
.m7d_c00447{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m4e_c00447{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m22_c00447{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.m6_c00447{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.m51_c00447{transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);}
.m85_c00447{transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);}
.m8f_c00447{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m52_c00447{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.m8d_c00447{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m33_c00447{transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);}
.m37_c00447{transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);}
.m8a_c00447{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.m6c_c00447{transform:matrix(0.164675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164675,0.000000,0.000000,0.250000,0,0);}
.m94_c00447{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m88_c00447{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m56_c00447{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.mc_c00447{transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);}
.m7c_c00447{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.m8c_c00447{transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);}
.m77_c00447{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.m3c_c00447{transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);}
.m3b_c00447{transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);}
.m14_c00447{transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);}
.m13_c00447{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m75_c00447{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);}
.m30_c00447{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m41_c00447{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);}
.m7b_c00447{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m7e_c00447{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m44_c00447{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);}
.m5c_c00447{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m39_c00447{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);}
.m87_c00447{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.m16_c00447{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);}
.m15_c00447{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);}
.m66_c00447{transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);}
.m65_c00447{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m4c_c00447{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m2b_c00447{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m47_c00447{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.m71_c00447{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m6e_c00447{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.m78_c00447{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m98_c00447{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);}
.m40_c00447{transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);}
.m95_c00447{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);}
.m2c_c00447{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.m4f_c00447{transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);}
.m54_c00447{transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);}
.m31_c00447{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.m5f_c00447{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.ma_c00447{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);}
.m4d_c00447{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);}
.m5a_c00447{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);}
.m2a_c00447{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_c00447{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);}
.m8_c00447{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);}
.m43_c00447{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);}
.m48_c00447{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3d_c00447{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);}
.me_c00447{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);}
.m42_c00447{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m32_c00447{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6d_c00447{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);}
.m21_c00447{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12_c00447{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);}
.m1_c00447{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c00447{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m53_c00447{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);}
.m45_c00447{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);}
.m24_c00447{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);}
.m19_c00447{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m80_c00447{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7a_c00447{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);}
.m17_c00447{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m86_c00447{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1d_c00447{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m26_c00447{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3a_c00447{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m96_c00447{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m20_c00447{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);}
.m68_c00447{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00447{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m5_c00447{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);}
.m1e_c00447{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00447{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8b_c00447{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m61_c00447{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);}
.m82_c00447{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m57_c00447{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m64_c00447{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00447{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m35_c00447{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);}
.m5b_c00447{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00447{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);}
.m1c_c00447{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mb_c00447{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00447{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m76_c00447{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m59_c00447{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m28_c00447{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m6b_c00447{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m84_c00447{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m46_c00447{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);}
.m18_c00447{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m6a_c00447{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m10_c00447{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m49_c00447{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m72_c00447{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mf_c00447{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m29_c00447{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m60_c00447{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00447{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00447{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m2_c00447{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m6f_c00447{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);}
.m90_c00447{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m25_c00447{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m93_c00447{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m27_c00447{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);}
.m74_c00447{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m73_c00447{transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);}
.m91_c00447{transform:matrix(1.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.350000,0.000000,0.000000,0.250000,0,0);}
.m97_c00447{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m83_c00447{transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);}
.m81_c00447{transform:matrix(5.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.315000,0.000000,0.000000,0.250000,0,0);}
.v1_c00447{vertical-align:-3.480000px;}
.v0_c00447{vertical-align:0.000000px;}
.ls1_c00447{letter-spacing:0.000000px;}
.ls0_c00447{letter-spacing:4.002000px;}
.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;}
.fs0_c00447{font-size:3.456000px;}
.fs1_c00447{font-size:6.000000px;}
.fs5_c00447{font-size:6.900000px;}
.fs9_c00447{font-size:10.380000px;}
.fs11_c00447{font-size:13.800000px;}
.fs2_c00447{font-size:17.280000px;}
.fs17_c00447{font-size:20.760000px;}
.fsf_c00447{font-size:24.180000px;}
.fs8_c00447{font-size:27.660000px;}
.fse_c00447{font-size:31.080000px;}
.fs4_c00447{font-size:34.560000px;}
.fsa_c00447{font-size:38.040000px;}
.fs1e_c00447{font-size:41.460000px;}
.fsb_c00447{font-size:44.940000px;}
.fs1a_c00447{font-size:48.360000px;}
.fs10_c00447{font-size:51.840000px;}
.fsd_c00447{font-size:55.320000px;}
.fs16_c00447{font-size:58.740000px;}
.fs19_c00447{font-size:62.220000px;}
.fs7_c00447{font-size:65.640000px;}
.fsc_c00447{font-size:69.120000px;}
.fs1c_c00447{font-size:72.600000px;}
.fs1f_c00447{font-size:76.020000px;}
.fs18_c00447{font-size:79.500000px;}
.fs20_c00447{font-size:82.920000px;}
.fs12_c00447{font-size:86.400000px;}
.fs6_c00447{font-size:89.880000px;}
.fs24_c00447{font-size:93.300000px;}
.fs14_c00447{font-size:96.780000px;}
.fs21_c00447{font-size:100.200000px;}
.fs15_c00447{font-size:103.680000px;}
.fs13_c00447{font-size:107.160000px;}
.fs23_c00447{font-size:110.580000px;}
.fs1d_c00447{font-size:117.480000px;}
.fs1b_c00447{font-size:120.960000px;}
.fs22_c00447{font-size:124.440000px;}
.fs3_c00447{font-size:248.820000px;}
.y0_c00447{bottom:0.000000px;}
.yb3_c00447{bottom:765.510000px;}
.yb4_c00447{bottom:770.685000px;}
.ya5_c00447{bottom:895.110000px;}
.ya8_c00447{bottom:895.965000px;}
.ya9_c00447{bottom:897.690000px;}
.ya7_c00447{bottom:901.155000px;}
.ya6_c00447{bottom:902.010000px;}
.yb1_c00447{bottom:908.070000px;}
.yb2_c00447{bottom:910.650000px;}
.ya1_c00447{bottom:912.390000px;}
.ya2_c00447{bottom:914.115000px;}
.ya4_c00447{bottom:914.970000px;}
.ya0_c00447{bottom:915.840000px;}
.y9f_c00447{bottom:918.435000px;}
.yb0_c00447{bottom:919.290000px;}
.ya3_c00447{bottom:920.160000px;}
.y97_c00447{bottom:938.310000px;}
.y9c_c00447{bottom:941.760000px;}
.y9d_c00447{bottom:942.630000px;}
.y96_c00447{bottom:943.485000px;}
.y8e_c00447{bottom:944.355000px;}
.y95_c00447{bottom:945.210000px;}
.y98_c00447{bottom:946.080000px;}
.y9b_c00447{bottom:946.950000px;}
.yb8_c00447{bottom:947.805000px;}
.y99_c00447{bottom:948.675000px;}
.y8f_c00447{bottom:949.530000px;}
.yb7_c00447{bottom:950.400000px;}
.y9a_c00447{bottom:951.270000px;}
.y90_c00447{bottom:953.850000px;}
.y9e_c00447{bottom:954.720000px;}
.y91_c00447{bottom:958.170000px;}
.y92_c00447{bottom:959.040000px;}
.y94_c00447{bottom:959.910000px;}
.y93_c00447{bottom:960.765000px;}
.y8c_c00447{bottom:961.635000px;}
.y8b_c00447{bottom:963.360000px;}
.y8d_c00447{bottom:966.810000px;}
.y78_c00447{bottom:985.830000px;}
.y88_c00447{bottom:987.555000px;}
.y84_c00447{bottom:988.410000px;}
.y83_c00447{bottom:990.150000px;}
.y86_c00447{bottom:991.005000px;}
.y8a_c00447{bottom:991.875000px;}
.y87_c00447{bottom:992.730000px;}
.y89_c00447{bottom:993.600000px;}
.y79_c00447{bottom:994.470000px;}
.y82_c00447{bottom:995.325000px;}
.y85_c00447{bottom:997.050000px;}
.y76_c00447{bottom:999.645000px;}
.y74_c00447{bottom:1000.515000px;}
.y75_c00447{bottom:1002.240000px;}
.y7e_c00447{bottom:1004.835000px;}
.y7a_c00447{bottom:1005.690000px;}
.y7c_c00447{bottom:1006.560000px;}
.y7d_c00447{bottom:1007.430000px;}
.y80_c00447{bottom:1009.155000px;}
.y7f_c00447{bottom:1010.010000px;}
.y77_c00447{bottom:1010.880000px;}
.y7b_c00447{bottom:1013.475000px;}
.y81_c00447{bottom:1014.330000px;}
.y6f_c00447{bottom:1016.070000px;}
.y6d_c00447{bottom:1016.925000px;}
.y6e_c00447{bottom:1017.795000px;}
.y70_c00447{bottom:1020.390000px;}
.y72_c00447{bottom:1021.245000px;}
.y71_c00447{bottom:1022.115000px;}
.y73_c00447{bottom:1029.030000px;}
.y62_c00447{bottom:1034.205000px;}
.y65_c00447{bottom:1035.930000px;}
.y6a_c00447{bottom:1036.800000px;}
.y64_c00447{bottom:1038.525000px;}
.y63_c00447{bottom:1040.250000px;}
.y6b_c00447{bottom:1041.120000px;}
.y67_c00447{bottom:1043.715000px;}
.y68_c00447{bottom:1044.570000px;}
.y69_c00447{bottom:1045.440000px;}
.y61_c00447{bottom:1046.310000px;}
.y66_c00447{bottom:1050.630000px;}
.y6c_c00447{bottom:1053.210000px;}
.y5c_c00447{bottom:1059.270000px;}
.y5f_c00447{bottom:1062.720000px;}
.y5d_c00447{bottom:1063.590000px;}
.y60_c00447{bottom:1066.170000px;}
.y5e_c00447{bottom:1069.635000px;}
.y55_c00447{bottom:1083.450000px;}
.y57_c00447{bottom:1086.045000px;}
.yad_c00447{bottom:1086.915000px;}
.yaf_c00447{bottom:1088.640000px;}
.yae_c00447{bottom:1090.365000px;}
.y56_c00447{bottom:1092.090000px;}
.y5b_c00447{bottom:1096.410000px;}
.y5a_c00447{bottom:1099.005000px;}
.yac_c00447{bottom:1100.730000px;}
.y58_c00447{bottom:1103.325000px;}
.y59_c00447{bottom:1106.790000px;}
.y4d_c00447{bottom:1117.155000px;}
.y52_c00447{bottom:1118.010000px;}
.y51_c00447{bottom:1118.880000px;}
.y4e_c00447{bottom:1119.750000px;}
.y53_c00447{bottom:1120.605000px;}
.y4f_c00447{bottom:1121.475000px;}
.y54_c00447{bottom:1123.200000px;}
.y50_c00447{bottom:1125.795000px;}
.y4c_c00447{bottom:1126.650000px;}
.y4b_c00447{bottom:1137.030000px;}
.y4a_c00447{bottom:1139.610000px;}
.y48_c00447{bottom:1141.350000px;}
.y46_c00447{bottom:1142.205000px;}
.y44_c00447{bottom:1143.075000px;}
.y47_c00447{bottom:1143.930000px;}
.y49_c00447{bottom:1144.800000px;}
.y3e_c00447{bottom:1149.120000px;}
.y45_c00447{bottom:1149.990000px;}
.y43_c00447{bottom:1155.165000px;}
.y3f_c00447{bottom:1161.210000px;}
.y42_c00447{bottom:1162.080000px;}
.y41_c00447{bottom:1167.270000px;}
.y40_c00447{bottom:1169.850000px;}
.yab_c00447{bottom:1170.720000px;}
.yaa_c00447{bottom:1173.315000px;}
.y39_c00447{bottom:1179.360000px;}
.y3c_c00447{bottom:1186.275000px;}
.y3a_c00447{bottom:1189.725000px;}
.y3b_c00447{bottom:1193.190000px;}
.y3d_c00447{bottom:1195.770000px;}
.y33_c00447{bottom:1213.050000px;}
.y2b_c00447{bottom:1213.920000px;}
.y2a_c00447{bottom:1214.790000px;}
.y2e_c00447{bottom:1216.515000px;}
.y2f_c00447{bottom:1217.370000px;}
.y32_c00447{bottom:1218.240000px;}
.y37_c00447{bottom:1219.110000px;}
.y2c_c00447{bottom:1219.965000px;}
.y2d_c00447{bottom:1220.835000px;}
.y31_c00447{bottom:1221.690000px;}
.y30_c00447{bottom:1222.560000px;}
.y35_c00447{bottom:1223.430000px;}
.y36_c00447{bottom:1225.155000px;}
.y38_c00447{bottom:1226.010000px;}
.y29_c00447{bottom:1227.750000px;}
.y34_c00447{bottom:1228.605000px;}
.y3_c00447{bottom:1232.925000px;}
.y2_c00447{bottom:1233.795000px;}
.y20_c00447{bottom:1235.520000px;}
.y1_c00447{bottom:1236.390000px;}
.y21_c00447{bottom:1237.245000px;}
.y23_c00447{bottom:1238.970000px;}
.y27_c00447{bottom:1239.840000px;}
.y22_c00447{bottom:1240.710000px;}
.y25_c00447{bottom:1241.565000px;}
.y24_c00447{bottom:1242.435000px;}
.y26_c00447{bottom:1243.290000px;}
.y1e_c00447{bottom:1245.885000px;}
.y28_c00447{bottom:1246.755000px;}
.y1f_c00447{bottom:1247.610000px;}
.y16_c00447{bottom:1257.990000px;}
.y17_c00447{bottom:1259.715000px;}
.y1a_c00447{bottom:1260.570000px;}
.y15_c00447{bottom:1261.440000px;}
.y19_c00447{bottom:1262.310000px;}
.y18_c00447{bottom:1264.035000px;}
.y1b_c00447{bottom:1267.485000px;}
.y1c_c00447{bottom:1268.355000px;}
.y1d_c00447{bottom:1270.950000px;}
.yb5_c00447{bottom:1271.805000px;}
.yb6_c00447{bottom:1276.995000px;}
.y8_c00447{bottom:1286.490000px;}
.y5_c00447{bottom:1287.360000px;}
.yd_c00447{bottom:1289.085000px;}
.y10_c00447{bottom:1289.955000px;}
.yc_c00447{bottom:1290.810000px;}
.ya_c00447{bottom:1291.680000px;}
.y6_c00447{bottom:1292.550000px;}
.ye_c00447{bottom:1293.405000px;}
.y11_c00447{bottom:1294.275000px;}
.y13_c00447{bottom:1295.130000px;}
.y12_c00447{bottom:1296.870000px;}
.yf_c00447{bottom:1298.595000px;}
.yb_c00447{bottom:1299.450000px;}
.y7_c00447{bottom:1300.320000px;}
.y14_c00447{bottom:1303.770000px;}
.y9_c00447{bottom:1308.960000px;}
.y4_c00447{bottom:1309.830000px;}
.h1_c00447{height:3.110063px;}
.h2_c00447{height:5.399414px;}
.h6_c00447{height:6.209326px;}
.ha_c00447{height:9.340986px;}
.h12_c00447{height:12.418652px;}
.h3_c00447{height:15.550313px;}
.h18_c00447{height:18.681973px;}
.h10_c00447{height:21.759639px;}
.h9_c00447{height:24.891299px;}
.hf_c00447{height:27.968965px;}
.h5_c00447{height:31.100625px;}
.hb_c00447{height:34.232285px;}
.h1f_c00447{height:37.309951px;}
.hc_c00447{height:40.441611px;}
.h1b_c00447{height:43.519277px;}
.h11_c00447{height:46.650937px;}
.he_c00447{height:49.782598px;}
.h17_c00447{height:52.860264px;}
.h1a_c00447{height:55.991924px;}
.h8_c00447{height:59.069590px;}
.hd_c00447{height:62.201250px;}
.h1d_c00447{height:65.332910px;}
.h20_c00447{height:68.410576px;}
.h19_c00447{height:71.542236px;}
.h21_c00447{height:74.619902px;}
.h13_c00447{height:77.751563px;}
.h7_c00447{height:80.883223px;}
.h25_c00447{height:83.960889px;}
.h15_c00447{height:87.092549px;}
.h22_c00447{height:90.170215px;}
.h16_c00447{height:93.301875px;}
.h14_c00447{height:96.433535px;}
.h24_c00447{height:99.511201px;}
.h1e_c00447{height:105.720527px;}
.h1c_c00447{height:108.852188px;}
.h23_c00447{height:111.983848px;}
.h4_c00447{height:223.913701px;}
.h0_c00447{height:1512.000000px;}
.w0_c00447{width:1100.730000px;}
.w1_c00447{width:1101.000000px;}
.x0_c00447{left:0.000000px;}
.x95_c00447{left:60.480000px;}
.x99_c00447{left:122.685000px;}
.x98_c00447{left:125.280000px;}
.x96_c00447{left:127.005000px;}
.x92_c00447{left:136.515000px;}
.x1_c00447{left:138.240000px;}
.x2_c00447{left:143.430000px;}
.x3_c00447{left:148.605000px;}
.x93_c00447{left:157.245000px;}
.x4_c00447{left:161.565000px;}
.x9c_c00447{left:165.030000px;}
.x9a_c00447{left:173.670000px;}
.x97_c00447{left:183.165000px;}
.x94_c00447{left:184.890000px;}
.x9d_c00447{left:191.805000px;}
.x9b_c00447{left:198.720000px;}
.x9e_c00447{left:204.765000px;}
.x2a_c00447{left:215.130000px;}
.x5_c00447{left:224.640000px;}
.x20_c00447{left:228.091305px;}
.x2b_c00447{left:233.280000px;}
.x6_c00447{left:239.325000px;}
.x7_c00447{left:247.965000px;}
.x2c_c00447{left:250.560000px;}
.x8_c00447{left:252.285000px;}
.x21_c00447{left:254.880000px;}
.x2d_c00447{left:273.030000px;}
.x9_c00447{left:285.990000px;}
.x2e_c00447{left:288.570000px;}
.x3c_c00447{left:302.400000px;}
.x2f_c00447{left:319.680000px;}
.xa_c00447{left:330.915000px;}
.x3d_c00447{left:334.365000px;}
.x30_c00447{left:336.090000px;}
.x22_c00447{left:355.965000px;}
.xb_c00447{left:370.650000px;}
.x3e_c00447{left:378.435000px;}
.x31_c00447{left:386.205000px;}
.x32_c00447{left:396.570000px;}
.xc_c00447{left:407.805000px;}
.x33_c00447{left:410.400000px;}
.x3f_c00447{left:413.850000px;}
.x23_c00447{left:438.915000px;}
.xd_c00447{left:441.510000px;}
.xe_c00447{left:455.325000px;}
.xf_c00447{left:459.645000px;}
.x40_c00447{left:482.115000px;}
.x10_c00447{left:486.435000px;}
.x11_c00447{left:491.610000px;}
.x12_c00447{left:496.800000px;}
.x41_c00447{left:501.120000px;}
.x76_c00447{left:502.845000px;}
.x34_c00447{left:505.440000px;}
.x42_c00447{left:522.720000px;}
.x77_c00447{left:528.765000px;}
.x43_c00447{left:534.810000px;}
.x44_c00447{left:540.000000px;}
.x35_c00447{left:544.320000px;}
.x78_c00447{left:551.235000px;}
.x80_c00447{left:556.410000px;}
.x13_c00447{left:559.005000px;}
.x24_c00447{left:562.470000px;}
.x51_c00447{left:565.050000px;}
.x45_c00447{left:566.790000px;}
.x25_c00447{left:570.240000px;}
.x63_c00447{left:571.965000px;}
.x46_c00447{left:573.690000px;}
.x90_c00447{left:575.430000px;}
.x59_c00447{left:583.200000px;}
.x8b_c00447{left:584.925000px;}
.x81_c00447{left:586.650000px;}
.x14_c00447{left:588.390000px;}
.x36_c00447{left:590.115000px;}
.x91_c00447{left:592.710000px;}
.x60_c00447{left:594.435000px;}
.x47_c00447{left:597.030000px;}
.x82_c00447{left:600.480000px;}
.x6d_c00447{left:602.205000px;}
.x37_c00447{left:603.930000px;}
.x38_c00447{left:606.525000px;}
.x5a_c00447{left:608.250000px;}
.x39_c00447{left:620.355000px;}
.x6f_c00447{left:622.080000px;}
.x48_c00447{left:625.530000px;}
.x56_c00447{left:632.445000px;}
.x5b_c00447{left:637.635000px;}
.x79_c00447{left:644.550000px;}
.x49_c00447{left:648.000000px;}
.x57_c00447{left:650.595000px;}
.x83_c00447{left:654.045000px;}
.x52_c00447{left:658.365000px;}
.x3a_c00447{left:660.960000px;}
.x4a_c00447{left:664.410000px;}
.x7a_c00447{left:673.920000px;}
.x26_c00447{left:676.515000px;}
.x15_c00447{left:680.835000px;}
.x87_c00447{left:685.155000px;}
.x64_c00447{left:686.880000px;}
.x86_c00447{left:688.605000px;}
.x16_c00447{left:692.925000px;}
.x7b_c00447{left:694.650000px;}
.x61_c00447{left:696.390000px;}
.x17_c00447{left:699.840000px;}
.x53_c00447{left:710.205000px;}
.x62_c00447{left:714.525000px;}
.x18_c00447{left:717.120000px;}
.x5c_c00447{left:719.715000px;}
.x8c_c00447{left:721.440000px;}
.x19_c00447{left:731.805000px;}
.x27_c00447{left:734.400000px;}
.x5d_c00447{left:736.995000px;}
.x54_c00447{left:738.720000px;}
.x68_c00447{left:740.445000px;}
.x4b_c00447{left:742.170000px;}
.x65_c00447{left:743.910000px;}
.x88_c00447{left:745.635000px;}
.x4c_c00447{left:748.230000px;}
.x84_c00447{left:755.130000px;}
.x70_c00447{left:759.450000px;}
.x4d_c00447{left:761.190000px;}
.x58_c00447{left:766.365000px;}
.x6e_c00447{left:768.090000px;}
.x4e_c00447{left:771.555000px;}
.x1a_c00447{left:774.150000px;}
.x66_c00447{left:778.470000px;}
.x7c_c00447{left:780.195000px;}
.x85_c00447{left:781.920000px;}
.x1b_c00447{left:783.645000px;}
.x4f_c00447{left:787.110000px;}
.x71_c00447{left:789.690000px;}
.x28_c00447{left:794.880000px;}
.x7d_c00447{left:797.475000px;}
.x5e_c00447{left:799.200000px;}
.x1c_c00447{left:802.650000px;}
.x7e_c00447{left:804.390000px;}
.x8d_c00447{left:806.970000px;}
.x73_c00447{left:809.565000px;}
.x55_c00447{left:813.885000px;}
.x69_c00447{left:816.480000px;}
.x8e_c00447{left:819.930000px;}
.x1d_c00447{left:825.120000px;}
.x6a_c00447{left:826.845000px;}
.x5f_c00447{left:828.570000px;}
.x74_c00447{left:830.310000px;}
.x89_c00447{left:832.035000px;}
.x6b_c00447{left:835.485000px;}
.x8f_c00447{left:843.270000px;}
.x29_c00447{left:844.995000px;}
.x1e_c00447{left:847.590000px;}
.x6c_c00447{left:849.315000px;}
.x8a_c00447{left:852.765000px;}
.x50_c00447{left:855.360000px;}
.x67_c00447{left:858.810000px;}
.x3b_c00447{left:863.130000px;}
.x7f_c00447{left:865.725000px;}
.x1f_c00447{left:867.450000px;}
.x75_c00447{left:876.090000px;}
.x72_c00447{left:895.965000px;}
.xa1_c00447{left:915.840000px;}
.xa2_c00447{left:933.120000px;}
.xa4_c00447{left:940.035000px;}
.xa5_c00447{left:945.210000px;}
.xa3_c00447{left:948.675000px;}
.xa6_c00447{left:951.270000px;}
.x9f_c00447{left:969.405000px;}
.xa0_c00447{left:986.685000px;}
@media print{
.v1_c00447{vertical-align:-3.093333pt;}
.v0_c00447{vertical-align:0.000000pt;}
.ls1_c00447{letter-spacing:0.000000pt;}
.ls0_c00447{letter-spacing:3.557333pt;}
.ws0_c00447{word-spacing:0.000000pt;}
.fs0_c00447{font-size:3.072000pt;}
.fs1_c00447{font-size:5.333333pt;}
.fs5_c00447{font-size:6.133333pt;}
.fs9_c00447{font-size:9.226667pt;}
.fs11_c00447{font-size:12.266667pt;}
.fs2_c00447{font-size:15.360000pt;}
.fs17_c00447{font-size:18.453333pt;}
.fsf_c00447{font-size:21.493333pt;}
.fs8_c00447{font-size:24.586667pt;}
.fse_c00447{font-size:27.626667pt;}
.fs4_c00447{font-size:30.720000pt;}
.fsa_c00447{font-size:33.813333pt;}
.fs1e_c00447{font-size:36.853333pt;}
.fsb_c00447{font-size:39.946667pt;}
.fs1a_c00447{font-size:42.986667pt;}
.fs10_c00447{font-size:46.080000pt;}
.fsd_c00447{font-size:49.173333pt;}
.fs16_c00447{font-size:52.213333pt;}
.fs19_c00447{font-size:55.306667pt;}
.fs7_c00447{font-size:58.346667pt;}
.fsc_c00447{font-size:61.440000pt;}
.fs1c_c00447{font-size:64.533333pt;}
.fs1f_c00447{font-size:67.573333pt;}
.fs18_c00447{font-size:70.666667pt;}
.fs20_c00447{font-size:73.706667pt;}
.fs12_c00447{font-size:76.800000pt;}
.fs6_c00447{font-size:79.893333pt;}
.fs24_c00447{font-size:82.933333pt;}
.fs14_c00447{font-size:86.026667pt;}
.fs21_c00447{font-size:89.066667pt;}
.fs15_c00447{font-size:92.160000pt;}
.fs13_c00447{font-size:95.253333pt;}
.fs23_c00447{font-size:98.293333pt;}
.fs1d_c00447{font-size:104.426667pt;}
.fs1b_c00447{font-size:107.520000pt;}
.fs22_c00447{font-size:110.613333pt;}
.fs3_c00447{font-size:221.173333pt;}
.y0_c00447{bottom:0.000000pt;}
.yb3_c00447{bottom:680.453333pt;}
.yb4_c00447{bottom:685.053333pt;}
.ya5_c00447{bottom:795.653333pt;}
.ya8_c00447{bottom:796.413333pt;}
.ya9_c00447{bottom:797.946667pt;}
.ya7_c00447{bottom:801.026667pt;}
.ya6_c00447{bottom:801.786667pt;}
.yb1_c00447{bottom:807.173333pt;}
.yb2_c00447{bottom:809.466667pt;}
.ya1_c00447{bottom:811.013333pt;}
.ya2_c00447{bottom:812.546667pt;}
.ya4_c00447{bottom:813.306667pt;}
.ya0_c00447{bottom:814.080000pt;}
.y9f_c00447{bottom:816.386667pt;}
.yb0_c00447{bottom:817.146667pt;}
.ya3_c00447{bottom:817.920000pt;}
.y97_c00447{bottom:834.053333pt;}
.y9c_c00447{bottom:837.120000pt;}
.y9d_c00447{bottom:837.893333pt;}
.y96_c00447{bottom:838.653333pt;}
.y8e_c00447{bottom:839.426667pt;}
.y95_c00447{bottom:840.186667pt;}
.y98_c00447{bottom:840.960000pt;}
.y9b_c00447{bottom:841.733333pt;}
.yb8_c00447{bottom:842.493333pt;}
.y99_c00447{bottom:843.266667pt;}
.y8f_c00447{bottom:844.026667pt;}
.yb7_c00447{bottom:844.800000pt;}
.y9a_c00447{bottom:845.573333pt;}
.y90_c00447{bottom:847.866667pt;}
.y9e_c00447{bottom:848.640000pt;}
.y91_c00447{bottom:851.706667pt;}
.y92_c00447{bottom:852.480000pt;}
.y94_c00447{bottom:853.253333pt;}
.y93_c00447{bottom:854.013333pt;}
.y8c_c00447{bottom:854.786667pt;}
.y8b_c00447{bottom:856.320000pt;}
.y8d_c00447{bottom:859.386667pt;}
.y78_c00447{bottom:876.293333pt;}
.y88_c00447{bottom:877.826667pt;}
.y84_c00447{bottom:878.586667pt;}
.y83_c00447{bottom:880.133333pt;}
.y86_c00447{bottom:880.893333pt;}
.y8a_c00447{bottom:881.666667pt;}
.y87_c00447{bottom:882.426667pt;}
.y89_c00447{bottom:883.200000pt;}
.y79_c00447{bottom:883.973333pt;}
.y82_c00447{bottom:884.733333pt;}
.y85_c00447{bottom:886.266667pt;}
.y76_c00447{bottom:888.573333pt;}
.y74_c00447{bottom:889.346667pt;}
.y75_c00447{bottom:890.880000pt;}
.y7e_c00447{bottom:893.186667pt;}
.y7a_c00447{bottom:893.946667pt;}
.y7c_c00447{bottom:894.720000pt;}
.y7d_c00447{bottom:895.493333pt;}
.y80_c00447{bottom:897.026667pt;}
.y7f_c00447{bottom:897.786667pt;}
.y77_c00447{bottom:898.560000pt;}
.y7b_c00447{bottom:900.866667pt;}
.y81_c00447{bottom:901.626667pt;}
.y6f_c00447{bottom:903.173333pt;}
.y6d_c00447{bottom:903.933333pt;}
.y6e_c00447{bottom:904.706667pt;}
.y70_c00447{bottom:907.013333pt;}
.y72_c00447{bottom:907.773333pt;}
.y71_c00447{bottom:908.546667pt;}
.y73_c00447{bottom:914.693333pt;}
.y62_c00447{bottom:919.293333pt;}
.y65_c00447{bottom:920.826667pt;}
.y6a_c00447{bottom:921.600000pt;}
.y64_c00447{bottom:923.133333pt;}
.y63_c00447{bottom:924.666667pt;}
.y6b_c00447{bottom:925.440000pt;}
.y67_c00447{bottom:927.746667pt;}
.y68_c00447{bottom:928.506667pt;}
.y69_c00447{bottom:929.280000pt;}
.y61_c00447{bottom:930.053333pt;}
.y66_c00447{bottom:933.893333pt;}
.y6c_c00447{bottom:936.186667pt;}
.y5c_c00447{bottom:941.573333pt;}
.y5f_c00447{bottom:944.640000pt;}
.y5d_c00447{bottom:945.413333pt;}
.y60_c00447{bottom:947.706667pt;}
.y5e_c00447{bottom:950.786667pt;}
.y55_c00447{bottom:963.066667pt;}
.y57_c00447{bottom:965.373333pt;}
.yad_c00447{bottom:966.146667pt;}
.yaf_c00447{bottom:967.680000pt;}
.yae_c00447{bottom:969.213333pt;}
.y56_c00447{bottom:970.746667pt;}
.y5b_c00447{bottom:974.586667pt;}
.y5a_c00447{bottom:976.893333pt;}
.yac_c00447{bottom:978.426667pt;}
.y58_c00447{bottom:980.733333pt;}
.y59_c00447{bottom:983.813333pt;}
.y4d_c00447{bottom:993.026667pt;}
.y52_c00447{bottom:993.786667pt;}
.y51_c00447{bottom:994.560000pt;}
.y4e_c00447{bottom:995.333333pt;}
.y53_c00447{bottom:996.093333pt;}
.y4f_c00447{bottom:996.866667pt;}
.y54_c00447{bottom:998.400000pt;}
.y50_c00447{bottom:1000.706667pt;}
.y4c_c00447{bottom:1001.466667pt;}
.y4b_c00447{bottom:1010.693333pt;}
.y4a_c00447{bottom:1012.986667pt;}
.y48_c00447{bottom:1014.533333pt;}
.y46_c00447{bottom:1015.293333pt;}
.y44_c00447{bottom:1016.066667pt;}
.y47_c00447{bottom:1016.826667pt;}
.y49_c00447{bottom:1017.600000pt;}
.y3e_c00447{bottom:1021.440000pt;}
.y45_c00447{bottom:1022.213333pt;}
.y43_c00447{bottom:1026.813333pt;}
.y3f_c00447{bottom:1032.186667pt;}
.y42_c00447{bottom:1032.960000pt;}
.y41_c00447{bottom:1037.573333pt;}
.y40_c00447{bottom:1039.866667pt;}
.yab_c00447{bottom:1040.640000pt;}
.yaa_c00447{bottom:1042.946667pt;}
.y39_c00447{bottom:1048.320000pt;}
.y3c_c00447{bottom:1054.466667pt;}
.y3a_c00447{bottom:1057.533333pt;}
.y3b_c00447{bottom:1060.613333pt;}
.y3d_c00447{bottom:1062.906667pt;}
.y33_c00447{bottom:1078.266667pt;}
.y2b_c00447{bottom:1079.040000pt;}
.y2a_c00447{bottom:1079.813333pt;}
.y2e_c00447{bottom:1081.346667pt;}
.y2f_c00447{bottom:1082.106667pt;}
.y32_c00447{bottom:1082.880000pt;}
.y37_c00447{bottom:1083.653333pt;}
.y2c_c00447{bottom:1084.413333pt;}
.y2d_c00447{bottom:1085.186667pt;}
.y31_c00447{bottom:1085.946667pt;}
.y30_c00447{bottom:1086.720000pt;}
.y35_c00447{bottom:1087.493333pt;}
.y36_c00447{bottom:1089.026667pt;}
.y38_c00447{bottom:1089.786667pt;}
.y29_c00447{bottom:1091.333333pt;}
.y34_c00447{bottom:1092.093333pt;}
.y3_c00447{bottom:1095.933333pt;}
.y2_c00447{bottom:1096.706667pt;}
.y20_c00447{bottom:1098.240000pt;}
.y1_c00447{bottom:1099.013333pt;}
.y21_c00447{bottom:1099.773333pt;}
.y23_c00447{bottom:1101.306667pt;}
.y27_c00447{bottom:1102.080000pt;}
.y22_c00447{bottom:1102.853333pt;}
.y25_c00447{bottom:1103.613333pt;}
.y24_c00447{bottom:1104.386667pt;}
.y26_c00447{bottom:1105.146667pt;}
.y1e_c00447{bottom:1107.453333pt;}
.y28_c00447{bottom:1108.226667pt;}
.y1f_c00447{bottom:1108.986667pt;}
.y16_c00447{bottom:1118.213333pt;}
.y17_c00447{bottom:1119.746667pt;}
.y1a_c00447{bottom:1120.506667pt;}
.y15_c00447{bottom:1121.280000pt;}
.y19_c00447{bottom:1122.053333pt;}
.y18_c00447{bottom:1123.586667pt;}
.y1b_c00447{bottom:1126.653333pt;}
.y1c_c00447{bottom:1127.426667pt;}
.y1d_c00447{bottom:1129.733333pt;}
.yb5_c00447{bottom:1130.493333pt;}
.yb6_c00447{bottom:1135.106667pt;}
.y8_c00447{bottom:1143.546667pt;}
.y5_c00447{bottom:1144.320000pt;}
.yd_c00447{bottom:1145.853333pt;}
.y10_c00447{bottom:1146.626667pt;}
.yc_c00447{bottom:1147.386667pt;}
.ya_c00447{bottom:1148.160000pt;}
.y6_c00447{bottom:1148.933333pt;}
.ye_c00447{bottom:1149.693333pt;}
.y11_c00447{bottom:1150.466667pt;}
.y13_c00447{bottom:1151.226667pt;}
.y12_c00447{bottom:1152.773333pt;}
.yf_c00447{bottom:1154.306667pt;}
.yb_c00447{bottom:1155.066667pt;}
.y7_c00447{bottom:1155.840000pt;}
.y14_c00447{bottom:1158.906667pt;}
.y9_c00447{bottom:1163.520000pt;}
.y4_c00447{bottom:1164.293333pt;}
.h1_c00447{height:2.764500pt;}
.h2_c00447{height:4.799479pt;}
.h6_c00447{height:5.519401pt;}
.ha_c00447{height:8.303099pt;}
.h12_c00447{height:11.038802pt;}
.h3_c00447{height:13.822500pt;}
.h18_c00447{height:16.606198pt;}
.h10_c00447{height:19.341901pt;}
.h9_c00447{height:22.125599pt;}
.hf_c00447{height:24.861302pt;}
.h5_c00447{height:27.645000pt;}
.hb_c00447{height:30.428698pt;}
.h1f_c00447{height:33.164401pt;}
.hc_c00447{height:35.948099pt;}
.h1b_c00447{height:38.683802pt;}
.h11_c00447{height:41.467500pt;}
.he_c00447{height:44.251198pt;}
.h17_c00447{height:46.986901pt;}
.h1a_c00447{height:49.770599pt;}
.h8_c00447{height:52.506302pt;}
.hd_c00447{height:55.290000pt;}
.h1d_c00447{height:58.073698pt;}
.h20_c00447{height:60.809401pt;}
.h19_c00447{height:63.593099pt;}
.h21_c00447{height:66.328802pt;}
.h13_c00447{height:69.112500pt;}
.h7_c00447{height:71.896198pt;}
.h25_c00447{height:74.631901pt;}
.h15_c00447{height:77.415599pt;}
.h22_c00447{height:80.151302pt;}
.h16_c00447{height:82.935000pt;}
.h14_c00447{height:85.718698pt;}
.h24_c00447{height:88.454401pt;}
.h1e_c00447{height:93.973802pt;}
.h1c_c00447{height:96.757500pt;}
.h23_c00447{height:99.541198pt;}
.h4_c00447{height:199.034401pt;}
.h0_c00447{height:1344.000000pt;}
.w0_c00447{width:978.426667pt;}
.w1_c00447{width:978.666667pt;}
.x0_c00447{left:0.000000pt;}
.x95_c00447{left:53.760000pt;}
.x99_c00447{left:109.053333pt;}
.x98_c00447{left:111.360000pt;}
.x96_c00447{left:112.893333pt;}
.x92_c00447{left:121.346667pt;}
.x1_c00447{left:122.880000pt;}
.x2_c00447{left:127.493333pt;}
.x3_c00447{left:132.093333pt;}
.x93_c00447{left:139.773333pt;}
.x4_c00447{left:143.613333pt;}
.x9c_c00447{left:146.693333pt;}
.x9a_c00447{left:154.373333pt;}
.x97_c00447{left:162.813333pt;}
.x94_c00447{left:164.346667pt;}
.x9d_c00447{left:170.493333pt;}
.x9b_c00447{left:176.640000pt;}
.x9e_c00447{left:182.013333pt;}
.x2a_c00447{left:191.226667pt;}
.x5_c00447{left:199.680000pt;}
.x20_c00447{left:202.747827pt;}
.x2b_c00447{left:207.360000pt;}
.x6_c00447{left:212.733333pt;}
.x7_c00447{left:220.413333pt;}
.x2c_c00447{left:222.720000pt;}
.x8_c00447{left:224.253333pt;}
.x21_c00447{left:226.560000pt;}
.x2d_c00447{left:242.693333pt;}
.x9_c00447{left:254.213333pt;}
.x2e_c00447{left:256.506667pt;}
.x3c_c00447{left:268.800000pt;}
.x2f_c00447{left:284.160000pt;}
.xa_c00447{left:294.146667pt;}
.x3d_c00447{left:297.213333pt;}
.x30_c00447{left:298.746667pt;}
.x22_c00447{left:316.413333pt;}
.xb_c00447{left:329.466667pt;}
.x3e_c00447{left:336.386667pt;}
.x31_c00447{left:343.293333pt;}
.x32_c00447{left:352.506667pt;}
.xc_c00447{left:362.493333pt;}
.x33_c00447{left:364.800000pt;}
.x3f_c00447{left:367.866667pt;}
.x23_c00447{left:390.146667pt;}
.xd_c00447{left:392.453333pt;}
.xe_c00447{left:404.733333pt;}
.xf_c00447{left:408.573333pt;}
.x40_c00447{left:428.546667pt;}
.x10_c00447{left:432.386667pt;}
.x11_c00447{left:436.986667pt;}
.x12_c00447{left:441.600000pt;}
.x41_c00447{left:445.440000pt;}
.x76_c00447{left:446.973333pt;}
.x34_c00447{left:449.280000pt;}
.x42_c00447{left:464.640000pt;}
.x77_c00447{left:470.013333pt;}
.x43_c00447{left:475.386667pt;}
.x44_c00447{left:480.000000pt;}
.x35_c00447{left:483.840000pt;}
.x78_c00447{left:489.986667pt;}
.x80_c00447{left:494.586667pt;}
.x13_c00447{left:496.893333pt;}
.x24_c00447{left:499.973333pt;}
.x51_c00447{left:502.266667pt;}
.x45_c00447{left:503.813333pt;}
.x25_c00447{left:506.880000pt;}
.x63_c00447{left:508.413333pt;}
.x46_c00447{left:509.946667pt;}
.x90_c00447{left:511.493333pt;}
.x59_c00447{left:518.400000pt;}
.x8b_c00447{left:519.933333pt;}
.x81_c00447{left:521.466667pt;}
.x14_c00447{left:523.013333pt;}
.x36_c00447{left:524.546667pt;}
.x91_c00447{left:526.853333pt;}
.x60_c00447{left:528.386667pt;}
.x47_c00447{left:530.693333pt;}
.x82_c00447{left:533.760000pt;}
.x6d_c00447{left:535.293333pt;}
.x37_c00447{left:536.826667pt;}
.x38_c00447{left:539.133333pt;}
.x5a_c00447{left:540.666667pt;}
.x39_c00447{left:551.426667pt;}
.x6f_c00447{left:552.960000pt;}
.x48_c00447{left:556.026667pt;}
.x56_c00447{left:562.173333pt;}
.x5b_c00447{left:566.786667pt;}
.x79_c00447{left:572.933333pt;}
.x49_c00447{left:576.000000pt;}
.x57_c00447{left:578.306667pt;}
.x83_c00447{left:581.373333pt;}
.x52_c00447{left:585.213333pt;}
.x3a_c00447{left:587.520000pt;}
.x4a_c00447{left:590.586667pt;}
.x7a_c00447{left:599.040000pt;}
.x26_c00447{left:601.346667pt;}
.x15_c00447{left:605.186667pt;}
.x87_c00447{left:609.026667pt;}
.x64_c00447{left:610.560000pt;}
.x86_c00447{left:612.093333pt;}
.x16_c00447{left:615.933333pt;}
.x7b_c00447{left:617.466667pt;}
.x61_c00447{left:619.013333pt;}
.x17_c00447{left:622.080000pt;}
.x53_c00447{left:631.293333pt;}
.x62_c00447{left:635.133333pt;}
.x18_c00447{left:637.440000pt;}
.x5c_c00447{left:639.746667pt;}
.x8c_c00447{left:641.280000pt;}
.x19_c00447{left:650.493333pt;}
.x27_c00447{left:652.800000pt;}
.x5d_c00447{left:655.106667pt;}
.x54_c00447{left:656.640000pt;}
.x68_c00447{left:658.173333pt;}
.x4b_c00447{left:659.706667pt;}
.x65_c00447{left:661.253333pt;}
.x88_c00447{left:662.786667pt;}
.x4c_c00447{left:665.093333pt;}
.x84_c00447{left:671.226667pt;}
.x70_c00447{left:675.066667pt;}
.x4d_c00447{left:676.613333pt;}
.x58_c00447{left:681.213333pt;}
.x6e_c00447{left:682.746667pt;}
.x4e_c00447{left:685.826667pt;}
.x1a_c00447{left:688.133333pt;}
.x66_c00447{left:691.973333pt;}
.x7c_c00447{left:693.506667pt;}
.x85_c00447{left:695.040000pt;}
.x1b_c00447{left:696.573333pt;}
.x4f_c00447{left:699.653333pt;}
.x71_c00447{left:701.946667pt;}
.x28_c00447{left:706.560000pt;}
.x7d_c00447{left:708.866667pt;}
.x5e_c00447{left:710.400000pt;}
.x1c_c00447{left:713.466667pt;}
.x7e_c00447{left:715.013333pt;}
.x8d_c00447{left:717.306667pt;}
.x73_c00447{left:719.613333pt;}
.x55_c00447{left:723.453333pt;}
.x69_c00447{left:725.760000pt;}
.x8e_c00447{left:728.826667pt;}
.x1d_c00447{left:733.440000pt;}
.x6a_c00447{left:734.973333pt;}
.x5f_c00447{left:736.506667pt;}
.x74_c00447{left:738.053333pt;}
.x89_c00447{left:739.586667pt;}
.x6b_c00447{left:742.653333pt;}
.x8f_c00447{left:749.573333pt;}
.x29_c00447{left:751.106667pt;}
.x1e_c00447{left:753.413333pt;}
.x6c_c00447{left:754.946667pt;}
.x8a_c00447{left:758.013333pt;}
.x50_c00447{left:760.320000pt;}
.x67_c00447{left:763.386667pt;}
.x3b_c00447{left:767.226667pt;}
.x7f_c00447{left:769.533333pt;}
.x1f_c00447{left:771.066667pt;}
.x75_c00447{left:778.746667pt;}
.x72_c00447{left:796.413333pt;}
.xa1_c00447{left:814.080000pt;}
.xa2_c00447{left:829.440000pt;}
.xa4_c00447{left:835.586667pt;}
.xa5_c00447{left:840.186667pt;}
.xa3_c00447{left:843.266667pt;}
.xa6_c00447{left:845.573333pt;}
.x9f_c00447{left:861.693333pt;}
.xa0_c00447{left:877.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d76014b18083828cf986f41c.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.109863;font-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_c00448{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m14_c00448{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m10f_c00448{transform:matrix(0.063025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.063025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.063025,0.000000,0.000000,0.250000,0,0);}
.ma4_c00448{transform:matrix(0.068525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068525,0.000000,0.000000,0.250000,0,0);}
.m5b_c00448{transform:matrix(0.082375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082375,0.000000,0.000000,0.250000,0,0);}
.m137_c00448{transform:matrix(0.083825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083825,0.000000,0.000000,0.250000,0,0);}
.m110_c00448{transform:matrix(0.085050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085050,0.000000,0.000000,0.250000,0,0);}
.m9d_c00448{transform:matrix(0.085125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085125,0.000000,0.000000,0.250000,0,0);}
.m66_c00448{transform:matrix(0.087350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087350,0.000000,0.000000,0.250000,0,0);}
.m12f_c00448{transform:matrix(0.093725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093725,0.000000,0.000000,0.250000,0,0);}
.mbe_c00448{transform:matrix(0.093800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093800,0.000000,0.000000,0.250000,0,0);}
.m74_c00448{transform:matrix(0.094000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094000,0.000000,0.000000,0.250000,0,0);}
.mc4_c00448{transform:matrix(0.096675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096675,0.000000,0.000000,0.250000,0,0);}
.m5c_c00448{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.m3e_c00448{transform:matrix(0.098025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098025,0.000000,0.000000,0.250000,0,0);}
.mf2_c00448{transform:matrix(0.098050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098050,0.000000,0.000000,0.250000,0,0);}
.mb5_c00448{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);}
.mc7_c00448{transform:matrix(0.100750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100750,0.000000,0.000000,0.250000,0,0);}
.m10e_c00448{transform:matrix(0.103100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103100,0.000000,0.000000,0.250000,0,0);}
.m113_c00448{transform:matrix(0.103725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103725,0.000000,0.000000,0.250000,0,0);}
.m4e_c00448{transform:matrix(0.107075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107075,0.000000,0.000000,0.250000,0,0);}
.m11b_c00448{transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);}
.m60_c00448{transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);}
.m123_c00448{transform:matrix(0.110675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110675,0.000000,0.000000,0.250000,0,0);}
.mcd_c00448{transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);}
.m99_c00448{transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);}
.m37_c00448{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m34_c00448{transform:matrix(0.113975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113975,0.000000,0.000000,0.250000,0,0);}
.m6_c00448{transform:matrix(0.114175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114175,0.000000,0.000000,0.250000,0,0);}
.m7f_c00448{transform:matrix(0.115400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115400,0.000000,0.000000,0.250000,0,0);}
.mc9_c00448{transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);}
.mc8_c00448{transform:matrix(0.118350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118350,0.000000,0.000000,0.250000,0,0);}
.m120_c00448{transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);}
.mda_c00448{transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);}
.m46_c00448{transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);}
.m7_c00448{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);}
.mfe_c00448{transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);}
.me7_c00448{transform:matrix(0.123650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123650,0.000000,0.000000,0.250000,0,0);}
.maa_c00448{transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);}
.ma2_c00448{transform:matrix(0.124450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124450,0.000000,0.000000,0.250000,0,0);}
.m127_c00448{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m10c_c00448{transform:matrix(0.125400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125400,0.000000,0.000000,0.250000,0,0);}
.mab_c00448{transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);}
.m133_c00448{transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);}
.m81_c00448{transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);}
.me8_c00448{transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);}
.m73_c00448{transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);}
.m3b_c00448{transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);}
.mfd_c00448{transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);}
.m135_c00448{transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);}
.m11a_c00448{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m131_c00448{transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);}
.mf_c00448{transform:matrix(0.130150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130150,0.000000,0.000000,0.250000,0,0);}
.me0_c00448{transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);}
.mfc_c00448{transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);}
.mbf_c00448{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.m8f_c00448{transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);}
.m54_c00448{transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);}
.m47_c00448{transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);}
.m134_c00448{transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);}
.m8d_c00448{transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);}
.m59_c00448{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m56_c00448{transform:matrix(0.136700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136700,0.000000,0.000000,0.250000,0,0);}
.m6c_c00448{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m132_c00448{transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);}
.m10a_c00448{transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);}
.m116_c00448{transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);}
.mdf_c00448{transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);}
.m112_c00448{transform:matrix(0.138800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138800,0.000000,0.000000,0.250000,0,0);}
.md1_c00448{transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);}
.mb2_c00448{transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);}
.m129_c00448{transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);}
.mcb_c00448{transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);}
.m115_c00448{transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);}
.ma3_c00448{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m3a_c00448{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.mb8_c00448{transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);}
.m0_c00448{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m82_c00448{transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);}
.m88_c00448{transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);}
.mea_c00448{transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);}
.m79_c00448{transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);}
.m103_c00448{transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);}
.mcc_c00448{transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);}
.ma6_c00448{transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);}
.m72_c00448{transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);}
.mf7_c00448{transform:matrix(0.149325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149325,0.000000,0.000000,0.250000,0,0);}
.m2a_c00448{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);}
.m11c_c00448{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m85_c00448{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.mf9_c00448{transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);}
.mbd_c00448{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);}
.m9e_c00448{transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);}
.m97_c00448{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);}
.md4_c00448{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.maf_c00448{transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);}
.m75_c00448{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.m12e_c00448{transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);}
.m7d_c00448{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.m25_c00448{transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);}
.m58_c00448{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.m5d_c00448{transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);}
.mba_c00448{transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);}
.m63_c00448{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m3c_c00448{transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);}
.m100_c00448{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.m42_c00448{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.mfb_c00448{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m62_c00448{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);}
.m52_c00448{transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);}
.m38_c00448{transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);}
.m126_c00448{transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);}
.m114_c00448{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_c00448{transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);}
.m9b_c00448{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);}
.m50_c00448{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.meb_c00448{transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);}
.m67_c00448{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.mff_c00448{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.m122_c00448{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.mac_c00448{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);}
.m139_c00448{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.m76_c00448{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);}
.m86_c00448{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.m11e_c00448{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);}
.mb6_c00448{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.m51_c00448{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m124_c00448{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.me_c00448{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m19_c00448{transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);}
.m36_c00448{transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);}
.m10b_c00448{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.ma7_c00448{transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);}
.m3d_c00448{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m53_c00448{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);}
.m89_c00448{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.m87_c00448{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.mf1_c00448{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.m64_c00448{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.me5_c00448{transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);}
.m117_c00448{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m101_c00448{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m55_c00448{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m9_c00448{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);}
.md9_c00448{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.mce_c00448{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);}
.me2_c00448{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);}
.mca_c00448{transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);}
.md8_c00448{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m22_c00448{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m12b_c00448{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);}
.m7e_c00448{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.me4_c00448{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.md5_c00448{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m11f_c00448{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);}
.m111_c00448{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m6d_c00448{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.me6_c00448{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);}
.m80_c00448{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);}
.mfa_c00448{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.mc5_c00448{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.m6a_c00448{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);}
.m6b_c00448{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.md_c00448{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);}
.m7a_c00448{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.mb7_c00448{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.m119_c00448{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);}
.me9_c00448{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.m20_c00448{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.mbb_c00448{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);}
.mf8_c00448{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);}
.md0_c00448{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);}
.mee_c00448{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);}
.m35_c00448{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m39_c00448{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.m3f_c00448{transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);}
.m106_c00448{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);}
.m1b_c00448{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);}
.m118_c00448{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m8e_c00448{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.mbc_c00448{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);}
.mb1_c00448{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);}
.md7_c00448{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);}
.m12d_c00448{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m70_c00448{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m6f_c00448{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);}
.m1d_c00448{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);}
.ma5_c00448{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.m6e_c00448{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m9a_c00448{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);}
.m32_c00448{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m130_c00448{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.me1_c00448{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);}
.ma1_c00448{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);}
.m24_c00448{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);}
.med_c00448{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);}
.m108_c00448{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);}
.m4b_c00448{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);}
.mc2_c00448{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m69_c00448{transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);}
.m44_c00448{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.md2_c00448{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.ma8_c00448{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);}
.m1a_c00448{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.m27_c00448{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.md6_c00448{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.m11d_c00448{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.mc3_c00448{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);}
.m28_c00448{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);}
.mc1_c00448{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);}
.m90_c00448{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m128_c00448{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);}
.m83_c00448{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);}
.m84_c00448{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);}
.mde_c00448{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);}
.md3_c00448{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);}
.m57_c00448{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);}
.m7b_c00448{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);}
.m49_c00448{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);}
.m102_c00448{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.m8_c00448{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);}
.m105_c00448{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.mb0_c00448{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc_c00448{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);}
.m2d_c00448{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);}
.mb_c00448{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);}
.m78_c00448{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);}
.m4f_c00448{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma9_c00448{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c00448{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_c00448{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);}
.m23_c00448{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m68_c00448{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);}
.mef_c00448{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);}
.m109_c00448{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12a_c00448{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);}
.m1_c00448{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc0_c00448{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m40_c00448{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);}
.m8b_c00448{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);}
.mdd_c00448{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4d_c00448{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);}
.m10d_c00448{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00448{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);}
.m8c_c00448{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mcf_c00448{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mae_c00448{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mec_c00448{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c00448{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);}
.m33_c00448{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00448{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);}
.mb9_c00448{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m41_c00448{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7c_c00448{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);}
.m4c_c00448{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m125_c00448{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf4_c00448{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m92_c00448{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m8a_c00448{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);}
.m9c_c00448{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00448{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m77_c00448{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m138_c00448{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m43_c00448{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.ma0_c00448{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1e_c00448{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m98_c00448{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);}
.mdb_c00448{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);}
.m29_c00448{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);}
.m5_c00448{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3_c00448{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m93_c00448{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m21_c00448{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);}
.m91_c00448{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m71_c00448{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mc6_c00448{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m5f_c00448{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mad_c00448{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mf6_c00448{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m61_c00448{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m30_c00448{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m65_c00448{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);}
.m107_c00448{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m136_c00448{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m31_c00448{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m11_c00448{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m9f_c00448{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m13_c00448{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.me3_c00448{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);}
.m4a_c00448{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m13b_c00448{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m4_c00448{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m5a_c00448{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m12_c00448{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.mf3_c00448{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m121_c00448{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.mb3_c00448{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m26_c00448{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mf0_c00448{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m104_c00448{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m45_c00448{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m16_c00448{transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);}
.m95_c00448{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m2c_c00448{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m13a_c00448{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m5e_c00448{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00448{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m96_c00448{transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);}
.m12c_c00448{transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);}
.mb4_c00448{transform:matrix(1.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.287500,0.000000,0.000000,0.250000,0,0);}
.m2b_c00448{transform:matrix(1.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.342500,0.000000,0.000000,0.250000,0,0);}
.mdc_c00448{transform:matrix(1.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.472500,0.000000,0.000000,0.250000,0,0);}
.m94_c00448{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.mf5_c00448{transform:matrix(1.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.820000,0.000000,0.000000,0.250000,0,0);}
.m48_c00448{transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);}
.m17_c00448{transform:matrix(4.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.062500,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:3.456000px;}
.fs1a_c00448{font-size:6.000000px;}
.fs1_c00448{font-size:6.900000px;}
.fs2_c00448{font-size:10.380000px;}
.fsf_c00448{font-size:13.800000px;}
.fse_c00448{font-size:17.280000px;}
.fs19_c00448{font-size:20.760000px;}
.fs3_c00448{font-size:24.180000px;}
.fs13_c00448{font-size:27.660000px;}
.fs18_c00448{font-size:31.080000px;}
.fsd_c00448{font-size:34.560000px;}
.fs23_c00448{font-size:38.040000px;}
.fs10_c00448{font-size:41.460000px;}
.fs11_c00448{font-size:44.940000px;}
.fs12_c00448{font-size:48.360000px;}
.fs1c_c00448{font-size:51.840000px;}
.fs21_c00448{font-size:55.320000px;}
.fs17_c00448{font-size:58.740000px;}
.fs15_c00448{font-size:62.220000px;}
.fs14_c00448{font-size:65.640000px;}
.fsb_c00448{font-size:69.120000px;}
.fs1b_c00448{font-size:72.600000px;}
.fs16_c00448{font-size:76.020000px;}
.fs6_c00448{font-size:79.500000px;}
.fs22_c00448{font-size:82.920000px;}
.fs7_c00448{font-size:86.400000px;}
.fsa_c00448{font-size:89.880000px;}
.fs1d_c00448{font-size:93.300000px;}
.fs1e_c00448{font-size:96.780000px;}
.fs8_c00448{font-size:100.200000px;}
.fsc_c00448{font-size:103.680000px;}
.fs20_c00448{font-size:107.160000px;}
.fs1f_c00448{font-size:110.580000px;}
.fs24_c00448{font-size:114.060000px;}
.fs9_c00448{font-size:117.480000px;}
.fs25_c00448{font-size:120.960000px;}
.fs26_c00448{font-size:124.440000px;}
.fs5_c00448{font-size:145.140000px;}
.fs4_c00448{font-size:159.000000px;}
.y0_c00448{bottom:0.000000px;}
.y10f_c00448{bottom:695.520000px;}
.y111_c00448{bottom:697.245000px;}
.y110_c00448{bottom:698.115000px;}
.y109_c00448{bottom:699.840000px;}
.y10e_c00448{bottom:700.710000px;}
.y10b_c00448{bottom:702.435000px;}
.y106_c00448{bottom:703.290000px;}
.y108_c00448{bottom:704.160000px;}
.y105_c00448{bottom:707.610000px;}
.y10a_c00448{bottom:708.480000px;}
.y10c_c00448{bottom:710.205000px;}
.y10d_c00448{bottom:711.075000px;}
.y107_c00448{bottom:713.670000px;}
.y104_c00448{bottom:719.715000px;}
.y101_c00448{bottom:725.760000px;}
.yfb_c00448{bottom:730.080000px;}
.yfa_c00448{bottom:733.530000px;}
.yfe_c00448{bottom:734.400000px;}
.y100_c00448{bottom:736.125000px;}
.yff_c00448{bottom:736.995000px;}
.y102_c00448{bottom:737.850000px;}
.yfd_c00448{bottom:738.720000px;}
.yfc_c00448{bottom:739.590000px;}
.y103_c00448{bottom:745.635000px;}
.yf9_c00448{bottom:758.595000px;}
.yf2_c00448{bottom:759.450000px;}
.yf6_c00448{bottom:760.320000px;}
.yf3_c00448{bottom:761.190000px;}
.yf8_c00448{bottom:762.045000px;}
.yf4_c00448{bottom:763.770000px;}
.yf1_c00448{bottom:764.640000px;}
.yf0_c00448{bottom:765.510000px;}
.yf5_c00448{bottom:767.235000px;}
.yf7_c00448{bottom:770.685000px;}
.yeb_c00448{bottom:781.050000px;}
.yef_c00448{bottom:781.920000px;}
.yea_c00448{bottom:783.645000px;}
.ye8_c00448{bottom:784.515000px;}
.ye6_c00448{bottom:785.370000px;}
.yec_c00448{bottom:786.240000px;}
.yee_c00448{bottom:788.835000px;}
.yed_c00448{bottom:789.690000px;}
.ye9_c00448{bottom:790.560000px;}
.ye7_c00448{bottom:792.285000px;}
.ye5_c00448{bottom:808.710000px;}
.ydf_c00448{bottom:811.290000px;}
.ye0_c00448{bottom:812.160000px;}
.ydd_c00448{bottom:813.885000px;}
.ye2_c00448{bottom:817.350000px;}
.ye1_c00448{bottom:818.205000px;}
.yde_c00448{bottom:819.075000px;}
.ye3_c00448{bottom:824.250000px;}
.ye4_c00448{bottom:828.570000px;}
.ydc_c00448{bottom:832.890000px;}
.yd8_c00448{bottom:835.485000px;}
.yd7_c00448{bottom:836.355000px;}
.yda_c00448{bottom:838.080000px;}
.ydb_c00448{bottom:839.805000px;}
.yd9_c00448{bottom:850.170000px;}
.yd4_c00448{bottom:859.680000px;}
.yd5_c00448{bottom:860.550000px;}
.yd3_c00448{bottom:862.275000px;}
.yd6_c00448{bottom:863.130000px;}
.yd2_c00448{bottom:864.870000px;}
.yd1_c00448{bottom:867.450000px;}
.yd0_c00448{bottom:868.320000px;}
.ycd_c00448{bottom:880.410000px;}
.ycc_c00448{bottom:882.150000px;}
.yc9_c00448{bottom:884.730000px;}
.ycb_c00448{bottom:886.470000px;}
.yce_c00448{bottom:888.195000px;}
.ycf_c00448{bottom:889.050000px;}
.yc8_c00448{bottom:892.515000px;}
.yc7_c00448{bottom:893.370000px;}
.yc6_c00448{bottom:894.240000px;}
.yca_c00448{bottom:901.155000px;}
.yc4_c00448{bottom:907.200000px;}
.yc2_c00448{bottom:908.070000px;}
.yc1_c00448{bottom:909.795000px;}
.ybb_c00448{bottom:911.520000px;}
.yc3_c00448{bottom:912.390000px;}
.yc5_c00448{bottom:913.245000px;}
.yc0_c00448{bottom:914.115000px;}
.yba_c00448{bottom:914.970000px;}
.ybc_c00448{bottom:916.710000px;}
.ybd_c00448{bottom:917.565000px;}
.ybf_c00448{bottom:918.435000px;}
.ybe_c00448{bottom:927.075000px;}
.yb7_c00448{bottom:931.395000px;}
.yb9_c00448{bottom:932.250000px;}
.yb8_c00448{bottom:934.845000px;}
.yb1_c00448{bottom:935.715000px;}
.yb6_c00448{bottom:936.570000px;}
.yb0_c00448{bottom:937.440000px;}
.yb3_c00448{bottom:938.310000px;}
.yb5_c00448{bottom:939.165000px;}
.yb2_c00448{bottom:942.630000px;}
.yb4_c00448{bottom:947.805000px;}
.yae_c00448{bottom:953.850000px;}
.yad_c00448{bottom:955.590000px;}
.yaf_c00448{bottom:956.445000px;}
.yac_c00448{bottom:957.315000px;}
.yab_c00448{bottom:958.170000px;}
.ya9_c00448{bottom:959.040000px;}
.ya8_c00448{bottom:959.910000px;}
.yaa_c00448{bottom:961.635000px;}
.ya6_c00448{bottom:964.230000px;}
.ya7_c00448{bottom:967.680000px;}
.ya4_c00448{bottom:979.770000px;}
.ya3_c00448{bottom:980.640000px;}
.ya1_c00448{bottom:983.235000px;}
.y9f_c00448{bottom:984.090000px;}
.ya2_c00448{bottom:984.960000px;}
.ya0_c00448{bottom:987.555000px;}
.ya5_c00448{bottom:988.410000px;}
.y9d_c00448{bottom:989.280000px;}
.y9e_c00448{bottom:992.730000px;}
.y9c_c00448{bottom:1004.835000px;}
.y98_c00448{bottom:1006.560000px;}
.y94_c00448{bottom:1007.430000px;}
.y92_c00448{bottom:1008.285000px;}
.y90_c00448{bottom:1009.155000px;}
.y97_c00448{bottom:1010.880000px;}
.y91_c00448{bottom:1016.070000px;}
.y93_c00448{bottom:1016.925000px;}
.y99_c00448{bottom:1017.795000px;}
.y8f_c00448{bottom:1019.520000px;}
.y8e_c00448{bottom:1020.390000px;}
.y9a_c00448{bottom:1021.245000px;}
.y9b_c00448{bottom:1022.115000px;}
.y96_c00448{bottom:1022.970000px;}
.y95_c00448{bottom:1023.840000px;}
.y8d_c00448{bottom:1030.755000px;}
.y8c_c00448{bottom:1032.480000px;}
.y86_c00448{bottom:1034.205000px;}
.y87_c00448{bottom:1036.800000px;}
.y8a_c00448{bottom:1037.670000px;}
.y88_c00448{bottom:1038.525000px;}
.y85_c00448{bottom:1039.395000px;}
.y8b_c00448{bottom:1040.250000px;}
.y89_c00448{bottom:1041.990000px;}
.y84_c00448{bottom:1042.845000px;}
.y83_c00448{bottom:1054.080000px;}
.y81_c00448{bottom:1055.805000px;}
.y7f_c00448{bottom:1056.675000px;}
.y82_c00448{bottom:1057.530000px;}
.y7e_c00448{bottom:1058.400000px;}
.y7d_c00448{bottom:1060.125000px;}
.y7b_c00448{bottom:1060.995000px;}
.y80_c00448{bottom:1061.850000px;}
.y77_c00448{bottom:1066.170000px;}
.y7c_c00448{bottom:1067.040000px;}
.y76_c00448{bottom:1072.230000px;}
.y79_c00448{bottom:1074.810000px;}
.y75_c00448{bottom:1077.405000px;}
.y78_c00448{bottom:1078.275000px;}
.y7a_c00448{bottom:1079.130000px;}
.y72_c00448{bottom:1080.870000px;}
.y73_c00448{bottom:1081.725000px;}
.y74_c00448{bottom:1082.595000px;}
.y6f_c00448{bottom:1084.320000px;}
.y6c_c00448{bottom:1085.190000px;}
.y6d_c00448{bottom:1088.640000px;}
.y71_c00448{bottom:1089.510000px;}
.y6e_c00448{bottom:1090.365000px;}
.y6b_c00448{bottom:1093.830000px;}
.y70_c00448{bottom:1103.325000px;}
.y67_c00448{bottom:1105.050000px;}
.y6a_c00448{bottom:1105.920000px;}
.y69_c00448{bottom:1108.515000px;}
.y64_c00448{bottom:1110.240000px;}
.y65_c00448{bottom:1111.110000px;}
.y68_c00448{bottom:1112.835000px;}
.y62_c00448{bottom:1113.690000px;}
.y66_c00448{bottom:1115.430000px;}
.y61_c00448{bottom:1117.155000px;}
.y63_c00448{bottom:1118.010000px;}
.y60_c00448{bottom:1129.245000px;}
.y5f_c00448{bottom:1131.840000px;}
.y5d_c00448{bottom:1134.435000px;}
.y5c_c00448{bottom:1135.290000px;}
.y5a_c00448{bottom:1136.160000px;}
.y5b_c00448{bottom:1137.030000px;}
.y5e_c00448{bottom:1139.610000px;}
.y59_c00448{bottom:1143.930000px;}
.y57_c00448{bottom:1156.035000px;}
.y58_c00448{bottom:1157.760000px;}
.y54_c00448{bottom:1159.485000px;}
.y51_c00448{bottom:1160.355000px;}
.y53_c00448{bottom:1161.210000px;}
.y55_c00448{bottom:1162.950000px;}
.y56_c00448{bottom:1163.805000px;}
.y52_c00448{bottom:1166.400000px;}
.y50_c00448{bottom:1171.590000px;}
.y4f_c00448{bottom:1175.040000px;}
.y4e_c00448{bottom:1182.810000px;}
.y48_c00448{bottom:1186.275000px;}
.y4d_c00448{bottom:1191.450000px;}
.y4a_c00448{bottom:1192.320000px;}
.y49_c00448{bottom:1193.190000px;}
.y4c_c00448{bottom:1194.045000px;}
.y4b_c00448{bottom:1203.555000px;}
.y44_c00448{bottom:1207.005000px;}
.y46_c00448{bottom:1207.875000px;}
.y45_c00448{bottom:1208.730000px;}
.y42_c00448{bottom:1209.600000px;}
.y47_c00448{bottom:1211.325000px;}
.y43_c00448{bottom:1213.050000px;}
.y40_c00448{bottom:1216.515000px;}
.y41_c00448{bottom:1217.370000px;}
.y3f_c00448{bottom:1218.240000px;}
.y3a_c00448{bottom:1232.070000px;}
.y39_c00448{bottom:1233.795000px;}
.y114_c00448{bottom:1234.650000px;}
.y34_c00448{bottom:1235.520000px;}
.y3d_c00448{bottom:1236.390000px;}
.y3b_c00448{bottom:1237.245000px;}
.y3c_c00448{bottom:1240.710000px;}
.y37_c00448{bottom:1241.565000px;}
.y35_c00448{bottom:1242.435000px;}
.y36_c00448{bottom:1245.030000px;}
.y3e_c00448{bottom:1247.610000px;}
.y38_c00448{bottom:1248.480000px;}
.y30_c00448{bottom:1258.845000px;}
.y2f_c00448{bottom:1259.715000px;}
.y2e_c00448{bottom:1260.570000px;}
.y32_c00448{bottom:1262.310000px;}
.y33_c00448{bottom:1263.165000px;}
.y2c_c00448{bottom:1264.035000px;}
.y31_c00448{bottom:1264.890000px;}
.y2b_c00448{bottom:1265.760000px;}
.y2d_c00448{bottom:1267.485000px;}
.y112_c00448{bottom:1279.590000px;}
.y2a_c00448{bottom:1286.490000px;}
.y28_c00448{bottom:1287.360000px;}
.y29_c00448{bottom:1289.085000px;}
.y26_c00448{bottom:1290.810000px;}
.y25_c00448{bottom:1292.550000px;}
.y27_c00448{bottom:1296.000000px;}
.y24_c00448{bottom:1302.045000px;}
.y23_c00448{bottom:1304.640000px;}
.y21_c00448{bottom:1306.365000px;}
.y22_c00448{bottom:1308.090000px;}
.y20_c00448{bottom:1308.960000px;}
.y1e_c00448{bottom:1309.830000px;}
.y1c_c00448{bottom:1310.685000px;}
.y1f_c00448{bottom:1311.555000px;}
.y19_c00448{bottom:1312.410000px;}
.y1d_c00448{bottom:1313.280000px;}
.y1a_c00448{bottom:1314.150000px;}
.y1b_c00448{bottom:1316.730000px;}
.y18_c00448{bottom:1318.470000px;}
.y16_c00448{bottom:1321.050000px;}
.y14_c00448{bottom:1321.920000px;}
.y13_c00448{bottom:1322.790000px;}
.y12_c00448{bottom:1323.645000px;}
.y17_c00448{bottom:1326.240000px;}
.ye_c00448{bottom:1327.110000px;}
.y15_c00448{bottom:1327.965000px;}
.yf_c00448{bottom:1329.690000px;}
.y11_c00448{bottom:1330.560000px;}
.yb_c00448{bottom:1331.430000px;}
.y10_c00448{bottom:1332.285000px;}
.y6_c00448{bottom:1334.880000px;}
.ya_c00448{bottom:1335.750000px;}
.y9_c00448{bottom:1339.200000px;}
.yc_c00448{bottom:1340.070000px;}
.y8_c00448{bottom:1340.925000px;}
.yd_c00448{bottom:1341.795000px;}
.y7_c00448{bottom:1358.205000px;}
.y113_c00448{bottom:1367.715000px;}
.y5_c00448{bottom:1406.595000px;}
.y4_c00448{bottom:1419.555000px;}
.y2_c00448{bottom:1424.730000px;}
.y3_c00448{bottom:1425.600000px;}
.y1_c00448{bottom:1427.325000px;}
.h2_c00448{height:3.110063px;}
.h1c_c00448{height:5.399414px;}
.h3_c00448{height:6.209326px;}
.h4_c00448{height:9.340986px;}
.h11_c00448{height:12.418652px;}
.h10_c00448{height:15.550313px;}
.h1b_c00448{height:18.681973px;}
.h5_c00448{height:21.759639px;}
.h15_c00448{height:24.891299px;}
.h1a_c00448{height:27.968965px;}
.hf_c00448{height:31.100625px;}
.h25_c00448{height:34.232285px;}
.h12_c00448{height:37.309951px;}
.h13_c00448{height:40.441611px;}
.h14_c00448{height:43.519277px;}
.h1e_c00448{height:46.650937px;}
.h23_c00448{height:49.782598px;}
.h19_c00448{height:52.860264px;}
.h17_c00448{height:55.991924px;}
.h16_c00448{height:59.069590px;}
.hd_c00448{height:62.201250px;}
.h1d_c00448{height:65.332910px;}
.h18_c00448{height:68.410576px;}
.h8_c00448{height:71.542236px;}
.h24_c00448{height:74.619902px;}
.h9_c00448{height:77.751563px;}
.hc_c00448{height:80.883223px;}
.h1f_c00448{height:83.960889px;}
.h20_c00448{height:87.092549px;}
.ha_c00448{height:90.170215px;}
.he_c00448{height:93.301875px;}
.h22_c00448{height:96.433535px;}
.h21_c00448{height:99.511201px;}
.h26_c00448{height:102.642861px;}
.hb_c00448{height:105.720527px;}
.h27_c00448{height:108.852188px;}
.h28_c00448{height:111.983848px;}
.h7_c00448{height:130.611826px;}
.h6_c00448{height:143.084473px;}
.h0_c00448{height:1515.450000px;}
.h1_c00448{height:1515.750000px;}
.w0_c00448{width:1079.130000px;}
.w1_c00448{width:1079.250000px;}
.x0_c00448{left:0.000000px;}
.xc8_c00448{left:189.210000px;}
.xb4_c00448{left:190.950000px;}
.x5a_c00448{left:196.125000px;}
.xb5_c00448{left:203.040000px;}
.xbf_c00448{left:207.360000px;}
.xbc_c00448{left:214.275000px;}
.xc0_c00448{left:219.450000px;}
.x5b_c00448{left:223.770000px;}
.xb6_c00448{left:226.365000px;}
.x89_c00448{left:229.830000px;}
.x9b_c00448{left:231.555000px;}
.x55_c00448{left:234.150000px;}
.x7_c00448{left:236.730000px;}
.xa4_c00448{left:238.470000px;}
.x4e_c00448{left:240.195000px;}
.x29_c00448{left:248.835000px;}
.x5c_c00448{left:250.560000px;}
.xa5_c00448{left:254.010000px;}
.xaf_c00448{left:255.750000px;}
.x9c_c00448{left:259.200000px;}
.x2a_c00448{left:260.925000px;}
.x37_c00448{left:263.520000px;}
.x12_c00448{left:265.245000px;}
.x4f_c00448{left:266.970000px;}
.x9a_c00448{left:269.565000px;}
.x2b_c00448{left:273.885000px;}
.x6b_c00448{left:279.930000px;}
.x13_c00448{left:285.990000px;}
.x7c_c00448{left:289.440000px;}
.x94_c00448{left:300.675000px;}
.xc5_c00448{left:304.995000px;}
.x64_c00448{left:308.445000px;}
.xa6_c00448{left:311.040000px;}
.x38_c00448{left:312.765000px;}
.x65_c00448{left:317.085000px;}
.x39_c00448{left:320.550000px;}
.x20_c00448{left:323.130000px;}
.x14_c00448{left:326.595000px;}
.xb9_c00448{left:330.915000px;}
.x74_c00448{left:336.090000px;}
.x9d_c00448{left:337.830000px;}
.x7f_c00448{left:343.005000px;}
.x31_c00448{left:347.325000px;}
.x21_c00448{left:349.050000px;}
.x80_c00448{left:350.790000px;}
.x6c_c00448{left:352.515000px;}
.x95_c00448{left:355.965000px;}
.x81_c00448{left:357.690000px;}
.x50_c00448{left:359.430000px;}
.xa7_c00448{left:362.010000px;}
.x3a_c00448{left:376.710000px;}
.xb0_c00448{left:379.290000px;}
.x2c_c00448{left:384.480000px;}
.x6d_c00448{left:388.800000px;}
.x1_c00448{left:390.525000px;}
.x2d_c00448{left:397.440000px;}
.x8_c00448{left:399.165000px;}
.x2_c00448{left:400.890000px;}
.xc6_c00448{left:402.630000px;}
.x15_c00448{left:404.355000px;}
.x22_c00448{left:406.950000px;}
.x3_c00448{left:409.530000px;}
.x5_c00448{left:411.270000px;}
.x3b_c00448{left:413.850000px;}
.x16_c00448{left:415.590000px;}
.x4_c00448{left:418.170000px;}
.x5d_c00448{left:423.360000px;}
.x17_c00448{left:427.680000px;}
.x9e_c00448{left:437.190000px;}
.x3c_c00448{left:438.915000px;}
.x23_c00448{left:440.640000px;}
.x51_c00448{left:444.960000px;}
.x66_c00448{left:447.555000px;}
.x24_c00448{left:450.150000px;}
.x9f_c00448{left:454.470000px;}
.xb7_c00448{left:457.050000px;}
.x82_c00448{left:461.370000px;}
.x44_c00448{left:465.690000px;}
.x45_c00448{left:468.285000px;}
.x83_c00448{left:470.010000px;}
.xa8_c00448{left:472.605000px;}
.x67_c00448{left:474.330000px;}
.x32_c00448{left:477.795000px;}
.xb1_c00448{left:480.390000px;}
.x46_c00448{left:486.435000px;}
.xa0_c00448{left:488.159088px;}
.x8c_c00448{left:489.885000px;}
.x5e_c00448{left:493.350000px;}
.xa1_c00448{left:495.930000px;}
.x6e_c00448{left:497.670000px;}
.x18_c00448{left:501.120000px;}
.x25_c00448{left:502.845000px;}
.x75_c00448{left:504.570000px;}
.x33_c00448{left:507.165000px;}
.x19_c00448{left:513.210000px;}
.x56_c00448{left:518.400000px;}
.x96_c00448{left:522.720000px;}
.x47_c00448{left:537.405000px;}
.x2e_c00448{left:539.130000px;}
.x8d_c00448{left:543.450000px;}
.x76_c00448{left:545.190000px;}
.x9_c00448{left:548.640000px;}
.x48_c00448{left:550.365000px;}
.xa_c00448{left:553.830000px;}
.x77_c00448{left:555.555000px;}
.x3d_c00448{left:557.280000px;}
.x5f_c00448{left:559.005000px;}
.xa9_c00448{left:560.730000px;}
.x57_c00448{left:562.470000px;}
.x34_c00448{left:564.195000px;}
.xbd_c00448{left:566.790000px;}
.x8e_c00448{left:568.515000px;}
.x26_c00448{left:570.240000px;}
.xaa_c00448{left:577.155000px;}
.x7d_c00448{left:578.880000px;}
.x84_c00448{left:581.475000px;}
.x58_c00448{left:583.200000px;}
.xb_c00448{left:584.925000px;}
.x78_c00448{left:586.650000px;}
.x3e_c00448{left:588.390000px;}
.xc1_c00448{left:592.710000px;}
.x59_c00448{left:596.160000px;}
.x6_c00448{left:600.480000px;}
.xc_c00448{left:608.250000px;}
.x3f_c00448{left:609.990000px;}
.x97_c00448{left:611.715000px;}
.x8a_c00448{left:613.440000px;}
.x6f_c00448{left:616.035000px;}
.xba_c00448{left:620.355000px;}
.xc2_c00448{left:632.445000px;}
.xab_c00448{left:634.170000px;}
.x35_c00448{left:635.910000px;}
.x52_c00448{left:641.955000px;}
.xbe_c00448{left:643.680000px;}
.x98_c00448{left:649.725000px;}
.xd_c00448{left:651.450000px;}
.x40_c00448{left:654.045000px;}
.x68_c00448{left:655.770000px;}
.x2f_c00448{left:657.510000px;}
.xac_c00448{left:664.410000px;}
.x8b_c00448{left:666.150000px;}
.x79_c00448{left:668.730000px;}
.x69_c00448{left:672.195000px;}
.xa2_c00448{left:673.920000px;}
.x92_c00448{left:680.835000px;}
.x85_c00448{left:682.560000px;}
.x1a_c00448{left:686.880000px;}
.xc3_c00448{left:688.605000px;}
.xe_c00448{left:694.650000px;}
.x41_c00448{left:697.245000px;}
.x49_c00448{left:701.565000px;}
.x93_c00448{left:704.160000px;}
.xa3_c00448{left:705.885000px;}
.x27_c00448{left:710.205000px;}
.x60_c00448{left:711.930000px;}
.x4a_c00448{left:713.670000px;}
.x99_c00448{left:716.250000px;}
.x8f_c00448{left:717.990000px;}
.xf_c00448{left:722.310000px;}
.xb2_c00448{left:724.890000px;}
.x53_c00448{left:730.080000px;}
.x70_c00448{left:733.530000px;}
.x71_c00448{left:738.720000px;}
.x6a_c00448{left:741.315000px;}
.x1b_c00448{left:744.765000px;}
.x86_c00448{left:749.085000px;}
.xb3_c00448{left:750.810000px;}
.x4b_c00448{left:752.550000px;}
.xc7_c00448{left:756.000000px;}
.x1c_c00448{left:757.725000px;}
.xc4_c00448{left:759.450000px;}
.xb8_c00448{left:763.770000px;}
.x7a_c00448{left:767.235000px;}
.x4c_c00448{left:768.960000px;}
.x1d_c00448{left:770.685000px;}
.x10_c00448{left:776.730000px;}
.x61_c00448{left:778.470000px;}
.x90_c00448{left:781.920000px;}
.x7e_c00448{left:789.690000px;}
.xad_c00448{left:792.285000px;}
.x11_c00448{left:796.605000px;}
.xbb_c00448{left:803.520000px;}
.x91_c00448{left:806.970000px;}
.x42_c00448{left:810.435000px;}
.x72_c00448{left:813.030000px;}
.x62_c00448{left:819.930000px;}
.x63_c00448{left:822.525000px;}
.x1e_c00448{left:825.120000px;}
.x4d_c00448{left:828.570000px;}
.x30_c00448{left:835.485000px;}
.x73_c00448{left:838.080000px;}
.x7b_c00448{left:842.400000px;}
.x36_c00448{left:846.720000px;}
.x87_c00448{left:849.315000px;}
.x54_c00448{left:851.040000px;}
.x43_c00448{left:852.765000px;}
.x28_c00448{left:855.360000px;}
.x1f_c00448{left:857.955000px;}
.x88_c00448{left:880.410000px;}
.xae_c00448{left:888.195000px;}
.xca_c00448{left:997.050000px;}
.xc9_c00448{left:1006.560000px;}
.xcb_c00448{left:1017.795000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ws0_c00448{word-spacing:0.000000pt;}
.fs0_c00448{font-size:3.072000pt;}
.fs1a_c00448{font-size:5.333333pt;}
.fs1_c00448{font-size:6.133333pt;}
.fs2_c00448{font-size:9.226667pt;}
.fsf_c00448{font-size:12.266667pt;}
.fse_c00448{font-size:15.360000pt;}
.fs19_c00448{font-size:18.453333pt;}
.fs3_c00448{font-size:21.493333pt;}
.fs13_c00448{font-size:24.586667pt;}
.fs18_c00448{font-size:27.626667pt;}
.fsd_c00448{font-size:30.720000pt;}
.fs23_c00448{font-size:33.813333pt;}
.fs10_c00448{font-size:36.853333pt;}
.fs11_c00448{font-size:39.946667pt;}
.fs12_c00448{font-size:42.986667pt;}
.fs1c_c00448{font-size:46.080000pt;}
.fs21_c00448{font-size:49.173333pt;}
.fs17_c00448{font-size:52.213333pt;}
.fs15_c00448{font-size:55.306667pt;}
.fs14_c00448{font-size:58.346667pt;}
.fsb_c00448{font-size:61.440000pt;}
.fs1b_c00448{font-size:64.533333pt;}
.fs16_c00448{font-size:67.573333pt;}
.fs6_c00448{font-size:70.666667pt;}
.fs22_c00448{font-size:73.706667pt;}
.fs7_c00448{font-size:76.800000pt;}
.fsa_c00448{font-size:79.893333pt;}
.fs1d_c00448{font-size:82.933333pt;}
.fs1e_c00448{font-size:86.026667pt;}
.fs8_c00448{font-size:89.066667pt;}
.fsc_c00448{font-size:92.160000pt;}
.fs20_c00448{font-size:95.253333pt;}
.fs1f_c00448{font-size:98.293333pt;}
.fs24_c00448{font-size:101.386667pt;}
.fs9_c00448{font-size:104.426667pt;}
.fs25_c00448{font-size:107.520000pt;}
.fs26_c00448{font-size:110.613333pt;}
.fs5_c00448{font-size:129.013333pt;}
.fs4_c00448{font-size:141.333333pt;}
.y0_c00448{bottom:0.000000pt;}
.y10f_c00448{bottom:618.240000pt;}
.y111_c00448{bottom:619.773333pt;}
.y110_c00448{bottom:620.546667pt;}
.y109_c00448{bottom:622.080000pt;}
.y10e_c00448{bottom:622.853333pt;}
.y10b_c00448{bottom:624.386667pt;}
.y106_c00448{bottom:625.146667pt;}
.y108_c00448{bottom:625.920000pt;}
.y105_c00448{bottom:628.986667pt;}
.y10a_c00448{bottom:629.760000pt;}
.y10c_c00448{bottom:631.293333pt;}
.y10d_c00448{bottom:632.066667pt;}
.y107_c00448{bottom:634.373333pt;}
.y104_c00448{bottom:639.746667pt;}
.y101_c00448{bottom:645.120000pt;}
.yfb_c00448{bottom:648.960000pt;}
.yfa_c00448{bottom:652.026667pt;}
.yfe_c00448{bottom:652.800000pt;}
.y100_c00448{bottom:654.333333pt;}
.yff_c00448{bottom:655.106667pt;}
.y102_c00448{bottom:655.866667pt;}
.yfd_c00448{bottom:656.640000pt;}
.yfc_c00448{bottom:657.413333pt;}
.y103_c00448{bottom:662.786667pt;}
.yf9_c00448{bottom:674.306667pt;}
.yf2_c00448{bottom:675.066667pt;}
.yf6_c00448{bottom:675.840000pt;}
.yf3_c00448{bottom:676.613333pt;}
.yf8_c00448{bottom:677.373333pt;}
.yf4_c00448{bottom:678.906667pt;}
.yf1_c00448{bottom:679.680000pt;}
.yf0_c00448{bottom:680.453333pt;}
.yf5_c00448{bottom:681.986667pt;}
.yf7_c00448{bottom:685.053333pt;}
.yeb_c00448{bottom:694.266667pt;}
.yef_c00448{bottom:695.040000pt;}
.yea_c00448{bottom:696.573333pt;}
.ye8_c00448{bottom:697.346667pt;}
.ye6_c00448{bottom:698.106667pt;}
.yec_c00448{bottom:698.880000pt;}
.yee_c00448{bottom:701.186667pt;}
.yed_c00448{bottom:701.946667pt;}
.ye9_c00448{bottom:702.720000pt;}
.ye7_c00448{bottom:704.253333pt;}
.ye5_c00448{bottom:718.853333pt;}
.ydf_c00448{bottom:721.146667pt;}
.ye0_c00448{bottom:721.920000pt;}
.ydd_c00448{bottom:723.453333pt;}
.ye2_c00448{bottom:726.533333pt;}
.ye1_c00448{bottom:727.293333pt;}
.yde_c00448{bottom:728.066667pt;}
.ye3_c00448{bottom:732.666667pt;}
.ye4_c00448{bottom:736.506667pt;}
.ydc_c00448{bottom:740.346667pt;}
.yd8_c00448{bottom:742.653333pt;}
.yd7_c00448{bottom:743.426667pt;}
.yda_c00448{bottom:744.960000pt;}
.ydb_c00448{bottom:746.493333pt;}
.yd9_c00448{bottom:755.706667pt;}
.yd4_c00448{bottom:764.160000pt;}
.yd5_c00448{bottom:764.933333pt;}
.yd3_c00448{bottom:766.466667pt;}
.yd6_c00448{bottom:767.226667pt;}
.yd2_c00448{bottom:768.773333pt;}
.yd1_c00448{bottom:771.066667pt;}
.yd0_c00448{bottom:771.840000pt;}
.ycd_c00448{bottom:782.586667pt;}
.ycc_c00448{bottom:784.133333pt;}
.yc9_c00448{bottom:786.426667pt;}
.ycb_c00448{bottom:787.973333pt;}
.yce_c00448{bottom:789.506667pt;}
.ycf_c00448{bottom:790.266667pt;}
.yc8_c00448{bottom:793.346667pt;}
.yc7_c00448{bottom:794.106667pt;}
.yc6_c00448{bottom:794.880000pt;}
.yca_c00448{bottom:801.026667pt;}
.yc4_c00448{bottom:806.400000pt;}
.yc2_c00448{bottom:807.173333pt;}
.yc1_c00448{bottom:808.706667pt;}
.ybb_c00448{bottom:810.240000pt;}
.yc3_c00448{bottom:811.013333pt;}
.yc5_c00448{bottom:811.773333pt;}
.yc0_c00448{bottom:812.546667pt;}
.yba_c00448{bottom:813.306667pt;}
.ybc_c00448{bottom:814.853333pt;}
.ybd_c00448{bottom:815.613333pt;}
.ybf_c00448{bottom:816.386667pt;}
.ybe_c00448{bottom:824.066667pt;}
.yb7_c00448{bottom:827.906667pt;}
.yb9_c00448{bottom:828.666667pt;}
.yb8_c00448{bottom:830.973333pt;}
.yb1_c00448{bottom:831.746667pt;}
.yb6_c00448{bottom:832.506667pt;}
.yb0_c00448{bottom:833.280000pt;}
.yb3_c00448{bottom:834.053333pt;}
.yb5_c00448{bottom:834.813333pt;}
.yb2_c00448{bottom:837.893333pt;}
.yb4_c00448{bottom:842.493333pt;}
.yae_c00448{bottom:847.866667pt;}
.yad_c00448{bottom:849.413333pt;}
.yaf_c00448{bottom:850.173333pt;}
.yac_c00448{bottom:850.946667pt;}
.yab_c00448{bottom:851.706667pt;}
.ya9_c00448{bottom:852.480000pt;}
.ya8_c00448{bottom:853.253333pt;}
.yaa_c00448{bottom:854.786667pt;}
.ya6_c00448{bottom:857.093333pt;}
.ya7_c00448{bottom:860.160000pt;}
.ya4_c00448{bottom:870.906667pt;}
.ya3_c00448{bottom:871.680000pt;}
.ya1_c00448{bottom:873.986667pt;}
.y9f_c00448{bottom:874.746667pt;}
.ya2_c00448{bottom:875.520000pt;}
.ya0_c00448{bottom:877.826667pt;}
.ya5_c00448{bottom:878.586667pt;}
.y9d_c00448{bottom:879.360000pt;}
.y9e_c00448{bottom:882.426667pt;}
.y9c_c00448{bottom:893.186667pt;}
.y98_c00448{bottom:894.720000pt;}
.y94_c00448{bottom:895.493333pt;}
.y92_c00448{bottom:896.253333pt;}
.y90_c00448{bottom:897.026667pt;}
.y97_c00448{bottom:898.560000pt;}
.y91_c00448{bottom:903.173333pt;}
.y93_c00448{bottom:903.933333pt;}
.y99_c00448{bottom:904.706667pt;}
.y8f_c00448{bottom:906.240000pt;}
.y8e_c00448{bottom:907.013333pt;}
.y9a_c00448{bottom:907.773333pt;}
.y9b_c00448{bottom:908.546667pt;}
.y96_c00448{bottom:909.306667pt;}
.y95_c00448{bottom:910.080000pt;}
.y8d_c00448{bottom:916.226667pt;}
.y8c_c00448{bottom:917.760000pt;}
.y86_c00448{bottom:919.293333pt;}
.y87_c00448{bottom:921.600000pt;}
.y8a_c00448{bottom:922.373333pt;}
.y88_c00448{bottom:923.133333pt;}
.y85_c00448{bottom:923.906667pt;}
.y8b_c00448{bottom:924.666667pt;}
.y89_c00448{bottom:926.213333pt;}
.y84_c00448{bottom:926.973333pt;}
.y83_c00448{bottom:936.960000pt;}
.y81_c00448{bottom:938.493333pt;}
.y7f_c00448{bottom:939.266667pt;}
.y82_c00448{bottom:940.026667pt;}
.y7e_c00448{bottom:940.800000pt;}
.y7d_c00448{bottom:942.333333pt;}
.y7b_c00448{bottom:943.106667pt;}
.y80_c00448{bottom:943.866667pt;}
.y77_c00448{bottom:947.706667pt;}
.y7c_c00448{bottom:948.480000pt;}
.y76_c00448{bottom:953.093333pt;}
.y79_c00448{bottom:955.386667pt;}
.y75_c00448{bottom:957.693333pt;}
.y78_c00448{bottom:958.466667pt;}
.y7a_c00448{bottom:959.226667pt;}
.y72_c00448{bottom:960.773333pt;}
.y73_c00448{bottom:961.533333pt;}
.y74_c00448{bottom:962.306667pt;}
.y6f_c00448{bottom:963.840000pt;}
.y6c_c00448{bottom:964.613333pt;}
.y6d_c00448{bottom:967.680000pt;}
.y71_c00448{bottom:968.453333pt;}
.y6e_c00448{bottom:969.213333pt;}
.y6b_c00448{bottom:972.293333pt;}
.y70_c00448{bottom:980.733333pt;}
.y67_c00448{bottom:982.266667pt;}
.y6a_c00448{bottom:983.040000pt;}
.y69_c00448{bottom:985.346667pt;}
.y64_c00448{bottom:986.880000pt;}
.y65_c00448{bottom:987.653333pt;}
.y68_c00448{bottom:989.186667pt;}
.y62_c00448{bottom:989.946667pt;}
.y66_c00448{bottom:991.493333pt;}
.y61_c00448{bottom:993.026667pt;}
.y63_c00448{bottom:993.786667pt;}
.y60_c00448{bottom:1003.773333pt;}
.y5f_c00448{bottom:1006.080000pt;}
.y5d_c00448{bottom:1008.386667pt;}
.y5c_c00448{bottom:1009.146667pt;}
.y5a_c00448{bottom:1009.920000pt;}
.y5b_c00448{bottom:1010.693333pt;}
.y5e_c00448{bottom:1012.986667pt;}
.y59_c00448{bottom:1016.826667pt;}
.y57_c00448{bottom:1027.586667pt;}
.y58_c00448{bottom:1029.120000pt;}
.y54_c00448{bottom:1030.653333pt;}
.y51_c00448{bottom:1031.426667pt;}
.y53_c00448{bottom:1032.186667pt;}
.y55_c00448{bottom:1033.733333pt;}
.y56_c00448{bottom:1034.493333pt;}
.y52_c00448{bottom:1036.800000pt;}
.y50_c00448{bottom:1041.413333pt;}
.y4f_c00448{bottom:1044.480000pt;}
.y4e_c00448{bottom:1051.386667pt;}
.y48_c00448{bottom:1054.466667pt;}
.y4d_c00448{bottom:1059.066667pt;}
.y4a_c00448{bottom:1059.840000pt;}
.y49_c00448{bottom:1060.613333pt;}
.y4c_c00448{bottom:1061.373333pt;}
.y4b_c00448{bottom:1069.826667pt;}
.y44_c00448{bottom:1072.893333pt;}
.y46_c00448{bottom:1073.666667pt;}
.y45_c00448{bottom:1074.426667pt;}
.y42_c00448{bottom:1075.200000pt;}
.y47_c00448{bottom:1076.733333pt;}
.y43_c00448{bottom:1078.266667pt;}
.y40_c00448{bottom:1081.346667pt;}
.y41_c00448{bottom:1082.106667pt;}
.y3f_c00448{bottom:1082.880000pt;}
.y3a_c00448{bottom:1095.173333pt;}
.y39_c00448{bottom:1096.706667pt;}
.y114_c00448{bottom:1097.466667pt;}
.y34_c00448{bottom:1098.240000pt;}
.y3d_c00448{bottom:1099.013333pt;}
.y3b_c00448{bottom:1099.773333pt;}
.y3c_c00448{bottom:1102.853333pt;}
.y37_c00448{bottom:1103.613333pt;}
.y35_c00448{bottom:1104.386667pt;}
.y36_c00448{bottom:1106.693333pt;}
.y3e_c00448{bottom:1108.986667pt;}
.y38_c00448{bottom:1109.760000pt;}
.y30_c00448{bottom:1118.973333pt;}
.y2f_c00448{bottom:1119.746667pt;}
.y2e_c00448{bottom:1120.506667pt;}
.y32_c00448{bottom:1122.053333pt;}
.y33_c00448{bottom:1122.813333pt;}
.y2c_c00448{bottom:1123.586667pt;}
.y31_c00448{bottom:1124.346667pt;}
.y2b_c00448{bottom:1125.120000pt;}
.y2d_c00448{bottom:1126.653333pt;}
.y112_c00448{bottom:1137.413333pt;}
.y2a_c00448{bottom:1143.546667pt;}
.y28_c00448{bottom:1144.320000pt;}
.y29_c00448{bottom:1145.853333pt;}
.y26_c00448{bottom:1147.386667pt;}
.y25_c00448{bottom:1148.933333pt;}
.y27_c00448{bottom:1152.000000pt;}
.y24_c00448{bottom:1157.373333pt;}
.y23_c00448{bottom:1159.680000pt;}
.y21_c00448{bottom:1161.213333pt;}
.y22_c00448{bottom:1162.746667pt;}
.y20_c00448{bottom:1163.520000pt;}
.y1e_c00448{bottom:1164.293333pt;}
.y1c_c00448{bottom:1165.053333pt;}
.y1f_c00448{bottom:1165.826667pt;}
.y19_c00448{bottom:1166.586667pt;}
.y1d_c00448{bottom:1167.360000pt;}
.y1a_c00448{bottom:1168.133333pt;}
.y1b_c00448{bottom:1170.426667pt;}
.y18_c00448{bottom:1171.973333pt;}
.y16_c00448{bottom:1174.266667pt;}
.y14_c00448{bottom:1175.040000pt;}
.y13_c00448{bottom:1175.813333pt;}
.y12_c00448{bottom:1176.573333pt;}
.y17_c00448{bottom:1178.880000pt;}
.ye_c00448{bottom:1179.653333pt;}
.y15_c00448{bottom:1180.413333pt;}
.yf_c00448{bottom:1181.946667pt;}
.y11_c00448{bottom:1182.720000pt;}
.yb_c00448{bottom:1183.493333pt;}
.y10_c00448{bottom:1184.253333pt;}
.y6_c00448{bottom:1186.560000pt;}
.ya_c00448{bottom:1187.333333pt;}
.y9_c00448{bottom:1190.400000pt;}
.yc_c00448{bottom:1191.173333pt;}
.y8_c00448{bottom:1191.933333pt;}
.yd_c00448{bottom:1192.706667pt;}
.y7_c00448{bottom:1207.293333pt;}
.y113_c00448{bottom:1215.746667pt;}
.y5_c00448{bottom:1250.306667pt;}
.y4_c00448{bottom:1261.826667pt;}
.y2_c00448{bottom:1266.426667pt;}
.y3_c00448{bottom:1267.200000pt;}
.y1_c00448{bottom:1268.733333pt;}
.h2_c00448{height:2.764500pt;}
.h1c_c00448{height:4.799479pt;}
.h3_c00448{height:5.519401pt;}
.h4_c00448{height:8.303099pt;}
.h11_c00448{height:11.038802pt;}
.h10_c00448{height:13.822500pt;}
.h1b_c00448{height:16.606198pt;}
.h5_c00448{height:19.341901pt;}
.h15_c00448{height:22.125599pt;}
.h1a_c00448{height:24.861302pt;}
.hf_c00448{height:27.645000pt;}
.h25_c00448{height:30.428698pt;}
.h12_c00448{height:33.164401pt;}
.h13_c00448{height:35.948099pt;}
.h14_c00448{height:38.683802pt;}
.h1e_c00448{height:41.467500pt;}
.h23_c00448{height:44.251198pt;}
.h19_c00448{height:46.986901pt;}
.h17_c00448{height:49.770599pt;}
.h16_c00448{height:52.506302pt;}
.hd_c00448{height:55.290000pt;}
.h1d_c00448{height:58.073698pt;}
.h18_c00448{height:60.809401pt;}
.h8_c00448{height:63.593099pt;}
.h24_c00448{height:66.328802pt;}
.h9_c00448{height:69.112500pt;}
.hc_c00448{height:71.896198pt;}
.h1f_c00448{height:74.631901pt;}
.h20_c00448{height:77.415599pt;}
.ha_c00448{height:80.151302pt;}
.he_c00448{height:82.935000pt;}
.h22_c00448{height:85.718698pt;}
.h21_c00448{height:88.454401pt;}
.h26_c00448{height:91.238099pt;}
.hb_c00448{height:93.973802pt;}
.h27_c00448{height:96.757500pt;}
.h28_c00448{height:99.541198pt;}
.h7_c00448{height:116.099401pt;}
.h6_c00448{height:127.186198pt;}
.h0_c00448{height:1347.066667pt;}
.h1_c00448{height:1347.333333pt;}
.w0_c00448{width:959.226667pt;}
.w1_c00448{width:959.333333pt;}
.x0_c00448{left:0.000000pt;}
.xc8_c00448{left:168.186667pt;}
.xb4_c00448{left:169.733333pt;}
.x5a_c00448{left:174.333333pt;}
.xb5_c00448{left:180.480000pt;}
.xbf_c00448{left:184.320000pt;}
.xbc_c00448{left:190.466667pt;}
.xc0_c00448{left:195.066667pt;}
.x5b_c00448{left:198.906667pt;}
.xb6_c00448{left:201.213333pt;}
.x89_c00448{left:204.293333pt;}
.x9b_c00448{left:205.826667pt;}
.x55_c00448{left:208.133333pt;}
.x7_c00448{left:210.426667pt;}
.xa4_c00448{left:211.973333pt;}
.x4e_c00448{left:213.506667pt;}
.x29_c00448{left:221.186667pt;}
.x5c_c00448{left:222.720000pt;}
.xa5_c00448{left:225.786667pt;}
.xaf_c00448{left:227.333333pt;}
.x9c_c00448{left:230.400000pt;}
.x2a_c00448{left:231.933333pt;}
.x37_c00448{left:234.240000pt;}
.x12_c00448{left:235.773333pt;}
.x4f_c00448{left:237.306667pt;}
.x9a_c00448{left:239.613333pt;}
.x2b_c00448{left:243.453333pt;}
.x6b_c00448{left:248.826667pt;}
.x13_c00448{left:254.213333pt;}
.x7c_c00448{left:257.280000pt;}
.x94_c00448{left:267.266667pt;}
.xc5_c00448{left:271.106667pt;}
.x64_c00448{left:274.173333pt;}
.xa6_c00448{left:276.480000pt;}
.x38_c00448{left:278.013333pt;}
.x65_c00448{left:281.853333pt;}
.x39_c00448{left:284.933333pt;}
.x20_c00448{left:287.226667pt;}
.x14_c00448{left:290.306667pt;}
.xb9_c00448{left:294.146667pt;}
.x74_c00448{left:298.746667pt;}
.x9d_c00448{left:300.293333pt;}
.x7f_c00448{left:304.893333pt;}
.x31_c00448{left:308.733333pt;}
.x21_c00448{left:310.266667pt;}
.x80_c00448{left:311.813333pt;}
.x6c_c00448{left:313.346667pt;}
.x95_c00448{left:316.413333pt;}
.x81_c00448{left:317.946667pt;}
.x50_c00448{left:319.493333pt;}
.xa7_c00448{left:321.786667pt;}
.x3a_c00448{left:334.853333pt;}
.xb0_c00448{left:337.146667pt;}
.x2c_c00448{left:341.760000pt;}
.x6d_c00448{left:345.600000pt;}
.x1_c00448{left:347.133333pt;}
.x2d_c00448{left:353.280000pt;}
.x8_c00448{left:354.813333pt;}
.x2_c00448{left:356.346667pt;}
.xc6_c00448{left:357.893333pt;}
.x15_c00448{left:359.426667pt;}
.x22_c00448{left:361.733333pt;}
.x3_c00448{left:364.026667pt;}
.x5_c00448{left:365.573333pt;}
.x3b_c00448{left:367.866667pt;}
.x16_c00448{left:369.413333pt;}
.x4_c00448{left:371.706667pt;}
.x5d_c00448{left:376.320000pt;}
.x17_c00448{left:380.160000pt;}
.x9e_c00448{left:388.613333pt;}
.x3c_c00448{left:390.146667pt;}
.x23_c00448{left:391.680000pt;}
.x51_c00448{left:395.520000pt;}
.x66_c00448{left:397.826667pt;}
.x24_c00448{left:400.133333pt;}
.x9f_c00448{left:403.973333pt;}
.xb7_c00448{left:406.266667pt;}
.x82_c00448{left:410.106667pt;}
.x44_c00448{left:413.946667pt;}
.x45_c00448{left:416.253333pt;}
.x83_c00448{left:417.786667pt;}
.xa8_c00448{left:420.093333pt;}
.x67_c00448{left:421.626667pt;}
.x32_c00448{left:424.706667pt;}
.xb1_c00448{left:427.013333pt;}
.x46_c00448{left:432.386667pt;}
.xa0_c00448{left:433.919189pt;}
.x8c_c00448{left:435.453333pt;}
.x5e_c00448{left:438.533333pt;}
.xa1_c00448{left:440.826667pt;}
.x6e_c00448{left:442.373333pt;}
.x18_c00448{left:445.440000pt;}
.x25_c00448{left:446.973333pt;}
.x75_c00448{left:448.506667pt;}
.x33_c00448{left:450.813333pt;}
.x19_c00448{left:456.186667pt;}
.x56_c00448{left:460.800000pt;}
.x96_c00448{left:464.640000pt;}
.x47_c00448{left:477.693333pt;}
.x2e_c00448{left:479.226667pt;}
.x8d_c00448{left:483.066667pt;}
.x76_c00448{left:484.613333pt;}
.x9_c00448{left:487.680000pt;}
.x48_c00448{left:489.213333pt;}
.xa_c00448{left:492.293333pt;}
.x77_c00448{left:493.826667pt;}
.x3d_c00448{left:495.360000pt;}
.x5f_c00448{left:496.893333pt;}
.xa9_c00448{left:498.426667pt;}
.x57_c00448{left:499.973333pt;}
.x34_c00448{left:501.506667pt;}
.xbd_c00448{left:503.813333pt;}
.x8e_c00448{left:505.346667pt;}
.x26_c00448{left:506.880000pt;}
.xaa_c00448{left:513.026667pt;}
.x7d_c00448{left:514.560000pt;}
.x84_c00448{left:516.866667pt;}
.x58_c00448{left:518.400000pt;}
.xb_c00448{left:519.933333pt;}
.x78_c00448{left:521.466667pt;}
.x3e_c00448{left:523.013333pt;}
.xc1_c00448{left:526.853333pt;}
.x59_c00448{left:529.920000pt;}
.x6_c00448{left:533.760000pt;}
.xc_c00448{left:540.666667pt;}
.x3f_c00448{left:542.213333pt;}
.x97_c00448{left:543.746667pt;}
.x8a_c00448{left:545.280000pt;}
.x6f_c00448{left:547.586667pt;}
.xba_c00448{left:551.426667pt;}
.xc2_c00448{left:562.173333pt;}
.xab_c00448{left:563.706667pt;}
.x35_c00448{left:565.253333pt;}
.x52_c00448{left:570.626667pt;}
.xbe_c00448{left:572.160000pt;}
.x98_c00448{left:577.533333pt;}
.xd_c00448{left:579.066667pt;}
.x40_c00448{left:581.373333pt;}
.x68_c00448{left:582.906667pt;}
.x2f_c00448{left:584.453333pt;}
.xac_c00448{left:590.586667pt;}
.x8b_c00448{left:592.133333pt;}
.x79_c00448{left:594.426667pt;}
.x69_c00448{left:597.506667pt;}
.xa2_c00448{left:599.040000pt;}
.x92_c00448{left:605.186667pt;}
.x85_c00448{left:606.720000pt;}
.x1a_c00448{left:610.560000pt;}
.xc3_c00448{left:612.093333pt;}
.xe_c00448{left:617.466667pt;}
.x41_c00448{left:619.773333pt;}
.x49_c00448{left:623.613333pt;}
.x93_c00448{left:625.920000pt;}
.xa3_c00448{left:627.453333pt;}
.x27_c00448{left:631.293333pt;}
.x60_c00448{left:632.826667pt;}
.x4a_c00448{left:634.373333pt;}
.x99_c00448{left:636.666667pt;}
.x8f_c00448{left:638.213333pt;}
.xf_c00448{left:642.053333pt;}
.xb2_c00448{left:644.346667pt;}
.x53_c00448{left:648.960000pt;}
.x70_c00448{left:652.026667pt;}
.x71_c00448{left:656.640000pt;}
.x6a_c00448{left:658.946667pt;}
.x1b_c00448{left:662.013333pt;}
.x86_c00448{left:665.853333pt;}
.xb3_c00448{left:667.386667pt;}
.x4b_c00448{left:668.933333pt;}
.xc7_c00448{left:672.000000pt;}
.x1c_c00448{left:673.533333pt;}
.xc4_c00448{left:675.066667pt;}
.xb8_c00448{left:678.906667pt;}
.x7a_c00448{left:681.986667pt;}
.x4c_c00448{left:683.520000pt;}
.x1d_c00448{left:685.053333pt;}
.x10_c00448{left:690.426667pt;}
.x61_c00448{left:691.973333pt;}
.x90_c00448{left:695.040000pt;}
.x7e_c00448{left:701.946667pt;}
.xad_c00448{left:704.253333pt;}
.x11_c00448{left:708.093333pt;}
.xbb_c00448{left:714.240000pt;}
.x91_c00448{left:717.306667pt;}
.x42_c00448{left:720.386667pt;}
.x72_c00448{left:722.693333pt;}
.x62_c00448{left:728.826667pt;}
.x63_c00448{left:731.133333pt;}
.x1e_c00448{left:733.440000pt;}
.x4d_c00448{left:736.506667pt;}
.x30_c00448{left:742.653333pt;}
.x73_c00448{left:744.960000pt;}
.x7b_c00448{left:748.800000pt;}
.x36_c00448{left:752.640000pt;}
.x87_c00448{left:754.946667pt;}
.x54_c00448{left:756.480000pt;}
.x43_c00448{left:758.013333pt;}
.x28_c00448{left:760.320000pt;}
.x1f_c00448{left:762.626667pt;}
.x88_c00448{left:782.586667pt;}
.xae_c00448{left:789.506667pt;}
.xca_c00448{left:886.266667pt;}
.xc9_c00448{left:894.720000pt;}
.xcb_c00448{left:904.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4219f5f4c4e62c3085616942.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.109863;font-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_c00449{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1f_c00449{transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);}
.m33_c00449{transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);}
.m35_c00449{transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);}
.m46_c00449{transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);}
.m28_c00449{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00449{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m47_c00449{transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);}
.m4c_c00449{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.mf_c00449{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m37_c00449{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m7_c00449{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m32_c00449{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.md_c00449{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.m20_c00449{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);}
.m49_c00449{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.m4b_c00449{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m19_c00449{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);}
.m3_c00449{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);}
.m1c_c00449{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m43_c00449{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);}
.m40_c00449{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);}
.m34_c00449{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m3d_c00449{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3a_c00449{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);}
.m0_c00449{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);}
.m1a_c00449{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);}
.m48_c00449{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12_c00449{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);}
.m3c_c00449{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m27_c00449{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m36_c00449{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);}
.m21_c00449{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5_c00449{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m38_c00449{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6_c00449{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m44_c00449{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2e_c00449{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb_c00449{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);}
.m2d_c00449{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m42_c00449{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c00449{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c00449{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3e_c00449{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);}
.m2a_c00449{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.me_c00449{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);}
.m1b_c00449{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m3f_c00449{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4_c00449{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);}
.m2f_c00449{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);}
.m2b_c00449{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.ma_c00449{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);}
.m1e_c00449{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m39_c00449{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m11_c00449{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);}
.m13_c00449{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);}
.m31_c00449{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00449{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);}
.m9_c00449{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14_c00449{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m15_c00449{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m23_c00449{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1_c00449{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m26_c00449{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m24_c00449{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m25_c00449{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m41_c00449{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);}
.m16_c00449{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m17_c00449{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00449{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m22_c00449{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m10_c00449{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m29_c00449{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.mc_c00449{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m4a_c00449{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m30_c00449{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m45_c00449{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,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;}
.fsd_c00449{font-size:3.456000px;}
.fs1d_c00449{font-size:6.000000px;}
.fs10_c00449{font-size:6.900000px;}
.fs18_c00449{font-size:20.760000px;}
.fsf_c00449{font-size:24.180000px;}
.fs1e_c00449{font-size:27.660000px;}
.fs1c_c00449{font-size:51.840000px;}
.fs1b_c00449{font-size:55.320000px;}
.fse_c00449{font-size:58.740000px;}
.fs19_c00449{font-size:62.220000px;}
.fs9_c00449{font-size:65.640000px;}
.fs8_c00449{font-size:69.120000px;}
.fsa_c00449{font-size:76.020000px;}
.fsc_c00449{font-size:79.500000px;}
.fs1a_c00449{font-size:82.920000px;}
.fs1f_c00449{font-size:86.400000px;}
.fs16_c00449{font-size:89.880000px;}
.fsb_c00449{font-size:93.300000px;}
.fs7_c00449{font-size:96.780000px;}
.fs4_c00449{font-size:100.200000px;}
.fs3_c00449{font-size:103.680000px;}
.fs5_c00449{font-size:107.160000px;}
.fs17_c00449{font-size:114.060000px;}
.fs14_c00449{font-size:117.480000px;}
.fs15_c00449{font-size:120.960000px;}
.fs6_c00449{font-size:124.440000px;}
.fs13_c00449{font-size:131.340000px;}
.fs12_c00449{font-size:141.720000px;}
.fs11_c00449{font-size:145.140000px;}
.fs2_c00449{font-size:165.900000px;}
.fs0_c00449{font-size:169.320000px;}
.fs1_c00449{font-size:172.800000px;}
.y0_c00449{bottom:0.000000px;}
.y43_c00449{bottom:668.730000px;}
.y44_c00449{bottom:673.050000px;}
.y46_c00449{bottom:673.920000px;}
.y45_c00449{bottom:674.790000px;}
.y47_c00449{bottom:675.645000px;}
.y42_c00449{bottom:677.370000px;}
.y41_c00449{bottom:678.240000px;}
.y4a_c00449{bottom:679.965000px;}
.y4b_c00449{bottom:681.690000px;}
.y49_c00449{bottom:686.010000px;}
.y48_c00449{bottom:700.710000px;}
.y3a_c00449{bottom:703.290000px;}
.y35_c00449{bottom:705.030000px;}
.y36_c00449{bottom:705.885000px;}
.y37_c00449{bottom:706.755000px;}
.y38_c00449{bottom:707.610000px;}
.y39_c00449{bottom:708.480000px;}
.y3d_c00449{bottom:709.350000px;}
.y3c_c00449{bottom:710.205000px;}
.y3b_c00449{bottom:711.075000px;}
.y3e_c00449{bottom:711.930000px;}
.y3f_c00449{bottom:712.800000px;}
.y40_c00449{bottom:727.485000px;}
.y31_c00449{bottom:731.805000px;}
.y2d_c00449{bottom:732.675000px;}
.y30_c00449{bottom:736.125000px;}
.y2e_c00449{bottom:736.995000px;}
.y34_c00449{bottom:737.850000px;}
.y2f_c00449{bottom:738.720000px;}
.y32_c00449{bottom:740.445000px;}
.y33_c00449{bottom:741.315000px;}
.y2c_c00449{bottom:748.230000px;}
.y24_c00449{bottom:787.965000px;}
.y26_c00449{bottom:789.690000px;}
.y2b_c00449{bottom:790.560000px;}
.y25_c00449{bottom:794.010000px;}
.y27_c00449{bottom:794.880000px;}
.y28_c00449{bottom:795.750000px;}
.y29_c00449{bottom:796.605000px;}
.y2a_c00449{bottom:797.475000px;}
.y20_c00449{bottom:821.670000px;}
.y1f_c00449{bottom:823.395000px;}
.y21_c00449{bottom:844.125000px;}
.y22_c00449{bottom:844.995000px;}
.y23_c00449{bottom:845.850000px;}
.y1e_c00449{bottom:919.290000px;}
.y17_c00449{bottom:921.885000px;}
.y16_c00449{bottom:922.755000px;}
.y18_c00449{bottom:924.480000px;}
.y19_c00449{bottom:925.350000px;}
.y1d_c00449{bottom:926.205000px;}
.y1a_c00449{bottom:927.075000px;}
.y1b_c00449{bottom:927.930000px;}
.y1c_c00449{bottom:928.800000px;}
.y14_c00449{bottom:965.955000px;}
.y15_c00449{bottom:970.275000px;}
.y10_c00449{bottom:972.870000px;}
.y11_c00449{bottom:974.595000px;}
.y12_c00449{bottom:976.320000px;}
.y13_c00449{bottom:978.045000px;}
.yf_c00449{bottom:1025.565000px;}
.yd_c00449{bottom:1030.755000px;}
.yc_c00449{bottom:1034.205000px;}
.yb_c00449{bottom:1035.075000px;}
.y9_c00449{bottom:1035.930000px;}
.ya_c00449{bottom:1036.800000px;}
.ye_c00449{bottom:1037.670000px;}
.y5_c00449{bottom:1073.085000px;}
.y4_c00449{bottom:1074.810000px;}
.y6_c00449{bottom:1076.550000px;}
.y7_c00449{bottom:1077.405000px;}
.y8_c00449{bottom:1079.130000px;}
.y2_c00449{bottom:1126.650000px;}
.y1_c00449{bottom:1127.520000px;}
.y3_c00449{bottom:1128.390000px;}
.he_c00449{height:3.110063px;}
.h1e_c00449{height:5.399414px;}
.h11_c00449{height:6.209326px;}
.h19_c00449{height:18.681973px;}
.h10_c00449{height:21.759639px;}
.h1f_c00449{height:24.891299px;}
.h1d_c00449{height:46.650937px;}
.h1c_c00449{height:49.782598px;}
.hf_c00449{height:52.860264px;}
.h1a_c00449{height:55.991924px;}
.ha_c00449{height:59.069590px;}
.h9_c00449{height:62.201250px;}
.hb_c00449{height:68.410576px;}
.hd_c00449{height:71.542236px;}
.h1b_c00449{height:74.619902px;}
.h20_c00449{height:77.751563px;}
.h17_c00449{height:80.883223px;}
.hc_c00449{height:83.960889px;}
.h8_c00449{height:87.092549px;}
.h5_c00449{height:90.170215px;}
.h4_c00449{height:93.301875px;}
.h6_c00449{height:96.433535px;}
.h18_c00449{height:102.642861px;}
.h15_c00449{height:105.720527px;}
.h16_c00449{height:108.852188px;}
.h7_c00449{height:111.983848px;}
.h14_c00449{height:118.193174px;}
.h13_c00449{height:127.534160px;}
.h12_c00449{height:130.611826px;}
.h3_c00449{height:149.293799px;}
.h1_c00449{height:152.371465px;}
.h2_c00449{height:155.503125px;}
.h0_c00449{height:1512.000000px;}
.w0_c00449{width:1100.730000px;}
.w1_c00449{width:1101.000000px;}
.x0_c00449{left:0.000000px;}
.x31_c00449{left:35.430000px;}
.x32_c00449{left:50.115000px;}
.x60_c00449{left:219.450000px;}
.x49_c00449{left:226.365000px;}
.x1f_c00449{left:237.600000px;}
.x4a_c00449{left:243.645000px;}
.x61_c00449{left:272.160000px;}
.x4_c00449{left:277.350000px;}
.x62_c00449{left:285.120000px;}
.x4b_c00449{left:286.845000px;}
.x4c_c00449{left:309.315000px;}
.x5_c00449{left:312.765000px;}
.x41_c00449{left:317.085000px;}
.x63_c00449{left:325.725000px;}
.x4d_c00449{left:327.450000px;}
.x20_c00449{left:330.915000px;}
.x42_c00449{left:335.235000px;}
.x6_c00449{left:349.050000px;}
.x36_c00449{left:362.880000px;}
.x19_c00449{left:366.330000px;}
.x2e_c00449{left:368.925000px;}
.x37_c00449{left:381.885000px;}
.x43_c00449{left:386.205000px;}
.xd_c00449{left:387.930000px;}
.x4e_c00449{left:395.715000px;}
.x21_c00449{left:400.035000px;}
.x64_c00449{left:408.675000px;}
.x44_c00449{left:410.400000px;}
.x4f_c00449{left:413.850000px;}
.xe_c00449{left:416.445000px;}
.x38_c00449{left:418.170000px;}
.x7_c00449{left:424.230000px;}
.x45_c00449{left:427.680000px;}
.x18_c00449{left:430.275000px;}
.x50_c00449{left:436.320000px;}
.x33_c00449{left:438.915000px;}
.x22_c00449{left:442.365000px;}
.xf_c00449{left:444.090000px;}
.x39_c00449{left:460.515000px;}
.x51_c00449{left:465.690000px;}
.x10_c00449{left:469.155000px;}
.x23_c00449{left:474.330000px;}
.x3a_c00449{left:484.710000px;}
.x52_c00449{left:489.030000px;}
.x1a_c00449{left:494.205000px;}
.x11_c00449{left:495.930000px;}
.x34_c00449{left:502.845000px;}
.x3b_c00449{left:507.165000px;}
.x53_c00449{left:510.630000px;}
.x8_c00449{left:513.210000px;}
.x24_c00449{left:517.530000px;}
.x3c_c00449{left:526.170000px;}
.x54_c00449{left:528.765000px;}
.x12_c00449{left:531.360000px;}
.x25_c00449{left:541.725000px;}
.x1c_c00449{left:557.280000px;}
.x35_c00449{left:564.195000px;}
.x55_c00449{left:566.790000px;}
.x46_c00449{left:569.370000px;}
.x13_c00449{left:571.965000px;}
.x3d_c00449{left:573.690000px;}
.x9_c00449{left:578.010000px;}
.x1d_c00449{left:579.750000px;}
.x26_c00449{left:586.650000px;}
.x56_c00449{left:591.840000px;}
.x3e_c00449{left:595.290000px;}
.x14_c00449{left:598.755000px;}
.x3f_c00449{left:613.440000px;}
.xa_c00449{left:616.890000px;}
.x27_c00449{left:625.530000px;}
.x15_c00449{left:627.270000px;}
.x40_c00449{left:642.810000px;}
.x65_c00449{left:646.275000px;}
.x28_c00449{left:652.320000px;}
.x16_c00449{left:654.045000px;}
.x57_c00449{left:655.770000px;}
.xb_c00449{left:673.050000px;}
.x47_c00449{left:677.370000px;}
.x17_c00449{left:681.690000px;}
.x58_c00449{left:686.880000px;}
.x66_c00449{left:695.520000px;}
.x29_c00449{left:701.565000px;}
.x48_c00449{left:705.885000px;}
.x59_c00449{left:711.930000px;}
.x1_c00449{left:721.440000px;}
.x2f_c00449{left:725.760000px;}
.x1e_c00449{left:732.675000px;}
.x1b_c00449{left:743.040000px;}
.x2a_c00449{left:750.810000px;}
.x67_c00449{left:760.320000px;}
.x5a_c00449{left:763.770000px;}
.x2_c00449{left:771.555000px;}
.x5b_c00449{left:781.920000px;}
.xc_c00449{left:786.240000px;}
.x2b_c00449{left:802.650000px;}
.x5c_c00449{left:808.710000px;}
.x30_c00449{left:822.525000px;}
.x5d_c00449{left:829.440000px;}
.x3_c00449{left:834.630000px;}
.x2c_c00449{left:841.530000px;}
.x5e_c00449{left:851.910000px;}
.x2d_c00449{left:867.450000px;}
.x5f_c00449{left:875.235000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ws0_c00449{word-spacing:0.000000pt;}
.fsd_c00449{font-size:3.072000pt;}
.fs1d_c00449{font-size:5.333333pt;}
.fs10_c00449{font-size:6.133333pt;}
.fs18_c00449{font-size:18.453333pt;}
.fsf_c00449{font-size:21.493333pt;}
.fs1e_c00449{font-size:24.586667pt;}
.fs1c_c00449{font-size:46.080000pt;}
.fs1b_c00449{font-size:49.173333pt;}
.fse_c00449{font-size:52.213333pt;}
.fs19_c00449{font-size:55.306667pt;}
.fs9_c00449{font-size:58.346667pt;}
.fs8_c00449{font-size:61.440000pt;}
.fsa_c00449{font-size:67.573333pt;}
.fsc_c00449{font-size:70.666667pt;}
.fs1a_c00449{font-size:73.706667pt;}
.fs1f_c00449{font-size:76.800000pt;}
.fs16_c00449{font-size:79.893333pt;}
.fsb_c00449{font-size:82.933333pt;}
.fs7_c00449{font-size:86.026667pt;}
.fs4_c00449{font-size:89.066667pt;}
.fs3_c00449{font-size:92.160000pt;}
.fs5_c00449{font-size:95.253333pt;}
.fs17_c00449{font-size:101.386667pt;}
.fs14_c00449{font-size:104.426667pt;}
.fs15_c00449{font-size:107.520000pt;}
.fs6_c00449{font-size:110.613333pt;}
.fs13_c00449{font-size:116.746667pt;}
.fs12_c00449{font-size:125.973333pt;}
.fs11_c00449{font-size:129.013333pt;}
.fs2_c00449{font-size:147.466667pt;}
.fs0_c00449{font-size:150.506667pt;}
.fs1_c00449{font-size:153.600000pt;}
.y0_c00449{bottom:0.000000pt;}
.y43_c00449{bottom:594.426667pt;}
.y44_c00449{bottom:598.266667pt;}
.y46_c00449{bottom:599.040000pt;}
.y45_c00449{bottom:599.813333pt;}
.y47_c00449{bottom:600.573333pt;}
.y42_c00449{bottom:602.106667pt;}
.y41_c00449{bottom:602.880000pt;}
.y4a_c00449{bottom:604.413333pt;}
.y4b_c00449{bottom:605.946667pt;}
.y49_c00449{bottom:609.786667pt;}
.y48_c00449{bottom:622.853333pt;}
.y3a_c00449{bottom:625.146667pt;}
.y35_c00449{bottom:626.693333pt;}
.y36_c00449{bottom:627.453333pt;}
.y37_c00449{bottom:628.226667pt;}
.y38_c00449{bottom:628.986667pt;}
.y39_c00449{bottom:629.760000pt;}
.y3d_c00449{bottom:630.533333pt;}
.y3c_c00449{bottom:631.293333pt;}
.y3b_c00449{bottom:632.066667pt;}
.y3e_c00449{bottom:632.826667pt;}
.y3f_c00449{bottom:633.600000pt;}
.y40_c00449{bottom:646.653333pt;}
.y31_c00449{bottom:650.493333pt;}
.y2d_c00449{bottom:651.266667pt;}
.y30_c00449{bottom:654.333333pt;}
.y2e_c00449{bottom:655.106667pt;}
.y34_c00449{bottom:655.866667pt;}
.y2f_c00449{bottom:656.640000pt;}
.y32_c00449{bottom:658.173333pt;}
.y33_c00449{bottom:658.946667pt;}
.y2c_c00449{bottom:665.093333pt;}
.y24_c00449{bottom:700.413333pt;}
.y26_c00449{bottom:701.946667pt;}
.y2b_c00449{bottom:702.720000pt;}
.y25_c00449{bottom:705.786667pt;}
.y27_c00449{bottom:706.560000pt;}
.y28_c00449{bottom:707.333333pt;}
.y29_c00449{bottom:708.093333pt;}
.y2a_c00449{bottom:708.866667pt;}
.y20_c00449{bottom:730.373333pt;}
.y1f_c00449{bottom:731.906667pt;}
.y21_c00449{bottom:750.333333pt;}
.y22_c00449{bottom:751.106667pt;}
.y23_c00449{bottom:751.866667pt;}
.y1e_c00449{bottom:817.146667pt;}
.y17_c00449{bottom:819.453333pt;}
.y16_c00449{bottom:820.226667pt;}
.y18_c00449{bottom:821.760000pt;}
.y19_c00449{bottom:822.533333pt;}
.y1d_c00449{bottom:823.293333pt;}
.y1a_c00449{bottom:824.066667pt;}
.y1b_c00449{bottom:824.826667pt;}
.y1c_c00449{bottom:825.600000pt;}
.y14_c00449{bottom:858.626667pt;}
.y15_c00449{bottom:862.466667pt;}
.y10_c00449{bottom:864.773333pt;}
.y11_c00449{bottom:866.306667pt;}
.y12_c00449{bottom:867.840000pt;}
.y13_c00449{bottom:869.373333pt;}
.yf_c00449{bottom:911.613333pt;}
.yd_c00449{bottom:916.226667pt;}
.yc_c00449{bottom:919.293333pt;}
.yb_c00449{bottom:920.066667pt;}
.y9_c00449{bottom:920.826667pt;}
.ya_c00449{bottom:921.600000pt;}
.ye_c00449{bottom:922.373333pt;}
.y5_c00449{bottom:953.853333pt;}
.y4_c00449{bottom:955.386667pt;}
.y6_c00449{bottom:956.933333pt;}
.y7_c00449{bottom:957.693333pt;}
.y8_c00449{bottom:959.226667pt;}
.y2_c00449{bottom:1001.466667pt;}
.y1_c00449{bottom:1002.240000pt;}
.y3_c00449{bottom:1003.013333pt;}
.he_c00449{height:2.764500pt;}
.h1e_c00449{height:4.799479pt;}
.h11_c00449{height:5.519401pt;}
.h19_c00449{height:16.606198pt;}
.h10_c00449{height:19.341901pt;}
.h1f_c00449{height:22.125599pt;}
.h1d_c00449{height:41.467500pt;}
.h1c_c00449{height:44.251198pt;}
.hf_c00449{height:46.986901pt;}
.h1a_c00449{height:49.770599pt;}
.ha_c00449{height:52.506302pt;}
.h9_c00449{height:55.290000pt;}
.hb_c00449{height:60.809401pt;}
.hd_c00449{height:63.593099pt;}
.h1b_c00449{height:66.328802pt;}
.h20_c00449{height:69.112500pt;}
.h17_c00449{height:71.896198pt;}
.hc_c00449{height:74.631901pt;}
.h8_c00449{height:77.415599pt;}
.h5_c00449{height:80.151302pt;}
.h4_c00449{height:82.935000pt;}
.h6_c00449{height:85.718698pt;}
.h18_c00449{height:91.238099pt;}
.h15_c00449{height:93.973802pt;}
.h16_c00449{height:96.757500pt;}
.h7_c00449{height:99.541198pt;}
.h14_c00449{height:105.060599pt;}
.h13_c00449{height:113.363698pt;}
.h12_c00449{height:116.099401pt;}
.h3_c00449{height:132.705599pt;}
.h1_c00449{height:135.441302pt;}
.h2_c00449{height:138.225000pt;}
.h0_c00449{height:1344.000000pt;}
.w0_c00449{width:978.426667pt;}
.w1_c00449{width:978.666667pt;}
.x0_c00449{left:0.000000pt;}
.x31_c00449{left:31.493333pt;}
.x32_c00449{left:44.546667pt;}
.x60_c00449{left:195.066667pt;}
.x49_c00449{left:201.213333pt;}
.x1f_c00449{left:211.200000pt;}
.x4a_c00449{left:216.573333pt;}
.x61_c00449{left:241.920000pt;}
.x4_c00449{left:246.533333pt;}
.x62_c00449{left:253.440000pt;}
.x4b_c00449{left:254.973333pt;}
.x4c_c00449{left:274.946667pt;}
.x5_c00449{left:278.013333pt;}
.x41_c00449{left:281.853333pt;}
.x63_c00449{left:289.533333pt;}
.x4d_c00449{left:291.066667pt;}
.x20_c00449{left:294.146667pt;}
.x42_c00449{left:297.986667pt;}
.x6_c00449{left:310.266667pt;}
.x36_c00449{left:322.560000pt;}
.x19_c00449{left:325.626667pt;}
.x2e_c00449{left:327.933333pt;}
.x37_c00449{left:339.453333pt;}
.x43_c00449{left:343.293333pt;}
.xd_c00449{left:344.826667pt;}
.x4e_c00449{left:351.746667pt;}
.x21_c00449{left:355.586667pt;}
.x64_c00449{left:363.266667pt;}
.x44_c00449{left:364.800000pt;}
.x4f_c00449{left:367.866667pt;}
.xe_c00449{left:370.173333pt;}
.x38_c00449{left:371.706667pt;}
.x7_c00449{left:377.093333pt;}
.x45_c00449{left:380.160000pt;}
.x18_c00449{left:382.466667pt;}
.x50_c00449{left:387.840000pt;}
.x33_c00449{left:390.146667pt;}
.x22_c00449{left:393.213333pt;}
.xf_c00449{left:394.746667pt;}
.x39_c00449{left:409.346667pt;}
.x51_c00449{left:413.946667pt;}
.x10_c00449{left:417.026667pt;}
.x23_c00449{left:421.626667pt;}
.x3a_c00449{left:430.853333pt;}
.x52_c00449{left:434.693333pt;}
.x1a_c00449{left:439.293333pt;}
.x11_c00449{left:440.826667pt;}
.x34_c00449{left:446.973333pt;}
.x3b_c00449{left:450.813333pt;}
.x53_c00449{left:453.893333pt;}
.x8_c00449{left:456.186667pt;}
.x24_c00449{left:460.026667pt;}
.x3c_c00449{left:467.706667pt;}
.x54_c00449{left:470.013333pt;}
.x12_c00449{left:472.320000pt;}
.x25_c00449{left:481.533333pt;}
.x1c_c00449{left:495.360000pt;}
.x35_c00449{left:501.506667pt;}
.x55_c00449{left:503.813333pt;}
.x46_c00449{left:506.106667pt;}
.x13_c00449{left:508.413333pt;}
.x3d_c00449{left:509.946667pt;}
.x9_c00449{left:513.786667pt;}
.x1d_c00449{left:515.333333pt;}
.x26_c00449{left:521.466667pt;}
.x56_c00449{left:526.080000pt;}
.x3e_c00449{left:529.146667pt;}
.x14_c00449{left:532.226667pt;}
.x3f_c00449{left:545.280000pt;}
.xa_c00449{left:548.346667pt;}
.x27_c00449{left:556.026667pt;}
.x15_c00449{left:557.573333pt;}
.x40_c00449{left:571.386667pt;}
.x65_c00449{left:574.466667pt;}
.x28_c00449{left:579.840000pt;}
.x16_c00449{left:581.373333pt;}
.x57_c00449{left:582.906667pt;}
.xb_c00449{left:598.266667pt;}
.x47_c00449{left:602.106667pt;}
.x17_c00449{left:605.946667pt;}
.x58_c00449{left:610.560000pt;}
.x66_c00449{left:618.240000pt;}
.x29_c00449{left:623.613333pt;}
.x48_c00449{left:627.453333pt;}
.x59_c00449{left:632.826667pt;}
.x1_c00449{left:641.280000pt;}
.x2f_c00449{left:645.120000pt;}
.x1e_c00449{left:651.266667pt;}
.x1b_c00449{left:660.480000pt;}
.x2a_c00449{left:667.386667pt;}
.x67_c00449{left:675.840000pt;}
.x5a_c00449{left:678.906667pt;}
.x2_c00449{left:685.826667pt;}
.x5b_c00449{left:695.040000pt;}
.xc_c00449{left:698.880000pt;}
.x2b_c00449{left:713.466667pt;}
.x5c_c00449{left:718.853333pt;}
.x30_c00449{left:731.133333pt;}
.x5d_c00449{left:737.280000pt;}
.x3_c00449{left:741.893333pt;}
.x2c_c00449{left:748.026667pt;}
.x5e_c00449{left:757.253333pt;}
.x2d_c00449{left:771.066667pt;}
.x5f_c00449{left:777.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_90a9eeb450dc89be29ee789a.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.109863;font-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_c00450{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c00450{transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);}
.m7_c00450{transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);}
.m4_c00450{transform:matrix(0.095875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095875,0.000000,0.000000,0.250000,0,0);}
.m9_c00450{transform:matrix(0.130150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130150,0.000000,0.000000,0.250000,0,0);}
.m0_c00450{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb_c00450{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);}
.m10_c00450{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);}
.m13_c00450{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);}
.m15_c00450{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);}
.m11_c00450{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m14_c00450{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);}
.m16_c00450{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma_c00450{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c00450{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mf_c00450{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc_c00450{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c00450{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3_c00450{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m12_c00450{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m6_c00450{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m18_c00450{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.md_c00450{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m1_c00450{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m2_c00450{transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.102500,0.000000,0.000000,0.250000,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:3.456000px;}
.fsd_c00450{font-size:6.900000px;}
.fs1_c00450{font-size:10.380000px;}
.fs2_c00450{font-size:17.280000px;}
.fs4_c00450{font-size:24.180000px;}
.fs5_c00450{font-size:38.040000px;}
.fsa_c00450{font-size:48.360000px;}
.fs3_c00450{font-size:51.840000px;}
.fs9_c00450{font-size:58.740000px;}
.fsc_c00450{font-size:62.220000px;}
.fs8_c00450{font-size:65.640000px;}
.fsb_c00450{font-size:69.120000px;}
.fs6_c00450{font-size:72.600000px;}
.fs7_c00450{font-size:165.900000px;}
.y0_c00450{bottom:0.000000px;}
.ye_c00450{bottom:139.110000px;}
.yf_c00450{bottom:139.965000px;}
.y9_c00450{bottom:1399.680000px;}
.yd_c00450{bottom:1403.130000px;}
.ya_c00450{bottom:1404.870000px;}
.yb_c00450{bottom:1405.725000px;}
.yc_c00450{bottom:1406.595000px;}
.y8_c00450{bottom:1442.010000px;}
.y7_c00450{bottom:1457.565000px;}
.y5_c00450{bottom:1463.610000px;}
.y6_c00450{bottom:1467.930000px;}
.y4_c00450{bottom:1471.395000px;}
.y3_c00450{bottom:1477.440000px;}
.y1_c00450{bottom:1488.675000px;}
.y2_c00450{bottom:1489.530000px;}
.h2_c00450{height:3.110063px;}
.hf_c00450{height:6.209326px;}
.h3_c00450{height:9.340986px;}
.h4_c00450{height:15.550313px;}
.h6_c00450{height:21.759639px;}
.h7_c00450{height:34.232285px;}
.hc_c00450{height:43.519277px;}
.h5_c00450{height:46.650937px;}
.hb_c00450{height:52.860264px;}
.he_c00450{height:55.991924px;}
.ha_c00450{height:59.069590px;}
.hd_c00450{height:62.201250px;}
.h8_c00450{height:65.332910px;}
.h9_c00450{height:149.293799px;}
.h0_c00450{height:1515.450000px;}
.h1_c00450{height:1515.750000px;}
.w0_c00450{width:1088.640000px;}
.w1_c00450{width:1089.000000px;}
.x0_c00450{left:0.000000px;}
.x1_c00450{left:289.440000px;}
.xa_c00450{left:423.360000px;}
.xb_c00450{left:441.510000px;}
.xc_c00450{left:463.965000px;}
.xd_c00450{left:481.245000px;}
.xe_c00450{left:496.800000px;}
.xf_c00450{left:518.400000px;}
.x10_c00450{left:533.085000px;}
.x11_c00450{left:548.640000px;}
.x12_c00450{left:566.790000px;}
.x8_c00450{left:586.650000px;}
.x13_c00450{left:589.245000px;}
.x14_c00450{left:609.990000px;}
.x15_c00450{left:629.850000px;}
.x16_c00450{left:648.870000px;}
.x17_c00450{left:673.050000px;}
.x18_c00450{left:696.390000px;}
.x19_c00450{left:706.755000px;}
.x3_c00450{left:760.320000px;}
.x4_c00450{left:909.795000px;}
.x5_c00450{left:920.160000px;}
.x6_c00450{left:937.440000px;}
.x9_c00450{left:983.235000px;}
.x7_c00450{left:1004.835000px;}
.x2_c00450{left:1022.970000px;}
.x1a_c00450{left:1072.230000px;}
.x1b_c00450{left:1079.130000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ws0_c00450{word-spacing:0.000000pt;}
.fs0_c00450{font-size:3.072000pt;}
.fsd_c00450{font-size:6.133333pt;}
.fs1_c00450{font-size:9.226667pt;}
.fs2_c00450{font-size:15.360000pt;}
.fs4_c00450{font-size:21.493333pt;}
.fs5_c00450{font-size:33.813333pt;}
.fsa_c00450{font-size:42.986667pt;}
.fs3_c00450{font-size:46.080000pt;}
.fs9_c00450{font-size:52.213333pt;}
.fsc_c00450{font-size:55.306667pt;}
.fs8_c00450{font-size:58.346667pt;}
.fsb_c00450{font-size:61.440000pt;}
.fs6_c00450{font-size:64.533333pt;}
.fs7_c00450{font-size:147.466667pt;}
.y0_c00450{bottom:0.000000pt;}
.ye_c00450{bottom:123.653333pt;}
.yf_c00450{bottom:124.413333pt;}
.y9_c00450{bottom:1244.160000pt;}
.yd_c00450{bottom:1247.226667pt;}
.ya_c00450{bottom:1248.773333pt;}
.yb_c00450{bottom:1249.533333pt;}
.yc_c00450{bottom:1250.306667pt;}
.y8_c00450{bottom:1281.786667pt;}
.y7_c00450{bottom:1295.613333pt;}
.y5_c00450{bottom:1300.986667pt;}
.y6_c00450{bottom:1304.826667pt;}
.y4_c00450{bottom:1307.906667pt;}
.y3_c00450{bottom:1313.280000pt;}
.y1_c00450{bottom:1323.266667pt;}
.y2_c00450{bottom:1324.026667pt;}
.h2_c00450{height:2.764500pt;}
.hf_c00450{height:5.519401pt;}
.h3_c00450{height:8.303099pt;}
.h4_c00450{height:13.822500pt;}
.h6_c00450{height:19.341901pt;}
.h7_c00450{height:30.428698pt;}
.hc_c00450{height:38.683802pt;}
.h5_c00450{height:41.467500pt;}
.hb_c00450{height:46.986901pt;}
.he_c00450{height:49.770599pt;}
.ha_c00450{height:52.506302pt;}
.hd_c00450{height:55.290000pt;}
.h8_c00450{height:58.073698pt;}
.h9_c00450{height:132.705599pt;}
.h0_c00450{height:1347.066667pt;}
.h1_c00450{height:1347.333333pt;}
.w0_c00450{width:967.680000pt;}
.w1_c00450{width:968.000000pt;}
.x0_c00450{left:0.000000pt;}
.x1_c00450{left:257.280000pt;}
.xa_c00450{left:376.320000pt;}
.xb_c00450{left:392.453333pt;}
.xc_c00450{left:412.413333pt;}
.xd_c00450{left:427.773333pt;}
.xe_c00450{left:441.600000pt;}
.xf_c00450{left:460.800000pt;}
.x10_c00450{left:473.853333pt;}
.x11_c00450{left:487.680000pt;}
.x12_c00450{left:503.813333pt;}
.x8_c00450{left:521.466667pt;}
.x13_c00450{left:523.773333pt;}
.x14_c00450{left:542.213333pt;}
.x15_c00450{left:559.866667pt;}
.x16_c00450{left:576.773333pt;}
.x17_c00450{left:598.266667pt;}
.x18_c00450{left:619.013333pt;}
.x19_c00450{left:628.226667pt;}
.x3_c00450{left:675.840000pt;}
.x4_c00450{left:808.706667pt;}
.x5_c00450{left:817.920000pt;}
.x6_c00450{left:833.280000pt;}
.x9_c00450{left:873.986667pt;}
.x7_c00450{left:893.186667pt;}
.x2_c00450{left:909.306667pt;}
.x1a_c00450{left:953.093333pt;}
.x1b_c00450{left:959.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_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_9baac4aed9f17eef6e7b808d.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.109863;font-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_c00451{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c00451{transform:matrix(0.029375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029375,0.000000,0.000000,0.250000,0,0);}
.m1_c00451{transform:matrix(0.060050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060050,0.000000,0.000000,0.250000,0,0);}
.m5_c00451{transform:matrix(0.068625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068625,0.000000,0.000000,0.250000,0,0);}
.m2_c00451{transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);}
.m0_c00451{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m6_c00451{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m9_c00451{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_c00451{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma_c00451{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m3_c00451{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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;}
.fs7_c00451{font-size:6.900000px;}
.fs3_c00451{font-size:10.380000px;}
.fs9_c00451{font-size:20.760000px;}
.fs8_c00451{font-size:34.560000px;}
.fs6_c00451{font-size:58.740000px;}
.fs0_c00451{font-size:72.600000px;}
.fs2_c00451{font-size:76.020000px;}
.fs1_c00451{font-size:86.400000px;}
.fs5_c00451{font-size:269.580000px;}
.fs4_c00451{font-size:276.480000px;}
.y0_c00451{bottom:0.000000px;}
.yb_c00451{bottom:303.270000px;}
.ya_c00451{bottom:1238.970000px;}
.y9_c00451{bottom:1243.290000px;}
.y7_c00451{bottom:1271.805000px;}
.y6_c00451{bottom:1283.910000px;}
.y8_c00451{bottom:1286.490000px;}
.y5_c00451{bottom:1327.965000px;}
.y4_c00451{bottom:1366.845000px;}
.y3_c00451{bottom:1397.955000px;}
.y2_c00451{bottom:1417.830000px;}
.y1_c00451{bottom:1440.285000px;}
.h9_c00451{height:6.209326px;}
.h5_c00451{height:9.340986px;}
.hb_c00451{height:18.681973px;}
.ha_c00451{height:31.100625px;}
.h8_c00451{height:52.860264px;}
.h2_c00451{height:65.332910px;}
.h4_c00451{height:68.410576px;}
.h3_c00451{height:77.751563px;}
.h7_c00451{height:242.595674px;}
.h6_c00451{height:248.805000px;}
.h0_c00451{height:1505.955000px;}
.h1_c00451{height:1506.000000px;}
.w1_c00451{width:1092.750000px;}
.w0_c00451{width:1092.960000px;}
.x0_c00451{left:0.000000px;}
.x7_c00451{left:16.410000px;}
.x2_c00451{left:88.995000px;}
.x4_c00451{left:101.085000px;}
.x3_c00451{left:102.810000px;}
.x1_c00451{left:104.550000px;}
.x6_c00451{left:108.000000px;}
.x5_c00451{left:122.685000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ws0_c00451{word-spacing:0.000000pt;}
.fs7_c00451{font-size:6.133333pt;}
.fs3_c00451{font-size:9.226667pt;}
.fs9_c00451{font-size:18.453333pt;}
.fs8_c00451{font-size:30.720000pt;}
.fs6_c00451{font-size:52.213333pt;}
.fs0_c00451{font-size:64.533333pt;}
.fs2_c00451{font-size:67.573333pt;}
.fs1_c00451{font-size:76.800000pt;}
.fs5_c00451{font-size:239.626667pt;}
.fs4_c00451{font-size:245.760000pt;}
.y0_c00451{bottom:0.000000pt;}
.yb_c00451{bottom:269.573333pt;}
.ya_c00451{bottom:1101.306667pt;}
.y9_c00451{bottom:1105.146667pt;}
.y7_c00451{bottom:1130.493333pt;}
.y6_c00451{bottom:1141.253333pt;}
.y8_c00451{bottom:1143.546667pt;}
.y5_c00451{bottom:1180.413333pt;}
.y4_c00451{bottom:1214.973333pt;}
.y3_c00451{bottom:1242.626667pt;}
.y2_c00451{bottom:1260.293333pt;}
.y1_c00451{bottom:1280.253333pt;}
.h9_c00451{height:5.519401pt;}
.h5_c00451{height:8.303099pt;}
.hb_c00451{height:16.606198pt;}
.ha_c00451{height:27.645000pt;}
.h8_c00451{height:46.986901pt;}
.h2_c00451{height:58.073698pt;}
.h4_c00451{height:60.809401pt;}
.h3_c00451{height:69.112500pt;}
.h7_c00451{height:215.640599pt;}
.h6_c00451{height:221.160000pt;}
.h0_c00451{height:1338.626667pt;}
.h1_c00451{height:1338.666667pt;}
.w1_c00451{width:971.333333pt;}
.w0_c00451{width:971.520000pt;}
.x0_c00451{left:0.000000pt;}
.x7_c00451{left:14.586667pt;}
.x2_c00451{left:79.106667pt;}
.x4_c00451{left:89.853333pt;}
.x3_c00451{left:91.386667pt;}
.x1_c00451{left:92.933333pt;}
.x6_c00451{left:96.000000pt;}
.x5_c00451{left:109.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_272b1be5e5bec75de57d5bc8.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.109863;font-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_c00452{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c00452{transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);}
.m6_c00452{transform:matrix(0.093925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093925,0.000000,0.000000,0.250000,0,0);}
.m5_c00452{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m7_c00452{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c00452{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m3_c00452{transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);}
.m9_c00452{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);}
.m0_c00452{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4_c00452{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,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;}
.fs0_c00452{font-size:6.900000px;}
.fs4_c00452{font-size:13.800000px;}
.fs6_c00452{font-size:17.280000px;}
.fs2_c00452{font-size:20.760000px;}
.fs3_c00452{font-size:24.180000px;}
.fs5_c00452{font-size:41.460000px;}
.fs1_c00452{font-size:48.360000px;}
.fs7_c00452{font-size:55.320000px;}
.fs8_c00452{font-size:58.740000px;}
.y0_c00452{bottom:0.000000px;}
.yd_c00452{bottom:651.450000px;}
.yc_c00452{bottom:657.510000px;}
.yb_c00452{bottom:664.410000px;}
.y9_c00452{bottom:680.835000px;}
.ya_c00452{bottom:686.880000px;}
.y8_c00452{bottom:698.970000px;}
.y7_c00452{bottom:705.030000px;}
.y6_c00452{bottom:718.845000px;}
.y4_c00452{bottom:724.035000px;}
.y5_c00452{bottom:726.630000px;}
.y3_c00452{bottom:736.995000px;}
.y2_c00452{bottom:1391.910000px;}
.y1_c00452{bottom:1399.680000px;}
.h2_c00452{height:6.209326px;}
.h6_c00452{height:12.418652px;}
.h8_c00452{height:15.550313px;}
.h4_c00452{height:18.681973px;}
.h5_c00452{height:21.759639px;}
.h7_c00452{height:37.309951px;}
.h3_c00452{height:43.519277px;}
.h9_c00452{height:49.782598px;}
.ha_c00452{height:52.860264px;}
.h0_c00452{height:1515.450000px;}
.h1_c00452{height:1515.750000px;}
.w0_c00452{width:1088.640000px;}
.w1_c00452{width:1089.000000px;}
.x0_c00452{left:0.000000px;}
.x4_c00452{left:979.770000px;}
.x3_c00452{left:982.365000px;}
.x6_c00452{left:992.730000px;}
.x5_c00452{left:994.470000px;}
.x1_c00452{left:1021.245000px;}
.x2_c00452{left:1036.800000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls0_c00452{letter-spacing:0.000000pt;}
.ws0_c00452{word-spacing:0.000000pt;}
.fs0_c00452{font-size:6.133333pt;}
.fs4_c00452{font-size:12.266667pt;}
.fs6_c00452{font-size:15.360000pt;}
.fs2_c00452{font-size:18.453333pt;}
.fs3_c00452{font-size:21.493333pt;}
.fs5_c00452{font-size:36.853333pt;}
.fs1_c00452{font-size:42.986667pt;}
.fs7_c00452{font-size:49.173333pt;}
.fs8_c00452{font-size:52.213333pt;}
.y0_c00452{bottom:0.000000pt;}
.yd_c00452{bottom:579.066667pt;}
.yc_c00452{bottom:584.453333pt;}
.yb_c00452{bottom:590.586667pt;}
.y9_c00452{bottom:605.186667pt;}
.ya_c00452{bottom:610.560000pt;}
.y8_c00452{bottom:621.306667pt;}
.y7_c00452{bottom:626.693333pt;}
.y6_c00452{bottom:638.973333pt;}
.y4_c00452{bottom:643.586667pt;}
.y5_c00452{bottom:645.893333pt;}
.y3_c00452{bottom:655.106667pt;}
.y2_c00452{bottom:1237.253333pt;}
.y1_c00452{bottom:1244.160000pt;}
.h2_c00452{height:5.519401pt;}
.h6_c00452{height:11.038802pt;}
.h8_c00452{height:13.822500pt;}
.h4_c00452{height:16.606198pt;}
.h5_c00452{height:19.341901pt;}
.h7_c00452{height:33.164401pt;}
.h3_c00452{height:38.683802pt;}
.h9_c00452{height:44.251198pt;}
.ha_c00452{height:46.986901pt;}
.h0_c00452{height:1347.066667pt;}
.h1_c00452{height:1347.333333pt;}
.w0_c00452{width:967.680000pt;}
.w1_c00452{width:968.000000pt;}
.x0_c00452{left:0.000000pt;}
.x4_c00452{left:870.906667pt;}
.x3_c00452{left:873.213333pt;}
.x6_c00452{left:882.426667pt;}
.x5_c00452{left:883.973333pt;}
.x1_c00452{left:907.773333pt;}
.x2_c00452{left:921.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_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_39930d903aaba29821a4ca96.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.109863;font-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_c00453{transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036100,0.000000,0.000000,0.250000,0,0);}
.m3_c00453{transform:matrix(0.070375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070375,0.000000,0.000000,0.250000,0,0);}
.m4_c00453{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c00453{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);}
.m1_c00453{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);}
.m0_c00453{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c00453{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,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;}
.fs0_c00453{font-size:3.456000px;}
.fs4_c00453{font-size:6.900000px;}
.fs6_c00453{font-size:20.760000px;}
.fs1_c00453{font-size:34.560000px;}
.fs2_c00453{font-size:38.040000px;}
.fs3_c00453{font-size:55.320000px;}
.fs5_c00453{font-size:86.400000px;}
.y0_c00453{bottom:0.000000px;}
.y7_c00453{bottom:648.870000px;}
.y6_c00453{bottom:655.770000px;}
.y4_c00453{bottom:679.110000px;}
.y5_c00453{bottom:685.155000px;}
.y3_c00453{bottom:1337.475000px;}
.y2_c00453{bottom:1390.170000px;}
.y1_c00453{bottom:1399.680000px;}
.h2_c00453{height:3.110063px;}
.h6_c00453{height:6.209326px;}
.h8_c00453{height:18.681973px;}
.h3_c00453{height:31.100625px;}
.h4_c00453{height:34.232285px;}
.h5_c00453{height:49.782598px;}
.h7_c00453{height:77.751563px;}
.h0_c00453{height:1505.955000px;}
.h1_c00453{height:1506.000000px;}
.w1_c00453{width:1092.750000px;}
.w0_c00453{width:1092.960000px;}
.x0_c00453{left:0.000000px;}
.x3_c00453{left:21.600000px;}
.x6_c00453{left:103.680000px;}
.x4_c00453{left:105.405000px;}
.x5_c00453{left:115.770000px;}
.x1_c00453{left:144.285000px;}
.x2_c00453{left:160.710000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ws0_c00453{word-spacing:0.000000pt;}
.fs0_c00453{font-size:3.072000pt;}
.fs4_c00453{font-size:6.133333pt;}
.fs6_c00453{font-size:18.453333pt;}
.fs1_c00453{font-size:30.720000pt;}
.fs2_c00453{font-size:33.813333pt;}
.fs3_c00453{font-size:49.173333pt;}
.fs5_c00453{font-size:76.800000pt;}
.y0_c00453{bottom:0.000000pt;}
.y7_c00453{bottom:576.773333pt;}
.y6_c00453{bottom:582.906667pt;}
.y4_c00453{bottom:603.653333pt;}
.y5_c00453{bottom:609.026667pt;}
.y3_c00453{bottom:1188.866667pt;}
.y2_c00453{bottom:1235.706667pt;}
.y1_c00453{bottom:1244.160000pt;}
.h2_c00453{height:2.764500pt;}
.h6_c00453{height:5.519401pt;}
.h8_c00453{height:16.606198pt;}
.h3_c00453{height:27.645000pt;}
.h4_c00453{height:30.428698pt;}
.h5_c00453{height:44.251198pt;}
.h7_c00453{height:69.112500pt;}
.h0_c00453{height:1338.626667pt;}
.h1_c00453{height:1338.666667pt;}
.w1_c00453{width:971.333333pt;}
.w0_c00453{width:971.520000pt;}
.x0_c00453{left:0.000000pt;}
.x3_c00453{left:19.200000pt;}
.x6_c00453{left:92.160000pt;}
.x4_c00453{left:93.693333pt;}
.x5_c00453{left:102.906667pt;}
.x1_c00453{left:128.253333pt;}
.x2_c00453{left:142.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_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_2a2ce4e75f8f1170d65f7a8e.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.109863;font-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_c00454{transform:matrix(0.088050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088050,0.000000,0.000000,0.250000,0,0);}
.m4_c00454{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m13_c00454{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c00454{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.mf_c00454{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m6_c00454{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);}
.m12_c00454{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);}
.mc_c00454{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);}
.m0_c00454{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);}
.m11_c00454{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00454{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00454{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00454{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.ma_c00454{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb_c00454{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);}
.m9_c00454{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m10_c00454{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me_c00454{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1_c00454{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5_c00454{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);}
.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;}
.fsd_c00454{font-size:3.456000px;}
.fs10_c00454{font-size:6.000000px;}
.fs5_c00454{font-size:6.900000px;}
.fs11_c00454{font-size:10.380000px;}
.fse_c00454{font-size:13.800000px;}
.fsa_c00454{font-size:20.760000px;}
.fsf_c00454{font-size:24.180000px;}
.fs3_c00454{font-size:44.940000px;}
.fs9_c00454{font-size:51.840000px;}
.fs7_c00454{font-size:55.320000px;}
.fsb_c00454{font-size:58.740000px;}
.fs0_c00454{font-size:62.220000px;}
.fs1_c00454{font-size:69.120000px;}
.fsc_c00454{font-size:79.500000px;}
.fs8_c00454{font-size:93.300000px;}
.fs6_c00454{font-size:96.780000px;}
.fs4_c00454{font-size:110.580000px;}
.fs2_c00454{font-size:141.720000px;}
.y0_c00454{bottom:0.000000px;}
.yf_c00454{bottom:779.325000px;}
.y10_c00454{bottom:780.195000px;}
.ye_c00454{bottom:783.645000px;}
.y11_c00454{bottom:787.110000px;}
.yd_c00454{bottom:787.965000px;}
.ya_c00454{bottom:789.690000px;}
.yc_c00454{bottom:791.430000px;}
.yb_c00454{bottom:792.285000px;}
.y7_c00454{bottom:821.670000px;}
.y9_c00454{bottom:822.525000px;}
.y8_c00454{bottom:829.440000px;}
.y6_c00454{bottom:844.995000px;}
.y5_c00454{bottom:1197.510000px;}
.y4_c00454{bottom:1226.880000px;}
.y3_c00454{bottom:1364.250000px;}
.y1_c00454{bottom:1396.230000px;}
.y2_c00454{bottom:1397.085000px;}
.hf_c00454{height:3.110063px;}
.h12_c00454{height:5.399414px;}
.h7_c00454{height:6.209326px;}
.h13_c00454{height:9.340986px;}
.h10_c00454{height:12.418652px;}
.hc_c00454{height:18.681973px;}
.h11_c00454{height:21.759639px;}
.h5_c00454{height:40.441611px;}
.hb_c00454{height:46.650937px;}
.h9_c00454{height:49.782598px;}
.hd_c00454{height:52.860264px;}
.h2_c00454{height:55.991924px;}
.h3_c00454{height:62.201250px;}
.he_c00454{height:71.542236px;}
.ha_c00454{height:83.960889px;}
.h8_c00454{height:87.092549px;}
.h6_c00454{height:99.511201px;}
.h4_c00454{height:127.534160px;}
.h0_c00454{height:1515.450000px;}
.h1_c00454{height:1515.750000px;}
.w0_c00454{width:1088.640000px;}
.w1_c00454{width:1089.000000px;}
.x0_c00454{left:0.000000px;}
.x5_c00454{left:269.565000px;}
.x6_c00454{left:283.395000px;}
.x1_c00454{left:348.195000px;}
.x7_c00454{left:353.370000px;}
.x8_c00454{left:375.840000px;}
.x2_c00454{left:389.670000px;}
.x9_c00454{left:425.085000px;}
.xa_c00454{left:518.400000px;}
.xb_c00454{left:596.160000px;}
.x13_c00454{left:621.210000px;}
.xc_c00454{left:627.270000px;}
.xd_c00454{left:650.595000px;}
.xe_c00454{left:673.050000px;}
.xf_c00454{left:691.200000px;}
.x14_c00454{left:719.715000px;}
.x10_c00454{left:747.360000px;}
.x11_c00454{left:768.090000px;}
.x15_c00454{left:786.241272px;}
.x12_c00454{left:787.965000px;}
.x3_c00454{left:979.770000px;}
.x4_c00454{left:983.235000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ws0_c00454{word-spacing:0.000000pt;}
.fsd_c00454{font-size:3.072000pt;}
.fs10_c00454{font-size:5.333333pt;}
.fs5_c00454{font-size:6.133333pt;}
.fs11_c00454{font-size:9.226667pt;}
.fse_c00454{font-size:12.266667pt;}
.fsa_c00454{font-size:18.453333pt;}
.fsf_c00454{font-size:21.493333pt;}
.fs3_c00454{font-size:39.946667pt;}
.fs9_c00454{font-size:46.080000pt;}
.fs7_c00454{font-size:49.173333pt;}
.fsb_c00454{font-size:52.213333pt;}
.fs0_c00454{font-size:55.306667pt;}
.fs1_c00454{font-size:61.440000pt;}
.fsc_c00454{font-size:70.666667pt;}
.fs8_c00454{font-size:82.933333pt;}
.fs6_c00454{font-size:86.026667pt;}
.fs4_c00454{font-size:98.293333pt;}
.fs2_c00454{font-size:125.973333pt;}
.y0_c00454{bottom:0.000000pt;}
.yf_c00454{bottom:692.733333pt;}
.y10_c00454{bottom:693.506667pt;}
.ye_c00454{bottom:696.573333pt;}
.y11_c00454{bottom:699.653333pt;}
.yd_c00454{bottom:700.413333pt;}
.ya_c00454{bottom:701.946667pt;}
.yc_c00454{bottom:703.493333pt;}
.yb_c00454{bottom:704.253333pt;}
.y7_c00454{bottom:730.373333pt;}
.y9_c00454{bottom:731.133333pt;}
.y8_c00454{bottom:737.280000pt;}
.y6_c00454{bottom:751.106667pt;}
.y5_c00454{bottom:1064.453333pt;}
.y4_c00454{bottom:1090.560000pt;}
.y3_c00454{bottom:1212.666667pt;}
.y1_c00454{bottom:1241.093333pt;}
.y2_c00454{bottom:1241.853333pt;}
.hf_c00454{height:2.764500pt;}
.h12_c00454{height:4.799479pt;}
.h7_c00454{height:5.519401pt;}
.h13_c00454{height:8.303099pt;}
.h10_c00454{height:11.038802pt;}
.hc_c00454{height:16.606198pt;}
.h11_c00454{height:19.341901pt;}
.h5_c00454{height:35.948099pt;}
.hb_c00454{height:41.467500pt;}
.h9_c00454{height:44.251198pt;}
.hd_c00454{height:46.986901pt;}
.h2_c00454{height:49.770599pt;}
.h3_c00454{height:55.290000pt;}
.he_c00454{height:63.593099pt;}
.ha_c00454{height:74.631901pt;}
.h8_c00454{height:77.415599pt;}
.h6_c00454{height:88.454401pt;}
.h4_c00454{height:113.363698pt;}
.h0_c00454{height:1347.066667pt;}
.h1_c00454{height:1347.333333pt;}
.w0_c00454{width:967.680000pt;}
.w1_c00454{width:968.000000pt;}
.x0_c00454{left:0.000000pt;}
.x5_c00454{left:239.613333pt;}
.x6_c00454{left:251.906667pt;}
.x1_c00454{left:309.506667pt;}
.x7_c00454{left:314.106667pt;}
.x8_c00454{left:334.080000pt;}
.x2_c00454{left:346.373333pt;}
.x9_c00454{left:377.853333pt;}
.xa_c00454{left:460.800000pt;}
.xb_c00454{left:529.920000pt;}
.x13_c00454{left:552.186667pt;}
.xc_c00454{left:557.573333pt;}
.xd_c00454{left:578.306667pt;}
.xe_c00454{left:598.266667pt;}
.xf_c00454{left:614.400000pt;}
.x14_c00454{left:639.746667pt;}
.x10_c00454{left:664.320000pt;}
.x11_c00454{left:682.746667pt;}
.x15_c00454{left:698.881131pt;}
.x12_c00454{left:700.413333pt;}
.x3_c00454{left:870.906667pt;}
.x4_c00454{left:873.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2b0787ed2e9ef9a802d7372.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.109863;font-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_c00455{transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066850,0.000000,0.000000,0.250000,0,0);}
.m8_c00455{transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073250,0.000000,0.000000,0.250000,0,0);}
.m6_c00455{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.ma_c00455{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c00455{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);}
.m2_c00455{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c00455{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c00455{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);}
.mb_c00455{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c00455{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m5_c00455{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.md_c00455{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.mc_c00455{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.m9_c00455{transform:matrix(1.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.457500,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;}
.fsa_c00455{font-size:13.800000px;}
.fs9_c00455{font-size:17.280000px;}
.fsb_c00455{font-size:20.760000px;}
.fs6_c00455{font-size:41.460000px;}
.fs3_c00455{font-size:55.320000px;}
.fs1_c00455{font-size:58.740000px;}
.fs2_c00455{font-size:62.220000px;}
.fs4_c00455{font-size:69.120000px;}
.fs0_c00455{font-size:72.600000px;}
.fs5_c00455{font-size:76.020000px;}
.fs7_c00455{font-size:93.300000px;}
.fs8_c00455{font-size:141.720000px;}
.y0_c00455{bottom:0.000000px;}
.yc_c00455{bottom:437.190000px;}
.yb_c00455{bottom:473.475000px;}
.ya_c00455{bottom:1142.205000px;}
.y7_c00455{bottom:1327.965000px;}
.y8_c00455{bottom:1348.710000px;}
.y9_c00455{bottom:1349.565000px;}
.y6_c00455{bottom:1363.395000px;}
.y5_c00455{bottom:1387.590000px;}
.y2_c00455{bottom:1405.725000px;}
.y1_c00455{bottom:1406.595000px;}
.y3_c00455{bottom:1407.450000px;}
.y4_c00455{bottom:1408.320000px;}
.hc_c00455{height:12.418652px;}
.hb_c00455{height:15.550313px;}
.hd_c00455{height:18.681973px;}
.h8_c00455{height:37.309951px;}
.h5_c00455{height:49.782598px;}
.h3_c00455{height:52.860264px;}
.h4_c00455{height:55.991924px;}
.h6_c00455{height:62.201250px;}
.h2_c00455{height:65.332910px;}
.h7_c00455{height:68.410576px;}
.h9_c00455{height:83.960889px;}
.ha_c00455{height:127.534160px;}
.h0_c00455{height:1505.955000px;}
.h1_c00455{height:1506.000000px;}
.w1_c00455{width:1092.750000px;}
.w0_c00455{width:1092.960000px;}
.x0_c00455{left:0.000000px;}
.xb_c00455{left:17.280000px;}
.xc_c00455{left:72.570000px;}
.x8_c00455{left:101.085000px;}
.x7_c00455{left:103.680000px;}
.x9_c00455{left:180.570000px;}
.xa_c00455{left:201.315000px;}
.x1_c00455{left:457.050000px;}
.x2_c00455{left:480.390000px;}
.x3_c00455{left:501.990000px;}
.x4_c00455{left:522.720000px;}
.x5_c00455{left:541.725000px;}
.x6_c00455{left:599.610000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls0_c00455{letter-spacing:0.000000pt;}
.ws0_c00455{word-spacing:0.000000pt;}
.fsa_c00455{font-size:12.266667pt;}
.fs9_c00455{font-size:15.360000pt;}
.fsb_c00455{font-size:18.453333pt;}
.fs6_c00455{font-size:36.853333pt;}
.fs3_c00455{font-size:49.173333pt;}
.fs1_c00455{font-size:52.213333pt;}
.fs2_c00455{font-size:55.306667pt;}
.fs4_c00455{font-size:61.440000pt;}
.fs0_c00455{font-size:64.533333pt;}
.fs5_c00455{font-size:67.573333pt;}
.fs7_c00455{font-size:82.933333pt;}
.fs8_c00455{font-size:125.973333pt;}
.y0_c00455{bottom:0.000000pt;}
.yc_c00455{bottom:388.613333pt;}
.yb_c00455{bottom:420.866667pt;}
.ya_c00455{bottom:1015.293333pt;}
.y7_c00455{bottom:1180.413333pt;}
.y8_c00455{bottom:1198.853333pt;}
.y9_c00455{bottom:1199.613333pt;}
.y6_c00455{bottom:1211.906667pt;}
.y5_c00455{bottom:1233.413333pt;}
.y2_c00455{bottom:1249.533333pt;}
.y1_c00455{bottom:1250.306667pt;}
.y3_c00455{bottom:1251.066667pt;}
.y4_c00455{bottom:1251.840000pt;}
.hc_c00455{height:11.038802pt;}
.hb_c00455{height:13.822500pt;}
.hd_c00455{height:16.606198pt;}
.h8_c00455{height:33.164401pt;}
.h5_c00455{height:44.251198pt;}
.h3_c00455{height:46.986901pt;}
.h4_c00455{height:49.770599pt;}
.h6_c00455{height:55.290000pt;}
.h2_c00455{height:58.073698pt;}
.h7_c00455{height:60.809401pt;}
.h9_c00455{height:74.631901pt;}
.ha_c00455{height:113.363698pt;}
.h0_c00455{height:1338.626667pt;}
.h1_c00455{height:1338.666667pt;}
.w1_c00455{width:971.333333pt;}
.w0_c00455{width:971.520000pt;}
.x0_c00455{left:0.000000pt;}
.xb_c00455{left:15.360000pt;}
.xc_c00455{left:64.506667pt;}
.x8_c00455{left:89.853333pt;}
.x7_c00455{left:92.160000pt;}
.x9_c00455{left:160.506667pt;}
.xa_c00455{left:178.946667pt;}
.x1_c00455{left:406.266667pt;}
.x2_c00455{left:427.013333pt;}
.x3_c00455{left:446.213333pt;}
.x4_c00455{left:464.640000pt;}
.x5_c00455{left:481.533333pt;}
.x6_c00455{left:532.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_583d27ac161aa5c319fb4574.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.109863;font-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_c00456{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c00456{transform:matrix(0.040100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040100,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:20.760000px;}
.fs1_c00456{font-size:155.520000px;}
.y0_c00456{bottom:0.000000px;}
.y2_c00456{bottom:1012.605000px;}
.y1_c00456{bottom:1054.950000px;}
.h2_c00456{height:18.681973px;}
.h3_c00456{height:139.952812px;}
.h0_c00456{height:1515.450000px;}
.h1_c00456{height:1515.750000px;}
.w0_c00456{width:1088.640000px;}
.w1_c00456{width:1089.000000px;}
.x0_c00456{left:0.000000px;}
.x2_c00456{left:980.640000px;}
.x1_c00456{left:982.365000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws0_c00456{word-spacing:0.000000pt;}
.fs0_c00456{font-size:18.453333pt;}
.fs1_c00456{font-size:138.240000pt;}
.y0_c00456{bottom:0.000000pt;}
.y2_c00456{bottom:900.093333pt;}
.y1_c00456{bottom:937.733333pt;}
.h2_c00456{height:16.606198pt;}
.h3_c00456{height:124.402500pt;}
.h0_c00456{height:1347.066667pt;}
.h1_c00456{height:1347.333333pt;}
.w0_c00456{width:967.680000pt;}
.w1_c00456{width:968.000000pt;}
.x0_c00456{left:0.000000pt;}
.x2_c00456{left:871.680000pt;}
.x1_c00456{left:873.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fef88f136bc4eff76acee99d.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.109863;font-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_c00457{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m0_c00457{transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);}
.m1_c00457{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m3_c00457{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m4_c00457{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,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:3.456000px;}
.fs3_c00457{font-size:24.180000px;}
.fs0_c00457{font-size:31.080000px;}
.fs1_c00457{font-size:51.840000px;}
.y0_c00457{bottom:0.000000px;}
.y6_c00457{bottom:380.160000px;}
.y4_c00457{bottom:1379.805000px;}
.y5_c00457{bottom:1381.530000px;}
.y2_c00457{bottom:1386.720000px;}
.y3_c00457{bottom:1394.490000px;}
.y1_c00457{bottom:1400.550000px;}
.h4_c00457{height:3.110063px;}
.h5_c00457{height:21.759639px;}
.h2_c00457{height:27.968965px;}
.h3_c00457{height:46.650937px;}
.h0_c00457{height:1505.955000px;}
.h1_c00457{height:1506.000000px;}
.w1_c00457{width:1092.750000px;}
.w0_c00457{width:1092.960000px;}
.x0_c00457{left:0.000000px;}
.x4_c00457{left:61.350000px;}
.x1_c00457{left:102.810000px;}
.x2_c00457{left:108.870000px;}
.x3_c00457{left:123.555000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ws0_c00457{word-spacing:0.000000pt;}
.fs2_c00457{font-size:3.072000pt;}
.fs3_c00457{font-size:21.493333pt;}
.fs0_c00457{font-size:27.626667pt;}
.fs1_c00457{font-size:46.080000pt;}
.y0_c00457{bottom:0.000000pt;}
.y6_c00457{bottom:337.920000pt;}
.y4_c00457{bottom:1226.493333pt;}
.y5_c00457{bottom:1228.026667pt;}
.y2_c00457{bottom:1232.640000pt;}
.y3_c00457{bottom:1239.546667pt;}
.y1_c00457{bottom:1244.933333pt;}
.h4_c00457{height:2.764500pt;}
.h5_c00457{height:19.341901pt;}
.h2_c00457{height:24.861302pt;}
.h3_c00457{height:41.467500pt;}
.h0_c00457{height:1338.626667pt;}
.h1_c00457{height:1338.666667pt;}
.w1_c00457{width:971.333333pt;}
.w0_c00457{width:971.520000pt;}
.x0_c00457{left:0.000000pt;}
.x4_c00457{left:54.533333pt;}
.x1_c00457{left:91.386667pt;}
.x2_c00457{left:96.773333pt;}
.x3_c00457{left:109.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_570a452b88eac71cf8a8b836.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.109863;font-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_c00458{transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119725,0.000000,0.000000,0.250000,0,0);}
.m2_c00458{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m0_c00458{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,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;}
.fs2_c00458{font-size:41.460000px;}
.fs0_c00458{font-size:51.840000px;}
.fs1_c00458{font-size:169.320000px;}
.y0_c00458{bottom:0.000000px;}
.y1_c00458{bottom:1208.730000px;}
.y3_c00458{bottom:1364.250000px;}
.y2_c00458{bottom:1375.485000px;}
.h4_c00458{height:37.309951px;}
.h2_c00458{height:46.650937px;}
.h3_c00458{height:152.371465px;}
.h0_c00458{height:1515.450000px;}
.h1_c00458{height:1515.750000px;}
.w0_c00458{width:1088.640000px;}
.w1_c00458{width:1089.000000px;}
.x0_c00458{left:0.000000px;}
.x2_c00458{left:976.320000px;}
.x1_c00458{left:1010.880000px;}
@media print{
.v0_c00458{vertical-align:0.000000pt;}
.ls0_c00458{letter-spacing:0.000000pt;}
.ws0_c00458{word-spacing:0.000000pt;}
.fs2_c00458{font-size:36.853333pt;}
.fs0_c00458{font-size:46.080000pt;}
.fs1_c00458{font-size:150.506667pt;}
.y0_c00458{bottom:0.000000pt;}
.y1_c00458{bottom:1074.426667pt;}
.y3_c00458{bottom:1212.666667pt;}
.y2_c00458{bottom:1222.653333pt;}
.h4_c00458{height:33.164401pt;}
.h2_c00458{height:41.467500pt;}
.h3_c00458{height:135.441302pt;}
.h0_c00458{height:1347.066667pt;}
.h1_c00458{height:1347.333333pt;}
.w0_c00458{width:967.680000pt;}
.w1_c00458{width:968.000000pt;}
.x0_c00458{left:0.000000pt;}
.x2_c00458{left:867.840000pt;}
.x1_c00458{left:898.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_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_2c2d5af852e96bdd8afbec84.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.109863;font-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_c00459{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c00459{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00459{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c00459{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c00459{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);}
.m2_c00459{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);}
.m3_c00459{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m6_c00459{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m1_c00459{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,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;}
.fs5_c00459{font-size:3.456000px;}
.fs6_c00459{font-size:10.380000px;}
.fs1_c00459{font-size:20.760000px;}
.fs0_c00459{font-size:34.560000px;}
.fs4_c00459{font-size:62.220000px;}
.fs3_c00459{font-size:65.640000px;}
.fs2_c00459{font-size:69.120000px;}
.y0_c00459{bottom:0.000000px;}
.y6_c00459{bottom:131.325000px;}
.y7_c00459{bottom:133.920000px;}
.y3_c00459{bottom:1402.275000px;}
.y4_c00459{bottom:1403.130000px;}
.y5_c00459{bottom:1404.000000px;}
.y2_c00459{bottom:1418.685000px;}
.y1_c00459{bottom:1424.730000px;}
.h7_c00459{height:3.110063px;}
.h8_c00459{height:9.340986px;}
.h3_c00459{height:18.681973px;}
.h2_c00459{height:31.100625px;}
.h6_c00459{height:55.991924px;}
.h5_c00459{height:59.069590px;}
.h4_c00459{height:62.201250px;}
.h0_c00459{height:1505.955000px;}
.h1_c00459{height:1506.000000px;}
.w1_c00459{width:1092.750000px;}
.w0_c00459{width:1092.960000px;}
.x0_c00459{left:0.000000px;}
.x8_c00459{left:6.045000px;}
.x2_c00459{left:397.440000px;}
.x1_c00459{left:399.165000px;}
.x3_c00459{left:459.645000px;}
.x4_c00459{left:481.245000px;}
.x5_c00459{left:522.720000px;}
.x6_c00459{left:543.450000px;}
.x7_c00459{left:603.075000px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls0_c00459{letter-spacing:0.000000pt;}
.ws0_c00459{word-spacing:0.000000pt;}
.fs5_c00459{font-size:3.072000pt;}
.fs6_c00459{font-size:9.226667pt;}
.fs1_c00459{font-size:18.453333pt;}
.fs0_c00459{font-size:30.720000pt;}
.fs4_c00459{font-size:55.306667pt;}
.fs3_c00459{font-size:58.346667pt;}
.fs2_c00459{font-size:61.440000pt;}
.y0_c00459{bottom:0.000000pt;}
.y6_c00459{bottom:116.733333pt;}
.y7_c00459{bottom:119.040000pt;}
.y3_c00459{bottom:1246.466667pt;}
.y4_c00459{bottom:1247.226667pt;}
.y5_c00459{bottom:1248.000000pt;}
.y2_c00459{bottom:1261.053333pt;}
.y1_c00459{bottom:1266.426667pt;}
.h7_c00459{height:2.764500pt;}
.h8_c00459{height:8.303099pt;}
.h3_c00459{height:16.606198pt;}
.h2_c00459{height:27.645000pt;}
.h6_c00459{height:49.770599pt;}
.h5_c00459{height:52.506302pt;}
.h4_c00459{height:55.290000pt;}
.h0_c00459{height:1338.626667pt;}
.h1_c00459{height:1338.666667pt;}
.w1_c00459{width:971.333333pt;}
.w0_c00459{width:971.520000pt;}
.x0_c00459{left:0.000000pt;}
.x8_c00459{left:5.373333pt;}
.x2_c00459{left:353.280000pt;}
.x1_c00459{left:354.813333pt;}
.x3_c00459{left:408.573333pt;}
.x4_c00459{left:427.773333pt;}
.x5_c00459{left:464.640000pt;}
.x6_c00459{left:483.066667pt;}
.x7_c00459{left:536.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_25324c3d26558061b488156d.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.109863;font-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_c00460{transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);}
.m1_c00460{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c00460{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m7_c00460{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m4_c00460{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m3_c00460{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);}
.m8_c00460{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);}
.mc_c00460{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c00460{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c00460{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);}
.mb_c00460{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);}
.md_c00460{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.ma_c00460{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m9_c00460{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m0_c00460{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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;}
.fc0_c00460{color:transparent;}
.fs1_c00460{font-size:3.456000px;}
.fs0_c00460{font-size:10.380000px;}
.fs5_c00460{font-size:13.800000px;}
.fs2_c00460{font-size:17.280000px;}
.fs3_c00460{font-size:24.180000px;}
.fs4_c00460{font-size:31.080000px;}
.fs9_c00460{font-size:41.460000px;}
.fs6_c00460{font-size:58.740000px;}
.fs7_c00460{font-size:69.120000px;}
.fs8_c00460{font-size:72.600000px;}
.y0_c00460{bottom:0.000000px;}
.yf_c00460{bottom:403.485000px;}
.ye_c00460{bottom:733.530000px;}
.yd_c00460{bottom:736.125000px;}
.yb_c00460{bottom:1187.130000px;}
.yc_c00460{bottom:1189.725000px;}
.y9_c00460{bottom:1404.870000px;}
.y8_c00460{bottom:1405.725000px;}
.ya_c00460{bottom:1407.450000px;}
.y5_c00460{bottom:1466.205000px;}
.y6_c00460{bottom:1467.075000px;}
.y7_c00460{bottom:1468.800000px;}
.y4_c00460{bottom:1469.670000px;}
.y3_c00460{bottom:1470.525000px;}
.y2_c00460{bottom:1471.395000px;}
.y1_c00460{bottom:1489.530000px;}
.h3_c00460{height:3.110063px;}
.h2_c00460{height:9.340986px;}
.h7_c00460{height:12.418652px;}
.h4_c00460{height:15.550313px;}
.h5_c00460{height:21.759639px;}
.h6_c00460{height:27.968965px;}
.hb_c00460{height:37.309951px;}
.h8_c00460{height:52.860264px;}
.h9_c00460{height:62.201250px;}
.ha_c00460{height:65.332910px;}
.h0_c00460{height:1515.450000px;}
.h1_c00460{height:1515.750000px;}
.w0_c00460{width:1088.640000px;}
.w1_c00460{width:1089.000000px;}
.x0_c00460{left:0.000000px;}
.xa_c00460{left:328.320000px;}
.xb_c00460{left:375.840000px;}
.xc_c00460{left:534.810000px;}
.x2_c00460{left:900.285000px;}
.x3_c00460{left:907.200000px;}
.x4_c00460{left:914.115000px;}
.x5_c00460{left:931.395000px;}
.x11_c00460{left:951.270000px;}
.x12_c00460{left:959.910000px;}
.x6_c00460{left:966.810000px;}
.xd_c00460{left:976.320000px;}
.x7_c00460{left:979.770000px;}
.x8_c00460{left:984.090000px;}
.x9_c00460{left:1017.795000px;}
.x1_c00460{left:1020.390000px;}
.xe_c00460{left:1048.035000px;}
.xf_c00460{left:1055.805000px;}
.x10_c00460{left:1066.170000px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ws0_c00460{word-spacing:0.000000pt;}
.fs1_c00460{font-size:3.072000pt;}
.fs0_c00460{font-size:9.226667pt;}
.fs5_c00460{font-size:12.266667pt;}
.fs2_c00460{font-size:15.360000pt;}
.fs3_c00460{font-size:21.493333pt;}
.fs4_c00460{font-size:27.626667pt;}
.fs9_c00460{font-size:36.853333pt;}
.fs6_c00460{font-size:52.213333pt;}
.fs7_c00460{font-size:61.440000pt;}
.fs8_c00460{font-size:64.533333pt;}
.y0_c00460{bottom:0.000000pt;}
.yf_c00460{bottom:358.653333pt;}
.ye_c00460{bottom:652.026667pt;}
.yd_c00460{bottom:654.333333pt;}
.yb_c00460{bottom:1055.226667pt;}
.yc_c00460{bottom:1057.533333pt;}
.y9_c00460{bottom:1248.773333pt;}
.y8_c00460{bottom:1249.533333pt;}
.ya_c00460{bottom:1251.066667pt;}
.y5_c00460{bottom:1303.293333pt;}
.y6_c00460{bottom:1304.066667pt;}
.y7_c00460{bottom:1305.600000pt;}
.y4_c00460{bottom:1306.373333pt;}
.y3_c00460{bottom:1307.133333pt;}
.y2_c00460{bottom:1307.906667pt;}
.y1_c00460{bottom:1324.026667pt;}
.h3_c00460{height:2.764500pt;}
.h2_c00460{height:8.303099pt;}
.h7_c00460{height:11.038802pt;}
.h4_c00460{height:13.822500pt;}
.h5_c00460{height:19.341901pt;}
.h6_c00460{height:24.861302pt;}
.hb_c00460{height:33.164401pt;}
.h8_c00460{height:46.986901pt;}
.h9_c00460{height:55.290000pt;}
.ha_c00460{height:58.073698pt;}
.h0_c00460{height:1347.066667pt;}
.h1_c00460{height:1347.333333pt;}
.w0_c00460{width:967.680000pt;}
.w1_c00460{width:968.000000pt;}
.x0_c00460{left:0.000000pt;}
.xa_c00460{left:291.840000pt;}
.xb_c00460{left:334.080000pt;}
.xc_c00460{left:475.386667pt;}
.x2_c00460{left:800.253333pt;}
.x3_c00460{left:806.400000pt;}
.x4_c00460{left:812.546667pt;}
.x5_c00460{left:827.906667pt;}
.x11_c00460{left:845.573333pt;}
.x12_c00460{left:853.253333pt;}
.x6_c00460{left:859.386667pt;}
.xd_c00460{left:867.840000pt;}
.x7_c00460{left:870.906667pt;}
.x8_c00460{left:874.746667pt;}
.x9_c00460{left:904.706667pt;}
.x1_c00460{left:907.013333pt;}
.xe_c00460{left:931.586667pt;}
.xf_c00460{left:938.493333pt;}
.x10_c00460{left:947.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00461;src:url('chunks/assets/font_d8a0d9bdd84bbbdcc12177b1.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.109863;font-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_c00461{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00461{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);}
.m3_c00461{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m5_c00461{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00461{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c00461{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);}
.m9_c00461{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4_c00461{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c00461{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mb_c00461{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m8_c00461{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m6_c00461{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c00461{vertical-align:0.000000px;}
.ls0_c00461{letter-spacing:0.000000px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00461{word-spacing:0.000000px;}
.fc0_c00461{color:transparent;}
.fs3_c00461{font-size:6.000000px;}
.fs6_c00461{font-size:6.900000px;}
.fs4_c00461{font-size:10.380000px;}
.fs0_c00461{font-size:13.800000px;}
.fs5_c00461{font-size:17.280000px;}
.fs2_c00461{font-size:20.760000px;}
.fs1_c00461{font-size:27.660000px;}
.y0_c00461{bottom:0.000000px;}
.y9_c00461{bottom:108.000000px;}
.y8_c00461{bottom:108.870000px;}
.y7_c00461{bottom:110.595000px;}
.ye_c00461{bottom:112.320000px;}
.y6_c00461{bottom:114.915000px;}
.yc_c00461{bottom:115.770000px;}
.yd_c00461{bottom:116.640000px;}
.yb_c00461{bottom:119.235000px;}
.y5_c00461{bottom:120.090000px;}
.ya_c00461{bottom:126.150000px;}
.y2_c00461{bottom:400.890000px;}
.y1_c00461{bottom:401.760000px;}
.y4_c00461{bottom:901.155000px;}
.y3_c00461{bottom:909.795000px;}
.h5_c00461{height:5.399414px;}
.h8_c00461{height:6.209326px;}
.h6_c00461{height:9.340986px;}
.h2_c00461{height:12.418652px;}
.h7_c00461{height:15.550313px;}
.h4_c00461{height:18.681973px;}
.h3_c00461{height:24.891299px;}
.h0_c00461{height:1505.955000px;}
.h1_c00461{height:1506.000000px;}
.w1_c00461{width:1092.750000px;}
.w0_c00461{width:1092.960000px;}
.x0_c00461{left:0.000000px;}
.x1_c00461{left:74.310000px;}
.x2_c00461{left:82.950000px;}
.x3_c00461{left:142.560000px;}
.x4_c00461{left:152.070000px;}
.x6_c00461{left:537.405000px;}
.x7_c00461{left:547.770000px;}
.x5_c00461{left:566.790000px;}
.x8_c00461{left:603.930000px;}
.xb_c00461{left:825.120000px;}
.x9_c00461{left:829.440000px;}
.xc_c00461{left:835.485000px;}
.xa_c00461{left:841.530000px;}
.xd_c00461{left:846.720000px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.ws0_c00461{word-spacing:0.000000pt;}
.fs3_c00461{font-size:5.333333pt;}
.fs6_c00461{font-size:6.133333pt;}
.fs4_c00461{font-size:9.226667pt;}
.fs0_c00461{font-size:12.266667pt;}
.fs5_c00461{font-size:15.360000pt;}
.fs2_c00461{font-size:18.453333pt;}
.fs1_c00461{font-size:24.586667pt;}
.y0_c00461{bottom:0.000000pt;}
.y9_c00461{bottom:96.000000pt;}
.y8_c00461{bottom:96.773333pt;}
.y7_c00461{bottom:98.306667pt;}
.ye_c00461{bottom:99.840000pt;}
.y6_c00461{bottom:102.146667pt;}
.yc_c00461{bottom:102.906667pt;}
.yd_c00461{bottom:103.680000pt;}
.yb_c00461{bottom:105.986667pt;}
.y5_c00461{bottom:106.746667pt;}
.ya_c00461{bottom:112.133333pt;}
.y2_c00461{bottom:356.346667pt;}
.y1_c00461{bottom:357.120000pt;}
.y4_c00461{bottom:801.026667pt;}
.y3_c00461{bottom:808.706667pt;}
.h5_c00461{height:4.799479pt;}
.h8_c00461{height:5.519401pt;}
.h6_c00461{height:8.303099pt;}
.h2_c00461{height:11.038802pt;}
.h7_c00461{height:13.822500pt;}
.h4_c00461{height:16.606198pt;}
.h3_c00461{height:22.125599pt;}
.h0_c00461{height:1338.626667pt;}
.h1_c00461{height:1338.666667pt;}
.w1_c00461{width:971.333333pt;}
.w0_c00461{width:971.520000pt;}
.x0_c00461{left:0.000000pt;}
.x1_c00461{left:66.053333pt;}
.x2_c00461{left:73.733333pt;}
.x3_c00461{left:126.720000pt;}
.x4_c00461{left:135.173333pt;}
.x6_c00461{left:477.693333pt;}
.x7_c00461{left:486.906667pt;}
.x5_c00461{left:503.813333pt;}
.x8_c00461{left:536.826667pt;}
.xb_c00461{left:733.440000pt;}
.x9_c00461{left:737.280000pt;}
.xc_c00461{left:742.653333pt;}
.xa_c00461{left:748.026667pt;}
.xd_c00461{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_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_38ec46c48ddeadcafd44c14e.woff2')format("woff");}.ff1_c00462{font-family:ff1_c00462;line-height:1.109863;font-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_c00462{transform:matrix(0.039525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039525,0.000000,0.000000,0.250000,0,0);}
.m5_c00462{transform:matrix(0.076150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076150,0.000000,0.000000,0.250000,0,0);}
.m2_c00462{transform:matrix(0.078975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078975,0.000000,0.000000,0.250000,0,0);}
.m3_c00462{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m6_c00462{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_c00462{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);}
.m1_c00462{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,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;}
.fs1_c00462{font-size:17.280000px;}
.fs3_c00462{font-size:31.080000px;}
.fs0_c00462{font-size:38.040000px;}
.fs6_c00462{font-size:41.460000px;}
.fs4_c00462{font-size:65.640000px;}
.fs2_c00462{font-size:131.340000px;}
.fs5_c00462{font-size:165.900000px;}
.y0_c00462{bottom:0.000000px;}
.y7_c00462{bottom:399.165000px;}
.y6_c00462{bottom:663.555000px;}
.y5_c00462{bottom:709.350000px;}
.y4_c00462{bottom:997.050000px;}
.y3_c00462{bottom:1005.690000px;}
.y2_c00462{bottom:1128.390000px;}
.y1_c00462{bottom:1142.205000px;}
.h3_c00462{height:15.550313px;}
.h5_c00462{height:27.968965px;}
.h2_c00462{height:34.232285px;}
.h8_c00462{height:37.309951px;}
.h6_c00462{height:59.069590px;}
.h4_c00462{height:118.193174px;}
.h7_c00462{height:149.293799px;}
.h0_c00462{height:1515.450000px;}
.h1_c00462{height:1515.750000px;}
.w0_c00462{width:1088.640000px;}
.w1_c00462{width:1089.000000px;}
.x0_c00462{left:0.000000px;}
.x1_c00462{left:956.445000px;}
.x3_c00462{left:970.275000px;}
.x5_c00462{left:976.320000px;}
.x4_c00462{left:978.045000px;}
.x6_c00462{left:1070.490000px;}
.x2_c00462{left:1079.130000px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ws0_c00462{word-spacing:0.000000pt;}
.fs1_c00462{font-size:15.360000pt;}
.fs3_c00462{font-size:27.626667pt;}
.fs0_c00462{font-size:33.813333pt;}
.fs6_c00462{font-size:36.853333pt;}
.fs4_c00462{font-size:58.346667pt;}
.fs2_c00462{font-size:116.746667pt;}
.fs5_c00462{font-size:147.466667pt;}
.y0_c00462{bottom:0.000000pt;}
.y7_c00462{bottom:354.813333pt;}
.y6_c00462{bottom:589.826667pt;}
.y5_c00462{bottom:630.533333pt;}
.y4_c00462{bottom:886.266667pt;}
.y3_c00462{bottom:893.946667pt;}
.y2_c00462{bottom:1003.013333pt;}
.y1_c00462{bottom:1015.293333pt;}
.h3_c00462{height:13.822500pt;}
.h5_c00462{height:24.861302pt;}
.h2_c00462{height:30.428698pt;}
.h8_c00462{height:33.164401pt;}
.h6_c00462{height:52.506302pt;}
.h4_c00462{height:105.060599pt;}
.h7_c00462{height:132.705599pt;}
.h0_c00462{height:1347.066667pt;}
.h1_c00462{height:1347.333333pt;}
.w0_c00462{width:967.680000pt;}
.w1_c00462{width:968.000000pt;}
.x0_c00462{left:0.000000pt;}
.x1_c00462{left:850.173333pt;}
.x3_c00462{left:862.466667pt;}
.x5_c00462{left:867.840000pt;}
.x4_c00462{left:869.373333pt;}
.x6_c00462{left:951.546667pt;}
.x2_c00462{left:959.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_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_69f7a5b95156c771b4e8c6fa.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.109863;font-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_c00463{transform:matrix(0.040100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040100,0.000000,0.000000,0.250000,0,0);}
.m4_c00463{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00463{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c00463{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);}
.m1_c00463{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m0_c00463{transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887500,0.000000,0.000000,0.250000,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:13.800000px;}
.fs2_c00463{font-size:17.280000px;}
.fs0_c00463{font-size:20.760000px;}
.fs1_c00463{font-size:34.560000px;}
.fs4_c00463{font-size:155.520000px;}
.y0_c00463{bottom:0.000000px;}
.y6_c00463{bottom:997.050000px;}
.y4_c00463{bottom:1048.890000px;}
.y5_c00463{bottom:1050.630000px;}
.y3_c00463{bottom:1088.640000px;}
.y2_c00463{bottom:1140.480000px;}
.y1_c00463{bottom:1182.810000px;}
.h5_c00463{height:12.418652px;}
.h4_c00463{height:15.550313px;}
.h2_c00463{height:18.681973px;}
.h3_c00463{height:31.100625px;}
.h6_c00463{height:139.952812px;}
.h0_c00463{height:1505.955000px;}
.h1_c00463{height:1506.000000px;}
.w1_c00463{width:1092.750000px;}
.w0_c00463{width:1092.960000px;}
.x0_c00463{left:0.000000px;}
.x1_c00463{left:10.365000px;}
.x4_c00463{left:12.960000px;}
.x5_c00463{left:27.645000px;}
.x3_c00463{left:37.155000px;}
.x2_c00463{left:79.485000px;}
.x6_c00463{left:100.230000px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls0_c00463{letter-spacing:0.000000pt;}
.ws0_c00463{word-spacing:0.000000pt;}
.fs3_c00463{font-size:12.266667pt;}
.fs2_c00463{font-size:15.360000pt;}
.fs0_c00463{font-size:18.453333pt;}
.fs1_c00463{font-size:30.720000pt;}
.fs4_c00463{font-size:138.240000pt;}
.y0_c00463{bottom:0.000000pt;}
.y6_c00463{bottom:886.266667pt;}
.y4_c00463{bottom:932.346667pt;}
.y5_c00463{bottom:933.893333pt;}
.y3_c00463{bottom:967.680000pt;}
.y2_c00463{bottom:1013.760000pt;}
.y1_c00463{bottom:1051.386667pt;}
.h5_c00463{height:11.038802pt;}
.h4_c00463{height:13.822500pt;}
.h2_c00463{height:16.606198pt;}
.h3_c00463{height:27.645000pt;}
.h6_c00463{height:124.402500pt;}
.h0_c00463{height:1338.626667pt;}
.h1_c00463{height:1338.666667pt;}
.w1_c00463{width:971.333333pt;}
.w0_c00463{width:971.520000pt;}
.x0_c00463{left:0.000000pt;}
.x1_c00463{left:9.213333pt;}
.x4_c00463{left:11.520000pt;}
.x5_c00463{left:24.573333pt;}
.x3_c00463{left:33.026667pt;}
.x2_c00463{left:70.653333pt;}
.x6_c00463{left:89.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69508219fbb2a4919d9f4016.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.109863;font-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_c00464{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c00464{transform:matrix(0.098950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098950,0.000000,0.000000,0.250000,0,0);}
.m4_c00464{transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);}
.m2_c00464{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c00464{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00464{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c00464{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m0_c00464{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m8_c00464{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,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;}
.fs1_c00464{font-size:3.456000px;}
.fs6_c00464{font-size:6.000000px;}
.fs0_c00464{font-size:10.380000px;}
.fs7_c00464{font-size:17.280000px;}
.fs5_c00464{font-size:31.080000px;}
.fs3_c00464{font-size:44.940000px;}
.fs2_c00464{font-size:51.840000px;}
.fs4_c00464{font-size:138.240000px;}
.y0_c00464{bottom:0.000000px;}
.yc_c00464{bottom:139.110000px;}
.yd_c00464{bottom:142.560000px;}
.ya_c00464{bottom:389.670000px;}
.yb_c00464{bottom:396.570000px;}
.y9_c00464{bottom:1188.000000px;}
.y7_c00464{bottom:1252.800000px;}
.y8_c00464{bottom:1254.525000px;}
.y5_c00464{bottom:1463.610000px;}
.y6_c00464{bottom:1468.800000px;}
.y3_c00464{bottom:1471.395000px;}
.y4_c00464{bottom:1472.250000px;}
.y2_c00464{bottom:1477.440000px;}
.y1_c00464{bottom:1489.530000px;}
.h3_c00464{height:3.110063px;}
.h8_c00464{height:5.399414px;}
.h2_c00464{height:9.340986px;}
.h9_c00464{height:15.550313px;}
.h7_c00464{height:27.968965px;}
.h5_c00464{height:40.441611px;}
.h4_c00464{height:46.650937px;}
.h6_c00464{height:124.402500px;}
.h0_c00464{height:1515.450000px;}
.h1_c00464{height:1515.750000px;}
.w0_c00464{width:1088.640000px;}
.w1_c00464{width:1089.000000px;}
.x0_c00464{left:0.000000px;}
.x2_c00464{left:750.810000px;}
.x3_c00464{left:901.155000px;}
.x4_c00464{left:908.070000px;}
.x5_c00464{left:914.115000px;}
.x9_c00464{left:942.630000px;}
.x6_c00464{left:1018.650000px;}
.x1_c00464{left:1021.245000px;}
.x7_c00464{left:1067.910000px;}
.xa_c00464{left:1070.490000px;}
.x8_c00464{left:1074.810000px;}
.xc_c00464{left:1080.000000px;}
.xb_c00464{left:1087.770000px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.ws0_c00464{word-spacing:0.000000pt;}
.fs1_c00464{font-size:3.072000pt;}
.fs6_c00464{font-size:5.333333pt;}
.fs0_c00464{font-size:9.226667pt;}
.fs7_c00464{font-size:15.360000pt;}
.fs5_c00464{font-size:27.626667pt;}
.fs3_c00464{font-size:39.946667pt;}
.fs2_c00464{font-size:46.080000pt;}
.fs4_c00464{font-size:122.880000pt;}
.y0_c00464{bottom:0.000000pt;}
.yc_c00464{bottom:123.653333pt;}
.yd_c00464{bottom:126.720000pt;}
.ya_c00464{bottom:346.373333pt;}
.yb_c00464{bottom:352.506667pt;}
.y9_c00464{bottom:1056.000000pt;}
.y7_c00464{bottom:1113.600000pt;}
.y8_c00464{bottom:1115.133333pt;}
.y5_c00464{bottom:1300.986667pt;}
.y6_c00464{bottom:1305.600000pt;}
.y3_c00464{bottom:1307.906667pt;}
.y4_c00464{bottom:1308.666667pt;}
.y2_c00464{bottom:1313.280000pt;}
.y1_c00464{bottom:1324.026667pt;}
.h3_c00464{height:2.764500pt;}
.h8_c00464{height:4.799479pt;}
.h2_c00464{height:8.303099pt;}
.h9_c00464{height:13.822500pt;}
.h7_c00464{height:24.861302pt;}
.h5_c00464{height:35.948099pt;}
.h4_c00464{height:41.467500pt;}
.h6_c00464{height:110.580000pt;}
.h0_c00464{height:1347.066667pt;}
.h1_c00464{height:1347.333333pt;}
.w0_c00464{width:967.680000pt;}
.w1_c00464{width:968.000000pt;}
.x0_c00464{left:0.000000pt;}
.x2_c00464{left:667.386667pt;}
.x3_c00464{left:801.026667pt;}
.x4_c00464{left:807.173333pt;}
.x5_c00464{left:812.546667pt;}
.x9_c00464{left:837.893333pt;}
.x6_c00464{left:905.466667pt;}
.x1_c00464{left:907.773333pt;}
.x7_c00464{left:949.253333pt;}
.xa_c00464{left:951.546667pt;}
.x8_c00464{left:955.386667pt;}
.xc_c00464{left:960.000000pt;}
.xb_c00464{left:966.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a194324e6c16ac2495775b46.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.109863;font-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_c00465{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);}
.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;}
.fs0_c00465{font-size:600.000000px;}
.y0_c00465{bottom:0.000000px;}
.y1_c00465{bottom:15.000000px;}
.h2_c00465{height:539.941406px;}
.h0_c00465{height:1505.955000px;}
.h1_c00465{height:1506.000000px;}
.w1_c00465{width:1092.750000px;}
.w0_c00465{width:1092.960000px;}
.x0_c00465{left:0.000000px;}
.x1_c00465{left:15.000000px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls0_c00465{letter-spacing:0.000000pt;}
.ws0_c00465{word-spacing:0.000000pt;}
.fs0_c00465{font-size:533.333333pt;}
.y0_c00465{bottom:0.000000pt;}
.y1_c00465{bottom:13.333333pt;}
.h2_c00465{height:479.947917pt;}
.h0_c00465{height:1338.626667pt;}
.h1_c00465{height:1338.666667pt;}
.w1_c00465{width:971.333333pt;}
.w0_c00465{width:971.520000pt;}
.x0_c00465{left:0.000000pt;}
.x1_c00465{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b097b0495e92d91d3f226b4.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.109863;font-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_c00466{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);}
.m1_c00466{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);}
.m9_c00466{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c00466{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c00466{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c00466{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8_c00466{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c00466{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c00466{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);}
.m5_c00466{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.ma_c00466{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m7_c00466{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,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;}
.fs0_c00466{font-size:55.320000px;}
.fs2_c00466{font-size:58.740000px;}
.fs1_c00466{font-size:62.220000px;}
.fs3_c00466{font-size:69.120000px;}
.y0_c00466{bottom:0.000000px;}
.y1_c00466{bottom:1390.170000px;}
.y2_c00466{bottom:1391.040000px;}
.y3_c00466{bottom:1391.910000px;}
.h2_c00466{height:49.782598px;}
.h4_c00466{height:52.860264px;}
.h3_c00466{height:55.991924px;}
.h5_c00466{height:62.201250px;}
.h0_c00466{height:1515.450000px;}
.h1_c00466{height:1515.750000px;}
.w0_c00466{width:1088.640000px;}
.w1_c00466{width:1089.000000px;}
.x0_c00466{left:0.000000px;}
.x1_c00466{left:397.440000px;}
.x2_c00466{left:429.405000px;}
.x3_c00466{left:446.685000px;}
.x4_c00466{left:466.560000px;}
.x5_c00466{left:482.115000px;}
.x6_c00466{left:495.930000px;}
.x7_c00466{left:527.040000px;}
.x8_c00466{left:557.280000px;}
.x9_c00466{left:572.835000px;}
.xa_c00466{left:591.840000px;}
.xb_c00466{left:609.120000px;}
.xc_c00466{left:626.400000px;}
.xd_c00466{left:680.835000px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ws0_c00466{word-spacing:0.000000pt;}
.fs0_c00466{font-size:49.173333pt;}
.fs2_c00466{font-size:52.213333pt;}
.fs1_c00466{font-size:55.306667pt;}
.fs3_c00466{font-size:61.440000pt;}
.y0_c00466{bottom:0.000000pt;}
.y1_c00466{bottom:1235.706667pt;}
.y2_c00466{bottom:1236.480000pt;}
.y3_c00466{bottom:1237.253333pt;}
.h2_c00466{height:44.251198pt;}
.h4_c00466{height:46.986901pt;}
.h3_c00466{height:49.770599pt;}
.h5_c00466{height:55.290000pt;}
.h0_c00466{height:1347.066667pt;}
.h1_c00466{height:1347.333333pt;}
.w0_c00466{width:967.680000pt;}
.w1_c00466{width:968.000000pt;}
.x0_c00466{left:0.000000pt;}
.x1_c00466{left:353.280000pt;}
.x2_c00466{left:381.693333pt;}
.x3_c00466{left:397.053333pt;}
.x4_c00466{left:414.720000pt;}
.x5_c00466{left:428.546667pt;}
.x6_c00466{left:440.826667pt;}
.x7_c00466{left:468.480000pt;}
.x8_c00466{left:495.360000pt;}
.x9_c00466{left:509.186667pt;}
.xa_c00466{left:526.080000pt;}
.xb_c00466{left:541.440000pt;}
.xc_c00466{left:556.800000pt;}
.xd_c00466{left:605.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73b8481d6d994b3513245b89.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.109863;font-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_c00467{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m25_c00467{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m1f_c00467{transform:matrix(0.125650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125650,0.000000,0.000000,0.250000,0,0);}
.m23_c00467{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00467{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);}
.m9_c00467{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m26_c00467{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m28_c00467{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m14_c00467{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m19_c00467{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.me_c00467{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);}
.m13_c00467{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.m1_c00467{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m15_c00467{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5_c00467{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);}
.m1d_c00467{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m22_c00467{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);}
.mf_c00467{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);}
.m2_c00467{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);}
.m24_c00467{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c00467{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);}
.m12_c00467{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m27_c00467{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);}
.m1a_c00467{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c00467{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8_c00467{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c00467{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10_c00467{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);}
.m20_c00467{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);}
.m6_c00467{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);}
.ma_c00467{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mb_c00467{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);}
.m11_c00467{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md_c00467{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);}
.m21_c00467{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4_c00467{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);}
.mc_c00467{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00467{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1c_c00467{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);}
.m18_c00467{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00467{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,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;}
.fs14_c00467{font-size:3.456000px;}
.fse_c00467{font-size:6.000000px;}
.fs15_c00467{font-size:10.380000px;}
.fs8_c00467{font-size:13.800000px;}
.fs9_c00467{font-size:17.280000px;}
.fsf_c00467{font-size:24.180000px;}
.fsa_c00467{font-size:27.660000px;}
.fs6_c00467{font-size:31.080000px;}
.fs7_c00467{font-size:34.560000px;}
.fs5_c00467{font-size:38.040000px;}
.fsb_c00467{font-size:41.460000px;}
.fsd_c00467{font-size:48.360000px;}
.fsc_c00467{font-size:51.840000px;}
.fs4_c00467{font-size:55.320000px;}
.fs3_c00467{font-size:58.740000px;}
.fs12_c00467{font-size:62.220000px;}
.fs1_c00467{font-size:65.640000px;}
.fs0_c00467{font-size:69.120000px;}
.fs2_c00467{font-size:72.600000px;}
.fs11_c00467{font-size:79.500000px;}
.fs13_c00467{font-size:86.400000px;}
.fs10_c00467{font-size:96.780000px;}
.y0_c00467{bottom:0.000000px;}
.y21_c00467{bottom:1092.090000px;}
.y20_c00467{bottom:1104.195000px;}
.y1f_c00467{bottom:1120.605000px;}
.y1e_c00467{bottom:1137.030000px;}
.y1d_c00467{bottom:1159.485000px;}
.y1c_c00467{bottom:1165.530000px;}
.y1b_c00467{bottom:1262.310000px;}
.y19_c00467{bottom:1263.165000px;}
.y1a_c00467{bottom:1264.035000px;}
.y18_c00467{bottom:1265.760000px;}
.y13_c00467{bottom:1302.915000px;}
.y14_c00467{bottom:1306.365000px;}
.y16_c00467{bottom:1308.090000px;}
.y17_c00467{bottom:1308.960000px;}
.y15_c00467{bottom:1311.555000px;}
.yf_c00467{bottom:1313.280000px;}
.y7_c00467{bottom:1314.150000px;}
.yd_c00467{bottom:1315.005000px;}
.ye_c00467{bottom:1315.875000px;}
.y10_c00467{bottom:1316.730000px;}
.yb_c00467{bottom:1317.600000px;}
.y8_c00467{bottom:1323.645000px;}
.ya_c00467{bottom:1325.370000px;}
.y9_c00467{bottom:1326.240000px;}
.yc_c00467{bottom:1327.110000px;}
.y6_c00467{bottom:1344.390000px;}
.y4_c00467{bottom:1369.440000px;}
.y12_c00467{bottom:1372.035000px;}
.y11_c00467{bottom:1378.080000px;}
.y2_c00467{bottom:1394.490000px;}
.y1_c00467{bottom:1395.360000px;}
.y3_c00467{bottom:1396.230000px;}
.y5_c00467{bottom:1403.130000px;}
.h16_c00467{height:3.110063px;}
.h10_c00467{height:5.399414px;}
.h17_c00467{height:9.340986px;}
.ha_c00467{height:12.418652px;}
.hb_c00467{height:15.550313px;}
.h11_c00467{height:21.759639px;}
.hc_c00467{height:24.891299px;}
.h8_c00467{height:27.968965px;}
.h9_c00467{height:31.100625px;}
.h7_c00467{height:34.232285px;}
.hd_c00467{height:37.309951px;}
.hf_c00467{height:43.519277px;}
.he_c00467{height:46.650937px;}
.h6_c00467{height:49.782598px;}
.h5_c00467{height:52.860264px;}
.h14_c00467{height:55.991924px;}
.h3_c00467{height:59.069590px;}
.h2_c00467{height:62.201250px;}
.h4_c00467{height:65.332910px;}
.h13_c00467{height:71.542236px;}
.h15_c00467{height:77.751563px;}
.h12_c00467{height:87.092549px;}
.h0_c00467{height:1505.955000px;}
.h1_c00467{height:1506.000000px;}
.w1_c00467{width:1092.750000px;}
.w0_c00467{width:1092.960000px;}
.x0_c00467{left:0.000000px;}
.x2a_c00467{left:101.955000px;}
.x28_c00467{left:139.110000px;}
.x29_c00467{left:145.155000px;}
.xa_c00467{left:283.395000px;}
.x9_c00467{left:292.035000px;}
.x13_c00467{left:298.080000px;}
.xb_c00467{left:309.315000px;}
.x14_c00467{left:318.810000px;}
.xc_c00467{left:325.725000px;}
.x22_c00467{left:328.320000px;}
.xd_c00467{left:335.235000px;}
.x15_c00467{left:358.560000px;}
.xe_c00467{left:367.200000px;}
.x16_c00467{left:379.290000px;}
.xf_c00467{left:388.800000px;}
.x10_c00467{left:403.485000px;}
.x17_c00467{left:418.170000px;}
.x11_c00467{left:425.085000px;}
.x23_c00467{left:445.830000px;}
.x18_c00467{left:447.555000px;}
.x1_c00467{left:455.325000px;}
.x12_c00467{left:459.645000px;}
.x2_c00467{left:476.925000px;}
.x19_c00467{left:488.160000px;}
.x3_c00467{left:501.990000px;}
.x4_c00467{left:518.400000px;}
.x7_c00467{left:563.325000px;}
.x1c_c00467{left:594.435000px;}
.x5_c00467{left:599.610000px;}
.x6_c00467{left:613.440000px;}
.x24_c00467{left:636.765000px;}
.x25_c00467{left:654.045000px;}
.x1d_c00467{left:666.150000px;}
.x1e_c00467{left:690.330000px;}
.x1a_c00467{left:692.070000px;}
.x1b_c00467{left:702.435000px;}
.x1f_c00467{left:756.000000px;}
.x26_c00467{left:760.320000px;}
.x20_c00467{left:766.365000px;}
.x27_c00467{left:776.730000px;}
.x21_c00467{left:791.430000px;}
.x8_c00467{left:853.635000px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls0_c00467{letter-spacing:0.000000pt;}
.ws0_c00467{word-spacing:0.000000pt;}
.fs14_c00467{font-size:3.072000pt;}
.fse_c00467{font-size:5.333333pt;}
.fs15_c00467{font-size:9.226667pt;}
.fs8_c00467{font-size:12.266667pt;}
.fs9_c00467{font-size:15.360000pt;}
.fsf_c00467{font-size:21.493333pt;}
.fsa_c00467{font-size:24.586667pt;}
.fs6_c00467{font-size:27.626667pt;}
.fs7_c00467{font-size:30.720000pt;}
.fs5_c00467{font-size:33.813333pt;}
.fsb_c00467{font-size:36.853333pt;}
.fsd_c00467{font-size:42.986667pt;}
.fsc_c00467{font-size:46.080000pt;}
.fs4_c00467{font-size:49.173333pt;}
.fs3_c00467{font-size:52.213333pt;}
.fs12_c00467{font-size:55.306667pt;}
.fs1_c00467{font-size:58.346667pt;}
.fs0_c00467{font-size:61.440000pt;}
.fs2_c00467{font-size:64.533333pt;}
.fs11_c00467{font-size:70.666667pt;}
.fs13_c00467{font-size:76.800000pt;}
.fs10_c00467{font-size:86.026667pt;}
.y0_c00467{bottom:0.000000pt;}
.y21_c00467{bottom:970.746667pt;}
.y20_c00467{bottom:981.506667pt;}
.y1f_c00467{bottom:996.093333pt;}
.y1e_c00467{bottom:1010.693333pt;}
.y1d_c00467{bottom:1030.653333pt;}
.y1c_c00467{bottom:1036.026667pt;}
.y1b_c00467{bottom:1122.053333pt;}
.y19_c00467{bottom:1122.813333pt;}
.y1a_c00467{bottom:1123.586667pt;}
.y18_c00467{bottom:1125.120000pt;}
.y13_c00467{bottom:1158.146667pt;}
.y14_c00467{bottom:1161.213333pt;}
.y16_c00467{bottom:1162.746667pt;}
.y17_c00467{bottom:1163.520000pt;}
.y15_c00467{bottom:1165.826667pt;}
.yf_c00467{bottom:1167.360000pt;}
.y7_c00467{bottom:1168.133333pt;}
.yd_c00467{bottom:1168.893333pt;}
.ye_c00467{bottom:1169.666667pt;}
.y10_c00467{bottom:1170.426667pt;}
.yb_c00467{bottom:1171.200000pt;}
.y8_c00467{bottom:1176.573333pt;}
.ya_c00467{bottom:1178.106667pt;}
.y9_c00467{bottom:1178.880000pt;}
.yc_c00467{bottom:1179.653333pt;}
.y6_c00467{bottom:1195.013333pt;}
.y4_c00467{bottom:1217.280000pt;}
.y12_c00467{bottom:1219.586667pt;}
.y11_c00467{bottom:1224.960000pt;}
.y2_c00467{bottom:1239.546667pt;}
.y1_c00467{bottom:1240.320000pt;}
.y3_c00467{bottom:1241.093333pt;}
.y5_c00467{bottom:1247.226667pt;}
.h16_c00467{height:2.764500pt;}
.h10_c00467{height:4.799479pt;}
.h17_c00467{height:8.303099pt;}
.ha_c00467{height:11.038802pt;}
.hb_c00467{height:13.822500pt;}
.h11_c00467{height:19.341901pt;}
.hc_c00467{height:22.125599pt;}
.h8_c00467{height:24.861302pt;}
.h9_c00467{height:27.645000pt;}
.h7_c00467{height:30.428698pt;}
.hd_c00467{height:33.164401pt;}
.hf_c00467{height:38.683802pt;}
.he_c00467{height:41.467500pt;}
.h6_c00467{height:44.251198pt;}
.h5_c00467{height:46.986901pt;}
.h14_c00467{height:49.770599pt;}
.h3_c00467{height:52.506302pt;}
.h2_c00467{height:55.290000pt;}
.h4_c00467{height:58.073698pt;}
.h13_c00467{height:63.593099pt;}
.h15_c00467{height:69.112500pt;}
.h12_c00467{height:77.415599pt;}
.h0_c00467{height:1338.626667pt;}
.h1_c00467{height:1338.666667pt;}
.w1_c00467{width:971.333333pt;}
.w0_c00467{width:971.520000pt;}
.x0_c00467{left:0.000000pt;}
.x2a_c00467{left:90.626667pt;}
.x28_c00467{left:123.653333pt;}
.x29_c00467{left:129.026667pt;}
.xa_c00467{left:251.906667pt;}
.x9_c00467{left:259.586667pt;}
.x13_c00467{left:264.960000pt;}
.xb_c00467{left:274.946667pt;}
.x14_c00467{left:283.386667pt;}
.xc_c00467{left:289.533333pt;}
.x22_c00467{left:291.840000pt;}
.xd_c00467{left:297.986667pt;}
.x15_c00467{left:318.720000pt;}
.xe_c00467{left:326.400000pt;}
.x16_c00467{left:337.146667pt;}
.xf_c00467{left:345.600000pt;}
.x10_c00467{left:358.653333pt;}
.x17_c00467{left:371.706667pt;}
.x11_c00467{left:377.853333pt;}
.x23_c00467{left:396.293333pt;}
.x18_c00467{left:397.826667pt;}
.x1_c00467{left:404.733333pt;}
.x12_c00467{left:408.573333pt;}
.x2_c00467{left:423.933333pt;}
.x19_c00467{left:433.920000pt;}
.x3_c00467{left:446.213333pt;}
.x4_c00467{left:460.800000pt;}
.x7_c00467{left:500.733333pt;}
.x1c_c00467{left:528.386667pt;}
.x5_c00467{left:532.986667pt;}
.x6_c00467{left:545.280000pt;}
.x24_c00467{left:566.013333pt;}
.x25_c00467{left:581.373333pt;}
.x1d_c00467{left:592.133333pt;}
.x1e_c00467{left:613.626667pt;}
.x1a_c00467{left:615.173333pt;}
.x1b_c00467{left:624.386667pt;}
.x1f_c00467{left:672.000000pt;}
.x26_c00467{left:675.840000pt;}
.x20_c00467{left:681.213333pt;}
.x27_c00467{left:690.426667pt;}
.x21_c00467{left:703.493333pt;}
.x8_c00467{left:758.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27c4dc39a6cb0325163d3f54.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.109863;font-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_c00468{transform:matrix(0.045900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045900,0.000000,0.000000,0.250000,0,0);}
.m1_c00468{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m11_c00468{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.ma_c00468{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m13_c00468{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);}
.m3_c00468{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);}
.m5_c00468{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);}
.m2_c00468{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);}
.m12_c00468{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);}
.m9_c00468{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);}
.mc_c00468{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c00468{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c00468{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c00468{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);}
.m8_c00468{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);}
.me_c00468{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_c00468{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m0_c00468{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mf_c00468{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.mb_c00468{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,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;}
.fs1_c00468{font-size:6.000000px;}
.fs0_c00468{font-size:10.380000px;}
.fs3_c00468{font-size:17.280000px;}
.fsa_c00468{font-size:27.660000px;}
.fsb_c00468{font-size:31.080000px;}
.fs9_c00468{font-size:41.460000px;}
.fs5_c00468{font-size:58.740000px;}
.fs2_c00468{font-size:62.220000px;}
.fs6_c00468{font-size:65.640000px;}
.fs7_c00468{font-size:69.120000px;}
.fs4_c00468{font-size:72.600000px;}
.fs8_c00468{font-size:203.880000px;}
.y0_c00468{bottom:0.000000px;}
.yb_c00468{bottom:323.130000px;}
.ya_c00468{bottom:374.970000px;}
.y9_c00468{bottom:495.930000px;}
.y8_c00468{bottom:507.165000px;}
.y7_c00468{bottom:1169.850000px;}
.y5_c00468{bottom:1395.360000px;}
.y6_c00468{bottom:1397.085000px;}
.y3_c00468{bottom:1397.955000px;}
.y4_c00468{bottom:1413.510000px;}
.y1_c00468{bottom:1419.555000px;}
.y2_c00468{bottom:1421.280000px;}
.h3_c00468{height:5.399414px;}
.h2_c00468{height:9.340986px;}
.h5_c00468{height:15.550313px;}
.hc_c00468{height:24.891299px;}
.hd_c00468{height:27.968965px;}
.hb_c00468{height:37.309951px;}
.h7_c00468{height:52.860264px;}
.h4_c00468{height:55.991924px;}
.h8_c00468{height:59.069590px;}
.h9_c00468{height:62.201250px;}
.h6_c00468{height:65.332910px;}
.ha_c00468{height:183.472090px;}
.h0_c00468{height:1515.450000px;}
.h1_c00468{height:1515.750000px;}
.w0_c00468{width:1088.640000px;}
.w1_c00468{width:1089.000000px;}
.x0_c00468{left:0.000000px;}
.x3_c00468{left:347.325000px;}
.x4_c00468{left:375.840000px;}
.x5_c00468{left:390.525000px;}
.x6_c00468{left:411.270000px;}
.x7_c00468{left:433.725000px;}
.x8_c00468{left:454.470000px;}
.x9_c00468{left:470.010000px;}
.xa_c00468{left:491.610000px;}
.xb_c00468{left:507.165000px;}
.xc_c00468{left:539.130000px;}
.xd_c00468{left:560.730000px;}
.xe_c00468{left:581.475000px;}
.xf_c00468{left:603.930000px;}
.x10_c00468{left:648.000000px;}
.x1_c00468{left:666.150000px;}
.x2_c00468{left:671.325000px;}
.x11_c00468{left:688.605000px;}
.x12_c00468{left:908.070000px;}
.x14_c00468{left:971.130000px;}
.x13_c00468{left:972.870000px;}
.x15_c00468{left:974.595000px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls0_c00468{letter-spacing:0.000000pt;}
.ws0_c00468{word-spacing:0.000000pt;}
.fs1_c00468{font-size:5.333333pt;}
.fs0_c00468{font-size:9.226667pt;}
.fs3_c00468{font-size:15.360000pt;}
.fsa_c00468{font-size:24.586667pt;}
.fsb_c00468{font-size:27.626667pt;}
.fs9_c00468{font-size:36.853333pt;}
.fs5_c00468{font-size:52.213333pt;}
.fs2_c00468{font-size:55.306667pt;}
.fs6_c00468{font-size:58.346667pt;}
.fs7_c00468{font-size:61.440000pt;}
.fs4_c00468{font-size:64.533333pt;}
.fs8_c00468{font-size:181.226667pt;}
.y0_c00468{bottom:0.000000pt;}
.yb_c00468{bottom:287.226667pt;}
.ya_c00468{bottom:333.306667pt;}
.y9_c00468{bottom:440.826667pt;}
.y8_c00468{bottom:450.813333pt;}
.y7_c00468{bottom:1039.866667pt;}
.y5_c00468{bottom:1240.320000pt;}
.y6_c00468{bottom:1241.853333pt;}
.y3_c00468{bottom:1242.626667pt;}
.y4_c00468{bottom:1256.453333pt;}
.y1_c00468{bottom:1261.826667pt;}
.y2_c00468{bottom:1263.360000pt;}
.h3_c00468{height:4.799479pt;}
.h2_c00468{height:8.303099pt;}
.h5_c00468{height:13.822500pt;}
.hc_c00468{height:22.125599pt;}
.hd_c00468{height:24.861302pt;}
.hb_c00468{height:33.164401pt;}
.h7_c00468{height:46.986901pt;}
.h4_c00468{height:49.770599pt;}
.h8_c00468{height:52.506302pt;}
.h9_c00468{height:55.290000pt;}
.h6_c00468{height:58.073698pt;}
.ha_c00468{height:163.086302pt;}
.h0_c00468{height:1347.066667pt;}
.h1_c00468{height:1347.333333pt;}
.w0_c00468{width:967.680000pt;}
.w1_c00468{width:968.000000pt;}
.x0_c00468{left:0.000000pt;}
.x3_c00468{left:308.733333pt;}
.x4_c00468{left:334.080000pt;}
.x5_c00468{left:347.133333pt;}
.x6_c00468{left:365.573333pt;}
.x7_c00468{left:385.533333pt;}
.x8_c00468{left:403.973333pt;}
.x9_c00468{left:417.786667pt;}
.xa_c00468{left:436.986667pt;}
.xb_c00468{left:450.813333pt;}
.xc_c00468{left:479.226667pt;}
.xd_c00468{left:498.426667pt;}
.xe_c00468{left:516.866667pt;}
.xf_c00468{left:536.826667pt;}
.x10_c00468{left:576.000000pt;}
.x1_c00468{left:592.133333pt;}
.x2_c00468{left:596.733333pt;}
.x11_c00468{left:612.093333pt;}
.x12_c00468{left:807.173333pt;}
.x14_c00468{left:863.226667pt;}
.x13_c00468{left:864.773333pt;}
.x15_c00468{left:866.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9064fa9055c69dd2725287f.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.109863;font-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_c00469{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);}
.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:600.000000px;}
.y0_c00469{bottom:0.000000px;}
.y1_c00469{bottom:15.000000px;}
.h2_c00469{height:539.941406px;}
.h0_c00469{height:1505.955000px;}
.h1_c00469{height:1506.000000px;}
.w1_c00469{width:1104.000000px;}
.w0_c00469{width:1104.195000px;}
.x0_c00469{left:0.000000px;}
.x1_c00469{left:15.000000px;}
@media print{
.v0_c00469{vertical-align:0.000000pt;}
.ls0_c00469{letter-spacing:0.000000pt;}
.ws0_c00469{word-spacing:0.000000pt;}
.fs0_c00469{font-size:533.333333pt;}
.y0_c00469{bottom:0.000000pt;}
.y1_c00469{bottom:13.333333pt;}
.h2_c00469{height:479.947917pt;}
.h0_c00469{height:1338.626667pt;}
.h1_c00469{height:1338.666667pt;}
.w1_c00469{width:981.333333pt;}
.w0_c00469{width:981.506667pt;}
.x0_c00469{left:0.000000pt;}
.x1_c00469{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_801a95fdcba9ee28da206e32.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.109863;font-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_c00470{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me_c00470{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c00470{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m2_c00470{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m8_c00470{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);}
.ma_c00470{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m0_c00470{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c00470{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c00470{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00470{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);}
.mc_c00470{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6_c00470{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c00470{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c00470{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);}
.m4_c00470{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c00470{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3_c00470{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m12_c00470{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.mb_c00470{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mf_c00470{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m14_c00470{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m13_c00470{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,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;}
.fs5_c00470{font-size:3.456000px;}
.fs9_c00470{font-size:6.900000px;}
.fsa_c00470{font-size:17.280000px;}
.fsb_c00470{font-size:20.760000px;}
.fs8_c00470{font-size:24.180000px;}
.fs6_c00470{font-size:31.080000px;}
.fsc_c00470{font-size:34.560000px;}
.fs2_c00470{font-size:51.840000px;}
.fs1_c00470{font-size:55.320000px;}
.fs0_c00470{font-size:58.740000px;}
.fs3_c00470{font-size:62.220000px;}
.fs4_c00470{font-size:65.640000px;}
.fs7_c00470{font-size:69.120000px;}
.y0_c00470{bottom:0.000000px;}
.yd_c00470{bottom:162.435000px;}
.yc_c00470{bottom:171.930000px;}
.yb_c00470{bottom:739.590000px;}
.ya_c00470{bottom:888.195000px;}
.y9_c00470{bottom:892.515000px;}
.y8_c00470{bottom:904.605000px;}
.y7_c00470{bottom:942.630000px;}
.y6_c00470{bottom:1054.950000px;}
.y5_c00470{bottom:1055.805000px;}
.y4_c00470{bottom:1387.590000px;}
.y1_c00470{bottom:1388.445000px;}
.y2_c00470{bottom:1389.315000px;}
.y3_c00470{bottom:1390.170000px;}
.h7_c00470{height:3.110063px;}
.hb_c00470{height:6.209326px;}
.hc_c00470{height:15.550313px;}
.hd_c00470{height:18.681973px;}
.ha_c00470{height:21.759639px;}
.h8_c00470{height:27.968965px;}
.he_c00470{height:31.100625px;}
.h4_c00470{height:46.650937px;}
.h3_c00470{height:49.782598px;}
.h2_c00470{height:52.860264px;}
.h5_c00470{height:55.991924px;}
.h6_c00470{height:59.069590px;}
.h9_c00470{height:62.201250px;}
.h0_c00470{height:1515.450000px;}
.h1_c00470{height:1515.750000px;}
.w0_c00470{width:1088.640000px;}
.w1_c00470{width:1089.000000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:412.125000px;}
.x2_c00470{left:428.550000px;}
.x3_c00470{left:450.150000px;}
.x4_c00470{left:464.835000px;}
.x5_c00470{left:479.520000px;}
.x6_c00470{left:498.525000px;}
.x7_c00470{left:512.355000px;}
.x8_c00470{left:526.170000px;}
.x9_c00470{left:546.915000px;}
.xa_c00470{left:563.325000px;}
.xb_c00470{left:581.475000px;}
.xc_c00470{left:599.610000px;}
.xd_c00470{left:617.760000px;}
.xe_c00470{left:670.470000px;}
.xf_c00470{left:708.480000px;}
.x16_c00470{left:974.595000px;}
.x15_c00470{left:994.470000px;}
.x10_c00470{left:1003.965000px;}
.x11_c00470{left:1016.925000px;}
.x13_c00470{left:1022.115000px;}
.x14_c00470{left:1027.290000px;}
.x12_c00470{left:1042.845000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls0_c00470{letter-spacing:0.000000pt;}
.ws0_c00470{word-spacing:0.000000pt;}
.fs5_c00470{font-size:3.072000pt;}
.fs9_c00470{font-size:6.133333pt;}
.fsa_c00470{font-size:15.360000pt;}
.fsb_c00470{font-size:18.453333pt;}
.fs8_c00470{font-size:21.493333pt;}
.fs6_c00470{font-size:27.626667pt;}
.fsc_c00470{font-size:30.720000pt;}
.fs2_c00470{font-size:46.080000pt;}
.fs1_c00470{font-size:49.173333pt;}
.fs0_c00470{font-size:52.213333pt;}
.fs3_c00470{font-size:55.306667pt;}
.fs4_c00470{font-size:58.346667pt;}
.fs7_c00470{font-size:61.440000pt;}
.y0_c00470{bottom:0.000000pt;}
.yd_c00470{bottom:144.386667pt;}
.yc_c00470{bottom:152.826667pt;}
.yb_c00470{bottom:657.413333pt;}
.ya_c00470{bottom:789.506667pt;}
.y9_c00470{bottom:793.346667pt;}
.y8_c00470{bottom:804.093333pt;}
.y7_c00470{bottom:837.893333pt;}
.y6_c00470{bottom:937.733333pt;}
.y5_c00470{bottom:938.493333pt;}
.y4_c00470{bottom:1233.413333pt;}
.y1_c00470{bottom:1234.173333pt;}
.y2_c00470{bottom:1234.946667pt;}
.y3_c00470{bottom:1235.706667pt;}
.h7_c00470{height:2.764500pt;}
.hb_c00470{height:5.519401pt;}
.hc_c00470{height:13.822500pt;}
.hd_c00470{height:16.606198pt;}
.ha_c00470{height:19.341901pt;}
.h8_c00470{height:24.861302pt;}
.he_c00470{height:27.645000pt;}
.h4_c00470{height:41.467500pt;}
.h3_c00470{height:44.251198pt;}
.h2_c00470{height:46.986901pt;}
.h5_c00470{height:49.770599pt;}
.h6_c00470{height:52.506302pt;}
.h9_c00470{height:55.290000pt;}
.h0_c00470{height:1347.066667pt;}
.h1_c00470{height:1347.333333pt;}
.w0_c00470{width:967.680000pt;}
.w1_c00470{width:968.000000pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:366.333333pt;}
.x2_c00470{left:380.933333pt;}
.x3_c00470{left:400.133333pt;}
.x4_c00470{left:413.186667pt;}
.x5_c00470{left:426.240000pt;}
.x6_c00470{left:443.133333pt;}
.x7_c00470{left:455.426667pt;}
.x8_c00470{left:467.706667pt;}
.x9_c00470{left:486.146667pt;}
.xa_c00470{left:500.733333pt;}
.xb_c00470{left:516.866667pt;}
.xc_c00470{left:532.986667pt;}
.xd_c00470{left:549.120000pt;}
.xe_c00470{left:595.973333pt;}
.xf_c00470{left:629.760000pt;}
.x16_c00470{left:866.306667pt;}
.x15_c00470{left:883.973333pt;}
.x10_c00470{left:892.413333pt;}
.x11_c00470{left:903.933333pt;}
.x13_c00470{left:908.546667pt;}
.x14_c00470{left:913.146667pt;}
.x12_c00470{left:926.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c98d5a79a0dd723a8d1d1cc.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.109863;font-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_c00471{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);}
.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;}
.fs0_c00471{font-size:600.000000px;}
.y0_c00471{bottom:0.000000px;}
.y1_c00471{bottom:15.000000px;}
.h2_c00471{height:539.941406px;}
.h0_c00471{height:1505.955000px;}
.h1_c00471{height:1506.000000px;}
.w1_c00471{width:1104.000000px;}
.w0_c00471{width:1104.195000px;}
.x0_c00471{left:0.000000px;}
.x1_c00471{left:15.000000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws0_c00471{word-spacing:0.000000pt;}
.fs0_c00471{font-size:533.333333pt;}
.y0_c00471{bottom:0.000000pt;}
.y1_c00471{bottom:13.333333pt;}
.h2_c00471{height:479.947917pt;}
.h0_c00471{height:1338.626667pt;}
.h1_c00471{height:1338.666667pt;}
.w1_c00471{width:981.333333pt;}
.w0_c00471{width:981.506667pt;}
.x0_c00471{left:0.000000pt;}
.x1_c00471{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0e1d57eb773c9d0bd9b24ec.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.109863;font-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_c00472{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);}
.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;}
.fs0_c00472{font-size:600.000000px;}
.y0_c00472{bottom:0.000000px;}
.y1_c00472{bottom:15.000000px;}
.h2_c00472{height:539.941406px;}
.h0_c00472{height:1515.450000px;}
.h1_c00472{height:1515.750000px;}
.w0_c00472{width:1088.640000px;}
.w1_c00472{width:1089.000000px;}
.x0_c00472{left:0.000000px;}
.x1_c00472{left:15.000000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws0_c00472{word-spacing:0.000000pt;}
.fs0_c00472{font-size:533.333333pt;}
.y0_c00472{bottom:0.000000pt;}
.y1_c00472{bottom:13.333333pt;}
.h2_c00472{height:479.947917pt;}
.h0_c00472{height:1347.066667pt;}
.h1_c00472{height:1347.333333pt;}
.w0_c00472{width:967.680000pt;}
.w1_c00472{width:968.000000pt;}
.x0_c00472{left:0.000000pt;}
.x1_c00472{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8614ede25905ee44736a3ac5.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.109863;font-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_c00473{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma_c00473{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb_c00473{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.m17_c00473{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m13_c00473{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m11_c00473{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);}
.m16_c00473{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c00473{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);}
.m2_c00473{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00473{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);}
.mc_c00473{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c00473{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10_c00473{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m14_c00473{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);}
.m19_c00473{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);}
.m8_c00473{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m18_c00473{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m12_c00473{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m5_c00473{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c00473{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m15_c00473{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m3_c00473{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.mf_c00473{transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);}
.m7_c00473{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.m6_c00473{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m1_c00473{transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);}
.v1_c00473{vertical-align:-3.420000px;}
.v0_c00473{vertical-align:0.000000px;}
.ls1_c00473{letter-spacing:0.000000px;}
.ls0_c00473{letter-spacing:274.016700px;}
.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;}
.fc0_c00473{color:transparent;}
.fs4_c00473{font-size:3.456000px;}
.fs7_c00473{font-size:6.000000px;}
.fsb_c00473{font-size:6.900000px;}
.fs2_c00473{font-size:10.380000px;}
.fs3_c00473{font-size:13.800000px;}
.fs5_c00473{font-size:17.280000px;}
.fs1_c00473{font-size:20.760000px;}
.fs6_c00473{font-size:24.180000px;}
.fse_c00473{font-size:27.660000px;}
.fs0_c00473{font-size:31.080000px;}
.fsd_c00473{font-size:38.040000px;}
.fs9_c00473{font-size:55.320000px;}
.fsc_c00473{font-size:58.740000px;}
.fsa_c00473{font-size:65.640000px;}
.fs8_c00473{font-size:93.300000px;}
.y0_c00473{bottom:0.000000px;}
.y23_c00473{bottom:90.720000px;}
.y25_c00473{bottom:94.170000px;}
.y24_c00473{bottom:95.040000px;}
.y21_c00473{bottom:107.130000px;}
.y22_c00473{bottom:110.595000px;}
.y20_c00473{bottom:324.870000px;}
.y1f_c00473{bottom:636.765000px;}
.y1d_c00473{bottom:648.000000px;}
.y1e_c00473{bottom:650.595000px;}
.y1c_c00473{bottom:651.450000px;}
.y1b_c00473{bottom:652.320000px;}
.y17_c00473{bottom:653.190000px;}
.y15_c00473{bottom:654.045000px;}
.y16_c00473{bottom:654.915000px;}
.y1a_c00473{bottom:656.640000px;}
.y18_c00473{bottom:664.410000px;}
.y19_c00473{bottom:668.730000px;}
.y14_c00473{bottom:678.240000px;}
.y13_c00473{bottom:679.110000px;}
.y12_c00473{bottom:691.200000px;}
.y11_c00473{bottom:695.520000px;}
.yd_c00473{bottom:696.390000px;}
.y10_c00473{bottom:697.245000px;}
.yf_c00473{bottom:702.435000px;}
.yc_c00473{bottom:703.290000px;}
.ye_c00473{bottom:704.160000px;}
.ya_c00473{bottom:711.930000px;}
.y9_c00473{bottom:714.525000px;}
.yb_c00473{bottom:725.760000px;}
.y8_c00473{bottom:733.530000px;}
.y7_c00473{bottom:1100.730000px;}
.y6_c00473{bottom:1289.955000px;}
.y5_c00473{bottom:1296.870000px;}
.y2_c00473{bottom:1410.045000px;}
.y4_c00473{bottom:1414.365000px;}
.y3_c00473{bottom:1419.555000px;}
.y1_c00473{bottom:1438.560000px;}
.h6_c00473{height:3.110063px;}
.h9_c00473{height:5.399414px;}
.hd_c00473{height:6.209326px;}
.h4_c00473{height:9.340986px;}
.h5_c00473{height:12.418652px;}
.h7_c00473{height:15.550313px;}
.h3_c00473{height:18.681973px;}
.h8_c00473{height:21.759639px;}
.h10_c00473{height:24.891299px;}
.h2_c00473{height:27.968965px;}
.hf_c00473{height:34.232285px;}
.hb_c00473{height:49.782598px;}
.he_c00473{height:52.860264px;}
.hc_c00473{height:59.069590px;}
.ha_c00473{height:83.960889px;}
.h0_c00473{height:1505.955000px;}
.h1_c00473{height:1506.000000px;}
.w1_c00473{width:1104.000000px;}
.w0_c00473{width:1104.195000px;}
.x0_c00473{left:0.000000px;}
.x26_c00473{left:12.090000px;}
.x27_c00473{left:25.050000px;}
.x28_c00473{left:38.010000px;}
.x23_c00473{left:64.800000px;}
.x24_c00473{left:82.080000px;}
.x25_c00473{left:90.720000px;}
.x5_c00473{left:138.240000px;}
.x6_c00473{left:152.070000px;}
.x13_c00473{left:155.520000px;}
.x14_c00473{left:163.290000px;}
.x7_c00473{left:192.675000px;}
.x22_c00473{left:230.685000px;}
.x15_c00473{left:237.600000px;}
.x16_c00473{left:255.750000px;}
.x1_c00473{left:259.200000px;}
.x17_c00473{left:260.925000px;}
.x9_c00473{left:266.115000px;}
.xa_c00473{left:282.525000px;}
.x2_c00473{left:377.565000px;}
.x4_c00473{left:444.960000px;}
.x3_c00473{left:448.410000px;}
.x8_c00473{left:551.235000px;}
.xc_c00473{left:637.634592px;}
.xb_c00473{left:643.680000px;}
.x18_c00473{left:655.770000px;}
.x1d_c00473{left:657.510000px;}
.x1b_c00473{left:663.555000px;}
.x1c_c00473{left:677.370000px;}
.x19_c00473{left:686.010000px;}
.x11_c00473{left:693.795000px;}
.x12_c00473{left:698.970000px;}
.x1a_c00473{left:701.565000px;}
.x1e_c00473{left:705.030000px;}
.xd_c00473{left:716.250000px;}
.x1f_c00473{left:720.570000px;}
.xe_c00473{left:736.125000px;}
.x20_c00473{left:745.635000px;}
.xf_c00473{left:759.450000px;}
.x21_c00473{left:785.370000px;}
.x10_c00473{left:821.670000px;}
@media print{
.v1_c00473{vertical-align:-3.040000pt;}
.v0_c00473{vertical-align:0.000000pt;}
.ls1_c00473{letter-spacing:0.000000pt;}
.ls0_c00473{letter-spacing:243.570400pt;}
.ws0_c00473{word-spacing:0.000000pt;}
.fs4_c00473{font-size:3.072000pt;}
.fs7_c00473{font-size:5.333333pt;}
.fsb_c00473{font-size:6.133333pt;}
.fs2_c00473{font-size:9.226667pt;}
.fs3_c00473{font-size:12.266667pt;}
.fs5_c00473{font-size:15.360000pt;}
.fs1_c00473{font-size:18.453333pt;}
.fs6_c00473{font-size:21.493333pt;}
.fse_c00473{font-size:24.586667pt;}
.fs0_c00473{font-size:27.626667pt;}
.fsd_c00473{font-size:33.813333pt;}
.fs9_c00473{font-size:49.173333pt;}
.fsc_c00473{font-size:52.213333pt;}
.fsa_c00473{font-size:58.346667pt;}
.fs8_c00473{font-size:82.933333pt;}
.y0_c00473{bottom:0.000000pt;}
.y23_c00473{bottom:80.640000pt;}
.y25_c00473{bottom:83.706667pt;}
.y24_c00473{bottom:84.480000pt;}
.y21_c00473{bottom:95.226667pt;}
.y22_c00473{bottom:98.306667pt;}
.y20_c00473{bottom:288.773333pt;}
.y1f_c00473{bottom:566.013333pt;}
.y1d_c00473{bottom:576.000000pt;}
.y1e_c00473{bottom:578.306667pt;}
.y1c_c00473{bottom:579.066667pt;}
.y1b_c00473{bottom:579.840000pt;}
.y17_c00473{bottom:580.613333pt;}
.y15_c00473{bottom:581.373333pt;}
.y16_c00473{bottom:582.146667pt;}
.y1a_c00473{bottom:583.680000pt;}
.y18_c00473{bottom:590.586667pt;}
.y19_c00473{bottom:594.426667pt;}
.y14_c00473{bottom:602.880000pt;}
.y13_c00473{bottom:603.653333pt;}
.y12_c00473{bottom:614.400000pt;}
.y11_c00473{bottom:618.240000pt;}
.yd_c00473{bottom:619.013333pt;}
.y10_c00473{bottom:619.773333pt;}
.yf_c00473{bottom:624.386667pt;}
.yc_c00473{bottom:625.146667pt;}
.ye_c00473{bottom:625.920000pt;}
.ya_c00473{bottom:632.826667pt;}
.y9_c00473{bottom:635.133333pt;}
.yb_c00473{bottom:645.120000pt;}
.y8_c00473{bottom:652.026667pt;}
.y7_c00473{bottom:978.426667pt;}
.y6_c00473{bottom:1146.626667pt;}
.y5_c00473{bottom:1152.773333pt;}
.y2_c00473{bottom:1253.373333pt;}
.y4_c00473{bottom:1257.213333pt;}
.y3_c00473{bottom:1261.826667pt;}
.y1_c00473{bottom:1278.720000pt;}
.h6_c00473{height:2.764500pt;}
.h9_c00473{height:4.799479pt;}
.hd_c00473{height:5.519401pt;}
.h4_c00473{height:8.303099pt;}
.h5_c00473{height:11.038802pt;}
.h7_c00473{height:13.822500pt;}
.h3_c00473{height:16.606198pt;}
.h8_c00473{height:19.341901pt;}
.h10_c00473{height:22.125599pt;}
.h2_c00473{height:24.861302pt;}
.hf_c00473{height:30.428698pt;}
.hb_c00473{height:44.251198pt;}
.he_c00473{height:46.986901pt;}
.hc_c00473{height:52.506302pt;}
.ha_c00473{height:74.631901pt;}
.h0_c00473{height:1338.626667pt;}
.h1_c00473{height:1338.666667pt;}
.w1_c00473{width:981.333333pt;}
.w0_c00473{width:981.506667pt;}
.x0_c00473{left:0.000000pt;}
.x26_c00473{left:10.746667pt;}
.x27_c00473{left:22.266667pt;}
.x28_c00473{left:33.786667pt;}
.x23_c00473{left:57.600000pt;}
.x24_c00473{left:72.960000pt;}
.x25_c00473{left:80.640000pt;}
.x5_c00473{left:122.880000pt;}
.x6_c00473{left:135.173333pt;}
.x13_c00473{left:138.240000pt;}
.x14_c00473{left:145.146667pt;}
.x7_c00473{left:171.266667pt;}
.x22_c00473{left:205.053333pt;}
.x15_c00473{left:211.200000pt;}
.x16_c00473{left:227.333333pt;}
.x1_c00473{left:230.400000pt;}
.x17_c00473{left:231.933333pt;}
.x9_c00473{left:236.546667pt;}
.xa_c00473{left:251.133333pt;}
.x2_c00473{left:335.613333pt;}
.x4_c00473{left:395.520000pt;}
.x3_c00473{left:398.586667pt;}
.x8_c00473{left:489.986667pt;}
.xc_c00473{left:566.786304pt;}
.xb_c00473{left:572.160000pt;}
.x18_c00473{left:582.906667pt;}
.x1d_c00473{left:584.453333pt;}
.x1b_c00473{left:589.826667pt;}
.x1c_c00473{left:602.106667pt;}
.x19_c00473{left:609.786667pt;}
.x11_c00473{left:616.706667pt;}
.x12_c00473{left:621.306667pt;}
.x1a_c00473{left:623.613333pt;}
.x1e_c00473{left:626.693333pt;}
.xd_c00473{left:636.666667pt;}
.x1f_c00473{left:640.506667pt;}
.xe_c00473{left:654.333333pt;}
.x20_c00473{left:662.786667pt;}
.xf_c00473{left:675.066667pt;}
.x21_c00473{left:698.106667pt;}
.x10_c00473{left:730.373333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e3fa667aec4db95e008d0ff.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.109863;font-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_c00474{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c00474{transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);}
.ma_c00474{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m6_c00474{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);}
.mb_c00474{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c00474{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);}
.m4_c00474{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c00474{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2_c00474{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.md_c00474{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3_c00474{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m8_c00474{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m1_c00474{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc_c00474{transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127500,0.000000,0.000000,0.250000,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;}
.fs2_c00474{font-size:3.456000px;}
.fs0_c00474{font-size:6.000000px;}
.fs4_c00474{font-size:6.900000px;}
.fs1_c00474{font-size:10.380000px;}
.fs5_c00474{font-size:13.800000px;}
.fs3_c00474{font-size:17.280000px;}
.fs8_c00474{font-size:20.760000px;}
.fs7_c00474{font-size:24.180000px;}
.fs6_c00474{font-size:27.660000px;}
.y0_c00474{bottom:0.000000px;}
.y10_c00474{bottom:996.195000px;}
.yd_c00474{bottom:1110.240000px;}
.ye_c00474{bottom:1111.110000px;}
.yf_c00474{bottom:1126.650000px;}
.yb_c00474{bottom:1238.115000px;}
.yc_c00474{bottom:1241.565000px;}
.y9_c00474{bottom:1430.790000px;}
.ya_c00474{bottom:1433.370000px;}
.y8_c00474{bottom:1466.205000px;}
.y7_c00474{bottom:1467.930000px;}
.y6_c00474{bottom:1468.800000px;}
.y4_c00474{bottom:1469.670000px;}
.y5_c00474{bottom:1471.395000px;}
.y3_c00474{bottom:1475.715000px;}
.y1_c00474{bottom:1488.675000px;}
.y2_c00474{bottom:1489.530000px;}
.h4_c00474{height:3.110063px;}
.h2_c00474{height:5.399414px;}
.h6_c00474{height:6.209326px;}
.h3_c00474{height:9.340986px;}
.h7_c00474{height:12.418652px;}
.h5_c00474{height:15.550313px;}
.ha_c00474{height:18.681973px;}
.h9_c00474{height:21.759639px;}
.h8_c00474{height:24.891299px;}
.h0_c00474{height:1515.450000px;}
.h1_c00474{height:1515.750000px;}
.w0_c00474{width:1088.640000px;}
.w1_c00474{width:1089.000000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:278.205000px;}
.xb_c00474{left:596.160000px;}
.xc_c00474{left:613.440000px;}
.x3_c00474{left:747.360000px;}
.x4_c00474{left:901.155000px;}
.x5_c00474{left:923.610000px;}
.x6_c00474{left:930.525000px;}
.x7_c00474{left:941.760000px;}
.x8_c00474{left:958.170000px;}
.x9_c00474{left:972.000000px;}
.x11_c00474{left:994.470000px;}
.xd_c00474{left:1010.880000px;}
.xf_c00474{left:1016.070000px;}
.xa_c00474{left:1017.795000px;}
.xe_c00474{left:1020.390000px;}
.x10_c00474{left:1026.435000px;}
.x2_c00474{left:1028.160000px;}
.x12_c00474{left:1074.810000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ws0_c00474{word-spacing:0.000000pt;}
.fs2_c00474{font-size:3.072000pt;}
.fs0_c00474{font-size:5.333333pt;}
.fs4_c00474{font-size:6.133333pt;}
.fs1_c00474{font-size:9.226667pt;}
.fs5_c00474{font-size:12.266667pt;}
.fs3_c00474{font-size:15.360000pt;}
.fs8_c00474{font-size:18.453333pt;}
.fs7_c00474{font-size:21.493333pt;}
.fs6_c00474{font-size:24.586667pt;}
.y0_c00474{bottom:0.000000pt;}
.y10_c00474{bottom:885.506667pt;}
.yd_c00474{bottom:986.880000pt;}
.ye_c00474{bottom:987.653333pt;}
.yf_c00474{bottom:1001.466667pt;}
.yb_c00474{bottom:1100.546667pt;}
.yc_c00474{bottom:1103.613333pt;}
.y9_c00474{bottom:1271.813333pt;}
.ya_c00474{bottom:1274.106667pt;}
.y8_c00474{bottom:1303.293333pt;}
.y7_c00474{bottom:1304.826667pt;}
.y6_c00474{bottom:1305.600000pt;}
.y4_c00474{bottom:1306.373333pt;}
.y5_c00474{bottom:1307.906667pt;}
.y3_c00474{bottom:1311.746667pt;}
.y1_c00474{bottom:1323.266667pt;}
.y2_c00474{bottom:1324.026667pt;}
.h4_c00474{height:2.764500pt;}
.h2_c00474{height:4.799479pt;}
.h6_c00474{height:5.519401pt;}
.h3_c00474{height:8.303099pt;}
.h7_c00474{height:11.038802pt;}
.h5_c00474{height:13.822500pt;}
.ha_c00474{height:16.606198pt;}
.h9_c00474{height:19.341901pt;}
.h8_c00474{height:22.125599pt;}
.h0_c00474{height:1347.066667pt;}
.h1_c00474{height:1347.333333pt;}
.w0_c00474{width:967.680000pt;}
.w1_c00474{width:968.000000pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:247.293333pt;}
.xb_c00474{left:529.920000pt;}
.xc_c00474{left:545.280000pt;}
.x3_c00474{left:664.320000pt;}
.x4_c00474{left:801.026667pt;}
.x5_c00474{left:820.986667pt;}
.x6_c00474{left:827.133333pt;}
.x7_c00474{left:837.120000pt;}
.x8_c00474{left:851.706667pt;}
.x9_c00474{left:864.000000pt;}
.x11_c00474{left:883.973333pt;}
.xd_c00474{left:898.560000pt;}
.xf_c00474{left:903.173333pt;}
.xa_c00474{left:904.706667pt;}
.xe_c00474{left:907.013333pt;}
.x10_c00474{left:912.386667pt;}
.x2_c00474{left:913.920000pt;}
.x12_c00474{left:955.386667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00475;src:url('chunks/assets/font_a6424c6f37a8937503e8c715.woff2')format("woff");}.ff1_c00475{font-family:ff1_c00475;line-height:1.109863;font-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_c00475{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);}
.v0_c00475{vertical-align:0.000000px;}
.ls0_c00475{letter-spacing:0.000000px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00475{word-spacing:0.000000px;}
.fc0_c00475{color:transparent;}
.fs0_c00475{font-size:600.000000px;}
.y0_c00475{bottom:0.000000px;}
.y1_c00475{bottom:15.000000px;}
.h2_c00475{height:539.941406px;}
.h0_c00475{height:1505.955000px;}
.h1_c00475{height:1506.000000px;}
.w1_c00475{width:1104.000000px;}
.w0_c00475{width:1104.195000px;}
.x0_c00475{left:0.000000px;}
.x1_c00475{left:15.000000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls0_c00475{letter-spacing:0.000000pt;}
.ws0_c00475{word-spacing:0.000000pt;}
.fs0_c00475{font-size:533.333333pt;}
.y0_c00475{bottom:0.000000pt;}
.y1_c00475{bottom:13.333333pt;}
.h2_c00475{height:479.947917pt;}
.h0_c00475{height:1338.626667pt;}
.h1_c00475{height:1338.666667pt;}
.w1_c00475{width:981.333333pt;}
.w0_c00475{width:981.506667pt;}
.x0_c00475{left:0.000000pt;}
.x1_c00475{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b33fc0f0e23ca9bbcb9920a7.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.109863;font-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_c00476{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);}
.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;}
.fs0_c00476{font-size:600.000000px;}
.y0_c00476{bottom:0.000000px;}
.y1_c00476{bottom:15.000000px;}
.h2_c00476{height:539.941406px;}
.h0_c00476{height:1515.450000px;}
.h1_c00476{height:1515.750000px;}
.w0_c00476{width:1088.640000px;}
.w1_c00476{width:1089.000000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:15.000000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls0_c00476{letter-spacing:0.000000pt;}
.ws0_c00476{word-spacing:0.000000pt;}
.fs0_c00476{font-size:533.333333pt;}
.y0_c00476{bottom:0.000000pt;}
.y1_c00476{bottom:13.333333pt;}
.h2_c00476{height:479.947917pt;}
.h0_c00476{height:1347.066667pt;}
.h1_c00476{height:1347.333333pt;}
.w0_c00476{width:967.680000pt;}
.w1_c00476{width:968.000000pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bcaeef6f419f178e7fa3b15e.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.109863;font-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_c00477{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);}
.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:600.000000px;}
.y0_c00477{bottom:0.000000px;}
.y1_c00477{bottom:15.000000px;}
.h2_c00477{height:539.941406px;}
.h0_c00477{height:1505.955000px;}
.h1_c00477{height:1506.000000px;}
.w1_c00477{width:1104.000000px;}
.w0_c00477{width:1104.195000px;}
.x0_c00477{left:0.000000px;}
.x1_c00477{left:15.000000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws0_c00477{word-spacing:0.000000pt;}
.fs0_c00477{font-size:533.333333pt;}
.y0_c00477{bottom:0.000000pt;}
.y1_c00477{bottom:13.333333pt;}
.h2_c00477{height:479.947917pt;}
.h0_c00477{height:1338.626667pt;}
.h1_c00477{height:1338.666667pt;}
.w1_c00477{width:981.333333pt;}
.w0_c00477{width:981.506667pt;}
.x0_c00477{left:0.000000pt;}
.x1_c00477{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b69553d5497ecbaaa1a972c3.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.109863;font-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_c00478{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m0_c00478{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf_c00478{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);}
.m8_c00478{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);}
.ma_c00478{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);}
.m5_c00478{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00478{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);}
.m7_c00478{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb_c00478{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c00478{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);}
.m4_c00478{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);}
.m6_c00478{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me_c00478{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);}
.mc_c00478{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.md_c00478{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.m1_c00478{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m3_c00478{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,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;}
.fs2_c00478{font-size:3.456000px;}
.fs0_c00478{font-size:6.000000px;}
.fs4_c00478{font-size:6.900000px;}
.fs1_c00478{font-size:10.380000px;}
.fs3_c00478{font-size:13.800000px;}
.fs5_c00478{font-size:17.280000px;}
.fs9_c00478{font-size:27.660000px;}
.fsa_c00478{font-size:44.940000px;}
.fs7_c00478{font-size:55.320000px;}
.fs8_c00478{font-size:62.220000px;}
.fs6_c00478{font-size:65.640000px;}
.y0_c00478{bottom:0.000000px;}
.y12_c00478{bottom:645.405000px;}
.y10_c00478{bottom:647.130000px;}
.ye_c00478{bottom:648.000000px;}
.yf_c00478{bottom:649.725000px;}
.y11_c00478{bottom:658.365000px;}
.yb_c00478{bottom:1465.350000px;}
.ya_c00478{bottom:1466.205000px;}
.yc_c00478{bottom:1467.075000px;}
.y9_c00478{bottom:1467.930000px;}
.yd_c00478{bottom:1468.800000px;}
.y8_c00478{bottom:1469.670000px;}
.y6_c00478{bottom:1470.525000px;}
.y7_c00478{bottom:1471.395000px;}
.y4_c00478{bottom:1473.990000px;}
.y5_c00478{bottom:1474.845000px;}
.y3_c00478{bottom:1475.715000px;}
.y1_c00478{bottom:1487.805000px;}
.y2_c00478{bottom:1489.530000px;}
.h4_c00478{height:3.110063px;}
.h2_c00478{height:5.399414px;}
.h6_c00478{height:6.209326px;}
.h3_c00478{height:9.340986px;}
.h5_c00478{height:12.418652px;}
.h7_c00478{height:15.550313px;}
.hb_c00478{height:24.891299px;}
.hc_c00478{height:40.441611px;}
.h9_c00478{height:49.782598px;}
.ha_c00478{height:55.991924px;}
.h8_c00478{height:59.069590px;}
.h0_c00478{height:1515.450000px;}
.h1_c00478{height:1515.750000px;}
.w0_c00478{width:1088.640000px;}
.w1_c00478{width:1089.000000px;}
.x0_c00478{left:0.000000px;}
.x1_c00478{left:279.075000px;}
.x14_c00478{left:613.440000px;}
.x15_c00478{left:659.235000px;}
.x16_c00478{left:678.240000px;}
.x17_c00478{left:732.675000px;}
.x3_c00478{left:747.360000px;}
.x6_c00478{left:901.155000px;}
.x7_c00478{left:922.755000px;}
.x8_c00478{left:926.205000px;}
.x4_c00478{left:927.930000px;}
.x9_c00478{left:930.525000px;}
.xa_c00478{left:933.120000px;}
.xb_c00478{left:934.845000px;}
.xc_c00478{left:938.310000px;}
.x5_c00478{left:945.210000px;}
.xd_c00478{left:947.805000px;}
.xe_c00478{left:964.230000px;}
.xf_c00478{left:971.130000px;}
.x10_c00478{left:976.320000px;}
.x11_c00478{left:987.555000px;}
.x12_c00478{left:991.005000px;}
.x13_c00478{left:1024.710000px;}
.x2_c00478{left:1028.160000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws0_c00478{word-spacing:0.000000pt;}
.fs2_c00478{font-size:3.072000pt;}
.fs0_c00478{font-size:5.333333pt;}
.fs4_c00478{font-size:6.133333pt;}
.fs1_c00478{font-size:9.226667pt;}
.fs3_c00478{font-size:12.266667pt;}
.fs5_c00478{font-size:15.360000pt;}
.fs9_c00478{font-size:24.586667pt;}
.fsa_c00478{font-size:39.946667pt;}
.fs7_c00478{font-size:49.173333pt;}
.fs8_c00478{font-size:55.306667pt;}
.fs6_c00478{font-size:58.346667pt;}
.y0_c00478{bottom:0.000000pt;}
.y12_c00478{bottom:573.693333pt;}
.y10_c00478{bottom:575.226667pt;}
.ye_c00478{bottom:576.000000pt;}
.yf_c00478{bottom:577.533333pt;}
.y11_c00478{bottom:585.213333pt;}
.yb_c00478{bottom:1302.533333pt;}
.ya_c00478{bottom:1303.293333pt;}
.yc_c00478{bottom:1304.066667pt;}
.y9_c00478{bottom:1304.826667pt;}
.yd_c00478{bottom:1305.600000pt;}
.y8_c00478{bottom:1306.373333pt;}
.y6_c00478{bottom:1307.133333pt;}
.y7_c00478{bottom:1307.906667pt;}
.y4_c00478{bottom:1310.213333pt;}
.y5_c00478{bottom:1310.973333pt;}
.y3_c00478{bottom:1311.746667pt;}
.y1_c00478{bottom:1322.493333pt;}
.y2_c00478{bottom:1324.026667pt;}
.h4_c00478{height:2.764500pt;}
.h2_c00478{height:4.799479pt;}
.h6_c00478{height:5.519401pt;}
.h3_c00478{height:8.303099pt;}
.h5_c00478{height:11.038802pt;}
.h7_c00478{height:13.822500pt;}
.hb_c00478{height:22.125599pt;}
.hc_c00478{height:35.948099pt;}
.h9_c00478{height:44.251198pt;}
.ha_c00478{height:49.770599pt;}
.h8_c00478{height:52.506302pt;}
.h0_c00478{height:1347.066667pt;}
.h1_c00478{height:1347.333333pt;}
.w0_c00478{width:967.680000pt;}
.w1_c00478{width:968.000000pt;}
.x0_c00478{left:0.000000pt;}
.x1_c00478{left:248.066667pt;}
.x14_c00478{left:545.280000pt;}
.x15_c00478{left:585.986667pt;}
.x16_c00478{left:602.880000pt;}
.x17_c00478{left:651.266667pt;}
.x3_c00478{left:664.320000pt;}
.x6_c00478{left:801.026667pt;}
.x7_c00478{left:820.226667pt;}
.x8_c00478{left:823.293333pt;}
.x4_c00478{left:824.826667pt;}
.x9_c00478{left:827.133333pt;}
.xa_c00478{left:829.440000pt;}
.xb_c00478{left:830.973333pt;}
.xc_c00478{left:834.053333pt;}
.x5_c00478{left:840.186667pt;}
.xd_c00478{left:842.493333pt;}
.xe_c00478{left:857.093333pt;}
.xf_c00478{left:863.226667pt;}
.x10_c00478{left:867.840000pt;}
.x11_c00478{left:877.826667pt;}
.x12_c00478{left:880.893333pt;}
.x13_c00478{left:910.853333pt;}
.x2_c00478{left:913.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_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_2106846785a4d240010cfe1c.woff2')format("woff");}.ff1_c00479{font-family:ff1_c00479;line-height:1.109863;font-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.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c00479{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);}
.m1_c00479{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m0_c00479{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,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;}
.fs2_c00479{font-size:6.000000px;}
.fs0_c00479{font-size:17.280000px;}
.fs1_c00479{font-size:51.840000px;}
.y0_c00479{bottom:0.000000px;}
.y4_c00479{bottom:1383.270000px;}
.y2_c00479{bottom:1415.235000px;}
.y1_c00479{bottom:1422.150000px;}
.y3_c00479{bottom:1423.875000px;}
.h4_c00479{height:5.399414px;}
.h2_c00479{height:15.550313px;}
.h3_c00479{height:46.650937px;}
.h0_c00479{height:1505.955000px;}
.h1_c00479{height:1506.000000px;}
.w1_c00479{width:1104.000000px;}
.w0_c00479{width:1104.195000px;}
.x0_c00479{left:0.000000px;}
.x1_c00479{left:261.795000px;}
.x4_c00479{left:416.445000px;}
.x2_c00479{left:891.645000px;}
.x3_c00479{left:943.485000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws0_c00479{word-spacing:0.000000pt;}
.fs2_c00479{font-size:5.333333pt;}
.fs0_c00479{font-size:15.360000pt;}
.fs1_c00479{font-size:46.080000pt;}
.y0_c00479{bottom:0.000000pt;}
.y4_c00479{bottom:1229.573333pt;}
.y2_c00479{bottom:1257.986667pt;}
.y1_c00479{bottom:1264.133333pt;}
.y3_c00479{bottom:1265.666667pt;}
.h4_c00479{height:4.799479pt;}
.h2_c00479{height:13.822500pt;}
.h3_c00479{height:41.467500pt;}
.h0_c00479{height:1338.626667pt;}
.h1_c00479{height:1338.666667pt;}
.w1_c00479{width:981.333333pt;}
.w0_c00479{width:981.506667pt;}
.x0_c00479{left:0.000000pt;}
.x1_c00479{left:232.706667pt;}
.x4_c00479{left:370.173333pt;}
.x2_c00479{left:792.573333pt;}
.x3_c00479{left:838.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff6b2221149583eb6ed2604f.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.109863;font-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_c00480{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);}
.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;}
.fs0_c00480{font-size:600.000000px;}
.y0_c00480{bottom:0.000000px;}
.y1_c00480{bottom:15.000000px;}
.h2_c00480{height:539.941406px;}
.h0_c00480{height:1515.450000px;}
.h1_c00480{height:1515.750000px;}
.w0_c00480{width:1088.640000px;}
.w1_c00480{width:1089.000000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:15.000000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ws0_c00480{word-spacing:0.000000pt;}
.fs0_c00480{font-size:533.333333pt;}
.y0_c00480{bottom:0.000000pt;}
.y1_c00480{bottom:13.333333pt;}
.h2_c00480{height:479.947917pt;}
.h0_c00480{height:1347.066667pt;}
.h1_c00480{height:1347.333333pt;}
.w0_c00480{width:967.680000pt;}
.w1_c00480{width:968.000000pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b146099891be36266a9d26b1.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.109863;font-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.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);}
.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;}
.fs0_c00481{font-size:600.000000px;}
.y0_c00481{bottom:0.000000px;}
.y1_c00481{bottom:15.000000px;}
.h2_c00481{height:539.941406px;}
.h0_c00481{height:1505.955000px;}
.h1_c00481{height:1506.000000px;}
.w1_c00481{width:1104.000000px;}
.w0_c00481{width:1104.195000px;}
.x0_c00481{left:0.000000px;}
.x1_c00481{left:15.000000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:0.000000pt;}
.fs0_c00481{font-size:533.333333pt;}
.y0_c00481{bottom:0.000000pt;}
.y1_c00481{bottom:13.333333pt;}
.h2_c00481{height:479.947917pt;}
.h0_c00481{height:1338.626667pt;}
.h1_c00481{height:1338.666667pt;}
.w1_c00481{width:981.333333pt;}
.w0_c00481{width:981.506667pt;}
.x0_c00481{left:0.000000pt;}
.x1_c00481{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27e4d0bc8aece3c93c96117d.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.109863;font-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_c00482{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.me_c00482{transform:matrix(0.087825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087825,0.000000,0.000000,0.250000,0,0);}
.m0_c00482{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c00482{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m5_c00482{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.m8_c00482{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c00482{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m6_c00482{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c00482{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc_c00482{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);}
.mf_c00482{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);}
.ma_c00482{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c00482{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m12_c00482{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb_c00482{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4_c00482{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);}
.m2_c00482{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.md_c00482{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m1_c00482{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,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;}
.fs5_c00482{font-size:3.456000px;}
.fs0_c00482{font-size:6.000000px;}
.fs6_c00482{font-size:6.900000px;}
.fs1_c00482{font-size:10.380000px;}
.fs2_c00482{font-size:13.800000px;}
.fs7_c00482{font-size:17.280000px;}
.fs4_c00482{font-size:20.760000px;}
.fs3_c00482{font-size:24.180000px;}
.fsa_c00482{font-size:38.040000px;}
.fs9_c00482{font-size:41.460000px;}
.fs8_c00482{font-size:96.780000px;}
.y0_c00482{bottom:0.000000px;}
.y14_c00482{bottom:542.595000px;}
.y16_c00482{bottom:543.450000px;}
.y11_c00482{bottom:547.770000px;}
.y15_c00482{bottom:549.510000px;}
.y13_c00482{bottom:552.960000px;}
.y12_c00482{bottom:555.555000px;}
.yf_c00482{bottom:591.840000px;}
.y10_c00482{bottom:594.435000px;}
.yc_c00482{bottom:1103.325000px;}
.ye_c00482{bottom:1130.115000px;}
.yd_c00482{bottom:1130.970000px;}
.y8_c00482{bottom:1232.070000px;}
.yb_c00482{bottom:1251.930000px;}
.ya_c00482{bottom:1385.850000px;}
.y9_c00482{bottom:1387.590000px;}
.y6_c00482{bottom:1467.075000px;}
.y3_c00482{bottom:1467.930000px;}
.y5_c00482{bottom:1469.670000px;}
.y4_c00482{bottom:1470.525000px;}
.y7_c00482{bottom:1473.990000px;}
.y1_c00482{bottom:1487.805000px;}
.y2_c00482{bottom:1489.530000px;}
.h7_c00482{height:3.110063px;}
.h2_c00482{height:5.399414px;}
.h8_c00482{height:6.209326px;}
.h3_c00482{height:9.340986px;}
.h4_c00482{height:12.418652px;}
.h9_c00482{height:15.550313px;}
.h6_c00482{height:18.681973px;}
.h5_c00482{height:21.759639px;}
.hc_c00482{height:34.232285px;}
.hb_c00482{height:37.309951px;}
.ha_c00482{height:87.092549px;}
.h0_c00482{height:1515.450000px;}
.h1_c00482{height:1515.750000px;}
.w0_c00482{width:1088.640000px;}
.w1_c00482{width:1089.000000px;}
.x0_c00482{left:0.000000px;}
.x1_c00482{left:279.075000px;}
.x3_c00482{left:744.765000px;}
.xb_c00482{left:901.155000px;}
.x4_c00482{left:906.330000px;}
.xc_c00482{left:908.070000px;}
.x15_c00482{left:916.710000px;}
.x16_c00482{left:923.610000px;}
.x5_c00482{left:928.800000px;}
.x6_c00482{left:940.035000px;}
.x7_c00482{left:956.445000px;}
.x8_c00482{left:966.810000px;}
.x9_c00482{left:969.405000px;}
.x13_c00482{left:974.595000px;}
.x17_c00482{left:978.915000px;}
.x14_c00482{left:989.280000px;}
.x10_c00482{left:998.790000px;}
.xa_c00482{left:1017.795000px;}
.x2_c00482{left:1028.160000px;}
.xf_c00482{left:1051.485000px;}
.xd_c00482{left:1059.270000px;}
.x11_c00482{left:1064.445000px;}
.xe_c00482{left:1068.765000px;}
.x12_c00482{left:1083.450000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ws0_c00482{word-spacing:0.000000pt;}
.fs5_c00482{font-size:3.072000pt;}
.fs0_c00482{font-size:5.333333pt;}
.fs6_c00482{font-size:6.133333pt;}
.fs1_c00482{font-size:9.226667pt;}
.fs2_c00482{font-size:12.266667pt;}
.fs7_c00482{font-size:15.360000pt;}
.fs4_c00482{font-size:18.453333pt;}
.fs3_c00482{font-size:21.493333pt;}
.fsa_c00482{font-size:33.813333pt;}
.fs9_c00482{font-size:36.853333pt;}
.fs8_c00482{font-size:86.026667pt;}
.y0_c00482{bottom:0.000000pt;}
.y14_c00482{bottom:482.306667pt;}
.y16_c00482{bottom:483.066667pt;}
.y11_c00482{bottom:486.906667pt;}
.y15_c00482{bottom:488.453333pt;}
.y13_c00482{bottom:491.520000pt;}
.y12_c00482{bottom:493.826667pt;}
.yf_c00482{bottom:526.080000pt;}
.y10_c00482{bottom:528.386667pt;}
.yc_c00482{bottom:980.733333pt;}
.ye_c00482{bottom:1004.546667pt;}
.yd_c00482{bottom:1005.306667pt;}
.y8_c00482{bottom:1095.173333pt;}
.yb_c00482{bottom:1112.826667pt;}
.ya_c00482{bottom:1231.866667pt;}
.y9_c00482{bottom:1233.413333pt;}
.y6_c00482{bottom:1304.066667pt;}
.y3_c00482{bottom:1304.826667pt;}
.y5_c00482{bottom:1306.373333pt;}
.y4_c00482{bottom:1307.133333pt;}
.y7_c00482{bottom:1310.213333pt;}
.y1_c00482{bottom:1322.493333pt;}
.y2_c00482{bottom:1324.026667pt;}
.h7_c00482{height:2.764500pt;}
.h2_c00482{height:4.799479pt;}
.h8_c00482{height:5.519401pt;}
.h3_c00482{height:8.303099pt;}
.h4_c00482{height:11.038802pt;}
.h9_c00482{height:13.822500pt;}
.h6_c00482{height:16.606198pt;}
.h5_c00482{height:19.341901pt;}
.hc_c00482{height:30.428698pt;}
.hb_c00482{height:33.164401pt;}
.ha_c00482{height:77.415599pt;}
.h0_c00482{height:1347.066667pt;}
.h1_c00482{height:1347.333333pt;}
.w0_c00482{width:967.680000pt;}
.w1_c00482{width:968.000000pt;}
.x0_c00482{left:0.000000pt;}
.x1_c00482{left:248.066667pt;}
.x3_c00482{left:662.013333pt;}
.xb_c00482{left:801.026667pt;}
.x4_c00482{left:805.626667pt;}
.xc_c00482{left:807.173333pt;}
.x15_c00482{left:814.853333pt;}
.x16_c00482{left:820.986667pt;}
.x5_c00482{left:825.600000pt;}
.x6_c00482{left:835.586667pt;}
.x7_c00482{left:850.173333pt;}
.x8_c00482{left:859.386667pt;}
.x9_c00482{left:861.693333pt;}
.x13_c00482{left:866.306667pt;}
.x17_c00482{left:870.146667pt;}
.x14_c00482{left:879.360000pt;}
.x10_c00482{left:887.813333pt;}
.xa_c00482{left:904.706667pt;}
.x2_c00482{left:913.920000pt;}
.xf_c00482{left:934.653333pt;}
.xd_c00482{left:941.573333pt;}
.x11_c00482{left:946.173333pt;}
.xe_c00482{left:950.013333pt;}
.x12_c00482{left:963.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce4659709259efa7e4c46a59.woff2')format("woff");}.ff1_c00483{font-family:ff1_c00483;line-height:1.109863;font-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.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);}
.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;}
.fs0_c00483{font-size:600.000000px;}
.y0_c00483{bottom:0.000000px;}
.y1_c00483{bottom:15.000000px;}
.h2_c00483{height:539.941406px;}
.h0_c00483{height:1505.955000px;}
.h1_c00483{height:1506.000000px;}
.w1_c00483{width:1104.000000px;}
.w0_c00483{width:1104.195000px;}
.x0_c00483{left:0.000000px;}
.x1_c00483{left:15.000000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws0_c00483{word-spacing:0.000000pt;}
.fs0_c00483{font-size:533.333333pt;}
.y0_c00483{bottom:0.000000pt;}
.y1_c00483{bottom:13.333333pt;}
.h2_c00483{height:479.947917pt;}
.h0_c00483{height:1338.626667pt;}
.h1_c00483{height:1338.666667pt;}
.w1_c00483{width:981.333333pt;}
.w0_c00483{width:981.506667pt;}
.x0_c00483{left:0.000000pt;}
.x1_c00483{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_962992419240081c8498cd23.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.109863;font-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_c00484{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m0_c00484{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc_c00484{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.md_c00484{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m2_c00484{transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);}
.m9_c00484{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);}
.m12_c00484{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c00484{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00484{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4_c00484{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);}
.m6_c00484{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);}
.ma_c00484{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);}
.m8_c00484{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb_c00484{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3_c00484{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m13_c00484{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1_c00484{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m7_c00484{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.me_c00484{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.mf_c00484{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,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;}
.fs0_c00484{font-size:3.456000px;}
.fs4_c00484{font-size:6.900000px;}
.fs1_c00484{font-size:10.380000px;}
.fs9_c00484{font-size:13.800000px;}
.fsa_c00484{font-size:17.280000px;}
.fs3_c00484{font-size:20.760000px;}
.fsb_c00484{font-size:24.180000px;}
.fs2_c00484{font-size:27.660000px;}
.fs8_c00484{font-size:31.080000px;}
.fs6_c00484{font-size:38.040000px;}
.fs7_c00484{font-size:44.940000px;}
.fs5_c00484{font-size:55.320000px;}
.y0_c00484{bottom:0.000000px;}
.y13_c00484{bottom:942.630000px;}
.y12_c00484{bottom:950.400000px;}
.y11_c00484{bottom:1246.755000px;}
.y10_c00484{bottom:1252.800000px;}
.yf_c00484{bottom:1255.395000px;}
.y8_c00484{bottom:1400.550000px;}
.ye_c00484{bottom:1408.320000px;}
.yd_c00484{bottom:1409.190000px;}
.y7_c00484{bottom:1416.090000px;}
.y9_c00484{bottom:1429.920000px;}
.yb_c00484{bottom:1436.835000px;}
.ya_c00484{bottom:1448.925000px;}
.yc_c00484{bottom:1449.795000px;}
.y4_c00484{bottom:1464.480000px;}
.y5_c00484{bottom:1465.350000px;}
.y3_c00484{bottom:1467.930000px;}
.y6_c00484{bottom:1468.800000px;}
.y1_c00484{bottom:1486.950000px;}
.y2_c00484{bottom:1489.530000px;}
.h2_c00484{height:3.110063px;}
.h6_c00484{height:6.209326px;}
.h3_c00484{height:9.340986px;}
.hb_c00484{height:12.418652px;}
.hc_c00484{height:15.550313px;}
.h5_c00484{height:18.681973px;}
.hd_c00484{height:21.759639px;}
.h4_c00484{height:24.891299px;}
.ha_c00484{height:27.968965px;}
.h8_c00484{height:34.232285px;}
.h9_c00484{height:40.441611px;}
.h7_c00484{height:49.782598px;}
.h0_c00484{height:1515.450000px;}
.h1_c00484{height:1515.750000px;}
.w0_c00484{width:1088.640000px;}
.w1_c00484{width:1089.000000px;}
.x0_c00484{left:0.000000px;}
.x10_c00484{left:146.880000px;}
.xb_c00484{left:153.795000px;}
.xa_c00484{left:165.885000px;}
.xc_c00484{left:172.800000px;}
.x1_c00484{left:278.205000px;}
.xd_c00484{left:438.915000px;}
.x3_c00484{left:901.155000px;}
.x11_c00484{left:925.350000px;}
.x12_c00484{left:935.715000px;}
.x4_c00484{left:958.170000px;}
.x5_c00484{left:970.275000px;}
.x6_c00484{left:972.000000px;}
.xf_c00484{left:974.595000px;}
.xe_c00484{left:976.320000px;}
.x7_c00484{left:990.150000px;}
.x8_c00484{left:993.600000px;}
.x9_c00484{left:1024.710000px;}
.x2_c00484{left:1028.160000px;}
.x13_c00484{left:1040.250000px;}
.x14_c00484{left:1054.080000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:0.000000pt;}
.fs0_c00484{font-size:3.072000pt;}
.fs4_c00484{font-size:6.133333pt;}
.fs1_c00484{font-size:9.226667pt;}
.fs9_c00484{font-size:12.266667pt;}
.fsa_c00484{font-size:15.360000pt;}
.fs3_c00484{font-size:18.453333pt;}
.fsb_c00484{font-size:21.493333pt;}
.fs2_c00484{font-size:24.586667pt;}
.fs8_c00484{font-size:27.626667pt;}
.fs6_c00484{font-size:33.813333pt;}
.fs7_c00484{font-size:39.946667pt;}
.fs5_c00484{font-size:49.173333pt;}
.y0_c00484{bottom:0.000000pt;}
.y13_c00484{bottom:837.893333pt;}
.y12_c00484{bottom:844.800000pt;}
.y11_c00484{bottom:1108.226667pt;}
.y10_c00484{bottom:1113.600000pt;}
.yf_c00484{bottom:1115.906667pt;}
.y8_c00484{bottom:1244.933333pt;}
.ye_c00484{bottom:1251.840000pt;}
.yd_c00484{bottom:1252.613333pt;}
.y7_c00484{bottom:1258.746667pt;}
.y9_c00484{bottom:1271.040000pt;}
.yb_c00484{bottom:1277.186667pt;}
.ya_c00484{bottom:1287.933333pt;}
.yc_c00484{bottom:1288.706667pt;}
.y4_c00484{bottom:1301.760000pt;}
.y5_c00484{bottom:1302.533333pt;}
.y3_c00484{bottom:1304.826667pt;}
.y6_c00484{bottom:1305.600000pt;}
.y1_c00484{bottom:1321.733333pt;}
.y2_c00484{bottom:1324.026667pt;}
.h2_c00484{height:2.764500pt;}
.h6_c00484{height:5.519401pt;}
.h3_c00484{height:8.303099pt;}
.hb_c00484{height:11.038802pt;}
.hc_c00484{height:13.822500pt;}
.h5_c00484{height:16.606198pt;}
.hd_c00484{height:19.341901pt;}
.h4_c00484{height:22.125599pt;}
.ha_c00484{height:24.861302pt;}
.h8_c00484{height:30.428698pt;}
.h9_c00484{height:35.948099pt;}
.h7_c00484{height:44.251198pt;}
.h0_c00484{height:1347.066667pt;}
.h1_c00484{height:1347.333333pt;}
.w0_c00484{width:967.680000pt;}
.w1_c00484{width:968.000000pt;}
.x0_c00484{left:0.000000pt;}
.x10_c00484{left:130.560000pt;}
.xb_c00484{left:136.706667pt;}
.xa_c00484{left:147.453333pt;}
.xc_c00484{left:153.600000pt;}
.x1_c00484{left:247.293333pt;}
.xd_c00484{left:390.146667pt;}
.x3_c00484{left:801.026667pt;}
.x11_c00484{left:822.533333pt;}
.x12_c00484{left:831.746667pt;}
.x4_c00484{left:851.706667pt;}
.x5_c00484{left:862.466667pt;}
.x6_c00484{left:864.000000pt;}
.xf_c00484{left:866.306667pt;}
.xe_c00484{left:867.840000pt;}
.x7_c00484{left:880.133333pt;}
.x8_c00484{left:883.200000pt;}
.x9_c00484{left:910.853333pt;}
.x2_c00484{left:913.920000pt;}
.x13_c00484{left:924.666667pt;}
.x14_c00484{left:936.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_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_573088cdbbc02be63b3af762.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.109863;font-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_c00485{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c00485{transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);}
.m9_c00485{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.me_c00485{transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);}
.m10_c00485{transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);}
.m11_c00485{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.md_c00485{transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);}
.mb_c00485{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m0_c00485{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00485{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m4_c00485{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);}
.m7_c00485{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);}
.ma_c00485{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c00485{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);}
.m2_c00485{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mc_c00485{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1_c00485{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m5_c00485{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m6_c00485{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m12_c00485{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,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;}
.fs0_c00485{font-size:3.456000px;}
.fsa_c00485{font-size:6.900000px;}
.fsb_c00485{font-size:10.380000px;}
.fs5_c00485{font-size:13.800000px;}
.fs10_c00485{font-size:17.280000px;}
.fs1_c00485{font-size:20.760000px;}
.fsf_c00485{font-size:24.180000px;}
.fs11_c00485{font-size:27.660000px;}
.fs7_c00485{font-size:38.040000px;}
.fs4_c00485{font-size:51.840000px;}
.fs6_c00485{font-size:62.220000px;}
.fs9_c00485{font-size:65.640000px;}
.fs3_c00485{font-size:72.600000px;}
.fs2_c00485{font-size:82.920000px;}
.fsc_c00485{font-size:103.680000px;}
.fse_c00485{font-size:107.160000px;}
.fsd_c00485{font-size:120.960000px;}
.fs8_c00485{font-size:224.640000px;}
.y0_c00485{bottom:0.000000px;}
.y17_c00485{bottom:822.525000px;}
.y16_c00485{bottom:940.890000px;}
.y14_c00485{bottom:945.210000px;}
.y15_c00485{bottom:949.530000px;}
.y13_c00485{bottom:950.400000px;}
.y12_c00485{bottom:952.995000px;}
.y11_c00485{bottom:953.850000px;}
.yf_c00485{bottom:980.640000px;}
.y10_c00485{bottom:997.050000px;}
.ye_c00485{bottom:1023.840000px;}
.yb_c00485{bottom:1202.685000px;}
.ya_c00485{bottom:1220.835000px;}
.y9_c00485{bottom:1242.435000px;}
.yd_c00485{bottom:1251.075000px;}
.yc_c00485{bottom:1254.525000px;}
.y8_c00485{bottom:1385.850000px;}
.y3_c00485{bottom:1386.720000px;}
.y4_c00485{bottom:1387.590000px;}
.y5_c00485{bottom:1389.315000px;}
.y7_c00485{bottom:1395.360000px;}
.y6_c00485{bottom:1397.085000px;}
.y2_c00485{bottom:1406.595000px;}
.y1_c00485{bottom:1410.045000px;}
.h2_c00485{height:3.110063px;}
.hc_c00485{height:6.209326px;}
.hd_c00485{height:9.340986px;}
.h7_c00485{height:12.418652px;}
.h12_c00485{height:15.550313px;}
.h3_c00485{height:18.681973px;}
.h11_c00485{height:21.759639px;}
.h13_c00485{height:24.891299px;}
.h9_c00485{height:34.232285px;}
.h6_c00485{height:46.650937px;}
.h8_c00485{height:55.991924px;}
.hb_c00485{height:59.069590px;}
.h5_c00485{height:65.332910px;}
.h4_c00485{height:74.619902px;}
.he_c00485{height:93.301875px;}
.h10_c00485{height:96.433535px;}
.hf_c00485{height:108.852188px;}
.ha_c00485{height:202.154062px;}
.h0_c00485{height:1505.955000px;}
.h1_c00485{height:1506.000000px;}
.w1_c00485{width:1104.000000px;}
.w0_c00485{width:1104.195000px;}
.x0_c00485{left:0.000000px;}
.x9_c00485{left:2.595000px;}
.x1_c00485{left:60.480000px;}
.x2_c00485{left:66.525000px;}
.xf_c00485{left:95.040000px;}
.x10_c00485{left:101.955000px;}
.xa_c00485{left:109.725000px;}
.xe_c00485{left:118.365000px;}
.x11_c00485{left:164.160000px;}
.xb_c00485{left:176.250000px;}
.x12_c00485{left:177.990000px;}
.xc_c00485{left:189.210000px;}
.xd_c00485{left:201.315000px;}
.x3_c00485{left:463.965000px;}
.x4_c00485{left:605.670000px;}
.x5_c00485{left:630.720000px;}
.x6_c00485{left:704.160000px;}
.x7_c00485{left:714.525000px;}
.x8_c00485{left:851.040000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls0_c00485{letter-spacing:0.000000pt;}
.ws0_c00485{word-spacing:0.000000pt;}
.fs0_c00485{font-size:3.072000pt;}
.fsa_c00485{font-size:6.133333pt;}
.fsb_c00485{font-size:9.226667pt;}
.fs5_c00485{font-size:12.266667pt;}
.fs10_c00485{font-size:15.360000pt;}
.fs1_c00485{font-size:18.453333pt;}
.fsf_c00485{font-size:21.493333pt;}
.fs11_c00485{font-size:24.586667pt;}
.fs7_c00485{font-size:33.813333pt;}
.fs4_c00485{font-size:46.080000pt;}
.fs6_c00485{font-size:55.306667pt;}
.fs9_c00485{font-size:58.346667pt;}
.fs3_c00485{font-size:64.533333pt;}
.fs2_c00485{font-size:73.706667pt;}
.fsc_c00485{font-size:92.160000pt;}
.fse_c00485{font-size:95.253333pt;}
.fsd_c00485{font-size:107.520000pt;}
.fs8_c00485{font-size:199.680000pt;}
.y0_c00485{bottom:0.000000pt;}
.y17_c00485{bottom:731.133333pt;}
.y16_c00485{bottom:836.346667pt;}
.y14_c00485{bottom:840.186667pt;}
.y15_c00485{bottom:844.026667pt;}
.y13_c00485{bottom:844.800000pt;}
.y12_c00485{bottom:847.106667pt;}
.y11_c00485{bottom:847.866667pt;}
.yf_c00485{bottom:871.680000pt;}
.y10_c00485{bottom:886.266667pt;}
.ye_c00485{bottom:910.080000pt;}
.yb_c00485{bottom:1069.053333pt;}
.ya_c00485{bottom:1085.186667pt;}
.y9_c00485{bottom:1104.386667pt;}
.yd_c00485{bottom:1112.066667pt;}
.yc_c00485{bottom:1115.133333pt;}
.y8_c00485{bottom:1231.866667pt;}
.y3_c00485{bottom:1232.640000pt;}
.y4_c00485{bottom:1233.413333pt;}
.y5_c00485{bottom:1234.946667pt;}
.y7_c00485{bottom:1240.320000pt;}
.y6_c00485{bottom:1241.853333pt;}
.y2_c00485{bottom:1250.306667pt;}
.y1_c00485{bottom:1253.373333pt;}
.h2_c00485{height:2.764500pt;}
.hc_c00485{height:5.519401pt;}
.hd_c00485{height:8.303099pt;}
.h7_c00485{height:11.038802pt;}
.h12_c00485{height:13.822500pt;}
.h3_c00485{height:16.606198pt;}
.h11_c00485{height:19.341901pt;}
.h13_c00485{height:22.125599pt;}
.h9_c00485{height:30.428698pt;}
.h6_c00485{height:41.467500pt;}
.h8_c00485{height:49.770599pt;}
.hb_c00485{height:52.506302pt;}
.h5_c00485{height:58.073698pt;}
.h4_c00485{height:66.328802pt;}
.he_c00485{height:82.935000pt;}
.h10_c00485{height:85.718698pt;}
.hf_c00485{height:96.757500pt;}
.ha_c00485{height:179.692500pt;}
.h0_c00485{height:1338.626667pt;}
.h1_c00485{height:1338.666667pt;}
.w1_c00485{width:981.333333pt;}
.w0_c00485{width:981.506667pt;}
.x0_c00485{left:0.000000pt;}
.x9_c00485{left:2.306667pt;}
.x1_c00485{left:53.760000pt;}
.x2_c00485{left:59.133333pt;}
.xf_c00485{left:84.480000pt;}
.x10_c00485{left:90.626667pt;}
.xa_c00485{left:97.533333pt;}
.xe_c00485{left:105.213333pt;}
.x11_c00485{left:145.920000pt;}
.xb_c00485{left:156.666667pt;}
.x12_c00485{left:158.213333pt;}
.xc_c00485{left:168.186667pt;}
.xd_c00485{left:178.946667pt;}
.x3_c00485{left:412.413333pt;}
.x4_c00485{left:538.373333pt;}
.x5_c00485{left:560.640000pt;}
.x6_c00485{left:625.920000pt;}
.x7_c00485{left:635.133333pt;}
.x8_c00485{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_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_f235d6280e5437909a92dab4.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.109863;font-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_c00486{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c00486{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10_c00486{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);}
.m24_c00486{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.m15_c00486{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);}
.m28_c00486{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m2e_c00486{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m20_c00486{transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);}
.m11_c00486{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m1d_c00486{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.m22_c00486{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m7_c00486{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);}
.m16_c00486{transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);}
.m2a_c00486{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.m1c_c00486{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);}
.m1e_c00486{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);}
.m1a_c00486{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);}
.m27_c00486{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c00486{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);}
.m1f_c00486{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_c00486{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m29_c00486{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c00486{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);}
.m21_c00486{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb_c00486{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m23_c00486{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c00486{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);}
.m0_c00486{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c00486{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.md_c00486{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c00486{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c00486{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);}
.mf_c00486{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m18_c00486{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2c_c00486{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m6_c00486{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m26_c00486{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);}
.m14_c00486{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2f_c00486{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m25_c00486{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m9_c00486{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);}
.m13_c00486{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00486{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m8_c00486{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m2d_c00486{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);}
.ma_c00486{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m30_c00486{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m2_c00486{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.me_c00486{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);}
.v1_c00486{vertical-align:-3.480000px;}
.v0_c00486{vertical-align:0.000000px;}
.ls1_c00486{letter-spacing:0.000000px;}
.ls0_c00486{letter-spacing:36.202740px;}
.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;}
.fs2_c00486{font-size:6.900000px;}
.fs1_c00486{font-size:10.380000px;}
.fs0_c00486{font-size:13.800000px;}
.fs3_c00486{font-size:17.280000px;}
.fsf_c00486{font-size:20.760000px;}
.fs5_c00486{font-size:24.180000px;}
.fs4_c00486{font-size:34.560000px;}
.fs8_c00486{font-size:38.040000px;}
.fs15_c00486{font-size:41.460000px;}
.fs6_c00486{font-size:44.940000px;}
.fs10_c00486{font-size:48.360000px;}
.fsb_c00486{font-size:51.840000px;}
.fsa_c00486{font-size:55.320000px;}
.fs9_c00486{font-size:58.740000px;}
.fs12_c00486{font-size:62.220000px;}
.fs13_c00486{font-size:69.120000px;}
.fsc_c00486{font-size:72.600000px;}
.fs7_c00486{font-size:76.020000px;}
.fs11_c00486{font-size:79.500000px;}
.fs14_c00486{font-size:86.400000px;}
.fsd_c00486{font-size:89.880000px;}
.fse_c00486{font-size:141.720000px;}
.y0_c00486{bottom:0.000000px;}
.y2b_c00486{bottom:676.515000px;}
.y29_c00486{bottom:917.565000px;}
.y2a_c00486{bottom:918.435000px;}
.y27_c00486{bottom:920.160000px;}
.y28_c00486{bottom:921.885000px;}
.y23_c00486{bottom:935.715000px;}
.y26_c00486{bottom:940.035000px;}
.y25_c00486{bottom:940.890000px;}
.y24_c00486{bottom:941.760000px;}
.y21_c00486{bottom:956.445000px;}
.y1f_c00486{bottom:959.040000px;}
.y1e_c00486{bottom:959.910000px;}
.y22_c00486{bottom:960.765000px;}
.y20_c00486{bottom:961.635000px;}
.y1c_c00486{bottom:979.770000px;}
.y1d_c00486{bottom:980.640000px;}
.y1b_c00486{bottom:984.090000px;}
.y1a_c00486{bottom:1000.515000px;}
.y19_c00486{bottom:1002.240000px;}
.y18_c00486{bottom:1003.110000px;}
.y12_c00486{bottom:1004.835000px;}
.y16_c00486{bottom:1016.925000px;}
.y14_c00486{bottom:1020.390000px;}
.y15_c00486{bottom:1022.970000px;}
.y13_c00486{bottom:1023.840000px;}
.y17_c00486{bottom:1033.350000px;}
.y11_c00486{bottom:1049.760000px;}
.y10_c00486{bottom:1056.675000px;}
.yf_c00486{bottom:1058.400000px;}
.ye_c00486{bottom:1059.270000px;}
.y8_c00486{bottom:1060.995000px;}
.ya_c00486{bottom:1061.850000px;}
.yd_c00486{bottom:1062.720000px;}
.yc_c00486{bottom:1063.590000px;}
.yb_c00486{bottom:1064.445000px;}
.y9_c00486{bottom:1088.640000px;}
.y7_c00486{bottom:1096.410000px;}
.y6_c00486{bottom:1227.750000px;}
.y5_c00486{bottom:1232.070000px;}
.y4_c00486{bottom:1247.610000px;}
.y3_c00486{bottom:1249.350000px;}
.y2_c00486{bottom:1263.165000px;}
.y1_c00486{bottom:1264.890000px;}
.h4_c00486{height:6.209326px;}
.h3_c00486{height:9.340986px;}
.h2_c00486{height:12.418652px;}
.h5_c00486{height:15.550313px;}
.h11_c00486{height:18.681973px;}
.h7_c00486{height:21.759639px;}
.h6_c00486{height:31.100625px;}
.ha_c00486{height:34.232285px;}
.h17_c00486{height:37.309951px;}
.h8_c00486{height:40.441611px;}
.h12_c00486{height:43.519277px;}
.hd_c00486{height:46.650937px;}
.hc_c00486{height:49.782598px;}
.hb_c00486{height:52.860264px;}
.h14_c00486{height:55.991924px;}
.h15_c00486{height:62.201250px;}
.he_c00486{height:65.332910px;}
.h9_c00486{height:68.410576px;}
.h13_c00486{height:71.542236px;}
.h16_c00486{height:77.751563px;}
.hf_c00486{height:80.883223px;}
.h10_c00486{height:127.534160px;}
.h0_c00486{height:1515.450000px;}
.h1_c00486{height:1515.750000px;}
.w0_c00486{width:1088.640000px;}
.w1_c00486{width:1089.000000px;}
.x0_c00486{left:0.000000px;}
.x20_c00486{left:196.995000px;}
.x21_c00486{left:212.550000px;}
.x29_c00486{left:214.275000px;}
.x24_c00486{left:216.870000px;}
.x15_c00486{left:220.320000px;}
.x2a_c00486{left:247.965000px;}
.x16_c00486{left:255.750000px;}
.xa_c00486{left:263.520000px;}
.x17_c00486{left:272.160000px;}
.xb_c00486{left:285.120000px;}
.x2b_c00486{left:293.760000px;}
.x25_c00486{left:298.950000px;}
.xc_c00486{left:304.125000px;}
.x27_c00486{left:314.490000px;}
.x1d_c00486{left:339.555000px;}
.x18_c00486{left:342.150000px;}
.xd_c00486{left:345.600000px;}
.x2c_c00486{left:349.920000px;}
.x19_c00486{left:356.835000px;}
.x28_c00486{left:367.200000px;}
.x22_c00486{left:368.925000px;}
.x1a_c00486{left:381.030000px;}
.x1e_c00486{left:383.610000px;}
.xe_c00486{left:398.310000px;}
.x2d_c00486{left:407.805000px;}
.x23_c00486{left:419.910000px;}
.x1b_c00486{left:440.640000px;}
.x26_c00486{left:457.050000px;}
.x1f_c00486{left:466.560000px;}
.x2e_c00486{left:472.605000px;}
.xf_c00486{left:505.440000px;}
.x1c_c00486{left:510.630000px;}
.x9_c00486{left:571.965000px;}
.x10_c00486{left:618.630000px;}
.x11_c00486{left:641.955000px;}
.x12_c00486{left:664.410000px;}
.x13_c00486{left:704.160000px;}
.x14_c00486{left:740.445000px;}
.x7_c00486{left:873.510000px;}
.x5_c00486{left:944.355000px;}
.x6_c00486{left:956.445525px;}
.x3_c00486{left:1031.608632px;}
.x8_c00486{left:1035.075000px;}
.x4_c00486{left:1047.165000px;}
.x2f_c00486{left:1067.040000px;}
.x1_c00486{left:1073.955000px;}
.x2_c00486{left:1086.915000px;}
@media print{
.v1_c00486{vertical-align:-3.093333pt;}
.v0_c00486{vertical-align:0.000000pt;}
.ls1_c00486{letter-spacing:0.000000pt;}
.ls0_c00486{letter-spacing:32.180213pt;}
.ws0_c00486{word-spacing:0.000000pt;}
.fs2_c00486{font-size:6.133333pt;}
.fs1_c00486{font-size:9.226667pt;}
.fs0_c00486{font-size:12.266667pt;}
.fs3_c00486{font-size:15.360000pt;}
.fsf_c00486{font-size:18.453333pt;}
.fs5_c00486{font-size:21.493333pt;}
.fs4_c00486{font-size:30.720000pt;}
.fs8_c00486{font-size:33.813333pt;}
.fs15_c00486{font-size:36.853333pt;}
.fs6_c00486{font-size:39.946667pt;}
.fs10_c00486{font-size:42.986667pt;}
.fsb_c00486{font-size:46.080000pt;}
.fsa_c00486{font-size:49.173333pt;}
.fs9_c00486{font-size:52.213333pt;}
.fs12_c00486{font-size:55.306667pt;}
.fs13_c00486{font-size:61.440000pt;}
.fsc_c00486{font-size:64.533333pt;}
.fs7_c00486{font-size:67.573333pt;}
.fs11_c00486{font-size:70.666667pt;}
.fs14_c00486{font-size:76.800000pt;}
.fsd_c00486{font-size:79.893333pt;}
.fse_c00486{font-size:125.973333pt;}
.y0_c00486{bottom:0.000000pt;}
.y2b_c00486{bottom:601.346667pt;}
.y29_c00486{bottom:815.613333pt;}
.y2a_c00486{bottom:816.386667pt;}
.y27_c00486{bottom:817.920000pt;}
.y28_c00486{bottom:819.453333pt;}
.y23_c00486{bottom:831.746667pt;}
.y26_c00486{bottom:835.586667pt;}
.y25_c00486{bottom:836.346667pt;}
.y24_c00486{bottom:837.120000pt;}
.y21_c00486{bottom:850.173333pt;}
.y1f_c00486{bottom:852.480000pt;}
.y1e_c00486{bottom:853.253333pt;}
.y22_c00486{bottom:854.013333pt;}
.y20_c00486{bottom:854.786667pt;}
.y1c_c00486{bottom:870.906667pt;}
.y1d_c00486{bottom:871.680000pt;}
.y1b_c00486{bottom:874.746667pt;}
.y1a_c00486{bottom:889.346667pt;}
.y19_c00486{bottom:890.880000pt;}
.y18_c00486{bottom:891.653333pt;}
.y12_c00486{bottom:893.186667pt;}
.y16_c00486{bottom:903.933333pt;}
.y14_c00486{bottom:907.013333pt;}
.y15_c00486{bottom:909.306667pt;}
.y13_c00486{bottom:910.080000pt;}
.y17_c00486{bottom:918.533333pt;}
.y11_c00486{bottom:933.120000pt;}
.y10_c00486{bottom:939.266667pt;}
.yf_c00486{bottom:940.800000pt;}
.ye_c00486{bottom:941.573333pt;}
.y8_c00486{bottom:943.106667pt;}
.ya_c00486{bottom:943.866667pt;}
.yd_c00486{bottom:944.640000pt;}
.yc_c00486{bottom:945.413333pt;}
.yb_c00486{bottom:946.173333pt;}
.y9_c00486{bottom:967.680000pt;}
.y7_c00486{bottom:974.586667pt;}
.y6_c00486{bottom:1091.333333pt;}
.y5_c00486{bottom:1095.173333pt;}
.y4_c00486{bottom:1108.986667pt;}
.y3_c00486{bottom:1110.533333pt;}
.y2_c00486{bottom:1122.813333pt;}
.y1_c00486{bottom:1124.346667pt;}
.h4_c00486{height:5.519401pt;}
.h3_c00486{height:8.303099pt;}
.h2_c00486{height:11.038802pt;}
.h5_c00486{height:13.822500pt;}
.h11_c00486{height:16.606198pt;}
.h7_c00486{height:19.341901pt;}
.h6_c00486{height:27.645000pt;}
.ha_c00486{height:30.428698pt;}
.h17_c00486{height:33.164401pt;}
.h8_c00486{height:35.948099pt;}
.h12_c00486{height:38.683802pt;}
.hd_c00486{height:41.467500pt;}
.hc_c00486{height:44.251198pt;}
.hb_c00486{height:46.986901pt;}
.h14_c00486{height:49.770599pt;}
.h15_c00486{height:55.290000pt;}
.he_c00486{height:58.073698pt;}
.h9_c00486{height:60.809401pt;}
.h13_c00486{height:63.593099pt;}
.h16_c00486{height:69.112500pt;}
.hf_c00486{height:71.896198pt;}
.h10_c00486{height:113.363698pt;}
.h0_c00486{height:1347.066667pt;}
.h1_c00486{height:1347.333333pt;}
.w0_c00486{width:967.680000pt;}
.w1_c00486{width:968.000000pt;}
.x0_c00486{left:0.000000pt;}
.x20_c00486{left:175.106667pt;}
.x21_c00486{left:188.933333pt;}
.x29_c00486{left:190.466667pt;}
.x24_c00486{left:192.773333pt;}
.x15_c00486{left:195.840000pt;}
.x2a_c00486{left:220.413333pt;}
.x16_c00486{left:227.333333pt;}
.xa_c00486{left:234.240000pt;}
.x17_c00486{left:241.920000pt;}
.xb_c00486{left:253.440000pt;}
.x2b_c00486{left:261.120000pt;}
.x25_c00486{left:265.733333pt;}
.xc_c00486{left:270.333333pt;}
.x27_c00486{left:279.546667pt;}
.x1d_c00486{left:301.826667pt;}
.x18_c00486{left:304.133333pt;}
.xd_c00486{left:307.200000pt;}
.x2c_c00486{left:311.040000pt;}
.x19_c00486{left:317.186667pt;}
.x28_c00486{left:326.400000pt;}
.x22_c00486{left:327.933333pt;}
.x1a_c00486{left:338.693333pt;}
.x1e_c00486{left:340.986667pt;}
.xe_c00486{left:354.053333pt;}
.x2d_c00486{left:362.493333pt;}
.x23_c00486{left:373.253333pt;}
.x1b_c00486{left:391.680000pt;}
.x26_c00486{left:406.266667pt;}
.x1f_c00486{left:414.720000pt;}
.x2e_c00486{left:420.093333pt;}
.xf_c00486{left:449.280000pt;}
.x1c_c00486{left:453.893333pt;}
.x9_c00486{left:508.413333pt;}
.x10_c00486{left:549.893333pt;}
.x11_c00486{left:570.626667pt;}
.x12_c00486{left:590.586667pt;}
.x13_c00486{left:625.920000pt;}
.x14_c00486{left:658.173333pt;}
.x7_c00486{left:776.453333pt;}
.x5_c00486{left:839.426667pt;}
.x6_c00486{left:850.173800pt;}
.x3_c00486{left:916.985451pt;}
.x8_c00486{left:920.066667pt;}
.x4_c00486{left:930.813333pt;}
.x2f_c00486{left:948.480000pt;}
.x1_c00486{left:954.626667pt;}
.x2_c00486{left:966.146667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbfc364f9184746e16d0c4b6.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.109863;font-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_c00487{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);}
.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;}
.fc0_c00487{color:transparent;}
.fs0_c00487{font-size:600.000000px;}
.y0_c00487{bottom:0.000000px;}
.y1_c00487{bottom:15.000000px;}
.h2_c00487{height:539.941406px;}
.h0_c00487{height:1505.955000px;}
.h1_c00487{height:1506.000000px;}
.w1_c00487{width:1104.000000px;}
.w0_c00487{width:1104.195000px;}
.x0_c00487{left:0.000000px;}
.x1_c00487{left:15.000000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ws0_c00487{word-spacing:0.000000pt;}
.fs0_c00487{font-size:533.333333pt;}
.y0_c00487{bottom:0.000000pt;}
.y1_c00487{bottom:13.333333pt;}
.h2_c00487{height:479.947917pt;}
.h0_c00487{height:1338.626667pt;}
.h1_c00487{height:1338.666667pt;}
.w1_c00487{width:981.333333pt;}
.w0_c00487{width:981.506667pt;}
.x0_c00487{left:0.000000pt;}
.x1_c00487{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4891b940aa748e67005bb354.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.109863;font-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_c00488{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);}
.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:600.000000px;}
.y0_c00488{bottom:0.000000px;}
.y1_c00488{bottom:15.000000px;}
.h2_c00488{height:539.941406px;}
.h0_c00488{height:1515.450000px;}
.h1_c00488{height:1515.750000px;}
.w0_c00488{width:1088.640000px;}
.w1_c00488{width:1089.000000px;}
.x0_c00488{left:0.000000px;}
.x1_c00488{left:15.000000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws0_c00488{word-spacing:0.000000pt;}
.fs0_c00488{font-size:533.333333pt;}
.y0_c00488{bottom:0.000000pt;}
.y1_c00488{bottom:13.333333pt;}
.h2_c00488{height:479.947917pt;}
.h0_c00488{height:1347.066667pt;}
.h1_c00488{height:1347.333333pt;}
.w0_c00488{width:967.680000pt;}
.w1_c00488{width:968.000000pt;}
.x0_c00488{left:0.000000pt;}
.x1_c00488{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5864bed9f3856a77f075713.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.109863;font-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_c00489{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c00489{transform:matrix(0.054150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054150,0.000000,0.000000,0.250000,0,0);}
.m0_c00489{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m8_c00489{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m6_c00489{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c00489{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);}
.m1_c00489{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);}
.m9_c00489{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00489{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m7_c00489{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,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;}
.fs5_c00489{font-size:3.456000px;}
.fs4_c00489{font-size:6.900000px;}
.fs3_c00489{font-size:10.380000px;}
.fs8_c00489{font-size:13.800000px;}
.fs6_c00489{font-size:17.280000px;}
.fs7_c00489{font-size:27.660000px;}
.fs0_c00489{font-size:34.560000px;}
.fs2_c00489{font-size:65.640000px;}
.fs1_c00489{font-size:172.800000px;}
.y0_c00489{bottom:0.000000px;}
.yb_c00489{bottom:502.845000px;}
.ya_c00489{bottom:505.440000px;}
.y9_c00489{bottom:541.725000px;}
.y8_c00489{bottom:542.595000px;}
.y7_c00489{bottom:666.150000px;}
.y6_c00489{bottom:956.445000px;}
.y5_c00489{bottom:959.040000px;}
.y4_c00489{bottom:1330.560000px;}
.y3_c00489{bottom:1349.565000px;}
.y2_c00489{bottom:1393.635000px;}
.y1_c00489{bottom:1404.000000px;}
.h7_c00489{height:3.110063px;}
.h6_c00489{height:6.209326px;}
.h5_c00489{height:9.340986px;}
.ha_c00489{height:12.418652px;}
.h8_c00489{height:15.550313px;}
.h9_c00489{height:24.891299px;}
.h2_c00489{height:31.100625px;}
.h4_c00489{height:59.069590px;}
.h3_c00489{height:155.503125px;}
.h0_c00489{height:1505.955000px;}
.h1_c00489{height:1506.000000px;}
.w1_c00489{width:1104.000000px;}
.w0_c00489{width:1104.195000px;}
.x0_c00489{left:0.000000px;}
.x2_c00489{left:111.450000px;}
.x1_c00489{left:113.190000px;}
.x3_c00489{left:168.480000px;}
.x6_c00489{left:175.395000px;}
.x4_c00489{left:181.440000px;}
.x5_c00489{left:190.080000px;}
.x7_c00489{left:212.550000px;}
.x8_c00489{left:216.870000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws0_c00489{word-spacing:0.000000pt;}
.fs5_c00489{font-size:3.072000pt;}
.fs4_c00489{font-size:6.133333pt;}
.fs3_c00489{font-size:9.226667pt;}
.fs8_c00489{font-size:12.266667pt;}
.fs6_c00489{font-size:15.360000pt;}
.fs7_c00489{font-size:24.586667pt;}
.fs0_c00489{font-size:30.720000pt;}
.fs2_c00489{font-size:58.346667pt;}
.fs1_c00489{font-size:153.600000pt;}
.y0_c00489{bottom:0.000000pt;}
.yb_c00489{bottom:446.973333pt;}
.ya_c00489{bottom:449.280000pt;}
.y9_c00489{bottom:481.533333pt;}
.y8_c00489{bottom:482.306667pt;}
.y7_c00489{bottom:592.133333pt;}
.y6_c00489{bottom:850.173333pt;}
.y5_c00489{bottom:852.480000pt;}
.y4_c00489{bottom:1182.720000pt;}
.y3_c00489{bottom:1199.613333pt;}
.y2_c00489{bottom:1238.786667pt;}
.y1_c00489{bottom:1248.000000pt;}
.h7_c00489{height:2.764500pt;}
.h6_c00489{height:5.519401pt;}
.h5_c00489{height:8.303099pt;}
.ha_c00489{height:11.038802pt;}
.h8_c00489{height:13.822500pt;}
.h9_c00489{height:22.125599pt;}
.h2_c00489{height:27.645000pt;}
.h4_c00489{height:52.506302pt;}
.h3_c00489{height:138.225000pt;}
.h0_c00489{height:1338.626667pt;}
.h1_c00489{height:1338.666667pt;}
.w1_c00489{width:981.333333pt;}
.w0_c00489{width:981.506667pt;}
.x0_c00489{left:0.000000pt;}
.x2_c00489{left:99.066667pt;}
.x1_c00489{left:100.613333pt;}
.x3_c00489{left:149.760000pt;}
.x6_c00489{left:155.906667pt;}
.x4_c00489{left:161.280000pt;}
.x5_c00489{left:168.960000pt;}
.x7_c00489{left:188.933333pt;}
.x8_c00489{left:192.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5c628631c76165caff3317a.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.109863;font-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_c00490{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m10_c00490{transform:matrix(0.023750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023750,0.000000,0.000000,0.250000,0,0);}
.m14_c00490{transform:matrix(0.029125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029125,0.000000,0.000000,0.250000,0,0);}
.m12_c00490{transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);}
.m16_c00490{transform:matrix(0.054925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054925,0.000000,0.000000,0.250000,0,0);}
.m15_c00490{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m0_c00490{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1a_c00490{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m4_c00490{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m17_c00490{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.md_c00490{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);}
.m19_c00490{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);}
.m2_c00490{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c00490{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00490{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1_c00490{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c00490{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c00490{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1d_c00490{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m5_c00490{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.me_c00490{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c00490{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);}
.m11_c00490{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c00490{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m8_c00490{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m1b_c00490{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m18_c00490{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.mc_c00490{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.mf_c00490{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_c00490{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00490{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_c00490{vertical-align:0.000000px;}
.v1_c00490{vertical-align:3.480000px;}
.ls1_c00490{letter-spacing:0.000000px;}
.ls0_c00490{letter-spacing:347.066688px;}
.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;}
.fs0_c00490{font-size:3.456000px;}
.fs1_c00490{font-size:10.380000px;}
.fs6_c00490{font-size:13.800000px;}
.fs8_c00490{font-size:17.280000px;}
.fs10_c00490{font-size:20.760000px;}
.fsc_c00490{font-size:24.180000px;}
.fse_c00490{font-size:27.660000px;}
.fs7_c00490{font-size:31.080000px;}
.fsf_c00490{font-size:48.360000px;}
.fs2_c00490{font-size:55.320000px;}
.fs3_c00490{font-size:58.740000px;}
.fs4_c00490{font-size:65.640000px;}
.fsa_c00490{font-size:69.120000px;}
.fs5_c00490{font-size:72.600000px;}
.fsb_c00490{font-size:107.160000px;}
.fs9_c00490{font-size:131.340000px;}
.fsd_c00490{font-size:141.720000px;}
.y0_c00490{bottom:0.000000px;}
.y1a_c00490{bottom:148.605000px;}
.y18_c00490{bottom:451.005000px;}
.y19_c00490{bottom:452.730000px;}
.y17_c00490{bottom:518.400000px;}
.y16_c00490{bottom:529.635000px;}
.y15_c00490{bottom:545.190000px;}
.y8_c00490{bottom:559.875000px;}
.y7_c00490{bottom:562.470000px;}
.y14_c00490{bottom:747.360000px;}
.y13_c00490{bottom:754.275000px;}
.y12_c00490{bottom:767.235000px;}
.y11_c00490{bottom:775.875000px;}
.y10_c00490{bottom:804.390000px;}
.yf_c00490{bottom:812.160000px;}
.ye_c00490{bottom:875.235000px;}
.yd_c00490{bottom:887.325000px;}
.yb_c00490{bottom:908.925000px;}
.yc_c00490{bottom:921.030000px;}
.ya_c00490{bottom:932.250000px;}
.y9_c00490{bottom:1134.435000px;}
.y6_c00490{bottom:1390.170000px;}
.y4_c00490{bottom:1392.765000px;}
.y2_c00490{bottom:1393.635000px;}
.y5_c00490{bottom:1394.490000px;}
.y3_c00490{bottom:1407.450000px;}
.y1_c00490{bottom:1412.640000px;}
.h4_c00490{height:3.110063px;}
.h9_c00490{height:9.340986px;}
.h8_c00490{height:12.418652px;}
.h2_c00490{height:12.820986px;}
.hb_c00490{height:15.550313px;}
.h13_c00490{height:18.681973px;}
.hf_c00490{height:21.759639px;}
.h11_c00490{height:24.891299px;}
.ha_c00490{height:27.968965px;}
.h12_c00490{height:43.519277px;}
.h3_c00490{height:49.782598px;}
.h5_c00490{height:52.860264px;}
.h6_c00490{height:59.069590px;}
.hd_c00490{height:62.201250px;}
.h7_c00490{height:65.332910px;}
.he_c00490{height:96.433535px;}
.hc_c00490{height:118.193174px;}
.h10_c00490{height:127.534160px;}
.h0_c00490{height:1515.450000px;}
.h1_c00490{height:1515.750000px;}
.w0_c00490{width:1088.640000px;}
.w1_c00490{width:1089.000000px;}
.x0_c00490{left:0.000000px;}
.x2_c00490{left:352.515000px;}
.x3_c00490{left:383.610000px;}
.x4_c00490{left:392.250000px;}
.x5_c00490{left:412.995000px;}
.x1_c00490{left:432.000000px;}
.x6_c00490{left:435.450000px;}
.x7_c00490{left:456.195000px;}
.x8_c00490{left:471.750000px;}
.x9_c00490{left:492.480000px;}
.xa_c00490{left:508.890000px;}
.xb_c00490{left:535.680000px;}
.xc_c00490{left:560.730000px;}
.xd_c00490{left:582.330000px;}
.xe_c00490{left:603.930000px;}
.xf_c00490{left:626.400000px;}
.x10_c00490{left:688.605000px;}
.x11_c00490{left:883.005000px;}
.x12_c00490{left:889.920000px;}
.x14_c00490{left:941.760000px;}
.x1a_c00490{left:961.635000px;}
.x18_c00490{left:967.680000px;}
.x17_c00490{left:971.130000px;}
.x19_c00490{left:974.595000px;}
.x15_c00490{left:976.320000px;}
.x1b_c00490{left:1023.840000px;}
.x1d_c00490{left:1028.160000px;}
.x13_c00490{left:1035.930000px;}
.x16_c00490{left:1039.395000px;}
.x1c_c00490{left:1041.120000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.v1_c00490{vertical-align:3.093333pt;}
.ls1_c00490{letter-spacing:0.000000pt;}
.ls0_c00490{letter-spacing:308.503723pt;}
.ws0_c00490{word-spacing:0.000000pt;}
.fs0_c00490{font-size:3.072000pt;}
.fs1_c00490{font-size:9.226667pt;}
.fs6_c00490{font-size:12.266667pt;}
.fs8_c00490{font-size:15.360000pt;}
.fs10_c00490{font-size:18.453333pt;}
.fsc_c00490{font-size:21.493333pt;}
.fse_c00490{font-size:24.586667pt;}
.fs7_c00490{font-size:27.626667pt;}
.fsf_c00490{font-size:42.986667pt;}
.fs2_c00490{font-size:49.173333pt;}
.fs3_c00490{font-size:52.213333pt;}
.fs4_c00490{font-size:58.346667pt;}
.fsa_c00490{font-size:61.440000pt;}
.fs5_c00490{font-size:64.533333pt;}
.fsb_c00490{font-size:95.253333pt;}
.fs9_c00490{font-size:116.746667pt;}
.fsd_c00490{font-size:125.973333pt;}
.y0_c00490{bottom:0.000000pt;}
.y1a_c00490{bottom:132.093333pt;}
.y18_c00490{bottom:400.893333pt;}
.y19_c00490{bottom:402.426667pt;}
.y17_c00490{bottom:460.800000pt;}
.y16_c00490{bottom:470.786667pt;}
.y15_c00490{bottom:484.613333pt;}
.y8_c00490{bottom:497.666667pt;}
.y7_c00490{bottom:499.973333pt;}
.y14_c00490{bottom:664.320000pt;}
.y13_c00490{bottom:670.466667pt;}
.y12_c00490{bottom:681.986667pt;}
.y11_c00490{bottom:689.666667pt;}
.y10_c00490{bottom:715.013333pt;}
.yf_c00490{bottom:721.920000pt;}
.ye_c00490{bottom:777.986667pt;}
.yd_c00490{bottom:788.733333pt;}
.yb_c00490{bottom:807.933333pt;}
.yc_c00490{bottom:818.693333pt;}
.ya_c00490{bottom:828.666667pt;}
.y9_c00490{bottom:1008.386667pt;}
.y6_c00490{bottom:1235.706667pt;}
.y4_c00490{bottom:1238.013333pt;}
.y2_c00490{bottom:1238.786667pt;}
.y5_c00490{bottom:1239.546667pt;}
.y3_c00490{bottom:1251.066667pt;}
.y1_c00490{bottom:1255.680000pt;}
.h4_c00490{height:2.764500pt;}
.h9_c00490{height:8.303099pt;}
.h8_c00490{height:11.038802pt;}
.h2_c00490{height:11.396432pt;}
.hb_c00490{height:13.822500pt;}
.h13_c00490{height:16.606198pt;}
.hf_c00490{height:19.341901pt;}
.h11_c00490{height:22.125599pt;}
.ha_c00490{height:24.861302pt;}
.h12_c00490{height:38.683802pt;}
.h3_c00490{height:44.251198pt;}
.h5_c00490{height:46.986901pt;}
.h6_c00490{height:52.506302pt;}
.hd_c00490{height:55.290000pt;}
.h7_c00490{height:58.073698pt;}
.he_c00490{height:85.718698pt;}
.hc_c00490{height:105.060599pt;}
.h10_c00490{height:113.363698pt;}
.h0_c00490{height:1347.066667pt;}
.h1_c00490{height:1347.333333pt;}
.w0_c00490{width:967.680000pt;}
.w1_c00490{width:968.000000pt;}
.x0_c00490{left:0.000000pt;}
.x2_c00490{left:313.346667pt;}
.x3_c00490{left:340.986667pt;}
.x4_c00490{left:348.666667pt;}
.x5_c00490{left:367.106667pt;}
.x1_c00490{left:384.000000pt;}
.x6_c00490{left:387.066667pt;}
.x7_c00490{left:405.506667pt;}
.x8_c00490{left:419.333333pt;}
.x9_c00490{left:437.760000pt;}
.xa_c00490{left:452.346667pt;}
.xb_c00490{left:476.160000pt;}
.xc_c00490{left:498.426667pt;}
.xd_c00490{left:517.626667pt;}
.xe_c00490{left:536.826667pt;}
.xf_c00490{left:556.800000pt;}
.x10_c00490{left:612.093333pt;}
.x11_c00490{left:784.893333pt;}
.x12_c00490{left:791.040000pt;}
.x14_c00490{left:837.120000pt;}
.x1a_c00490{left:854.786667pt;}
.x18_c00490{left:860.160000pt;}
.x17_c00490{left:863.226667pt;}
.x19_c00490{left:866.306667pt;}
.x15_c00490{left:867.840000pt;}
.x1b_c00490{left:910.080000pt;}
.x1d_c00490{left:913.920000pt;}
.x13_c00490{left:920.826667pt;}
.x16_c00490{left:923.906667pt;}
.x1c_c00490{left:925.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_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_19aff76f90a17d8bf18ae9d2.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.109863;font-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_c00491{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);}
.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;}
.fs0_c00491{font-size:600.000000px;}
.y0_c00491{bottom:0.000000px;}
.y1_c00491{bottom:15.000000px;}
.h2_c00491{height:539.941406px;}
.h0_c00491{height:1505.955000px;}
.h1_c00491{height:1506.000000px;}
.w1_c00491{width:1104.000000px;}
.w0_c00491{width:1104.195000px;}
.x0_c00491{left:0.000000px;}
.x1_c00491{left:15.000000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws0_c00491{word-spacing:0.000000pt;}
.fs0_c00491{font-size:533.333333pt;}
.y0_c00491{bottom:0.000000pt;}
.y1_c00491{bottom:13.333333pt;}
.h2_c00491{height:479.947917pt;}
.h0_c00491{height:1338.626667pt;}
.h1_c00491{height:1338.666667pt;}
.w1_c00491{width:981.333333pt;}
.w0_c00491{width:981.506667pt;}
.x0_c00491{left:0.000000pt;}
.x1_c00491{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_51afe579b77fffbff51f1f33.woff2')format("woff");}.ff1_c00492{font-family:ff1_c00492;line-height:1.109863;font-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_c00492{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2d_c00492{transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);}
.m2e_c00492{transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);}
.m2c_c00492{transform:matrix(0.115700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115700,0.000000,0.000000,0.250000,0,0);}
.m27_c00492{transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);}
.m1_c00492{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1b_c00492{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.m23_c00492{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.mc_c00492{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.m8_c00492{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m19_c00492{transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);}
.m2b_c00492{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);}
.m12_c00492{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);}
.ma_c00492{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m7_c00492{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.m24_c00492{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);}
.m21_c00492{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);}
.m11_c00492{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m26_c00492{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);}
.m2_c00492{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m5_c00492{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);}
.m25_c00492{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);}
.mf_c00492{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);}
.m1c_c00492{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);}
.m15_c00492{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);}
.m1d_c00492{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md_c00492{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c00492{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c00492{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);}
.me_c00492{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c00492{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00492{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c00492{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);}
.m17_c00492{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);}
.m13_c00492{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c00492{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m22_c00492{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m6_c00492{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m28_c00492{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_c00492{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1f_c00492{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m18_c00492{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m0_c00492{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1e_c00492{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m29_c00492{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.mb_c00492{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m2f_c00492{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m4_c00492{transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.172500,0.000000,0.000000,0.250000,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;}
.fs11_c00492{font-size:3.456000px;}
.fs17_c00492{font-size:6.000000px;}
.fs1_c00492{font-size:6.900000px;}
.fs6_c00492{font-size:10.380000px;}
.fs12_c00492{font-size:13.800000px;}
.fs3_c00492{font-size:17.280000px;}
.fs4_c00492{font-size:20.760000px;}
.fs0_c00492{font-size:24.180000px;}
.fs8_c00492{font-size:27.660000px;}
.fs13_c00492{font-size:31.080000px;}
.fs2_c00492{font-size:34.560000px;}
.fs16_c00492{font-size:38.040000px;}
.fs15_c00492{font-size:44.940000px;}
.fs14_c00492{font-size:48.360000px;}
.fse_c00492{font-size:55.320000px;}
.fsc_c00492{font-size:58.740000px;}
.fs7_c00492{font-size:62.220000px;}
.fsa_c00492{font-size:65.640000px;}
.fsd_c00492{font-size:69.120000px;}
.fs9_c00492{font-size:72.600000px;}
.fsb_c00492{font-size:76.020000px;}
.fs5_c00492{font-size:79.500000px;}
.fs18_c00492{font-size:89.880000px;}
.fs19_c00492{font-size:93.300000px;}
.fsf_c00492{font-size:96.780000px;}
.fs10_c00492{font-size:114.060000px;}
.y0_c00492{bottom:0.000000px;}
.y2b_c00492{bottom:379.290000px;}
.y29_c00492{bottom:936.570000px;}
.y2a_c00492{bottom:938.310000px;}
.y28_c00492{bottom:945.210000px;}
.y26_c00492{bottom:975.450000px;}
.y27_c00492{bottom:978.045000px;}
.y25_c00492{bottom:1078.275000px;}
.y1_c00492{bottom:1232.925000px;}
.y2_c00492{bottom:1238.115000px;}
.y3_c00492{bottom:1239.840000px;}
.y24_c00492{bottom:1257.120000px;}
.y23_c00492{bottom:1261.440000px;}
.y22_c00492{bottom:1262.310000px;}
.y21_c00492{bottom:1274.400000px;}
.y20_c00492{bottom:1282.170000px;}
.y1f_c00492{bottom:1286.490000px;}
.y14_c00492{bottom:1297.725000px;}
.y12_c00492{bottom:1299.450000px;}
.y13_c00492{bottom:1306.365000px;}
.y1b_c00492{bottom:1307.235000px;}
.y1e_c00492{bottom:1308.090000px;}
.y1c_c00492{bottom:1309.830000px;}
.y1d_c00492{bottom:1311.555000px;}
.y15_c00492{bottom:1312.410000px;}
.y17_c00492{bottom:1319.325000px;}
.y1a_c00492{bottom:1320.195000px;}
.y19_c00492{bottom:1321.920000px;}
.y18_c00492{bottom:1322.790000px;}
.y16_c00492{bottom:1323.645000px;}
.y11_c00492{bottom:1329.690000px;}
.yf_c00492{bottom:1364.250000px;}
.y10_c00492{bottom:1366.845000px;}
.yb_c00492{bottom:1378.950000px;}
.ya_c00492{bottom:1384.125000px;}
.yd_c00492{bottom:1390.170000px;}
.ye_c00492{bottom:1391.910000px;}
.yc_c00492{bottom:1393.635000px;}
.y7_c00492{bottom:1394.490000px;}
.y9_c00492{bottom:1395.360000px;}
.y8_c00492{bottom:1398.810000px;}
.y6_c00492{bottom:1413.510000px;}
.y5_c00492{bottom:1421.280000px;}
.y4_c00492{bottom:1446.330000px;}
.h13_c00492{height:3.110063px;}
.h19_c00492{height:5.399414px;}
.h3_c00492{height:6.209326px;}
.h8_c00492{height:9.340986px;}
.h14_c00492{height:12.418652px;}
.h5_c00492{height:15.550313px;}
.h6_c00492{height:18.681973px;}
.h2_c00492{height:21.759639px;}
.ha_c00492{height:24.891299px;}
.h15_c00492{height:27.968965px;}
.h4_c00492{height:31.100625px;}
.h18_c00492{height:34.232285px;}
.h17_c00492{height:40.441611px;}
.h16_c00492{height:43.519277px;}
.h10_c00492{height:49.782598px;}
.he_c00492{height:52.860264px;}
.h9_c00492{height:55.991924px;}
.hc_c00492{height:59.069590px;}
.hf_c00492{height:62.201250px;}
.hb_c00492{height:65.332910px;}
.hd_c00492{height:68.410576px;}
.h7_c00492{height:71.542236px;}
.h1a_c00492{height:80.883223px;}
.h1b_c00492{height:83.960889px;}
.h11_c00492{height:87.092549px;}
.h12_c00492{height:102.642861px;}
.h0_c00492{height:1515.450000px;}
.h1_c00492{height:1515.750000px;}
.w0_c00492{width:1088.640000px;}
.w1_c00492{width:1089.000000px;}
.x0_c00492{left:0.000000px;}
.x18_c00492{left:192.675000px;}
.x1a_c00492{left:272.160000px;}
.x1b_c00492{left:343.875000px;}
.x1c_c00492{left:362.880000px;}
.x8_c00492{left:398.310000px;}
.xf_c00492{left:421.635000px;}
.x9_c00492{left:423.360000px;}
.xa_c00492{left:432.870000px;}
.xb_c00492{left:450.150000px;}
.x1d_c00492{left:456.195000px;}
.xc_c00492{left:470.880000px;}
.xd_c00492{left:486.435000px;}
.x19_c00492{left:510.630000px;}
.xe_c00492{left:532.230000px;}
.x10_c00492{left:561.600000px;}
.x11_c00492{left:578.010000px;}
.x12_c00492{left:596.160000px;}
.x1e_c00492{left:605.670000px;}
.x26_c00492{left:609.990000px;}
.x13_c00492{left:614.310000px;}
.x27_c00492{left:620.355000px;}
.x2d_c00492{left:622.080000px;}
.x1f_c00492{left:626.400000px;}
.x14_c00492{left:631.590000px;}
.x5_c00492{left:640.230000px;}
.x2e_c00492{left:643.680000px;}
.x20_c00492{left:648.000000px;}
.x15_c00492{left:652.320000px;}
.x21_c00492{left:656.640000px;}
.x2f_c00492{left:665.280000px;}
.x16_c00492{left:672.195000px;}
.x2c_c00492{left:678.240000px;}
.x28_c00492{left:680.835000px;}
.x30_c00492{left:684.285000px;}
.x17_c00492{left:686.010000px;}
.x22_c00492{left:688.605000px;}
.x29_c00492{left:703.290000px;}
.x31_c00492{left:706.755000px;}
.x23_c00492{left:712.800000px;}
.x24_c00492{left:728.355000px;}
.x2a_c00492{left:736.125000px;}
.x25_c00492{left:758.595000px;}
.x32_c00492{left:906.330000px;}
.x33_c00492{left:912.390000px;}
.x34_c00492{left:975.450000px;}
.x35_c00492{left:991.875000px;}
.x1_c00492{left:1018.650000px;}
.x2b_c00492{left:1026.435000px;}
.x2_c00492{left:1030.755000px;}
.x6_c00492{left:1033.350000px;}
.x7_c00492{left:1035.075000px;}
.x3_c00492{left:1053.210000px;}
.x4_c00492{left:1067.910000px;}
.x36_c00492{left:1071.360000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws0_c00492{word-spacing:0.000000pt;}
.fs11_c00492{font-size:3.072000pt;}
.fs17_c00492{font-size:5.333333pt;}
.fs1_c00492{font-size:6.133333pt;}
.fs6_c00492{font-size:9.226667pt;}
.fs12_c00492{font-size:12.266667pt;}
.fs3_c00492{font-size:15.360000pt;}
.fs4_c00492{font-size:18.453333pt;}
.fs0_c00492{font-size:21.493333pt;}
.fs8_c00492{font-size:24.586667pt;}
.fs13_c00492{font-size:27.626667pt;}
.fs2_c00492{font-size:30.720000pt;}
.fs16_c00492{font-size:33.813333pt;}
.fs15_c00492{font-size:39.946667pt;}
.fs14_c00492{font-size:42.986667pt;}
.fse_c00492{font-size:49.173333pt;}
.fsc_c00492{font-size:52.213333pt;}
.fs7_c00492{font-size:55.306667pt;}
.fsa_c00492{font-size:58.346667pt;}
.fsd_c00492{font-size:61.440000pt;}
.fs9_c00492{font-size:64.533333pt;}
.fsb_c00492{font-size:67.573333pt;}
.fs5_c00492{font-size:70.666667pt;}
.fs18_c00492{font-size:79.893333pt;}
.fs19_c00492{font-size:82.933333pt;}
.fsf_c00492{font-size:86.026667pt;}
.fs10_c00492{font-size:101.386667pt;}
.y0_c00492{bottom:0.000000pt;}
.y2b_c00492{bottom:337.146667pt;}
.y29_c00492{bottom:832.506667pt;}
.y2a_c00492{bottom:834.053333pt;}
.y28_c00492{bottom:840.186667pt;}
.y26_c00492{bottom:867.066667pt;}
.y27_c00492{bottom:869.373333pt;}
.y25_c00492{bottom:958.466667pt;}
.y1_c00492{bottom:1095.933333pt;}
.y2_c00492{bottom:1100.546667pt;}
.y3_c00492{bottom:1102.080000pt;}
.y24_c00492{bottom:1117.440000pt;}
.y23_c00492{bottom:1121.280000pt;}
.y22_c00492{bottom:1122.053333pt;}
.y21_c00492{bottom:1132.800000pt;}
.y20_c00492{bottom:1139.706667pt;}
.y1f_c00492{bottom:1143.546667pt;}
.y14_c00492{bottom:1153.533333pt;}
.y12_c00492{bottom:1155.066667pt;}
.y13_c00492{bottom:1161.213333pt;}
.y1b_c00492{bottom:1161.986667pt;}
.y1e_c00492{bottom:1162.746667pt;}
.y1c_c00492{bottom:1164.293333pt;}
.y1d_c00492{bottom:1165.826667pt;}
.y15_c00492{bottom:1166.586667pt;}
.y17_c00492{bottom:1172.733333pt;}
.y1a_c00492{bottom:1173.506667pt;}
.y19_c00492{bottom:1175.040000pt;}
.y18_c00492{bottom:1175.813333pt;}
.y16_c00492{bottom:1176.573333pt;}
.y11_c00492{bottom:1181.946667pt;}
.yf_c00492{bottom:1212.666667pt;}
.y10_c00492{bottom:1214.973333pt;}
.yb_c00492{bottom:1225.733333pt;}
.ya_c00492{bottom:1230.333333pt;}
.yd_c00492{bottom:1235.706667pt;}
.ye_c00492{bottom:1237.253333pt;}
.yc_c00492{bottom:1238.786667pt;}
.y7_c00492{bottom:1239.546667pt;}
.y9_c00492{bottom:1240.320000pt;}
.y8_c00492{bottom:1243.386667pt;}
.y6_c00492{bottom:1256.453333pt;}
.y5_c00492{bottom:1263.360000pt;}
.y4_c00492{bottom:1285.626667pt;}
.h13_c00492{height:2.764500pt;}
.h19_c00492{height:4.799479pt;}
.h3_c00492{height:5.519401pt;}
.h8_c00492{height:8.303099pt;}
.h14_c00492{height:11.038802pt;}
.h5_c00492{height:13.822500pt;}
.h6_c00492{height:16.606198pt;}
.h2_c00492{height:19.341901pt;}
.ha_c00492{height:22.125599pt;}
.h15_c00492{height:24.861302pt;}
.h4_c00492{height:27.645000pt;}
.h18_c00492{height:30.428698pt;}
.h17_c00492{height:35.948099pt;}
.h16_c00492{height:38.683802pt;}
.h10_c00492{height:44.251198pt;}
.he_c00492{height:46.986901pt;}
.h9_c00492{height:49.770599pt;}
.hc_c00492{height:52.506302pt;}
.hf_c00492{height:55.290000pt;}
.hb_c00492{height:58.073698pt;}
.hd_c00492{height:60.809401pt;}
.h7_c00492{height:63.593099pt;}
.h1a_c00492{height:71.896198pt;}
.h1b_c00492{height:74.631901pt;}
.h11_c00492{height:77.415599pt;}
.h12_c00492{height:91.238099pt;}
.h0_c00492{height:1347.066667pt;}
.h1_c00492{height:1347.333333pt;}
.w0_c00492{width:967.680000pt;}
.w1_c00492{width:968.000000pt;}
.x0_c00492{left:0.000000pt;}
.x18_c00492{left:171.266667pt;}
.x1a_c00492{left:241.920000pt;}
.x1b_c00492{left:305.666667pt;}
.x1c_c00492{left:322.560000pt;}
.x8_c00492{left:354.053333pt;}
.xf_c00492{left:374.786667pt;}
.x9_c00492{left:376.320000pt;}
.xa_c00492{left:384.773333pt;}
.xb_c00492{left:400.133333pt;}
.x1d_c00492{left:405.506667pt;}
.xc_c00492{left:418.560000pt;}
.xd_c00492{left:432.386667pt;}
.x19_c00492{left:453.893333pt;}
.xe_c00492{left:473.093333pt;}
.x10_c00492{left:499.200000pt;}
.x11_c00492{left:513.786667pt;}
.x12_c00492{left:529.920000pt;}
.x1e_c00492{left:538.373333pt;}
.x26_c00492{left:542.213333pt;}
.x13_c00492{left:546.053333pt;}
.x27_c00492{left:551.426667pt;}
.x2d_c00492{left:552.960000pt;}
.x1f_c00492{left:556.800000pt;}
.x14_c00492{left:561.413333pt;}
.x5_c00492{left:569.093333pt;}
.x2e_c00492{left:572.160000pt;}
.x20_c00492{left:576.000000pt;}
.x15_c00492{left:579.840000pt;}
.x21_c00492{left:583.680000pt;}
.x2f_c00492{left:591.360000pt;}
.x16_c00492{left:597.506667pt;}
.x2c_c00492{left:602.880000pt;}
.x28_c00492{left:605.186667pt;}
.x30_c00492{left:608.253333pt;}
.x17_c00492{left:609.786667pt;}
.x22_c00492{left:612.093333pt;}
.x29_c00492{left:625.146667pt;}
.x31_c00492{left:628.226667pt;}
.x23_c00492{left:633.600000pt;}
.x24_c00492{left:647.426667pt;}
.x2a_c00492{left:654.333333pt;}
.x25_c00492{left:674.306667pt;}
.x32_c00492{left:805.626667pt;}
.x33_c00492{left:811.013333pt;}
.x34_c00492{left:867.066667pt;}
.x35_c00492{left:881.666667pt;}
.x1_c00492{left:905.466667pt;}
.x2b_c00492{left:912.386667pt;}
.x2_c00492{left:916.226667pt;}
.x6_c00492{left:918.533333pt;}
.x7_c00492{left:920.066667pt;}
.x3_c00492{left:936.186667pt;}
.x4_c00492{left:949.253333pt;}
.x36_c00492{left:952.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_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_6f7509bf5d2473bd3b9e2745.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.109863;font-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_c00493{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m9_c00493{transform:matrix(0.021000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021000,0.000000,0.000000,0.250000,0,0);}
.ma_c00493{transform:matrix(0.031125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031125,0.000000,0.000000,0.250000,0,0);}
.m4_c00493{transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);}
.m3_c00493{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.me_c00493{transform:matrix(0.053625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053625,0.000000,0.000000,0.250000,0,0);}
.m8_c00493{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m5_c00493{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m1_c00493{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00493{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);}
.mc_c00493{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);}
.m6_c00493{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c00493{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c00493{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);}
.md_c00493{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);}
.m0_c00493{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m10_c00493{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);}
.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;}
.fse_c00493{font-size:3.456000px;}
.fs1_c00493{font-size:10.380000px;}
.fs6_c00493{font-size:17.280000px;}
.fs0_c00493{font-size:20.760000px;}
.fs5_c00493{font-size:24.180000px;}
.fsa_c00493{font-size:27.660000px;}
.fsf_c00493{font-size:31.080000px;}
.fsd_c00493{font-size:48.360000px;}
.fsc_c00493{font-size:62.220000px;}
.fsb_c00493{font-size:65.640000px;}
.fs3_c00493{font-size:72.600000px;}
.fs2_c00493{font-size:86.400000px;}
.fs4_c00493{font-size:93.300000px;}
.fs9_c00493{font-size:100.200000px;}
.fs7_c00493{font-size:103.680000px;}
.fs8_c00493{font-size:148.620000px;}
.y0_c00493{bottom:0.000000px;}
.y11_c00493{bottom:776.730000px;}
.yf_c00493{bottom:789.690000px;}
.y10_c00493{bottom:790.560000px;}
.yc_c00493{bottom:797.475000px;}
.ye_c00493{bottom:806.970000px;}
.yd_c00493{bottom:808.710000px;}
.yb_c00493{bottom:828.570000px;}
.ya_c00493{bottom:836.355000px;}
.y9_c00493{bottom:883.875000px;}
.y8_c00493{bottom:888.195000px;}
.y7_c00493{bottom:916.710000px;}
.y5_c00493{bottom:934.845000px;}
.y6_c00493{bottom:936.570000px;}
.y4_c00493{bottom:943.485000px;}
.y14_c00493{bottom:974.595000px;}
.y15_c00493{bottom:976.320000px;}
.y3_c00493{bottom:980.640000px;}
.y2_c00493{bottom:998.790000px;}
.y1_c00493{bottom:1076.550000px;}
.y12_c00493{bottom:1283.910000px;}
.y13_c00493{bottom:1284.765000px;}
.h10_c00493{height:3.110063px;}
.h3_c00493{height:9.340986px;}
.h8_c00493{height:15.550313px;}
.h2_c00493{height:18.681973px;}
.h7_c00493{height:21.759639px;}
.hc_c00493{height:24.891299px;}
.h11_c00493{height:27.968965px;}
.hf_c00493{height:43.519277px;}
.he_c00493{height:55.991924px;}
.hd_c00493{height:59.069590px;}
.h5_c00493{height:65.332910px;}
.h4_c00493{height:77.751563px;}
.h6_c00493{height:83.960889px;}
.hb_c00493{height:90.170215px;}
.h9_c00493{height:93.301875px;}
.ha_c00493{height:133.743486px;}
.h0_c00493{height:1505.955000px;}
.h1_c00493{height:1506.000000px;}
.w1_c00493{width:1104.000000px;}
.w0_c00493{width:1104.195000px;}
.x0_c00493{left:0.000000px;}
.x1_c00493{left:41.475000px;}
.x2_c00493{left:47.520000px;}
.x3_c00493{left:108.870000px;}
.x4_c00493{left:110.595000px;}
.x5_c00493{left:126.150000px;}
.x6_c00493{left:133.050000px;}
.x8_c00493{left:142.560000px;}
.x7_c00493{left:150.330000px;}
.x9_c00493{left:152.925000px;}
.xa_c00493{left:161.565000px;}
.xb_c00493{left:165.885000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ws0_c00493{word-spacing:0.000000pt;}
.fse_c00493{font-size:3.072000pt;}
.fs1_c00493{font-size:9.226667pt;}
.fs6_c00493{font-size:15.360000pt;}
.fs0_c00493{font-size:18.453333pt;}
.fs5_c00493{font-size:21.493333pt;}
.fsa_c00493{font-size:24.586667pt;}
.fsf_c00493{font-size:27.626667pt;}
.fsd_c00493{font-size:42.986667pt;}
.fsc_c00493{font-size:55.306667pt;}
.fsb_c00493{font-size:58.346667pt;}
.fs3_c00493{font-size:64.533333pt;}
.fs2_c00493{font-size:76.800000pt;}
.fs4_c00493{font-size:82.933333pt;}
.fs9_c00493{font-size:89.066667pt;}
.fs7_c00493{font-size:92.160000pt;}
.fs8_c00493{font-size:132.106667pt;}
.y0_c00493{bottom:0.000000pt;}
.y11_c00493{bottom:690.426667pt;}
.yf_c00493{bottom:701.946667pt;}
.y10_c00493{bottom:702.720000pt;}
.yc_c00493{bottom:708.866667pt;}
.ye_c00493{bottom:717.306667pt;}
.yd_c00493{bottom:718.853333pt;}
.yb_c00493{bottom:736.506667pt;}
.ya_c00493{bottom:743.426667pt;}
.y9_c00493{bottom:785.666667pt;}
.y8_c00493{bottom:789.506667pt;}
.y7_c00493{bottom:814.853333pt;}
.y5_c00493{bottom:830.973333pt;}
.y6_c00493{bottom:832.506667pt;}
.y4_c00493{bottom:838.653333pt;}
.y14_c00493{bottom:866.306667pt;}
.y15_c00493{bottom:867.840000pt;}
.y3_c00493{bottom:871.680000pt;}
.y2_c00493{bottom:887.813333pt;}
.y1_c00493{bottom:956.933333pt;}
.y12_c00493{bottom:1141.253333pt;}
.y13_c00493{bottom:1142.013333pt;}
.h10_c00493{height:2.764500pt;}
.h3_c00493{height:8.303099pt;}
.h8_c00493{height:13.822500pt;}
.h2_c00493{height:16.606198pt;}
.h7_c00493{height:19.341901pt;}
.hc_c00493{height:22.125599pt;}
.h11_c00493{height:24.861302pt;}
.hf_c00493{height:38.683802pt;}
.he_c00493{height:49.770599pt;}
.hd_c00493{height:52.506302pt;}
.h5_c00493{height:58.073698pt;}
.h4_c00493{height:69.112500pt;}
.h6_c00493{height:74.631901pt;}
.hb_c00493{height:80.151302pt;}
.h9_c00493{height:82.935000pt;}
.ha_c00493{height:118.883099pt;}
.h0_c00493{height:1338.626667pt;}
.h1_c00493{height:1338.666667pt;}
.w1_c00493{width:981.333333pt;}
.w0_c00493{width:981.506667pt;}
.x0_c00493{left:0.000000pt;}
.x1_c00493{left:36.866667pt;}
.x2_c00493{left:42.240000pt;}
.x3_c00493{left:96.773333pt;}
.x4_c00493{left:98.306667pt;}
.x5_c00493{left:112.133333pt;}
.x6_c00493{left:118.266667pt;}
.x8_c00493{left:126.720000pt;}
.x7_c00493{left:133.626667pt;}
.x9_c00493{left:135.933333pt;}
.xa_c00493{left:143.613333pt;}
.xb_c00493{left:147.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f8ee8cde4cdb786b549246d.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.109863;font-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_c00494{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c00494{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m7_c00494{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c00494{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4_c00494{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m6_c00494{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m5_c00494{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1_c00494{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,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;}
.fs5_c00494{font-size:3.456000px;}
.fs1_c00494{font-size:6.900000px;}
.fs3_c00494{font-size:10.380000px;}
.fs2_c00494{font-size:13.800000px;}
.fs4_c00494{font-size:17.280000px;}
.fs0_c00494{font-size:38.040000px;}
.y0_c00494{bottom:0.000000px;}
.y9_c00494{bottom:832.035000px;}
.y8_c00494{bottom:837.210000px;}
.y6_c00494{bottom:948.675000px;}
.y7_c00494{bottom:952.995000px;}
.y4_c00494{bottom:1383.270000px;}
.y5_c00494{bottom:1385.850000px;}
.y2_c00494{bottom:1391.040000px;}
.y3_c00494{bottom:1392.765000px;}
.y1_c00494{bottom:1399.680000px;}
.h7_c00494{height:3.110063px;}
.h3_c00494{height:6.209326px;}
.h5_c00494{height:9.340986px;}
.h4_c00494{height:12.418652px;}
.h6_c00494{height:15.550313px;}
.h2_c00494{height:34.232285px;}
.h0_c00494{height:1515.450000px;}
.h1_c00494{height:1515.750000px;}
.w0_c00494{width:1088.640000px;}
.w1_c00494{width:1089.000000px;}
.x0_c00494{left:0.000000px;}
.x2_c00494{left:977.190000px;}
.x1_c00494{left:992.730000px;}
.x3_c00494{left:1005.690000px;}
.x7_c00494{left:1035.075000px;}
.x8_c00494{left:1037.670000px;}
.x6_c00494{left:1046.310000px;}
.x4_c00494{left:1059.270000px;}
.x5_c00494{left:1068.765000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ws0_c00494{word-spacing:0.000000pt;}
.fs5_c00494{font-size:3.072000pt;}
.fs1_c00494{font-size:6.133333pt;}
.fs3_c00494{font-size:9.226667pt;}
.fs2_c00494{font-size:12.266667pt;}
.fs4_c00494{font-size:15.360000pt;}
.fs0_c00494{font-size:33.813333pt;}
.y0_c00494{bottom:0.000000pt;}
.y9_c00494{bottom:739.586667pt;}
.y8_c00494{bottom:744.186667pt;}
.y6_c00494{bottom:843.266667pt;}
.y7_c00494{bottom:847.106667pt;}
.y4_c00494{bottom:1229.573333pt;}
.y5_c00494{bottom:1231.866667pt;}
.y2_c00494{bottom:1236.480000pt;}
.y3_c00494{bottom:1238.013333pt;}
.y1_c00494{bottom:1244.160000pt;}
.h7_c00494{height:2.764500pt;}
.h3_c00494{height:5.519401pt;}
.h5_c00494{height:8.303099pt;}
.h4_c00494{height:11.038802pt;}
.h6_c00494{height:13.822500pt;}
.h2_c00494{height:30.428698pt;}
.h0_c00494{height:1347.066667pt;}
.h1_c00494{height:1347.333333pt;}
.w0_c00494{width:967.680000pt;}
.w1_c00494{width:968.000000pt;}
.x0_c00494{left:0.000000pt;}
.x2_c00494{left:868.613333pt;}
.x1_c00494{left:882.426667pt;}
.x3_c00494{left:893.946667pt;}
.x7_c00494{left:920.066667pt;}
.x8_c00494{left:922.373333pt;}
.x6_c00494{left:930.053333pt;}
.x4_c00494{left:941.573333pt;}
.x5_c00494{left:950.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_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_1516a444f569aacb3ae3ab9c.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.109863;font-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_c00495{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c00495{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c00495{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);}
.m3_c00495{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c00495{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m4_c00495{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,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;}
.fs1_c00495{font-size:6.000000px;}
.fs4_c00495{font-size:6.900000px;}
.fs3_c00495{font-size:13.800000px;}
.fs5_c00495{font-size:20.760000px;}
.fs2_c00495{font-size:27.660000px;}
.fs0_c00495{font-size:38.040000px;}
.y0_c00495{bottom:0.000000px;}
.y1_c00495{bottom:857.085000px;}
.y7_c00495{bottom:944.355000px;}
.y6_c00495{bottom:946.950000px;}
.y2_c00495{bottom:1322.790000px;}
.y3_c00495{bottom:1325.370000px;}
.y4_c00495{bottom:1381.530000px;}
.y5_c00495{bottom:1384.995000px;}
.h3_c00495{height:5.399414px;}
.h6_c00495{height:6.209326px;}
.h5_c00495{height:12.418652px;}
.h7_c00495{height:18.681973px;}
.h4_c00495{height:24.891299px;}
.h2_c00495{height:34.232285px;}
.h0_c00495{height:1505.955000px;}
.h1_c00495{height:1506.000000px;}
.w1_c00495{width:1104.000000px;}
.w0_c00495{width:1104.195000px;}
.x0_c00495{left:0.000000px;}
.x1_c00495{left:31.965000px;}
.x2_c00495{left:125.280000px;}
.x3_c00495{left:133.050000px;}
.x6_c00495{left:181.440000px;}
.x4_c00495{left:194.400000px;}
.x5_c00495{left:203.910000px;}
.x7_c00495{left:209.085000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls0_c00495{letter-spacing:0.000000pt;}
.ws0_c00495{word-spacing:0.000000pt;}
.fs1_c00495{font-size:5.333333pt;}
.fs4_c00495{font-size:6.133333pt;}
.fs3_c00495{font-size:12.266667pt;}
.fs5_c00495{font-size:18.453333pt;}
.fs2_c00495{font-size:24.586667pt;}
.fs0_c00495{font-size:33.813333pt;}
.y0_c00495{bottom:0.000000pt;}
.y1_c00495{bottom:761.853333pt;}
.y7_c00495{bottom:839.426667pt;}
.y6_c00495{bottom:841.733333pt;}
.y2_c00495{bottom:1175.813333pt;}
.y3_c00495{bottom:1178.106667pt;}
.y4_c00495{bottom:1228.026667pt;}
.y5_c00495{bottom:1231.106667pt;}
.h3_c00495{height:4.799479pt;}
.h6_c00495{height:5.519401pt;}
.h5_c00495{height:11.038802pt;}
.h7_c00495{height:16.606198pt;}
.h4_c00495{height:22.125599pt;}
.h2_c00495{height:30.428698pt;}
.h0_c00495{height:1338.626667pt;}
.h1_c00495{height:1338.666667pt;}
.w1_c00495{width:981.333333pt;}
.w0_c00495{width:981.506667pt;}
.x0_c00495{left:0.000000pt;}
.x1_c00495{left:28.413333pt;}
.x2_c00495{left:111.360000pt;}
.x3_c00495{left:118.266667pt;}
.x6_c00495{left:161.280000pt;}
.x4_c00495{left:172.800000pt;}
.x5_c00495{left:181.253333pt;}
.x7_c00495{left:185.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_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_750b40b1a4e3b9417a0adebb.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.109863;font-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_c00496{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m6_c00496{transform:matrix(0.080425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080425,0.000000,0.000000,0.250000,0,0);}
.m9_c00496{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m2_c00496{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m8_c00496{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m4_c00496{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me_c00496{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);}
.m0_c00496{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c00496{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c00496{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);}
.mb_c00496{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mc_c00496{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m7_c00496{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3_c00496{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma_c00496{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.v1_c00496{vertical-align:10.320000px;}
.ls1_c00496{letter-spacing:0.000000px;}
.ls0_c00496{letter-spacing:85.213440px;}
.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;}
.fs4_c00496{font-size:3.456000px;}
.fs3_c00496{font-size:10.380000px;}
.fs2_c00496{font-size:13.800000px;}
.fs1_c00496{font-size:17.280000px;}
.fs7_c00496{font-size:20.760000px;}
.fs9_c00496{font-size:24.180000px;}
.fs0_c00496{font-size:27.660000px;}
.fs8_c00496{font-size:31.080000px;}
.fs5_c00496{font-size:34.560000px;}
.fs6_c00496{font-size:41.460000px;}
.y0_c00496{bottom:0.000000px;}
.y11_c00496{bottom:545.190000px;}
.y10_c00496{bottom:546.915000px;}
.ye_c00496{bottom:679.965000px;}
.yf_c00496{bottom:686.880000px;}
.yd_c00496{bottom:704.160000px;}
.yc_c00496{bottom:914.970000px;}
.ya_c00496{bottom:922.755000px;}
.yb_c00496{bottom:925.350000px;}
.y9_c00496{bottom:987.555000px;}
.y8_c00496{bottom:1059.270000px;}
.y6_c00496{bottom:1115.430000px;}
.y5_c00496{bottom:1118.010000px;}
.y7_c00496{bottom:1120.605000px;}
.y4_c00496{bottom:1250.205000px;}
.y3_c00496{bottom:1254.525000px;}
.y2_c00496{bottom:1389.315000px;}
.y1_c00496{bottom:1390.170000px;}
.h6_c00496{height:3.110063px;}
.h5_c00496{height:9.340986px;}
.h4_c00496{height:12.418652px;}
.h3_c00496{height:15.550313px;}
.ha_c00496{height:18.681973px;}
.hc_c00496{height:21.759639px;}
.h2_c00496{height:24.891299px;}
.h9_c00496{height:25.870312px;}
.hb_c00496{height:27.968965px;}
.h7_c00496{height:31.100625px;}
.h8_c00496{height:37.309951px;}
.h0_c00496{height:1515.450000px;}
.h1_c00496{height:1515.750000px;}
.w0_c00496{width:1079.130000px;}
.w1_c00496{width:1079.250000px;}
.x0_c00496{left:0.000000px;}
.xa_c00496{left:971.130000px;}
.xf_c00496{left:983.235000px;}
.xb_c00496{left:987.555000px;}
.x10_c00496{left:991.005000px;}
.x1_c00496{left:1003.965000px;}
.x5_c00496{left:1007.430000px;}
.x9_c00496{left:1015.200000px;}
.x2_c00496{left:1019.520000px;}
.x6_c00496{left:1023.840000px;}
.xd_c00496{left:1025.565000px;}
.x7_c00496{left:1038.525000px;}
.x4_c00496{left:1040.250000px;}
.x3_c00496{left:1045.440000px;}
.xc_c00496{left:1047.165000px;}
.xe_c00496{left:1049.760000px;}
.x8_c00496{left:1053.210000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.v1_c00496{vertical-align:9.173333pt;}
.ls1_c00496{letter-spacing:0.000000pt;}
.ls0_c00496{letter-spacing:75.745280pt;}
.ws0_c00496{word-spacing:0.000000pt;}
.fs4_c00496{font-size:3.072000pt;}
.fs3_c00496{font-size:9.226667pt;}
.fs2_c00496{font-size:12.266667pt;}
.fs1_c00496{font-size:15.360000pt;}
.fs7_c00496{font-size:18.453333pt;}
.fs9_c00496{font-size:21.493333pt;}
.fs0_c00496{font-size:24.586667pt;}
.fs8_c00496{font-size:27.626667pt;}
.fs5_c00496{font-size:30.720000pt;}
.fs6_c00496{font-size:36.853333pt;}
.y0_c00496{bottom:0.000000pt;}
.y11_c00496{bottom:484.613333pt;}
.y10_c00496{bottom:486.146667pt;}
.ye_c00496{bottom:604.413333pt;}
.yf_c00496{bottom:610.560000pt;}
.yd_c00496{bottom:625.920000pt;}
.yc_c00496{bottom:813.306667pt;}
.ya_c00496{bottom:820.226667pt;}
.yb_c00496{bottom:822.533333pt;}
.y9_c00496{bottom:877.826667pt;}
.y8_c00496{bottom:941.573333pt;}
.y6_c00496{bottom:991.493333pt;}
.y5_c00496{bottom:993.786667pt;}
.y7_c00496{bottom:996.093333pt;}
.y4_c00496{bottom:1111.293333pt;}
.y3_c00496{bottom:1115.133333pt;}
.y2_c00496{bottom:1234.946667pt;}
.y1_c00496{bottom:1235.706667pt;}
.h6_c00496{height:2.764500pt;}
.h5_c00496{height:8.303099pt;}
.h4_c00496{height:11.038802pt;}
.h3_c00496{height:13.822500pt;}
.ha_c00496{height:16.606198pt;}
.hc_c00496{height:19.341901pt;}
.h2_c00496{height:22.125599pt;}
.h9_c00496{height:22.995833pt;}
.hb_c00496{height:24.861302pt;}
.h7_c00496{height:27.645000pt;}
.h8_c00496{height:33.164401pt;}
.h0_c00496{height:1347.066667pt;}
.h1_c00496{height:1347.333333pt;}
.w0_c00496{width:959.226667pt;}
.w1_c00496{width:959.333333pt;}
.x0_c00496{left:0.000000pt;}
.xa_c00496{left:863.226667pt;}
.xf_c00496{left:873.986667pt;}
.xb_c00496{left:877.826667pt;}
.x10_c00496{left:880.893333pt;}
.x1_c00496{left:892.413333pt;}
.x5_c00496{left:895.493333pt;}
.x9_c00496{left:902.400000pt;}
.x2_c00496{left:906.240000pt;}
.x6_c00496{left:910.080000pt;}
.xd_c00496{left:911.613333pt;}
.x7_c00496{left:923.133333pt;}
.x4_c00496{left:924.666667pt;}
.x3_c00496{left:929.280000pt;}
.xc_c00496{left:930.813333pt;}
.xe_c00496{left:933.120000pt;}
.x8_c00496{left:936.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0919d7f0af54602b83ed6da7.woff2')format("woff");}.ff1_c00497{font-family:ff1_c00497;line-height:1.109863;font-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_c00497{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);}
.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;}
.fs0_c00497{font-size:600.000000px;}
.y0_c00497{bottom:0.000000px;}
.y1_c00497{bottom:15.000000px;}
.h2_c00497{height:539.941406px;}
.h0_c00497{height:1499.910000px;}
.h1_c00497{height:1500.000000px;}
.w0_c00497{width:1111.965000px;}
.w1_c00497{width:1112.250000px;}
.x0_c00497{left:0.000000px;}
.x1_c00497{left:15.000000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ws0_c00497{word-spacing:0.000000pt;}
.fs0_c00497{font-size:533.333333pt;}
.y0_c00497{bottom:0.000000pt;}
.y1_c00497{bottom:13.333333pt;}
.h2_c00497{height:479.947917pt;}
.h0_c00497{height:1333.253333pt;}
.h1_c00497{height:1333.333333pt;}
.w0_c00497{width:988.413333pt;}
.w1_c00497{width:988.666667pt;}
.x0_c00497{left:0.000000pt;}
.x1_c00497{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_489d5185a606328f51d39d77.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.109863;font-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_c00498{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m13_c00498{transform:matrix(0.088950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088950,0.000000,0.000000,0.250000,0,0);}
.m1_c00498{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m14_c00498{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m11_c00498{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m8_c00498{transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);}
.m5_c00498{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);}
.m6_c00498{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c00498{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c00498{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c00498{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c00498{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);}
.m7_c00498{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m10_c00498{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m3_c00498{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma_c00498{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mb_c00498{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4_c00498{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.me_c00498{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mc_c00498{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);}
.md_c00498{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m15_c00498{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m12_c00498{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,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;}
.fs8_c00498{font-size:3.456000px;}
.fs0_c00498{font-size:6.000000px;}
.fsb_c00498{font-size:6.900000px;}
.fs1_c00498{font-size:10.380000px;}
.fs9_c00498{font-size:13.800000px;}
.fs7_c00498{font-size:17.280000px;}
.fse_c00498{font-size:20.760000px;}
.fsd_c00498{font-size:24.180000px;}
.fsa_c00498{font-size:31.080000px;}
.fs4_c00498{font-size:34.560000px;}
.fs2_c00498{font-size:55.320000px;}
.fs5_c00498{font-size:58.740000px;}
.fs6_c00498{font-size:65.640000px;}
.fsc_c00498{font-size:76.020000px;}
.fs3_c00498{font-size:86.400000px;}
.y0_c00498{bottom:0.000000px;}
.y16_c00498{bottom:664.410000px;}
.y17_c00498{bottom:667.005000px;}
.y15_c00498{bottom:685.155000px;}
.y14_c00498{bottom:757.725000px;}
.y13_c00498{bottom:910.650000px;}
.y11_c00498{bottom:913.245000px;}
.y10_c00498{bottom:914.115000px;}
.yf_c00498{bottom:914.970000px;}
.ye_c00498{bottom:915.840000px;}
.y12_c00498{bottom:926.205000px;}
.yd_c00498{bottom:1130.115000px;}
.yc_c00498{bottom:1141.350000px;}
.ya_c00498{bottom:1160.355000px;}
.yb_c00498{bottom:1163.805000px;}
.y9_c00498{bottom:1285.635000px;}
.y8_c00498{bottom:1396.230000px;}
.y7_c00498{bottom:1397.085000px;}
.y5_c00498{bottom:1397.955000px;}
.y4_c00498{bottom:1398.810000px;}
.y3_c00498{bottom:1401.405000px;}
.y6_c00498{bottom:1415.235000px;}
.y2_c00498{bottom:1448.070000px;}
.y1_c00498{bottom:1452.390000px;}
.ha_c00498{height:3.110063px;}
.h2_c00498{height:5.399414px;}
.hd_c00498{height:6.209326px;}
.h3_c00498{height:9.340986px;}
.hb_c00498{height:12.418652px;}
.h9_c00498{height:15.550313px;}
.h10_c00498{height:18.681973px;}
.hf_c00498{height:21.759639px;}
.hc_c00498{height:27.968965px;}
.h6_c00498{height:31.100625px;}
.h4_c00498{height:49.782598px;}
.h7_c00498{height:52.860264px;}
.h8_c00498{height:59.069590px;}
.he_c00498{height:68.410576px;}
.h5_c00498{height:77.751563px;}
.h0_c00498{height:1515.450000px;}
.h1_c00498{height:1515.750000px;}
.w0_c00498{width:1079.130000px;}
.w1_c00498{width:1079.250000px;}
.x0_c00498{left:0.000000px;}
.x3_c00498{left:329.190000px;}
.x4_c00498{left:353.370000px;}
.x5_c00498{left:375.840000px;}
.x7_c00498{left:533.955000px;}
.x8_c00498{left:550.365000px;}
.x9_c00498{left:571.110000px;}
.xa_c00498{left:590.970000px;}
.xb_c00498{left:612.570000px;}
.xc_c00498{left:635.910000px;}
.xd_c00498{left:660.960000px;}
.x1_c00498{left:677.370000px;}
.x2_c00498{left:686.880000px;}
.x13_c00498{left:698.115000px;}
.x14_c00498{left:719.715000px;}
.x15_c00498{left:734.400000px;}
.x6_c00498{left:918.435000px;}
.x19_c00498{left:984.960000px;}
.x1a_c00498{left:1003.110000px;}
.x16_c00498{left:1011.750000px;}
.x17_c00498{left:1023.840000px;}
.xe_c00498{left:1027.290000px;}
.x18_c00498{left:1035.930000px;}
.xf_c00498{left:1063.590000px;}
.x12_c00498{left:1067.040000px;}
.x11_c00498{left:1069.635000px;}
.x10_c00498{left:1072.230000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws0_c00498{word-spacing:0.000000pt;}
.fs8_c00498{font-size:3.072000pt;}
.fs0_c00498{font-size:5.333333pt;}
.fsb_c00498{font-size:6.133333pt;}
.fs1_c00498{font-size:9.226667pt;}
.fs9_c00498{font-size:12.266667pt;}
.fs7_c00498{font-size:15.360000pt;}
.fse_c00498{font-size:18.453333pt;}
.fsd_c00498{font-size:21.493333pt;}
.fsa_c00498{font-size:27.626667pt;}
.fs4_c00498{font-size:30.720000pt;}
.fs2_c00498{font-size:49.173333pt;}
.fs5_c00498{font-size:52.213333pt;}
.fs6_c00498{font-size:58.346667pt;}
.fsc_c00498{font-size:67.573333pt;}
.fs3_c00498{font-size:76.800000pt;}
.y0_c00498{bottom:0.000000pt;}
.y16_c00498{bottom:590.586667pt;}
.y17_c00498{bottom:592.893333pt;}
.y15_c00498{bottom:609.026667pt;}
.y14_c00498{bottom:673.533333pt;}
.y13_c00498{bottom:809.466667pt;}
.y11_c00498{bottom:811.773333pt;}
.y10_c00498{bottom:812.546667pt;}
.yf_c00498{bottom:813.306667pt;}
.ye_c00498{bottom:814.080000pt;}
.y12_c00498{bottom:823.293333pt;}
.yd_c00498{bottom:1004.546667pt;}
.yc_c00498{bottom:1014.533333pt;}
.ya_c00498{bottom:1031.426667pt;}
.yb_c00498{bottom:1034.493333pt;}
.y9_c00498{bottom:1142.786667pt;}
.y8_c00498{bottom:1241.093333pt;}
.y7_c00498{bottom:1241.853333pt;}
.y5_c00498{bottom:1242.626667pt;}
.y4_c00498{bottom:1243.386667pt;}
.y3_c00498{bottom:1245.693333pt;}
.y6_c00498{bottom:1257.986667pt;}
.y2_c00498{bottom:1287.173333pt;}
.y1_c00498{bottom:1291.013333pt;}
.ha_c00498{height:2.764500pt;}
.h2_c00498{height:4.799479pt;}
.hd_c00498{height:5.519401pt;}
.h3_c00498{height:8.303099pt;}
.hb_c00498{height:11.038802pt;}
.h9_c00498{height:13.822500pt;}
.h10_c00498{height:16.606198pt;}
.hf_c00498{height:19.341901pt;}
.hc_c00498{height:24.861302pt;}
.h6_c00498{height:27.645000pt;}
.h4_c00498{height:44.251198pt;}
.h7_c00498{height:46.986901pt;}
.h8_c00498{height:52.506302pt;}
.he_c00498{height:60.809401pt;}
.h5_c00498{height:69.112500pt;}
.h0_c00498{height:1347.066667pt;}
.h1_c00498{height:1347.333333pt;}
.w0_c00498{width:959.226667pt;}
.w1_c00498{width:959.333333pt;}
.x0_c00498{left:0.000000pt;}
.x3_c00498{left:292.613333pt;}
.x4_c00498{left:314.106667pt;}
.x5_c00498{left:334.080000pt;}
.x7_c00498{left:474.626667pt;}
.x8_c00498{left:489.213333pt;}
.x9_c00498{left:507.653333pt;}
.xa_c00498{left:525.306667pt;}
.xb_c00498{left:544.506667pt;}
.xc_c00498{left:565.253333pt;}
.xd_c00498{left:587.520000pt;}
.x1_c00498{left:602.106667pt;}
.x2_c00498{left:610.560000pt;}
.x13_c00498{left:620.546667pt;}
.x14_c00498{left:639.746667pt;}
.x15_c00498{left:652.800000pt;}
.x6_c00498{left:816.386667pt;}
.x19_c00498{left:875.520000pt;}
.x1a_c00498{left:891.653333pt;}
.x16_c00498{left:899.333333pt;}
.x17_c00498{left:910.080000pt;}
.xe_c00498{left:913.146667pt;}
.x18_c00498{left:920.826667pt;}
.xf_c00498{left:945.413333pt;}
.x12_c00498{left:948.480000pt;}
.x11_c00498{left:950.786667pt;}
.x10_c00498{left:953.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c00499;src:url('chunks/assets/font_d7d33c388d1a410c75123629.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.109863;font-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_c00499{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c00499{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c00499{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);}
.m2_c00499{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);}
.m3_c00499{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c00499{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);}
.m8_c00499{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1_c00499{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);}
.m6_c00499{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m0_c00499{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma_c00499{transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);}
.v0_c00499{vertical-align:0.000000px;}
.ls0_c00499{letter-spacing:0.000000px;}
.sc__c00499{text-shadow:none;}
.sc0_c00499{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00499{-webkit-text-stroke:0px transparent;}
.sc0_c00499{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00499{word-spacing:0.000000px;}
.fc0_c00499{color:transparent;}
.fs0_c00499{font-size:10.380000px;}
.fs4_c00499{font-size:13.800000px;}
.fs3_c00499{font-size:17.280000px;}
.fs2_c00499{font-size:27.660000px;}
.fs1_c00499{font-size:34.560000px;}
.fs5_c00499{font-size:76.020000px;}
.y0_c00499{bottom:0.000000px;}
.yb_c00499{bottom:1078.275000px;}
.ya_c00499{bottom:1079.130000px;}
.y9_c00499{bottom:1121.475000px;}
.y8_c00499{bottom:1134.435000px;}
.y7_c00499{bottom:1142.205000px;}
.y6_c00499{bottom:1182.810000px;}
.y5_c00499{bottom:1213.050000px;}
.y4_c00499{bottom:1216.515000px;}
.y3_c00499{bottom:1229.475000px;}
.y2_c00499{bottom:1277.850000px;}
.y1_c00499{bottom:1292.550000px;}
.h2_c00499{height:9.340986px;}
.h6_c00499{height:12.418652px;}
.h5_c00499{height:15.550313px;}
.h4_c00499{height:24.891299px;}
.h3_c00499{height:31.100625px;}
.h7_c00499{height:68.410576px;}
.h0_c00499{height:1499.910000px;}
.h1_c00499{height:1500.000000px;}
.w0_c00499{width:1111.965000px;}
.w1_c00499{width:1112.250000px;}
.x0_c00499{left:0.000000px;}
.x4_c00499{left:15.555000px;}
.x6_c00499{left:18.150000px;}
.x5_c00499{left:20.730000px;}
.x3_c00499{left:22.470000px;}
.x1_c00499{left:78.630000px;}
.xa_c00499{left:144.285000px;}
.x7_c00499{left:146.010000px;}
.x2_c00499{left:169.350000px;}
.xb_c00499{left:174.525000px;}
.x9_c00499{left:209.955000px;}
.x8_c00499{left:211.680000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ws0_c00499{word-spacing:0.000000pt;}
.fs0_c00499{font-size:9.226667pt;}
.fs4_c00499{font-size:12.266667pt;}
.fs3_c00499{font-size:15.360000pt;}
.fs2_c00499{font-size:24.586667pt;}
.fs1_c00499{font-size:30.720000pt;}
.fs5_c00499{font-size:67.573333pt;}
.y0_c00499{bottom:0.000000pt;}
.yb_c00499{bottom:958.466667pt;}
.ya_c00499{bottom:959.226667pt;}
.y9_c00499{bottom:996.866667pt;}
.y8_c00499{bottom:1008.386667pt;}
.y7_c00499{bottom:1015.293333pt;}
.y6_c00499{bottom:1051.386667pt;}
.y5_c00499{bottom:1078.266667pt;}
.y4_c00499{bottom:1081.346667pt;}
.y3_c00499{bottom:1092.866667pt;}
.y2_c00499{bottom:1135.866667pt;}
.y1_c00499{bottom:1148.933333pt;}
.h2_c00499{height:8.303099pt;}
.h6_c00499{height:11.038802pt;}
.h5_c00499{height:13.822500pt;}
.h4_c00499{height:22.125599pt;}
.h3_c00499{height:27.645000pt;}
.h7_c00499{height:60.809401pt;}
.h0_c00499{height:1333.253333pt;}
.h1_c00499{height:1333.333333pt;}
.w0_c00499{width:988.413333pt;}
.w1_c00499{width:988.666667pt;}
.x0_c00499{left:0.000000pt;}
.x4_c00499{left:13.826667pt;}
.x6_c00499{left:16.133333pt;}
.x5_c00499{left:18.426667pt;}
.x3_c00499{left:19.973333pt;}
.x1_c00499{left:69.893333pt;}
.xa_c00499{left:128.253333pt;}
.x7_c00499{left:129.786667pt;}
.x2_c00499{left:150.533333pt;}
.xb_c00499{left:155.133333pt;}
.x9_c00499{left:186.626667pt;}
.x8_c00499{left:188.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_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_03c0ec52ab190a9efe22f88d.woff2')format("woff");}.ff1_c01000{font-family:ff1_c01000;line-height:1.109863;font-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_c01000{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);}
.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;}
.fs0_c01000{font-size:600.000000px;}
.y0_c01000{bottom:0.000000px;}
.y1_c01000{bottom:15.000000px;}
.h2_c01000{height:539.941406px;}
.h0_c01000{height:1517.190000px;}
.h1_c01000{height:1517.250000px;}
.w0_c01000{width:1079.130000px;}
.w1_c01000{width:1079.250000px;}
.x0_c01000{left:0.000000px;}
.x1_c01000{left:15.000000px;}
@media print{
.v0_c01000{vertical-align:0.000000pt;}
.ls0_c01000{letter-spacing:0.000000pt;}
.ws0_c01000{word-spacing:0.000000pt;}
.fs0_c01000{font-size:533.333333pt;}
.y0_c01000{bottom:0.000000pt;}
.y1_c01000{bottom:13.333333pt;}
.h2_c01000{height:479.947917pt;}
.h0_c01000{height:1348.613333pt;}
.h1_c01000{height:1348.666667pt;}
.w0_c01000{width:959.226667pt;}
.w1_c01000{width:959.333333pt;}
.x0_c01000{left:0.000000pt;}
.x1_c01000{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_715f8977a253c637c2db21d5.woff2')format("woff");}.ff1_c01001{font-family:ff1_c01001;line-height:1.109863;font-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_c01001{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c01001{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c01001{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.mb_c01001{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m4_c01001{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.md_c01001{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.ma_c01001{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c01001{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c01001{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6_c01001{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m2_c01001{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m7_c01001{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);}
.mc_c01001{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c01001{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,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;}
.fs6_c01001{font-size:3.456000px;}
.fs3_c01001{font-size:6.900000px;}
.fs7_c01001{font-size:13.800000px;}
.fs8_c01001{font-size:17.280000px;}
.fs2_c01001{font-size:20.760000px;}
.fs9_c01001{font-size:24.180000px;}
.fs0_c01001{font-size:27.660000px;}
.fs5_c01001{font-size:65.640000px;}
.fs4_c01001{font-size:72.600000px;}
.fs1_c01001{font-size:76.020000px;}
.y0_c01001{bottom:0.000000px;}
.y12_c01001{bottom:779.325000px;}
.y11_c01001{bottom:883.875000px;}
.yf_c01001{bottom:908.070000px;}
.y10_c01001{bottom:910.650000px;}
.ye_c01001{bottom:917.565000px;}
.yc_c01001{bottom:940.035000px;}
.yd_c01001{bottom:946.080000px;}
.yb_c01001{bottom:949.530000px;}
.ya_c01001{bottom:1191.450000px;}
.y9_c01001{bottom:1194.915000px;}
.y8_c01001{bottom:1317.600000px;}
.y7_c01001{bottom:1321.050000px;}
.y6_c01001{bottom:1367.715000px;}
.y5_c01001{bottom:1368.570000px;}
.y4_c01001{bottom:1384.125000px;}
.y1_c01001{bottom:1391.910000px;}
.y2_c01001{bottom:1401.405000px;}
.y3_c01001{bottom:1416.960000px;}
.h8_c01001{height:3.110063px;}
.h5_c01001{height:6.209326px;}
.h9_c01001{height:12.418652px;}
.ha_c01001{height:15.550313px;}
.h4_c01001{height:18.681973px;}
.hb_c01001{height:21.759639px;}
.h2_c01001{height:24.891299px;}
.h7_c01001{height:59.069590px;}
.h6_c01001{height:65.332910px;}
.h3_c01001{height:68.410576px;}
.h1_c01001{height:1495.500000px;}
.h0_c01001{height:1495.590000px;}
.w0_c01001{width:1111.965000px;}
.w1_c01001{width:1112.250000px;}
.x0_c01001{left:0.000000px;}
.x11_c01001{left:24.195000px;}
.xa_c01001{left:42.330000px;}
.xb_c01001{left:48.390000px;}
.xd_c01001{left:53.565000px;}
.xe_c01001{left:65.670000px;}
.xc_c01001{left:71.715000px;}
.xf_c01001{left:76.035000px;}
.x10_c01001{left:79.485000px;}
.x8_c01001{left:177.120000px;}
.x9_c01001{left:191.805000px;}
.x1_c01001{left:383.610000px;}
.x4_c01001{left:438.045000px;}
.x2_c01001{left:441.510000px;}
.x5_c01001{left:451.005000px;}
.x3_c01001{left:470.880000px;}
.x6_c01001{left:495.075000px;}
.x7_c01001{left:534.810000px;}
@media print{
.v0_c01001{vertical-align:0.000000pt;}
.ls0_c01001{letter-spacing:0.000000pt;}
.ws0_c01001{word-spacing:0.000000pt;}
.fs6_c01001{font-size:3.072000pt;}
.fs3_c01001{font-size:6.133333pt;}
.fs7_c01001{font-size:12.266667pt;}
.fs8_c01001{font-size:15.360000pt;}
.fs2_c01001{font-size:18.453333pt;}
.fs9_c01001{font-size:21.493333pt;}
.fs0_c01001{font-size:24.586667pt;}
.fs5_c01001{font-size:58.346667pt;}
.fs4_c01001{font-size:64.533333pt;}
.fs1_c01001{font-size:67.573333pt;}
.y0_c01001{bottom:0.000000pt;}
.y12_c01001{bottom:692.733333pt;}
.y11_c01001{bottom:785.666667pt;}
.yf_c01001{bottom:807.173333pt;}
.y10_c01001{bottom:809.466667pt;}
.ye_c01001{bottom:815.613333pt;}
.yc_c01001{bottom:835.586667pt;}
.yd_c01001{bottom:840.960000pt;}
.yb_c01001{bottom:844.026667pt;}
.ya_c01001{bottom:1059.066667pt;}
.y9_c01001{bottom:1062.146667pt;}
.y8_c01001{bottom:1171.200000pt;}
.y7_c01001{bottom:1174.266667pt;}
.y6_c01001{bottom:1215.746667pt;}
.y5_c01001{bottom:1216.506667pt;}
.y4_c01001{bottom:1230.333333pt;}
.y1_c01001{bottom:1237.253333pt;}
.y2_c01001{bottom:1245.693333pt;}
.y3_c01001{bottom:1259.520000pt;}
.h8_c01001{height:2.764500pt;}
.h5_c01001{height:5.519401pt;}
.h9_c01001{height:11.038802pt;}
.ha_c01001{height:13.822500pt;}
.h4_c01001{height:16.606198pt;}
.hb_c01001{height:19.341901pt;}
.h2_c01001{height:22.125599pt;}
.h7_c01001{height:52.506302pt;}
.h6_c01001{height:58.073698pt;}
.h3_c01001{height:60.809401pt;}
.h1_c01001{height:1329.333333pt;}
.h0_c01001{height:1329.413333pt;}
.w0_c01001{width:988.413333pt;}
.w1_c01001{width:988.666667pt;}
.x0_c01001{left:0.000000pt;}
.x11_c01001{left:21.506667pt;}
.xa_c01001{left:37.626667pt;}
.xb_c01001{left:43.013333pt;}
.xd_c01001{left:47.613333pt;}
.xe_c01001{left:58.373333pt;}
.xc_c01001{left:63.746667pt;}
.xf_c01001{left:67.586667pt;}
.x10_c01001{left:70.653333pt;}
.x8_c01001{left:157.440000pt;}
.x9_c01001{left:170.493333pt;}
.x1_c01001{left:340.986667pt;}
.x4_c01001{left:389.373333pt;}
.x2_c01001{left:392.453333pt;}
.x5_c01001{left:400.893333pt;}
.x3_c01001{left:418.560000pt;}
.x6_c01001{left:440.066667pt;}
.x7_c01001{left:475.386667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4f91aa2a47841edc61a651d.woff2')format("woff");}.ff1_c01002{font-family:ff1_c01002;line-height:1.109863;font-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_c01002{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);}
.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;}
.fs0_c01002{font-size:600.000000px;}
.y0_c01002{bottom:0.000000px;}
.y1_c01002{bottom:15.000000px;}
.h2_c01002{height:539.941406px;}
.h0_c01002{height:1521.510000px;}
.h1_c01002{height:1521.750000px;}
.w0_c01002{width:1079.130000px;}
.w1_c01002{width:1079.250000px;}
.x0_c01002{left:0.000000px;}
.x1_c01002{left:15.000000px;}
@media print{
.v0_c01002{vertical-align:0.000000pt;}
.ls0_c01002{letter-spacing:0.000000pt;}
.ws0_c01002{word-spacing:0.000000pt;}
.fs0_c01002{font-size:533.333333pt;}
.y0_c01002{bottom:0.000000pt;}
.y1_c01002{bottom:13.333333pt;}
.h2_c01002{height:479.947917pt;}
.h0_c01002{height:1352.453333pt;}
.h1_c01002{height:1352.666667pt;}
.w0_c01002{width:959.226667pt;}
.w1_c01002{width:959.333333pt;}
.x0_c01002{left:0.000000pt;}
.x1_c01002{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e967ea95fa599f738377d655.woff2')format("woff");}.ff1_c01003{font-family:ff1_c01003;line-height:1.109863;font-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_c01003{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);}
.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;}
.fs0_c01003{font-size:600.000000px;}
.y0_c01003{bottom:0.000000px;}
.y1_c01003{bottom:15.000000px;}
.h2_c01003{height:539.941406px;}
.h0_c01003{height:1515.450000px;}
.h1_c01003{height:1515.750000px;}
.w0_c01003{width:1111.965000px;}
.w1_c01003{width:1112.250000px;}
.x0_c01003{left:0.000000px;}
.x1_c01003{left:15.000000px;}
@media print{
.v0_c01003{vertical-align:0.000000pt;}
.ls0_c01003{letter-spacing:0.000000pt;}
.ws0_c01003{word-spacing:0.000000pt;}
.fs0_c01003{font-size:533.333333pt;}
.y0_c01003{bottom:0.000000pt;}
.y1_c01003{bottom:13.333333pt;}
.h2_c01003{height:479.947917pt;}
.h0_c01003{height:1347.066667pt;}
.h1_c01003{height:1347.333333pt;}
.w0_c01003{width:988.413333pt;}
.w1_c01003{width:988.666667pt;}
.x0_c01003{left:0.000000pt;}
.x1_c01003{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95de4e48429a4f046aa28799.woff2')format("woff");}.ff1_c01004{font-family:ff1_c01004;line-height:1.109863;font-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_c01004{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);}
.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;}
.fs0_c01004{font-size:600.000000px;}
.y0_c01004{bottom:0.000000px;}
.y1_c01004{bottom:15.000000px;}
.h2_c01004{height:539.941406px;}
.h0_c01004{height:1521.510000px;}
.h1_c01004{height:1521.750000px;}
.w0_c01004{width:1079.130000px;}
.w1_c01004{width:1079.250000px;}
.x0_c01004{left:0.000000px;}
.x1_c01004{left:15.000000px;}
@media print{
.v0_c01004{vertical-align:0.000000pt;}
.ls0_c01004{letter-spacing:0.000000pt;}
.ws0_c01004{word-spacing:0.000000pt;}
.fs0_c01004{font-size:533.333333pt;}
.y0_c01004{bottom:0.000000pt;}
.y1_c01004{bottom:13.333333pt;}
.h2_c01004{height:479.947917pt;}
.h0_c01004{height:1352.453333pt;}
.h1_c01004{height:1352.666667pt;}
.w0_c01004{width:959.226667pt;}
.w1_c01004{width:959.333333pt;}
.x0_c01004{left:0.000000pt;}
.x1_c01004{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8a3644c9481f201f654a3f3.woff2')format("woff");}.ff1_c01005{font-family:ff1_c01005;line-height:1.109863;font-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_c01005{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c01005{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.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;}
.fs0_c01005{font-size:6.900000px;}
.y0_c01005{bottom:0.000000px;}
.y2_c01005{bottom:1062.720000px;}
.y1_c01005{bottom:1064.445000px;}
.h2_c01005{height:6.209326px;}
.h0_c01005{height:1515.450000px;}
.h1_c01005{height:1515.750000px;}
.w0_c01005{width:1111.965000px;}
.w1_c01005{width:1112.250000px;}
.x0_c01005{left:0.000000px;}
.x1_c01005{left:66.525000px;}
.x2_c01005{left:76.890000px;}
@media print{
.v0_c01005{vertical-align:0.000000pt;}
.ls0_c01005{letter-spacing:0.000000pt;}
.ws0_c01005{word-spacing:0.000000pt;}
.fs0_c01005{font-size:6.133333pt;}
.y0_c01005{bottom:0.000000pt;}
.y2_c01005{bottom:944.640000pt;}
.y1_c01005{bottom:946.173333pt;}
.h2_c01005{height:5.519401pt;}
.h0_c01005{height:1347.066667pt;}
.h1_c01005{height:1347.333333pt;}
.w0_c01005{width:988.413333pt;}
.w1_c01005{width:988.666667pt;}
.x0_c01005{left:0.000000pt;}
.x1_c01005{left:59.133333pt;}
.x2_c01005{left:68.346667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b741a1a1fccd717338e7687.woff2')format("woff");}.ff1_c01006{font-family:ff1_c01006;line-height:1.109863;font-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_c01006{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);}
.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;}
.fs0_c01006{font-size:600.000000px;}
.y0_c01006{bottom:0.000000px;}
.y1_c01006{bottom:15.000000px;}
.h2_c01006{height:539.941406px;}
.h0_c01006{height:1521.510000px;}
.h1_c01006{height:1521.750000px;}
.w0_c01006{width:1088.640000px;}
.w1_c01006{width:1089.000000px;}
.x0_c01006{left:0.000000px;}
.x1_c01006{left:15.000000px;}
@media print{
.v0_c01006{vertical-align:0.000000pt;}
.ls0_c01006{letter-spacing:0.000000pt;}
.ws0_c01006{word-spacing:0.000000pt;}
.fs0_c01006{font-size:533.333333pt;}
.y0_c01006{bottom:0.000000pt;}
.y1_c01006{bottom:13.333333pt;}
.h2_c01006{height:479.947917pt;}
.h0_c01006{height:1352.453333pt;}
.h1_c01006{height:1352.666667pt;}
.w0_c01006{width:967.680000pt;}
.w1_c01006{width:968.000000pt;}
.x0_c01006{left:0.000000pt;}
.x1_c01006{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0597efde85de239638bd1556.woff2')format("woff");}.ff1_c01007{font-family:ff1_c01007;line-height:1.109863;font-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_c01007{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m0_c01007{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01007{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);}
.m2_c01007{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m4_c01007{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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:6.900000px;}
.fs2_c01007{font-size:10.380000px;}
.fs0_c01007{font-size:13.800000px;}
.fs3_c01007{font-size:34.560000px;}
.y0_c01007{bottom:0.000000px;}
.y5_c01007{bottom:1408.320000px;}
.y4_c01007{bottom:1412.640000px;}
.y3_c01007{bottom:1435.110000px;}
.y1_c01007{bottom:1437.690000px;}
.y2_c01007{bottom:1439.430000px;}
.h3_c01007{height:6.209326px;}
.h4_c01007{height:9.340986px;}
.h2_c01007{height:12.418652px;}
.h5_c01007{height:31.100625px;}
.h1_c01007{height:1507.500000px;}
.h0_c01007{height:1507.680000px;}
.w0_c01007{width:1102.470000px;}
.w1_c01007{width:1102.500000px;}
.x0_c01007{left:0.000000px;}
.x4_c01007{left:660.960000px;}
.x1_c01007{left:679.110000px;}
.x5_c01007{left:682.560000px;}
.x2_c01007{left:684.285000px;}
.x3_c01007{left:847.590000px;}
@media print{
.v0_c01007{vertical-align:0.000000pt;}
.ls0_c01007{letter-spacing:0.000000pt;}
.ws0_c01007{word-spacing:0.000000pt;}
.fs1_c01007{font-size:6.133333pt;}
.fs2_c01007{font-size:9.226667pt;}
.fs0_c01007{font-size:12.266667pt;}
.fs3_c01007{font-size:30.720000pt;}
.y0_c01007{bottom:0.000000pt;}
.y5_c01007{bottom:1251.840000pt;}
.y4_c01007{bottom:1255.680000pt;}
.y3_c01007{bottom:1275.653333pt;}
.y1_c01007{bottom:1277.946667pt;}
.y2_c01007{bottom:1279.493333pt;}
.h3_c01007{height:5.519401pt;}
.h4_c01007{height:8.303099pt;}
.h2_c01007{height:11.038802pt;}
.h5_c01007{height:27.645000pt;}
.h1_c01007{height:1340.000000pt;}
.h0_c01007{height:1340.160000pt;}
.w0_c01007{width:979.973333pt;}
.w1_c01007{width:980.000000pt;}
.x0_c01007{left:0.000000pt;}
.x4_c01007{left:587.520000pt;}
.x1_c01007{left:603.653333pt;}
.x5_c01007{left:606.720000pt;}
.x2_c01007{left:608.253333pt;}
.x3_c01007{left:753.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9f4d23eb0a41ed2739ea03d.woff2')format("woff");}.ff1_c01008{font-family:ff1_c01008;line-height:1.109863;font-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_c01008{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m0_c01008{transform:matrix(0.101300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101300,0.000000,0.000000,0.250000,0,0);}
.m1_c01008{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c01008{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c01008{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m3_c01008{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c01008{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m5_c01008{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m2_c01008{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);}
.m4_c01008{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m8_c01008{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,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;}
.fs7_c01008{font-size:3.456000px;}
.fs3_c01008{font-size:6.000000px;}
.fs1_c01008{font-size:10.380000px;}
.fs6_c01008{font-size:13.800000px;}
.fs2_c01008{font-size:17.280000px;}
.fs4_c01008{font-size:20.760000px;}
.fs5_c01008{font-size:24.180000px;}
.fs8_c01008{font-size:27.660000px;}
.fs0_c01008{font-size:169.320000px;}
.y0_c01008{bottom:0.000000px;}
.yd_c01008{bottom:228.960000px;}
.yc_c01008{bottom:233.280000px;}
.yb_c01008{bottom:789.690000px;}
.ya_c01008{bottom:956.445000px;}
.y9_c01008{bottom:959.910000px;}
.y6_c01008{bottom:1101.600000px;}
.y5_c01008{bottom:1124.070000px;}
.y4_c01008{bottom:1126.650000px;}
.y8_c01008{bottom:1198.365000px;}
.y7_c01008{bottom:1200.090000px;}
.y2_c01008{bottom:1350.435000px;}
.y1_c01008{bottom:1351.290000px;}
.y3_c01008{bottom:1426.470000px;}
.h9_c01008{height:3.110063px;}
.h5_c01008{height:5.399414px;}
.h3_c01008{height:9.340986px;}
.h8_c01008{height:12.418652px;}
.h4_c01008{height:15.550313px;}
.h6_c01008{height:18.681973px;}
.h7_c01008{height:21.759639px;}
.ha_c01008{height:24.891299px;}
.h2_c01008{height:152.371465px;}
.h0_c01008{height:1521.510000px;}
.h1_c01008{height:1521.750000px;}
.w0_c01008{width:1088.640000px;}
.w1_c01008{width:1089.000000px;}
.x0_c01008{left:0.000000px;}
.x3_c01008{left:649.725000px;}
.x7_c01008{left:932.250000px;}
.x8_c01008{left:947.805000px;}
.x4_c01008{left:950.400000px;}
.x5_c01008{left:959.910000px;}
.x1_c01008{left:971.130000px;}
.x2_c01008{left:988.410000px;}
.x9_c01008{left:993.600000px;}
.xa_c01008{left:1001.370000px;}
.x6_c01008{left:1007.430000px;}
.xb_c01008{left:1049.760000px;}
.xc_c01008{left:1067.040000px;}
.xd_c01008{left:1081.725000px;}
@media print{
.v0_c01008{vertical-align:0.000000pt;}
.ls0_c01008{letter-spacing:0.000000pt;}
.ws0_c01008{word-spacing:0.000000pt;}
.fs7_c01008{font-size:3.072000pt;}
.fs3_c01008{font-size:5.333333pt;}
.fs1_c01008{font-size:9.226667pt;}
.fs6_c01008{font-size:12.266667pt;}
.fs2_c01008{font-size:15.360000pt;}
.fs4_c01008{font-size:18.453333pt;}
.fs5_c01008{font-size:21.493333pt;}
.fs8_c01008{font-size:24.586667pt;}
.fs0_c01008{font-size:150.506667pt;}
.y0_c01008{bottom:0.000000pt;}
.yd_c01008{bottom:203.520000pt;}
.yc_c01008{bottom:207.360000pt;}
.yb_c01008{bottom:701.946667pt;}
.ya_c01008{bottom:850.173333pt;}
.y9_c01008{bottom:853.253333pt;}
.y6_c01008{bottom:979.200000pt;}
.y5_c01008{bottom:999.173333pt;}
.y4_c01008{bottom:1001.466667pt;}
.y8_c01008{bottom:1065.213333pt;}
.y7_c01008{bottom:1066.746667pt;}
.y2_c01008{bottom:1200.386667pt;}
.y1_c01008{bottom:1201.146667pt;}
.y3_c01008{bottom:1267.973333pt;}
.h9_c01008{height:2.764500pt;}
.h5_c01008{height:4.799479pt;}
.h3_c01008{height:8.303099pt;}
.h8_c01008{height:11.038802pt;}
.h4_c01008{height:13.822500pt;}
.h6_c01008{height:16.606198pt;}
.h7_c01008{height:19.341901pt;}
.ha_c01008{height:22.125599pt;}
.h2_c01008{height:135.441302pt;}
.h0_c01008{height:1352.453333pt;}
.h1_c01008{height:1352.666667pt;}
.w0_c01008{width:967.680000pt;}
.w1_c01008{width:968.000000pt;}
.x0_c01008{left:0.000000pt;}
.x3_c01008{left:577.533333pt;}
.x7_c01008{left:828.666667pt;}
.x8_c01008{left:842.493333pt;}
.x4_c01008{left:844.800000pt;}
.x5_c01008{left:853.253333pt;}
.x1_c01008{left:863.226667pt;}
.x2_c01008{left:878.586667pt;}
.x9_c01008{left:883.200000pt;}
.xa_c01008{left:890.106667pt;}
.x6_c01008{left:895.493333pt;}
.xb_c01008{left:933.120000pt;}
.xc_c01008{left:948.480000pt;}
.xd_c01008{left:961.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7a5cf5c7831c4bbadffbd85.woff2')format("woff");}.ff1_c01009{font-family:ff1_c01009;line-height:1.109863;font-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_c01009{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c01009{transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119075,0.000000,0.000000,0.250000,0,0);}
.m9_c01009{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mc_c01009{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c01009{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.mb_c01009{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);}
.m8_c01009{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3_c01009{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);}
.m6_c01009{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c01009{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m0_c01009{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m2_c01009{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.me_c01009{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m4_c01009{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1_c01009{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,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;}
.fsa_c01009{font-size:3.456000px;}
.fs9_c01009{font-size:6.900000px;}
.fs1_c01009{font-size:10.380000px;}
.fs7_c01009{font-size:13.800000px;}
.fsb_c01009{font-size:20.760000px;}
.fs8_c01009{font-size:55.320000px;}
.fs5_c01009{font-size:58.740000px;}
.fs2_c01009{font-size:62.220000px;}
.fs3_c01009{font-size:65.640000px;}
.fs0_c01009{font-size:69.120000px;}
.fs6_c01009{font-size:93.300000px;}
.fs4_c01009{font-size:114.060000px;}
.y0_c01009{bottom:0.000000px;}
.y11_c01009{bottom:266.115000px;}
.y10_c01009{bottom:950.400000px;}
.yf_c01009{bottom:953.850000px;}
.ye_c01009{bottom:1192.320000px;}
.yd_c01009{bottom:1195.770000px;}
.yc_c01009{bottom:1216.515000px;}
.yb_c01009{bottom:1217.370000px;}
.ya_c01009{bottom:1261.440000px;}
.y9_c01009{bottom:1287.360000px;}
.y5_c01009{bottom:1294.275000px;}
.y7_c01009{bottom:1298.595000px;}
.y8_c01009{bottom:1303.770000px;}
.y6_c01009{bottom:1306.365000px;}
.y4_c01009{bottom:1353.885000px;}
.y3_c01009{bottom:1380.675000px;}
.y1_c01009{bottom:1381.530000px;}
.y2_c01009{bottom:1384.995000px;}
.hc_c01009{height:3.110063px;}
.hb_c01009{height:6.209326px;}
.h3_c01009{height:9.340986px;}
.h9_c01009{height:12.418652px;}
.hd_c01009{height:18.681973px;}
.ha_c01009{height:49.782598px;}
.h7_c01009{height:52.860264px;}
.h4_c01009{height:55.991924px;}
.h5_c01009{height:59.069590px;}
.h2_c01009{height:62.201250px;}
.h8_c01009{height:83.960889px;}
.h6_c01009{height:102.642861px;}
.h1_c01009{height:1507.500000px;}
.h0_c01009{height:1507.680000px;}
.w0_c01009{width:1107.645000px;}
.w1_c01009{width:1107.750000px;}
.x0_c01009{left:0.000000px;}
.xc_c01009{left:56.160000px;}
.xd_c01009{left:65.670000px;}
.xe_c01009{left:80.355000px;}
.xf_c01009{left:86.400000px;}
.x10_c01009{left:126.150000px;}
.x11_c01009{left:132.195000px;}
.x12_c01009{left:180.570000px;}
.x1_c01009{left:440.640000px;}
.x5_c01009{left:562.470000px;}
.x2_c01009{left:583.200000px;}
.x3_c01009{left:605.670000px;}
.x6_c01009{left:617.760000px;}
.xa_c01009{left:627.270000px;}
.x4_c01009{left:629.850000px;}
.x7_c01009{left:686.010000px;}
.x8_c01009{left:705.885000px;}
.xb_c01009{left:762.915000px;}
.x9_c01009{left:776.730000px;}
@media print{
.v0_c01009{vertical-align:0.000000pt;}
.ls0_c01009{letter-spacing:0.000000pt;}
.ws0_c01009{word-spacing:0.000000pt;}
.fsa_c01009{font-size:3.072000pt;}
.fs9_c01009{font-size:6.133333pt;}
.fs1_c01009{font-size:9.226667pt;}
.fs7_c01009{font-size:12.266667pt;}
.fsb_c01009{font-size:18.453333pt;}
.fs8_c01009{font-size:49.173333pt;}
.fs5_c01009{font-size:52.213333pt;}
.fs2_c01009{font-size:55.306667pt;}
.fs3_c01009{font-size:58.346667pt;}
.fs0_c01009{font-size:61.440000pt;}
.fs6_c01009{font-size:82.933333pt;}
.fs4_c01009{font-size:101.386667pt;}
.y0_c01009{bottom:0.000000pt;}
.y11_c01009{bottom:236.546667pt;}
.y10_c01009{bottom:844.800000pt;}
.yf_c01009{bottom:847.866667pt;}
.ye_c01009{bottom:1059.840000pt;}
.yd_c01009{bottom:1062.906667pt;}
.yc_c01009{bottom:1081.346667pt;}
.yb_c01009{bottom:1082.106667pt;}
.ya_c01009{bottom:1121.280000pt;}
.y9_c01009{bottom:1144.320000pt;}
.y5_c01009{bottom:1150.466667pt;}
.y7_c01009{bottom:1154.306667pt;}
.y8_c01009{bottom:1158.906667pt;}
.y6_c01009{bottom:1161.213333pt;}
.y4_c01009{bottom:1203.453333pt;}
.y3_c01009{bottom:1227.266667pt;}
.y1_c01009{bottom:1228.026667pt;}
.y2_c01009{bottom:1231.106667pt;}
.hc_c01009{height:2.764500pt;}
.hb_c01009{height:5.519401pt;}
.h3_c01009{height:8.303099pt;}
.h9_c01009{height:11.038802pt;}
.hd_c01009{height:16.606198pt;}
.ha_c01009{height:44.251198pt;}
.h7_c01009{height:46.986901pt;}
.h4_c01009{height:49.770599pt;}
.h5_c01009{height:52.506302pt;}
.h2_c01009{height:55.290000pt;}
.h8_c01009{height:74.631901pt;}
.h6_c01009{height:91.238099pt;}
.h1_c01009{height:1340.000000pt;}
.h0_c01009{height:1340.160000pt;}
.w0_c01009{width:984.573333pt;}
.w1_c01009{width:984.666667pt;}
.x0_c01009{left:0.000000pt;}
.xc_c01009{left:49.920000pt;}
.xd_c01009{left:58.373333pt;}
.xe_c01009{left:71.426667pt;}
.xf_c01009{left:76.800000pt;}
.x10_c01009{left:112.133333pt;}
.x11_c01009{left:117.506667pt;}
.x12_c01009{left:160.506667pt;}
.x1_c01009{left:391.680000pt;}
.x5_c01009{left:499.973333pt;}
.x2_c01009{left:518.400000pt;}
.x3_c01009{left:538.373333pt;}
.x6_c01009{left:549.120000pt;}
.xa_c01009{left:557.573333pt;}
.x4_c01009{left:559.866667pt;}
.x7_c01009{left:609.786667pt;}
.x8_c01009{left:627.453333pt;}
.xb_c01009{left:678.146667pt;}
.x9_c01009{left:690.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_68f0a25eb249c737ab96312d.woff2')format("woff");}.ff1_c01010{font-family:ff1_c01010;line-height:1.109863;font-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_c01010{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);}
.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;}
.fs0_c01010{font-size:600.000000px;}
.y0_c01010{bottom:0.000000px;}
.y1_c01010{bottom:15.000000px;}
.h2_c01010{height:539.941406px;}
.h0_c01010{height:1521.510000px;}
.h1_c01010{height:1521.750000px;}
.w0_c01010{width:1088.640000px;}
.w1_c01010{width:1089.000000px;}
.x0_c01010{left:0.000000px;}
.x1_c01010{left:15.000000px;}
@media print{
.v0_c01010{vertical-align:0.000000pt;}
.ls0_c01010{letter-spacing:0.000000pt;}
.ws0_c01010{word-spacing:0.000000pt;}
.fs0_c01010{font-size:533.333333pt;}
.y0_c01010{bottom:0.000000pt;}
.y1_c01010{bottom:13.333333pt;}
.h2_c01010{height:479.947917pt;}
.h0_c01010{height:1352.453333pt;}
.h1_c01010{height:1352.666667pt;}
.w0_c01010{width:967.680000pt;}
.w1_c01010{width:968.000000pt;}
.x0_c01010{left:0.000000pt;}
.x1_c01010{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a09f7fa048373920e374e9e3.woff2')format("woff");}.ff1_c01011{font-family:ff1_c01011;line-height:1.109863;font-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_c01011{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c01011{transform:matrix(0.068675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068675,0.000000,0.000000,0.250000,0,0);}
.m2_c01011{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01011{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c01011{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c01011{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);}
.m9_c01011{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);}
.m8_c01011{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.ma_c01011{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1_c01011{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m4_c01011{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,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;}
.fs5_c01011{font-size:3.456000px;}
.fs2_c01011{font-size:6.900000px;}
.fs3_c01011{font-size:10.380000px;}
.fs0_c01011{font-size:17.280000px;}
.fs1_c01011{font-size:20.760000px;}
.fs4_c01011{font-size:27.660000px;}
.fs6_c01011{font-size:159.000000px;}
.y0_c01011{bottom:0.000000px;}
.yc_c01011{bottom:648.870000px;}
.ya_c01011{bottom:824.250000px;}
.yb_c01011{bottom:825.990000px;}
.y8_c01011{bottom:1001.370000px;}
.y9_c01011{bottom:1015.200000px;}
.y6_c01011{bottom:1135.290000px;}
.y7_c01011{bottom:1139.610000px;}
.y1_c01011{bottom:1157.760000px;}
.y5_c01011{bottom:1197.510000px;}
.y4_c01011{bottom:1312.410000px;}
.y2_c01011{bottom:1334.880000px;}
.y3_c01011{bottom:1336.605000px;}
.h7_c01011{height:3.110063px;}
.h4_c01011{height:6.209326px;}
.h5_c01011{height:9.340986px;}
.h2_c01011{height:15.550313px;}
.h3_c01011{height:18.681973px;}
.h6_c01011{height:24.891299px;}
.h8_c01011{height:143.084473px;}
.h1_c01011{height:1507.500000px;}
.h0_c01011{height:1507.680000px;}
.w0_c01011{width:1107.645000px;}
.w1_c01011{width:1107.750000px;}
.x0_c01011{left:0.000000px;}
.x7_c01011{left:57.030000px;}
.x8_c01011{left:67.395000px;}
.x1_c01011{left:96.765000px;}
.x9_c01011{left:109.725000px;}
.x2_c01011{left:123.555000px;}
.x3_c01011{left:134.790000px;}
.x4_c01011{left:146.010000px;}
.x6_c01011{left:168.480000px;}
.xb_c01011{left:177.120000px;}
.x5_c01011{left:190.080000px;}
.xa_c01011{left:192.675000px;}
@media print{
.v0_c01011{vertical-align:0.000000pt;}
.ls0_c01011{letter-spacing:0.000000pt;}
.ws0_c01011{word-spacing:0.000000pt;}
.fs5_c01011{font-size:3.072000pt;}
.fs2_c01011{font-size:6.133333pt;}
.fs3_c01011{font-size:9.226667pt;}
.fs0_c01011{font-size:15.360000pt;}
.fs1_c01011{font-size:18.453333pt;}
.fs4_c01011{font-size:24.586667pt;}
.fs6_c01011{font-size:141.333333pt;}
.y0_c01011{bottom:0.000000pt;}
.yc_c01011{bottom:576.773333pt;}
.ya_c01011{bottom:732.666667pt;}
.yb_c01011{bottom:734.213333pt;}
.y8_c01011{bottom:890.106667pt;}
.y9_c01011{bottom:902.400000pt;}
.y6_c01011{bottom:1009.146667pt;}
.y7_c01011{bottom:1012.986667pt;}
.y1_c01011{bottom:1029.120000pt;}
.y5_c01011{bottom:1064.453333pt;}
.y4_c01011{bottom:1166.586667pt;}
.y2_c01011{bottom:1186.560000pt;}
.y3_c01011{bottom:1188.093333pt;}
.h7_c01011{height:2.764500pt;}
.h4_c01011{height:5.519401pt;}
.h5_c01011{height:8.303099pt;}
.h2_c01011{height:13.822500pt;}
.h3_c01011{height:16.606198pt;}
.h6_c01011{height:22.125599pt;}
.h8_c01011{height:127.186198pt;}
.h1_c01011{height:1340.000000pt;}
.h0_c01011{height:1340.160000pt;}
.w0_c01011{width:984.573333pt;}
.w1_c01011{width:984.666667pt;}
.x0_c01011{left:0.000000pt;}
.x7_c01011{left:50.693333pt;}
.x8_c01011{left:59.906667pt;}
.x1_c01011{left:86.013333pt;}
.x9_c01011{left:97.533333pt;}
.x2_c01011{left:109.826667pt;}
.x3_c01011{left:119.813333pt;}
.x4_c01011{left:129.786667pt;}
.x6_c01011{left:149.760000pt;}
.xb_c01011{left:157.440000pt;}
.x5_c01011{left:168.960000pt;}
.xa_c01011{left:171.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a4aa9c8d344bddbcd83f2459.woff2')format("woff");}.ff1_c01012{font-family:ff1_c01012;line-height:1.109863;font-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_c01012{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c01012{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2_c01012{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);}
.m3_c01012{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1_c01012{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);}
.m4_c01012{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);}
.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;}
.fc0_c01012{color:transparent;}
.fs4_c01012{font-size:6.900000px;}
.fs5_c01012{font-size:17.280000px;}
.fs3_c01012{font-size:27.660000px;}
.fs0_c01012{font-size:55.320000px;}
.fs1_c01012{font-size:65.640000px;}
.fs2_c01012{font-size:69.120000px;}
.y0_c01012{bottom:0.000000px;}
.y3_c01012{bottom:1383.270000px;}
.y2_c01012{bottom:1389.315000px;}
.y1_c01012{bottom:1391.910000px;}
.y5_c01012{bottom:1420.410000px;}
.y4_c01012{bottom:1423.875000px;}
.h6_c01012{height:6.209326px;}
.h7_c01012{height:15.550313px;}
.h5_c01012{height:24.891299px;}
.h2_c01012{height:49.782598px;}
.h3_c01012{height:59.069590px;}
.h4_c01012{height:62.201250px;}
.h0_c01012{height:1521.510000px;}
.h1_c01012{height:1521.750000px;}
.w0_c01012{width:1088.640000px;}
.w1_c01012{width:1089.000000px;}
.x0_c01012{left:0.000000px;}
.x1_c01012{left:363.750000px;}
.x2_c01012{left:406.080000px;}
.x3_c01012{left:552.960000px;}
.x5_c01012{left:700.710000px;}
.x6_c01012{left:719.715000px;}
.x4_c01012{left:908.070000px;}
@media print{
.v0_c01012{vertical-align:0.000000pt;}
.ls0_c01012{letter-spacing:0.000000pt;}
.ws0_c01012{word-spacing:0.000000pt;}
.fs4_c01012{font-size:6.133333pt;}
.fs5_c01012{font-size:15.360000pt;}
.fs3_c01012{font-size:24.586667pt;}
.fs0_c01012{font-size:49.173333pt;}
.fs1_c01012{font-size:58.346667pt;}
.fs2_c01012{font-size:61.440000pt;}
.y0_c01012{bottom:0.000000pt;}
.y3_c01012{bottom:1229.573333pt;}
.y2_c01012{bottom:1234.946667pt;}
.y1_c01012{bottom:1237.253333pt;}
.y5_c01012{bottom:1262.586667pt;}
.y4_c01012{bottom:1265.666667pt;}
.h6_c01012{height:5.519401pt;}
.h7_c01012{height:13.822500pt;}
.h5_c01012{height:22.125599pt;}
.h2_c01012{height:44.251198pt;}
.h3_c01012{height:52.506302pt;}
.h4_c01012{height:55.290000pt;}
.h0_c01012{height:1352.453333pt;}
.h1_c01012{height:1352.666667pt;}
.w0_c01012{width:967.680000pt;}
.w1_c01012{width:968.000000pt;}
.x0_c01012{left:0.000000pt;}
.x1_c01012{left:323.333333pt;}
.x2_c01012{left:360.960000pt;}
.x3_c01012{left:491.520000pt;}
.x5_c01012{left:622.853333pt;}
.x6_c01012{left:639.746667pt;}
.x4_c01012{left:807.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7e0f7b50f664b7a7b1ef157b.woff2')format("woff");}.ff1_c01013{font-family:ff1_c01013;line-height:1.109863;font-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_c01013{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);}
.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;}
.fc0_c01013{color:transparent;}
.fs0_c01013{font-size:600.000000px;}
.y0_c01013{bottom:0.000000px;}
.y1_c01013{bottom:15.000000px;}
.h2_c01013{height:539.941406px;}
.h1_c01013{height:1507.500000px;}
.h0_c01013{height:1507.680000px;}
.w0_c01013{width:1107.645000px;}
.w1_c01013{width:1107.750000px;}
.x0_c01013{left:0.000000px;}
.x1_c01013{left:15.000000px;}
@media print{
.v0_c01013{vertical-align:0.000000pt;}
.ls0_c01013{letter-spacing:0.000000pt;}
.ws0_c01013{word-spacing:0.000000pt;}
.fs0_c01013{font-size:533.333333pt;}
.y0_c01013{bottom:0.000000pt;}
.y1_c01013{bottom:13.333333pt;}
.h2_c01013{height:479.947917pt;}
.h1_c01013{height:1340.000000pt;}
.h0_c01013{height:1340.160000pt;}
.w0_c01013{width:984.573333pt;}
.w1_c01013{width:984.666667pt;}
.x0_c01013{left:0.000000pt;}
.x1_c01013{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_43d69846368f38300374a11c.woff2')format("woff");}.ff1_c01014{font-family:ff1_c01014;line-height:1.109863;font-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_c01014{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);}
.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;}
.fc0_c01014{color:transparent;}
.fs0_c01014{font-size:600.000000px;}
.y0_c01014{bottom:0.000000px;}
.y1_c01014{bottom:15.000000px;}
.h2_c01014{height:539.941406px;}
.h0_c01014{height:1521.510000px;}
.h1_c01014{height:1521.750000px;}
.w0_c01014{width:1088.640000px;}
.w1_c01014{width:1089.000000px;}
.x0_c01014{left:0.000000px;}
.x1_c01014{left:15.000000px;}
@media print{
.v0_c01014{vertical-align:0.000000pt;}
.ls0_c01014{letter-spacing:0.000000pt;}
.ws0_c01014{word-spacing:0.000000pt;}
.fs0_c01014{font-size:533.333333pt;}
.y0_c01014{bottom:0.000000pt;}
.y1_c01014{bottom:13.333333pt;}
.h2_c01014{height:479.947917pt;}
.h0_c01014{height:1352.453333pt;}
.h1_c01014{height:1352.666667pt;}
.w0_c01014{width:967.680000pt;}
.w1_c01014{width:968.000000pt;}
.x0_c01014{left:0.000000pt;}
.x1_c01014{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7dd30d6689a132ae011c98ff.woff2')format("woff");}.ff1_c01015{font-family:ff1_c01015;line-height:1.109863;font-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_c01015{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m9_c01015{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m3_c01015{transform:matrix(0.048425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048425,0.000000,0.000000,0.250000,0,0);}
.m2_c01015{transform:matrix(0.078475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078475,0.000000,0.000000,0.250000,0,0);}
.m4_c01015{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m8_c01015{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c01015{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01015{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c01015{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);}
.m5_c01015{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,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;}
.fs7_c01015{font-size:6.900000px;}
.fs6_c01015{font-size:13.800000px;}
.fs1_c01015{font-size:17.280000px;}
.fs0_c01015{font-size:20.760000px;}
.fs5_c01015{font-size:24.180000px;}
.fs4_c01015{font-size:69.120000px;}
.fs2_c01015{font-size:79.500000px;}
.fs3_c01015{font-size:107.160000px;}
.fs8_c01015{font-size:131.340000px;}
.y0_c01015{bottom:0.000000px;}
.ya_c01015{bottom:571.110000px;}
.y8_c01015{bottom:608.250000px;}
.y9_c01015{bottom:609.990000px;}
.y6_c01015{bottom:765.510000px;}
.y5_c01015{bottom:773.280000px;}
.y4_c01015{bottom:792.285000px;}
.y3_c01015{bottom:820.800000px;}
.y7_c01015{bottom:1059.270000px;}
.y2_c01015{bottom:1431.645000px;}
.y1_c01015{bottom:1437.690000px;}
.h9_c01015{height:6.209326px;}
.h8_c01015{height:12.418652px;}
.h3_c01015{height:15.550313px;}
.h2_c01015{height:18.681973px;}
.h7_c01015{height:21.759639px;}
.h6_c01015{height:62.201250px;}
.h4_c01015{height:71.542236px;}
.h5_c01015{height:96.433535px;}
.ha_c01015{height:118.193174px;}
.h1_c01015{height:1507.500000px;}
.h0_c01015{height:1507.680000px;}
.w0_c01015{width:1107.645000px;}
.w1_c01015{width:1107.750000px;}
.x0_c01015{left:0.000000px;}
.x5_c01015{left:57.030000px;}
.x4_c01015{left:107.130000px;}
.x3_c01015{left:112.320000px;}
.x6_c01015{left:128.730000px;}
.x2_c01015{left:232.410000px;}
.x1_c01015{left:235.875000px;}
@media print{
.v0_c01015{vertical-align:0.000000pt;}
.ls0_c01015{letter-spacing:0.000000pt;}
.ws0_c01015{word-spacing:0.000000pt;}
.fs7_c01015{font-size:6.133333pt;}
.fs6_c01015{font-size:12.266667pt;}
.fs1_c01015{font-size:15.360000pt;}
.fs0_c01015{font-size:18.453333pt;}
.fs5_c01015{font-size:21.493333pt;}
.fs4_c01015{font-size:61.440000pt;}
.fs2_c01015{font-size:70.666667pt;}
.fs3_c01015{font-size:95.253333pt;}
.fs8_c01015{font-size:116.746667pt;}
.y0_c01015{bottom:0.000000pt;}
.ya_c01015{bottom:507.653333pt;}
.y8_c01015{bottom:540.666667pt;}
.y9_c01015{bottom:542.213333pt;}
.y6_c01015{bottom:680.453333pt;}
.y5_c01015{bottom:687.360000pt;}
.y4_c01015{bottom:704.253333pt;}
.y3_c01015{bottom:729.600000pt;}
.y7_c01015{bottom:941.573333pt;}
.y2_c01015{bottom:1272.573333pt;}
.y1_c01015{bottom:1277.946667pt;}
.h9_c01015{height:5.519401pt;}
.h8_c01015{height:11.038802pt;}
.h3_c01015{height:13.822500pt;}
.h2_c01015{height:16.606198pt;}
.h7_c01015{height:19.341901pt;}
.h6_c01015{height:55.290000pt;}
.h4_c01015{height:63.593099pt;}
.h5_c01015{height:85.718698pt;}
.ha_c01015{height:105.060599pt;}
.h1_c01015{height:1340.000000pt;}
.h0_c01015{height:1340.160000pt;}
.w0_c01015{width:984.573333pt;}
.w1_c01015{width:984.666667pt;}
.x0_c01015{left:0.000000pt;}
.x5_c01015{left:50.693333pt;}
.x4_c01015{left:95.226667pt;}
.x3_c01015{left:99.840000pt;}
.x6_c01015{left:114.426667pt;}
.x2_c01015{left:206.586667pt;}
.x1_c01015{left:209.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb830f2c1de7f2c4ab6eebd1.woff2')format("woff");}.ff1_c01016{font-family:ff1_c01016;line-height:1.109863;font-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_c01016{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c01016{transform:matrix(0.020300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020300,0.000000,0.000000,0.250000,0,0);}
.m4_c01016{transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);}
.m2_c01016{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01016{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.m1_c01016{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,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;}
.fc0_c01016{color:transparent;}
.fs6_c01016{font-size:3.456000px;}
.fs1_c01016{font-size:6.000000px;}
.fs3_c01016{font-size:6.900000px;}
.fs2_c01016{font-size:13.800000px;}
.fs0_c01016{font-size:55.320000px;}
.fs5_c01016{font-size:82.920000px;}
.fs7_c01016{font-size:127.860000px;}
.fs4_c01016{font-size:349.080000px;}
.y0_c01016{bottom:0.000000px;}
.y8_c01016{bottom:643.680000px;}
.y7_c01016{bottom:654.915000px;}
.y6_c01016{bottom:1083.450000px;}
.y5_c01016{bottom:1107.645000px;}
.y2_c01016{bottom:1260.570000px;}
.y1_c01016{bottom:1263.165000px;}
.y4_c01016{bottom:1266.630000px;}
.y3_c01016{bottom:1267.485000px;}
.h8_c01016{height:3.110063px;}
.h3_c01016{height:5.399414px;}
.h5_c01016{height:6.209326px;}
.h4_c01016{height:12.418652px;}
.h2_c01016{height:49.782598px;}
.h7_c01016{height:74.619902px;}
.h9_c01016{height:115.061514px;}
.h6_c01016{height:314.137910px;}
.h0_c01016{height:1521.510000px;}
.h1_c01016{height:1521.750000px;}
.w0_c01016{width:1088.640000px;}
.w1_c01016{width:1089.000000px;}
.x0_c01016{left:0.000000px;}
.x4_c01016{left:971.130000px;}
.x5_c01016{left:973.725000px;}
.x1_c01016{left:978.915000px;}
.x2_c01016{left:1023.840000px;}
.x3_c01016{left:1038.525000px;}
@media print{
.v0_c01016{vertical-align:0.000000pt;}
.ls0_c01016{letter-spacing:0.000000pt;}
.ws0_c01016{word-spacing:0.000000pt;}
.fs6_c01016{font-size:3.072000pt;}
.fs1_c01016{font-size:5.333333pt;}
.fs3_c01016{font-size:6.133333pt;}
.fs2_c01016{font-size:12.266667pt;}
.fs0_c01016{font-size:49.173333pt;}
.fs5_c01016{font-size:73.706667pt;}
.fs7_c01016{font-size:113.653333pt;}
.fs4_c01016{font-size:310.293333pt;}
.y0_c01016{bottom:0.000000pt;}
.y8_c01016{bottom:572.160000pt;}
.y7_c01016{bottom:582.146667pt;}
.y6_c01016{bottom:963.066667pt;}
.y5_c01016{bottom:984.573333pt;}
.y2_c01016{bottom:1120.506667pt;}
.y1_c01016{bottom:1122.813333pt;}
.y4_c01016{bottom:1125.893333pt;}
.y3_c01016{bottom:1126.653333pt;}
.h8_c01016{height:2.764500pt;}
.h3_c01016{height:4.799479pt;}
.h5_c01016{height:5.519401pt;}
.h4_c01016{height:11.038802pt;}
.h2_c01016{height:44.251198pt;}
.h7_c01016{height:66.328802pt;}
.h9_c01016{height:102.276901pt;}
.h6_c01016{height:279.233698pt;}
.h0_c01016{height:1352.453333pt;}
.h1_c01016{height:1352.666667pt;}
.w0_c01016{width:967.680000pt;}
.w1_c01016{width:968.000000pt;}
.x0_c01016{left:0.000000pt;}
.x4_c01016{left:863.226667pt;}
.x5_c01016{left:865.533333pt;}
.x1_c01016{left:870.146667pt;}
.x2_c01016{left:910.080000pt;}
.x3_c01016{left:923.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbb0a0731509b47ba97e0681.woff2')format("woff");}.ff1_c01017{font-family:ff1_c01017;line-height:1.109863;font-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_c01017{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);}
.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;}
.fs0_c01017{font-size:600.000000px;}
.y0_c01017{bottom:0.000000px;}
.y1_c01017{bottom:15.000000px;}
.h2_c01017{height:539.941406px;}
.h1_c01017{height:1507.500000px;}
.h0_c01017{height:1507.680000px;}
.w0_c01017{width:1107.645000px;}
.w1_c01017{width:1107.750000px;}
.x0_c01017{left:0.000000px;}
.x1_c01017{left:15.000000px;}
@media print{
.v0_c01017{vertical-align:0.000000pt;}
.ls0_c01017{letter-spacing:0.000000pt;}
.ws0_c01017{word-spacing:0.000000pt;}
.fs0_c01017{font-size:533.333333pt;}
.y0_c01017{bottom:0.000000pt;}
.y1_c01017{bottom:13.333333pt;}
.h2_c01017{height:479.947917pt;}
.h1_c01017{height:1340.000000pt;}
.h0_c01017{height:1340.160000pt;}
.w0_c01017{width:984.573333pt;}
.w1_c01017{width:984.666667pt;}
.x0_c01017{left:0.000000pt;}
.x1_c01017{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be1a55fe22502668fb329f81.woff2')format("woff");}.ff1_c01018{font-family:ff1_c01018;line-height:1.109863;font-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_c01018{transform:matrix(0.027350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027350,0.000000,0.000000,0.250000,0,0);}
.m3_c01018{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.m0_c01018{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c01018{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,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;}
.fs0_c01018{font-size:31.080000px;}
.fs1_c01018{font-size:34.560000px;}
.fs3_c01018{font-size:72.600000px;}
.fs2_c01018{font-size:228.120000px;}
.y0_c01018{bottom:0.000000px;}
.y4_c01018{bottom:801.795000px;}
.y3_c01018{bottom:824.250000px;}
.y2_c01018{bottom:1033.350000px;}
.y1_c01018{bottom:1080.000000px;}
.h2_c01018{height:27.968965px;}
.h3_c01018{height:31.100625px;}
.h5_c01018{height:65.332910px;}
.h4_c01018{height:205.285723px;}
.h0_c01018{height:1521.510000px;}
.h1_c01018{height:1521.750000px;}
.w0_c01018{width:1088.640000px;}
.w1_c01018{width:1089.000000px;}
.x0_c01018{left:0.000000px;}
.x3_c01018{left:974.595000px;}
.x2_c01018{left:1001.370000px;}
.x1_c01018{left:1080.870000px;}
@media print{
.v0_c01018{vertical-align:0.000000pt;}
.ls0_c01018{letter-spacing:0.000000pt;}
.ws0_c01018{word-spacing:0.000000pt;}
.fs0_c01018{font-size:27.626667pt;}
.fs1_c01018{font-size:30.720000pt;}
.fs3_c01018{font-size:64.533333pt;}
.fs2_c01018{font-size:202.773333pt;}
.y0_c01018{bottom:0.000000pt;}
.y4_c01018{bottom:712.706667pt;}
.y3_c01018{bottom:732.666667pt;}
.y2_c01018{bottom:918.533333pt;}
.y1_c01018{bottom:960.000000pt;}
.h2_c01018{height:24.861302pt;}
.h3_c01018{height:27.645000pt;}
.h5_c01018{height:58.073698pt;}
.h4_c01018{height:182.476198pt;}
.h0_c01018{height:1352.453333pt;}
.h1_c01018{height:1352.666667pt;}
.w0_c01018{width:967.680000pt;}
.w1_c01018{width:968.000000pt;}
.x0_c01018{left:0.000000pt;}
.x3_c01018{left:866.306667pt;}
.x2_c01018{left:890.106667pt;}
.x1_c01018{left:960.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e05351ef765a84d5578acaf8.woff2')format("woff");}.ff1_c01019{font-family:ff1_c01019;line-height:1.109863;font-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_c01019{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);}
.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;}
.fs0_c01019{font-size:600.000000px;}
.y0_c01019{bottom:0.000000px;}
.y1_c01019{bottom:15.000000px;}
.h2_c01019{height:539.941406px;}
.h1_c01019{height:1507.500000px;}
.h0_c01019{height:1507.680000px;}
.w0_c01019{width:1107.645000px;}
.w1_c01019{width:1107.750000px;}
.x0_c01019{left:0.000000px;}
.x1_c01019{left:15.000000px;}
@media print{
.v0_c01019{vertical-align:0.000000pt;}
.ls0_c01019{letter-spacing:0.000000pt;}
.ws0_c01019{word-spacing:0.000000pt;}
.fs0_c01019{font-size:533.333333pt;}
.y0_c01019{bottom:0.000000pt;}
.y1_c01019{bottom:13.333333pt;}
.h2_c01019{height:479.947917pt;}
.h1_c01019{height:1340.000000pt;}
.h0_c01019{height:1340.160000pt;}
.w0_c01019{width:984.573333pt;}
.w1_c01019{width:984.666667pt;}
.x0_c01019{left:0.000000pt;}
.x1_c01019{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb723133fa2f62255c392bcf.woff2')format("woff");}.ff1_c01020{font-family:ff1_c01020;line-height:1.109863;font-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_c01020{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);}
.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;}
.fs0_c01020{font-size:600.000000px;}
.y0_c01020{bottom:0.000000px;}
.y1_c01020{bottom:15.000000px;}
.h2_c01020{height:539.941406px;}
.h0_c01020{height:1521.510000px;}
.h1_c01020{height:1521.750000px;}
.w0_c01020{width:1088.640000px;}
.w1_c01020{width:1089.000000px;}
.x0_c01020{left:0.000000px;}
.x1_c01020{left:15.000000px;}
@media print{
.v0_c01020{vertical-align:0.000000pt;}
.ls0_c01020{letter-spacing:0.000000pt;}
.ws0_c01020{word-spacing:0.000000pt;}
.fs0_c01020{font-size:533.333333pt;}
.y0_c01020{bottom:0.000000pt;}
.y1_c01020{bottom:13.333333pt;}
.h2_c01020{height:479.947917pt;}
.h0_c01020{height:1352.453333pt;}
.h1_c01020{height:1352.666667pt;}
.w0_c01020{width:967.680000pt;}
.w1_c01020{width:968.000000pt;}
.x0_c01020{left:0.000000pt;}
.x1_c01020{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01021;src:url('chunks/assets/font_d7d41f340e08252f2aa3f0d2.woff2')format("woff");}.ff1_c01021{font-family:ff1_c01021;line-height:1.109863;font-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_c01021{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c01021{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c01021{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m0_c01021{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5_c01021{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);}
.m4_c01021{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m2_c01021{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.v0_c01021{vertical-align:0.000000px;}
.ls0_c01021{letter-spacing:0.000000px;}
.sc__c01021{text-shadow:none;}
.sc0_c01021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01021{-webkit-text-stroke:0px transparent;}
.sc0_c01021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01021{word-spacing:0.000000px;}
.fc0_c01021{color:transparent;}
.fs2_c01021{font-size:3.456000px;}
.fs1_c01021{font-size:10.380000px;}
.fs0_c01021{font-size:17.280000px;}
.fs3_c01021{font-size:24.180000px;}
.fs4_c01021{font-size:55.320000px;}
.fs5_c01021{font-size:58.740000px;}
.fs6_c01021{font-size:65.640000px;}
.y0_c01021{bottom:0.000000px;}
.y7_c01021{bottom:1134.435000px;}
.y6_c01021{bottom:1136.160000px;}
.y5_c01021{bottom:1137.030000px;}
.y4_c01021{bottom:1156.035000px;}
.y3_c01021{bottom:1156.890000px;}
.y1_c01021{bottom:1157.760000px;}
.y2_c01021{bottom:1159.485000px;}
.h4_c01021{height:3.110063px;}
.h3_c01021{height:9.340986px;}
.h2_c01021{height:15.550313px;}
.h5_c01021{height:21.759639px;}
.h6_c01021{height:49.782598px;}
.h7_c01021{height:52.860264px;}
.h8_c01021{height:59.069590px;}
.h1_c01021{height:1507.500000px;}
.h0_c01021{height:1507.680000px;}
.w0_c01021{width:1107.645000px;}
.w1_c01021{width:1107.750000px;}
.x0_c01021{left:0.000000px;}
.x9_c01021{left:590.114880px;}
.x1_c01021{left:639.360000px;}
.x2_c01021{left:660.960000px;}
.x3_c01021{left:670.470000px;}
.x7_c01021{left:756.000000px;}
.x4_c01021{left:779.325000px;}
.x5_c01021{left:787.965000px;}
.x6_c01021{left:813.030000px;}
.x8_c01021{left:816.480000px;}
@media print{
.v0_c01021{vertical-align:0.000000pt;}
.ls0_c01021{letter-spacing:0.000000pt;}
.ws0_c01021{word-spacing:0.000000pt;}
.fs2_c01021{font-size:3.072000pt;}
.fs1_c01021{font-size:9.226667pt;}
.fs0_c01021{font-size:15.360000pt;}
.fs3_c01021{font-size:21.493333pt;}
.fs4_c01021{font-size:49.173333pt;}
.fs5_c01021{font-size:52.213333pt;}
.fs6_c01021{font-size:58.346667pt;}
.y0_c01021{bottom:0.000000pt;}
.y7_c01021{bottom:1008.386667pt;}
.y6_c01021{bottom:1009.920000pt;}
.y5_c01021{bottom:1010.693333pt;}
.y4_c01021{bottom:1027.586667pt;}
.y3_c01021{bottom:1028.346667pt;}
.y1_c01021{bottom:1029.120000pt;}
.y2_c01021{bottom:1030.653333pt;}
.h4_c01021{height:2.764500pt;}
.h3_c01021{height:8.303099pt;}
.h2_c01021{height:13.822500pt;}
.h5_c01021{height:19.341901pt;}
.h6_c01021{height:44.251198pt;}
.h7_c01021{height:46.986901pt;}
.h8_c01021{height:52.506302pt;}
.h1_c01021{height:1340.000000pt;}
.h0_c01021{height:1340.160000pt;}
.w0_c01021{width:984.573333pt;}
.w1_c01021{width:984.666667pt;}
.x0_c01021{left:0.000000pt;}
.x9_c01021{left:524.546560pt;}
.x1_c01021{left:568.320000pt;}
.x2_c01021{left:587.520000pt;}
.x3_c01021{left:595.973333pt;}
.x7_c01021{left:672.000000pt;}
.x4_c01021{left:692.733333pt;}
.x5_c01021{left:700.413333pt;}
.x6_c01021{left:722.693333pt;}
.x8_c01021{left:725.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_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_1ee800aa00ff6b66b20bce69.woff2')format("woff");}.ff1_c01022{font-family:ff1_c01022;line-height:1.109863;font-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_c01022{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);}
.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;}
.fs0_c01022{font-size:600.000000px;}
.y0_c01022{bottom:0.000000px;}
.y1_c01022{bottom:15.000000px;}
.h2_c01022{height:539.941406px;}
.h0_c01022{height:1521.510000px;}
.h1_c01022{height:1521.750000px;}
.w0_c01022{width:1088.640000px;}
.w1_c01022{width:1089.000000px;}
.x0_c01022{left:0.000000px;}
.x1_c01022{left:15.000000px;}
@media print{
.v0_c01022{vertical-align:0.000000pt;}
.ls0_c01022{letter-spacing:0.000000pt;}
.ws0_c01022{word-spacing:0.000000pt;}
.fs0_c01022{font-size:533.333333pt;}
.y0_c01022{bottom:0.000000pt;}
.y1_c01022{bottom:13.333333pt;}
.h2_c01022{height:479.947917pt;}
.h0_c01022{height:1352.453333pt;}
.h1_c01022{height:1352.666667pt;}
.w0_c01022{width:967.680000pt;}
.w1_c01022{width:968.000000pt;}
.x0_c01022{left:0.000000pt;}
.x1_c01022{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8816888f2ee67a4f39b67181.woff2')format("woff");}.ff1_c01023{font-family:ff1_c01023;line-height:1.109863;font-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_c01023{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01023{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.m20_c01023{transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);}
.m16_c01023{transform:matrix(0.069175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069175,0.000000,0.000000,0.250000,0,0);}
.m1e_c01023{transform:matrix(0.069700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069700,0.000000,0.000000,0.250000,0,0);}
.m26_c01023{transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085950,0.000000,0.000000,0.250000,0,0);}
.m6_c01023{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);}
.m27_c01023{transform:matrix(0.103150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103150,0.000000,0.000000,0.250000,0,0);}
.m29_c01023{transform:matrix(0.107675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107675,0.000000,0.000000,0.250000,0,0);}
.m25_c01023{transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);}
.mb_c01023{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m2_c01023{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m13_c01023{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m11_c01023{transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);}
.m3_c01023{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);}
.m1a_c01023{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);}
.m1d_c01023{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);}
.m19_c01023{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.me_c01023{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m14_c01023{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.m15_c01023{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m5_c01023{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);}
.m24_c01023{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);}
.m23_c01023{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);}
.m1f_c01023{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01023{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c01023{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_c01023{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);}
.m1_c01023{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);}
.mc_c01023{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.ma_c01023{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);}
.mf_c01023{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m28_c01023{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m12_c01023{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);}
.m4_c01023{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m17_c01023{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);}
.m2a_c01023{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m18_c01023{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m7_c01023{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);}
.m10_c01023{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01023{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m0_c01023{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m8_c01023{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);}
.md_c01023{transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.985000,0.000000,0.000000,0.250000,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;}
.fs6_c01023{font-size:3.456000px;}
.fsd_c01023{font-size:6.000000px;}
.fs4_c01023{font-size:6.900000px;}
.fs2_c01023{font-size:13.800000px;}
.fs0_c01023{font-size:17.280000px;}
.fs1_c01023{font-size:20.760000px;}
.fs5_c01023{font-size:24.180000px;}
.fs8_c01023{font-size:27.660000px;}
.fs9_c01023{font-size:34.560000px;}
.fs11_c01023{font-size:41.460000px;}
.fs7_c01023{font-size:44.940000px;}
.fsb_c01023{font-size:51.840000px;}
.fsa_c01023{font-size:58.740000px;}
.fs3_c01023{font-size:69.120000px;}
.fs10_c01023{font-size:72.600000px;}
.fs14_c01023{font-size:76.020000px;}
.fs13_c01023{font-size:82.920000px;}
.fsf_c01023{font-size:93.300000px;}
.fsc_c01023{font-size:96.780000px;}
.fs12_c01023{font-size:103.680000px;}
.fse_c01023{font-size:141.720000px;}
.y0_c01023{bottom:0.000000px;}
.y32_c01023{bottom:206.490000px;}
.y34_c01023{bottom:209.085000px;}
.y33_c01023{bottom:214.275000px;}
.y31_c01023{bottom:485.565000px;}
.y2f_c01023{bottom:503.715000px;}
.y2e_c01023{bottom:511.485000px;}
.y30_c01023{bottom:512.355000px;}
.y2d_c01023{bottom:524.445000px;}
.y2c_c01023{bottom:531.360000px;}
.y28_c01023{bottom:549.510000px;}
.y29_c01023{bottom:550.365000px;}
.y2a_c01023{bottom:551.235000px;}
.y2b_c01023{bottom:552.960000px;}
.y27_c01023{bottom:563.325000px;}
.y26_c01023{bottom:568.515000px;}
.y25_c01023{bottom:588.390000px;}
.y24_c01023{bottom:596.160000px;}
.y22_c01023{bottom:622.950000px;}
.y23_c01023{bottom:631.590000px;}
.y20_c01023{bottom:637.635000px;}
.y1f_c01023{bottom:639.360000px;}
.y21_c01023{bottom:641.955000px;}
.y1e_c01023{bottom:649.725000px;}
.y1d_c01023{bottom:675.645000px;}
.y1b_c01023{bottom:824.250000px;}
.y1c_c01023{bottom:830.310000px;}
.y19_c01023{bottom:1015.200000px;}
.y1a_c01023{bottom:1023.840000px;}
.y17_c01023{bottom:1033.350000px;}
.y18_c01023{bottom:1041.990000px;}
.y16_c01023{bottom:1060.995000px;}
.y15_c01023{bottom:1076.550000px;}
.y14_c01023{bottom:1085.190000px;}
.y13_c01023{bottom:1101.600000px;}
.y12_c01023{bottom:1142.205000px;}
.y11_c01023{bottom:1152.570000px;}
.y10_c01023{bottom:1229.475000px;}
.yf_c01023{bottom:1230.330000px;}
.ye_c01023{bottom:1245.030000px;}
.yd_c01023{bottom:1253.670000px;}
.yc_c01023{bottom:1264.035000px;}
.yb_c01023{bottom:1295.130000px;}
.ya_c01023{bottom:1343.520000px;}
.y7_c01023{bottom:1348.710000px;}
.y8_c01023{bottom:1349.565000px;}
.y9_c01023{bottom:1351.290000px;}
.y4_c01023{bottom:1357.350000px;}
.y6_c01023{bottom:1365.120000px;}
.y5_c01023{bottom:1371.165000px;}
.y3_c01023{bottom:1376.355000px;}
.y2_c01023{bottom:1378.080000px;}
.y1_c01023{bottom:1415.235000px;}
.h8_c01023{height:3.110063px;}
.hf_c01023{height:5.399414px;}
.h6_c01023{height:6.209326px;}
.h4_c01023{height:12.418652px;}
.h2_c01023{height:15.550313px;}
.h3_c01023{height:18.681973px;}
.h7_c01023{height:21.759639px;}
.ha_c01023{height:24.891299px;}
.hb_c01023{height:31.100625px;}
.h13_c01023{height:37.309951px;}
.h9_c01023{height:40.441611px;}
.hd_c01023{height:46.650937px;}
.hc_c01023{height:52.860264px;}
.h5_c01023{height:62.201250px;}
.h12_c01023{height:65.332910px;}
.h16_c01023{height:68.410576px;}
.h15_c01023{height:74.619902px;}
.h11_c01023{height:83.960889px;}
.he_c01023{height:87.092549px;}
.h14_c01023{height:93.301875px;}
.h10_c01023{height:127.534160px;}
.h1_c01023{height:1507.500000px;}
.h0_c01023{height:1507.680000px;}
.w0_c01023{width:1107.645000px;}
.w1_c01023{width:1107.750000px;}
.x0_c01023{left:0.000000px;}
.x2_c01023{left:4.320000px;}
.xc_c01023{left:6.045000px;}
.x6_c01023{left:12.960000px;}
.xd_c01023{left:19.005000px;}
.x14_c01023{left:20.730000px;}
.xf_c01023{left:32.835000px;}
.xa_c01023{left:38.880000px;}
.x12_c01023{left:44.070000px;}
.x13_c01023{left:47.520000px;}
.x3_c01023{left:49.245000px;}
.x1_c01023{left:52.710000px;}
.x9_c01023{left:55.290000px;}
.x4_c01023{left:71.715000px;}
.x7_c01023{left:75.165000px;}
.x5_c01023{left:84.675000px;}
.x8_c01023{left:121.830000px;}
.xb_c01023{left:131.325000px;}
.xe_c01023{left:139.965000px;}
.x15_c01023{left:158.115000px;}
.x10_c01023{left:168.480000px;}
.x11_c01023{left:173.670000px;}
.x16_c01023{left:743.910000px;}
.x17_c01023{left:857.955000px;}
.x18_c01023{left:864.000000px;}
@media print{
.v0_c01023{vertical-align:0.000000pt;}
.ls0_c01023{letter-spacing:0.000000pt;}
.ws0_c01023{word-spacing:0.000000pt;}
.fs6_c01023{font-size:3.072000pt;}
.fsd_c01023{font-size:5.333333pt;}
.fs4_c01023{font-size:6.133333pt;}
.fs2_c01023{font-size:12.266667pt;}
.fs0_c01023{font-size:15.360000pt;}
.fs1_c01023{font-size:18.453333pt;}
.fs5_c01023{font-size:21.493333pt;}
.fs8_c01023{font-size:24.586667pt;}
.fs9_c01023{font-size:30.720000pt;}
.fs11_c01023{font-size:36.853333pt;}
.fs7_c01023{font-size:39.946667pt;}
.fsb_c01023{font-size:46.080000pt;}
.fsa_c01023{font-size:52.213333pt;}
.fs3_c01023{font-size:61.440000pt;}
.fs10_c01023{font-size:64.533333pt;}
.fs14_c01023{font-size:67.573333pt;}
.fs13_c01023{font-size:73.706667pt;}
.fsf_c01023{font-size:82.933333pt;}
.fsc_c01023{font-size:86.026667pt;}
.fs12_c01023{font-size:92.160000pt;}
.fse_c01023{font-size:125.973333pt;}
.y0_c01023{bottom:0.000000pt;}
.y32_c01023{bottom:183.546667pt;}
.y34_c01023{bottom:185.853333pt;}
.y33_c01023{bottom:190.466667pt;}
.y31_c01023{bottom:431.613333pt;}
.y2f_c01023{bottom:447.746667pt;}
.y2e_c01023{bottom:454.653333pt;}
.y30_c01023{bottom:455.426667pt;}
.y2d_c01023{bottom:466.173333pt;}
.y2c_c01023{bottom:472.320000pt;}
.y28_c01023{bottom:488.453333pt;}
.y29_c01023{bottom:489.213333pt;}
.y2a_c01023{bottom:489.986667pt;}
.y2b_c01023{bottom:491.520000pt;}
.y27_c01023{bottom:500.733333pt;}
.y26_c01023{bottom:505.346667pt;}
.y25_c01023{bottom:523.013333pt;}
.y24_c01023{bottom:529.920000pt;}
.y22_c01023{bottom:553.733333pt;}
.y23_c01023{bottom:561.413333pt;}
.y20_c01023{bottom:566.786667pt;}
.y1f_c01023{bottom:568.320000pt;}
.y21_c01023{bottom:570.626667pt;}
.y1e_c01023{bottom:577.533333pt;}
.y1d_c01023{bottom:600.573333pt;}
.y1b_c01023{bottom:732.666667pt;}
.y1c_c01023{bottom:738.053333pt;}
.y19_c01023{bottom:902.400000pt;}
.y1a_c01023{bottom:910.080000pt;}
.y17_c01023{bottom:918.533333pt;}
.y18_c01023{bottom:926.213333pt;}
.y16_c01023{bottom:943.106667pt;}
.y15_c01023{bottom:956.933333pt;}
.y14_c01023{bottom:964.613333pt;}
.y13_c01023{bottom:979.200000pt;}
.y12_c01023{bottom:1015.293333pt;}
.y11_c01023{bottom:1024.506667pt;}
.y10_c01023{bottom:1092.866667pt;}
.yf_c01023{bottom:1093.626667pt;}
.ye_c01023{bottom:1106.693333pt;}
.yd_c01023{bottom:1114.373333pt;}
.yc_c01023{bottom:1123.586667pt;}
.yb_c01023{bottom:1151.226667pt;}
.ya_c01023{bottom:1194.240000pt;}
.y7_c01023{bottom:1198.853333pt;}
.y8_c01023{bottom:1199.613333pt;}
.y9_c01023{bottom:1201.146667pt;}
.y4_c01023{bottom:1206.533333pt;}
.y6_c01023{bottom:1213.440000pt;}
.y5_c01023{bottom:1218.813333pt;}
.y3_c01023{bottom:1223.426667pt;}
.y2_c01023{bottom:1224.960000pt;}
.y1_c01023{bottom:1257.986667pt;}
.h8_c01023{height:2.764500pt;}
.hf_c01023{height:4.799479pt;}
.h6_c01023{height:5.519401pt;}
.h4_c01023{height:11.038802pt;}
.h2_c01023{height:13.822500pt;}
.h3_c01023{height:16.606198pt;}
.h7_c01023{height:19.341901pt;}
.ha_c01023{height:22.125599pt;}
.hb_c01023{height:27.645000pt;}
.h13_c01023{height:33.164401pt;}
.h9_c01023{height:35.948099pt;}
.hd_c01023{height:41.467500pt;}
.hc_c01023{height:46.986901pt;}
.h5_c01023{height:55.290000pt;}
.h12_c01023{height:58.073698pt;}
.h16_c01023{height:60.809401pt;}
.h15_c01023{height:66.328802pt;}
.h11_c01023{height:74.631901pt;}
.he_c01023{height:77.415599pt;}
.h14_c01023{height:82.935000pt;}
.h10_c01023{height:113.363698pt;}
.h1_c01023{height:1340.000000pt;}
.h0_c01023{height:1340.160000pt;}
.w0_c01023{width:984.573333pt;}
.w1_c01023{width:984.666667pt;}
.x0_c01023{left:0.000000pt;}
.x2_c01023{left:3.840000pt;}
.xc_c01023{left:5.373333pt;}
.x6_c01023{left:11.520000pt;}
.xd_c01023{left:16.893333pt;}
.x14_c01023{left:18.426667pt;}
.xf_c01023{left:29.186667pt;}
.xa_c01023{left:34.560000pt;}
.x12_c01023{left:39.173333pt;}
.x13_c01023{left:42.240000pt;}
.x3_c01023{left:43.773333pt;}
.x1_c01023{left:46.853333pt;}
.x9_c01023{left:49.146667pt;}
.x4_c01023{left:63.746667pt;}
.x7_c01023{left:66.813333pt;}
.x5_c01023{left:75.266667pt;}
.x8_c01023{left:108.293333pt;}
.xb_c01023{left:116.733333pt;}
.xe_c01023{left:124.413333pt;}
.x15_c01023{left:140.546667pt;}
.x10_c01023{left:149.760000pt;}
.x11_c01023{left:154.373333pt;}
.x16_c01023{left:661.253333pt;}
.x17_c01023{left:762.626667pt;}
.x18_c01023{left:768.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_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_f61ee4b3b32f7b95cd40a042.woff2')format("woff");}.ff1_c01024{font-family:ff1_c01024;line-height:1.109863;font-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_c01024{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);}
.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;}
.fs0_c01024{font-size:600.000000px;}
.y0_c01024{bottom:0.000000px;}
.y1_c01024{bottom:15.000000px;}
.h2_c01024{height:539.941406px;}
.h0_c01024{height:1521.510000px;}
.h1_c01024{height:1521.750000px;}
.w0_c01024{width:1088.640000px;}
.w1_c01024{width:1089.000000px;}
.x0_c01024{left:0.000000px;}
.x1_c01024{left:15.000000px;}
@media print{
.v0_c01024{vertical-align:0.000000pt;}
.ls0_c01024{letter-spacing:0.000000pt;}
.ws0_c01024{word-spacing:0.000000pt;}
.fs0_c01024{font-size:533.333333pt;}
.y0_c01024{bottom:0.000000pt;}
.y1_c01024{bottom:13.333333pt;}
.h2_c01024{height:479.947917pt;}
.h0_c01024{height:1352.453333pt;}
.h1_c01024{height:1352.666667pt;}
.w0_c01024{width:967.680000pt;}
.w1_c01024{width:968.000000pt;}
.x0_c01024{left:0.000000pt;}
.x1_c01024{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01025;src:url('chunks/assets/font_d3737bbb9bb1608c7cfb3634.woff2')format("woff");}.ff1_c01025{font-family:ff1_c01025;line-height:1.109863;font-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_c01025{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);}
.v0_c01025{vertical-align:0.000000px;}
.ls0_c01025{letter-spacing:0.000000px;}
.sc__c01025{text-shadow:none;}
.sc0_c01025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01025{-webkit-text-stroke:0px transparent;}
.sc0_c01025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01025{word-spacing:0.000000px;}
.fc0_c01025{color:transparent;}
.fs0_c01025{font-size:600.000000px;}
.y0_c01025{bottom:0.000000px;}
.y1_c01025{bottom:15.000000px;}
.h2_c01025{height:539.941406px;}
.h1_c01025{height:1507.500000px;}
.h0_c01025{height:1507.680000px;}
.w0_c01025{width:1107.645000px;}
.w1_c01025{width:1107.750000px;}
.x0_c01025{left:0.000000px;}
.x1_c01025{left:15.000000px;}
@media print{
.v0_c01025{vertical-align:0.000000pt;}
.ls0_c01025{letter-spacing:0.000000pt;}
.ws0_c01025{word-spacing:0.000000pt;}
.fs0_c01025{font-size:533.333333pt;}
.y0_c01025{bottom:0.000000pt;}
.y1_c01025{bottom:13.333333pt;}
.h2_c01025{height:479.947917pt;}
.h1_c01025{height:1340.000000pt;}
.h0_c01025{height:1340.160000pt;}
.w0_c01025{width:984.573333pt;}
.w1_c01025{width:984.666667pt;}
.x0_c01025{left:0.000000pt;}
.x1_c01025{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60fed4f4a8fce856fb60aa77.woff2')format("woff");}.ff1_c01026{font-family:ff1_c01026;line-height:1.109863;font-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_c01026{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m0_c01026{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c01026{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.mc_c01026{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);}
.m3_c01026{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.m8_c01026{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);}
.mb_c01026{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c01026{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c01026{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);}
.m4_c01026{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md_c01026{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m10_c01026{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);}
.mf_c01026{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.me_c01026{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1_c01026{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m6_c01026{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m2_c01026{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,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;}
.fs5_c01026{font-size:3.456000px;}
.fs0_c01026{font-size:6.000000px;}
.fs1_c01026{font-size:6.900000px;}
.fs2_c01026{font-size:10.380000px;}
.fs4_c01026{font-size:20.760000px;}
.fsc_c01026{font-size:24.180000px;}
.fs3_c01026{font-size:34.560000px;}
.fs7_c01026{font-size:58.740000px;}
.fsa_c01026{font-size:62.220000px;}
.fs8_c01026{font-size:69.120000px;}
.fsb_c01026{font-size:72.600000px;}
.fs9_c01026{font-size:96.780000px;}
.fs6_c01026{font-size:100.200000px;}
.y0_c01026{bottom:0.000000px;}
.y10_c01026{bottom:173.670000px;}
.yf_c01026{bottom:463.965000px;}
.yd_c01026{bottom:466.560000px;}
.ye_c01026{bottom:487.290000px;}
.ya_c01026{bottom:505.440000px;}
.y9_c01026{bottom:507.165000px;}
.yc_c01026{bottom:508.035000px;}
.yb_c01026{bottom:514.080000px;}
.y8_c01026{bottom:529.635000px;}
.y11_c01026{bottom:933.120000px;}
.y6_c01026{bottom:1467.930000px;}
.y5_c01026{bottom:1468.800000px;}
.y7_c01026{bottom:1469.670000px;}
.y4_c01026{bottom:1472.250000px;}
.y3_c01026{bottom:1473.120000px;}
.y1_c01026{bottom:1491.270000px;}
.y2_c01026{bottom:1492.995000px;}
.h7_c01026{height:3.110063px;}
.h2_c01026{height:5.399414px;}
.h3_c01026{height:6.209326px;}
.h4_c01026{height:9.340986px;}
.h6_c01026{height:18.681973px;}
.he_c01026{height:21.759639px;}
.h5_c01026{height:31.100625px;}
.h9_c01026{height:52.860264px;}
.hc_c01026{height:55.991924px;}
.ha_c01026{height:62.201250px;}
.hd_c01026{height:65.332910px;}
.hb_c01026{height:87.092549px;}
.h8_c01026{height:90.170215px;}
.h0_c01026{height:1521.510000px;}
.h1_c01026{height:1521.750000px;}
.w0_c01026{width:1088.640000px;}
.w1_c01026{width:1089.000000px;}
.x0_c01026{left:0.000000px;}
.xa_c01026{left:218.595000px;}
.xb_c01026{left:228.090000px;}
.xc_c01026{left:238.470000px;}
.x10_c01026{left:271.290000px;}
.x1_c01026{left:274.755000px;}
.xd_c01026{left:312.765000px;}
.xe_c01026{left:334.365000px;}
.x12_c01026{left:398.310000px;}
.x11_c01026{left:400.890000px;}
.xf_c01026{left:402.630000px;}
.x13_c01026{left:826.845000px;}
.x3_c01026{left:908.925000px;}
.x4_c01026{left:918.435000px;}
.x5_c01026{left:930.525000px;}
.x6_c01026{left:938.310000px;}
.x7_c01026{left:974.595000px;}
.x8_c01026{left:991.005000px;}
.x9_c01026{left:994.470000px;}
.x14_c01026{left:1005.690000px;}
.x2_c01026{left:1010.892504px;}
@media print{
.v0_c01026{vertical-align:0.000000pt;}
.ls0_c01026{letter-spacing:0.000000pt;}
.ws0_c01026{word-spacing:0.000000pt;}
.fs5_c01026{font-size:3.072000pt;}
.fs0_c01026{font-size:5.333333pt;}
.fs1_c01026{font-size:6.133333pt;}
.fs2_c01026{font-size:9.226667pt;}
.fs4_c01026{font-size:18.453333pt;}
.fsc_c01026{font-size:21.493333pt;}
.fs3_c01026{font-size:30.720000pt;}
.fs7_c01026{font-size:52.213333pt;}
.fsa_c01026{font-size:55.306667pt;}
.fs8_c01026{font-size:61.440000pt;}
.fsb_c01026{font-size:64.533333pt;}
.fs9_c01026{font-size:86.026667pt;}
.fs6_c01026{font-size:89.066667pt;}
.y0_c01026{bottom:0.000000pt;}
.y10_c01026{bottom:154.373333pt;}
.yf_c01026{bottom:412.413333pt;}
.yd_c01026{bottom:414.720000pt;}
.ye_c01026{bottom:433.146667pt;}
.ya_c01026{bottom:449.280000pt;}
.y9_c01026{bottom:450.813333pt;}
.yc_c01026{bottom:451.586667pt;}
.yb_c01026{bottom:456.960000pt;}
.y8_c01026{bottom:470.786667pt;}
.y11_c01026{bottom:829.440000pt;}
.y6_c01026{bottom:1304.826667pt;}
.y5_c01026{bottom:1305.600000pt;}
.y7_c01026{bottom:1306.373333pt;}
.y4_c01026{bottom:1308.666667pt;}
.y3_c01026{bottom:1309.440000pt;}
.y1_c01026{bottom:1325.573333pt;}
.y2_c01026{bottom:1327.106667pt;}
.h7_c01026{height:2.764500pt;}
.h2_c01026{height:4.799479pt;}
.h3_c01026{height:5.519401pt;}
.h4_c01026{height:8.303099pt;}
.h6_c01026{height:16.606198pt;}
.he_c01026{height:19.341901pt;}
.h5_c01026{height:27.645000pt;}
.h9_c01026{height:46.986901pt;}
.hc_c01026{height:49.770599pt;}
.ha_c01026{height:55.290000pt;}
.hd_c01026{height:58.073698pt;}
.hb_c01026{height:77.415599pt;}
.h8_c01026{height:80.151302pt;}
.h0_c01026{height:1352.453333pt;}
.h1_c01026{height:1352.666667pt;}
.w0_c01026{width:967.680000pt;}
.w1_c01026{width:968.000000pt;}
.x0_c01026{left:0.000000pt;}
.xa_c01026{left:194.306667pt;}
.xb_c01026{left:202.746667pt;}
.xc_c01026{left:211.973333pt;}
.x10_c01026{left:241.146667pt;}
.x1_c01026{left:244.226667pt;}
.xd_c01026{left:278.013333pt;}
.xe_c01026{left:297.213333pt;}
.x12_c01026{left:354.053333pt;}
.x11_c01026{left:356.346667pt;}
.xf_c01026{left:357.893333pt;}
.x13_c01026{left:734.973333pt;}
.x3_c01026{left:807.933333pt;}
.x4_c01026{left:816.386667pt;}
.x5_c01026{left:827.133333pt;}
.x6_c01026{left:834.053333pt;}
.x7_c01026{left:866.306667pt;}
.x8_c01026{left:880.893333pt;}
.x9_c01026{left:883.973333pt;}
.x14_c01026{left:893.946667pt;}
.x2_c01026{left:898.571115pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b959fe836ae6bac2d549f17a.woff2')format("woff");}.ff1_c01027{font-family:ff1_c01027;line-height:1.109863;font-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_c01027{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01027{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);}
.m1_c01027{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c01027{transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.025000,0.000000,0.000000,0.250000,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;}
.fc0_c01027{color:transparent;}
.fs3_c01027{font-size:6.900000px;}
.fs2_c01027{font-size:13.800000px;}
.fs0_c01027{font-size:24.180000px;}
.fs1_c01027{font-size:38.040000px;}
.y0_c01027{bottom:0.000000px;}
.y3_c01027{bottom:959.910000px;}
.y4_c01027{bottom:962.490000px;}
.y2_c01027{bottom:1178.490000px;}
.y1_c01027{bottom:1420.410000px;}
.h5_c01027{height:6.209326px;}
.h4_c01027{height:12.418652px;}
.h2_c01027{height:21.759639px;}
.h3_c01027{height:34.232285px;}
.h1_c01027{height:1507.500000px;}
.h0_c01027{height:1507.680000px;}
.w0_c01027{width:1107.645000px;}
.w1_c01027{width:1107.750000px;}
.x0_c01027{left:0.000000px;}
.x1_c01027{left:147.750000px;}
.x3_c01027{left:163.290000px;}
.x2_c01027{left:175.395000px;}
@media print{
.v0_c01027{vertical-align:0.000000pt;}
.ls0_c01027{letter-spacing:0.000000pt;}
.ws0_c01027{word-spacing:0.000000pt;}
.fs3_c01027{font-size:6.133333pt;}
.fs2_c01027{font-size:12.266667pt;}
.fs0_c01027{font-size:21.493333pt;}
.fs1_c01027{font-size:33.813333pt;}
.y0_c01027{bottom:0.000000pt;}
.y3_c01027{bottom:853.253333pt;}
.y4_c01027{bottom:855.546667pt;}
.y2_c01027{bottom:1047.546667pt;}
.y1_c01027{bottom:1262.586667pt;}
.h5_c01027{height:5.519401pt;}
.h4_c01027{height:11.038802pt;}
.h2_c01027{height:19.341901pt;}
.h3_c01027{height:30.428698pt;}
.h1_c01027{height:1340.000000pt;}
.h0_c01027{height:1340.160000pt;}
.w0_c01027{width:984.573333pt;}
.w1_c01027{width:984.666667pt;}
.x0_c01027{left:0.000000pt;}
.x1_c01027{left:131.333333pt;}
.x3_c01027{left:145.146667pt;}
.x2_c01027{left:155.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85c4322c1cf447665b58a85a.woff2')format("woff");}.ff1_c01028{font-family:ff1_c01028;line-height:1.109863;font-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_c01028{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mc_c01028{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m13_c01028{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.md_c01028{transform:matrix(0.083125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083125,0.000000,0.000000,0.250000,0,0);}
.m11_c01028{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m0_c01028{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me_c01028{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.m7_c01028{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m6_c01028{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);}
.m5_c01028{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2_c01028{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01028{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12_c01028{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c01028{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);}
.mb_c01028{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c01028{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.ma_c01028{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mf_c01028{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1_c01028{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m4_c01028{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,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:3.456000px;}
.fse_c01028{font-size:6.000000px;}
.fs2_c01028{font-size:6.900000px;}
.fs1_c01028{font-size:10.380000px;}
.fs6_c01028{font-size:13.800000px;}
.fs3_c01028{font-size:17.280000px;}
.fs4_c01028{font-size:20.760000px;}
.fsc_c01028{font-size:24.180000px;}
.fsb_c01028{font-size:27.660000px;}
.fsd_c01028{font-size:41.460000px;}
.fsa_c01028{font-size:48.360000px;}
.fs7_c01028{font-size:51.840000px;}
.fs9_c01028{font-size:58.740000px;}
.fs5_c01028{font-size:93.300000px;}
.fs8_c01028{font-size:131.340000px;}
.y0_c01028{bottom:0.000000px;}
.y16_c01028{bottom:1052.355000px;}
.y17_c01028{bottom:1053.210000px;}
.y15_c01028{bottom:1068.765000px;}
.y14_c01028{bottom:1075.680000px;}
.y13_c01028{bottom:1076.550000px;}
.y12_c01028{bottom:1147.395000px;}
.y10_c01028{bottom:1154.310000px;}
.y11_c01028{bottom:1158.630000px;}
.yd_c01028{bottom:1173.315000px;}
.yf_c01028{bottom:1177.635000px;}
.ye_c01028{bottom:1179.360000px;}
.yc_c01028{bottom:1232.070000px;}
.yb_c01028{bottom:1270.950000px;}
.ya_c01028{bottom:1277.850000px;}
.y18_c01028{bottom:1425.600000px;}
.y19_c01028{bottom:1426.470000px;}
.y9_c01028{bottom:1443.750000px;}
.y8_c01028{bottom:1448.070000px;}
.y7_c01028{bottom:1467.930000px;}
.y6_c01028{bottom:1468.800000px;}
.y5_c01028{bottom:1470.525000px;}
.y3_c01028{bottom:1473.120000px;}
.y4_c01028{bottom:1473.990000px;}
.y2_c01028{bottom:1502.490000px;}
.y1_c01028{bottom:1505.955000px;}
.h2_c01028{height:3.110063px;}
.h10_c01028{height:5.399414px;}
.h4_c01028{height:6.209326px;}
.h3_c01028{height:9.340986px;}
.h8_c01028{height:12.418652px;}
.h5_c01028{height:15.550313px;}
.h6_c01028{height:18.681973px;}
.he_c01028{height:21.759639px;}
.hd_c01028{height:24.891299px;}
.hf_c01028{height:37.309951px;}
.hc_c01028{height:43.519277px;}
.h9_c01028{height:46.650937px;}
.hb_c01028{height:52.860264px;}
.h7_c01028{height:83.960889px;}
.ha_c01028{height:118.193174px;}
.h0_c01028{height:1521.510000px;}
.h1_c01028{height:1521.750000px;}
.w0_c01028{width:1088.640000px;}
.w1_c01028{width:1089.000000px;}
.x0_c01028{left:0.000000px;}
.xd_c01028{left:617.760000px;}
.x1_c01028{left:643.680000px;}
.xe_c01028{left:661.830000px;}
.x19_c01028{left:724.890000px;}
.x1a_c01028{left:735.270000px;}
.x18_c01028{left:891.645000px;}
.x3_c01028{left:908.070000px;}
.x4_c01028{left:924.480000px;}
.x5_c01028{left:930.525000px;}
.x6_c01028{left:937.440000px;}
.x7_c01028{left:940.890000px;}
.x11_c01028{left:953.850000px;}
.x8_c01028{left:955.590000px;}
.x12_c01028{left:963.360000px;}
.x9_c01028{left:965.085000px;}
.xa_c01028{left:974.595000px;}
.xb_c01028{left:977.190000px;}
.x16_c01028{left:980.640000px;}
.x14_c01028{left:983.235000px;}
.xc_c01028{left:991.875000px;}
.x17_c01028{left:1001.370000px;}
.x2_c01028{left:1006.566048px;}
.xf_c01028{left:1036.800000px;}
.x13_c01028{left:1039.395000px;}
.x10_c01028{left:1041.990000px;}
.x15_c01028{left:1080.000000px;}
@media print{
.v0_c01028{vertical-align:0.000000pt;}
.ls0_c01028{letter-spacing:0.000000pt;}
.ws0_c01028{word-spacing:0.000000pt;}
.fs0_c01028{font-size:3.072000pt;}
.fse_c01028{font-size:5.333333pt;}
.fs2_c01028{font-size:6.133333pt;}
.fs1_c01028{font-size:9.226667pt;}
.fs6_c01028{font-size:12.266667pt;}
.fs3_c01028{font-size:15.360000pt;}
.fs4_c01028{font-size:18.453333pt;}
.fsc_c01028{font-size:21.493333pt;}
.fsb_c01028{font-size:24.586667pt;}
.fsd_c01028{font-size:36.853333pt;}
.fsa_c01028{font-size:42.986667pt;}
.fs7_c01028{font-size:46.080000pt;}
.fs9_c01028{font-size:52.213333pt;}
.fs5_c01028{font-size:82.933333pt;}
.fs8_c01028{font-size:116.746667pt;}
.y0_c01028{bottom:0.000000pt;}
.y16_c01028{bottom:935.426667pt;}
.y17_c01028{bottom:936.186667pt;}
.y15_c01028{bottom:950.013333pt;}
.y14_c01028{bottom:956.160000pt;}
.y13_c01028{bottom:956.933333pt;}
.y12_c01028{bottom:1019.906667pt;}
.y10_c01028{bottom:1026.053333pt;}
.y11_c01028{bottom:1029.893333pt;}
.yd_c01028{bottom:1042.946667pt;}
.yf_c01028{bottom:1046.786667pt;}
.ye_c01028{bottom:1048.320000pt;}
.yc_c01028{bottom:1095.173333pt;}
.yb_c01028{bottom:1129.733333pt;}
.ya_c01028{bottom:1135.866667pt;}
.y18_c01028{bottom:1267.200000pt;}
.y19_c01028{bottom:1267.973333pt;}
.y9_c01028{bottom:1283.333333pt;}
.y8_c01028{bottom:1287.173333pt;}
.y7_c01028{bottom:1304.826667pt;}
.y6_c01028{bottom:1305.600000pt;}
.y5_c01028{bottom:1307.133333pt;}
.y3_c01028{bottom:1309.440000pt;}
.y4_c01028{bottom:1310.213333pt;}
.y2_c01028{bottom:1335.546667pt;}
.y1_c01028{bottom:1338.626667pt;}
.h2_c01028{height:2.764500pt;}
.h10_c01028{height:4.799479pt;}
.h4_c01028{height:5.519401pt;}
.h3_c01028{height:8.303099pt;}
.h8_c01028{height:11.038802pt;}
.h5_c01028{height:13.822500pt;}
.h6_c01028{height:16.606198pt;}
.he_c01028{height:19.341901pt;}
.hd_c01028{height:22.125599pt;}
.hf_c01028{height:33.164401pt;}
.hc_c01028{height:38.683802pt;}
.h9_c01028{height:41.467500pt;}
.hb_c01028{height:46.986901pt;}
.h7_c01028{height:74.631901pt;}
.ha_c01028{height:105.060599pt;}
.h0_c01028{height:1352.453333pt;}
.h1_c01028{height:1352.666667pt;}
.w0_c01028{width:967.680000pt;}
.w1_c01028{width:968.000000pt;}
.x0_c01028{left:0.000000pt;}
.xd_c01028{left:549.120000pt;}
.x1_c01028{left:572.160000pt;}
.xe_c01028{left:588.293333pt;}
.x19_c01028{left:644.346667pt;}
.x1a_c01028{left:653.573333pt;}
.x18_c01028{left:792.573333pt;}
.x3_c01028{left:807.173333pt;}
.x4_c01028{left:821.760000pt;}
.x5_c01028{left:827.133333pt;}
.x6_c01028{left:833.280000pt;}
.x7_c01028{left:836.346667pt;}
.x11_c01028{left:847.866667pt;}
.x8_c01028{left:849.413333pt;}
.x12_c01028{left:856.320000pt;}
.x9_c01028{left:857.853333pt;}
.xa_c01028{left:866.306667pt;}
.xb_c01028{left:868.613333pt;}
.x16_c01028{left:871.680000pt;}
.x14_c01028{left:873.986667pt;}
.xc_c01028{left:881.666667pt;}
.x17_c01028{left:890.106667pt;}
.x2_c01028{left:894.725376pt;}
.xf_c01028{left:921.600000pt;}
.x13_c01028{left:923.906667pt;}
.x10_c01028{left:926.213333pt;}
.x15_c01028{left:960.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_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_16440b8188912f5d7100a679.woff2')format("woff");}.ff1_c01029{font-family:ff1_c01029;line-height:1.109863;font-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.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m6_c01029{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m3_c01029{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c01029{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m4_c01029{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);}
.m1_c01029{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c01029{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m5_c01029{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,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;}
.fs3_c01029{font-size:3.456000px;}
.fs0_c01029{font-size:13.800000px;}
.fs1_c01029{font-size:17.280000px;}
.fs6_c01029{font-size:20.760000px;}
.fs2_c01029{font-size:24.180000px;}
.fs4_c01029{font-size:34.560000px;}
.fs5_c01029{font-size:38.040000px;}
.y0_c01029{bottom:0.000000px;}
.y9_c01029{bottom:715.395000px;}
.y8_c01029{bottom:1047.165000px;}
.y7_c01029{bottom:1060.995000px;}
.y6_c01029{bottom:1070.490000px;}
.y5_c01029{bottom:1079.130000px;}
.y3_c01029{bottom:1099.875000px;}
.y4_c01029{bottom:1101.600000px;}
.y2_c01029{bottom:1167.270000px;}
.y1_c01029{bottom:1171.590000px;}
.h5_c01029{height:3.110063px;}
.h2_c01029{height:12.418652px;}
.h3_c01029{height:15.550313px;}
.h8_c01029{height:18.681973px;}
.h4_c01029{height:21.759639px;}
.h6_c01029{height:31.100625px;}
.h7_c01029{height:34.232285px;}
.h1_c01029{height:1507.500000px;}
.h0_c01029{height:1507.680000px;}
.w0_c01029{width:1107.645000px;}
.w1_c01029{width:1107.750000px;}
.x0_c01029{left:0.000000px;}
.x6_c01029{left:116.640000px;}
.x5_c01029{left:119.235000px;}
.x3_c01029{left:122.685000px;}
.x4_c01029{left:138.240000px;}
.x7_c01029{left:141.690000px;}
.x1_c01029{left:177.990000px;}
.x2_c01029{left:181.440000px;}
@media print{
.v0_c01029{vertical-align:0.000000pt;}
.ls0_c01029{letter-spacing:0.000000pt;}
.ws0_c01029{word-spacing:0.000000pt;}
.fs3_c01029{font-size:3.072000pt;}
.fs0_c01029{font-size:12.266667pt;}
.fs1_c01029{font-size:15.360000pt;}
.fs6_c01029{font-size:18.453333pt;}
.fs2_c01029{font-size:21.493333pt;}
.fs4_c01029{font-size:30.720000pt;}
.fs5_c01029{font-size:33.813333pt;}
.y0_c01029{bottom:0.000000pt;}
.y9_c01029{bottom:635.906667pt;}
.y8_c01029{bottom:930.813333pt;}
.y7_c01029{bottom:943.106667pt;}
.y6_c01029{bottom:951.546667pt;}
.y5_c01029{bottom:959.226667pt;}
.y3_c01029{bottom:977.666667pt;}
.y4_c01029{bottom:979.200000pt;}
.y2_c01029{bottom:1037.573333pt;}
.y1_c01029{bottom:1041.413333pt;}
.h5_c01029{height:2.764500pt;}
.h2_c01029{height:11.038802pt;}
.h3_c01029{height:13.822500pt;}
.h8_c01029{height:16.606198pt;}
.h4_c01029{height:19.341901pt;}
.h6_c01029{height:27.645000pt;}
.h7_c01029{height:30.428698pt;}
.h1_c01029{height:1340.000000pt;}
.h0_c01029{height:1340.160000pt;}
.w0_c01029{width:984.573333pt;}
.w1_c01029{width:984.666667pt;}
.x0_c01029{left:0.000000pt;}
.x6_c01029{left:103.680000pt;}
.x5_c01029{left:105.986667pt;}
.x3_c01029{left:109.053333pt;}
.x4_c01029{left:122.880000pt;}
.x7_c01029{left:125.946667pt;}
.x1_c01029{left:158.213333pt;}
.x2_c01029{left:161.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_51a0ac6d420044a2ddadb454.woff2')format("woff");}.ff1_c01030{font-family:ff1_c01030;line-height:1.109863;font-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_c01030{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);}
.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;}
.fs0_c01030{font-size:600.000000px;}
.y0_c01030{bottom:0.000000px;}
.y1_c01030{bottom:15.000000px;}
.h2_c01030{height:539.941406px;}
.h0_c01030{height:1521.510000px;}
.h1_c01030{height:1521.750000px;}
.w0_c01030{width:1088.640000px;}
.w1_c01030{width:1089.000000px;}
.x0_c01030{left:0.000000px;}
.x1_c01030{left:15.000000px;}
@media print{
.v0_c01030{vertical-align:0.000000pt;}
.ls0_c01030{letter-spacing:0.000000pt;}
.ws0_c01030{word-spacing:0.000000pt;}
.fs0_c01030{font-size:533.333333pt;}
.y0_c01030{bottom:0.000000pt;}
.y1_c01030{bottom:13.333333pt;}
.h2_c01030{height:479.947917pt;}
.h0_c01030{height:1352.453333pt;}
.h1_c01030{height:1352.666667pt;}
.w0_c01030{width:967.680000pt;}
.w1_c01030{width:968.000000pt;}
.x0_c01030{left:0.000000pt;}
.x1_c01030{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8a0da171414cbd4fe0a9ab0a.woff2')format("woff");}.ff1_c01031{font-family:ff1_c01031;line-height:1.109863;font-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_c01031{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);}
.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:600.000000px;}
.y0_c01031{bottom:0.000000px;}
.y1_c01031{bottom:15.000000px;}
.h2_c01031{height:539.941406px;}
.h1_c01031{height:1507.500000px;}
.h0_c01031{height:1507.680000px;}
.w1_c01031{width:1098.000000px;}
.w0_c01031{width:1098.150000px;}
.x0_c01031{left:0.000000px;}
.x1_c01031{left:15.000000px;}
@media print{
.v0_c01031{vertical-align:0.000000pt;}
.ls0_c01031{letter-spacing:0.000000pt;}
.ws0_c01031{word-spacing:0.000000pt;}
.fs0_c01031{font-size:533.333333pt;}
.y0_c01031{bottom:0.000000pt;}
.y1_c01031{bottom:13.333333pt;}
.h2_c01031{height:479.947917pt;}
.h1_c01031{height:1340.000000pt;}
.h0_c01031{height:1340.160000pt;}
.w1_c01031{width:976.000000pt;}
.w0_c01031{width:976.133333pt;}
.x0_c01031{left:0.000000pt;}
.x1_c01031{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4a8f66db648e4af3a41aa805.woff2')format("woff");}.ff1_c01032{font-family:ff1_c01032;line-height:1.109863;font-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_c01032{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c01032{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me_c01032{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.m8_c01032{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);}
.m2_c01032{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m11_c01032{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);}
.mf_c01032{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c01032{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c01032{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1_c01032{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c01032{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c01032{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);}
.m3_c01032{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mb_c01032{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);}
.m5_c01032{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);}
.m6_c01032{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);}
.m12_c01032{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m9_c01032{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m10_c01032{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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:3.456000px;}
.fs8_c01032{font-size:6.000000px;}
.fs5_c01032{font-size:10.380000px;}
.fs6_c01032{font-size:13.800000px;}
.fsd_c01032{font-size:17.280000px;}
.fsb_c01032{font-size:20.760000px;}
.fs7_c01032{font-size:27.660000px;}
.fse_c01032{font-size:41.460000px;}
.fs0_c01032{font-size:55.320000px;}
.fs2_c01032{font-size:58.740000px;}
.fs1_c01032{font-size:62.220000px;}
.fs4_c01032{font-size:65.640000px;}
.fs3_c01032{font-size:72.600000px;}
.fs9_c01032{font-size:100.200000px;}
.fsa_c01032{font-size:110.580000px;}
.y0_c01032{bottom:0.000000px;}
.y16_c01032{bottom:374.115000px;}
.y15_c01032{bottom:463.965000px;}
.yd_c01032{bottom:952.125000px;}
.y14_c01032{bottom:1042.845000px;}
.y13_c01032{bottom:1043.715000px;}
.y12_c01032{bottom:1058.400000px;}
.y10_c01032{bottom:1190.595000px;}
.y11_c01032{bottom:1198.365000px;}
.ye_c01032{bottom:1246.755000px;}
.yf_c01032{bottom:1247.610000px;}
.yc_c01032{bottom:1300.320000px;}
.yb_c01032{bottom:1302.915000px;}
.ya_c01032{bottom:1321.050000px;}
.y9_c01032{bottom:1353.885000px;}
.y8_c01032{bottom:1365.120000px;}
.y7_c01032{bottom:1388.445000px;}
.y5_c01032{bottom:1391.040000px;}
.y6_c01032{bottom:1391.910000px;}
.y1_c01032{bottom:1392.765000px;}
.y3_c01032{bottom:1393.635000px;}
.y2_c01032{bottom:1394.490000px;}
.y4_c01032{bottom:1395.360000px;}
.he_c01032{height:3.110063px;}
.ha_c01032{height:5.399414px;}
.h7_c01032{height:9.340986px;}
.h8_c01032{height:12.418652px;}
.hf_c01032{height:15.550313px;}
.hd_c01032{height:18.681973px;}
.h9_c01032{height:24.891299px;}
.h10_c01032{height:37.309951px;}
.h2_c01032{height:49.782598px;}
.h4_c01032{height:52.860264px;}
.h3_c01032{height:55.991924px;}
.h6_c01032{height:59.069590px;}
.h5_c01032{height:65.332910px;}
.hb_c01032{height:90.170215px;}
.hc_c01032{height:99.511201px;}
.h0_c01032{height:1521.510000px;}
.h1_c01032{height:1521.750000px;}
.w0_c01032{width:1088.640000px;}
.w1_c01032{width:1089.000000px;}
.x0_c01032{left:0.000000px;}
.xd_c01032{left:307.590000px;}
.xe_c01032{left:313.635000px;}
.xf_c01032{left:345.600000px;}
.x1_c01032{left:423.360000px;}
.x2_c01032{left:440.640000px;}
.x3_c01032{left:461.370000px;}
.xc_c01032{left:469.155000px;}
.x4_c01032{left:476.925000px;}
.x5_c01032{left:490.755000px;}
.x6_c01032{left:508.890000px;}
.xb_c01032{left:516.675000px;}
.x7_c01032{left:549.510000px;}
.x8_c01032{left:576.285000px;}
.x9_c01032{left:665.280000px;}
.xa_c01032{left:692.925000px;}
.x18_c01032{left:943.485000px;}
.x13_c01032{left:1002.240000px;}
.x14_c01032{left:1012.605000px;}
.x11_c01032{left:1048.035000px;}
.x16_c01032{left:1049.760000px;}
.x12_c01032{left:1057.530000px;}
.x10_c01032{left:1062.720000px;}
.x15_c01032{left:1067.910000px;}
.x17_c01032{left:1075.680000px;}
@media print{
.v0_c01032{vertical-align:0.000000pt;}
.ls0_c01032{letter-spacing:0.000000pt;}
.ws0_c01032{word-spacing:0.000000pt;}
.fsc_c01032{font-size:3.072000pt;}
.fs8_c01032{font-size:5.333333pt;}
.fs5_c01032{font-size:9.226667pt;}
.fs6_c01032{font-size:12.266667pt;}
.fsd_c01032{font-size:15.360000pt;}
.fsb_c01032{font-size:18.453333pt;}
.fs7_c01032{font-size:24.586667pt;}
.fse_c01032{font-size:36.853333pt;}
.fs0_c01032{font-size:49.173333pt;}
.fs2_c01032{font-size:52.213333pt;}
.fs1_c01032{font-size:55.306667pt;}
.fs4_c01032{font-size:58.346667pt;}
.fs3_c01032{font-size:64.533333pt;}
.fs9_c01032{font-size:89.066667pt;}
.fsa_c01032{font-size:98.293333pt;}
.y0_c01032{bottom:0.000000pt;}
.y16_c01032{bottom:332.546667pt;}
.y15_c01032{bottom:412.413333pt;}
.yd_c01032{bottom:846.333333pt;}
.y14_c01032{bottom:926.973333pt;}
.y13_c01032{bottom:927.746667pt;}
.y12_c01032{bottom:940.800000pt;}
.y10_c01032{bottom:1058.306667pt;}
.y11_c01032{bottom:1065.213333pt;}
.ye_c01032{bottom:1108.226667pt;}
.yf_c01032{bottom:1108.986667pt;}
.yc_c01032{bottom:1155.840000pt;}
.yb_c01032{bottom:1158.146667pt;}
.ya_c01032{bottom:1174.266667pt;}
.y9_c01032{bottom:1203.453333pt;}
.y8_c01032{bottom:1213.440000pt;}
.y7_c01032{bottom:1234.173333pt;}
.y5_c01032{bottom:1236.480000pt;}
.y6_c01032{bottom:1237.253333pt;}
.y1_c01032{bottom:1238.013333pt;}
.y3_c01032{bottom:1238.786667pt;}
.y2_c01032{bottom:1239.546667pt;}
.y4_c01032{bottom:1240.320000pt;}
.he_c01032{height:2.764500pt;}
.ha_c01032{height:4.799479pt;}
.h7_c01032{height:8.303099pt;}
.h8_c01032{height:11.038802pt;}
.hf_c01032{height:13.822500pt;}
.hd_c01032{height:16.606198pt;}
.h9_c01032{height:22.125599pt;}
.h10_c01032{height:33.164401pt;}
.h2_c01032{height:44.251198pt;}
.h4_c01032{height:46.986901pt;}
.h3_c01032{height:49.770599pt;}
.h6_c01032{height:52.506302pt;}
.h5_c01032{height:58.073698pt;}
.hb_c01032{height:80.151302pt;}
.hc_c01032{height:88.454401pt;}
.h0_c01032{height:1352.453333pt;}
.h1_c01032{height:1352.666667pt;}
.w0_c01032{width:967.680000pt;}
.w1_c01032{width:968.000000pt;}
.x0_c01032{left:0.000000pt;}
.xd_c01032{left:273.413333pt;}
.xe_c01032{left:278.786667pt;}
.xf_c01032{left:307.200000pt;}
.x1_c01032{left:376.320000pt;}
.x2_c01032{left:391.680000pt;}
.x3_c01032{left:410.106667pt;}
.xc_c01032{left:417.026667pt;}
.x4_c01032{left:423.933333pt;}
.x5_c01032{left:436.226667pt;}
.x6_c01032{left:452.346667pt;}
.xb_c01032{left:459.266667pt;}
.x7_c01032{left:488.453333pt;}
.x8_c01032{left:512.253333pt;}
.x9_c01032{left:591.360000pt;}
.xa_c01032{left:615.933333pt;}
.x18_c01032{left:838.653333pt;}
.x13_c01032{left:890.880000pt;}
.x14_c01032{left:900.093333pt;}
.x11_c01032{left:931.586667pt;}
.x16_c01032{left:933.120000pt;}
.x12_c01032{left:940.026667pt;}
.x10_c01032{left:944.640000pt;}
.x15_c01032{left:949.253333pt;}
.x17_c01032{left:956.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_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_5efb5773a85fe41cd433d5e6.woff2')format("woff");}.ff1_c01033{font-family:ff1_c01033;line-height:1.109863;font-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_c01033{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c01033{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4_c01033{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);}
.m3_c01033{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c01033{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,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:3.456000px;}
.fs1_c01033{font-size:10.380000px;}
.fs2_c01033{font-size:20.760000px;}
.fs3_c01033{font-size:55.320000px;}
.y0_c01033{bottom:0.000000px;}
.y6_c01033{bottom:946.950000px;}
.y5_c01033{bottom:1037.670000px;}
.y4_c01033{bottom:1038.525000px;}
.y3_c01033{bottom:1053.210000px;}
.y1_c01033{bottom:1240.710000px;}
.y2_c01033{bottom:1243.290000px;}
.h2_c01033{height:3.110063px;}
.h3_c01033{height:9.340986px;}
.h4_c01033{height:18.681973px;}
.h5_c01033{height:49.782598px;}
.h1_c01033{height:1507.500000px;}
.h0_c01033{height:1507.680000px;}
.w1_c01033{width:1098.000000px;}
.w0_c01033{width:1098.150000px;}
.x0_c01033{left:0.000000px;}
.x1_c01033{left:177.120000px;}
.x2_c01033{left:186.630048px;}
.x5_c01033{left:191.805000px;}
.x3_c01033{left:196.125000px;}
.x4_c01033{left:204.765000px;}
@media print{
.v0_c01033{vertical-align:0.000000pt;}
.ls0_c01033{letter-spacing:0.000000pt;}
.ws0_c01033{word-spacing:0.000000pt;}
.fs0_c01033{font-size:3.072000pt;}
.fs1_c01033{font-size:9.226667pt;}
.fs2_c01033{font-size:18.453333pt;}
.fs3_c01033{font-size:49.173333pt;}
.y0_c01033{bottom:0.000000pt;}
.y6_c01033{bottom:841.733333pt;}
.y5_c01033{bottom:922.373333pt;}
.y4_c01033{bottom:923.133333pt;}
.y3_c01033{bottom:936.186667pt;}
.y1_c01033{bottom:1102.853333pt;}
.y2_c01033{bottom:1105.146667pt;}
.h2_c01033{height:2.764500pt;}
.h3_c01033{height:8.303099pt;}
.h4_c01033{height:16.606198pt;}
.h5_c01033{height:44.251198pt;}
.h1_c01033{height:1340.000000pt;}
.h0_c01033{height:1340.160000pt;}
.w1_c01033{width:976.000000pt;}
.w0_c01033{width:976.133333pt;}
.x0_c01033{left:0.000000pt;}
.x1_c01033{left:157.440000pt;}
.x2_c01033{left:165.893376pt;}
.x5_c01033{left:170.493333pt;}
.x3_c01033{left:174.333333pt;}
.x4_c01033{left:182.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_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_47f6f2fcae1f6268ec90d28b.woff2')format("woff");}.ff1_c01034{font-family:ff1_c01034;line-height:1.109863;font-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_c01034{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);}
.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;}
.fc0_c01034{color:transparent;}
.fs0_c01034{font-size:600.000000px;}
.y0_c01034{bottom:0.000000px;}
.y1_c01034{bottom:15.000000px;}
.h2_c01034{height:539.941406px;}
.h0_c01034{height:1521.510000px;}
.h1_c01034{height:1521.750000px;}
.w0_c01034{width:1088.640000px;}
.w1_c01034{width:1089.000000px;}
.x0_c01034{left:0.000000px;}
.x1_c01034{left:15.000000px;}
@media print{
.v0_c01034{vertical-align:0.000000pt;}
.ls0_c01034{letter-spacing:0.000000pt;}
.ws0_c01034{word-spacing:0.000000pt;}
.fs0_c01034{font-size:533.333333pt;}
.y0_c01034{bottom:0.000000pt;}
.y1_c01034{bottom:13.333333pt;}
.h2_c01034{height:479.947917pt;}
.h0_c01034{height:1352.453333pt;}
.h1_c01034{height:1352.666667pt;}
.w0_c01034{width:967.680000pt;}
.w1_c01034{width:968.000000pt;}
.x0_c01034{left:0.000000pt;}
.x1_c01034{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_55e1c9e869bf7d3bc2e4ef82.woff2')format("woff");}.ff1_c01035{font-family:ff1_c01035;line-height:1.109863;font-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_c01035{transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);}
.m9_c01035{transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);}
.md_c01035{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c01035{transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);}
.m0_c01035{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);}
.mb_c01035{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);}
.ma_c01035{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m7_c01035{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);}
.m1_c01035{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c01035{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01035{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c01035{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4_c01035{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c01035{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,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;}
.fsa_c01035{font-size:3.456000px;}
.fs9_c01035{font-size:17.280000px;}
.fs5_c01035{font-size:20.760000px;}
.fs0_c01035{font-size:27.660000px;}
.fs8_c01035{font-size:34.560000px;}
.fs7_c01035{font-size:41.460000px;}
.fs4_c01035{font-size:51.840000px;}
.fs6_c01035{font-size:55.320000px;}
.fs3_c01035{font-size:58.740000px;}
.fs1_c01035{font-size:82.920000px;}
.fs2_c01035{font-size:93.300000px;}
.y0_c01035{bottom:0.000000px;}
.yc_c01035{bottom:74.310000px;}
.ye_c01035{bottom:76.035000px;}
.yd_c01035{bottom:76.890000px;}
.yb_c01035{bottom:1126.650000px;}
.ya_c01035{bottom:1134.435000px;}
.y9_c01035{bottom:1145.670000px;}
.y3_c01035{bottom:1384.125000px;}
.y4_c01035{bottom:1388.445000px;}
.y5_c01035{bottom:1389.315000px;}
.y6_c01035{bottom:1390.170000px;}
.y7_c01035{bottom:1391.040000px;}
.y8_c01035{bottom:1401.405000px;}
.y2_c01035{bottom:1417.830000px;}
.y1_c01035{bottom:1442.010000px;}
.hc_c01035{height:3.110063px;}
.hb_c01035{height:15.550313px;}
.h7_c01035{height:18.681973px;}
.h2_c01035{height:24.891299px;}
.ha_c01035{height:31.100625px;}
.h9_c01035{height:37.309951px;}
.h6_c01035{height:46.650937px;}
.h8_c01035{height:49.782598px;}
.h5_c01035{height:52.860264px;}
.h3_c01035{height:74.619902px;}
.h4_c01035{height:83.960889px;}
.h1_c01035{height:1507.500000px;}
.h0_c01035{height:1507.680000px;}
.w1_c01035{width:1098.000000px;}
.w0_c01035{width:1098.150000px;}
.x0_c01035{left:0.000000px;}
.x3_c01035{left:434.595000px;}
.x2_c01035{left:543.450000px;}
.xa_c01035{left:556.410000px;}
.x1_c01035{left:567.645000px;}
.xb_c01035{left:594.435000px;}
.x4_c01035{left:604.800000px;}
.x5_c01035{left:632.445000px;}
.x6_c01035{left:648.000000px;}
.x7_c01035{left:664.410000px;}
.x8_c01035{left:679.965000px;}
.x9_c01035{left:778.470000px;}
@media print{
.v0_c01035{vertical-align:0.000000pt;}
.ls0_c01035{letter-spacing:0.000000pt;}
.ws0_c01035{word-spacing:0.000000pt;}
.fsa_c01035{font-size:3.072000pt;}
.fs9_c01035{font-size:15.360000pt;}
.fs5_c01035{font-size:18.453333pt;}
.fs0_c01035{font-size:24.586667pt;}
.fs8_c01035{font-size:30.720000pt;}
.fs7_c01035{font-size:36.853333pt;}
.fs4_c01035{font-size:46.080000pt;}
.fs6_c01035{font-size:49.173333pt;}
.fs3_c01035{font-size:52.213333pt;}
.fs1_c01035{font-size:73.706667pt;}
.fs2_c01035{font-size:82.933333pt;}
.y0_c01035{bottom:0.000000pt;}
.yc_c01035{bottom:66.053333pt;}
.ye_c01035{bottom:67.586667pt;}
.yd_c01035{bottom:68.346667pt;}
.yb_c01035{bottom:1001.466667pt;}
.ya_c01035{bottom:1008.386667pt;}
.y9_c01035{bottom:1018.373333pt;}
.y3_c01035{bottom:1230.333333pt;}
.y4_c01035{bottom:1234.173333pt;}
.y5_c01035{bottom:1234.946667pt;}
.y6_c01035{bottom:1235.706667pt;}
.y7_c01035{bottom:1236.480000pt;}
.y8_c01035{bottom:1245.693333pt;}
.y2_c01035{bottom:1260.293333pt;}
.y1_c01035{bottom:1281.786667pt;}
.hc_c01035{height:2.764500pt;}
.hb_c01035{height:13.822500pt;}
.h7_c01035{height:16.606198pt;}
.h2_c01035{height:22.125599pt;}
.ha_c01035{height:27.645000pt;}
.h9_c01035{height:33.164401pt;}
.h6_c01035{height:41.467500pt;}
.h8_c01035{height:44.251198pt;}
.h5_c01035{height:46.986901pt;}
.h3_c01035{height:66.328802pt;}
.h4_c01035{height:74.631901pt;}
.h1_c01035{height:1340.000000pt;}
.h0_c01035{height:1340.160000pt;}
.w1_c01035{width:976.000000pt;}
.w0_c01035{width:976.133333pt;}
.x0_c01035{left:0.000000pt;}
.x3_c01035{left:386.306667pt;}
.x2_c01035{left:483.066667pt;}
.xa_c01035{left:494.586667pt;}
.x1_c01035{left:504.573333pt;}
.xb_c01035{left:528.386667pt;}
.x4_c01035{left:537.600000pt;}
.x5_c01035{left:562.173333pt;}
.x6_c01035{left:576.000000pt;}
.x7_c01035{left:590.586667pt;}
.x8_c01035{left:604.413333pt;}
.x9_c01035{left:691.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c358d2944e1bad250632b826.woff2')format("woff");}.ff1_c01036{font-family:ff1_c01036;line-height:1.109863;font-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_c01036{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);}
.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;}
.fs0_c01036{font-size:600.000000px;}
.y0_c01036{bottom:0.000000px;}
.y1_c01036{bottom:15.000000px;}
.h2_c01036{height:539.941406px;}
.h0_c01036{height:1521.510000px;}
.h1_c01036{height:1521.750000px;}
.w0_c01036{width:1088.640000px;}
.w1_c01036{width:1089.000000px;}
.x0_c01036{left:0.000000px;}
.x1_c01036{left:15.000000px;}
@media print{
.v0_c01036{vertical-align:0.000000pt;}
.ls0_c01036{letter-spacing:0.000000pt;}
.ws0_c01036{word-spacing:0.000000pt;}
.fs0_c01036{font-size:533.333333pt;}
.y0_c01036{bottom:0.000000pt;}
.y1_c01036{bottom:13.333333pt;}
.h2_c01036{height:479.947917pt;}
.h0_c01036{height:1352.453333pt;}
.h1_c01036{height:1352.666667pt;}
.w0_c01036{width:967.680000pt;}
.w1_c01036{width:968.000000pt;}
.x0_c01036{left:0.000000pt;}
.x1_c01036{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ce07b0f472e8c1f6618ce1f2.woff2')format("woff");}.ff1_c01037{font-family:ff1_c01037;line-height:1.109863;font-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_c01037{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);}
.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:600.000000px;}
.y0_c01037{bottom:0.000000px;}
.y1_c01037{bottom:15.000000px;}
.h2_c01037{height:539.941406px;}
.h1_c01037{height:1507.500000px;}
.h0_c01037{height:1507.680000px;}
.w1_c01037{width:1098.000000px;}
.w0_c01037{width:1098.150000px;}
.x0_c01037{left:0.000000px;}
.x1_c01037{left:15.000000px;}
@media print{
.v0_c01037{vertical-align:0.000000pt;}
.ls0_c01037{letter-spacing:0.000000pt;}
.ws0_c01037{word-spacing:0.000000pt;}
.fs0_c01037{font-size:533.333333pt;}
.y0_c01037{bottom:0.000000pt;}
.y1_c01037{bottom:13.333333pt;}
.h2_c01037{height:479.947917pt;}
.h1_c01037{height:1340.000000pt;}
.h0_c01037{height:1340.160000pt;}
.w1_c01037{width:976.000000pt;}
.w0_c01037{width:976.133333pt;}
.x0_c01037{left:0.000000pt;}
.x1_c01037{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_56b06dc9b8ff8aa371738183.woff2')format("woff");}.ff1_c01038{font-family:ff1_c01038;line-height:1.109863;font-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_c01038{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);}
.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;}
.fs0_c01038{font-size:600.000000px;}
.y0_c01038{bottom:0.000000px;}
.y1_c01038{bottom:15.000000px;}
.h2_c01038{height:539.941406px;}
.h0_c01038{height:1521.510000px;}
.h1_c01038{height:1521.750000px;}
.w0_c01038{width:1088.640000px;}
.w1_c01038{width:1089.000000px;}
.x0_c01038{left:0.000000px;}
.x1_c01038{left:15.000000px;}
@media print{
.v0_c01038{vertical-align:0.000000pt;}
.ls0_c01038{letter-spacing:0.000000pt;}
.ws0_c01038{word-spacing:0.000000pt;}
.fs0_c01038{font-size:533.333333pt;}
.y0_c01038{bottom:0.000000pt;}
.y1_c01038{bottom:13.333333pt;}
.h2_c01038{height:479.947917pt;}
.h0_c01038{height:1352.453333pt;}
.h1_c01038{height:1352.666667pt;}
.w0_c01038{width:967.680000pt;}
.w1_c01038{width:968.000000pt;}
.x0_c01038{left:0.000000pt;}
.x1_c01038{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01039;src:url('chunks/assets/font_816f18a00674414751904060.woff2')format("woff");}.ff1_c01039{font-family:ff1_c01039;line-height:1.109863;font-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_c01039{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);}
.v0_c01039{vertical-align:0.000000px;}
.ls0_c01039{letter-spacing:0.000000px;}
.sc__c01039{text-shadow:none;}
.sc0_c01039{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01039{-webkit-text-stroke:0px transparent;}
.sc0_c01039{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01039{word-spacing:0.000000px;}
.fc0_c01039{color:transparent;}
.fs0_c01039{font-size:600.000000px;}
.y0_c01039{bottom:0.000000px;}
.y1_c01039{bottom:15.000000px;}
.h2_c01039{height:539.941406px;}
.h1_c01039{height:1507.500000px;}
.h0_c01039{height:1507.680000px;}
.w1_c01039{width:1098.000000px;}
.w0_c01039{width:1098.150000px;}
.x0_c01039{left:0.000000px;}
.x1_c01039{left:15.000000px;}
@media print{
.v0_c01039{vertical-align:0.000000pt;}
.ls0_c01039{letter-spacing:0.000000pt;}
.ws0_c01039{word-spacing:0.000000pt;}
.fs0_c01039{font-size:533.333333pt;}
.y0_c01039{bottom:0.000000pt;}
.y1_c01039{bottom:13.333333pt;}
.h2_c01039{height:479.947917pt;}
.h1_c01039{height:1340.000000pt;}
.h0_c01039{height:1340.160000pt;}
.w1_c01039{width:976.000000pt;}
.w0_c01039{width:976.133333pt;}
.x0_c01039{left:0.000000pt;}
.x1_c01039{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45fe663f880e813e2ea29018.woff2')format("woff");}.ff1_c01040{font-family:ff1_c01040;line-height:1.109863;font-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_c01040{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m0_c01040{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c01040{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m6_c01040{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m5_c01040{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m2_c01040{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01040{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9_c01040{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mb_c01040{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);}
.m1_c01040{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c01040{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m4_c01040{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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;}
.fs0_c01040{font-size:3.456000px;}
.fs2_c01040{font-size:6.900000px;}
.fs1_c01040{font-size:10.380000px;}
.fs5_c01040{font-size:13.800000px;}
.fs4_c01040{font-size:17.280000px;}
.fs3_c01040{font-size:20.760000px;}
.fs6_c01040{font-size:27.660000px;}
.fs7_c01040{font-size:31.080000px;}
.y0_c01040{bottom:0.000000px;}
.yb_c01040{bottom:1096.410000px;}
.ya_c01040{bottom:1097.280000px;}
.ye_c01040{bottom:1353.030000px;}
.yc_c01040{bottom:1411.770000px;}
.yd_c01040{bottom:1413.510000px;}
.y9_c01040{bottom:1467.075000px;}
.y8_c01040{bottom:1468.800000px;}
.y6_c01040{bottom:1469.670000px;}
.y7_c01040{bottom:1470.525000px;}
.y5_c01040{bottom:1471.395000px;}
.y3_c01040{bottom:1472.250000px;}
.y4_c01040{bottom:1473.120000px;}
.y2_c01040{bottom:1502.490000px;}
.y1_c01040{bottom:1505.955000px;}
.h2_c01040{height:3.110063px;}
.h4_c01040{height:6.209326px;}
.h3_c01040{height:9.340986px;}
.h7_c01040{height:12.418652px;}
.h6_c01040{height:15.550313px;}
.h5_c01040{height:18.681973px;}
.h8_c01040{height:24.891299px;}
.h9_c01040{height:27.968965px;}
.h0_c01040{height:1521.510000px;}
.h1_c01040{height:1521.750000px;}
.w0_c01040{width:1088.640000px;}
.w1_c01040{width:1089.000000px;}
.x0_c01040{left:0.000000px;}
.x1_c01040{left:644.550000px;}
.x12_c01040{left:716.250000px;}
.x13_c01040{left:724.035000px;}
.x3_c01040{left:908.929680px;}
.x4_c01040{left:912.390000px;}
.x5_c01040{left:914.970000px;}
.x6_c01040{left:917.565000px;}
.x7_c01040{left:926.205000px;}
.x8_c01040{left:936.570000px;}
.x9_c01040{left:939.165000px;}
.xa_c01040{left:945.210000px;}
.xb_c01040{left:948.675000px;}
.xc_c01040{left:958.170000px;}
.xd_c01040{left:960.765000px;}
.x10_c01040{left:962.490000px;}
.x11_c01040{left:980.640000px;}
.xe_c01040{left:984.960000px;}
.xf_c01040{left:992.730000px;}
.x2_c01040{left:1008.291408px;}
@media print{
.v0_c01040{vertical-align:0.000000pt;}
.ls0_c01040{letter-spacing:0.000000pt;}
.ws0_c01040{word-spacing:0.000000pt;}
.fs0_c01040{font-size:3.072000pt;}
.fs2_c01040{font-size:6.133333pt;}
.fs1_c01040{font-size:9.226667pt;}
.fs5_c01040{font-size:12.266667pt;}
.fs4_c01040{font-size:15.360000pt;}
.fs3_c01040{font-size:18.453333pt;}
.fs6_c01040{font-size:24.586667pt;}
.fs7_c01040{font-size:27.626667pt;}
.y0_c01040{bottom:0.000000pt;}
.yb_c01040{bottom:974.586667pt;}
.ya_c01040{bottom:975.360000pt;}
.ye_c01040{bottom:1202.693333pt;}
.yc_c01040{bottom:1254.906667pt;}
.yd_c01040{bottom:1256.453333pt;}
.y9_c01040{bottom:1304.066667pt;}
.y8_c01040{bottom:1305.600000pt;}
.y6_c01040{bottom:1306.373333pt;}
.y7_c01040{bottom:1307.133333pt;}
.y5_c01040{bottom:1307.906667pt;}
.y3_c01040{bottom:1308.666667pt;}
.y4_c01040{bottom:1309.440000pt;}
.y2_c01040{bottom:1335.546667pt;}
.y1_c01040{bottom:1338.626667pt;}
.h2_c01040{height:2.764500pt;}
.h4_c01040{height:5.519401pt;}
.h3_c01040{height:8.303099pt;}
.h7_c01040{height:11.038802pt;}
.h6_c01040{height:13.822500pt;}
.h5_c01040{height:16.606198pt;}
.h8_c01040{height:22.125599pt;}
.h9_c01040{height:24.861302pt;}
.h0_c01040{height:1352.453333pt;}
.h1_c01040{height:1352.666667pt;}
.w0_c01040{width:967.680000pt;}
.w1_c01040{width:968.000000pt;}
.x0_c01040{left:0.000000pt;}
.x1_c01040{left:572.933333pt;}
.x12_c01040{left:636.666667pt;}
.x13_c01040{left:643.586667pt;}
.x3_c01040{left:807.937493pt;}
.x4_c01040{left:811.013333pt;}
.x5_c01040{left:813.306667pt;}
.x6_c01040{left:815.613333pt;}
.x7_c01040{left:823.293333pt;}
.x8_c01040{left:832.506667pt;}
.x9_c01040{left:834.813333pt;}
.xa_c01040{left:840.186667pt;}
.xb_c01040{left:843.266667pt;}
.xc_c01040{left:851.706667pt;}
.xd_c01040{left:854.013333pt;}
.x10_c01040{left:855.546667pt;}
.x11_c01040{left:871.680000pt;}
.xe_c01040{left:875.520000pt;}
.xf_c01040{left:882.426667pt;}
.x2_c01040{left:896.259029pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01041;src:url('chunks/assets/font_2f13bd122a0f61fd24a2673a.woff2')format("woff");}.ff1_c01041{font-family:ff1_c01041;line-height:1.109863;font-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_c01041{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c01041{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01041{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);}
.m5_c01041{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);}
.m2_c01041{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3_c01041{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);}
.m6_c01041{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c01041{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c01041{vertical-align:0.000000px;}
.ls0_c01041{letter-spacing:0.000000px;}
.sc__c01041{text-shadow:none;}
.sc0_c01041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01041{-webkit-text-stroke:0px transparent;}
.sc0_c01041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01041{word-spacing:0.000000px;}
.fc0_c01041{color:transparent;}
.fs0_c01041{font-size:3.456000px;}
.fs3_c01041{font-size:6.000000px;}
.fs2_c01041{font-size:6.900000px;}
.fs5_c01041{font-size:20.760000px;}
.fs4_c01041{font-size:31.080000px;}
.fs1_c01041{font-size:58.740000px;}
.y0_c01041{bottom:0.000000px;}
.y7_c01041{bottom:924.480000px;}
.y8_c01041{bottom:926.205000px;}
.y6_c01041{bottom:1346.970000px;}
.y4_c01041{bottom:1356.480000px;}
.y5_c01041{bottom:1360.800000px;}
.y3_c01041{bottom:1379.805000px;}
.y2_c01041{bottom:1380.675000px;}
.y1_c01041{bottom:1399.680000px;}
.h2_c01041{height:3.110063px;}
.h5_c01041{height:5.399414px;}
.h4_c01041{height:6.209326px;}
.h7_c01041{height:18.681973px;}
.h6_c01041{height:27.968965px;}
.h3_c01041{height:52.860264px;}
.h1_c01041{height:1507.500000px;}
.h0_c01041{height:1507.680000px;}
.w1_c01041{width:1098.000000px;}
.w0_c01041{width:1098.150000px;}
.x0_c01041{left:0.000000px;}
.x4_c01041{left:64.800000px;}
.x5_c01041{left:76.035000px;}
.x6_c01041{left:142.560000px;}
.x7_c01041{left:152.070000px;}
.x8_c01041{left:161.564400px;}
.x2_c01041{left:620.355000px;}
.x3_c01041{left:646.275000px;}
.x1_c01041{left:663.555000px;}
@media print{
.v0_c01041{vertical-align:0.000000pt;}
.ls0_c01041{letter-spacing:0.000000pt;}
.ws0_c01041{word-spacing:0.000000pt;}
.fs0_c01041{font-size:3.072000pt;}
.fs3_c01041{font-size:5.333333pt;}
.fs2_c01041{font-size:6.133333pt;}
.fs5_c01041{font-size:18.453333pt;}
.fs4_c01041{font-size:27.626667pt;}
.fs1_c01041{font-size:52.213333pt;}
.y0_c01041{bottom:0.000000pt;}
.y7_c01041{bottom:821.760000pt;}
.y8_c01041{bottom:823.293333pt;}
.y6_c01041{bottom:1197.306667pt;}
.y4_c01041{bottom:1205.760000pt;}
.y5_c01041{bottom:1209.600000pt;}
.y3_c01041{bottom:1226.493333pt;}
.y2_c01041{bottom:1227.266667pt;}
.y1_c01041{bottom:1244.160000pt;}
.h2_c01041{height:2.764500pt;}
.h5_c01041{height:4.799479pt;}
.h4_c01041{height:5.519401pt;}
.h7_c01041{height:16.606198pt;}
.h6_c01041{height:24.861302pt;}
.h3_c01041{height:46.986901pt;}
.h1_c01041{height:1340.000000pt;}
.h0_c01041{height:1340.160000pt;}
.w1_c01041{width:976.000000pt;}
.w0_c01041{width:976.133333pt;}
.x0_c01041{left:0.000000pt;}
.x4_c01041{left:57.600000pt;}
.x5_c01041{left:67.586667pt;}
.x6_c01041{left:126.720000pt;}
.x7_c01041{left:135.173333pt;}
.x8_c01041{left:143.612800pt;}
.x2_c01041{left:551.426667pt;}
.x3_c01041{left:574.466667pt;}
.x1_c01041{left:589.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ac9a77e5274b9a4928c21fd6.woff2')format("woff");}.ff1_c01042{font-family:ff1_c01042;line-height:1.109863;font-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_c01042{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c01042{transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);}
.m2_c01042{transform:matrix(0.061725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061725,0.000000,0.000000,0.250000,0,0);}
.m1_c01042{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.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:10.380000px;}
.fs0_c01042{font-size:13.800000px;}
.fs3_c01042{font-size:148.620000px;}
.fs2_c01042{font-size:176.280000px;}
.y0_c01042{bottom:0.000000px;}
.y4_c01042{bottom:1107.645000px;}
.y3_c01042{bottom:1145.670000px;}
.y1_c01042{bottom:1258.845000px;}
.y2_c01042{bottom:1260.570000px;}
.h3_c01042{height:9.340986px;}
.h2_c01042{height:12.418652px;}
.h5_c01042{height:133.743486px;}
.h4_c01042{height:158.634785px;}
.h0_c01042{height:1521.510000px;}
.h1_c01042{height:1521.750000px;}
.w0_c01042{width:1088.640000px;}
.w1_c01042{width:1089.000000px;}
.x0_c01042{left:0.000000px;}
.x3_c01042{left:980.640000px;}
.x4_c01042{left:982.365000px;}
.x1_c01042{left:1032.480000px;}
.x2_c01042{left:1041.990000px;}
@media print{
.v0_c01042{vertical-align:0.000000pt;}
.ls0_c01042{letter-spacing:0.000000pt;}
.ws0_c01042{word-spacing:0.000000pt;}
.fs1_c01042{font-size:9.226667pt;}
.fs0_c01042{font-size:12.266667pt;}
.fs3_c01042{font-size:132.106667pt;}
.fs2_c01042{font-size:156.693333pt;}
.y0_c01042{bottom:0.000000pt;}
.y4_c01042{bottom:984.573333pt;}
.y3_c01042{bottom:1018.373333pt;}
.y1_c01042{bottom:1118.973333pt;}
.y2_c01042{bottom:1120.506667pt;}
.h3_c01042{height:8.303099pt;}
.h2_c01042{height:11.038802pt;}
.h5_c01042{height:118.883099pt;}
.h4_c01042{height:141.008698pt;}
.h0_c01042{height:1352.453333pt;}
.h1_c01042{height:1352.666667pt;}
.w0_c01042{width:967.680000pt;}
.w1_c01042{width:968.000000pt;}
.x0_c01042{left:0.000000pt;}
.x3_c01042{left:871.680000pt;}
.x4_c01042{left:873.213333pt;}
.x1_c01042{left:917.760000pt;}
.x2_c01042{left:926.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_900390b1818101c57b89b002.woff2')format("woff");}.ff1_c01043{font-family:ff1_c01043;line-height:1.109863;font-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.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);}
.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:600.000000px;}
.y0_c01043{bottom:0.000000px;}
.y1_c01043{bottom:15.000000px;}
.h2_c01043{height:539.941406px;}
.h1_c01043{height:1507.500000px;}
.h0_c01043{height:1507.680000px;}
.w1_c01043{width:1098.000000px;}
.w0_c01043{width:1098.150000px;}
.x0_c01043{left:0.000000px;}
.x1_c01043{left:15.000000px;}
@media print{
.v0_c01043{vertical-align:0.000000pt;}
.ls0_c01043{letter-spacing:0.000000pt;}
.ws0_c01043{word-spacing:0.000000pt;}
.fs0_c01043{font-size:533.333333pt;}
.y0_c01043{bottom:0.000000pt;}
.y1_c01043{bottom:13.333333pt;}
.h2_c01043{height:479.947917pt;}
.h1_c01043{height:1340.000000pt;}
.h0_c01043{height:1340.160000pt;}
.w1_c01043{width:976.000000pt;}
.w0_c01043{width:976.133333pt;}
.x0_c01043{left:0.000000pt;}
.x1_c01043{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85e9a98d7a986de809d32141.woff2')format("woff");}.ff1_c01044{font-family:ff1_c01044;line-height:1.109863;font-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_c01044{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01044{transform:matrix(0.042900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042900,0.000000,0.000000,0.250000,0,0);}
.m1a_c01044{transform:matrix(0.068375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068375,0.000000,0.000000,0.250000,0,0);}
.m22_c01044{transform:matrix(0.101450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101450,0.000000,0.000000,0.250000,0,0);}
.m28_c01044{transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);}
.mc_c01044{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m29_c01044{transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);}
.m0_c01044{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01044{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);}
.m4_c01044{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);}
.m1e_c01044{transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);}
.m13_c01044{transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);}
.m12_c01044{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m26_c01044{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.mb_c01044{transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);}
.m5_c01044{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m7_c01044{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);}
.m20_c01044{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);}
.m2f_c01044{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c01044{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c01044{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);}
.m15_c01044{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);}
.m1f_c01044{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17_c01044{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01044{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);}
.m16_c01044{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3_c01044{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01044{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m14_c01044{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mf_c01044{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);}
.md_c01044{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m25_c01044{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01044{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m27_c01044{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.me_c01044{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01044{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);}
.m10_c01044{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);}
.m8_c01044{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.ma_c01044{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19_c01044{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m30_c01044{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01044{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m6_c01044{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);}
.m1_c01044{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m21_c01044{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);}
.m18_c01044{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m23_c01044{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m9_c01044{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m11_c01044{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,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:3.456000px;}
.fs4_c01044{font-size:6.000000px;}
.fs2_c01044{font-size:6.900000px;}
.fs1_c01044{font-size:10.380000px;}
.fs3_c01044{font-size:13.800000px;}
.fs5_c01044{font-size:17.280000px;}
.fs6_c01044{font-size:20.760000px;}
.fs16_c01044{font-size:24.180000px;}
.fse_c01044{font-size:34.560000px;}
.fs13_c01044{font-size:38.040000px;}
.fs7_c01044{font-size:41.460000px;}
.fsd_c01044{font-size:44.940000px;}
.fs17_c01044{font-size:51.840000px;}
.fs8_c01044{font-size:55.320000px;}
.fsc_c01044{font-size:58.740000px;}
.fsb_c01044{font-size:62.220000px;}
.fsa_c01044{font-size:65.640000px;}
.fs14_c01044{font-size:69.120000px;}
.fs12_c01044{font-size:72.600000px;}
.fs15_c01044{font-size:89.880000px;}
.fs11_c01044{font-size:93.300000px;}
.fsf_c01044{font-size:114.060000px;}
.fs10_c01044{font-size:120.960000px;}
.fs9_c01044{font-size:148.620000px;}
.y0_c01044{bottom:0.000000px;}
.y27_c01044{bottom:630.720000px;}
.y25_c01044{bottom:648.000000px;}
.y26_c01044{bottom:648.870000px;}
.y20_c01044{bottom:660.960000px;}
.y1c_c01044{bottom:665.280000px;}
.y24_c01044{bottom:667.875000px;}
.y1f_c01044{bottom:670.470000px;}
.y1d_c01044{bottom:672.195000px;}
.y1e_c01044{bottom:673.050000px;}
.y23_c01044{bottom:675.645000px;}
.y22_c01044{bottom:676.515000px;}
.y19_c01044{bottom:687.750000px;}
.y1b_c01044{bottom:688.605000px;}
.y1a_c01044{bottom:692.070000px;}
.y18_c01044{bottom:692.925000px;}
.y21_c01044{bottom:695.520000px;}
.y17_c01044{bottom:926.205000px;}
.y16_c01044{bottom:957.315000px;}
.y15_c01044{bottom:977.190000px;}
.y14_c01044{bottom:1376.355000px;}
.yd_c01044{bottom:1379.805000px;}
.ye_c01044{bottom:1381.530000px;}
.yf_c01044{bottom:1382.400000px;}
.y11_c01044{bottom:1383.270000px;}
.y12_c01044{bottom:1384.125000px;}
.y13_c01044{bottom:1393.635000px;}
.y10_c01044{bottom:1396.230000px;}
.yc_c01044{bottom:1404.870000px;}
.y9_c01044{bottom:1409.190000px;}
.ya_c01044{bottom:1444.605000px;}
.yb_c01044{bottom:1447.200000px;}
.y8_c01044{bottom:1467.075000px;}
.y6_c01044{bottom:1470.525000px;}
.y5_c01044{bottom:1471.395000px;}
.y4_c01044{bottom:1472.250000px;}
.y7_c01044{bottom:1476.570000px;}
.y1_c01044{bottom:1490.400000px;}
.y2_c01044{bottom:1494.720000px;}
.y3_c01044{bottom:1497.315000px;}
.h2_c01044{height:3.110063px;}
.h6_c01044{height:5.399414px;}
.h4_c01044{height:6.209326px;}
.h3_c01044{height:9.340986px;}
.h5_c01044{height:12.418652px;}
.h7_c01044{height:15.550313px;}
.h8_c01044{height:18.681973px;}
.h18_c01044{height:21.759639px;}
.h10_c01044{height:31.100625px;}
.h15_c01044{height:34.232285px;}
.h9_c01044{height:37.309951px;}
.hf_c01044{height:40.441611px;}
.h19_c01044{height:46.650937px;}
.ha_c01044{height:49.782598px;}
.he_c01044{height:52.860264px;}
.hd_c01044{height:55.991924px;}
.hc_c01044{height:59.069590px;}
.h16_c01044{height:62.201250px;}
.h14_c01044{height:65.332910px;}
.h17_c01044{height:80.883223px;}
.h13_c01044{height:83.960889px;}
.h11_c01044{height:102.642861px;}
.h12_c01044{height:108.852188px;}
.hb_c01044{height:133.743486px;}
.h0_c01044{height:1521.510000px;}
.h1_c01044{height:1521.750000px;}
.w0_c01044{width:1088.640000px;}
.w1_c01044{width:1089.000000px;}
.x0_c01044{left:0.000000px;}
.xc_c01044{left:265.245000px;}
.x1_c01044{left:275.610000px;}
.x35_c01044{left:285.120000px;}
.x2a_c01044{left:287.715000px;}
.x24_c01044{left:294.630000px;}
.x36_c01044{left:296.355000px;}
.x25_c01044{left:304.125000px;}
.x26_c01044{left:311.910000px;}
.x37_c01044{left:313.635000px;}
.x27_c01044{left:330.045000px;}
.x38_c01044{left:342.150000px;}
.x28_c01044{left:345.600000px;}
.x2b_c01044{left:361.155000px;}
.x39_c01044{left:364.605000px;}
.x2c_c01044{left:384.480000px;}
.x2f_c01044{left:397.440000px;}
.x3a_c01044{left:400.035000px;}
.x29_c01044{left:428.550000px;}
.x10_c01044{left:430.275000px;}
.x11_c01044{left:446.685000px;}
.x2d_c01044{left:456.195000px;}
.x2e_c01044{left:461.370000px;}
.x12_c01044{left:482.115000px;}
.x13_c01044{left:495.930000px;}
.xf_c01044{left:508.890000px;}
.x14_c01044{left:514.080000px;}
.xd_c01044{left:520.995000px;}
.x15_c01044{left:527.910000px;}
.xe_c01044{left:531.360000px;}
.x16_c01044{left:546.915000px;}
.x17_c01044{left:563.325000px;}
.x18_c01044{left:579.750000px;}
.x19_c01044{left:597.030000px;}
.x1a_c01044{left:615.165000px;}
.x1f_c01044{left:620.355000px;}
.x31_c01044{left:629.850000px;}
.x1b_c01044{left:632.445000px;}
.x32_c01044{left:647.130000px;}
.x1c_c01044{left:653.190000px;}
.x1d_c01044{left:687.750000px;}
.x33_c01044{left:711.075000px;}
.x1e_c01044{left:717.120000px;}
.x2_c01044{left:728.355000px;}
.x34_c01044{left:736.125000px;}
.x20_c01044{left:784.515000px;}
.x30_c01044{left:797.475000px;}
.x4_c01044{left:907.200000px;}
.x5_c01044{left:912.390000px;}
.x21_c01044{left:914.115000px;}
.x6_c01044{left:927.930000px;}
.x7_c01044{left:932.250000px;}
.x8_c01044{left:937.440000px;}
.x9_c01044{left:945.210000px;}
.xa_c01044{left:959.040000px;}
.xb_c01044{left:975.450000px;}
.x22_c01044{left:979.770000px;}
.x23_c01044{left:982.365000px;}
.x3_c01044{left:1032.480000px;}
@media print{
.v0_c01044{vertical-align:0.000000pt;}
.ls0_c01044{letter-spacing:0.000000pt;}
.ws0_c01044{word-spacing:0.000000pt;}
.fs0_c01044{font-size:3.072000pt;}
.fs4_c01044{font-size:5.333333pt;}
.fs2_c01044{font-size:6.133333pt;}
.fs1_c01044{font-size:9.226667pt;}
.fs3_c01044{font-size:12.266667pt;}
.fs5_c01044{font-size:15.360000pt;}
.fs6_c01044{font-size:18.453333pt;}
.fs16_c01044{font-size:21.493333pt;}
.fse_c01044{font-size:30.720000pt;}
.fs13_c01044{font-size:33.813333pt;}
.fs7_c01044{font-size:36.853333pt;}
.fsd_c01044{font-size:39.946667pt;}
.fs17_c01044{font-size:46.080000pt;}
.fs8_c01044{font-size:49.173333pt;}
.fsc_c01044{font-size:52.213333pt;}
.fsb_c01044{font-size:55.306667pt;}
.fsa_c01044{font-size:58.346667pt;}
.fs14_c01044{font-size:61.440000pt;}
.fs12_c01044{font-size:64.533333pt;}
.fs15_c01044{font-size:79.893333pt;}
.fs11_c01044{font-size:82.933333pt;}
.fsf_c01044{font-size:101.386667pt;}
.fs10_c01044{font-size:107.520000pt;}
.fs9_c01044{font-size:132.106667pt;}
.y0_c01044{bottom:0.000000pt;}
.y27_c01044{bottom:560.640000pt;}
.y25_c01044{bottom:576.000000pt;}
.y26_c01044{bottom:576.773333pt;}
.y20_c01044{bottom:587.520000pt;}
.y1c_c01044{bottom:591.360000pt;}
.y24_c01044{bottom:593.666667pt;}
.y1f_c01044{bottom:595.973333pt;}
.y1d_c01044{bottom:597.506667pt;}
.y1e_c01044{bottom:598.266667pt;}
.y23_c01044{bottom:600.573333pt;}
.y22_c01044{bottom:601.346667pt;}
.y19_c01044{bottom:611.333333pt;}
.y1b_c01044{bottom:612.093333pt;}
.y1a_c01044{bottom:615.173333pt;}
.y18_c01044{bottom:615.933333pt;}
.y21_c01044{bottom:618.240000pt;}
.y17_c01044{bottom:823.293333pt;}
.y16_c01044{bottom:850.946667pt;}
.y15_c01044{bottom:868.613333pt;}
.y14_c01044{bottom:1223.426667pt;}
.yd_c01044{bottom:1226.493333pt;}
.ye_c01044{bottom:1228.026667pt;}
.yf_c01044{bottom:1228.800000pt;}
.y11_c01044{bottom:1229.573333pt;}
.y12_c01044{bottom:1230.333333pt;}
.y13_c01044{bottom:1238.786667pt;}
.y10_c01044{bottom:1241.093333pt;}
.yc_c01044{bottom:1248.773333pt;}
.y9_c01044{bottom:1252.613333pt;}
.ya_c01044{bottom:1284.093333pt;}
.yb_c01044{bottom:1286.400000pt;}
.y8_c01044{bottom:1304.066667pt;}
.y6_c01044{bottom:1307.133333pt;}
.y5_c01044{bottom:1307.906667pt;}
.y4_c01044{bottom:1308.666667pt;}
.y7_c01044{bottom:1312.506667pt;}
.y1_c01044{bottom:1324.800000pt;}
.y2_c01044{bottom:1328.640000pt;}
.y3_c01044{bottom:1330.946667pt;}
.h2_c01044{height:2.764500pt;}
.h6_c01044{height:4.799479pt;}
.h4_c01044{height:5.519401pt;}
.h3_c01044{height:8.303099pt;}
.h5_c01044{height:11.038802pt;}
.h7_c01044{height:13.822500pt;}
.h8_c01044{height:16.606198pt;}
.h18_c01044{height:19.341901pt;}
.h10_c01044{height:27.645000pt;}
.h15_c01044{height:30.428698pt;}
.h9_c01044{height:33.164401pt;}
.hf_c01044{height:35.948099pt;}
.h19_c01044{height:41.467500pt;}
.ha_c01044{height:44.251198pt;}
.he_c01044{height:46.986901pt;}
.hd_c01044{height:49.770599pt;}
.hc_c01044{height:52.506302pt;}
.h16_c01044{height:55.290000pt;}
.h14_c01044{height:58.073698pt;}
.h17_c01044{height:71.896198pt;}
.h13_c01044{height:74.631901pt;}
.h11_c01044{height:91.238099pt;}
.h12_c01044{height:96.757500pt;}
.hb_c01044{height:118.883099pt;}
.h0_c01044{height:1352.453333pt;}
.h1_c01044{height:1352.666667pt;}
.w0_c01044{width:967.680000pt;}
.w1_c01044{width:968.000000pt;}
.x0_c01044{left:0.000000pt;}
.xc_c01044{left:235.773333pt;}
.x1_c01044{left:244.986667pt;}
.x35_c01044{left:253.440000pt;}
.x2a_c01044{left:255.746667pt;}
.x24_c01044{left:261.893333pt;}
.x36_c01044{left:263.426667pt;}
.x25_c01044{left:270.333333pt;}
.x26_c01044{left:277.253333pt;}
.x37_c01044{left:278.786667pt;}
.x27_c01044{left:293.373333pt;}
.x38_c01044{left:304.133333pt;}
.x28_c01044{left:307.200000pt;}
.x2b_c01044{left:321.026667pt;}
.x39_c01044{left:324.093333pt;}
.x2c_c01044{left:341.760000pt;}
.x2f_c01044{left:353.280000pt;}
.x3a_c01044{left:355.586667pt;}
.x29_c01044{left:380.933333pt;}
.x10_c01044{left:382.466667pt;}
.x11_c01044{left:397.053333pt;}
.x2d_c01044{left:405.506667pt;}
.x2e_c01044{left:410.106667pt;}
.x12_c01044{left:428.546667pt;}
.x13_c01044{left:440.826667pt;}
.xf_c01044{left:452.346667pt;}
.x14_c01044{left:456.960000pt;}
.xd_c01044{left:463.106667pt;}
.x15_c01044{left:469.253333pt;}
.xe_c01044{left:472.320000pt;}
.x16_c01044{left:486.146667pt;}
.x17_c01044{left:500.733333pt;}
.x18_c01044{left:515.333333pt;}
.x19_c01044{left:530.693333pt;}
.x1a_c01044{left:546.813333pt;}
.x1f_c01044{left:551.426667pt;}
.x31_c01044{left:559.866667pt;}
.x1b_c01044{left:562.173333pt;}
.x32_c01044{left:575.226667pt;}
.x1c_c01044{left:580.613333pt;}
.x1d_c01044{left:611.333333pt;}
.x33_c01044{left:632.066667pt;}
.x1e_c01044{left:637.440000pt;}
.x2_c01044{left:647.426667pt;}
.x34_c01044{left:654.333333pt;}
.x20_c01044{left:697.346667pt;}
.x30_c01044{left:708.866667pt;}
.x4_c01044{left:806.400000pt;}
.x5_c01044{left:811.013333pt;}
.x21_c01044{left:812.546667pt;}
.x6_c01044{left:824.826667pt;}
.x7_c01044{left:828.666667pt;}
.x8_c01044{left:833.280000pt;}
.x9_c01044{left:840.186667pt;}
.xa_c01044{left:852.480000pt;}
.xb_c01044{left:867.066667pt;}
.x22_c01044{left:870.906667pt;}
.x23_c01044{left:873.213333pt;}
.x3_c01044{left:917.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_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_6a66deb0e27373f12f46c911.woff2')format("woff");}.ff1_c01045{font-family:ff1_c01045;line-height:1.109863;font-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_c01045{transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);}
.m7_c01045{transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051575,0.000000,0.000000,0.250000,0,0);}
.m5_c01045{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m6_c01045{transform:matrix(0.101975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101975,0.000000,0.000000,0.250000,0,0);}
.m4_c01045{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m1_c01045{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01045{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);}
.m0_c01045{transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);}
.m2_c01045{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01045{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,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:10.380000px;}
.fs3_c01045{font-size:13.800000px;}
.fs2_c01045{font-size:20.760000px;}
.fs4_c01045{font-size:31.080000px;}
.fs0_c01045{font-size:34.560000px;}
.fs5_c01045{font-size:38.040000px;}
.fs6_c01045{font-size:72.600000px;}
.fs7_c01045{font-size:120.960000px;}
.fs8_c01045{font-size:124.440000px;}
.y0_c01045{bottom:0.000000px;}
.yc_c01045{bottom:530.490000px;}
.yb_c01045{bottom:531.360000px;}
.ya_c01045{bottom:565.920000px;}
.y9_c01045{bottom:921.030000px;}
.y8_c01045{bottom:952.125000px;}
.y7_c01045{bottom:970.275000px;}
.y1_c01045{bottom:972.000000px;}
.y6_c01045{bottom:980.640000px;}
.y5_c01045{bottom:1362.525000px;}
.y4_c01045{bottom:1363.395000px;}
.y3_c01045{bottom:1368.570000px;}
.y2_c01045{bottom:1371.165000px;}
.h3_c01045{height:9.340986px;}
.h5_c01045{height:12.418652px;}
.h4_c01045{height:18.681973px;}
.h6_c01045{height:27.968965px;}
.h2_c01045{height:31.100625px;}
.h7_c01045{height:34.232285px;}
.h8_c01045{height:65.332910px;}
.h9_c01045{height:108.852188px;}
.ha_c01045{height:111.983848px;}
.h1_c01045{height:1507.500000px;}
.h0_c01045{height:1507.680000px;}
.w1_c01045{width:1098.000000px;}
.w0_c01045{width:1098.150000px;}
.x0_c01045{left:0.000000px;}
.x1_c01045{left:43.200000px;}
.x9_c01045{left:106.275000px;}
.x7_c01045{left:108.870000px;}
.x6_c01045{left:111.450000px;}
.x8_c01045{left:113.190000px;}
.x5_c01045{left:121.830000px;}
.x2_c01045{left:153.795000px;}
.x3_c01045{left:171.075000px;}
.x4_c01045{left:176.250000px;}
@media print{
.v0_c01045{vertical-align:0.000000pt;}
.ls0_c01045{letter-spacing:0.000000pt;}
.ws0_c01045{word-spacing:0.000000pt;}
.fs1_c01045{font-size:9.226667pt;}
.fs3_c01045{font-size:12.266667pt;}
.fs2_c01045{font-size:18.453333pt;}
.fs4_c01045{font-size:27.626667pt;}
.fs0_c01045{font-size:30.720000pt;}
.fs5_c01045{font-size:33.813333pt;}
.fs6_c01045{font-size:64.533333pt;}
.fs7_c01045{font-size:107.520000pt;}
.fs8_c01045{font-size:110.613333pt;}
.y0_c01045{bottom:0.000000pt;}
.yc_c01045{bottom:471.546667pt;}
.yb_c01045{bottom:472.320000pt;}
.ya_c01045{bottom:503.040000pt;}
.y9_c01045{bottom:818.693333pt;}
.y8_c01045{bottom:846.333333pt;}
.y7_c01045{bottom:862.466667pt;}
.y1_c01045{bottom:864.000000pt;}
.y6_c01045{bottom:871.680000pt;}
.y5_c01045{bottom:1211.133333pt;}
.y4_c01045{bottom:1211.906667pt;}
.y3_c01045{bottom:1216.506667pt;}
.y2_c01045{bottom:1218.813333pt;}
.h3_c01045{height:8.303099pt;}
.h5_c01045{height:11.038802pt;}
.h4_c01045{height:16.606198pt;}
.h6_c01045{height:24.861302pt;}
.h2_c01045{height:27.645000pt;}
.h7_c01045{height:30.428698pt;}
.h8_c01045{height:58.073698pt;}
.h9_c01045{height:96.757500pt;}
.ha_c01045{height:99.541198pt;}
.h1_c01045{height:1340.000000pt;}
.h0_c01045{height:1340.160000pt;}
.w1_c01045{width:976.000000pt;}
.w0_c01045{width:976.133333pt;}
.x0_c01045{left:0.000000pt;}
.x1_c01045{left:38.400000pt;}
.x9_c01045{left:94.466667pt;}
.x7_c01045{left:96.773333pt;}
.x6_c01045{left:99.066667pt;}
.x8_c01045{left:100.613333pt;}
.x5_c01045{left:108.293333pt;}
.x2_c01045{left:136.706667pt;}
.x3_c01045{left:152.066667pt;}
.x4_c01045{left:156.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2b5edffa657082d57f71f295.woff2')format("woff");}.ff1_c01046{font-family:ff1_c01046;line-height:1.109863;font-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_c01046{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);}
.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;}
.fc0_c01046{color:transparent;}
.fs0_c01046{font-size:600.000000px;}
.y0_c01046{bottom:0.000000px;}
.y1_c01046{bottom:15.000000px;}
.h2_c01046{height:539.941406px;}
.h0_c01046{height:1521.510000px;}
.h1_c01046{height:1521.750000px;}
.w0_c01046{width:1088.640000px;}
.w1_c01046{width:1089.000000px;}
.x0_c01046{left:0.000000px;}
.x1_c01046{left:15.000000px;}
@media print{
.v0_c01046{vertical-align:0.000000pt;}
.ls0_c01046{letter-spacing:0.000000pt;}
.ws0_c01046{word-spacing:0.000000pt;}
.fs0_c01046{font-size:533.333333pt;}
.y0_c01046{bottom:0.000000pt;}
.y1_c01046{bottom:13.333333pt;}
.h2_c01046{height:479.947917pt;}
.h0_c01046{height:1352.453333pt;}
.h1_c01046{height:1352.666667pt;}
.w0_c01046{width:967.680000pt;}
.w1_c01046{width:968.000000pt;}
.x0_c01046{left:0.000000pt;}
.x1_c01046{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01047;src:url('chunks/assets/font_c93f8d0100f8ac34e4f08de5.woff2')format("woff");}.ff1_c01047{font-family:ff1_c01047;line-height:1.109863;font-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_c01047{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);}
.m1_c01047{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m2_c01047{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c01047{vertical-align:0.000000px;}
.ls0_c01047{letter-spacing:0.000000px;}
.sc__c01047{text-shadow:none;}
.sc0_c01047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01047{-webkit-text-stroke:0px transparent;}
.sc0_c01047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01047{word-spacing:0.000000px;}
.fc0_c01047{color:transparent;}
.fs2_c01047{font-size:17.280000px;}
.fs0_c01047{font-size:20.760000px;}
.fs1_c01047{font-size:76.020000px;}
.y0_c01047{bottom:0.000000px;}
.y3_c01047{bottom:1244.160000px;}
.y2_c01047{bottom:1428.195000px;}
.y1_c01047{bottom:1447.200000px;}
.h4_c01047{height:15.550313px;}
.h2_c01047{height:18.681973px;}
.h3_c01047{height:68.410576px;}
.h1_c01047{height:1507.500000px;}
.h0_c01047{height:1507.680000px;}
.w1_c01047{width:1098.000000px;}
.w0_c01047{width:1098.150000px;}
.x0_c01047{left:0.000000px;}
.x3_c01047{left:57.030000px;}
.x1_c01047{left:431.130000px;}
.x2_c01047{left:449.280000px;}
@media print{
.v0_c01047{vertical-align:0.000000pt;}
.ls0_c01047{letter-spacing:0.000000pt;}
.ws0_c01047{word-spacing:0.000000pt;}
.fs2_c01047{font-size:15.360000pt;}
.fs0_c01047{font-size:18.453333pt;}
.fs1_c01047{font-size:67.573333pt;}
.y0_c01047{bottom:0.000000pt;}
.y3_c01047{bottom:1105.920000pt;}
.y2_c01047{bottom:1269.506667pt;}
.y1_c01047{bottom:1286.400000pt;}
.h4_c01047{height:13.822500pt;}
.h2_c01047{height:16.606198pt;}
.h3_c01047{height:60.809401pt;}
.h1_c01047{height:1340.000000pt;}
.h0_c01047{height:1340.160000pt;}
.w1_c01047{width:976.000000pt;}
.w0_c01047{width:976.133333pt;}
.x0_c01047{left:0.000000pt;}
.x3_c01047{left:50.693333pt;}
.x1_c01047{left:383.226667pt;}
.x2_c01047{left:399.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_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_b82e1bd21e99c5f133173db9.woff2')format("woff");}.ff1_c01048{font-family:ff1_c01048;line-height:1.109863;font-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_c01048{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c01048{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01048{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);}
.m6_c01048{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c01048{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c01048{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c01048{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2_c01048{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c01048{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,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;}
.fs1_c01048{font-size:3.456000px;}
.fs6_c01048{font-size:6.000000px;}
.fs5_c01048{font-size:6.900000px;}
.fs4_c01048{font-size:10.380000px;}
.fs7_c01048{font-size:17.280000px;}
.fs2_c01048{font-size:20.760000px;}
.fs0_c01048{font-size:27.660000px;}
.fs3_c01048{font-size:58.740000px;}
.fs8_c01048{font-size:93.300000px;}
.y0_c01048{bottom:0.000000px;}
.y9_c01048{bottom:773.280000px;}
.y6_c01048{bottom:798.330000px;}
.y8_c01048{bottom:799.200000px;}
.y7_c01048{bottom:804.390000px;}
.y5_c01048{bottom:938.310000px;}
.y4_c01048{bottom:1156.890000px;}
.y1_c01048{bottom:1278.720000px;}
.y3_c01048{bottom:1284.765000px;}
.y2_c01048{bottom:1287.360000px;}
.h3_c01048{height:3.110063px;}
.h8_c01048{height:5.399414px;}
.h7_c01048{height:6.209326px;}
.h6_c01048{height:9.340986px;}
.h9_c01048{height:15.550313px;}
.h4_c01048{height:18.681973px;}
.h2_c01048{height:24.891299px;}
.h5_c01048{height:52.860264px;}
.ha_c01048{height:83.960889px;}
.h0_c01048{height:1509.405000px;}
.h1_c01048{height:1509.750000px;}
.w0_c01048{width:1088.640000px;}
.w1_c01048{width:1089.000000px;}
.x0_c01048{left:0.000000px;}
.x4_c01048{left:911.520000px;}
.x1_c01048{left:976.320000px;}
.x7_c01048{left:979.770000px;}
.x8_c01048{left:994.470000px;}
.x2_c01048{left:1003.110000px;}
.x3_c01048{left:1012.605000px;}
.x5_c01048{left:1015.200000px;}
.x6_c01048{left:1035.075000px;}
@media print{
.v0_c01048{vertical-align:0.000000pt;}
.ls0_c01048{letter-spacing:0.000000pt;}
.ws0_c01048{word-spacing:0.000000pt;}
.fs1_c01048{font-size:3.072000pt;}
.fs6_c01048{font-size:5.333333pt;}
.fs5_c01048{font-size:6.133333pt;}
.fs4_c01048{font-size:9.226667pt;}
.fs7_c01048{font-size:15.360000pt;}
.fs2_c01048{font-size:18.453333pt;}
.fs0_c01048{font-size:24.586667pt;}
.fs3_c01048{font-size:52.213333pt;}
.fs8_c01048{font-size:82.933333pt;}
.y0_c01048{bottom:0.000000pt;}
.y9_c01048{bottom:687.360000pt;}
.y6_c01048{bottom:709.626667pt;}
.y8_c01048{bottom:710.400000pt;}
.y7_c01048{bottom:715.013333pt;}
.y5_c01048{bottom:834.053333pt;}
.y4_c01048{bottom:1028.346667pt;}
.y1_c01048{bottom:1136.640000pt;}
.y3_c01048{bottom:1142.013333pt;}
.y2_c01048{bottom:1144.320000pt;}
.h3_c01048{height:2.764500pt;}
.h8_c01048{height:4.799479pt;}
.h7_c01048{height:5.519401pt;}
.h6_c01048{height:8.303099pt;}
.h9_c01048{height:13.822500pt;}
.h4_c01048{height:16.606198pt;}
.h2_c01048{height:22.125599pt;}
.h5_c01048{height:46.986901pt;}
.ha_c01048{height:74.631901pt;}
.h0_c01048{height:1341.693333pt;}
.h1_c01048{height:1342.000000pt;}
.w0_c01048{width:967.680000pt;}
.w1_c01048{width:968.000000pt;}
.x0_c01048{left:0.000000pt;}
.x4_c01048{left:810.240000pt;}
.x1_c01048{left:867.840000pt;}
.x7_c01048{left:870.906667pt;}
.x8_c01048{left:883.973333pt;}
.x2_c01048{left:891.653333pt;}
.x3_c01048{left:900.093333pt;}
.x5_c01048{left:902.400000pt;}
.x6_c01048{left:920.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01049;src:url('chunks/assets/font_87a7f851135537808e75efb1.woff2')format("woff");}.ff1_c01049{font-family:ff1_c01049;line-height:1.109863;font-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_c01049{transform:matrix(0.034100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034100,0.000000,0.000000,0.250000,0,0);}
.m2_c01049{transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);}
.m1_c01049{transform:matrix(0.064650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064650,0.000000,0.000000,0.250000,0,0);}
.m6_c01049{transform:matrix(0.087050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087050,0.000000,0.000000,0.250000,0,0);}
.m7_c01049{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.mb_c01049{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c01049{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);}
.m3_c01049{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.mc_c01049{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c01049{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c01049{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m0_c01049{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m8_c01049{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.md_c01049{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.v0_c01049{vertical-align:0.000000px;}
.ls0_c01049{letter-spacing:0.000000px;}
.sc__c01049{text-shadow:none;}
.sc0_c01049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01049{-webkit-text-stroke:0px transparent;}
.sc0_c01049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01049{word-spacing:0.000000px;}
.fc0_c01049{color:transparent;}
.fs8_c01049{font-size:3.456000px;}
.fs9_c01049{font-size:13.800000px;}
.fs0_c01049{font-size:17.280000px;}
.fs6_c01049{font-size:27.660000px;}
.fs4_c01049{font-size:31.080000px;}
.fs3_c01049{font-size:41.460000px;}
.fs7_c01049{font-size:76.020000px;}
.fs2_c01049{font-size:79.500000px;}
.fs1_c01049{font-size:100.200000px;}
.fs5_c01049{font-size:145.140000px;}
.y0_c01049{bottom:0.000000px;}
.yd_c01049{bottom:761.190000px;}
.ye_c01049{bottom:762.045000px;}
.yb_c01049{bottom:775.875000px;}
.yc_c01049{bottom:784.515000px;}
.ya_c01049{bottom:794.880000px;}
.y8_c01049{bottom:800.925000px;}
.y9_c01049{bottom:801.795000px;}
.y7_c01049{bottom:821.670000px;}
.y6_c01049{bottom:858.810000px;}
.y5_c01049{bottom:863.130000px;}
.y4_c01049{bottom:870.045000px;}
.y3_c01049{bottom:881.280000px;}
.y1_c01049{bottom:899.430000px;}
.y2_c01049{bottom:901.155000px;}
.h9_c01049{height:3.110063px;}
.ha_c01049{height:12.418652px;}
.h1_c01049{height:15.550313px;}
.h7_c01049{height:24.891299px;}
.h5_c01049{height:27.968965px;}
.h4_c01049{height:37.309951px;}
.h8_c01049{height:68.410576px;}
.h3_c01049{height:71.542236px;}
.h2_c01049{height:90.170215px;}
.h6_c01049{height:130.611826px;}
.h0_c01049{height:1512.000000px;}
.w1_c01049{width:1098.000000px;}
.w0_c01049{width:1098.150000px;}
.x0_c01049{left:0.000000px;}
.x8_c01049{left:19.005000px;}
.x1_c01049{left:38.880000px;}
.x4_c01049{left:99.360000px;}
.x2_c01049{left:103.680000px;}
.x3_c01049{left:105.405000px;}
.x5_c01049{left:108.870000px;}
.x7_c01049{left:116.640000px;}
.x6_c01049{left:131.325000px;}
@media print{
.v0_c01049{vertical-align:0.000000pt;}
.ls0_c01049{letter-spacing:0.000000pt;}
.ws0_c01049{word-spacing:0.000000pt;}
.fs8_c01049{font-size:3.072000pt;}
.fs9_c01049{font-size:12.266667pt;}
.fs0_c01049{font-size:15.360000pt;}
.fs6_c01049{font-size:24.586667pt;}
.fs4_c01049{font-size:27.626667pt;}
.fs3_c01049{font-size:36.853333pt;}
.fs7_c01049{font-size:67.573333pt;}
.fs2_c01049{font-size:70.666667pt;}
.fs1_c01049{font-size:89.066667pt;}
.fs5_c01049{font-size:129.013333pt;}
.y0_c01049{bottom:0.000000pt;}
.yd_c01049{bottom:676.613333pt;}
.ye_c01049{bottom:677.373333pt;}
.yb_c01049{bottom:689.666667pt;}
.yc_c01049{bottom:697.346667pt;}
.ya_c01049{bottom:706.560000pt;}
.y8_c01049{bottom:711.933333pt;}
.y9_c01049{bottom:712.706667pt;}
.y7_c01049{bottom:730.373333pt;}
.y6_c01049{bottom:763.386667pt;}
.y5_c01049{bottom:767.226667pt;}
.y4_c01049{bottom:773.373333pt;}
.y3_c01049{bottom:783.360000pt;}
.y1_c01049{bottom:799.493333pt;}
.y2_c01049{bottom:801.026667pt;}
.h9_c01049{height:2.764500pt;}
.ha_c01049{height:11.038802pt;}
.h1_c01049{height:13.822500pt;}
.h7_c01049{height:22.125599pt;}
.h5_c01049{height:24.861302pt;}
.h4_c01049{height:33.164401pt;}
.h8_c01049{height:60.809401pt;}
.h3_c01049{height:63.593099pt;}
.h2_c01049{height:80.151302pt;}
.h6_c01049{height:116.099401pt;}
.h0_c01049{height:1344.000000pt;}
.w1_c01049{width:976.000000pt;}
.w0_c01049{width:976.133333pt;}
.x0_c01049{left:0.000000pt;}
.x8_c01049{left:16.893333pt;}
.x1_c01049{left:34.560000pt;}
.x4_c01049{left:88.320000pt;}
.x2_c01049{left:92.160000pt;}
.x3_c01049{left:93.693333pt;}
.x5_c01049{left:96.773333pt;}
.x7_c01049{left:103.680000pt;}
.x6_c01049{left:116.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15a669b25817f1f3daf7fed9.woff2')format("woff");}.ff1_c01050{font-family:ff1_c01050;line-height:1.109863;font-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_c01050{transform:matrix(0.057450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057450,0.000000,0.000000,0.250000,0,0);}
.m5_c01050{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m1_c01050{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c01050{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);}
.m3_c01050{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c01050{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);}
.m0_c01050{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c01050{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c01050{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,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;}
.fs0_c01050{font-size:3.456000px;}
.fs7_c01050{font-size:10.380000px;}
.fs1_c01050{font-size:17.280000px;}
.fs3_c01050{font-size:24.180000px;}
.fs2_c01050{font-size:27.660000px;}
.fs4_c01050{font-size:31.080000px;}
.fs6_c01050{font-size:34.560000px;}
.fs5_c01050{font-size:131.340000px;}
.y0_c01050{bottom:0.000000px;}
.ya_c01050{bottom:1262.310000px;}
.y9_c01050{bottom:1289.085000px;}
.y8_c01050{bottom:1321.920000px;}
.y6_c01050{bottom:1356.480000px;}
.y7_c01050{bottom:1359.930000px;}
.y5_c01050{bottom:1378.950000px;}
.y4_c01050{bottom:1410.045000px;}
.y2_c01050{bottom:1429.050000px;}
.y3_c01050{bottom:1429.920000px;}
.y1_c01050{bottom:1431.645000px;}
.h2_c01050{height:3.110063px;}
.h9_c01050{height:9.340986px;}
.h3_c01050{height:15.550313px;}
.h5_c01050{height:21.759639px;}
.h4_c01050{height:24.891299px;}
.h6_c01050{height:27.968965px;}
.h8_c01050{height:31.100625px;}
.h7_c01050{height:118.193174px;}
.h1_c01050{height:1518.750000px;}
.h0_c01050{height:1518.915000px;}
.w0_c01050{width:1088.640000px;}
.w1_c01050{width:1089.000000px;}
.x0_c01050{left:0.000000px;}
.x1_c01050{left:873.510000px;}
.x2_c01050{left:880.410000px;}
.x8_c01050{left:978.045000px;}
.x5_c01050{left:980.640000px;}
.x6_c01050{left:982.365000px;}
.x4_c01050{left:1011.750000px;}
.x3_c01050{left:1016.925000px;}
.x7_c01050{left:1076.550000px;}
.x9_c01050{left:1078.275000px;}
@media print{
.v0_c01050{vertical-align:0.000000pt;}
.ls0_c01050{letter-spacing:0.000000pt;}
.ws0_c01050{word-spacing:0.000000pt;}
.fs0_c01050{font-size:3.072000pt;}
.fs7_c01050{font-size:9.226667pt;}
.fs1_c01050{font-size:15.360000pt;}
.fs3_c01050{font-size:21.493333pt;}
.fs2_c01050{font-size:24.586667pt;}
.fs4_c01050{font-size:27.626667pt;}
.fs6_c01050{font-size:30.720000pt;}
.fs5_c01050{font-size:116.746667pt;}
.y0_c01050{bottom:0.000000pt;}
.ya_c01050{bottom:1122.053333pt;}
.y9_c01050{bottom:1145.853333pt;}
.y8_c01050{bottom:1175.040000pt;}
.y6_c01050{bottom:1205.760000pt;}
.y7_c01050{bottom:1208.826667pt;}
.y5_c01050{bottom:1225.733333pt;}
.y4_c01050{bottom:1253.373333pt;}
.y2_c01050{bottom:1270.266667pt;}
.y3_c01050{bottom:1271.040000pt;}
.y1_c01050{bottom:1272.573333pt;}
.h2_c01050{height:2.764500pt;}
.h9_c01050{height:8.303099pt;}
.h3_c01050{height:13.822500pt;}
.h5_c01050{height:19.341901pt;}
.h4_c01050{height:22.125599pt;}
.h6_c01050{height:24.861302pt;}
.h8_c01050{height:27.645000pt;}
.h7_c01050{height:105.060599pt;}
.h1_c01050{height:1350.000000pt;}
.h0_c01050{height:1350.146667pt;}
.w0_c01050{width:967.680000pt;}
.w1_c01050{width:968.000000pt;}
.x0_c01050{left:0.000000pt;}
.x1_c01050{left:776.453333pt;}
.x2_c01050{left:782.586667pt;}
.x8_c01050{left:869.373333pt;}
.x5_c01050{left:871.680000pt;}
.x6_c01050{left:873.213333pt;}
.x4_c01050{left:899.333333pt;}
.x3_c01050{left:903.933333pt;}
.x7_c01050{left:956.933333pt;}
.x9_c01050{left:958.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_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_84c82e2c9d61a8390e36ad5a.woff2')format("woff");}.ff1_c01051{font-family:ff1_c01051;line-height:1.109863;font-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_c01051{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c01051{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma_c01051{transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);}
.m11_c01051{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m8_c01051{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.m16_c01051{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);}
.m10_c01051{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);}
.m1_c01051{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14_c01051{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c01051{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c01051{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c01051{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mc_c01051{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);}
.m7_c01051{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c01051{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m0_c01051{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m13_c01051{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);}
.m6_c01051{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m15_c01051{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m4_c01051{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.md_c01051{transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);}
.me_c01051{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.mb_c01051{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.v1_c01051{vertical-align:-13.800000px;}
.v0_c01051{vertical-align:0.000000px;}
.ls1_c01051{letter-spacing:0.000000px;}
.ls0_c01051{letter-spacing:58.088700px;}
.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;}
.fs1_c01051{font-size:3.456000px;}
.fs4_c01051{font-size:6.000000px;}
.fsb_c01051{font-size:6.900000px;}
.fs6_c01051{font-size:10.380000px;}
.fsc_c01051{font-size:13.800000px;}
.fs0_c01051{font-size:17.280000px;}
.fsd_c01051{font-size:20.760000px;}
.fs3_c01051{font-size:24.180000px;}
.fs5_c01051{font-size:27.660000px;}
.fsa_c01051{font-size:31.080000px;}
.fsf_c01051{font-size:34.560000px;}
.fs8_c01051{font-size:55.320000px;}
.fs2_c01051{font-size:62.220000px;}
.fs10_c01051{font-size:69.120000px;}
.fse_c01051{font-size:86.400000px;}
.fs7_c01051{font-size:96.780000px;}
.fs9_c01051{font-size:100.200000px;}
.y0_c01051{bottom:0.000000px;}
.y16_c01051{bottom:1239.840000px;}
.y13_c01051{bottom:1240.710000px;}
.y14_c01051{bottom:1241.565000px;}
.y15_c01051{bottom:1254.525000px;}
.y12_c01051{bottom:1256.250000px;}
.y11_c01051{bottom:1257.120000px;}
.y10_c01051{bottom:1267.485000px;}
.yd_c01051{bottom:1268.355000px;}
.ye_c01051{bottom:1269.210000px;}
.yf_c01051{bottom:1271.805000px;}
.ya_c01051{bottom:1280.445000px;}
.y8_c01051{bottom:1283.040000px;}
.yc_c01051{bottom:1285.635000px;}
.yb_c01051{bottom:1289.085000px;}
.y9_c01051{bottom:1306.365000px;}
.y7_c01051{bottom:1334.880000px;}
.y6_c01051{bottom:1337.475000px;}
.y5_c01051{bottom:1344.390000px;}
.y4_c01051{bottom:1346.970000px;}
.y1_c01051{bottom:1348.710000px;}
.y2_c01051{bottom:1350.435000px;}
.y3_c01051{bottom:1353.030000px;}
.h3_c01051{height:3.110063px;}
.h6_c01051{height:5.399414px;}
.hd_c01051{height:6.209326px;}
.h8_c01051{height:9.340986px;}
.he_c01051{height:12.418652px;}
.h2_c01051{height:15.550313px;}
.hf_c01051{height:18.681973px;}
.h5_c01051{height:21.759639px;}
.h7_c01051{height:24.891299px;}
.hc_c01051{height:27.968965px;}
.h11_c01051{height:31.100625px;}
.ha_c01051{height:49.782598px;}
.h4_c01051{height:55.991924px;}
.h12_c01051{height:62.201250px;}
.h10_c01051{height:77.751563px;}
.h9_c01051{height:87.092549px;}
.hb_c01051{height:90.170215px;}
.h1_c01051{height:1503.000000px;}
.h0_c01051{height:1503.360000px;}
.w1_c01051{width:1098.000000px;}
.w0_c01051{width:1098.150000px;}
.x0_c01051{left:0.000000px;}
.x1_c01051{left:205.635000px;}
.x14_c01051{left:260.070000px;}
.x15_c01051{left:267.840000px;}
.x2_c01051{left:503.715000px;}
.x3_c01051{left:520.995000px;}
.x4_c01051{left:584.925000px;}
.xd_c01051{left:600.480000px;}
.xe_c01051{left:622.080000px;}
.x8_c01051{left:629.850000px;}
.x9_c01051{left:637.635000px;}
.xa_c01051{left:645.405000px;}
.xf_c01051{left:671.325000px;}
.x10_c01051{left:694.650000px;}
.x5_c01051{left:698.970000px;}
.x6_c01051{left:702.435000px;}
.x11_c01051{left:704.160000px;}
.x7_c01051{left:713.670000px;}
.xb_c01051{left:734.400000px;}
.x16_c01051{left:768.960000px;}
.x12_c01051{left:777.600000px;}
.x13_c01051{left:797.475000px;}
.xc_c01051{left:831.165000px;}
.x17_c01051{left:832.890000px;}
.x18_c01051{left:855.360000px;}
.x19_c01051{left:864.000000px;}
@media print{
.v1_c01051{vertical-align:-12.266667pt;}
.v0_c01051{vertical-align:0.000000pt;}
.ls1_c01051{letter-spacing:0.000000pt;}
.ls0_c01051{letter-spacing:51.634400pt;}
.ws0_c01051{word-spacing:0.000000pt;}
.fs1_c01051{font-size:3.072000pt;}
.fs4_c01051{font-size:5.333333pt;}
.fsb_c01051{font-size:6.133333pt;}
.fs6_c01051{font-size:9.226667pt;}
.fsc_c01051{font-size:12.266667pt;}
.fs0_c01051{font-size:15.360000pt;}
.fsd_c01051{font-size:18.453333pt;}
.fs3_c01051{font-size:21.493333pt;}
.fs5_c01051{font-size:24.586667pt;}
.fsa_c01051{font-size:27.626667pt;}
.fsf_c01051{font-size:30.720000pt;}
.fs8_c01051{font-size:49.173333pt;}
.fs2_c01051{font-size:55.306667pt;}
.fs10_c01051{font-size:61.440000pt;}
.fse_c01051{font-size:76.800000pt;}
.fs7_c01051{font-size:86.026667pt;}
.fs9_c01051{font-size:89.066667pt;}
.y0_c01051{bottom:0.000000pt;}
.y16_c01051{bottom:1102.080000pt;}
.y13_c01051{bottom:1102.853333pt;}
.y14_c01051{bottom:1103.613333pt;}
.y15_c01051{bottom:1115.133333pt;}
.y12_c01051{bottom:1116.666667pt;}
.y11_c01051{bottom:1117.440000pt;}
.y10_c01051{bottom:1126.653333pt;}
.yd_c01051{bottom:1127.426667pt;}
.ye_c01051{bottom:1128.186667pt;}
.yf_c01051{bottom:1130.493333pt;}
.ya_c01051{bottom:1138.173333pt;}
.y8_c01051{bottom:1140.480000pt;}
.yc_c01051{bottom:1142.786667pt;}
.yb_c01051{bottom:1145.853333pt;}
.y9_c01051{bottom:1161.213333pt;}
.y7_c01051{bottom:1186.560000pt;}
.y6_c01051{bottom:1188.866667pt;}
.y5_c01051{bottom:1195.013333pt;}
.y4_c01051{bottom:1197.306667pt;}
.y1_c01051{bottom:1198.853333pt;}
.y2_c01051{bottom:1200.386667pt;}
.y3_c01051{bottom:1202.693333pt;}
.h3_c01051{height:2.764500pt;}
.h6_c01051{height:4.799479pt;}
.hd_c01051{height:5.519401pt;}
.h8_c01051{height:8.303099pt;}
.he_c01051{height:11.038802pt;}
.h2_c01051{height:13.822500pt;}
.hf_c01051{height:16.606198pt;}
.h5_c01051{height:19.341901pt;}
.h7_c01051{height:22.125599pt;}
.hc_c01051{height:24.861302pt;}
.h11_c01051{height:27.645000pt;}
.ha_c01051{height:44.251198pt;}
.h4_c01051{height:49.770599pt;}
.h12_c01051{height:55.290000pt;}
.h10_c01051{height:69.112500pt;}
.h9_c01051{height:77.415599pt;}
.hb_c01051{height:80.151302pt;}
.h1_c01051{height:1336.000000pt;}
.h0_c01051{height:1336.320000pt;}
.w1_c01051{width:976.000000pt;}
.w0_c01051{width:976.133333pt;}
.x0_c01051{left:0.000000pt;}
.x1_c01051{left:182.786667pt;}
.x14_c01051{left:231.173333pt;}
.x15_c01051{left:238.080000pt;}
.x2_c01051{left:447.746667pt;}
.x3_c01051{left:463.106667pt;}
.x4_c01051{left:519.933333pt;}
.xd_c01051{left:533.760000pt;}
.xe_c01051{left:552.960000pt;}
.x8_c01051{left:559.866667pt;}
.x9_c01051{left:566.786667pt;}
.xa_c01051{left:573.693333pt;}
.xf_c01051{left:596.733333pt;}
.x10_c01051{left:617.466667pt;}
.x5_c01051{left:621.306667pt;}
.x6_c01051{left:624.386667pt;}
.x11_c01051{left:625.920000pt;}
.x7_c01051{left:634.373333pt;}
.xb_c01051{left:652.800000pt;}
.x16_c01051{left:683.520000pt;}
.x12_c01051{left:691.200000pt;}
.x13_c01051{left:708.866667pt;}
.xc_c01051{left:738.813333pt;}
.x17_c01051{left:740.346667pt;}
.x18_c01051{left:760.320000pt;}
.x19_c01051{left:768.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_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_a04b932f02d8f1f3d088a67a.woff2')format("woff");}.ff1_c01052{font-family:ff1_c01052;line-height:1.109863;font-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_c01052{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);}
.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;}
.fs0_c01052{font-size:600.000000px;}
.y0_c01052{bottom:0.000000px;}
.y1_c01052{bottom:15.000000px;}
.h2_c01052{height:539.941406px;}
.h1_c01052{height:1518.750000px;}
.h0_c01052{height:1518.915000px;}
.w0_c01052{width:1088.640000px;}
.w1_c01052{width:1089.000000px;}
.x0_c01052{left:0.000000px;}
.x1_c01052{left:15.000000px;}
@media print{
.v0_c01052{vertical-align:0.000000pt;}
.ls0_c01052{letter-spacing:0.000000pt;}
.ws0_c01052{word-spacing:0.000000pt;}
.fs0_c01052{font-size:533.333333pt;}
.y0_c01052{bottom:0.000000pt;}
.y1_c01052{bottom:13.333333pt;}
.h2_c01052{height:479.947917pt;}
.h1_c01052{height:1350.000000pt;}
.h0_c01052{height:1350.146667pt;}
.w0_c01052{width:967.680000pt;}
.w1_c01052{width:968.000000pt;}
.x0_c01052{left:0.000000pt;}
.x1_c01052{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81f999484747a38393f1f102.woff2')format("woff");}.ff1_c01053{font-family:ff1_c01053;line-height:1.109863;font-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_c01053{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);}
.m1_c01053{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);}
.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;}
.fs1_c01053{font-size:17.280000px;}
.fs0_c01053{font-size:27.660000px;}
.y0_c01053{bottom:0.000000px;}
.y2_c01053{bottom:1348.710000px;}
.y1_c01053{bottom:1350.435000px;}
.h3_c01053{height:15.550313px;}
.h2_c01053{height:24.891299px;}
.h1_c01053{height:1503.000000px;}
.h0_c01053{height:1503.360000px;}
.w1_c01053{width:1098.000000px;}
.w0_c01053{width:1098.150000px;}
.x0_c01053{left:0.000000px;}
.x1_c01053{left:31.110000px;}
.x2_c01053{left:44.070000px;}
@media print{
.v0_c01053{vertical-align:0.000000pt;}
.ls0_c01053{letter-spacing:0.000000pt;}
.ws0_c01053{word-spacing:0.000000pt;}
.fs1_c01053{font-size:15.360000pt;}
.fs0_c01053{font-size:24.586667pt;}
.y0_c01053{bottom:0.000000pt;}
.y2_c01053{bottom:1198.853333pt;}
.y1_c01053{bottom:1200.386667pt;}
.h3_c01053{height:13.822500pt;}
.h2_c01053{height:22.125599pt;}
.h1_c01053{height:1336.000000pt;}
.h0_c01053{height:1336.320000pt;}
.w1_c01053{width:976.000000pt;}
.w0_c01053{width:976.133333pt;}
.x0_c01053{left:0.000000pt;}
.x1_c01053{left:27.653333pt;}
.x2_c01053{left:39.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30848e887b38f661739cd0c3.woff2')format("woff");}.ff1_c01054{font-family:ff1_c01054;line-height:1.109863;font-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_c01054{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);}
.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;}
.fs0_c01054{font-size:600.000000px;}
.y0_c01054{bottom:0.000000px;}
.y1_c01054{bottom:15.000000px;}
.h2_c01054{height:539.941406px;}
.h1_c01054{height:1518.750000px;}
.h0_c01054{height:1518.915000px;}
.w0_c01054{width:1088.640000px;}
.w1_c01054{width:1089.000000px;}
.x0_c01054{left:0.000000px;}
.x1_c01054{left:15.000000px;}
@media print{
.v0_c01054{vertical-align:0.000000pt;}
.ls0_c01054{letter-spacing:0.000000pt;}
.ws0_c01054{word-spacing:0.000000pt;}
.fs0_c01054{font-size:533.333333pt;}
.y0_c01054{bottom:0.000000pt;}
.y1_c01054{bottom:13.333333pt;}
.h2_c01054{height:479.947917pt;}
.h1_c01054{height:1350.000000pt;}
.h0_c01054{height:1350.146667pt;}
.w0_c01054{width:967.680000pt;}
.w1_c01054{width:968.000000pt;}
.x0_c01054{left:0.000000pt;}
.x1_c01054{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57074294f2aa7ebdecdf7aae.woff2')format("woff");}.ff1_c01055{font-family:ff1_c01055;line-height:1.109863;font-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_c01055{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);}
.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;}
.fs0_c01055{font-size:600.000000px;}
.y0_c01055{bottom:0.000000px;}
.y1_c01055{bottom:15.000000px;}
.h2_c01055{height:539.941406px;}
.h1_c01055{height:1503.000000px;}
.h0_c01055{height:1503.360000px;}
.w1_c01055{width:1098.000000px;}
.w0_c01055{width:1098.150000px;}
.x0_c01055{left:0.000000px;}
.x1_c01055{left:15.000000px;}
@media print{
.v0_c01055{vertical-align:0.000000pt;}
.ls0_c01055{letter-spacing:0.000000pt;}
.ws0_c01055{word-spacing:0.000000pt;}
.fs0_c01055{font-size:533.333333pt;}
.y0_c01055{bottom:0.000000pt;}
.y1_c01055{bottom:13.333333pt;}
.h2_c01055{height:479.947917pt;}
.h1_c01055{height:1336.000000pt;}
.h0_c01055{height:1336.320000pt;}
.w1_c01055{width:976.000000pt;}
.w0_c01055{width:976.133333pt;}
.x0_c01055{left:0.000000pt;}
.x1_c01055{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6735d9d2f3e859760adaad75.woff2')format("woff");}.ff1_c01056{font-family:ff1_c01056;line-height:1.109863;font-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_c01056{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m0_c01056{transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);}
.m4_c01056{transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);}
.mb_c01056{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.m2_c01056{transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);}
.m5_c01056{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01056{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1_c01056{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);}
.m8_c01056{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);}
.m6_c01056{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma_c01056{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m9_c01056{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.mc_c01056{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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;}
.fs5_c01056{font-size:3.456000px;}
.fs8_c01056{font-size:6.000000px;}
.fsb_c01056{font-size:6.900000px;}
.fs7_c01056{font-size:13.800000px;}
.fs6_c01056{font-size:17.280000px;}
.fs1_c01056{font-size:20.760000px;}
.fs0_c01056{font-size:31.080000px;}
.fs9_c01056{font-size:55.320000px;}
.fs3_c01056{font-size:58.740000px;}
.fsa_c01056{font-size:69.120000px;}
.fs2_c01056{font-size:96.780000px;}
.fs4_c01056{font-size:107.160000px;}
.y0_c01056{bottom:0.000000px;}
.y10_c01056{bottom:101.085000px;}
.yf_c01056{bottom:108.870000px;}
.yb_c01056{bottom:824.250000px;}
.yc_c01056{bottom:825.120000px;}
.yd_c01056{bottom:825.990000px;}
.ye_c01056{bottom:826.845000px;}
.y7_c01056{bottom:827.715000px;}
.y6_c01056{bottom:831.165000px;}
.y9_c01056{bottom:833.760000px;}
.ya_c01056{bottom:836.355000px;}
.y3_c01056{bottom:838.950000px;}
.y5_c01056{bottom:839.805000px;}
.y8_c01056{bottom:844.125000px;}
.y4_c01056{bottom:847.590000px;}
.y2_c01056{bottom:963.360000px;}
.y1_c01056{bottom:966.810000px;}
.h7_c01056{height:3.110063px;}
.ha_c01056{height:5.399414px;}
.hd_c01056{height:6.209326px;}
.h9_c01056{height:12.418652px;}
.h8_c01056{height:15.550313px;}
.h3_c01056{height:18.681973px;}
.h2_c01056{height:27.968965px;}
.hb_c01056{height:49.782598px;}
.h5_c01056{height:52.860264px;}
.hc_c01056{height:62.201250px;}
.h4_c01056{height:87.092549px;}
.h6_c01056{height:96.433535px;}
.h1_c01056{height:1518.750000px;}
.h0_c01056{height:1518.915000px;}
.w0_c01056{width:1088.640000px;}
.w1_c01056{width:1089.000000px;}
.x0_c01056{left:0.000000px;}
.x3_c01056{left:279.930000px;}
.x4_c01056{left:350.790000px;}
.x5_c01056{left:373.245000px;}
.x6_c01056{left:578.010000px;}
.x7_c01056{left:585.795000px;}
.x9_c01056{left:619.485000px;}
.xa_c01056{left:638.490000px;}
.xb_c01056{left:660.090000px;}
.xc_c01056{left:680.835000px;}
.xd_c01056{left:700.710000px;}
.x8_c01056{left:708.480000px;}
.xe_c01056{left:722.310000px;}
.xf_c01056{left:754.275000px;}
.x1_c01056{left:1043.715000px;}
.x2_c01056{left:1050.630000px;}
.x10_c01056{left:1060.995000px;}
.x11_c01056{left:1065.315000px;}
@media print{
.v0_c01056{vertical-align:0.000000pt;}
.ls0_c01056{letter-spacing:0.000000pt;}
.ws0_c01056{word-spacing:0.000000pt;}
.fs5_c01056{font-size:3.072000pt;}
.fs8_c01056{font-size:5.333333pt;}
.fsb_c01056{font-size:6.133333pt;}
.fs7_c01056{font-size:12.266667pt;}
.fs6_c01056{font-size:15.360000pt;}
.fs1_c01056{font-size:18.453333pt;}
.fs0_c01056{font-size:27.626667pt;}
.fs9_c01056{font-size:49.173333pt;}
.fs3_c01056{font-size:52.213333pt;}
.fsa_c01056{font-size:61.440000pt;}
.fs2_c01056{font-size:86.026667pt;}
.fs4_c01056{font-size:95.253333pt;}
.y0_c01056{bottom:0.000000pt;}
.y10_c01056{bottom:89.853333pt;}
.yf_c01056{bottom:96.773333pt;}
.yb_c01056{bottom:732.666667pt;}
.yc_c01056{bottom:733.440000pt;}
.yd_c01056{bottom:734.213333pt;}
.ye_c01056{bottom:734.973333pt;}
.y7_c01056{bottom:735.746667pt;}
.y6_c01056{bottom:738.813333pt;}
.y9_c01056{bottom:741.120000pt;}
.ya_c01056{bottom:743.426667pt;}
.y3_c01056{bottom:745.733333pt;}
.y5_c01056{bottom:746.493333pt;}
.y8_c01056{bottom:750.333333pt;}
.y4_c01056{bottom:753.413333pt;}
.y2_c01056{bottom:856.320000pt;}
.y1_c01056{bottom:859.386667pt;}
.h7_c01056{height:2.764500pt;}
.ha_c01056{height:4.799479pt;}
.hd_c01056{height:5.519401pt;}
.h9_c01056{height:11.038802pt;}
.h8_c01056{height:13.822500pt;}
.h3_c01056{height:16.606198pt;}
.h2_c01056{height:24.861302pt;}
.hb_c01056{height:44.251198pt;}
.h5_c01056{height:46.986901pt;}
.hc_c01056{height:55.290000pt;}
.h4_c01056{height:77.415599pt;}
.h6_c01056{height:85.718698pt;}
.h1_c01056{height:1350.000000pt;}
.h0_c01056{height:1350.146667pt;}
.w0_c01056{width:967.680000pt;}
.w1_c01056{width:968.000000pt;}
.x0_c01056{left:0.000000pt;}
.x3_c01056{left:248.826667pt;}
.x4_c01056{left:311.813333pt;}
.x5_c01056{left:331.773333pt;}
.x6_c01056{left:513.786667pt;}
.x7_c01056{left:520.706667pt;}
.x9_c01056{left:550.653333pt;}
.xa_c01056{left:567.546667pt;}
.xb_c01056{left:586.746667pt;}
.xc_c01056{left:605.186667pt;}
.xd_c01056{left:622.853333pt;}
.x8_c01056{left:629.760000pt;}
.xe_c01056{left:642.053333pt;}
.xf_c01056{left:670.466667pt;}
.x1_c01056{left:927.746667pt;}
.x2_c01056{left:933.893333pt;}
.x10_c01056{left:943.106667pt;}
.x11_c01056{left:946.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_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_9ab26135a1bc398d91bb42ef.woff2')format("woff");}.ff1_c01057{font-family:ff1_c01057;line-height:1.109863;font-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_c01057{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);}
.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;}
.fs0_c01057{font-size:600.000000px;}
.y0_c01057{bottom:0.000000px;}
.y1_c01057{bottom:15.000000px;}
.h2_c01057{height:539.941406px;}
.h1_c01057{height:1503.000000px;}
.h0_c01057{height:1503.360000px;}
.w1_c01057{width:1098.000000px;}
.w0_c01057{width:1098.150000px;}
.x0_c01057{left:0.000000px;}
.x1_c01057{left:15.000000px;}
@media print{
.v0_c01057{vertical-align:0.000000pt;}
.ls0_c01057{letter-spacing:0.000000pt;}
.ws0_c01057{word-spacing:0.000000pt;}
.fs0_c01057{font-size:533.333333pt;}
.y0_c01057{bottom:0.000000pt;}
.y1_c01057{bottom:13.333333pt;}
.h2_c01057{height:479.947917pt;}
.h1_c01057{height:1336.000000pt;}
.h0_c01057{height:1336.320000pt;}
.w1_c01057{width:976.000000pt;}
.w0_c01057{width:976.133333pt;}
.x0_c01057{left:0.000000pt;}
.x1_c01057{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_78a8190e10c1fad97b5038c4.woff2')format("woff");}.ff1_c01058{font-family:ff1_c01058;line-height:1.109863;font-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_c01058{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);}
.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;}
.fs0_c01058{font-size:600.000000px;}
.y0_c01058{bottom:0.000000px;}
.y1_c01058{bottom:15.000000px;}
.h2_c01058{height:539.941406px;}
.h1_c01058{height:1518.750000px;}
.h0_c01058{height:1518.915000px;}
.w0_c01058{width:1088.640000px;}
.w1_c01058{width:1089.000000px;}
.x0_c01058{left:0.000000px;}
.x1_c01058{left:15.000000px;}
@media print{
.v0_c01058{vertical-align:0.000000pt;}
.ls0_c01058{letter-spacing:0.000000pt;}
.ws0_c01058{word-spacing:0.000000pt;}
.fs0_c01058{font-size:533.333333pt;}
.y0_c01058{bottom:0.000000pt;}
.y1_c01058{bottom:13.333333pt;}
.h2_c01058{height:479.947917pt;}
.h1_c01058{height:1350.000000pt;}
.h0_c01058{height:1350.146667pt;}
.w0_c01058{width:967.680000pt;}
.w1_c01058{width:968.000000pt;}
.x0_c01058{left:0.000000pt;}
.x1_c01058{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fdbe23d2ce842fc9df6798c4.woff2')format("woff");}.ff1_c01059{font-family:ff1_c01059;line-height:1.109863;font-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_c01059{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c01059{transform:matrix(0.077600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077600,0.000000,0.000000,0.250000,0,0);}
.mf_c01059{transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);}
.mc_c01059{transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);}
.m10_c01059{transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);}
.mb_c01059{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);}
.m4_c01059{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);}
.md_c01059{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m7_c01059{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m1_c01059{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.ma_c01059{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);}
.m11_c01059{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);}
.m5_c01059{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01059{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c01059{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);}
.m3_c01059{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6_c01059{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m0_c01059{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,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;}
.fs4_c01059{font-size:17.280000px;}
.fsc_c01059{font-size:20.760000px;}
.fs5_c01059{font-size:24.180000px;}
.fs1_c01059{font-size:27.660000px;}
.fs8_c01059{font-size:34.560000px;}
.fsf_c01059{font-size:38.040000px;}
.fs0_c01059{font-size:48.360000px;}
.fse_c01059{font-size:51.840000px;}
.fs9_c01059{font-size:58.740000px;}
.fs7_c01059{font-size:62.220000px;}
.fs3_c01059{font-size:69.120000px;}
.fs6_c01059{font-size:72.600000px;}
.fsb_c01059{font-size:79.500000px;}
.fs2_c01059{font-size:100.200000px;}
.fsa_c01059{font-size:103.680000px;}
.fsd_c01059{font-size:107.160000px;}
.y0_c01059{bottom:0.000000px;}
.y12_c01059{bottom:178.845000px;}
.y11_c01059{bottom:216.870000px;}
.y10_c01059{bottom:239.325000px;}
.ye_c01059{bottom:266.970000px;}
.yf_c01059{bottom:269.565000px;}
.yd_c01059{bottom:273.030000px;}
.yc_c01059{bottom:293.760000px;}
.yb_c01059{bottom:320.550000px;}
.ya_c01059{bottom:336.090000px;}
.y9_c01059{bottom:343.875000px;}
.y8_c01059{bottom:360.285000px;}
.y7_c01059{bottom:380.160000px;}
.y6_c01059{bottom:406.080000px;}
.y5_c01059{bottom:411.270000px;}
.y4_c01059{bottom:425.085000px;}
.y3_c01059{bottom:454.470000px;}
.y2_c01059{bottom:481.245000px;}
.y1_c01059{bottom:489.030000px;}
.h6_c01059{height:15.550313px;}
.he_c01059{height:18.681973px;}
.h7_c01059{height:21.759639px;}
.h3_c01059{height:24.891299px;}
.ha_c01059{height:31.100625px;}
.h11_c01059{height:34.232285px;}
.h2_c01059{height:43.519277px;}
.h10_c01059{height:46.650937px;}
.hb_c01059{height:52.860264px;}
.h9_c01059{height:55.991924px;}
.h5_c01059{height:62.201250px;}
.h8_c01059{height:65.332910px;}
.hd_c01059{height:71.542236px;}
.h4_c01059{height:90.170215px;}
.hc_c01059{height:93.301875px;}
.hf_c01059{height:96.433535px;}
.h1_c01059{height:1503.000000px;}
.h0_c01059{height:1503.360000px;}
.w1_c01059{width:1098.000000px;}
.w0_c01059{width:1098.150000px;}
.x0_c01059{left:0.000000px;}
.x1_c01059{left:2.595000px;}
.x2_c01059{left:4.320000px;}
.x3_c01059{left:27.645000px;}
@media print{
.v0_c01059{vertical-align:0.000000pt;}
.ls0_c01059{letter-spacing:0.000000pt;}
.ws0_c01059{word-spacing:0.000000pt;}
.fs4_c01059{font-size:15.360000pt;}
.fsc_c01059{font-size:18.453333pt;}
.fs5_c01059{font-size:21.493333pt;}
.fs1_c01059{font-size:24.586667pt;}
.fs8_c01059{font-size:30.720000pt;}
.fsf_c01059{font-size:33.813333pt;}
.fs0_c01059{font-size:42.986667pt;}
.fse_c01059{font-size:46.080000pt;}
.fs9_c01059{font-size:52.213333pt;}
.fs7_c01059{font-size:55.306667pt;}
.fs3_c01059{font-size:61.440000pt;}
.fs6_c01059{font-size:64.533333pt;}
.fsb_c01059{font-size:70.666667pt;}
.fs2_c01059{font-size:89.066667pt;}
.fsa_c01059{font-size:92.160000pt;}
.fsd_c01059{font-size:95.253333pt;}
.y0_c01059{bottom:0.000000pt;}
.y12_c01059{bottom:158.973333pt;}
.y11_c01059{bottom:192.773333pt;}
.y10_c01059{bottom:212.733333pt;}
.ye_c01059{bottom:237.306667pt;}
.yf_c01059{bottom:239.613333pt;}
.yd_c01059{bottom:242.693333pt;}
.yc_c01059{bottom:261.120000pt;}
.yb_c01059{bottom:284.933333pt;}
.ya_c01059{bottom:298.746667pt;}
.y9_c01059{bottom:305.666667pt;}
.y8_c01059{bottom:320.253333pt;}
.y7_c01059{bottom:337.920000pt;}
.y6_c01059{bottom:360.960000pt;}
.y5_c01059{bottom:365.573333pt;}
.y4_c01059{bottom:377.853333pt;}
.y3_c01059{bottom:403.973333pt;}
.y2_c01059{bottom:427.773333pt;}
.y1_c01059{bottom:434.693333pt;}
.h6_c01059{height:13.822500pt;}
.he_c01059{height:16.606198pt;}
.h7_c01059{height:19.341901pt;}
.h3_c01059{height:22.125599pt;}
.ha_c01059{height:27.645000pt;}
.h11_c01059{height:30.428698pt;}
.h2_c01059{height:38.683802pt;}
.h10_c01059{height:41.467500pt;}
.hb_c01059{height:46.986901pt;}
.h9_c01059{height:49.770599pt;}
.h5_c01059{height:55.290000pt;}
.h8_c01059{height:58.073698pt;}
.hd_c01059{height:63.593099pt;}
.h4_c01059{height:80.151302pt;}
.hc_c01059{height:82.935000pt;}
.hf_c01059{height:85.718698pt;}
.h1_c01059{height:1336.000000pt;}
.h0_c01059{height:1336.320000pt;}
.w1_c01059{width:976.000000pt;}
.w0_c01059{width:976.133333pt;}
.x0_c01059{left:0.000000pt;}
.x1_c01059{left:2.306667pt;}
.x2_c01059{left:3.840000pt;}
.x3_c01059{left:24.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_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_da09c2b33e1cda501169c921.woff2')format("woff");}.ff1_c01060{font-family:ff1_c01060;line-height:1.109863;font-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_c01060{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);}
.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:600.000000px;}
.y0_c01060{bottom:0.000000px;}
.y1_c01060{bottom:15.000000px;}
.h2_c01060{height:539.941406px;}
.h1_c01060{height:1518.750000px;}
.h0_c01060{height:1518.915000px;}
.w0_c01060{width:1088.640000px;}
.w1_c01060{width:1089.000000px;}
.x0_c01060{left:0.000000px;}
.x1_c01060{left:15.000000px;}
@media print{
.v0_c01060{vertical-align:0.000000pt;}
.ls0_c01060{letter-spacing:0.000000pt;}
.ws0_c01060{word-spacing:0.000000pt;}
.fs0_c01060{font-size:533.333333pt;}
.y0_c01060{bottom:0.000000pt;}
.y1_c01060{bottom:13.333333pt;}
.h2_c01060{height:479.947917pt;}
.h1_c01060{height:1350.000000pt;}
.h0_c01060{height:1350.146667pt;}
.w0_c01060{width:967.680000pt;}
.w1_c01060{width:968.000000pt;}
.x0_c01060{left:0.000000pt;}
.x1_c01060{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_62adecd94fd63e4ad5622e85.woff2')format("woff");}.ff1_c01061{font-family:ff1_c01061;line-height:1.109863;font-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_c01061{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c01061{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m6_c01061{transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);}
.m8_c01061{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);}
.m3_c01061{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);}
.mb_c01061{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);}
.md_c01061{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01061{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c01061{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);}
.m9_c01061{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m5_c01061{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma_c01061{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c01061{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.m1_c01061{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,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:3.456000px;}
.fs4_c01061{font-size:13.800000px;}
.fs7_c01061{font-size:27.660000px;}
.fsa_c01061{font-size:31.080000px;}
.fs1_c01061{font-size:34.560000px;}
.fs2_c01061{font-size:48.360000px;}
.fs8_c01061{font-size:51.840000px;}
.fs3_c01061{font-size:55.320000px;}
.fs9_c01061{font-size:62.220000px;}
.fs6_c01061{font-size:82.920000px;}
.fs5_c01061{font-size:86.400000px;}
.y0_c01061{bottom:0.000000px;}
.y9_c01061{bottom:580.605000px;}
.yb_c01061{bottom:595.290000px;}
.ya_c01061{bottom:597.030000px;}
.yc_c01061{bottom:598.755000px;}
.yd_c01061{bottom:608.250000px;}
.y6_c01061{bottom:644.550000px;}
.y7_c01061{bottom:648.000000px;}
.y8_c01061{bottom:669.600000px;}
.y3_c01061{bottom:713.670000px;}
.y4_c01061{bottom:714.525000px;}
.y5_c01061{bottom:721.440000px;}
.y2_c01061{bottom:726.630000px;}
.y1_c01061{bottom:1166.400000px;}
.h2_c01061{height:3.110063px;}
.h6_c01061{height:12.418652px;}
.h9_c01061{height:24.891299px;}
.hc_c01061{height:27.968965px;}
.h3_c01061{height:31.100625px;}
.h4_c01061{height:43.519277px;}
.ha_c01061{height:46.650937px;}
.h5_c01061{height:49.782598px;}
.hb_c01061{height:55.991924px;}
.h8_c01061{height:74.619902px;}
.h7_c01061{height:77.751563px;}
.h1_c01061{height:1503.000000px;}
.h0_c01061{height:1503.360000px;}
.w1_c01061{width:1098.000000px;}
.w0_c01061{width:1098.150000px;}
.x0_c01061{left:0.000000px;}
.x1_c01061{left:83.805000px;}
.xa_c01061{left:103.680000px;}
.x4_c01061{left:239.325000px;}
.x2_c01061{left:252.285000px;}
.x5_c01061{left:296.355000px;}
.x3_c01061{left:302.400000px;}
.xb_c01061{left:330.915000px;}
.x6_c01061{left:342.150000px;}
.xc_c01061{left:374.970000px;}
.xd_c01061{left:415.590000px;}
.xf_c01061{left:455.325000px;}
.xe_c01061{left:465.690000px;}
.x7_c01061{left:638.490000px;}
.x8_c01061{left:730.080000px;}
.x9_c01061{left:838.080000px;}
@media print{
.v0_c01061{vertical-align:0.000000pt;}
.ls0_c01061{letter-spacing:0.000000pt;}
.ws0_c01061{word-spacing:0.000000pt;}
.fs0_c01061{font-size:3.072000pt;}
.fs4_c01061{font-size:12.266667pt;}
.fs7_c01061{font-size:24.586667pt;}
.fsa_c01061{font-size:27.626667pt;}
.fs1_c01061{font-size:30.720000pt;}
.fs2_c01061{font-size:42.986667pt;}
.fs8_c01061{font-size:46.080000pt;}
.fs3_c01061{font-size:49.173333pt;}
.fs9_c01061{font-size:55.306667pt;}
.fs6_c01061{font-size:73.706667pt;}
.fs5_c01061{font-size:76.800000pt;}
.y0_c01061{bottom:0.000000pt;}
.y9_c01061{bottom:516.093333pt;}
.yb_c01061{bottom:529.146667pt;}
.ya_c01061{bottom:530.693333pt;}
.yc_c01061{bottom:532.226667pt;}
.yd_c01061{bottom:540.666667pt;}
.y6_c01061{bottom:572.933333pt;}
.y7_c01061{bottom:576.000000pt;}
.y8_c01061{bottom:595.200000pt;}
.y3_c01061{bottom:634.373333pt;}
.y4_c01061{bottom:635.133333pt;}
.y5_c01061{bottom:641.280000pt;}
.y2_c01061{bottom:645.893333pt;}
.y1_c01061{bottom:1036.800000pt;}
.h2_c01061{height:2.764500pt;}
.h6_c01061{height:11.038802pt;}
.h9_c01061{height:22.125599pt;}
.hc_c01061{height:24.861302pt;}
.h3_c01061{height:27.645000pt;}
.h4_c01061{height:38.683802pt;}
.ha_c01061{height:41.467500pt;}
.h5_c01061{height:44.251198pt;}
.hb_c01061{height:49.770599pt;}
.h8_c01061{height:66.328802pt;}
.h7_c01061{height:69.112500pt;}
.h1_c01061{height:1336.000000pt;}
.h0_c01061{height:1336.320000pt;}
.w1_c01061{width:976.000000pt;}
.w0_c01061{width:976.133333pt;}
.x0_c01061{left:0.000000pt;}
.x1_c01061{left:74.493333pt;}
.xa_c01061{left:92.160000pt;}
.x4_c01061{left:212.733333pt;}
.x2_c01061{left:224.253333pt;}
.x5_c01061{left:263.426667pt;}
.x3_c01061{left:268.800000pt;}
.xb_c01061{left:294.146667pt;}
.x6_c01061{left:304.133333pt;}
.xc_c01061{left:333.306667pt;}
.xd_c01061{left:369.413333pt;}
.xf_c01061{left:404.733333pt;}
.xe_c01061{left:413.946667pt;}
.x7_c01061{left:567.546667pt;}
.x8_c01061{left:648.960000pt;}
.x9_c01061{left:744.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_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_88e96714af840435f3a7df97.woff2')format("woff");}.ff1_c01062{font-family:ff1_c01062;line-height:1.109863;font-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_c01062{transform:matrix(0.030025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030025,0.000000,0.000000,0.250000,0,0);}
.m3_c01062{transform:matrix(0.040575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040575,0.000000,0.000000,0.250000,0,0);}
.m1_c01062{transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);}
.m6_c01062{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.m2_c01062{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c01062{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01062{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);}
.m7_c01062{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c01062{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,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;}
.fs2_c01062{font-size:10.380000px;}
.fs5_c01062{font-size:17.280000px;}
.fs4_c01062{font-size:24.180000px;}
.fs6_c01062{font-size:41.460000px;}
.fs0_c01062{font-size:86.400000px;}
.fs1_c01062{font-size:145.140000px;}
.fs3_c01062{font-size:307.560000px;}
.y0_c01062{bottom:0.000000px;}
.y8_c01062{bottom:76.035000px;}
.y9_c01062{bottom:76.890000px;}
.y7_c01062{bottom:82.080000px;}
.y6_c01062{bottom:101.085000px;}
.y4_c01062{bottom:332.640000px;}
.y3_c01062{bottom:399.165000px;}
.y2_c01062{bottom:410.400000px;}
.y1_c01062{bottom:447.555000px;}
.y5_c01062{bottom:916.710000px;}
.h4_c01062{height:9.340986px;}
.h7_c01062{height:15.550313px;}
.h6_c01062{height:21.759639px;}
.h8_c01062{height:37.309951px;}
.h2_c01062{height:77.751563px;}
.h3_c01062{height:130.611826px;}
.h5_c01062{height:276.773965px;}
.h1_c01062{height:1518.750000px;}
.h0_c01062{height:1518.915000px;}
.w0_c01062{width:1088.640000px;}
.w1_c01062{width:1089.000000px;}
.x0_c01062{left:0.000000px;}
.x4_c01062{left:927.075000px;}
.x2_c01062{left:972.000000px;}
.x6_c01062{left:975.450000px;}
.x1_c01062{left:986.685000px;}
.x5_c01062{left:992.730000px;}
.x3_c01062{left:1050.630000px;}
@media print{
.v0_c01062{vertical-align:0.000000pt;}
.ls0_c01062{letter-spacing:0.000000pt;}
.ws0_c01062{word-spacing:0.000000pt;}
.fs2_c01062{font-size:9.226667pt;}
.fs5_c01062{font-size:15.360000pt;}
.fs4_c01062{font-size:21.493333pt;}
.fs6_c01062{font-size:36.853333pt;}
.fs0_c01062{font-size:76.800000pt;}
.fs1_c01062{font-size:129.013333pt;}
.fs3_c01062{font-size:273.386667pt;}
.y0_c01062{bottom:0.000000pt;}
.y8_c01062{bottom:67.586667pt;}
.y9_c01062{bottom:68.346667pt;}
.y7_c01062{bottom:72.960000pt;}
.y6_c01062{bottom:89.853333pt;}
.y4_c01062{bottom:295.680000pt;}
.y3_c01062{bottom:354.813333pt;}
.y2_c01062{bottom:364.800000pt;}
.y1_c01062{bottom:397.826667pt;}
.y5_c01062{bottom:814.853333pt;}
.h4_c01062{height:8.303099pt;}
.h7_c01062{height:13.822500pt;}
.h6_c01062{height:19.341901pt;}
.h8_c01062{height:33.164401pt;}
.h2_c01062{height:69.112500pt;}
.h3_c01062{height:116.099401pt;}
.h5_c01062{height:246.021302pt;}
.h1_c01062{height:1350.000000pt;}
.h0_c01062{height:1350.146667pt;}
.w0_c01062{width:967.680000pt;}
.w1_c01062{width:968.000000pt;}
.x0_c01062{left:0.000000pt;}
.x4_c01062{left:824.066667pt;}
.x2_c01062{left:864.000000pt;}
.x6_c01062{left:867.066667pt;}
.x1_c01062{left:877.053333pt;}
.x5_c01062{left:882.426667pt;}
.x3_c01062{left:933.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01063;src:url('chunks/assets/font_5ef346b255bb4473bb057c44.woff2')format("woff");}.ff1_c01063{font-family:ff1_c01063;line-height:1.109863;font-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_c01063{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);}
.v0_c01063{vertical-align:0.000000px;}
.ls0_c01063{letter-spacing:0.000000px;}
.sc__c01063{text-shadow:none;}
.sc0_c01063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01063{-webkit-text-stroke:0px transparent;}
.sc0_c01063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01063{word-spacing:0.000000px;}
.fc0_c01063{color:transparent;}
.fs0_c01063{font-size:600.000000px;}
.y0_c01063{bottom:0.000000px;}
.y1_c01063{bottom:15.000000px;}
.h2_c01063{height:539.941406px;}
.h1_c01063{height:1503.000000px;}
.h0_c01063{height:1503.360000px;}
.w1_c01063{width:1098.000000px;}
.w0_c01063{width:1098.150000px;}
.x0_c01063{left:0.000000px;}
.x1_c01063{left:15.000000px;}
@media print{
.v0_c01063{vertical-align:0.000000pt;}
.ls0_c01063{letter-spacing:0.000000pt;}
.ws0_c01063{word-spacing:0.000000pt;}
.fs0_c01063{font-size:533.333333pt;}
.y0_c01063{bottom:0.000000pt;}
.y1_c01063{bottom:13.333333pt;}
.h2_c01063{height:479.947917pt;}
.h1_c01063{height:1336.000000pt;}
.h0_c01063{height:1336.320000pt;}
.w1_c01063{width:976.000000pt;}
.w0_c01063{width:976.133333pt;}
.x0_c01063{left:0.000000pt;}
.x1_c01063{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e85d8a7a9f2ea90a59932f1.woff2')format("woff");}.ff1_c01064{font-family:ff1_c01064;line-height:1.109863;font-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_c01064{transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);}
.m8_c01064{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c01064{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.m9_c01064{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);}
.m2_c01064{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.mc_c01064{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);}
.ma_c01064{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3_c01064{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c01064{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01064{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);}
.m0_c01064{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb_c01064{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);}
.me_c01064{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m7_c01064{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1_c01064{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,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;}
.fs7_c01064{font-size:3.456000px;}
.fs9_c01064{font-size:6.000000px;}
.fs1_c01064{font-size:10.380000px;}
.fs6_c01064{font-size:20.760000px;}
.fs0_c01064{font-size:38.040000px;}
.fs3_c01064{font-size:55.320000px;}
.fs2_c01064{font-size:58.740000px;}
.fs8_c01064{font-size:62.220000px;}
.fs4_c01064{font-size:65.640000px;}
.fs5_c01064{font-size:117.480000px;}
.y0_c01064{bottom:0.000000px;}
.ya_c01064{bottom:959.040000px;}
.y3_c01064{bottom:1377.210000px;}
.y4_c01064{bottom:1378.080000px;}
.y5_c01064{bottom:1378.950000px;}
.y7_c01064{bottom:1379.805000px;}
.y8_c01064{bottom:1381.530000px;}
.y2_c01064{bottom:1385.850000px;}
.y9_c01064{bottom:1389.315000px;}
.y1_c01064{bottom:1407.450000px;}
.y6_c01064{bottom:1414.365000px;}
.h9_c01064{height:3.110063px;}
.hb_c01064{height:5.399414px;}
.h3_c01064{height:9.340986px;}
.h8_c01064{height:18.681973px;}
.h2_c01064{height:34.232285px;}
.h5_c01064{height:49.782598px;}
.h4_c01064{height:52.860264px;}
.ha_c01064{height:55.991924px;}
.h6_c01064{height:59.069590px;}
.h7_c01064{height:105.720527px;}
.h1_c01064{height:1518.750000px;}
.h0_c01064{height:1518.915000px;}
.w0_c01064{width:1088.640000px;}
.w1_c01064{width:1089.000000px;}
.x0_c01064{left:0.000000px;}
.x2_c01064{left:412.125000px;}
.x3_c01064{left:424.230000px;}
.x4_c01064{left:455.325000px;}
.x5_c01064{left:473.475000px;}
.x6_c01064{left:493.350000px;}
.x1_c01064{left:504.570000px;}
.x7_c01064{left:540.000000px;}
.xa_c01064{left:579.750000px;}
.xb_c01064{left:598.755000px;}
.xc_c01064{left:616.035000px;}
.xd_c01064{left:634.170000px;}
.xe_c01064{left:651.450000px;}
.x8_c01064{left:690.330000px;}
.x9_c01064{left:701.565000px;}
.xf_c01064{left:705.030000px;}
.x10_c01064{left:733.530000px;}
.x11_c01064{left:1025.565000px;}
@media print{
.v0_c01064{vertical-align:0.000000pt;}
.ls0_c01064{letter-spacing:0.000000pt;}
.ws0_c01064{word-spacing:0.000000pt;}
.fs7_c01064{font-size:3.072000pt;}
.fs9_c01064{font-size:5.333333pt;}
.fs1_c01064{font-size:9.226667pt;}
.fs6_c01064{font-size:18.453333pt;}
.fs0_c01064{font-size:33.813333pt;}
.fs3_c01064{font-size:49.173333pt;}
.fs2_c01064{font-size:52.213333pt;}
.fs8_c01064{font-size:55.306667pt;}
.fs4_c01064{font-size:58.346667pt;}
.fs5_c01064{font-size:104.426667pt;}
.y0_c01064{bottom:0.000000pt;}
.ya_c01064{bottom:852.480000pt;}
.y3_c01064{bottom:1224.186667pt;}
.y4_c01064{bottom:1224.960000pt;}
.y5_c01064{bottom:1225.733333pt;}
.y7_c01064{bottom:1226.493333pt;}
.y8_c01064{bottom:1228.026667pt;}
.y2_c01064{bottom:1231.866667pt;}
.y9_c01064{bottom:1234.946667pt;}
.y1_c01064{bottom:1251.066667pt;}
.y6_c01064{bottom:1257.213333pt;}
.h9_c01064{height:2.764500pt;}
.hb_c01064{height:4.799479pt;}
.h3_c01064{height:8.303099pt;}
.h8_c01064{height:16.606198pt;}
.h2_c01064{height:30.428698pt;}
.h5_c01064{height:44.251198pt;}
.h4_c01064{height:46.986901pt;}
.ha_c01064{height:49.770599pt;}
.h6_c01064{height:52.506302pt;}
.h7_c01064{height:93.973802pt;}
.h1_c01064{height:1350.000000pt;}
.h0_c01064{height:1350.146667pt;}
.w0_c01064{width:967.680000pt;}
.w1_c01064{width:968.000000pt;}
.x0_c01064{left:0.000000pt;}
.x2_c01064{left:366.333333pt;}
.x3_c01064{left:377.093333pt;}
.x4_c01064{left:404.733333pt;}
.x5_c01064{left:420.866667pt;}
.x6_c01064{left:438.533333pt;}
.x1_c01064{left:448.506667pt;}
.x7_c01064{left:480.000000pt;}
.xa_c01064{left:515.333333pt;}
.xb_c01064{left:532.226667pt;}
.xc_c01064{left:547.586667pt;}
.xd_c01064{left:563.706667pt;}
.xe_c01064{left:579.066667pt;}
.x8_c01064{left:613.626667pt;}
.x9_c01064{left:623.613333pt;}
.xf_c01064{left:626.693333pt;}
.x10_c01064{left:652.026667pt;}
.x11_c01064{left:911.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f386bfad3fd2199f2ac3d19f.woff2')format("woff");}.ff1_c01065{font-family:ff1_c01065;line-height:1.109863;font-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.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c01065{transform:matrix(0.051725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051725,0.000000,0.000000,0.250000,0,0);}
.m16_c01065{transform:matrix(0.053400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053400,0.000000,0.000000,0.250000,0,0);}
.m19_c01065{transform:matrix(0.054375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054375,0.000000,0.000000,0.250000,0,0);}
.m14_c01065{transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);}
.m17_c01065{transform:matrix(0.077225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077225,0.000000,0.000000,0.250000,0,0);}
.mc_c01065{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);}
.m1a_c01065{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.m18_c01065{transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);}
.m1b_c01065{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m3_c01065{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m5_c01065{transform:matrix(0.117300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117300,0.000000,0.000000,0.250000,0,0);}
.m11_c01065{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m13_c01065{transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);}
.m15_c01065{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m1_c01065{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m0_c01065{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);}
.m9_c01065{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m8_c01065{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);}
.m10_c01065{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);}
.m6_c01065{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c01065{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);}
.m7_c01065{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);}
.mb_c01065{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mf_c01065{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);}
.me_c01065{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m12_c01065{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.ma_c01065{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,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;}
.fs6_c01065{font-size:3.456000px;}
.fsd_c01065{font-size:6.900000px;}
.fs7_c01065{font-size:10.380000px;}
.fsc_c01065{font-size:13.800000px;}
.fs9_c01065{font-size:17.280000px;}
.fs0_c01065{font-size:24.180000px;}
.fs8_c01065{font-size:31.080000px;}
.fs3_c01065{font-size:38.040000px;}
.fs14_c01065{font-size:41.460000px;}
.fse_c01065{font-size:44.940000px;}
.fs13_c01065{font-size:48.360000px;}
.fsb_c01065{font-size:51.840000px;}
.fsa_c01065{font-size:58.740000px;}
.fs2_c01065{font-size:72.600000px;}
.fs11_c01065{font-size:76.020000px;}
.fs5_c01065{font-size:79.500000px;}
.fsf_c01065{font-size:82.920000px;}
.fs10_c01065{font-size:86.400000px;}
.fs1_c01065{font-size:93.300000px;}
.fs4_c01065{font-size:100.200000px;}
.fs12_c01065{font-size:124.440000px;}
.y0_c01065{bottom:0.000000px;}
.y1c_c01065{bottom:212.550000px;}
.y1b_c01065{bottom:237.600000px;}
.y1a_c01065{bottom:260.925000px;}
.y19_c01065{bottom:292.035000px;}
.y18_c01065{bottom:311.910000px;}
.y17_c01065{bottom:333.510000px;}
.y16_c01065{bottom:345.600000px;}
.y15_c01065{bottom:385.350000px;}
.y14_c01065{bottom:394.845000px;}
.y13_c01065{bottom:433.725000px;}
.y12_c01065{bottom:440.640000px;}
.y11_c01065{bottom:462.240000px;}
.y10_c01065{bottom:474.330000px;}
.yf_c01065{bottom:475.200000px;}
.yd_c01065{bottom:478.650000px;}
.ye_c01065{bottom:479.520000px;}
.yc_c01065{bottom:496.800000px;}
.yb_c01065{bottom:509.760000px;}
.ya_c01065{bottom:514.950000px;}
.y9_c01065{bottom:538.275000px;}
.y8_c01065{bottom:549.510000px;}
.y6_c01065{bottom:565.920000px;}
.y7_c01065{bottom:568.515000px;}
.y5_c01065{bottom:585.795000px;}
.y4_c01065{bottom:612.570000px;}
.y3_c01065{bottom:622.950000px;}
.y2_c01065{bottom:641.085000px;}
.y1_c01065{bottom:665.280000px;}
.h8_c01065{height:3.110063px;}
.hf_c01065{height:6.209326px;}
.h9_c01065{height:9.340986px;}
.he_c01065{height:12.418652px;}
.hb_c01065{height:15.550313px;}
.h2_c01065{height:21.759639px;}
.ha_c01065{height:27.968965px;}
.h5_c01065{height:34.232285px;}
.h16_c01065{height:37.309951px;}
.h10_c01065{height:40.441611px;}
.h15_c01065{height:43.519277px;}
.hd_c01065{height:46.650937px;}
.hc_c01065{height:52.860264px;}
.h4_c01065{height:65.332910px;}
.h13_c01065{height:68.410576px;}
.h7_c01065{height:71.542236px;}
.h11_c01065{height:74.619902px;}
.h12_c01065{height:77.751563px;}
.h3_c01065{height:83.960889px;}
.h6_c01065{height:90.170215px;}
.h14_c01065{height:111.983848px;}
.h1_c01065{height:1503.000000px;}
.h0_c01065{height:1503.360000px;}
.w1_c01065{width:1098.000000px;}
.w0_c01065{width:1098.150000px;}
.x0_c01065{left:0.000000px;}
.x1_c01065{left:6.915000px;}
.x2_c01065{left:9.510000px;}
.x4_c01065{left:178.845000px;}
.x5_c01065{left:188.355000px;}
.x3_c01065{left:197.850000px;}
@media print{
.v0_c01065{vertical-align:0.000000pt;}
.ls0_c01065{letter-spacing:0.000000pt;}
.ws0_c01065{word-spacing:0.000000pt;}
.fs6_c01065{font-size:3.072000pt;}
.fsd_c01065{font-size:6.133333pt;}
.fs7_c01065{font-size:9.226667pt;}
.fsc_c01065{font-size:12.266667pt;}
.fs9_c01065{font-size:15.360000pt;}
.fs0_c01065{font-size:21.493333pt;}
.fs8_c01065{font-size:27.626667pt;}
.fs3_c01065{font-size:33.813333pt;}
.fs14_c01065{font-size:36.853333pt;}
.fse_c01065{font-size:39.946667pt;}
.fs13_c01065{font-size:42.986667pt;}
.fsb_c01065{font-size:46.080000pt;}
.fsa_c01065{font-size:52.213333pt;}
.fs2_c01065{font-size:64.533333pt;}
.fs11_c01065{font-size:67.573333pt;}
.fs5_c01065{font-size:70.666667pt;}
.fsf_c01065{font-size:73.706667pt;}
.fs10_c01065{font-size:76.800000pt;}
.fs1_c01065{font-size:82.933333pt;}
.fs4_c01065{font-size:89.066667pt;}
.fs12_c01065{font-size:110.613333pt;}
.y0_c01065{bottom:0.000000pt;}
.y1c_c01065{bottom:188.933333pt;}
.y1b_c01065{bottom:211.200000pt;}
.y1a_c01065{bottom:231.933333pt;}
.y19_c01065{bottom:259.586667pt;}
.y18_c01065{bottom:277.253333pt;}
.y17_c01065{bottom:296.453333pt;}
.y16_c01065{bottom:307.200000pt;}
.y15_c01065{bottom:342.533333pt;}
.y14_c01065{bottom:350.973333pt;}
.y13_c01065{bottom:385.533333pt;}
.y12_c01065{bottom:391.680000pt;}
.y11_c01065{bottom:410.880000pt;}
.y10_c01065{bottom:421.626667pt;}
.yf_c01065{bottom:422.400000pt;}
.yd_c01065{bottom:425.466667pt;}
.ye_c01065{bottom:426.240000pt;}
.yc_c01065{bottom:441.600000pt;}
.yb_c01065{bottom:453.120000pt;}
.ya_c01065{bottom:457.733333pt;}
.y9_c01065{bottom:478.466667pt;}
.y8_c01065{bottom:488.453333pt;}
.y6_c01065{bottom:503.040000pt;}
.y7_c01065{bottom:505.346667pt;}
.y5_c01065{bottom:520.706667pt;}
.y4_c01065{bottom:544.506667pt;}
.y3_c01065{bottom:553.733333pt;}
.y2_c01065{bottom:569.853333pt;}
.y1_c01065{bottom:591.360000pt;}
.h8_c01065{height:2.764500pt;}
.hf_c01065{height:5.519401pt;}
.h9_c01065{height:8.303099pt;}
.he_c01065{height:11.038802pt;}
.hb_c01065{height:13.822500pt;}
.h2_c01065{height:19.341901pt;}
.ha_c01065{height:24.861302pt;}
.h5_c01065{height:30.428698pt;}
.h16_c01065{height:33.164401pt;}
.h10_c01065{height:35.948099pt;}
.h15_c01065{height:38.683802pt;}
.hd_c01065{height:41.467500pt;}
.hc_c01065{height:46.986901pt;}
.h4_c01065{height:58.073698pt;}
.h13_c01065{height:60.809401pt;}
.h7_c01065{height:63.593099pt;}
.h11_c01065{height:66.328802pt;}
.h12_c01065{height:69.112500pt;}
.h3_c01065{height:74.631901pt;}
.h6_c01065{height:80.151302pt;}
.h14_c01065{height:99.541198pt;}
.h1_c01065{height:1336.000000pt;}
.h0_c01065{height:1336.320000pt;}
.w1_c01065{width:976.000000pt;}
.w0_c01065{width:976.133333pt;}
.x0_c01065{left:0.000000pt;}
.x1_c01065{left:6.146667pt;}
.x2_c01065{left:8.453333pt;}
.x4_c01065{left:158.973333pt;}
.x5_c01065{left:167.426667pt;}
.x3_c01065{left:175.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_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_ee75f787d4eceb14a43f16d6.woff2')format("woff");}.ff1_c01066{font-family:ff1_c01066;line-height:1.109863;font-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.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c01066{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c01066{transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);}
.m7_c01066{transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);}
.m6_c01066{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);}
.m4_c01066{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);}
.mf_c01066{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);}
.m5_c01066{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.ma_c01066{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);}
.m3_c01066{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md_c01066{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10_c01066{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.me_c01066{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2_c01066{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mb_c01066{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mc_c01066{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m0_c01066{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,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;}
.fc0_c01066{color:transparent;}
.fs1_c01066{font-size:3.456000px;}
.fs6_c01066{font-size:6.000000px;}
.fs2_c01066{font-size:17.280000px;}
.fs0_c01066{font-size:20.760000px;}
.fsc_c01066{font-size:27.660000px;}
.fsd_c01066{font-size:34.560000px;}
.fsa_c01066{font-size:51.840000px;}
.fs9_c01066{font-size:55.320000px;}
.fs8_c01066{font-size:58.740000px;}
.fsb_c01066{font-size:62.220000px;}
.fs4_c01066{font-size:69.120000px;}
.fs5_c01066{font-size:79.500000px;}
.fs7_c01066{font-size:96.780000px;}
.fs3_c01066{font-size:100.200000px;}
.y0_c01066{bottom:0.000000px;}
.yb_c01066{bottom:849.315000px;}
.yc_c01066{bottom:851.040000px;}
.yd_c01066{bottom:851.910000px;}
.ye_c01066{bottom:854.490000px;}
.y10_c01066{bottom:857.085000px;}
.yf_c01066{bottom:867.450000px;}
.ya_c01066{bottom:884.730000px;}
.y9_c01066{bottom:895.110000px;}
.y4_c01066{bottom:908.070000px;}
.y7_c01066{bottom:909.795000px;}
.y8_c01066{bottom:910.650000px;}
.y5_c01066{bottom:915.840000px;}
.y6_c01066{bottom:916.710000px;}
.y1_c01066{bottom:959.910000px;}
.y3_c01066{bottom:960.765000px;}
.y2_c01066{bottom:961.635000px;}
.h3_c01066{height:3.110063px;}
.h8_c01066{height:5.399414px;}
.h4_c01066{height:15.550313px;}
.h2_c01066{height:18.681973px;}
.he_c01066{height:24.891299px;}
.hf_c01066{height:31.100625px;}
.hc_c01066{height:46.650937px;}
.hb_c01066{height:49.782598px;}
.ha_c01066{height:52.860264px;}
.hd_c01066{height:55.991924px;}
.h6_c01066{height:62.201250px;}
.h7_c01066{height:71.542236px;}
.h9_c01066{height:87.092549px;}
.h5_c01066{height:90.170215px;}
.h1_c01066{height:1518.750000px;}
.h0_c01066{height:1518.915000px;}
.w0_c01066{width:1088.640000px;}
.w1_c01066{width:1089.000000px;}
.x0_c01066{left:0.000000px;}
.x4_c01066{left:261.795000px;}
.x5_c01066{left:296.355000px;}
.xc_c01066{left:302.400000px;}
.x9_c01066{left:340.410000px;}
.xa_c01066{left:348.195000px;}
.x6_c01066{left:366.330000px;}
.x7_c01066{left:385.350000px;}
.xd_c01066{left:415.590000px;}
.xe_c01066{left:438.915000px;}
.x8_c01066{left:444.090000px;}
.xf_c01066{left:460.515000px;}
.xb_c01066{left:495.075000px;}
.x10_c01066{left:654.045000px;}
.x12_c01066{left:756.870000px;}
.x11_c01066{left:777.600000px;}
.x1_c01066{left:873.510000px;}
.x2_c01066{left:884.730000px;}
.x3_c01066{left:946.080000px;}
@media print{
.v0_c01066{vertical-align:0.000000pt;}
.ls0_c01066{letter-spacing:0.000000pt;}
.ws0_c01066{word-spacing:0.000000pt;}
.fs1_c01066{font-size:3.072000pt;}
.fs6_c01066{font-size:5.333333pt;}
.fs2_c01066{font-size:15.360000pt;}
.fs0_c01066{font-size:18.453333pt;}
.fsc_c01066{font-size:24.586667pt;}
.fsd_c01066{font-size:30.720000pt;}
.fsa_c01066{font-size:46.080000pt;}
.fs9_c01066{font-size:49.173333pt;}
.fs8_c01066{font-size:52.213333pt;}
.fsb_c01066{font-size:55.306667pt;}
.fs4_c01066{font-size:61.440000pt;}
.fs5_c01066{font-size:70.666667pt;}
.fs7_c01066{font-size:86.026667pt;}
.fs3_c01066{font-size:89.066667pt;}
.y0_c01066{bottom:0.000000pt;}
.yb_c01066{bottom:754.946667pt;}
.yc_c01066{bottom:756.480000pt;}
.yd_c01066{bottom:757.253333pt;}
.ye_c01066{bottom:759.546667pt;}
.y10_c01066{bottom:761.853333pt;}
.yf_c01066{bottom:771.066667pt;}
.ya_c01066{bottom:786.426667pt;}
.y9_c01066{bottom:795.653333pt;}
.y4_c01066{bottom:807.173333pt;}
.y7_c01066{bottom:808.706667pt;}
.y8_c01066{bottom:809.466667pt;}
.y5_c01066{bottom:814.080000pt;}
.y6_c01066{bottom:814.853333pt;}
.y1_c01066{bottom:853.253333pt;}
.y3_c01066{bottom:854.013333pt;}
.y2_c01066{bottom:854.786667pt;}
.h3_c01066{height:2.764500pt;}
.h8_c01066{height:4.799479pt;}
.h4_c01066{height:13.822500pt;}
.h2_c01066{height:16.606198pt;}
.he_c01066{height:22.125599pt;}
.hf_c01066{height:27.645000pt;}
.hc_c01066{height:41.467500pt;}
.hb_c01066{height:44.251198pt;}
.ha_c01066{height:46.986901pt;}
.hd_c01066{height:49.770599pt;}
.h6_c01066{height:55.290000pt;}
.h7_c01066{height:63.593099pt;}
.h9_c01066{height:77.415599pt;}
.h5_c01066{height:80.151302pt;}
.h1_c01066{height:1350.000000pt;}
.h0_c01066{height:1350.146667pt;}
.w0_c01066{width:967.680000pt;}
.w1_c01066{width:968.000000pt;}
.x0_c01066{left:0.000000pt;}
.x4_c01066{left:232.706667pt;}
.x5_c01066{left:263.426667pt;}
.xc_c01066{left:268.800000pt;}
.x9_c01066{left:302.586667pt;}
.xa_c01066{left:309.506667pt;}
.x6_c01066{left:325.626667pt;}
.x7_c01066{left:342.533333pt;}
.xd_c01066{left:369.413333pt;}
.xe_c01066{left:390.146667pt;}
.x8_c01066{left:394.746667pt;}
.xf_c01066{left:409.346667pt;}
.xb_c01066{left:440.066667pt;}
.x10_c01066{left:581.373333pt;}
.x12_c01066{left:672.773333pt;}
.x11_c01066{left:691.200000pt;}
.x1_c01066{left:776.453333pt;}
.x2_c01066{left:786.426667pt;}
.x3_c01066{left:840.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_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;}
@font-face{font-family:ff1_c01067;src:url('chunks/assets/font_19831623a1a0e78bcb6527bc.woff2')format("woff");}.ff1_c01067{font-family:ff1_c01067;line-height:1.109863;font-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_c01067{transform:matrix(0.020825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020825,0.000000,0.000000,0.250000,0,0);}
.md_c01067{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m3_c01067{transform:matrix(0.078475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078475,0.000000,0.000000,0.250000,0,0);}
.m7_c01067{transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);}
.me_c01067{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c01067{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m0_c01067{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.mc_c01067{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c01067{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);}
.m11_c01067{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5_c01067{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);}
.ma_c01067{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c01067{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6_c01067{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);}
.mf_c01067{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m8_c01067{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);}
.mb_c01067{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m2_c01067{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.v0_c01067{vertical-align:0.000000px;}
.ls0_c01067{letter-spacing:0.000000px;}
.sc__c01067{text-shadow:none;}
.sc0_c01067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01067{-webkit-text-stroke:0px transparent;}
.sc0_c01067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01067{word-spacing:0.000000px;}
.fc0_c01067{color:transparent;}
.fs9_c01067{font-size:6.900000px;}
.fsa_c01067{font-size:13.800000px;}
.fs7_c01067{font-size:17.280000px;}
.fs2_c01067{font-size:24.180000px;}
.fs4_c01067{font-size:27.660000px;}
.fs3_c01067{font-size:31.080000px;}
.fs0_c01067{font-size:41.460000px;}
.fs1_c01067{font-size:79.500000px;}
.fs8_c01067{font-size:103.680000px;}
.fs5_c01067{font-size:107.160000px;}
.fs6_c01067{font-size:124.440000px;}
.y0_c01067{bottom:0.000000px;}
.y11_c01067{bottom:346.470000px;}
.y10_c01067{bottom:355.965000px;}
.yf_c01067{bottom:387.930000px;}
.ye_c01067{bottom:389.670000px;}
.yd_c01067{bottom:394.845000px;}
.yb_c01067{bottom:412.125000px;}
.yc_c01067{bottom:414.720000px;}
.ya_c01067{bottom:421.635000px;}
.y9_c01067{bottom:444.090000px;}
.y8_c01067{bottom:454.470000px;}
.y7_c01067{bottom:471.750000px;}
.y5_c01067{bottom:480.390000px;}
.y6_c01067{bottom:482.115000px;}
.y4_c01067{bottom:491.610000px;}
.y3_c01067{bottom:510.630000px;}
.y2_c01067{bottom:520.125000px;}
.y1_c01067{bottom:545.190000px;}
.hb_c01067{height:6.209326px;}
.hc_c01067{height:12.418652px;}
.h9_c01067{height:15.550313px;}
.h4_c01067{height:21.759639px;}
.h6_c01067{height:24.891299px;}
.h5_c01067{height:27.968965px;}
.h2_c01067{height:37.309951px;}
.h3_c01067{height:71.542236px;}
.ha_c01067{height:93.301875px;}
.h7_c01067{height:96.433535px;}
.h8_c01067{height:111.983848px;}
.h1_c01067{height:1503.000000px;}
.h0_c01067{height:1503.360000px;}
.w1_c01067{width:1098.000000px;}
.w0_c01067{width:1098.150000px;}
.x0_c01067{left:0.000000px;}
.x8_c01067{left:5.190000px;}
.x4_c01067{left:25.920000px;}
.x5_c01067{left:57.030000px;}
.x1_c01067{left:76.890000px;}
.x2_c01067{left:113.190000px;}
.x3_c01067{left:115.770000px;}
.x6_c01067{left:166.755000px;}
.x7_c01067{left:177.990000px;}
@media print{
.v0_c01067{vertical-align:0.000000pt;}
.ls0_c01067{letter-spacing:0.000000pt;}
.ws0_c01067{word-spacing:0.000000pt;}
.fs9_c01067{font-size:6.133333pt;}
.fsa_c01067{font-size:12.266667pt;}
.fs7_c01067{font-size:15.360000pt;}
.fs2_c01067{font-size:21.493333pt;}
.fs4_c01067{font-size:24.586667pt;}
.fs3_c01067{font-size:27.626667pt;}
.fs0_c01067{font-size:36.853333pt;}
.fs1_c01067{font-size:70.666667pt;}
.fs8_c01067{font-size:92.160000pt;}
.fs5_c01067{font-size:95.253333pt;}
.fs6_c01067{font-size:110.613333pt;}
.y0_c01067{bottom:0.000000pt;}
.y11_c01067{bottom:307.973333pt;}
.y10_c01067{bottom:316.413333pt;}
.yf_c01067{bottom:344.826667pt;}
.ye_c01067{bottom:346.373333pt;}
.yd_c01067{bottom:350.973333pt;}
.yb_c01067{bottom:366.333333pt;}
.yc_c01067{bottom:368.640000pt;}
.ya_c01067{bottom:374.786667pt;}
.y9_c01067{bottom:394.746667pt;}
.y8_c01067{bottom:403.973333pt;}
.y7_c01067{bottom:419.333333pt;}
.y5_c01067{bottom:427.013333pt;}
.y6_c01067{bottom:428.546667pt;}
.y4_c01067{bottom:436.986667pt;}
.y3_c01067{bottom:453.893333pt;}
.y2_c01067{bottom:462.333333pt;}
.y1_c01067{bottom:484.613333pt;}
.hb_c01067{height:5.519401pt;}
.hc_c01067{height:11.038802pt;}
.h9_c01067{height:13.822500pt;}
.h4_c01067{height:19.341901pt;}
.h6_c01067{height:22.125599pt;}
.h5_c01067{height:24.861302pt;}
.h2_c01067{height:33.164401pt;}
.h3_c01067{height:63.593099pt;}
.ha_c01067{height:82.935000pt;}
.h7_c01067{height:85.718698pt;}
.h8_c01067{height:99.541198pt;}
.h1_c01067{height:1336.000000pt;}
.h0_c01067{height:1336.320000pt;}
.w1_c01067{width:976.000000pt;}
.w0_c01067{width:976.133333pt;}
.x0_c01067{left:0.000000pt;}
.x8_c01067{left:4.613333pt;}
.x4_c01067{left:23.040000pt;}
.x5_c01067{left:50.693333pt;}
.x1_c01067{left:68.346667pt;}
.x2_c01067{left:100.613333pt;}
.x3_c01067{left:102.906667pt;}
.x6_c01067{left:148.226667pt;}
.x7_c01067{left:158.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b344c1e7db90e49ba31adb8e.woff2')format("woff");}.ff1_c01068{font-family:ff1_c01068;line-height:1.109863;font-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_c01068{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);}
.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;}
.fs0_c01068{font-size:600.000000px;}
.y0_c01068{bottom:0.000000px;}
.y1_c01068{bottom:15.000000px;}
.h2_c01068{height:539.941406px;}
.h1_c01068{height:1518.750000px;}
.h0_c01068{height:1518.915000px;}
.w0_c01068{width:1088.640000px;}
.w1_c01068{width:1089.000000px;}
.x0_c01068{left:0.000000px;}
.x1_c01068{left:15.000000px;}
@media print{
.v0_c01068{vertical-align:0.000000pt;}
.ls0_c01068{letter-spacing:0.000000pt;}
.ws0_c01068{word-spacing:0.000000pt;}
.fs0_c01068{font-size:533.333333pt;}
.y0_c01068{bottom:0.000000pt;}
.y1_c01068{bottom:13.333333pt;}
.h2_c01068{height:479.947917pt;}
.h1_c01068{height:1350.000000pt;}
.h0_c01068{height:1350.146667pt;}
.w0_c01068{width:967.680000pt;}
.w1_c01068{width:968.000000pt;}
.x0_c01068{left:0.000000pt;}
.x1_c01068{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01069;src:url('chunks/assets/font_dc4bfac1ff958aa6c6388e79.woff2')format("woff");}.ff1_c01069{font-family:ff1_c01069;line-height:1.109863;font-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_c01069{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);}
.v0_c01069{vertical-align:0.000000px;}
.ls0_c01069{letter-spacing:0.000000px;}
.sc__c01069{text-shadow:none;}
.sc0_c01069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01069{-webkit-text-stroke:0px transparent;}
.sc0_c01069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01069{word-spacing:0.000000px;}
.fc0_c01069{color:transparent;}
.fs0_c01069{font-size:600.000000px;}
.y0_c01069{bottom:0.000000px;}
.y1_c01069{bottom:15.000000px;}
.h2_c01069{height:539.941406px;}
.h1_c01069{height:1503.000000px;}
.h0_c01069{height:1503.360000px;}
.w1_c01069{width:1098.000000px;}
.w0_c01069{width:1098.150000px;}
.x0_c01069{left:0.000000px;}
.x1_c01069{left:15.000000px;}
@media print{
.v0_c01069{vertical-align:0.000000pt;}
.ls0_c01069{letter-spacing:0.000000pt;}
.ws0_c01069{word-spacing:0.000000pt;}
.fs0_c01069{font-size:533.333333pt;}
.y0_c01069{bottom:0.000000pt;}
.y1_c01069{bottom:13.333333pt;}
.h2_c01069{height:479.947917pt;}
.h1_c01069{height:1336.000000pt;}
.h0_c01069{height:1336.320000pt;}
.w1_c01069{width:976.000000pt;}
.w0_c01069{width:976.133333pt;}
.x0_c01069{left:0.000000pt;}
.x1_c01069{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30bbceb355091f5a8a594ebf.woff2')format("woff");}.ff1_c01070{font-family:ff1_c01070;line-height:1.109863;font-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_c01070{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);}
.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;}
.fs0_c01070{font-size:600.000000px;}
.y0_c01070{bottom:0.000000px;}
.y1_c01070{bottom:15.000000px;}
.h2_c01070{height:539.941406px;}
.h1_c01070{height:1518.750000px;}
.h0_c01070{height:1518.915000px;}
.w0_c01070{width:1088.640000px;}
.w1_c01070{width:1089.000000px;}
.x0_c01070{left:0.000000px;}
.x1_c01070{left:15.000000px;}
@media print{
.v0_c01070{vertical-align:0.000000pt;}
.ls0_c01070{letter-spacing:0.000000pt;}
.ws0_c01070{word-spacing:0.000000pt;}
.fs0_c01070{font-size:533.333333pt;}
.y0_c01070{bottom:0.000000pt;}
.y1_c01070{bottom:13.333333pt;}
.h2_c01070{height:479.947917pt;}
.h1_c01070{height:1350.000000pt;}
.h0_c01070{height:1350.146667pt;}
.w0_c01070{width:967.680000pt;}
.w1_c01070{width:968.000000pt;}
.x0_c01070{left:0.000000pt;}
.x1_c01070{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad37e9a125a8e74a427b1838.woff2')format("woff");}.ff1_c01071{font-family:ff1_c01071;line-height:1.109863;font-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_c01071{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.md_c01071{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m0_c01071{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma_c01071{transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);}
.m1e_c01071{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);}
.m1d_c01071{transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);}
.m28_c01071{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);}
.m1f_c01071{transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);}
.m2b_c01071{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m13_c01071{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m14_c01071{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);}
.m1c_c01071{transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);}
.m12_c01071{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m22_c01071{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m19_c01071{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);}
.m16_c01071{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);}
.m17_c01071{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);}
.m24_c01071{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);}
.m23_c01071{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);}
.m1_c01071{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);}
.m18_c01071{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01071{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01071{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6_c01071{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01071{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);}
.m25_c01071{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c01071{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m11_c01071{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4_c01071{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c01071{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m8_c01071{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mc_c01071{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);}
.m5_c01071{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m29_c01071{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m10_c01071{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01071{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m9_c01071{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m15_c01071{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m3_c01071{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);}
.m26_c01071{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);}
.m2a_c01071{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m27_c01071{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m20_c01071{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.mf_c01071{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.me_c01071{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.v0_c01071{vertical-align:0.000000px;}
.v2_c01071{vertical-align:3.420000px;}
.v1_c01071{vertical-align:13.800000px;}
.ls2_c01071{letter-spacing:0.000000px;}
.ls1_c01071{letter-spacing:20.432160px;}
.ls0_c01071{letter-spacing:49.171440px;}
.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;}
.fs1_c01071{font-size:3.456000px;}
.fs8_c01071{font-size:10.380000px;}
.fs0_c01071{font-size:17.280000px;}
.fs2_c01071{font-size:24.180000px;}
.fs9_c01071{font-size:34.560000px;}
.fsd_c01071{font-size:38.040000px;}
.fs12_c01071{font-size:41.460000px;}
.fse_c01071{font-size:44.940000px;}
.fs10_c01071{font-size:51.840000px;}
.fs6_c01071{font-size:55.320000px;}
.fs3_c01071{font-size:58.740000px;}
.fs5_c01071{font-size:62.220000px;}
.fs4_c01071{font-size:65.640000px;}
.fs7_c01071{font-size:69.120000px;}
.fsf_c01071{font-size:72.600000px;}
.fs11_c01071{font-size:82.920000px;}
.fsa_c01071{font-size:89.880000px;}
.fsc_c01071{font-size:93.300000px;}
.fsb_c01071{font-size:96.780000px;}
.y0_c01071{bottom:0.000000px;}
.y1f_c01071{bottom:1027.290000px;}
.y1c_c01071{bottom:1197.510000px;}
.y1a_c01071{bottom:1200.960000px;}
.y1b_c01071{bottom:1201.830000px;}
.y1d_c01071{bottom:1213.920000px;}
.y1e_c01071{bottom:1214.790000px;}
.y18_c01071{bottom:1246.755000px;}
.y19_c01071{bottom:1249.350000px;}
.y16_c01071{bottom:1271.805000px;}
.y17_c01071{bottom:1273.530000px;}
.yc_c01071{bottom:1276.125000px;}
.y12_c01071{bottom:1278.720000px;}
.y11_c01071{bottom:1279.590000px;}
.y13_c01071{bottom:1283.910000px;}
.y15_c01071{bottom:1286.490000px;}
.y14_c01071{bottom:1287.360000px;}
.yf_c01071{bottom:1296.870000px;}
.ye_c01071{bottom:1298.595000px;}
.y10_c01071{bottom:1299.450000px;}
.yd_c01071{bottom:1304.640000px;}
.ya_c01071{bottom:1321.920000px;}
.yb_c01071{bottom:1323.645000px;}
.y9_c01071{bottom:1354.755000px;}
.y8_c01071{bottom:1368.570000px;}
.y7_c01071{bottom:1379.805000px;}
.y4_c01071{bottom:1380.675000px;}
.y5_c01071{bottom:1381.530000px;}
.y6_c01071{bottom:1382.400000px;}
.y2_c01071{bottom:1399.680000px;}
.y3_c01071{bottom:1402.275000px;}
.y1_c01071{bottom:1404.870000px;}
.h8_c01071{height:3.110063px;}
.ha_c01071{height:9.340986px;}
.hb_c01071{height:15.550313px;}
.h2_c01071{height:16.910063px;}
.h3_c01071{height:21.759639px;}
.hc_c01071{height:31.100625px;}
.h10_c01071{height:34.232285px;}
.h15_c01071{height:37.309951px;}
.h11_c01071{height:40.441611px;}
.h13_c01071{height:46.650937px;}
.h7_c01071{height:49.782598px;}
.h4_c01071{height:52.860264px;}
.h6_c01071{height:55.991924px;}
.h5_c01071{height:59.069590px;}
.h9_c01071{height:62.201250px;}
.h12_c01071{height:65.332910px;}
.h14_c01071{height:74.619902px;}
.hd_c01071{height:80.883223px;}
.hf_c01071{height:83.960889px;}
.he_c01071{height:87.092549px;}
.h1_c01071{height:1503.000000px;}
.h0_c01071{height:1503.360000px;}
.w1_c01071{width:1098.000000px;}
.w0_c01071{width:1098.150000px;}
.x0_c01071{left:0.000000px;}
.x1_c01071{left:26.790000px;}
.x11_c01071{left:39.750000px;}
.xf_c01071{left:109.725000px;}
.x10_c01071{left:112.320000px;}
.x28_c01071{left:343.005000px;}
.x29_c01071{left:362.880000px;}
.x2a_c01071{left:448.410000px;}
.x4_c01071{left:451.005000px;}
.x5_c01071{left:501.120000px;}
.x6_c01071{left:527.040000px;}
.x7_c01071{left:551.235000px;}
.xd_c01071{left:557.280000px;}
.x8_c01071{left:570.240000px;}
.xe_c01071{left:578.010000px;}
.x2_c01071{left:589.245000px;}
.x12_c01071{left:600.480000px;}
.x1f_c01071{left:603.930000px;}
.x3_c01071{left:615.165000px;}
.x9_c01071{left:619.485000px;}
.x1a_c01071{left:625.530000px;}
.x13_c01071{left:628.125000px;}
.x20_c01071{left:635.910000px;}
.xa_c01071{left:646.275000px;}
.x2b_c01071{left:648.870000px;}
.x1b_c01071{left:660.090000px;}
.xb_c01071{left:669.600000px;}
.x14_c01071{left:676.515000px;}
.xc_c01071{left:684.285000px;}
.x15_c01071{left:688.605000px;}
.x26_c01071{left:690.330000px;}
.x16_c01071{left:700.710000px;}
.x1c_c01071{left:710.205000px;}
.x21_c01071{left:714.525000px;}
.x22_c01071{left:732.675000px;}
.x1d_c01071{left:735.270000px;}
.x23_c01071{left:754.275000px;}
.x27_c01071{left:756.870000px;}
.x2c_c01071{left:759.450000px;}
.x2d_c01071{left:782.790000px;}
.x24_c01071{left:787.965000px;}
.x17_c01071{left:800.070000px;}
.x2e_c01071{left:804.390000px;}
.x2f_c01071{left:819.075000px;}
.x1e_c01071{left:826.845000px;}
.x18_c01071{left:850.170000px;}
.x25_c01071{left:888.195000px;}
.x19_c01071{left:889.920000px;}
@media print{
.v0_c01071{vertical-align:0.000000pt;}
.v2_c01071{vertical-align:3.040000pt;}
.v1_c01071{vertical-align:12.266667pt;}
.ls2_c01071{letter-spacing:0.000000pt;}
.ls1_c01071{letter-spacing:18.161920pt;}
.ls0_c01071{letter-spacing:43.707947pt;}
.ws0_c01071{word-spacing:0.000000pt;}
.fs1_c01071{font-size:3.072000pt;}
.fs8_c01071{font-size:9.226667pt;}
.fs0_c01071{font-size:15.360000pt;}
.fs2_c01071{font-size:21.493333pt;}
.fs9_c01071{font-size:30.720000pt;}
.fsd_c01071{font-size:33.813333pt;}
.fs12_c01071{font-size:36.853333pt;}
.fse_c01071{font-size:39.946667pt;}
.fs10_c01071{font-size:46.080000pt;}
.fs6_c01071{font-size:49.173333pt;}
.fs3_c01071{font-size:52.213333pt;}
.fs5_c01071{font-size:55.306667pt;}
.fs4_c01071{font-size:58.346667pt;}
.fs7_c01071{font-size:61.440000pt;}
.fsf_c01071{font-size:64.533333pt;}
.fs11_c01071{font-size:73.706667pt;}
.fsa_c01071{font-size:79.893333pt;}
.fsc_c01071{font-size:82.933333pt;}
.fsb_c01071{font-size:86.026667pt;}
.y0_c01071{bottom:0.000000pt;}
.y1f_c01071{bottom:913.146667pt;}
.y1c_c01071{bottom:1064.453333pt;}
.y1a_c01071{bottom:1067.520000pt;}
.y1b_c01071{bottom:1068.293333pt;}
.y1d_c01071{bottom:1079.040000pt;}
.y1e_c01071{bottom:1079.813333pt;}
.y18_c01071{bottom:1108.226667pt;}
.y19_c01071{bottom:1110.533333pt;}
.y16_c01071{bottom:1130.493333pt;}
.y17_c01071{bottom:1132.026667pt;}
.yc_c01071{bottom:1134.333333pt;}
.y12_c01071{bottom:1136.640000pt;}
.y11_c01071{bottom:1137.413333pt;}
.y13_c01071{bottom:1141.253333pt;}
.y15_c01071{bottom:1143.546667pt;}
.y14_c01071{bottom:1144.320000pt;}
.yf_c01071{bottom:1152.773333pt;}
.ye_c01071{bottom:1154.306667pt;}
.y10_c01071{bottom:1155.066667pt;}
.yd_c01071{bottom:1159.680000pt;}
.ya_c01071{bottom:1175.040000pt;}
.yb_c01071{bottom:1176.573333pt;}
.y9_c01071{bottom:1204.226667pt;}
.y8_c01071{bottom:1216.506667pt;}
.y7_c01071{bottom:1226.493333pt;}
.y4_c01071{bottom:1227.266667pt;}
.y5_c01071{bottom:1228.026667pt;}
.y6_c01071{bottom:1228.800000pt;}
.y2_c01071{bottom:1244.160000pt;}
.y3_c01071{bottom:1246.466667pt;}
.y1_c01071{bottom:1248.773333pt;}
.h8_c01071{height:2.764500pt;}
.ha_c01071{height:8.303099pt;}
.hb_c01071{height:13.822500pt;}
.h2_c01071{height:15.031167pt;}
.h3_c01071{height:19.341901pt;}
.hc_c01071{height:27.645000pt;}
.h10_c01071{height:30.428698pt;}
.h15_c01071{height:33.164401pt;}
.h11_c01071{height:35.948099pt;}
.h13_c01071{height:41.467500pt;}
.h7_c01071{height:44.251198pt;}
.h4_c01071{height:46.986901pt;}
.h6_c01071{height:49.770599pt;}
.h5_c01071{height:52.506302pt;}
.h9_c01071{height:55.290000pt;}
.h12_c01071{height:58.073698pt;}
.h14_c01071{height:66.328802pt;}
.hd_c01071{height:71.896198pt;}
.hf_c01071{height:74.631901pt;}
.he_c01071{height:77.415599pt;}
.h1_c01071{height:1336.000000pt;}
.h0_c01071{height:1336.320000pt;}
.w1_c01071{width:976.000000pt;}
.w0_c01071{width:976.133333pt;}
.x0_c01071{left:0.000000pt;}
.x1_c01071{left:23.813333pt;}
.x11_c01071{left:35.333333pt;}
.xf_c01071{left:97.533333pt;}
.x10_c01071{left:99.840000pt;}
.x28_c01071{left:304.893333pt;}
.x29_c01071{left:322.560000pt;}
.x2a_c01071{left:398.586667pt;}
.x4_c01071{left:400.893333pt;}
.x5_c01071{left:445.440000pt;}
.x6_c01071{left:468.480000pt;}
.x7_c01071{left:489.986667pt;}
.xd_c01071{left:495.360000pt;}
.x8_c01071{left:506.880000pt;}
.xe_c01071{left:513.786667pt;}
.x2_c01071{left:523.773333pt;}
.x12_c01071{left:533.760000pt;}
.x1f_c01071{left:536.826667pt;}
.x3_c01071{left:546.813333pt;}
.x9_c01071{left:550.653333pt;}
.x1a_c01071{left:556.026667pt;}
.x13_c01071{left:558.333333pt;}
.x20_c01071{left:565.253333pt;}
.xa_c01071{left:574.466667pt;}
.x2b_c01071{left:576.773333pt;}
.x1b_c01071{left:586.746667pt;}
.xb_c01071{left:595.200000pt;}
.x14_c01071{left:601.346667pt;}
.xc_c01071{left:608.253333pt;}
.x15_c01071{left:612.093333pt;}
.x26_c01071{left:613.626667pt;}
.x16_c01071{left:622.853333pt;}
.x1c_c01071{left:631.293333pt;}
.x21_c01071{left:635.133333pt;}
.x22_c01071{left:651.266667pt;}
.x1d_c01071{left:653.573333pt;}
.x23_c01071{left:670.466667pt;}
.x27_c01071{left:672.773333pt;}
.x2c_c01071{left:675.066667pt;}
.x2d_c01071{left:695.813333pt;}
.x24_c01071{left:700.413333pt;}
.x17_c01071{left:711.173333pt;}
.x2e_c01071{left:715.013333pt;}
.x2f_c01071{left:728.066667pt;}
.x1e_c01071{left:734.973333pt;}
.x18_c01071{left:755.706667pt;}
.x25_c01071{left:789.506667pt;}
.x19_c01071{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_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_eb8454494c616d80ede58195.woff2')format("woff");}.ff1_c01072{font-family:ff1_c01072;line-height:1.109863;font-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_c01072{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);}
.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;}
.fs0_c01072{font-size:600.000000px;}
.y0_c01072{bottom:0.000000px;}
.y1_c01072{bottom:15.000000px;}
.h2_c01072{height:539.941406px;}
.h1_c01072{height:1518.750000px;}
.h0_c01072{height:1518.915000px;}
.w0_c01072{width:1088.640000px;}
.w1_c01072{width:1089.000000px;}
.x0_c01072{left:0.000000px;}
.x1_c01072{left:15.000000px;}
@media print{
.v0_c01072{vertical-align:0.000000pt;}
.ls0_c01072{letter-spacing:0.000000pt;}
.ws0_c01072{word-spacing:0.000000pt;}
.fs0_c01072{font-size:533.333333pt;}
.y0_c01072{bottom:0.000000pt;}
.y1_c01072{bottom:13.333333pt;}
.h2_c01072{height:479.947917pt;}
.h1_c01072{height:1350.000000pt;}
.h0_c01072{height:1350.146667pt;}
.w0_c01072{width:967.680000pt;}
.w1_c01072{width:968.000000pt;}
.x0_c01072{left:0.000000pt;}
.x1_c01072{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b4defbecb0b6a85295fd75bd.woff2')format("woff");}.ff1_c01073{font-family:ff1_c01073;line-height:1.109863;font-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.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);}
.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:600.000000px;}
.y0_c01073{bottom:0.000000px;}
.y1_c01073{bottom:15.000000px;}
.h2_c01073{height:539.941406px;}
.h1_c01073{height:1503.000000px;}
.h0_c01073{height:1503.360000px;}
.w1_c01073{width:1098.000000px;}
.w0_c01073{width:1098.150000px;}
.x0_c01073{left:0.000000px;}
.x1_c01073{left:15.000000px;}
@media print{
.v0_c01073{vertical-align:0.000000pt;}
.ls0_c01073{letter-spacing:0.000000pt;}
.ws0_c01073{word-spacing:0.000000pt;}
.fs0_c01073{font-size:533.333333pt;}
.y0_c01073{bottom:0.000000pt;}
.y1_c01073{bottom:13.333333pt;}
.h2_c01073{height:479.947917pt;}
.h1_c01073{height:1336.000000pt;}
.h0_c01073{height:1336.320000pt;}
.w1_c01073{width:976.000000pt;}
.w0_c01073{width:976.133333pt;}
.x0_c01073{left:0.000000pt;}
.x1_c01073{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0b6cc32d050f045d6d89fde.woff2')format("woff");}.ff1_c01074{font-family:ff1_c01074;line-height:1.109863;font-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_c01074{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);}
.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;}
.fs0_c01074{font-size:600.000000px;}
.y0_c01074{bottom:0.000000px;}
.y1_c01074{bottom:15.000000px;}
.h2_c01074{height:539.941406px;}
.h1_c01074{height:1518.750000px;}
.h0_c01074{height:1518.915000px;}
.w1_c01074{width:1074.750000px;}
.w0_c01074{width:1074.810000px;}
.x0_c01074{left:0.000000px;}
.x1_c01074{left:15.000000px;}
@media print{
.v0_c01074{vertical-align:0.000000pt;}
.ls0_c01074{letter-spacing:0.000000pt;}
.ws0_c01074{word-spacing:0.000000pt;}
.fs0_c01074{font-size:533.333333pt;}
.y0_c01074{bottom:0.000000pt;}
.y1_c01074{bottom:13.333333pt;}
.h2_c01074{height:479.947917pt;}
.h1_c01074{height:1350.000000pt;}
.h0_c01074{height:1350.146667pt;}
.w1_c01074{width:955.333333pt;}
.w0_c01074{width:955.386667pt;}
.x0_c01074{left:0.000000pt;}
.x1_c01074{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8eff5927b2f0c41a84e98e03.woff2')format("woff");}.ff1_c01075{font-family:ff1_c01075;line-height:1.109863;font-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_c01075{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m0_c01075{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m3_c01075{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c01075{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb_c01075{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4_c01075{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9_c01075{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.ma_c01075{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m6_c01075{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5_c01075{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m8_c01075{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);}
.m1_c01075{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,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;}
.fs0_c01075{font-size:38.040000px;}
.fs5_c01075{font-size:55.320000px;}
.fs3_c01075{font-size:58.740000px;}
.fs4_c01075{font-size:62.220000px;}
.fs2_c01075{font-size:65.640000px;}
.fs1_c01075{font-size:72.600000px;}
.y0_c01075{bottom:0.000000px;}
.y3_c01075{bottom:1371.165000px;}
.y5_c01075{bottom:1372.035000px;}
.y4_c01075{bottom:1372.890000px;}
.y1_c01075{bottom:1394.490000px;}
.y2_c01075{bottom:1396.230000px;}
.h2_c01075{height:34.232285px;}
.h7_c01075{height:49.782598px;}
.h5_c01075{height:52.860264px;}
.h6_c01075{height:55.991924px;}
.h4_c01075{height:59.069590px;}
.h3_c01075{height:65.332910px;}
.h0_c01075{height:1498.170000px;}
.h1_c01075{height:1498.500000px;}
.w1_c01075{width:1098.000000px;}
.w0_c01075{width:1098.150000px;}
.x0_c01075{left:0.000000px;}
.x3_c01075{left:450.150000px;}
.x4_c01075{left:481.245000px;}
.x5_c01075{left:505.440000px;}
.x6_c01075{left:526.170000px;}
.x7_c01075{left:552.960000px;}
.x1_c01075{left:585.795000px;}
.x8_c01075{left:607.395000px;}
.x2_c01075{left:609.990000px;}
.x9_c01075{left:636.765000px;}
.xa_c01075{left:659.235000px;}
.xb_c01075{left:674.790000px;}
.xc_c01075{left:687.750000px;}
@media print{
.v0_c01075{vertical-align:0.000000pt;}
.ls0_c01075{letter-spacing:0.000000pt;}
.ws0_c01075{word-spacing:0.000000pt;}
.fs0_c01075{font-size:33.813333pt;}
.fs5_c01075{font-size:49.173333pt;}
.fs3_c01075{font-size:52.213333pt;}
.fs4_c01075{font-size:55.306667pt;}
.fs2_c01075{font-size:58.346667pt;}
.fs1_c01075{font-size:64.533333pt;}
.y0_c01075{bottom:0.000000pt;}
.y3_c01075{bottom:1218.813333pt;}
.y5_c01075{bottom:1219.586667pt;}
.y4_c01075{bottom:1220.346667pt;}
.y1_c01075{bottom:1239.546667pt;}
.y2_c01075{bottom:1241.093333pt;}
.h2_c01075{height:30.428698pt;}
.h7_c01075{height:44.251198pt;}
.h5_c01075{height:46.986901pt;}
.h6_c01075{height:49.770599pt;}
.h4_c01075{height:52.506302pt;}
.h3_c01075{height:58.073698pt;}
.h0_c01075{height:1331.706667pt;}
.h1_c01075{height:1332.000000pt;}
.w1_c01075{width:976.000000pt;}
.w0_c01075{width:976.133333pt;}
.x0_c01075{left:0.000000pt;}
.x3_c01075{left:400.133333pt;}
.x4_c01075{left:427.773333pt;}
.x5_c01075{left:449.280000pt;}
.x6_c01075{left:467.706667pt;}
.x7_c01075{left:491.520000pt;}
.x1_c01075{left:520.706667pt;}
.x8_c01075{left:539.906667pt;}
.x2_c01075{left:542.213333pt;}
.x9_c01075{left:566.013333pt;}
.xa_c01075{left:585.986667pt;}
.xb_c01075{left:599.813333pt;}
.xc_c01075{left:611.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0089e0c6603303eb7262b452.woff2')format("woff");}.ff1_c01076{font-family:ff1_c01076;line-height:1.109863;font-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_c01076{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);}
.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:600.000000px;}
.y0_c01076{bottom:0.000000px;}
.y1_c01076{bottom:15.000000px;}
.h2_c01076{height:539.941406px;}
.h1_c01076{height:1518.750000px;}
.h0_c01076{height:1518.915000px;}
.w1_c01076{width:1074.750000px;}
.w0_c01076{width:1074.810000px;}
.x0_c01076{left:0.000000px;}
.x1_c01076{left:15.000000px;}
@media print{
.v0_c01076{vertical-align:0.000000pt;}
.ls0_c01076{letter-spacing:0.000000pt;}
.ws0_c01076{word-spacing:0.000000pt;}
.fs0_c01076{font-size:533.333333pt;}
.y0_c01076{bottom:0.000000pt;}
.y1_c01076{bottom:13.333333pt;}
.h2_c01076{height:479.947917pt;}
.h1_c01076{height:1350.000000pt;}
.h0_c01076{height:1350.146667pt;}
.w1_c01076{width:955.333333pt;}
.w0_c01076{width:955.386667pt;}
.x0_c01076{left:0.000000pt;}
.x1_c01076{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01077;src:url('chunks/assets/font_2f2d9cb0da9e6858a4da3bf6.woff2')format("woff");}.ff1_c01077{font-family:ff1_c01077;line-height:1.109863;font-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_c01077{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);}
.v0_c01077{vertical-align:0.000000px;}
.ls0_c01077{letter-spacing:0.000000px;}
.sc__c01077{text-shadow:none;}
.sc0_c01077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01077{-webkit-text-stroke:0px transparent;}
.sc0_c01077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01077{word-spacing:0.000000px;}
.fc0_c01077{color:transparent;}
.fs0_c01077{font-size:600.000000px;}
.y0_c01077{bottom:0.000000px;}
.y1_c01077{bottom:15.000000px;}
.h2_c01077{height:539.941406px;}
.h0_c01077{height:1498.170000px;}
.h1_c01077{height:1498.500000px;}
.w1_c01077{width:1098.000000px;}
.w0_c01077{width:1098.150000px;}
.x0_c01077{left:0.000000px;}
.x1_c01077{left:15.000000px;}
@media print{
.v0_c01077{vertical-align:0.000000pt;}
.ls0_c01077{letter-spacing:0.000000pt;}
.ws0_c01077{word-spacing:0.000000pt;}
.fs0_c01077{font-size:533.333333pt;}
.y0_c01077{bottom:0.000000pt;}
.y1_c01077{bottom:13.333333pt;}
.h2_c01077{height:479.947917pt;}
.h0_c01077{height:1331.706667pt;}
.h1_c01077{height:1332.000000pt;}
.w1_c01077{width:976.000000pt;}
.w0_c01077{width:976.133333pt;}
.x0_c01077{left:0.000000pt;}
.x1_c01077{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d47d2e57c416fe179df7574.woff2')format("woff");}.ff1_c01078{font-family:ff1_c01078;line-height:1.109863;font-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_c01078{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);}
.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;}
.fs0_c01078{font-size:600.000000px;}
.y0_c01078{bottom:0.000000px;}
.y1_c01078{bottom:15.000000px;}
.h2_c01078{height:539.941406px;}
.h1_c01078{height:1518.750000px;}
.h0_c01078{height:1518.915000px;}
.w1_c01078{width:1074.750000px;}
.w0_c01078{width:1074.810000px;}
.x0_c01078{left:0.000000px;}
.x1_c01078{left:15.000000px;}
@media print{
.v0_c01078{vertical-align:0.000000pt;}
.ls0_c01078{letter-spacing:0.000000pt;}
.ws0_c01078{word-spacing:0.000000pt;}
.fs0_c01078{font-size:533.333333pt;}
.y0_c01078{bottom:0.000000pt;}
.y1_c01078{bottom:13.333333pt;}
.h2_c01078{height:479.947917pt;}
.h1_c01078{height:1350.000000pt;}
.h0_c01078{height:1350.146667pt;}
.w1_c01078{width:955.333333pt;}
.w0_c01078{width:955.386667pt;}
.x0_c01078{left:0.000000pt;}
.x1_c01078{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_665b050edf4fd70bc4f6ced6.woff2')format("woff");}.ff1_c01079{font-family:ff1_c01079;line-height:1.109863;font-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_c01079{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c01079{transform:matrix(0.034550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034550,0.000000,0.000000,0.250000,0,0);}
.m32_c01079{transform:matrix(0.125525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125525,0.000000,0.000000,0.250000,0,0);}
.m29_c01079{transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);}
.m2e_c01079{transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);}
.m33_c01079{transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);}
.m3_c01079{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m38_c01079{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);}
.m21_c01079{transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);}
.m24_c01079{transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);}
.m1f_c01079{transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);}
.m39_c01079{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m30_c01079{transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);}
.m2a_c01079{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.m12_c01079{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m8_c01079{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.m37_c01079{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m28_c01079{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);}
.m6_c01079{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.me_c01079{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m26_c01079{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m7_c01079{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m35_c01079{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m23_c01079{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);}
.m1c_c01079{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1b_c01079{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);}
.m25_c01079{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m31_c01079{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);}
.m22_c01079{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);}
.m2d_c01079{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m14_c01079{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m5_c01079{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);}
.m34_c01079{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);}
.m18_c01079{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c01079{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01079{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);}
.m0_c01079{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c01079{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);}
.m2b_c01079{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);}
.m15_c01079{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);}
.m2c_c01079{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01079{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);}
.m36_c01079{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c01079{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);}
.m10_c01079{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);}
.mb_c01079{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf_c01079{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01079{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m19_c01079{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01079{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01079{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mc_c01079{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c01079{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);}
.m13_c01079{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m27_c01079{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01079{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m20_c01079{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m11_c01079{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m2_c01079{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01079{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m1_c01079{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.ma_c01079{transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032500,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:3.456000px;}
.fsc_c01079{font-size:6.000000px;}
.fs9_c01079{font-size:6.900000px;}
.fs1c_c01079{font-size:10.380000px;}
.fs8_c01079{font-size:13.800000px;}
.fs1_c01079{font-size:17.280000px;}
.fs2_c01079{font-size:20.760000px;}
.fs14_c01079{font-size:24.180000px;}
.fs4_c01079{font-size:27.660000px;}
.fs5_c01079{font-size:31.080000px;}
.fsb_c01079{font-size:34.560000px;}
.fs17_c01079{font-size:38.040000px;}
.fse_c01079{font-size:41.460000px;}
.fsf_c01079{font-size:44.940000px;}
.fs11_c01079{font-size:48.360000px;}
.fsd_c01079{font-size:51.840000px;}
.fs10_c01079{font-size:55.320000px;}
.fs1d_c01079{font-size:58.740000px;}
.fs12_c01079{font-size:62.220000px;}
.fs1a_c01079{font-size:65.640000px;}
.fsa_c01079{font-size:69.120000px;}
.fs7_c01079{font-size:76.020000px;}
.fs13_c01079{font-size:79.500000px;}
.fs6_c01079{font-size:82.920000px;}
.fs16_c01079{font-size:86.400000px;}
.fs15_c01079{font-size:89.880000px;}
.fs18_c01079{font-size:93.300000px;}
.fs19_c01079{font-size:96.780000px;}
.fs1b_c01079{font-size:114.060000px;}
.fs3_c01079{font-size:117.480000px;}
.y0_c01079{bottom:0.000000px;}
.y2e_c01079{bottom:540.000000px;}
.y2d_c01079{bottom:544.320000px;}
.y2c_c01079{bottom:827.715000px;}
.y2b_c01079{bottom:828.570000px;}
.y29_c01079{bottom:831.165000px;}
.y2a_c01079{bottom:836.355000px;}
.y19_c01079{bottom:838.080000px;}
.y1a_c01079{bottom:839.805000px;}
.y1b_c01079{bottom:841.530000px;}
.y26_c01079{bottom:850.170000px;}
.y27_c01079{bottom:852.765000px;}
.y23_c01079{bottom:857.085000px;}
.y28_c01079{bottom:858.810000px;}
.y24_c01079{bottom:860.550000px;}
.y25_c01079{bottom:862.275000px;}
.y18_c01079{bottom:864.870000px;}
.y17_c01079{bottom:865.725000px;}
.y14_c01079{bottom:866.595000px;}
.y15_c01079{bottom:867.450000px;}
.y16_c01079{bottom:868.320000px;}
.y21_c01079{bottom:878.685000px;}
.y1f_c01079{bottom:879.555000px;}
.y22_c01079{bottom:883.875000px;}
.y1d_c01079{bottom:884.730000px;}
.y1c_c01079{bottom:885.600000px;}
.y20_c01079{bottom:886.470000px;}
.y1e_c01079{bottom:887.325000px;}
.y12_c01079{bottom:888.195000px;}
.yf_c01079{bottom:889.050000px;}
.y13_c01079{bottom:890.790000px;}
.y11_c01079{bottom:891.645000px;}
.y10_c01079{bottom:892.515000px;}
.y8_c01079{bottom:893.370000px;}
.y7_c01079{bottom:894.240000px;}
.ya_c01079{bottom:902.010000px;}
.yb_c01079{bottom:903.750000px;}
.yc_c01079{bottom:904.605000px;}
.y9_c01079{bottom:905.475000px;}
.ye_c01079{bottom:912.390000px;}
.yd_c01079{bottom:913.245000px;}
.y6_c01079{bottom:919.290000px;}
.y5_c01079{bottom:922.755000px;}
.y4_c01079{bottom:945.210000px;}
.y3_c01079{bottom:1330.560000px;}
.y2_c01079{bottom:1335.750000px;}
.y1_c01079{bottom:1372.035000px;}
.h2_c01079{height:3.110063px;}
.he_c01079{height:5.399414px;}
.hb_c01079{height:6.209326px;}
.h1e_c01079{height:9.340986px;}
.ha_c01079{height:12.418652px;}
.h3_c01079{height:15.550313px;}
.h4_c01079{height:18.681973px;}
.h16_c01079{height:21.759639px;}
.h6_c01079{height:24.891299px;}
.h7_c01079{height:27.968965px;}
.hd_c01079{height:31.100625px;}
.h19_c01079{height:34.232285px;}
.h10_c01079{height:37.309951px;}
.h11_c01079{height:40.441611px;}
.h13_c01079{height:43.519277px;}
.hf_c01079{height:46.650937px;}
.h12_c01079{height:49.782598px;}
.h1f_c01079{height:52.860264px;}
.h14_c01079{height:55.991924px;}
.h1c_c01079{height:59.069590px;}
.hc_c01079{height:62.201250px;}
.h9_c01079{height:68.410576px;}
.h15_c01079{height:71.542236px;}
.h8_c01079{height:74.619902px;}
.h18_c01079{height:77.751563px;}
.h17_c01079{height:80.883223px;}
.h1a_c01079{height:83.960889px;}
.h1b_c01079{height:87.092549px;}
.h1d_c01079{height:102.642861px;}
.h5_c01079{height:105.720527px;}
.h0_c01079{height:1499.910000px;}
.h1_c01079{height:1500.000000px;}
.w1_c01079{width:1098.000000px;}
.w0_c01079{width:1098.150000px;}
.x0_c01079{left:0.000000px;}
.x3f_c01079{left:11.235000px;}
.x3_c01079{left:28.515000px;}
.x4_c01079{left:30.240000px;}
.x7_c01079{left:237.600000px;}
.x14_c01079{left:252.285000px;}
.x8_c01079{left:258.330000px;}
.x15_c01079{left:272.160000px;}
.x9_c01079{left:279.930000px;}
.x1f_c01079{left:285.120000px;}
.xa_c01079{left:289.440000px;}
.x5_c01079{left:300.675000px;}
.x16_c01079{left:317.085000px;}
.xb_c01079{left:325.725000px;}
.x20_c01079{left:335.235000px;}
.x27_c01079{left:337.830000px;}
.x17_c01079{left:340.410000px;}
.x21_c01079{left:343.005000px;}
.xc_c01079{left:348.195000px;}
.xd_c01079{left:363.750000px;}
.x22_c01079{left:366.330000px;}
.x18_c01079{left:374.970000px;}
.xe_c01079{left:384.480000px;}
.x23_c01079{left:394.845000px;}
.xf_c01079{left:405.210000px;}
.x19_c01079{left:429.405000px;}
.x28_c01079{left:433.725000px;}
.x10_c01079{left:436.320000px;}
.x1a_c01079{left:445.830000px;}
.x24_c01079{left:464.835000px;}
.x25_c01079{left:472.605000px;}
.x1b_c01079{left:477.795000px;}
.x11_c01079{left:483.840000px;}
.x1c_c01079{left:488.160000px;}
.x6_c01079{left:495.075000px;}
.x26_c01079{left:497.670000px;}
.x1d_c01079{left:503.715000px;}
.x12_c01079{left:515.805000px;}
.x1e_c01079{left:535.680000px;}
.x13_c01079{left:557.280000px;}
.x29_c01079{left:585.795000px;}
.x33_c01079{left:605.670000px;}
.x2a_c01079{left:613.440000px;}
.x39_c01079{left:616.890000px;}
.x3a_c01079{left:627.270000px;}
.x3b_c01079{left:654.045000px;}
.x34_c01079{left:661.830000px;}
.x2b_c01079{left:664.410000px;}
.x2c_c01079{left:673.920000px;}
.x35_c01079{left:704.160000px;}
.x3c_c01079{left:706.755000px;}
.x2d_c01079{left:717.120000px;}
.x36_c01079{left:728.355000px;}
.x2e_c01079{left:741.315000px;}
.x3d_c01079{left:760.320000px;}
.x3e_c01079{left:782.790000px;}
.x2f_c01079{left:804.390000px;}
.x37_c01079{left:807.840000px;}
.x30_c01079{left:821.670000px;}
.x31_c01079{left:851.910000px;}
.x38_c01079{left:870.045000px;}
.x32_c01079{left:879.555000px;}
.x1_c01079{left:910.650000px;}
.x2_c01079{left:919.290000px;}
@media print{
.v0_c01079{vertical-align:0.000000pt;}
.ls0_c01079{letter-spacing:0.000000pt;}
.ws0_c01079{word-spacing:0.000000pt;}
.fs0_c01079{font-size:3.072000pt;}
.fsc_c01079{font-size:5.333333pt;}
.fs9_c01079{font-size:6.133333pt;}
.fs1c_c01079{font-size:9.226667pt;}
.fs8_c01079{font-size:12.266667pt;}
.fs1_c01079{font-size:15.360000pt;}
.fs2_c01079{font-size:18.453333pt;}
.fs14_c01079{font-size:21.493333pt;}
.fs4_c01079{font-size:24.586667pt;}
.fs5_c01079{font-size:27.626667pt;}
.fsb_c01079{font-size:30.720000pt;}
.fs17_c01079{font-size:33.813333pt;}
.fse_c01079{font-size:36.853333pt;}
.fsf_c01079{font-size:39.946667pt;}
.fs11_c01079{font-size:42.986667pt;}
.fsd_c01079{font-size:46.080000pt;}
.fs10_c01079{font-size:49.173333pt;}
.fs1d_c01079{font-size:52.213333pt;}
.fs12_c01079{font-size:55.306667pt;}
.fs1a_c01079{font-size:58.346667pt;}
.fsa_c01079{font-size:61.440000pt;}
.fs7_c01079{font-size:67.573333pt;}
.fs13_c01079{font-size:70.666667pt;}
.fs6_c01079{font-size:73.706667pt;}
.fs16_c01079{font-size:76.800000pt;}
.fs15_c01079{font-size:79.893333pt;}
.fs18_c01079{font-size:82.933333pt;}
.fs19_c01079{font-size:86.026667pt;}
.fs1b_c01079{font-size:101.386667pt;}
.fs3_c01079{font-size:104.426667pt;}
.y0_c01079{bottom:0.000000pt;}
.y2e_c01079{bottom:480.000000pt;}
.y2d_c01079{bottom:483.840000pt;}
.y2c_c01079{bottom:735.746667pt;}
.y2b_c01079{bottom:736.506667pt;}
.y29_c01079{bottom:738.813333pt;}
.y2a_c01079{bottom:743.426667pt;}
.y19_c01079{bottom:744.960000pt;}
.y1a_c01079{bottom:746.493333pt;}
.y1b_c01079{bottom:748.026667pt;}
.y26_c01079{bottom:755.706667pt;}
.y27_c01079{bottom:758.013333pt;}
.y23_c01079{bottom:761.853333pt;}
.y28_c01079{bottom:763.386667pt;}
.y24_c01079{bottom:764.933333pt;}
.y25_c01079{bottom:766.466667pt;}
.y18_c01079{bottom:768.773333pt;}
.y17_c01079{bottom:769.533333pt;}
.y14_c01079{bottom:770.306667pt;}
.y15_c01079{bottom:771.066667pt;}
.y16_c01079{bottom:771.840000pt;}
.y21_c01079{bottom:781.053333pt;}
.y1f_c01079{bottom:781.826667pt;}
.y22_c01079{bottom:785.666667pt;}
.y1d_c01079{bottom:786.426667pt;}
.y1c_c01079{bottom:787.200000pt;}
.y20_c01079{bottom:787.973333pt;}
.y1e_c01079{bottom:788.733333pt;}
.y12_c01079{bottom:789.506667pt;}
.yf_c01079{bottom:790.266667pt;}
.y13_c01079{bottom:791.813333pt;}
.y11_c01079{bottom:792.573333pt;}
.y10_c01079{bottom:793.346667pt;}
.y8_c01079{bottom:794.106667pt;}
.y7_c01079{bottom:794.880000pt;}
.ya_c01079{bottom:801.786667pt;}
.yb_c01079{bottom:803.333333pt;}
.yc_c01079{bottom:804.093333pt;}
.y9_c01079{bottom:804.866667pt;}
.ye_c01079{bottom:811.013333pt;}
.yd_c01079{bottom:811.773333pt;}
.y6_c01079{bottom:817.146667pt;}
.y5_c01079{bottom:820.226667pt;}
.y4_c01079{bottom:840.186667pt;}
.y3_c01079{bottom:1182.720000pt;}
.y2_c01079{bottom:1187.333333pt;}
.y1_c01079{bottom:1219.586667pt;}
.h2_c01079{height:2.764500pt;}
.he_c01079{height:4.799479pt;}
.hb_c01079{height:5.519401pt;}
.h1e_c01079{height:8.303099pt;}
.ha_c01079{height:11.038802pt;}
.h3_c01079{height:13.822500pt;}
.h4_c01079{height:16.606198pt;}
.h16_c01079{height:19.341901pt;}
.h6_c01079{height:22.125599pt;}
.h7_c01079{height:24.861302pt;}
.hd_c01079{height:27.645000pt;}
.h19_c01079{height:30.428698pt;}
.h10_c01079{height:33.164401pt;}
.h11_c01079{height:35.948099pt;}
.h13_c01079{height:38.683802pt;}
.hf_c01079{height:41.467500pt;}
.h12_c01079{height:44.251198pt;}
.h1f_c01079{height:46.986901pt;}
.h14_c01079{height:49.770599pt;}
.h1c_c01079{height:52.506302pt;}
.hc_c01079{height:55.290000pt;}
.h9_c01079{height:60.809401pt;}
.h15_c01079{height:63.593099pt;}
.h8_c01079{height:66.328802pt;}
.h18_c01079{height:69.112500pt;}
.h17_c01079{height:71.896198pt;}
.h1a_c01079{height:74.631901pt;}
.h1b_c01079{height:77.415599pt;}
.h1d_c01079{height:91.238099pt;}
.h5_c01079{height:93.973802pt;}
.h0_c01079{height:1333.253333pt;}
.h1_c01079{height:1333.333333pt;}
.w1_c01079{width:976.000000pt;}
.w0_c01079{width:976.133333pt;}
.x0_c01079{left:0.000000pt;}
.x3f_c01079{left:9.986667pt;}
.x3_c01079{left:25.346667pt;}
.x4_c01079{left:26.880000pt;}
.x7_c01079{left:211.200000pt;}
.x14_c01079{left:224.253333pt;}
.x8_c01079{left:229.626667pt;}
.x15_c01079{left:241.920000pt;}
.x9_c01079{left:248.826667pt;}
.x1f_c01079{left:253.440000pt;}
.xa_c01079{left:257.280000pt;}
.x5_c01079{left:267.266667pt;}
.x16_c01079{left:281.853333pt;}
.xb_c01079{left:289.533333pt;}
.x20_c01079{left:297.986667pt;}
.x27_c01079{left:300.293333pt;}
.x17_c01079{left:302.586667pt;}
.x21_c01079{left:304.893333pt;}
.xc_c01079{left:309.506667pt;}
.xd_c01079{left:323.333333pt;}
.x22_c01079{left:325.626667pt;}
.x18_c01079{left:333.306667pt;}
.xe_c01079{left:341.760000pt;}
.x23_c01079{left:350.973333pt;}
.xf_c01079{left:360.186667pt;}
.x19_c01079{left:381.693333pt;}
.x28_c01079{left:385.533333pt;}
.x10_c01079{left:387.840000pt;}
.x1a_c01079{left:396.293333pt;}
.x24_c01079{left:413.186667pt;}
.x25_c01079{left:420.093333pt;}
.x1b_c01079{left:424.706667pt;}
.x11_c01079{left:430.080000pt;}
.x1c_c01079{left:433.920000pt;}
.x6_c01079{left:440.066667pt;}
.x26_c01079{left:442.373333pt;}
.x1d_c01079{left:447.746667pt;}
.x12_c01079{left:458.493333pt;}
.x1e_c01079{left:476.160000pt;}
.x13_c01079{left:495.360000pt;}
.x29_c01079{left:520.706667pt;}
.x33_c01079{left:538.373333pt;}
.x2a_c01079{left:545.280000pt;}
.x39_c01079{left:548.346667pt;}
.x3a_c01079{left:557.573333pt;}
.x3b_c01079{left:581.373333pt;}
.x34_c01079{left:588.293333pt;}
.x2b_c01079{left:590.586667pt;}
.x2c_c01079{left:599.040000pt;}
.x35_c01079{left:625.920000pt;}
.x3c_c01079{left:628.226667pt;}
.x2d_c01079{left:637.440000pt;}
.x36_c01079{left:647.426667pt;}
.x2e_c01079{left:658.946667pt;}
.x3d_c01079{left:675.840000pt;}
.x3e_c01079{left:695.813333pt;}
.x2f_c01079{left:715.013333pt;}
.x37_c01079{left:718.080000pt;}
.x30_c01079{left:730.373333pt;}
.x31_c01079{left:757.253333pt;}
.x38_c01079{left:773.373333pt;}
.x32_c01079{left:781.826667pt;}
.x1_c01079{left:809.466667pt;}
.x2_c01079{left:817.146667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cb434bc2856076042a107eb9.woff2')format("woff");}.ff1_c01080{font-family:ff1_c01080;line-height:1.109863;font-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_c01080{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);}
.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;}
.fs0_c01080{font-size:600.000000px;}
.y0_c01080{bottom:0.000000px;}
.y1_c01080{bottom:15.000000px;}
.h2_c01080{height:539.941406px;}
.h1_c01080{height:1518.750000px;}
.h0_c01080{height:1518.915000px;}
.w1_c01080{width:1074.750000px;}
.w0_c01080{width:1074.810000px;}
.x0_c01080{left:0.000000px;}
.x1_c01080{left:15.000000px;}
@media print{
.v0_c01080{vertical-align:0.000000pt;}
.ls0_c01080{letter-spacing:0.000000pt;}
.ws0_c01080{word-spacing:0.000000pt;}
.fs0_c01080{font-size:533.333333pt;}
.y0_c01080{bottom:0.000000pt;}
.y1_c01080{bottom:13.333333pt;}
.h2_c01080{height:479.947917pt;}
.h1_c01080{height:1350.000000pt;}
.h0_c01080{height:1350.146667pt;}
.w1_c01080{width:955.333333pt;}
.w0_c01080{width:955.386667pt;}
.x0_c01080{left:0.000000pt;}
.x1_c01080{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_397d08a1b985c7d42b0b4e0c.woff2')format("woff");}.ff1_c01081{font-family:ff1_c01081;line-height:1.109863;font-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.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01081{transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);}
.m2b_c01081{transform:matrix(0.058850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058850,0.000000,0.000000,0.250000,0,0);}
.m2a_c01081{transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080000,0.000000,0.000000,0.250000,0,0);}
.m21_c01081{transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);}
.m1f_c01081{transform:matrix(0.106625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106625,0.000000,0.000000,0.250000,0,0);}
.m24_c01081{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m22_c01081{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);}
.m1_c01081{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m8_c01081{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf_c01081{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.mc_c01081{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m2_c01081{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m11_c01081{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);}
.m16_c01081{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m18_c01081{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01081{transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);}
.m2d_c01081{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m10_c01081{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m26_c01081{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);}
.m1e_c01081{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.mb_c01081{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);}
.m13_c01081{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);}
.m12_c01081{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7_c01081{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);}
.ma_c01081{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m23_c01081{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c01081{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01081{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);}
.m3_c01081{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m20_c01081{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);}
.m1d_c01081{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m14_c01081{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c01081{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);}
.m29_c01081{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);}
.m1b_c01081{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c01081{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m15_c01081{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m28_c01081{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);}
.m25_c01081{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m19_c01081{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m5_c01081{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m4_c01081{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m27_c01081{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.md_c01081{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.me_c01081{transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);}
.v1_c01081{vertical-align:-10.380000px;}
.v0_c01081{vertical-align:0.000000px;}
.ls1_c01081{letter-spacing:0.000000px;}
.ls0_c01081{letter-spacing:40.070700px;}
.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;}
.fs19_c01081{font-size:6.000000px;}
.fs8_c01081{font-size:6.900000px;}
.fs4_c01081{font-size:10.380000px;}
.fs3_c01081{font-size:13.800000px;}
.fs5_c01081{font-size:17.280000px;}
.fs2_c01081{font-size:20.760000px;}
.fs0_c01081{font-size:24.180000px;}
.fs9_c01081{font-size:27.660000px;}
.fsa_c01081{font-size:31.080000px;}
.fs6_c01081{font-size:34.560000px;}
.fs1_c01081{font-size:38.040000px;}
.fsb_c01081{font-size:41.460000px;}
.fs11_c01081{font-size:44.940000px;}
.fs10_c01081{font-size:48.360000px;}
.fsd_c01081{font-size:51.840000px;}
.fs7_c01081{font-size:55.320000px;}
.fsc_c01081{font-size:65.640000px;}
.fs14_c01081{font-size:69.120000px;}
.fs16_c01081{font-size:86.400000px;}
.fsf_c01081{font-size:89.880000px;}
.fs15_c01081{font-size:96.780000px;}
.fs12_c01081{font-size:103.680000px;}
.fs13_c01081{font-size:110.580000px;}
.fs18_c01081{font-size:117.480000px;}
.fse_c01081{font-size:141.720000px;}
.fs17_c01081{font-size:159.000000px;}
.y0_c01081{bottom:0.000000px;}
.y34_c01081{bottom:88.995000px;}
.y35_c01081{bottom:92.445000px;}
.y33_c01081{bottom:242.790000px;}
.y30_c01081{bottom:255.750000px;}
.y2f_c01081{bottom:277.350000px;}
.y2d_c01081{bottom:300.675000px;}
.y2e_c01081{bottom:302.400000px;}
.y2b_c01081{bottom:318.810000px;}
.y2c_c01081{bottom:319.680000px;}
.y2a_c01081{bottom:326.595000px;}
.y28_c01081{bottom:339.555000px;}
.y29_c01081{bottom:345.600000px;}
.y26_c01081{bottom:350.790000px;}
.y27_c01081{bottom:355.110000px;}
.y25_c01081{bottom:368.925000px;}
.y24_c01081{bottom:393.120000px;}
.y23_c01081{bottom:402.630000px;}
.y22_c01081{bottom:428.550000px;}
.y21_c01081{bottom:439.770000px;}
.y20_c01081{bottom:446.685000px;}
.y32_c01081{bottom:453.600000px;}
.y1f_c01081{bottom:469.155000px;}
.y1e_c01081{bottom:476.070000px;}
.y31_c01081{bottom:497.670000px;}
.y1d_c01081{bottom:520.125000px;}
.y1c_c01081{bottom:694.650000px;}
.y1b_c01081{bottom:702.435000px;}
.y1a_c01081{bottom:706.755000px;}
.y19_c01081{bottom:797.475000px;}
.y18_c01081{bottom:841.530000px;}
.y17_c01081{bottom:871.770000px;}
.y16_c01081{bottom:878.685000px;}
.y14_c01081{bottom:895.965000px;}
.y15_c01081{bottom:902.010000px;}
.y13_c01081{bottom:921.030000px;}
.y12_c01081{bottom:1124.070000px;}
.y11_c01081{bottom:1137.030000px;}
.y10_c01081{bottom:1149.120000px;}
.ye_c01081{bottom:1174.170000px;}
.yf_c01081{bottom:1176.765000px;}
.yd_c01081{bottom:1199.235000px;}
.yc_c01081{bottom:1200.960000px;}
.yb_c01081{bottom:1223.430000px;}
.y9_c01081{bottom:1234.650000px;}
.ya_c01081{bottom:1237.245000px;}
.y8_c01081{bottom:1249.350000px;}
.y7_c01081{bottom:1262.310000px;}
.y6_c01081{bottom:1271.805000px;}
.y5_c01081{bottom:1296.000000px;}
.y4_c01081{bottom:1324.515000px;}
.y3_c01081{bottom:1331.430000px;}
.y2_c01081{bottom:1347.840000px;}
.y1_c01081{bottom:1359.075000px;}
.h1b_c01081{height:5.399414px;}
.ha_c01081{height:6.209326px;}
.h6_c01081{height:9.340986px;}
.h5_c01081{height:12.418652px;}
.h7_c01081{height:15.550313px;}
.h4_c01081{height:18.681973px;}
.h2_c01081{height:21.759639px;}
.hb_c01081{height:24.891299px;}
.hc_c01081{height:27.968965px;}
.h8_c01081{height:31.100625px;}
.h3_c01081{height:34.232285px;}
.hd_c01081{height:37.309951px;}
.h13_c01081{height:40.441611px;}
.h12_c01081{height:43.519277px;}
.hf_c01081{height:46.650937px;}
.h9_c01081{height:49.782598px;}
.he_c01081{height:59.069590px;}
.h16_c01081{height:62.201250px;}
.h18_c01081{height:77.751563px;}
.h11_c01081{height:80.883223px;}
.h17_c01081{height:87.092549px;}
.h14_c01081{height:93.301875px;}
.h15_c01081{height:99.511201px;}
.h1a_c01081{height:105.720527px;}
.h10_c01081{height:127.534160px;}
.h19_c01081{height:143.084473px;}
.h0_c01081{height:1499.910000px;}
.h1_c01081{height:1500.000000px;}
.w1_c01081{width:1098.000000px;}
.w0_c01081{width:1098.150000px;}
.x0_c01081{left:0.000000px;}
.x1_c01081{left:2.595000px;}
.x2_c01081{left:5.190000px;}
.x3_c01081{left:7.770000px;}
.x9_c01081{left:9.510000px;}
.x8_c01081{left:12.090000px;}
.xa_c01081{left:117.510000px;}
.x4_c01081{left:138.240000px;}
.x7_c01081{left:139.965000px;}
.x5_c01081{left:152.070000px;}
.x6_c01081{left:185.760000px;}
@media print{
.v1_c01081{vertical-align:-9.226667pt;}
.v0_c01081{vertical-align:0.000000pt;}
.ls1_c01081{letter-spacing:0.000000pt;}
.ls0_c01081{letter-spacing:35.618400pt;}
.ws0_c01081{word-spacing:0.000000pt;}
.fs19_c01081{font-size:5.333333pt;}
.fs8_c01081{font-size:6.133333pt;}
.fs4_c01081{font-size:9.226667pt;}
.fs3_c01081{font-size:12.266667pt;}
.fs5_c01081{font-size:15.360000pt;}
.fs2_c01081{font-size:18.453333pt;}
.fs0_c01081{font-size:21.493333pt;}
.fs9_c01081{font-size:24.586667pt;}
.fsa_c01081{font-size:27.626667pt;}
.fs6_c01081{font-size:30.720000pt;}
.fs1_c01081{font-size:33.813333pt;}
.fsb_c01081{font-size:36.853333pt;}
.fs11_c01081{font-size:39.946667pt;}
.fs10_c01081{font-size:42.986667pt;}
.fsd_c01081{font-size:46.080000pt;}
.fs7_c01081{font-size:49.173333pt;}
.fsc_c01081{font-size:58.346667pt;}
.fs14_c01081{font-size:61.440000pt;}
.fs16_c01081{font-size:76.800000pt;}
.fsf_c01081{font-size:79.893333pt;}
.fs15_c01081{font-size:86.026667pt;}
.fs12_c01081{font-size:92.160000pt;}
.fs13_c01081{font-size:98.293333pt;}
.fs18_c01081{font-size:104.426667pt;}
.fse_c01081{font-size:125.973333pt;}
.fs17_c01081{font-size:141.333333pt;}
.y0_c01081{bottom:0.000000pt;}
.y34_c01081{bottom:79.106667pt;}
.y35_c01081{bottom:82.173333pt;}
.y33_c01081{bottom:215.813333pt;}
.y30_c01081{bottom:227.333333pt;}
.y2f_c01081{bottom:246.533333pt;}
.y2d_c01081{bottom:267.266667pt;}
.y2e_c01081{bottom:268.800000pt;}
.y2b_c01081{bottom:283.386667pt;}
.y2c_c01081{bottom:284.160000pt;}
.y2a_c01081{bottom:290.306667pt;}
.y28_c01081{bottom:301.826667pt;}
.y29_c01081{bottom:307.200000pt;}
.y26_c01081{bottom:311.813333pt;}
.y27_c01081{bottom:315.653333pt;}
.y25_c01081{bottom:327.933333pt;}
.y24_c01081{bottom:349.440000pt;}
.y23_c01081{bottom:357.893333pt;}
.y22_c01081{bottom:380.933333pt;}
.y21_c01081{bottom:390.906667pt;}
.y20_c01081{bottom:397.053333pt;}
.y32_c01081{bottom:403.200000pt;}
.y1f_c01081{bottom:417.026667pt;}
.y1e_c01081{bottom:423.173333pt;}
.y31_c01081{bottom:442.373333pt;}
.y1d_c01081{bottom:462.333333pt;}
.y1c_c01081{bottom:617.466667pt;}
.y1b_c01081{bottom:624.386667pt;}
.y1a_c01081{bottom:628.226667pt;}
.y19_c01081{bottom:708.866667pt;}
.y18_c01081{bottom:748.026667pt;}
.y17_c01081{bottom:774.906667pt;}
.y16_c01081{bottom:781.053333pt;}
.y14_c01081{bottom:796.413333pt;}
.y15_c01081{bottom:801.786667pt;}
.y13_c01081{bottom:818.693333pt;}
.y12_c01081{bottom:999.173333pt;}
.y11_c01081{bottom:1010.693333pt;}
.y10_c01081{bottom:1021.440000pt;}
.ye_c01081{bottom:1043.706667pt;}
.yf_c01081{bottom:1046.013333pt;}
.yd_c01081{bottom:1065.986667pt;}
.yc_c01081{bottom:1067.520000pt;}
.yb_c01081{bottom:1087.493333pt;}
.y9_c01081{bottom:1097.466667pt;}
.ya_c01081{bottom:1099.773333pt;}
.y8_c01081{bottom:1110.533333pt;}
.y7_c01081{bottom:1122.053333pt;}
.y6_c01081{bottom:1130.493333pt;}
.y5_c01081{bottom:1152.000000pt;}
.y4_c01081{bottom:1177.346667pt;}
.y3_c01081{bottom:1183.493333pt;}
.y2_c01081{bottom:1198.080000pt;}
.y1_c01081{bottom:1208.066667pt;}
.h1b_c01081{height:4.799479pt;}
.ha_c01081{height:5.519401pt;}
.h6_c01081{height:8.303099pt;}
.h5_c01081{height:11.038802pt;}
.h7_c01081{height:13.822500pt;}
.h4_c01081{height:16.606198pt;}
.h2_c01081{height:19.341901pt;}
.hb_c01081{height:22.125599pt;}
.hc_c01081{height:24.861302pt;}
.h8_c01081{height:27.645000pt;}
.h3_c01081{height:30.428698pt;}
.hd_c01081{height:33.164401pt;}
.h13_c01081{height:35.948099pt;}
.h12_c01081{height:38.683802pt;}
.hf_c01081{height:41.467500pt;}
.h9_c01081{height:44.251198pt;}
.he_c01081{height:52.506302pt;}
.h16_c01081{height:55.290000pt;}
.h18_c01081{height:69.112500pt;}
.h11_c01081{height:71.896198pt;}
.h17_c01081{height:77.415599pt;}
.h14_c01081{height:82.935000pt;}
.h15_c01081{height:88.454401pt;}
.h1a_c01081{height:93.973802pt;}
.h10_c01081{height:113.363698pt;}
.h19_c01081{height:127.186198pt;}
.h0_c01081{height:1333.253333pt;}
.h1_c01081{height:1333.333333pt;}
.w1_c01081{width:976.000000pt;}
.w0_c01081{width:976.133333pt;}
.x0_c01081{left:0.000000pt;}
.x1_c01081{left:2.306667pt;}
.x2_c01081{left:4.613333pt;}
.x3_c01081{left:6.906667pt;}
.x9_c01081{left:8.453333pt;}
.x8_c01081{left:10.746667pt;}
.xa_c01081{left:104.453333pt;}
.x4_c01081{left:122.880000pt;}
.x7_c01081{left:124.413333pt;}
.x5_c01081{left:135.173333pt;}
.x6_c01081{left:165.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_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_5b327564f78067d5c2192996.woff2')format("woff");}.ff1_c01082{font-family:ff1_c01082;line-height:1.109863;font-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_c01082{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c01082{transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);}
.m6_c01082{transform:matrix(0.070775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070775,0.000000,0.000000,0.250000,0,0);}
.m5_c01082{transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);}
.m2_c01082{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01082{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c01082{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);}
.m4_c01082{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,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;}
.fs7_c01082{font-size:3.456000px;}
.fs2_c01082{font-size:10.380000px;}
.fs1_c01082{font-size:13.800000px;}
.fs4_c01082{font-size:17.280000px;}
.fs0_c01082{font-size:27.660000px;}
.fs3_c01082{font-size:117.480000px;}
.fs5_c01082{font-size:172.800000px;}
.fs6_c01082{font-size:176.280000px;}
.y0_c01082{bottom:0.000000px;}
.y2_c01082{bottom:151.200000px;}
.y3_c01082{bottom:152.925000px;}
.y9_c01082{bottom:290.310000px;}
.y8_c01082{bottom:292.890000px;}
.y7_c01082{bottom:458.790000px;}
.y6_c01082{bottom:502.845000px;}
.y5_c01082{bottom:550.365000px;}
.y4_c01082{bottom:556.410000px;}
.y1_c01082{bottom:1196.640000px;}
.h9_c01082{height:3.110063px;}
.h4_c01082{height:9.340986px;}
.h3_c01082{height:12.418652px;}
.h6_c01082{height:15.550313px;}
.h2_c01082{height:24.891299px;}
.h5_c01082{height:105.720527px;}
.h7_c01082{height:155.503125px;}
.h8_c01082{height:158.634785px;}
.h1_c01082{height:1518.750000px;}
.h0_c01082{height:1518.915000px;}
.w1_c01082{width:1074.750000px;}
.w0_c01082{width:1074.810000px;}
.x0_c01082{left:0.000000px;}
.x3_c01082{left:966.810000px;}
.x4_c01082{left:983.235000px;}
.x5_c01082{left:1021.245000px;}
.x6_c01082{left:1031.610000px;}
.x2_c01082{left:1050.630000px;}
.x1_c01082{left:1067.040000px;}
@media print{
.v0_c01082{vertical-align:0.000000pt;}
.ls0_c01082{letter-spacing:0.000000pt;}
.ws0_c01082{word-spacing:0.000000pt;}
.fs7_c01082{font-size:3.072000pt;}
.fs2_c01082{font-size:9.226667pt;}
.fs1_c01082{font-size:12.266667pt;}
.fs4_c01082{font-size:15.360000pt;}
.fs0_c01082{font-size:24.586667pt;}
.fs3_c01082{font-size:104.426667pt;}
.fs5_c01082{font-size:153.600000pt;}
.fs6_c01082{font-size:156.693333pt;}
.y0_c01082{bottom:0.000000pt;}
.y2_c01082{bottom:134.400000pt;}
.y3_c01082{bottom:135.933333pt;}
.y9_c01082{bottom:258.053333pt;}
.y8_c01082{bottom:260.346667pt;}
.y7_c01082{bottom:407.813333pt;}
.y6_c01082{bottom:446.973333pt;}
.y5_c01082{bottom:489.213333pt;}
.y4_c01082{bottom:494.586667pt;}
.y1_c01082{bottom:1063.680000pt;}
.h9_c01082{height:2.764500pt;}
.h4_c01082{height:8.303099pt;}
.h3_c01082{height:11.038802pt;}
.h6_c01082{height:13.822500pt;}
.h2_c01082{height:22.125599pt;}
.h5_c01082{height:93.973802pt;}
.h7_c01082{height:138.225000pt;}
.h8_c01082{height:141.008698pt;}
.h1_c01082{height:1350.000000pt;}
.h0_c01082{height:1350.146667pt;}
.w1_c01082{width:955.333333pt;}
.w0_c01082{width:955.386667pt;}
.x0_c01082{left:0.000000pt;}
.x3_c01082{left:859.386667pt;}
.x4_c01082{left:873.986667pt;}
.x5_c01082{left:907.773333pt;}
.x6_c01082{left:916.986667pt;}
.x2_c01082{left:933.893333pt;}
.x1_c01082{left:948.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_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_d70399d6d58ed707f67da038.woff2')format("woff");}.ff1_c01083{font-family:ff1_c01083;line-height:1.109863;font-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_c01083{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);}
.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:600.000000px;}
.y0_c01083{bottom:0.000000px;}
.y1_c01083{bottom:15.000000px;}
.h2_c01083{height:539.941406px;}
.h0_c01083{height:1499.910000px;}
.h1_c01083{height:1500.000000px;}
.w1_c01083{width:1098.000000px;}
.w0_c01083{width:1098.150000px;}
.x0_c01083{left:0.000000px;}
.x1_c01083{left:15.000000px;}
@media print{
.v0_c01083{vertical-align:0.000000pt;}
.ls0_c01083{letter-spacing:0.000000pt;}
.ws0_c01083{word-spacing:0.000000pt;}
.fs0_c01083{font-size:533.333333pt;}
.y0_c01083{bottom:0.000000pt;}
.y1_c01083{bottom:13.333333pt;}
.h2_c01083{height:479.947917pt;}
.h0_c01083{height:1333.253333pt;}
.h1_c01083{height:1333.333333pt;}
.w1_c01083{width:976.000000pt;}
.w0_c01083{width:976.133333pt;}
.x0_c01083{left:0.000000pt;}
.x1_c01083{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2429a30cd70e4f807ace4249.woff2')format("woff");}.ff1_c01084{font-family:ff1_c01084;line-height:1.109863;font-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_c01084{transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);}
.m4_c01084{transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);}
.m10_c01084{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c01084{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mb_c01084{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.me_c01084{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.ma_c01084{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);}
.m6_c01084{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c01084{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);}
.m1_c01084{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01084{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c01084{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7_c01084{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);}
.mf_c01084{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m13_c01084{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m12_c01084{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m0_c01084{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m9_c01084{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);}
.m11_c01084{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m14_c01084{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m2_c01084{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,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;}
.fse_c01084{font-size:3.456000px;}
.fs1_c01084{font-size:6.000000px;}
.fsa_c01084{font-size:10.380000px;}
.fs11_c01084{font-size:13.800000px;}
.fsb_c01084{font-size:17.280000px;}
.fs10_c01084{font-size:20.760000px;}
.fsf_c01084{font-size:24.180000px;}
.fs2_c01084{font-size:31.080000px;}
.fs6_c01084{font-size:34.560000px;}
.fs8_c01084{font-size:38.040000px;}
.fsc_c01084{font-size:55.320000px;}
.fs4_c01084{font-size:58.740000px;}
.fsd_c01084{font-size:62.220000px;}
.fs5_c01084{font-size:69.120000px;}
.fs9_c01084{font-size:76.020000px;}
.fs0_c01084{font-size:79.500000px;}
.fs7_c01084{font-size:96.780000px;}
.fs3_c01084{font-size:103.680000px;}
.y0_c01084{bottom:0.000000px;}
.y15_c01084{bottom:388.800000px;}
.y16_c01084{bottom:393.120000px;}
.y14_c01084{bottom:667.005000px;}
.y13_c01084{bottom:668.730000px;}
.y10_c01084{bottom:833.760000px;}
.yf_c01084{bottom:835.485000px;}
.y12_c01084{bottom:1241.565000px;}
.y11_c01084{bottom:1242.435000px;}
.yb_c01084{bottom:1278.720000px;}
.ya_c01084{bottom:1283.910000px;}
.yc_c01084{bottom:1286.490000px;}
.yd_c01084{bottom:1287.360000px;}
.ye_c01084{bottom:1293.405000px;}
.y5_c01084{bottom:1301.190000px;}
.y8_c01084{bottom:1302.045000px;}
.y6_c01084{bottom:1310.685000px;}
.y7_c01084{bottom:1311.555000px;}
.y9_c01084{bottom:1312.410000px;}
.y4_c01084{bottom:1363.395000px;}
.y3_c01084{bottom:1384.125000px;}
.y1_c01084{bottom:1391.040000px;}
.y2_c01084{bottom:1391.910000px;}
.h10_c01084{height:3.110063px;}
.h3_c01084{height:5.399414px;}
.hc_c01084{height:9.340986px;}
.h13_c01084{height:12.418652px;}
.hd_c01084{height:15.550313px;}
.h12_c01084{height:18.681973px;}
.h11_c01084{height:21.759639px;}
.h4_c01084{height:27.968965px;}
.h8_c01084{height:31.100625px;}
.ha_c01084{height:34.232285px;}
.he_c01084{height:49.782598px;}
.h6_c01084{height:52.860264px;}
.hf_c01084{height:55.991924px;}
.h7_c01084{height:62.201250px;}
.hb_c01084{height:68.410576px;}
.h2_c01084{height:71.542236px;}
.h9_c01084{height:87.092549px;}
.h5_c01084{height:93.301875px;}
.h1_c01084{height:1518.750000px;}
.h0_c01084{height:1518.915000px;}
.w1_c01084{width:1074.750000px;}
.w0_c01084{width:1074.810000px;}
.x0_c01084{left:0.000000px;}
.x5_c01084{left:210.810000px;}
.xc_c01084{left:243.645000px;}
.x14_c01084{left:273.030000px;}
.x6_c01084{left:286.845000px;}
.x7_c01084{left:310.170000px;}
.xd_c01084{left:312.765000px;}
.xe_c01084{left:344.730000px;}
.x8_c01084{left:351.645000px;}
.x9_c01084{left:365.475000px;}
.x15_c01084{left:369.795000px;}
.x1_c01084{left:388.800000px;}
.xf_c01084{left:405.210000px;}
.xa_c01084{left:423.360000px;}
.xb_c01084{left:451.005000px;}
.x10_c01084{left:466.560000px;}
.x2_c01084{left:479.520000px;}
.x11_c01084{left:482.115000px;}
.x3_c01084{left:496.800000px;}
.x4_c01084{left:502.845000px;}
.x12_c01084{left:997.920000px;}
.x18_c01084{left:1011.750000px;}
.x16_c01084{left:1013.475000px;}
.x13_c01084{left:1016.925000px;}
.x17_c01084{left:1021.245000px;}
@media print{
.v0_c01084{vertical-align:0.000000pt;}
.ls0_c01084{letter-spacing:0.000000pt;}
.ws0_c01084{word-spacing:0.000000pt;}
.fse_c01084{font-size:3.072000pt;}
.fs1_c01084{font-size:5.333333pt;}
.fsa_c01084{font-size:9.226667pt;}
.fs11_c01084{font-size:12.266667pt;}
.fsb_c01084{font-size:15.360000pt;}
.fs10_c01084{font-size:18.453333pt;}
.fsf_c01084{font-size:21.493333pt;}
.fs2_c01084{font-size:27.626667pt;}
.fs6_c01084{font-size:30.720000pt;}
.fs8_c01084{font-size:33.813333pt;}
.fsc_c01084{font-size:49.173333pt;}
.fs4_c01084{font-size:52.213333pt;}
.fsd_c01084{font-size:55.306667pt;}
.fs5_c01084{font-size:61.440000pt;}
.fs9_c01084{font-size:67.573333pt;}
.fs0_c01084{font-size:70.666667pt;}
.fs7_c01084{font-size:86.026667pt;}
.fs3_c01084{font-size:92.160000pt;}
.y0_c01084{bottom:0.000000pt;}
.y15_c01084{bottom:345.600000pt;}
.y16_c01084{bottom:349.440000pt;}
.y14_c01084{bottom:592.893333pt;}
.y13_c01084{bottom:594.426667pt;}
.y10_c01084{bottom:741.120000pt;}
.yf_c01084{bottom:742.653333pt;}
.y12_c01084{bottom:1103.613333pt;}
.y11_c01084{bottom:1104.386667pt;}
.yb_c01084{bottom:1136.640000pt;}
.ya_c01084{bottom:1141.253333pt;}
.yc_c01084{bottom:1143.546667pt;}
.yd_c01084{bottom:1144.320000pt;}
.ye_c01084{bottom:1149.693333pt;}
.y5_c01084{bottom:1156.613333pt;}
.y8_c01084{bottom:1157.373333pt;}
.y6_c01084{bottom:1165.053333pt;}
.y7_c01084{bottom:1165.826667pt;}
.y9_c01084{bottom:1166.586667pt;}
.y4_c01084{bottom:1211.906667pt;}
.y3_c01084{bottom:1230.333333pt;}
.y1_c01084{bottom:1236.480000pt;}
.y2_c01084{bottom:1237.253333pt;}
.h10_c01084{height:2.764500pt;}
.h3_c01084{height:4.799479pt;}
.hc_c01084{height:8.303099pt;}
.h13_c01084{height:11.038802pt;}
.hd_c01084{height:13.822500pt;}
.h12_c01084{height:16.606198pt;}
.h11_c01084{height:19.341901pt;}
.h4_c01084{height:24.861302pt;}
.h8_c01084{height:27.645000pt;}
.ha_c01084{height:30.428698pt;}
.he_c01084{height:44.251198pt;}
.h6_c01084{height:46.986901pt;}
.hf_c01084{height:49.770599pt;}
.h7_c01084{height:55.290000pt;}
.hb_c01084{height:60.809401pt;}
.h2_c01084{height:63.593099pt;}
.h9_c01084{height:77.415599pt;}
.h5_c01084{height:82.935000pt;}
.h1_c01084{height:1350.000000pt;}
.h0_c01084{height:1350.146667pt;}
.w1_c01084{width:955.333333pt;}
.w0_c01084{width:955.386667pt;}
.x0_c01084{left:0.000000pt;}
.x5_c01084{left:187.386667pt;}
.xc_c01084{left:216.573333pt;}
.x14_c01084{left:242.693333pt;}
.x6_c01084{left:254.973333pt;}
.x7_c01084{left:275.706667pt;}
.xd_c01084{left:278.013333pt;}
.xe_c01084{left:306.426667pt;}
.x8_c01084{left:312.573333pt;}
.x9_c01084{left:324.866667pt;}
.x15_c01084{left:328.706667pt;}
.x1_c01084{left:345.600000pt;}
.xf_c01084{left:360.186667pt;}
.xa_c01084{left:376.320000pt;}
.xb_c01084{left:400.893333pt;}
.x10_c01084{left:414.720000pt;}
.x2_c01084{left:426.240000pt;}
.x11_c01084{left:428.546667pt;}
.x3_c01084{left:441.600000pt;}
.x4_c01084{left:446.973333pt;}
.x12_c01084{left:887.040000pt;}
.x18_c01084{left:899.333333pt;}
.x16_c01084{left:900.866667pt;}
.x13_c01084{left:903.933333pt;}
.x17_c01084{left:907.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f0f563f3b46c3cf288623829.woff2')format("woff");}.ff1_c01085{font-family:ff1_c01085;line-height:1.109863;font-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_c01085{transform:matrix(0.036775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036775,0.000000,0.000000,0.250000,0,0);}
.m1_c01085{transform:matrix(0.046300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046300,0.000000,0.000000,0.250000,0,0);}
.m9_c01085{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb_c01085{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m6_c01085{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.ma_c01085{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.mc_c01085{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m8_c01085{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m7_c01085{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c01085{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);}
.m5_c01085{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);}
.md_c01085{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c01085{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m3_c01085{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,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;}
.fs7_c01085{font-size:13.800000px;}
.fs5_c01085{font-size:17.280000px;}
.fs3_c01085{font-size:20.760000px;}
.fs4_c01085{font-size:31.080000px;}
.fs2_c01085{font-size:34.560000px;}
.fs9_c01085{font-size:38.040000px;}
.fs8_c01085{font-size:41.460000px;}
.fs6_c01085{font-size:82.920000px;}
.fs1_c01085{font-size:93.300000px;}
.fs0_c01085{font-size:117.480000px;}
.y0_c01085{bottom:0.000000px;}
.ye_c01085{bottom:574.560000px;}
.yd_c01085{bottom:625.530000px;}
.yc_c01085{bottom:674.790000px;}
.yb_c01085{bottom:724.035000px;}
.ya_c01085{bottom:777.600000px;}
.y9_c01085{bottom:801.795000px;}
.y8_c01085{bottom:806.115000px;}
.y7_c01085{bottom:812.160000px;}
.y5_c01085{bottom:848.445000px;}
.y6_c01085{bottom:854.490000px;}
.y4_c01085{bottom:883.005000px;}
.y3_c01085{bottom:927.930000px;}
.y2_c01085{bottom:937.440000px;}
.y1_c01085{bottom:956.445000px;}
.h9_c01085{height:12.418652px;}
.h7_c01085{height:15.550313px;}
.h5_c01085{height:18.681973px;}
.h6_c01085{height:27.968965px;}
.h4_c01085{height:31.100625px;}
.hb_c01085{height:34.232285px;}
.ha_c01085{height:37.309951px;}
.h8_c01085{height:74.619902px;}
.h3_c01085{height:83.960889px;}
.h2_c01085{height:105.720527px;}
.h1_c01085{height:1503.000000px;}
.h0_c01085{height:1503.360000px;}
.w1_c01085{width:1098.000000px;}
.w0_c01085{width:1098.150000px;}
.x0_c01085{left:0.000000px;}
.x2_c01085{left:97.635000px;}
.x1_c01085{left:157.245000px;}
.x3_c01085{left:163.290000px;}
@media print{
.v0_c01085{vertical-align:0.000000pt;}
.ls0_c01085{letter-spacing:0.000000pt;}
.ws0_c01085{word-spacing:0.000000pt;}
.fs7_c01085{font-size:12.266667pt;}
.fs5_c01085{font-size:15.360000pt;}
.fs3_c01085{font-size:18.453333pt;}
.fs4_c01085{font-size:27.626667pt;}
.fs2_c01085{font-size:30.720000pt;}
.fs9_c01085{font-size:33.813333pt;}
.fs8_c01085{font-size:36.853333pt;}
.fs6_c01085{font-size:73.706667pt;}
.fs1_c01085{font-size:82.933333pt;}
.fs0_c01085{font-size:104.426667pt;}
.y0_c01085{bottom:0.000000pt;}
.ye_c01085{bottom:510.720000pt;}
.yd_c01085{bottom:556.026667pt;}
.yc_c01085{bottom:599.813333pt;}
.yb_c01085{bottom:643.586667pt;}
.ya_c01085{bottom:691.200000pt;}
.y9_c01085{bottom:712.706667pt;}
.y8_c01085{bottom:716.546667pt;}
.y7_c01085{bottom:721.920000pt;}
.y5_c01085{bottom:754.173333pt;}
.y6_c01085{bottom:759.546667pt;}
.y4_c01085{bottom:784.893333pt;}
.y3_c01085{bottom:824.826667pt;}
.y2_c01085{bottom:833.280000pt;}
.y1_c01085{bottom:850.173333pt;}
.h9_c01085{height:11.038802pt;}
.h7_c01085{height:13.822500pt;}
.h5_c01085{height:16.606198pt;}
.h6_c01085{height:24.861302pt;}
.h4_c01085{height:27.645000pt;}
.hb_c01085{height:30.428698pt;}
.ha_c01085{height:33.164401pt;}
.h8_c01085{height:66.328802pt;}
.h3_c01085{height:74.631901pt;}
.h2_c01085{height:93.973802pt;}
.h1_c01085{height:1336.000000pt;}
.h0_c01085{height:1336.320000pt;}
.w1_c01085{width:976.000000pt;}
.w0_c01085{width:976.133333pt;}
.x0_c01085{left:0.000000pt;}
.x2_c01085{left:86.786667pt;}
.x1_c01085{left:139.773333pt;}
.x3_c01085{left:145.146667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_89bdb38ed7fda83048e21c2d.woff2')format("woff");}.ff1_c01086{font-family:ff1_c01086;line-height:1.109863;font-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.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);}
.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;}
.fs0_c01086{font-size:600.000000px;}
.y0_c01086{bottom:0.000000px;}
.y1_c01086{bottom:15.000000px;}
.h2_c01086{height:539.941406px;}
.h1_c01086{height:1518.750000px;}
.h0_c01086{height:1518.915000px;}
.w1_c01086{width:1074.750000px;}
.w0_c01086{width:1074.810000px;}
.x0_c01086{left:0.000000px;}
.x1_c01086{left:15.000000px;}
@media print{
.v0_c01086{vertical-align:0.000000pt;}
.ls0_c01086{letter-spacing:0.000000pt;}
.ws0_c01086{word-spacing:0.000000pt;}
.fs0_c01086{font-size:533.333333pt;}
.y0_c01086{bottom:0.000000pt;}
.y1_c01086{bottom:13.333333pt;}
.h2_c01086{height:479.947917pt;}
.h1_c01086{height:1350.000000pt;}
.h0_c01086{height:1350.146667pt;}
.w1_c01086{width:955.333333pt;}
.w0_c01086{width:955.386667pt;}
.x0_c01086{left:0.000000pt;}
.x1_c01086{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea6f7f38b7e1d020616609f6.woff2')format("woff");}.ff1_c01087{font-family:ff1_c01087;line-height:1.109863;font-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_c01087{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m16_c01087{transform:matrix(0.043675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043675,0.000000,0.000000,0.250000,0,0);}
.m18_c01087{transform:matrix(0.045650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045650,0.000000,0.000000,0.250000,0,0);}
.m1e_c01087{transform:matrix(0.058000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058000,0.000000,0.000000,0.250000,0,0);}
.m25_c01087{transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);}
.m11_c01087{transform:matrix(0.085125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085125,0.000000,0.000000,0.250000,0,0);}
.mc_c01087{transform:matrix(0.117100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117100,0.000000,0.000000,0.250000,0,0);}
.ma_c01087{transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);}
.m24_c01087{transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);}
.m10_c01087{transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);}
.m6_c01087{transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);}
.m1a_c01087{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m23_c01087{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m13_c01087{transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149450,0.000000,0.000000,0.250000,0,0);}
.m7_c01087{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);}
.mb_c01087{transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);}
.m1f_c01087{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);}
.m19_c01087{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m22_c01087{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);}
.m15_c01087{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);}
.m9_c01087{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);}
.m17_c01087{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);}
.m1c_c01087{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);}
.m2_c01087{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);}
.m20_c01087{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c01087{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);}
.me_c01087{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01087{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01087{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);}
.m8_c01087{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m5_c01087{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01087{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);}
.m14_c01087{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mf_c01087{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3_c01087{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);}
.md_c01087{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m12_c01087{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m0_c01087{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,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;}
.fs4_c01087{font-size:6.000000px;}
.fs12_c01087{font-size:6.900000px;}
.fs13_c01087{font-size:10.380000px;}
.fs3_c01087{font-size:13.800000px;}
.fs0_c01087{font-size:17.280000px;}
.fs5_c01087{font-size:20.760000px;}
.fsd_c01087{font-size:24.180000px;}
.fs7_c01087{font-size:27.660000px;}
.fs2_c01087{font-size:31.080000px;}
.fs1_c01087{font-size:34.560000px;}
.fs9_c01087{font-size:38.040000px;}
.fse_c01087{font-size:44.940000px;}
.fs6_c01087{font-size:48.360000px;}
.fsf_c01087{font-size:58.740000px;}
.fsb_c01087{font-size:76.020000px;}
.fsc_c01087{font-size:79.500000px;}
.fs11_c01087{font-size:82.920000px;}
.fs16_c01087{font-size:93.300000px;}
.fsa_c01087{font-size:96.780000px;}
.fs10_c01087{font-size:107.160000px;}
.fs15_c01087{font-size:120.960000px;}
.fs14_c01087{font-size:127.860000px;}
.fs17_c01087{font-size:179.700000px;}
.fs8_c01087{font-size:200.460000px;}
.y0_c01087{bottom:0.000000px;}
.y2c_c01087{bottom:467.430000px;}
.y2a_c01087{bottom:521.850000px;}
.y2b_c01087{bottom:530.490000px;}
.y29_c01087{bottom:761.190000px;}
.y28_c01087{bottom:762.045000px;}
.y27_c01087{bottom:823.395000px;}
.y26_c01087{bottom:833.760000px;}
.y25_c01087{bottom:851.910000px;}
.y24_c01087{bottom:879.555000px;}
.y22_c01087{bottom:902.880000px;}
.y23_c01087{bottom:921.030000px;}
.y21_c01087{bottom:935.715000px;}
.y20_c01087{bottom:952.995000px;}
.y1f_c01087{bottom:958.170000px;}
.y1e_c01087{bottom:967.680000px;}
.y1c_c01087{bottom:973.725000px;}
.y1d_c01087{bottom:984.090000px;}
.y1a_c01087{bottom:991.875000px;}
.y1b_c01087{bottom:993.600000px;}
.y18_c01087{bottom:998.790000px;}
.y19_c01087{bottom:1003.965000px;}
.y17_c01087{bottom:1006.560000px;}
.y16_c01087{bottom:1021.245000px;}
.y15_c01087{bottom:1030.755000px;}
.y14_c01087{bottom:1035.930000px;}
.y12_c01087{bottom:1046.310000px;}
.y13_c01087{bottom:1056.675000px;}
.y11_c01087{bottom:1065.315000px;}
.y10_c01087{bottom:1086.045000px;}
.yf_c01087{bottom:1119.750000px;}
.yd_c01087{bottom:1160.355000px;}
.ye_c01087{bottom:1179.360000px;}
.yb_c01087{bottom:1185.405000px;}
.yc_c01087{bottom:1226.880000px;}
.ya_c01087{bottom:1236.390000px;}
.y8_c01087{bottom:1251.930000px;}
.y9_c01087{bottom:1252.800000px;}
.y7_c01087{bottom:1273.530000px;}
.y6_c01087{bottom:1305.510000px;}
.y4_c01087{bottom:1330.560000px;}
.y5_c01087{bottom:1332.285000px;}
.y3_c01087{bottom:1352.160000px;}
.y2_c01087{bottom:1399.680000px;}
.y1_c01087{bottom:1410.915000px;}
.h6_c01087{height:5.399414px;}
.h14_c01087{height:6.209326px;}
.h15_c01087{height:9.340986px;}
.h5_c01087{height:12.418652px;}
.h2_c01087{height:15.550313px;}
.h7_c01087{height:18.681973px;}
.hf_c01087{height:21.759639px;}
.h9_c01087{height:24.891299px;}
.h4_c01087{height:27.968965px;}
.h3_c01087{height:31.100625px;}
.hb_c01087{height:34.232285px;}
.h10_c01087{height:40.441611px;}
.h8_c01087{height:43.519277px;}
.h11_c01087{height:52.860264px;}
.hd_c01087{height:68.410576px;}
.he_c01087{height:71.542236px;}
.h13_c01087{height:74.619902px;}
.h18_c01087{height:83.960889px;}
.hc_c01087{height:87.092549px;}
.h12_c01087{height:96.433535px;}
.h17_c01087{height:108.852188px;}
.h16_c01087{height:115.061514px;}
.h19_c01087{height:161.712451px;}
.ha_c01087{height:180.394424px;}
.h1_c01087{height:1503.000000px;}
.h0_c01087{height:1503.360000px;}
.w1_c01087{width:1098.000000px;}
.w0_c01087{width:1098.150000px;}
.x0_c01087{left:0.000000px;}
.xd_c01087{left:2.595000px;}
.x10_c01087{left:4.320000px;}
.xc_c01087{left:10.365000px;}
.xe_c01087{left:12.090000px;}
.x3_c01087{left:14.685000px;}
.x5_c01087{left:25.920000px;}
.x7_c01087{left:39.750000px;}
.x4_c01087{left:43.200000px;}
.x11_c01087{left:45.795000px;}
.x8_c01087{left:53.565000px;}
.x6_c01087{left:57.030000px;}
.x1_c01087{left:68.250000px;}
.xb_c01087{left:92.445000px;}
.xa_c01087{left:113.190000px;}
.x9_c01087{left:123.555000px;}
.xf_c01087{left:209.085000px;}
.x2_c01087{left:212.550000px;}
@media print{
.v0_c01087{vertical-align:0.000000pt;}
.ls0_c01087{letter-spacing:0.000000pt;}
.ws0_c01087{word-spacing:0.000000pt;}
.fs4_c01087{font-size:5.333333pt;}
.fs12_c01087{font-size:6.133333pt;}
.fs13_c01087{font-size:9.226667pt;}
.fs3_c01087{font-size:12.266667pt;}
.fs0_c01087{font-size:15.360000pt;}
.fs5_c01087{font-size:18.453333pt;}
.fsd_c01087{font-size:21.493333pt;}
.fs7_c01087{font-size:24.586667pt;}
.fs2_c01087{font-size:27.626667pt;}
.fs1_c01087{font-size:30.720000pt;}
.fs9_c01087{font-size:33.813333pt;}
.fse_c01087{font-size:39.946667pt;}
.fs6_c01087{font-size:42.986667pt;}
.fsf_c01087{font-size:52.213333pt;}
.fsb_c01087{font-size:67.573333pt;}
.fsc_c01087{font-size:70.666667pt;}
.fs11_c01087{font-size:73.706667pt;}
.fs16_c01087{font-size:82.933333pt;}
.fsa_c01087{font-size:86.026667pt;}
.fs10_c01087{font-size:95.253333pt;}
.fs15_c01087{font-size:107.520000pt;}
.fs14_c01087{font-size:113.653333pt;}
.fs17_c01087{font-size:159.733333pt;}
.fs8_c01087{font-size:178.186667pt;}
.y0_c01087{bottom:0.000000pt;}
.y2c_c01087{bottom:415.493333pt;}
.y2a_c01087{bottom:463.866667pt;}
.y2b_c01087{bottom:471.546667pt;}
.y29_c01087{bottom:676.613333pt;}
.y28_c01087{bottom:677.373333pt;}
.y27_c01087{bottom:731.906667pt;}
.y26_c01087{bottom:741.120000pt;}
.y25_c01087{bottom:757.253333pt;}
.y24_c01087{bottom:781.826667pt;}
.y22_c01087{bottom:802.560000pt;}
.y23_c01087{bottom:818.693333pt;}
.y21_c01087{bottom:831.746667pt;}
.y20_c01087{bottom:847.106667pt;}
.y1f_c01087{bottom:851.706667pt;}
.y1e_c01087{bottom:860.160000pt;}
.y1c_c01087{bottom:865.533333pt;}
.y1d_c01087{bottom:874.746667pt;}
.y1a_c01087{bottom:881.666667pt;}
.y1b_c01087{bottom:883.200000pt;}
.y18_c01087{bottom:887.813333pt;}
.y19_c01087{bottom:892.413333pt;}
.y17_c01087{bottom:894.720000pt;}
.y16_c01087{bottom:907.773333pt;}
.y15_c01087{bottom:916.226667pt;}
.y14_c01087{bottom:920.826667pt;}
.y12_c01087{bottom:930.053333pt;}
.y13_c01087{bottom:939.266667pt;}
.y11_c01087{bottom:946.946667pt;}
.y10_c01087{bottom:965.373333pt;}
.yf_c01087{bottom:995.333333pt;}
.yd_c01087{bottom:1031.426667pt;}
.ye_c01087{bottom:1048.320000pt;}
.yb_c01087{bottom:1053.693333pt;}
.yc_c01087{bottom:1090.560000pt;}
.ya_c01087{bottom:1099.013333pt;}
.y8_c01087{bottom:1112.826667pt;}
.y9_c01087{bottom:1113.600000pt;}
.y7_c01087{bottom:1132.026667pt;}
.y6_c01087{bottom:1160.453333pt;}
.y4_c01087{bottom:1182.720000pt;}
.y5_c01087{bottom:1184.253333pt;}
.y3_c01087{bottom:1201.920000pt;}
.y2_c01087{bottom:1244.160000pt;}
.y1_c01087{bottom:1254.146667pt;}
.h6_c01087{height:4.799479pt;}
.h14_c01087{height:5.519401pt;}
.h15_c01087{height:8.303099pt;}
.h5_c01087{height:11.038802pt;}
.h2_c01087{height:13.822500pt;}
.h7_c01087{height:16.606198pt;}
.hf_c01087{height:19.341901pt;}
.h9_c01087{height:22.125599pt;}
.h4_c01087{height:24.861302pt;}
.h3_c01087{height:27.645000pt;}
.hb_c01087{height:30.428698pt;}
.h10_c01087{height:35.948099pt;}
.h8_c01087{height:38.683802pt;}
.h11_c01087{height:46.986901pt;}
.hd_c01087{height:60.809401pt;}
.he_c01087{height:63.593099pt;}
.h13_c01087{height:66.328802pt;}
.h18_c01087{height:74.631901pt;}
.hc_c01087{height:77.415599pt;}
.h12_c01087{height:85.718698pt;}
.h17_c01087{height:96.757500pt;}
.h16_c01087{height:102.276901pt;}
.h19_c01087{height:143.744401pt;}
.ha_c01087{height:160.350599pt;}
.h1_c01087{height:1336.000000pt;}
.h0_c01087{height:1336.320000pt;}
.w1_c01087{width:976.000000pt;}
.w0_c01087{width:976.133333pt;}
.x0_c01087{left:0.000000pt;}
.xd_c01087{left:2.306667pt;}
.x10_c01087{left:3.840000pt;}
.xc_c01087{left:9.213333pt;}
.xe_c01087{left:10.746667pt;}
.x3_c01087{left:13.053333pt;}
.x5_c01087{left:23.040000pt;}
.x7_c01087{left:35.333333pt;}
.x4_c01087{left:38.400000pt;}
.x11_c01087{left:40.706667pt;}
.x8_c01087{left:47.613333pt;}
.x6_c01087{left:50.693333pt;}
.x1_c01087{left:60.666667pt;}
.xb_c01087{left:82.173333pt;}
.xa_c01087{left:100.613333pt;}
.x9_c01087{left:109.826667pt;}
.xf_c01087{left:185.853333pt;}
.x2_c01087{left:188.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_22838efbaea111d03457f216.woff2')format("woff");}.ff1_c01088{font-family:ff1_c01088;line-height:1.109863;font-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_c01088{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);}
.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;}
.fs0_c01088{font-size:600.000000px;}
.y0_c01088{bottom:0.000000px;}
.y1_c01088{bottom:15.000000px;}
.h2_c01088{height:539.941406px;}
.h1_c01088{height:1518.750000px;}
.h0_c01088{height:1518.915000px;}
.w1_c01088{width:1074.750000px;}
.w0_c01088{width:1074.810000px;}
.x0_c01088{left:0.000000px;}
.x1_c01088{left:15.000000px;}
@media print{
.v0_c01088{vertical-align:0.000000pt;}
.ls0_c01088{letter-spacing:0.000000pt;}
.ws0_c01088{word-spacing:0.000000pt;}
.fs0_c01088{font-size:533.333333pt;}
.y0_c01088{bottom:0.000000pt;}
.y1_c01088{bottom:13.333333pt;}
.h2_c01088{height:479.947917pt;}
.h1_c01088{height:1350.000000pt;}
.h0_c01088{height:1350.146667pt;}
.w1_c01088{width:955.333333pt;}
.w0_c01088{width:955.386667pt;}
.x0_c01088{left:0.000000pt;}
.x1_c01088{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ffe34e7eabb2ed12c05c61e8.woff2')format("woff");}.ff1_c01089{font-family:ff1_c01089;line-height:1.109863;font-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_c01089{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m9_c01089{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c01089{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);}
.m7_c01089{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c01089{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);}
.m5_c01089{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c01089{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);}
.m4_c01089{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c01089{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mb_c01089{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m0_c01089{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m1_c01089{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m3_c01089{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,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;}
.fs6_c01089{font-size:6.000000px;}
.fs3_c01089{font-size:6.900000px;}
.fs2_c01089{font-size:10.380000px;}
.fs4_c01089{font-size:13.800000px;}
.fs1_c01089{font-size:17.280000px;}
.fs0_c01089{font-size:20.760000px;}
.fs5_c01089{font-size:27.660000px;}
.fs7_c01089{font-size:31.080000px;}
.fs8_c01089{font-size:34.560000px;}
.fs9_c01089{font-size:44.940000px;}
.y0_c01089{bottom:0.000000px;}
.yc_c01089{bottom:366.330000px;}
.yb_c01089{bottom:376.710000px;}
.y9_c01089{bottom:499.395000px;}
.y8_c01089{bottom:508.035000px;}
.y7_c01089{bottom:549.510000px;}
.y5_c01089{bottom:551.235000px;}
.y6_c01089{bottom:553.830000px;}
.y4_c01089{bottom:563.325000px;}
.y3_c01089{bottom:564.195000px;}
.y1_c01089{bottom:682.560000px;}
.y2_c01089{bottom:684.285000px;}
.ya_c01089{bottom:1032.480000px;}
.h8_c01089{height:5.399414px;}
.h5_c01089{height:6.209326px;}
.h4_c01089{height:9.340986px;}
.h6_c01089{height:12.418652px;}
.h3_c01089{height:15.550313px;}
.h2_c01089{height:18.681973px;}
.h7_c01089{height:24.891299px;}
.h9_c01089{height:27.968965px;}
.ha_c01089{height:31.100625px;}
.hb_c01089{height:40.441611px;}
.h1_c01089{height:1503.000000px;}
.h0_c01089{height:1503.360000px;}
.w1_c01089{width:1098.000000px;}
.w0_c01089{width:1098.150000px;}
.x0_c01089{left:0.000000px;}
.x7_c01089{left:9.510000px;}
.x5_c01089{left:11.235000px;}
.x6_c01089{left:19.875000px;}
.x3_c01089{left:25.920000px;}
.x4_c01089{left:29.370000px;}
.x1_c01089{left:171.075000px;}
.x8_c01089{left:177.990000px;}
.x9_c01089{left:187.485000px;}
.x2_c01089{left:197.850000px;}
.xa_c01089{left:204.765000px;}
@media print{
.v0_c01089{vertical-align:0.000000pt;}
.ls0_c01089{letter-spacing:0.000000pt;}
.ws0_c01089{word-spacing:0.000000pt;}
.fs6_c01089{font-size:5.333333pt;}
.fs3_c01089{font-size:6.133333pt;}
.fs2_c01089{font-size:9.226667pt;}
.fs4_c01089{font-size:12.266667pt;}
.fs1_c01089{font-size:15.360000pt;}
.fs0_c01089{font-size:18.453333pt;}
.fs5_c01089{font-size:24.586667pt;}
.fs7_c01089{font-size:27.626667pt;}
.fs8_c01089{font-size:30.720000pt;}
.fs9_c01089{font-size:39.946667pt;}
.y0_c01089{bottom:0.000000pt;}
.yc_c01089{bottom:325.626667pt;}
.yb_c01089{bottom:334.853333pt;}
.y9_c01089{bottom:443.906667pt;}
.y8_c01089{bottom:451.586667pt;}
.y7_c01089{bottom:488.453333pt;}
.y5_c01089{bottom:489.986667pt;}
.y6_c01089{bottom:492.293333pt;}
.y4_c01089{bottom:500.733333pt;}
.y3_c01089{bottom:501.506667pt;}
.y1_c01089{bottom:606.720000pt;}
.y2_c01089{bottom:608.253333pt;}
.ya_c01089{bottom:917.760000pt;}
.h8_c01089{height:4.799479pt;}
.h5_c01089{height:5.519401pt;}
.h4_c01089{height:8.303099pt;}
.h6_c01089{height:11.038802pt;}
.h3_c01089{height:13.822500pt;}
.h2_c01089{height:16.606198pt;}
.h7_c01089{height:22.125599pt;}
.h9_c01089{height:24.861302pt;}
.ha_c01089{height:27.645000pt;}
.hb_c01089{height:35.948099pt;}
.h1_c01089{height:1336.000000pt;}
.h0_c01089{height:1336.320000pt;}
.w1_c01089{width:976.000000pt;}
.w0_c01089{width:976.133333pt;}
.x0_c01089{left:0.000000pt;}
.x7_c01089{left:8.453333pt;}
.x5_c01089{left:9.986667pt;}
.x6_c01089{left:17.666667pt;}
.x3_c01089{left:23.040000pt;}
.x4_c01089{left:26.106667pt;}
.x1_c01089{left:152.066667pt;}
.x8_c01089{left:158.213333pt;}
.x9_c01089{left:166.653333pt;}
.x2_c01089{left:175.866667pt;}
.xa_c01089{left:182.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_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_d83f51006d8413410ce415e6.woff2')format("woff");}.ff1_c01090{font-family:ff1_c01090;line-height:1.109863;font-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_c01090{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma_c01090{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.m7_c01090{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);}
.m9_c01090{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);}
.m8_c01090{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);}
.m5_c01090{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m6_c01090{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);}
.m2_c01090{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);}
.me_c01090{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);}
.md_c01090{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01090{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);}
.mb_c01090{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10_c01090{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);}
.mf_c01090{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);}
.m15_c01090{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m12_c01090{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);}
.m11_c01090{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);}
.m4_c01090{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m14_c01090{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m13_c01090{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.m0_c01090{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.mc_c01090{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,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:3.456000px;}
.fsd_c01090{font-size:6.900000px;}
.fsc_c01090{font-size:10.380000px;}
.fs2_c01090{font-size:17.280000px;}
.fs0_c01090{font-size:24.180000px;}
.fs9_c01090{font-size:34.560000px;}
.fsa_c01090{font-size:51.840000px;}
.fs3_c01090{font-size:55.320000px;}
.fsb_c01090{font-size:65.640000px;}
.fs5_c01090{font-size:72.600000px;}
.fs8_c01090{font-size:82.920000px;}
.fs4_c01090{font-size:86.400000px;}
.fs6_c01090{font-size:89.880000px;}
.fs7_c01090{font-size:96.780000px;}
.y0_c01090{bottom:0.000000px;}
.y14_c01090{bottom:521.850000px;}
.y13_c01090{bottom:524.445000px;}
.y12_c01090{bottom:666.150000px;}
.y11_c01090{bottom:667.005000px;}
.y10_c01090{bottom:668.730000px;}
.ye_c01090{bottom:669.600000px;}
.yf_c01090{bottom:670.470000px;}
.y2_c01090{bottom:691.200000px;}
.y1_c01090{bottom:692.070000px;}
.yc_c01090{bottom:698.970000px;}
.yb_c01090{bottom:699.840000px;}
.yd_c01090{bottom:704.160000px;}
.y8_c01090{bottom:705.885000px;}
.y9_c01090{bottom:706.755000px;}
.y5_c01090{bottom:708.480000px;}
.ya_c01090{bottom:711.930000px;}
.y7_c01090{bottom:713.670000px;}
.y6_c01090{bottom:715.395000px;}
.y4_c01090{bottom:722.310000px;}
.y3_c01090{bottom:736.995000px;}
.h3_c01090{height:3.110063px;}
.hf_c01090{height:6.209326px;}
.he_c01090{height:9.340986px;}
.h4_c01090{height:15.550313px;}
.h2_c01090{height:21.759639px;}
.hb_c01090{height:31.100625px;}
.hc_c01090{height:46.650937px;}
.h5_c01090{height:49.782598px;}
.hd_c01090{height:59.069590px;}
.h7_c01090{height:65.332910px;}
.ha_c01090{height:74.619902px;}
.h6_c01090{height:77.751563px;}
.h8_c01090{height:80.883223px;}
.h9_c01090{height:87.092549px;}
.h1_c01090{height:1518.750000px;}
.h0_c01090{height:1518.915000px;}
.w1_c01090{width:1074.750000px;}
.w0_c01090{width:1074.810000px;}
.x0_c01090{left:0.000000px;}
.xc_c01090{left:194.400000px;}
.x4_c01090{left:200.445000px;}
.x5_c01090{left:218.595000px;}
.x6_c01090{left:229.830000px;}
.x7_c01090{left:254.010000px;}
.xf_c01090{left:268.710000px;}
.xd_c01090{left:273.885000px;}
.x3_c01090{left:298.080000px;}
.x8_c01090{left:306.720000px;}
.x9_c01090{left:341.280000px;}
.x10_c01090{left:374.970000px;}
.xa_c01090{left:382.755000px;}
.x11_c01090{left:397.440000px;}
.xe_c01090{left:415.590000px;}
.xb_c01090{left:440.640000px;}
.x1_c01090{left:540.000000px;}
.x2_c01090{left:564.195000px;}
.x12_c01090{left:615.165000px;}
.x13_c01090{left:636.765000px;}
.x14_c01090{left:659.235000px;}
.x15_c01090{left:676.515000px;}
.x16_c01090{left:702.435000px;}
.x17_c01090{left:1002.240000px;}
.x18_c01090{left:1013.475000px;}
@media print{
.v0_c01090{vertical-align:0.000000pt;}
.ls0_c01090{letter-spacing:0.000000pt;}
.ws0_c01090{word-spacing:0.000000pt;}
.fs1_c01090{font-size:3.072000pt;}
.fsd_c01090{font-size:6.133333pt;}
.fsc_c01090{font-size:9.226667pt;}
.fs2_c01090{font-size:15.360000pt;}
.fs0_c01090{font-size:21.493333pt;}
.fs9_c01090{font-size:30.720000pt;}
.fsa_c01090{font-size:46.080000pt;}
.fs3_c01090{font-size:49.173333pt;}
.fsb_c01090{font-size:58.346667pt;}
.fs5_c01090{font-size:64.533333pt;}
.fs8_c01090{font-size:73.706667pt;}
.fs4_c01090{font-size:76.800000pt;}
.fs6_c01090{font-size:79.893333pt;}
.fs7_c01090{font-size:86.026667pt;}
.y0_c01090{bottom:0.000000pt;}
.y14_c01090{bottom:463.866667pt;}
.y13_c01090{bottom:466.173333pt;}
.y12_c01090{bottom:592.133333pt;}
.y11_c01090{bottom:592.893333pt;}
.y10_c01090{bottom:594.426667pt;}
.ye_c01090{bottom:595.200000pt;}
.yf_c01090{bottom:595.973333pt;}
.y2_c01090{bottom:614.400000pt;}
.y1_c01090{bottom:615.173333pt;}
.yc_c01090{bottom:621.306667pt;}
.yb_c01090{bottom:622.080000pt;}
.yd_c01090{bottom:625.920000pt;}
.y8_c01090{bottom:627.453333pt;}
.y9_c01090{bottom:628.226667pt;}
.y5_c01090{bottom:629.760000pt;}
.ya_c01090{bottom:632.826667pt;}
.y7_c01090{bottom:634.373333pt;}
.y6_c01090{bottom:635.906667pt;}
.y4_c01090{bottom:642.053333pt;}
.y3_c01090{bottom:655.106667pt;}
.h3_c01090{height:2.764500pt;}
.hf_c01090{height:5.519401pt;}
.he_c01090{height:8.303099pt;}
.h4_c01090{height:13.822500pt;}
.h2_c01090{height:19.341901pt;}
.hb_c01090{height:27.645000pt;}
.hc_c01090{height:41.467500pt;}
.h5_c01090{height:44.251198pt;}
.hd_c01090{height:52.506302pt;}
.h7_c01090{height:58.073698pt;}
.ha_c01090{height:66.328802pt;}
.h6_c01090{height:69.112500pt;}
.h8_c01090{height:71.896198pt;}
.h9_c01090{height:77.415599pt;}
.h1_c01090{height:1350.000000pt;}
.h0_c01090{height:1350.146667pt;}
.w1_c01090{width:955.333333pt;}
.w0_c01090{width:955.386667pt;}
.x0_c01090{left:0.000000pt;}
.xc_c01090{left:172.800000pt;}
.x4_c01090{left:178.173333pt;}
.x5_c01090{left:194.306667pt;}
.x6_c01090{left:204.293333pt;}
.x7_c01090{left:225.786667pt;}
.xf_c01090{left:238.853333pt;}
.xd_c01090{left:243.453333pt;}
.x3_c01090{left:264.960000pt;}
.x8_c01090{left:272.640000pt;}
.x9_c01090{left:303.360000pt;}
.x10_c01090{left:333.306667pt;}
.xa_c01090{left:340.226667pt;}
.x11_c01090{left:353.280000pt;}
.xe_c01090{left:369.413333pt;}
.xb_c01090{left:391.680000pt;}
.x1_c01090{left:480.000000pt;}
.x2_c01090{left:501.506667pt;}
.x12_c01090{left:546.813333pt;}
.x13_c01090{left:566.013333pt;}
.x14_c01090{left:585.986667pt;}
.x15_c01090{left:601.346667pt;}
.x16_c01090{left:624.386667pt;}
.x17_c01090{left:890.880000pt;}
.x18_c01090{left:900.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_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_8fba073ed3c53d38dd84e908.woff2')format("woff");}.ff1_c01091{font-family:ff1_c01091;line-height:1.109863;font-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_c01091{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);}
.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;}
.fs0_c01091{font-size:600.000000px;}
.y0_c01091{bottom:0.000000px;}
.y1_c01091{bottom:15.000000px;}
.h2_c01091{height:539.941406px;}
.h1_c01091{height:1503.000000px;}
.h0_c01091{height:1503.360000px;}
.w1_c01091{width:1098.000000px;}
.w0_c01091{width:1098.150000px;}
.x0_c01091{left:0.000000px;}
.x1_c01091{left:15.000000px;}
@media print{
.v0_c01091{vertical-align:0.000000pt;}
.ls0_c01091{letter-spacing:0.000000pt;}
.ws0_c01091{word-spacing:0.000000pt;}
.fs0_c01091{font-size:533.333333pt;}
.y0_c01091{bottom:0.000000pt;}
.y1_c01091{bottom:13.333333pt;}
.h2_c01091{height:479.947917pt;}
.h1_c01091{height:1336.000000pt;}
.h0_c01091{height:1336.320000pt;}
.w1_c01091{width:976.000000pt;}
.w0_c01091{width:976.133333pt;}
.x0_c01091{left:0.000000pt;}
.x1_c01091{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93fb7dcb6fdecbf74f8fe517.woff2')format("woff");}.ff1_c01092{font-family:ff1_c01092;line-height:1.109863;font-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_c01092{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);}
.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:600.000000px;}
.y0_c01092{bottom:0.000000px;}
.y1_c01092{bottom:15.000000px;}
.h2_c01092{height:539.941406px;}
.h1_c01092{height:1518.750000px;}
.h0_c01092{height:1518.915000px;}
.w1_c01092{width:1074.750000px;}
.w0_c01092{width:1074.810000px;}
.x0_c01092{left:0.000000px;}
.x1_c01092{left:15.000000px;}
@media print{
.v0_c01092{vertical-align:0.000000pt;}
.ls0_c01092{letter-spacing:0.000000pt;}
.ws0_c01092{word-spacing:0.000000pt;}
.fs0_c01092{font-size:533.333333pt;}
.y0_c01092{bottom:0.000000pt;}
.y1_c01092{bottom:13.333333pt;}
.h2_c01092{height:479.947917pt;}
.h1_c01092{height:1350.000000pt;}
.h0_c01092{height:1350.146667pt;}
.w1_c01092{width:955.333333pt;}
.w0_c01092{width:955.386667pt;}
.x0_c01092{left:0.000000pt;}
.x1_c01092{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_181a6faadfbe620a76aaf9fc.woff2')format("woff");}.ff1_c01093{font-family:ff1_c01093;line-height:1.109863;font-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_c01093{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);}
.v0_c01093{vertical-align:0.000000px;}
.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;}
.fc0_c01093{color:transparent;}
.fs0_c01093{font-size:600.000000px;}
.y0_c01093{bottom:0.000000px;}
.y1_c01093{bottom:15.000000px;}
.h2_c01093{height:539.941406px;}
.h1_c01093{height:1503.000000px;}
.h0_c01093{height:1503.360000px;}
.w1_c01093{width:1098.000000px;}
.w0_c01093{width:1098.150000px;}
.x0_c01093{left:0.000000px;}
.x1_c01093{left:15.000000px;}
@media print{
.v0_c01093{vertical-align:0.000000pt;}
.ls0_c01093{letter-spacing:0.000000pt;}
.ws0_c01093{word-spacing:0.000000pt;}
.fs0_c01093{font-size:533.333333pt;}
.y0_c01093{bottom:0.000000pt;}
.y1_c01093{bottom:13.333333pt;}
.h2_c01093{height:479.947917pt;}
.h1_c01093{height:1336.000000pt;}
.h0_c01093{height:1336.320000pt;}
.w1_c01093{width:976.000000pt;}
.w0_c01093{width:976.133333pt;}
.x0_c01093{left:0.000000pt;}
.x1_c01093{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca9844f4bbd7521ee054e78e.woff2')format("woff");}.ff1_c01094{font-family:ff1_c01094;line-height:1.109863;font-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_c01094{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);}
.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;}
.fs0_c01094{font-size:600.000000px;}
.y0_c01094{bottom:0.000000px;}
.y1_c01094{bottom:15.000000px;}
.h2_c01094{height:539.941406px;}
.h1_c01094{height:1518.750000px;}
.h0_c01094{height:1518.915000px;}
.w1_c01094{width:1074.750000px;}
.w0_c01094{width:1074.810000px;}
.x0_c01094{left:0.000000px;}
.x1_c01094{left:15.000000px;}
@media print{
.v0_c01094{vertical-align:0.000000pt;}
.ls0_c01094{letter-spacing:0.000000pt;}
.ws0_c01094{word-spacing:0.000000pt;}
.fs0_c01094{font-size:533.333333pt;}
.y0_c01094{bottom:0.000000pt;}
.y1_c01094{bottom:13.333333pt;}
.h2_c01094{height:479.947917pt;}
.h1_c01094{height:1350.000000pt;}
.h0_c01094{height:1350.146667pt;}
.w1_c01094{width:955.333333pt;}
.w0_c01094{width:955.386667pt;}
.x0_c01094{left:0.000000pt;}
.x1_c01094{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f43241bb55ecab4ab94fdfff.woff2')format("woff");}.ff1_c01095{font-family:ff1_c01095;line-height:1.109863;font-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_c01095{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01095{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.mb_c01095{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);}
.m14_c01095{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.m1_c01095{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c01095{transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);}
.m12_c01095{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m8_c01095{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);}
.m18_c01095{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.m19_c01095{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);}
.m13_c01095{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m3_c01095{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_c01095{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);}
.m15_c01095{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m10_c01095{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c01095{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c01095{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);}
.m17_c01095{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01095{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);}
.md_c01095{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);}
.me_c01095{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c01095{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);}
.m0_c01095{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);}
.mc_c01095{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m7_c01095{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);}
.m6_c01095{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mf_c01095{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m5_c01095{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,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;}
.fs8_c01095{font-size:3.456000px;}
.fs1_c01095{font-size:6.000000px;}
.fsc_c01095{font-size:6.900000px;}
.fs3_c01095{font-size:10.380000px;}
.fs11_c01095{font-size:13.800000px;}
.fs7_c01095{font-size:17.280000px;}
.fs14_c01095{font-size:20.760000px;}
.fs2_c01095{font-size:24.180000px;}
.fs10_c01095{font-size:31.080000px;}
.fs13_c01095{font-size:34.560000px;}
.fs15_c01095{font-size:44.940000px;}
.fse_c01095{font-size:51.840000px;}
.fs5_c01095{font-size:58.740000px;}
.fs0_c01095{font-size:62.220000px;}
.fsd_c01095{font-size:65.640000px;}
.fs12_c01095{font-size:69.120000px;}
.fs4_c01095{font-size:72.600000px;}
.fsa_c01095{font-size:76.020000px;}
.fs6_c01095{font-size:86.400000px;}
.fsf_c01095{font-size:93.300000px;}
.fs9_c01095{font-size:120.960000px;}
.fsb_c01095{font-size:131.340000px;}
.y0_c01095{bottom:0.000000px;}
.y22_c01095{bottom:698.115000px;}
.y21_c01095{bottom:703.290000px;}
.y1f_c01095{bottom:734.400000px;}
.y20_c01095{bottom:736.995000px;}
.y1d_c01095{bottom:924.480000px;}
.y1e_c01095{bottom:936.570000px;}
.y1a_c01095{bottom:1211.325000px;}
.y1b_c01095{bottom:1213.920000px;}
.y19_c01095{bottom:1214.790000px;}
.y1c_c01095{bottom:1217.370000px;}
.y15_c01095{bottom:1219.110000px;}
.y14_c01095{bottom:1220.835000px;}
.y18_c01095{bottom:1221.690000px;}
.y16_c01095{bottom:1223.430000px;}
.y13_c01095{bottom:1225.155000px;}
.y10_c01095{bottom:1227.750000px;}
.y11_c01095{bottom:1228.605000px;}
.ye_c01095{bottom:1232.070000px;}
.yf_c01095{bottom:1232.925000px;}
.y12_c01095{bottom:1238.115000px;}
.y17_c01095{bottom:1249.350000px;}
.yd_c01095{bottom:1257.990000px;}
.yb_c01095{bottom:1267.485000px;}
.y9_c01095{bottom:1270.950000px;}
.yc_c01095{bottom:1274.400000px;}
.ya_c01095{bottom:1276.125000px;}
.y6_c01095{bottom:1357.350000px;}
.y5_c01095{bottom:1360.800000px;}
.y4_c01095{bottom:1377.210000px;}
.y3_c01095{bottom:1378.080000px;}
.y2_c01095{bottom:1382.400000px;}
.y1_c01095{bottom:1401.405000px;}
.y7_c01095{bottom:1416.960000px;}
.y8_c01095{bottom:1422.150000px;}
.ha_c01095{height:3.110063px;}
.h3_c01095{height:5.399414px;}
.he_c01095{height:6.209326px;}
.h5_c01095{height:9.340986px;}
.h13_c01095{height:12.418652px;}
.h9_c01095{height:15.550313px;}
.h16_c01095{height:18.681973px;}
.h4_c01095{height:21.759639px;}
.h12_c01095{height:27.968965px;}
.h15_c01095{height:31.100625px;}
.h17_c01095{height:40.441611px;}
.h10_c01095{height:46.650937px;}
.h7_c01095{height:52.860264px;}
.h2_c01095{height:55.991924px;}
.hf_c01095{height:59.069590px;}
.h14_c01095{height:62.201250px;}
.h6_c01095{height:65.332910px;}
.hc_c01095{height:68.410576px;}
.h8_c01095{height:77.751563px;}
.h11_c01095{height:83.960889px;}
.hb_c01095{height:108.852188px;}
.hd_c01095{height:118.193174px;}
.h0_c01095{height:1509.405000px;}
.h1_c01095{height:1509.750000px;}
.w1_c01095{width:1098.000000px;}
.w0_c01095{width:1098.150000px;}
.x0_c01095{left:0.000000px;}
.x22_c01095{left:15.555000px;}
.x23_c01095{left:25.050000px;}
.x24_c01095{left:76.035000px;}
.x25_c01095{left:89.850000px;}
.x20_c01095{left:120.960000px;}
.x21_c01095{left:133.920000px;}
.x17_c01095{left:333.510000px;}
.x11_c01095{left:336.960000px;}
.x18_c01095{left:338.685000px;}
.x12_c01095{left:358.560000px;}
.x13_c01095{left:377.565000px;}
.x14_c01095{left:399.165000px;}
.x4_c01095{left:434.595000px;}
.x15_c01095{left:446.685000px;}
.x5_c01095{left:451.875000px;}
.x16_c01095{left:461.370000px;}
.x6_c01095{left:520.995000px;}
.x2_c01095{left:530.490000px;}
.x7_c01095{left:541.725000px;}
.x3_c01095{left:573.690000px;}
.x1_c01095{left:585.795000px;}
.xb_c01095{left:659.235000px;}
.x8_c01095{left:683.430000px;}
.xc_c01095{left:730.950000px;}
.x1a_c01095{left:749.085000px;}
.xd_c01095{left:754.275000px;}
.xf_c01095{left:769.830930px;}
.x1c_c01095{left:773.280000px;}
.x10_c01095{left:780.195000px;}
.x19_c01095{left:788.835000px;}
.x1d_c01095{left:795.750000px;}
.x1e_c01095{left:803.520000px;}
.xe_c01095{left:822.525000px;}
.x1b_c01095{left:847.590000px;}
.x1f_c01095{left:849.315000px;}
.x9_c01095{left:866.595000px;}
.xa_c01095{left:876.960000px;}
@media print{
.v0_c01095{vertical-align:0.000000pt;}
.ls0_c01095{letter-spacing:0.000000pt;}
.ws0_c01095{word-spacing:0.000000pt;}
.fs8_c01095{font-size:3.072000pt;}
.fs1_c01095{font-size:5.333333pt;}
.fsc_c01095{font-size:6.133333pt;}
.fs3_c01095{font-size:9.226667pt;}
.fs11_c01095{font-size:12.266667pt;}
.fs7_c01095{font-size:15.360000pt;}
.fs14_c01095{font-size:18.453333pt;}
.fs2_c01095{font-size:21.493333pt;}
.fs10_c01095{font-size:27.626667pt;}
.fs13_c01095{font-size:30.720000pt;}
.fs15_c01095{font-size:39.946667pt;}
.fse_c01095{font-size:46.080000pt;}
.fs5_c01095{font-size:52.213333pt;}
.fs0_c01095{font-size:55.306667pt;}
.fsd_c01095{font-size:58.346667pt;}
.fs12_c01095{font-size:61.440000pt;}
.fs4_c01095{font-size:64.533333pt;}
.fsa_c01095{font-size:67.573333pt;}
.fs6_c01095{font-size:76.800000pt;}
.fsf_c01095{font-size:82.933333pt;}
.fs9_c01095{font-size:107.520000pt;}
.fsb_c01095{font-size:116.746667pt;}
.y0_c01095{bottom:0.000000pt;}
.y22_c01095{bottom:620.546667pt;}
.y21_c01095{bottom:625.146667pt;}
.y1f_c01095{bottom:652.800000pt;}
.y20_c01095{bottom:655.106667pt;}
.y1d_c01095{bottom:821.760000pt;}
.y1e_c01095{bottom:832.506667pt;}
.y1a_c01095{bottom:1076.733333pt;}
.y1b_c01095{bottom:1079.040000pt;}
.y19_c01095{bottom:1079.813333pt;}
.y1c_c01095{bottom:1082.106667pt;}
.y15_c01095{bottom:1083.653333pt;}
.y14_c01095{bottom:1085.186667pt;}
.y18_c01095{bottom:1085.946667pt;}
.y16_c01095{bottom:1087.493333pt;}
.y13_c01095{bottom:1089.026667pt;}
.y10_c01095{bottom:1091.333333pt;}
.y11_c01095{bottom:1092.093333pt;}
.ye_c01095{bottom:1095.173333pt;}
.yf_c01095{bottom:1095.933333pt;}
.y12_c01095{bottom:1100.546667pt;}
.y17_c01095{bottom:1110.533333pt;}
.yd_c01095{bottom:1118.213333pt;}
.yb_c01095{bottom:1126.653333pt;}
.y9_c01095{bottom:1129.733333pt;}
.yc_c01095{bottom:1132.800000pt;}
.ya_c01095{bottom:1134.333333pt;}
.y6_c01095{bottom:1206.533333pt;}
.y5_c01095{bottom:1209.600000pt;}
.y4_c01095{bottom:1224.186667pt;}
.y3_c01095{bottom:1224.960000pt;}
.y2_c01095{bottom:1228.800000pt;}
.y1_c01095{bottom:1245.693333pt;}
.y7_c01095{bottom:1259.520000pt;}
.y8_c01095{bottom:1264.133333pt;}
.ha_c01095{height:2.764500pt;}
.h3_c01095{height:4.799479pt;}
.he_c01095{height:5.519401pt;}
.h5_c01095{height:8.303099pt;}
.h13_c01095{height:11.038802pt;}
.h9_c01095{height:13.822500pt;}
.h16_c01095{height:16.606198pt;}
.h4_c01095{height:19.341901pt;}
.h12_c01095{height:24.861302pt;}
.h15_c01095{height:27.645000pt;}
.h17_c01095{height:35.948099pt;}
.h10_c01095{height:41.467500pt;}
.h7_c01095{height:46.986901pt;}
.h2_c01095{height:49.770599pt;}
.hf_c01095{height:52.506302pt;}
.h14_c01095{height:55.290000pt;}
.h6_c01095{height:58.073698pt;}
.hc_c01095{height:60.809401pt;}
.h8_c01095{height:69.112500pt;}
.h11_c01095{height:74.631901pt;}
.hb_c01095{height:96.757500pt;}
.hd_c01095{height:105.060599pt;}
.h0_c01095{height:1341.693333pt;}
.h1_c01095{height:1342.000000pt;}
.w1_c01095{width:976.000000pt;}
.w0_c01095{width:976.133333pt;}
.x0_c01095{left:0.000000pt;}
.x22_c01095{left:13.826667pt;}
.x23_c01095{left:22.266667pt;}
.x24_c01095{left:67.586667pt;}
.x25_c01095{left:79.866667pt;}
.x20_c01095{left:107.520000pt;}
.x21_c01095{left:119.040000pt;}
.x17_c01095{left:296.453333pt;}
.x11_c01095{left:299.520000pt;}
.x18_c01095{left:301.053333pt;}
.x12_c01095{left:318.720000pt;}
.x13_c01095{left:335.613333pt;}
.x14_c01095{left:354.813333pt;}
.x4_c01095{left:386.306667pt;}
.x15_c01095{left:397.053333pt;}
.x5_c01095{left:401.666667pt;}
.x16_c01095{left:410.106667pt;}
.x6_c01095{left:463.106667pt;}
.x2_c01095{left:471.546667pt;}
.x7_c01095{left:481.533333pt;}
.x3_c01095{left:509.946667pt;}
.x1_c01095{left:520.706667pt;}
.xb_c01095{left:585.986667pt;}
.x8_c01095{left:607.493333pt;}
.xc_c01095{left:649.733333pt;}
.x1a_c01095{left:665.853333pt;}
.xd_c01095{left:670.466667pt;}
.xf_c01095{left:684.294160pt;}
.x1c_c01095{left:687.360000pt;}
.x10_c01095{left:693.506667pt;}
.x19_c01095{left:701.186667pt;}
.x1d_c01095{left:707.333333pt;}
.x1e_c01095{left:714.240000pt;}
.xe_c01095{left:731.133333pt;}
.x1b_c01095{left:753.413333pt;}
.x1f_c01095{left:754.946667pt;}
.x9_c01095{left:770.306667pt;}
.xa_c01095{left:779.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_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_04ea0762de6e109543d8a829.woff2')format("woff");}.ff1_c01096{font-family:ff1_c01096;line-height:1.109863;font-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_c01096{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);}
.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;}
.fc0_c01096{color:transparent;}
.fs0_c01096{font-size:600.000000px;}
.y0_c01096{bottom:0.000000px;}
.y1_c01096{bottom:15.000000px;}
.h2_c01096{height:539.941406px;}
.h1_c01096{height:1518.750000px;}
.h0_c01096{height:1518.915000px;}
.w1_c01096{width:1074.750000px;}
.w0_c01096{width:1074.810000px;}
.x0_c01096{left:0.000000px;}
.x1_c01096{left:15.000000px;}
@media print{
.v0_c01096{vertical-align:0.000000pt;}
.ls0_c01096{letter-spacing:0.000000pt;}
.ws0_c01096{word-spacing:0.000000pt;}
.fs0_c01096{font-size:533.333333pt;}
.y0_c01096{bottom:0.000000pt;}
.y1_c01096{bottom:13.333333pt;}
.h2_c01096{height:479.947917pt;}
.h1_c01096{height:1350.000000pt;}
.h0_c01096{height:1350.146667pt;}
.w1_c01096{width:955.333333pt;}
.w0_c01096{width:955.386667pt;}
.x0_c01096{left:0.000000pt;}
.x1_c01096{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e20b69fa3cd9e40e97890f9e.woff2')format("woff");}.ff1_c01097{font-family:ff1_c01097;line-height:1.109863;font-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_c01097{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,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;}
.fs0_c01097{font-size:27.660000px;}
.y0_c01097{bottom:0.000000px;}
.y1_c01097{bottom:1359.075000px;}
.h2_c01097{height:24.891299px;}
.h0_c01097{height:1509.405000px;}
.h1_c01097{height:1509.750000px;}
.w1_c01097{width:1098.000000px;}
.w0_c01097{width:1098.150000px;}
.x0_c01097{left:0.000000px;}
.x1_c01097{left:13.830000px;}
@media print{
.v0_c01097{vertical-align:0.000000pt;}
.ls0_c01097{letter-spacing:0.000000pt;}
.ws0_c01097{word-spacing:0.000000pt;}
.fs0_c01097{font-size:24.586667pt;}
.y0_c01097{bottom:0.000000pt;}
.y1_c01097{bottom:1208.066667pt;}
.h2_c01097{height:22.125599pt;}
.h0_c01097{height:1341.693333pt;}
.h1_c01097{height:1342.000000pt;}
.w1_c01097{width:976.000000pt;}
.w0_c01097{width:976.133333pt;}
.x0_c01097{left:0.000000pt;}
.x1_c01097{left:12.293333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0217939e811f5d57d87d8cb.woff2')format("woff");}.ff1_c01098{font-family:ff1_c01098;line-height:1.109863;font-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_c01098{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);}
.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;}
.fs0_c01098{font-size:600.000000px;}
.y0_c01098{bottom:0.000000px;}
.y1_c01098{bottom:15.000000px;}
.h2_c01098{height:539.941406px;}
.h1_c01098{height:1518.750000px;}
.h0_c01098{height:1518.915000px;}
.w1_c01098{width:1074.750000px;}
.w0_c01098{width:1074.810000px;}
.x0_c01098{left:0.000000px;}
.x1_c01098{left:15.000000px;}
@media print{
.v0_c01098{vertical-align:0.000000pt;}
.ls0_c01098{letter-spacing:0.000000pt;}
.ws0_c01098{word-spacing:0.000000pt;}
.fs0_c01098{font-size:533.333333pt;}
.y0_c01098{bottom:0.000000pt;}
.y1_c01098{bottom:13.333333pt;}
.h2_c01098{height:479.947917pt;}
.h1_c01098{height:1350.000000pt;}
.h0_c01098{height:1350.146667pt;}
.w1_c01098{width:955.333333pt;}
.w0_c01098{width:955.386667pt;}
.x0_c01098{left:0.000000pt;}
.x1_c01098{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_96a2bade1d84f735444ee625.woff2')format("woff");}.ff1_c01099{font-family:ff1_c01099;line-height:1.109863;font-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_c01099{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);}
.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;}
.fc0_c01099{color:transparent;}
.fs0_c01099{font-size:600.000000px;}
.y0_c01099{bottom:0.000000px;}
.y1_c01099{bottom:15.000000px;}
.h2_c01099{height:539.941406px;}
.h0_c01099{height:1509.405000px;}
.h1_c01099{height:1509.750000px;}
.w1_c01099{width:1098.000000px;}
.w0_c01099{width:1098.150000px;}
.x0_c01099{left:0.000000px;}
.x1_c01099{left:15.000000px;}
@media print{
.v0_c01099{vertical-align:0.000000pt;}
.ls0_c01099{letter-spacing:0.000000pt;}
.ws0_c01099{word-spacing:0.000000pt;}
.fs0_c01099{font-size:533.333333pt;}
.y0_c01099{bottom:0.000000pt;}
.y1_c01099{bottom:13.333333pt;}
.h2_c01099{height:479.947917pt;}
.h0_c01099{height:1341.693333pt;}
.h1_c01099{height:1342.000000pt;}
.w1_c01099{width:976.000000pt;}
.w0_c01099{width:976.133333pt;}
.x0_c01099{left:0.000000pt;}
.x1_c01099{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f619453b4471d58518e3033e.woff2')format("woff");}.ff1_c01100{font-family:ff1_c01100;line-height:1.109863;font-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_c01100{transform:matrix(0.023075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023075,0.000000,0.000000,0.250000,0,0);}
.m7_c01100{transform:matrix(0.032225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032225,0.000000,0.000000,0.250000,0,0);}
.m8_c01100{transform:matrix(0.037250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037250,0.000000,0.000000,0.250000,0,0);}
.m4_c01100{transform:matrix(0.067575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067575,0.000000,0.000000,0.250000,0,0);}
.m2_c01100{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.m9_c01100{transform:matrix(0.100100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100100,0.000000,0.000000,0.250000,0,0);}
.m1_c01100{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01100{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c01100{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m3_c01100{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_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;}
.fs5_c01100{font-size:6.900000px;}
.fs0_c01100{font-size:10.380000px;}
.fs1_c01100{font-size:17.280000px;}
.fs3_c01100{font-size:34.560000px;}
.fs2_c01100{font-size:41.460000px;}
.fs9_c01100{font-size:51.840000px;}
.fs8_c01100{font-size:76.020000px;}
.fs7_c01100{font-size:96.780000px;}
.fs6_c01100{font-size:134.760000px;}
.fs4_c01100{font-size:172.800000px;}
.y0_c01100{bottom:0.000000px;}
.ya_c01100{bottom:532.230000px;}
.y9_c01100{bottom:546.045000px;}
.y8_c01100{bottom:579.750000px;}
.y7_c01100{bottom:604.800000px;}
.y5_c01100{bottom:639.360000px;}
.y3_c01100{bottom:683.430000px;}
.y6_c01100{bottom:684.285000px;}
.y4_c01100{bottom:693.795000px;}
.y1_c01100{bottom:708.480000px;}
.y2_c01100{bottom:709.350000px;}
.h7_c01100{height:6.209326px;}
.h2_c01100{height:9.340986px;}
.h3_c01100{height:15.550313px;}
.h5_c01100{height:31.100625px;}
.h4_c01100{height:37.309951px;}
.hb_c01100{height:46.650937px;}
.ha_c01100{height:68.410576px;}
.h9_c01100{height:87.092549px;}
.h8_c01100{height:121.270840px;}
.h6_c01100{height:155.503125px;}
.h1_c01100{height:1518.750000px;}
.h0_c01100{height:1518.915000px;}
.w1_c01100{width:1074.750000px;}
.w0_c01100{width:1074.810000px;}
.x0_c01100{left:0.000000px;}
.x3_c01100{left:964.230000px;}
.x1_c01100{left:992.730000px;}
.x2_c01100{left:1001.370000px;}
.x4_c01100{left:1038.525000px;}
.x5_c01100{left:1070.490000px;}
@media print{
.v0_c01100{vertical-align:0.000000pt;}
.ls0_c01100{letter-spacing:0.000000pt;}
.ws0_c01100{word-spacing:0.000000pt;}
.fs5_c01100{font-size:6.133333pt;}
.fs0_c01100{font-size:9.226667pt;}
.fs1_c01100{font-size:15.360000pt;}
.fs3_c01100{font-size:30.720000pt;}
.fs2_c01100{font-size:36.853333pt;}
.fs9_c01100{font-size:46.080000pt;}
.fs8_c01100{font-size:67.573333pt;}
.fs7_c01100{font-size:86.026667pt;}
.fs6_c01100{font-size:119.786667pt;}
.fs4_c01100{font-size:153.600000pt;}
.y0_c01100{bottom:0.000000pt;}
.ya_c01100{bottom:473.093333pt;}
.y9_c01100{bottom:485.373333pt;}
.y8_c01100{bottom:515.333333pt;}
.y7_c01100{bottom:537.600000pt;}
.y5_c01100{bottom:568.320000pt;}
.y3_c01100{bottom:607.493333pt;}
.y6_c01100{bottom:608.253333pt;}
.y4_c01100{bottom:616.706667pt;}
.y1_c01100{bottom:629.760000pt;}
.y2_c01100{bottom:630.533333pt;}
.h7_c01100{height:5.519401pt;}
.h2_c01100{height:8.303099pt;}
.h3_c01100{height:13.822500pt;}
.h5_c01100{height:27.645000pt;}
.h4_c01100{height:33.164401pt;}
.hb_c01100{height:41.467500pt;}
.ha_c01100{height:60.809401pt;}
.h9_c01100{height:77.415599pt;}
.h8_c01100{height:107.796302pt;}
.h6_c01100{height:138.225000pt;}
.h1_c01100{height:1350.000000pt;}
.h0_c01100{height:1350.146667pt;}
.w1_c01100{width:955.333333pt;}
.w0_c01100{width:955.386667pt;}
.x0_c01100{left:0.000000pt;}
.x3_c01100{left:857.093333pt;}
.x1_c01100{left:882.426667pt;}
.x2_c01100{left:890.106667pt;}
.x4_c01100{left:923.133333pt;}
.x5_c01100{left:951.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f1f3efee707067a536479a7.woff2')format("woff");}.ff1_c01101{font-family:ff1_c01101;line-height:1.109863;font-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_c01101{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);}
.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;}
.fs0_c01101{font-size:600.000000px;}
.y0_c01101{bottom:0.000000px;}
.y1_c01101{bottom:15.000000px;}
.h2_c01101{height:539.941406px;}
.h0_c01101{height:1509.405000px;}
.h1_c01101{height:1509.750000px;}
.w1_c01101{width:1098.000000px;}
.w0_c01101{width:1098.150000px;}
.x0_c01101{left:0.000000px;}
.x1_c01101{left:15.000000px;}
@media print{
.v0_c01101{vertical-align:0.000000pt;}
.ls0_c01101{letter-spacing:0.000000pt;}
.ws0_c01101{word-spacing:0.000000pt;}
.fs0_c01101{font-size:533.333333pt;}
.y0_c01101{bottom:0.000000pt;}
.y1_c01101{bottom:13.333333pt;}
.h2_c01101{height:479.947917pt;}
.h0_c01101{height:1341.693333pt;}
.h1_c01101{height:1342.000000pt;}
.w1_c01101{width:976.000000pt;}
.w0_c01101{width:976.133333pt;}
.x0_c01101{left:0.000000pt;}
.x1_c01101{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9dce679b7935ef386a903230.woff2')format("woff");}.ff1_c01102{font-family:ff1_c01102;line-height:1.109863;font-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_c01102{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);}
.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:600.000000px;}
.y0_c01102{bottom:0.000000px;}
.y1_c01102{bottom:15.000000px;}
.h2_c01102{height:539.941406px;}
.h1_c01102{height:1518.750000px;}
.h0_c01102{height:1518.915000px;}
.w1_c01102{width:1074.750000px;}
.w0_c01102{width:1074.810000px;}
.x0_c01102{left:0.000000px;}
.x1_c01102{left:15.000000px;}
@media print{
.v0_c01102{vertical-align:0.000000pt;}
.ls0_c01102{letter-spacing:0.000000pt;}
.ws0_c01102{word-spacing:0.000000pt;}
.fs0_c01102{font-size:533.333333pt;}
.y0_c01102{bottom:0.000000pt;}
.y1_c01102{bottom:13.333333pt;}
.h2_c01102{height:479.947917pt;}
.h1_c01102{height:1350.000000pt;}
.h0_c01102{height:1350.146667pt;}
.w1_c01102{width:955.333333pt;}
.w0_c01102{width:955.386667pt;}
.x0_c01102{left:0.000000pt;}
.x1_c01102{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_40bd003a2f6f227f25823bdc.woff2')format("woff");}.ff1_c01103{font-family:ff1_c01103;line-height:1.109863;font-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_c01103{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c01103{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c01103{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m6_c01103{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01103{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);}
.m0_c01103{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);}
.m3_c01103{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c01103{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.v0_c01103{vertical-align:0.000000px;}
.ls1_c01103{letter-spacing:0.000000px;}
.ls0_c01103{letter-spacing:117.124740px;}
.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;}
.fs6_c01103{font-size:6.900000px;}
.fs5_c01103{font-size:10.380000px;}
.fs3_c01103{font-size:13.800000px;}
.fs4_c01103{font-size:17.280000px;}
.fs2_c01103{font-size:20.760000px;}
.fs1_c01103{font-size:34.560000px;}
.fs0_c01103{font-size:38.040000px;}
.y0_c01103{bottom:0.000000px;}
.yb_c01103{bottom:627.270000px;}
.ya_c01103{bottom:641.085000px;}
.y9_c01103{bottom:641.955000px;}
.y8_c01103{bottom:645.405000px;}
.y7_c01103{bottom:984.090000px;}
.y6_c01103{bottom:990.150000px;}
.y5_c01103{bottom:1086.045000px;}
.y4_c01103{bottom:1094.685000px;}
.y1_c01103{bottom:1238.970000px;}
.y3_c01103{bottom:1294.275000px;}
.y2_c01103{bottom:1360.800000px;}
.h8_c01103{height:6.209326px;}
.h7_c01103{height:9.340986px;}
.h5_c01103{height:12.418652px;}
.h6_c01103{height:15.550313px;}
.h4_c01103{height:18.681973px;}
.h3_c01103{height:31.100625px;}
.h2_c01103{height:34.232285px;}
.h0_c01103{height:1509.405000px;}
.h1_c01103{height:1509.750000px;}
.w1_c01103{width:1098.000000px;}
.w0_c01103{width:1098.150000px;}
.x0_c01103{left:0.000000px;}
.xa_c01103{left:8.640000px;}
.x3_c01103{left:18.150000px;}
.x8_c01103{left:54.434550px;}
.x1_c01103{left:56.160000px;}
.x9_c01103{left:64.800000px;}
.x4_c01103{left:164.160000px;}
.x5_c01103{left:167.610000px;}
.x7_c01103{left:177.120000px;}
.x6_c01103{left:183.165000px;}
.x2_c01103{left:202.170000px;}
@media print{
.v0_c01103{vertical-align:0.000000pt;}
.ls1_c01103{letter-spacing:0.000000pt;}
.ls0_c01103{letter-spacing:104.110880pt;}
.ws0_c01103{word-spacing:0.000000pt;}
.fs6_c01103{font-size:6.133333pt;}
.fs5_c01103{font-size:9.226667pt;}
.fs3_c01103{font-size:12.266667pt;}
.fs4_c01103{font-size:15.360000pt;}
.fs2_c01103{font-size:18.453333pt;}
.fs1_c01103{font-size:30.720000pt;}
.fs0_c01103{font-size:33.813333pt;}
.y0_c01103{bottom:0.000000pt;}
.yb_c01103{bottom:557.573333pt;}
.ya_c01103{bottom:569.853333pt;}
.y9_c01103{bottom:570.626667pt;}
.y8_c01103{bottom:573.693333pt;}
.y7_c01103{bottom:874.746667pt;}
.y6_c01103{bottom:880.133333pt;}
.y5_c01103{bottom:965.373333pt;}
.y4_c01103{bottom:973.053333pt;}
.y1_c01103{bottom:1101.306667pt;}
.y3_c01103{bottom:1150.466667pt;}
.y2_c01103{bottom:1209.600000pt;}
.h8_c01103{height:5.519401pt;}
.h7_c01103{height:8.303099pt;}
.h5_c01103{height:11.038802pt;}
.h6_c01103{height:13.822500pt;}
.h4_c01103{height:16.606198pt;}
.h3_c01103{height:27.645000pt;}
.h2_c01103{height:30.428698pt;}
.h0_c01103{height:1341.693333pt;}
.h1_c01103{height:1342.000000pt;}
.w1_c01103{width:976.000000pt;}
.w0_c01103{width:976.133333pt;}
.x0_c01103{left:0.000000pt;}
.xa_c01103{left:7.680000pt;}
.x3_c01103{left:16.133333pt;}
.x8_c01103{left:48.386267pt;}
.x1_c01103{left:49.920000pt;}
.x9_c01103{left:57.600000pt;}
.x4_c01103{left:145.920000pt;}
.x5_c01103{left:148.986667pt;}
.x7_c01103{left:157.440000pt;}
.x6_c01103{left:162.813333pt;}
.x2_c01103{left:179.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c44dddf89c9a825b33e1360e.woff2')format("woff");}.ff1_c01104{font-family:ff1_c01104;line-height:1.109863;font-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_c01104{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01104{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m5_c01104{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.ma_c01104{transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);}
.m21_c01104{transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);}
.m0_c01104{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01104{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m29_c01104{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m14_c01104{transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);}
.m18_c01104{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.m2c_c01104{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m30_c01104{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.m25_c01104{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);}
.m1b_c01104{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);}
.m22_c01104{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m16_c01104{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);}
.m15_c01104{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);}
.m23_c01104{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);}
.m12_c01104{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);}
.m9_c01104{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);}
.m13_c01104{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);}
.mc_c01104{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);}
.m4_c01104{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c01104{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01104{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);}
.m20_c01104{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01104{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01104{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c01104{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me_c01104{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);}
.m2a_c01104{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c01104{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11_c01104{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);}
.mf_c01104{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m10_c01104{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m28_c01104{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m6_c01104{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m24_c01104{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c01104{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);}
.m1_c01104{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01104{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m8_c01104{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m2_c01104{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01104{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01104{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m17_c01104{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m27_c01104{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.mb_c01104{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.m7_c01104{transform:matrix(5.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.375000,0.000000,0.000000,0.250000,0,0);}
.v0_c01104{vertical-align:0.000000px;}
.v1_c01104{vertical-align:6.900000px;}
.ls1_c01104{letter-spacing:0.000000px;}
.ls0_c01104{letter-spacing:135.142740px;}
.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;}
}
.ws1_c01104{word-spacing:0.000000px;}
.ws0_c01104{word-spacing:21.894900px;}
.fc0_c01104{color:transparent;}
.fs2_c01104{font-size:3.456000px;}
.fs5_c01104{font-size:6.900000px;}
.fs0_c01104{font-size:10.380000px;}
.fs8_c01104{font-size:13.800000px;}
.fs6_c01104{font-size:17.280000px;}
.fs4_c01104{font-size:20.760000px;}
.fs7_c01104{font-size:24.180000px;}
.fs3_c01104{font-size:27.660000px;}
.fs1_c01104{font-size:31.080000px;}
.fs9_c01104{font-size:34.560000px;}
.fs18_c01104{font-size:38.040000px;}
.fsa_c01104{font-size:41.460000px;}
.fsb_c01104{font-size:44.940000px;}
.fs12_c01104{font-size:48.360000px;}
.fs15_c01104{font-size:55.320000px;}
.fsd_c01104{font-size:58.740000px;}
.fsc_c01104{font-size:62.220000px;}
.fsf_c01104{font-size:65.640000px;}
.fs19_c01104{font-size:69.120000px;}
.fs14_c01104{font-size:72.600000px;}
.fs1a_c01104{font-size:76.020000px;}
.fs17_c01104{font-size:79.500000px;}
.fse_c01104{font-size:82.920000px;}
.fs16_c01104{font-size:86.400000px;}
.fs10_c01104{font-size:93.300000px;}
.fs11_c01104{font-size:96.780000px;}
.fs13_c01104{font-size:103.680000px;}
.y0_c01104{bottom:0.000000px;}
.y2d_c01104{bottom:788.835000px;}
.y2e_c01104{bottom:789.690000px;}
.y2a_c01104{bottom:809.565000px;}
.y2b_c01104{bottom:810.435000px;}
.y2c_c01104{bottom:817.350000px;}
.y29_c01104{bottom:826.845000px;}
.y38_c01104{bottom:829.440000px;}
.y28_c01104{bottom:831.165000px;}
.y20_c01104{bottom:833.760000px;}
.y1f_c01104{bottom:835.485000px;}
.y27_c01104{bottom:836.355000px;}
.y23_c01104{bottom:838.950000px;}
.y37_c01104{bottom:839.805000px;}
.y24_c01104{bottom:844.125000px;}
.y25_c01104{bottom:844.995000px;}
.y21_c01104{bottom:848.445000px;}
.y22_c01104{bottom:850.170000px;}
.y1e_c01104{bottom:852.765000px;}
.y26_c01104{bottom:857.955000px;}
.y1a_c01104{bottom:862.275000px;}
.y16_c01104{bottom:863.130000px;}
.y1c_c01104{bottom:864.000000px;}
.y1b_c01104{bottom:865.725000px;}
.y1d_c01104{bottom:867.450000px;}
.y17_c01104{bottom:868.320000px;}
.yd_c01104{bottom:869.190000px;}
.yc_c01104{bottom:870.045000px;}
.y19_c01104{bottom:872.640000px;}
.y18_c01104{bottom:883.875000px;}
.y15_c01104{bottom:887.325000px;}
.y14_c01104{bottom:890.790000px;}
.y12_c01104{bottom:892.515000px;}
.yf_c01104{bottom:893.370000px;}
.y13_c01104{bottom:894.240000px;}
.y10_c01104{bottom:895.110000px;}
.y11_c01104{bottom:895.965000px;}
.ye_c01104{bottom:915.840000px;}
.yb_c01104{bottom:932.250000px;}
.ya_c01104{bottom:933.120000px;}
.y9_c01104{bottom:933.990000px;}
.y36_c01104{bottom:1026.435000px;}
.y35_c01104{bottom:1063.590000px;}
.y8_c01104{bottom:1181.955000px;}
.y7_c01104{bottom:1185.405000px;}
.y30_c01104{bottom:1251.930000px;}
.y2f_c01104{bottom:1259.715000px;}
.y33_c01104{bottom:1324.515000px;}
.y34_c01104{bottom:1327.965000px;}
.y32_c01104{bottom:1337.475000px;}
.y31_c01104{bottom:1344.390000px;}
.y6_c01104{bottom:1371.165000px;}
.y5_c01104{bottom:1377.210000px;}
.y4_c01104{bottom:1397.955000px;}
.y1_c01104{bottom:1399.680000px;}
.y3_c01104{bottom:1400.550000px;}
.y2_c01104{bottom:1401.405000px;}
.h5_c01104{height:3.110063px;}
.h8_c01104{height:6.209326px;}
.h4_c01104{height:9.340986px;}
.hc_c01104{height:12.418652px;}
.h9_c01104{height:15.550313px;}
.h2_c01104{height:16.240986px;}
.h7_c01104{height:18.681973px;}
.ha_c01104{height:21.759639px;}
.h6_c01104{height:24.891299px;}
.h3_c01104{height:27.968965px;}
.hb_c01104{height:31.100625px;}
.h1b_c01104{height:34.232285px;}
.hd_c01104{height:37.309951px;}
.he_c01104{height:40.441611px;}
.h15_c01104{height:43.519277px;}
.h18_c01104{height:49.782598px;}
.h10_c01104{height:52.860264px;}
.hf_c01104{height:55.991924px;}
.h12_c01104{height:59.069590px;}
.h1c_c01104{height:62.201250px;}
.h17_c01104{height:65.332910px;}
.h1d_c01104{height:68.410576px;}
.h1a_c01104{height:71.542236px;}
.h11_c01104{height:74.619902px;}
.h19_c01104{height:77.751563px;}
.h13_c01104{height:83.960889px;}
.h14_c01104{height:87.092549px;}
.h16_c01104{height:93.301875px;}
.h1_c01104{height:1518.750000px;}
.h0_c01104{height:1518.915000px;}
.w1_c01104{width:1074.750000px;}
.w0_c01104{width:1074.810000px;}
.x0_c01104{left:0.000000px;}
.xf_c01104{left:116.640000px;}
.x1a_c01104{left:118.365000px;}
.x1b_c01104{left:132.195000px;}
.x10_c01104{left:135.645000px;}
.x11_c01104{left:153.795000px;}
.x1c_c01104{left:165.885000px;}
.x1_c01104{left:167.610000px;}
.x9_c01104{left:183.165000px;}
.x1d_c01104{left:191.805000px;}
.x12_c01104{left:195.270000px;}
.xe_c01104{left:205.635000px;}
.x24_c01104{left:213.405000px;}
.xa_c01104{left:215.130000px;}
.x25_c01104{left:222.045000px;}
.x1e_c01104{left:223.770000px;}
.x26_c01104{left:235.005000px;}
.x1f_c01104{left:237.600000px;}
.x13_c01104{left:241.920000px;}
.x2_c01104{left:246.240000px;}
.xb_c01104{left:252.285000px;}
.x27_c01104{left:268.710000px;}
.x28_c01104{left:281.670000px;}
.x3_c01104{left:284.250000px;}
.x14_c01104{left:285.990000px;}
.x4_c01104{left:293.760000px;}
.x15_c01104{left:297.210000px;}
.x20_c01104{left:311.910000px;}
.x29_c01104{left:319.680000px;}
.x2f_c01104{left:322.275000px;}
.x21_c01104{left:339.555000px;}
.x16_c01104{left:358.560000px;}
.x17_c01104{left:383.610000px;}
.x2a_c01104{left:386.205000px;}
.x22_c01104{left:399.165000px;}
.x18_c01104{left:410.400000px;}
.x2b_c01104{left:413.850000px;}
.x2c_c01104{left:422.490000px;}
.x2d_c01104{left:432.000000px;}
.x2e_c01104{left:439.770000px;}
.x33_c01104{left:444.090000px;}
.x23_c01104{left:451.875000px;}
.x19_c01104{left:470.880000px;}
.x31_c01104{left:615.165000px;}
.x30_c01104{left:651.450000px;}
.x34_c01104{left:673.050000px;}
.x35_c01104{left:693.795000px;}
.x32_c01104{left:725.760000px;}
.x5_c01104{left:878.685000px;}
.xc_c01104{left:889.050000px;}
.x7_c01104{left:891.645000px;}
.x6_c01104{left:896.835000px;}
.xd_c01104{left:902.880000px;}
.x8_c01104{left:906.330000px;}
.x36_c01104{left:924.480000px;}
.x37_c01104{left:934.845000px;}
.x38_c01104{left:947.805000px;}
.x3a_c01104{left:983.235000px;}
.x39_c01104{left:984.960000px;}
.x3d_c01104{left:993.600000px;}
.x3f_c01104{left:995.325000px;}
.x40_c01104{left:1001.370000px;}
.x3b_c01104{left:1033.350000px;}
.x3e_c01104{left:1035.930000px;}
.x3c_c01104{left:1052.355000px;}
@media print{
.v0_c01104{vertical-align:0.000000pt;}
.v1_c01104{vertical-align:6.133333pt;}
.ls1_c01104{letter-spacing:0.000000pt;}
.ls0_c01104{letter-spacing:120.126880pt;}
.ws1_c01104{word-spacing:0.000000pt;}
.ws0_c01104{word-spacing:19.462133pt;}
.fs2_c01104{font-size:3.072000pt;}
.fs5_c01104{font-size:6.133333pt;}
.fs0_c01104{font-size:9.226667pt;}
.fs8_c01104{font-size:12.266667pt;}
.fs6_c01104{font-size:15.360000pt;}
.fs4_c01104{font-size:18.453333pt;}
.fs7_c01104{font-size:21.493333pt;}
.fs3_c01104{font-size:24.586667pt;}
.fs1_c01104{font-size:27.626667pt;}
.fs9_c01104{font-size:30.720000pt;}
.fs18_c01104{font-size:33.813333pt;}
.fsa_c01104{font-size:36.853333pt;}
.fsb_c01104{font-size:39.946667pt;}
.fs12_c01104{font-size:42.986667pt;}
.fs15_c01104{font-size:49.173333pt;}
.fsd_c01104{font-size:52.213333pt;}
.fsc_c01104{font-size:55.306667pt;}
.fsf_c01104{font-size:58.346667pt;}
.fs19_c01104{font-size:61.440000pt;}
.fs14_c01104{font-size:64.533333pt;}
.fs1a_c01104{font-size:67.573333pt;}
.fs17_c01104{font-size:70.666667pt;}
.fse_c01104{font-size:73.706667pt;}
.fs16_c01104{font-size:76.800000pt;}
.fs10_c01104{font-size:82.933333pt;}
.fs11_c01104{font-size:86.026667pt;}
.fs13_c01104{font-size:92.160000pt;}
.y0_c01104{bottom:0.000000pt;}
.y2d_c01104{bottom:701.186667pt;}
.y2e_c01104{bottom:701.946667pt;}
.y2a_c01104{bottom:719.613333pt;}
.y2b_c01104{bottom:720.386667pt;}
.y2c_c01104{bottom:726.533333pt;}
.y29_c01104{bottom:734.973333pt;}
.y38_c01104{bottom:737.280000pt;}
.y28_c01104{bottom:738.813333pt;}
.y20_c01104{bottom:741.120000pt;}
.y1f_c01104{bottom:742.653333pt;}
.y27_c01104{bottom:743.426667pt;}
.y23_c01104{bottom:745.733333pt;}
.y37_c01104{bottom:746.493333pt;}
.y24_c01104{bottom:750.333333pt;}
.y25_c01104{bottom:751.106667pt;}
.y21_c01104{bottom:754.173333pt;}
.y22_c01104{bottom:755.706667pt;}
.y1e_c01104{bottom:758.013333pt;}
.y26_c01104{bottom:762.626667pt;}
.y1a_c01104{bottom:766.466667pt;}
.y16_c01104{bottom:767.226667pt;}
.y1c_c01104{bottom:768.000000pt;}
.y1b_c01104{bottom:769.533333pt;}
.y1d_c01104{bottom:771.066667pt;}
.y17_c01104{bottom:771.840000pt;}
.yd_c01104{bottom:772.613333pt;}
.yc_c01104{bottom:773.373333pt;}
.y19_c01104{bottom:775.680000pt;}
.y18_c01104{bottom:785.666667pt;}
.y15_c01104{bottom:788.733333pt;}
.y14_c01104{bottom:791.813333pt;}
.y12_c01104{bottom:793.346667pt;}
.yf_c01104{bottom:794.106667pt;}
.y13_c01104{bottom:794.880000pt;}
.y10_c01104{bottom:795.653333pt;}
.y11_c01104{bottom:796.413333pt;}
.ye_c01104{bottom:814.080000pt;}
.yb_c01104{bottom:828.666667pt;}
.ya_c01104{bottom:829.440000pt;}
.y9_c01104{bottom:830.213333pt;}
.y36_c01104{bottom:912.386667pt;}
.y35_c01104{bottom:945.413333pt;}
.y8_c01104{bottom:1050.626667pt;}
.y7_c01104{bottom:1053.693333pt;}
.y30_c01104{bottom:1112.826667pt;}
.y2f_c01104{bottom:1119.746667pt;}
.y33_c01104{bottom:1177.346667pt;}
.y34_c01104{bottom:1180.413333pt;}
.y32_c01104{bottom:1188.866667pt;}
.y31_c01104{bottom:1195.013333pt;}
.y6_c01104{bottom:1218.813333pt;}
.y5_c01104{bottom:1224.186667pt;}
.y4_c01104{bottom:1242.626667pt;}
.y1_c01104{bottom:1244.160000pt;}
.y3_c01104{bottom:1244.933333pt;}
.y2_c01104{bottom:1245.693333pt;}
.h5_c01104{height:2.764500pt;}
.h8_c01104{height:5.519401pt;}
.h4_c01104{height:8.303099pt;}
.hc_c01104{height:11.038802pt;}
.h9_c01104{height:13.822500pt;}
.h2_c01104{height:14.436432pt;}
.h7_c01104{height:16.606198pt;}
.ha_c01104{height:19.341901pt;}
.h6_c01104{height:22.125599pt;}
.h3_c01104{height:24.861302pt;}
.hb_c01104{height:27.645000pt;}
.h1b_c01104{height:30.428698pt;}
.hd_c01104{height:33.164401pt;}
.he_c01104{height:35.948099pt;}
.h15_c01104{height:38.683802pt;}
.h18_c01104{height:44.251198pt;}
.h10_c01104{height:46.986901pt;}
.hf_c01104{height:49.770599pt;}
.h12_c01104{height:52.506302pt;}
.h1c_c01104{height:55.290000pt;}
.h17_c01104{height:58.073698pt;}
.h1d_c01104{height:60.809401pt;}
.h1a_c01104{height:63.593099pt;}
.h11_c01104{height:66.328802pt;}
.h19_c01104{height:69.112500pt;}
.h13_c01104{height:74.631901pt;}
.h14_c01104{height:77.415599pt;}
.h16_c01104{height:82.935000pt;}
.h1_c01104{height:1350.000000pt;}
.h0_c01104{height:1350.146667pt;}
.w1_c01104{width:955.333333pt;}
.w0_c01104{width:955.386667pt;}
.x0_c01104{left:0.000000pt;}
.xf_c01104{left:103.680000pt;}
.x1a_c01104{left:105.213333pt;}
.x1b_c01104{left:117.506667pt;}
.x10_c01104{left:120.573333pt;}
.x11_c01104{left:136.706667pt;}
.x1c_c01104{left:147.453333pt;}
.x1_c01104{left:148.986667pt;}
.x9_c01104{left:162.813333pt;}
.x1d_c01104{left:170.493333pt;}
.x12_c01104{left:173.573333pt;}
.xe_c01104{left:182.786667pt;}
.x24_c01104{left:189.693333pt;}
.xa_c01104{left:191.226667pt;}
.x25_c01104{left:197.373333pt;}
.x1e_c01104{left:198.906667pt;}
.x26_c01104{left:208.893333pt;}
.x1f_c01104{left:211.200000pt;}
.x13_c01104{left:215.040000pt;}
.x2_c01104{left:218.880000pt;}
.xb_c01104{left:224.253333pt;}
.x27_c01104{left:238.853333pt;}
.x28_c01104{left:250.373333pt;}
.x3_c01104{left:252.666667pt;}
.x14_c01104{left:254.213333pt;}
.x4_c01104{left:261.120000pt;}
.x15_c01104{left:264.186667pt;}
.x20_c01104{left:277.253333pt;}
.x29_c01104{left:284.160000pt;}
.x2f_c01104{left:286.466667pt;}
.x21_c01104{left:301.826667pt;}
.x16_c01104{left:318.720000pt;}
.x17_c01104{left:340.986667pt;}
.x2a_c01104{left:343.293333pt;}
.x22_c01104{left:354.813333pt;}
.x18_c01104{left:364.800000pt;}
.x2b_c01104{left:367.866667pt;}
.x2c_c01104{left:375.546667pt;}
.x2d_c01104{left:384.000000pt;}
.x2e_c01104{left:390.906667pt;}
.x33_c01104{left:394.746667pt;}
.x23_c01104{left:401.666667pt;}
.x19_c01104{left:418.560000pt;}
.x31_c01104{left:546.813333pt;}
.x30_c01104{left:579.066667pt;}
.x34_c01104{left:598.266667pt;}
.x35_c01104{left:616.706667pt;}
.x32_c01104{left:645.120000pt;}
.x5_c01104{left:781.053333pt;}
.xc_c01104{left:790.266667pt;}
.x7_c01104{left:792.573333pt;}
.x6_c01104{left:797.186667pt;}
.xd_c01104{left:802.560000pt;}
.x8_c01104{left:805.626667pt;}
.x36_c01104{left:821.760000pt;}
.x37_c01104{left:830.973333pt;}
.x38_c01104{left:842.493333pt;}
.x3a_c01104{left:873.986667pt;}
.x39_c01104{left:875.520000pt;}
.x3d_c01104{left:883.200000pt;}
.x3f_c01104{left:884.733333pt;}
.x40_c01104{left:890.106667pt;}
.x3b_c01104{left:918.533333pt;}
.x3e_c01104{left:920.826667pt;}
.x3c_c01104{left:935.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01105;src:url('chunks/assets/font_314510fb8e4466b1501c7649.woff2')format("woff");}.ff1_c01105{font-family:ff1_c01105;line-height:1.109863;font-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_c01105{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c01105{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m2_c01105{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);}
.m5_c01105{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);}
.m9_c01105{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m0_c01105{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_c01105{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);}
.ma_c01105{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);}
.m4_c01105{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m8_c01105{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m6_c01105{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.v0_c01105{vertical-align:0.000000px;}
.ls0_c01105{letter-spacing:0.000000px;}
.sc__c01105{text-shadow:none;}
.sc0_c01105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01105{-webkit-text-stroke:0px transparent;}
.sc0_c01105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01105{word-spacing:0.000000px;}
.fc0_c01105{color:transparent;}
.fs5_c01105{font-size:3.456000px;}
.fs1_c01105{font-size:6.000000px;}
.fs4_c01105{font-size:17.280000px;}
.fs7_c01105{font-size:20.760000px;}
.fs6_c01105{font-size:31.080000px;}
.fs0_c01105{font-size:34.560000px;}
.fs3_c01105{font-size:38.040000px;}
.fs2_c01105{font-size:65.640000px;}
.y0_c01105{bottom:0.000000px;}
.yd_c01105{bottom:141.690000px;}
.yf_c01105{bottom:143.430000px;}
.ye_c01105{bottom:146.880000px;}
.yc_c01105{bottom:147.750000px;}
.yb_c01105{bottom:152.070000px;}
.y6_c01105{bottom:183.165000px;}
.ya_c01105{bottom:185.760000px;}
.y7_c01105{bottom:186.630000px;}
.y8_c01105{bottom:189.210000px;}
.y9_c01105{bottom:190.950000px;}
.y5_c01105{bottom:1246.755000px;}
.y4_c01105{bottom:1255.395000px;}
.y3_c01105{bottom:1365.990000px;}
.y2_c01105{bottom:1382.400000px;}
.y1_c01105{bottom:1383.270000px;}
.h7_c01105{height:3.110063px;}
.h3_c01105{height:5.399414px;}
.h6_c01105{height:15.550313px;}
.h9_c01105{height:18.681973px;}
.h8_c01105{height:27.968965px;}
.h2_c01105{height:31.100625px;}
.h5_c01105{height:34.232285px;}
.h4_c01105{height:59.069590px;}
.h0_c01105{height:1509.405000px;}
.h1_c01105{height:1509.750000px;}
.w1_c01105{width:1098.000000px;}
.w0_c01105{width:1098.150000px;}
.x0_c01105{left:0.000000px;}
.x1_c01105{left:7.770000px;}
.x2_c01105{left:24.195000px;}
.x3_c01105{left:26.790000px;}
.x4_c01105{left:73.440000px;}
.x5_c01105{left:82.950000px;}
.xb_c01105{left:669.600000px;}
.xc_c01105{left:677.370000px;}
.xd_c01105{left:687.750000px;}
.xe_c01105{left:712.800000px;}
.x6_c01105{left:720.570000px;}
.x7_c01105{left:729.210000px;}
.xf_c01105{left:741.315000px;}
.x8_c01105{left:760.320000px;}
.x9_c01105{left:780.195000px;}
.xa_c01105{left:794.880000px;}
@media print{
.v0_c01105{vertical-align:0.000000pt;}
.ls0_c01105{letter-spacing:0.000000pt;}
.ws0_c01105{word-spacing:0.000000pt;}
.fs5_c01105{font-size:3.072000pt;}
.fs1_c01105{font-size:5.333333pt;}
.fs4_c01105{font-size:15.360000pt;}
.fs7_c01105{font-size:18.453333pt;}
.fs6_c01105{font-size:27.626667pt;}
.fs0_c01105{font-size:30.720000pt;}
.fs3_c01105{font-size:33.813333pt;}
.fs2_c01105{font-size:58.346667pt;}
.y0_c01105{bottom:0.000000pt;}
.yd_c01105{bottom:125.946667pt;}
.yf_c01105{bottom:127.493333pt;}
.ye_c01105{bottom:130.560000pt;}
.yc_c01105{bottom:131.333333pt;}
.yb_c01105{bottom:135.173333pt;}
.y6_c01105{bottom:162.813333pt;}
.ya_c01105{bottom:165.120000pt;}
.y7_c01105{bottom:165.893333pt;}
.y8_c01105{bottom:168.186667pt;}
.y9_c01105{bottom:169.733333pt;}
.y5_c01105{bottom:1108.226667pt;}
.y4_c01105{bottom:1115.906667pt;}
.y3_c01105{bottom:1214.213333pt;}
.y2_c01105{bottom:1228.800000pt;}
.y1_c01105{bottom:1229.573333pt;}
.h7_c01105{height:2.764500pt;}
.h3_c01105{height:4.799479pt;}
.h6_c01105{height:13.822500pt;}
.h9_c01105{height:16.606198pt;}
.h8_c01105{height:24.861302pt;}
.h2_c01105{height:27.645000pt;}
.h5_c01105{height:30.428698pt;}
.h4_c01105{height:52.506302pt;}
.h0_c01105{height:1341.693333pt;}
.h1_c01105{height:1342.000000pt;}
.w1_c01105{width:976.000000pt;}
.w0_c01105{width:976.133333pt;}
.x0_c01105{left:0.000000pt;}
.x1_c01105{left:6.906667pt;}
.x2_c01105{left:21.506667pt;}
.x3_c01105{left:23.813333pt;}
.x4_c01105{left:65.280000pt;}
.x5_c01105{left:73.733333pt;}
.xb_c01105{left:595.200000pt;}
.xc_c01105{left:602.106667pt;}
.xd_c01105{left:611.333333pt;}
.xe_c01105{left:633.600000pt;}
.x6_c01105{left:640.506667pt;}
.x7_c01105{left:648.186667pt;}
.xf_c01105{left:658.946667pt;}
.x8_c01105{left:675.840000pt;}
.x9_c01105{left:693.506667pt;}
.xa_c01105{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_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_42c9ec6980c1e2dc39b4fc5b.woff2')format("woff");}.ff1_c01106{font-family:ff1_c01106;line-height:1.109863;font-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_c01106{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c01106{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb_c01106{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m9_c01106{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);}
.m7_c01106{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c01106{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6_c01106{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c01106{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c01106{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c01106{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);}
.ma_c01106{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c01106{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m8_c01106{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,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;}
.fc0_c01106{color:transparent;}
.fs3_c01106{font-size:3.456000px;}
.fs2_c01106{font-size:6.900000px;}
.fs9_c01106{font-size:10.380000px;}
.fs1_c01106{font-size:17.280000px;}
.fs6_c01106{font-size:20.760000px;}
.fs4_c01106{font-size:24.180000px;}
.fs5_c01106{font-size:27.660000px;}
.fs0_c01106{font-size:31.080000px;}
.fs7_c01106{font-size:34.560000px;}
.fs8_c01106{font-size:48.360000px;}
.y0_c01106{bottom:0.000000px;}
.yd_c01106{bottom:89.850000px;}
.yc_c01106{bottom:108.000000px;}
.yf_c01106{bottom:109.725000px;}
.ye_c01106{bottom:114.915000px;}
.yb_c01106{bottom:1258.845000px;}
.ya_c01106{bottom:1259.715000px;}
.y7_c01106{bottom:1290.810000px;}
.y9_c01106{bottom:1298.595000px;}
.y8_c01106{bottom:1300.320000px;}
.y6_c01106{bottom:1397.955000px;}
.y5_c01106{bottom:1398.810000px;}
.y4_c01106{bottom:1401.405000px;}
.y2_c01106{bottom:1406.595000px;}
.y3_c01106{bottom:1407.450000px;}
.y1_c01106{bottom:1416.960000px;}
.h5_c01106{height:3.110063px;}
.h4_c01106{height:6.209326px;}
.hb_c01106{height:9.340986px;}
.h3_c01106{height:15.550313px;}
.h8_c01106{height:18.681973px;}
.h6_c01106{height:21.759639px;}
.h7_c01106{height:24.891299px;}
.h2_c01106{height:27.968965px;}
.h9_c01106{height:31.100625px;}
.ha_c01106{height:43.519277px;}
.h1_c01106{height:1518.750000px;}
.h0_c01106{height:1518.915000px;}
.w1_c01106{width:1074.750000px;}
.w0_c01106{width:1074.810000px;}
.x0_c01106{left:0.000000px;}
.x4_c01106{left:125.280000px;}
.x1_c01106{left:135.645000px;}
.x5_c01106{left:149.475000px;}
.x9_c01106{left:152.925000px;}
.xa_c01106{left:169.350000px;}
.xc_c01106{left:723.165000px;}
.xb_c01106{left:729.210000px;}
.xd_c01106{left:765.510000px;}
.xe_c01106{left:770.685000px;}
.x7_c01106{left:1004.835000px;}
.x8_c01106{left:1024.710000px;}
.x2_c01106{left:1032.480000px;}
.x3_c01106{left:1050.630000px;}
.x6_c01106{left:1054.080000px;}
@media print{
.v0_c01106{vertical-align:0.000000pt;}
.ls0_c01106{letter-spacing:0.000000pt;}
.ws0_c01106{word-spacing:0.000000pt;}
.fs3_c01106{font-size:3.072000pt;}
.fs2_c01106{font-size:6.133333pt;}
.fs9_c01106{font-size:9.226667pt;}
.fs1_c01106{font-size:15.360000pt;}
.fs6_c01106{font-size:18.453333pt;}
.fs4_c01106{font-size:21.493333pt;}
.fs5_c01106{font-size:24.586667pt;}
.fs0_c01106{font-size:27.626667pt;}
.fs7_c01106{font-size:30.720000pt;}
.fs8_c01106{font-size:42.986667pt;}
.y0_c01106{bottom:0.000000pt;}
.yd_c01106{bottom:79.866667pt;}
.yc_c01106{bottom:96.000000pt;}
.yf_c01106{bottom:97.533333pt;}
.ye_c01106{bottom:102.146667pt;}
.yb_c01106{bottom:1118.973333pt;}
.ya_c01106{bottom:1119.746667pt;}
.y7_c01106{bottom:1147.386667pt;}
.y9_c01106{bottom:1154.306667pt;}
.y8_c01106{bottom:1155.840000pt;}
.y6_c01106{bottom:1242.626667pt;}
.y5_c01106{bottom:1243.386667pt;}
.y4_c01106{bottom:1245.693333pt;}
.y2_c01106{bottom:1250.306667pt;}
.y3_c01106{bottom:1251.066667pt;}
.y1_c01106{bottom:1259.520000pt;}
.h5_c01106{height:2.764500pt;}
.h4_c01106{height:5.519401pt;}
.hb_c01106{height:8.303099pt;}
.h3_c01106{height:13.822500pt;}
.h8_c01106{height:16.606198pt;}
.h6_c01106{height:19.341901pt;}
.h7_c01106{height:22.125599pt;}
.h2_c01106{height:24.861302pt;}
.h9_c01106{height:27.645000pt;}
.ha_c01106{height:38.683802pt;}
.h1_c01106{height:1350.000000pt;}
.h0_c01106{height:1350.146667pt;}
.w1_c01106{width:955.333333pt;}
.w0_c01106{width:955.386667pt;}
.x0_c01106{left:0.000000pt;}
.x4_c01106{left:111.360000pt;}
.x1_c01106{left:120.573333pt;}
.x5_c01106{left:132.866667pt;}
.x9_c01106{left:135.933333pt;}
.xa_c01106{left:150.533333pt;}
.xc_c01106{left:642.813333pt;}
.xb_c01106{left:648.186667pt;}
.xd_c01106{left:680.453333pt;}
.xe_c01106{left:685.053333pt;}
.x7_c01106{left:893.186667pt;}
.x8_c01106{left:910.853333pt;}
.x2_c01106{left:917.760000pt;}
.x3_c01106{left:933.893333pt;}
.x6_c01106{left:936.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_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_c970db189588fd4797cfd1c6.woff2')format("woff");}.ff1_c01107{font-family:ff1_c01107;line-height:1.109863;font-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_c01107{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m13_c01107{transform:matrix(0.060575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060575,0.000000,0.000000,0.250000,0,0);}
.m17_c01107{transform:matrix(0.094150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094150,0.000000,0.000000,0.250000,0,0);}
.m12_c01107{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m11_c01107{transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);}
.mf_c01107{transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);}
.md_c01107{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);}
.m1e_c01107{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m14_c01107{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.ma_c01107{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m15_c01107{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m8_c01107{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m3_c01107{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.me_c01107{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01107{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);}
.m1_c01107{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);}
.m18_c01107{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m0_c01107{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c01107{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);}
.m1c_c01107{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m19_c01107{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m10_c01107{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4_c01107{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01107{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m9_c01107{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);}
.m1d_c01107{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m7_c01107{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m6_c01107{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m16_c01107{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m2_c01107{transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);}
.m5_c01107{transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.230000,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;}
.fs6_c01107{font-size:3.456000px;}
.fs2_c01107{font-size:13.800000px;}
.fsc_c01107{font-size:17.280000px;}
.fs0_c01107{font-size:24.180000px;}
.fs1_c01107{font-size:27.660000px;}
.fs4_c01107{font-size:31.080000px;}
.fs5_c01107{font-size:34.560000px;}
.fsd_c01107{font-size:41.460000px;}
.fs8_c01107{font-size:51.840000px;}
.fs9_c01107{font-size:55.320000px;}
.fs3_c01107{font-size:65.640000px;}
.fs7_c01107{font-size:69.120000px;}
.fsb_c01107{font-size:72.600000px;}
.fsa_c01107{font-size:79.500000px;}
.y0_c01107{bottom:0.000000px;}
.y1e_c01107{bottom:344.730000px;}
.y1f_c01107{bottom:347.325000px;}
.y1d_c01107{bottom:372.390000px;}
.y1c_c01107{bottom:394.845000px;}
.y1b_c01107{bottom:407.805000px;}
.y1a_c01107{bottom:419.910000px;}
.y19_c01107{bottom:426.810000px;}
.y18_c01107{bottom:444.960000px;}
.y17_c01107{bottom:476.070000px;}
.y16_c01107{bottom:507.165000px;}
.y15_c01107{bottom:520.125000px;}
.y14_c01107{bottom:547.770000px;}
.y13_c01107{bottom:571.965000px;}
.y12_c01107{bottom:578.010000px;}
.y11_c01107{bottom:599.610000px;}
.y10_c01107{bottom:628.125000px;}
.yf_c01107{bottom:641.955000px;}
.ye_c01107{bottom:820.800000px;}
.yc_c01107{bottom:837.210000px;}
.yd_c01107{bottom:842.400000px;}
.yb_c01107{bottom:852.765000px;}
.ya_c01107{bottom:878.685000px;}
.y9_c01107{bottom:887.325000px;}
.y8_c01107{bottom:1281.315000px;}
.y7_c01107{bottom:1292.550000px;}
.y6_c01107{bottom:1309.830000px;}
.y5_c01107{bottom:1316.730000px;}
.y4_c01107{bottom:1334.010000px;}
.y3_c01107{bottom:1335.750000px;}
.y2_c01107{bottom:1353.885000px;}
.y1_c01107{bottom:1435.110000px;}
.h8_c01107{height:3.110063px;}
.h4_c01107{height:12.418652px;}
.he_c01107{height:15.550313px;}
.h2_c01107{height:21.759639px;}
.h3_c01107{height:24.891299px;}
.h6_c01107{height:27.968965px;}
.h7_c01107{height:31.100625px;}
.hf_c01107{height:37.309951px;}
.ha_c01107{height:46.650937px;}
.hb_c01107{height:49.782598px;}
.h5_c01107{height:59.069590px;}
.h9_c01107{height:62.201250px;}
.hd_c01107{height:65.332910px;}
.hc_c01107{height:71.542236px;}
.h0_c01107{height:1509.405000px;}
.h1_c01107{height:1509.750000px;}
.w1_c01107{width:1098.000000px;}
.w0_c01107{width:1098.150000px;}
.x0_c01107{left:0.000000px;}
.x3_c01107{left:2.595000px;}
.x7_c01107{left:5.190000px;}
.x6_c01107{left:8.640000px;}
.x5_c01107{left:19.875000px;}
.x4_c01107{left:21.600000px;}
.x1_c01107{left:23.325000px;}
.x8_c01107{left:39.750000px;}
.x9_c01107{left:50.970000px;}
.x2_c01107{left:94.170000px;}
@media print{
.v0_c01107{vertical-align:0.000000pt;}
.ls0_c01107{letter-spacing:0.000000pt;}
.ws0_c01107{word-spacing:0.000000pt;}
.fs6_c01107{font-size:3.072000pt;}
.fs2_c01107{font-size:12.266667pt;}
.fsc_c01107{font-size:15.360000pt;}
.fs0_c01107{font-size:21.493333pt;}
.fs1_c01107{font-size:24.586667pt;}
.fs4_c01107{font-size:27.626667pt;}
.fs5_c01107{font-size:30.720000pt;}
.fsd_c01107{font-size:36.853333pt;}
.fs8_c01107{font-size:46.080000pt;}
.fs9_c01107{font-size:49.173333pt;}
.fs3_c01107{font-size:58.346667pt;}
.fs7_c01107{font-size:61.440000pt;}
.fsb_c01107{font-size:64.533333pt;}
.fsa_c01107{font-size:70.666667pt;}
.y0_c01107{bottom:0.000000pt;}
.y1e_c01107{bottom:306.426667pt;}
.y1f_c01107{bottom:308.733333pt;}
.y1d_c01107{bottom:331.013333pt;}
.y1c_c01107{bottom:350.973333pt;}
.y1b_c01107{bottom:362.493333pt;}
.y1a_c01107{bottom:373.253333pt;}
.y19_c01107{bottom:379.386667pt;}
.y18_c01107{bottom:395.520000pt;}
.y17_c01107{bottom:423.173333pt;}
.y16_c01107{bottom:450.813333pt;}
.y15_c01107{bottom:462.333333pt;}
.y14_c01107{bottom:486.906667pt;}
.y13_c01107{bottom:508.413333pt;}
.y12_c01107{bottom:513.786667pt;}
.y11_c01107{bottom:532.986667pt;}
.y10_c01107{bottom:558.333333pt;}
.yf_c01107{bottom:570.626667pt;}
.ye_c01107{bottom:729.600000pt;}
.yc_c01107{bottom:744.186667pt;}
.yd_c01107{bottom:748.800000pt;}
.yb_c01107{bottom:758.013333pt;}
.ya_c01107{bottom:781.053333pt;}
.y9_c01107{bottom:788.733333pt;}
.y8_c01107{bottom:1138.946667pt;}
.y7_c01107{bottom:1148.933333pt;}
.y6_c01107{bottom:1164.293333pt;}
.y5_c01107{bottom:1170.426667pt;}
.y4_c01107{bottom:1185.786667pt;}
.y3_c01107{bottom:1187.333333pt;}
.y2_c01107{bottom:1203.453333pt;}
.y1_c01107{bottom:1275.653333pt;}
.h8_c01107{height:2.764500pt;}
.h4_c01107{height:11.038802pt;}
.he_c01107{height:13.822500pt;}
.h2_c01107{height:19.341901pt;}
.h3_c01107{height:22.125599pt;}
.h6_c01107{height:24.861302pt;}
.h7_c01107{height:27.645000pt;}
.hf_c01107{height:33.164401pt;}
.ha_c01107{height:41.467500pt;}
.hb_c01107{height:44.251198pt;}
.h5_c01107{height:52.506302pt;}
.h9_c01107{height:55.290000pt;}
.hd_c01107{height:58.073698pt;}
.hc_c01107{height:63.593099pt;}
.h0_c01107{height:1341.693333pt;}
.h1_c01107{height:1342.000000pt;}
.w1_c01107{width:976.000000pt;}
.w0_c01107{width:976.133333pt;}
.x0_c01107{left:0.000000pt;}
.x3_c01107{left:2.306667pt;}
.x7_c01107{left:4.613333pt;}
.x6_c01107{left:7.680000pt;}
.x5_c01107{left:17.666667pt;}
.x4_c01107{left:19.200000pt;}
.x1_c01107{left:20.733333pt;}
.x8_c01107{left:35.333333pt;}
.x9_c01107{left:45.306667pt;}
.x2_c01107{left:83.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_907a544b974de0c7ee0c5e15.woff2')format("woff");}.ff1_c01108{font-family:ff1_c01108;line-height:1.109863;font-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.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m14_c01108{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01108{transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);}
.mf_c01108{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.m9_c01108{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m4_c01108{transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);}
.md_c01108{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.m7_c01108{transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);}
.m12_c01108{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);}
.me_c01108{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);}
.m6_c01108{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);}
.m16_c01108{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);}
.m8_c01108{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c01108{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5_c01108{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c01108{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c01108{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);}
.ma_c01108{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);}
.m15_c01108{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c01108{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mc_c01108{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.mb_c01108{transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);}
.m2_c01108{transform:matrix(4.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.677500,0.000000,0.000000,0.250000,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;}
.fsf_c01108{font-size:3.456000px;}
.fs1_c01108{font-size:6.900000px;}
.fs2_c01108{font-size:10.380000px;}
.fs0_c01108{font-size:13.800000px;}
.fs10_c01108{font-size:17.280000px;}
.fs11_c01108{font-size:24.180000px;}
.fsd_c01108{font-size:41.460000px;}
.fsa_c01108{font-size:44.940000px;}
.fse_c01108{font-size:48.360000px;}
.fs8_c01108{font-size:51.840000px;}
.fs4_c01108{font-size:55.320000px;}
.fs3_c01108{font-size:62.220000px;}
.fs5_c01108{font-size:69.120000px;}
.fsc_c01108{font-size:72.600000px;}
.fsb_c01108{font-size:86.400000px;}
.fs6_c01108{font-size:89.880000px;}
.fs9_c01108{font-size:93.300000px;}
.fs7_c01108{font-size:100.200000px;}
.y0_c01108{bottom:0.000000px;}
.y12_c01108{bottom:876.090000px;}
.y10_c01108{bottom:876.960000px;}
.yd_c01108{bottom:879.555000px;}
.yc_c01108{bottom:881.280000px;}
.yb_c01108{bottom:883.875000px;}
.yf_c01108{bottom:885.600000px;}
.ye_c01108{bottom:886.470000px;}
.ya_c01108{bottom:892.515000px;}
.y11_c01108{bottom:893.370000px;}
.y7_c01108{bottom:902.880000px;}
.y8_c01108{bottom:903.750000px;}
.y5_c01108{bottom:908.070000px;}
.y9_c01108{bottom:909.795000px;}
.y6_c01108{bottom:911.520000px;}
.y4_c01108{bottom:929.670000px;}
.y3_c01108{bottom:931.395000px;}
.y2_c01108{bottom:1105.920000px;}
.y1_c01108{bottom:1106.790000px;}
.y15_c01108{bottom:1336.605000px;}
.y16_c01108{bottom:1342.650000px;}
.y14_c01108{bottom:1406.595000px;}
.y13_c01108{bottom:1412.640000px;}
.h11_c01108{height:3.110063px;}
.h3_c01108{height:6.209326px;}
.h4_c01108{height:9.340986px;}
.h2_c01108{height:12.418652px;}
.h12_c01108{height:15.550313px;}
.h13_c01108{height:21.759639px;}
.hf_c01108{height:37.309951px;}
.hc_c01108{height:40.441611px;}
.h10_c01108{height:43.519277px;}
.ha_c01108{height:46.650937px;}
.h6_c01108{height:49.782598px;}
.h5_c01108{height:55.991924px;}
.h7_c01108{height:62.201250px;}
.he_c01108{height:65.332910px;}
.hd_c01108{height:77.751563px;}
.h8_c01108{height:80.883223px;}
.hb_c01108{height:83.960889px;}
.h9_c01108{height:90.170215px;}
.h1_c01108{height:1518.750000px;}
.h0_c01108{height:1518.915000px;}
.w1_c01108{width:1074.750000px;}
.w0_c01108{width:1074.810000px;}
.x0_c01108{left:0.000000px;}
.x1_c01108{left:8.640000px;}
.x4_c01108{left:122.685000px;}
.x5_c01108{left:151.200000px;}
.x6_c01108{left:214.275000px;}
.xc_c01108{left:216.000000px;}
.x2_c01108{left:218.595000px;}
.xd_c01108{left:230.685000px;}
.x7_c01108{left:238.470000px;}
.xe_c01108{left:262.650000px;}
.x8_c01108{left:295.485000px;}
.xf_c01108{left:297.210000px;}
.x10_c01108{left:308.445000px;}
.x3_c01108{left:317.085000px;}
.x11_c01108{left:335.235000px;}
.x12_c01108{left:349.920000px;}
.x13_c01108{left:374.970000px;}
.x9_c01108{left:383.610000px;}
.xa_c01108{left:407.805000px;}
.x14_c01108{left:445.830000px;}
.x15_c01108{left:453.600000px;}
.xb_c01108{left:472.605000px;}
.x16_c01108{left:487.290000px;}
.x19_c01108{left:908.070000px;}
.x1a_c01108{left:914.970000px;}
.x17_c01108{left:1002.240000px;}
.x18_c01108{left:1004.835000px;}
@media print{
.v0_c01108{vertical-align:0.000000pt;}
.ls0_c01108{letter-spacing:0.000000pt;}
.ws0_c01108{word-spacing:0.000000pt;}
.fsf_c01108{font-size:3.072000pt;}
.fs1_c01108{font-size:6.133333pt;}
.fs2_c01108{font-size:9.226667pt;}
.fs0_c01108{font-size:12.266667pt;}
.fs10_c01108{font-size:15.360000pt;}
.fs11_c01108{font-size:21.493333pt;}
.fsd_c01108{font-size:36.853333pt;}
.fsa_c01108{font-size:39.946667pt;}
.fse_c01108{font-size:42.986667pt;}
.fs8_c01108{font-size:46.080000pt;}
.fs4_c01108{font-size:49.173333pt;}
.fs3_c01108{font-size:55.306667pt;}
.fs5_c01108{font-size:61.440000pt;}
.fsc_c01108{font-size:64.533333pt;}
.fsb_c01108{font-size:76.800000pt;}
.fs6_c01108{font-size:79.893333pt;}
.fs9_c01108{font-size:82.933333pt;}
.fs7_c01108{font-size:89.066667pt;}
.y0_c01108{bottom:0.000000pt;}
.y12_c01108{bottom:778.746667pt;}
.y10_c01108{bottom:779.520000pt;}
.yd_c01108{bottom:781.826667pt;}
.yc_c01108{bottom:783.360000pt;}
.yb_c01108{bottom:785.666667pt;}
.yf_c01108{bottom:787.200000pt;}
.ye_c01108{bottom:787.973333pt;}
.ya_c01108{bottom:793.346667pt;}
.y11_c01108{bottom:794.106667pt;}
.y7_c01108{bottom:802.560000pt;}
.y8_c01108{bottom:803.333333pt;}
.y5_c01108{bottom:807.173333pt;}
.y9_c01108{bottom:808.706667pt;}
.y6_c01108{bottom:810.240000pt;}
.y4_c01108{bottom:826.373333pt;}
.y3_c01108{bottom:827.906667pt;}
.y2_c01108{bottom:983.040000pt;}
.y1_c01108{bottom:983.813333pt;}
.y15_c01108{bottom:1188.093333pt;}
.y16_c01108{bottom:1193.466667pt;}
.y14_c01108{bottom:1250.306667pt;}
.y13_c01108{bottom:1255.680000pt;}
.h11_c01108{height:2.764500pt;}
.h3_c01108{height:5.519401pt;}
.h4_c01108{height:8.303099pt;}
.h2_c01108{height:11.038802pt;}
.h12_c01108{height:13.822500pt;}
.h13_c01108{height:19.341901pt;}
.hf_c01108{height:33.164401pt;}
.hc_c01108{height:35.948099pt;}
.h10_c01108{height:38.683802pt;}
.ha_c01108{height:41.467500pt;}
.h6_c01108{height:44.251198pt;}
.h5_c01108{height:49.770599pt;}
.h7_c01108{height:55.290000pt;}
.he_c01108{height:58.073698pt;}
.hd_c01108{height:69.112500pt;}
.h8_c01108{height:71.896198pt;}
.hb_c01108{height:74.631901pt;}
.h9_c01108{height:80.151302pt;}
.h1_c01108{height:1350.000000pt;}
.h0_c01108{height:1350.146667pt;}
.w1_c01108{width:955.333333pt;}
.w0_c01108{width:955.386667pt;}
.x0_c01108{left:0.000000pt;}
.x1_c01108{left:7.680000pt;}
.x4_c01108{left:109.053333pt;}
.x5_c01108{left:134.400000pt;}
.x6_c01108{left:190.466667pt;}
.xc_c01108{left:192.000000pt;}
.x2_c01108{left:194.306667pt;}
.xd_c01108{left:205.053333pt;}
.x7_c01108{left:211.973333pt;}
.xe_c01108{left:233.466667pt;}
.x8_c01108{left:262.653333pt;}
.xf_c01108{left:264.186667pt;}
.x10_c01108{left:274.173333pt;}
.x3_c01108{left:281.853333pt;}
.x11_c01108{left:297.986667pt;}
.x12_c01108{left:311.040000pt;}
.x13_c01108{left:333.306667pt;}
.x9_c01108{left:340.986667pt;}
.xa_c01108{left:362.493333pt;}
.x14_c01108{left:396.293333pt;}
.x15_c01108{left:403.200000pt;}
.xb_c01108{left:420.093333pt;}
.x16_c01108{left:433.146667pt;}
.x19_c01108{left:807.173333pt;}
.x1a_c01108{left:813.306667pt;}
.x17_c01108{left:890.880000pt;}
.x18_c01108{left:893.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f570698497a75b28f684c6d7.woff2')format("woff");}.ff1_c01109{font-family:ff1_c01109;line-height:1.109863;font-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_c01109{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);}
.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;}
.fs0_c01109{font-size:600.000000px;}
.y0_c01109{bottom:0.000000px;}
.y1_c01109{bottom:15.000000px;}
.h2_c01109{height:539.941406px;}
.h0_c01109{height:1509.405000px;}
.h1_c01109{height:1509.750000px;}
.w1_c01109{width:1098.000000px;}
.w0_c01109{width:1098.150000px;}
.x0_c01109{left:0.000000px;}
.x1_c01109{left:15.000000px;}
@media print{
.v0_c01109{vertical-align:0.000000pt;}
.ls0_c01109{letter-spacing:0.000000pt;}
.ws0_c01109{word-spacing:0.000000pt;}
.fs0_c01109{font-size:533.333333pt;}
.y0_c01109{bottom:0.000000pt;}
.y1_c01109{bottom:13.333333pt;}
.h2_c01109{height:479.947917pt;}
.h0_c01109{height:1341.693333pt;}
.h1_c01109{height:1342.000000pt;}
.w1_c01109{width:976.000000pt;}
.w0_c01109{width:976.133333pt;}
.x0_c01109{left:0.000000pt;}
.x1_c01109{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_123f764ef85ea3f0c9088bcf.woff2')format("woff");}.ff1_c01110{font-family:ff1_c01110;line-height:1.109863;font-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_c01110{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);}
.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:600.000000px;}
.y0_c01110{bottom:0.000000px;}
.y1_c01110{bottom:15.000000px;}
.h2_c01110{height:539.941406px;}
.h1_c01110{height:1518.750000px;}
.h0_c01110{height:1518.915000px;}
.w1_c01110{width:1074.750000px;}
.w0_c01110{width:1074.810000px;}
.x0_c01110{left:0.000000px;}
.x1_c01110{left:15.000000px;}
@media print{
.v0_c01110{vertical-align:0.000000pt;}
.ls0_c01110{letter-spacing:0.000000pt;}
.ws0_c01110{word-spacing:0.000000pt;}
.fs0_c01110{font-size:533.333333pt;}
.y0_c01110{bottom:0.000000pt;}
.y1_c01110{bottom:13.333333pt;}
.h2_c01110{height:479.947917pt;}
.h1_c01110{height:1350.000000pt;}
.h0_c01110{height:1350.146667pt;}
.w1_c01110{width:955.333333pt;}
.w0_c01110{width:955.386667pt;}
.x0_c01110{left:0.000000pt;}
.x1_c01110{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b092b31406800bff47be8811.woff2')format("woff");}.ff1_c01111{font-family:ff1_c01111;line-height:1.109863;font-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_c01111{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c01111{transform:matrix(0.042400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042400,0.000000,0.000000,0.250000,0,0);}
.ma_c01111{transform:matrix(0.043400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043400,0.000000,0.000000,0.250000,0,0);}
.m9_c01111{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m7_c01111{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c01111{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c01111{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c01111{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_c01111{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mc_c01111{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c01111{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);}
.m3_c01111{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m2_c01111{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m6_c01111{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,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;}
.fs2_c01111{font-size:3.456000px;}
.fsa_c01111{font-size:6.900000px;}
.fs4_c01111{font-size:10.380000px;}
.fs3_c01111{font-size:13.800000px;}
.fs1_c01111{font-size:17.280000px;}
.fs9_c01111{font-size:20.760000px;}
.fs0_c01111{font-size:24.180000px;}
.fs5_c01111{font-size:27.660000px;}
.fs6_c01111{font-size:100.200000px;}
.fs7_c01111{font-size:138.240000px;}
.fs8_c01111{font-size:179.700000px;}
.y0_c01111{bottom:0.000000px;}
.ye_c01111{bottom:786.240000px;}
.yf_c01111{bottom:788.835000px;}
.yd_c01111{bottom:790.560000px;}
.ya_c01111{bottom:895.110000px;}
.y9_c01111{bottom:940.890000px;}
.yc_c01111{bottom:957.315000px;}
.yb_c01111{bottom:964.230000px;}
.y8_c01111{bottom:976.320000px;}
.y3_c01111{bottom:1010.880000px;}
.y6_c01111{bottom:1132.710000px;}
.y7_c01111{bottom:1133.565000px;}
.y1_c01111{bottom:1235.520000px;}
.y2_c01111{bottom:1237.245000px;}
.y5_c01111{bottom:1353.030000px;}
.y4_c01111{bottom:1355.610000px;}
.h4_c01111{height:3.110063px;}
.hc_c01111{height:6.209326px;}
.h6_c01111{height:9.340986px;}
.h5_c01111{height:12.418652px;}
.h3_c01111{height:15.550313px;}
.hb_c01111{height:18.681973px;}
.h2_c01111{height:21.759639px;}
.h7_c01111{height:24.891299px;}
.h8_c01111{height:90.170215px;}
.h9_c01111{height:124.402500px;}
.ha_c01111{height:161.712451px;}
.h0_c01111{height:1509.405000px;}
.h1_c01111{height:1509.750000px;}
.w1_c01111{width:1098.000000px;}
.w0_c01111{width:1098.150000px;}
.x0_c01111{left:0.000000px;}
.x6_c01111{left:24.195000px;}
.x4_c01111{left:47.520000px;}
.x7_c01111{left:50.115000px;}
.x1_c01111{left:69.120000px;}
.x2_c01111{left:87.270000px;}
.x5_c01111{left:89.850000px;}
.x9_c01111{left:114.045000px;}
.x8_c01111{left:115.770000px;}
.xc_c01111{left:143.430000px;}
.xd_c01111{left:149.475000px;}
.xe_c01111{left:153.795000px;}
.xa_c01111{left:181.440000px;}
.xb_c01111{left:189.210000px;}
.x3_c01111{left:963.360000px;}
@media print{
.v0_c01111{vertical-align:0.000000pt;}
.ls0_c01111{letter-spacing:0.000000pt;}
.ws0_c01111{word-spacing:0.000000pt;}
.fs2_c01111{font-size:3.072000pt;}
.fsa_c01111{font-size:6.133333pt;}
.fs4_c01111{font-size:9.226667pt;}
.fs3_c01111{font-size:12.266667pt;}
.fs1_c01111{font-size:15.360000pt;}
.fs9_c01111{font-size:18.453333pt;}
.fs0_c01111{font-size:21.493333pt;}
.fs5_c01111{font-size:24.586667pt;}
.fs6_c01111{font-size:89.066667pt;}
.fs7_c01111{font-size:122.880000pt;}
.fs8_c01111{font-size:159.733333pt;}
.y0_c01111{bottom:0.000000pt;}
.ye_c01111{bottom:698.880000pt;}
.yf_c01111{bottom:701.186667pt;}
.yd_c01111{bottom:702.720000pt;}
.ya_c01111{bottom:795.653333pt;}
.y9_c01111{bottom:836.346667pt;}
.yc_c01111{bottom:850.946667pt;}
.yb_c01111{bottom:857.093333pt;}
.y8_c01111{bottom:867.840000pt;}
.y3_c01111{bottom:898.560000pt;}
.y6_c01111{bottom:1006.853333pt;}
.y7_c01111{bottom:1007.613333pt;}
.y1_c01111{bottom:1098.240000pt;}
.y2_c01111{bottom:1099.773333pt;}
.y5_c01111{bottom:1202.693333pt;}
.y4_c01111{bottom:1204.986667pt;}
.h4_c01111{height:2.764500pt;}
.hc_c01111{height:5.519401pt;}
.h6_c01111{height:8.303099pt;}
.h5_c01111{height:11.038802pt;}
.h3_c01111{height:13.822500pt;}
.hb_c01111{height:16.606198pt;}
.h2_c01111{height:19.341901pt;}
.h7_c01111{height:22.125599pt;}
.h8_c01111{height:80.151302pt;}
.h9_c01111{height:110.580000pt;}
.ha_c01111{height:143.744401pt;}
.h0_c01111{height:1341.693333pt;}
.h1_c01111{height:1342.000000pt;}
.w1_c01111{width:976.000000pt;}
.w0_c01111{width:976.133333pt;}
.x0_c01111{left:0.000000pt;}
.x6_c01111{left:21.506667pt;}
.x4_c01111{left:42.240000pt;}
.x7_c01111{left:44.546667pt;}
.x1_c01111{left:61.440000pt;}
.x2_c01111{left:77.573333pt;}
.x5_c01111{left:79.866667pt;}
.x9_c01111{left:101.373333pt;}
.x8_c01111{left:102.906667pt;}
.xc_c01111{left:127.493333pt;}
.xd_c01111{left:132.866667pt;}
.xe_c01111{left:136.706667pt;}
.xa_c01111{left:161.280000pt;}
.xb_c01111{left:168.186667pt;}
.x3_c01111{left:856.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_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_8b5742e66279d1287d200dda.woff2')format("woff");}.ff1_c01112{font-family:ff1_c01112;line-height:1.109863;font-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_c01112{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c01112{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c01112{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,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;}
.fs2_c01112{font-size:6.000000px;}
.fs1_c01112{font-size:17.280000px;}
.fs0_c01112{font-size:27.660000px;}
.y0_c01112{bottom:0.000000px;}
.y2_c01112{bottom:453.600000px;}
.y3_c01112{bottom:457.920000px;}
.y1_c01112{bottom:1423.875000px;}
.h4_c01112{height:5.399414px;}
.h3_c01112{height:15.550313px;}
.h2_c01112{height:24.891299px;}
.h1_c01112{height:1518.750000px;}
.h0_c01112{height:1518.915000px;}
.w1_c01112{width:1074.750000px;}
.w0_c01112{width:1074.810000px;}
.x0_c01112{left:0.000000px;}
.x2_c01112{left:1046.310000px;}
.x1_c01112{left:1057.530000px;}
@media print{
.v0_c01112{vertical-align:0.000000pt;}
.ls0_c01112{letter-spacing:0.000000pt;}
.ws0_c01112{word-spacing:0.000000pt;}
.fs2_c01112{font-size:5.333333pt;}
.fs1_c01112{font-size:15.360000pt;}
.fs0_c01112{font-size:24.586667pt;}
.y0_c01112{bottom:0.000000pt;}
.y2_c01112{bottom:403.200000pt;}
.y3_c01112{bottom:407.040000pt;}
.y1_c01112{bottom:1265.666667pt;}
.h4_c01112{height:4.799479pt;}
.h3_c01112{height:13.822500pt;}
.h2_c01112{height:22.125599pt;}
.h1_c01112{height:1350.000000pt;}
.h0_c01112{height:1350.146667pt;}
.w1_c01112{width:955.333333pt;}
.w0_c01112{width:955.386667pt;}
.x0_c01112{left:0.000000pt;}
.x2_c01112{left:930.053333pt;}
.x1_c01112{left:940.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c95806518080e4c5131e245.woff2')format("woff");}.ff1_c01113{font-family:ff1_c01113;line-height:1.109863;font-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_c01113{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m1_c01113{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01113{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);}
.m5_c01113{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m4_c01113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8_c01113{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2_c01113{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c01113{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m7_c01113{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);}
.v1_c01113{vertical-align:-3.480000px;}
.v0_c01113{vertical-align:0.000000px;}
.ls1_c01113{letter-spacing:0.000000px;}
.ls0_c01113{letter-spacing:15.570000px;}
.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;}
.fs3_c01113{font-size:3.456000px;}
.fs1_c01113{font-size:6.000000px;}
.fsa_c01113{font-size:13.800000px;}
.fs2_c01113{font-size:17.280000px;}
.fs5_c01113{font-size:20.760000px;}
.fs4_c01113{font-size:24.180000px;}
.fs6_c01113{font-size:34.560000px;}
.fs0_c01113{font-size:38.040000px;}
.fs7_c01113{font-size:58.740000px;}
.fs9_c01113{font-size:62.220000px;}
.fs8_c01113{font-size:65.640000px;}
.y0_c01113{bottom:0.000000px;}
.y7_c01113{bottom:743.910000px;}
.y6_c01113{bottom:757.725000px;}
.y5_c01113{bottom:821.670000px;}
.y4_c01113{bottom:822.525000px;}
.yb_c01113{bottom:852.765000px;}
.ya_c01113{bottom:854.490000px;}
.y3_c01113{bottom:932.250000px;}
.y2_c01113{bottom:935.715000px;}
.y1_c01113{bottom:1131.840000px;}
.y9_c01113{bottom:1382.400000px;}
.y8_c01113{bottom:1383.270000px;}
.h5_c01113{height:3.110063px;}
.h3_c01113{height:5.399414px;}
.hc_c01113{height:12.418652px;}
.h4_c01113{height:15.550313px;}
.h7_c01113{height:18.681973px;}
.h6_c01113{height:21.759639px;}
.h8_c01113{height:31.100625px;}
.h2_c01113{height:34.232285px;}
.h9_c01113{height:52.860264px;}
.ha_c01113{height:55.589590px;}
.hb_c01113{height:55.991924px;}
.h0_c01113{height:1509.405000px;}
.h1_c01113{height:1509.750000px;}
.w1_c01113{width:1098.000000px;}
.w0_c01113{width:1098.150000px;}
.x0_c01113{left:0.000000px;}
.x6_c01113{left:26.790000px;}
.x7_c01113{left:31.110000px;}
.x1_c01113{left:36.285000px;}
.x2_c01113{left:39.750000px;}
.x4_c01113{left:44.070000px;}
.x3_c01113{left:49.245000px;}
.x5_c01113{left:51.840000px;}
.xb_c01113{left:135.645000px;}
.xc_c01113{left:142.560000px;}
.x8_c01113{left:625.530000px;}
.x9_c01113{left:654.045000px;}
.xa_c01113{left:703.290000px;}
@media print{
.v1_c01113{vertical-align:-3.093333pt;}
.v0_c01113{vertical-align:0.000000pt;}
.ls1_c01113{letter-spacing:0.000000pt;}
.ls0_c01113{letter-spacing:13.840000pt;}
.ws0_c01113{word-spacing:0.000000pt;}
.fs3_c01113{font-size:3.072000pt;}
.fs1_c01113{font-size:5.333333pt;}
.fsa_c01113{font-size:12.266667pt;}
.fs2_c01113{font-size:15.360000pt;}
.fs5_c01113{font-size:18.453333pt;}
.fs4_c01113{font-size:21.493333pt;}
.fs6_c01113{font-size:30.720000pt;}
.fs0_c01113{font-size:33.813333pt;}
.fs7_c01113{font-size:52.213333pt;}
.fs9_c01113{font-size:55.306667pt;}
.fs8_c01113{font-size:58.346667pt;}
.y0_c01113{bottom:0.000000pt;}
.y7_c01113{bottom:661.253333pt;}
.y6_c01113{bottom:673.533333pt;}
.y5_c01113{bottom:730.373333pt;}
.y4_c01113{bottom:731.133333pt;}
.yb_c01113{bottom:758.013333pt;}
.ya_c01113{bottom:759.546667pt;}
.y3_c01113{bottom:828.666667pt;}
.y2_c01113{bottom:831.746667pt;}
.y1_c01113{bottom:1006.080000pt;}
.y9_c01113{bottom:1228.800000pt;}
.y8_c01113{bottom:1229.573333pt;}
.h5_c01113{height:2.764500pt;}
.h3_c01113{height:4.799479pt;}
.hc_c01113{height:11.038802pt;}
.h4_c01113{height:13.822500pt;}
.h7_c01113{height:16.606198pt;}
.h6_c01113{height:19.341901pt;}
.h8_c01113{height:27.645000pt;}
.h2_c01113{height:30.428698pt;}
.h9_c01113{height:46.986901pt;}
.ha_c01113{height:49.412969pt;}
.hb_c01113{height:49.770599pt;}
.h0_c01113{height:1341.693333pt;}
.h1_c01113{height:1342.000000pt;}
.w1_c01113{width:976.000000pt;}
.w0_c01113{width:976.133333pt;}
.x0_c01113{left:0.000000pt;}
.x6_c01113{left:23.813333pt;}
.x7_c01113{left:27.653333pt;}
.x1_c01113{left:32.253333pt;}
.x2_c01113{left:35.333333pt;}
.x4_c01113{left:39.173333pt;}
.x3_c01113{left:43.773333pt;}
.x5_c01113{left:46.080000pt;}
.xb_c01113{left:120.573333pt;}
.xc_c01113{left:126.720000pt;}
.x8_c01113{left:556.026667pt;}
.x9_c01113{left:581.373333pt;}
.xa_c01113{left:625.146667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_745ecbc54379a1b1406686e5.woff2')format("woff");}.ff1_c01114{font-family:ff1_c01114;line-height:1.109863;font-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_c01114{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);}
.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;}
.fs0_c01114{font-size:600.000000px;}
.y0_c01114{bottom:0.000000px;}
.y1_c01114{bottom:15.000000px;}
.h2_c01114{height:539.941406px;}
.h1_c01114{height:1518.750000px;}
.h0_c01114{height:1518.915000px;}
.w0_c01114{width:1088.640000px;}
.w1_c01114{width:1089.000000px;}
.x0_c01114{left:0.000000px;}
.x1_c01114{left:15.000000px;}
@media print{
.v0_c01114{vertical-align:0.000000pt;}
.ls0_c01114{letter-spacing:0.000000pt;}
.ws0_c01114{word-spacing:0.000000pt;}
.fs0_c01114{font-size:533.333333pt;}
.y0_c01114{bottom:0.000000pt;}
.y1_c01114{bottom:13.333333pt;}
.h2_c01114{height:479.947917pt;}
.h1_c01114{height:1350.000000pt;}
.h0_c01114{height:1350.146667pt;}
.w0_c01114{width:967.680000pt;}
.w1_c01114{width:968.000000pt;}
.x0_c01114{left:0.000000pt;}
.x1_c01114{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f5d58727d4a90474501f214.woff2')format("woff");}.ff1_c01115{font-family:ff1_c01115;line-height:1.109863;font-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_c01115{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);}
.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;}
.fs0_c01115{font-size:600.000000px;}
.y0_c01115{bottom:0.000000px;}
.y1_c01115{bottom:15.000000px;}
.h2_c01115{height:539.941406px;}
.h0_c01115{height:1509.405000px;}
.h1_c01115{height:1509.750000px;}
.w0_c01115{width:1088.640000px;}
.w1_c01115{width:1089.000000px;}
.x0_c01115{left:0.000000px;}
.x1_c01115{left:15.000000px;}
@media print{
.v0_c01115{vertical-align:0.000000pt;}
.ls0_c01115{letter-spacing:0.000000pt;}
.ws0_c01115{word-spacing:0.000000pt;}
.fs0_c01115{font-size:533.333333pt;}
.y0_c01115{bottom:0.000000pt;}
.y1_c01115{bottom:13.333333pt;}
.h2_c01115{height:479.947917pt;}
.h0_c01115{height:1341.693333pt;}
.h1_c01115{height:1342.000000pt;}
.w0_c01115{width:967.680000pt;}
.w1_c01115{width:968.000000pt;}
.x0_c01115{left:0.000000pt;}
.x1_c01115{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1320caab3eb8f93c0c47d712.woff2')format("woff");}.ff1_c01116{font-family:ff1_c01116;line-height:1.109863;font-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_c01116{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);}
.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;}
.fs0_c01116{font-size:600.000000px;}
.y0_c01116{bottom:0.000000px;}
.y1_c01116{bottom:15.000000px;}
.h2_c01116{height:539.941406px;}
.h1_c01116{height:1518.750000px;}
.h0_c01116{height:1518.915000px;}
.w0_c01116{width:1088.640000px;}
.w1_c01116{width:1089.000000px;}
.x0_c01116{left:0.000000px;}
.x1_c01116{left:15.000000px;}
@media print{
.v0_c01116{vertical-align:0.000000pt;}
.ls0_c01116{letter-spacing:0.000000pt;}
.ws0_c01116{word-spacing:0.000000pt;}
.fs0_c01116{font-size:533.333333pt;}
.y0_c01116{bottom:0.000000pt;}
.y1_c01116{bottom:13.333333pt;}
.h2_c01116{height:479.947917pt;}
.h1_c01116{height:1350.000000pt;}
.h0_c01116{height:1350.146667pt;}
.w0_c01116{width:967.680000pt;}
.w1_c01116{width:968.000000pt;}
.x0_c01116{left:0.000000pt;}
.x1_c01116{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a3878dd72b7eb7504929c890.woff2')format("woff");}.ff1_c01117{font-family:ff1_c01117;line-height:1.109863;font-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.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);}
.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:600.000000px;}
.y0_c01117{bottom:0.000000px;}
.y1_c01117{bottom:15.000000px;}
.h2_c01117{height:539.941406px;}
.h0_c01117{height:1509.405000px;}
.h1_c01117{height:1509.750000px;}
.w0_c01117{width:1088.640000px;}
.w1_c01117{width:1089.000000px;}
.x0_c01117{left:0.000000px;}
.x1_c01117{left:15.000000px;}
@media print{
.v0_c01117{vertical-align:0.000000pt;}
.ls0_c01117{letter-spacing:0.000000pt;}
.ws0_c01117{word-spacing:0.000000pt;}
.fs0_c01117{font-size:533.333333pt;}
.y0_c01117{bottom:0.000000pt;}
.y1_c01117{bottom:13.333333pt;}
.h2_c01117{height:479.947917pt;}
.h0_c01117{height:1341.693333pt;}
.h1_c01117{height:1342.000000pt;}
.w0_c01117{width:967.680000pt;}
.w1_c01117{width:968.000000pt;}
.x0_c01117{left:0.000000pt;}
.x1_c01117{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81f5134c8fded28a0bbf1c68.woff2')format("woff");}.ff1_c01118{font-family:ff1_c01118;line-height:1.109863;font-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_c01118{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m28_c01118{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.m9_c01118{transform:matrix(0.114350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114350,0.000000,0.000000,0.250000,0,0);}
.m26_c01118{transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);}
.m1_c01118{transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);}
.m13_c01118{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m11_c01118{transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);}
.ma_c01118{transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);}
.m23_c01118{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m18_c01118{transform:matrix(0.167825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167825,0.000000,0.000000,0.250000,0,0);}
.m10_c01118{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);}
.m12_c01118{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m14_c01118{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m1f_c01118{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m7_c01118{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.md_c01118{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);}
.m17_c01118{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m24_c01118{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c01118{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01118{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);}
.m1e_c01118{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);}
.m19_c01118{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf_c01118{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c01118{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m20_c01118{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2_c01118{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);}
.m1c_c01118{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mb_c01118{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mc_c01118{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);}
.m3_c01118{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c01118{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c01118{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01118{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m8_c01118{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m27_c01118{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m15_c01118{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);}
.me_c01118{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01118{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m21_c01118{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);}
.m22_c01118{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);}
.m0_c01118{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,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;}
.fs8_c01118{font-size:3.456000px;}
.fs12_c01118{font-size:6.000000px;}
.fsf_c01118{font-size:6.900000px;}
.fs5_c01118{font-size:10.380000px;}
.fs7_c01118{font-size:13.800000px;}
.fs13_c01118{font-size:17.280000px;}
.fs0_c01118{font-size:20.760000px;}
.fs4_c01118{font-size:24.180000px;}
.fs11_c01118{font-size:38.040000px;}
.fs10_c01118{font-size:41.460000px;}
.fsb_c01118{font-size:51.840000px;}
.fs6_c01118{font-size:55.320000px;}
.fs14_c01118{font-size:58.740000px;}
.fs9_c01118{font-size:62.220000px;}
.fs1_c01118{font-size:65.640000px;}
.fsa_c01118{font-size:69.120000px;}
.fs2_c01118{font-size:79.500000px;}
.fs3_c01118{font-size:82.920000px;}
.fsd_c01118{font-size:89.880000px;}
.fse_c01118{font-size:96.780000px;}
.fsc_c01118{font-size:103.680000px;}
.y0_c01118{bottom:0.000000px;}
.y2c_c01118{bottom:85.530000px;}
.y2b_c01118{bottom:87.270000px;}
.y2a_c01118{bottom:409.530000px;}
.y29_c01118{bottom:412.125000px;}
.y28_c01118{bottom:932.250000px;}
.y27_c01118{bottom:933.990000px;}
.y26_c01118{bottom:934.845000px;}
.y25_c01118{bottom:1060.995000px;}
.y24_c01118{bottom:1061.850000px;}
.y23_c01118{bottom:1089.510000px;}
.y22_c01118{bottom:1111.965000px;}
.y21_c01118{bottom:1205.280000px;}
.y1f_c01118{bottom:1219.110000px;}
.y1c_c01118{bottom:1219.965000px;}
.y1d_c01118{bottom:1221.690000px;}
.y1e_c01118{bottom:1222.560000px;}
.y20_c01118{bottom:1226.010000px;}
.y1b_c01118{bottom:1238.970000px;}
.y1a_c01118{bottom:1239.840000px;}
.y19_c01118{bottom:1250.205000px;}
.y18_c01118{bottom:1251.930000px;}
.y17_c01118{bottom:1257.120000px;}
.y16_c01118{bottom:1260.570000px;}
.y15_c01118{bottom:1263.165000px;}
.y14_c01118{bottom:1268.355000px;}
.y13_c01118{bottom:1269.210000px;}
.y12_c01118{bottom:1276.995000px;}
.y10_c01118{bottom:1286.490000px;}
.y11_c01118{bottom:1287.360000px;}
.ya_c01118{bottom:1288.230000px;}
.yb_c01118{bottom:1289.085000px;}
.yf_c01118{bottom:1291.680000px;}
.ye_c01118{bottom:1293.405000px;}
.yd_c01118{bottom:1294.275000px;}
.yc_c01118{bottom:1295.130000px;}
.y8_c01118{bottom:1315.005000px;}
.y9_c01118{bottom:1316.730000px;}
.y7_c01118{bottom:1354.755000px;}
.y5_c01118{bottom:1364.250000px;}
.y6_c01118{bottom:1368.570000px;}
.y4_c01118{bottom:1380.675000px;}
.y3_c01118{bottom:1382.400000px;}
.y2_c01118{bottom:1384.125000px;}
.y1_c01118{bottom:1437.690000px;}
.ha_c01118{height:3.110063px;}
.h14_c01118{height:5.399414px;}
.h11_c01118{height:6.209326px;}
.h7_c01118{height:9.340986px;}
.h9_c01118{height:12.418652px;}
.h15_c01118{height:15.550313px;}
.h2_c01118{height:18.681973px;}
.h6_c01118{height:21.759639px;}
.h13_c01118{height:34.232285px;}
.h12_c01118{height:37.309951px;}
.hd_c01118{height:46.650937px;}
.h8_c01118{height:49.782598px;}
.h16_c01118{height:52.860264px;}
.hb_c01118{height:55.991924px;}
.h3_c01118{height:59.069590px;}
.hc_c01118{height:62.201250px;}
.h4_c01118{height:71.542236px;}
.h5_c01118{height:74.619902px;}
.hf_c01118{height:80.883223px;}
.h10_c01118{height:87.092549px;}
.he_c01118{height:93.301875px;}
.h1_c01118{height:1518.750000px;}
.h0_c01118{height:1518.915000px;}
.w0_c01118{width:1088.640000px;}
.w1_c01118{width:1089.000000px;}
.x0_c01118{left:0.000000px;}
.xb_c01118{left:157.245000px;}
.xc_c01118{left:196.125000px;}
.xd_c01118{left:218.595000px;}
.x8_c01118{left:228.090000px;}
.xe_c01118{left:241.920000px;}
.x9_c01118{left:247.110000px;}
.x1_c01118{left:251.430000px;}
.xf_c01118{left:261.795000px;}
.x15_c01118{left:277.350000px;}
.x16_c01118{left:286.845000px;}
.x10_c01118{left:293.760000px;}
.x1a_c01118{left:307.590000px;}
.x5_c01118{left:311.040000px;}
.x11_c01118{left:314.490000px;}
.x6_c01118{left:327.450000px;}
.x17_c01118{left:332.640000px;}
.x12_c01118{left:350.790000px;}
.x18_c01118{left:360.285000px;}
.x2_c01118{left:362.010000px;}
.x20_c01118{left:367.200000px;}
.x1e_c01118{left:373.245000px;}
.x3_c01118{left:402.630000px;}
.x19_c01118{left:404.355000px;}
.x21_c01118{left:410.400000px;}
.xa_c01118{left:416.445000px;}
.x1b_c01118{left:423.360000px;}
.x1f_c01118{left:425.085000px;}
.x13_c01118{left:429.405000px;}
.x22_c01118{left:432.870000px;}
.x1c_c01118{left:438.045000px;}
.x14_c01118{left:457.050000px;}
.x23_c01118{left:471.750000px;}
.x29_c01118{left:475.200000px;}
.x7_c01118{left:506.310000px;}
.x1d_c01118{left:537.405000px;}
.x4_c01118{left:554.685000px;}
.x24_c01118{left:612.570000px;}
.x25_c01118{left:634.170000px;}
.x26_c01118{left:656.640000px;}
.x27_c01118{left:698.115000px;}
.x28_c01118{left:733.530000px;}
.x2c_c01118{left:888.195000px;}
.x2a_c01118{left:968.550000px;}
.x2b_c01118{left:979.770000px;}
.x2d_c01118{left:997.920000px;}
.x2e_c01118{left:1004.835000px;}
.x2f_c01118{left:1006.560000px;}
.x30_c01118{left:1008.285000px;}
.x31_c01118{left:1039.395000px;}
.x32_c01118{left:1049.760000px;}
@media print{
.v0_c01118{vertical-align:0.000000pt;}
.ls0_c01118{letter-spacing:0.000000pt;}
.ws0_c01118{word-spacing:0.000000pt;}
.fs8_c01118{font-size:3.072000pt;}
.fs12_c01118{font-size:5.333333pt;}
.fsf_c01118{font-size:6.133333pt;}
.fs5_c01118{font-size:9.226667pt;}
.fs7_c01118{font-size:12.266667pt;}
.fs13_c01118{font-size:15.360000pt;}
.fs0_c01118{font-size:18.453333pt;}
.fs4_c01118{font-size:21.493333pt;}
.fs11_c01118{font-size:33.813333pt;}
.fs10_c01118{font-size:36.853333pt;}
.fsb_c01118{font-size:46.080000pt;}
.fs6_c01118{font-size:49.173333pt;}
.fs14_c01118{font-size:52.213333pt;}
.fs9_c01118{font-size:55.306667pt;}
.fs1_c01118{font-size:58.346667pt;}
.fsa_c01118{font-size:61.440000pt;}
.fs2_c01118{font-size:70.666667pt;}
.fs3_c01118{font-size:73.706667pt;}
.fsd_c01118{font-size:79.893333pt;}
.fse_c01118{font-size:86.026667pt;}
.fsc_c01118{font-size:92.160000pt;}
.y0_c01118{bottom:0.000000pt;}
.y2c_c01118{bottom:76.026667pt;}
.y2b_c01118{bottom:77.573333pt;}
.y2a_c01118{bottom:364.026667pt;}
.y29_c01118{bottom:366.333333pt;}
.y28_c01118{bottom:828.666667pt;}
.y27_c01118{bottom:830.213333pt;}
.y26_c01118{bottom:830.973333pt;}
.y25_c01118{bottom:943.106667pt;}
.y24_c01118{bottom:943.866667pt;}
.y23_c01118{bottom:968.453333pt;}
.y22_c01118{bottom:988.413333pt;}
.y21_c01118{bottom:1071.360000pt;}
.y1f_c01118{bottom:1083.653333pt;}
.y1c_c01118{bottom:1084.413333pt;}
.y1d_c01118{bottom:1085.946667pt;}
.y1e_c01118{bottom:1086.720000pt;}
.y20_c01118{bottom:1089.786667pt;}
.y1b_c01118{bottom:1101.306667pt;}
.y1a_c01118{bottom:1102.080000pt;}
.y19_c01118{bottom:1111.293333pt;}
.y18_c01118{bottom:1112.826667pt;}
.y17_c01118{bottom:1117.440000pt;}
.y16_c01118{bottom:1120.506667pt;}
.y15_c01118{bottom:1122.813333pt;}
.y14_c01118{bottom:1127.426667pt;}
.y13_c01118{bottom:1128.186667pt;}
.y12_c01118{bottom:1135.106667pt;}
.y10_c01118{bottom:1143.546667pt;}
.y11_c01118{bottom:1144.320000pt;}
.ya_c01118{bottom:1145.093333pt;}
.yb_c01118{bottom:1145.853333pt;}
.yf_c01118{bottom:1148.160000pt;}
.ye_c01118{bottom:1149.693333pt;}
.yd_c01118{bottom:1150.466667pt;}
.yc_c01118{bottom:1151.226667pt;}
.y8_c01118{bottom:1168.893333pt;}
.y9_c01118{bottom:1170.426667pt;}
.y7_c01118{bottom:1204.226667pt;}
.y5_c01118{bottom:1212.666667pt;}
.y6_c01118{bottom:1216.506667pt;}
.y4_c01118{bottom:1227.266667pt;}
.y3_c01118{bottom:1228.800000pt;}
.y2_c01118{bottom:1230.333333pt;}
.y1_c01118{bottom:1277.946667pt;}
.ha_c01118{height:2.764500pt;}
.h14_c01118{height:4.799479pt;}
.h11_c01118{height:5.519401pt;}
.h7_c01118{height:8.303099pt;}
.h9_c01118{height:11.038802pt;}
.h15_c01118{height:13.822500pt;}
.h2_c01118{height:16.606198pt;}
.h6_c01118{height:19.341901pt;}
.h13_c01118{height:30.428698pt;}
.h12_c01118{height:33.164401pt;}
.hd_c01118{height:41.467500pt;}
.h8_c01118{height:44.251198pt;}
.h16_c01118{height:46.986901pt;}
.hb_c01118{height:49.770599pt;}
.h3_c01118{height:52.506302pt;}
.hc_c01118{height:55.290000pt;}
.h4_c01118{height:63.593099pt;}
.h5_c01118{height:66.328802pt;}
.hf_c01118{height:71.896198pt;}
.h10_c01118{height:77.415599pt;}
.he_c01118{height:82.935000pt;}
.h1_c01118{height:1350.000000pt;}
.h0_c01118{height:1350.146667pt;}
.w0_c01118{width:967.680000pt;}
.w1_c01118{width:968.000000pt;}
.x0_c01118{left:0.000000pt;}
.xb_c01118{left:139.773333pt;}
.xc_c01118{left:174.333333pt;}
.xd_c01118{left:194.306667pt;}
.x8_c01118{left:202.746667pt;}
.xe_c01118{left:215.040000pt;}
.x9_c01118{left:219.653333pt;}
.x1_c01118{left:223.493333pt;}
.xf_c01118{left:232.706667pt;}
.x15_c01118{left:246.533333pt;}
.x16_c01118{left:254.973333pt;}
.x10_c01118{left:261.120000pt;}
.x1a_c01118{left:273.413333pt;}
.x5_c01118{left:276.480000pt;}
.x11_c01118{left:279.546667pt;}
.x6_c01118{left:291.066667pt;}
.x17_c01118{left:295.680000pt;}
.x12_c01118{left:311.813333pt;}
.x18_c01118{left:320.253333pt;}
.x2_c01118{left:321.786667pt;}
.x20_c01118{left:326.400000pt;}
.x1e_c01118{left:331.773333pt;}
.x3_c01118{left:357.893333pt;}
.x19_c01118{left:359.426667pt;}
.x21_c01118{left:364.800000pt;}
.xa_c01118{left:370.173333pt;}
.x1b_c01118{left:376.320000pt;}
.x1f_c01118{left:377.853333pt;}
.x13_c01118{left:381.693333pt;}
.x22_c01118{left:384.773333pt;}
.x1c_c01118{left:389.373333pt;}
.x14_c01118{left:406.266667pt;}
.x23_c01118{left:419.333333pt;}
.x29_c01118{left:422.400000pt;}
.x7_c01118{left:450.053333pt;}
.x1d_c01118{left:477.693333pt;}
.x4_c01118{left:493.053333pt;}
.x24_c01118{left:544.506667pt;}
.x25_c01118{left:563.706667pt;}
.x26_c01118{left:583.680000pt;}
.x27_c01118{left:620.546667pt;}
.x28_c01118{left:652.026667pt;}
.x2c_c01118{left:789.506667pt;}
.x2a_c01118{left:860.933333pt;}
.x2b_c01118{left:870.906667pt;}
.x2d_c01118{left:887.040000pt;}
.x2e_c01118{left:893.186667pt;}
.x2f_c01118{left:894.720000pt;}
.x30_c01118{left:896.253333pt;}
.x31_c01118{left:923.906667pt;}
.x32_c01118{left:933.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_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;}
@font-face{font-family:ff1_c01119;src:url('chunks/assets/font_b65e8ca51575009911f88aa1.woff2')format("woff");}.ff1_c01119{font-family:ff1_c01119;line-height:1.109863;font-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_c01119{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);}
.v0_c01119{vertical-align:0.000000px;}
.ls0_c01119{letter-spacing:0.000000px;}
.sc__c01119{text-shadow:none;}
.sc0_c01119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01119{-webkit-text-stroke:0px transparent;}
.sc0_c01119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01119{word-spacing:0.000000px;}
.fc0_c01119{color:transparent;}
.fs0_c01119{font-size:600.000000px;}
.y0_c01119{bottom:0.000000px;}
.y1_c01119{bottom:15.000000px;}
.h2_c01119{height:539.941406px;}
.h0_c01119{height:1509.405000px;}
.h1_c01119{height:1509.750000px;}
.w0_c01119{width:1088.640000px;}
.w1_c01119{width:1089.000000px;}
.x0_c01119{left:0.000000px;}
.x1_c01119{left:15.000000px;}
@media print{
.v0_c01119{vertical-align:0.000000pt;}
.ls0_c01119{letter-spacing:0.000000pt;}
.ws0_c01119{word-spacing:0.000000pt;}
.fs0_c01119{font-size:533.333333pt;}
.y0_c01119{bottom:0.000000pt;}
.y1_c01119{bottom:13.333333pt;}
.h2_c01119{height:479.947917pt;}
.h0_c01119{height:1341.693333pt;}
.h1_c01119{height:1342.000000pt;}
.w0_c01119{width:967.680000pt;}
.w1_c01119{width:968.000000pt;}
.x0_c01119{left:0.000000pt;}
.x1_c01119{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f2fd09cee26c6f50faf67da.woff2')format("woff");}.ff1_c01120{font-family:ff1_c01120;line-height:1.109863;font-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_c01120{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);}
.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;}
.fs0_c01120{font-size:600.000000px;}
.y0_c01120{bottom:0.000000px;}
.y1_c01120{bottom:15.000000px;}
.h2_c01120{height:539.941406px;}
.h1_c01120{height:1518.750000px;}
.h0_c01120{height:1518.915000px;}
.w0_c01120{width:1088.640000px;}
.w1_c01120{width:1089.000000px;}
.x0_c01120{left:0.000000px;}
.x1_c01120{left:15.000000px;}
@media print{
.v0_c01120{vertical-align:0.000000pt;}
.ls0_c01120{letter-spacing:0.000000pt;}
.ws0_c01120{word-spacing:0.000000pt;}
.fs0_c01120{font-size:533.333333pt;}
.y0_c01120{bottom:0.000000pt;}
.y1_c01120{bottom:13.333333pt;}
.h2_c01120{height:479.947917pt;}
.h1_c01120{height:1350.000000pt;}
.h0_c01120{height:1350.146667pt;}
.w0_c01120{width:967.680000pt;}
.w1_c01120{width:968.000000pt;}
.x0_c01120{left:0.000000pt;}
.x1_c01120{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9427150ed8187b9c97d3ab55.woff2')format("woff");}.ff1_c01121{font-family:ff1_c01121;line-height:1.109863;font-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.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);}
.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:600.000000px;}
.y0_c01121{bottom:0.000000px;}
.y1_c01121{bottom:15.000000px;}
.h2_c01121{height:539.941406px;}
.h0_c01121{height:1509.405000px;}
.h1_c01121{height:1509.750000px;}
.w0_c01121{width:1088.640000px;}
.w1_c01121{width:1089.000000px;}
.x0_c01121{left:0.000000px;}
.x1_c01121{left:15.000000px;}
@media print{
.v0_c01121{vertical-align:0.000000pt;}
.ls0_c01121{letter-spacing:0.000000pt;}
.ws0_c01121{word-spacing:0.000000pt;}
.fs0_c01121{font-size:533.333333pt;}
.y0_c01121{bottom:0.000000pt;}
.y1_c01121{bottom:13.333333pt;}
.h2_c01121{height:479.947917pt;}
.h0_c01121{height:1341.693333pt;}
.h1_c01121{height:1342.000000pt;}
.w0_c01121{width:967.680000pt;}
.w1_c01121{width:968.000000pt;}
.x0_c01121{left:0.000000pt;}
.x1_c01121{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_701b8f2d7f56a562dbbaa9a6.woff2')format("woff");}.ff1_c01122{font-family:ff1_c01122;line-height:1.109863;font-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_c01122{transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);}
.m3_c01122{transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);}
.m4_c01122{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m0_c01122{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c01122{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,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;}
.fs1_c01122{font-size:17.280000px;}
.fs0_c01122{font-size:27.660000px;}
.fs4_c01122{font-size:38.040000px;}
.fs2_c01122{font-size:138.240000px;}
.fs3_c01122{font-size:179.700000px;}
.y0_c01122{bottom:0.000000px;}
.y5_c01122{bottom:375.840000px;}
.y4_c01122{bottom:387.075000px;}
.y3_c01122{bottom:443.235000px;}
.y1_c01122{bottom:470.880000px;}
.y2_c01122{bottom:650.595000px;}
.h3_c01122{height:15.550313px;}
.h2_c01122{height:24.891299px;}
.h6_c01122{height:34.232285px;}
.h4_c01122{height:124.402500px;}
.h5_c01122{height:161.712451px;}
.h0_c01122{height:1521.510000px;}
.h1_c01122{height:1521.750000px;}
.w0_c01122{width:1088.640000px;}
.w1_c01122{width:1089.000000px;}
.x0_c01122{left:0.000000px;}
.x2_c01122{left:910.650000px;}
.x3_c01122{left:972.000000px;}
.x4_c01122{left:973.725000px;}
.x1_c01122{left:998.790000px;}
@media print{
.v0_c01122{vertical-align:0.000000pt;}
.ls0_c01122{letter-spacing:0.000000pt;}
.ws0_c01122{word-spacing:0.000000pt;}
.fs1_c01122{font-size:15.360000pt;}
.fs0_c01122{font-size:24.586667pt;}
.fs4_c01122{font-size:33.813333pt;}
.fs2_c01122{font-size:122.880000pt;}
.fs3_c01122{font-size:159.733333pt;}
.y0_c01122{bottom:0.000000pt;}
.y5_c01122{bottom:334.080000pt;}
.y4_c01122{bottom:344.066667pt;}
.y3_c01122{bottom:393.986667pt;}
.y1_c01122{bottom:418.560000pt;}
.y2_c01122{bottom:578.306667pt;}
.h3_c01122{height:13.822500pt;}
.h2_c01122{height:22.125599pt;}
.h6_c01122{height:30.428698pt;}
.h4_c01122{height:110.580000pt;}
.h5_c01122{height:143.744401pt;}
.h0_c01122{height:1352.453333pt;}
.h1_c01122{height:1352.666667pt;}
.w0_c01122{width:967.680000pt;}
.w1_c01122{width:968.000000pt;}
.x0_c01122{left:0.000000pt;}
.x2_c01122{left:809.466667pt;}
.x3_c01122{left:864.000000pt;}
.x4_c01122{left:865.533333pt;}
.x1_c01122{left:887.813333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01123;src:url('chunks/assets/font_cd7a0585e1cca419f8684c9a.woff2')format("woff");}.ff1_c01123{font-family:ff1_c01123;line-height:1.109863;font-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_c01123{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m17_c01123{transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);}
.m11_c01123{transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);}
.m0_c01123{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb_c01123{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.m8_c01123{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);}
.ma_c01123{transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);}
.m16_c01123{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m12_c01123{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.m24_c01123{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.mc_c01123{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.me_c01123{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);}
.m20_c01123{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);}
.m21_c01123{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);}
.m13_c01123{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.m7_c01123{transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);}
.m1f_c01123{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);}
.m15_c01123{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);}
.m1_c01123{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);}
.m23_c01123{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m14_c01123{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);}
.m10_c01123{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01123{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01123{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);}
.m5_c01123{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);}
.m1e_c01123{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m19_c01123{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01123{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01123{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01123{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6_c01123{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);}
.m3_c01123{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.md_c01123{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m18_c01123{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_c01123{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mf_c01123{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m22_c01123{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c01123{vertical-align:0.000000px;}
.ls0_c01123{letter-spacing:0.000000px;}
.sc__c01123{text-shadow:none;}
.sc0_c01123{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01123{-webkit-text-stroke:0px transparent;}
.sc0_c01123{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01123{word-spacing:0.000000px;}
.fc0_c01123{color:transparent;}
.fs4_c01123{font-size:3.456000px;}
.fsc_c01123{font-size:6.900000px;}
.fs0_c01123{font-size:10.380000px;}
.fs5_c01123{font-size:17.280000px;}
.fs16_c01123{font-size:27.660000px;}
.fs1_c01123{font-size:31.080000px;}
.fs3_c01123{font-size:34.560000px;}
.fs11_c01123{font-size:38.040000px;}
.fs2_c01123{font-size:51.840000px;}
.fsf_c01123{font-size:55.320000px;}
.fs14_c01123{font-size:58.740000px;}
.fsb_c01123{font-size:62.220000px;}
.fs10_c01123{font-size:65.640000px;}
.fs8_c01123{font-size:69.120000px;}
.fs13_c01123{font-size:72.600000px;}
.fs12_c01123{font-size:79.500000px;}
.fs15_c01123{font-size:86.400000px;}
.fs9_c01123{font-size:89.880000px;}
.fse_c01123{font-size:93.300000px;}
.fs7_c01123{font-size:110.580000px;}
.fsd_c01123{font-size:117.480000px;}
.fsa_c01123{font-size:120.960000px;}
.fs6_c01123{font-size:124.440000px;}
.y0_c01123{bottom:0.000000px;}
.y1f_c01123{bottom:175.395000px;}
.y1e_c01123{bottom:176.250000px;}
.y1c_c01123{bottom:201.315000px;}
.y1d_c01123{bottom:203.040000px;}
.y1b_c01123{bottom:203.910000px;}
.y17_c01123{bottom:1244.160000px;}
.y19_c01123{bottom:1245.885000px;}
.y16_c01123{bottom:1246.755000px;}
.y18_c01123{bottom:1247.610000px;}
.y15_c01123{bottom:1251.930000px;}
.y1a_c01123{bottom:1260.570000px;}
.y14_c01123{bottom:1276.125000px;}
.y12_c01123{bottom:1278.720000px;}
.y13_c01123{bottom:1282.170000px;}
.y10_c01123{bottom:1286.490000px;}
.y11_c01123{bottom:1289.085000px;}
.yd_c01123{bottom:1305.510000px;}
.ya_c01123{bottom:1307.235000px;}
.y9_c01123{bottom:1308.090000px;}
.ye_c01123{bottom:1309.830000px;}
.yc_c01123{bottom:1314.150000px;}
.yb_c01123{bottom:1315.005000px;}
.yf_c01123{bottom:1334.880000px;}
.y4_c01123{bottom:1368.570000px;}
.y6_c01123{bottom:1372.035000px;}
.y8_c01123{bottom:1372.890000px;}
.y7_c01123{bottom:1374.630000px;}
.y5_c01123{bottom:1377.210000px;}
.y3_c01123{bottom:1396.230000px;}
.y1_c01123{bottom:1407.450000px;}
.y2_c01123{bottom:1410.915000px;}
.h6_c01123{height:3.110063px;}
.he_c01123{height:6.209326px;}
.h2_c01123{height:9.340986px;}
.h7_c01123{height:15.550313px;}
.h18_c01123{height:24.891299px;}
.h3_c01123{height:27.968965px;}
.h5_c01123{height:31.100625px;}
.h13_c01123{height:34.232285px;}
.h4_c01123{height:46.650937px;}
.h11_c01123{height:49.782598px;}
.h16_c01123{height:52.860264px;}
.hd_c01123{height:55.991924px;}
.h12_c01123{height:59.069590px;}
.ha_c01123{height:62.201250px;}
.h15_c01123{height:65.332910px;}
.h14_c01123{height:71.542236px;}
.h17_c01123{height:77.751563px;}
.hb_c01123{height:80.883223px;}
.h10_c01123{height:83.960889px;}
.h9_c01123{height:99.511201px;}
.hf_c01123{height:105.720527px;}
.hc_c01123{height:108.852188px;}
.h8_c01123{height:111.983848px;}
.h0_c01123{height:1515.450000px;}
.h1_c01123{height:1515.750000px;}
.w0_c01123{width:1088.640000px;}
.w1_c01123{width:1089.000000px;}
.x0_c01123{left:0.000000px;}
.x1_c01123{left:81.210000px;}
.x2_c01123{left:163.290000px;}
.x4_c01123{left:574.560000px;}
.x9_c01123{left:593.565000px;}
.x5_c01123{left:608.250000px;}
.xe_c01123{left:613.440000px;}
.x14_c01123{left:620.355000px;}
.x6_c01123{left:626.400000px;}
.x15_c01123{left:629.850000px;}
.xf_c01123{left:639.360000px;}
.x16_c01123{left:650.595000px;}
.x10_c01123{left:660.090000px;}
.x17_c01123{left:664.410000px;}
.x18_c01123{left:678.240000px;}
.x11_c01123{left:681.690000px;}
.x19_c01123{left:691.200000px;}
.x1a_c01123{left:700.710000px;}
.x7_c01123{left:706.755000px;}
.x8_c01123{left:716.250000px;}
.x1b_c01123{left:730.080000px;}
.x22_c01123{left:732.675000px;}
.x12_c01123{left:746.490000px;}
.x23_c01123{left:749.085000px;}
.xa_c01123{left:752.550000px;}
.x1c_c01123{left:758.595000px;}
.x24_c01123{left:768.090000px;}
.x1d_c01123{left:779.325000px;}
.x25_c01123{left:786.240000px;}
.x26_c01123{left:796.605000px;}
.x1e_c01123{left:798.330000px;}
.x1f_c01123{left:802.650000px;}
.x27_c01123{left:806.115000px;}
.x20_c01123{left:816.480000px;}
.xb_c01123{left:819.075000px;}
.x21_c01123{left:830.310000px;}
.x13_c01123{left:838.080000px;}
.xc_c01123{left:889.050000px;}
.xd_c01123{left:950.400000px;}
.x3_c01123{left:955.590000px;}
@media print{
.v0_c01123{vertical-align:0.000000pt;}
.ls0_c01123{letter-spacing:0.000000pt;}
.ws0_c01123{word-spacing:0.000000pt;}
.fs4_c01123{font-size:3.072000pt;}
.fsc_c01123{font-size:6.133333pt;}
.fs0_c01123{font-size:9.226667pt;}
.fs5_c01123{font-size:15.360000pt;}
.fs16_c01123{font-size:24.586667pt;}
.fs1_c01123{font-size:27.626667pt;}
.fs3_c01123{font-size:30.720000pt;}
.fs11_c01123{font-size:33.813333pt;}
.fs2_c01123{font-size:46.080000pt;}
.fsf_c01123{font-size:49.173333pt;}
.fs14_c01123{font-size:52.213333pt;}
.fsb_c01123{font-size:55.306667pt;}
.fs10_c01123{font-size:58.346667pt;}
.fs8_c01123{font-size:61.440000pt;}
.fs13_c01123{font-size:64.533333pt;}
.fs12_c01123{font-size:70.666667pt;}
.fs15_c01123{font-size:76.800000pt;}
.fs9_c01123{font-size:79.893333pt;}
.fse_c01123{font-size:82.933333pt;}
.fs7_c01123{font-size:98.293333pt;}
.fsd_c01123{font-size:104.426667pt;}
.fsa_c01123{font-size:107.520000pt;}
.fs6_c01123{font-size:110.613333pt;}
.y0_c01123{bottom:0.000000pt;}
.y1f_c01123{bottom:155.906667pt;}
.y1e_c01123{bottom:156.666667pt;}
.y1c_c01123{bottom:178.946667pt;}
.y1d_c01123{bottom:180.480000pt;}
.y1b_c01123{bottom:181.253333pt;}
.y17_c01123{bottom:1105.920000pt;}
.y19_c01123{bottom:1107.453333pt;}
.y16_c01123{bottom:1108.226667pt;}
.y18_c01123{bottom:1108.986667pt;}
.y15_c01123{bottom:1112.826667pt;}
.y1a_c01123{bottom:1120.506667pt;}
.y14_c01123{bottom:1134.333333pt;}
.y12_c01123{bottom:1136.640000pt;}
.y13_c01123{bottom:1139.706667pt;}
.y10_c01123{bottom:1143.546667pt;}
.y11_c01123{bottom:1145.853333pt;}
.yd_c01123{bottom:1160.453333pt;}
.ya_c01123{bottom:1161.986667pt;}
.y9_c01123{bottom:1162.746667pt;}
.ye_c01123{bottom:1164.293333pt;}
.yc_c01123{bottom:1168.133333pt;}
.yb_c01123{bottom:1168.893333pt;}
.yf_c01123{bottom:1186.560000pt;}
.y4_c01123{bottom:1216.506667pt;}
.y6_c01123{bottom:1219.586667pt;}
.y8_c01123{bottom:1220.346667pt;}
.y7_c01123{bottom:1221.893333pt;}
.y5_c01123{bottom:1224.186667pt;}
.y3_c01123{bottom:1241.093333pt;}
.y1_c01123{bottom:1251.066667pt;}
.y2_c01123{bottom:1254.146667pt;}
.h6_c01123{height:2.764500pt;}
.he_c01123{height:5.519401pt;}
.h2_c01123{height:8.303099pt;}
.h7_c01123{height:13.822500pt;}
.h18_c01123{height:22.125599pt;}
.h3_c01123{height:24.861302pt;}
.h5_c01123{height:27.645000pt;}
.h13_c01123{height:30.428698pt;}
.h4_c01123{height:41.467500pt;}
.h11_c01123{height:44.251198pt;}
.h16_c01123{height:46.986901pt;}
.hd_c01123{height:49.770599pt;}
.h12_c01123{height:52.506302pt;}
.ha_c01123{height:55.290000pt;}
.h15_c01123{height:58.073698pt;}
.h14_c01123{height:63.593099pt;}
.h17_c01123{height:69.112500pt;}
.hb_c01123{height:71.896198pt;}
.h10_c01123{height:74.631901pt;}
.h9_c01123{height:88.454401pt;}
.hf_c01123{height:93.973802pt;}
.hc_c01123{height:96.757500pt;}
.h8_c01123{height:99.541198pt;}
.h0_c01123{height:1347.066667pt;}
.h1_c01123{height:1347.333333pt;}
.w0_c01123{width:967.680000pt;}
.w1_c01123{width:968.000000pt;}
.x0_c01123{left:0.000000pt;}
.x1_c01123{left:72.186667pt;}
.x2_c01123{left:145.146667pt;}
.x4_c01123{left:510.720000pt;}
.x9_c01123{left:527.613333pt;}
.x5_c01123{left:540.666667pt;}
.xe_c01123{left:545.280000pt;}
.x14_c01123{left:551.426667pt;}
.x6_c01123{left:556.800000pt;}
.x15_c01123{left:559.866667pt;}
.xf_c01123{left:568.320000pt;}
.x16_c01123{left:578.306667pt;}
.x10_c01123{left:586.746667pt;}
.x17_c01123{left:590.586667pt;}
.x18_c01123{left:602.880000pt;}
.x11_c01123{left:605.946667pt;}
.x19_c01123{left:614.400000pt;}
.x1a_c01123{left:622.853333pt;}
.x7_c01123{left:628.226667pt;}
.x8_c01123{left:636.666667pt;}
.x1b_c01123{left:648.960000pt;}
.x22_c01123{left:651.266667pt;}
.x12_c01123{left:663.546667pt;}
.x23_c01123{left:665.853333pt;}
.xa_c01123{left:668.933333pt;}
.x1c_c01123{left:674.306667pt;}
.x24_c01123{left:682.746667pt;}
.x1d_c01123{left:692.733333pt;}
.x25_c01123{left:698.880000pt;}
.x26_c01123{left:708.093333pt;}
.x1e_c01123{left:709.626667pt;}
.x1f_c01123{left:713.466667pt;}
.x27_c01123{left:716.546667pt;}
.x20_c01123{left:725.760000pt;}
.xb_c01123{left:728.066667pt;}
.x21_c01123{left:738.053333pt;}
.x13_c01123{left:744.960000pt;}
.xc_c01123{left:790.266667pt;}
.xd_c01123{left:844.800000pt;}
.x3_c01123{left:849.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f193053bc33d73c380f9ff02.woff2')format("woff");}.ff1_c01124{font-family:ff1_c01124;line-height:1.109863;font-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_c01124{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m4_c01124{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01124{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c01124{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);}
.m3_c01124{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,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;}
.fs5_c01124{font-size:10.380000px;}
.fs4_c01124{font-size:17.280000px;}
.fs3_c01124{font-size:24.180000px;}
.fs0_c01124{font-size:55.320000px;}
.fs1_c01124{font-size:62.220000px;}
.fs2_c01124{font-size:72.600000px;}
.y0_c01124{bottom:0.000000px;}
.y4_c01124{bottom:848.445000px;}
.y6_c01124{bottom:1283.040000px;}
.y5_c01124{bottom:1289.085000px;}
.y3_c01124{bottom:1399.680000px;}
.y2_c01124{bottom:1402.275000px;}
.y1_c01124{bottom:1403.130000px;}
.h7_c01124{height:9.340986px;}
.h6_c01124{height:15.550313px;}
.h5_c01124{height:21.759639px;}
.h2_c01124{height:49.782598px;}
.h3_c01124{height:55.991924px;}
.h4_c01124{height:65.332910px;}
.h0_c01124{height:1521.510000px;}
.h1_c01124{height:1521.750000px;}
.w0_c01124{width:1088.640000px;}
.w1_c01124{width:1089.000000px;}
.x0_c01124{left:0.000000px;}
.x1_c01124{left:374.970000px;}
.x2_c01124{left:416.445000px;}
.x3_c01124{left:538.275000px;}
.x5_c01124{left:933.990000px;}
.x6_c01124{left:936.570600px;}
.x4_c01124{left:1031.610000px;}
@media print{
.v0_c01124{vertical-align:0.000000pt;}
.ls0_c01124{letter-spacing:0.000000pt;}
.ws0_c01124{word-spacing:0.000000pt;}
.fs5_c01124{font-size:9.226667pt;}
.fs4_c01124{font-size:15.360000pt;}
.fs3_c01124{font-size:21.493333pt;}
.fs0_c01124{font-size:49.173333pt;}
.fs1_c01124{font-size:55.306667pt;}
.fs2_c01124{font-size:64.533333pt;}
.y0_c01124{bottom:0.000000pt;}
.y4_c01124{bottom:754.173333pt;}
.y6_c01124{bottom:1140.480000pt;}
.y5_c01124{bottom:1145.853333pt;}
.y3_c01124{bottom:1244.160000pt;}
.y2_c01124{bottom:1246.466667pt;}
.y1_c01124{bottom:1247.226667pt;}
.h7_c01124{height:8.303099pt;}
.h6_c01124{height:13.822500pt;}
.h5_c01124{height:19.341901pt;}
.h2_c01124{height:44.251198pt;}
.h3_c01124{height:49.770599pt;}
.h4_c01124{height:58.073698pt;}
.h0_c01124{height:1352.453333pt;}
.h1_c01124{height:1352.666667pt;}
.w0_c01124{width:967.680000pt;}
.w1_c01124{width:968.000000pt;}
.x0_c01124{left:0.000000pt;}
.x1_c01124{left:333.306667pt;}
.x2_c01124{left:370.173333pt;}
.x3_c01124{left:478.466667pt;}
.x5_c01124{left:830.213333pt;}
.x6_c01124{left:832.507200pt;}
.x4_c01124{left:916.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_85daceae6fb148d26940f3c6.woff2')format("woff");}.ff1_c01125{font-family:ff1_c01125;line-height:1.109863;font-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_c01125{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);}
.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;}
.fs0_c01125{font-size:600.000000px;}
.y0_c01125{bottom:0.000000px;}
.y1_c01125{bottom:15.000000px;}
.h2_c01125{height:539.941406px;}
.h0_c01125{height:1515.450000px;}
.h1_c01125{height:1515.750000px;}
.w0_c01125{width:1088.640000px;}
.w1_c01125{width:1089.000000px;}
.x0_c01125{left:0.000000px;}
.x1_c01125{left:15.000000px;}
@media print{
.v0_c01125{vertical-align:0.000000pt;}
.ls0_c01125{letter-spacing:0.000000pt;}
.ws0_c01125{word-spacing:0.000000pt;}
.fs0_c01125{font-size:533.333333pt;}
.y0_c01125{bottom:0.000000pt;}
.y1_c01125{bottom:13.333333pt;}
.h2_c01125{height:479.947917pt;}
.h0_c01125{height:1347.066667pt;}
.h1_c01125{height:1347.333333pt;}
.w0_c01125{width:967.680000pt;}
.w1_c01125{width:968.000000pt;}
.x0_c01125{left:0.000000pt;}
.x1_c01125{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aeeea1068089adca6a898697.woff2')format("woff");}.ff1_c01126{font-family:ff1_c01126;line-height:1.109863;font-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_c01126{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c01126{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c01126{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);}
.m1_c01126{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c01126{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2_c01126{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c01126{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5_c01126{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);}
.m4_c01126{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,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;}
.fs6_c01126{font-size:6.000000px;}
.fs0_c01126{font-size:6.900000px;}
.fs1_c01126{font-size:27.660000px;}
.fs2_c01126{font-size:34.560000px;}
.fs5_c01126{font-size:58.740000px;}
.fs3_c01126{font-size:62.220000px;}
.fs7_c01126{font-size:69.120000px;}
.fs4_c01126{font-size:76.020000px;}
.y0_c01126{bottom:0.000000px;}
.y5_c01126{bottom:349.050000px;}
.y4_c01126{bottom:349.920000px;}
.y6_c01126{bottom:350.790000px;}
.y3_c01126{bottom:865.725000px;}
.y2_c01126{bottom:1088.640000px;}
.y1_c01126{bottom:1091.235000px;}
.h8_c01126{height:5.399414px;}
.h2_c01126{height:6.209326px;}
.h3_c01126{height:24.891299px;}
.h4_c01126{height:31.100625px;}
.h7_c01126{height:52.860264px;}
.h5_c01126{height:55.991924px;}
.h9_c01126{height:62.201250px;}
.h6_c01126{height:68.410576px;}
.h0_c01126{height:1521.510000px;}
.h1_c01126{height:1521.750000px;}
.w0_c01126{width:1088.640000px;}
.w1_c01126{width:1089.000000px;}
.x0_c01126{left:0.000000px;}
.x1_c01126{left:607.395000px;}
.x2_c01126{left:630.720000px;}
.x3_c01126{left:653.190000px;}
.x4_c01126{left:672.195000px;}
.x5_c01126{left:695.520000px;}
.x6_c01126{left:723.165000px;}
.x7_c01126{left:730.080000px;}
@media print{
.v0_c01126{vertical-align:0.000000pt;}
.ls0_c01126{letter-spacing:0.000000pt;}
.ws0_c01126{word-spacing:0.000000pt;}
.fs6_c01126{font-size:5.333333pt;}
.fs0_c01126{font-size:6.133333pt;}
.fs1_c01126{font-size:24.586667pt;}
.fs2_c01126{font-size:30.720000pt;}
.fs5_c01126{font-size:52.213333pt;}
.fs3_c01126{font-size:55.306667pt;}
.fs7_c01126{font-size:61.440000pt;}
.fs4_c01126{font-size:67.573333pt;}
.y0_c01126{bottom:0.000000pt;}
.y5_c01126{bottom:310.266667pt;}
.y4_c01126{bottom:311.040000pt;}
.y6_c01126{bottom:311.813333pt;}
.y3_c01126{bottom:769.533333pt;}
.y2_c01126{bottom:967.680000pt;}
.y1_c01126{bottom:969.986667pt;}
.h8_c01126{height:4.799479pt;}
.h2_c01126{height:5.519401pt;}
.h3_c01126{height:22.125599pt;}
.h4_c01126{height:27.645000pt;}
.h7_c01126{height:46.986901pt;}
.h5_c01126{height:49.770599pt;}
.h9_c01126{height:55.290000pt;}
.h6_c01126{height:60.809401pt;}
.h0_c01126{height:1352.453333pt;}
.h1_c01126{height:1352.666667pt;}
.w0_c01126{width:967.680000pt;}
.w1_c01126{width:968.000000pt;}
.x0_c01126{left:0.000000pt;}
.x1_c01126{left:539.906667pt;}
.x2_c01126{left:560.640000pt;}
.x3_c01126{left:580.613333pt;}
.x4_c01126{left:597.506667pt;}
.x5_c01126{left:618.240000pt;}
.x6_c01126{left:642.813333pt;}
.x7_c01126{left:648.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_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_efd4ea47bb86860606bdb428.woff2')format("woff");}.ff1_c01127{font-family:ff1_c01127;line-height:1.109863;font-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_c01127{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c01127{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01127{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2_c01127{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);}
.m0_c01127{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01127{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4_c01127{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c01127{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);}
.m5_c01127{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,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;}
.fs6_c01127{font-size:3.456000px;}
.fs9_c01127{font-size:6.000000px;}
.fs1_c01127{font-size:6.900000px;}
.fs0_c01127{font-size:13.800000px;}
.fs5_c01127{font-size:20.760000px;}
.fs8_c01127{font-size:24.180000px;}
.fs7_c01127{font-size:38.040000px;}
.fs2_c01127{font-size:62.220000px;}
.fs3_c01127{font-size:69.120000px;}
.fs4_c01127{font-size:82.920000px;}
.y0_c01127{bottom:0.000000px;}
.y9_c01127{bottom:653.190000px;}
.ya_c01127{bottom:661.830000px;}
.y8_c01127{bottom:698.970000px;}
.y6_c01127{bottom:1040.250000px;}
.y7_c01127{bottom:1042.845000px;}
.y5_c01127{bottom:1375.485000px;}
.y3_c01127{bottom:1376.355000px;}
.y4_c01127{bottom:1377.210000px;}
.y1_c01127{bottom:1398.810000px;}
.y2_c01127{bottom:1401.405000px;}
.h8_c01127{height:3.110063px;}
.hb_c01127{height:5.399414px;}
.h3_c01127{height:6.209326px;}
.h2_c01127{height:12.418652px;}
.h7_c01127{height:18.681973px;}
.ha_c01127{height:21.759639px;}
.h9_c01127{height:34.232285px;}
.h4_c01127{height:55.991924px;}
.h5_c01127{height:62.201250px;}
.h6_c01127{height:74.619902px;}
.h0_c01127{height:1515.450000px;}
.h1_c01127{height:1515.750000px;}
.w0_c01127{width:1088.640000px;}
.w1_c01127{width:1089.000000px;}
.x0_c01127{left:0.000000px;}
.x6_c01127{left:14.685000px;}
.x9_c01127{left:16.410000px;}
.xa_c01127{left:28.515000px;}
.x7_c01127{left:34.560000px;}
.x8_c01127{left:78.630000px;}
.x3_c01127{left:430.275000px;}
.x4_c01127{left:458.790000px;}
.x1_c01127{left:476.925000px;}
.x2_c01127{left:492.480000px;}
.x5_c01127{left:520.125000px;}
@media print{
.v0_c01127{vertical-align:0.000000pt;}
.ls0_c01127{letter-spacing:0.000000pt;}
.ws0_c01127{word-spacing:0.000000pt;}
.fs6_c01127{font-size:3.072000pt;}
.fs9_c01127{font-size:5.333333pt;}
.fs1_c01127{font-size:6.133333pt;}
.fs0_c01127{font-size:12.266667pt;}
.fs5_c01127{font-size:18.453333pt;}
.fs8_c01127{font-size:21.493333pt;}
.fs7_c01127{font-size:33.813333pt;}
.fs2_c01127{font-size:55.306667pt;}
.fs3_c01127{font-size:61.440000pt;}
.fs4_c01127{font-size:73.706667pt;}
.y0_c01127{bottom:0.000000pt;}
.y9_c01127{bottom:580.613333pt;}
.ya_c01127{bottom:588.293333pt;}
.y8_c01127{bottom:621.306667pt;}
.y6_c01127{bottom:924.666667pt;}
.y7_c01127{bottom:926.973333pt;}
.y5_c01127{bottom:1222.653333pt;}
.y3_c01127{bottom:1223.426667pt;}
.y4_c01127{bottom:1224.186667pt;}
.y1_c01127{bottom:1243.386667pt;}
.y2_c01127{bottom:1245.693333pt;}
.h8_c01127{height:2.764500pt;}
.hb_c01127{height:4.799479pt;}
.h3_c01127{height:5.519401pt;}
.h2_c01127{height:11.038802pt;}
.h7_c01127{height:16.606198pt;}
.ha_c01127{height:19.341901pt;}
.h9_c01127{height:30.428698pt;}
.h4_c01127{height:49.770599pt;}
.h5_c01127{height:55.290000pt;}
.h6_c01127{height:66.328802pt;}
.h0_c01127{height:1347.066667pt;}
.h1_c01127{height:1347.333333pt;}
.w0_c01127{width:967.680000pt;}
.w1_c01127{width:968.000000pt;}
.x0_c01127{left:0.000000pt;}
.x6_c01127{left:13.053333pt;}
.x9_c01127{left:14.586667pt;}
.xa_c01127{left:25.346667pt;}
.x7_c01127{left:30.720000pt;}
.x8_c01127{left:69.893333pt;}
.x3_c01127{left:382.466667pt;}
.x4_c01127{left:407.813333pt;}
.x1_c01127{left:423.933333pt;}
.x2_c01127{left:437.760000pt;}
.x5_c01127{left:462.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1c0b4e6896e6bcfe59363433.woff2')format("woff");}.ff1_c01128{font-family:ff1_c01128;line-height:1.109863;font-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_c01128{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.m1_c01128{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01128{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);}
.m0_c01128{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.v1_c01128{vertical-align:-6.900000px;}
.v0_c01128{vertical-align:0.000000px;}
.ls1_c01128{letter-spacing:0.000000px;}
.ls0_c01128{letter-spacing:129.567000px;}
.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;}
.fs3_c01128{font-size:3.456000px;}
.fs1_c01128{font-size:6.900000px;}
.fs2_c01128{font-size:10.380000px;}
.fs4_c01128{font-size:17.280000px;}
.fs0_c01128{font-size:27.660000px;}
.fs5_c01128{font-size:72.600000px;}
.y0_c01128{bottom:0.000000px;}
.y1_c01128{bottom:1157.760000px;}
.y4_c01128{bottom:1376.355000px;}
.y3_c01128{bottom:1399.680000px;}
.y2_c01128{bottom:1442.010000px;}
.h4_c01128{height:3.110063px;}
.h3_c01128{height:6.209326px;}
.h5_c01128{height:15.550313px;}
.h2_c01128{height:24.891299px;}
.h6_c01128{height:65.332910px;}
.h0_c01128{height:1521.510000px;}
.h1_c01128{height:1521.750000px;}
.w0_c01128{width:1088.640000px;}
.w1_c01128{width:1089.000000px;}
.x0_c01128{left:0.000000px;}
.x2_c01128{left:292.035000px;}
.x5_c01128{left:546.045000px;}
.x3_c01128{left:678.240000px;}
.x4_c01128{left:692.925000px;}
.x1_c01128{left:894.240000px;}
@media print{
.v1_c01128{vertical-align:-6.133333pt;}
.v0_c01128{vertical-align:0.000000pt;}
.ls1_c01128{letter-spacing:0.000000pt;}
.ls0_c01128{letter-spacing:115.170667pt;}
.ws0_c01128{word-spacing:0.000000pt;}
.fs3_c01128{font-size:3.072000pt;}
.fs1_c01128{font-size:6.133333pt;}
.fs2_c01128{font-size:9.226667pt;}
.fs4_c01128{font-size:15.360000pt;}
.fs0_c01128{font-size:24.586667pt;}
.fs5_c01128{font-size:64.533333pt;}
.y0_c01128{bottom:0.000000pt;}
.y1_c01128{bottom:1029.120000pt;}
.y4_c01128{bottom:1223.426667pt;}
.y3_c01128{bottom:1244.160000pt;}
.y2_c01128{bottom:1281.786667pt;}
.h4_c01128{height:2.764500pt;}
.h3_c01128{height:5.519401pt;}
.h5_c01128{height:13.822500pt;}
.h2_c01128{height:22.125599pt;}
.h6_c01128{height:58.073698pt;}
.h0_c01128{height:1352.453333pt;}
.h1_c01128{height:1352.666667pt;}
.w0_c01128{width:967.680000pt;}
.w1_c01128{width:968.000000pt;}
.x0_c01128{left:0.000000pt;}
.x2_c01128{left:259.586667pt;}
.x5_c01128{left:485.373333pt;}
.x3_c01128{left:602.880000pt;}
.x4_c01128{left:615.933333pt;}
.x1_c01128{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_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_f7595b034b07c177f67aa037.woff2')format("woff");}.ff1_c01129{font-family:ff1_c01129;line-height:1.109863;font-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_c01129{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);}
.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:600.000000px;}
.y0_c01129{bottom:0.000000px;}
.y1_c01129{bottom:15.000000px;}
.h2_c01129{height:539.941406px;}
.h0_c01129{height:1515.450000px;}
.h1_c01129{height:1515.750000px;}
.w0_c01129{width:1088.640000px;}
.w1_c01129{width:1089.000000px;}
.x0_c01129{left:0.000000px;}
.x1_c01129{left:15.000000px;}
@media print{
.v0_c01129{vertical-align:0.000000pt;}
.ls0_c01129{letter-spacing:0.000000pt;}
.ws0_c01129{word-spacing:0.000000pt;}
.fs0_c01129{font-size:533.333333pt;}
.y0_c01129{bottom:0.000000pt;}
.y1_c01129{bottom:13.333333pt;}
.h2_c01129{height:479.947917pt;}
.h0_c01129{height:1347.066667pt;}
.h1_c01129{height:1347.333333pt;}
.w0_c01129{width:967.680000pt;}
.w1_c01129{width:968.000000pt;}
.x0_c01129{left:0.000000pt;}
.x1_c01129{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff6088f278779a48166b0661.woff2')format("woff");}.ff1_c01130{font-family:ff1_c01130;line-height:1.109863;font-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_c01130{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m9_c01130{transform:matrix(0.073425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073425,0.000000,0.000000,0.250000,0,0);}
.m2_c01130{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m12_c01130{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m17_c01130{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.mb_c01130{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.m5_c01130{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);}
.m3_c01130{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.md_c01130{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);}
.m6_c01130{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);}
.m18_c01130{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);}
.mc_c01130{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01130{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma_c01130{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c01130{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1_c01130{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);}
.m10_c01130{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);}
.m7_c01130{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m14_c01130{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);}
.m11_c01130{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m15_c01130{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);}
.m16_c01130{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m13_c01130{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m0_c01130{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.me_c01130{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,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;}
.fs7_c01130{font-size:3.456000px;}
.fs2_c01130{font-size:6.000000px;}
.fs9_c01130{font-size:13.800000px;}
.fs1_c01130{font-size:17.280000px;}
.fsa_c01130{font-size:24.180000px;}
.fsf_c01130{font-size:31.080000px;}
.fsd_c01130{font-size:34.560000px;}
.fsb_c01130{font-size:38.040000px;}
.fs0_c01130{font-size:44.940000px;}
.fs8_c01130{font-size:55.320000px;}
.fse_c01130{font-size:58.740000px;}
.fs4_c01130{font-size:62.220000px;}
.fsc_c01130{font-size:69.120000px;}
.fs5_c01130{font-size:89.880000px;}
.fs6_c01130{font-size:93.300000px;}
.fs3_c01130{font-size:100.200000px;}
.y0_c01130{bottom:0.000000px;}
.y1a_c01130{bottom:355.110000px;}
.y14_c01130{bottom:362.010000px;}
.y15_c01130{bottom:362.880000px;}
.y17_c01130{bottom:363.750000px;}
.y16_c01130{bottom:364.605000px;}
.y18_c01130{bottom:365.475000px;}
.y19_c01130{bottom:366.330000px;}
.y12_c01130{bottom:399.165000px;}
.y11_c01130{bottom:400.890000px;}
.y13_c01130{bottom:402.630000px;}
.yd_c01130{bottom:405.210000px;}
.ya_c01130{bottom:406.950000px;}
.yb_c01130{bottom:407.805000px;}
.ye_c01130{bottom:410.400000px;}
.yc_c01130{bottom:411.270000px;}
.y8_c01130{bottom:413.850000px;}
.y10_c01130{bottom:416.445000px;}
.yf_c01130{bottom:417.315000px;}
.y9_c01130{bottom:423.360000px;}
.y7_c01130{bottom:427.680000px;}
.y4_c01130{bottom:428.550000px;}
.y6_c01130{bottom:436.320000px;}
.y5_c01130{bottom:438.045000px;}
.y3_c01130{bottom:457.920000px;}
.y2_c01130{bottom:468.285000px;}
.y1_c01130{bottom:1244.160000px;}
.h9_c01130{height:3.110063px;}
.h4_c01130{height:5.399414px;}
.hb_c01130{height:12.418652px;}
.h3_c01130{height:15.550313px;}
.hc_c01130{height:21.759639px;}
.h11_c01130{height:27.968965px;}
.hf_c01130{height:31.100625px;}
.hd_c01130{height:34.232285px;}
.h2_c01130{height:40.441611px;}
.ha_c01130{height:49.782598px;}
.h10_c01130{height:52.860264px;}
.h6_c01130{height:55.991924px;}
.he_c01130{height:62.201250px;}
.h7_c01130{height:80.883223px;}
.h8_c01130{height:83.960889px;}
.h5_c01130{height:90.170215px;}
.h0_c01130{height:1521.510000px;}
.h1_c01130{height:1521.750000px;}
.w0_c01130{width:1088.640000px;}
.w1_c01130{width:1089.000000px;}
.x0_c01130{left:0.000000px;}
.x3_c01130{left:247.965000px;}
.x4_c01130{left:258.330000px;}
.x8_c01130{left:261.795000px;}
.x12_c01130{left:266.115000px;}
.x9_c01130{left:277.350000px;}
.xf_c01130{left:281.670000px;}
.x13_c01130{left:289.440000px;}
.xa_c01130{left:292.035000px;}
.x10_c01130{left:294.630000px;}
.xb_c01130{left:311.910000px;}
.xc_c01130{left:317.955000px;}
.x14_c01130{left:324.870000px;}
.x5_c01130{left:332.640000px;}
.x15_c01130{left:342.150000px;}
.x6_c01130{left:355.110000px;}
.x16_c01130{left:387.930000px;}
.x17_c01130{left:411.270000px;}
.x11_c01130{left:431.130000px;}
.x18_c01130{left:432.870000px;}
.xd_c01130{left:435.450000px;}
.x19_c01130{left:454.470000px;}
.x7_c01130{left:458.790000px;}
.x1a_c01130{left:470.010000px;}
.xe_c01130{left:476.925000px;}
.x2_c01130{left:908.070000px;}
.x1_c01130{left:1001.370000px;}
@media print{
.v0_c01130{vertical-align:0.000000pt;}
.ls0_c01130{letter-spacing:0.000000pt;}
.ws0_c01130{word-spacing:0.000000pt;}
.fs7_c01130{font-size:3.072000pt;}
.fs2_c01130{font-size:5.333333pt;}
.fs9_c01130{font-size:12.266667pt;}
.fs1_c01130{font-size:15.360000pt;}
.fsa_c01130{font-size:21.493333pt;}
.fsf_c01130{font-size:27.626667pt;}
.fsd_c01130{font-size:30.720000pt;}
.fsb_c01130{font-size:33.813333pt;}
.fs0_c01130{font-size:39.946667pt;}
.fs8_c01130{font-size:49.173333pt;}
.fse_c01130{font-size:52.213333pt;}
.fs4_c01130{font-size:55.306667pt;}
.fsc_c01130{font-size:61.440000pt;}
.fs5_c01130{font-size:79.893333pt;}
.fs6_c01130{font-size:82.933333pt;}
.fs3_c01130{font-size:89.066667pt;}
.y0_c01130{bottom:0.000000pt;}
.y1a_c01130{bottom:315.653333pt;}
.y14_c01130{bottom:321.786667pt;}
.y15_c01130{bottom:322.560000pt;}
.y17_c01130{bottom:323.333333pt;}
.y16_c01130{bottom:324.093333pt;}
.y18_c01130{bottom:324.866667pt;}
.y19_c01130{bottom:325.626667pt;}
.y12_c01130{bottom:354.813333pt;}
.y11_c01130{bottom:356.346667pt;}
.y13_c01130{bottom:357.893333pt;}
.yd_c01130{bottom:360.186667pt;}
.ya_c01130{bottom:361.733333pt;}
.yb_c01130{bottom:362.493333pt;}
.ye_c01130{bottom:364.800000pt;}
.yc_c01130{bottom:365.573333pt;}
.y8_c01130{bottom:367.866667pt;}
.y10_c01130{bottom:370.173333pt;}
.yf_c01130{bottom:370.946667pt;}
.y9_c01130{bottom:376.320000pt;}
.y7_c01130{bottom:380.160000pt;}
.y4_c01130{bottom:380.933333pt;}
.y6_c01130{bottom:387.840000pt;}
.y5_c01130{bottom:389.373333pt;}
.y3_c01130{bottom:407.040000pt;}
.y2_c01130{bottom:416.253333pt;}
.y1_c01130{bottom:1105.920000pt;}
.h9_c01130{height:2.764500pt;}
.h4_c01130{height:4.799479pt;}
.hb_c01130{height:11.038802pt;}
.h3_c01130{height:13.822500pt;}
.hc_c01130{height:19.341901pt;}
.h11_c01130{height:24.861302pt;}
.hf_c01130{height:27.645000pt;}
.hd_c01130{height:30.428698pt;}
.h2_c01130{height:35.948099pt;}
.ha_c01130{height:44.251198pt;}
.h10_c01130{height:46.986901pt;}
.h6_c01130{height:49.770599pt;}
.he_c01130{height:55.290000pt;}
.h7_c01130{height:71.896198pt;}
.h8_c01130{height:74.631901pt;}
.h5_c01130{height:80.151302pt;}
.h0_c01130{height:1352.453333pt;}
.h1_c01130{height:1352.666667pt;}
.w0_c01130{width:967.680000pt;}
.w1_c01130{width:968.000000pt;}
.x0_c01130{left:0.000000pt;}
.x3_c01130{left:220.413333pt;}
.x4_c01130{left:229.626667pt;}
.x8_c01130{left:232.706667pt;}
.x12_c01130{left:236.546667pt;}
.x9_c01130{left:246.533333pt;}
.xf_c01130{left:250.373333pt;}
.x13_c01130{left:257.280000pt;}
.xa_c01130{left:259.586667pt;}
.x10_c01130{left:261.893333pt;}
.xb_c01130{left:277.253333pt;}
.xc_c01130{left:282.626667pt;}
.x14_c01130{left:288.773333pt;}
.x5_c01130{left:295.680000pt;}
.x15_c01130{left:304.133333pt;}
.x6_c01130{left:315.653333pt;}
.x16_c01130{left:344.826667pt;}
.x17_c01130{left:365.573333pt;}
.x11_c01130{left:383.226667pt;}
.x18_c01130{left:384.773333pt;}
.xd_c01130{left:387.066667pt;}
.x19_c01130{left:403.973333pt;}
.x7_c01130{left:407.813333pt;}
.x1a_c01130{left:417.786667pt;}
.xe_c01130{left:423.933333pt;}
.x2_c01130{left:807.173333pt;}
.x1_c01130{left:890.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45c48124a825360559835c64.woff2')format("woff");}.ff1_c01131{font-family:ff1_c01131;line-height:1.109863;font-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_c01131{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);}
.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:600.000000px;}
.y0_c01131{bottom:0.000000px;}
.y1_c01131{bottom:15.000000px;}
.h2_c01131{height:539.941406px;}
.h0_c01131{height:1515.450000px;}
.h1_c01131{height:1515.750000px;}
.w0_c01131{width:1088.640000px;}
.w1_c01131{width:1089.000000px;}
.x0_c01131{left:0.000000px;}
.x1_c01131{left:15.000000px;}
@media print{
.v0_c01131{vertical-align:0.000000pt;}
.ls0_c01131{letter-spacing:0.000000pt;}
.ws0_c01131{word-spacing:0.000000pt;}
.fs0_c01131{font-size:533.333333pt;}
.y0_c01131{bottom:0.000000pt;}
.y1_c01131{bottom:13.333333pt;}
.h2_c01131{height:479.947917pt;}
.h0_c01131{height:1347.066667pt;}
.h1_c01131{height:1347.333333pt;}
.w0_c01131{width:967.680000pt;}
.w1_c01131{width:968.000000pt;}
.x0_c01131{left:0.000000pt;}
.x1_c01131{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26fd3d8590cfe23cd82d1a84.woff2')format("woff");}.ff1_c01132{font-family:ff1_c01132;line-height:1.109863;font-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_c01132{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01132{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);}
.m2_c01132{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);}
.m9_c01132{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);}
.m0_c01132{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);}
.m5_c01132{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c01132{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);}
.m6_c01132{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);}
.m7_c01132{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1_c01132{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);}
.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;}
.fs8_c01132{font-size:3.456000px;}
.fs1_c01132{font-size:20.760000px;}
.fs0_c01132{font-size:48.360000px;}
.fs5_c01132{font-size:58.740000px;}
.fs3_c01132{font-size:62.220000px;}
.fs6_c01132{font-size:65.640000px;}
.fs4_c01132{font-size:69.120000px;}
.fs2_c01132{font-size:79.500000px;}
.fs7_c01132{font-size:82.920000px;}
.y0_c01132{bottom:0.000000px;}
.y1_c01132{bottom:1194.045000px;}
.y2_c01132{bottom:1197.510000px;}
.y5_c01132{bottom:1387.590000px;}
.y4_c01132{bottom:1389.315000px;}
.y3_c01132{bottom:1390.170000px;}
.ha_c01132{height:3.110063px;}
.h3_c01132{height:18.681973px;}
.h2_c01132{height:43.519277px;}
.h7_c01132{height:52.860264px;}
.h5_c01132{height:55.991924px;}
.h8_c01132{height:59.069590px;}
.h6_c01132{height:62.201250px;}
.h4_c01132{height:71.542236px;}
.h9_c01132{height:74.619902px;}
.h0_c01132{height:1521.510000px;}
.h1_c01132{height:1521.750000px;}
.w0_c01132{width:1088.640000px;}
.w1_c01132{width:1089.000000px;}
.x0_c01132{left:0.000000px;}
.x3_c01132{left:566.790000px;}
.x4_c01132{left:584.070000px;}
.x5_c01132{left:601.350000px;}
.x6_c01132{left:620.355000px;}
.x7_c01132{left:636.765000px;}
.x8_c01132{left:657.510000px;}
.x9_c01132{left:688.605000px;}
.xa_c01132{left:766.365000px;}
.xb_c01132{left:776.730000px;}
.x1_c01132{left:1054.080000px;}
.x2_c01132{left:1065.315000px;}
@media print{
.v0_c01132{vertical-align:0.000000pt;}
.ls0_c01132{letter-spacing:0.000000pt;}
.ws0_c01132{word-spacing:0.000000pt;}
.fs8_c01132{font-size:3.072000pt;}
.fs1_c01132{font-size:18.453333pt;}
.fs0_c01132{font-size:42.986667pt;}
.fs5_c01132{font-size:52.213333pt;}
.fs3_c01132{font-size:55.306667pt;}
.fs6_c01132{font-size:58.346667pt;}
.fs4_c01132{font-size:61.440000pt;}
.fs2_c01132{font-size:70.666667pt;}
.fs7_c01132{font-size:73.706667pt;}
.y0_c01132{bottom:0.000000pt;}
.y1_c01132{bottom:1061.373333pt;}
.y2_c01132{bottom:1064.453333pt;}
.y5_c01132{bottom:1233.413333pt;}
.y4_c01132{bottom:1234.946667pt;}
.y3_c01132{bottom:1235.706667pt;}
.ha_c01132{height:2.764500pt;}
.h3_c01132{height:16.606198pt;}
.h2_c01132{height:38.683802pt;}
.h7_c01132{height:46.986901pt;}
.h5_c01132{height:49.770599pt;}
.h8_c01132{height:52.506302pt;}
.h6_c01132{height:55.290000pt;}
.h4_c01132{height:63.593099pt;}
.h9_c01132{height:66.328802pt;}
.h0_c01132{height:1352.453333pt;}
.h1_c01132{height:1352.666667pt;}
.w0_c01132{width:967.680000pt;}
.w1_c01132{width:968.000000pt;}
.x0_c01132{left:0.000000pt;}
.x3_c01132{left:503.813333pt;}
.x4_c01132{left:519.173333pt;}
.x5_c01132{left:534.533333pt;}
.x6_c01132{left:551.426667pt;}
.x7_c01132{left:566.013333pt;}
.x8_c01132{left:584.453333pt;}
.x9_c01132{left:612.093333pt;}
.xa_c01132{left:681.213333pt;}
.xb_c01132{left:690.426667pt;}
.x1_c01132{left:936.960000pt;}
.x2_c01132{left:946.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_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_c5feb0e0f67200baf33c4a34.woff2')format("woff");}.ff1_c01133{font-family:ff1_c01133;line-height:1.109863;font-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_c01133{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma_c01133{transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);}
.mb_c01133{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m5_c01133{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01133{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);}
.m6_c01133{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01133{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01133{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c01133{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mc_c01133{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.md_c01133{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m8_c01133{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m4_c01133{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m0_c01133{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,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;}
.fs3_c01133{font-size:3.456000px;}
.fs0_c01133{font-size:6.900000px;}
.fs8_c01133{font-size:10.380000px;}
.fs4_c01133{font-size:17.280000px;}
.fs5_c01133{font-size:20.760000px;}
.fs9_c01133{font-size:27.660000px;}
.fs7_c01133{font-size:51.840000px;}
.fs2_c01133{font-size:58.740000px;}
.fs1_c01133{font-size:65.640000px;}
.fs6_c01133{font-size:124.440000px;}
.y0_c01133{bottom:0.000000px;}
.yd_c01133{bottom:1147.395000px;}
.yc_c01133{bottom:1148.250000px;}
.yb_c01133{bottom:1149.990000px;}
.ya_c01133{bottom:1163.805000px;}
.y9_c01133{bottom:1173.315000px;}
.y7_c01133{bottom:1356.480000px;}
.y8_c01133{bottom:1358.205000px;}
.y6_c01133{bottom:1361.670000px;}
.y5_c01133{bottom:1378.080000px;}
.y4_c01133{bottom:1380.675000px;}
.y2_c01133{bottom:1388.445000px;}
.y3_c01133{bottom:1389.315000px;}
.y1_c01133{bottom:1401.405000px;}
.h5_c01133{height:3.110063px;}
.h2_c01133{height:6.209326px;}
.ha_c01133{height:9.340986px;}
.h6_c01133{height:15.550313px;}
.h7_c01133{height:18.681973px;}
.hb_c01133{height:24.891299px;}
.h9_c01133{height:46.650937px;}
.h4_c01133{height:52.860264px;}
.h3_c01133{height:59.069590px;}
.h8_c01133{height:111.983848px;}
.h0_c01133{height:1515.450000px;}
.h1_c01133{height:1515.750000px;}
.w0_c01133{width:1088.640000px;}
.w1_c01133{width:1089.000000px;}
.x0_c01133{left:0.000000px;}
.x9_c01133{left:101.085000px;}
.xa_c01133{left:108.870000px;}
.x6_c01133{left:142.560000px;}
.x7_c01133{left:152.070000px;}
.x8_c01133{left:159.840000px;}
.xb_c01133{left:216.000000px;}
.xc_c01133{left:228.960000px;}
.x1_c01133{left:416.445000px;}
.x2_c01133{left:435.450000px;}
.x3_c01133{left:488.160000px;}
.x4_c01133{left:508.035000px;}
.x5_c01133{left:535.680000px;}
@media print{
.v0_c01133{vertical-align:0.000000pt;}
.ls0_c01133{letter-spacing:0.000000pt;}
.ws0_c01133{word-spacing:0.000000pt;}
.fs3_c01133{font-size:3.072000pt;}
.fs0_c01133{font-size:6.133333pt;}
.fs8_c01133{font-size:9.226667pt;}
.fs4_c01133{font-size:15.360000pt;}
.fs5_c01133{font-size:18.453333pt;}
.fs9_c01133{font-size:24.586667pt;}
.fs7_c01133{font-size:46.080000pt;}
.fs2_c01133{font-size:52.213333pt;}
.fs1_c01133{font-size:58.346667pt;}
.fs6_c01133{font-size:110.613333pt;}
.y0_c01133{bottom:0.000000pt;}
.yd_c01133{bottom:1019.906667pt;}
.yc_c01133{bottom:1020.666667pt;}
.yb_c01133{bottom:1022.213333pt;}
.ya_c01133{bottom:1034.493333pt;}
.y9_c01133{bottom:1042.946667pt;}
.y7_c01133{bottom:1205.760000pt;}
.y8_c01133{bottom:1207.293333pt;}
.y6_c01133{bottom:1210.373333pt;}
.y5_c01133{bottom:1224.960000pt;}
.y4_c01133{bottom:1227.266667pt;}
.y2_c01133{bottom:1234.173333pt;}
.y3_c01133{bottom:1234.946667pt;}
.y1_c01133{bottom:1245.693333pt;}
.h5_c01133{height:2.764500pt;}
.h2_c01133{height:5.519401pt;}
.ha_c01133{height:8.303099pt;}
.h6_c01133{height:13.822500pt;}
.h7_c01133{height:16.606198pt;}
.hb_c01133{height:22.125599pt;}
.h9_c01133{height:41.467500pt;}
.h4_c01133{height:46.986901pt;}
.h3_c01133{height:52.506302pt;}
.h8_c01133{height:99.541198pt;}
.h0_c01133{height:1347.066667pt;}
.h1_c01133{height:1347.333333pt;}
.w0_c01133{width:967.680000pt;}
.w1_c01133{width:968.000000pt;}
.x0_c01133{left:0.000000pt;}
.x9_c01133{left:89.853333pt;}
.xa_c01133{left:96.773333pt;}
.x6_c01133{left:126.720000pt;}
.x7_c01133{left:135.173333pt;}
.x8_c01133{left:142.080000pt;}
.xb_c01133{left:192.000000pt;}
.xc_c01133{left:203.520000pt;}
.x1_c01133{left:370.173333pt;}
.x2_c01133{left:387.066667pt;}
.x3_c01133{left:433.920000pt;}
.x4_c01133{left:451.586667pt;}
.x5_c01133{left:476.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_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_7e4c908df2bcaf9c0bbd0d56.woff2')format("woff");}.ff1_c01134{font-family:ff1_c01134;line-height:1.109863;font-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_c01134{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);}
.v0_c01134{vertical-align:0.000000px;}
.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;}
.fc0_c01134{color:transparent;}
.fs0_c01134{font-size:600.000000px;}
.y0_c01134{bottom:0.000000px;}
.y1_c01134{bottom:15.000000px;}
.h2_c01134{height:539.941406px;}
.h0_c01134{height:1521.510000px;}
.h1_c01134{height:1521.750000px;}
.w0_c01134{width:1088.640000px;}
.w1_c01134{width:1089.000000px;}
.x0_c01134{left:0.000000px;}
.x1_c01134{left:15.000000px;}
@media print{
.v0_c01134{vertical-align:0.000000pt;}
.ls0_c01134{letter-spacing:0.000000pt;}
.ws0_c01134{word-spacing:0.000000pt;}
.fs0_c01134{font-size:533.333333pt;}
.y0_c01134{bottom:0.000000pt;}
.y1_c01134{bottom:13.333333pt;}
.h2_c01134{height:479.947917pt;}
.h0_c01134{height:1352.453333pt;}
.h1_c01134{height:1352.666667pt;}
.w0_c01134{width:967.680000pt;}
.w1_c01134{width:968.000000pt;}
.x0_c01134{left:0.000000pt;}
.x1_c01134{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e3dddce166ce198edf20287a.woff2')format("woff");}.ff1_c01135{font-family:ff1_c01135;line-height:1.109863;font-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_c01135{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);}
.m9_c01135{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c01135{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01135{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_c01135{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m0_c01135{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c01135{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m7_c01135{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5_c01135{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.ma_c01135{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4_c01135{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,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;}
.fs1_c01135{font-size:3.456000px;}
.fs7_c01135{font-size:6.900000px;}
.fs3_c01135{font-size:13.800000px;}
.fs2_c01135{font-size:17.280000px;}
.fs0_c01135{font-size:34.560000px;}
.fs6_c01135{font-size:51.840000px;}
.fs4_c01135{font-size:58.740000px;}
.fs5_c01135{font-size:65.640000px;}
.fs8_c01135{font-size:69.120000px;}
.y0_c01135{bottom:0.000000px;}
.yd_c01135{bottom:1238.115000px;}
.y1_c01135{bottom:1390.170000px;}
.yc_c01135{bottom:1392.765000px;}
.y6_c01135{bottom:1393.635000px;}
.y3_c01135{bottom:1394.490000px;}
.y7_c01135{bottom:1395.360000px;}
.y8_c01135{bottom:1396.230000px;}
.y2_c01135{bottom:1397.955000px;}
.y4_c01135{bottom:1398.810000px;}
.y5_c01135{bottom:1406.595000px;}
.yb_c01135{bottom:1407.450000px;}
.y9_c01135{bottom:1409.190000px;}
.ya_c01135{bottom:1415.235000px;}
.h3_c01135{height:3.110063px;}
.h9_c01135{height:6.209326px;}
.h5_c01135{height:12.418652px;}
.h4_c01135{height:15.550313px;}
.h2_c01135{height:31.100625px;}
.h8_c01135{height:46.650937px;}
.h6_c01135{height:52.860264px;}
.h7_c01135{height:59.069590px;}
.ha_c01135{height:62.201250px;}
.h0_c01135{height:1515.450000px;}
.h1_c01135{height:1515.750000px;}
.w0_c01135{width:1088.640000px;}
.w1_c01135{width:1089.000000px;}
.x0_c01135{left:0.000000px;}
.x10_c01135{left:12.960000px;}
.x1_c01135{left:271.290000px;}
.x2_c01135{left:295.485000px;}
.x3_c01135{left:333.510000px;}
.x4_c01135{left:338.685000px;}
.x5_c01135{left:394.845000px;}
.x6_c01135{left:418.170000px;}
.x7_c01135{left:441.510000px;}
.x8_c01135{left:463.965000px;}
.x9_c01135{left:483.840000px;}
.xa_c01135{left:553.830000px;}
.xb_c01135{left:654.045000px;}
.xc_c01135{left:678.240000px;}
.xe_c01135{left:712.800375px;}
.xd_c01135{left:718.844775px;}
.xf_c01135{left:838.950000px;}
@media print{
.v0_c01135{vertical-align:0.000000pt;}
.ls0_c01135{letter-spacing:0.000000pt;}
.ws0_c01135{word-spacing:0.000000pt;}
.fs1_c01135{font-size:3.072000pt;}
.fs7_c01135{font-size:6.133333pt;}
.fs3_c01135{font-size:12.266667pt;}
.fs2_c01135{font-size:15.360000pt;}
.fs0_c01135{font-size:30.720000pt;}
.fs6_c01135{font-size:46.080000pt;}
.fs4_c01135{font-size:52.213333pt;}
.fs5_c01135{font-size:58.346667pt;}
.fs8_c01135{font-size:61.440000pt;}
.y0_c01135{bottom:0.000000pt;}
.yd_c01135{bottom:1100.546667pt;}
.y1_c01135{bottom:1235.706667pt;}
.yc_c01135{bottom:1238.013333pt;}
.y6_c01135{bottom:1238.786667pt;}
.y3_c01135{bottom:1239.546667pt;}
.y7_c01135{bottom:1240.320000pt;}
.y8_c01135{bottom:1241.093333pt;}
.y2_c01135{bottom:1242.626667pt;}
.y4_c01135{bottom:1243.386667pt;}
.y5_c01135{bottom:1250.306667pt;}
.yb_c01135{bottom:1251.066667pt;}
.y9_c01135{bottom:1252.613333pt;}
.ya_c01135{bottom:1257.986667pt;}
.h3_c01135{height:2.764500pt;}
.h9_c01135{height:5.519401pt;}
.h5_c01135{height:11.038802pt;}
.h4_c01135{height:13.822500pt;}
.h2_c01135{height:27.645000pt;}
.h8_c01135{height:41.467500pt;}
.h6_c01135{height:46.986901pt;}
.h7_c01135{height:52.506302pt;}
.ha_c01135{height:55.290000pt;}
.h0_c01135{height:1347.066667pt;}
.h1_c01135{height:1347.333333pt;}
.w0_c01135{width:967.680000pt;}
.w1_c01135{width:968.000000pt;}
.x0_c01135{left:0.000000pt;}
.x10_c01135{left:11.520000pt;}
.x1_c01135{left:241.146667pt;}
.x2_c01135{left:262.653333pt;}
.x3_c01135{left:296.453333pt;}
.x4_c01135{left:301.053333pt;}
.x5_c01135{left:350.973333pt;}
.x6_c01135{left:371.706667pt;}
.x7_c01135{left:392.453333pt;}
.x8_c01135{left:412.413333pt;}
.x9_c01135{left:430.080000pt;}
.xa_c01135{left:492.293333pt;}
.xb_c01135{left:581.373333pt;}
.xc_c01135{left:602.880000pt;}
.xe_c01135{left:633.600333pt;}
.xd_c01135{left:638.973133pt;}
.xf_c01135{left:745.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cab5f3d28a3d20fde1f0bf0b.woff2')format("woff");}.ff1_c01136{font-family:ff1_c01136;line-height:1.109863;font-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_c01136{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m0_c01136{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c01136{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01136{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c01136{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);}
.m8_c01136{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m3_c01136{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m6_c01136{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c01136{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m4_c01136{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,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;}
.fs5_c01136{font-size:3.456000px;}
.fs7_c01136{font-size:6.000000px;}
.fs6_c01136{font-size:6.900000px;}
.fs1_c01136{font-size:10.380000px;}
.fs4_c01136{font-size:13.800000px;}
.fs0_c01136{font-size:17.280000px;}
.fs8_c01136{font-size:24.180000px;}
.fs2_c01136{font-size:58.740000px;}
.fs3_c01136{font-size:62.220000px;}
.y0_c01136{bottom:0.000000px;}
.y9_c01136{bottom:1250.205000px;}
.y8_c01136{bottom:1305.510000px;}
.y4_c01136{bottom:1395.360000px;}
.y6_c01136{bottom:1396.230000px;}
.y7_c01136{bottom:1397.085000px;}
.y5_c01136{bottom:1397.955000px;}
.y3_c01136{bottom:1398.810000px;}
.y2_c01136{bottom:1446.330000px;}
.y1_c01136{bottom:1448.070000px;}
.h7_c01136{height:3.110063px;}
.h9_c01136{height:5.399414px;}
.h8_c01136{height:6.209326px;}
.h3_c01136{height:9.340986px;}
.h6_c01136{height:12.418652px;}
.h2_c01136{height:15.550313px;}
.ha_c01136{height:21.759639px;}
.h4_c01136{height:52.860264px;}
.h5_c01136{height:55.991924px;}
.h0_c01136{height:1521.510000px;}
.h1_c01136{height:1521.750000px;}
.w0_c01136{width:1088.640000px;}
.w1_c01136{width:1089.000000px;}
.x0_c01136{left:0.000000px;}
.x3_c01136{left:369.795000px;}
.x4_c01136{left:410.400000px;}
.x6_c01136{left:432.000000px;}
.x5_c01136{left:474.330000px;}
.x7_c01136{left:491.610000px;}
.x8_c01136{left:503.715000px;}
.x9_c01136{left:515.805000px;}
.xa_c01136{left:989.280000px;}
.xb_c01136{left:1019.520000px;}
.x1_c01136{left:1043.715000px;}
.x2_c01136{left:1051.485000px;}
@media print{
.v0_c01136{vertical-align:0.000000pt;}
.ls0_c01136{letter-spacing:0.000000pt;}
.ws0_c01136{word-spacing:0.000000pt;}
.fs5_c01136{font-size:3.072000pt;}
.fs7_c01136{font-size:5.333333pt;}
.fs6_c01136{font-size:6.133333pt;}
.fs1_c01136{font-size:9.226667pt;}
.fs4_c01136{font-size:12.266667pt;}
.fs0_c01136{font-size:15.360000pt;}
.fs8_c01136{font-size:21.493333pt;}
.fs2_c01136{font-size:52.213333pt;}
.fs3_c01136{font-size:55.306667pt;}
.y0_c01136{bottom:0.000000pt;}
.y9_c01136{bottom:1111.293333pt;}
.y8_c01136{bottom:1160.453333pt;}
.y4_c01136{bottom:1240.320000pt;}
.y6_c01136{bottom:1241.093333pt;}
.y7_c01136{bottom:1241.853333pt;}
.y5_c01136{bottom:1242.626667pt;}
.y3_c01136{bottom:1243.386667pt;}
.y2_c01136{bottom:1285.626667pt;}
.y1_c01136{bottom:1287.173333pt;}
.h7_c01136{height:2.764500pt;}
.h9_c01136{height:4.799479pt;}
.h8_c01136{height:5.519401pt;}
.h3_c01136{height:8.303099pt;}
.h6_c01136{height:11.038802pt;}
.h2_c01136{height:13.822500pt;}
.ha_c01136{height:19.341901pt;}
.h4_c01136{height:46.986901pt;}
.h5_c01136{height:49.770599pt;}
.h0_c01136{height:1352.453333pt;}
.h1_c01136{height:1352.666667pt;}
.w0_c01136{width:967.680000pt;}
.w1_c01136{width:968.000000pt;}
.x0_c01136{left:0.000000pt;}
.x3_c01136{left:328.706667pt;}
.x4_c01136{left:364.800000pt;}
.x6_c01136{left:384.000000pt;}
.x5_c01136{left:421.626667pt;}
.x7_c01136{left:436.986667pt;}
.x8_c01136{left:447.746667pt;}
.x9_c01136{left:458.493333pt;}
.xa_c01136{left:879.360000pt;}
.xb_c01136{left:906.240000pt;}
.x1_c01136{left:927.746667pt;}
.x2_c01136{left:934.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d4f90b11f4eff2cb4de3d29.woff2')format("woff");}.ff1_c01137{font-family:ff1_c01137;line-height:1.109863;font-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_c01137{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);}
.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;}
.fs0_c01137{font-size:600.000000px;}
.y0_c01137{bottom:0.000000px;}
.y1_c01137{bottom:15.000000px;}
.h2_c01137{height:539.941406px;}
.h0_c01137{height:1515.450000px;}
.h1_c01137{height:1515.750000px;}
.w0_c01137{width:1088.640000px;}
.w1_c01137{width:1089.000000px;}
.x0_c01137{left:0.000000px;}
.x1_c01137{left:15.000000px;}
@media print{
.v0_c01137{vertical-align:0.000000pt;}
.ls0_c01137{letter-spacing:0.000000pt;}
.ws0_c01137{word-spacing:0.000000pt;}
.fs0_c01137{font-size:533.333333pt;}
.y0_c01137{bottom:0.000000pt;}
.y1_c01137{bottom:13.333333pt;}
.h2_c01137{height:479.947917pt;}
.h0_c01137{height:1347.066667pt;}
.h1_c01137{height:1347.333333pt;}
.w0_c01137{width:967.680000pt;}
.w1_c01137{width:968.000000pt;}
.x0_c01137{left:0.000000pt;}
.x1_c01137{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af264f1f0355f3f9f2f311e4.woff2')format("woff");}.ff1_c01138{font-family:ff1_c01138;line-height:1.109863;font-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_c01138{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);}
.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;}
.fs0_c01138{font-size:600.000000px;}
.y0_c01138{bottom:0.000000px;}
.y1_c01138{bottom:15.000000px;}
.h2_c01138{height:539.941406px;}
.h0_c01138{height:1521.510000px;}
.h1_c01138{height:1521.750000px;}
.w0_c01138{width:1088.640000px;}
.w1_c01138{width:1089.000000px;}
.x0_c01138{left:0.000000px;}
.x1_c01138{left:15.000000px;}
@media print{
.v0_c01138{vertical-align:0.000000pt;}
.ls0_c01138{letter-spacing:0.000000pt;}
.ws0_c01138{word-spacing:0.000000pt;}
.fs0_c01138{font-size:533.333333pt;}
.y0_c01138{bottom:0.000000pt;}
.y1_c01138{bottom:13.333333pt;}
.h2_c01138{height:479.947917pt;}
.h0_c01138{height:1352.453333pt;}
.h1_c01138{height:1352.666667pt;}
.w0_c01138{width:967.680000pt;}
.w1_c01138{width:968.000000pt;}
.x0_c01138{left:0.000000pt;}
.x1_c01138{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36b9de5e7d8bb15d1ad94606.woff2')format("woff");}.ff1_c01139{font-family:ff1_c01139;line-height:1.109863;font-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_c01139{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);}
.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;}
.fs0_c01139{font-size:600.000000px;}
.y0_c01139{bottom:0.000000px;}
.y1_c01139{bottom:15.000000px;}
.h2_c01139{height:539.941406px;}
.h0_c01139{height:1515.450000px;}
.h1_c01139{height:1515.750000px;}
.w0_c01139{width:1088.640000px;}
.w1_c01139{width:1089.000000px;}
.x0_c01139{left:0.000000px;}
.x1_c01139{left:15.000000px;}
@media print{
.v0_c01139{vertical-align:0.000000pt;}
.ls0_c01139{letter-spacing:0.000000pt;}
.ws0_c01139{word-spacing:0.000000pt;}
.fs0_c01139{font-size:533.333333pt;}
.y0_c01139{bottom:0.000000pt;}
.y1_c01139{bottom:13.333333pt;}
.h2_c01139{height:479.947917pt;}
.h0_c01139{height:1347.066667pt;}
.h1_c01139{height:1347.333333pt;}
.w0_c01139{width:967.680000pt;}
.w1_c01139{width:968.000000pt;}
.x0_c01139{left:0.000000pt;}
.x1_c01139{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_642a1f4252a22c00602aba18.woff2')format("woff");}.ff1_c01140{font-family:ff1_c01140;line-height:1.109863;font-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_c01140{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.m2_c01140{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m7_c01140{transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);}
.m6_c01140{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c01140{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);}
.m1_c01140{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m4_c01140{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c01140{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);}
.m9_c01140{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m5_c01140{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);}
.m0_c01140{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,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;}
.fs4_c01140{font-size:3.456000px;}
.fs1_c01140{font-size:10.380000px;}
.fs0_c01140{font-size:13.800000px;}
.fs3_c01140{font-size:20.760000px;}
.fs7_c01140{font-size:31.080000px;}
.fs5_c01140{font-size:34.560000px;}
.fs6_c01140{font-size:58.740000px;}
.fs8_c01140{font-size:72.600000px;}
.fs2_c01140{font-size:131.340000px;}
.y0_c01140{bottom:0.000000px;}
.y6_c01140{bottom:424.230000px;}
.y7_c01140{bottom:430.275000px;}
.yb_c01140{bottom:569.370000px;}
.ya_c01140{bottom:575.430000px;}
.y8_c01140{bottom:590.115000px;}
.y9_c01140{bottom:597.030000px;}
.y3_c01140{bottom:663.555000px;}
.y4_c01140{bottom:868.320000px;}
.y5_c01140{bottom:871.770000px;}
.y2_c01140{bottom:1209.600000px;}
.y1_c01140{bottom:1218.240000px;}
.h6_c01140{height:3.110063px;}
.h3_c01140{height:9.340986px;}
.h2_c01140{height:12.418652px;}
.h5_c01140{height:18.681973px;}
.h9_c01140{height:27.968965px;}
.h7_c01140{height:31.100625px;}
.h8_c01140{height:52.860264px;}
.ha_c01140{height:65.332910px;}
.h4_c01140{height:118.193174px;}
.h0_c01140{height:1521.510000px;}
.h1_c01140{height:1521.750000px;}
.w0_c01140{width:1088.640000px;}
.w1_c01140{width:1089.000000px;}
.x0_c01140{left:0.000000px;}
.xa_c01140{left:952.995000px;}
.x3_c01140{left:972.000000px;}
.x8_c01140{left:973.725000px;}
.x2_c01140{left:996.195000px;}
.x1_c01140{left:997.920000px;}
.x6_c01140{left:1003.110000px;}
.x4_c01140{left:1026.435000px;}
.x7_c01140{left:1032.480000px;}
.x5_c01140{left:1044.570000px;}
.x9_c01140{left:1050.630000px;}
@media print{
.v0_c01140{vertical-align:0.000000pt;}
.ls0_c01140{letter-spacing:0.000000pt;}
.ws0_c01140{word-spacing:0.000000pt;}
.fs4_c01140{font-size:3.072000pt;}
.fs1_c01140{font-size:9.226667pt;}
.fs0_c01140{font-size:12.266667pt;}
.fs3_c01140{font-size:18.453333pt;}
.fs7_c01140{font-size:27.626667pt;}
.fs5_c01140{font-size:30.720000pt;}
.fs6_c01140{font-size:52.213333pt;}
.fs8_c01140{font-size:64.533333pt;}
.fs2_c01140{font-size:116.746667pt;}
.y0_c01140{bottom:0.000000pt;}
.y6_c01140{bottom:377.093333pt;}
.y7_c01140{bottom:382.466667pt;}
.yb_c01140{bottom:506.106667pt;}
.ya_c01140{bottom:511.493333pt;}
.y8_c01140{bottom:524.546667pt;}
.y9_c01140{bottom:530.693333pt;}
.y3_c01140{bottom:589.826667pt;}
.y4_c01140{bottom:771.840000pt;}
.y5_c01140{bottom:774.906667pt;}
.y2_c01140{bottom:1075.200000pt;}
.y1_c01140{bottom:1082.880000pt;}
.h6_c01140{height:2.764500pt;}
.h3_c01140{height:8.303099pt;}
.h2_c01140{height:11.038802pt;}
.h5_c01140{height:16.606198pt;}
.h9_c01140{height:24.861302pt;}
.h7_c01140{height:27.645000pt;}
.h8_c01140{height:46.986901pt;}
.ha_c01140{height:58.073698pt;}
.h4_c01140{height:105.060599pt;}
.h0_c01140{height:1352.453333pt;}
.h1_c01140{height:1352.666667pt;}
.w0_c01140{width:967.680000pt;}
.w1_c01140{width:968.000000pt;}
.x0_c01140{left:0.000000pt;}
.xa_c01140{left:847.106667pt;}
.x3_c01140{left:864.000000pt;}
.x8_c01140{left:865.533333pt;}
.x2_c01140{left:885.506667pt;}
.x1_c01140{left:887.040000pt;}
.x6_c01140{left:891.653333pt;}
.x4_c01140{left:912.386667pt;}
.x7_c01140{left:917.760000pt;}
.x5_c01140{left:928.506667pt;}
.x9_c01140{left:933.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4d5788e9f1655254792ed816.woff2')format("woff");}.ff1_c01141{font-family:ff1_c01141;line-height:1.109863;font-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_c01141{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c01141{transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);}
.m4_c01141{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m5_c01141{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01141{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m2_c01141{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m7_c01141{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1_c01141{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,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;}
.fs2_c01141{font-size:3.456000px;}
.fs4_c01141{font-size:6.900000px;}
.fs0_c01141{font-size:10.380000px;}
.fs3_c01141{font-size:27.660000px;}
.fs1_c01141{font-size:31.080000px;}
.fs5_c01141{font-size:120.960000px;}
.y0_c01141{bottom:0.000000px;}
.ya_c01141{bottom:412.125000px;}
.yb_c01141{bottom:413.850000px;}
.y9_c01141{bottom:465.690000px;}
.y8_c01141{bottom:495.075000px;}
.y6_c01141{bottom:864.870000px;}
.y7_c01141{bottom:870.045000px;}
.y5_c01141{bottom:895.110000px;}
.y4_c01141{bottom:1207.875000px;}
.y3_c01141{bottom:1211.325000px;}
.y2_c01141{bottom:1212.195000px;}
.y1_c01141{bottom:1214.790000px;}
.h4_c01141{height:3.110063px;}
.h6_c01141{height:6.209326px;}
.h2_c01141{height:9.340986px;}
.h5_c01141{height:24.891299px;}
.h3_c01141{height:27.968965px;}
.h7_c01141{height:108.852188px;}
.h0_c01141{height:1515.450000px;}
.h1_c01141{height:1515.750000px;}
.w0_c01141{width:1088.640000px;}
.w1_c01141{width:1089.000000px;}
.x0_c01141{left:0.000000px;}
.x6_c01141{left:80.355000px;}
.x7_c01141{left:89.850000px;}
.x8_c01141{left:96.765000px;}
.x1_c01141{left:114.045000px;}
.x9_c01141{left:118.365000px;}
.x3_c01141{left:128.730000px;}
.x2_c01141{left:132.195000px;}
.x4_c01141{left:163.290000px;}
.x5_c01141{left:181.440000px;}
@media print{
.v0_c01141{vertical-align:0.000000pt;}
.ls0_c01141{letter-spacing:0.000000pt;}
.ws0_c01141{word-spacing:0.000000pt;}
.fs2_c01141{font-size:3.072000pt;}
.fs4_c01141{font-size:6.133333pt;}
.fs0_c01141{font-size:9.226667pt;}
.fs3_c01141{font-size:24.586667pt;}
.fs1_c01141{font-size:27.626667pt;}
.fs5_c01141{font-size:107.520000pt;}
.y0_c01141{bottom:0.000000pt;}
.ya_c01141{bottom:366.333333pt;}
.yb_c01141{bottom:367.866667pt;}
.y9_c01141{bottom:413.946667pt;}
.y8_c01141{bottom:440.066667pt;}
.y6_c01141{bottom:768.773333pt;}
.y7_c01141{bottom:773.373333pt;}
.y5_c01141{bottom:795.653333pt;}
.y4_c01141{bottom:1073.666667pt;}
.y3_c01141{bottom:1076.733333pt;}
.y2_c01141{bottom:1077.506667pt;}
.y1_c01141{bottom:1079.813333pt;}
.h4_c01141{height:2.764500pt;}
.h6_c01141{height:5.519401pt;}
.h2_c01141{height:8.303099pt;}
.h5_c01141{height:22.125599pt;}
.h3_c01141{height:24.861302pt;}
.h7_c01141{height:96.757500pt;}
.h0_c01141{height:1347.066667pt;}
.h1_c01141{height:1347.333333pt;}
.w0_c01141{width:967.680000pt;}
.w1_c01141{width:968.000000pt;}
.x0_c01141{left:0.000000pt;}
.x6_c01141{left:71.426667pt;}
.x7_c01141{left:79.866667pt;}
.x8_c01141{left:86.013333pt;}
.x1_c01141{left:101.373333pt;}
.x9_c01141{left:105.213333pt;}
.x3_c01141{left:114.426667pt;}
.x2_c01141{left:117.506667pt;}
.x4_c01141{left:145.146667pt;}
.x5_c01141{left:161.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_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_0c5f4bc04a2a214fe8d432bb.woff2')format("woff");}.ff1_c01142{font-family:ff1_c01142;line-height:1.109863;font-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_c01142{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);}
.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;}
.fs0_c01142{font-size:600.000000px;}
.y0_c01142{bottom:0.000000px;}
.y1_c01142{bottom:15.000000px;}
.h2_c01142{height:539.941406px;}
.h0_c01142{height:1521.510000px;}
.h1_c01142{height:1521.750000px;}
.w0_c01142{width:1088.640000px;}
.w1_c01142{width:1089.000000px;}
.x0_c01142{left:0.000000px;}
.x1_c01142{left:15.000000px;}
@media print{
.v0_c01142{vertical-align:0.000000pt;}
.ls0_c01142{letter-spacing:0.000000pt;}
.ws0_c01142{word-spacing:0.000000pt;}
.fs0_c01142{font-size:533.333333pt;}
.y0_c01142{bottom:0.000000pt;}
.y1_c01142{bottom:13.333333pt;}
.h2_c01142{height:479.947917pt;}
.h0_c01142{height:1352.453333pt;}
.h1_c01142{height:1352.666667pt;}
.w0_c01142{width:967.680000pt;}
.w1_c01142{width:968.000000pt;}
.x0_c01142{left:0.000000pt;}
.x1_c01142{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2919c9c75e05caafced4109f.woff2')format("woff");}.ff1_c01143{font-family:ff1_c01143;line-height:1.109863;font-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_c01143{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m0_c01143{transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);}
.m5_c01143{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01143{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1_c01143{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m4_c01143{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m3_c01143{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,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;}
.fs4_c01143{font-size:6.900000px;}
.fs3_c01143{font-size:17.280000px;}
.fs1_c01143{font-size:24.180000px;}
.fs0_c01143{font-size:55.320000px;}
.fs2_c01143{font-size:148.620000px;}
.y0_c01143{bottom:0.000000px;}
.y7_c01143{bottom:1080.870000px;}
.y6_c01143{bottom:1089.510000px;}
.y3_c01143{bottom:1094.685000px;}
.y5_c01143{bottom:1111.965000px;}
.y4_c01143{bottom:1129.245000px;}
.y2_c01143{bottom:1138.755000px;}
.y1_c01143{bottom:1182.810000px;}
.h6_c01143{height:6.209326px;}
.h5_c01143{height:15.550313px;}
.h3_c01143{height:21.759639px;}
.h2_c01143{height:49.782598px;}
.h4_c01143{height:133.743486px;}
.h0_c01143{height:1515.450000px;}
.h1_c01143{height:1515.750000px;}
.w0_c01143{width:1088.640000px;}
.w1_c01143{width:1089.000000px;}
.x0_c01143{left:0.000000px;}
.x1_c01143{left:6.045000px;}
.x4_c01143{left:25.050000px;}
.x2_c01143{left:159.840000px;}
.x3_c01143{left:177.990000px;}
@media print{
.v0_c01143{vertical-align:0.000000pt;}
.ls0_c01143{letter-spacing:0.000000pt;}
.ws0_c01143{word-spacing:0.000000pt;}
.fs4_c01143{font-size:6.133333pt;}
.fs3_c01143{font-size:15.360000pt;}
.fs1_c01143{font-size:21.493333pt;}
.fs0_c01143{font-size:49.173333pt;}
.fs2_c01143{font-size:132.106667pt;}
.y0_c01143{bottom:0.000000pt;}
.y7_c01143{bottom:960.773333pt;}
.y6_c01143{bottom:968.453333pt;}
.y3_c01143{bottom:973.053333pt;}
.y5_c01143{bottom:988.413333pt;}
.y4_c01143{bottom:1003.773333pt;}
.y2_c01143{bottom:1012.226667pt;}
.y1_c01143{bottom:1051.386667pt;}
.h6_c01143{height:5.519401pt;}
.h5_c01143{height:13.822500pt;}
.h3_c01143{height:19.341901pt;}
.h2_c01143{height:44.251198pt;}
.h4_c01143{height:118.883099pt;}
.h0_c01143{height:1347.066667pt;}
.h1_c01143{height:1347.333333pt;}
.w0_c01143{width:967.680000pt;}
.w1_c01143{width:968.000000pt;}
.x0_c01143{left:0.000000pt;}
.x1_c01143{left:5.373333pt;}
.x4_c01143{left:22.266667pt;}
.x2_c01143{left:142.080000pt;}
.x3_c01143{left:158.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eb39d91cdddf15f958ab973e.woff2')format("woff");}.ff1_c01144{font-family:ff1_c01144;line-height:1.109863;font-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_c01144{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c01144{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.m2_c01144{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);}
.m6_c01144{transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);}
.m4_c01144{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m8_c01144{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);}
.m3_c01144{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m13_c01144{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);}
.m9_c01144{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);}
.m5_c01144{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10_c01144{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c01144{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c01144{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c01144{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me_c01144{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);}
.m11_c01144{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.md_c01144{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.ma_c01144{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);}
.m12_c01144{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m14_c01144{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m7_c01144{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);}
.mb_c01144{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.v1_c01144{vertical-align:-10.380000px;}
.v0_c01144{vertical-align:0.000000px;}
.ls1_c01144{letter-spacing:0.000000px;}
.ls0_c01144{letter-spacing:488.130000px;}
.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;}
.fs0_c01144{font-size:3.456000px;}
.fs6_c01144{font-size:10.380000px;}
.fs1_c01144{font-size:13.800000px;}
.fsd_c01144{font-size:24.180000px;}
.fsa_c01144{font-size:34.560000px;}
.fs9_c01144{font-size:38.040000px;}
.fsc_c01144{font-size:51.840000px;}
.fs8_c01144{font-size:55.320000px;}
.fsb_c01144{font-size:58.740000px;}
.fs4_c01144{font-size:65.640000px;}
.fs5_c01144{font-size:79.500000px;}
.fs7_c01144{font-size:86.400000px;}
.fs3_c01144{font-size:100.200000px;}
.fs2_c01144{font-size:114.060000px;}
.y0_c01144{bottom:0.000000px;}
.y13_c01144{bottom:649.725000px;}
.yf_c01144{bottom:896.835000px;}
.y9_c01144{bottom:902.010000px;}
.ya_c01144{bottom:902.880000px;}
.yc_c01144{bottom:903.750000px;}
.yd_c01144{bottom:904.605000px;}
.ye_c01144{bottom:905.475000px;}
.yb_c01144{bottom:916.710000px;}
.y8_c01144{bottom:940.890000px;}
.y7_c01144{bottom:945.210000px;}
.y6_c01144{bottom:946.950000px;}
.y2_c01144{bottom:961.635000px;}
.y3_c01144{bottom:962.490000px;}
.y5_c01144{bottom:968.550000px;}
.y4_c01144{bottom:972.000000px;}
.y1_c01144{bottom:993.600000px;}
.y10_c01144{bottom:1077.405000px;}
.y12_c01144{bottom:1186.275000px;}
.y11_c01144{bottom:1198.365000px;}
.h2_c01144{height:3.110063px;}
.h7_c01144{height:9.340986px;}
.he_c01144{height:21.759639px;}
.hb_c01144{height:31.100625px;}
.ha_c01144{height:34.232285px;}
.hd_c01144{height:46.650937px;}
.h9_c01144{height:49.782598px;}
.hc_c01144{height:52.860264px;}
.h5_c01144{height:59.069590px;}
.h6_c01144{height:71.542236px;}
.h8_c01144{height:77.751563px;}
.h4_c01144{height:90.170215px;}
.h3_c01144{height:102.642861px;}
.h0_c01144{height:1521.510000px;}
.h1_c01144{height:1521.750000px;}
.w0_c01144{width:1088.640000px;}
.w1_c01144{width:1089.000000px;}
.x0_c01144{left:0.000000px;}
.x2_c01144{left:228.090000px;}
.x9_c01144{left:251.430000px;}
.x6_c01144{left:265.245000px;}
.xa_c01144{left:269.565000px;}
.x1_c01144{left:279.930000px;}
.x7_c01144{left:285.120000px;}
.x3_c01144{left:298.080000px;}
.xb_c01144{left:311.040000px;}
.xc_c01144{left:320.550000px;}
.xd_c01144{left:339.555000px;}
.x8_c01144{left:349.920000px;}
.xe_c01144{left:354.240000px;}
.xf_c01144{left:378.435000px;}
.x10_c01144{left:400.035000px;}
.x4_c01144{left:409.530000px;}
.x11_c01144{left:422.490000px;}
.x5_c01144{left:432.870000px;}
.x12_c01144{left:442.365000px;}
.x13_c01144{left:456.195000px;}
.x14_c01144{left:470.880000px;}
.x15_c01144{left:634.170000px;}
.x19_c01144{left:1013.475000px;}
.x16_c01144{left:1021.245000px;}
.x17_c01144{left:1075.680000px;}
.x18_c01144{left:1077.405000px;}
@media print{
.v1_c01144{vertical-align:-9.226667pt;}
.v0_c01144{vertical-align:0.000000pt;}
.ls1_c01144{letter-spacing:0.000000pt;}
.ls0_c01144{letter-spacing:433.893333pt;}
.ws0_c01144{word-spacing:0.000000pt;}
.fs0_c01144{font-size:3.072000pt;}
.fs6_c01144{font-size:9.226667pt;}
.fs1_c01144{font-size:12.266667pt;}
.fsd_c01144{font-size:21.493333pt;}
.fsa_c01144{font-size:30.720000pt;}
.fs9_c01144{font-size:33.813333pt;}
.fsc_c01144{font-size:46.080000pt;}
.fs8_c01144{font-size:49.173333pt;}
.fsb_c01144{font-size:52.213333pt;}
.fs4_c01144{font-size:58.346667pt;}
.fs5_c01144{font-size:70.666667pt;}
.fs7_c01144{font-size:76.800000pt;}
.fs3_c01144{font-size:89.066667pt;}
.fs2_c01144{font-size:101.386667pt;}
.y0_c01144{bottom:0.000000pt;}
.y13_c01144{bottom:577.533333pt;}
.yf_c01144{bottom:797.186667pt;}
.y9_c01144{bottom:801.786667pt;}
.ya_c01144{bottom:802.560000pt;}
.yc_c01144{bottom:803.333333pt;}
.yd_c01144{bottom:804.093333pt;}
.ye_c01144{bottom:804.866667pt;}
.yb_c01144{bottom:814.853333pt;}
.y8_c01144{bottom:836.346667pt;}
.y7_c01144{bottom:840.186667pt;}
.y6_c01144{bottom:841.733333pt;}
.y2_c01144{bottom:854.786667pt;}
.y3_c01144{bottom:855.546667pt;}
.y5_c01144{bottom:860.933333pt;}
.y4_c01144{bottom:864.000000pt;}
.y1_c01144{bottom:883.200000pt;}
.y10_c01144{bottom:957.693333pt;}
.y12_c01144{bottom:1054.466667pt;}
.y11_c01144{bottom:1065.213333pt;}
.h2_c01144{height:2.764500pt;}
.h7_c01144{height:8.303099pt;}
.he_c01144{height:19.341901pt;}
.hb_c01144{height:27.645000pt;}
.ha_c01144{height:30.428698pt;}
.hd_c01144{height:41.467500pt;}
.h9_c01144{height:44.251198pt;}
.hc_c01144{height:46.986901pt;}
.h5_c01144{height:52.506302pt;}
.h6_c01144{height:63.593099pt;}
.h8_c01144{height:69.112500pt;}
.h4_c01144{height:80.151302pt;}
.h3_c01144{height:91.238099pt;}
.h0_c01144{height:1352.453333pt;}
.h1_c01144{height:1352.666667pt;}
.w0_c01144{width:967.680000pt;}
.w1_c01144{width:968.000000pt;}
.x0_c01144{left:0.000000pt;}
.x2_c01144{left:202.746667pt;}
.x9_c01144{left:223.493333pt;}
.x6_c01144{left:235.773333pt;}
.xa_c01144{left:239.613333pt;}
.x1_c01144{left:248.826667pt;}
.x7_c01144{left:253.440000pt;}
.x3_c01144{left:264.960000pt;}
.xb_c01144{left:276.480000pt;}
.xc_c01144{left:284.933333pt;}
.xd_c01144{left:301.826667pt;}
.x8_c01144{left:311.040000pt;}
.xe_c01144{left:314.880000pt;}
.xf_c01144{left:336.386667pt;}
.x10_c01144{left:355.586667pt;}
.x4_c01144{left:364.026667pt;}
.x11_c01144{left:375.546667pt;}
.x5_c01144{left:384.773333pt;}
.x12_c01144{left:393.213333pt;}
.x13_c01144{left:405.506667pt;}
.x14_c01144{left:418.560000pt;}
.x15_c01144{left:563.706667pt;}
.x19_c01144{left:900.866667pt;}
.x16_c01144{left:907.773333pt;}
.x17_c01144{left:956.160000pt;}
.x18_c01144{left:957.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_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_c815f1bbc97f648df7faf0a6.woff2')format("woff");}.ff1_c01145{font-family:ff1_c01145;line-height:1.109863;font-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.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);}
.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;}
.fs0_c01145{font-size:600.000000px;}
.y0_c01145{bottom:0.000000px;}
.y1_c01145{bottom:15.000000px;}
.h2_c01145{height:539.941406px;}
.h0_c01145{height:1515.450000px;}
.h1_c01145{height:1515.750000px;}
.w0_c01145{width:1088.640000px;}
.w1_c01145{width:1089.000000px;}
.x0_c01145{left:0.000000px;}
.x1_c01145{left:15.000000px;}
@media print{
.v0_c01145{vertical-align:0.000000pt;}
.ls0_c01145{letter-spacing:0.000000pt;}
.ws0_c01145{word-spacing:0.000000pt;}
.fs0_c01145{font-size:533.333333pt;}
.y0_c01145{bottom:0.000000pt;}
.y1_c01145{bottom:13.333333pt;}
.h2_c01145{height:479.947917pt;}
.h0_c01145{height:1347.066667pt;}
.h1_c01145{height:1347.333333pt;}
.w0_c01145{width:967.680000pt;}
.w1_c01145{width:968.000000pt;}
.x0_c01145{left:0.000000pt;}
.x1_c01145{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1fd34d4fdde8fea06a92a77.woff2')format("woff");}.ff1_c01146{font-family:ff1_c01146;line-height:1.109863;font-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_c01146{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);}
.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;}
.fs0_c01146{font-size:600.000000px;}
.y0_c01146{bottom:0.000000px;}
.y1_c01146{bottom:15.000000px;}
.h2_c01146{height:539.941406px;}
.h0_c01146{height:1521.510000px;}
.h1_c01146{height:1521.750000px;}
.w0_c01146{width:1088.640000px;}
.w1_c01146{width:1089.000000px;}
.x0_c01146{left:0.000000px;}
.x1_c01146{left:15.000000px;}
@media print{
.v0_c01146{vertical-align:0.000000pt;}
.ls0_c01146{letter-spacing:0.000000pt;}
.ws0_c01146{word-spacing:0.000000pt;}
.fs0_c01146{font-size:533.333333pt;}
.y0_c01146{bottom:0.000000pt;}
.y1_c01146{bottom:13.333333pt;}
.h2_c01146{height:479.947917pt;}
.h0_c01146{height:1352.453333pt;}
.h1_c01146{height:1352.666667pt;}
.w0_c01146{width:967.680000pt;}
.w1_c01146{width:968.000000pt;}
.x0_c01146{left:0.000000pt;}
.x1_c01146{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_214854c4aeafc0077e489284.woff2')format("woff");}.ff1_c01147{font-family:ff1_c01147;line-height:1.109863;font-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_c01147{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);}
.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;}
.fs0_c01147{font-size:600.000000px;}
.y0_c01147{bottom:0.000000px;}
.y1_c01147{bottom:15.000000px;}
.h2_c01147{height:539.941406px;}
.h0_c01147{height:1515.450000px;}
.h1_c01147{height:1515.750000px;}
.w0_c01147{width:1088.640000px;}
.w1_c01147{width:1089.000000px;}
.x0_c01147{left:0.000000px;}
.x1_c01147{left:15.000000px;}
@media print{
.v0_c01147{vertical-align:0.000000pt;}
.ls0_c01147{letter-spacing:0.000000pt;}
.ws0_c01147{word-spacing:0.000000pt;}
.fs0_c01147{font-size:533.333333pt;}
.y0_c01147{bottom:0.000000pt;}
.y1_c01147{bottom:13.333333pt;}
.h2_c01147{height:479.947917pt;}
.h0_c01147{height:1347.066667pt;}
.h1_c01147{height:1347.333333pt;}
.w0_c01147{width:967.680000pt;}
.w1_c01147{width:968.000000pt;}
.x0_c01147{left:0.000000pt;}
.x1_c01147{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7d683a823d2840407a622a4.woff2')format("woff");}.ff1_c01148{font-family:ff1_c01148;line-height:1.109863;font-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_c01148{transform:matrix(0.029975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029975,0.000000,0.000000,0.250000,0,0);}
.m6_c01148{transform:matrix(0.079250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079250,0.000000,0.000000,0.250000,0,0);}
.m1_c01148{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c01148{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c01148{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c01148{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);}
.m9_c01148{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c01148{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4_c01148{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c01148{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,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;}
.fs1_c01148{font-size:6.000000px;}
.fs8_c01148{font-size:10.380000px;}
.fs4_c01148{font-size:13.800000px;}
.fs2_c01148{font-size:17.280000px;}
.fs5_c01148{font-size:24.180000px;}
.fs0_c01148{font-size:27.660000px;}
.fs3_c01148{font-size:38.040000px;}
.fs7_c01148{font-size:51.840000px;}
.fs6_c01148{font-size:86.400000px;}
.y0_c01148{bottom:0.000000px;}
.yc_c01148{bottom:968.550000px;}
.yb_c01148{bottom:975.450000px;}
.ya_c01148{bottom:1136.160000px;}
.y8_c01148{bottom:1141.350000px;}
.y9_c01148{bottom:1142.205000px;}
.y7_c01148{bottom:1156.890000px;}
.y4_c01148{bottom:1381.530000px;}
.y6_c01148{bottom:1386.720000px;}
.y5_c01148{bottom:1390.170000px;}
.y1_c01148{bottom:1429.920000px;}
.y3_c01148{bottom:1437.690000px;}
.y2_c01148{bottom:1443.750000px;}
.h3_c01148{height:5.399414px;}
.ha_c01148{height:9.340986px;}
.h6_c01148{height:12.418652px;}
.h4_c01148{height:15.550313px;}
.h7_c01148{height:21.759639px;}
.h2_c01148{height:24.891299px;}
.h5_c01148{height:34.232285px;}
.h9_c01148{height:46.650937px;}
.h8_c01148{height:77.751563px;}
.h0_c01148{height:1521.510000px;}
.h1_c01148{height:1521.750000px;}
.w0_c01148{width:1088.640000px;}
.w1_c01148{width:1089.000000px;}
.x0_c01148{left:0.000000px;}
.x1_c01148{left:374.970000px;}
.x2_c01148{left:454.470000px;}
.x3_c01148{left:461.370000px;}
.x4_c01148{left:895.110000px;}
.x5_c01148{left:928.800000px;}
.x6_c01148{left:937.440000px;}
.x7_c01148{left:976.320000px;}
.x8_c01148{left:989.280000px;}
.x9_c01148{left:1009.155000px;}
.xa_c01148{left:1032.480000px;}
.xb_c01148{left:1035.930000px;}
@media print{
.v0_c01148{vertical-align:0.000000pt;}
.ls0_c01148{letter-spacing:0.000000pt;}
.ws0_c01148{word-spacing:0.000000pt;}
.fs1_c01148{font-size:5.333333pt;}
.fs8_c01148{font-size:9.226667pt;}
.fs4_c01148{font-size:12.266667pt;}
.fs2_c01148{font-size:15.360000pt;}
.fs5_c01148{font-size:21.493333pt;}
.fs0_c01148{font-size:24.586667pt;}
.fs3_c01148{font-size:33.813333pt;}
.fs7_c01148{font-size:46.080000pt;}
.fs6_c01148{font-size:76.800000pt;}
.y0_c01148{bottom:0.000000pt;}
.yc_c01148{bottom:860.933333pt;}
.yb_c01148{bottom:867.066667pt;}
.ya_c01148{bottom:1009.920000pt;}
.y8_c01148{bottom:1014.533333pt;}
.y9_c01148{bottom:1015.293333pt;}
.y7_c01148{bottom:1028.346667pt;}
.y4_c01148{bottom:1228.026667pt;}
.y6_c01148{bottom:1232.640000pt;}
.y5_c01148{bottom:1235.706667pt;}
.y1_c01148{bottom:1271.040000pt;}
.y3_c01148{bottom:1277.946667pt;}
.y2_c01148{bottom:1283.333333pt;}
.h3_c01148{height:4.799479pt;}
.ha_c01148{height:8.303099pt;}
.h6_c01148{height:11.038802pt;}
.h4_c01148{height:13.822500pt;}
.h7_c01148{height:19.341901pt;}
.h2_c01148{height:22.125599pt;}
.h5_c01148{height:30.428698pt;}
.h9_c01148{height:41.467500pt;}
.h8_c01148{height:69.112500pt;}
.h0_c01148{height:1352.453333pt;}
.h1_c01148{height:1352.666667pt;}
.w0_c01148{width:967.680000pt;}
.w1_c01148{width:968.000000pt;}
.x0_c01148{left:0.000000pt;}
.x1_c01148{left:333.306667pt;}
.x2_c01148{left:403.973333pt;}
.x3_c01148{left:410.106667pt;}
.x4_c01148{left:795.653333pt;}
.x5_c01148{left:825.600000pt;}
.x6_c01148{left:833.280000pt;}
.x7_c01148{left:867.840000pt;}
.x8_c01148{left:879.360000pt;}
.x9_c01148{left:897.026667pt;}
.xa_c01148{left:917.760000pt;}
.xb_c01148{left:920.826667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b91ac53c55be29afc0bb232b.woff2')format("woff");}.ff1_c01149{font-family:ff1_c01149;line-height:1.109863;font-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_c01149{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);}
.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;}
.fs0_c01149{font-size:600.000000px;}
.y0_c01149{bottom:0.000000px;}
.y1_c01149{bottom:15.000000px;}
.h2_c01149{height:539.941406px;}
.h0_c01149{height:1515.450000px;}
.h1_c01149{height:1515.750000px;}
.w0_c01149{width:1088.640000px;}
.w1_c01149{width:1089.000000px;}
.x0_c01149{left:0.000000px;}
.x1_c01149{left:15.000000px;}
@media print{
.v0_c01149{vertical-align:0.000000pt;}
.ls0_c01149{letter-spacing:0.000000pt;}
.ws0_c01149{word-spacing:0.000000pt;}
.fs0_c01149{font-size:533.333333pt;}
.y0_c01149{bottom:0.000000pt;}
.y1_c01149{bottom:13.333333pt;}
.h2_c01149{height:479.947917pt;}
.h0_c01149{height:1347.066667pt;}
.h1_c01149{height:1347.333333pt;}
.w0_c01149{width:967.680000pt;}
.w1_c01149{width:968.000000pt;}
.x0_c01149{left:0.000000pt;}
.x1_c01149{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6711a9701e0e9e314a7f6164.woff2')format("woff");}.ff1_c01150{font-family:ff1_c01150;line-height:1.109863;font-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_c01150{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);}
.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:600.000000px;}
.y0_c01150{bottom:0.000000px;}
.y1_c01150{bottom:15.000000px;}
.h2_c01150{height:539.941406px;}
.h0_c01150{height:1521.510000px;}
.h1_c01150{height:1521.750000px;}
.w0_c01150{width:1088.640000px;}
.w1_c01150{width:1089.000000px;}
.x0_c01150{left:0.000000px;}
.x1_c01150{left:15.000000px;}
@media print{
.v0_c01150{vertical-align:0.000000pt;}
.ls0_c01150{letter-spacing:0.000000pt;}
.ws0_c01150{word-spacing:0.000000pt;}
.fs0_c01150{font-size:533.333333pt;}
.y0_c01150{bottom:0.000000pt;}
.y1_c01150{bottom:13.333333pt;}
.h2_c01150{height:479.947917pt;}
.h0_c01150{height:1352.453333pt;}
.h1_c01150{height:1352.666667pt;}
.w0_c01150{width:967.680000pt;}
.w1_c01150{width:968.000000pt;}
.x0_c01150{left:0.000000pt;}
.x1_c01150{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1491a8665acc75adc56577d2.woff2')format("woff");}.ff1_c01151{font-family:ff1_c01151;line-height:1.109863;font-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_c01151{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c01151{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c01151{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c01151{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m0_c01151{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4_c01151{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);}
.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;}
.fs1_c01151{font-size:13.800000px;}
.fs0_c01151{font-size:17.280000px;}
.fs3_c01151{font-size:58.740000px;}
.fs2_c01151{font-size:62.220000px;}
.y0_c01151{bottom:0.000000px;}
.y6_c01151{bottom:1039.395000px;}
.y5_c01151{bottom:1339.200000px;}
.y3_c01151{bottom:1347.840000px;}
.y4_c01151{bottom:1352.160000px;}
.y2_c01151{bottom:1423.005000px;}
.y1_c01151{bottom:1424.730000px;}
.h3_c01151{height:12.418652px;}
.h2_c01151{height:15.550313px;}
.h5_c01151{height:52.860264px;}
.h4_c01151{height:55.991924px;}
.h0_c01151{height:1515.450000px;}
.h1_c01151{height:1515.750000px;}
.w0_c01151{width:1088.640000px;}
.w1_c01151{width:1089.000000px;}
.x0_c01151{left:0.000000px;}
.x1_c01151{left:5.190000px;}
.x2_c01151{left:24.195000px;}
.x5_c01151{left:143.430000px;}
.x3_c01151{left:151.200000px;}
.x6_c01151{left:161.565000px;}
.x4_c01151{left:163.290000px;}
@media print{
.v0_c01151{vertical-align:0.000000pt;}
.ls0_c01151{letter-spacing:0.000000pt;}
.ws0_c01151{word-spacing:0.000000pt;}
.fs1_c01151{font-size:12.266667pt;}
.fs0_c01151{font-size:15.360000pt;}
.fs3_c01151{font-size:52.213333pt;}
.fs2_c01151{font-size:55.306667pt;}
.y0_c01151{bottom:0.000000pt;}
.y6_c01151{bottom:923.906667pt;}
.y5_c01151{bottom:1190.400000pt;}
.y3_c01151{bottom:1198.080000pt;}
.y4_c01151{bottom:1201.920000pt;}
.y2_c01151{bottom:1264.893333pt;}
.y1_c01151{bottom:1266.426667pt;}
.h3_c01151{height:11.038802pt;}
.h2_c01151{height:13.822500pt;}
.h5_c01151{height:46.986901pt;}
.h4_c01151{height:49.770599pt;}
.h0_c01151{height:1347.066667pt;}
.h1_c01151{height:1347.333333pt;}
.w0_c01151{width:967.680000pt;}
.w1_c01151{width:968.000000pt;}
.x0_c01151{left:0.000000pt;}
.x1_c01151{left:4.613333pt;}
.x2_c01151{left:21.506667pt;}
.x5_c01151{left:127.493333pt;}
.x3_c01151{left:134.400000pt;}
.x6_c01151{left:143.613333pt;}
.x4_c01151{left:145.146667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f7925cbcfd2f4243533d090.woff2')format("woff");}.ff1_c01152{font-family:ff1_c01152;line-height:1.109863;font-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_c01152{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);}
.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;}
.fs0_c01152{font-size:600.000000px;}
.y0_c01152{bottom:0.000000px;}
.y1_c01152{bottom:15.000000px;}
.h2_c01152{height:539.941406px;}
.h0_c01152{height:1521.510000px;}
.h1_c01152{height:1521.750000px;}
.w0_c01152{width:1088.640000px;}
.w1_c01152{width:1089.000000px;}
.x0_c01152{left:0.000000px;}
.x1_c01152{left:15.000000px;}
@media print{
.v0_c01152{vertical-align:0.000000pt;}
.ls0_c01152{letter-spacing:0.000000pt;}
.ws0_c01152{word-spacing:0.000000pt;}
.fs0_c01152{font-size:533.333333pt;}
.y0_c01152{bottom:0.000000pt;}
.y1_c01152{bottom:13.333333pt;}
.h2_c01152{height:479.947917pt;}
.h0_c01152{height:1352.453333pt;}
.h1_c01152{height:1352.666667pt;}
.w0_c01152{width:967.680000pt;}
.w1_c01152{width:968.000000pt;}
.x0_c01152{left:0.000000pt;}
.x1_c01152{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01153;src:url('chunks/assets/font_3ee4038c8d8c150675e5da44.woff2')format("woff");}.ff1_c01153{font-family:ff1_c01153;line-height:1.109863;font-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_c01153{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c01153{transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);}
.m1_c01153{transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);}
.m2_c01153{transform:matrix(0.072300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072300,0.000000,0.000000,0.250000,0,0);}
.m3_c01153{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.mb_c01153{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma_c01153{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.mc_c01153{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);}
.m9_c01153{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);}
.m5_c01153{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01153{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c01153{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.me_c01153{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m0_c01153{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m8_c01153{transform:matrix(2.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.657500,0.000000,0.000000,0.250000,0,0);}
.v0_c01153{vertical-align:0.000000px;}
.ls0_c01153{letter-spacing:0.000000px;}
.sc__c01153{text-shadow:none;}
.sc0_c01153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01153{-webkit-text-stroke:0px transparent;}
.sc0_c01153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01153{word-spacing:0.000000px;}
.fc0_c01153{color:transparent;}
.fs4_c01153{font-size:3.456000px;}
.fs8_c01153{font-size:6.000000px;}
.fs6_c01153{font-size:10.380000px;}
.fs0_c01153{font-size:17.280000px;}
.fsa_c01153{font-size:20.760000px;}
.fs9_c01153{font-size:34.560000px;}
.fs5_c01153{font-size:38.040000px;}
.fs3_c01153{font-size:41.460000px;}
.fs1_c01153{font-size:62.220000px;}
.fs2_c01153{font-size:69.120000px;}
.fs7_c01153{font-size:72.600000px;}
.y0_c01153{bottom:0.000000px;}
.y12_c01153{bottom:417.315000px;}
.yb_c01153{bottom:421.635000px;}
.yd_c01153{bottom:431.130000px;}
.yc_c01153{bottom:438.045000px;}
.ya_c01153{bottom:440.640000px;}
.y8_c01153{bottom:446.685000px;}
.y9_c01153{bottom:457.920000px;}
.y7_c01153{bottom:464.835000px;}
.y5_c01153{bottom:475.200000px;}
.y6_c01153{bottom:489.030000px;}
.y3_c01153{bottom:490.755000px;}
.y4_c01153{bottom:497.670000px;}
.y2_c01153{bottom:514.080000px;}
.yf_c01153{bottom:527.910000px;}
.ye_c01153{bottom:531.360000px;}
.y10_c01153{bottom:614.310000px;}
.y11_c01153{bottom:616.890000px;}
.y1_c01153{bottom:1296.000000px;}
.h6_c01153{height:3.110063px;}
.ha_c01153{height:5.399414px;}
.h8_c01153{height:9.340986px;}
.h2_c01153{height:15.550313px;}
.hc_c01153{height:18.681973px;}
.hb_c01153{height:31.100625px;}
.h7_c01153{height:34.232285px;}
.h5_c01153{height:37.309951px;}
.h3_c01153{height:55.991924px;}
.h4_c01153{height:62.201250px;}
.h9_c01153{height:65.332910px;}
.h0_c01153{height:1515.450000px;}
.h1_c01153{height:1515.750000px;}
.w0_c01153{width:1088.640000px;}
.w1_c01153{width:1089.000000px;}
.x0_c01153{left:0.000000px;}
.x3_c01153{left:12.090000px;}
.x4_c01153{left:15.555000px;}
.x2_c01153{left:18.150000px;}
.x1_c01153{left:29.370000px;}
.x5_c01153{left:38.010360px;}
.x6_c01153{left:53.565000px;}
.x9_c01153{left:82.950000px;}
.x7_c01153{left:125.280000px;}
.x8_c01153{left:140.835000px;}
@media print{
.v0_c01153{vertical-align:0.000000pt;}
.ls0_c01153{letter-spacing:0.000000pt;}
.ws0_c01153{word-spacing:0.000000pt;}
.fs4_c01153{font-size:3.072000pt;}
.fs8_c01153{font-size:5.333333pt;}
.fs6_c01153{font-size:9.226667pt;}
.fs0_c01153{font-size:15.360000pt;}
.fsa_c01153{font-size:18.453333pt;}
.fs9_c01153{font-size:30.720000pt;}
.fs5_c01153{font-size:33.813333pt;}
.fs3_c01153{font-size:36.853333pt;}
.fs1_c01153{font-size:55.306667pt;}
.fs2_c01153{font-size:61.440000pt;}
.fs7_c01153{font-size:64.533333pt;}
.y0_c01153{bottom:0.000000pt;}
.y12_c01153{bottom:370.946667pt;}
.yb_c01153{bottom:374.786667pt;}
.yd_c01153{bottom:383.226667pt;}
.yc_c01153{bottom:389.373333pt;}
.ya_c01153{bottom:391.680000pt;}
.y8_c01153{bottom:397.053333pt;}
.y9_c01153{bottom:407.040000pt;}
.y7_c01153{bottom:413.186667pt;}
.y5_c01153{bottom:422.400000pt;}
.y6_c01153{bottom:434.693333pt;}
.y3_c01153{bottom:436.226667pt;}
.y4_c01153{bottom:442.373333pt;}
.y2_c01153{bottom:456.960000pt;}
.yf_c01153{bottom:469.253333pt;}
.ye_c01153{bottom:472.320000pt;}
.y10_c01153{bottom:546.053333pt;}
.y11_c01153{bottom:548.346667pt;}
.y1_c01153{bottom:1152.000000pt;}
.h6_c01153{height:2.764500pt;}
.ha_c01153{height:4.799479pt;}
.h8_c01153{height:8.303099pt;}
.h2_c01153{height:13.822500pt;}
.hc_c01153{height:16.606198pt;}
.hb_c01153{height:27.645000pt;}
.h7_c01153{height:30.428698pt;}
.h5_c01153{height:33.164401pt;}
.h3_c01153{height:49.770599pt;}
.h4_c01153{height:55.290000pt;}
.h9_c01153{height:58.073698pt;}
.h0_c01153{height:1347.066667pt;}
.h1_c01153{height:1347.333333pt;}
.w0_c01153{width:967.680000pt;}
.w1_c01153{width:968.000000pt;}
.x0_c01153{left:0.000000pt;}
.x3_c01153{left:10.746667pt;}
.x4_c01153{left:13.826667pt;}
.x2_c01153{left:16.133333pt;}
.x1_c01153{left:26.106667pt;}
.x5_c01153{left:33.786987pt;}
.x6_c01153{left:47.613333pt;}
.x9_c01153{left:73.733333pt;}
.x7_c01153{left:111.360000pt;}
.x8_c01153{left:125.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ae342201b04632c7d7b01bc8.woff2')format("woff");}.ff1_c01154{font-family:ff1_c01154;line-height:1.109863;font-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_c01154{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);}
.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;}
.fs0_c01154{font-size:600.000000px;}
.y0_c01154{bottom:0.000000px;}
.y1_c01154{bottom:15.000000px;}
.h2_c01154{height:539.941406px;}
.h0_c01154{height:1521.510000px;}
.h1_c01154{height:1521.750000px;}
.w0_c01154{width:1088.640000px;}
.w1_c01154{width:1089.000000px;}
.x0_c01154{left:0.000000px;}
.x1_c01154{left:15.000000px;}
@media print{
.v0_c01154{vertical-align:0.000000pt;}
.ls0_c01154{letter-spacing:0.000000pt;}
.ws0_c01154{word-spacing:0.000000pt;}
.fs0_c01154{font-size:533.333333pt;}
.y0_c01154{bottom:0.000000pt;}
.y1_c01154{bottom:13.333333pt;}
.h2_c01154{height:479.947917pt;}
.h0_c01154{height:1352.453333pt;}
.h1_c01154{height:1352.666667pt;}
.w0_c01154{width:967.680000pt;}
.w1_c01154{width:968.000000pt;}
.x0_c01154{left:0.000000pt;}
.x1_c01154{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af19e47c12c97be59f4d1d35.woff2')format("woff");}.ff1_c01155{font-family:ff1_c01155;line-height:1.109863;font-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_c01155{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m14_c01155{transform:matrix(0.050900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050900,0.000000,0.000000,0.250000,0,0);}
.m11_c01155{transform:matrix(0.086200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086200,0.000000,0.000000,0.250000,0,0);}
.m1a_c01155{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m10_c01155{transform:matrix(0.090275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090275,0.000000,0.000000,0.250000,0,0);}
.m1c_c01155{transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);}
.m18_c01155{transform:matrix(0.115800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115800,0.000000,0.000000,0.250000,0,0);}
.m1d_c01155{transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);}
.me_c01155{transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);}
.m13_c01155{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m17_c01155{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m20_c01155{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m1e_c01155{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);}
.m1_c01155{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);}
.ma_c01155{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);}
.m21_c01155{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);}
.md_c01155{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01155{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);}
.mc_c01155{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01155{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);}
.m12_c01155{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);}
.m22_c01155{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c01155{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);}
.m4_c01155{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m0_c01155{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);}
.m1b_c01155{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3_c01155{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m19_c01155{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m16_c01155{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2_c01155{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m9_c01155{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.mb_c01155{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m8_c01155{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m15_c01155{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.mf_c01155{transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767500,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;}
.fs2_c01155{font-size:3.456000px;}
.fs6_c01155{font-size:6.000000px;}
.fs7_c01155{font-size:6.900000px;}
.fs11_c01155{font-size:13.800000px;}
.fs1_c01155{font-size:17.280000px;}
.fs0_c01155{font-size:20.760000px;}
.fs4_c01155{font-size:24.180000px;}
.fs3_c01155{font-size:27.660000px;}
.fs8_c01155{font-size:31.080000px;}
.fs5_c01155{font-size:34.560000px;}
.fsf_c01155{font-size:38.040000px;}
.fs9_c01155{font-size:41.460000px;}
.fsd_c01155{font-size:58.740000px;}
.fse_c01155{font-size:69.120000px;}
.fs12_c01155{font-size:76.020000px;}
.fs10_c01155{font-size:82.920000px;}
.fsb_c01155{font-size:100.200000px;}
.fsa_c01155{font-size:124.440000px;}
.fsc_c01155{font-size:172.800000px;}
.y0_c01155{bottom:0.000000px;}
.y26_c01155{bottom:361.155000px;}
.y25_c01155{bottom:364.605000px;}
.y23_c01155{bottom:368.925000px;}
.y24_c01155{bottom:369.795000px;}
.y21_c01155{bottom:376.710000px;}
.y22_c01155{bottom:378.435000px;}
.y20_c01155{bottom:395.715000px;}
.y1e_c01155{bottom:406.080000px;}
.y1f_c01155{bottom:406.950000px;}
.y1d_c01155{bottom:457.920000px;}
.y1b_c01155{bottom:463.110000px;}
.y1c_c01155{bottom:464.835000px;}
.y19_c01155{bottom:491.610000px;}
.y1a_c01155{bottom:500.250000px;}
.y18_c01155{bottom:546.915000px;}
.y17_c01155{bottom:572.835000px;}
.y15_c01155{bottom:583.200000px;}
.y16_c01155{bottom:602.205000px;}
.y13_c01155{bottom:627.270000px;}
.y14_c01155{bottom:629.850000px;}
.y12_c01155{bottom:633.315000px;}
.y11_c01155{bottom:659.235000px;}
.y10_c01155{bottom:814.755000px;}
.yf_c01155{bottom:822.525000px;}
.ye_c01155{bottom:835.485000px;}
.yc_c01155{bottom:858.810000px;}
.yd_c01155{bottom:864.870000px;}
.yb_c01155{bottom:866.595000px;}
.ya_c01155{bottom:1172.445000px;}
.y9_c01155{bottom:1278.720000px;}
.y8_c01155{bottom:1281.315000px;}
.y6_c01155{bottom:1296.870000px;}
.y5_c01155{bottom:1301.190000px;}
.y7_c01155{bottom:1304.640000px;}
.y4_c01155{bottom:1306.365000px;}
.y2_c01155{bottom:1326.240000px;}
.y3_c01155{bottom:1330.560000px;}
.y1_c01155{bottom:1346.115000px;}
.h4_c01155{height:3.110063px;}
.h8_c01155{height:5.399414px;}
.h9_c01155{height:6.209326px;}
.h13_c01155{height:12.418652px;}
.h3_c01155{height:15.550313px;}
.h2_c01155{height:18.681973px;}
.h6_c01155{height:21.759639px;}
.h5_c01155{height:24.891299px;}
.ha_c01155{height:27.968965px;}
.h7_c01155{height:31.100625px;}
.h11_c01155{height:34.232285px;}
.hb_c01155{height:37.309951px;}
.hf_c01155{height:52.860264px;}
.h10_c01155{height:62.201250px;}
.h14_c01155{height:68.410576px;}
.h12_c01155{height:74.619902px;}
.hd_c01155{height:90.170215px;}
.hc_c01155{height:111.983848px;}
.he_c01155{height:155.503125px;}
.h0_c01155{height:1515.450000px;}
.h1_c01155{height:1515.750000px;}
.w0_c01155{width:1088.640000px;}
.w1_c01155{width:1089.000000px;}
.x0_c01155{left:0.000000px;}
.x1_c01155{left:12.960000px;}
.x3_c01155{left:14.685000px;}
.x5_c01155{left:16.410000px;}
.x2_c01155{left:19.005000px;}
.x4_c01155{left:23.325000px;}
.xe_c01155{left:38.010000px;}
.xf_c01155{left:50.115000px;}
.x10_c01155{left:52.710000px;}
.x6_c01155{left:55.290000px;}
.xb_c01155{left:58.755000px;}
.xd_c01155{left:93.315000px;}
.xa_c01155{left:132.195000px;}
.x7_c01155{left:138.240000px;}
.x8_c01155{left:160.710000px;}
.x9_c01155{left:169.350000px;}
.xc_c01155{left:178.845000px;}
@media print{
.v0_c01155{vertical-align:0.000000pt;}
.ls0_c01155{letter-spacing:0.000000pt;}
.ws0_c01155{word-spacing:0.000000pt;}
.fs2_c01155{font-size:3.072000pt;}
.fs6_c01155{font-size:5.333333pt;}
.fs7_c01155{font-size:6.133333pt;}
.fs11_c01155{font-size:12.266667pt;}
.fs1_c01155{font-size:15.360000pt;}
.fs0_c01155{font-size:18.453333pt;}
.fs4_c01155{font-size:21.493333pt;}
.fs3_c01155{font-size:24.586667pt;}
.fs8_c01155{font-size:27.626667pt;}
.fs5_c01155{font-size:30.720000pt;}
.fsf_c01155{font-size:33.813333pt;}
.fs9_c01155{font-size:36.853333pt;}
.fsd_c01155{font-size:52.213333pt;}
.fse_c01155{font-size:61.440000pt;}
.fs12_c01155{font-size:67.573333pt;}
.fs10_c01155{font-size:73.706667pt;}
.fsb_c01155{font-size:89.066667pt;}
.fsa_c01155{font-size:110.613333pt;}
.fsc_c01155{font-size:153.600000pt;}
.y0_c01155{bottom:0.000000pt;}
.y26_c01155{bottom:321.026667pt;}
.y25_c01155{bottom:324.093333pt;}
.y23_c01155{bottom:327.933333pt;}
.y24_c01155{bottom:328.706667pt;}
.y21_c01155{bottom:334.853333pt;}
.y22_c01155{bottom:336.386667pt;}
.y20_c01155{bottom:351.746667pt;}
.y1e_c01155{bottom:360.960000pt;}
.y1f_c01155{bottom:361.733333pt;}
.y1d_c01155{bottom:407.040000pt;}
.y1b_c01155{bottom:411.653333pt;}
.y1c_c01155{bottom:413.186667pt;}
.y19_c01155{bottom:436.986667pt;}
.y1a_c01155{bottom:444.666667pt;}
.y18_c01155{bottom:486.146667pt;}
.y17_c01155{bottom:509.186667pt;}
.y15_c01155{bottom:518.400000pt;}
.y16_c01155{bottom:535.293333pt;}
.y13_c01155{bottom:557.573333pt;}
.y14_c01155{bottom:559.866667pt;}
.y12_c01155{bottom:562.946667pt;}
.y11_c01155{bottom:585.986667pt;}
.y10_c01155{bottom:724.226667pt;}
.yf_c01155{bottom:731.133333pt;}
.ye_c01155{bottom:742.653333pt;}
.yc_c01155{bottom:763.386667pt;}
.yd_c01155{bottom:768.773333pt;}
.yb_c01155{bottom:770.306667pt;}
.ya_c01155{bottom:1042.173333pt;}
.y9_c01155{bottom:1136.640000pt;}
.y8_c01155{bottom:1138.946667pt;}
.y6_c01155{bottom:1152.773333pt;}
.y5_c01155{bottom:1156.613333pt;}
.y7_c01155{bottom:1159.680000pt;}
.y4_c01155{bottom:1161.213333pt;}
.y2_c01155{bottom:1178.880000pt;}
.y3_c01155{bottom:1182.720000pt;}
.y1_c01155{bottom:1196.546667pt;}
.h4_c01155{height:2.764500pt;}
.h8_c01155{height:4.799479pt;}
.h9_c01155{height:5.519401pt;}
.h13_c01155{height:11.038802pt;}
.h3_c01155{height:13.822500pt;}
.h2_c01155{height:16.606198pt;}
.h6_c01155{height:19.341901pt;}
.h5_c01155{height:22.125599pt;}
.ha_c01155{height:24.861302pt;}
.h7_c01155{height:27.645000pt;}
.h11_c01155{height:30.428698pt;}
.hb_c01155{height:33.164401pt;}
.hf_c01155{height:46.986901pt;}
.h10_c01155{height:55.290000pt;}
.h14_c01155{height:60.809401pt;}
.h12_c01155{height:66.328802pt;}
.hd_c01155{height:80.151302pt;}
.hc_c01155{height:99.541198pt;}
.he_c01155{height:138.225000pt;}
.h0_c01155{height:1347.066667pt;}
.h1_c01155{height:1347.333333pt;}
.w0_c01155{width:967.680000pt;}
.w1_c01155{width:968.000000pt;}
.x0_c01155{left:0.000000pt;}
.x1_c01155{left:11.520000pt;}
.x3_c01155{left:13.053333pt;}
.x5_c01155{left:14.586667pt;}
.x2_c01155{left:16.893333pt;}
.x4_c01155{left:20.733333pt;}
.xe_c01155{left:33.786667pt;}
.xf_c01155{left:44.546667pt;}
.x10_c01155{left:46.853333pt;}
.x6_c01155{left:49.146667pt;}
.xb_c01155{left:52.226667pt;}
.xd_c01155{left:82.946667pt;}
.xa_c01155{left:117.506667pt;}
.x7_c01155{left:122.880000pt;}
.x8_c01155{left:142.853333pt;}
.x9_c01155{left:150.533333pt;}
.xc_c01155{left:158.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbc659094af18b656b700806.woff2')format("woff");}.ff1_c01156{font-family:ff1_c01156;line-height:1.109863;font-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_c01156{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m0_c01156{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);}
.m5_c01156{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);}
.m2_c01156{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);}
.m3_c01156{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);}
.m4_c01156{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,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;}
.fs3_c01156{font-size:3.456000px;}
.fs2_c01156{font-size:17.280000px;}
.fs4_c01156{font-size:24.180000px;}
.fs1_c01156{font-size:34.560000px;}
.fs0_c01156{font-size:58.740000px;}
.y0_c01156{bottom:0.000000px;}
.y6_c01156{bottom:1221.690000px;}
.y5_c01156{bottom:1239.840000px;}
.y4_c01156{bottom:1287.360000px;}
.y3_c01156{bottom:1331.430000px;}
.y2_c01156{bottom:1371.165000px;}
.y1_c01156{bottom:1384.125000px;}
.h5_c01156{height:3.110063px;}
.h4_c01156{height:15.550313px;}
.h6_c01156{height:21.759639px;}
.h3_c01156{height:31.100625px;}
.h2_c01156{height:52.860264px;}
.h0_c01156{height:1521.510000px;}
.h1_c01156{height:1521.750000px;}
.w0_c01156{width:1088.640000px;}
.w1_c01156{width:1089.000000px;}
.x0_c01156{left:0.000000px;}
.x5_c01156{left:891.645000px;}
.x4_c01156{left:927.075000px;}
.x1_c01156{left:1016.925000px;}
.x2_c01156{left:1053.210000px;}
.x6_c01156{left:1060.125000px;}
.x3_c01156{left:1080.870000px;}
@media print{
.v0_c01156{vertical-align:0.000000pt;}
.ls0_c01156{letter-spacing:0.000000pt;}
.ws0_c01156{word-spacing:0.000000pt;}
.fs3_c01156{font-size:3.072000pt;}
.fs2_c01156{font-size:15.360000pt;}
.fs4_c01156{font-size:21.493333pt;}
.fs1_c01156{font-size:30.720000pt;}
.fs0_c01156{font-size:52.213333pt;}
.y0_c01156{bottom:0.000000pt;}
.y6_c01156{bottom:1085.946667pt;}
.y5_c01156{bottom:1102.080000pt;}
.y4_c01156{bottom:1144.320000pt;}
.y3_c01156{bottom:1183.493333pt;}
.y2_c01156{bottom:1218.813333pt;}
.y1_c01156{bottom:1230.333333pt;}
.h5_c01156{height:2.764500pt;}
.h4_c01156{height:13.822500pt;}
.h6_c01156{height:19.341901pt;}
.h3_c01156{height:27.645000pt;}
.h2_c01156{height:46.986901pt;}
.h0_c01156{height:1352.453333pt;}
.h1_c01156{height:1352.666667pt;}
.w0_c01156{width:967.680000pt;}
.w1_c01156{width:968.000000pt;}
.x0_c01156{left:0.000000pt;}
.x5_c01156{left:792.573333pt;}
.x4_c01156{left:824.066667pt;}
.x1_c01156{left:903.933333pt;}
.x2_c01156{left:936.186667pt;}
.x6_c01156{left:942.333333pt;}
.x3_c01156{left:960.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88c23cd170d343a5fc88517b.woff2')format("woff");}.ff1_c01157{font-family:ff1_c01157;line-height:1.109863;font-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_c01157{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);}
.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:600.000000px;}
.y0_c01157{bottom:0.000000px;}
.y1_c01157{bottom:15.000000px;}
.h2_c01157{height:539.941406px;}
.h0_c01157{height:1515.450000px;}
.h1_c01157{height:1515.750000px;}
.w0_c01157{width:1088.640000px;}
.w1_c01157{width:1089.000000px;}
.x0_c01157{left:0.000000px;}
.x1_c01157{left:15.000000px;}
@media print{
.v0_c01157{vertical-align:0.000000pt;}
.ls0_c01157{letter-spacing:0.000000pt;}
.ws0_c01157{word-spacing:0.000000pt;}
.fs0_c01157{font-size:533.333333pt;}
.y0_c01157{bottom:0.000000pt;}
.y1_c01157{bottom:13.333333pt;}
.h2_c01157{height:479.947917pt;}
.h0_c01157{height:1347.066667pt;}
.h1_c01157{height:1347.333333pt;}
.w0_c01157{width:967.680000pt;}
.w1_c01157{width:968.000000pt;}
.x0_c01157{left:0.000000pt;}
.x1_c01157{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98ba882931f533d9235f0440.woff2')format("woff");}.ff1_c01158{font-family:ff1_c01158;line-height:1.109863;font-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_c01158{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);}
.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;}
.fs0_c01158{font-size:600.000000px;}
.y0_c01158{bottom:0.000000px;}
.y1_c01158{bottom:15.000000px;}
.h2_c01158{height:539.941406px;}
.h0_c01158{height:1521.510000px;}
.h1_c01158{height:1521.750000px;}
.w0_c01158{width:1088.640000px;}
.w1_c01158{width:1089.000000px;}
.x0_c01158{left:0.000000px;}
.x1_c01158{left:15.000000px;}
@media print{
.v0_c01158{vertical-align:0.000000pt;}
.ls0_c01158{letter-spacing:0.000000pt;}
.ws0_c01158{word-spacing:0.000000pt;}
.fs0_c01158{font-size:533.333333pt;}
.y0_c01158{bottom:0.000000pt;}
.y1_c01158{bottom:13.333333pt;}
.h2_c01158{height:479.947917pt;}
.h0_c01158{height:1352.453333pt;}
.h1_c01158{height:1352.666667pt;}
.w0_c01158{width:967.680000pt;}
.w1_c01158{width:968.000000pt;}
.x0_c01158{left:0.000000pt;}
.x1_c01158{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c1cba9eb0fe39c30ac3d0eaa.woff2')format("woff");}.ff1_c01159{font-family:ff1_c01159;line-height:1.109863;font-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_c01159{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);}
.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;}
.fs0_c01159{font-size:600.000000px;}
.y0_c01159{bottom:0.000000px;}
.y1_c01159{bottom:15.000000px;}
.h2_c01159{height:539.941406px;}
.h0_c01159{height:1515.450000px;}
.h1_c01159{height:1515.750000px;}
.w0_c01159{width:1088.640000px;}
.w1_c01159{width:1089.000000px;}
.x0_c01159{left:0.000000px;}
.x1_c01159{left:15.000000px;}
@media print{
.v0_c01159{vertical-align:0.000000pt;}
.ls0_c01159{letter-spacing:0.000000pt;}
.ws0_c01159{word-spacing:0.000000pt;}
.fs0_c01159{font-size:533.333333pt;}
.y0_c01159{bottom:0.000000pt;}
.y1_c01159{bottom:13.333333pt;}
.h2_c01159{height:479.947917pt;}
.h0_c01159{height:1347.066667pt;}
.h1_c01159{height:1347.333333pt;}
.w0_c01159{width:967.680000pt;}
.w1_c01159{width:968.000000pt;}
.x0_c01159{left:0.000000pt;}
.x1_c01159{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba05514c42bc9219ee3d6b63.woff2')format("woff");}.ff1_c01160{font-family:ff1_c01160;line-height:1.109863;font-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_c01160{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);}
.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;}
.fs0_c01160{font-size:600.000000px;}
.y0_c01160{bottom:0.000000px;}
.y1_c01160{bottom:15.000000px;}
.h2_c01160{height:539.941406px;}
.h0_c01160{height:1521.510000px;}
.h1_c01160{height:1521.750000px;}
.w0_c01160{width:1088.640000px;}
.w1_c01160{width:1089.000000px;}
.x0_c01160{left:0.000000px;}
.x1_c01160{left:15.000000px;}
@media print{
.v0_c01160{vertical-align:0.000000pt;}
.ls0_c01160{letter-spacing:0.000000pt;}
.ws0_c01160{word-spacing:0.000000pt;}
.fs0_c01160{font-size:533.333333pt;}
.y0_c01160{bottom:0.000000pt;}
.y1_c01160{bottom:13.333333pt;}
.h2_c01160{height:479.947917pt;}
.h0_c01160{height:1352.453333pt;}
.h1_c01160{height:1352.666667pt;}
.w0_c01160{width:967.680000pt;}
.w1_c01160{width:968.000000pt;}
.x0_c01160{left:0.000000pt;}
.x1_c01160{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6da0690c88b5dcb7dfecc2c7.woff2')format("woff");}.ff1_c01161{font-family:ff1_c01161;line-height:1.109863;font-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_c01161{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);}
.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;}
.fs0_c01161{font-size:600.000000px;}
.y0_c01161{bottom:0.000000px;}
.y1_c01161{bottom:15.000000px;}
.h2_c01161{height:539.941406px;}
.h0_c01161{height:1515.450000px;}
.h1_c01161{height:1515.750000px;}
.w0_c01161{width:1088.640000px;}
.w1_c01161{width:1089.000000px;}
.x0_c01161{left:0.000000px;}
.x1_c01161{left:15.000000px;}
@media print{
.v0_c01161{vertical-align:0.000000pt;}
.ls0_c01161{letter-spacing:0.000000pt;}
.ws0_c01161{word-spacing:0.000000pt;}
.fs0_c01161{font-size:533.333333pt;}
.y0_c01161{bottom:0.000000pt;}
.y1_c01161{bottom:13.333333pt;}
.h2_c01161{height:479.947917pt;}
.h0_c01161{height:1347.066667pt;}
.h1_c01161{height:1347.333333pt;}
.w0_c01161{width:967.680000pt;}
.w1_c01161{width:968.000000pt;}
.x0_c01161{left:0.000000pt;}
.x1_c01161{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_74410d376977783c9347c5c2.woff2')format("woff");}.ff1_c01162{font-family:ff1_c01162;line-height:1.109863;font-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_c01162{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c01162{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.m4_c01162{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);}
.m3_c01162{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c01162{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m0_c01162{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,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;}
.fs2_c01162{font-size:3.456000px;}
.fs0_c01162{font-size:17.280000px;}
.fs1_c01162{font-size:20.760000px;}
.fs4_c01162{font-size:24.180000px;}
.fs3_c01162{font-size:27.660000px;}
.y0_c01162{bottom:0.000000px;}
.y2_c01162{bottom:975.450000px;}
.y1_c01162{bottom:1036.800000px;}
.y6_c01162{bottom:1109.370000px;}
.y5_c01162{bottom:1111.965000px;}
.y4_c01162{bottom:1361.670000px;}
.y3_c01162{bottom:1365.990000px;}
.h4_c01162{height:3.110063px;}
.h2_c01162{height:15.550313px;}
.h3_c01162{height:18.681973px;}
.h6_c01162{height:21.759639px;}
.h5_c01162{height:24.891299px;}
.h0_c01162{height:1521.510000px;}
.h1_c01162{height:1521.750000px;}
.w0_c01162{width:1088.640000px;}
.w1_c01162{width:1089.000000px;}
.x0_c01162{left:0.000000px;}
.x1_c01162{left:963.360000px;}
.x2_c01162{left:995.325000px;}
.x3_c01162{left:1014.330000px;}
.x4_c01162{left:1023.840000px;}
.x5_c01162{left:1041.120000px;}
@media print{
.v0_c01162{vertical-align:0.000000pt;}
.ls0_c01162{letter-spacing:0.000000pt;}
.ws0_c01162{word-spacing:0.000000pt;}
.fs2_c01162{font-size:3.072000pt;}
.fs0_c01162{font-size:15.360000pt;}
.fs1_c01162{font-size:18.453333pt;}
.fs4_c01162{font-size:21.493333pt;}
.fs3_c01162{font-size:24.586667pt;}
.y0_c01162{bottom:0.000000pt;}
.y2_c01162{bottom:867.066667pt;}
.y1_c01162{bottom:921.600000pt;}
.y6_c01162{bottom:986.106667pt;}
.y5_c01162{bottom:988.413333pt;}
.y4_c01162{bottom:1210.373333pt;}
.y3_c01162{bottom:1214.213333pt;}
.h4_c01162{height:2.764500pt;}
.h2_c01162{height:13.822500pt;}
.h3_c01162{height:16.606198pt;}
.h6_c01162{height:19.341901pt;}
.h5_c01162{height:22.125599pt;}
.h0_c01162{height:1352.453333pt;}
.h1_c01162{height:1352.666667pt;}
.w0_c01162{width:967.680000pt;}
.w1_c01162{width:968.000000pt;}
.x0_c01162{left:0.000000pt;}
.x1_c01162{left:856.320000pt;}
.x2_c01162{left:884.733333pt;}
.x3_c01162{left:901.626667pt;}
.x4_c01162{left:910.080000pt;}
.x5_c01162{left:925.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_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_76f579ecce12aad80588139e.woff2')format("woff");}.ff1_c01163{font-family:ff1_c01163;line-height:1.109863;font-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_c01163{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);}
.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:600.000000px;}
.y0_c01163{bottom:0.000000px;}
.y1_c01163{bottom:15.000000px;}
.h2_c01163{height:539.941406px;}
.h0_c01163{height:1515.450000px;}
.h1_c01163{height:1515.750000px;}
.w0_c01163{width:1088.640000px;}
.w1_c01163{width:1089.000000px;}
.x0_c01163{left:0.000000px;}
.x1_c01163{left:15.000000px;}
@media print{
.v0_c01163{vertical-align:0.000000pt;}
.ls0_c01163{letter-spacing:0.000000pt;}
.ws0_c01163{word-spacing:0.000000pt;}
.fs0_c01163{font-size:533.333333pt;}
.y0_c01163{bottom:0.000000pt;}
.y1_c01163{bottom:13.333333pt;}
.h2_c01163{height:479.947917pt;}
.h0_c01163{height:1347.066667pt;}
.h1_c01163{height:1347.333333pt;}
.w0_c01163{width:967.680000pt;}
.w1_c01163{width:968.000000pt;}
.x0_c01163{left:0.000000pt;}
.x1_c01163{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_78308e2c6f43abd1a84e22ff.woff2')format("woff");}.ff1_c01164{font-family:ff1_c01164;line-height:1.109863;font-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_c01164{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);}
.m2_c01164{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m0_c01164{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.m1_c01164{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,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;}
.fs3_c01164{font-size:20.760000px;}
.fs1_c01164{font-size:24.180000px;}
.fs2_c01164{font-size:27.660000px;}
.fs0_c01164{font-size:65.640000px;}
.y0_c01164{bottom:0.000000px;}
.y4_c01164{bottom:1394.490000px;}
.y3_c01164{bottom:1401.405000px;}
.y1_c01164{bottom:1428.195000px;}
.y2_c01164{bottom:1438.560000px;}
.h5_c01164{height:18.681973px;}
.h3_c01164{height:21.759639px;}
.h4_c01164{height:24.891299px;}
.h2_c01164{height:59.069590px;}
.h0_c01164{height:1521.510000px;}
.h1_c01164{height:1521.750000px;}
.w0_c01164{width:1088.640000px;}
.w1_c01164{width:1089.000000px;}
.x0_c01164{left:0.000000px;}
.x1_c01164{left:561.600000px;}
.x2_c01164{left:810.435000px;}
.x3_c01164{left:1074.810000px;}
.x4_c01164{left:1081.725000px;}
@media print{
.v0_c01164{vertical-align:0.000000pt;}
.ls0_c01164{letter-spacing:0.000000pt;}
.ws0_c01164{word-spacing:0.000000pt;}
.fs3_c01164{font-size:18.453333pt;}
.fs1_c01164{font-size:21.493333pt;}
.fs2_c01164{font-size:24.586667pt;}
.fs0_c01164{font-size:58.346667pt;}
.y0_c01164{bottom:0.000000pt;}
.y4_c01164{bottom:1239.546667pt;}
.y3_c01164{bottom:1245.693333pt;}
.y1_c01164{bottom:1269.506667pt;}
.y2_c01164{bottom:1278.720000pt;}
.h5_c01164{height:16.606198pt;}
.h3_c01164{height:19.341901pt;}
.h4_c01164{height:22.125599pt;}
.h2_c01164{height:52.506302pt;}
.h0_c01164{height:1352.453333pt;}
.h1_c01164{height:1352.666667pt;}
.w0_c01164{width:967.680000pt;}
.w1_c01164{width:968.000000pt;}
.x0_c01164{left:0.000000pt;}
.x1_c01164{left:499.200000pt;}
.x2_c01164{left:720.386667pt;}
.x3_c01164{left:955.386667pt;}
.x4_c01164{left:961.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d961a1b55cccd097e5424d4f.woff2')format("woff");}.ff1_c01165{font-family:ff1_c01165;line-height:1.109863;font-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_c01165{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m0_c01165{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c01165{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);}
.m2_c01165{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);}
.m3_c01165{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01165{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c01165{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,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;}
.fc0_c01165{color:transparent;}
.fs0_c01165{font-size:10.380000px;}
.fs1_c01165{font-size:17.280000px;}
.fs3_c01165{font-size:20.760000px;}
.fs5_c01165{font-size:27.660000px;}
.fs4_c01165{font-size:31.080000px;}
.fs2_c01165{font-size:34.560000px;}
.y0_c01165{bottom:0.000000px;}
.ya_c01165{bottom:644.550000px;}
.y7_c01165{bottom:1406.595000px;}
.y4_c01165{bottom:1411.770000px;}
.y9_c01165{bottom:1412.640000px;}
.y5_c01165{bottom:1413.510000px;}
.y6_c01165{bottom:1414.365000px;}
.y3_c01165{bottom:1415.235000px;}
.y8_c01165{bottom:1418.685000px;}
.y2_c01165{bottom:1421.280000px;}
.y1_c01165{bottom:1425.600000px;}
.h2_c01165{height:9.340986px;}
.h3_c01165{height:15.550313px;}
.h5_c01165{height:18.681973px;}
.h7_c01165{height:24.891299px;}
.h6_c01165{height:27.968965px;}
.h4_c01165{height:31.100625px;}
.h0_c01165{height:1515.450000px;}
.h1_c01165{height:1515.750000px;}
.w0_c01165{width:1088.640000px;}
.w1_c01165{width:1089.000000px;}
.x0_c01165{left:0.000000px;}
.x9_c01165{left:1.725000px;}
.x1_c01165{left:250.560000px;}
.x3_c01165{left:257.475000px;}
.x2_c01165{left:259.200000px;}
.x4_c01165{left:277.350000px;}
.x5_c01165{left:286.845000px;}
.x6_c01165{left:345.600000px;}
.x7_c01165{left:444.960000px;}
.x8_c01165{left:459.645000px;}
@media print{
.v0_c01165{vertical-align:0.000000pt;}
.ls0_c01165{letter-spacing:0.000000pt;}
.ws0_c01165{word-spacing:0.000000pt;}
.fs0_c01165{font-size:9.226667pt;}
.fs1_c01165{font-size:15.360000pt;}
.fs3_c01165{font-size:18.453333pt;}
.fs5_c01165{font-size:24.586667pt;}
.fs4_c01165{font-size:27.626667pt;}
.fs2_c01165{font-size:30.720000pt;}
.y0_c01165{bottom:0.000000pt;}
.ya_c01165{bottom:572.933333pt;}
.y7_c01165{bottom:1250.306667pt;}
.y4_c01165{bottom:1254.906667pt;}
.y9_c01165{bottom:1255.680000pt;}
.y5_c01165{bottom:1256.453333pt;}
.y6_c01165{bottom:1257.213333pt;}
.y3_c01165{bottom:1257.986667pt;}
.y8_c01165{bottom:1261.053333pt;}
.y2_c01165{bottom:1263.360000pt;}
.y1_c01165{bottom:1267.200000pt;}
.h2_c01165{height:8.303099pt;}
.h3_c01165{height:13.822500pt;}
.h5_c01165{height:16.606198pt;}
.h7_c01165{height:22.125599pt;}
.h6_c01165{height:24.861302pt;}
.h4_c01165{height:27.645000pt;}
.h0_c01165{height:1347.066667pt;}
.h1_c01165{height:1347.333333pt;}
.w0_c01165{width:967.680000pt;}
.w1_c01165{width:968.000000pt;}
.x0_c01165{left:0.000000pt;}
.x9_c01165{left:1.533333pt;}
.x1_c01165{left:222.720000pt;}
.x3_c01165{left:228.866667pt;}
.x2_c01165{left:230.400000pt;}
.x4_c01165{left:246.533333pt;}
.x5_c01165{left:254.973333pt;}
.x6_c01165{left:307.200000pt;}
.x7_c01165{left:395.520000pt;}
.x8_c01165{left:408.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_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_898e27d91d71b24ce3fdf2dc.woff2')format("woff");}.ff1_c01166{font-family:ff1_c01166;line-height:1.109863;font-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_c01166{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c01166{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01166{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);}
.m6_c01166{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);}
.m4_c01166{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);}
.ma_c01166{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m9_c01166{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c01166{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m8_c01166{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);}
.m5_c01166{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mb_c01166{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);}
.m3_c01166{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.v0_c01166{vertical-align:0.000000px;}
.ls1_c01166{letter-spacing:0.000000px;}
.ls0_c01166{letter-spacing:70.067867px;}
.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:3.456000px;}
.fs6_c01166{font-size:6.900000px;}
.fs4_c01166{font-size:10.380000px;}
.fs7_c01166{font-size:13.800000px;}
.fs1_c01166{font-size:17.280000px;}
.fs5_c01166{font-size:20.760000px;}
.fs3_c01166{font-size:24.180000px;}
.fs8_c01166{font-size:31.080000px;}
.fs0_c01166{font-size:48.360000px;}
.y0_c01166{bottom:0.000000px;}
.yc_c01166{bottom:749.085000px;}
.yb_c01166{bottom:1035.075000px;}
.ya_c01166{bottom:1184.550000px;}
.y2_c01166{bottom:1262.310000px;}
.y3_c01166{bottom:1264.035000px;}
.y1_c01166{bottom:1363.395000px;}
.y6_c01166{bottom:1379.805000px;}
.y5_c01166{bottom:1381.530000px;}
.y9_c01166{bottom:1410.915000px;}
.y7_c01166{bottom:1412.640000px;}
.y8_c01166{bottom:1416.960000px;}
.y4_c01166{bottom:1439.430000px;}
.h4_c01166{height:3.110063px;}
.h6_c01166{height:9.340986px;}
.h8_c01166{height:12.418652px;}
.h3_c01166{height:15.550313px;}
.h7_c01166{height:18.681973px;}
.h5_c01166{height:21.759639px;}
.h9_c01166{height:27.968965px;}
.h2_c01166{height:43.519277px;}
.h0_c01166{height:1521.510000px;}
.h1_c01166{height:1521.750000px;}
.w0_c01166{width:1088.640000px;}
.w1_c01166{width:1089.000000px;}
.x0_c01166{left:0.000000px;}
.xd_c01166{left:7.770000px;}
.x4_c01166{left:156.390000px;}
.x8_c01166{left:440.640000px;}
.x9_c01166{left:462.240000px;}
.xa_c01166{left:484.710000px;}
.x5_c01166{left:819.930000px;}
.x6_c01166{left:826.845000px;}
.x7_c01166{left:845.850000px;}
.xb_c01166{left:896.835000px;}
.xc_c01166{left:950.400000px;}
.x1_c01166{left:959.040000px;}
.x2_c01166{left:1036.800000px;}
.x3_c01166{left:1043.715000px;}
@media print{
.v0_c01166{vertical-align:0.000000pt;}
.ls1_c01166{letter-spacing:0.000000pt;}
.ls0_c01166{letter-spacing:62.282548pt;}
.ws0_c01166{word-spacing:0.000000pt;}
.fs2_c01166{font-size:3.072000pt;}
.fs6_c01166{font-size:6.133333pt;}
.fs4_c01166{font-size:9.226667pt;}
.fs7_c01166{font-size:12.266667pt;}
.fs1_c01166{font-size:15.360000pt;}
.fs5_c01166{font-size:18.453333pt;}
.fs3_c01166{font-size:21.493333pt;}
.fs8_c01166{font-size:27.626667pt;}
.fs0_c01166{font-size:42.986667pt;}
.y0_c01166{bottom:0.000000pt;}
.yc_c01166{bottom:665.853333pt;}
.yb_c01166{bottom:920.066667pt;}
.ya_c01166{bottom:1052.933333pt;}
.y2_c01166{bottom:1122.053333pt;}
.y3_c01166{bottom:1123.586667pt;}
.y1_c01166{bottom:1211.906667pt;}
.y6_c01166{bottom:1226.493333pt;}
.y5_c01166{bottom:1228.026667pt;}
.y9_c01166{bottom:1254.146667pt;}
.y7_c01166{bottom:1255.680000pt;}
.y8_c01166{bottom:1259.520000pt;}
.y4_c01166{bottom:1279.493333pt;}
.h4_c01166{height:2.764500pt;}
.h6_c01166{height:8.303099pt;}
.h8_c01166{height:11.038802pt;}
.h3_c01166{height:13.822500pt;}
.h7_c01166{height:16.606198pt;}
.h5_c01166{height:19.341901pt;}
.h9_c01166{height:24.861302pt;}
.h2_c01166{height:38.683802pt;}
.h0_c01166{height:1352.453333pt;}
.h1_c01166{height:1352.666667pt;}
.w0_c01166{width:967.680000pt;}
.w1_c01166{width:968.000000pt;}
.x0_c01166{left:0.000000pt;}
.xd_c01166{left:6.906667pt;}
.x4_c01166{left:139.013333pt;}
.x8_c01166{left:391.680000pt;}
.x9_c01166{left:410.880000pt;}
.xa_c01166{left:430.853333pt;}
.x5_c01166{left:728.826667pt;}
.x6_c01166{left:734.973333pt;}
.x7_c01166{left:751.866667pt;}
.xb_c01166{left:797.186667pt;}
.xc_c01166{left:844.800000pt;}
.x1_c01166{left:852.480000pt;}
.x2_c01166{left:921.600000pt;}
.x3_c01166{left:927.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2ab4be796c711e13cc75e49.woff2')format("woff");}.ff1_c01167{font-family:ff1_c01167;line-height:1.109863;font-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_c01167{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m9_c01167{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c01167{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.mc_c01167{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01167{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m0_c01167{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);}
.md_c01167{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c01167{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);}
.ma_c01167{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m2_c01167{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m5_c01167{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mb_c01167{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m3_c01167{transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);}
.m6_c01167{transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);}
.v1_c01167{vertical-align:-13.800000px;}
.v0_c01167{vertical-align:0.000000px;}
.ls1_c01167{letter-spacing:0.000000px;}
.ls0_c01167{letter-spacing:37.386600px;}
.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;}
.fs4_c01167{font-size:3.456000px;}
.fs6_c01167{font-size:13.800000px;}
.fs2_c01167{font-size:17.280000px;}
.fs0_c01167{font-size:20.760000px;}
.fs1_c01167{font-size:31.080000px;}
.fs3_c01167{font-size:34.560000px;}
.fs5_c01167{font-size:41.460000px;}
.y0_c01167{bottom:0.000000px;}
.y8_c01167{bottom:790.560000px;}
.y4_c01167{bottom:841.530000px;}
.y5_c01167{bottom:846.720000px;}
.y3_c01167{bottom:850.170000px;}
.y7_c01167{bottom:1035.075000px;}
.yc_c01167{bottom:1040.250000px;}
.ya_c01167{bottom:1041.120000px;}
.y2_c01167{bottom:1042.845000px;}
.yb_c01167{bottom:1047.165000px;}
.y1_c01167{bottom:1053.210000px;}
.y9_c01167{bottom:1270.080000px;}
.y6_c01167{bottom:1410.915000px;}
.h6_c01167{height:3.110063px;}
.h8_c01167{height:12.418652px;}
.h4_c01167{height:15.550313px;}
.h2_c01167{height:18.681973px;}
.h3_c01167{height:27.968965px;}
.h5_c01167{height:31.100625px;}
.h7_c01167{height:37.309951px;}
.h0_c01167{height:1515.450000px;}
.h1_c01167{height:1515.750000px;}
.w0_c01167{width:1088.640000px;}
.w1_c01167{width:1089.000000px;}
.x0_c01167{left:0.000000px;}
.x2_c01167{left:17.280000px;}
.x1_c01167{left:29.370000px;}
.x4_c01167{left:87.270000px;}
.x3_c01167{left:93.315000px;}
.x5_c01167{left:95.040000px;}
.x6_c01167{left:146.010000px;}
.x7_c01167{left:910.650000px;}
.x9_c01167{left:980.640000px;}
.x8_c01167{left:984.960000px;}
@media print{
.v1_c01167{vertical-align:-12.266667pt;}
.v0_c01167{vertical-align:0.000000pt;}
.ls1_c01167{letter-spacing:0.000000pt;}
.ls0_c01167{letter-spacing:33.232533pt;}
.ws0_c01167{word-spacing:0.000000pt;}
.fs4_c01167{font-size:3.072000pt;}
.fs6_c01167{font-size:12.266667pt;}
.fs2_c01167{font-size:15.360000pt;}
.fs0_c01167{font-size:18.453333pt;}
.fs1_c01167{font-size:27.626667pt;}
.fs3_c01167{font-size:30.720000pt;}
.fs5_c01167{font-size:36.853333pt;}
.y0_c01167{bottom:0.000000pt;}
.y8_c01167{bottom:702.720000pt;}
.y4_c01167{bottom:748.026667pt;}
.y5_c01167{bottom:752.640000pt;}
.y3_c01167{bottom:755.706667pt;}
.y7_c01167{bottom:920.066667pt;}
.yc_c01167{bottom:924.666667pt;}
.ya_c01167{bottom:925.440000pt;}
.y2_c01167{bottom:926.973333pt;}
.yb_c01167{bottom:930.813333pt;}
.y1_c01167{bottom:936.186667pt;}
.y9_c01167{bottom:1128.960000pt;}
.y6_c01167{bottom:1254.146667pt;}
.h6_c01167{height:2.764500pt;}
.h8_c01167{height:11.038802pt;}
.h4_c01167{height:13.822500pt;}
.h2_c01167{height:16.606198pt;}
.h3_c01167{height:24.861302pt;}
.h5_c01167{height:27.645000pt;}
.h7_c01167{height:33.164401pt;}
.h0_c01167{height:1347.066667pt;}
.h1_c01167{height:1347.333333pt;}
.w0_c01167{width:967.680000pt;}
.w1_c01167{width:968.000000pt;}
.x0_c01167{left:0.000000pt;}
.x2_c01167{left:15.360000pt;}
.x1_c01167{left:26.106667pt;}
.x4_c01167{left:77.573333pt;}
.x3_c01167{left:82.946667pt;}
.x5_c01167{left:84.480000pt;}
.x6_c01167{left:129.786667pt;}
.x7_c01167{left:809.466667pt;}
.x9_c01167{left:871.680000pt;}
.x8_c01167{left:875.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_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_a171702807717a13de5c346f.woff2')format("woff");}.ff1_c01168{font-family:ff1_c01168;line-height:1.109863;font-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.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);}
.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;}
.fs0_c01168{font-size:600.000000px;}
.y0_c01168{bottom:0.000000px;}
.y1_c01168{bottom:15.000000px;}
.h2_c01168{height:539.941406px;}
.h0_c01168{height:1521.510000px;}
.h1_c01168{height:1521.750000px;}
.w0_c01168{width:1088.640000px;}
.w1_c01168{width:1089.000000px;}
.x0_c01168{left:0.000000px;}
.x1_c01168{left:15.000000px;}
@media print{
.v0_c01168{vertical-align:0.000000pt;}
.ls0_c01168{letter-spacing:0.000000pt;}
.ws0_c01168{word-spacing:0.000000pt;}
.fs0_c01168{font-size:533.333333pt;}
.y0_c01168{bottom:0.000000pt;}
.y1_c01168{bottom:13.333333pt;}
.h2_c01168{height:479.947917pt;}
.h0_c01168{height:1352.453333pt;}
.h1_c01168{height:1352.666667pt;}
.w0_c01168{width:967.680000pt;}
.w1_c01168{width:968.000000pt;}
.x0_c01168{left:0.000000pt;}
.x1_c01168{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6178b4b877cdb3a97504ec4c.woff2')format("woff");}.ff1_c01169{font-family:ff1_c01169;line-height:1.109863;font-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_c01169{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);}
.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:600.000000px;}
.y0_c01169{bottom:0.000000px;}
.y1_c01169{bottom:15.000000px;}
.h2_c01169{height:539.941406px;}
.h0_c01169{height:1515.450000px;}
.h1_c01169{height:1515.750000px;}
.w0_c01169{width:1088.640000px;}
.w1_c01169{width:1089.000000px;}
.x0_c01169{left:0.000000px;}
.x1_c01169{left:15.000000px;}
@media print{
.v0_c01169{vertical-align:0.000000pt;}
.ls0_c01169{letter-spacing:0.000000pt;}
.ws0_c01169{word-spacing:0.000000pt;}
.fs0_c01169{font-size:533.333333pt;}
.y0_c01169{bottom:0.000000pt;}
.y1_c01169{bottom:13.333333pt;}
.h2_c01169{height:479.947917pt;}
.h0_c01169{height:1347.066667pt;}
.h1_c01169{height:1347.333333pt;}
.w0_c01169{width:967.680000pt;}
.w1_c01169{width:968.000000pt;}
.x0_c01169{left:0.000000pt;}
.x1_c01169{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83b3218533bd6b00d3f6898a.woff2')format("woff");}.ff1_c01170{font-family:ff1_c01170;line-height:1.109863;font-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_c01170{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01170{transform:matrix(0.017975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.017975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.017975,0.000000,0.000000,0.250000,0,0);}
.m17_c01170{transform:matrix(0.030075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.030075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.030075,0.000000,0.000000,0.250000,0,0);}
.m15_c01170{transform:matrix(0.036500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01170{transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);}
.m16_c01170{transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);}
.m19_c01170{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m5_c01170{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m20_c01170{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.mc_c01170{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);}
.m22_c01170{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);}
.m10_c01170{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);}
.mb_c01170{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);}
.m8_c01170{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m21_c01170{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);}
.md_c01170{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mf_c01170{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);}
.m1_c01170{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c01170{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);}
.m6_c01170{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01170{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c01170{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m12_c01170{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);}
.m1c_c01170{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c01170{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);}
.m23_c01170{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9_c01170{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);}
.m4_c01170{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m24_c01170{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);}
.ma_c01170{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);}
.m0_c01170{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14_c01170{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01170{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01170{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);}
.m3_c01170{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m13_c01170{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m18_c01170{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v0_c01170{vertical-align:0.000000px;}
.v1_c01170{vertical-align:6.900000px;}
.ls1_c01170{letter-spacing:0.000000px;}
.ls0_c01170{letter-spacing:19.177440px;}
.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;}
.fsb_c01170{font-size:3.456000px;}
.fsc_c01170{font-size:6.900000px;}
.fsd_c01170{font-size:10.380000px;}
.fs2_c01170{font-size:13.800000px;}
.fs4_c01170{font-size:17.280000px;}
.fs1_c01170{font-size:20.760000px;}
.fs0_c01170{font-size:24.180000px;}
.fsa_c01170{font-size:27.660000px;}
.fs17_c01170{font-size:31.080000px;}
.fsf_c01170{font-size:34.560000px;}
.fs3_c01170{font-size:38.040000px;}
.fs8_c01170{font-size:41.460000px;}
.fs10_c01170{font-size:48.360000px;}
.fs15_c01170{font-size:51.840000px;}
.fs14_c01170{font-size:55.320000px;}
.fs7_c01170{font-size:58.740000px;}
.fs6_c01170{font-size:62.220000px;}
.fs5_c01170{font-size:65.640000px;}
.fs9_c01170{font-size:69.120000px;}
.fs13_c01170{font-size:76.020000px;}
.fs12_c01170{font-size:86.400000px;}
.fs16_c01170{font-size:89.880000px;}
.fs11_c01170{font-size:103.680000px;}
.fse_c01170{font-size:203.880000px;}
.y0_c01170{bottom:0.000000px;}
.y24_c01170{bottom:667.005000px;}
.y23_c01170{bottom:670.470000px;}
.y22_c01170{bottom:728.355000px;}
.y13_c01170{bottom:912.390000px;}
.y12_c01170{bottom:923.610000px;}
.y11_c01170{bottom:939.165000px;}
.y21_c01170{bottom:972.870000px;}
.y20_c01170{bottom:994.470000px;}
.y15_c01170{bottom:1092.090000px;}
.y14_c01170{bottom:1096.410000px;}
.y1f_c01170{bottom:1141.350000px;}
.y1a_c01170{bottom:1197.510000px;}
.y1e_c01170{bottom:1217.370000px;}
.y1d_c01170{bottom:1221.690000px;}
.y1b_c01170{bottom:1222.560000px;}
.y1c_c01170{bottom:1223.430000px;}
.y19_c01170{bottom:1224.285000px;}
.y18_c01170{bottom:1253.670000px;}
.y17_c01170{bottom:1255.395000px;}
.y16_c01170{bottom:1269.210000px;}
.y10_c01170{bottom:1290.810000px;}
.yf_c01170{bottom:1300.320000px;}
.y8_c01170{bottom:1353.030000px;}
.y1_c01170{bottom:1354.755000px;}
.ye_c01170{bottom:1372.035000px;}
.yb_c01170{bottom:1378.080000px;}
.ya_c01170{bottom:1378.950000px;}
.y6_c01170{bottom:1379.805000px;}
.y7_c01170{bottom:1380.675000px;}
.yc_c01170{bottom:1386.720000px;}
.yd_c01170{bottom:1393.635000px;}
.y4_c01170{bottom:1399.680000px;}
.y5_c01170{bottom:1400.550000px;}
.y9_c01170{bottom:1402.275000px;}
.y2_c01170{bottom:1425.600000px;}
.y3_c01170{bottom:1429.050000px;}
.hd_c01170{height:3.110063px;}
.he_c01170{height:6.209326px;}
.hf_c01170{height:9.340986px;}
.h4_c01170{height:12.418652px;}
.h6_c01170{height:15.550313px;}
.h3_c01170{height:18.681973px;}
.h2_c01170{height:21.759639px;}
.hc_c01170{height:24.891299px;}
.h19_c01170{height:27.968965px;}
.h11_c01170{height:31.100625px;}
.h5_c01170{height:34.232285px;}
.ha_c01170{height:37.309951px;}
.h12_c01170{height:43.519277px;}
.h17_c01170{height:46.650937px;}
.h16_c01170{height:49.782598px;}
.h9_c01170{height:52.860264px;}
.h8_c01170{height:55.991924px;}
.h7_c01170{height:59.069590px;}
.hb_c01170{height:62.201250px;}
.h15_c01170{height:68.410576px;}
.h14_c01170{height:77.751563px;}
.h18_c01170{height:80.883223px;}
.h13_c01170{height:93.301875px;}
.h10_c01170{height:183.472090px;}
.h0_c01170{height:1521.510000px;}
.h1_c01170{height:1521.750000px;}
.w0_c01170{width:1088.640000px;}
.w1_c01170{width:1089.000000px;}
.x0_c01170{left:0.000000px;}
.x8_c01170{left:419.910000px;}
.x5_c01170{left:459.645000px;}
.x6_c01170{left:478.650000px;}
.x9_c01170{left:492.480000px;}
.x7_c01170{left:499.395000px;}
.xc_c01170{left:501.120000px;}
.xa_c01170{left:514.950000px;}
.xb_c01170{left:530.490000px;}
.xe_c01170{left:568.515000px;}
.xf_c01170{left:586.650000px;}
.x10_c01170{left:607.395000px;}
.xd_c01170{left:620.355000px;}
.x11_c01170{left:626.400000px;}
.x12_c01170{left:645.405000px;}
.x22_c01170{left:650.595000px;}
.x13_c01170{left:668.730000px;}
.x23_c01170{left:672.195000px;}
.x14_c01170{left:692.070000px;}
.x24_c01170{left:714.525000px;}
.x15_c01170{left:730.950000px;}
.x25_c01170{left:743.040000px;}
.x16_c01170{left:745.635000px;}
.x17_c01170{left:794.010000px;}
.x18_c01170{left:812.160000px;}
.x19_c01170{left:818.205000px;}
.x1_c01170{left:877.830000px;}
.x2_c01170{left:895.965000px;}
.x1a_c01170{left:937.440000px;}
.x1f_c01170{left:950.400000px;}
.x20_c01170{left:957.315000px;}
.x1e_c01170{left:969.405000px;}
.x1b_c01170{left:976.320000px;}
.x1c_c01170{left:978.915000px;}
.x1d_c01170{left:980.640000px;}
.x21_c01170{left:984.960000px;}
.x27_c01170{left:1004.835000px;}
.x3_c01170{left:1029.885000px;}
.x29_c01170{left:1037.670000px;}
.x28_c01170{left:1040.250000px;}
.x4_c01170{left:1043.715000px;}
.x26_c01170{left:1071.360000px;}
@media print{
.v0_c01170{vertical-align:0.000000pt;}
.v1_c01170{vertical-align:6.133333pt;}
.ls1_c01170{letter-spacing:0.000000pt;}
.ls0_c01170{letter-spacing:17.046613pt;}
.ws0_c01170{word-spacing:0.000000pt;}
.fsb_c01170{font-size:3.072000pt;}
.fsc_c01170{font-size:6.133333pt;}
.fsd_c01170{font-size:9.226667pt;}
.fs2_c01170{font-size:12.266667pt;}
.fs4_c01170{font-size:15.360000pt;}
.fs1_c01170{font-size:18.453333pt;}
.fs0_c01170{font-size:21.493333pt;}
.fsa_c01170{font-size:24.586667pt;}
.fs17_c01170{font-size:27.626667pt;}
.fsf_c01170{font-size:30.720000pt;}
.fs3_c01170{font-size:33.813333pt;}
.fs8_c01170{font-size:36.853333pt;}
.fs10_c01170{font-size:42.986667pt;}
.fs15_c01170{font-size:46.080000pt;}
.fs14_c01170{font-size:49.173333pt;}
.fs7_c01170{font-size:52.213333pt;}
.fs6_c01170{font-size:55.306667pt;}
.fs5_c01170{font-size:58.346667pt;}
.fs9_c01170{font-size:61.440000pt;}
.fs13_c01170{font-size:67.573333pt;}
.fs12_c01170{font-size:76.800000pt;}
.fs16_c01170{font-size:79.893333pt;}
.fs11_c01170{font-size:92.160000pt;}
.fse_c01170{font-size:181.226667pt;}
.y0_c01170{bottom:0.000000pt;}
.y24_c01170{bottom:592.893333pt;}
.y23_c01170{bottom:595.973333pt;}
.y22_c01170{bottom:647.426667pt;}
.y13_c01170{bottom:811.013333pt;}
.y12_c01170{bottom:820.986667pt;}
.y11_c01170{bottom:834.813333pt;}
.y21_c01170{bottom:864.773333pt;}
.y20_c01170{bottom:883.973333pt;}
.y15_c01170{bottom:970.746667pt;}
.y14_c01170{bottom:974.586667pt;}
.y1f_c01170{bottom:1014.533333pt;}
.y1a_c01170{bottom:1064.453333pt;}
.y1e_c01170{bottom:1082.106667pt;}
.y1d_c01170{bottom:1085.946667pt;}
.y1b_c01170{bottom:1086.720000pt;}
.y1c_c01170{bottom:1087.493333pt;}
.y19_c01170{bottom:1088.253333pt;}
.y18_c01170{bottom:1114.373333pt;}
.y17_c01170{bottom:1115.906667pt;}
.y16_c01170{bottom:1128.186667pt;}
.y10_c01170{bottom:1147.386667pt;}
.yf_c01170{bottom:1155.840000pt;}
.y8_c01170{bottom:1202.693333pt;}
.y1_c01170{bottom:1204.226667pt;}
.ye_c01170{bottom:1219.586667pt;}
.yb_c01170{bottom:1224.960000pt;}
.ya_c01170{bottom:1225.733333pt;}
.y6_c01170{bottom:1226.493333pt;}
.y7_c01170{bottom:1227.266667pt;}
.yc_c01170{bottom:1232.640000pt;}
.yd_c01170{bottom:1238.786667pt;}
.y4_c01170{bottom:1244.160000pt;}
.y5_c01170{bottom:1244.933333pt;}
.y9_c01170{bottom:1246.466667pt;}
.y2_c01170{bottom:1267.200000pt;}
.y3_c01170{bottom:1270.266667pt;}
.hd_c01170{height:2.764500pt;}
.he_c01170{height:5.519401pt;}
.hf_c01170{height:8.303099pt;}
.h4_c01170{height:11.038802pt;}
.h6_c01170{height:13.822500pt;}
.h3_c01170{height:16.606198pt;}
.h2_c01170{height:19.341901pt;}
.hc_c01170{height:22.125599pt;}
.h19_c01170{height:24.861302pt;}
.h11_c01170{height:27.645000pt;}
.h5_c01170{height:30.428698pt;}
.ha_c01170{height:33.164401pt;}
.h12_c01170{height:38.683802pt;}
.h17_c01170{height:41.467500pt;}
.h16_c01170{height:44.251198pt;}
.h9_c01170{height:46.986901pt;}
.h8_c01170{height:49.770599pt;}
.h7_c01170{height:52.506302pt;}
.hb_c01170{height:55.290000pt;}
.h15_c01170{height:60.809401pt;}
.h14_c01170{height:69.112500pt;}
.h18_c01170{height:71.896198pt;}
.h13_c01170{height:82.935000pt;}
.h10_c01170{height:163.086302pt;}
.h0_c01170{height:1352.453333pt;}
.h1_c01170{height:1352.666667pt;}
.w0_c01170{width:967.680000pt;}
.w1_c01170{width:968.000000pt;}
.x0_c01170{left:0.000000pt;}
.x8_c01170{left:373.253333pt;}
.x5_c01170{left:408.573333pt;}
.x6_c01170{left:425.466667pt;}
.x9_c01170{left:437.760000pt;}
.x7_c01170{left:443.906667pt;}
.xc_c01170{left:445.440000pt;}
.xa_c01170{left:457.733333pt;}
.xb_c01170{left:471.546667pt;}
.xe_c01170{left:505.346667pt;}
.xf_c01170{left:521.466667pt;}
.x10_c01170{left:539.906667pt;}
.xd_c01170{left:551.426667pt;}
.x11_c01170{left:556.800000pt;}
.x12_c01170{left:573.693333pt;}
.x22_c01170{left:578.306667pt;}
.x13_c01170{left:594.426667pt;}
.x23_c01170{left:597.506667pt;}
.x14_c01170{left:615.173333pt;}
.x24_c01170{left:635.133333pt;}
.x15_c01170{left:649.733333pt;}
.x25_c01170{left:660.480000pt;}
.x16_c01170{left:662.786667pt;}
.x17_c01170{left:705.786667pt;}
.x18_c01170{left:721.920000pt;}
.x19_c01170{left:727.293333pt;}
.x1_c01170{left:780.293333pt;}
.x2_c01170{left:796.413333pt;}
.x1a_c01170{left:833.280000pt;}
.x1f_c01170{left:844.800000pt;}
.x20_c01170{left:850.946667pt;}
.x1e_c01170{left:861.693333pt;}
.x1b_c01170{left:867.840000pt;}
.x1c_c01170{left:870.146667pt;}
.x1d_c01170{left:871.680000pt;}
.x21_c01170{left:875.520000pt;}
.x27_c01170{left:893.186667pt;}
.x3_c01170{left:915.453333pt;}
.x29_c01170{left:922.373333pt;}
.x28_c01170{left:924.666667pt;}
.x4_c01170{left:927.746667pt;}
.x26_c01170{left:952.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_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_7af9a6468687a3c8f0bbe5ec.woff2')format("woff");}.ff1_c01171{font-family:ff1_c01171;line-height:1.109863;font-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_c01171{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);}
.m2_c01171{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);}
.m5_c01171{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);}
.m6_c01171{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m4_c01171{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m7_c01171{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m3_c01171{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1_c01171{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,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;}
.fs4_c01171{font-size:13.800000px;}
.fs0_c01171{font-size:17.280000px;}
.fs1_c01171{font-size:20.760000px;}
.fs2_c01171{font-size:24.180000px;}
.fs3_c01171{font-size:38.040000px;}
.y0_c01171{bottom:0.000000px;}
.ya_c01171{bottom:1400.550000px;}
.y9_c01171{bottom:1409.190000px;}
.y8_c01171{bottom:1418.685000px;}
.y4_c01171{bottom:1427.325000px;}
.y7_c01171{bottom:1429.920000px;}
.y6_c01171{bottom:1430.790000px;}
.y5_c01171{bottom:1431.645000px;}
.y3_c01171{bottom:1438.560000px;}
.y2_c01171{bottom:1443.750000px;}
.y1_c01171{bottom:1448.925000px;}
.h6_c01171{height:12.418652px;}
.h2_c01171{height:15.550313px;}
.h3_c01171{height:18.681973px;}
.h4_c01171{height:21.759639px;}
.h5_c01171{height:34.232285px;}
.h0_c01171{height:1515.450000px;}
.h1_c01171{height:1515.750000px;}
.w0_c01171{width:1088.640000px;}
.w1_c01171{width:1089.000000px;}
.x0_c01171{left:0.000000px;}
.x4_c01171{left:180.570000px;}
.x5_c01171{left:387.930000px;}
.x9_c01171{left:474.330000px;}
.x6_c01171{left:734.400000px;}
.x7_c01171{left:763.770000px;}
.x3_c01171{left:769.830000px;}
.x1_c01171{left:777.600000px;}
.x2_c01171{left:930.525000px;}
.x8_c01171{left:950.399805px;}
@media print{
.v0_c01171{vertical-align:0.000000pt;}
.ls0_c01171{letter-spacing:0.000000pt;}
.ws0_c01171{word-spacing:0.000000pt;}
.fs4_c01171{font-size:12.266667pt;}
.fs0_c01171{font-size:15.360000pt;}
.fs1_c01171{font-size:18.453333pt;}
.fs2_c01171{font-size:21.493333pt;}
.fs3_c01171{font-size:33.813333pt;}
.y0_c01171{bottom:0.000000pt;}
.ya_c01171{bottom:1244.933333pt;}
.y9_c01171{bottom:1252.613333pt;}
.y8_c01171{bottom:1261.053333pt;}
.y4_c01171{bottom:1268.733333pt;}
.y7_c01171{bottom:1271.040000pt;}
.y6_c01171{bottom:1271.813333pt;}
.y5_c01171{bottom:1272.573333pt;}
.y3_c01171{bottom:1278.720000pt;}
.y2_c01171{bottom:1283.333333pt;}
.y1_c01171{bottom:1287.933333pt;}
.h6_c01171{height:11.038802pt;}
.h2_c01171{height:13.822500pt;}
.h3_c01171{height:16.606198pt;}
.h4_c01171{height:19.341901pt;}
.h5_c01171{height:30.428698pt;}
.h0_c01171{height:1347.066667pt;}
.h1_c01171{height:1347.333333pt;}
.w0_c01171{width:967.680000pt;}
.w1_c01171{width:968.000000pt;}
.x0_c01171{left:0.000000pt;}
.x4_c01171{left:160.506667pt;}
.x5_c01171{left:344.826667pt;}
.x9_c01171{left:421.626667pt;}
.x6_c01171{left:652.800000pt;}
.x7_c01171{left:678.906667pt;}
.x3_c01171{left:684.293333pt;}
.x1_c01171{left:691.200000pt;}
.x2_c01171{left:827.133333pt;}
.x8_c01171{left:844.799827pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bdf258cf1e7930f62a59d953.woff2')format("woff");}.ff1_c01172{font-family:ff1_c01172;line-height:1.109863;font-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_c01172{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);}
.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;}
.fs0_c01172{font-size:600.000000px;}
.y0_c01172{bottom:0.000000px;}
.y1_c01172{bottom:15.000000px;}
.h2_c01172{height:539.941406px;}
.h0_c01172{height:1521.510000px;}
.h1_c01172{height:1521.750000px;}
.w0_c01172{width:1088.640000px;}
.w1_c01172{width:1089.000000px;}
.x0_c01172{left:0.000000px;}
.x1_c01172{left:15.000000px;}
@media print{
.v0_c01172{vertical-align:0.000000pt;}
.ls0_c01172{letter-spacing:0.000000pt;}
.ws0_c01172{word-spacing:0.000000pt;}
.fs0_c01172{font-size:533.333333pt;}
.y0_c01172{bottom:0.000000pt;}
.y1_c01172{bottom:13.333333pt;}
.h2_c01172{height:479.947917pt;}
.h0_c01172{height:1352.453333pt;}
.h1_c01172{height:1352.666667pt;}
.w0_c01172{width:967.680000pt;}
.w1_c01172{width:968.000000pt;}
.x0_c01172{left:0.000000pt;}
.x1_c01172{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01173;src:url('chunks/assets/font_2322e193fc477e486b56e4d0.woff2')format("woff");}.ff1_c01173{font-family:ff1_c01173;line-height:1.109863;font-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_c01173{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);}
.v0_c01173{vertical-align:0.000000px;}
.ls0_c01173{letter-spacing:0.000000px;}
.sc__c01173{text-shadow:none;}
.sc0_c01173{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01173{-webkit-text-stroke:0px transparent;}
.sc0_c01173{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01173{word-spacing:0.000000px;}
.fc0_c01173{color:transparent;}
.fs0_c01173{font-size:600.000000px;}
.y0_c01173{bottom:0.000000px;}
.y1_c01173{bottom:15.000000px;}
.h2_c01173{height:539.941406px;}
.h0_c01173{height:1515.450000px;}
.h1_c01173{height:1515.750000px;}
.w0_c01173{width:1088.640000px;}
.w1_c01173{width:1089.000000px;}
.x0_c01173{left:0.000000px;}
.x1_c01173{left:15.000000px;}
@media print{
.v0_c01173{vertical-align:0.000000pt;}
.ls0_c01173{letter-spacing:0.000000pt;}
.ws0_c01173{word-spacing:0.000000pt;}
.fs0_c01173{font-size:533.333333pt;}
.y0_c01173{bottom:0.000000pt;}
.y1_c01173{bottom:13.333333pt;}
.h2_c01173{height:479.947917pt;}
.h0_c01173{height:1347.066667pt;}
.h1_c01173{height:1347.333333pt;}
.w0_c01173{width:967.680000pt;}
.w1_c01173{width:968.000000pt;}
.x0_c01173{left:0.000000pt;}
.x1_c01173{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f9de2d2c14e81eb7ea3432fc.woff2')format("woff");}.ff1_c01174{font-family:ff1_c01174;line-height:1.109863;font-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_c01174{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c01174{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c01174{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3_c01174{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,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:3.456000px;}
.fs3_c01174{font-size:20.760000px;}
.fs2_c01174{font-size:51.840000px;}
.fs0_c01174{font-size:62.220000px;}
.y0_c01174{bottom:0.000000px;}
.y4_c01174{bottom:1070.490000px;}
.y3_c01174{bottom:1242.435000px;}
.y1_c01174{bottom:1243.290000px;}
.y2_c01174{bottom:1250.205000px;}
.h3_c01174{height:3.110063px;}
.h5_c01174{height:18.681973px;}
.h4_c01174{height:46.650937px;}
.h2_c01174{height:55.991924px;}
.h0_c01174{height:1521.510000px;}
.h1_c01174{height:1521.750000px;}
.w0_c01174{width:1088.640000px;}
.w1_c01174{width:1089.000000px;}
.x0_c01174{left:0.000000px;}
.x1_c01174{left:990.150000px;}
.x2_c01174{left:1014.330000px;}
.x4_c01174{left:1022.115000px;}
.x3_c01174{left:1067.040000px;}
@media print{
.v0_c01174{vertical-align:0.000000pt;}
.ls0_c01174{letter-spacing:0.000000pt;}
.ws0_c01174{word-spacing:0.000000pt;}
.fs1_c01174{font-size:3.072000pt;}
.fs3_c01174{font-size:18.453333pt;}
.fs2_c01174{font-size:46.080000pt;}
.fs0_c01174{font-size:55.306667pt;}
.y0_c01174{bottom:0.000000pt;}
.y4_c01174{bottom:951.546667pt;}
.y3_c01174{bottom:1104.386667pt;}
.y1_c01174{bottom:1105.146667pt;}
.y2_c01174{bottom:1111.293333pt;}
.h3_c01174{height:2.764500pt;}
.h5_c01174{height:16.606198pt;}
.h4_c01174{height:41.467500pt;}
.h2_c01174{height:49.770599pt;}
.h0_c01174{height:1352.453333pt;}
.h1_c01174{height:1352.666667pt;}
.w0_c01174{width:967.680000pt;}
.w1_c01174{width:968.000000pt;}
.x0_c01174{left:0.000000pt;}
.x1_c01174{left:880.133333pt;}
.x2_c01174{left:901.626667pt;}
.x4_c01174{left:908.546667pt;}
.x3_c01174{left:948.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_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_e1eefeebc41d082fa9ad9337.woff2')format("woff");}.ff1_c01175{font-family:ff1_c01175;line-height:1.109863;font-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_c01175{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m44_c01175{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m58_c01175{transform:matrix(0.090100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090100,0.000000,0.000000,0.250000,0,0);}
.m4d_c01175{transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);}
.m2e_c01175{transform:matrix(0.101800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101800,0.000000,0.000000,0.250000,0,0);}
.md_c01175{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.me_c01175{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m53_c01175{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01175{transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);}
.m14_c01175{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01175{transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);}
.m56_c01175{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m57_c01175{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);}
.m52_c01175{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m41_c01175{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m39_c01175{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m43_c01175{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m4e_c01175{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.m55_c01175{transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);}
.m4f_c01175{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.m25_c01175{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);}
.m8_c01175{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m47_c01175{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);}
.m1a_c01175{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);}
.m20_c01175{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.mb_c01175{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);}
.m2c_c01175{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);}
.m50_c01175{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.m59_c01175{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);}
.m3e_c01175{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);}
.m35_c01175{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);}
.m3d_c01175{transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);}
.m3a_c01175{transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);}
.mc_c01175{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);}
.m9_c01175{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);}
.m17_c01175{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);}
.m46_c01175{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m49_c01175{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);}
.m54_c01175{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c01175{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);}
.m12_c01175{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c01175{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m48_c01175{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01175{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);}
.m2a_c01175{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2_c01175{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);}
.m0_c01175{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);}
.m36_c01175{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m22_c01175{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m28_c01175{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01175{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c01175{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m24_c01175{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01175{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m37_c01175{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01175{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m31_c01175{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m38_c01175{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);}
.m23_c01175{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01175{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m21_c01175{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m29_c01175{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);}
.m32_c01175{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01175{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_c01175{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01175{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.ma_c01175{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01175{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m51_c01175{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m45_c01175{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);}
.m18_c01175{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);}
.m1c_c01175{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01175{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);}
.m1_c01175{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01175{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01175{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);}
.m4_c01175{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01175{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m33_c01175{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m10_c01175{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m26_c01175{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);}
.m19_c01175{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m7_c01175{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01175{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);}
.m16_c01175{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m30_c01175{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.mf_c01175{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01175{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);}
.m1e_c01175{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);}
.m11_c01175{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01175{transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);}
.m27_c01175{transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01175{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m40_c01175{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m34_c01175{transform:matrix(2.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.050000,0.000000,0.000000,0.250000,0,0);}
.m42_c01175{transform:matrix(8.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.640000,0.000000,0.000000,0.250000,0,0);}
.v2_c01175{vertical-align:-6.900000px;}
.v1_c01175{vertical-align:-3.480000px;}
.v0_c01175{vertical-align:0.000000px;}
.ls2_c01175{letter-spacing:0.000000px;}
.ls1_c01175{letter-spacing:51.083073px;}
.ls0_c01175{letter-spacing:53.000688px;}
.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;}
.fs6_c01175{font-size:3.456000px;}
.fs13_c01175{font-size:6.000000px;}
.fsc_c01175{font-size:6.900000px;}
.fsb_c01175{font-size:10.380000px;}
.fs1b_c01175{font-size:13.800000px;}
.fs1_c01175{font-size:17.280000px;}
.fs5_c01175{font-size:20.760000px;}
.fs4_c01175{font-size:24.180000px;}
.fs7_c01175{font-size:27.660000px;}
.fs3_c01175{font-size:31.080000px;}
.fs9_c01175{font-size:34.560000px;}
.fs2_c01175{font-size:38.040000px;}
.fs0_c01175{font-size:41.460000px;}
.fs1c_c01175{font-size:44.940000px;}
.fs8_c01175{font-size:48.360000px;}
.fsd_c01175{font-size:51.840000px;}
.fs14_c01175{font-size:58.740000px;}
.fsa_c01175{font-size:62.220000px;}
.fs1d_c01175{font-size:65.640000px;}
.fs18_c01175{font-size:69.120000px;}
.fs1e_c01175{font-size:72.600000px;}
.fs10_c01175{font-size:76.020000px;}
.fse_c01175{font-size:79.500000px;}
.fsf_c01175{font-size:82.920000px;}
.fs15_c01175{font-size:86.400000px;}
.fs12_c01175{font-size:89.880000px;}
.fs17_c01175{font-size:96.780000px;}
.fs1f_c01175{font-size:100.200000px;}
.fs16_c01175{font-size:103.680000px;}
.fs11_c01175{font-size:107.160000px;}
.fs1a_c01175{font-size:114.060000px;}
.fs19_c01175{font-size:120.960000px;}
.y0_c01175{bottom:0.000000px;}
.y6c_c01175{bottom:120.090000px;}
.y6a_c01175{bottom:131.325000px;}
.y6b_c01175{bottom:135.645000px;}
.y68_c01175{bottom:141.690000px;}
.y69_c01175{bottom:144.285000px;}
.y67_c01175{bottom:149.475000px;}
.y64_c01175{bottom:721.440000px;}
.y66_c01175{bottom:723.165000px;}
.y65_c01175{bottom:724.035000px;}
.y63_c01175{bottom:724.890000px;}
.y62_c01175{bottom:725.760000px;}
.y5c_c01175{bottom:726.630000px;}
.y60_c01175{bottom:727.485000px;}
.y61_c01175{bottom:728.355000px;}
.y5e_c01175{bottom:729.210000px;}
.y5d_c01175{bottom:733.530000px;}
.y5b_c01175{bottom:734.400000px;}
.y5f_c01175{bottom:735.270000px;}
.y57_c01175{bottom:751.680000px;}
.y56_c01175{bottom:756.870000px;}
.y55_c01175{bottom:758.595000px;}
.y5a_c01175{bottom:759.450000px;}
.y59_c01175{bottom:760.320000px;}
.y58_c01175{bottom:761.190000px;}
.y54_c01175{bottom:805.245000px;}
.y52_c01175{bottom:840.675000px;}
.y53_c01175{bottom:846.720000px;}
.y4b_c01175{bottom:847.590000px;}
.y4d_c01175{bottom:848.445000px;}
.y4e_c01175{bottom:850.170000px;}
.y4f_c01175{bottom:853.635000px;}
.y4a_c01175{bottom:854.490000px;}
.y4c_c01175{bottom:865.725000px;}
.y50_c01175{bottom:871.770000px;}
.y51_c01175{bottom:876.090000px;}
.y44_c01175{bottom:879.555000px;}
.y48_c01175{bottom:880.410000px;}
.y43_c01175{bottom:883.875000px;}
.y37_c01175{bottom:884.730000px;}
.y45_c01175{bottom:885.600000px;}
.y46_c01175{bottom:886.470000px;}
.y47_c01175{bottom:889.920000px;}
.y49_c01175{bottom:903.750000px;}
.y3c_c01175{bottom:909.795000px;}
.y3f_c01175{bottom:910.650000px;}
.y36_c01175{bottom:912.390000px;}
.y3b_c01175{bottom:913.245000px;}
.y41_c01175{bottom:914.115000px;}
.y3a_c01175{bottom:914.970000px;}
.y42_c01175{bottom:915.840000px;}
.y3d_c01175{bottom:918.435000px;}
.y40_c01175{bottom:921.885000px;}
.y3e_c01175{bottom:922.755000px;}
.y39_c01175{bottom:926.205000px;}
.y38_c01175{bottom:927.075000px;}
.y35_c01175{bottom:933.120000px;}
.y32_c01175{bottom:937.440000px;}
.y31_c01175{bottom:938.310000px;}
.y33_c01175{bottom:939.165000px;}
.y2f_c01175{bottom:963.360000px;}
.y30_c01175{bottom:965.955000px;}
.y2d_c01175{bottom:967.680000px;}
.y34_c01175{bottom:971.130000px;}
.y2e_c01175{bottom:972.000000px;}
.y2c_c01175{bottom:1071.360000px;}
.y2a_c01175{bottom:1075.680000px;}
.y27_c01175{bottom:1082.595000px;}
.y28_c01175{bottom:1083.450000px;}
.y2b_c01175{bottom:1087.770000px;}
.y29_c01175{bottom:1097.280000px;}
.y26_c01175{bottom:1110.240000px;}
.y25_c01175{bottom:1129.245000px;}
.y24_c01175{bottom:1130.115000px;}
.y20_c01175{bottom:1184.550000px;}
.y1e_c01175{bottom:1187.130000px;}
.y1f_c01175{bottom:1191.450000px;}
.y22_c01175{bottom:1203.555000px;}
.y23_c01175{bottom:1208.730000px;}
.y1d_c01175{bottom:1212.195000px;}
.y18_c01175{bottom:1219.110000px;}
.y1c_c01175{bottom:1219.965000px;}
.y19_c01175{bottom:1224.285000px;}
.y1b_c01175{bottom:1233.795000px;}
.y21_c01175{bottom:1239.840000px;}
.y10_c01175{bottom:1245.030000px;}
.y11_c01175{bottom:1248.480000px;}
.y1a_c01175{bottom:1255.395000px;}
.y17_c01175{bottom:1262.310000px;}
.yf_c01175{bottom:1271.805000px;}
.y16_c01175{bottom:1279.590000px;}
.y15_c01175{bottom:1280.445000px;}
.ye_c01175{bottom:1295.130000px;}
.yd_c01175{bottom:1305.510000px;}
.yc_c01175{bottom:1315.875000px;}
.y14_c01175{bottom:1317.600000px;}
.yb_c01175{bottom:1328.835000px;}
.y12_c01175{bottom:1331.430000px;}
.y13_c01175{bottom:1333.155000px;}
.ya_c01175{bottom:1342.650000px;}
.y9_c01175{bottom:1345.245000px;}
.y8_c01175{bottom:1349.565000px;}
.y5_c01175{bottom:1416.090000px;}
.y6_c01175{bottom:1418.685000px;}
.y7_c01175{bottom:1425.600000px;}
.y1_c01175{bottom:1427.325000px;}
.y3_c01175{bottom:1439.430000px;}
.y4_c01175{bottom:1441.155000px;}
.y2_c01175{bottom:1445.475000px;}
.h8_c01175{height:3.110063px;}
.h16_c01175{height:5.399414px;}
.he_c01175{height:6.209326px;}
.hd_c01175{height:9.340986px;}
.h10_c01175{height:12.070313px;}
.h1e_c01175{height:12.418652px;}
.h3_c01175{height:15.550313px;}
.h7_c01175{height:18.681973px;}
.h6_c01175{height:21.759639px;}
.h9_c01175{height:24.891299px;}
.h5_c01175{height:27.968965px;}
.hb_c01175{height:31.100625px;}
.h4_c01175{height:34.232285px;}
.h2_c01175{height:37.309951px;}
.h1f_c01175{height:40.441611px;}
.ha_c01175{height:43.519277px;}
.hf_c01175{height:46.650937px;}
.h17_c01175{height:52.860264px;}
.hc_c01175{height:55.991924px;}
.h20_c01175{height:59.069590px;}
.h1b_c01175{height:62.201250px;}
.h21_c01175{height:65.332910px;}
.h13_c01175{height:68.410576px;}
.h11_c01175{height:71.542236px;}
.h12_c01175{height:74.619902px;}
.h18_c01175{height:77.751563px;}
.h15_c01175{height:80.883223px;}
.h1a_c01175{height:87.092549px;}
.h22_c01175{height:90.170215px;}
.h19_c01175{height:93.301875px;}
.h14_c01175{height:96.433535px;}
.h1d_c01175{height:102.642861px;}
.h1c_c01175{height:108.852188px;}
.h0_c01175{height:1515.450000px;}
.h1_c01175{height:1515.750000px;}
.w0_c01175{width:1088.640000px;}
.w1_c01175{width:1089.000000px;}
.x0_c01175{left:0.000000px;}
.xb_c01175{left:2.595000px;}
.xa_c01175{left:4.320000px;}
.x9_c01175{left:8.640000px;}
.xc_c01175{left:20.730000px;}
.x22_c01175{left:169.350000px;}
.x1f_c01175{left:203.910000px;}
.x53_c01175{left:267.840000px;}
.x39_c01175{left:269.565000px;}
.x54_c01175{left:273.885000px;}
.x3b_c01175{left:287.715000px;}
.x76_c01175{left:289.440000px;}
.x55_c01175{left:294.630000px;}
.x78_c01175{left:298.080000px;}
.x1_c01175{left:306.720000px;}
.x3a_c01175{left:310.170000px;}
.x56_c01175{left:322.275000px;}
.x57_c01175{left:336.960000px;}
.x47_c01175{left:340.410000px;}
.x77_c01175{left:351.645000px;}
.x58_c01175{left:353.370000px;}
.xd_c01175{left:355.110000px;}
.x20_c01175{left:359.430000px;}
.x21_c01175{left:368.070000px;}
.xe_c01175{left:372.390000px;}
.x59_c01175{left:384.480000px;}
.x68_c01175{left:388.800000px;}
.x48_c01175{left:394.845000px;}
.x52_c01175{left:398.310000px;}
.x5a_c01175{left:402.630000px;}
.x5b_c01175{left:418.170000px;}
.x2f_c01175{left:419.910000px;}
.x69_c01175{left:429.405000px;}
.x11_c01175{left:432.000000px;}
.x5c_c01175{left:434.595000px;}
.x12_c01175{left:437.190000px;}
.x3e_c01175{left:439.770000px;}
.x30_c01175{left:444.960000px;}
.x5d_c01175{left:449.280000px;}
.x4c_c01175{left:452.730000px;}
.x5e_c01175{left:457.920000px;}
.x3f_c01175{left:468.285000px;}
.x5f_c01175{left:474.330000px;}
.x25_c01175{left:477.795000px;}
.x40_c01175{left:479.520000px;}
.x3c_c01175{left:482.970000px;}
.x60_c01175{left:489.885000px;}
.x31_c01175{left:495.075000px;}
.x6a_c01175{left:500.250000px;}
.x32_c01175{left:501.990000px;}
.x70_c01175{left:516.675000px;}
.x61_c01175{left:522.720000px;}
.x33_c01175{left:527.040000px;}
.x41_c01175{left:534.810000px;}
.x15_c01175{left:539.130000px;}
.x6b_c01175{left:540.870000px;}
.x34_c01175{left:544.320000px;}
.x16_c01175{left:546.915000px;}
.x26_c01175{left:552.090000px;}
.x6c_c01175{left:553.830000px;}
.x71_c01175{left:555.555000px;}
.x42_c01175{left:557.280000px;}
.x4d_c01175{left:561.600000px;}
.x2e_c01175{left:564.195000px;}
.x4e_c01175{left:568.515000px;}
.x27_c01175{left:576.285000px;}
.x62_c01175{left:583.200000px;}
.x35_c01175{left:585.795000px;}
.x43_c01175{left:597.885000px;}
.x2_c01175{left:600.480000px;}
.x28_c01175{left:606.525000px;}
.x36_c01175{left:613.440000px;}
.x3_c01175{left:616.890000px;}
.x51_c01175{left:622.080000px;}
.x3d_c01175{left:626.400000px;}
.x63_c01175{left:628.125000px;}
.x72_c01175{left:630.720000px;}
.x29_c01175{left:634.170000px;}
.x37_c01175{left:641.085000px;}
.x38_c01175{left:642.810000px;}
.x64_c01175{left:644.550000px;}
.x14_c01175{left:652.320000px;}
.x24_c01175{left:654.915000px;}
.x65_c01175{left:658.365000px;}
.x13_c01175{left:662.685000px;}
.x6d_c01175{left:669.600000px;}
.x66_c01175{left:673.050000px;}
.x49_c01175{left:676.515000px;}
.x5_c01175{left:679.965000px;}
.x4f_c01175{left:698.115000px;}
.x50_c01175{left:715.395000px;}
.x73_c01175{left:717.990000px;}
.x4a_c01175{left:728.355000px;}
.x6e_c01175{left:733.530000px;}
.x74_c01175{left:739.590000px;}
.x1c_c01175{left:746.490000px;}
.x67_c01175{left:749.085000px;}
.x1d_c01175{left:751.680000px;}
.x6_c01175{left:764.640000px;}
.x44_c01175{left:773.280000px;}
.xf_c01175{left:793.155000px;}
.x75_c01175{left:806.115000px;}
.x1a_c01175{left:810.435000px;}
.x45_c01175{left:812.160000px;}
.x18_c01175{left:819.075000px;}
.x23_c01175{left:820.800000px;}
.x46_c01175{left:823.395000px;}
.x2b_c01175{left:825.120000px;}
.x4b_c01175{left:830.310000px;}
.x17_c01175{left:832.035000px;}
.x2a_c01175{left:837.210000px;}
.x1e_c01175{left:839.805000px;}
.x2d_c01175{left:845.850000px;}
.x6f_c01175{left:847.590000px;}
.x2c_c01175{left:849.315000px;}
.x10_c01175{left:857.085000px;}
.x4_c01175{left:885.600000px;}
.x1b_c01175{left:902.010000px;}
.x19_c01175{left:933.990000px;}
.x7_c01175{left:952.125000px;}
.x8_c01175{left:954.720000px;}
@media print{
.v2_c01175{vertical-align:-6.133333pt;}
.v1_c01175{vertical-align:-3.093333pt;}
.v0_c01175{vertical-align:0.000000pt;}
.ls2_c01175{letter-spacing:0.000000pt;}
.ls1_c01175{letter-spacing:45.407176pt;}
.ls0_c01175{letter-spacing:47.111723pt;}
.ws0_c01175{word-spacing:0.000000pt;}
.fs6_c01175{font-size:3.072000pt;}
.fs13_c01175{font-size:5.333333pt;}
.fsc_c01175{font-size:6.133333pt;}
.fsb_c01175{font-size:9.226667pt;}
.fs1b_c01175{font-size:12.266667pt;}
.fs1_c01175{font-size:15.360000pt;}
.fs5_c01175{font-size:18.453333pt;}
.fs4_c01175{font-size:21.493333pt;}
.fs7_c01175{font-size:24.586667pt;}
.fs3_c01175{font-size:27.626667pt;}
.fs9_c01175{font-size:30.720000pt;}
.fs2_c01175{font-size:33.813333pt;}
.fs0_c01175{font-size:36.853333pt;}
.fs1c_c01175{font-size:39.946667pt;}
.fs8_c01175{font-size:42.986667pt;}
.fsd_c01175{font-size:46.080000pt;}
.fs14_c01175{font-size:52.213333pt;}
.fsa_c01175{font-size:55.306667pt;}
.fs1d_c01175{font-size:58.346667pt;}
.fs18_c01175{font-size:61.440000pt;}
.fs1e_c01175{font-size:64.533333pt;}
.fs10_c01175{font-size:67.573333pt;}
.fse_c01175{font-size:70.666667pt;}
.fsf_c01175{font-size:73.706667pt;}
.fs15_c01175{font-size:76.800000pt;}
.fs12_c01175{font-size:79.893333pt;}
.fs17_c01175{font-size:86.026667pt;}
.fs1f_c01175{font-size:89.066667pt;}
.fs16_c01175{font-size:92.160000pt;}
.fs11_c01175{font-size:95.253333pt;}
.fs1a_c01175{font-size:101.386667pt;}
.fs19_c01175{font-size:107.520000pt;}
.y0_c01175{bottom:0.000000pt;}
.y6c_c01175{bottom:106.746667pt;}
.y6a_c01175{bottom:116.733333pt;}
.y6b_c01175{bottom:120.573333pt;}
.y68_c01175{bottom:125.946667pt;}
.y69_c01175{bottom:128.253333pt;}
.y67_c01175{bottom:132.866667pt;}
.y64_c01175{bottom:641.280000pt;}
.y66_c01175{bottom:642.813333pt;}
.y65_c01175{bottom:643.586667pt;}
.y63_c01175{bottom:644.346667pt;}
.y62_c01175{bottom:645.120000pt;}
.y5c_c01175{bottom:645.893333pt;}
.y60_c01175{bottom:646.653333pt;}
.y61_c01175{bottom:647.426667pt;}
.y5e_c01175{bottom:648.186667pt;}
.y5d_c01175{bottom:652.026667pt;}
.y5b_c01175{bottom:652.800000pt;}
.y5f_c01175{bottom:653.573333pt;}
.y57_c01175{bottom:668.160000pt;}
.y56_c01175{bottom:672.773333pt;}
.y55_c01175{bottom:674.306667pt;}
.y5a_c01175{bottom:675.066667pt;}
.y59_c01175{bottom:675.840000pt;}
.y58_c01175{bottom:676.613333pt;}
.y54_c01175{bottom:715.773333pt;}
.y52_c01175{bottom:747.266667pt;}
.y53_c01175{bottom:752.640000pt;}
.y4b_c01175{bottom:753.413333pt;}
.y4d_c01175{bottom:754.173333pt;}
.y4e_c01175{bottom:755.706667pt;}
.y4f_c01175{bottom:758.786667pt;}
.y4a_c01175{bottom:759.546667pt;}
.y4c_c01175{bottom:769.533333pt;}
.y50_c01175{bottom:774.906667pt;}
.y51_c01175{bottom:778.746667pt;}
.y44_c01175{bottom:781.826667pt;}
.y48_c01175{bottom:782.586667pt;}
.y43_c01175{bottom:785.666667pt;}
.y37_c01175{bottom:786.426667pt;}
.y45_c01175{bottom:787.200000pt;}
.y46_c01175{bottom:787.973333pt;}
.y47_c01175{bottom:791.040000pt;}
.y49_c01175{bottom:803.333333pt;}
.y3c_c01175{bottom:808.706667pt;}
.y3f_c01175{bottom:809.466667pt;}
.y36_c01175{bottom:811.013333pt;}
.y3b_c01175{bottom:811.773333pt;}
.y41_c01175{bottom:812.546667pt;}
.y3a_c01175{bottom:813.306667pt;}
.y42_c01175{bottom:814.080000pt;}
.y3d_c01175{bottom:816.386667pt;}
.y40_c01175{bottom:819.453333pt;}
.y3e_c01175{bottom:820.226667pt;}
.y39_c01175{bottom:823.293333pt;}
.y38_c01175{bottom:824.066667pt;}
.y35_c01175{bottom:829.440000pt;}
.y32_c01175{bottom:833.280000pt;}
.y31_c01175{bottom:834.053333pt;}
.y33_c01175{bottom:834.813333pt;}
.y2f_c01175{bottom:856.320000pt;}
.y30_c01175{bottom:858.626667pt;}
.y2d_c01175{bottom:860.160000pt;}
.y34_c01175{bottom:863.226667pt;}
.y2e_c01175{bottom:864.000000pt;}
.y2c_c01175{bottom:952.320000pt;}
.y2a_c01175{bottom:956.160000pt;}
.y27_c01175{bottom:962.306667pt;}
.y28_c01175{bottom:963.066667pt;}
.y2b_c01175{bottom:966.906667pt;}
.y29_c01175{bottom:975.360000pt;}
.y26_c01175{bottom:986.880000pt;}
.y25_c01175{bottom:1003.773333pt;}
.y24_c01175{bottom:1004.546667pt;}
.y20_c01175{bottom:1052.933333pt;}
.y1e_c01175{bottom:1055.226667pt;}
.y1f_c01175{bottom:1059.066667pt;}
.y22_c01175{bottom:1069.826667pt;}
.y23_c01175{bottom:1074.426667pt;}
.y1d_c01175{bottom:1077.506667pt;}
.y18_c01175{bottom:1083.653333pt;}
.y1c_c01175{bottom:1084.413333pt;}
.y19_c01175{bottom:1088.253333pt;}
.y1b_c01175{bottom:1096.706667pt;}
.y21_c01175{bottom:1102.080000pt;}
.y10_c01175{bottom:1106.693333pt;}
.y11_c01175{bottom:1109.760000pt;}
.y1a_c01175{bottom:1115.906667pt;}
.y17_c01175{bottom:1122.053333pt;}
.yf_c01175{bottom:1130.493333pt;}
.y16_c01175{bottom:1137.413333pt;}
.y15_c01175{bottom:1138.173333pt;}
.ye_c01175{bottom:1151.226667pt;}
.yd_c01175{bottom:1160.453333pt;}
.yc_c01175{bottom:1169.666667pt;}
.y14_c01175{bottom:1171.200000pt;}
.yb_c01175{bottom:1181.186667pt;}
.y12_c01175{bottom:1183.493333pt;}
.y13_c01175{bottom:1185.026667pt;}
.ya_c01175{bottom:1193.466667pt;}
.y9_c01175{bottom:1195.773333pt;}
.y8_c01175{bottom:1199.613333pt;}
.y5_c01175{bottom:1258.746667pt;}
.y6_c01175{bottom:1261.053333pt;}
.y7_c01175{bottom:1267.200000pt;}
.y1_c01175{bottom:1268.733333pt;}
.y3_c01175{bottom:1279.493333pt;}
.y4_c01175{bottom:1281.026667pt;}
.y2_c01175{bottom:1284.866667pt;}
.h8_c01175{height:2.764500pt;}
.h16_c01175{height:4.799479pt;}
.he_c01175{height:5.519401pt;}
.hd_c01175{height:8.303099pt;}
.h10_c01175{height:10.729167pt;}
.h1e_c01175{height:11.038802pt;}
.h3_c01175{height:13.822500pt;}
.h7_c01175{height:16.606198pt;}
.h6_c01175{height:19.341901pt;}
.h9_c01175{height:22.125599pt;}
.h5_c01175{height:24.861302pt;}
.hb_c01175{height:27.645000pt;}
.h4_c01175{height:30.428698pt;}
.h2_c01175{height:33.164401pt;}
.h1f_c01175{height:35.948099pt;}
.ha_c01175{height:38.683802pt;}
.hf_c01175{height:41.467500pt;}
.h17_c01175{height:46.986901pt;}
.hc_c01175{height:49.770599pt;}
.h20_c01175{height:52.506302pt;}
.h1b_c01175{height:55.290000pt;}
.h21_c01175{height:58.073698pt;}
.h13_c01175{height:60.809401pt;}
.h11_c01175{height:63.593099pt;}
.h12_c01175{height:66.328802pt;}
.h18_c01175{height:69.112500pt;}
.h15_c01175{height:71.896198pt;}
.h1a_c01175{height:77.415599pt;}
.h22_c01175{height:80.151302pt;}
.h19_c01175{height:82.935000pt;}
.h14_c01175{height:85.718698pt;}
.h1d_c01175{height:91.238099pt;}
.h1c_c01175{height:96.757500pt;}
.h0_c01175{height:1347.066667pt;}
.h1_c01175{height:1347.333333pt;}
.w0_c01175{width:967.680000pt;}
.w1_c01175{width:968.000000pt;}
.x0_c01175{left:0.000000pt;}
.xb_c01175{left:2.306667pt;}
.xa_c01175{left:3.840000pt;}
.x9_c01175{left:7.680000pt;}
.xc_c01175{left:18.426667pt;}
.x22_c01175{left:150.533333pt;}
.x1f_c01175{left:181.253333pt;}
.x53_c01175{left:238.080000pt;}
.x39_c01175{left:239.613333pt;}
.x54_c01175{left:243.453333pt;}
.x3b_c01175{left:255.746667pt;}
.x76_c01175{left:257.280000pt;}
.x55_c01175{left:261.893333pt;}
.x78_c01175{left:264.960000pt;}
.x1_c01175{left:272.640000pt;}
.x3a_c01175{left:275.706667pt;}
.x56_c01175{left:286.466667pt;}
.x57_c01175{left:299.520000pt;}
.x47_c01175{left:302.586667pt;}
.x77_c01175{left:312.573333pt;}
.x58_c01175{left:314.106667pt;}
.xd_c01175{left:315.653333pt;}
.x20_c01175{left:319.493333pt;}
.x21_c01175{left:327.173333pt;}
.xe_c01175{left:331.013333pt;}
.x59_c01175{left:341.760000pt;}
.x68_c01175{left:345.600000pt;}
.x48_c01175{left:350.973333pt;}
.x52_c01175{left:354.053333pt;}
.x5a_c01175{left:357.893333pt;}
.x5b_c01175{left:371.706667pt;}
.x2f_c01175{left:373.253333pt;}
.x69_c01175{left:381.693333pt;}
.x11_c01175{left:384.000000pt;}
.x5c_c01175{left:386.306667pt;}
.x12_c01175{left:388.613333pt;}
.x3e_c01175{left:390.906667pt;}
.x30_c01175{left:395.520000pt;}
.x5d_c01175{left:399.360000pt;}
.x4c_c01175{left:402.426667pt;}
.x5e_c01175{left:407.040000pt;}
.x3f_c01175{left:416.253333pt;}
.x5f_c01175{left:421.626667pt;}
.x25_c01175{left:424.706667pt;}
.x40_c01175{left:426.240000pt;}
.x3c_c01175{left:429.306667pt;}
.x60_c01175{left:435.453333pt;}
.x31_c01175{left:440.066667pt;}
.x6a_c01175{left:444.666667pt;}
.x32_c01175{left:446.213333pt;}
.x70_c01175{left:459.266667pt;}
.x61_c01175{left:464.640000pt;}
.x33_c01175{left:468.480000pt;}
.x41_c01175{left:475.386667pt;}
.x15_c01175{left:479.226667pt;}
.x6b_c01175{left:480.773333pt;}
.x34_c01175{left:483.840000pt;}
.x16_c01175{left:486.146667pt;}
.x26_c01175{left:490.746667pt;}
.x6c_c01175{left:492.293333pt;}
.x71_c01175{left:493.826667pt;}
.x42_c01175{left:495.360000pt;}
.x4d_c01175{left:499.200000pt;}
.x2e_c01175{left:501.506667pt;}
.x4e_c01175{left:505.346667pt;}
.x27_c01175{left:512.253333pt;}
.x62_c01175{left:518.400000pt;}
.x35_c01175{left:520.706667pt;}
.x43_c01175{left:531.453333pt;}
.x2_c01175{left:533.760000pt;}
.x28_c01175{left:539.133333pt;}
.x36_c01175{left:545.280000pt;}
.x3_c01175{left:548.346667pt;}
.x51_c01175{left:552.960000pt;}
.x3d_c01175{left:556.800000pt;}
.x63_c01175{left:558.333333pt;}
.x72_c01175{left:560.640000pt;}
.x29_c01175{left:563.706667pt;}
.x37_c01175{left:569.853333pt;}
.x38_c01175{left:571.386667pt;}
.x64_c01175{left:572.933333pt;}
.x14_c01175{left:579.840000pt;}
.x24_c01175{left:582.146667pt;}
.x65_c01175{left:585.213333pt;}
.x13_c01175{left:589.053333pt;}
.x6d_c01175{left:595.200000pt;}
.x66_c01175{left:598.266667pt;}
.x49_c01175{left:601.346667pt;}
.x5_c01175{left:604.413333pt;}
.x4f_c01175{left:620.546667pt;}
.x50_c01175{left:635.906667pt;}
.x73_c01175{left:638.213333pt;}
.x4a_c01175{left:647.426667pt;}
.x6e_c01175{left:652.026667pt;}
.x74_c01175{left:657.413333pt;}
.x1c_c01175{left:663.546667pt;}
.x67_c01175{left:665.853333pt;}
.x1d_c01175{left:668.160000pt;}
.x6_c01175{left:679.680000pt;}
.x44_c01175{left:687.360000pt;}
.xf_c01175{left:705.026667pt;}
.x75_c01175{left:716.546667pt;}
.x1a_c01175{left:720.386667pt;}
.x45_c01175{left:721.920000pt;}
.x18_c01175{left:728.066667pt;}
.x23_c01175{left:729.600000pt;}
.x46_c01175{left:731.906667pt;}
.x2b_c01175{left:733.440000pt;}
.x4b_c01175{left:738.053333pt;}
.x17_c01175{left:739.586667pt;}
.x2a_c01175{left:744.186667pt;}
.x1e_c01175{left:746.493333pt;}
.x2d_c01175{left:751.866667pt;}
.x6f_c01175{left:753.413333pt;}
.x2c_c01175{left:754.946667pt;}
.x10_c01175{left:761.853333pt;}
.x4_c01175{left:787.200000pt;}
.x1b_c01175{left:801.786667pt;}
.x19_c01175{left:830.213333pt;}
.x7_c01175{left:846.333333pt;}
.x8_c01175{left:848.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_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_a45144efd860318f5533c731.woff2')format("woff");}.ff1_c01176{font-family:ff1_c01176;line-height:1.109863;font-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_c01176{transform:matrix(0.071500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071500,0.000000,0.000000,0.250000,0,0);}
.m16_c01176{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m0_c01176{transform:matrix(0.127375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127375,0.000000,0.000000,0.250000,0,0);}
.mc_c01176{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m15_c01176{transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);}
.m3_c01176{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);}
.m7_c01176{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);}
.m9_c01176{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);}
.m11_c01176{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);}
.m14_c01176{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01176{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c01176{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md_c01176{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);}
.mf_c01176{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2_c01176{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m5_c01176{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);}
.m6_c01176{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1_c01176{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m17_c01176{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m12_c01176{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mb_c01176{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m10_c01176{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m18_c01176{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.ma_c01176{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.me_c01176{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.v1_c01176{vertical-align:-10.380000px;}
.v0_c01176{vertical-align:0.000000px;}
.ls1_c01176{letter-spacing:0.000000px;}
.ls0_c01176{letter-spacing:41.021855px;}
.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;}
.fc0_c01176{color:transparent;}
.fs8_c01176{font-size:3.456000px;}
.fsa_c01176{font-size:6.000000px;}
.fse_c01176{font-size:10.380000px;}
.fs7_c01176{font-size:13.800000px;}
.fs1_c01176{font-size:17.280000px;}
.fs3_c01176{font-size:20.760000px;}
.fs4_c01176{font-size:24.180000px;}
.fs2_c01176{font-size:27.660000px;}
.fsb_c01176{font-size:31.080000px;}
.fs5_c01176{font-size:34.560000px;}
.fs6_c01176{font-size:41.460000px;}
.fsd_c01176{font-size:48.360000px;}
.fs0_c01176{font-size:51.840000px;}
.fsf_c01176{font-size:58.740000px;}
.fsc_c01176{font-size:62.220000px;}
.fs9_c01176{font-size:72.600000px;}
.y0_c01176{bottom:0.000000px;}
.y19_c01176{bottom:461.370000px;}
.y17_c01176{bottom:465.690000px;}
.y1a_c01176{bottom:469.155000px;}
.y18_c01176{bottom:474.330000px;}
.y1d_c01176{bottom:519.270000px;}
.y1c_c01176{bottom:548.640000px;}
.y1b_c01176{bottom:564.195000px;}
.y16_c01176{bottom:966.810000px;}
.y15_c01176{bottom:972.000000px;}
.y13_c01176{bottom:1086.045000px;}
.yf_c01176{bottom:1086.915000px;}
.y12_c01176{bottom:1099.005000px;}
.y11_c01176{bottom:1105.920000px;}
.y10_c01176{bottom:1108.515000px;}
.y14_c01176{bottom:1110.240000px;}
.ye_c01176{bottom:1132.710000px;}
.yb_c01176{bottom:1152.570000px;}
.yd_c01176{bottom:1158.630000px;}
.yc_c01176{bottom:1162.950000px;}
.ya_c01176{bottom:1184.550000px;}
.y9_c01176{bottom:1188.000000px;}
.y8_c01176{bottom:1247.610000px;}
.y7_c01176{bottom:1306.365000px;}
.y6_c01176{bottom:1357.350000px;}
.y5_c01176{bottom:1372.035000px;}
.y4_c01176{bottom:1381.530000px;}
.y3_c01176{bottom:1384.125000px;}
.y2_c01176{bottom:1423.005000px;}
.y1_c01176{bottom:1429.050000px;}
.ha_c01176{height:5.170312px;}
.hc_c01176{height:5.399414px;}
.h10_c01176{height:9.340986px;}
.h9_c01176{height:12.418652px;}
.h3_c01176{height:15.550313px;}
.h5_c01176{height:18.681973px;}
.h6_c01176{height:21.759639px;}
.h4_c01176{height:24.891299px;}
.hd_c01176{height:27.968965px;}
.h7_c01176{height:31.100625px;}
.h8_c01176{height:37.309951px;}
.hf_c01176{height:43.519277px;}
.h2_c01176{height:46.650937px;}
.h11_c01176{height:52.860264px;}
.he_c01176{height:55.991924px;}
.hb_c01176{height:65.332910px;}
.h0_c01176{height:1521.510000px;}
.h1_c01176{height:1521.750000px;}
.w0_c01176{width:1088.640000px;}
.w1_c01176{width:1089.000000px;}
.x0_c01176{left:0.000000px;}
.x3_c01176{left:158.970000px;}
.xb_c01176{left:200.445000px;}
.x9_c01176{left:434.595000px;}
.xa_c01176{left:443.235000px;}
.xc_c01176{left:468.285000px;}
.xe_c01176{left:473.475000px;}
.xd_c01176{left:475.200000px;}
.x12_c01176{left:511.485000px;}
.xf_c01176{left:520.125000px;}
.x10_c01176{left:527.910000px;}
.x8_c01176{left:535.680000px;}
.x11_c01176{left:537.405000px;}
.x2_c01176{left:584.925000px;}
.x6_c01176{left:685.155000px;}
.x7_c01176{left:729.210000px;}
.x14_c01176{left:736.995000px;}
.x15_c01176{left:786.240000px;}
.x19_c01176{left:790.560000px;}
.x1_c01176{left:820.800000px;}
.x18_c01176{left:826.845000px;}
.x5_c01176{left:828.570000px;}
.x4_c01176{left:830.310000px;}
.x16_c01176{left:925.350000px;}
.x13_c01176{left:1028.160000px;}
.x17_c01176{left:1059.270000px;}
@media print{
.v1_c01176{vertical-align:-9.226667pt;}
.v0_c01176{vertical-align:0.000000pt;}
.ls1_c01176{letter-spacing:0.000000pt;}
.ls0_c01176{letter-spacing:36.463871pt;}
.ws0_c01176{word-spacing:0.000000pt;}
.fs8_c01176{font-size:3.072000pt;}
.fsa_c01176{font-size:5.333333pt;}
.fse_c01176{font-size:9.226667pt;}
.fs7_c01176{font-size:12.266667pt;}
.fs1_c01176{font-size:15.360000pt;}
.fs3_c01176{font-size:18.453333pt;}
.fs4_c01176{font-size:21.493333pt;}
.fs2_c01176{font-size:24.586667pt;}
.fsb_c01176{font-size:27.626667pt;}
.fs5_c01176{font-size:30.720000pt;}
.fs6_c01176{font-size:36.853333pt;}
.fsd_c01176{font-size:42.986667pt;}
.fs0_c01176{font-size:46.080000pt;}
.fsf_c01176{font-size:52.213333pt;}
.fsc_c01176{font-size:55.306667pt;}
.fs9_c01176{font-size:64.533333pt;}
.y0_c01176{bottom:0.000000pt;}
.y19_c01176{bottom:410.106667pt;}
.y17_c01176{bottom:413.946667pt;}
.y1a_c01176{bottom:417.026667pt;}
.y18_c01176{bottom:421.626667pt;}
.y1d_c01176{bottom:461.573333pt;}
.y1c_c01176{bottom:487.680000pt;}
.y1b_c01176{bottom:501.506667pt;}
.y16_c01176{bottom:859.386667pt;}
.y15_c01176{bottom:864.000000pt;}
.y13_c01176{bottom:965.373333pt;}
.yf_c01176{bottom:966.146667pt;}
.y12_c01176{bottom:976.893333pt;}
.y11_c01176{bottom:983.040000pt;}
.y10_c01176{bottom:985.346667pt;}
.y14_c01176{bottom:986.880000pt;}
.ye_c01176{bottom:1006.853333pt;}
.yb_c01176{bottom:1024.506667pt;}
.yd_c01176{bottom:1029.893333pt;}
.yc_c01176{bottom:1033.733333pt;}
.ya_c01176{bottom:1052.933333pt;}
.y9_c01176{bottom:1056.000000pt;}
.y8_c01176{bottom:1108.986667pt;}
.y7_c01176{bottom:1161.213333pt;}
.y6_c01176{bottom:1206.533333pt;}
.y5_c01176{bottom:1219.586667pt;}
.y4_c01176{bottom:1228.026667pt;}
.y3_c01176{bottom:1230.333333pt;}
.y2_c01176{bottom:1264.893333pt;}
.y1_c01176{bottom:1270.266667pt;}
.ha_c01176{height:4.595833pt;}
.hc_c01176{height:4.799479pt;}
.h10_c01176{height:8.303099pt;}
.h9_c01176{height:11.038802pt;}
.h3_c01176{height:13.822500pt;}
.h5_c01176{height:16.606198pt;}
.h6_c01176{height:19.341901pt;}
.h4_c01176{height:22.125599pt;}
.hd_c01176{height:24.861302pt;}
.h7_c01176{height:27.645000pt;}
.h8_c01176{height:33.164401pt;}
.hf_c01176{height:38.683802pt;}
.h2_c01176{height:41.467500pt;}
.h11_c01176{height:46.986901pt;}
.he_c01176{height:49.770599pt;}
.hb_c01176{height:58.073698pt;}
.h0_c01176{height:1352.453333pt;}
.h1_c01176{height:1352.666667pt;}
.w0_c01176{width:967.680000pt;}
.w1_c01176{width:968.000000pt;}
.x0_c01176{left:0.000000pt;}
.x3_c01176{left:141.306667pt;}
.xb_c01176{left:178.173333pt;}
.x9_c01176{left:386.306667pt;}
.xa_c01176{left:393.986667pt;}
.xc_c01176{left:416.253333pt;}
.xe_c01176{left:420.866667pt;}
.xd_c01176{left:422.400000pt;}
.x12_c01176{left:454.653333pt;}
.xf_c01176{left:462.333333pt;}
.x10_c01176{left:469.253333pt;}
.x8_c01176{left:476.160000pt;}
.x11_c01176{left:477.693333pt;}
.x2_c01176{left:519.933333pt;}
.x6_c01176{left:609.026667pt;}
.x7_c01176{left:648.186667pt;}
.x14_c01176{left:655.106667pt;}
.x15_c01176{left:698.880000pt;}
.x19_c01176{left:702.720000pt;}
.x1_c01176{left:729.600000pt;}
.x18_c01176{left:734.973333pt;}
.x5_c01176{left:736.506667pt;}
.x4_c01176{left:738.053333pt;}
.x16_c01176{left:822.533333pt;}
.x13_c01176{left:913.920000pt;}
.x17_c01176{left:941.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_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_cd3a90c9050ca1ec2820b229.woff2')format("woff");}.ff1_c01177{font-family:ff1_c01177;line-height:1.109863;font-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_c01177{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m23_c01177{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m70_c01177{transform:matrix(0.081325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081325,0.000000,0.000000,0.250000,0,0);}
.m97_c01177{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.m98_c01177{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m95_c01177{transform:matrix(0.111950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111950,0.000000,0.000000,0.250000,0,0);}
.m1c_c01177{transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);}
.m135_c01177{transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);}
.m12c_c01177{transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);}
.m134_c01177{transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);}
.m79_c01177{transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);}
.md0_c01177{transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);}
.m5c_c01177{transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);}
.m71_c01177{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);}
.mae_c01177{transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);}
.m35_c01177{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mf_c01177{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01177{transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);}
.m11e_c01177{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.me5_c01177{transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139625,0.000000,0.000000,0.250000,0,0);}
.m41_c01177{transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);}
.me7_c01177{transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);}
.mcf_c01177{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.md4_c01177{transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);}
.mbe_c01177{transform:matrix(0.142725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142725,0.000000,0.000000,0.250000,0,0);}
.m11d_c01177{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.m19_c01177{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mdf_c01177{transform:matrix(0.144150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144150,0.000000,0.000000,0.250000,0,0);}
.md7_c01177{transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);}
.mf5_c01177{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.mfa_c01177{transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);}
.meb_c01177{transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);}
.m121_c01177{transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);}
.m7c_c01177{transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);}
.m12d_c01177{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m11a_c01177{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);}
.m119_c01177{transform:matrix(0.150525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150525,0.000000,0.000000,0.250000,0,0);}
.m108_c01177{transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);}
.mb0_c01177{transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);}
.m10b_c01177{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m74_c01177{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);}
.m2c_c01177{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.m9b_c01177{transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);}
.med_c01177{transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);}
.mea_c01177{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);}
.m33_c01177{transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);}
.m120_c01177{transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);}
.m118_c01177{transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);}
.mb9_c01177{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);}
.m53_c01177{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m44_c01177{transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159600,0.000000,0.000000,0.250000,0,0);}
.m22_c01177{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.me2_c01177{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.md5_c01177{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);}
.m52_c01177{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m127_c01177{transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);}
.me9_c01177{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);}
.m8b_c01177{transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);}
.mb3_c01177{transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);}
.me0_c01177{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.m77_c01177{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.mb2_c01177{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.mdb_c01177{transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);}
.m11f_c01177{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.m89_c01177{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.me4_c01177{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m122_c01177{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);}
.m31_c01177{transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);}
.mf7_c01177{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.mf9_c01177{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);}
.m124_c01177{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.mbb_c01177{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.m12e_c01177{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);}
.m112_c01177{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m99_c01177{transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);}
.m5b_c01177{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m117_c01177{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.mc1_c01177{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m8c_c01177{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m7d_c01177{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);}
.m6d_c01177{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);}
.m9f_c01177{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m7e_c01177{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.ma8_c01177{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.m12b_c01177{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.mc7_c01177{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.mfd_c01177{transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);}
.m8f_c01177{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.mff_c01177{transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);}
.mc2_c01177{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m69_c01177{transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);}
.m4_c01177{transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);}
.mf3_c01177{transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);}
.mac_c01177{transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);}
.m50_c01177{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);}
.mbf_c01177{transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);}
.m1a_c01177{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.ma0_c01177{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.mcc_c01177{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.m12f_c01177{transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);}
.mba_c01177{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);}
.m9d_c01177{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);}
.mf2_c01177{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m2f_c01177{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.me1_c01177{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.m56_c01177{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.mdd_c01177{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);}
.m133_c01177{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.m54_c01177{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);}
.mb7_c01177{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m105_c01177{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.m37_c01177{transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);}
.mb8_c01177{transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);}
.m3d_c01177{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mc8_c01177{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.md1_c01177{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m12a_c01177{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);}
.m88_c01177{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.ma9_c01177{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m76_c01177{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m9e_c01177{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);}
.mf4_c01177{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);}
.m11b_c01177{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m1b_c01177{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m5e_c01177{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);}
.mc0_c01177{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.maf_c01177{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);}
.m46_c01177{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.m63_c01177{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.mc4_c01177{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.mc9_c01177{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);}
.m7b_c01177{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.m68_c01177{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);}
.m11c_c01177{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m132_c01177{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.me8_c01177{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.mc5_c01177{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);}
.m129_c01177{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.md2_c01177{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m84_c01177{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);}
.m3f_c01177{transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);}
.m8d_c01177{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.m80_c01177{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);}
.m10e_c01177{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);}
.m96_c01177{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m92_c01177{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m87_c01177{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);}
.m3e_c01177{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.mf6_c01177{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.mcd_c01177{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);}
.m10f_c01177{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.mdc_c01177{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.mf8_c01177{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m4e_c01177{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);}
.m130_c01177{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);}
.m45_c01177{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m6e_c01177{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m67_c01177{transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);}
.m131_c01177{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01177{transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);}
.ma6_c01177{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m2b_c01177{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.m65_c01177{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m110_c01177{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m82_c01177{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);}
.mb6_c01177{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m90_c01177{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m91_c01177{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.m93_c01177{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m3c_c01177{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.mb5_c01177{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.m49_c01177{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);}
.m66_c01177{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.mfb_c01177{transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);}
.m26_c01177{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);}
.md3_c01177{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);}
.m10d_c01177{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);}
.m109_c01177{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);}
.m29_c01177{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);}
.md8_c01177{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m102_c01177{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m61_c01177{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);}
.m42_c01177{transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);}
.m7a_c01177{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);}
.m100_c01177{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);}
.mde_c01177{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);}
.m75_c01177{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);}
.mca_c01177{transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);}
.mcb_c01177{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m30_c01177{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.mce_c01177{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);}
.mda_c01177{transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);}
.m113_c01177{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.ma2_c01177{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.ma7_c01177{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.m36_c01177{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.m24_c01177{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);}
.m106_c01177{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);}
.m123_c01177{transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);}
.m128_c01177{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);}
.ma5_c01177{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);}
.m27_c01177{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);}
.me6_c01177{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);}
.m94_c01177{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.m28_c01177{transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);}
.m101_c01177{transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);}
.mc6_c01177{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);}
.m114_c01177{transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);}
.ma3_c01177{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m13c_c01177{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);}
.mbd_c01177{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);}
.m10c_c01177{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);}
.m4d_c01177{transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);}
.m6f_c01177{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);}
.me3_c01177{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);}
.m85_c01177{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);}
.m39_c01177{transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);}
.m40_c01177{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m126_c01177{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);}
.md6_c01177{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m5a_c01177{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);}
.m116_c01177{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01177{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);}
.m43_c01177{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m115_c01177{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);}
.m12_c01177{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);}
.mc_c01177{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01177{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);}
.m3b_c01177{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);}
.m78_c01177{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);}
.m25_c01177{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);}
.m32_c01177{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m83_c01177{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m59_c01177{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);}
.m2a_c01177{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01177{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);}
.m62_c01177{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);}
.mb1_c01177{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m13_c01177{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);}
.me_c01177{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m73_c01177{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13d_c01177{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);}
.m17_c01177{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m125_c01177{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);}
.m104_c01177{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);}
.m9c_c01177{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10a_c01177{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md9_c01177{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);}
.m1e_c01177{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c01177{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m64_c01177{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);}
.m3a_c01177{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc3_c01177{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m21_c01177{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c01177{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c01177{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c01177{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);}
.m111_c01177{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01177{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.maa_c01177{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c01177{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m58_c01177{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);}
.m38_c01177{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);}
.mf0_c01177{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mee_c01177{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01177{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);}
.m1f_c01177{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m18_c01177{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m15_c01177{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m34_c01177{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);}
.m4b_c01177{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m47_c01177{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);}
.ma4_c01177{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m55_c01177{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.ma1_c01177{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m20_c01177{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m2_c01177{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mab_c01177{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m8a_c01177{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mb_c01177{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m48_c01177{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);}
.m11_c01177{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);}
.m81_c01177{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1_c01177{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);}
.m5d_c01177{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.md_c01177{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c01177{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01177{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01177{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m51_c01177{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);}
.mb4_c01177{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m13e_c01177{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mbc_c01177{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m16_c01177{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m13f_c01177{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.ma_c01177{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m72_c01177{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mef_c01177{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);}
.m9a_c01177{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mad_c01177{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m107_c01177{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m0_c01177{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.mfc_c01177{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.mf1_c01177{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01177{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01177{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m60_c01177{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m139_c01177{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.mec_c01177{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m103_c01177{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m7_c01177{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mfe_c01177{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);}
.m8e_c01177{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m140_c01177{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m13a_c01177{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m8_c01177{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m138_c01177{transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.110000,0.000000,0.000000,0.250000,0,0);}
.m136_c01177{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m137_c01177{transform:matrix(1.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.592500,0.000000,0.000000,0.250000,0,0);}
.m57_c01177{transform:matrix(2.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.730000,0.000000,0.000000,0.250000,0,0);}
.m13b_c01177{transform:matrix(4.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.157500,0.000000,0.000000,0.250000,0,0);}
.v0_c01177{vertical-align:0.000000px;}
.v1_c01177{vertical-align:3.480000px;}
.ls1_c01177{letter-spacing:0.000000px;}
.ls0_c01177{letter-spacing:46.813152px;}
.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:-17.189880px;}
.ws2_c01177{word-spacing:0.000000px;}
.ws1_c01177{word-spacing:165.507480px;}
.fc0_c01177{color:transparent;}
.fs6_c01177{font-size:3.456000px;}
.fs8_c01177{font-size:6.000000px;}
.fs20_c01177{font-size:6.900000px;}
.fs5_c01177{font-size:10.380000px;}
.fs24_c01177{font-size:13.800000px;}
.fs7_c01177{font-size:17.280000px;}
.fs1_c01177{font-size:20.760000px;}
.fs12_c01177{font-size:24.180000px;}
.fs11_c01177{font-size:27.660000px;}
.fs1f_c01177{font-size:31.080000px;}
.fs1e_c01177{font-size:34.560000px;}
.fs9_c01177{font-size:38.040000px;}
.fs10_c01177{font-size:41.460000px;}
.fs1c_c01177{font-size:44.940000px;}
.fs1b_c01177{font-size:48.360000px;}
.fs1a_c01177{font-size:51.840000px;}
.fs22_c01177{font-size:55.320000px;}
.fs13_c01177{font-size:58.740000px;}
.fs14_c01177{font-size:62.220000px;}
.fs15_c01177{font-size:65.640000px;}
.fs16_c01177{font-size:69.120000px;}
.fs19_c01177{font-size:72.600000px;}
.fs1d_c01177{font-size:76.020000px;}
.fs17_c01177{font-size:79.500000px;}
.fsb_c01177{font-size:82.920000px;}
.fsa_c01177{font-size:86.400000px;}
.fsc_c01177{font-size:89.880000px;}
.fsd_c01177{font-size:93.300000px;}
.fs18_c01177{font-size:96.780000px;}
.fsf_c01177{font-size:100.200000px;}
.fse_c01177{font-size:103.680000px;}
.fs23_c01177{font-size:107.160000px;}
.fs21_c01177{font-size:110.580000px;}
.fs26_c01177{font-size:114.060000px;}
.fs25_c01177{font-size:117.480000px;}
.fs0_c01177{font-size:145.140000px;}
.fs2_c01177{font-size:148.620000px;}
.fs4_c01177{font-size:152.040000px;}
.fs3_c01177{font-size:155.520000px;}
.y0_c01177{bottom:0.000000px;}
.y119_c01177{bottom:114.045000px;}
.y10c_c01177{bottom:201.315000px;}
.y10a_c01177{bottom:203.040000px;}
.y10b_c01177{bottom:203.910000px;}
.y109_c01177{bottom:216.000000px;}
.y107_c01177{bottom:217.725000px;}
.y106_c01177{bottom:218.595000px;}
.y105_c01177{bottom:219.450000px;}
.y108_c01177{bottom:220.320000px;}
.y100_c01177{bottom:221.190000px;}
.yff_c01177{bottom:222.045000px;}
.y101_c01177{bottom:222.915000px;}
.yfb_c01177{bottom:223.770000px;}
.yfa_c01177{bottom:225.510000px;}
.y103_c01177{bottom:226.365000px;}
.y102_c01177{bottom:227.235000px;}
.yfe_c01177{bottom:228.090000px;}
.yfd_c01177{bottom:228.960000px;}
.yfc_c01177{bottom:229.830000px;}
.y104_c01177{bottom:240.195000px;}
.yf9_c01177{bottom:245.370000px;}
.yf8_c01177{bottom:246.240000px;}
.yf4_c01177{bottom:248.835000px;}
.yf7_c01177{bottom:253.155000px;}
.yf6_c01177{bottom:256.605000px;}
.yf5_c01177{bottom:257.475000px;}
.yf1_c01177{bottom:270.435000px;}
.yf2_c01177{bottom:271.290000px;}
.yf0_c01177{bottom:273.030000px;}
.yee_c01177{bottom:274.755000px;}
.yef_c01177{bottom:275.610000px;}
.yf3_c01177{bottom:276.480000px;}
.yea_c01177{bottom:296.355000px;}
.ye9_c01177{bottom:298.080000px;}
.yec_c01177{bottom:298.950000px;}
.ye8_c01177{bottom:299.805000px;}
.yeb_c01177{bottom:301.530000px;}
.ye7_c01177{bottom:303.270000px;}
.yed_c01177{bottom:305.850000px;}
.ye5_c01177{bottom:307.590000px;}
.ye6_c01177{bottom:308.445000px;}
.ye2_c01177{bottom:320.550000px;}
.ye4_c01177{bottom:321.405000px;}
.ydf_c01177{bottom:323.130000px;}
.ye0_c01177{bottom:325.725000px;}
.ye1_c01177{bottom:327.450000px;}
.ye3_c01177{bottom:329.190000px;}
.yde_c01177{bottom:330.915000px;}
.ydc_c01177{bottom:332.640000px;}
.ydd_c01177{bottom:333.510000px;}
.y118_c01177{bottom:343.005000px;}
.yd9_c01177{bottom:346.470000px;}
.yda_c01177{bottom:348.195000px;}
.yd6_c01177{bottom:350.790000px;}
.y117_c01177{bottom:351.645000px;}
.yd7_c01177{bottom:353.370000px;}
.ydb_c01177{bottom:354.240000px;}
.yd8_c01177{bottom:355.110000px;}
.yd5_c01177{bottom:357.690000px;}
.y116_c01177{bottom:362.880000px;}
.yd3_c01177{bottom:370.650000px;}
.ycf_c01177{bottom:373.245000px;}
.ycd_c01177{bottom:374.970000px;}
.yd1_c01177{bottom:377.565000px;}
.yd0_c01177{bottom:378.435000px;}
.yd2_c01177{bottom:381.885000px;}
.yce_c01177{bottom:382.755000px;}
.yd4_c01177{bottom:388.800000px;}
.ycb_c01177{bottom:395.715000px;}
.yca_c01177{bottom:396.570000px;}
.yc9_c01177{bottom:399.165000px;}
.ycc_c01177{bottom:400.035000px;}
.yc8_c01177{bottom:400.890000px;}
.yc6_c01177{bottom:401.760000px;}
.yc7_c01177{bottom:402.630000px;}
.yc4_c01177{bottom:421.635000px;}
.ybf_c01177{bottom:422.490000px;}
.yc1_c01177{bottom:423.360000px;}
.ybc_c01177{bottom:424.230000px;}
.yc2_c01177{bottom:425.085000px;}
.ybe_c01177{bottom:425.955000px;}
.yc3_c01177{bottom:428.550000px;}
.ybd_c01177{bottom:430.275000px;}
.yc0_c01177{bottom:432.000000px;}
.yc5_c01177{bottom:435.450000px;}
.yb9_c01177{bottom:446.685000px;}
.yba_c01177{bottom:447.555000px;}
.yb7_c01177{bottom:448.410000px;}
.yb5_c01177{bottom:449.280000px;}
.yb6_c01177{bottom:451.005000px;}
.yb8_c01177{bottom:452.730000px;}
.ybb_c01177{bottom:453.600000px;}
.yb4_c01177{bottom:457.050000px;}
.y13_c01177{bottom:460.515000px;}
.y12_c01177{bottom:469.155000px;}
.yb3_c01177{bottom:470.880000px;}
.yb0_c01177{bottom:471.750000px;}
.yb2_c01177{bottom:474.330000px;}
.yac_c01177{bottom:476.070000px;}
.yaf_c01177{bottom:478.650000px;}
.yb1_c01177{bottom:479.520000px;}
.yab_c01177{bottom:482.115000px;}
.yad_c01177{bottom:482.970000px;}
.yae_c01177{bottom:483.840000px;}
.ya9_c01177{bottom:495.930000px;}
.ya6_c01177{bottom:496.800000px;}
.ya3_c01177{bottom:497.670000px;}
.ya2_c01177{bottom:499.395000px;}
.ya0_c01177{bottom:500.250000px;}
.ya5_c01177{bottom:501.120000px;}
.ya7_c01177{bottom:502.845000px;}
.ya8_c01177{bottom:503.715000px;}
.yaa_c01177{bottom:504.570000px;}
.ya4_c01177{bottom:505.440000px;}
.ya1_c01177{bottom:508.890000px;}
.y9d_c01177{bottom:522.720000px;}
.y9c_c01177{bottom:523.590000px;}
.y9a_c01177{bottom:524.445000px;}
.y99_c01177{bottom:526.170000px;}
.y9e_c01177{bottom:527.040000px;}
.y9b_c01177{bottom:527.910000px;}
.y9f_c01177{bottom:528.765000px;}
.y98_c01177{bottom:533.085000px;}
.y96_c01177{bottom:545.190000px;}
.y94_c01177{bottom:546.045000px;}
.y97_c01177{bottom:546.915000px;}
.y95_c01177{bottom:547.770000px;}
.y90_c01177{bottom:549.510000px;}
.y91_c01177{bottom:550.365000px;}
.y93_c01177{bottom:552.090000px;}
.y92_c01177{bottom:555.555000px;}
.y11_c01177{bottom:557.280000px;}
.y8c_c01177{bottom:571.965000px;}
.y8b_c01177{bottom:572.835000px;}
.y89_c01177{bottom:574.560000px;}
.y8d_c01177{bottom:575.430000px;}
.y8f_c01177{bottom:578.010000px;}
.y8e_c01177{bottom:578.880000px;}
.y8a_c01177{bottom:580.605000px;}
.y87_c01177{bottom:597.030000px;}
.y86_c01177{bottom:597.885000px;}
.y83_c01177{bottom:598.755000px;}
.y82_c01177{bottom:600.480000px;}
.y81_c01177{bottom:601.350000px;}
.y84_c01177{bottom:603.075000px;}
.y88_c01177{bottom:603.930000px;}
.y85_c01177{bottom:605.670000px;}
.y7e_c01177{bottom:622.080000px;}
.y7d_c01177{bottom:622.950000px;}
.y7b_c01177{bottom:623.805000px;}
.y7a_c01177{bottom:624.675000px;}
.y77_c01177{bottom:625.530000px;}
.y80_c01177{bottom:627.270000px;}
.y78_c01177{bottom:628.125000px;}
.y7f_c01177{bottom:629.850000px;}
.y7c_c01177{bottom:630.720000px;}
.y79_c01177{bottom:632.445000px;}
.y76_c01177{bottom:645.405000px;}
.y74_c01177{bottom:646.275000px;}
.y71_c01177{bottom:647.130000px;}
.y70_c01177{bottom:648.870000px;}
.y6f_c01177{bottom:649.725000px;}
.y6d_c01177{bottom:650.595000px;}
.y6e_c01177{bottom:652.320000px;}
.y73_c01177{bottom:654.915000px;}
.y72_c01177{bottom:655.770000px;}
.y75_c01177{bottom:661.830000px;}
.y6c_c01177{bottom:666.150000px;}
.y66_c01177{bottom:671.325000px;}
.y69_c01177{bottom:672.195000px;}
.y6a_c01177{bottom:673.050000px;}
.y65_c01177{bottom:673.920000px;}
.y68_c01177{bottom:674.790000px;}
.y63_c01177{bottom:675.645000px;}
.y67_c01177{bottom:677.370000px;}
.y6b_c01177{bottom:679.110000px;}
.y64_c01177{bottom:681.690000px;}
.y62_c01177{bottom:682.560000px;}
.y61_c01177{bottom:688.605000px;}
.y60_c01177{bottom:697.245000px;}
.y5b_c01177{bottom:698.115000px;}
.y5a_c01177{bottom:698.970000px;}
.y5e_c01177{bottom:701.565000px;}
.y5c_c01177{bottom:703.290000px;}
.y5f_c01177{bottom:704.160000px;}
.y5d_c01177{bottom:705.030000px;}
.y59_c01177{bottom:721.440000px;}
.y57_c01177{bottom:722.310000px;}
.y54_c01177{bottom:724.035000px;}
.y56_c01177{bottom:724.890000px;}
.y53_c01177{bottom:728.355000px;}
.y55_c01177{bottom:729.210000px;}
.y58_c01177{bottom:730.080000px;}
.y51_c01177{bottom:743.040000px;}
.y4f_c01177{bottom:745.635000px;}
.y4c_c01177{bottom:748.230000px;}
.y4b_c01177{bottom:750.810000px;}
.y50_c01177{bottom:751.680000px;}
.y4d_c01177{bottom:752.550000px;}
.y52_c01177{bottom:754.275000px;}
.y4e_c01177{bottom:756.000000px;}
.y115_c01177{bottom:764.640000px;}
.y4a_c01177{bottom:770.685000px;}
.y49_c01177{bottom:771.555000px;}
.y45_c01177{bottom:773.280000px;}
.y44_c01177{bottom:775.005000px;}
.y46_c01177{bottom:777.600000px;}
.y47_c01177{bottom:778.470000px;}
.y48_c01177{bottom:779.325000px;}
.y41_c01177{bottom:781.050000px;}
.y42_c01177{bottom:790.560000px;}
.y43_c01177{bottom:794.880000px;}
.y3e_c01177{bottom:796.605000px;}
.y3f_c01177{bottom:797.475000px;}
.y3a_c01177{bottom:799.200000px;}
.y3b_c01177{bottom:800.925000px;}
.y40_c01177{bottom:802.650000px;}
.y3d_c01177{bottom:803.520000px;}
.y3c_c01177{bottom:804.390000px;}
.y39_c01177{bottom:820.800000px;}
.y35_c01177{bottom:821.670000px;}
.y38_c01177{bottom:825.120000px;}
.y37_c01177{bottom:825.990000px;}
.y36_c01177{bottom:826.845000px;}
.y33_c01177{bottom:845.850000px;}
.y31_c01177{bottom:848.445000px;}
.y34_c01177{bottom:850.170000px;}
.y32_c01177{bottom:852.765000px;}
.y30_c01177{bottom:853.635000px;}
.y2f_c01177{bottom:870.045000px;}
.y2b_c01177{bottom:870.915000px;}
.y2c_c01177{bottom:872.640000px;}
.y2d_c01177{bottom:878.685000px;}
.y2e_c01177{bottom:879.555000px;}
.y28_c01177{bottom:896.835000px;}
.y29_c01177{bottom:901.155000px;}
.y27_c01177{bottom:903.750000px;}
.y2a_c01177{bottom:904.605000px;}
.y25_c01177{bottom:921.030000px;}
.y23_c01177{bottom:921.885000px;}
.y26_c01177{bottom:923.610000px;}
.y21_c01177{bottom:924.480000px;}
.y24_c01177{bottom:928.800000px;}
.y22_c01177{bottom:929.670000px;}
.y1b_c01177{bottom:946.080000px;}
.y20_c01177{bottom:946.950000px;}
.y1f_c01177{bottom:947.805000px;}
.y1d_c01177{bottom:951.270000px;}
.y1e_c01177{bottom:953.850000px;}
.y1c_c01177{bottom:954.720000px;}
.y18_c01177{bottom:971.130000px;}
.y1a_c01177{bottom:974.595000px;}
.y19_c01177{bottom:975.450000px;}
.y17_c01177{bottom:976.320000px;}
.y15_c01177{bottom:977.190000px;}
.y14_c01177{bottom:978.045000px;}
.y16_c01177{bottom:978.915000px;}
.y10d_c01177{bottom:996.195000px;}
.y110_c01177{bottom:1030.755000px;}
.y113_c01177{bottom:1031.610000px;}
.y112_c01177{bottom:1033.350000px;}
.y10f_c01177{bottom:1034.205000px;}
.y111_c01177{bottom:1035.075000px;}
.y10e_c01177{bottom:1049.760000px;}
.y114_c01177{bottom:1050.630000px;}
.ye_c01177{bottom:1071.360000px;}
.yd_c01177{bottom:1072.230000px;}
.yc_c01177{bottom:1073.085000px;}
.yf_c01177{bottom:1080.000000px;}
.y10_c01177{bottom:1082.595000px;}
.ya_c01177{bottom:1099.005000px;}
.yb_c01177{bottom:1101.600000px;}
.y5_c01177{bottom:1112.835000px;}
.y3_c01177{bottom:1114.560000px;}
.y4_c01177{bottom:1118.880000px;}
.y1_c01177{bottom:1119.750000px;}
.y6_c01177{bottom:1120.605000px;}
.y7_c01177{bottom:1121.475000px;}
.y2_c01177{bottom:1142.205000px;}
.y8_c01177{bottom:1143.075000px;}
.y9_c01177{bottom:1144.800000px;}
.h8_c01177{height:3.110063px;}
.ha_c01177{height:5.399414px;}
.h22_c01177{height:6.209326px;}
.h27_c01177{height:6.590063px;}
.h7_c01177{height:9.340986px;}
.h26_c01177{height:12.418652px;}
.h9_c01177{height:15.550313px;}
.h3_c01177{height:18.681973px;}
.h14_c01177{height:21.759639px;}
.h13_c01177{height:24.891299px;}
.h21_c01177{height:27.968965px;}
.h20_c01177{height:31.100625px;}
.hb_c01177{height:34.232285px;}
.h12_c01177{height:37.309951px;}
.h1e_c01177{height:40.441611px;}
.h1d_c01177{height:43.519277px;}
.h1c_c01177{height:46.650937px;}
.h24_c01177{height:49.782598px;}
.h15_c01177{height:52.860264px;}
.h16_c01177{height:55.991924px;}
.h17_c01177{height:59.069590px;}
.h18_c01177{height:62.201250px;}
.h1b_c01177{height:65.332910px;}
.h1f_c01177{height:68.410576px;}
.h19_c01177{height:71.542236px;}
.hd_c01177{height:74.619902px;}
.hc_c01177{height:77.751563px;}
.he_c01177{height:80.883223px;}
.hf_c01177{height:83.960889px;}
.h1a_c01177{height:87.092549px;}
.h11_c01177{height:90.170215px;}
.h10_c01177{height:93.301875px;}
.h25_c01177{height:96.433535px;}
.h23_c01177{height:99.511201px;}
.h29_c01177{height:102.642861px;}
.h28_c01177{height:105.720527px;}
.h2_c01177{height:130.611826px;}
.h4_c01177{height:133.743486px;}
.h6_c01177{height:136.821152px;}
.h5_c01177{height:139.952812px;}
.h0_c01177{height:1515.450000px;}
.h1_c01177{height:1515.750000px;}
.w0_c01177{width:1088.640000px;}
.w1_c01177{width:1089.000000px;}
.x0_c01177{left:0.000000px;}
.x1c_c01177{left:8.640000px;}
.xe7_c01177{left:152.925000px;}
.x1d_c01177{left:165.030000px;}
.x1e_c01177{left:166.755000px;}
.x86_c01177{left:215.130000px;}
.x7a_c01177{left:218.595000px;}
.xa3_c01177{left:226.365000px;}
.x66_c01177{left:228.960000px;}
.x10_c01177{left:231.555000px;}
.xc2_c01177{left:233.280000px;}
.x11_c01177{left:247.965000px;}
.xa4_c01177{left:254.010000px;}
.xad_c01177{left:259.200000px;}
.xba_c01177{left:261.795000px;}
.x55_c01177{left:263.520000px;}
.x70_c01177{left:265.245000px;}
.x9c_c01177{left:267.840000px;}
.xd1_c01177{left:269.565000px;}
.x7b_c01177{left:272.160000px;}
.x67_c01177{left:273.885000px;}
.x5c_c01177{left:278.205000px;}
.x91_c01177{left:280.800000px;}
.x9f_c01177{left:284.250000px;}
.xb4_c01177{left:287.715000px;}
.x92_c01177{left:292.890000px;}
.x75_c01177{left:299.805000px;}
.x5d_c01177{left:303.270000px;}
.xd4_c01177{left:306.720000px;}
.xbd_c01177{left:308.445000px;}
.x87_c01177{left:311.040000px;}
.x93_c01177{left:314.490000px;}
.xbe_c01177{left:317.955000px;}
.x12_c01177{left:321.405000px;}
.xae_c01177{left:325.725000px;}
.xb5_c01177{left:328.320000px;}
.xbb_c01177{left:330.045000px;}
.x71_c01177{left:333.510000px;}
.xa5_c01177{left:336.960000px;}
.xa9_c01177{left:340.410000px;}
.x68_c01177{left:343.875000px;}
.x5e_c01177{left:345.600000px;}
.x69_c01177{left:355.965000px;}
.x94_c01177{left:358.560000px;}
.xcf_c01177{left:360.285000px;}
.x1_c01177{left:362.880000px;}
.xb6_c01177{left:364.605000px;}
.xcd_c01177{left:373.245000px;}
.x95_c01177{left:375.840000px;}
.x7c_c01177{left:378.435000px;}
.x13_c01177{left:382.755000px;}
.xaa_c01177{left:384.480000px;}
.x2_c01177{left:386.205000px;}
.x88_c01177{left:387.930000px;}
.x8_c01177{left:397.440000px;}
.xbc_c01177{left:402.630000px;}
.xbf_c01177{left:404.355000px;}
.x14_c01177{left:406.080000px;}
.xb7_c01177{left:407.805000px;}
.x3_c01177{left:411.270000px;}
.x6a_c01177{left:412.995000px;}
.xd2_c01177{left:417.315000px;}
.x56_c01177{left:419.040000px;}
.x9_c01177{left:420.765000px;}
.xa0_c01177{left:423.360000px;}
.x5f_c01177{left:425.955000px;}
.x42_c01177{left:427.680000px;}
.xd8_c01177{left:429.405000px;}
.x2a_c01177{left:431.130000px;}
.x15_c01177{left:434.595000px;}
.x96_c01177{left:438.045000px;}
.xc4_c01177{left:444.090000px;}
.xe3_c01177{left:448.410000px;}
.x49_c01177{left:454.470000px;}
.x1f_c01177{left:457.920000px;}
.xb8_c01177{left:459.645000px;}
.x16_c01177{left:464.835000px;}
.x2b_c01177{left:472.605000px;}
.x6b_c01177{left:474.330000px;}
.x4_c01177{left:476.070000px;}
.x20_c01177{left:481.245000px;}
.xb9_c01177{left:483.840000px;}
.xea_c01177{left:486.435000px;}
.xc5_c01177{left:488.160000px;}
.x4f_c01177{left:490.755000px;}
.x17_c01177{left:495.930000px;}
.xdc_c01177{left:498.525000px;}
.x33_c01177{left:504.570000px;}
.x21_c01177{left:506.310000px;}
.x4a_c01177{left:508.035000px;}
.xe4_c01177{left:509.760000px;}
.x5_c01177{left:513.210000px;}
.x60_c01177{left:515.805000px;}
.xdd_c01177{left:518.400000px;}
.x6c_c01177{left:520.995000px;}
.x7d_c01177{left:522.720000px;}
.x76_c01177{left:524.445000px;}
.xe5_c01177{left:528.765000px;}
.x22_c01177{left:530.490000px;}
.x89_c01177{left:534.810000px;}
.x43_c01177{left:540.000000px;}
.xc0_c01177{left:542.595000px;}
.xaf_c01177{left:544.320000px;}
.xdf_c01177{left:546.915000px;}
.x2c_c01177{left:548.640000px;}
.xa_c01177{left:550.365000px;}
.x61_c01177{left:552.090000px;}
.x50_c01177{left:556.410000px;}
.x57_c01177{left:558.150000px;}
.xd9_c01177{left:559.875000px;}
.x2d_c01177{left:561.600000px;}
.x44_c01177{left:563.325000px;}
.x77_c01177{left:566.790000px;}
.xd5_c01177{left:570.240000px;}
.x51_c01177{left:571.965000px;}
.xc6_c01177{left:580.605000px;}
.x3a_c01177{left:582.330000px;}
.x6d_c01177{left:584.070000px;}
.x6_c01177{left:586.650000px;}
.x72_c01177{left:589.245000px;}
.xc7_c01177{left:590.970000px;}
.x34_c01177{left:592.710000px;}
.xa6_c01177{left:595.290000px;}
.x3b_c01177{left:597.885000px;}
.xd6_c01177{left:600.480000px;}
.xa1_c01177{left:603.930000px;}
.x23_c01177{left:608.250000px;}
.x2e_c01177{left:610.845000px;}
.xe2_c01177{left:613.440000px;}
.x73_c01177{left:615.165000px;}
.x18_c01177{left:617.760000px;}
.x35_c01177{left:620.355000px;}
.x58_c01177{left:625.530000px;}
.x97_c01177{left:628.125000px;}
.x24_c01177{left:629.850000px;}
.x8a_c01177{left:633.315000px;}
.x3c_c01177{left:635.910000px;}
.x52_c01177{left:639.360000px;}
.x7e_c01177{left:642.810000px;}
.x2f_c01177{left:645.405000px;}
.x7_c01177{left:648.000000px;}
.xb0_c01177{left:649.725000px;}
.xda_c01177{left:652.320000px;}
.x7f_c01177{left:656.640000px;}
.xc3_c01177{left:662.685000px;}
.xc8_c01177{left:668.730000px;}
.x4b_c01177{left:670.470000px;}
.xd0_c01177{left:672.195000px;}
.x74_c01177{left:676.515000px;}
.x45_c01177{left:678.240000px;}
.x36_c01177{left:679.965000px;}
.x30_c01177{left:681.690000px;}
.x19_c01177{left:684.285000px;}
.x25_c01177{left:687.750000px;}
.x3d_c01177{left:689.475000px;}
.xc1_c01177{left:692.925000px;}
.x78_c01177{left:694.650000px;}
.xa7_c01177{left:699.840000px;}
.xb1_c01177{left:702.435000px;}
.x8b_c01177{left:706.755000px;}
.xe6_c01177{left:710.205000px;}
.x4c_c01177{left:711.930000px;}
.xc9_c01177{left:714.525000px;}
.x3e_c01177{left:716.250000px;}
.x59_c01177{left:718.845000px;}
.x9d_c01177{left:723.165000px;}
.x53_c01177{left:725.760000px;}
.x46_c01177{left:728.355000px;}
.xe0_c01177{left:730.080000px;}
.xb2_c01177{left:731.805000px;}
.x31_c01177{left:734.400000px;}
.x3f_c01177{left:738.720000px;}
.x4d_c01177{left:740.445000px;}
.x37_c01177{left:743.910000px;}
.x62_c01177{left:745.635000px;}
.x26_c01177{left:749.955000px;}
.x8c_c01177{left:756.000000px;}
.x80_c01177{left:758.595000px;}
.xd7_c01177{left:762.045000px;}
.x98_c01177{left:766.365000px;}
.xca_c01177{left:768.960000px;}
.xce_c01177{left:772.410000px;}
.x63_c01177{left:774.150000px;}
.x40_c01177{left:776.730000px;}
.xb_c01177{left:779.325000px;}
.xb3_c01177{left:781.920000px;}
.x47_c01177{left:783.645000px;}
.x5a_c01177{left:796.605000px;}
.x6e_c01177{left:798.330000px;}
.x32_c01177{left:800.925000px;}
.x64_c01177{left:805.245000px;}
.x38_c01177{left:807.840000px;}
.x6f_c01177{left:815.610000px;}
.xc_c01177{left:819.930000px;}
.xa2_c01177{left:823.395000px;}
.x81_c01177{left:825.120000px;}
.x99_c01177{left:831.165000px;}
.x27_c01177{left:833.760000px;}
.x39_c01177{left:835.485000px;}
.x54_c01177{left:837.210000px;}
.x79_c01177{left:839.805000px;}
.xab_c01177{left:841.530000px;}
.x41_c01177{left:845.850000px;}
.xdb_c01177{left:848.445000px;}
.x28_c01177{left:850.170000px;}
.x48_c01177{left:852.765000px;}
.xac_c01177{left:854.490000px;}
.xd_c01177{left:856.230000px;}
.x9e_c01177{left:861.405000px;}
.x5b_c01177{left:863.130000px;}
.xcb_c01177{left:865.725000px;}
.xde_c01177{left:867.450000px;}
.x82_c01177{left:870.045000px;}
.x4e_c01177{left:874.365000px;}
.xcc_c01177{left:877.830000px;}
.x83_c01177{left:879.555000px;}
.xd3_c01177{left:883.005000px;}
.x65_c01177{left:884.730000px;}
.xa8_c01177{left:887.325000px;}
.x29_c01177{left:892.515000px;}
.x84_c01177{left:895.110000px;}
.x8d_c01177{left:897.690000px;}
.x1a_c01177{left:902.010000px;}
.x85_c01177{left:909.795000px;}
.xe8_c01177{left:912.390000px;}
.x8e_c01177{left:914.970000px;}
.x8f_c01177{left:922.755000px;}
.x1b_c01177{left:924.480000px;}
.xe9_c01177{left:926.205000px;}
.x9a_c01177{left:940.035000px;}
.x90_c01177{left:949.530000px;}
.x9b_c01177{left:953.850000px;}
.xe_c01177{left:972.870000px;}
.xe1_c01177{left:975.450000px;}
.xf_c01177{left:983.235000px;}
@media print{
.v0_c01177{vertical-align:0.000000pt;}
.v1_c01177{vertical-align:3.093333pt;}
.ls1_c01177{letter-spacing:0.000000pt;}
.ls0_c01177{letter-spacing:41.611691pt;}
.ws0_c01177{word-spacing:-15.279893pt;}
.ws2_c01177{word-spacing:0.000000pt;}
.ws1_c01177{word-spacing:147.117760pt;}
.fs6_c01177{font-size:3.072000pt;}
.fs8_c01177{font-size:5.333333pt;}
.fs20_c01177{font-size:6.133333pt;}
.fs5_c01177{font-size:9.226667pt;}
.fs24_c01177{font-size:12.266667pt;}
.fs7_c01177{font-size:15.360000pt;}
.fs1_c01177{font-size:18.453333pt;}
.fs12_c01177{font-size:21.493333pt;}
.fs11_c01177{font-size:24.586667pt;}
.fs1f_c01177{font-size:27.626667pt;}
.fs1e_c01177{font-size:30.720000pt;}
.fs9_c01177{font-size:33.813333pt;}
.fs10_c01177{font-size:36.853333pt;}
.fs1c_c01177{font-size:39.946667pt;}
.fs1b_c01177{font-size:42.986667pt;}
.fs1a_c01177{font-size:46.080000pt;}
.fs22_c01177{font-size:49.173333pt;}
.fs13_c01177{font-size:52.213333pt;}
.fs14_c01177{font-size:55.306667pt;}
.fs15_c01177{font-size:58.346667pt;}
.fs16_c01177{font-size:61.440000pt;}
.fs19_c01177{font-size:64.533333pt;}
.fs1d_c01177{font-size:67.573333pt;}
.fs17_c01177{font-size:70.666667pt;}
.fsb_c01177{font-size:73.706667pt;}
.fsa_c01177{font-size:76.800000pt;}
.fsc_c01177{font-size:79.893333pt;}
.fsd_c01177{font-size:82.933333pt;}
.fs18_c01177{font-size:86.026667pt;}
.fsf_c01177{font-size:89.066667pt;}
.fse_c01177{font-size:92.160000pt;}
.fs23_c01177{font-size:95.253333pt;}
.fs21_c01177{font-size:98.293333pt;}
.fs26_c01177{font-size:101.386667pt;}
.fs25_c01177{font-size:104.426667pt;}
.fs0_c01177{font-size:129.013333pt;}
.fs2_c01177{font-size:132.106667pt;}
.fs4_c01177{font-size:135.146667pt;}
.fs3_c01177{font-size:138.240000pt;}
.y0_c01177{bottom:0.000000pt;}
.y119_c01177{bottom:101.373333pt;}
.y10c_c01177{bottom:178.946667pt;}
.y10a_c01177{bottom:180.480000pt;}
.y10b_c01177{bottom:181.253333pt;}
.y109_c01177{bottom:192.000000pt;}
.y107_c01177{bottom:193.533333pt;}
.y106_c01177{bottom:194.306667pt;}
.y105_c01177{bottom:195.066667pt;}
.y108_c01177{bottom:195.840000pt;}
.y100_c01177{bottom:196.613333pt;}
.yff_c01177{bottom:197.373333pt;}
.y101_c01177{bottom:198.146667pt;}
.yfb_c01177{bottom:198.906667pt;}
.yfa_c01177{bottom:200.453333pt;}
.y103_c01177{bottom:201.213333pt;}
.y102_c01177{bottom:201.986667pt;}
.yfe_c01177{bottom:202.746667pt;}
.yfd_c01177{bottom:203.520000pt;}
.yfc_c01177{bottom:204.293333pt;}
.y104_c01177{bottom:213.506667pt;}
.yf9_c01177{bottom:218.106667pt;}
.yf8_c01177{bottom:218.880000pt;}
.yf4_c01177{bottom:221.186667pt;}
.yf7_c01177{bottom:225.026667pt;}
.yf6_c01177{bottom:228.093333pt;}
.yf5_c01177{bottom:228.866667pt;}
.yf1_c01177{bottom:240.386667pt;}
.yf2_c01177{bottom:241.146667pt;}
.yf0_c01177{bottom:242.693333pt;}
.yee_c01177{bottom:244.226667pt;}
.yef_c01177{bottom:244.986667pt;}
.yf3_c01177{bottom:245.760000pt;}
.yea_c01177{bottom:263.426667pt;}
.ye9_c01177{bottom:264.960000pt;}
.yec_c01177{bottom:265.733333pt;}
.ye8_c01177{bottom:266.493333pt;}
.yeb_c01177{bottom:268.026667pt;}
.ye7_c01177{bottom:269.573333pt;}
.yed_c01177{bottom:271.866667pt;}
.ye5_c01177{bottom:273.413333pt;}
.ye6_c01177{bottom:274.173333pt;}
.ye2_c01177{bottom:284.933333pt;}
.ye4_c01177{bottom:285.693333pt;}
.ydf_c01177{bottom:287.226667pt;}
.ye0_c01177{bottom:289.533333pt;}
.ye1_c01177{bottom:291.066667pt;}
.ye3_c01177{bottom:292.613333pt;}
.yde_c01177{bottom:294.146667pt;}
.ydc_c01177{bottom:295.680000pt;}
.ydd_c01177{bottom:296.453333pt;}
.y118_c01177{bottom:304.893333pt;}
.yd9_c01177{bottom:307.973333pt;}
.yda_c01177{bottom:309.506667pt;}
.yd6_c01177{bottom:311.813333pt;}
.y117_c01177{bottom:312.573333pt;}
.yd7_c01177{bottom:314.106667pt;}
.ydb_c01177{bottom:314.880000pt;}
.yd8_c01177{bottom:315.653333pt;}
.yd5_c01177{bottom:317.946667pt;}
.y116_c01177{bottom:322.560000pt;}
.yd3_c01177{bottom:329.466667pt;}
.ycf_c01177{bottom:331.773333pt;}
.ycd_c01177{bottom:333.306667pt;}
.yd1_c01177{bottom:335.613333pt;}
.yd0_c01177{bottom:336.386667pt;}
.yd2_c01177{bottom:339.453333pt;}
.yce_c01177{bottom:340.226667pt;}
.yd4_c01177{bottom:345.600000pt;}
.ycb_c01177{bottom:351.746667pt;}
.yca_c01177{bottom:352.506667pt;}
.yc9_c01177{bottom:354.813333pt;}
.ycc_c01177{bottom:355.586667pt;}
.yc8_c01177{bottom:356.346667pt;}
.yc6_c01177{bottom:357.120000pt;}
.yc7_c01177{bottom:357.893333pt;}
.yc4_c01177{bottom:374.786667pt;}
.ybf_c01177{bottom:375.546667pt;}
.yc1_c01177{bottom:376.320000pt;}
.ybc_c01177{bottom:377.093333pt;}
.yc2_c01177{bottom:377.853333pt;}
.ybe_c01177{bottom:378.626667pt;}
.yc3_c01177{bottom:380.933333pt;}
.ybd_c01177{bottom:382.466667pt;}
.yc0_c01177{bottom:384.000000pt;}
.yc5_c01177{bottom:387.066667pt;}
.yb9_c01177{bottom:397.053333pt;}
.yba_c01177{bottom:397.826667pt;}
.yb7_c01177{bottom:398.586667pt;}
.yb5_c01177{bottom:399.360000pt;}
.yb6_c01177{bottom:400.893333pt;}
.yb8_c01177{bottom:402.426667pt;}
.ybb_c01177{bottom:403.200000pt;}
.yb4_c01177{bottom:406.266667pt;}
.y13_c01177{bottom:409.346667pt;}
.y12_c01177{bottom:417.026667pt;}
.yb3_c01177{bottom:418.560000pt;}
.yb0_c01177{bottom:419.333333pt;}
.yb2_c01177{bottom:421.626667pt;}
.yac_c01177{bottom:423.173333pt;}
.yaf_c01177{bottom:425.466667pt;}
.yb1_c01177{bottom:426.240000pt;}
.yab_c01177{bottom:428.546667pt;}
.yad_c01177{bottom:429.306667pt;}
.yae_c01177{bottom:430.080000pt;}
.ya9_c01177{bottom:440.826667pt;}
.ya6_c01177{bottom:441.600000pt;}
.ya3_c01177{bottom:442.373333pt;}
.ya2_c01177{bottom:443.906667pt;}
.ya0_c01177{bottom:444.666667pt;}
.ya5_c01177{bottom:445.440000pt;}
.ya7_c01177{bottom:446.973333pt;}
.ya8_c01177{bottom:447.746667pt;}
.yaa_c01177{bottom:448.506667pt;}
.ya4_c01177{bottom:449.280000pt;}
.ya1_c01177{bottom:452.346667pt;}
.y9d_c01177{bottom:464.640000pt;}
.y9c_c01177{bottom:465.413333pt;}
.y9a_c01177{bottom:466.173333pt;}
.y99_c01177{bottom:467.706667pt;}
.y9e_c01177{bottom:468.480000pt;}
.y9b_c01177{bottom:469.253333pt;}
.y9f_c01177{bottom:470.013333pt;}
.y98_c01177{bottom:473.853333pt;}
.y96_c01177{bottom:484.613333pt;}
.y94_c01177{bottom:485.373333pt;}
.y97_c01177{bottom:486.146667pt;}
.y95_c01177{bottom:486.906667pt;}
.y90_c01177{bottom:488.453333pt;}
.y91_c01177{bottom:489.213333pt;}
.y93_c01177{bottom:490.746667pt;}
.y92_c01177{bottom:493.826667pt;}
.y11_c01177{bottom:495.360000pt;}
.y8c_c01177{bottom:508.413333pt;}
.y8b_c01177{bottom:509.186667pt;}
.y89_c01177{bottom:510.720000pt;}
.y8d_c01177{bottom:511.493333pt;}
.y8f_c01177{bottom:513.786667pt;}
.y8e_c01177{bottom:514.560000pt;}
.y8a_c01177{bottom:516.093333pt;}
.y87_c01177{bottom:530.693333pt;}
.y86_c01177{bottom:531.453333pt;}
.y83_c01177{bottom:532.226667pt;}
.y82_c01177{bottom:533.760000pt;}
.y81_c01177{bottom:534.533333pt;}
.y84_c01177{bottom:536.066667pt;}
.y88_c01177{bottom:536.826667pt;}
.y85_c01177{bottom:538.373333pt;}
.y7e_c01177{bottom:552.960000pt;}
.y7d_c01177{bottom:553.733333pt;}
.y7b_c01177{bottom:554.493333pt;}
.y7a_c01177{bottom:555.266667pt;}
.y77_c01177{bottom:556.026667pt;}
.y80_c01177{bottom:557.573333pt;}
.y78_c01177{bottom:558.333333pt;}
.y7f_c01177{bottom:559.866667pt;}
.y7c_c01177{bottom:560.640000pt;}
.y79_c01177{bottom:562.173333pt;}
.y76_c01177{bottom:573.693333pt;}
.y74_c01177{bottom:574.466667pt;}
.y71_c01177{bottom:575.226667pt;}
.y70_c01177{bottom:576.773333pt;}
.y6f_c01177{bottom:577.533333pt;}
.y6d_c01177{bottom:578.306667pt;}
.y6e_c01177{bottom:579.840000pt;}
.y73_c01177{bottom:582.146667pt;}
.y72_c01177{bottom:582.906667pt;}
.y75_c01177{bottom:588.293333pt;}
.y6c_c01177{bottom:592.133333pt;}
.y66_c01177{bottom:596.733333pt;}
.y69_c01177{bottom:597.506667pt;}
.y6a_c01177{bottom:598.266667pt;}
.y65_c01177{bottom:599.040000pt;}
.y68_c01177{bottom:599.813333pt;}
.y63_c01177{bottom:600.573333pt;}
.y67_c01177{bottom:602.106667pt;}
.y6b_c01177{bottom:603.653333pt;}
.y64_c01177{bottom:605.946667pt;}
.y62_c01177{bottom:606.720000pt;}
.y61_c01177{bottom:612.093333pt;}
.y60_c01177{bottom:619.773333pt;}
.y5b_c01177{bottom:620.546667pt;}
.y5a_c01177{bottom:621.306667pt;}
.y5e_c01177{bottom:623.613333pt;}
.y5c_c01177{bottom:625.146667pt;}
.y5f_c01177{bottom:625.920000pt;}
.y5d_c01177{bottom:626.693333pt;}
.y59_c01177{bottom:641.280000pt;}
.y57_c01177{bottom:642.053333pt;}
.y54_c01177{bottom:643.586667pt;}
.y56_c01177{bottom:644.346667pt;}
.y53_c01177{bottom:647.426667pt;}
.y55_c01177{bottom:648.186667pt;}
.y58_c01177{bottom:648.960000pt;}
.y51_c01177{bottom:660.480000pt;}
.y4f_c01177{bottom:662.786667pt;}
.y4c_c01177{bottom:665.093333pt;}
.y4b_c01177{bottom:667.386667pt;}
.y50_c01177{bottom:668.160000pt;}
.y4d_c01177{bottom:668.933333pt;}
.y52_c01177{bottom:670.466667pt;}
.y4e_c01177{bottom:672.000000pt;}
.y115_c01177{bottom:679.680000pt;}
.y4a_c01177{bottom:685.053333pt;}
.y49_c01177{bottom:685.826667pt;}
.y45_c01177{bottom:687.360000pt;}
.y44_c01177{bottom:688.893333pt;}
.y46_c01177{bottom:691.200000pt;}
.y47_c01177{bottom:691.973333pt;}
.y48_c01177{bottom:692.733333pt;}
.y41_c01177{bottom:694.266667pt;}
.y42_c01177{bottom:702.720000pt;}
.y43_c01177{bottom:706.560000pt;}
.y3e_c01177{bottom:708.093333pt;}
.y3f_c01177{bottom:708.866667pt;}
.y3a_c01177{bottom:710.400000pt;}
.y3b_c01177{bottom:711.933333pt;}
.y40_c01177{bottom:713.466667pt;}
.y3d_c01177{bottom:714.240000pt;}
.y3c_c01177{bottom:715.013333pt;}
.y39_c01177{bottom:729.600000pt;}
.y35_c01177{bottom:730.373333pt;}
.y38_c01177{bottom:733.440000pt;}
.y37_c01177{bottom:734.213333pt;}
.y36_c01177{bottom:734.973333pt;}
.y33_c01177{bottom:751.866667pt;}
.y31_c01177{bottom:754.173333pt;}
.y34_c01177{bottom:755.706667pt;}
.y32_c01177{bottom:758.013333pt;}
.y30_c01177{bottom:758.786667pt;}
.y2f_c01177{bottom:773.373333pt;}
.y2b_c01177{bottom:774.146667pt;}
.y2c_c01177{bottom:775.680000pt;}
.y2d_c01177{bottom:781.053333pt;}
.y2e_c01177{bottom:781.826667pt;}
.y28_c01177{bottom:797.186667pt;}
.y29_c01177{bottom:801.026667pt;}
.y27_c01177{bottom:803.333333pt;}
.y2a_c01177{bottom:804.093333pt;}
.y25_c01177{bottom:818.693333pt;}
.y23_c01177{bottom:819.453333pt;}
.y26_c01177{bottom:820.986667pt;}
.y21_c01177{bottom:821.760000pt;}
.y24_c01177{bottom:825.600000pt;}
.y22_c01177{bottom:826.373333pt;}
.y1b_c01177{bottom:840.960000pt;}
.y20_c01177{bottom:841.733333pt;}
.y1f_c01177{bottom:842.493333pt;}
.y1d_c01177{bottom:845.573333pt;}
.y1e_c01177{bottom:847.866667pt;}
.y1c_c01177{bottom:848.640000pt;}
.y18_c01177{bottom:863.226667pt;}
.y1a_c01177{bottom:866.306667pt;}
.y19_c01177{bottom:867.066667pt;}
.y17_c01177{bottom:867.840000pt;}
.y15_c01177{bottom:868.613333pt;}
.y14_c01177{bottom:869.373333pt;}
.y16_c01177{bottom:870.146667pt;}
.y10d_c01177{bottom:885.506667pt;}
.y110_c01177{bottom:916.226667pt;}
.y113_c01177{bottom:916.986667pt;}
.y112_c01177{bottom:918.533333pt;}
.y10f_c01177{bottom:919.293333pt;}
.y111_c01177{bottom:920.066667pt;}
.y10e_c01177{bottom:933.120000pt;}
.y114_c01177{bottom:933.893333pt;}
.ye_c01177{bottom:952.320000pt;}
.yd_c01177{bottom:953.093333pt;}
.yc_c01177{bottom:953.853333pt;}
.yf_c01177{bottom:960.000000pt;}
.y10_c01177{bottom:962.306667pt;}
.ya_c01177{bottom:976.893333pt;}
.yb_c01177{bottom:979.200000pt;}
.y5_c01177{bottom:989.186667pt;}
.y3_c01177{bottom:990.720000pt;}
.y4_c01177{bottom:994.560000pt;}
.y1_c01177{bottom:995.333333pt;}
.y6_c01177{bottom:996.093333pt;}
.y7_c01177{bottom:996.866667pt;}
.y2_c01177{bottom:1015.293333pt;}
.y8_c01177{bottom:1016.066667pt;}
.y9_c01177{bottom:1017.600000pt;}
.h8_c01177{height:2.764500pt;}
.ha_c01177{height:4.799479pt;}
.h22_c01177{height:5.519401pt;}
.h27_c01177{height:5.857833pt;}
.h7_c01177{height:8.303099pt;}
.h26_c01177{height:11.038802pt;}
.h9_c01177{height:13.822500pt;}
.h3_c01177{height:16.606198pt;}
.h14_c01177{height:19.341901pt;}
.h13_c01177{height:22.125599pt;}
.h21_c01177{height:24.861302pt;}
.h20_c01177{height:27.645000pt;}
.hb_c01177{height:30.428698pt;}
.h12_c01177{height:33.164401pt;}
.h1e_c01177{height:35.948099pt;}
.h1d_c01177{height:38.683802pt;}
.h1c_c01177{height:41.467500pt;}
.h24_c01177{height:44.251198pt;}
.h15_c01177{height:46.986901pt;}
.h16_c01177{height:49.770599pt;}
.h17_c01177{height:52.506302pt;}
.h18_c01177{height:55.290000pt;}
.h1b_c01177{height:58.073698pt;}
.h1f_c01177{height:60.809401pt;}
.h19_c01177{height:63.593099pt;}
.hd_c01177{height:66.328802pt;}
.hc_c01177{height:69.112500pt;}
.he_c01177{height:71.896198pt;}
.hf_c01177{height:74.631901pt;}
.h1a_c01177{height:77.415599pt;}
.h11_c01177{height:80.151302pt;}
.h10_c01177{height:82.935000pt;}
.h25_c01177{height:85.718698pt;}
.h23_c01177{height:88.454401pt;}
.h29_c01177{height:91.238099pt;}
.h28_c01177{height:93.973802pt;}
.h2_c01177{height:116.099401pt;}
.h4_c01177{height:118.883099pt;}
.h6_c01177{height:121.618802pt;}
.h5_c01177{height:124.402500pt;}
.h0_c01177{height:1347.066667pt;}
.h1_c01177{height:1347.333333pt;}
.w0_c01177{width:967.680000pt;}
.w1_c01177{width:968.000000pt;}
.x0_c01177{left:0.000000pt;}
.x1c_c01177{left:7.680000pt;}
.xe7_c01177{left:135.933333pt;}
.x1d_c01177{left:146.693333pt;}
.x1e_c01177{left:148.226667pt;}
.x86_c01177{left:191.226667pt;}
.x7a_c01177{left:194.306667pt;}
.xa3_c01177{left:201.213333pt;}
.x66_c01177{left:203.520000pt;}
.x10_c01177{left:205.826667pt;}
.xc2_c01177{left:207.360000pt;}
.x11_c01177{left:220.413333pt;}
.xa4_c01177{left:225.786667pt;}
.xad_c01177{left:230.400000pt;}
.xba_c01177{left:232.706667pt;}
.x55_c01177{left:234.240000pt;}
.x70_c01177{left:235.773333pt;}
.x9c_c01177{left:238.080000pt;}
.xd1_c01177{left:239.613333pt;}
.x7b_c01177{left:241.920000pt;}
.x67_c01177{left:243.453333pt;}
.x5c_c01177{left:247.293333pt;}
.x91_c01177{left:249.600000pt;}
.x9f_c01177{left:252.666667pt;}
.xb4_c01177{left:255.746667pt;}
.x92_c01177{left:260.346667pt;}
.x75_c01177{left:266.493333pt;}
.x5d_c01177{left:269.573333pt;}
.xd4_c01177{left:272.640000pt;}
.xbd_c01177{left:274.173333pt;}
.x87_c01177{left:276.480000pt;}
.x93_c01177{left:279.546667pt;}
.xbe_c01177{left:282.626667pt;}
.x12_c01177{left:285.693333pt;}
.xae_c01177{left:289.533333pt;}
.xb5_c01177{left:291.840000pt;}
.xbb_c01177{left:293.373333pt;}
.x71_c01177{left:296.453333pt;}
.xa5_c01177{left:299.520000pt;}
.xa9_c01177{left:302.586667pt;}
.x68_c01177{left:305.666667pt;}
.x5e_c01177{left:307.200000pt;}
.x69_c01177{left:316.413333pt;}
.x94_c01177{left:318.720000pt;}
.xcf_c01177{left:320.253333pt;}
.x1_c01177{left:322.560000pt;}
.xb6_c01177{left:324.093333pt;}
.xcd_c01177{left:331.773333pt;}
.x95_c01177{left:334.080000pt;}
.x7c_c01177{left:336.386667pt;}
.x13_c01177{left:340.226667pt;}
.xaa_c01177{left:341.760000pt;}
.x2_c01177{left:343.293333pt;}
.x88_c01177{left:344.826667pt;}
.x8_c01177{left:353.280000pt;}
.xbc_c01177{left:357.893333pt;}
.xbf_c01177{left:359.426667pt;}
.x14_c01177{left:360.960000pt;}
.xb7_c01177{left:362.493333pt;}
.x3_c01177{left:365.573333pt;}
.x6a_c01177{left:367.106667pt;}
.xd2_c01177{left:370.946667pt;}
.x56_c01177{left:372.480000pt;}
.x9_c01177{left:374.013333pt;}
.xa0_c01177{left:376.320000pt;}
.x5f_c01177{left:378.626667pt;}
.x42_c01177{left:380.160000pt;}
.xd8_c01177{left:381.693333pt;}
.x2a_c01177{left:383.226667pt;}
.x15_c01177{left:386.306667pt;}
.x96_c01177{left:389.373333pt;}
.xc4_c01177{left:394.746667pt;}
.xe3_c01177{left:398.586667pt;}
.x49_c01177{left:403.973333pt;}
.x1f_c01177{left:407.040000pt;}
.xb8_c01177{left:408.573333pt;}
.x16_c01177{left:413.186667pt;}
.x2b_c01177{left:420.093333pt;}
.x6b_c01177{left:421.626667pt;}
.x4_c01177{left:423.173333pt;}
.x20_c01177{left:427.773333pt;}
.xb9_c01177{left:430.080000pt;}
.xea_c01177{left:432.386667pt;}
.xc5_c01177{left:433.920000pt;}
.x4f_c01177{left:436.226667pt;}
.x17_c01177{left:440.826667pt;}
.xdc_c01177{left:443.133333pt;}
.x33_c01177{left:448.506667pt;}
.x21_c01177{left:450.053333pt;}
.x4a_c01177{left:451.586667pt;}
.xe4_c01177{left:453.120000pt;}
.x5_c01177{left:456.186667pt;}
.x60_c01177{left:458.493333pt;}
.xdd_c01177{left:460.800000pt;}
.x6c_c01177{left:463.106667pt;}
.x7d_c01177{left:464.640000pt;}
.x76_c01177{left:466.173333pt;}
.xe5_c01177{left:470.013333pt;}
.x22_c01177{left:471.546667pt;}
.x89_c01177{left:475.386667pt;}
.x43_c01177{left:480.000000pt;}
.xc0_c01177{left:482.306667pt;}
.xaf_c01177{left:483.840000pt;}
.xdf_c01177{left:486.146667pt;}
.x2c_c01177{left:487.680000pt;}
.xa_c01177{left:489.213333pt;}
.x61_c01177{left:490.746667pt;}
.x50_c01177{left:494.586667pt;}
.x57_c01177{left:496.133333pt;}
.xd9_c01177{left:497.666667pt;}
.x2d_c01177{left:499.200000pt;}
.x44_c01177{left:500.733333pt;}
.x77_c01177{left:503.813333pt;}
.xd5_c01177{left:506.880000pt;}
.x51_c01177{left:508.413333pt;}
.xc6_c01177{left:516.093333pt;}
.x3a_c01177{left:517.626667pt;}
.x6d_c01177{left:519.173333pt;}
.x6_c01177{left:521.466667pt;}
.x72_c01177{left:523.773333pt;}
.xc7_c01177{left:525.306667pt;}
.x34_c01177{left:526.853333pt;}
.xa6_c01177{left:529.146667pt;}
.x3b_c01177{left:531.453333pt;}
.xd6_c01177{left:533.760000pt;}
.xa1_c01177{left:536.826667pt;}
.x23_c01177{left:540.666667pt;}
.x2e_c01177{left:542.973333pt;}
.xe2_c01177{left:545.280000pt;}
.x73_c01177{left:546.813333pt;}
.x18_c01177{left:549.120000pt;}
.x35_c01177{left:551.426667pt;}
.x58_c01177{left:556.026667pt;}
.x97_c01177{left:558.333333pt;}
.x24_c01177{left:559.866667pt;}
.x8a_c01177{left:562.946667pt;}
.x3c_c01177{left:565.253333pt;}
.x52_c01177{left:568.320000pt;}
.x7e_c01177{left:571.386667pt;}
.x2f_c01177{left:573.693333pt;}
.x7_c01177{left:576.000000pt;}
.xb0_c01177{left:577.533333pt;}
.xda_c01177{left:579.840000pt;}
.x7f_c01177{left:583.680000pt;}
.xc3_c01177{left:589.053333pt;}
.xc8_c01177{left:594.426667pt;}
.x4b_c01177{left:595.973333pt;}
.xd0_c01177{left:597.506667pt;}
.x74_c01177{left:601.346667pt;}
.x45_c01177{left:602.880000pt;}
.x36_c01177{left:604.413333pt;}
.x30_c01177{left:605.946667pt;}
.x19_c01177{left:608.253333pt;}
.x25_c01177{left:611.333333pt;}
.x3d_c01177{left:612.866667pt;}
.xc1_c01177{left:615.933333pt;}
.x78_c01177{left:617.466667pt;}
.xa7_c01177{left:622.080000pt;}
.xb1_c01177{left:624.386667pt;}
.x8b_c01177{left:628.226667pt;}
.xe6_c01177{left:631.293333pt;}
.x4c_c01177{left:632.826667pt;}
.xc9_c01177{left:635.133333pt;}
.x3e_c01177{left:636.666667pt;}
.x59_c01177{left:638.973333pt;}
.x9d_c01177{left:642.813333pt;}
.x53_c01177{left:645.120000pt;}
.x46_c01177{left:647.426667pt;}
.xe0_c01177{left:648.960000pt;}
.xb2_c01177{left:650.493333pt;}
.x31_c01177{left:652.800000pt;}
.x3f_c01177{left:656.640000pt;}
.x4d_c01177{left:658.173333pt;}
.x37_c01177{left:661.253333pt;}
.x62_c01177{left:662.786667pt;}
.x26_c01177{left:666.626667pt;}
.x8c_c01177{left:672.000000pt;}
.x80_c01177{left:674.306667pt;}
.xd7_c01177{left:677.373333pt;}
.x98_c01177{left:681.213333pt;}
.xca_c01177{left:683.520000pt;}
.xce_c01177{left:686.586667pt;}
.x63_c01177{left:688.133333pt;}
.x40_c01177{left:690.426667pt;}
.xb_c01177{left:692.733333pt;}
.xb3_c01177{left:695.040000pt;}
.x47_c01177{left:696.573333pt;}
.x5a_c01177{left:708.093333pt;}
.x6e_c01177{left:709.626667pt;}
.x32_c01177{left:711.933333pt;}
.x64_c01177{left:715.773333pt;}
.x38_c01177{left:718.080000pt;}
.x6f_c01177{left:724.986667pt;}
.xc_c01177{left:728.826667pt;}
.xa2_c01177{left:731.906667pt;}
.x81_c01177{left:733.440000pt;}
.x99_c01177{left:738.813333pt;}
.x27_c01177{left:741.120000pt;}
.x39_c01177{left:742.653333pt;}
.x54_c01177{left:744.186667pt;}
.x79_c01177{left:746.493333pt;}
.xab_c01177{left:748.026667pt;}
.x41_c01177{left:751.866667pt;}
.xdb_c01177{left:754.173333pt;}
.x28_c01177{left:755.706667pt;}
.x48_c01177{left:758.013333pt;}
.xac_c01177{left:759.546667pt;}
.xd_c01177{left:761.093333pt;}
.x9e_c01177{left:765.693333pt;}
.x5b_c01177{left:767.226667pt;}
.xcb_c01177{left:769.533333pt;}
.xde_c01177{left:771.066667pt;}
.x82_c01177{left:773.373333pt;}
.x4e_c01177{left:777.213333pt;}
.xcc_c01177{left:780.293333pt;}
.x83_c01177{left:781.826667pt;}
.xd3_c01177{left:784.893333pt;}
.x65_c01177{left:786.426667pt;}
.xa8_c01177{left:788.733333pt;}
.x29_c01177{left:793.346667pt;}
.x84_c01177{left:795.653333pt;}
.x8d_c01177{left:797.946667pt;}
.x1a_c01177{left:801.786667pt;}
.x85_c01177{left:808.706667pt;}
.xe8_c01177{left:811.013333pt;}
.x8e_c01177{left:813.306667pt;}
.x8f_c01177{left:820.226667pt;}
.x1b_c01177{left:821.760000pt;}
.xe9_c01177{left:823.293333pt;}
.x9a_c01177{left:835.586667pt;}
.x90_c01177{left:844.026667pt;}
.x9b_c01177{left:847.866667pt;}
.xe_c01177{left:864.773333pt;}
.xe1_c01177{left:867.066667pt;}
.xf_c01177{left:873.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_26ff078462420c67b289ebf5.woff2')format("woff");}.ff1_c01178{font-family:ff1_c01178;line-height:1.109863;font-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_c01178{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01178{transform:matrix(0.027350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027350,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01178{transform:matrix(0.050050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050050,0.000000,0.000000,0.250000,0,0);}
.mcc_c01178{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m189_c01178{transform:matrix(0.067725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.067725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.067725,0.000000,0.000000,0.250000,0,0);}
.m9_c01178{transform:matrix(0.082925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082925,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01178{transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);}
.m157_c01178{transform:matrix(0.087525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087525,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01178{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.m150_c01178{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);}
.mac_c01178{transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);}
.m118_c01178{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);}
.m14c_c01178{transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);}
.m47_c01178{transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);}
.mc_c01178{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);}
.m46_c01178{transform:matrix(0.120525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120525,0.000000,0.000000,0.250000,0,0);}
.m59_c01178{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m19c_c01178{transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);}
.mae_c01178{transform:matrix(0.122200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122200,0.000000,0.000000,0.250000,0,0);}
.m41_c01178{transform:matrix(0.123050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123050,0.000000,0.000000,0.250000,0,0);}
.m7a_c01178{transform:matrix(0.124425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124425,0.000000,0.000000,0.250000,0,0);}
.me9_c01178{transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);}
.m191_c01178{transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);}
.mb7_c01178{transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);}
.m40_c01178{transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);}
.m61_c01178{transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);}
.m183_c01178{transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);}
.m16c_c01178{transform:matrix(0.132225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132225,0.000000,0.000000,0.250000,0,0);}
.mb0_c01178{transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);}
.m3a_c01178{transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);}
.mb1_c01178{transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);}
.m3_c01178{transform:matrix(0.133850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133850,0.000000,0.000000,0.250000,0,0);}
.mdc_c01178{transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);}
.m148_c01178{transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135225,0.000000,0.000000,0.250000,0,0);}
.m90_c01178{transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);}
.m25_c01178{transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);}
.m133_c01178{transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137075,0.000000,0.000000,0.250000,0,0);}
.mb2_c01178{transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);}
.m130_c01178{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m19d_c01178{transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);}
.m5f_c01178{transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);}
.m8b_c01178{transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);}
.m52_c01178{transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);}
.m4a_c01178{transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);}
.m104_c01178{transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);}
.m43_c01178{transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);}
.m174_c01178{transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);}
.mab_c01178{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m12d_c01178{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.me6_c01178{transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);}
.m167_c01178{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.mc7_c01178{transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);}
.m11_c01178{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m20_c01178{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);}
.m14d_c01178{transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);}
.m147_c01178{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);}
.m170_c01178{transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);}
.ma1_c01178{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);}
.me_c01178{transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);}
.m9e_c01178{transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);}
.m158_c01178{transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);}
.m54_c01178{transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);}
.mf9_c01178{transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);}
.m162_c01178{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);}
.m77_c01178{transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);}
.mcd_c01178{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01178{transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);}
.m8_c01178{transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);}
.m17c_c01178{transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);}
.m8a_c01178{transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);}
.me3_c01178{transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);}
.meb_c01178{transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);}
.m117_c01178{transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);}
.mf2_c01178{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.m136_c01178{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);}
.m177_c01178{transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);}
.m111_c01178{transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);}
.m146_c01178{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.m18c_c01178{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.m2e_c01178{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.mb3_c01178{transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);}
.m2b_c01178{transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);}
.m8c_c01178{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.m198_c01178{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);}
.md9_c01178{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);}
.mb9_c01178{transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);}
.m10e_c01178{transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);}
.m18e_c01178{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);}
.m19f_c01178{transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);}
.mff_c01178{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.m176_c01178{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.mc8_c01178{transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);}
.m197_c01178{transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);}
.m145_c01178{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m56_c01178{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m11f_c01178{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m85_c01178{transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);}
.mb_c01178{transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);}
.m18_c01178{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m1d_c01178{transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);}
.m151_c01178{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.m8f_c01178{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);}
.m22_c01178{transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);}
.mb5_c01178{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.m58_c01178{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.m4e_c01178{transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);}
.m141_c01178{transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);}
.mad_c01178{transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);}
.m13e_c01178{transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);}
.m37_c01178{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.m70_c01178{transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);}
.m9b_c01178{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);}
.m6e_c01178{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.m5d_c01178{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.mf0_c01178{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_c01178{transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);}
.m6a_c01178{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.m98_c01178{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.mfb_c01178{transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);}
.m16e_c01178{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);}
.m17_c01178{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);}
.m71_c01178{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);}
.m18d_c01178{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m17d_c01178{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m80_c01178{transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169925,0.000000,0.000000,0.250000,0,0);}
.m11a_c01178{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m100_c01178{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);}
.m1f_c01178{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.m159_c01178{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m38_c01178{transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);}
.mc9_c01178{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);}
.mba_c01178{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m76_c01178{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);}
.m5b_c01178{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m169_c01178{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.md3_c01178{transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);}
.m1c_c01178{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.m184_c01178{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);}
.mb6_c01178{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m31_c01178{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m109_c01178{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m140_c01178{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m16b_c01178{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);}
.mdd_c01178{transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);}
.m187_c01178{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);}
.m39_c01178{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01178{transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);}
.m72_c01178{transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);}
.m122_c01178{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.md8_c01178{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.ma0_c01178{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);}
.m83_c01178{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);}
.md1_c01178{transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);}
.m30_c01178{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.md7_c01178{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m168_c01178{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);}
.m87_c01178{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);}
.mdf_c01178{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);}
.m4d_c01178{transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);}
.m2c_c01178{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m149_c01178{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.ma2_c01178{transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);}
.m180_c01178{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m19b_c01178{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m110_c01178{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m16d_c01178{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);}
.m11b_c01178{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.m6b_c01178{transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01178{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.m28_c01178{transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01178{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);}
.m15d_c01178{transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);}
.m16f_c01178{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m63_c01178{transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);}
.m7c_c01178{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m99_c01178{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.md_c01178{transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);}
.m35_c01178{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);}
.m53_c01178{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m10_c01178{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.m8d_c01178{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);}
.maa_c01178{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.ma5_c01178{transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);}
.m18f_c01178{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.me7_c01178{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.m13d_c01178{transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);}
.mfe_c01178{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m9d_c01178{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);}
.m23_c01178{transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);}
.m186_c01178{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.maf_c01178{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_c01178{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01178{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.m138_c01178{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);}
.m1ab_c01178{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);}
.m10c_c01178{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m21_c01178{transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);}
.mfc_c01178{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);}
.m19e_c01178{transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);}
.m57_c01178{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m15b_c01178{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m5a_c01178{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.m32_c01178{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m34_c01178{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m49_c01178{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);}
.m181_c01178{transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);}
.md2_c01178{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);}
.m19a_c01178{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.m60_c01178{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m101_c01178{transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);}
.m196_c01178{transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189800,0.000000,0.000000,0.250000,0,0);}
.m1e_c01178{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m142_c01178{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m165_c01178{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.mdb_c01178{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.md4_c01178{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mb8_c01178{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);}
.m12c_c01178{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.m7b_c01178{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.m86_c01178{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.m3b_c01178{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);}
.m79_c01178{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);}
.m114_c01178{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m137_c01178{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m15c_c01178{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.m113_c01178{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.me5_c01178{transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);}
.m116_c01178{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m96_c01178{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m89_c01178{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);}
.mf1_c01178{transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);}
.m14f_c01178{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);}
.m121_c01178{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);}
.m194_c01178{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);}
.m10d_c01178{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);}
.m36_c01178{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);}
.m64_c01178{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);}
.m1a4_c01178{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);}
.md0_c01178{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);}
.m19_c01178{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);}
.mf4_c01178{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m97_c01178{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);}
.mbe_c01178{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m2a_c01178{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);}
.ma7_c01178{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);}
.m75_c01178{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m7_c01178{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m173_c01178{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.me8_c01178{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m102_c01178{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);}
.m135_c01178{transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);}
.m14e_c01178{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.m1a_c01178{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);}
.m195_c01178{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m103_c01178{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.mc5_c01178{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.m15f_c01178{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.mc3_c01178{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);}
.m14b_c01178{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);}
.m15_c01178{transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);}
.m129_c01178{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.m10f_c01178{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.mbf_c01178{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m18a_c01178{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.mde_c01178{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);}
.m2f_c01178{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m13b_c01178{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);}
.mc2_c01178{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);}
.m14_c01178{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.mca_c01178{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m66_c01178{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m199_c01178{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m175_c01178{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m112_c01178{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);}
.mf3_c01178{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.mf8_c01178{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.m192_c01178{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);}
.m1a1_c01178{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);}
.m163_c01178{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);}
.mc4_c01178{transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);}
.m127_c01178{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.mc0_c01178{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.me1_c01178{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);}
.m16a_c01178{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);}
.m12b_c01178{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);}
.mef_c01178{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m161_c01178{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);}
.md6_c01178{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m172_c01178{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);}
.m3e_c01178{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m13f_c01178{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);}
.m190_c01178{transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);}
.m11d_c01178{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);}
.m144_c01178{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m105_c01178{transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);}
.m13a_c01178{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.m10b_c01178{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m132_c01178{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m17a_c01178{transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);}
.m120_c01178{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);}
.me2_c01178{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.m93_c01178{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.mea_c01178{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.m2d_c01178{transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);}
.mbb_c01178{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m81_c01178{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);}
.m78_c01178{transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);}
.m3f_c01178{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m143_c01178{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m179_c01178{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.m10a_c01178{transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);}
.m4f_c01178{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m188_c01178{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m128_c01178{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);}
.m94_c01178{transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);}
.m126_c01178{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.m182_c01178{transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);}
.m68_c01178{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);}
.m8e_c01178{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);}
.ma8_c01178{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);}
.m24_c01178{transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);}
.m12a_c01178{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m193_c01178{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);}
.m164_c01178{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);}
.m123_c01178{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);}
.mc6_c01178{transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);}
.m84_c01178{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);}
.m6d_c01178{transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234175,0.000000,0.000000,0.250000,0,0);}
.m9c_c01178{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.m92_c01178{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);}
.mfd_c01178{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.m95_c01178{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);}
.m107_c01178{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m12f_c01178{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);}
.m18b_c01178{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);}
.mee_c01178{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);}
.m13c_c01178{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);}
.m82_c01178{transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);}
.me4_c01178{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m166_c01178{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);}
.m106_c01178{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m11c_c01178{transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);}
.m16_c01178{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.mf5_c01178{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);}
.m156_c01178{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);}
.m15a_c01178{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);}
.m4c_c01178{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);}
.mce_c01178{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m17b_c01178{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.m160_c01178{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m171_c01178{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m51_c01178{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.ma6_c01178{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);}
.m5e_c01178{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);}
.m26_c01178{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_c01178{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);}
.ma3_c01178{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);}
.mec_c01178{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc1_c01178{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m125_c01178{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m91_c01178{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);}
.m185_c01178{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mcb_c01178{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);}
.m65_c01178{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);}
.m69_c01178{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m44_c01178{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);}
.m1_c01178{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf7_c01178{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01178{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);}
.m134_c01178{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9a_c01178{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);}
.m48_c01178{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01178{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m15e_c01178{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);}
.m9f_c01178{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf6_c01178{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me0_c01178{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);}
.m178_c01178{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2_c01178{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m67_c01178{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m152_c01178{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m131_c01178{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m62_c01178{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);}
.m33_c01178{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mcf_c01178{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma4_c01178{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c01178{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m55_c01178{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m27_c01178{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);}
.ma9_c01178{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m6_c01178{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m50_c01178{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);}
.m14a_c01178{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01178{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01178{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mfa_c01178{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);}
.m7e_c01178{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01178{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);}
.mda_c01178{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m139_c01178{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m115_c01178{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);}
.m11e_c01178{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m4_c01178{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mf_c01178{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);}
.m45_c01178{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5_c01178{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m42_c01178{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m17f_c01178{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01178{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mbd_c01178{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);}
.m74_c01178{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m29_c01178{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);}
.m73_c01178{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m88_c01178{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m0_c01178{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);}
.m124_c01178{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m17e_c01178{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.med_c01178{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);}
.m108_c01178{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.md5_c01178{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01178{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m12e_c01178{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01178{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m153_c01178{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01178{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);}
.mbc_c01178{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m154_c01178{transform:matrix(1.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.860000,0.000000,0.000000,0.250000,0,0);}
.m155_c01178{transform:matrix(2.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.147500,0.000000,0.000000,0.250000,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;}
.fs2_c01178{font-size:3.456000px;}
.fs5_c01178{font-size:6.000000px;}
.fs4_c01178{font-size:6.900000px;}
.fs7_c01178{font-size:10.380000px;}
.fs3_c01178{font-size:13.800000px;}
.fs0_c01178{font-size:17.280000px;}
.fs17_c01178{font-size:20.760000px;}
.fs6_c01178{font-size:24.180000px;}
.fs1d_c01178{font-size:27.660000px;}
.fs23_c01178{font-size:31.080000px;}
.fs14_c01178{font-size:34.560000px;}
.fs20_c01178{font-size:38.040000px;}
.fs22_c01178{font-size:41.460000px;}
.fsb_c01178{font-size:44.940000px;}
.fs25_c01178{font-size:48.360000px;}
.fs1a_c01178{font-size:51.840000px;}
.fs1_c01178{font-size:55.320000px;}
.fs21_c01178{font-size:58.740000px;}
.fs18_c01178{font-size:62.220000px;}
.fs11_c01178{font-size:65.640000px;}
.fs10_c01178{font-size:69.120000px;}
.fs19_c01178{font-size:72.600000px;}
.fs13_c01178{font-size:76.020000px;}
.fse_c01178{font-size:79.500000px;}
.fs24_c01178{font-size:82.920000px;}
.fsc_c01178{font-size:86.400000px;}
.fs8_c01178{font-size:89.880000px;}
.fs16_c01178{font-size:93.300000px;}
.fs12_c01178{font-size:96.780000px;}
.fs15_c01178{font-size:100.200000px;}
.fs9_c01178{font-size:103.680000px;}
.fsf_c01178{font-size:107.160000px;}
.fsd_c01178{font-size:110.580000px;}
.fs1c_c01178{font-size:114.060000px;}
.fs26_c01178{font-size:117.480000px;}
.fs1b_c01178{font-size:120.960000px;}
.fs1f_c01178{font-size:124.440000px;}
.fsa_c01178{font-size:131.340000px;}
.fs1e_c01178{font-size:138.240000px;}
.fs27_c01178{font-size:155.520000px;}
.y0_c01178{bottom:0.000000px;}
.y186_c01178{bottom:214.275000px;}
.y185_c01178{bottom:216.000000px;}
.y188_c01178{bottom:219.450000px;}
.y18a_c01178{bottom:221.190000px;}
.y187_c01178{bottom:222.045000px;}
.y18b_c01178{bottom:225.510000px;}
.y189_c01178{bottom:226.365000px;}
.y184_c01178{bottom:227.235000px;}
.y17d_c01178{bottom:244.515000px;}
.y180_c01178{bottom:245.370000px;}
.y17f_c01178{bottom:246.240000px;}
.y17e_c01178{bottom:250.560000px;}
.y181_c01178{bottom:251.430000px;}
.y182_c01178{bottom:253.155000px;}
.y183_c01178{bottom:254.880000px;}
.y17c_c01178{bottom:259.200000px;}
.y175_c01178{bottom:267.840000px;}
.y177_c01178{bottom:269.565000px;}
.y179_c01178{bottom:270.435000px;}
.y17a_c01178{bottom:271.290000px;}
.y178_c01178{bottom:273.030000px;}
.y176_c01178{bottom:274.755000px;}
.y174_c01178{bottom:276.480000px;}
.y17b_c01178{bottom:279.930000px;}
.y173_c01178{bottom:285.120000px;}
.y16b_c01178{bottom:293.760000px;}
.y16d_c01178{bottom:295.485000px;}
.y16e_c01178{bottom:296.355000px;}
.y16f_c01178{bottom:297.210000px;}
.y171_c01178{bottom:298.080000px;}
.y16c_c01178{bottom:301.530000px;}
.y170_c01178{bottom:303.270000px;}
.y172_c01178{bottom:304.995000px;}
.y16a_c01178{bottom:312.765000px;}
.y164_c01178{bottom:320.550000px;}
.y163_c01178{bottom:321.405000px;}
.y162_c01178{bottom:323.130000px;}
.y165_c01178{bottom:324.000000px;}
.y166_c01178{bottom:325.725000px;}
.y168_c01178{bottom:326.595000px;}
.y161_c01178{bottom:327.450000px;}
.y167_c01178{bottom:329.190000px;}
.y169_c01178{bottom:330.045000px;}
.y159_c01178{bottom:344.730000px;}
.y194_c01178{bottom:346.470000px;}
.y158_c01178{bottom:347.325000px;}
.y15c_c01178{bottom:349.050000px;}
.y15d_c01178{bottom:350.790000px;}
.y15b_c01178{bottom:351.645000px;}
.y15a_c01178{bottom:353.370000px;}
.y15e_c01178{bottom:355.965000px;}
.y15f_c01178{bottom:356.835000px;}
.y160_c01178{bottom:369.795000px;}
.y152_c01178{bottom:371.520000px;}
.y154_c01178{bottom:372.390000px;}
.y151_c01178{bottom:373.245000px;}
.y153_c01178{bottom:374.115000px;}
.y155_c01178{bottom:377.565000px;}
.y150_c01178{bottom:378.435000px;}
.y156_c01178{bottom:380.160000px;}
.y157_c01178{bottom:381.885000px;}
.y193_c01178{bottom:392.250000px;}
.y14a_c01178{bottom:395.715000px;}
.y14d_c01178{bottom:396.570000px;}
.y14c_c01178{bottom:397.440000px;}
.y14f_c01178{bottom:398.310000px;}
.y14b_c01178{bottom:399.165000px;}
.y14e_c01178{bottom:401.760000px;}
.y149_c01178{bottom:406.950000px;}
.y192_c01178{bottom:422.490000px;}
.y142_c01178{bottom:423.360000px;}
.y144_c01178{bottom:424.230000px;}
.y148_c01178{bottom:425.085000px;}
.y147_c01178{bottom:425.955000px;}
.y141_c01178{bottom:427.680000px;}
.y140_c01178{bottom:428.550000px;}
.y143_c01178{bottom:429.405000px;}
.y145_c01178{bottom:430.275000px;}
.y146_c01178{bottom:431.130000px;}
.y139_c01178{bottom:447.555000px;}
.y13d_c01178{bottom:448.410000px;}
.y138_c01178{bottom:449.280000px;}
.y13c_c01178{bottom:450.150000px;}
.y13a_c01178{bottom:451.005000px;}
.y13f_c01178{bottom:451.875000px;}
.y136_c01178{bottom:453.600000px;}
.y137_c01178{bottom:454.470000px;}
.y13b_c01178{bottom:455.325000px;}
.y13e_c01178{bottom:456.195000px;}
.y191_c01178{bottom:460.515000px;}
.y133_c01178{bottom:475.200000px;}
.y134_c01178{bottom:476.070000px;}
.y132_c01178{bottom:476.925000px;}
.y135_c01178{bottom:477.795000px;}
.y12c_c01178{bottom:479.520000px;}
.y12e_c01178{bottom:480.390000px;}
.y12d_c01178{bottom:481.245000px;}
.y131_c01178{bottom:485.565000px;}
.y130_c01178{bottom:488.160000px;}
.y12f_c01178{bottom:491.610000px;}
.y12b_c01178{bottom:499.395000px;}
.y129_c01178{bottom:501.120000px;}
.y12a_c01178{bottom:501.990000px;}
.y125_c01178{bottom:502.845000px;}
.y126_c01178{bottom:503.715000px;}
.y128_c01178{bottom:505.440000px;}
.y127_c01178{bottom:506.310000px;}
.y11d_c01178{bottom:520.995000px;}
.y11e_c01178{bottom:523.590000px;}
.y11f_c01178{bottom:524.445000px;}
.y11c_c01178{bottom:525.315000px;}
.y190_c01178{bottom:526.170000px;}
.y123_c01178{bottom:528.765000px;}
.y121_c01178{bottom:532.230000px;}
.y122_c01178{bottom:533.085000px;}
.y18f_c01178{bottom:534.810000px;}
.y120_c01178{bottom:540.000000px;}
.y124_c01178{bottom:546.045000px;}
.y118_c01178{bottom:547.770000px;}
.y116_c01178{bottom:548.640000px;}
.y119_c01178{bottom:550.365000px;}
.y11b_c01178{bottom:552.090000px;}
.y117_c01178{bottom:552.960000px;}
.y11a_c01178{bottom:559.005000px;}
.y18d_c01178{bottom:566.790000px;}
.y18c_c01178{bottom:567.645000px;}
.y10e_c01178{bottom:573.690000px;}
.y111_c01178{bottom:574.560000px;}
.y113_c01178{bottom:577.155000px;}
.y10d_c01178{bottom:578.010000px;}
.y114_c01178{bottom:578.880000px;}
.y10c_c01178{bottom:579.750000px;}
.y10f_c01178{bottom:580.605000px;}
.y112_c01178{bottom:583.200000px;}
.y110_c01178{bottom:584.070000px;}
.y115_c01178{bottom:584.925000px;}
.y103_c01178{bottom:598.755000px;}
.y105_c01178{bottom:599.610000px;}
.y109_c01178{bottom:602.205000px;}
.y104_c01178{bottom:603.075000px;}
.y10b_c01178{bottom:603.930000px;}
.y106_c01178{bottom:604.800000px;}
.y107_c01178{bottom:607.395000px;}
.y108_c01178{bottom:608.250000px;}
.y10a_c01178{bottom:609.120000px;}
.yfe_c01178{bottom:623.805000px;}
.yfb_c01178{bottom:625.530000px;}
.y102_c01178{bottom:627.270000px;}
.yfd_c01178{bottom:628.125000px;}
.yfa_c01178{bottom:629.850000px;}
.yfc_c01178{bottom:630.720000px;}
.yff_c01178{bottom:631.590000px;}
.y100_c01178{bottom:632.445000px;}
.y101_c01178{bottom:633.315000px;}
.yf2_c01178{bottom:648.000000px;}
.yf0_c01178{bottom:648.870000px;}
.yf5_c01178{bottom:651.450000px;}
.yf3_c01178{bottom:652.320000px;}
.yf1_c01178{bottom:653.190000px;}
.yf4_c01178{bottom:655.770000px;}
.yf7_c01178{bottom:656.640000px;}
.yf6_c01178{bottom:657.510000px;}
.yf8_c01178{bottom:658.365000px;}
.yf9_c01178{bottom:659.235000px;}
.ye9_c01178{bottom:672.195000px;}
.ye8_c01178{bottom:673.050000px;}
.yeb_c01178{bottom:673.920000px;}
.yea_c01178{bottom:674.790000px;}
.yef_c01178{bottom:677.370000px;}
.yec_c01178{bottom:680.835000px;}
.yee_c01178{bottom:682.560000px;}
.yed_c01178{bottom:683.430000px;}
.ye2_c01178{bottom:697.245000px;}
.ye7_c01178{bottom:698.970000px;}
.ye5_c01178{bottom:700.710000px;}
.ye3_c01178{bottom:704.160000px;}
.ye4_c01178{bottom:705.030000px;}
.ye6_c01178{bottom:706.755000px;}
.ydc_c01178{bottom:721.440000px;}
.yd8_c01178{bottom:722.310000px;}
.ydd_c01178{bottom:723.165000px;}
.yde_c01178{bottom:724.035000px;}
.yda_c01178{bottom:725.760000px;}
.ydb_c01178{bottom:726.630000px;}
.ydf_c01178{bottom:729.210000px;}
.yd9_c01178{bottom:730.080000px;}
.ye0_c01178{bottom:731.805000px;}
.ye1_c01178{bottom:732.675000px;}
.y18e_c01178{bottom:735.270000px;}
.yd0_c01178{bottom:746.490000px;}
.yd1_c01178{bottom:747.360000px;}
.yd3_c01178{bottom:748.230000px;}
.yd6_c01178{bottom:749.085000px;}
.yd7_c01178{bottom:749.955000px;}
.yd2_c01178{bottom:752.550000px;}
.yd4_c01178{bottom:756.000000px;}
.yd5_c01178{bottom:756.870000px;}
.yc8_c01178{bottom:774.150000px;}
.ycb_c01178{bottom:775.005000px;}
.yc6_c01178{bottom:775.875000px;}
.ycc_c01178{bottom:776.730000px;}
.yc7_c01178{bottom:777.600000px;}
.yca_c01178{bottom:779.325000px;}
.yc9_c01178{bottom:780.195000px;}
.ycd_c01178{bottom:781.920000px;}
.yce_c01178{bottom:782.790000px;}
.ycf_c01178{bottom:785.370000px;}
.ybe_c01178{bottom:796.605000px;}
.yc2_c01178{bottom:797.475000px;}
.yc4_c01178{bottom:800.070000px;}
.yc1_c01178{bottom:800.925000px;}
.ybf_c01178{bottom:804.390000px;}
.yc0_c01178{bottom:806.115000px;}
.yc3_c01178{bottom:806.970000px;}
.yc5_c01178{bottom:807.840000px;}
.ybd_c01178{bottom:818.205000px;}
.yb6_c01178{bottom:822.525000px;}
.ybb_c01178{bottom:823.395000px;}
.yb8_c01178{bottom:824.250000px;}
.ybc_c01178{bottom:825.120000px;}
.yb7_c01178{bottom:826.845000px;}
.yb5_c01178{bottom:827.715000px;}
.yb9_c01178{bottom:830.310000px;}
.yba_c01178{bottom:831.165000px;}
.yb0_c01178{bottom:846.720000px;}
.yaf_c01178{bottom:847.590000px;}
.yb1_c01178{bottom:848.445000px;}
.yae_c01178{bottom:850.170000px;}
.yad_c01178{bottom:852.765000px;}
.yb4_c01178{bottom:855.360000px;}
.yb2_c01178{bottom:856.230000px;}
.yb3_c01178{bottom:857.085000px;}
.yac_c01178{bottom:860.550000px;}
.yab_c01178{bottom:864.870000px;}
.ya6_c01178{bottom:870.915000px;}
.ya7_c01178{bottom:871.770000px;}
.ya8_c01178{bottom:873.510000px;}
.ya9_c01178{bottom:875.235000px;}
.ya4_c01178{bottom:877.830000px;}
.ya5_c01178{bottom:878.685000px;}
.yaa_c01178{bottom:885.600000px;}
.y9e_c01178{bottom:895.110000px;}
.y9f_c01178{bottom:896.835000px;}
.ya2_c01178{bottom:897.690000px;}
.ya0_c01178{bottom:902.010000px;}
.ya3_c01178{bottom:904.605000px;}
.ya1_c01178{bottom:906.330000px;}
.y97_c01178{bottom:920.160000px;}
.y99_c01178{bottom:921.030000px;}
.y9b_c01178{bottom:921.885000px;}
.y96_c01178{bottom:922.755000px;}
.y9c_c01178{bottom:923.610000px;}
.y95_c01178{bottom:925.350000px;}
.y98_c01178{bottom:927.075000px;}
.y94_c01178{bottom:927.930000px;}
.y9a_c01178{bottom:929.670000px;}
.y9d_c01178{bottom:932.250000px;}
.y93_c01178{bottom:938.310000px;}
.y8c_c01178{bottom:944.355000px;}
.y8d_c01178{bottom:945.210000px;}
.y8e_c01178{bottom:946.080000px;}
.y90_c01178{bottom:946.950000px;}
.y91_c01178{bottom:948.675000px;}
.y8f_c01178{bottom:950.400000px;}
.y92_c01178{bottom:951.270000px;}
.y8b_c01178{bottom:959.910000px;}
.y84_c01178{bottom:965.085000px;}
.y85_c01178{bottom:965.955000px;}
.y87_c01178{bottom:966.810000px;}
.y88_c01178{bottom:970.275000px;}
.y86_c01178{bottom:971.130000px;}
.y89_c01178{bottom:974.595000px;}
.y8a_c01178{bottom:978.915000px;}
.y7b_c01178{bottom:994.470000px;}
.y7e_c01178{bottom:995.325000px;}
.y80_c01178{bottom:996.195000px;}
.y83_c01178{bottom:997.050000px;}
.y7c_c01178{bottom:1001.370000px;}
.y7d_c01178{bottom:1002.240000px;}
.y7f_c01178{bottom:1003.110000px;}
.y81_c01178{bottom:1003.965000px;}
.y82_c01178{bottom:1004.835000px;}
.y75_c01178{bottom:1019.520000px;}
.y7a_c01178{bottom:1020.390000px;}
.y77_c01178{bottom:1021.245000px;}
.y73_c01178{bottom:1022.970000px;}
.y79_c01178{bottom:1023.840000px;}
.y74_c01178{bottom:1025.565000px;}
.y76_c01178{bottom:1028.160000px;}
.y78_c01178{bottom:1029.030000px;}
.y69_c01178{bottom:1044.570000px;}
.y6f_c01178{bottom:1046.310000px;}
.y70_c01178{bottom:1047.165000px;}
.y6a_c01178{bottom:1048.035000px;}
.y71_c01178{bottom:1048.890000px;}
.y6e_c01178{bottom:1050.630000px;}
.y6b_c01178{bottom:1051.485000px;}
.y6c_c01178{bottom:1052.355000px;}
.y6d_c01178{bottom:1053.210000px;}
.y72_c01178{bottom:1056.675000px;}
.y64_c01178{bottom:1068.765000px;}
.y62_c01178{bottom:1069.635000px;}
.y65_c01178{bottom:1070.490000px;}
.y66_c01178{bottom:1071.360000px;}
.y63_c01178{bottom:1073.955000px;}
.y68_c01178{bottom:1074.810000px;}
.y67_c01178{bottom:1075.680000px;}
.y59_c01178{bottom:1093.830000px;}
.y5a_c01178{bottom:1094.685000px;}
.y58_c01178{bottom:1095.555000px;}
.y5e_c01178{bottom:1096.410000px;}
.y5f_c01178{bottom:1097.280000px;}
.y61_c01178{bottom:1099.005000px;}
.y5b_c01178{bottom:1099.875000px;}
.y5d_c01178{bottom:1100.730000px;}
.y57_c01178{bottom:1101.600000px;}
.y5c_c01178{bottom:1103.325000px;}
.y60_c01178{bottom:1105.050000px;}
.y4f_c01178{bottom:1118.880000px;}
.y4d_c01178{bottom:1119.750000px;}
.y51_c01178{bottom:1121.475000px;}
.y56_c01178{bottom:1122.330000px;}
.y55_c01178{bottom:1123.200000px;}
.y52_c01178{bottom:1124.925000px;}
.y4e_c01178{bottom:1125.795000px;}
.y50_c01178{bottom:1127.520000px;}
.y53_c01178{bottom:1128.390000px;}
.y54_c01178{bottom:1129.245000px;}
.y4a_c01178{bottom:1145.670000px;}
.y48_c01178{bottom:1146.525000px;}
.y45_c01178{bottom:1147.395000px;}
.y46_c01178{bottom:1150.845000px;}
.y47_c01178{bottom:1151.715000px;}
.y49_c01178{bottom:1153.440000px;}
.y4b_c01178{bottom:1154.310000px;}
.y4c_c01178{bottom:1156.890000px;}
.y40_c01178{bottom:1169.850000px;}
.y44_c01178{bottom:1171.590000px;}
.y3f_c01178{bottom:1175.040000px;}
.y41_c01178{bottom:1176.765000px;}
.y42_c01178{bottom:1178.490000px;}
.y43_c01178{bottom:1179.360000px;}
.y37_c01178{bottom:1193.190000px;}
.y38_c01178{bottom:1194.045000px;}
.y36_c01178{bottom:1194.915000px;}
.y3c_c01178{bottom:1195.770000px;}
.y3d_c01178{bottom:1196.640000px;}
.y3e_c01178{bottom:1198.365000px;}
.y3a_c01178{bottom:1200.960000px;}
.y39_c01178{bottom:1201.830000px;}
.y3b_c01178{bottom:1203.555000px;}
.y33_c01178{bottom:1209.600000px;}
.y2d_c01178{bottom:1212.195000px;}
.y2e_c01178{bottom:1213.050000px;}
.y30_c01178{bottom:1215.645000px;}
.y32_c01178{bottom:1217.370000px;}
.y2c_c01178{bottom:1219.110000px;}
.y2a_c01178{bottom:1221.690000px;}
.y2b_c01178{bottom:1222.560000px;}
.y31_c01178{bottom:1224.285000px;}
.y2f_c01178{bottom:1227.750000px;}
.y34_c01178{bottom:1228.605000px;}
.y35_c01178{bottom:1231.200000px;}
.y25_c01178{bottom:1243.290000px;}
.y26_c01178{bottom:1245.030000px;}
.y27_c01178{bottom:1245.885000px;}
.y28_c01178{bottom:1246.755000px;}
.y29_c01178{bottom:1248.480000px;}
.y24_c01178{bottom:1251.930000px;}
.y20_c01178{bottom:1269.210000px;}
.y1f_c01178{bottom:1270.080000px;}
.y21_c01178{bottom:1270.950000px;}
.y23_c01178{bottom:1272.675000px;}
.y1e_c01178{bottom:1273.530000px;}
.y1d_c01178{bottom:1276.125000px;}
.y22_c01178{bottom:1277.850000px;}
.y18_c01178{bottom:1293.405000px;}
.y17_c01178{bottom:1294.275000px;}
.y19_c01178{bottom:1295.130000px;}
.y1a_c01178{bottom:1296.000000px;}
.y1b_c01178{bottom:1296.870000px;}
.y1c_c01178{bottom:1304.640000px;}
.y10_c01178{bottom:1319.325000px;}
.y13_c01178{bottom:1320.195000px;}
.y12_c01178{bottom:1321.050000px;}
.y15_c01178{bottom:1321.920000px;}
.y11_c01178{bottom:1326.240000px;}
.y14_c01178{bottom:1327.110000px;}
.y16_c01178{bottom:1330.560000px;}
.y9_c01178{bottom:1344.390000px;}
.yd_c01178{bottom:1345.245000px;}
.ye_c01178{bottom:1346.970000px;}
.ya_c01178{bottom:1348.710000px;}
.yc_c01178{bottom:1349.565000px;}
.yb_c01178{bottom:1352.160000px;}
.yf_c01178{bottom:1353.885000px;}
.y8_c01178{bottom:1359.930000px;}
.y5_c01178{bottom:1376.355000px;}
.y7_c01178{bottom:1377.210000px;}
.y6_c01178{bottom:1378.080000px;}
.y4_c01178{bottom:1378.950000px;}
.y3_c01178{bottom:1382.400000px;}
.y2_c01178{bottom:1428.195000px;}
.y1_c01178{bottom:1434.240000px;}
.h4_c01178{height:3.110063px;}
.h7_c01178{height:5.399414px;}
.h6_c01178{height:6.209326px;}
.h9_c01178{height:9.340986px;}
.h5_c01178{height:12.418652px;}
.h2_c01178{height:15.550313px;}
.h19_c01178{height:18.681973px;}
.h8_c01178{height:21.759639px;}
.h1f_c01178{height:24.891299px;}
.h25_c01178{height:27.968965px;}
.h16_c01178{height:31.100625px;}
.h22_c01178{height:34.232285px;}
.h24_c01178{height:37.309951px;}
.hd_c01178{height:40.441611px;}
.h27_c01178{height:43.519277px;}
.h1c_c01178{height:46.650937px;}
.h3_c01178{height:49.782598px;}
.h23_c01178{height:52.860264px;}
.h1a_c01178{height:55.991924px;}
.h13_c01178{height:59.069590px;}
.h12_c01178{height:62.201250px;}
.h1b_c01178{height:65.332910px;}
.h15_c01178{height:68.410576px;}
.h10_c01178{height:71.542236px;}
.h26_c01178{height:74.619902px;}
.he_c01178{height:77.751563px;}
.ha_c01178{height:80.883223px;}
.h18_c01178{height:83.960889px;}
.h14_c01178{height:87.092549px;}
.h17_c01178{height:90.170215px;}
.hb_c01178{height:93.301875px;}
.h11_c01178{height:96.433535px;}
.hf_c01178{height:99.511201px;}
.h1e_c01178{height:102.642861px;}
.h28_c01178{height:105.720527px;}
.h1d_c01178{height:108.852188px;}
.h21_c01178{height:111.983848px;}
.hc_c01178{height:118.193174px;}
.h20_c01178{height:124.402500px;}
.h29_c01178{height:139.952812px;}
.h1_c01178{height:1513.500000px;}
.h0_c01178{height:1513.725000px;}
.w1_c01178{width:1065.000000px;}
.w0_c01178{width:1065.315000px;}
.x0_c01178{left:0.000000px;}
.x101_c01178{left:122.685000px;}
.x102_c01178{left:127.005000px;}
.x9e_c01178{left:165.030000px;}
.x103_c01178{left:169.350000px;}
.x9f_c01178{left:177.120000px;}
.x1_c01178{left:188.355000px;}
.x2_c01178{left:193.530000px;}
.x9_c01178{left:195.270000px;}
.x3a_c01178{left:199.590000px;}
.x91_c01178{left:207.360000px;}
.xa8_c01178{left:209.085000px;}
.x31_c01178{left:211.680000px;}
.x15_c01178{left:214.275000px;}
.xa_c01178{left:216.000000px;}
.x7a_c01178{left:217.725000px;}
.x3_c01178{left:220.320000px;}
.xc0_c01178{left:222.045000px;}
.xc9_c01178{left:223.770000px;}
.x4d_c01178{left:234.150000px;}
.x3b_c01178{left:237.600000px;}
.xfb_c01178{left:240.195000px;}
.x48_c01178{left:244.515000px;}
.x3c_c01178{left:247.110000px;}
.xa0_c01178{left:250.560000px;}
.xe0_c01178{left:252.285000px;}
.xcf_c01178{left:254.880000px;}
.x4e_c01178{left:256.605000px;}
.x32_c01178{left:259.200000px;}
.x7b_c01178{left:262.650000px;}
.x70_c01178{left:264.390000px;}
.xa9_c01178{left:266.115000px;}
.xb4_c01178{left:267.840000px;}
.xca_c01178{left:270.435000px;}
.x74_c01178{left:273.885000px;}
.x16_c01178{left:275.610000px;}
.xad_c01178{left:278.205000px;}
.x66_c01178{left:280.800000px;}
.x21_c01178{left:282.525000px;}
.x49_c01178{left:284.250000px;}
.x26_c01178{left:286.845000px;}
.xea_c01178{left:289.440000px;}
.xf0_c01178{left:292.035000px;}
.xdc_c01178{left:295.485000px;}
.x17_c01178{left:297.210000px;}
.xc3_c01178{left:300.675000px;}
.xb_c01178{left:303.270000px;}
.x8b_c01178{left:304.995000px;}
.x82_c01178{left:308.445000px;}
.x3d_c01178{left:311.040000px;}
.x27_c01178{left:314.490000px;}
.xae_c01178{left:317.085000px;}
.xe4_c01178{left:321.405000px;}
.x56_c01178{left:323.130000px;}
.xb5_c01178{left:327.450000px;}
.x33_c01178{left:330.045000px;}
.x4f_c01178{left:332.640000px;}
.x5e_c01178{left:334.365000px;}
.x28_c01178{left:339.555000px;}
.xd0_c01178{left:342.150000px;}
.x18_c01178{left:345.600000px;}
.x67_c01178{left:347.325000px;}
.x83_c01178{left:349.050000px;}
.xf9_c01178{left:350.790000px;}
.x7c_c01178{left:352.515000px;}
.x4a_c01178{left:354.240000px;}
.x4_c01178{left:355.965000px;}
.x99_c01178{left:361.155000px;}
.x19_c01178{left:364.605000px;}
.x8c_c01178{left:374.970000px;}
.x5f_c01178{left:376.710000px;}
.xb9_c01178{left:378.435000px;}
.xe6_c01178{left:381.030000px;}
.xc4_c01178{left:382.755000px;}
.xff_c01178{left:384.480000px;}
.xbd_c01178{left:386.205000px;}
.xc_c01178{left:390.525000px;}
.x57_c01178{left:392.250000px;}
.x84_c01178{left:393.990000px;}
.x29_c01178{left:395.715000px;}
.xc1_c01178{left:397.440000px;}
.x34_c01178{left:400.035000px;}
.x68_c01178{left:404.355000px;}
.xd9_c01178{left:406.080000px;}
.xaf_c01178{left:410.400000px;}
.xee_c01178{left:412.995000px;}
.x1a_c01178{left:416.445000px;}
.x50_c01178{left:418.170000px;}
.xd6_c01178{left:420.765000px;}
.x3e_c01178{left:422.490000px;}
.x22_c01178{left:425.085000px;}
.xda_c01178{left:427.680000px;}
.xcb_c01178{left:429.405000px;}
.x92_c01178{left:432.000000px;}
.x60_c01178{left:433.725000px;}
.xe7_c01178{left:435.450000px;}
.x58_c01178{left:437.190000px;}
.x8e_c01178{left:440.640000px;}
.xd3_c01178{left:446.685000px;}
.x5_c01178{left:454.470000px;}
.xdd_c01178{left:457.050000px;}
.x75_c01178{left:459.645000px;}
.x69_c01178{left:461.370000px;}
.x6_c01178{left:463.110000px;}
.x51_c01178{left:464.835000px;}
.xa3_c01178{left:466.560000px;}
.xbe_c01178{left:469.155000px;}
.x6a_c01178{left:470.880000px;}
.xd_c01178{left:473.475000px;}
.x9a_c01178{left:475.200000px;}
.x71_c01178{left:478.650000px;}
.xd4_c01178{left:481.245000px;}
.xde_c01178{left:483.840000px;}
.x7d_c01178{left:485.565000px;}
.x76_c01178{left:490.755000px;}
.x93_c01178{left:492.480000px;}
.x3f_c01178{left:495.930000px;}
.xd1_c01178{left:500.250000px;}
.x85_c01178{left:501.990000px;}
.x59_c01178{left:507.165000px;}
.xcc_c01178{left:509.760000px;}
.xd7_c01178{left:511.485000px;}
.xba_c01178{left:515.805000px;}
.x1b_c01178{left:517.530000px;}
.x40_c01178{left:519.270000px;}
.xcd_c01178{left:521.850000px;}
.x23_c01178{left:523.590000px;}
.x77_c01178{left:525.315000px;}
.x41_c01178{left:527.040000px;}
.x35_c01178{left:531.360000px;}
.xe_c01178{left:535.680000px;}
.xa4_c01178{left:537.405000px;}
.xb6_c01178{left:539.130000px;}
.x86_c01178{left:543.450000px;}
.xf5_c01178{left:546.045000px;}
.x7e_c01178{left:547.770000px;}
.xf1_c01178{left:549.510000px;}
.xaa_c01178{left:551.235000px;}
.xdf_c01178{left:552.960000px;}
.x5a_c01178{left:555.555000px;}
.x78_c01178{left:560.730000px;}
.xe1_c01178{left:562.470000px;}
.x61_c01178{left:565.050000px;}
.x5b_c01178{left:566.790000px;}
.xe2_c01178{left:571.110000px;}
.xf6_c01178{left:573.690000px;}
.x62_c01178{left:576.285000px;}
.x42_c01178{left:578.880000px;}
.x52_c01178{left:581.475000px;}
.x6b_c01178{left:584.070000px;}
.x2a_c01178{left:590.115000px;}
.xb7_c01178{left:593.565000px;}
.xbb_c01178{left:595.290000px;}
.xc5_c01178{left:597.885000px;}
.x63_c01178{left:600.480000px;}
.xeb_c01178{left:602.205000px;}
.x7f_c01178{left:603.930000px;}
.x8f_c01178{left:608.250000px;}
.xa1_c01178{left:609.990000px;}
.x7_c01178{left:613.440000px;}
.x2b_c01178{left:615.165000px;}
.x36_c01178{left:617.760000px;}
.x8d_c01178{left:621.210000px;}
.xf7_c01178{left:622.950000px;}
.xfc_c01178{left:624.675000px;}
.xf_c01178{left:626.400000px;}
.xab_c01178{left:630.720000px;}
.x43_c01178{left:633.315000px;}
.x6c_c01178{left:635.910000px;}
.x64_c01178{left:637.635000px;}
.x2c_c01178{left:643.680000px;}
.xfe_c01178{left:645.405000px;}
.x6d_c01178{left:647.130000px;}
.x87_c01178{left:649.725000px;}
.xd2_c01178{left:651.450000px;}
.xec_c01178{left:654.915000px;}
.xbf_c01178{left:657.510000px;}
.x5c_c01178{left:659.235000px;}
.x1c_c01178{left:660.960000px;}
.x53_c01178{left:662.685000px;}
.xf2_c01178{left:666.150000px;}
.x44_c01178{left:667.875000px;}
.x100_c01178{left:669.600000px;}
.xa5_c01178{left:671.325000px;}
.x9b_c01178{left:674.790000px;}
.x37_c01178{left:676.515000px;}
.xc6_c01178{left:679.110000px;}
.x54_c01178{left:680.835000px;}
.x96_c01178{left:682.560000px;}
.x6e_c01178{left:686.880000px;}
.xce_c01178{left:688.605000px;}
.xb0_c01178{left:690.330000px;}
.x65_c01178{left:692.925000px;}
.x94_c01178{left:695.520000px;}
.xef_c01178{left:697.245000px;}
.x1d_c01178{left:698.970000px;}
.xd8_c01178{left:701.565000px;}
.xe8_c01178{left:703.290000px;}
.x10_c01178{left:706.755000px;}
.x4b_c01178{left:708.480000px;}
.xfa_c01178{left:710.205000px;}
.x8_c01178{left:713.670000px;}
.x2d_c01178{left:717.120000px;}
.xa6_c01178{left:722.310000px;}
.x1e_c01178{left:725.760000px;}
.x55_c01178{left:727.485000px;}
.x79_c01178{left:734.400000px;}
.x90_c01178{left:737.850000px;}
.x1f_c01178{left:742.170000px;}
.x6f_c01178{left:743.910000px;}
.x38_c01178{left:746.490000px;}
.x24_c01178{left:748.230000px;}
.xb1_c01178{left:750.810000px;}
.x11_c01178{left:753.405000px;}
.xd5_c01178{left:756.000000px;}
.x45_c01178{left:757.725000px;}
.xdb_c01178{left:759.450000px;}
.x80_c01178{left:761.190000px;}
.xc2_c01178{left:766.365000px;}
.x4c_c01178{left:770.685000px;}
.xb2_c01178{left:772.410000px;}
.x88_c01178{left:775.005000px;}
.xac_c01178{left:776.730000px;}
.xf8_c01178{left:778.470000px;}
.x9c_c01178{left:781.920000px;}
.x89_c01178{left:783.645000px;}
.x2e_c01178{left:787.110000px;}
.x9d_c01178{left:789.690000px;}
.x46_c01178{left:791.430000px;}
.xb8_c01178{left:793.155000px;}
.x25_c01178{left:794.880000px;}
.x39_c01178{left:797.475000px;}
.xb3_c01178{left:799.200000px;}
.x2f_c01178{left:800.925000px;}
.x47_c01178{left:803.520000px;}
.xe3_c01178{left:805.245000px;}
.xf3_c01178{left:806.970000px;}
.x72_c01178{left:809.565000px;}
.xa7_c01178{left:812.160000px;}
.xfd_c01178{left:813.885000px;}
.xe9_c01178{left:815.610000px;}
.xc7_c01178{left:817.350000px;}
.x12_c01178{left:819.930000px;}
.x5d_c01178{left:823.395000px;}
.x13_c01178{left:826.845000px;}
.x95_c01178{left:828.570000px;}
.x73_c01178{left:830.310000px;}
.xa2_c01178{left:833.760000px;}
.xbc_c01178{left:837.210000px;}
.xed_c01178{left:843.270000px;}
.xe5_c01178{left:846.719325px;}
.x81_c01178{left:849.315000px;}
.x8a_c01178{left:853.635000px;}
.x30_c01178{left:863.130000px;}
.x20_c01178{left:866.595000px;}
.x97_c01178{left:870.045000px;}
.x14_c01178{left:872.640000px;}
.xc8_c01178{left:875.235000px;}
.xf4_c01178{left:878.685000px;}
.x98_c01178{left:881.280000px;}
.x107_c01178{left:962.490000px;}
.x105_c01178{left:997.920000px;}
.x104_c01178{left:1021.245000px;}
.x106_c01178{left:1039.395000px;}
@media print{
.v0_c01178{vertical-align:0.000000pt;}
.ls0_c01178{letter-spacing:0.000000pt;}
.ws0_c01178{word-spacing:0.000000pt;}
.fs2_c01178{font-size:3.072000pt;}
.fs5_c01178{font-size:5.333333pt;}
.fs4_c01178{font-size:6.133333pt;}
.fs7_c01178{font-size:9.226667pt;}
.fs3_c01178{font-size:12.266667pt;}
.fs0_c01178{font-size:15.360000pt;}
.fs17_c01178{font-size:18.453333pt;}
.fs6_c01178{font-size:21.493333pt;}
.fs1d_c01178{font-size:24.586667pt;}
.fs23_c01178{font-size:27.626667pt;}
.fs14_c01178{font-size:30.720000pt;}
.fs20_c01178{font-size:33.813333pt;}
.fs22_c01178{font-size:36.853333pt;}
.fsb_c01178{font-size:39.946667pt;}
.fs25_c01178{font-size:42.986667pt;}
.fs1a_c01178{font-size:46.080000pt;}
.fs1_c01178{font-size:49.173333pt;}
.fs21_c01178{font-size:52.213333pt;}
.fs18_c01178{font-size:55.306667pt;}
.fs11_c01178{font-size:58.346667pt;}
.fs10_c01178{font-size:61.440000pt;}
.fs19_c01178{font-size:64.533333pt;}
.fs13_c01178{font-size:67.573333pt;}
.fse_c01178{font-size:70.666667pt;}
.fs24_c01178{font-size:73.706667pt;}
.fsc_c01178{font-size:76.800000pt;}
.fs8_c01178{font-size:79.893333pt;}
.fs16_c01178{font-size:82.933333pt;}
.fs12_c01178{font-size:86.026667pt;}
.fs15_c01178{font-size:89.066667pt;}
.fs9_c01178{font-size:92.160000pt;}
.fsf_c01178{font-size:95.253333pt;}
.fsd_c01178{font-size:98.293333pt;}
.fs1c_c01178{font-size:101.386667pt;}
.fs26_c01178{font-size:104.426667pt;}
.fs1b_c01178{font-size:107.520000pt;}
.fs1f_c01178{font-size:110.613333pt;}
.fsa_c01178{font-size:116.746667pt;}
.fs1e_c01178{font-size:122.880000pt;}
.fs27_c01178{font-size:138.240000pt;}
.y0_c01178{bottom:0.000000pt;}
.y186_c01178{bottom:190.466667pt;}
.y185_c01178{bottom:192.000000pt;}
.y188_c01178{bottom:195.066667pt;}
.y18a_c01178{bottom:196.613333pt;}
.y187_c01178{bottom:197.373333pt;}
.y18b_c01178{bottom:200.453333pt;}
.y189_c01178{bottom:201.213333pt;}
.y184_c01178{bottom:201.986667pt;}
.y17d_c01178{bottom:217.346667pt;}
.y180_c01178{bottom:218.106667pt;}
.y17f_c01178{bottom:218.880000pt;}
.y17e_c01178{bottom:222.720000pt;}
.y181_c01178{bottom:223.493333pt;}
.y182_c01178{bottom:225.026667pt;}
.y183_c01178{bottom:226.560000pt;}
.y17c_c01178{bottom:230.400000pt;}
.y175_c01178{bottom:238.080000pt;}
.y177_c01178{bottom:239.613333pt;}
.y179_c01178{bottom:240.386667pt;}
.y17a_c01178{bottom:241.146667pt;}
.y178_c01178{bottom:242.693333pt;}
.y176_c01178{bottom:244.226667pt;}
.y174_c01178{bottom:245.760000pt;}
.y17b_c01178{bottom:248.826667pt;}
.y173_c01178{bottom:253.440000pt;}
.y16b_c01178{bottom:261.120000pt;}
.y16d_c01178{bottom:262.653333pt;}
.y16e_c01178{bottom:263.426667pt;}
.y16f_c01178{bottom:264.186667pt;}
.y171_c01178{bottom:264.960000pt;}
.y16c_c01178{bottom:268.026667pt;}
.y170_c01178{bottom:269.573333pt;}
.y172_c01178{bottom:271.106667pt;}
.y16a_c01178{bottom:278.013333pt;}
.y164_c01178{bottom:284.933333pt;}
.y163_c01178{bottom:285.693333pt;}
.y162_c01178{bottom:287.226667pt;}
.y165_c01178{bottom:288.000000pt;}
.y166_c01178{bottom:289.533333pt;}
.y168_c01178{bottom:290.306667pt;}
.y161_c01178{bottom:291.066667pt;}
.y167_c01178{bottom:292.613333pt;}
.y169_c01178{bottom:293.373333pt;}
.y159_c01178{bottom:306.426667pt;}
.y194_c01178{bottom:307.973333pt;}
.y158_c01178{bottom:308.733333pt;}
.y15c_c01178{bottom:310.266667pt;}
.y15d_c01178{bottom:311.813333pt;}
.y15b_c01178{bottom:312.573333pt;}
.y15a_c01178{bottom:314.106667pt;}
.y15e_c01178{bottom:316.413333pt;}
.y15f_c01178{bottom:317.186667pt;}
.y160_c01178{bottom:328.706667pt;}
.y152_c01178{bottom:330.240000pt;}
.y154_c01178{bottom:331.013333pt;}
.y151_c01178{bottom:331.773333pt;}
.y153_c01178{bottom:332.546667pt;}
.y155_c01178{bottom:335.613333pt;}
.y150_c01178{bottom:336.386667pt;}
.y156_c01178{bottom:337.920000pt;}
.y157_c01178{bottom:339.453333pt;}
.y193_c01178{bottom:348.666667pt;}
.y14a_c01178{bottom:351.746667pt;}
.y14d_c01178{bottom:352.506667pt;}
.y14c_c01178{bottom:353.280000pt;}
.y14f_c01178{bottom:354.053333pt;}
.y14b_c01178{bottom:354.813333pt;}
.y14e_c01178{bottom:357.120000pt;}
.y149_c01178{bottom:361.733333pt;}
.y192_c01178{bottom:375.546667pt;}
.y142_c01178{bottom:376.320000pt;}
.y144_c01178{bottom:377.093333pt;}
.y148_c01178{bottom:377.853333pt;}
.y147_c01178{bottom:378.626667pt;}
.y141_c01178{bottom:380.160000pt;}
.y140_c01178{bottom:380.933333pt;}
.y143_c01178{bottom:381.693333pt;}
.y145_c01178{bottom:382.466667pt;}
.y146_c01178{bottom:383.226667pt;}
.y139_c01178{bottom:397.826667pt;}
.y13d_c01178{bottom:398.586667pt;}
.y138_c01178{bottom:399.360000pt;}
.y13c_c01178{bottom:400.133333pt;}
.y13a_c01178{bottom:400.893333pt;}
.y13f_c01178{bottom:401.666667pt;}
.y136_c01178{bottom:403.200000pt;}
.y137_c01178{bottom:403.973333pt;}
.y13b_c01178{bottom:404.733333pt;}
.y13e_c01178{bottom:405.506667pt;}
.y191_c01178{bottom:409.346667pt;}
.y133_c01178{bottom:422.400000pt;}
.y134_c01178{bottom:423.173333pt;}
.y132_c01178{bottom:423.933333pt;}
.y135_c01178{bottom:424.706667pt;}
.y12c_c01178{bottom:426.240000pt;}
.y12e_c01178{bottom:427.013333pt;}
.y12d_c01178{bottom:427.773333pt;}
.y131_c01178{bottom:431.613333pt;}
.y130_c01178{bottom:433.920000pt;}
.y12f_c01178{bottom:436.986667pt;}
.y12b_c01178{bottom:443.906667pt;}
.y129_c01178{bottom:445.440000pt;}
.y12a_c01178{bottom:446.213333pt;}
.y125_c01178{bottom:446.973333pt;}
.y126_c01178{bottom:447.746667pt;}
.y128_c01178{bottom:449.280000pt;}
.y127_c01178{bottom:450.053333pt;}
.y11d_c01178{bottom:463.106667pt;}
.y11e_c01178{bottom:465.413333pt;}
.y11f_c01178{bottom:466.173333pt;}
.y11c_c01178{bottom:466.946667pt;}
.y190_c01178{bottom:467.706667pt;}
.y123_c01178{bottom:470.013333pt;}
.y121_c01178{bottom:473.093333pt;}
.y122_c01178{bottom:473.853333pt;}
.y18f_c01178{bottom:475.386667pt;}
.y120_c01178{bottom:480.000000pt;}
.y124_c01178{bottom:485.373333pt;}
.y118_c01178{bottom:486.906667pt;}
.y116_c01178{bottom:487.680000pt;}
.y119_c01178{bottom:489.213333pt;}
.y11b_c01178{bottom:490.746667pt;}
.y117_c01178{bottom:491.520000pt;}
.y11a_c01178{bottom:496.893333pt;}
.y18d_c01178{bottom:503.813333pt;}
.y18c_c01178{bottom:504.573333pt;}
.y10e_c01178{bottom:509.946667pt;}
.y111_c01178{bottom:510.720000pt;}
.y113_c01178{bottom:513.026667pt;}
.y10d_c01178{bottom:513.786667pt;}
.y114_c01178{bottom:514.560000pt;}
.y10c_c01178{bottom:515.333333pt;}
.y10f_c01178{bottom:516.093333pt;}
.y112_c01178{bottom:518.400000pt;}
.y110_c01178{bottom:519.173333pt;}
.y115_c01178{bottom:519.933333pt;}
.y103_c01178{bottom:532.226667pt;}
.y105_c01178{bottom:532.986667pt;}
.y109_c01178{bottom:535.293333pt;}
.y104_c01178{bottom:536.066667pt;}
.y10b_c01178{bottom:536.826667pt;}
.y106_c01178{bottom:537.600000pt;}
.y107_c01178{bottom:539.906667pt;}
.y108_c01178{bottom:540.666667pt;}
.y10a_c01178{bottom:541.440000pt;}
.yfe_c01178{bottom:554.493333pt;}
.yfb_c01178{bottom:556.026667pt;}
.y102_c01178{bottom:557.573333pt;}
.yfd_c01178{bottom:558.333333pt;}
.yfa_c01178{bottom:559.866667pt;}
.yfc_c01178{bottom:560.640000pt;}
.yff_c01178{bottom:561.413333pt;}
.y100_c01178{bottom:562.173333pt;}
.y101_c01178{bottom:562.946667pt;}
.yf2_c01178{bottom:576.000000pt;}
.yf0_c01178{bottom:576.773333pt;}
.yf5_c01178{bottom:579.066667pt;}
.yf3_c01178{bottom:579.840000pt;}
.yf1_c01178{bottom:580.613333pt;}
.yf4_c01178{bottom:582.906667pt;}
.yf7_c01178{bottom:583.680000pt;}
.yf6_c01178{bottom:584.453333pt;}
.yf8_c01178{bottom:585.213333pt;}
.yf9_c01178{bottom:585.986667pt;}
.ye9_c01178{bottom:597.506667pt;}
.ye8_c01178{bottom:598.266667pt;}
.yeb_c01178{bottom:599.040000pt;}
.yea_c01178{bottom:599.813333pt;}
.yef_c01178{bottom:602.106667pt;}
.yec_c01178{bottom:605.186667pt;}
.yee_c01178{bottom:606.720000pt;}
.yed_c01178{bottom:607.493333pt;}
.ye2_c01178{bottom:619.773333pt;}
.ye7_c01178{bottom:621.306667pt;}
.ye5_c01178{bottom:622.853333pt;}
.ye3_c01178{bottom:625.920000pt;}
.ye4_c01178{bottom:626.693333pt;}
.ye6_c01178{bottom:628.226667pt;}
.ydc_c01178{bottom:641.280000pt;}
.yd8_c01178{bottom:642.053333pt;}
.ydd_c01178{bottom:642.813333pt;}
.yde_c01178{bottom:643.586667pt;}
.yda_c01178{bottom:645.120000pt;}
.ydb_c01178{bottom:645.893333pt;}
.ydf_c01178{bottom:648.186667pt;}
.yd9_c01178{bottom:648.960000pt;}
.ye0_c01178{bottom:650.493333pt;}
.ye1_c01178{bottom:651.266667pt;}
.y18e_c01178{bottom:653.573333pt;}
.yd0_c01178{bottom:663.546667pt;}
.yd1_c01178{bottom:664.320000pt;}
.yd3_c01178{bottom:665.093333pt;}
.yd6_c01178{bottom:665.853333pt;}
.yd7_c01178{bottom:666.626667pt;}
.yd2_c01178{bottom:668.933333pt;}
.yd4_c01178{bottom:672.000000pt;}
.yd5_c01178{bottom:672.773333pt;}
.yc8_c01178{bottom:688.133333pt;}
.ycb_c01178{bottom:688.893333pt;}
.yc6_c01178{bottom:689.666667pt;}
.ycc_c01178{bottom:690.426667pt;}
.yc7_c01178{bottom:691.200000pt;}
.yca_c01178{bottom:692.733333pt;}
.yc9_c01178{bottom:693.506667pt;}
.ycd_c01178{bottom:695.040000pt;}
.yce_c01178{bottom:695.813333pt;}
.ycf_c01178{bottom:698.106667pt;}
.ybe_c01178{bottom:708.093333pt;}
.yc2_c01178{bottom:708.866667pt;}
.yc4_c01178{bottom:711.173333pt;}
.yc1_c01178{bottom:711.933333pt;}
.ybf_c01178{bottom:715.013333pt;}
.yc0_c01178{bottom:716.546667pt;}
.yc3_c01178{bottom:717.306667pt;}
.yc5_c01178{bottom:718.080000pt;}
.ybd_c01178{bottom:727.293333pt;}
.yb6_c01178{bottom:731.133333pt;}
.ybb_c01178{bottom:731.906667pt;}
.yb8_c01178{bottom:732.666667pt;}
.ybc_c01178{bottom:733.440000pt;}
.yb7_c01178{bottom:734.973333pt;}
.yb5_c01178{bottom:735.746667pt;}
.yb9_c01178{bottom:738.053333pt;}
.yba_c01178{bottom:738.813333pt;}
.yb0_c01178{bottom:752.640000pt;}
.yaf_c01178{bottom:753.413333pt;}
.yb1_c01178{bottom:754.173333pt;}
.yae_c01178{bottom:755.706667pt;}
.yad_c01178{bottom:758.013333pt;}
.yb4_c01178{bottom:760.320000pt;}
.yb2_c01178{bottom:761.093333pt;}
.yb3_c01178{bottom:761.853333pt;}
.yac_c01178{bottom:764.933333pt;}
.yab_c01178{bottom:768.773333pt;}
.ya6_c01178{bottom:774.146667pt;}
.ya7_c01178{bottom:774.906667pt;}
.ya8_c01178{bottom:776.453333pt;}
.ya9_c01178{bottom:777.986667pt;}
.ya4_c01178{bottom:780.293333pt;}
.ya5_c01178{bottom:781.053333pt;}
.yaa_c01178{bottom:787.200000pt;}
.y9e_c01178{bottom:795.653333pt;}
.y9f_c01178{bottom:797.186667pt;}
.ya2_c01178{bottom:797.946667pt;}
.ya0_c01178{bottom:801.786667pt;}
.ya3_c01178{bottom:804.093333pt;}
.ya1_c01178{bottom:805.626667pt;}
.y97_c01178{bottom:817.920000pt;}
.y99_c01178{bottom:818.693333pt;}
.y9b_c01178{bottom:819.453333pt;}
.y96_c01178{bottom:820.226667pt;}
.y9c_c01178{bottom:820.986667pt;}
.y95_c01178{bottom:822.533333pt;}
.y98_c01178{bottom:824.066667pt;}
.y94_c01178{bottom:824.826667pt;}
.y9a_c01178{bottom:826.373333pt;}
.y9d_c01178{bottom:828.666667pt;}
.y93_c01178{bottom:834.053333pt;}
.y8c_c01178{bottom:839.426667pt;}
.y8d_c01178{bottom:840.186667pt;}
.y8e_c01178{bottom:840.960000pt;}
.y90_c01178{bottom:841.733333pt;}
.y91_c01178{bottom:843.266667pt;}
.y8f_c01178{bottom:844.800000pt;}
.y92_c01178{bottom:845.573333pt;}
.y8b_c01178{bottom:853.253333pt;}
.y84_c01178{bottom:857.853333pt;}
.y85_c01178{bottom:858.626667pt;}
.y87_c01178{bottom:859.386667pt;}
.y88_c01178{bottom:862.466667pt;}
.y86_c01178{bottom:863.226667pt;}
.y89_c01178{bottom:866.306667pt;}
.y8a_c01178{bottom:870.146667pt;}
.y7b_c01178{bottom:883.973333pt;}
.y7e_c01178{bottom:884.733333pt;}
.y80_c01178{bottom:885.506667pt;}
.y83_c01178{bottom:886.266667pt;}
.y7c_c01178{bottom:890.106667pt;}
.y7d_c01178{bottom:890.880000pt;}
.y7f_c01178{bottom:891.653333pt;}
.y81_c01178{bottom:892.413333pt;}
.y82_c01178{bottom:893.186667pt;}
.y75_c01178{bottom:906.240000pt;}
.y7a_c01178{bottom:907.013333pt;}
.y77_c01178{bottom:907.773333pt;}
.y73_c01178{bottom:909.306667pt;}
.y79_c01178{bottom:910.080000pt;}
.y74_c01178{bottom:911.613333pt;}
.y76_c01178{bottom:913.920000pt;}
.y78_c01178{bottom:914.693333pt;}
.y69_c01178{bottom:928.506667pt;}
.y6f_c01178{bottom:930.053333pt;}
.y70_c01178{bottom:930.813333pt;}
.y6a_c01178{bottom:931.586667pt;}
.y71_c01178{bottom:932.346667pt;}
.y6e_c01178{bottom:933.893333pt;}
.y6b_c01178{bottom:934.653333pt;}
.y6c_c01178{bottom:935.426667pt;}
.y6d_c01178{bottom:936.186667pt;}
.y72_c01178{bottom:939.266667pt;}
.y64_c01178{bottom:950.013333pt;}
.y62_c01178{bottom:950.786667pt;}
.y65_c01178{bottom:951.546667pt;}
.y66_c01178{bottom:952.320000pt;}
.y63_c01178{bottom:954.626667pt;}
.y68_c01178{bottom:955.386667pt;}
.y67_c01178{bottom:956.160000pt;}
.y59_c01178{bottom:972.293333pt;}
.y5a_c01178{bottom:973.053333pt;}
.y58_c01178{bottom:973.826667pt;}
.y5e_c01178{bottom:974.586667pt;}
.y5f_c01178{bottom:975.360000pt;}
.y61_c01178{bottom:976.893333pt;}
.y5b_c01178{bottom:977.666667pt;}
.y5d_c01178{bottom:978.426667pt;}
.y57_c01178{bottom:979.200000pt;}
.y5c_c01178{bottom:980.733333pt;}
.y60_c01178{bottom:982.266667pt;}
.y4f_c01178{bottom:994.560000pt;}
.y4d_c01178{bottom:995.333333pt;}
.y51_c01178{bottom:996.866667pt;}
.y56_c01178{bottom:997.626667pt;}
.y55_c01178{bottom:998.400000pt;}
.y52_c01178{bottom:999.933333pt;}
.y4e_c01178{bottom:1000.706667pt;}
.y50_c01178{bottom:1002.240000pt;}
.y53_c01178{bottom:1003.013333pt;}
.y54_c01178{bottom:1003.773333pt;}
.y4a_c01178{bottom:1018.373333pt;}
.y48_c01178{bottom:1019.133333pt;}
.y45_c01178{bottom:1019.906667pt;}
.y46_c01178{bottom:1022.973333pt;}
.y47_c01178{bottom:1023.746667pt;}
.y49_c01178{bottom:1025.280000pt;}
.y4b_c01178{bottom:1026.053333pt;}
.y4c_c01178{bottom:1028.346667pt;}
.y40_c01178{bottom:1039.866667pt;}
.y44_c01178{bottom:1041.413333pt;}
.y3f_c01178{bottom:1044.480000pt;}
.y41_c01178{bottom:1046.013333pt;}
.y42_c01178{bottom:1047.546667pt;}
.y43_c01178{bottom:1048.320000pt;}
.y37_c01178{bottom:1060.613333pt;}
.y38_c01178{bottom:1061.373333pt;}
.y36_c01178{bottom:1062.146667pt;}
.y3c_c01178{bottom:1062.906667pt;}
.y3d_c01178{bottom:1063.680000pt;}
.y3e_c01178{bottom:1065.213333pt;}
.y3a_c01178{bottom:1067.520000pt;}
.y39_c01178{bottom:1068.293333pt;}
.y3b_c01178{bottom:1069.826667pt;}
.y33_c01178{bottom:1075.200000pt;}
.y2d_c01178{bottom:1077.506667pt;}
.y2e_c01178{bottom:1078.266667pt;}
.y30_c01178{bottom:1080.573333pt;}
.y32_c01178{bottom:1082.106667pt;}
.y2c_c01178{bottom:1083.653333pt;}
.y2a_c01178{bottom:1085.946667pt;}
.y2b_c01178{bottom:1086.720000pt;}
.y31_c01178{bottom:1088.253333pt;}
.y2f_c01178{bottom:1091.333333pt;}
.y34_c01178{bottom:1092.093333pt;}
.y35_c01178{bottom:1094.400000pt;}
.y25_c01178{bottom:1105.146667pt;}
.y26_c01178{bottom:1106.693333pt;}
.y27_c01178{bottom:1107.453333pt;}
.y28_c01178{bottom:1108.226667pt;}
.y29_c01178{bottom:1109.760000pt;}
.y24_c01178{bottom:1112.826667pt;}
.y20_c01178{bottom:1128.186667pt;}
.y1f_c01178{bottom:1128.960000pt;}
.y21_c01178{bottom:1129.733333pt;}
.y23_c01178{bottom:1131.266667pt;}
.y1e_c01178{bottom:1132.026667pt;}
.y1d_c01178{bottom:1134.333333pt;}
.y22_c01178{bottom:1135.866667pt;}
.y18_c01178{bottom:1149.693333pt;}
.y17_c01178{bottom:1150.466667pt;}
.y19_c01178{bottom:1151.226667pt;}
.y1a_c01178{bottom:1152.000000pt;}
.y1b_c01178{bottom:1152.773333pt;}
.y1c_c01178{bottom:1159.680000pt;}
.y10_c01178{bottom:1172.733333pt;}
.y13_c01178{bottom:1173.506667pt;}
.y12_c01178{bottom:1174.266667pt;}
.y15_c01178{bottom:1175.040000pt;}
.y11_c01178{bottom:1178.880000pt;}
.y14_c01178{bottom:1179.653333pt;}
.y16_c01178{bottom:1182.720000pt;}
.y9_c01178{bottom:1195.013333pt;}
.yd_c01178{bottom:1195.773333pt;}
.ye_c01178{bottom:1197.306667pt;}
.ya_c01178{bottom:1198.853333pt;}
.yc_c01178{bottom:1199.613333pt;}
.yb_c01178{bottom:1201.920000pt;}
.yf_c01178{bottom:1203.453333pt;}
.y8_c01178{bottom:1208.826667pt;}
.y5_c01178{bottom:1223.426667pt;}
.y7_c01178{bottom:1224.186667pt;}
.y6_c01178{bottom:1224.960000pt;}
.y4_c01178{bottom:1225.733333pt;}
.y3_c01178{bottom:1228.800000pt;}
.y2_c01178{bottom:1269.506667pt;}
.y1_c01178{bottom:1274.880000pt;}
.h4_c01178{height:2.764500pt;}
.h7_c01178{height:4.799479pt;}
.h6_c01178{height:5.519401pt;}
.h9_c01178{height:8.303099pt;}
.h5_c01178{height:11.038802pt;}
.h2_c01178{height:13.822500pt;}
.h19_c01178{height:16.606198pt;}
.h8_c01178{height:19.341901pt;}
.h1f_c01178{height:22.125599pt;}
.h25_c01178{height:24.861302pt;}
.h16_c01178{height:27.645000pt;}
.h22_c01178{height:30.428698pt;}
.h24_c01178{height:33.164401pt;}
.hd_c01178{height:35.948099pt;}
.h27_c01178{height:38.683802pt;}
.h1c_c01178{height:41.467500pt;}
.h3_c01178{height:44.251198pt;}
.h23_c01178{height:46.986901pt;}
.h1a_c01178{height:49.770599pt;}
.h13_c01178{height:52.506302pt;}
.h12_c01178{height:55.290000pt;}
.h1b_c01178{height:58.073698pt;}
.h15_c01178{height:60.809401pt;}
.h10_c01178{height:63.593099pt;}
.h26_c01178{height:66.328802pt;}
.he_c01178{height:69.112500pt;}
.ha_c01178{height:71.896198pt;}
.h18_c01178{height:74.631901pt;}
.h14_c01178{height:77.415599pt;}
.h17_c01178{height:80.151302pt;}
.hb_c01178{height:82.935000pt;}
.h11_c01178{height:85.718698pt;}
.hf_c01178{height:88.454401pt;}
.h1e_c01178{height:91.238099pt;}
.h28_c01178{height:93.973802pt;}
.h1d_c01178{height:96.757500pt;}
.h21_c01178{height:99.541198pt;}
.hc_c01178{height:105.060599pt;}
.h20_c01178{height:110.580000pt;}
.h29_c01178{height:124.402500pt;}
.h1_c01178{height:1345.333333pt;}
.h0_c01178{height:1345.533333pt;}
.w1_c01178{width:946.666667pt;}
.w0_c01178{width:946.946667pt;}
.x0_c01178{left:0.000000pt;}
.x101_c01178{left:109.053333pt;}
.x102_c01178{left:112.893333pt;}
.x9e_c01178{left:146.693333pt;}
.x103_c01178{left:150.533333pt;}
.x9f_c01178{left:157.440000pt;}
.x1_c01178{left:167.426667pt;}
.x2_c01178{left:172.026667pt;}
.x9_c01178{left:173.573333pt;}
.x3a_c01178{left:177.413333pt;}
.x91_c01178{left:184.320000pt;}
.xa8_c01178{left:185.853333pt;}
.x31_c01178{left:188.160000pt;}
.x15_c01178{left:190.466667pt;}
.xa_c01178{left:192.000000pt;}
.x7a_c01178{left:193.533333pt;}
.x3_c01178{left:195.840000pt;}
.xc0_c01178{left:197.373333pt;}
.xc9_c01178{left:198.906667pt;}
.x4d_c01178{left:208.133333pt;}
.x3b_c01178{left:211.200000pt;}
.xfb_c01178{left:213.506667pt;}
.x48_c01178{left:217.346667pt;}
.x3c_c01178{left:219.653333pt;}
.xa0_c01178{left:222.720000pt;}
.xe0_c01178{left:224.253333pt;}
.xcf_c01178{left:226.560000pt;}
.x4e_c01178{left:228.093333pt;}
.x32_c01178{left:230.400000pt;}
.x7b_c01178{left:233.466667pt;}
.x70_c01178{left:235.013333pt;}
.xa9_c01178{left:236.546667pt;}
.xb4_c01178{left:238.080000pt;}
.xca_c01178{left:240.386667pt;}
.x74_c01178{left:243.453333pt;}
.x16_c01178{left:244.986667pt;}
.xad_c01178{left:247.293333pt;}
.x66_c01178{left:249.600000pt;}
.x21_c01178{left:251.133333pt;}
.x49_c01178{left:252.666667pt;}
.x26_c01178{left:254.973333pt;}
.xea_c01178{left:257.280000pt;}
.xf0_c01178{left:259.586667pt;}
.xdc_c01178{left:262.653333pt;}
.x17_c01178{left:264.186667pt;}
.xc3_c01178{left:267.266667pt;}
.xb_c01178{left:269.573333pt;}
.x8b_c01178{left:271.106667pt;}
.x82_c01178{left:274.173333pt;}
.x3d_c01178{left:276.480000pt;}
.x27_c01178{left:279.546667pt;}
.xae_c01178{left:281.853333pt;}
.xe4_c01178{left:285.693333pt;}
.x56_c01178{left:287.226667pt;}
.xb5_c01178{left:291.066667pt;}
.x33_c01178{left:293.373333pt;}
.x4f_c01178{left:295.680000pt;}
.x5e_c01178{left:297.213333pt;}
.x28_c01178{left:301.826667pt;}
.xd0_c01178{left:304.133333pt;}
.x18_c01178{left:307.200000pt;}
.x67_c01178{left:308.733333pt;}
.x83_c01178{left:310.266667pt;}
.xf9_c01178{left:311.813333pt;}
.x7c_c01178{left:313.346667pt;}
.x4a_c01178{left:314.880000pt;}
.x4_c01178{left:316.413333pt;}
.x99_c01178{left:321.026667pt;}
.x19_c01178{left:324.093333pt;}
.x8c_c01178{left:333.306667pt;}
.x5f_c01178{left:334.853333pt;}
.xb9_c01178{left:336.386667pt;}
.xe6_c01178{left:338.693333pt;}
.xc4_c01178{left:340.226667pt;}
.xff_c01178{left:341.760000pt;}
.xbd_c01178{left:343.293333pt;}
.xc_c01178{left:347.133333pt;}
.x57_c01178{left:348.666667pt;}
.x84_c01178{left:350.213333pt;}
.x29_c01178{left:351.746667pt;}
.xc1_c01178{left:353.280000pt;}
.x34_c01178{left:355.586667pt;}
.x68_c01178{left:359.426667pt;}
.xd9_c01178{left:360.960000pt;}
.xaf_c01178{left:364.800000pt;}
.xee_c01178{left:367.106667pt;}
.x1a_c01178{left:370.173333pt;}
.x50_c01178{left:371.706667pt;}
.xd6_c01178{left:374.013333pt;}
.x3e_c01178{left:375.546667pt;}
.x22_c01178{left:377.853333pt;}
.xda_c01178{left:380.160000pt;}
.xcb_c01178{left:381.693333pt;}
.x92_c01178{left:384.000000pt;}
.x60_c01178{left:385.533333pt;}
.xe7_c01178{left:387.066667pt;}
.x58_c01178{left:388.613333pt;}
.x8e_c01178{left:391.680000pt;}
.xd3_c01178{left:397.053333pt;}
.x5_c01178{left:403.973333pt;}
.xdd_c01178{left:406.266667pt;}
.x75_c01178{left:408.573333pt;}
.x69_c01178{left:410.106667pt;}
.x6_c01178{left:411.653333pt;}
.x51_c01178{left:413.186667pt;}
.xa3_c01178{left:414.720000pt;}
.xbe_c01178{left:417.026667pt;}
.x6a_c01178{left:418.560000pt;}
.xd_c01178{left:420.866667pt;}
.x9a_c01178{left:422.400000pt;}
.x71_c01178{left:425.466667pt;}
.xd4_c01178{left:427.773333pt;}
.xde_c01178{left:430.080000pt;}
.x7d_c01178{left:431.613333pt;}
.x76_c01178{left:436.226667pt;}
.x93_c01178{left:437.760000pt;}
.x3f_c01178{left:440.826667pt;}
.xd1_c01178{left:444.666667pt;}
.x85_c01178{left:446.213333pt;}
.x59_c01178{left:450.813333pt;}
.xcc_c01178{left:453.120000pt;}
.xd7_c01178{left:454.653333pt;}
.xba_c01178{left:458.493333pt;}
.x1b_c01178{left:460.026667pt;}
.x40_c01178{left:461.573333pt;}
.xcd_c01178{left:463.866667pt;}
.x23_c01178{left:465.413333pt;}
.x77_c01178{left:466.946667pt;}
.x41_c01178{left:468.480000pt;}
.x35_c01178{left:472.320000pt;}
.xe_c01178{left:476.160000pt;}
.xa4_c01178{left:477.693333pt;}
.xb6_c01178{left:479.226667pt;}
.x86_c01178{left:483.066667pt;}
.xf5_c01178{left:485.373333pt;}
.x7e_c01178{left:486.906667pt;}
.xf1_c01178{left:488.453333pt;}
.xaa_c01178{left:489.986667pt;}
.xdf_c01178{left:491.520000pt;}
.x5a_c01178{left:493.826667pt;}
.x78_c01178{left:498.426667pt;}
.xe1_c01178{left:499.973333pt;}
.x61_c01178{left:502.266667pt;}
.x5b_c01178{left:503.813333pt;}
.xe2_c01178{left:507.653333pt;}
.xf6_c01178{left:509.946667pt;}
.x62_c01178{left:512.253333pt;}
.x42_c01178{left:514.560000pt;}
.x52_c01178{left:516.866667pt;}
.x6b_c01178{left:519.173333pt;}
.x2a_c01178{left:524.546667pt;}
.xb7_c01178{left:527.613333pt;}
.xbb_c01178{left:529.146667pt;}
.xc5_c01178{left:531.453333pt;}
.x63_c01178{left:533.760000pt;}
.xeb_c01178{left:535.293333pt;}
.x7f_c01178{left:536.826667pt;}
.x8f_c01178{left:540.666667pt;}
.xa1_c01178{left:542.213333pt;}
.x7_c01178{left:545.280000pt;}
.x2b_c01178{left:546.813333pt;}
.x36_c01178{left:549.120000pt;}
.x8d_c01178{left:552.186667pt;}
.xf7_c01178{left:553.733333pt;}
.xfc_c01178{left:555.266667pt;}
.xf_c01178{left:556.800000pt;}
.xab_c01178{left:560.640000pt;}
.x43_c01178{left:562.946667pt;}
.x6c_c01178{left:565.253333pt;}
.x64_c01178{left:566.786667pt;}
.x2c_c01178{left:572.160000pt;}
.xfe_c01178{left:573.693333pt;}
.x6d_c01178{left:575.226667pt;}
.x87_c01178{left:577.533333pt;}
.xd2_c01178{left:579.066667pt;}
.xec_c01178{left:582.146667pt;}
.xbf_c01178{left:584.453333pt;}
.x5c_c01178{left:585.986667pt;}
.x1c_c01178{left:587.520000pt;}
.x53_c01178{left:589.053333pt;}
.xf2_c01178{left:592.133333pt;}
.x44_c01178{left:593.666667pt;}
.x100_c01178{left:595.200000pt;}
.xa5_c01178{left:596.733333pt;}
.x9b_c01178{left:599.813333pt;}
.x37_c01178{left:601.346667pt;}
.xc6_c01178{left:603.653333pt;}
.x54_c01178{left:605.186667pt;}
.x96_c01178{left:606.720000pt;}
.x6e_c01178{left:610.560000pt;}
.xce_c01178{left:612.093333pt;}
.xb0_c01178{left:613.626667pt;}
.x65_c01178{left:615.933333pt;}
.x94_c01178{left:618.240000pt;}
.xef_c01178{left:619.773333pt;}
.x1d_c01178{left:621.306667pt;}
.xd8_c01178{left:623.613333pt;}
.xe8_c01178{left:625.146667pt;}
.x10_c01178{left:628.226667pt;}
.x4b_c01178{left:629.760000pt;}
.xfa_c01178{left:631.293333pt;}
.x8_c01178{left:634.373333pt;}
.x2d_c01178{left:637.440000pt;}
.xa6_c01178{left:642.053333pt;}
.x1e_c01178{left:645.120000pt;}
.x55_c01178{left:646.653333pt;}
.x79_c01178{left:652.800000pt;}
.x90_c01178{left:655.866667pt;}
.x1f_c01178{left:659.706667pt;}
.x6f_c01178{left:661.253333pt;}
.x38_c01178{left:663.546667pt;}
.x24_c01178{left:665.093333pt;}
.xb1_c01178{left:667.386667pt;}
.x11_c01178{left:669.693333pt;}
.xd5_c01178{left:672.000000pt;}
.x45_c01178{left:673.533333pt;}
.xdb_c01178{left:675.066667pt;}
.x80_c01178{left:676.613333pt;}
.xc2_c01178{left:681.213333pt;}
.x4c_c01178{left:685.053333pt;}
.xb2_c01178{left:686.586667pt;}
.x88_c01178{left:688.893333pt;}
.xac_c01178{left:690.426667pt;}
.xf8_c01178{left:691.973333pt;}
.x9c_c01178{left:695.040000pt;}
.x89_c01178{left:696.573333pt;}
.x2e_c01178{left:699.653333pt;}
.x9d_c01178{left:701.946667pt;}
.x46_c01178{left:703.493333pt;}
.xb8_c01178{left:705.026667pt;}
.x25_c01178{left:706.560000pt;}
.x39_c01178{left:708.866667pt;}
.xb3_c01178{left:710.400000pt;}
.x2f_c01178{left:711.933333pt;}
.x47_c01178{left:714.240000pt;}
.xe3_c01178{left:715.773333pt;}
.xf3_c01178{left:717.306667pt;}
.x72_c01178{left:719.613333pt;}
.xa7_c01178{left:721.920000pt;}
.xfd_c01178{left:723.453333pt;}
.xe9_c01178{left:724.986667pt;}
.xc7_c01178{left:726.533333pt;}
.x12_c01178{left:728.826667pt;}
.x5d_c01178{left:731.906667pt;}
.x13_c01178{left:734.973333pt;}
.x95_c01178{left:736.506667pt;}
.x73_c01178{left:738.053333pt;}
.xa2_c01178{left:741.120000pt;}
.xbc_c01178{left:744.186667pt;}
.xed_c01178{left:749.573333pt;}
.xe5_c01178{left:752.639400pt;}
.x81_c01178{left:754.946667pt;}
.x8a_c01178{left:758.786667pt;}
.x30_c01178{left:767.226667pt;}
.x20_c01178{left:770.306667pt;}
.x97_c01178{left:773.373333pt;}
.x14_c01178{left:775.680000pt;}
.xc8_c01178{left:777.986667pt;}
.xf4_c01178{left:781.053333pt;}
.x98_c01178{left:783.360000pt;}
.x107_c01178{left:855.546667pt;}
.x105_c01178{left:887.040000pt;}
.x104_c01178{left:907.773333pt;}
.x106_c01178{left:923.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a532a01c37abbe0d695ea483.woff2')format("woff");}.ff1_c01179{font-family:ff1_c01179;line-height:1.109863;font-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_c01179{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m11a_c01179{transform:matrix(0.027350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027350,0.000000,0.000000,0.250000,0,0);}
.mff_c01179{transform:matrix(0.085300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085300,0.000000,0.000000,0.250000,0,0);}
.m1_c01179{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.mde_c01179{transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097500,0.000000,0.000000,0.250000,0,0);}
.mf9_c01179{transform:matrix(0.101800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101800,0.000000,0.000000,0.250000,0,0);}
.mfe_c01179{transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);}
.m11b_c01179{transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);}
.m16_c01179{transform:matrix(0.111300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111300,0.000000,0.000000,0.250000,0,0);}
.me0_c01179{transform:matrix(0.111625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111625,0.000000,0.000000,0.250000,0,0);}
.mf_c01179{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);}
.mdd_c01179{transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);}
.m12_c01179{transform:matrix(0.122450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122450,0.000000,0.000000,0.250000,0,0);}
.m7a_c01179{transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);}
.me1_c01179{transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);}
.m25_c01179{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);}
.m9_c01179{transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);}
.mcb_c01179{transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);}
.m113_c01179{transform:matrix(0.130225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130225,0.000000,0.000000,0.250000,0,0);}
.mf6_c01179{transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);}
.mcc_c01179{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);}
.m70_c01179{transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);}
.me5_c01179{transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);}
.mf2_c01179{transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);}
.mc8_c01179{transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);}
.m99_c01179{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);}
.mda_c01179{transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);}
.m4_c01179{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m14_c01179{transform:matrix(0.145050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145050,0.000000,0.000000,0.250000,0,0);}
.m71_c01179{transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);}
.mdc_c01179{transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);}
.m1c_c01179{transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146900,0.000000,0.000000,0.250000,0,0);}
.m44_c01179{transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);}
.m3a_c01179{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);}
.m6f_c01179{transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);}
.m11_c01179{transform:matrix(0.149575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149575,0.000000,0.000000,0.250000,0,0);}
.m32_c01179{transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);}
.m11c_c01179{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_c01179{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m7e_c01179{transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);}
.ma0_c01179{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);}
.m4a_c01179{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.me2_c01179{transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);}
.m84_c01179{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m26_c01179{transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);}
.m8a_c01179{transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);}
.m18_c01179{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m5a_c01179{transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);}
.mcf_c01179{transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);}
.m68_c01179{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.m89_c01179{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.m6e_c01179{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.m23_c01179{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.m4e_c01179{transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);}
.m78_c01179{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);}
.m69_c01179{transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);}
.mec_c01179{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);}
.m93_c01179{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);}
.mf4_c01179{transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);}
.m52_c01179{transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);}
.m74_c01179{transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);}
.m115_c01179{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.m94_c01179{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.mc5_c01179{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.m66_c01179{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);}
.m33_c01179{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.m1d_c01179{transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);}
.ma1_c01179{transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);}
.m6a_c01179{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);}
.m4c_c01179{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);}
.m5f_c01179{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01179{transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);}
.m73_c01179{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);}
.m77_c01179{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.md5_c01179{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);}
.m79_c01179{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);}
.m5e_c01179{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.mce_c01179{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.ma2_c01179{transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);}
.me6_c01179{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m8d_c01179{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m95_c01179{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.m80_c01179{transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);}
.me4_c01179{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m60_c01179{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);}
.mc7_c01179{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);}
.m10a_c01179{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m8b_c01179{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.ma7_c01179{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);}
.mc4_c01179{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m1e_c01179{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m9b_c01179{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);}
.me3_c01179{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.mc9_c01179{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.me7_c01179{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);}
.mf7_c01179{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m47_c01179{transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);}
.m7d_c01179{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);}
.m56_c01179{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m3_c01179{transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);}
.mc6_c01179{transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);}
.m38_c01179{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);}
.mdf_c01179{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.mfd_c01179{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);}
.m64_c01179{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m41_c01179{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m76_c01179{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);}
.m87_c01179{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mc1_c01179{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m83_c01179{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);}
.mba_c01179{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m61_c01179{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);}
.m9f_c01179{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);}
.mac_c01179{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);}
.m27_c01179{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);}
.m114_c01179{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.mbf_c01179{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m4f_c01179{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m39_c01179{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.maa_c01179{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.med_c01179{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.m63_c01179{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);}
.m35_c01179{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.m45_c01179{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.mfc_c01179{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);}
.ma8_c01179{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.mb2_c01179{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);}
.md8_c01179{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.mc2_c01179{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.m43_c01179{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);}
.m97_c01179{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);}
.m49_c01179{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m40_c01179{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m7b_c01179{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.m7f_c01179{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.mee_c01179{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);}
.md1_c01179{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m54_c01179{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m9e_c01179{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01179{transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);}
.m85_c01179{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);}
.m5d_c01179{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);}
.m3b_c01179{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.maf_c01179{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);}
.m42_c01179{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m6c_c01179{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);}
.mb9_c01179{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);}
.md6_c01179{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);}
.mca_c01179{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.m2_c01179{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);}
.me8_c01179{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.mf1_c01179{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);}
.m108_c01179{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.mb5_c01179{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.m3f_c01179{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);}
.m28_c01179{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);}
.m2f_c01179{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);}
.mb1_c01179{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mae_c01179{transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);}
.m37_c01179{transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);}
.md2_c01179{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);}
.m5c_c01179{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m2a_c01179{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);}
.m98_c01179{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.m82_c01179{transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);}
.m3c_c01179{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.md9_c01179{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);}
.mbe_c01179{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);}
.m1f_c01179{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);}
.mcd_c01179{transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);}
.m75_c01179{transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);}
.m65_c01179{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);}
.md7_c01179{transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);}
.mc3_c01179{transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);}
.mb6_c01179{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);}
.md4_c01179{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m58_c01179{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);}
.m57_c01179{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);}
.m105_c01179{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);}
.m36_c01179{transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);}
.m0_c01179{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);}
.m59_c01179{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_c01179{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);}
.mf5_c01179{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.ma6_c01179{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);}
.m31_c01179{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.m8c_c01179{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);}
.m9d_c01179{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);}
.m2b_c01179{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);}
.m6b_c01179{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);}
.md0_c01179{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.m81_c01179{transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);}
.m10e_c01179{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);}
.mea_c01179{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);}
.m106_c01179{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);}
.mb3_c01179{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);}
.m10d_c01179{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.mf3_c01179{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);}
.m91_c01179{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m29_c01179{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);}
.m96_c01179{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);}
.m86_c01179{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);}
.mbb_c01179{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);}
.m53_c01179{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);}
.ma9_c01179{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.meb_c01179{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m90_c01179{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);}
.me9_c01179{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.mad_c01179{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);}
.m92_c01179{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m4b_c01179{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);}
.mf0_c01179{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb4_c01179{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);}
.m20_c01179{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);}
.m34_c01179{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);}
.ma4_c01179{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);}
.mb0_c01179{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01179{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb8_c01179{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01179{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);}
.m2d_c01179{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c01179{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);}
.m88_c01179{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m67_c01179{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);}
.mb_c01179{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mfa_c01179{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mbc_c01179{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);}
.m3e_c01179{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01179{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);}
.m30_c01179{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);}
.m51_c01179{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c01179{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m118_c01179{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m116_c01179{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);}
.m10b_c01179{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01179{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m110_c01179{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10c_c01179{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);}
.mf8_c01179{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);}
.m17_c01179{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01179{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);}
.m48_c01179{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m46_c01179{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01179{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);}
.mfb_c01179{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.md3_c01179{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb7_c01179{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9a_c01179{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.ma_c01179{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mdb_c01179{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);}
.m62_c01179{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);}
.mc0_c01179{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.md_c01179{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);}
.m15_c01179{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mc_c01179{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m22_c01179{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m10_c01179{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m72_c01179{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);}
.mbd_c01179{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01179{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m107_c01179{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m111_c01179{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m19_c01179{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m50_c01179{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01179{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m103_c01179{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);}
.m2c_c01179{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m24_c01179{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m10f_c01179{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m100_c01179{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m7_c01179{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mef_c01179{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m6_c01179{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mab_c01179{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m21_c01179{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m104_c01179{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m55_c01179{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01179{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m109_c01179{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m101_c01179{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);}
.m9c_c01179{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m119_c01179{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m102_c01179{transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);}
.m117_c01179{transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);}
.m112_c01179{transform:matrix(4.222500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.222500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.222500,0.000000,0.000000,0.250000,0,0);}
.v0_c01179{vertical-align:0.000000px;}
.v1_c01179{vertical-align:3.420000px;}
.ls2_c01179{letter-spacing:0.000000px;}
.ls0_c01179{letter-spacing:88.790400px;}
.ls1_c01179{letter-spacing:285.020833px;}
.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;}
.fs4_c01179{font-size:3.456000px;}
.fs23_c01179{font-size:6.000000px;}
.fs9_c01179{font-size:6.900000px;}
.fs6_c01179{font-size:10.380000px;}
.fs5_c01179{font-size:13.800000px;}
.fs7_c01179{font-size:17.280000px;}
.fs0_c01179{font-size:20.760000px;}
.fs1b_c01179{font-size:24.180000px;}
.fs26_c01179{font-size:27.660000px;}
.fs19_c01179{font-size:31.080000px;}
.fsb_c01179{font-size:34.560000px;}
.fs2_c01179{font-size:38.040000px;}
.fsa_c01179{font-size:41.460000px;}
.fs15_c01179{font-size:44.940000px;}
.fs24_c01179{font-size:48.360000px;}
.fsc_c01179{font-size:51.840000px;}
.fs13_c01179{font-size:55.320000px;}
.fs10_c01179{font-size:58.740000px;}
.fsd_c01179{font-size:62.220000px;}
.fs1e_c01179{font-size:65.640000px;}
.fs18_c01179{font-size:69.120000px;}
.fs8_c01179{font-size:72.600000px;}
.fs16_c01179{font-size:76.020000px;}
.fs21_c01179{font-size:79.500000px;}
.fs1f_c01179{font-size:82.920000px;}
.fs1d_c01179{font-size:86.400000px;}
.fs12_c01179{font-size:89.880000px;}
.fs20_c01179{font-size:93.300000px;}
.fs1a_c01179{font-size:96.780000px;}
.fse_c01179{font-size:100.200000px;}
.fs1c_c01179{font-size:103.680000px;}
.fs22_c01179{font-size:107.160000px;}
.fs14_c01179{font-size:110.580000px;}
.fs17_c01179{font-size:114.060000px;}
.fs25_c01179{font-size:117.480000px;}
.fsf_c01179{font-size:124.440000px;}
.fs11_c01179{font-size:127.860000px;}
.fs1_c01179{font-size:172.800000px;}
.fs27_c01179{font-size:176.280000px;}
.fs3_c01179{font-size:366.360000px;}
.y0_c01179{bottom:0.000000px;}
.y115_c01179{bottom:142.560000px;}
.y114_c01179{bottom:146.880000px;}
.y113_c01179{bottom:152.070000px;}
.y111_c01179{bottom:158.970000px;}
.y112_c01179{bottom:168.480000px;}
.y110_c01179{bottom:316.230000px;}
.y10e_c01179{bottom:345.600000px;}
.y10f_c01179{bottom:366.330000px;}
.yc_c01179{bottom:368.070000px;}
.y10d_c01179{bottom:390.525000px;}
.ye_c01179{bottom:412.995000px;}
.yd_c01179{bottom:416.445000px;}
.y10c_c01179{bottom:420.765000px;}
.y10a_c01179{bottom:521.850000px;}
.y109_c01179{bottom:523.590000px;}
.y10b_c01179{bottom:525.315000px;}
.yb_c01179{bottom:548.640000px;}
.y108_c01179{bottom:557.280000px;}
.y107_c01179{bottom:558.150000px;}
.y105_c01179{bottom:559.005000px;}
.y106_c01179{bottom:559.875000px;}
.y104_c01179{bottom:560.730000px;}
.y102_c01179{bottom:563.325000px;}
.y103_c01179{bottom:568.515000px;}
.y101_c01179{bottom:584.070000px;}
.y100_c01179{bottom:585.795000px;}
.yfe_c01179{bottom:590.970000px;}
.yff_c01179{bottom:591.840000px;}
.yfd_c01179{bottom:592.710000px;}
.yfc_c01179{bottom:593.565000px;}
.yfb_c01179{bottom:594.435000px;}
.yfa_c01179{bottom:595.290000px;}
.yf8_c01179{bottom:612.570000px;}
.yf6_c01179{bottom:613.440000px;}
.yf7_c01179{bottom:614.310000px;}
.yf9_c01179{bottom:622.950000px;}
.yf5_c01179{bottom:634.170000px;}
.yf4_c01179{bottom:641.955000px;}
.yf2_c01179{bottom:644.550000px;}
.yf0_c01179{bottom:645.405000px;}
.yf1_c01179{bottom:646.275000px;}
.yef_c01179{bottom:648.000000px;}
.yf3_c01179{bottom:660.960000px;}
.yeb_c01179{bottom:681.690000px;}
.yea_c01179{bottom:682.560000px;}
.ye1_c01179{bottom:686.010000px;}
.ye5_c01179{bottom:686.880000px;}
.yee_c01179{bottom:688.605000px;}
.yde_c01179{bottom:690.330000px;}
.ye7_c01179{bottom:691.200000px;}
.ye9_c01179{bottom:692.070000px;}
.ye8_c01179{bottom:692.925000px;}
.ydf_c01179{bottom:693.795000px;}
.ye4_c01179{bottom:694.650000px;}
.ye2_c01179{bottom:695.520000px;}
.ye0_c01179{bottom:696.390000px;}
.ye6_c01179{bottom:705.030000px;}
.ye3_c01179{bottom:705.885000px;}
.yec_c01179{bottom:706.755000px;}
.ydc_c01179{bottom:709.350000px;}
.ydb_c01179{bottom:710.205000px;}
.yd9_c01179{bottom:712.800000px;}
.yd6_c01179{bottom:713.670000px;}
.yd5_c01179{bottom:714.525000px;}
.yd7_c01179{bottom:717.120000px;}
.yda_c01179{bottom:719.715000px;}
.yd8_c01179{bottom:720.570000px;}
.ydd_c01179{bottom:730.080000px;}
.yd4_c01179{bottom:734.400000px;}
.yd2_c01179{bottom:737.850000px;}
.yd1_c01179{bottom:739.590000px;}
.yd0_c01179{bottom:743.910000px;}
.yd3_c01179{bottom:744.765000px;}
.ycf_c01179{bottom:746.490000px;}
.ycb_c01179{bottom:756.000000px;}
.ycc_c01179{bottom:756.870000px;}
.yca_c01179{bottom:757.725000px;}
.yc8_c01179{bottom:758.595000px;}
.yce_c01179{bottom:759.450000px;}
.yc9_c01179{bottom:762.915000px;}
.ycd_c01179{bottom:767.235000px;}
.yc6_c01179{bottom:782.790000px;}
.yc0_c01179{bottom:787.110000px;}
.yc1_c01179{bottom:788.835000px;}
.yc7_c01179{bottom:789.690000px;}
.yc5_c01179{bottom:791.430000px;}
.yc4_c01179{bottom:792.285000px;}
.yc3_c01179{bottom:793.155000px;}
.yc2_c01179{bottom:794.010000px;}
.ybe_c01179{bottom:794.880000px;}
.ybf_c01179{bottom:795.750000px;}
.ybd_c01179{bottom:805.245000px;}
.ybc_c01179{bottom:806.970000px;}
.ybb_c01179{bottom:807.840000px;}
.yb9_c01179{bottom:808.710000px;}
.yb5_c01179{bottom:809.565000px;}
.yb7_c01179{bottom:813.885000px;}
.yb8_c01179{bottom:815.610000px;}
.yba_c01179{bottom:817.350000px;}
.yb6_c01179{bottom:819.075000px;}
.y4_c01179{bottom:822.525000px;}
.yb4_c01179{bottom:832.035000px;}
.y8_c01179{bottom:833.760000px;}
.yb3_c01179{bottom:834.630000px;}
.yb1_c01179{bottom:835.485000px;}
.yb2_c01179{bottom:838.950000px;}
.yb0_c01179{bottom:844.995000px;}
.yaf_c01179{bottom:857.085000px;}
.yae_c01179{bottom:858.810000px;}
.yac_c01179{bottom:859.680000px;}
.yaa_c01179{bottom:863.130000px;}
.yad_c01179{bottom:865.725000px;}
.yab_c01179{bottom:868.320000px;}
.ya9_c01179{bottom:870.045000px;}
.ya7_c01179{bottom:883.875000px;}
.ya6_c01179{bottom:884.730000px;}
.ya4_c01179{bottom:885.600000px;}
.ya3_c01179{bottom:886.470000px;}
.ya8_c01179{bottom:887.325000px;}
.y7_c01179{bottom:889.920000px;}
.ya2_c01179{bottom:890.790000px;}
.ya5_c01179{bottom:891.645000px;}
.ya0_c01179{bottom:892.515000px;}
.ya1_c01179{bottom:893.370000px;}
.y6_c01179{bottom:895.965000px;}
.y5_c01179{bottom:898.560000px;}
.y3_c01179{bottom:905.475000px;}
.y9c_c01179{bottom:909.795000px;}
.y9b_c01179{bottom:910.650000px;}
.y9a_c01179{bottom:911.520000px;}
.y9e_c01179{bottom:913.245000px;}
.y97_c01179{bottom:914.115000px;}
.y99_c01179{bottom:914.970000px;}
.y9d_c01179{bottom:917.565000px;}
.y98_c01179{bottom:919.290000px;}
.y9f_c01179{bottom:920.160000px;}
.y95_c01179{bottom:931.395000px;}
.y2_c01179{bottom:933.120000px;}
.y94_c01179{bottom:934.845000px;}
.y93_c01179{bottom:935.715000px;}
.y92_c01179{bottom:940.035000px;}
.y96_c01179{bottom:941.760000px;}
.y91_c01179{bottom:943.485000px;}
.y8e_c01179{bottom:955.590000px;}
.y8d_c01179{bottom:957.315000px;}
.y8b_c01179{bottom:959.040000px;}
.y8c_c01179{bottom:959.910000px;}
.y8a_c01179{bottom:960.765000px;}
.y8f_c01179{bottom:965.085000px;}
.y90_c01179{bottom:967.680000px;}
.y1_c01179{bottom:978.045000px;}
.y86_c01179{bottom:981.510000px;}
.y84_c01179{bottom:983.235000px;}
.y83_c01179{bottom:984.090000px;}
.y82_c01179{bottom:984.960000px;}
.y88_c01179{bottom:988.410000px;}
.y87_c01179{bottom:990.150000px;}
.y89_c01179{bottom:991.875000px;}
.y85_c01179{bottom:992.730000px;}
.y81_c01179{bottom:1006.560000px;}
.y80_c01179{bottom:1007.430000px;}
.y7f_c01179{bottom:1008.285000px;}
.y7c_c01179{bottom:1010.880000px;}
.y7e_c01179{bottom:1014.330000px;}
.y7d_c01179{bottom:1016.070000px;}
.y7b_c01179{bottom:1016.925000px;}
.y7a_c01179{bottom:1030.755000px;}
.y79_c01179{bottom:1032.480000px;}
.y76_c01179{bottom:1033.350000px;}
.y77_c01179{bottom:1034.205000px;}
.y74_c01179{bottom:1037.670000px;}
.y75_c01179{bottom:1039.395000px;}
.y78_c01179{bottom:1041.120000px;}
.y73_c01179{bottom:1055.805000px;}
.y72_c01179{bottom:1056.675000px;}
.y71_c01179{bottom:1059.270000px;}
.y6f_c01179{bottom:1060.995000px;}
.y70_c01179{bottom:1067.040000px;}
.y6d_c01179{bottom:1080.000000px;}
.y6c_c01179{bottom:1082.595000px;}
.y6a_c01179{bottom:1084.320000px;}
.y6b_c01179{bottom:1085.190000px;}
.y6e_c01179{bottom:1086.915000px;}
.y67_c01179{bottom:1105.920000px;}
.y66_c01179{bottom:1106.790000px;}
.y62_c01179{bottom:1107.645000px;}
.y65_c01179{bottom:1108.515000px;}
.y61_c01179{bottom:1109.370000px;}
.y69_c01179{bottom:1111.110000px;}
.y68_c01179{bottom:1113.690000px;}
.y63_c01179{bottom:1115.430000px;}
.y64_c01179{bottom:1116.285000px;}
.yed_c01179{bottom:1120.605000px;}
.ya_c01179{bottom:1121.475000px;}
.y60_c01179{bottom:1131.840000px;}
.y5d_c01179{bottom:1132.710000px;}
.y5b_c01179{bottom:1133.565000px;}
.y5e_c01179{bottom:1136.160000px;}
.y5c_c01179{bottom:1137.885000px;}
.y5f_c01179{bottom:1138.755000px;}
.y9_c01179{bottom:1140.480000px;}
.y5a_c01179{bottom:1141.350000px;}
.y59_c01179{bottom:1156.035000px;}
.y55_c01179{bottom:1157.760000px;}
.y54_c01179{bottom:1158.630000px;}
.y56_c01179{bottom:1159.485000px;}
.y53_c01179{bottom:1160.355000px;}
.y57_c01179{bottom:1162.950000px;}
.y58_c01179{bottom:1163.805000px;}
.y51_c01179{bottom:1181.085000px;}
.y52_c01179{bottom:1181.955000px;}
.y4d_c01179{bottom:1182.810000px;}
.y4f_c01179{bottom:1184.550000px;}
.y4b_c01179{bottom:1186.275000px;}
.y4e_c01179{bottom:1187.130000px;}
.y4c_c01179{bottom:1188.000000px;}
.y50_c01179{bottom:1189.725000px;}
.y4a_c01179{bottom:1191.450000px;}
.y49_c01179{bottom:1205.280000px;}
.y43_c01179{bottom:1208.730000px;}
.y44_c01179{bottom:1209.600000px;}
.y47_c01179{bottom:1211.325000px;}
.y45_c01179{bottom:1212.195000px;}
.y48_c01179{bottom:1214.790000px;}
.y46_c01179{bottom:1215.645000px;}
.y3d_c01179{bottom:1232.070000px;}
.y41_c01179{bottom:1232.925000px;}
.y3a_c01179{bottom:1233.795000px;}
.y3b_c01179{bottom:1234.650000px;}
.y39_c01179{bottom:1235.520000px;}
.y42_c01179{bottom:1237.245000px;}
.y3c_c01179{bottom:1238.115000px;}
.y3f_c01179{bottom:1238.970000px;}
.y3e_c01179{bottom:1239.840000px;}
.y38_c01179{bottom:1241.565000px;}
.y40_c01179{bottom:1250.205000px;}
.y36_c01179{bottom:1256.250000px;}
.y35_c01179{bottom:1257.120000px;}
.y30_c01179{bottom:1257.990000px;}
.y34_c01179{bottom:1258.845000px;}
.y33_c01179{bottom:1259.715000px;}
.y32_c01179{bottom:1260.570000px;}
.y37_c01179{bottom:1263.165000px;}
.y31_c01179{bottom:1265.760000px;}
.y2e_c01179{bottom:1282.170000px;}
.y2d_c01179{bottom:1283.040000px;}
.y2b_c01179{bottom:1283.910000px;}
.y2c_c01179{bottom:1285.635000px;}
.y2f_c01179{bottom:1287.360000px;}
.y29_c01179{bottom:1289.955000px;}
.y2a_c01179{bottom:1290.810000px;}
.y26_c01179{bottom:1304.640000px;}
.y27_c01179{bottom:1305.510000px;}
.y28_c01179{bottom:1306.365000px;}
.y1f_c01179{bottom:1307.235000px;}
.y24_c01179{bottom:1308.090000px;}
.y20_c01179{bottom:1308.960000px;}
.y25_c01179{bottom:1311.555000px;}
.y22_c01179{bottom:1312.410000px;}
.y21_c01179{bottom:1315.005000px;}
.y23_c01179{bottom:1315.875000px;}
.y17_c01179{bottom:1326.240000px;}
.y15_c01179{bottom:1327.965000px;}
.y19_c01179{bottom:1328.835000px;}
.y1e_c01179{bottom:1329.690000px;}
.y14_c01179{bottom:1330.560000px;}
.y1b_c01179{bottom:1332.285000px;}
.y1c_c01179{bottom:1335.750000px;}
.y1d_c01179{bottom:1338.330000px;}
.y18_c01179{bottom:1339.200000px;}
.y16_c01179{bottom:1340.070000px;}
.y1a_c01179{bottom:1341.795000px;}
.y11_c01179{bottom:1361.670000px;}
.y13_c01179{bottom:1363.395000px;}
.y12_c01179{bottom:1370.310000px;}
.yf_c01179{bottom:1377.210000px;}
.y10_c01179{bottom:1382.400000px;}
.h6_c01179{height:3.110063px;}
.h25_c01179{height:5.399414px;}
.hb_c01179{height:6.209326px;}
.h29_c01179{height:6.530063px;}
.h8_c01179{height:9.340986px;}
.h7_c01179{height:12.418652px;}
.h9_c01179{height:15.550313px;}
.h2_c01179{height:18.681973px;}
.h1d_c01179{height:21.759639px;}
.h28_c01179{height:24.891299px;}
.h1b_c01179{height:27.968965px;}
.hd_c01179{height:31.100625px;}
.h4_c01179{height:34.232285px;}
.hc_c01179{height:37.309951px;}
.h17_c01179{height:40.441611px;}
.h26_c01179{height:43.519277px;}
.he_c01179{height:46.650937px;}
.h15_c01179{height:49.782598px;}
.h12_c01179{height:52.860264px;}
.hf_c01179{height:55.991924px;}
.h20_c01179{height:59.069590px;}
.h1a_c01179{height:62.201250px;}
.ha_c01179{height:65.332910px;}
.h18_c01179{height:68.410576px;}
.h23_c01179{height:71.542236px;}
.h21_c01179{height:74.619902px;}
.h1f_c01179{height:77.751563px;}
.h14_c01179{height:80.883223px;}
.h22_c01179{height:83.960889px;}
.h1c_c01179{height:87.092549px;}
.h10_c01179{height:90.170215px;}
.h1e_c01179{height:93.301875px;}
.h24_c01179{height:96.433535px;}
.h16_c01179{height:99.511201px;}
.h19_c01179{height:102.642861px;}
.h27_c01179{height:105.720527px;}
.h11_c01179{height:111.983848px;}
.h13_c01179{height:115.061514px;}
.h3_c01179{height:155.503125px;}
.h2a_c01179{height:158.634785px;}
.h5_c01179{height:329.688223px;}
.h0_c01179{height:1515.450000px;}
.h1_c01179{height:1515.750000px;}
.w1_c01179{width:1086.750000px;}
.w0_c01179{width:1086.915000px;}
.x0_c01179{left:0.000000px;}
.x2_c01179{left:4.320000px;}
.x3_c01179{left:15.555000px;}
.x5_c01179{left:24.195000px;}
.x6_c01179{left:34.560000px;}
.x7_c01179{left:57.885000px;}
.x8_c01179{left:80.355000px;}
.x1_c01179{left:84.675000px;}
.xd9_c01179{left:107.130000px;}
.xdb_c01179{left:120.090000px;}
.xca_c01179{left:138.240000px;}
.xd6_c01179{left:143.430000px;}
.xcb_c01179{left:147.750000px;}
.xda_c01179{left:155.520000px;}
.xd7_c01179{left:167.610000px;}
.x4_c01179{left:170.205000px;}
.xd8_c01179{left:184.034640px;}
.x90_c01179{left:202.170000px;}
.x6d_c01179{left:213.405000px;}
.xb5_c01179{left:217.725000px;}
.x97_c01179{left:221.190000px;}
.x61_c01179{left:222.915000px;}
.x44_c01179{left:224.640000px;}
.x6e_c01179{left:226.365000px;}
.x3a_c01179{left:228.960000px;}
.x30_c01179{left:230.685000px;}
.x26_c01179{left:233.280000px;}
.xe_c01179{left:235.875000px;}
.x98_c01179{left:246.240000px;}
.x3b_c01179{left:251.430000px;}
.x6f_c01179{left:260.925000px;}
.xb1_c01179{left:262.650000px;}
.xa0_c01179{left:266.970000px;}
.xa9_c01179{left:271.290000px;}
.xb2_c01179{left:273.030000px;}
.xf_c01179{left:275.610000px;}
.x4f_c01179{left:277.350000px;}
.x62_c01179{left:280.800000px;}
.x67_c01179{left:285.120000px;}
.x27_c01179{left:288.570000px;}
.x31_c01179{left:290.310000px;}
.x91_c01179{left:297.210000px;}
.x45_c01179{left:303.270000px;}
.x68_c01179{left:304.995000px;}
.x7e_c01179{left:308.445000px;}
.x32_c01179{left:316.230000px;}
.x70_c01179{left:317.955000px;}
.xa7_c01179{left:322.275000px;}
.x83_c01179{left:325.725000px;}
.x99_c01179{left:328.320000px;}
.x5a_c01179{left:330.915000px;}
.x28_c01179{left:332.640000px;}
.xb6_c01179{left:334.365000px;}
.x63_c01179{left:337.830000px;}
.x10_c01179{left:339.555000px;}
.x7a_c01179{left:342.150000px;}
.xcc_c01179{left:346.470000px;}
.x29_c01179{left:355.965000px;}
.x1b_c01179{left:358.560000px;}
.xac_c01179{left:360.285000px;}
.xcd_c01179{left:362.010000px;}
.x3c_c01179{left:365.475000px;}
.x69_c01179{left:367.200000px;}
.x11_c01179{left:370.650000px;}
.x87_c01179{left:374.115000px;}
.xa8_c01179{left:375.840000px;}
.xa1_c01179{left:377.565000px;}
.xce_c01179{left:384.480000px;}
.x75_c01179{left:388.800000px;}
.x92_c01179{left:393.120000px;}
.xbd_c01179{left:394.845000px;}
.x9a_c01179{left:398.310000px;}
.x7f_c01179{left:401.760000px;}
.x1c_c01179{left:403.485000px;}
.x88_c01179{left:406.950000px;}
.xad_c01179{left:408.675000px;}
.xb7_c01179{left:410.400000px;}
.x71_c01179{left:412.125000px;}
.x2a_c01179{left:420.765000px;}
.x3d_c01179{left:426.810000px;}
.xcf_c01179{left:428.550000px;}
.x9b_c01179{left:431.130000px;}
.x49_c01179{left:436.320000px;}
.x80_c01179{left:438.045000px;}
.x64_c01179{left:439.770000px;}
.xb3_c01179{left:444.090000px;}
.x84_c01179{left:448.410000px;}
.x2b_c01179{left:450.150000px;}
.x5b_c01179{left:452.730000px;}
.x46_c01179{left:455.325000px;}
.xbe_c01179{left:457.920000px;}
.x89_c01179{left:460.515000px;}
.x76_c01179{left:469.155000px;}
.xbf_c01179{left:470.880000px;}
.xb8_c01179{left:473.475000px;}
.x12_c01179{left:475.200000px;}
.xa2_c01179{left:476.925000px;}
.x93_c01179{left:478.650000px;}
.x4a_c01179{left:482.115000px;}
.x1d_c01179{left:483.840000px;}
.x33_c01179{left:485.565000px;}
.x9c_c01179{left:488.160000px;}
.x13_c01179{left:490.755000px;}
.x5c_c01179{left:492.480000px;}
.x50_c01179{left:494.205000px;}
.x1e_c01179{left:497.670000px;}
.x2c_c01179{left:508.890000px;}
.xc0_c01179{left:512.355000px;}
.x14_c01179{left:514.950000px;}
.x1f_c01179{left:517.530000px;}
.xc1_c01179{left:521.850000px;}
.x7b_c01179{left:527.040000px;}
.xa3_c01179{left:534.810000px;}
.xc2_c01179{left:536.550000px;}
.x15_c01179{left:539.130000px;}
.xb4_c01179{left:542.595000px;}
.x9_c01179{left:544.320000px;}
.x34_c01179{left:546.915000px;}
.xc3_c01179{left:551.235000px;}
.x77_c01179{left:554.685000px;}
.xb9_c01179{left:557.280000px;}
.xaa_c01179{left:560.730000px;}
.x51_c01179{left:563.325000px;}
.x72_c01179{left:565.920000px;}
.xd4_c01179{left:567.645000px;}
.xa_c01179{left:570.240000px;}
.x94_c01179{left:573.690000px;}
.x5d_c01179{left:579.750000px;}
.xc4_c01179{left:582.330000px;}
.x2d_c01179{left:584.925000px;}
.xba_c01179{left:587.520000px;}
.x8a_c01179{left:590.115000px;}
.x3e_c01179{left:591.840000px;}
.x35_c01179{left:595.290000px;}
.xa4_c01179{left:598.755000px;}
.x8b_c01179{left:600.480000px;}
.x52_c01179{left:603.075000px;}
.xc5_c01179{left:605.670000px;}
.xae_c01179{left:609.120000px;}
.x20_c01179{left:611.715000px;}
.x3f_c01179{left:614.310000px;}
.xc6_c01179{left:616.035000px;}
.xd0_c01179{left:617.760000px;}
.x8c_c01179{left:619.485000px;}
.x16_c01179{left:621.210000px;}
.x78_c01179{left:623.805000px;}
.x21_c01179{left:625.530000px;}
.xc7_c01179{left:629.850000px;}
.x47_c01179{left:633.315000px;}
.x17_c01179{left:635.040000px;}
.x6a_c01179{left:636.765000px;}
.x81_c01179{left:639.360000px;}
.x4b_c01179{left:641.955000px;}
.x54_c01179{left:645.405000px;}
.xaf_c01179{left:648.000000px;}
.x73_c01179{left:652.320000px;}
.x9d_c01179{left:654.045000px;}
.xd5_c01179{left:659.235000px;}
.x2e_c01179{left:664.410000px;}
.xdc_c01179{left:667.005000px;}
.x22_c01179{left:668.730000px;}
.x65_c01179{left:672.195000px;}
.x40_c01179{left:673.920000px;}
.x95_c01179{left:675.645000px;}
.x5e_c01179{left:678.240000px;}
.x8d_c01179{left:679.965000px;}
.xc8_c01179{left:685.155000px;}
.x4c_c01179{left:686.880000px;}
.x55_c01179{left:692.070000px;}
.x48_c01179{left:695.520000px;}
.x36_c01179{left:697.245000px;}
.x56_c01179{left:698.970000px;}
.xab_c01179{left:703.290000px;}
.xd1_c01179{left:705.030000px;}
.x18_c01179{left:710.205000px;}
.x57_c01179{left:716.250000px;}
.x19_c01179{left:720.570000px;}
.xd2_c01179{left:724.035000px;}
.x7c_c01179{left:730.080000px;}
.x85_c01179{left:735.270000px;}
.x37_c01179{left:737.850000px;}
.x5f_c01179{left:741.315000px;}
.x23_c01179{left:743.040000px;}
.x82_c01179{left:747.360000px;}
.x38_c01179{left:750.810000px;}
.x74_c01179{left:752.550000px;}
.x79_c01179{left:756.000000px;}
.x2f_c01179{left:757.725000px;}
.x9e_c01179{left:759.450000px;}
.xa5_c01179{left:763.770000px;}
.x4d_c01179{left:765.510000px;}
.x66_c01179{left:768.960000px;}
.x24_c01179{left:773.280000px;}
.x96_c01179{left:775.005000px;}
.xd3_c01179{left:776.730000px;}
.x41_c01179{left:779.325000px;}
.x42_c01179{left:783.645000px;}
.x6b_c01179{left:786.240000px;}
.xb_c01179{left:792.285000px;}
.xb0_c01179{left:794.880000px;}
.x1a_c01179{left:796.605000px;}
.x58_c01179{left:800.925000px;}
.x39_c01179{left:810.435000px;}
.x4e_c01179{left:812.160000px;}
.xa6_c01179{left:813.885000px;}
.xc_c01179{left:817.350000px;}
.x60_c01179{left:819.075000px;}
.x43_c01179{left:821.670000px;}
.xbb_c01179{left:828.570000px;}
.x9f_c01179{left:834.630000px;}
.x25_c01179{left:836.355000px;}
.x59_c01179{left:838.950000px;}
.xd_c01179{left:843.270000px;}
.x53_c01179{left:845.850000px;}
.x86_c01179{left:854.490000px;}
.x7d_c01179{left:857.085000px;}
.xbc_c01179{left:866.595000px;}
.x8e_c01179{left:868.320000px;}
.x6c_c01179{left:875.235000px;}
.x8f_c01179{left:876.960000px;}
.xc9_c01179{left:938.310000px;}
@media print{
.v0_c01179{vertical-align:0.000000pt;}
.v1_c01179{vertical-align:3.040000pt;}
.ls2_c01179{letter-spacing:0.000000pt;}
.ls0_c01179{letter-spacing:78.924800pt;}
.ls1_c01179{letter-spacing:253.351852pt;}
.ws0_c01179{word-spacing:0.000000pt;}
.fs4_c01179{font-size:3.072000pt;}
.fs23_c01179{font-size:5.333333pt;}
.fs9_c01179{font-size:6.133333pt;}
.fs6_c01179{font-size:9.226667pt;}
.fs5_c01179{font-size:12.266667pt;}
.fs7_c01179{font-size:15.360000pt;}
.fs0_c01179{font-size:18.453333pt;}
.fs1b_c01179{font-size:21.493333pt;}
.fs26_c01179{font-size:24.586667pt;}
.fs19_c01179{font-size:27.626667pt;}
.fsb_c01179{font-size:30.720000pt;}
.fs2_c01179{font-size:33.813333pt;}
.fsa_c01179{font-size:36.853333pt;}
.fs15_c01179{font-size:39.946667pt;}
.fs24_c01179{font-size:42.986667pt;}
.fsc_c01179{font-size:46.080000pt;}
.fs13_c01179{font-size:49.173333pt;}
.fs10_c01179{font-size:52.213333pt;}
.fsd_c01179{font-size:55.306667pt;}
.fs1e_c01179{font-size:58.346667pt;}
.fs18_c01179{font-size:61.440000pt;}
.fs8_c01179{font-size:64.533333pt;}
.fs16_c01179{font-size:67.573333pt;}
.fs21_c01179{font-size:70.666667pt;}
.fs1f_c01179{font-size:73.706667pt;}
.fs1d_c01179{font-size:76.800000pt;}
.fs12_c01179{font-size:79.893333pt;}
.fs20_c01179{font-size:82.933333pt;}
.fs1a_c01179{font-size:86.026667pt;}
.fse_c01179{font-size:89.066667pt;}
.fs1c_c01179{font-size:92.160000pt;}
.fs22_c01179{font-size:95.253333pt;}
.fs14_c01179{font-size:98.293333pt;}
.fs17_c01179{font-size:101.386667pt;}
.fs25_c01179{font-size:104.426667pt;}
.fsf_c01179{font-size:110.613333pt;}
.fs11_c01179{font-size:113.653333pt;}
.fs1_c01179{font-size:153.600000pt;}
.fs27_c01179{font-size:156.693333pt;}
.fs3_c01179{font-size:325.653333pt;}
.y0_c01179{bottom:0.000000pt;}
.y115_c01179{bottom:126.720000pt;}
.y114_c01179{bottom:130.560000pt;}
.y113_c01179{bottom:135.173333pt;}
.y111_c01179{bottom:141.306667pt;}
.y112_c01179{bottom:149.760000pt;}
.y110_c01179{bottom:281.093333pt;}
.y10e_c01179{bottom:307.200000pt;}
.y10f_c01179{bottom:325.626667pt;}
.yc_c01179{bottom:327.173333pt;}
.y10d_c01179{bottom:347.133333pt;}
.ye_c01179{bottom:367.106667pt;}
.yd_c01179{bottom:370.173333pt;}
.y10c_c01179{bottom:374.013333pt;}
.y10a_c01179{bottom:463.866667pt;}
.y109_c01179{bottom:465.413333pt;}
.y10b_c01179{bottom:466.946667pt;}
.yb_c01179{bottom:487.680000pt;}
.y108_c01179{bottom:495.360000pt;}
.y107_c01179{bottom:496.133333pt;}
.y105_c01179{bottom:496.893333pt;}
.y106_c01179{bottom:497.666667pt;}
.y104_c01179{bottom:498.426667pt;}
.y102_c01179{bottom:500.733333pt;}
.y103_c01179{bottom:505.346667pt;}
.y101_c01179{bottom:519.173333pt;}
.y100_c01179{bottom:520.706667pt;}
.yfe_c01179{bottom:525.306667pt;}
.yff_c01179{bottom:526.080000pt;}
.yfd_c01179{bottom:526.853333pt;}
.yfc_c01179{bottom:527.613333pt;}
.yfb_c01179{bottom:528.386667pt;}
.yfa_c01179{bottom:529.146667pt;}
.yf8_c01179{bottom:544.506667pt;}
.yf6_c01179{bottom:545.280000pt;}
.yf7_c01179{bottom:546.053333pt;}
.yf9_c01179{bottom:553.733333pt;}
.yf5_c01179{bottom:563.706667pt;}
.yf4_c01179{bottom:570.626667pt;}
.yf2_c01179{bottom:572.933333pt;}
.yf0_c01179{bottom:573.693333pt;}
.yf1_c01179{bottom:574.466667pt;}
.yef_c01179{bottom:576.000000pt;}
.yf3_c01179{bottom:587.520000pt;}
.yeb_c01179{bottom:605.946667pt;}
.yea_c01179{bottom:606.720000pt;}
.ye1_c01179{bottom:609.786667pt;}
.ye5_c01179{bottom:610.560000pt;}
.yee_c01179{bottom:612.093333pt;}
.yde_c01179{bottom:613.626667pt;}
.ye7_c01179{bottom:614.400000pt;}
.ye9_c01179{bottom:615.173333pt;}
.ye8_c01179{bottom:615.933333pt;}
.ydf_c01179{bottom:616.706667pt;}
.ye4_c01179{bottom:617.466667pt;}
.ye2_c01179{bottom:618.240000pt;}
.ye0_c01179{bottom:619.013333pt;}
.ye6_c01179{bottom:626.693333pt;}
.ye3_c01179{bottom:627.453333pt;}
.yec_c01179{bottom:628.226667pt;}
.ydc_c01179{bottom:630.533333pt;}
.ydb_c01179{bottom:631.293333pt;}
.yd9_c01179{bottom:633.600000pt;}
.yd6_c01179{bottom:634.373333pt;}
.yd5_c01179{bottom:635.133333pt;}
.yd7_c01179{bottom:637.440000pt;}
.yda_c01179{bottom:639.746667pt;}
.yd8_c01179{bottom:640.506667pt;}
.ydd_c01179{bottom:648.960000pt;}
.yd4_c01179{bottom:652.800000pt;}
.yd2_c01179{bottom:655.866667pt;}
.yd1_c01179{bottom:657.413333pt;}
.yd0_c01179{bottom:661.253333pt;}
.yd3_c01179{bottom:662.013333pt;}
.ycf_c01179{bottom:663.546667pt;}
.ycb_c01179{bottom:672.000000pt;}
.ycc_c01179{bottom:672.773333pt;}
.yca_c01179{bottom:673.533333pt;}
.yc8_c01179{bottom:674.306667pt;}
.yce_c01179{bottom:675.066667pt;}
.yc9_c01179{bottom:678.146667pt;}
.ycd_c01179{bottom:681.986667pt;}
.yc6_c01179{bottom:695.813333pt;}
.yc0_c01179{bottom:699.653333pt;}
.yc1_c01179{bottom:701.186667pt;}
.yc7_c01179{bottom:701.946667pt;}
.yc5_c01179{bottom:703.493333pt;}
.yc4_c01179{bottom:704.253333pt;}
.yc3_c01179{bottom:705.026667pt;}
.yc2_c01179{bottom:705.786667pt;}
.ybe_c01179{bottom:706.560000pt;}
.ybf_c01179{bottom:707.333333pt;}
.ybd_c01179{bottom:715.773333pt;}
.ybc_c01179{bottom:717.306667pt;}
.ybb_c01179{bottom:718.080000pt;}
.yb9_c01179{bottom:718.853333pt;}
.yb5_c01179{bottom:719.613333pt;}
.yb7_c01179{bottom:723.453333pt;}
.yb8_c01179{bottom:724.986667pt;}
.yba_c01179{bottom:726.533333pt;}
.yb6_c01179{bottom:728.066667pt;}
.y4_c01179{bottom:731.133333pt;}
.yb4_c01179{bottom:739.586667pt;}
.y8_c01179{bottom:741.120000pt;}
.yb3_c01179{bottom:741.893333pt;}
.yb1_c01179{bottom:742.653333pt;}
.yb2_c01179{bottom:745.733333pt;}
.yb0_c01179{bottom:751.106667pt;}
.yaf_c01179{bottom:761.853333pt;}
.yae_c01179{bottom:763.386667pt;}
.yac_c01179{bottom:764.160000pt;}
.yaa_c01179{bottom:767.226667pt;}
.yad_c01179{bottom:769.533333pt;}
.yab_c01179{bottom:771.840000pt;}
.ya9_c01179{bottom:773.373333pt;}
.ya7_c01179{bottom:785.666667pt;}
.ya6_c01179{bottom:786.426667pt;}
.ya4_c01179{bottom:787.200000pt;}
.ya3_c01179{bottom:787.973333pt;}
.ya8_c01179{bottom:788.733333pt;}
.y7_c01179{bottom:791.040000pt;}
.ya2_c01179{bottom:791.813333pt;}
.ya5_c01179{bottom:792.573333pt;}
.ya0_c01179{bottom:793.346667pt;}
.ya1_c01179{bottom:794.106667pt;}
.y6_c01179{bottom:796.413333pt;}
.y5_c01179{bottom:798.720000pt;}
.y3_c01179{bottom:804.866667pt;}
.y9c_c01179{bottom:808.706667pt;}
.y9b_c01179{bottom:809.466667pt;}
.y9a_c01179{bottom:810.240000pt;}
.y9e_c01179{bottom:811.773333pt;}
.y97_c01179{bottom:812.546667pt;}
.y99_c01179{bottom:813.306667pt;}
.y9d_c01179{bottom:815.613333pt;}
.y98_c01179{bottom:817.146667pt;}
.y9f_c01179{bottom:817.920000pt;}
.y95_c01179{bottom:827.906667pt;}
.y2_c01179{bottom:829.440000pt;}
.y94_c01179{bottom:830.973333pt;}
.y93_c01179{bottom:831.746667pt;}
.y92_c01179{bottom:835.586667pt;}
.y96_c01179{bottom:837.120000pt;}
.y91_c01179{bottom:838.653333pt;}
.y8e_c01179{bottom:849.413333pt;}
.y8d_c01179{bottom:850.946667pt;}
.y8b_c01179{bottom:852.480000pt;}
.y8c_c01179{bottom:853.253333pt;}
.y8a_c01179{bottom:854.013333pt;}
.y8f_c01179{bottom:857.853333pt;}
.y90_c01179{bottom:860.160000pt;}
.y1_c01179{bottom:869.373333pt;}
.y86_c01179{bottom:872.453333pt;}
.y84_c01179{bottom:873.986667pt;}
.y83_c01179{bottom:874.746667pt;}
.y82_c01179{bottom:875.520000pt;}
.y88_c01179{bottom:878.586667pt;}
.y87_c01179{bottom:880.133333pt;}
.y89_c01179{bottom:881.666667pt;}
.y85_c01179{bottom:882.426667pt;}
.y81_c01179{bottom:894.720000pt;}
.y80_c01179{bottom:895.493333pt;}
.y7f_c01179{bottom:896.253333pt;}
.y7c_c01179{bottom:898.560000pt;}
.y7e_c01179{bottom:901.626667pt;}
.y7d_c01179{bottom:903.173333pt;}
.y7b_c01179{bottom:903.933333pt;}
.y7a_c01179{bottom:916.226667pt;}
.y79_c01179{bottom:917.760000pt;}
.y76_c01179{bottom:918.533333pt;}
.y77_c01179{bottom:919.293333pt;}
.y74_c01179{bottom:922.373333pt;}
.y75_c01179{bottom:923.906667pt;}
.y78_c01179{bottom:925.440000pt;}
.y73_c01179{bottom:938.493333pt;}
.y72_c01179{bottom:939.266667pt;}
.y71_c01179{bottom:941.573333pt;}
.y6f_c01179{bottom:943.106667pt;}
.y70_c01179{bottom:948.480000pt;}
.y6d_c01179{bottom:960.000000pt;}
.y6c_c01179{bottom:962.306667pt;}
.y6a_c01179{bottom:963.840000pt;}
.y6b_c01179{bottom:964.613333pt;}
.y6e_c01179{bottom:966.146667pt;}
.y67_c01179{bottom:983.040000pt;}
.y66_c01179{bottom:983.813333pt;}
.y62_c01179{bottom:984.573333pt;}
.y65_c01179{bottom:985.346667pt;}
.y61_c01179{bottom:986.106667pt;}
.y69_c01179{bottom:987.653333pt;}
.y68_c01179{bottom:989.946667pt;}
.y63_c01179{bottom:991.493333pt;}
.y64_c01179{bottom:992.253333pt;}
.yed_c01179{bottom:996.093333pt;}
.ya_c01179{bottom:996.866667pt;}
.y60_c01179{bottom:1006.080000pt;}
.y5d_c01179{bottom:1006.853333pt;}
.y5b_c01179{bottom:1007.613333pt;}
.y5e_c01179{bottom:1009.920000pt;}
.y5c_c01179{bottom:1011.453333pt;}
.y5f_c01179{bottom:1012.226667pt;}
.y9_c01179{bottom:1013.760000pt;}
.y5a_c01179{bottom:1014.533333pt;}
.y59_c01179{bottom:1027.586667pt;}
.y55_c01179{bottom:1029.120000pt;}
.y54_c01179{bottom:1029.893333pt;}
.y56_c01179{bottom:1030.653333pt;}
.y53_c01179{bottom:1031.426667pt;}
.y57_c01179{bottom:1033.733333pt;}
.y58_c01179{bottom:1034.493333pt;}
.y51_c01179{bottom:1049.853333pt;}
.y52_c01179{bottom:1050.626667pt;}
.y4d_c01179{bottom:1051.386667pt;}
.y4f_c01179{bottom:1052.933333pt;}
.y4b_c01179{bottom:1054.466667pt;}
.y4e_c01179{bottom:1055.226667pt;}
.y4c_c01179{bottom:1056.000000pt;}
.y50_c01179{bottom:1057.533333pt;}
.y4a_c01179{bottom:1059.066667pt;}
.y49_c01179{bottom:1071.360000pt;}
.y43_c01179{bottom:1074.426667pt;}
.y44_c01179{bottom:1075.200000pt;}
.y47_c01179{bottom:1076.733333pt;}
.y45_c01179{bottom:1077.506667pt;}
.y48_c01179{bottom:1079.813333pt;}
.y46_c01179{bottom:1080.573333pt;}
.y3d_c01179{bottom:1095.173333pt;}
.y41_c01179{bottom:1095.933333pt;}
.y3a_c01179{bottom:1096.706667pt;}
.y3b_c01179{bottom:1097.466667pt;}
.y39_c01179{bottom:1098.240000pt;}
.y42_c01179{bottom:1099.773333pt;}
.y3c_c01179{bottom:1100.546667pt;}
.y3f_c01179{bottom:1101.306667pt;}
.y3e_c01179{bottom:1102.080000pt;}
.y38_c01179{bottom:1103.613333pt;}
.y40_c01179{bottom:1111.293333pt;}
.y36_c01179{bottom:1116.666667pt;}
.y35_c01179{bottom:1117.440000pt;}
.y30_c01179{bottom:1118.213333pt;}
.y34_c01179{bottom:1118.973333pt;}
.y33_c01179{bottom:1119.746667pt;}
.y32_c01179{bottom:1120.506667pt;}
.y37_c01179{bottom:1122.813333pt;}
.y31_c01179{bottom:1125.120000pt;}
.y2e_c01179{bottom:1139.706667pt;}
.y2d_c01179{bottom:1140.480000pt;}
.y2b_c01179{bottom:1141.253333pt;}
.y2c_c01179{bottom:1142.786667pt;}
.y2f_c01179{bottom:1144.320000pt;}
.y29_c01179{bottom:1146.626667pt;}
.y2a_c01179{bottom:1147.386667pt;}
.y26_c01179{bottom:1159.680000pt;}
.y27_c01179{bottom:1160.453333pt;}
.y28_c01179{bottom:1161.213333pt;}
.y1f_c01179{bottom:1161.986667pt;}
.y24_c01179{bottom:1162.746667pt;}
.y20_c01179{bottom:1163.520000pt;}
.y25_c01179{bottom:1165.826667pt;}
.y22_c01179{bottom:1166.586667pt;}
.y21_c01179{bottom:1168.893333pt;}
.y23_c01179{bottom:1169.666667pt;}
.y17_c01179{bottom:1178.880000pt;}
.y15_c01179{bottom:1180.413333pt;}
.y19_c01179{bottom:1181.186667pt;}
.y1e_c01179{bottom:1181.946667pt;}
.y14_c01179{bottom:1182.720000pt;}
.y1b_c01179{bottom:1184.253333pt;}
.y1c_c01179{bottom:1187.333333pt;}
.y1d_c01179{bottom:1189.626667pt;}
.y18_c01179{bottom:1190.400000pt;}
.y16_c01179{bottom:1191.173333pt;}
.y1a_c01179{bottom:1192.706667pt;}
.y11_c01179{bottom:1210.373333pt;}
.y13_c01179{bottom:1211.906667pt;}
.y12_c01179{bottom:1218.053333pt;}
.yf_c01179{bottom:1224.186667pt;}
.y10_c01179{bottom:1228.800000pt;}
.h6_c01179{height:2.764500pt;}
.h25_c01179{height:4.799479pt;}
.hb_c01179{height:5.519401pt;}
.h29_c01179{height:5.804500pt;}
.h8_c01179{height:8.303099pt;}
.h7_c01179{height:11.038802pt;}
.h9_c01179{height:13.822500pt;}
.h2_c01179{height:16.606198pt;}
.h1d_c01179{height:19.341901pt;}
.h28_c01179{height:22.125599pt;}
.h1b_c01179{height:24.861302pt;}
.hd_c01179{height:27.645000pt;}
.h4_c01179{height:30.428698pt;}
.hc_c01179{height:33.164401pt;}
.h17_c01179{height:35.948099pt;}
.h26_c01179{height:38.683802pt;}
.he_c01179{height:41.467500pt;}
.h15_c01179{height:44.251198pt;}
.h12_c01179{height:46.986901pt;}
.hf_c01179{height:49.770599pt;}
.h20_c01179{height:52.506302pt;}
.h1a_c01179{height:55.290000pt;}
.ha_c01179{height:58.073698pt;}
.h18_c01179{height:60.809401pt;}
.h23_c01179{height:63.593099pt;}
.h21_c01179{height:66.328802pt;}
.h1f_c01179{height:69.112500pt;}
.h14_c01179{height:71.896198pt;}
.h22_c01179{height:74.631901pt;}
.h1c_c01179{height:77.415599pt;}
.h10_c01179{height:80.151302pt;}
.h1e_c01179{height:82.935000pt;}
.h24_c01179{height:85.718698pt;}
.h16_c01179{height:88.454401pt;}
.h19_c01179{height:91.238099pt;}
.h27_c01179{height:93.973802pt;}
.h11_c01179{height:99.541198pt;}
.h13_c01179{height:102.276901pt;}
.h3_c01179{height:138.225000pt;}
.h2a_c01179{height:141.008698pt;}
.h5_c01179{height:293.056198pt;}
.h0_c01179{height:1347.066667pt;}
.h1_c01179{height:1347.333333pt;}
.w1_c01179{width:966.000000pt;}
.w0_c01179{width:966.146667pt;}
.x0_c01179{left:0.000000pt;}
.x2_c01179{left:3.840000pt;}
.x3_c01179{left:13.826667pt;}
.x5_c01179{left:21.506667pt;}
.x6_c01179{left:30.720000pt;}
.x7_c01179{left:51.453333pt;}
.x8_c01179{left:71.426667pt;}
.x1_c01179{left:75.266667pt;}
.xd9_c01179{left:95.226667pt;}
.xdb_c01179{left:106.746667pt;}
.xca_c01179{left:122.880000pt;}
.xd6_c01179{left:127.493333pt;}
.xcb_c01179{left:131.333333pt;}
.xda_c01179{left:138.240000pt;}
.xd7_c01179{left:148.986667pt;}
.x4_c01179{left:151.293333pt;}
.xd8_c01179{left:163.586347pt;}
.x90_c01179{left:179.706667pt;}
.x6d_c01179{left:189.693333pt;}
.xb5_c01179{left:193.533333pt;}
.x97_c01179{left:196.613333pt;}
.x61_c01179{left:198.146667pt;}
.x44_c01179{left:199.680000pt;}
.x6e_c01179{left:201.213333pt;}
.x3a_c01179{left:203.520000pt;}
.x30_c01179{left:205.053333pt;}
.x26_c01179{left:207.360000pt;}
.xe_c01179{left:209.666667pt;}
.x98_c01179{left:218.880000pt;}
.x3b_c01179{left:223.493333pt;}
.x6f_c01179{left:231.933333pt;}
.xb1_c01179{left:233.466667pt;}
.xa0_c01179{left:237.306667pt;}
.xa9_c01179{left:241.146667pt;}
.xb2_c01179{left:242.693333pt;}
.xf_c01179{left:244.986667pt;}
.x4f_c01179{left:246.533333pt;}
.x62_c01179{left:249.600000pt;}
.x67_c01179{left:253.440000pt;}
.x27_c01179{left:256.506667pt;}
.x31_c01179{left:258.053333pt;}
.x91_c01179{left:264.186667pt;}
.x45_c01179{left:269.573333pt;}
.x68_c01179{left:271.106667pt;}
.x7e_c01179{left:274.173333pt;}
.x32_c01179{left:281.093333pt;}
.x70_c01179{left:282.626667pt;}
.xa7_c01179{left:286.466667pt;}
.x83_c01179{left:289.533333pt;}
.x99_c01179{left:291.840000pt;}
.x5a_c01179{left:294.146667pt;}
.x28_c01179{left:295.680000pt;}
.xb6_c01179{left:297.213333pt;}
.x63_c01179{left:300.293333pt;}
.x10_c01179{left:301.826667pt;}
.x7a_c01179{left:304.133333pt;}
.xcc_c01179{left:307.973333pt;}
.x29_c01179{left:316.413333pt;}
.x1b_c01179{left:318.720000pt;}
.xac_c01179{left:320.253333pt;}
.xcd_c01179{left:321.786667pt;}
.x3c_c01179{left:324.866667pt;}
.x69_c01179{left:326.400000pt;}
.x11_c01179{left:329.466667pt;}
.x87_c01179{left:332.546667pt;}
.xa8_c01179{left:334.080000pt;}
.xa1_c01179{left:335.613333pt;}
.xce_c01179{left:341.760000pt;}
.x75_c01179{left:345.600000pt;}
.x92_c01179{left:349.440000pt;}
.xbd_c01179{left:350.973333pt;}
.x9a_c01179{left:354.053333pt;}
.x7f_c01179{left:357.120000pt;}
.x1c_c01179{left:358.653333pt;}
.x88_c01179{left:361.733333pt;}
.xad_c01179{left:363.266667pt;}
.xb7_c01179{left:364.800000pt;}
.x71_c01179{left:366.333333pt;}
.x2a_c01179{left:374.013333pt;}
.x3d_c01179{left:379.386667pt;}
.xcf_c01179{left:380.933333pt;}
.x9b_c01179{left:383.226667pt;}
.x49_c01179{left:387.840000pt;}
.x80_c01179{left:389.373333pt;}
.x64_c01179{left:390.906667pt;}
.xb3_c01179{left:394.746667pt;}
.x84_c01179{left:398.586667pt;}
.x2b_c01179{left:400.133333pt;}
.x5b_c01179{left:402.426667pt;}
.x46_c01179{left:404.733333pt;}
.xbe_c01179{left:407.040000pt;}
.x89_c01179{left:409.346667pt;}
.x76_c01179{left:417.026667pt;}
.xbf_c01179{left:418.560000pt;}
.xb8_c01179{left:420.866667pt;}
.x12_c01179{left:422.400000pt;}
.xa2_c01179{left:423.933333pt;}
.x93_c01179{left:425.466667pt;}
.x4a_c01179{left:428.546667pt;}
.x1d_c01179{left:430.080000pt;}
.x33_c01179{left:431.613333pt;}
.x9c_c01179{left:433.920000pt;}
.x13_c01179{left:436.226667pt;}
.x5c_c01179{left:437.760000pt;}
.x50_c01179{left:439.293333pt;}
.x1e_c01179{left:442.373333pt;}
.x2c_c01179{left:452.346667pt;}
.xc0_c01179{left:455.426667pt;}
.x14_c01179{left:457.733333pt;}
.x1f_c01179{left:460.026667pt;}
.xc1_c01179{left:463.866667pt;}
.x7b_c01179{left:468.480000pt;}
.xa3_c01179{left:475.386667pt;}
.xc2_c01179{left:476.933333pt;}
.x15_c01179{left:479.226667pt;}
.xb4_c01179{left:482.306667pt;}
.x9_c01179{left:483.840000pt;}
.x34_c01179{left:486.146667pt;}
.xc3_c01179{left:489.986667pt;}
.x77_c01179{left:493.053333pt;}
.xb9_c01179{left:495.360000pt;}
.xaa_c01179{left:498.426667pt;}
.x51_c01179{left:500.733333pt;}
.x72_c01179{left:503.040000pt;}
.xd4_c01179{left:504.573333pt;}
.xa_c01179{left:506.880000pt;}
.x94_c01179{left:509.946667pt;}
.x5d_c01179{left:515.333333pt;}
.xc4_c01179{left:517.626667pt;}
.x2d_c01179{left:519.933333pt;}
.xba_c01179{left:522.240000pt;}
.x8a_c01179{left:524.546667pt;}
.x3e_c01179{left:526.080000pt;}
.x35_c01179{left:529.146667pt;}
.xa4_c01179{left:532.226667pt;}
.x8b_c01179{left:533.760000pt;}
.x52_c01179{left:536.066667pt;}
.xc5_c01179{left:538.373333pt;}
.xae_c01179{left:541.440000pt;}
.x20_c01179{left:543.746667pt;}
.x3f_c01179{left:546.053333pt;}
.xc6_c01179{left:547.586667pt;}
.xd0_c01179{left:549.120000pt;}
.x8c_c01179{left:550.653333pt;}
.x16_c01179{left:552.186667pt;}
.x78_c01179{left:554.493333pt;}
.x21_c01179{left:556.026667pt;}
.xc7_c01179{left:559.866667pt;}
.x47_c01179{left:562.946667pt;}
.x17_c01179{left:564.480000pt;}
.x6a_c01179{left:566.013333pt;}
.x81_c01179{left:568.320000pt;}
.x4b_c01179{left:570.626667pt;}
.x54_c01179{left:573.693333pt;}
.xaf_c01179{left:576.000000pt;}
.x73_c01179{left:579.840000pt;}
.x9d_c01179{left:581.373333pt;}
.xd5_c01179{left:585.986667pt;}
.x2e_c01179{left:590.586667pt;}
.xdc_c01179{left:592.893333pt;}
.x22_c01179{left:594.426667pt;}
.x65_c01179{left:597.506667pt;}
.x40_c01179{left:599.040000pt;}
.x95_c01179{left:600.573333pt;}
.x5e_c01179{left:602.880000pt;}
.x8d_c01179{left:604.413333pt;}
.xc8_c01179{left:609.026667pt;}
.x4c_c01179{left:610.560000pt;}
.x55_c01179{left:615.173333pt;}
.x48_c01179{left:618.240000pt;}
.x36_c01179{left:619.773333pt;}
.x56_c01179{left:621.306667pt;}
.xab_c01179{left:625.146667pt;}
.xd1_c01179{left:626.693333pt;}
.x18_c01179{left:631.293333pt;}
.x57_c01179{left:636.666667pt;}
.x19_c01179{left:640.506667pt;}
.xd2_c01179{left:643.586667pt;}
.x7c_c01179{left:648.960000pt;}
.x85_c01179{left:653.573333pt;}
.x37_c01179{left:655.866667pt;}
.x5f_c01179{left:658.946667pt;}
.x23_c01179{left:660.480000pt;}
.x82_c01179{left:664.320000pt;}
.x38_c01179{left:667.386667pt;}
.x74_c01179{left:668.933333pt;}
.x79_c01179{left:672.000000pt;}
.x2f_c01179{left:673.533333pt;}
.x9e_c01179{left:675.066667pt;}
.xa5_c01179{left:678.906667pt;}
.x4d_c01179{left:680.453333pt;}
.x66_c01179{left:683.520000pt;}
.x24_c01179{left:687.360000pt;}
.x96_c01179{left:688.893333pt;}
.xd3_c01179{left:690.426667pt;}
.x41_c01179{left:692.733333pt;}
.x42_c01179{left:696.573333pt;}
.x6b_c01179{left:698.880000pt;}
.xb_c01179{left:704.253333pt;}
.xb0_c01179{left:706.560000pt;}
.x1a_c01179{left:708.093333pt;}
.x58_c01179{left:711.933333pt;}
.x39_c01179{left:720.386667pt;}
.x4e_c01179{left:721.920000pt;}
.xa6_c01179{left:723.453333pt;}
.xc_c01179{left:726.533333pt;}
.x60_c01179{left:728.066667pt;}
.x43_c01179{left:730.373333pt;}
.xbb_c01179{left:736.506667pt;}
.x9f_c01179{left:741.893333pt;}
.x25_c01179{left:743.426667pt;}
.x59_c01179{left:745.733333pt;}
.xd_c01179{left:749.573333pt;}
.x53_c01179{left:751.866667pt;}
.x86_c01179{left:759.546667pt;}
.x7d_c01179{left:761.853333pt;}
.xbc_c01179{left:770.306667pt;}
.x8e_c01179{left:771.840000pt;}
.x6c_c01179{left:777.986667pt;}
.x8f_c01179{left:779.520000pt;}
.xc9_c01179{left:834.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4ab8ecd488f6663703bd1945.woff2')format("woff");}.ff1_c01180{font-family:ff1_c01180;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m39_c01180{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.mc_c01180{transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);}
.m20_c01180{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m19_c01180{transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);}
.m2_c01180{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);}
.m3_c01180{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);}
.m34_c01180{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m32_c01180{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m2d_c01180{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m30_c01180{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01180{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);}
.m31_c01180{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m2a_c01180{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);}
.m3a_c01180{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);}
.m33_c01180{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m10_c01180{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m29_c01180{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);}
.me_c01180{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.m2e_c01180{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);}
.md_c01180{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);}
.m23_c01180{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);}
.m16_c01180{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);}
.m38_c01180{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);}
.m2b_c01180{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.m1d_c01180{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);}
.m1b_c01180{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);}
.m0_c01180{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6_c01180{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);}
.mf_c01180{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c01180{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);}
.m4_c01180{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m21_c01180{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01180{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m28_c01180{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);}
.m8_c01180{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);}
.m12_c01180{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c01180{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01180{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m11_c01180{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m24_c01180{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01180{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_c01180{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);}
.m25_c01180{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01180{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1_c01180{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);}
.m14_c01180{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m22_c01180{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m17_c01180{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mb_c01180{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);}
.m3b_c01180{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01180{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m18_c01180{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m36_c01180{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m37_c01180{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m9_c01180{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m35_c01180{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c01180{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m26_c01180{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01180{transform:matrix(1.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.265000,0.000000,0.000000,0.250000,0,0);}
.m27_c01180{transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);}
.v1_c01180{vertical-align:-3.480000px;}
.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:-26.948400px;}
.ws1_c01180{word-spacing:0.000000px;}
.fc0_c01180{color:transparent;}
.fs19_c01180{font-size:3.456000px;}
.fs1a_c01180{font-size:6.900000px;}
.fs1b_c01180{font-size:10.380000px;}
.fs5_c01180{font-size:13.800000px;}
.fs1e_c01180{font-size:17.280000px;}
.fs1f_c01180{font-size:24.180000px;}
.fs1c_c01180{font-size:34.560000px;}
.fs15_c01180{font-size:58.740000px;}
.fs14_c01180{font-size:65.640000px;}
.fs11_c01180{font-size:69.120000px;}
.fs13_c01180{font-size:72.600000px;}
.fs1d_c01180{font-size:76.020000px;}
.fs10_c01180{font-size:79.500000px;}
.fs17_c01180{font-size:82.920000px;}
.fs12_c01180{font-size:86.400000px;}
.fs0_c01180{font-size:89.880000px;}
.fs18_c01180{font-size:93.300000px;}
.fs1_c01180{font-size:96.780000px;}
.fsd_c01180{font-size:100.200000px;}
.fsc_c01180{font-size:103.680000px;}
.fse_c01180{font-size:107.160000px;}
.fs2_c01180{font-size:110.580000px;}
.fsf_c01180{font-size:114.060000px;}
.fs4_c01180{font-size:120.960000px;}
.fs3_c01180{font-size:124.440000px;}
.fs16_c01180{font-size:127.860000px;}
.fs6_c01180{font-size:162.420000px;}
.fs8_c01180{font-size:165.900000px;}
.fs9_c01180{font-size:169.320000px;}
.fs7_c01180{font-size:172.800000px;}
.fsb_c01180{font-size:176.280000px;}
.fsa_c01180{font-size:186.600000px;}
.y0_c01180{bottom:0.000000px;}
.y2f_c01180{bottom:717.120000px;}
.y30_c01180{bottom:718.845000px;}
.y2a_c01180{bottom:773.280000px;}
.y28_c01180{bottom:775.875000px;}
.y29_c01180{bottom:776.730000px;}
.y26_c01180{bottom:790.560000px;}
.y27_c01180{bottom:797.475000px;}
.y22_c01180{bottom:813.885000px;}
.y24_c01180{bottom:815.610000px;}
.y25_c01180{bottom:819.075000px;}
.y23_c01180{bottom:822.525000px;}
.y21_c01180{bottom:835.485000px;}
.y1c_c01180{bottom:838.080000px;}
.y1f_c01180{bottom:840.675000px;}
.y1d_c01180{bottom:845.850000px;}
.y1e_c01180{bottom:846.720000px;}
.y20_c01180{bottom:847.590000px;}
.y19_c01180{bottom:868.320000px;}
.y1b_c01180{bottom:869.190000px;}
.y1a_c01180{bottom:870.915000px;}
.y14_c01180{bottom:896.835000px;}
.y15_c01180{bottom:897.690000px;}
.y18_c01180{bottom:898.560000px;}
.y17_c01180{bottom:925.350000px;}
.y16_c01180{bottom:926.205000px;}
.y13_c01180{bottom:939.165000px;}
.y2e_c01180{bottom:970.275000px;}
.y2c_c01180{bottom:971.130000px;}
.y2d_c01180{bottom:973.725000px;}
.y12_c01180{bottom:986.685000px;}
.y11_c01180{bottom:1040.250000px;}
.yf_c01180{bottom:1041.990000px;}
.y10_c01180{bottom:1042.845000px;}
.y2b_c01180{bottom:1067.910000px;}
.yc_c01180{bottom:1080.870000px;}
.yb_c01180{bottom:1082.595000px;}
.ye_c01180{bottom:1083.450000px;}
.yd_c01180{bottom:1084.320000px;}
.y6_c01180{bottom:1130.115000px;}
.y8_c01180{bottom:1130.970000px;}
.y5_c01180{bottom:1131.840000px;}
.y7_c01180{bottom:1132.710000px;}
.y9_c01180{bottom:1133.565000px;}
.ya_c01180{bottom:1134.435000px;}
.y4_c01180{bottom:1181.085000px;}
.y3_c01180{bottom:1188.870000px;}
.y2_c01180{bottom:1191.450000px;}
.y1_c01180{bottom:1195.770000px;}
.h1a_c01180{height:3.110063px;}
.h1b_c01180{height:6.209326px;}
.h1c_c01180{height:9.340986px;}
.h7_c01180{height:12.418652px;}
.h1f_c01180{height:15.550313px;}
.h20_c01180{height:21.759639px;}
.h1d_c01180{height:31.100625px;}
.h16_c01180{height:52.860264px;}
.h15_c01180{height:59.069590px;}
.h12_c01180{height:62.201250px;}
.h14_c01180{height:65.332910px;}
.h1e_c01180{height:68.410576px;}
.h11_c01180{height:71.542236px;}
.h18_c01180{height:74.619902px;}
.h13_c01180{height:77.751563px;}
.h2_c01180{height:80.883223px;}
.h19_c01180{height:83.960889px;}
.h3_c01180{height:87.092549px;}
.he_c01180{height:90.170215px;}
.hd_c01180{height:93.301875px;}
.hf_c01180{height:96.433535px;}
.h4_c01180{height:99.511201px;}
.h10_c01180{height:102.642861px;}
.h6_c01180{height:108.852188px;}
.h5_c01180{height:111.983848px;}
.h17_c01180{height:115.061514px;}
.h8_c01180{height:146.162139px;}
.ha_c01180{height:149.293799px;}
.h9_c01180{height:155.503125px;}
.hc_c01180{height:158.634785px;}
.hb_c01180{height:167.921777px;}
.h1_c01180{height:1513.500000px;}
.h0_c01180{height:1513.725000px;}
.w1_c01180{width:1065.000000px;}
.w0_c01180{width:1065.315000px;}
.x0_c01180{left:0.000000px;}
.x2b_c01180{left:211.680000px;}
.x7_c01180{left:220.320000px;}
.x30_c01180{left:225.510000px;}
.x34_c01180{left:240.195000px;}
.x31_c01180{left:241.920000px;}
.x2c_c01180{left:244.515000px;}
.x28_c01180{left:254.880000px;}
.xf_c01180{left:263.520000px;}
.x8_c01180{left:267.840000px;}
.x10_c01180{left:296.355000px;}
.x35_c01180{left:304.995000px;}
.x32_c01180{left:308.445000px;}
.x1e_c01180{left:311.910000px;}
.x9_c01180{left:328.320000px;}
.x11_c01180{left:335.235000px;}
.x36_c01180{left:349.050000px;}
.x29_c01180{left:351.645000px;}
.x1f_c01180{left:365.475000px;}
.x2d_c01180{left:368.925000px;}
.x37_c01180{left:374.115000px;}
.x20_c01180{left:390.525000px;}
.x38_c01180{left:406.080000px;}
.x18_c01180{left:407.805000px;}
.x1_c01180{left:416.445000px;}
.x21_c01180{left:419.040000px;}
.x2e_c01180{left:429.405000px;}
.x33_c01180{left:443.235000px;}
.x2a_c01180{left:457.920000px;}
.x2_c01180{left:461.370000px;}
.x2f_c01180{left:474.330000px;}
.xa_c01180{left:482.115000px;}
.x3_c01180{left:486.435000px;}
.x12_c01180{left:499.395000px;}
.x22_c01180{left:503.715000px;}
.x6_c01180{left:518.400000px;}
.x19_c01180{left:535.680000px;}
.x4_c01180{left:547.770000px;}
.xb_c01180{left:553.830000px;}
.x25_c01180{left:571.110000px;}
.x1a_c01180{left:586.650000px;}
.x26_c01180{left:590.970000px;}
.x13_c01180{left:604.800000px;}
.x5_c01180{left:613.440000px;}
.x23_c01180{left:633.315000px;}
.x27_c01180{left:648.000000px;}
.x14_c01180{left:659.235000px;}
.x1b_c01180{left:684.285000px;}
.x15_c01180{left:692.925000px;}
.xc_c01180{left:711.075000px;}
.x24_c01180{left:716.250000px;}
.x1c_c01180{left:730.950000px;}
.x16_c01180{left:735.270000px;}
.xd_c01180{left:762.045000px;}
.x17_c01180{left:776.730000px;}
.x1d_c01180{left:783.645000px;}
.xe_c01180{left:825.120000px;}
.x39_c01180{left:892.515000px;}
.x3a_c01180{left:909.795000px;}
.x3b_c01180{left:921.885000px;}
.x3c_c01180{left:965.955000px;}
.x3d_c01180{left:982.365000px;}
.x41_c01180{left:984.090000px;}
.x42_c01180{left:997.920000px;}
.x3e_c01180{left:1018.650000px;}
.x3f_c01180{left:1033.350000px;}
.x40_c01180{left:1053.210000px;}
@media print{
.v1_c01180{vertical-align:-3.093333pt;}
.v0_c01180{vertical-align:0.000000pt;}
.ls0_c01180{letter-spacing:0.000000pt;}
.ws0_c01180{word-spacing:-23.954133pt;}
.ws1_c01180{word-spacing:0.000000pt;}
.fs19_c01180{font-size:3.072000pt;}
.fs1a_c01180{font-size:6.133333pt;}
.fs1b_c01180{font-size:9.226667pt;}
.fs5_c01180{font-size:12.266667pt;}
.fs1e_c01180{font-size:15.360000pt;}
.fs1f_c01180{font-size:21.493333pt;}
.fs1c_c01180{font-size:30.720000pt;}
.fs15_c01180{font-size:52.213333pt;}
.fs14_c01180{font-size:58.346667pt;}
.fs11_c01180{font-size:61.440000pt;}
.fs13_c01180{font-size:64.533333pt;}
.fs1d_c01180{font-size:67.573333pt;}
.fs10_c01180{font-size:70.666667pt;}
.fs17_c01180{font-size:73.706667pt;}
.fs12_c01180{font-size:76.800000pt;}
.fs0_c01180{font-size:79.893333pt;}
.fs18_c01180{font-size:82.933333pt;}
.fs1_c01180{font-size:86.026667pt;}
.fsd_c01180{font-size:89.066667pt;}
.fsc_c01180{font-size:92.160000pt;}
.fse_c01180{font-size:95.253333pt;}
.fs2_c01180{font-size:98.293333pt;}
.fsf_c01180{font-size:101.386667pt;}
.fs4_c01180{font-size:107.520000pt;}
.fs3_c01180{font-size:110.613333pt;}
.fs16_c01180{font-size:113.653333pt;}
.fs6_c01180{font-size:144.373333pt;}
.fs8_c01180{font-size:147.466667pt;}
.fs9_c01180{font-size:150.506667pt;}
.fs7_c01180{font-size:153.600000pt;}
.fsb_c01180{font-size:156.693333pt;}
.fsa_c01180{font-size:165.866667pt;}
.y0_c01180{bottom:0.000000pt;}
.y2f_c01180{bottom:637.440000pt;}
.y30_c01180{bottom:638.973333pt;}
.y2a_c01180{bottom:687.360000pt;}
.y28_c01180{bottom:689.666667pt;}
.y29_c01180{bottom:690.426667pt;}
.y26_c01180{bottom:702.720000pt;}
.y27_c01180{bottom:708.866667pt;}
.y22_c01180{bottom:723.453333pt;}
.y24_c01180{bottom:724.986667pt;}
.y25_c01180{bottom:728.066667pt;}
.y23_c01180{bottom:731.133333pt;}
.y21_c01180{bottom:742.653333pt;}
.y1c_c01180{bottom:744.960000pt;}
.y1f_c01180{bottom:747.266667pt;}
.y1d_c01180{bottom:751.866667pt;}
.y1e_c01180{bottom:752.640000pt;}
.y20_c01180{bottom:753.413333pt;}
.y19_c01180{bottom:771.840000pt;}
.y1b_c01180{bottom:772.613333pt;}
.y1a_c01180{bottom:774.146667pt;}
.y14_c01180{bottom:797.186667pt;}
.y15_c01180{bottom:797.946667pt;}
.y18_c01180{bottom:798.720000pt;}
.y17_c01180{bottom:822.533333pt;}
.y16_c01180{bottom:823.293333pt;}
.y13_c01180{bottom:834.813333pt;}
.y2e_c01180{bottom:862.466667pt;}
.y2c_c01180{bottom:863.226667pt;}
.y2d_c01180{bottom:865.533333pt;}
.y12_c01180{bottom:877.053333pt;}
.y11_c01180{bottom:924.666667pt;}
.yf_c01180{bottom:926.213333pt;}
.y10_c01180{bottom:926.973333pt;}
.y2b_c01180{bottom:949.253333pt;}
.yc_c01180{bottom:960.773333pt;}
.yb_c01180{bottom:962.306667pt;}
.ye_c01180{bottom:963.066667pt;}
.yd_c01180{bottom:963.840000pt;}
.y6_c01180{bottom:1004.546667pt;}
.y8_c01180{bottom:1005.306667pt;}
.y5_c01180{bottom:1006.080000pt;}
.y7_c01180{bottom:1006.853333pt;}
.y9_c01180{bottom:1007.613333pt;}
.ya_c01180{bottom:1008.386667pt;}
.y4_c01180{bottom:1049.853333pt;}
.y3_c01180{bottom:1056.773333pt;}
.y2_c01180{bottom:1059.066667pt;}
.y1_c01180{bottom:1062.906667pt;}
.h1a_c01180{height:2.764500pt;}
.h1b_c01180{height:5.519401pt;}
.h1c_c01180{height:8.303099pt;}
.h7_c01180{height:11.038802pt;}
.h1f_c01180{height:13.822500pt;}
.h20_c01180{height:19.341901pt;}
.h1d_c01180{height:27.645000pt;}
.h16_c01180{height:46.986901pt;}
.h15_c01180{height:52.506302pt;}
.h12_c01180{height:55.290000pt;}
.h14_c01180{height:58.073698pt;}
.h1e_c01180{height:60.809401pt;}
.h11_c01180{height:63.593099pt;}
.h18_c01180{height:66.328802pt;}
.h13_c01180{height:69.112500pt;}
.h2_c01180{height:71.896198pt;}
.h19_c01180{height:74.631901pt;}
.h3_c01180{height:77.415599pt;}
.he_c01180{height:80.151302pt;}
.hd_c01180{height:82.935000pt;}
.hf_c01180{height:85.718698pt;}
.h4_c01180{height:88.454401pt;}
.h10_c01180{height:91.238099pt;}
.h6_c01180{height:96.757500pt;}
.h5_c01180{height:99.541198pt;}
.h17_c01180{height:102.276901pt;}
.h8_c01180{height:129.921901pt;}
.ha_c01180{height:132.705599pt;}
.h9_c01180{height:138.225000pt;}
.hc_c01180{height:141.008698pt;}
.hb_c01180{height:149.263802pt;}
.h1_c01180{height:1345.333333pt;}
.h0_c01180{height:1345.533333pt;}
.w1_c01180{width:946.666667pt;}
.w0_c01180{width:946.946667pt;}
.x0_c01180{left:0.000000pt;}
.x2b_c01180{left:188.160000pt;}
.x7_c01180{left:195.840000pt;}
.x30_c01180{left:200.453333pt;}
.x34_c01180{left:213.506667pt;}
.x31_c01180{left:215.040000pt;}
.x2c_c01180{left:217.346667pt;}
.x28_c01180{left:226.560000pt;}
.xf_c01180{left:234.240000pt;}
.x8_c01180{left:238.080000pt;}
.x10_c01180{left:263.426667pt;}
.x35_c01180{left:271.106667pt;}
.x32_c01180{left:274.173333pt;}
.x1e_c01180{left:277.253333pt;}
.x9_c01180{left:291.840000pt;}
.x11_c01180{left:297.986667pt;}
.x36_c01180{left:310.266667pt;}
.x29_c01180{left:312.573333pt;}
.x1f_c01180{left:324.866667pt;}
.x2d_c01180{left:327.933333pt;}
.x37_c01180{left:332.546667pt;}
.x20_c01180{left:347.133333pt;}
.x38_c01180{left:360.960000pt;}
.x18_c01180{left:362.493333pt;}
.x1_c01180{left:370.173333pt;}
.x21_c01180{left:372.480000pt;}
.x2e_c01180{left:381.693333pt;}
.x33_c01180{left:393.986667pt;}
.x2a_c01180{left:407.040000pt;}
.x2_c01180{left:410.106667pt;}
.x2f_c01180{left:421.626667pt;}
.xa_c01180{left:428.546667pt;}
.x3_c01180{left:432.386667pt;}
.x12_c01180{left:443.906667pt;}
.x22_c01180{left:447.746667pt;}
.x6_c01180{left:460.800000pt;}
.x19_c01180{left:476.160000pt;}
.x4_c01180{left:486.906667pt;}
.xb_c01180{left:492.293333pt;}
.x25_c01180{left:507.653333pt;}
.x1a_c01180{left:521.466667pt;}
.x26_c01180{left:525.306667pt;}
.x13_c01180{left:537.600000pt;}
.x5_c01180{left:545.280000pt;}
.x23_c01180{left:562.946667pt;}
.x27_c01180{left:576.000000pt;}
.x14_c01180{left:585.986667pt;}
.x1b_c01180{left:608.253333pt;}
.x15_c01180{left:615.933333pt;}
.xc_c01180{left:632.066667pt;}
.x24_c01180{left:636.666667pt;}
.x1c_c01180{left:649.733333pt;}
.x16_c01180{left:653.573333pt;}
.xd_c01180{left:677.373333pt;}
.x17_c01180{left:690.426667pt;}
.x1d_c01180{left:696.573333pt;}
.xe_c01180{left:733.440000pt;}
.x39_c01180{left:793.346667pt;}
.x3a_c01180{left:808.706667pt;}
.x3b_c01180{left:819.453333pt;}
.x3c_c01180{left:858.626667pt;}
.x3d_c01180{left:873.213333pt;}
.x41_c01180{left:874.746667pt;}
.x42_c01180{left:887.040000pt;}
.x3e_c01180{left:905.466667pt;}
.x3f_c01180{left:918.533333pt;}
.x40_c01180{left:936.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ebb679b06db44f3e262243e3.woff2')format("woff");}.ff1_c01181{font-family:ff1_c01181;line-height:1.109863;font-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_c01181{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c01181{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.m8_c01181{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.mc_c01181{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c01181{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01181{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);}
.mf_c01181{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c01181{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m0_c01181{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m10_c01181{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);}
.me_c01181{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.ma_c01181{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4_c01181{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m5_c01181{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3_c01181{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.md_c01181{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mb_c01181{transform:matrix(1.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.170000,0.000000,0.000000,0.250000,0,0);}
.v1_c01181{vertical-align:-3.480000px;}
.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:-6.851760px;}
.ws1_c01181{word-spacing:0.000000px;}
.fc0_c01181{color:transparent;}
.fs2_c01181{font-size:3.456000px;}
.fs9_c01181{font-size:6.000000px;}
.fs6_c01181{font-size:10.380000px;}
.fs1_c01181{font-size:13.800000px;}
.fs8_c01181{font-size:17.280000px;}
.fs3_c01181{font-size:20.760000px;}
.fs0_c01181{font-size:24.180000px;}
.fsa_c01181{font-size:38.040000px;}
.fs5_c01181{font-size:48.360000px;}
.fs4_c01181{font-size:51.840000px;}
.fs7_c01181{font-size:69.120000px;}
.y0_c01181{bottom:0.000000px;}
.y13_c01181{bottom:66.525000px;}
.y12_c01181{bottom:132.195000px;}
.y11_c01181{bottom:133.920000px;}
.y10_c01181{bottom:136.515000px;}
.ye_c01181{bottom:165.885000px;}
.yf_c01181{bottom:168.480000px;}
.y8_c01181{bottom:404.355000px;}
.yc_c01181{bottom:434.595000px;}
.yd_c01181{bottom:452.730000px;}
.ya_c01181{bottom:457.920000px;}
.yb_c01181{bottom:464.835000px;}
.y9_c01181{bottom:475.200000px;}
.y7_c01181{bottom:772.410000px;}
.y5_c01181{bottom:774.150000px;}
.y6_c01181{bottom:775.005000px;}
.y4_c01181{bottom:1124.925000px;}
.y3_c01181{bottom:1156.890000px;}
.y2_c01181{bottom:1157.760000px;}
.y1_c01181{bottom:1158.630000px;}
.h4_c01181{height:3.110063px;}
.hb_c01181{height:5.399414px;}
.h8_c01181{height:9.340986px;}
.h3_c01181{height:12.418652px;}
.ha_c01181{height:15.550313px;}
.h5_c01181{height:18.681973px;}
.h2_c01181{height:21.759639px;}
.hc_c01181{height:34.232285px;}
.h7_c01181{height:43.519277px;}
.h6_c01181{height:46.650937px;}
.h9_c01181{height:62.201250px;}
.h0_c01181{height:1515.450000px;}
.h1_c01181{height:1515.750000px;}
.w1_c01181{width:1086.750000px;}
.w0_c01181{width:1086.915000px;}
.x0_c01181{left:0.000000px;}
.xa_c01181{left:3.450000px;}
.x9_c01181{left:19.005000px;}
.x8_c01181{left:23.325000px;}
.x5_c01181{left:37.155000px;}
.xc_c01181{left:52.710000px;}
.x6_c01181{left:55.290000px;}
.xb_c01181{left:62.205000px;}
.x7_c01181{left:68.250000px;}
.xd_c01181{left:590.970000px;}
.x13_c01181{left:603.075000px;}
.x10_c01181{left:685.155000px;}
.x11_c01181{left:689.475000px;}
.x12_c01181{left:693.795000px;}
.xe_c01181{left:794.880000px;}
.xf_c01181{left:802.650000px;}
.x1_c01181{left:908.070000px;}
.x2_c01181{left:946.080000px;}
.x3_c01181{left:956.445000px;}
.x4_c01181{left:959.910000px;}
@media print{
.v1_c01181{vertical-align:-3.093333pt;}
.v0_c01181{vertical-align:0.000000pt;}
.ls0_c01181{letter-spacing:0.000000pt;}
.ws0_c01181{word-spacing:-6.090453pt;}
.ws1_c01181{word-spacing:0.000000pt;}
.fs2_c01181{font-size:3.072000pt;}
.fs9_c01181{font-size:5.333333pt;}
.fs6_c01181{font-size:9.226667pt;}
.fs1_c01181{font-size:12.266667pt;}
.fs8_c01181{font-size:15.360000pt;}
.fs3_c01181{font-size:18.453333pt;}
.fs0_c01181{font-size:21.493333pt;}
.fsa_c01181{font-size:33.813333pt;}
.fs5_c01181{font-size:42.986667pt;}
.fs4_c01181{font-size:46.080000pt;}
.fs7_c01181{font-size:61.440000pt;}
.y0_c01181{bottom:0.000000pt;}
.y13_c01181{bottom:59.133333pt;}
.y12_c01181{bottom:117.506667pt;}
.y11_c01181{bottom:119.040000pt;}
.y10_c01181{bottom:121.346667pt;}
.ye_c01181{bottom:147.453333pt;}
.yf_c01181{bottom:149.760000pt;}
.y8_c01181{bottom:359.426667pt;}
.yc_c01181{bottom:386.306667pt;}
.yd_c01181{bottom:402.426667pt;}
.ya_c01181{bottom:407.040000pt;}
.yb_c01181{bottom:413.186667pt;}
.y9_c01181{bottom:422.400000pt;}
.y7_c01181{bottom:686.586667pt;}
.y5_c01181{bottom:688.133333pt;}
.y6_c01181{bottom:688.893333pt;}
.y4_c01181{bottom:999.933333pt;}
.y3_c01181{bottom:1028.346667pt;}
.y2_c01181{bottom:1029.120000pt;}
.y1_c01181{bottom:1029.893333pt;}
.h4_c01181{height:2.764500pt;}
.hb_c01181{height:4.799479pt;}
.h8_c01181{height:8.303099pt;}
.h3_c01181{height:11.038802pt;}
.ha_c01181{height:13.822500pt;}
.h5_c01181{height:16.606198pt;}
.h2_c01181{height:19.341901pt;}
.hc_c01181{height:30.428698pt;}
.h7_c01181{height:38.683802pt;}
.h6_c01181{height:41.467500pt;}
.h9_c01181{height:55.290000pt;}
.h0_c01181{height:1347.066667pt;}
.h1_c01181{height:1347.333333pt;}
.w1_c01181{width:966.000000pt;}
.w0_c01181{width:966.146667pt;}
.x0_c01181{left:0.000000pt;}
.xa_c01181{left:3.066667pt;}
.x9_c01181{left:16.893333pt;}
.x8_c01181{left:20.733333pt;}
.x5_c01181{left:33.026667pt;}
.xc_c01181{left:46.853333pt;}
.x6_c01181{left:49.146667pt;}
.xb_c01181{left:55.293333pt;}
.x7_c01181{left:60.666667pt;}
.xd_c01181{left:525.306667pt;}
.x13_c01181{left:536.066667pt;}
.x10_c01181{left:609.026667pt;}
.x11_c01181{left:612.866667pt;}
.x12_c01181{left:616.706667pt;}
.xe_c01181{left:706.560000pt;}
.xf_c01181{left:713.466667pt;}
.x1_c01181{left:807.173333pt;}
.x2_c01181{left:840.960000pt;}
.x3_c01181{left:850.173333pt;}
.x4_c01181{left:853.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_49e48a880b94a08bfa087911.woff2')format("woff");}.ff1_c01182{font-family:ff1_c01182;line-height:1.109863;font-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_c01182{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c01182{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m7_c01182{transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);}
.m0_c01182{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c01182{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);}
.m5_c01182{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);}
.m2_c01182{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3_c01182{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6_c01182{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.v0_c01182{vertical-align:0.000000px;}
.v1_c01182{vertical-align:3.420000px;}
.ls1_c01182{letter-spacing:0.000000px;}
.ls0_c01182{letter-spacing:43.237440px;}
.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;}
.fs5_c01182{font-size:3.456000px;}
.fs7_c01182{font-size:10.380000px;}
.fs4_c01182{font-size:17.280000px;}
.fs2_c01182{font-size:20.760000px;}
.fs3_c01182{font-size:31.080000px;}
.fs6_c01182{font-size:44.940000px;}
.fs1_c01182{font-size:48.360000px;}
.fs8_c01182{font-size:51.840000px;}
.fs0_c01182{font-size:58.740000px;}
.fs9_c01182{font-size:69.120000px;}
.y0_c01182{bottom:0.000000px;}
.y8_c01182{bottom:355.110000px;}
.y6_c01182{bottom:371.520000px;}
.y7_c01182{bottom:372.390000px;}
.y5_c01182{bottom:376.710000px;}
.y4_c01182{bottom:389.670000px;}
.y3_c01182{bottom:398.310000px;}
.y2_c01182{bottom:406.080000px;}
.y1_c01182{bottom:423.360000px;}
.h8_c01182{height:9.340986px;}
.h6_c01182{height:15.550313px;}
.h4_c01182{height:18.681973px;}
.h5_c01182{height:27.968965px;}
.h7_c01182{height:40.441611px;}
.h3_c01182{height:43.519277px;}
.h9_c01182{height:46.650937px;}
.h2_c01182{height:52.860264px;}
.ha_c01182{height:62.201250px;}
.h1_c01182{height:1513.500000px;}
.h0_c01182{height:1513.725000px;}
.w1_c01182{width:1065.000000px;}
.w0_c01182{width:1065.315000px;}
.x0_c01182{left:0.000000px;}
.x3_c01182{left:982.365000px;}
.x2_c01182{left:986.685000px;}
.x1_c01182{left:1029.030000px;}
.x4_c01182{left:1042.845000px;}
.x5_c01182{left:1052.355000px;}
@media print{
.v0_c01182{vertical-align:0.000000pt;}
.v1_c01182{vertical-align:3.040000pt;}
.ls1_c01182{letter-spacing:0.000000pt;}
.ls0_c01182{letter-spacing:38.433280pt;}
.ws0_c01182{word-spacing:0.000000pt;}
.fs5_c01182{font-size:3.072000pt;}
.fs7_c01182{font-size:9.226667pt;}
.fs4_c01182{font-size:15.360000pt;}
.fs2_c01182{font-size:18.453333pt;}
.fs3_c01182{font-size:27.626667pt;}
.fs6_c01182{font-size:39.946667pt;}
.fs1_c01182{font-size:42.986667pt;}
.fs8_c01182{font-size:46.080000pt;}
.fs0_c01182{font-size:52.213333pt;}
.fs9_c01182{font-size:61.440000pt;}
.y0_c01182{bottom:0.000000pt;}
.y8_c01182{bottom:315.653333pt;}
.y6_c01182{bottom:330.240000pt;}
.y7_c01182{bottom:331.013333pt;}
.y5_c01182{bottom:334.853333pt;}
.y4_c01182{bottom:346.373333pt;}
.y3_c01182{bottom:354.053333pt;}
.y2_c01182{bottom:360.960000pt;}
.y1_c01182{bottom:376.320000pt;}
.h8_c01182{height:8.303099pt;}
.h6_c01182{height:13.822500pt;}
.h4_c01182{height:16.606198pt;}
.h5_c01182{height:24.861302pt;}
.h7_c01182{height:35.948099pt;}
.h3_c01182{height:38.683802pt;}
.h9_c01182{height:41.467500pt;}
.h2_c01182{height:46.986901pt;}
.ha_c01182{height:55.290000pt;}
.h1_c01182{height:1345.333333pt;}
.h0_c01182{height:1345.533333pt;}
.w1_c01182{width:946.666667pt;}
.w0_c01182{width:946.946667pt;}
.x0_c01182{left:0.000000pt;}
.x3_c01182{left:873.213333pt;}
.x2_c01182{left:877.053333pt;}
.x1_c01182{left:914.693333pt;}
.x4_c01182{left:926.973333pt;}
.x5_c01182{left:935.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70222cb679e3f5f9f30f219c.woff2')format("woff");}.ff1_c01183{font-family:ff1_c01183;line-height:1.109863;font-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_c01183{transform:matrix(0.088275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088275,0.000000,0.000000,0.250000,0,0);}
.m8_c01183{transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);}
.me_c01183{transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);}
.m26_c01183{transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);}
.m19_c01183{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m20_c01183{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.ma_c01183{transform:matrix(0.130275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130275,0.000000,0.000000,0.250000,0,0);}
.m44_c01183{transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);}
.md_c01183{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.m45_c01183{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m38_c01183{transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);}
.m0_c01183{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01183{transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);}
.m4e_c01183{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);}
.m3_c01183{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);}
.m18_c01183{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m4d_c01183{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m39_c01183{transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);}
.m50_c01183{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m52_c01183{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);}
.m1a_c01183{transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);}
.m31_c01183{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m4_c01183{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.m3e_c01183{transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);}
.m56_c01183{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);}
.m29_c01183{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m2e_c01183{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m55_c01183{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m35_c01183{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);}
.m49_c01183{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);}
.m58_c01183{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);}
.m27_c01183{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.m2c_c01183{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m13_c01183{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);}
.m53_c01183{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);}
.m16_c01183{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.m1c_c01183{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);}
.m25_c01183{transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);}
.mf_c01183{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.m28_c01183{transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);}
.m4b_c01183{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m15_c01183{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);}
.m3a_c01183{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);}
.m37_c01183{transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);}
.m36_c01183{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m41_c01183{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);}
.m1d_c01183{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m2b_c01183{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);}
.m6_c01183{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m57_c01183{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m17_c01183{transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);}
.m40_c01183{transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);}
.m4a_c01183{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);}
.m3d_c01183{transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);}
.m1e_c01183{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m51_c01183{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);}
.m2f_c01183{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m1f_c01183{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);}
.m1b_c01183{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01183{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);}
.m47_c01183{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);}
.m46_c01183{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m33_c01183{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);}
.m22_c01183{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);}
.m4c_c01183{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c01183{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m48_c01183{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01183{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);}
.m34_c01183{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);}
.m42_c01183{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01183{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01183{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);}
.m5b_c01183{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1_c01183{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01183{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c01183{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01183{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m30_c01183{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);}
.m14_c01183{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);}
.m43_c01183{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2_c01183{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m7_c01183{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);}
.m24_c01183{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m54_c01183{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mc_c01183{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mb_c01183{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01183{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m32_c01183{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);}
.m2a_c01183{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m9_c01183{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m11_c01183{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m10_c01183{transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);}
.m59_c01183{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m23_c01183{transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.025000,0.000000,0.000000,0.250000,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;}
.fs4_c01183{font-size:3.456000px;}
.fs6_c01183{font-size:6.000000px;}
.fs0_c01183{font-size:6.900000px;}
.fs15_c01183{font-size:10.380000px;}
.fs5_c01183{font-size:13.800000px;}
.fs16_c01183{font-size:17.280000px;}
.fsc_c01183{font-size:20.760000px;}
.fs1_c01183{font-size:24.180000px;}
.fs19_c01183{font-size:27.660000px;}
.fs7_c01183{font-size:31.080000px;}
.fs2_c01183{font-size:34.560000px;}
.fs17_c01183{font-size:38.040000px;}
.fs1d_c01183{font-size:41.460000px;}
.fs18_c01183{font-size:44.940000px;}
.fs1b_c01183{font-size:48.360000px;}
.fs11_c01183{font-size:51.840000px;}
.fse_c01183{font-size:55.320000px;}
.fs12_c01183{font-size:58.740000px;}
.fs9_c01183{font-size:62.220000px;}
.fs3_c01183{font-size:65.640000px;}
.fsa_c01183{font-size:69.120000px;}
.fsb_c01183{font-size:72.600000px;}
.fsd_c01183{font-size:76.020000px;}
.fs1a_c01183{font-size:79.500000px;}
.fs1c_c01183{font-size:82.920000px;}
.fsf_c01183{font-size:86.400000px;}
.fs8_c01183{font-size:89.880000px;}
.fs10_c01183{font-size:96.780000px;}
.fs14_c01183{font-size:100.200000px;}
.fs13_c01183{font-size:103.680000px;}
.y0_c01183{bottom:0.000000px;}
.y50_c01183{bottom:210.810000px;}
.y4f_c01183{bottom:217.725000px;}
.y4e_c01183{bottom:229.830000px;}
.y48_c01183{bottom:233.280000px;}
.y4d_c01183{bottom:234.150000px;}
.y49_c01183{bottom:235.875000px;}
.y4a_c01183{bottom:236.730000px;}
.y4c_c01183{bottom:238.470000px;}
.y4b_c01183{bottom:240.195000px;}
.y10_c01183{bottom:249.690000px;}
.yf_c01183{bottom:252.285000px;}
.y43_c01183{bottom:253.155000px;}
.y46_c01183{bottom:254.880000px;}
.y44_c01183{bottom:255.750000px;}
.y41_c01183{bottom:256.605000px;}
.y47_c01183{bottom:257.475000px;}
.y42_c01183{bottom:259.200000px;}
.y45_c01183{bottom:260.925000px;}
.ye_c01183{bottom:269.565000px;}
.y3b_c01183{bottom:273.885000px;}
.y40_c01183{bottom:275.610000px;}
.y3c_c01183{bottom:276.480000px;}
.y3d_c01183{bottom:278.205000px;}
.y3a_c01183{bottom:279.075000px;}
.y3e_c01183{bottom:280.800000px;}
.y3f_c01183{bottom:281.670000px;}
.y36_c01183{bottom:293.760000px;}
.y35_c01183{bottom:296.355000px;}
.y39_c01183{bottom:297.210000px;}
.y34_c01183{bottom:298.080000px;}
.y33_c01183{bottom:298.950000px;}
.y37_c01183{bottom:300.675000px;}
.y38_c01183{bottom:301.530000px;}
.y2d_c01183{bottom:314.490000px;}
.y2f_c01183{bottom:316.230000px;}
.y31_c01183{bottom:317.085000px;}
.y2e_c01183{bottom:319.680000px;}
.y30_c01183{bottom:320.550000px;}
.y2c_c01183{bottom:321.405000px;}
.yd_c01183{bottom:329.190000px;}
.y28_c01183{bottom:334.365000px;}
.y32_c01183{bottom:335.235000px;}
.yc_c01183{bottom:336.960000px;}
.y2b_c01183{bottom:337.830000px;}
.y29_c01183{bottom:338.685000px;}
.y2a_c01183{bottom:340.410000px;}
.y27_c01183{bottom:341.280000px;}
.y21_c01183{bottom:355.110000px;}
.y24_c01183{bottom:355.965000px;}
.y22_c01183{bottom:356.835000px;}
.y23_c01183{bottom:357.690000px;}
.y25_c01183{bottom:358.560000px;}
.y26_c01183{bottom:361.155000px;}
.y20_c01183{bottom:363.750000px;}
.yb_c01183{bottom:365.475000px;}
.y1f_c01183{bottom:370.650000px;}
.y1a_c01183{bottom:371.520000px;}
.y1e_c01183{bottom:372.390000px;}
.y1d_c01183{bottom:373.245000px;}
.y51_c01183{bottom:374.115000px;}
.y1b_c01183{bottom:374.970000px;}
.y52_c01183{bottom:375.840000px;}
.y19_c01183{bottom:376.710000px;}
.y17_c01183{bottom:378.435000px;}
.y1c_c01183{bottom:380.160000px;}
.y18_c01183{bottom:381.030000px;}
.ya_c01183{bottom:387.930000px;}
.y11_c01183{bottom:396.570000px;}
.y16_c01183{bottom:397.440000px;}
.y9_c01183{bottom:398.310000px;}
.y14_c01183{bottom:400.035000px;}
.y8_c01183{bottom:400.890000px;}
.y13_c01183{bottom:401.760000px;}
.y15_c01183{bottom:402.630000px;}
.y7_c01183{bottom:406.950000px;}
.y12_c01183{bottom:419.910000px;}
.y5_c01183{bottom:901.155000px;}
.y6_c01183{bottom:919.290000px;}
.y4_c01183{bottom:920.160000px;}
.y3_c01183{bottom:923.610000px;}
.y2_c01183{bottom:1029.885000px;}
.y1_c01183{bottom:1034.205000px;}
.h6_c01183{height:3.110063px;}
.h8_c01183{height:5.399414px;}
.h2_c01183{height:6.209326px;}
.h17_c01183{height:9.340986px;}
.h7_c01183{height:12.418652px;}
.h18_c01183{height:15.550313px;}
.he_c01183{height:18.681973px;}
.h3_c01183{height:21.759639px;}
.h1b_c01183{height:24.891299px;}
.h9_c01183{height:27.968965px;}
.h4_c01183{height:31.100625px;}
.h19_c01183{height:34.232285px;}
.h1f_c01183{height:37.309951px;}
.h1a_c01183{height:40.441611px;}
.h1d_c01183{height:43.519277px;}
.h13_c01183{height:46.650937px;}
.h10_c01183{height:49.782598px;}
.h14_c01183{height:52.860264px;}
.hb_c01183{height:55.991924px;}
.h5_c01183{height:59.069590px;}
.hc_c01183{height:62.201250px;}
.hd_c01183{height:65.332910px;}
.hf_c01183{height:68.410576px;}
.h1c_c01183{height:71.542236px;}
.h1e_c01183{height:74.619902px;}
.h11_c01183{height:77.751563px;}
.ha_c01183{height:80.883223px;}
.h12_c01183{height:87.092549px;}
.h16_c01183{height:90.170215px;}
.h15_c01183{height:93.301875px;}
.h0_c01183{height:1515.450000px;}
.h1_c01183{height:1515.750000px;}
.w1_c01183{width:1086.750000px;}
.w0_c01183{width:1086.915000px;}
.x0_c01183{left:0.000000px;}
.x3_c01183{left:1.725000px;}
.x9_c01183{left:17.280000px;}
.x8_c01183{left:25.050000px;}
.x4_c01183{left:26.790000px;}
.x1_c01183{left:30.240000px;}
.x7_c01183{left:36.285000px;}
.x2_c01183{left:38.010000px;}
.x6_c01183{left:44.925000px;}
.x5_c01183{left:55.290000px;}
.x48_c01183{left:127.005000px;}
.xa_c01183{left:131.325000px;}
.x49_c01183{left:133.920000px;}
.x31_c01183{left:571.965000px;}
.xb_c01183{left:573.690000px;}
.x3f_c01183{left:575.430000px;}
.x1a_c01183{left:583.200000px;}
.x1e_c01183{left:590.970000px;}
.xc_c01183{left:593.565000px;}
.x32_c01183{left:601.350000px;}
.x40_c01183{left:603.930000px;}
.x3b_c01183{left:606.525000px;}
.x36_c01183{left:623.805000px;}
.x25_c01183{left:628.995000px;}
.x1b_c01183{left:635.040000px;}
.x15_c01183{left:640.230000px;}
.xd_c01183{left:644.550000px;}
.x3c_c01183{left:652.320000px;}
.x29_c01183{left:658.365000px;}
.x45_c01183{left:671.325000px;}
.xe_c01183{left:673.050000px;}
.x1f_c01183{left:680.835000px;}
.x26_c01183{left:682.560000px;}
.x2a_c01183{left:688.605000px;}
.x37_c01183{left:694.650000px;}
.x27_c01183{left:696.390000px;}
.xf_c01183{left:699.840000px;}
.x41_c01183{left:706.755000px;}
.x2b_c01183{left:708.480000px;}
.x16_c01183{left:710.205000px;}
.x20_c01183{left:718.845000px;}
.x10_c01183{left:721.440000px;}
.x33_c01183{left:723.165000px;}
.x42_c01183{left:731.805000px;}
.x2c_c01183{left:736.125000px;}
.x46_c01183{left:742.170000px;}
.x34_c01183{left:747.360000px;}
.x1c_c01183{left:749.085000px;}
.x17_c01183{left:751.680000px;}
.x38_c01183{left:756.000000px;}
.x11_c01183{left:759.450000px;}
.x47_c01183{left:761.190000px;}
.x18_c01183{left:768.960000px;}
.x21_c01183{left:774.150000px;}
.x2d_c01183{left:777.600000px;}
.x43_c01183{left:780.195000px;}
.x39_c01183{left:791.430000px;}
.x12_c01183{left:794.880000px;}
.x28_c01183{left:796.605000px;}
.x22_c01183{left:803.520000px;}
.x44_c01183{left:814.755000px;}
.x2e_c01183{left:818.205000px;}
.x13_c01183{left:820.800000px;}
.x3d_c01183{left:827.715000px;}
.x2f_c01183{left:838.080000px;}
.x35_c01183{left:849.315000px;}
.x3a_c01183{left:863.130000px;}
.x14_c01183{left:871.770000px;}
.x3e_c01183{left:876.960000px;}
.x23_c01183{left:881.280000px;}
.x30_c01183{left:886.470000px;}
.x1d_c01183{left:889.920000px;}
.x19_c01183{left:920.160000px;}
.x24_c01183{left:921.885000px;}
@media print{
.v0_c01183{vertical-align:0.000000pt;}
.ls0_c01183{letter-spacing:0.000000pt;}
.ws0_c01183{word-spacing:0.000000pt;}
.fs4_c01183{font-size:3.072000pt;}
.fs6_c01183{font-size:5.333333pt;}
.fs0_c01183{font-size:6.133333pt;}
.fs15_c01183{font-size:9.226667pt;}
.fs5_c01183{font-size:12.266667pt;}
.fs16_c01183{font-size:15.360000pt;}
.fsc_c01183{font-size:18.453333pt;}
.fs1_c01183{font-size:21.493333pt;}
.fs19_c01183{font-size:24.586667pt;}
.fs7_c01183{font-size:27.626667pt;}
.fs2_c01183{font-size:30.720000pt;}
.fs17_c01183{font-size:33.813333pt;}
.fs1d_c01183{font-size:36.853333pt;}
.fs18_c01183{font-size:39.946667pt;}
.fs1b_c01183{font-size:42.986667pt;}
.fs11_c01183{font-size:46.080000pt;}
.fse_c01183{font-size:49.173333pt;}
.fs12_c01183{font-size:52.213333pt;}
.fs9_c01183{font-size:55.306667pt;}
.fs3_c01183{font-size:58.346667pt;}
.fsa_c01183{font-size:61.440000pt;}
.fsb_c01183{font-size:64.533333pt;}
.fsd_c01183{font-size:67.573333pt;}
.fs1a_c01183{font-size:70.666667pt;}
.fs1c_c01183{font-size:73.706667pt;}
.fsf_c01183{font-size:76.800000pt;}
.fs8_c01183{font-size:79.893333pt;}
.fs10_c01183{font-size:86.026667pt;}
.fs14_c01183{font-size:89.066667pt;}
.fs13_c01183{font-size:92.160000pt;}
.y0_c01183{bottom:0.000000pt;}
.y50_c01183{bottom:187.386667pt;}
.y4f_c01183{bottom:193.533333pt;}
.y4e_c01183{bottom:204.293333pt;}
.y48_c01183{bottom:207.360000pt;}
.y4d_c01183{bottom:208.133333pt;}
.y49_c01183{bottom:209.666667pt;}
.y4a_c01183{bottom:210.426667pt;}
.y4c_c01183{bottom:211.973333pt;}
.y4b_c01183{bottom:213.506667pt;}
.y10_c01183{bottom:221.946667pt;}
.yf_c01183{bottom:224.253333pt;}
.y43_c01183{bottom:225.026667pt;}
.y46_c01183{bottom:226.560000pt;}
.y44_c01183{bottom:227.333333pt;}
.y41_c01183{bottom:228.093333pt;}
.y47_c01183{bottom:228.866667pt;}
.y42_c01183{bottom:230.400000pt;}
.y45_c01183{bottom:231.933333pt;}
.ye_c01183{bottom:239.613333pt;}
.y3b_c01183{bottom:243.453333pt;}
.y40_c01183{bottom:244.986667pt;}
.y3c_c01183{bottom:245.760000pt;}
.y3d_c01183{bottom:247.293333pt;}
.y3a_c01183{bottom:248.066667pt;}
.y3e_c01183{bottom:249.600000pt;}
.y3f_c01183{bottom:250.373333pt;}
.y36_c01183{bottom:261.120000pt;}
.y35_c01183{bottom:263.426667pt;}
.y39_c01183{bottom:264.186667pt;}
.y34_c01183{bottom:264.960000pt;}
.y33_c01183{bottom:265.733333pt;}
.y37_c01183{bottom:267.266667pt;}
.y38_c01183{bottom:268.026667pt;}
.y2d_c01183{bottom:279.546667pt;}
.y2f_c01183{bottom:281.093333pt;}
.y31_c01183{bottom:281.853333pt;}
.y2e_c01183{bottom:284.160000pt;}
.y30_c01183{bottom:284.933333pt;}
.y2c_c01183{bottom:285.693333pt;}
.yd_c01183{bottom:292.613333pt;}
.y28_c01183{bottom:297.213333pt;}
.y32_c01183{bottom:297.986667pt;}
.yc_c01183{bottom:299.520000pt;}
.y2b_c01183{bottom:300.293333pt;}
.y29_c01183{bottom:301.053333pt;}
.y2a_c01183{bottom:302.586667pt;}
.y27_c01183{bottom:303.360000pt;}
.y21_c01183{bottom:315.653333pt;}
.y24_c01183{bottom:316.413333pt;}
.y22_c01183{bottom:317.186667pt;}
.y23_c01183{bottom:317.946667pt;}
.y25_c01183{bottom:318.720000pt;}
.y26_c01183{bottom:321.026667pt;}
.y20_c01183{bottom:323.333333pt;}
.yb_c01183{bottom:324.866667pt;}
.y1f_c01183{bottom:329.466667pt;}
.y1a_c01183{bottom:330.240000pt;}
.y1e_c01183{bottom:331.013333pt;}
.y1d_c01183{bottom:331.773333pt;}
.y51_c01183{bottom:332.546667pt;}
.y1b_c01183{bottom:333.306667pt;}
.y52_c01183{bottom:334.080000pt;}
.y19_c01183{bottom:334.853333pt;}
.y17_c01183{bottom:336.386667pt;}
.y1c_c01183{bottom:337.920000pt;}
.y18_c01183{bottom:338.693333pt;}
.ya_c01183{bottom:344.826667pt;}
.y11_c01183{bottom:352.506667pt;}
.y16_c01183{bottom:353.280000pt;}
.y9_c01183{bottom:354.053333pt;}
.y14_c01183{bottom:355.586667pt;}
.y8_c01183{bottom:356.346667pt;}
.y13_c01183{bottom:357.120000pt;}
.y15_c01183{bottom:357.893333pt;}
.y7_c01183{bottom:361.733333pt;}
.y12_c01183{bottom:373.253333pt;}
.y5_c01183{bottom:801.026667pt;}
.y6_c01183{bottom:817.146667pt;}
.y4_c01183{bottom:817.920000pt;}
.y3_c01183{bottom:820.986667pt;}
.y2_c01183{bottom:915.453333pt;}
.y1_c01183{bottom:919.293333pt;}
.h6_c01183{height:2.764500pt;}
.h8_c01183{height:4.799479pt;}
.h2_c01183{height:5.519401pt;}
.h17_c01183{height:8.303099pt;}
.h7_c01183{height:11.038802pt;}
.h18_c01183{height:13.822500pt;}
.he_c01183{height:16.606198pt;}
.h3_c01183{height:19.341901pt;}
.h1b_c01183{height:22.125599pt;}
.h9_c01183{height:24.861302pt;}
.h4_c01183{height:27.645000pt;}
.h19_c01183{height:30.428698pt;}
.h1f_c01183{height:33.164401pt;}
.h1a_c01183{height:35.948099pt;}
.h1d_c01183{height:38.683802pt;}
.h13_c01183{height:41.467500pt;}
.h10_c01183{height:44.251198pt;}
.h14_c01183{height:46.986901pt;}
.hb_c01183{height:49.770599pt;}
.h5_c01183{height:52.506302pt;}
.hc_c01183{height:55.290000pt;}
.hd_c01183{height:58.073698pt;}
.hf_c01183{height:60.809401pt;}
.h1c_c01183{height:63.593099pt;}
.h1e_c01183{height:66.328802pt;}
.h11_c01183{height:69.112500pt;}
.ha_c01183{height:71.896198pt;}
.h12_c01183{height:77.415599pt;}
.h16_c01183{height:80.151302pt;}
.h15_c01183{height:82.935000pt;}
.h0_c01183{height:1347.066667pt;}
.h1_c01183{height:1347.333333pt;}
.w1_c01183{width:966.000000pt;}
.w0_c01183{width:966.146667pt;}
.x0_c01183{left:0.000000pt;}
.x3_c01183{left:1.533333pt;}
.x9_c01183{left:15.360000pt;}
.x8_c01183{left:22.266667pt;}
.x4_c01183{left:23.813333pt;}
.x1_c01183{left:26.880000pt;}
.x7_c01183{left:32.253333pt;}
.x2_c01183{left:33.786667pt;}
.x6_c01183{left:39.933333pt;}
.x5_c01183{left:49.146667pt;}
.x48_c01183{left:112.893333pt;}
.xa_c01183{left:116.733333pt;}
.x49_c01183{left:119.040000pt;}
.x31_c01183{left:508.413333pt;}
.xb_c01183{left:509.946667pt;}
.x3f_c01183{left:511.493333pt;}
.x1a_c01183{left:518.400000pt;}
.x1e_c01183{left:525.306667pt;}
.xc_c01183{left:527.613333pt;}
.x32_c01183{left:534.533333pt;}
.x40_c01183{left:536.826667pt;}
.x3b_c01183{left:539.133333pt;}
.x36_c01183{left:554.493333pt;}
.x25_c01183{left:559.106667pt;}
.x1b_c01183{left:564.480000pt;}
.x15_c01183{left:569.093333pt;}
.xd_c01183{left:572.933333pt;}
.x3c_c01183{left:579.840000pt;}
.x29_c01183{left:585.213333pt;}
.x45_c01183{left:596.733333pt;}
.xe_c01183{left:598.266667pt;}
.x1f_c01183{left:605.186667pt;}
.x26_c01183{left:606.720000pt;}
.x2a_c01183{left:612.093333pt;}
.x37_c01183{left:617.466667pt;}
.x27_c01183{left:619.013333pt;}
.xf_c01183{left:622.080000pt;}
.x41_c01183{left:628.226667pt;}
.x2b_c01183{left:629.760000pt;}
.x16_c01183{left:631.293333pt;}
.x20_c01183{left:638.973333pt;}
.x10_c01183{left:641.280000pt;}
.x33_c01183{left:642.813333pt;}
.x42_c01183{left:650.493333pt;}
.x2c_c01183{left:654.333333pt;}
.x46_c01183{left:659.706667pt;}
.x34_c01183{left:664.320000pt;}
.x1c_c01183{left:665.853333pt;}
.x17_c01183{left:668.160000pt;}
.x38_c01183{left:672.000000pt;}
.x11_c01183{left:675.066667pt;}
.x47_c01183{left:676.613333pt;}
.x18_c01183{left:683.520000pt;}
.x21_c01183{left:688.133333pt;}
.x2d_c01183{left:691.200000pt;}
.x43_c01183{left:693.506667pt;}
.x39_c01183{left:703.493333pt;}
.x12_c01183{left:706.560000pt;}
.x28_c01183{left:708.093333pt;}
.x22_c01183{left:714.240000pt;}
.x44_c01183{left:724.226667pt;}
.x2e_c01183{left:727.293333pt;}
.x13_c01183{left:729.600000pt;}
.x3d_c01183{left:735.746667pt;}
.x2f_c01183{left:744.960000pt;}
.x35_c01183{left:754.946667pt;}
.x3a_c01183{left:767.226667pt;}
.x14_c01183{left:774.906667pt;}
.x3e_c01183{left:779.520000pt;}
.x23_c01183{left:783.360000pt;}
.x30_c01183{left:787.973333pt;}
.x1d_c01183{left:791.040000pt;}
.x19_c01183{left:817.920000pt;}
.x24_c01183{left:819.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_02d99a2115c705ecbdbefcc8.woff2')format("woff");}.ff1_c01184{font-family:ff1_c01184;line-height:1.109863;font-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_c01184{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c01184{transform:matrix(0.087350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087350,0.000000,0.000000,0.250000,0,0);}
.m5_c01184{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m6_c01184{transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);}
.m0_c01184{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c01184{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m4_c01184{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01184{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);}
.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;}
.fs3_c01184{font-size:6.000000px;}
.fs0_c01184{font-size:10.380000px;}
.fs4_c01184{font-size:17.280000px;}
.fs2_c01184{font-size:27.660000px;}
.fs5_c01184{font-size:34.560000px;}
.fs1_c01184{font-size:51.840000px;}
.fs6_c01184{font-size:100.200000px;}
.fs7_c01184{font-size:107.160000px;}
.y0_c01184{bottom:0.000000px;}
.y8_c01184{bottom:1287.360000px;}
.y7_c01184{bottom:1317.600000px;}
.y6_c01184{bottom:1344.390000px;}
.y5_c01184{bottom:1372.890000px;}
.y3_c01184{bottom:1380.675000px;}
.y4_c01184{bottom:1381.530000px;}
.y2_c01184{bottom:1388.445000px;}
.y1_c01184{bottom:1391.910000px;}
.h5_c01184{height:5.399414px;}
.h2_c01184{height:9.340986px;}
.h6_c01184{height:15.550313px;}
.h4_c01184{height:24.891299px;}
.h7_c01184{height:31.100625px;}
.h3_c01184{height:46.650937px;}
.h8_c01184{height:90.170215px;}
.h9_c01184{height:96.433535px;}
.h1_c01184{height:1513.500000px;}
.h0_c01184{height:1513.725000px;}
.w1_c01184{width:1065.000000px;}
.w0_c01184{width:1065.315000px;}
.x0_c01184{left:0.000000px;}
.x1_c01184{left:879.555000px;}
.x5_c01184{left:890.790000px;}
.x2_c01184{left:893.370000px;}
.x3_c01184{left:896.835000px;}
.x4_c01184{left:905.475000px;}
.x6_c01184{left:960.765000px;}
@media print{
.v0_c01184{vertical-align:0.000000pt;}
.ls0_c01184{letter-spacing:0.000000pt;}
.ws0_c01184{word-spacing:0.000000pt;}
.fs3_c01184{font-size:5.333333pt;}
.fs0_c01184{font-size:9.226667pt;}
.fs4_c01184{font-size:15.360000pt;}
.fs2_c01184{font-size:24.586667pt;}
.fs5_c01184{font-size:30.720000pt;}
.fs1_c01184{font-size:46.080000pt;}
.fs6_c01184{font-size:89.066667pt;}
.fs7_c01184{font-size:95.253333pt;}
.y0_c01184{bottom:0.000000pt;}
.y8_c01184{bottom:1144.320000pt;}
.y7_c01184{bottom:1171.200000pt;}
.y6_c01184{bottom:1195.013333pt;}
.y5_c01184{bottom:1220.346667pt;}
.y3_c01184{bottom:1227.266667pt;}
.y4_c01184{bottom:1228.026667pt;}
.y2_c01184{bottom:1234.173333pt;}
.y1_c01184{bottom:1237.253333pt;}
.h5_c01184{height:4.799479pt;}
.h2_c01184{height:8.303099pt;}
.h6_c01184{height:13.822500pt;}
.h4_c01184{height:22.125599pt;}
.h7_c01184{height:27.645000pt;}
.h3_c01184{height:41.467500pt;}
.h8_c01184{height:80.151302pt;}
.h9_c01184{height:85.718698pt;}
.h1_c01184{height:1345.333333pt;}
.h0_c01184{height:1345.533333pt;}
.w1_c01184{width:946.666667pt;}
.w0_c01184{width:946.946667pt;}
.x0_c01184{left:0.000000pt;}
.x1_c01184{left:781.826667pt;}
.x5_c01184{left:791.813333pt;}
.x2_c01184{left:794.106667pt;}
.x3_c01184{left:797.186667pt;}
.x4_c01184{left:804.866667pt;}
.x6_c01184{left:854.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_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_e54f58922b5246332413a90d.woff2')format("woff");}.ff1_c01185{font-family:ff1_c01185;line-height:1.109863;font-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_c01185{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me_c01185{transform:matrix(0.037600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037600,0.000000,0.000000,0.250000,0,0);}
.m12_c01185{transform:matrix(0.071625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071625,0.000000,0.000000,0.250000,0,0);}
.m16_c01185{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.md_c01185{transform:matrix(0.125950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125950,0.000000,0.000000,0.250000,0,0);}
.m5_c01185{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb_c01185{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);}
.m0_c01185{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);}
.m14_c01185{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);}
.m7_c01185{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);}
.ma_c01185{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3_c01185{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);}
.m18_c01185{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mc_c01185{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1_c01185{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m9_c01185{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c01185{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4_c01185{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m6_c01185{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m15_c01185{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m11_c01185{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m13_c01185{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m10_c01185{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m8_c01185{transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);}
.m17_c01185{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.v1_c01185{vertical-align:-10.380000px;}
.v0_c01185{vertical-align:0.000000px;}
.ls1_c01185{letter-spacing:0.000000px;}
.ls0_c01185{letter-spacing:76.112700px;}
.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;}
.fs7_c01185{font-size:3.456000px;}
.fs5_c01185{font-size:6.000000px;}
.fse_c01185{font-size:6.900000px;}
.fs6_c01185{font-size:10.380000px;}
.fs2_c01185{font-size:17.280000px;}
.fsf_c01185{font-size:20.760000px;}
.fsd_c01185{font-size:24.180000px;}
.fs0_c01185{font-size:27.660000px;}
.fs9_c01185{font-size:34.560000px;}
.fs1_c01185{font-size:48.360000px;}
.fs8_c01185{font-size:65.640000px;}
.fs3_c01185{font-size:69.120000px;}
.fsb_c01185{font-size:82.920000px;}
.fs4_c01185{font-size:127.860000px;}
.fsa_c01185{font-size:176.280000px;}
.fsc_c01185{font-size:217.740000px;}
.y0_c01185{bottom:0.000000px;}
.y1f_c01185{bottom:55.290000px;}
.y1d_c01185{bottom:76.035000px;}
.y1c_c01185{bottom:76.890000px;}
.y1e_c01185{bottom:79.485000px;}
.y1a_c01185{bottom:118.365000px;}
.y1b_c01185{bottom:127.005000px;}
.y19_c01185{bottom:133.920000px;}
.y16_c01185{bottom:179.715000px;}
.y18_c01185{bottom:184.890000px;}
.y17_c01185{bottom:188.355000px;}
.y12_c01185{bottom:285.120000px;}
.y11_c01185{bottom:291.165000px;}
.y13_c01185{bottom:292.035000px;}
.y15_c01185{bottom:293.760000px;}
.y14_c01185{bottom:298.080000px;}
.y10_c01185{bottom:312.765000px;}
.yf_c01185{bottom:637.635000px;}
.ye_c01185{bottom:646.275000px;}
.yc_c01185{bottom:664.410000px;}
.yd_c01185{bottom:666.150000px;}
.yb_c01185{bottom:1043.715000px;}
.y9_c01185{bottom:1045.440000px;}
.ya_c01185{bottom:1060.995000px;}
.y8_c01185{bottom:1239.840000px;}
.y7_c01185{bottom:1244.160000px;}
.y6_c01185{bottom:1320.195000px;}
.y5_c01185{bottom:1334.880000px;}
.y3_c01185{bottom:1372.035000px;}
.y4_c01185{bottom:1372.890000px;}
.y2_c01185{bottom:1378.080000px;}
.y1_c01185{bottom:1391.040000px;}
.h8_c01185{height:3.110063px;}
.h6_c01185{height:5.399414px;}
.h10_c01185{height:6.209326px;}
.hf_c01185{height:8.301973px;}
.h7_c01185{height:9.340986px;}
.h3_c01185{height:15.550313px;}
.he_c01185{height:21.759639px;}
.h1_c01185{height:24.891299px;}
.ha_c01185{height:31.100625px;}
.h2_c01185{height:43.519277px;}
.h9_c01185{height:59.069590px;}
.h4_c01185{height:62.201250px;}
.hc_c01185{height:74.619902px;}
.h5_c01185{height:115.061514px;}
.hb_c01185{height:158.634785px;}
.hd_c01185{height:195.944736px;}
.h0_c01185{height:1512.000000px;}
.w1_c01185{width:1086.750000px;}
.w0_c01185{width:1086.915000px;}
.x0_c01185{left:0.000000px;}
.x9_c01185{left:17.280000px;}
.x2_c01185{left:35.430000px;}
.x1_c01185{left:38.880000px;}
.x5_c01185{left:43.200000px;}
.xa_c01185{left:45.795000px;}
.xb_c01185{left:49.245000px;}
.x6_c01185{left:53.565000px;}
.x7_c01185{left:65.670000px;}
.x8_c01185{left:73.440000px;}
.xc_c01185{left:106.275000px;}
.x11_c01185{left:108.000000px;}
.xd_c01185{left:110.595000px;}
.xe_c01185{left:142.560000px;}
.xf_c01185{left:156.390000px;}
.x10_c01185{left:162.435000px;}
.x15_c01185{left:236.730000px;}
.x14_c01185{left:239.325000px;}
.x16_c01185{left:244.515000px;}
.x3_c01185{left:340.410000px;}
.x17_c01185{left:387.930000px;}
.x4_c01185{left:396.570000px;}
.x18_c01185{left:550.365000px;}
.x19_c01185{left:570.240000px;}
.x12_c01185{left:586.650000px;}
.x1a_c01185{left:589.245000px;}
.x13_c01185{left:600.480000px;}
@media print{
.v1_c01185{vertical-align:-9.226667pt;}
.v0_c01185{vertical-align:0.000000pt;}
.ls1_c01185{letter-spacing:0.000000pt;}
.ls0_c01185{letter-spacing:67.655733pt;}
.ws0_c01185{word-spacing:0.000000pt;}
.fs7_c01185{font-size:3.072000pt;}
.fs5_c01185{font-size:5.333333pt;}
.fse_c01185{font-size:6.133333pt;}
.fs6_c01185{font-size:9.226667pt;}
.fs2_c01185{font-size:15.360000pt;}
.fsf_c01185{font-size:18.453333pt;}
.fsd_c01185{font-size:21.493333pt;}
.fs0_c01185{font-size:24.586667pt;}
.fs9_c01185{font-size:30.720000pt;}
.fs1_c01185{font-size:42.986667pt;}
.fs8_c01185{font-size:58.346667pt;}
.fs3_c01185{font-size:61.440000pt;}
.fsb_c01185{font-size:73.706667pt;}
.fs4_c01185{font-size:113.653333pt;}
.fsa_c01185{font-size:156.693333pt;}
.fsc_c01185{font-size:193.546667pt;}
.y0_c01185{bottom:0.000000pt;}
.y1f_c01185{bottom:49.146667pt;}
.y1d_c01185{bottom:67.586667pt;}
.y1c_c01185{bottom:68.346667pt;}
.y1e_c01185{bottom:70.653333pt;}
.y1a_c01185{bottom:105.213333pt;}
.y1b_c01185{bottom:112.893333pt;}
.y19_c01185{bottom:119.040000pt;}
.y16_c01185{bottom:159.746667pt;}
.y18_c01185{bottom:164.346667pt;}
.y17_c01185{bottom:167.426667pt;}
.y12_c01185{bottom:253.440000pt;}
.y11_c01185{bottom:258.813333pt;}
.y13_c01185{bottom:259.586667pt;}
.y15_c01185{bottom:261.120000pt;}
.y14_c01185{bottom:264.960000pt;}
.y10_c01185{bottom:278.013333pt;}
.yf_c01185{bottom:566.786667pt;}
.ye_c01185{bottom:574.466667pt;}
.yc_c01185{bottom:590.586667pt;}
.yd_c01185{bottom:592.133333pt;}
.yb_c01185{bottom:927.746667pt;}
.y9_c01185{bottom:929.280000pt;}
.ya_c01185{bottom:943.106667pt;}
.y8_c01185{bottom:1102.080000pt;}
.y7_c01185{bottom:1105.920000pt;}
.y6_c01185{bottom:1173.506667pt;}
.y5_c01185{bottom:1186.560000pt;}
.y3_c01185{bottom:1219.586667pt;}
.y4_c01185{bottom:1220.346667pt;}
.y2_c01185{bottom:1224.960000pt;}
.y1_c01185{bottom:1236.480000pt;}
.h8_c01185{height:2.764500pt;}
.h6_c01185{height:4.799479pt;}
.h10_c01185{height:5.519401pt;}
.hf_c01185{height:7.379531pt;}
.h7_c01185{height:8.303099pt;}
.h3_c01185{height:13.822500pt;}
.he_c01185{height:19.341901pt;}
.h1_c01185{height:22.125599pt;}
.ha_c01185{height:27.645000pt;}
.h2_c01185{height:38.683802pt;}
.h9_c01185{height:52.506302pt;}
.h4_c01185{height:55.290000pt;}
.hc_c01185{height:66.328802pt;}
.h5_c01185{height:102.276901pt;}
.hb_c01185{height:141.008698pt;}
.hd_c01185{height:174.173099pt;}
.h0_c01185{height:1344.000000pt;}
.w1_c01185{width:966.000000pt;}
.w0_c01185{width:966.146667pt;}
.x0_c01185{left:0.000000pt;}
.x9_c01185{left:15.360000pt;}
.x2_c01185{left:31.493333pt;}
.x1_c01185{left:34.560000pt;}
.x5_c01185{left:38.400000pt;}
.xa_c01185{left:40.706667pt;}
.xb_c01185{left:43.773333pt;}
.x6_c01185{left:47.613333pt;}
.x7_c01185{left:58.373333pt;}
.x8_c01185{left:65.280000pt;}
.xc_c01185{left:94.466667pt;}
.x11_c01185{left:96.000000pt;}
.xd_c01185{left:98.306667pt;}
.xe_c01185{left:126.720000pt;}
.xf_c01185{left:139.013333pt;}
.x10_c01185{left:144.386667pt;}
.x15_c01185{left:210.426667pt;}
.x14_c01185{left:212.733333pt;}
.x16_c01185{left:217.346667pt;}
.x3_c01185{left:302.586667pt;}
.x17_c01185{left:344.826667pt;}
.x4_c01185{left:352.506667pt;}
.x18_c01185{left:489.213333pt;}
.x19_c01185{left:506.880000pt;}
.x12_c01185{left:521.466667pt;}
.x1a_c01185{left:523.773333pt;}
.x13_c01185{left:533.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_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_8ed64e91d0ae32d90b35225e.woff2')format("woff");}.ff1_c01186{font-family:ff1_c01186;line-height:1.109863;font-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_c01186{transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032125,0.000000,0.000000,0.250000,0,0);}
.mc_c01186{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mb_c01186{transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);}
.m8_c01186{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m7_c01186{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m11_c01186{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_c01186{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.md_c01186{transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);}
.ma_c01186{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);}
.m3_c01186{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01186{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c01186{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m9_c01186{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1_c01186{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c01186{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mf_c01186{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m0_c01186{transform:matrix(1.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.095000,0.000000,0.000000,0.250000,0,0);}
.m10_c01186{transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.252500,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:13.800000px;}
.fs1_c01186{font-size:17.280000px;}
.fs2_c01186{font-size:20.760000px;}
.fs7_c01186{font-size:24.180000px;}
.fsb_c01186{font-size:31.080000px;}
.fs9_c01186{font-size:34.560000px;}
.fs4_c01186{font-size:44.940000px;}
.fs5_c01186{font-size:48.360000px;}
.fs3_c01186{font-size:51.840000px;}
.fs8_c01186{font-size:58.740000px;}
.fs6_c01186{font-size:62.220000px;}
.fsa_c01186{font-size:65.640000px;}
.y0_c01186{bottom:0.000000px;}
.y10_c01186{bottom:803.520000px;}
.yf_c01186{bottom:806.970000px;}
.ye_c01186{bottom:818.205000px;}
.yd_c01186{bottom:1188.000000px;}
.yc_c01186{bottom:1200.960000px;}
.yb_c01186{bottom:1219.965000px;}
.ya_c01186{bottom:1223.430000px;}
.y9_c01186{bottom:1238.115000px;}
.y8_c01186{bottom:1254.525000px;}
.y7_c01186{bottom:1275.270000px;}
.y5_c01186{bottom:1292.550000px;}
.y6_c01186{bottom:1293.405000px;}
.y4_c01186{bottom:1308.960000px;}
.y2_c01186{bottom:1378.950000px;}
.y1_c01186{bottom:1380.675000px;}
.y3_c01186{bottom:1436.835000px;}
.h2_c01186{height:12.418652px;}
.h3_c01186{height:15.550313px;}
.h4_c01186{height:18.681973px;}
.h9_c01186{height:21.759639px;}
.hd_c01186{height:27.968965px;}
.hb_c01186{height:31.100625px;}
.h6_c01186{height:40.441611px;}
.h7_c01186{height:43.519277px;}
.h5_c01186{height:46.650937px;}
.ha_c01186{height:52.860264px;}
.h8_c01186{height:55.991924px;}
.hc_c01186{height:59.069590px;}
.h1_c01186{height:1513.500000px;}
.h0_c01186{height:1513.725000px;}
.w1_c01186{width:1065.000000px;}
.w0_c01186{width:1065.315000px;}
.x0_c01186{left:0.000000px;}
.x3_c01186{left:377.565000px;}
.x1_c01186{left:858.810000px;}
.x2_c01186{left:874.365000px;}
.xb_c01186{left:999.645000px;}
.xc_c01186{left:1023.840000px;}
.x9_c01186{left:1025.565000px;}
.x4_c01186{left:1027.290000px;}
.x6_c01186{left:1035.930000px;}
.x7_c01186{left:1044.570000px;}
.xa_c01186{left:1050.630000px;}
.x8_c01186{left:1060.995000px;}
.x5_c01186{left:1063.590000px;}
@media print{
.v0_c01186{vertical-align:0.000000pt;}
.ls0_c01186{letter-spacing:0.000000pt;}
.ws0_c01186{word-spacing:0.000000pt;}
.fs0_c01186{font-size:12.266667pt;}
.fs1_c01186{font-size:15.360000pt;}
.fs2_c01186{font-size:18.453333pt;}
.fs7_c01186{font-size:21.493333pt;}
.fsb_c01186{font-size:27.626667pt;}
.fs9_c01186{font-size:30.720000pt;}
.fs4_c01186{font-size:39.946667pt;}
.fs5_c01186{font-size:42.986667pt;}
.fs3_c01186{font-size:46.080000pt;}
.fs8_c01186{font-size:52.213333pt;}
.fs6_c01186{font-size:55.306667pt;}
.fsa_c01186{font-size:58.346667pt;}
.y0_c01186{bottom:0.000000pt;}
.y10_c01186{bottom:714.240000pt;}
.yf_c01186{bottom:717.306667pt;}
.ye_c01186{bottom:727.293333pt;}
.yd_c01186{bottom:1056.000000pt;}
.yc_c01186{bottom:1067.520000pt;}
.yb_c01186{bottom:1084.413333pt;}
.ya_c01186{bottom:1087.493333pt;}
.y9_c01186{bottom:1100.546667pt;}
.y8_c01186{bottom:1115.133333pt;}
.y7_c01186{bottom:1133.573333pt;}
.y5_c01186{bottom:1148.933333pt;}
.y6_c01186{bottom:1149.693333pt;}
.y4_c01186{bottom:1163.520000pt;}
.y2_c01186{bottom:1225.733333pt;}
.y1_c01186{bottom:1227.266667pt;}
.y3_c01186{bottom:1277.186667pt;}
.h2_c01186{height:11.038802pt;}
.h3_c01186{height:13.822500pt;}
.h4_c01186{height:16.606198pt;}
.h9_c01186{height:19.341901pt;}
.hd_c01186{height:24.861302pt;}
.hb_c01186{height:27.645000pt;}
.h6_c01186{height:35.948099pt;}
.h7_c01186{height:38.683802pt;}
.h5_c01186{height:41.467500pt;}
.ha_c01186{height:46.986901pt;}
.h8_c01186{height:49.770599pt;}
.hc_c01186{height:52.506302pt;}
.h1_c01186{height:1345.333333pt;}
.h0_c01186{height:1345.533333pt;}
.w1_c01186{width:946.666667pt;}
.w0_c01186{width:946.946667pt;}
.x0_c01186{left:0.000000pt;}
.x3_c01186{left:335.613333pt;}
.x1_c01186{left:763.386667pt;}
.x2_c01186{left:777.213333pt;}
.xb_c01186{left:888.573333pt;}
.xc_c01186{left:910.080000pt;}
.x9_c01186{left:911.613333pt;}
.x4_c01186{left:913.146667pt;}
.x6_c01186{left:920.826667pt;}
.x7_c01186{left:928.506667pt;}
.xa_c01186{left:933.893333pt;}
.x8_c01186{left:943.106667pt;}
.x5_c01186{left:945.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01187;src:url('chunks/assets/font_75e31b264ec7eba5d73a951e.woff2')format("woff");}.ff1_c01187{font-family:ff1_c01187;line-height:1.109863;font-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_c01187{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);}
.v0_c01187{vertical-align:0.000000px;}
.ls0_c01187{letter-spacing:0.000000px;}
.sc__c01187{text-shadow:none;}
.sc0_c01187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01187{-webkit-text-stroke:0px transparent;}
.sc0_c01187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01187{word-spacing:0.000000px;}
.fc0_c01187{color:transparent;}
.fs0_c01187{font-size:600.000000px;}
.y0_c01187{bottom:0.000000px;}
.y1_c01187{bottom:15.000000px;}
.h1_c01187{height:539.941406px;}
.h0_c01187{height:1512.000000px;}
.w1_c01187{width:1086.750000px;}
.w0_c01187{width:1086.915000px;}
.x0_c01187{left:0.000000px;}
.x1_c01187{left:15.000000px;}
@media print{
.v0_c01187{vertical-align:0.000000pt;}
.ls0_c01187{letter-spacing:0.000000pt;}
.ws0_c01187{word-spacing:0.000000pt;}
.fs0_c01187{font-size:533.333333pt;}
.y0_c01187{bottom:0.000000pt;}
.y1_c01187{bottom:13.333333pt;}
.h1_c01187{height:479.947917pt;}
.h0_c01187{height:1344.000000pt;}
.w1_c01187{width:966.000000pt;}
.w0_c01187{width:966.146667pt;}
.x0_c01187{left:0.000000pt;}
.x1_c01187{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_857824a52024d3c6a516610d.woff2')format("woff");}.ff1_c01188{font-family:ff1_c01188;line-height:1.109863;font-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_c01188{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);}
.m2_c01188{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);}
.m5_c01188{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7_c01188{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1_c01188{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c01188{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3_c01188{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m4_c01188{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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;}
.fs2_c01188{font-size:3.456000px;}
.fs0_c01188{font-size:31.080000px;}
.fs3_c01188{font-size:38.040000px;}
.fs1_c01188{font-size:48.360000px;}
.fs4_c01188{font-size:51.840000px;}
.y0_c01188{bottom:0.000000px;}
.y8_c01188{bottom:269.565000px;}
.y6_c01188{bottom:286.845000px;}
.y7_c01188{bottom:287.715000px;}
.y5_c01188{bottom:298.950000px;}
.y4_c01188{bottom:304.995000px;}
.y3_c01188{bottom:321.405000px;}
.y2_c01188{bottom:956.445000px;}
.y1_c01188{bottom:959.910000px;}
.h4_c01188{height:3.110063px;}
.h2_c01188{height:27.968965px;}
.h5_c01188{height:34.232285px;}
.h3_c01188{height:43.519277px;}
.h6_c01188{height:46.650937px;}
.h1_c01188{height:1513.500000px;}
.h0_c01188{height:1513.725000px;}
.w1_c01188{width:1065.000000px;}
.w0_c01188{width:1065.315000px;}
.x0_c01188{left:0.000000px;}
.x1_c01188{left:934.845000px;}
.x4_c01188{left:1020.390000px;}
.x2_c01188{left:1035.075000px;}
.x3_c01188{left:1041.120000px;}
.x6_c01188{left:1042.845000px;}
.x5_c01188{left:1054.950000px;}
@media print{
.v0_c01188{vertical-align:0.000000pt;}
.ls0_c01188{letter-spacing:0.000000pt;}
.ws0_c01188{word-spacing:0.000000pt;}
.fs2_c01188{font-size:3.072000pt;}
.fs0_c01188{font-size:27.626667pt;}
.fs3_c01188{font-size:33.813333pt;}
.fs1_c01188{font-size:42.986667pt;}
.fs4_c01188{font-size:46.080000pt;}
.y0_c01188{bottom:0.000000pt;}
.y8_c01188{bottom:239.613333pt;}
.y6_c01188{bottom:254.973333pt;}
.y7_c01188{bottom:255.746667pt;}
.y5_c01188{bottom:265.733333pt;}
.y4_c01188{bottom:271.106667pt;}
.y3_c01188{bottom:285.693333pt;}
.y2_c01188{bottom:850.173333pt;}
.y1_c01188{bottom:853.253333pt;}
.h4_c01188{height:2.764500pt;}
.h2_c01188{height:24.861302pt;}
.h5_c01188{height:30.428698pt;}
.h3_c01188{height:38.683802pt;}
.h6_c01188{height:41.467500pt;}
.h1_c01188{height:1345.333333pt;}
.h0_c01188{height:1345.533333pt;}
.w1_c01188{width:946.666667pt;}
.w0_c01188{width:946.946667pt;}
.x0_c01188{left:0.000000pt;}
.x1_c01188{left:830.973333pt;}
.x4_c01188{left:907.013333pt;}
.x2_c01188{left:920.066667pt;}
.x3_c01188{left:925.440000pt;}
.x6_c01188{left:926.973333pt;}
.x5_c01188{left:937.733333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1875c7c093d83ea2e27c9672.woff2')format("woff");}.ff1_c01189{font-family:ff1_c01189;line-height:1.109863;font-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_c01189{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m0_c01189{transform:matrix(0.054925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054925,0.000000,0.000000,0.250000,0,0);}
.ma_c01189{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m8_c01189{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m4_c01189{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.md_c01189{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m14_c01189{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);}
.m1e_c01189{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);}
.m18_c01189{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);}
.m1b_c01189{transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);}
.m20_c01189{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);}
.m1f_c01189{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);}
.m7_c01189{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c01189{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf_c01189{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);}
.mb_c01189{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01189{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c01189{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);}
.m5_c01189{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c01189{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01189{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);}
.m1_c01189{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c01189{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m19_c01189{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3_c01189{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);}
.m1c_c01189{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);}
.m1a_c01189{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m21_c01189{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m10_c01189{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);}
.m15_c01189{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m17_c01189{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m9_c01189{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m11_c01189{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m16_c01189{transform:matrix(1.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.452500,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;}
.fs9_c01189{font-size:6.000000px;}
.fsb_c01189{font-size:6.900000px;}
.fse_c01189{font-size:10.380000px;}
.fs3_c01189{font-size:17.280000px;}
.fs1_c01189{font-size:20.760000px;}
.fs4_c01189{font-size:24.180000px;}
.fs6_c01189{font-size:27.660000px;}
.fs8_c01189{font-size:31.080000px;}
.fsf_c01189{font-size:34.560000px;}
.fs5_c01189{font-size:38.040000px;}
.fs7_c01189{font-size:41.460000px;}
.fs2_c01189{font-size:44.940000px;}
.fsc_c01189{font-size:48.360000px;}
.fsd_c01189{font-size:51.840000px;}
.fs11_c01189{font-size:55.320000px;}
.fs10_c01189{font-size:58.740000px;}
.fsa_c01189{font-size:69.120000px;}
.fs0_c01189{font-size:141.720000px;}
.y0_c01189{bottom:0.000000px;}
.y26_c01189{bottom:375.840000px;}
.y24_c01189{bottom:393.990000px;}
.y25_c01189{bottom:394.845000px;}
.y22_c01189{bottom:411.270000px;}
.y23_c01189{bottom:412.125000px;}
.y20_c01189{bottom:429.405000px;}
.y21_c01189{bottom:435.450000px;}
.y1f_c01189{bottom:444.960000px;}
.y1e_c01189{bottom:446.685000px;}
.y1d_c01189{bottom:464.835000px;}
.y1c_c01189{bottom:482.970000px;}
.y1a_c01189{bottom:499.395000px;}
.y1b_c01189{bottom:500.250000px;}
.y19_c01189{bottom:517.530000px;}
.y17_c01189{bottom:525.315000px;}
.y18_c01189{bottom:526.170000px;}
.y16_c01189{bottom:533.955000px;}
.y13_c01189{bottom:549.510000px;}
.y14_c01189{bottom:552.090000px;}
.y15_c01189{bottom:553.830000px;}
.y12_c01189{bottom:570.240000px;}
.y11_c01189{bottom:588.390000px;}
.yf_c01189{bottom:605.670000px;}
.y10_c01189{bottom:606.525000px;}
.ye_c01189{bottom:622.950000px;}
.yd_c01189{bottom:630.720000px;}
.yc_c01189{bottom:828.570000px;}
.ya_c01189{bottom:853.635000px;}
.yb_c01189{bottom:861.405000px;}
.y8_c01189{bottom:864.000000px;}
.y9_c01189{bottom:864.870000px;}
.y6_c01189{bottom:876.090000px;}
.y7_c01189{bottom:877.830000px;}
.y5_c01189{bottom:880.410000px;}
.y3_c01189{bottom:885.600000px;}
.y4_c01189{bottom:889.050000px;}
.y1_c01189{bottom:1086.045000px;}
.y2_c01189{bottom:1116.285000px;}
.ha_c01189{height:5.399414px;}
.hc_c01189{height:6.209326px;}
.hf_c01189{height:9.340986px;}
.h4_c01189{height:15.550313px;}
.h2_c01189{height:18.681973px;}
.h5_c01189{height:21.759639px;}
.h7_c01189{height:24.891299px;}
.h9_c01189{height:27.968965px;}
.h10_c01189{height:31.100625px;}
.h6_c01189{height:34.232285px;}
.h8_c01189{height:37.309951px;}
.h3_c01189{height:40.441611px;}
.hd_c01189{height:43.519277px;}
.he_c01189{height:46.650937px;}
.h12_c01189{height:49.782598px;}
.h11_c01189{height:52.860264px;}
.hb_c01189{height:62.201250px;}
.h1_c01189{height:127.534160px;}
.h0_c01189{height:1512.000000px;}
.w1_c01189{width:1086.750000px;}
.w0_c01189{width:1086.915000px;}
.x0_c01189{left:0.000000px;}
.xb_c01189{left:2.595000px;}
.x8_c01189{left:5.190000px;}
.x3_c01189{left:7.770000px;}
.x1_c01189{left:10.365000px;}
.x7_c01189{left:14.685000px;}
.x6_c01189{left:24.195000px;}
.x10_c01189{left:27.645000px;}
.xe_c01189{left:29.370000px;}
.xd_c01189{left:32.835000px;}
.x4_c01189{left:39.750000px;}
.xc_c01189{left:42.330000px;}
.x9_c01189{left:46.650000px;}
.x5_c01189{left:51.840000px;}
.xa_c01189{left:55.290000px;}
.x2_c01189{left:59.610000px;}
.xf_c01189{left:65.670000px;}
@media print{
.v0_c01189{vertical-align:0.000000pt;}
.ls0_c01189{letter-spacing:0.000000pt;}
.ws0_c01189{word-spacing:0.000000pt;}
.fs9_c01189{font-size:5.333333pt;}
.fsb_c01189{font-size:6.133333pt;}
.fse_c01189{font-size:9.226667pt;}
.fs3_c01189{font-size:15.360000pt;}
.fs1_c01189{font-size:18.453333pt;}
.fs4_c01189{font-size:21.493333pt;}
.fs6_c01189{font-size:24.586667pt;}
.fs8_c01189{font-size:27.626667pt;}
.fsf_c01189{font-size:30.720000pt;}
.fs5_c01189{font-size:33.813333pt;}
.fs7_c01189{font-size:36.853333pt;}
.fs2_c01189{font-size:39.946667pt;}
.fsc_c01189{font-size:42.986667pt;}
.fsd_c01189{font-size:46.080000pt;}
.fs11_c01189{font-size:49.173333pt;}
.fs10_c01189{font-size:52.213333pt;}
.fsa_c01189{font-size:61.440000pt;}
.fs0_c01189{font-size:125.973333pt;}
.y0_c01189{bottom:0.000000pt;}
.y26_c01189{bottom:334.080000pt;}
.y24_c01189{bottom:350.213333pt;}
.y25_c01189{bottom:350.973333pt;}
.y22_c01189{bottom:365.573333pt;}
.y23_c01189{bottom:366.333333pt;}
.y20_c01189{bottom:381.693333pt;}
.y21_c01189{bottom:387.066667pt;}
.y1f_c01189{bottom:395.520000pt;}
.y1e_c01189{bottom:397.053333pt;}
.y1d_c01189{bottom:413.186667pt;}
.y1c_c01189{bottom:429.306667pt;}
.y1a_c01189{bottom:443.906667pt;}
.y1b_c01189{bottom:444.666667pt;}
.y19_c01189{bottom:460.026667pt;}
.y17_c01189{bottom:466.946667pt;}
.y18_c01189{bottom:467.706667pt;}
.y16_c01189{bottom:474.626667pt;}
.y13_c01189{bottom:488.453333pt;}
.y14_c01189{bottom:490.746667pt;}
.y15_c01189{bottom:492.293333pt;}
.y12_c01189{bottom:506.880000pt;}
.y11_c01189{bottom:523.013333pt;}
.yf_c01189{bottom:538.373333pt;}
.y10_c01189{bottom:539.133333pt;}
.ye_c01189{bottom:553.733333pt;}
.yd_c01189{bottom:560.640000pt;}
.yc_c01189{bottom:736.506667pt;}
.ya_c01189{bottom:758.786667pt;}
.yb_c01189{bottom:765.693333pt;}
.y8_c01189{bottom:768.000000pt;}
.y9_c01189{bottom:768.773333pt;}
.y6_c01189{bottom:778.746667pt;}
.y7_c01189{bottom:780.293333pt;}
.y5_c01189{bottom:782.586667pt;}
.y3_c01189{bottom:787.200000pt;}
.y4_c01189{bottom:790.266667pt;}
.y1_c01189{bottom:965.373333pt;}
.y2_c01189{bottom:992.253333pt;}
.ha_c01189{height:4.799479pt;}
.hc_c01189{height:5.519401pt;}
.hf_c01189{height:8.303099pt;}
.h4_c01189{height:13.822500pt;}
.h2_c01189{height:16.606198pt;}
.h5_c01189{height:19.341901pt;}
.h7_c01189{height:22.125599pt;}
.h9_c01189{height:24.861302pt;}
.h10_c01189{height:27.645000pt;}
.h6_c01189{height:30.428698pt;}
.h8_c01189{height:33.164401pt;}
.h3_c01189{height:35.948099pt;}
.hd_c01189{height:38.683802pt;}
.he_c01189{height:41.467500pt;}
.h12_c01189{height:44.251198pt;}
.h11_c01189{height:46.986901pt;}
.hb_c01189{height:55.290000pt;}
.h1_c01189{height:113.363698pt;}
.h0_c01189{height:1344.000000pt;}
.w1_c01189{width:966.000000pt;}
.w0_c01189{width:966.146667pt;}
.x0_c01189{left:0.000000pt;}
.xb_c01189{left:2.306667pt;}
.x8_c01189{left:4.613333pt;}
.x3_c01189{left:6.906667pt;}
.x1_c01189{left:9.213333pt;}
.x7_c01189{left:13.053333pt;}
.x6_c01189{left:21.506667pt;}
.x10_c01189{left:24.573333pt;}
.xe_c01189{left:26.106667pt;}
.xd_c01189{left:29.186667pt;}
.x4_c01189{left:35.333333pt;}
.xc_c01189{left:37.626667pt;}
.x9_c01189{left:41.466667pt;}
.x5_c01189{left:46.080000pt;}
.xa_c01189{left:49.146667pt;}
.x2_c01189{left:52.986667pt;}
.xf_c01189{left:58.373333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33b90ec60e8a5e528d787536.woff2')format("woff");}.ff1_c01190{font-family:ff1_c01190;line-height:1.109863;font-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_c01190{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);}
.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;}
.fs0_c01190{font-size:600.000000px;}
.y0_c01190{bottom:0.000000px;}
.y1_c01190{bottom:15.000000px;}
.h2_c01190{height:539.941406px;}
.h1_c01190{height:1513.500000px;}
.h0_c01190{height:1513.725000px;}
.w1_c01190{width:1065.000000px;}
.w0_c01190{width:1065.315000px;}
.x0_c01190{left:0.000000px;}
.x1_c01190{left:15.000000px;}
@media print{
.v0_c01190{vertical-align:0.000000pt;}
.ls0_c01190{letter-spacing:0.000000pt;}
.ws0_c01190{word-spacing:0.000000pt;}
.fs0_c01190{font-size:533.333333pt;}
.y0_c01190{bottom:0.000000pt;}
.y1_c01190{bottom:13.333333pt;}
.h2_c01190{height:479.947917pt;}
.h1_c01190{height:1345.333333pt;}
.h0_c01190{height:1345.533333pt;}
.w1_c01190{width:946.666667pt;}
.w0_c01190{width:946.946667pt;}
.x0_c01190{left:0.000000pt;}
.x1_c01190{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba67ee8d3bf88c7e584d4498.woff2')format("woff");}.ff1_c01191{font-family:ff1_c01191;line-height:1.109863;font-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_c01191{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m10_c01191{transform:matrix(0.105075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105075,0.000000,0.000000,0.250000,0,0);}
.m1_c01191{transform:matrix(0.109475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109475,0.000000,0.000000,0.250000,0,0);}
.m14_c01191{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01191{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);}
.m11_c01191{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.ma_c01191{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.mf_c01191{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.m3_c01191{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);}
.md_c01191{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m9_c01191{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);}
.m5_c01191{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.me_c01191{transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);}
.m8_c01191{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c01191{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc_c01191{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01191{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c01191{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);}
.m12_c01191{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c01191{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m6_c01191{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,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:6.000000px;}
.fsc_c01191{font-size:6.900000px;}
.fs5_c01191{font-size:13.800000px;}
.fsd_c01191{font-size:17.280000px;}
.fs9_c01191{font-size:24.180000px;}
.fs3_c01191{font-size:31.080000px;}
.fsa_c01191{font-size:34.560000px;}
.fs0_c01191{font-size:38.040000px;}
.fs2_c01191{font-size:41.460000px;}
.fs7_c01191{font-size:44.940000px;}
.fs8_c01191{font-size:48.360000px;}
.fs4_c01191{font-size:51.840000px;}
.fs6_c01191{font-size:55.320000px;}
.fs1_c01191{font-size:82.920000px;}
.fsb_c01191{font-size:89.880000px;}
.y0_c01191{bottom:0.000000px;}
.y12_c01191{bottom:910.650000px;}
.y14_c01191{bottom:911.520000px;}
.y15_c01191{bottom:914.970000px;}
.y13_c01191{bottom:918.435000px;}
.y10_c01191{bottom:1054.950000px;}
.y11_c01191{bottom:1055.805000px;}
.ye_c01191{bottom:1063.590000px;}
.yf_c01191{bottom:1073.085000px;}
.yc_c01191{bottom:1090.365000px;}
.yd_c01191{bottom:1091.235000px;}
.ya_c01191{bottom:1107.645000px;}
.yb_c01191{bottom:1108.515000px;}
.y8_c01191{bottom:1126.650000px;}
.y9_c01191{bottom:1128.390000px;}
.y6_c01191{bottom:1142.205000px;}
.y7_c01191{bottom:1143.930000px;}
.y5_c01191{bottom:1161.210000px;}
.y4_c01191{bottom:1275.270000px;}
.y3_c01191{bottom:1293.405000px;}
.y2_c01191{bottom:1307.235000px;}
.y1_c01191{bottom:1310.685000px;}
.hf_c01191{height:5.399414px;}
.hd_c01191{height:6.209326px;}
.h6_c01191{height:12.418652px;}
.he_c01191{height:15.550313px;}
.ha_c01191{height:21.759639px;}
.h4_c01191{height:27.968965px;}
.hb_c01191{height:31.100625px;}
.h1_c01191{height:34.232285px;}
.h3_c01191{height:37.309951px;}
.h8_c01191{height:40.441611px;}
.h9_c01191{height:43.519277px;}
.h5_c01191{height:46.650937px;}
.h7_c01191{height:49.782598px;}
.h2_c01191{height:74.619902px;}
.hc_c01191{height:80.883223px;}
.h0_c01191{height:1512.000000px;}
.w1_c01191{width:1086.750000px;}
.w0_c01191{width:1086.915000px;}
.x0_c01191{left:0.000000px;}
.x5_c01191{left:7.770000px;}
.x1_c01191{left:18.150000px;}
.x2_c01191{left:20.730000px;}
.x4_c01191{left:24.195000px;}
.x7_c01191{left:28.515000px;}
.x8_c01191{left:31.110000px;}
.x3_c01191{left:38.010000px;}
.x9_c01191{left:41.475000px;}
.x6_c01191{left:50.970000px;}
.xa_c01191{left:108.000000px;}
.xb_c01191{left:119.235000px;}
.xc_c01191{left:165.029592px;}
.xd_c01191{left:175.395000px;}
@media print{
.v0_c01191{vertical-align:0.000000pt;}
.ls0_c01191{letter-spacing:0.000000pt;}
.ws0_c01191{word-spacing:0.000000pt;}
.fse_c01191{font-size:5.333333pt;}
.fsc_c01191{font-size:6.133333pt;}
.fs5_c01191{font-size:12.266667pt;}
.fsd_c01191{font-size:15.360000pt;}
.fs9_c01191{font-size:21.493333pt;}
.fs3_c01191{font-size:27.626667pt;}
.fsa_c01191{font-size:30.720000pt;}
.fs0_c01191{font-size:33.813333pt;}
.fs2_c01191{font-size:36.853333pt;}
.fs7_c01191{font-size:39.946667pt;}
.fs8_c01191{font-size:42.986667pt;}
.fs4_c01191{font-size:46.080000pt;}
.fs6_c01191{font-size:49.173333pt;}
.fs1_c01191{font-size:73.706667pt;}
.fsb_c01191{font-size:79.893333pt;}
.y0_c01191{bottom:0.000000pt;}
.y12_c01191{bottom:809.466667pt;}
.y14_c01191{bottom:810.240000pt;}
.y15_c01191{bottom:813.306667pt;}
.y13_c01191{bottom:816.386667pt;}
.y10_c01191{bottom:937.733333pt;}
.y11_c01191{bottom:938.493333pt;}
.ye_c01191{bottom:945.413333pt;}
.yf_c01191{bottom:953.853333pt;}
.yc_c01191{bottom:969.213333pt;}
.yd_c01191{bottom:969.986667pt;}
.ya_c01191{bottom:984.573333pt;}
.yb_c01191{bottom:985.346667pt;}
.y8_c01191{bottom:1001.466667pt;}
.y9_c01191{bottom:1003.013333pt;}
.y6_c01191{bottom:1015.293333pt;}
.y7_c01191{bottom:1016.826667pt;}
.y5_c01191{bottom:1032.186667pt;}
.y4_c01191{bottom:1133.573333pt;}
.y3_c01191{bottom:1149.693333pt;}
.y2_c01191{bottom:1161.986667pt;}
.y1_c01191{bottom:1165.053333pt;}
.hf_c01191{height:4.799479pt;}
.hd_c01191{height:5.519401pt;}
.h6_c01191{height:11.038802pt;}
.he_c01191{height:13.822500pt;}
.ha_c01191{height:19.341901pt;}
.h4_c01191{height:24.861302pt;}
.hb_c01191{height:27.645000pt;}
.h1_c01191{height:30.428698pt;}
.h3_c01191{height:33.164401pt;}
.h8_c01191{height:35.948099pt;}
.h9_c01191{height:38.683802pt;}
.h5_c01191{height:41.467500pt;}
.h7_c01191{height:44.251198pt;}
.h2_c01191{height:66.328802pt;}
.hc_c01191{height:71.896198pt;}
.h0_c01191{height:1344.000000pt;}
.w1_c01191{width:966.000000pt;}
.w0_c01191{width:966.146667pt;}
.x0_c01191{left:0.000000pt;}
.x5_c01191{left:6.906667pt;}
.x1_c01191{left:16.133333pt;}
.x2_c01191{left:18.426667pt;}
.x4_c01191{left:21.506667pt;}
.x7_c01191{left:25.346667pt;}
.x8_c01191{left:27.653333pt;}
.x3_c01191{left:33.786667pt;}
.x9_c01191{left:36.866667pt;}
.x6_c01191{left:45.306667pt;}
.xa_c01191{left:96.000000pt;}
.xb_c01191{left:105.986667pt;}
.xc_c01191{left:146.692971pt;}
.xd_c01191{left:155.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3301db1002a4074db130d266.woff2')format("woff");}.ff1_c01192{font-family:ff1_c01192;line-height:1.109863;font-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_c01192{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m1_c01192{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,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:24.180000px;}
.fs0_c01192{font-size:51.840000px;}
.y0_c01192{bottom:0.000000px;}
.y1_c01192{bottom:1178.490000px;}
.y2_c01192{bottom:1204.410000px;}
.h3_c01192{height:21.759639px;}
.h2_c01192{height:46.650937px;}
.h1_c01192{height:1513.500000px;}
.h0_c01192{height:1513.725000px;}
.w1_c01192{width:1065.000000px;}
.w0_c01192{width:1065.315000px;}
.x0_c01192{left:0.000000px;}
.x2_c01192{left:884.730000px;}
.x1_c01192{left:957.315000px;}
@media print{
.v0_c01192{vertical-align:0.000000pt;}
.ls0_c01192{letter-spacing:0.000000pt;}
.ws0_c01192{word-spacing:0.000000pt;}
.fs1_c01192{font-size:21.493333pt;}
.fs0_c01192{font-size:46.080000pt;}
.y0_c01192{bottom:0.000000pt;}
.y1_c01192{bottom:1047.546667pt;}
.y2_c01192{bottom:1070.586667pt;}
.h3_c01192{height:19.341901pt;}
.h2_c01192{height:41.467500pt;}
.h1_c01192{height:1345.333333pt;}
.h0_c01192{height:1345.533333pt;}
.w1_c01192{width:946.666667pt;}
.w0_c01192{width:946.946667pt;}
.x0_c01192{left:0.000000pt;}
.x2_c01192{left:786.426667pt;}
.x1_c01192{left:850.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_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;}
@font-face{font-family:ff1_c01193;src:url('chunks/assets/font_daa3c847985232f50f13d263.woff2')format("woff");}.ff1_c01193{font-family:ff1_c01193;line-height:1.109863;font-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_c01193{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m1_c01193{transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);}
.m2_c01193{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m4_c01193{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m0_c01193{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m3_c01193{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c01193{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.v0_c01193{vertical-align:0.000000px;}
.ls0_c01193{letter-spacing:0.000000px;}
.sc__c01193{text-shadow:none;}
.sc0_c01193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01193{-webkit-text-stroke:0px transparent;}
.sc0_c01193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01193{word-spacing:0.000000px;}
.fc0_c01193{color:transparent;}
.fs4_c01193{font-size:17.280000px;}
.fs5_c01193{font-size:31.080000px;}
.fs3_c01193{font-size:44.940000px;}
.fs2_c01193{font-size:48.360000px;}
.fs0_c01193{font-size:51.840000px;}
.fs1_c01193{font-size:58.740000px;}
.y0_c01193{bottom:0.000000px;}
.y8_c01193{bottom:883.875000px;}
.y7_c01193{bottom:1074.810000px;}
.y6_c01193{bottom:1082.595000px;}
.y5_c01193{bottom:1091.235000px;}
.y4_c01193{bottom:1092.960000px;}
.y2_c01193{bottom:1109.370000px;}
.y3_c01193{bottom:1111.965000px;}
.y1_c01193{bottom:1176.765000px;}
.h5_c01193{height:15.550313px;}
.h6_c01193{height:27.968965px;}
.h4_c01193{height:40.441611px;}
.h3_c01193{height:43.519277px;}
.h1_c01193{height:46.650937px;}
.h2_c01193{height:52.860264px;}
.h0_c01193{height:1512.000000px;}
.w1_c01193{width:1086.750000px;}
.w0_c01193{width:1086.915000px;}
.x0_c01193{left:0.000000px;}
.x4_c01193{left:3.450000px;}
.x2_c01193{left:15.555000px;}
.x3_c01193{left:24.195000px;}
.x1_c01193{left:101.955000px;}
.x5_c01193{left:108.000000px;}
@media print{
.v0_c01193{vertical-align:0.000000pt;}
.ls0_c01193{letter-spacing:0.000000pt;}
.ws0_c01193{word-spacing:0.000000pt;}
.fs4_c01193{font-size:15.360000pt;}
.fs5_c01193{font-size:27.626667pt;}
.fs3_c01193{font-size:39.946667pt;}
.fs2_c01193{font-size:42.986667pt;}
.fs0_c01193{font-size:46.080000pt;}
.fs1_c01193{font-size:52.213333pt;}
.y0_c01193{bottom:0.000000pt;}
.y8_c01193{bottom:785.666667pt;}
.y7_c01193{bottom:955.386667pt;}
.y6_c01193{bottom:962.306667pt;}
.y5_c01193{bottom:969.986667pt;}
.y4_c01193{bottom:971.520000pt;}
.y2_c01193{bottom:986.106667pt;}
.y3_c01193{bottom:988.413333pt;}
.y1_c01193{bottom:1046.013333pt;}
.h5_c01193{height:13.822500pt;}
.h6_c01193{height:24.861302pt;}
.h4_c01193{height:35.948099pt;}
.h3_c01193{height:38.683802pt;}
.h1_c01193{height:41.467500pt;}
.h2_c01193{height:46.986901pt;}
.h0_c01193{height:1344.000000pt;}
.w1_c01193{width:966.000000pt;}
.w0_c01193{width:966.146667pt;}
.x0_c01193{left:0.000000pt;}
.x4_c01193{left:3.066667pt;}
.x2_c01193{left:13.826667pt;}
.x3_c01193{left:21.506667pt;}
.x1_c01193{left:90.626667pt;}
.x5_c01193{left:96.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_1ff252d756220a665ecdccd6.woff2')format("woff");}.ff1_c01194{font-family:ff1_c01194;line-height:1.109863;font-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_c01194{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);}
.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;}
.fc0_c01194{color:transparent;}
.fs0_c01194{font-size:600.000000px;}
.y0_c01194{bottom:0.000000px;}
.y1_c01194{bottom:15.000000px;}
.h2_c01194{height:539.941406px;}
.h1_c01194{height:1513.500000px;}
.h0_c01194{height:1513.725000px;}
.w1_c01194{width:1065.000000px;}
.w0_c01194{width:1065.315000px;}
.x0_c01194{left:0.000000px;}
.x1_c01194{left:15.000000px;}
@media print{
.v0_c01194{vertical-align:0.000000pt;}
.ls0_c01194{letter-spacing:0.000000pt;}
.ws0_c01194{word-spacing:0.000000pt;}
.fs0_c01194{font-size:533.333333pt;}
.y0_c01194{bottom:0.000000pt;}
.y1_c01194{bottom:13.333333pt;}
.h2_c01194{height:479.947917pt;}
.h1_c01194{height:1345.333333pt;}
.h0_c01194{height:1345.533333pt;}
.w1_c01194{width:946.666667pt;}
.w0_c01194{width:946.946667pt;}
.x0_c01194{left:0.000000pt;}
.x1_c01194{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a47c4fd181ac7324eed179be.woff2')format("woff");}.ff1_c01195{font-family:ff1_c01195;line-height:1.109863;font-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_c01195{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);}
.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;}
.fs0_c01195{font-size:600.000000px;}
.y0_c01195{bottom:0.000000px;}
.y1_c01195{bottom:15.000000px;}
.h1_c01195{height:539.941406px;}
.h0_c01195{height:1512.000000px;}
.w1_c01195{width:1086.750000px;}
.w0_c01195{width:1086.915000px;}
.x0_c01195{left:0.000000px;}
.x1_c01195{left:15.000000px;}
@media print{
.v0_c01195{vertical-align:0.000000pt;}
.ls0_c01195{letter-spacing:0.000000pt;}
.ws0_c01195{word-spacing:0.000000pt;}
.fs0_c01195{font-size:533.333333pt;}
.y0_c01195{bottom:0.000000pt;}
.y1_c01195{bottom:13.333333pt;}
.h1_c01195{height:479.947917pt;}
.h0_c01195{height:1344.000000pt;}
.w1_c01195{width:966.000000pt;}
.w0_c01195{width:966.146667pt;}
.x0_c01195{left:0.000000pt;}
.x1_c01195{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f257d04625b0b68087ca4be9.woff2')format("woff");}.ff1_c01196{font-family:ff1_c01196;line-height:1.109863;font-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_c01196{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mf_c01196{transform:matrix(0.080425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080425,0.000000,0.000000,0.250000,0,0);}
.me_c01196{transform:matrix(0.098100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098100,0.000000,0.000000,0.250000,0,0);}
.m1_c01196{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);}
.md_c01196{transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);}
.m0_c01196{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m11_c01196{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m6_c01196{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);}
.m2_c01196{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01196{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);}
.m7_c01196{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5_c01196{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);}
.ma_c01196{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m9_c01196{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);}
.m10_c01196{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m8_c01196{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3_c01196{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4_c01196{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m12_c01196{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,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:-15.963417px;}
.ws1_c01196{word-spacing:0.000000px;}
.fc0_c01196{color:transparent;}
.fsd_c01196{font-size:3.456000px;}
.fs0_c01196{font-size:6.000000px;}
.fs2_c01196{font-size:6.900000px;}
.fs3_c01196{font-size:13.800000px;}
.fs1_c01196{font-size:17.280000px;}
.fs4_c01196{font-size:20.760000px;}
.fs9_c01196{font-size:31.080000px;}
.fsa_c01196{font-size:34.560000px;}
.fs6_c01196{font-size:58.740000px;}
.fs7_c01196{font-size:62.220000px;}
.fs8_c01196{font-size:69.120000px;}
.fs5_c01196{font-size:72.600000px;}
.fsb_c01196{font-size:79.500000px;}
.fsc_c01196{font-size:96.780000px;}
.y0_c01196{bottom:0.000000px;}
.y2_c01196{bottom:1100.730000px;}
.y1_c01196{bottom:1104.195000px;}
.y10_c01196{bottom:1144.800000px;}
.yf_c01196{bottom:1149.990000px;}
.y11_c01196{bottom:1150.845000px;}
.ye_c01196{bottom:1153.440000px;}
.yd_c01196{bottom:1346.970000px;}
.ya_c01196{bottom:1364.250000px;}
.yb_c01196{bottom:1366.845000px;}
.yc_c01196{bottom:1368.570000px;}
.y6_c01196{bottom:1383.270000px;}
.y5_c01196{bottom:1385.850000px;}
.y8_c01196{bottom:1386.720000px;}
.y9_c01196{bottom:1387.590000px;}
.y7_c01196{bottom:1403.130000px;}
.y4_c01196{bottom:1407.450000px;}
.y3_c01196{bottom:1420.410000px;}
.hf_c01196{height:3.110063px;}
.h2_c01196{height:5.399414px;}
.h4_c01196{height:6.209326px;}
.h5_c01196{height:12.418652px;}
.h3_c01196{height:15.550313px;}
.h6_c01196{height:18.681973px;}
.hb_c01196{height:27.968965px;}
.hc_c01196{height:31.100625px;}
.h8_c01196{height:52.860264px;}
.h9_c01196{height:55.991924px;}
.ha_c01196{height:62.201250px;}
.h7_c01196{height:65.332910px;}
.hd_c01196{height:71.542236px;}
.he_c01196{height:87.092549px;}
.h1_c01196{height:1513.500000px;}
.h0_c01196{height:1513.725000px;}
.w1_c01196{width:1076.250000px;}
.w0_c01196{width:1076.550000px;}
.x0_c01196{left:0.000000px;}
.x5_c01196{left:365.475000px;}
.x6_c01196{left:376.710000px;}
.x7_c01196{left:400.890000px;}
.x8_c01196{left:408.675000px;}
.x9_c01196{left:426.810000px;}
.x4_c01196{left:430.275000px;}
.x3_c01196{left:437.190000px;}
.xa_c01196{left:447.555000px;}
.xb_c01196{left:495.075000px;}
.xc_c01196{left:545.190000px;}
.xd_c01196{left:876.960000px;}
.xe_c01196{left:888.195000px;}
.x11_c01196{left:954.720000px;}
.xf_c01196{left:964.230000px;}
.x10_c01196{left:968.550000px;}
.x12_c01196{left:978.915000px;}
.x1_c01196{left:1029.030000px;}
.x2_c01196{left:1036.800000px;}
@media print{
.v0_c01196{vertical-align:0.000000pt;}
.ls0_c01196{letter-spacing:0.000000pt;}
.ws0_c01196{word-spacing:-14.189704pt;}
.ws1_c01196{word-spacing:0.000000pt;}
.fsd_c01196{font-size:3.072000pt;}
.fs0_c01196{font-size:5.333333pt;}
.fs2_c01196{font-size:6.133333pt;}
.fs3_c01196{font-size:12.266667pt;}
.fs1_c01196{font-size:15.360000pt;}
.fs4_c01196{font-size:18.453333pt;}
.fs9_c01196{font-size:27.626667pt;}
.fsa_c01196{font-size:30.720000pt;}
.fs6_c01196{font-size:52.213333pt;}
.fs7_c01196{font-size:55.306667pt;}
.fs8_c01196{font-size:61.440000pt;}
.fs5_c01196{font-size:64.533333pt;}
.fsb_c01196{font-size:70.666667pt;}
.fsc_c01196{font-size:86.026667pt;}
.y0_c01196{bottom:0.000000pt;}
.y2_c01196{bottom:978.426667pt;}
.y1_c01196{bottom:981.506667pt;}
.y10_c01196{bottom:1017.600000pt;}
.yf_c01196{bottom:1022.213333pt;}
.y11_c01196{bottom:1022.973333pt;}
.ye_c01196{bottom:1025.280000pt;}
.yd_c01196{bottom:1197.306667pt;}
.ya_c01196{bottom:1212.666667pt;}
.yb_c01196{bottom:1214.973333pt;}
.yc_c01196{bottom:1216.506667pt;}
.y6_c01196{bottom:1229.573333pt;}
.y5_c01196{bottom:1231.866667pt;}
.y8_c01196{bottom:1232.640000pt;}
.y9_c01196{bottom:1233.413333pt;}
.y7_c01196{bottom:1247.226667pt;}
.y4_c01196{bottom:1251.066667pt;}
.y3_c01196{bottom:1262.586667pt;}
.hf_c01196{height:2.764500pt;}
.h2_c01196{height:4.799479pt;}
.h4_c01196{height:5.519401pt;}
.h5_c01196{height:11.038802pt;}
.h3_c01196{height:13.822500pt;}
.h6_c01196{height:16.606198pt;}
.hb_c01196{height:24.861302pt;}
.hc_c01196{height:27.645000pt;}
.h8_c01196{height:46.986901pt;}
.h9_c01196{height:49.770599pt;}
.ha_c01196{height:55.290000pt;}
.h7_c01196{height:58.073698pt;}
.hd_c01196{height:63.593099pt;}
.he_c01196{height:77.415599pt;}
.h1_c01196{height:1345.333333pt;}
.h0_c01196{height:1345.533333pt;}
.w1_c01196{width:956.666667pt;}
.w0_c01196{width:956.933333pt;}
.x0_c01196{left:0.000000pt;}
.x5_c01196{left:324.866667pt;}
.x6_c01196{left:334.853333pt;}
.x7_c01196{left:356.346667pt;}
.x8_c01196{left:363.266667pt;}
.x9_c01196{left:379.386667pt;}
.x4_c01196{left:382.466667pt;}
.x3_c01196{left:388.613333pt;}
.xa_c01196{left:397.826667pt;}
.xb_c01196{left:440.066667pt;}
.xc_c01196{left:484.613333pt;}
.xd_c01196{left:779.520000pt;}
.xe_c01196{left:789.506667pt;}
.x11_c01196{left:848.640000pt;}
.xf_c01196{left:857.093333pt;}
.x10_c01196{left:860.933333pt;}
.x12_c01196{left:870.146667pt;}
.x1_c01196{left:914.693333pt;}
.x2_c01196{left:921.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_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;}
@font-face{font-family:ff1_c01197;src:url('chunks/assets/font_6cba2d287e8947548a3b330d.woff2')format("woff");}.ff1_c01197{font-family:ff1_c01197;line-height:1.109863;font-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_c01197{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m4_c01197{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);}
.m0_c01197{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c01197{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);}
.m1_c01197{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01197{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c01197{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.v0_c01197{vertical-align:0.000000px;}
.ls0_c01197{letter-spacing:0.000000px;}
.sc__c01197{text-shadow:none;}
.sc0_c01197{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01197{-webkit-text-stroke:0px transparent;}
.sc0_c01197{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01197{word-spacing:0.000000px;}
.fc0_c01197{color:transparent;}
.fs1_c01197{font-size:3.456000px;}
.fs3_c01197{font-size:13.800000px;}
.fs2_c01197{font-size:20.760000px;}
.fs0_c01197{font-size:34.560000px;}
.fs5_c01197{font-size:38.040000px;}
.fs6_c01197{font-size:62.220000px;}
.fs4_c01197{font-size:72.600000px;}
.y0_c01197{bottom:0.000000px;}
.y9_c01197{bottom:484.710000px;}
.y7_c01197{bottom:487.290000px;}
.y8_c01197{bottom:489.885000px;}
.y6_c01197{bottom:502.845000px;}
.y5_c01197{bottom:982.365000px;}
.y4_c01197{bottom:988.410000px;}
.y3_c01197{bottom:1073.085000px;}
.y1_c01197{bottom:1361.670000px;}
.y2_c01197{bottom:1365.120000px;}
.h2_c01197{height:3.110063px;}
.h4_c01197{height:12.418652px;}
.h3_c01197{height:18.681973px;}
.h1_c01197{height:31.100625px;}
.h6_c01197{height:34.232285px;}
.h7_c01197{height:55.991924px;}
.h5_c01197{height:65.332910px;}
.h0_c01197{height:1512.000000px;}
.w1_c01197{width:1086.750000px;}
.w0_c01197{width:1086.915000px;}
.x0_c01197{left:0.000000px;}
.x4_c01197{left:6.915000px;}
.x1_c01197{left:21.600000px;}
.x3_c01197{left:25.050000px;}
.x2_c01197{left:31.110000px;}
.x5_c01197{left:35.430000px;}
@media print{
.v0_c01197{vertical-align:0.000000pt;}
.ls0_c01197{letter-spacing:0.000000pt;}
.ws0_c01197{word-spacing:0.000000pt;}
.fs1_c01197{font-size:3.072000pt;}
.fs3_c01197{font-size:12.266667pt;}
.fs2_c01197{font-size:18.453333pt;}
.fs0_c01197{font-size:30.720000pt;}
.fs5_c01197{font-size:33.813333pt;}
.fs6_c01197{font-size:55.306667pt;}
.fs4_c01197{font-size:64.533333pt;}
.y0_c01197{bottom:0.000000pt;}
.y9_c01197{bottom:430.853333pt;}
.y7_c01197{bottom:433.146667pt;}
.y8_c01197{bottom:435.453333pt;}
.y6_c01197{bottom:446.973333pt;}
.y5_c01197{bottom:873.213333pt;}
.y4_c01197{bottom:878.586667pt;}
.y3_c01197{bottom:953.853333pt;}
.y1_c01197{bottom:1210.373333pt;}
.y2_c01197{bottom:1213.440000pt;}
.h2_c01197{height:2.764500pt;}
.h4_c01197{height:11.038802pt;}
.h3_c01197{height:16.606198pt;}
.h1_c01197{height:27.645000pt;}
.h6_c01197{height:30.428698pt;}
.h7_c01197{height:49.770599pt;}
.h5_c01197{height:58.073698pt;}
.h0_c01197{height:1344.000000pt;}
.w1_c01197{width:966.000000pt;}
.w0_c01197{width:966.146667pt;}
.x0_c01197{left:0.000000pt;}
.x4_c01197{left:6.146667pt;}
.x1_c01197{left:19.200000pt;}
.x3_c01197{left:22.266667pt;}
.x2_c01197{left:27.653333pt;}
.x5_c01197{left:31.493333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aa03ce35d85d9660755b7aaa.woff2')format("woff");}.ff1_c01198{font-family:ff1_c01198;line-height:1.109863;font-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_c01198{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);}
.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;}
.fc0_c01198{color:transparent;}
.fs0_c01198{font-size:600.000000px;}
.y0_c01198{bottom:0.000000px;}
.y1_c01198{bottom:15.000000px;}
.h2_c01198{height:539.941406px;}
.h1_c01198{height:1513.500000px;}
.h0_c01198{height:1513.725000px;}
.w1_c01198{width:1076.250000px;}
.w0_c01198{width:1076.550000px;}
.x0_c01198{left:0.000000px;}
.x1_c01198{left:15.000000px;}
@media print{
.v0_c01198{vertical-align:0.000000pt;}
.ls0_c01198{letter-spacing:0.000000pt;}
.ws0_c01198{word-spacing:0.000000pt;}
.fs0_c01198{font-size:533.333333pt;}
.y0_c01198{bottom:0.000000pt;}
.y1_c01198{bottom:13.333333pt;}
.h2_c01198{height:479.947917pt;}
.h1_c01198{height:1345.333333pt;}
.h0_c01198{height:1345.533333pt;}
.w1_c01198{width:956.666667pt;}
.w0_c01198{width:956.933333pt;}
.x0_c01198{left:0.000000pt;}
.x1_c01198{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59695a48c7406f81c8fac113.woff2')format("woff");}.ff1_c01199{font-family:ff1_c01199;line-height:1.109863;font-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_c01199{transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);}
.m1_c01199{transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);}
.m8_c01199{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01199{transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148450,0.000000,0.000000,0.250000,0,0);}
.m0_c01199{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.m4_c01199{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);}
.ma_c01199{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01199{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);}
.m6_c01199{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);}
.m5_c01199{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m7_c01199{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,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;}
.fs4_c01199{font-size:3.456000px;}
.fs8_c01199{font-size:6.900000px;}
.fs6_c01199{font-size:13.800000px;}
.fs5_c01199{font-size:17.280000px;}
.fs7_c01199{font-size:34.560000px;}
.fs3_c01199{font-size:44.940000px;}
.fs0_c01199{font-size:58.740000px;}
.fs1_c01199{font-size:62.220000px;}
.fs2_c01199{font-size:69.120000px;}
.y0_c01199{bottom:0.000000px;}
.yb_c01199{bottom:775.875000px;}
.y6_c01199{bottom:882.150000px;}
.y5_c01199{bottom:883.875000px;}
.y4_c01199{bottom:901.155000px;}
.y3_c01199{bottom:931.395000px;}
.y1_c01199{bottom:933.120000px;}
.y2_c01199{bottom:933.990000px;}
.y8_c01199{bottom:1116.285000px;}
.y7_c01199{bottom:1239.840000px;}
.ya_c01199{bottom:1258.845000px;}
.y9_c01199{bottom:1266.630000px;}
.h5_c01199{height:3.110063px;}
.h9_c01199{height:6.209326px;}
.h7_c01199{height:12.418652px;}
.h6_c01199{height:15.550313px;}
.h8_c01199{height:31.100625px;}
.h4_c01199{height:40.441611px;}
.h1_c01199{height:52.860264px;}
.h2_c01199{height:55.991924px;}
.h3_c01199{height:62.201250px;}
.h0_c01199{height:1512.000000px;}
.w1_c01199{width:1086.750000px;}
.w0_c01199{width:1086.915000px;}
.x0_c01199{left:0.000000px;}
.x3_c01199{left:5.190000px;}
.x1_c01199{left:21.600000px;}
.x2_c01199{left:36.285000px;}
.x4_c01199{left:44.925000px;}
.x5_c01199{left:57.885000px;}
.x6_c01199{left:130.470000px;}
.x7_c01199{left:187.485000px;}
.x8_c01199{left:200.445000px;}
.x9_c01199{left:203.040000px;}
@media print{
.v0_c01199{vertical-align:0.000000pt;}
.ls0_c01199{letter-spacing:0.000000pt;}
.ws0_c01199{word-spacing:0.000000pt;}
.fs4_c01199{font-size:3.072000pt;}
.fs8_c01199{font-size:6.133333pt;}
.fs6_c01199{font-size:12.266667pt;}
.fs5_c01199{font-size:15.360000pt;}
.fs7_c01199{font-size:30.720000pt;}
.fs3_c01199{font-size:39.946667pt;}
.fs0_c01199{font-size:52.213333pt;}
.fs1_c01199{font-size:55.306667pt;}
.fs2_c01199{font-size:61.440000pt;}
.y0_c01199{bottom:0.000000pt;}
.yb_c01199{bottom:689.666667pt;}
.y6_c01199{bottom:784.133333pt;}
.y5_c01199{bottom:785.666667pt;}
.y4_c01199{bottom:801.026667pt;}
.y3_c01199{bottom:827.906667pt;}
.y1_c01199{bottom:829.440000pt;}
.y2_c01199{bottom:830.213333pt;}
.y8_c01199{bottom:992.253333pt;}
.y7_c01199{bottom:1102.080000pt;}
.ya_c01199{bottom:1118.973333pt;}
.y9_c01199{bottom:1125.893333pt;}
.h5_c01199{height:2.764500pt;}
.h9_c01199{height:5.519401pt;}
.h7_c01199{height:11.038802pt;}
.h6_c01199{height:13.822500pt;}
.h8_c01199{height:27.645000pt;}
.h4_c01199{height:35.948099pt;}
.h1_c01199{height:46.986901pt;}
.h2_c01199{height:49.770599pt;}
.h3_c01199{height:55.290000pt;}
.h0_c01199{height:1344.000000pt;}
.w1_c01199{width:966.000000pt;}
.w0_c01199{width:966.146667pt;}
.x0_c01199{left:0.000000pt;}
.x3_c01199{left:4.613333pt;}
.x1_c01199{left:19.200000pt;}
.x2_c01199{left:32.253333pt;}
.x4_c01199{left:39.933333pt;}
.x5_c01199{left:51.453333pt;}
.x6_c01199{left:115.973333pt;}
.x7_c01199{left:166.653333pt;}
.x8_c01199{left:178.173333pt;}
.x9_c01199{left:180.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_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_cf6bdd4d4d56519719e34dc2.woff2')format("woff");}.ff1_c01200{font-family:ff1_c01200;line-height:1.109863;font-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_c01200{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01200{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);}
.m2_c01200{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1_c01200{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3_c01200{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,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;}
.fs4_c01200{font-size:3.456000px;}
.fs0_c01200{font-size:10.380000px;}
.fs3_c01200{font-size:17.280000px;}
.fs1_c01200{font-size:20.760000px;}
.fs5_c01200{font-size:38.040000px;}
.fs2_c01200{font-size:51.840000px;}
.y0_c01200{bottom:0.000000px;}
.y6_c01200{bottom:197.850000px;}
.y4_c01200{bottom:552.960000px;}
.y5_c01200{bottom:555.555000px;}
.y2_c01200{bottom:975.450000px;}
.y3_c01200{bottom:977.190000px;}
.y1_c01200{bottom:995.325000px;}
.h6_c01200{height:3.110063px;}
.h2_c01200{height:9.340986px;}
.h5_c01200{height:15.550313px;}
.h3_c01200{height:18.681973px;}
.h7_c01200{height:34.232285px;}
.h4_c01200{height:46.650937px;}
.h1_c01200{height:1513.500000px;}
.h0_c01200{height:1513.725000px;}
.w1_c01200{width:1076.250000px;}
.w0_c01200{width:1076.550000px;}
.x0_c01200{left:0.000000px;}
.x4_c01200{left:993.600000px;}
.x2_c01200{left:1003.110000px;}
.x5_c01200{left:1007.430000px;}
.x3_c01200{left:1014.330000px;}
.x6_c01200{left:1041.990000px;}
.x1_c01200{left:1047.165000px;}
@media print{
.v0_c01200{vertical-align:0.000000pt;}
.ls0_c01200{letter-spacing:0.000000pt;}
.ws0_c01200{word-spacing:0.000000pt;}
.fs4_c01200{font-size:3.072000pt;}
.fs0_c01200{font-size:9.226667pt;}
.fs3_c01200{font-size:15.360000pt;}
.fs1_c01200{font-size:18.453333pt;}
.fs5_c01200{font-size:33.813333pt;}
.fs2_c01200{font-size:46.080000pt;}
.y0_c01200{bottom:0.000000pt;}
.y6_c01200{bottom:175.866667pt;}
.y4_c01200{bottom:491.520000pt;}
.y5_c01200{bottom:493.826667pt;}
.y2_c01200{bottom:867.066667pt;}
.y3_c01200{bottom:868.613333pt;}
.y1_c01200{bottom:884.733333pt;}
.h6_c01200{height:2.764500pt;}
.h2_c01200{height:8.303099pt;}
.h5_c01200{height:13.822500pt;}
.h3_c01200{height:16.606198pt;}
.h7_c01200{height:30.428698pt;}
.h4_c01200{height:41.467500pt;}
.h1_c01200{height:1345.333333pt;}
.h0_c01200{height:1345.533333pt;}
.w1_c01200{width:956.666667pt;}
.w0_c01200{width:956.933333pt;}
.x0_c01200{left:0.000000pt;}
.x4_c01200{left:883.200000pt;}
.x2_c01200{left:891.653333pt;}
.x5_c01200{left:895.493333pt;}
.x3_c01200{left:901.626667pt;}
.x6_c01200{left:926.213333pt;}
.x1_c01200{left:930.813333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_48d549fac141e446d564e618.woff2')format("woff");}.ff1_c01201{font-family:ff1_c01201;line-height:1.109863;font-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_c01201{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m9_c01201{transform:matrix(0.072350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072350,0.000000,0.000000,0.250000,0,0);}
.m3_c01201{transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);}
.mb_c01201{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c01201{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.mc_c01201{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);}
.m2_c01201{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.m0_c01201{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m4_c01201{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);}
.md_c01201{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);}
.m1_c01201{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma_c01201{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m7_c01201{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m6_c01201{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,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;}
.fsb_c01201{font-size:3.456000px;}
.fs1_c01201{font-size:13.800000px;}
.fs4_c01201{font-size:20.760000px;}
.fs7_c01201{font-size:24.180000px;}
.fsa_c01201{font-size:27.660000px;}
.fs6_c01201{font-size:31.080000px;}
.fsd_c01201{font-size:34.560000px;}
.fsc_c01201{font-size:38.040000px;}
.fs0_c01201{font-size:44.940000px;}
.fs5_c01201{font-size:48.360000px;}
.fs2_c01201{font-size:58.740000px;}
.fs3_c01201{font-size:69.120000px;}
.fs9_c01201{font-size:127.860000px;}
.fs8_c01201{font-size:134.760000px;}
.y0_c01201{bottom:0.000000px;}
.y8_c01201{bottom:322.275000px;}
.y6_c01201{bottom:562.470000px;}
.y5_c01201{bottom:567.645000px;}
.y4_c01201{bottom:582.330000px;}
.y3_c01201{bottom:677.370000px;}
.yd_c01201{bottom:679.110000px;}
.ye_c01201{bottom:680.835000px;}
.yb_c01201{bottom:688.605000px;}
.yc_c01201{bottom:692.925000px;}
.ya_c01201{bottom:863.130000px;}
.y9_c01201{bottom:895.965000px;}
.y7_c01201{bottom:1300.320000px;}
.y2_c01201{bottom:1396.230000px;}
.y1_c01201{bottom:1397.085000px;}
.hc_c01201{height:3.110063px;}
.h2_c01201{height:12.418652px;}
.h5_c01201{height:18.681973px;}
.h8_c01201{height:21.759639px;}
.hb_c01201{height:24.891299px;}
.h7_c01201{height:27.968965px;}
.he_c01201{height:31.100625px;}
.hd_c01201{height:34.232285px;}
.h1_c01201{height:40.441611px;}
.h6_c01201{height:43.519277px;}
.h3_c01201{height:52.860264px;}
.h4_c01201{height:62.201250px;}
.ha_c01201{height:115.061514px;}
.h9_c01201{height:121.270840px;}
.h0_c01201{height:1512.000000px;}
.w1_c01201{width:1086.750000px;}
.w0_c01201{width:1086.915000px;}
.x0_c01201{left:0.000000px;}
.x3_c01201{left:6.915000px;}
.x4_c01201{left:19.005000px;}
.x1_c01201{left:37.155000px;}
.x2_c01201{left:52.710000px;}
.x5_c01201{left:63.930000px;}
.x6_c01201{left:82.080000px;}
.x8_c01201{left:106.275000px;}
.x7_c01201{left:108.870000px;}
.xb_c01201{left:165.030000px;}
.x9_c01201{left:171.930000px;}
.xc_c01201{left:183.165000px;}
.xa_c01201{left:200.445000px;}
@media print{
.v0_c01201{vertical-align:0.000000pt;}
.ls0_c01201{letter-spacing:0.000000pt;}
.ws0_c01201{word-spacing:0.000000pt;}
.fsb_c01201{font-size:3.072000pt;}
.fs1_c01201{font-size:12.266667pt;}
.fs4_c01201{font-size:18.453333pt;}
.fs7_c01201{font-size:21.493333pt;}
.fsa_c01201{font-size:24.586667pt;}
.fs6_c01201{font-size:27.626667pt;}
.fsd_c01201{font-size:30.720000pt;}
.fsc_c01201{font-size:33.813333pt;}
.fs0_c01201{font-size:39.946667pt;}
.fs5_c01201{font-size:42.986667pt;}
.fs2_c01201{font-size:52.213333pt;}
.fs3_c01201{font-size:61.440000pt;}
.fs9_c01201{font-size:113.653333pt;}
.fs8_c01201{font-size:119.786667pt;}
.y0_c01201{bottom:0.000000pt;}
.y8_c01201{bottom:286.466667pt;}
.y6_c01201{bottom:499.973333pt;}
.y5_c01201{bottom:504.573333pt;}
.y4_c01201{bottom:517.626667pt;}
.y3_c01201{bottom:602.106667pt;}
.yd_c01201{bottom:603.653333pt;}
.ye_c01201{bottom:605.186667pt;}
.yb_c01201{bottom:612.093333pt;}
.yc_c01201{bottom:615.933333pt;}
.ya_c01201{bottom:767.226667pt;}
.y9_c01201{bottom:796.413333pt;}
.y7_c01201{bottom:1155.840000pt;}
.y2_c01201{bottom:1241.093333pt;}
.y1_c01201{bottom:1241.853333pt;}
.hc_c01201{height:2.764500pt;}
.h2_c01201{height:11.038802pt;}
.h5_c01201{height:16.606198pt;}
.h8_c01201{height:19.341901pt;}
.hb_c01201{height:22.125599pt;}
.h7_c01201{height:24.861302pt;}
.he_c01201{height:27.645000pt;}
.hd_c01201{height:30.428698pt;}
.h1_c01201{height:35.948099pt;}
.h6_c01201{height:38.683802pt;}
.h3_c01201{height:46.986901pt;}
.h4_c01201{height:55.290000pt;}
.ha_c01201{height:102.276901pt;}
.h9_c01201{height:107.796302pt;}
.h0_c01201{height:1344.000000pt;}
.w1_c01201{width:966.000000pt;}
.w0_c01201{width:966.146667pt;}
.x0_c01201{left:0.000000pt;}
.x3_c01201{left:6.146667pt;}
.x4_c01201{left:16.893333pt;}
.x1_c01201{left:33.026667pt;}
.x2_c01201{left:46.853333pt;}
.x5_c01201{left:56.826667pt;}
.x6_c01201{left:72.960000pt;}
.x8_c01201{left:94.466667pt;}
.x7_c01201{left:96.773333pt;}
.xb_c01201{left:146.693333pt;}
.x9_c01201{left:152.826667pt;}
.xc_c01201{left:162.813333pt;}
.xa_c01201{left:178.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_de31c05f9c35f1b4fe8d2cb1.woff2')format("woff");}.ff1_c01202{font-family:ff1_c01202;line-height:1.109863;font-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_c01202{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m1_c01202{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);}
.m9_c01202{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma_c01202{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m4_c01202{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m2_c01202{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);}
.m6_c01202{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c01202{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01202{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c01202{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m5_c01202{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);}
.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;}
.fs6_c01202{font-size:13.800000px;}
.fs0_c01202{font-size:20.760000px;}
.fs3_c01202{font-size:31.080000px;}
.fs2_c01202{font-size:34.560000px;}
.fs7_c01202{font-size:38.040000px;}
.fs5_c01202{font-size:41.460000px;}
.fs1_c01202{font-size:51.840000px;}
.fs4_c01202{font-size:55.320000px;}
.y0_c01202{bottom:0.000000px;}
.yb_c01202{bottom:1094.685000px;}
.ya_c01202{bottom:1098.150000px;}
.y9_c01202{bottom:1105.050000px;}
.y8_c01202{bottom:1124.925000px;}
.y7_c01202{bottom:1143.930000px;}
.y6_c01202{bottom:1168.995000px;}
.y5_c01202{bottom:1200.090000px;}
.y4_c01202{bottom:1210.470000px;}
.y3_c01202{bottom:1223.430000px;}
.y2_c01202{bottom:1244.160000px;}
.y1_c01202{bottom:1281.315000px;}
.h8_c01202{height:12.418652px;}
.h2_c01202{height:18.681973px;}
.h5_c01202{height:27.968965px;}
.h4_c01202{height:31.100625px;}
.h9_c01202{height:34.232285px;}
.h7_c01202{height:37.309951px;}
.h3_c01202{height:46.650937px;}
.h6_c01202{height:49.782598px;}
.h1_c01202{height:1513.500000px;}
.h0_c01202{height:1513.725000px;}
.w1_c01202{width:1076.250000px;}
.w0_c01202{width:1076.550000px;}
.x0_c01202{left:0.000000px;}
.x3_c01202{left:1006.560000px;}
.x1_c01202{left:1016.070000px;}
.x5_c01202{left:1066.170000px;}
.x2_c01202{left:1071.360000px;}
.x4_c01202{left:1073.085000px;}
.x6_c01202{left:1074.810000px;}
@media print{
.v0_c01202{vertical-align:0.000000pt;}
.ls0_c01202{letter-spacing:0.000000pt;}
.ws0_c01202{word-spacing:0.000000pt;}
.fs6_c01202{font-size:12.266667pt;}
.fs0_c01202{font-size:18.453333pt;}
.fs3_c01202{font-size:27.626667pt;}
.fs2_c01202{font-size:30.720000pt;}
.fs7_c01202{font-size:33.813333pt;}
.fs5_c01202{font-size:36.853333pt;}
.fs1_c01202{font-size:46.080000pt;}
.fs4_c01202{font-size:49.173333pt;}
.y0_c01202{bottom:0.000000pt;}
.yb_c01202{bottom:973.053333pt;}
.ya_c01202{bottom:976.133333pt;}
.y9_c01202{bottom:982.266667pt;}
.y8_c01202{bottom:999.933333pt;}
.y7_c01202{bottom:1016.826667pt;}
.y6_c01202{bottom:1039.106667pt;}
.y5_c01202{bottom:1066.746667pt;}
.y4_c01202{bottom:1075.973333pt;}
.y3_c01202{bottom:1087.493333pt;}
.y2_c01202{bottom:1105.920000pt;}
.y1_c01202{bottom:1138.946667pt;}
.h8_c01202{height:11.038802pt;}
.h2_c01202{height:16.606198pt;}
.h5_c01202{height:24.861302pt;}
.h4_c01202{height:27.645000pt;}
.h9_c01202{height:30.428698pt;}
.h7_c01202{height:33.164401pt;}
.h3_c01202{height:41.467500pt;}
.h6_c01202{height:44.251198pt;}
.h1_c01202{height:1345.333333pt;}
.h0_c01202{height:1345.533333pt;}
.w1_c01202{width:956.666667pt;}
.w0_c01202{width:956.933333pt;}
.x0_c01202{left:0.000000pt;}
.x3_c01202{left:894.720000pt;}
.x1_c01202{left:903.173333pt;}
.x5_c01202{left:947.706667pt;}
.x2_c01202{left:952.320000pt;}
.x4_c01202{left:953.853333pt;}
.x6_c01202{left:955.386667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_41d84ebf12e486ae34f0ac67.woff2')format("woff");}.ff1_c01203{font-family:ff1_c01203;line-height:1.109863;font-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_c01203{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m16_c01203{transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);}
.m1_c01203{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c01203{transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);}
.m1f_c01203{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);}
.m1e_c01203{transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);}
.m1d_c01203{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.m1b_c01203{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.me_c01203{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);}
.m19_c01203{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.m12_c01203{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);}
.mc_c01203{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.m17_c01203{transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);}
.ma_c01203{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);}
.m11_c01203{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);}
.m7_c01203{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c01203{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);}
.m15_c01203{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c01203{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);}
.m10_c01203{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);}
.m1a_c01203{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m6_c01203{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);}
.m4_c01203{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m2_c01203{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);}
.m5_c01203{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m0_c01203{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m13_c01203{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m14_c01203{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m18_c01203{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m3_c01203{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m9_c01203{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.m8_c01203{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,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;}
.fs1_c01203{font-size:3.456000px;}
.fs15_c01203{font-size:6.900000px;}
.fs3_c01203{font-size:10.380000px;}
.fs0_c01203{font-size:13.800000px;}
.fs6_c01203{font-size:17.280000px;}
.fs7_c01203{font-size:20.760000px;}
.fsc_c01203{font-size:27.660000px;}
.fsd_c01203{font-size:31.080000px;}
.fs12_c01203{font-size:34.560000px;}
.fs10_c01203{font-size:38.040000px;}
.fs8_c01203{font-size:41.460000px;}
.fs13_c01203{font-size:44.940000px;}
.fse_c01203{font-size:48.360000px;}
.fs5_c01203{font-size:51.840000px;}
.fsf_c01203{font-size:55.320000px;}
.fs4_c01203{font-size:58.740000px;}
.fs2_c01203{font-size:62.220000px;}
.fs14_c01203{font-size:65.640000px;}
.fs9_c01203{font-size:69.120000px;}
.fsa_c01203{font-size:76.020000px;}
.fsb_c01203{font-size:79.500000px;}
.fs11_c01203{font-size:82.920000px;}
.y0_c01203{bottom:0.000000px;}
.y22_c01203{bottom:206.490000px;}
.y23_c01203{bottom:218.595000px;}
.y21_c01203{bottom:219.450000px;}
.y20_c01203{bottom:224.640000px;}
.y1f_c01203{bottom:241.920000px;}
.y1e_c01203{bottom:254.880000px;}
.y1d_c01203{bottom:275.610000px;}
.y1c_c01203{bottom:276.480000px;}
.y1a_c01203{bottom:292.035000px;}
.y1b_c01203{bottom:298.950000px;}
.y19_c01203{bottom:301.530000px;}
.y18_c01203{bottom:310.170000px;}
.y17_c01203{bottom:317.955000px;}
.y16_c01203{bottom:337.830000px;}
.y15_c01203{bottom:339.555000px;}
.y13_c01203{bottom:344.730000px;}
.y14_c01203{bottom:350.790000px;}
.y12_c01203{bottom:360.285000px;}
.y11_c01203{bottom:364.605000px;}
.yd_c01203{bottom:374.970000px;}
.ye_c01203{bottom:377.565000px;}
.y10_c01203{bottom:381.030000px;}
.yf_c01203{bottom:381.885000px;}
.yc_c01203{bottom:394.845000px;}
.yb_c01203{bottom:414.720000px;}
.ya_c01203{bottom:431.130000px;}
.y9_c01203{bottom:443.235000px;}
.y7_c01203{bottom:446.685000px;}
.y8_c01203{bottom:447.555000px;}
.y3_c01203{bottom:1381.530000px;}
.y5_c01203{bottom:1383.270000px;}
.y6_c01203{bottom:1384.995000px;}
.y4_c01203{bottom:1386.720000px;}
.y1_c01203{bottom:1441.155000px;}
.y2_c01203{bottom:1445.475000px;}
.h2_c01203{height:3.110063px;}
.h16_c01203{height:6.209326px;}
.h4_c01203{height:9.340986px;}
.h1_c01203{height:12.418652px;}
.h7_c01203{height:15.550313px;}
.h8_c01203{height:18.681973px;}
.hd_c01203{height:24.891299px;}
.he_c01203{height:27.968965px;}
.h13_c01203{height:31.100625px;}
.h11_c01203{height:34.232285px;}
.h9_c01203{height:37.309951px;}
.h14_c01203{height:40.441611px;}
.hf_c01203{height:43.519277px;}
.h6_c01203{height:46.650937px;}
.h10_c01203{height:49.782598px;}
.h5_c01203{height:52.860264px;}
.h3_c01203{height:55.991924px;}
.h15_c01203{height:59.069590px;}
.ha_c01203{height:62.201250px;}
.hb_c01203{height:68.410576px;}
.hc_c01203{height:71.542236px;}
.h12_c01203{height:74.619902px;}
.h0_c01203{height:1512.000000px;}
.w1_c01203{width:1086.750000px;}
.w0_c01203{width:1086.915000px;}
.x0_c01203{left:0.000000px;}
.x8_c01203{left:2.595000px;}
.x10_c01203{left:5.190000px;}
.xb_c01203{left:14.685000px;}
.x9_c01203{left:22.470000px;}
.x12_c01203{left:36.285000px;}
.xd_c01203{left:38.880000px;}
.xc_c01203{left:40.605000px;}
.xf_c01203{left:43.200000px;}
.xa_c01203{left:48.390000px;}
.x11_c01203{left:64.800000px;}
.xe_c01203{left:88.125000px;}
.x3_c01203{left:300.675000px;}
.x4_c01203{left:344.730000px;}
.x5_c01203{left:360.285000px;}
.x1_c01203{left:395.715000px;}
.x6_c01203{left:399.165000px;}
.x2_c01203{left:406.950000px;}
.x7_c01203{left:421.635000px;}
@media print{
.v0_c01203{vertical-align:0.000000pt;}
.ls0_c01203{letter-spacing:0.000000pt;}
.ws0_c01203{word-spacing:0.000000pt;}
.fs1_c01203{font-size:3.072000pt;}
.fs15_c01203{font-size:6.133333pt;}
.fs3_c01203{font-size:9.226667pt;}
.fs0_c01203{font-size:12.266667pt;}
.fs6_c01203{font-size:15.360000pt;}
.fs7_c01203{font-size:18.453333pt;}
.fsc_c01203{font-size:24.586667pt;}
.fsd_c01203{font-size:27.626667pt;}
.fs12_c01203{font-size:30.720000pt;}
.fs10_c01203{font-size:33.813333pt;}
.fs8_c01203{font-size:36.853333pt;}
.fs13_c01203{font-size:39.946667pt;}
.fse_c01203{font-size:42.986667pt;}
.fs5_c01203{font-size:46.080000pt;}
.fsf_c01203{font-size:49.173333pt;}
.fs4_c01203{font-size:52.213333pt;}
.fs2_c01203{font-size:55.306667pt;}
.fs14_c01203{font-size:58.346667pt;}
.fs9_c01203{font-size:61.440000pt;}
.fsa_c01203{font-size:67.573333pt;}
.fsb_c01203{font-size:70.666667pt;}
.fs11_c01203{font-size:73.706667pt;}
.y0_c01203{bottom:0.000000pt;}
.y22_c01203{bottom:183.546667pt;}
.y23_c01203{bottom:194.306667pt;}
.y21_c01203{bottom:195.066667pt;}
.y20_c01203{bottom:199.680000pt;}
.y1f_c01203{bottom:215.040000pt;}
.y1e_c01203{bottom:226.560000pt;}
.y1d_c01203{bottom:244.986667pt;}
.y1c_c01203{bottom:245.760000pt;}
.y1a_c01203{bottom:259.586667pt;}
.y1b_c01203{bottom:265.733333pt;}
.y19_c01203{bottom:268.026667pt;}
.y18_c01203{bottom:275.706667pt;}
.y17_c01203{bottom:282.626667pt;}
.y16_c01203{bottom:300.293333pt;}
.y15_c01203{bottom:301.826667pt;}
.y13_c01203{bottom:306.426667pt;}
.y14_c01203{bottom:311.813333pt;}
.y12_c01203{bottom:320.253333pt;}
.y11_c01203{bottom:324.093333pt;}
.yd_c01203{bottom:333.306667pt;}
.ye_c01203{bottom:335.613333pt;}
.y10_c01203{bottom:338.693333pt;}
.yf_c01203{bottom:339.453333pt;}
.yc_c01203{bottom:350.973333pt;}
.yb_c01203{bottom:368.640000pt;}
.ya_c01203{bottom:383.226667pt;}
.y9_c01203{bottom:393.986667pt;}
.y7_c01203{bottom:397.053333pt;}
.y8_c01203{bottom:397.826667pt;}
.y3_c01203{bottom:1228.026667pt;}
.y5_c01203{bottom:1229.573333pt;}
.y6_c01203{bottom:1231.106667pt;}
.y4_c01203{bottom:1232.640000pt;}
.y1_c01203{bottom:1281.026667pt;}
.y2_c01203{bottom:1284.866667pt;}
.h2_c01203{height:2.764500pt;}
.h16_c01203{height:5.519401pt;}
.h4_c01203{height:8.303099pt;}
.h1_c01203{height:11.038802pt;}
.h7_c01203{height:13.822500pt;}
.h8_c01203{height:16.606198pt;}
.hd_c01203{height:22.125599pt;}
.he_c01203{height:24.861302pt;}
.h13_c01203{height:27.645000pt;}
.h11_c01203{height:30.428698pt;}
.h9_c01203{height:33.164401pt;}
.h14_c01203{height:35.948099pt;}
.hf_c01203{height:38.683802pt;}
.h6_c01203{height:41.467500pt;}
.h10_c01203{height:44.251198pt;}
.h5_c01203{height:46.986901pt;}
.h3_c01203{height:49.770599pt;}
.h15_c01203{height:52.506302pt;}
.ha_c01203{height:55.290000pt;}
.hb_c01203{height:60.809401pt;}
.hc_c01203{height:63.593099pt;}
.h12_c01203{height:66.328802pt;}
.h0_c01203{height:1344.000000pt;}
.w1_c01203{width:966.000000pt;}
.w0_c01203{width:966.146667pt;}
.x0_c01203{left:0.000000pt;}
.x8_c01203{left:2.306667pt;}
.x10_c01203{left:4.613333pt;}
.xb_c01203{left:13.053333pt;}
.x9_c01203{left:19.973333pt;}
.x12_c01203{left:32.253333pt;}
.xd_c01203{left:34.560000pt;}
.xc_c01203{left:36.093333pt;}
.xf_c01203{left:38.400000pt;}
.xa_c01203{left:43.013333pt;}
.x11_c01203{left:57.600000pt;}
.xe_c01203{left:78.333333pt;}
.x3_c01203{left:267.266667pt;}
.x4_c01203{left:306.426667pt;}
.x5_c01203{left:320.253333pt;}
.x1_c01203{left:351.746667pt;}
.x6_c01203{left:354.813333pt;}
.x2_c01203{left:361.733333pt;}
.x7_c01203{left:374.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e73cc1018d73985919dfd899.woff2')format("woff");}.ff1_c01204{font-family:ff1_c01204;line-height:1.109863;font-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_c01204{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c01204{transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);}
.m0_c01204{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.m1_c01204{transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154975,0.000000,0.000000,0.250000,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;}
.fc0_c01204{color:transparent;}
.fs3_c01204{font-size:6.900000px;}
.fs2_c01204{font-size:34.560000px;}
.fs1_c01204{font-size:58.740000px;}
.fs0_c01204{font-size:89.880000px;}
.y0_c01204{bottom:0.000000px;}
.y3_c01204{bottom:1230.330000px;}
.y2_c01204{bottom:1334.010000px;}
.y1_c01204{bottom:1344.390000px;}
.h5_c01204{height:6.209326px;}
.h4_c01204{height:31.100625px;}
.h3_c01204{height:52.860264px;}
.h2_c01204{height:80.883223px;}
.h1_c01204{height:1513.500000px;}
.h0_c01204{height:1513.725000px;}
.w1_c01204{width:1076.250000px;}
.w0_c01204{width:1076.550000px;}
.x0_c01204{left:0.000000px;}
.x3_c01204{left:1000.515000px;}
.x4_c01204{left:1015.200000px;}
.x2_c01204{left:1035.075000px;}
.x1_c01204{left:1036.800000px;}
@media print{
.v0_c01204{vertical-align:0.000000pt;}
.ls0_c01204{letter-spacing:0.000000pt;}
.ws0_c01204{word-spacing:0.000000pt;}
.fs3_c01204{font-size:6.133333pt;}
.fs2_c01204{font-size:30.720000pt;}
.fs1_c01204{font-size:52.213333pt;}
.fs0_c01204{font-size:79.893333pt;}
.y0_c01204{bottom:0.000000pt;}
.y3_c01204{bottom:1093.626667pt;}
.y2_c01204{bottom:1185.786667pt;}
.y1_c01204{bottom:1195.013333pt;}
.h5_c01204{height:5.519401pt;}
.h4_c01204{height:27.645000pt;}
.h3_c01204{height:46.986901pt;}
.h2_c01204{height:71.896198pt;}
.h1_c01204{height:1345.333333pt;}
.h0_c01204{height:1345.533333pt;}
.w1_c01204{width:956.666667pt;}
.w0_c01204{width:956.933333pt;}
.x0_c01204{left:0.000000pt;}
.x3_c01204{left:889.346667pt;}
.x4_c01204{left:902.400000pt;}
.x2_c01204{left:920.066667pt;}
.x1_c01204{left:921.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_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_5b539dc3b6d11ae8c549fb3a.woff2')format("woff");}.ff1_c01205{font-family:ff1_c01205;line-height:1.109863;font-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_c01205{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c01205{transform:matrix(0.048075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048075,0.000000,0.000000,0.250000,0,0);}
.m11_c01205{transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);}
.m1_c01205{transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);}
.m1b_c01205{transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);}
.m2_c01205{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m12_c01205{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m15_c01205{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);}
.m3_c01205{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.mc_c01205{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);}
.m1c_c01205{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);}
.m10_c01205{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c01205{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c01205{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);}
.m16_c01205{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m18_c01205{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mf_c01205{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mb_c01205{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);}
.m0_c01205{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me_c01205{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m19_c01205{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);}
.m13_c01205{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4_c01205{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma_c01205{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.md_c01205{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m8_c01205{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01205{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m5_c01205{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.m14_c01205{transform:matrix(1.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.157500,0.000000,0.000000,0.250000,0,0);}
.v1_c01205{vertical-align:-3.480000px;}
.v0_c01205{vertical-align:0.000000px;}
.ls1_c01205{letter-spacing:0.000000px;}
.ls0_c01205{letter-spacing:38.226000px;}
.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;}
}
.ws1_c01205{word-spacing:0.000000px;}
.ws0_c01205{word-spacing:128.239152px;}
.fc0_c01205{color:transparent;}
.fs5_c01205{font-size:3.456000px;}
.fs3_c01205{font-size:6.000000px;}
.fs2_c01205{font-size:6.900000px;}
.fse_c01205{font-size:10.380000px;}
.fs12_c01205{font-size:13.800000px;}
.fsf_c01205{font-size:17.280000px;}
.fsb_c01205{font-size:20.760000px;}
.fs6_c01205{font-size:24.180000px;}
.fs4_c01205{font-size:27.660000px;}
.fs0_c01205{font-size:31.080000px;}
.fs11_c01205{font-size:34.560000px;}
.fsd_c01205{font-size:38.040000px;}
.fs10_c01205{font-size:41.460000px;}
.fs7_c01205{font-size:44.940000px;}
.fsa_c01205{font-size:55.320000px;}
.fsc_c01205{font-size:58.740000px;}
.fs8_c01205{font-size:62.220000px;}
.fs9_c01205{font-size:65.640000px;}
.fs13_c01205{font-size:79.500000px;}
.fs1_c01205{font-size:82.920000px;}
.y0_c01205{bottom:0.000000px;}
.y1b_c01205{bottom:723.165000px;}
.y1a_c01205{bottom:742.170000px;}
.y19_c01205{bottom:745.635000px;}
.y17_c01205{bottom:748.230000px;}
.y18_c01205{bottom:754.275000px;}
.y15_c01205{bottom:763.770000px;}
.y16_c01205{bottom:777.600000px;}
.y13_c01205{bottom:780.195000px;}
.y14_c01205{bottom:781.920000px;}
.y12_c01205{bottom:791.430000px;}
.y11_c01205{bottom:792.285000px;}
.y1c_c01205{bottom:794.010000px;}
.y10_c01205{bottom:797.475000px;}
.ye_c01205{bottom:1063.590000px;}
.yf_c01205{bottom:1064.445000px;}
.yc_c01205{bottom:1227.750000px;}
.yd_c01205{bottom:1229.475000px;}
.yb_c01205{bottom:1235.520000px;}
.y9_c01205{bottom:1381.530000px;}
.ya_c01205{bottom:1384.995000px;}
.y5_c01205{bottom:1397.955000px;}
.y7_c01205{bottom:1398.810000px;}
.y4_c01205{bottom:1399.680000px;}
.y6_c01205{bottom:1400.550000px;}
.y3_c01205{bottom:1401.405000px;}
.y8_c01205{bottom:1403.130000px;}
.y2_c01205{bottom:1410.045000px;}
.y1_c01205{bottom:1432.515000px;}
.h6_c01205{height:3.110063px;}
.h4_c01205{height:5.399414px;}
.h3_c01205{height:6.209326px;}
.hf_c01205{height:9.340986px;}
.h13_c01205{height:12.418652px;}
.h10_c01205{height:15.550313px;}
.hc_c01205{height:18.681973px;}
.h7_c01205{height:21.759639px;}
.h5_c01205{height:24.891299px;}
.h1_c01205{height:27.968965px;}
.h12_c01205{height:31.100625px;}
.he_c01205{height:34.232285px;}
.h11_c01205{height:37.309951px;}
.h8_c01205{height:40.441611px;}
.hb_c01205{height:49.782598px;}
.hd_c01205{height:52.860264px;}
.h9_c01205{height:55.991924px;}
.ha_c01205{height:59.069590px;}
.h14_c01205{height:71.542236px;}
.h2_c01205{height:74.619902px;}
.h0_c01205{height:1512.000000px;}
.w1_c01205{width:1086.750000px;}
.w0_c01205{width:1086.915000px;}
.x0_c01205{left:0.000000px;}
.x1c_c01205{left:6.915000px;}
.x19_c01205{left:9.510000px;}
.x1a_c01205{left:15.555000px;}
.x20_c01205{left:26.790000px;}
.x1d_c01205{left:38.880000px;}
.x1b_c01205{left:47.520000px;}
.x1f_c01205{left:60.480000px;}
.x1e_c01205{left:62.205000px;}
.x14_c01205{left:140.835000px;}
.x15_c01205{left:145.155000px;}
.x16_c01205{left:159.840000px;}
.x17_c01205{left:169.350000px;}
.x21_c01205{left:178.845000px;}
.x18_c01205{left:182.310000px;}
.x22_c01205{left:184.035000px;}
.xe_c01205{left:359.430000px;}
.xf_c01205{left:412.125000px;}
.x2_c01205{left:422.490000px;}
.x3_c01205{left:435.450000px;}
.x4_c01205{left:454.470000px;}
.x5_c01205{left:482.115000px;}
.x10_c01205{left:496.800000px;}
.x6_c01205{left:501.120000px;}
.x11_c01205{left:509.760000px;}
.x12_c01205{left:531.360000px;}
.x7_c01205{left:537.405000px;}
.x8_c01205{left:555.555000px;}
.x9_c01205{left:613.440000px;}
.xa_c01205{left:628.125000px;}
.x1_c01205{left:645.405000px;}
.xb_c01205{left:669.600000px;}
.xc_c01205{left:691.200000px;}
.x13_c01205{left:730.080000px;}
.xd_c01205{left:739.590000px;}
@media print{
.v1_c01205{vertical-align:-3.093333pt;}
.v0_c01205{vertical-align:0.000000pt;}
.ls1_c01205{letter-spacing:0.000000pt;}
.ls0_c01205{letter-spacing:33.978667pt;}
.ws1_c01205{word-spacing:0.000000pt;}
.ws0_c01205{word-spacing:113.990357pt;}
.fs5_c01205{font-size:3.072000pt;}
.fs3_c01205{font-size:5.333333pt;}
.fs2_c01205{font-size:6.133333pt;}
.fse_c01205{font-size:9.226667pt;}
.fs12_c01205{font-size:12.266667pt;}
.fsf_c01205{font-size:15.360000pt;}
.fsb_c01205{font-size:18.453333pt;}
.fs6_c01205{font-size:21.493333pt;}
.fs4_c01205{font-size:24.586667pt;}
.fs0_c01205{font-size:27.626667pt;}
.fs11_c01205{font-size:30.720000pt;}
.fsd_c01205{font-size:33.813333pt;}
.fs10_c01205{font-size:36.853333pt;}
.fs7_c01205{font-size:39.946667pt;}
.fsa_c01205{font-size:49.173333pt;}
.fsc_c01205{font-size:52.213333pt;}
.fs8_c01205{font-size:55.306667pt;}
.fs9_c01205{font-size:58.346667pt;}
.fs13_c01205{font-size:70.666667pt;}
.fs1_c01205{font-size:73.706667pt;}
.y0_c01205{bottom:0.000000pt;}
.y1b_c01205{bottom:642.813333pt;}
.y1a_c01205{bottom:659.706667pt;}
.y19_c01205{bottom:662.786667pt;}
.y17_c01205{bottom:665.093333pt;}
.y18_c01205{bottom:670.466667pt;}
.y15_c01205{bottom:678.906667pt;}
.y16_c01205{bottom:691.200000pt;}
.y13_c01205{bottom:693.506667pt;}
.y14_c01205{bottom:695.040000pt;}
.y12_c01205{bottom:703.493333pt;}
.y11_c01205{bottom:704.253333pt;}
.y1c_c01205{bottom:705.786667pt;}
.y10_c01205{bottom:708.866667pt;}
.ye_c01205{bottom:945.413333pt;}
.yf_c01205{bottom:946.173333pt;}
.yc_c01205{bottom:1091.333333pt;}
.yd_c01205{bottom:1092.866667pt;}
.yb_c01205{bottom:1098.240000pt;}
.y9_c01205{bottom:1228.026667pt;}
.ya_c01205{bottom:1231.106667pt;}
.y5_c01205{bottom:1242.626667pt;}
.y7_c01205{bottom:1243.386667pt;}
.y4_c01205{bottom:1244.160000pt;}
.y6_c01205{bottom:1244.933333pt;}
.y3_c01205{bottom:1245.693333pt;}
.y8_c01205{bottom:1247.226667pt;}
.y2_c01205{bottom:1253.373333pt;}
.y1_c01205{bottom:1273.346667pt;}
.h6_c01205{height:2.764500pt;}
.h4_c01205{height:4.799479pt;}
.h3_c01205{height:5.519401pt;}
.hf_c01205{height:8.303099pt;}
.h13_c01205{height:11.038802pt;}
.h10_c01205{height:13.822500pt;}
.hc_c01205{height:16.606198pt;}
.h7_c01205{height:19.341901pt;}
.h5_c01205{height:22.125599pt;}
.h1_c01205{height:24.861302pt;}
.h12_c01205{height:27.645000pt;}
.he_c01205{height:30.428698pt;}
.h11_c01205{height:33.164401pt;}
.h8_c01205{height:35.948099pt;}
.hb_c01205{height:44.251198pt;}
.hd_c01205{height:46.986901pt;}
.h9_c01205{height:49.770599pt;}
.ha_c01205{height:52.506302pt;}
.h14_c01205{height:63.593099pt;}
.h2_c01205{height:66.328802pt;}
.h0_c01205{height:1344.000000pt;}
.w1_c01205{width:966.000000pt;}
.w0_c01205{width:966.146667pt;}
.x0_c01205{left:0.000000pt;}
.x1c_c01205{left:6.146667pt;}
.x19_c01205{left:8.453333pt;}
.x1a_c01205{left:13.826667pt;}
.x20_c01205{left:23.813333pt;}
.x1d_c01205{left:34.560000pt;}
.x1b_c01205{left:42.240000pt;}
.x1f_c01205{left:53.760000pt;}
.x1e_c01205{left:55.293333pt;}
.x14_c01205{left:125.186667pt;}
.x15_c01205{left:129.026667pt;}
.x16_c01205{left:142.080000pt;}
.x17_c01205{left:150.533333pt;}
.x21_c01205{left:158.973333pt;}
.x18_c01205{left:162.053333pt;}
.x22_c01205{left:163.586667pt;}
.xe_c01205{left:319.493333pt;}
.xf_c01205{left:366.333333pt;}
.x2_c01205{left:375.546667pt;}
.x3_c01205{left:387.066667pt;}
.x4_c01205{left:403.973333pt;}
.x5_c01205{left:428.546667pt;}
.x10_c01205{left:441.600000pt;}
.x6_c01205{left:445.440000pt;}
.x11_c01205{left:453.120000pt;}
.x12_c01205{left:472.320000pt;}
.x7_c01205{left:477.693333pt;}
.x8_c01205{left:493.826667pt;}
.x9_c01205{left:545.280000pt;}
.xa_c01205{left:558.333333pt;}
.x1_c01205{left:573.693333pt;}
.xb_c01205{left:595.200000pt;}
.xc_c01205{left:614.400000pt;}
.x13_c01205{left:648.960000pt;}
.xd_c01205{left:657.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9390e6df9d4041e55da96b69.woff2')format("woff");}.ff1_c01206{font-family:ff1_c01206;line-height:1.109863;font-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_c01206{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);}
.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;}
.fc0_c01206{color:transparent;}
.fs0_c01206{font-size:600.000000px;}
.y0_c01206{bottom:0.000000px;}
.y1_c01206{bottom:15.000000px;}
.h2_c01206{height:539.941406px;}
.h1_c01206{height:1513.500000px;}
.h0_c01206{height:1513.725000px;}
.w1_c01206{width:1076.250000px;}
.w0_c01206{width:1076.550000px;}
.x0_c01206{left:0.000000px;}
.x1_c01206{left:15.000000px;}
@media print{
.v0_c01206{vertical-align:0.000000pt;}
.ls0_c01206{letter-spacing:0.000000pt;}
.ws0_c01206{word-spacing:0.000000pt;}
.fs0_c01206{font-size:533.333333pt;}
.y0_c01206{bottom:0.000000pt;}
.y1_c01206{bottom:13.333333pt;}
.h2_c01206{height:479.947917pt;}
.h1_c01206{height:1345.333333pt;}
.h0_c01206{height:1345.533333pt;}
.w1_c01206{width:956.666667pt;}
.w0_c01206{width:956.933333pt;}
.x0_c01206{left:0.000000pt;}
.x1_c01206{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b12646a1724c8b78258dc1f5.woff2')format("woff");}.ff1_c01207{font-family:ff1_c01207;line-height:1.109863;font-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_c01207{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m2_c01207{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);}
.m1_c01207{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);}
.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;}
.fs1_c01207{font-size:51.840000px;}
.fs0_c01207{font-size:55.320000px;}
.fs2_c01207{font-size:65.640000px;}
.y0_c01207{bottom:0.000000px;}
.y3_c01207{bottom:828.570000px;}
.y2_c01207{bottom:850.170000px;}
.y1_c01207{bottom:954.720000px;}
.h2_c01207{height:46.650937px;}
.h1_c01207{height:49.782598px;}
.h3_c01207{height:59.069590px;}
.h0_c01207{height:1512.000000px;}
.w1_c01207{width:1086.750000px;}
.w0_c01207{width:1086.915000px;}
.x0_c01207{left:0.000000px;}
.x2_c01207{left:1.725000px;}
.x1_c01207{left:7.770000px;}
@media print{
.v0_c01207{vertical-align:0.000000pt;}
.ls0_c01207{letter-spacing:0.000000pt;}
.ws0_c01207{word-spacing:0.000000pt;}
.fs1_c01207{font-size:46.080000pt;}
.fs0_c01207{font-size:49.173333pt;}
.fs2_c01207{font-size:58.346667pt;}
.y0_c01207{bottom:0.000000pt;}
.y3_c01207{bottom:736.506667pt;}
.y2_c01207{bottom:755.706667pt;}
.y1_c01207{bottom:848.640000pt;}
.h2_c01207{height:41.467500pt;}
.h1_c01207{height:44.251198pt;}
.h3_c01207{height:52.506302pt;}
.h0_c01207{height:1344.000000pt;}
.w1_c01207{width:966.000000pt;}
.w0_c01207{width:966.146667pt;}
.x0_c01207{left:0.000000pt;}
.x2_c01207{left:1.533333pt;}
.x1_c01207{left:6.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_07ed69df13bd513db12382ff.woff2')format("woff");}.ff1_c01208{font-family:ff1_c01208;line-height:1.109863;font-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_c01208{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);}
.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;}
.fs0_c01208{font-size:600.000000px;}
.y0_c01208{bottom:0.000000px;}
.y1_c01208{bottom:15.000000px;}
.h2_c01208{height:539.941406px;}
.h1_c01208{height:1513.500000px;}
.h0_c01208{height:1513.725000px;}
.w1_c01208{width:1076.250000px;}
.w0_c01208{width:1076.550000px;}
.x0_c01208{left:0.000000px;}
.x1_c01208{left:15.000000px;}
@media print{
.v0_c01208{vertical-align:0.000000pt;}
.ls0_c01208{letter-spacing:0.000000pt;}
.ws0_c01208{word-spacing:0.000000pt;}
.fs0_c01208{font-size:533.333333pt;}
.y0_c01208{bottom:0.000000pt;}
.y1_c01208{bottom:13.333333pt;}
.h2_c01208{height:479.947917pt;}
.h1_c01208{height:1345.333333pt;}
.h0_c01208{height:1345.533333pt;}
.w1_c01208{width:956.666667pt;}
.w0_c01208{width:956.933333pt;}
.x0_c01208{left:0.000000pt;}
.x1_c01208{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c723de63b5ae3b0deaba5ce1.woff2')format("woff");}.ff1_c01209{font-family:ff1_c01209;line-height:1.109863;font-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_c01209{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c01209{transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);}
.m9_c01209{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);}
.m3_c01209{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.ma_c01209{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);}
.m0_c01209{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);}
.m1_c01209{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01209{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c01209{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);}
.mb_c01209{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);}
.m5_c01209{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m8_c01209{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,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;}
.fs5_c01209{font-size:6.900000px;}
.fs1_c01209{font-size:10.380000px;}
.fs3_c01209{font-size:13.800000px;}
.fs6_c01209{font-size:31.080000px;}
.fs7_c01209{font-size:38.040000px;}
.fs2_c01209{font-size:51.840000px;}
.fs0_c01209{font-size:69.120000px;}
.fs4_c01209{font-size:76.020000px;}
.y0_c01209{bottom:0.000000px;}
.ye_c01209{bottom:568.515000px;}
.yf_c01209{bottom:574.560000px;}
.yd_c01209{bottom:1093.830000px;}
.yb_c01209{bottom:1098.150000px;}
.yc_c01209{bottom:1099.005000px;}
.ya_c01209{bottom:1099.875000px;}
.y8_c01209{bottom:1111.110000px;}
.y7_c01209{bottom:1124.070000px;}
.y9_c01209{bottom:1130.115000px;}
.y5_c01209{bottom:1132.710000px;}
.y6_c01209{bottom:1133.565000px;}
.y4_c01209{bottom:1150.845000px;}
.y3_c01209{bottom:1151.715000px;}
.y2_c01209{bottom:1153.440000px;}
.y1_c01209{bottom:1274.400000px;}
.h6_c01209{height:6.209326px;}
.h2_c01209{height:9.340986px;}
.h4_c01209{height:12.418652px;}
.h7_c01209{height:27.968965px;}
.h8_c01209{height:34.232285px;}
.h3_c01209{height:46.650937px;}
.h1_c01209{height:62.201250px;}
.h5_c01209{height:68.410576px;}
.h0_c01209{height:1512.000000px;}
.w1_c01209{width:1086.750000px;}
.w0_c01209{width:1086.915000px;}
.x0_c01209{left:0.000000px;}
.x1_c01209{left:8.640000px;}
.x7_c01209{left:14.685000px;}
.x5_c01209{left:31.965000px;}
.x2_c01209{left:42.330000px;}
.x3_c01209{left:45.795000px;}
.x6_c01209{left:59.610000px;}
.x4_c01209{left:64.800000px;}
@media print{
.v0_c01209{vertical-align:0.000000pt;}
.ls0_c01209{letter-spacing:0.000000pt;}
.ws0_c01209{word-spacing:0.000000pt;}
.fs5_c01209{font-size:6.133333pt;}
.fs1_c01209{font-size:9.226667pt;}
.fs3_c01209{font-size:12.266667pt;}
.fs6_c01209{font-size:27.626667pt;}
.fs7_c01209{font-size:33.813333pt;}
.fs2_c01209{font-size:46.080000pt;}
.fs0_c01209{font-size:61.440000pt;}
.fs4_c01209{font-size:67.573333pt;}
.y0_c01209{bottom:0.000000pt;}
.ye_c01209{bottom:505.346667pt;}
.yf_c01209{bottom:510.720000pt;}
.yd_c01209{bottom:972.293333pt;}
.yb_c01209{bottom:976.133333pt;}
.yc_c01209{bottom:976.893333pt;}
.ya_c01209{bottom:977.666667pt;}
.y8_c01209{bottom:987.653333pt;}
.y7_c01209{bottom:999.173333pt;}
.y9_c01209{bottom:1004.546667pt;}
.y5_c01209{bottom:1006.853333pt;}
.y6_c01209{bottom:1007.613333pt;}
.y4_c01209{bottom:1022.973333pt;}
.y3_c01209{bottom:1023.746667pt;}
.y2_c01209{bottom:1025.280000pt;}
.y1_c01209{bottom:1132.800000pt;}
.h6_c01209{height:5.519401pt;}
.h2_c01209{height:8.303099pt;}
.h4_c01209{height:11.038802pt;}
.h7_c01209{height:24.861302pt;}
.h8_c01209{height:30.428698pt;}
.h3_c01209{height:41.467500pt;}
.h1_c01209{height:55.290000pt;}
.h5_c01209{height:60.809401pt;}
.h0_c01209{height:1344.000000pt;}
.w1_c01209{width:966.000000pt;}
.w0_c01209{width:966.146667pt;}
.x0_c01209{left:0.000000pt;}
.x1_c01209{left:7.680000pt;}
.x7_c01209{left:13.053333pt;}
.x5_c01209{left:28.413333pt;}
.x2_c01209{left:37.626667pt;}
.x3_c01209{left:40.706667pt;}
.x6_c01209{left:52.986667pt;}
.x4_c01209{left:57.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_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_81408902ae8562f4b4bad7cb.woff2')format("woff");}.ff1_c01210{font-family:ff1_c01210;line-height:1.109863;font-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_c01210{transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);}
.m9_c01210{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c01210{transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);}
.mb_c01210{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.mf_c01210{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m3_c01210{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);}
.m1_c01210{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);}
.mc_c01210{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.ma_c01210{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);}
.m8_c01210{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2_c01210{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c01210{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c01210{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md_c01210{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);}
.m10_c01210{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m5_c01210{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m0_c01210{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,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;}
.fs9_c01210{font-size:6.000000px;}
.fsd_c01210{font-size:17.280000px;}
.fs0_c01210{font-size:20.760000px;}
.fs1_c01210{font-size:24.180000px;}
.fs2_c01210{font-size:27.660000px;}
.fs5_c01210{font-size:34.560000px;}
.fs3_c01210{font-size:41.460000px;}
.fs7_c01210{font-size:44.940000px;}
.fs8_c01210{font-size:48.360000px;}
.fsc_c01210{font-size:51.840000px;}
.fse_c01210{font-size:55.320000px;}
.fsa_c01210{font-size:58.740000px;}
.fs6_c01210{font-size:62.220000px;}
.fs4_c01210{font-size:65.640000px;}
.fsb_c01210{font-size:69.120000px;}
.y0_c01210{bottom:0.000000px;}
.y12_c01210{bottom:253.155000px;}
.y11_c01210{bottom:270.435000px;}
.y10_c01210{bottom:287.715000px;}
.yf_c01210{bottom:294.630000px;}
.ye_c01210{bottom:1251.075000px;}
.yd_c01210{bottom:1269.210000px;}
.yc_c01210{bottom:1282.170000px;}
.yb_c01210{bottom:1284.765000px;}
.ya_c01210{bottom:1300.320000px;}
.y8_c01210{bottom:1303.770000px;}
.y9_c01210{bottom:1304.640000px;}
.y6_c01210{bottom:1317.600000px;}
.y7_c01210{bottom:1318.470000px;}
.y5_c01210{bottom:1334.880000px;}
.y4_c01210{bottom:1352.160000px;}
.y3_c01210{bottom:1356.480000px;}
.y2_c01210{bottom:1362.525000px;}
.y1_c01210{bottom:1427.325000px;}
.hb_c01210{height:5.399414px;}
.hf_c01210{height:15.550313px;}
.h2_c01210{height:18.681973px;}
.h3_c01210{height:21.759639px;}
.h4_c01210{height:24.891299px;}
.h7_c01210{height:31.100625px;}
.h5_c01210{height:37.309951px;}
.h9_c01210{height:40.441611px;}
.ha_c01210{height:43.519277px;}
.he_c01210{height:46.650937px;}
.h10_c01210{height:49.782598px;}
.hc_c01210{height:52.860264px;}
.h8_c01210{height:55.991924px;}
.h6_c01210{height:59.069590px;}
.hd_c01210{height:62.201250px;}
.h1_c01210{height:1518.750000px;}
.h0_c01210{height:1518.915000px;}
.w0_c01210{width:1085.190000px;}
.w1_c01210{width:1085.250000px;}
.x0_c01210{left:0.000000px;}
.x6_c01210{left:1008.285000px;}
.x9_c01210{left:1031.610000px;}
.x8_c01210{left:1035.930000px;}
.x1_c01210{left:1038.525000px;}
.x7_c01210{left:1040.250000px;}
.x5_c01210{left:1045.440000px;}
.x2_c01210{left:1048.035000px;}
.x4_c01210{left:1072.230000px;}
.x3_c01210{left:1075.680000px;}
@media print{
.v0_c01210{vertical-align:0.000000pt;}
.ls0_c01210{letter-spacing:0.000000pt;}
.ws0_c01210{word-spacing:0.000000pt;}
.fs9_c01210{font-size:5.333333pt;}
.fsd_c01210{font-size:15.360000pt;}
.fs0_c01210{font-size:18.453333pt;}
.fs1_c01210{font-size:21.493333pt;}
.fs2_c01210{font-size:24.586667pt;}
.fs5_c01210{font-size:30.720000pt;}
.fs3_c01210{font-size:36.853333pt;}
.fs7_c01210{font-size:39.946667pt;}
.fs8_c01210{font-size:42.986667pt;}
.fsc_c01210{font-size:46.080000pt;}
.fse_c01210{font-size:49.173333pt;}
.fsa_c01210{font-size:52.213333pt;}
.fs6_c01210{font-size:55.306667pt;}
.fs4_c01210{font-size:58.346667pt;}
.fsb_c01210{font-size:61.440000pt;}
.y0_c01210{bottom:0.000000pt;}
.y12_c01210{bottom:225.026667pt;}
.y11_c01210{bottom:240.386667pt;}
.y10_c01210{bottom:255.746667pt;}
.yf_c01210{bottom:261.893333pt;}
.ye_c01210{bottom:1112.066667pt;}
.yd_c01210{bottom:1128.186667pt;}
.yc_c01210{bottom:1139.706667pt;}
.yb_c01210{bottom:1142.013333pt;}
.ya_c01210{bottom:1155.840000pt;}
.y8_c01210{bottom:1158.906667pt;}
.y9_c01210{bottom:1159.680000pt;}
.y6_c01210{bottom:1171.200000pt;}
.y7_c01210{bottom:1171.973333pt;}
.y5_c01210{bottom:1186.560000pt;}
.y4_c01210{bottom:1201.920000pt;}
.y3_c01210{bottom:1205.760000pt;}
.y2_c01210{bottom:1211.133333pt;}
.y1_c01210{bottom:1268.733333pt;}
.hb_c01210{height:4.799479pt;}
.hf_c01210{height:13.822500pt;}
.h2_c01210{height:16.606198pt;}
.h3_c01210{height:19.341901pt;}
.h4_c01210{height:22.125599pt;}
.h7_c01210{height:27.645000pt;}
.h5_c01210{height:33.164401pt;}
.h9_c01210{height:35.948099pt;}
.ha_c01210{height:38.683802pt;}
.he_c01210{height:41.467500pt;}
.h10_c01210{height:44.251198pt;}
.hc_c01210{height:46.986901pt;}
.h8_c01210{height:49.770599pt;}
.h6_c01210{height:52.506302pt;}
.hd_c01210{height:55.290000pt;}
.h1_c01210{height:1350.000000pt;}
.h0_c01210{height:1350.146667pt;}
.w0_c01210{width:964.613333pt;}
.w1_c01210{width:964.666667pt;}
.x0_c01210{left:0.000000pt;}
.x6_c01210{left:896.253333pt;}
.x9_c01210{left:916.986667pt;}
.x8_c01210{left:920.826667pt;}
.x1_c01210{left:923.133333pt;}
.x7_c01210{left:924.666667pt;}
.x5_c01210{left:929.280000pt;}
.x2_c01210{left:931.586667pt;}
.x4_c01210{left:953.093333pt;}
.x3_c01210{left:956.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_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_71176fe616533050e0b246fe.woff2')format("woff");}.ff1_c01211{font-family:ff1_c01211;line-height:1.109863;font-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_c01211{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);}
.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;}
.fc0_c01211{color:transparent;}
.fs0_c01211{font-size:600.000000px;}
.y0_c01211{bottom:0.000000px;}
.y1_c01211{bottom:15.000000px;}
.h2_c01211{height:539.941406px;}
.h0_c01211{height:1515.450000px;}
.h1_c01211{height:1515.750000px;}
.w0_c01211{width:1094.685000px;}
.w1_c01211{width:1095.000000px;}
.x0_c01211{left:0.000000px;}
.x1_c01211{left:15.000000px;}
@media print{
.v0_c01211{vertical-align:0.000000pt;}
.ls0_c01211{letter-spacing:0.000000pt;}
.ws0_c01211{word-spacing:0.000000pt;}
.fs0_c01211{font-size:533.333333pt;}
.y0_c01211{bottom:0.000000pt;}
.y1_c01211{bottom:13.333333pt;}
.h2_c01211{height:479.947917pt;}
.h0_c01211{height:1347.066667pt;}
.h1_c01211{height:1347.333333pt;}
.w0_c01211{width:973.053333pt;}
.w1_c01211{width:973.333333pt;}
.x0_c01211{left:0.000000pt;}
.x1_c01211{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fbd511559c850f74c3563711.woff2')format("woff");}.ff1_c01212{font-family:ff1_c01212;line-height:1.109863;font-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_c01212{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01212{transform:matrix(0.093175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093175,0.000000,0.000000,0.250000,0,0);}
.md_c01212{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_c01212{transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);}
.m3_c01212{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01212{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);}
.m10_c01212{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);}
.me_c01212{transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);}
.m2_c01212{transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);}
.m14_c01212{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.mb_c01212{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);}
.m20_c01212{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);}
.m1e_c01212{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);}
.m19_c01212{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);}
.mc_c01212{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.m6_c01212{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m13_c01212{transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);}
.m11_c01212{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01212{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);}
.m12_c01212{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c01212{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01212{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);}
.ma_c01212{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);}
.m1f_c01212{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m22_c01212{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m8_c01212{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c01212{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9_c01212{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m15_c01212{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);}
.m1d_c01212{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m18_c01212{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m0_c01212{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1_c01212{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m23_c01212{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m17_c01212{transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);}
.m7_c01212{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.v1_c01212{vertical-align:-3.480000px;}
.v0_c01212{vertical-align:0.000000px;}
.ls1_c01212{letter-spacing:0.000000px;}
.ls0_c01212{letter-spacing:70.067867px;}
.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;}
.fs6_c01212{font-size:3.456000px;}
.fs10_c01212{font-size:6.000000px;}
.fs3_c01212{font-size:6.900000px;}
.fs12_c01212{font-size:10.380000px;}
.fs7_c01212{font-size:13.800000px;}
.fs1_c01212{font-size:17.280000px;}
.fs4_c01212{font-size:20.760000px;}
.fs5_c01212{font-size:24.180000px;}
.fs2_c01212{font-size:31.080000px;}
.fs0_c01212{font-size:34.560000px;}
.fsd_c01212{font-size:38.040000px;}
.fse_c01212{font-size:41.460000px;}
.fs9_c01212{font-size:44.940000px;}
.fs11_c01212{font-size:51.840000px;}
.fsb_c01212{font-size:55.320000px;}
.fsc_c01212{font-size:58.740000px;}
.fsa_c01212{font-size:62.220000px;}
.fs8_c01212{font-size:65.640000px;}
.fsf_c01212{font-size:69.120000px;}
.y0_c01212{bottom:0.000000px;}
.y29_c01212{bottom:599.610000px;}
.y2a_c01212{bottom:606.525000px;}
.y28_c01212{bottom:617.760000px;}
.y26_c01212{bottom:635.040000px;}
.y27_c01212{bottom:636.765000px;}
.y25_c01212{bottom:649.725000px;}
.y24_c01212{bottom:656.640000px;}
.y23_c01212{bottom:663.555000px;}
.y21_c01212{bottom:811.290000px;}
.y22_c01212{bottom:821.670000px;}
.y1f_c01212{bottom:830.310000px;}
.y20_c01212{bottom:833.760000px;}
.y1c_c01212{bottom:988.410000px;}
.y1d_c01212{bottom:990.150000px;}
.y1e_c01212{bottom:1013.475000px;}
.y1b_c01212{bottom:1247.610000px;}
.y1a_c01212{bottom:1250.205000px;}
.y19_c01212{bottom:1264.890000px;}
.y18_c01212{bottom:1267.485000px;}
.y16_c01212{bottom:1282.170000px;}
.y17_c01212{bottom:1283.910000px;}
.y14_c01212{bottom:1289.955000px;}
.y15_c01212{bottom:1294.275000px;}
.y13_c01212{bottom:1301.190000px;}
.y11_c01212{bottom:1319.325000px;}
.y12_c01212{bottom:1321.050000px;}
.y10_c01212{bottom:1335.750000px;}
.yf_c01212{bottom:1336.605000px;}
.ye_c01212{bottom:1352.160000px;}
.yd_c01212{bottom:1370.310000px;}
.yc_c01212{bottom:1389.315000px;}
.yb_c01212{bottom:1393.635000px;}
.y6_c01212{bottom:1416.090000px;}
.ya_c01212{bottom:1424.730000px;}
.y4_c01212{bottom:1427.325000px;}
.y5_c01212{bottom:1428.195000px;}
.y8_c01212{bottom:1430.790000px;}
.y9_c01212{bottom:1433.370000px;}
.y3_c01212{bottom:1435.965000px;}
.y1_c01212{bottom:1444.605000px;}
.y2_c01212{bottom:1445.475000px;}
.y7_c01212{bottom:1448.070000px;}
.h8_c01212{height:3.110063px;}
.h12_c01212{height:5.399414px;}
.h5_c01212{height:6.209326px;}
.h14_c01212{height:9.340986px;}
.h9_c01212{height:12.418652px;}
.h3_c01212{height:15.550313px;}
.h6_c01212{height:18.681973px;}
.h7_c01212{height:21.759639px;}
.h4_c01212{height:27.968965px;}
.h2_c01212{height:31.100625px;}
.hf_c01212{height:34.232285px;}
.h10_c01212{height:37.309951px;}
.hb_c01212{height:40.441611px;}
.h13_c01212{height:46.650937px;}
.hd_c01212{height:49.782598px;}
.he_c01212{height:52.860264px;}
.hc_c01212{height:55.991924px;}
.ha_c01212{height:59.069590px;}
.h11_c01212{height:62.201250px;}
.h1_c01212{height:1518.750000px;}
.h0_c01212{height:1518.915000px;}
.w0_c01212{width:1085.190000px;}
.w1_c01212{width:1085.250000px;}
.x0_c01212{left:0.000000px;}
.x1_c01212{left:388.800000px;}
.x3_c01212{left:436.320000px;}
.x2_c01212{left:441.510000px;}
.x4_c01212{left:444.090000px;}
.x5_c01212{left:450.150000px;}
.x9_c01212{left:624.675000px;}
.x7_c01212{left:629.850000px;}
.x8_c01212{left:650.595000px;}
.x6_c01212{left:880.410000px;}
.x16_c01212{left:1004.835000px;}
.x11_c01212{left:1012.605000px;}
.xd_c01212{left:1032.480000px;}
.xf_c01212{left:1035.930000px;}
.x12_c01212{left:1037.670000px;}
.xb_c01212{left:1046.310000px;}
.x15_c01212{left:1048.890000px;}
.x14_c01212{left:1051.485000px;}
.xe_c01212{left:1053.210000px;}
.xc_c01212{left:1054.950000px;}
.xa_c01212{left:1060.125000px;}
.x17_c01212{left:1063.590000px;}
.x19_c01212{left:1067.040000px;}
.x10_c01212{left:1072.230000px;}
.x13_c01212{left:1074.810000px;}
.x18_c01212{left:1082.595000px;}
@media print{
.v1_c01212{vertical-align:-3.093333pt;}
.v0_c01212{vertical-align:0.000000pt;}
.ls1_c01212{letter-spacing:0.000000pt;}
.ls0_c01212{letter-spacing:62.282548pt;}
.ws0_c01212{word-spacing:0.000000pt;}
.fs6_c01212{font-size:3.072000pt;}
.fs10_c01212{font-size:5.333333pt;}
.fs3_c01212{font-size:6.133333pt;}
.fs12_c01212{font-size:9.226667pt;}
.fs7_c01212{font-size:12.266667pt;}
.fs1_c01212{font-size:15.360000pt;}
.fs4_c01212{font-size:18.453333pt;}
.fs5_c01212{font-size:21.493333pt;}
.fs2_c01212{font-size:27.626667pt;}
.fs0_c01212{font-size:30.720000pt;}
.fsd_c01212{font-size:33.813333pt;}
.fse_c01212{font-size:36.853333pt;}
.fs9_c01212{font-size:39.946667pt;}
.fs11_c01212{font-size:46.080000pt;}
.fsb_c01212{font-size:49.173333pt;}
.fsc_c01212{font-size:52.213333pt;}
.fsa_c01212{font-size:55.306667pt;}
.fs8_c01212{font-size:58.346667pt;}
.fsf_c01212{font-size:61.440000pt;}
.y0_c01212{bottom:0.000000pt;}
.y29_c01212{bottom:532.986667pt;}
.y2a_c01212{bottom:539.133333pt;}
.y28_c01212{bottom:549.120000pt;}
.y26_c01212{bottom:564.480000pt;}
.y27_c01212{bottom:566.013333pt;}
.y25_c01212{bottom:577.533333pt;}
.y24_c01212{bottom:583.680000pt;}
.y23_c01212{bottom:589.826667pt;}
.y21_c01212{bottom:721.146667pt;}
.y22_c01212{bottom:730.373333pt;}
.y1f_c01212{bottom:738.053333pt;}
.y20_c01212{bottom:741.120000pt;}
.y1c_c01212{bottom:878.586667pt;}
.y1d_c01212{bottom:880.133333pt;}
.y1e_c01212{bottom:900.866667pt;}
.y1b_c01212{bottom:1108.986667pt;}
.y1a_c01212{bottom:1111.293333pt;}
.y19_c01212{bottom:1124.346667pt;}
.y18_c01212{bottom:1126.653333pt;}
.y16_c01212{bottom:1139.706667pt;}
.y17_c01212{bottom:1141.253333pt;}
.y14_c01212{bottom:1146.626667pt;}
.y15_c01212{bottom:1150.466667pt;}
.y13_c01212{bottom:1156.613333pt;}
.y11_c01212{bottom:1172.733333pt;}
.y12_c01212{bottom:1174.266667pt;}
.y10_c01212{bottom:1187.333333pt;}
.yf_c01212{bottom:1188.093333pt;}
.ye_c01212{bottom:1201.920000pt;}
.yd_c01212{bottom:1218.053333pt;}
.yc_c01212{bottom:1234.946667pt;}
.yb_c01212{bottom:1238.786667pt;}
.y6_c01212{bottom:1258.746667pt;}
.ya_c01212{bottom:1266.426667pt;}
.y4_c01212{bottom:1268.733333pt;}
.y5_c01212{bottom:1269.506667pt;}
.y8_c01212{bottom:1271.813333pt;}
.y9_c01212{bottom:1274.106667pt;}
.y3_c01212{bottom:1276.413333pt;}
.y1_c01212{bottom:1284.093333pt;}
.y2_c01212{bottom:1284.866667pt;}
.y7_c01212{bottom:1287.173333pt;}
.h8_c01212{height:2.764500pt;}
.h12_c01212{height:4.799479pt;}
.h5_c01212{height:5.519401pt;}
.h14_c01212{height:8.303099pt;}
.h9_c01212{height:11.038802pt;}
.h3_c01212{height:13.822500pt;}
.h6_c01212{height:16.606198pt;}
.h7_c01212{height:19.341901pt;}
.h4_c01212{height:24.861302pt;}
.h2_c01212{height:27.645000pt;}
.hf_c01212{height:30.428698pt;}
.h10_c01212{height:33.164401pt;}
.hb_c01212{height:35.948099pt;}
.h13_c01212{height:41.467500pt;}
.hd_c01212{height:44.251198pt;}
.he_c01212{height:46.986901pt;}
.hc_c01212{height:49.770599pt;}
.ha_c01212{height:52.506302pt;}
.h11_c01212{height:55.290000pt;}
.h1_c01212{height:1350.000000pt;}
.h0_c01212{height:1350.146667pt;}
.w0_c01212{width:964.613333pt;}
.w1_c01212{width:964.666667pt;}
.x0_c01212{left:0.000000pt;}
.x1_c01212{left:345.600000pt;}
.x3_c01212{left:387.840000pt;}
.x2_c01212{left:392.453333pt;}
.x4_c01212{left:394.746667pt;}
.x5_c01212{left:400.133333pt;}
.x9_c01212{left:555.266667pt;}
.x7_c01212{left:559.866667pt;}
.x8_c01212{left:578.306667pt;}
.x6_c01212{left:782.586667pt;}
.x16_c01212{left:893.186667pt;}
.x11_c01212{left:900.093333pt;}
.xd_c01212{left:917.760000pt;}
.xf_c01212{left:920.826667pt;}
.x12_c01212{left:922.373333pt;}
.xb_c01212{left:930.053333pt;}
.x15_c01212{left:932.346667pt;}
.x14_c01212{left:934.653333pt;}
.xe_c01212{left:936.186667pt;}
.xc_c01212{left:937.733333pt;}
.xa_c01212{left:942.333333pt;}
.x17_c01212{left:945.413333pt;}
.x19_c01212{left:948.480000pt;}
.x10_c01212{left:953.093333pt;}
.x13_c01212{left:955.386667pt;}
.x18_c01212{left:962.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b3881f886c55018ee04cbfe7.woff2')format("woff");}.ff1_c01213{font-family:ff1_c01213;line-height:1.109863;font-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_c01213{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m0_c01213{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c01213{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);}
.m4_c01213{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3_c01213{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01213{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);}
.m6_c01213{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.v0_c01213{vertical-align:0.000000px;}
.v1_c01213{vertical-align:6.900000px;}
.ls2_c01213{letter-spacing:0.000000px;}
.ls1_c01213{letter-spacing:35.255400px;}
.ls0_c01213{letter-spacing:68.159400px;}
.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;}
.fs0_c01213{font-size:10.380000px;}
.fs1_c01213{font-size:13.800000px;}
.fs4_c01213{font-size:17.280000px;}
.fs3_c01213{font-size:20.760000px;}
.fs2_c01213{font-size:27.660000px;}
.fs5_c01213{font-size:31.080000px;}
.fs6_c01213{font-size:51.840000px;}
.y0_c01213{bottom:0.000000px;}
.y7_c01213{bottom:120.090000px;}
.y6_c01213{bottom:646.275000px;}
.y5_c01213{bottom:656.640000px;}
.y4_c01213{bottom:660.090000px;}
.y3_c01213{bottom:1297.725000px;}
.y2_c01213{bottom:1387.590000px;}
.y1_c01213{bottom:1393.635000px;}
.h2_c01213{height:9.340986px;}
.h6_c01213{height:15.550313px;}
.h3_c01213{height:16.240986px;}
.h5_c01213{height:18.681973px;}
.h4_c01213{height:24.891299px;}
.h7_c01213{height:27.968965px;}
.h8_c01213{height:46.650937px;}
.h0_c01213{height:1515.450000px;}
.h1_c01213{height:1515.750000px;}
.w0_c01213{width:1094.685000px;}
.w1_c01213{width:1095.000000px;}
.x0_c01213{left:0.000000px;}
.x4_c01213{left:12.090000px;}
.x3_c01213{left:30.240000px;}
.x5_c01213{left:33.690000px;}
.x6_c01213{left:60.480000px;}
.x2_c01213{left:125.280048px;}
.x1_c01213{left:133.050000px;}
@media print{
.v0_c01213{vertical-align:0.000000pt;}
.v1_c01213{vertical-align:6.133333pt;}
.ls2_c01213{letter-spacing:0.000000pt;}
.ls1_c01213{letter-spacing:31.338133pt;}
.ls0_c01213{letter-spacing:60.586133pt;}
.ws0_c01213{word-spacing:0.000000pt;}
.fs0_c01213{font-size:9.226667pt;}
.fs1_c01213{font-size:12.266667pt;}
.fs4_c01213{font-size:15.360000pt;}
.fs3_c01213{font-size:18.453333pt;}
.fs2_c01213{font-size:24.586667pt;}
.fs5_c01213{font-size:27.626667pt;}
.fs6_c01213{font-size:46.080000pt;}
.y0_c01213{bottom:0.000000pt;}
.y7_c01213{bottom:106.746667pt;}
.y6_c01213{bottom:574.466667pt;}
.y5_c01213{bottom:583.680000pt;}
.y4_c01213{bottom:586.746667pt;}
.y3_c01213{bottom:1153.533333pt;}
.y2_c01213{bottom:1233.413333pt;}
.y1_c01213{bottom:1238.786667pt;}
.h2_c01213{height:8.303099pt;}
.h6_c01213{height:13.822500pt;}
.h3_c01213{height:14.436432pt;}
.h5_c01213{height:16.606198pt;}
.h4_c01213{height:22.125599pt;}
.h7_c01213{height:24.861302pt;}
.h8_c01213{height:41.467500pt;}
.h0_c01213{height:1347.066667pt;}
.h1_c01213{height:1347.333333pt;}
.w0_c01213{width:973.053333pt;}
.w1_c01213{width:973.333333pt;}
.x0_c01213{left:0.000000pt;}
.x4_c01213{left:10.746667pt;}
.x3_c01213{left:26.880000pt;}
.x5_c01213{left:29.946667pt;}
.x6_c01213{left:53.760000pt;}
.x2_c01213{left:111.360043pt;}
.x1_c01213{left:118.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_04ab258cf2e6d75943c6d7d1.woff2')format("woff");}.ff1_c01214{font-family:ff1_c01214;line-height:1.109863;font-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_c01214{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01214{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);}
.m24_c01214{transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);}
.me_c01214{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01214{transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);}
.m8_c01214{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m18_c01214{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);}
.m25_c01214{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m5_c01214{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);}
.mc_c01214{transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);}
.m1f_c01214{transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);}
.m1b_c01214{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);}
.mf_c01214{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);}
.m23_c01214{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);}
.mb_c01214{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.m13_c01214{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m12_c01214{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);}
.m6_c01214{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);}
.m28_c01214{transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);}
.m22_c01214{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.ma_c01214{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.m27_c01214{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);}
.m1_c01214{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);}
.m15_c01214{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9_c01214{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);}
.m20_c01214{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);}
.m0_c01214{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c01214{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);}
.m2_c01214{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);}
.m7_c01214{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);}
.m4_c01214{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c01214{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);}
.m26_c01214{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);}
.m3_c01214{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m16_c01214{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m21_c01214{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);}
.m14_c01214{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.md_c01214{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01214{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m19_c01214{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01214{transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735000,0.000000,0.000000,0.250000,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;}
.fs6_c01214{font-size:3.456000px;}
.fs9_c01214{font-size:6.900000px;}
.fs11_c01214{font-size:10.380000px;}
.fs0_c01214{font-size:17.280000px;}
.fs8_c01214{font-size:20.760000px;}
.fsc_c01214{font-size:27.660000px;}
.fs1_c01214{font-size:31.080000px;}
.fse_c01214{font-size:34.560000px;}
.fs3_c01214{font-size:38.040000px;}
.fsf_c01214{font-size:41.460000px;}
.fsb_c01214{font-size:44.940000px;}
.fs2_c01214{font-size:48.360000px;}
.fs4_c01214{font-size:51.840000px;}
.fs5_c01214{font-size:55.320000px;}
.fs10_c01214{font-size:58.740000px;}
.fsd_c01214{font-size:62.220000px;}
.fsa_c01214{font-size:69.120000px;}
.fs7_c01214{font-size:76.020000px;}
.y0_c01214{bottom:0.000000px;}
.y2c_c01214{bottom:587.520000px;}
.y2a_c01214{bottom:603.075000px;}
.y2b_c01214{bottom:605.670000px;}
.y28_c01214{bottom:614.310000px;}
.y29_c01214{bottom:617.760000px;}
.y27_c01214{bottom:622.950000px;}
.y25_c01214{bottom:638.490000px;}
.y26_c01214{bottom:641.085000px;}
.y24_c01214{bottom:654.915000px;}
.y22_c01214{bottom:700.710000px;}
.y23_c01214{bottom:704.160000px;}
.y20_c01214{bottom:717.120000px;}
.y21_c01214{bottom:718.845000px;}
.y1e_c01214{bottom:738.720000px;}
.y1f_c01214{bottom:739.590000px;}
.y1d_c01214{bottom:747.360000px;}
.y1c_c01214{bottom:748.230000px;}
.y1b_c01214{bottom:756.000000px;}
.y1a_c01214{bottom:770.685000px;}
.y19_c01214{bottom:771.555000px;}
.y18_c01214{bottom:773.280000px;}
.y17_c01214{bottom:778.470000px;}
.y16_c01214{bottom:781.920000px;}
.y15_c01214{bottom:922.755000px;}
.y13_c01214{bottom:940.890000px;}
.y14_c01214{bottom:943.485000px;}
.y12_c01214{bottom:952.995000px;}
.y11_c01214{bottom:954.720000px;}
.y10_c01214{bottom:961.635000px;}
.yf_c01214{bottom:978.045000px;}
.ye_c01214{bottom:980.640000px;}
.yd_c01214{bottom:996.195000px;}
.yc_c01214{bottom:997.920000px;}
.yb_c01214{bottom:1010.880000px;}
.ya_c01214{bottom:1030.755000px;}
.y9_c01214{bottom:1233.795000px;}
.y8_c01214{bottom:1237.245000px;}
.y7_c01214{bottom:1246.755000px;}
.y6_c01214{bottom:1257.990000px;}
.y5_c01214{bottom:1268.355000px;}
.y4_c01214{bottom:1285.635000px;}
.y3_c01214{bottom:1299.450000px;}
.y2_c01214{bottom:1308.090000px;}
.y1_c01214{bottom:1312.410000px;}
.h8_c01214{height:3.110063px;}
.hb_c01214{height:6.209326px;}
.h13_c01214{height:9.340986px;}
.h2_c01214{height:15.550313px;}
.ha_c01214{height:18.681973px;}
.he_c01214{height:24.891299px;}
.h3_c01214{height:27.968965px;}
.h10_c01214{height:31.100625px;}
.h5_c01214{height:34.232285px;}
.h11_c01214{height:37.309951px;}
.hd_c01214{height:40.441611px;}
.h4_c01214{height:43.519277px;}
.h6_c01214{height:46.650937px;}
.h7_c01214{height:49.782598px;}
.h12_c01214{height:52.860264px;}
.hf_c01214{height:55.991924px;}
.hc_c01214{height:62.201250px;}
.h9_c01214{height:68.410576px;}
.h1_c01214{height:1518.750000px;}
.h0_c01214{height:1518.915000px;}
.w0_c01214{width:1085.190000px;}
.w1_c01214{width:1085.250000px;}
.x0_c01214{left:0.000000px;}
.x5_c01214{left:1002.240000px;}
.x6_c01214{left:1013.475000px;}
.x13_c01214{left:1016.925000px;}
.xa_c01214{left:1019.520000px;}
.xd_c01214{left:1024.710000px;}
.x7_c01214{left:1026.435000px;}
.x3_c01214{left:1032.480000px;}
.x12_c01214{left:1035.075000px;}
.x14_c01214{left:1036.800000px;}
.xf_c01214{left:1039.395000px;}
.x8_c01214{left:1047.165000px;}
.x9_c01214{left:1050.630000px;}
.x1_c01214{left:1054.080000px;}
.xe_c01214{left:1058.400000px;}
.x10_c01214{left:1060.125000px;}
.x4_c01214{left:1064.445000px;}
.x15_c01214{left:1067.040000px;}
.x2_c01214{left:1068.765000px;}
.xb_c01214{left:1071.360000px;}
.x11_c01214{left:1074.810000px;}
.xc_c01214{left:1081.725000px;}
@media print{
.v0_c01214{vertical-align:0.000000pt;}
.ls0_c01214{letter-spacing:0.000000pt;}
.ws0_c01214{word-spacing:0.000000pt;}
.fs6_c01214{font-size:3.072000pt;}
.fs9_c01214{font-size:6.133333pt;}
.fs11_c01214{font-size:9.226667pt;}
.fs0_c01214{font-size:15.360000pt;}
.fs8_c01214{font-size:18.453333pt;}
.fsc_c01214{font-size:24.586667pt;}
.fs1_c01214{font-size:27.626667pt;}
.fse_c01214{font-size:30.720000pt;}
.fs3_c01214{font-size:33.813333pt;}
.fsf_c01214{font-size:36.853333pt;}
.fsb_c01214{font-size:39.946667pt;}
.fs2_c01214{font-size:42.986667pt;}
.fs4_c01214{font-size:46.080000pt;}
.fs5_c01214{font-size:49.173333pt;}
.fs10_c01214{font-size:52.213333pt;}
.fsd_c01214{font-size:55.306667pt;}
.fsa_c01214{font-size:61.440000pt;}
.fs7_c01214{font-size:67.573333pt;}
.y0_c01214{bottom:0.000000pt;}
.y2c_c01214{bottom:522.240000pt;}
.y2a_c01214{bottom:536.066667pt;}
.y2b_c01214{bottom:538.373333pt;}
.y28_c01214{bottom:546.053333pt;}
.y29_c01214{bottom:549.120000pt;}
.y27_c01214{bottom:553.733333pt;}
.y25_c01214{bottom:567.546667pt;}
.y26_c01214{bottom:569.853333pt;}
.y24_c01214{bottom:582.146667pt;}
.y22_c01214{bottom:622.853333pt;}
.y23_c01214{bottom:625.920000pt;}
.y20_c01214{bottom:637.440000pt;}
.y21_c01214{bottom:638.973333pt;}
.y1e_c01214{bottom:656.640000pt;}
.y1f_c01214{bottom:657.413333pt;}
.y1d_c01214{bottom:664.320000pt;}
.y1c_c01214{bottom:665.093333pt;}
.y1b_c01214{bottom:672.000000pt;}
.y1a_c01214{bottom:685.053333pt;}
.y19_c01214{bottom:685.826667pt;}
.y18_c01214{bottom:687.360000pt;}
.y17_c01214{bottom:691.973333pt;}
.y16_c01214{bottom:695.040000pt;}
.y15_c01214{bottom:820.226667pt;}
.y13_c01214{bottom:836.346667pt;}
.y14_c01214{bottom:838.653333pt;}
.y12_c01214{bottom:847.106667pt;}
.y11_c01214{bottom:848.640000pt;}
.y10_c01214{bottom:854.786667pt;}
.yf_c01214{bottom:869.373333pt;}
.ye_c01214{bottom:871.680000pt;}
.yd_c01214{bottom:885.506667pt;}
.yc_c01214{bottom:887.040000pt;}
.yb_c01214{bottom:898.560000pt;}
.ya_c01214{bottom:916.226667pt;}
.y9_c01214{bottom:1096.706667pt;}
.y8_c01214{bottom:1099.773333pt;}
.y7_c01214{bottom:1108.226667pt;}
.y6_c01214{bottom:1118.213333pt;}
.y5_c01214{bottom:1127.426667pt;}
.y4_c01214{bottom:1142.786667pt;}
.y3_c01214{bottom:1155.066667pt;}
.y2_c01214{bottom:1162.746667pt;}
.y1_c01214{bottom:1166.586667pt;}
.h8_c01214{height:2.764500pt;}
.hb_c01214{height:5.519401pt;}
.h13_c01214{height:8.303099pt;}
.h2_c01214{height:13.822500pt;}
.ha_c01214{height:16.606198pt;}
.he_c01214{height:22.125599pt;}
.h3_c01214{height:24.861302pt;}
.h10_c01214{height:27.645000pt;}
.h5_c01214{height:30.428698pt;}
.h11_c01214{height:33.164401pt;}
.hd_c01214{height:35.948099pt;}
.h4_c01214{height:38.683802pt;}
.h6_c01214{height:41.467500pt;}
.h7_c01214{height:44.251198pt;}
.h12_c01214{height:46.986901pt;}
.hf_c01214{height:49.770599pt;}
.hc_c01214{height:55.290000pt;}
.h9_c01214{height:60.809401pt;}
.h1_c01214{height:1350.000000pt;}
.h0_c01214{height:1350.146667pt;}
.w0_c01214{width:964.613333pt;}
.w1_c01214{width:964.666667pt;}
.x0_c01214{left:0.000000pt;}
.x5_c01214{left:890.880000pt;}
.x6_c01214{left:900.866667pt;}
.x13_c01214{left:903.933333pt;}
.xa_c01214{left:906.240000pt;}
.xd_c01214{left:910.853333pt;}
.x7_c01214{left:912.386667pt;}
.x3_c01214{left:917.760000pt;}
.x12_c01214{left:920.066667pt;}
.x14_c01214{left:921.600000pt;}
.xf_c01214{left:923.906667pt;}
.x8_c01214{left:930.813333pt;}
.x9_c01214{left:933.893333pt;}
.x1_c01214{left:936.960000pt;}
.xe_c01214{left:940.800000pt;}
.x10_c01214{left:942.333333pt;}
.x4_c01214{left:946.173333pt;}
.x15_c01214{left:948.480000pt;}
.x2_c01214{left:950.013333pt;}
.xb_c01214{left:952.320000pt;}
.x11_c01214{left:955.386667pt;}
.xc_c01214{left:961.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff5e1348e9a24354be1ed8a7.woff2')format("woff");}.ff1_c01215{font-family:ff1_c01215;line-height:1.109863;font-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_c01215{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c01215{transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);}
.mc_c01215{transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);}
.ma_c01215{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.mb_c01215{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.me_c01215{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);}
.m3_c01215{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.m4_c01215{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);}
.m9_c01215{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c01215{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c01215{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);}
.m0_c01215{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2_c01215{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m6_c01215{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);}
.m8_c01215{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,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;}
.fs5_c01215{font-size:3.456000px;}
.fs7_c01215{font-size:27.660000px;}
.fs2_c01215{font-size:31.080000px;}
.fs8_c01215{font-size:34.560000px;}
.fsb_c01215{font-size:44.940000px;}
.fs4_c01215{font-size:48.360000px;}
.fs6_c01215{font-size:51.840000px;}
.fs9_c01215{font-size:55.320000px;}
.fs3_c01215{font-size:58.740000px;}
.fs1_c01215{font-size:62.220000px;}
.fsa_c01215{font-size:65.640000px;}
.fs0_c01215{font-size:79.500000px;}
.y0_c01215{bottom:0.000000px;}
.ye_c01215{bottom:1213.050000px;}
.yf_c01215{bottom:1213.920000px;}
.yd_c01215{bottom:1226.010000px;}
.yc_c01215{bottom:1244.160000px;}
.yb_c01215{bottom:1264.890000px;}
.ya_c01215{bottom:1282.170000px;}
.y9_c01215{bottom:1283.910000px;}
.y8_c01215{bottom:1299.450000px;}
.y7_c01215{bottom:1301.190000px;}
.y5_c01215{bottom:1317.600000px;}
.y6_c01215{bottom:1328.835000px;}
.y4_c01215{bottom:1334.010000px;}
.y3_c01215{bottom:1335.750000px;}
.y1_c01215{bottom:1348.710000px;}
.y2_c01215{bottom:1350.435000px;}
.h7_c01215{height:3.110063px;}
.h9_c01215{height:24.891299px;}
.h4_c01215{height:27.968965px;}
.ha_c01215{height:31.100625px;}
.hd_c01215{height:40.441611px;}
.h6_c01215{height:43.519277px;}
.h8_c01215{height:46.650937px;}
.hb_c01215{height:49.782598px;}
.h5_c01215{height:52.860264px;}
.h3_c01215{height:55.991924px;}
.hc_c01215{height:59.069590px;}
.h2_c01215{height:71.542236px;}
.h0_c01215{height:1515.450000px;}
.h1_c01215{height:1515.750000px;}
.w0_c01215{width:1094.685000px;}
.w1_c01215{width:1095.000000px;}
.x0_c01215{left:0.000000px;}
.x2_c01215{left:16.410000px;}
.x1_c01215{left:24.195000px;}
.x4_c01215{left:31.965000px;}
.x5_c01215{left:40.605000px;}
.x3_c01215{left:59.610000px;}
@media print{
.v0_c01215{vertical-align:0.000000pt;}
.ls0_c01215{letter-spacing:0.000000pt;}
.ws0_c01215{word-spacing:0.000000pt;}
.fs5_c01215{font-size:3.072000pt;}
.fs7_c01215{font-size:24.586667pt;}
.fs2_c01215{font-size:27.626667pt;}
.fs8_c01215{font-size:30.720000pt;}
.fsb_c01215{font-size:39.946667pt;}
.fs4_c01215{font-size:42.986667pt;}
.fs6_c01215{font-size:46.080000pt;}
.fs9_c01215{font-size:49.173333pt;}
.fs3_c01215{font-size:52.213333pt;}
.fs1_c01215{font-size:55.306667pt;}
.fsa_c01215{font-size:58.346667pt;}
.fs0_c01215{font-size:70.666667pt;}
.y0_c01215{bottom:0.000000pt;}
.ye_c01215{bottom:1078.266667pt;}
.yf_c01215{bottom:1079.040000pt;}
.yd_c01215{bottom:1089.786667pt;}
.yc_c01215{bottom:1105.920000pt;}
.yb_c01215{bottom:1124.346667pt;}
.ya_c01215{bottom:1139.706667pt;}
.y9_c01215{bottom:1141.253333pt;}
.y8_c01215{bottom:1155.066667pt;}
.y7_c01215{bottom:1156.613333pt;}
.y5_c01215{bottom:1171.200000pt;}
.y6_c01215{bottom:1181.186667pt;}
.y4_c01215{bottom:1185.786667pt;}
.y3_c01215{bottom:1187.333333pt;}
.y1_c01215{bottom:1198.853333pt;}
.y2_c01215{bottom:1200.386667pt;}
.h7_c01215{height:2.764500pt;}
.h9_c01215{height:22.125599pt;}
.h4_c01215{height:24.861302pt;}
.ha_c01215{height:27.645000pt;}
.hd_c01215{height:35.948099pt;}
.h6_c01215{height:38.683802pt;}
.h8_c01215{height:41.467500pt;}
.hb_c01215{height:44.251198pt;}
.h5_c01215{height:46.986901pt;}
.h3_c01215{height:49.770599pt;}
.hc_c01215{height:52.506302pt;}
.h2_c01215{height:63.593099pt;}
.h0_c01215{height:1347.066667pt;}
.h1_c01215{height:1347.333333pt;}
.w0_c01215{width:973.053333pt;}
.w1_c01215{width:973.333333pt;}
.x0_c01215{left:0.000000pt;}
.x2_c01215{left:14.586667pt;}
.x1_c01215{left:21.506667pt;}
.x4_c01215{left:28.413333pt;}
.x5_c01215{left:36.093333pt;}
.x3_c01215{left:52.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_deefc5be64f8750b5457648c.woff2')format("woff");}.ff1_c01216{font-family:ff1_c01216;line-height:1.109863;font-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_c01216{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);}
.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;}
.fs0_c01216{font-size:600.000000px;}
.y0_c01216{bottom:0.000000px;}
.y1_c01216{bottom:15.000000px;}
.h2_c01216{height:539.941406px;}
.h1_c01216{height:1518.750000px;}
.h0_c01216{height:1518.915000px;}
.w0_c01216{width:1085.190000px;}
.w1_c01216{width:1085.250000px;}
.x0_c01216{left:0.000000px;}
.x1_c01216{left:15.000000px;}
@media print{
.v0_c01216{vertical-align:0.000000pt;}
.ls0_c01216{letter-spacing:0.000000pt;}
.ws0_c01216{word-spacing:0.000000pt;}
.fs0_c01216{font-size:533.333333pt;}
.y0_c01216{bottom:0.000000pt;}
.y1_c01216{bottom:13.333333pt;}
.h2_c01216{height:479.947917pt;}
.h1_c01216{height:1350.000000pt;}
.h0_c01216{height:1350.146667pt;}
.w0_c01216{width:964.613333pt;}
.w1_c01216{width:964.666667pt;}
.x0_c01216{left:0.000000pt;}
.x1_c01216{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a0a97d42ab164e79f7fe78cb.woff2')format("woff");}.ff1_c01217{font-family:ff1_c01217;line-height:1.109863;font-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_c01217{transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);}
.m0_c01217{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c01217{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.m4_c01217{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m1_c01217{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01217{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c01217{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.v1_c01217{vertical-align:-10.380000px;}
.v0_c01217{vertical-align:0.000000px;}
.ls1_c01217{letter-spacing:0.000000px;}
.ls0_c01217{letter-spacing:43.166700px;}
.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;}
.fs1_c01217{font-size:3.456000px;}
.fs7_c01217{font-size:6.900000px;}
.fs0_c01217{font-size:13.800000px;}
.fs8_c01217{font-size:17.280000px;}
.fs3_c01217{font-size:24.180000px;}
.fs2_c01217{font-size:27.660000px;}
.fs4_c01217{font-size:51.840000px;}
.fs5_c01217{font-size:55.320000px;}
.fs6_c01217{font-size:58.740000px;}
.y0_c01217{bottom:0.000000px;}
.y8_c01217{bottom:1105.920000px;}
.y7_c01217{bottom:1141.350000px;}
.y6_c01217{bottom:1161.210000px;}
.y5_c01217{bottom:1178.490000px;}
.y4_c01217{bottom:1365.990000px;}
.y3_c01217{bottom:1370.310000px;}
.y2_c01217{bottom:1420.410000px;}
.y1_c01217{bottom:1421.280000px;}
.h3_c01217{height:3.110063px;}
.h9_c01217{height:6.209326px;}
.h2_c01217{height:12.418652px;}
.h5_c01217{height:21.759639px;}
.h4_c01217{height:24.891299px;}
.h6_c01217{height:46.650937px;}
.h7_c01217{height:49.782598px;}
.h8_c01217{height:52.860264px;}
.h0_c01217{height:1515.450000px;}
.h1_c01217{height:1515.750000px;}
.w0_c01217{width:1094.685000px;}
.w1_c01217{width:1095.000000px;}
.x0_c01217{left:0.000000px;}
.x5_c01217{left:12.960000px;}
.x6_c01217{left:139.965000px;}
.x3_c01217{left:179.715000px;}
.x4_c01217{left:194.400000px;}
.x1_c01217{left:222.045000px;}
.x2_c01217{left:228.960000px;}
@media print{
.v1_c01217{vertical-align:-9.226667pt;}
.v0_c01217{vertical-align:0.000000pt;}
.ls1_c01217{letter-spacing:0.000000pt;}
.ls0_c01217{letter-spacing:38.370400pt;}
.ws0_c01217{word-spacing:0.000000pt;}
.fs1_c01217{font-size:3.072000pt;}
.fs7_c01217{font-size:6.133333pt;}
.fs0_c01217{font-size:12.266667pt;}
.fs8_c01217{font-size:15.360000pt;}
.fs3_c01217{font-size:21.493333pt;}
.fs2_c01217{font-size:24.586667pt;}
.fs4_c01217{font-size:46.080000pt;}
.fs5_c01217{font-size:49.173333pt;}
.fs6_c01217{font-size:52.213333pt;}
.y0_c01217{bottom:0.000000pt;}
.y8_c01217{bottom:983.040000pt;}
.y7_c01217{bottom:1014.533333pt;}
.y6_c01217{bottom:1032.186667pt;}
.y5_c01217{bottom:1047.546667pt;}
.y4_c01217{bottom:1214.213333pt;}
.y3_c01217{bottom:1218.053333pt;}
.y2_c01217{bottom:1262.586667pt;}
.y1_c01217{bottom:1263.360000pt;}
.h3_c01217{height:2.764500pt;}
.h9_c01217{height:5.519401pt;}
.h2_c01217{height:11.038802pt;}
.h5_c01217{height:19.341901pt;}
.h4_c01217{height:22.125599pt;}
.h6_c01217{height:41.467500pt;}
.h7_c01217{height:44.251198pt;}
.h8_c01217{height:46.986901pt;}
.h0_c01217{height:1347.066667pt;}
.h1_c01217{height:1347.333333pt;}
.w0_c01217{width:973.053333pt;}
.w1_c01217{width:973.333333pt;}
.x0_c01217{left:0.000000pt;}
.x5_c01217{left:11.520000pt;}
.x6_c01217{left:124.413333pt;}
.x3_c01217{left:159.746667pt;}
.x4_c01217{left:172.800000pt;}
.x1_c01217{left:197.373333pt;}
.x2_c01217{left:203.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_6b2c9c7afea5ba103f83bfb2.woff2')format("woff");}.ff1_c01218{font-family:ff1_c01218;line-height:1.109863;font-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_c01218{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m16_c01218{transform:matrix(0.022750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022750,0.000000,0.000000,0.250000,0,0);}
.m8_c01218{transform:matrix(0.024100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024100,0.000000,0.000000,0.250000,0,0);}
.m11_c01218{transform:matrix(0.025775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025775,0.000000,0.000000,0.250000,0,0);}
.m10_c01218{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.m13_c01218{transform:matrix(0.049575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049575,0.000000,0.000000,0.250000,0,0);}
.m9_c01218{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m15_c01218{transform:matrix(0.068375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068375,0.000000,0.000000,0.250000,0,0);}
.m0_c01218{transform:matrix(0.069175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069175,0.000000,0.000000,0.250000,0,0);}
.m14_c01218{transform:matrix(0.071250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071250,0.000000,0.000000,0.250000,0,0);}
.ma_c01218{transform:matrix(0.077650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077650,0.000000,0.000000,0.250000,0,0);}
.m3_c01218{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.m5_c01218{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m2_c01218{transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);}
.mb_c01218{transform:matrix(0.112625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112625,0.000000,0.000000,0.250000,0,0);}
.m7_c01218{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m12_c01218{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m4_c01218{transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);}
.m1_c01218{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m19_c01218{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);}
.me_c01218{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);}
.md_c01218{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01218{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);}
.m6_c01218{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.mc_c01218{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);}
.mf_c01218{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m18_c01218{transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.955000,0.000000,0.000000,0.250000,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;}
.fs1_c01218{font-size:3.456000px;}
.fsc_c01218{font-size:6.900000px;}
.fs7_c01218{font-size:10.380000px;}
.fs3_c01218{font-size:13.800000px;}
.fsb_c01218{font-size:17.280000px;}
.fsd_c01218{font-size:20.760000px;}
.fs10_c01218{font-size:24.180000px;}
.fs6_c01218{font-size:27.660000px;}
.fs2_c01218{font-size:34.560000px;}
.fs0_c01218{font-size:44.940000px;}
.fs9_c01218{font-size:51.840000px;}
.fs12_c01218{font-size:65.640000px;}
.fse_c01218{font-size:72.600000px;}
.fs4_c01218{font-size:110.580000px;}
.fs13_c01218{font-size:114.060000px;}
.fsf_c01218{font-size:120.960000px;}
.fs5_c01218{font-size:127.860000px;}
.fs11_c01218{font-size:134.760000px;}
.fsa_c01218{font-size:176.280000px;}
.fs8_c01218{font-size:193.560000px;}
.y0_c01218{bottom:0.000000px;}
.y21_c01218{bottom:490.755000px;}
.y22_c01218{bottom:491.610000px;}
.y20_c01218{bottom:503.715000px;}
.y1f_c01218{bottom:516.675000px;}
.y1e_c01218{bottom:564.195000px;}
.y1d_c01218{bottom:568.515000px;}
.y1c_c01218{bottom:915.840000px;}
.y1b_c01218{bottom:959.040000px;}
.y1a_c01218{bottom:989.280000px;}
.y19_c01218{bottom:1004.835000px;}
.y18_c01218{bottom:1038.525000px;}
.y17_c01218{bottom:1045.440000px;}
.y16_c01218{bottom:1077.405000px;}
.y15_c01218{bottom:1090.365000px;}
.y13_c01218{bottom:1133.565000px;}
.y11_c01218{bottom:1136.160000px;}
.y12_c01218{bottom:1137.885000px;}
.y14_c01218{bottom:1138.755000px;}
.ye_c01218{bottom:1149.990000px;}
.yf_c01218{bottom:1159.485000px;}
.y10_c01218{bottom:1162.950000px;}
.yd_c01218{bottom:1192.320000px;}
.yc_c01218{bottom:1199.235000px;}
.yb_c01218{bottom:1207.005000px;}
.ya_c01218{bottom:1212.195000px;}
.y9_c01218{bottom:1256.250000px;}
.y6_c01218{bottom:1264.035000px;}
.y8_c01218{bottom:1265.760000px;}
.y7_c01218{bottom:1270.950000px;}
.y4_c01218{bottom:1293.405000px;}
.y5_c01218{bottom:1296.870000px;}
.y3_c01218{bottom:1327.110000px;}
.y2_c01218{bottom:1330.560000px;}
.y1_c01218{bottom:1341.795000px;}
.h3_c01218{height:3.110063px;}
.he_c01218{height:6.209326px;}
.h9_c01218{height:9.340986px;}
.h5_c01218{height:12.418652px;}
.hd_c01218{height:15.550313px;}
.hf_c01218{height:18.681973px;}
.h12_c01218{height:21.759639px;}
.h8_c01218{height:24.891299px;}
.h4_c01218{height:31.100625px;}
.h2_c01218{height:40.441611px;}
.hb_c01218{height:46.650937px;}
.h14_c01218{height:59.069590px;}
.h10_c01218{height:65.332910px;}
.h6_c01218{height:99.511201px;}
.h15_c01218{height:102.642861px;}
.h11_c01218{height:108.852188px;}
.h7_c01218{height:115.061514px;}
.h13_c01218{height:121.270840px;}
.hc_c01218{height:158.634785px;}
.ha_c01218{height:174.185098px;}
.h1_c01218{height:1518.750000px;}
.h0_c01218{height:1518.915000px;}
.w0_c01218{width:1085.190000px;}
.w1_c01218{width:1085.250000px;}
.x0_c01218{left:0.000000px;}
.xa_c01218{left:959.040000px;}
.x8_c01218{left:960.765000px;}
.x3_c01218{left:962.490000px;}
.x9_c01218{left:965.955000px;}
.x2_c01218{left:967.680000px;}
.x4_c01218{left:971.130000px;}
.x1_c01218{left:975.450000px;}
.x7_c01218{left:977.190000px;}
.xd_c01218{left:1005.690000px;}
.x5_c01218{left:1019.520000px;}
.x6_c01218{left:1022.115000px;}
.xe_c01218{left:1032.480000px;}
.xf_c01218{left:1038.525000px;}
.xb_c01218{left:1041.990000px;}
.x10_c01218{left:1046.310000px;}
.x12_c01218{left:1049.760000px;}
.xc_c01218{left:1053.210000px;}
.x11_c01218{left:1079.130000px;}
@media print{
.v0_c01218{vertical-align:0.000000pt;}
.ls0_c01218{letter-spacing:0.000000pt;}
.ws0_c01218{word-spacing:0.000000pt;}
.fs1_c01218{font-size:3.072000pt;}
.fsc_c01218{font-size:6.133333pt;}
.fs7_c01218{font-size:9.226667pt;}
.fs3_c01218{font-size:12.266667pt;}
.fsb_c01218{font-size:15.360000pt;}
.fsd_c01218{font-size:18.453333pt;}
.fs10_c01218{font-size:21.493333pt;}
.fs6_c01218{font-size:24.586667pt;}
.fs2_c01218{font-size:30.720000pt;}
.fs0_c01218{font-size:39.946667pt;}
.fs9_c01218{font-size:46.080000pt;}
.fs12_c01218{font-size:58.346667pt;}
.fse_c01218{font-size:64.533333pt;}
.fs4_c01218{font-size:98.293333pt;}
.fs13_c01218{font-size:101.386667pt;}
.fsf_c01218{font-size:107.520000pt;}
.fs5_c01218{font-size:113.653333pt;}
.fs11_c01218{font-size:119.786667pt;}
.fsa_c01218{font-size:156.693333pt;}
.fs8_c01218{font-size:172.053333pt;}
.y0_c01218{bottom:0.000000pt;}
.y21_c01218{bottom:436.226667pt;}
.y22_c01218{bottom:436.986667pt;}
.y20_c01218{bottom:447.746667pt;}
.y1f_c01218{bottom:459.266667pt;}
.y1e_c01218{bottom:501.506667pt;}
.y1d_c01218{bottom:505.346667pt;}
.y1c_c01218{bottom:814.080000pt;}
.y1b_c01218{bottom:852.480000pt;}
.y1a_c01218{bottom:879.360000pt;}
.y19_c01218{bottom:893.186667pt;}
.y18_c01218{bottom:923.133333pt;}
.y17_c01218{bottom:929.280000pt;}
.y16_c01218{bottom:957.693333pt;}
.y15_c01218{bottom:969.213333pt;}
.y13_c01218{bottom:1007.613333pt;}
.y11_c01218{bottom:1009.920000pt;}
.y12_c01218{bottom:1011.453333pt;}
.y14_c01218{bottom:1012.226667pt;}
.ye_c01218{bottom:1022.213333pt;}
.yf_c01218{bottom:1030.653333pt;}
.y10_c01218{bottom:1033.733333pt;}
.yd_c01218{bottom:1059.840000pt;}
.yc_c01218{bottom:1065.986667pt;}
.yb_c01218{bottom:1072.893333pt;}
.ya_c01218{bottom:1077.506667pt;}
.y9_c01218{bottom:1116.666667pt;}
.y6_c01218{bottom:1123.586667pt;}
.y8_c01218{bottom:1125.120000pt;}
.y7_c01218{bottom:1129.733333pt;}
.y4_c01218{bottom:1149.693333pt;}
.y5_c01218{bottom:1152.773333pt;}
.y3_c01218{bottom:1179.653333pt;}
.y2_c01218{bottom:1182.720000pt;}
.y1_c01218{bottom:1192.706667pt;}
.h3_c01218{height:2.764500pt;}
.he_c01218{height:5.519401pt;}
.h9_c01218{height:8.303099pt;}
.h5_c01218{height:11.038802pt;}
.hd_c01218{height:13.822500pt;}
.hf_c01218{height:16.606198pt;}
.h12_c01218{height:19.341901pt;}
.h8_c01218{height:22.125599pt;}
.h4_c01218{height:27.645000pt;}
.h2_c01218{height:35.948099pt;}
.hb_c01218{height:41.467500pt;}
.h14_c01218{height:52.506302pt;}
.h10_c01218{height:58.073698pt;}
.h6_c01218{height:88.454401pt;}
.h15_c01218{height:91.238099pt;}
.h11_c01218{height:96.757500pt;}
.h7_c01218{height:102.276901pt;}
.h13_c01218{height:107.796302pt;}
.hc_c01218{height:141.008698pt;}
.ha_c01218{height:154.831198pt;}
.h1_c01218{height:1350.000000pt;}
.h0_c01218{height:1350.146667pt;}
.w0_c01218{width:964.613333pt;}
.w1_c01218{width:964.666667pt;}
.x0_c01218{left:0.000000pt;}
.xa_c01218{left:852.480000pt;}
.x8_c01218{left:854.013333pt;}
.x3_c01218{left:855.546667pt;}
.x9_c01218{left:858.626667pt;}
.x2_c01218{left:860.160000pt;}
.x4_c01218{left:863.226667pt;}
.x1_c01218{left:867.066667pt;}
.x7_c01218{left:868.613333pt;}
.xd_c01218{left:893.946667pt;}
.x5_c01218{left:906.240000pt;}
.x6_c01218{left:908.546667pt;}
.xe_c01218{left:917.760000pt;}
.xf_c01218{left:923.133333pt;}
.xb_c01218{left:926.213333pt;}
.x10_c01218{left:930.053333pt;}
.x12_c01218{left:933.120000pt;}
.xc_c01218{left:936.186667pt;}
.x11_c01218{left:959.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_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;}
@font-face{font-family:ff1_c01219;src:url('chunks/assets/font_4293d8c201f00426406d38d2.woff2')format("woff");}.ff1_c01219{font-family:ff1_c01219;line-height:1.109863;font-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_c01219{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb_c01219{transform:matrix(0.022075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022075,0.000000,0.000000,0.250000,0,0);}
.m7_c01219{transform:matrix(0.025800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025800,0.000000,0.000000,0.250000,0,0);}
.m8_c01219{transform:matrix(0.037600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037600,0.000000,0.000000,0.250000,0,0);}
.ma_c01219{transform:matrix(0.049950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049950,0.000000,0.000000,0.250000,0,0);}
.m9_c01219{transform:matrix(0.064700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064700,0.000000,0.000000,0.250000,0,0);}
.mc_c01219{transform:matrix(0.065825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065825,0.000000,0.000000,0.250000,0,0);}
.me_c01219{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);}
.m16_c01219{transform:matrix(0.117800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117800,0.000000,0.000000,0.250000,0,0);}
.m2_c01219{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c01219{transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);}
.m1_c01219{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m13_c01219{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.m3_c01219{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12_c01219{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);}
.m14_c01219{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4_c01219{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mf_c01219{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);}
.m11_c01219{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);}
.m5_c01219{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m6_c01219{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c01219{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m15_c01219{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c01219{vertical-align:0.000000px;}
.ls0_c01219{letter-spacing:0.000000px;}
.sc__c01219{text-shadow:none;}
.sc0_c01219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01219{-webkit-text-stroke:0px transparent;}
.sc0_c01219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01219{word-spacing:0.000000px;}
.fc0_c01219{color:transparent;}
.fs2_c01219{font-size:3.456000px;}
.fsf_c01219{font-size:6.000000px;}
.fs3_c01219{font-size:10.380000px;}
.fs4_c01219{font-size:17.280000px;}
.fs6_c01219{font-size:20.760000px;}
.fs0_c01219{font-size:24.180000px;}
.fs12_c01219{font-size:27.660000px;}
.fs5_c01219{font-size:31.080000px;}
.fs1_c01219{font-size:38.040000px;}
.fse_c01219{font-size:51.840000px;}
.fs11_c01219{font-size:58.740000px;}
.fsc_c01219{font-size:62.220000px;}
.fs10_c01219{font-size:65.640000px;}
.fs13_c01219{font-size:76.020000px;}
.fs8_c01219{font-size:82.920000px;}
.fsd_c01219{font-size:100.200000px;}
.fsb_c01219{font-size:117.480000px;}
.fs7_c01219{font-size:120.960000px;}
.fs9_c01219{font-size:131.340000px;}
.fsa_c01219{font-size:186.600000px;}
.y0_c01219{bottom:0.000000px;}
.y1b_c01219{bottom:570.240000px;}
.y1a_c01219{bottom:592.710000px;}
.y19_c01219{bottom:596.160000px;}
.y18_c01219{bottom:597.030000px;}
.y17_c01219{bottom:612.570000px;}
.y15_c01219{bottom:622.080000px;}
.y16_c01219{bottom:631.590000px;}
.y11_c01219{bottom:638.490000px;}
.y13_c01219{bottom:639.360000px;}
.y14_c01219{bottom:648.000000px;}
.y12_c01219{bottom:648.870000px;}
.yf_c01219{bottom:664.410000px;}
.y10_c01219{bottom:678.240000px;}
.ye_c01219{bottom:911.520000px;}
.yd_c01219{bottom:955.590000px;}
.yc_c01219{bottom:1001.370000px;}
.ya_c01219{bottom:1020.390000px;}
.yb_c01219{bottom:1036.800000px;}
.y9_c01219{bottom:1041.990000px;}
.y8_c01219{bottom:1131.840000px;}
.y6_c01219{bottom:1132.710000px;}
.y7_c01219{bottom:1135.290000px;}
.y5_c01219{bottom:1143.930000px;}
.y4_c01219{bottom:1146.525000px;}
.y1_c01219{bottom:1151.715000px;}
.y2_c01219{bottom:1155.165000px;}
.y3_c01219{bottom:1159.485000px;}
.h4_c01219{height:3.110063px;}
.h11_c01219{height:5.399414px;}
.h5_c01219{height:9.340986px;}
.h6_c01219{height:15.550313px;}
.h8_c01219{height:18.681973px;}
.h2_c01219{height:21.759639px;}
.h14_c01219{height:24.891299px;}
.h7_c01219{height:27.968965px;}
.h3_c01219{height:34.232285px;}
.h10_c01219{height:46.650937px;}
.h13_c01219{height:52.860264px;}
.he_c01219{height:55.991924px;}
.h12_c01219{height:59.069590px;}
.h15_c01219{height:68.410576px;}
.ha_c01219{height:74.619902px;}
.hf_c01219{height:90.170215px;}
.hd_c01219{height:105.720527px;}
.h9_c01219{height:108.852188px;}
.hb_c01219{height:118.193174px;}
.hc_c01219{height:167.921777px;}
.h0_c01219{height:1515.450000px;}
.h1_c01219{height:1515.750000px;}
.w0_c01219{width:1094.685000px;}
.w1_c01219{width:1095.000000px;}
.x0_c01219{left:0.000000px;}
.xf_c01219{left:19.875000px;}
.x4_c01219{left:25.919592px;}
.xc_c01219{left:31.965000px;}
.x5_c01219{left:39.750000px;}
.xd_c01219{left:47.520000px;}
.xe_c01219{left:55.290000px;}
.x1_c01219{left:59.610000px;}
.xb_c01219{left:105.405000px;}
.x9_c01219{left:108.000000px;}
.xa_c01219{left:125.280000px;}
.x6_c01219{left:133.920000px;}
.x7_c01219{left:162.435000px;}
.x2_c01219{left:171.930000px;}
.x8_c01219{left:177.120000px;}
.x3_c01219{left:183.165000px;}
@media print{
.v0_c01219{vertical-align:0.000000pt;}
.ls0_c01219{letter-spacing:0.000000pt;}
.ws0_c01219{word-spacing:0.000000pt;}
.fs2_c01219{font-size:3.072000pt;}
.fsf_c01219{font-size:5.333333pt;}
.fs3_c01219{font-size:9.226667pt;}
.fs4_c01219{font-size:15.360000pt;}
.fs6_c01219{font-size:18.453333pt;}
.fs0_c01219{font-size:21.493333pt;}
.fs12_c01219{font-size:24.586667pt;}
.fs5_c01219{font-size:27.626667pt;}
.fs1_c01219{font-size:33.813333pt;}
.fse_c01219{font-size:46.080000pt;}
.fs11_c01219{font-size:52.213333pt;}
.fsc_c01219{font-size:55.306667pt;}
.fs10_c01219{font-size:58.346667pt;}
.fs13_c01219{font-size:67.573333pt;}
.fs8_c01219{font-size:73.706667pt;}
.fsd_c01219{font-size:89.066667pt;}
.fsb_c01219{font-size:104.426667pt;}
.fs7_c01219{font-size:107.520000pt;}
.fs9_c01219{font-size:116.746667pt;}
.fsa_c01219{font-size:165.866667pt;}
.y0_c01219{bottom:0.000000pt;}
.y1b_c01219{bottom:506.880000pt;}
.y1a_c01219{bottom:526.853333pt;}
.y19_c01219{bottom:529.920000pt;}
.y18_c01219{bottom:530.693333pt;}
.y17_c01219{bottom:544.506667pt;}
.y15_c01219{bottom:552.960000pt;}
.y16_c01219{bottom:561.413333pt;}
.y11_c01219{bottom:567.546667pt;}
.y13_c01219{bottom:568.320000pt;}
.y14_c01219{bottom:576.000000pt;}
.y12_c01219{bottom:576.773333pt;}
.yf_c01219{bottom:590.586667pt;}
.y10_c01219{bottom:602.880000pt;}
.ye_c01219{bottom:810.240000pt;}
.yd_c01219{bottom:849.413333pt;}
.yc_c01219{bottom:890.106667pt;}
.ya_c01219{bottom:907.013333pt;}
.yb_c01219{bottom:921.600000pt;}
.y9_c01219{bottom:926.213333pt;}
.y8_c01219{bottom:1006.080000pt;}
.y6_c01219{bottom:1006.853333pt;}
.y7_c01219{bottom:1009.146667pt;}
.y5_c01219{bottom:1016.826667pt;}
.y4_c01219{bottom:1019.133333pt;}
.y1_c01219{bottom:1023.746667pt;}
.y2_c01219{bottom:1026.813333pt;}
.y3_c01219{bottom:1030.653333pt;}
.h4_c01219{height:2.764500pt;}
.h11_c01219{height:4.799479pt;}
.h5_c01219{height:8.303099pt;}
.h6_c01219{height:13.822500pt;}
.h8_c01219{height:16.606198pt;}
.h2_c01219{height:19.341901pt;}
.h14_c01219{height:22.125599pt;}
.h7_c01219{height:24.861302pt;}
.h3_c01219{height:30.428698pt;}
.h10_c01219{height:41.467500pt;}
.h13_c01219{height:46.986901pt;}
.he_c01219{height:49.770599pt;}
.h12_c01219{height:52.506302pt;}
.h15_c01219{height:60.809401pt;}
.ha_c01219{height:66.328802pt;}
.hf_c01219{height:80.151302pt;}
.hd_c01219{height:93.973802pt;}
.h9_c01219{height:96.757500pt;}
.hb_c01219{height:105.060599pt;}
.hc_c01219{height:149.263802pt;}
.h0_c01219{height:1347.066667pt;}
.h1_c01219{height:1347.333333pt;}
.w0_c01219{width:973.053333pt;}
.w1_c01219{width:973.333333pt;}
.x0_c01219{left:0.000000pt;}
.xf_c01219{left:17.666667pt;}
.x4_c01219{left:23.039637pt;}
.xc_c01219{left:28.413333pt;}
.x5_c01219{left:35.333333pt;}
.xd_c01219{left:42.240000pt;}
.xe_c01219{left:49.146667pt;}
.x1_c01219{left:52.986667pt;}
.xb_c01219{left:93.693333pt;}
.x9_c01219{left:96.000000pt;}
.xa_c01219{left:111.360000pt;}
.x6_c01219{left:119.040000pt;}
.x7_c01219{left:144.386667pt;}
.x2_c01219{left:152.826667pt;}
.x8_c01219{left:157.440000pt;}
.x3_c01219{left:162.813333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9df50ca52cb625fff018f6fe.woff2')format("woff");}.ff1_c01220{font-family:ff1_c01220;line-height:1.109863;font-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_c01220{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01220{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);}
.m1_c01220{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01220{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4_c01220{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m0_c01220{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.v1_c01220{vertical-align:-6.900000px;}
.v0_c01220{vertical-align:0.000000px;}
.ls1_c01220{letter-spacing:0.000000px;}
.ls0_c01220{letter-spacing:45.148740px;}
.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;}
.fs4_c01220{font-size:3.456000px;}
.fs6_c01220{font-size:6.900000px;}
.fs5_c01220{font-size:10.380000px;}
.fs0_c01220{font-size:17.280000px;}
.fs3_c01220{font-size:31.080000px;}
.fs1_c01220{font-size:44.940000px;}
.fs2_c01220{font-size:62.220000px;}
.y0_c01220{bottom:0.000000px;}
.y5_c01220{bottom:919.290000px;}
.y7_c01220{bottom:921.885000px;}
.y6_c01220{bottom:922.755000px;}
.y4_c01220{bottom:1158.630000px;}
.y3_c01220{bottom:1175.910000px;}
.y2_c01220{bottom:1182.810000px;}
.y1_c01220{bottom:1354.755000px;}
.h6_c01220{height:3.110063px;}
.h7_c01220{height:9.340986px;}
.h2_c01220{height:15.550313px;}
.h5_c01220{height:27.968965px;}
.h3_c01220{height:40.441611px;}
.h4_c01220{height:55.991924px;}
.h1_c01220{height:1518.750000px;}
.h0_c01220{height:1518.915000px;}
.w0_c01220{width:1085.190000px;}
.w1_c01220{width:1085.250000px;}
.x0_c01220{left:0.000000px;}
.x5_c01220{left:914.115000px;}
.x1_c01220{left:921.885000px;}
.x6_c01220{left:930.525000px;}
.x7_c01220{left:967.680000px;}
.x2_c01220{left:1034.205000px;}
.x4_c01220{left:1044.570000px;}
.x3_c01220{left:1048.035000px;}
@media print{
.v1_c01220{vertical-align:-6.133333pt;}
.v0_c01220{vertical-align:0.000000pt;}
.ls1_c01220{letter-spacing:0.000000pt;}
.ls0_c01220{letter-spacing:40.132213pt;}
.ws0_c01220{word-spacing:0.000000pt;}
.fs4_c01220{font-size:3.072000pt;}
.fs6_c01220{font-size:6.133333pt;}
.fs5_c01220{font-size:9.226667pt;}
.fs0_c01220{font-size:15.360000pt;}
.fs3_c01220{font-size:27.626667pt;}
.fs1_c01220{font-size:39.946667pt;}
.fs2_c01220{font-size:55.306667pt;}
.y0_c01220{bottom:0.000000pt;}
.y5_c01220{bottom:817.146667pt;}
.y7_c01220{bottom:819.453333pt;}
.y6_c01220{bottom:820.226667pt;}
.y4_c01220{bottom:1029.893333pt;}
.y3_c01220{bottom:1045.253333pt;}
.y2_c01220{bottom:1051.386667pt;}
.y1_c01220{bottom:1204.226667pt;}
.h6_c01220{height:2.764500pt;}
.h7_c01220{height:8.303099pt;}
.h2_c01220{height:13.822500pt;}
.h5_c01220{height:24.861302pt;}
.h3_c01220{height:35.948099pt;}
.h4_c01220{height:49.770599pt;}
.h1_c01220{height:1350.000000pt;}
.h0_c01220{height:1350.146667pt;}
.w0_c01220{width:964.613333pt;}
.w1_c01220{width:964.666667pt;}
.x0_c01220{left:0.000000pt;}
.x5_c01220{left:812.546667pt;}
.x1_c01220{left:819.453333pt;}
.x6_c01220{left:827.133333pt;}
.x7_c01220{left:860.160000pt;}
.x2_c01220{left:919.293333pt;}
.x4_c01220{left:928.506667pt;}
.x3_c01220{left:931.586667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01221;src:url('chunks/assets/font_be8e0a82d275a8ab6715c888.woff2')format("woff");}.ff1_c01221{font-family:ff1_c01221;line-height:1.109863;font-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_c01221{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);}
.v0_c01221{vertical-align:0.000000px;}
.ls0_c01221{letter-spacing:0.000000px;}
.sc__c01221{text-shadow:none;}
.sc0_c01221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01221{-webkit-text-stroke:0px transparent;}
.sc0_c01221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01221{word-spacing:0.000000px;}
.fc0_c01221{color:transparent;}
.fs0_c01221{font-size:600.000000px;}
.y0_c01221{bottom:0.000000px;}
.y1_c01221{bottom:15.000000px;}
.h2_c01221{height:539.941406px;}
.h0_c01221{height:1515.450000px;}
.h1_c01221{height:1515.750000px;}
.w0_c01221{width:1094.685000px;}
.w1_c01221{width:1095.000000px;}
.x0_c01221{left:0.000000px;}
.x1_c01221{left:15.000000px;}
@media print{
.v0_c01221{vertical-align:0.000000pt;}
.ls0_c01221{letter-spacing:0.000000pt;}
.ws0_c01221{word-spacing:0.000000pt;}
.fs0_c01221{font-size:533.333333pt;}
.y0_c01221{bottom:0.000000pt;}
.y1_c01221{bottom:13.333333pt;}
.h2_c01221{height:479.947917pt;}
.h0_c01221{height:1347.066667pt;}
.h1_c01221{height:1347.333333pt;}
.w0_c01221{width:973.053333pt;}
.w1_c01221{width:973.333333pt;}
.x0_c01221{left:0.000000pt;}
.x1_c01221{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_728af450bc48158af128b019.woff2')format("woff");}.ff1_c01222{font-family:ff1_c01222;line-height:1.109863;font-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_c01222{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);}
.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;}
.fs0_c01222{font-size:600.000000px;}
.y0_c01222{bottom:0.000000px;}
.y1_c01222{bottom:15.000000px;}
.h2_c01222{height:539.941406px;}
.h1_c01222{height:1518.750000px;}
.h0_c01222{height:1518.915000px;}
.w0_c01222{width:1085.190000px;}
.w1_c01222{width:1085.250000px;}
.x0_c01222{left:0.000000px;}
.x1_c01222{left:15.000000px;}
@media print{
.v0_c01222{vertical-align:0.000000pt;}
.ls0_c01222{letter-spacing:0.000000pt;}
.ws0_c01222{word-spacing:0.000000pt;}
.fs0_c01222{font-size:533.333333pt;}
.y0_c01222{bottom:0.000000pt;}
.y1_c01222{bottom:13.333333pt;}
.h2_c01222{height:479.947917pt;}
.h1_c01222{height:1350.000000pt;}
.h0_c01222{height:1350.146667pt;}
.w0_c01222{width:964.613333pt;}
.w1_c01222{width:964.666667pt;}
.x0_c01222{left:0.000000pt;}
.x1_c01222{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fe21c23a57d0ee7063aec7a9.woff2')format("woff");}.ff1_c01223{font-family:ff1_c01223;line-height:1.109863;font-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_c01223{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m13_c01223{transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133175,0.000000,0.000000,0.250000,0,0);}
.mb_c01223{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma_c01223{transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);}
.m2_c01223{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mc_c01223{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m10_c01223{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m8_c01223{transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);}
.m4_c01223{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);}
.m11_c01223{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);}
.m0_c01223{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me_c01223{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c01223{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);}
.m5_c01223{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c01223{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12_c01223{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6_c01223{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);}
.md_c01223{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c01223{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3_c01223{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.v1_c01223{vertical-align:-3.480000px;}
.v0_c01223{vertical-align:0.000000px;}
.ls1_c01223{letter-spacing:0.000000px;}
.ls0_c01223{letter-spacing:68.279400px;}
.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;}
.fsb_c01223{font-size:3.456000px;}
.fs9_c01223{font-size:6.000000px;}
.fsc_c01223{font-size:10.380000px;}
.fs1_c01223{font-size:13.800000px;}
.fs0_c01223{font-size:17.280000px;}
.fs2_c01223{font-size:20.760000px;}
.fs5_c01223{font-size:24.180000px;}
.fs3_c01223{font-size:27.660000px;}
.fse_c01223{font-size:31.080000px;}
.fsd_c01223{font-size:38.040000px;}
.fs7_c01223{font-size:51.840000px;}
.fs6_c01223{font-size:58.740000px;}
.fsa_c01223{font-size:65.640000px;}
.fsf_c01223{font-size:69.120000px;}
.fs8_c01223{font-size:72.600000px;}
.fs4_c01223{font-size:79.500000px;}
.y0_c01223{bottom:0.000000px;}
.y14_c01223{bottom:1042.845000px;}
.y12_c01223{bottom:1063.590000px;}
.y13_c01223{bottom:1065.315000px;}
.y11_c01223{bottom:1073.955000px;}
.y10_c01223{bottom:1080.000000px;}
.yf_c01223{bottom:1090.365000px;}
.ye_c01223{bottom:1092.090000px;}
.yc_c01223{bottom:1095.555000px;}
.yd_c01223{bottom:1109.370000px;}
.yb_c01223{bottom:1115.430000px;}
.ya_c01223{bottom:1117.155000px;}
.y9_c01223{bottom:1134.435000px;}
.y8_c01223{bottom:1135.290000px;}
.y15_c01223{bottom:1143.075000px;}
.y17_c01223{bottom:1143.930000px;}
.y16_c01223{bottom:1147.395000px;}
.y7_c01223{bottom:1399.680000px;}
.y6_c01223{bottom:1400.550000px;}
.y5_c01223{bottom:1401.405000px;}
.y3_c01223{bottom:1405.725000px;}
.y4_c01223{bottom:1410.045000px;}
.y2_c01223{bottom:1436.835000px;}
.y1_c01223{bottom:1441.155000px;}
.hd_c01223{height:3.110063px;}
.hb_c01223{height:5.399414px;}
.he_c01223{height:9.340986px;}
.h3_c01223{height:12.418652px;}
.h2_c01223{height:15.550313px;}
.h4_c01223{height:18.681973px;}
.h7_c01223{height:21.759639px;}
.h5_c01223{height:24.891299px;}
.h10_c01223{height:27.968965px;}
.hf_c01223{height:34.232285px;}
.h9_c01223{height:46.650937px;}
.h8_c01223{height:52.860264px;}
.hc_c01223{height:59.069590px;}
.h11_c01223{height:62.201250px;}
.ha_c01223{height:65.332910px;}
.h6_c01223{height:71.542236px;}
.h0_c01223{height:1515.450000px;}
.h1_c01223{height:1515.750000px;}
.w0_c01223{width:1094.685000px;}
.w1_c01223{width:1095.000000px;}
.x0_c01223{left:0.000000px;}
.xc_c01223{left:12.090000px;}
.xd_c01223{left:25.920000px;}
.x9_c01223{left:38.010000px;}
.xa_c01223{left:50.115000px;}
.xb_c01223{left:51.840000px;}
.x6_c01223{left:54.435000px;}
.xe_c01223{left:63.930000px;}
.xf_c01223{left:70.845000px;}
.x10_c01223{left:81.210000px;}
.x4_c01223{left:397.440000px;}
.x7_c01223{left:445.830000px;}
.x5_c01223{left:640.230000px;}
.x1_c01223{left:644.550000px;}
.x8_c01223{left:725.760000px;}
.x2_c01223{left:734.400000px;}
.x3_c01223{left:743.910000px;}
@media print{
.v1_c01223{vertical-align:-3.093333pt;}
.v0_c01223{vertical-align:0.000000pt;}
.ls1_c01223{letter-spacing:0.000000pt;}
.ls0_c01223{letter-spacing:60.692800pt;}
.ws0_c01223{word-spacing:0.000000pt;}
.fsb_c01223{font-size:3.072000pt;}
.fs9_c01223{font-size:5.333333pt;}
.fsc_c01223{font-size:9.226667pt;}
.fs1_c01223{font-size:12.266667pt;}
.fs0_c01223{font-size:15.360000pt;}
.fs2_c01223{font-size:18.453333pt;}
.fs5_c01223{font-size:21.493333pt;}
.fs3_c01223{font-size:24.586667pt;}
.fse_c01223{font-size:27.626667pt;}
.fsd_c01223{font-size:33.813333pt;}
.fs7_c01223{font-size:46.080000pt;}
.fs6_c01223{font-size:52.213333pt;}
.fsa_c01223{font-size:58.346667pt;}
.fsf_c01223{font-size:61.440000pt;}
.fs8_c01223{font-size:64.533333pt;}
.fs4_c01223{font-size:70.666667pt;}
.y0_c01223{bottom:0.000000pt;}
.y14_c01223{bottom:926.973333pt;}
.y12_c01223{bottom:945.413333pt;}
.y13_c01223{bottom:946.946667pt;}
.y11_c01223{bottom:954.626667pt;}
.y10_c01223{bottom:960.000000pt;}
.yf_c01223{bottom:969.213333pt;}
.ye_c01223{bottom:970.746667pt;}
.yc_c01223{bottom:973.826667pt;}
.yd_c01223{bottom:986.106667pt;}
.yb_c01223{bottom:991.493333pt;}
.ya_c01223{bottom:993.026667pt;}
.y9_c01223{bottom:1008.386667pt;}
.y8_c01223{bottom:1009.146667pt;}
.y15_c01223{bottom:1016.066667pt;}
.y17_c01223{bottom:1016.826667pt;}
.y16_c01223{bottom:1019.906667pt;}
.y7_c01223{bottom:1244.160000pt;}
.y6_c01223{bottom:1244.933333pt;}
.y5_c01223{bottom:1245.693333pt;}
.y3_c01223{bottom:1249.533333pt;}
.y4_c01223{bottom:1253.373333pt;}
.y2_c01223{bottom:1277.186667pt;}
.y1_c01223{bottom:1281.026667pt;}
.hd_c01223{height:2.764500pt;}
.hb_c01223{height:4.799479pt;}
.he_c01223{height:8.303099pt;}
.h3_c01223{height:11.038802pt;}
.h2_c01223{height:13.822500pt;}
.h4_c01223{height:16.606198pt;}
.h7_c01223{height:19.341901pt;}
.h5_c01223{height:22.125599pt;}
.h10_c01223{height:24.861302pt;}
.hf_c01223{height:30.428698pt;}
.h9_c01223{height:41.467500pt;}
.h8_c01223{height:46.986901pt;}
.hc_c01223{height:52.506302pt;}
.h11_c01223{height:55.290000pt;}
.ha_c01223{height:58.073698pt;}
.h6_c01223{height:63.593099pt;}
.h0_c01223{height:1347.066667pt;}
.h1_c01223{height:1347.333333pt;}
.w0_c01223{width:973.053333pt;}
.w1_c01223{width:973.333333pt;}
.x0_c01223{left:0.000000pt;}
.xc_c01223{left:10.746667pt;}
.xd_c01223{left:23.040000pt;}
.x9_c01223{left:33.786667pt;}
.xa_c01223{left:44.546667pt;}
.xb_c01223{left:46.080000pt;}
.x6_c01223{left:48.386667pt;}
.xe_c01223{left:56.826667pt;}
.xf_c01223{left:62.973333pt;}
.x10_c01223{left:72.186667pt;}
.x4_c01223{left:353.280000pt;}
.x7_c01223{left:396.293333pt;}
.x5_c01223{left:569.093333pt;}
.x1_c01223{left:572.933333pt;}
.x8_c01223{left:645.120000pt;}
.x2_c01223{left:652.800000pt;}
.x3_c01223{left:661.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b8870ced580b01be759821e.woff2')format("woff");}.ff1_c01224{font-family:ff1_c01224;line-height:1.109863;font-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_c01224{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb_c01224{transform:matrix(0.089975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089975,0.000000,0.000000,0.250000,0,0);}
.m12_c01224{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m4_c01224{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.m2_c01224{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m7_c01224{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf_c01224{transform:matrix(0.144150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144150,0.000000,0.000000,0.250000,0,0);}
.m11_c01224{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.m10_c01224{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);}
.ma_c01224{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.m5_c01224{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);}
.md_c01224{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);}
.mc_c01224{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m13_c01224{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);}
.m8_c01224{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);}
.me_c01224{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);}
.m3_c01224{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01224{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c01224{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c01224{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,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;}
.fs1_c01224{font-size:3.456000px;}
.fs3_c01224{font-size:6.000000px;}
.fs0_c01224{font-size:13.800000px;}
.fs8_c01224{font-size:17.280000px;}
.fs2_c01224{font-size:20.760000px;}
.fs4_c01224{font-size:24.180000px;}
.fs7_c01224{font-size:31.080000px;}
.fs6_c01224{font-size:44.940000px;}
.fsa_c01224{font-size:48.360000px;}
.fs9_c01224{font-size:51.840000px;}
.fse_c01224{font-size:55.320000px;}
.fsd_c01224{font-size:58.740000px;}
.fs5_c01224{font-size:65.640000px;}
.fsb_c01224{font-size:69.120000px;}
.fsc_c01224{font-size:86.400000px;}
.y0_c01224{bottom:0.000000px;}
.y19_c01224{bottom:220.320000px;}
.y17_c01224{bottom:234.150000px;}
.y18_c01224{bottom:239.325000px;}
.y16_c01224{bottom:252.285000px;}
.y15_c01224{bottom:253.155000px;}
.y13_c01224{bottom:266.970000px;}
.y14_c01224{bottom:270.435000px;}
.y12_c01224{bottom:285.990000px;}
.y11_c01224{bottom:290.310000px;}
.yf_c01224{bottom:303.270000px;}
.y10_c01224{bottom:305.850000px;}
.ye_c01224{bottom:325.725000px;}
.yd_c01224{bottom:343.005000px;}
.yc_c01224{bottom:349.050000px;}
.ya_c01224{bottom:549.510000px;}
.yb_c01224{bottom:550.365000px;}
.y8_c01224{bottom:994.470000px;}
.y9_c01224{bottom:1000.515000px;}
.y7_c01224{bottom:1006.560000px;}
.y5_c01224{bottom:1276.995000px;}
.y4_c01224{bottom:1283.910000px;}
.y6_c01224{bottom:1289.955000px;}
.y2_c01224{bottom:1384.125000px;}
.y3_c01224{bottom:1384.995000px;}
.y1_c01224{bottom:1391.040000px;}
.h3_c01224{height:3.110063px;}
.h5_c01224{height:5.399414px;}
.h2_c01224{height:12.418652px;}
.ha_c01224{height:15.550313px;}
.h4_c01224{height:18.681973px;}
.h6_c01224{height:21.759639px;}
.h9_c01224{height:27.968965px;}
.h8_c01224{height:40.441611px;}
.hc_c01224{height:43.519277px;}
.hb_c01224{height:46.650937px;}
.h10_c01224{height:49.782598px;}
.hf_c01224{height:52.860264px;}
.h7_c01224{height:59.069590px;}
.hd_c01224{height:62.201250px;}
.he_c01224{height:77.751563px;}
.h1_c01224{height:1518.750000px;}
.h0_c01224{height:1518.915000px;}
.w0_c01224{width:1085.190000px;}
.w1_c01224{width:1085.250000px;}
.x0_c01224{left:0.000000px;}
.x2_c01224{left:954.720000px;}
.x1_c01224{left:959.040000px;}
.x3_c01224{left:962.490000px;}
.x4_c01224{left:1015.200000px;}
.x5_c01224{left:1022.115000px;}
.x11_c01224{left:1029.885000px;}
.x8_c01224{left:1033.350000px;}
.x12_c01224{left:1035.930000px;}
.xb_c01224{left:1039.394592px;}
.xf_c01224{left:1041.990000px;}
.xc_c01224{left:1044.570000px;}
.x9_c01224{left:1047.165000px;}
.xd_c01224{left:1052.355000px;}
.x6_c01224{left:1055.805000px;}
.x7_c01224{left:1064.443755px;}
.x10_c01224{left:1073.955000px;}
.xa_c01224{left:1075.680000px;}
.xe_c01224{left:1079.130000px;}
.x13_c01224{left:1080.870000px;}
@media print{
.v0_c01224{vertical-align:0.000000pt;}
.ls0_c01224{letter-spacing:0.000000pt;}
.ws0_c01224{word-spacing:0.000000pt;}
.fs1_c01224{font-size:3.072000pt;}
.fs3_c01224{font-size:5.333333pt;}
.fs0_c01224{font-size:12.266667pt;}
.fs8_c01224{font-size:15.360000pt;}
.fs2_c01224{font-size:18.453333pt;}
.fs4_c01224{font-size:21.493333pt;}
.fs7_c01224{font-size:27.626667pt;}
.fs6_c01224{font-size:39.946667pt;}
.fsa_c01224{font-size:42.986667pt;}
.fs9_c01224{font-size:46.080000pt;}
.fse_c01224{font-size:49.173333pt;}
.fsd_c01224{font-size:52.213333pt;}
.fs5_c01224{font-size:58.346667pt;}
.fsb_c01224{font-size:61.440000pt;}
.fsc_c01224{font-size:76.800000pt;}
.y0_c01224{bottom:0.000000pt;}
.y19_c01224{bottom:195.840000pt;}
.y17_c01224{bottom:208.133333pt;}
.y18_c01224{bottom:212.733333pt;}
.y16_c01224{bottom:224.253333pt;}
.y15_c01224{bottom:225.026667pt;}
.y13_c01224{bottom:237.306667pt;}
.y14_c01224{bottom:240.386667pt;}
.y12_c01224{bottom:254.213333pt;}
.y11_c01224{bottom:258.053333pt;}
.yf_c01224{bottom:269.573333pt;}
.y10_c01224{bottom:271.866667pt;}
.ye_c01224{bottom:289.533333pt;}
.yd_c01224{bottom:304.893333pt;}
.yc_c01224{bottom:310.266667pt;}
.ya_c01224{bottom:488.453333pt;}
.yb_c01224{bottom:489.213333pt;}
.y8_c01224{bottom:883.973333pt;}
.y9_c01224{bottom:889.346667pt;}
.y7_c01224{bottom:894.720000pt;}
.y5_c01224{bottom:1135.106667pt;}
.y4_c01224{bottom:1141.253333pt;}
.y6_c01224{bottom:1146.626667pt;}
.y2_c01224{bottom:1230.333333pt;}
.y3_c01224{bottom:1231.106667pt;}
.y1_c01224{bottom:1236.480000pt;}
.h3_c01224{height:2.764500pt;}
.h5_c01224{height:4.799479pt;}
.h2_c01224{height:11.038802pt;}
.ha_c01224{height:13.822500pt;}
.h4_c01224{height:16.606198pt;}
.h6_c01224{height:19.341901pt;}
.h9_c01224{height:24.861302pt;}
.h8_c01224{height:35.948099pt;}
.hc_c01224{height:38.683802pt;}
.hb_c01224{height:41.467500pt;}
.h10_c01224{height:44.251198pt;}
.hf_c01224{height:46.986901pt;}
.h7_c01224{height:52.506302pt;}
.hd_c01224{height:55.290000pt;}
.he_c01224{height:69.112500pt;}
.h1_c01224{height:1350.000000pt;}
.h0_c01224{height:1350.146667pt;}
.w0_c01224{width:964.613333pt;}
.w1_c01224{width:964.666667pt;}
.x0_c01224{left:0.000000pt;}
.x2_c01224{left:848.640000pt;}
.x1_c01224{left:852.480000pt;}
.x3_c01224{left:855.546667pt;}
.x4_c01224{left:902.400000pt;}
.x5_c01224{left:908.546667pt;}
.x11_c01224{left:915.453333pt;}
.x8_c01224{left:918.533333pt;}
.x12_c01224{left:920.826667pt;}
.xb_c01224{left:923.906304pt;}
.xf_c01224{left:926.213333pt;}
.xc_c01224{left:928.506667pt;}
.x9_c01224{left:930.813333pt;}
.xd_c01224{left:935.426667pt;}
.x6_c01224{left:938.493333pt;}
.x7_c01224{left:946.172227pt;}
.x10_c01224{left:954.626667pt;}
.xa_c01224{left:956.160000pt;}
.xe_c01224{left:959.226667pt;}
.x13_c01224{left:960.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bd204658a38ce68430a3079.woff2')format("woff");}.ff1_c01225{font-family:ff1_c01225;line-height:1.109863;font-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_c01225{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);}
.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;}
.fs0_c01225{font-size:600.000000px;}
.y0_c01225{bottom:0.000000px;}
.y1_c01225{bottom:15.000000px;}
.h2_c01225{height:539.941406px;}
.h0_c01225{height:1515.450000px;}
.h1_c01225{height:1515.750000px;}
.w0_c01225{width:1094.685000px;}
.w1_c01225{width:1095.000000px;}
.x0_c01225{left:0.000000px;}
.x1_c01225{left:15.000000px;}
@media print{
.v0_c01225{vertical-align:0.000000pt;}
.ls0_c01225{letter-spacing:0.000000pt;}
.ws0_c01225{word-spacing:0.000000pt;}
.fs0_c01225{font-size:533.333333pt;}
.y0_c01225{bottom:0.000000pt;}
.y1_c01225{bottom:13.333333pt;}
.h2_c01225{height:479.947917pt;}
.h0_c01225{height:1347.066667pt;}
.h1_c01225{height:1347.333333pt;}
.w0_c01225{width:973.053333pt;}
.w1_c01225{width:973.333333pt;}
.x0_c01225{left:0.000000pt;}
.x1_c01225{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_769382be9ffc3e43c63e41a2.woff2')format("woff");}.ff1_c01226{font-family:ff1_c01226;line-height:1.109863;font-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_c01226{transform:matrix(0.049225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.049225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.049225,0.000000,0.000000,0.250000,0,0);}
.m1_c01226{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m2_c01226{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c01226{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);}
.m6_c01226{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5_c01226{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);}
.m3_c01226{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01226{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c01226{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,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;}
.fs2_c01226{font-size:3.456000px;}
.fs3_c01226{font-size:17.280000px;}
.fs4_c01226{font-size:24.180000px;}
.fs1_c01226{font-size:51.840000px;}
.fs0_c01226{font-size:190.080000px;}
.y0_c01226{bottom:0.000000px;}
.y9_c01226{bottom:973.725000px;}
.y7_c01226{bottom:987.555000px;}
.y8_c01226{bottom:988.410000px;}
.y6_c01226{bottom:1004.835000px;}
.y5_c01226{bottom:1032.480000px;}
.y4_c01226{bottom:1252.800000px;}
.y3_c01226{bottom:1254.525000px;}
.y2_c01226{bottom:1276.995000px;}
.y1_c01226{bottom:1294.275000px;}
.h4_c01226{height:3.110063px;}
.h5_c01226{height:15.550313px;}
.h6_c01226{height:21.759639px;}
.h3_c01226{height:46.650937px;}
.h2_c01226{height:171.053437px;}
.h1_c01226{height:1518.750000px;}
.h0_c01226{height:1518.915000px;}
.w0_c01226{width:1085.190000px;}
.w1_c01226{width:1085.250000px;}
.x0_c01226{left:0.000000px;}
.x1_c01226{left:977.190000px;}
.x4_c01226{left:984.960000px;}
.x2_c01226{left:1008.285000px;}
.x3_c01226{left:1022.115000px;}
.x5_c01226{left:1036.800000px;}
.x6_c01226{left:1074.810000px;}
.x7_c01226{left:1076.550000px;}
@media print{
.v0_c01226{vertical-align:0.000000pt;}
.ls0_c01226{letter-spacing:0.000000pt;}
.ws0_c01226{word-spacing:0.000000pt;}
.fs2_c01226{font-size:3.072000pt;}
.fs3_c01226{font-size:15.360000pt;}
.fs4_c01226{font-size:21.493333pt;}
.fs1_c01226{font-size:46.080000pt;}
.fs0_c01226{font-size:168.960000pt;}
.y0_c01226{bottom:0.000000pt;}
.y9_c01226{bottom:865.533333pt;}
.y7_c01226{bottom:877.826667pt;}
.y8_c01226{bottom:878.586667pt;}
.y6_c01226{bottom:893.186667pt;}
.y5_c01226{bottom:917.760000pt;}
.y4_c01226{bottom:1113.600000pt;}
.y3_c01226{bottom:1115.133333pt;}
.y2_c01226{bottom:1135.106667pt;}
.y1_c01226{bottom:1150.466667pt;}
.h4_c01226{height:2.764500pt;}
.h5_c01226{height:13.822500pt;}
.h6_c01226{height:19.341901pt;}
.h3_c01226{height:41.467500pt;}
.h2_c01226{height:152.047500pt;}
.h1_c01226{height:1350.000000pt;}
.h0_c01226{height:1350.146667pt;}
.w0_c01226{width:964.613333pt;}
.w1_c01226{width:964.666667pt;}
.x0_c01226{left:0.000000pt;}
.x1_c01226{left:868.613333pt;}
.x4_c01226{left:875.520000pt;}
.x2_c01226{left:896.253333pt;}
.x3_c01226{left:908.546667pt;}
.x5_c01226{left:921.600000pt;}
.x6_c01226{left:955.386667pt;}
.x7_c01226{left:956.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e40d2a576f7ba00599cfdeaf.woff2')format("woff");}.ff1_c01227{font-family:ff1_c01227;line-height:1.109863;font-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_c01227{transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);}
.m11_c01227{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.md_c01227{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.m9_c01227{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.m2_c01227{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01227{transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);}
.m12_c01227{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);}
.m17_c01227{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);}
.m1c_c01227{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m8_c01227{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);}
.m5_c01227{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);}
.m13_c01227{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);}
.m15_c01227{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c01227{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);}
.mc_c01227{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);}
.m21_c01227{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c01227{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m7_c01227{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m26_c01227{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf_c01227{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);}
.m10_c01227{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m24_c01227{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m16_c01227{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);}
.m3_c01227{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m0_c01227{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m18_c01227{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mb_c01227{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m25_c01227{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m20_c01227{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);}
.m1b_c01227{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1_c01227{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m19_c01227{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4_c01227{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m23_c01227{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01227{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01227{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01227{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m14_c01227{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m6_c01227{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.v1_c01227{vertical-align:-3.480000px;}
.v0_c01227{vertical-align:0.000000px;}
.ls1_c01227{letter-spacing:0.000000px;}
.ls0_c01227{letter-spacing:66.663000px;}
.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:-1.476600px;}
.ws1_c01227{word-spacing:0.000000px;}
.fc0_c01227{color:transparent;}
.fse_c01227{font-size:3.456000px;}
.fs4_c01227{font-size:6.900000px;}
.fs0_c01227{font-size:10.380000px;}
.fsc_c01227{font-size:13.800000px;}
.fs6_c01227{font-size:17.280000px;}
.fs10_c01227{font-size:20.760000px;}
.fs7_c01227{font-size:24.180000px;}
.fsb_c01227{font-size:27.660000px;}
.fs2_c01227{font-size:31.080000px;}
.fsd_c01227{font-size:34.560000px;}
.fs1_c01227{font-size:38.040000px;}
.fs9_c01227{font-size:41.460000px;}
.fs3_c01227{font-size:44.940000px;}
.fs8_c01227{font-size:48.360000px;}
.fs5_c01227{font-size:51.840000px;}
.fsa_c01227{font-size:69.120000px;}
.fsf_c01227{font-size:79.500000px;}
.y0_c01227{bottom:0.000000px;}
.y26_c01227{bottom:738.720000px;}
.y27_c01227{bottom:740.445000px;}
.y28_c01227{bottom:741.315000px;}
.y25_c01227{bottom:747.360000px;}
.y24_c01227{bottom:752.550000px;}
.y23_c01227{bottom:759.450000px;}
.y22_c01227{bottom:773.280000px;}
.y20_c01227{bottom:784.515000px;}
.y21_c01227{bottom:787.110000px;}
.y1d_c01227{bottom:789.690000px;}
.y1e_c01227{bottom:790.560000px;}
.y1f_c01227{bottom:794.880000px;}
.y18_c01227{bottom:806.970000px;}
.y1a_c01227{bottom:809.565000px;}
.y19_c01227{bottom:810.435000px;}
.y1b_c01227{bottom:811.290000px;}
.y1c_c01227{bottom:812.160000px;}
.y17_c01227{bottom:818.205000px;}
.y16_c01227{bottom:819.075000px;}
.y13_c01227{bottom:822.525000px;}
.y12_c01227{bottom:825.990000px;}
.y14_c01227{bottom:827.715000px;}
.y15_c01227{bottom:829.440000px;}
.y11_c01227{bottom:844.995000px;}
.y10_c01227{bottom:863.130000px;}
.y29_c01227{bottom:873.510000px;}
.yf_c01227{bottom:1172.445000px;}
.ye_c01227{bottom:1180.230000px;}
.yd_c01227{bottom:1183.680000px;}
.yb_c01227{bottom:1212.195000px;}
.yc_c01227{bottom:1213.920000px;}
.ya_c01227{bottom:1214.790000px;}
.y9_c01227{bottom:1283.910000px;}
.y8_c01227{bottom:1288.230000px;}
.y6_c01227{bottom:1305.510000px;}
.y7_c01227{bottom:1317.600000px;}
.y4_c01227{bottom:1322.790000px;}
.y5_c01227{bottom:1324.515000px;}
.y3_c01227{bottom:1337.475000px;}
.y2_c01227{bottom:1347.840000px;}
.y1_c01227{bottom:1348.710000px;}
.h10_c01227{height:3.110063px;}
.h6_c01227{height:6.209326px;}
.h2_c01227{height:9.340986px;}
.he_c01227{height:12.418652px;}
.h8_c01227{height:15.550313px;}
.h12_c01227{height:18.681973px;}
.h9_c01227{height:21.759639px;}
.hd_c01227{height:24.891299px;}
.h4_c01227{height:27.968965px;}
.hf_c01227{height:31.100625px;}
.h3_c01227{height:34.232285px;}
.hb_c01227{height:37.309951px;}
.h5_c01227{height:40.441611px;}
.ha_c01227{height:43.519277px;}
.h7_c01227{height:46.650937px;}
.hc_c01227{height:62.201250px;}
.h11_c01227{height:71.542236px;}
.h0_c01227{height:1515.450000px;}
.h1_c01227{height:1515.750000px;}
.w0_c01227{width:1094.685000px;}
.w1_c01227{width:1095.000000px;}
.x0_c01227{left:0.000000px;}
.x5_c01227{left:1.725000px;}
.x1_c01227{left:3.450000px;}
.x9_c01227{left:10.365000px;}
.xf_c01227{left:12.960000px;}
.xc_c01227{left:18.150000px;}
.x6_c01227{left:21.600000px;}
.x7_c01227{left:25.920000px;}
.x2_c01227{left:33.690000px;}
.x8_c01227{left:38.010000px;}
.xa_c01227{left:39.750000px;}
.x4_c01227{left:44.925000px;}
.x3_c01227{left:49.245000px;}
.xb_c01227{left:51.840000px;}
.xe_c01227{left:53.565000px;}
.x10_c01227{left:57.885000px;}
.xd_c01227{left:60.480000px;}
.x11_c01227{left:87.270000px;}
@media print{
.v1_c01227{vertical-align:-3.093333pt;}
.v0_c01227{vertical-align:0.000000pt;}
.ls1_c01227{letter-spacing:0.000000pt;}
.ls0_c01227{letter-spacing:59.256000pt;}
.ws0_c01227{word-spacing:-1.312533pt;}
.ws1_c01227{word-spacing:0.000000pt;}
.fse_c01227{font-size:3.072000pt;}
.fs4_c01227{font-size:6.133333pt;}
.fs0_c01227{font-size:9.226667pt;}
.fsc_c01227{font-size:12.266667pt;}
.fs6_c01227{font-size:15.360000pt;}
.fs10_c01227{font-size:18.453333pt;}
.fs7_c01227{font-size:21.493333pt;}
.fsb_c01227{font-size:24.586667pt;}
.fs2_c01227{font-size:27.626667pt;}
.fsd_c01227{font-size:30.720000pt;}
.fs1_c01227{font-size:33.813333pt;}
.fs9_c01227{font-size:36.853333pt;}
.fs3_c01227{font-size:39.946667pt;}
.fs8_c01227{font-size:42.986667pt;}
.fs5_c01227{font-size:46.080000pt;}
.fsa_c01227{font-size:61.440000pt;}
.fsf_c01227{font-size:70.666667pt;}
.y0_c01227{bottom:0.000000pt;}
.y26_c01227{bottom:656.640000pt;}
.y27_c01227{bottom:658.173333pt;}
.y28_c01227{bottom:658.946667pt;}
.y25_c01227{bottom:664.320000pt;}
.y24_c01227{bottom:668.933333pt;}
.y23_c01227{bottom:675.066667pt;}
.y22_c01227{bottom:687.360000pt;}
.y20_c01227{bottom:697.346667pt;}
.y21_c01227{bottom:699.653333pt;}
.y1d_c01227{bottom:701.946667pt;}
.y1e_c01227{bottom:702.720000pt;}
.y1f_c01227{bottom:706.560000pt;}
.y18_c01227{bottom:717.306667pt;}
.y1a_c01227{bottom:719.613333pt;}
.y19_c01227{bottom:720.386667pt;}
.y1b_c01227{bottom:721.146667pt;}
.y1c_c01227{bottom:721.920000pt;}
.y17_c01227{bottom:727.293333pt;}
.y16_c01227{bottom:728.066667pt;}
.y13_c01227{bottom:731.133333pt;}
.y12_c01227{bottom:734.213333pt;}
.y14_c01227{bottom:735.746667pt;}
.y15_c01227{bottom:737.280000pt;}
.y11_c01227{bottom:751.106667pt;}
.y10_c01227{bottom:767.226667pt;}
.y29_c01227{bottom:776.453333pt;}
.yf_c01227{bottom:1042.173333pt;}
.ye_c01227{bottom:1049.093333pt;}
.yd_c01227{bottom:1052.160000pt;}
.yb_c01227{bottom:1077.506667pt;}
.yc_c01227{bottom:1079.040000pt;}
.ya_c01227{bottom:1079.813333pt;}
.y9_c01227{bottom:1141.253333pt;}
.y8_c01227{bottom:1145.093333pt;}
.y6_c01227{bottom:1160.453333pt;}
.y7_c01227{bottom:1171.200000pt;}
.y4_c01227{bottom:1175.813333pt;}
.y5_c01227{bottom:1177.346667pt;}
.y3_c01227{bottom:1188.866667pt;}
.y2_c01227{bottom:1198.080000pt;}
.y1_c01227{bottom:1198.853333pt;}
.h10_c01227{height:2.764500pt;}
.h6_c01227{height:5.519401pt;}
.h2_c01227{height:8.303099pt;}
.he_c01227{height:11.038802pt;}
.h8_c01227{height:13.822500pt;}
.h12_c01227{height:16.606198pt;}
.h9_c01227{height:19.341901pt;}
.hd_c01227{height:22.125599pt;}
.h4_c01227{height:24.861302pt;}
.hf_c01227{height:27.645000pt;}
.h3_c01227{height:30.428698pt;}
.hb_c01227{height:33.164401pt;}
.h5_c01227{height:35.948099pt;}
.ha_c01227{height:38.683802pt;}
.h7_c01227{height:41.467500pt;}
.hc_c01227{height:55.290000pt;}
.h11_c01227{height:63.593099pt;}
.h0_c01227{height:1347.066667pt;}
.h1_c01227{height:1347.333333pt;}
.w0_c01227{width:973.053333pt;}
.w1_c01227{width:973.333333pt;}
.x0_c01227{left:0.000000pt;}
.x5_c01227{left:1.533333pt;}
.x1_c01227{left:3.066667pt;}
.x9_c01227{left:9.213333pt;}
.xf_c01227{left:11.520000pt;}
.xc_c01227{left:16.133333pt;}
.x6_c01227{left:19.200000pt;}
.x7_c01227{left:23.040000pt;}
.x2_c01227{left:29.946667pt;}
.x8_c01227{left:33.786667pt;}
.xa_c01227{left:35.333333pt;}
.x4_c01227{left:39.933333pt;}
.x3_c01227{left:43.773333pt;}
.xb_c01227{left:46.080000pt;}
.xe_c01227{left:47.613333pt;}
.x10_c01227{left:51.453333pt;}
.xd_c01227{left:53.760000pt;}
.x11_c01227{left:77.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_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_2661f475fa6988c0e066dad5.woff2')format("woff");}.ff1_c01228{font-family:ff1_c01228;line-height:1.109863;font-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_c01228{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c01228{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2_c01228{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);}
.m4_c01228{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01228{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);}
.m7_c01228{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c01228{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01228{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c01228{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,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;}
}
.ws1_c01228{word-spacing:0.000000px;}
.ws0_c01228{word-spacing:13.178700px;}
.fc0_c01228{color:transparent;}
.fs3_c01228{font-size:6.900000px;}
.fs4_c01228{font-size:10.380000px;}
.fs5_c01228{font-size:17.280000px;}
.fs6_c01228{font-size:24.180000px;}
.fs1_c01228{font-size:27.660000px;}
.fs0_c01228{font-size:31.080000px;}
.fs2_c01228{font-size:34.560000px;}
.y0_c01228{bottom:0.000000px;}
.yb_c01228{bottom:690.330000px;}
.ya_c01228{bottom:857.955000px;}
.y9_c01228{bottom:959.040000px;}
.y8_c01228{bottom:1354.755000px;}
.y7_c01228{bottom:1355.610000px;}
.y5_c01228{bottom:1356.480000px;}
.y6_c01228{bottom:1357.350000px;}
.y3_c01228{bottom:1360.800000px;}
.y4_c01228{bottom:1361.670000px;}
.y2_c01228{bottom:1365.120000px;}
.y1_c01228{bottom:1442.880000px;}
.h5_c01228{height:6.209326px;}
.h6_c01228{height:9.340986px;}
.h7_c01228{height:15.550313px;}
.h8_c01228{height:21.759639px;}
.h3_c01228{height:24.891299px;}
.h2_c01228{height:27.968965px;}
.h4_c01228{height:31.100625px;}
.h1_c01228{height:1518.750000px;}
.h0_c01228{height:1518.915000px;}
.w0_c01228{width:1085.190000px;}
.w1_c01228{width:1085.250000px;}
.x0_c01228{left:0.000000px;}
.x2_c01228{left:790.560000px;}
.x3_c01228{left:804.390000px;}
.x5_c01228{left:810.435000px;}
.x1_c01228{left:817.350000px;}
.x6_c01228{left:819.075000px;}
.x4_c01228{left:825.120000px;}
.x7_c01228{left:859.680000px;}
.x8_c01228{left:866.595000px;}
.x9_c01228{left:1014.329175px;}
.xa_c01228{left:1029.885000px;}
.xc_c01228{left:1057.530000px;}
.xb_c01228{left:1072.230000px;}
@media print{
.v0_c01228{vertical-align:0.000000pt;}
.ls0_c01228{letter-spacing:0.000000pt;}
.ws1_c01228{word-spacing:0.000000pt;}
.ws0_c01228{word-spacing:11.714400pt;}
.fs3_c01228{font-size:6.133333pt;}
.fs4_c01228{font-size:9.226667pt;}
.fs5_c01228{font-size:15.360000pt;}
.fs6_c01228{font-size:21.493333pt;}
.fs1_c01228{font-size:24.586667pt;}
.fs0_c01228{font-size:27.626667pt;}
.fs2_c01228{font-size:30.720000pt;}
.y0_c01228{bottom:0.000000pt;}
.yb_c01228{bottom:613.626667pt;}
.ya_c01228{bottom:762.626667pt;}
.y9_c01228{bottom:852.480000pt;}
.y8_c01228{bottom:1204.226667pt;}
.y7_c01228{bottom:1204.986667pt;}
.y5_c01228{bottom:1205.760000pt;}
.y6_c01228{bottom:1206.533333pt;}
.y3_c01228{bottom:1209.600000pt;}
.y4_c01228{bottom:1210.373333pt;}
.y2_c01228{bottom:1213.440000pt;}
.y1_c01228{bottom:1282.560000pt;}
.h5_c01228{height:5.519401pt;}
.h6_c01228{height:8.303099pt;}
.h7_c01228{height:13.822500pt;}
.h8_c01228{height:19.341901pt;}
.h3_c01228{height:22.125599pt;}
.h2_c01228{height:24.861302pt;}
.h4_c01228{height:27.645000pt;}
.h1_c01228{height:1350.000000pt;}
.h0_c01228{height:1350.146667pt;}
.w0_c01228{width:964.613333pt;}
.w1_c01228{width:964.666667pt;}
.x0_c01228{left:0.000000pt;}
.x2_c01228{left:702.720000pt;}
.x3_c01228{left:715.013333pt;}
.x5_c01228{left:720.386667pt;}
.x1_c01228{left:726.533333pt;}
.x6_c01228{left:728.066667pt;}
.x4_c01228{left:733.440000pt;}
.x7_c01228{left:764.160000pt;}
.x8_c01228{left:770.306667pt;}
.x9_c01228{left:901.625933pt;}
.xa_c01228{left:915.453333pt;}
.xc_c01228{left:940.026667pt;}
.xb_c01228{left:953.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5632ab5af2f4796445e470d6.woff2')format("woff");}.ff1_c01229{font-family:ff1_c01229;line-height:1.109863;font-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_c01229{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m98_c01229{transform:matrix(0.046550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046550,0.000000,0.000000,0.250000,0,0);}
.m9b_c01229{transform:matrix(0.064200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064200,0.000000,0.000000,0.250000,0,0);}
.m9c_c01229{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.ma2_c01229{transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);}
.m89_c01229{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m8a_c01229{transform:matrix(0.114350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114350,0.000000,0.000000,0.250000,0,0);}
.m65_c01229{transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);}
.mab_c01229{transform:matrix(0.115900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115900,0.000000,0.000000,0.250000,0,0);}
.m6e_c01229{transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);}
.m9f_c01229{transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);}
.m2e_c01229{transform:matrix(0.123500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123500,0.000000,0.000000,0.250000,0,0);}
.m88_c01229{transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);}
.m5b_c01229{transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);}
.m91_c01229{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);}
.m4c_c01229{transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);}
.m7e_c01229{transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);}
.m61_c01229{transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);}
.m74_c01229{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m66_c01229{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m1_c01229{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mae_c01229{transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);}
.m69_c01229{transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);}
.m8c_c01229{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);}
.m16_c01229{transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);}
.m84_c01229{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);}
.m62_c01229{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m49_c01229{transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);}
.m8e_c01229{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);}
.m28_c01229{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.ma4_c01229{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m7d_c01229{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m60_c01229{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.m67_c01229{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.m13_c01229{transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);}
.m70_c01229{transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);}
.m86_c01229{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.mac_c01229{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m6a_c01229{transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);}
.m75_c01229{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.m6b_c01229{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.mf_c01229{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.m95_c01229{transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);}
.m5c_c01229{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);}
.m83_c01229{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);}
.ma6_c01229{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.m80_c01229{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);}
.m1f_c01229{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m92_c01229{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1a_c01229{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m7f_c01229{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);}
.m4d_c01229{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);}
.m5a_c01229{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.m4e_c01229{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.m99_c01229{transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);}
.m85_c01229{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);}
.m87_c01229{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);}
.m7a_c01229{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m4a_c01229{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.m64_c01229{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);}
.m36_c01229{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.m9d_c01229{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);}
.m58_c01229{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m30_c01229{transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);}
.m73_c01229{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);}
.m8f_c01229{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.m82_c01229{transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);}
.m6f_c01229{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);}
.ma8_c01229{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);}
.m94_c01229{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.maa_c01229{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m1d_c01229{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m27_c01229{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m40_c01229{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);}
.m35_c01229{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);}
.m81_c01229{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.m1e_c01229{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);}
.m50_c01229{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);}
.m19_c01229{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.ma1_c01229{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);}
.m63_c01229{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);}
.m1b_c01229{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m38_c01229{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);}
.m9a_c01229{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);}
.m21_c01229{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);}
.m8d_c01229{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);}
.m4f_c01229{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m11_c01229{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);}
.m24_c01229{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.ma9_c01229{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);}
.m53_c01229{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);}
.m45_c01229{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);}
.m55_c01229{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);}
.m7b_c01229{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01229{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m76_c01229{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m34_c01229{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);}
.m44_c01229{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);}
.m26_c01229{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);}
.m7_c01229{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01229{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);}
.m0_c01229{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m33_c01229{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m22_c01229{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);}
.m37_c01229{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);}
.m20_c01229{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);}
.md_c01229{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3_c01229{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01229{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc_c01229{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);}
.m12_c01229{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m54_c01229{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c01229{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01229{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m77_c01229{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c01229{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);}
.m97_c01229{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m46_c01229{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma_c01229{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6_c01229{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma0_c01229{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);}
.m4_c01229{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);}
.m90_c01229{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01229{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);}
.m3d_c01229{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mad_c01229{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01229{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m8_c01229{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);}
.m68_c01229{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m79_c01229{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);}
.m5_c01229{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01229{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.me_c01229{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);}
.m10_c01229{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);}
.m2f_c01229{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);}
.m96_c01229{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m9_c01229{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01229{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m31_c01229{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01229{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m43_c01229{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m78_c01229{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m59_c01229{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m32_c01229{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m47_c01229{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01229{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m29_c01229{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m56_c01229{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);}
.m25_c01229{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01229{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.ma3_c01229{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m23_c01229{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01229{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m18_c01229{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01229{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01229{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m42_c01229{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m6c_c01229{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.ma7_c01229{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m39_c01229{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m51_c01229{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01229{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m48_c01229{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01229{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m57_c01229{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);}
.m93_c01229{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01229{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m52_c01229{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m71_c01229{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);}
.m72_c01229{transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01229{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01229{transform:matrix(1.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.785000,0.000000,0.000000,0.250000,0,0);}
.m15_c01229{transform:matrix(1.895000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.895000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.895000,0.000000,0.000000,0.250000,0,0);}
.m41_c01229{transform:matrix(2.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.687500,0.000000,0.000000,0.250000,0,0);}
.m17_c01229{transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);}
.v1_c01229{vertical-align:-13.800000px;}
.v2_c01229{vertical-align:-6.960000px;}
.v0_c01229{vertical-align:0.000000px;}
.ls1_c01229{letter-spacing:0.000000px;}
.ls0_c01229{letter-spacing:36.202740px;}
.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:-9.767400px;}
.ws1_c01229{word-spacing:0.000000px;}
.fc0_c01229{color:transparent;}
.fs1_c01229{font-size:3.456000px;}
.fsa_c01229{font-size:6.000000px;}
.fsd_c01229{font-size:6.900000px;}
.fs0_c01229{font-size:10.380000px;}
.fs19_c01229{font-size:13.800000px;}
.fsb_c01229{font-size:17.280000px;}
.fs11_c01229{font-size:20.760000px;}
.fs16_c01229{font-size:24.180000px;}
.fs17_c01229{font-size:27.660000px;}
.fs1c_c01229{font-size:31.080000px;}
.fs12_c01229{font-size:34.560000px;}
.fs14_c01229{font-size:38.040000px;}
.fs18_c01229{font-size:41.460000px;}
.fsc_c01229{font-size:44.940000px;}
.fs1a_c01229{font-size:48.360000px;}
.fs6_c01229{font-size:51.840000px;}
.fs3_c01229{font-size:55.320000px;}
.fs4_c01229{font-size:58.740000px;}
.fs2_c01229{font-size:62.220000px;}
.fs9_c01229{font-size:65.640000px;}
.fs5_c01229{font-size:69.120000px;}
.fs7_c01229{font-size:72.600000px;}
.fs15_c01229{font-size:76.020000px;}
.fs10_c01229{font-size:79.500000px;}
.fs1b_c01229{font-size:82.920000px;}
.fs13_c01229{font-size:86.400000px;}
.fsf_c01229{font-size:89.880000px;}
.fs1f_c01229{font-size:93.300000px;}
.fs1e_c01229{font-size:96.780000px;}
.fs1d_c01229{font-size:100.200000px;}
.fs22_c01229{font-size:103.680000px;}
.fse_c01229{font-size:107.160000px;}
.fs20_c01229{font-size:120.960000px;}
.fs21_c01229{font-size:124.440000px;}
.fs8_c01229{font-size:131.340000px;}
.y0_c01229{bottom:0.000000px;}
.yc2_c01229{bottom:236.730000px;}
.yc1_c01229{bottom:241.920000px;}
.yc3_c01229{bottom:245.370000px;}
.ybe_c01229{bottom:249.690000px;}
.ybf_c01229{bottom:251.430000px;}
.yc0_c01229{bottom:252.285000px;}
.ybc_c01229{bottom:254.880000px;}
.ybb_c01229{bottom:255.750000px;}
.ybd_c01229{bottom:269.565000px;}
.yba_c01229{bottom:273.030000px;}
.yb9_c01229{bottom:277.350000px;}
.yb7_c01229{bottom:292.035000px;}
.yb8_c01229{bottom:293.760000px;}
.yb6_c01229{bottom:303.270000px;}
.yb5_c01229{bottom:311.040000px;}
.yb4_c01229{bottom:311.910000px;}
.yb2_c01229{bottom:328.320000px;}
.yb3_c01229{bottom:329.190000px;}
.yb1_c01229{bottom:383.610000px;}
.yb0_c01229{bottom:449.280000px;}
.yaf_c01229{bottom:471.750000px;}
.yac_c01229{bottom:542.595000px;}
.yad_c01229{bottom:548.640000px;}
.yae_c01229{bottom:551.235000px;}
.yaa_c01229{bottom:555.555000px;}
.yab_c01229{bottom:570.240000px;}
.ya9_c01229{bottom:571.110000px;}
.ya7_c01229{bottom:573.690000px;}
.ya8_c01229{bottom:575.430000px;}
.ya5_c01229{bottom:596.160000px;}
.ya6_c01229{bottom:603.930000px;}
.ya4_c01229{bottom:606.525000px;}
.y9f_c01229{bottom:608.250000px;}
.ya3_c01229{bottom:619.485000px;}
.ya2_c01229{bottom:620.355000px;}
.ya1_c01229{bottom:623.805000px;}
.ya0_c01229{bottom:624.675000px;}
.y9c_c01229{bottom:1126.650000px;}
.y9d_c01229{bottom:1127.520000px;}
.y9b_c01229{bottom:1143.930000px;}
.y9a_c01229{bottom:1144.800000px;}
.y97_c01229{bottom:1147.395000px;}
.y98_c01229{bottom:1148.250000px;}
.y99_c01229{bottom:1149.120000px;}
.y96_c01229{bottom:1155.165000px;}
.y8e_c01229{bottom:1156.035000px;}
.y8f_c01229{bottom:1157.760000px;}
.y90_c01229{bottom:1158.630000px;}
.y92_c01229{bottom:1165.530000px;}
.y95_c01229{bottom:1166.400000px;}
.y93_c01229{bottom:1167.270000px;}
.y81_c01229{bottom:1168.125000px;}
.y91_c01229{bottom:1168.995000px;}
.y94_c01229{bottom:1169.850000px;}
.y82_c01229{bottom:1170.720000px;}
.y83_c01229{bottom:1171.590000px;}
.y86_c01229{bottom:1174.170000px;}
.y89_c01229{bottom:1177.635000px;}
.y88_c01229{bottom:1178.490000px;}
.y87_c01229{bottom:1180.230000px;}
.y8a_c01229{bottom:1181.085000px;}
.y80_c01229{bottom:1181.955000px;}
.y8b_c01229{bottom:1183.680000px;}
.y8c_c01229{bottom:1185.405000px;}
.y84_c01229{bottom:1188.000000px;}
.y85_c01229{bottom:1188.870000px;}
.y8d_c01229{bottom:1191.450000px;}
.y75_c01229{bottom:1202.685000px;}
.y7b_c01229{bottom:1203.555000px;}
.y7d_c01229{bottom:1205.280000px;}
.y7f_c01229{bottom:1206.150000px;}
.y76_c01229{bottom:1208.730000px;}
.y79_c01229{bottom:1209.600000px;}
.y7e_c01229{bottom:1210.470000px;}
.y7c_c01229{bottom:1211.325000px;}
.y7a_c01229{bottom:1213.050000px;}
.y78_c01229{bottom:1213.920000px;}
.y70_c01229{bottom:1215.645000px;}
.y6b_c01229{bottom:1219.110000px;}
.y77_c01229{bottom:1219.965000px;}
.y6c_c01229{bottom:1220.835000px;}
.y6d_c01229{bottom:1222.560000px;}
.y6e_c01229{bottom:1223.430000px;}
.y71_c01229{bottom:1225.155000px;}
.y72_c01229{bottom:1226.010000px;}
.y6f_c01229{bottom:1226.880000px;}
.y74_c01229{bottom:1227.750000px;}
.y9e_c01229{bottom:1228.605000px;}
.y73_c01229{bottom:1229.475000px;}
.y62_c01229{bottom:1231.200000px;}
.y6a_c01229{bottom:1232.070000px;}
.y65_c01229{bottom:1233.795000px;}
.y63_c01229{bottom:1234.650000px;}
.y64_c01229{bottom:1236.390000px;}
.y69_c01229{bottom:1238.115000px;}
.y66_c01229{bottom:1238.970000px;}
.y67_c01229{bottom:1239.840000px;}
.y68_c01229{bottom:1240.710000px;}
.y60_c01229{bottom:1241.565000px;}
.y5b_c01229{bottom:1242.435000px;}
.y5a_c01229{bottom:1243.290000px;}
.y61_c01229{bottom:1244.160000px;}
.y5e_c01229{bottom:1245.885000px;}
.y5c_c01229{bottom:1247.610000px;}
.y5d_c01229{bottom:1250.205000px;}
.y5f_c01229{bottom:1251.075000px;}
.y52_c01229{bottom:1256.250000px;}
.y53_c01229{bottom:1259.715000px;}
.y54_c01229{bottom:1260.570000px;}
.y56_c01229{bottom:1261.440000px;}
.y55_c01229{bottom:1262.310000px;}
.y57_c01229{bottom:1270.080000px;}
.y58_c01229{bottom:1272.675000px;}
.y59_c01229{bottom:1276.995000px;}
.y4c_c01229{bottom:1281.315000px;}
.y4d_c01229{bottom:1282.170000px;}
.y4b_c01229{bottom:1283.040000px;}
.y4e_c01229{bottom:1284.765000px;}
.y4f_c01229{bottom:1285.635000px;}
.y51_c01229{bottom:1287.360000px;}
.y50_c01229{bottom:1288.230000px;}
.y42_c01229{bottom:1292.550000px;}
.y41_c01229{bottom:1294.275000px;}
.y44_c01229{bottom:1295.130000px;}
.y45_c01229{bottom:1296.000000px;}
.y43_c01229{bottom:1297.725000px;}
.y46_c01229{bottom:1298.595000px;}
.y49_c01229{bottom:1299.450000px;}
.y48_c01229{bottom:1300.320000px;}
.y47_c01229{bottom:1302.915000px;}
.y4a_c01229{bottom:1303.770000px;}
.y3a_c01229{bottom:1305.510000px;}
.y3b_c01229{bottom:1306.365000px;}
.y3d_c01229{bottom:1308.960000px;}
.y3c_c01229{bottom:1309.830000px;}
.y40_c01229{bottom:1310.685000px;}
.y3f_c01229{bottom:1312.410000px;}
.y3e_c01229{bottom:1313.280000px;}
.y30_c01229{bottom:1320.195000px;}
.y2f_c01229{bottom:1321.050000px;}
.y31_c01229{bottom:1321.920000px;}
.y32_c01229{bottom:1323.645000px;}
.y36_c01229{bottom:1326.240000px;}
.y35_c01229{bottom:1327.110000px;}
.y34_c01229{bottom:1327.965000px;}
.y33_c01229{bottom:1328.835000px;}
.y37_c01229{bottom:1329.690000px;}
.y28_c01229{bottom:1331.430000px;}
.y2d_c01229{bottom:1332.285000px;}
.y2a_c01229{bottom:1333.155000px;}
.y38_c01229{bottom:1334.010000px;}
.y29_c01229{bottom:1334.880000px;}
.y2b_c01229{bottom:1337.475000px;}
.y39_c01229{bottom:1338.330000px;}
.y2c_c01229{bottom:1339.200000px;}
.y2e_c01229{bottom:1340.070000px;}
.y20_c01229{bottom:1340.925000px;}
.y23_c01229{bottom:1342.650000px;}
.y22_c01229{bottom:1344.390000px;}
.y21_c01229{bottom:1345.245000px;}
.y26_c01229{bottom:1346.970000px;}
.y27_c01229{bottom:1348.710000px;}
.y25_c01229{bottom:1349.565000px;}
.y24_c01229{bottom:1351.290000px;}
.y1f_c01229{bottom:1354.755000px;}
.y12_c01229{bottom:1355.610000px;}
.y13_c01229{bottom:1359.075000px;}
.y14_c01229{bottom:1359.930000px;}
.y15_c01229{bottom:1360.800000px;}
.y16_c01229{bottom:1362.525000px;}
.y17_c01229{bottom:1365.990000px;}
.y18_c01229{bottom:1367.715000px;}
.y19_c01229{bottom:1369.440000px;}
.y1e_c01229{bottom:1370.310000px;}
.y1a_c01229{bottom:1371.165000px;}
.y1b_c01229{bottom:1372.035000px;}
.y1c_c01229{bottom:1372.890000px;}
.y1d_c01229{bottom:1374.630000px;}
.y11_c01229{bottom:1382.400000px;}
.y10_c01229{bottom:1384.125000px;}
.yf_c01229{bottom:1385.850000px;}
.y3_c01229{bottom:1387.590000px;}
.y4_c01229{bottom:1389.315000px;}
.y5_c01229{bottom:1390.170000px;}
.y6_c01229{bottom:1391.040000px;}
.y7_c01229{bottom:1391.910000px;}
.y8_c01229{bottom:1393.635000px;}
.y9_c01229{bottom:1394.490000px;}
.ya_c01229{bottom:1395.360000px;}
.yb_c01229{bottom:1396.230000px;}
.yc_c01229{bottom:1397.085000px;}
.yd_c01229{bottom:1397.955000px;}
.ye_c01229{bottom:1398.810000px;}
.y2_c01229{bottom:1407.450000px;}
.y1_c01229{bottom:1431.645000px;}
.h3_c01229{height:3.110063px;}
.hc_c01229{height:5.399414px;}
.hf_c01229{height:6.209326px;}
.h2_c01229{height:9.340986px;}
.h1b_c01229{height:12.418652px;}
.hd_c01229{height:15.550313px;}
.h13_c01229{height:18.681973px;}
.h18_c01229{height:21.759639px;}
.h19_c01229{height:24.891299px;}
.h1e_c01229{height:27.968965px;}
.h14_c01229{height:31.100625px;}
.h16_c01229{height:34.232285px;}
.h1a_c01229{height:37.309951px;}
.he_c01229{height:40.441611px;}
.h1c_c01229{height:43.519277px;}
.h8_c01229{height:46.650937px;}
.h5_c01229{height:49.782598px;}
.h6_c01229{height:52.860264px;}
.h4_c01229{height:55.991924px;}
.hb_c01229{height:59.069590px;}
.h7_c01229{height:62.201250px;}
.h9_c01229{height:65.332910px;}
.h17_c01229{height:68.410576px;}
.h12_c01229{height:71.542236px;}
.h1d_c01229{height:74.619902px;}
.h15_c01229{height:77.751563px;}
.h11_c01229{height:80.883223px;}
.h21_c01229{height:83.960889px;}
.h20_c01229{height:87.092549px;}
.h1f_c01229{height:90.170215px;}
.h24_c01229{height:93.301875px;}
.h10_c01229{height:96.433535px;}
.h22_c01229{height:108.852188px;}
.h23_c01229{height:111.983848px;}
.ha_c01229{height:118.193174px;}
.h0_c01229{height:1515.450000px;}
.h1_c01229{height:1515.750000px;}
.w0_c01229{width:1094.685000px;}
.w1_c01229{width:1095.000000px;}
.x0_c01229{left:0.000000px;}
.x9c_c01229{left:4.320000px;}
.xa4_c01229{left:6.915000px;}
.x9a_c01229{left:8.640000px;}
.xa3_c01229{left:11.235000px;}
.xab_c01229{left:13.830000px;}
.xac_c01229{left:24.195000px;}
.xa0_c01229{left:25.920000px;}
.x9b_c01229{left:29.370000px;}
.x9f_c01229{left:31.110000px;}
.xa1_c01229{left:32.835000px;}
.xa7_c01229{left:35.430000px;}
.xa8_c01229{left:38.010000px;}
.xa2_c01229{left:40.605000px;}
.xa6_c01229{left:45.795000px;}
.xa9_c01229{left:50.115000px;}
.xa5_c01229{left:54.435000px;}
.x9d_c01229{left:57.030000px;}
.xad_c01229{left:64.800000px;}
.x9e_c01229{left:76.035000px;}
.xaa_c01229{left:77.760000px;}
.x87_c01229{left:218.595000px;}
.x32_c01229{left:220.320000px;}
.x1f_c01229{left:228.090000px;}
.x43_c01229{left:230.685000px;}
.x76_c01229{left:235.875000px;}
.x2_c01229{left:244.515000px;}
.x33_c01229{left:255.750000px;}
.x61_c01229{left:260.070000px;}
.x34_c01229{left:263.520000px;}
.x88_c01229{left:265.245000px;}
.x3_c01229{left:266.970000px;}
.x54_c01229{left:273.030000px;}
.x18_c01229{left:281.670000px;}
.x4e_c01229{left:284.250000px;}
.x62_c01229{left:286.845000px;}
.x4_c01229{left:289.440000px;}
.x55_c01229{left:292.890000px;}
.x19_c01229{left:297.210000px;}
.x3e_c01229{left:300.675000px;}
.x35_c01229{left:306.720000px;}
.x44_c01229{left:311.040000px;}
.x8f_c01229{left:315.360000px;}
.x6c_c01229{left:320.550000px;}
.x5_c01229{left:323.130000px;}
.x36_c01229{left:335.235000px;}
.x20_c01229{left:338.685000px;}
.x77_c01229{left:341.280000px;}
.x1a_c01229{left:343.005000px;}
.x6_c01229{left:348.195000px;}
.x3f_c01229{left:349.920000px;}
.x4f_c01229{left:351.645000px;}
.x63_c01229{left:358.560000px;}
.x7_c01229{left:361.155000px;}
.x6d_c01229{left:364.605000px;}
.x56_c01229{left:370.650000px;}
.x57_c01229{left:375.840000px;}
.x8_c01229{left:381.885000px;}
.x78_c01229{left:388.800000px;}
.x37_c01229{left:390.525000px;}
.x21_c01229{left:392.250000px;}
.x89_c01229{left:393.990000px;}
.x6e_c01229{left:398.310000px;}
.x9_c01229{left:402.630000px;}
.x64_c01229{left:404.355000px;}
.x22_c01229{left:406.080000px;}
.x38_c01229{left:411.270000px;}
.x6f_c01229{left:416.445000px;}
.x45_c01229{left:419.040000px;}
.xa_c01229{left:422.490000px;}
.x7f_c01229{left:427.680000px;}
.x8a_c01229{left:432.000000px;}
.x23_c01229{left:435.450000px;}
.x71_c01229{left:437.190000px;}
.x80_c01229{left:438.915000px;}
.xb_c01229{left:443.235000px;}
.x79_c01229{left:446.685000px;}
.x8b_c01229{left:453.600000px;}
.x67_c01229{left:456.195000px;}
.x58_c01229{left:460.515000px;}
.xc_c01229{left:462.240000px;}
.x24_c01229{left:463.965000px;}
.xd_c01229{left:476.070000px;}
.x68_c01229{left:477.795000px;}
.x70_c01229{left:483.840000px;}
.x81_c01229{left:487.290000px;}
.x46_c01229{left:489.885000px;}
.x25_c01229{left:494.205000px;}
.x59_c01229{left:500.250000px;}
.xe_c01229{left:504.570000px;}
.x50_c01229{left:507.165000px;}
.x1b_c01229{left:508.890000px;}
.x65_c01229{left:510.630000px;}
.x5a_c01229{left:512.355000px;}
.x7a_c01229{left:529.635000px;}
.x47_c01229{left:533.085000px;}
.xf_c01229{left:538.275000px;}
.x1c_c01229{left:546.045000px;}
.x26_c01229{left:550.365000px;}
.x82_c01229{left:552.960000px;}
.x10_c01229{left:557.280000px;}
.x7b_c01229{left:561.600000px;}
.x94_c01229{left:565.920000px;}
.x1_c01229{left:568.515000px;}
.x48_c01229{left:570.240000px;}
.x11_c01229{left:589.245000px;}
.x5b_c01229{left:600.480000px;}
.x49_c01229{left:602.205000px;}
.x12_c01229{left:607.395000px;}
.x90_c01229{left:609.990000px;}
.x5c_c01229{left:613.440000px;}
.x69_c01229{left:617.760000px;}
.x39_c01229{left:622.080000px;}
.x51_c01229{left:624.675000px;}
.x1d_c01229{left:626.400000px;}
.x13_c01229{left:629.850000px;}
.x83_c01229{left:634.170000px;}
.x5d_c01229{left:635.910000px;}
.x72_c01229{left:642.810000px;}
.x4a_c01229{left:647.130000px;}
.x8c_c01229{left:654.915000px;}
.x27_c01229{left:656.640000px;}
.x3a_c01229{left:660.960000px;}
.x5e_c01229{left:663.555000px;}
.x95_c01229{left:667.875000px;}
.x6a_c01229{left:676.515000px;}
.x40_c01229{left:679.965000px;}
.x28_c01229{left:681.690000px;}
.x14_c01229{left:686.880000px;}
.x29_c01229{left:691.200000px;}
.x73_c01229{left:692.925000px;}
.x3b_c01229{left:694.650000px;}
.x2a_c01229{left:698.970000px;}
.x5f_c01229{left:703.290000px;}
.x96_c01229{left:705.030000px;}
.x2b_c01229{left:708.480000px;}
.x84_c01229{left:710.205000px;}
.x97_c01229{left:717.120000px;}
.x3c_c01229{left:724.890000px;}
.x15_c01229{left:726.630000px;}
.x74_c01229{left:728.355000px;}
.x91_c01229{left:730.080000px;}
.x52_c01229{left:736.995000px;}
.x92_c01229{left:742.170000px;}
.x2c_c01229{left:744.765000px;}
.x41_c01229{left:747.360000px;}
.x4b_c01229{left:750.810000px;}
.x8d_c01229{left:754.275000px;}
.x7c_c01229{left:758.595000px;}
.x16_c01229{left:763.770000px;}
.x53_c01229{left:769.830000px;}
.x75_c01229{left:780.195000px;}
.x93_c01229{left:781.920000px;}
.x42_c01229{left:785.370000px;}
.x2d_c01229{left:789.690000px;}
.x3d_c01229{left:792.285000px;}
.x2e_c01229{left:799.200000px;}
.x7d_c01229{left:800.925000px;}
.x1e_c01229{left:802.650000px;}
.x2f_c01229{left:807.840000px;}
.x66_c01229{left:811.290000px;}
.x85_c01229{left:814.755000px;}
.x30_c01229{left:816.480000px;}
.x8e_c01229{left:819.075000px;}
.x7e_c01229{left:829.440000px;}
.x4c_c01229{left:833.760000px;}
.x17_c01229{left:835.485000px;}
.x60_c01229{left:838.080000px;}
.x86_c01229{left:841.530000px;}
.x6b_c01229{left:843.270000px;}
.x31_c01229{left:851.040000px;}
.x4d_c01229{left:857.955000px;}
.x98_c01229{left:950.400000px;}
.x99_c01229{left:957.315000px;}
@media print{
.v1_c01229{vertical-align:-12.266667pt;}
.v2_c01229{vertical-align:-6.186667pt;}
.v0_c01229{vertical-align:0.000000pt;}
.ls1_c01229{letter-spacing:0.000000pt;}
.ls0_c01229{letter-spacing:32.180213pt;}
.ws0_c01229{word-spacing:-8.682133pt;}
.ws1_c01229{word-spacing:0.000000pt;}
.fs1_c01229{font-size:3.072000pt;}
.fsa_c01229{font-size:5.333333pt;}
.fsd_c01229{font-size:6.133333pt;}
.fs0_c01229{font-size:9.226667pt;}
.fs19_c01229{font-size:12.266667pt;}
.fsb_c01229{font-size:15.360000pt;}
.fs11_c01229{font-size:18.453333pt;}
.fs16_c01229{font-size:21.493333pt;}
.fs17_c01229{font-size:24.586667pt;}
.fs1c_c01229{font-size:27.626667pt;}
.fs12_c01229{font-size:30.720000pt;}
.fs14_c01229{font-size:33.813333pt;}
.fs18_c01229{font-size:36.853333pt;}
.fsc_c01229{font-size:39.946667pt;}
.fs1a_c01229{font-size:42.986667pt;}
.fs6_c01229{font-size:46.080000pt;}
.fs3_c01229{font-size:49.173333pt;}
.fs4_c01229{font-size:52.213333pt;}
.fs2_c01229{font-size:55.306667pt;}
.fs9_c01229{font-size:58.346667pt;}
.fs5_c01229{font-size:61.440000pt;}
.fs7_c01229{font-size:64.533333pt;}
.fs15_c01229{font-size:67.573333pt;}
.fs10_c01229{font-size:70.666667pt;}
.fs1b_c01229{font-size:73.706667pt;}
.fs13_c01229{font-size:76.800000pt;}
.fsf_c01229{font-size:79.893333pt;}
.fs1f_c01229{font-size:82.933333pt;}
.fs1e_c01229{font-size:86.026667pt;}
.fs1d_c01229{font-size:89.066667pt;}
.fs22_c01229{font-size:92.160000pt;}
.fse_c01229{font-size:95.253333pt;}
.fs20_c01229{font-size:107.520000pt;}
.fs21_c01229{font-size:110.613333pt;}
.fs8_c01229{font-size:116.746667pt;}
.y0_c01229{bottom:0.000000pt;}
.yc2_c01229{bottom:210.426667pt;}
.yc1_c01229{bottom:215.040000pt;}
.yc3_c01229{bottom:218.106667pt;}
.ybe_c01229{bottom:221.946667pt;}
.ybf_c01229{bottom:223.493333pt;}
.yc0_c01229{bottom:224.253333pt;}
.ybc_c01229{bottom:226.560000pt;}
.ybb_c01229{bottom:227.333333pt;}
.ybd_c01229{bottom:239.613333pt;}
.yba_c01229{bottom:242.693333pt;}
.yb9_c01229{bottom:246.533333pt;}
.yb7_c01229{bottom:259.586667pt;}
.yb8_c01229{bottom:261.120000pt;}
.yb6_c01229{bottom:269.573333pt;}
.yb5_c01229{bottom:276.480000pt;}
.yb4_c01229{bottom:277.253333pt;}
.yb2_c01229{bottom:291.840000pt;}
.yb3_c01229{bottom:292.613333pt;}
.yb1_c01229{bottom:340.986667pt;}
.yb0_c01229{bottom:399.360000pt;}
.yaf_c01229{bottom:419.333333pt;}
.yac_c01229{bottom:482.306667pt;}
.yad_c01229{bottom:487.680000pt;}
.yae_c01229{bottom:489.986667pt;}
.yaa_c01229{bottom:493.826667pt;}
.yab_c01229{bottom:506.880000pt;}
.ya9_c01229{bottom:507.653333pt;}
.ya7_c01229{bottom:509.946667pt;}
.ya8_c01229{bottom:511.493333pt;}
.ya5_c01229{bottom:529.920000pt;}
.ya6_c01229{bottom:536.826667pt;}
.ya4_c01229{bottom:539.133333pt;}
.y9f_c01229{bottom:540.666667pt;}
.ya3_c01229{bottom:550.653333pt;}
.ya2_c01229{bottom:551.426667pt;}
.ya1_c01229{bottom:554.493333pt;}
.ya0_c01229{bottom:555.266667pt;}
.y9c_c01229{bottom:1001.466667pt;}
.y9d_c01229{bottom:1002.240000pt;}
.y9b_c01229{bottom:1016.826667pt;}
.y9a_c01229{bottom:1017.600000pt;}
.y97_c01229{bottom:1019.906667pt;}
.y98_c01229{bottom:1020.666667pt;}
.y99_c01229{bottom:1021.440000pt;}
.y96_c01229{bottom:1026.813333pt;}
.y8e_c01229{bottom:1027.586667pt;}
.y8f_c01229{bottom:1029.120000pt;}
.y90_c01229{bottom:1029.893333pt;}
.y92_c01229{bottom:1036.026667pt;}
.y95_c01229{bottom:1036.800000pt;}
.y93_c01229{bottom:1037.573333pt;}
.y81_c01229{bottom:1038.333333pt;}
.y91_c01229{bottom:1039.106667pt;}
.y94_c01229{bottom:1039.866667pt;}
.y82_c01229{bottom:1040.640000pt;}
.y83_c01229{bottom:1041.413333pt;}
.y86_c01229{bottom:1043.706667pt;}
.y89_c01229{bottom:1046.786667pt;}
.y88_c01229{bottom:1047.546667pt;}
.y87_c01229{bottom:1049.093333pt;}
.y8a_c01229{bottom:1049.853333pt;}
.y80_c01229{bottom:1050.626667pt;}
.y8b_c01229{bottom:1052.160000pt;}
.y8c_c01229{bottom:1053.693333pt;}
.y84_c01229{bottom:1056.000000pt;}
.y85_c01229{bottom:1056.773333pt;}
.y8d_c01229{bottom:1059.066667pt;}
.y75_c01229{bottom:1069.053333pt;}
.y7b_c01229{bottom:1069.826667pt;}
.y7d_c01229{bottom:1071.360000pt;}
.y7f_c01229{bottom:1072.133333pt;}
.y76_c01229{bottom:1074.426667pt;}
.y79_c01229{bottom:1075.200000pt;}
.y7e_c01229{bottom:1075.973333pt;}
.y7c_c01229{bottom:1076.733333pt;}
.y7a_c01229{bottom:1078.266667pt;}
.y78_c01229{bottom:1079.040000pt;}
.y70_c01229{bottom:1080.573333pt;}
.y6b_c01229{bottom:1083.653333pt;}
.y77_c01229{bottom:1084.413333pt;}
.y6c_c01229{bottom:1085.186667pt;}
.y6d_c01229{bottom:1086.720000pt;}
.y6e_c01229{bottom:1087.493333pt;}
.y71_c01229{bottom:1089.026667pt;}
.y72_c01229{bottom:1089.786667pt;}
.y6f_c01229{bottom:1090.560000pt;}
.y74_c01229{bottom:1091.333333pt;}
.y9e_c01229{bottom:1092.093333pt;}
.y73_c01229{bottom:1092.866667pt;}
.y62_c01229{bottom:1094.400000pt;}
.y6a_c01229{bottom:1095.173333pt;}
.y65_c01229{bottom:1096.706667pt;}
.y63_c01229{bottom:1097.466667pt;}
.y64_c01229{bottom:1099.013333pt;}
.y69_c01229{bottom:1100.546667pt;}
.y66_c01229{bottom:1101.306667pt;}
.y67_c01229{bottom:1102.080000pt;}
.y68_c01229{bottom:1102.853333pt;}
.y60_c01229{bottom:1103.613333pt;}
.y5b_c01229{bottom:1104.386667pt;}
.y5a_c01229{bottom:1105.146667pt;}
.y61_c01229{bottom:1105.920000pt;}
.y5e_c01229{bottom:1107.453333pt;}
.y5c_c01229{bottom:1108.986667pt;}
.y5d_c01229{bottom:1111.293333pt;}
.y5f_c01229{bottom:1112.066667pt;}
.y52_c01229{bottom:1116.666667pt;}
.y53_c01229{bottom:1119.746667pt;}
.y54_c01229{bottom:1120.506667pt;}
.y56_c01229{bottom:1121.280000pt;}
.y55_c01229{bottom:1122.053333pt;}
.y57_c01229{bottom:1128.960000pt;}
.y58_c01229{bottom:1131.266667pt;}
.y59_c01229{bottom:1135.106667pt;}
.y4c_c01229{bottom:1138.946667pt;}
.y4d_c01229{bottom:1139.706667pt;}
.y4b_c01229{bottom:1140.480000pt;}
.y4e_c01229{bottom:1142.013333pt;}
.y4f_c01229{bottom:1142.786667pt;}
.y51_c01229{bottom:1144.320000pt;}
.y50_c01229{bottom:1145.093333pt;}
.y42_c01229{bottom:1148.933333pt;}
.y41_c01229{bottom:1150.466667pt;}
.y44_c01229{bottom:1151.226667pt;}
.y45_c01229{bottom:1152.000000pt;}
.y43_c01229{bottom:1153.533333pt;}
.y46_c01229{bottom:1154.306667pt;}
.y49_c01229{bottom:1155.066667pt;}
.y48_c01229{bottom:1155.840000pt;}
.y47_c01229{bottom:1158.146667pt;}
.y4a_c01229{bottom:1158.906667pt;}
.y3a_c01229{bottom:1160.453333pt;}
.y3b_c01229{bottom:1161.213333pt;}
.y3d_c01229{bottom:1163.520000pt;}
.y3c_c01229{bottom:1164.293333pt;}
.y40_c01229{bottom:1165.053333pt;}
.y3f_c01229{bottom:1166.586667pt;}
.y3e_c01229{bottom:1167.360000pt;}
.y30_c01229{bottom:1173.506667pt;}
.y2f_c01229{bottom:1174.266667pt;}
.y31_c01229{bottom:1175.040000pt;}
.y32_c01229{bottom:1176.573333pt;}
.y36_c01229{bottom:1178.880000pt;}
.y35_c01229{bottom:1179.653333pt;}
.y34_c01229{bottom:1180.413333pt;}
.y33_c01229{bottom:1181.186667pt;}
.y37_c01229{bottom:1181.946667pt;}
.y28_c01229{bottom:1183.493333pt;}
.y2d_c01229{bottom:1184.253333pt;}
.y2a_c01229{bottom:1185.026667pt;}
.y38_c01229{bottom:1185.786667pt;}
.y29_c01229{bottom:1186.560000pt;}
.y2b_c01229{bottom:1188.866667pt;}
.y39_c01229{bottom:1189.626667pt;}
.y2c_c01229{bottom:1190.400000pt;}
.y2e_c01229{bottom:1191.173333pt;}
.y20_c01229{bottom:1191.933333pt;}
.y23_c01229{bottom:1193.466667pt;}
.y22_c01229{bottom:1195.013333pt;}
.y21_c01229{bottom:1195.773333pt;}
.y26_c01229{bottom:1197.306667pt;}
.y27_c01229{bottom:1198.853333pt;}
.y25_c01229{bottom:1199.613333pt;}
.y24_c01229{bottom:1201.146667pt;}
.y1f_c01229{bottom:1204.226667pt;}
.y12_c01229{bottom:1204.986667pt;}
.y13_c01229{bottom:1208.066667pt;}
.y14_c01229{bottom:1208.826667pt;}
.y15_c01229{bottom:1209.600000pt;}
.y16_c01229{bottom:1211.133333pt;}
.y17_c01229{bottom:1214.213333pt;}
.y18_c01229{bottom:1215.746667pt;}
.y19_c01229{bottom:1217.280000pt;}
.y1e_c01229{bottom:1218.053333pt;}
.y1a_c01229{bottom:1218.813333pt;}
.y1b_c01229{bottom:1219.586667pt;}
.y1c_c01229{bottom:1220.346667pt;}
.y1d_c01229{bottom:1221.893333pt;}
.y11_c01229{bottom:1228.800000pt;}
.y10_c01229{bottom:1230.333333pt;}
.yf_c01229{bottom:1231.866667pt;}
.y3_c01229{bottom:1233.413333pt;}
.y4_c01229{bottom:1234.946667pt;}
.y5_c01229{bottom:1235.706667pt;}
.y6_c01229{bottom:1236.480000pt;}
.y7_c01229{bottom:1237.253333pt;}
.y8_c01229{bottom:1238.786667pt;}
.y9_c01229{bottom:1239.546667pt;}
.ya_c01229{bottom:1240.320000pt;}
.yb_c01229{bottom:1241.093333pt;}
.yc_c01229{bottom:1241.853333pt;}
.yd_c01229{bottom:1242.626667pt;}
.ye_c01229{bottom:1243.386667pt;}
.y2_c01229{bottom:1251.066667pt;}
.y1_c01229{bottom:1272.573333pt;}
.h3_c01229{height:2.764500pt;}
.hc_c01229{height:4.799479pt;}
.hf_c01229{height:5.519401pt;}
.h2_c01229{height:8.303099pt;}
.h1b_c01229{height:11.038802pt;}
.hd_c01229{height:13.822500pt;}
.h13_c01229{height:16.606198pt;}
.h18_c01229{height:19.341901pt;}
.h19_c01229{height:22.125599pt;}
.h1e_c01229{height:24.861302pt;}
.h14_c01229{height:27.645000pt;}
.h16_c01229{height:30.428698pt;}
.h1a_c01229{height:33.164401pt;}
.he_c01229{height:35.948099pt;}
.h1c_c01229{height:38.683802pt;}
.h8_c01229{height:41.467500pt;}
.h5_c01229{height:44.251198pt;}
.h6_c01229{height:46.986901pt;}
.h4_c01229{height:49.770599pt;}
.hb_c01229{height:52.506302pt;}
.h7_c01229{height:55.290000pt;}
.h9_c01229{height:58.073698pt;}
.h17_c01229{height:60.809401pt;}
.h12_c01229{height:63.593099pt;}
.h1d_c01229{height:66.328802pt;}
.h15_c01229{height:69.112500pt;}
.h11_c01229{height:71.896198pt;}
.h21_c01229{height:74.631901pt;}
.h20_c01229{height:77.415599pt;}
.h1f_c01229{height:80.151302pt;}
.h24_c01229{height:82.935000pt;}
.h10_c01229{height:85.718698pt;}
.h22_c01229{height:96.757500pt;}
.h23_c01229{height:99.541198pt;}
.ha_c01229{height:105.060599pt;}
.h0_c01229{height:1347.066667pt;}
.h1_c01229{height:1347.333333pt;}
.w0_c01229{width:973.053333pt;}
.w1_c01229{width:973.333333pt;}
.x0_c01229{left:0.000000pt;}
.x9c_c01229{left:3.840000pt;}
.xa4_c01229{left:6.146667pt;}
.x9a_c01229{left:7.680000pt;}
.xa3_c01229{left:9.986667pt;}
.xab_c01229{left:12.293333pt;}
.xac_c01229{left:21.506667pt;}
.xa0_c01229{left:23.040000pt;}
.x9b_c01229{left:26.106667pt;}
.x9f_c01229{left:27.653333pt;}
.xa1_c01229{left:29.186667pt;}
.xa7_c01229{left:31.493333pt;}
.xa8_c01229{left:33.786667pt;}
.xa2_c01229{left:36.093333pt;}
.xa6_c01229{left:40.706667pt;}
.xa9_c01229{left:44.546667pt;}
.xa5_c01229{left:48.386667pt;}
.x9d_c01229{left:50.693333pt;}
.xad_c01229{left:57.600000pt;}
.x9e_c01229{left:67.586667pt;}
.xaa_c01229{left:69.120000pt;}
.x87_c01229{left:194.306667pt;}
.x32_c01229{left:195.840000pt;}
.x1f_c01229{left:202.746667pt;}
.x43_c01229{left:205.053333pt;}
.x76_c01229{left:209.666667pt;}
.x2_c01229{left:217.346667pt;}
.x33_c01229{left:227.333333pt;}
.x61_c01229{left:231.173333pt;}
.x34_c01229{left:234.240000pt;}
.x88_c01229{left:235.773333pt;}
.x3_c01229{left:237.306667pt;}
.x54_c01229{left:242.693333pt;}
.x18_c01229{left:250.373333pt;}
.x4e_c01229{left:252.666667pt;}
.x62_c01229{left:254.973333pt;}
.x4_c01229{left:257.280000pt;}
.x55_c01229{left:260.346667pt;}
.x19_c01229{left:264.186667pt;}
.x3e_c01229{left:267.266667pt;}
.x35_c01229{left:272.640000pt;}
.x44_c01229{left:276.480000pt;}
.x8f_c01229{left:280.320000pt;}
.x6c_c01229{left:284.933333pt;}
.x5_c01229{left:287.226667pt;}
.x36_c01229{left:297.986667pt;}
.x20_c01229{left:301.053333pt;}
.x77_c01229{left:303.360000pt;}
.x1a_c01229{left:304.893333pt;}
.x6_c01229{left:309.506667pt;}
.x3f_c01229{left:311.040000pt;}
.x4f_c01229{left:312.573333pt;}
.x63_c01229{left:318.720000pt;}
.x7_c01229{left:321.026667pt;}
.x6d_c01229{left:324.093333pt;}
.x56_c01229{left:329.466667pt;}
.x57_c01229{left:334.080000pt;}
.x8_c01229{left:339.453333pt;}
.x78_c01229{left:345.600000pt;}
.x37_c01229{left:347.133333pt;}
.x21_c01229{left:348.666667pt;}
.x89_c01229{left:350.213333pt;}
.x6e_c01229{left:354.053333pt;}
.x9_c01229{left:357.893333pt;}
.x64_c01229{left:359.426667pt;}
.x22_c01229{left:360.960000pt;}
.x38_c01229{left:365.573333pt;}
.x6f_c01229{left:370.173333pt;}
.x45_c01229{left:372.480000pt;}
.xa_c01229{left:375.546667pt;}
.x7f_c01229{left:380.160000pt;}
.x8a_c01229{left:384.000000pt;}
.x23_c01229{left:387.066667pt;}
.x71_c01229{left:388.613333pt;}
.x80_c01229{left:390.146667pt;}
.xb_c01229{left:393.986667pt;}
.x79_c01229{left:397.053333pt;}
.x8b_c01229{left:403.200000pt;}
.x67_c01229{left:405.506667pt;}
.x58_c01229{left:409.346667pt;}
.xc_c01229{left:410.880000pt;}
.x24_c01229{left:412.413333pt;}
.xd_c01229{left:423.173333pt;}
.x68_c01229{left:424.706667pt;}
.x70_c01229{left:430.080000pt;}
.x81_c01229{left:433.146667pt;}
.x46_c01229{left:435.453333pt;}
.x25_c01229{left:439.293333pt;}
.x59_c01229{left:444.666667pt;}
.xe_c01229{left:448.506667pt;}
.x50_c01229{left:450.813333pt;}
.x1b_c01229{left:452.346667pt;}
.x65_c01229{left:453.893333pt;}
.x5a_c01229{left:455.426667pt;}
.x7a_c01229{left:470.786667pt;}
.x47_c01229{left:473.853333pt;}
.xf_c01229{left:478.466667pt;}
.x1c_c01229{left:485.373333pt;}
.x26_c01229{left:489.213333pt;}
.x82_c01229{left:491.520000pt;}
.x10_c01229{left:495.360000pt;}
.x7b_c01229{left:499.200000pt;}
.x94_c01229{left:503.040000pt;}
.x1_c01229{left:505.346667pt;}
.x48_c01229{left:506.880000pt;}
.x11_c01229{left:523.773333pt;}
.x5b_c01229{left:533.760000pt;}
.x49_c01229{left:535.293333pt;}
.x12_c01229{left:539.906667pt;}
.x90_c01229{left:542.213333pt;}
.x5c_c01229{left:545.280000pt;}
.x69_c01229{left:549.120000pt;}
.x39_c01229{left:552.960000pt;}
.x51_c01229{left:555.266667pt;}
.x1d_c01229{left:556.800000pt;}
.x13_c01229{left:559.866667pt;}
.x83_c01229{left:563.706667pt;}
.x5d_c01229{left:565.253333pt;}
.x72_c01229{left:571.386667pt;}
.x4a_c01229{left:575.226667pt;}
.x8c_c01229{left:582.146667pt;}
.x27_c01229{left:583.680000pt;}
.x3a_c01229{left:587.520000pt;}
.x5e_c01229{left:589.826667pt;}
.x95_c01229{left:593.666667pt;}
.x6a_c01229{left:601.346667pt;}
.x40_c01229{left:604.413333pt;}
.x28_c01229{left:605.946667pt;}
.x14_c01229{left:610.560000pt;}
.x29_c01229{left:614.400000pt;}
.x73_c01229{left:615.933333pt;}
.x3b_c01229{left:617.466667pt;}
.x2a_c01229{left:621.306667pt;}
.x5f_c01229{left:625.146667pt;}
.x96_c01229{left:626.693333pt;}
.x2b_c01229{left:629.760000pt;}
.x84_c01229{left:631.293333pt;}
.x97_c01229{left:637.440000pt;}
.x3c_c01229{left:644.346667pt;}
.x15_c01229{left:645.893333pt;}
.x74_c01229{left:647.426667pt;}
.x91_c01229{left:648.960000pt;}
.x52_c01229{left:655.106667pt;}
.x92_c01229{left:659.706667pt;}
.x2c_c01229{left:662.013333pt;}
.x41_c01229{left:664.320000pt;}
.x4b_c01229{left:667.386667pt;}
.x8d_c01229{left:670.466667pt;}
.x7c_c01229{left:674.306667pt;}
.x16_c01229{left:678.906667pt;}
.x53_c01229{left:684.293333pt;}
.x75_c01229{left:693.506667pt;}
.x93_c01229{left:695.040000pt;}
.x42_c01229{left:698.106667pt;}
.x2d_c01229{left:701.946667pt;}
.x3d_c01229{left:704.253333pt;}
.x2e_c01229{left:710.400000pt;}
.x7d_c01229{left:711.933333pt;}
.x1e_c01229{left:713.466667pt;}
.x2f_c01229{left:718.080000pt;}
.x66_c01229{left:721.146667pt;}
.x85_c01229{left:724.226667pt;}
.x30_c01229{left:725.760000pt;}
.x8e_c01229{left:728.066667pt;}
.x7e_c01229{left:737.280000pt;}
.x4c_c01229{left:741.120000pt;}
.x17_c01229{left:742.653333pt;}
.x60_c01229{left:744.960000pt;}
.x86_c01229{left:748.026667pt;}
.x6b_c01229{left:749.573333pt;}
.x31_c01229{left:756.480000pt;}
.x4d_c01229{left:762.626667pt;}
.x98_c01229{left:844.800000pt;}
.x99_c01229{left:850.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_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_8f0c22f13f756b0edd48a722.woff2')format("woff");}.ff1_c01230{font-family:ff1_c01230;line-height:1.109863;font-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_c01230{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m1_c01230{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01230{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3_c01230{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);}
.m4_c01230{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5_c01230{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);}
.m0_c01230{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,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;}
.fs1_c01230{font-size:6.900000px;}
.fs0_c01230{font-size:13.800000px;}
.fs3_c01230{font-size:31.080000px;}
.fs2_c01230{font-size:38.040000px;}
.fs4_c01230{font-size:48.360000px;}
.y0_c01230{bottom:0.000000px;}
.y6_c01230{bottom:1350.435000px;}
.y4_c01230{bottom:1358.205000px;}
.y5_c01230{bottom:1364.250000px;}
.y3_c01230{bottom:1368.570000px;}
.y1_c01230{bottom:1378.080000px;}
.y2_c01230{bottom:1378.950000px;}
.h3_c01230{height:6.209326px;}
.h2_c01230{height:12.418652px;}
.h5_c01230{height:27.968965px;}
.h4_c01230{height:34.232285px;}
.h6_c01230{height:43.519277px;}
.h1_c01230{height:1518.750000px;}
.h0_c01230{height:1518.915000px;}
.w0_c01230{width:1085.190000px;}
.w1_c01230{width:1085.250000px;}
.x0_c01230{left:0.000000px;}
.x3_c01230{left:1010.010000px;}
.x4_c01230{left:1034.205000px;}
.x5_c01230{left:1050.630000px;}
.x1_c01230{left:1058.400000px;}
.x6_c01230{left:1067.040000px;}
.x2_c01230{left:1076.550000px;}
@media print{
.v0_c01230{vertical-align:0.000000pt;}
.ls0_c01230{letter-spacing:0.000000pt;}
.ws0_c01230{word-spacing:0.000000pt;}
.fs1_c01230{font-size:6.133333pt;}
.fs0_c01230{font-size:12.266667pt;}
.fs3_c01230{font-size:27.626667pt;}
.fs2_c01230{font-size:33.813333pt;}
.fs4_c01230{font-size:42.986667pt;}
.y0_c01230{bottom:0.000000pt;}
.y6_c01230{bottom:1200.386667pt;}
.y4_c01230{bottom:1207.293333pt;}
.y5_c01230{bottom:1212.666667pt;}
.y3_c01230{bottom:1216.506667pt;}
.y1_c01230{bottom:1224.960000pt;}
.y2_c01230{bottom:1225.733333pt;}
.h3_c01230{height:5.519401pt;}
.h2_c01230{height:11.038802pt;}
.h5_c01230{height:24.861302pt;}
.h4_c01230{height:30.428698pt;}
.h6_c01230{height:38.683802pt;}
.h1_c01230{height:1350.000000pt;}
.h0_c01230{height:1350.146667pt;}
.w0_c01230{width:964.613333pt;}
.w1_c01230{width:964.666667pt;}
.x0_c01230{left:0.000000pt;}
.x3_c01230{left:897.786667pt;}
.x4_c01230{left:919.293333pt;}
.x5_c01230{left:933.893333pt;}
.x1_c01230{left:940.800000pt;}
.x6_c01230{left:948.480000pt;}
.x2_c01230{left:956.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c531a9ca398e97ccb6e0e619.woff2')format("woff");}.ff1_c01231{font-family:ff1_c01231;line-height:1.109863;font-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_c01231{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m12_c01231{transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);}
.mf_c01231{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01231{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m8_c01231{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.me_c01231{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.mb_c01231{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);}
.m13_c01231{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);}
.m10_c01231{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c01231{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c01231{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c01231{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m16_c01231{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c01231{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.md_c01231{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7_c01231{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c01231{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);}
.m14_c01231{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);}
.m11_c01231{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mc_c01231{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3_c01231{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m5_c01231{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6_c01231{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);}
.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;}
.fse_c01231{font-size:3.456000px;}
.fsa_c01231{font-size:6.000000px;}
.fsd_c01231{font-size:6.900000px;}
.fs4_c01231{font-size:13.800000px;}
.fsc_c01231{font-size:17.280000px;}
.fsf_c01231{font-size:24.180000px;}
.fs3_c01231{font-size:27.660000px;}
.fs2_c01231{font-size:31.080000px;}
.fs1_c01231{font-size:38.040000px;}
.fs5_c01231{font-size:44.940000px;}
.fs0_c01231{font-size:51.840000px;}
.fs8_c01231{font-size:55.320000px;}
.fs7_c01231{font-size:58.740000px;}
.fs9_c01231{font-size:62.220000px;}
.fsb_c01231{font-size:65.640000px;}
.fs6_c01231{font-size:79.500000px;}
.y0_c01231{bottom:0.000000px;}
.y15_c01231{bottom:739.590000px;}
.y14_c01231{bottom:748.230000px;}
.y13_c01231{bottom:859.680000px;}
.y12_c01231{bottom:860.550000px;}
.y10_c01231{bottom:1318.470000px;}
.y11_c01231{bottom:1319.325000px;}
.y6_c01231{bottom:1346.970000px;}
.y4_c01231{bottom:1354.755000px;}
.y5_c01231{bottom:1360.800000px;}
.y2_c01231{bottom:1363.395000px;}
.y1_c01231{bottom:1364.250000px;}
.y3_c01231{bottom:1367.715000px;}
.yf_c01231{bottom:1376.355000px;}
.ye_c01231{bottom:1379.805000px;}
.yb_c01231{bottom:1380.675000px;}
.yd_c01231{bottom:1381.530000px;}
.ya_c01231{bottom:1382.400000px;}
.y9_c01231{bottom:1384.125000px;}
.y8_c01231{bottom:1385.850000px;}
.yc_c01231{bottom:1398.810000px;}
.y7_c01231{bottom:1409.190000px;}
.h10_c01231{height:3.110063px;}
.hc_c01231{height:5.399414px;}
.hf_c01231{height:6.209326px;}
.h6_c01231{height:12.418652px;}
.he_c01231{height:15.550313px;}
.h11_c01231{height:21.759639px;}
.h5_c01231{height:24.891299px;}
.h4_c01231{height:27.968965px;}
.h3_c01231{height:34.232285px;}
.h7_c01231{height:40.441611px;}
.h2_c01231{height:46.650937px;}
.ha_c01231{height:49.782598px;}
.h9_c01231{height:52.860264px;}
.hb_c01231{height:55.991924px;}
.hd_c01231{height:59.069590px;}
.h8_c01231{height:71.542236px;}
.h0_c01231{height:1515.450000px;}
.h1_c01231{height:1515.750000px;}
.w0_c01231{width:1094.685000px;}
.w1_c01231{width:1095.000000px;}
.x0_c01231{left:0.000000px;}
.x15_c01231{left:34.560000px;}
.x17_c01231{left:41.475408px;}
.x18_c01231{left:43.200000px;}
.x16_c01231{left:52.710000px;}
.x19_c01231{left:104.550000px;}
.x1a_c01231{left:112.320000px;}
.x5_c01231{left:139.965000px;}
.x6_c01231{left:164.160000px;}
.x1b_c01231{left:176.250000px;}
.x7_c01231{left:180.570000px;}
.x1_c01231{left:188.355000px;}
.x8_c01231{left:197.850000px;}
.x2_c01231{left:215.130000px;}
.x3_c01231{left:248.835000px;}
.x4_c01231{left:266.115000px;}
.xa_c01231{left:540.000000px;}
.xb_c01231{left:575.430000px;}
.xc_c01231{left:596.160000px;}
.xd_c01231{left:635.910000px;}
.x9_c01231{left:640.230000px;}
.xe_c01231{left:655.770000px;}
.xf_c01231{left:674.790000px;}
.x10_c01231{left:707.610000px;}
.x11_c01231{left:716.250000px;}
.x12_c01231{left:747.360000px;}
.x13_c01231{left:785.370000px;}
.x14_c01231{left:851.910000px;}
@media print{
.v0_c01231{vertical-align:0.000000pt;}
.ls0_c01231{letter-spacing:0.000000pt;}
.ws0_c01231{word-spacing:0.000000pt;}
.fse_c01231{font-size:3.072000pt;}
.fsa_c01231{font-size:5.333333pt;}
.fsd_c01231{font-size:6.133333pt;}
.fs4_c01231{font-size:12.266667pt;}
.fsc_c01231{font-size:15.360000pt;}
.fsf_c01231{font-size:21.493333pt;}
.fs3_c01231{font-size:24.586667pt;}
.fs2_c01231{font-size:27.626667pt;}
.fs1_c01231{font-size:33.813333pt;}
.fs5_c01231{font-size:39.946667pt;}
.fs0_c01231{font-size:46.080000pt;}
.fs8_c01231{font-size:49.173333pt;}
.fs7_c01231{font-size:52.213333pt;}
.fs9_c01231{font-size:55.306667pt;}
.fsb_c01231{font-size:58.346667pt;}
.fs6_c01231{font-size:70.666667pt;}
.y0_c01231{bottom:0.000000pt;}
.y15_c01231{bottom:657.413333pt;}
.y14_c01231{bottom:665.093333pt;}
.y13_c01231{bottom:764.160000pt;}
.y12_c01231{bottom:764.933333pt;}
.y10_c01231{bottom:1171.973333pt;}
.y11_c01231{bottom:1172.733333pt;}
.y6_c01231{bottom:1197.306667pt;}
.y4_c01231{bottom:1204.226667pt;}
.y5_c01231{bottom:1209.600000pt;}
.y2_c01231{bottom:1211.906667pt;}
.y1_c01231{bottom:1212.666667pt;}
.y3_c01231{bottom:1215.746667pt;}
.yf_c01231{bottom:1223.426667pt;}
.ye_c01231{bottom:1226.493333pt;}
.yb_c01231{bottom:1227.266667pt;}
.yd_c01231{bottom:1228.026667pt;}
.ya_c01231{bottom:1228.800000pt;}
.y9_c01231{bottom:1230.333333pt;}
.y8_c01231{bottom:1231.866667pt;}
.yc_c01231{bottom:1243.386667pt;}
.y7_c01231{bottom:1252.613333pt;}
.h10_c01231{height:2.764500pt;}
.hc_c01231{height:4.799479pt;}
.hf_c01231{height:5.519401pt;}
.h6_c01231{height:11.038802pt;}
.he_c01231{height:13.822500pt;}
.h11_c01231{height:19.341901pt;}
.h5_c01231{height:22.125599pt;}
.h4_c01231{height:24.861302pt;}
.h3_c01231{height:30.428698pt;}
.h7_c01231{height:35.948099pt;}
.h2_c01231{height:41.467500pt;}
.ha_c01231{height:44.251198pt;}
.h9_c01231{height:46.986901pt;}
.hb_c01231{height:49.770599pt;}
.hd_c01231{height:52.506302pt;}
.h8_c01231{height:63.593099pt;}
.h0_c01231{height:1347.066667pt;}
.h1_c01231{height:1347.333333pt;}
.w0_c01231{width:973.053333pt;}
.w1_c01231{width:973.333333pt;}
.x0_c01231{left:0.000000pt;}
.x15_c01231{left:30.720000pt;}
.x17_c01231{left:36.867029pt;}
.x18_c01231{left:38.400000pt;}
.x16_c01231{left:46.853333pt;}
.x19_c01231{left:92.933333pt;}
.x1a_c01231{left:99.840000pt;}
.x5_c01231{left:124.413333pt;}
.x6_c01231{left:145.920000pt;}
.x1b_c01231{left:156.666667pt;}
.x7_c01231{left:160.506667pt;}
.x1_c01231{left:167.426667pt;}
.x8_c01231{left:175.866667pt;}
.x2_c01231{left:191.226667pt;}
.x3_c01231{left:221.186667pt;}
.x4_c01231{left:236.546667pt;}
.xa_c01231{left:480.000000pt;}
.xb_c01231{left:511.493333pt;}
.xc_c01231{left:529.920000pt;}
.xd_c01231{left:565.253333pt;}
.x9_c01231{left:569.093333pt;}
.xe_c01231{left:582.906667pt;}
.xf_c01231{left:599.813333pt;}
.x10_c01231{left:628.986667pt;}
.x11_c01231{left:636.666667pt;}
.x12_c01231{left:664.320000pt;}
.x13_c01231{left:698.106667pt;}
.x14_c01231{left:757.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f38fc4df2daffe2f2d03e663.woff2')format("woff");}.ff1_c01232{font-family:ff1_c01232;line-height:1.109863;font-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_c01232{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01232{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);}
.m7_c01232{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m0_c01232{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1_c01232{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c01232{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01232{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);}
.m6_c01232{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c01232{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);}
.m11_c01232{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c01232{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2_c01232{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m14_c01232{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc_c01232{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);}
.m9_c01232{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb_c01232{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mf_c01232{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.md_c01232{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);}
.m16_c01232{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);}
.m12_c01232{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me_c01232{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m17_c01232{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4_c01232{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m15_c01232{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.ma_c01232{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,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;}
.fs7_c01232{font-size:6.000000px;}
.fs8_c01232{font-size:6.900000px;}
.fs6_c01232{font-size:17.280000px;}
.fs5_c01232{font-size:48.360000px;}
.fs3_c01232{font-size:51.840000px;}
.fs0_c01232{font-size:55.320000px;}
.fs2_c01232{font-size:58.740000px;}
.fs1_c01232{font-size:62.220000px;}
.fs4_c01232{font-size:65.640000px;}
.y0_c01232{bottom:0.000000px;}
.y13_c01232{bottom:1213.050000px;}
.y14_c01232{bottom:1217.370000px;}
.y9_c01232{bottom:1325.370000px;}
.ya_c01232{bottom:1327.965000px;}
.yb_c01232{bottom:1328.835000px;}
.yd_c01232{bottom:1329.690000px;}
.ye_c01232{bottom:1330.560000px;}
.yc_c01232{bottom:1331.430000px;}
.y12_c01232{bottom:1333.155000px;}
.yf_c01232{bottom:1335.750000px;}
.y10_c01232{bottom:1336.605000px;}
.y11_c01232{bottom:1338.330000px;}
.y8_c01232{bottom:1361.670000px;}
.y1_c01232{bottom:1385.850000px;}
.y2_c01232{bottom:1386.720000px;}
.y3_c01232{bottom:1387.590000px;}
.y4_c01232{bottom:1388.445000px;}
.y5_c01232{bottom:1389.315000px;}
.y6_c01232{bottom:1390.170000px;}
.y7_c01232{bottom:1391.040000px;}
.h9_c01232{height:5.399414px;}
.ha_c01232{height:6.209326px;}
.h8_c01232{height:15.550313px;}
.h7_c01232{height:43.519277px;}
.h5_c01232{height:46.650937px;}
.h2_c01232{height:49.782598px;}
.h4_c01232{height:52.860264px;}
.h3_c01232{height:55.991924px;}
.h6_c01232{height:59.069590px;}
.h1_c01232{height:1518.750000px;}
.h0_c01232{height:1518.915000px;}
.w0_c01232{width:1085.190000px;}
.w1_c01232{width:1085.250000px;}
.x0_c01232{left:0.000000px;}
.x10_c01232{left:230.685000px;}
.x11_c01232{left:280.800000px;}
.x12_c01232{left:347.325000px;}
.x1_c01232{left:366.330000px;}
.x2_c01232{left:400.035000px;}
.x13_c01232{left:415.590000px;}
.x3_c01232{left:419.040000px;}
.x14_c01232{left:433.725000px;}
.x4_c01232{left:443.235000px;}
.x15_c01232{left:444.960000px;}
.x5_c01232{left:460.515000px;}
.x16_c01232{left:467.430000px;}
.x6_c01232{left:473.475000px;}
.x7_c01232{left:496.800000px;}
.x8_c01232{left:510.630000px;}
.xf_c01232{left:519.270000px;}
.x17_c01232{left:538.275000px;}
.x9_c01232{left:545.190000px;}
.xa_c01232{left:562.470000px;}
.x1a_c01232{left:577.155000px;}
.xb_c01232{left:582.330000px;}
.xc_c01232{left:603.930000px;}
.xd_c01232{left:622.950000px;}
.x1b_c01232{left:635.040000px;}
.xe_c01232{left:685.155000px;}
.x18_c01232{left:693.795000px;}
.x19_c01232{left:743.040000px;}
.x1c_c01232{left:1014.330000px;}
.x1d_c01232{left:1020.389925px;}
@media print{
.v0_c01232{vertical-align:0.000000pt;}
.ls0_c01232{letter-spacing:0.000000pt;}
.ws0_c01232{word-spacing:0.000000pt;}
.fs7_c01232{font-size:5.333333pt;}
.fs8_c01232{font-size:6.133333pt;}
.fs6_c01232{font-size:15.360000pt;}
.fs5_c01232{font-size:42.986667pt;}
.fs3_c01232{font-size:46.080000pt;}
.fs0_c01232{font-size:49.173333pt;}
.fs2_c01232{font-size:52.213333pt;}
.fs1_c01232{font-size:55.306667pt;}
.fs4_c01232{font-size:58.346667pt;}
.y0_c01232{bottom:0.000000pt;}
.y13_c01232{bottom:1078.266667pt;}
.y14_c01232{bottom:1082.106667pt;}
.y9_c01232{bottom:1178.106667pt;}
.ya_c01232{bottom:1180.413333pt;}
.yb_c01232{bottom:1181.186667pt;}
.yd_c01232{bottom:1181.946667pt;}
.ye_c01232{bottom:1182.720000pt;}
.yc_c01232{bottom:1183.493333pt;}
.y12_c01232{bottom:1185.026667pt;}
.yf_c01232{bottom:1187.333333pt;}
.y10_c01232{bottom:1188.093333pt;}
.y11_c01232{bottom:1189.626667pt;}
.y8_c01232{bottom:1210.373333pt;}
.y1_c01232{bottom:1231.866667pt;}
.y2_c01232{bottom:1232.640000pt;}
.y3_c01232{bottom:1233.413333pt;}
.y4_c01232{bottom:1234.173333pt;}
.y5_c01232{bottom:1234.946667pt;}
.y6_c01232{bottom:1235.706667pt;}
.y7_c01232{bottom:1236.480000pt;}
.h9_c01232{height:4.799479pt;}
.ha_c01232{height:5.519401pt;}
.h8_c01232{height:13.822500pt;}
.h7_c01232{height:38.683802pt;}
.h5_c01232{height:41.467500pt;}
.h2_c01232{height:44.251198pt;}
.h4_c01232{height:46.986901pt;}
.h3_c01232{height:49.770599pt;}
.h6_c01232{height:52.506302pt;}
.h1_c01232{height:1350.000000pt;}
.h0_c01232{height:1350.146667pt;}
.w0_c01232{width:964.613333pt;}
.w1_c01232{width:964.666667pt;}
.x0_c01232{left:0.000000pt;}
.x10_c01232{left:205.053333pt;}
.x11_c01232{left:249.600000pt;}
.x12_c01232{left:308.733333pt;}
.x1_c01232{left:325.626667pt;}
.x2_c01232{left:355.586667pt;}
.x13_c01232{left:369.413333pt;}
.x3_c01232{left:372.480000pt;}
.x14_c01232{left:385.533333pt;}
.x4_c01232{left:393.986667pt;}
.x15_c01232{left:395.520000pt;}
.x5_c01232{left:409.346667pt;}
.x16_c01232{left:415.493333pt;}
.x6_c01232{left:420.866667pt;}
.x7_c01232{left:441.600000pt;}
.x8_c01232{left:453.893333pt;}
.xf_c01232{left:461.573333pt;}
.x17_c01232{left:478.466667pt;}
.x9_c01232{left:484.613333pt;}
.xa_c01232{left:499.973333pt;}
.x1a_c01232{left:513.026667pt;}
.xb_c01232{left:517.626667pt;}
.xc_c01232{left:536.826667pt;}
.xd_c01232{left:553.733333pt;}
.x1b_c01232{left:564.480000pt;}
.xe_c01232{left:609.026667pt;}
.x18_c01232{left:616.706667pt;}
.x19_c01232{left:660.480000pt;}
.x1c_c01232{left:901.626667pt;}
.x1d_c01232{left:907.013267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cffdd9b8e08958307de05782.woff2')format("woff");}.ff1_c01233{font-family:ff1_c01233;line-height:1.109863;font-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_c01233{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.ma_c01233{transform:matrix(0.120525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120525,0.000000,0.000000,0.250000,0,0);}
.m8_c01233{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);}
.m6_c01233{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.m7_c01233{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.m9_c01233{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);}
.m5_c01233{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);}
.m2_c01233{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1_c01233{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m3_c01233{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m0_c01233{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,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;}
.fs3_c01233{font-size:3.456000px;}
.fs1_c01233{font-size:13.800000px;}
.fs4_c01233{font-size:17.280000px;}
.fs0_c01233{font-size:20.760000px;}
.fs8_c01233{font-size:38.040000px;}
.fs6_c01233{font-size:48.360000px;}
.fs5_c01233{font-size:51.840000px;}
.fs9_c01233{font-size:58.740000px;}
.fs7_c01233{font-size:65.640000px;}
.fsa_c01233{font-size:72.600000px;}
.fs2_c01233{font-size:79.500000px;}
.y0_c01233{bottom:0.000000px;}
.ya_c01233{bottom:643.680000px;}
.y9_c01233{bottom:646.275000px;}
.y7_c01233{bottom:659.235000px;}
.y8_c01233{bottom:661.830000px;}
.y6_c01233{bottom:683.430000px;}
.y5_c01233{bottom:1365.990000px;}
.y4_c01233{bottom:1366.845000px;}
.y3_c01233{bottom:1409.190000px;}
.y1_c01233{bottom:1418.685000px;}
.y2_c01233{bottom:1432.515000px;}
.h5_c01233{height:3.110063px;}
.h3_c01233{height:12.418652px;}
.h6_c01233{height:15.550313px;}
.h2_c01233{height:18.681973px;}
.ha_c01233{height:34.232285px;}
.h8_c01233{height:43.519277px;}
.h7_c01233{height:46.650937px;}
.hb_c01233{height:52.860264px;}
.h9_c01233{height:59.069590px;}
.hc_c01233{height:65.332910px;}
.h4_c01233{height:71.542236px;}
.h0_c01233{height:1515.450000px;}
.h1_c01233{height:1515.750000px;}
.w0_c01233{width:1094.685000px;}
.w1_c01233{width:1095.000000px;}
.x0_c01233{left:0.000000px;}
.x6_c01233{left:1.725000px;}
.x9_c01233{left:34.560000px;}
.x4_c01233{left:36.285000px;}
.x7_c01233{left:41.475000px;}
.x5_c01233{left:50.115000px;}
.x8_c01233{left:51.840000px;}
.x1_c01233{left:452.730000px;}
.x3_c01233{left:623.805000px;}
.x2_c01233{left:629.850000px;}
@media print{
.v0_c01233{vertical-align:0.000000pt;}
.ls0_c01233{letter-spacing:0.000000pt;}
.ws0_c01233{word-spacing:0.000000pt;}
.fs3_c01233{font-size:3.072000pt;}
.fs1_c01233{font-size:12.266667pt;}
.fs4_c01233{font-size:15.360000pt;}
.fs0_c01233{font-size:18.453333pt;}
.fs8_c01233{font-size:33.813333pt;}
.fs6_c01233{font-size:42.986667pt;}
.fs5_c01233{font-size:46.080000pt;}
.fs9_c01233{font-size:52.213333pt;}
.fs7_c01233{font-size:58.346667pt;}
.fsa_c01233{font-size:64.533333pt;}
.fs2_c01233{font-size:70.666667pt;}
.y0_c01233{bottom:0.000000pt;}
.ya_c01233{bottom:572.160000pt;}
.y9_c01233{bottom:574.466667pt;}
.y7_c01233{bottom:585.986667pt;}
.y8_c01233{bottom:588.293333pt;}
.y6_c01233{bottom:607.493333pt;}
.y5_c01233{bottom:1214.213333pt;}
.y4_c01233{bottom:1214.973333pt;}
.y3_c01233{bottom:1252.613333pt;}
.y1_c01233{bottom:1261.053333pt;}
.y2_c01233{bottom:1273.346667pt;}
.h5_c01233{height:2.764500pt;}
.h3_c01233{height:11.038802pt;}
.h6_c01233{height:13.822500pt;}
.h2_c01233{height:16.606198pt;}
.ha_c01233{height:30.428698pt;}
.h8_c01233{height:38.683802pt;}
.h7_c01233{height:41.467500pt;}
.hb_c01233{height:46.986901pt;}
.h9_c01233{height:52.506302pt;}
.hc_c01233{height:58.073698pt;}
.h4_c01233{height:63.593099pt;}
.h0_c01233{height:1347.066667pt;}
.h1_c01233{height:1347.333333pt;}
.w0_c01233{width:973.053333pt;}
.w1_c01233{width:973.333333pt;}
.x0_c01233{left:0.000000pt;}
.x6_c01233{left:1.533333pt;}
.x9_c01233{left:30.720000pt;}
.x4_c01233{left:32.253333pt;}
.x7_c01233{left:36.866667pt;}
.x5_c01233{left:44.546667pt;}
.x8_c01233{left:46.080000pt;}
.x1_c01233{left:402.426667pt;}
.x3_c01233{left:554.493333pt;}
.x2_c01233{left:559.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_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_c691987b6ba79faee3628ebe.woff2')format("woff");}.ff1_c01234{font-family:ff1_c01234;line-height:1.109863;font-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_c01234{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m5_c01234{transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);}
.m0_c01234{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m1_c01234{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);}
.m2_c01234{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c01234{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4_c01234{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,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;}
.fs3_c01234{font-size:3.456000px;}
.fs2_c01234{font-size:6.900000px;}
.fs5_c01234{font-size:10.380000px;}
.fs4_c01234{font-size:17.280000px;}
.fs1_c01234{font-size:38.040000px;}
.fs0_c01234{font-size:62.220000px;}
.fs6_c01234{font-size:69.120000px;}
.fs7_c01234{font-size:165.900000px;}
.y0_c01234{bottom:0.000000px;}
.y7_c01234{bottom:451.875000px;}
.y6_c01234{bottom:471.750000px;}
.y8_c01234{bottom:527.040000px;}
.y5_c01234{bottom:1175.040000px;}
.y4_c01234{bottom:1179.360000px;}
.y2_c01234{bottom:1211.325000px;}
.y3_c01234{bottom:1215.645000px;}
.y1_c01234{bottom:1229.475000px;}
.h5_c01234{height:3.110063px;}
.h4_c01234{height:6.209326px;}
.h7_c01234{height:9.340986px;}
.h6_c01234{height:15.550313px;}
.h3_c01234{height:34.232285px;}
.h2_c01234{height:55.991924px;}
.h8_c01234{height:62.201250px;}
.h9_c01234{height:149.293799px;}
.h1_c01234{height:1518.750000px;}
.h0_c01234{height:1518.915000px;}
.w0_c01234{width:1096.410000px;}
.w1_c01234{width:1096.500000px;}
.x0_c01234{left:0.000000px;}
.x7_c01234{left:974.595000px;}
.x2_c01234{left:1042.845000px;}
.x1_c01234{left:1045.440000px;}
.x3_c01234{left:1054.080000px;}
.x4_c01234{left:1062.720000px;}
.x6_c01234{left:1066.170000px;}
.x5_c01234{left:1074.810000px;}
@media print{
.v0_c01234{vertical-align:0.000000pt;}
.ls0_c01234{letter-spacing:0.000000pt;}
.ws0_c01234{word-spacing:0.000000pt;}
.fs3_c01234{font-size:3.072000pt;}
.fs2_c01234{font-size:6.133333pt;}
.fs5_c01234{font-size:9.226667pt;}
.fs4_c01234{font-size:15.360000pt;}
.fs1_c01234{font-size:33.813333pt;}
.fs0_c01234{font-size:55.306667pt;}
.fs6_c01234{font-size:61.440000pt;}
.fs7_c01234{font-size:147.466667pt;}
.y0_c01234{bottom:0.000000pt;}
.y7_c01234{bottom:401.666667pt;}
.y6_c01234{bottom:419.333333pt;}
.y8_c01234{bottom:468.480000pt;}
.y5_c01234{bottom:1044.480000pt;}
.y4_c01234{bottom:1048.320000pt;}
.y2_c01234{bottom:1076.733333pt;}
.y3_c01234{bottom:1080.573333pt;}
.y1_c01234{bottom:1092.866667pt;}
.h5_c01234{height:2.764500pt;}
.h4_c01234{height:5.519401pt;}
.h7_c01234{height:8.303099pt;}
.h6_c01234{height:13.822500pt;}
.h3_c01234{height:30.428698pt;}
.h2_c01234{height:49.770599pt;}
.h8_c01234{height:55.290000pt;}
.h9_c01234{height:132.705599pt;}
.h1_c01234{height:1350.000000pt;}
.h0_c01234{height:1350.146667pt;}
.w0_c01234{width:974.586667pt;}
.w1_c01234{width:974.666667pt;}
.x0_c01234{left:0.000000pt;}
.x7_c01234{left:866.306667pt;}
.x2_c01234{left:926.973333pt;}
.x1_c01234{left:929.280000pt;}
.x3_c01234{left:936.960000pt;}
.x4_c01234{left:944.640000pt;}
.x6_c01234{left:947.706667pt;}
.x5_c01234{left:955.386667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_20fb5e28ee16ec18e01842a2.woff2')format("woff");}.ff1_c01235{font-family:ff1_c01235;line-height:1.109863;font-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_c01235{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m16_c01235{transform:matrix(0.026325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026325,0.000000,0.000000,0.250000,0,0);}
.m19_c01235{transform:matrix(0.046125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046125,0.000000,0.000000,0.250000,0,0);}
.me_c01235{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);}
.m18_c01235{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m8_c01235{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c01235{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m2_c01235{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.ma_c01235{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);}
.md_c01235{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);}
.m9_c01235{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);}
.m5_c01235{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m1b_c01235{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);}
.m10_c01235{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);}
.m11_c01235{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);}
.m6_c01235{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);}
.mf_c01235{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01235{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4_c01235{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);}
.mb_c01235{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3_c01235{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m15_c01235{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);}
.m0_c01235{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);}
.m13_c01235{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m14_c01235{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7_c01235{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m17_c01235{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.mc_c01235{transform:matrix(1.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.595000,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:-12.113700px;}
.ws1_c01235{word-spacing:0.000000px;}
.fc0_c01235{color:transparent;}
.fsf_c01235{font-size:3.456000px;}
.fsd_c01235{font-size:6.900000px;}
.fs10_c01235{font-size:10.380000px;}
.fs8_c01235{font-size:13.800000px;}
.fs9_c01235{font-size:17.280000px;}
.fs5_c01235{font-size:20.760000px;}
.fs6_c01235{font-size:27.660000px;}
.fsa_c01235{font-size:34.560000px;}
.fsc_c01235{font-size:38.040000px;}
.fse_c01235{font-size:44.940000px;}
.fs7_c01235{font-size:48.360000px;}
.fs2_c01235{font-size:51.840000px;}
.fs4_c01235{font-size:55.320000px;}
.fs3_c01235{font-size:58.740000px;}
.fsb_c01235{font-size:65.640000px;}
.fs0_c01235{font-size:69.120000px;}
.fs1_c01235{font-size:82.920000px;}
.fs11_c01235{font-size:276.480000px;}
.y0_c01235{bottom:0.000000px;}
.y1b_c01235{bottom:370.650000px;}
.y1a_c01235{bottom:387.930000px;}
.y17_c01235{bottom:389.670000px;}
.y19_c01235{bottom:406.080000px;}
.y18_c01235{bottom:406.950000px;}
.y16_c01235{bottom:454.470000px;}
.y15_c01235{bottom:459.645000px;}
.y12_c01235{bottom:462.240000px;}
.y13_c01235{bottom:471.750000px;}
.y14_c01235{bottom:481.245000px;}
.y11_c01235{bottom:724.035000px;}
.y10_c01235{bottom:746.490000px;}
.ye_c01235{bottom:755.130000px;}
.yf_c01235{bottom:760.320000px;}
.yd_c01235{bottom:915.840000px;}
.yb_c01235{bottom:924.480000px;}
.ya_c01235{bottom:927.075000px;}
.yc_c01235{bottom:930.525000px;}
.y7_c01235{bottom:933.990000px;}
.y6_c01235{bottom:939.165000px;}
.y8_c01235{bottom:940.890000px;}
.y9_c01235{bottom:942.630000px;}
.y5_c01235{bottom:948.675000px;}
.y1_c01235{bottom:1381.530000px;}
.y4_c01235{bottom:1383.270000px;}
.y3_c01235{bottom:1384.125000px;}
.y2_c01235{bottom:1407.450000px;}
.h11_c01235{height:3.110063px;}
.hf_c01235{height:6.209326px;}
.h12_c01235{height:9.340986px;}
.ha_c01235{height:12.418652px;}
.hb_c01235{height:15.550313px;}
.h7_c01235{height:18.681973px;}
.h8_c01235{height:24.891299px;}
.hc_c01235{height:31.100625px;}
.he_c01235{height:34.232285px;}
.h10_c01235{height:40.441611px;}
.h9_c01235{height:43.519277px;}
.h4_c01235{height:46.650937px;}
.h6_c01235{height:49.782598px;}
.h5_c01235{height:52.860264px;}
.hd_c01235{height:59.069590px;}
.h2_c01235{height:62.201250px;}
.h3_c01235{height:74.619902px;}
.h13_c01235{height:248.805000px;}
.h0_c01235{height:1515.450000px;}
.h1_c01235{height:1515.750000px;}
.w0_c01235{width:1094.685000px;}
.w1_c01235{width:1095.000000px;}
.x0_c01235{left:0.000000px;}
.xf_c01235{left:5.190000px;}
.xd_c01235{left:10.365000px;}
.xa_c01235{left:17.280000px;}
.x10_c01235{left:21.600000px;}
.x11_c01235{left:24.195000px;}
.x9_c01235{left:28.515000px;}
.xe_c01235{left:39.750000px;}
.xb_c01235{left:41.475000px;}
.xc_c01235{left:59.610000px;}
.x1_c01235{left:358.560000px;}
.x3_c01235{left:541.725000px;}
.x4_c01235{left:571.110000px;}
.x2_c01235{left:644.550000px;}
.x5_c01235{left:652.320000px;}
.x6_c01235{left:669.600000px;}
.x7_c01235{left:712.800000px;}
.x8_c01235{left:773.280000px;}
@media print{
.v0_c01235{vertical-align:0.000000pt;}
.ls0_c01235{letter-spacing:0.000000pt;}
.ws0_c01235{word-spacing:-10.767733pt;}
.ws1_c01235{word-spacing:0.000000pt;}
.fsf_c01235{font-size:3.072000pt;}
.fsd_c01235{font-size:6.133333pt;}
.fs10_c01235{font-size:9.226667pt;}
.fs8_c01235{font-size:12.266667pt;}
.fs9_c01235{font-size:15.360000pt;}
.fs5_c01235{font-size:18.453333pt;}
.fs6_c01235{font-size:24.586667pt;}
.fsa_c01235{font-size:30.720000pt;}
.fsc_c01235{font-size:33.813333pt;}
.fse_c01235{font-size:39.946667pt;}
.fs7_c01235{font-size:42.986667pt;}
.fs2_c01235{font-size:46.080000pt;}
.fs4_c01235{font-size:49.173333pt;}
.fs3_c01235{font-size:52.213333pt;}
.fsb_c01235{font-size:58.346667pt;}
.fs0_c01235{font-size:61.440000pt;}
.fs1_c01235{font-size:73.706667pt;}
.fs11_c01235{font-size:245.760000pt;}
.y0_c01235{bottom:0.000000pt;}
.y1b_c01235{bottom:329.466667pt;}
.y1a_c01235{bottom:344.826667pt;}
.y17_c01235{bottom:346.373333pt;}
.y19_c01235{bottom:360.960000pt;}
.y18_c01235{bottom:361.733333pt;}
.y16_c01235{bottom:403.973333pt;}
.y15_c01235{bottom:408.573333pt;}
.y12_c01235{bottom:410.880000pt;}
.y13_c01235{bottom:419.333333pt;}
.y14_c01235{bottom:427.773333pt;}
.y11_c01235{bottom:643.586667pt;}
.y10_c01235{bottom:663.546667pt;}
.ye_c01235{bottom:671.226667pt;}
.yf_c01235{bottom:675.840000pt;}
.yd_c01235{bottom:814.080000pt;}
.yb_c01235{bottom:821.760000pt;}
.ya_c01235{bottom:824.066667pt;}
.yc_c01235{bottom:827.133333pt;}
.y7_c01235{bottom:830.213333pt;}
.y6_c01235{bottom:834.813333pt;}
.y8_c01235{bottom:836.346667pt;}
.y9_c01235{bottom:837.893333pt;}
.y5_c01235{bottom:843.266667pt;}
.y1_c01235{bottom:1228.026667pt;}
.y4_c01235{bottom:1229.573333pt;}
.y3_c01235{bottom:1230.333333pt;}
.y2_c01235{bottom:1251.066667pt;}
.h11_c01235{height:2.764500pt;}
.hf_c01235{height:5.519401pt;}
.h12_c01235{height:8.303099pt;}
.ha_c01235{height:11.038802pt;}
.hb_c01235{height:13.822500pt;}
.h7_c01235{height:16.606198pt;}
.h8_c01235{height:22.125599pt;}
.hc_c01235{height:27.645000pt;}
.he_c01235{height:30.428698pt;}
.h10_c01235{height:35.948099pt;}
.h9_c01235{height:38.683802pt;}
.h4_c01235{height:41.467500pt;}
.h6_c01235{height:44.251198pt;}
.h5_c01235{height:46.986901pt;}
.hd_c01235{height:52.506302pt;}
.h2_c01235{height:55.290000pt;}
.h3_c01235{height:66.328802pt;}
.h13_c01235{height:221.160000pt;}
.h0_c01235{height:1347.066667pt;}
.h1_c01235{height:1347.333333pt;}
.w0_c01235{width:973.053333pt;}
.w1_c01235{width:973.333333pt;}
.x0_c01235{left:0.000000pt;}
.xf_c01235{left:4.613333pt;}
.xd_c01235{left:9.213333pt;}
.xa_c01235{left:15.360000pt;}
.x10_c01235{left:19.200000pt;}
.x11_c01235{left:21.506667pt;}
.x9_c01235{left:25.346667pt;}
.xe_c01235{left:35.333333pt;}
.xb_c01235{left:36.866667pt;}
.xc_c01235{left:52.986667pt;}
.x1_c01235{left:318.720000pt;}
.x3_c01235{left:481.533333pt;}
.x4_c01235{left:507.653333pt;}
.x2_c01235{left:572.933333pt;}
.x5_c01235{left:579.840000pt;}
.x6_c01235{left:595.200000pt;}
.x7_c01235{left:633.600000pt;}
.x8_c01235{left:687.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_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_a18879b0e707390085484318.woff2')format("woff");}.ff1_c01236{font-family:ff1_c01236;line-height:1.109863;font-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_c01236{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c01236{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m3_c01236{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01236{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);}
.m5_c01236{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);}
.ma_c01236{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c01236{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb_c01236{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c01236{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_c01236{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c01236{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.mc_c01236{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m9_c01236{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,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;}
.fs7_c01236{font-size:3.456000px;}
.fs6_c01236{font-size:6.000000px;}
.fs2_c01236{font-size:13.800000px;}
.fs3_c01236{font-size:17.280000px;}
.fs8_c01236{font-size:20.760000px;}
.fs4_c01236{font-size:24.180000px;}
.fs0_c01236{font-size:27.660000px;}
.fsa_c01236{font-size:34.560000px;}
.fs9_c01236{font-size:44.940000px;}
.fs1_c01236{font-size:62.220000px;}
.fs5_c01236{font-size:65.640000px;}
.y0_c01236{bottom:0.000000px;}
.yf_c01236{bottom:475.200000px;}
.yd_c01236{bottom:534.810000px;}
.ye_c01236{bottom:535.680000px;}
.yc_c01236{bottom:536.550000px;}
.yb_c01236{bottom:1095.555000px;}
.y9_c01236{bottom:1097.280000px;}
.ya_c01236{bottom:1099.005000px;}
.y8_c01236{bottom:1345.245000px;}
.y7_c01236{bottom:1346.115000px;}
.y4_c01236{bottom:1385.850000px;}
.y2_c01236{bottom:1391.040000px;}
.y6_c01236{bottom:1394.490000px;}
.y3_c01236{bottom:1395.360000px;}
.y5_c01236{bottom:1397.955000px;}
.y1_c01236{bottom:1414.365000px;}
.h9_c01236{height:3.110063px;}
.h8_c01236{height:5.399414px;}
.h4_c01236{height:12.418652px;}
.h5_c01236{height:15.550313px;}
.ha_c01236{height:18.681973px;}
.h6_c01236{height:21.759639px;}
.h2_c01236{height:24.891299px;}
.hc_c01236{height:31.100625px;}
.hb_c01236{height:40.441611px;}
.h3_c01236{height:55.991924px;}
.h7_c01236{height:59.069590px;}
.h1_c01236{height:1518.750000px;}
.h0_c01236{height:1518.915000px;}
.w0_c01236{width:1096.410000px;}
.w1_c01236{width:1096.500000px;}
.x0_c01236{left:0.000000px;}
.x2_c01236{left:582.330000px;}
.x3_c01236{left:769.830000px;}
.x4_c01236{left:906.330000px;}
.x5_c01236{left:921.030000px;}
.x1_c01236{left:924.480000px;}
.x8_c01236{left:1010.880000px;}
.xb_c01236{left:1013.475000px;}
.x9_c01236{left:1018.650000px;}
.xa_c01236{left:1020.390000px;}
.xc_c01236{left:1040.250000px;}
.xd_c01236{left:1067.910000px;}
.x6_c01236{left:1069.635000px;}
.x7_c01236{left:1086.915000px;}
@media print{
.v0_c01236{vertical-align:0.000000pt;}
.ls0_c01236{letter-spacing:0.000000pt;}
.ws0_c01236{word-spacing:0.000000pt;}
.fs7_c01236{font-size:3.072000pt;}
.fs6_c01236{font-size:5.333333pt;}
.fs2_c01236{font-size:12.266667pt;}
.fs3_c01236{font-size:15.360000pt;}
.fs8_c01236{font-size:18.453333pt;}
.fs4_c01236{font-size:21.493333pt;}
.fs0_c01236{font-size:24.586667pt;}
.fsa_c01236{font-size:30.720000pt;}
.fs9_c01236{font-size:39.946667pt;}
.fs1_c01236{font-size:55.306667pt;}
.fs5_c01236{font-size:58.346667pt;}
.y0_c01236{bottom:0.000000pt;}
.yf_c01236{bottom:422.400000pt;}
.yd_c01236{bottom:475.386667pt;}
.ye_c01236{bottom:476.160000pt;}
.yc_c01236{bottom:476.933333pt;}
.yb_c01236{bottom:973.826667pt;}
.y9_c01236{bottom:975.360000pt;}
.ya_c01236{bottom:976.893333pt;}
.y8_c01236{bottom:1195.773333pt;}
.y7_c01236{bottom:1196.546667pt;}
.y4_c01236{bottom:1231.866667pt;}
.y2_c01236{bottom:1236.480000pt;}
.y6_c01236{bottom:1239.546667pt;}
.y3_c01236{bottom:1240.320000pt;}
.y5_c01236{bottom:1242.626667pt;}
.y1_c01236{bottom:1257.213333pt;}
.h9_c01236{height:2.764500pt;}
.h8_c01236{height:4.799479pt;}
.h4_c01236{height:11.038802pt;}
.h5_c01236{height:13.822500pt;}
.ha_c01236{height:16.606198pt;}
.h6_c01236{height:19.341901pt;}
.h2_c01236{height:22.125599pt;}
.hc_c01236{height:27.645000pt;}
.hb_c01236{height:35.948099pt;}
.h3_c01236{height:49.770599pt;}
.h7_c01236{height:52.506302pt;}
.h1_c01236{height:1350.000000pt;}
.h0_c01236{height:1350.146667pt;}
.w0_c01236{width:974.586667pt;}
.w1_c01236{width:974.666667pt;}
.x0_c01236{left:0.000000pt;}
.x2_c01236{left:517.626667pt;}
.x3_c01236{left:684.293333pt;}
.x4_c01236{left:805.626667pt;}
.x5_c01236{left:818.693333pt;}
.x1_c01236{left:821.760000pt;}
.x8_c01236{left:898.560000pt;}
.xb_c01236{left:900.866667pt;}
.x9_c01236{left:905.466667pt;}
.xa_c01236{left:907.013333pt;}
.xc_c01236{left:924.666667pt;}
.xd_c01236{left:949.253333pt;}
.x6_c01236{left:950.786667pt;}
.x7_c01236{left:966.146667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01237;src:url('chunks/assets/font_5c07a05db85fabb1c401fafa.woff2')format("woff");}.ff1_c01237{font-family:ff1_c01237;line-height:1.109863;font-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_c01237{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m16_c01237{transform:matrix(0.019625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019625,0.000000,0.000000,0.250000,0,0);}
.m18_c01237{transform:matrix(0.020050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020050,0.000000,0.000000,0.250000,0,0);}
.m1a_c01237{transform:matrix(0.026550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.026550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.026550,0.000000,0.000000,0.250000,0,0);}
.m0_c01237{transform:matrix(0.064225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064225,0.000000,0.000000,0.250000,0,0);}
.m10_c01237{transform:matrix(0.064350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064350,0.000000,0.000000,0.250000,0,0);}
.mf_c01237{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);}
.m12_c01237{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);}
.m8_c01237{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.mb_c01237{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.md_c01237{transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);}
.m17_c01237{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m13_c01237{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);}
.ma_c01237{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m11_c01237{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.m1_c01237{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);}
.mc_c01237{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m14_c01237{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);}
.m19_c01237{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c01237{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c01237{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);}
.m4_c01237{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c01237{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m15_c01237{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6_c01237{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m2_c01237{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m9_c01237{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.v0_c01237{vertical-align:0.000000px;}
.ls0_c01237{letter-spacing:0.000000px;}
.sc__c01237{text-shadow:none;}
.sc0_c01237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01237{-webkit-text-stroke:0px transparent;}
.sc0_c01237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01237{word-spacing:0.000000px;}
.fc0_c01237{color:transparent;}
.fsc_c01237{font-size:3.456000px;}
.fs1_c01237{font-size:10.380000px;}
.fs2_c01237{font-size:13.800000px;}
.fs4_c01237{font-size:17.280000px;}
.fsf_c01237{font-size:20.760000px;}
.fs0_c01237{font-size:24.180000px;}
.fs3_c01237{font-size:27.660000px;}
.fs5_c01237{font-size:34.560000px;}
.fs7_c01237{font-size:44.940000px;}
.fs6_c01237{font-size:55.320000px;}
.fsb_c01237{font-size:69.120000px;}
.fs9_c01237{font-size:72.600000px;}
.fsa_c01237{font-size:100.200000px;}
.fs10_c01237{font-size:117.480000px;}
.fs8_c01237{font-size:120.960000px;}
.fse_c01237{font-size:155.520000px;}
.fsd_c01237{font-size:159.000000px;}
.y0_c01237{bottom:0.000000px;}
.y1c_c01237{bottom:175.395000px;}
.y1a_c01237{bottom:209.085000px;}
.y1b_c01237{bottom:217.725000px;}
.y19_c01237{bottom:235.005000px;}
.y18_c01237{bottom:249.690000px;}
.y13_c01237{bottom:280.800000px;}
.y14_c01237{bottom:287.715000px;}
.y15_c01237{bottom:305.850000px;}
.y11_c01237{bottom:306.720000px;}
.y12_c01237{bottom:307.590000px;}
.y10_c01237{bottom:337.830000px;}
.yf_c01237{bottom:347.325000px;}
.ye_c01237{bottom:354.240000px;}
.yd_c01237{bottom:506.310000px;}
.yc_c01237{bottom:515.805000px;}
.yb_c01237{bottom:528.765000px;}
.ya_c01237{bottom:543.450000px;}
.y9_c01237{bottom:915.840000px;}
.y8_c01237{bottom:923.610000px;}
.y7_c01237{bottom:954.720000px;}
.y6_c01237{bottom:966.810000px;}
.y17_c01237{bottom:972.870000px;}
.y5_c01237{bottom:1332.285000px;}
.y4_c01237{bottom:1341.795000px;}
.y3_c01237{bottom:1346.115000px;}
.y2_c01237{bottom:1391.040000px;}
.y1_c01237{bottom:1394.490000px;}
.y16_c01237{bottom:1410.915000px;}
.he_c01237{height:3.110063px;}
.h3_c01237{height:9.340986px;}
.h4_c01237{height:12.418652px;}
.h6_c01237{height:15.550313px;}
.h11_c01237{height:18.681973px;}
.h2_c01237{height:21.759639px;}
.h5_c01237{height:24.891299px;}
.h7_c01237{height:31.100625px;}
.h9_c01237{height:40.441611px;}
.h8_c01237{height:49.782598px;}
.hd_c01237{height:62.201250px;}
.hb_c01237{height:65.332910px;}
.hc_c01237{height:90.170215px;}
.h12_c01237{height:105.720527px;}
.ha_c01237{height:108.852188px;}
.h10_c01237{height:139.952812px;}
.hf_c01237{height:143.084473px;}
.h0_c01237{height:1515.450000px;}
.h1_c01237{height:1515.750000px;}
.w0_c01237{width:1094.685000px;}
.w1_c01237{width:1095.000000px;}
.x0_c01237{left:0.000000px;}
.x3_c01237{left:1.725000px;}
.x4_c01237{left:4.320000px;}
.x6_c01237{left:6.045000px;}
.x5_c01237{left:7.770000px;}
.x1_c01237{left:36.285000px;}
.x9_c01237{left:50.115000px;}
.x2_c01237{left:51.840000px;}
.x8_c01237{left:55.290000px;}
.x7_c01237{left:61.350000px;}
.xc_c01237{left:85.530000px;}
.xb_c01237{left:107.130000px;}
.xa_c01237{left:116.640000px;}
@media print{
.v0_c01237{vertical-align:0.000000pt;}
.ls0_c01237{letter-spacing:0.000000pt;}
.ws0_c01237{word-spacing:0.000000pt;}
.fsc_c01237{font-size:3.072000pt;}
.fs1_c01237{font-size:9.226667pt;}
.fs2_c01237{font-size:12.266667pt;}
.fs4_c01237{font-size:15.360000pt;}
.fsf_c01237{font-size:18.453333pt;}
.fs0_c01237{font-size:21.493333pt;}
.fs3_c01237{font-size:24.586667pt;}
.fs5_c01237{font-size:30.720000pt;}
.fs7_c01237{font-size:39.946667pt;}
.fs6_c01237{font-size:49.173333pt;}
.fsb_c01237{font-size:61.440000pt;}
.fs9_c01237{font-size:64.533333pt;}
.fsa_c01237{font-size:89.066667pt;}
.fs10_c01237{font-size:104.426667pt;}
.fs8_c01237{font-size:107.520000pt;}
.fse_c01237{font-size:138.240000pt;}
.fsd_c01237{font-size:141.333333pt;}
.y0_c01237{bottom:0.000000pt;}
.y1c_c01237{bottom:155.906667pt;}
.y1a_c01237{bottom:185.853333pt;}
.y1b_c01237{bottom:193.533333pt;}
.y19_c01237{bottom:208.893333pt;}
.y18_c01237{bottom:221.946667pt;}
.y13_c01237{bottom:249.600000pt;}
.y14_c01237{bottom:255.746667pt;}
.y15_c01237{bottom:271.866667pt;}
.y11_c01237{bottom:272.640000pt;}
.y12_c01237{bottom:273.413333pt;}
.y10_c01237{bottom:300.293333pt;}
.yf_c01237{bottom:308.733333pt;}
.ye_c01237{bottom:314.880000pt;}
.yd_c01237{bottom:450.053333pt;}
.yc_c01237{bottom:458.493333pt;}
.yb_c01237{bottom:470.013333pt;}
.ya_c01237{bottom:483.066667pt;}
.y9_c01237{bottom:814.080000pt;}
.y8_c01237{bottom:820.986667pt;}
.y7_c01237{bottom:848.640000pt;}
.y6_c01237{bottom:859.386667pt;}
.y17_c01237{bottom:864.773333pt;}
.y5_c01237{bottom:1184.253333pt;}
.y4_c01237{bottom:1192.706667pt;}
.y3_c01237{bottom:1196.546667pt;}
.y2_c01237{bottom:1236.480000pt;}
.y1_c01237{bottom:1239.546667pt;}
.y16_c01237{bottom:1254.146667pt;}
.he_c01237{height:2.764500pt;}
.h3_c01237{height:8.303099pt;}
.h4_c01237{height:11.038802pt;}
.h6_c01237{height:13.822500pt;}
.h11_c01237{height:16.606198pt;}
.h2_c01237{height:19.341901pt;}
.h5_c01237{height:22.125599pt;}
.h7_c01237{height:27.645000pt;}
.h9_c01237{height:35.948099pt;}
.h8_c01237{height:44.251198pt;}
.hd_c01237{height:55.290000pt;}
.hb_c01237{height:58.073698pt;}
.hc_c01237{height:80.151302pt;}
.h12_c01237{height:93.973802pt;}
.ha_c01237{height:96.757500pt;}
.h10_c01237{height:124.402500pt;}
.hf_c01237{height:127.186198pt;}
.h0_c01237{height:1347.066667pt;}
.h1_c01237{height:1347.333333pt;}
.w0_c01237{width:973.053333pt;}
.w1_c01237{width:973.333333pt;}
.x0_c01237{left:0.000000pt;}
.x3_c01237{left:1.533333pt;}
.x4_c01237{left:3.840000pt;}
.x6_c01237{left:5.373333pt;}
.x5_c01237{left:6.906667pt;}
.x1_c01237{left:32.253333pt;}
.x9_c01237{left:44.546667pt;}
.x2_c01237{left:46.080000pt;}
.x8_c01237{left:49.146667pt;}
.x7_c01237{left:54.533333pt;}
.xc_c01237{left:76.026667pt;}
.xb_c01237{left:95.226667pt;}
.xa_c01237{left:103.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_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_a0df46192744c5ee5efcb007.woff2')format("woff");}.ff1_c01238{font-family:ff1_c01238;line-height:1.109863;font-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_c01238{transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);}
.m2_c01238{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);}
.m0_c01238{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,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;}
.fc0_c01238{color:transparent;}
.fs0_c01238{font-size:10.380000px;}
.fs2_c01238{font-size:17.280000px;}
.fs1_c01238{font-size:79.500000px;}
.y0_c01238{bottom:0.000000px;}
.y3_c01238{bottom:813.030000px;}
.y2_c01238{bottom:1237.245000px;}
.y1_c01238{bottom:1238.970000px;}
.h2_c01238{height:9.340986px;}
.h4_c01238{height:15.550313px;}
.h3_c01238{height:71.542236px;}
.h1_c01238{height:1518.750000px;}
.h0_c01238{height:1518.915000px;}
.w0_c01238{width:1096.410000px;}
.w1_c01238{width:1096.500000px;}
.x0_c01238{left:0.000000px;}
.x3_c01238{left:1050.630000px;}
.x1_c01238{left:1057.530000px;}
.x2_c01238{left:1062.720000px;}
@media print{
.v0_c01238{vertical-align:0.000000pt;}
.ls0_c01238{letter-spacing:0.000000pt;}
.ws0_c01238{word-spacing:0.000000pt;}
.fs0_c01238{font-size:9.226667pt;}
.fs2_c01238{font-size:15.360000pt;}
.fs1_c01238{font-size:70.666667pt;}
.y0_c01238{bottom:0.000000pt;}
.y3_c01238{bottom:722.693333pt;}
.y2_c01238{bottom:1099.773333pt;}
.y1_c01238{bottom:1101.306667pt;}
.h2_c01238{height:8.303099pt;}
.h4_c01238{height:13.822500pt;}
.h3_c01238{height:63.593099pt;}
.h1_c01238{height:1350.000000pt;}
.h0_c01238{height:1350.146667pt;}
.w0_c01238{width:974.586667pt;}
.w1_c01238{width:974.666667pt;}
.x0_c01238{left:0.000000pt;}
.x3_c01238{left:933.893333pt;}
.x1_c01238{left:940.026667pt;}
.x2_c01238{left:944.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_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;}
@font-face{font-family:ff1_c01239;src:url('chunks/assets/font_042cd8c34c4aceac0401cc12.woff2')format("woff");}.ff1_c01239{font-family:ff1_c01239;line-height:1.109863;font-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_c01239{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m57_c01239{transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);}
.m5f_c01239{transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120725,0.000000,0.000000,0.250000,0,0);}
.m51_c01239{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m60_c01239{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);}
.m61_c01239{transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);}
.m34_c01239{transform:matrix(0.131375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131375,0.000000,0.000000,0.250000,0,0);}
.m49_c01239{transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);}
.m4_c01239{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m30_c01239{transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);}
.m2d_c01239{transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);}
.m22_c01239{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);}
.m4a_c01239{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.m1e_c01239{transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);}
.m19_c01239{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);}
.m1_c01239{transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);}
.m32_c01239{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.m5d_c01239{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m26_c01239{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m24_c01239{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);}
.m65_c01239{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.m12_c01239{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m27_c01239{transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);}
.m28_c01239{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.m0_c01239{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.m29_c01239{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m3_c01239{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.m3a_c01239{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m67_c01239{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);}
.m59_c01239{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m5c_c01239{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.me_c01239{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);}
.m4d_c01239{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);}
.m20_c01239{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);}
.m1f_c01239{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.m64_c01239{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m5e_c01239{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);}
.m62_c01239{transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);}
.m31_c01239{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);}
.m21_c01239{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);}
.m39_c01239{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01239{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.m46_c01239{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);}
.m1b_c01239{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);}
.m3c_c01239{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);}
.m68_c01239{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);}
.m53_c01239{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m4c_c01239{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m4e_c01239{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);}
.m4f_c01239{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);}
.m1a_c01239{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);}
.m56_c01239{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);}
.mf_c01239{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m38_c01239{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m37_c01239{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m48_c01239{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);}
.m3b_c01239{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);}
.m43_c01239{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);}
.m5_c01239{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m23_c01239{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);}
.m54_c01239{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c01239{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);}
.md_c01239{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);}
.m14_c01239{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01239{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c01239{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m25_c01239{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c01239{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m52_c01239{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c01239{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m41_c01239{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c01239{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);}
.m33_c01239{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m8_c01239{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);}
.m58_c01239{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c01239{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m11_c01239{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c01239{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);}
.m2f_c01239{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m44_c01239{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m16_c01239{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m10_c01239{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m18_c01239{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01239{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);}
.mb_c01239{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);}
.m35_c01239{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m55_c01239{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);}
.m63_c01239{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.ma_c01239{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m45_c01239{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);}
.m1d_c01239{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01239{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);}
.m40_c01239{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01239{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m47_c01239{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m36_c01239{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01239{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01239{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01239{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m50_c01239{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m42_c01239{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01239{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01239{transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);}
.m66_c01239{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01239{transform:matrix(12.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(12.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(12.490000,0.000000,0.000000,0.250000,0,0);}
.v0_c01239{vertical-align:0.000000px;}
.ls0_c01239{letter-spacing:0.000000px;}
.sc__c01239{text-shadow:none;}
.sc0_c01239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01239{-webkit-text-stroke:0px transparent;}
.sc0_c01239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01239{word-spacing:0.000000px;}
.fc0_c01239{color:transparent;}
.fsb_c01239{font-size:3.456000px;}
.fs2_c01239{font-size:6.000000px;}
.fs15_c01239{font-size:6.900000px;}
.fs4_c01239{font-size:10.380000px;}
.fs5_c01239{font-size:13.800000px;}
.fsd_c01239{font-size:17.280000px;}
.fs3_c01239{font-size:20.760000px;}
.fs1_c01239{font-size:24.180000px;}
.fs13_c01239{font-size:27.660000px;}
.fs1a_c01239{font-size:31.080000px;}
.fs0_c01239{font-size:34.560000px;}
.fs12_c01239{font-size:38.040000px;}
.fs14_c01239{font-size:41.460000px;}
.fs1b_c01239{font-size:44.940000px;}
.fs16_c01239{font-size:48.360000px;}
.fs8_c01239{font-size:51.840000px;}
.fs7_c01239{font-size:55.320000px;}
.fsa_c01239{font-size:58.740000px;}
.fs9_c01239{font-size:62.220000px;}
.fs18_c01239{font-size:65.640000px;}
.fsc_c01239{font-size:69.120000px;}
.fs1c_c01239{font-size:72.600000px;}
.fsf_c01239{font-size:79.500000px;}
.fs19_c01239{font-size:82.920000px;}
.fs11_c01239{font-size:86.400000px;}
.fs6_c01239{font-size:89.880000px;}
.fs17_c01239{font-size:96.780000px;}
.fse_c01239{font-size:114.060000px;}
.fs10_c01239{font-size:117.480000px;}
.y0_c01239{bottom:0.000000px;}
.y5b_c01239{bottom:921.030000px;}
.y5c_c01239{bottom:921.885000px;}
.y5a_c01239{bottom:924.480000px;}
.y59_c01239{bottom:937.440000px;}
.y58_c01239{bottom:954.720000px;}
.y57_c01239{bottom:972.000000px;}
.y56_c01239{bottom:974.595000px;}
.y54_c01239{bottom:1044.570000px;}
.y55_c01239{bottom:1046.310000px;}
.y53_c01239{bottom:1048.035000px;}
.y50_c01239{bottom:1058.400000px;}
.y51_c01239{bottom:1059.270000px;}
.y52_c01239{bottom:1060.125000px;}
.y4e_c01239{bottom:1076.550000px;}
.y4f_c01239{bottom:1077.405000px;}
.y4d_c01239{bottom:1087.770000px;}
.y4c_c01239{bottom:1099.005000px;}
.y4b_c01239{bottom:1116.285000px;}
.y4a_c01239{bottom:1126.650000px;}
.y49_c01239{bottom:1129.245000px;}
.y46_c01239{bottom:1148.250000px;}
.y48_c01239{bottom:1150.845000px;}
.y47_c01239{bottom:1151.715000px;}
.y45_c01239{bottom:1168.995000px;}
.y44_c01239{bottom:1175.040000px;}
.y43_c01239{bottom:1186.275000px;}
.y42_c01239{bottom:1194.045000px;}
.y40_c01239{bottom:1199.235000px;}
.y41_c01239{bottom:1200.090000px;}
.y3e_c01239{bottom:1257.120000px;}
.y3f_c01239{bottom:1264.035000px;}
.y3c_c01239{bottom:1273.530000px;}
.y3b_c01239{bottom:1278.720000px;}
.y36_c01239{bottom:1280.445000px;}
.y39_c01239{bottom:1284.765000px;}
.y38_c01239{bottom:1286.490000px;}
.y37_c01239{bottom:1287.360000px;}
.y3a_c01239{bottom:1289.085000px;}
.y2f_c01239{bottom:1296.870000px;}
.y2e_c01239{bottom:1297.725000px;}
.y30_c01239{bottom:1300.320000px;}
.y34_c01239{bottom:1301.190000px;}
.y32_c01239{bottom:1302.045000px;}
.y2d_c01239{bottom:1304.640000px;}
.y31_c01239{bottom:1306.365000px;}
.y29_c01239{bottom:1308.090000px;}
.y2a_c01239{bottom:1308.960000px;}
.y33_c01239{bottom:1309.830000px;}
.y1d_c01239{bottom:1311.555000px;}
.y2c_c01239{bottom:1312.410000px;}
.y35_c01239{bottom:1313.280000px;}
.y26_c01239{bottom:1314.150000px;}
.y20_c01239{bottom:1315.005000px;}
.y2b_c01239{bottom:1315.875000px;}
.y21_c01239{bottom:1316.730000px;}
.y1c_c01239{bottom:1318.470000px;}
.y1e_c01239{bottom:1319.325000px;}
.y24_c01239{bottom:1320.195000px;}
.y28_c01239{bottom:1321.920000px;}
.y22_c01239{bottom:1322.790000px;}
.y1f_c01239{bottom:1323.645000px;}
.y27_c01239{bottom:1324.515000px;}
.y25_c01239{bottom:1325.370000px;}
.y23_c01239{bottom:1327.110000px;}
.y13_c01239{bottom:1331.430000px;}
.y15_c01239{bottom:1332.285000px;}
.y1b_c01239{bottom:1334.010000px;}
.y14_c01239{bottom:1334.880000px;}
.y1a_c01239{bottom:1336.605000px;}
.y17_c01239{bottom:1338.330000px;}
.y18_c01239{bottom:1340.070000px;}
.y16_c01239{bottom:1340.925000px;}
.y19_c01239{bottom:1344.390000px;}
.y3d_c01239{bottom:1349.565000px;}
.y10_c01239{bottom:1358.205000px;}
.y11_c01239{bottom:1360.800000px;}
.yf_c01239{bottom:1363.395000px;}
.y12_c01239{bottom:1365.120000px;}
.y7_c01239{bottom:1366.845000px;}
.y6_c01239{bottom:1367.715000px;}
.y9_c01239{bottom:1368.570000px;}
.y8_c01239{bottom:1369.440000px;}
.ya_c01239{bottom:1370.310000px;}
.yb_c01239{bottom:1371.165000px;}
.yc_c01239{bottom:1372.035000px;}
.yd_c01239{bottom:1372.890000px;}
.ye_c01239{bottom:1378.950000px;}
.y5_c01239{bottom:1379.805000px;}
.y4_c01239{bottom:1398.810000px;}
.y2_c01239{bottom:1425.600000px;}
.y3_c01239{bottom:1427.325000px;}
.y1_c01239{bottom:1440.285000px;}
.hd_c01239{height:3.110063px;}
.h4_c01239{height:5.399414px;}
.h17_c01239{height:6.209326px;}
.h6_c01239{height:9.340986px;}
.h7_c01239{height:12.418652px;}
.hf_c01239{height:15.550313px;}
.h5_c01239{height:18.681973px;}
.h3_c01239{height:21.759639px;}
.h15_c01239{height:24.891299px;}
.h1c_c01239{height:27.968965px;}
.h2_c01239{height:31.100625px;}
.h14_c01239{height:34.232285px;}
.h16_c01239{height:37.309951px;}
.h1d_c01239{height:40.441611px;}
.h18_c01239{height:43.519277px;}
.ha_c01239{height:46.650937px;}
.h9_c01239{height:49.782598px;}
.hc_c01239{height:52.860264px;}
.hb_c01239{height:55.991924px;}
.h1a_c01239{height:59.069590px;}
.he_c01239{height:62.201250px;}
.h1e_c01239{height:65.332910px;}
.h11_c01239{height:71.542236px;}
.h1b_c01239{height:74.619902px;}
.h13_c01239{height:77.751563px;}
.h8_c01239{height:80.883223px;}
.h19_c01239{height:87.092549px;}
.h10_c01239{height:102.642861px;}
.h12_c01239{height:105.720527px;}
.h0_c01239{height:1515.450000px;}
.h1_c01239{height:1515.750000px;}
.w0_c01239{width:1094.685000px;}
.w1_c01239{width:1095.000000px;}
.x0_c01239{left:0.000000px;}
.x60_c01239{left:1.725000px;}
.x62_c01239{left:3.450000px;}
.x5d_c01239{left:11.235000px;}
.x5c_c01239{left:12.960000px;}
.x65_c01239{left:24.195000px;}
.x63_c01239{left:34.560000px;}
.x5f_c01239{left:37.155000px;}
.x5e_c01239{left:39.750000px;}
.x64_c01239{left:45.795000px;}
.x61_c01239{left:50.115000px;}
.x67_c01239{left:53.565000px;}
.x66_c01239{left:57.030000px;}
.x5_c01239{left:224.640000px;}
.x6_c01239{left:240.195000px;}
.x21_c01239{left:244.515000px;}
.x44_c01239{left:247.110000px;}
.x2c_c01239{left:257.475000px;}
.x45_c01239{left:261.795000px;}
.x52_c01239{left:273.885000px;}
.x46_c01239{left:275.610000px;}
.x2d_c01239{left:288.570000px;}
.x7_c01239{left:300.675000px;}
.x3c_c01239{left:304.125000px;}
.x53_c01239{left:317.085000px;}
.x1e_c01239{left:318.810000px;}
.x22_c01239{left:320.550000px;}
.x1f_c01239{left:325.725000px;}
.x2e_c01239{left:336.960000px;}
.x54_c01239{left:339.555000px;}
.x8_c01239{left:351.645000px;}
.x20_c01239{left:354.240000px;}
.x2f_c01239{left:366.330000px;}
.x55_c01239{left:368.925000px;}
.x9_c01239{left:376.710000px;}
.x30_c01239{left:382.755000px;}
.xa_c01239{left:388.800000px;}
.x31_c01239{left:405.210000px;}
.xb_c01239{left:411.270000px;}
.x58_c01239{left:416.445000px;}
.x3d_c01239{left:419.910000px;}
.x1_c01239{left:421.635000px;}
.x47_c01239{left:425.085000px;}
.xc_c01239{left:432.870000px;}
.x32_c01239{left:435.450000px;}
.x48_c01239{left:439.770000px;}
.x56_c01239{left:444.960000px;}
.x33_c01239{left:451.005000px;}
.xd_c01239{left:453.600000px;}
.x3e_c01239{left:463.965000px;}
.x23_c01239{left:465.690000px;}
.x49_c01239{left:468.285000px;}
.xe_c01239{left:473.475000px;}
.x34_c01239{left:479.520000px;}
.x4a_c01239{left:481.245000px;}
.x24_c01239{left:485.565000px;}
.x3f_c01239{left:487.290000px;}
.x35_c01239{left:489.885000px;}
.x4_c01239{left:494.205000px;}
.x25_c01239{left:497.670000px;}
.x40_c01239{left:499.395000px;}
.xf_c01239{left:504.570000px;}
.x26_c01239{left:531.360000px;}
.x10_c01239{left:536.550000px;}
.x27_c01239{left:566.790000px;}
.x11_c01239{left:572.835000px;}
.x57_c01239{left:574.560000px;}
.x28_c01239{left:583.200000px;}
.x12_c01239{left:594.435000px;}
.x41_c01239{left:598.755000px;}
.x36_c01239{left:610.845000px;}
.x13_c01239{left:619.485000px;}
.x29_c01239{left:625.530000px;}
.x4b_c01239{left:632.445000px;}
.x14_c01239{left:636.765000px;}
.x4c_c01239{left:640.230000px;}
.x15_c01239{left:656.640000px;}
.x4d_c01239{left:661.830000px;}
.x42_c01239{left:670.470000px;}
.x16_c01239{left:674.790000px;}
.x37_c01239{left:696.390000px;}
.x17_c01239{left:714.525000px;}
.x38_c01239{left:731.805000px;}
.x18_c01239{left:734.400000px;}
.x2a_c01239{left:736.125000px;}
.x19_c01239{left:747.360000px;}
.x39_c01239{left:768.960000px;}
.x43_c01239{left:773.280000px;}
.x4e_c01239{left:782.790000px;}
.x1a_c01239{left:784.515000px;}
.x2_c01239{left:800.070000px;}
.x4f_c01239{left:803.520000px;}
.x2b_c01239{left:810.435000px;}
.x3_c01239{left:812.160000px;}
.x50_c01239{left:828.570000px;}
.x1b_c01239{left:835.485000px;}
.x1c_c01239{left:849.315000px;}
.x3a_c01239{left:853.635000px;}
.x3b_c01239{left:883.875000px;}
.x1d_c01239{left:892.515000px;}
.x51_c01239{left:895.110000px;}
.x5a_c01239{left:956.445000px;}
.x5b_c01239{left:973.725000px;}
.x59_c01239{left:991.875000px;}
@media print{
.v0_c01239{vertical-align:0.000000pt;}
.ls0_c01239{letter-spacing:0.000000pt;}
.ws0_c01239{word-spacing:0.000000pt;}
.fsb_c01239{font-size:3.072000pt;}
.fs2_c01239{font-size:5.333333pt;}
.fs15_c01239{font-size:6.133333pt;}
.fs4_c01239{font-size:9.226667pt;}
.fs5_c01239{font-size:12.266667pt;}
.fsd_c01239{font-size:15.360000pt;}
.fs3_c01239{font-size:18.453333pt;}
.fs1_c01239{font-size:21.493333pt;}
.fs13_c01239{font-size:24.586667pt;}
.fs1a_c01239{font-size:27.626667pt;}
.fs0_c01239{font-size:30.720000pt;}
.fs12_c01239{font-size:33.813333pt;}
.fs14_c01239{font-size:36.853333pt;}
.fs1b_c01239{font-size:39.946667pt;}
.fs16_c01239{font-size:42.986667pt;}
.fs8_c01239{font-size:46.080000pt;}
.fs7_c01239{font-size:49.173333pt;}
.fsa_c01239{font-size:52.213333pt;}
.fs9_c01239{font-size:55.306667pt;}
.fs18_c01239{font-size:58.346667pt;}
.fsc_c01239{font-size:61.440000pt;}
.fs1c_c01239{font-size:64.533333pt;}
.fsf_c01239{font-size:70.666667pt;}
.fs19_c01239{font-size:73.706667pt;}
.fs11_c01239{font-size:76.800000pt;}
.fs6_c01239{font-size:79.893333pt;}
.fs17_c01239{font-size:86.026667pt;}
.fse_c01239{font-size:101.386667pt;}
.fs10_c01239{font-size:104.426667pt;}
.y0_c01239{bottom:0.000000pt;}
.y5b_c01239{bottom:818.693333pt;}
.y5c_c01239{bottom:819.453333pt;}
.y5a_c01239{bottom:821.760000pt;}
.y59_c01239{bottom:833.280000pt;}
.y58_c01239{bottom:848.640000pt;}
.y57_c01239{bottom:864.000000pt;}
.y56_c01239{bottom:866.306667pt;}
.y54_c01239{bottom:928.506667pt;}
.y55_c01239{bottom:930.053333pt;}
.y53_c01239{bottom:931.586667pt;}
.y50_c01239{bottom:940.800000pt;}
.y51_c01239{bottom:941.573333pt;}
.y52_c01239{bottom:942.333333pt;}
.y4e_c01239{bottom:956.933333pt;}
.y4f_c01239{bottom:957.693333pt;}
.y4d_c01239{bottom:966.906667pt;}
.y4c_c01239{bottom:976.893333pt;}
.y4b_c01239{bottom:992.253333pt;}
.y4a_c01239{bottom:1001.466667pt;}
.y49_c01239{bottom:1003.773333pt;}
.y46_c01239{bottom:1020.666667pt;}
.y48_c01239{bottom:1022.973333pt;}
.y47_c01239{bottom:1023.746667pt;}
.y45_c01239{bottom:1039.106667pt;}
.y44_c01239{bottom:1044.480000pt;}
.y43_c01239{bottom:1054.466667pt;}
.y42_c01239{bottom:1061.373333pt;}
.y40_c01239{bottom:1065.986667pt;}
.y41_c01239{bottom:1066.746667pt;}
.y3e_c01239{bottom:1117.440000pt;}
.y3f_c01239{bottom:1123.586667pt;}
.y3c_c01239{bottom:1132.026667pt;}
.y3b_c01239{bottom:1136.640000pt;}
.y36_c01239{bottom:1138.173333pt;}
.y39_c01239{bottom:1142.013333pt;}
.y38_c01239{bottom:1143.546667pt;}
.y37_c01239{bottom:1144.320000pt;}
.y3a_c01239{bottom:1145.853333pt;}
.y2f_c01239{bottom:1152.773333pt;}
.y2e_c01239{bottom:1153.533333pt;}
.y30_c01239{bottom:1155.840000pt;}
.y34_c01239{bottom:1156.613333pt;}
.y32_c01239{bottom:1157.373333pt;}
.y2d_c01239{bottom:1159.680000pt;}
.y31_c01239{bottom:1161.213333pt;}
.y29_c01239{bottom:1162.746667pt;}
.y2a_c01239{bottom:1163.520000pt;}
.y33_c01239{bottom:1164.293333pt;}
.y1d_c01239{bottom:1165.826667pt;}
.y2c_c01239{bottom:1166.586667pt;}
.y35_c01239{bottom:1167.360000pt;}
.y26_c01239{bottom:1168.133333pt;}
.y20_c01239{bottom:1168.893333pt;}
.y2b_c01239{bottom:1169.666667pt;}
.y21_c01239{bottom:1170.426667pt;}
.y1c_c01239{bottom:1171.973333pt;}
.y1e_c01239{bottom:1172.733333pt;}
.y24_c01239{bottom:1173.506667pt;}
.y28_c01239{bottom:1175.040000pt;}
.y22_c01239{bottom:1175.813333pt;}
.y1f_c01239{bottom:1176.573333pt;}
.y27_c01239{bottom:1177.346667pt;}
.y25_c01239{bottom:1178.106667pt;}
.y23_c01239{bottom:1179.653333pt;}
.y13_c01239{bottom:1183.493333pt;}
.y15_c01239{bottom:1184.253333pt;}
.y1b_c01239{bottom:1185.786667pt;}
.y14_c01239{bottom:1186.560000pt;}
.y1a_c01239{bottom:1188.093333pt;}
.y17_c01239{bottom:1189.626667pt;}
.y18_c01239{bottom:1191.173333pt;}
.y16_c01239{bottom:1191.933333pt;}
.y19_c01239{bottom:1195.013333pt;}
.y3d_c01239{bottom:1199.613333pt;}
.y10_c01239{bottom:1207.293333pt;}
.y11_c01239{bottom:1209.600000pt;}
.yf_c01239{bottom:1211.906667pt;}
.y12_c01239{bottom:1213.440000pt;}
.y7_c01239{bottom:1214.973333pt;}
.y6_c01239{bottom:1215.746667pt;}
.y9_c01239{bottom:1216.506667pt;}
.y8_c01239{bottom:1217.280000pt;}
.ya_c01239{bottom:1218.053333pt;}
.yb_c01239{bottom:1218.813333pt;}
.yc_c01239{bottom:1219.586667pt;}
.yd_c01239{bottom:1220.346667pt;}
.ye_c01239{bottom:1225.733333pt;}
.y5_c01239{bottom:1226.493333pt;}
.y4_c01239{bottom:1243.386667pt;}
.y2_c01239{bottom:1267.200000pt;}
.y3_c01239{bottom:1268.733333pt;}
.y1_c01239{bottom:1280.253333pt;}
.hd_c01239{height:2.764500pt;}
.h4_c01239{height:4.799479pt;}
.h17_c01239{height:5.519401pt;}
.h6_c01239{height:8.303099pt;}
.h7_c01239{height:11.038802pt;}
.hf_c01239{height:13.822500pt;}
.h5_c01239{height:16.606198pt;}
.h3_c01239{height:19.341901pt;}
.h15_c01239{height:22.125599pt;}
.h1c_c01239{height:24.861302pt;}
.h2_c01239{height:27.645000pt;}
.h14_c01239{height:30.428698pt;}
.h16_c01239{height:33.164401pt;}
.h1d_c01239{height:35.948099pt;}
.h18_c01239{height:38.683802pt;}
.ha_c01239{height:41.467500pt;}
.h9_c01239{height:44.251198pt;}
.hc_c01239{height:46.986901pt;}
.hb_c01239{height:49.770599pt;}
.h1a_c01239{height:52.506302pt;}
.he_c01239{height:55.290000pt;}
.h1e_c01239{height:58.073698pt;}
.h11_c01239{height:63.593099pt;}
.h1b_c01239{height:66.328802pt;}
.h13_c01239{height:69.112500pt;}
.h8_c01239{height:71.896198pt;}
.h19_c01239{height:77.415599pt;}
.h10_c01239{height:91.238099pt;}
.h12_c01239{height:93.973802pt;}
.h0_c01239{height:1347.066667pt;}
.h1_c01239{height:1347.333333pt;}
.w0_c01239{width:973.053333pt;}
.w1_c01239{width:973.333333pt;}
.x0_c01239{left:0.000000pt;}
.x60_c01239{left:1.533333pt;}
.x62_c01239{left:3.066667pt;}
.x5d_c01239{left:9.986667pt;}
.x5c_c01239{left:11.520000pt;}
.x65_c01239{left:21.506667pt;}
.x63_c01239{left:30.720000pt;}
.x5f_c01239{left:33.026667pt;}
.x5e_c01239{left:35.333333pt;}
.x64_c01239{left:40.706667pt;}
.x61_c01239{left:44.546667pt;}
.x67_c01239{left:47.613333pt;}
.x66_c01239{left:50.693333pt;}
.x5_c01239{left:199.680000pt;}
.x6_c01239{left:213.506667pt;}
.x21_c01239{left:217.346667pt;}
.x44_c01239{left:219.653333pt;}
.x2c_c01239{left:228.866667pt;}
.x45_c01239{left:232.706667pt;}
.x52_c01239{left:243.453333pt;}
.x46_c01239{left:244.986667pt;}
.x2d_c01239{left:256.506667pt;}
.x7_c01239{left:267.266667pt;}
.x3c_c01239{left:270.333333pt;}
.x53_c01239{left:281.853333pt;}
.x1e_c01239{left:283.386667pt;}
.x22_c01239{left:284.933333pt;}
.x1f_c01239{left:289.533333pt;}
.x2e_c01239{left:299.520000pt;}
.x54_c01239{left:301.826667pt;}
.x8_c01239{left:312.573333pt;}
.x20_c01239{left:314.880000pt;}
.x2f_c01239{left:325.626667pt;}
.x55_c01239{left:327.933333pt;}
.x9_c01239{left:334.853333pt;}
.x30_c01239{left:340.226667pt;}
.xa_c01239{left:345.600000pt;}
.x31_c01239{left:360.186667pt;}
.xb_c01239{left:365.573333pt;}
.x58_c01239{left:370.173333pt;}
.x3d_c01239{left:373.253333pt;}
.x1_c01239{left:374.786667pt;}
.x47_c01239{left:377.853333pt;}
.xc_c01239{left:384.773333pt;}
.x32_c01239{left:387.066667pt;}
.x48_c01239{left:390.906667pt;}
.x56_c01239{left:395.520000pt;}
.x33_c01239{left:400.893333pt;}
.xd_c01239{left:403.200000pt;}
.x3e_c01239{left:412.413333pt;}
.x23_c01239{left:413.946667pt;}
.x49_c01239{left:416.253333pt;}
.xe_c01239{left:420.866667pt;}
.x34_c01239{left:426.240000pt;}
.x4a_c01239{left:427.773333pt;}
.x24_c01239{left:431.613333pt;}
.x3f_c01239{left:433.146667pt;}
.x35_c01239{left:435.453333pt;}
.x4_c01239{left:439.293333pt;}
.x25_c01239{left:442.373333pt;}
.x40_c01239{left:443.906667pt;}
.xf_c01239{left:448.506667pt;}
.x26_c01239{left:472.320000pt;}
.x10_c01239{left:476.933333pt;}
.x27_c01239{left:503.813333pt;}
.x11_c01239{left:509.186667pt;}
.x57_c01239{left:510.720000pt;}
.x28_c01239{left:518.400000pt;}
.x12_c01239{left:528.386667pt;}
.x41_c01239{left:532.226667pt;}
.x36_c01239{left:542.973333pt;}
.x13_c01239{left:550.653333pt;}
.x29_c01239{left:556.026667pt;}
.x4b_c01239{left:562.173333pt;}
.x14_c01239{left:566.013333pt;}
.x4c_c01239{left:569.093333pt;}
.x15_c01239{left:583.680000pt;}
.x4d_c01239{left:588.293333pt;}
.x42_c01239{left:595.973333pt;}
.x16_c01239{left:599.813333pt;}
.x37_c01239{left:619.013333pt;}
.x17_c01239{left:635.133333pt;}
.x38_c01239{left:650.493333pt;}
.x18_c01239{left:652.800000pt;}
.x2a_c01239{left:654.333333pt;}
.x19_c01239{left:664.320000pt;}
.x39_c01239{left:683.520000pt;}
.x43_c01239{left:687.360000pt;}
.x4e_c01239{left:695.813333pt;}
.x1a_c01239{left:697.346667pt;}
.x2_c01239{left:711.173333pt;}
.x4f_c01239{left:714.240000pt;}
.x2b_c01239{left:720.386667pt;}
.x3_c01239{left:721.920000pt;}
.x50_c01239{left:736.506667pt;}
.x1b_c01239{left:742.653333pt;}
.x1c_c01239{left:754.946667pt;}
.x3a_c01239{left:758.786667pt;}
.x3b_c01239{left:785.666667pt;}
.x1d_c01239{left:793.346667pt;}
.x51_c01239{left:795.653333pt;}
.x5a_c01239{left:850.173333pt;}
.x5b_c01239{left:865.533333pt;}
.x59_c01239{left:881.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_819dfa83bace35d441840240.woff2')format("woff");}.ff1_c01240{font-family:ff1_c01240;line-height:1.109863;font-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_c01240{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me_c01240{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.m2_c01240{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c01240{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);}
.m8_c01240{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);}
.mb_c01240{transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);}
.m1_c01240{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.m4_c01240{transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);}
.m10_c01240{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);}
.mf_c01240{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);}
.m13_c01240{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);}
.ma_c01240{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3_c01240{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c01240{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9_c01240{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m5_c01240{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mc_c01240{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m12_c01240{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);}
.m7_c01240{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m6_c01240{transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.895000,0.000000,0.000000,0.250000,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;}
.fs0_c01240{font-size:3.456000px;}
.fsc_c01240{font-size:6.900000px;}
.fs5_c01240{font-size:13.800000px;}
.fs2_c01240{font-size:17.280000px;}
.fs4_c01240{font-size:24.180000px;}
.fsb_c01240{font-size:31.080000px;}
.fs6_c01240{font-size:44.940000px;}
.fs7_c01240{font-size:48.360000px;}
.fs1_c01240{font-size:51.840000px;}
.fs9_c01240{font-size:55.320000px;}
.fs3_c01240{font-size:58.740000px;}
.fsa_c01240{font-size:62.220000px;}
.fs8_c01240{font-size:69.120000px;}
.y0_c01240{bottom:0.000000px;}
.y15_c01240{bottom:796.605000px;}
.y16_c01240{bottom:805.245000px;}
.y14_c01240{bottom:813.885000px;}
.y13_c01240{bottom:831.165000px;}
.y12_c01240{bottom:848.445000px;}
.y11_c01240{bottom:905.475000px;}
.y10_c01240{bottom:924.480000px;}
.ye_c01240{bottom:942.630000px;}
.yf_c01240{bottom:944.355000px;}
.yc_c01240{bottom:956.445000px;}
.yd_c01240{bottom:962.490000px;}
.ya_c01240{bottom:978.045000px;}
.yb_c01240{bottom:978.915000px;}
.y9_c01240{bottom:990.150000px;}
.y8_c01240{bottom:995.325000px;}
.y6_c01240{bottom:1002.240000px;}
.y7_c01240{bottom:1004.835000px;}
.y5_c01240{bottom:1243.290000px;}
.y3_c01240{bottom:1258.845000px;}
.y4_c01240{bottom:1259.715000px;}
.y2_c01240{bottom:1267.485000px;}
.y1_c01240{bottom:1269.210000px;}
.h2_c01240{height:3.110063px;}
.he_c01240{height:6.209326px;}
.h7_c01240{height:12.418652px;}
.h4_c01240{height:15.550313px;}
.h6_c01240{height:21.759639px;}
.hd_c01240{height:27.968965px;}
.h8_c01240{height:40.441611px;}
.h9_c01240{height:43.519277px;}
.h3_c01240{height:46.650937px;}
.hb_c01240{height:49.782598px;}
.h5_c01240{height:52.860264px;}
.hc_c01240{height:55.991924px;}
.ha_c01240{height:62.201250px;}
.h1_c01240{height:1518.750000px;}
.h0_c01240{height:1518.915000px;}
.w0_c01240{width:1096.410000px;}
.w1_c01240{width:1096.500000px;}
.x0_c01240{left:0.000000px;}
.x1_c01240{left:1033.350000px;}
.x4_c01240{left:1035.075000px;}
.x2_c01240{left:1039.395000px;}
.x9_c01240{left:1041.120000px;}
.x6_c01240{left:1049.760000px;}
.x5_c01240{left:1066.170000px;}
.xb_c01240{left:1067.910000px;}
.x3_c01240{left:1069.635000px;}
.xa_c01240{left:1073.085000px;}
.x7_c01240{left:1076.550000px;}
.x8_c01240{left:1083.450000px;}
.xc_c01240{left:1086.045000px;}
@media print{
.v0_c01240{vertical-align:0.000000pt;}
.ls0_c01240{letter-spacing:0.000000pt;}
.ws0_c01240{word-spacing:0.000000pt;}
.fs0_c01240{font-size:3.072000pt;}
.fsc_c01240{font-size:6.133333pt;}
.fs5_c01240{font-size:12.266667pt;}
.fs2_c01240{font-size:15.360000pt;}
.fs4_c01240{font-size:21.493333pt;}
.fsb_c01240{font-size:27.626667pt;}
.fs6_c01240{font-size:39.946667pt;}
.fs7_c01240{font-size:42.986667pt;}
.fs1_c01240{font-size:46.080000pt;}
.fs9_c01240{font-size:49.173333pt;}
.fs3_c01240{font-size:52.213333pt;}
.fsa_c01240{font-size:55.306667pt;}
.fs8_c01240{font-size:61.440000pt;}
.y0_c01240{bottom:0.000000pt;}
.y15_c01240{bottom:708.093333pt;}
.y16_c01240{bottom:715.773333pt;}
.y14_c01240{bottom:723.453333pt;}
.y13_c01240{bottom:738.813333pt;}
.y12_c01240{bottom:754.173333pt;}
.y11_c01240{bottom:804.866667pt;}
.y10_c01240{bottom:821.760000pt;}
.ye_c01240{bottom:837.893333pt;}
.yf_c01240{bottom:839.426667pt;}
.yc_c01240{bottom:850.173333pt;}
.yd_c01240{bottom:855.546667pt;}
.ya_c01240{bottom:869.373333pt;}
.yb_c01240{bottom:870.146667pt;}
.y9_c01240{bottom:880.133333pt;}
.y8_c01240{bottom:884.733333pt;}
.y6_c01240{bottom:890.880000pt;}
.y7_c01240{bottom:893.186667pt;}
.y5_c01240{bottom:1105.146667pt;}
.y3_c01240{bottom:1118.973333pt;}
.y4_c01240{bottom:1119.746667pt;}
.y2_c01240{bottom:1126.653333pt;}
.y1_c01240{bottom:1128.186667pt;}
.h2_c01240{height:2.764500pt;}
.he_c01240{height:5.519401pt;}
.h7_c01240{height:11.038802pt;}
.h4_c01240{height:13.822500pt;}
.h6_c01240{height:19.341901pt;}
.hd_c01240{height:24.861302pt;}
.h8_c01240{height:35.948099pt;}
.h9_c01240{height:38.683802pt;}
.h3_c01240{height:41.467500pt;}
.hb_c01240{height:44.251198pt;}
.h5_c01240{height:46.986901pt;}
.hc_c01240{height:49.770599pt;}
.ha_c01240{height:55.290000pt;}
.h1_c01240{height:1350.000000pt;}
.h0_c01240{height:1350.146667pt;}
.w0_c01240{width:974.586667pt;}
.w1_c01240{width:974.666667pt;}
.x0_c01240{left:0.000000pt;}
.x1_c01240{left:918.533333pt;}
.x4_c01240{left:920.066667pt;}
.x2_c01240{left:923.906667pt;}
.x9_c01240{left:925.440000pt;}
.x6_c01240{left:933.120000pt;}
.x5_c01240{left:947.706667pt;}
.xb_c01240{left:949.253333pt;}
.x3_c01240{left:950.786667pt;}
.xa_c01240{left:953.853333pt;}
.x7_c01240{left:956.933333pt;}
.x8_c01240{left:963.066667pt;}
.xc_c01240{left:965.373333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01241;src:url('chunks/assets/font_f0b75fee45a57028e40c6cd1.woff2')format("woff");}.ff1_c01241{font-family:ff1_c01241;line-height:1.109863;font-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_c01241{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c01241{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m4_c01241{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m7_c01241{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);}
.ma_c01241{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);}
.m2_c01241{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);}
.m1_c01241{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);}
.m0_c01241{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m5_c01241{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c01241{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3_c01241{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.v1_c01241{vertical-align:-3.480000px;}
.v0_c01241{vertical-align:0.000000px;}
.ls1_c01241{letter-spacing:0.000000px;}
.ls0_c01241{letter-spacing:91.255440px;}
.sc__c01241{text-shadow:none;}
.sc0_c01241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01241{-webkit-text-stroke:0px transparent;}
.sc0_c01241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01241{word-spacing:0.000000px;}
.fc0_c01241{color:transparent;}
.fs7_c01241{font-size:10.380000px;}
.fs5_c01241{font-size:17.280000px;}
.fs3_c01241{font-size:24.180000px;}
.fs8_c01241{font-size:34.560000px;}
.fs6_c01241{font-size:38.040000px;}
.fs2_c01241{font-size:51.840000px;}
.fs1_c01241{font-size:65.640000px;}
.fs4_c01241{font-size:69.120000px;}
.fs0_c01241{font-size:72.600000px;}
.y0_c01241{bottom:0.000000px;}
.yb_c01241{bottom:738.720000px;}
.ya_c01241{bottom:748.230000px;}
.y9_c01241{bottom:834.630000px;}
.y8_c01241{bottom:840.675000px;}
.y6_c01241{bottom:851.040000px;}
.y7_c01241{bottom:851.910000px;}
.y5_c01241{bottom:856.230000px;}
.y4_c01241{bottom:876.090000px;}
.y3_c01241{bottom:889.050000px;}
.y2_c01241{bottom:910.650000px;}
.y1_c01241{bottom:1054.080000px;}
.h7_c01241{height:15.550313px;}
.h5_c01241{height:21.759639px;}
.h9_c01241{height:31.100625px;}
.h8_c01241{height:34.232285px;}
.h4_c01241{height:46.650937px;}
.h3_c01241{height:59.069590px;}
.h6_c01241{height:62.201250px;}
.h2_c01241{height:65.332910px;}
.h0_c01241{height:1515.450000px;}
.h1_c01241{height:1515.750000px;}
.w0_c01241{width:1094.685000px;}
.w1_c01241{width:1095.000000px;}
.x0_c01241{left:0.000000px;}
.x3_c01241{left:6.045000px;}
.x2_c01241{left:25.920000px;}
.x1_c01241{left:38.880000px;}
.x5_c01241{left:46.650000px;}
.x4_c01241{left:73.440000px;}
@media print{
.v1_c01241{vertical-align:-3.093333pt;}
.v0_c01241{vertical-align:0.000000pt;}
.ls1_c01241{letter-spacing:0.000000pt;}
.ls0_c01241{letter-spacing:81.115947pt;}
.ws0_c01241{word-spacing:0.000000pt;}
.fs7_c01241{font-size:9.226667pt;}
.fs5_c01241{font-size:15.360000pt;}
.fs3_c01241{font-size:21.493333pt;}
.fs8_c01241{font-size:30.720000pt;}
.fs6_c01241{font-size:33.813333pt;}
.fs2_c01241{font-size:46.080000pt;}
.fs1_c01241{font-size:58.346667pt;}
.fs4_c01241{font-size:61.440000pt;}
.fs0_c01241{font-size:64.533333pt;}
.y0_c01241{bottom:0.000000pt;}
.yb_c01241{bottom:656.640000pt;}
.ya_c01241{bottom:665.093333pt;}
.y9_c01241{bottom:741.893333pt;}
.y8_c01241{bottom:747.266667pt;}
.y6_c01241{bottom:756.480000pt;}
.y7_c01241{bottom:757.253333pt;}
.y5_c01241{bottom:761.093333pt;}
.y4_c01241{bottom:778.746667pt;}
.y3_c01241{bottom:790.266667pt;}
.y2_c01241{bottom:809.466667pt;}
.y1_c01241{bottom:936.960000pt;}
.h7_c01241{height:13.822500pt;}
.h5_c01241{height:19.341901pt;}
.h9_c01241{height:27.645000pt;}
.h8_c01241{height:30.428698pt;}
.h4_c01241{height:41.467500pt;}
.h3_c01241{height:52.506302pt;}
.h6_c01241{height:55.290000pt;}
.h2_c01241{height:58.073698pt;}
.h0_c01241{height:1347.066667pt;}
.h1_c01241{height:1347.333333pt;}
.w0_c01241{width:973.053333pt;}
.w1_c01241{width:973.333333pt;}
.x0_c01241{left:0.000000pt;}
.x3_c01241{left:5.373333pt;}
.x2_c01241{left:23.040000pt;}
.x1_c01241{left:34.560000pt;}
.x5_c01241{left:41.466667pt;}
.x4_c01241{left:65.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_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_0ed1dc66d2ea9a98809d59f4.woff2')format("woff");}.ff1_c01242{font-family:ff1_c01242;line-height:1.109863;font-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_c01242{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.ma_c01242{transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);}
.m7_c01242{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m8_c01242{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m9_c01242{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);}
.m0_c01242{transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);}
.m4_c01242{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);}
.m1_c01242{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);}
.m3_c01242{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5_c01242{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);}
.mc_c01242{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m6_c01242{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m2_c01242{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,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;}
.fs5_c01242{font-size:17.280000px;}
.fsa_c01242{font-size:24.180000px;}
.fs2_c01242{font-size:31.080000px;}
.fs6_c01242{font-size:41.460000px;}
.fs3_c01242{font-size:48.360000px;}
.fs4_c01242{font-size:51.840000px;}
.fs1_c01242{font-size:55.320000px;}
.fs7_c01242{font-size:58.740000px;}
.fs0_c01242{font-size:65.640000px;}
.fs8_c01242{font-size:86.400000px;}
.fs9_c01242{font-size:131.340000px;}
.y0_c01242{bottom:0.000000px;}
.yd_c01242{bottom:153.795000px;}
.yc_c01242{bottom:809.565000px;}
.yb_c01242{bottom:838.080000px;}
.ya_c01242{bottom:855.360000px;}
.y9_c01242{bottom:875.235000px;}
.y8_c01242{bottom:890.790000px;}
.y7_c01242{bottom:895.110000px;}
.y5_c01242{bottom:896.835000px;}
.y6_c01242{bottom:902.010000px;}
.y4_c01242{bottom:912.390000px;}
.y3_c01242{bottom:930.525000px;}
.y2_c01242{bottom:946.080000px;}
.y1_c01242{bottom:965.955000px;}
.h7_c01242{height:15.550313px;}
.hc_c01242{height:21.759639px;}
.h4_c01242{height:27.968965px;}
.h8_c01242{height:37.309951px;}
.h5_c01242{height:43.519277px;}
.h6_c01242{height:46.650937px;}
.h3_c01242{height:49.782598px;}
.h9_c01242{height:52.860264px;}
.h2_c01242{height:59.069590px;}
.ha_c01242{height:77.751563px;}
.hb_c01242{height:118.193174px;}
.h1_c01242{height:1518.750000px;}
.h0_c01242{height:1518.915000px;}
.w1_c01242{width:1104.000000px;}
.w0_c01242{width:1104.195000px;}
.x0_c01242{left:0.000000px;}
.x7_c01242{left:1060.125000px;}
.x3_c01242{left:1063.590000px;}
.x2_c01242{left:1069.635000px;}
.x1_c01242{left:1077.405000px;}
.x4_c01242{left:1080.000000px;}
.x6_c01242{left:1098.150000px;}
.x5_c01242{left:1100.730000px;}
@media print{
.v0_c01242{vertical-align:0.000000pt;}
.ls0_c01242{letter-spacing:0.000000pt;}
.ws0_c01242{word-spacing:0.000000pt;}
.fs5_c01242{font-size:15.360000pt;}
.fsa_c01242{font-size:21.493333pt;}
.fs2_c01242{font-size:27.626667pt;}
.fs6_c01242{font-size:36.853333pt;}
.fs3_c01242{font-size:42.986667pt;}
.fs4_c01242{font-size:46.080000pt;}
.fs1_c01242{font-size:49.173333pt;}
.fs7_c01242{font-size:52.213333pt;}
.fs0_c01242{font-size:58.346667pt;}
.fs8_c01242{font-size:76.800000pt;}
.fs9_c01242{font-size:116.746667pt;}
.y0_c01242{bottom:0.000000pt;}
.yd_c01242{bottom:136.706667pt;}
.yc_c01242{bottom:719.613333pt;}
.yb_c01242{bottom:744.960000pt;}
.ya_c01242{bottom:760.320000pt;}
.y9_c01242{bottom:777.986667pt;}
.y8_c01242{bottom:791.813333pt;}
.y7_c01242{bottom:795.653333pt;}
.y5_c01242{bottom:797.186667pt;}
.y6_c01242{bottom:801.786667pt;}
.y4_c01242{bottom:811.013333pt;}
.y3_c01242{bottom:827.133333pt;}
.y2_c01242{bottom:840.960000pt;}
.y1_c01242{bottom:858.626667pt;}
.h7_c01242{height:13.822500pt;}
.hc_c01242{height:19.341901pt;}
.h4_c01242{height:24.861302pt;}
.h8_c01242{height:33.164401pt;}
.h5_c01242{height:38.683802pt;}
.h6_c01242{height:41.467500pt;}
.h3_c01242{height:44.251198pt;}
.h9_c01242{height:46.986901pt;}
.h2_c01242{height:52.506302pt;}
.ha_c01242{height:69.112500pt;}
.hb_c01242{height:105.060599pt;}
.h1_c01242{height:1350.000000pt;}
.h0_c01242{height:1350.146667pt;}
.w1_c01242{width:981.333333pt;}
.w0_c01242{width:981.506667pt;}
.x0_c01242{left:0.000000pt;}
.x7_c01242{left:942.333333pt;}
.x3_c01242{left:945.413333pt;}
.x2_c01242{left:950.786667pt;}
.x1_c01242{left:957.693333pt;}
.x4_c01242{left:960.000000pt;}
.x6_c01242{left:976.133333pt;}
.x5_c01242{left:978.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3655e1f800b80fccadb72fd2.woff2')format("woff");}.ff1_c01243{font-family:ff1_c01243;line-height:1.109863;font-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_c01243{transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);}
.mf_c01243{transform:matrix(0.091675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091675,0.000000,0.000000,0.250000,0,0);}
.m16_c01243{transform:matrix(0.094875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094875,0.000000,0.000000,0.250000,0,0);}
.mc_c01243{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m12_c01243{transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);}
.m14_c01243{transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);}
.m4_c01243{transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);}
.m11_c01243{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c01243{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_c01243{transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);}
.m13_c01243{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m10_c01243{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);}
.m5_c01243{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);}
.me_c01243{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.m8_c01243{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m9_c01243{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7_c01243{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);}
.m3_c01243{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);}
.mb_c01243{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c01243{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);}
.ma_c01243{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m0_c01243{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1_c01243{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,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;}
.fs11_c01243{font-size:3.456000px;}
.fsd_c01243{font-size:6.900000px;}
.fs6_c01243{font-size:13.800000px;}
.fs0_c01243{font-size:17.280000px;}
.fsf_c01243{font-size:20.760000px;}
.fs7_c01243{font-size:24.180000px;}
.fs5_c01243{font-size:27.660000px;}
.fs1_c01243{font-size:31.080000px;}
.fsc_c01243{font-size:34.560000px;}
.fs3_c01243{font-size:38.040000px;}
.fsa_c01243{font-size:41.460000px;}
.fs9_c01243{font-size:48.360000px;}
.fs8_c01243{font-size:51.840000px;}
.fs10_c01243{font-size:55.320000px;}
.fs13_c01243{font-size:58.740000px;}
.fs2_c01243{font-size:69.120000px;}
.fs12_c01243{font-size:96.780000px;}
.fsb_c01243{font-size:100.200000px;}
.fse_c01243{font-size:103.680000px;}
.fs14_c01243{font-size:107.160000px;}
.fs4_c01243{font-size:134.760000px;}
.y0_c01243{bottom:0.000000px;}
.y18_c01243{bottom:283.395000px;}
.y17_c01243{bottom:311.040000px;}
.y16_c01243{bottom:336.090000px;}
.y15_c01243{bottom:361.155000px;}
.y13_c01243{bottom:370.650000px;}
.y14_c01243{bottom:376.710000px;}
.y10_c01243{bottom:385.350000px;}
.y12_c01243{bottom:386.205000px;}
.y11_c01243{bottom:387.930000px;}
.yf_c01243{bottom:412.125000px;}
.ye_c01243{bottom:420.765000px;}
.yd_c01243{bottom:1038.525000px;}
.yc_c01243{bottom:1041.120000px;}
.yb_c01243{bottom:1052.355000px;}
.ya_c01243{bottom:1065.315000px;}
.y9_c01243{bottom:1087.770000px;}
.y8_c01243{bottom:1101.600000px;}
.y6_c01243{bottom:1102.470000px;}
.y7_c01243{bottom:1105.050000px;}
.y5_c01243{bottom:1117.155000px;}
.y4_c01243{bottom:1166.400000px;}
.y3_c01243{bottom:1317.600000px;}
.y2_c01243{bottom:1344.390000px;}
.y1_c01243{bottom:1353.885000px;}
.h13_c01243{height:3.110063px;}
.hf_c01243{height:6.209326px;}
.h8_c01243{height:12.418652px;}
.h2_c01243{height:15.550313px;}
.h11_c01243{height:18.681973px;}
.h9_c01243{height:21.759639px;}
.h7_c01243{height:24.891299px;}
.h3_c01243{height:27.968965px;}
.he_c01243{height:31.100625px;}
.h5_c01243{height:34.232285px;}
.hc_c01243{height:37.309951px;}
.hb_c01243{height:43.519277px;}
.ha_c01243{height:46.650937px;}
.h12_c01243{height:49.782598px;}
.h15_c01243{height:52.860264px;}
.h4_c01243{height:62.201250px;}
.h14_c01243{height:87.092549px;}
.hd_c01243{height:90.170215px;}
.h10_c01243{height:93.301875px;}
.h16_c01243{height:96.433535px;}
.h6_c01243{height:121.270840px;}
.h0_c01243{height:1515.450000px;}
.h1_c01243{height:1515.750000px;}
.w0_c01243{width:1094.685000px;}
.w1_c01243{width:1095.000000px;}
.x0_c01243{left:0.000000px;}
.x4_c01243{left:1.725000px;}
.x1_c01243{left:6.915000px;}
.x7_c01243{left:14.685000px;}
.x2_c01243{left:26.790000px;}
.x6_c01243{left:36.285000px;}
.x9_c01243{left:51.840000px;}
.x8_c01243{left:74.310000px;}
.x3_c01243{left:178.845000px;}
.x5_c01243{left:192.675000px;}
@media print{
.v0_c01243{vertical-align:0.000000pt;}
.ls0_c01243{letter-spacing:0.000000pt;}
.ws0_c01243{word-spacing:0.000000pt;}
.fs11_c01243{font-size:3.072000pt;}
.fsd_c01243{font-size:6.133333pt;}
.fs6_c01243{font-size:12.266667pt;}
.fs0_c01243{font-size:15.360000pt;}
.fsf_c01243{font-size:18.453333pt;}
.fs7_c01243{font-size:21.493333pt;}
.fs5_c01243{font-size:24.586667pt;}
.fs1_c01243{font-size:27.626667pt;}
.fsc_c01243{font-size:30.720000pt;}
.fs3_c01243{font-size:33.813333pt;}
.fsa_c01243{font-size:36.853333pt;}
.fs9_c01243{font-size:42.986667pt;}
.fs8_c01243{font-size:46.080000pt;}
.fs10_c01243{font-size:49.173333pt;}
.fs13_c01243{font-size:52.213333pt;}
.fs2_c01243{font-size:61.440000pt;}
.fs12_c01243{font-size:86.026667pt;}
.fsb_c01243{font-size:89.066667pt;}
.fse_c01243{font-size:92.160000pt;}
.fs14_c01243{font-size:95.253333pt;}
.fs4_c01243{font-size:119.786667pt;}
.y0_c01243{bottom:0.000000pt;}
.y18_c01243{bottom:251.906667pt;}
.y17_c01243{bottom:276.480000pt;}
.y16_c01243{bottom:298.746667pt;}
.y15_c01243{bottom:321.026667pt;}
.y13_c01243{bottom:329.466667pt;}
.y14_c01243{bottom:334.853333pt;}
.y10_c01243{bottom:342.533333pt;}
.y12_c01243{bottom:343.293333pt;}
.y11_c01243{bottom:344.826667pt;}
.yf_c01243{bottom:366.333333pt;}
.ye_c01243{bottom:374.013333pt;}
.yd_c01243{bottom:923.133333pt;}
.yc_c01243{bottom:925.440000pt;}
.yb_c01243{bottom:935.426667pt;}
.ya_c01243{bottom:946.946667pt;}
.y9_c01243{bottom:966.906667pt;}
.y8_c01243{bottom:979.200000pt;}
.y6_c01243{bottom:979.973333pt;}
.y7_c01243{bottom:982.266667pt;}
.y5_c01243{bottom:993.026667pt;}
.y4_c01243{bottom:1036.800000pt;}
.y3_c01243{bottom:1171.200000pt;}
.y2_c01243{bottom:1195.013333pt;}
.y1_c01243{bottom:1203.453333pt;}
.h13_c01243{height:2.764500pt;}
.hf_c01243{height:5.519401pt;}
.h8_c01243{height:11.038802pt;}
.h2_c01243{height:13.822500pt;}
.h11_c01243{height:16.606198pt;}
.h9_c01243{height:19.341901pt;}
.h7_c01243{height:22.125599pt;}
.h3_c01243{height:24.861302pt;}
.he_c01243{height:27.645000pt;}
.h5_c01243{height:30.428698pt;}
.hc_c01243{height:33.164401pt;}
.hb_c01243{height:38.683802pt;}
.ha_c01243{height:41.467500pt;}
.h12_c01243{height:44.251198pt;}
.h15_c01243{height:46.986901pt;}
.h4_c01243{height:55.290000pt;}
.h14_c01243{height:77.415599pt;}
.hd_c01243{height:80.151302pt;}
.h10_c01243{height:82.935000pt;}
.h16_c01243{height:85.718698pt;}
.h6_c01243{height:107.796302pt;}
.h0_c01243{height:1347.066667pt;}
.h1_c01243{height:1347.333333pt;}
.w0_c01243{width:973.053333pt;}
.w1_c01243{width:973.333333pt;}
.x0_c01243{left:0.000000pt;}
.x4_c01243{left:1.533333pt;}
.x1_c01243{left:6.146667pt;}
.x7_c01243{left:13.053333pt;}
.x2_c01243{left:23.813333pt;}
.x6_c01243{left:32.253333pt;}
.x9_c01243{left:46.080000pt;}
.x8_c01243{left:66.053333pt;}
.x3_c01243{left:158.973333pt;}
.x5_c01243{left:171.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f107aa658b65ae63efedb20a.woff2')format("woff");}.ff1_c01244{font-family:ff1_c01244;line-height:1.109863;font-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_c01244{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);}
.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;}
.fs0_c01244{font-size:600.000000px;}
.y0_c01244{bottom:0.000000px;}
.y1_c01244{bottom:15.000000px;}
.h2_c01244{height:539.941406px;}
.h1_c01244{height:1518.750000px;}
.h0_c01244{height:1518.915000px;}
.w1_c01244{width:1104.000000px;}
.w0_c01244{width:1104.195000px;}
.x0_c01244{left:0.000000px;}
.x1_c01244{left:15.000000px;}
@media print{
.v0_c01244{vertical-align:0.000000pt;}
.ls0_c01244{letter-spacing:0.000000pt;}
.ws0_c01244{word-spacing:0.000000pt;}
.fs0_c01244{font-size:533.333333pt;}
.y0_c01244{bottom:0.000000pt;}
.y1_c01244{bottom:13.333333pt;}
.h2_c01244{height:479.947917pt;}
.h1_c01244{height:1350.000000pt;}
.h0_c01244{height:1350.146667pt;}
.w1_c01244{width:981.333333pt;}
.w0_c01244{width:981.506667pt;}
.x0_c01244{left:0.000000pt;}
.x1_c01244{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_80ad00f60bb06ff56187e8c7.woff2')format("woff");}.ff1_c01245{font-family:ff1_c01245;line-height:1.109863;font-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_c01245{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c01245{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.m3_c01245{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);}
.m5_c01245{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c01245{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m0_c01245{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,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;}
.fs4_c01245{font-size:3.456000px;}
.fs6_c01245{font-size:6.000000px;}
.fs0_c01245{font-size:17.280000px;}
.fs3_c01245{font-size:27.660000px;}
.fs2_c01245{font-size:48.360000px;}
.fs1_c01245{font-size:51.840000px;}
.fs5_c01245{font-size:55.320000px;}
.y0_c01245{bottom:0.000000px;}
.y7_c01245{bottom:774.150000px;}
.y6_c01245{bottom:1261.440000px;}
.y4_c01245{bottom:1278.720000px;}
.y5_c01245{bottom:1280.445000px;}
.y3_c01245{bottom:1283.910000px;}
.y2_c01245{bottom:1296.870000px;}
.y1_c01245{bottom:1309.830000px;}
.h6_c01245{height:3.110063px;}
.h8_c01245{height:5.399414px;}
.h2_c01245{height:15.550313px;}
.h5_c01245{height:24.891299px;}
.h4_c01245{height:43.519277px;}
.h3_c01245{height:46.650937px;}
.h7_c01245{height:49.782598px;}
.h0_c01245{height:1515.450000px;}
.h1_c01245{height:1515.750000px;}
.w0_c01245{width:1094.685000px;}
.w1_c01245{width:1095.000000px;}
.x0_c01245{left:0.000000px;}
.x4_c01245{left:1.725000px;}
.x5_c01245{left:16.410000px;}
.x1_c01245{left:19.875000px;}
.x2_c01245{left:22.470000px;}
.x3_c01245{left:38.880000px;}
@media print{
.v0_c01245{vertical-align:0.000000pt;}
.ls0_c01245{letter-spacing:0.000000pt;}
.ws0_c01245{word-spacing:0.000000pt;}
.fs4_c01245{font-size:3.072000pt;}
.fs6_c01245{font-size:5.333333pt;}
.fs0_c01245{font-size:15.360000pt;}
.fs3_c01245{font-size:24.586667pt;}
.fs2_c01245{font-size:42.986667pt;}
.fs1_c01245{font-size:46.080000pt;}
.fs5_c01245{font-size:49.173333pt;}
.y0_c01245{bottom:0.000000pt;}
.y7_c01245{bottom:688.133333pt;}
.y6_c01245{bottom:1121.280000pt;}
.y4_c01245{bottom:1136.640000pt;}
.y5_c01245{bottom:1138.173333pt;}
.y3_c01245{bottom:1141.253333pt;}
.y2_c01245{bottom:1152.773333pt;}
.y1_c01245{bottom:1164.293333pt;}
.h6_c01245{height:2.764500pt;}
.h8_c01245{height:4.799479pt;}
.h2_c01245{height:13.822500pt;}
.h5_c01245{height:22.125599pt;}
.h4_c01245{height:38.683802pt;}
.h3_c01245{height:41.467500pt;}
.h7_c01245{height:44.251198pt;}
.h0_c01245{height:1347.066667pt;}
.h1_c01245{height:1347.333333pt;}
.w0_c01245{width:973.053333pt;}
.w1_c01245{width:973.333333pt;}
.x0_c01245{left:0.000000pt;}
.x4_c01245{left:1.533333pt;}
.x5_c01245{left:14.586667pt;}
.x1_c01245{left:17.666667pt;}
.x2_c01245{left:19.973333pt;}
.x3_c01245{left:34.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_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_f3dbba8444cce80cf2a88adf.woff2')format("woff");}.ff1_c01246{font-family:ff1_c01246;line-height:1.109863;font-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_c01246{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m0_c01246{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c01246{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,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:27.660000px;}
.fs1_c01246{font-size:38.040000px;}
.fs0_c01246{font-size:65.640000px;}
.y0_c01246{bottom:0.000000px;}
.y1_c01246{bottom:1137.030000px;}
.y2_c01246{bottom:1137.885000px;}
.y3_c01246{bottom:1146.525000px;}
.h4_c01246{height:24.891299px;}
.h3_c01246{height:34.232285px;}
.h2_c01246{height:59.069590px;}
.h1_c01246{height:1518.750000px;}
.h0_c01246{height:1518.915000px;}
.w1_c01246{width:1104.000000px;}
.w0_c01246{width:1104.195000px;}
.x0_c01246{left:0.000000px;}
.x1_c01246{left:1067.040000px;}
.x2_c01246{left:1089.510000px;}
.x3_c01246{left:1099.875000px;}
@media print{
.v0_c01246{vertical-align:0.000000pt;}
.ls0_c01246{letter-spacing:0.000000pt;}
.ws0_c01246{word-spacing:0.000000pt;}
.fs2_c01246{font-size:24.586667pt;}
.fs1_c01246{font-size:33.813333pt;}
.fs0_c01246{font-size:58.346667pt;}
.y0_c01246{bottom:0.000000pt;}
.y1_c01246{bottom:1010.693333pt;}
.y2_c01246{bottom:1011.453333pt;}
.y3_c01246{bottom:1019.133333pt;}
.h4_c01246{height:22.125599pt;}
.h3_c01246{height:30.428698pt;}
.h2_c01246{height:52.506302pt;}
.h1_c01246{height:1350.000000pt;}
.h0_c01246{height:1350.146667pt;}
.w1_c01246{width:981.333333pt;}
.w0_c01246{width:981.506667pt;}
.x0_c01246{left:0.000000pt;}
.x1_c01246{left:948.480000pt;}
.x2_c01246{left:968.453333pt;}
.x3_c01246{left:977.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0d71266bdb3b190c253a7519.woff2')format("woff");}.ff1_c01247{font-family:ff1_c01247;line-height:1.109863;font-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_c01247{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,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:65.640000px;}
.y0_c01247{bottom:0.000000px;}
.y1_c01247{bottom:1315.875000px;}
.h2_c01247{height:59.069590px;}
.h0_c01247{height:1515.450000px;}
.h1_c01247{height:1515.750000px;}
.w0_c01247{width:1094.685000px;}
.w1_c01247{width:1095.000000px;}
.x0_c01247{left:0.000000px;}
.x1_c01247{left:2.595000px;}
@media print{
.v0_c01247{vertical-align:0.000000pt;}
.ls0_c01247{letter-spacing:0.000000pt;}
.ws0_c01247{word-spacing:0.000000pt;}
.fs0_c01247{font-size:58.346667pt;}
.y0_c01247{bottom:0.000000pt;}
.y1_c01247{bottom:1169.666667pt;}
.h2_c01247{height:52.506302pt;}
.h0_c01247{height:1347.066667pt;}
.h1_c01247{height:1347.333333pt;}
.w0_c01247{width:973.053333pt;}
.w1_c01247{width:973.333333pt;}
.x0_c01247{left:0.000000pt;}
.x1_c01247{left:2.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5b89257633a54d8ea9d3cba0.woff2')format("woff");}.ff1_c01248{font-family:ff1_c01248;line-height:1.109863;font-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_c01248{transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);}
.m21_c01248{transform:matrix(0.126475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126475,0.000000,0.000000,0.250000,0,0);}
.m19_c01248{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m1d_c01248{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me_c01248{transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);}
.ma_c01248{transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);}
.m3b_c01248{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m38_c01248{transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);}
.m34_c01248{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m35_c01248{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);}
.m1a_c01248{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m12_c01248{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);}
.m2f_c01248{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m2b_c01248{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);}
.m9_c01248{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);}
.m26_c01248{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);}
.m2e_c01248{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.m27_c01248{transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);}
.m6_c01248{transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);}
.m36_c01248{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m30_c01248{transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);}
.m28_c01248{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);}
.m1c_c01248{transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);}
.m18_c01248{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);}
.m2d_c01248{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);}
.m4_c01248{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8_c01248{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);}
.m2c_c01248{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m31_c01248{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c01248{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);}
.m3_c01248{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m17_c01248{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c01248{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);}
.m0_c01248{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01248{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m32_c01248{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);}
.m23_c01248{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01248{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m39_c01248{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);}
.md_c01248{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c01248{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c01248{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01248{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m24_c01248{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c01248{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);}
.m14_c01248{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c01248{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc_c01248{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m22_c01248{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);}
.m15_c01248{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01248{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01248{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);}
.m7_c01248{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m25_c01248{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);}
.m33_c01248{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m29_c01248{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m2_c01248{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m11_c01248{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01248{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m1_c01248{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);}
.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;}
.fc0_c01248{color:transparent;}
.fsf_c01248{font-size:3.456000px;}
.fs1_c01248{font-size:10.380000px;}
.fs0_c01248{font-size:13.800000px;}
.fs2_c01248{font-size:17.280000px;}
.fs6_c01248{font-size:20.760000px;}
.fs3_c01248{font-size:24.180000px;}
.fs11_c01248{font-size:31.080000px;}
.fs5_c01248{font-size:34.560000px;}
.fs8_c01248{font-size:38.040000px;}
.fs7_c01248{font-size:41.460000px;}
.fs13_c01248{font-size:44.940000px;}
.fs16_c01248{font-size:48.360000px;}
.fs4_c01248{font-size:51.840000px;}
.fs9_c01248{font-size:55.320000px;}
.fsd_c01248{font-size:58.740000px;}
.fs12_c01248{font-size:62.220000px;}
.fs15_c01248{font-size:69.120000px;}
.fsb_c01248{font-size:72.600000px;}
.fs10_c01248{font-size:76.020000px;}
.fse_c01248{font-size:79.500000px;}
.fsc_c01248{font-size:82.920000px;}
.fs14_c01248{font-size:86.400000px;}
.fs17_c01248{font-size:93.300000px;}
.fsa_c01248{font-size:148.620000px;}
.y0_c01248{bottom:0.000000px;}
.y34_c01248{bottom:201.315000px;}
.y35_c01248{bottom:203.910000px;}
.y38_c01248{bottom:206.490000px;}
.y36_c01248{bottom:208.230000px;}
.y37_c01248{bottom:209.085000px;}
.y30_c01248{bottom:223.770000px;}
.y32_c01248{bottom:224.640000px;}
.y33_c01248{bottom:225.510000px;}
.y31_c01248{bottom:227.235000px;}
.y2b_c01248{bottom:244.515000px;}
.y2a_c01248{bottom:245.370000px;}
.y2d_c01248{bottom:247.110000px;}
.y2c_c01248{bottom:250.560000px;}
.y2e_c01248{bottom:251.430000px;}
.y2f_c01248{bottom:256.605000px;}
.y25_c01248{bottom:264.390000px;}
.y28_c01248{bottom:266.115000px;}
.y29_c01248{bottom:266.970000px;}
.y26_c01248{bottom:267.840000px;}
.y24_c01248{bottom:269.565000px;}
.y27_c01248{bottom:271.290000px;}
.y20_c01248{bottom:285.990000px;}
.y23_c01248{bottom:286.845000px;}
.y1f_c01248{bottom:288.570000px;}
.y21_c01248{bottom:291.165000px;}
.y22_c01248{bottom:292.890000px;}
.y1b_c01248{bottom:305.850000px;}
.y1d_c01248{bottom:308.445000px;}
.y1c_c01248{bottom:312.765000px;}
.y1e_c01248{bottom:325.725000px;}
.y1a_c01248{bottom:327.450000px;}
.y18_c01248{bottom:328.320000px;}
.y10_c01248{bottom:330.045000px;}
.y17_c01248{bottom:331.770000px;}
.y19_c01248{bottom:332.640000px;}
.y12_c01248{bottom:348.195000px;}
.y15_c01248{bottom:349.050000px;}
.y14_c01248{bottom:350.790000px;}
.y11_c01248{bottom:352.515000px;}
.y13_c01248{bottom:353.370000px;}
.y16_c01248{bottom:354.240000px;}
.yf_c01248{bottom:1126.650000px;}
.ye_c01248{bottom:1141.350000px;}
.yc_c01248{bottom:1156.890000px;}
.yd_c01248{bottom:1159.485000px;}
.y9_c01248{bottom:1163.805000px;}
.yb_c01248{bottom:1166.400000px;}
.ya_c01248{bottom:1167.270000px;}
.y7_c01248{bottom:1175.910000px;}
.y6_c01248{bottom:1176.765000px;}
.y8_c01248{bottom:1177.635000px;}
.y5_c01248{bottom:1218.240000px;}
.y4_c01248{bottom:1226.010000px;}
.y3_c01248{bottom:1383.270000px;}
.y2_c01248{bottom:1418.685000px;}
.y1_c01248{bottom:1423.005000px;}
.h11_c01248{height:3.110063px;}
.h3_c01248{height:9.340986px;}
.h2_c01248{height:12.418652px;}
.h4_c01248{height:15.550313px;}
.h8_c01248{height:18.681973px;}
.h5_c01248{height:21.759639px;}
.h13_c01248{height:27.968965px;}
.h7_c01248{height:31.100625px;}
.ha_c01248{height:34.232285px;}
.h9_c01248{height:37.309951px;}
.h15_c01248{height:40.441611px;}
.h18_c01248{height:43.519277px;}
.h6_c01248{height:46.650937px;}
.hb_c01248{height:49.782598px;}
.hf_c01248{height:52.860264px;}
.h14_c01248{height:55.991924px;}
.h17_c01248{height:62.201250px;}
.hd_c01248{height:65.332910px;}
.h12_c01248{height:68.410576px;}
.h10_c01248{height:71.542236px;}
.he_c01248{height:74.619902px;}
.h16_c01248{height:77.751563px;}
.h19_c01248{height:83.960889px;}
.hc_c01248{height:133.743486px;}
.h1_c01248{height:1518.750000px;}
.h0_c01248{height:1518.915000px;}
.w0_c01248{width:1073.085000px;}
.w1_c01248{width:1073.250000px;}
.x0_c01248{left:0.000000px;}
.x1e_c01248{left:204.765000px;}
.x34_c01248{left:210.810000px;}
.x2a_c01248{left:214.275000px;}
.x35_c01248{left:217.725000px;}
.x18_c01248{left:220.320000px;}
.xb_c01248{left:222.915000px;}
.x19_c01248{left:258.330000px;}
.x24_c01248{left:264.390000px;}
.x13_c01248{left:269.565000px;}
.xc_c01248{left:271.290000px;}
.x1f_c01248{left:275.610000px;}
.xd_c01248{left:287.715000px;}
.x14_c01248{left:292.035000px;}
.x15_c01248{left:302.400000px;}
.x2b_c01248{left:304.125000px;}
.xe_c01248{left:307.590000px;}
.x25_c01248{left:316.230000px;}
.x20_c01248{left:317.955000px;}
.x1a_c01248{left:325.725000px;}
.x26_c01248{left:332.640000px;}
.x36_c01248{left:334.365000px;}
.x16_c01248{left:343.005000px;}
.x21_c01248{left:345.600000px;}
.x27_c01248{left:358.560000px;}
.x2c_c01248{left:360.285000px;}
.x32_c01248{left:368.070000px;}
.x2d_c01248{left:375.840000px;}
.x17_c01248{left:390.525000px;}
.xf_c01248{left:393.990000px;}
.x28_c01248{left:400.035000px;}
.x37_c01248{left:402.630000px;}
.x1b_c01248{left:406.080000px;}
.x22_c01248{left:413.850000px;}
.x10_c01248{left:428.550000px;}
.x38_c01248{left:432.870000px;}
.x2e_c01248{left:437.190000px;}
.x11_c01248{left:442.365000px;}
.x33_c01248{left:452.730000px;}
.x23_c01248{left:457.050000px;}
.x29_c01248{left:459.645000px;}
.x2f_c01248{left:463.110000px;}
.x30_c01248{left:470.010000px;}
.x1c_c01248{left:485.565000px;}
.x1d_c01248{left:489.885000px;}
.x12_c01248{left:494.205000px;}
.x31_c01248{left:508.890000px;}
.x4_c01248{left:1012.605000px;}
.xa_c01248{left:1014.330000px;}
.x5_c01248{left:1024.710000px;}
.x6_c01248{left:1048.890000px;}
.x8_c01248{left:1054.080000px;}
.x2_c01248{left:1056.675000px;}
.x3_c01248{left:1060.995000px;}
.x1_c01248{left:1062.720000px;}
.x9_c01248{left:1066.170000px;}
.x7_c01248{left:1070.490000px;}
@media print{
.v0_c01248{vertical-align:0.000000pt;}
.ls0_c01248{letter-spacing:0.000000pt;}
.ws0_c01248{word-spacing:0.000000pt;}
.fsf_c01248{font-size:3.072000pt;}
.fs1_c01248{font-size:9.226667pt;}
.fs0_c01248{font-size:12.266667pt;}
.fs2_c01248{font-size:15.360000pt;}
.fs6_c01248{font-size:18.453333pt;}
.fs3_c01248{font-size:21.493333pt;}
.fs11_c01248{font-size:27.626667pt;}
.fs5_c01248{font-size:30.720000pt;}
.fs8_c01248{font-size:33.813333pt;}
.fs7_c01248{font-size:36.853333pt;}
.fs13_c01248{font-size:39.946667pt;}
.fs16_c01248{font-size:42.986667pt;}
.fs4_c01248{font-size:46.080000pt;}
.fs9_c01248{font-size:49.173333pt;}
.fsd_c01248{font-size:52.213333pt;}
.fs12_c01248{font-size:55.306667pt;}
.fs15_c01248{font-size:61.440000pt;}
.fsb_c01248{font-size:64.533333pt;}
.fs10_c01248{font-size:67.573333pt;}
.fse_c01248{font-size:70.666667pt;}
.fsc_c01248{font-size:73.706667pt;}
.fs14_c01248{font-size:76.800000pt;}
.fs17_c01248{font-size:82.933333pt;}
.fsa_c01248{font-size:132.106667pt;}
.y0_c01248{bottom:0.000000pt;}
.y34_c01248{bottom:178.946667pt;}
.y35_c01248{bottom:181.253333pt;}
.y38_c01248{bottom:183.546667pt;}
.y36_c01248{bottom:185.093333pt;}
.y37_c01248{bottom:185.853333pt;}
.y30_c01248{bottom:198.906667pt;}
.y32_c01248{bottom:199.680000pt;}
.y33_c01248{bottom:200.453333pt;}
.y31_c01248{bottom:201.986667pt;}
.y2b_c01248{bottom:217.346667pt;}
.y2a_c01248{bottom:218.106667pt;}
.y2d_c01248{bottom:219.653333pt;}
.y2c_c01248{bottom:222.720000pt;}
.y2e_c01248{bottom:223.493333pt;}
.y2f_c01248{bottom:228.093333pt;}
.y25_c01248{bottom:235.013333pt;}
.y28_c01248{bottom:236.546667pt;}
.y29_c01248{bottom:237.306667pt;}
.y26_c01248{bottom:238.080000pt;}
.y24_c01248{bottom:239.613333pt;}
.y27_c01248{bottom:241.146667pt;}
.y20_c01248{bottom:254.213333pt;}
.y23_c01248{bottom:254.973333pt;}
.y1f_c01248{bottom:256.506667pt;}
.y21_c01248{bottom:258.813333pt;}
.y22_c01248{bottom:260.346667pt;}
.y1b_c01248{bottom:271.866667pt;}
.y1d_c01248{bottom:274.173333pt;}
.y1c_c01248{bottom:278.013333pt;}
.y1e_c01248{bottom:289.533333pt;}
.y1a_c01248{bottom:291.066667pt;}
.y18_c01248{bottom:291.840000pt;}
.y10_c01248{bottom:293.373333pt;}
.y17_c01248{bottom:294.906667pt;}
.y19_c01248{bottom:295.680000pt;}
.y12_c01248{bottom:309.506667pt;}
.y15_c01248{bottom:310.266667pt;}
.y14_c01248{bottom:311.813333pt;}
.y11_c01248{bottom:313.346667pt;}
.y13_c01248{bottom:314.106667pt;}
.y16_c01248{bottom:314.880000pt;}
.yf_c01248{bottom:1001.466667pt;}
.ye_c01248{bottom:1014.533333pt;}
.yc_c01248{bottom:1028.346667pt;}
.yd_c01248{bottom:1030.653333pt;}
.y9_c01248{bottom:1034.493333pt;}
.yb_c01248{bottom:1036.800000pt;}
.ya_c01248{bottom:1037.573333pt;}
.y7_c01248{bottom:1045.253333pt;}
.y6_c01248{bottom:1046.013333pt;}
.y8_c01248{bottom:1046.786667pt;}
.y5_c01248{bottom:1082.880000pt;}
.y4_c01248{bottom:1089.786667pt;}
.y3_c01248{bottom:1229.573333pt;}
.y2_c01248{bottom:1261.053333pt;}
.y1_c01248{bottom:1264.893333pt;}
.h11_c01248{height:2.764500pt;}
.h3_c01248{height:8.303099pt;}
.h2_c01248{height:11.038802pt;}
.h4_c01248{height:13.822500pt;}
.h8_c01248{height:16.606198pt;}
.h5_c01248{height:19.341901pt;}
.h13_c01248{height:24.861302pt;}
.h7_c01248{height:27.645000pt;}
.ha_c01248{height:30.428698pt;}
.h9_c01248{height:33.164401pt;}
.h15_c01248{height:35.948099pt;}
.h18_c01248{height:38.683802pt;}
.h6_c01248{height:41.467500pt;}
.hb_c01248{height:44.251198pt;}
.hf_c01248{height:46.986901pt;}
.h14_c01248{height:49.770599pt;}
.h17_c01248{height:55.290000pt;}
.hd_c01248{height:58.073698pt;}
.h12_c01248{height:60.809401pt;}
.h10_c01248{height:63.593099pt;}
.he_c01248{height:66.328802pt;}
.h16_c01248{height:69.112500pt;}
.h19_c01248{height:74.631901pt;}
.hc_c01248{height:118.883099pt;}
.h1_c01248{height:1350.000000pt;}
.h0_c01248{height:1350.146667pt;}
.w0_c01248{width:953.853333pt;}
.w1_c01248{width:954.000000pt;}
.x0_c01248{left:0.000000pt;}
.x1e_c01248{left:182.013333pt;}
.x34_c01248{left:187.386667pt;}
.x2a_c01248{left:190.466667pt;}
.x35_c01248{left:193.533333pt;}
.x18_c01248{left:195.840000pt;}
.xb_c01248{left:198.146667pt;}
.x19_c01248{left:229.626667pt;}
.x24_c01248{left:235.013333pt;}
.x13_c01248{left:239.613333pt;}
.xc_c01248{left:241.146667pt;}
.x1f_c01248{left:244.986667pt;}
.xd_c01248{left:255.746667pt;}
.x14_c01248{left:259.586667pt;}
.x15_c01248{left:268.800000pt;}
.x2b_c01248{left:270.333333pt;}
.xe_c01248{left:273.413333pt;}
.x25_c01248{left:281.093333pt;}
.x20_c01248{left:282.626667pt;}
.x1a_c01248{left:289.533333pt;}
.x26_c01248{left:295.680000pt;}
.x36_c01248{left:297.213333pt;}
.x16_c01248{left:304.893333pt;}
.x21_c01248{left:307.200000pt;}
.x27_c01248{left:318.720000pt;}
.x2c_c01248{left:320.253333pt;}
.x32_c01248{left:327.173333pt;}
.x2d_c01248{left:334.080000pt;}
.x17_c01248{left:347.133333pt;}
.xf_c01248{left:350.213333pt;}
.x28_c01248{left:355.586667pt;}
.x37_c01248{left:357.893333pt;}
.x1b_c01248{left:360.960000pt;}
.x22_c01248{left:367.866667pt;}
.x10_c01248{left:380.933333pt;}
.x38_c01248{left:384.773333pt;}
.x2e_c01248{left:388.613333pt;}
.x11_c01248{left:393.213333pt;}
.x33_c01248{left:402.426667pt;}
.x23_c01248{left:406.266667pt;}
.x29_c01248{left:408.573333pt;}
.x2f_c01248{left:411.653333pt;}
.x30_c01248{left:417.786667pt;}
.x1c_c01248{left:431.613333pt;}
.x1d_c01248{left:435.453333pt;}
.x12_c01248{left:439.293333pt;}
.x31_c01248{left:452.346667pt;}
.x4_c01248{left:900.093333pt;}
.xa_c01248{left:901.626667pt;}
.x5_c01248{left:910.853333pt;}
.x6_c01248{left:932.346667pt;}
.x8_c01248{left:936.960000pt;}
.x2_c01248{left:939.266667pt;}
.x3_c01248{left:943.106667pt;}
.x1_c01248{left:944.640000pt;}
.x9_c01248{left:947.706667pt;}
.x7_c01248{left:951.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01249;src:url('chunks/assets/font_1472968f769598af0f1d507b.woff2')format("woff");}.ff1_c01249{font-family:ff1_c01249;line-height:1.109863;font-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_c01249{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c01249{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);}
.m6_c01249{transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);}
.m8_c01249{transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);}
.m1_c01249{transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);}
.m4_c01249{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.m3_c01249{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mc_c01249{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01249{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c01249{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c01249{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m0_c01249{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);}
.mb_c01249{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c01249{vertical-align:0.000000px;}
.ls0_c01249{letter-spacing:0.000000px;}
.sc__c01249{text-shadow:none;}
.sc0_c01249{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01249{-webkit-text-stroke:0px transparent;}
.sc0_c01249{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01249{word-spacing:0.000000px;}
.fc0_c01249{color:transparent;}
.fs2_c01249{font-size:3.456000px;}
.fsc_c01249{font-size:6.900000px;}
.fs7_c01249{font-size:13.800000px;}
.fs8_c01249{font-size:17.280000px;}
.fs1_c01249{font-size:20.760000px;}
.fsb_c01249{font-size:24.180000px;}
.fsa_c01249{font-size:31.080000px;}
.fs3_c01249{font-size:34.560000px;}
.fs0_c01249{font-size:38.040000px;}
.fs5_c01249{font-size:51.840000px;}
.fs6_c01249{font-size:65.640000px;}
.fs9_c01249{font-size:86.400000px;}
.fs4_c01249{font-size:89.880000px;}
.y0_c01249{bottom:0.000000px;}
.yc_c01249{bottom:87.270000px;}
.ye_c01249{bottom:93.315000px;}
.yd_c01249{bottom:96.765000px;}
.yb_c01249{bottom:199.590000px;}
.ya_c01249{bottom:209.085000px;}
.y7_c01249{bottom:923.610000px;}
.y6_c01249{bottom:944.355000px;}
.y5_c01249{bottom:962.490000px;}
.y8_c01249{bottom:963.360000px;}
.y9_c01249{bottom:967.680000px;}
.y4_c01249{bottom:1008.285000px;}
.y3_c01249{bottom:1072.230000px;}
.y2_c01249{bottom:1074.810000px;}
.y1_c01249{bottom:1190.595000px;}
.h4_c01249{height:3.110063px;}
.he_c01249{height:6.209326px;}
.h9_c01249{height:12.418652px;}
.ha_c01249{height:15.550313px;}
.h3_c01249{height:18.681973px;}
.hd_c01249{height:21.759639px;}
.hc_c01249{height:27.968965px;}
.h5_c01249{height:31.100625px;}
.h2_c01249{height:34.232285px;}
.h7_c01249{height:46.650937px;}
.h8_c01249{height:59.069590px;}
.hb_c01249{height:77.751563px;}
.h6_c01249{height:80.883223px;}
.h0_c01249{height:1515.450000px;}
.h1_c01249{height:1515.750000px;}
.w1_c01249{width:1076.250000px;}
.w0_c01249{width:1076.550000px;}
.x0_c01249{left:0.000000px;}
.x8_c01249{left:2.595000px;}
.x5_c01249{left:5.190000px;}
.x4_c01249{left:16.410000px;}
.x9_c01249{left:50.970000px;}
.xa_c01249{left:57.885000px;}
.xb_c01249{left:69.120000px;}
.x1_c01249{left:95.040000px;}
.x2_c01249{left:106.275000px;}
.x6_c01249{left:114.045000px;}
.x7_c01249{left:116.640000px;}
.x3_c01249{left:167.610000px;}
@media print{
.v0_c01249{vertical-align:0.000000pt;}
.ls0_c01249{letter-spacing:0.000000pt;}
.ws0_c01249{word-spacing:0.000000pt;}
.fs2_c01249{font-size:3.072000pt;}
.fsc_c01249{font-size:6.133333pt;}
.fs7_c01249{font-size:12.266667pt;}
.fs8_c01249{font-size:15.360000pt;}
.fs1_c01249{font-size:18.453333pt;}
.fsb_c01249{font-size:21.493333pt;}
.fsa_c01249{font-size:27.626667pt;}
.fs3_c01249{font-size:30.720000pt;}
.fs0_c01249{font-size:33.813333pt;}
.fs5_c01249{font-size:46.080000pt;}
.fs6_c01249{font-size:58.346667pt;}
.fs9_c01249{font-size:76.800000pt;}
.fs4_c01249{font-size:79.893333pt;}
.y0_c01249{bottom:0.000000pt;}
.yc_c01249{bottom:77.573333pt;}
.ye_c01249{bottom:82.946667pt;}
.yd_c01249{bottom:86.013333pt;}
.yb_c01249{bottom:177.413333pt;}
.ya_c01249{bottom:185.853333pt;}
.y7_c01249{bottom:820.986667pt;}
.y6_c01249{bottom:839.426667pt;}
.y5_c01249{bottom:855.546667pt;}
.y8_c01249{bottom:856.320000pt;}
.y9_c01249{bottom:860.160000pt;}
.y4_c01249{bottom:896.253333pt;}
.y3_c01249{bottom:953.093333pt;}
.y2_c01249{bottom:955.386667pt;}
.y1_c01249{bottom:1058.306667pt;}
.h4_c01249{height:2.764500pt;}
.he_c01249{height:5.519401pt;}
.h9_c01249{height:11.038802pt;}
.ha_c01249{height:13.822500pt;}
.h3_c01249{height:16.606198pt;}
.hd_c01249{height:19.341901pt;}
.hc_c01249{height:24.861302pt;}
.h5_c01249{height:27.645000pt;}
.h2_c01249{height:30.428698pt;}
.h7_c01249{height:41.467500pt;}
.h8_c01249{height:52.506302pt;}
.hb_c01249{height:69.112500pt;}
.h6_c01249{height:71.896198pt;}
.h0_c01249{height:1347.066667pt;}
.h1_c01249{height:1347.333333pt;}
.w1_c01249{width:956.666667pt;}
.w0_c01249{width:956.933333pt;}
.x0_c01249{left:0.000000pt;}
.x8_c01249{left:2.306667pt;}
.x5_c01249{left:4.613333pt;}
.x4_c01249{left:14.586667pt;}
.x9_c01249{left:45.306667pt;}
.xa_c01249{left:51.453333pt;}
.xb_c01249{left:61.440000pt;}
.x1_c01249{left:84.480000pt;}
.x2_c01249{left:94.466667pt;}
.x6_c01249{left:101.373333pt;}
.x7_c01249{left:103.680000pt;}
.x3_c01249{left:148.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be40663ce0845cf63ff09f1e.woff2')format("woff");}.ff1_c01250{font-family:ff1_c01250;line-height:1.109863;font-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_c01250{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c01250{transform:matrix(0.021500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021500,0.000000,0.000000,0.250000,0,0);}
.mc_c01250{transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);}
.m7_c01250{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m0_c01250{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);}
.m2_c01250{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);}
.m3_c01250{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m6_c01250{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c01250{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1_c01250{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma_c01250{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mb_c01250{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m8_c01250{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,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;}
.fs7_c01250{font-size:3.456000px;}
.fs1_c01250{font-size:6.900000px;}
.fsb_c01250{font-size:13.800000px;}
.fs5_c01250{font-size:17.280000px;}
.fs8_c01250{font-size:20.760000px;}
.fs4_c01250{font-size:24.180000px;}
.fs6_c01250{font-size:27.660000px;}
.fs9_c01250{font-size:31.080000px;}
.fs0_c01250{font-size:44.940000px;}
.fs2_c01250{font-size:51.840000px;}
.fsa_c01250{font-size:100.200000px;}
.fs3_c01250{font-size:145.140000px;}
.y0_c01250{bottom:0.000000px;}
.yd_c01250{bottom:253.155000px;}
.yc_c01250{bottom:260.925000px;}
.yb_c01250{bottom:293.760000px;}
.ya_c01250{bottom:303.270000px;}
.y9_c01250{bottom:308.445000px;}
.y8_c01250{bottom:317.085000px;}
.y7_c01250{bottom:320.550000px;}
.y6_c01250{bottom:367.200000px;}
.y3_c01250{bottom:1118.010000px;}
.y2_c01250{bottom:1120.605000px;}
.y1_c01250{bottom:1125.795000px;}
.y5_c01250{bottom:1159.485000px;}
.y4_c01250{bottom:1197.510000px;}
.h9_c01250{height:3.110063px;}
.h3_c01250{height:6.209326px;}
.hd_c01250{height:12.418652px;}
.h7_c01250{height:15.550313px;}
.ha_c01250{height:18.681973px;}
.h6_c01250{height:21.759639px;}
.h8_c01250{height:24.891299px;}
.hb_c01250{height:27.968965px;}
.h2_c01250{height:40.441611px;}
.h4_c01250{height:46.650937px;}
.hc_c01250{height:90.170215px;}
.h5_c01250{height:130.611826px;}
.h1_c01250{height:1518.750000px;}
.h0_c01250{height:1518.915000px;}
.w0_c01250{width:1073.085000px;}
.w1_c01250{width:1073.250000px;}
.x0_c01250{left:0.000000px;}
.x1_c01250{left:913.245000px;}
.x4_c01250{left:958.170000px;}
.x5_c01250{left:984.960000px;}
.x2_c01250{left:998.790000px;}
.x3_c01250{left:1013.475000px;}
.xc_c01250{left:1032.480000px;}
.x9_c01250{left:1036.800000px;}
.xb_c01250{left:1043.715000px;}
.x8_c01250{left:1046.310000px;}
.x6_c01250{left:1048.035000px;}
.xa_c01250{left:1052.355000px;}
.x7_c01250{left:1060.125000px;}
@media print{
.v0_c01250{vertical-align:0.000000pt;}
.ls0_c01250{letter-spacing:0.000000pt;}
.ws0_c01250{word-spacing:0.000000pt;}
.fs7_c01250{font-size:3.072000pt;}
.fs1_c01250{font-size:6.133333pt;}
.fsb_c01250{font-size:12.266667pt;}
.fs5_c01250{font-size:15.360000pt;}
.fs8_c01250{font-size:18.453333pt;}
.fs4_c01250{font-size:21.493333pt;}
.fs6_c01250{font-size:24.586667pt;}
.fs9_c01250{font-size:27.626667pt;}
.fs0_c01250{font-size:39.946667pt;}
.fs2_c01250{font-size:46.080000pt;}
.fsa_c01250{font-size:89.066667pt;}
.fs3_c01250{font-size:129.013333pt;}
.y0_c01250{bottom:0.000000pt;}
.yd_c01250{bottom:225.026667pt;}
.yc_c01250{bottom:231.933333pt;}
.yb_c01250{bottom:261.120000pt;}
.ya_c01250{bottom:269.573333pt;}
.y9_c01250{bottom:274.173333pt;}
.y8_c01250{bottom:281.853333pt;}
.y7_c01250{bottom:284.933333pt;}
.y6_c01250{bottom:326.400000pt;}
.y3_c01250{bottom:993.786667pt;}
.y2_c01250{bottom:996.093333pt;}
.y1_c01250{bottom:1000.706667pt;}
.y5_c01250{bottom:1030.653333pt;}
.y4_c01250{bottom:1064.453333pt;}
.h9_c01250{height:2.764500pt;}
.h3_c01250{height:5.519401pt;}
.hd_c01250{height:11.038802pt;}
.h7_c01250{height:13.822500pt;}
.ha_c01250{height:16.606198pt;}
.h6_c01250{height:19.341901pt;}
.h8_c01250{height:22.125599pt;}
.hb_c01250{height:24.861302pt;}
.h2_c01250{height:35.948099pt;}
.h4_c01250{height:41.467500pt;}
.hc_c01250{height:80.151302pt;}
.h5_c01250{height:116.099401pt;}
.h1_c01250{height:1350.000000pt;}
.h0_c01250{height:1350.146667pt;}
.w0_c01250{width:953.853333pt;}
.w1_c01250{width:954.000000pt;}
.x0_c01250{left:0.000000pt;}
.x1_c01250{left:811.773333pt;}
.x4_c01250{left:851.706667pt;}
.x5_c01250{left:875.520000pt;}
.x2_c01250{left:887.813333pt;}
.x3_c01250{left:900.866667pt;}
.xc_c01250{left:917.760000pt;}
.x9_c01250{left:921.600000pt;}
.xb_c01250{left:927.746667pt;}
.x8_c01250{left:930.053333pt;}
.x6_c01250{left:931.586667pt;}
.xa_c01250{left:935.426667pt;}
.x7_c01250{left:942.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01251;src:url('chunks/assets/font_5a5fdefdfefc4d434f5db993.woff2')format("woff");}.ff1_c01251{font-family:ff1_c01251;line-height:1.109863;font-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_c01251{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);}
.v0_c01251{vertical-align:0.000000px;}
.ls0_c01251{letter-spacing:0.000000px;}
.sc__c01251{text-shadow:none;}
.sc0_c01251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01251{-webkit-text-stroke:0px transparent;}
.sc0_c01251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01251{word-spacing:0.000000px;}
.fc0_c01251{color:transparent;}
.fs0_c01251{font-size:600.000000px;}
.y0_c01251{bottom:0.000000px;}
.y1_c01251{bottom:15.000000px;}
.h2_c01251{height:539.941406px;}
.h0_c01251{height:1515.450000px;}
.h1_c01251{height:1515.750000px;}
.w1_c01251{width:1076.250000px;}
.w0_c01251{width:1076.550000px;}
.x0_c01251{left:0.000000px;}
.x1_c01251{left:15.000000px;}
@media print{
.v0_c01251{vertical-align:0.000000pt;}
.ls0_c01251{letter-spacing:0.000000pt;}
.ws0_c01251{word-spacing:0.000000pt;}
.fs0_c01251{font-size:533.333333pt;}
.y0_c01251{bottom:0.000000pt;}
.y1_c01251{bottom:13.333333pt;}
.h2_c01251{height:479.947917pt;}
.h0_c01251{height:1347.066667pt;}
.h1_c01251{height:1347.333333pt;}
.w1_c01251{width:956.666667pt;}
.w0_c01251{width:956.933333pt;}
.x0_c01251{left:0.000000pt;}
.x1_c01251{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_08935a1cf1921567e9097a21.woff2')format("woff");}.ff1_c01252{font-family:ff1_c01252;line-height:1.109863;font-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_c01252{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c01252{transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);}
.mc_c01252{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m10_c01252{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m7_c01252{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);}
.me_c01252{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);}
.mf_c01252{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);}
.mb_c01252{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);}
.md_c01252{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);}
.m11_c01252{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma_c01252{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9_c01252{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);}
.m8_c01252{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m0_c01252{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);}
.m5_c01252{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m6_c01252{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m2_c01252{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m4_c01252{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);}
.v0_c01252{vertical-align:0.000000px;}
.v1_c01252{vertical-align:6.900000px;}
.ls1_c01252{letter-spacing:0.000000px;}
.ls0_c01252{letter-spacing:410.153580px;}
.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;}
.fc0_c01252{color:transparent;}
.fs1_c01252{font-size:6.900000px;}
.fs2_c01252{font-size:17.280000px;}
.fs6_c01252{font-size:31.080000px;}
.fs0_c01252{font-size:41.460000px;}
.fs7_c01252{font-size:48.360000px;}
.fs8_c01252{font-size:51.840000px;}
.fs3_c01252{font-size:58.740000px;}
.fs9_c01252{font-size:62.220000px;}
.fs4_c01252{font-size:65.640000px;}
.fsa_c01252{font-size:69.120000px;}
.fs5_c01252{font-size:152.040000px;}
.y0_c01252{bottom:0.000000px;}
.y12_c01252{bottom:574.560000px;}
.y11_c01252{bottom:613.440000px;}
.y10_c01252{bottom:628.995000px;}
.yf_c01252{bottom:864.870000px;}
.ye_c01252{bottom:884.730000px;}
.yd_c01252{bottom:1013.475000px;}
.yc_c01252{bottom:1032.480000px;}
.yb_c01252{bottom:1162.080000px;}
.ya_c01252{bottom:1178.490000px;}
.y9_c01252{bottom:1191.450000px;}
.y5_c01252{bottom:1204.410000px;}
.y7_c01252{bottom:1213.050000px;}
.y6_c01252{bottom:1213.920000px;}
.y8_c01252{bottom:1214.790000px;}
.y4_c01252{bottom:1228.605000px;}
.y3_c01252{bottom:1232.070000px;}
.y2_c01252{bottom:1435.110000px;}
.y1_c01252{bottom:1436.835000px;}
.h3_c01252{height:15.550313px;}
.h7_c01252{height:27.968965px;}
.h2_c01252{height:37.309951px;}
.h8_c01252{height:43.519277px;}
.h9_c01252{height:46.650937px;}
.h4_c01252{height:52.860264px;}
.ha_c01252{height:55.991924px;}
.h5_c01252{height:59.069590px;}
.hb_c01252{height:62.201250px;}
.h6_c01252{height:136.821152px;}
.h1_c01252{height:1518.750000px;}
.h0_c01252{height:1518.915000px;}
.w0_c01252{width:1073.085000px;}
.w1_c01252{width:1073.250000px;}
.x0_c01252{left:0.000000px;}
.x1_c01252{left:531.360000px;}
.x2_c01252{left:704.160000px;}
.x8_c01252{left:1019.520000px;}
.x3_c01252{left:1022.115000px;}
.x4_c01252{left:1035.075000px;}
.x6_c01252{left:1040.250000px;}
.xa_c01252{left:1041.990000px;}
.x7_c01252{left:1057.530000px;}
.x9_c01252{left:1062.720000px;}
.x5_c01252{left:1072.230000px;}
@media print{
.v0_c01252{vertical-align:0.000000pt;}
.v1_c01252{vertical-align:6.133333pt;}
.ls1_c01252{letter-spacing:0.000000pt;}
.ls0_c01252{letter-spacing:364.580960pt;}
.ws0_c01252{word-spacing:0.000000pt;}
.fs1_c01252{font-size:6.133333pt;}
.fs2_c01252{font-size:15.360000pt;}
.fs6_c01252{font-size:27.626667pt;}
.fs0_c01252{font-size:36.853333pt;}
.fs7_c01252{font-size:42.986667pt;}
.fs8_c01252{font-size:46.080000pt;}
.fs3_c01252{font-size:52.213333pt;}
.fs9_c01252{font-size:55.306667pt;}
.fs4_c01252{font-size:58.346667pt;}
.fsa_c01252{font-size:61.440000pt;}
.fs5_c01252{font-size:135.146667pt;}
.y0_c01252{bottom:0.000000pt;}
.y12_c01252{bottom:510.720000pt;}
.y11_c01252{bottom:545.280000pt;}
.y10_c01252{bottom:559.106667pt;}
.yf_c01252{bottom:768.773333pt;}
.ye_c01252{bottom:786.426667pt;}
.yd_c01252{bottom:900.866667pt;}
.yc_c01252{bottom:917.760000pt;}
.yb_c01252{bottom:1032.960000pt;}
.ya_c01252{bottom:1047.546667pt;}
.y9_c01252{bottom:1059.066667pt;}
.y5_c01252{bottom:1070.586667pt;}
.y7_c01252{bottom:1078.266667pt;}
.y6_c01252{bottom:1079.040000pt;}
.y8_c01252{bottom:1079.813333pt;}
.y4_c01252{bottom:1092.093333pt;}
.y3_c01252{bottom:1095.173333pt;}
.y2_c01252{bottom:1275.653333pt;}
.y1_c01252{bottom:1277.186667pt;}
.h3_c01252{height:13.822500pt;}
.h7_c01252{height:24.861302pt;}
.h2_c01252{height:33.164401pt;}
.h8_c01252{height:38.683802pt;}
.h9_c01252{height:41.467500pt;}
.h4_c01252{height:46.986901pt;}
.ha_c01252{height:49.770599pt;}
.h5_c01252{height:52.506302pt;}
.hb_c01252{height:55.290000pt;}
.h6_c01252{height:121.618802pt;}
.h1_c01252{height:1350.000000pt;}
.h0_c01252{height:1350.146667pt;}
.w0_c01252{width:953.853333pt;}
.w1_c01252{width:954.000000pt;}
.x0_c01252{left:0.000000pt;}
.x1_c01252{left:472.320000pt;}
.x2_c01252{left:625.920000pt;}
.x8_c01252{left:906.240000pt;}
.x3_c01252{left:908.546667pt;}
.x4_c01252{left:920.066667pt;}
.x6_c01252{left:924.666667pt;}
.xa_c01252{left:926.213333pt;}
.x7_c01252{left:940.026667pt;}
.x9_c01252{left:944.640000pt;}
.x5_c01252{left:953.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01253;src:url('chunks/assets/font_5f3e54015aea22fab0cee3b8.woff2')format("woff");}.ff1_c01253{font-family:ff1_c01253;line-height:1.109863;font-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_c01253{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);}
.v0_c01253{vertical-align:0.000000px;}
.ls0_c01253{letter-spacing:0.000000px;}
.sc__c01253{text-shadow:none;}
.sc0_c01253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01253{-webkit-text-stroke:0px transparent;}
.sc0_c01253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01253{word-spacing:0.000000px;}
.fc0_c01253{color:transparent;}
.fs0_c01253{font-size:600.000000px;}
.y0_c01253{bottom:0.000000px;}
.y1_c01253{bottom:15.000000px;}
.h2_c01253{height:539.941406px;}
.h0_c01253{height:1515.450000px;}
.h1_c01253{height:1515.750000px;}
.w1_c01253{width:1076.250000px;}
.w0_c01253{width:1076.550000px;}
.x0_c01253{left:0.000000px;}
.x1_c01253{left:15.000000px;}
@media print{
.v0_c01253{vertical-align:0.000000pt;}
.ls0_c01253{letter-spacing:0.000000pt;}
.ws0_c01253{word-spacing:0.000000pt;}
.fs0_c01253{font-size:533.333333pt;}
.y0_c01253{bottom:0.000000pt;}
.y1_c01253{bottom:13.333333pt;}
.h2_c01253{height:479.947917pt;}
.h0_c01253{height:1347.066667pt;}
.h1_c01253{height:1347.333333pt;}
.w1_c01253{width:956.666667pt;}
.w0_c01253{width:956.933333pt;}
.x0_c01253{left:0.000000pt;}
.x1_c01253{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2992882f60f7381359d2fa59.woff2')format("woff");}.ff1_c01254{font-family:ff1_c01254;line-height:1.109863;font-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_c01254{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c01254{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_c01254{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9_c01254{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.m2_c01254{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);}
.m6_c01254{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);}
.m0_c01254{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);}
.m5_c01254{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m8_c01254{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3_c01254{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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;}
.fs1_c01254{font-size:3.456000px;}
.fs4_c01254{font-size:6.000000px;}
.fs3_c01254{font-size:17.280000px;}
.fs0_c01254{font-size:20.760000px;}
.fs5_c01254{font-size:55.320000px;}
.fs2_c01254{font-size:69.120000px;}
.y0_c01254{bottom:0.000000px;}
.y9_c01254{bottom:189.210000px;}
.y8_c01254{bottom:381.885000px;}
.y7_c01254{bottom:872.640000px;}
.y6_c01254{bottom:874.365000px;}
.y5_c01254{bottom:1038.525000px;}
.y4_c01254{bottom:1054.950000px;}
.y3_c01254{bottom:1346.115000px;}
.y2_c01254{bottom:1365.120000px;}
.y1_c01254{bottom:1367.715000px;}
.h3_c01254{height:3.110063px;}
.h6_c01254{height:5.399414px;}
.h5_c01254{height:15.550313px;}
.h2_c01254{height:18.681973px;}
.h7_c01254{height:49.782598px;}
.h4_c01254{height:62.201250px;}
.h1_c01254{height:1518.750000px;}
.h0_c01254{height:1518.915000px;}
.w0_c01254{width:1073.085000px;}
.w1_c01254{width:1073.250000px;}
.x0_c01254{left:0.000000px;}
.x5_c01254{left:886.470000px;}
.x6_c01254{left:902.880000px;}
.x4_c01254{left:981.510000px;}
.xa_c01254{left:991.005000px;}
.x1_c01254{left:1003.110000px;}
.x2_c01254{left:1018.650000px;}
.x3_c01254{left:1033.350000px;}
.x7_c01254{left:1042.845000px;}
.x8_c01254{left:1052.355000px;}
.x9_c01254{left:1057.530000px;}
@media print{
.v0_c01254{vertical-align:0.000000pt;}
.ls0_c01254{letter-spacing:0.000000pt;}
.ws0_c01254{word-spacing:0.000000pt;}
.fs1_c01254{font-size:3.072000pt;}
.fs4_c01254{font-size:5.333333pt;}
.fs3_c01254{font-size:15.360000pt;}
.fs0_c01254{font-size:18.453333pt;}
.fs5_c01254{font-size:49.173333pt;}
.fs2_c01254{font-size:61.440000pt;}
.y0_c01254{bottom:0.000000pt;}
.y9_c01254{bottom:168.186667pt;}
.y8_c01254{bottom:339.453333pt;}
.y7_c01254{bottom:775.680000pt;}
.y6_c01254{bottom:777.213333pt;}
.y5_c01254{bottom:923.133333pt;}
.y4_c01254{bottom:937.733333pt;}
.y3_c01254{bottom:1196.546667pt;}
.y2_c01254{bottom:1213.440000pt;}
.y1_c01254{bottom:1215.746667pt;}
.h3_c01254{height:2.764500pt;}
.h6_c01254{height:4.799479pt;}
.h5_c01254{height:13.822500pt;}
.h2_c01254{height:16.606198pt;}
.h7_c01254{height:44.251198pt;}
.h4_c01254{height:55.290000pt;}
.h1_c01254{height:1350.000000pt;}
.h0_c01254{height:1350.146667pt;}
.w0_c01254{width:953.853333pt;}
.w1_c01254{width:954.000000pt;}
.x0_c01254{left:0.000000pt;}
.x5_c01254{left:787.973333pt;}
.x6_c01254{left:802.560000pt;}
.x4_c01254{left:872.453333pt;}
.xa_c01254{left:880.893333pt;}
.x1_c01254{left:891.653333pt;}
.x2_c01254{left:905.466667pt;}
.x3_c01254{left:918.533333pt;}
.x7_c01254{left:926.973333pt;}
.x8_c01254{left:935.426667pt;}
.x9_c01254{left:940.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01255;src:url('chunks/assets/font_47d38812f2d0fb059011ca7b.woff2')format("woff");}.ff1_c01255{font-family:ff1_c01255;line-height:1.109863;font-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_c01255{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);}
.v0_c01255{vertical-align:0.000000px;}
.ls0_c01255{letter-spacing:0.000000px;}
.sc__c01255{text-shadow:none;}
.sc0_c01255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01255{-webkit-text-stroke:0px transparent;}
.sc0_c01255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01255{word-spacing:0.000000px;}
.fc0_c01255{color:transparent;}
.fs0_c01255{font-size:600.000000px;}
.y0_c01255{bottom:0.000000px;}
.y1_c01255{bottom:15.000000px;}
.h2_c01255{height:539.941406px;}
.h0_c01255{height:1515.450000px;}
.h1_c01255{height:1515.750000px;}
.w1_c01255{width:1076.250000px;}
.w0_c01255{width:1076.550000px;}
.x0_c01255{left:0.000000px;}
.x1_c01255{left:15.000000px;}
@media print{
.v0_c01255{vertical-align:0.000000pt;}
.ls0_c01255{letter-spacing:0.000000pt;}
.ws0_c01255{word-spacing:0.000000pt;}
.fs0_c01255{font-size:533.333333pt;}
.y0_c01255{bottom:0.000000pt;}
.y1_c01255{bottom:13.333333pt;}
.h2_c01255{height:479.947917pt;}
.h0_c01255{height:1347.066667pt;}
.h1_c01255{height:1347.333333pt;}
.w1_c01255{width:956.666667pt;}
.w0_c01255{width:956.933333pt;}
.x0_c01255{left:0.000000pt;}
.x1_c01255{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b6da6efc22eb3832b11466d5.woff2')format("woff");}.ff1_c01256{font-family:ff1_c01256;line-height:1.109863;font-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_c01256{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me_c01256{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.m42_c01256{transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);}
.m2_c01256{transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);}
.m3a_c01256{transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);}
.m19_c01256{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01256{transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);}
.m4_c01256{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m50_c01256{transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);}
.m1a_c01256{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.m8_c01256{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.m2c_c01256{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m51_c01256{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m4e_c01256{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.m1f_c01256{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5_c01256{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m3e_c01256{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m2e_c01256{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);}
.m3b_c01256{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.m2b_c01256{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m4a_c01256{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);}
.m32_c01256{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m3d_c01256{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);}
.m4b_c01256{transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);}
.m38_c01256{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.m14_c01256{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m49_c01256{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);}
.m1b_c01256{transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);}
.m2f_c01256{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m36_c01256{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);}
.m18_c01256{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);}
.m40_c01256{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);}
.m12_c01256{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m16_c01256{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);}
.md_c01256{transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);}
.m41_c01256{transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);}
.ma_c01256{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);}
.m2d_c01256{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);}
.m4c_c01256{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);}
.m1e_c01256{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);}
.m37_c01256{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);}
.m52_c01256{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);}
.mc_c01256{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);}
.m53_c01256{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);}
.mf_c01256{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);}
.m43_c01256{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01256{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);}
.m29_c01256{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01256{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c01256{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);}
.m31_c01256{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c01256{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c01256{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c01256{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01256{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01256{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb_c01256{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);}
.m35_c01256{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m25_c01256{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);}
.m46_c01256{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m21_c01256{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m48_c01256{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01256{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);}
.m15_c01256{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m28_c01256{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m9_c01256{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m45_c01256{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);}
.m17_c01256{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01256{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m13_c01256{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01256{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m0_c01256{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);}
.m22_c01256{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m26_c01256{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m39_c01256{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m54_c01256{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m47_c01256{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m27_c01256{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m34_c01256{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m11_c01256{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m10_c01256{transform:matrix(1.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.045000,0.000000,0.000000,0.250000,0,0);}
.m55_c01256{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m23_c01256{transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);}
.m44_c01256{transform:matrix(1.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.370000,0.000000,0.000000,0.250000,0,0);}
.m33_c01256{transform:matrix(1.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.520000,0.000000,0.000000,0.250000,0,0);}
.m24_c01256{transform:matrix(1.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.665000,0.000000,0.000000,0.250000,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;}
.fse_c01256{font-size:3.456000px;}
.fs18_c01256{font-size:6.000000px;}
.fs0_c01256{font-size:6.900000px;}
.fs2_c01256{font-size:10.380000px;}
.fs5_c01256{font-size:13.800000px;}
.fs4_c01256{font-size:20.760000px;}
.fsa_c01256{font-size:24.180000px;}
.fsd_c01256{font-size:27.660000px;}
.fs7_c01256{font-size:31.080000px;}
.fs1_c01256{font-size:34.560000px;}
.fs10_c01256{font-size:38.040000px;}
.fs1a_c01256{font-size:41.460000px;}
.fsb_c01256{font-size:44.940000px;}
.fs8_c01256{font-size:51.840000px;}
.fs17_c01256{font-size:55.320000px;}
.fs9_c01256{font-size:58.740000px;}
.fs12_c01256{font-size:62.220000px;}
.fsc_c01256{font-size:65.640000px;}
.fs6_c01256{font-size:69.120000px;}
.fs19_c01256{font-size:76.020000px;}
.fs1b_c01256{font-size:79.500000px;}
.fs1c_c01256{font-size:82.920000px;}
.fs14_c01256{font-size:89.880000px;}
.fs13_c01256{font-size:93.300000px;}
.fs3_c01256{font-size:103.680000px;}
.fs15_c01256{font-size:107.160000px;}
.fs16_c01256{font-size:110.580000px;}
.fs11_c01256{font-size:141.720000px;}
.fsf_c01256{font-size:193.560000px;}
.y0_c01256{bottom:0.000000px;}
.y4b_c01256{bottom:213.405000px;}
.y4a_c01256{bottom:215.130000px;}
.y49_c01256{bottom:217.725000px;}
.y48_c01256{bottom:218.595000px;}
.y42_c01256{bottom:233.280000px;}
.y40_c01256{bottom:234.150000px;}
.y45_c01256{bottom:237.600000px;}
.y47_c01256{bottom:239.325000px;}
.y41_c01256{bottom:240.195000px;}
.y43_c01256{bottom:241.050000px;}
.y44_c01256{bottom:243.645000px;}
.y46_c01256{bottom:245.370000px;}
.y3d_c01256{bottom:250.560000px;}
.y3c_c01256{bottom:253.155000px;}
.y3a_c01256{bottom:254.010000px;}
.y38_c01256{bottom:254.880000px;}
.y37_c01256{bottom:255.750000px;}
.y3e_c01256{bottom:256.605000px;}
.y3b_c01256{bottom:259.200000px;}
.y39_c01256{bottom:260.070000px;}
.y3f_c01256{bottom:260.925000px;}
.y35_c01256{bottom:263.520000px;}
.y33_c01256{bottom:265.245000px;}
.y36_c01256{bottom:267.840000px;}
.y34_c01256{bottom:269.565000px;}
.y31_c01256{bottom:270.435000px;}
.y32_c01256{bottom:273.030000px;}
.y2b_c01256{bottom:274.755000px;}
.y29_c01256{bottom:275.610000px;}
.y2f_c01256{bottom:279.075000px;}
.y2d_c01256{bottom:279.930000px;}
.y2a_c01256{bottom:280.800000px;}
.y30_c01256{bottom:282.525000px;}
.y2e_c01256{bottom:283.395000px;}
.y2c_c01256{bottom:284.250000px;}
.y28_c01256{bottom:290.310000px;}
.y27_c01256{bottom:291.165000px;}
.y14_c01256{bottom:292.890000px;}
.y25_c01256{bottom:296.355000px;}
.y16_c01256{bottom:299.805000px;}
.y1d_c01256{bottom:301.530000px;}
.y24_c01256{bottom:302.400000px;}
.y26_c01256{bottom:303.270000px;}
.y1b_c01256{bottom:304.125000px;}
.y22_c01256{bottom:305.850000px;}
.y21_c01256{bottom:306.720000px;}
.y23_c01256{bottom:307.590000px;}
.y1f_c01256{bottom:308.445000px;}
.y1e_c01256{bottom:310.170000px;}
.y20_c01256{bottom:312.765000px;}
.y18_c01256{bottom:313.635000px;}
.y1c_c01256{bottom:314.490000px;}
.y17_c01256{bottom:315.360000px;}
.y19_c01256{bottom:319.680000px;}
.y1a_c01256{bottom:321.405000px;}
.y15_c01256{bottom:322.275000px;}
.y11_c01256{bottom:324.870000px;}
.y12_c01256{bottom:336.090000px;}
.y13_c01256{bottom:338.685000px;}
.y10_c01256{bottom:342.150000px;}
.yf_c01256{bottom:749.955000px;}
.ye_c01256{bottom:771.555000px;}
.yd_c01256{bottom:772.410000px;}
.yc_c01256{bottom:782.790000px;}
.yb_c01256{bottom:788.835000px;}
.ya_c01256{bottom:803.520000px;}
.y9_c01256{bottom:822.525000px;}
.y8_c01256{bottom:927.930000px;}
.y7_c01256{bottom:941.760000px;}
.y6_c01256{bottom:1027.290000px;}
.y5_c01256{bottom:1034.205000px;}
.y4_c01256{bottom:1040.250000px;}
.y3_c01256{bottom:1062.720000px;}
.y2_c01256{bottom:1145.670000px;}
.y1_c01256{bottom:1149.990000px;}
.h10_c01256{height:3.110063px;}
.h1a_c01256{height:5.399414px;}
.h2_c01256{height:6.209326px;}
.h4_c01256{height:9.340986px;}
.h7_c01256{height:12.418652px;}
.h6_c01256{height:18.681973px;}
.hc_c01256{height:21.759639px;}
.hf_c01256{height:24.891299px;}
.h9_c01256{height:27.968965px;}
.h3_c01256{height:31.100625px;}
.h12_c01256{height:34.232285px;}
.h1c_c01256{height:37.309951px;}
.hd_c01256{height:40.441611px;}
.ha_c01256{height:46.650937px;}
.h19_c01256{height:49.782598px;}
.hb_c01256{height:52.860264px;}
.h14_c01256{height:55.991924px;}
.he_c01256{height:59.069590px;}
.h8_c01256{height:62.201250px;}
.h1b_c01256{height:68.410576px;}
.h1d_c01256{height:71.542236px;}
.h1e_c01256{height:74.619902px;}
.h16_c01256{height:80.883223px;}
.h15_c01256{height:83.960889px;}
.h5_c01256{height:93.301875px;}
.h17_c01256{height:96.433535px;}
.h18_c01256{height:99.511201px;}
.h13_c01256{height:127.534160px;}
.h11_c01256{height:174.185098px;}
.h1_c01256{height:1518.750000px;}
.h0_c01256{height:1518.915000px;}
.w0_c01256{width:1073.085000px;}
.w1_c01256{width:1073.250000px;}
.x0_c01256{left:0.000000px;}
.x9_c01256{left:152.070000px;}
.xd_c01256{left:206.490000px;}
.x2d_c01256{left:211.680000px;}
.x4d_c01256{left:214.275000px;}
.x50_c01256{left:226.365000px;}
.x25_c01256{left:254.010000px;}
.xe_c01256{left:256.605000px;}
.x4e_c01256{left:264.390000px;}
.xf_c01256{left:268.710000px;}
.x26_c01256{left:272.160000px;}
.x2e_c01256{left:296.355000px;}
.x10_c01256{left:298.950000px;}
.x11_c01256{left:311.040000px;}
.x12_c01256{left:320.550000px;}
.x3d_c01256{left:328.320000px;}
.x4f_c01256{left:339.555000px;}
.xa_c01256{left:353.370000px;}
.x27_c01256{left:357.690000px;}
.x48_c01256{left:362.880000px;}
.x3e_c01256{left:364.605000px;}
.x13_c01256{left:379.290000px;}
.x2f_c01256{left:381.885000px;}
.x1b_c01256{left:405.210000px;}
.xb_c01256{left:409.530000px;}
.x51_c01256{left:414.720000px;}
.x36_c01256{left:417.315000px;}
.x28_c01256{left:424.230000px;}
.x1c_c01256{left:429.405000px;}
.x3f_c01256{left:435.450000px;}
.x30_c01256{left:442.365000px;}
.x14_c01256{left:471.750000px;}
.x29_c01256{left:478.650000px;}
.x1d_c01256{left:493.350000px;}
.x1e_c01256{left:515.805000px;}
.x31_c01256{left:522.720000px;}
.x37_c01256{left:531.360000px;}
.xc_c01256{left:533.085000px;}
.x2a_c01256{left:557.280000px;}
.x40_c01256{left:574.560000px;}
.x41_c01256{left:578.880000px;}
.x42_c01256{left:581.475000px;}
.x1f_c01256{left:583.200000px;}
.x15_c01256{left:594.435000px;}
.x8_c01256{left:600.480000px;}
.x49_c01256{left:602.205000px;}
.x32_c01256{left:616.890000px;}
.x38_c01256{left:629.850000px;}
.x4a_c01256{left:637.635000px;}
.x16_c01256{left:646.275000px;}
.x39_c01256{left:648.000000px;}
.x20_c01256{left:654.045000px;}
.x43_c01256{left:671.325000px;}
.x17_c01256{left:690.330000px;}
.x33_c01256{left:692.925000px;}
.x44_c01256{left:708.480000px;}
.x18_c01256{left:714.525000px;}
.x3a_c01256{left:716.250000px;}
.x21_c01256{left:723.165000px;}
.x45_c01256{left:729.210000px;}
.x2b_c01256{left:734.400000px;}
.x4b_c01256{left:743.910000px;}
.x3b_c01256{left:747.360000px;}
.x22_c01256{left:766.365000px;}
.x34_c01256{left:776.730000px;}
.x46_c01256{left:794.880000px;}
.x23_c01256{left:796.605000px;}
.x2c_c01256{left:809.565000px;}
.x4c_c01256{left:818.205000px;}
.x3c_c01256{left:819.930000px;}
.x19_c01256{left:827.715000px;}
.x24_c01256{left:835.485000px;}
.x47_c01256{left:858.810000px;}
.x1a_c01256{left:865.725000px;}
.x35_c01256{left:881.280000px;}
.x1_c01256{left:940.035000px;}
.x3_c01256{left:944.355000px;}
.x2_c01256{left:958.170000px;}
.x4_c01256{left:960.765000px;}
.x5_c01256{left:1020.390000px;}
.x6_c01256{left:1042.845000px;}
.x7_c01256{left:1064.445000px;}
@media print{
.v0_c01256{vertical-align:0.000000pt;}
.ls0_c01256{letter-spacing:0.000000pt;}
.ws0_c01256{word-spacing:0.000000pt;}
.fse_c01256{font-size:3.072000pt;}
.fs18_c01256{font-size:5.333333pt;}
.fs0_c01256{font-size:6.133333pt;}
.fs2_c01256{font-size:9.226667pt;}
.fs5_c01256{font-size:12.266667pt;}
.fs4_c01256{font-size:18.453333pt;}
.fsa_c01256{font-size:21.493333pt;}
.fsd_c01256{font-size:24.586667pt;}
.fs7_c01256{font-size:27.626667pt;}
.fs1_c01256{font-size:30.720000pt;}
.fs10_c01256{font-size:33.813333pt;}
.fs1a_c01256{font-size:36.853333pt;}
.fsb_c01256{font-size:39.946667pt;}
.fs8_c01256{font-size:46.080000pt;}
.fs17_c01256{font-size:49.173333pt;}
.fs9_c01256{font-size:52.213333pt;}
.fs12_c01256{font-size:55.306667pt;}
.fsc_c01256{font-size:58.346667pt;}
.fs6_c01256{font-size:61.440000pt;}
.fs19_c01256{font-size:67.573333pt;}
.fs1b_c01256{font-size:70.666667pt;}
.fs1c_c01256{font-size:73.706667pt;}
.fs14_c01256{font-size:79.893333pt;}
.fs13_c01256{font-size:82.933333pt;}
.fs3_c01256{font-size:92.160000pt;}
.fs15_c01256{font-size:95.253333pt;}
.fs16_c01256{font-size:98.293333pt;}
.fs11_c01256{font-size:125.973333pt;}
.fsf_c01256{font-size:172.053333pt;}
.y0_c01256{bottom:0.000000pt;}
.y4b_c01256{bottom:189.693333pt;}
.y4a_c01256{bottom:191.226667pt;}
.y49_c01256{bottom:193.533333pt;}
.y48_c01256{bottom:194.306667pt;}
.y42_c01256{bottom:207.360000pt;}
.y40_c01256{bottom:208.133333pt;}
.y45_c01256{bottom:211.200000pt;}
.y47_c01256{bottom:212.733333pt;}
.y41_c01256{bottom:213.506667pt;}
.y43_c01256{bottom:214.266667pt;}
.y44_c01256{bottom:216.573333pt;}
.y46_c01256{bottom:218.106667pt;}
.y3d_c01256{bottom:222.720000pt;}
.y3c_c01256{bottom:225.026667pt;}
.y3a_c01256{bottom:225.786667pt;}
.y38_c01256{bottom:226.560000pt;}
.y37_c01256{bottom:227.333333pt;}
.y3e_c01256{bottom:228.093333pt;}
.y3b_c01256{bottom:230.400000pt;}
.y39_c01256{bottom:231.173333pt;}
.y3f_c01256{bottom:231.933333pt;}
.y35_c01256{bottom:234.240000pt;}
.y33_c01256{bottom:235.773333pt;}
.y36_c01256{bottom:238.080000pt;}
.y34_c01256{bottom:239.613333pt;}
.y31_c01256{bottom:240.386667pt;}
.y32_c01256{bottom:242.693333pt;}
.y2b_c01256{bottom:244.226667pt;}
.y29_c01256{bottom:244.986667pt;}
.y2f_c01256{bottom:248.066667pt;}
.y2d_c01256{bottom:248.826667pt;}
.y2a_c01256{bottom:249.600000pt;}
.y30_c01256{bottom:251.133333pt;}
.y2e_c01256{bottom:251.906667pt;}
.y2c_c01256{bottom:252.666667pt;}
.y28_c01256{bottom:258.053333pt;}
.y27_c01256{bottom:258.813333pt;}
.y14_c01256{bottom:260.346667pt;}
.y25_c01256{bottom:263.426667pt;}
.y16_c01256{bottom:266.493333pt;}
.y1d_c01256{bottom:268.026667pt;}
.y24_c01256{bottom:268.800000pt;}
.y26_c01256{bottom:269.573333pt;}
.y1b_c01256{bottom:270.333333pt;}
.y22_c01256{bottom:271.866667pt;}
.y21_c01256{bottom:272.640000pt;}
.y23_c01256{bottom:273.413333pt;}
.y1f_c01256{bottom:274.173333pt;}
.y1e_c01256{bottom:275.706667pt;}
.y20_c01256{bottom:278.013333pt;}
.y18_c01256{bottom:278.786667pt;}
.y1c_c01256{bottom:279.546667pt;}
.y17_c01256{bottom:280.320000pt;}
.y19_c01256{bottom:284.160000pt;}
.y1a_c01256{bottom:285.693333pt;}
.y15_c01256{bottom:286.466667pt;}
.y11_c01256{bottom:288.773333pt;}
.y12_c01256{bottom:298.746667pt;}
.y13_c01256{bottom:301.053333pt;}
.y10_c01256{bottom:304.133333pt;}
.yf_c01256{bottom:666.626667pt;}
.ye_c01256{bottom:685.826667pt;}
.yd_c01256{bottom:686.586667pt;}
.yc_c01256{bottom:695.813333pt;}
.yb_c01256{bottom:701.186667pt;}
.ya_c01256{bottom:714.240000pt;}
.y9_c01256{bottom:731.133333pt;}
.y8_c01256{bottom:824.826667pt;}
.y7_c01256{bottom:837.120000pt;}
.y6_c01256{bottom:913.146667pt;}
.y5_c01256{bottom:919.293333pt;}
.y4_c01256{bottom:924.666667pt;}
.y3_c01256{bottom:944.640000pt;}
.y2_c01256{bottom:1018.373333pt;}
.y1_c01256{bottom:1022.213333pt;}
.h10_c01256{height:2.764500pt;}
.h1a_c01256{height:4.799479pt;}
.h2_c01256{height:5.519401pt;}
.h4_c01256{height:8.303099pt;}
.h7_c01256{height:11.038802pt;}
.h6_c01256{height:16.606198pt;}
.hc_c01256{height:19.341901pt;}
.hf_c01256{height:22.125599pt;}
.h9_c01256{height:24.861302pt;}
.h3_c01256{height:27.645000pt;}
.h12_c01256{height:30.428698pt;}
.h1c_c01256{height:33.164401pt;}
.hd_c01256{height:35.948099pt;}
.ha_c01256{height:41.467500pt;}
.h19_c01256{height:44.251198pt;}
.hb_c01256{height:46.986901pt;}
.h14_c01256{height:49.770599pt;}
.he_c01256{height:52.506302pt;}
.h8_c01256{height:55.290000pt;}
.h1b_c01256{height:60.809401pt;}
.h1d_c01256{height:63.593099pt;}
.h1e_c01256{height:66.328802pt;}
.h16_c01256{height:71.896198pt;}
.h15_c01256{height:74.631901pt;}
.h5_c01256{height:82.935000pt;}
.h17_c01256{height:85.718698pt;}
.h18_c01256{height:88.454401pt;}
.h13_c01256{height:113.363698pt;}
.h11_c01256{height:154.831198pt;}
.h1_c01256{height:1350.000000pt;}
.h0_c01256{height:1350.146667pt;}
.w0_c01256{width:953.853333pt;}
.w1_c01256{width:954.000000pt;}
.x0_c01256{left:0.000000pt;}
.x9_c01256{left:135.173333pt;}
.xd_c01256{left:183.546667pt;}
.x2d_c01256{left:188.160000pt;}
.x4d_c01256{left:190.466667pt;}
.x50_c01256{left:201.213333pt;}
.x25_c01256{left:225.786667pt;}
.xe_c01256{left:228.093333pt;}
.x4e_c01256{left:235.013333pt;}
.xf_c01256{left:238.853333pt;}
.x26_c01256{left:241.920000pt;}
.x2e_c01256{left:263.426667pt;}
.x10_c01256{left:265.733333pt;}
.x11_c01256{left:276.480000pt;}
.x12_c01256{left:284.933333pt;}
.x3d_c01256{left:291.840000pt;}
.x4f_c01256{left:301.826667pt;}
.xa_c01256{left:314.106667pt;}
.x27_c01256{left:317.946667pt;}
.x48_c01256{left:322.560000pt;}
.x3e_c01256{left:324.093333pt;}
.x13_c01256{left:337.146667pt;}
.x2f_c01256{left:339.453333pt;}
.x1b_c01256{left:360.186667pt;}
.xb_c01256{left:364.026667pt;}
.x51_c01256{left:368.640000pt;}
.x36_c01256{left:370.946667pt;}
.x28_c01256{left:377.093333pt;}
.x1c_c01256{left:381.693333pt;}
.x3f_c01256{left:387.066667pt;}
.x30_c01256{left:393.213333pt;}
.x14_c01256{left:419.333333pt;}
.x29_c01256{left:425.466667pt;}
.x1d_c01256{left:438.533333pt;}
.x1e_c01256{left:458.493333pt;}
.x31_c01256{left:464.640000pt;}
.x37_c01256{left:472.320000pt;}
.xc_c01256{left:473.853333pt;}
.x2a_c01256{left:495.360000pt;}
.x40_c01256{left:510.720000pt;}
.x41_c01256{left:514.560000pt;}
.x42_c01256{left:516.866667pt;}
.x1f_c01256{left:518.400000pt;}
.x15_c01256{left:528.386667pt;}
.x8_c01256{left:533.760000pt;}
.x49_c01256{left:535.293333pt;}
.x32_c01256{left:548.346667pt;}
.x38_c01256{left:559.866667pt;}
.x4a_c01256{left:566.786667pt;}
.x16_c01256{left:574.466667pt;}
.x39_c01256{left:576.000000pt;}
.x20_c01256{left:581.373333pt;}
.x43_c01256{left:596.733333pt;}
.x17_c01256{left:613.626667pt;}
.x33_c01256{left:615.933333pt;}
.x44_c01256{left:629.760000pt;}
.x18_c01256{left:635.133333pt;}
.x3a_c01256{left:636.666667pt;}
.x21_c01256{left:642.813333pt;}
.x45_c01256{left:648.186667pt;}
.x2b_c01256{left:652.800000pt;}
.x4b_c01256{left:661.253333pt;}
.x3b_c01256{left:664.320000pt;}
.x22_c01256{left:681.213333pt;}
.x34_c01256{left:690.426667pt;}
.x46_c01256{left:706.560000pt;}
.x23_c01256{left:708.093333pt;}
.x2c_c01256{left:719.613333pt;}
.x4c_c01256{left:727.293333pt;}
.x3c_c01256{left:728.826667pt;}
.x19_c01256{left:735.746667pt;}
.x24_c01256{left:742.653333pt;}
.x47_c01256{left:763.386667pt;}
.x1a_c01256{left:769.533333pt;}
.x35_c01256{left:783.360000pt;}
.x1_c01256{left:835.586667pt;}
.x3_c01256{left:839.426667pt;}
.x2_c01256{left:851.706667pt;}
.x4_c01256{left:854.013333pt;}
.x5_c01256{left:907.013333pt;}
.x6_c01256{left:926.973333pt;}
.x7_c01256{left:946.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01257;src:url('chunks/assets/font_539ee15518495efcf83ae9db.woff2')format("woff");}.ff1_c01257{font-family:ff1_c01257;line-height:1.109863;font-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_c01257{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c01257{transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066000,0.000000,0.000000,0.250000,0,0);}
.m0_c01257{transform:matrix(0.103025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103025,0.000000,0.000000,0.250000,0,0);}
.m8_c01257{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m11_c01257{transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);}
.m15_c01257{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c01257{transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);}
.m1_c01257{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m16_c01257{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.m19_c01257{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);}
.m3_c01257{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);}
.m22_c01257{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);}
.m1e_c01257{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);}
.m4_c01257{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);}
.m13_c01257{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);}
.m5_c01257{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);}
.ma_c01257{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);}
.m23_c01257{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c01257{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01257{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c01257{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m10_c01257{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m14_c01257{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m20_c01257{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01257{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01257{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01257{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m18_c01257{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c01257{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mf_c01257{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mc_c01257{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m17_c01257{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m24_c01257{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);}
.m1a_c01257{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m6_c01257{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01257{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m21_c01257{transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);}
.v0_c01257{vertical-align:0.000000px;}
.ls0_c01257{letter-spacing:0.000000px;}
.sc__c01257{text-shadow:none;}
.sc0_c01257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01257{-webkit-text-stroke:0px transparent;}
.sc0_c01257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01257{word-spacing:0.000000px;}
.fc0_c01257{color:transparent;}
.fsb_c01257{font-size:3.456000px;}
.fs10_c01257{font-size:6.000000px;}
.fs12_c01257{font-size:6.900000px;}
.fs5_c01257{font-size:10.380000px;}
.fsf_c01257{font-size:13.800000px;}
.fs11_c01257{font-size:17.280000px;}
.fsc_c01257{font-size:20.760000px;}
.fs4_c01257{font-size:24.180000px;}
.fs7_c01257{font-size:27.660000px;}
.fs6_c01257{font-size:31.080000px;}
.fs9_c01257{font-size:44.940000px;}
.fs3_c01257{font-size:48.360000px;}
.fs1_c01257{font-size:51.840000px;}
.fsd_c01257{font-size:58.740000px;}
.fs2_c01257{font-size:62.220000px;}
.fs0_c01257{font-size:65.640000px;}
.fs8_c01257{font-size:69.120000px;}
.fse_c01257{font-size:72.600000px;}
.fsa_c01257{font-size:79.500000px;}
.y0_c01257{bottom:0.000000px;}
.y22_c01257{bottom:1086.045000px;}
.y21_c01257{bottom:1092.960000px;}
.y25_c01257{bottom:1143.930000px;}
.y24_c01257{bottom:1146.525000px;}
.y15_c01257{bottom:1179.360000px;}
.y16_c01257{bottom:1180.230000px;}
.y13_c01257{bottom:1197.510000px;}
.y14_c01257{bottom:1208.730000px;}
.y11_c01257{bottom:1209.600000px;}
.y12_c01257{bottom:1213.920000px;}
.y10_c01257{bottom:1223.430000px;}
.yf_c01257{bottom:1232.925000px;}
.y23_c01257{bottom:1237.245000px;}
.ye_c01257{bottom:1249.350000px;}
.yd_c01257{bottom:1262.310000px;}
.yb_c01257{bottom:1283.910000px;}
.yc_c01257{bottom:1284.765000px;}
.ya_c01257{bottom:1301.190000px;}
.y9_c01257{bottom:1302.045000px;}
.y8_c01257{bottom:1310.685000px;}
.y5_c01257{bottom:1315.005000px;}
.y7_c01257{bottom:1318.470000px;}
.y6_c01257{bottom:1319.325000px;}
.y4_c01257{bottom:1332.285000px;}
.y3_c01257{bottom:1349.565000px;}
.y1_c01257{bottom:1350.435000px;}
.y2_c01257{bottom:1353.030000px;}
.y20_c01257{bottom:1370.310000px;}
.y1f_c01257{bottom:1373.760000px;}
.y1b_c01257{bottom:1374.630000px;}
.y1c_c01257{bottom:1375.485000px;}
.y1e_c01257{bottom:1376.355000px;}
.y1d_c01257{bottom:1377.210000px;}
.y19_c01257{bottom:1397.955000px;}
.y1a_c01257{bottom:1399.680000px;}
.y18_c01257{bottom:1410.045000px;}
.y17_c01257{bottom:1413.510000px;}
.hd_c01257{height:3.110063px;}
.h12_c01257{height:5.399414px;}
.h14_c01257{height:6.209326px;}
.h7_c01257{height:9.340986px;}
.h11_c01257{height:12.418652px;}
.h13_c01257{height:15.550313px;}
.he_c01257{height:18.681973px;}
.h6_c01257{height:21.759639px;}
.h9_c01257{height:24.891299px;}
.h8_c01257{height:27.968965px;}
.hb_c01257{height:40.441611px;}
.h5_c01257{height:43.519277px;}
.h3_c01257{height:46.650937px;}
.hf_c01257{height:52.860264px;}
.h4_c01257{height:55.991924px;}
.h2_c01257{height:59.069590px;}
.ha_c01257{height:62.201250px;}
.h10_c01257{height:65.332910px;}
.hc_c01257{height:71.542236px;}
.h0_c01257{height:1515.450000px;}
.h1_c01257{height:1515.750000px;}
.w1_c01257{width:1076.250000px;}
.w0_c01257{width:1076.550000px;}
.x0_c01257{left:0.000000px;}
.x1_c01257{left:2.595000px;}
.x2_c01257{left:19.875000px;}
.x8_c01257{left:22.470000px;}
.xc_c01257{left:27.645000px;}
.x9_c01257{left:29.370000px;}
.x4_c01257{left:31.110000px;}
.x3_c01257{left:34.560000px;}
.x6_c01257{left:37.155000px;}
.x5_c01257{left:44.070000px;}
.x19_c01257{left:49.245000px;}
.x18_c01257{left:51.840000px;}
.xb_c01257{left:56.160000px;}
.x7_c01257{left:57.885000px;}
.xa_c01257{left:63.075000px;}
.x1c_c01257{left:84.675000px;}
.x1d_c01257{left:102.810000px;}
.x1a_c01257{left:116.640000px;}
.x1b_c01257{left:126.150048px;}
.x11_c01257{left:300.675000px;}
.x12_c01257{left:348.195000px;}
.xf_c01257{left:402.630000px;}
.x13_c01257{left:538.275000px;}
.x14_c01257{left:568.515000px;}
.x10_c01257{left:630.720000px;}
.xd_c01257{left:686.880000px;}
.xe_c01257{left:700.710000px;}
.x15_c01257{left:707.610000px;}
.x16_c01257{left:770.685000px;}
.x17_c01257{left:840.675000px;}
@media print{
.v0_c01257{vertical-align:0.000000pt;}
.ls0_c01257{letter-spacing:0.000000pt;}
.ws0_c01257{word-spacing:0.000000pt;}
.fsb_c01257{font-size:3.072000pt;}
.fs10_c01257{font-size:5.333333pt;}
.fs12_c01257{font-size:6.133333pt;}
.fs5_c01257{font-size:9.226667pt;}
.fsf_c01257{font-size:12.266667pt;}
.fs11_c01257{font-size:15.360000pt;}
.fsc_c01257{font-size:18.453333pt;}
.fs4_c01257{font-size:21.493333pt;}
.fs7_c01257{font-size:24.586667pt;}
.fs6_c01257{font-size:27.626667pt;}
.fs9_c01257{font-size:39.946667pt;}
.fs3_c01257{font-size:42.986667pt;}
.fs1_c01257{font-size:46.080000pt;}
.fsd_c01257{font-size:52.213333pt;}
.fs2_c01257{font-size:55.306667pt;}
.fs0_c01257{font-size:58.346667pt;}
.fs8_c01257{font-size:61.440000pt;}
.fse_c01257{font-size:64.533333pt;}
.fsa_c01257{font-size:70.666667pt;}
.y0_c01257{bottom:0.000000pt;}
.y22_c01257{bottom:965.373333pt;}
.y21_c01257{bottom:971.520000pt;}
.y25_c01257{bottom:1016.826667pt;}
.y24_c01257{bottom:1019.133333pt;}
.y15_c01257{bottom:1048.320000pt;}
.y16_c01257{bottom:1049.093333pt;}
.y13_c01257{bottom:1064.453333pt;}
.y14_c01257{bottom:1074.426667pt;}
.y11_c01257{bottom:1075.200000pt;}
.y12_c01257{bottom:1079.040000pt;}
.y10_c01257{bottom:1087.493333pt;}
.yf_c01257{bottom:1095.933333pt;}
.y23_c01257{bottom:1099.773333pt;}
.ye_c01257{bottom:1110.533333pt;}
.yd_c01257{bottom:1122.053333pt;}
.yb_c01257{bottom:1141.253333pt;}
.yc_c01257{bottom:1142.013333pt;}
.ya_c01257{bottom:1156.613333pt;}
.y9_c01257{bottom:1157.373333pt;}
.y8_c01257{bottom:1165.053333pt;}
.y5_c01257{bottom:1168.893333pt;}
.y7_c01257{bottom:1171.973333pt;}
.y6_c01257{bottom:1172.733333pt;}
.y4_c01257{bottom:1184.253333pt;}
.y3_c01257{bottom:1199.613333pt;}
.y1_c01257{bottom:1200.386667pt;}
.y2_c01257{bottom:1202.693333pt;}
.y20_c01257{bottom:1218.053333pt;}
.y1f_c01257{bottom:1221.120000pt;}
.y1b_c01257{bottom:1221.893333pt;}
.y1c_c01257{bottom:1222.653333pt;}
.y1e_c01257{bottom:1223.426667pt;}
.y1d_c01257{bottom:1224.186667pt;}
.y19_c01257{bottom:1242.626667pt;}
.y1a_c01257{bottom:1244.160000pt;}
.y18_c01257{bottom:1253.373333pt;}
.y17_c01257{bottom:1256.453333pt;}
.hd_c01257{height:2.764500pt;}
.h12_c01257{height:4.799479pt;}
.h14_c01257{height:5.519401pt;}
.h7_c01257{height:8.303099pt;}
.h11_c01257{height:11.038802pt;}
.h13_c01257{height:13.822500pt;}
.he_c01257{height:16.606198pt;}
.h6_c01257{height:19.341901pt;}
.h9_c01257{height:22.125599pt;}
.h8_c01257{height:24.861302pt;}
.hb_c01257{height:35.948099pt;}
.h5_c01257{height:38.683802pt;}
.h3_c01257{height:41.467500pt;}
.hf_c01257{height:46.986901pt;}
.h4_c01257{height:49.770599pt;}
.h2_c01257{height:52.506302pt;}
.ha_c01257{height:55.290000pt;}
.h10_c01257{height:58.073698pt;}
.hc_c01257{height:63.593099pt;}
.h0_c01257{height:1347.066667pt;}
.h1_c01257{height:1347.333333pt;}
.w1_c01257{width:956.666667pt;}
.w0_c01257{width:956.933333pt;}
.x0_c01257{left:0.000000pt;}
.x1_c01257{left:2.306667pt;}
.x2_c01257{left:17.666667pt;}
.x8_c01257{left:19.973333pt;}
.xc_c01257{left:24.573333pt;}
.x9_c01257{left:26.106667pt;}
.x4_c01257{left:27.653333pt;}
.x3_c01257{left:30.720000pt;}
.x6_c01257{left:33.026667pt;}
.x5_c01257{left:39.173333pt;}
.x19_c01257{left:43.773333pt;}
.x18_c01257{left:46.080000pt;}
.xb_c01257{left:49.920000pt;}
.x7_c01257{left:51.453333pt;}
.xa_c01257{left:56.066667pt;}
.x1c_c01257{left:75.266667pt;}
.x1d_c01257{left:91.386667pt;}
.x1a_c01257{left:103.680000pt;}
.x1b_c01257{left:112.133376pt;}
.x11_c01257{left:267.266667pt;}
.x12_c01257{left:309.506667pt;}
.xf_c01257{left:357.893333pt;}
.x13_c01257{left:478.466667pt;}
.x14_c01257{left:505.346667pt;}
.x10_c01257{left:560.640000pt;}
.xd_c01257{left:610.560000pt;}
.xe_c01257{left:622.853333pt;}
.x15_c01257{left:628.986667pt;}
.x16_c01257{left:685.053333pt;}
.x17_c01257{left:747.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d291f7a67d4bcd3f4745bc39.woff2')format("woff");}.ff1_c01258{font-family:ff1_c01258;line-height:1.109863;font-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_c01258{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m6_c01258{transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);}
.m4_c01258{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m2_c01258{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m7_c01258{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c01258{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);}
.m1_c01258{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c01258{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m8_c01258{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.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;}
.fc0_c01258{color:transparent;}
.fs4_c01258{font-size:6.000000px;}
.fs7_c01258{font-size:17.280000px;}
.fs6_c01258{font-size:20.760000px;}
.fs3_c01258{font-size:24.180000px;}
.fs0_c01258{font-size:34.560000px;}
.fs1_c01258{font-size:51.840000px;}
.fs2_c01258{font-size:65.640000px;}
.fs5_c01258{font-size:76.020000px;}
.y0_c01258{bottom:0.000000px;}
.y9_c01258{bottom:158.970000px;}
.y7_c01258{bottom:386.205000px;}
.y6_c01258{bottom:400.035000px;}
.y5_c01258{bottom:406.080000px;}
.y4_c01258{bottom:410.400000px;}
.y3_c01258{bottom:424.230000px;}
.y8_c01258{bottom:754.275000px;}
.y2_c01258{bottom:1194.915000px;}
.y1_c01258{bottom:1207.875000px;}
.h6_c01258{height:5.399414px;}
.h9_c01258{height:15.550313px;}
.h8_c01258{height:18.681973px;}
.h5_c01258{height:21.759639px;}
.h2_c01258{height:31.100625px;}
.h3_c01258{height:46.650937px;}
.h4_c01258{height:59.069590px;}
.h7_c01258{height:68.410576px;}
.h1_c01258{height:1518.750000px;}
.h0_c01258{height:1518.915000px;}
.w0_c01258{width:1073.085000px;}
.w1_c01258{width:1073.250000px;}
.x0_c01258{left:0.000000px;}
.x5_c01258{left:939.165000px;}
.x6_c01258{left:977.190000px;}
.x4_c01258{left:1010.010000px;}
.x2_c01258{left:1017.795000px;}
.x3_c01258{left:1031.610000px;}
.x1_c01258{left:1037.670000px;}
@media print{
.v0_c01258{vertical-align:0.000000pt;}
.ls0_c01258{letter-spacing:0.000000pt;}
.ws0_c01258{word-spacing:0.000000pt;}
.fs4_c01258{font-size:5.333333pt;}
.fs7_c01258{font-size:15.360000pt;}
.fs6_c01258{font-size:18.453333pt;}
.fs3_c01258{font-size:21.493333pt;}
.fs0_c01258{font-size:30.720000pt;}
.fs1_c01258{font-size:46.080000pt;}
.fs2_c01258{font-size:58.346667pt;}
.fs5_c01258{font-size:67.573333pt;}
.y0_c01258{bottom:0.000000pt;}
.y9_c01258{bottom:141.306667pt;}
.y7_c01258{bottom:343.293333pt;}
.y6_c01258{bottom:355.586667pt;}
.y5_c01258{bottom:360.960000pt;}
.y4_c01258{bottom:364.800000pt;}
.y3_c01258{bottom:377.093333pt;}
.y8_c01258{bottom:670.466667pt;}
.y2_c01258{bottom:1062.146667pt;}
.y1_c01258{bottom:1073.666667pt;}
.h6_c01258{height:4.799479pt;}
.h9_c01258{height:13.822500pt;}
.h8_c01258{height:16.606198pt;}
.h5_c01258{height:19.341901pt;}
.h2_c01258{height:27.645000pt;}
.h3_c01258{height:41.467500pt;}
.h4_c01258{height:52.506302pt;}
.h7_c01258{height:60.809401pt;}
.h1_c01258{height:1350.000000pt;}
.h0_c01258{height:1350.146667pt;}
.w0_c01258{width:953.853333pt;}
.w1_c01258{width:954.000000pt;}
.x0_c01258{left:0.000000pt;}
.x5_c01258{left:834.813333pt;}
.x6_c01258{left:868.613333pt;}
.x4_c01258{left:897.786667pt;}
.x2_c01258{left:904.706667pt;}
.x3_c01258{left:916.986667pt;}
.x1_c01258{left:922.373333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_73ac59b3f75a6be3dc7304fb.woff2')format("woff");}.ff1_c01259{font-family:ff1_c01259;line-height:1.109863;font-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_c01259{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01259{transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);}
.m4a_c01259{transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);}
.m3b_c01259{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m13_c01259{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m60_c01259{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m10_c01259{transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124950,0.000000,0.000000,0.250000,0,0);}
.m1d_c01259{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);}
.m4d_c01259{transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);}
.m3d_c01259{transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);}
.m49_c01259{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mc_c01259{transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);}
.m3_c01259{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m61_c01259{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.m53_c01259{transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);}
.m4f_c01259{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_c01259{transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);}
.mf_c01259{transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);}
.m5f_c01259{transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);}
.m0_c01259{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.md_c01259{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m55_c01259{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m57_c01259{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);}
.m45_c01259{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m46_c01259{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);}
.m39_c01259{transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);}
.m5e_c01259{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);}
.m44_c01259{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);}
.m1c_c01259{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.m7_c01259{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m3a_c01259{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);}
.m37_c01259{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);}
.m47_c01259{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);}
.m1_c01259{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);}
.m4e_c01259{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m5d_c01259{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.m31_c01259{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);}
.m22_c01259{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);}
.m51_c01259{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);}
.m2_c01259{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.m11_c01259{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);}
.m59_c01259{transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);}
.m50_c01259{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m56_c01259{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);}
.m36_c01259{transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);}
.m35_c01259{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);}
.m20_c01259{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m4c_c01259{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);}
.m66_c01259{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);}
.m2b_c01259{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25_c01259{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);}
.m52_c01259{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);}
.m58_c01259{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c01259{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m33_c01259{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m24_c01259{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);}
.m1a_c01259{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m64_c01259{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);}
.m38_c01259{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01259{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m65_c01259{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);}
.m17_c01259{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m40_c01259{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);}
.m12_c01259{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);}
.m34_c01259{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01259{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);}
.me_c01259{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m26_c01259{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);}
.m32_c01259{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01259{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01259{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14_c01259{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c01259{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m21_c01259{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01259{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01259{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);}
.m19_c01259{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m42_c01259{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m41_c01259{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);}
.m9_c01259{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01259{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m54_c01259{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01259{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m15_c01259{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);}
.m63_c01259{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5_c01259{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);}
.m16_c01259{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m30_c01259{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);}
.m4_c01259{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01259{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01259{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01259{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);}
.m3f_c01259{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m43_c01259{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01259{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m67_c01259{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.ma_c01259{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01259{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m23_c01259{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);}
.m28_c01259{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m48_c01259{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m62_c01259{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m27_c01259{transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01259{transform:matrix(2.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.030000,0.000000,0.000000,0.250000,0,0);}
.v1_c01259{vertical-align:-3.480000px;}
.v0_c01259{vertical-align:0.000000px;}
.ls1_c01259{letter-spacing:0.000000px;}
.ls0_c01259{letter-spacing:190.400700px;}
.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;}
.fs3_c01259{font-size:3.456000px;}
.fs16_c01259{font-size:6.900000px;}
.fs1c_c01259{font-size:10.380000px;}
.fs1e_c01259{font-size:13.800000px;}
.fs8_c01259{font-size:17.280000px;}
.fs14_c01259{font-size:20.760000px;}
.fs12_c01259{font-size:24.180000px;}
.fs2_c01259{font-size:27.660000px;}
.fs0_c01259{font-size:31.080000px;}
.fs10_c01259{font-size:34.560000px;}
.fs1_c01259{font-size:38.040000px;}
.fs13_c01259{font-size:41.460000px;}
.fse_c01259{font-size:44.940000px;}
.fs15_c01259{font-size:48.360000px;}
.fsf_c01259{font-size:51.840000px;}
.fs4_c01259{font-size:55.320000px;}
.fs7_c01259{font-size:58.740000px;}
.fs5_c01259{font-size:62.220000px;}
.fs18_c01259{font-size:65.640000px;}
.fs9_c01259{font-size:69.120000px;}
.fsc_c01259{font-size:72.600000px;}
.fs1d_c01259{font-size:76.020000px;}
.fs11_c01259{font-size:79.500000px;}
.fsd_c01259{font-size:86.400000px;}
.fsa_c01259{font-size:89.880000px;}
.fsb_c01259{font-size:93.300000px;}
.fs17_c01259{font-size:96.780000px;}
.fs6_c01259{font-size:100.200000px;}
.fs1b_c01259{font-size:103.680000px;}
.fs19_c01259{font-size:117.480000px;}
.fs1a_c01259{font-size:120.960000px;}
.y0_c01259{bottom:0.000000px;}
.y4b_c01259{bottom:1245.030000px;}
.y4c_c01259{bottom:1246.755000px;}
.y51_c01259{bottom:1247.610000px;}
.y48_c01259{bottom:1248.480000px;}
.y4a_c01259{bottom:1249.350000px;}
.y49_c01259{bottom:1250.205000px;}
.y50_c01259{bottom:1251.075000px;}
.y4e_c01259{bottom:1255.395000px;}
.y4f_c01259{bottom:1262.310000px;}
.y46_c01259{bottom:1264.035000px;}
.y4d_c01259{bottom:1265.760000px;}
.y47_c01259{bottom:1266.630000px;}
.y43_c01259{bottom:1267.485000px;}
.y44_c01259{bottom:1269.210000px;}
.y45_c01259{bottom:1270.080000px;}
.y40_c01259{bottom:1270.950000px;}
.y3f_c01259{bottom:1271.805000px;}
.y42_c01259{bottom:1275.270000px;}
.y41_c01259{bottom:1276.125000px;}
.y3c_c01259{bottom:1279.590000px;}
.y3d_c01259{bottom:1281.315000px;}
.y3a_c01259{bottom:1282.170000px;}
.y39_c01259{bottom:1283.040000px;}
.y3e_c01259{bottom:1283.910000px;}
.y36_c01259{bottom:1285.635000px;}
.y3b_c01259{bottom:1286.490000px;}
.y35_c01259{bottom:1289.085000px;}
.y34_c01259{bottom:1296.000000px;}
.y37_c01259{bottom:1296.870000px;}
.y38_c01259{bottom:1298.595000px;}
.y2d_c01259{bottom:1301.190000px;}
.y31_c01259{bottom:1304.640000px;}
.y30_c01259{bottom:1305.510000px;}
.y2f_c01259{bottom:1306.365000px;}
.y2e_c01259{bottom:1307.235000px;}
.y33_c01259{bottom:1308.090000px;}
.y2a_c01259{bottom:1308.960000px;}
.y32_c01259{bottom:1309.830000px;}
.y2c_c01259{bottom:1310.685000px;}
.y28_c01259{bottom:1311.555000px;}
.y2b_c01259{bottom:1315.005000px;}
.y25_c01259{bottom:1319.325000px;}
.y23_c01259{bottom:1320.195000px;}
.y29_c01259{bottom:1321.050000px;}
.y24_c01259{bottom:1321.920000px;}
.y27_c01259{bottom:1322.790000px;}
.y26_c01259{bottom:1323.645000px;}
.y21_c01259{bottom:1324.515000px;}
.y22_c01259{bottom:1325.370000px;}
.y18_c01259{bottom:1326.240000px;}
.y1f_c01259{bottom:1327.110000px;}
.y20_c01259{bottom:1328.835000px;}
.y1c_c01259{bottom:1329.690000px;}
.y1a_c01259{bottom:1330.560000px;}
.y1b_c01259{bottom:1331.430000px;}
.y19_c01259{bottom:1334.010000px;}
.y1e_c01259{bottom:1334.880000px;}
.y1d_c01259{bottom:1335.750000px;}
.y17_c01259{bottom:1336.605000px;}
.y16_c01259{bottom:1339.200000px;}
.y14_c01259{bottom:1341.795000px;}
.y15_c01259{bottom:1344.390000px;}
.ye_c01259{bottom:1345.245000px;}
.yf_c01259{bottom:1346.115000px;}
.y10_c01259{bottom:1347.840000px;}
.yc_c01259{bottom:1348.710000px;}
.yb_c01259{bottom:1349.565000px;}
.yd_c01259{bottom:1350.435000px;}
.y13_c01259{bottom:1351.290000px;}
.y12_c01259{bottom:1352.160000px;}
.y11_c01259{bottom:1353.030000px;}
.y7_c01259{bottom:1373.760000px;}
.y9_c01259{bottom:1378.080000px;}
.y8_c01259{bottom:1378.950000px;}
.y6_c01259{bottom:1379.805000px;}
.y5_c01259{bottom:1380.675000px;}
.ya_c01259{bottom:1385.850000px;}
.y4_c01259{bottom:1398.810000px;}
.y3_c01259{bottom:1400.550000px;}
.y2_c01259{bottom:1429.920000px;}
.y1_c01259{bottom:1440.285000px;}
.h5_c01259{height:3.110063px;}
.h18_c01259{height:6.209326px;}
.h1e_c01259{height:9.340986px;}
.h20_c01259{height:12.418652px;}
.ha_c01259{height:15.550313px;}
.h16_c01259{height:18.681973px;}
.h14_c01259{height:21.759639px;}
.h4_c01259{height:24.891299px;}
.h2_c01259{height:27.968965px;}
.h12_c01259{height:31.100625px;}
.h3_c01259{height:34.232285px;}
.h15_c01259{height:37.309951px;}
.h10_c01259{height:40.441611px;}
.h17_c01259{height:43.519277px;}
.h11_c01259{height:46.650937px;}
.h6_c01259{height:49.782598px;}
.h9_c01259{height:52.860264px;}
.h7_c01259{height:55.991924px;}
.h1a_c01259{height:59.069590px;}
.hb_c01259{height:62.201250px;}
.he_c01259{height:65.332910px;}
.h1f_c01259{height:68.410576px;}
.h13_c01259{height:71.542236px;}
.hf_c01259{height:77.751563px;}
.hc_c01259{height:80.883223px;}
.hd_c01259{height:83.960889px;}
.h19_c01259{height:87.092549px;}
.h8_c01259{height:90.170215px;}
.h1d_c01259{height:93.301875px;}
.h1b_c01259{height:105.720527px;}
.h1c_c01259{height:108.852188px;}
.h0_c01259{height:1515.450000px;}
.h1_c01259{height:1515.750000px;}
.w1_c01259{width:1076.250000px;}
.w0_c01259{width:1076.550000px;}
.x0_c01259{left:0.000000px;}
.x55_c01259{left:231.555000px;}
.xc_c01259{left:234.150000px;}
.x40_c01259{left:237.600000px;}
.x1e_c01259{left:242.790000px;}
.x4d_c01259{left:247.965000px;}
.x1f_c01259{left:257.475000px;}
.xd_c01259{left:266.970000px;}
.x32_c01259{left:281.670000px;}
.x20_c01259{left:285.120000px;}
.x5_c01259{left:290.310000px;}
.x56_c01259{left:292.035000px;}
.x41_c01259{left:301.530000px;}
.x1_c01259{left:305.850000px;}
.x2_c01259{left:309.315000px;}
.x33_c01259{left:328.320000px;}
.x21_c01259{left:330.915000px;}
.x42_c01259{left:332.640000px;}
.x60_c01259{left:335.235000px;}
.xe_c01259{left:339.555000px;}
.x6_c01259{left:343.005000px;}
.x4e_c01259{left:358.560000px;}
.x22_c01259{left:364.605000px;}
.x57_c01259{left:370.650000px;}
.x43_c01259{left:373.245000px;}
.xf_c01259{left:374.970000px;}
.x61_c01259{left:377.565000px;}
.x23_c01259{left:381.030000px;}
.x34_c01259{left:384.480000px;}
.x35_c01259{left:389.670000px;}
.x24_c01259{left:393.120000px;}
.x58_c01259{left:395.715000px;}
.x36_c01259{left:402.630000px;}
.x10_c01259{left:411.270000px;}
.x4f_c01259{left:416.445000px;}
.x37_c01259{left:423.360000px;}
.x25_c01259{left:427.680000px;}
.x44_c01259{left:438.915000px;}
.x38_c01259{left:441.510000px;}
.x11_c01259{left:445.830000px;}
.x50_c01259{left:449.280000px;}
.x59_c01259{left:462.240000px;}
.x62_c01259{left:469.155000px;}
.x26_c01259{left:476.070000px;}
.x27_c01259{left:479.520000px;}
.x12_c01259{left:482.115000px;}
.x5a_c01259{left:494.205000px;}
.x39_c01259{left:500.250000px;}
.x51_c01259{left:505.440000px;}
.x7_c01259{left:516.675000px;}
.x63_c01259{left:520.125000px;}
.x28_c01259{left:528.765000px;}
.x64_c01259{left:531.360456px;}
.x45_c01259{left:538.275000px;}
.x13_c01259{left:540.870000px;}
.x52_c01259{left:551.235000px;}
.x8_c01259{left:553.830000px;}
.x14_c01259{left:555.555000px;}
.x29_c01259{left:564.195000px;}
.x5b_c01259{left:569.370000px;}
.x2a_c01259{left:571.110000px;}
.x15_c01259{left:572.835000px;}
.x16_c01259{left:590.115000px;}
.x2b_c01259{left:591.840000px;}
.x3a_c01259{left:600.480000px;}
.x46_c01259{left:618.630000px;}
.x17_c01259{left:620.355000px;}
.x5c_c01259{left:623.805000px;}
.x65_c01259{left:628.125000px;}
.x3b_c01259{left:629.850000px;}
.x3_c01259{left:631.590000px;}
.x3c_c01259{left:644.550000px;}
.x66_c01259{left:648.000000px;}
.x5d_c01259{left:649.725000px;}
.x47_c01259{left:653.190000px;}
.x18_c01259{left:660.090000px;}
.x2c_c01259{left:667.005000px;}
.x2d_c01259{left:676.515000px;}
.x53_c01259{left:679.965000px;}
.x48_c01259{left:686.010000px;}
.x19_c01259{left:691.200000px;}
.x67_c01259{left:700.710000px;}
.x9_c01259{left:702.435000px;}
.x4_c01259{left:708.480000px;}
.x3d_c01259{left:711.930000px;}
.x54_c01259{left:720.570000px;}
.x3e_c01259{left:725.760000px;}
.x49_c01259{left:735.270000px;}
.x4a_c01259{left:748.230000px;}
.x5e_c01259{left:751.680000px;}
.x1a_c01259{left:754.275000px;}
.x2e_c01259{left:758.595000px;}
.x4b_c01259{left:768.090000px;}
.x2f_c01259{left:769.830000px;}
.x1b_c01259{left:771.555000px;}
.xa_c01259{left:773.280000px;}
.x30_c01259{left:789.690000px;}
.x3f_c01259{left:795.750000px;}
.x1c_c01259{left:821.670000px;}
.x5f_c01259{left:823.395000px;}
.x31_c01259{left:832.890000px;}
.x1d_c01259{left:847.590000px;}
.x4c_c01259{left:849.315000px;}
.x68_c01259{left:852.765000px;}
.x69_c01259{left:858.810000px;}
.x6a_c01259{left:892.515000px;}
.x6b_c01259{left:907.200000px;}
.x6c_c01259{left:909.795000px;}
.xb_c01259{left:942.630000px;}
@media print{
.v1_c01259{vertical-align:-3.093333pt;}
.v0_c01259{vertical-align:0.000000pt;}
.ls1_c01259{letter-spacing:0.000000pt;}
.ls0_c01259{letter-spacing:169.245067pt;}
.ws0_c01259{word-spacing:0.000000pt;}
.fs3_c01259{font-size:3.072000pt;}
.fs16_c01259{font-size:6.133333pt;}
.fs1c_c01259{font-size:9.226667pt;}
.fs1e_c01259{font-size:12.266667pt;}
.fs8_c01259{font-size:15.360000pt;}
.fs14_c01259{font-size:18.453333pt;}
.fs12_c01259{font-size:21.493333pt;}
.fs2_c01259{font-size:24.586667pt;}
.fs0_c01259{font-size:27.626667pt;}
.fs10_c01259{font-size:30.720000pt;}
.fs1_c01259{font-size:33.813333pt;}
.fs13_c01259{font-size:36.853333pt;}
.fse_c01259{font-size:39.946667pt;}
.fs15_c01259{font-size:42.986667pt;}
.fsf_c01259{font-size:46.080000pt;}
.fs4_c01259{font-size:49.173333pt;}
.fs7_c01259{font-size:52.213333pt;}
.fs5_c01259{font-size:55.306667pt;}
.fs18_c01259{font-size:58.346667pt;}
.fs9_c01259{font-size:61.440000pt;}
.fsc_c01259{font-size:64.533333pt;}
.fs1d_c01259{font-size:67.573333pt;}
.fs11_c01259{font-size:70.666667pt;}
.fsd_c01259{font-size:76.800000pt;}
.fsa_c01259{font-size:79.893333pt;}
.fsb_c01259{font-size:82.933333pt;}
.fs17_c01259{font-size:86.026667pt;}
.fs6_c01259{font-size:89.066667pt;}
.fs1b_c01259{font-size:92.160000pt;}
.fs19_c01259{font-size:104.426667pt;}
.fs1a_c01259{font-size:107.520000pt;}
.y0_c01259{bottom:0.000000pt;}
.y4b_c01259{bottom:1106.693333pt;}
.y4c_c01259{bottom:1108.226667pt;}
.y51_c01259{bottom:1108.986667pt;}
.y48_c01259{bottom:1109.760000pt;}
.y4a_c01259{bottom:1110.533333pt;}
.y49_c01259{bottom:1111.293333pt;}
.y50_c01259{bottom:1112.066667pt;}
.y4e_c01259{bottom:1115.906667pt;}
.y4f_c01259{bottom:1122.053333pt;}
.y46_c01259{bottom:1123.586667pt;}
.y4d_c01259{bottom:1125.120000pt;}
.y47_c01259{bottom:1125.893333pt;}
.y43_c01259{bottom:1126.653333pt;}
.y44_c01259{bottom:1128.186667pt;}
.y45_c01259{bottom:1128.960000pt;}
.y40_c01259{bottom:1129.733333pt;}
.y3f_c01259{bottom:1130.493333pt;}
.y42_c01259{bottom:1133.573333pt;}
.y41_c01259{bottom:1134.333333pt;}
.y3c_c01259{bottom:1137.413333pt;}
.y3d_c01259{bottom:1138.946667pt;}
.y3a_c01259{bottom:1139.706667pt;}
.y39_c01259{bottom:1140.480000pt;}
.y3e_c01259{bottom:1141.253333pt;}
.y36_c01259{bottom:1142.786667pt;}
.y3b_c01259{bottom:1143.546667pt;}
.y35_c01259{bottom:1145.853333pt;}
.y34_c01259{bottom:1152.000000pt;}
.y37_c01259{bottom:1152.773333pt;}
.y38_c01259{bottom:1154.306667pt;}
.y2d_c01259{bottom:1156.613333pt;}
.y31_c01259{bottom:1159.680000pt;}
.y30_c01259{bottom:1160.453333pt;}
.y2f_c01259{bottom:1161.213333pt;}
.y2e_c01259{bottom:1161.986667pt;}
.y33_c01259{bottom:1162.746667pt;}
.y2a_c01259{bottom:1163.520000pt;}
.y32_c01259{bottom:1164.293333pt;}
.y2c_c01259{bottom:1165.053333pt;}
.y28_c01259{bottom:1165.826667pt;}
.y2b_c01259{bottom:1168.893333pt;}
.y25_c01259{bottom:1172.733333pt;}
.y23_c01259{bottom:1173.506667pt;}
.y29_c01259{bottom:1174.266667pt;}
.y24_c01259{bottom:1175.040000pt;}
.y27_c01259{bottom:1175.813333pt;}
.y26_c01259{bottom:1176.573333pt;}
.y21_c01259{bottom:1177.346667pt;}
.y22_c01259{bottom:1178.106667pt;}
.y18_c01259{bottom:1178.880000pt;}
.y1f_c01259{bottom:1179.653333pt;}
.y20_c01259{bottom:1181.186667pt;}
.y1c_c01259{bottom:1181.946667pt;}
.y1a_c01259{bottom:1182.720000pt;}
.y1b_c01259{bottom:1183.493333pt;}
.y19_c01259{bottom:1185.786667pt;}
.y1e_c01259{bottom:1186.560000pt;}
.y1d_c01259{bottom:1187.333333pt;}
.y17_c01259{bottom:1188.093333pt;}
.y16_c01259{bottom:1190.400000pt;}
.y14_c01259{bottom:1192.706667pt;}
.y15_c01259{bottom:1195.013333pt;}
.ye_c01259{bottom:1195.773333pt;}
.yf_c01259{bottom:1196.546667pt;}
.y10_c01259{bottom:1198.080000pt;}
.yc_c01259{bottom:1198.853333pt;}
.yb_c01259{bottom:1199.613333pt;}
.yd_c01259{bottom:1200.386667pt;}
.y13_c01259{bottom:1201.146667pt;}
.y12_c01259{bottom:1201.920000pt;}
.y11_c01259{bottom:1202.693333pt;}
.y7_c01259{bottom:1221.120000pt;}
.y9_c01259{bottom:1224.960000pt;}
.y8_c01259{bottom:1225.733333pt;}
.y6_c01259{bottom:1226.493333pt;}
.y5_c01259{bottom:1227.266667pt;}
.ya_c01259{bottom:1231.866667pt;}
.y4_c01259{bottom:1243.386667pt;}
.y3_c01259{bottom:1244.933333pt;}
.y2_c01259{bottom:1271.040000pt;}
.y1_c01259{bottom:1280.253333pt;}
.h5_c01259{height:2.764500pt;}
.h18_c01259{height:5.519401pt;}
.h1e_c01259{height:8.303099pt;}
.h20_c01259{height:11.038802pt;}
.ha_c01259{height:13.822500pt;}
.h16_c01259{height:16.606198pt;}
.h14_c01259{height:19.341901pt;}
.h4_c01259{height:22.125599pt;}
.h2_c01259{height:24.861302pt;}
.h12_c01259{height:27.645000pt;}
.h3_c01259{height:30.428698pt;}
.h15_c01259{height:33.164401pt;}
.h10_c01259{height:35.948099pt;}
.h17_c01259{height:38.683802pt;}
.h11_c01259{height:41.467500pt;}
.h6_c01259{height:44.251198pt;}
.h9_c01259{height:46.986901pt;}
.h7_c01259{height:49.770599pt;}
.h1a_c01259{height:52.506302pt;}
.hb_c01259{height:55.290000pt;}
.he_c01259{height:58.073698pt;}
.h1f_c01259{height:60.809401pt;}
.h13_c01259{height:63.593099pt;}
.hf_c01259{height:69.112500pt;}
.hc_c01259{height:71.896198pt;}
.hd_c01259{height:74.631901pt;}
.h19_c01259{height:77.415599pt;}
.h8_c01259{height:80.151302pt;}
.h1d_c01259{height:82.935000pt;}
.h1b_c01259{height:93.973802pt;}
.h1c_c01259{height:96.757500pt;}
.h0_c01259{height:1347.066667pt;}
.h1_c01259{height:1347.333333pt;}
.w1_c01259{width:956.666667pt;}
.w0_c01259{width:956.933333pt;}
.x0_c01259{left:0.000000pt;}
.x55_c01259{left:205.826667pt;}
.xc_c01259{left:208.133333pt;}
.x40_c01259{left:211.200000pt;}
.x1e_c01259{left:215.813333pt;}
.x4d_c01259{left:220.413333pt;}
.x1f_c01259{left:228.866667pt;}
.xd_c01259{left:237.306667pt;}
.x32_c01259{left:250.373333pt;}
.x20_c01259{left:253.440000pt;}
.x5_c01259{left:258.053333pt;}
.x56_c01259{left:259.586667pt;}
.x41_c01259{left:268.026667pt;}
.x1_c01259{left:271.866667pt;}
.x2_c01259{left:274.946667pt;}
.x33_c01259{left:291.840000pt;}
.x21_c01259{left:294.146667pt;}
.x42_c01259{left:295.680000pt;}
.x60_c01259{left:297.986667pt;}
.xe_c01259{left:301.826667pt;}
.x6_c01259{left:304.893333pt;}
.x4e_c01259{left:318.720000pt;}
.x22_c01259{left:324.093333pt;}
.x57_c01259{left:329.466667pt;}
.x43_c01259{left:331.773333pt;}
.xf_c01259{left:333.306667pt;}
.x61_c01259{left:335.613333pt;}
.x23_c01259{left:338.693333pt;}
.x34_c01259{left:341.760000pt;}
.x35_c01259{left:346.373333pt;}
.x24_c01259{left:349.440000pt;}
.x58_c01259{left:351.746667pt;}
.x36_c01259{left:357.893333pt;}
.x10_c01259{left:365.573333pt;}
.x4f_c01259{left:370.173333pt;}
.x37_c01259{left:376.320000pt;}
.x25_c01259{left:380.160000pt;}
.x44_c01259{left:390.146667pt;}
.x38_c01259{left:392.453333pt;}
.x11_c01259{left:396.293333pt;}
.x50_c01259{left:399.360000pt;}
.x59_c01259{left:410.880000pt;}
.x62_c01259{left:417.026667pt;}
.x26_c01259{left:423.173333pt;}
.x27_c01259{left:426.240000pt;}
.x12_c01259{left:428.546667pt;}
.x5a_c01259{left:439.293333pt;}
.x39_c01259{left:444.666667pt;}
.x51_c01259{left:449.280000pt;}
.x7_c01259{left:459.266667pt;}
.x63_c01259{left:462.333333pt;}
.x28_c01259{left:470.013333pt;}
.x64_c01259{left:472.320405pt;}
.x45_c01259{left:478.466667pt;}
.x13_c01259{left:480.773333pt;}
.x52_c01259{left:489.986667pt;}
.x8_c01259{left:492.293333pt;}
.x14_c01259{left:493.826667pt;}
.x29_c01259{left:501.506667pt;}
.x5b_c01259{left:506.106667pt;}
.x2a_c01259{left:507.653333pt;}
.x15_c01259{left:509.186667pt;}
.x16_c01259{left:524.546667pt;}
.x2b_c01259{left:526.080000pt;}
.x3a_c01259{left:533.760000pt;}
.x46_c01259{left:549.893333pt;}
.x17_c01259{left:551.426667pt;}
.x5c_c01259{left:554.493333pt;}
.x65_c01259{left:558.333333pt;}
.x3b_c01259{left:559.866667pt;}
.x3_c01259{left:561.413333pt;}
.x3c_c01259{left:572.933333pt;}
.x66_c01259{left:576.000000pt;}
.x5d_c01259{left:577.533333pt;}
.x47_c01259{left:580.613333pt;}
.x18_c01259{left:586.746667pt;}
.x2c_c01259{left:592.893333pt;}
.x2d_c01259{left:601.346667pt;}
.x53_c01259{left:604.413333pt;}
.x48_c01259{left:609.786667pt;}
.x19_c01259{left:614.400000pt;}
.x67_c01259{left:622.853333pt;}
.x9_c01259{left:624.386667pt;}
.x4_c01259{left:629.760000pt;}
.x3d_c01259{left:632.826667pt;}
.x54_c01259{left:640.506667pt;}
.x3e_c01259{left:645.120000pt;}
.x49_c01259{left:653.573333pt;}
.x4a_c01259{left:665.093333pt;}
.x5e_c01259{left:668.160000pt;}
.x1a_c01259{left:670.466667pt;}
.x2e_c01259{left:674.306667pt;}
.x4b_c01259{left:682.746667pt;}
.x2f_c01259{left:684.293333pt;}
.x1b_c01259{left:685.826667pt;}
.xa_c01259{left:687.360000pt;}
.x30_c01259{left:701.946667pt;}
.x3f_c01259{left:707.333333pt;}
.x1c_c01259{left:730.373333pt;}
.x5f_c01259{left:731.906667pt;}
.x31_c01259{left:740.346667pt;}
.x1d_c01259{left:753.413333pt;}
.x4c_c01259{left:754.946667pt;}
.x68_c01259{left:758.013333pt;}
.x69_c01259{left:763.386667pt;}
.x6a_c01259{left:793.346667pt;}
.x6b_c01259{left:806.400000pt;}
.x6c_c01259{left:808.706667pt;}
.xb_c01259{left:837.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33c40f4febe26a6933406217.woff2')format("woff");}.ff1_c01260{font-family:ff1_c01260;line-height:1.109863;font-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_c01260{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c01260{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m0_c01260{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,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;}
.fs1_c01260{font-size:3.456000px;}
.fs0_c01260{font-size:17.280000px;}
.fs2_c01260{font-size:72.600000px;}
.y0_c01260{bottom:0.000000px;}
.y3_c01260{bottom:235.005000px;}
.y1_c01260{bottom:266.115000px;}
.y2_c01260{bottom:268.710000px;}
.h3_c01260{height:3.110063px;}
.h2_c01260{height:15.550313px;}
.h4_c01260{height:65.332910px;}
.h1_c01260{height:1518.750000px;}
.h0_c01260{height:1518.915000px;}
.w1_c01260{width:1086.750000px;}
.w0_c01260{width:1086.915000px;}
.x0_c01260{left:0.000000px;}
.x3_c01260{left:1037.670000px;}
.x1_c01260{left:1054.080000px;}
.x2_c01260{left:1075.680000px;}
.x4_c01260{left:1082.595000px;}
@media print{
.v0_c01260{vertical-align:0.000000pt;}
.ls0_c01260{letter-spacing:0.000000pt;}
.ws0_c01260{word-spacing:0.000000pt;}
.fs1_c01260{font-size:3.072000pt;}
.fs0_c01260{font-size:15.360000pt;}
.fs2_c01260{font-size:64.533333pt;}
.y0_c01260{bottom:0.000000pt;}
.y3_c01260{bottom:208.893333pt;}
.y1_c01260{bottom:236.546667pt;}
.y2_c01260{bottom:238.853333pt;}
.h3_c01260{height:2.764500pt;}
.h2_c01260{height:13.822500pt;}
.h4_c01260{height:58.073698pt;}
.h1_c01260{height:1350.000000pt;}
.h0_c01260{height:1350.146667pt;}
.w1_c01260{width:966.000000pt;}
.w0_c01260{width:966.146667pt;}
.x0_c01260{left:0.000000pt;}
.x3_c01260{left:922.373333pt;}
.x1_c01260{left:936.960000pt;}
.x2_c01260{left:956.160000pt;}
.x4_c01260{left:962.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05b5474b1d11ff147adce2e0.woff2')format("woff");}.ff1_c01261{font-family:ff1_c01261;line-height:1.109863;font-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_c01261{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);}
.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:600.000000px;}
.y0_c01261{bottom:0.000000px;}
.y1_c01261{bottom:15.000000px;}
.h2_c01261{height:539.941406px;}
.h0_c01261{height:1515.450000px;}
.h1_c01261{height:1515.750000px;}
.w0_c01261{width:1079.130000px;}
.w1_c01261{width:1079.250000px;}
.x0_c01261{left:0.000000px;}
.x1_c01261{left:15.000000px;}
@media print{
.v0_c01261{vertical-align:0.000000pt;}
.ls0_c01261{letter-spacing:0.000000pt;}
.ws0_c01261{word-spacing:0.000000pt;}
.fs0_c01261{font-size:533.333333pt;}
.y0_c01261{bottom:0.000000pt;}
.y1_c01261{bottom:13.333333pt;}
.h2_c01261{height:479.947917pt;}
.h0_c01261{height:1347.066667pt;}
.h1_c01261{height:1347.333333pt;}
.w0_c01261{width:959.226667pt;}
.w1_c01261{width:959.333333pt;}
.x0_c01261{left:0.000000pt;}
.x1_c01261{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_09eaa371857bd0786872d8bc.woff2')format("woff");}.ff1_c01262{font-family:ff1_c01262;line-height:1.109863;font-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_c01262{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m13d_c01262{transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);}
.m140_c01262{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);}
.m121_c01262{transform:matrix(0.080900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080900,0.000000,0.000000,0.250000,0,0);}
.m53_c01262{transform:matrix(0.099600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099600,0.000000,0.000000,0.250000,0,0);}
.m11a_c01262{transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);}
.mac_c01262{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);}
.m7f_c01262{transform:matrix(0.100775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100775,0.000000,0.000000,0.250000,0,0);}
.m107_c01262{transform:matrix(0.101125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101125,0.000000,0.000000,0.250000,0,0);}
.m39_c01262{transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);}
.m79_c01262{transform:matrix(0.103575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103575,0.000000,0.000000,0.250000,0,0);}
.m74_c01262{transform:matrix(0.108100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108100,0.000000,0.000000,0.250000,0,0);}
.m78_c01262{transform:matrix(0.109700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109700,0.000000,0.000000,0.250000,0,0);}
.ma3_c01262{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);}
.m135_c01262{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.m27_c01262{transform:matrix(0.118700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118700,0.000000,0.000000,0.250000,0,0);}
.m73_c01262{transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);}
.m64_c01262{transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);}
.mdc_c01262{transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);}
.m77_c01262{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.mb_c01262{transform:matrix(0.129225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129225,0.000000,0.000000,0.250000,0,0);}
.m103_c01262{transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);}
.ma2_c01262{transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);}
.m124_c01262{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);}
.m81_c01262{transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);}
.mdd_c01262{transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);}
.m143_c01262{transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);}
.m137_c01262{transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);}
.m19_c01262{transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);}
.m2a_c01262{transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);}
.m132_c01262{transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);}
.m125_c01262{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.ma1_c01262{transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);}
.m1b_c01262{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m63_c01262{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01262{transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);}
.m12b_c01262{transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);}
.md5_c01262{transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);}
.md3_c01262{transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);}
.m111_c01262{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);}
.md0_c01262{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m1_c01262{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m13b_c01262{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);}
.m16_c01262{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.m88_c01262{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.mf0_c01262{transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);}
.mc2_c01262{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);}
.mfb_c01262{transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);}
.ma0_c01262{transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);}
.md9_c01262{transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);}
.m12e_c01262{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);}
.m3a_c01262{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);}
.m142_c01262{transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);}
.mf7_c01262{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);}
.m70_c01262{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m21_c01262{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.mfa_c01262{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.mbf_c01262{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.m84_c01262{transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);}
.m4c_c01262{transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);}
.m11d_c01262{transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);}
.mfd_c01262{transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);}
.ma4_c01262{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);}
.m138_c01262{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);}
.mcc_c01262{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc1_c01262{transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);}
.maa_c01262{transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);}
.m38_c01262{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);}
.m96_c01262{transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);}
.m75_c01262{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.m126_c01262{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.md7_c01262{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);}
.m112_c01262{transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);}
.mcd_c01262{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.mae_c01262{transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);}
.m136_c01262{transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);}
.m2d_c01262{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m133_c01262{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.mf8_c01262{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.m26_c01262{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m110_c01262{transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);}
.m18_c01262{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);}
.m5e_c01262{transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);}
.m76_c01262{transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);}
.mf3_c01262{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);}
.m122_c01262{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.md4_c01262{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m6_c01262{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m22_c01262{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.m6d_c01262{transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);}
.m105_c01262{transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);}
.m129_c01262{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m104_c01262{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);}
.m128_c01262{transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);}
.m10f_c01262{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m141_c01262{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.mf9_c01262{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m12d_c01262{transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);}
.m13_c01262{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01262{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.mfc_c01262{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m10a_c01262{transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);}
.m113_c01262{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m10d_c01262{transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);}
.m97_c01262{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);}
.m29_c01262{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);}
.mc3_c01262{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m23_c01262{transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);}
.m5f_c01262{transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);}
.mcf_c01262{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m86_c01262{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);}
.m95_c01262{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);}
.m94_c01262{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m5d_c01262{transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);}
.m52_c01262{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);}
.m9c_c01262{transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);}
.m62_c01262{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.mb2_c01262{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);}
.mf4_c01262{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.m139_c01262{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.m10e_c01262{transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);}
.m12a_c01262{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m89_c01262{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m130_c01262{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);}
.m92_c01262{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.m2c_c01262{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);}
.md6_c01262{transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);}
.m120_c01262{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m14_c01262{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m9a_c01262{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);}
.mf6_c01262{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.ma9_c01262{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.mbb_c01262{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);}
.m102_c01262{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.ma5_c01262{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);}
.mab_c01262{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.mf5_c01262{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mc5_c01262{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);}
.me1_c01262{transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);}
.me9_c01262{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mef_c01262{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);}
.mdb_c01262{transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);}
.m4a_c01262{transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);}
.m1c_c01262{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m72_c01262{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);}
.m80_c01262{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m13f_c01262{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.m6b_c01262{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);}
.m12c_c01262{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);}
.m10b_c01262{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);}
.m127_c01262{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m58_c01262{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m108_c01262{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);}
.m43_c01262{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);}
.m60_c01262{transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);}
.ma8_c01262{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.me8_c01262{transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);}
.mb0_c01262{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);}
.m71_c01262{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mb3_c01262{transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);}
.m45_c01262{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);}
.ma7_c01262{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.me3_c01262{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);}
.mc6_c01262{transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);}
.maf_c01262{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.m11e_c01262{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.m46_c01262{transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);}
.m42_c01262{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);}
.mda_c01262{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);}
.m115_c01262{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);}
.m106_c01262{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m109_c01262{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);}
.m10c_c01262{transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);}
.m9e_c01262{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m13e_c01262{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);}
.m7e_c01262{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);}
.m11f_c01262{transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);}
.m3f_c01262{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);}
.m5a_c01262{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);}
.me7_c01262{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);}
.md1_c01262{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);}
.m131_c01262{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m9b_c01262{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.mfe_c01262{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.m7_c01262{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);}
.m134_c01262{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.mcb_c01262{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);}
.me0_c01262{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.mf2_c01262{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);}
.mad_c01262{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);}
.m2e_c01262{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);}
.mee_c01262{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);}
.m44_c01262{transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);}
.m123_c01262{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);}
.m6f_c01262{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.mbc_c01262{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.md8_c01262{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);}
.m67_c01262{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);}
.m13a_c01262{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.me4_c01262{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.mf1_c01262{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.mc7_c01262{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01262{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.m6e_c01262{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.med_c01262{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m6c_c01262{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);}
.m9f_c01262{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);}
.m4d_c01262{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m59_c01262{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.me_c01262{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);}
.m36_c01262{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m57_c01262{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);}
.m3d_c01262{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);}
.m11_c01262{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);}
.m17_c01262{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);}
.m5_c01262{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mbd_c01262{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c01262{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9d_c01262{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);}
.m32_c01262{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m99_c01262{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);}
.m5c_c01262{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);}
.mc_c01262{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01262{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);}
.m2_c01262{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01262{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m31_c01262{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);}
.m8f_c01262{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01262{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);}
.m3e_c01262{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);}
.m69_c01262{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01262{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m98_c01262{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);}
.m7b_c01262{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01262{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01262{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);}
.mdf_c01262{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mde_c01262{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me6_c01262{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m82_c01262{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m55_c01262{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m41_c01262{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m83_c01262{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c01262{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);}
.mbe_c01262{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8d_c01262{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c01262{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc0_c01262{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mce_c01262{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);}
.m87_c01262{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01262{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m20_c01262{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);}
.m30_c01262{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01262{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m66_c01262{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m54_c01262{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3_c01262{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);}
.m61_c01262{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m50_c01262{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m117_c01262{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);}
.m119_c01262{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mea_c01262{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);}
.m8a_c01262{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb9_c01262{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m49_c01262{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01262{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01262{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m85_c01262{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);}
.m116_c01262{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);}
.m68_c01262{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m114_c01262{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);}
.m24_c01262{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m34_c01262{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01262{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);}
.m15_c01262{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m37_c01262{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md2_c01262{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m28_c01262{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m51_c01262{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01262{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01262{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);}
.m7d_c01262{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md_c01262{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m93_c01262{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m47_c01262{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mb7_c01262{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mb5_c01262{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.me5_c01262{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01262{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);}
.mb6_c01262{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m48_c01262{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01262{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01262{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mb1_c01262{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);}
.m12f_c01262{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);}
.mb4_c01262{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m33_c01262{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.me2_c01262{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m100_c01262{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mec_c01262{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m101_c01262{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01262{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m65_c01262{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c01262{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m25_c01262{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.mc9_c01262{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.mf_c01262{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.mc4_c01262{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m40_c01262{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.mca_c01262{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.mba_c01262{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m56_c01262{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m12_c01262{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m91_c01262{transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);}
.m90_c01262{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.ma_c01262{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.mc8_c01262{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.mff_c01262{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m118_c01262{transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);}
.m10_c01262{transform:matrix(1.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.342500,0.000000,0.000000,0.250000,0,0);}
.meb_c01262{transform:matrix(1.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.507500,0.000000,0.000000,0.250000,0,0);}
.m11b_c01262{transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);}
.mb8_c01262{transform:matrix(1.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.875000,0.000000,0.000000,0.250000,0,0);}
.m13c_c01262{transform:matrix(2.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.025000,0.000000,0.000000,0.250000,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;}
}
.ws3_c01262{word-spacing:0.000000px;}
.ws0_c01262{word-spacing:2.896957px;}
.ws1_c01262{word-spacing:28.730280px;}
.ws2_c01262{word-spacing:43.144823px;}
.fc0_c01262{color:transparent;}
.fs2_c01262{font-size:3.456000px;}
.fs17_c01262{font-size:6.000000px;}
.fs18_c01262{font-size:6.900000px;}
.fs3_c01262{font-size:10.380000px;}
.fs1_c01262{font-size:13.800000px;}
.fs0_c01262{font-size:17.280000px;}
.fs1d_c01262{font-size:20.760000px;}
.fsd_c01262{font-size:24.180000px;}
.fs1e_c01262{font-size:27.660000px;}
.fs19_c01262{font-size:31.080000px;}
.fs5_c01262{font-size:34.560000px;}
.fs16_c01262{font-size:38.040000px;}
.fs4_c01262{font-size:41.460000px;}
.fs1b_c01262{font-size:44.940000px;}
.fs14_c01262{font-size:48.360000px;}
.fs13_c01262{font-size:51.840000px;}
.fs8_c01262{font-size:55.320000px;}
.fs9_c01262{font-size:58.740000px;}
.fsc_c01262{font-size:62.220000px;}
.fse_c01262{font-size:65.640000px;}
.fsb_c01262{font-size:69.120000px;}
.fs1c_c01262{font-size:72.600000px;}
.fs12_c01262{font-size:76.020000px;}
.fs6_c01262{font-size:79.500000px;}
.fs1a_c01262{font-size:82.920000px;}
.fsf_c01262{font-size:86.400000px;}
.fs11_c01262{font-size:89.880000px;}
.fs10_c01262{font-size:93.300000px;}
.fs7_c01262{font-size:96.780000px;}
.fs1f_c01262{font-size:100.200000px;}
.fsa_c01262{font-size:103.680000px;}
.fs15_c01262{font-size:117.480000px;}
.fs20_c01262{font-size:124.440000px;}
.fs21_c01262{font-size:138.240000px;}
.y0_c01262{bottom:0.000000px;}
.y13b_c01262{bottom:686.010000px;}
.y13a_c01262{bottom:710.205000px;}
.y138_c01262{bottom:760.320000px;}
.y136_c01262{bottom:765.510000px;}
.y133_c01262{bottom:767.235000px;}
.y135_c01262{bottom:771.555000px;}
.y134_c01262{bottom:772.410000px;}
.y132_c01262{bottom:773.280000px;}
.y139_c01262{bottom:777.600000px;}
.y137_c01262{bottom:778.470000px;}
.y12f_c01262{bottom:785.370000px;}
.y12d_c01262{bottom:786.240000px;}
.y12b_c01262{bottom:787.110000px;}
.y130_c01262{bottom:787.965000px;}
.y12c_c01262{bottom:788.835000px;}
.y12e_c01262{bottom:792.285000px;}
.y12a_c01262{bottom:793.155000px;}
.y131_c01262{bottom:797.475000px;}
.y127_c01262{bottom:798.330000px;}
.y129_c01262{bottom:799.200000px;}
.y124_c01262{bottom:800.925000px;}
.y128_c01262{bottom:801.795000px;}
.y125_c01262{bottom:802.650000px;}
.y126_c01262{bottom:803.520000px;}
.y120_c01262{bottom:804.390000px;}
.y11f_c01262{bottom:806.115000px;}
.y122_c01262{bottom:806.970000px;}
.y123_c01262{bottom:812.160000px;}
.y121_c01262{bottom:813.030000px;}
.y11e_c01262{bottom:819.075000px;}
.y11c_c01262{bottom:820.800000px;}
.y118_c01262{bottom:824.250000px;}
.y11d_c01262{bottom:825.990000px;}
.y11b_c01262{bottom:828.570000px;}
.y11a_c01262{bottom:830.310000px;}
.y119_c01262{bottom:832.035000px;}
.y116_c01262{bottom:843.270000px;}
.y117_c01262{bottom:844.995000px;}
.y114_c01262{bottom:846.720000px;}
.y115_c01262{bottom:848.445000px;}
.y112_c01262{bottom:864.000000px;}
.y113_c01262{bottom:864.870000px;}
.y10e_c01262{bottom:866.595000px;}
.y10c_c01262{bottom:867.450000px;}
.y10d_c01262{bottom:871.770000px;}
.y10b_c01262{bottom:872.640000px;}
.y10a_c01262{bottom:873.510000px;}
.y110_c01262{bottom:875.235000px;}
.y111_c01262{bottom:876.090000px;}
.y109_c01262{bottom:876.960000px;}
.y10f_c01262{bottom:877.830000px;}
.y108_c01262{bottom:884.730000px;}
.y105_c01262{bottom:887.325000px;}
.y104_c01262{bottom:888.195000px;}
.y103_c01262{bottom:889.050000px;}
.y107_c01262{bottom:890.790000px;}
.y106_c01262{bottom:891.645000px;}
.y102_c01262{bottom:892.515000px;}
.y101_c01262{bottom:893.370000px;}
.y100_c01262{bottom:895.965000px;}
.yff_c01262{bottom:896.835000px;}
.yfd_c01262{bottom:897.690000px;}
.yfe_c01262{bottom:899.430000px;}
.yfa_c01262{bottom:901.155000px;}
.yf9_c01262{bottom:904.605000px;}
.yfb_c01262{bottom:908.070000px;}
.yfc_c01262{bottom:911.520000px;}
.yf8_c01262{bottom:921.885000px;}
.yf1_c01262{bottom:922.755000px;}
.yf0_c01262{bottom:923.610000px;}
.yf3_c01262{bottom:924.480000px;}
.yf2_c01262{bottom:925.350000px;}
.yf7_c01262{bottom:926.205000px;}
.yf6_c01262{bottom:927.075000px;}
.yf5_c01262{bottom:927.930000px;}
.yf4_c01262{bottom:931.395000px;}
.yef_c01262{bottom:932.250000px;}
.yea_c01262{bottom:933.990000px;}
.yee_c01262{bottom:935.715000px;}
.yed_c01262{bottom:938.310000px;}
.yec_c01262{bottom:940.890000px;}
.ye8_c01262{bottom:944.355000px;}
.yeb_c01262{bottom:945.210000px;}
.ye9_c01262{bottom:946.950000px;}
.ye2_c01262{bottom:947.805000px;}
.ye1_c01262{bottom:948.675000px;}
.ye6_c01262{bottom:949.530000px;}
.ye3_c01262{bottom:950.400000px;}
.ye7_c01262{bottom:951.270000px;}
.ye4_c01262{bottom:952.995000px;}
.ye5_c01262{bottom:953.850000px;}
.yda_c01262{bottom:968.550000px;}
.ydd_c01262{bottom:969.405000px;}
.ydb_c01262{bottom:971.130000px;}
.ye0_c01262{bottom:972.870000px;}
.ydc_c01262{bottom:973.725000px;}
.yd9_c01262{bottom:974.595000px;}
.yd8_c01262{bottom:975.450000px;}
.yde_c01262{bottom:976.320000px;}
.ydf_c01262{bottom:978.915000px;}
.yd7_c01262{bottom:985.830000px;}
.yd6_c01262{bottom:986.685000px;}
.yd5_c01262{bottom:987.555000px;}
.yd3_c01262{bottom:988.410000px;}
.yd4_c01262{bottom:989.280000px;}
.ycf_c01262{bottom:990.150000px;}
.yd1_c01262{bottom:992.730000px;}
.yd2_c01262{bottom:993.600000px;}
.yd0_c01262{bottom:994.470000px;}
.yce_c01262{bottom:995.325000px;}
.ybf_c01262{bottom:998.790000px;}
.ycb_c01262{bottom:999.645000px;}
.ycc_c01262{bottom:1000.515000px;}
.yc9_c01262{bottom:1001.370000px;}
.yc8_c01262{bottom:1002.240000px;}
.yca_c01262{bottom:1003.965000px;}
.ycd_c01262{bottom:1004.835000px;}
.yc6_c01262{bottom:1005.690000px;}
.yc7_c01262{bottom:1006.560000px;}
.yc3_c01262{bottom:1008.285000px;}
.yc4_c01262{bottom:1009.155000px;}
.ybe_c01262{bottom:1010.010000px;}
.yc1_c01262{bottom:1010.880000px;}
.yc5_c01262{bottom:1013.475000px;}
.yc0_c01262{bottom:1014.330000px;}
.ybd_c01262{bottom:1015.200000px;}
.yc2_c01262{bottom:1016.070000px;}
.ybc_c01262{bottom:1023.840000px;}
.yba_c01262{bottom:1024.710000px;}
.yb7_c01262{bottom:1025.565000px;}
.yb8_c01262{bottom:1026.435000px;}
.yb9_c01262{bottom:1027.290000px;}
.ybb_c01262{bottom:1029.030000px;}
.yb6_c01262{bottom:1031.610000px;}
.yb4_c01262{bottom:1046.310000px;}
.yb2_c01262{bottom:1048.035000px;}
.yb5_c01262{bottom:1048.890000px;}
.yb0_c01262{bottom:1049.760000px;}
.yb1_c01262{bottom:1050.630000px;}
.yaf_c01262{bottom:1051.485000px;}
.yae_c01262{bottom:1054.950000px;}
.yb3_c01262{bottom:1055.805000px;}
.yad_c01262{bottom:1060.125000px;}
.yac_c01262{bottom:1062.720000px;}
.yaa_c01262{bottom:1064.445000px;}
.ya9_c01262{bottom:1065.315000px;}
.ya8_c01262{bottom:1066.170000px;}
.yab_c01262{bottom:1067.910000px;}
.ya2_c01262{bottom:1070.490000px;}
.ya6_c01262{bottom:1072.230000px;}
.ya5_c01262{bottom:1073.085000px;}
.ya7_c01262{bottom:1073.955000px;}
.ya3_c01262{bottom:1074.810000px;}
.ya1_c01262{bottom:1075.680000px;}
.ya0_c01262{bottom:1076.550000px;}
.ya4_c01262{bottom:1079.130000px;}
.y9f_c01262{bottom:1087.770000px;}
.y9d_c01262{bottom:1088.640000px;}
.y99_c01262{bottom:1089.510000px;}
.y9e_c01262{bottom:1090.365000px;}
.y9a_c01262{bottom:1092.960000px;}
.y98_c01262{bottom:1093.830000px;}
.y95_c01262{bottom:1095.555000px;}
.y2_c01262{bottom:1096.410000px;}
.y97_c01262{bottom:1097.280000px;}
.y1_c01262{bottom:1099.005000px;}
.y96_c01262{bottom:1100.730000px;}
.y9b_c01262{bottom:1101.600000px;}
.y3_c01262{bottom:1103.325000px;}
.y9c_c01262{bottom:1104.195000px;}
.y8e_c01262{bottom:1105.050000px;}
.y8c_c01262{bottom:1105.920000px;}
.y94_c01262{bottom:1108.515000px;}
.y8d_c01262{bottom:1109.370000px;}
.y91_c01262{bottom:1110.240000px;}
.y8f_c01262{bottom:1112.835000px;}
.y92_c01262{bottom:1114.560000px;}
.y90_c01262{bottom:1115.430000px;}
.y93_c01262{bottom:1121.475000px;}
.y8a_c01262{bottom:1124.925000px;}
.y89_c01262{bottom:1127.520000px;}
.y85_c01262{bottom:1128.390000px;}
.y83_c01262{bottom:1129.245000px;}
.y8b_c01262{bottom:1130.115000px;}
.y84_c01262{bottom:1131.840000px;}
.y87_c01262{bottom:1132.710000px;}
.y88_c01262{bottom:1134.435000px;}
.y86_c01262{bottom:1136.160000px;}
.y82_c01262{bottom:1149.120000px;}
.y80_c01262{bottom:1149.990000px;}
.y81_c01262{bottom:1150.845000px;}
.y7b_c01262{bottom:1151.715000px;}
.y7a_c01262{bottom:1152.570000px;}
.y7e_c01262{bottom:1154.310000px;}
.y7f_c01262{bottom:1155.165000px;}
.y7c_c01262{bottom:1156.890000px;}
.y7d_c01262{bottom:1157.760000px;}
.y75_c01262{bottom:1171.590000px;}
.y77_c01262{bottom:1172.445000px;}
.y76_c01262{bottom:1173.315000px;}
.y78_c01262{bottom:1176.765000px;}
.y74_c01262{bottom:1177.635000px;}
.y73_c01262{bottom:1178.490000px;}
.y79_c01262{bottom:1180.230000px;}
.y70_c01262{bottom:1190.595000px;}
.y6e_c01262{bottom:1192.320000px;}
.y6f_c01262{bottom:1195.770000px;}
.y6d_c01262{bottom:1196.640000px;}
.y66_c01262{bottom:1197.510000px;}
.y64_c01262{bottom:1198.365000px;}
.y72_c01262{bottom:1199.235000px;}
.y71_c01262{bottom:1200.090000px;}
.y6c_c01262{bottom:1202.685000px;}
.y6b_c01262{bottom:1203.555000px;}
.y6a_c01262{bottom:1204.410000px;}
.y69_c01262{bottom:1205.280000px;}
.y68_c01262{bottom:1208.730000px;}
.y65_c01262{bottom:1209.600000px;}
.y67_c01262{bottom:1210.470000px;}
.y63_c01262{bottom:1213.050000px;}
.y5d_c01262{bottom:1213.920000px;}
.y5f_c01262{bottom:1215.645000px;}
.y61_c01262{bottom:1216.515000px;}
.y60_c01262{bottom:1217.370000px;}
.y5e_c01262{bottom:1218.240000px;}
.y62_c01262{bottom:1219.965000px;}
.y5c_c01262{bottom:1222.560000px;}
.y5b_c01262{bottom:1223.430000px;}
.y57_c01262{bottom:1225.155000px;}
.y59_c01262{bottom:1226.880000px;}
.y56_c01262{bottom:1228.605000px;}
.y58_c01262{bottom:1229.475000px;}
.y5a_c01262{bottom:1230.330000px;}
.y55_c01262{bottom:1231.200000px;}
.y53_c01262{bottom:1232.925000px;}
.y51_c01262{bottom:1233.795000px;}
.y54_c01262{bottom:1234.650000px;}
.y52_c01262{bottom:1236.390000px;}
.y4e_c01262{bottom:1250.205000px;}
.y4f_c01262{bottom:1251.075000px;}
.y4d_c01262{bottom:1253.670000px;}
.y4c_c01262{bottom:1254.525000px;}
.y50_c01262{bottom:1255.395000px;}
.y42_c01262{bottom:1257.990000px;}
.y43_c01262{bottom:1258.845000px;}
.y41_c01262{bottom:1259.715000px;}
.y49_c01262{bottom:1261.440000px;}
.y48_c01262{bottom:1262.310000px;}
.y46_c01262{bottom:1263.165000px;}
.y45_c01262{bottom:1264.035000px;}
.y4a_c01262{bottom:1265.760000px;}
.y4b_c01262{bottom:1266.630000px;}
.y47_c01262{bottom:1267.485000px;}
.y44_c01262{bottom:1270.950000px;}
.y3b_c01262{bottom:1273.530000px;}
.y38_c01262{bottom:1274.400000px;}
.y39_c01262{bottom:1275.270000px;}
.y3e_c01262{bottom:1276.995000px;}
.y3a_c01262{bottom:1277.850000px;}
.y3d_c01262{bottom:1279.590000px;}
.y40_c01262{bottom:1280.445000px;}
.y3c_c01262{bottom:1281.315000px;}
.y3f_c01262{bottom:1282.170000px;}
.y35_c01262{bottom:1287.360000px;}
.y33_c01262{bottom:1288.230000px;}
.y37_c01262{bottom:1289.955000px;}
.y32_c01262{bottom:1290.810000px;}
.y36_c01262{bottom:1291.680000px;}
.y34_c01262{bottom:1292.550000px;}
.y31_c01262{bottom:1294.275000px;}
.y30_c01262{bottom:1298.595000px;}
.y2b_c01262{bottom:1299.450000px;}
.y2e_c01262{bottom:1304.640000px;}
.y2c_c01262{bottom:1305.510000px;}
.y2f_c01262{bottom:1306.365000px;}
.y2d_c01262{bottom:1307.235000px;}
.y2a_c01262{bottom:1313.280000px;}
.y23_c01262{bottom:1314.150000px;}
.y24_c01262{bottom:1315.005000px;}
.y27_c01262{bottom:1315.875000px;}
.y29_c01262{bottom:1316.730000px;}
.y28_c01262{bottom:1317.600000px;}
.y26_c01262{bottom:1318.470000px;}
.y25_c01262{bottom:1320.195000px;}
.y20_c01262{bottom:1325.370000px;}
.y22_c01262{bottom:1327.110000px;}
.y21_c01262{bottom:1329.690000px;}
.y1f_c01262{bottom:1330.560000px;}
.y1c_c01262{bottom:1331.430000px;}
.y1a_c01262{bottom:1332.285000px;}
.y1d_c01262{bottom:1337.475000px;}
.y1e_c01262{bottom:1338.330000px;}
.y19_c01262{bottom:1339.200000px;}
.y1b_c01262{bottom:1340.070000px;}
.y17_c01262{bottom:1351.290000px;}
.y15_c01262{bottom:1353.030000px;}
.y18_c01262{bottom:1353.885000px;}
.y12_c01262{bottom:1354.755000px;}
.y16_c01262{bottom:1356.480000px;}
.y13_c01262{bottom:1357.350000px;}
.y10_c01262{bottom:1359.075000px;}
.y14_c01262{bottom:1359.930000px;}
.y11_c01262{bottom:1360.800000px;}
.yd_c01262{bottom:1376.355000px;}
.ye_c01262{bottom:1380.675000px;}
.yf_c01262{bottom:1381.530000px;}
.yc_c01262{bottom:1382.400000px;}
.ya_c01262{bottom:1383.270000px;}
.y5_c01262{bottom:1385.850000px;}
.y8_c01262{bottom:1386.720000px;}
.y7_c01262{bottom:1387.590000px;}
.y9_c01262{bottom:1388.445000px;}
.yb_c01262{bottom:1392.765000px;}
.y6_c01262{bottom:1393.635000px;}
.y4_c01262{bottom:1420.410000px;}
.h4_c01262{height:3.110063px;}
.h19_c01262{height:5.399414px;}
.h1a_c01262{height:6.209326px;}
.h5_c01262{height:9.340986px;}
.h3_c01262{height:12.418652px;}
.h2_c01262{height:15.550313px;}
.h1f_c01262{height:18.681973px;}
.hf_c01262{height:21.759639px;}
.h20_c01262{height:24.891299px;}
.h1b_c01262{height:27.968965px;}
.h7_c01262{height:31.100625px;}
.h18_c01262{height:34.232285px;}
.h6_c01262{height:37.309951px;}
.h1d_c01262{height:40.441611px;}
.h16_c01262{height:43.519277px;}
.h15_c01262{height:46.650937px;}
.ha_c01262{height:49.782598px;}
.hb_c01262{height:52.860264px;}
.he_c01262{height:55.991924px;}
.h10_c01262{height:59.069590px;}
.hd_c01262{height:62.201250px;}
.h1e_c01262{height:65.332910px;}
.h14_c01262{height:68.410576px;}
.h8_c01262{height:71.542236px;}
.h1c_c01262{height:74.619902px;}
.h11_c01262{height:77.751563px;}
.h13_c01262{height:80.883223px;}
.h12_c01262{height:83.960889px;}
.h9_c01262{height:87.092549px;}
.h21_c01262{height:90.170215px;}
.hc_c01262{height:93.301875px;}
.h17_c01262{height:105.720527px;}
.h22_c01262{height:111.983848px;}
.h23_c01262{height:124.402500px;}
.h1_c01262{height:1518.750000px;}
.h0_c01262{height:1518.915000px;}
.w0_c01262{width:1067.040000px;}
.w1_c01262{width:1067.250000px;}
.x0_c01262{left:0.000000px;}
.x1_c01262{left:168.480000px;}
.x2_c01262{left:184.035000px;}
.x3_c01262{left:192.675000px;}
.xe7_c01262{left:222.045000px;}
.x86_c01262{left:223.770000px;}
.xa1_c01262{left:225.510000px;}
.xea_c01262{left:228.960000px;}
.xe8_c01262{left:230.685000px;}
.x5c_c01262{left:232.410000px;}
.x17_c01262{left:234.150000px;}
.x5_c01262{left:235.875000px;}
.x6e_c01262{left:242.790000px;}
.xcd_c01262{left:247.110000px;}
.x14_c01262{left:248.835000px;}
.xc8_c01262{left:253.155000px;}
.x96_c01262{left:259.200000px;}
.xeb_c01262{left:261.795000px;}
.x46_c01262{left:263.520000px;}
.xd9_c01262{left:268.710000px;}
.x25_c01262{left:271.290000px;}
.x26_c01262{left:275.610000px;}
.xd4_c01262{left:279.075000px;}
.x5d_c01262{left:282.525000px;}
.x8f_c01262{left:284.250000px;}
.xa2_c01262{left:287.715000px;}
.x9e_c01262{left:289.440000px;}
.x7d_c01262{left:292.890000px;}
.xe9_c01262{left:298.950000px;}
.x47_c01262{left:300.675000px;}
.x76_c01262{left:302.400000px;}
.x6_c01262{left:304.125000px;}
.x51_c01262{left:306.720000px;}
.xaf_c01262{left:308.445000px;}
.x33_c01262{left:311.910000px;}
.x77_c01262{left:313.635000px;}
.x6f_c01262{left:315.360000px;}
.x87_c01262{left:317.955000px;}
.x27_c01262{left:320.550000px;}
.x7e_c01262{left:324.000000px;}
.xa3_c01262{left:326.595000px;}
.xd7_c01262{left:328.320000px;}
.x5e_c01262{left:335.235000px;}
.xad_c01262{left:336.960000px;}
.xd5_c01262{left:338.685000px;}
.xb0_c01262{left:340.410000px;}
.xc0_c01262{left:342.150000px;}
.x48_c01262{left:344.730000px;}
.x34_c01262{left:349.050000px;}
.x88_c01262{left:355.110000px;}
.xde_c01262{left:357.690000px;}
.x52_c01262{left:361.155000px;}
.xb7_c01262{left:364.605000px;}
.x28_c01262{left:368.070000px;}
.x97_c01262{left:370.650000px;}
.x70_c01262{left:373.245000px;}
.x35_c01262{left:381.030000px;}
.xbb_c01262{left:382.755000px;}
.x18_c01262{left:385.350000px;}
.x15_c01262{left:388.800000px;}
.x5f_c01262{left:390.525000px;}
.x49_c01262{left:393.120000px;}
.xc1_c01262{left:394.845000px;}
.x7_c01262{left:397.440000px;}
.x78_c01262{left:400.035000px;}
.x53_c01262{left:402.630000px;}
.x36_c01262{left:404.355000px;}
.xb1_c01262{left:409.530000px;}
.x79_c01262{left:411.270000px;}
.x54_c01262{left:413.850000px;}
.xd0_c01262{left:419.910000px;}
.x7f_c01262{left:421.635000px;}
.xd6_c01262{left:423.360000px;}
.x89_c01262{left:425.085000px;}
.x19_c01262{left:427.680000px;}
.x71_c01262{left:432.870000px;}
.x8a_c01262{left:434.595000px;}
.x8_c01262{left:438.915000px;}
.x67_c01262{left:441.510000px;}
.xc6_c01262{left:444.090000px;}
.x60_c01262{left:446.685000px;}
.x4_c01262{left:448.410000px;}
.x98_c01262{left:451.005000px;}
.xa4_c01262{left:454.470000px;}
.x37_c01262{left:456.195000px;}
.x4a_c01262{left:457.920000px;}
.x72_c01262{left:459.645000px;}
.xda_c01262{left:461.370000px;}
.xd1_c01262{left:463.965000px;}
.x99_c01262{left:468.285000px;}
.x90_c01262{left:470.880000px;}
.x9_c01262{left:474.330000px;}
.x55_c01262{left:477.795000px;}
.xdf_c01262{left:480.390000px;}
.xd8_c01262{left:482.970000px;}
.x29_c01262{left:484.710000px;}
.x56_c01262{left:487.290000px;}
.xa_c01262{left:491.610000px;}
.x1a_c01262{left:495.075000px;}
.x68_c01262{left:497.670000px;}
.x8b_c01262{left:501.990000px;}
.x1b_c01262{left:503.715000px;}
.xb_c01262{left:505.440000px;}
.x16_c01262{left:507.165000px;}
.x91_c01262{left:511.485000px;}
.x9f_c01262{left:513.210000px;}
.xc9_c01262{left:520.125000px;}
.x38_c01262{left:521.850000px;}
.xc_c01262{left:524.445000px;}
.x1c_c01262{left:532.230000px;}
.xbc_c01262{left:533.955000px;}
.xe6_c01262{left:535.680000px;}
.xd_c01262{left:538.275000px;}
.x2a_c01262{left:540.000000px;}
.x9a_c01262{left:543.450000px;}
.x1d_c01262{left:548.640000px;}
.x2b_c01262{left:550.365000px;}
.x8c_c01262{left:552.090000px;}
.x69_c01262{left:554.685000px;}
.xe0_c01262{left:556.410000px;}
.xbd_c01262{left:561.600000px;}
.x39_c01262{left:564.195000px;}
.xe_c01262{left:565.920000px;}
.x7a_c01262{left:569.370000px;}
.xca_c01262{left:571.110000px;}
.xec_c01262{left:572.835000px;}
.x92_c01262{left:574.560000px;}
.x3a_c01262{left:578.010000px;}
.x61_c01262{left:580.605000px;}
.xa7_c01262{left:583.200000px;}
.x6a_c01262{left:585.795000px;}
.xc2_c01262{left:588.390000px;}
.x2c_c01262{left:592.710000px;}
.x4b_c01262{left:594.435000px;}
.x9b_c01262{left:597.885000px;}
.x80_c01262{left:600.480000px;}
.xb8_c01262{left:603.075000px;}
.xf_c01262{left:607.395000px;}
.xae_c01262{left:609.120000px;}
.x1e_c01262{left:611.715000px;}
.xdb_c01262{left:616.035000px;}
.xc7_c01262{left:617.760000px;}
.xce_c01262{left:619.485000px;}
.x10_c01262{left:626.400000px;}
.x3b_c01262{left:628.125000px;}
.x62_c01262{left:630.720000px;}
.x81_c01262{left:633.315000px;}
.x3c_c01262{left:635.910000px;}
.x73_c01262{left:639.360000px;}
.xb2_c01262{left:641.955000px;}
.x11_c01262{left:643.680000px;}
.x9c_c01262{left:648.870000px;}
.xe1_c01262{left:651.450000px;}
.xb3_c01262{left:653.190000px;}
.xa8_c01262{left:654.915000px;}
.x4c_c01262{left:663.555000px;}
.x82_c01262{left:666.150000px;}
.xa9_c01262{left:668.730000px;}
.x3d_c01262{left:670.470000px;}
.x2d_c01262{left:673.920000px;}
.xed_c01262{left:676.515000px;}
.xe2_c01262{left:678.240000px;}
.x57_c01262{left:681.690000px;}
.x1f_c01262{left:683.430000px;}
.x8d_c01262{left:686.010000px;}
.xa5_c01262{left:692.070000px;}
.x63_c01262{left:693.795000px;}
.xd2_c01262{left:695.520000px;}
.x12_c01262{left:698.115000px;}
.x58_c01262{left:699.840000px;}
.x74_c01262{left:703.290000px;}
.x7b_c01262{left:705.030000px;}
.x59_c01262{left:707.610000px;}
.x3e_c01262{left:711.075000px;}
.x2e_c01262{left:712.800000px;}
.x9d_c01262{left:714.525000px;}
.x3f_c01262{left:717.120000px;}
.x20_c01262{left:719.715000px;}
.xdc_c01262{left:721.440000px;}
.xcb_c01262{left:724.035000px;}
.x2f_c01262{left:727.485000px;}
.x40_c01262{left:730.080000px;}
.xaa_c01262{left:734.400000px;}
.x83_c01262{left:737.850000px;}
.x64_c01262{left:740.445000px;}
.x41_c01262{left:742.170000px;}
.x21_c01262{left:744.765000px;}
.x4d_c01262{left:746.490000px;}
.xb4_c01262{left:748.230000px;}
.x42_c01262{left:749.955000px;}
.xb9_c01262{left:754.275000px;}
.x65_c01262{left:756.000000px;}
.xc3_c01262{left:757.725000px;}
.x5a_c01262{left:760.320000px;}
.xab_c01262{left:765.510000px;}
.x7c_c01262{left:767.235000px;}
.x4e_c01262{left:769.830000px;}
.x6b_c01262{left:771.555000px;}
.x93_c01262{left:774.150000px;}
.x30_c01262{left:776.730000px;}
.x66_c01262{left:779.325000px;}
.xba_c01262{left:781.050000px;}
.xdd_c01262{left:785.370000px;}
.xa0_c01262{left:789.690000px;}
.xe3_c01262{left:793.155000px;}
.xbe_c01262{left:794.880000px;}
.x4f_c01262{left:796.605000px;}
.x84_c01262{left:800.925000px;}
.x43_c01262{left:803.520000px;}
.xcc_c01262{left:805.245000px;}
.x31_c01262{left:807.840000px;}
.xac_c01262{left:811.290000px;}
.x8e_c01262{left:813.030000px;}
.xb5_c01262{left:814.755000px;}
.x6c_c01262{left:817.350000px;}
.x22_c01262{left:819.930000px;}
.x32_c01262{left:821.670000px;}
.x50_c01262{left:824.250000px;}
.xa6_c01262{left:826.845000px;}
.xbf_c01262{left:828.570000px;}
.x94_c01262{left:831.165000px;}
.x75_c01262{left:834.630000px;}
.xb6_c01262{left:837.210000px;}
.x85_c01262{left:840.675000px;}
.xc4_c01262{left:842.400000px;}
.x44_c01262{left:847.590000px;}
.xcf_c01262{left:849.315000px;}
.xe4_c01262{left:851.910000px;}
.x6d_c01262{left:853.635000px;}
.x45_c01262{left:857.085000px;}
.x5b_c01262{left:860.550000px;}
.xe5_c01262{left:864.000000px;}
.xd3_c01262{left:865.725000px;}
.x95_c01262{left:867.450000px;}
.x13_c01262{left:869.190000px;}
.x23_c01262{left:874.365000px;}
.x24_c01262{left:888.195000px;}
.xc5_c01262{left:899.430000px;}
.xf0_c01262{left:1015.200000px;}
.xee_c01262{left:1023.840000px;}
.xef_c01262{left:1028.160000px;}
@media print{
.v0_c01262{vertical-align:0.000000pt;}
.ls0_c01262{letter-spacing:0.000000pt;}
.ws3_c01262{word-spacing:0.000000pt;}
.ws0_c01262{word-spacing:2.575073pt;}
.ws1_c01262{word-spacing:25.538027pt;}
.ws2_c01262{word-spacing:38.350954pt;}
.fs2_c01262{font-size:3.072000pt;}
.fs17_c01262{font-size:5.333333pt;}
.fs18_c01262{font-size:6.133333pt;}
.fs3_c01262{font-size:9.226667pt;}
.fs1_c01262{font-size:12.266667pt;}
.fs0_c01262{font-size:15.360000pt;}
.fs1d_c01262{font-size:18.453333pt;}
.fsd_c01262{font-size:21.493333pt;}
.fs1e_c01262{font-size:24.586667pt;}
.fs19_c01262{font-size:27.626667pt;}
.fs5_c01262{font-size:30.720000pt;}
.fs16_c01262{font-size:33.813333pt;}
.fs4_c01262{font-size:36.853333pt;}
.fs1b_c01262{font-size:39.946667pt;}
.fs14_c01262{font-size:42.986667pt;}
.fs13_c01262{font-size:46.080000pt;}
.fs8_c01262{font-size:49.173333pt;}
.fs9_c01262{font-size:52.213333pt;}
.fsc_c01262{font-size:55.306667pt;}
.fse_c01262{font-size:58.346667pt;}
.fsb_c01262{font-size:61.440000pt;}
.fs1c_c01262{font-size:64.533333pt;}
.fs12_c01262{font-size:67.573333pt;}
.fs6_c01262{font-size:70.666667pt;}
.fs1a_c01262{font-size:73.706667pt;}
.fsf_c01262{font-size:76.800000pt;}
.fs11_c01262{font-size:79.893333pt;}
.fs10_c01262{font-size:82.933333pt;}
.fs7_c01262{font-size:86.026667pt;}
.fs1f_c01262{font-size:89.066667pt;}
.fsa_c01262{font-size:92.160000pt;}
.fs15_c01262{font-size:104.426667pt;}
.fs20_c01262{font-size:110.613333pt;}
.fs21_c01262{font-size:122.880000pt;}
.y0_c01262{bottom:0.000000pt;}
.y13b_c01262{bottom:609.786667pt;}
.y13a_c01262{bottom:631.293333pt;}
.y138_c01262{bottom:675.840000pt;}
.y136_c01262{bottom:680.453333pt;}
.y133_c01262{bottom:681.986667pt;}
.y135_c01262{bottom:685.826667pt;}
.y134_c01262{bottom:686.586667pt;}
.y132_c01262{bottom:687.360000pt;}
.y139_c01262{bottom:691.200000pt;}
.y137_c01262{bottom:691.973333pt;}
.y12f_c01262{bottom:698.106667pt;}
.y12d_c01262{bottom:698.880000pt;}
.y12b_c01262{bottom:699.653333pt;}
.y130_c01262{bottom:700.413333pt;}
.y12c_c01262{bottom:701.186667pt;}
.y12e_c01262{bottom:704.253333pt;}
.y12a_c01262{bottom:705.026667pt;}
.y131_c01262{bottom:708.866667pt;}
.y127_c01262{bottom:709.626667pt;}
.y129_c01262{bottom:710.400000pt;}
.y124_c01262{bottom:711.933333pt;}
.y128_c01262{bottom:712.706667pt;}
.y125_c01262{bottom:713.466667pt;}
.y126_c01262{bottom:714.240000pt;}
.y120_c01262{bottom:715.013333pt;}
.y11f_c01262{bottom:716.546667pt;}
.y122_c01262{bottom:717.306667pt;}
.y123_c01262{bottom:721.920000pt;}
.y121_c01262{bottom:722.693333pt;}
.y11e_c01262{bottom:728.066667pt;}
.y11c_c01262{bottom:729.600000pt;}
.y118_c01262{bottom:732.666667pt;}
.y11d_c01262{bottom:734.213333pt;}
.y11b_c01262{bottom:736.506667pt;}
.y11a_c01262{bottom:738.053333pt;}
.y119_c01262{bottom:739.586667pt;}
.y116_c01262{bottom:749.573333pt;}
.y117_c01262{bottom:751.106667pt;}
.y114_c01262{bottom:752.640000pt;}
.y115_c01262{bottom:754.173333pt;}
.y112_c01262{bottom:768.000000pt;}
.y113_c01262{bottom:768.773333pt;}
.y10e_c01262{bottom:770.306667pt;}
.y10c_c01262{bottom:771.066667pt;}
.y10d_c01262{bottom:774.906667pt;}
.y10b_c01262{bottom:775.680000pt;}
.y10a_c01262{bottom:776.453333pt;}
.y110_c01262{bottom:777.986667pt;}
.y111_c01262{bottom:778.746667pt;}
.y109_c01262{bottom:779.520000pt;}
.y10f_c01262{bottom:780.293333pt;}
.y108_c01262{bottom:786.426667pt;}
.y105_c01262{bottom:788.733333pt;}
.y104_c01262{bottom:789.506667pt;}
.y103_c01262{bottom:790.266667pt;}
.y107_c01262{bottom:791.813333pt;}
.y106_c01262{bottom:792.573333pt;}
.y102_c01262{bottom:793.346667pt;}
.y101_c01262{bottom:794.106667pt;}
.y100_c01262{bottom:796.413333pt;}
.yff_c01262{bottom:797.186667pt;}
.yfd_c01262{bottom:797.946667pt;}
.yfe_c01262{bottom:799.493333pt;}
.yfa_c01262{bottom:801.026667pt;}
.yf9_c01262{bottom:804.093333pt;}
.yfb_c01262{bottom:807.173333pt;}
.yfc_c01262{bottom:810.240000pt;}
.yf8_c01262{bottom:819.453333pt;}
.yf1_c01262{bottom:820.226667pt;}
.yf0_c01262{bottom:820.986667pt;}
.yf3_c01262{bottom:821.760000pt;}
.yf2_c01262{bottom:822.533333pt;}
.yf7_c01262{bottom:823.293333pt;}
.yf6_c01262{bottom:824.066667pt;}
.yf5_c01262{bottom:824.826667pt;}
.yf4_c01262{bottom:827.906667pt;}
.yef_c01262{bottom:828.666667pt;}
.yea_c01262{bottom:830.213333pt;}
.yee_c01262{bottom:831.746667pt;}
.yed_c01262{bottom:834.053333pt;}
.yec_c01262{bottom:836.346667pt;}
.ye8_c01262{bottom:839.426667pt;}
.yeb_c01262{bottom:840.186667pt;}
.ye9_c01262{bottom:841.733333pt;}
.ye2_c01262{bottom:842.493333pt;}
.ye1_c01262{bottom:843.266667pt;}
.ye6_c01262{bottom:844.026667pt;}
.ye3_c01262{bottom:844.800000pt;}
.ye7_c01262{bottom:845.573333pt;}
.ye4_c01262{bottom:847.106667pt;}
.ye5_c01262{bottom:847.866667pt;}
.yda_c01262{bottom:860.933333pt;}
.ydd_c01262{bottom:861.693333pt;}
.ydb_c01262{bottom:863.226667pt;}
.ye0_c01262{bottom:864.773333pt;}
.ydc_c01262{bottom:865.533333pt;}
.yd9_c01262{bottom:866.306667pt;}
.yd8_c01262{bottom:867.066667pt;}
.yde_c01262{bottom:867.840000pt;}
.ydf_c01262{bottom:870.146667pt;}
.yd7_c01262{bottom:876.293333pt;}
.yd6_c01262{bottom:877.053333pt;}
.yd5_c01262{bottom:877.826667pt;}
.yd3_c01262{bottom:878.586667pt;}
.yd4_c01262{bottom:879.360000pt;}
.ycf_c01262{bottom:880.133333pt;}
.yd1_c01262{bottom:882.426667pt;}
.yd2_c01262{bottom:883.200000pt;}
.yd0_c01262{bottom:883.973333pt;}
.yce_c01262{bottom:884.733333pt;}
.ybf_c01262{bottom:887.813333pt;}
.ycb_c01262{bottom:888.573333pt;}
.ycc_c01262{bottom:889.346667pt;}
.yc9_c01262{bottom:890.106667pt;}
.yc8_c01262{bottom:890.880000pt;}
.yca_c01262{bottom:892.413333pt;}
.ycd_c01262{bottom:893.186667pt;}
.yc6_c01262{bottom:893.946667pt;}
.yc7_c01262{bottom:894.720000pt;}
.yc3_c01262{bottom:896.253333pt;}
.yc4_c01262{bottom:897.026667pt;}
.ybe_c01262{bottom:897.786667pt;}
.yc1_c01262{bottom:898.560000pt;}
.yc5_c01262{bottom:900.866667pt;}
.yc0_c01262{bottom:901.626667pt;}
.ybd_c01262{bottom:902.400000pt;}
.yc2_c01262{bottom:903.173333pt;}
.ybc_c01262{bottom:910.080000pt;}
.yba_c01262{bottom:910.853333pt;}
.yb7_c01262{bottom:911.613333pt;}
.yb8_c01262{bottom:912.386667pt;}
.yb9_c01262{bottom:913.146667pt;}
.ybb_c01262{bottom:914.693333pt;}
.yb6_c01262{bottom:916.986667pt;}
.yb4_c01262{bottom:930.053333pt;}
.yb2_c01262{bottom:931.586667pt;}
.yb5_c01262{bottom:932.346667pt;}
.yb0_c01262{bottom:933.120000pt;}
.yb1_c01262{bottom:933.893333pt;}
.yaf_c01262{bottom:934.653333pt;}
.yae_c01262{bottom:937.733333pt;}
.yb3_c01262{bottom:938.493333pt;}
.yad_c01262{bottom:942.333333pt;}
.yac_c01262{bottom:944.640000pt;}
.yaa_c01262{bottom:946.173333pt;}
.ya9_c01262{bottom:946.946667pt;}
.ya8_c01262{bottom:947.706667pt;}
.yab_c01262{bottom:949.253333pt;}
.ya2_c01262{bottom:951.546667pt;}
.ya6_c01262{bottom:953.093333pt;}
.ya5_c01262{bottom:953.853333pt;}
.ya7_c01262{bottom:954.626667pt;}
.ya3_c01262{bottom:955.386667pt;}
.ya1_c01262{bottom:956.160000pt;}
.ya0_c01262{bottom:956.933333pt;}
.ya4_c01262{bottom:959.226667pt;}
.y9f_c01262{bottom:966.906667pt;}
.y9d_c01262{bottom:967.680000pt;}
.y99_c01262{bottom:968.453333pt;}
.y9e_c01262{bottom:969.213333pt;}
.y9a_c01262{bottom:971.520000pt;}
.y98_c01262{bottom:972.293333pt;}
.y95_c01262{bottom:973.826667pt;}
.y2_c01262{bottom:974.586667pt;}
.y97_c01262{bottom:975.360000pt;}
.y1_c01262{bottom:976.893333pt;}
.y96_c01262{bottom:978.426667pt;}
.y9b_c01262{bottom:979.200000pt;}
.y3_c01262{bottom:980.733333pt;}
.y9c_c01262{bottom:981.506667pt;}
.y8e_c01262{bottom:982.266667pt;}
.y8c_c01262{bottom:983.040000pt;}
.y94_c01262{bottom:985.346667pt;}
.y8d_c01262{bottom:986.106667pt;}
.y91_c01262{bottom:986.880000pt;}
.y8f_c01262{bottom:989.186667pt;}
.y92_c01262{bottom:990.720000pt;}
.y90_c01262{bottom:991.493333pt;}
.y93_c01262{bottom:996.866667pt;}
.y8a_c01262{bottom:999.933333pt;}
.y89_c01262{bottom:1002.240000pt;}
.y85_c01262{bottom:1003.013333pt;}
.y83_c01262{bottom:1003.773333pt;}
.y8b_c01262{bottom:1004.546667pt;}
.y84_c01262{bottom:1006.080000pt;}
.y87_c01262{bottom:1006.853333pt;}
.y88_c01262{bottom:1008.386667pt;}
.y86_c01262{bottom:1009.920000pt;}
.y82_c01262{bottom:1021.440000pt;}
.y80_c01262{bottom:1022.213333pt;}
.y81_c01262{bottom:1022.973333pt;}
.y7b_c01262{bottom:1023.746667pt;}
.y7a_c01262{bottom:1024.506667pt;}
.y7e_c01262{bottom:1026.053333pt;}
.y7f_c01262{bottom:1026.813333pt;}
.y7c_c01262{bottom:1028.346667pt;}
.y7d_c01262{bottom:1029.120000pt;}
.y75_c01262{bottom:1041.413333pt;}
.y77_c01262{bottom:1042.173333pt;}
.y76_c01262{bottom:1042.946667pt;}
.y78_c01262{bottom:1046.013333pt;}
.y74_c01262{bottom:1046.786667pt;}
.y73_c01262{bottom:1047.546667pt;}
.y79_c01262{bottom:1049.093333pt;}
.y70_c01262{bottom:1058.306667pt;}
.y6e_c01262{bottom:1059.840000pt;}
.y6f_c01262{bottom:1062.906667pt;}
.y6d_c01262{bottom:1063.680000pt;}
.y66_c01262{bottom:1064.453333pt;}
.y64_c01262{bottom:1065.213333pt;}
.y72_c01262{bottom:1065.986667pt;}
.y71_c01262{bottom:1066.746667pt;}
.y6c_c01262{bottom:1069.053333pt;}
.y6b_c01262{bottom:1069.826667pt;}
.y6a_c01262{bottom:1070.586667pt;}
.y69_c01262{bottom:1071.360000pt;}
.y68_c01262{bottom:1074.426667pt;}
.y65_c01262{bottom:1075.200000pt;}
.y67_c01262{bottom:1075.973333pt;}
.y63_c01262{bottom:1078.266667pt;}
.y5d_c01262{bottom:1079.040000pt;}
.y5f_c01262{bottom:1080.573333pt;}
.y61_c01262{bottom:1081.346667pt;}
.y60_c01262{bottom:1082.106667pt;}
.y5e_c01262{bottom:1082.880000pt;}
.y62_c01262{bottom:1084.413333pt;}
.y5c_c01262{bottom:1086.720000pt;}
.y5b_c01262{bottom:1087.493333pt;}
.y57_c01262{bottom:1089.026667pt;}
.y59_c01262{bottom:1090.560000pt;}
.y56_c01262{bottom:1092.093333pt;}
.y58_c01262{bottom:1092.866667pt;}
.y5a_c01262{bottom:1093.626667pt;}
.y55_c01262{bottom:1094.400000pt;}
.y53_c01262{bottom:1095.933333pt;}
.y51_c01262{bottom:1096.706667pt;}
.y54_c01262{bottom:1097.466667pt;}
.y52_c01262{bottom:1099.013333pt;}
.y4e_c01262{bottom:1111.293333pt;}
.y4f_c01262{bottom:1112.066667pt;}
.y4d_c01262{bottom:1114.373333pt;}
.y4c_c01262{bottom:1115.133333pt;}
.y50_c01262{bottom:1115.906667pt;}
.y42_c01262{bottom:1118.213333pt;}
.y43_c01262{bottom:1118.973333pt;}
.y41_c01262{bottom:1119.746667pt;}
.y49_c01262{bottom:1121.280000pt;}
.y48_c01262{bottom:1122.053333pt;}
.y46_c01262{bottom:1122.813333pt;}
.y45_c01262{bottom:1123.586667pt;}
.y4a_c01262{bottom:1125.120000pt;}
.y4b_c01262{bottom:1125.893333pt;}
.y47_c01262{bottom:1126.653333pt;}
.y44_c01262{bottom:1129.733333pt;}
.y3b_c01262{bottom:1132.026667pt;}
.y38_c01262{bottom:1132.800000pt;}
.y39_c01262{bottom:1133.573333pt;}
.y3e_c01262{bottom:1135.106667pt;}
.y3a_c01262{bottom:1135.866667pt;}
.y3d_c01262{bottom:1137.413333pt;}
.y40_c01262{bottom:1138.173333pt;}
.y3c_c01262{bottom:1138.946667pt;}
.y3f_c01262{bottom:1139.706667pt;}
.y35_c01262{bottom:1144.320000pt;}
.y33_c01262{bottom:1145.093333pt;}
.y37_c01262{bottom:1146.626667pt;}
.y32_c01262{bottom:1147.386667pt;}
.y36_c01262{bottom:1148.160000pt;}
.y34_c01262{bottom:1148.933333pt;}
.y31_c01262{bottom:1150.466667pt;}
.y30_c01262{bottom:1154.306667pt;}
.y2b_c01262{bottom:1155.066667pt;}
.y2e_c01262{bottom:1159.680000pt;}
.y2c_c01262{bottom:1160.453333pt;}
.y2f_c01262{bottom:1161.213333pt;}
.y2d_c01262{bottom:1161.986667pt;}
.y2a_c01262{bottom:1167.360000pt;}
.y23_c01262{bottom:1168.133333pt;}
.y24_c01262{bottom:1168.893333pt;}
.y27_c01262{bottom:1169.666667pt;}
.y29_c01262{bottom:1170.426667pt;}
.y28_c01262{bottom:1171.200000pt;}
.y26_c01262{bottom:1171.973333pt;}
.y25_c01262{bottom:1173.506667pt;}
.y20_c01262{bottom:1178.106667pt;}
.y22_c01262{bottom:1179.653333pt;}
.y21_c01262{bottom:1181.946667pt;}
.y1f_c01262{bottom:1182.720000pt;}
.y1c_c01262{bottom:1183.493333pt;}
.y1a_c01262{bottom:1184.253333pt;}
.y1d_c01262{bottom:1188.866667pt;}
.y1e_c01262{bottom:1189.626667pt;}
.y19_c01262{bottom:1190.400000pt;}
.y1b_c01262{bottom:1191.173333pt;}
.y17_c01262{bottom:1201.146667pt;}
.y15_c01262{bottom:1202.693333pt;}
.y18_c01262{bottom:1203.453333pt;}
.y12_c01262{bottom:1204.226667pt;}
.y16_c01262{bottom:1205.760000pt;}
.y13_c01262{bottom:1206.533333pt;}
.y10_c01262{bottom:1208.066667pt;}
.y14_c01262{bottom:1208.826667pt;}
.y11_c01262{bottom:1209.600000pt;}
.yd_c01262{bottom:1223.426667pt;}
.ye_c01262{bottom:1227.266667pt;}
.yf_c01262{bottom:1228.026667pt;}
.yc_c01262{bottom:1228.800000pt;}
.ya_c01262{bottom:1229.573333pt;}
.y5_c01262{bottom:1231.866667pt;}
.y8_c01262{bottom:1232.640000pt;}
.y7_c01262{bottom:1233.413333pt;}
.y9_c01262{bottom:1234.173333pt;}
.yb_c01262{bottom:1238.013333pt;}
.y6_c01262{bottom:1238.786667pt;}
.y4_c01262{bottom:1262.586667pt;}
.h4_c01262{height:2.764500pt;}
.h19_c01262{height:4.799479pt;}
.h1a_c01262{height:5.519401pt;}
.h5_c01262{height:8.303099pt;}
.h3_c01262{height:11.038802pt;}
.h2_c01262{height:13.822500pt;}
.h1f_c01262{height:16.606198pt;}
.hf_c01262{height:19.341901pt;}
.h20_c01262{height:22.125599pt;}
.h1b_c01262{height:24.861302pt;}
.h7_c01262{height:27.645000pt;}
.h18_c01262{height:30.428698pt;}
.h6_c01262{height:33.164401pt;}
.h1d_c01262{height:35.948099pt;}
.h16_c01262{height:38.683802pt;}
.h15_c01262{height:41.467500pt;}
.ha_c01262{height:44.251198pt;}
.hb_c01262{height:46.986901pt;}
.he_c01262{height:49.770599pt;}
.h10_c01262{height:52.506302pt;}
.hd_c01262{height:55.290000pt;}
.h1e_c01262{height:58.073698pt;}
.h14_c01262{height:60.809401pt;}
.h8_c01262{height:63.593099pt;}
.h1c_c01262{height:66.328802pt;}
.h11_c01262{height:69.112500pt;}
.h13_c01262{height:71.896198pt;}
.h12_c01262{height:74.631901pt;}
.h9_c01262{height:77.415599pt;}
.h21_c01262{height:80.151302pt;}
.hc_c01262{height:82.935000pt;}
.h17_c01262{height:93.973802pt;}
.h22_c01262{height:99.541198pt;}
.h23_c01262{height:110.580000pt;}
.h1_c01262{height:1350.000000pt;}
.h0_c01262{height:1350.146667pt;}
.w0_c01262{width:948.480000pt;}
.w1_c01262{width:948.666667pt;}
.x0_c01262{left:0.000000pt;}
.x1_c01262{left:149.760000pt;}
.x2_c01262{left:163.586667pt;}
.x3_c01262{left:171.266667pt;}
.xe7_c01262{left:197.373333pt;}
.x86_c01262{left:198.906667pt;}
.xa1_c01262{left:200.453333pt;}
.xea_c01262{left:203.520000pt;}
.xe8_c01262{left:205.053333pt;}
.x5c_c01262{left:206.586667pt;}
.x17_c01262{left:208.133333pt;}
.x5_c01262{left:209.666667pt;}
.x6e_c01262{left:215.813333pt;}
.xcd_c01262{left:219.653333pt;}
.x14_c01262{left:221.186667pt;}
.xc8_c01262{left:225.026667pt;}
.x96_c01262{left:230.400000pt;}
.xeb_c01262{left:232.706667pt;}
.x46_c01262{left:234.240000pt;}
.xd9_c01262{left:238.853333pt;}
.x25_c01262{left:241.146667pt;}
.x26_c01262{left:244.986667pt;}
.xd4_c01262{left:248.066667pt;}
.x5d_c01262{left:251.133333pt;}
.x8f_c01262{left:252.666667pt;}
.xa2_c01262{left:255.746667pt;}
.x9e_c01262{left:257.280000pt;}
.x7d_c01262{left:260.346667pt;}
.xe9_c01262{left:265.733333pt;}
.x47_c01262{left:267.266667pt;}
.x76_c01262{left:268.800000pt;}
.x6_c01262{left:270.333333pt;}
.x51_c01262{left:272.640000pt;}
.xaf_c01262{left:274.173333pt;}
.x33_c01262{left:277.253333pt;}
.x77_c01262{left:278.786667pt;}
.x6f_c01262{left:280.320000pt;}
.x87_c01262{left:282.626667pt;}
.x27_c01262{left:284.933333pt;}
.x7e_c01262{left:288.000000pt;}
.xa3_c01262{left:290.306667pt;}
.xd7_c01262{left:291.840000pt;}
.x5e_c01262{left:297.986667pt;}
.xad_c01262{left:299.520000pt;}
.xd5_c01262{left:301.053333pt;}
.xb0_c01262{left:302.586667pt;}
.xc0_c01262{left:304.133333pt;}
.x48_c01262{left:306.426667pt;}
.x34_c01262{left:310.266667pt;}
.x88_c01262{left:315.653333pt;}
.xde_c01262{left:317.946667pt;}
.x52_c01262{left:321.026667pt;}
.xb7_c01262{left:324.093333pt;}
.x28_c01262{left:327.173333pt;}
.x97_c01262{left:329.466667pt;}
.x70_c01262{left:331.773333pt;}
.x35_c01262{left:338.693333pt;}
.xbb_c01262{left:340.226667pt;}
.x18_c01262{left:342.533333pt;}
.x15_c01262{left:345.600000pt;}
.x5f_c01262{left:347.133333pt;}
.x49_c01262{left:349.440000pt;}
.xc1_c01262{left:350.973333pt;}
.x7_c01262{left:353.280000pt;}
.x78_c01262{left:355.586667pt;}
.x53_c01262{left:357.893333pt;}
.x36_c01262{left:359.426667pt;}
.xb1_c01262{left:364.026667pt;}
.x79_c01262{left:365.573333pt;}
.x54_c01262{left:367.866667pt;}
.xd0_c01262{left:373.253333pt;}
.x7f_c01262{left:374.786667pt;}
.xd6_c01262{left:376.320000pt;}
.x89_c01262{left:377.853333pt;}
.x19_c01262{left:380.160000pt;}
.x71_c01262{left:384.773333pt;}
.x8a_c01262{left:386.306667pt;}
.x8_c01262{left:390.146667pt;}
.x67_c01262{left:392.453333pt;}
.xc6_c01262{left:394.746667pt;}
.x60_c01262{left:397.053333pt;}
.x4_c01262{left:398.586667pt;}
.x98_c01262{left:400.893333pt;}
.xa4_c01262{left:403.973333pt;}
.x37_c01262{left:405.506667pt;}
.x4a_c01262{left:407.040000pt;}
.x72_c01262{left:408.573333pt;}
.xda_c01262{left:410.106667pt;}
.xd1_c01262{left:412.413333pt;}
.x99_c01262{left:416.253333pt;}
.x90_c01262{left:418.560000pt;}
.x9_c01262{left:421.626667pt;}
.x55_c01262{left:424.706667pt;}
.xdf_c01262{left:427.013333pt;}
.xd8_c01262{left:429.306667pt;}
.x29_c01262{left:430.853333pt;}
.x56_c01262{left:433.146667pt;}
.xa_c01262{left:436.986667pt;}
.x1a_c01262{left:440.066667pt;}
.x68_c01262{left:442.373333pt;}
.x8b_c01262{left:446.213333pt;}
.x1b_c01262{left:447.746667pt;}
.xb_c01262{left:449.280000pt;}
.x16_c01262{left:450.813333pt;}
.x91_c01262{left:454.653333pt;}
.x9f_c01262{left:456.186667pt;}
.xc9_c01262{left:462.333333pt;}
.x38_c01262{left:463.866667pt;}
.xc_c01262{left:466.173333pt;}
.x1c_c01262{left:473.093333pt;}
.xbc_c01262{left:474.626667pt;}
.xe6_c01262{left:476.160000pt;}
.xd_c01262{left:478.466667pt;}
.x2a_c01262{left:480.000000pt;}
.x9a_c01262{left:483.066667pt;}
.x1d_c01262{left:487.680000pt;}
.x2b_c01262{left:489.213333pt;}
.x8c_c01262{left:490.746667pt;}
.x69_c01262{left:493.053333pt;}
.xe0_c01262{left:494.586667pt;}
.xbd_c01262{left:499.200000pt;}
.x39_c01262{left:501.506667pt;}
.xe_c01262{left:503.040000pt;}
.x7a_c01262{left:506.106667pt;}
.xca_c01262{left:507.653333pt;}
.xec_c01262{left:509.186667pt;}
.x92_c01262{left:510.720000pt;}
.x3a_c01262{left:513.786667pt;}
.x61_c01262{left:516.093333pt;}
.xa7_c01262{left:518.400000pt;}
.x6a_c01262{left:520.706667pt;}
.xc2_c01262{left:523.013333pt;}
.x2c_c01262{left:526.853333pt;}
.x4b_c01262{left:528.386667pt;}
.x9b_c01262{left:531.453333pt;}
.x80_c01262{left:533.760000pt;}
.xb8_c01262{left:536.066667pt;}
.xf_c01262{left:539.906667pt;}
.xae_c01262{left:541.440000pt;}
.x1e_c01262{left:543.746667pt;}
.xdb_c01262{left:547.586667pt;}
.xc7_c01262{left:549.120000pt;}
.xce_c01262{left:550.653333pt;}
.x10_c01262{left:556.800000pt;}
.x3b_c01262{left:558.333333pt;}
.x62_c01262{left:560.640000pt;}
.x81_c01262{left:562.946667pt;}
.x3c_c01262{left:565.253333pt;}
.x73_c01262{left:568.320000pt;}
.xb2_c01262{left:570.626667pt;}
.x11_c01262{left:572.160000pt;}
.x9c_c01262{left:576.773333pt;}
.xe1_c01262{left:579.066667pt;}
.xb3_c01262{left:580.613333pt;}
.xa8_c01262{left:582.146667pt;}
.x4c_c01262{left:589.826667pt;}
.x82_c01262{left:592.133333pt;}
.xa9_c01262{left:594.426667pt;}
.x3d_c01262{left:595.973333pt;}
.x2d_c01262{left:599.040000pt;}
.xed_c01262{left:601.346667pt;}
.xe2_c01262{left:602.880000pt;}
.x57_c01262{left:605.946667pt;}
.x1f_c01262{left:607.493333pt;}
.x8d_c01262{left:609.786667pt;}
.xa5_c01262{left:615.173333pt;}
.x63_c01262{left:616.706667pt;}
.xd2_c01262{left:618.240000pt;}
.x12_c01262{left:620.546667pt;}
.x58_c01262{left:622.080000pt;}
.x74_c01262{left:625.146667pt;}
.x7b_c01262{left:626.693333pt;}
.x59_c01262{left:628.986667pt;}
.x3e_c01262{left:632.066667pt;}
.x2e_c01262{left:633.600000pt;}
.x9d_c01262{left:635.133333pt;}
.x3f_c01262{left:637.440000pt;}
.x20_c01262{left:639.746667pt;}
.xdc_c01262{left:641.280000pt;}
.xcb_c01262{left:643.586667pt;}
.x2f_c01262{left:646.653333pt;}
.x40_c01262{left:648.960000pt;}
.xaa_c01262{left:652.800000pt;}
.x83_c01262{left:655.866667pt;}
.x64_c01262{left:658.173333pt;}
.x41_c01262{left:659.706667pt;}
.x21_c01262{left:662.013333pt;}
.x4d_c01262{left:663.546667pt;}
.xb4_c01262{left:665.093333pt;}
.x42_c01262{left:666.626667pt;}
.xb9_c01262{left:670.466667pt;}
.x65_c01262{left:672.000000pt;}
.xc3_c01262{left:673.533333pt;}
.x5a_c01262{left:675.840000pt;}
.xab_c01262{left:680.453333pt;}
.x7c_c01262{left:681.986667pt;}
.x4e_c01262{left:684.293333pt;}
.x6b_c01262{left:685.826667pt;}
.x93_c01262{left:688.133333pt;}
.x30_c01262{left:690.426667pt;}
.x66_c01262{left:692.733333pt;}
.xba_c01262{left:694.266667pt;}
.xdd_c01262{left:698.106667pt;}
.xa0_c01262{left:701.946667pt;}
.xe3_c01262{left:705.026667pt;}
.xbe_c01262{left:706.560000pt;}
.x4f_c01262{left:708.093333pt;}
.x84_c01262{left:711.933333pt;}
.x43_c01262{left:714.240000pt;}
.xcc_c01262{left:715.773333pt;}
.x31_c01262{left:718.080000pt;}
.xac_c01262{left:721.146667pt;}
.x8e_c01262{left:722.693333pt;}
.xb5_c01262{left:724.226667pt;}
.x6c_c01262{left:726.533333pt;}
.x22_c01262{left:728.826667pt;}
.x32_c01262{left:730.373333pt;}
.x50_c01262{left:732.666667pt;}
.xa6_c01262{left:734.973333pt;}
.xbf_c01262{left:736.506667pt;}
.x94_c01262{left:738.813333pt;}
.x75_c01262{left:741.893333pt;}
.xb6_c01262{left:744.186667pt;}
.x85_c01262{left:747.266667pt;}
.xc4_c01262{left:748.800000pt;}
.x44_c01262{left:753.413333pt;}
.xcf_c01262{left:754.946667pt;}
.xe4_c01262{left:757.253333pt;}
.x6d_c01262{left:758.786667pt;}
.x45_c01262{left:761.853333pt;}
.x5b_c01262{left:764.933333pt;}
.xe5_c01262{left:768.000000pt;}
.xd3_c01262{left:769.533333pt;}
.x95_c01262{left:771.066667pt;}
.x13_c01262{left:772.613333pt;}
.x23_c01262{left:777.213333pt;}
.x24_c01262{left:789.506667pt;}
.xc5_c01262{left:799.493333pt;}
.xf0_c01262{left:902.400000pt;}
.xee_c01262{left:910.080000pt;}
.xef_c01262{left:913.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_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_d8e91fb2b1d1962d9600165b.woff2')format("woff");}.ff1_c01263{font-family:ff1_c01263;line-height:1.109863;font-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_c01263{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01263{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m1_c01263{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);}
.m5_c01263{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);}
.m0_c01263{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);}
.m2_c01263{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c01263{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m7_c01263{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,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;}
.fs3_c01263{font-size:3.456000px;}
.fs5_c01263{font-size:6.900000px;}
.fs6_c01263{font-size:38.040000px;}
.fs0_c01263{font-size:48.360000px;}
.fs4_c01263{font-size:51.840000px;}
.fs1_c01263{font-size:55.320000px;}
.fs2_c01263{font-size:65.640000px;}
.y0_c01263{bottom:0.000000px;}
.y5_c01263{bottom:401.760000px;}
.y7_c01263{bottom:406.080000px;}
.y6_c01263{bottom:409.530000px;}
.y3_c01263{bottom:419.910000px;}
.y4_c01263{bottom:437.190000px;}
.y2_c01263{bottom:441.510000px;}
.y1_c01263{bottom:458.790000px;}
.h5_c01263{height:3.110063px;}
.h7_c01263{height:6.209326px;}
.h8_c01263{height:34.232285px;}
.h2_c01263{height:43.519277px;}
.h6_c01263{height:46.650937px;}
.h3_c01263{height:49.782598px;}
.h4_c01263{height:59.069590px;}
.h0_c01263{height:1509.405000px;}
.h1_c01263{height:1509.750000px;}
.w0_c01263{width:1079.130000px;}
.w1_c01263{width:1079.250000px;}
.x0_c01263{left:0.000000px;}
.x1_c01263{left:5.190000px;}
.x2_c01263{left:36.285000px;}
.x4_c01263{left:44.925000px;}
.x3_c01263{left:66.525000px;}
.x5_c01263{left:71.715000px;}
@media print{
.v0_c01263{vertical-align:0.000000pt;}
.ls0_c01263{letter-spacing:0.000000pt;}
.ws0_c01263{word-spacing:0.000000pt;}
.fs3_c01263{font-size:3.072000pt;}
.fs5_c01263{font-size:6.133333pt;}
.fs6_c01263{font-size:33.813333pt;}
.fs0_c01263{font-size:42.986667pt;}
.fs4_c01263{font-size:46.080000pt;}
.fs1_c01263{font-size:49.173333pt;}
.fs2_c01263{font-size:58.346667pt;}
.y0_c01263{bottom:0.000000pt;}
.y5_c01263{bottom:357.120000pt;}
.y7_c01263{bottom:360.960000pt;}
.y6_c01263{bottom:364.026667pt;}
.y3_c01263{bottom:373.253333pt;}
.y4_c01263{bottom:388.613333pt;}
.y2_c01263{bottom:392.453333pt;}
.y1_c01263{bottom:407.813333pt;}
.h5_c01263{height:2.764500pt;}
.h7_c01263{height:5.519401pt;}
.h8_c01263{height:30.428698pt;}
.h2_c01263{height:38.683802pt;}
.h6_c01263{height:41.467500pt;}
.h3_c01263{height:44.251198pt;}
.h4_c01263{height:52.506302pt;}
.h0_c01263{height:1341.693333pt;}
.h1_c01263{height:1342.000000pt;}
.w0_c01263{width:959.226667pt;}
.w1_c01263{width:959.333333pt;}
.x0_c01263{left:0.000000pt;}
.x1_c01263{left:4.613333pt;}
.x2_c01263{left:32.253333pt;}
.x4_c01263{left:39.933333pt;}
.x3_c01263{left:59.133333pt;}
.x5_c01263{left:63.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_860a1cf99598a8fb69fafeb1.woff2')format("woff");}.ff1_c01264{font-family:ff1_c01264;line-height:1.109863;font-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_c01264{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m68_c01264{transform:matrix(0.029325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029325,0.000000,0.000000,0.250000,0,0);}
.m67_c01264{transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);}
.m5a_c01264{transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);}
.mb_c01264{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m1_c01264{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m27_c01264{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.ma_c01264{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);}
.m2e_c01264{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.m39_c01264{transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);}
.m3a_c01264{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);}
.m57_c01264{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m1b_c01264{transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);}
.mf_c01264{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);}
.m33_c01264{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);}
.m31_c01264{transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);}
.m24_c01264{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m20_c01264{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);}
.m34_c01264{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);}
.m11_c01264{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);}
.m28_c01264{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.m45_c01264{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.m56_c01264{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.m38_c01264{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m43_c01264{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m4d_c01264{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.m26_c01264{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.m1e_c01264{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);}
.m59_c01264{transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);}
.m61_c01264{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);}
.m3e_c01264{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m49_c01264{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m5c_c01264{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m2c_c01264{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);}
.m2f_c01264{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);}
.m60_c01264{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m64_c01264{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m5b_c01264{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);}
.m40_c01264{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);}
.m29_c01264{transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);}
.m5e_c01264{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m46_c01264{transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);}
.m4e_c01264{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);}
.m53_c01264{transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);}
.m51_c01264{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);}
.m48_c01264{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);}
.m1d_c01264{transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245225,0.000000,0.000000,0.250000,0,0);}
.m50_c01264{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);}
.m54_c01264{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m62_c01264{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m65_c01264{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);}
.m21_c01264{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01264{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);}
.m1f_c01264{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);}
.m41_c01264{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);}
.m30_c01264{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m32_c01264{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01264{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m44_c01264{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);}
.m1c_c01264{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m23_c01264{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);}
.m18_c01264{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);}
.m13_c01264{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01264{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);}
.m0_c01264{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m37_c01264{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m42_c01264{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m52_c01264{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);}
.m35_c01264{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);}
.m3c_c01264{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m63_c01264{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c01264{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m16_c01264{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m36_c01264{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01264{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01264{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c01264{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me_c01264{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01264{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01264{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);}
.m12_c01264{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5_c01264{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c01264{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);}
.m47_c01264{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01264{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m22_c01264{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);}
.m17_c01264{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m10_c01264{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m66_c01264{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);}
.m4b_c01264{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);}
.m15_c01264{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2_c01264{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m14_c01264{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m55_c01264{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.md_c01264{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);}
.m2a_c01264{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m25_c01264{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01264{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m58_c01264{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m9_c01264{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m7_c01264{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m69_c01264{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m19_c01264{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m3_c01264{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m4_c01264{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01264{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.v0_c01264{vertical-align:0.000000px;}
.v1_c01264{vertical-align:6.900000px;}
.ls1_c01264{letter-spacing:0.000000px;}
.ls0_c01264{letter-spacing:26.219760px;}
.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;}
.fs3_c01264{font-size:3.456000px;}
.fs16_c01264{font-size:6.000000px;}
.fs1_c01264{font-size:6.900000px;}
.fs4_c01264{font-size:10.380000px;}
.fs5_c01264{font-size:13.800000px;}
.fs2_c01264{font-size:17.280000px;}
.fs0_c01264{font-size:20.760000px;}
.fsf_c01264{font-size:24.180000px;}
.fs1b_c01264{font-size:27.660000px;}
.fs7_c01264{font-size:34.560000px;}
.fs8_c01264{font-size:38.040000px;}
.fse_c01264{font-size:41.460000px;}
.fs18_c01264{font-size:44.940000px;}
.fsb_c01264{font-size:48.360000px;}
.fsc_c01264{font-size:51.840000px;}
.fs6_c01264{font-size:55.320000px;}
.fs11_c01264{font-size:58.740000px;}
.fs17_c01264{font-size:62.220000px;}
.fs14_c01264{font-size:65.640000px;}
.fsa_c01264{font-size:69.120000px;}
.fs10_c01264{font-size:72.600000px;}
.fs13_c01264{font-size:76.020000px;}
.fs12_c01264{font-size:79.500000px;}
.fs15_c01264{font-size:82.920000px;}
.fsd_c01264{font-size:86.400000px;}
.fs19_c01264{font-size:138.240000px;}
.fs1a_c01264{font-size:159.000000px;}
.fs9_c01264{font-size:162.420000px;}
.y0_c01264{bottom:0.000000px;}
.y6d_c01264{bottom:76.890000px;}
.y6e_c01264{bottom:86.400000px;}
.y6c_c01264{bottom:119.235000px;}
.y6b_c01264{bottom:125.280000px;}
.y6a_c01264{bottom:126.150000px;}
.y69_c01264{bottom:776.730000px;}
.y68_c01264{bottom:781.050000px;}
.y66_c01264{bottom:782.790000px;}
.y67_c01264{bottom:785.370000px;}
.y65_c01264{bottom:786.240000px;}
.y64_c01264{bottom:800.070000px;}
.y63_c01264{bottom:801.795000px;}
.y5f_c01264{bottom:802.650000px;}
.y62_c01264{bottom:805.245000px;}
.y61_c01264{bottom:806.115000px;}
.y60_c01264{bottom:806.970000px;}
.y5d_c01264{bottom:819.075000px;}
.y5b_c01264{bottom:820.800000px;}
.y59_c01264{bottom:821.670000px;}
.y5a_c01264{bottom:822.525000px;}
.y5c_c01264{bottom:823.395000px;}
.y5e_c01264{bottom:825.120000px;}
.y57_c01264{bottom:838.950000px;}
.y56_c01264{bottom:839.805000px;}
.y54_c01264{bottom:842.400000px;}
.y55_c01264{bottom:844.125000px;}
.y58_c01264{bottom:844.995000px;}
.y53_c01264{bottom:847.590000px;}
.y50_c01264{bottom:860.550000px;}
.y51_c01264{bottom:861.405000px;}
.y4e_c01264{bottom:864.000000px;}
.y52_c01264{bottom:864.870000px;}
.y4f_c01264{bottom:866.595000px;}
.y4c_c01264{bottom:882.150000px;}
.y4b_c01264{bottom:883.875000px;}
.y4d_c01264{bottom:885.600000px;}
.y47_c01264{bottom:902.010000px;}
.y48_c01264{bottom:902.880000px;}
.y4a_c01264{bottom:904.605000px;}
.y49_c01264{bottom:905.475000px;}
.y46_c01264{bottom:906.330000px;}
.y43_c01264{bottom:920.160000px;}
.y44_c01264{bottom:921.030000px;}
.y3f_c01264{bottom:921.885000px;}
.y41_c01264{bottom:923.610000px;}
.y40_c01264{bottom:924.480000px;}
.y45_c01264{bottom:926.205000px;}
.y42_c01264{bottom:927.930000px;}
.y3b_c01264{bottom:941.760000px;}
.y3e_c01264{bottom:942.630000px;}
.y3d_c01264{bottom:945.210000px;}
.y3c_c01264{bottom:947.805000px;}
.y3a_c01264{bottom:960.765000px;}
.y38_c01264{bottom:962.490000px;}
.y34_c01264{bottom:963.360000px;}
.y36_c01264{bottom:964.230000px;}
.y35_c01264{bottom:965.085000px;}
.y39_c01264{bottom:965.955000px;}
.y37_c01264{bottom:967.680000px;}
.y33_c01264{bottom:972.870000px;}
.y30_c01264{bottom:981.510000px;}
.y2f_c01264{bottom:982.365000px;}
.y2d_c01264{bottom:983.235000px;}
.y32_c01264{bottom:985.830000px;}
.y31_c01264{bottom:986.685000px;}
.y2e_c01264{bottom:988.410000px;}
.y2b_c01264{bottom:1001.370000px;}
.y29_c01264{bottom:1003.110000px;}
.y26_c01264{bottom:1003.965000px;}
.y28_c01264{bottom:1004.835000px;}
.y2c_c01264{bottom:1005.690000px;}
.y2a_c01264{bottom:1006.560000px;}
.y27_c01264{bottom:1013.475000px;}
.y23_c01264{bottom:1022.115000px;}
.y22_c01264{bottom:1022.970000px;}
.y20_c01264{bottom:1024.710000px;}
.y21_c01264{bottom:1025.565000px;}
.y24_c01264{bottom:1027.290000px;}
.y25_c01264{bottom:1028.160000px;}
.y1f_c01264{bottom:1039.395000px;}
.y1d_c01264{bottom:1041.990000px;}
.y1b_c01264{bottom:1044.570000px;}
.y1c_c01264{bottom:1048.035000px;}
.y1e_c01264{bottom:1053.210000px;}
.y19_c01264{bottom:1062.720000px;}
.y18_c01264{bottom:1063.590000px;}
.y17_c01264{bottom:1065.315000px;}
.y1a_c01264{bottom:1067.910000px;}
.y16_c01264{bottom:1082.595000px;}
.y15_c01264{bottom:1086.045000px;}
.y8_c01264{bottom:1105.050000px;}
.y13_c01264{bottom:1105.920000px;}
.y10_c01264{bottom:1106.790000px;}
.y14_c01264{bottom:1108.515000px;}
.y12_c01264{bottom:1109.370000px;}
.y11_c01264{bottom:1110.240000px;}
.yf_c01264{bottom:1111.110000px;}
.ye_c01264{bottom:1120.605000px;}
.y9_c01264{bottom:1121.475000px;}
.yd_c01264{bottom:1124.925000px;}
.ya_c01264{bottom:1127.520000px;}
.yb_c01264{bottom:1129.245000px;}
.yc_c01264{bottom:1130.115000px;}
.y6_c01264{bottom:1133.565000px;}
.y7_c01264{bottom:1134.435000px;}
.y5_c01264{bottom:1146.525000px;}
.y3_c01264{bottom:1148.250000px;}
.y4_c01264{bottom:1149.120000px;}
.y2_c01264{bottom:1410.915000px;}
.y1_c01264{bottom:1425.600000px;}
.h10_c01264{height:3.110063px;}
.h18_c01264{height:5.399414px;}
.h3_c01264{height:6.209326px;}
.h5_c01264{height:9.340986px;}
.h6_c01264{height:12.418652px;}
.h4_c01264{height:15.550313px;}
.h2_c01264{height:18.681973px;}
.h11_c01264{height:21.759639px;}
.h1d_c01264{height:24.891299px;}
.h8_c01264{height:31.100625px;}
.h9_c01264{height:34.232285px;}
.hf_c01264{height:37.309951px;}
.h1a_c01264{height:40.441611px;}
.hc_c01264{height:43.519277px;}
.hd_c01264{height:46.650937px;}
.h7_c01264{height:49.782598px;}
.h13_c01264{height:52.860264px;}
.h19_c01264{height:55.991924px;}
.h16_c01264{height:59.069590px;}
.hb_c01264{height:62.201250px;}
.h12_c01264{height:65.332910px;}
.h15_c01264{height:68.410576px;}
.h14_c01264{height:71.542236px;}
.h17_c01264{height:74.619902px;}
.he_c01264{height:77.751563px;}
.h1b_c01264{height:124.402500px;}
.h1c_c01264{height:143.084473px;}
.ha_c01264{height:146.162139px;}
.h1_c01264{height:1518.750000px;}
.h0_c01264{height:1518.915000px;}
.w0_c01264{width:1067.040000px;}
.w1_c01264{width:1067.250000px;}
.x0_c01264{left:0.000000px;}
.x3_c01264{left:135.645000px;}
.x7_c01264{left:171.930000px;}
.x8_c01264{left:187.485000px;}
.x9_c01264{left:201.315000px;}
.xa_c01264{left:216.870000px;}
.x28_c01264{left:225.510000px;}
.x33_c01264{left:228.960000px;}
.x1_c01264{left:231.555000px;}
.x1f_c01264{left:233.280000px;}
.x20_c01264{left:235.875000px;}
.x34_c01264{left:237.600000px;}
.x2_c01264{left:239.325000px;}
.x11_c01264{left:247.110000px;}
.x55_c01264{left:260.925000px;}
.x3d_c01264{left:263.520000px;}
.x4c_c01264{left:268.710000px;}
.x46_c01264{left:270.435000px;}
.x4d_c01264{left:279.075000px;}
.x12_c01264{left:280.800000px;}
.x44_c01264{left:282.525000px;}
.x3a_c01264{left:285.120000px;}
.x35_c01264{left:291.165000px;}
.x13_c01264{left:292.890000px;}
.x4_c01264{left:297.210000px;}
.x36_c01264{left:300.675000px;}
.x29_c01264{left:302.400000px;}
.x14_c01264{left:304.125000px;}
.xb_c01264{left:310.170000px;}
.x24_c01264{left:311.910000px;}
.x15_c01264{left:314.490000px;}
.x3e_c01264{left:319.680000px;}
.xc_c01264{left:322.275000px;}
.x53_c01264{left:324.870000px;}
.x16_c01264{left:332.640000px;}
.x2f_c01264{left:336.960000px;}
.x47_c01264{left:339.555000px;}
.x4a_c01264{left:341.280000px;}
.x21_c01264{left:343.875000px;}
.x3b_c01264{left:349.920000px;}
.x37_c01264{left:352.515000px;}
.x4e_c01264{left:355.965000px;}
.x2b_c01264{left:357.690000px;}
.x17_c01264{left:360.285000px;}
.x30_c01264{left:371.520000px;}
.xd_c01264{left:373.245000px;}
.x5_c01264{left:380.160000px;}
.x18_c01264{left:381.885000px;}
.x54_c01264{left:383.610000px;}
.x48_c01264{left:386.205000px;}
.x41_c01264{left:393.120000px;}
.x2c_c01264{left:396.570000px;}
.x51_c01264{left:399.165000px;}
.x38_c01264{left:400.890000px;}
.x22_c01264{left:404.355000px;}
.x3c_c01264{left:406.080000px;}
.x45_c01264{left:410.400000px;}
.xe_c01264{left:414.720000px;}
.x4f_c01264{left:416.445000px;}
.x25_c01264{left:419.910000px;}
.x2d_c01264{left:421.635000px;}
.x19_c01264{left:428.550000px;}
.x42_c01264{left:430.275000px;}
.xf_c01264{left:434.595000px;}
.x1a_c01264{left:439.770000px;}
.x3f_c01264{left:451.005000px;}
.x50_c01264{left:453.600000px;}
.x6_c01264{left:457.050000px;}
.x1b_c01264{left:460.515000px;}
.x2e_c01264{left:462.240000px;}
.x31_c01264{left:466.560000px;}
.x23_c01264{left:472.605000px;}
.x39_c01264{left:475.200000px;}
.x1c_c01264{left:479.520000px;}
.x49_c01264{left:482.970000px;}
.x43_c01264{left:485.565000px;}
.x52_c01264{left:487.290000px;}
.x2a_c01264{left:489.885000px;}
.x26_c01264{left:494.205000px;}
.x32_c01264{left:500.250000px;}
.x4b_c01264{left:501.990000px;}
.x10_c01264{left:504.570000px;}
.x1d_c01264{left:508.035000px;}
.x40_c01264{left:514.080000px;}
.x1e_c01264{left:523.590000px;}
.x27_c01264{left:533.955000px;}
.x56_c01264{left:817.350000px;}
.x57_c01264{left:831.165000px;}
.x58_c01264{left:972.000000px;}
.x59_c01264{left:1030.755000px;}
@media print{
.v0_c01264{vertical-align:0.000000pt;}
.v1_c01264{vertical-align:6.133333pt;}
.ls1_c01264{letter-spacing:0.000000pt;}
.ls0_c01264{letter-spacing:23.306453pt;}
.ws0_c01264{word-spacing:0.000000pt;}
.fs3_c01264{font-size:3.072000pt;}
.fs16_c01264{font-size:5.333333pt;}
.fs1_c01264{font-size:6.133333pt;}
.fs4_c01264{font-size:9.226667pt;}
.fs5_c01264{font-size:12.266667pt;}
.fs2_c01264{font-size:15.360000pt;}
.fs0_c01264{font-size:18.453333pt;}
.fsf_c01264{font-size:21.493333pt;}
.fs1b_c01264{font-size:24.586667pt;}
.fs7_c01264{font-size:30.720000pt;}
.fs8_c01264{font-size:33.813333pt;}
.fse_c01264{font-size:36.853333pt;}
.fs18_c01264{font-size:39.946667pt;}
.fsb_c01264{font-size:42.986667pt;}
.fsc_c01264{font-size:46.080000pt;}
.fs6_c01264{font-size:49.173333pt;}
.fs11_c01264{font-size:52.213333pt;}
.fs17_c01264{font-size:55.306667pt;}
.fs14_c01264{font-size:58.346667pt;}
.fsa_c01264{font-size:61.440000pt;}
.fs10_c01264{font-size:64.533333pt;}
.fs13_c01264{font-size:67.573333pt;}
.fs12_c01264{font-size:70.666667pt;}
.fs15_c01264{font-size:73.706667pt;}
.fsd_c01264{font-size:76.800000pt;}
.fs19_c01264{font-size:122.880000pt;}
.fs1a_c01264{font-size:141.333333pt;}
.fs9_c01264{font-size:144.373333pt;}
.y0_c01264{bottom:0.000000pt;}
.y6d_c01264{bottom:68.346667pt;}
.y6e_c01264{bottom:76.800000pt;}
.y6c_c01264{bottom:105.986667pt;}
.y6b_c01264{bottom:111.360000pt;}
.y6a_c01264{bottom:112.133333pt;}
.y69_c01264{bottom:690.426667pt;}
.y68_c01264{bottom:694.266667pt;}
.y66_c01264{bottom:695.813333pt;}
.y67_c01264{bottom:698.106667pt;}
.y65_c01264{bottom:698.880000pt;}
.y64_c01264{bottom:711.173333pt;}
.y63_c01264{bottom:712.706667pt;}
.y5f_c01264{bottom:713.466667pt;}
.y62_c01264{bottom:715.773333pt;}
.y61_c01264{bottom:716.546667pt;}
.y60_c01264{bottom:717.306667pt;}
.y5d_c01264{bottom:728.066667pt;}
.y5b_c01264{bottom:729.600000pt;}
.y59_c01264{bottom:730.373333pt;}
.y5a_c01264{bottom:731.133333pt;}
.y5c_c01264{bottom:731.906667pt;}
.y5e_c01264{bottom:733.440000pt;}
.y57_c01264{bottom:745.733333pt;}
.y56_c01264{bottom:746.493333pt;}
.y54_c01264{bottom:748.800000pt;}
.y55_c01264{bottom:750.333333pt;}
.y58_c01264{bottom:751.106667pt;}
.y53_c01264{bottom:753.413333pt;}
.y50_c01264{bottom:764.933333pt;}
.y51_c01264{bottom:765.693333pt;}
.y4e_c01264{bottom:768.000000pt;}
.y52_c01264{bottom:768.773333pt;}
.y4f_c01264{bottom:770.306667pt;}
.y4c_c01264{bottom:784.133333pt;}
.y4b_c01264{bottom:785.666667pt;}
.y4d_c01264{bottom:787.200000pt;}
.y47_c01264{bottom:801.786667pt;}
.y48_c01264{bottom:802.560000pt;}
.y4a_c01264{bottom:804.093333pt;}
.y49_c01264{bottom:804.866667pt;}
.y46_c01264{bottom:805.626667pt;}
.y43_c01264{bottom:817.920000pt;}
.y44_c01264{bottom:818.693333pt;}
.y3f_c01264{bottom:819.453333pt;}
.y41_c01264{bottom:820.986667pt;}
.y40_c01264{bottom:821.760000pt;}
.y45_c01264{bottom:823.293333pt;}
.y42_c01264{bottom:824.826667pt;}
.y3b_c01264{bottom:837.120000pt;}
.y3e_c01264{bottom:837.893333pt;}
.y3d_c01264{bottom:840.186667pt;}
.y3c_c01264{bottom:842.493333pt;}
.y3a_c01264{bottom:854.013333pt;}
.y38_c01264{bottom:855.546667pt;}
.y34_c01264{bottom:856.320000pt;}
.y36_c01264{bottom:857.093333pt;}
.y35_c01264{bottom:857.853333pt;}
.y39_c01264{bottom:858.626667pt;}
.y37_c01264{bottom:860.160000pt;}
.y33_c01264{bottom:864.773333pt;}
.y30_c01264{bottom:872.453333pt;}
.y2f_c01264{bottom:873.213333pt;}
.y2d_c01264{bottom:873.986667pt;}
.y32_c01264{bottom:876.293333pt;}
.y31_c01264{bottom:877.053333pt;}
.y2e_c01264{bottom:878.586667pt;}
.y2b_c01264{bottom:890.106667pt;}
.y29_c01264{bottom:891.653333pt;}
.y26_c01264{bottom:892.413333pt;}
.y28_c01264{bottom:893.186667pt;}
.y2c_c01264{bottom:893.946667pt;}
.y2a_c01264{bottom:894.720000pt;}
.y27_c01264{bottom:900.866667pt;}
.y23_c01264{bottom:908.546667pt;}
.y22_c01264{bottom:909.306667pt;}
.y20_c01264{bottom:910.853333pt;}
.y21_c01264{bottom:911.613333pt;}
.y24_c01264{bottom:913.146667pt;}
.y25_c01264{bottom:913.920000pt;}
.y1f_c01264{bottom:923.906667pt;}
.y1d_c01264{bottom:926.213333pt;}
.y1b_c01264{bottom:928.506667pt;}
.y1c_c01264{bottom:931.586667pt;}
.y1e_c01264{bottom:936.186667pt;}
.y19_c01264{bottom:944.640000pt;}
.y18_c01264{bottom:945.413333pt;}
.y17_c01264{bottom:946.946667pt;}
.y1a_c01264{bottom:949.253333pt;}
.y16_c01264{bottom:962.306667pt;}
.y15_c01264{bottom:965.373333pt;}
.y8_c01264{bottom:982.266667pt;}
.y13_c01264{bottom:983.040000pt;}
.y10_c01264{bottom:983.813333pt;}
.y14_c01264{bottom:985.346667pt;}
.y12_c01264{bottom:986.106667pt;}
.y11_c01264{bottom:986.880000pt;}
.yf_c01264{bottom:987.653333pt;}
.ye_c01264{bottom:996.093333pt;}
.y9_c01264{bottom:996.866667pt;}
.yd_c01264{bottom:999.933333pt;}
.ya_c01264{bottom:1002.240000pt;}
.yb_c01264{bottom:1003.773333pt;}
.yc_c01264{bottom:1004.546667pt;}
.y6_c01264{bottom:1007.613333pt;}
.y7_c01264{bottom:1008.386667pt;}
.y5_c01264{bottom:1019.133333pt;}
.y3_c01264{bottom:1020.666667pt;}
.y4_c01264{bottom:1021.440000pt;}
.y2_c01264{bottom:1254.146667pt;}
.y1_c01264{bottom:1267.200000pt;}
.h10_c01264{height:2.764500pt;}
.h18_c01264{height:4.799479pt;}
.h3_c01264{height:5.519401pt;}
.h5_c01264{height:8.303099pt;}
.h6_c01264{height:11.038802pt;}
.h4_c01264{height:13.822500pt;}
.h2_c01264{height:16.606198pt;}
.h11_c01264{height:19.341901pt;}
.h1d_c01264{height:22.125599pt;}
.h8_c01264{height:27.645000pt;}
.h9_c01264{height:30.428698pt;}
.hf_c01264{height:33.164401pt;}
.h1a_c01264{height:35.948099pt;}
.hc_c01264{height:38.683802pt;}
.hd_c01264{height:41.467500pt;}
.h7_c01264{height:44.251198pt;}
.h13_c01264{height:46.986901pt;}
.h19_c01264{height:49.770599pt;}
.h16_c01264{height:52.506302pt;}
.hb_c01264{height:55.290000pt;}
.h12_c01264{height:58.073698pt;}
.h15_c01264{height:60.809401pt;}
.h14_c01264{height:63.593099pt;}
.h17_c01264{height:66.328802pt;}
.he_c01264{height:69.112500pt;}
.h1b_c01264{height:110.580000pt;}
.h1c_c01264{height:127.186198pt;}
.ha_c01264{height:129.921901pt;}
.h1_c01264{height:1350.000000pt;}
.h0_c01264{height:1350.146667pt;}
.w0_c01264{width:948.480000pt;}
.w1_c01264{width:948.666667pt;}
.x0_c01264{left:0.000000pt;}
.x3_c01264{left:120.573333pt;}
.x7_c01264{left:152.826667pt;}
.x8_c01264{left:166.653333pt;}
.x9_c01264{left:178.946667pt;}
.xa_c01264{left:192.773333pt;}
.x28_c01264{left:200.453333pt;}
.x33_c01264{left:203.520000pt;}
.x1_c01264{left:205.826667pt;}
.x1f_c01264{left:207.360000pt;}
.x20_c01264{left:209.666667pt;}
.x34_c01264{left:211.200000pt;}
.x2_c01264{left:212.733333pt;}
.x11_c01264{left:219.653333pt;}
.x55_c01264{left:231.933333pt;}
.x3d_c01264{left:234.240000pt;}
.x4c_c01264{left:238.853333pt;}
.x46_c01264{left:240.386667pt;}
.x4d_c01264{left:248.066667pt;}
.x12_c01264{left:249.600000pt;}
.x44_c01264{left:251.133333pt;}
.x3a_c01264{left:253.440000pt;}
.x35_c01264{left:258.813333pt;}
.x13_c01264{left:260.346667pt;}
.x4_c01264{left:264.186667pt;}
.x36_c01264{left:267.266667pt;}
.x29_c01264{left:268.800000pt;}
.x14_c01264{left:270.333333pt;}
.xb_c01264{left:275.706667pt;}
.x24_c01264{left:277.253333pt;}
.x15_c01264{left:279.546667pt;}
.x3e_c01264{left:284.160000pt;}
.xc_c01264{left:286.466667pt;}
.x53_c01264{left:288.773333pt;}
.x16_c01264{left:295.680000pt;}
.x2f_c01264{left:299.520000pt;}
.x47_c01264{left:301.826667pt;}
.x4a_c01264{left:303.360000pt;}
.x21_c01264{left:305.666667pt;}
.x3b_c01264{left:311.040000pt;}
.x37_c01264{left:313.346667pt;}
.x4e_c01264{left:316.413333pt;}
.x2b_c01264{left:317.946667pt;}
.x17_c01264{left:320.253333pt;}
.x30_c01264{left:330.240000pt;}
.xd_c01264{left:331.773333pt;}
.x5_c01264{left:337.920000pt;}
.x18_c01264{left:339.453333pt;}
.x54_c01264{left:340.986667pt;}
.x48_c01264{left:343.293333pt;}
.x41_c01264{left:349.440000pt;}
.x2c_c01264{left:352.506667pt;}
.x51_c01264{left:354.813333pt;}
.x38_c01264{left:356.346667pt;}
.x22_c01264{left:359.426667pt;}
.x3c_c01264{left:360.960000pt;}
.x45_c01264{left:364.800000pt;}
.xe_c01264{left:368.640000pt;}
.x4f_c01264{left:370.173333pt;}
.x25_c01264{left:373.253333pt;}
.x2d_c01264{left:374.786667pt;}
.x19_c01264{left:380.933333pt;}
.x42_c01264{left:382.466667pt;}
.xf_c01264{left:386.306667pt;}
.x1a_c01264{left:390.906667pt;}
.x3f_c01264{left:400.893333pt;}
.x50_c01264{left:403.200000pt;}
.x6_c01264{left:406.266667pt;}
.x1b_c01264{left:409.346667pt;}
.x2e_c01264{left:410.880000pt;}
.x31_c01264{left:414.720000pt;}
.x23_c01264{left:420.093333pt;}
.x39_c01264{left:422.400000pt;}
.x1c_c01264{left:426.240000pt;}
.x49_c01264{left:429.306667pt;}
.x43_c01264{left:431.613333pt;}
.x52_c01264{left:433.146667pt;}
.x2a_c01264{left:435.453333pt;}
.x26_c01264{left:439.293333pt;}
.x32_c01264{left:444.666667pt;}
.x4b_c01264{left:446.213333pt;}
.x10_c01264{left:448.506667pt;}
.x1d_c01264{left:451.586667pt;}
.x40_c01264{left:456.960000pt;}
.x1e_c01264{left:465.413333pt;}
.x27_c01264{left:474.626667pt;}
.x56_c01264{left:726.533333pt;}
.x57_c01264{left:738.813333pt;}
.x58_c01264{left:864.000000pt;}
.x59_c01264{left:916.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_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_0ea9278d33a355b3532417d1.woff2')format("woff");}.ff1_c01265{font-family:ff1_c01265;line-height:1.109863;font-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_c01265{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m110_c01265{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m128_c01265{transform:matrix(0.112350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112350,0.000000,0.000000,0.250000,0,0);}
.me9_c01265{transform:matrix(0.113825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113825,0.000000,0.000000,0.250000,0,0);}
.m8a_c01265{transform:matrix(0.114025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114025,0.000000,0.000000,0.250000,0,0);}
.md6_c01265{transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);}
.mb7_c01265{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m107_c01265{transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);}
.mcb_c01265{transform:matrix(0.122450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122450,0.000000,0.000000,0.250000,0,0);}
.m50_c01265{transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);}
.m105_c01265{transform:matrix(0.125850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125850,0.000000,0.000000,0.250000,0,0);}
.m49_c01265{transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);}
.mac_c01265{transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);}
.m42_c01265{transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);}
.m109_c01265{transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);}
.md9_c01265{transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130075,0.000000,0.000000,0.250000,0,0);}
.me3_c01265{transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);}
.md5_c01265{transform:matrix(0.131050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131050,0.000000,0.000000,0.250000,0,0);}
.m4e_c01265{transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);}
.m10d_c01265{transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);}
.m70_c01265{transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);}
.m86_c01265{transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);}
.mc2_c01265{transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);}
.med_c01265{transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);}
.ma2_c01265{transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);}
.m4a_c01265{transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138150,0.000000,0.000000,0.250000,0,0);}
.m129_c01265{transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);}
.mcc_c01265{transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);}
.m10c_c01265{transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);}
.m0_c01265{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10f_c01265{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.m104_c01265{transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);}
.m28_c01265{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);}
.m9e_c01265{transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);}
.m2e_c01265{transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);}
.m1d_c01265{transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);}
.m79_c01265{transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);}
.m8b_c01265{transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);}
.m7f_c01265{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m113_c01265{transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);}
.ma5_c01265{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);}
.mb5_c01265{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);}
.me5_c01265{transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);}
.m101_c01265{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.m8d_c01265{transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);}
.m117_c01265{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);}
.mad_c01265{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m3a_c01265{transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);}
.m103_c01265{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.m76_c01265{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);}
.m7d_c01265{transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);}
.m46_c01265{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);}
.m35_c01265{transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);}
.ma8_c01265{transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);}
.m54_c01265{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);}
.m74_c01265{transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);}
.mbd_c01265{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m132_c01265{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.maa_c01265{transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);}
.mb3_c01265{transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);}
.m102_c01265{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m99_c01265{transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);}
.m4d_c01265{transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);}
.ma0_c01265{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.mb8_c01265{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.mba_c01265{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.mea_c01265{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m5a_c01265{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);}
.m78_c01265{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m63_c01265{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m84_c01265{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.mf6_c01265{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.mc4_c01265{transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);}
.ma3_c01265{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.mec_c01265{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.mbf_c01265{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);}
.m96_c01265{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.m97_c01265{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m98_c01265{transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);}
.m10a_c01265{transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);}
.m75_c01265{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.m3d_c01265{transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);}
.mb0_c01265{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.m114_c01265{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m33_c01265{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.mdb_c01265{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m73_c01265{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);}
.m88_c01265{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);}
.m95_c01265{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.me7_c01265{transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);}
.m60_c01265{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m127_c01265{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m9f_c01265{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m4c_c01265{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.ma9_c01265{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m3c_c01265{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);}
.m3b_c01265{transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);}
.m122_c01265{transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);}
.ma7_c01265{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.m115_c01265{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.mce_c01265{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m77_c01265{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);}
.m118_c01265{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.m10e_c01265{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);}
.m8e_c01265{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.mda_c01265{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);}
.m7b_c01265{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);}
.m32_c01265{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.m124_c01265{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.me8_c01265{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);}
.mca_c01265{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);}
.mfa_c01265{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);}
.m9b_c01265{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);}
.m106_c01265{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m34_c01265{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);}
.md3_c01265{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.m64_c01265{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.m30_c01265{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);}
.m93_c01265{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.mee_c01265{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);}
.m5f_c01265{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m8c_c01265{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);}
.m7a_c01265{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m37_c01265{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);}
.m7c_c01265{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);}
.ma4_c01265{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m5_c01265{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mab_c01265{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.mb2_c01265{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.mb1_c01265{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.m31_c01265{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.m43_c01265{transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);}
.mf0_c01265{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);}
.m69_c01265{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.m12d_c01265{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m133_c01265{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);}
.mb4_c01265{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);}
.m90_c01265{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m9a_c01265{transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);}
.m29_c01265{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);}
.m59_c01265{transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);}
.m6a_c01265{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.mbe_c01265{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);}
.m4_c01265{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.mcf_c01265{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);}
.m116_c01265{transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);}
.mdf_c01265{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.m5e_c01265{transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);}
.m85_c01265{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m19_c01265{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m1e_c01265{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.mc5_c01265{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.maf_c01265{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.m61_c01265{transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206375,0.000000,0.000000,0.250000,0,0);}
.mc9_c01265{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);}
.m11f_c01265{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.mc8_c01265{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);}
.m3e_c01265{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);}
.m11b_c01265{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m2b_c01265{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);}
.m12c_c01265{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.mf2_c01265{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.m47_c01265{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);}
.mf4_c01265{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m66_c01265{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.m5c_c01265{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m2c_c01265{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);}
.m44_c01265{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_c01265{transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);}
.m83_c01265{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.m51_c01265{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m57_c01265{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);}
.mae_c01265{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m72_c01265{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m58_c01265{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);}
.mc0_c01265{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m6c_c01265{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m136_c01265{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);}
.m6d_c01265{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m81_c01265{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);}
.m5b_c01265{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.mde_c01265{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);}
.m125_c01265{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);}
.m130_c01265{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.md8_c01265{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m12f_c01265{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);}
.m6e_c01265{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01265{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.md1_c01265{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);}
.m2d_c01265{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.m62_c01265{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);}
.m12b_c01265{transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);}
.m11c_c01265{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);}
.mef_c01265{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);}
.m126_c01265{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);}
.m52_c01265{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.me6_c01265{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.m3_c01265{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.mb6_c01265{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);}
.me2_c01265{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);}
.m123_c01265{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.mfd_c01265{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);}
.md0_c01265{transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);}
.m87_c01265{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);}
.m9d_c01265{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);}
.m8f_c01265{transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);}
.m6f_c01265{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);}
.m68_c01265{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m71_c01265{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m92_c01265{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);}
.mc3_c01265{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m2_c01265{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m11d_c01265{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);}
.mf3_c01265{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.ma6_c01265{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);}
.m120_c01265{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m108_c01265{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.mbb_c01265{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);}
.m40_c01265{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m94_c01265{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);}
.md4_c01265{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);}
.md2_c01265{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m2a_c01265{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);}
.m119_c01265{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);}
.m67_c01265{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18_c01265{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);}
.m9c_c01265{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);}
.m20_c01265{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);}
.m12a_c01265{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);}
.m100_c01265{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m11e_c01265{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m80_c01265{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01265{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);}
.m2f_c01265{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc1_c01265{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);}
.md_c01265{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);}
.m10_c01265{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m39_c01265{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);}
.m21_c01265{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01265{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01265{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);}
.m53_c01265{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m27_c01265{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);}
.mdc_c01265{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);}
.m6b_c01265{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me1_c01265{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);}
.mb9_c01265{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c01265{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7e_c01265{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);}
.m11_c01265{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01265{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m65_c01265{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me0_c01265{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m36_c01265{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m134_c01265{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01265{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);}
.m91_c01265{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m111_c01265{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mfc_c01265{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mff_c01265{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc7_c01265{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);}
.m1c_c01265{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);}
.mfe_c01265{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.meb_c01265{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc6_c01265{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);}
.m131_c01265{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m82_c01265{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma_c01265{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01265{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m38_c01265{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);}
.m12e_c01265{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);}
.mf1_c01265{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m45_c01265{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mf_c01265{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.me4_c01265{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);}
.mcd_c01265{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m9_c01265{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);}
.m11a_c01265{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m55_c01265{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m8_c01265{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m41_c01265{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m15_c01265{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.ma1_c01265{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m14_c01265{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);}
.mb_c01265{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mf5_c01265{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m13_c01265{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m89_c01265{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m24_c01265{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m12_c01265{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mc_c01265{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.me_c01265{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.md7_c01265{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m25_c01265{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1_c01265{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m16_c01265{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m48_c01265{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m26_c01265{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);}
.m56_c01265{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m22_c01265{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mfb_c01265{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mbc_c01265{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m135_c01265{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.mf8_c01265{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.mdd_c01265{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m112_c01265{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01265{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m23_c01265{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m10b_c01265{transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);}
.mf7_c01265{transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);}
.mf9_c01265{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01265{vertical-align:0.000000px;}
.v1_c01265{vertical-align:3.480000px;}
.ls2_c01265{letter-spacing:0.000000px;}
.ls0_c01265{letter-spacing:89.880000px;}
.ls1_c01265{letter-spacing:617.947152px;}
.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;}
.fs15_c01265{font-size:3.456000px;}
.fs0_c01265{font-size:6.000000px;}
.fs16_c01265{font-size:6.900000px;}
.fs17_c01265{font-size:10.380000px;}
.fs1_c01265{font-size:13.800000px;}
.fsa_c01265{font-size:17.280000px;}
.fs6_c01265{font-size:20.760000px;}
.fs20_c01265{font-size:24.180000px;}
.fs4_c01265{font-size:27.660000px;}
.fs26_c01265{font-size:31.080000px;}
.fs1e_c01265{font-size:34.560000px;}
.fs1c_c01265{font-size:38.040000px;}
.fs3_c01265{font-size:41.460000px;}
.fs1d_c01265{font-size:44.940000px;}
.fs24_c01265{font-size:48.360000px;}
.fs2_c01265{font-size:51.840000px;}
.fs22_c01265{font-size:55.320000px;}
.fs18_c01265{font-size:58.740000px;}
.fse_c01265{font-size:62.220000px;}
.fs11_c01265{font-size:65.640000px;}
.fsf_c01265{font-size:69.120000px;}
.fs5_c01265{font-size:72.600000px;}
.fs10_c01265{font-size:76.020000px;}
.fs23_c01265{font-size:79.500000px;}
.fsb_c01265{font-size:82.920000px;}
.fs1a_c01265{font-size:86.400000px;}
.fsc_c01265{font-size:89.880000px;}
.fs12_c01265{font-size:93.300000px;}
.fsd_c01265{font-size:96.780000px;}
.fs1b_c01265{font-size:100.200000px;}
.fs9_c01265{font-size:103.680000px;}
.fs19_c01265{font-size:107.160000px;}
.fs1f_c01265{font-size:110.580000px;}
.fs25_c01265{font-size:114.060000px;}
.fs14_c01265{font-size:117.480000px;}
.fs13_c01265{font-size:120.960000px;}
.fs21_c01265{font-size:124.440000px;}
.fs7_c01265{font-size:148.620000px;}
.fs8_c01265{font-size:155.520000px;}
.y0_c01265{bottom:0.000000px;}
.y12d_c01265{bottom:120.090000px;}
.y12c_c01265{bottom:176.250000px;}
.y128_c01265{bottom:191.805000px;}
.y12b_c01265{bottom:194.400000px;}
.y129_c01265{bottom:195.270000px;}
.y121_c01265{bottom:198.720000px;}
.y124_c01265{bottom:199.590000px;}
.y12a_c01265{bottom:200.445000px;}
.y127_c01265{bottom:201.315000px;}
.y126_c01265{bottom:202.170000px;}
.y123_c01265{bottom:203.040000px;}
.y125_c01265{bottom:203.910000px;}
.y122_c01265{bottom:204.765000px;}
.y11f_c01265{bottom:215.130000px;}
.y11d_c01265{bottom:216.870000px;}
.y11b_c01265{bottom:219.450000px;}
.y11e_c01265{bottom:220.320000px;}
.y11a_c01265{bottom:221.190000px;}
.y120_c01265{bottom:222.045000px;}
.y11c_c01265{bottom:224.640000px;}
.y117_c01265{bottom:236.730000px;}
.y116_c01265{bottom:237.600000px;}
.y118_c01265{bottom:240.195000px;}
.y119_c01265{bottom:241.920000px;}
.y112_c01265{bottom:243.645000px;}
.y115_c01265{bottom:244.515000px;}
.y113_c01265{bottom:245.370000px;}
.y114_c01265{bottom:246.240000px;}
.y111_c01265{bottom:254.010000px;}
.y10f_c01265{bottom:256.605000px;}
.y10b_c01265{bottom:258.330000px;}
.y10d_c01265{bottom:259.200000px;}
.y10c_c01265{bottom:260.070000px;}
.y10e_c01265{bottom:260.925000px;}
.y110_c01265{bottom:261.795000px;}
.y10a_c01265{bottom:263.520000px;}
.y109_c01265{bottom:276.480000px;}
.y107_c01265{bottom:277.350000px;}
.y105_c01265{bottom:278.205000px;}
.y106_c01265{bottom:279.075000px;}
.y104_c01265{bottom:279.930000px;}
.y108_c01265{bottom:280.800000px;}
.y103_c01265{bottom:285.990000px;}
.y102_c01265{bottom:289.440000px;}
.y100_c01265{bottom:298.080000px;}
.y101_c01265{bottom:298.950000px;}
.yff_c01265{bottom:299.805000px;}
.yfd_c01265{bottom:301.530000px;}
.yfe_c01265{bottom:302.400000px;}
.yfc_c01265{bottom:303.270000px;}
.yf8_c01265{bottom:317.085000px;}
.yfa_c01265{bottom:317.955000px;}
.yfb_c01265{bottom:319.680000px;}
.yf6_c01265{bottom:320.550000px;}
.yf9_c01265{bottom:321.405000px;}
.yf7_c01265{bottom:322.275000px;}
.yf5_c01265{bottom:323.130000px;}
.yf2_c01265{bottom:324.000000px;}
.yf3_c01265{bottom:324.870000px;}
.yf4_c01265{bottom:325.725000px;}
.yf0_c01265{bottom:382.755000px;}
.yf1_c01265{bottom:383.610000px;}
.yef_c01265{bottom:385.350000px;}
.yed_c01265{bottom:389.670000px;}
.yeb_c01265{bottom:391.395000px;}
.ye9_c01265{bottom:393.120000px;}
.yea_c01265{bottom:393.990000px;}
.ye6_c01265{bottom:394.845000px;}
.ye7_c01265{bottom:396.570000px;}
.ye8_c01265{bottom:397.440000px;}
.yec_c01265{bottom:400.035000px;}
.yee_c01265{bottom:400.890000px;}
.ye3_c01265{bottom:406.950000px;}
.ye5_c01265{bottom:410.400000px;}
.ydf_c01265{bottom:411.270000px;}
.ye4_c01265{bottom:413.850000px;}
.yde_c01265{bottom:414.720000px;}
.ye2_c01265{bottom:415.590000px;}
.ye0_c01265{bottom:419.040000px;}
.ye1_c01265{bottom:420.765000px;}
.yda_c01265{bottom:432.870000px;}
.yd8_c01265{bottom:433.725000px;}
.ydb_c01265{bottom:435.450000px;}
.yd9_c01265{bottom:438.045000px;}
.ydd_c01265{bottom:438.915000px;}
.ydc_c01265{bottom:439.770000px;}
.yd3_c01265{bottom:440.640000px;}
.yd7_c01265{bottom:441.510000px;}
.yd6_c01265{bottom:443.235000px;}
.yd4_c01265{bottom:446.685000px;}
.yd5_c01265{bottom:447.555000px;}
.yd2_c01265{bottom:455.325000px;}
.ycf_c01265{bottom:457.920000px;}
.yce_c01265{bottom:458.790000px;}
.ycd_c01265{bottom:460.515000px;}
.yd1_c01265{bottom:461.370000px;}
.yc9_c01265{bottom:462.240000px;}
.yd0_c01265{bottom:463.965000px;}
.ycc_c01265{bottom:467.430000px;}
.yc8_c01265{bottom:470.010000px;}
.ycb_c01265{bottom:472.605000px;}
.yca_c01265{bottom:473.475000px;}
.yc7_c01265{bottom:477.795000px;}
.yc4_c01265{bottom:481.245000px;}
.yc6_c01265{bottom:482.115000px;}
.yc3_c01265{bottom:482.970000px;}
.ybf_c01265{bottom:483.840000px;}
.ybd_c01265{bottom:486.435000px;}
.yc0_c01265{bottom:488.160000px;}
.yc5_c01265{bottom:489.030000px;}
.yc2_c01265{bottom:489.885000px;}
.yc1_c01265{bottom:490.755000px;}
.ybe_c01265{bottom:495.930000px;}
.ybb_c01265{bottom:506.310000px;}
.yba_c01265{bottom:508.890000px;}
.ybc_c01265{bottom:513.210000px;}
.yb5_c01265{bottom:514.080000px;}
.yb9_c01265{bottom:514.950000px;}
.yb7_c01265{bottom:515.805000px;}
.yb8_c01265{bottom:516.675000px;}
.yb4_c01265{bottom:520.995000px;}
.yb6_c01265{bottom:521.850000px;}
.yb2_c01265{bottom:532.230000px;}
.yb1_c01265{bottom:533.085000px;}
.yae_c01265{bottom:536.550000px;}
.yac_c01265{bottom:537.405000px;}
.yb3_c01265{bottom:539.130000px;}
.yb0_c01265{bottom:540.000000px;}
.yab_c01265{bottom:541.725000px;}
.yaf_c01265{bottom:542.595000px;}
.yad_c01265{bottom:545.190000px;}
.ya9_c01265{bottom:556.410000px;}
.yaa_c01265{bottom:557.280000px;}
.ya7_c01265{bottom:558.150000px;}
.ya6_c01265{bottom:559.875000px;}
.ya5_c01265{bottom:561.600000px;}
.ya4_c01265{bottom:562.470000px;}
.ya8_c01265{bottom:564.195000px;}
.ya3_c01265{bottom:565.050000px;}
.ya2_c01265{bottom:581.475000px;}
.ya0_c01265{bottom:584.070000px;}
.y9f_c01265{bottom:585.795000px;}
.y9d_c01265{bottom:586.650000px;}
.y9c_c01265{bottom:589.245000px;}
.ya1_c01265{bottom:590.115000px;}
.y9e_c01265{bottom:593.565000px;}
.y9b_c01265{bottom:596.160000px;}
.y9a_c01265{bottom:605.670000px;}
.y98_c01265{bottom:608.250000px;}
.y97_c01265{bottom:609.990000px;}
.y94_c01265{bottom:612.570000px;}
.y99_c01265{bottom:615.165000px;}
.y96_c01265{bottom:619.485000px;}
.y93_c01265{bottom:620.355000px;}
.y95_c01265{bottom:621.210000px;}
.y12f_c01265{bottom:630.720000px;}
.y92_c01265{bottom:631.590000px;}
.y90_c01265{bottom:634.170000px;}
.y8f_c01265{bottom:636.765000px;}
.y8d_c01265{bottom:638.490000px;}
.y91_c01265{bottom:640.230000px;}
.y8e_c01265{bottom:643.680000px;}
.y8c_c01265{bottom:648.000000px;}
.y8b_c01265{bottom:656.640000px;}
.y89_c01265{bottom:658.365000px;}
.y87_c01265{bottom:660.090000px;}
.y85_c01265{bottom:662.685000px;}
.y8a_c01265{bottom:664.410000px;}
.y88_c01265{bottom:667.005000px;}
.y86_c01265{bottom:670.470000px;}
.y83_c01265{bottom:681.690000px;}
.y81_c01265{bottom:682.560000px;}
.y84_c01265{bottom:683.430000px;}
.y7f_c01265{bottom:685.155000px;}
.y7d_c01265{bottom:686.880000px;}
.y7e_c01265{bottom:687.750000px;}
.y7c_c01265{bottom:690.330000px;}
.y82_c01265{bottom:692.070000px;}
.y80_c01265{bottom:692.925000px;}
.y7b_c01265{bottom:705.885000px;}
.y7a_c01265{bottom:707.610000px;}
.y78_c01265{bottom:709.350000px;}
.y76_c01265{bottom:711.930000px;}
.y79_c01265{bottom:713.670000px;}
.y77_c01265{bottom:719.715000px;}
.y74_c01265{bottom:729.210000px;}
.y75_c01265{bottom:730.080000px;}
.y73_c01265{bottom:730.950000px;}
.y71_c01265{bottom:733.530000px;}
.y72_c01265{bottom:734.400000px;}
.y70_c01265{bottom:735.270000px;}
.y6f_c01265{bottom:736.995000px;}
.y6c_c01265{bottom:756.000000px;}
.y6b_c01265{bottom:757.725000px;}
.y6d_c01265{bottom:759.450000px;}
.y6e_c01265{bottom:761.190000px;}
.y6a_c01265{bottom:762.915000px;}
.y67_c01265{bottom:763.770000px;}
.y68_c01265{bottom:768.090000px;}
.y69_c01265{bottom:768.960000px;}
.y66_c01265{bottom:780.195000px;}
.y63_c01265{bottom:782.790000px;}
.y64_c01265{bottom:783.645000px;}
.y62_c01265{bottom:784.515000px;}
.y60_c01265{bottom:786.240000px;}
.y65_c01265{bottom:787.965000px;}
.y5f_c01265{bottom:788.835000px;}
.y61_c01265{bottom:791.430000px;}
.y5d_c01265{bottom:806.115000px;}
.y5c_c01265{bottom:807.840000px;}
.y5b_c01265{bottom:809.565000px;}
.y59_c01265{bottom:810.435000px;}
.y5a_c01265{bottom:811.290000px;}
.y5e_c01265{bottom:813.885000px;}
.y12e_c01265{bottom:818.205000px;}
.y57_c01265{bottom:831.165000px;}
.y58_c01265{bottom:832.035000px;}
.y53_c01265{bottom:832.890000px;}
.y55_c01265{bottom:834.630000px;}
.y51_c01265{bottom:835.485000px;}
.y56_c01265{bottom:837.210000px;}
.y54_c01265{bottom:838.080000px;}
.y52_c01265{bottom:838.950000px;}
.y50_c01265{bottom:848.445000px;}
.y4e_c01265{bottom:849.315000px;}
.y4d_c01265{bottom:851.040000px;}
.y4b_c01265{bottom:853.635000px;}
.y48_c01265{bottom:854.490000px;}
.y49_c01265{bottom:855.360000px;}
.y4f_c01265{bottom:856.230000px;}
.y4c_c01265{bottom:857.085000px;}
.y45_c01265{bottom:859.680000px;}
.y46_c01265{bottom:863.130000px;}
.y47_c01265{bottom:864.870000px;}
.y4a_c01265{bottom:865.725000px;}
.y44_c01265{bottom:876.960000px;}
.y43_c01265{bottom:879.555000px;}
.y40_c01265{bottom:882.150000px;}
.y3e_c01265{bottom:883.005000px;}
.y3f_c01265{bottom:883.875000px;}
.y3b_c01265{bottom:887.325000px;}
.y42_c01265{bottom:888.195000px;}
.y41_c01265{bottom:889.050000px;}
.y3c_c01265{bottom:891.645000px;}
.y3d_c01265{bottom:893.370000px;}
.y39_c01265{bottom:903.750000px;}
.y37_c01265{bottom:905.475000px;}
.y36_c01265{bottom:907.200000px;}
.y35_c01265{bottom:908.070000px;}
.y3a_c01265{bottom:913.245000px;}
.y38_c01265{bottom:914.115000px;}
.y33_c01265{bottom:914.970000px;}
.y34_c01265{bottom:915.840000px;}
.y30_c01265{bottom:916.710000px;}
.y31_c01265{bottom:918.435000px;}
.y32_c01265{bottom:926.205000px;}
.y2f_c01265{bottom:929.670000px;}
.y2e_c01265{bottom:930.525000px;}
.y2d_c01265{bottom:932.250000px;}
.y2c_c01265{bottom:933.120000px;}
.y2b_c01265{bottom:941.760000px;}
.y2a_c01265{bottom:942.630000px;}
.y29_c01265{bottom:951.270000px;}
.y27_c01265{bottom:955.590000px;}
.y28_c01265{bottom:956.445000px;}
.y25_c01265{bottom:957.315000px;}
.y24_c01265{bottom:958.170000px;}
.y26_c01265{bottom:963.360000px;}
.y23_c01265{bottom:965.955000px;}
.y22_c01265{bottom:966.810000px;}
.y21_c01265{bottom:987.555000px;}
.y1f_c01265{bottom:990.150000px;}
.y20_c01265{bottom:991.005000px;}
.y1e_c01265{bottom:992.730000px;}
.y1c_c01265{bottom:997.050000px;}
.y1d_c01265{bottom:998.790000px;}
.y1b_c01265{bottom:999.645000px;}
.y1a_c01265{bottom:1000.515000px;}
.y19_c01265{bottom:1002.240000px;}
.y18_c01265{bottom:1003.110000px;}
.y17_c01265{bottom:1004.835000px;}
.y15_c01265{bottom:1005.690000px;}
.y16_c01265{bottom:1006.560000px;}
.y8_c01265{bottom:1028.160000px;}
.y7_c01265{bottom:1029.030000px;}
.y14_c01265{bottom:1054.950000px;}
.y13_c01265{bottom:1055.805000px;}
.y12_c01265{bottom:1056.675000px;}
.y11_c01265{bottom:1086.045000px;}
.y10_c01265{bottom:1086.915000px;}
.yf_c01265{bottom:1089.510000px;}
.ye_c01265{bottom:1090.365000px;}
.y6_c01265{bottom:1118.010000px;}
.yd_c01265{bottom:1124.070000px;}
.yc_c01265{bottom:1126.650000px;}
.yb_c01265{bottom:1128.390000px;}
.ya_c01265{bottom:1172.445000px;}
.y9_c01265{bottom:1175.910000px;}
.y4_c01265{bottom:1186.275000px;}
.y3_c01265{bottom:1189.725000px;}
.y5_c01265{bottom:1190.595000px;}
.y2_c01265{bottom:1392.765000px;}
.y1_c01265{bottom:1397.085000px;}
.h17_c01265{height:3.110063px;}
.h2_c01265{height:5.399414px;}
.h18_c01265{height:6.209326px;}
.h19_c01265{height:9.340986px;}
.h3_c01265{height:12.418652px;}
.h28_c01265{height:12.820986px;}
.hc_c01265{height:15.550313px;}
.h8_c01265{height:18.681973px;}
.h22_c01265{height:21.759639px;}
.h6_c01265{height:24.891299px;}
.h29_c01265{height:27.968965px;}
.h20_c01265{height:31.100625px;}
.h1e_c01265{height:34.232285px;}
.h5_c01265{height:37.309951px;}
.h1f_c01265{height:40.441611px;}
.h26_c01265{height:43.519277px;}
.h4_c01265{height:46.650937px;}
.h24_c01265{height:49.782598px;}
.h1a_c01265{height:52.860264px;}
.h10_c01265{height:55.991924px;}
.h13_c01265{height:59.069590px;}
.h11_c01265{height:62.201250px;}
.h7_c01265{height:65.332910px;}
.h12_c01265{height:68.410576px;}
.h25_c01265{height:71.542236px;}
.hd_c01265{height:74.619902px;}
.h1c_c01265{height:77.751563px;}
.he_c01265{height:80.883223px;}
.h14_c01265{height:83.960889px;}
.hf_c01265{height:87.092549px;}
.h1d_c01265{height:90.170215px;}
.hb_c01265{height:93.301875px;}
.h1b_c01265{height:96.433535px;}
.h21_c01265{height:99.511201px;}
.h27_c01265{height:102.642861px;}
.h16_c01265{height:105.720527px;}
.h15_c01265{height:108.852188px;}
.h23_c01265{height:111.983848px;}
.h9_c01265{height:133.743486px;}
.ha_c01265{height:139.952812px;}
.h0_c01265{height:1509.405000px;}
.h1_c01265{height:1509.750000px;}
.w0_c01265{width:1079.130000px;}
.w1_c01265{width:1079.250000px;}
.x0_c01265{left:0.000000px;}
.x8_c01265{left:6.045000px;}
.x3_c01265{left:7.770000px;}
.x7_c01265{left:9.510000px;}
.x4_c01265{left:22.470000px;}
.x1_c01265{left:24.195000px;}
.x2_c01265{left:31.110000px;}
.x5_c01265{left:39.750000px;}
.x6_c01265{left:45.795000px;}
.x70_c01265{left:209.955000px;}
.x65_c01265{left:218.595000px;}
.x5f_c01265{left:222.045000px;}
.x71_c01265{left:224.640000px;}
.x4f_c01265{left:226.365000px;}
.xa5_c01265{left:228.090000px;}
.xb7_c01265{left:229.830000px;}
.x44_c01265{left:232.410000px;}
.x59_c01265{left:234.150000px;}
.x3a_c01265{left:243.645000px;}
.x45_c01265{left:246.240000px;}
.x8b_c01265{left:254.880000px;}
.xc0_c01265{left:260.070000px;}
.xa6_c01265{left:261.795000px;}
.xd1_c01265{left:263.520000px;}
.x7c_c01265{left:267.840000px;}
.x3b_c01265{left:274.755000px;}
.x50_c01265{left:276.480000px;}
.xe_c01265{left:284.250000px;}
.xcb_c01265{left:285.990000px;}
.x3c_c01265{left:287.715000px;}
.xb5_c01265{left:292.035000px;}
.x51_c01265{left:293.760000px;}
.x8f_c01265{left:298.080000px;}
.x46_c01265{left:300.675000px;}
.xb1_c01265{left:302.400000px;}
.x3d_c01265{left:305.850000px;}
.x9_c01265{left:308.445000px;}
.x75_c01265{left:311.040000px;}
.x85_c01265{left:312.765000px;}
.x7d_c01265{left:315.360000px;}
.xcc_c01265{left:317.085000px;}
.x60_c01265{left:319.680000px;}
.x97_c01265{left:321.405000px;}
.xf_c01265{left:324.000000px;}
.x5a_c01265{left:328.320000px;}
.x6b_c01265{left:332.640000px;}
.xae_c01265{left:335.235000px;}
.x76_c01265{left:337.830000px;}
.x9c_c01265{left:341.280000px;}
.x66_c01265{left:343.875000px;}
.xd4_c01265{left:346.470000px;}
.x7e_c01265{left:348.195000px;}
.xc1_c01265{left:349.920000px;}
.x9d_c01265{left:354.240000px;}
.x86_c01265{left:355.965000px;}
.x61_c01265{left:358.560000px;}
.x26_c01265{left:362.010000px;}
.x33_c01265{left:363.750000px;}
.x90_c01265{left:365.475000px;}
.xc2_c01265{left:368.070000px;}
.x2a_c01265{left:373.245000px;}
.xb8_c01265{left:374.970000px;}
.xbd_c01265{left:378.435000px;}
.x67_c01265{left:381.885000px;}
.x1b_c01265{left:385.350000px;}
.x6c_c01265{left:387.930000px;}
.x98_c01265{left:390.525000px;}
.x34_c01265{left:397.440000px;}
.x2b_c01265{left:400.890000px;}
.x3e_c01265{left:403.485000px;}
.x7f_c01265{left:407.805000px;}
.x8c_c01265{left:410.400000px;}
.xb2_c01265{left:412.125000px;}
.x27_c01265{left:414.720000px;}
.x52_c01265{left:419.910000px;}
.xb_c01265{left:421.635000px;}
.x91_c01265{left:425.955000px;}
.xce_c01265{left:427.680000px;}
.x77_c01265{left:430.275000px;}
.xb9_c01265{left:433.725000px;}
.x6d_c01265{left:435.450000px;}
.x14_c01265{left:437.190000px;}
.x1c_c01265{left:438.915000px;}
.x9e_c01265{left:443.235000px;}
.xb6_c01265{left:444.960000px;}
.x2c_c01265{left:446.685000px;}
.x35_c01265{left:449.280000px;}
.x47_c01265{left:451.005000px;}
.x10_c01265{left:455.325000px;}
.x53_c01265{left:457.920000px;}
.x8d_c01265{left:462.240000px;}
.x15_c01265{left:464.835000px;}
.x87_c01265{left:466.560000px;}
.x9a_c01265{left:469.155000px;}
.xd2_c01265{left:471.750000px;}
.xc3_c01265{left:474.330000px;}
.xcf_c01265{left:477.795000px;}
.x1d_c01265{left:479.520000px;}
.x94_c01265{left:484.710000px;}
.x80_c01265{left:493.350000px;}
.xd5_c01265{left:496.800000px;}
.x2d_c01265{left:501.120000px;}
.x54_c01265{left:502.845000px;}
.x78_c01265{left:505.440000px;}
.xa7_c01265{left:509.760000px;}
.x9f_c01265{left:511.485000px;}
.x3f_c01265{left:514.080000px;}
.x68_c01265{left:516.675000px;}
.x9b_c01265{left:518.400000px;}
.xa_c01265{left:520.125000px;}
.x22_c01265{left:522.720000px;}
.x1e_c01265{left:524.445000px;}
.xd6_c01265{left:528.765000px;}
.x16_c01265{left:532.230000px;}
.x62_c01265{left:535.680000px;}
.x88_c01265{left:538.275000px;}
.x6e_c01265{left:540.000000px;}
.x2e_c01265{left:541.725000px;}
.xbe_c01265{left:545.190000px;}
.x17_c01265{left:550.365000px;}
.xc4_c01265{left:552.960000px;}
.x48_c01265{left:555.555000px;}
.xa8_c01265{left:559.005000px;}
.xbf_c01265{left:560.730000px;}
.xa0_c01265{left:562.470000px;}
.x1f_c01265{left:565.920000px;}
.xc7_c01265{left:567.645000px;}
.xa1_c01265{left:570.240000px;}
.x23_c01265{left:571.965000px;}
.x28_c01265{left:575.430000px;}
.x18_c01265{left:578.010000px;}
.x5b_c01265{left:590.970000px;}
.x49_c01265{left:595.290000px;}
.x81_c01265{left:597.030000px;}
.xa2_c01265{left:600.480000px;}
.xa9_c01265{left:607.395000px;}
.x19_c01265{left:609.120000px;}
.x20_c01265{left:610.845000px;}
.xc_c01265{left:613.440000px;}
.x89_c01265{left:616.890000px;}
.xc8_c01265{left:620.355000px;}
.x69_c01265{left:622.950000px;}
.x95_c01265{left:625.530000px;}
.x36_c01265{left:627.270000px;}
.x1a_c01265{left:628.995000px;}
.xaf_c01265{left:632.445000px;}
.x5c_c01265{left:634.170000px;}
.xd3_c01265{left:637.635000px;}
.x24_c01265{left:641.085000px;}
.x11_c01265{left:643.680000px;}
.xba_c01265{left:646.275000px;}
.xaa_c01265{left:648.000000px;}
.xa3_c01265{left:649.725000px;}
.x92_c01265{left:651.450000px;}
.xd7_c01265{left:657.510000px;}
.x21_c01265{left:659.235000px;}
.xd_c01265{left:662.685000px;}
.x4a_c01265{left:667.875000px;}
.x25_c01265{left:669.600000px;}
.xcd_c01265{left:674.790000px;}
.x2f_c01265{left:679.110000px;}
.x4b_c01265{left:682.560000px;}
.x8e_c01265{left:685.155000px;}
.x93_c01265{left:686.880000px;}
.xc5_c01265{left:688.605000px;}
.x12_c01265{left:690.330000px;}
.x4c_c01265{left:692.925000px;}
.xbb_c01265{left:695.520000px;}
.x82_c01265{left:697.245000px;}
.x40_c01265{left:699.840000px;}
.xb3_c01265{left:702.435000px;}
.x96_c01265{left:705.030000px;}
.x30_c01265{left:707.610000px;}
.xb0_c01265{left:709.350000px;}
.x6a_c01265{left:711.930000px;}
.x37_c01265{left:713.670000px;}
.x79_c01265{left:716.250000px;}
.x29_c01265{left:719.715000px;}
.x72_c01265{left:721.440000px;}
.xc9_c01265{left:724.890000px;}
.xbc_c01265{left:726.630000px;}
.xab_c01265{left:729.210000px;}
.x5d_c01265{left:731.805000px;}
.x63_c01265{left:735.270000px;}
.x55_c01265{left:736.995000px;}
.xca_c01265{left:739.590000px;}
.xa4_c01265{left:743.910000px;}
.x83_c01265{left:745.635000px;}
.xc6_c01265{left:747.360000px;}
.x56_c01265{left:749.085000px;}
.x7a_c01265{left:750.810000px;}
.xac_c01265{left:758.595000px;}
.x4d_c01265{left:763.770000px;}
.x8a_c01265{left:766.365000px;}
.xb4_c01265{left:769.830000px;}
.x6f_c01265{left:772.410000px;}
.x31_c01265{left:775.005000px;}
.x64_c01265{left:776.730000px;}
.x41_c01265{left:781.050000px;}
.x99_c01265{left:782.790000px;}
.x4e_c01265{left:787.110000px;}
.x13_c01265{left:788.835000px;}
.xd8_c01265{left:794.880000px;}
.x38_c01265{left:796.605000px;}
.x73_c01265{left:800.070000px;}
.x5e_c01265{left:804.390000px;}
.x57_c01265{left:806.970000px;}
.x84_c01265{left:818.205000px;}
.x42_c01265{left:825.120000px;}
.xd0_c01265{left:826.845000px;}
.xad_c01265{left:828.570000px;}
.x43_c01265{left:831.165000px;}
.x7b_c01265{left:833.760000px;}
.x32_c01265{left:858.810000px;}
.x74_c01265{left:860.550000px;}
.x39_c01265{left:869.190000px;}
.x58_c01265{left:870.915000px;}
.xda_c01265{left:911.520000px;}
.xdb_c01265{left:921.885000px;}
.xd9_c01265{left:934.845000px;}
@media print{
.v0_c01265{vertical-align:0.000000pt;}
.v1_c01265{vertical-align:3.093333pt;}
.ls2_c01265{letter-spacing:0.000000pt;}
.ls0_c01265{letter-spacing:79.893333pt;}
.ls1_c01265{letter-spacing:549.286357pt;}
.ws0_c01265{word-spacing:0.000000pt;}
.fs15_c01265{font-size:3.072000pt;}
.fs0_c01265{font-size:5.333333pt;}
.fs16_c01265{font-size:6.133333pt;}
.fs17_c01265{font-size:9.226667pt;}
.fs1_c01265{font-size:12.266667pt;}
.fsa_c01265{font-size:15.360000pt;}
.fs6_c01265{font-size:18.453333pt;}
.fs20_c01265{font-size:21.493333pt;}
.fs4_c01265{font-size:24.586667pt;}
.fs26_c01265{font-size:27.626667pt;}
.fs1e_c01265{font-size:30.720000pt;}
.fs1c_c01265{font-size:33.813333pt;}
.fs3_c01265{font-size:36.853333pt;}
.fs1d_c01265{font-size:39.946667pt;}
.fs24_c01265{font-size:42.986667pt;}
.fs2_c01265{font-size:46.080000pt;}
.fs22_c01265{font-size:49.173333pt;}
.fs18_c01265{font-size:52.213333pt;}
.fse_c01265{font-size:55.306667pt;}
.fs11_c01265{font-size:58.346667pt;}
.fsf_c01265{font-size:61.440000pt;}
.fs5_c01265{font-size:64.533333pt;}
.fs10_c01265{font-size:67.573333pt;}
.fs23_c01265{font-size:70.666667pt;}
.fsb_c01265{font-size:73.706667pt;}
.fs1a_c01265{font-size:76.800000pt;}
.fsc_c01265{font-size:79.893333pt;}
.fs12_c01265{font-size:82.933333pt;}
.fsd_c01265{font-size:86.026667pt;}
.fs1b_c01265{font-size:89.066667pt;}
.fs9_c01265{font-size:92.160000pt;}
.fs19_c01265{font-size:95.253333pt;}
.fs1f_c01265{font-size:98.293333pt;}
.fs25_c01265{font-size:101.386667pt;}
.fs14_c01265{font-size:104.426667pt;}
.fs13_c01265{font-size:107.520000pt;}
.fs21_c01265{font-size:110.613333pt;}
.fs7_c01265{font-size:132.106667pt;}
.fs8_c01265{font-size:138.240000pt;}
.y0_c01265{bottom:0.000000pt;}
.y12d_c01265{bottom:106.746667pt;}
.y12c_c01265{bottom:156.666667pt;}
.y128_c01265{bottom:170.493333pt;}
.y12b_c01265{bottom:172.800000pt;}
.y129_c01265{bottom:173.573333pt;}
.y121_c01265{bottom:176.640000pt;}
.y124_c01265{bottom:177.413333pt;}
.y12a_c01265{bottom:178.173333pt;}
.y127_c01265{bottom:178.946667pt;}
.y126_c01265{bottom:179.706667pt;}
.y123_c01265{bottom:180.480000pt;}
.y125_c01265{bottom:181.253333pt;}
.y122_c01265{bottom:182.013333pt;}
.y11f_c01265{bottom:191.226667pt;}
.y11d_c01265{bottom:192.773333pt;}
.y11b_c01265{bottom:195.066667pt;}
.y11e_c01265{bottom:195.840000pt;}
.y11a_c01265{bottom:196.613333pt;}
.y120_c01265{bottom:197.373333pt;}
.y11c_c01265{bottom:199.680000pt;}
.y117_c01265{bottom:210.426667pt;}
.y116_c01265{bottom:211.200000pt;}
.y118_c01265{bottom:213.506667pt;}
.y119_c01265{bottom:215.040000pt;}
.y112_c01265{bottom:216.573333pt;}
.y115_c01265{bottom:217.346667pt;}
.y113_c01265{bottom:218.106667pt;}
.y114_c01265{bottom:218.880000pt;}
.y111_c01265{bottom:225.786667pt;}
.y10f_c01265{bottom:228.093333pt;}
.y10b_c01265{bottom:229.626667pt;}
.y10d_c01265{bottom:230.400000pt;}
.y10c_c01265{bottom:231.173333pt;}
.y10e_c01265{bottom:231.933333pt;}
.y110_c01265{bottom:232.706667pt;}
.y10a_c01265{bottom:234.240000pt;}
.y109_c01265{bottom:245.760000pt;}
.y107_c01265{bottom:246.533333pt;}
.y105_c01265{bottom:247.293333pt;}
.y106_c01265{bottom:248.066667pt;}
.y104_c01265{bottom:248.826667pt;}
.y108_c01265{bottom:249.600000pt;}
.y103_c01265{bottom:254.213333pt;}
.y102_c01265{bottom:257.280000pt;}
.y100_c01265{bottom:264.960000pt;}
.y101_c01265{bottom:265.733333pt;}
.yff_c01265{bottom:266.493333pt;}
.yfd_c01265{bottom:268.026667pt;}
.yfe_c01265{bottom:268.800000pt;}
.yfc_c01265{bottom:269.573333pt;}
.yf8_c01265{bottom:281.853333pt;}
.yfa_c01265{bottom:282.626667pt;}
.yfb_c01265{bottom:284.160000pt;}
.yf6_c01265{bottom:284.933333pt;}
.yf9_c01265{bottom:285.693333pt;}
.yf7_c01265{bottom:286.466667pt;}
.yf5_c01265{bottom:287.226667pt;}
.yf2_c01265{bottom:288.000000pt;}
.yf3_c01265{bottom:288.773333pt;}
.yf4_c01265{bottom:289.533333pt;}
.yf0_c01265{bottom:340.226667pt;}
.yf1_c01265{bottom:340.986667pt;}
.yef_c01265{bottom:342.533333pt;}
.yed_c01265{bottom:346.373333pt;}
.yeb_c01265{bottom:347.906667pt;}
.ye9_c01265{bottom:349.440000pt;}
.yea_c01265{bottom:350.213333pt;}
.ye6_c01265{bottom:350.973333pt;}
.ye7_c01265{bottom:352.506667pt;}
.ye8_c01265{bottom:353.280000pt;}
.yec_c01265{bottom:355.586667pt;}
.yee_c01265{bottom:356.346667pt;}
.ye3_c01265{bottom:361.733333pt;}
.ye5_c01265{bottom:364.800000pt;}
.ydf_c01265{bottom:365.573333pt;}
.ye4_c01265{bottom:367.866667pt;}
.yde_c01265{bottom:368.640000pt;}
.ye2_c01265{bottom:369.413333pt;}
.ye0_c01265{bottom:372.480000pt;}
.ye1_c01265{bottom:374.013333pt;}
.yda_c01265{bottom:384.773333pt;}
.yd8_c01265{bottom:385.533333pt;}
.ydb_c01265{bottom:387.066667pt;}
.yd9_c01265{bottom:389.373333pt;}
.ydd_c01265{bottom:390.146667pt;}
.ydc_c01265{bottom:390.906667pt;}
.yd3_c01265{bottom:391.680000pt;}
.yd7_c01265{bottom:392.453333pt;}
.yd6_c01265{bottom:393.986667pt;}
.yd4_c01265{bottom:397.053333pt;}
.yd5_c01265{bottom:397.826667pt;}
.yd2_c01265{bottom:404.733333pt;}
.ycf_c01265{bottom:407.040000pt;}
.yce_c01265{bottom:407.813333pt;}
.ycd_c01265{bottom:409.346667pt;}
.yd1_c01265{bottom:410.106667pt;}
.yc9_c01265{bottom:410.880000pt;}
.yd0_c01265{bottom:412.413333pt;}
.ycc_c01265{bottom:415.493333pt;}
.yc8_c01265{bottom:417.786667pt;}
.ycb_c01265{bottom:420.093333pt;}
.yca_c01265{bottom:420.866667pt;}
.yc7_c01265{bottom:424.706667pt;}
.yc4_c01265{bottom:427.773333pt;}
.yc6_c01265{bottom:428.546667pt;}
.yc3_c01265{bottom:429.306667pt;}
.ybf_c01265{bottom:430.080000pt;}
.ybd_c01265{bottom:432.386667pt;}
.yc0_c01265{bottom:433.920000pt;}
.yc5_c01265{bottom:434.693333pt;}
.yc2_c01265{bottom:435.453333pt;}
.yc1_c01265{bottom:436.226667pt;}
.ybe_c01265{bottom:440.826667pt;}
.ybb_c01265{bottom:450.053333pt;}
.yba_c01265{bottom:452.346667pt;}
.ybc_c01265{bottom:456.186667pt;}
.yb5_c01265{bottom:456.960000pt;}
.yb9_c01265{bottom:457.733333pt;}
.yb7_c01265{bottom:458.493333pt;}
.yb8_c01265{bottom:459.266667pt;}
.yb4_c01265{bottom:463.106667pt;}
.yb6_c01265{bottom:463.866667pt;}
.yb2_c01265{bottom:473.093333pt;}
.yb1_c01265{bottom:473.853333pt;}
.yae_c01265{bottom:476.933333pt;}
.yac_c01265{bottom:477.693333pt;}
.yb3_c01265{bottom:479.226667pt;}
.yb0_c01265{bottom:480.000000pt;}
.yab_c01265{bottom:481.533333pt;}
.yaf_c01265{bottom:482.306667pt;}
.yad_c01265{bottom:484.613333pt;}
.ya9_c01265{bottom:494.586667pt;}
.yaa_c01265{bottom:495.360000pt;}
.ya7_c01265{bottom:496.133333pt;}
.ya6_c01265{bottom:497.666667pt;}
.ya5_c01265{bottom:499.200000pt;}
.ya4_c01265{bottom:499.973333pt;}
.ya8_c01265{bottom:501.506667pt;}
.ya3_c01265{bottom:502.266667pt;}
.ya2_c01265{bottom:516.866667pt;}
.ya0_c01265{bottom:519.173333pt;}
.y9f_c01265{bottom:520.706667pt;}
.y9d_c01265{bottom:521.466667pt;}
.y9c_c01265{bottom:523.773333pt;}
.ya1_c01265{bottom:524.546667pt;}
.y9e_c01265{bottom:527.613333pt;}
.y9b_c01265{bottom:529.920000pt;}
.y9a_c01265{bottom:538.373333pt;}
.y98_c01265{bottom:540.666667pt;}
.y97_c01265{bottom:542.213333pt;}
.y94_c01265{bottom:544.506667pt;}
.y99_c01265{bottom:546.813333pt;}
.y96_c01265{bottom:550.653333pt;}
.y93_c01265{bottom:551.426667pt;}
.y95_c01265{bottom:552.186667pt;}
.y12f_c01265{bottom:560.640000pt;}
.y92_c01265{bottom:561.413333pt;}
.y90_c01265{bottom:563.706667pt;}
.y8f_c01265{bottom:566.013333pt;}
.y8d_c01265{bottom:567.546667pt;}
.y91_c01265{bottom:569.093333pt;}
.y8e_c01265{bottom:572.160000pt;}
.y8c_c01265{bottom:576.000000pt;}
.y8b_c01265{bottom:583.680000pt;}
.y89_c01265{bottom:585.213333pt;}
.y87_c01265{bottom:586.746667pt;}
.y85_c01265{bottom:589.053333pt;}
.y8a_c01265{bottom:590.586667pt;}
.y88_c01265{bottom:592.893333pt;}
.y86_c01265{bottom:595.973333pt;}
.y83_c01265{bottom:605.946667pt;}
.y81_c01265{bottom:606.720000pt;}
.y84_c01265{bottom:607.493333pt;}
.y7f_c01265{bottom:609.026667pt;}
.y7d_c01265{bottom:610.560000pt;}
.y7e_c01265{bottom:611.333333pt;}
.y7c_c01265{bottom:613.626667pt;}
.y82_c01265{bottom:615.173333pt;}
.y80_c01265{bottom:615.933333pt;}
.y7b_c01265{bottom:627.453333pt;}
.y7a_c01265{bottom:628.986667pt;}
.y78_c01265{bottom:630.533333pt;}
.y76_c01265{bottom:632.826667pt;}
.y79_c01265{bottom:634.373333pt;}
.y77_c01265{bottom:639.746667pt;}
.y74_c01265{bottom:648.186667pt;}
.y75_c01265{bottom:648.960000pt;}
.y73_c01265{bottom:649.733333pt;}
.y71_c01265{bottom:652.026667pt;}
.y72_c01265{bottom:652.800000pt;}
.y70_c01265{bottom:653.573333pt;}
.y6f_c01265{bottom:655.106667pt;}
.y6c_c01265{bottom:672.000000pt;}
.y6b_c01265{bottom:673.533333pt;}
.y6d_c01265{bottom:675.066667pt;}
.y6e_c01265{bottom:676.613333pt;}
.y6a_c01265{bottom:678.146667pt;}
.y67_c01265{bottom:678.906667pt;}
.y68_c01265{bottom:682.746667pt;}
.y69_c01265{bottom:683.520000pt;}
.y66_c01265{bottom:693.506667pt;}
.y63_c01265{bottom:695.813333pt;}
.y64_c01265{bottom:696.573333pt;}
.y62_c01265{bottom:697.346667pt;}
.y60_c01265{bottom:698.880000pt;}
.y65_c01265{bottom:700.413333pt;}
.y5f_c01265{bottom:701.186667pt;}
.y61_c01265{bottom:703.493333pt;}
.y5d_c01265{bottom:716.546667pt;}
.y5c_c01265{bottom:718.080000pt;}
.y5b_c01265{bottom:719.613333pt;}
.y59_c01265{bottom:720.386667pt;}
.y5a_c01265{bottom:721.146667pt;}
.y5e_c01265{bottom:723.453333pt;}
.y12e_c01265{bottom:727.293333pt;}
.y57_c01265{bottom:738.813333pt;}
.y58_c01265{bottom:739.586667pt;}
.y53_c01265{bottom:740.346667pt;}
.y55_c01265{bottom:741.893333pt;}
.y51_c01265{bottom:742.653333pt;}
.y56_c01265{bottom:744.186667pt;}
.y54_c01265{bottom:744.960000pt;}
.y52_c01265{bottom:745.733333pt;}
.y50_c01265{bottom:754.173333pt;}
.y4e_c01265{bottom:754.946667pt;}
.y4d_c01265{bottom:756.480000pt;}
.y4b_c01265{bottom:758.786667pt;}
.y48_c01265{bottom:759.546667pt;}
.y49_c01265{bottom:760.320000pt;}
.y4f_c01265{bottom:761.093333pt;}
.y4c_c01265{bottom:761.853333pt;}
.y45_c01265{bottom:764.160000pt;}
.y46_c01265{bottom:767.226667pt;}
.y47_c01265{bottom:768.773333pt;}
.y4a_c01265{bottom:769.533333pt;}
.y44_c01265{bottom:779.520000pt;}
.y43_c01265{bottom:781.826667pt;}
.y40_c01265{bottom:784.133333pt;}
.y3e_c01265{bottom:784.893333pt;}
.y3f_c01265{bottom:785.666667pt;}
.y3b_c01265{bottom:788.733333pt;}
.y42_c01265{bottom:789.506667pt;}
.y41_c01265{bottom:790.266667pt;}
.y3c_c01265{bottom:792.573333pt;}
.y3d_c01265{bottom:794.106667pt;}
.y39_c01265{bottom:803.333333pt;}
.y37_c01265{bottom:804.866667pt;}
.y36_c01265{bottom:806.400000pt;}
.y35_c01265{bottom:807.173333pt;}
.y3a_c01265{bottom:811.773333pt;}
.y38_c01265{bottom:812.546667pt;}
.y33_c01265{bottom:813.306667pt;}
.y34_c01265{bottom:814.080000pt;}
.y30_c01265{bottom:814.853333pt;}
.y31_c01265{bottom:816.386667pt;}
.y32_c01265{bottom:823.293333pt;}
.y2f_c01265{bottom:826.373333pt;}
.y2e_c01265{bottom:827.133333pt;}
.y2d_c01265{bottom:828.666667pt;}
.y2c_c01265{bottom:829.440000pt;}
.y2b_c01265{bottom:837.120000pt;}
.y2a_c01265{bottom:837.893333pt;}
.y29_c01265{bottom:845.573333pt;}
.y27_c01265{bottom:849.413333pt;}
.y28_c01265{bottom:850.173333pt;}
.y25_c01265{bottom:850.946667pt;}
.y24_c01265{bottom:851.706667pt;}
.y26_c01265{bottom:856.320000pt;}
.y23_c01265{bottom:858.626667pt;}
.y22_c01265{bottom:859.386667pt;}
.y21_c01265{bottom:877.826667pt;}
.y1f_c01265{bottom:880.133333pt;}
.y20_c01265{bottom:880.893333pt;}
.y1e_c01265{bottom:882.426667pt;}
.y1c_c01265{bottom:886.266667pt;}
.y1d_c01265{bottom:887.813333pt;}
.y1b_c01265{bottom:888.573333pt;}
.y1a_c01265{bottom:889.346667pt;}
.y19_c01265{bottom:890.880000pt;}
.y18_c01265{bottom:891.653333pt;}
.y17_c01265{bottom:893.186667pt;}
.y15_c01265{bottom:893.946667pt;}
.y16_c01265{bottom:894.720000pt;}
.y8_c01265{bottom:913.920000pt;}
.y7_c01265{bottom:914.693333pt;}
.y14_c01265{bottom:937.733333pt;}
.y13_c01265{bottom:938.493333pt;}
.y12_c01265{bottom:939.266667pt;}
.y11_c01265{bottom:965.373333pt;}
.y10_c01265{bottom:966.146667pt;}
.yf_c01265{bottom:968.453333pt;}
.ye_c01265{bottom:969.213333pt;}
.y6_c01265{bottom:993.786667pt;}
.yd_c01265{bottom:999.173333pt;}
.yc_c01265{bottom:1001.466667pt;}
.yb_c01265{bottom:1003.013333pt;}
.ya_c01265{bottom:1042.173333pt;}
.y9_c01265{bottom:1045.253333pt;}
.y4_c01265{bottom:1054.466667pt;}
.y3_c01265{bottom:1057.533333pt;}
.y5_c01265{bottom:1058.306667pt;}
.y2_c01265{bottom:1238.013333pt;}
.y1_c01265{bottom:1241.853333pt;}
.h17_c01265{height:2.764500pt;}
.h2_c01265{height:4.799479pt;}
.h18_c01265{height:5.519401pt;}
.h19_c01265{height:8.303099pt;}
.h3_c01265{height:11.038802pt;}
.h28_c01265{height:11.396432pt;}
.hc_c01265{height:13.822500pt;}
.h8_c01265{height:16.606198pt;}
.h22_c01265{height:19.341901pt;}
.h6_c01265{height:22.125599pt;}
.h29_c01265{height:24.861302pt;}
.h20_c01265{height:27.645000pt;}
.h1e_c01265{height:30.428698pt;}
.h5_c01265{height:33.164401pt;}
.h1f_c01265{height:35.948099pt;}
.h26_c01265{height:38.683802pt;}
.h4_c01265{height:41.467500pt;}
.h24_c01265{height:44.251198pt;}
.h1a_c01265{height:46.986901pt;}
.h10_c01265{height:49.770599pt;}
.h13_c01265{height:52.506302pt;}
.h11_c01265{height:55.290000pt;}
.h7_c01265{height:58.073698pt;}
.h12_c01265{height:60.809401pt;}
.h25_c01265{height:63.593099pt;}
.hd_c01265{height:66.328802pt;}
.h1c_c01265{height:69.112500pt;}
.he_c01265{height:71.896198pt;}
.h14_c01265{height:74.631901pt;}
.hf_c01265{height:77.415599pt;}
.h1d_c01265{height:80.151302pt;}
.hb_c01265{height:82.935000pt;}
.h1b_c01265{height:85.718698pt;}
.h21_c01265{height:88.454401pt;}
.h27_c01265{height:91.238099pt;}
.h16_c01265{height:93.973802pt;}
.h15_c01265{height:96.757500pt;}
.h23_c01265{height:99.541198pt;}
.h9_c01265{height:118.883099pt;}
.ha_c01265{height:124.402500pt;}
.h0_c01265{height:1341.693333pt;}
.h1_c01265{height:1342.000000pt;}
.w0_c01265{width:959.226667pt;}
.w1_c01265{width:959.333333pt;}
.x0_c01265{left:0.000000pt;}
.x8_c01265{left:5.373333pt;}
.x3_c01265{left:6.906667pt;}
.x7_c01265{left:8.453333pt;}
.x4_c01265{left:19.973333pt;}
.x1_c01265{left:21.506667pt;}
.x2_c01265{left:27.653333pt;}
.x5_c01265{left:35.333333pt;}
.x6_c01265{left:40.706667pt;}
.x70_c01265{left:186.626667pt;}
.x65_c01265{left:194.306667pt;}
.x5f_c01265{left:197.373333pt;}
.x71_c01265{left:199.680000pt;}
.x4f_c01265{left:201.213333pt;}
.xa5_c01265{left:202.746667pt;}
.xb7_c01265{left:204.293333pt;}
.x44_c01265{left:206.586667pt;}
.x59_c01265{left:208.133333pt;}
.x3a_c01265{left:216.573333pt;}
.x45_c01265{left:218.880000pt;}
.x8b_c01265{left:226.560000pt;}
.xc0_c01265{left:231.173333pt;}
.xa6_c01265{left:232.706667pt;}
.xd1_c01265{left:234.240000pt;}
.x7c_c01265{left:238.080000pt;}
.x3b_c01265{left:244.226667pt;}
.x50_c01265{left:245.760000pt;}
.xe_c01265{left:252.666667pt;}
.xcb_c01265{left:254.213333pt;}
.x3c_c01265{left:255.746667pt;}
.xb5_c01265{left:259.586667pt;}
.x51_c01265{left:261.120000pt;}
.x8f_c01265{left:264.960000pt;}
.x46_c01265{left:267.266667pt;}
.xb1_c01265{left:268.800000pt;}
.x3d_c01265{left:271.866667pt;}
.x9_c01265{left:274.173333pt;}
.x75_c01265{left:276.480000pt;}
.x85_c01265{left:278.013333pt;}
.x7d_c01265{left:280.320000pt;}
.xcc_c01265{left:281.853333pt;}
.x60_c01265{left:284.160000pt;}
.x97_c01265{left:285.693333pt;}
.xf_c01265{left:288.000000pt;}
.x5a_c01265{left:291.840000pt;}
.x6b_c01265{left:295.680000pt;}
.xae_c01265{left:297.986667pt;}
.x76_c01265{left:300.293333pt;}
.x9c_c01265{left:303.360000pt;}
.x66_c01265{left:305.666667pt;}
.xd4_c01265{left:307.973333pt;}
.x7e_c01265{left:309.506667pt;}
.xc1_c01265{left:311.040000pt;}
.x9d_c01265{left:314.880000pt;}
.x86_c01265{left:316.413333pt;}
.x61_c01265{left:318.720000pt;}
.x26_c01265{left:321.786667pt;}
.x33_c01265{left:323.333333pt;}
.x90_c01265{left:324.866667pt;}
.xc2_c01265{left:327.173333pt;}
.x2a_c01265{left:331.773333pt;}
.xb8_c01265{left:333.306667pt;}
.xbd_c01265{left:336.386667pt;}
.x67_c01265{left:339.453333pt;}
.x1b_c01265{left:342.533333pt;}
.x6c_c01265{left:344.826667pt;}
.x98_c01265{left:347.133333pt;}
.x34_c01265{left:353.280000pt;}
.x2b_c01265{left:356.346667pt;}
.x3e_c01265{left:358.653333pt;}
.x7f_c01265{left:362.493333pt;}
.x8c_c01265{left:364.800000pt;}
.xb2_c01265{left:366.333333pt;}
.x27_c01265{left:368.640000pt;}
.x52_c01265{left:373.253333pt;}
.xb_c01265{left:374.786667pt;}
.x91_c01265{left:378.626667pt;}
.xce_c01265{left:380.160000pt;}
.x77_c01265{left:382.466667pt;}
.xb9_c01265{left:385.533333pt;}
.x6d_c01265{left:387.066667pt;}
.x14_c01265{left:388.613333pt;}
.x1c_c01265{left:390.146667pt;}
.x9e_c01265{left:393.986667pt;}
.xb6_c01265{left:395.520000pt;}
.x2c_c01265{left:397.053333pt;}
.x35_c01265{left:399.360000pt;}
.x47_c01265{left:400.893333pt;}
.x10_c01265{left:404.733333pt;}
.x53_c01265{left:407.040000pt;}
.x8d_c01265{left:410.880000pt;}
.x15_c01265{left:413.186667pt;}
.x87_c01265{left:414.720000pt;}
.x9a_c01265{left:417.026667pt;}
.xd2_c01265{left:419.333333pt;}
.xc3_c01265{left:421.626667pt;}
.xcf_c01265{left:424.706667pt;}
.x1d_c01265{left:426.240000pt;}
.x94_c01265{left:430.853333pt;}
.x80_c01265{left:438.533333pt;}
.xd5_c01265{left:441.600000pt;}
.x2d_c01265{left:445.440000pt;}
.x54_c01265{left:446.973333pt;}
.x78_c01265{left:449.280000pt;}
.xa7_c01265{left:453.120000pt;}
.x9f_c01265{left:454.653333pt;}
.x3f_c01265{left:456.960000pt;}
.x68_c01265{left:459.266667pt;}
.x9b_c01265{left:460.800000pt;}
.xa_c01265{left:462.333333pt;}
.x22_c01265{left:464.640000pt;}
.x1e_c01265{left:466.173333pt;}
.xd6_c01265{left:470.013333pt;}
.x16_c01265{left:473.093333pt;}
.x62_c01265{left:476.160000pt;}
.x88_c01265{left:478.466667pt;}
.x6e_c01265{left:480.000000pt;}
.x2e_c01265{left:481.533333pt;}
.xbe_c01265{left:484.613333pt;}
.x17_c01265{left:489.213333pt;}
.xc4_c01265{left:491.520000pt;}
.x48_c01265{left:493.826667pt;}
.xa8_c01265{left:496.893333pt;}
.xbf_c01265{left:498.426667pt;}
.xa0_c01265{left:499.973333pt;}
.x1f_c01265{left:503.040000pt;}
.xc7_c01265{left:504.573333pt;}
.xa1_c01265{left:506.880000pt;}
.x23_c01265{left:508.413333pt;}
.x28_c01265{left:511.493333pt;}
.x18_c01265{left:513.786667pt;}
.x5b_c01265{left:525.306667pt;}
.x49_c01265{left:529.146667pt;}
.x81_c01265{left:530.693333pt;}
.xa2_c01265{left:533.760000pt;}
.xa9_c01265{left:539.906667pt;}
.x19_c01265{left:541.440000pt;}
.x20_c01265{left:542.973333pt;}
.xc_c01265{left:545.280000pt;}
.x89_c01265{left:548.346667pt;}
.xc8_c01265{left:551.426667pt;}
.x69_c01265{left:553.733333pt;}
.x95_c01265{left:556.026667pt;}
.x36_c01265{left:557.573333pt;}
.x1a_c01265{left:559.106667pt;}
.xaf_c01265{left:562.173333pt;}
.x5c_c01265{left:563.706667pt;}
.xd3_c01265{left:566.786667pt;}
.x24_c01265{left:569.853333pt;}
.x11_c01265{left:572.160000pt;}
.xba_c01265{left:574.466667pt;}
.xaa_c01265{left:576.000000pt;}
.xa3_c01265{left:577.533333pt;}
.x92_c01265{left:579.066667pt;}
.xd7_c01265{left:584.453333pt;}
.x21_c01265{left:585.986667pt;}
.xd_c01265{left:589.053333pt;}
.x4a_c01265{left:593.666667pt;}
.x25_c01265{left:595.200000pt;}
.xcd_c01265{left:599.813333pt;}
.x2f_c01265{left:603.653333pt;}
.x4b_c01265{left:606.720000pt;}
.x8e_c01265{left:609.026667pt;}
.x93_c01265{left:610.560000pt;}
.xc5_c01265{left:612.093333pt;}
.x12_c01265{left:613.626667pt;}
.x4c_c01265{left:615.933333pt;}
.xbb_c01265{left:618.240000pt;}
.x82_c01265{left:619.773333pt;}
.x40_c01265{left:622.080000pt;}
.xb3_c01265{left:624.386667pt;}
.x96_c01265{left:626.693333pt;}
.x30_c01265{left:628.986667pt;}
.xb0_c01265{left:630.533333pt;}
.x6a_c01265{left:632.826667pt;}
.x37_c01265{left:634.373333pt;}
.x79_c01265{left:636.666667pt;}
.x29_c01265{left:639.746667pt;}
.x72_c01265{left:641.280000pt;}
.xc9_c01265{left:644.346667pt;}
.xbc_c01265{left:645.893333pt;}
.xab_c01265{left:648.186667pt;}
.x5d_c01265{left:650.493333pt;}
.x63_c01265{left:653.573333pt;}
.x55_c01265{left:655.106667pt;}
.xca_c01265{left:657.413333pt;}
.xa4_c01265{left:661.253333pt;}
.x83_c01265{left:662.786667pt;}
.xc6_c01265{left:664.320000pt;}
.x56_c01265{left:665.853333pt;}
.x7a_c01265{left:667.386667pt;}
.xac_c01265{left:674.306667pt;}
.x4d_c01265{left:678.906667pt;}
.x8a_c01265{left:681.213333pt;}
.xb4_c01265{left:684.293333pt;}
.x6f_c01265{left:686.586667pt;}
.x31_c01265{left:688.893333pt;}
.x64_c01265{left:690.426667pt;}
.x41_c01265{left:694.266667pt;}
.x99_c01265{left:695.813333pt;}
.x4e_c01265{left:699.653333pt;}
.x13_c01265{left:701.186667pt;}
.xd8_c01265{left:706.560000pt;}
.x38_c01265{left:708.093333pt;}
.x73_c01265{left:711.173333pt;}
.x5e_c01265{left:715.013333pt;}
.x57_c01265{left:717.306667pt;}
.x84_c01265{left:727.293333pt;}
.x42_c01265{left:733.440000pt;}
.xd0_c01265{left:734.973333pt;}
.xad_c01265{left:736.506667pt;}
.x43_c01265{left:738.813333pt;}
.x7b_c01265{left:741.120000pt;}
.x32_c01265{left:763.386667pt;}
.x74_c01265{left:764.933333pt;}
.x39_c01265{left:772.613333pt;}
.x58_c01265{left:774.146667pt;}
.xda_c01265{left:810.240000pt;}
.xdb_c01265{left:819.453333pt;}
.xd9_c01265{left:830.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3cee7a5da4ee51201ee1574b.woff2')format("woff");}.ff1_c01266{font-family:ff1_c01266;line-height:1.109863;font-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_c01266{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01266{transform:matrix(0.020825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020825,0.000000,0.000000,0.250000,0,0);}
.m13f_c01266{transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);}
.m124_c01266{transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01266{transform:matrix(0.065800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065800,0.000000,0.000000,0.250000,0,0);}
.m5_c01266{transform:matrix(0.082350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082350,0.000000,0.000000,0.250000,0,0);}
.m25_c01266{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m97_c01266{transform:matrix(0.087975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087975,0.000000,0.000000,0.250000,0,0);}
.m6_c01266{transform:matrix(0.096175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096175,0.000000,0.000000,0.250000,0,0);}
.mf_c01266{transform:matrix(0.108725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108725,0.000000,0.000000,0.250000,0,0);}
.me_c01266{transform:matrix(0.109675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109675,0.000000,0.000000,0.250000,0,0);}
.m178_c01266{transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);}
.m147_c01266{transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);}
.me8_c01266{transform:matrix(0.114975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114975,0.000000,0.000000,0.250000,0,0);}
.m2c_c01266{transform:matrix(0.115050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115050,0.000000,0.000000,0.250000,0,0);}
.m10_c01266{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);}
.m26_c01266{transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118325,0.000000,0.000000,0.250000,0,0);}
.m99_c01266{transform:matrix(0.120450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120450,0.000000,0.000000,0.250000,0,0);}
.m35_c01266{transform:matrix(0.120750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120750,0.000000,0.000000,0.250000,0,0);}
.m32_c01266{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);}
.m20_c01266{transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);}
.mc3_c01266{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m169_c01266{transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);}
.m9c_c01266{transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);}
.m36_c01266{transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);}
.m33_c01266{transform:matrix(0.126700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126700,0.000000,0.000000,0.250000,0,0);}
.m9_c01266{transform:matrix(0.127950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127950,0.000000,0.000000,0.250000,0,0);}
.m76_c01266{transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);}
.m142_c01266{transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01266{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);}
.m1c_c01266{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);}
.m60_c01266{transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);}
.m75_c01266{transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01266{transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);}
.m5c_c01266{transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);}
.m149_c01266{transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01266{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);}
.m193_c01266{transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);}
.me1_c01266{transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);}
.me7_c01266{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.mac_c01266{transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);}
.m146_c01266{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m102_c01266{transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);}
.mea_c01266{transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);}
.m14a_c01266{transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);}
.m110_c01266{transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);}
.m165_c01266{transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);}
.mee_c01266{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m8a_c01266{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);}
.m17a_c01266{transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);}
.m3_c01266{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m145_c01266{transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);}
.m14c_c01266{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);}
.m17c_c01266{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);}
.mfc_c01266{transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01266{transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);}
.m23_c01266{transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);}
.m96_c01266{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m12f_c01266{transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01266{transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);}
.m5d_c01266{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.mfb_c01266{transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);}
.mb3_c01266{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.mdd_c01266{transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);}
.m18f_c01266{transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);}
.m17b_c01266{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.mda_c01266{transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);}
.m117_c01266{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);}
.m7_c01266{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m190_c01266{transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);}
.m91_c01266{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.m100_c01266{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);}
.mfd_c01266{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m95_c01266{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.maf_c01266{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);}
.m1a3_c01266{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m164_c01266{transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);}
.mb_c01266{transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);}
.m13b_c01266{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);}
.m1b4_c01266{transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01266{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);}
.m177_c01266{transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);}
.m176_c01266{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);}
.m171_c01266{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01266{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);}
.m52_c01266{transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);}
.m14b_c01266{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m15e_c01266{transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01266{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.m38_c01266{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.mc8_c01266{transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);}
.m85_c01266{transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);}
.m141_c01266{transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);}
.m170_c01266{transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);}
.m22_c01266{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m19b_c01266{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);}
.m27_c01266{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);}
.m132_c01266{transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);}
.m17_c01266{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.ma6_c01266{transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);}
.m150_c01266{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.me5_c01266{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);}
.m3d_c01266{transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);}
.ma4_c01266{transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);}
.m14e_c01266{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);}
.m5b_c01266{transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01266{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);}
.m17d_c01266{transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);}
.mc5_c01266{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m175_c01266{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);}
.m44_c01266{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m39_c01266{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01266{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);}
.mef_c01266{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.md2_c01266{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);}
.mab_c01266{transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);}
.me0_c01266{transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01266{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.m1f_c01266{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m30_c01266{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);}
.m24_c01266{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.m9d_c01266{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m12e_c01266{transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);}
.m9f_c01266{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.mcc_c01266{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m195_c01266{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);}
.mc_c01266{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);}
.m2b_c01266{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m179_c01266{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01266{transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);}
.m11a_c01266{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m144_c01266{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.me2_c01266{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m143_c01266{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);}
.m1bc_c01266{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.m188_c01266{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);}
.md8_c01266{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);}
.m4f_c01266{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mb8_c01266{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);}
.m9e_c01266{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m8_c01266{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m7e_c01266{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);}
.m1ac_c01266{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);}
.mfa_c01266{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);}
.mfe_c01266{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.mf4_c01266{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m17e_c01266{transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);}
.m137_c01266{transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);}
.mae_c01266{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);}
.m160_c01266{transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);}
.m120_c01266{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);}
.md4_c01266{transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);}
.m104_c01266{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m196_c01266{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01266{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01266{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m40_c01266{transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);}
.m16f_c01266{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);}
.me9_c01266{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m118_c01266{transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);}
.m8d_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);}
.m181_c01266{transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);}
.mf0_c01266{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);}
.m81_c01266{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m12d_c01266{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.mcf_c01266{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);}
.mbf_c01266{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);}
.m12a_c01266{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m136_c01266{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.mad_c01266{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.m15_c01266{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);}
.m6c_c01266{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m185_c01266{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);}
.m19_c01266{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);}
.m2e_c01266{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);}
.m10c_c01266{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);}
.m3c_c01266{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);}
.m19c_c01266{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);}
.med_c01266{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.m189_c01266{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m123_c01266{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);}
.me6_c01266{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m182_c01266{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);}
.m159_c01266{transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);}
.mc4_c01266{transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);}
.mf3_c01266{transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);}
.m187_c01266{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);}
.m106_c01266{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m84_c01266{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m28_c01266{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);}
.m54_c01266{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m19e_c01266{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.m162_c01266{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.m56_c01266{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);}
.m1af_c01266{transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);}
.m19f_c01266{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m198_c01266{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);}
.md0_c01266{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.ma1_c01266{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);}
.m59_c01266{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);}
.m109_c01266{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);}
.mb4_c01266{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.md9_c01266{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m126_c01266{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);}
.m155_c01266{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m180_c01266{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.m191_c01266{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m114_c01266{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);}
.m184_c01266{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);}
.m138_c01266{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m183_c01266{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.md1_c01266{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m13a_c01266{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m10d_c01266{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);}
.me4_c01266{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);}
.m152_c01266{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);}
.m135_c01266{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m50_c01266{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m3b_c01266{transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);}
.m16e_c01266{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);}
.m14d_c01266{transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);}
.mf6_c01266{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.m125_c01266{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);}
.m9b_c01266{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.md7_c01266{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m151_c01266{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);}
.m87_c01266{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);}
.m80_c01266{transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);}
.m154_c01266{transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);}
.mc7_c01266{transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);}
.m14f_c01266{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.m15d_c01266{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);}
.mcd_c01266{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);}
.md5_c01266{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.ma0_c01266{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m4_c01266{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m19d_c01266{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);}
.mba_c01266{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);}
.m74_c01266{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.m119_c01266{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m172_c01266{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.mf7_c01266{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.m140_c01266{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);}
.m10b_c01266{transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);}
.m8b_c01266{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);}
.mce_c01266{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m17f_c01266{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);}
.m70_c01266{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.m7a_c01266{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.m13e_c01266{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);}
.m77_c01266{transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);}
.m107_c01266{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);}
.m1a0_c01266{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);}
.m86_c01266{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);}
.m101_c01266{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m1a_c01266{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);}
.m13d_c01266{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.ma5_c01266{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);}
.m194_c01266{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.m15c_c01266{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.m11b_c01266{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);}
.m5a_c01266{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.m11f_c01266{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01266{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m18_c01266{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);}
.m1a5_c01266{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.m10a_c01266{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);}
.m98_c01266{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);}
.m1a2_c01266{transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);}
.m105_c01266{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);}
.m1b6_c01266{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m10e_c01266{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.mc6_c01266{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);}
.me3_c01266{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m18e_c01266{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);}
.m12b_c01266{transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);}
.m4e_c01266{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m186_c01266{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);}
.ma9_c01266{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);}
.m127_c01266{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.m12c_c01266{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);}
.m18a_c01266{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);}
.m134_c01266{transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);}
.mf2_c01266{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);}
.m103_c01266{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.mbd_c01266{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);}
.m173_c01266{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);}
.m14_c01266{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);}
.m174_c01266{transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);}
.m13c_c01266{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);}
.m8c_c01266{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);}
.mcb_c01266{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.m1b_c01266{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m121_c01266{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);}
.m128_c01266{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);}
.m18c_c01266{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m108_c01266{transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);}
.m139_c01266{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);}
.mde_c01266{transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);}
.m130_c01266{transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);}
.mc0_c01266{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.mdc_c01266{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.mb0_c01266{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);}
.m0_c01266{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);}
.m12_c01266{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);}
.m18b_c01266{transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);}
.m157_c01266{transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01266{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);}
.m83_c01266{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m53_c01266{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);}
.m19a_c01266{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.m153_c01266{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);}
.m1b2_c01266{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m61_c01266{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);}
.maa_c01266{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);}
.m122_c01266{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);}
.m156_c01266{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m71_c01266{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);}
.m2_c01266{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.m4d_c01266{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m11d_c01266{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);}
.mb5_c01266{transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);}
.mff_c01266{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);}
.m167_c01266{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);}
.md3_c01266{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);}
.mca_c01266{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);}
.m11e_c01266{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);}
.mf1_c01266{transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);}
.m158_c01266{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);}
.mbe_c01266{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);}
.mf9_c01266{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);}
.ma3_c01266{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);}
.m49_c01266{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);}
.m15f_c01266{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m197_c01266{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);}
.m192_c01266{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);}
.mdb_c01266{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.md6_c01266{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m82_c01266{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m65_c01266{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);}
.m16_c01266{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf5_c01266{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_c01266{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);}
.m7b_c01266{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);}
.m34_c01266{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);}
.m88_c01266{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m94_c01266{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01266{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m31_c01266{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);}
.mbb_c01266{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01266{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);}
.mbc_c01266{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);}
.m47_c01266{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m89_c01266{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);}
.m41_c01266{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mec_c01266{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m43_c01266{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);}
.mb7_c01266{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m57_c01266{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);}
.m92_c01266{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);}
.mc9_c01266{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m64_c01266{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb9_c01266{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);}
.m79_c01266{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01266{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m16a_c01266{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);}
.m90_c01266{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11_c01266{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01266{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01266{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb1_c01266{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m111_c01266{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma8_c01266{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m51_c01266{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.ma7_c01266{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);}
.m58_c01266{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01266{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m42_c01266{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01266{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma2_c01266{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.meb_c01266{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01266{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);}
.m2f_c01266{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m10f_c01266{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c01266{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md_c01266{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);}
.m15b_c01266{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mb6_c01266{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m66_c01266{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);}
.m45_c01266{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16d_c01266{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m113_c01266{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);}
.m133_c01266{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m18d_c01266{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m69_c01266{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m131_c01266{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01266{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);}
.m3a_c01266{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);}
.m21_c01266{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mf8_c01266{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);}
.m129_c01266{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01266{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m116_c01266{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);}
.m168_c01266{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01266{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m37_c01266{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01266{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01266{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01266{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m55_c01266{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m112_c01266{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);}
.m7d_c01266{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01266{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m13_c01266{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m9a_c01266{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);}
.m115_c01266{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m78_c01266{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m163_c01266{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m199_c01266{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01266{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);}
.m1b7_c01266{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m16c_c01266{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01266{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m67_c01266{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.ma_c01266{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m161_c01266{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01266{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01266{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.m93_c01266{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01266{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m72_c01266{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.mc2_c01266{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m15a_c01266{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01266{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m16b_c01266{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m29_c01266{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m63_c01266{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01266{transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.740000,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01266{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m46_c01266{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m48_c01266{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m68_c01266{transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01266{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mdf_c01266{transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01266{transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);}
.m148_c01266{transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);}
.m62_c01266{transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);}
.m166_c01266{transform:matrix(1.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.405000,0.000000,0.000000,0.250000,0,0);}
.m73_c01266{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.mc1_c01266{transform:matrix(4.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.477500,0.000000,0.000000,0.250000,0,0);}
.m1be_c01266{transform:matrix(6.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.792500,0.000000,0.000000,0.250000,0,0);}
.v2_c01266{vertical-align:-3.480000px;}
.v0_c01266{vertical-align:0.000000px;}
.v1_c01266{vertical-align:10.380000px;}
.v4_c01266{vertical-align:13.800000px;}
.v3_c01266{vertical-align:24.180000px;}
.ls1_c01266{letter-spacing:0.000000px;}
.ls0_c01266{letter-spacing:15.124740px;}
.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;}
}
.ws2_c01266{word-spacing:-27.456960px;}
.ws1_c01266{word-spacing:-19.136580px;}
.ws0_c01266{word-spacing:-8.873520px;}
.ws5_c01266{word-spacing:0.000000px;}
.ws3_c01266{word-spacing:13.125000px;}
.ws4_c01266{word-spacing:93.160033px;}
.fc0_c01266{color:transparent;}
.fs6_c01266{font-size:3.456000px;}
.fs3_c01266{font-size:6.000000px;}
.fsa_c01266{font-size:6.900000px;}
.fs1c_c01266{font-size:10.380000px;}
.fs18_c01266{font-size:13.800000px;}
.fs1d_c01266{font-size:17.280000px;}
.fs1b_c01266{font-size:20.760000px;}
.fsc_c01266{font-size:24.180000px;}
.fs1e_c01266{font-size:27.660000px;}
.fs19_c01266{font-size:31.080000px;}
.fs1a_c01266{font-size:34.560000px;}
.fs12_c01266{font-size:38.040000px;}
.fs16_c01266{font-size:41.460000px;}
.fs5_c01266{font-size:44.940000px;}
.fs1f_c01266{font-size:48.360000px;}
.fs20_c01266{font-size:51.840000px;}
.fs13_c01266{font-size:55.320000px;}
.fs10_c01266{font-size:58.740000px;}
.fsd_c01266{font-size:62.220000px;}
.fs11_c01266{font-size:65.640000px;}
.fs4_c01266{font-size:69.120000px;}
.fs0_c01266{font-size:72.600000px;}
.fs1_c01266{font-size:76.020000px;}
.fs14_c01266{font-size:79.500000px;}
.fsb_c01266{font-size:82.920000px;}
.fs8_c01266{font-size:86.400000px;}
.fs15_c01266{font-size:89.880000px;}
.fse_c01266{font-size:93.300000px;}
.fs17_c01266{font-size:96.780000px;}
.fs2_c01266{font-size:100.200000px;}
.fs7_c01266{font-size:103.680000px;}
.fs9_c01266{font-size:114.060000px;}
.fsf_c01266{font-size:124.440000px;}
.y0_c01266{bottom:0.000000px;}
.y1be_c01266{bottom:188.355000px;}
.y1bf_c01266{bottom:190.080000px;}
.y1bb_c01266{bottom:190.950000px;}
.y1b7_c01266{bottom:191.805000px;}
.y1bd_c01266{bottom:193.530000px;}
.y1bc_c01266{bottom:194.400000px;}
.y1b8_c01266{bottom:196.125000px;}
.y1b9_c01266{bottom:196.995000px;}
.y1ba_c01266{bottom:198.720000px;}
.y1b6_c01266{bottom:212.550000px;}
.y1b5_c01266{bottom:214.275000px;}
.y1b0_c01266{bottom:215.130000px;}
.y1b3_c01266{bottom:216.870000px;}
.y1b2_c01266{bottom:221.190000px;}
.y1b1_c01266{bottom:222.045000px;}
.y1b4_c01266{bottom:232.410000px;}
.y1ab_c01266{bottom:233.280000px;}
.y1ad_c01266{bottom:234.150000px;}
.y1a9_c01266{bottom:235.005000px;}
.y1aa_c01266{bottom:235.875000px;}
.y1a8_c01266{bottom:236.730000px;}
.y1ac_c01266{bottom:239.325000px;}
.y1ae_c01266{bottom:240.195000px;}
.y1af_c01266{bottom:241.920000px;}
.y1a6_c01266{bottom:254.010000px;}
.y1a7_c01266{bottom:254.880000px;}
.y1a1_c01266{bottom:255.750000px;}
.y1a5_c01266{bottom:258.330000px;}
.y1a2_c01266{bottom:260.925000px;}
.y1a3_c01266{bottom:262.650000px;}
.y1a4_c01266{bottom:265.245000px;}
.y1a0_c01266{bottom:274.755000px;}
.y19c_c01266{bottom:275.610000px;}
.y19a_c01266{bottom:276.480000px;}
.y19b_c01266{bottom:277.350000px;}
.y19e_c01266{bottom:279.075000px;}
.y19f_c01266{bottom:281.670000px;}
.y19d_c01266{bottom:282.525000px;}
.y199_c01266{bottom:295.485000px;}
.y197_c01266{bottom:297.210000px;}
.y198_c01266{bottom:298.950000px;}
.y196_c01266{bottom:301.530000px;}
.y195_c01266{bottom:316.230000px;}
.y193_c01266{bottom:317.085000px;}
.y192_c01266{bottom:317.955000px;}
.y18f_c01266{bottom:318.810000px;}
.y194_c01266{bottom:321.405000px;}
.y190_c01266{bottom:322.275000px;}
.y18e_c01266{bottom:324.000000px;}
.y191_c01266{bottom:324.870000px;}
.y18c_c01266{bottom:335.235000px;}
.y189_c01266{bottom:336.090000px;}
.y18b_c01266{bottom:336.960000px;}
.y18d_c01266{bottom:337.830000px;}
.y187_c01266{bottom:338.685000px;}
.y186_c01266{bottom:342.150000px;}
.y185_c01266{bottom:343.005000px;}
.y18a_c01266{bottom:343.875000px;}
.y188_c01266{bottom:344.730000px;}
.y183_c01266{bottom:357.690000px;}
.y182_c01266{bottom:358.560000px;}
.y180_c01266{bottom:359.430000px;}
.y181_c01266{bottom:360.285000px;}
.y184_c01266{bottom:363.750000px;}
.y17f_c01266{bottom:376.710000px;}
.y17e_c01266{bottom:377.565000px;}
.y17b_c01266{bottom:380.160000px;}
.y17a_c01266{bottom:381.885000px;}
.y17c_c01266{bottom:384.480000px;}
.y17d_c01266{bottom:386.205000px;}
.y177_c01266{bottom:396.570000px;}
.y174_c01266{bottom:397.440000px;}
.y172_c01266{bottom:398.310000px;}
.y176_c01266{bottom:399.165000px;}
.y171_c01266{bottom:400.035000px;}
.y170_c01266{bottom:402.630000px;}
.y179_c01266{bottom:403.485000px;}
.y178_c01266{bottom:404.355000px;}
.y173_c01266{bottom:406.080000px;}
.y175_c01266{bottom:410.400000px;}
.y16c_c01266{bottom:420.765000px;}
.y16d_c01266{bottom:421.635000px;}
.y16b_c01266{bottom:422.490000px;}
.y16f_c01266{bottom:423.360000px;}
.y16e_c01266{bottom:424.230000px;}
.y166_c01266{bottom:425.955000px;}
.y164_c01266{bottom:426.810000px;}
.y168_c01266{bottom:431.130000px;}
.y165_c01266{bottom:433.725000px;}
.y167_c01266{bottom:434.595000px;}
.y16a_c01266{bottom:436.320000px;}
.y169_c01266{bottom:438.045000px;}
.y163_c01266{bottom:438.915000px;}
.y162_c01266{bottom:439.770000px;}
.y160_c01266{bottom:440.640000px;}
.y161_c01266{bottom:442.365000px;}
.y15f_c01266{bottom:443.235000px;}
.y15d_c01266{bottom:444.090000px;}
.y15c_c01266{bottom:444.960000px;}
.y15b_c01266{bottom:445.830000px;}
.y15e_c01266{bottom:446.685000px;}
.y158_c01266{bottom:460.515000px;}
.y154_c01266{bottom:461.370000px;}
.y159_c01266{bottom:462.240000px;}
.y157_c01266{bottom:463.110000px;}
.y15a_c01266{bottom:465.690000px;}
.y155_c01266{bottom:466.560000px;}
.y156_c01266{bottom:467.430000px;}
.y153_c01266{bottom:468.285000px;}
.y152_c01266{bottom:479.520000px;}
.y151_c01266{bottom:481.245000px;}
.y150_c01266{bottom:482.115000px;}
.y14b_c01266{bottom:482.970000px;}
.y14f_c01266{bottom:483.840000px;}
.y14e_c01266{bottom:484.710000px;}
.y14c_c01266{bottom:486.435000px;}
.y14d_c01266{bottom:487.290000px;}
.y14a_c01266{bottom:498.525000px;}
.y149_c01266{bottom:500.250000px;}
.y148_c01266{bottom:501.120000px;}
.y146_c01266{bottom:501.990000px;}
.y144_c01266{bottom:502.845000px;}
.y147_c01266{bottom:506.310000px;}
.y143_c01266{bottom:507.165000px;}
.y145_c01266{bottom:508.035000px;}
.y140_c01266{bottom:515.805000px;}
.y142_c01266{bottom:516.675000px;}
.y13f_c01266{bottom:517.530000px;}
.y141_c01266{bottom:518.400000px;}
.y13e_c01266{bottom:519.270000px;}
.y13c_c01266{bottom:520.995000px;}
.y13b_c01266{bottom:521.850000px;}
.y13d_c01266{bottom:527.040000px;}
.y13a_c01266{bottom:540.000000px;}
.y139_c01266{bottom:541.725000px;}
.y135_c01266{bottom:542.595000px;}
.y132_c01266{bottom:544.320000px;}
.y136_c01266{bottom:545.190000px;}
.y133_c01266{bottom:546.045000px;}
.y134_c01266{bottom:548.640000px;}
.y138_c01266{bottom:550.365000px;}
.y137_c01266{bottom:551.235000px;}
.y130_c01266{bottom:561.600000px;}
.y12d_c01266{bottom:562.470000px;}
.y12e_c01266{bottom:563.325000px;}
.y12f_c01266{bottom:564.195000px;}
.y12c_c01266{bottom:565.050000px;}
.y12a_c01266{bottom:567.645000px;}
.y12b_c01266{bottom:569.370000px;}
.y131_c01266{bottom:570.240000px;}
.y126_c01266{bottom:582.330000px;}
.y125_c01266{bottom:583.200000px;}
.y124_c01266{bottom:584.925000px;}
.y128_c01266{bottom:586.650000px;}
.y127_c01266{bottom:587.520000px;}
.y129_c01266{bottom:588.390000px;}
.y123_c01266{bottom:589.245000px;}
.y120_c01266{bottom:603.930000px;}
.y122_c01266{bottom:606.525000px;}
.y121_c01266{bottom:608.250000px;}
.y11f_c01266{bottom:609.120000px;}
.y11d_c01266{bottom:622.080000px;}
.y119_c01266{bottom:623.805000px;}
.y11a_c01266{bottom:624.675000px;}
.y11e_c01266{bottom:627.270000px;}
.y11c_c01266{bottom:628.125000px;}
.y11b_c01266{bottom:629.850000px;}
.y118_c01266{bottom:631.590000px;}
.y117_c01266{bottom:642.810000px;}
.y114_c01266{bottom:643.680000px;}
.y111_c01266{bottom:644.550000px;}
.y116_c01266{bottom:645.405000px;}
.y113_c01266{bottom:647.130000px;}
.y115_c01266{bottom:648.000000px;}
.y112_c01266{bottom:648.870000px;}
.y110_c01266{bottom:651.450000px;}
.y10d_c01266{bottom:661.830000px;}
.y10c_c01266{bottom:662.685000px;}
.y109_c01266{bottom:663.555000px;}
.y10f_c01266{bottom:664.410000px;}
.y10a_c01266{bottom:665.280000px;}
.y10b_c01266{bottom:666.150000px;}
.y10e_c01266{bottom:667.005000px;}
.y106_c01266{bottom:680.835000px;}
.y102_c01266{bottom:681.690000px;}
.y103_c01266{bottom:682.560000px;}
.y104_c01266{bottom:684.285000px;}
.y107_c01266{bottom:686.010000px;}
.y108_c01266{bottom:686.880000px;}
.y105_c01266{bottom:687.750000px;}
.y100_c01266{bottom:701.565000px;}
.yff_c01266{bottom:702.435000px;}
.y101_c01266{bottom:705.885000px;}
.yfd_c01266{bottom:707.610000px;}
.yfb_c01266{bottom:708.480000px;}
.yfc_c01266{bottom:709.350000px;}
.yfa_c01266{bottom:710.205000px;}
.yfe_c01266{bottom:715.395000px;}
.yf6_c01266{bottom:721.440000px;}
.yf4_c01266{bottom:722.310000px;}
.yf5_c01266{bottom:723.165000px;}
.yf7_c01266{bottom:724.035000px;}
.yf9_c01266{bottom:726.630000px;}
.yf8_c01266{bottom:727.485000px;}
.yf3_c01266{bottom:741.315000px;}
.yf1_c01266{bottom:742.170000px;}
.yf2_c01266{bottom:743.040000px;}
.yee_c01266{bottom:743.910000px;}
.yec_c01266{bottom:744.765000px;}
.yef_c01266{bottom:745.635000px;}
.yed_c01266{bottom:746.490000px;}
.yeb_c01266{bottom:747.360000px;}
.yf0_c01266{bottom:749.955000px;}
.ye9_c01266{bottom:761.190000px;}
.ye5_c01266{bottom:762.045000px;}
.ye7_c01266{bottom:762.915000px;}
.ye3_c01266{bottom:767.235000px;}
.ye8_c01266{bottom:768.090000px;}
.ye4_c01266{bottom:768.960000px;}
.ye6_c01266{bottom:769.830000px;}
.yea_c01266{bottom:775.875000px;}
.ydf_c01266{bottom:781.920000px;}
.yde_c01266{bottom:785.370000px;}
.ydd_c01266{bottom:786.240000px;}
.ye2_c01266{bottom:787.110000px;}
.ye1_c01266{bottom:787.965000px;}
.ye0_c01266{bottom:788.835000px;}
.ydc_c01266{bottom:789.690000px;}
.yd5_c01266{bottom:803.520000px;}
.ydb_c01266{bottom:805.245000px;}
.yd7_c01266{bottom:806.115000px;}
.yd9_c01266{bottom:806.970000px;}
.yda_c01266{bottom:807.840000px;}
.yd8_c01266{bottom:808.710000px;}
.yd6_c01266{bottom:809.565000px;}
.yd3_c01266{bottom:821.670000px;}
.yd1_c01266{bottom:824.250000px;}
.yd0_c01266{bottom:826.845000px;}
.yd4_c01266{bottom:827.715000px;}
.yd2_c01266{bottom:828.570000px;}
.ycc_c01266{bottom:840.675000px;}
.yc9_c01266{bottom:843.270000px;}
.yc5_c01266{bottom:844.125000px;}
.yc8_c01266{bottom:844.995000px;}
.ycf_c01266{bottom:845.850000px;}
.yc6_c01266{bottom:846.720000px;}
.yce_c01266{bottom:847.590000px;}
.ycd_c01266{bottom:848.445000px;}
.yc7_c01266{bottom:849.315000px;}
.yca_c01266{bottom:850.170000px;}
.ycb_c01266{bottom:853.635000px;}
.yc3_c01266{bottom:862.275000px;}
.yc2_c01266{bottom:863.130000px;}
.yc4_c01266{bottom:864.000000px;}
.yc1_c01266{bottom:878.685000px;}
.ybe_c01266{bottom:881.280000px;}
.yc0_c01266{bottom:882.150000px;}
.ybc_c01266{bottom:883.005000px;}
.yb9_c01266{bottom:883.875000px;}
.ybb_c01266{bottom:884.730000px;}
.yba_c01266{bottom:885.600000px;}
.ybf_c01266{bottom:887.325000px;}
.ybd_c01266{bottom:889.050000px;}
.yb8_c01266{bottom:889.920000px;}
.yb7_c01266{bottom:898.560000px;}
.yb6_c01266{bottom:902.010000px;}
.yb2_c01266{bottom:903.750000px;}
.yb4_c01266{bottom:904.605000px;}
.yb0_c01266{bottom:905.475000px;}
.yb3_c01266{bottom:907.200000px;}
.yb5_c01266{bottom:908.925000px;}
.yb1_c01266{bottom:910.650000px;}
.yae_c01266{bottom:923.610000px;}
.yaf_c01266{bottom:924.480000px;}
.yac_c01266{bottom:925.350000px;}
.yad_c01266{bottom:927.930000px;}
.yab_c01266{bottom:930.525000px;}
.ya7_c01266{bottom:944.355000px;}
.ya4_c01266{bottom:945.210000px;}
.ya9_c01266{bottom:946.950000px;}
.ya8_c01266{bottom:947.805000px;}
.yaa_c01266{bottom:948.675000px;}
.ya6_c01266{bottom:949.530000px;}
.ya5_c01266{bottom:950.400000px;}
.y1cf_c01266{bottom:959.910000px;}
.y1cd_c01266{bottom:960.765000px;}
.y1cc_c01266{bottom:961.635000px;}
.y1ce_c01266{bottom:962.490000px;}
.ya3_c01266{bottom:963.360000px;}
.ya0_c01266{bottom:964.230000px;}
.y9f_c01266{bottom:965.085000px;}
.ya2_c01266{bottom:966.810000px;}
.y9c_c01266{bottom:967.680000px;}
.ya1_c01266{bottom:968.550000px;}
.y9d_c01266{bottom:969.405000px;}
.y9e_c01266{bottom:970.275000px;}
.y9b_c01266{bottom:984.960000px;}
.y99_c01266{bottom:985.830000px;}
.y96_c01266{bottom:986.685000px;}
.y9a_c01266{bottom:989.280000px;}
.y98_c01266{bottom:990.150000px;}
.y97_c01266{bottom:991.005000px;}
.y95_c01266{bottom:1003.110000px;}
.y94_c01266{bottom:1004.835000px;}
.y92_c01266{bottom:1005.690000px;}
.y93_c01266{bottom:1007.430000px;}
.y91_c01266{bottom:1010.880000px;}
.y8d_c01266{bottom:1023.840000px;}
.y8f_c01266{bottom:1024.710000px;}
.y8b_c01266{bottom:1025.565000px;}
.y8e_c01266{bottom:1026.435000px;}
.y8a_c01266{bottom:1028.160000px;}
.y88_c01266{bottom:1029.030000px;}
.y90_c01266{bottom:1029.885000px;}
.y8c_c01266{bottom:1030.755000px;}
.y89_c01266{bottom:1031.610000px;}
.y1c9_c01266{bottom:1037.670000px;}
.y1ca_c01266{bottom:1041.120000px;}
.y1cb_c01266{bottom:1041.990000px;}
.y85_c01266{bottom:1044.570000px;}
.y84_c01266{bottom:1045.440000px;}
.y87_c01266{bottom:1049.760000px;}
.y86_c01266{bottom:1050.630000px;}
.y82_c01266{bottom:1060.125000px;}
.y7f_c01266{bottom:1060.995000px;}
.y80_c01266{bottom:1061.850000px;}
.y7c_c01266{bottom:1062.720000px;}
.y81_c01266{bottom:1070.490000px;}
.y7d_c01266{bottom:1071.360000px;}
.y7e_c01266{bottom:1072.230000px;}
.y83_c01266{bottom:1076.550000px;}
.y77_c01266{bottom:1084.320000px;}
.y7a_c01266{bottom:1085.190000px;}
.y79_c01266{bottom:1086.045000px;}
.y75_c01266{bottom:1087.770000px;}
.y78_c01266{bottom:1090.365000px;}
.y76_c01266{bottom:1091.235000px;}
.y74_c01266{bottom:1092.090000px;}
.y7b_c01266{bottom:1102.470000px;}
.y70_c01266{bottom:1105.050000px;}
.y72_c01266{bottom:1105.920000px;}
.y71_c01266{bottom:1110.240000px;}
.y73_c01266{bottom:1113.690000px;}
.y1c8_c01266{bottom:1116.285000px;}
.y1c5_c01266{bottom:1119.750000px;}
.y6f_c01266{bottom:1125.795000px;}
.y6e_c01266{bottom:1126.650000px;}
.y6c_c01266{bottom:1127.520000px;}
.y6b_c01266{bottom:1130.970000px;}
.y6d_c01266{bottom:1132.710000px;}
.y67_c01266{bottom:1145.670000px;}
.y64_c01266{bottom:1146.525000px;}
.y65_c01266{bottom:1147.395000px;}
.y69_c01266{bottom:1148.250000px;}
.y66_c01266{bottom:1150.845000px;}
.y68_c01266{bottom:1151.715000px;}
.y62_c01266{bottom:1152.570000px;}
.y6a_c01266{bottom:1153.440000px;}
.y61_c01266{bottom:1156.035000px;}
.y63_c01266{bottom:1157.760000px;}
.y5f_c01266{bottom:1166.400000px;}
.y5d_c01266{bottom:1167.270000px;}
.y60_c01266{bottom:1170.720000px;}
.y5e_c01266{bottom:1173.315000px;}
.y5c_c01266{bottom:1179.360000px;}
.y57_c01266{bottom:1187.130000px;}
.y58_c01266{bottom:1188.000000px;}
.y5a_c01266{bottom:1188.870000px;}
.y5b_c01266{bottom:1189.725000px;}
.y56_c01266{bottom:1190.595000px;}
.y59_c01266{bottom:1191.450000px;}
.y4e_c01266{bottom:1194.045000px;}
.y55_c01266{bottom:1198.365000px;}
.y4d_c01266{bottom:1199.235000px;}
.y53_c01266{bottom:1200.090000px;}
.y52_c01266{bottom:1200.960000px;}
.y4f_c01266{bottom:1201.830000px;}
.y51_c01266{bottom:1202.685000px;}
.y50_c01266{bottom:1203.555000px;}
.y54_c01266{bottom:1204.410000px;}
.y4c_c01266{bottom:1205.280000px;}
.y4b_c01266{bottom:1207.005000px;}
.y4a_c01266{bottom:1207.875000px;}
.y49_c01266{bottom:1208.730000px;}
.y47_c01266{bottom:1212.195000px;}
.y48_c01266{bottom:1215.645000px;}
.y44_c01266{bottom:1227.750000px;}
.y43_c01266{bottom:1228.605000px;}
.y46_c01266{bottom:1229.475000px;}
.y40_c01266{bottom:1230.330000px;}
.y45_c01266{bottom:1231.200000px;}
.y3c_c01266{bottom:1232.070000px;}
.y42_c01266{bottom:1232.925000px;}
.y41_c01266{bottom:1235.520000px;}
.y3f_c01266{bottom:1237.245000px;}
.y3d_c01266{bottom:1238.970000px;}
.y3a_c01266{bottom:1239.840000px;}
.y37_c01266{bottom:1240.710000px;}
.y3e_c01266{bottom:1241.565000px;}
.y39_c01266{bottom:1242.435000px;}
.y3b_c01266{bottom:1243.290000px;}
.y38_c01266{bottom:1245.030000px;}
.y36_c01266{bottom:1245.885000px;}
.y35_c01266{bottom:1246.755000px;}
.y32_c01266{bottom:1247.610000px;}
.y33_c01266{bottom:1248.480000px;}
.y30_c01266{bottom:1249.350000px;}
.y2f_c01266{bottom:1250.205000px;}
.y34_c01266{bottom:1251.930000px;}
.y31_c01266{bottom:1253.670000px;}
.y2e_c01266{bottom:1257.990000px;}
.y2b_c01266{bottom:1260.570000px;}
.y2a_c01266{bottom:1262.310000px;}
.y29_c01266{bottom:1263.165000px;}
.y28_c01266{bottom:1264.035000px;}
.y27_c01266{bottom:1264.890000px;}
.y2d_c01266{bottom:1268.355000px;}
.y2c_c01266{bottom:1273.530000px;}
.y24_c01266{bottom:1274.400000px;}
.y25_c01266{bottom:1278.720000px;}
.y26_c01266{bottom:1279.590000px;}
.y22_c01266{bottom:1281.315000px;}
.y1e_c01266{bottom:1282.170000px;}
.y1d_c01266{bottom:1283.040000px;}
.y20_c01266{bottom:1283.910000px;}
.y1a_c01266{bottom:1284.765000px;}
.y23_c01266{bottom:1287.360000px;}
.y1c_c01266{bottom:1288.230000px;}
.y21_c01266{bottom:1289.085000px;}
.y19_c01266{bottom:1289.955000px;}
.y1f_c01266{bottom:1294.275000px;}
.y1b_c01266{bottom:1295.130000px;}
.y17_c01266{bottom:1307.235000px;}
.y16_c01266{bottom:1308.090000px;}
.y14_c01266{bottom:1308.960000px;}
.y15_c01266{bottom:1309.830000px;}
.y12_c01266{bottom:1310.685000px;}
.y18_c01266{bottom:1312.410000px;}
.y13_c01266{bottom:1315.005000px;}
.y11_c01266{bottom:1321.920000px;}
.yb_c01266{bottom:1324.515000px;}
.y10_c01266{bottom:1325.370000px;}
.yd_c01266{bottom:1327.110000px;}
.y9_c01266{bottom:1327.965000px;}
.ya_c01266{bottom:1329.690000px;}
.ye_c01266{bottom:1330.560000px;}
.yf_c01266{bottom:1333.155000px;}
.yc_c01266{bottom:1338.330000px;}
.y1c7_c01266{bottom:1348.710000px;}
.y8_c01266{bottom:1353.885000px;}
.y3_c01266{bottom:1355.610000px;}
.y1_c01266{bottom:1357.350000px;}
.y5_c01266{bottom:1360.800000px;}
.y2_c01266{bottom:1361.670000px;}
.y6_c01266{bottom:1362.525000px;}
.y4_c01266{bottom:1364.250000px;}
.y7_c01266{bottom:1365.120000px;}
.y1c4_c01266{bottom:1397.955000px;}
.y1c3_c01266{bottom:1401.405000px;}
.y1c6_c01266{bottom:1427.325000px;}
.y1c1_c01266{bottom:1443.750000px;}
.y1c0_c01266{bottom:1446.330000px;}
.y1c2_c01266{bottom:1447.200000px;}
.h8_c01266{height:3.110063px;}
.h5_c01266{height:5.399414px;}
.hc_c01266{height:6.209326px;}
.h21_c01266{height:9.340986px;}
.h1a_c01266{height:12.418652px;}
.h1f_c01266{height:15.550313px;}
.h1d_c01266{height:18.681973px;}
.he_c01266{height:21.759639px;}
.h1e_c01266{height:22.798652px;}
.h20_c01266{height:24.891299px;}
.h1b_c01266{height:27.968965px;}
.h1c_c01266{height:31.100625px;}
.h14_c01266{height:34.232285px;}
.h18_c01266{height:37.309951px;}
.h7_c01266{height:40.441611px;}
.h22_c01266{height:43.519277px;}
.h24_c01266{height:46.302598px;}
.h23_c01266{height:46.650937px;}
.h15_c01266{height:49.782598px;}
.h12_c01266{height:52.860264px;}
.hf_c01266{height:55.991924px;}
.h13_c01266{height:59.069590px;}
.h6_c01266{height:62.201250px;}
.h2_c01266{height:65.332910px;}
.h3_c01266{height:68.410576px;}
.h25_c01266{height:70.830937px;}
.h16_c01266{height:71.542236px;}
.hd_c01266{height:74.619902px;}
.ha_c01266{height:77.751563px;}
.h17_c01266{height:80.883223px;}
.h10_c01266{height:83.960889px;}
.h19_c01266{height:87.092549px;}
.h4_c01266{height:90.170215px;}
.h9_c01266{height:93.301875px;}
.hb_c01266{height:102.642861px;}
.h11_c01266{height:111.983848px;}
.h1_c01266{height:1518.750000px;}
.h0_c01266{height:1518.915000px;}
.w0_c01266{width:1079.130000px;}
.w1_c01266{width:1079.250000px;}
.x0_c01266{left:0.000000px;}
.x3f_c01266{left:179.715000px;}
.x50_c01266{left:189.210000px;}
.xbb_c01266{left:196.125000px;}
.x57_c01266{left:200.445000px;}
.x118_c01266{left:203.040000px;}
.xf1_c01266{left:207.360000px;}
.x61_c01266{left:211.680000px;}
.xf2_c01266{left:219.450000px;}
.x10f_c01266{left:221.190000px;}
.xb2_c01266{left:222.915000px;}
.xd5_c01266{left:224.640000px;}
.xe8_c01266{left:227.235000px;}
.x58_c01266{left:228.960000px;}
.xb3_c01266{left:231.555000px;}
.x2a_c01266{left:233.280000px;}
.x1c_c01266{left:235.005000px;}
.x1_c01266{left:236.730000px;}
.x9_c01266{left:239.325000px;}
.x7d_c01266{left:241.050000px;}
.x51_c01266{left:243.645000px;}
.xf4_c01266{left:245.370000px;}
.x85_c01266{left:247.110000px;}
.x7e_c01266{left:248.835000px;}
.x38_c01266{left:252.285000px;}
.x71_c01266{left:254.010000px;}
.xa6_c01266{left:255.750000px;}
.x39_c01266{left:257.475000px;}
.x15_c01266{left:262.650000px;}
.xa_c01266{left:264.390000px;}
.x9a_c01266{left:266.115000px;}
.x101_c01266{left:268.710000px;}
.x8f_c01266{left:270.435000px;}
.xbd_c01266{left:273.885000px;}
.x77_c01266{left:277.350000px;}
.x2b_c01266{left:279.075000px;}
.xe4_c01266{left:280.800000px;}
.x90_c01266{left:283.395000px;}
.x2c_c01266{left:285.990000px;}
.xfd_c01266{left:287.715000px;}
.x62_c01266{left:289.440000px;}
.xa9_c01266{left:291.165000px;}
.x97_c01266{left:292.890000px;}
.x40_c01266{left:294.630000px;}
.x2d_c01266{left:296.355000px;}
.x1d_c01266{left:298.080000px;}
.xe3_c01266{left:299.805000px;}
.xbe_c01266{left:302.400000px;}
.xb4_c01266{left:304.125000px;}
.x91_c01266{left:305.850000px;}
.xed_c01266{left:307.590000px;}
.x63_c01266{left:309.315000px;}
.x116_c01266{left:311.040000px;}
.x98_c01266{left:312.765000px;}
.xff_c01266{left:314.490000px;}
.xee_c01266{left:316.230000px;}
.xb5_c01266{left:317.955000px;}
.xe9_c01266{left:319.680000px;}
.x78_c01266{left:321.405000px;}
.xd0_c01266{left:323.130000px;}
.x117_c01266{left:324.870000px;}
.x3a_c01266{left:330.045000px;}
.x41_c01266{left:333.510000px;}
.x1e_c01266{left:335.235000px;}
.x16_c01266{left:337.830000px;}
.xbf_c01266{left:341.280000px;}
.x42_c01266{left:344.730000px;}
.x110_c01266{left:346.470000px;}
.x2e_c01266{left:349.050000px;}
.x10a_c01266{left:350.790000px;}
.xae_c01266{left:352.515000px;}
.x1f_c01266{left:355.110000px;}
.xb_c01266{left:357.690000px;}
.xc6_c01266{left:359.430000px;}
.xe0_c01266{left:362.880000px;}
.xdd_c01266{left:364.605000px;}
.xf8_c01266{left:367.200000px;}
.x7f_c01266{left:368.925000px;}
.x2_c01266{left:372.390000px;}
.xa1_c01266{left:375.840000px;}
.x106_c01266{left:377.565000px;}
.x92_c01266{left:379.290000px;}
.x102_c01266{left:382.755000px;}
.x59_c01266{left:384.480000px;}
.x79_c01266{left:387.075000px;}
.x88_c01266{left:388.800000px;}
.xef_c01266{left:390.525000px;}
.x2f_c01266{left:392.250000px;}
.x10b_c01266{left:394.845000px;}
.x80_c01266{left:396.570000px;}
.xd6_c01266{left:400.890000px;}
.xc_c01266{left:403.485000px;}
.x111_c01266{left:406.080000px;}
.xea_c01266{left:408.675000px;}
.x43_c01266{left:410.400000px;}
.x17_c01266{left:413.850000px;}
.xb6_c01266{left:416.445000px;}
.x100_c01266{left:418.170000px;}
.xce_c01266{left:421.635000px;}
.xc0_c01266{left:425.085000px;}
.xd8_c01266{left:427.680000px;}
.xd1_c01266{left:431.130000px;}
.xe1_c01266{left:432.870000px;}
.x20_c01266{left:434.595000px;}
.x113_c01266{left:436.320000px;}
.x5a_c01266{left:438.045000px;}
.x103_c01266{left:440.640000px;}
.x72_c01266{left:442.365000px;}
.xa2_c01266{left:445.830000px;}
.xd7_c01266{left:450.150000px;}
.x9b_c01266{left:451.875000px;}
.xe7_c01266{left:454.470000px;}
.xc9_c01266{left:457.050000px;}
.x44_c01266{left:463.965000px;}
.x30_c01266{left:465.690000px;}
.x21_c01266{left:468.285000px;}
.xde_c01266{left:470.880000px;}
.x89_c01266{left:472.605000px;}
.xf5_c01266{left:475.200000px;}
.x10e_c01266{left:478.650000px;}
.x93_c01266{left:483.840000px;}
.x10c_c01266{left:489.885000px;}
.x5b_c01266{left:492.480000px;}
.xfe_c01266{left:494.205000px;}
.xd2_c01266{left:495.930000px;}
.xc1_c01266{left:497.670000px;}
.xeb_c01266{left:499.395000px;}
.x45_c01266{left:501.120000px;}
.xb1_c01266{left:502.845000px;}
.x3_c01266{left:505.440000px;}
.x9c_c01266{left:507.165000px;}
.xf3_c01266{left:509.760000px;}
.xca_c01266{left:512.355000px;}
.xb7_c01266{left:515.805000px;}
.x22_c01266{left:518.400000px;}
.x31_c01266{left:527.040000px;}
.x7a_c01266{left:533.085000px;}
.x32_c01266{left:534.810000px;}
.xd_c01266{left:538.275000px;}
.x81_c01266{left:540.000000px;}
.xcb_c01266{left:541.725000px;}
.x112_c01266{left:543.450000px;}
.xaa_c01266{left:545.190000px;}
.xfa_c01266{left:546.915000px;}
.xe_c01266{left:548.640000px;}
.x8a_c01266{left:552.090000px;}
.xa7_c01266{left:553.830000px;}
.xd9_c01266{left:555.555000px;}
.x82_c01266{left:557.280000px;}
.x73_c01266{left:559.875000px;}
.x52_c01266{left:561.600000px;}
.x33_c01266{left:563.325000px;}
.x18_c01266{left:565.050000px;}
.x46_c01266{left:566.790000px;}
.x64_c01266{left:569.370000px;}
.x107_c01266{left:571.110000px;}
.xc2_c01266{left:573.690000px;}
.x47_c01266{left:576.285000px;}
.x114_c01266{left:579.750000px;}
.x23_c01266{left:582.330000px;}
.x104_c01266{left:584.070000px;}
.xfb_c01266{left:585.795000px;}
.xf9_c01266{left:587.520000px;}
.x9d_c01266{left:591.840000px;}
.x3b_c01266{left:594.435000px;}
.x34_c01266{left:596.160000px;}
.xf0_c01266{left:597.885000px;}
.x53_c01266{left:599.610000px;}
.x6c_c01266{left:603.075000px;}
.xbc_c01266{left:604.800000px;}
.xfc_c01266{left:606.525000px;}
.xf_c01266{left:608.250000px;}
.xb8_c01266{left:610.845000px;}
.xda_c01266{left:612.570000px;}
.xa3_c01266{left:614.310000px;}
.x10_c01266{left:616.035000px;}
.x65_c01266{left:617.760000px;}
.xa8_c01266{left:619.485000px;}
.x5c_c01266{left:622.080000px;}
.xac_c01266{left:623.805000px;}
.x6d_c01266{left:626.400000px;}
.xe5_c01266{left:628.125000px;}
.x24_c01266{left:629.850000px;}
.x3c_c01266{left:633.315000px;}
.x11_c01266{left:635.040000px;}
.x9e_c01266{left:636.765000px;}
.x66_c01266{left:638.490000px;}
.xaf_c01266{left:641.085000px;}
.x5d_c01266{left:643.680000px;}
.x6e_c01266{left:645.405000px;}
.xc3_c01266{left:647.130000px;}
.xdb_c01266{left:648.870000px;}
.x35_c01266{left:650.595000px;}
.x4_c01266{left:654.915000px;}
.x9f_c01266{left:657.510000px;}
.xb9_c01266{left:660.090000px;}
.xcc_c01266{left:661.830000px;}
.x108_c01266{left:663.555000px;}
.x5_c01266{left:665.280000px;}
.xd3_c01266{left:667.875000px;}
.x25_c01266{left:669.600000px;}
.xe6_c01266{left:671.325000px;}
.x83_c01266{left:673.920000px;}
.x6f_c01266{left:676.515000px;}
.xdc_c01266{left:678.240000px;}
.x12_c01266{left:685.155000px;}
.x48_c01266{left:686.880000px;}
.x8b_c01266{left:688.605000px;}
.x86_c01266{left:694.650000px;}
.xa4_c01266{left:697.245000px;}
.xf6_c01266{left:698.970000px;}
.x49_c01266{left:704.160000px;}
.x115_c01266{left:705.885000px;}
.x36_c01266{left:708.480000px;}
.xad_c01266{left:710.205000px;}
.xc4_c01266{left:712.800000px;}
.x10d_c01266{left:714.525000px;}
.xcf_c01266{left:717.120000px;}
.xa0_c01266{left:719.715000px;}
.x3d_c01266{left:721.440000px;}
.x5e_c01266{left:724.035000px;}
.x109_c01266{left:727.485000px;}
.x6_c01266{left:729.210000px;}
.x4a_c01266{left:730.950000px;}
.xab_c01266{left:733.530000px;}
.xe2_c01266{left:735.270000px;}
.x67_c01266{left:738.720000px;}
.x13_c01266{left:741.315000px;}
.x8c_c01266{left:744.765000px;}
.x95_c01266{left:747.360000px;}
.x26_c01266{left:749.085000px;}
.x4b_c01266{left:751.680000px;}
.xba_c01266{left:753.405000px;}
.xc7_c01266{left:755.130000px;}
.x27_c01266{left:756.870000px;}
.x99_c01266{left:759.450000px;}
.x54_c01266{left:761.190000px;}
.x7_c01266{left:764.640000px;}
.xec_c01266{left:767.235000px;}
.x4c_c01266{left:768.960000px;}
.x5f_c01266{left:772.410000px;}
.x68_c01266{left:779.325000px;}
.x84_c01266{left:781.050000px;}
.x19_c01266{left:782.790000px;}
.x69_c01266{left:785.370000px;}
.x55_c01266{left:789.690000px;}
.x4d_c01266{left:791.430000px;}
.x28_c01266{left:794.010000px;}
.x74_c01266{left:795.750000px;}
.xc8_c01266{left:799.200000px;}
.xb0_c01266{left:800.925000px;}
.x96_c01266{left:802.650000px;}
.x6a_c01266{left:804.390000px;}
.x105_c01266{left:807.840000px;}
.x1a_c01266{left:810.435000px;}
.x4e_c01266{left:812.160000px;}
.xa5_c01266{left:814.755000px;}
.x7b_c01266{left:817.350000px;}
.x60_c01266{left:821.670000px;}
.x37_c01266{left:824.250000px;}
.x70_c01266{left:826.845000px;}
.x6b_c01266{left:830.310000px;}
.x8d_c01266{left:833.760000px;}
.x29_c01266{left:836.355000px;}
.x7c_c01266{left:838.080000px;}
.x94_c01266{left:840.675000px;}
.x75_c01266{left:842.400000px;}
.x1b_c01266{left:844.125000px;}
.xdf_c01266{left:845.850000px;}
.x8e_c01266{left:847.590000px;}
.x56_c01266{left:852.765000px;}
.x4f_c01266{left:854.490000px;}
.xcd_c01266{left:856.230000px;}
.x3e_c01266{left:857.955000px;}
.x8_c01266{left:859.680000px;}
.xf7_c01266{left:866.595000px;}
.xc5_c01266{left:868.320000px;}
.xd4_c01266{left:870.045000px;}
.x76_c01266{left:872.640000px;}
.x14_c01266{left:875.235000px;}
.x87_c01266{left:883.875000px;}
.x120_c01266{left:897.690000px;}
.x11a_c01266{left:902.880000px;}
.x121_c01266{left:904.605000px;}
.x122_c01266{left:1008.285000px;}
.x119_c01266{left:1016.070000px;}
.x11b_c01266{left:1029.030000px;}
.x11d_c01266{left:1032.480000px;}
.x11c_c01266{left:1035.930000px;}
.x11e_c01266{left:1041.990000px;}
.x11f_c01266{left:1052.355000px;}
@media print{
.v2_c01266{vertical-align:-3.093333pt;}
.v0_c01266{vertical-align:0.000000pt;}
.v1_c01266{vertical-align:9.226667pt;}
.v4_c01266{vertical-align:12.266667pt;}
.v3_c01266{vertical-align:21.493333pt;}
.ls1_c01266{letter-spacing:0.000000pt;}
.ls0_c01266{letter-spacing:13.444213pt;}
.ws2_c01266{word-spacing:-24.406187pt;}
.ws1_c01266{word-spacing:-17.010293pt;}
.ws0_c01266{word-spacing:-7.887573pt;}
.ws5_c01266{word-spacing:0.000000pt;}
.ws3_c01266{word-spacing:11.666667pt;}
.ws4_c01266{word-spacing:82.808919pt;}
.fs6_c01266{font-size:3.072000pt;}
.fs3_c01266{font-size:5.333333pt;}
.fsa_c01266{font-size:6.133333pt;}
.fs1c_c01266{font-size:9.226667pt;}
.fs18_c01266{font-size:12.266667pt;}
.fs1d_c01266{font-size:15.360000pt;}
.fs1b_c01266{font-size:18.453333pt;}
.fsc_c01266{font-size:21.493333pt;}
.fs1e_c01266{font-size:24.586667pt;}
.fs19_c01266{font-size:27.626667pt;}
.fs1a_c01266{font-size:30.720000pt;}
.fs12_c01266{font-size:33.813333pt;}
.fs16_c01266{font-size:36.853333pt;}
.fs5_c01266{font-size:39.946667pt;}
.fs1f_c01266{font-size:42.986667pt;}
.fs20_c01266{font-size:46.080000pt;}
.fs13_c01266{font-size:49.173333pt;}
.fs10_c01266{font-size:52.213333pt;}
.fsd_c01266{font-size:55.306667pt;}
.fs11_c01266{font-size:58.346667pt;}
.fs4_c01266{font-size:61.440000pt;}
.fs0_c01266{font-size:64.533333pt;}
.fs1_c01266{font-size:67.573333pt;}
.fs14_c01266{font-size:70.666667pt;}
.fsb_c01266{font-size:73.706667pt;}
.fs8_c01266{font-size:76.800000pt;}
.fs15_c01266{font-size:79.893333pt;}
.fse_c01266{font-size:82.933333pt;}
.fs17_c01266{font-size:86.026667pt;}
.fs2_c01266{font-size:89.066667pt;}
.fs7_c01266{font-size:92.160000pt;}
.fs9_c01266{font-size:101.386667pt;}
.fsf_c01266{font-size:110.613333pt;}
.y0_c01266{bottom:0.000000pt;}
.y1be_c01266{bottom:167.426667pt;}
.y1bf_c01266{bottom:168.960000pt;}
.y1bb_c01266{bottom:169.733333pt;}
.y1b7_c01266{bottom:170.493333pt;}
.y1bd_c01266{bottom:172.026667pt;}
.y1bc_c01266{bottom:172.800000pt;}
.y1b8_c01266{bottom:174.333333pt;}
.y1b9_c01266{bottom:175.106667pt;}
.y1ba_c01266{bottom:176.640000pt;}
.y1b6_c01266{bottom:188.933333pt;}
.y1b5_c01266{bottom:190.466667pt;}
.y1b0_c01266{bottom:191.226667pt;}
.y1b3_c01266{bottom:192.773333pt;}
.y1b2_c01266{bottom:196.613333pt;}
.y1b1_c01266{bottom:197.373333pt;}
.y1b4_c01266{bottom:206.586667pt;}
.y1ab_c01266{bottom:207.360000pt;}
.y1ad_c01266{bottom:208.133333pt;}
.y1a9_c01266{bottom:208.893333pt;}
.y1aa_c01266{bottom:209.666667pt;}
.y1a8_c01266{bottom:210.426667pt;}
.y1ac_c01266{bottom:212.733333pt;}
.y1ae_c01266{bottom:213.506667pt;}
.y1af_c01266{bottom:215.040000pt;}
.y1a6_c01266{bottom:225.786667pt;}
.y1a7_c01266{bottom:226.560000pt;}
.y1a1_c01266{bottom:227.333333pt;}
.y1a5_c01266{bottom:229.626667pt;}
.y1a2_c01266{bottom:231.933333pt;}
.y1a3_c01266{bottom:233.466667pt;}
.y1a4_c01266{bottom:235.773333pt;}
.y1a0_c01266{bottom:244.226667pt;}
.y19c_c01266{bottom:244.986667pt;}
.y19a_c01266{bottom:245.760000pt;}
.y19b_c01266{bottom:246.533333pt;}
.y19e_c01266{bottom:248.066667pt;}
.y19f_c01266{bottom:250.373333pt;}
.y19d_c01266{bottom:251.133333pt;}
.y199_c01266{bottom:262.653333pt;}
.y197_c01266{bottom:264.186667pt;}
.y198_c01266{bottom:265.733333pt;}
.y196_c01266{bottom:268.026667pt;}
.y195_c01266{bottom:281.093333pt;}
.y193_c01266{bottom:281.853333pt;}
.y192_c01266{bottom:282.626667pt;}
.y18f_c01266{bottom:283.386667pt;}
.y194_c01266{bottom:285.693333pt;}
.y190_c01266{bottom:286.466667pt;}
.y18e_c01266{bottom:288.000000pt;}
.y191_c01266{bottom:288.773333pt;}
.y18c_c01266{bottom:297.986667pt;}
.y189_c01266{bottom:298.746667pt;}
.y18b_c01266{bottom:299.520000pt;}
.y18d_c01266{bottom:300.293333pt;}
.y187_c01266{bottom:301.053333pt;}
.y186_c01266{bottom:304.133333pt;}
.y185_c01266{bottom:304.893333pt;}
.y18a_c01266{bottom:305.666667pt;}
.y188_c01266{bottom:306.426667pt;}
.y183_c01266{bottom:317.946667pt;}
.y182_c01266{bottom:318.720000pt;}
.y180_c01266{bottom:319.493333pt;}
.y181_c01266{bottom:320.253333pt;}
.y184_c01266{bottom:323.333333pt;}
.y17f_c01266{bottom:334.853333pt;}
.y17e_c01266{bottom:335.613333pt;}
.y17b_c01266{bottom:337.920000pt;}
.y17a_c01266{bottom:339.453333pt;}
.y17c_c01266{bottom:341.760000pt;}
.y17d_c01266{bottom:343.293333pt;}
.y177_c01266{bottom:352.506667pt;}
.y174_c01266{bottom:353.280000pt;}
.y172_c01266{bottom:354.053333pt;}
.y176_c01266{bottom:354.813333pt;}
.y171_c01266{bottom:355.586667pt;}
.y170_c01266{bottom:357.893333pt;}
.y179_c01266{bottom:358.653333pt;}
.y178_c01266{bottom:359.426667pt;}
.y173_c01266{bottom:360.960000pt;}
.y175_c01266{bottom:364.800000pt;}
.y16c_c01266{bottom:374.013333pt;}
.y16d_c01266{bottom:374.786667pt;}
.y16b_c01266{bottom:375.546667pt;}
.y16f_c01266{bottom:376.320000pt;}
.y16e_c01266{bottom:377.093333pt;}
.y166_c01266{bottom:378.626667pt;}
.y164_c01266{bottom:379.386667pt;}
.y168_c01266{bottom:383.226667pt;}
.y165_c01266{bottom:385.533333pt;}
.y167_c01266{bottom:386.306667pt;}
.y16a_c01266{bottom:387.840000pt;}
.y169_c01266{bottom:389.373333pt;}
.y163_c01266{bottom:390.146667pt;}
.y162_c01266{bottom:390.906667pt;}
.y160_c01266{bottom:391.680000pt;}
.y161_c01266{bottom:393.213333pt;}
.y15f_c01266{bottom:393.986667pt;}
.y15d_c01266{bottom:394.746667pt;}
.y15c_c01266{bottom:395.520000pt;}
.y15b_c01266{bottom:396.293333pt;}
.y15e_c01266{bottom:397.053333pt;}
.y158_c01266{bottom:409.346667pt;}
.y154_c01266{bottom:410.106667pt;}
.y159_c01266{bottom:410.880000pt;}
.y157_c01266{bottom:411.653333pt;}
.y15a_c01266{bottom:413.946667pt;}
.y155_c01266{bottom:414.720000pt;}
.y156_c01266{bottom:415.493333pt;}
.y153_c01266{bottom:416.253333pt;}
.y152_c01266{bottom:426.240000pt;}
.y151_c01266{bottom:427.773333pt;}
.y150_c01266{bottom:428.546667pt;}
.y14b_c01266{bottom:429.306667pt;}
.y14f_c01266{bottom:430.080000pt;}
.y14e_c01266{bottom:430.853333pt;}
.y14c_c01266{bottom:432.386667pt;}
.y14d_c01266{bottom:433.146667pt;}
.y14a_c01266{bottom:443.133333pt;}
.y149_c01266{bottom:444.666667pt;}
.y148_c01266{bottom:445.440000pt;}
.y146_c01266{bottom:446.213333pt;}
.y144_c01266{bottom:446.973333pt;}
.y147_c01266{bottom:450.053333pt;}
.y143_c01266{bottom:450.813333pt;}
.y145_c01266{bottom:451.586667pt;}
.y140_c01266{bottom:458.493333pt;}
.y142_c01266{bottom:459.266667pt;}
.y13f_c01266{bottom:460.026667pt;}
.y141_c01266{bottom:460.800000pt;}
.y13e_c01266{bottom:461.573333pt;}
.y13c_c01266{bottom:463.106667pt;}
.y13b_c01266{bottom:463.866667pt;}
.y13d_c01266{bottom:468.480000pt;}
.y13a_c01266{bottom:480.000000pt;}
.y139_c01266{bottom:481.533333pt;}
.y135_c01266{bottom:482.306667pt;}
.y132_c01266{bottom:483.840000pt;}
.y136_c01266{bottom:484.613333pt;}
.y133_c01266{bottom:485.373333pt;}
.y134_c01266{bottom:487.680000pt;}
.y138_c01266{bottom:489.213333pt;}
.y137_c01266{bottom:489.986667pt;}
.y130_c01266{bottom:499.200000pt;}
.y12d_c01266{bottom:499.973333pt;}
.y12e_c01266{bottom:500.733333pt;}
.y12f_c01266{bottom:501.506667pt;}
.y12c_c01266{bottom:502.266667pt;}
.y12a_c01266{bottom:504.573333pt;}
.y12b_c01266{bottom:506.106667pt;}
.y131_c01266{bottom:506.880000pt;}
.y126_c01266{bottom:517.626667pt;}
.y125_c01266{bottom:518.400000pt;}
.y124_c01266{bottom:519.933333pt;}
.y128_c01266{bottom:521.466667pt;}
.y127_c01266{bottom:522.240000pt;}
.y129_c01266{bottom:523.013333pt;}
.y123_c01266{bottom:523.773333pt;}
.y120_c01266{bottom:536.826667pt;}
.y122_c01266{bottom:539.133333pt;}
.y121_c01266{bottom:540.666667pt;}
.y11f_c01266{bottom:541.440000pt;}
.y11d_c01266{bottom:552.960000pt;}
.y119_c01266{bottom:554.493333pt;}
.y11a_c01266{bottom:555.266667pt;}
.y11e_c01266{bottom:557.573333pt;}
.y11c_c01266{bottom:558.333333pt;}
.y11b_c01266{bottom:559.866667pt;}
.y118_c01266{bottom:561.413333pt;}
.y117_c01266{bottom:571.386667pt;}
.y114_c01266{bottom:572.160000pt;}
.y111_c01266{bottom:572.933333pt;}
.y116_c01266{bottom:573.693333pt;}
.y113_c01266{bottom:575.226667pt;}
.y115_c01266{bottom:576.000000pt;}
.y112_c01266{bottom:576.773333pt;}
.y110_c01266{bottom:579.066667pt;}
.y10d_c01266{bottom:588.293333pt;}
.y10c_c01266{bottom:589.053333pt;}
.y109_c01266{bottom:589.826667pt;}
.y10f_c01266{bottom:590.586667pt;}
.y10a_c01266{bottom:591.360000pt;}
.y10b_c01266{bottom:592.133333pt;}
.y10e_c01266{bottom:592.893333pt;}
.y106_c01266{bottom:605.186667pt;}
.y102_c01266{bottom:605.946667pt;}
.y103_c01266{bottom:606.720000pt;}
.y104_c01266{bottom:608.253333pt;}
.y107_c01266{bottom:609.786667pt;}
.y108_c01266{bottom:610.560000pt;}
.y105_c01266{bottom:611.333333pt;}
.y100_c01266{bottom:623.613333pt;}
.yff_c01266{bottom:624.386667pt;}
.y101_c01266{bottom:627.453333pt;}
.yfd_c01266{bottom:628.986667pt;}
.yfb_c01266{bottom:629.760000pt;}
.yfc_c01266{bottom:630.533333pt;}
.yfa_c01266{bottom:631.293333pt;}
.yfe_c01266{bottom:635.906667pt;}
.yf6_c01266{bottom:641.280000pt;}
.yf4_c01266{bottom:642.053333pt;}
.yf5_c01266{bottom:642.813333pt;}
.yf7_c01266{bottom:643.586667pt;}
.yf9_c01266{bottom:645.893333pt;}
.yf8_c01266{bottom:646.653333pt;}
.yf3_c01266{bottom:658.946667pt;}
.yf1_c01266{bottom:659.706667pt;}
.yf2_c01266{bottom:660.480000pt;}
.yee_c01266{bottom:661.253333pt;}
.yec_c01266{bottom:662.013333pt;}
.yef_c01266{bottom:662.786667pt;}
.yed_c01266{bottom:663.546667pt;}
.yeb_c01266{bottom:664.320000pt;}
.yf0_c01266{bottom:666.626667pt;}
.ye9_c01266{bottom:676.613333pt;}
.ye5_c01266{bottom:677.373333pt;}
.ye7_c01266{bottom:678.146667pt;}
.ye3_c01266{bottom:681.986667pt;}
.ye8_c01266{bottom:682.746667pt;}
.ye4_c01266{bottom:683.520000pt;}
.ye6_c01266{bottom:684.293333pt;}
.yea_c01266{bottom:689.666667pt;}
.ydf_c01266{bottom:695.040000pt;}
.yde_c01266{bottom:698.106667pt;}
.ydd_c01266{bottom:698.880000pt;}
.ye2_c01266{bottom:699.653333pt;}
.ye1_c01266{bottom:700.413333pt;}
.ye0_c01266{bottom:701.186667pt;}
.ydc_c01266{bottom:701.946667pt;}
.yd5_c01266{bottom:714.240000pt;}
.ydb_c01266{bottom:715.773333pt;}
.yd7_c01266{bottom:716.546667pt;}
.yd9_c01266{bottom:717.306667pt;}
.yda_c01266{bottom:718.080000pt;}
.yd8_c01266{bottom:718.853333pt;}
.yd6_c01266{bottom:719.613333pt;}
.yd3_c01266{bottom:730.373333pt;}
.yd1_c01266{bottom:732.666667pt;}
.yd0_c01266{bottom:734.973333pt;}
.yd4_c01266{bottom:735.746667pt;}
.yd2_c01266{bottom:736.506667pt;}
.ycc_c01266{bottom:747.266667pt;}
.yc9_c01266{bottom:749.573333pt;}
.yc5_c01266{bottom:750.333333pt;}
.yc8_c01266{bottom:751.106667pt;}
.ycf_c01266{bottom:751.866667pt;}
.yc6_c01266{bottom:752.640000pt;}
.yce_c01266{bottom:753.413333pt;}
.ycd_c01266{bottom:754.173333pt;}
.yc7_c01266{bottom:754.946667pt;}
.yca_c01266{bottom:755.706667pt;}
.ycb_c01266{bottom:758.786667pt;}
.yc3_c01266{bottom:766.466667pt;}
.yc2_c01266{bottom:767.226667pt;}
.yc4_c01266{bottom:768.000000pt;}
.yc1_c01266{bottom:781.053333pt;}
.ybe_c01266{bottom:783.360000pt;}
.yc0_c01266{bottom:784.133333pt;}
.ybc_c01266{bottom:784.893333pt;}
.yb9_c01266{bottom:785.666667pt;}
.ybb_c01266{bottom:786.426667pt;}
.yba_c01266{bottom:787.200000pt;}
.ybf_c01266{bottom:788.733333pt;}
.ybd_c01266{bottom:790.266667pt;}
.yb8_c01266{bottom:791.040000pt;}
.yb7_c01266{bottom:798.720000pt;}
.yb6_c01266{bottom:801.786667pt;}
.yb2_c01266{bottom:803.333333pt;}
.yb4_c01266{bottom:804.093333pt;}
.yb0_c01266{bottom:804.866667pt;}
.yb3_c01266{bottom:806.400000pt;}
.yb5_c01266{bottom:807.933333pt;}
.yb1_c01266{bottom:809.466667pt;}
.yae_c01266{bottom:820.986667pt;}
.yaf_c01266{bottom:821.760000pt;}
.yac_c01266{bottom:822.533333pt;}
.yad_c01266{bottom:824.826667pt;}
.yab_c01266{bottom:827.133333pt;}
.ya7_c01266{bottom:839.426667pt;}
.ya4_c01266{bottom:840.186667pt;}
.ya9_c01266{bottom:841.733333pt;}
.ya8_c01266{bottom:842.493333pt;}
.yaa_c01266{bottom:843.266667pt;}
.ya6_c01266{bottom:844.026667pt;}
.ya5_c01266{bottom:844.800000pt;}
.y1cf_c01266{bottom:853.253333pt;}
.y1cd_c01266{bottom:854.013333pt;}
.y1cc_c01266{bottom:854.786667pt;}
.y1ce_c01266{bottom:855.546667pt;}
.ya3_c01266{bottom:856.320000pt;}
.ya0_c01266{bottom:857.093333pt;}
.y9f_c01266{bottom:857.853333pt;}
.ya2_c01266{bottom:859.386667pt;}
.y9c_c01266{bottom:860.160000pt;}
.ya1_c01266{bottom:860.933333pt;}
.y9d_c01266{bottom:861.693333pt;}
.y9e_c01266{bottom:862.466667pt;}
.y9b_c01266{bottom:875.520000pt;}
.y99_c01266{bottom:876.293333pt;}
.y96_c01266{bottom:877.053333pt;}
.y9a_c01266{bottom:879.360000pt;}
.y98_c01266{bottom:880.133333pt;}
.y97_c01266{bottom:880.893333pt;}
.y95_c01266{bottom:891.653333pt;}
.y94_c01266{bottom:893.186667pt;}
.y92_c01266{bottom:893.946667pt;}
.y93_c01266{bottom:895.493333pt;}
.y91_c01266{bottom:898.560000pt;}
.y8d_c01266{bottom:910.080000pt;}
.y8f_c01266{bottom:910.853333pt;}
.y8b_c01266{bottom:911.613333pt;}
.y8e_c01266{bottom:912.386667pt;}
.y8a_c01266{bottom:913.920000pt;}
.y88_c01266{bottom:914.693333pt;}
.y90_c01266{bottom:915.453333pt;}
.y8c_c01266{bottom:916.226667pt;}
.y89_c01266{bottom:916.986667pt;}
.y1c9_c01266{bottom:922.373333pt;}
.y1ca_c01266{bottom:925.440000pt;}
.y1cb_c01266{bottom:926.213333pt;}
.y85_c01266{bottom:928.506667pt;}
.y84_c01266{bottom:929.280000pt;}
.y87_c01266{bottom:933.120000pt;}
.y86_c01266{bottom:933.893333pt;}
.y82_c01266{bottom:942.333333pt;}
.y7f_c01266{bottom:943.106667pt;}
.y80_c01266{bottom:943.866667pt;}
.y7c_c01266{bottom:944.640000pt;}
.y81_c01266{bottom:951.546667pt;}
.y7d_c01266{bottom:952.320000pt;}
.y7e_c01266{bottom:953.093333pt;}
.y83_c01266{bottom:956.933333pt;}
.y77_c01266{bottom:963.840000pt;}
.y7a_c01266{bottom:964.613333pt;}
.y79_c01266{bottom:965.373333pt;}
.y75_c01266{bottom:966.906667pt;}
.y78_c01266{bottom:969.213333pt;}
.y76_c01266{bottom:969.986667pt;}
.y74_c01266{bottom:970.746667pt;}
.y7b_c01266{bottom:979.973333pt;}
.y70_c01266{bottom:982.266667pt;}
.y72_c01266{bottom:983.040000pt;}
.y71_c01266{bottom:986.880000pt;}
.y73_c01266{bottom:989.946667pt;}
.y1c8_c01266{bottom:992.253333pt;}
.y1c5_c01266{bottom:995.333333pt;}
.y6f_c01266{bottom:1000.706667pt;}
.y6e_c01266{bottom:1001.466667pt;}
.y6c_c01266{bottom:1002.240000pt;}
.y6b_c01266{bottom:1005.306667pt;}
.y6d_c01266{bottom:1006.853333pt;}
.y67_c01266{bottom:1018.373333pt;}
.y64_c01266{bottom:1019.133333pt;}
.y65_c01266{bottom:1019.906667pt;}
.y69_c01266{bottom:1020.666667pt;}
.y66_c01266{bottom:1022.973333pt;}
.y68_c01266{bottom:1023.746667pt;}
.y62_c01266{bottom:1024.506667pt;}
.y6a_c01266{bottom:1025.280000pt;}
.y61_c01266{bottom:1027.586667pt;}
.y63_c01266{bottom:1029.120000pt;}
.y5f_c01266{bottom:1036.800000pt;}
.y5d_c01266{bottom:1037.573333pt;}
.y60_c01266{bottom:1040.640000pt;}
.y5e_c01266{bottom:1042.946667pt;}
.y5c_c01266{bottom:1048.320000pt;}
.y57_c01266{bottom:1055.226667pt;}
.y58_c01266{bottom:1056.000000pt;}
.y5a_c01266{bottom:1056.773333pt;}
.y5b_c01266{bottom:1057.533333pt;}
.y56_c01266{bottom:1058.306667pt;}
.y59_c01266{bottom:1059.066667pt;}
.y4e_c01266{bottom:1061.373333pt;}
.y55_c01266{bottom:1065.213333pt;}
.y4d_c01266{bottom:1065.986667pt;}
.y53_c01266{bottom:1066.746667pt;}
.y52_c01266{bottom:1067.520000pt;}
.y4f_c01266{bottom:1068.293333pt;}
.y51_c01266{bottom:1069.053333pt;}
.y50_c01266{bottom:1069.826667pt;}
.y54_c01266{bottom:1070.586667pt;}
.y4c_c01266{bottom:1071.360000pt;}
.y4b_c01266{bottom:1072.893333pt;}
.y4a_c01266{bottom:1073.666667pt;}
.y49_c01266{bottom:1074.426667pt;}
.y47_c01266{bottom:1077.506667pt;}
.y48_c01266{bottom:1080.573333pt;}
.y44_c01266{bottom:1091.333333pt;}
.y43_c01266{bottom:1092.093333pt;}
.y46_c01266{bottom:1092.866667pt;}
.y40_c01266{bottom:1093.626667pt;}
.y45_c01266{bottom:1094.400000pt;}
.y3c_c01266{bottom:1095.173333pt;}
.y42_c01266{bottom:1095.933333pt;}
.y41_c01266{bottom:1098.240000pt;}
.y3f_c01266{bottom:1099.773333pt;}
.y3d_c01266{bottom:1101.306667pt;}
.y3a_c01266{bottom:1102.080000pt;}
.y37_c01266{bottom:1102.853333pt;}
.y3e_c01266{bottom:1103.613333pt;}
.y39_c01266{bottom:1104.386667pt;}
.y3b_c01266{bottom:1105.146667pt;}
.y38_c01266{bottom:1106.693333pt;}
.y36_c01266{bottom:1107.453333pt;}
.y35_c01266{bottom:1108.226667pt;}
.y32_c01266{bottom:1108.986667pt;}
.y33_c01266{bottom:1109.760000pt;}
.y30_c01266{bottom:1110.533333pt;}
.y2f_c01266{bottom:1111.293333pt;}
.y34_c01266{bottom:1112.826667pt;}
.y31_c01266{bottom:1114.373333pt;}
.y2e_c01266{bottom:1118.213333pt;}
.y2b_c01266{bottom:1120.506667pt;}
.y2a_c01266{bottom:1122.053333pt;}
.y29_c01266{bottom:1122.813333pt;}
.y28_c01266{bottom:1123.586667pt;}
.y27_c01266{bottom:1124.346667pt;}
.y2d_c01266{bottom:1127.426667pt;}
.y2c_c01266{bottom:1132.026667pt;}
.y24_c01266{bottom:1132.800000pt;}
.y25_c01266{bottom:1136.640000pt;}
.y26_c01266{bottom:1137.413333pt;}
.y22_c01266{bottom:1138.946667pt;}
.y1e_c01266{bottom:1139.706667pt;}
.y1d_c01266{bottom:1140.480000pt;}
.y20_c01266{bottom:1141.253333pt;}
.y1a_c01266{bottom:1142.013333pt;}
.y23_c01266{bottom:1144.320000pt;}
.y1c_c01266{bottom:1145.093333pt;}
.y21_c01266{bottom:1145.853333pt;}
.y19_c01266{bottom:1146.626667pt;}
.y1f_c01266{bottom:1150.466667pt;}
.y1b_c01266{bottom:1151.226667pt;}
.y17_c01266{bottom:1161.986667pt;}
.y16_c01266{bottom:1162.746667pt;}
.y14_c01266{bottom:1163.520000pt;}
.y15_c01266{bottom:1164.293333pt;}
.y12_c01266{bottom:1165.053333pt;}
.y18_c01266{bottom:1166.586667pt;}
.y13_c01266{bottom:1168.893333pt;}
.y11_c01266{bottom:1175.040000pt;}
.yb_c01266{bottom:1177.346667pt;}
.y10_c01266{bottom:1178.106667pt;}
.yd_c01266{bottom:1179.653333pt;}
.y9_c01266{bottom:1180.413333pt;}
.ya_c01266{bottom:1181.946667pt;}
.ye_c01266{bottom:1182.720000pt;}
.yf_c01266{bottom:1185.026667pt;}
.yc_c01266{bottom:1189.626667pt;}
.y1c7_c01266{bottom:1198.853333pt;}
.y8_c01266{bottom:1203.453333pt;}
.y3_c01266{bottom:1204.986667pt;}
.y1_c01266{bottom:1206.533333pt;}
.y5_c01266{bottom:1209.600000pt;}
.y2_c01266{bottom:1210.373333pt;}
.y6_c01266{bottom:1211.133333pt;}
.y4_c01266{bottom:1212.666667pt;}
.y7_c01266{bottom:1213.440000pt;}
.y1c4_c01266{bottom:1242.626667pt;}
.y1c3_c01266{bottom:1245.693333pt;}
.y1c6_c01266{bottom:1268.733333pt;}
.y1c1_c01266{bottom:1283.333333pt;}
.y1c0_c01266{bottom:1285.626667pt;}
.y1c2_c01266{bottom:1286.400000pt;}
.h8_c01266{height:2.764500pt;}
.h5_c01266{height:4.799479pt;}
.hc_c01266{height:5.519401pt;}
.h21_c01266{height:8.303099pt;}
.h1a_c01266{height:11.038802pt;}
.h1f_c01266{height:13.822500pt;}
.h1d_c01266{height:16.606198pt;}
.he_c01266{height:19.341901pt;}
.h1e_c01266{height:20.265469pt;}
.h20_c01266{height:22.125599pt;}
.h1b_c01266{height:24.861302pt;}
.h1c_c01266{height:27.645000pt;}
.h14_c01266{height:30.428698pt;}
.h18_c01266{height:33.164401pt;}
.h7_c01266{height:35.948099pt;}
.h22_c01266{height:38.683802pt;}
.h24_c01266{height:41.157865pt;}
.h23_c01266{height:41.467500pt;}
.h15_c01266{height:44.251198pt;}
.h12_c01266{height:46.986901pt;}
.hf_c01266{height:49.770599pt;}
.h13_c01266{height:52.506302pt;}
.h6_c01266{height:55.290000pt;}
.h2_c01266{height:58.073698pt;}
.h3_c01266{height:60.809401pt;}
.h25_c01266{height:62.960833pt;}
.h16_c01266{height:63.593099pt;}
.hd_c01266{height:66.328802pt;}
.ha_c01266{height:69.112500pt;}
.h17_c01266{height:71.896198pt;}
.h10_c01266{height:74.631901pt;}
.h19_c01266{height:77.415599pt;}
.h4_c01266{height:80.151302pt;}
.h9_c01266{height:82.935000pt;}
.hb_c01266{height:91.238099pt;}
.h11_c01266{height:99.541198pt;}
.h1_c01266{height:1350.000000pt;}
.h0_c01266{height:1350.146667pt;}
.w0_c01266{width:959.226667pt;}
.w1_c01266{width:959.333333pt;}
.x0_c01266{left:0.000000pt;}
.x3f_c01266{left:159.746667pt;}
.x50_c01266{left:168.186667pt;}
.xbb_c01266{left:174.333333pt;}
.x57_c01266{left:178.173333pt;}
.x118_c01266{left:180.480000pt;}
.xf1_c01266{left:184.320000pt;}
.x61_c01266{left:188.160000pt;}
.xf2_c01266{left:195.066667pt;}
.x10f_c01266{left:196.613333pt;}
.xb2_c01266{left:198.146667pt;}
.xd5_c01266{left:199.680000pt;}
.xe8_c01266{left:201.986667pt;}
.x58_c01266{left:203.520000pt;}
.xb3_c01266{left:205.826667pt;}
.x2a_c01266{left:207.360000pt;}
.x1c_c01266{left:208.893333pt;}
.x1_c01266{left:210.426667pt;}
.x9_c01266{left:212.733333pt;}
.x7d_c01266{left:214.266667pt;}
.x51_c01266{left:216.573333pt;}
.xf4_c01266{left:218.106667pt;}
.x85_c01266{left:219.653333pt;}
.x7e_c01266{left:221.186667pt;}
.x38_c01266{left:224.253333pt;}
.x71_c01266{left:225.786667pt;}
.xa6_c01266{left:227.333333pt;}
.x39_c01266{left:228.866667pt;}
.x15_c01266{left:233.466667pt;}
.xa_c01266{left:235.013333pt;}
.x9a_c01266{left:236.546667pt;}
.x101_c01266{left:238.853333pt;}
.x8f_c01266{left:240.386667pt;}
.xbd_c01266{left:243.453333pt;}
.x77_c01266{left:246.533333pt;}
.x2b_c01266{left:248.066667pt;}
.xe4_c01266{left:249.600000pt;}
.x90_c01266{left:251.906667pt;}
.x2c_c01266{left:254.213333pt;}
.xfd_c01266{left:255.746667pt;}
.x62_c01266{left:257.280000pt;}
.xa9_c01266{left:258.813333pt;}
.x97_c01266{left:260.346667pt;}
.x40_c01266{left:261.893333pt;}
.x2d_c01266{left:263.426667pt;}
.x1d_c01266{left:264.960000pt;}
.xe3_c01266{left:266.493333pt;}
.xbe_c01266{left:268.800000pt;}
.xb4_c01266{left:270.333333pt;}
.x91_c01266{left:271.866667pt;}
.xed_c01266{left:273.413333pt;}
.x63_c01266{left:274.946667pt;}
.x116_c01266{left:276.480000pt;}
.x98_c01266{left:278.013333pt;}
.xff_c01266{left:279.546667pt;}
.xee_c01266{left:281.093333pt;}
.xb5_c01266{left:282.626667pt;}
.xe9_c01266{left:284.160000pt;}
.x78_c01266{left:285.693333pt;}
.xd0_c01266{left:287.226667pt;}
.x117_c01266{left:288.773333pt;}
.x3a_c01266{left:293.373333pt;}
.x41_c01266{left:296.453333pt;}
.x1e_c01266{left:297.986667pt;}
.x16_c01266{left:300.293333pt;}
.xbf_c01266{left:303.360000pt;}
.x42_c01266{left:306.426667pt;}
.x110_c01266{left:307.973333pt;}
.x2e_c01266{left:310.266667pt;}
.x10a_c01266{left:311.813333pt;}
.xae_c01266{left:313.346667pt;}
.x1f_c01266{left:315.653333pt;}
.xb_c01266{left:317.946667pt;}
.xc6_c01266{left:319.493333pt;}
.xe0_c01266{left:322.560000pt;}
.xdd_c01266{left:324.093333pt;}
.xf8_c01266{left:326.400000pt;}
.x7f_c01266{left:327.933333pt;}
.x2_c01266{left:331.013333pt;}
.xa1_c01266{left:334.080000pt;}
.x106_c01266{left:335.613333pt;}
.x92_c01266{left:337.146667pt;}
.x102_c01266{left:340.226667pt;}
.x59_c01266{left:341.760000pt;}
.x79_c01266{left:344.066667pt;}
.x88_c01266{left:345.600000pt;}
.xef_c01266{left:347.133333pt;}
.x2f_c01266{left:348.666667pt;}
.x10b_c01266{left:350.973333pt;}
.x80_c01266{left:352.506667pt;}
.xd6_c01266{left:356.346667pt;}
.xc_c01266{left:358.653333pt;}
.x111_c01266{left:360.960000pt;}
.xea_c01266{left:363.266667pt;}
.x43_c01266{left:364.800000pt;}
.x17_c01266{left:367.866667pt;}
.xb6_c01266{left:370.173333pt;}
.x100_c01266{left:371.706667pt;}
.xce_c01266{left:374.786667pt;}
.xc0_c01266{left:377.853333pt;}
.xd8_c01266{left:380.160000pt;}
.xd1_c01266{left:383.226667pt;}
.xe1_c01266{left:384.773333pt;}
.x20_c01266{left:386.306667pt;}
.x113_c01266{left:387.840000pt;}
.x5a_c01266{left:389.373333pt;}
.x103_c01266{left:391.680000pt;}
.x72_c01266{left:393.213333pt;}
.xa2_c01266{left:396.293333pt;}
.xd7_c01266{left:400.133333pt;}
.x9b_c01266{left:401.666667pt;}
.xe7_c01266{left:403.973333pt;}
.xc9_c01266{left:406.266667pt;}
.x44_c01266{left:412.413333pt;}
.x30_c01266{left:413.946667pt;}
.x21_c01266{left:416.253333pt;}
.xde_c01266{left:418.560000pt;}
.x89_c01266{left:420.093333pt;}
.xf5_c01266{left:422.400000pt;}
.x10e_c01266{left:425.466667pt;}
.x93_c01266{left:430.080000pt;}
.x10c_c01266{left:435.453333pt;}
.x5b_c01266{left:437.760000pt;}
.xfe_c01266{left:439.293333pt;}
.xd2_c01266{left:440.826667pt;}
.xc1_c01266{left:442.373333pt;}
.xeb_c01266{left:443.906667pt;}
.x45_c01266{left:445.440000pt;}
.xb1_c01266{left:446.973333pt;}
.x3_c01266{left:449.280000pt;}
.x9c_c01266{left:450.813333pt;}
.xf3_c01266{left:453.120000pt;}
.xca_c01266{left:455.426667pt;}
.xb7_c01266{left:458.493333pt;}
.x22_c01266{left:460.800000pt;}
.x31_c01266{left:468.480000pt;}
.x7a_c01266{left:473.853333pt;}
.x32_c01266{left:475.386667pt;}
.xd_c01266{left:478.466667pt;}
.x81_c01266{left:480.000000pt;}
.xcb_c01266{left:481.533333pt;}
.x112_c01266{left:483.066667pt;}
.xaa_c01266{left:484.613333pt;}
.xfa_c01266{left:486.146667pt;}
.xe_c01266{left:487.680000pt;}
.x8a_c01266{left:490.746667pt;}
.xa7_c01266{left:492.293333pt;}
.xd9_c01266{left:493.826667pt;}
.x82_c01266{left:495.360000pt;}
.x73_c01266{left:497.666667pt;}
.x52_c01266{left:499.200000pt;}
.x33_c01266{left:500.733333pt;}
.x18_c01266{left:502.266667pt;}
.x46_c01266{left:503.813333pt;}
.x64_c01266{left:506.106667pt;}
.x107_c01266{left:507.653333pt;}
.xc2_c01266{left:509.946667pt;}
.x47_c01266{left:512.253333pt;}
.x114_c01266{left:515.333333pt;}
.x23_c01266{left:517.626667pt;}
.x104_c01266{left:519.173333pt;}
.xfb_c01266{left:520.706667pt;}
.xf9_c01266{left:522.240000pt;}
.x9d_c01266{left:526.080000pt;}
.x3b_c01266{left:528.386667pt;}
.x34_c01266{left:529.920000pt;}
.xf0_c01266{left:531.453333pt;}
.x53_c01266{left:532.986667pt;}
.x6c_c01266{left:536.066667pt;}
.xbc_c01266{left:537.600000pt;}
.xfc_c01266{left:539.133333pt;}
.xf_c01266{left:540.666667pt;}
.xb8_c01266{left:542.973333pt;}
.xda_c01266{left:544.506667pt;}
.xa3_c01266{left:546.053333pt;}
.x10_c01266{left:547.586667pt;}
.x65_c01266{left:549.120000pt;}
.xa8_c01266{left:550.653333pt;}
.x5c_c01266{left:552.960000pt;}
.xac_c01266{left:554.493333pt;}
.x6d_c01266{left:556.800000pt;}
.xe5_c01266{left:558.333333pt;}
.x24_c01266{left:559.866667pt;}
.x3c_c01266{left:562.946667pt;}
.x11_c01266{left:564.480000pt;}
.x9e_c01266{left:566.013333pt;}
.x66_c01266{left:567.546667pt;}
.xaf_c01266{left:569.853333pt;}
.x5d_c01266{left:572.160000pt;}
.x6e_c01266{left:573.693333pt;}
.xc3_c01266{left:575.226667pt;}
.xdb_c01266{left:576.773333pt;}
.x35_c01266{left:578.306667pt;}
.x4_c01266{left:582.146667pt;}
.x9f_c01266{left:584.453333pt;}
.xb9_c01266{left:586.746667pt;}
.xcc_c01266{left:588.293333pt;}
.x108_c01266{left:589.826667pt;}
.x5_c01266{left:591.360000pt;}
.xd3_c01266{left:593.666667pt;}
.x25_c01266{left:595.200000pt;}
.xe6_c01266{left:596.733333pt;}
.x83_c01266{left:599.040000pt;}
.x6f_c01266{left:601.346667pt;}
.xdc_c01266{left:602.880000pt;}
.x12_c01266{left:609.026667pt;}
.x48_c01266{left:610.560000pt;}
.x8b_c01266{left:612.093333pt;}
.x86_c01266{left:617.466667pt;}
.xa4_c01266{left:619.773333pt;}
.xf6_c01266{left:621.306667pt;}
.x49_c01266{left:625.920000pt;}
.x115_c01266{left:627.453333pt;}
.x36_c01266{left:629.760000pt;}
.xad_c01266{left:631.293333pt;}
.xc4_c01266{left:633.600000pt;}
.x10d_c01266{left:635.133333pt;}
.xcf_c01266{left:637.440000pt;}
.xa0_c01266{left:639.746667pt;}
.x3d_c01266{left:641.280000pt;}
.x5e_c01266{left:643.586667pt;}
.x109_c01266{left:646.653333pt;}
.x6_c01266{left:648.186667pt;}
.x4a_c01266{left:649.733333pt;}
.xab_c01266{left:652.026667pt;}
.xe2_c01266{left:653.573333pt;}
.x67_c01266{left:656.640000pt;}
.x13_c01266{left:658.946667pt;}
.x8c_c01266{left:662.013333pt;}
.x95_c01266{left:664.320000pt;}
.x26_c01266{left:665.853333pt;}
.x4b_c01266{left:668.160000pt;}
.xba_c01266{left:669.693333pt;}
.xc7_c01266{left:671.226667pt;}
.x27_c01266{left:672.773333pt;}
.x99_c01266{left:675.066667pt;}
.x54_c01266{left:676.613333pt;}
.x7_c01266{left:679.680000pt;}
.xec_c01266{left:681.986667pt;}
.x4c_c01266{left:683.520000pt;}
.x5f_c01266{left:686.586667pt;}
.x68_c01266{left:692.733333pt;}
.x84_c01266{left:694.266667pt;}
.x19_c01266{left:695.813333pt;}
.x69_c01266{left:698.106667pt;}
.x55_c01266{left:701.946667pt;}
.x4d_c01266{left:703.493333pt;}
.x28_c01266{left:705.786667pt;}
.x74_c01266{left:707.333333pt;}
.xc8_c01266{left:710.400000pt;}
.xb0_c01266{left:711.933333pt;}
.x96_c01266{left:713.466667pt;}
.x6a_c01266{left:715.013333pt;}
.x105_c01266{left:718.080000pt;}
.x1a_c01266{left:720.386667pt;}
.x4e_c01266{left:721.920000pt;}
.xa5_c01266{left:724.226667pt;}
.x7b_c01266{left:726.533333pt;}
.x60_c01266{left:730.373333pt;}
.x37_c01266{left:732.666667pt;}
.x70_c01266{left:734.973333pt;}
.x6b_c01266{left:738.053333pt;}
.x8d_c01266{left:741.120000pt;}
.x29_c01266{left:743.426667pt;}
.x7c_c01266{left:744.960000pt;}
.x94_c01266{left:747.266667pt;}
.x75_c01266{left:748.800000pt;}
.x1b_c01266{left:750.333333pt;}
.xdf_c01266{left:751.866667pt;}
.x8e_c01266{left:753.413333pt;}
.x56_c01266{left:758.013333pt;}
.x4f_c01266{left:759.546667pt;}
.xcd_c01266{left:761.093333pt;}
.x3e_c01266{left:762.626667pt;}
.x8_c01266{left:764.160000pt;}
.xf7_c01266{left:770.306667pt;}
.xc5_c01266{left:771.840000pt;}
.xd4_c01266{left:773.373333pt;}
.x76_c01266{left:775.680000pt;}
.x14_c01266{left:777.986667pt;}
.x87_c01266{left:785.666667pt;}
.x120_c01266{left:797.946667pt;}
.x11a_c01266{left:802.560000pt;}
.x121_c01266{left:804.093333pt;}
.x122_c01266{left:896.253333pt;}
.x119_c01266{left:903.173333pt;}
.x11b_c01266{left:914.693333pt;}
.x11d_c01266{left:917.760000pt;}
.x11c_c01266{left:920.826667pt;}
.x11e_c01266{left:926.213333pt;}
.x11f_c01266{left:935.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa4fbdbf9bbe0935bf6bea11.woff2')format("woff");}.ff1_c01267{font-family:ff1_c01267;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4b_c01267{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m208_c01267{transform:matrix(0.034100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034100,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01267{transform:matrix(0.040175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040175,0.000000,0.000000,0.250000,0,0);}
.mea_c01267{transform:matrix(0.042100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042100,0.000000,0.000000,0.250000,0,0);}
.m14d_c01267{transform:matrix(0.052700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052700,0.000000,0.000000,0.250000,0,0);}
.m5c_c01267{transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);}
.m1e8_c01267{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01267{transform:matrix(0.061125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061125,0.000000,0.000000,0.250000,0,0);}
.mae_c01267{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01267{transform:matrix(0.090200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090200,0.000000,0.000000,0.250000,0,0);}
.m19a_c01267{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m1f1_c01267{transform:matrix(0.093625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093625,0.000000,0.000000,0.250000,0,0);}
.m14e_c01267{transform:matrix(0.095325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095325,0.000000,0.000000,0.250000,0,0);}
.m60_c01267{transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01267{transform:matrix(0.096350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096350,0.000000,0.000000,0.250000,0,0);}
.m18a_c01267{transform:matrix(0.098125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098125,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01267{transform:matrix(0.098725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098725,0.000000,0.000000,0.250000,0,0);}
.m20f_c01267{transform:matrix(0.098900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098900,0.000000,0.000000,0.250000,0,0);}
.m128_c01267{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);}
.m218_c01267{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m1eb_c01267{transform:matrix(0.100400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100400,0.000000,0.000000,0.250000,0,0);}
.m84_c01267{transform:matrix(0.100775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100775,0.000000,0.000000,0.250000,0,0);}
.me4_c01267{transform:matrix(0.101050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101050,0.000000,0.000000,0.250000,0,0);}
.m189_c01267{transform:matrix(0.102200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102200,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01267{transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);}
.m184_c01267{transform:matrix(0.104625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104625,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01267{transform:matrix(0.104725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104725,0.000000,0.000000,0.250000,0,0);}
.m129_c01267{transform:matrix(0.104800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104800,0.000000,0.000000,0.250000,0,0);}
.m5b_c01267{transform:matrix(0.104950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104950,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01267{transform:matrix(0.105150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105150,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01267{transform:matrix(0.105325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105325,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01267{transform:matrix(0.105675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105675,0.000000,0.000000,0.250000,0,0);}
.m1be_c01267{transform:matrix(0.106000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106000,0.000000,0.000000,0.250000,0,0);}
.m19f_c01267{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m137_c01267{transform:matrix(0.107525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107525,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01267{transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);}
.m16_c01267{transform:matrix(0.109325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109325,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01267{transform:matrix(0.109575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109575,0.000000,0.000000,0.250000,0,0);}
.m91_c01267{transform:matrix(0.109725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109725,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01267{transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01267{transform:matrix(0.112225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112225,0.000000,0.000000,0.250000,0,0);}
.m180_c01267{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m124_c01267{transform:matrix(0.113175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113175,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01267{transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01267{transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);}
.mf9_c01267{transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01267{transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01267{transform:matrix(0.116025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116025,0.000000,0.000000,0.250000,0,0);}
.m11a_c01267{transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);}
.m81_c01267{transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116250,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01267{transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);}
.m4e_c01267{transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01267{transform:matrix(0.117575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117575,0.000000,0.000000,0.250000,0,0);}
.mdf_c01267{transform:matrix(0.117800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117800,0.000000,0.000000,0.250000,0,0);}
.mcc_c01267{transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);}
.m182_c01267{transform:matrix(0.119000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119000,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01267{transform:matrix(0.119550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119550,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01267{transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);}
.m178_c01267{transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);}
.ma4_c01267{transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01267{transform:matrix(0.120900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120900,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01267{transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);}
.m5a_c01267{transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);}
.m123_c01267{transform:matrix(0.121775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121775,0.000000,0.000000,0.250000,0,0);}
.m187_c01267{transform:matrix(0.122025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122025,0.000000,0.000000,0.250000,0,0);}
.m190_c01267{transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);}
.m1f_c01267{transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);}
.m1ef_c01267{transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123150,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01267{transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01267{transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);}
.mb0_c01267{transform:matrix(0.123875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123875,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01267{transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);}
.m181_c01267{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m158_c01267{transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);}
.m1ea_c01267{transform:matrix(0.125850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125850,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01267{transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);}
.m4a_c01267{transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);}
.me3_c01267{transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);}
.m191_c01267{transform:matrix(0.126800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126800,0.000000,0.000000,0.250000,0,0);}
.m15a_c01267{transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);}
.m171_c01267{transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);}
.m145_c01267{transform:matrix(0.127025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127025,0.000000,0.000000,0.250000,0,0);}
.m153_c01267{transform:matrix(0.127275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127275,0.000000,0.000000,0.250000,0,0);}
.m183_c01267{transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01267{transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);}
.mc8_c01267{transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);}
.m161_c01267{transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);}
.m147_c01267{transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);}
.m133_c01267{transform:matrix(0.128725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128725,0.000000,0.000000,0.250000,0,0);}
.m66_c01267{transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);}
.m135_c01267{transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);}
.m17a_c01267{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m17c_c01267{transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);}
.m78_c01267{transform:matrix(0.129775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129775,0.000000,0.000000,0.250000,0,0);}
.m64_c01267{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);}
.m185_c01267{transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);}
.mb8_c01267{transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);}
.m134_c01267{transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);}
.m215_c01267{transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01267{transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);}
.m188_c01267{transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);}
.m11c_c01267{transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);}
.m179_c01267{transform:matrix(0.132600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132600,0.000000,0.000000,0.250000,0,0);}
.m1ff_c01267{transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);}
.me5_c01267{transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01267{transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);}
.m26_c01267{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.m68_c01267{transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);}
.m151_c01267{transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);}
.m1fe_c01267{transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);}
.m159_c01267{transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134875,0.000000,0.000000,0.250000,0,0);}
.m17e_c01267{transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01267{transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);}
.m21_c01267{transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);}
.m136_c01267{transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);}
.m18f_c01267{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);}
.m1ba_c01267{transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);}
.m7a_c01267{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m10c_c01267{transform:matrix(0.136700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136700,0.000000,0.000000,0.250000,0,0);}
.m67_c01267{transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);}
.m1ed_c01267{transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);}
.m170_c01267{transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137125,0.000000,0.000000,0.250000,0,0);}
.mc5_c01267{transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);}
.mf7_c01267{transform:matrix(0.137600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137600,0.000000,0.000000,0.250000,0,0);}
.me1_c01267{transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);}
.m1f5_c01267{transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);}
.m157_c01267{transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);}
.m125_c01267{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01267{transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01267{transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);}
.me0_c01267{transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);}
.ma5_c01267{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.ma3_c01267{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.me2_c01267{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);}
.m23_c01267{transform:matrix(0.141850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141850,0.000000,0.000000,0.250000,0,0);}
.m120_c01267{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m11f_c01267{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m56_c01267{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m13_c01267{transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);}
.mbe_c01267{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.mda_c01267{transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);}
.m154_c01267{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m65_c01267{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.m148_c01267{transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);}
.m205_c01267{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);}
.m1_c01267{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc7_c01267{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.m207_c01267{transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);}
.ma6_c01267{transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);}
.mb9_c01267{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);}
.m132_c01267{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.m16b_c01267{transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);}
.mbc_c01267{transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);}
.m46_c01267{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);}
.m203_c01267{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01267{transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);}
.mbb_c01267{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);}
.m206_c01267{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);}
.m201_c01267{transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);}
.m168_c01267{transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);}
.m6c_c01267{transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);}
.md6_c01267{transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);}
.m18e_c01267{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);}
.m11b_c01267{transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);}
.m87_c01267{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);}
.m1d4_c01267{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);}
.m1c8_c01267{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m62_c01267{transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);}
.m173_c01267{transform:matrix(0.150350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150350,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01267{transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);}
.m17f_c01267{transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);}
.mde_c01267{transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);}
.m172_c01267{transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01267{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);}
.mc3_c01267{transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);}
.m127_c01267{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01267{transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);}
.m121_c01267{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);}
.m4f_c01267{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m150_c01267{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m48_c01267{transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);}
.mc4_c01267{transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);}
.m177_c01267{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m45_c01267{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.m12a_c01267{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01267{transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);}
.mfd_c01267{transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);}
.m82_c01267{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.m110_c01267{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.m140_c01267{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);}
.m1fc_c01267{transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);}
.m21e_c01267{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.m212_c01267{transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);}
.m152_c01267{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);}
.m1d_c01267{transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);}
.m155_c01267{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01267{transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);}
.m1f6_c01267{transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);}
.m1f7_c01267{transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);}
.mfc_c01267{transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);}
.m12d_c01267{transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);}
.m21f_c01267{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);}
.mad_c01267{transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);}
.m18b_c01267{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.m14f_c01267{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.m4d_c01267{transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161925,0.000000,0.000000,0.250000,0,0);}
.m175_c01267{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);}
.maf_c01267{transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);}
.med_c01267{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.m146_c01267{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.m17b_c01267{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01267{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m57_c01267{transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);}
.m211_c01267{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);}
.m32_c01267{transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);}
.m77_c01267{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m126_c01267{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m17d_c01267{transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);}
.m1ee_c01267{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.m9f_c01267{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.me6_c01267{transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);}
.m166_c01267{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m15f_c01267{transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167775,0.000000,0.000000,0.250000,0,0);}
.mf8_c01267{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01267{transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);}
.m47_c01267{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.mc0_c01267{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);}
.mb5_c01267{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.m10d_c01267{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1f0_c01267{transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);}
.m193_c01267{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.m5e_c01267{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.mf6_c01267{transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);}
.m36_c01267{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);}
.m167_c01267{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);}
.m186_c01267{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);}
.m160_c01267{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01267{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);}
.mca_c01267{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);}
.m213_c01267{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01267{transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);}
.mcd_c01267{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.mb2_c01267{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.me_c01267{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m102_c01267{transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);}
.m118_c01267{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);}
.m192_c01267{transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);}
.m18d_c01267{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.m96_c01267{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.m4c_c01267{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);}
.m1b_c01267{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m21a_c01267{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m119_c01267{transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);}
.m209_c01267{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);}
.m1c_c01267{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.m19_c01267{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);}
.m1b3_c01267{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m16d_c01267{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);}
.m1a0_c01267{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);}
.m7f_c01267{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01267{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);}
.m22_c01267{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);}
.m16f_c01267{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);}
.m176_c01267{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m1fd_c01267{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.m9e_c01267{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);}
.me8_c01267{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.m18c_c01267{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);}
.mc2_c01267{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m94_c01267{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m12e_c01267{transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);}
.md1_c01267{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m139_c01267{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m223_c01267{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);}
.m7e_c01267{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);}
.m5d_c01267{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m54_c01267{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.mb1_c01267{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);}
.m216_c01267{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m174_c01267{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);}
.me7_c01267{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.m13e_c01267{transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);}
.mba_c01267{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);}
.m7c_c01267{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);}
.m12c_c01267{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01267{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.mfa_c01267{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m222_c01267{transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);}
.m80_c01267{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);}
.m76_c01267{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);}
.mbd_c01267{transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);}
.m21c_c01267{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.m1f8_c01267{transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01267{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);}
.m210_c01267{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m13a_c01267{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01267{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m109_c01267{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);}
.m10_c01267{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m116_c01267{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.m14_c01267{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m113_c01267{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);}
.m108_c01267{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m1e7_c01267{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.m219_c01267{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mdd_c01267{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);}
.m144_c01267{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.mb_c01267{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m15c_c01267{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m9b_c01267{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.m9a_c01267{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);}
.m15d_c01267{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m99_c01267{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.mf2_c01267{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);}
.m1a6_c01267{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);}
.m44_c01267{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);}
.m16e_c01267{transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);}
.m63_c01267{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m122_c01267{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.mff_c01267{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m9d_c01267{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m169_c01267{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);}
.m107_c01267{transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);}
.m25_c01267{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m149_c01267{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01267{transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);}
.m163_c01267{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m79_c01267{transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);}
.m131_c01267{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.ma1_c01267{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);}
.md8_c01267{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m100_c01267{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);}
.m14b_c01267{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m200_c01267{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.mef_c01267{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m15b_c01267{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.mb7_c01267{transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);}
.mac_c01267{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.m101_c01267{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.m52_c01267{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);}
.m1e_c01267{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);}
.m21b_c01267{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mf_c01267{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);}
.m95_c01267{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);}
.m1d9_c01267{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.md2_c01267{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.mec_c01267{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m3d_c01267{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);}
.m195_c01267{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.m220_c01267{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);}
.m5f_c01267{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.mcf_c01267{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m114_c01267{transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);}
.m7_c01267{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.md4_c01267{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);}
.m31_c01267{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m15e_c01267{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.m112_c01267{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m6b_c01267{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01267{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m225_c01267{transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);}
.mc1_c01267{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m10f_c01267{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);}
.m1fb_c01267{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.mf5_c01267{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m196_c01267{transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);}
.m83_c01267{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.mab_c01267{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.m38_c01267{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);}
.m73_c01267{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.m20a_c01267{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);}
.m1c2_c01267{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.m8e_c01267{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m61_c01267{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.m72_c01267{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.md9_c01267{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m164_c01267{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);}
.m49_c01267{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);}
.m1db_c01267{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);}
.m30_c01267{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01267{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m20c_c01267{transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);}
.m202_c01267{transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);}
.mfe_c01267{transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);}
.m2c_c01267{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.m3a_c01267{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);}
.m12b_c01267{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m14c_c01267{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m138_c01267{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);}
.m1cb_c01267{transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);}
.mf3_c01267{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);}
.m98_c01267{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m10e_c01267{transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);}
.m41_c01267{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m224_c01267{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);}
.m1a_c01267{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);}
.m4_c01267{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);}
.m1e9_c01267{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);}
.m104_c01267{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m6f_c01267{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);}
.mf1_c01267{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.m43_c01267{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01267{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.m9_c01267{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.ma9_c01267{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);}
.m2a_c01267{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m71_c01267{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m6d_c01267{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);}
.m13c_c01267{transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);}
.ma7_c01267{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);}
.m11d_c01267{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);}
.m117_c01267{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.m16a_c01267{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.m221_c01267{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);}
.m3f_c01267{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);}
.m7b_c01267{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);}
.m20e_c01267{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);}
.m97_c01267{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);}
.m58_c01267{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.mcb_c01267{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);}
.m93_c01267{transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);}
.mdc_c01267{transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);}
.m2d_c01267{transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);}
.m156_c01267{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);}
.m11_c01267{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);}
.m20d_c01267{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m1af_c01267{transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);}
.md0_c01267{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);}
.ma2_c01267{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);}
.m13b_c01267{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m194_c01267{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);}
.m50_c01267{transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);}
.mf4_c01267{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);}
.m29_c01267{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);}
.me9_c01267{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m217_c01267{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m20b_c01267{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);}
.m92_c01267{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m10b_c01267{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);}
.m74_c01267{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);}
.m1e6_c01267{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);}
.m19c_c01267{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.md3_c01267{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);}
.m1a7_c01267{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m18_c01267{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);}
.m35_c01267{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8_c01267{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m42_c01267{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);}
.m70_c01267{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);}
.mf0_c01267{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);}
.md7_c01267{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);}
.mbf_c01267{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m40_c01267{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m51_c01267{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7d_c01267{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);}
.m106_c01267{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m34_c01267{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);}
.m8d_c01267{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);}
.m2b_c01267{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01267{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);}
.md_c01267{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m130_c01267{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m55_c01267{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);}
.m12_c01267{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11e_c01267{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);}
.m17_c01267{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);}
.m28_c01267{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m39_c01267{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m19b_c01267{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);}
.m197_c01267{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01267{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m27_c01267{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);}
.ma_c01267{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1da_c01267{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m24_c01267{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m37_c01267{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m198_c01267{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01267{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc_c01267{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01267{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mee_c01267{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);}
.mc6_c01267{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb3_c01267{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01267{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13f_c01267{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m227_c01267{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);}
.m75_c01267{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);}
.m3c_c01267{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mce_c01267{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01267{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_c01267{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m69_c01267{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m86_c01267{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);}
.m8a_c01267{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m15_c01267{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m16c_c01267{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mfb_c01267{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m111_c01267{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m20_c01267{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.meb_c01267{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mdb_c01267{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);}
.m1ce_c01267{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);}
.m53_c01267{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m21d_c01267{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);}
.m1df_c01267{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.maa_c01267{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);}
.ma8_c01267{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c01267{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m165_c01267{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1de_c01267{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);}
.m143_c01267{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc9_c01267{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m33_c01267{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m0_c01267{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01267{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m12f_c01267{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m13d_c01267{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m103_c01267{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);}
.mb6_c01267{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m204_c01267{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01267{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01267{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01267{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1f4_c01267{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01267{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);}
.m14a_c01267{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m214_c01267{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m59_c01267{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m105_c01267{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m85_c01267{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m90_c01267{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m162_c01267{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m19e_c01267{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m89_c01267{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m115_c01267{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m1f3_c01267{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m1f9_c01267{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.ma0_c01267{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.mb4_c01267{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.md5_c01267{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m88_c01267{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.m19d_c01267{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.m141_c01267{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.m1f2_c01267{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.m226_c01267{transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);}
.m10a_c01267{transform:matrix(1.300000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.300000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.300000,0.000000,0.000000,0.250000,0,0);}
.m5_c01267{transform:matrix(1.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.330000,0.000000,0.000000,0.250000,0,0);}
.m3_c01267{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01267{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m1fa_c01267{transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);}
.m142_c01267{transform:matrix(1.957500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.957500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.957500,0.000000,0.000000,0.250000,0,0);}
.m199_c01267{transform:matrix(2.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.575000,0.000000,0.000000,0.250000,0,0);}
.v1_c01267{vertical-align:-3.480000px;}
.v0_c01267{vertical-align:0.000000px;}
.ls1_c01267{letter-spacing:0.000000px;}
.ls0_c01267{letter-spacing:55.416000px;}
.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:-16.723568px;}
.ws1_c01267{word-spacing:0.000000px;}
.fc0_c01267{color:transparent;}
.fs1a_c01267{font-size:3.456000px;}
.fs18_c01267{font-size:6.000000px;}
.fs1_c01267{font-size:6.900000px;}
.fs3_c01267{font-size:10.380000px;}
.fs1c_c01267{font-size:13.800000px;}
.fs0_c01267{font-size:17.280000px;}
.fs2_c01267{font-size:20.760000px;}
.fs16_c01267{font-size:24.180000px;}
.fs4_c01267{font-size:27.660000px;}
.fs1f_c01267{font-size:31.080000px;}
.fs13_c01267{font-size:34.560000px;}
.fs20_c01267{font-size:38.040000px;}
.fs1b_c01267{font-size:41.460000px;}
.fsf_c01267{font-size:44.940000px;}
.fs19_c01267{font-size:48.360000px;}
.fs5_c01267{font-size:51.840000px;}
.fs10_c01267{font-size:55.320000px;}
.fse_c01267{font-size:58.740000px;}
.fs14_c01267{font-size:62.220000px;}
.fs15_c01267{font-size:65.640000px;}
.fsd_c01267{font-size:69.120000px;}
.fs9_c01267{font-size:72.600000px;}
.fs17_c01267{font-size:76.020000px;}
.fsc_c01267{font-size:79.500000px;}
.fs7_c01267{font-size:82.920000px;}
.fs11_c01267{font-size:86.400000px;}
.fs6_c01267{font-size:89.880000px;}
.fs8_c01267{font-size:93.300000px;}
.fsb_c01267{font-size:96.780000px;}
.fsa_c01267{font-size:100.200000px;}
.fs12_c01267{font-size:103.680000px;}
.fs21_c01267{font-size:107.160000px;}
.fs1e_c01267{font-size:110.580000px;}
.fs22_c01267{font-size:114.060000px;}
.fs1d_c01267{font-size:127.860000px;}
.y0_c01267{bottom:0.000000px;}
.y1b3_c01267{bottom:184.890000px;}
.y1b2_c01267{bottom:189.210000px;}
.y1ae_c01267{bottom:190.950000px;}
.y1af_c01267{bottom:195.270000px;}
.y1ad_c01267{bottom:196.125000px;}
.y1b0_c01267{bottom:199.590000px;}
.y1b1_c01267{bottom:201.315000px;}
.y1ac_c01267{bottom:202.170000px;}
.y1ab_c01267{bottom:203.910000px;}
.y1aa_c01267{bottom:204.765000px;}
.y1a4_c01267{bottom:205.635000px;}
.y1a6_c01267{bottom:206.490000px;}
.y1a5_c01267{bottom:207.360000px;}
.y1a8_c01267{bottom:209.085000px;}
.y1a7_c01267{bottom:209.955000px;}
.y1a9_c01267{bottom:210.810000px;}
.y1a0_c01267{bottom:226.365000px;}
.y199_c01267{bottom:227.235000px;}
.y19c_c01267{bottom:228.090000px;}
.y19f_c01267{bottom:228.960000px;}
.y19d_c01267{bottom:229.830000px;}
.y198_c01267{bottom:230.685000px;}
.y19a_c01267{bottom:232.410000px;}
.y19b_c01267{bottom:234.150000px;}
.y1a1_c01267{bottom:235.875000px;}
.y19e_c01267{bottom:236.730000px;}
.y1a2_c01267{bottom:238.470000px;}
.y1a3_c01267{bottom:241.920000px;}
.y195_c01267{bottom:247.965000px;}
.y193_c01267{bottom:248.835000px;}
.y192_c01267{bottom:249.690000px;}
.y196_c01267{bottom:250.560000px;}
.y194_c01267{bottom:251.430000px;}
.y191_c01267{bottom:252.285000px;}
.y197_c01267{bottom:261.795000px;}
.y18e_c01267{bottom:265.245000px;}
.y18d_c01267{bottom:267.840000px;}
.y18c_c01267{bottom:268.710000px;}
.y18b_c01267{bottom:269.565000px;}
.y189_c01267{bottom:270.435000px;}
.y18a_c01267{bottom:275.610000px;}
.y18f_c01267{bottom:283.395000px;}
.y190_c01267{bottom:285.120000px;}
.y186_c01267{bottom:287.715000px;}
.y184_c01267{bottom:288.570000px;}
.y187_c01267{bottom:290.310000px;}
.y188_c01267{bottom:291.165000px;}
.y183_c01267{bottom:292.035000px;}
.y185_c01267{bottom:292.890000px;}
.y17a_c01267{bottom:301.530000px;}
.y17e_c01267{bottom:303.270000px;}
.y17d_c01267{bottom:304.125000px;}
.y17f_c01267{bottom:307.590000px;}
.y17b_c01267{bottom:308.445000px;}
.y182_c01267{bottom:310.170000px;}
.y17c_c01267{bottom:312.765000px;}
.y181_c01267{bottom:317.955000px;}
.y180_c01267{bottom:324.870000px;}
.y172_c01267{bottom:326.595000px;}
.y178_c01267{bottom:327.450000px;}
.y173_c01267{bottom:328.320000px;}
.y179_c01267{bottom:329.190000px;}
.y177_c01267{bottom:330.045000px;}
.y175_c01267{bottom:330.915000px;}
.y174_c01267{bottom:332.640000px;}
.y176_c01267{bottom:338.685000px;}
.y16f_c01267{bottom:347.325000px;}
.y16b_c01267{bottom:349.050000px;}
.y16e_c01267{bottom:349.920000px;}
.y16a_c01267{bottom:350.790000px;}
.y16c_c01267{bottom:352.515000px;}
.y170_c01267{bottom:354.240000px;}
.y16d_c01267{bottom:357.690000px;}
.y171_c01267{bottom:358.560000px;}
.y167_c01267{bottom:363.750000px;}
.y168_c01267{bottom:364.605000px;}
.y163_c01267{bottom:365.475000px;}
.y164_c01267{bottom:368.070000px;}
.y166_c01267{bottom:371.520000px;}
.y169_c01267{bottom:373.245000px;}
.y165_c01267{bottom:378.435000px;}
.y15e_c01267{bottom:385.350000px;}
.y15d_c01267{bottom:386.205000px;}
.y160_c01267{bottom:388.800000px;}
.y161_c01267{bottom:389.670000px;}
.y15f_c01267{bottom:392.250000px;}
.y162_c01267{bottom:393.990000px;}
.y158_c01267{bottom:403.485000px;}
.y15c_c01267{bottom:405.210000px;}
.y15a_c01267{bottom:406.950000px;}
.y15b_c01267{bottom:408.675000px;}
.y159_c01267{bottom:409.530000px;}
.y156_c01267{bottom:423.360000px;}
.y157_c01267{bottom:425.085000px;}
.y151_c01267{bottom:425.955000px;}
.y155_c01267{bottom:426.810000px;}
.y152_c01267{bottom:429.405000px;}
.y153_c01267{bottom:434.595000px;}
.y154_c01267{bottom:438.045000px;}
.y14a_c01267{bottom:447.555000px;}
.y14c_c01267{bottom:449.280000px;}
.y14b_c01267{bottom:450.150000px;}
.y149_c01267{bottom:451.005000px;}
.y14e_c01267{bottom:452.730000px;}
.y150_c01267{bottom:453.600000px;}
.y14f_c01267{bottom:454.470000px;}
.y14d_c01267{bottom:458.790000px;}
.y145_c01267{bottom:468.285000px;}
.y143_c01267{bottom:469.155000px;}
.y146_c01267{bottom:470.010000px;}
.y148_c01267{bottom:470.880000px;}
.y142_c01267{bottom:471.750000px;}
.y147_c01267{bottom:472.605000px;}
.y13e_c01267{bottom:474.330000px;}
.y13f_c01267{bottom:475.200000px;}
.y144_c01267{bottom:476.925000px;}
.y141_c01267{bottom:478.650000px;}
.y13b_c01267{bottom:481.245000px;}
.y140_c01267{bottom:482.115000px;}
.y13c_c01267{bottom:482.970000px;}
.y13a_c01267{bottom:483.840000px;}
.y138_c01267{bottom:484.710000px;}
.y13d_c01267{bottom:485.565000px;}
.y136_c01267{bottom:486.435000px;}
.y139_c01267{bottom:487.290000px;}
.y137_c01267{bottom:488.160000px;}
.y131_c01267{bottom:489.030000px;}
.y130_c01267{bottom:489.885000px;}
.y133_c01267{bottom:491.610000px;}
.y134_c01267{bottom:492.480000px;}
.y132_c01267{bottom:493.350000px;}
.y135_c01267{bottom:495.075000px;}
.y12f_c01267{bottom:504.570000px;}
.y12c_c01267{bottom:505.440000px;}
.y12d_c01267{bottom:506.310000px;}
.y12b_c01267{bottom:507.165000px;}
.y12e_c01267{bottom:508.890000px;}
.y12a_c01267{bottom:510.630000px;}
.y126_c01267{bottom:524.445000px;}
.y125_c01267{bottom:525.315000px;}
.y127_c01267{bottom:527.910000px;}
.y124_c01267{bottom:528.765000px;}
.y128_c01267{bottom:530.490000px;}
.y129_c01267{bottom:541.725000px;}
.y11f_c01267{bottom:547.770000px;}
.y121_c01267{bottom:548.640000px;}
.y122_c01267{bottom:549.510000px;}
.y120_c01267{bottom:550.365000px;}
.y11e_c01267{bottom:551.235000px;}
.y123_c01267{bottom:566.790000px;}
.y119_c01267{bottom:570.240000px;}
.y11b_c01267{bottom:571.110000px;}
.y11c_c01267{bottom:573.690000px;}
.y11a_c01267{bottom:587.520000px;}
.y11d_c01267{bottom:590.115000px;}
.y116_c01267{bottom:590.970000px;}
.y111_c01267{bottom:593.565000px;}
.y112_c01267{bottom:594.435000px;}
.y117_c01267{bottom:595.290000px;}
.y114_c01267{bottom:596.160000px;}
.y115_c01267{bottom:597.030000px;}
.y113_c01267{bottom:599.610000px;}
.y118_c01267{bottom:603.075000px;}
.y10d_c01267{bottom:610.845000px;}
.y10c_c01267{bottom:611.715000px;}
.y10e_c01267{bottom:614.310000px;}
.y10b_c01267{bottom:616.035000px;}
.y110_c01267{bottom:617.760000px;}
.y10f_c01267{bottom:618.630000px;}
.y108_c01267{bottom:630.720000px;}
.y109_c01267{bottom:632.445000px;}
.y10a_c01267{bottom:634.170000px;}
.yff_c01267{bottom:647.130000px;}
.y104_c01267{bottom:648.000000px;}
.y101_c01267{bottom:648.870000px;}
.y106_c01267{bottom:649.725000px;}
.y102_c01267{bottom:650.595000px;}
.y100_c01267{bottom:651.450000px;}
.y107_c01267{bottom:655.770000px;}
.y105_c01267{bottom:658.365000px;}
.y103_c01267{bottom:661.830000px;}
.yfa_c01267{bottom:672.195000px;}
.yfd_c01267{bottom:673.050000px;}
.yf7_c01267{bottom:673.920000px;}
.yfb_c01267{bottom:674.790000px;}
.yfe_c01267{bottom:676.515000px;}
.yf9_c01267{bottom:677.370000px;}
.yfc_c01267{bottom:678.240000px;}
.yf8_c01267{bottom:679.110000px;}
.yef_c01267{bottom:697.245000px;}
.yf2_c01267{bottom:698.115000px;}
.yf0_c01267{bottom:698.970000px;}
.yf1_c01267{bottom:699.840000px;}
.yf5_c01267{bottom:705.885000px;}
.yf4_c01267{bottom:707.610000px;}
.yf3_c01267{bottom:709.350000px;}
.yf6_c01267{bottom:711.930000px;}
.yee_c01267{bottom:712.800000px;}
.yea_c01267{bottom:713.670000px;}
.yeb_c01267{bottom:714.525000px;}
.yed_c01267{bottom:715.395000px;}
.yec_c01267{bottom:717.990000px;}
.ye6_c01267{bottom:727.485000px;}
.ye5_c01267{bottom:729.210000px;}
.ye9_c01267{bottom:730.950000px;}
.ye8_c01267{bottom:734.400000px;}
.ye7_c01267{bottom:738.720000px;}
.ydf_c01267{bottom:751.680000px;}
.ydb_c01267{bottom:752.550000px;}
.ye3_c01267{bottom:753.405000px;}
.ydd_c01267{bottom:755.130000px;}
.ydc_c01267{bottom:756.000000px;}
.ye2_c01267{bottom:756.870000px;}
.yde_c01267{bottom:757.725000px;}
.ye1_c01267{bottom:758.595000px;}
.ye0_c01267{bottom:759.450000px;}
.ye4_c01267{bottom:768.090000px;}
.yd6_c01267{bottom:768.960000px;}
.yd8_c01267{bottom:769.830000px;}
.yda_c01267{bottom:771.555000px;}
.yd7_c01267{bottom:772.410000px;}
.yd9_c01267{bottom:778.470000px;}
.yd1_c01267{bottom:788.835000px;}
.yd3_c01267{bottom:789.690000px;}
.yd2_c01267{bottom:792.285000px;}
.yd4_c01267{bottom:793.155000px;}
.yd0_c01267{bottom:794.010000px;}
.ycf_c01267{bottom:796.605000px;}
.yd5_c01267{bottom:798.330000px;}
.ycd_c01267{bottom:812.160000px;}
.yc7_c01267{bottom:813.030000px;}
.yca_c01267{bottom:813.885000px;}
.ycc_c01267{bottom:815.610000px;}
.yce_c01267{bottom:816.480000px;}
.yc8_c01267{bottom:817.350000px;}
.yc6_c01267{bottom:818.205000px;}
.ycb_c01267{bottom:819.075000px;}
.yc9_c01267{bottom:819.930000px;}
.yc2_c01267{bottom:832.890000px;}
.yc1_c01267{bottom:833.760000px;}
.yc4_c01267{bottom:834.630000px;}
.yc3_c01267{bottom:835.485000px;}
.yc5_c01267{bottom:838.950000px;}
.ybc_c01267{bottom:852.765000px;}
.ybb_c01267{bottom:853.635000px;}
.ybf_c01267{bottom:854.490000px;}
.yc0_c01267{bottom:855.360000px;}
.ybe_c01267{bottom:858.810000px;}
.ybd_c01267{bottom:859.680000px;}
.yb8_c01267{bottom:871.770000px;}
.yb6_c01267{bottom:872.640000px;}
.yb9_c01267{bottom:875.235000px;}
.yba_c01267{bottom:876.960000px;}
.yb7_c01267{bottom:877.830000px;}
.yb5_c01267{bottom:893.370000px;}
.yb0_c01267{bottom:894.240000px;}
.yaf_c01267{bottom:895.110000px;}
.yb1_c01267{bottom:895.965000px;}
.yb2_c01267{bottom:896.835000px;}
.yb4_c01267{bottom:897.690000px;}
.yb3_c01267{bottom:898.560000px;}
.yab_c01267{bottom:914.115000px;}
.ya8_c01267{bottom:914.970000px;}
.ya9_c01267{bottom:915.840000px;}
.yad_c01267{bottom:916.710000px;}
.yae_c01267{bottom:917.565000px;}
.yac_c01267{bottom:919.290000px;}
.yaa_c01267{bottom:921.030000px;}
.ya3_c01267{bottom:929.670000px;}
.ya2_c01267{bottom:930.525000px;}
.ya7_c01267{bottom:931.395000px;}
.ya4_c01267{bottom:933.120000px;}
.ya5_c01267{bottom:934.845000px;}
.ya1_c01267{bottom:935.715000px;}
.ya6_c01267{bottom:953.850000px;}
.y9b_c01267{bottom:954.720000px;}
.y9c_c01267{bottom:955.590000px;}
.y5_c01267{bottom:956.445000px;}
.y9f_c01267{bottom:957.315000px;}
.y4_c01267{bottom:958.170000px;}
.y9d_c01267{bottom:960.765000px;}
.ya0_c01267{bottom:961.635000px;}
.y9e_c01267{bottom:973.725000px;}
.y94_c01267{bottom:975.450000px;}
.y93_c01267{bottom:976.320000px;}
.y98_c01267{bottom:977.190000px;}
.y99_c01267{bottom:978.045000px;}
.y95_c01267{bottom:978.915000px;}
.y96_c01267{bottom:981.510000px;}
.y97_c01267{bottom:983.235000px;}
.y9a_c01267{bottom:984.960000px;}
.y8d_c01267{bottom:990.150000px;}
.y90_c01267{bottom:991.875000px;}
.y92_c01267{bottom:992.730000px;}
.y91_c01267{bottom:994.470000px;}
.y8e_c01267{bottom:998.790000px;}
.y8f_c01267{bottom:999.645000px;}
.y86_c01267{bottom:1013.475000px;}
.y89_c01267{bottom:1014.330000px;}
.y87_c01267{bottom:1015.200000px;}
.y8b_c01267{bottom:1016.070000px;}
.y8a_c01267{bottom:1016.925000px;}
.y88_c01267{bottom:1018.650000px;}
.y8c_c01267{bottom:1020.390000px;}
.y80_c01267{bottom:1035.075000px;}
.y7e_c01267{bottom:1035.930000px;}
.y7d_c01267{bottom:1036.800000px;}
.y82_c01267{bottom:1037.670000px;}
.y81_c01267{bottom:1038.525000px;}
.y83_c01267{bottom:1040.250000px;}
.y7f_c01267{bottom:1041.120000px;}
.y85_c01267{bottom:1048.890000px;}
.y77_c01267{bottom:1054.080000px;}
.y84_c01267{bottom:1055.805000px;}
.y79_c01267{bottom:1056.675000px;}
.y7a_c01267{bottom:1057.530000px;}
.y7b_c01267{bottom:1058.400000px;}
.y76_c01267{bottom:1059.270000px;}
.y78_c01267{bottom:1060.125000px;}
.y7c_c01267{bottom:1063.590000px;}
.y6f_c01267{bottom:1073.955000px;}
.y6e_c01267{bottom:1074.810000px;}
.y74_c01267{bottom:1075.680000px;}
.y70_c01267{bottom:1076.550000px;}
.y72_c01267{bottom:1077.405000px;}
.y71_c01267{bottom:1080.000000px;}
.y73_c01267{bottom:1080.870000px;}
.y75_c01267{bottom:1081.725000px;}
.y67_c01267{bottom:1093.830000px;}
.y68_c01267{bottom:1094.685000px;}
.y69_c01267{bottom:1095.555000px;}
.y6b_c01267{bottom:1096.410000px;}
.y66_c01267{bottom:1097.280000px;}
.y6c_c01267{bottom:1098.150000px;}
.y6a_c01267{bottom:1100.730000px;}
.y64_c01267{bottom:1101.600000px;}
.y6d_c01267{bottom:1102.470000px;}
.y3_c01267{bottom:1107.645000px;}
.y63_c01267{bottom:1108.515000px;}
.y60_c01267{bottom:1109.370000px;}
.y61_c01267{bottom:1110.240000px;}
.y5f_c01267{bottom:1111.110000px;}
.y62_c01267{bottom:1111.965000px;}
.y2_c01267{bottom:1112.835000px;}
.y65_c01267{bottom:1113.690000px;}
.y5a_c01267{bottom:1116.285000px;}
.y56_c01267{bottom:1117.155000px;}
.y58_c01267{bottom:1118.010000px;}
.y5b_c01267{bottom:1118.880000px;}
.y57_c01267{bottom:1120.605000px;}
.y5c_c01267{bottom:1121.475000px;}
.y59_c01267{bottom:1123.200000px;}
.y5d_c01267{bottom:1125.795000px;}
.y5e_c01267{bottom:1127.520000px;}
.y51_c01267{bottom:1137.885000px;}
.y50_c01267{bottom:1138.755000px;}
.y55_c01267{bottom:1139.610000px;}
.y52_c01267{bottom:1141.350000px;}
.y54_c01267{bottom:1142.205000px;}
.y53_c01267{bottom:1143.075000px;}
.y49_c01267{bottom:1155.165000px;}
.y4b_c01267{bottom:1156.035000px;}
.y4c_c01267{bottom:1156.890000px;}
.y47_c01267{bottom:1157.760000px;}
.y48_c01267{bottom:1159.485000px;}
.y4a_c01267{bottom:1161.210000px;}
.y4d_c01267{bottom:1162.950000px;}
.y4e_c01267{bottom:1163.805000px;}
.y4f_c01267{bottom:1164.675000px;}
.y43_c01267{bottom:1172.445000px;}
.y46_c01267{bottom:1173.315000px;}
.y45_c01267{bottom:1174.170000px;}
.y42_c01267{bottom:1175.040000px;}
.y44_c01267{bottom:1175.910000px;}
.y3d_c01267{bottom:1190.595000px;}
.y3a_c01267{bottom:1192.320000px;}
.y3b_c01267{bottom:1193.190000px;}
.y41_c01267{bottom:1194.045000px;}
.y3f_c01267{bottom:1195.770000px;}
.y3c_c01267{bottom:1197.510000px;}
.y39_c01267{bottom:1199.235000px;}
.y40_c01267{bottom:1204.410000px;}
.y3e_c01267{bottom:1210.470000px;}
.y34_c01267{bottom:1217.370000px;}
.y33_c01267{bottom:1218.240000px;}
.y35_c01267{bottom:1219.110000px;}
.y32_c01267{bottom:1219.965000px;}
.y37_c01267{bottom:1221.690000px;}
.y36_c01267{bottom:1224.285000px;}
.y38_c01267{bottom:1225.155000px;}
.y31_c01267{bottom:1232.925000px;}
.y2c_c01267{bottom:1233.795000px;}
.y2e_c01267{bottom:1234.650000px;}
.y2d_c01267{bottom:1235.520000px;}
.y2f_c01267{bottom:1239.840000px;}
.y30_c01267{bottom:1244.160000px;}
.y26_c01267{bottom:1259.715000px;}
.y27_c01267{bottom:1260.570000px;}
.y29_c01267{bottom:1261.440000px;}
.y28_c01267{bottom:1262.310000px;}
.y2a_c01267{bottom:1264.035000px;}
.y2b_c01267{bottom:1264.890000px;}
.y24_c01267{bottom:1279.590000px;}
.y21_c01267{bottom:1280.445000px;}
.y22_c01267{bottom:1281.315000px;}
.y23_c01267{bottom:1283.910000px;}
.y25_c01267{bottom:1285.635000px;}
.y1d_c01267{bottom:1299.450000px;}
.y1c_c01267{bottom:1300.320000px;}
.y1e_c01267{bottom:1302.045000px;}
.y1f_c01267{bottom:1302.915000px;}
.y20_c01267{bottom:1305.510000px;}
.y14_c01267{bottom:1315.005000px;}
.y18_c01267{bottom:1316.730000px;}
.y1a_c01267{bottom:1317.600000px;}
.y17_c01267{bottom:1319.325000px;}
.y15_c01267{bottom:1321.920000px;}
.y16_c01267{bottom:1322.790000px;}
.y19_c01267{bottom:1325.370000px;}
.y1b_c01267{bottom:1326.240000px;}
.ye_c01267{bottom:1340.925000px;}
.y12_c01267{bottom:1341.795000px;}
.y11_c01267{bottom:1342.650000px;}
.y13_c01267{bottom:1343.520000px;}
.yf_c01267{bottom:1344.390000px;}
.y1_c01267{bottom:1345.245000px;}
.y10_c01267{bottom:1346.115000px;}
.yd_c01267{bottom:1364.250000px;}
.y8_c01267{bottom:1365.990000px;}
.y9_c01267{bottom:1366.845000px;}
.ya_c01267{bottom:1368.570000px;}
.yc_c01267{bottom:1370.310000px;}
.yb_c01267{bottom:1372.890000px;}
.y7_c01267{bottom:1391.910000px;}
.y6_c01267{bottom:1394.490000px;}
.h1c_c01267{height:3.110063px;}
.h1a_c01267{height:5.399414px;}
.h3_c01267{height:6.209326px;}
.h5_c01267{height:9.340986px;}
.h1e_c01267{height:12.418652px;}
.h2_c01267{height:15.550313px;}
.h4_c01267{height:18.681973px;}
.h18_c01267{height:21.759639px;}
.h6_c01267{height:24.891299px;}
.h21_c01267{height:27.968965px;}
.h15_c01267{height:31.100625px;}
.h22_c01267{height:34.232285px;}
.h1d_c01267{height:37.309951px;}
.h11_c01267{height:40.441611px;}
.h1b_c01267{height:43.519277px;}
.h7_c01267{height:46.650937px;}
.h12_c01267{height:49.782598px;}
.h10_c01267{height:52.860264px;}
.h16_c01267{height:55.991924px;}
.h17_c01267{height:59.069590px;}
.hf_c01267{height:62.201250px;}
.hb_c01267{height:65.332910px;}
.h19_c01267{height:68.410576px;}
.he_c01267{height:71.542236px;}
.h9_c01267{height:74.619902px;}
.h13_c01267{height:77.751563px;}
.h8_c01267{height:80.883223px;}
.ha_c01267{height:83.960889px;}
.hd_c01267{height:87.092549px;}
.hc_c01267{height:90.170215px;}
.h14_c01267{height:93.301875px;}
.h23_c01267{height:96.433535px;}
.h20_c01267{height:99.511201px;}
.h24_c01267{height:102.642861px;}
.h1f_c01267{height:115.061514px;}
.h0_c01267{height:1509.405000px;}
.h1_c01267{height:1509.750000px;}
.w0_c01267{width:1079.130000px;}
.w1_c01267{width:1079.250000px;}
.x0_c01267{left:0.000000px;}
.x1_c01267{left:35.430000px;}
.x4_c01267{left:140.835000px;}
.x2_c01267{left:162.435000px;}
.x5_c01267{left:165.885000px;}
.x3_c01267{left:168.480000px;}
.x52_c01267{left:216.000000px;}
.xee_c01267{left:218.595000px;}
.x5c_c01267{left:224.640000px;}
.xd3_c01267{left:227.235000px;}
.xe_c01267{left:228.960000px;}
.xbe_c01267{left:230.685000px;}
.x66_c01267{left:232.410000px;}
.x1d_c01267{left:234.150000px;}
.x2a_c01267{left:235.875000px;}
.xf_c01267{left:237.600000px;}
.xc8_c01267{left:240.195000px;}
.xd7_c01267{left:241.920000px;}
.xf1_c01267{left:245.370000px;}
.xfa_c01267{left:247.110000px;}
.x41_c01267{left:249.690000px;}
.x110_c01267{left:251.430000px;}
.x5d_c01267{left:257.475000px;}
.x4b_c01267{left:259.200000px;}
.xf8_c01267{left:263.520000px;}
.x2b_c01267{left:265.245000px;}
.x1e_c01267{left:267.840000px;}
.xc9_c01267{left:270.435000px;}
.x67_c01267{left:272.160000px;}
.x37_c01267{left:273.885000px;}
.x85_c01267{left:278.205000px;}
.x77_c01267{left:281.670000px;}
.xb9_c01267{left:285.120000px;}
.xf2_c01267{left:286.845000px;}
.x98_c01267{left:289.440000px;}
.x38_c01267{left:293.760000px;}
.xa1_c01267{left:295.485000px;}
.x10_c01267{left:297.210000px;}
.x123_c01267{left:298.950000px;}
.x100_c01267{left:300.675000px;}
.x46_c01267{left:302.400000px;}
.x86_c01267{left:306.720000px;}
.xf3_c01267{left:308.445000px;}
.x2c_c01267{left:312.765000px;}
.xa7_c01267{left:315.360000px;}
.xe5_c01267{left:317.085000px;}
.xd9_c01267{left:318.810000px;}
.xe0_c01267{left:321.405000px;}
.x42_c01267{left:324.870000px;}
.x124_c01267{left:327.450000px;}
.x68_c01267{left:330.045000px;}
.xde_c01267{left:332.640000px;}
.x5e_c01267{left:334.365000px;}
.x70_c01267{left:336.960000px;}
.x61_c01267{left:338.685000px;}
.x101_c01267{left:340.410000px;}
.xa2_c01267{left:342.150000px;}
.x9_c01267{left:345.600000px;}
.x9e_c01267{left:347.325000px;}
.x119_c01267{left:349.050000px;}
.xce_c01267{left:350.790000px;}
.xda_c01267{left:353.370000px;}
.x92_c01267{left:355.110000px;}
.x102_c01267{left:356.835000px;}
.xd4_c01267{left:360.285000px;}
.x1f_c01267{left:362.880000px;}
.x78_c01267{left:368.925000px;}
.x20_c01267{left:370.650000px;}
.x11_c01267{left:373.245000px;}
.x5f_c01267{left:375.840000px;}
.x114_c01267{left:377.565000px;}
.x39_c01267{left:380.160000px;}
.xba_c01267{left:381.885000px;}
.xcf_c01267{left:386.205000px;}
.xca_c01267{left:388.800000px;}
.x3a_c01267{left:391.395000px;}
.x103_c01267{left:393.120000px;}
.xc2_c01267{left:396.570000px;}
.xeb_c01267{left:399.165000px;}
.x87_c01267{left:400.890000px;}
.xe1_c01267{left:407.805000px;}
.x2d_c01267{left:410.400000px;}
.x6_c01267{left:412.995000px;}
.xa_c01267{left:414.720000px;}
.xe6_c01267{left:417.315000px;}
.xe9_c01267{left:419.040000px;}
.x62_c01267{left:420.765000px;}
.x21_c01267{left:425.955000px;}
.x93_c01267{left:427.680000px;}
.x105_c01267{left:429.405000px;}
.x12_c01267{left:432.000000px;}
.x11d_c01267{left:435.450000px;}
.x43_c01267{left:441.510000px;}
.xc3_c01267{left:444.960000px;}
.x88_c01267{left:446.685000px;}
.x79_c01267{left:450.150000px;}
.xb_c01267{left:451.875000px;}
.x53_c01267{left:454.470000px;}
.xb0_c01267{left:457.050000px;}
.x22_c01267{left:462.240000px;}
.xfb_c01267{left:465.690000px;}
.xd0_c01267{left:467.430000px;}
.xf4_c01267{left:469.155000px;}
.xa8_c01267{left:471.750000px;}
.xd5_c01267{left:473.475000px;}
.xb1_c01267{left:475.200000px;}
.x60_c01267{left:477.795000px;}
.xcb_c01267{left:479.520000px;}
.x23_c01267{left:482.115000px;}
.x2e_c01267{left:484.710000px;}
.x69_c01267{left:486.435000px;}
.xc4_c01267{left:488.160000px;}
.x109_c01267{left:490.755000px;}
.x94_c01267{left:493.350000px;}
.x89_c01267{left:496.800000px;}
.x13_c01267{left:498.525000px;}
.x7a_c01267{left:500.250000px;}
.x3b_c01267{left:505.440000px;}
.xac_c01267{left:508.035000px;}
.x7b_c01267{left:509.760000px;}
.x4c_c01267{left:512.355000px;}
.xa3_c01267{left:514.080000px;}
.x7c_c01267{left:515.805000px;}
.x11e_c01267{left:520.995000px;}
.xa9_c01267{left:524.445000px;}
.xe7_c01267{left:526.170000px;}
.x11a_c01267{left:531.360000px;}
.x71_c01267{left:534.810000px;}
.x14_c01267{left:542.595000px;}
.x54_c01267{left:544.320000px;}
.x8e_c01267{left:546.045000px;}
.xad_c01267{left:547.770000px;}
.x55_c01267{left:549.510000px;}
.x95_c01267{left:551.235000px;}
.x6a_c01267{left:554.685000px;}
.x3c_c01267{left:557.280000px;}
.x24_c01267{left:559.875000px;}
.x56_c01267{left:562.470000px;}
.x15_c01267{left:564.195000px;}
.x2f_c01267{left:565.920000px;}
.x7d_c01267{left:568.515000px;}
.xaa_c01267{left:570.240000px;}
.x7e_c01267{left:571.965000px;}
.xdf_c01267{left:573.690000px;}
.xc_c01267{left:576.285000px;}
.xfe_c01267{left:578.880000px;}
.xc5_c01267{left:580.605000px;}
.xbb_c01267{left:583.200000px;}
.xae_c01267{left:587.520000px;}
.xd8_c01267{left:590.115000px;}
.x7f_c01267{left:591.840000px;}
.x16_c01267{left:593.565000px;}
.xb3_c01267{left:600.480000px;}
.x80_c01267{left:602.205000px;}
.xe2_c01267{left:605.670000px;}
.x8a_c01267{left:607.395000px;}
.x17_c01267{left:609.120000px;}
.xbc_c01267{left:611.715000px;}
.x47_c01267{left:613.440000px;}
.xef_c01267{left:616.035000px;}
.x8f_c01267{left:618.630000px;}
.x25_c01267{left:621.210000px;}
.x8b_c01267{left:624.675000px;}
.x4d_c01267{left:628.125000px;}
.x63_c01267{left:630.720000px;}
.x81_c01267{left:632.445000px;}
.xfc_c01267{left:634.170000px;}
.x7_c01267{left:635.910000px;}
.xd6_c01267{left:637.635000px;}
.x30_c01267{left:641.085000px;}
.x3d_c01267{left:642.810000px;}
.x44_c01267{left:644.550000px;}
.xf5_c01267{left:646.275000px;}
.xa4_c01267{left:648.870000px;}
.xb4_c01267{left:650.595000px;}
.x9d_c01267{left:652.320000px;}
.x6b_c01267{left:654.045000px;}
.x18_c01267{left:656.640000px;}
.x99_c01267{left:658.365000px;}
.x72_c01267{left:660.090000px;}
.xcc_c01267{left:661.830000px;}
.x6c_c01267{left:666.150000px;}
.x9f_c01267{left:668.730000px;}
.xab_c01267{left:673.920000px;}
.xb7_c01267{left:675.645000px;}
.x31_c01267{left:678.240000px;}
.x19_c01267{left:680.835000px;}
.xbd_c01267{left:682.560000px;}
.x32_c01267{left:685.155000px;}
.xbf_c01267{left:686.880000px;}
.x73_c01267{left:688.605000px;}
.xd1_c01267{left:691.200000px;}
.x82_c01267{left:692.925000px;}
.xfd_c01267{left:695.520000px;}
.x6d_c01267{left:697.245000px;}
.xf9_c01267{left:700.710000px;}
.x33_c01267{left:703.290000px;}
.x9a_c01267{left:705.885000px;}
.x57_c01267{left:708.480000px;}
.x8c_c01267{left:711.075000px;}
.x58_c01267{left:716.250000px;}
.x1a_c01267{left:718.845000px;}
.xc0_c01267{left:722.310000px;}
.xb5_c01267{left:724.035000px;}
.x26_c01267{left:725.760000px;}
.xaf_c01267{left:727.485000px;}
.x4e_c01267{left:732.675000px;}
.x64_c01267{left:735.270000px;}
.x115_c01267{left:736.995000px;}
.x125_c01267{left:740.445000px;}
.x27_c01267{left:742.170000px;}
.x6e_c01267{left:745.635000px;}
.x34_c01267{left:748.230000px;}
.x74_c01267{left:749.955000px;}
.xe4_c01267{left:751.680000px;}
.x90_c01267{left:756.000000px;}
.x59_c01267{left:758.595000px;}
.x9b_c01267{left:760.320000px;}
.x8d_c01267{left:762.915000px;}
.x45_c01267{left:764.640000px;}
.xcd_c01267{left:766.365000px;}
.xf0_c01267{left:768.090000px;}
.x28_c01267{left:771.555000px;}
.x5a_c01267{left:775.005000px;}
.xc6_c01267{left:777.600000px;}
.x48_c01267{left:782.790000px;}
.x3e_c01267{left:785.370000px;}
.x104_c01267{left:787.110000px;}
.x75_c01267{left:790.560000px;}
.xdb_c01267{left:793.155000px;}
.xc1_c01267{left:797.475000px;}
.x4f_c01267{left:799.200000px;}
.x3f_c01267{left:801.795000px;}
.x65_c01267{left:804.390000px;}
.x5b_c01267{left:808.710000px;}
.xa0_c01267{left:810.435000px;}
.xf6_c01267{left:813.885000px;}
.x29_c01267{left:815.610000px;}
.xe8_c01267{left:817.350000px;}
.x35_c01267{left:819.075000px;}
.xd2_c01267{left:820.800000px;}
.x1b_c01267{left:823.395000px;}
.xa5_c01267{left:825.120000px;}
.x96_c01267{left:826.845000px;}
.x40_c01267{left:828.570000px;}
.x50_c01267{left:832.035000px;}
.xf7_c01267{left:833.760000px;}
.xff_c01267{left:836.355000px;}
.xb8_c01267{left:838.080000px;}
.xd_c01267{left:839.805000px;}
.x1c_c01267{left:841.530000px;}
.x10a_c01267{left:846.720000px;}
.x106_c01267{left:849.315000px;}
.xec_c01267{left:851.040000px;}
.xb2_c01267{left:852.765000px;}
.x36_c01267{left:854.490000px;}
.x6f_c01267{left:856.230000px;}
.xdc_c01267{left:857.955000px;}
.xc7_c01267{left:860.550000px;}
.x51_c01267{left:862.275000px;}
.xb6_c01267{left:864.000000px;}
.xdd_c01267{left:866.595000px;}
.xa6_c01267{left:868.320000px;}
.x122_c01267{left:870.915000px;}
.x49_c01267{left:875.235000px;}
.x9c_c01267{left:877.830000px;}
.x4a_c01267{left:882.150000px;}
.x83_c01267{left:885.600000px;}
.x97_c01267{left:888.195000px;}
.x91_c01267{left:889.920000px;}
.xea_c01267{left:892.515000px;}
.x84_c01267{left:895.110000px;}
.xed_c01267{left:896.835000px;}
.x8_c01267{left:898.560000px;}
.x76_c01267{left:901.155000px;}
.xe3_c01267{left:902.880000px;}
.x11f_c01267{left:909.795000px;}
.x116_c01267{left:912.390000px;}
.x11b_c01267{left:914.970000px;}
.x111_c01267{left:920.160000px;}
.x10b_c01267{left:921.885000px;}
.x126_c01267{left:924.480000px;}
.x120_c01267{left:929.670000px;}
.x11c_c01267{left:945.210000px;}
.x107_c01267{left:950.400000px;}
.x10c_c01267{left:957.315000px;}
.x112_c01267{left:961.635000px;}
.x121_c01267{left:963.360000px;}
.x10d_c01267{left:965.085000px;}
.x117_c01267{left:979.770000px;}
.x10e_c01267{left:991.005000px;}
.x113_c01267{left:994.470000px;}
.x10f_c01267{left:997.920000px;}
.x108_c01267{left:1000.515000px;}
.x118_c01267{left:1003.965000px;}
@media print{
.v1_c01267{vertical-align:-3.093333pt;}
.v0_c01267{vertical-align:0.000000pt;}
.ls1_c01267{letter-spacing:0.000000pt;}
.ls0_c01267{letter-spacing:49.258667pt;}
.ws0_c01267{word-spacing:-14.865394pt;}
.ws1_c01267{word-spacing:0.000000pt;}
.fs1a_c01267{font-size:3.072000pt;}
.fs18_c01267{font-size:5.333333pt;}
.fs1_c01267{font-size:6.133333pt;}
.fs3_c01267{font-size:9.226667pt;}
.fs1c_c01267{font-size:12.266667pt;}
.fs0_c01267{font-size:15.360000pt;}
.fs2_c01267{font-size:18.453333pt;}
.fs16_c01267{font-size:21.493333pt;}
.fs4_c01267{font-size:24.586667pt;}
.fs1f_c01267{font-size:27.626667pt;}
.fs13_c01267{font-size:30.720000pt;}
.fs20_c01267{font-size:33.813333pt;}
.fs1b_c01267{font-size:36.853333pt;}
.fsf_c01267{font-size:39.946667pt;}
.fs19_c01267{font-size:42.986667pt;}
.fs5_c01267{font-size:46.080000pt;}
.fs10_c01267{font-size:49.173333pt;}
.fse_c01267{font-size:52.213333pt;}
.fs14_c01267{font-size:55.306667pt;}
.fs15_c01267{font-size:58.346667pt;}
.fsd_c01267{font-size:61.440000pt;}
.fs9_c01267{font-size:64.533333pt;}
.fs17_c01267{font-size:67.573333pt;}
.fsc_c01267{font-size:70.666667pt;}
.fs7_c01267{font-size:73.706667pt;}
.fs11_c01267{font-size:76.800000pt;}
.fs6_c01267{font-size:79.893333pt;}
.fs8_c01267{font-size:82.933333pt;}
.fsb_c01267{font-size:86.026667pt;}
.fsa_c01267{font-size:89.066667pt;}
.fs12_c01267{font-size:92.160000pt;}
.fs21_c01267{font-size:95.253333pt;}
.fs1e_c01267{font-size:98.293333pt;}
.fs22_c01267{font-size:101.386667pt;}
.fs1d_c01267{font-size:113.653333pt;}
.y0_c01267{bottom:0.000000pt;}
.y1b3_c01267{bottom:164.346667pt;}
.y1b2_c01267{bottom:168.186667pt;}
.y1ae_c01267{bottom:169.733333pt;}
.y1af_c01267{bottom:173.573333pt;}
.y1ad_c01267{bottom:174.333333pt;}
.y1b0_c01267{bottom:177.413333pt;}
.y1b1_c01267{bottom:178.946667pt;}
.y1ac_c01267{bottom:179.706667pt;}
.y1ab_c01267{bottom:181.253333pt;}
.y1aa_c01267{bottom:182.013333pt;}
.y1a4_c01267{bottom:182.786667pt;}
.y1a6_c01267{bottom:183.546667pt;}
.y1a5_c01267{bottom:184.320000pt;}
.y1a8_c01267{bottom:185.853333pt;}
.y1a7_c01267{bottom:186.626667pt;}
.y1a9_c01267{bottom:187.386667pt;}
.y1a0_c01267{bottom:201.213333pt;}
.y199_c01267{bottom:201.986667pt;}
.y19c_c01267{bottom:202.746667pt;}
.y19f_c01267{bottom:203.520000pt;}
.y19d_c01267{bottom:204.293333pt;}
.y198_c01267{bottom:205.053333pt;}
.y19a_c01267{bottom:206.586667pt;}
.y19b_c01267{bottom:208.133333pt;}
.y1a1_c01267{bottom:209.666667pt;}
.y19e_c01267{bottom:210.426667pt;}
.y1a2_c01267{bottom:211.973333pt;}
.y1a3_c01267{bottom:215.040000pt;}
.y195_c01267{bottom:220.413333pt;}
.y193_c01267{bottom:221.186667pt;}
.y192_c01267{bottom:221.946667pt;}
.y196_c01267{bottom:222.720000pt;}
.y194_c01267{bottom:223.493333pt;}
.y191_c01267{bottom:224.253333pt;}
.y197_c01267{bottom:232.706667pt;}
.y18e_c01267{bottom:235.773333pt;}
.y18d_c01267{bottom:238.080000pt;}
.y18c_c01267{bottom:238.853333pt;}
.y18b_c01267{bottom:239.613333pt;}
.y189_c01267{bottom:240.386667pt;}
.y18a_c01267{bottom:244.986667pt;}
.y18f_c01267{bottom:251.906667pt;}
.y190_c01267{bottom:253.440000pt;}
.y186_c01267{bottom:255.746667pt;}
.y184_c01267{bottom:256.506667pt;}
.y187_c01267{bottom:258.053333pt;}
.y188_c01267{bottom:258.813333pt;}
.y183_c01267{bottom:259.586667pt;}
.y185_c01267{bottom:260.346667pt;}
.y17a_c01267{bottom:268.026667pt;}
.y17e_c01267{bottom:269.573333pt;}
.y17d_c01267{bottom:270.333333pt;}
.y17f_c01267{bottom:273.413333pt;}
.y17b_c01267{bottom:274.173333pt;}
.y182_c01267{bottom:275.706667pt;}
.y17c_c01267{bottom:278.013333pt;}
.y181_c01267{bottom:282.626667pt;}
.y180_c01267{bottom:288.773333pt;}
.y172_c01267{bottom:290.306667pt;}
.y178_c01267{bottom:291.066667pt;}
.y173_c01267{bottom:291.840000pt;}
.y179_c01267{bottom:292.613333pt;}
.y177_c01267{bottom:293.373333pt;}
.y175_c01267{bottom:294.146667pt;}
.y174_c01267{bottom:295.680000pt;}
.y176_c01267{bottom:301.053333pt;}
.y16f_c01267{bottom:308.733333pt;}
.y16b_c01267{bottom:310.266667pt;}
.y16e_c01267{bottom:311.040000pt;}
.y16a_c01267{bottom:311.813333pt;}
.y16c_c01267{bottom:313.346667pt;}
.y170_c01267{bottom:314.880000pt;}
.y16d_c01267{bottom:317.946667pt;}
.y171_c01267{bottom:318.720000pt;}
.y167_c01267{bottom:323.333333pt;}
.y168_c01267{bottom:324.093333pt;}
.y163_c01267{bottom:324.866667pt;}
.y164_c01267{bottom:327.173333pt;}
.y166_c01267{bottom:330.240000pt;}
.y169_c01267{bottom:331.773333pt;}
.y165_c01267{bottom:336.386667pt;}
.y15e_c01267{bottom:342.533333pt;}
.y15d_c01267{bottom:343.293333pt;}
.y160_c01267{bottom:345.600000pt;}
.y161_c01267{bottom:346.373333pt;}
.y15f_c01267{bottom:348.666667pt;}
.y162_c01267{bottom:350.213333pt;}
.y158_c01267{bottom:358.653333pt;}
.y15c_c01267{bottom:360.186667pt;}
.y15a_c01267{bottom:361.733333pt;}
.y15b_c01267{bottom:363.266667pt;}
.y159_c01267{bottom:364.026667pt;}
.y156_c01267{bottom:376.320000pt;}
.y157_c01267{bottom:377.853333pt;}
.y151_c01267{bottom:378.626667pt;}
.y155_c01267{bottom:379.386667pt;}
.y152_c01267{bottom:381.693333pt;}
.y153_c01267{bottom:386.306667pt;}
.y154_c01267{bottom:389.373333pt;}
.y14a_c01267{bottom:397.826667pt;}
.y14c_c01267{bottom:399.360000pt;}
.y14b_c01267{bottom:400.133333pt;}
.y149_c01267{bottom:400.893333pt;}
.y14e_c01267{bottom:402.426667pt;}
.y150_c01267{bottom:403.200000pt;}
.y14f_c01267{bottom:403.973333pt;}
.y14d_c01267{bottom:407.813333pt;}
.y145_c01267{bottom:416.253333pt;}
.y143_c01267{bottom:417.026667pt;}
.y146_c01267{bottom:417.786667pt;}
.y148_c01267{bottom:418.560000pt;}
.y142_c01267{bottom:419.333333pt;}
.y147_c01267{bottom:420.093333pt;}
.y13e_c01267{bottom:421.626667pt;}
.y13f_c01267{bottom:422.400000pt;}
.y144_c01267{bottom:423.933333pt;}
.y141_c01267{bottom:425.466667pt;}
.y13b_c01267{bottom:427.773333pt;}
.y140_c01267{bottom:428.546667pt;}
.y13c_c01267{bottom:429.306667pt;}
.y13a_c01267{bottom:430.080000pt;}
.y138_c01267{bottom:430.853333pt;}
.y13d_c01267{bottom:431.613333pt;}
.y136_c01267{bottom:432.386667pt;}
.y139_c01267{bottom:433.146667pt;}
.y137_c01267{bottom:433.920000pt;}
.y131_c01267{bottom:434.693333pt;}
.y130_c01267{bottom:435.453333pt;}
.y133_c01267{bottom:436.986667pt;}
.y134_c01267{bottom:437.760000pt;}
.y132_c01267{bottom:438.533333pt;}
.y135_c01267{bottom:440.066667pt;}
.y12f_c01267{bottom:448.506667pt;}
.y12c_c01267{bottom:449.280000pt;}
.y12d_c01267{bottom:450.053333pt;}
.y12b_c01267{bottom:450.813333pt;}
.y12e_c01267{bottom:452.346667pt;}
.y12a_c01267{bottom:453.893333pt;}
.y126_c01267{bottom:466.173333pt;}
.y125_c01267{bottom:466.946667pt;}
.y127_c01267{bottom:469.253333pt;}
.y124_c01267{bottom:470.013333pt;}
.y128_c01267{bottom:471.546667pt;}
.y129_c01267{bottom:481.533333pt;}
.y11f_c01267{bottom:486.906667pt;}
.y121_c01267{bottom:487.680000pt;}
.y122_c01267{bottom:488.453333pt;}
.y120_c01267{bottom:489.213333pt;}
.y11e_c01267{bottom:489.986667pt;}
.y123_c01267{bottom:503.813333pt;}
.y119_c01267{bottom:506.880000pt;}
.y11b_c01267{bottom:507.653333pt;}
.y11c_c01267{bottom:509.946667pt;}
.y11a_c01267{bottom:522.240000pt;}
.y11d_c01267{bottom:524.546667pt;}
.y116_c01267{bottom:525.306667pt;}
.y111_c01267{bottom:527.613333pt;}
.y112_c01267{bottom:528.386667pt;}
.y117_c01267{bottom:529.146667pt;}
.y114_c01267{bottom:529.920000pt;}
.y115_c01267{bottom:530.693333pt;}
.y113_c01267{bottom:532.986667pt;}
.y118_c01267{bottom:536.066667pt;}
.y10d_c01267{bottom:542.973333pt;}
.y10c_c01267{bottom:543.746667pt;}
.y10e_c01267{bottom:546.053333pt;}
.y10b_c01267{bottom:547.586667pt;}
.y110_c01267{bottom:549.120000pt;}
.y10f_c01267{bottom:549.893333pt;}
.y108_c01267{bottom:560.640000pt;}
.y109_c01267{bottom:562.173333pt;}
.y10a_c01267{bottom:563.706667pt;}
.yff_c01267{bottom:575.226667pt;}
.y104_c01267{bottom:576.000000pt;}
.y101_c01267{bottom:576.773333pt;}
.y106_c01267{bottom:577.533333pt;}
.y102_c01267{bottom:578.306667pt;}
.y100_c01267{bottom:579.066667pt;}
.y107_c01267{bottom:582.906667pt;}
.y105_c01267{bottom:585.213333pt;}
.y103_c01267{bottom:588.293333pt;}
.yfa_c01267{bottom:597.506667pt;}
.yfd_c01267{bottom:598.266667pt;}
.yf7_c01267{bottom:599.040000pt;}
.yfb_c01267{bottom:599.813333pt;}
.yfe_c01267{bottom:601.346667pt;}
.yf9_c01267{bottom:602.106667pt;}
.yfc_c01267{bottom:602.880000pt;}
.yf8_c01267{bottom:603.653333pt;}
.yef_c01267{bottom:619.773333pt;}
.yf2_c01267{bottom:620.546667pt;}
.yf0_c01267{bottom:621.306667pt;}
.yf1_c01267{bottom:622.080000pt;}
.yf5_c01267{bottom:627.453333pt;}
.yf4_c01267{bottom:628.986667pt;}
.yf3_c01267{bottom:630.533333pt;}
.yf6_c01267{bottom:632.826667pt;}
.yee_c01267{bottom:633.600000pt;}
.yea_c01267{bottom:634.373333pt;}
.yeb_c01267{bottom:635.133333pt;}
.yed_c01267{bottom:635.906667pt;}
.yec_c01267{bottom:638.213333pt;}
.ye6_c01267{bottom:646.653333pt;}
.ye5_c01267{bottom:648.186667pt;}
.ye9_c01267{bottom:649.733333pt;}
.ye8_c01267{bottom:652.800000pt;}
.ye7_c01267{bottom:656.640000pt;}
.ydf_c01267{bottom:668.160000pt;}
.ydb_c01267{bottom:668.933333pt;}
.ye3_c01267{bottom:669.693333pt;}
.ydd_c01267{bottom:671.226667pt;}
.ydc_c01267{bottom:672.000000pt;}
.ye2_c01267{bottom:672.773333pt;}
.yde_c01267{bottom:673.533333pt;}
.ye1_c01267{bottom:674.306667pt;}
.ye0_c01267{bottom:675.066667pt;}
.ye4_c01267{bottom:682.746667pt;}
.yd6_c01267{bottom:683.520000pt;}
.yd8_c01267{bottom:684.293333pt;}
.yda_c01267{bottom:685.826667pt;}
.yd7_c01267{bottom:686.586667pt;}
.yd9_c01267{bottom:691.973333pt;}
.yd1_c01267{bottom:701.186667pt;}
.yd3_c01267{bottom:701.946667pt;}
.yd2_c01267{bottom:704.253333pt;}
.yd4_c01267{bottom:705.026667pt;}
.yd0_c01267{bottom:705.786667pt;}
.ycf_c01267{bottom:708.093333pt;}
.yd5_c01267{bottom:709.626667pt;}
.ycd_c01267{bottom:721.920000pt;}
.yc7_c01267{bottom:722.693333pt;}
.yca_c01267{bottom:723.453333pt;}
.ycc_c01267{bottom:724.986667pt;}
.yce_c01267{bottom:725.760000pt;}
.yc8_c01267{bottom:726.533333pt;}
.yc6_c01267{bottom:727.293333pt;}
.ycb_c01267{bottom:728.066667pt;}
.yc9_c01267{bottom:728.826667pt;}
.yc2_c01267{bottom:740.346667pt;}
.yc1_c01267{bottom:741.120000pt;}
.yc4_c01267{bottom:741.893333pt;}
.yc3_c01267{bottom:742.653333pt;}
.yc5_c01267{bottom:745.733333pt;}
.ybc_c01267{bottom:758.013333pt;}
.ybb_c01267{bottom:758.786667pt;}
.ybf_c01267{bottom:759.546667pt;}
.yc0_c01267{bottom:760.320000pt;}
.ybe_c01267{bottom:763.386667pt;}
.ybd_c01267{bottom:764.160000pt;}
.yb8_c01267{bottom:774.906667pt;}
.yb6_c01267{bottom:775.680000pt;}
.yb9_c01267{bottom:777.986667pt;}
.yba_c01267{bottom:779.520000pt;}
.yb7_c01267{bottom:780.293333pt;}
.yb5_c01267{bottom:794.106667pt;}
.yb0_c01267{bottom:794.880000pt;}
.yaf_c01267{bottom:795.653333pt;}
.yb1_c01267{bottom:796.413333pt;}
.yb2_c01267{bottom:797.186667pt;}
.yb4_c01267{bottom:797.946667pt;}
.yb3_c01267{bottom:798.720000pt;}
.yab_c01267{bottom:812.546667pt;}
.ya8_c01267{bottom:813.306667pt;}
.ya9_c01267{bottom:814.080000pt;}
.yad_c01267{bottom:814.853333pt;}
.yae_c01267{bottom:815.613333pt;}
.yac_c01267{bottom:817.146667pt;}
.yaa_c01267{bottom:818.693333pt;}
.ya3_c01267{bottom:826.373333pt;}
.ya2_c01267{bottom:827.133333pt;}
.ya7_c01267{bottom:827.906667pt;}
.ya4_c01267{bottom:829.440000pt;}
.ya5_c01267{bottom:830.973333pt;}
.ya1_c01267{bottom:831.746667pt;}
.ya6_c01267{bottom:847.866667pt;}
.y9b_c01267{bottom:848.640000pt;}
.y9c_c01267{bottom:849.413333pt;}
.y5_c01267{bottom:850.173333pt;}
.y9f_c01267{bottom:850.946667pt;}
.y4_c01267{bottom:851.706667pt;}
.y9d_c01267{bottom:854.013333pt;}
.ya0_c01267{bottom:854.786667pt;}
.y9e_c01267{bottom:865.533333pt;}
.y94_c01267{bottom:867.066667pt;}
.y93_c01267{bottom:867.840000pt;}
.y98_c01267{bottom:868.613333pt;}
.y99_c01267{bottom:869.373333pt;}
.y95_c01267{bottom:870.146667pt;}
.y96_c01267{bottom:872.453333pt;}
.y97_c01267{bottom:873.986667pt;}
.y9a_c01267{bottom:875.520000pt;}
.y8d_c01267{bottom:880.133333pt;}
.y90_c01267{bottom:881.666667pt;}
.y92_c01267{bottom:882.426667pt;}
.y91_c01267{bottom:883.973333pt;}
.y8e_c01267{bottom:887.813333pt;}
.y8f_c01267{bottom:888.573333pt;}
.y86_c01267{bottom:900.866667pt;}
.y89_c01267{bottom:901.626667pt;}
.y87_c01267{bottom:902.400000pt;}
.y8b_c01267{bottom:903.173333pt;}
.y8a_c01267{bottom:903.933333pt;}
.y88_c01267{bottom:905.466667pt;}
.y8c_c01267{bottom:907.013333pt;}
.y80_c01267{bottom:920.066667pt;}
.y7e_c01267{bottom:920.826667pt;}
.y7d_c01267{bottom:921.600000pt;}
.y82_c01267{bottom:922.373333pt;}
.y81_c01267{bottom:923.133333pt;}
.y83_c01267{bottom:924.666667pt;}
.y7f_c01267{bottom:925.440000pt;}
.y85_c01267{bottom:932.346667pt;}
.y77_c01267{bottom:936.960000pt;}
.y84_c01267{bottom:938.493333pt;}
.y79_c01267{bottom:939.266667pt;}
.y7a_c01267{bottom:940.026667pt;}
.y7b_c01267{bottom:940.800000pt;}
.y76_c01267{bottom:941.573333pt;}
.y78_c01267{bottom:942.333333pt;}
.y7c_c01267{bottom:945.413333pt;}
.y6f_c01267{bottom:954.626667pt;}
.y6e_c01267{bottom:955.386667pt;}
.y74_c01267{bottom:956.160000pt;}
.y70_c01267{bottom:956.933333pt;}
.y72_c01267{bottom:957.693333pt;}
.y71_c01267{bottom:960.000000pt;}
.y73_c01267{bottom:960.773333pt;}
.y75_c01267{bottom:961.533333pt;}
.y67_c01267{bottom:972.293333pt;}
.y68_c01267{bottom:973.053333pt;}
.y69_c01267{bottom:973.826667pt;}
.y6b_c01267{bottom:974.586667pt;}
.y66_c01267{bottom:975.360000pt;}
.y6c_c01267{bottom:976.133333pt;}
.y6a_c01267{bottom:978.426667pt;}
.y64_c01267{bottom:979.200000pt;}
.y6d_c01267{bottom:979.973333pt;}
.y3_c01267{bottom:984.573333pt;}
.y63_c01267{bottom:985.346667pt;}
.y60_c01267{bottom:986.106667pt;}
.y61_c01267{bottom:986.880000pt;}
.y5f_c01267{bottom:987.653333pt;}
.y62_c01267{bottom:988.413333pt;}
.y2_c01267{bottom:989.186667pt;}
.y65_c01267{bottom:989.946667pt;}
.y5a_c01267{bottom:992.253333pt;}
.y56_c01267{bottom:993.026667pt;}
.y58_c01267{bottom:993.786667pt;}
.y5b_c01267{bottom:994.560000pt;}
.y57_c01267{bottom:996.093333pt;}
.y5c_c01267{bottom:996.866667pt;}
.y59_c01267{bottom:998.400000pt;}
.y5d_c01267{bottom:1000.706667pt;}
.y5e_c01267{bottom:1002.240000pt;}
.y51_c01267{bottom:1011.453333pt;}
.y50_c01267{bottom:1012.226667pt;}
.y55_c01267{bottom:1012.986667pt;}
.y52_c01267{bottom:1014.533333pt;}
.y54_c01267{bottom:1015.293333pt;}
.y53_c01267{bottom:1016.066667pt;}
.y49_c01267{bottom:1026.813333pt;}
.y4b_c01267{bottom:1027.586667pt;}
.y4c_c01267{bottom:1028.346667pt;}
.y47_c01267{bottom:1029.120000pt;}
.y48_c01267{bottom:1030.653333pt;}
.y4a_c01267{bottom:1032.186667pt;}
.y4d_c01267{bottom:1033.733333pt;}
.y4e_c01267{bottom:1034.493333pt;}
.y4f_c01267{bottom:1035.266667pt;}
.y43_c01267{bottom:1042.173333pt;}
.y46_c01267{bottom:1042.946667pt;}
.y45_c01267{bottom:1043.706667pt;}
.y42_c01267{bottom:1044.480000pt;}
.y44_c01267{bottom:1045.253333pt;}
.y3d_c01267{bottom:1058.306667pt;}
.y3a_c01267{bottom:1059.840000pt;}
.y3b_c01267{bottom:1060.613333pt;}
.y41_c01267{bottom:1061.373333pt;}
.y3f_c01267{bottom:1062.906667pt;}
.y3c_c01267{bottom:1064.453333pt;}
.y39_c01267{bottom:1065.986667pt;}
.y40_c01267{bottom:1070.586667pt;}
.y3e_c01267{bottom:1075.973333pt;}
.y34_c01267{bottom:1082.106667pt;}
.y33_c01267{bottom:1082.880000pt;}
.y35_c01267{bottom:1083.653333pt;}
.y32_c01267{bottom:1084.413333pt;}
.y37_c01267{bottom:1085.946667pt;}
.y36_c01267{bottom:1088.253333pt;}
.y38_c01267{bottom:1089.026667pt;}
.y31_c01267{bottom:1095.933333pt;}
.y2c_c01267{bottom:1096.706667pt;}
.y2e_c01267{bottom:1097.466667pt;}
.y2d_c01267{bottom:1098.240000pt;}
.y2f_c01267{bottom:1102.080000pt;}
.y30_c01267{bottom:1105.920000pt;}
.y26_c01267{bottom:1119.746667pt;}
.y27_c01267{bottom:1120.506667pt;}
.y29_c01267{bottom:1121.280000pt;}
.y28_c01267{bottom:1122.053333pt;}
.y2a_c01267{bottom:1123.586667pt;}
.y2b_c01267{bottom:1124.346667pt;}
.y24_c01267{bottom:1137.413333pt;}
.y21_c01267{bottom:1138.173333pt;}
.y22_c01267{bottom:1138.946667pt;}
.y23_c01267{bottom:1141.253333pt;}
.y25_c01267{bottom:1142.786667pt;}
.y1d_c01267{bottom:1155.066667pt;}
.y1c_c01267{bottom:1155.840000pt;}
.y1e_c01267{bottom:1157.373333pt;}
.y1f_c01267{bottom:1158.146667pt;}
.y20_c01267{bottom:1160.453333pt;}
.y14_c01267{bottom:1168.893333pt;}
.y18_c01267{bottom:1170.426667pt;}
.y1a_c01267{bottom:1171.200000pt;}
.y17_c01267{bottom:1172.733333pt;}
.y15_c01267{bottom:1175.040000pt;}
.y16_c01267{bottom:1175.813333pt;}
.y19_c01267{bottom:1178.106667pt;}
.y1b_c01267{bottom:1178.880000pt;}
.ye_c01267{bottom:1191.933333pt;}
.y12_c01267{bottom:1192.706667pt;}
.y11_c01267{bottom:1193.466667pt;}
.y13_c01267{bottom:1194.240000pt;}
.yf_c01267{bottom:1195.013333pt;}
.y1_c01267{bottom:1195.773333pt;}
.y10_c01267{bottom:1196.546667pt;}
.yd_c01267{bottom:1212.666667pt;}
.y8_c01267{bottom:1214.213333pt;}
.y9_c01267{bottom:1214.973333pt;}
.ya_c01267{bottom:1216.506667pt;}
.yc_c01267{bottom:1218.053333pt;}
.yb_c01267{bottom:1220.346667pt;}
.y7_c01267{bottom:1237.253333pt;}
.y6_c01267{bottom:1239.546667pt;}
.h1c_c01267{height:2.764500pt;}
.h1a_c01267{height:4.799479pt;}
.h3_c01267{height:5.519401pt;}
.h5_c01267{height:8.303099pt;}
.h1e_c01267{height:11.038802pt;}
.h2_c01267{height:13.822500pt;}
.h4_c01267{height:16.606198pt;}
.h18_c01267{height:19.341901pt;}
.h6_c01267{height:22.125599pt;}
.h21_c01267{height:24.861302pt;}
.h15_c01267{height:27.645000pt;}
.h22_c01267{height:30.428698pt;}
.h1d_c01267{height:33.164401pt;}
.h11_c01267{height:35.948099pt;}
.h1b_c01267{height:38.683802pt;}
.h7_c01267{height:41.467500pt;}
.h12_c01267{height:44.251198pt;}
.h10_c01267{height:46.986901pt;}
.h16_c01267{height:49.770599pt;}
.h17_c01267{height:52.506302pt;}
.hf_c01267{height:55.290000pt;}
.hb_c01267{height:58.073698pt;}
.h19_c01267{height:60.809401pt;}
.he_c01267{height:63.593099pt;}
.h9_c01267{height:66.328802pt;}
.h13_c01267{height:69.112500pt;}
.h8_c01267{height:71.896198pt;}
.ha_c01267{height:74.631901pt;}
.hd_c01267{height:77.415599pt;}
.hc_c01267{height:80.151302pt;}
.h14_c01267{height:82.935000pt;}
.h23_c01267{height:85.718698pt;}
.h20_c01267{height:88.454401pt;}
.h24_c01267{height:91.238099pt;}
.h1f_c01267{height:102.276901pt;}
.h0_c01267{height:1341.693333pt;}
.h1_c01267{height:1342.000000pt;}
.w0_c01267{width:959.226667pt;}
.w1_c01267{width:959.333333pt;}
.x0_c01267{left:0.000000pt;}
.x1_c01267{left:31.493333pt;}
.x4_c01267{left:125.186667pt;}
.x2_c01267{left:144.386667pt;}
.x5_c01267{left:147.453333pt;}
.x3_c01267{left:149.760000pt;}
.x52_c01267{left:192.000000pt;}
.xee_c01267{left:194.306667pt;}
.x5c_c01267{left:199.680000pt;}
.xd3_c01267{left:201.986667pt;}
.xe_c01267{left:203.520000pt;}
.xbe_c01267{left:205.053333pt;}
.x66_c01267{left:206.586667pt;}
.x1d_c01267{left:208.133333pt;}
.x2a_c01267{left:209.666667pt;}
.xf_c01267{left:211.200000pt;}
.xc8_c01267{left:213.506667pt;}
.xd7_c01267{left:215.040000pt;}
.xf1_c01267{left:218.106667pt;}
.xfa_c01267{left:219.653333pt;}
.x41_c01267{left:221.946667pt;}
.x110_c01267{left:223.493333pt;}
.x5d_c01267{left:228.866667pt;}
.x4b_c01267{left:230.400000pt;}
.xf8_c01267{left:234.240000pt;}
.x2b_c01267{left:235.773333pt;}
.x1e_c01267{left:238.080000pt;}
.xc9_c01267{left:240.386667pt;}
.x67_c01267{left:241.920000pt;}
.x37_c01267{left:243.453333pt;}
.x85_c01267{left:247.293333pt;}
.x77_c01267{left:250.373333pt;}
.xb9_c01267{left:253.440000pt;}
.xf2_c01267{left:254.973333pt;}
.x98_c01267{left:257.280000pt;}
.x38_c01267{left:261.120000pt;}
.xa1_c01267{left:262.653333pt;}
.x10_c01267{left:264.186667pt;}
.x123_c01267{left:265.733333pt;}
.x100_c01267{left:267.266667pt;}
.x46_c01267{left:268.800000pt;}
.x86_c01267{left:272.640000pt;}
.xf3_c01267{left:274.173333pt;}
.x2c_c01267{left:278.013333pt;}
.xa7_c01267{left:280.320000pt;}
.xe5_c01267{left:281.853333pt;}
.xd9_c01267{left:283.386667pt;}
.xe0_c01267{left:285.693333pt;}
.x42_c01267{left:288.773333pt;}
.x124_c01267{left:291.066667pt;}
.x68_c01267{left:293.373333pt;}
.xde_c01267{left:295.680000pt;}
.x5e_c01267{left:297.213333pt;}
.x70_c01267{left:299.520000pt;}
.x61_c01267{left:301.053333pt;}
.x101_c01267{left:302.586667pt;}
.xa2_c01267{left:304.133333pt;}
.x9_c01267{left:307.200000pt;}
.x9e_c01267{left:308.733333pt;}
.x119_c01267{left:310.266667pt;}
.xce_c01267{left:311.813333pt;}
.xda_c01267{left:314.106667pt;}
.x92_c01267{left:315.653333pt;}
.x102_c01267{left:317.186667pt;}
.xd4_c01267{left:320.253333pt;}
.x1f_c01267{left:322.560000pt;}
.x78_c01267{left:327.933333pt;}
.x20_c01267{left:329.466667pt;}
.x11_c01267{left:331.773333pt;}
.x5f_c01267{left:334.080000pt;}
.x114_c01267{left:335.613333pt;}
.x39_c01267{left:337.920000pt;}
.xba_c01267{left:339.453333pt;}
.xcf_c01267{left:343.293333pt;}
.xca_c01267{left:345.600000pt;}
.x3a_c01267{left:347.906667pt;}
.x103_c01267{left:349.440000pt;}
.xc2_c01267{left:352.506667pt;}
.xeb_c01267{left:354.813333pt;}
.x87_c01267{left:356.346667pt;}
.xe1_c01267{left:362.493333pt;}
.x2d_c01267{left:364.800000pt;}
.x6_c01267{left:367.106667pt;}
.xa_c01267{left:368.640000pt;}
.xe6_c01267{left:370.946667pt;}
.xe9_c01267{left:372.480000pt;}
.x62_c01267{left:374.013333pt;}
.x21_c01267{left:378.626667pt;}
.x93_c01267{left:380.160000pt;}
.x105_c01267{left:381.693333pt;}
.x12_c01267{left:384.000000pt;}
.x11d_c01267{left:387.066667pt;}
.x43_c01267{left:392.453333pt;}
.xc3_c01267{left:395.520000pt;}
.x88_c01267{left:397.053333pt;}
.x79_c01267{left:400.133333pt;}
.xb_c01267{left:401.666667pt;}
.x53_c01267{left:403.973333pt;}
.xb0_c01267{left:406.266667pt;}
.x22_c01267{left:410.880000pt;}
.xfb_c01267{left:413.946667pt;}
.xd0_c01267{left:415.493333pt;}
.xf4_c01267{left:417.026667pt;}
.xa8_c01267{left:419.333333pt;}
.xd5_c01267{left:420.866667pt;}
.xb1_c01267{left:422.400000pt;}
.x60_c01267{left:424.706667pt;}
.xcb_c01267{left:426.240000pt;}
.x23_c01267{left:428.546667pt;}
.x2e_c01267{left:430.853333pt;}
.x69_c01267{left:432.386667pt;}
.xc4_c01267{left:433.920000pt;}
.x109_c01267{left:436.226667pt;}
.x94_c01267{left:438.533333pt;}
.x89_c01267{left:441.600000pt;}
.x13_c01267{left:443.133333pt;}
.x7a_c01267{left:444.666667pt;}
.x3b_c01267{left:449.280000pt;}
.xac_c01267{left:451.586667pt;}
.x7b_c01267{left:453.120000pt;}
.x4c_c01267{left:455.426667pt;}
.xa3_c01267{left:456.960000pt;}
.x7c_c01267{left:458.493333pt;}
.x11e_c01267{left:463.106667pt;}
.xa9_c01267{left:466.173333pt;}
.xe7_c01267{left:467.706667pt;}
.x11a_c01267{left:472.320000pt;}
.x71_c01267{left:475.386667pt;}
.x14_c01267{left:482.306667pt;}
.x54_c01267{left:483.840000pt;}
.x8e_c01267{left:485.373333pt;}
.xad_c01267{left:486.906667pt;}
.x55_c01267{left:488.453333pt;}
.x95_c01267{left:489.986667pt;}
.x6a_c01267{left:493.053333pt;}
.x3c_c01267{left:495.360000pt;}
.x24_c01267{left:497.666667pt;}
.x56_c01267{left:499.973333pt;}
.x15_c01267{left:501.506667pt;}
.x2f_c01267{left:503.040000pt;}
.x7d_c01267{left:505.346667pt;}
.xaa_c01267{left:506.880000pt;}
.x7e_c01267{left:508.413333pt;}
.xdf_c01267{left:509.946667pt;}
.xc_c01267{left:512.253333pt;}
.xfe_c01267{left:514.560000pt;}
.xc5_c01267{left:516.093333pt;}
.xbb_c01267{left:518.400000pt;}
.xae_c01267{left:522.240000pt;}
.xd8_c01267{left:524.546667pt;}
.x7f_c01267{left:526.080000pt;}
.x16_c01267{left:527.613333pt;}
.xb3_c01267{left:533.760000pt;}
.x80_c01267{left:535.293333pt;}
.xe2_c01267{left:538.373333pt;}
.x8a_c01267{left:539.906667pt;}
.x17_c01267{left:541.440000pt;}
.xbc_c01267{left:543.746667pt;}
.x47_c01267{left:545.280000pt;}
.xef_c01267{left:547.586667pt;}
.x8f_c01267{left:549.893333pt;}
.x25_c01267{left:552.186667pt;}
.x8b_c01267{left:555.266667pt;}
.x4d_c01267{left:558.333333pt;}
.x63_c01267{left:560.640000pt;}
.x81_c01267{left:562.173333pt;}
.xfc_c01267{left:563.706667pt;}
.x7_c01267{left:565.253333pt;}
.xd6_c01267{left:566.786667pt;}
.x30_c01267{left:569.853333pt;}
.x3d_c01267{left:571.386667pt;}
.x44_c01267{left:572.933333pt;}
.xf5_c01267{left:574.466667pt;}
.xa4_c01267{left:576.773333pt;}
.xb4_c01267{left:578.306667pt;}
.x9d_c01267{left:579.840000pt;}
.x6b_c01267{left:581.373333pt;}
.x18_c01267{left:583.680000pt;}
.x99_c01267{left:585.213333pt;}
.x72_c01267{left:586.746667pt;}
.xcc_c01267{left:588.293333pt;}
.x6c_c01267{left:592.133333pt;}
.x9f_c01267{left:594.426667pt;}
.xab_c01267{left:599.040000pt;}
.xb7_c01267{left:600.573333pt;}
.x31_c01267{left:602.880000pt;}
.x19_c01267{left:605.186667pt;}
.xbd_c01267{left:606.720000pt;}
.x32_c01267{left:609.026667pt;}
.xbf_c01267{left:610.560000pt;}
.x73_c01267{left:612.093333pt;}
.xd1_c01267{left:614.400000pt;}
.x82_c01267{left:615.933333pt;}
.xfd_c01267{left:618.240000pt;}
.x6d_c01267{left:619.773333pt;}
.xf9_c01267{left:622.853333pt;}
.x33_c01267{left:625.146667pt;}
.x9a_c01267{left:627.453333pt;}
.x57_c01267{left:629.760000pt;}
.x8c_c01267{left:632.066667pt;}
.x58_c01267{left:636.666667pt;}
.x1a_c01267{left:638.973333pt;}
.xc0_c01267{left:642.053333pt;}
.xb5_c01267{left:643.586667pt;}
.x26_c01267{left:645.120000pt;}
.xaf_c01267{left:646.653333pt;}
.x4e_c01267{left:651.266667pt;}
.x64_c01267{left:653.573333pt;}
.x115_c01267{left:655.106667pt;}
.x125_c01267{left:658.173333pt;}
.x27_c01267{left:659.706667pt;}
.x6e_c01267{left:662.786667pt;}
.x34_c01267{left:665.093333pt;}
.x74_c01267{left:666.626667pt;}
.xe4_c01267{left:668.160000pt;}
.x90_c01267{left:672.000000pt;}
.x59_c01267{left:674.306667pt;}
.x9b_c01267{left:675.840000pt;}
.x8d_c01267{left:678.146667pt;}
.x45_c01267{left:679.680000pt;}
.xcd_c01267{left:681.213333pt;}
.xf0_c01267{left:682.746667pt;}
.x28_c01267{left:685.826667pt;}
.x5a_c01267{left:688.893333pt;}
.xc6_c01267{left:691.200000pt;}
.x48_c01267{left:695.813333pt;}
.x3e_c01267{left:698.106667pt;}
.x104_c01267{left:699.653333pt;}
.x75_c01267{left:702.720000pt;}
.xdb_c01267{left:705.026667pt;}
.xc1_c01267{left:708.866667pt;}
.x4f_c01267{left:710.400000pt;}
.x3f_c01267{left:712.706667pt;}
.x65_c01267{left:715.013333pt;}
.x5b_c01267{left:718.853333pt;}
.xa0_c01267{left:720.386667pt;}
.xf6_c01267{left:723.453333pt;}
.x29_c01267{left:724.986667pt;}
.xe8_c01267{left:726.533333pt;}
.x35_c01267{left:728.066667pt;}
.xd2_c01267{left:729.600000pt;}
.x1b_c01267{left:731.906667pt;}
.xa5_c01267{left:733.440000pt;}
.x96_c01267{left:734.973333pt;}
.x40_c01267{left:736.506667pt;}
.x50_c01267{left:739.586667pt;}
.xf7_c01267{left:741.120000pt;}
.xff_c01267{left:743.426667pt;}
.xb8_c01267{left:744.960000pt;}
.xd_c01267{left:746.493333pt;}
.x1c_c01267{left:748.026667pt;}
.x10a_c01267{left:752.640000pt;}
.x106_c01267{left:754.946667pt;}
.xec_c01267{left:756.480000pt;}
.xb2_c01267{left:758.013333pt;}
.x36_c01267{left:759.546667pt;}
.x6f_c01267{left:761.093333pt;}
.xdc_c01267{left:762.626667pt;}
.xc7_c01267{left:764.933333pt;}
.x51_c01267{left:766.466667pt;}
.xb6_c01267{left:768.000000pt;}
.xdd_c01267{left:770.306667pt;}
.xa6_c01267{left:771.840000pt;}
.x122_c01267{left:774.146667pt;}
.x49_c01267{left:777.986667pt;}
.x9c_c01267{left:780.293333pt;}
.x4a_c01267{left:784.133333pt;}
.x83_c01267{left:787.200000pt;}
.x97_c01267{left:789.506667pt;}
.x91_c01267{left:791.040000pt;}
.xea_c01267{left:793.346667pt;}
.x84_c01267{left:795.653333pt;}
.xed_c01267{left:797.186667pt;}
.x8_c01267{left:798.720000pt;}
.x76_c01267{left:801.026667pt;}
.xe3_c01267{left:802.560000pt;}
.x11f_c01267{left:808.706667pt;}
.x116_c01267{left:811.013333pt;}
.x11b_c01267{left:813.306667pt;}
.x111_c01267{left:817.920000pt;}
.x10b_c01267{left:819.453333pt;}
.x126_c01267{left:821.760000pt;}
.x120_c01267{left:826.373333pt;}
.x11c_c01267{left:840.186667pt;}
.x107_c01267{left:844.800000pt;}
.x10c_c01267{left:850.946667pt;}
.x112_c01267{left:854.786667pt;}
.x121_c01267{left:856.320000pt;}
.x10d_c01267{left:857.853333pt;}
.x117_c01267{left:870.906667pt;}
.x10e_c01267{left:880.893333pt;}
.x113_c01267{left:883.973333pt;}
.x10f_c01267{left:887.040000pt;}
.x108_c01267{left:889.346667pt;}
.x118_c01267{left:892.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b749ed62ad569bacd75942e.woff2')format("woff");}.ff1_c01268{font-family:ff1_c01268;line-height:1.109863;font-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_c01268{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m154_c01268{transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);}
.m8c_c01268{transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01268{transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);}
.m140_c01268{transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064000,0.000000,0.000000,0.250000,0,0);}
.m11_c01268{transform:matrix(0.064525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064525,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01268{transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01268{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.m182_c01268{transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);}
.m13_c01268{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);}
.mf7_c01268{transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);}
.m183_c01268{transform:matrix(0.084875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084875,0.000000,0.000000,0.250000,0,0);}
.ma2_c01268{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.m169_c01268{transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102250,0.000000,0.000000,0.250000,0,0);}
.m8d_c01268{transform:matrix(0.102275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102275,0.000000,0.000000,0.250000,0,0);}
.m13c_c01268{transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);}
.m10b_c01268{transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);}
.m166_c01268{transform:matrix(0.105775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105775,0.000000,0.000000,0.250000,0,0);}
.m191_c01268{transform:matrix(0.107075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107075,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01268{transform:matrix(0.107275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107275,0.000000,0.000000,0.250000,0,0);}
.m90_c01268{transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);}
.m18f_c01268{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m143_c01268{transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01268{transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01268{transform:matrix(0.115025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115025,0.000000,0.000000,0.250000,0,0);}
.m19b_c01268{transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117500,0.000000,0.000000,0.250000,0,0);}
.m167_c01268{transform:matrix(0.117875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117875,0.000000,0.000000,0.250000,0,0);}
.meb_c01268{transform:matrix(0.118050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118050,0.000000,0.000000,0.250000,0,0);}
.m195_c01268{transform:matrix(0.118550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118550,0.000000,0.000000,0.250000,0,0);}
.m36_c01268{transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01268{transform:matrix(0.122900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122900,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01268{transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);}
.mc4_c01268{transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);}
.mb_c01268{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m190_c01268{transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01268{transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);}
.m89_c01268{transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01268{transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);}
.m102_c01268{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.mf0_c01268{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);}
.m150_c01268{transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);}
.m10d_c01268{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m5b_c01268{transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);}
.m149_c01268{transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);}
.m104_c01268{transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);}
.m188_c01268{transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);}
.m17c_c01268{transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);}
.m19d_c01268{transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);}
.m7e_c01268{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01268{transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);}
.m142_c01268{transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);}
.m192_c01268{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);}
.m132_c01268{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m72_c01268{transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);}
.m14a_c01268{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);}
.md7_c01268{transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142150,0.000000,0.000000,0.250000,0,0);}
.m14f_c01268{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.m133_c01268{transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);}
.m179_c01268{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);}
.m4_c01268{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7d_c01268{transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01268{transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);}
.m134_c01268{transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01268{transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);}
.mdf_c01268{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.md3_c01268{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);}
.m113_c01268{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);}
.m6f_c01268{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);}
.m128_c01268{transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);}
.m3a_c01268{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);}
.m38_c01268{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01268{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);}
.m77_c01268{transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01268{transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);}
.m14d_c01268{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01268{transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01268{transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);}
.mfb_c01268{transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);}
.mf6_c01268{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m161_c01268{transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);}
.m189_c01268{transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);}
.mec_c01268{transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);}
.m12c_c01268{transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);}
.mf9_c01268{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.mf2_c01268{transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);}
.m12b_c01268{transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);}
.md6_c01268{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.m13e_c01268{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.m7f_c01268{transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01268{transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);}
.m3f_c01268{transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01268{transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);}
.m1af_c01268{transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);}
.m91_c01268{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.mce_c01268{transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);}
.m12e_c01268{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.mbb_c01268{transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);}
.m40_c01268{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);}
.m7a_c01268{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m96_c01268{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);}
.mbe_c01268{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);}
.m16_c01268{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);}
.m164_c01268{transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);}
.m9b_c01268{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);}
.mba_c01268{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);}
.m186_c01268{transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);}
.m159_c01268{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.mfc_c01268{transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01268{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m79_c01268{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01268{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.m19e_c01268{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);}
.m55_c01268{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m10a_c01268{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.m21_c01268{transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);}
.mb5_c01268{transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);}
.m155_c01268{transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);}
.m16a_c01268{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.mb1_c01268{transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);}
.m61_c01268{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.m13f_c01268{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);}
.m124_c01268{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m171_c01268{transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);}
.m13b_c01268{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);}
.mdb_c01268{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.m15a_c01268{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.m1a_c01268{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.md8_c01268{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m197_c01268{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m46_c01268{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);}
.m148_c01268{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.m126_c01268{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.m19f_c01268{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);}
.m185_c01268{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);}
.ma8_c01268{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m196_c01268{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m16b_c01268{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.me8_c01268{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);}
.m187_c01268{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);}
.m145_c01268{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.m100_c01268{transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);}
.m174_c01268{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);}
.mc0_c01268{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.mc7_c01268{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m162_c01268{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);}
.m116_c01268{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.m172_c01268{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);}
.m178_c01268{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);}
.md9_c01268{transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);}
.me1_c01268{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.mea_c01268{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);}
.mf8_c01268{transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01268{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);}
.m5f_c01268{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m136_c01268{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m1be_c01268{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m44_c01268{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.mf1_c01268{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);}
.m14c_c01268{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.m60_c01268{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m70_c01268{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);}
.m1a4_c01268{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);}
.m1ba_c01268{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01268{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);}
.m13d_c01268{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);}
.m108_c01268{transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);}
.m137_c01268{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);}
.m93_c01268{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);}
.mf5_c01268{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m68_c01268{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m10e_c01268{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);}
.m121_c01268{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);}
.m19c_c01268{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);}
.m151_c01268{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);}
.mf4_c01268{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);}
.m163_c01268{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01268{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.mda_c01268{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.m49_c01268{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m152_c01268{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);}
.m168_c01268{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m11f_c01268{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.m170_c01268{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);}
.m127_c01268{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m135_c01268{transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);}
.m160_c01268{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.m97_c01268{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.m1f_c01268{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m65_c01268{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);}
.m37_c01268{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m144_c01268{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);}
.med_c01268{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);}
.m31_c01268{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.m18c_c01268{transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);}
.m15f_c01268{transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);}
.m10c_c01268{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.mc1_c01268{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.m8f_c01268{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.m103_c01268{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m111_c01268{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);}
.m6a_c01268{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);}
.m1b3_c01268{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m199_c01268{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m147_c01268{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);}
.mb4_c01268{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);}
.m5e_c01268{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);}
.m9f_c01268{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.mc5_c01268{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);}
.m15e_c01268{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);}
.m12d_c01268{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.m12f_c01268{transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);}
.m11e_c01268{transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);}
.m35_c01268{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.m157_c01268{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.md5_c01268{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m11c_c01268{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);}
.m6_c01268{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m9d_c01268{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m83_c01268{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m165_c01268{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);}
.m67_c01268{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.m5d_c01268{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m8e_c01268{transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);}
.m14b_c01268{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);}
.m39_c01268{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);}
.m19a_c01268{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.m81_c01268{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);}
.m109_c01268{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);}
.m76_c01268{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.maa_c01268{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m30_c01268{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);}
.m17d_c01268{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.mc2_c01268{transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);}
.m101_c01268{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mb8_c01268{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);}
.m17f_c01268{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);}
.m8a_c01268{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.m3d_c01268{transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);}
.m131_c01268{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);}
.m123_c01268{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.md4_c01268{transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);}
.m141_c01268{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.mde_c01268{transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01268{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);}
.ma6_c01268{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);}
.mb3_c01268{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01268{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);}
.m1e_c01268{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.mee_c01268{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);}
.ma0_c01268{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);}
.m9e_c01268{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);}
.m3c_c01268{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.m158_c01268{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01268{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m120_c01268{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);}
.maf_c01268{transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);}
.m18d_c01268{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);}
.m194_c01268{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.me6_c01268{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.m58_c01268{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.m87_c01268{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.ma1_c01268{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m139_c01268{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m41_c01268{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);}
.m4b_c01268{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);}
.m74_c01268{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);}
.m17e_c01268{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m175_c01268{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.m15d_c01268{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);}
.md2_c01268{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);}
.m176_c01268{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m19_c01268{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m9c_c01268{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m18a_c01268{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);}
.m98_c01268{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.m110_c01268{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);}
.m117_c01268{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);}
.m59_c01268{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);}
.mdd_c01268{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m75_c01268{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);}
.m6e_c01268{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);}
.me9_c01268{transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);}
.m84_c01268{transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);}
.m17a_c01268{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);}
.m1b8_c01268{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.m115_c01268{transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);}
.mfe_c01268{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);}
.mfd_c01268{transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);}
.m82_c01268{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.mc8_c01268{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);}
.md1_c01268{transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);}
.m45_c01268{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m16c_c01268{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m9a_c01268{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);}
.m153_c01268{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.mbc_c01268{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);}
.m86_c01268{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);}
.m47_c01268{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);}
.mac_c01268{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);}
.m16f_c01268{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);}
.m1ad_c01268{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);}
.m4c_c01268{transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);}
.m85_c01268{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m18e_c01268{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);}
.m1b6_c01268{transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);}
.md0_c01268{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m2e_c01268{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);}
.m198_c01268{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.m16d_c01268{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);}
.mc_c01268{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);}
.m88_c01268{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);}
.ma7_c01268{transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);}
.mff_c01268{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m23_c01268{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m180_c01268{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);}
.m15c_c01268{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m73_c01268{transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);}
.m184_c01268{transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);}
.mae_c01268{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.me7_c01268{transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01268{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);}
.mf3_c01268{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.m105_c01268{transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);}
.m32_c01268{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.mcb_c01268{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);}
.m69_c01268{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m12a_c01268{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m107_c01268{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);}
.m11b_c01268{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);}
.mfa_c01268{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.mab_c01268{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);}
.m13a_c01268{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);}
.m125_c01268{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.me0_c01268{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);}
.m7b_c01268{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);}
.m114_c01268{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m78_c01268{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.mca_c01268{transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);}
.m26_c01268{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.me5_c01268{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);}
.m129_c01268{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);}
.m119_c01268{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);}
.m95_c01268{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m24_c01268{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);}
.m8b_c01268{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);}
.m1a1_c01268{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.m56_c01268{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);}
.m16e_c01268{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);}
.m80_c01268{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);}
.m50_c01268{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);}
.mb0_c01268{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.m6c_c01268{transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246075,0.000000,0.000000,0.250000,0,0);}
.m156_c01268{transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);}
.m18b_c01268{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m17b_c01268{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);}
.m11d_c01268{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.m92_c01268{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);}
.m15b_c01268{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);}
.mdc_c01268{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m3e_c01268{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.mef_c01268{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);}
.m1c_c01268{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.mbd_c01268{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);}
.m64_c01268{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mcf_c01268{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);}
.m1d_c01268{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);}
.m51_c01268{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);}
.m6b_c01268{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);}
.m43_c01268{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m48_c01268{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01268{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01268{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);}
.m2b_c01268{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01268{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);}
.m54_c01268{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);}
.m57_c01268{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c01268{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);}
.m2_c01268{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb7_c01268{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01268{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);}
.m2a_c01268{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mf_c01268{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);}
.m2d_c01268{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);}
.m29_c01268{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m34_c01268{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me_c01268{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);}
.m4f_c01268{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m52_c01268{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c01268{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);}
.m27_c01268{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c01268{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c01268{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma4_c01268{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01268{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m99_c01268{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01268{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m62_c01268{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01268{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);}
.m2f_c01268{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m33_c01268{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb6_c01268{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m63_c01268{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);}
.m11a_c01268{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);}
.mad_c01268{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m112_c01268{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m71_c01268{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);}
.m53_c01268{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m122_c01268{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m10_c01268{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md_c01268{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);}
.mb9_c01268{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01268{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);}
.m14_c01268{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m106_c01268{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mc6_c01268{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);}
.m6d_c01268{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m17_c01268{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.ma9_c01268{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m10f_c01268{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);}
.m7_c01268{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);}
.m22_c01268{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mcc_c01268{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);}
.m25_c01268{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5_c01268{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m118_c01268{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);}
.m4e_c01268{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me4_c01268{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mcd_c01268{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mc3_c01268{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m66_c01268{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m0_c01268{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);}
.m193_c01268{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m173_c01268{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m8_c01268{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01268{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m94_c01268{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01268{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01268{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m181_c01268{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m138_c01268{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m177_c01268{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m9_c01268{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.ma_c01268{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m146_c01268{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);}
.m7c_c01268{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m18_c01268{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m1_c01268{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m14e_c01268{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01268{transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);}
.m130_c01268{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.me2_c01268{transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);}
.me3_c01268{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m42_c01268{transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);}
.v1_c01268{vertical-align:-3.420000px;}
.v0_c01268{vertical-align:0.000000px;}
.ls3_c01268{letter-spacing:0.000000px;}
.ls0_c01268{letter-spacing:34.142700px;}
.ls1_c01268{letter-spacing:177.695640px;}
.ls2_c01268{letter-spacing:628.338000px;}
.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;}
}
.ws1_c01268{word-spacing:-14.579143px;}
.ws3_c01268{word-spacing:0.000000px;}
.ws0_c01268{word-spacing:3.341100px;}
.ws2_c01268{word-spacing:84.840000px;}
._0_c01268{width:610.317167px;}
.fc0_c01268{color:transparent;}
.fs5_c01268{font-size:3.456000px;}
.fs17_c01268{font-size:6.000000px;}
.fs2_c01268{font-size:6.900000px;}
.fs1_c01268{font-size:10.380000px;}
.fs9_c01268{font-size:13.800000px;}
.fs0_c01268{font-size:17.280000px;}
.fs3_c01268{font-size:20.760000px;}
.fs4_c01268{font-size:24.180000px;}
.fs1c_c01268{font-size:27.660000px;}
.fs1b_c01268{font-size:31.080000px;}
.fs6_c01268{font-size:34.560000px;}
.fs15_c01268{font-size:38.040000px;}
.fs7_c01268{font-size:41.460000px;}
.fs1d_c01268{font-size:44.940000px;}
.fs13_c01268{font-size:48.360000px;}
.fs19_c01268{font-size:51.840000px;}
.fs16_c01268{font-size:55.320000px;}
.fs14_c01268{font-size:58.740000px;}
.fsa_c01268{font-size:62.220000px;}
.fsc_c01268{font-size:65.640000px;}
.fsb_c01268{font-size:69.120000px;}
.fsf_c01268{font-size:72.600000px;}
.fs18_c01268{font-size:76.020000px;}
.fs11_c01268{font-size:79.500000px;}
.fs1a_c01268{font-size:82.920000px;}
.fs8_c01268{font-size:86.400000px;}
.fsd_c01268{font-size:89.880000px;}
.fs1e_c01268{font-size:93.300000px;}
.fs12_c01268{font-size:96.780000px;}
.fs20_c01268{font-size:100.200000px;}
.fs10_c01268{font-size:103.680000px;}
.fse_c01268{font-size:107.160000px;}
.fs1f_c01268{font-size:134.760000px;}
.y0_c01268{bottom:0.000000px;}
.y1e2_c01268{bottom:198.720000px;}
.y1e1_c01268{bottom:203.040000px;}
.y1de_c01268{bottom:203.910000px;}
.y1db_c01268{bottom:204.765000px;}
.y1df_c01268{bottom:205.635000px;}
.y1dd_c01268{bottom:206.490000px;}
.y1da_c01268{bottom:207.360000px;}
.y1d9_c01268{bottom:208.230000px;}
.y1dc_c01268{bottom:209.085000px;}
.y1d8_c01268{bottom:209.955000px;}
.y1d7_c01268{bottom:210.810000px;}
.y1d5_c01268{bottom:211.680000px;}
.y1d4_c01268{bottom:212.550000px;}
.y1d6_c01268{bottom:216.870000px;}
.y1e0_c01268{bottom:222.915000px;}
.y1d3_c01268{bottom:226.365000px;}
.y1d1_c01268{bottom:227.235000px;}
.y1ce_c01268{bottom:228.090000px;}
.y1cd_c01268{bottom:228.960000px;}
.y1d2_c01268{bottom:232.410000px;}
.y1d0_c01268{bottom:233.280000px;}
.y1cf_c01268{bottom:234.150000px;}
.y1cc_c01268{bottom:235.005000px;}
.y1cb_c01268{bottom:236.730000px;}
.y1c9_c01268{bottom:245.370000px;}
.y1c0_c01268{bottom:246.240000px;}
.y1c8_c01268{bottom:247.110000px;}
.y1c3_c01268{bottom:247.965000px;}
.y1c2_c01268{bottom:248.835000px;}
.y1c1_c01268{bottom:249.690000px;}
.y1c5_c01268{bottom:252.285000px;}
.y1c7_c01268{bottom:253.155000px;}
.y1c6_c01268{bottom:254.010000px;}
.y1c4_c01268{bottom:260.925000px;}
.y1ca_c01268{bottom:264.390000px;}
.y1be_c01268{bottom:266.115000px;}
.y1b5_c01268{bottom:267.840000px;}
.y1b7_c01268{bottom:268.710000px;}
.y1b3_c01268{bottom:269.565000px;}
.y1bb_c01268{bottom:270.435000px;}
.y1b8_c01268{bottom:271.290000px;}
.y1bc_c01268{bottom:272.160000px;}
.y1b2_c01268{bottom:273.030000px;}
.y1bd_c01268{bottom:273.885000px;}
.y1b6_c01268{bottom:275.610000px;}
.y1ba_c01268{bottom:276.480000px;}
.y1b9_c01268{bottom:277.350000px;}
.y1b4_c01268{bottom:278.205000px;}
.y1bf_c01268{bottom:282.525000px;}
.y1b1_c01268{bottom:287.715000px;}
.y1ac_c01268{bottom:288.570000px;}
.y1af_c01268{bottom:289.440000px;}
.y1ae_c01268{bottom:290.310000px;}
.y1ab_c01268{bottom:291.165000px;}
.y1b0_c01268{bottom:292.035000px;}
.y1ad_c01268{bottom:293.760000px;}
.y1aa_c01268{bottom:295.485000px;}
.y1a7_c01268{bottom:307.590000px;}
.y1a5_c01268{bottom:308.445000px;}
.y1a1_c01268{bottom:309.315000px;}
.y1a8_c01268{bottom:310.170000px;}
.y1a3_c01268{bottom:312.765000px;}
.y1a2_c01268{bottom:314.490000px;}
.y1a0_c01268{bottom:318.810000px;}
.y1a4_c01268{bottom:322.275000px;}
.y1a6_c01268{bottom:326.595000px;}
.y1a9_c01268{bottom:327.450000px;}
.y19e_c01268{bottom:329.190000px;}
.y19d_c01268{bottom:330.045000px;}
.y19f_c01268{bottom:330.915000px;}
.y19c_c01268{bottom:332.640000px;}
.y19b_c01268{bottom:334.365000px;}
.y19a_c01268{bottom:335.235000px;}
.y198_c01268{bottom:349.050000px;}
.y197_c01268{bottom:349.920000px;}
.y196_c01268{bottom:350.790000px;}
.y193_c01268{bottom:352.515000px;}
.y195_c01268{bottom:353.370000px;}
.y194_c01268{bottom:354.240000px;}
.y192_c01268{bottom:355.110000px;}
.y199_c01268{bottom:355.965000px;}
.y190_c01268{bottom:356.835000px;}
.y191_c01268{bottom:357.690000px;}
.y18f_c01268{bottom:368.925000px;}
.y18a_c01268{bottom:369.795000px;}
.y189_c01268{bottom:371.520000px;}
.y188_c01268{bottom:372.390000px;}
.y18d_c01268{bottom:373.245000px;}
.y18c_c01268{bottom:374.115000px;}
.y18e_c01268{bottom:375.840000px;}
.y18b_c01268{bottom:376.710000px;}
.y187_c01268{bottom:379.290000px;}
.y186_c01268{bottom:381.030000px;}
.y180_c01268{bottom:390.525000px;}
.y181_c01268{bottom:391.395000px;}
.y184_c01268{bottom:392.250000px;}
.y183_c01268{bottom:393.120000px;}
.y178_c01268{bottom:394.845000px;}
.y182_c01268{bottom:396.570000px;}
.y17f_c01268{bottom:399.165000px;}
.y17d_c01268{bottom:400.035000px;}
.y17a_c01268{bottom:400.890000px;}
.y17c_c01268{bottom:401.760000px;}
.y17b_c01268{bottom:402.630000px;}
.y17e_c01268{bottom:405.210000px;}
.y185_c01268{bottom:406.950000px;}
.y177_c01268{bottom:410.400000px;}
.y176_c01268{bottom:411.270000px;}
.y179_c01268{bottom:412.125000px;}
.y171_c01268{bottom:412.995000px;}
.y174_c01268{bottom:413.850000px;}
.y173_c01268{bottom:415.590000px;}
.y175_c01268{bottom:416.445000px;}
.y172_c01268{bottom:417.315000px;}
.y170_c01268{bottom:426.810000px;}
.y16e_c01268{bottom:427.680000px;}
.y16a_c01268{bottom:428.550000px;}
.y16d_c01268{bottom:429.405000px;}
.y16b_c01268{bottom:430.275000px;}
.y168_c01268{bottom:431.130000px;}
.y16c_c01268{bottom:433.725000px;}
.y169_c01268{bottom:435.450000px;}
.y16f_c01268{bottom:436.320000px;}
.y165_c01268{bottom:450.150000px;}
.y164_c01268{bottom:451.005000px;}
.y161_c01268{bottom:451.875000px;}
.y163_c01268{bottom:452.730000px;}
.y166_c01268{bottom:453.600000px;}
.y162_c01268{bottom:454.470000px;}
.y167_c01268{bottom:458.790000px;}
.y160_c01268{bottom:469.155000px;}
.y15e_c01268{bottom:470.880000px;}
.y15c_c01268{bottom:472.605000px;}
.y15f_c01268{bottom:475.200000px;}
.y159_c01268{bottom:476.070000px;}
.y15a_c01268{bottom:476.925000px;}
.y15b_c01268{bottom:477.795000px;}
.y15d_c01268{bottom:478.650000px;}
.y154_c01268{bottom:490.755000px;}
.y155_c01268{bottom:491.610000px;}
.y153_c01268{bottom:493.350000px;}
.y152_c01268{bottom:495.930000px;}
.y158_c01268{bottom:497.670000px;}
.y157_c01268{bottom:498.525000px;}
.y156_c01268{bottom:499.395000px;}
.y151_c01268{bottom:510.630000px;}
.y14f_c01268{bottom:512.355000px;}
.y14c_c01268{bottom:513.210000px;}
.y14d_c01268{bottom:514.950000px;}
.y14b_c01268{bottom:516.675000px;}
.y14a_c01268{bottom:517.530000px;}
.y150_c01268{bottom:518.400000px;}
.y14e_c01268{bottom:519.270000px;}
.y149_c01268{bottom:522.720000px;}
.y148_c01268{bottom:526.170000px;}
.y143_c01268{bottom:533.085000px;}
.y146_c01268{bottom:533.955000px;}
.y147_c01268{bottom:535.680000px;}
.y142_c01268{bottom:536.550000px;}
.y145_c01268{bottom:537.405000px;}
.y13e_c01268{bottom:538.275000px;}
.y141_c01268{bottom:539.130000px;}
.y144_c01268{bottom:542.595000px;}
.y140_c01268{bottom:546.915000px;}
.y13f_c01268{bottom:547.770000px;}
.y13c_c01268{bottom:550.365000px;}
.y139_c01268{bottom:551.235000px;}
.y137_c01268{bottom:552.960000px;}
.y136_c01268{bottom:553.830000px;}
.y135_c01268{bottom:554.685000px;}
.y13a_c01268{bottom:558.150000px;}
.y13b_c01268{bottom:559.005000px;}
.y134_c01268{bottom:560.730000px;}
.y13d_c01268{bottom:563.325000px;}
.y138_c01268{bottom:567.645000px;}
.y131_c01268{bottom:571.110000px;}
.y133_c01268{bottom:571.965000px;}
.y130_c01268{bottom:572.835000px;}
.y132_c01268{bottom:579.750000px;}
.y12f_c01268{bottom:590.970000px;}
.y12d_c01268{bottom:593.565000px;}
.y12a_c01268{bottom:595.290000px;}
.y12c_c01268{bottom:596.160000px;}
.y12e_c01268{bottom:597.030000px;}
.y12b_c01268{bottom:598.755000px;}
.y129_c01268{bottom:600.480000px;}
.y125_c01268{bottom:614.310000px;}
.y127_c01268{bottom:615.165000px;}
.y128_c01268{bottom:616.890000px;}
.y126_c01268{bottom:619.485000px;}
.y124_c01268{bottom:620.355000px;}
.y121_c01268{bottom:634.170000px;}
.y123_c01268{bottom:635.040000px;}
.y120_c01268{bottom:635.910000px;}
.y11c_c01268{bottom:636.765000px;}
.y122_c01268{bottom:638.490000px;}
.y11d_c01268{bottom:640.230000px;}
.y11e_c01268{bottom:641.085000px;}
.y11f_c01268{bottom:650.595000px;}
.y11b_c01268{bottom:653.190000px;}
.y115_c01268{bottom:654.045000px;}
.y118_c01268{bottom:654.915000px;}
.y114_c01268{bottom:655.770000px;}
.y113_c01268{bottom:657.510000px;}
.y117_c01268{bottom:659.235000px;}
.y11a_c01268{bottom:660.090000px;}
.y116_c01268{bottom:660.960000px;}
.y112_c01268{bottom:661.830000px;}
.y119_c01268{bottom:668.730000px;}
.y111_c01268{bottom:673.050000px;}
.y10f_c01268{bottom:673.920000px;}
.y10e_c01268{bottom:674.790000px;}
.y10c_c01268{bottom:675.645000px;}
.y110_c01268{bottom:679.110000px;}
.y10d_c01268{bottom:679.965000px;}
.y10b_c01268{bottom:687.750000px;}
.y108_c01268{bottom:689.475000px;}
.y103_c01268{bottom:690.330000px;}
.y109_c01268{bottom:691.200000px;}
.y10a_c01268{bottom:692.070000px;}
.y105_c01268{bottom:692.925000px;}
.y104_c01268{bottom:693.795000px;}
.y106_c01268{bottom:698.115000px;}
.y107_c01268{bottom:699.840000px;}
.y101_c01268{bottom:712.800000px;}
.yfd_c01268{bottom:713.670000px;}
.yff_c01268{bottom:714.525000px;}
.yfb_c01268{bottom:715.395000px;}
.yfc_c01268{bottom:717.120000px;}
.yfe_c01268{bottom:719.715000px;}
.y102_c01268{bottom:720.570000px;}
.y100_c01268{bottom:726.630000px;}
.yfa_c01268{bottom:733.530000px;}
.yf5_c01268{bottom:734.400000px;}
.yf6_c01268{bottom:735.270000px;}
.yf7_c01268{bottom:736.125000px;}
.yf8_c01268{bottom:738.720000px;}
.yf9_c01268{bottom:739.590000px;}
.yf1_c01268{bottom:740.445000px;}
.yf3_c01268{bottom:755.130000px;}
.yf0_c01268{bottom:756.000000px;}
.yef_c01268{bottom:756.870000px;}
.yf4_c01268{bottom:757.725000px;}
.yec_c01268{bottom:758.595000px;}
.yee_c01268{bottom:759.450000px;}
.yed_c01268{bottom:760.320000px;}
.yf2_c01268{bottom:762.045000px;}
.yeb_c01268{bottom:774.150000px;}
.ye8_c01268{bottom:775.005000px;}
.ye6_c01268{bottom:775.875000px;}
.ye9_c01268{bottom:777.600000px;}
.ye7_c01268{bottom:780.195000px;}
.ye5_c01268{bottom:781.050000px;}
.ye4_c01268{bottom:782.790000px;}
.yea_c01268{bottom:783.645000px;}
.ye0_c01268{bottom:795.750000px;}
.ye3_c01268{bottom:796.605000px;}
.ye2_c01268{bottom:797.475000px;}
.ye1_c01268{bottom:798.330000px;}
.ydf_c01268{bottom:801.795000px;}
.yde_c01268{bottom:802.650000px;}
.yd9_c01268{bottom:810.435000px;}
.yd7_c01268{bottom:812.160000px;}
.yda_c01268{bottom:819.075000px;}
.yd8_c01268{bottom:819.930000px;}
.ydb_c01268{bottom:826.845000px;}
.ydc_c01268{bottom:829.440000px;}
.ydd_c01268{bottom:830.310000px;}
.yd5_c01268{bottom:833.760000px;}
.yd2_c01268{bottom:834.630000px;}
.yd3_c01268{bottom:835.485000px;}
.yd1_c01268{bottom:837.210000px;}
.yd0_c01268{bottom:839.805000px;}
.yd4_c01268{bottom:840.675000px;}
.yd6_c01268{bottom:851.040000px;}
.ycf_c01268{bottom:853.635000px;}
.ycd_c01268{bottom:854.490000px;}
.yc8_c01268{bottom:856.230000px;}
.ycc_c01268{bottom:857.085000px;}
.yc9_c01268{bottom:857.955000px;}
.ycb_c01268{bottom:858.810000px;}
.yca_c01268{bottom:859.680000px;}
.yc7_c01268{bottom:861.405000px;}
.yce_c01268{bottom:869.190000px;}
.yc5_c01268{bottom:874.365000px;}
.yc3_c01268{bottom:875.235000px;}
.yc1_c01268{bottom:876.090000px;}
.yc6_c01268{bottom:877.830000px;}
.yc2_c01268{bottom:878.685000px;}
.yc4_c01268{bottom:879.555000px;}
.yc0_c01268{bottom:882.150000px;}
.yba_c01268{bottom:895.110000px;}
.ybb_c01268{bottom:896.835000px;}
.ybe_c01268{bottom:898.560000px;}
.ybf_c01268{bottom:899.430000px;}
.ybd_c01268{bottom:900.285000px;}
.ybc_c01268{bottom:901.155000px;}
.yb9_c01268{bottom:914.115000px;}
.yb8_c01268{bottom:914.970000px;}
.yb7_c01268{bottom:918.435000px;}
.yb4_c01268{bottom:919.290000px;}
.yb5_c01268{bottom:921.030000px;}
.yb6_c01268{bottom:921.885000px;}
.yb1_c01268{bottom:934.845000px;}
.yaf_c01268{bottom:936.570000px;}
.yac_c01268{bottom:937.440000px;}
.yb3_c01268{bottom:938.310000px;}
.yb2_c01268{bottom:940.035000px;}
.yb0_c01268{bottom:942.630000px;}
.yae_c01268{bottom:943.485000px;}
.yad_c01268{bottom:952.995000px;}
.yab_c01268{bottom:956.445000px;}
.ya7_c01268{bottom:957.315000px;}
.ya5_c01268{bottom:959.040000px;}
.ya8_c01268{bottom:961.635000px;}
.ya6_c01268{bottom:962.490000px;}
.yaa_c01268{bottom:969.405000px;}
.ya9_c01268{bottom:972.870000px;}
.ya2_c01268{bottom:973.725000px;}
.ya4_c01268{bottom:975.450000px;}
.ya0_c01268{bottom:977.190000px;}
.y9f_c01268{bottom:978.045000px;}
.ya3_c01268{bottom:979.770000px;}
.ya1_c01268{bottom:981.510000px;}
.y9e_c01268{bottom:982.365000px;}
.y9d_c01268{bottom:983.235000px;}
.y9b_c01268{bottom:995.325000px;}
.y99_c01268{bottom:997.050000px;}
.y9c_c01268{bottom:999.645000px;}
.y9a_c01268{bottom:1002.240000px;}
.y98_c01268{bottom:1003.110000px;}
.y97_c01268{bottom:1011.750000px;}
.y96_c01268{bottom:1016.070000px;}
.y91_c01268{bottom:1017.795000px;}
.y8f_c01268{bottom:1018.650000px;}
.y90_c01268{bottom:1019.520000px;}
.y93_c01268{bottom:1020.390000px;}
.y92_c01268{bottom:1021.245000px;}
.y95_c01268{bottom:1022.970000px;}
.y8e_c01268{bottom:1024.710000px;}
.y94_c01268{bottom:1032.480000px;}
.y8d_c01268{bottom:1034.205000px;}
.y8c_c01268{bottom:1035.075000px;}
.y87_c01268{bottom:1037.670000px;}
.y8b_c01268{bottom:1038.525000px;}
.y89_c01268{bottom:1039.395000px;}
.y8a_c01268{bottom:1040.250000px;}
.y88_c01268{bottom:1042.845000px;}
.y84_c01268{bottom:1057.530000px;}
.y82_c01268{bottom:1058.400000px;}
.y81_c01268{bottom:1059.270000px;}
.y85_c01268{bottom:1060.125000px;}
.y80_c01268{bottom:1060.995000px;}
.y86_c01268{bottom:1061.850000px;}
.y83_c01268{bottom:1063.590000px;}
.y7f_c01268{bottom:1064.445000px;}
.y7e_c01268{bottom:1075.680000px;}
.y79_c01268{bottom:1078.275000px;}
.y7d_c01268{bottom:1080.870000px;}
.y7c_c01268{bottom:1081.725000px;}
.y7b_c01268{bottom:1082.595000px;}
.y78_c01268{bottom:1083.450000px;}
.y7a_c01268{bottom:1086.915000px;}
.y76_c01268{bottom:1096.410000px;}
.y72_c01268{bottom:1098.150000px;}
.y70_c01268{bottom:1099.005000px;}
.y74_c01268{bottom:1099.875000px;}
.y77_c01268{bottom:1100.730000px;}
.y75_c01268{bottom:1101.600000px;}
.y73_c01268{bottom:1103.325000px;}
.y6f_c01268{bottom:1107.645000px;}
.y71_c01268{bottom:1114.560000px;}
.y69_c01268{bottom:1115.430000px;}
.y67_c01268{bottom:1116.285000px;}
.y6a_c01268{bottom:1117.155000px;}
.y68_c01268{bottom:1118.880000px;}
.y6c_c01268{bottom:1120.605000px;}
.y6b_c01268{bottom:1121.475000px;}
.y6d_c01268{bottom:1122.330000px;}
.y6e_c01268{bottom:1124.070000px;}
.y66_c01268{bottom:1130.115000px;}
.y61_c01268{bottom:1137.030000px;}
.y63_c01268{bottom:1137.885000px;}
.y64_c01268{bottom:1139.610000px;}
.y62_c01268{bottom:1142.205000px;}
.y65_c01268{bottom:1155.165000px;}
.y5b_c01268{bottom:1157.760000px;}
.y5c_c01268{bottom:1158.630000px;}
.y5f_c01268{bottom:1161.210000px;}
.y60_c01268{bottom:1162.080000px;}
.y5e_c01268{bottom:1163.805000px;}
.y5d_c01268{bottom:1164.675000px;}
.y58_c01268{bottom:1176.765000px;}
.y56_c01268{bottom:1177.635000px;}
.y53_c01268{bottom:1178.490000px;}
.y54_c01268{bottom:1180.230000px;}
.y57_c01268{bottom:1181.085000px;}
.y52_c01268{bottom:1181.955000px;}
.y55_c01268{bottom:1184.550000px;}
.y59_c01268{bottom:1188.870000px;}
.y5a_c01268{bottom:1194.045000px;}
.y50_c01268{bottom:1194.915000px;}
.y4e_c01268{bottom:1195.770000px;}
.y1e3_c01268{bottom:1197.510000px;}
.y4c_c01268{bottom:1199.235000px;}
.y4f_c01268{bottom:1201.830000px;}
.y4d_c01268{bottom:1204.410000px;}
.y51_c01268{bottom:1205.280000px;}
.y4b_c01268{bottom:1215.645000px;}
.y4a_c01268{bottom:1216.515000px;}
.y48_c01268{bottom:1217.370000px;}
.y45_c01268{bottom:1219.110000px;}
.y46_c01268{bottom:1219.965000px;}
.y44_c01268{bottom:1222.560000px;}
.y49_c01268{bottom:1223.430000px;}
.y47_c01268{bottom:1224.285000px;}
.y41_c01268{bottom:1236.390000px;}
.y3b_c01268{bottom:1237.245000px;}
.y43_c01268{bottom:1238.970000px;}
.y3e_c01268{bottom:1240.710000px;}
.y42_c01268{bottom:1241.565000px;}
.y3c_c01268{bottom:1243.290000px;}
.y40_c01268{bottom:1244.160000px;}
.y3f_c01268{bottom:1245.030000px;}
.y3d_c01268{bottom:1245.885000px;}
.y1e4_c01268{bottom:1247.610000px;}
.y39_c01268{bottom:1251.930000px;}
.y38_c01268{bottom:1255.395000px;}
.y37_c01268{bottom:1257.120000px;}
.y33_c01268{bottom:1257.990000px;}
.y3a_c01268{bottom:1258.845000px;}
.y31_c01268{bottom:1259.715000px;}
.y34_c01268{bottom:1260.570000px;}
.y36_c01268{bottom:1263.165000px;}
.y35_c01268{bottom:1264.890000px;}
.y32_c01268{bottom:1265.760000px;}
.y30_c01268{bottom:1266.630000px;}
.y2e_c01268{bottom:1275.270000px;}
.y29_c01268{bottom:1276.995000px;}
.y2a_c01268{bottom:1277.850000px;}
.y2b_c01268{bottom:1278.720000px;}
.y2d_c01268{bottom:1280.445000px;}
.y2c_c01268{bottom:1281.315000px;}
.y2f_c01268{bottom:1283.040000px;}
.y27_c01268{bottom:1298.595000px;}
.y24_c01268{bottom:1300.320000px;}
.y23_c01268{bottom:1301.190000px;}
.y28_c01268{bottom:1302.045000px;}
.y26_c01268{bottom:1304.640000px;}
.y25_c01268{bottom:1306.365000px;}
.y21_c01268{bottom:1317.600000px;}
.y22_c01268{bottom:1318.470000px;}
.y20_c01268{bottom:1319.325000px;}
.y1f_c01268{bottom:1323.645000px;}
.y1b_c01268{bottom:1324.515000px;}
.y1d_c01268{bottom:1325.370000px;}
.y1c_c01268{bottom:1326.240000px;}
.y1a_c01268{bottom:1327.110000px;}
.y1e_c01268{bottom:1334.010000px;}
.y19_c01268{bottom:1339.200000px;}
.y16_c01268{bottom:1340.070000px;}
.y15_c01268{bottom:1342.650000px;}
.y14_c01268{bottom:1344.390000px;}
.y17_c01268{bottom:1345.245000px;}
.y18_c01268{bottom:1347.840000px;}
.yc_c01268{bottom:1362.525000px;}
.yf_c01268{bottom:1365.120000px;}
.y12_c01268{bottom:1365.990000px;}
.yb_c01268{bottom:1366.845000px;}
.ye_c01268{bottom:1367.715000px;}
.y11_c01268{bottom:1372.890000px;}
.yd_c01268{bottom:1373.760000px;}
.y10_c01268{bottom:1377.210000px;}
.y13_c01268{bottom:1378.950000px;}
.ya_c01268{bottom:1392.765000px;}
.y9_c01268{bottom:1394.490000px;}
.y7_c01268{bottom:1409.190000px;}
.y8_c01268{bottom:1410.915000px;}
.y6_c01268{bottom:1412.640000px;}
.y5_c01268{bottom:1416.090000px;}
.y4_c01268{bottom:1418.685000px;}
.y2_c01268{bottom:1423.005000px;}
.y3_c01268{bottom:1424.730000px;}
.y1_c01268{bottom:1433.370000px;}
.h7_c01268{height:3.110063px;}
.h19_c01268{height:5.399414px;}
.h4_c01268{height:6.209326px;}
.h3_c01268{height:9.340986px;}
.hb_c01268{height:12.418652px;}
.h2_c01268{height:15.550313px;}
.h5_c01268{height:18.681973px;}
.h6_c01268{height:21.759639px;}
.h1e_c01268{height:24.891299px;}
.h1d_c01268{height:27.968965px;}
.h8_c01268{height:31.100625px;}
.h17_c01268{height:34.232285px;}
.h9_c01268{height:37.309951px;}
.h1f_c01268{height:40.441611px;}
.h15_c01268{height:43.519277px;}
.h1b_c01268{height:46.650937px;}
.h18_c01268{height:49.782598px;}
.h16_c01268{height:52.860264px;}
.hc_c01268{height:55.991924px;}
.he_c01268{height:59.069590px;}
.hd_c01268{height:62.201250px;}
.h11_c01268{height:65.332910px;}
.h1a_c01268{height:68.410576px;}
.h13_c01268{height:71.542236px;}
.h1c_c01268{height:74.619902px;}
.ha_c01268{height:77.751563px;}
.hf_c01268{height:80.883223px;}
.h20_c01268{height:83.960889px;}
.h14_c01268{height:87.092549px;}
.h22_c01268{height:90.170215px;}
.h12_c01268{height:93.301875px;}
.h10_c01268{height:96.433535px;}
.h21_c01268{height:121.270840px;}
.h1_c01268{height:1518.750000px;}
.h0_c01268{height:1518.915000px;}
.w0_c01268{width:1079.130000px;}
.w1_c01268{width:1079.250000px;}
.x0_c01268{left:0.000000px;}
.x114_c01268{left:82.080000px;}
.x10a_c01268{left:83.805000px;}
.x111_c01268{left:95.040000px;}
.x10b_c01268{left:102.810000px;}
.x10c_c01268{left:108.000000px;}
.xf0_c01268{left:109.725000px;}
.x103_c01268{left:111.450000px;}
.x49_c01268{left:117.510000px;}
.x112_c01268{left:120.090000px;}
.xf1_c01268{left:121.830000px;}
.x4a_c01268{left:127.005000px;}
.x100_c01268{left:138.240000px;}
.xf2_c01268{left:139.965000px;}
.x104_c01268{left:144.285000px;}
.x123_c01268{left:147.750000px;}
.x4b_c01268{left:150.330000px;}
.x115_c01268{left:155.520000px;}
.x10d_c01268{left:157.245000px;}
.xf3_c01268{left:163.290000px;}
.x10e_c01268{left:165.885000px;}
.x120_c01268{left:169.350000px;}
.xf7_c01268{left:171.930000px;}
.x10f_c01268{left:177.120000px;}
.x4c_c01268{left:178.845000px;}
.xf4_c01268{left:180.570000px;}
.xab_c01268{left:182.310000px;}
.xc3_c01268{left:184.035000px;}
.xf8_c01268{left:185.760000px;}
.xeb_c01268{left:188.355000px;}
.xfa_c01268{left:190.950000px;}
.x122_c01268{left:192.675000px;}
.xac_c01268{left:194.400000px;}
.x117_c01268{left:196.995000px;}
.xe7_c01268{left:198.720000px;}
.x59_c01268{left:200.445000px;}
.x105_c01268{left:203.040000px;}
.xde_c01268{left:204.765000px;}
.x9f_c01268{left:207.360000px;}
.x81_c01268{left:209.955000px;}
.x4d_c01268{left:211.680000px;}
.xbc_c01268{left:214.275000px;}
.x3c_c01268{left:216.870000px;}
.x34_c01268{left:219.450000px;}
.x4e_c01268{left:222.045000px;}
.x119_c01268{left:224.640000px;}
.x28_c01268{left:226.365000px;}
.xe_c01268{left:228.090000px;}
.x1f_c01268{left:229.830000px;}
.x97_c01268{left:232.410000px;}
.x68_c01268{left:235.875000px;}
.x11c_c01268{left:241.050000px;}
.x8d_c01268{left:243.645000px;}
.xd6_c01268{left:245.370000px;}
.xe3_c01268{left:248.835000px;}
.x11d_c01268{left:253.155000px;}
.x42_c01268{left:254.880000px;}
.xcb_c01268{left:256.605000px;}
.xbd_c01268{left:260.070000px;}
.x78_c01268{left:261.795000px;}
.x5a_c01268{left:264.390000px;}
.x29_c01268{left:266.970000px;}
.x82_c01268{left:268.710000px;}
.x76_c01268{left:270.435000px;}
.x83_c01268{left:273.030000px;}
.x70_c01268{left:275.610000px;}
.x43_c01268{left:278.205000px;}
.xa0_c01268{left:282.525000px;}
.x121_c01268{left:288.570000px;}
.xf_c01268{left:291.165000px;}
.x4f_c01268{left:293.760000px;}
.x44_c01268{left:295.485000px;}
.x11a_c01268{left:297.210000px;}
.xc7_c01268{left:298.950000px;}
.xdf_c01268{left:302.400000px;}
.xec_c01268{left:304.125000px;}
.x84_c01268{left:306.720000px;}
.x8e_c01268{left:308.445000px;}
.xad_c01268{left:311.040000px;}
.xd3_c01268{left:314.490000px;}
.x2a_c01268{left:316.230000px;}
.x35_c01268{left:318.810000px;}
.x98_c01268{left:322.275000px;}
.x20_c01268{left:324.870000px;}
.x79_c01268{left:328.320000px;}
.x5b_c01268{left:330.915000px;}
.xd7_c01268{left:332.640000px;}
.x50_c01268{left:334.365000px;}
.x113_c01268{left:336.960000px;}
.x99_c01268{left:338.685000px;}
.xc4_c01268{left:341.280000px;}
.x71_c01268{left:343.875000px;}
.x10_c01268{left:346.470000px;}
.x2b_c01268{left:348.195000px;}
.xb2_c01268{left:349.920000px;}
.x11e_c01268{left:352.515000px;}
.xd4_c01268{left:355.110000px;}
.xcc_c01268{left:357.690000px;}
.xa1_c01268{left:359.430000px;}
.xa4_c01268{left:362.880000px;}
.x11_c01268{left:364.605000px;}
.x11f_c01268{left:367.200000px;}
.x72_c01268{left:371.520000px;}
.x87_c01268{left:375.840000px;}
.xc6_c01268{left:380.160000px;}
.x12_c01268{left:382.755000px;}
.xb_c01268{left:384.480000px;}
.xa6_c01268{left:387.930000px;}
.x51_c01268{left:389.670000px;}
.x36_c01268{left:395.715000px;}
.x13_c01268{left:401.760000px;}
.x7a_c01268{left:404.355000px;}
.xb5_c01268{left:406.080000px;}
.xb3_c01268{left:408.675000px;}
.x21_c01268{left:412.995000px;}
.x5c_c01268{left:415.590000px;}
.xae_c01268{left:419.040000px;}
.x2c_c01268{left:420.765000px;}
.xb6_c01268{left:422.490000px;}
.xcd_c01268{left:425.085000px;}
.x73_c01268{left:427.680000px;}
.xd2_c01268{left:429.405000px;}
.x101_c01268{left:432.000000px;}
.xbe_c01268{left:433.725000px;}
.xd5_c01268{left:435.450000px;}
.x116_c01268{left:439.770000px;}
.x14_c01268{left:444.090000px;}
.x62_c01268{left:449.280000px;}
.x69_c01268{left:451.875000px;}
.xca_c01268{left:453.600000px;}
.x15_c01268{left:455.325000px;}
.xb7_c01268{left:459.645000px;}
.x37_c01268{left:463.110000px;}
.xc5_c01268{left:464.835000px;}
.x16_c01268{left:467.430000px;}
.xe4_c01268{left:469.155000px;}
.xa7_c01268{left:471.750000px;}
.x7b_c01268{left:474.330000px;}
.x3d_c01268{left:476.070000px;}
.x52_c01268{left:477.795000px;}
.xb8_c01268{left:479.520000px;}
.xc_c01268{left:483.840000px;}
.x17_c01268{left:485.565000px;}
.xe5_c01268{left:488.160000px;}
.x22_c01268{left:490.755000px;}
.x93_c01268{left:493.350000px;}
.x9a_c01268{left:496.800000px;}
.x5d_c01268{left:500.250000px;}
.x53_c01268{left:502.845000px;}
.xfb_c01268{left:505.440000px;}
.x18_c01268{left:508.035000px;}
.x45_c01268{left:509.760000px;}
.x106_c01268{left:514.950000px;}
.xf9_c01268{left:518.400000px;}
.x63_c01268{left:520.125000px;}
.xfc_c01268{left:521.850000px;}
.xa8_c01268{left:524.445000px;}
.x19_c01268{left:527.040000px;}
.x8f_c01268{left:528.765000px;}
.x9b_c01268{left:531.360000px;}
.x2_c01268{left:533.955000px;}
.x23_c01268{left:536.550000px;}
.x2d_c01268{left:538.275000px;}
.x3e_c01268{left:540.870000px;}
.xe0_c01268{left:542.595000px;}
.x88_c01268{left:545.190000px;}
.xd_c01268{left:546.915000px;}
.x64_c01268{left:548.640000px;}
.x89_c01268{left:550.365000px;}
.x2e_c01268{left:552.090000px;}
.x24_c01268{left:554.685000px;}
.x3_c01268{left:557.280000px;}
.xed_c01268{left:559.875000px;}
.x107_c01268{left:563.325000px;}
.x4_c01268{left:565.920000px;}
.xe1_c01268{left:569.370000px;}
.x65_c01268{left:571.110000px;}
.x7c_c01268{left:573.690000px;}
.x5_c01268{left:578.880000px;}
.x6_c01268{left:580.605000px;}
.x90_c01268{left:583.200000px;}
.xc8_c01268{left:584.925000px;}
.x8a_c01268{left:587.520000px;}
.x54_c01268{left:589.245000px;}
.x38_c01268{left:591.840000px;}
.x124_c01268{left:594.435000px;}
.x7_c01268{left:596.160000px;}
.x2f_c01268{left:597.885000px;}
.x5e_c01268{left:599.610000px;}
.x108_c01268{left:601.350000px;}
.x1a_c01268{left:603.930000px;}
.x11b_c01268{left:605.670000px;}
.x55_c01268{left:607.395000px;}
.x118_c01268{left:609.120000px;}
.x1_c01268{left:611.715000px;}
.xbf_c01268{left:613.440000px;}
.xcf_c01268{left:615.165000px;}
.x5f_c01268{left:617.760000px;}
.x8b_c01268{left:620.355000px;}
.x6a_c01268{left:622.080000px;}
.x25_c01268{left:624.675000px;}
.x30_c01268{left:627.270000px;}
.x56_c01268{left:628.995000px;}
.xce_c01268{left:631.590000px;}
.xb9_c01268{left:633.315000px;}
.x6b_c01268{left:635.910000px;}
.x8_c01268{left:638.490000px;}
.x109_c01268{left:642.810000px;}
.xf5_c01268{left:644.550000px;}
.x9_c01268{left:646.275000px;}
.xe8_c01268{left:648.000000px;}
.x31_c01268{left:650.595000px;}
.x1b_c01268{left:652.320000px;}
.x57_c01268{left:654.915000px;}
.xd8_c01268{left:656.640000px;}
.x77_c01268{left:659.235000px;}
.x1c_c01268{left:660.960000px;}
.xc0_c01268{left:662.685000px;}
.x91_c01268{left:664.410000px;}
.xa_c01268{left:666.150000px;}
.x7d_c01268{left:667.875000px;}
.x46_c01268{left:669.600000px;}
.x94_c01268{left:672.195000px;}
.xba_c01268{left:673.920000px;}
.xc1_c01268{left:678.240000px;}
.x8c_c01268{left:680.835000px;}
.x1d_c01268{left:683.430000px;}
.xd0_c01268{left:685.155000px;}
.xa9_c01268{left:690.330000px;}
.xaf_c01268{left:692.070000px;}
.x60_c01268{left:695.520000px;}
.xee_c01268{left:698.115000px;}
.xe2_c01268{left:699.840000px;}
.x6c_c01268{left:704.160000px;}
.x32_c01268{left:705.885000px;}
.xd9_c01268{left:708.480000px;}
.x39_c01268{left:710.205000px;}
.xc9_c01268{left:712.800000px;}
.xa2_c01268{left:714.525000px;}
.x3f_c01268{left:717.120000px;}
.x74_c01268{left:719.715000px;}
.xda_c01268{left:722.310000px;}
.xa3_c01268{left:724.890000px;}
.x95_c01268{left:729.210000px;}
.x7e_c01268{left:734.400000px;}
.xe9_c01268{left:736.995000px;}
.x6d_c01268{left:738.720000px;}
.x66_c01268{left:742.170000px;}
.xb0_c01268{left:743.910000px;}
.xb4_c01268{left:747.360000px;}
.xdb_c01268{left:749.085000px;}
.x47_c01268{left:753.405000px;}
.xa5_c01268{left:756.000000px;}
.x96_c01268{left:757.725000px;}
.x9c_c01268{left:759.450000px;}
.xe6_c01268{left:762.045000px;}
.xdc_c01268{left:763.770000px;}
.x85_c01268{left:768.090000px;}
.xaa_c01268{left:773.280000px;}
.x7f_c01268{left:775.005000px;}
.x102_c01268{left:779.325000px;}
.x3a_c01268{left:781.050000px;}
.x61_c01268{left:783.645000px;}
.xbb_c01268{left:785.370000px;}
.xfd_c01268{left:787.110000px;}
.x58_c01268{left:788.835000px;}
.x40_c01268{left:791.430000px;}
.x9d_c01268{left:794.010000px;}
.x33_c01268{left:796.605000px;}
.x3b_c01268{left:798.330000px;}
.x92_c01268{left:800.925000px;}
.x48_c01268{left:810.435000px;}
.x125_c01268{left:812.160000px;}
.xb1_c01268{left:813.885000px;}
.x1e_c01268{left:815.610000px;}
.x80_c01268{left:818.205000px;}
.x26_c01268{left:820.800000px;}
.xc2_c01268{left:824.250000px;}
.xdd_c01268{left:826.845000px;}
.x9e_c01268{left:831.165000px;}
.xfe_c01268{left:835.485000px;}
.xff_c01268{left:841.530000px;}
.xef_c01268{left:844.125000px;}
.x75_c01268{left:846.720000px;}
.x86_c01268{left:848.445000px;}
.xea_c01268{left:851.040000px;}
.x27_c01268{left:852.765000px;}
.x110_c01268{left:854.490000px;}
.x41_c01268{left:857.085000px;}
.x6e_c01268{left:859.680000px;}
.x67_c01268{left:863.130000px;}
.xf6_c01268{left:865.725000px;}
.x6f_c01268{left:872.640000px;}
.xd1_c01268{left:881.280000px;}
.x126_c01268{left:913.245000px;}
.x127_c01268{left:1053.210000px;}
@media print{
.v1_c01268{vertical-align:-3.040000pt;}
.v0_c01268{vertical-align:0.000000pt;}
.ls3_c01268{letter-spacing:0.000000pt;}
.ls0_c01268{letter-spacing:30.349067pt;}
.ls1_c01268{letter-spacing:157.951680pt;}
.ls2_c01268{letter-spacing:558.522667pt;}
.ws1_c01268{word-spacing:-12.959239pt;}
.ws3_c01268{word-spacing:0.000000pt;}
.ws0_c01268{word-spacing:2.969867pt;}
.ws2_c01268{word-spacing:75.413333pt;}
._0_c01268{width:542.504148pt;}
.fs5_c01268{font-size:3.072000pt;}
.fs17_c01268{font-size:5.333333pt;}
.fs2_c01268{font-size:6.133333pt;}
.fs1_c01268{font-size:9.226667pt;}
.fs9_c01268{font-size:12.266667pt;}
.fs0_c01268{font-size:15.360000pt;}
.fs3_c01268{font-size:18.453333pt;}
.fs4_c01268{font-size:21.493333pt;}
.fs1c_c01268{font-size:24.586667pt;}
.fs1b_c01268{font-size:27.626667pt;}
.fs6_c01268{font-size:30.720000pt;}
.fs15_c01268{font-size:33.813333pt;}
.fs7_c01268{font-size:36.853333pt;}
.fs1d_c01268{font-size:39.946667pt;}
.fs13_c01268{font-size:42.986667pt;}
.fs19_c01268{font-size:46.080000pt;}
.fs16_c01268{font-size:49.173333pt;}
.fs14_c01268{font-size:52.213333pt;}
.fsa_c01268{font-size:55.306667pt;}
.fsc_c01268{font-size:58.346667pt;}
.fsb_c01268{font-size:61.440000pt;}
.fsf_c01268{font-size:64.533333pt;}
.fs18_c01268{font-size:67.573333pt;}
.fs11_c01268{font-size:70.666667pt;}
.fs1a_c01268{font-size:73.706667pt;}
.fs8_c01268{font-size:76.800000pt;}
.fsd_c01268{font-size:79.893333pt;}
.fs1e_c01268{font-size:82.933333pt;}
.fs12_c01268{font-size:86.026667pt;}
.fs20_c01268{font-size:89.066667pt;}
.fs10_c01268{font-size:92.160000pt;}
.fse_c01268{font-size:95.253333pt;}
.fs1f_c01268{font-size:119.786667pt;}
.y0_c01268{bottom:0.000000pt;}
.y1e2_c01268{bottom:176.640000pt;}
.y1e1_c01268{bottom:180.480000pt;}
.y1de_c01268{bottom:181.253333pt;}
.y1db_c01268{bottom:182.013333pt;}
.y1df_c01268{bottom:182.786667pt;}
.y1dd_c01268{bottom:183.546667pt;}
.y1da_c01268{bottom:184.320000pt;}
.y1d9_c01268{bottom:185.093333pt;}
.y1dc_c01268{bottom:185.853333pt;}
.y1d8_c01268{bottom:186.626667pt;}
.y1d7_c01268{bottom:187.386667pt;}
.y1d5_c01268{bottom:188.160000pt;}
.y1d4_c01268{bottom:188.933333pt;}
.y1d6_c01268{bottom:192.773333pt;}
.y1e0_c01268{bottom:198.146667pt;}
.y1d3_c01268{bottom:201.213333pt;}
.y1d1_c01268{bottom:201.986667pt;}
.y1ce_c01268{bottom:202.746667pt;}
.y1cd_c01268{bottom:203.520000pt;}
.y1d2_c01268{bottom:206.586667pt;}
.y1d0_c01268{bottom:207.360000pt;}
.y1cf_c01268{bottom:208.133333pt;}
.y1cc_c01268{bottom:208.893333pt;}
.y1cb_c01268{bottom:210.426667pt;}
.y1c9_c01268{bottom:218.106667pt;}
.y1c0_c01268{bottom:218.880000pt;}
.y1c8_c01268{bottom:219.653333pt;}
.y1c3_c01268{bottom:220.413333pt;}
.y1c2_c01268{bottom:221.186667pt;}
.y1c1_c01268{bottom:221.946667pt;}
.y1c5_c01268{bottom:224.253333pt;}
.y1c7_c01268{bottom:225.026667pt;}
.y1c6_c01268{bottom:225.786667pt;}
.y1c4_c01268{bottom:231.933333pt;}
.y1ca_c01268{bottom:235.013333pt;}
.y1be_c01268{bottom:236.546667pt;}
.y1b5_c01268{bottom:238.080000pt;}
.y1b7_c01268{bottom:238.853333pt;}
.y1b3_c01268{bottom:239.613333pt;}
.y1bb_c01268{bottom:240.386667pt;}
.y1b8_c01268{bottom:241.146667pt;}
.y1bc_c01268{bottom:241.920000pt;}
.y1b2_c01268{bottom:242.693333pt;}
.y1bd_c01268{bottom:243.453333pt;}
.y1b6_c01268{bottom:244.986667pt;}
.y1ba_c01268{bottom:245.760000pt;}
.y1b9_c01268{bottom:246.533333pt;}
.y1b4_c01268{bottom:247.293333pt;}
.y1bf_c01268{bottom:251.133333pt;}
.y1b1_c01268{bottom:255.746667pt;}
.y1ac_c01268{bottom:256.506667pt;}
.y1af_c01268{bottom:257.280000pt;}
.y1ae_c01268{bottom:258.053333pt;}
.y1ab_c01268{bottom:258.813333pt;}
.y1b0_c01268{bottom:259.586667pt;}
.y1ad_c01268{bottom:261.120000pt;}
.y1aa_c01268{bottom:262.653333pt;}
.y1a7_c01268{bottom:273.413333pt;}
.y1a5_c01268{bottom:274.173333pt;}
.y1a1_c01268{bottom:274.946667pt;}
.y1a8_c01268{bottom:275.706667pt;}
.y1a3_c01268{bottom:278.013333pt;}
.y1a2_c01268{bottom:279.546667pt;}
.y1a0_c01268{bottom:283.386667pt;}
.y1a4_c01268{bottom:286.466667pt;}
.y1a6_c01268{bottom:290.306667pt;}
.y1a9_c01268{bottom:291.066667pt;}
.y19e_c01268{bottom:292.613333pt;}
.y19d_c01268{bottom:293.373333pt;}
.y19f_c01268{bottom:294.146667pt;}
.y19c_c01268{bottom:295.680000pt;}
.y19b_c01268{bottom:297.213333pt;}
.y19a_c01268{bottom:297.986667pt;}
.y198_c01268{bottom:310.266667pt;}
.y197_c01268{bottom:311.040000pt;}
.y196_c01268{bottom:311.813333pt;}
.y193_c01268{bottom:313.346667pt;}
.y195_c01268{bottom:314.106667pt;}
.y194_c01268{bottom:314.880000pt;}
.y192_c01268{bottom:315.653333pt;}
.y199_c01268{bottom:316.413333pt;}
.y190_c01268{bottom:317.186667pt;}
.y191_c01268{bottom:317.946667pt;}
.y18f_c01268{bottom:327.933333pt;}
.y18a_c01268{bottom:328.706667pt;}
.y189_c01268{bottom:330.240000pt;}
.y188_c01268{bottom:331.013333pt;}
.y18d_c01268{bottom:331.773333pt;}
.y18c_c01268{bottom:332.546667pt;}
.y18e_c01268{bottom:334.080000pt;}
.y18b_c01268{bottom:334.853333pt;}
.y187_c01268{bottom:337.146667pt;}
.y186_c01268{bottom:338.693333pt;}
.y180_c01268{bottom:347.133333pt;}
.y181_c01268{bottom:347.906667pt;}
.y184_c01268{bottom:348.666667pt;}
.y183_c01268{bottom:349.440000pt;}
.y178_c01268{bottom:350.973333pt;}
.y182_c01268{bottom:352.506667pt;}
.y17f_c01268{bottom:354.813333pt;}
.y17d_c01268{bottom:355.586667pt;}
.y17a_c01268{bottom:356.346667pt;}
.y17c_c01268{bottom:357.120000pt;}
.y17b_c01268{bottom:357.893333pt;}
.y17e_c01268{bottom:360.186667pt;}
.y185_c01268{bottom:361.733333pt;}
.y177_c01268{bottom:364.800000pt;}
.y176_c01268{bottom:365.573333pt;}
.y179_c01268{bottom:366.333333pt;}
.y171_c01268{bottom:367.106667pt;}
.y174_c01268{bottom:367.866667pt;}
.y173_c01268{bottom:369.413333pt;}
.y175_c01268{bottom:370.173333pt;}
.y172_c01268{bottom:370.946667pt;}
.y170_c01268{bottom:379.386667pt;}
.y16e_c01268{bottom:380.160000pt;}
.y16a_c01268{bottom:380.933333pt;}
.y16d_c01268{bottom:381.693333pt;}
.y16b_c01268{bottom:382.466667pt;}
.y168_c01268{bottom:383.226667pt;}
.y16c_c01268{bottom:385.533333pt;}
.y169_c01268{bottom:387.066667pt;}
.y16f_c01268{bottom:387.840000pt;}
.y165_c01268{bottom:400.133333pt;}
.y164_c01268{bottom:400.893333pt;}
.y161_c01268{bottom:401.666667pt;}
.y163_c01268{bottom:402.426667pt;}
.y166_c01268{bottom:403.200000pt;}
.y162_c01268{bottom:403.973333pt;}
.y167_c01268{bottom:407.813333pt;}
.y160_c01268{bottom:417.026667pt;}
.y15e_c01268{bottom:418.560000pt;}
.y15c_c01268{bottom:420.093333pt;}
.y15f_c01268{bottom:422.400000pt;}
.y159_c01268{bottom:423.173333pt;}
.y15a_c01268{bottom:423.933333pt;}
.y15b_c01268{bottom:424.706667pt;}
.y15d_c01268{bottom:425.466667pt;}
.y154_c01268{bottom:436.226667pt;}
.y155_c01268{bottom:436.986667pt;}
.y153_c01268{bottom:438.533333pt;}
.y152_c01268{bottom:440.826667pt;}
.y158_c01268{bottom:442.373333pt;}
.y157_c01268{bottom:443.133333pt;}
.y156_c01268{bottom:443.906667pt;}
.y151_c01268{bottom:453.893333pt;}
.y14f_c01268{bottom:455.426667pt;}
.y14c_c01268{bottom:456.186667pt;}
.y14d_c01268{bottom:457.733333pt;}
.y14b_c01268{bottom:459.266667pt;}
.y14a_c01268{bottom:460.026667pt;}
.y150_c01268{bottom:460.800000pt;}
.y14e_c01268{bottom:461.573333pt;}
.y149_c01268{bottom:464.640000pt;}
.y148_c01268{bottom:467.706667pt;}
.y143_c01268{bottom:473.853333pt;}
.y146_c01268{bottom:474.626667pt;}
.y147_c01268{bottom:476.160000pt;}
.y142_c01268{bottom:476.933333pt;}
.y145_c01268{bottom:477.693333pt;}
.y13e_c01268{bottom:478.466667pt;}
.y141_c01268{bottom:479.226667pt;}
.y144_c01268{bottom:482.306667pt;}
.y140_c01268{bottom:486.146667pt;}
.y13f_c01268{bottom:486.906667pt;}
.y13c_c01268{bottom:489.213333pt;}
.y139_c01268{bottom:489.986667pt;}
.y137_c01268{bottom:491.520000pt;}
.y136_c01268{bottom:492.293333pt;}
.y135_c01268{bottom:493.053333pt;}
.y13a_c01268{bottom:496.133333pt;}
.y13b_c01268{bottom:496.893333pt;}
.y134_c01268{bottom:498.426667pt;}
.y13d_c01268{bottom:500.733333pt;}
.y138_c01268{bottom:504.573333pt;}
.y131_c01268{bottom:507.653333pt;}
.y133_c01268{bottom:508.413333pt;}
.y130_c01268{bottom:509.186667pt;}
.y132_c01268{bottom:515.333333pt;}
.y12f_c01268{bottom:525.306667pt;}
.y12d_c01268{bottom:527.613333pt;}
.y12a_c01268{bottom:529.146667pt;}
.y12c_c01268{bottom:529.920000pt;}
.y12e_c01268{bottom:530.693333pt;}
.y12b_c01268{bottom:532.226667pt;}
.y129_c01268{bottom:533.760000pt;}
.y125_c01268{bottom:546.053333pt;}
.y127_c01268{bottom:546.813333pt;}
.y128_c01268{bottom:548.346667pt;}
.y126_c01268{bottom:550.653333pt;}
.y124_c01268{bottom:551.426667pt;}
.y121_c01268{bottom:563.706667pt;}
.y123_c01268{bottom:564.480000pt;}
.y120_c01268{bottom:565.253333pt;}
.y11c_c01268{bottom:566.013333pt;}
.y122_c01268{bottom:567.546667pt;}
.y11d_c01268{bottom:569.093333pt;}
.y11e_c01268{bottom:569.853333pt;}
.y11f_c01268{bottom:578.306667pt;}
.y11b_c01268{bottom:580.613333pt;}
.y115_c01268{bottom:581.373333pt;}
.y118_c01268{bottom:582.146667pt;}
.y114_c01268{bottom:582.906667pt;}
.y113_c01268{bottom:584.453333pt;}
.y117_c01268{bottom:585.986667pt;}
.y11a_c01268{bottom:586.746667pt;}
.y116_c01268{bottom:587.520000pt;}
.y112_c01268{bottom:588.293333pt;}
.y119_c01268{bottom:594.426667pt;}
.y111_c01268{bottom:598.266667pt;}
.y10f_c01268{bottom:599.040000pt;}
.y10e_c01268{bottom:599.813333pt;}
.y10c_c01268{bottom:600.573333pt;}
.y110_c01268{bottom:603.653333pt;}
.y10d_c01268{bottom:604.413333pt;}
.y10b_c01268{bottom:611.333333pt;}
.y108_c01268{bottom:612.866667pt;}
.y103_c01268{bottom:613.626667pt;}
.y109_c01268{bottom:614.400000pt;}
.y10a_c01268{bottom:615.173333pt;}
.y105_c01268{bottom:615.933333pt;}
.y104_c01268{bottom:616.706667pt;}
.y106_c01268{bottom:620.546667pt;}
.y107_c01268{bottom:622.080000pt;}
.y101_c01268{bottom:633.600000pt;}
.yfd_c01268{bottom:634.373333pt;}
.yff_c01268{bottom:635.133333pt;}
.yfb_c01268{bottom:635.906667pt;}
.yfc_c01268{bottom:637.440000pt;}
.yfe_c01268{bottom:639.746667pt;}
.y102_c01268{bottom:640.506667pt;}
.y100_c01268{bottom:645.893333pt;}
.yfa_c01268{bottom:652.026667pt;}
.yf5_c01268{bottom:652.800000pt;}
.yf6_c01268{bottom:653.573333pt;}
.yf7_c01268{bottom:654.333333pt;}
.yf8_c01268{bottom:656.640000pt;}
.yf9_c01268{bottom:657.413333pt;}
.yf1_c01268{bottom:658.173333pt;}
.yf3_c01268{bottom:671.226667pt;}
.yf0_c01268{bottom:672.000000pt;}
.yef_c01268{bottom:672.773333pt;}
.yf4_c01268{bottom:673.533333pt;}
.yec_c01268{bottom:674.306667pt;}
.yee_c01268{bottom:675.066667pt;}
.yed_c01268{bottom:675.840000pt;}
.yf2_c01268{bottom:677.373333pt;}
.yeb_c01268{bottom:688.133333pt;}
.ye8_c01268{bottom:688.893333pt;}
.ye6_c01268{bottom:689.666667pt;}
.ye9_c01268{bottom:691.200000pt;}
.ye7_c01268{bottom:693.506667pt;}
.ye5_c01268{bottom:694.266667pt;}
.ye4_c01268{bottom:695.813333pt;}
.yea_c01268{bottom:696.573333pt;}
.ye0_c01268{bottom:707.333333pt;}
.ye3_c01268{bottom:708.093333pt;}
.ye2_c01268{bottom:708.866667pt;}
.ye1_c01268{bottom:709.626667pt;}
.ydf_c01268{bottom:712.706667pt;}
.yde_c01268{bottom:713.466667pt;}
.yd9_c01268{bottom:720.386667pt;}
.yd7_c01268{bottom:721.920000pt;}
.yda_c01268{bottom:728.066667pt;}
.yd8_c01268{bottom:728.826667pt;}
.ydb_c01268{bottom:734.973333pt;}
.ydc_c01268{bottom:737.280000pt;}
.ydd_c01268{bottom:738.053333pt;}
.yd5_c01268{bottom:741.120000pt;}
.yd2_c01268{bottom:741.893333pt;}
.yd3_c01268{bottom:742.653333pt;}
.yd1_c01268{bottom:744.186667pt;}
.yd0_c01268{bottom:746.493333pt;}
.yd4_c01268{bottom:747.266667pt;}
.yd6_c01268{bottom:756.480000pt;}
.ycf_c01268{bottom:758.786667pt;}
.ycd_c01268{bottom:759.546667pt;}
.yc8_c01268{bottom:761.093333pt;}
.ycc_c01268{bottom:761.853333pt;}
.yc9_c01268{bottom:762.626667pt;}
.ycb_c01268{bottom:763.386667pt;}
.yca_c01268{bottom:764.160000pt;}
.yc7_c01268{bottom:765.693333pt;}
.yce_c01268{bottom:772.613333pt;}
.yc5_c01268{bottom:777.213333pt;}
.yc3_c01268{bottom:777.986667pt;}
.yc1_c01268{bottom:778.746667pt;}
.yc6_c01268{bottom:780.293333pt;}
.yc2_c01268{bottom:781.053333pt;}
.yc4_c01268{bottom:781.826667pt;}
.yc0_c01268{bottom:784.133333pt;}
.yba_c01268{bottom:795.653333pt;}
.ybb_c01268{bottom:797.186667pt;}
.ybe_c01268{bottom:798.720000pt;}
.ybf_c01268{bottom:799.493333pt;}
.ybd_c01268{bottom:800.253333pt;}
.ybc_c01268{bottom:801.026667pt;}
.yb9_c01268{bottom:812.546667pt;}
.yb8_c01268{bottom:813.306667pt;}
.yb7_c01268{bottom:816.386667pt;}
.yb4_c01268{bottom:817.146667pt;}
.yb5_c01268{bottom:818.693333pt;}
.yb6_c01268{bottom:819.453333pt;}
.yb1_c01268{bottom:830.973333pt;}
.yaf_c01268{bottom:832.506667pt;}
.yac_c01268{bottom:833.280000pt;}
.yb3_c01268{bottom:834.053333pt;}
.yb2_c01268{bottom:835.586667pt;}
.yb0_c01268{bottom:837.893333pt;}
.yae_c01268{bottom:838.653333pt;}
.yad_c01268{bottom:847.106667pt;}
.yab_c01268{bottom:850.173333pt;}
.ya7_c01268{bottom:850.946667pt;}
.ya5_c01268{bottom:852.480000pt;}
.ya8_c01268{bottom:854.786667pt;}
.ya6_c01268{bottom:855.546667pt;}
.yaa_c01268{bottom:861.693333pt;}
.ya9_c01268{bottom:864.773333pt;}
.ya2_c01268{bottom:865.533333pt;}
.ya4_c01268{bottom:867.066667pt;}
.ya0_c01268{bottom:868.613333pt;}
.y9f_c01268{bottom:869.373333pt;}
.ya3_c01268{bottom:870.906667pt;}
.ya1_c01268{bottom:872.453333pt;}
.y9e_c01268{bottom:873.213333pt;}
.y9d_c01268{bottom:873.986667pt;}
.y9b_c01268{bottom:884.733333pt;}
.y99_c01268{bottom:886.266667pt;}
.y9c_c01268{bottom:888.573333pt;}
.y9a_c01268{bottom:890.880000pt;}
.y98_c01268{bottom:891.653333pt;}
.y97_c01268{bottom:899.333333pt;}
.y96_c01268{bottom:903.173333pt;}
.y91_c01268{bottom:904.706667pt;}
.y8f_c01268{bottom:905.466667pt;}
.y90_c01268{bottom:906.240000pt;}
.y93_c01268{bottom:907.013333pt;}
.y92_c01268{bottom:907.773333pt;}
.y95_c01268{bottom:909.306667pt;}
.y8e_c01268{bottom:910.853333pt;}
.y94_c01268{bottom:917.760000pt;}
.y8d_c01268{bottom:919.293333pt;}
.y8c_c01268{bottom:920.066667pt;}
.y87_c01268{bottom:922.373333pt;}
.y8b_c01268{bottom:923.133333pt;}
.y89_c01268{bottom:923.906667pt;}
.y8a_c01268{bottom:924.666667pt;}
.y88_c01268{bottom:926.973333pt;}
.y84_c01268{bottom:940.026667pt;}
.y82_c01268{bottom:940.800000pt;}
.y81_c01268{bottom:941.573333pt;}
.y85_c01268{bottom:942.333333pt;}
.y80_c01268{bottom:943.106667pt;}
.y86_c01268{bottom:943.866667pt;}
.y83_c01268{bottom:945.413333pt;}
.y7f_c01268{bottom:946.173333pt;}
.y7e_c01268{bottom:956.160000pt;}
.y79_c01268{bottom:958.466667pt;}
.y7d_c01268{bottom:960.773333pt;}
.y7c_c01268{bottom:961.533333pt;}
.y7b_c01268{bottom:962.306667pt;}
.y78_c01268{bottom:963.066667pt;}
.y7a_c01268{bottom:966.146667pt;}
.y76_c01268{bottom:974.586667pt;}
.y72_c01268{bottom:976.133333pt;}
.y70_c01268{bottom:976.893333pt;}
.y74_c01268{bottom:977.666667pt;}
.y77_c01268{bottom:978.426667pt;}
.y75_c01268{bottom:979.200000pt;}
.y73_c01268{bottom:980.733333pt;}
.y6f_c01268{bottom:984.573333pt;}
.y71_c01268{bottom:990.720000pt;}
.y69_c01268{bottom:991.493333pt;}
.y67_c01268{bottom:992.253333pt;}
.y6a_c01268{bottom:993.026667pt;}
.y68_c01268{bottom:994.560000pt;}
.y6c_c01268{bottom:996.093333pt;}
.y6b_c01268{bottom:996.866667pt;}
.y6d_c01268{bottom:997.626667pt;}
.y6e_c01268{bottom:999.173333pt;}
.y66_c01268{bottom:1004.546667pt;}
.y61_c01268{bottom:1010.693333pt;}
.y63_c01268{bottom:1011.453333pt;}
.y64_c01268{bottom:1012.986667pt;}
.y62_c01268{bottom:1015.293333pt;}
.y65_c01268{bottom:1026.813333pt;}
.y5b_c01268{bottom:1029.120000pt;}
.y5c_c01268{bottom:1029.893333pt;}
.y5f_c01268{bottom:1032.186667pt;}
.y60_c01268{bottom:1032.960000pt;}
.y5e_c01268{bottom:1034.493333pt;}
.y5d_c01268{bottom:1035.266667pt;}
.y58_c01268{bottom:1046.013333pt;}
.y56_c01268{bottom:1046.786667pt;}
.y53_c01268{bottom:1047.546667pt;}
.y54_c01268{bottom:1049.093333pt;}
.y57_c01268{bottom:1049.853333pt;}
.y52_c01268{bottom:1050.626667pt;}
.y55_c01268{bottom:1052.933333pt;}
.y59_c01268{bottom:1056.773333pt;}
.y5a_c01268{bottom:1061.373333pt;}
.y50_c01268{bottom:1062.146667pt;}
.y4e_c01268{bottom:1062.906667pt;}
.y1e3_c01268{bottom:1064.453333pt;}
.y4c_c01268{bottom:1065.986667pt;}
.y4f_c01268{bottom:1068.293333pt;}
.y4d_c01268{bottom:1070.586667pt;}
.y51_c01268{bottom:1071.360000pt;}
.y4b_c01268{bottom:1080.573333pt;}
.y4a_c01268{bottom:1081.346667pt;}
.y48_c01268{bottom:1082.106667pt;}
.y45_c01268{bottom:1083.653333pt;}
.y46_c01268{bottom:1084.413333pt;}
.y44_c01268{bottom:1086.720000pt;}
.y49_c01268{bottom:1087.493333pt;}
.y47_c01268{bottom:1088.253333pt;}
.y41_c01268{bottom:1099.013333pt;}
.y3b_c01268{bottom:1099.773333pt;}
.y43_c01268{bottom:1101.306667pt;}
.y3e_c01268{bottom:1102.853333pt;}
.y42_c01268{bottom:1103.613333pt;}
.y3c_c01268{bottom:1105.146667pt;}
.y40_c01268{bottom:1105.920000pt;}
.y3f_c01268{bottom:1106.693333pt;}
.y3d_c01268{bottom:1107.453333pt;}
.y1e4_c01268{bottom:1108.986667pt;}
.y39_c01268{bottom:1112.826667pt;}
.y38_c01268{bottom:1115.906667pt;}
.y37_c01268{bottom:1117.440000pt;}
.y33_c01268{bottom:1118.213333pt;}
.y3a_c01268{bottom:1118.973333pt;}
.y31_c01268{bottom:1119.746667pt;}
.y34_c01268{bottom:1120.506667pt;}
.y36_c01268{bottom:1122.813333pt;}
.y35_c01268{bottom:1124.346667pt;}
.y32_c01268{bottom:1125.120000pt;}
.y30_c01268{bottom:1125.893333pt;}
.y2e_c01268{bottom:1133.573333pt;}
.y29_c01268{bottom:1135.106667pt;}
.y2a_c01268{bottom:1135.866667pt;}
.y2b_c01268{bottom:1136.640000pt;}
.y2d_c01268{bottom:1138.173333pt;}
.y2c_c01268{bottom:1138.946667pt;}
.y2f_c01268{bottom:1140.480000pt;}
.y27_c01268{bottom:1154.306667pt;}
.y24_c01268{bottom:1155.840000pt;}
.y23_c01268{bottom:1156.613333pt;}
.y28_c01268{bottom:1157.373333pt;}
.y26_c01268{bottom:1159.680000pt;}
.y25_c01268{bottom:1161.213333pt;}
.y21_c01268{bottom:1171.200000pt;}
.y22_c01268{bottom:1171.973333pt;}
.y20_c01268{bottom:1172.733333pt;}
.y1f_c01268{bottom:1176.573333pt;}
.y1b_c01268{bottom:1177.346667pt;}
.y1d_c01268{bottom:1178.106667pt;}
.y1c_c01268{bottom:1178.880000pt;}
.y1a_c01268{bottom:1179.653333pt;}
.y1e_c01268{bottom:1185.786667pt;}
.y19_c01268{bottom:1190.400000pt;}
.y16_c01268{bottom:1191.173333pt;}
.y15_c01268{bottom:1193.466667pt;}
.y14_c01268{bottom:1195.013333pt;}
.y17_c01268{bottom:1195.773333pt;}
.y18_c01268{bottom:1198.080000pt;}
.yc_c01268{bottom:1211.133333pt;}
.yf_c01268{bottom:1213.440000pt;}
.y12_c01268{bottom:1214.213333pt;}
.yb_c01268{bottom:1214.973333pt;}
.ye_c01268{bottom:1215.746667pt;}
.y11_c01268{bottom:1220.346667pt;}
.yd_c01268{bottom:1221.120000pt;}
.y10_c01268{bottom:1224.186667pt;}
.y13_c01268{bottom:1225.733333pt;}
.ya_c01268{bottom:1238.013333pt;}
.y9_c01268{bottom:1239.546667pt;}
.y7_c01268{bottom:1252.613333pt;}
.y8_c01268{bottom:1254.146667pt;}
.y6_c01268{bottom:1255.680000pt;}
.y5_c01268{bottom:1258.746667pt;}
.y4_c01268{bottom:1261.053333pt;}
.y2_c01268{bottom:1264.893333pt;}
.y3_c01268{bottom:1266.426667pt;}
.y1_c01268{bottom:1274.106667pt;}
.h7_c01268{height:2.764500pt;}
.h19_c01268{height:4.799479pt;}
.h4_c01268{height:5.519401pt;}
.h3_c01268{height:8.303099pt;}
.hb_c01268{height:11.038802pt;}
.h2_c01268{height:13.822500pt;}
.h5_c01268{height:16.606198pt;}
.h6_c01268{height:19.341901pt;}
.h1e_c01268{height:22.125599pt;}
.h1d_c01268{height:24.861302pt;}
.h8_c01268{height:27.645000pt;}
.h17_c01268{height:30.428698pt;}
.h9_c01268{height:33.164401pt;}
.h1f_c01268{height:35.948099pt;}
.h15_c01268{height:38.683802pt;}
.h1b_c01268{height:41.467500pt;}
.h18_c01268{height:44.251198pt;}
.h16_c01268{height:46.986901pt;}
.hc_c01268{height:49.770599pt;}
.he_c01268{height:52.506302pt;}
.hd_c01268{height:55.290000pt;}
.h11_c01268{height:58.073698pt;}
.h1a_c01268{height:60.809401pt;}
.h13_c01268{height:63.593099pt;}
.h1c_c01268{height:66.328802pt;}
.ha_c01268{height:69.112500pt;}
.hf_c01268{height:71.896198pt;}
.h20_c01268{height:74.631901pt;}
.h14_c01268{height:77.415599pt;}
.h22_c01268{height:80.151302pt;}
.h12_c01268{height:82.935000pt;}
.h10_c01268{height:85.718698pt;}
.h21_c01268{height:107.796302pt;}
.h1_c01268{height:1350.000000pt;}
.h0_c01268{height:1350.146667pt;}
.w0_c01268{width:959.226667pt;}
.w1_c01268{width:959.333333pt;}
.x0_c01268{left:0.000000pt;}
.x114_c01268{left:72.960000pt;}
.x10a_c01268{left:74.493333pt;}
.x111_c01268{left:84.480000pt;}
.x10b_c01268{left:91.386667pt;}
.x10c_c01268{left:96.000000pt;}
.xf0_c01268{left:97.533333pt;}
.x103_c01268{left:99.066667pt;}
.x49_c01268{left:104.453333pt;}
.x112_c01268{left:106.746667pt;}
.xf1_c01268{left:108.293333pt;}
.x4a_c01268{left:112.893333pt;}
.x100_c01268{left:122.880000pt;}
.xf2_c01268{left:124.413333pt;}
.x104_c01268{left:128.253333pt;}
.x123_c01268{left:131.333333pt;}
.x4b_c01268{left:133.626667pt;}
.x115_c01268{left:138.240000pt;}
.x10d_c01268{left:139.773333pt;}
.xf3_c01268{left:145.146667pt;}
.x10e_c01268{left:147.453333pt;}
.x120_c01268{left:150.533333pt;}
.xf7_c01268{left:152.826667pt;}
.x10f_c01268{left:157.440000pt;}
.x4c_c01268{left:158.973333pt;}
.xf4_c01268{left:160.506667pt;}
.xab_c01268{left:162.053333pt;}
.xc3_c01268{left:163.586667pt;}
.xf8_c01268{left:165.120000pt;}
.xeb_c01268{left:167.426667pt;}
.xfa_c01268{left:169.733333pt;}
.x122_c01268{left:171.266667pt;}
.xac_c01268{left:172.800000pt;}
.x117_c01268{left:175.106667pt;}
.xe7_c01268{left:176.640000pt;}
.x59_c01268{left:178.173333pt;}
.x105_c01268{left:180.480000pt;}
.xde_c01268{left:182.013333pt;}
.x9f_c01268{left:184.320000pt;}
.x81_c01268{left:186.626667pt;}
.x4d_c01268{left:188.160000pt;}
.xbc_c01268{left:190.466667pt;}
.x3c_c01268{left:192.773333pt;}
.x34_c01268{left:195.066667pt;}
.x4e_c01268{left:197.373333pt;}
.x119_c01268{left:199.680000pt;}
.x28_c01268{left:201.213333pt;}
.xe_c01268{left:202.746667pt;}
.x1f_c01268{left:204.293333pt;}
.x97_c01268{left:206.586667pt;}
.x68_c01268{left:209.666667pt;}
.x11c_c01268{left:214.266667pt;}
.x8d_c01268{left:216.573333pt;}
.xd6_c01268{left:218.106667pt;}
.xe3_c01268{left:221.186667pt;}
.x11d_c01268{left:225.026667pt;}
.x42_c01268{left:226.560000pt;}
.xcb_c01268{left:228.093333pt;}
.xbd_c01268{left:231.173333pt;}
.x78_c01268{left:232.706667pt;}
.x5a_c01268{left:235.013333pt;}
.x29_c01268{left:237.306667pt;}
.x82_c01268{left:238.853333pt;}
.x76_c01268{left:240.386667pt;}
.x83_c01268{left:242.693333pt;}
.x70_c01268{left:244.986667pt;}
.x43_c01268{left:247.293333pt;}
.xa0_c01268{left:251.133333pt;}
.x121_c01268{left:256.506667pt;}
.xf_c01268{left:258.813333pt;}
.x4f_c01268{left:261.120000pt;}
.x44_c01268{left:262.653333pt;}
.x11a_c01268{left:264.186667pt;}
.xc7_c01268{left:265.733333pt;}
.xdf_c01268{left:268.800000pt;}
.xec_c01268{left:270.333333pt;}
.x84_c01268{left:272.640000pt;}
.x8e_c01268{left:274.173333pt;}
.xad_c01268{left:276.480000pt;}
.xd3_c01268{left:279.546667pt;}
.x2a_c01268{left:281.093333pt;}
.x35_c01268{left:283.386667pt;}
.x98_c01268{left:286.466667pt;}
.x20_c01268{left:288.773333pt;}
.x79_c01268{left:291.840000pt;}
.x5b_c01268{left:294.146667pt;}
.xd7_c01268{left:295.680000pt;}
.x50_c01268{left:297.213333pt;}
.x113_c01268{left:299.520000pt;}
.x99_c01268{left:301.053333pt;}
.xc4_c01268{left:303.360000pt;}
.x71_c01268{left:305.666667pt;}
.x10_c01268{left:307.973333pt;}
.x2b_c01268{left:309.506667pt;}
.xb2_c01268{left:311.040000pt;}
.x11e_c01268{left:313.346667pt;}
.xd4_c01268{left:315.653333pt;}
.xcc_c01268{left:317.946667pt;}
.xa1_c01268{left:319.493333pt;}
.xa4_c01268{left:322.560000pt;}
.x11_c01268{left:324.093333pt;}
.x11f_c01268{left:326.400000pt;}
.x72_c01268{left:330.240000pt;}
.x87_c01268{left:334.080000pt;}
.xc6_c01268{left:337.920000pt;}
.x12_c01268{left:340.226667pt;}
.xb_c01268{left:341.760000pt;}
.xa6_c01268{left:344.826667pt;}
.x51_c01268{left:346.373333pt;}
.x36_c01268{left:351.746667pt;}
.x13_c01268{left:357.120000pt;}
.x7a_c01268{left:359.426667pt;}
.xb5_c01268{left:360.960000pt;}
.xb3_c01268{left:363.266667pt;}
.x21_c01268{left:367.106667pt;}
.x5c_c01268{left:369.413333pt;}
.xae_c01268{left:372.480000pt;}
.x2c_c01268{left:374.013333pt;}
.xb6_c01268{left:375.546667pt;}
.xcd_c01268{left:377.853333pt;}
.x73_c01268{left:380.160000pt;}
.xd2_c01268{left:381.693333pt;}
.x101_c01268{left:384.000000pt;}
.xbe_c01268{left:385.533333pt;}
.xd5_c01268{left:387.066667pt;}
.x116_c01268{left:390.906667pt;}
.x14_c01268{left:394.746667pt;}
.x62_c01268{left:399.360000pt;}
.x69_c01268{left:401.666667pt;}
.xca_c01268{left:403.200000pt;}
.x15_c01268{left:404.733333pt;}
.xb7_c01268{left:408.573333pt;}
.x37_c01268{left:411.653333pt;}
.xc5_c01268{left:413.186667pt;}
.x16_c01268{left:415.493333pt;}
.xe4_c01268{left:417.026667pt;}
.xa7_c01268{left:419.333333pt;}
.x7b_c01268{left:421.626667pt;}
.x3d_c01268{left:423.173333pt;}
.x52_c01268{left:424.706667pt;}
.xb8_c01268{left:426.240000pt;}
.xc_c01268{left:430.080000pt;}
.x17_c01268{left:431.613333pt;}
.xe5_c01268{left:433.920000pt;}
.x22_c01268{left:436.226667pt;}
.x93_c01268{left:438.533333pt;}
.x9a_c01268{left:441.600000pt;}
.x5d_c01268{left:444.666667pt;}
.x53_c01268{left:446.973333pt;}
.xfb_c01268{left:449.280000pt;}
.x18_c01268{left:451.586667pt;}
.x45_c01268{left:453.120000pt;}
.x106_c01268{left:457.733333pt;}
.xf9_c01268{left:460.800000pt;}
.x63_c01268{left:462.333333pt;}
.xfc_c01268{left:463.866667pt;}
.xa8_c01268{left:466.173333pt;}
.x19_c01268{left:468.480000pt;}
.x8f_c01268{left:470.013333pt;}
.x9b_c01268{left:472.320000pt;}
.x2_c01268{left:474.626667pt;}
.x23_c01268{left:476.933333pt;}
.x2d_c01268{left:478.466667pt;}
.x3e_c01268{left:480.773333pt;}
.xe0_c01268{left:482.306667pt;}
.x88_c01268{left:484.613333pt;}
.xd_c01268{left:486.146667pt;}
.x64_c01268{left:487.680000pt;}
.x89_c01268{left:489.213333pt;}
.x2e_c01268{left:490.746667pt;}
.x24_c01268{left:493.053333pt;}
.x3_c01268{left:495.360000pt;}
.xed_c01268{left:497.666667pt;}
.x107_c01268{left:500.733333pt;}
.x4_c01268{left:503.040000pt;}
.xe1_c01268{left:506.106667pt;}
.x65_c01268{left:507.653333pt;}
.x7c_c01268{left:509.946667pt;}
.x5_c01268{left:514.560000pt;}
.x6_c01268{left:516.093333pt;}
.x90_c01268{left:518.400000pt;}
.xc8_c01268{left:519.933333pt;}
.x8a_c01268{left:522.240000pt;}
.x54_c01268{left:523.773333pt;}
.x38_c01268{left:526.080000pt;}
.x124_c01268{left:528.386667pt;}
.x7_c01268{left:529.920000pt;}
.x2f_c01268{left:531.453333pt;}
.x5e_c01268{left:532.986667pt;}
.x108_c01268{left:534.533333pt;}
.x1a_c01268{left:536.826667pt;}
.x11b_c01268{left:538.373333pt;}
.x55_c01268{left:539.906667pt;}
.x118_c01268{left:541.440000pt;}
.x1_c01268{left:543.746667pt;}
.xbf_c01268{left:545.280000pt;}
.xcf_c01268{left:546.813333pt;}
.x5f_c01268{left:549.120000pt;}
.x8b_c01268{left:551.426667pt;}
.x6a_c01268{left:552.960000pt;}
.x25_c01268{left:555.266667pt;}
.x30_c01268{left:557.573333pt;}
.x56_c01268{left:559.106667pt;}
.xce_c01268{left:561.413333pt;}
.xb9_c01268{left:562.946667pt;}
.x6b_c01268{left:565.253333pt;}
.x8_c01268{left:567.546667pt;}
.x109_c01268{left:571.386667pt;}
.xf5_c01268{left:572.933333pt;}
.x9_c01268{left:574.466667pt;}
.xe8_c01268{left:576.000000pt;}
.x31_c01268{left:578.306667pt;}
.x1b_c01268{left:579.840000pt;}
.x57_c01268{left:582.146667pt;}
.xd8_c01268{left:583.680000pt;}
.x77_c01268{left:585.986667pt;}
.x1c_c01268{left:587.520000pt;}
.xc0_c01268{left:589.053333pt;}
.x91_c01268{left:590.586667pt;}
.xa_c01268{left:592.133333pt;}
.x7d_c01268{left:593.666667pt;}
.x46_c01268{left:595.200000pt;}
.x94_c01268{left:597.506667pt;}
.xba_c01268{left:599.040000pt;}
.xc1_c01268{left:602.880000pt;}
.x8c_c01268{left:605.186667pt;}
.x1d_c01268{left:607.493333pt;}
.xd0_c01268{left:609.026667pt;}
.xa9_c01268{left:613.626667pt;}
.xaf_c01268{left:615.173333pt;}
.x60_c01268{left:618.240000pt;}
.xee_c01268{left:620.546667pt;}
.xe2_c01268{left:622.080000pt;}
.x6c_c01268{left:625.920000pt;}
.x32_c01268{left:627.453333pt;}
.xd9_c01268{left:629.760000pt;}
.x39_c01268{left:631.293333pt;}
.xc9_c01268{left:633.600000pt;}
.xa2_c01268{left:635.133333pt;}
.x3f_c01268{left:637.440000pt;}
.x74_c01268{left:639.746667pt;}
.xda_c01268{left:642.053333pt;}
.xa3_c01268{left:644.346667pt;}
.x95_c01268{left:648.186667pt;}
.x7e_c01268{left:652.800000pt;}
.xe9_c01268{left:655.106667pt;}
.x6d_c01268{left:656.640000pt;}
.x66_c01268{left:659.706667pt;}
.xb0_c01268{left:661.253333pt;}
.xb4_c01268{left:664.320000pt;}
.xdb_c01268{left:665.853333pt;}
.x47_c01268{left:669.693333pt;}
.xa5_c01268{left:672.000000pt;}
.x96_c01268{left:673.533333pt;}
.x9c_c01268{left:675.066667pt;}
.xe6_c01268{left:677.373333pt;}
.xdc_c01268{left:678.906667pt;}
.x85_c01268{left:682.746667pt;}
.xaa_c01268{left:687.360000pt;}
.x7f_c01268{left:688.893333pt;}
.x102_c01268{left:692.733333pt;}
.x3a_c01268{left:694.266667pt;}
.x61_c01268{left:696.573333pt;}
.xbb_c01268{left:698.106667pt;}
.xfd_c01268{left:699.653333pt;}
.x58_c01268{left:701.186667pt;}
.x40_c01268{left:703.493333pt;}
.x9d_c01268{left:705.786667pt;}
.x33_c01268{left:708.093333pt;}
.x3b_c01268{left:709.626667pt;}
.x92_c01268{left:711.933333pt;}
.x48_c01268{left:720.386667pt;}
.x125_c01268{left:721.920000pt;}
.xb1_c01268{left:723.453333pt;}
.x1e_c01268{left:724.986667pt;}
.x80_c01268{left:727.293333pt;}
.x26_c01268{left:729.600000pt;}
.xc2_c01268{left:732.666667pt;}
.xdd_c01268{left:734.973333pt;}
.x9e_c01268{left:738.813333pt;}
.xfe_c01268{left:742.653333pt;}
.xff_c01268{left:748.026667pt;}
.xef_c01268{left:750.333333pt;}
.x75_c01268{left:752.640000pt;}
.x86_c01268{left:754.173333pt;}
.xea_c01268{left:756.480000pt;}
.x27_c01268{left:758.013333pt;}
.x110_c01268{left:759.546667pt;}
.x41_c01268{left:761.853333pt;}
.x6e_c01268{left:764.160000pt;}
.x67_c01268{left:767.226667pt;}
.xf6_c01268{left:769.533333pt;}
.x6f_c01268{left:775.680000pt;}
.xd1_c01268{left:783.360000pt;}
.x126_c01268{left:811.773333pt;}
.x127_c01268{left:936.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4a5f64c78ffd96189d7febf.woff2')format("woff");}.ff1_c01269{font-family:ff1_c01269;line-height:1.109863;font-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_c01269{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c01269{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c01269{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.m2_c01269{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);}
.mc_c01269{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01269{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);}
.ma_c01269{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7_c01269{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);}
.m8_c01269{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);}
.m4_c01269{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5_c01269{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mb_c01269{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c01269{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c01269{vertical-align:0.000000px;}
.v1_c01269{vertical-align:10.320000px;}
.ls1_c01269{letter-spacing:0.000000px;}
.ls0_c01269{letter-spacing:788.260733px;}
.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;}
.fs1_c01269{font-size:3.456000px;}
.fsc_c01269{font-size:6.000000px;}
.fs4_c01269{font-size:10.380000px;}
.fs3_c01269{font-size:13.800000px;}
.fs0_c01269{font-size:17.280000px;}
.fs6_c01269{font-size:24.180000px;}
.fs5_c01269{font-size:27.660000px;}
.fs2_c01269{font-size:31.080000px;}
.fs9_c01269{font-size:41.460000px;}
.fs8_c01269{font-size:76.020000px;}
.fsb_c01269{font-size:79.500000px;}
.fsa_c01269{font-size:93.300000px;}
.fs7_c01269{font-size:96.780000px;}
.y0_c01269{bottom:0.000000px;}
.yc_c01269{bottom:1286.490000px;}
.yb_c01269{bottom:1290.810000px;}
.y7_c01269{bottom:1364.250000px;}
.ya_c01269{bottom:1366.845000px;}
.y8_c01269{bottom:1369.440000px;}
.y9_c01269{bottom:1370.310000px;}
.y4_c01269{bottom:1391.910000px;}
.y6_c01269{bottom:1392.765000px;}
.y3_c01269{bottom:1397.085000px;}
.y5_c01269{bottom:1398.810000px;}
.y2_c01269{bottom:1402.275000px;}
.y1_c01269{bottom:1432.515000px;}
.h3_c01269{height:3.110063px;}
.he_c01269{height:5.399414px;}
.hd_c01269{height:12.418652px;}
.h2_c01269{height:15.550313px;}
.h5_c01269{height:19.660986px;}
.h7_c01269{height:21.759639px;}
.h6_c01269{height:24.891299px;}
.h4_c01269{height:27.968965px;}
.ha_c01269{height:37.309951px;}
.h9_c01269{height:68.410576px;}
.hc_c01269{height:71.542236px;}
.hb_c01269{height:83.960889px;}
.h8_c01269{height:87.092549px;}
.h0_c01269{height:1509.405000px;}
.h1_c01269{height:1509.750000px;}
.w0_c01269{width:1079.130000px;}
.w1_c01269{width:1079.250000px;}
.x0_c01269{left:0.000000px;}
.xd_c01269{left:27.645000px;}
.xe_c01269{left:37.155000px;}
.x2_c01269{left:273.885000px;}
.x3_c01269{left:283.395000px;}
.x7_c01269{left:349.050000px;}
.x8_c01269{left:413.850000px;}
.x4_c01269{left:418.170000px;}
.x9_c01269{left:436.320000px;}
.xa_c01269{left:454.470000px;}
.xb_c01269{left:573.690000px;}
.x5_c01269{left:634.170000px;}
.x6_c01269{left:671.325000px;}
.xc_c01269{left:736.995000px;}
.x1_c01269{left:757.725000px;}
@media print{
.v0_c01269{vertical-align:0.000000pt;}
.v1_c01269{vertical-align:9.173333pt;}
.ls1_c01269{letter-spacing:0.000000pt;}
.ls0_c01269{letter-spacing:700.676207pt;}
.ws0_c01269{word-spacing:0.000000pt;}
.fs1_c01269{font-size:3.072000pt;}
.fsc_c01269{font-size:5.333333pt;}
.fs4_c01269{font-size:9.226667pt;}
.fs3_c01269{font-size:12.266667pt;}
.fs0_c01269{font-size:15.360000pt;}
.fs6_c01269{font-size:21.493333pt;}
.fs5_c01269{font-size:24.586667pt;}
.fs2_c01269{font-size:27.626667pt;}
.fs9_c01269{font-size:36.853333pt;}
.fs8_c01269{font-size:67.573333pt;}
.fsb_c01269{font-size:70.666667pt;}
.fsa_c01269{font-size:82.933333pt;}
.fs7_c01269{font-size:86.026667pt;}
.y0_c01269{bottom:0.000000pt;}
.yc_c01269{bottom:1143.546667pt;}
.yb_c01269{bottom:1147.386667pt;}
.y7_c01269{bottom:1212.666667pt;}
.ya_c01269{bottom:1214.973333pt;}
.y8_c01269{bottom:1217.280000pt;}
.y9_c01269{bottom:1218.053333pt;}
.y4_c01269{bottom:1237.253333pt;}
.y6_c01269{bottom:1238.013333pt;}
.y3_c01269{bottom:1241.853333pt;}
.y5_c01269{bottom:1243.386667pt;}
.y2_c01269{bottom:1246.466667pt;}
.y1_c01269{bottom:1273.346667pt;}
.h3_c01269{height:2.764500pt;}
.he_c01269{height:4.799479pt;}
.hd_c01269{height:11.038802pt;}
.h2_c01269{height:13.822500pt;}
.h5_c01269{height:17.476432pt;}
.h7_c01269{height:19.341901pt;}
.h6_c01269{height:22.125599pt;}
.h4_c01269{height:24.861302pt;}
.ha_c01269{height:33.164401pt;}
.h9_c01269{height:60.809401pt;}
.hc_c01269{height:63.593099pt;}
.hb_c01269{height:74.631901pt;}
.h8_c01269{height:77.415599pt;}
.h0_c01269{height:1341.693333pt;}
.h1_c01269{height:1342.000000pt;}
.w0_c01269{width:959.226667pt;}
.w1_c01269{width:959.333333pt;}
.x0_c01269{left:0.000000pt;}
.xd_c01269{left:24.573333pt;}
.xe_c01269{left:33.026667pt;}
.x2_c01269{left:243.453333pt;}
.x3_c01269{left:251.906667pt;}
.x7_c01269{left:310.266667pt;}
.x8_c01269{left:367.866667pt;}
.x4_c01269{left:371.706667pt;}
.x9_c01269{left:387.840000pt;}
.xa_c01269{left:403.973333pt;}
.xb_c01269{left:509.946667pt;}
.x5_c01269{left:563.706667pt;}
.x6_c01269{left:596.733333pt;}
.xc_c01269{left:655.106667pt;}
.x1_c01269{left:673.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_989d195f953a0eae68e2e00d.woff2')format("woff");}.ff1_c01270{font-family:ff1_c01270;line-height:1.109863;font-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_c01270{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mce_c01270{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.md9_c01270{transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);}
.m130_c01270{transform:matrix(0.080725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080725,0.000000,0.000000,0.250000,0,0);}
.m82_c01270{transform:matrix(0.081200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081200,0.000000,0.000000,0.250000,0,0);}
.m16b_c01270{transform:matrix(0.097575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097575,0.000000,0.000000,0.250000,0,0);}
.m74_c01270{transform:matrix(0.102925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102925,0.000000,0.000000,0.250000,0,0);}
.m87_c01270{transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103250,0.000000,0.000000,0.250000,0,0);}
.m9e_c01270{transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);}
.m17f_c01270{transform:matrix(0.106075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106075,0.000000,0.000000,0.250000,0,0);}
.m59_c01270{transform:matrix(0.106475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106475,0.000000,0.000000,0.250000,0,0);}
.m16c_c01270{transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);}
.ma5_c01270{transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);}
.m16d_c01270{transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);}
.m14e_c01270{transform:matrix(0.110700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110700,0.000000,0.000000,0.250000,0,0);}
.m56_c01270{transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);}
.mcb_c01270{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.ma0_c01270{transform:matrix(0.115050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115050,0.000000,0.000000,0.250000,0,0);}
.m91_c01270{transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);}
.m17c_c01270{transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);}
.m16f_c01270{transform:matrix(0.122375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122375,0.000000,0.000000,0.250000,0,0);}
.m83_c01270{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);}
.m10b_c01270{transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);}
.m161_c01270{transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);}
.mca_c01270{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.m182_c01270{transform:matrix(0.128775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128775,0.000000,0.000000,0.250000,0,0);}
.m14d_c01270{transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);}
.m9d_c01270{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m16e_c01270{transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);}
.mff_c01270{transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);}
.m88_c01270{transform:matrix(0.129825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129825,0.000000,0.000000,0.250000,0,0);}
.m131_c01270{transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130775,0.000000,0.000000,0.250000,0,0);}
.me3_c01270{transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);}
.m165_c01270{transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131275,0.000000,0.000000,0.250000,0,0);}
.m6f_c01270{transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01270{transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);}
.m62_c01270{transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01270{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.m9f_c01270{transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);}
.m26_c01270{transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);}
.m109_c01270{transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);}
.m193_c01270{transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);}
.m194_c01270{transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);}
.mbc_c01270{transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);}
.mdf_c01270{transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);}
.m115_c01270{transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);}
.m9c_c01270{transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);}
.m29_c01270{transform:matrix(0.139175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139175,0.000000,0.000000,0.250000,0,0);}
.md1_c01270{transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);}
.m192_c01270{transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139650,0.000000,0.000000,0.250000,0,0);}
.m13b_c01270{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m127_c01270{transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01270{transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);}
.m108_c01270{transform:matrix(0.141775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141775,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01270{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m76_c01270{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);}
.m177_c01270{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01270{transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01270{transform:matrix(0.142775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142775,0.000000,0.000000,0.250000,0,0);}
.m37_c01270{transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01270{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m67_c01270{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);}
.m170_c01270{transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);}
.m3_c01270{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m102_c01270{transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);}
.m13c_c01270{transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);}
.m13a_c01270{transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);}
.m117_c01270{transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);}
.m129_c01270{transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01270{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.mf3_c01270{transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);}
.m66_c01270{transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);}
.m101_c01270{transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);}
.m124_c01270{transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);}
.m195_c01270{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01270{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);}
.m15f_c01270{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.m3f_c01270{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01270{transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);}
.mf5_c01270{transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01270{transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);}
.m180_c01270{transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);}
.mc0_c01270{transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01270{transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01270{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.m18b_c01270{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);}
.m1b8_c01270{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.m25_c01270{transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);}
.mba_c01270{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01270{transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);}
.m190_c01270{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.m27_c01270{transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01270{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);}
.m184_c01270{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.mac_c01270{transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);}
.m17e_c01270{transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);}
.m64_c01270{transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);}
.m119_c01270{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.mf4_c01270{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m156_c01270{transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);}
.m6c_c01270{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.mab_c01270{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);}
.m134_c01270{transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);}
.m41_c01270{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.m8b_c01270{transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);}
.m9a_c01270{transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);}
.m186_c01270{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m141_c01270{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.ma8_c01270{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01270{transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);}
.m4d_c01270{transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);}
.m159_c01270{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m86_c01270{transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);}
.m12e_c01270{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.ma2_c01270{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.m116_c01270{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m197_c01270{transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);}
.m43_c01270{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01270{transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);}
.m12f_c01270{transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);}
.ma3_c01270{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.md4_c01270{transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166475,0.000000,0.000000,0.250000,0,0);}
.mbb_c01270{transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);}
.mbd_c01270{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m164_c01270{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);}
.m128_c01270{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.m152_c01270{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);}
.m145_c01270{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m9b_c01270{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01270{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);}
.m71_c01270{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);}
.m94_c01270{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.m78_c01270{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m179_c01270{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01270{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01270{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m2f_c01270{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);}
.m146_c01270{transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01270{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);}
.m191_c01270{transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);}
.m126_c01270{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m93_c01270{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m135_c01270{transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);}
.m123_c01270{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.m34_c01270{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);}
.m114_c01270{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);}
.mee_c01270{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m147_c01270{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.mb2_c01270{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01270{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);}
.m7d_c01270{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);}
.m1ee_c01270{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);}
.m163_c01270{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.mcc_c01270{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m19d_c01270{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.m136_c01270{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);}
.m58_c01270{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m10f_c01270{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01270{transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01270{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);}
.mf7_c01270{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);}
.m1c9_c01270{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.m169_c01270{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m15d_c01270{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.md2_c01270{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m84_c01270{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m44_c01270{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);}
.m75_c01270{transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);}
.md3_c01270{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01270{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01270{transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);}
.m132_c01270{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);}
.m3e_c01270{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);}
.m2d_c01270{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m80_c01270{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.mdd_c01270{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);}
.m187_c01270{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);}
.m1bd_c01270{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m7f_c01270{transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);}
.m1de_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);}
.m183_c01270{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);}
.m1be_c01270{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m1ef_c01270{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01270{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);}
.m50_c01270{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.me4_c01270{transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);}
.m142_c01270{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m1e8_c01270{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m14c_c01270{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);}
.m1e0_c01270{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.m95_c01270{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m11c_c01270{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);}
.md7_c01270{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01270{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01270{transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);}
.m150_c01270{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m172_c01270{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);}
.m1ea_c01270{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);}
.m1ed_c01270{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);}
.mb4_c01270{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.mda_c01270{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);}
.m168_c01270{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.ma4_c01270{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);}
.m19b_c01270{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.m8e_c01270{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.m23_c01270{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.m18d_c01270{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);}
.m1b7_c01270{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);}
.md0_c01270{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);}
.m15c_c01270{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);}
.m1da_c01270{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.m72_c01270{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m69_c01270{transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198975,0.000000,0.000000,0.250000,0,0);}
.m10e_c01270{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);}
.m65_c01270{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);}
.m5a_c01270{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);}
.m2e_c01270{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01270{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);}
.m1_c01270{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.m4c_c01270{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01270{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);}
.m125_c01270{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m12c_c01270{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m14_c01270{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mf2_c01270{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.md8_c01270{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m176_c01270{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m175_c01270{transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01270{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01270{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.m77_c01270{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01270{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);}
.m174_c01270{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01270{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.mf9_c01270{transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);}
.m104_c01270{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);}
.m99_c01270{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m18c_c01270{transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);}
.mf8_c01270{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md5_c01270{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.mde_c01270{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m10c_c01270{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);}
.mc1_c01270{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.mb3_c01270{transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);}
.m14f_c01270{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01270{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01270{transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);}
.m5_c01270{transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);}
.m8c_c01270{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m7b_c01270{transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);}
.m1af_c01270{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.m6_c01270{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m153_c01270{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);}
.m1a8_c01270{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);}
.m8d_c01270{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);}
.m14a_c01270{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);}
.m1a9_c01270{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);}
.m40_c01270{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m28_c01270{transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);}
.m42_c01270{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);}
.m185_c01270{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);}
.m1ce_c01270{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m22_c01270{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m92_c01270{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m20_c01270{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);}
.m105_c01270{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01270{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01270{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.m188_c01270{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);}
.ma6_c01270{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);}
.m139_c01270{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m51_c01270{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.maa_c01270{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m166_c01270{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m171_c01270{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);}
.m167_c01270{transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);}
.m19a_c01270{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);}
.m10a_c01270{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);}
.m140_c01270{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.m143_c01270{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);}
.m1db_c01270{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m112_c01270{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);}
.mfd_c01270{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.m33_c01270{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);}
.mfe_c01270{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);}
.m1b9_c01270{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01270{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);}
.m120_c01270{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);}
.m189_c01270{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m133_c01270{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.md6_c01270{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);}
.m1cd_c01270{transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);}
.m149_c01270{transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);}
.m17a_c01270{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);}
.mfa_c01270{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.maf_c01270{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);}
.mef_c01270{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);}
.m122_c01270{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m148_c01270{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m12b_c01270{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m1b_c01270{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);}
.m5f_c01270{transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);}
.m1c_c01270{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);}
.m118_c01270{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);}
.m17d_c01270{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);}
.m1eb_c01270{transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);}
.m160_c01270{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.m138_c01270{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);}
.m38_c01270{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);}
.m11a_c01270{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.mbe_c01270{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);}
.m13e_c01270{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m1a_c01270{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);}
.m1c2_c01270{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);}
.mfb_c01270{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.m196_c01270{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);}
.m144_c01270{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m154_c01270{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);}
.m1f0_c01270{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m173_c01270{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.me1_c01270{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.me0_c01270{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m100_c01270{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);}
.m18f_c01270{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m198_c01270{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);}
.m19e_c01270{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);}
.m31_c01270{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.m12_c01270{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m111_c01270{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m151_c01270{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);}
.m36_c01270{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);}
.me5_c01270{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);}
.m13d_c01270{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01270{transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);}
.m18a_c01270{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);}
.m70_c01270{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);}
.m1b5_c01270{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m181_c01270{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);}
.mb6_c01270{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m15b_c01270{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);}
.mec_c01270{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);}
.m19f_c01270{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);}
.m19c_c01270{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);}
.mc4_c01270{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);}
.mf6_c01270{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);}
.m199_c01270{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);}
.m110_c01270{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);}
.m162_c01270{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m60_c01270{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.m11d_c01270{transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);}
.m18e_c01270{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);}
.m1b2_c01270{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m16a_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);}
.m17b_c01270{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);}
.mdc_c01270{transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01270{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.ma9_c01270{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);}
.m15e_c01270{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);}
.m81_c01270{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);}
.m137_c01270{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);}
.m121_c01270{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);}
.meb_c01270{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01270{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.mae_c01270{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m12d_c01270{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);}
.m7a_c01270{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);}
.m1d9_c01270{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);}
.mf0_c01270{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.m15a_c01270{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m157_c01270{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);}
.md_c01270{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01270{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.mbf_c01270{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);}
.me2_c01270{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);}
.m68_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);}
.m14b_c01270{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m178_c01270{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m1e_c01270{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);}
.mf_c01270{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);}
.m11f_c01270{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01270{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);}
.m21_c01270{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);}
.mc5_c01270{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);}
.m90_c01270{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);}
.m4_c01270{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01270{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c01270{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mdb_c01270{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);}
.m7c_c01270{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m35_c01270{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);}
.m97_c01270{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);}
.m15_c01270{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc8_c01270{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);}
.m7_c01270{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01270{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb0_c01270{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);}
.m89_c01270{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb7_c01270{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);}
.m2b_c01270{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);}
.mb5_c01270{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01270{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m24_c01270{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);}
.mad_c01270{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb8_c01270{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m47_c01270{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);}
.m17_c01270{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m98_c01270{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mb_c01270{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13f_c01270{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10d_c01270{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11e_c01270{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01270{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c01270{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m113_c01270{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);}
.mb9_c01270{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m9_c01270{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m73_c01270{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01270{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc6_c01270{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);}
.m49_c01270{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);}
.m79_c01270{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01270{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me7_c01270{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);}
.m39_c01270{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m158_c01270{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m55_c01270{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.med_c01270{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);}
.m16_c01270{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m103_c01270{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);}
.mf1_c01270{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m46_c01270{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m12a_c01270{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);}
.m85_c01270{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01270{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.ma7_c01270{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01270{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m13_c01270{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);}
.m1f1_c01270{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);}
.m45_c01270{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);}
.m18_c01270{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m155_c01270{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01270{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m32_c01270{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01270{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01270{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01270{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mc3_c01270{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01270{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);}
.mc9_c01270{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma_c01270{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mcd_c01270{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m19_c01270{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m0_c01270{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m8_c01270{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m11b_c01270{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mfc_c01270{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.me6_c01270{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01270{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01270{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);}
.m8a_c01270{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01270{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01270{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m52_c01270{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2_c01270{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m30_c01270{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1df_c01270{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.me8_c01270{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m7e_c01270{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);}
.m11_c01270{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01270{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m48_c01270{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01270{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m106_c01270{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01270{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m96_c01270{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m1e7_c01270{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01270{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mcf_c01270{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);}
.m1e4_c01270{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m1f2_c01270{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01270{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m61_c01270{transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01270{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01270{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m63_c01270{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m54_c01270{transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01270{transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);}
.m53_c01270{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01270{transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);}
.m107_c01270{transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);}
.m57_c01270{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.mc7_c01270{transform:matrix(1.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.217500,0.000000,0.000000,0.250000,0,0);}
.mc2_c01270{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01270{transform:matrix(2.045000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.045000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.045000,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01270{transform:matrix(2.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.047500,0.000000,0.000000,0.250000,0,0);}
.mea_c01270{transform:matrix(2.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.065000,0.000000,0.000000,0.250000,0,0);}
.m1e6_c01270{transform:matrix(2.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.332500,0.000000,0.000000,0.250000,0,0);}
.me9_c01270{transform:matrix(2.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.662500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01270{transform:matrix(2.797500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.797500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.797500,0.000000,0.000000,0.250000,0,0);}
.v1_c01270{vertical-align:-3.420000px;}
.v0_c01270{vertical-align:0.000000px;}
.v2_c01270{vertical-align:3.420000px;}
.ls3_c01270{letter-spacing:0.000000px;}
.ls2_c01270{letter-spacing:38.803152px;}
.ls1_c01270{letter-spacing:77.095440px;}
.ls0_c01270{letter-spacing:839.042688px;}
.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;}
}
.ws4_c01270{word-spacing:-11.962938px;}
.ws3_c01270{word-spacing:-9.822000px;}
.ws1_c01270{word-spacing:-8.585832px;}
.ws0_c01270{word-spacing:-3.807529px;}
.ws5_c01270{word-spacing:0.000000px;}
.ws2_c01270{word-spacing:72.860833px;}
.fc0_c01270{color:transparent;}
.fs1a_c01270{font-size:3.456000px;}
.fs2_c01270{font-size:6.000000px;}
.fs6_c01270{font-size:6.900000px;}
.fsf_c01270{font-size:10.380000px;}
.fs1d_c01270{font-size:13.800000px;}
.fs0_c01270{font-size:17.280000px;}
.fse_c01270{font-size:20.760000px;}
.fs7_c01270{font-size:24.180000px;}
.fs10_c01270{font-size:27.660000px;}
.fs1c_c01270{font-size:31.080000px;}
.fs9_c01270{font-size:34.560000px;}
.fsb_c01270{font-size:38.040000px;}
.fs11_c01270{font-size:41.460000px;}
.fs14_c01270{font-size:44.940000px;}
.fsa_c01270{font-size:48.360000px;}
.fs13_c01270{font-size:51.840000px;}
.fs16_c01270{font-size:55.320000px;}
.fsc_c01270{font-size:58.740000px;}
.fs12_c01270{font-size:62.220000px;}
.fs1_c01270{font-size:65.640000px;}
.fsd_c01270{font-size:69.120000px;}
.fs8_c01270{font-size:72.600000px;}
.fs17_c01270{font-size:76.020000px;}
.fs19_c01270{font-size:79.500000px;}
.fs15_c01270{font-size:82.920000px;}
.fs18_c01270{font-size:86.400000px;}
.fs1f_c01270{font-size:89.880000px;}
.fs1b_c01270{font-size:93.300000px;}
.fs1e_c01270{font-size:96.780000px;}
.fs20_c01270{font-size:100.200000px;}
.fs3_c01270{font-size:103.680000px;}
.fs4_c01270{font-size:107.160000px;}
.fs5_c01270{font-size:110.580000px;}
.y0_c01270{bottom:0.000000px;}
.y1e2_c01270{bottom:195.270000px;}
.y1e3_c01270{bottom:196.995000px;}
.y1e4_c01270{bottom:199.590000px;}
.y1e5_c01270{bottom:200.445000px;}
.y1e1_c01270{bottom:201.315000px;}
.y1e0_c01270{bottom:202.170000px;}
.y1df_c01270{bottom:203.040000px;}
.y1dd_c01270{bottom:203.910000px;}
.y1dc_c01270{bottom:204.765000px;}
.y1de_c01270{bottom:206.490000px;}
.y1db_c01270{bottom:208.230000px;}
.y1d9_c01270{bottom:215.130000px;}
.y1d7_c01270{bottom:216.000000px;}
.y1d6_c01270{bottom:217.725000px;}
.y1d4_c01270{bottom:218.595000px;}
.y1d5_c01270{bottom:219.450000px;}
.y1da_c01270{bottom:220.320000px;}
.y1d8_c01270{bottom:221.190000px;}
.y1ce_c01270{bottom:222.915000px;}
.y1d0_c01270{bottom:223.770000px;}
.y1cb_c01270{bottom:224.640000px;}
.y1cd_c01270{bottom:225.510000px;}
.y1d1_c01270{bottom:226.365000px;}
.y1cf_c01270{bottom:227.235000px;}
.y1cc_c01270{bottom:229.830000px;}
.y1ca_c01270{bottom:230.685000px;}
.y1d2_c01270{bottom:232.410000px;}
.y1d3_c01270{bottom:243.645000px;}
.y1c4_c01270{bottom:244.515000px;}
.y1c2_c01270{bottom:245.370000px;}
.y1c6_c01270{bottom:246.240000px;}
.y1c5_c01270{bottom:247.110000px;}
.y1c9_c01270{bottom:248.835000px;}
.y1c3_c01270{bottom:250.560000px;}
.y1c7_c01270{bottom:254.010000px;}
.y1c8_c01270{bottom:256.605000px;}
.y1be_c01270{bottom:265.245000px;}
.y1bf_c01270{bottom:266.115000px;}
.y1bc_c01270{bottom:266.970000px;}
.y1c1_c01270{bottom:267.840000px;}
.y1bd_c01270{bottom:269.565000px;}
.y1c0_c01270{bottom:271.290000px;}
.y1b5_c01270{bottom:284.250000px;}
.y1b6_c01270{bottom:285.990000px;}
.y1b7_c01270{bottom:286.845000px;}
.y1eb_c01270{bottom:287.715000px;}
.y1bb_c01270{bottom:290.310000px;}
.y1b8_c01270{bottom:292.890000px;}
.y1b9_c01270{bottom:298.950000px;}
.y1ba_c01270{bottom:303.270000px;}
.y1b3_c01270{bottom:304.125000px;}
.y1b2_c01270{bottom:304.995000px;}
.y1af_c01270{bottom:305.850000px;}
.y1ae_c01270{bottom:306.720000px;}
.y1b0_c01270{bottom:307.590000px;}
.y1b4_c01270{bottom:310.170000px;}
.y1b1_c01270{bottom:317.955000px;}
.y1ac_c01270{bottom:324.870000px;}
.y1a7_c01270{bottom:325.725000px;}
.y1ab_c01270{bottom:326.595000px;}
.y1a8_c01270{bottom:327.450000px;}
.y1aa_c01270{bottom:328.320000px;}
.y1a9_c01270{bottom:330.915000px;}
.y1ad_c01270{bottom:333.510000px;}
.y1a1_c01270{bottom:346.470000px;}
.y1a2_c01270{bottom:347.325000px;}
.y1a3_c01270{bottom:349.920000px;}
.y1a6_c01270{bottom:351.645000px;}
.y1a5_c01270{bottom:352.515000px;}
.y1a4_c01270{bottom:354.240000px;}
.y19f_c01270{bottom:364.605000px;}
.y198_c01270{bottom:366.330000px;}
.y19e_c01270{bottom:367.200000px;}
.y19b_c01270{bottom:368.070000px;}
.y19a_c01270{bottom:370.650000px;}
.y1a0_c01270{bottom:371.520000px;}
.y199_c01270{bottom:373.245000px;}
.y19c_c01270{bottom:374.115000px;}
.y19d_c01270{bottom:385.350000px;}
.y197_c01270{bottom:386.205000px;}
.y193_c01270{bottom:387.075000px;}
.y195_c01270{bottom:387.930000px;}
.y192_c01270{bottom:389.670000px;}
.y196_c01270{bottom:391.395000px;}
.y194_c01270{bottom:393.990000px;}
.y191_c01270{bottom:402.630000px;}
.y18e_c01270{bottom:406.950000px;}
.y190_c01270{bottom:407.805000px;}
.y18a_c01270{bottom:408.675000px;}
.y189_c01270{bottom:409.530000px;}
.y18f_c01270{bottom:411.270000px;}
.y188_c01270{bottom:412.125000px;}
.y18b_c01270{bottom:412.995000px;}
.y18c_c01270{bottom:416.445000px;}
.y18d_c01270{bottom:424.230000px;}
.y187_c01270{bottom:425.085000px;}
.y183_c01270{bottom:427.680000px;}
.y181_c01270{bottom:428.550000px;}
.y185_c01270{bottom:429.405000px;}
.y186_c01270{bottom:430.275000px;}
.y182_c01270{bottom:433.725000px;}
.y184_c01270{bottom:434.595000px;}
.y180_c01270{bottom:437.190000px;}
.y17f_c01270{bottom:447.555000px;}
.y17a_c01270{bottom:448.410000px;}
.y17b_c01270{bottom:449.280000px;}
.y17c_c01270{bottom:450.150000px;}
.y17e_c01270{bottom:451.875000px;}
.y17d_c01270{bottom:454.470000px;}
.y179_c01270{bottom:461.370000px;}
.y177_c01270{bottom:468.285000px;}
.y175_c01270{bottom:469.155000px;}
.y174_c01270{bottom:473.475000px;}
.y173_c01270{bottom:474.330000px;}
.y176_c01270{bottom:475.200000px;}
.y178_c01270{bottom:487.290000px;}
.y16d_c01270{bottom:489.030000px;}
.y16c_c01270{bottom:489.885000px;}
.y16f_c01270{bottom:492.480000px;}
.y171_c01270{bottom:493.350000px;}
.y170_c01270{bottom:494.205000px;}
.y16b_c01270{bottom:502.845000px;}
.y172_c01270{bottom:505.440000px;}
.y16e_c01270{bottom:507.165000px;}
.y165_c01270{bottom:508.890000px;}
.y16a_c01270{bottom:509.760000px;}
.y169_c01270{bottom:510.630000px;}
.y166_c01270{bottom:513.210000px;}
.y167_c01270{bottom:515.805000px;}
.y168_c01270{bottom:517.530000px;}
.y164_c01270{bottom:528.765000px;}
.y163_c01270{bottom:529.635000px;}
.y15f_c01270{bottom:530.490000px;}
.y162_c01270{bottom:531.360000px;}
.y15e_c01270{bottom:533.085000px;}
.y160_c01270{bottom:536.550000px;}
.y161_c01270{bottom:537.405000px;}
.y1ea_c01270{bottom:540.000000px;}
.y15d_c01270{bottom:548.640000px;}
.y157_c01270{bottom:549.510000px;}
.y158_c01270{bottom:550.365000px;}
.y15a_c01270{bottom:551.235000px;}
.y159_c01270{bottom:552.090000px;}
.y15c_c01270{bottom:554.685000px;}
.y15b_c01270{bottom:555.555000px;}
.y155_c01270{bottom:565.920000px;}
.y150_c01270{bottom:566.790000px;}
.y151_c01270{bottom:567.645000px;}
.y152_c01270{bottom:568.515000px;}
.y154_c01270{bottom:569.370000px;}
.y153_c01270{bottom:570.240000px;}
.y14e_c01270{bottom:571.110000px;}
.y156_c01270{bottom:574.560000px;}
.y14f_c01270{bottom:578.880000px;}
.y14d_c01270{bottom:587.520000px;}
.y14b_c01270{bottom:590.115000px;}
.y14c_c01270{bottom:590.970000px;}
.y149_c01270{bottom:591.840000px;}
.y147_c01270{bottom:592.710000px;}
.y14a_c01270{bottom:593.565000px;}
.y148_c01270{bottom:595.290000px;}
.y146_c01270{bottom:609.120000px;}
.y13f_c01270{bottom:609.990000px;}
.y144_c01270{bottom:610.845000px;}
.y142_c01270{bottom:611.715000px;}
.y141_c01270{bottom:613.440000px;}
.y140_c01270{bottom:614.310000px;}
.y13d_c01270{bottom:615.165000px;}
.y13e_c01270{bottom:616.035000px;}
.y145_c01270{bottom:616.890000px;}
.y143_c01270{bottom:617.760000px;}
.y139_c01270{bottom:629.850000px;}
.y138_c01270{bottom:630.720000px;}
.y137_c01270{bottom:631.590000px;}
.y136_c01270{bottom:632.445000px;}
.y13b_c01270{bottom:633.315000px;}
.y13c_c01270{bottom:635.040000px;}
.y13a_c01270{bottom:636.765000px;}
.y135_c01270{bottom:650.595000px;}
.y12f_c01270{bottom:652.320000px;}
.y133_c01270{bottom:653.190000px;}
.y131_c01270{bottom:655.770000px;}
.y130_c01270{bottom:656.640000px;}
.y132_c01270{bottom:657.510000px;}
.y134_c01270{bottom:660.960000px;}
.y126_c01270{bottom:670.470000px;}
.y128_c01270{bottom:671.325000px;}
.y129_c01270{bottom:672.195000px;}
.y12a_c01270{bottom:673.050000px;}
.y12d_c01270{bottom:674.790000px;}
.y127_c01270{bottom:675.645000px;}
.y12b_c01270{bottom:676.515000px;}
.y12c_c01270{bottom:680.835000px;}
.y12e_c01270{bottom:683.430000px;}
.y11f_c01270{bottom:689.475000px;}
.y125_c01270{bottom:690.330000px;}
.y11e_c01270{bottom:692.070000px;}
.y123_c01270{bottom:693.795000px;}
.y121_c01270{bottom:694.650000px;}
.y124_c01270{bottom:695.520000px;}
.y120_c01270{bottom:696.390000px;}
.y122_c01270{bottom:697.245000px;}
.y11c_c01270{bottom:710.205000px;}
.y119_c01270{bottom:711.075000px;}
.y117_c01270{bottom:711.930000px;}
.y118_c01270{bottom:712.800000px;}
.y115_c01270{bottom:713.670000px;}
.y11a_c01270{bottom:715.395000px;}
.y116_c01270{bottom:716.250000px;}
.y11b_c01270{bottom:717.120000px;}
.y11d_c01270{bottom:717.990000px;}
.y114_c01270{bottom:730.080000px;}
.y111_c01270{bottom:730.950000px;}
.y10f_c01270{bottom:732.675000px;}
.y112_c01270{bottom:733.530000px;}
.y110_c01270{bottom:736.125000px;}
.y113_c01270{bottom:736.995000px;}
.y10d_c01270{bottom:750.810000px;}
.y10a_c01270{bottom:751.680000px;}
.y10c_c01270{bottom:752.550000px;}
.y109_c01270{bottom:756.000000px;}
.y10b_c01270{bottom:756.870000px;}
.y10e_c01270{bottom:768.960000px;}
.y102_c01270{bottom:771.555000px;}
.y105_c01270{bottom:773.280000px;}
.y108_c01270{bottom:775.875000px;}
.y107_c01270{bottom:776.730000px;}
.y103_c01270{bottom:777.600000px;}
.y104_c01270{bottom:778.470000px;}
.y106_c01270{bottom:781.920000px;}
.yfe_c01270{bottom:791.430000px;}
.yfa_c01270{bottom:792.285000px;}
.yfc_c01270{bottom:793.155000px;}
.yfb_c01270{bottom:794.010000px;}
.yff_c01270{bottom:794.880000px;}
.y101_c01270{bottom:795.750000px;}
.yfd_c01270{bottom:796.605000px;}
.y100_c01270{bottom:797.475000px;}
.yf9_c01270{bottom:811.290000px;}
.yf3_c01270{bottom:812.160000px;}
.yf5_c01270{bottom:813.885000px;}
.yf7_c01270{bottom:815.610000px;}
.yf8_c01270{bottom:816.480000px;}
.yf6_c01270{bottom:817.350000px;}
.yf4_c01270{bottom:818.205000px;}
.yf2_c01270{bottom:832.035000px;}
.yeb_c01270{bottom:832.890000px;}
.yec_c01270{bottom:833.760000px;}
.yef_c01270{bottom:834.630000px;}
.yf1_c01270{bottom:836.355000px;}
.yee_c01270{bottom:837.210000px;}
.yed_c01270{bottom:838.080000px;}
.yf0_c01270{bottom:838.950000px;}
.yea_c01270{bottom:841.530000px;}
.ye8_c01270{bottom:849.315000px;}
.ye9_c01270{bottom:851.040000px;}
.ye2_c01270{bottom:852.765000px;}
.ye1_c01270{bottom:853.635000px;}
.ye3_c01270{bottom:854.490000px;}
.ye5_c01270{bottom:855.360000px;}
.ye7_c01270{bottom:856.230000px;}
.ye6_c01270{bottom:857.085000px;}
.ye4_c01270{bottom:857.955000px;}
.ydf_c01270{bottom:870.915000px;}
.yda_c01270{bottom:871.770000px;}
.ydb_c01270{bottom:875.235000px;}
.ye0_c01270{bottom:876.090000px;}
.yde_c01270{bottom:876.960000px;}
.ydc_c01270{bottom:878.685000px;}
.ydd_c01270{bottom:879.555000px;}
.yd9_c01270{bottom:890.790000px;}
.yd8_c01270{bottom:891.645000px;}
.yd2_c01270{bottom:892.515000px;}
.yd3_c01270{bottom:894.240000px;}
.yd5_c01270{bottom:895.110000px;}
.yd7_c01270{bottom:896.835000px;}
.yd4_c01270{bottom:898.560000px;}
.yd6_c01270{bottom:899.430000px;}
.yd0_c01270{bottom:912.390000px;}
.yce_c01270{bottom:913.245000px;}
.yd1_c01270{bottom:914.115000px;}
.ycc_c01270{bottom:914.970000px;}
.ycf_c01270{bottom:915.840000px;}
.yc9_c01270{bottom:916.710000px;}
.yca_c01270{bottom:917.565000px;}
.yc2_c01270{bottom:918.435000px;}
.ycd_c01270{bottom:919.290000px;}
.yc7_c01270{bottom:922.755000px;}
.yc6_c01270{bottom:925.350000px;}
.yc8_c01270{bottom:926.205000px;}
.ycb_c01270{bottom:927.075000px;}
.yc4_c01270{bottom:927.930000px;}
.yc3_c01270{bottom:928.800000px;}
.yc5_c01270{bottom:931.395000px;}
.yc0_c01270{bottom:932.250000px;}
.yc1_c01270{bottom:933.120000px;}
.ybe_c01270{bottom:934.845000px;}
.ybf_c01270{bottom:938.310000px;}
.yb7_c01270{bottom:952.125000px;}
.ybc_c01270{bottom:952.995000px;}
.ybd_c01270{bottom:953.850000px;}
.yb8_c01270{bottom:954.720000px;}
.yba_c01270{bottom:956.445000px;}
.ybb_c01270{bottom:957.315000px;}
.yb9_c01270{bottom:959.040000px;}
.yb6_c01270{bottom:960.765000px;}
.yae_c01270{bottom:972.870000px;}
.yb0_c01270{bottom:973.725000px;}
.yb5_c01270{bottom:975.450000px;}
.yaf_c01270{bottom:976.320000px;}
.yb3_c01270{bottom:977.190000px;}
.yb4_c01270{bottom:978.045000px;}
.yb1_c01270{bottom:983.235000px;}
.yb2_c01270{bottom:986.685000px;}
.yab_c01270{bottom:990.150000px;}
.ya8_c01270{bottom:991.005000px;}
.yaa_c01270{bottom:991.875000px;}
.yac_c01270{bottom:992.730000px;}
.ya7_c01270{bottom:993.600000px;}
.yad_c01270{bottom:994.470000px;}
.ya9_c01270{bottom:995.325000px;}
.ya4_c01270{bottom:997.920000px;}
.ya2_c01270{bottom:999.645000px;}
.ya5_c01270{bottom:1002.240000px;}
.ya6_c01270{bottom:1003.110000px;}
.y9f_c01270{bottom:1005.690000px;}
.y1e9_c01270{bottom:1006.560000px;}
.ya0_c01270{bottom:1007.430000px;}
.ya1_c01270{bottom:1008.285000px;}
.ya3_c01270{bottom:1011.750000px;}
.y9a_c01270{bottom:1013.475000px;}
.y9b_c01270{bottom:1015.200000px;}
.y9e_c01270{bottom:1016.070000px;}
.y9d_c01270{bottom:1017.795000px;}
.y99_c01270{bottom:1019.520000px;}
.y9c_c01270{bottom:1022.115000px;}
.y98_c01270{bottom:1033.350000px;}
.y91_c01270{bottom:1035.075000px;}
.y96_c01270{bottom:1035.930000px;}
.y94_c01270{bottom:1036.800000px;}
.y97_c01270{bottom:1038.525000px;}
.y92_c01270{bottom:1039.395000px;}
.y93_c01270{bottom:1040.250000px;}
.y95_c01270{bottom:1041.120000px;}
.y88_c01270{bottom:1053.210000px;}
.y87_c01270{bottom:1054.080000px;}
.y8a_c01270{bottom:1054.950000px;}
.y8e_c01270{bottom:1055.805000px;}
.y89_c01270{bottom:1056.675000px;}
.y8b_c01270{bottom:1057.530000px;}
.y8c_c01270{bottom:1058.400000px;}
.y8f_c01270{bottom:1059.270000px;}
.y8d_c01270{bottom:1060.995000px;}
.y90_c01270{bottom:1064.445000px;}
.y81_c01270{bottom:1068.765000px;}
.y85_c01270{bottom:1070.490000px;}
.y80_c01270{bottom:1071.360000px;}
.y82_c01270{bottom:1072.230000px;}
.y7f_c01270{bottom:1073.955000px;}
.y86_c01270{bottom:1079.130000px;}
.y83_c01270{bottom:1080.870000px;}
.y1e8_c01270{bottom:1091.235000px;}
.y7e_c01270{bottom:1092.960000px;}
.y84_c01270{bottom:1093.830000px;}
.y78_c01270{bottom:1094.685000px;}
.y79_c01270{bottom:1095.555000px;}
.y7d_c01270{bottom:1096.410000px;}
.y7a_c01270{bottom:1097.280000px;}
.y7c_c01270{bottom:1099.005000px;}
.y77_c01270{bottom:1099.875000px;}
.y7b_c01270{bottom:1100.730000px;}
.y1e7_c01270{bottom:1101.600000px;}
.y1e6_c01270{bottom:1107.645000px;}
.y74_c01270{bottom:1113.690000px;}
.y72_c01270{bottom:1115.430000px;}
.y73_c01270{bottom:1116.285000px;}
.y75_c01270{bottom:1117.155000px;}
.y76_c01270{bottom:1118.010000px;}
.y71_c01270{bottom:1119.750000px;}
.y70_c01270{bottom:1121.475000px;}
.y6d_c01270{bottom:1129.245000px;}
.y6f_c01270{bottom:1130.970000px;}
.y67_c01270{bottom:1131.840000px;}
.y6a_c01270{bottom:1132.710000px;}
.y68_c01270{bottom:1133.565000px;}
.y66_c01270{bottom:1137.030000px;}
.y6e_c01270{bottom:1139.610000px;}
.y69_c01270{bottom:1140.480000px;}
.y6b_c01270{bottom:1141.350000px;}
.y6c_c01270{bottom:1152.570000px;}
.y63_c01270{bottom:1155.165000px;}
.y64_c01270{bottom:1156.035000px;}
.y61_c01270{bottom:1156.890000px;}
.y65_c01270{bottom:1158.630000px;}
.y60_c01270{bottom:1159.485000px;}
.y62_c01270{bottom:1162.080000px;}
.y5f_c01270{bottom:1167.270000px;}
.y57_c01270{bottom:1169.850000px;}
.y58_c01270{bottom:1170.720000px;}
.y5c_c01270{bottom:1171.590000px;}
.y5d_c01270{bottom:1172.445000px;}
.y59_c01270{bottom:1173.315000px;}
.y5a_c01270{bottom:1174.170000px;}
.y5e_c01270{bottom:1175.040000px;}
.y55_c01270{bottom:1179.360000px;}
.y5b_c01270{bottom:1181.085000px;}
.y56_c01270{bottom:1188.870000px;}
.y54_c01270{bottom:1189.725000px;}
.y52_c01270{bottom:1191.450000px;}
.y53_c01270{bottom:1193.190000px;}
.y50_c01270{bottom:1194.045000px;}
.y4d_c01270{bottom:1194.915000px;}
.y4e_c01270{bottom:1195.770000px;}
.y4f_c01270{bottom:1197.510000px;}
.y51_c01270{bottom:1199.235000px;}
.y4c_c01270{bottom:1200.090000px;}
.y48_c01270{bottom:1215.645000px;}
.y45_c01270{bottom:1216.515000px;}
.y44_c01270{bottom:1218.240000px;}
.y49_c01270{bottom:1219.965000px;}
.y4a_c01270{bottom:1221.690000px;}
.y4b_c01270{bottom:1222.560000px;}
.y46_c01270{bottom:1226.880000px;}
.y47_c01270{bottom:1232.070000px;}
.y3f_c01270{bottom:1236.390000px;}
.y3b_c01270{bottom:1237.245000px;}
.y40_c01270{bottom:1238.115000px;}
.y3c_c01270{bottom:1238.970000px;}
.y42_c01270{bottom:1239.840000px;}
.y3d_c01270{bottom:1240.710000px;}
.y3e_c01270{bottom:1242.435000px;}
.y43_c01270{bottom:1243.290000px;}
.y41_c01270{bottom:1245.885000px;}
.y37_c01270{bottom:1247.610000px;}
.y38_c01270{bottom:1248.480000px;}
.y35_c01270{bottom:1249.350000px;}
.y36_c01270{bottom:1251.075000px;}
.y39_c01270{bottom:1251.930000px;}
.y3a_c01270{bottom:1253.670000px;}
.y34_c01270{bottom:1254.525000px;}
.y33_c01270{bottom:1255.395000px;}
.y30_c01270{bottom:1256.250000px;}
.y2f_c01270{bottom:1257.990000px;}
.y2e_c01270{bottom:1260.570000px;}
.y31_c01270{bottom:1261.440000px;}
.y32_c01270{bottom:1262.310000px;}
.y27_c01270{bottom:1276.995000px;}
.y26_c01270{bottom:1279.590000px;}
.y2b_c01270{bottom:1281.315000px;}
.y2a_c01270{bottom:1282.170000px;}
.y28_c01270{bottom:1283.040000px;}
.y29_c01270{bottom:1283.910000px;}
.y2c_c01270{bottom:1291.680000px;}
.y2d_c01270{bottom:1294.275000px;}
.y20_c01270{bottom:1296.000000px;}
.y24_c01270{bottom:1296.870000px;}
.y21_c01270{bottom:1297.725000px;}
.y23_c01270{bottom:1301.190000px;}
.y25_c01270{bottom:1302.045000px;}
.y22_c01270{bottom:1302.915000px;}
.y1f_c01270{bottom:1314.150000px;}
.y1d_c01270{bottom:1315.005000px;}
.y1c_c01270{bottom:1315.875000px;}
.y17_c01270{bottom:1316.730000px;}
.y1b_c01270{bottom:1317.600000px;}
.y1a_c01270{bottom:1319.325000px;}
.y1e_c01270{bottom:1321.920000px;}
.y18_c01270{bottom:1322.790000px;}
.y19_c01270{bottom:1323.645000px;}
.y15_c01270{bottom:1336.605000px;}
.y14_c01270{bottom:1337.475000px;}
.y13_c01270{bottom:1338.330000px;}
.y11_c01270{bottom:1340.070000px;}
.y16_c01270{bottom:1340.925000px;}
.ye_c01270{bottom:1341.795000px;}
.y9_c01270{bottom:1342.650000px;}
.y12_c01270{bottom:1343.520000px;}
.yb_c01270{bottom:1346.115000px;}
.ya_c01270{bottom:1347.840000px;}
.y10_c01270{bottom:1349.565000px;}
.y8_c01270{bottom:1350.435000px;}
.yd_c01270{bottom:1352.160000px;}
.yc_c01270{bottom:1353.030000px;}
.y7_c01270{bottom:1353.885000px;}
.yf_c01270{bottom:1356.480000px;}
.y5_c01270{bottom:1362.525000px;}
.y4_c01270{bottom:1363.395000px;}
.y2_c01270{bottom:1364.250000px;}
.y6_c01270{bottom:1367.715000px;}
.y3_c01270{bottom:1372.890000px;}
.y1_c01270{bottom:1394.490000px;}
.h1c_c01270{height:3.110063px;}
.h4_c01270{height:5.399414px;}
.h8_c01270{height:6.209326px;}
.h11_c01270{height:9.340986px;}
.h1f_c01270{height:12.418652px;}
.h2_c01270{height:15.550313px;}
.h10_c01270{height:18.681973px;}
.h9_c01270{height:21.759639px;}
.h12_c01270{height:24.891299px;}
.h1e_c01270{height:27.968965px;}
.hb_c01270{height:31.100625px;}
.hd_c01270{height:34.232285px;}
.h13_c01270{height:37.309951px;}
.h16_c01270{height:40.441611px;}
.hc_c01270{height:43.519277px;}
.h15_c01270{height:46.650937px;}
.h18_c01270{height:49.782598px;}
.he_c01270{height:52.860264px;}
.h14_c01270{height:55.991924px;}
.h3_c01270{height:59.069590px;}
.hf_c01270{height:62.201250px;}
.ha_c01270{height:65.332910px;}
.h19_c01270{height:68.410576px;}
.h1b_c01270{height:71.542236px;}
.h17_c01270{height:74.619902px;}
.h1a_c01270{height:77.751563px;}
.h21_c01270{height:80.883223px;}
.h1d_c01270{height:83.960889px;}
.h20_c01270{height:87.092549px;}
.h22_c01270{height:90.170215px;}
.h5_c01270{height:93.301875px;}
.h6_c01270{height:96.433535px;}
.h7_c01270{height:99.511201px;}
.h23_c01270{height:99.853535px;}
.h1_c01270{height:1518.750000px;}
.h0_c01270{height:1518.915000px;}
.w0_c01270{width:1079.130000px;}
.w1_c01270{width:1079.250000px;}
.x0_c01270{left:0.000000px;}
.x112_c01270{left:3.450000px;}
.x111_c01270{left:8.640000px;}
.x113_c01270{left:17.280000px;}
.xeb_c01270{left:170.205000px;}
.xe8_c01270{left:177.120000px;}
.xf5_c01270{left:184.890000px;}
.xf1_c01270{left:196.125000px;}
.xce_c01270{left:203.040000px;}
.xf8_c01270{left:205.635000px;}
.x2c_c01270{left:207.360000px;}
.xe1_c01270{left:209.955000px;}
.x3c_c01270{left:212.550900px;}
.xcf_c01270{left:214.275000px;}
.xff_c01270{left:216.000000px;}
.x9f_c01270{left:218.595000px;}
.xb8_c01270{left:221.190000px;}
.x2d_c01270{left:223.770000px;}
.x2_c01270{left:225.510000px;}
.x8_c01270{left:237.600000px;}
.xc2_c01270{left:239.325000px;}
.x76_c01270{left:241.920000px;}
.x65_c01270{left:243.645000px;}
.x46_c01270{left:246.240000px;}
.x47_c01270{left:248.835000px;}
.x9_c01270{left:251.430000px;}
.xf6_c01270{left:253.155000px;}
.x48_c01270{left:255.750000px;}
.x83_c01270{left:258.330000px;}
.xd4_c01270{left:260.070000px;}
.x8c_c01270{left:261.795000px;}
.x5c_c01270{left:263.520000px;}
.xe5_c01270{left:266.115000px;}
.x3d_c01270{left:268.710000px;}
.xe9_c01270{left:270.435000px;}
.x4f_c01270{left:272.160000px;}
.xe2_c01270{left:273.885000px;}
.x22_c01270{left:276.480000px;}
.xa7_c01270{left:278.205000px;}
.x49_c01270{left:282.525000px;}
.x17_c01270{left:284.250000px;}
.xb3_c01270{left:285.990000px;}
.xd0_c01270{left:289.440000px;}
.xa_c01270{left:291.165000px;}
.x6b_c01270{left:294.630000px;}
.x50_c01270{left:297.210000px;}
.xfc_c01270{left:298.950000px;}
.x6f_c01270{left:300.675000px;}
.x78_c01270{left:302.400000px;}
.xb2_c01270{left:304.125000px;}
.x3_c01270{left:306.720000px;}
.x18_c01270{left:308.445000px;}
.x8d_c01270{left:311.040000px;}
.xd8_c01270{left:312.765000px;}
.xb4_c01270{left:318.810000px;}
.x51_c01270{left:322.275000px;}
.x4_c01270{left:324.000000px;}
.x23_c01270{left:325.725000px;}
.x93_c01270{left:328.320000px;}
.x106_c01270{left:330.915000px;}
.x4a_c01270{left:332.640000px;}
.xc7_c01270{left:334.365000px;}
.xa8_c01270{left:336.960000px;}
.x84_c01270{left:341.280000px;}
.x5_c01270{left:345.600000px;}
.x52_c01270{left:347.325000px;}
.xd5_c01270{left:349.050000px;}
.xfd_c01270{left:350.790000px;}
.x94_c01270{left:352.515000px;}
.x100_c01270{left:355.110000px;}
.x79_c01270{left:356.835000px;}
.xef_c01270{left:358.560000px;}
.x95_c01270{left:362.010000px;}
.x34_c01270{left:363.750000px;}
.x5d_c01270{left:367.200000px;}
.x19_c01270{left:369.795000px;}
.xa9_c01270{left:372.390000px;}
.x10a_c01270{left:374.970000px;}
.x24_c01270{left:376.710000px;}
.xee_c01270{left:379.290000px;}
.x7a_c01270{left:381.885000px;}
.xd9_c01270{left:387.075000px;}
.x3e_c01270{left:388.800000px;}
.xae_c01270{left:390.525000px;}
.xde_c01270{left:392.250000px;}
.x4b_c01270{left:393.990000px;}
.x108_c01270{left:397.440000px;}
.xc8_c01270{left:400.035000px;}
.x5e_c01270{left:401.760000px;}
.x8e_c01270{left:404.355000px;}
.x1a_c01270{left:406.080000px;}
.x89_c01270{left:407.805000px;}
.x101_c01270{left:410.400000px;}
.x70_c01270{left:412.125000px;}
.x3f_c01270{left:413.850000px;}
.xd6_c01270{left:417.315000px;}
.x35_c01270{left:423.360000px;}
.x53_c01270{left:425.085000px;}
.x77_c01270{left:426.810000px;}
.x4c_c01270{left:429.405000px;}
.x2e_c01270{left:432.000000px;}
.x10b_c01270{left:434.595000px;}
.x5f_c01270{left:437.190000px;}
.xaf_c01270{left:438.915000px;}
.xa0_c01270{left:441.510000px;}
.xb9_c01270{left:444.960000px;}
.xcb_c01270{left:447.555000px;}
.x36_c01270{left:449.280000px;}
.xe6_c01270{left:452.730000px;}
.xf9_c01270{left:455.325000px;}
.xd1_c01270{left:457.920000px;}
.x96_c01270{left:459.645000px;}
.xba_c01270{left:461.370000px;}
.x66_c01270{left:463.965000px;}
.x7b_c01270{left:465.690000px;}
.x6_c01270{left:470.880000px;}
.x25_c01270{left:475.200000px;}
.xb_c01270{left:476.925000px;}
.x1_c01270{left:478.650000px;}
.x97_c01270{left:480.390000px;}
.x37_c01270{left:482.115000px;}
.xbb_c01270{left:484.710000px;}
.x8a_c01270{left:488.160000px;}
.x38_c01270{left:493.350000px;}
.x40_c01270{left:496.800000px;}
.xa2_c01270{left:499.395000px;}
.xf0_c01270{left:501.120000px;}
.x8f_c01270{left:503.715000px;}
.x85_c01270{left:506.310000px;}
.xbc_c01270{left:508.035000px;}
.x6c_c01270{left:509.760000px;}
.x2f_c01270{left:511.485000px;}
.x4d_c01270{left:513.210000px;}
.x54_c01270{left:517.530000px;}
.xa3_c01270{left:522.720000px;}
.x60_c01270{left:527.910000px;}
.xc_c01270{left:530.490000px;}
.xd7_c01270{left:532.230000px;}
.x7c_c01270{left:533.955000px;}
.x103_c01270{left:535.680000px;}
.x7d_c01270{left:538.275000px;}
.xb5_c01270{left:540.870000px;}
.x90_c01270{left:543.450000px;}
.x39_c01270{left:545.190000px;}
.x1b_c01270{left:547.770000px;}
.x26_c01270{left:550.365000px;}
.xd_c01270{left:552.090000px;}
.xfa_c01270{left:555.555000px;}
.xaa_c01270{left:557.280000px;}
.xe_c01270{left:561.600000px;}
.x71_c01270{left:565.050000px;}
.xcc_c01270{left:566.790000px;}
.x41_c01270{left:570.240000px;}
.xab_c01270{left:574.560000px;}
.xc3_c01270{left:578.010000px;}
.x72_c01270{left:580.605000px;}
.x7e_c01270{left:583.200000px;}
.xd2_c01270{left:590.970000px;}
.x42_c01270{left:592.710000px;}
.xca_c01270{left:594.435000px;}
.x3a_c01270{left:597.885000px;}
.xea_c01270{left:601.350000px;}
.x55_c01270{left:603.075000px;}
.x30_c01270{left:606.525000px;}
.x67_c01270{left:609.120000px;}
.x27_c01270{left:612.570000px;}
.x8b_c01270{left:614.310000px;}
.xf_c01270{left:616.890000px;}
.x10f_c01270{left:619.485000px;}
.xac_c01270{left:622.080000px;}
.x4e_c01270{left:624.675000px;}
.xfb_c01270{left:627.270000px;}
.x98_c01270{left:630.720000px;}
.xb6_c01270{left:633.315000px;}
.x1c_c01270{left:635.040000px;}
.xf2_c01270{left:636.765000px;}
.xa4_c01270{left:638.490000px;}
.x10_c01270{left:640.230000px;}
.x6d_c01270{left:642.810000px;}
.x99_c01270{left:644.550000px;}
.x7f_c01270{left:646.275000px;}
.x43_c01270{left:648.870000px;}
.xbd_c01270{left:650.595000px;}
.xd3_c01270{left:652.320000px;}
.xc9_c01270{left:654.045000px;}
.x7_c01270{left:656.640000px;}
.xec_c01270{left:658.365000px;}
.x28_c01270{left:661.830000px;}
.x1d_c01270{left:665.280000px;}
.x68_c01270{left:667.005000px;}
.x3b_c01270{left:669.600000px;}
.x1e_c01270{left:673.920000px;}
.x31_c01270{left:676.515000px;}
.xc4_c01270{left:679.110000px;}
.x73_c01270{left:681.690000px;}
.x61_c01270{left:685.155000px;}
.x86_c01270{left:686.880000px;}
.x91_c01270{left:689.475000px;}
.x80_c01270{left:692.070000px;}
.x56_c01270{left:694.650000px;}
.x44_c01270{left:697.245000px;}
.x62_c01270{left:700.710000px;}
.xa1_c01270{left:705.030000px;}
.x63_c01270{left:707.610000px;}
.x1f_c01270{left:709.350000px;}
.x57_c01270{left:712.800000px;}
.x87_c01270{left:715.395000px;}
.x9a_c01270{left:718.845000px;}
.xbe_c01270{left:720.570000px;}
.x11_c01270{left:724.035000px;}
.x20_c01270{left:725.760000px;}
.x10d_c01270{left:727.485000px;}
.x74_c01270{left:729.210000px;}
.x92_c01270{left:731.805000px;}
.x110_c01270{left:733.530000px;}
.x12_c01270{left:735.270000px;}
.xcd_c01270{left:736.995000px;}
.x69_c01270{left:738.720000px;}
.xa5_c01270{left:740.445000px;}
.x29_c01270{left:743.040000px;}
.xb0_c01270{left:745.635000px;}
.x13_c01270{left:747.360000px;}
.xed_c01270{left:749.955000px;}
.xdf_c01270{left:751.680000px;}
.xb1_c01270{left:753.405000px;}
.x81_c01270{left:755.130000px;}
.x104_c01270{left:756.870000px;}
.x107_c01270{left:758.595000px;}
.x6a_c01270{left:760.320000px;}
.x32_c01270{left:762.045000px;}
.xb7_c01270{left:763.770000px;}
.x10c_c01270{left:766.365000px;}
.x9b_c01270{left:768.090000px;}
.x6e_c01270{left:769.830000px;}
.xa6_c01270{left:771.555000px;}
.xf3_c01270{left:773.280000px;}
.x45_c01270{left:775.005000px;}
.x58_c01270{left:777.600000px;}
.xc5_c01270{left:781.050000px;}
.x14_c01270{left:783.645000px;}
.x2a_c01270{left:786.240000px;}
.x59_c01270{left:787.965000px;}
.x75_c01270{left:790.560000px;}
.xda_c01270{left:792.285000px;}
.xad_c01270{left:794.010000px;}
.x10e_c01270{left:795.750000px;}
.x105_c01270{left:798.330000px;}
.x21_c01270{left:800.070000px;}
.xbf_c01270{left:802.650000px;}
.x82_c01270{left:805.245000px;}
.x64_c01270{left:807.840000px;}
.x33_c01270{left:810.435000px;}
.xe3_c01270{left:814.755000px;}
.x5a_c01270{left:818.205000px;}
.x15_c01270{left:821.670000px;}
.xdd_c01270{left:823.395000px;}
.xe7_c01270{left:825.120000px;}
.x88_c01270{left:826.845000px;}
.x16_c01270{left:829.440000px;}
.xe0_c01270{left:831.165000px;}
.xdb_c01270{left:832.890000px;}
.x2b_c01270{left:834.630000px;}
.xe4_c01270{left:836.355000px;}
.xc6_c01270{left:840.675000px;}
.xc0_c01270{left:842.400000px;}
.x5b_c01270{left:844.125000px;}
.x9c_c01270{left:846.720000px;}
.xf7_c01270{left:848.445000px;}
.xc1_c01270{left:850.170000px;}
.x9d_c01270{left:858.810000px;}
.xf4_c01270{left:862.275000px;}
.x9e_c01270{left:864.000000px;}
.x102_c01270{left:865.725000px;}
.x109_c01270{left:870.045000px;}
.xfe_c01270{left:880.410000px;}
.xdc_c01270{left:884.730000px;}
.x114_c01270{left:894.240000px;}
.x116_c01270{left:898.560000px;}
.x117_c01270{left:1025.565000px;}
.x115_c01270{left:1037.670000px;}
@media print{
.v1_c01270{vertical-align:-3.040000pt;}
.v0_c01270{vertical-align:0.000000pt;}
.v2_c01270{vertical-align:3.040000pt;}
.ls3_c01270{letter-spacing:0.000000pt;}
.ls2_c01270{letter-spacing:34.491691pt;}
.ls1_c01270{letter-spacing:68.529280pt;}
.ls0_c01270{letter-spacing:745.815723pt;}
.ws4_c01270{word-spacing:-10.633722pt;}
.ws3_c01270{word-spacing:-8.730667pt;}
.ws1_c01270{word-spacing:-7.631851pt;}
.ws0_c01270{word-spacing:-3.384471pt;}
.ws5_c01270{word-spacing:0.000000pt;}
.ws2_c01270{word-spacing:64.765185pt;}
.fs1a_c01270{font-size:3.072000pt;}
.fs2_c01270{font-size:5.333333pt;}
.fs6_c01270{font-size:6.133333pt;}
.fsf_c01270{font-size:9.226667pt;}
.fs1d_c01270{font-size:12.266667pt;}
.fs0_c01270{font-size:15.360000pt;}
.fse_c01270{font-size:18.453333pt;}
.fs7_c01270{font-size:21.493333pt;}
.fs10_c01270{font-size:24.586667pt;}
.fs1c_c01270{font-size:27.626667pt;}
.fs9_c01270{font-size:30.720000pt;}
.fsb_c01270{font-size:33.813333pt;}
.fs11_c01270{font-size:36.853333pt;}
.fs14_c01270{font-size:39.946667pt;}
.fsa_c01270{font-size:42.986667pt;}
.fs13_c01270{font-size:46.080000pt;}
.fs16_c01270{font-size:49.173333pt;}
.fsc_c01270{font-size:52.213333pt;}
.fs12_c01270{font-size:55.306667pt;}
.fs1_c01270{font-size:58.346667pt;}
.fsd_c01270{font-size:61.440000pt;}
.fs8_c01270{font-size:64.533333pt;}
.fs17_c01270{font-size:67.573333pt;}
.fs19_c01270{font-size:70.666667pt;}
.fs15_c01270{font-size:73.706667pt;}
.fs18_c01270{font-size:76.800000pt;}
.fs1f_c01270{font-size:79.893333pt;}
.fs1b_c01270{font-size:82.933333pt;}
.fs1e_c01270{font-size:86.026667pt;}
.fs20_c01270{font-size:89.066667pt;}
.fs3_c01270{font-size:92.160000pt;}
.fs4_c01270{font-size:95.253333pt;}
.fs5_c01270{font-size:98.293333pt;}
.y0_c01270{bottom:0.000000pt;}
.y1e2_c01270{bottom:173.573333pt;}
.y1e3_c01270{bottom:175.106667pt;}
.y1e4_c01270{bottom:177.413333pt;}
.y1e5_c01270{bottom:178.173333pt;}
.y1e1_c01270{bottom:178.946667pt;}
.y1e0_c01270{bottom:179.706667pt;}
.y1df_c01270{bottom:180.480000pt;}
.y1dd_c01270{bottom:181.253333pt;}
.y1dc_c01270{bottom:182.013333pt;}
.y1de_c01270{bottom:183.546667pt;}
.y1db_c01270{bottom:185.093333pt;}
.y1d9_c01270{bottom:191.226667pt;}
.y1d7_c01270{bottom:192.000000pt;}
.y1d6_c01270{bottom:193.533333pt;}
.y1d4_c01270{bottom:194.306667pt;}
.y1d5_c01270{bottom:195.066667pt;}
.y1da_c01270{bottom:195.840000pt;}
.y1d8_c01270{bottom:196.613333pt;}
.y1ce_c01270{bottom:198.146667pt;}
.y1d0_c01270{bottom:198.906667pt;}
.y1cb_c01270{bottom:199.680000pt;}
.y1cd_c01270{bottom:200.453333pt;}
.y1d1_c01270{bottom:201.213333pt;}
.y1cf_c01270{bottom:201.986667pt;}
.y1cc_c01270{bottom:204.293333pt;}
.y1ca_c01270{bottom:205.053333pt;}
.y1d2_c01270{bottom:206.586667pt;}
.y1d3_c01270{bottom:216.573333pt;}
.y1c4_c01270{bottom:217.346667pt;}
.y1c2_c01270{bottom:218.106667pt;}
.y1c6_c01270{bottom:218.880000pt;}
.y1c5_c01270{bottom:219.653333pt;}
.y1c9_c01270{bottom:221.186667pt;}
.y1c3_c01270{bottom:222.720000pt;}
.y1c7_c01270{bottom:225.786667pt;}
.y1c8_c01270{bottom:228.093333pt;}
.y1be_c01270{bottom:235.773333pt;}
.y1bf_c01270{bottom:236.546667pt;}
.y1bc_c01270{bottom:237.306667pt;}
.y1c1_c01270{bottom:238.080000pt;}
.y1bd_c01270{bottom:239.613333pt;}
.y1c0_c01270{bottom:241.146667pt;}
.y1b5_c01270{bottom:252.666667pt;}
.y1b6_c01270{bottom:254.213333pt;}
.y1b7_c01270{bottom:254.973333pt;}
.y1eb_c01270{bottom:255.746667pt;}
.y1bb_c01270{bottom:258.053333pt;}
.y1b8_c01270{bottom:260.346667pt;}
.y1b9_c01270{bottom:265.733333pt;}
.y1ba_c01270{bottom:269.573333pt;}
.y1b3_c01270{bottom:270.333333pt;}
.y1b2_c01270{bottom:271.106667pt;}
.y1af_c01270{bottom:271.866667pt;}
.y1ae_c01270{bottom:272.640000pt;}
.y1b0_c01270{bottom:273.413333pt;}
.y1b4_c01270{bottom:275.706667pt;}
.y1b1_c01270{bottom:282.626667pt;}
.y1ac_c01270{bottom:288.773333pt;}
.y1a7_c01270{bottom:289.533333pt;}
.y1ab_c01270{bottom:290.306667pt;}
.y1a8_c01270{bottom:291.066667pt;}
.y1aa_c01270{bottom:291.840000pt;}
.y1a9_c01270{bottom:294.146667pt;}
.y1ad_c01270{bottom:296.453333pt;}
.y1a1_c01270{bottom:307.973333pt;}
.y1a2_c01270{bottom:308.733333pt;}
.y1a3_c01270{bottom:311.040000pt;}
.y1a6_c01270{bottom:312.573333pt;}
.y1a5_c01270{bottom:313.346667pt;}
.y1a4_c01270{bottom:314.880000pt;}
.y19f_c01270{bottom:324.093333pt;}
.y198_c01270{bottom:325.626667pt;}
.y19e_c01270{bottom:326.400000pt;}
.y19b_c01270{bottom:327.173333pt;}
.y19a_c01270{bottom:329.466667pt;}
.y1a0_c01270{bottom:330.240000pt;}
.y199_c01270{bottom:331.773333pt;}
.y19c_c01270{bottom:332.546667pt;}
.y19d_c01270{bottom:342.533333pt;}
.y197_c01270{bottom:343.293333pt;}
.y193_c01270{bottom:344.066667pt;}
.y195_c01270{bottom:344.826667pt;}
.y192_c01270{bottom:346.373333pt;}
.y196_c01270{bottom:347.906667pt;}
.y194_c01270{bottom:350.213333pt;}
.y191_c01270{bottom:357.893333pt;}
.y18e_c01270{bottom:361.733333pt;}
.y190_c01270{bottom:362.493333pt;}
.y18a_c01270{bottom:363.266667pt;}
.y189_c01270{bottom:364.026667pt;}
.y18f_c01270{bottom:365.573333pt;}
.y188_c01270{bottom:366.333333pt;}
.y18b_c01270{bottom:367.106667pt;}
.y18c_c01270{bottom:370.173333pt;}
.y18d_c01270{bottom:377.093333pt;}
.y187_c01270{bottom:377.853333pt;}
.y183_c01270{bottom:380.160000pt;}
.y181_c01270{bottom:380.933333pt;}
.y185_c01270{bottom:381.693333pt;}
.y186_c01270{bottom:382.466667pt;}
.y182_c01270{bottom:385.533333pt;}
.y184_c01270{bottom:386.306667pt;}
.y180_c01270{bottom:388.613333pt;}
.y17f_c01270{bottom:397.826667pt;}
.y17a_c01270{bottom:398.586667pt;}
.y17b_c01270{bottom:399.360000pt;}
.y17c_c01270{bottom:400.133333pt;}
.y17e_c01270{bottom:401.666667pt;}
.y17d_c01270{bottom:403.973333pt;}
.y179_c01270{bottom:410.106667pt;}
.y177_c01270{bottom:416.253333pt;}
.y175_c01270{bottom:417.026667pt;}
.y174_c01270{bottom:420.866667pt;}
.y173_c01270{bottom:421.626667pt;}
.y176_c01270{bottom:422.400000pt;}
.y178_c01270{bottom:433.146667pt;}
.y16d_c01270{bottom:434.693333pt;}
.y16c_c01270{bottom:435.453333pt;}
.y16f_c01270{bottom:437.760000pt;}
.y171_c01270{bottom:438.533333pt;}
.y170_c01270{bottom:439.293333pt;}
.y16b_c01270{bottom:446.973333pt;}
.y172_c01270{bottom:449.280000pt;}
.y16e_c01270{bottom:450.813333pt;}
.y165_c01270{bottom:452.346667pt;}
.y16a_c01270{bottom:453.120000pt;}
.y169_c01270{bottom:453.893333pt;}
.y166_c01270{bottom:456.186667pt;}
.y167_c01270{bottom:458.493333pt;}
.y168_c01270{bottom:460.026667pt;}
.y164_c01270{bottom:470.013333pt;}
.y163_c01270{bottom:470.786667pt;}
.y15f_c01270{bottom:471.546667pt;}
.y162_c01270{bottom:472.320000pt;}
.y15e_c01270{bottom:473.853333pt;}
.y160_c01270{bottom:476.933333pt;}
.y161_c01270{bottom:477.693333pt;}
.y1ea_c01270{bottom:480.000000pt;}
.y15d_c01270{bottom:487.680000pt;}
.y157_c01270{bottom:488.453333pt;}
.y158_c01270{bottom:489.213333pt;}
.y15a_c01270{bottom:489.986667pt;}
.y159_c01270{bottom:490.746667pt;}
.y15c_c01270{bottom:493.053333pt;}
.y15b_c01270{bottom:493.826667pt;}
.y155_c01270{bottom:503.040000pt;}
.y150_c01270{bottom:503.813333pt;}
.y151_c01270{bottom:504.573333pt;}
.y152_c01270{bottom:505.346667pt;}
.y154_c01270{bottom:506.106667pt;}
.y153_c01270{bottom:506.880000pt;}
.y14e_c01270{bottom:507.653333pt;}
.y156_c01270{bottom:510.720000pt;}
.y14f_c01270{bottom:514.560000pt;}
.y14d_c01270{bottom:522.240000pt;}
.y14b_c01270{bottom:524.546667pt;}
.y14c_c01270{bottom:525.306667pt;}
.y149_c01270{bottom:526.080000pt;}
.y147_c01270{bottom:526.853333pt;}
.y14a_c01270{bottom:527.613333pt;}
.y148_c01270{bottom:529.146667pt;}
.y146_c01270{bottom:541.440000pt;}
.y13f_c01270{bottom:542.213333pt;}
.y144_c01270{bottom:542.973333pt;}
.y142_c01270{bottom:543.746667pt;}
.y141_c01270{bottom:545.280000pt;}
.y140_c01270{bottom:546.053333pt;}
.y13d_c01270{bottom:546.813333pt;}
.y13e_c01270{bottom:547.586667pt;}
.y145_c01270{bottom:548.346667pt;}
.y143_c01270{bottom:549.120000pt;}
.y139_c01270{bottom:559.866667pt;}
.y138_c01270{bottom:560.640000pt;}
.y137_c01270{bottom:561.413333pt;}
.y136_c01270{bottom:562.173333pt;}
.y13b_c01270{bottom:562.946667pt;}
.y13c_c01270{bottom:564.480000pt;}
.y13a_c01270{bottom:566.013333pt;}
.y135_c01270{bottom:578.306667pt;}
.y12f_c01270{bottom:579.840000pt;}
.y133_c01270{bottom:580.613333pt;}
.y131_c01270{bottom:582.906667pt;}
.y130_c01270{bottom:583.680000pt;}
.y132_c01270{bottom:584.453333pt;}
.y134_c01270{bottom:587.520000pt;}
.y126_c01270{bottom:595.973333pt;}
.y128_c01270{bottom:596.733333pt;}
.y129_c01270{bottom:597.506667pt;}
.y12a_c01270{bottom:598.266667pt;}
.y12d_c01270{bottom:599.813333pt;}
.y127_c01270{bottom:600.573333pt;}
.y12b_c01270{bottom:601.346667pt;}
.y12c_c01270{bottom:605.186667pt;}
.y12e_c01270{bottom:607.493333pt;}
.y11f_c01270{bottom:612.866667pt;}
.y125_c01270{bottom:613.626667pt;}
.y11e_c01270{bottom:615.173333pt;}
.y123_c01270{bottom:616.706667pt;}
.y121_c01270{bottom:617.466667pt;}
.y124_c01270{bottom:618.240000pt;}
.y120_c01270{bottom:619.013333pt;}
.y122_c01270{bottom:619.773333pt;}
.y11c_c01270{bottom:631.293333pt;}
.y119_c01270{bottom:632.066667pt;}
.y117_c01270{bottom:632.826667pt;}
.y118_c01270{bottom:633.600000pt;}
.y115_c01270{bottom:634.373333pt;}
.y11a_c01270{bottom:635.906667pt;}
.y116_c01270{bottom:636.666667pt;}
.y11b_c01270{bottom:637.440000pt;}
.y11d_c01270{bottom:638.213333pt;}
.y114_c01270{bottom:648.960000pt;}
.y111_c01270{bottom:649.733333pt;}
.y10f_c01270{bottom:651.266667pt;}
.y112_c01270{bottom:652.026667pt;}
.y110_c01270{bottom:654.333333pt;}
.y113_c01270{bottom:655.106667pt;}
.y10d_c01270{bottom:667.386667pt;}
.y10a_c01270{bottom:668.160000pt;}
.y10c_c01270{bottom:668.933333pt;}
.y109_c01270{bottom:672.000000pt;}
.y10b_c01270{bottom:672.773333pt;}
.y10e_c01270{bottom:683.520000pt;}
.y102_c01270{bottom:685.826667pt;}
.y105_c01270{bottom:687.360000pt;}
.y108_c01270{bottom:689.666667pt;}
.y107_c01270{bottom:690.426667pt;}
.y103_c01270{bottom:691.200000pt;}
.y104_c01270{bottom:691.973333pt;}
.y106_c01270{bottom:695.040000pt;}
.yfe_c01270{bottom:703.493333pt;}
.yfa_c01270{bottom:704.253333pt;}
.yfc_c01270{bottom:705.026667pt;}
.yfb_c01270{bottom:705.786667pt;}
.yff_c01270{bottom:706.560000pt;}
.y101_c01270{bottom:707.333333pt;}
.yfd_c01270{bottom:708.093333pt;}
.y100_c01270{bottom:708.866667pt;}
.yf9_c01270{bottom:721.146667pt;}
.yf3_c01270{bottom:721.920000pt;}
.yf5_c01270{bottom:723.453333pt;}
.yf7_c01270{bottom:724.986667pt;}
.yf8_c01270{bottom:725.760000pt;}
.yf6_c01270{bottom:726.533333pt;}
.yf4_c01270{bottom:727.293333pt;}
.yf2_c01270{bottom:739.586667pt;}
.yeb_c01270{bottom:740.346667pt;}
.yec_c01270{bottom:741.120000pt;}
.yef_c01270{bottom:741.893333pt;}
.yf1_c01270{bottom:743.426667pt;}
.yee_c01270{bottom:744.186667pt;}
.yed_c01270{bottom:744.960000pt;}
.yf0_c01270{bottom:745.733333pt;}
.yea_c01270{bottom:748.026667pt;}
.ye8_c01270{bottom:754.946667pt;}
.ye9_c01270{bottom:756.480000pt;}
.ye2_c01270{bottom:758.013333pt;}
.ye1_c01270{bottom:758.786667pt;}
.ye3_c01270{bottom:759.546667pt;}
.ye5_c01270{bottom:760.320000pt;}
.ye7_c01270{bottom:761.093333pt;}
.ye6_c01270{bottom:761.853333pt;}
.ye4_c01270{bottom:762.626667pt;}
.ydf_c01270{bottom:774.146667pt;}
.yda_c01270{bottom:774.906667pt;}
.ydb_c01270{bottom:777.986667pt;}
.ye0_c01270{bottom:778.746667pt;}
.yde_c01270{bottom:779.520000pt;}
.ydc_c01270{bottom:781.053333pt;}
.ydd_c01270{bottom:781.826667pt;}
.yd9_c01270{bottom:791.813333pt;}
.yd8_c01270{bottom:792.573333pt;}
.yd2_c01270{bottom:793.346667pt;}
.yd3_c01270{bottom:794.880000pt;}
.yd5_c01270{bottom:795.653333pt;}
.yd7_c01270{bottom:797.186667pt;}
.yd4_c01270{bottom:798.720000pt;}
.yd6_c01270{bottom:799.493333pt;}
.yd0_c01270{bottom:811.013333pt;}
.yce_c01270{bottom:811.773333pt;}
.yd1_c01270{bottom:812.546667pt;}
.ycc_c01270{bottom:813.306667pt;}
.ycf_c01270{bottom:814.080000pt;}
.yc9_c01270{bottom:814.853333pt;}
.yca_c01270{bottom:815.613333pt;}
.yc2_c01270{bottom:816.386667pt;}
.ycd_c01270{bottom:817.146667pt;}
.yc7_c01270{bottom:820.226667pt;}
.yc6_c01270{bottom:822.533333pt;}
.yc8_c01270{bottom:823.293333pt;}
.ycb_c01270{bottom:824.066667pt;}
.yc4_c01270{bottom:824.826667pt;}
.yc3_c01270{bottom:825.600000pt;}
.yc5_c01270{bottom:827.906667pt;}
.yc0_c01270{bottom:828.666667pt;}
.yc1_c01270{bottom:829.440000pt;}
.ybe_c01270{bottom:830.973333pt;}
.ybf_c01270{bottom:834.053333pt;}
.yb7_c01270{bottom:846.333333pt;}
.ybc_c01270{bottom:847.106667pt;}
.ybd_c01270{bottom:847.866667pt;}
.yb8_c01270{bottom:848.640000pt;}
.yba_c01270{bottom:850.173333pt;}
.ybb_c01270{bottom:850.946667pt;}
.yb9_c01270{bottom:852.480000pt;}
.yb6_c01270{bottom:854.013333pt;}
.yae_c01270{bottom:864.773333pt;}
.yb0_c01270{bottom:865.533333pt;}
.yb5_c01270{bottom:867.066667pt;}
.yaf_c01270{bottom:867.840000pt;}
.yb3_c01270{bottom:868.613333pt;}
.yb4_c01270{bottom:869.373333pt;}
.yb1_c01270{bottom:873.986667pt;}
.yb2_c01270{bottom:877.053333pt;}
.yab_c01270{bottom:880.133333pt;}
.ya8_c01270{bottom:880.893333pt;}
.yaa_c01270{bottom:881.666667pt;}
.yac_c01270{bottom:882.426667pt;}
.ya7_c01270{bottom:883.200000pt;}
.yad_c01270{bottom:883.973333pt;}
.ya9_c01270{bottom:884.733333pt;}
.ya4_c01270{bottom:887.040000pt;}
.ya2_c01270{bottom:888.573333pt;}
.ya5_c01270{bottom:890.880000pt;}
.ya6_c01270{bottom:891.653333pt;}
.y9f_c01270{bottom:893.946667pt;}
.y1e9_c01270{bottom:894.720000pt;}
.ya0_c01270{bottom:895.493333pt;}
.ya1_c01270{bottom:896.253333pt;}
.ya3_c01270{bottom:899.333333pt;}
.y9a_c01270{bottom:900.866667pt;}
.y9b_c01270{bottom:902.400000pt;}
.y9e_c01270{bottom:903.173333pt;}
.y9d_c01270{bottom:904.706667pt;}
.y99_c01270{bottom:906.240000pt;}
.y9c_c01270{bottom:908.546667pt;}
.y98_c01270{bottom:918.533333pt;}
.y91_c01270{bottom:920.066667pt;}
.y96_c01270{bottom:920.826667pt;}
.y94_c01270{bottom:921.600000pt;}
.y97_c01270{bottom:923.133333pt;}
.y92_c01270{bottom:923.906667pt;}
.y93_c01270{bottom:924.666667pt;}
.y95_c01270{bottom:925.440000pt;}
.y88_c01270{bottom:936.186667pt;}
.y87_c01270{bottom:936.960000pt;}
.y8a_c01270{bottom:937.733333pt;}
.y8e_c01270{bottom:938.493333pt;}
.y89_c01270{bottom:939.266667pt;}
.y8b_c01270{bottom:940.026667pt;}
.y8c_c01270{bottom:940.800000pt;}
.y8f_c01270{bottom:941.573333pt;}
.y8d_c01270{bottom:943.106667pt;}
.y90_c01270{bottom:946.173333pt;}
.y81_c01270{bottom:950.013333pt;}
.y85_c01270{bottom:951.546667pt;}
.y80_c01270{bottom:952.320000pt;}
.y82_c01270{bottom:953.093333pt;}
.y7f_c01270{bottom:954.626667pt;}
.y86_c01270{bottom:959.226667pt;}
.y83_c01270{bottom:960.773333pt;}
.y1e8_c01270{bottom:969.986667pt;}
.y7e_c01270{bottom:971.520000pt;}
.y84_c01270{bottom:972.293333pt;}
.y78_c01270{bottom:973.053333pt;}
.y79_c01270{bottom:973.826667pt;}
.y7d_c01270{bottom:974.586667pt;}
.y7a_c01270{bottom:975.360000pt;}
.y7c_c01270{bottom:976.893333pt;}
.y77_c01270{bottom:977.666667pt;}
.y7b_c01270{bottom:978.426667pt;}
.y1e7_c01270{bottom:979.200000pt;}
.y1e6_c01270{bottom:984.573333pt;}
.y74_c01270{bottom:989.946667pt;}
.y72_c01270{bottom:991.493333pt;}
.y73_c01270{bottom:992.253333pt;}
.y75_c01270{bottom:993.026667pt;}
.y76_c01270{bottom:993.786667pt;}
.y71_c01270{bottom:995.333333pt;}
.y70_c01270{bottom:996.866667pt;}
.y6d_c01270{bottom:1003.773333pt;}
.y6f_c01270{bottom:1005.306667pt;}
.y67_c01270{bottom:1006.080000pt;}
.y6a_c01270{bottom:1006.853333pt;}
.y68_c01270{bottom:1007.613333pt;}
.y66_c01270{bottom:1010.693333pt;}
.y6e_c01270{bottom:1012.986667pt;}
.y69_c01270{bottom:1013.760000pt;}
.y6b_c01270{bottom:1014.533333pt;}
.y6c_c01270{bottom:1024.506667pt;}
.y63_c01270{bottom:1026.813333pt;}
.y64_c01270{bottom:1027.586667pt;}
.y61_c01270{bottom:1028.346667pt;}
.y65_c01270{bottom:1029.893333pt;}
.y60_c01270{bottom:1030.653333pt;}
.y62_c01270{bottom:1032.960000pt;}
.y5f_c01270{bottom:1037.573333pt;}
.y57_c01270{bottom:1039.866667pt;}
.y58_c01270{bottom:1040.640000pt;}
.y5c_c01270{bottom:1041.413333pt;}
.y5d_c01270{bottom:1042.173333pt;}
.y59_c01270{bottom:1042.946667pt;}
.y5a_c01270{bottom:1043.706667pt;}
.y5e_c01270{bottom:1044.480000pt;}
.y55_c01270{bottom:1048.320000pt;}
.y5b_c01270{bottom:1049.853333pt;}
.y56_c01270{bottom:1056.773333pt;}
.y54_c01270{bottom:1057.533333pt;}
.y52_c01270{bottom:1059.066667pt;}
.y53_c01270{bottom:1060.613333pt;}
.y50_c01270{bottom:1061.373333pt;}
.y4d_c01270{bottom:1062.146667pt;}
.y4e_c01270{bottom:1062.906667pt;}
.y4f_c01270{bottom:1064.453333pt;}
.y51_c01270{bottom:1065.986667pt;}
.y4c_c01270{bottom:1066.746667pt;}
.y48_c01270{bottom:1080.573333pt;}
.y45_c01270{bottom:1081.346667pt;}
.y44_c01270{bottom:1082.880000pt;}
.y49_c01270{bottom:1084.413333pt;}
.y4a_c01270{bottom:1085.946667pt;}
.y4b_c01270{bottom:1086.720000pt;}
.y46_c01270{bottom:1090.560000pt;}
.y47_c01270{bottom:1095.173333pt;}
.y3f_c01270{bottom:1099.013333pt;}
.y3b_c01270{bottom:1099.773333pt;}
.y40_c01270{bottom:1100.546667pt;}
.y3c_c01270{bottom:1101.306667pt;}
.y42_c01270{bottom:1102.080000pt;}
.y3d_c01270{bottom:1102.853333pt;}
.y3e_c01270{bottom:1104.386667pt;}
.y43_c01270{bottom:1105.146667pt;}
.y41_c01270{bottom:1107.453333pt;}
.y37_c01270{bottom:1108.986667pt;}
.y38_c01270{bottom:1109.760000pt;}
.y35_c01270{bottom:1110.533333pt;}
.y36_c01270{bottom:1112.066667pt;}
.y39_c01270{bottom:1112.826667pt;}
.y3a_c01270{bottom:1114.373333pt;}
.y34_c01270{bottom:1115.133333pt;}
.y33_c01270{bottom:1115.906667pt;}
.y30_c01270{bottom:1116.666667pt;}
.y2f_c01270{bottom:1118.213333pt;}
.y2e_c01270{bottom:1120.506667pt;}
.y31_c01270{bottom:1121.280000pt;}
.y32_c01270{bottom:1122.053333pt;}
.y27_c01270{bottom:1135.106667pt;}
.y26_c01270{bottom:1137.413333pt;}
.y2b_c01270{bottom:1138.946667pt;}
.y2a_c01270{bottom:1139.706667pt;}
.y28_c01270{bottom:1140.480000pt;}
.y29_c01270{bottom:1141.253333pt;}
.y2c_c01270{bottom:1148.160000pt;}
.y2d_c01270{bottom:1150.466667pt;}
.y20_c01270{bottom:1152.000000pt;}
.y24_c01270{bottom:1152.773333pt;}
.y21_c01270{bottom:1153.533333pt;}
.y23_c01270{bottom:1156.613333pt;}
.y25_c01270{bottom:1157.373333pt;}
.y22_c01270{bottom:1158.146667pt;}
.y1f_c01270{bottom:1168.133333pt;}
.y1d_c01270{bottom:1168.893333pt;}
.y1c_c01270{bottom:1169.666667pt;}
.y17_c01270{bottom:1170.426667pt;}
.y1b_c01270{bottom:1171.200000pt;}
.y1a_c01270{bottom:1172.733333pt;}
.y1e_c01270{bottom:1175.040000pt;}
.y18_c01270{bottom:1175.813333pt;}
.y19_c01270{bottom:1176.573333pt;}
.y15_c01270{bottom:1188.093333pt;}
.y14_c01270{bottom:1188.866667pt;}
.y13_c01270{bottom:1189.626667pt;}
.y11_c01270{bottom:1191.173333pt;}
.y16_c01270{bottom:1191.933333pt;}
.ye_c01270{bottom:1192.706667pt;}
.y9_c01270{bottom:1193.466667pt;}
.y12_c01270{bottom:1194.240000pt;}
.yb_c01270{bottom:1196.546667pt;}
.ya_c01270{bottom:1198.080000pt;}
.y10_c01270{bottom:1199.613333pt;}
.y8_c01270{bottom:1200.386667pt;}
.yd_c01270{bottom:1201.920000pt;}
.yc_c01270{bottom:1202.693333pt;}
.y7_c01270{bottom:1203.453333pt;}
.yf_c01270{bottom:1205.760000pt;}
.y5_c01270{bottom:1211.133333pt;}
.y4_c01270{bottom:1211.906667pt;}
.y2_c01270{bottom:1212.666667pt;}
.y6_c01270{bottom:1215.746667pt;}
.y3_c01270{bottom:1220.346667pt;}
.y1_c01270{bottom:1239.546667pt;}
.h1c_c01270{height:2.764500pt;}
.h4_c01270{height:4.799479pt;}
.h8_c01270{height:5.519401pt;}
.h11_c01270{height:8.303099pt;}
.h1f_c01270{height:11.038802pt;}
.h2_c01270{height:13.822500pt;}
.h10_c01270{height:16.606198pt;}
.h9_c01270{height:19.341901pt;}
.h12_c01270{height:22.125599pt;}
.h1e_c01270{height:24.861302pt;}
.hb_c01270{height:27.645000pt;}
.hd_c01270{height:30.428698pt;}
.h13_c01270{height:33.164401pt;}
.h16_c01270{height:35.948099pt;}
.hc_c01270{height:38.683802pt;}
.h15_c01270{height:41.467500pt;}
.h18_c01270{height:44.251198pt;}
.he_c01270{height:46.986901pt;}
.h14_c01270{height:49.770599pt;}
.h3_c01270{height:52.506302pt;}
.hf_c01270{height:55.290000pt;}
.ha_c01270{height:58.073698pt;}
.h19_c01270{height:60.809401pt;}
.h1b_c01270{height:63.593099pt;}
.h17_c01270{height:66.328802pt;}
.h1a_c01270{height:69.112500pt;}
.h21_c01270{height:71.896198pt;}
.h1d_c01270{height:74.631901pt;}
.h20_c01270{height:77.415599pt;}
.h22_c01270{height:80.151302pt;}
.h5_c01270{height:82.935000pt;}
.h6_c01270{height:85.718698pt;}
.h7_c01270{height:88.454401pt;}
.h23_c01270{height:88.758698pt;}
.h1_c01270{height:1350.000000pt;}
.h0_c01270{height:1350.146667pt;}
.w0_c01270{width:959.226667pt;}
.w1_c01270{width:959.333333pt;}
.x0_c01270{left:0.000000pt;}
.x112_c01270{left:3.066667pt;}
.x111_c01270{left:7.680000pt;}
.x113_c01270{left:15.360000pt;}
.xeb_c01270{left:151.293333pt;}
.xe8_c01270{left:157.440000pt;}
.xf5_c01270{left:164.346667pt;}
.xf1_c01270{left:174.333333pt;}
.xce_c01270{left:180.480000pt;}
.xf8_c01270{left:182.786667pt;}
.x2c_c01270{left:184.320000pt;}
.xe1_c01270{left:186.626667pt;}
.x3c_c01270{left:188.934133pt;}
.xcf_c01270{left:190.466667pt;}
.xff_c01270{left:192.000000pt;}
.x9f_c01270{left:194.306667pt;}
.xb8_c01270{left:196.613333pt;}
.x2d_c01270{left:198.906667pt;}
.x2_c01270{left:200.453333pt;}
.x8_c01270{left:211.200000pt;}
.xc2_c01270{left:212.733333pt;}
.x76_c01270{left:215.040000pt;}
.x65_c01270{left:216.573333pt;}
.x46_c01270{left:218.880000pt;}
.x47_c01270{left:221.186667pt;}
.x9_c01270{left:223.493333pt;}
.xf6_c01270{left:225.026667pt;}
.x48_c01270{left:227.333333pt;}
.x83_c01270{left:229.626667pt;}
.xd4_c01270{left:231.173333pt;}
.x8c_c01270{left:232.706667pt;}
.x5c_c01270{left:234.240000pt;}
.xe5_c01270{left:236.546667pt;}
.x3d_c01270{left:238.853333pt;}
.xe9_c01270{left:240.386667pt;}
.x4f_c01270{left:241.920000pt;}
.xe2_c01270{left:243.453333pt;}
.x22_c01270{left:245.760000pt;}
.xa7_c01270{left:247.293333pt;}
.x49_c01270{left:251.133333pt;}
.x17_c01270{left:252.666667pt;}
.xb3_c01270{left:254.213333pt;}
.xd0_c01270{left:257.280000pt;}
.xa_c01270{left:258.813333pt;}
.x6b_c01270{left:261.893333pt;}
.x50_c01270{left:264.186667pt;}
.xfc_c01270{left:265.733333pt;}
.x6f_c01270{left:267.266667pt;}
.x78_c01270{left:268.800000pt;}
.xb2_c01270{left:270.333333pt;}
.x3_c01270{left:272.640000pt;}
.x18_c01270{left:274.173333pt;}
.x8d_c01270{left:276.480000pt;}
.xd8_c01270{left:278.013333pt;}
.xb4_c01270{left:283.386667pt;}
.x51_c01270{left:286.466667pt;}
.x4_c01270{left:288.000000pt;}
.x23_c01270{left:289.533333pt;}
.x93_c01270{left:291.840000pt;}
.x106_c01270{left:294.146667pt;}
.x4a_c01270{left:295.680000pt;}
.xc7_c01270{left:297.213333pt;}
.xa8_c01270{left:299.520000pt;}
.x84_c01270{left:303.360000pt;}
.x5_c01270{left:307.200000pt;}
.x52_c01270{left:308.733333pt;}
.xd5_c01270{left:310.266667pt;}
.xfd_c01270{left:311.813333pt;}
.x94_c01270{left:313.346667pt;}
.x100_c01270{left:315.653333pt;}
.x79_c01270{left:317.186667pt;}
.xef_c01270{left:318.720000pt;}
.x95_c01270{left:321.786667pt;}
.x34_c01270{left:323.333333pt;}
.x5d_c01270{left:326.400000pt;}
.x19_c01270{left:328.706667pt;}
.xa9_c01270{left:331.013333pt;}
.x10a_c01270{left:333.306667pt;}
.x24_c01270{left:334.853333pt;}
.xee_c01270{left:337.146667pt;}
.x7a_c01270{left:339.453333pt;}
.xd9_c01270{left:344.066667pt;}
.x3e_c01270{left:345.600000pt;}
.xae_c01270{left:347.133333pt;}
.xde_c01270{left:348.666667pt;}
.x4b_c01270{left:350.213333pt;}
.x108_c01270{left:353.280000pt;}
.xc8_c01270{left:355.586667pt;}
.x5e_c01270{left:357.120000pt;}
.x8e_c01270{left:359.426667pt;}
.x1a_c01270{left:360.960000pt;}
.x89_c01270{left:362.493333pt;}
.x101_c01270{left:364.800000pt;}
.x70_c01270{left:366.333333pt;}
.x3f_c01270{left:367.866667pt;}
.xd6_c01270{left:370.946667pt;}
.x35_c01270{left:376.320000pt;}
.x53_c01270{left:377.853333pt;}
.x77_c01270{left:379.386667pt;}
.x4c_c01270{left:381.693333pt;}
.x2e_c01270{left:384.000000pt;}
.x10b_c01270{left:386.306667pt;}
.x5f_c01270{left:388.613333pt;}
.xaf_c01270{left:390.146667pt;}
.xa0_c01270{left:392.453333pt;}
.xb9_c01270{left:395.520000pt;}
.xcb_c01270{left:397.826667pt;}
.x36_c01270{left:399.360000pt;}
.xe6_c01270{left:402.426667pt;}
.xf9_c01270{left:404.733333pt;}
.xd1_c01270{left:407.040000pt;}
.x96_c01270{left:408.573333pt;}
.xba_c01270{left:410.106667pt;}
.x66_c01270{left:412.413333pt;}
.x7b_c01270{left:413.946667pt;}
.x6_c01270{left:418.560000pt;}
.x25_c01270{left:422.400000pt;}
.xb_c01270{left:423.933333pt;}
.x1_c01270{left:425.466667pt;}
.x97_c01270{left:427.013333pt;}
.x37_c01270{left:428.546667pt;}
.xbb_c01270{left:430.853333pt;}
.x8a_c01270{left:433.920000pt;}
.x38_c01270{left:438.533333pt;}
.x40_c01270{left:441.600000pt;}
.xa2_c01270{left:443.906667pt;}
.xf0_c01270{left:445.440000pt;}
.x8f_c01270{left:447.746667pt;}
.x85_c01270{left:450.053333pt;}
.xbc_c01270{left:451.586667pt;}
.x6c_c01270{left:453.120000pt;}
.x2f_c01270{left:454.653333pt;}
.x4d_c01270{left:456.186667pt;}
.x54_c01270{left:460.026667pt;}
.xa3_c01270{left:464.640000pt;}
.x60_c01270{left:469.253333pt;}
.xc_c01270{left:471.546667pt;}
.xd7_c01270{left:473.093333pt;}
.x7c_c01270{left:474.626667pt;}
.x103_c01270{left:476.160000pt;}
.x7d_c01270{left:478.466667pt;}
.xb5_c01270{left:480.773333pt;}
.x90_c01270{left:483.066667pt;}
.x39_c01270{left:484.613333pt;}
.x1b_c01270{left:486.906667pt;}
.x26_c01270{left:489.213333pt;}
.xd_c01270{left:490.746667pt;}
.xfa_c01270{left:493.826667pt;}
.xaa_c01270{left:495.360000pt;}
.xe_c01270{left:499.200000pt;}
.x71_c01270{left:502.266667pt;}
.xcc_c01270{left:503.813333pt;}
.x41_c01270{left:506.880000pt;}
.xab_c01270{left:510.720000pt;}
.xc3_c01270{left:513.786667pt;}
.x72_c01270{left:516.093333pt;}
.x7e_c01270{left:518.400000pt;}
.xd2_c01270{left:525.306667pt;}
.x42_c01270{left:526.853333pt;}
.xca_c01270{left:528.386667pt;}
.x3a_c01270{left:531.453333pt;}
.xea_c01270{left:534.533333pt;}
.x55_c01270{left:536.066667pt;}
.x30_c01270{left:539.133333pt;}
.x67_c01270{left:541.440000pt;}
.x27_c01270{left:544.506667pt;}
.x8b_c01270{left:546.053333pt;}
.xf_c01270{left:548.346667pt;}
.x10f_c01270{left:550.653333pt;}
.xac_c01270{left:552.960000pt;}
.x4e_c01270{left:555.266667pt;}
.xfb_c01270{left:557.573333pt;}
.x98_c01270{left:560.640000pt;}
.xb6_c01270{left:562.946667pt;}
.x1c_c01270{left:564.480000pt;}
.xf2_c01270{left:566.013333pt;}
.xa4_c01270{left:567.546667pt;}
.x10_c01270{left:569.093333pt;}
.x6d_c01270{left:571.386667pt;}
.x99_c01270{left:572.933333pt;}
.x7f_c01270{left:574.466667pt;}
.x43_c01270{left:576.773333pt;}
.xbd_c01270{left:578.306667pt;}
.xd3_c01270{left:579.840000pt;}
.xc9_c01270{left:581.373333pt;}
.x7_c01270{left:583.680000pt;}
.xec_c01270{left:585.213333pt;}
.x28_c01270{left:588.293333pt;}
.x1d_c01270{left:591.360000pt;}
.x68_c01270{left:592.893333pt;}
.x3b_c01270{left:595.200000pt;}
.x1e_c01270{left:599.040000pt;}
.x31_c01270{left:601.346667pt;}
.xc4_c01270{left:603.653333pt;}
.x73_c01270{left:605.946667pt;}
.x61_c01270{left:609.026667pt;}
.x86_c01270{left:610.560000pt;}
.x91_c01270{left:612.866667pt;}
.x80_c01270{left:615.173333pt;}
.x56_c01270{left:617.466667pt;}
.x44_c01270{left:619.773333pt;}
.x62_c01270{left:622.853333pt;}
.xa1_c01270{left:626.693333pt;}
.x63_c01270{left:628.986667pt;}
.x1f_c01270{left:630.533333pt;}
.x57_c01270{left:633.600000pt;}
.x87_c01270{left:635.906667pt;}
.x9a_c01270{left:638.973333pt;}
.xbe_c01270{left:640.506667pt;}
.x11_c01270{left:643.586667pt;}
.x20_c01270{left:645.120000pt;}
.x10d_c01270{left:646.653333pt;}
.x74_c01270{left:648.186667pt;}
.x92_c01270{left:650.493333pt;}
.x110_c01270{left:652.026667pt;}
.x12_c01270{left:653.573333pt;}
.xcd_c01270{left:655.106667pt;}
.x69_c01270{left:656.640000pt;}
.xa5_c01270{left:658.173333pt;}
.x29_c01270{left:660.480000pt;}
.xb0_c01270{left:662.786667pt;}
.x13_c01270{left:664.320000pt;}
.xed_c01270{left:666.626667pt;}
.xdf_c01270{left:668.160000pt;}
.xb1_c01270{left:669.693333pt;}
.x81_c01270{left:671.226667pt;}
.x104_c01270{left:672.773333pt;}
.x107_c01270{left:674.306667pt;}
.x6a_c01270{left:675.840000pt;}
.x32_c01270{left:677.373333pt;}
.xb7_c01270{left:678.906667pt;}
.x10c_c01270{left:681.213333pt;}
.x9b_c01270{left:682.746667pt;}
.x6e_c01270{left:684.293333pt;}
.xa6_c01270{left:685.826667pt;}
.xf3_c01270{left:687.360000pt;}
.x45_c01270{left:688.893333pt;}
.x58_c01270{left:691.200000pt;}
.xc5_c01270{left:694.266667pt;}
.x14_c01270{left:696.573333pt;}
.x2a_c01270{left:698.880000pt;}
.x59_c01270{left:700.413333pt;}
.x75_c01270{left:702.720000pt;}
.xda_c01270{left:704.253333pt;}
.xad_c01270{left:705.786667pt;}
.x10e_c01270{left:707.333333pt;}
.x105_c01270{left:709.626667pt;}
.x21_c01270{left:711.173333pt;}
.xbf_c01270{left:713.466667pt;}
.x82_c01270{left:715.773333pt;}
.x64_c01270{left:718.080000pt;}
.x33_c01270{left:720.386667pt;}
.xe3_c01270{left:724.226667pt;}
.x5a_c01270{left:727.293333pt;}
.x15_c01270{left:730.373333pt;}
.xdd_c01270{left:731.906667pt;}
.xe7_c01270{left:733.440000pt;}
.x88_c01270{left:734.973333pt;}
.x16_c01270{left:737.280000pt;}
.xe0_c01270{left:738.813333pt;}
.xdb_c01270{left:740.346667pt;}
.x2b_c01270{left:741.893333pt;}
.xe4_c01270{left:743.426667pt;}
.xc6_c01270{left:747.266667pt;}
.xc0_c01270{left:748.800000pt;}
.x5b_c01270{left:750.333333pt;}
.x9c_c01270{left:752.640000pt;}
.xf7_c01270{left:754.173333pt;}
.xc1_c01270{left:755.706667pt;}
.x9d_c01270{left:763.386667pt;}
.xf4_c01270{left:766.466667pt;}
.x9e_c01270{left:768.000000pt;}
.x102_c01270{left:769.533333pt;}
.x109_c01270{left:773.373333pt;}
.xfe_c01270{left:782.586667pt;}
.xdc_c01270{left:786.426667pt;}
.x114_c01270{left:794.880000pt;}
.x116_c01270{left:798.720000pt;}
.x117_c01270{left:911.613333pt;}
.x115_c01270{left:922.373333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2401a8055b6ad7add8286564.woff2')format("woff");}.ff1_c01271{font-family:ff1_c01271;line-height:1.109863;font-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_c01271{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m146_c01271{transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);}
.m118_c01271{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);}
.mc6_c01271{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m14b_c01271{transform:matrix(0.083725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083725,0.000000,0.000000,0.250000,0,0);}
.m144_c01271{transform:matrix(0.087225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087225,0.000000,0.000000,0.250000,0,0);}
.m19c_c01271{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01271{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m12c_c01271{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);}
.m154_c01271{transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);}
.m93_c01271{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);}
.m90_c01271{transform:matrix(0.102550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102550,0.000000,0.000000,0.250000,0,0);}
.m68_c01271{transform:matrix(0.102925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102925,0.000000,0.000000,0.250000,0,0);}
.m123_c01271{transform:matrix(0.104125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104125,0.000000,0.000000,0.250000,0,0);}
.m153_c01271{transform:matrix(0.104750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104750,0.000000,0.000000,0.250000,0,0);}
.m132_c01271{transform:matrix(0.104950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104950,0.000000,0.000000,0.250000,0,0);}
.m24_c01271{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01271{transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111750,0.000000,0.000000,0.250000,0,0);}
.m140_c01271{transform:matrix(0.113300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113300,0.000000,0.000000,0.250000,0,0);}
.m185_c01271{transform:matrix(0.114175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114175,0.000000,0.000000,0.250000,0,0);}
.m196_c01271{transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);}
.m119_c01271{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);}
.m1e8_c01271{transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);}
.m4e_c01271{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.m18b_c01271{transform:matrix(0.118875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118875,0.000000,0.000000,0.250000,0,0);}
.m102_c01271{transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);}
.m8f_c01271{transform:matrix(0.123050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123050,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01271{transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);}
.m96_c01271{transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);}
.mc9_c01271{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m72_c01271{transform:matrix(0.125525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125525,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01271{transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);}
.m129_c01271{transform:matrix(0.126975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126975,0.000000,0.000000,0.250000,0,0);}
.m165_c01271{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);}
.m7b_c01271{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.m18e_c01271{transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);}
.mbe_c01271{transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);}
.m10_c01271{transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131200,0.000000,0.000000,0.250000,0,0);}
.m18c_c01271{transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01271{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);}
.m6e_c01271{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);}
.m1f2_c01271{transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);}
.mb5_c01271{transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);}
.mfa_c01271{transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);}
.m139_c01271{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01271{transform:matrix(0.136700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136700,0.000000,0.000000,0.250000,0,0);}
.m189_c01271{transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01271{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m15f_c01271{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);}
.m193_c01271{transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01271{transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);}
.m9d_c01271{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m97_c01271{transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);}
.ma8_c01271{transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);}
.m145_c01271{transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);}
.mcd_c01271{transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);}
.m1e6_c01271{transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01271{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);}
.m98_c01271{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);}
.m78_c01271{transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);}
.m10f_c01271{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);}
.m178_c01271{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m131_c01271{transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);}
.m23_c01271{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me6_c01271{transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);}
.m82_c01271{transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);}
.m177_c01271{transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);}
.ma_c01271{transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);}
.mcf_c01271{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);}
.me9_c01271{transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145925,0.000000,0.000000,0.250000,0,0);}
.m10d_c01271{transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);}
.m141_c01271{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01271{transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);}
.m160_c01271{transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);}
.m31_c01271{transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);}
.m71_c01271{transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);}
.m8e_c01271{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01271{transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01271{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);}
.m13d_c01271{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m70_c01271{transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);}
.m4f_c01271{transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);}
.m15c_c01271{transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);}
.m65_c01271{transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01271{transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);}
.m1df_c01271{transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);}
.m12b_c01271{transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);}
.mec_c01271{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);}
.m12f_c01271{transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);}
.m7_c01271{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.m50_c01271{transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);}
.m18f_c01271{transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);}
.me5_c01271{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.m19e_c01271{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.me4_c01271{transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01271{transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);}
.mbb_c01271{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.ma6_c01271{transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);}
.m135_c01271{transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01271{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m101_c01271{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);}
.mac_c01271{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);}
.mc0_c01271{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);}
.m106_c01271{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m8a_c01271{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.m5b_c01271{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.m117_c01271{transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);}
.m81_c01271{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);}
.md0_c01271{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);}
.m92_c01271{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01271{transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);}
.m2d_c01271{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);}
.m9c_c01271{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);}
.m13f_c01271{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);}
.m134_c01271{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);}
.m1a5_c01271{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);}
.m1c4_c01271{transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);}
.m11d_c01271{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01271{transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01271{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.m41_c01271{transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);}
.m199_c01271{transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);}
.m8d_c01271{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01271{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m198_c01271{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m4a_c01271{transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);}
.m9a_c01271{transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01271{transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);}
.m52_c01271{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01271{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.mb_c01271{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01271{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m100_c01271{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);}
.mcb_c01271{transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);}
.m195_c01271{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01271{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01271{transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);}
.me8_c01271{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.m8c_c01271{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01271{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m17a_c01271{transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);}
.m11a_c01271{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.meb_c01271{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.mb6_c01271{transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);}
.mae_c01271{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.m7a_c01271{transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);}
.m13c_c01271{transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);}
.m19f_c01271{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01271{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);}
.ma7_c01271{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);}
.mfd_c01271{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01271{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);}
.m155_c01271{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.mc8_c01271{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);}
.m1d6_c01271{transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);}
.med_c01271{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);}
.m128_c01271{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01271{transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);}
.mc5_c01271{transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01271{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.m186_c01271{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m187_c01271{transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);}
.mea_c01271{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);}
.m108_c01271{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m18a_c01271{transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01271{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);}
.m1c1_c01271{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m95_c01271{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m40_c01271{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m76_c01271{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.m1f1_c01271{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m188_c01271{transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);}
.m159_c01271{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m99_c01271{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);}
.m6d_c01271{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.m137_c01271{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);}
.m66_c01271{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m53_c01271{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.m170_c01271{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);}
.m19a_c01271{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.mbf_c01271{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m35_c01271{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);}
.mb0_c01271{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);}
.m107_c01271{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.mff_c01271{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01271{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);}
.m27_c01271{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m26_c01271{transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01271{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);}
.m7c_c01271{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m142_c01271{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);}
.m1d1_c01271{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.mf6_c01271{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m14e_c01271{transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);}
.m17c_c01271{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);}
.m67_c01271{transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);}
.ma1_c01271{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01271{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m148_c01271{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m183_c01271{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m17e_c01271{transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);}
.mb2_c01271{transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);}
.m10b_c01271{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);}
.m1de_c01271{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m109_c01271{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m11f_c01271{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m11e_c01271{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);}
.mc3_c01271{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m130_c01271{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);}
.m1e1_c01271{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.m85_c01271{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.md5_c01271{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);}
.m86_c01271{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m1f_c01271{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);}
.m14c_c01271{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);}
.mca_c01271{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);}
.m197_c01271{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);}
.mdb_c01271{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01271{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01271{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);}
.m1c3_c01271{transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);}
.m12d_c01271{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);}
.m1da_c01271{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01271{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.m104_c01271{transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);}
.m181_c01271{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);}
.m2b_c01271{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m15e_c01271{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.me0_c01271{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.me_c01271{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01271{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.m105_c01271{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m138_c01271{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m17d_c01271{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01271{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);}
.mc_c01271{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01271{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m6a_c01271{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.maf_c01271{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);}
.mcc_c01271{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.mef_c01271{transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01271{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);}
.m13_c01271{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);}
.m116_c01271{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);}
.m17f_c01271{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01271{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);}
.m1eb_c01271{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m136_c01271{transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);}
.me7_c01271{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m114_c01271{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);}
.ma9_c01271{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.md7_c01271{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.m55_c01271{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);}
.ma5_c01271{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);}
.mbc_c01271{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);}
.m158_c01271{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);}
.m157_c01271{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);}
.m6c_c01271{transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);}
.m16a_c01271{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m190_c01271{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);}
.m51_c01271{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.mf1_c01271{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m1db_c01271{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01271{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m33_c01271{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m1f0_c01271{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m3f_c01271{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m1ed_c01271{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.m15b_c01271{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);}
.m84_c01271{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m75_c01271{transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);}
.mf5_c01271{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);}
.m111_c01271{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);}
.mbd_c01271{transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);}
.m182_c01271{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);}
.m89_c01271{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m191_c01271{transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);}
.m112_c01271{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.m17b_c01271{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m22_c01271{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);}
.m1d2_c01271{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);}
.m8b_c01271{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01271{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);}
.m6b_c01271{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.mba_c01271{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);}
.m1ee_c01271{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.mf2_c01271{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01271{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);}
.m1ef_c01271{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m192_c01271{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);}
.m121_c01271{transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);}
.m11b_c01271{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.m16d_c01271{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);}
.m1e7_c01271{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);}
.m16b_c01271{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.mc4_c01271{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m149_c01271{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01271{transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01271{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);}
.m37_c01271{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01271{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);}
.md6_c01271{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.m14d_c01271{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.mb4_c01271{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);}
.maa_c01271{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m19b_c01271{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m56_c01271{transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);}
.m9f_c01271{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.m10c_c01271{transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);}
.mab_c01271{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);}
.m11c_c01271{transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);}
.m14_c01271{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m10e_c01271{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);}
.m1e_c01271{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m180_c01271{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);}
.mc7_c01271{transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);}
.mf4_c01271{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);}
.m63_c01271{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);}
.m13e_c01271{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);}
.m1cb_c01271{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_c01271{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);}
.m2f_c01271{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);}
.mda_c01271{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m18_c01271{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01271{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.md2_c01271{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);}
.m28_c01271{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);}
.m124_c01271{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);}
.m57_c01271{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m110_c01271{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.m80_c01271{transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);}
.m122_c01271{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);}
.mfe_c01271{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);}
.m194_c01271{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);}
.m125_c01271{transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);}
.mee_c01271{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);}
.m1ea_c01271{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);}
.mf7_c01271{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);}
.m21_c01271{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);}
.m5c_c01271{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);}
.m1b6_c01271{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);}
.m60_c01271{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);}
.mce_c01271{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);}
.m1cc_c01271{transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);}
.m115_c01271{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m133_c01271{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.mc2_c01271{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);}
.m79_c01271{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);}
.m12e_c01271{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);}
.m43_c01271{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);}
.ma2_c01271{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m18d_c01271{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);}
.m0_c01271{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);}
.mb3_c01271{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m7e_c01271{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m39_c01271{transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);}
.mb9_c01271{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);}
.m2a_c01271{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);}
.m13b_c01271{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);}
.m147_c01271{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);}
.ma4_c01271{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);}
.m126_c01271{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mb7_c01271{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01271{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);}
.m45_c01271{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);}
.m12a_c01271{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);}
.m3_c01271{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);}
.m49_c01271{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.mdd_c01271{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);}
.m17_c01271{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);}
.m1e4_c01271{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);}
.m5_c01271{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01271{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);}
.m1ce_c01271{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m13a_c01271{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);}
.m16c_c01271{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m7f_c01271{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);}
.m6_c01271{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);}
.m83_c01271{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01271{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);}
.m3c_c01271{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);}
.m47_c01271{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);}
.m29_c01271{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);}
.m5d_c01271{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m15_c01271{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01271{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf3_c01271{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);}
.m3b_c01271{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m61_c01271{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);}
.m30_c01271{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);}
.m9b_c01271{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc1_c01271{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);}
.md_c01271{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01271{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m42_c01271{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);}
.mf_c01271{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01271{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);}
.ma0_c01271{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);}
.m44_c01271{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c01271{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01271{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);}
.m87_c01271{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mad_c01271{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m34_c01271{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);}
.m64_c01271{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m58_c01271{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c01271{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01271{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m54_c01271{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m59_c01271{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c01271{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01271{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mfb_c01271{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);}
.m25_c01271{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01271{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m74_c01271{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m172_c01271{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);}
.m38_c01271{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);}
.m19_c01271{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m103_c01271{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01271{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);}
.m9e_c01271{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01271{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m120_c01271{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1af_c01271{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m113_c01271{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);}
.m4d_c01271{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mde_c01271{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m174_c01271{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);}
.md3_c01271{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01271{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb8_c01271{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mf8_c01271{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01271{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m32_c01271{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11_c01271{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01271{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mfc_c01271{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);}
.m176_c01271{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);}
.m10a_c01271{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mf0_c01271{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);}
.m91_c01271{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4_c01271{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01271{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m8_c01271{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m16e_c01271{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m69_c01271{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m15a_c01271{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);}
.m173_c01271{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m36_c01271{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m88_c01271{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mdc_c01271{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.md1_c01271{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m1be_c01271{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m94_c01271{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01271{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);}
.m20_c01271{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);}
.md8_c01271{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1_c01271{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m127_c01271{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m77_c01271{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1f4_c01271{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.md9_c01271{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01271{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mf9_c01271{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01271{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m175_c01271{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);}
.m179_c01271{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01271{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m143_c01271{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m151_c01271{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.md4_c01271{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m167_c01271{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m164_c01271{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m62_c01271{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01271{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m1f3_c01271{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m48_c01271{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01271{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m169_c01271{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m166_c01271{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m9_c01271{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.me1_c01271{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);}
.me3_c01271{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m14f_c01271{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);}
.m168_c01271{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m19d_c01271{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.m171_c01271{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.me2_c01271{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m163_c01271{transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);}
.m46_c01271{transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);}
.m162_c01271{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m156_c01271{transform:matrix(1.132500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.132500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.132500,0.000000,0.000000,0.250000,0,0);}
.m184_c01271{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.mdf_c01271{transform:matrix(1.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.467500,0.000000,0.000000,0.250000,0,0);}
.m14a_c01271{transform:matrix(2.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.185000,0.000000,0.000000,0.250000,0,0);}
.m161_c01271{transform:matrix(2.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.587500,0.000000,0.000000,0.250000,0,0);}
.m16f_c01271{transform:matrix(2.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.982500,0.000000,0.000000,0.250000,0,0);}
.m150_c01271{transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);}
.m152_c01271{transform:matrix(3.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.500000,0.000000,0.000000,0.250000,0,0);}
.m15d_c01271{transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.320000,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:-30.222720px;}
.ws1_c01271{word-spacing:0.000000px;}
._0_c01271{width:4.854480px;}
.fc0_c01271{color:transparent;}
.fs18_c01271{font-size:3.456000px;}
.fs13_c01271{font-size:6.000000px;}
.fs11_c01271{font-size:6.900000px;}
.fs8_c01271{font-size:10.380000px;}
.fs1a_c01271{font-size:13.800000px;}
.fs6_c01271{font-size:17.280000px;}
.fs16_c01271{font-size:20.760000px;}
.fs7_c01271{font-size:24.180000px;}
.fs0_c01271{font-size:27.660000px;}
.fs1_c01271{font-size:31.080000px;}
.fs15_c01271{font-size:34.560000px;}
.fs17_c01271{font-size:38.040000px;}
.fsd_c01271{font-size:41.460000px;}
.fs19_c01271{font-size:44.940000px;}
.fsc_c01271{font-size:48.360000px;}
.fsf_c01271{font-size:51.840000px;}
.fse_c01271{font-size:55.320000px;}
.fs10_c01271{font-size:58.740000px;}
.fsa_c01271{font-size:62.220000px;}
.fs4_c01271{font-size:65.640000px;}
.fs3_c01271{font-size:69.120000px;}
.fs14_c01271{font-size:72.600000px;}
.fs12_c01271{font-size:76.020000px;}
.fsb_c01271{font-size:79.500000px;}
.fs2_c01271{font-size:82.920000px;}
.fs9_c01271{font-size:86.400000px;}
.fs1d_c01271{font-size:89.880000px;}
.fs5_c01271{font-size:93.300000px;}
.fs1c_c01271{font-size:96.780000px;}
.fs1b_c01271{font-size:100.200000px;}
.fs1e_c01271{font-size:103.680000px;}
.y0_c01271{bottom:0.000000px;}
.y1f9_c01271{bottom:213.405000px;}
.y1f8_c01271{bottom:216.000000px;}
.y1f7_c01271{bottom:216.870000px;}
.y1f6_c01271{bottom:226.365000px;}
.y1ef_c01271{bottom:228.960000px;}
.y1f1_c01271{bottom:229.830000px;}
.y1f5_c01271{bottom:230.685000px;}
.y1f3_c01271{bottom:231.555000px;}
.y1f2_c01271{bottom:232.410000px;}
.y1f0_c01271{bottom:235.005000px;}
.y1f4_c01271{bottom:244.515000px;}
.y1ea_c01271{bottom:249.690000px;}
.y1e8_c01271{bottom:250.560000px;}
.y1eb_c01271{bottom:251.430000px;}
.y1ee_c01271{bottom:253.155000px;}
.y1e9_c01271{bottom:254.010000px;}
.y1ed_c01271{bottom:259.200000px;}
.y1ec_c01271{bottom:264.390000px;}
.y1e0_c01271{bottom:269.565000px;}
.y1de_c01271{bottom:270.435000px;}
.y1e2_c01271{bottom:272.160000px;}
.y1e1_c01271{bottom:273.030000px;}
.y1e3_c01271{bottom:273.885000px;}
.y1e7_c01271{bottom:274.755000px;}
.y1df_c01271{bottom:275.610000px;}
.y1e6_c01271{bottom:276.480000px;}
.y1e5_c01271{bottom:277.350000px;}
.y1e4_c01271{bottom:278.205000px;}
.y1d4_c01271{bottom:288.570000px;}
.y1d7_c01271{bottom:289.440000px;}
.y1d6_c01271{bottom:290.310000px;}
.y1da_c01271{bottom:291.165000px;}
.y1dc_c01271{bottom:292.035000px;}
.y1d8_c01271{bottom:292.890000px;}
.y1db_c01271{bottom:293.760000px;}
.y1d5_c01271{bottom:295.485000px;}
.y1dd_c01271{bottom:296.355000px;}
.y1d9_c01271{bottom:297.210000px;}
.y1cf_c01271{bottom:310.170000px;}
.y1cd_c01271{bottom:312.765000px;}
.y1d1_c01271{bottom:313.635000px;}
.y1d0_c01271{bottom:314.490000px;}
.y1cc_c01271{bottom:315.360000px;}
.y1ce_c01271{bottom:317.085000px;}
.y1d3_c01271{bottom:318.810000px;}
.y1d2_c01271{bottom:324.000000px;}
.y1c8_c01271{bottom:330.915000px;}
.y1c5_c01271{bottom:331.770000px;}
.y1c4_c01271{bottom:332.640000px;}
.y1c6_c01271{bottom:333.510000px;}
.y1cb_c01271{bottom:334.365000px;}
.y1c2_c01271{bottom:335.235000px;}
.y1c7_c01271{bottom:336.090000px;}
.y1c3_c01271{bottom:336.960000px;}
.y1c9_c01271{bottom:337.830000px;}
.y1ca_c01271{bottom:338.685000px;}
.y1bc_c01271{bottom:351.645000px;}
.y1be_c01271{bottom:352.515000px;}
.y1bb_c01271{bottom:354.240000px;}
.y1bd_c01271{bottom:355.965000px;}
.y1bf_c01271{bottom:358.560000px;}
.y1c0_c01271{bottom:359.430000px;}
.y1c1_c01271{bottom:360.285000px;}
.y1b6_c01271{bottom:370.650000px;}
.y1b7_c01271{bottom:371.520000px;}
.y1ba_c01271{bottom:374.115000px;}
.y1b9_c01271{bottom:376.710000px;}
.y1b8_c01271{bottom:377.565000px;}
.y1ae_c01271{bottom:390.525000px;}
.y1b2_c01271{bottom:391.395000px;}
.y1b4_c01271{bottom:393.120000px;}
.y1b1_c01271{bottom:393.990000px;}
.y1b3_c01271{bottom:394.845000px;}
.y1b0_c01271{bottom:395.715000px;}
.y1af_c01271{bottom:396.570000px;}
.y1b5_c01271{bottom:400.035000px;}
.y1a6_c01271{bottom:406.950000px;}
.y1a9_c01271{bottom:407.805000px;}
.y1ab_c01271{bottom:408.675000px;}
.y1ad_c01271{bottom:410.400000px;}
.y1a7_c01271{bottom:411.270000px;}
.y1a8_c01271{bottom:412.125000px;}
.y1ac_c01271{bottom:414.720000px;}
.y1a5_c01271{bottom:415.590000px;}
.y1aa_c01271{bottom:416.445000px;}
.y1a1_c01271{bottom:418.170000px;}
.y19e_c01271{bottom:422.490000px;}
.y19c_c01271{bottom:423.360000px;}
.y1a2_c01271{bottom:424.230000px;}
.y19a_c01271{bottom:425.085000px;}
.y1a0_c01271{bottom:425.955000px;}
.y19b_c01271{bottom:426.810000px;}
.y19f_c01271{bottom:427.680000px;}
.y19d_c01271{bottom:428.550000px;}
.y1a4_c01271{bottom:429.405000px;}
.y191_c01271{bottom:430.275000px;}
.y1a3_c01271{bottom:431.130000px;}
.y192_c01271{bottom:432.000000px;}
.y196_c01271{bottom:432.870000px;}
.y194_c01271{bottom:433.725000px;}
.y195_c01271{bottom:434.595000px;}
.y199_c01271{bottom:435.450000px;}
.y198_c01271{bottom:436.320000px;}
.y193_c01271{bottom:437.190000px;}
.y197_c01271{bottom:438.915000px;}
.y189_c01271{bottom:451.875000px;}
.y18d_c01271{bottom:452.730000px;}
.y18b_c01271{bottom:453.600000px;}
.y18e_c01271{bottom:454.470000px;}
.y18f_c01271{bottom:455.325000px;}
.y18c_c01271{bottom:456.195000px;}
.y18a_c01271{bottom:457.920000px;}
.y190_c01271{bottom:461.370000px;}
.y17e_c01271{bottom:470.880000px;}
.y180_c01271{bottom:472.605000px;}
.y17f_c01271{bottom:473.475000px;}
.y185_c01271{bottom:474.330000px;}
.y184_c01271{bottom:476.070000px;}
.y181_c01271{bottom:476.925000px;}
.y183_c01271{bottom:477.795000px;}
.y186_c01271{bottom:479.520000px;}
.y182_c01271{bottom:486.435000px;}
.y188_c01271{bottom:489.885000px;}
.y17b_c01271{bottom:490.755000px;}
.y17c_c01271{bottom:491.610000px;}
.y187_c01271{bottom:492.480000px;}
.y179_c01271{bottom:493.350000px;}
.y17a_c01271{bottom:494.205000px;}
.y17d_c01271{bottom:495.075000px;}
.y178_c01271{bottom:496.800000px;}
.y173_c01271{bottom:512.355000px;}
.y16f_c01271{bottom:513.210000px;}
.y175_c01271{bottom:514.080000px;}
.y172_c01271{bottom:514.950000px;}
.y16d_c01271{bottom:517.530000px;}
.y16e_c01271{bottom:518.400000px;}
.y174_c01271{bottom:519.270000px;}
.y171_c01271{bottom:520.125000px;}
.y170_c01271{bottom:520.995000px;}
.y177_c01271{bottom:525.315000px;}
.y167_c01271{bottom:527.040000px;}
.y176_c01271{bottom:527.910000px;}
.y16b_c01271{bottom:528.765000px;}
.y16a_c01271{bottom:530.490000px;}
.y165_c01271{bottom:531.360000px;}
.y169_c01271{bottom:532.230000px;}
.y168_c01271{bottom:534.810000px;}
.y16c_c01271{bottom:545.190000px;}
.y166_c01271{bottom:546.045000px;}
.y163_c01271{bottom:548.640000px;}
.y161_c01271{bottom:551.235000px;}
.y164_c01271{bottom:552.090000px;}
.y162_c01271{bottom:552.960000px;}
.y156_c01271{bottom:553.830000px;}
.y160_c01271{bottom:554.685000px;}
.y15e_c01271{bottom:555.555000px;}
.y157_c01271{bottom:556.410000px;}
.y15d_c01271{bottom:557.280000px;}
.y15a_c01271{bottom:558.150000px;}
.y15c_c01271{bottom:559.005000px;}
.y15f_c01271{bottom:559.875000px;}
.y158_c01271{bottom:560.730000px;}
.y159_c01271{bottom:561.600000px;}
.y15b_c01271{bottom:562.470000px;}
.y152_c01271{bottom:563.325000px;}
.y151_c01271{bottom:564.195000px;}
.y14f_c01271{bottom:567.645000px;}
.y154_c01271{bottom:568.515000px;}
.y150_c01271{bottom:569.370000px;}
.y153_c01271{bottom:570.240000px;}
.y155_c01271{bottom:571.110000px;}
.y147_c01271{bottom:572.835000px;}
.y144_c01271{bottom:573.690000px;}
.y145_c01271{bottom:574.560000px;}
.y14d_c01271{bottom:575.430000px;}
.y14a_c01271{bottom:577.155000px;}
.y148_c01271{bottom:578.010000px;}
.y14e_c01271{bottom:579.750000px;}
.y146_c01271{bottom:580.605000px;}
.y149_c01271{bottom:582.330000px;}
.y14c_c01271{bottom:590.115000px;}
.y14b_c01271{bottom:591.840000px;}
.y13e_c01271{bottom:594.435000px;}
.y140_c01271{bottom:595.290000px;}
.y141_c01271{bottom:596.160000px;}
.y13f_c01271{bottom:597.030000px;}
.y13b_c01271{bottom:597.885000px;}
.y13c_c01271{bottom:598.755000px;}
.y13d_c01271{bottom:600.480000px;}
.y142_c01271{bottom:603.075000px;}
.y143_c01271{bottom:612.570000px;}
.y136_c01271{bottom:613.440000px;}
.y138_c01271{bottom:615.165000px;}
.y137_c01271{bottom:616.035000px;}
.y13a_c01271{bottom:616.890000px;}
.y139_c01271{bottom:621.210000px;}
.y134_c01271{bottom:628.125000px;}
.y135_c01271{bottom:628.995000px;}
.y12c_c01271{bottom:633.315000px;}
.y12e_c01271{bottom:635.040000px;}
.y12d_c01271{bottom:635.910000px;}
.y130_c01271{bottom:636.765000px;}
.y132_c01271{bottom:639.360000px;}
.y131_c01271{bottom:640.230000px;}
.y133_c01271{bottom:641.085000px;}
.y12f_c01271{bottom:651.450000px;}
.y126_c01271{bottom:653.190000px;}
.y124_c01271{bottom:654.045000px;}
.y128_c01271{bottom:655.770000px;}
.y12b_c01271{bottom:656.640000px;}
.y127_c01271{bottom:657.510000px;}
.y125_c01271{bottom:658.365000px;}
.y12a_c01271{bottom:659.235000px;}
.y129_c01271{bottom:660.960000px;}
.y11d_c01271{bottom:672.195000px;}
.y11c_c01271{bottom:673.050000px;}
.y11f_c01271{bottom:673.920000px;}
.y122_c01271{bottom:675.645000px;}
.y123_c01271{bottom:678.240000px;}
.y11e_c01271{bottom:679.110000px;}
.y121_c01271{bottom:680.835000px;}
.y120_c01271{bottom:681.690000px;}
.y116_c01271{bottom:693.795000px;}
.y114_c01271{bottom:694.650000px;}
.y119_c01271{bottom:695.520000px;}
.y11a_c01271{bottom:696.390000px;}
.y115_c01271{bottom:697.245000px;}
.y118_c01271{bottom:698.115000px;}
.y117_c01271{bottom:699.840000px;}
.y11b_c01271{bottom:700.710000px;}
.y10c_c01271{bottom:711.930000px;}
.y10d_c01271{bottom:712.800000px;}
.y111_c01271{bottom:714.525000px;}
.y10e_c01271{bottom:717.120000px;}
.y113_c01271{bottom:717.990000px;}
.y10f_c01271{bottom:718.845000px;}
.y110_c01271{bottom:720.570000px;}
.y112_c01271{bottom:721.440000px;}
.y103_c01271{bottom:733.530000px;}
.y104_c01271{bottom:734.400000px;}
.y106_c01271{bottom:735.270000px;}
.y107_c01271{bottom:736.125000px;}
.y108_c01271{bottom:736.995000px;}
.y109_c01271{bottom:737.850000px;}
.y105_c01271{bottom:738.720000px;}
.y10b_c01271{bottom:740.445000px;}
.y10a_c01271{bottom:741.315000px;}
.yfe_c01271{bottom:754.275000px;}
.yfc_c01271{bottom:755.130000px;}
.yff_c01271{bottom:756.000000px;}
.yfb_c01271{bottom:757.725000px;}
.yfd_c01271{bottom:758.595000px;}
.y101_c01271{bottom:759.450000px;}
.y100_c01271{bottom:761.190000px;}
.y102_c01271{bottom:764.640000px;}
.yf6_c01271{bottom:774.150000px;}
.yf2_c01271{bottom:775.005000px;}
.yf3_c01271{bottom:775.875000px;}
.yf4_c01271{bottom:776.730000px;}
.yf8_c01271{bottom:777.600000px;}
.yfa_c01271{bottom:779.325000px;}
.yf9_c01271{bottom:780.195000px;}
.yf7_c01271{bottom:781.050000px;}
.yf5_c01271{bottom:781.920000px;}
.yee_c01271{bottom:795.750000px;}
.yed_c01271{bottom:796.605000px;}
.yef_c01271{bottom:797.475000px;}
.yea_c01271{bottom:798.330000px;}
.yeb_c01271{bottom:799.200000px;}
.yec_c01271{bottom:800.070000px;}
.yf0_c01271{bottom:800.925000px;}
.yf1_c01271{bottom:807.840000px;}
.ye6_c01271{bottom:816.480000px;}
.ye4_c01271{bottom:817.350000px;}
.ye8_c01271{bottom:819.930000px;}
.ye7_c01271{bottom:820.800000px;}
.ye9_c01271{bottom:821.670000px;}
.ye5_c01271{bottom:828.570000px;}
.ye3_c01271{bottom:832.035000px;}
.ydb_c01271{bottom:833.760000px;}
.ydc_c01271{bottom:834.630000px;}
.ydd_c01271{bottom:835.485000px;}
.yde_c01271{bottom:836.355000px;}
.ye2_c01271{bottom:837.210000px;}
.yda_c01271{bottom:838.080000px;}
.ydf_c01271{bottom:838.950000px;}
.ye0_c01271{bottom:839.805000px;}
.ye1_c01271{bottom:840.675000px;}
.yd3_c01271{bottom:852.765000px;}
.yd5_c01271{bottom:855.360000px;}
.yd9_c01271{bottom:856.230000px;}
.yd7_c01271{bottom:857.085000px;}
.yd4_c01271{bottom:857.955000px;}
.yd6_c01271{bottom:864.000000px;}
.yd8_c01271{bottom:866.595000px;}
.ycc_c01271{bottom:873.510000px;}
.ycf_c01271{bottom:875.235000px;}
.ycd_c01271{bottom:876.090000px;}
.yd1_c01271{bottom:877.830000px;}
.yce_c01271{bottom:880.410000px;}
.yd0_c01271{bottom:881.280000px;}
.yd2_c01271{bottom:882.150000px;}
.yc1_c01271{bottom:894.240000px;}
.yc5_c01271{bottom:895.110000px;}
.yc6_c01271{bottom:895.965000px;}
.yc4_c01271{bottom:897.690000px;}
.yc8_c01271{bottom:898.560000px;}
.yc2_c01271{bottom:899.430000px;}
.yc3_c01271{bottom:900.285000px;}
.yc7_c01271{bottom:902.010000px;}
.yc9_c01271{bottom:902.880000px;}
.yca_c01271{bottom:905.475000px;}
.ycb_c01271{bottom:911.520000px;}
.ybf_c01271{bottom:914.970000px;}
.ybd_c01271{bottom:916.710000px;}
.yc0_c01271{bottom:917.565000px;}
.ybc_c01271{bottom:918.435000px;}
.ybb_c01271{bottom:919.290000px;}
.ybe_c01271{bottom:920.160000px;}
.yb2_c01271{bottom:933.990000px;}
.yb4_c01271{bottom:934.845000px;}
.yb6_c01271{bottom:935.715000px;}
.yba_c01271{bottom:936.570000px;}
.yb9_c01271{bottom:937.440000px;}
.yb3_c01271{bottom:938.310000px;}
.yb7_c01271{bottom:939.165000px;}
.yb5_c01271{bottom:940.035000px;}
.yb8_c01271{bottom:942.630000px;}
.yaa_c01271{bottom:953.850000px;}
.ya9_c01271{bottom:954.720000px;}
.yac_c01271{bottom:955.590000px;}
.yaf_c01271{bottom:956.445000px;}
.yab_c01271{bottom:959.040000px;}
.yad_c01271{bottom:960.765000px;}
.yae_c01271{bottom:961.635000px;}
.yb0_c01271{bottom:962.490000px;}
.yb1_c01271{bottom:963.360000px;}
.ya4_c01271{bottom:973.725000px;}
.ya3_c01271{bottom:974.595000px;}
.ya2_c01271{bottom:975.450000px;}
.ya5_c01271{bottom:976.320000px;}
.ya8_c01271{bottom:977.190000px;}
.ya1_c01271{bottom:978.045000px;}
.ya7_c01271{bottom:978.915000px;}
.ya6_c01271{bottom:982.365000px;}
.ya0_c01271{bottom:991.005000px;}
.y98_c01271{bottom:992.730000px;}
.y9b_c01271{bottom:994.470000px;}
.y99_c01271{bottom:995.325000px;}
.y9d_c01271{bottom:996.195000px;}
.y9e_c01271{bottom:997.050000px;}
.y97_c01271{bottom:998.790000px;}
.y9a_c01271{bottom:999.645000px;}
.y9c_c01271{bottom:1002.240000px;}
.y9f_c01271{bottom:1004.835000px;}
.y8d_c01271{bottom:1012.605000px;}
.y8f_c01271{bottom:1013.475000px;}
.y90_c01271{bottom:1014.330000px;}
.y96_c01271{bottom:1016.070000px;}
.y95_c01271{bottom:1016.925000px;}
.y8e_c01271{bottom:1017.795000px;}
.y92_c01271{bottom:1018.650000px;}
.y91_c01271{bottom:1020.390000px;}
.y94_c01271{bottom:1021.245000px;}
.y93_c01271{bottom:1022.115000px;}
.y85_c01271{bottom:1033.350000px;}
.y86_c01271{bottom:1034.205000px;}
.y88_c01271{bottom:1035.075000px;}
.y8b_c01271{bottom:1036.800000px;}
.y84_c01271{bottom:1037.670000px;}
.y87_c01271{bottom:1038.525000px;}
.y89_c01271{bottom:1039.395000px;}
.y8a_c01271{bottom:1041.120000px;}
.y8c_c01271{bottom:1042.845000px;}
.y83_c01271{bottom:1048.035000px;}
.y7c_c01271{bottom:1054.950000px;}
.y7d_c01271{bottom:1055.805000px;}
.y7e_c01271{bottom:1056.675000px;}
.y81_c01271{bottom:1057.530000px;}
.y7b_c01271{bottom:1058.400000px;}
.y80_c01271{bottom:1059.270000px;}
.y82_c01271{bottom:1060.995000px;}
.y7f_c01271{bottom:1061.850000px;}
.y74_c01271{bottom:1073.955000px;}
.y76_c01271{bottom:1074.810000px;}
.y79_c01271{bottom:1078.275000px;}
.y77_c01271{bottom:1079.130000px;}
.y75_c01271{bottom:1080.000000px;}
.y78_c01271{bottom:1081.725000px;}
.y7a_c01271{bottom:1082.595000px;}
.y6d_c01271{bottom:1094.685000px;}
.y6f_c01271{bottom:1095.555000px;}
.y6e_c01271{bottom:1096.410000px;}
.y73_c01271{bottom:1098.150000px;}
.y6c_c01271{bottom:1099.005000px;}
.y72_c01271{bottom:1099.875000px;}
.y71_c01271{bottom:1101.600000px;}
.y70_c01271{bottom:1102.470000px;}
.y64_c01271{bottom:1113.690000px;}
.y63_c01271{bottom:1114.560000px;}
.y67_c01271{bottom:1115.430000px;}
.y68_c01271{bottom:1117.155000px;}
.y62_c01271{bottom:1118.010000px;}
.y69_c01271{bottom:1118.880000px;}
.y6a_c01271{bottom:1119.750000px;}
.y65_c01271{bottom:1120.605000px;}
.y6b_c01271{bottom:1123.200000px;}
.y66_c01271{bottom:1124.925000px;}
.y61_c01271{bottom:1127.520000px;}
.y5a_c01271{bottom:1136.160000px;}
.y5c_c01271{bottom:1137.030000px;}
.y5f_c01271{bottom:1138.755000px;}
.y5b_c01271{bottom:1139.610000px;}
.y5e_c01271{bottom:1141.350000px;}
.y5d_c01271{bottom:1143.075000px;}
.y59_c01271{bottom:1148.250000px;}
.y60_c01271{bottom:1150.845000px;}
.y1fa_c01271{bottom:1152.570000px;}
.y53_c01271{bottom:1153.440000px;}
.y1fb_c01271{bottom:1154.310000px;}
.y54_c01271{bottom:1156.035000px;}
.y58_c01271{bottom:1156.890000px;}
.y57_c01271{bottom:1157.760000px;}
.y55_c01271{bottom:1158.630000px;}
.y52_c01271{bottom:1159.485000px;}
.y56_c01271{bottom:1162.950000px;}
.y4a_c01271{bottom:1174.170000px;}
.y49_c01271{bottom:1175.910000px;}
.y50_c01271{bottom:1178.490000px;}
.y4f_c01271{bottom:1180.230000px;}
.y4c_c01271{bottom:1181.085000px;}
.y4b_c01271{bottom:1181.955000px;}
.y4e_c01271{bottom:1182.810000px;}
.y4d_c01271{bottom:1183.680000px;}
.y51_c01271{bottom:1184.550000px;}
.y43_c01271{bottom:1194.045000px;}
.y45_c01271{bottom:1195.770000px;}
.y46_c01271{bottom:1197.510000px;}
.y44_c01271{bottom:1202.685000px;}
.y47_c01271{bottom:1203.555000px;}
.y48_c01271{bottom:1204.410000px;}
.y3a_c01271{bottom:1214.790000px;}
.y3b_c01271{bottom:1218.240000px;}
.y3d_c01271{bottom:1219.110000px;}
.y41_c01271{bottom:1219.965000px;}
.y3e_c01271{bottom:1220.835000px;}
.y3f_c01271{bottom:1221.690000px;}
.y3c_c01271{bottom:1222.560000px;}
.y40_c01271{bottom:1223.430000px;}
.y42_c01271{bottom:1224.285000px;}
.y30_c01271{bottom:1236.390000px;}
.y31_c01271{bottom:1237.245000px;}
.y35_c01271{bottom:1239.840000px;}
.y32_c01271{bottom:1241.565000px;}
.y37_c01271{bottom:1242.435000px;}
.y33_c01271{bottom:1243.290000px;}
.y34_c01271{bottom:1244.160000px;}
.y39_c01271{bottom:1245.030000px;}
.y36_c01271{bottom:1251.075000px;}
.y38_c01271{bottom:1255.395000px;}
.y2b_c01271{bottom:1257.990000px;}
.y2c_c01271{bottom:1258.845000px;}
.y2a_c01271{bottom:1259.715000px;}
.y2f_c01271{bottom:1260.570000px;}
.y2d_c01271{bottom:1264.035000px;}
.y2e_c01271{bottom:1264.890000px;}
.y29_c01271{bottom:1268.355000px;}
.y21_c01271{bottom:1274.400000px;}
.y23_c01271{bottom:1276.125000px;}
.y27_c01271{bottom:1277.850000px;}
.y26_c01271{bottom:1278.720000px;}
.y22_c01271{bottom:1280.445000px;}
.y24_c01271{bottom:1283.040000px;}
.y25_c01271{bottom:1283.910000px;}
.y28_c01271{bottom:1284.765000px;}
.y1b_c01271{bottom:1294.275000px;}
.y1c_c01271{bottom:1296.870000px;}
.y20_c01271{bottom:1297.725000px;}
.y19_c01271{bottom:1298.595000px;}
.y1a_c01271{bottom:1300.320000px;}
.y1d_c01271{bottom:1302.045000px;}
.y18_c01271{bottom:1302.915000px;}
.y1f_c01271{bottom:1304.640000px;}
.y1e_c01271{bottom:1306.365000px;}
.y16_c01271{bottom:1318.470000px;}
.y13_c01271{bottom:1319.325000px;}
.y12_c01271{bottom:1320.195000px;}
.y14_c01271{bottom:1321.920000px;}
.y15_c01271{bottom:1324.515000px;}
.y17_c01271{bottom:1332.285000px;}
.yb_c01271{bottom:1334.880000px;}
.y9_c01271{bottom:1335.750000px;}
.yc_c01271{bottom:1336.605000px;}
.yf_c01271{bottom:1338.330000px;}
.y11_c01271{bottom:1339.200000px;}
.yd_c01271{bottom:1341.795000px;}
.ye_c01271{bottom:1343.520000px;}
.y10_c01271{bottom:1344.390000px;}
.ya_c01271{bottom:1345.245000px;}
.y7_c01271{bottom:1362.525000px;}
.y6_c01271{bottom:1365.990000px;}
.y8_c01271{bottom:1366.845000px;}
.y4_c01271{bottom:1367.715000px;}
.y3_c01271{bottom:1369.440000px;}
.y5_c01271{bottom:1371.165000px;}
.y2_c01271{bottom:1392.765000px;}
.y1_c01271{bottom:1398.810000px;}
.h1a_c01271{height:3.110063px;}
.h15_c01271{height:5.399414px;}
.h13_c01271{height:6.209326px;}
.ha_c01271{height:9.340986px;}
.h1c_c01271{height:12.418652px;}
.h8_c01271{height:15.550313px;}
.h18_c01271{height:18.681973px;}
.h9_c01271{height:21.759639px;}
.h2_c01271{height:24.891299px;}
.h3_c01271{height:27.968965px;}
.h17_c01271{height:31.100625px;}
.h19_c01271{height:34.232285px;}
.hf_c01271{height:37.309951px;}
.h1b_c01271{height:40.441611px;}
.he_c01271{height:43.519277px;}
.h11_c01271{height:46.650937px;}
.h10_c01271{height:49.782598px;}
.h12_c01271{height:52.860264px;}
.hc_c01271{height:55.991924px;}
.h6_c01271{height:59.069590px;}
.h5_c01271{height:62.201250px;}
.h16_c01271{height:65.332910px;}
.h14_c01271{height:68.410576px;}
.hd_c01271{height:71.542236px;}
.h4_c01271{height:74.619902px;}
.hb_c01271{height:77.751563px;}
.h1f_c01271{height:80.883223px;}
.h7_c01271{height:83.960889px;}
.h1e_c01271{height:87.092549px;}
.h1d_c01271{height:90.170215px;}
.h20_c01271{height:93.301875px;}
.h0_c01271{height:1509.405000px;}
.h1_c01271{height:1509.750000px;}
.w0_c01271{width:1079.130000px;}
.w1_c01271{width:1079.250000px;}
.x0_c01271{left:0.000000px;}
.x11f_c01271{left:4.320000px;}
.x11d_c01271{left:25.920000px;}
.x11a_c01271{left:31.965000px;}
.x11b_c01271{left:40.605000px;}
.x11e_c01271{left:57.030000px;}
.x11c_c01271{left:108.000000px;}
.x9_c01271{left:209.955000px;}
.x24_c01271{left:212.550000px;}
.x38_c01271{left:222.915000px;}
.x25_c01271{left:226.365000px;}
.xa_c01271{left:228.960000px;}
.x17_c01271{left:235.005000px;}
.x6c_c01271{left:237.600000px;}
.x4a_c01271{left:239.325000px;}
.xb_c01271{left:241.050000px;}
.x59_c01271{left:242.790000px;}
.x89_c01271{left:244.515000px;}
.xac_c01271{left:246.240000px;}
.xd1_c01271{left:247.965000px;}
.xc1_c01271{left:249.690000px;}
.x108_c01271{left:251.430000px;}
.xf7_c01271{left:253.155000px;}
.xfe_c01271{left:254.880000px;}
.x18_c01271{left:257.475000px;}
.x40_c01271{left:262.650000px;}
.x62_c01271{left:266.115000px;}
.xad_c01271{left:267.840000px;}
.x26_c01271{left:269.565000px;}
.x90_c01271{left:272.160000px;}
.x5a_c01271{left:274.755000px;}
.x6d_c01271{left:276.480000px;}
.x104_c01271{left:279.075000px;}
.x39_c01271{left:280.800000px;}
.x74_c01271{left:284.250000px;}
.xc_c01271{left:286.845000px;}
.xa4_c01271{left:289.440000px;}
.x82_c01271{left:294.630000px;}
.x2f_c01271{left:297.210000px;}
.xb2_c01271{left:299.805000px;}
.xbe_c01271{left:304.995000px;}
.x9e_c01271{left:306.720000px;}
.x105_c01271{left:308.445000px;}
.xd5_c01271{left:311.910000px;}
.x91_c01271{left:315.360000px;}
.xd2_c01271{left:317.955000px;}
.x4b_c01271{left:319.680000px;}
.x96_c01271{left:324.000000px;}
.x8a_c01271{left:326.595000px;}
.x67_c01271{left:329.190000px;}
.x41_c01271{left:331.770000px;}
.x9f_c01271{left:335.235000px;}
.xec_c01271{left:338.685000px;}
.xf1_c01271{left:340.410000px;}
.xc2_c01271{left:342.150000px;}
.x19_c01271{left:344.730000px;}
.x30_c01271{left:348.195000px;}
.x7d_c01271{left:349.920000px;}
.x3a_c01271{left:352.515000px;}
.xff_c01271{left:355.110000px;}
.xed_c01271{left:356.835000px;}
.x75_c01271{left:359.430000px;}
.x3_c01271{left:362.880000px;}
.x27_c01271{left:365.475000px;}
.xd_c01271{left:367.200000px;}
.x8b_c01271{left:369.795000px;}
.x111_c01271{left:371.520000px;}
.x5b_c01271{left:373.245000px;}
.x6e_c01271{left:375.840000px;}
.xae_c01271{left:377.565000px;}
.xfa_c01271{left:379.290360px;}
.x115_c01271{left:381.030000px;}
.xab_c01271{left:384.480000px;}
.x4c_c01271{left:386.205000px;}
.xcd_c01271{left:390.525000px;}
.x8c_c01271{left:393.990000px;}
.xd6_c01271{left:395.715000px;}
.x76_c01271{left:397.440000px;}
.x100_c01271{left:399.165000px;}
.x92_c01271{left:401.760000px;}
.x97_c01271{left:403.485000px;}
.xb3_c01271{left:406.950000px;}
.xf2_c01271{left:408.675000px;}
.xc3_c01271{left:412.125000px;}
.xa5_c01271{left:414.720000px;}
.xd7_c01271{left:417.315000px;}
.x55_c01271{left:419.040000px;}
.x42_c01271{left:421.635000px;}
.x4_c01271{left:423.360000px;}
.xe_c01271{left:425.955000px;}
.xb4_c01271{left:427.680000px;}
.x10f_c01271{left:429.405000px;}
.xdd_c01271{left:432.000000px;}
.x1a_c01271{left:434.595000px;}
.x10b_c01271{left:438.045000px;}
.x109_c01271{left:439.770000px;}
.xb9_c01271{left:441.510000px;}
.x4d_c01271{left:443.235000px;}
.xd9_c01271{left:444.960000px;}
.x110_c01271{left:448.410000px;}
.x1b_c01271{left:453.600000px;}
.x112_c01271{left:455.325000px;}
.x56_c01271{left:457.920000px;}
.x5_c01271{left:459.645000px;}
.x28_c01271{left:462.240000px;}
.xa6_c01271{left:463.965000px;}
.x5c_c01271{left:465.690000px;}
.xaf_c01271{left:467.430000px;}
.xda_c01271{left:469.155000px;}
.x1c_c01271{left:471.750000px;}
.xd3_c01271{left:473.475000px;}
.x4e_c01271{left:475.200000px;}
.xc4_c01271{left:476.925000px;}
.xf_c01271{left:479.520000px;}
.x8d_c01271{left:482.970000px;}
.x10a_c01271{left:484.710000px;}
.xd8_c01271{left:486.435000px;}
.xe2_c01271{left:489.885000px;}
.x43_c01271{left:491.610000px;}
.x83_c01271{left:494.205000px;}
.xb5_c01271{left:495.930000px;}
.x31_c01271{left:499.395000px;}
.x6f_c01271{left:501.990000px;}
.xee_c01271{left:503.715000px;}
.x7e_c01271{left:505.440000px;}
.xb6_c01271{left:507.165000px;}
.xeb_c01271{left:510.630000px;}
.x1d_c01271{left:513.210000px;}
.xe9_c01271{left:514.950000px;}
.x93_c01271{left:516.675000px;}
.x32_c01271{left:518.400000px;}
.x29_c01271{left:521.850000px;}
.x10c_c01271{left:523.590000px;}
.x98_c01271{left:526.170000px;}
.x116_c01271{left:527.910000px;}
.xe3_c01271{left:529.635000px;}
.x63_c01271{left:532.230000px;}
.xc5_c01271{left:534.810000px;}
.xfb_c01271{left:539.130000px;}
.xf3_c01271{left:540.870000px;}
.x8e_c01271{left:542.595000px;}
.xc9_c01271{left:544.320000px;}
.x77_c01271{left:548.640000px;}
.x10_c01271{left:551.235000px;}
.x70_c01271{left:552.960000px;}
.xef_c01271{left:555.555000px;}
.xd4_c01271{left:557.280000px;}
.xe5_c01271{left:560.730000px;}
.x99_c01271{left:565.920000px;}
.x2a_c01271{left:567.645000px;}
.x11_c01271{left:570.240000px;}
.x68_c01271{left:572.835000px;}
.xbf_c01271{left:574.560000px;}
.xa7_c01271{left:576.285000px;}
.xce_c01271{left:578.010000px;}
.x6_c01271{left:580.605000px;}
.x10d_c01271{left:582.330000px;}
.x117_c01271{left:584.070000px;}
.x4f_c01271{left:590.970000px;}
.x84_c01271{left:593.565000px;}
.xfc_c01271{left:596.160000px;}
.xa8_c01271{left:598.755000px;}
.x2b_c01271{left:601.350000px;}
.x44_c01271{left:603.075000px;}
.xf4_c01271{left:605.670000px;}
.x10e_c01271{left:607.395000px;}
.x7f_c01271{left:609.990000px;}
.x94_c01271{left:611.715000px;}
.x5d_c01271{left:613.440000px;}
.x9a_c01271{left:616.035000px;}
.x50_c01271{left:617.760000px;}
.xa0_c01271{left:619.485000px;}
.xc6_c01271{left:621.210000px;}
.x2c_c01271{left:622.950000px;}
.xdb_c01271{left:627.270000px;}
.xe6_c01271{left:628.995000px;}
.x3b_c01271{left:630.720000px;}
.x1_c01271{left:635.040000px;}
.xf5_c01271{left:637.635000px;}
.xa1_c01271{left:639.360000px;}
.x1e_c01271{left:641.085000px;}
.x12_c01271{left:644.550000px;}
.x33_c01271{left:647.130000px;}
.xb0_c01271{left:648.870000px;}
.x95_c01271{left:651.450000px;}
.x45_c01271{left:653.190000px;}
.x9b_c01271{left:656.640000px;}
.x78_c01271{left:658.365000px;}
.xf6_c01271{left:660.960000px;}
.x2_c01271{left:662.685000px;}
.x80_c01271{left:667.005000px;}
.xba_c01271{left:669.600000px;}
.x64_c01271{left:672.195000px;}
.x106_c01271{left:673.920000px;}
.x69_c01271{left:675.645000px;}
.x3c_c01271{left:678.240000px;}
.x8f_c01271{left:680.835000px;}
.x118_c01271{left:682.560000px;}
.xb7_c01271{left:686.880000px;}
.x85_c01271{left:689.475000px;}
.x46_c01271{left:691.200000px;}
.x1f_c01271{left:694.650000px;}
.x13_c01271{left:698.115000px;}
.x5e_c01271{left:700.710000px;}
.xe8_c01271{left:702.435000px;}
.xa2_c01271{left:704.160000px;}
.xcf_c01271{left:706.755000px;}
.x79_c01271{left:709.350000px;}
.x34_c01271{left:711.930000px;}
.x51_c01271{left:713.670000px;}
.x71_c01271{left:717.120000px;}
.x3d_c01271{left:721.440000px;}
.xa9_c01271{left:724.890000px;}
.x6a_c01271{left:728.355000px;}
.xc0_c01271{left:730.080000px;}
.x9c_c01271{left:733.530000px;}
.x7a_c01271{left:736.125000px;}
.x14_c01271{left:738.720000px;}
.xe4_c01271{left:741.315000px;}
.x72_c01271{left:743.910000px;}
.xbb_c01271{left:748.230000px;}
.x20_c01271{left:749.955000px;}
.x47_c01271{left:751.680000px;}
.x86_c01271{left:753.405000px;}
.x7b_c01271{left:755.130000px;}
.x119_c01271{left:756.870000px;}
.x6b_c01271{left:758.595000px;}
.x114_c01271{left:760.320000px;}
.x65_c01271{left:762.045000px;}
.x52_c01271{left:763.770000px;}
.xde_c01271{left:765.510000px;}
.xca_c01271{left:767.235000px;}
.x21_c01271{left:769.830000px;}
.x2d_c01271{left:773.280000px;}
.xc7_c01271{left:775.005000px;}
.x57_c01271{left:777.600000px;}
.x35_c01271{left:779.325000px;}
.xb8_c01271{left:781.920000px;}
.x15_c01271{left:783.645000px;}
.xa3_c01271{left:786.240000px;}
.x3e_c01271{left:787.965000px;}
.x87_c01271{left:790.560000px;}
.xc8_c01271{left:793.155000px;}
.xdc_c01271{left:796.605000px;}
.x58_c01271{left:798.330000px;}
.x16_c01271{left:800.925000px;}
.x66_c01271{left:803.520000px;}
.xfd_c01271{left:806.115000px;}
.xea_c01271{left:807.840000px;}
.x7_c01271{left:809.565000px;}
.x7c_c01271{left:812.160000px;}
.xbc_c01271{left:813.885000px;}
.x53_c01271{left:815.610000px;}
.x113_c01271{left:818.205000px;}
.x36_c01271{left:819.930000px;}
.x5f_c01271{left:821.670000px;}
.xb1_c01271{left:824.250000px;}
.x2e_c01271{left:826.845000px;}
.x22_c01271{left:829.440000px;}
.xdf_c01271{left:831.165000px;}
.xd0_c01271{left:832.890000px;}
.x73_c01271{left:834.630000px;}
.xcb_c01271{left:838.950000px;}
.x54_c01271{left:840.675000px;}
.x8_c01271{left:843.270000px;}
.x88_c01271{left:844.995000px;}
.x37_c01271{left:846.720000px;}
.xe0_c01271{left:850.170000px;}
.x48_c01271{left:852.765000px;}
.x3f_c01271{left:855.360000px;}
.xe1_c01271{left:857.955000px;}
.xaa_c01271{left:861.405000px;}
.x49_c01271{left:864.000000px;}
.xf8_c01271{left:865.725000px;}
.xcc_c01271{left:869.190000px;}
.x9d_c01271{left:874.365000px;}
.x60_c01271{left:877.830000px;}
.xf0_c01271{left:879.555000px;}
.xbd_c01271{left:883.005000px;}
.x81_c01271{left:885.600000px;}
.x23_c01271{left:887.325000px;}
.x61_c01271{left:889.050000px;}
.xe7_c01271{left:897.690000px;}
.x102_c01271{left:899.430000px;}
.xf9_c01271{left:908.070000px;}
.x103_c01271{left:911.520000px;}
.x107_c01271{left:921.030000px;}
.x101_c01271{left:933.990000px;}
@media print{
.v0_c01271{vertical-align:0.000000pt;}
.ls0_c01271{letter-spacing:0.000000pt;}
.ws0_c01271{word-spacing:-26.864640pt;}
.ws1_c01271{word-spacing:0.000000pt;}
._0_c01271{width:4.315093pt;}
.fs18_c01271{font-size:3.072000pt;}
.fs13_c01271{font-size:5.333333pt;}
.fs11_c01271{font-size:6.133333pt;}
.fs8_c01271{font-size:9.226667pt;}
.fs1a_c01271{font-size:12.266667pt;}
.fs6_c01271{font-size:15.360000pt;}
.fs16_c01271{font-size:18.453333pt;}
.fs7_c01271{font-size:21.493333pt;}
.fs0_c01271{font-size:24.586667pt;}
.fs1_c01271{font-size:27.626667pt;}
.fs15_c01271{font-size:30.720000pt;}
.fs17_c01271{font-size:33.813333pt;}
.fsd_c01271{font-size:36.853333pt;}
.fs19_c01271{font-size:39.946667pt;}
.fsc_c01271{font-size:42.986667pt;}
.fsf_c01271{font-size:46.080000pt;}
.fse_c01271{font-size:49.173333pt;}
.fs10_c01271{font-size:52.213333pt;}
.fsa_c01271{font-size:55.306667pt;}
.fs4_c01271{font-size:58.346667pt;}
.fs3_c01271{font-size:61.440000pt;}
.fs14_c01271{font-size:64.533333pt;}
.fs12_c01271{font-size:67.573333pt;}
.fsb_c01271{font-size:70.666667pt;}
.fs2_c01271{font-size:73.706667pt;}
.fs9_c01271{font-size:76.800000pt;}
.fs1d_c01271{font-size:79.893333pt;}
.fs5_c01271{font-size:82.933333pt;}
.fs1c_c01271{font-size:86.026667pt;}
.fs1b_c01271{font-size:89.066667pt;}
.fs1e_c01271{font-size:92.160000pt;}
.y0_c01271{bottom:0.000000pt;}
.y1f9_c01271{bottom:189.693333pt;}
.y1f8_c01271{bottom:192.000000pt;}
.y1f7_c01271{bottom:192.773333pt;}
.y1f6_c01271{bottom:201.213333pt;}
.y1ef_c01271{bottom:203.520000pt;}
.y1f1_c01271{bottom:204.293333pt;}
.y1f5_c01271{bottom:205.053333pt;}
.y1f3_c01271{bottom:205.826667pt;}
.y1f2_c01271{bottom:206.586667pt;}
.y1f0_c01271{bottom:208.893333pt;}
.y1f4_c01271{bottom:217.346667pt;}
.y1ea_c01271{bottom:221.946667pt;}
.y1e8_c01271{bottom:222.720000pt;}
.y1eb_c01271{bottom:223.493333pt;}
.y1ee_c01271{bottom:225.026667pt;}
.y1e9_c01271{bottom:225.786667pt;}
.y1ed_c01271{bottom:230.400000pt;}
.y1ec_c01271{bottom:235.013333pt;}
.y1e0_c01271{bottom:239.613333pt;}
.y1de_c01271{bottom:240.386667pt;}
.y1e2_c01271{bottom:241.920000pt;}
.y1e1_c01271{bottom:242.693333pt;}
.y1e3_c01271{bottom:243.453333pt;}
.y1e7_c01271{bottom:244.226667pt;}
.y1df_c01271{bottom:244.986667pt;}
.y1e6_c01271{bottom:245.760000pt;}
.y1e5_c01271{bottom:246.533333pt;}
.y1e4_c01271{bottom:247.293333pt;}
.y1d4_c01271{bottom:256.506667pt;}
.y1d7_c01271{bottom:257.280000pt;}
.y1d6_c01271{bottom:258.053333pt;}
.y1da_c01271{bottom:258.813333pt;}
.y1dc_c01271{bottom:259.586667pt;}
.y1d8_c01271{bottom:260.346667pt;}
.y1db_c01271{bottom:261.120000pt;}
.y1d5_c01271{bottom:262.653333pt;}
.y1dd_c01271{bottom:263.426667pt;}
.y1d9_c01271{bottom:264.186667pt;}
.y1cf_c01271{bottom:275.706667pt;}
.y1cd_c01271{bottom:278.013333pt;}
.y1d1_c01271{bottom:278.786667pt;}
.y1d0_c01271{bottom:279.546667pt;}
.y1cc_c01271{bottom:280.320000pt;}
.y1ce_c01271{bottom:281.853333pt;}
.y1d3_c01271{bottom:283.386667pt;}
.y1d2_c01271{bottom:288.000000pt;}
.y1c8_c01271{bottom:294.146667pt;}
.y1c5_c01271{bottom:294.906667pt;}
.y1c4_c01271{bottom:295.680000pt;}
.y1c6_c01271{bottom:296.453333pt;}
.y1cb_c01271{bottom:297.213333pt;}
.y1c2_c01271{bottom:297.986667pt;}
.y1c7_c01271{bottom:298.746667pt;}
.y1c3_c01271{bottom:299.520000pt;}
.y1c9_c01271{bottom:300.293333pt;}
.y1ca_c01271{bottom:301.053333pt;}
.y1bc_c01271{bottom:312.573333pt;}
.y1be_c01271{bottom:313.346667pt;}
.y1bb_c01271{bottom:314.880000pt;}
.y1bd_c01271{bottom:316.413333pt;}
.y1bf_c01271{bottom:318.720000pt;}
.y1c0_c01271{bottom:319.493333pt;}
.y1c1_c01271{bottom:320.253333pt;}
.y1b6_c01271{bottom:329.466667pt;}
.y1b7_c01271{bottom:330.240000pt;}
.y1ba_c01271{bottom:332.546667pt;}
.y1b9_c01271{bottom:334.853333pt;}
.y1b8_c01271{bottom:335.613333pt;}
.y1ae_c01271{bottom:347.133333pt;}
.y1b2_c01271{bottom:347.906667pt;}
.y1b4_c01271{bottom:349.440000pt;}
.y1b1_c01271{bottom:350.213333pt;}
.y1b3_c01271{bottom:350.973333pt;}
.y1b0_c01271{bottom:351.746667pt;}
.y1af_c01271{bottom:352.506667pt;}
.y1b5_c01271{bottom:355.586667pt;}
.y1a6_c01271{bottom:361.733333pt;}
.y1a9_c01271{bottom:362.493333pt;}
.y1ab_c01271{bottom:363.266667pt;}
.y1ad_c01271{bottom:364.800000pt;}
.y1a7_c01271{bottom:365.573333pt;}
.y1a8_c01271{bottom:366.333333pt;}
.y1ac_c01271{bottom:368.640000pt;}
.y1a5_c01271{bottom:369.413333pt;}
.y1aa_c01271{bottom:370.173333pt;}
.y1a1_c01271{bottom:371.706667pt;}
.y19e_c01271{bottom:375.546667pt;}
.y19c_c01271{bottom:376.320000pt;}
.y1a2_c01271{bottom:377.093333pt;}
.y19a_c01271{bottom:377.853333pt;}
.y1a0_c01271{bottom:378.626667pt;}
.y19b_c01271{bottom:379.386667pt;}
.y19f_c01271{bottom:380.160000pt;}
.y19d_c01271{bottom:380.933333pt;}
.y1a4_c01271{bottom:381.693333pt;}
.y191_c01271{bottom:382.466667pt;}
.y1a3_c01271{bottom:383.226667pt;}
.y192_c01271{bottom:384.000000pt;}
.y196_c01271{bottom:384.773333pt;}
.y194_c01271{bottom:385.533333pt;}
.y195_c01271{bottom:386.306667pt;}
.y199_c01271{bottom:387.066667pt;}
.y198_c01271{bottom:387.840000pt;}
.y193_c01271{bottom:388.613333pt;}
.y197_c01271{bottom:390.146667pt;}
.y189_c01271{bottom:401.666667pt;}
.y18d_c01271{bottom:402.426667pt;}
.y18b_c01271{bottom:403.200000pt;}
.y18e_c01271{bottom:403.973333pt;}
.y18f_c01271{bottom:404.733333pt;}
.y18c_c01271{bottom:405.506667pt;}
.y18a_c01271{bottom:407.040000pt;}
.y190_c01271{bottom:410.106667pt;}
.y17e_c01271{bottom:418.560000pt;}
.y180_c01271{bottom:420.093333pt;}
.y17f_c01271{bottom:420.866667pt;}
.y185_c01271{bottom:421.626667pt;}
.y184_c01271{bottom:423.173333pt;}
.y181_c01271{bottom:423.933333pt;}
.y183_c01271{bottom:424.706667pt;}
.y186_c01271{bottom:426.240000pt;}
.y182_c01271{bottom:432.386667pt;}
.y188_c01271{bottom:435.453333pt;}
.y17b_c01271{bottom:436.226667pt;}
.y17c_c01271{bottom:436.986667pt;}
.y187_c01271{bottom:437.760000pt;}
.y179_c01271{bottom:438.533333pt;}
.y17a_c01271{bottom:439.293333pt;}
.y17d_c01271{bottom:440.066667pt;}
.y178_c01271{bottom:441.600000pt;}
.y173_c01271{bottom:455.426667pt;}
.y16f_c01271{bottom:456.186667pt;}
.y175_c01271{bottom:456.960000pt;}
.y172_c01271{bottom:457.733333pt;}
.y16d_c01271{bottom:460.026667pt;}
.y16e_c01271{bottom:460.800000pt;}
.y174_c01271{bottom:461.573333pt;}
.y171_c01271{bottom:462.333333pt;}
.y170_c01271{bottom:463.106667pt;}
.y177_c01271{bottom:466.946667pt;}
.y167_c01271{bottom:468.480000pt;}
.y176_c01271{bottom:469.253333pt;}
.y16b_c01271{bottom:470.013333pt;}
.y16a_c01271{bottom:471.546667pt;}
.y165_c01271{bottom:472.320000pt;}
.y169_c01271{bottom:473.093333pt;}
.y168_c01271{bottom:475.386667pt;}
.y16c_c01271{bottom:484.613333pt;}
.y166_c01271{bottom:485.373333pt;}
.y163_c01271{bottom:487.680000pt;}
.y161_c01271{bottom:489.986667pt;}
.y164_c01271{bottom:490.746667pt;}
.y162_c01271{bottom:491.520000pt;}
.y156_c01271{bottom:492.293333pt;}
.y160_c01271{bottom:493.053333pt;}
.y15e_c01271{bottom:493.826667pt;}
.y157_c01271{bottom:494.586667pt;}
.y15d_c01271{bottom:495.360000pt;}
.y15a_c01271{bottom:496.133333pt;}
.y15c_c01271{bottom:496.893333pt;}
.y15f_c01271{bottom:497.666667pt;}
.y158_c01271{bottom:498.426667pt;}
.y159_c01271{bottom:499.200000pt;}
.y15b_c01271{bottom:499.973333pt;}
.y152_c01271{bottom:500.733333pt;}
.y151_c01271{bottom:501.506667pt;}
.y14f_c01271{bottom:504.573333pt;}
.y154_c01271{bottom:505.346667pt;}
.y150_c01271{bottom:506.106667pt;}
.y153_c01271{bottom:506.880000pt;}
.y155_c01271{bottom:507.653333pt;}
.y147_c01271{bottom:509.186667pt;}
.y144_c01271{bottom:509.946667pt;}
.y145_c01271{bottom:510.720000pt;}
.y14d_c01271{bottom:511.493333pt;}
.y14a_c01271{bottom:513.026667pt;}
.y148_c01271{bottom:513.786667pt;}
.y14e_c01271{bottom:515.333333pt;}
.y146_c01271{bottom:516.093333pt;}
.y149_c01271{bottom:517.626667pt;}
.y14c_c01271{bottom:524.546667pt;}
.y14b_c01271{bottom:526.080000pt;}
.y13e_c01271{bottom:528.386667pt;}
.y140_c01271{bottom:529.146667pt;}
.y141_c01271{bottom:529.920000pt;}
.y13f_c01271{bottom:530.693333pt;}
.y13b_c01271{bottom:531.453333pt;}
.y13c_c01271{bottom:532.226667pt;}
.y13d_c01271{bottom:533.760000pt;}
.y142_c01271{bottom:536.066667pt;}
.y143_c01271{bottom:544.506667pt;}
.y136_c01271{bottom:545.280000pt;}
.y138_c01271{bottom:546.813333pt;}
.y137_c01271{bottom:547.586667pt;}
.y13a_c01271{bottom:548.346667pt;}
.y139_c01271{bottom:552.186667pt;}
.y134_c01271{bottom:558.333333pt;}
.y135_c01271{bottom:559.106667pt;}
.y12c_c01271{bottom:562.946667pt;}
.y12e_c01271{bottom:564.480000pt;}
.y12d_c01271{bottom:565.253333pt;}
.y130_c01271{bottom:566.013333pt;}
.y132_c01271{bottom:568.320000pt;}
.y131_c01271{bottom:569.093333pt;}
.y133_c01271{bottom:569.853333pt;}
.y12f_c01271{bottom:579.066667pt;}
.y126_c01271{bottom:580.613333pt;}
.y124_c01271{bottom:581.373333pt;}
.y128_c01271{bottom:582.906667pt;}
.y12b_c01271{bottom:583.680000pt;}
.y127_c01271{bottom:584.453333pt;}
.y125_c01271{bottom:585.213333pt;}
.y12a_c01271{bottom:585.986667pt;}
.y129_c01271{bottom:587.520000pt;}
.y11d_c01271{bottom:597.506667pt;}
.y11c_c01271{bottom:598.266667pt;}
.y11f_c01271{bottom:599.040000pt;}
.y122_c01271{bottom:600.573333pt;}
.y123_c01271{bottom:602.880000pt;}
.y11e_c01271{bottom:603.653333pt;}
.y121_c01271{bottom:605.186667pt;}
.y120_c01271{bottom:605.946667pt;}
.y116_c01271{bottom:616.706667pt;}
.y114_c01271{bottom:617.466667pt;}
.y119_c01271{bottom:618.240000pt;}
.y11a_c01271{bottom:619.013333pt;}
.y115_c01271{bottom:619.773333pt;}
.y118_c01271{bottom:620.546667pt;}
.y117_c01271{bottom:622.080000pt;}
.y11b_c01271{bottom:622.853333pt;}
.y10c_c01271{bottom:632.826667pt;}
.y10d_c01271{bottom:633.600000pt;}
.y111_c01271{bottom:635.133333pt;}
.y10e_c01271{bottom:637.440000pt;}
.y113_c01271{bottom:638.213333pt;}
.y10f_c01271{bottom:638.973333pt;}
.y110_c01271{bottom:640.506667pt;}
.y112_c01271{bottom:641.280000pt;}
.y103_c01271{bottom:652.026667pt;}
.y104_c01271{bottom:652.800000pt;}
.y106_c01271{bottom:653.573333pt;}
.y107_c01271{bottom:654.333333pt;}
.y108_c01271{bottom:655.106667pt;}
.y109_c01271{bottom:655.866667pt;}
.y105_c01271{bottom:656.640000pt;}
.y10b_c01271{bottom:658.173333pt;}
.y10a_c01271{bottom:658.946667pt;}
.yfe_c01271{bottom:670.466667pt;}
.yfc_c01271{bottom:671.226667pt;}
.yff_c01271{bottom:672.000000pt;}
.yfb_c01271{bottom:673.533333pt;}
.yfd_c01271{bottom:674.306667pt;}
.y101_c01271{bottom:675.066667pt;}
.y100_c01271{bottom:676.613333pt;}
.y102_c01271{bottom:679.680000pt;}
.yf6_c01271{bottom:688.133333pt;}
.yf2_c01271{bottom:688.893333pt;}
.yf3_c01271{bottom:689.666667pt;}
.yf4_c01271{bottom:690.426667pt;}
.yf8_c01271{bottom:691.200000pt;}
.yfa_c01271{bottom:692.733333pt;}
.yf9_c01271{bottom:693.506667pt;}
.yf7_c01271{bottom:694.266667pt;}
.yf5_c01271{bottom:695.040000pt;}
.yee_c01271{bottom:707.333333pt;}
.yed_c01271{bottom:708.093333pt;}
.yef_c01271{bottom:708.866667pt;}
.yea_c01271{bottom:709.626667pt;}
.yeb_c01271{bottom:710.400000pt;}
.yec_c01271{bottom:711.173333pt;}
.yf0_c01271{bottom:711.933333pt;}
.yf1_c01271{bottom:718.080000pt;}
.ye6_c01271{bottom:725.760000pt;}
.ye4_c01271{bottom:726.533333pt;}
.ye8_c01271{bottom:728.826667pt;}
.ye7_c01271{bottom:729.600000pt;}
.ye9_c01271{bottom:730.373333pt;}
.ye5_c01271{bottom:736.506667pt;}
.ye3_c01271{bottom:739.586667pt;}
.ydb_c01271{bottom:741.120000pt;}
.ydc_c01271{bottom:741.893333pt;}
.ydd_c01271{bottom:742.653333pt;}
.yde_c01271{bottom:743.426667pt;}
.ye2_c01271{bottom:744.186667pt;}
.yda_c01271{bottom:744.960000pt;}
.ydf_c01271{bottom:745.733333pt;}
.ye0_c01271{bottom:746.493333pt;}
.ye1_c01271{bottom:747.266667pt;}
.yd3_c01271{bottom:758.013333pt;}
.yd5_c01271{bottom:760.320000pt;}
.yd9_c01271{bottom:761.093333pt;}
.yd7_c01271{bottom:761.853333pt;}
.yd4_c01271{bottom:762.626667pt;}
.yd6_c01271{bottom:768.000000pt;}
.yd8_c01271{bottom:770.306667pt;}
.ycc_c01271{bottom:776.453333pt;}
.ycf_c01271{bottom:777.986667pt;}
.ycd_c01271{bottom:778.746667pt;}
.yd1_c01271{bottom:780.293333pt;}
.yce_c01271{bottom:782.586667pt;}
.yd0_c01271{bottom:783.360000pt;}
.yd2_c01271{bottom:784.133333pt;}
.yc1_c01271{bottom:794.880000pt;}
.yc5_c01271{bottom:795.653333pt;}
.yc6_c01271{bottom:796.413333pt;}
.yc4_c01271{bottom:797.946667pt;}
.yc8_c01271{bottom:798.720000pt;}
.yc2_c01271{bottom:799.493333pt;}
.yc3_c01271{bottom:800.253333pt;}
.yc7_c01271{bottom:801.786667pt;}
.yc9_c01271{bottom:802.560000pt;}
.yca_c01271{bottom:804.866667pt;}
.ycb_c01271{bottom:810.240000pt;}
.ybf_c01271{bottom:813.306667pt;}
.ybd_c01271{bottom:814.853333pt;}
.yc0_c01271{bottom:815.613333pt;}
.ybc_c01271{bottom:816.386667pt;}
.ybb_c01271{bottom:817.146667pt;}
.ybe_c01271{bottom:817.920000pt;}
.yb2_c01271{bottom:830.213333pt;}
.yb4_c01271{bottom:830.973333pt;}
.yb6_c01271{bottom:831.746667pt;}
.yba_c01271{bottom:832.506667pt;}
.yb9_c01271{bottom:833.280000pt;}
.yb3_c01271{bottom:834.053333pt;}
.yb7_c01271{bottom:834.813333pt;}
.yb5_c01271{bottom:835.586667pt;}
.yb8_c01271{bottom:837.893333pt;}
.yaa_c01271{bottom:847.866667pt;}
.ya9_c01271{bottom:848.640000pt;}
.yac_c01271{bottom:849.413333pt;}
.yaf_c01271{bottom:850.173333pt;}
.yab_c01271{bottom:852.480000pt;}
.yad_c01271{bottom:854.013333pt;}
.yae_c01271{bottom:854.786667pt;}
.yb0_c01271{bottom:855.546667pt;}
.yb1_c01271{bottom:856.320000pt;}
.ya4_c01271{bottom:865.533333pt;}
.ya3_c01271{bottom:866.306667pt;}
.ya2_c01271{bottom:867.066667pt;}
.ya5_c01271{bottom:867.840000pt;}
.ya8_c01271{bottom:868.613333pt;}
.ya1_c01271{bottom:869.373333pt;}
.ya7_c01271{bottom:870.146667pt;}
.ya6_c01271{bottom:873.213333pt;}
.ya0_c01271{bottom:880.893333pt;}
.y98_c01271{bottom:882.426667pt;}
.y9b_c01271{bottom:883.973333pt;}
.y99_c01271{bottom:884.733333pt;}
.y9d_c01271{bottom:885.506667pt;}
.y9e_c01271{bottom:886.266667pt;}
.y97_c01271{bottom:887.813333pt;}
.y9a_c01271{bottom:888.573333pt;}
.y9c_c01271{bottom:890.880000pt;}
.y9f_c01271{bottom:893.186667pt;}
.y8d_c01271{bottom:900.093333pt;}
.y8f_c01271{bottom:900.866667pt;}
.y90_c01271{bottom:901.626667pt;}
.y96_c01271{bottom:903.173333pt;}
.y95_c01271{bottom:903.933333pt;}
.y8e_c01271{bottom:904.706667pt;}
.y92_c01271{bottom:905.466667pt;}
.y91_c01271{bottom:907.013333pt;}
.y94_c01271{bottom:907.773333pt;}
.y93_c01271{bottom:908.546667pt;}
.y85_c01271{bottom:918.533333pt;}
.y86_c01271{bottom:919.293333pt;}
.y88_c01271{bottom:920.066667pt;}
.y8b_c01271{bottom:921.600000pt;}
.y84_c01271{bottom:922.373333pt;}
.y87_c01271{bottom:923.133333pt;}
.y89_c01271{bottom:923.906667pt;}
.y8a_c01271{bottom:925.440000pt;}
.y8c_c01271{bottom:926.973333pt;}
.y83_c01271{bottom:931.586667pt;}
.y7c_c01271{bottom:937.733333pt;}
.y7d_c01271{bottom:938.493333pt;}
.y7e_c01271{bottom:939.266667pt;}
.y81_c01271{bottom:940.026667pt;}
.y7b_c01271{bottom:940.800000pt;}
.y80_c01271{bottom:941.573333pt;}
.y82_c01271{bottom:943.106667pt;}
.y7f_c01271{bottom:943.866667pt;}
.y74_c01271{bottom:954.626667pt;}
.y76_c01271{bottom:955.386667pt;}
.y79_c01271{bottom:958.466667pt;}
.y77_c01271{bottom:959.226667pt;}
.y75_c01271{bottom:960.000000pt;}
.y78_c01271{bottom:961.533333pt;}
.y7a_c01271{bottom:962.306667pt;}
.y6d_c01271{bottom:973.053333pt;}
.y6f_c01271{bottom:973.826667pt;}
.y6e_c01271{bottom:974.586667pt;}
.y73_c01271{bottom:976.133333pt;}
.y6c_c01271{bottom:976.893333pt;}
.y72_c01271{bottom:977.666667pt;}
.y71_c01271{bottom:979.200000pt;}
.y70_c01271{bottom:979.973333pt;}
.y64_c01271{bottom:989.946667pt;}
.y63_c01271{bottom:990.720000pt;}
.y67_c01271{bottom:991.493333pt;}
.y68_c01271{bottom:993.026667pt;}
.y62_c01271{bottom:993.786667pt;}
.y69_c01271{bottom:994.560000pt;}
.y6a_c01271{bottom:995.333333pt;}
.y65_c01271{bottom:996.093333pt;}
.y6b_c01271{bottom:998.400000pt;}
.y66_c01271{bottom:999.933333pt;}
.y61_c01271{bottom:1002.240000pt;}
.y5a_c01271{bottom:1009.920000pt;}
.y5c_c01271{bottom:1010.693333pt;}
.y5f_c01271{bottom:1012.226667pt;}
.y5b_c01271{bottom:1012.986667pt;}
.y5e_c01271{bottom:1014.533333pt;}
.y5d_c01271{bottom:1016.066667pt;}
.y59_c01271{bottom:1020.666667pt;}
.y60_c01271{bottom:1022.973333pt;}
.y1fa_c01271{bottom:1024.506667pt;}
.y53_c01271{bottom:1025.280000pt;}
.y1fb_c01271{bottom:1026.053333pt;}
.y54_c01271{bottom:1027.586667pt;}
.y58_c01271{bottom:1028.346667pt;}
.y57_c01271{bottom:1029.120000pt;}
.y55_c01271{bottom:1029.893333pt;}
.y52_c01271{bottom:1030.653333pt;}
.y56_c01271{bottom:1033.733333pt;}
.y4a_c01271{bottom:1043.706667pt;}
.y49_c01271{bottom:1045.253333pt;}
.y50_c01271{bottom:1047.546667pt;}
.y4f_c01271{bottom:1049.093333pt;}
.y4c_c01271{bottom:1049.853333pt;}
.y4b_c01271{bottom:1050.626667pt;}
.y4e_c01271{bottom:1051.386667pt;}
.y4d_c01271{bottom:1052.160000pt;}
.y51_c01271{bottom:1052.933333pt;}
.y43_c01271{bottom:1061.373333pt;}
.y45_c01271{bottom:1062.906667pt;}
.y46_c01271{bottom:1064.453333pt;}
.y44_c01271{bottom:1069.053333pt;}
.y47_c01271{bottom:1069.826667pt;}
.y48_c01271{bottom:1070.586667pt;}
.y3a_c01271{bottom:1079.813333pt;}
.y3b_c01271{bottom:1082.880000pt;}
.y3d_c01271{bottom:1083.653333pt;}
.y41_c01271{bottom:1084.413333pt;}
.y3e_c01271{bottom:1085.186667pt;}
.y3f_c01271{bottom:1085.946667pt;}
.y3c_c01271{bottom:1086.720000pt;}
.y40_c01271{bottom:1087.493333pt;}
.y42_c01271{bottom:1088.253333pt;}
.y30_c01271{bottom:1099.013333pt;}
.y31_c01271{bottom:1099.773333pt;}
.y35_c01271{bottom:1102.080000pt;}
.y32_c01271{bottom:1103.613333pt;}
.y37_c01271{bottom:1104.386667pt;}
.y33_c01271{bottom:1105.146667pt;}
.y34_c01271{bottom:1105.920000pt;}
.y39_c01271{bottom:1106.693333pt;}
.y36_c01271{bottom:1112.066667pt;}
.y38_c01271{bottom:1115.906667pt;}
.y2b_c01271{bottom:1118.213333pt;}
.y2c_c01271{bottom:1118.973333pt;}
.y2a_c01271{bottom:1119.746667pt;}
.y2f_c01271{bottom:1120.506667pt;}
.y2d_c01271{bottom:1123.586667pt;}
.y2e_c01271{bottom:1124.346667pt;}
.y29_c01271{bottom:1127.426667pt;}
.y21_c01271{bottom:1132.800000pt;}
.y23_c01271{bottom:1134.333333pt;}
.y27_c01271{bottom:1135.866667pt;}
.y26_c01271{bottom:1136.640000pt;}
.y22_c01271{bottom:1138.173333pt;}
.y24_c01271{bottom:1140.480000pt;}
.y25_c01271{bottom:1141.253333pt;}
.y28_c01271{bottom:1142.013333pt;}
.y1b_c01271{bottom:1150.466667pt;}
.y1c_c01271{bottom:1152.773333pt;}
.y20_c01271{bottom:1153.533333pt;}
.y19_c01271{bottom:1154.306667pt;}
.y1a_c01271{bottom:1155.840000pt;}
.y1d_c01271{bottom:1157.373333pt;}
.y18_c01271{bottom:1158.146667pt;}
.y1f_c01271{bottom:1159.680000pt;}
.y1e_c01271{bottom:1161.213333pt;}
.y16_c01271{bottom:1171.973333pt;}
.y13_c01271{bottom:1172.733333pt;}
.y12_c01271{bottom:1173.506667pt;}
.y14_c01271{bottom:1175.040000pt;}
.y15_c01271{bottom:1177.346667pt;}
.y17_c01271{bottom:1184.253333pt;}
.yb_c01271{bottom:1186.560000pt;}
.y9_c01271{bottom:1187.333333pt;}
.yc_c01271{bottom:1188.093333pt;}
.yf_c01271{bottom:1189.626667pt;}
.y11_c01271{bottom:1190.400000pt;}
.yd_c01271{bottom:1192.706667pt;}
.ye_c01271{bottom:1194.240000pt;}
.y10_c01271{bottom:1195.013333pt;}
.ya_c01271{bottom:1195.773333pt;}
.y7_c01271{bottom:1211.133333pt;}
.y6_c01271{bottom:1214.213333pt;}
.y8_c01271{bottom:1214.973333pt;}
.y4_c01271{bottom:1215.746667pt;}
.y3_c01271{bottom:1217.280000pt;}
.y5_c01271{bottom:1218.813333pt;}
.y2_c01271{bottom:1238.013333pt;}
.y1_c01271{bottom:1243.386667pt;}
.h1a_c01271{height:2.764500pt;}
.h15_c01271{height:4.799479pt;}
.h13_c01271{height:5.519401pt;}
.ha_c01271{height:8.303099pt;}
.h1c_c01271{height:11.038802pt;}
.h8_c01271{height:13.822500pt;}
.h18_c01271{height:16.606198pt;}
.h9_c01271{height:19.341901pt;}
.h2_c01271{height:22.125599pt;}
.h3_c01271{height:24.861302pt;}
.h17_c01271{height:27.645000pt;}
.h19_c01271{height:30.428698pt;}
.hf_c01271{height:33.164401pt;}
.h1b_c01271{height:35.948099pt;}
.he_c01271{height:38.683802pt;}
.h11_c01271{height:41.467500pt;}
.h10_c01271{height:44.251198pt;}
.h12_c01271{height:46.986901pt;}
.hc_c01271{height:49.770599pt;}
.h6_c01271{height:52.506302pt;}
.h5_c01271{height:55.290000pt;}
.h16_c01271{height:58.073698pt;}
.h14_c01271{height:60.809401pt;}
.hd_c01271{height:63.593099pt;}
.h4_c01271{height:66.328802pt;}
.hb_c01271{height:69.112500pt;}
.h1f_c01271{height:71.896198pt;}
.h7_c01271{height:74.631901pt;}
.h1e_c01271{height:77.415599pt;}
.h1d_c01271{height:80.151302pt;}
.h20_c01271{height:82.935000pt;}
.h0_c01271{height:1341.693333pt;}
.h1_c01271{height:1342.000000pt;}
.w0_c01271{width:959.226667pt;}
.w1_c01271{width:959.333333pt;}
.x0_c01271{left:0.000000pt;}
.x11f_c01271{left:3.840000pt;}
.x11d_c01271{left:23.040000pt;}
.x11a_c01271{left:28.413333pt;}
.x11b_c01271{left:36.093333pt;}
.x11e_c01271{left:50.693333pt;}
.x11c_c01271{left:96.000000pt;}
.x9_c01271{left:186.626667pt;}
.x24_c01271{left:188.933333pt;}
.x38_c01271{left:198.146667pt;}
.x25_c01271{left:201.213333pt;}
.xa_c01271{left:203.520000pt;}
.x17_c01271{left:208.893333pt;}
.x6c_c01271{left:211.200000pt;}
.x4a_c01271{left:212.733333pt;}
.xb_c01271{left:214.266667pt;}
.x59_c01271{left:215.813333pt;}
.x89_c01271{left:217.346667pt;}
.xac_c01271{left:218.880000pt;}
.xd1_c01271{left:220.413333pt;}
.xc1_c01271{left:221.946667pt;}
.x108_c01271{left:223.493333pt;}
.xf7_c01271{left:225.026667pt;}
.xfe_c01271{left:226.560000pt;}
.x18_c01271{left:228.866667pt;}
.x40_c01271{left:233.466667pt;}
.x62_c01271{left:236.546667pt;}
.xad_c01271{left:238.080000pt;}
.x26_c01271{left:239.613333pt;}
.x90_c01271{left:241.920000pt;}
.x5a_c01271{left:244.226667pt;}
.x6d_c01271{left:245.760000pt;}
.x104_c01271{left:248.066667pt;}
.x39_c01271{left:249.600000pt;}
.x74_c01271{left:252.666667pt;}
.xc_c01271{left:254.973333pt;}
.xa4_c01271{left:257.280000pt;}
.x82_c01271{left:261.893333pt;}
.x2f_c01271{left:264.186667pt;}
.xb2_c01271{left:266.493333pt;}
.xbe_c01271{left:271.106667pt;}
.x9e_c01271{left:272.640000pt;}
.x105_c01271{left:274.173333pt;}
.xd5_c01271{left:277.253333pt;}
.x91_c01271{left:280.320000pt;}
.xd2_c01271{left:282.626667pt;}
.x4b_c01271{left:284.160000pt;}
.x96_c01271{left:288.000000pt;}
.x8a_c01271{left:290.306667pt;}
.x67_c01271{left:292.613333pt;}
.x41_c01271{left:294.906667pt;}
.x9f_c01271{left:297.986667pt;}
.xec_c01271{left:301.053333pt;}
.xf1_c01271{left:302.586667pt;}
.xc2_c01271{left:304.133333pt;}
.x19_c01271{left:306.426667pt;}
.x30_c01271{left:309.506667pt;}
.x7d_c01271{left:311.040000pt;}
.x3a_c01271{left:313.346667pt;}
.xff_c01271{left:315.653333pt;}
.xed_c01271{left:317.186667pt;}
.x75_c01271{left:319.493333pt;}
.x3_c01271{left:322.560000pt;}
.x27_c01271{left:324.866667pt;}
.xd_c01271{left:326.400000pt;}
.x8b_c01271{left:328.706667pt;}
.x111_c01271{left:330.240000pt;}
.x5b_c01271{left:331.773333pt;}
.x6e_c01271{left:334.080000pt;}
.xae_c01271{left:335.613333pt;}
.xfa_c01271{left:337.146987pt;}
.x115_c01271{left:338.693333pt;}
.xab_c01271{left:341.760000pt;}
.x4c_c01271{left:343.293333pt;}
.xcd_c01271{left:347.133333pt;}
.x8c_c01271{left:350.213333pt;}
.xd6_c01271{left:351.746667pt;}
.x76_c01271{left:353.280000pt;}
.x100_c01271{left:354.813333pt;}
.x92_c01271{left:357.120000pt;}
.x97_c01271{left:358.653333pt;}
.xb3_c01271{left:361.733333pt;}
.xf2_c01271{left:363.266667pt;}
.xc3_c01271{left:366.333333pt;}
.xa5_c01271{left:368.640000pt;}
.xd7_c01271{left:370.946667pt;}
.x55_c01271{left:372.480000pt;}
.x42_c01271{left:374.786667pt;}
.x4_c01271{left:376.320000pt;}
.xe_c01271{left:378.626667pt;}
.xb4_c01271{left:380.160000pt;}
.x10f_c01271{left:381.693333pt;}
.xdd_c01271{left:384.000000pt;}
.x1a_c01271{left:386.306667pt;}
.x10b_c01271{left:389.373333pt;}
.x109_c01271{left:390.906667pt;}
.xb9_c01271{left:392.453333pt;}
.x4d_c01271{left:393.986667pt;}
.xd9_c01271{left:395.520000pt;}
.x110_c01271{left:398.586667pt;}
.x1b_c01271{left:403.200000pt;}
.x112_c01271{left:404.733333pt;}
.x56_c01271{left:407.040000pt;}
.x5_c01271{left:408.573333pt;}
.x28_c01271{left:410.880000pt;}
.xa6_c01271{left:412.413333pt;}
.x5c_c01271{left:413.946667pt;}
.xaf_c01271{left:415.493333pt;}
.xda_c01271{left:417.026667pt;}
.x1c_c01271{left:419.333333pt;}
.xd3_c01271{left:420.866667pt;}
.x4e_c01271{left:422.400000pt;}
.xc4_c01271{left:423.933333pt;}
.xf_c01271{left:426.240000pt;}
.x8d_c01271{left:429.306667pt;}
.x10a_c01271{left:430.853333pt;}
.xd8_c01271{left:432.386667pt;}
.xe2_c01271{left:435.453333pt;}
.x43_c01271{left:436.986667pt;}
.x83_c01271{left:439.293333pt;}
.xb5_c01271{left:440.826667pt;}
.x31_c01271{left:443.906667pt;}
.x6f_c01271{left:446.213333pt;}
.xee_c01271{left:447.746667pt;}
.x7e_c01271{left:449.280000pt;}
.xb6_c01271{left:450.813333pt;}
.xeb_c01271{left:453.893333pt;}
.x1d_c01271{left:456.186667pt;}
.xe9_c01271{left:457.733333pt;}
.x93_c01271{left:459.266667pt;}
.x32_c01271{left:460.800000pt;}
.x29_c01271{left:463.866667pt;}
.x10c_c01271{left:465.413333pt;}
.x98_c01271{left:467.706667pt;}
.x116_c01271{left:469.253333pt;}
.xe3_c01271{left:470.786667pt;}
.x63_c01271{left:473.093333pt;}
.xc5_c01271{left:475.386667pt;}
.xfb_c01271{left:479.226667pt;}
.xf3_c01271{left:480.773333pt;}
.x8e_c01271{left:482.306667pt;}
.xc9_c01271{left:483.840000pt;}
.x77_c01271{left:487.680000pt;}
.x10_c01271{left:489.986667pt;}
.x70_c01271{left:491.520000pt;}
.xef_c01271{left:493.826667pt;}
.xd4_c01271{left:495.360000pt;}
.xe5_c01271{left:498.426667pt;}
.x99_c01271{left:503.040000pt;}
.x2a_c01271{left:504.573333pt;}
.x11_c01271{left:506.880000pt;}
.x68_c01271{left:509.186667pt;}
.xbf_c01271{left:510.720000pt;}
.xa7_c01271{left:512.253333pt;}
.xce_c01271{left:513.786667pt;}
.x6_c01271{left:516.093333pt;}
.x10d_c01271{left:517.626667pt;}
.x117_c01271{left:519.173333pt;}
.x4f_c01271{left:525.306667pt;}
.x84_c01271{left:527.613333pt;}
.xfc_c01271{left:529.920000pt;}
.xa8_c01271{left:532.226667pt;}
.x2b_c01271{left:534.533333pt;}
.x44_c01271{left:536.066667pt;}
.xf4_c01271{left:538.373333pt;}
.x10e_c01271{left:539.906667pt;}
.x7f_c01271{left:542.213333pt;}
.x94_c01271{left:543.746667pt;}
.x5d_c01271{left:545.280000pt;}
.x9a_c01271{left:547.586667pt;}
.x50_c01271{left:549.120000pt;}
.xa0_c01271{left:550.653333pt;}
.xc6_c01271{left:552.186667pt;}
.x2c_c01271{left:553.733333pt;}
.xdb_c01271{left:557.573333pt;}
.xe6_c01271{left:559.106667pt;}
.x3b_c01271{left:560.640000pt;}
.x1_c01271{left:564.480000pt;}
.xf5_c01271{left:566.786667pt;}
.xa1_c01271{left:568.320000pt;}
.x1e_c01271{left:569.853333pt;}
.x12_c01271{left:572.933333pt;}
.x33_c01271{left:575.226667pt;}
.xb0_c01271{left:576.773333pt;}
.x95_c01271{left:579.066667pt;}
.x45_c01271{left:580.613333pt;}
.x9b_c01271{left:583.680000pt;}
.x78_c01271{left:585.213333pt;}
.xf6_c01271{left:587.520000pt;}
.x2_c01271{left:589.053333pt;}
.x80_c01271{left:592.893333pt;}
.xba_c01271{left:595.200000pt;}
.x64_c01271{left:597.506667pt;}
.x106_c01271{left:599.040000pt;}
.x69_c01271{left:600.573333pt;}
.x3c_c01271{left:602.880000pt;}
.x8f_c01271{left:605.186667pt;}
.x118_c01271{left:606.720000pt;}
.xb7_c01271{left:610.560000pt;}
.x85_c01271{left:612.866667pt;}
.x46_c01271{left:614.400000pt;}
.x1f_c01271{left:617.466667pt;}
.x13_c01271{left:620.546667pt;}
.x5e_c01271{left:622.853333pt;}
.xe8_c01271{left:624.386667pt;}
.xa2_c01271{left:625.920000pt;}
.xcf_c01271{left:628.226667pt;}
.x79_c01271{left:630.533333pt;}
.x34_c01271{left:632.826667pt;}
.x51_c01271{left:634.373333pt;}
.x71_c01271{left:637.440000pt;}
.x3d_c01271{left:641.280000pt;}
.xa9_c01271{left:644.346667pt;}
.x6a_c01271{left:647.426667pt;}
.xc0_c01271{left:648.960000pt;}
.x9c_c01271{left:652.026667pt;}
.x7a_c01271{left:654.333333pt;}
.x14_c01271{left:656.640000pt;}
.xe4_c01271{left:658.946667pt;}
.x72_c01271{left:661.253333pt;}
.xbb_c01271{left:665.093333pt;}
.x20_c01271{left:666.626667pt;}
.x47_c01271{left:668.160000pt;}
.x86_c01271{left:669.693333pt;}
.x7b_c01271{left:671.226667pt;}
.x119_c01271{left:672.773333pt;}
.x6b_c01271{left:674.306667pt;}
.x114_c01271{left:675.840000pt;}
.x65_c01271{left:677.373333pt;}
.x52_c01271{left:678.906667pt;}
.xde_c01271{left:680.453333pt;}
.xca_c01271{left:681.986667pt;}
.x21_c01271{left:684.293333pt;}
.x2d_c01271{left:687.360000pt;}
.xc7_c01271{left:688.893333pt;}
.x57_c01271{left:691.200000pt;}
.x35_c01271{left:692.733333pt;}
.xb8_c01271{left:695.040000pt;}
.x15_c01271{left:696.573333pt;}
.xa3_c01271{left:698.880000pt;}
.x3e_c01271{left:700.413333pt;}
.x87_c01271{left:702.720000pt;}
.xc8_c01271{left:705.026667pt;}
.xdc_c01271{left:708.093333pt;}
.x58_c01271{left:709.626667pt;}
.x16_c01271{left:711.933333pt;}
.x66_c01271{left:714.240000pt;}
.xfd_c01271{left:716.546667pt;}
.xea_c01271{left:718.080000pt;}
.x7_c01271{left:719.613333pt;}
.x7c_c01271{left:721.920000pt;}
.xbc_c01271{left:723.453333pt;}
.x53_c01271{left:724.986667pt;}
.x113_c01271{left:727.293333pt;}
.x36_c01271{left:728.826667pt;}
.x5f_c01271{left:730.373333pt;}
.xb1_c01271{left:732.666667pt;}
.x2e_c01271{left:734.973333pt;}
.x22_c01271{left:737.280000pt;}
.xdf_c01271{left:738.813333pt;}
.xd0_c01271{left:740.346667pt;}
.x73_c01271{left:741.893333pt;}
.xcb_c01271{left:745.733333pt;}
.x54_c01271{left:747.266667pt;}
.x8_c01271{left:749.573333pt;}
.x88_c01271{left:751.106667pt;}
.x37_c01271{left:752.640000pt;}
.xe0_c01271{left:755.706667pt;}
.x48_c01271{left:758.013333pt;}
.x3f_c01271{left:760.320000pt;}
.xe1_c01271{left:762.626667pt;}
.xaa_c01271{left:765.693333pt;}
.x49_c01271{left:768.000000pt;}
.xf8_c01271{left:769.533333pt;}
.xcc_c01271{left:772.613333pt;}
.x9d_c01271{left:777.213333pt;}
.x60_c01271{left:780.293333pt;}
.xf0_c01271{left:781.826667pt;}
.xbd_c01271{left:784.893333pt;}
.x81_c01271{left:787.200000pt;}
.x23_c01271{left:788.733333pt;}
.x61_c01271{left:790.266667pt;}
.xe7_c01271{left:797.946667pt;}
.x102_c01271{left:799.493333pt;}
.xf9_c01271{left:807.173333pt;}
.x103_c01271{left:810.240000pt;}
.x107_c01271{left:818.693333pt;}
.x101_c01271{left:830.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4dadf075e63605c7bbcb205c.woff2')format("woff");}.ff1_c01272{font-family:ff1_c01272;line-height:1.109863;font-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_c01272{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma_c01272{transform:matrix(0.070400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070400,0.000000,0.000000,0.250000,0,0);}
.md_c01272{transform:matrix(0.075225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075225,0.000000,0.000000,0.250000,0,0);}
.m9_c01272{transform:matrix(0.100300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100300,0.000000,0.000000,0.250000,0,0);}
.m24_c01272{transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);}
.m0_c01272{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c01272{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m23_c01272{transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);}
.m36_c01272{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m17_c01272{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m34_c01272{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);}
.m13_c01272{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m35_c01272{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m1_c01272{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);}
.m12_c01272{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);}
.m15_c01272{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);}
.m27_c01272{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);}
.m2c_c01272{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);}
.m2f_c01272{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1e_c01272{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.m2a_c01272{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);}
.m10_c01272{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);}
.m19_c01272{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.m33_c01272{transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);}
.mc_c01272{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);}
.m28_c01272{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);}
.m26_c01272{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);}
.m14_c01272{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1c_c01272{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);}
.m1a_c01272{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);}
.m20_c01272{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);}
.m2e_c01272{transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);}
.m18_c01272{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);}
.m1f_c01272{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);}
.mf_c01272{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);}
.m25_c01272{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);}
.m30_c01272{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);}
.m2d_c01272{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);}
.m2b_c01272{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m22_c01272{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);}
.m11_c01272{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4_c01272{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);}
.m6_c01272{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01272{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m29_c01272{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m31_c01272{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m16_c01272{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01272{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3_c01272{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);}
.m5_c01272{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);}
.m8_c01272{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m32_c01272{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m7_c01272{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.me_c01272{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m21_c01272{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.v0_c01272{vertical-align:0.000000px;}
.v1_c01272{vertical-align:3.420000px;}
.ls1_c01272{letter-spacing:0.000000px;}
.ls0_c01272{letter-spacing:52.400500px;}
.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;}
.fs2_c01272{font-size:3.456000px;}
.fs7_c01272{font-size:6.000000px;}
.fs5_c01272{font-size:10.380000px;}
.fs4_c01272{font-size:13.800000px;}
.fs6_c01272{font-size:17.280000px;}
.fs0_c01272{font-size:20.760000px;}
.fs8_c01272{font-size:24.180000px;}
.fsb_c01272{font-size:27.660000px;}
.fs9_c01272{font-size:31.080000px;}
.fsa_c01272{font-size:38.040000px;}
.fs3_c01272{font-size:41.460000px;}
.fsf_c01272{font-size:44.940000px;}
.fsc_c01272{font-size:48.360000px;}
.fs1_c01272{font-size:55.320000px;}
.fs15_c01272{font-size:58.740000px;}
.fs17_c01272{font-size:62.220000px;}
.fs14_c01272{font-size:65.640000px;}
.fs12_c01272{font-size:69.120000px;}
.fs13_c01272{font-size:72.600000px;}
.fs10_c01272{font-size:76.020000px;}
.fs11_c01272{font-size:79.500000px;}
.fsd_c01272{font-size:82.920000px;}
.fse_c01272{font-size:86.400000px;}
.fs16_c01272{font-size:93.300000px;}
.y0_c01272{bottom:0.000000px;}
.y45_c01272{bottom:770.685000px;}
.y46_c01272{bottom:775.875000px;}
.y44_c01272{bottom:776.730000px;}
.y43_c01272{bottom:778.470000px;}
.y42_c01272{bottom:779.325000px;}
.y41_c01272{bottom:789.690000px;}
.y40_c01272{bottom:792.285000px;}
.y3e_c01272{bottom:793.155000px;}
.y3f_c01272{bottom:797.475000px;}
.y3d_c01272{bottom:810.435000px;}
.y3b_c01272{bottom:813.030000px;}
.y3c_c01272{bottom:816.480000px;}
.y3a_c01272{bottom:817.350000px;}
.y39_c01272{bottom:820.800000px;}
.y38_c01272{bottom:830.310000px;}
.y36_c01272{bottom:833.760000px;}
.y37_c01272{bottom:834.630000px;}
.y35_c01272{bottom:836.355000px;}
.y30_c01272{bottom:858.810000px;}
.y34_c01272{bottom:859.680000px;}
.y33_c01272{bottom:864.000000px;}
.y32_c01272{bottom:865.725000px;}
.y31_c01272{bottom:870.045000px;}
.y2d_c01272{bottom:870.915000px;}
.y2b_c01272{bottom:873.510000px;}
.y2c_c01272{bottom:875.235000px;}
.y2e_c01272{bottom:876.090000px;}
.y2a_c01272{bottom:877.830000px;}
.y29_c01272{bottom:878.685000px;}
.y2f_c01272{bottom:879.555000px;}
.y27_c01272{bottom:894.240000px;}
.y26_c01272{bottom:895.110000px;}
.y25_c01272{bottom:895.965000px;}
.y28_c01272{bottom:896.835000px;}
.y24_c01272{bottom:912.390000px;}
.y21_c01272{bottom:913.245000px;}
.y20_c01272{bottom:914.970000px;}
.y23_c01272{bottom:917.565000px;}
.y22_c01272{bottom:918.435000px;}
.y1f_c01272{bottom:921.885000px;}
.y1e_c01272{bottom:973.725000px;}
.y1d_c01272{bottom:1012.605000px;}
.y1b_c01272{bottom:1041.120000px;}
.y1c_c01272{bottom:1042.845000px;}
.y1a_c01272{bottom:1048.035000px;}
.y19_c01272{bottom:1054.080000px;}
.y17_c01272{bottom:1061.850000px;}
.y18_c01272{bottom:1071.360000px;}
.y16_c01272{bottom:1073.085000px;}
.y15_c01272{bottom:1082.595000px;}
.y14_c01272{bottom:1089.510000px;}
.y13_c01272{bottom:1103.325000px;}
.y12_c01272{bottom:1118.880000px;}
.y2_c01272{bottom:1137.030000px;}
.y1_c01272{bottom:1154.310000px;}
.y11_c01272{bottom:1225.155000px;}
.y10_c01272{bottom:1238.115000px;}
.yf_c01272{bottom:1245.030000px;}
.ye_c01272{bottom:1252.800000px;}
.yd_c01272{bottom:1268.355000px;}
.yc_c01272{bottom:1317.600000px;}
.y4_c01272{bottom:1412.640000px;}
.ya_c01272{bottom:1413.510000px;}
.y3_c01272{bottom:1415.235000px;}
.yb_c01272{bottom:1417.830000px;}
.y8_c01272{bottom:1423.005000px;}
.y9_c01272{bottom:1426.470000px;}
.y7_c01272{bottom:1428.195000px;}
.y6_c01272{bottom:1435.965000px;}
.y5_c01272{bottom:1437.690000px;}
.h4_c01272{height:3.110063px;}
.h18_c01272{height:5.399414px;}
.h7_c01272{height:9.340986px;}
.h6_c01272{height:12.418652px;}
.h8_c01272{height:15.550313px;}
.h9_c01272{height:15.838652px;}
.h2_c01272{height:18.681973px;}
.ha_c01272{height:21.759639px;}
.hd_c01272{height:24.891299px;}
.hb_c01272{height:27.968965px;}
.hc_c01272{height:34.232285px;}
.h5_c01272{height:37.309951px;}
.h11_c01272{height:40.441611px;}
.he_c01272{height:43.519277px;}
.h3_c01272{height:49.782598px;}
.h17_c01272{height:52.860264px;}
.h1a_c01272{height:55.991924px;}
.h16_c01272{height:59.069590px;}
.h14_c01272{height:62.201250px;}
.h15_c01272{height:65.332910px;}
.h12_c01272{height:68.410576px;}
.h13_c01272{height:71.542236px;}
.hf_c01272{height:74.619902px;}
.h10_c01272{height:77.751563px;}
.h19_c01272{height:83.960889px;}
.h1_c01272{height:1518.750000px;}
.h0_c01272{height:1518.915000px;}
.w0_c01272{width:1085.190000px;}
.w1_c01272{width:1085.250000px;}
.x0_c01272{left:0.000000px;}
.x29_c01272{left:540.000000px;}
.x15_c01272{left:541.725000px;}
.x2a_c01272{left:558.150000px;}
.x16_c01272{left:565.050000px;}
.x1f_c01272{left:573.690000px;}
.x2b_c01272{left:578.880000px;}
.x1c_c01272{left:603.930000px;}
.x34_c01272{left:624.675000px;}
.x20_c01272{left:629.850000px;}
.x25_c01272{left:637.635000px;}
.x17_c01272{left:644.550000px;}
.x35_c01272{left:648.870000px;}
.x2c_c01272{left:655.770000px;}
.x31_c01272{left:657.510000px;}
.x2d_c01272{left:660.960000px;}
.x1d_c01272{left:668.730000px;}
.x26_c01272{left:672.195000px;}
.x21_c01272{left:673.920000px;}
.x27_c01272{left:686.010000px;}
.x32_c01272{left:687.750000px;}
.x36_c01272{left:694.650000px;}
.x18_c01272{left:709.350000px;}
.x19_c01272{left:721.440000px;}
.x37_c01272{left:726.630000px;}
.x30_c01272{left:732.675000px;}
.x33_c01272{left:746.490000px;}
.x2e_c01272{left:748.230000px;}
.x22_c01272{left:751.680000px;}
.x1a_c01272{left:758.595000px;}
.x1e_c01272{left:768.960000px;}
.x38_c01272{left:775.005000px;}
.x1b_c01272{left:787.110000px;}
.x2f_c01272{left:794.880000px;}
.x39_c01272{left:801.795000px;}
.x23_c01272{left:803.520000px;}
.x28_c01272{left:826.845000px;}
.x24_c01272{left:838.080000px;}
.x3_c01272{left:966.810000px;}
.x4_c01272{left:973.725000px;}
.x10_c01272{left:980.640000px;}
.x9_c01272{left:990.153504px;}
.x11_c01272{left:996.195000px;}
.xa_c01272{left:997.920000px;}
.xb_c01272{left:1001.370000px;}
.xe_c01272{left:1006.560000px;}
.xf_c01272{left:1013.475000px;}
.xd_c01272{left:1017.795000px;}
.x8_c01272{left:1022.115000px;}
.x7_c01272{left:1032.480000px;}
.x14_c01272{left:1038.525000px;}
.xc_c01272{left:1051.481496px;}
.x5_c01272{left:1053.210000px;}
.x12_c01272{left:1057.530000px;}
.x2_c01272{left:1060.125000px;}
.x13_c01272{left:1063.590000px;}
.x1_c01272{left:1065.315000px;}
.x6_c01272{left:1067.040000px;}
@media print{
.v0_c01272{vertical-align:0.000000pt;}
.v1_c01272{vertical-align:3.040000pt;}
.ls1_c01272{letter-spacing:0.000000pt;}
.ls0_c01272{letter-spacing:46.578222pt;}
.ws0_c01272{word-spacing:0.000000pt;}
.fs2_c01272{font-size:3.072000pt;}
.fs7_c01272{font-size:5.333333pt;}
.fs5_c01272{font-size:9.226667pt;}
.fs4_c01272{font-size:12.266667pt;}
.fs6_c01272{font-size:15.360000pt;}
.fs0_c01272{font-size:18.453333pt;}
.fs8_c01272{font-size:21.493333pt;}
.fsb_c01272{font-size:24.586667pt;}
.fs9_c01272{font-size:27.626667pt;}
.fsa_c01272{font-size:33.813333pt;}
.fs3_c01272{font-size:36.853333pt;}
.fsf_c01272{font-size:39.946667pt;}
.fsc_c01272{font-size:42.986667pt;}
.fs1_c01272{font-size:49.173333pt;}
.fs15_c01272{font-size:52.213333pt;}
.fs17_c01272{font-size:55.306667pt;}
.fs14_c01272{font-size:58.346667pt;}
.fs12_c01272{font-size:61.440000pt;}
.fs13_c01272{font-size:64.533333pt;}
.fs10_c01272{font-size:67.573333pt;}
.fs11_c01272{font-size:70.666667pt;}
.fsd_c01272{font-size:73.706667pt;}
.fse_c01272{font-size:76.800000pt;}
.fs16_c01272{font-size:82.933333pt;}
.y0_c01272{bottom:0.000000pt;}
.y45_c01272{bottom:685.053333pt;}
.y46_c01272{bottom:689.666667pt;}
.y44_c01272{bottom:690.426667pt;}
.y43_c01272{bottom:691.973333pt;}
.y42_c01272{bottom:692.733333pt;}
.y41_c01272{bottom:701.946667pt;}
.y40_c01272{bottom:704.253333pt;}
.y3e_c01272{bottom:705.026667pt;}
.y3f_c01272{bottom:708.866667pt;}
.y3d_c01272{bottom:720.386667pt;}
.y3b_c01272{bottom:722.693333pt;}
.y3c_c01272{bottom:725.760000pt;}
.y3a_c01272{bottom:726.533333pt;}
.y39_c01272{bottom:729.600000pt;}
.y38_c01272{bottom:738.053333pt;}
.y36_c01272{bottom:741.120000pt;}
.y37_c01272{bottom:741.893333pt;}
.y35_c01272{bottom:743.426667pt;}
.y30_c01272{bottom:763.386667pt;}
.y34_c01272{bottom:764.160000pt;}
.y33_c01272{bottom:768.000000pt;}
.y32_c01272{bottom:769.533333pt;}
.y31_c01272{bottom:773.373333pt;}
.y2d_c01272{bottom:774.146667pt;}
.y2b_c01272{bottom:776.453333pt;}
.y2c_c01272{bottom:777.986667pt;}
.y2e_c01272{bottom:778.746667pt;}
.y2a_c01272{bottom:780.293333pt;}
.y29_c01272{bottom:781.053333pt;}
.y2f_c01272{bottom:781.826667pt;}
.y27_c01272{bottom:794.880000pt;}
.y26_c01272{bottom:795.653333pt;}
.y25_c01272{bottom:796.413333pt;}
.y28_c01272{bottom:797.186667pt;}
.y24_c01272{bottom:811.013333pt;}
.y21_c01272{bottom:811.773333pt;}
.y20_c01272{bottom:813.306667pt;}
.y23_c01272{bottom:815.613333pt;}
.y22_c01272{bottom:816.386667pt;}
.y1f_c01272{bottom:819.453333pt;}
.y1e_c01272{bottom:865.533333pt;}
.y1d_c01272{bottom:900.093333pt;}
.y1b_c01272{bottom:925.440000pt;}
.y1c_c01272{bottom:926.973333pt;}
.y1a_c01272{bottom:931.586667pt;}
.y19_c01272{bottom:936.960000pt;}
.y17_c01272{bottom:943.866667pt;}
.y18_c01272{bottom:952.320000pt;}
.y16_c01272{bottom:953.853333pt;}
.y15_c01272{bottom:962.306667pt;}
.y14_c01272{bottom:968.453333pt;}
.y13_c01272{bottom:980.733333pt;}
.y12_c01272{bottom:994.560000pt;}
.y2_c01272{bottom:1010.693333pt;}
.y1_c01272{bottom:1026.053333pt;}
.y11_c01272{bottom:1089.026667pt;}
.y10_c01272{bottom:1100.546667pt;}
.yf_c01272{bottom:1106.693333pt;}
.ye_c01272{bottom:1113.600000pt;}
.yd_c01272{bottom:1127.426667pt;}
.yc_c01272{bottom:1171.200000pt;}
.y4_c01272{bottom:1255.680000pt;}
.ya_c01272{bottom:1256.453333pt;}
.y3_c01272{bottom:1257.986667pt;}
.yb_c01272{bottom:1260.293333pt;}
.y8_c01272{bottom:1264.893333pt;}
.y9_c01272{bottom:1267.973333pt;}
.y7_c01272{bottom:1269.506667pt;}
.y6_c01272{bottom:1276.413333pt;}
.y5_c01272{bottom:1277.946667pt;}
.h4_c01272{height:2.764500pt;}
.h18_c01272{height:4.799479pt;}
.h7_c01272{height:8.303099pt;}
.h6_c01272{height:11.038802pt;}
.h8_c01272{height:13.822500pt;}
.h9_c01272{height:14.078802pt;}
.h2_c01272{height:16.606198pt;}
.ha_c01272{height:19.341901pt;}
.hd_c01272{height:22.125599pt;}
.hb_c01272{height:24.861302pt;}
.hc_c01272{height:30.428698pt;}
.h5_c01272{height:33.164401pt;}
.h11_c01272{height:35.948099pt;}
.he_c01272{height:38.683802pt;}
.h3_c01272{height:44.251198pt;}
.h17_c01272{height:46.986901pt;}
.h1a_c01272{height:49.770599pt;}
.h16_c01272{height:52.506302pt;}
.h14_c01272{height:55.290000pt;}
.h15_c01272{height:58.073698pt;}
.h12_c01272{height:60.809401pt;}
.h13_c01272{height:63.593099pt;}
.hf_c01272{height:66.328802pt;}
.h10_c01272{height:69.112500pt;}
.h19_c01272{height:74.631901pt;}
.h1_c01272{height:1350.000000pt;}
.h0_c01272{height:1350.146667pt;}
.w0_c01272{width:964.613333pt;}
.w1_c01272{width:964.666667pt;}
.x0_c01272{left:0.000000pt;}
.x29_c01272{left:480.000000pt;}
.x15_c01272{left:481.533333pt;}
.x2a_c01272{left:496.133333pt;}
.x16_c01272{left:502.266667pt;}
.x1f_c01272{left:509.946667pt;}
.x2b_c01272{left:514.560000pt;}
.x1c_c01272{left:536.826667pt;}
.x34_c01272{left:555.266667pt;}
.x20_c01272{left:559.866667pt;}
.x25_c01272{left:566.786667pt;}
.x17_c01272{left:572.933333pt;}
.x35_c01272{left:576.773333pt;}
.x2c_c01272{left:582.906667pt;}
.x31_c01272{left:584.453333pt;}
.x2d_c01272{left:587.520000pt;}
.x1d_c01272{left:594.426667pt;}
.x26_c01272{left:597.506667pt;}
.x21_c01272{left:599.040000pt;}
.x27_c01272{left:609.786667pt;}
.x32_c01272{left:611.333333pt;}
.x36_c01272{left:617.466667pt;}
.x18_c01272{left:630.533333pt;}
.x19_c01272{left:641.280000pt;}
.x37_c01272{left:645.893333pt;}
.x30_c01272{left:651.266667pt;}
.x33_c01272{left:663.546667pt;}
.x2e_c01272{left:665.093333pt;}
.x22_c01272{left:668.160000pt;}
.x1a_c01272{left:674.306667pt;}
.x1e_c01272{left:683.520000pt;}
.x38_c01272{left:688.893333pt;}
.x1b_c01272{left:699.653333pt;}
.x2f_c01272{left:706.560000pt;}
.x39_c01272{left:712.706667pt;}
.x23_c01272{left:714.240000pt;}
.x28_c01272{left:734.973333pt;}
.x24_c01272{left:744.960000pt;}
.x3_c01272{left:859.386667pt;}
.x4_c01272{left:865.533333pt;}
.x10_c01272{left:871.680000pt;}
.x9_c01272{left:880.136448pt;}
.x11_c01272{left:885.506667pt;}
.xa_c01272{left:887.040000pt;}
.xb_c01272{left:890.106667pt;}
.xe_c01272{left:894.720000pt;}
.xf_c01272{left:900.866667pt;}
.xd_c01272{left:904.706667pt;}
.x8_c01272{left:908.546667pt;}
.x7_c01272{left:917.760000pt;}
.x14_c01272{left:923.133333pt;}
.xc_c01272{left:934.650219pt;}
.x5_c01272{left:936.186667pt;}
.x12_c01272{left:940.026667pt;}
.x2_c01272{left:942.333333pt;}
.x13_c01272{left:945.413333pt;}
.x1_c01272{left:946.946667pt;}
.x6_c01272{left:948.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_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_c16b5c2ac0de069d599fc41b.woff2')format("woff");}.ff1_c01273{font-family:ff1_c01273;line-height:1.109863;font-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_c01273{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m11_c01273{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.mc_c01273{transform:matrix(0.065250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065250,0.000000,0.000000,0.250000,0,0);}
.mf_c01273{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.me_c01273{transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);}
.m2_c01273{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m1_c01273{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01273{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);}
.m6_c01273{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);}
.m8_c01273{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);}
.m7_c01273{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01273{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);}
.ma_c01273{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m10_c01273{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m9_c01273{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.md_c01273{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m5_c01273{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m12_c01273{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.mb_c01273{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,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;}
.fs8_c01273{font-size:3.456000px;}
.fs3_c01273{font-size:6.000000px;}
.fs6_c01273{font-size:6.900000px;}
.fs4_c01273{font-size:10.380000px;}
.fs9_c01273{font-size:13.800000px;}
.fs1_c01273{font-size:17.280000px;}
.fs0_c01273{font-size:20.760000px;}
.fs2_c01273{font-size:24.180000px;}
.fs5_c01273{font-size:27.660000px;}
.fsb_c01273{font-size:34.560000px;}
.fsa_c01273{font-size:41.460000px;}
.fs7_c01273{font-size:51.840000px;}
.fsc_c01273{font-size:72.600000px;}
.y0_c01273{bottom:0.000000px;}
.y15_c01273{bottom:1058.400000px;}
.y16_c01273{bottom:1068.765000px;}
.y14_c01273{bottom:1076.550000px;}
.y13_c01273{bottom:1086.915000px;}
.y12_c01273{bottom:1099.875000px;}
.yf_c01273{bottom:1222.560000px;}
.y11_c01273{bottom:1233.795000px;}
.y10_c01273{bottom:1241.565000px;}
.ye_c01273{bottom:1247.610000px;}
.yd_c01273{bottom:1251.075000px;}
.yc_c01273{bottom:1255.395000px;}
.ya_c01273{bottom:1324.515000px;}
.yb_c01273{bottom:1327.965000px;}
.y8_c01273{bottom:1387.590000px;}
.y9_c01273{bottom:1388.445000px;}
.y7_c01273{bottom:1404.870000px;}
.y5_c01273{bottom:1410.045000px;}
.y6_c01273{bottom:1414.365000px;}
.y1_c01273{bottom:1419.555000px;}
.y2_c01273{bottom:1423.005000px;}
.y3_c01273{bottom:1423.875000px;}
.y4_c01273{bottom:1424.730000px;}
.ha_c01273{height:3.110063px;}
.h5_c01273{height:5.399414px;}
.h8_c01273{height:6.209326px;}
.h6_c01273{height:9.340986px;}
.hb_c01273{height:12.418652px;}
.h3_c01273{height:15.550313px;}
.h2_c01273{height:18.681973px;}
.h4_c01273{height:21.759639px;}
.h7_c01273{height:24.891299px;}
.hd_c01273{height:31.100625px;}
.hc_c01273{height:37.309951px;}
.h9_c01273{height:46.650937px;}
.he_c01273{height:65.332910px;}
.h0_c01273{height:1509.405000px;}
.h1_c01273{height:1509.750000px;}
.w0_c01273{width:1088.640000px;}
.w1_c01273{width:1089.000000px;}
.x0_c01273{left:0.000000px;}
.xf_c01273{left:12.960000px;}
.x13_c01273{left:113.190000px;}
.x14_c01273{left:127.005000px;}
.x10_c01273{left:133.050000px;}
.x12_c01273{left:139.110000px;}
.x11_c01273{left:150.330000px;}
.x5_c01273{left:154.650000px;}
.x6_c01273{left:165.030000px;}
.xc_c01273{left:166.755000px;}
.xe_c01273{left:184.035000px;}
.x1_c01273{left:185.760000px;}
.xd_c01273{left:196.995000px;}
.x2_c01273{left:199.590000px;}
.xa_c01273{left:212.550000px;}
.xb_c01273{left:223.770000px;}
.x3_c01273{left:228.090000px;}
.x4_c01273{left:237.600000px;}
.x8_c01273{left:302.400000px;}
.x9_c01273{left:311.040000px;}
.x7_c01273{left:333.510000px;}
@media print{
.v0_c01273{vertical-align:0.000000pt;}
.ls0_c01273{letter-spacing:0.000000pt;}
.ws0_c01273{word-spacing:0.000000pt;}
.fs8_c01273{font-size:3.072000pt;}
.fs3_c01273{font-size:5.333333pt;}
.fs6_c01273{font-size:6.133333pt;}
.fs4_c01273{font-size:9.226667pt;}
.fs9_c01273{font-size:12.266667pt;}
.fs1_c01273{font-size:15.360000pt;}
.fs0_c01273{font-size:18.453333pt;}
.fs2_c01273{font-size:21.493333pt;}
.fs5_c01273{font-size:24.586667pt;}
.fsb_c01273{font-size:30.720000pt;}
.fsa_c01273{font-size:36.853333pt;}
.fs7_c01273{font-size:46.080000pt;}
.fsc_c01273{font-size:64.533333pt;}
.y0_c01273{bottom:0.000000pt;}
.y15_c01273{bottom:940.800000pt;}
.y16_c01273{bottom:950.013333pt;}
.y14_c01273{bottom:956.933333pt;}
.y13_c01273{bottom:966.146667pt;}
.y12_c01273{bottom:977.666667pt;}
.yf_c01273{bottom:1086.720000pt;}
.y11_c01273{bottom:1096.706667pt;}
.y10_c01273{bottom:1103.613333pt;}
.ye_c01273{bottom:1108.986667pt;}
.yd_c01273{bottom:1112.066667pt;}
.yc_c01273{bottom:1115.906667pt;}
.ya_c01273{bottom:1177.346667pt;}
.yb_c01273{bottom:1180.413333pt;}
.y8_c01273{bottom:1233.413333pt;}
.y9_c01273{bottom:1234.173333pt;}
.y7_c01273{bottom:1248.773333pt;}
.y5_c01273{bottom:1253.373333pt;}
.y6_c01273{bottom:1257.213333pt;}
.y1_c01273{bottom:1261.826667pt;}
.y2_c01273{bottom:1264.893333pt;}
.y3_c01273{bottom:1265.666667pt;}
.y4_c01273{bottom:1266.426667pt;}
.ha_c01273{height:2.764500pt;}
.h5_c01273{height:4.799479pt;}
.h8_c01273{height:5.519401pt;}
.h6_c01273{height:8.303099pt;}
.hb_c01273{height:11.038802pt;}
.h3_c01273{height:13.822500pt;}
.h2_c01273{height:16.606198pt;}
.h4_c01273{height:19.341901pt;}
.h7_c01273{height:22.125599pt;}
.hd_c01273{height:27.645000pt;}
.hc_c01273{height:33.164401pt;}
.h9_c01273{height:41.467500pt;}
.he_c01273{height:58.073698pt;}
.h0_c01273{height:1341.693333pt;}
.h1_c01273{height:1342.000000pt;}
.w0_c01273{width:967.680000pt;}
.w1_c01273{width:968.000000pt;}
.x0_c01273{left:0.000000pt;}
.xf_c01273{left:11.520000pt;}
.x13_c01273{left:100.613333pt;}
.x14_c01273{left:112.893333pt;}
.x10_c01273{left:118.266667pt;}
.x12_c01273{left:123.653333pt;}
.x11_c01273{left:133.626667pt;}
.x5_c01273{left:137.466667pt;}
.x6_c01273{left:146.693333pt;}
.xc_c01273{left:148.226667pt;}
.xe_c01273{left:163.586667pt;}
.x1_c01273{left:165.120000pt;}
.xd_c01273{left:175.106667pt;}
.x2_c01273{left:177.413333pt;}
.xa_c01273{left:188.933333pt;}
.xb_c01273{left:198.906667pt;}
.x3_c01273{left:202.746667pt;}
.x4_c01273{left:211.200000pt;}
.x8_c01273{left:268.800000pt;}
.x9_c01273{left:276.480000pt;}
.x7_c01273{left:296.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4dbe8f2f56b4001dc4ace6ba.woff2')format("woff");}.ff1_c01274{font-family:ff1_c01274;line-height:1.109863;font-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_c01274{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m20a_c01274{transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);}
.m179_c01274{transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);}
.m228_c01274{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);}
.m72_c01274{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.meb_c01274{transform:matrix(0.074525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074525,0.000000,0.000000,0.250000,0,0);}
.m56_c01274{transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);}
.mc1_c01274{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);}
.m20e_c01274{transform:matrix(0.078975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078975,0.000000,0.000000,0.250000,0,0);}
.m20c_c01274{transform:matrix(0.080825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080825,0.000000,0.000000,0.250000,0,0);}
.m16d_c01274{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.ma_c01274{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);}
.m233_c01274{transform:matrix(0.087325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087325,0.000000,0.000000,0.250000,0,0);}
.m173_c01274{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01274{transform:matrix(0.089850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089850,0.000000,0.000000,0.250000,0,0);}
.m202_c01274{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.mdf_c01274{transform:matrix(0.091025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091025,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01274{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m175_c01274{transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095525,0.000000,0.000000,0.250000,0,0);}
.m20f_c01274{transform:matrix(0.096525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096525,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01274{transform:matrix(0.099350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099350,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01274{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);}
.m8_c01274{transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);}
.m141_c01274{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m19c_c01274{transform:matrix(0.104475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104475,0.000000,0.000000,0.250000,0,0);}
.m187_c01274{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01274{transform:matrix(0.107950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107950,0.000000,0.000000,0.250000,0,0);}
.m12_c01274{transform:matrix(0.109250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109250,0.000000,0.000000,0.250000,0,0);}
.m234_c01274{transform:matrix(0.111575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111575,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01274{transform:matrix(0.112050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112050,0.000000,0.000000,0.250000,0,0);}
.m134_c01274{transform:matrix(0.112350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112350,0.000000,0.000000,0.250000,0,0);}
.m108_c01274{transform:matrix(0.114900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114900,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01274{transform:matrix(0.116200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116200,0.000000,0.000000,0.250000,0,0);}
.m177_c01274{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m20d_c01274{transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);}
.m1fa_c01274{transform:matrix(0.120125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120125,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01274{transform:matrix(0.120200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120200,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01274{transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);}
.m1db_c01274{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m6e_c01274{transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);}
.mee_c01274{transform:matrix(0.122000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122000,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01274{transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123200,0.000000,0.000000,0.250000,0,0);}
.m80_c01274{transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);}
.m186_c01274{transform:matrix(0.123650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123650,0.000000,0.000000,0.250000,0,0);}
.m219_c01274{transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01274{transform:matrix(0.124325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124325,0.000000,0.000000,0.250000,0,0);}
.med_c01274{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m176_c01274{transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);}
.m40_c01274{transform:matrix(0.126075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126075,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01274{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);}
.m22f_c01274{transform:matrix(0.127175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127175,0.000000,0.000000,0.250000,0,0);}
.m19e_c01274{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);}
.m220_c01274{transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01274{transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);}
.m19f_c01274{transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);}
.mcb_c01274{transform:matrix(0.129325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129325,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01274{transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);}
.m21a_c01274{transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);}
.m90_c01274{transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);}
.m21d_c01274{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);}
.mc7_c01274{transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);}
.mf0_c01274{transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);}
.mc6_c01274{transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);}
.mf4_c01274{transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);}
.m22d_c01274{transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);}
.m19a_c01274{transform:matrix(0.134550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134550,0.000000,0.000000,0.250000,0,0);}
.m21b_c01274{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m209_c01274{transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);}
.mb0_c01274{transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);}
.m1ff_c01274{transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);}
.m3d_c01274{transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);}
.m14_c01274{transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);}
.m200_c01274{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.m232_c01274{transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);}
.m2f_c01274{transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);}
.m31_c01274{transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);}
.m1f6_c01274{transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);}
.m149_c01274{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01274{transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);}
.md_c01274{transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);}
.m10e_c01274{transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);}
.m18c_c01274{transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141900,0.000000,0.000000,0.250000,0,0);}
.md7_c01274{transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);}
.m14c_c01274{transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);}
.m14d_c01274{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.m0_c01274{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01274{transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);}
.m13d_c01274{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.md0_c01274{transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01274{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.m32_c01274{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);}
.m192_c01274{transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);}
.m99_c01274{transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);}
.md8_c01274{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);}
.m3c_c01274{transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01274{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m1ee_c01274{transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);}
.m4_c01274{transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);}
.m27_c01274{transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);}
.m1e6_c01274{transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);}
.m1f9_c01274{transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);}
.m208_c01274{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);}
.m1dc_c01274{transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);}
.m51_c01274{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);}
.m1b1_c01274{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);}
.m48_c01274{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m97_c01274{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m73_c01274{transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);}
.m11b_c01274{transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01274{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.m63_c01274{transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);}
.m8d_c01274{transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);}
.m6a_c01274{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m45_c01274{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m196_c01274{transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152775,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01274{transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);}
.m22b_c01274{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.m18_c01274{transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);}
.m95_c01274{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);}
.m223_c01274{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m183_c01274{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.m83_c01274{transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);}
.m140_c01274{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mdd_c01274{transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);}
.m185_c01274{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);}
.m1f3_c01274{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.m8f_c01274{transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);}
.m98_c01274{transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);}
.mad_c01274{transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);}
.mf8_c01274{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.me9_c01274{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.m11a_c01274{transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);}
.m119_c01274{transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);}
.mb7_c01274{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.m20b_c01274{transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);}
.m195_c01274{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.m169_c01274{transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);}
.ma5_c01274{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.m18e_c01274{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.m226_c01274{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.m46_c01274{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);}
.m1d9_c01274{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);}
.m6c_c01274{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m3a_c01274{transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);}
.m6f_c01274{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m229_c01274{transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);}
.m1ea_c01274{transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);}
.m47_c01274{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.m217_c01274{transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);}
.m132_c01274{transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);}
.m121_c01274{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.m8c_c01274{transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01274{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);}
.m110_c01274{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.m1f8_c01274{transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);}
.m18f_c01274{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.m29_c01274{transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);}
.m103_c01274{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);}
.m236_c01274{transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);}
.m5f_c01274{transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);}
.me4_c01274{transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01274{transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);}
.m16e_c01274{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m214_c01274{transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165150,0.000000,0.000000,0.250000,0,0);}
.m174_c01274{transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01274{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.mb8_c01274{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);}
.m1a8_c01274{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01274{transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166225,0.000000,0.000000,0.250000,0,0);}
.mb9_c01274{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.m9b_c01274{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01274{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.m1f5_c01274{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m21f_c01274{transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);}
.m157_c01274{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);}
.m17d_c01274{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);}
.m28_c01274{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);}
.m1d7_c01274{transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169400,0.000000,0.000000,0.250000,0,0);}
.mab_c01274{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m53_c01274{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.m184_c01274{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m155_c01274{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);}
.m1b9_c01274{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.mfa_c01274{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);}
.mef_c01274{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.m152_c01274{transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);}
.m230_c01274{transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);}
.m144_c01274{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.m154_c01274{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m107_c01274{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.m17a_c01274{transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);}
.mf1_c01274{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);}
.m7d_c01274{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m89_c01274{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m13b_c01274{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m133_c01274{transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);}
.m6b_c01274{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m9c_c01274{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.m1f2_c01274{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);}
.m221_c01274{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);}
.m235_c01274{transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);}
.m22c_c01274{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m15_c01274{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);}
.m1e8_c01274{transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);}
.mcf_c01274{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.m218_c01274{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.m62_c01274{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.m165_c01274{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m189_c01274{transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);}
.m153_c01274{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);}
.m1ed_c01274{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);}
.m180_c01274{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);}
.m82_c01274{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m171_c01274{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m85_c01274{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);}
.m15c_c01274{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m156_c01274{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);}
.m197_c01274{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01274{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.m16b_c01274{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);}
.m129_c01274{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.ma1_c01274{transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);}
.m124_c01274{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m65_c01274{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m2e_c01274{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);}
.m61_c01274{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.m71_c01274{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.m1de_c01274{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf2_c01274{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m21c_c01274{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc0_c01274{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01274{transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01274{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);}
.mca_c01274{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);}
.m1e4_c01274{transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);}
.m70_c01274{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m1b_c01274{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m1f1_c01274{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m1d_c01274{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.m13_c01274{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01274{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m207_c01274{transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);}
.m15a_c01274{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m18d_c01274{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);}
.m9d_c01274{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01274{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01274{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m67_c01274{transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);}
.m1fb_c01274{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);}
.m225_c01274{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.mc9_c01274{transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01274{transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);}
.m14a_c01274{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);}
.m151_c01274{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);}
.m1ec_c01274{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.mbd_c01274{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.mf9_c01274{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01274{transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);}
.m84_c01274{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01274{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);}
.m123_c01274{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.me1_c01274{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.m23e_c01274{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m10a_c01274{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);}
.m147_c01274{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);}
.m2b_c01274{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);}
.ma9_c01274{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);}
.mdc_c01274{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);}
.m12e_c01274{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);}
.m231_c01274{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);}
.m168_c01274{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);}
.m19_c01274{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m167_c01274{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);}
.m128_c01274{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.mde_c01274{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_c01274{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);}
.m91_c01274{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m5b_c01274{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.m17f_c01274{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);}
.m88_c01274{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);}
.m3f_c01274{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);}
.m113_c01274{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);}
.mcd_c01274{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.mcc_c01274{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01274{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01274{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.m201_c01274{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);}
.m8e_c01274{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);}
.m104_c01274{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.mc4_c01274{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);}
.m96_c01274{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);}
.m163_c01274{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);}
.mbb_c01274{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01274{transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);}
.m12a_c01274{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.maa_c01274{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb6_c01274{transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);}
.me6_c01274{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);}
.m188_c01274{transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);}
.m4a_c01274{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m16f_c01274{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m212_c01274{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.mfe_c01274{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);}
.mf_c01274{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);}
.m75_c01274{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);}
.m1e5_c01274{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.ma8_c01274{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m237_c01274{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.me3_c01274{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m164_c01274{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);}
.m1bf_c01274{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);}
.mfd_c01274{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.m13c_c01274{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);}
.m44_c01274{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);}
.m136_c01274{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);}
.m1cf_c01274{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);}
.mae_c01274{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);}
.m1b5_c01274{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);}
.m206_c01274{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.maf_c01274{transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);}
.m1fc_c01274{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m100_c01274{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.m37_c01274{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.m130_c01274{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01274{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);}
.mdb_c01274{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);}
.m215_c01274{transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);}
.md6_c01274{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);}
.ma4_c01274{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m101_c01274{transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);}
.m13a_c01274{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);}
.me5_c01274{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01274{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);}
.m205_c01274{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01274{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.mfc_c01274{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);}
.m210_c01274{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);}
.m17e_c01274{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m8a_c01274{transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);}
.m222_c01274{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m227_c01274{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);}
.m11d_c01274{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);}
.m76_c01274{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);}
.m18b_c01274{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);}
.m1a5_c01274{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);}
.mce_c01274{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.m22e_c01274{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);}
.m13e_c01274{transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);}
.me0_c01274{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);}
.m19d_c01274{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);}
.m3b_c01274{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m23c_c01274{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.m43_c01274{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01274{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);}
.m35_c01274{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);}
.m216_c01274{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01274{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);}
.m1da_c01274{transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);}
.m16a_c01274{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.m160_c01274{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m1f7_c01274{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);}
.m161_c01274{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);}
.mb5_c01274{transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);}
.m42_c01274{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);}
.m102_c01274{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);}
.m49_c01274{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m23a_c01274{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);}
.m11e_c01274{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);}
.m120_c01274{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m198_c01274{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);}
.md5_c01274{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m15f_c01274{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01274{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);}
.m116_c01274{transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223975,0.000000,0.000000,0.250000,0,0);}
.m11c_c01274{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m1f0_c01274{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);}
.m2c_c01274{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m16c_c01274{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m131_c01274{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);}
.m1b2_c01274{transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);}
.m137_c01274{transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);}
.m111_c01274{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);}
.mc5_c01274{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.md9_c01274{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01274{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m1e7_c01274{transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);}
.mb2_c01274{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);}
.mf7_c01274{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.m1df_c01274{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.m150_c01274{transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);}
.mf5_c01274{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.mfb_c01274{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);}
.m68_c01274{transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);}
.m166_c01274{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);}
.m5d_c01274{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);}
.m114_c01274{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);}
.me8_c01274{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m93_c01274{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);}
.m199_c01274{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);}
.m10d_c01274{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);}
.ma0_c01274{transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);}
.m13f_c01274{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.m22a_c01274{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);}
.m139_c01274{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);}
.m86_c01274{transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);}
.m178_c01274{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);}
.m1c0_c01274{transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);}
.m94_c01274{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);}
.mba_c01274{transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);}
.ma2_c01274{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m19b_c01274{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01274{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m122_c01274{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);}
.m10c_c01274{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m1f4_c01274{transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);}
.mea_c01274{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m162_c01274{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m1be_c01274{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);}
.m12b_c01274{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m193_c01274{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);}
.m10f_c01274{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);}
.mff_c01274{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m12f_c01274{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);}
.m18a_c01274{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.mf3_c01274{transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);}
.md1_c01274{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);}
.m21e_c01274{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);}
.mf6_c01274{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.m105_c01274{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m238_c01274{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m14e_c01274{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);}
.m190_c01274{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);}
.ma3_c01274{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);}
.mb3_c01274{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);}
.m11_c01274{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);}
.m1e3_c01274{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mbc_c01274{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);}
.ma6_c01274{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);}
.m112_c01274{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m11f_c01274{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m9_c01274{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);}
.m9a_c01274{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb4_c01274{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);}
.m33_c01274{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);}
.m135_c01274{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);}
.m4e_c01274{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);}
.ma7_c01274{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m69_c01274{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c01274{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m16_c01274{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);}
.m60_c01274{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m38_c01274{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);}
.m81_c01274{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);}
.m4b_c01274{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m115_c01274{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);}
.mb_c01274{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m117_c01274{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mda_c01274{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);}
.m6d_c01274{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m74_c01274{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);}
.m2_c01274{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);}
.mc3_c01274{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mbe_c01274{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me2_c01274{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);}
.m4d_c01274{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mc8_c01274{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m39_c01274{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);}
.m8b_c01274{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01274{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12c_c01274{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10_c01274{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me7_c01274{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m92_c01274{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m106_c01274{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01274{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);}
.m1c9_c01274{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01274{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m64_c01274{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01274{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);}
.m143_c01274{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m66_c01274{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m30_c01274{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);}
.m158_c01274{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m87_c01274{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01274{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m52_c01274{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);}
.m10b_c01274{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m23_c01274{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01274{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);}
.m2a_c01274{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m15b_c01274{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01274{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);}
.m4f_c01274{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m118_c01274{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m172_c01274{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1ef_c01274{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01274{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m204_c01274{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);}
.m77_c01274{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);}
.m34_c01274{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m170_c01274{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);}
.m14b_c01274{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01274{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m41_c01274{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);}
.m224_c01274{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m26_c01274{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9f_c01274{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m14f_c01274{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m17_c01274{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);}
.m24_c01274{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m20_c01274{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m146_c01274{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01274{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m22_c01274{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01274{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m12d_c01274{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);}
.m1c_c01274{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m127_c01274{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m36_c01274{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.md2_c01274{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mc2_c01274{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m138_c01274{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);}
.mec_c01274{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m191_c01274{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01274{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);}
.m57_c01274{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m23d_c01274{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mc_c01274{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m7_c01274{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);}
.m1af_c01274{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m159_c01274{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3_c01274{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m54_c01274{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m17c_c01274{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m109_c01274{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.md4_c01274{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01274{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m181_c01274{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);}
.mac_c01274{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m126_c01274{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m145_c01274{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01274{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.md3_c01274{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m21_c01274{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m23b_c01274{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m15d_c01274{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);}
.m58_c01274{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01274{transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.795000,0.000000,0.000000,0.250000,0,0);}
.m55_c01274{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m125_c01274{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1fd_c01274{transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01274{transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);}
.m239_c01274{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01274{transform:matrix(0.965000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.965000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.965000,0.000000,0.000000,0.250000,0,0);}
.m7b_c01274{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m148_c01274{transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);}
.m211_c01274{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m194_c01274{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m7e_c01274{transform:matrix(1.135000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.135000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.135000,0.000000,0.000000,0.250000,0,0);}
.m213_c01274{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m79_c01274{transform:matrix(1.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.287500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01274{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m50_c01274{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m142_c01274{transform:matrix(1.562500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.562500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.562500,0.000000,0.000000,0.250000,0,0);}
.m1fe_c01274{transform:matrix(1.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.640000,0.000000,0.000000,0.250000,0,0);}
.m15e_c01274{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m1eb_c01274{transform:matrix(2.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.142500,0.000000,0.000000,0.250000,0,0);}
.m78_c01274{transform:matrix(2.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.377500,0.000000,0.000000,0.250000,0,0);}
.m182_c01274{transform:matrix(2.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.447500,0.000000,0.000000,0.250000,0,0);}
.m5_c01274{transform:matrix(4.110000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.110000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.110000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01274{transform:matrix(4.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.727500,0.000000,0.000000,0.250000,0,0);}
.m203_c01274{transform:matrix(5.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.245000,0.000000,0.000000,0.250000,0,0);}
.m25_c01274{transform:matrix(5.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.325000,0.000000,0.000000,0.250000,0,0);}
.m6_c01274{transform:matrix(7.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.285000,0.000000,0.000000,0.250000,0,0);}
.m17b_c01274{transform:matrix(7.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.487500,0.000000,0.000000,0.250000,0,0);}
.v3_c01274{vertical-align:-6.960000px;}
.v1_c01274{vertical-align:-3.420000px;}
.v0_c01274{vertical-align:0.000000px;}
.v4_c01274{vertical-align:3.420000px;}
.v2_c01274{vertical-align:13.860000px;}
.ls4_c01274{letter-spacing:0.000000px;}
.ls1_c01274{letter-spacing:15.273480px;}
.ls2_c01274{letter-spacing:20.231400px;}
.ls3_c01274{letter-spacing:39.106740px;}
.ls0_c01274{letter-spacing:89.042688px;}
.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:-42.325800px;}
.ws1_c01274{word-spacing:-16.971840px;}
.ws3_c01274{word-spacing:0.000000px;}
.ws2_c01274{word-spacing:2.138880px;}
._0_c01274{width:7.988400px;}
.fc0_c01274{color:transparent;}
.fs8_c01274{font-size:3.456000px;}
.fs0_c01274{font-size:6.000000px;}
.fs16_c01274{font-size:6.900000px;}
.fs2_c01274{font-size:10.380000px;}
.fs5_c01274{font-size:13.800000px;}
.fs1_c01274{font-size:17.280000px;}
.fs1e_c01274{font-size:20.760000px;}
.fs18_c01274{font-size:24.180000px;}
.fs15_c01274{font-size:27.660000px;}
.fs4_c01274{font-size:31.080000px;}
.fs14_c01274{font-size:34.560000px;}
.fs1d_c01274{font-size:38.040000px;}
.fse_c01274{font-size:41.460000px;}
.fs17_c01274{font-size:44.940000px;}
.fs1c_c01274{font-size:48.360000px;}
.fs1b_c01274{font-size:51.840000px;}
.fs19_c01274{font-size:55.320000px;}
.fs6_c01274{font-size:58.740000px;}
.fs3_c01274{font-size:62.220000px;}
.fsc_c01274{font-size:65.640000px;}
.fsa_c01274{font-size:69.120000px;}
.fsd_c01274{font-size:72.600000px;}
.fs9_c01274{font-size:76.020000px;}
.fs11_c01274{font-size:79.500000px;}
.fs10_c01274{font-size:82.920000px;}
.fs1f_c01274{font-size:86.400000px;}
.fs7_c01274{font-size:89.880000px;}
.fs20_c01274{font-size:93.300000px;}
.fs1a_c01274{font-size:96.780000px;}
.fs13_c01274{font-size:100.200000px;}
.fs21_c01274{font-size:103.680000px;}
.fsf_c01274{font-size:107.160000px;}
.fsb_c01274{font-size:110.580000px;}
.fs22_c01274{font-size:114.060000px;}
.fs12_c01274{font-size:120.960000px;}
.y0_c01274{bottom:0.000000px;}
.y1fc_c01274{bottom:196.125000px;}
.y1ff_c01274{bottom:197.850000px;}
.y1fd_c01274{bottom:198.720000px;}
.y200_c01274{bottom:200.445000px;}
.y1fb_c01274{bottom:201.315000px;}
.y1fa_c01274{bottom:209.085000px;}
.y1fe_c01274{bottom:213.405000px;}
.y1f8_c01274{bottom:220.320000px;}
.y1f3_c01274{bottom:221.190000px;}
.y1f4_c01274{bottom:222.045000px;}
.y1f7_c01274{bottom:223.770000px;}
.y1f6_c01274{bottom:226.365000px;}
.y1f5_c01274{bottom:227.235000px;}
.y1f9_c01274{bottom:235.005000px;}
.y1f0_c01274{bottom:240.195000px;}
.y1ed_c01274{bottom:241.050000px;}
.y1ee_c01274{bottom:241.920000px;}
.y1ec_c01274{bottom:242.790000px;}
.y1ea_c01274{bottom:244.515000px;}
.y1e9_c01274{bottom:245.370000px;}
.y1f2_c01274{bottom:246.240000px;}
.y1f1_c01274{bottom:247.110000px;}
.y1ef_c01274{bottom:247.965000px;}
.y1e8_c01274{bottom:251.430000px;}
.y1e1_c01274{bottom:254.010000px;}
.y1eb_c01274{bottom:258.330000px;}
.y1e7_c01274{bottom:259.200000px;}
.y1e2_c01274{bottom:260.925000px;}
.y1e5_c01274{bottom:261.795000px;}
.y1e6_c01274{bottom:262.650000px;}
.y1e0_c01274{bottom:264.390000px;}
.y1e3_c01274{bottom:265.245000px;}
.y1e4_c01274{bottom:266.115000px;}
.y1dd_c01274{bottom:280.800000px;}
.y1de_c01274{bottom:281.670000px;}
.y1d6_c01274{bottom:282.525000px;}
.y1da_c01274{bottom:283.395000px;}
.y1d7_c01274{bottom:284.250000px;}
.y1d8_c01274{bottom:285.120000px;}
.y1d5_c01274{bottom:286.845000px;}
.y1db_c01274{bottom:288.570000px;}
.y1df_c01274{bottom:289.440000px;}
.y1dc_c01274{bottom:291.165000px;}
.y1d9_c01274{bottom:292.035000px;}
.y1cc_c01274{bottom:294.630000px;}
.y1cb_c01274{bottom:295.485000px;}
.y1d0_c01274{bottom:296.355000px;}
.y1ce_c01274{bottom:297.210000px;}
.y1d4_c01274{bottom:298.080000px;}
.y1d3_c01274{bottom:298.950000px;}
.y1cd_c01274{bottom:299.805000px;}
.y1cf_c01274{bottom:303.270000px;}
.y1d1_c01274{bottom:304.125000px;}
.y1ca_c01274{bottom:304.995000px;}
.y1d2_c01274{bottom:309.315000px;}
.y1c9_c01274{bottom:312.765000px;}
.y1c8_c01274{bottom:324.000000px;}
.y1c5_c01274{bottom:326.595000px;}
.y1c4_c01274{bottom:327.450000px;}
.y1c7_c01274{bottom:328.320000px;}
.y1c6_c01274{bottom:330.045000px;}
.y1c2_c01274{bottom:338.685000px;}
.y1c1_c01274{bottom:339.555000px;}
.y1c3_c01274{bottom:340.410000px;}
.y1bb_c01274{bottom:343.875000px;}
.y1bc_c01274{bottom:347.325000px;}
.y1bd_c01274{bottom:349.050000px;}
.y1be_c01274{bottom:349.920000px;}
.y1c0_c01274{bottom:354.240000px;}
.y1bf_c01274{bottom:359.430000px;}
.y1b7_c01274{bottom:362.010000px;}
.y1b6_c01274{bottom:362.880000px;}
.y1b5_c01274{bottom:363.750000px;}
.y1b8_c01274{bottom:364.605000px;}
.y1ba_c01274{bottom:368.070000px;}
.y1b9_c01274{bottom:369.795000px;}
.y1b4_c01274{bottom:378.435000px;}
.y1aa_c01274{bottom:382.755000px;}
.y1ae_c01274{bottom:383.610000px;}
.y1b1_c01274{bottom:384.480000px;}
.y1af_c01274{bottom:385.350000px;}
.y1b2_c01274{bottom:386.205000px;}
.y1ab_c01274{bottom:387.075000px;}
.y1ad_c01274{bottom:387.930000px;}
.y1ac_c01274{bottom:392.250000px;}
.y1b3_c01274{bottom:393.120000px;}
.y1b0_c01274{bottom:398.310000px;}
.y1a4_c01274{bottom:406.080000px;}
.y1a5_c01274{bottom:407.805000px;}
.y1a6_c01274{bottom:409.530000px;}
.y1a8_c01274{bottom:410.400000px;}
.y1a3_c01274{bottom:411.270000px;}
.y1a9_c01274{bottom:416.445000px;}
.y1a7_c01274{bottom:420.765000px;}
.y19d_c01274{bottom:424.230000px;}
.y1a2_c01274{bottom:425.085000px;}
.y1a1_c01274{bottom:425.955000px;}
.y19f_c01274{bottom:428.550000px;}
.y19e_c01274{bottom:431.130000px;}
.y1a0_c01274{bottom:432.870000px;}
.y19a_c01274{bottom:446.685000px;}
.y197_c01274{bottom:447.555000px;}
.y198_c01274{bottom:448.410000px;}
.y19b_c01274{bottom:450.150000px;}
.y199_c01274{bottom:451.005000px;}
.y196_c01274{bottom:452.730000px;}
.y19c_c01274{bottom:458.790000px;}
.y18f_c01274{bottom:466.560000px;}
.y190_c01274{bottom:467.430000px;}
.y191_c01274{bottom:468.285000px;}
.y18e_c01274{bottom:469.155000px;}
.y192_c01274{bottom:470.010000px;}
.y193_c01274{bottom:472.605000px;}
.y194_c01274{bottom:474.330000px;}
.y195_c01274{bottom:485.565000px;}
.y18a_c01274{bottom:487.290000px;}
.y18b_c01274{bottom:492.480000px;}
.y18d_c01274{bottom:494.205000px;}
.y18c_c01274{bottom:495.075000px;}
.y187_c01274{bottom:503.715000px;}
.y185_c01274{bottom:504.570000px;}
.y186_c01274{bottom:505.440000px;}
.y183_c01274{bottom:506.310000px;}
.y184_c01274{bottom:510.630000px;}
.y188_c01274{bottom:513.210000px;}
.y189_c01274{bottom:518.400000px;}
.y17c_c01274{bottom:527.910000px;}
.y17d_c01274{bottom:528.765000px;}
.y179_c01274{bottom:529.635000px;}
.y17b_c01274{bottom:530.490000px;}
.y17e_c01274{bottom:531.360000px;}
.y17a_c01274{bottom:532.230000px;}
.y180_c01274{bottom:533.085000px;}
.y182_c01274{bottom:533.955000px;}
.y181_c01274{bottom:534.810000px;}
.y17f_c01274{bottom:543.450000px;}
.y178_c01274{bottom:548.640000px;}
.y170_c01274{bottom:549.510000px;}
.y172_c01274{bottom:550.365000px;}
.y171_c01274{bottom:552.090000px;}
.y176_c01274{bottom:552.960000px;}
.y177_c01274{bottom:553.830000px;}
.y173_c01274{bottom:554.685000px;}
.y16e_c01274{bottom:555.555000px;}
.y174_c01274{bottom:556.410000px;}
.y16f_c01274{bottom:558.150000px;}
.y175_c01274{bottom:559.005000px;}
.y16d_c01274{bottom:568.515000px;}
.y166_c01274{bottom:569.370000px;}
.y16b_c01274{bottom:570.240000px;}
.y167_c01274{bottom:571.110000px;}
.y16a_c01274{bottom:571.965000px;}
.y16c_c01274{bottom:572.835000px;}
.y165_c01274{bottom:573.690000px;}
.y168_c01274{bottom:574.560000px;}
.y164_c01274{bottom:575.430000px;}
.y169_c01274{bottom:584.070000px;}
.y15d_c01274{bottom:586.650000px;}
.y163_c01274{bottom:588.390000px;}
.y162_c01274{bottom:589.245000px;}
.y15f_c01274{bottom:590.115000px;}
.y15e_c01274{bottom:590.970000px;}
.y161_c01274{bottom:594.435000px;}
.y160_c01274{bottom:608.250000px;}
.y153_c01274{bottom:609.120000px;}
.y158_c01274{bottom:609.990000px;}
.y157_c01274{bottom:610.845000px;}
.y15a_c01274{bottom:612.570000px;}
.y154_c01274{bottom:613.440000px;}
.y159_c01274{bottom:614.310000px;}
.y15b_c01274{bottom:618.630000px;}
.y15c_c01274{bottom:620.355000px;}
.y156_c01274{bottom:622.950000px;}
.y155_c01274{bottom:624.675000px;}
.y14e_c01274{bottom:629.850000px;}
.y150_c01274{bottom:632.445000px;}
.y14f_c01274{bottom:633.315000px;}
.y151_c01274{bottom:634.170000px;}
.y152_c01274{bottom:635.910000px;}
.y14b_c01274{bottom:649.725000px;}
.y147_c01274{bottom:650.595000px;}
.y14a_c01274{bottom:651.450000px;}
.y14d_c01274{bottom:652.320000px;}
.y148_c01274{bottom:653.190000px;}
.y14c_c01274{bottom:654.045000px;}
.y149_c01274{bottom:655.770000px;}
.y142_c01274{bottom:668.730000px;}
.y146_c01274{bottom:669.600000px;}
.y144_c01274{bottom:670.470000px;}
.y13f_c01274{bottom:671.325000px;}
.y13e_c01274{bottom:672.195000px;}
.y20e_c01274{bottom:673.050000px;}
.y13d_c01274{bottom:673.920000px;}
.y143_c01274{bottom:674.790000px;}
.y141_c01274{bottom:675.645000px;}
.y140_c01274{bottom:676.515000px;}
.y145_c01274{bottom:679.110000px;}
.y13a_c01274{bottom:687.750000px;}
.y134_c01274{bottom:688.605000px;}
.y137_c01274{bottom:689.475000px;}
.y135_c01274{bottom:690.330000px;}
.y131_c01274{bottom:691.200000px;}
.y138_c01274{bottom:692.070000px;}
.y139_c01274{bottom:694.650000px;}
.y133_c01274{bottom:695.520000px;}
.y136_c01274{bottom:697.245000px;}
.y132_c01274{bottom:698.115000px;}
.y13c_c01274{bottom:707.610000px;}
.y13b_c01274{bottom:709.350000px;}
.y12f_c01274{bottom:710.205000px;}
.y12c_c01274{bottom:711.075000px;}
.y127_c01274{bottom:711.930000px;}
.y128_c01274{bottom:712.800000px;}
.y12a_c01274{bottom:713.670000px;}
.y12d_c01274{bottom:714.525000px;}
.y130_c01274{bottom:715.395000px;}
.y129_c01274{bottom:716.250000px;}
.y126_c01274{bottom:717.990000px;}
.y12e_c01274{bottom:724.890000px;}
.y12b_c01274{bottom:726.630000px;}
.y123_c01274{bottom:729.210000px;}
.y121_c01274{bottom:730.080000px;}
.y122_c01274{bottom:730.950000px;}
.y125_c01274{bottom:731.805000px;}
.y124_c01274{bottom:736.125000px;}
.y120_c01274{bottom:751.680000px;}
.y11c_c01274{bottom:752.550000px;}
.y11e_c01274{bottom:753.405000px;}
.y11d_c01274{bottom:754.275000px;}
.y11b_c01274{bottom:756.000000px;}
.y119_c01274{bottom:756.870000px;}
.y11f_c01274{bottom:757.725000px;}
.y118_c01274{bottom:762.915000px;}
.y11a_c01274{bottom:763.770000px;}
.y117_c01274{bottom:764.640000px;}
.y116_c01274{bottom:765.510000px;}
.y114_c01274{bottom:766.365000px;}
.y115_c01274{bottom:767.235000px;}
.y10d_c01274{bottom:768.090000px;}
.y10e_c01274{bottom:770.685000px;}
.y113_c01274{bottom:771.555000px;}
.y111_c01274{bottom:772.410000px;}
.y110_c01274{bottom:773.280000px;}
.y10f_c01274{bottom:774.150000px;}
.y10c_c01274{bottom:775.005000px;}
.y108_c01274{bottom:776.730000px;}
.y109_c01274{bottom:777.600000px;}
.y112_c01274{bottom:778.470000px;}
.y100_c01274{bottom:779.325000px;}
.yff_c01274{bottom:781.920000px;}
.y105_c01274{bottom:782.790000px;}
.y102_c01274{bottom:783.645000px;}
.y106_c01274{bottom:784.515000px;}
.y104_c01274{bottom:785.370000px;}
.y101_c01274{bottom:786.240000px;}
.y103_c01274{bottom:787.110000px;}
.y107_c01274{bottom:787.965000px;}
.y10b_c01274{bottom:789.690000px;}
.y10a_c01274{bottom:793.155000px;}
.yfa_c01274{bottom:794.010000px;}
.yfb_c01274{bottom:796.605000px;}
.yfc_c01274{bottom:797.475000px;}
.yfe_c01274{bottom:798.330000px;}
.yfd_c01274{bottom:799.200000px;}
.yf6_c01274{bottom:812.160000px;}
.yf7_c01274{bottom:813.030000px;}
.yf9_c01274{bottom:815.610000px;}
.yf8_c01274{bottom:818.205000px;}
.yef_c01274{bottom:830.310000px;}
.yee_c01274{bottom:831.165000px;}
.yf4_c01274{bottom:832.035000px;}
.yf0_c01274{bottom:834.630000px;}
.yf2_c01274{bottom:836.355000px;}
.yf3_c01274{bottom:837.210000px;}
.yf1_c01274{bottom:838.080000px;}
.yf5_c01274{bottom:848.445000px;}
.ye9_c01274{bottom:851.910000px;}
.yeb_c01274{bottom:852.765000px;}
.ye8_c01274{bottom:853.635000px;}
.yea_c01274{bottom:854.490000px;}
.yed_c01274{bottom:857.955000px;}
.yec_c01274{bottom:858.810000px;}
.ye6_c01274{bottom:871.770000px;}
.ye5_c01274{bottom:872.640000px;}
.ye1_c01274{bottom:873.510000px;}
.ye7_c01274{bottom:874.365000px;}
.ye3_c01274{bottom:875.235000px;}
.ye0_c01274{bottom:876.960000px;}
.ye2_c01274{bottom:877.830000px;}
.ye4_c01274{bottom:878.685000px;}
.y20a_c01274{bottom:880.410000px;}
.y209_c01274{bottom:883.005000px;}
.yd8_c01274{bottom:891.645000px;}
.yd9_c01274{bottom:892.515000px;}
.yda_c01274{bottom:893.370000px;}
.ydd_c01274{bottom:894.240000px;}
.yd7_c01274{bottom:895.110000px;}
.ydc_c01274{bottom:895.965000px;}
.ydb_c01274{bottom:898.560000px;}
.yde_c01274{bottom:902.010000px;}
.ydf_c01274{bottom:906.330000px;}
.ycf_c01274{bottom:912.390000px;}
.yd3_c01274{bottom:913.245000px;}
.yd2_c01274{bottom:914.115000px;}
.yd5_c01274{bottom:914.970000px;}
.yd4_c01274{bottom:915.840000px;}
.yce_c01274{bottom:916.710000px;}
.yd1_c01274{bottom:917.565000px;}
.yd0_c01274{bottom:918.435000px;}
.yd6_c01274{bottom:927.075000px;}
.y20c_c01274{bottom:928.800000px;}
.y20d_c01274{bottom:929.670000px;}
.yc7_c01274{bottom:932.250000px;}
.yc9_c01274{bottom:933.990000px;}
.ycb_c01274{bottom:934.845000px;}
.yca_c01274{bottom:937.440000px;}
.yc8_c01274{bottom:938.310000px;}
.ycc_c01274{bottom:939.165000px;}
.ycd_c01274{bottom:940.035000px;}
.yc2_c01274{bottom:952.995000px;}
.yc4_c01274{bottom:954.720000px;}
.yc5_c01274{bottom:957.315000px;}
.yc3_c01274{bottom:959.040000px;}
.yc6_c01274{bottom:961.635000px;}
.ybb_c01274{bottom:972.870000px;}
.yc0_c01274{bottom:973.725000px;}
.ybc_c01274{bottom:974.595000px;}
.yba_c01274{bottom:975.450000px;}
.ybd_c01274{bottom:976.320000px;}
.ybe_c01274{bottom:978.915000px;}
.ybf_c01274{bottom:979.770000px;}
.yc1_c01274{bottom:991.005000px;}
.yb6_c01274{bottom:992.730000px;}
.yb8_c01274{bottom:993.600000px;}
.yb7_c01274{bottom:995.325000px;}
.yb9_c01274{bottom:999.645000px;}
.yac_c01274{bottom:1012.605000px;}
.yad_c01274{bottom:1013.475000px;}
.yb5_c01274{bottom:1015.200000px;}
.yb3_c01274{bottom:1016.070000px;}
.yae_c01274{bottom:1016.925000px;}
.yb4_c01274{bottom:1019.520000px;}
.yb2_c01274{bottom:1020.390000px;}
.yb1_c01274{bottom:1022.970000px;}
.yb0_c01274{bottom:1024.710000px;}
.yaf_c01274{bottom:1029.885000px;}
.ya8_c01274{bottom:1033.350000px;}
.yaa_c01274{bottom:1034.205000px;}
.ya9_c01274{bottom:1035.930000px;}
.ya5_c01274{bottom:1037.670000px;}
.ya6_c01274{bottom:1038.525000px;}
.ya7_c01274{bottom:1039.395000px;}
.yab_c01274{bottom:1040.250000px;}
.ya4_c01274{bottom:1051.485000px;}
.ya0_c01274{bottom:1054.080000px;}
.y9f_c01274{bottom:1054.950000px;}
.ya2_c01274{bottom:1055.805000px;}
.ya1_c01274{bottom:1056.675000px;}
.y9c_c01274{bottom:1057.530000px;}
.y9e_c01274{bottom:1058.400000px;}
.y9d_c01274{bottom:1059.270000px;}
.ya3_c01274{bottom:1060.995000px;}
.y95_c01274{bottom:1073.955000px;}
.y99_c01274{bottom:1075.680000px;}
.y97_c01274{bottom:1076.550000px;}
.y9a_c01274{bottom:1077.405000px;}
.y96_c01274{bottom:1078.275000px;}
.y9b_c01274{bottom:1081.725000px;}
.y98_c01274{bottom:1083.450000px;}
.y93_c01274{bottom:1089.510000px;}
.y94_c01274{bottom:1092.090000px;}
.y8e_c01274{bottom:1094.685000px;}
.y8d_c01274{bottom:1095.555000px;}
.y92_c01274{bottom:1096.410000px;}
.y8f_c01274{bottom:1097.280000px;}
.y91_c01274{bottom:1099.875000px;}
.y90_c01274{bottom:1100.730000px;}
.y8c_c01274{bottom:1107.645000px;}
.y84_c01274{bottom:1113.690000px;}
.y85_c01274{bottom:1115.430000px;}
.y8b_c01274{bottom:1116.285000px;}
.y8a_c01274{bottom:1117.155000px;}
.y86_c01274{bottom:1118.880000px;}
.y89_c01274{bottom:1119.750000px;}
.y87_c01274{bottom:1120.605000px;}
.y88_c01274{bottom:1121.475000px;}
.y7e_c01274{bottom:1134.435000px;}
.y7d_c01274{bottom:1135.290000px;}
.y81_c01274{bottom:1136.160000px;}
.y7f_c01274{bottom:1137.030000px;}
.y80_c01274{bottom:1138.755000px;}
.y82_c01274{bottom:1139.610000px;}
.y83_c01274{bottom:1142.205000px;}
.y77_c01274{bottom:1155.165000px;}
.y7c_c01274{bottom:1156.035000px;}
.y79_c01274{bottom:1156.890000px;}
.y78_c01274{bottom:1157.760000px;}
.y7b_c01274{bottom:1161.210000px;}
.y7a_c01274{bottom:1162.080000px;}
.y76_c01274{bottom:1165.530000px;}
.y72_c01274{bottom:1175.040000px;}
.y71_c01274{bottom:1175.910000px;}
.y73_c01274{bottom:1176.765000px;}
.y75_c01274{bottom:1178.490000px;}
.y74_c01274{bottom:1179.360000px;}
.y208_c01274{bottom:1187.130000px;}
.y6a_c01274{bottom:1194.915000px;}
.y6c_c01274{bottom:1195.770000px;}
.y69_c01274{bottom:1196.640000px;}
.y6d_c01274{bottom:1197.510000px;}
.y6b_c01274{bottom:1198.365000px;}
.y68_c01274{bottom:1199.235000px;}
.y6f_c01274{bottom:1200.090000px;}
.y6e_c01274{bottom:1203.555000px;}
.y70_c01274{bottom:1204.410000px;}
.y206_c01274{bottom:1207.005000px;}
.y207_c01274{bottom:1209.600000px;}
.y205_c01274{bottom:1214.790000px;}
.y60_c01274{bottom:1217.370000px;}
.y62_c01274{bottom:1218.240000px;}
.y64_c01274{bottom:1219.110000px;}
.y63_c01274{bottom:1219.965000px;}
.y61_c01274{bottom:1220.835000px;}
.y66_c01274{bottom:1222.560000px;}
.y65_c01274{bottom:1223.430000px;}
.y67_c01274{bottom:1230.330000px;}
.y204_c01274{bottom:1231.200000px;}
.y203_c01274{bottom:1232.925000px;}
.y5a_c01274{bottom:1236.390000px;}
.y5c_c01274{bottom:1237.245000px;}
.y5b_c01274{bottom:1238.115000px;}
.y5d_c01274{bottom:1238.970000px;}
.y5f_c01274{bottom:1240.710000px;}
.y59_c01274{bottom:1241.565000px;}
.y55_c01274{bottom:1242.435000px;}
.y5e_c01274{bottom:1243.290000px;}
.y202_c01274{bottom:1246.755000px;}
.y52_c01274{bottom:1247.610000px;}
.y57_c01274{bottom:1248.480000px;}
.y58_c01274{bottom:1249.350000px;}
.y51_c01274{bottom:1250.205000px;}
.y4e_c01274{bottom:1251.075000px;}
.y56_c01274{bottom:1251.930000px;}
.y54_c01274{bottom:1252.800000px;}
.y50_c01274{bottom:1253.670000px;}
.y53_c01274{bottom:1254.525000px;}
.y4f_c01274{bottom:1255.395000px;}
.y49_c01274{bottom:1257.120000px;}
.y47_c01274{bottom:1257.990000px;}
.y4d_c01274{bottom:1258.845000px;}
.y4a_c01274{bottom:1260.570000px;}
.y4c_c01274{bottom:1261.440000px;}
.y48_c01274{bottom:1262.310000px;}
.y4b_c01274{bottom:1264.035000px;}
.y42_c01274{bottom:1277.850000px;}
.y45_c01274{bottom:1278.720000px;}
.y41_c01274{bottom:1279.590000px;}
.y44_c01274{bottom:1280.445000px;}
.y40_c01274{bottom:1281.315000px;}
.y46_c01274{bottom:1282.170000px;}
.y43_c01274{bottom:1283.040000px;}
.y3b_c01274{bottom:1284.765000px;}
.y39_c01274{bottom:1288.230000px;}
.y38_c01274{bottom:1289.955000px;}
.y3a_c01274{bottom:1290.810000px;}
.y37_c01274{bottom:1291.680000px;}
.y3e_c01274{bottom:1292.550000px;}
.y3d_c01274{bottom:1293.405000px;}
.y3f_c01274{bottom:1294.275000px;}
.y3c_c01274{bottom:1296.000000px;}
.y2f_c01274{bottom:1296.870000px;}
.y2e_c01274{bottom:1297.725000px;}
.y31_c01274{bottom:1298.595000px;}
.y201_c01274{bottom:1299.450000px;}
.y36_c01274{bottom:1300.320000px;}
.y33_c01274{bottom:1301.190000px;}
.y32_c01274{bottom:1302.045000px;}
.y2d_c01274{bottom:1302.915000px;}
.y35_c01274{bottom:1305.510000px;}
.y34_c01274{bottom:1306.365000px;}
.y30_c01274{bottom:1310.685000px;}
.y28_c01274{bottom:1317.600000px;}
.y26_c01274{bottom:1319.325000px;}
.y2a_c01274{bottom:1320.195000px;}
.y2b_c01274{bottom:1321.050000px;}
.y2c_c01274{bottom:1321.920000px;}
.y29_c01274{bottom:1322.790000px;}
.y27_c01274{bottom:1323.645000px;}
.y1e_c01274{bottom:1338.330000px;}
.y1b_c01274{bottom:1340.925000px;}
.y22_c01274{bottom:1341.795000px;}
.y23_c01274{bottom:1342.650000px;}
.y1c_c01274{bottom:1343.520000px;}
.y20_c01274{bottom:1344.390000px;}
.y21_c01274{bottom:1346.115000px;}
.y1f_c01274{bottom:1346.970000px;}
.y25_c01274{bottom:1350.435000px;}
.y1d_c01274{bottom:1352.160000px;}
.y24_c01274{bottom:1353.030000px;}
.y1a_c01274{bottom:1360.800000px;}
.y16_c01274{bottom:1364.250000px;}
.y15_c01274{bottom:1365.120000px;}
.y18_c01274{bottom:1365.990000px;}
.y20b_c01274{bottom:1366.845000px;}
.y19_c01274{bottom:1367.715000px;}
.yf_c01274{bottom:1368.570000px;}
.y17_c01274{bottom:1369.440000px;}
.ya_c01274{bottom:1370.310000px;}
.y10_c01274{bottom:1371.165000px;}
.yc_c01274{bottom:1372.035000px;}
.y12_c01274{bottom:1372.890000px;}
.yb_c01274{bottom:1374.630000px;}
.y14_c01274{bottom:1376.355000px;}
.y11_c01274{bottom:1378.080000px;}
.ye_c01274{bottom:1379.805000px;}
.y13_c01274{bottom:1380.675000px;}
.y6_c01274{bottom:1389.315000px;}
.y5_c01274{bottom:1391.910000px;}
.yd_c01274{bottom:1392.765000px;}
.y4_c01274{bottom:1395.360000px;}
.y8_c01274{bottom:1397.085000px;}
.y9_c01274{bottom:1400.550000px;}
.y7_c01274{bottom:1404.870000px;}
.y2_c01274{bottom:1409.190000px;}
.y3_c01274{bottom:1412.640000px;}
.y1_c01274{bottom:1413.510000px;}
.ha_c01274{height:3.110063px;}
.h2_c01274{height:5.399414px;}
.h18_c01274{height:6.209326px;}
.h4_c01274{height:9.340986px;}
.h7_c01274{height:12.418652px;}
.h26_c01274{height:12.820986px;}
.h3_c01274{height:15.550313px;}
.h20_c01274{height:18.681973px;}
.h1a_c01274{height:21.759639px;}
.h17_c01274{height:24.891299px;}
.h6_c01274{height:27.968965px;}
.h16_c01274{height:31.100625px;}
.h1f_c01274{height:34.232285px;}
.h10_c01274{height:37.309951px;}
.h19_c01274{height:40.441611px;}
.h1e_c01274{height:43.519277px;}
.h1d_c01274{height:46.650937px;}
.h1b_c01274{height:49.782598px;}
.h8_c01274{height:52.860264px;}
.h5_c01274{height:55.991924px;}
.h24_c01274{height:58.721250px;}
.he_c01274{height:59.069590px;}
.hc_c01274{height:62.201250px;}
.hf_c01274{height:65.332910px;}
.hb_c01274{height:68.410576px;}
.h13_c01274{height:71.542236px;}
.h12_c01274{height:74.619902px;}
.h21_c01274{height:77.751563px;}
.h9_c01274{height:80.883223px;}
.h22_c01274{height:83.960889px;}
.h1c_c01274{height:87.092549px;}
.h15_c01274{height:90.170215px;}
.h23_c01274{height:93.301875px;}
.h11_c01274{height:96.433535px;}
.hd_c01274{height:99.511201px;}
.h25_c01274{height:102.642861px;}
.h14_c01274{height:108.852188px;}
.h1_c01274{height:1518.750000px;}
.h0_c01274{height:1518.915000px;}
.w0_c01274{width:1085.190000px;}
.w1_c01274{width:1085.250000px;}
.x0_c01274{left:0.000000px;}
.x12c_c01274{left:114.915000px;}
.x12d_c01274{left:126.150000px;}
.x12f_c01274{left:133.920000px;}
.x12e_c01274{left:138.240000px;}
.x130_c01274{left:146.880000px;}
.xf7_c01274{left:148.605000px;}
.x100_c01274{left:151.200000px;}
.xf8_c01274{left:154.650000px;}
.x131_c01274{left:158.970000px;}
.x132_c01274{left:166.755000px;}
.x12b_c01274{left:168.480000px;}
.xfd_c01274{left:171.930000px;}
.xf9_c01274{left:174.525000px;}
.xfa_c01274{left:179.715000px;}
.x57_c01274{left:181.440000px;}
.xa5_c01274{left:183.165000px;}
.x3_c01274{left:186.630000px;}
.x58_c01274{left:192.675000px;}
.x101_c01274{left:194.400000px;}
.x4_c01274{left:196.995000px;}
.x59_c01274{left:200.445000px;}
.x89_c01274{left:203.910000px;}
.x114_c01274{left:209.955000px;}
.xa9_c01274{left:211.680000px;}
.x126_c01274{left:213.405000px;}
.x9c_c01274{left:216.870000px;}
.x7f_c01274{left:218.595000px;}
.xf1_c01274{left:220.320000px;}
.x95_c01274{left:222.915000px;}
.x76_c01274{left:224.640000px;}
.x61_c01274{left:226.365000px;}
.x9_c01274{left:228.090000px;}
.x3a_c01274{left:229.830000px;}
.xa6_c01274{left:232.410000px;}
.xfb_c01274{left:235.875000px;}
.xa_c01274{left:239.325000px;}
.xa7_c01274{left:241.050000px;}
.xb7_c01274{left:246.240000px;}
.xb_c01274{left:249.690000px;}
.x116_c01274{left:251.430000px;}
.xe2_c01274{left:253.155000px;}
.x119_c01274{left:255.750000px;}
.x8a_c01274{left:257.475000px;}
.x10c_c01274{left:259.200000px;}
.xbd_c01274{left:260.925000px;}
.x2b_c01274{left:262.650000px;}
.x12a_c01274{left:264.390000px;}
.x6a_c01274{left:267.840000px;}
.xc_c01274{left:269.565000px;}
.x5a_c01274{left:272.160000px;}
.xd_c01274{left:274.755000px;}
.x6b_c01274{left:276.480000px;}
.x77_c01274{left:279.930000px;}
.xb8_c01274{left:282.525000px;}
.x90_c01274{left:285.990000px;}
.x3b_c01274{left:291.165000px;}
.x120_c01274{left:293.760000px;}
.xeb_c01274{left:295.485000px;}
.x111_c01274{left:297.210000px;}
.xc3_c01274{left:298.950000px;}
.x6c_c01274{left:300.675000px;}
.x11b_c01274{left:302.400000px;}
.xd3_c01274{left:304.995000px;}
.x42_c01274{left:308.445000px;}
.xc8_c01274{left:311.040000px;}
.xbe_c01274{left:312.765000px;}
.xe_c01274{left:315.360000px;}
.x9d_c01274{left:318.810000px;}
.xce_c01274{left:321.405000px;}
.x20_c01274{left:323.130000px;}
.xe6_c01274{left:324.870000px;}
.xf2_c01274{left:328.320000px;}
.x3c_c01274{left:330.045000px;}
.x123_c01274{left:332.640000px;}
.x80_c01274{left:334.365000px;}
.xaa_c01274{left:336.090000px;}
.x2c_c01274{left:337.830000px;}
.x21_c01274{left:340.410000px;}
.x2d_c01274{left:345.600000px;}
.xb4_c01274{left:349.050000px;}
.xf_c01274{left:350.790000px;}
.xd1_c01274{left:352.515000px;}
.xa8_c01274{left:354.240000px;}
.x10_c01274{left:356.835000px;}
.xfe_c01274{left:358.560000px;}
.x11d_c01274{left:361.155000px;}
.x6d_c01274{left:363.750000px;}
.x8b_c01274{left:367.200000px;}
.x5b_c01274{left:370.650000px;}
.x9f_c01274{left:372.390000px;}
.x117_c01274{left:374.970000px;}
.x11_c01274{left:376.710000px;}
.xab_c01274{left:379.290000px;}
.x43_c01274{left:383.610000px;}
.x10d_c01274{left:385.350000px;}
.x128_c01274{left:387.075000px;}
.xd4_c01274{left:388.800000px;}
.x62_c01274{left:390.525000px;}
.x4b_c01274{left:393.120000px;}
.x12_c01274{left:397.440000px;}
.x6e_c01274{left:400.035000px;}
.xd5_c01274{left:402.630000px;}
.x96_c01274{left:405.210000px;}
.x10e_c01274{left:406.950000px;}
.xc9_c01274{left:408.675000px;}
.xd6_c01274{left:411.270000px;}
.x5_c01274{left:413.850000px;}
.xae_c01274{left:416.445000px;}
.x2e_c01274{left:419.040000px;}
.x3d_c01274{left:421.635000px;}
.x2f_c01274{left:423.360000px;}
.x86_c01274{left:425.955000px;}
.x5c_c01274{left:430.275000px;}
.x22_c01274{left:432.870000px;}
.x10f_c01274{left:434.595000px;}
.x13_c01274{left:436.320000px;}
.x112_c01274{left:438.915000px;}
.x30_c01274{left:441.510000px;}
.x63_c01274{left:444.960000px;}
.x97_c01274{left:446.685000px;}
.x4c_c01274{left:449.280000px;}
.x6_c01274{left:451.875000px;}
.x6f_c01274{left:453.600000px;}
.x14_c01274{left:456.195000px;}
.x81_c01274{left:457.920000px;}
.x5d_c01274{left:459.645000px;}
.x8c_c01274{left:462.240000px;}
.x125_c01274{left:464.835000px;}
.x4d_c01274{left:468.285000px;}
.x127_c01274{left:470.010000px;}
.x70_c01274{left:471.750000px;}
.xe7_c01274{left:473.475000px;}
.x44_c01274{left:475.200000px;}
.xa0_c01274{left:476.925000px;}
.x4e_c01274{left:479.520000px;}
.x11f_c01274{left:482.115000px;}
.xc1_c01274{left:483.840000px;}
.x23_c01274{left:486.435000px;}
.xb9_c01274{left:489.030000px;}
.x15_c01274{left:490.755000px;}
.xc6_c01274{left:494.205000px;}
.x109_c01274{left:496.800000px;}
.xec_c01274{left:498.525000px;}
.x4f_c01274{left:501.120000px;}
.x71_c01274{left:503.715000px;}
.x121_c01274{left:505.440000px;}
.xca_c01274{left:507.165000px;}
.x24_c01274{left:508.890000px;}
.x91_c01274{left:511.485000px;}
.x31_c01274{left:514.080000px;}
.x16_c01274{left:518.400000px;}
.xf3_c01274{left:524.445000px;}
.x122_c01274{left:527.040000px;}
.x17_c01274{left:529.635000px;}
.x113_c01274{left:531.360000px;}
.x10a_c01274{left:533.955000px;}
.xa1_c01274{left:536.550000px;}
.xd2_c01274{left:538.275000px;}
.x32_c01274{left:540.000000px;}
.x1_c01274{left:541.725000px;}
.xaf_c01274{left:543.450000px;}
.x45_c01274{left:545.190000px;}
.x98_c01274{left:547.770000px;}
.x64_c01274{left:549.510000px;}
.xff_c01274{left:552.090000px;}
.x82_c01274{left:553.830000px;}
.x25_c01274{left:556.410000px;}
.x5e_c01274{left:558.150000px;}
.x3e_c01274{left:559.875000px;}
.xe8_c01274{left:563.325000px;}
.xdd_c01274{left:565.050000px;}
.x18_c01274{left:568.515000px;}
.xe3_c01274{left:570.240000px;}
.xb0_c01274{left:575.430000px;}
.xc7_c01274{left:578.880000px;}
.xa2_c01274{left:581.475000px;}
.x129_c01274{left:585.795000px;}
.x19_c01274{left:589.245000px;}
.x33_c01274{left:591.840000px;}
.x83_c01274{left:596.160000px;}
.x7c_c01274{left:597.885000px;}
.xcb_c01274{left:599.610000px;}
.x8d_c01274{left:604.800000px;}
.xb1_c01274{left:606.525000px;}
.x26_c01274{left:609.120000px;}
.xb5_c01274{left:612.570000px;}
.x50_c01274{left:614.310000px;}
.xcf_c01274{left:616.890000px;}
.x92_c01274{left:619.485000px;}
.x78_c01274{left:622.080000px;}
.xde_c01274{left:623.805000px;}
.x1a_c01274{left:625.530000px;}
.x11a_c01274{left:630.720000px;}
.x72_c01274{left:632.445000px;}
.xbf_c01274{left:634.170000px;}
.xf4_c01274{left:635.910000px;}
.x8e_c01274{left:637.635000px;}
.x3f_c01274{left:639.360000px;}
.x65_c01274{left:641.085000px;}
.x34_c01274{left:643.680000px;}
.xd7_c01274{left:645.405000px;}
.x87_c01274{left:647.130000px;}
.xa3_c01274{left:649.725000px;}
.x11e_c01274{left:652.320000px;}
.x99_c01274{left:654.045000px;}
.x27_c01274{left:655.770000px;}
.x66_c01274{left:657.510000px;}
.xd8_c01274{left:659.235000px;}
.x1b_c01274{left:660.960000px;}
.xc0_c01274{left:663.555000px;}
.x51_c01274{left:665.280000px;}
.xed_c01274{left:667.875000px;}
.xb2_c01274{left:670.470000px;}
.xac_c01274{left:673.920000px;}
.x73_c01274{left:677.370000px;}
.xdf_c01274{left:679.965000px;}
.xe4_c01274{left:681.690000px;}
.x5f_c01274{left:684.285000px;}
.x1c_c01274{left:687.750000px;}
.x46_c01274{left:691.200000px;}
.x74_c01274{left:692.925000px;}
.x93_c01274{left:695.520000px;}
.x35_c01274{left:698.115000px;}
.x9a_c01274{left:700.710000px;}
.x28_c01274{left:702.435000px;}
.x52_c01274{left:705.030000px;}
.x103_c01274{left:706.755000px;}
.xba_c01274{left:708.480000px;}
.x9b_c01274{left:711.075000px;}
.x40_c01274{left:713.670000px;}
.xcc_c01274{left:717.120000px;}
.x2_c01274{left:719.715000px;}
.x7d_c01274{left:723.165000px;}
.x75_c01274{left:726.630000px;}
.x47_c01274{left:730.080000px;}
.x102_c01274{left:734.400000px;}
.x79_c01274{left:736.125000px;}
.xd9_c01274{left:738.720000px;}
.x67_c01274{left:743.040000px;}
.x94_c01274{left:744.765000px;}
.x88_c01274{left:746.490000px;}
.xc4_c01274{left:748.230000px;}
.xe0_c01274{left:750.810000px;}
.x7_c01274{left:752.550000px;}
.xda_c01274{left:754.275000px;}
.x1d_c01274{left:756.000000px;}
.xdb_c01274{left:757.725000px;}
.xe9_c01274{left:759.450000px;}
.xb3_c01274{left:762.045000px;}
.x107_c01274{left:763.770000px;}
.x53_c01274{left:765.510000px;}
.xd0_c01274{left:768.090000px;}
.xbb_c01274{left:770.685000px;}
.x7e_c01274{left:772.410000px;}
.x68_c01274{left:779.325000px;}
.x7a_c01274{left:781.050000px;}
.x36_c01274{left:782.790000px;}
.x1e_c01274{left:785.370000px;}
.x54_c01274{left:787.965000px;}
.x118_c01274{left:789.690000px;}
.x60_c01274{left:792.285000px;}
.xf5_c01274{left:794.010000px;}
.xb6_c01274{left:795.750000px;}
.xe1_c01274{left:798.330000px;}
.x41_c01274{left:800.070000px;}
.x104_c01274{left:804.390000px;}
.x55_c01274{left:806.115000px;}
.x7b_c01274{left:807.840000px;}
.x11c_c01274{left:809.565000px;}
.xa4_c01274{left:811.290000px;}
.x48_c01274{left:813.030000px;}
.xcd_c01274{left:814.755000px;}
.x69_c01274{left:817.350000px;}
.xea_c01274{left:819.075000px;}
.x8f_c01274{left:821.670000px;}
.x49_c01274{left:825.120000px;}
.xdc_c01274{left:826.845000px;}
.x29_c01274{left:828.570000px;}
.xc2_c01274{left:831.165000px;}
.x37_c01274{left:833.760000px;}
.x56_c01274{left:835.485000px;}
.x9e_c01274{left:838.080000px;}
.x2a_c01274{left:840.675000px;}
.x4a_c01274{left:842.400000px;}
.xe5_c01274{left:844.125000px;}
.x84_c01274{left:846.720000px;}
.x108_c01274{left:851.910000px;}
.x124_c01274{left:853.635000px;}
.xbc_c01274{left:855.360000px;}
.x105_c01274{left:857.955000px;}
.x10b_c01274{left:861.405000px;}
.xee_c01274{left:864.000000px;}
.xc5_c01274{left:865.725000px;}
.x85_c01274{left:868.320000px;}
.x1f_c01274{left:870.915000px;}
.xad_c01274{left:872.640000px;}
.x106_c01274{left:875.235000px;}
.x115_c01274{left:876.960000px;}
.x38_c01274{left:880.410000px;}
.x110_c01274{left:882.150000px;}
.xf6_c01274{left:885.600000px;}
.xef_c01274{left:891.645000px;}
.x13a_c01274{left:902.880000px;}
.x8_c01274{left:905.475000px;}
.x135_c01274{left:907.200000px;}
.x39_c01274{left:910.650000px;}
.xf0_c01274{left:915.840000px;}
.x136_c01274{left:934.845000px;}
.xfc_c01274{left:936.570000px;}
.x133_c01274{left:988.410000px;}
.x137_c01274{left:1039.395000px;}
.x138_c01274{left:1041.120000px;}
.x139_c01274{left:1056.675000px;}
.x134_c01274{left:1060.995000px;}
@media print{
.v3_c01274{vertical-align:-6.186667pt;}
.v1_c01274{vertical-align:-3.040000pt;}
.v0_c01274{vertical-align:0.000000pt;}
.v4_c01274{vertical-align:3.040000pt;}
.v2_c01274{vertical-align:12.320000pt;}
.ls4_c01274{letter-spacing:0.000000pt;}
.ls1_c01274{letter-spacing:13.576427pt;}
.ls2_c01274{letter-spacing:17.983467pt;}
.ls3_c01274{letter-spacing:34.761547pt;}
.ls0_c01274{letter-spacing:79.149056pt;}
.ws0_c01274{word-spacing:-37.622933pt;}
.ws1_c01274{word-spacing:-15.086080pt;}
.ws3_c01274{word-spacing:0.000000pt;}
.ws2_c01274{word-spacing:1.901227pt;}
._0_c01274{width:7.100800pt;}
.fs8_c01274{font-size:3.072000pt;}
.fs0_c01274{font-size:5.333333pt;}
.fs16_c01274{font-size:6.133333pt;}
.fs2_c01274{font-size:9.226667pt;}
.fs5_c01274{font-size:12.266667pt;}
.fs1_c01274{font-size:15.360000pt;}
.fs1e_c01274{font-size:18.453333pt;}
.fs18_c01274{font-size:21.493333pt;}
.fs15_c01274{font-size:24.586667pt;}
.fs4_c01274{font-size:27.626667pt;}
.fs14_c01274{font-size:30.720000pt;}
.fs1d_c01274{font-size:33.813333pt;}
.fse_c01274{font-size:36.853333pt;}
.fs17_c01274{font-size:39.946667pt;}
.fs1c_c01274{font-size:42.986667pt;}
.fs1b_c01274{font-size:46.080000pt;}
.fs19_c01274{font-size:49.173333pt;}
.fs6_c01274{font-size:52.213333pt;}
.fs3_c01274{font-size:55.306667pt;}
.fsc_c01274{font-size:58.346667pt;}
.fsa_c01274{font-size:61.440000pt;}
.fsd_c01274{font-size:64.533333pt;}
.fs9_c01274{font-size:67.573333pt;}
.fs11_c01274{font-size:70.666667pt;}
.fs10_c01274{font-size:73.706667pt;}
.fs1f_c01274{font-size:76.800000pt;}
.fs7_c01274{font-size:79.893333pt;}
.fs20_c01274{font-size:82.933333pt;}
.fs1a_c01274{font-size:86.026667pt;}
.fs13_c01274{font-size:89.066667pt;}
.fs21_c01274{font-size:92.160000pt;}
.fsf_c01274{font-size:95.253333pt;}
.fsb_c01274{font-size:98.293333pt;}
.fs22_c01274{font-size:101.386667pt;}
.fs12_c01274{font-size:107.520000pt;}
.y0_c01274{bottom:0.000000pt;}
.y1fc_c01274{bottom:174.333333pt;}
.y1ff_c01274{bottom:175.866667pt;}
.y1fd_c01274{bottom:176.640000pt;}
.y200_c01274{bottom:178.173333pt;}
.y1fb_c01274{bottom:178.946667pt;}
.y1fa_c01274{bottom:185.853333pt;}
.y1fe_c01274{bottom:189.693333pt;}
.y1f8_c01274{bottom:195.840000pt;}
.y1f3_c01274{bottom:196.613333pt;}
.y1f4_c01274{bottom:197.373333pt;}
.y1f7_c01274{bottom:198.906667pt;}
.y1f6_c01274{bottom:201.213333pt;}
.y1f5_c01274{bottom:201.986667pt;}
.y1f9_c01274{bottom:208.893333pt;}
.y1f0_c01274{bottom:213.506667pt;}
.y1ed_c01274{bottom:214.266667pt;}
.y1ee_c01274{bottom:215.040000pt;}
.y1ec_c01274{bottom:215.813333pt;}
.y1ea_c01274{bottom:217.346667pt;}
.y1e9_c01274{bottom:218.106667pt;}
.y1f2_c01274{bottom:218.880000pt;}
.y1f1_c01274{bottom:219.653333pt;}
.y1ef_c01274{bottom:220.413333pt;}
.y1e8_c01274{bottom:223.493333pt;}
.y1e1_c01274{bottom:225.786667pt;}
.y1eb_c01274{bottom:229.626667pt;}
.y1e7_c01274{bottom:230.400000pt;}
.y1e2_c01274{bottom:231.933333pt;}
.y1e5_c01274{bottom:232.706667pt;}
.y1e6_c01274{bottom:233.466667pt;}
.y1e0_c01274{bottom:235.013333pt;}
.y1e3_c01274{bottom:235.773333pt;}
.y1e4_c01274{bottom:236.546667pt;}
.y1dd_c01274{bottom:249.600000pt;}
.y1de_c01274{bottom:250.373333pt;}
.y1d6_c01274{bottom:251.133333pt;}
.y1da_c01274{bottom:251.906667pt;}
.y1d7_c01274{bottom:252.666667pt;}
.y1d8_c01274{bottom:253.440000pt;}
.y1d5_c01274{bottom:254.973333pt;}
.y1db_c01274{bottom:256.506667pt;}
.y1df_c01274{bottom:257.280000pt;}
.y1dc_c01274{bottom:258.813333pt;}
.y1d9_c01274{bottom:259.586667pt;}
.y1cc_c01274{bottom:261.893333pt;}
.y1cb_c01274{bottom:262.653333pt;}
.y1d0_c01274{bottom:263.426667pt;}
.y1ce_c01274{bottom:264.186667pt;}
.y1d4_c01274{bottom:264.960000pt;}
.y1d3_c01274{bottom:265.733333pt;}
.y1cd_c01274{bottom:266.493333pt;}
.y1cf_c01274{bottom:269.573333pt;}
.y1d1_c01274{bottom:270.333333pt;}
.y1ca_c01274{bottom:271.106667pt;}
.y1d2_c01274{bottom:274.946667pt;}
.y1c9_c01274{bottom:278.013333pt;}
.y1c8_c01274{bottom:288.000000pt;}
.y1c5_c01274{bottom:290.306667pt;}
.y1c4_c01274{bottom:291.066667pt;}
.y1c7_c01274{bottom:291.840000pt;}
.y1c6_c01274{bottom:293.373333pt;}
.y1c2_c01274{bottom:301.053333pt;}
.y1c1_c01274{bottom:301.826667pt;}
.y1c3_c01274{bottom:302.586667pt;}
.y1bb_c01274{bottom:305.666667pt;}
.y1bc_c01274{bottom:308.733333pt;}
.y1bd_c01274{bottom:310.266667pt;}
.y1be_c01274{bottom:311.040000pt;}
.y1c0_c01274{bottom:314.880000pt;}
.y1bf_c01274{bottom:319.493333pt;}
.y1b7_c01274{bottom:321.786667pt;}
.y1b6_c01274{bottom:322.560000pt;}
.y1b5_c01274{bottom:323.333333pt;}
.y1b8_c01274{bottom:324.093333pt;}
.y1ba_c01274{bottom:327.173333pt;}
.y1b9_c01274{bottom:328.706667pt;}
.y1b4_c01274{bottom:336.386667pt;}
.y1aa_c01274{bottom:340.226667pt;}
.y1ae_c01274{bottom:340.986667pt;}
.y1b1_c01274{bottom:341.760000pt;}
.y1af_c01274{bottom:342.533333pt;}
.y1b2_c01274{bottom:343.293333pt;}
.y1ab_c01274{bottom:344.066667pt;}
.y1ad_c01274{bottom:344.826667pt;}
.y1ac_c01274{bottom:348.666667pt;}
.y1b3_c01274{bottom:349.440000pt;}
.y1b0_c01274{bottom:354.053333pt;}
.y1a4_c01274{bottom:360.960000pt;}
.y1a5_c01274{bottom:362.493333pt;}
.y1a6_c01274{bottom:364.026667pt;}
.y1a8_c01274{bottom:364.800000pt;}
.y1a3_c01274{bottom:365.573333pt;}
.y1a9_c01274{bottom:370.173333pt;}
.y1a7_c01274{bottom:374.013333pt;}
.y19d_c01274{bottom:377.093333pt;}
.y1a2_c01274{bottom:377.853333pt;}
.y1a1_c01274{bottom:378.626667pt;}
.y19f_c01274{bottom:380.933333pt;}
.y19e_c01274{bottom:383.226667pt;}
.y1a0_c01274{bottom:384.773333pt;}
.y19a_c01274{bottom:397.053333pt;}
.y197_c01274{bottom:397.826667pt;}
.y198_c01274{bottom:398.586667pt;}
.y19b_c01274{bottom:400.133333pt;}
.y199_c01274{bottom:400.893333pt;}
.y196_c01274{bottom:402.426667pt;}
.y19c_c01274{bottom:407.813333pt;}
.y18f_c01274{bottom:414.720000pt;}
.y190_c01274{bottom:415.493333pt;}
.y191_c01274{bottom:416.253333pt;}
.y18e_c01274{bottom:417.026667pt;}
.y192_c01274{bottom:417.786667pt;}
.y193_c01274{bottom:420.093333pt;}
.y194_c01274{bottom:421.626667pt;}
.y195_c01274{bottom:431.613333pt;}
.y18a_c01274{bottom:433.146667pt;}
.y18b_c01274{bottom:437.760000pt;}
.y18d_c01274{bottom:439.293333pt;}
.y18c_c01274{bottom:440.066667pt;}
.y187_c01274{bottom:447.746667pt;}
.y185_c01274{bottom:448.506667pt;}
.y186_c01274{bottom:449.280000pt;}
.y183_c01274{bottom:450.053333pt;}
.y184_c01274{bottom:453.893333pt;}
.y188_c01274{bottom:456.186667pt;}
.y189_c01274{bottom:460.800000pt;}
.y17c_c01274{bottom:469.253333pt;}
.y17d_c01274{bottom:470.013333pt;}
.y179_c01274{bottom:470.786667pt;}
.y17b_c01274{bottom:471.546667pt;}
.y17e_c01274{bottom:472.320000pt;}
.y17a_c01274{bottom:473.093333pt;}
.y180_c01274{bottom:473.853333pt;}
.y182_c01274{bottom:474.626667pt;}
.y181_c01274{bottom:475.386667pt;}
.y17f_c01274{bottom:483.066667pt;}
.y178_c01274{bottom:487.680000pt;}
.y170_c01274{bottom:488.453333pt;}
.y172_c01274{bottom:489.213333pt;}
.y171_c01274{bottom:490.746667pt;}
.y176_c01274{bottom:491.520000pt;}
.y177_c01274{bottom:492.293333pt;}
.y173_c01274{bottom:493.053333pt;}
.y16e_c01274{bottom:493.826667pt;}
.y174_c01274{bottom:494.586667pt;}
.y16f_c01274{bottom:496.133333pt;}
.y175_c01274{bottom:496.893333pt;}
.y16d_c01274{bottom:505.346667pt;}
.y166_c01274{bottom:506.106667pt;}
.y16b_c01274{bottom:506.880000pt;}
.y167_c01274{bottom:507.653333pt;}
.y16a_c01274{bottom:508.413333pt;}
.y16c_c01274{bottom:509.186667pt;}
.y165_c01274{bottom:509.946667pt;}
.y168_c01274{bottom:510.720000pt;}
.y164_c01274{bottom:511.493333pt;}
.y169_c01274{bottom:519.173333pt;}
.y15d_c01274{bottom:521.466667pt;}
.y163_c01274{bottom:523.013333pt;}
.y162_c01274{bottom:523.773333pt;}
.y15f_c01274{bottom:524.546667pt;}
.y15e_c01274{bottom:525.306667pt;}
.y161_c01274{bottom:528.386667pt;}
.y160_c01274{bottom:540.666667pt;}
.y153_c01274{bottom:541.440000pt;}
.y158_c01274{bottom:542.213333pt;}
.y157_c01274{bottom:542.973333pt;}
.y15a_c01274{bottom:544.506667pt;}
.y154_c01274{bottom:545.280000pt;}
.y159_c01274{bottom:546.053333pt;}
.y15b_c01274{bottom:549.893333pt;}
.y15c_c01274{bottom:551.426667pt;}
.y156_c01274{bottom:553.733333pt;}
.y155_c01274{bottom:555.266667pt;}
.y14e_c01274{bottom:559.866667pt;}
.y150_c01274{bottom:562.173333pt;}
.y14f_c01274{bottom:562.946667pt;}
.y151_c01274{bottom:563.706667pt;}
.y152_c01274{bottom:565.253333pt;}
.y14b_c01274{bottom:577.533333pt;}
.y147_c01274{bottom:578.306667pt;}
.y14a_c01274{bottom:579.066667pt;}
.y14d_c01274{bottom:579.840000pt;}
.y148_c01274{bottom:580.613333pt;}
.y14c_c01274{bottom:581.373333pt;}
.y149_c01274{bottom:582.906667pt;}
.y142_c01274{bottom:594.426667pt;}
.y146_c01274{bottom:595.200000pt;}
.y144_c01274{bottom:595.973333pt;}
.y13f_c01274{bottom:596.733333pt;}
.y13e_c01274{bottom:597.506667pt;}
.y20e_c01274{bottom:598.266667pt;}
.y13d_c01274{bottom:599.040000pt;}
.y143_c01274{bottom:599.813333pt;}
.y141_c01274{bottom:600.573333pt;}
.y140_c01274{bottom:601.346667pt;}
.y145_c01274{bottom:603.653333pt;}
.y13a_c01274{bottom:611.333333pt;}
.y134_c01274{bottom:612.093333pt;}
.y137_c01274{bottom:612.866667pt;}
.y135_c01274{bottom:613.626667pt;}
.y131_c01274{bottom:614.400000pt;}
.y138_c01274{bottom:615.173333pt;}
.y139_c01274{bottom:617.466667pt;}
.y133_c01274{bottom:618.240000pt;}
.y136_c01274{bottom:619.773333pt;}
.y132_c01274{bottom:620.546667pt;}
.y13c_c01274{bottom:628.986667pt;}
.y13b_c01274{bottom:630.533333pt;}
.y12f_c01274{bottom:631.293333pt;}
.y12c_c01274{bottom:632.066667pt;}
.y127_c01274{bottom:632.826667pt;}
.y128_c01274{bottom:633.600000pt;}
.y12a_c01274{bottom:634.373333pt;}
.y12d_c01274{bottom:635.133333pt;}
.y130_c01274{bottom:635.906667pt;}
.y129_c01274{bottom:636.666667pt;}
.y126_c01274{bottom:638.213333pt;}
.y12e_c01274{bottom:644.346667pt;}
.y12b_c01274{bottom:645.893333pt;}
.y123_c01274{bottom:648.186667pt;}
.y121_c01274{bottom:648.960000pt;}
.y122_c01274{bottom:649.733333pt;}
.y125_c01274{bottom:650.493333pt;}
.y124_c01274{bottom:654.333333pt;}
.y120_c01274{bottom:668.160000pt;}
.y11c_c01274{bottom:668.933333pt;}
.y11e_c01274{bottom:669.693333pt;}
.y11d_c01274{bottom:670.466667pt;}
.y11b_c01274{bottom:672.000000pt;}
.y119_c01274{bottom:672.773333pt;}
.y11f_c01274{bottom:673.533333pt;}
.y118_c01274{bottom:678.146667pt;}
.y11a_c01274{bottom:678.906667pt;}
.y117_c01274{bottom:679.680000pt;}
.y116_c01274{bottom:680.453333pt;}
.y114_c01274{bottom:681.213333pt;}
.y115_c01274{bottom:681.986667pt;}
.y10d_c01274{bottom:682.746667pt;}
.y10e_c01274{bottom:685.053333pt;}
.y113_c01274{bottom:685.826667pt;}
.y111_c01274{bottom:686.586667pt;}
.y110_c01274{bottom:687.360000pt;}
.y10f_c01274{bottom:688.133333pt;}
.y10c_c01274{bottom:688.893333pt;}
.y108_c01274{bottom:690.426667pt;}
.y109_c01274{bottom:691.200000pt;}
.y112_c01274{bottom:691.973333pt;}
.y100_c01274{bottom:692.733333pt;}
.yff_c01274{bottom:695.040000pt;}
.y105_c01274{bottom:695.813333pt;}
.y102_c01274{bottom:696.573333pt;}
.y106_c01274{bottom:697.346667pt;}
.y104_c01274{bottom:698.106667pt;}
.y101_c01274{bottom:698.880000pt;}
.y103_c01274{bottom:699.653333pt;}
.y107_c01274{bottom:700.413333pt;}
.y10b_c01274{bottom:701.946667pt;}
.y10a_c01274{bottom:705.026667pt;}
.yfa_c01274{bottom:705.786667pt;}
.yfb_c01274{bottom:708.093333pt;}
.yfc_c01274{bottom:708.866667pt;}
.yfe_c01274{bottom:709.626667pt;}
.yfd_c01274{bottom:710.400000pt;}
.yf6_c01274{bottom:721.920000pt;}
.yf7_c01274{bottom:722.693333pt;}
.yf9_c01274{bottom:724.986667pt;}
.yf8_c01274{bottom:727.293333pt;}
.yef_c01274{bottom:738.053333pt;}
.yee_c01274{bottom:738.813333pt;}
.yf4_c01274{bottom:739.586667pt;}
.yf0_c01274{bottom:741.893333pt;}
.yf2_c01274{bottom:743.426667pt;}
.yf3_c01274{bottom:744.186667pt;}
.yf1_c01274{bottom:744.960000pt;}
.yf5_c01274{bottom:754.173333pt;}
.ye9_c01274{bottom:757.253333pt;}
.yeb_c01274{bottom:758.013333pt;}
.ye8_c01274{bottom:758.786667pt;}
.yea_c01274{bottom:759.546667pt;}
.yed_c01274{bottom:762.626667pt;}
.yec_c01274{bottom:763.386667pt;}
.ye6_c01274{bottom:774.906667pt;}
.ye5_c01274{bottom:775.680000pt;}
.ye1_c01274{bottom:776.453333pt;}
.ye7_c01274{bottom:777.213333pt;}
.ye3_c01274{bottom:777.986667pt;}
.ye0_c01274{bottom:779.520000pt;}
.ye2_c01274{bottom:780.293333pt;}
.ye4_c01274{bottom:781.053333pt;}
.y20a_c01274{bottom:782.586667pt;}
.y209_c01274{bottom:784.893333pt;}
.yd8_c01274{bottom:792.573333pt;}
.yd9_c01274{bottom:793.346667pt;}
.yda_c01274{bottom:794.106667pt;}
.ydd_c01274{bottom:794.880000pt;}
.yd7_c01274{bottom:795.653333pt;}
.ydc_c01274{bottom:796.413333pt;}
.ydb_c01274{bottom:798.720000pt;}
.yde_c01274{bottom:801.786667pt;}
.ydf_c01274{bottom:805.626667pt;}
.ycf_c01274{bottom:811.013333pt;}
.yd3_c01274{bottom:811.773333pt;}
.yd2_c01274{bottom:812.546667pt;}
.yd5_c01274{bottom:813.306667pt;}
.yd4_c01274{bottom:814.080000pt;}
.yce_c01274{bottom:814.853333pt;}
.yd1_c01274{bottom:815.613333pt;}
.yd0_c01274{bottom:816.386667pt;}
.yd6_c01274{bottom:824.066667pt;}
.y20c_c01274{bottom:825.600000pt;}
.y20d_c01274{bottom:826.373333pt;}
.yc7_c01274{bottom:828.666667pt;}
.yc9_c01274{bottom:830.213333pt;}
.ycb_c01274{bottom:830.973333pt;}
.yca_c01274{bottom:833.280000pt;}
.yc8_c01274{bottom:834.053333pt;}
.ycc_c01274{bottom:834.813333pt;}
.ycd_c01274{bottom:835.586667pt;}
.yc2_c01274{bottom:847.106667pt;}
.yc4_c01274{bottom:848.640000pt;}
.yc5_c01274{bottom:850.946667pt;}
.yc3_c01274{bottom:852.480000pt;}
.yc6_c01274{bottom:854.786667pt;}
.ybb_c01274{bottom:864.773333pt;}
.yc0_c01274{bottom:865.533333pt;}
.ybc_c01274{bottom:866.306667pt;}
.yba_c01274{bottom:867.066667pt;}
.ybd_c01274{bottom:867.840000pt;}
.ybe_c01274{bottom:870.146667pt;}
.ybf_c01274{bottom:870.906667pt;}
.yc1_c01274{bottom:880.893333pt;}
.yb6_c01274{bottom:882.426667pt;}
.yb8_c01274{bottom:883.200000pt;}
.yb7_c01274{bottom:884.733333pt;}
.yb9_c01274{bottom:888.573333pt;}
.yac_c01274{bottom:900.093333pt;}
.yad_c01274{bottom:900.866667pt;}
.yb5_c01274{bottom:902.400000pt;}
.yb3_c01274{bottom:903.173333pt;}
.yae_c01274{bottom:903.933333pt;}
.yb4_c01274{bottom:906.240000pt;}
.yb2_c01274{bottom:907.013333pt;}
.yb1_c01274{bottom:909.306667pt;}
.yb0_c01274{bottom:910.853333pt;}
.yaf_c01274{bottom:915.453333pt;}
.ya8_c01274{bottom:918.533333pt;}
.yaa_c01274{bottom:919.293333pt;}
.ya9_c01274{bottom:920.826667pt;}
.ya5_c01274{bottom:922.373333pt;}
.ya6_c01274{bottom:923.133333pt;}
.ya7_c01274{bottom:923.906667pt;}
.yab_c01274{bottom:924.666667pt;}
.ya4_c01274{bottom:934.653333pt;}
.ya0_c01274{bottom:936.960000pt;}
.y9f_c01274{bottom:937.733333pt;}
.ya2_c01274{bottom:938.493333pt;}
.ya1_c01274{bottom:939.266667pt;}
.y9c_c01274{bottom:940.026667pt;}
.y9e_c01274{bottom:940.800000pt;}
.y9d_c01274{bottom:941.573333pt;}
.ya3_c01274{bottom:943.106667pt;}
.y95_c01274{bottom:954.626667pt;}
.y99_c01274{bottom:956.160000pt;}
.y97_c01274{bottom:956.933333pt;}
.y9a_c01274{bottom:957.693333pt;}
.y96_c01274{bottom:958.466667pt;}
.y9b_c01274{bottom:961.533333pt;}
.y98_c01274{bottom:963.066667pt;}
.y93_c01274{bottom:968.453333pt;}
.y94_c01274{bottom:970.746667pt;}
.y8e_c01274{bottom:973.053333pt;}
.y8d_c01274{bottom:973.826667pt;}
.y92_c01274{bottom:974.586667pt;}
.y8f_c01274{bottom:975.360000pt;}
.y91_c01274{bottom:977.666667pt;}
.y90_c01274{bottom:978.426667pt;}
.y8c_c01274{bottom:984.573333pt;}
.y84_c01274{bottom:989.946667pt;}
.y85_c01274{bottom:991.493333pt;}
.y8b_c01274{bottom:992.253333pt;}
.y8a_c01274{bottom:993.026667pt;}
.y86_c01274{bottom:994.560000pt;}
.y89_c01274{bottom:995.333333pt;}
.y87_c01274{bottom:996.093333pt;}
.y88_c01274{bottom:996.866667pt;}
.y7e_c01274{bottom:1008.386667pt;}
.y7d_c01274{bottom:1009.146667pt;}
.y81_c01274{bottom:1009.920000pt;}
.y7f_c01274{bottom:1010.693333pt;}
.y80_c01274{bottom:1012.226667pt;}
.y82_c01274{bottom:1012.986667pt;}
.y83_c01274{bottom:1015.293333pt;}
.y77_c01274{bottom:1026.813333pt;}
.y7c_c01274{bottom:1027.586667pt;}
.y79_c01274{bottom:1028.346667pt;}
.y78_c01274{bottom:1029.120000pt;}
.y7b_c01274{bottom:1032.186667pt;}
.y7a_c01274{bottom:1032.960000pt;}
.y76_c01274{bottom:1036.026667pt;}
.y72_c01274{bottom:1044.480000pt;}
.y71_c01274{bottom:1045.253333pt;}
.y73_c01274{bottom:1046.013333pt;}
.y75_c01274{bottom:1047.546667pt;}
.y74_c01274{bottom:1048.320000pt;}
.y208_c01274{bottom:1055.226667pt;}
.y6a_c01274{bottom:1062.146667pt;}
.y6c_c01274{bottom:1062.906667pt;}
.y69_c01274{bottom:1063.680000pt;}
.y6d_c01274{bottom:1064.453333pt;}
.y6b_c01274{bottom:1065.213333pt;}
.y68_c01274{bottom:1065.986667pt;}
.y6f_c01274{bottom:1066.746667pt;}
.y6e_c01274{bottom:1069.826667pt;}
.y70_c01274{bottom:1070.586667pt;}
.y206_c01274{bottom:1072.893333pt;}
.y207_c01274{bottom:1075.200000pt;}
.y205_c01274{bottom:1079.813333pt;}
.y60_c01274{bottom:1082.106667pt;}
.y62_c01274{bottom:1082.880000pt;}
.y64_c01274{bottom:1083.653333pt;}
.y63_c01274{bottom:1084.413333pt;}
.y61_c01274{bottom:1085.186667pt;}
.y66_c01274{bottom:1086.720000pt;}
.y65_c01274{bottom:1087.493333pt;}
.y67_c01274{bottom:1093.626667pt;}
.y204_c01274{bottom:1094.400000pt;}
.y203_c01274{bottom:1095.933333pt;}
.y5a_c01274{bottom:1099.013333pt;}
.y5c_c01274{bottom:1099.773333pt;}
.y5b_c01274{bottom:1100.546667pt;}
.y5d_c01274{bottom:1101.306667pt;}
.y5f_c01274{bottom:1102.853333pt;}
.y59_c01274{bottom:1103.613333pt;}
.y55_c01274{bottom:1104.386667pt;}
.y5e_c01274{bottom:1105.146667pt;}
.y202_c01274{bottom:1108.226667pt;}
.y52_c01274{bottom:1108.986667pt;}
.y57_c01274{bottom:1109.760000pt;}
.y58_c01274{bottom:1110.533333pt;}
.y51_c01274{bottom:1111.293333pt;}
.y4e_c01274{bottom:1112.066667pt;}
.y56_c01274{bottom:1112.826667pt;}
.y54_c01274{bottom:1113.600000pt;}
.y50_c01274{bottom:1114.373333pt;}
.y53_c01274{bottom:1115.133333pt;}
.y4f_c01274{bottom:1115.906667pt;}
.y49_c01274{bottom:1117.440000pt;}
.y47_c01274{bottom:1118.213333pt;}
.y4d_c01274{bottom:1118.973333pt;}
.y4a_c01274{bottom:1120.506667pt;}
.y4c_c01274{bottom:1121.280000pt;}
.y48_c01274{bottom:1122.053333pt;}
.y4b_c01274{bottom:1123.586667pt;}
.y42_c01274{bottom:1135.866667pt;}
.y45_c01274{bottom:1136.640000pt;}
.y41_c01274{bottom:1137.413333pt;}
.y44_c01274{bottom:1138.173333pt;}
.y40_c01274{bottom:1138.946667pt;}
.y46_c01274{bottom:1139.706667pt;}
.y43_c01274{bottom:1140.480000pt;}
.y3b_c01274{bottom:1142.013333pt;}
.y39_c01274{bottom:1145.093333pt;}
.y38_c01274{bottom:1146.626667pt;}
.y3a_c01274{bottom:1147.386667pt;}
.y37_c01274{bottom:1148.160000pt;}
.y3e_c01274{bottom:1148.933333pt;}
.y3d_c01274{bottom:1149.693333pt;}
.y3f_c01274{bottom:1150.466667pt;}
.y3c_c01274{bottom:1152.000000pt;}
.y2f_c01274{bottom:1152.773333pt;}
.y2e_c01274{bottom:1153.533333pt;}
.y31_c01274{bottom:1154.306667pt;}
.y201_c01274{bottom:1155.066667pt;}
.y36_c01274{bottom:1155.840000pt;}
.y33_c01274{bottom:1156.613333pt;}
.y32_c01274{bottom:1157.373333pt;}
.y2d_c01274{bottom:1158.146667pt;}
.y35_c01274{bottom:1160.453333pt;}
.y34_c01274{bottom:1161.213333pt;}
.y30_c01274{bottom:1165.053333pt;}
.y28_c01274{bottom:1171.200000pt;}
.y26_c01274{bottom:1172.733333pt;}
.y2a_c01274{bottom:1173.506667pt;}
.y2b_c01274{bottom:1174.266667pt;}
.y2c_c01274{bottom:1175.040000pt;}
.y29_c01274{bottom:1175.813333pt;}
.y27_c01274{bottom:1176.573333pt;}
.y1e_c01274{bottom:1189.626667pt;}
.y1b_c01274{bottom:1191.933333pt;}
.y22_c01274{bottom:1192.706667pt;}
.y23_c01274{bottom:1193.466667pt;}
.y1c_c01274{bottom:1194.240000pt;}
.y20_c01274{bottom:1195.013333pt;}
.y21_c01274{bottom:1196.546667pt;}
.y1f_c01274{bottom:1197.306667pt;}
.y25_c01274{bottom:1200.386667pt;}
.y1d_c01274{bottom:1201.920000pt;}
.y24_c01274{bottom:1202.693333pt;}
.y1a_c01274{bottom:1209.600000pt;}
.y16_c01274{bottom:1212.666667pt;}
.y15_c01274{bottom:1213.440000pt;}
.y18_c01274{bottom:1214.213333pt;}
.y20b_c01274{bottom:1214.973333pt;}
.y19_c01274{bottom:1215.746667pt;}
.yf_c01274{bottom:1216.506667pt;}
.y17_c01274{bottom:1217.280000pt;}
.ya_c01274{bottom:1218.053333pt;}
.y10_c01274{bottom:1218.813333pt;}
.yc_c01274{bottom:1219.586667pt;}
.y12_c01274{bottom:1220.346667pt;}
.yb_c01274{bottom:1221.893333pt;}
.y14_c01274{bottom:1223.426667pt;}
.y11_c01274{bottom:1224.960000pt;}
.ye_c01274{bottom:1226.493333pt;}
.y13_c01274{bottom:1227.266667pt;}
.y6_c01274{bottom:1234.946667pt;}
.y5_c01274{bottom:1237.253333pt;}
.yd_c01274{bottom:1238.013333pt;}
.y4_c01274{bottom:1240.320000pt;}
.y8_c01274{bottom:1241.853333pt;}
.y9_c01274{bottom:1244.933333pt;}
.y7_c01274{bottom:1248.773333pt;}
.y2_c01274{bottom:1252.613333pt;}
.y3_c01274{bottom:1255.680000pt;}
.y1_c01274{bottom:1256.453333pt;}
.ha_c01274{height:2.764500pt;}
.h2_c01274{height:4.799479pt;}
.h18_c01274{height:5.519401pt;}
.h4_c01274{height:8.303099pt;}
.h7_c01274{height:11.038802pt;}
.h26_c01274{height:11.396432pt;}
.h3_c01274{height:13.822500pt;}
.h20_c01274{height:16.606198pt;}
.h1a_c01274{height:19.341901pt;}
.h17_c01274{height:22.125599pt;}
.h6_c01274{height:24.861302pt;}
.h16_c01274{height:27.645000pt;}
.h1f_c01274{height:30.428698pt;}
.h10_c01274{height:33.164401pt;}
.h19_c01274{height:35.948099pt;}
.h1e_c01274{height:38.683802pt;}
.h1d_c01274{height:41.467500pt;}
.h1b_c01274{height:44.251198pt;}
.h8_c01274{height:46.986901pt;}
.h5_c01274{height:49.770599pt;}
.h24_c01274{height:52.196667pt;}
.he_c01274{height:52.506302pt;}
.hc_c01274{height:55.290000pt;}
.hf_c01274{height:58.073698pt;}
.hb_c01274{height:60.809401pt;}
.h13_c01274{height:63.593099pt;}
.h12_c01274{height:66.328802pt;}
.h21_c01274{height:69.112500pt;}
.h9_c01274{height:71.896198pt;}
.h22_c01274{height:74.631901pt;}
.h1c_c01274{height:77.415599pt;}
.h15_c01274{height:80.151302pt;}
.h23_c01274{height:82.935000pt;}
.h11_c01274{height:85.718698pt;}
.hd_c01274{height:88.454401pt;}
.h25_c01274{height:91.238099pt;}
.h14_c01274{height:96.757500pt;}
.h1_c01274{height:1350.000000pt;}
.h0_c01274{height:1350.146667pt;}
.w0_c01274{width:964.613333pt;}
.w1_c01274{width:964.666667pt;}
.x0_c01274{left:0.000000pt;}
.x12c_c01274{left:102.146667pt;}
.x12d_c01274{left:112.133333pt;}
.x12f_c01274{left:119.040000pt;}
.x12e_c01274{left:122.880000pt;}
.x130_c01274{left:130.560000pt;}
.xf7_c01274{left:132.093333pt;}
.x100_c01274{left:134.400000pt;}
.xf8_c01274{left:137.466667pt;}
.x131_c01274{left:141.306667pt;}
.x132_c01274{left:148.226667pt;}
.x12b_c01274{left:149.760000pt;}
.xfd_c01274{left:152.826667pt;}
.xf9_c01274{left:155.133333pt;}
.xfa_c01274{left:159.746667pt;}
.x57_c01274{left:161.280000pt;}
.xa5_c01274{left:162.813333pt;}
.x3_c01274{left:165.893333pt;}
.x58_c01274{left:171.266667pt;}
.x101_c01274{left:172.800000pt;}
.x4_c01274{left:175.106667pt;}
.x59_c01274{left:178.173333pt;}
.x89_c01274{left:181.253333pt;}
.x114_c01274{left:186.626667pt;}
.xa9_c01274{left:188.160000pt;}
.x126_c01274{left:189.693333pt;}
.x9c_c01274{left:192.773333pt;}
.x7f_c01274{left:194.306667pt;}
.xf1_c01274{left:195.840000pt;}
.x95_c01274{left:198.146667pt;}
.x76_c01274{left:199.680000pt;}
.x61_c01274{left:201.213333pt;}
.x9_c01274{left:202.746667pt;}
.x3a_c01274{left:204.293333pt;}
.xa6_c01274{left:206.586667pt;}
.xfb_c01274{left:209.666667pt;}
.xa_c01274{left:212.733333pt;}
.xa7_c01274{left:214.266667pt;}
.xb7_c01274{left:218.880000pt;}
.xb_c01274{left:221.946667pt;}
.x116_c01274{left:223.493333pt;}
.xe2_c01274{left:225.026667pt;}
.x119_c01274{left:227.333333pt;}
.x8a_c01274{left:228.866667pt;}
.x10c_c01274{left:230.400000pt;}
.xbd_c01274{left:231.933333pt;}
.x2b_c01274{left:233.466667pt;}
.x12a_c01274{left:235.013333pt;}
.x6a_c01274{left:238.080000pt;}
.xc_c01274{left:239.613333pt;}
.x5a_c01274{left:241.920000pt;}
.xd_c01274{left:244.226667pt;}
.x6b_c01274{left:245.760000pt;}
.x77_c01274{left:248.826667pt;}
.xb8_c01274{left:251.133333pt;}
.x90_c01274{left:254.213333pt;}
.x3b_c01274{left:258.813333pt;}
.x120_c01274{left:261.120000pt;}
.xeb_c01274{left:262.653333pt;}
.x111_c01274{left:264.186667pt;}
.xc3_c01274{left:265.733333pt;}
.x6c_c01274{left:267.266667pt;}
.x11b_c01274{left:268.800000pt;}
.xd3_c01274{left:271.106667pt;}
.x42_c01274{left:274.173333pt;}
.xc8_c01274{left:276.480000pt;}
.xbe_c01274{left:278.013333pt;}
.xe_c01274{left:280.320000pt;}
.x9d_c01274{left:283.386667pt;}
.xce_c01274{left:285.693333pt;}
.x20_c01274{left:287.226667pt;}
.xe6_c01274{left:288.773333pt;}
.xf2_c01274{left:291.840000pt;}
.x3c_c01274{left:293.373333pt;}
.x123_c01274{left:295.680000pt;}
.x80_c01274{left:297.213333pt;}
.xaa_c01274{left:298.746667pt;}
.x2c_c01274{left:300.293333pt;}
.x21_c01274{left:302.586667pt;}
.x2d_c01274{left:307.200000pt;}
.xb4_c01274{left:310.266667pt;}
.xf_c01274{left:311.813333pt;}
.xd1_c01274{left:313.346667pt;}
.xa8_c01274{left:314.880000pt;}
.x10_c01274{left:317.186667pt;}
.xfe_c01274{left:318.720000pt;}
.x11d_c01274{left:321.026667pt;}
.x6d_c01274{left:323.333333pt;}
.x8b_c01274{left:326.400000pt;}
.x5b_c01274{left:329.466667pt;}
.x9f_c01274{left:331.013333pt;}
.x117_c01274{left:333.306667pt;}
.x11_c01274{left:334.853333pt;}
.xab_c01274{left:337.146667pt;}
.x43_c01274{left:340.986667pt;}
.x10d_c01274{left:342.533333pt;}
.x128_c01274{left:344.066667pt;}
.xd4_c01274{left:345.600000pt;}
.x62_c01274{left:347.133333pt;}
.x4b_c01274{left:349.440000pt;}
.x12_c01274{left:353.280000pt;}
.x6e_c01274{left:355.586667pt;}
.xd5_c01274{left:357.893333pt;}
.x96_c01274{left:360.186667pt;}
.x10e_c01274{left:361.733333pt;}
.xc9_c01274{left:363.266667pt;}
.xd6_c01274{left:365.573333pt;}
.x5_c01274{left:367.866667pt;}
.xae_c01274{left:370.173333pt;}
.x2e_c01274{left:372.480000pt;}
.x3d_c01274{left:374.786667pt;}
.x2f_c01274{left:376.320000pt;}
.x86_c01274{left:378.626667pt;}
.x5c_c01274{left:382.466667pt;}
.x22_c01274{left:384.773333pt;}
.x10f_c01274{left:386.306667pt;}
.x13_c01274{left:387.840000pt;}
.x112_c01274{left:390.146667pt;}
.x30_c01274{left:392.453333pt;}
.x63_c01274{left:395.520000pt;}
.x97_c01274{left:397.053333pt;}
.x4c_c01274{left:399.360000pt;}
.x6_c01274{left:401.666667pt;}
.x6f_c01274{left:403.200000pt;}
.x14_c01274{left:405.506667pt;}
.x81_c01274{left:407.040000pt;}
.x5d_c01274{left:408.573333pt;}
.x8c_c01274{left:410.880000pt;}
.x125_c01274{left:413.186667pt;}
.x4d_c01274{left:416.253333pt;}
.x127_c01274{left:417.786667pt;}
.x70_c01274{left:419.333333pt;}
.xe7_c01274{left:420.866667pt;}
.x44_c01274{left:422.400000pt;}
.xa0_c01274{left:423.933333pt;}
.x4e_c01274{left:426.240000pt;}
.x11f_c01274{left:428.546667pt;}
.xc1_c01274{left:430.080000pt;}
.x23_c01274{left:432.386667pt;}
.xb9_c01274{left:434.693333pt;}
.x15_c01274{left:436.226667pt;}
.xc6_c01274{left:439.293333pt;}
.x109_c01274{left:441.600000pt;}
.xec_c01274{left:443.133333pt;}
.x4f_c01274{left:445.440000pt;}
.x71_c01274{left:447.746667pt;}
.x121_c01274{left:449.280000pt;}
.xca_c01274{left:450.813333pt;}
.x24_c01274{left:452.346667pt;}
.x91_c01274{left:454.653333pt;}
.x31_c01274{left:456.960000pt;}
.x16_c01274{left:460.800000pt;}
.xf3_c01274{left:466.173333pt;}
.x122_c01274{left:468.480000pt;}
.x17_c01274{left:470.786667pt;}
.x113_c01274{left:472.320000pt;}
.x10a_c01274{left:474.626667pt;}
.xa1_c01274{left:476.933333pt;}
.xd2_c01274{left:478.466667pt;}
.x32_c01274{left:480.000000pt;}
.x1_c01274{left:481.533333pt;}
.xaf_c01274{left:483.066667pt;}
.x45_c01274{left:484.613333pt;}
.x98_c01274{left:486.906667pt;}
.x64_c01274{left:488.453333pt;}
.xff_c01274{left:490.746667pt;}
.x82_c01274{left:492.293333pt;}
.x25_c01274{left:494.586667pt;}
.x5e_c01274{left:496.133333pt;}
.x3e_c01274{left:497.666667pt;}
.xe8_c01274{left:500.733333pt;}
.xdd_c01274{left:502.266667pt;}
.x18_c01274{left:505.346667pt;}
.xe3_c01274{left:506.880000pt;}
.xb0_c01274{left:511.493333pt;}
.xc7_c01274{left:514.560000pt;}
.xa2_c01274{left:516.866667pt;}
.x129_c01274{left:520.706667pt;}
.x19_c01274{left:523.773333pt;}
.x33_c01274{left:526.080000pt;}
.x83_c01274{left:529.920000pt;}
.x7c_c01274{left:531.453333pt;}
.xcb_c01274{left:532.986667pt;}
.x8d_c01274{left:537.600000pt;}
.xb1_c01274{left:539.133333pt;}
.x26_c01274{left:541.440000pt;}
.xb5_c01274{left:544.506667pt;}
.x50_c01274{left:546.053333pt;}
.xcf_c01274{left:548.346667pt;}
.x92_c01274{left:550.653333pt;}
.x78_c01274{left:552.960000pt;}
.xde_c01274{left:554.493333pt;}
.x1a_c01274{left:556.026667pt;}
.x11a_c01274{left:560.640000pt;}
.x72_c01274{left:562.173333pt;}
.xbf_c01274{left:563.706667pt;}
.xf4_c01274{left:565.253333pt;}
.x8e_c01274{left:566.786667pt;}
.x3f_c01274{left:568.320000pt;}
.x65_c01274{left:569.853333pt;}
.x34_c01274{left:572.160000pt;}
.xd7_c01274{left:573.693333pt;}
.x87_c01274{left:575.226667pt;}
.xa3_c01274{left:577.533333pt;}
.x11e_c01274{left:579.840000pt;}
.x99_c01274{left:581.373333pt;}
.x27_c01274{left:582.906667pt;}
.x66_c01274{left:584.453333pt;}
.xd8_c01274{left:585.986667pt;}
.x1b_c01274{left:587.520000pt;}
.xc0_c01274{left:589.826667pt;}
.x51_c01274{left:591.360000pt;}
.xed_c01274{left:593.666667pt;}
.xb2_c01274{left:595.973333pt;}
.xac_c01274{left:599.040000pt;}
.x73_c01274{left:602.106667pt;}
.xdf_c01274{left:604.413333pt;}
.xe4_c01274{left:605.946667pt;}
.x5f_c01274{left:608.253333pt;}
.x1c_c01274{left:611.333333pt;}
.x46_c01274{left:614.400000pt;}
.x74_c01274{left:615.933333pt;}
.x93_c01274{left:618.240000pt;}
.x35_c01274{left:620.546667pt;}
.x9a_c01274{left:622.853333pt;}
.x28_c01274{left:624.386667pt;}
.x52_c01274{left:626.693333pt;}
.x103_c01274{left:628.226667pt;}
.xba_c01274{left:629.760000pt;}
.x9b_c01274{left:632.066667pt;}
.x40_c01274{left:634.373333pt;}
.xcc_c01274{left:637.440000pt;}
.x2_c01274{left:639.746667pt;}
.x7d_c01274{left:642.813333pt;}
.x75_c01274{left:645.893333pt;}
.x47_c01274{left:648.960000pt;}
.x102_c01274{left:652.800000pt;}
.x79_c01274{left:654.333333pt;}
.xd9_c01274{left:656.640000pt;}
.x67_c01274{left:660.480000pt;}
.x94_c01274{left:662.013333pt;}
.x88_c01274{left:663.546667pt;}
.xc4_c01274{left:665.093333pt;}
.xe0_c01274{left:667.386667pt;}
.x7_c01274{left:668.933333pt;}
.xda_c01274{left:670.466667pt;}
.x1d_c01274{left:672.000000pt;}
.xdb_c01274{left:673.533333pt;}
.xe9_c01274{left:675.066667pt;}
.xb3_c01274{left:677.373333pt;}
.x107_c01274{left:678.906667pt;}
.x53_c01274{left:680.453333pt;}
.xd0_c01274{left:682.746667pt;}
.xbb_c01274{left:685.053333pt;}
.x7e_c01274{left:686.586667pt;}
.x68_c01274{left:692.733333pt;}
.x7a_c01274{left:694.266667pt;}
.x36_c01274{left:695.813333pt;}
.x1e_c01274{left:698.106667pt;}
.x54_c01274{left:700.413333pt;}
.x118_c01274{left:701.946667pt;}
.x60_c01274{left:704.253333pt;}
.xf5_c01274{left:705.786667pt;}
.xb6_c01274{left:707.333333pt;}
.xe1_c01274{left:709.626667pt;}
.x41_c01274{left:711.173333pt;}
.x104_c01274{left:715.013333pt;}
.x55_c01274{left:716.546667pt;}
.x7b_c01274{left:718.080000pt;}
.x11c_c01274{left:719.613333pt;}
.xa4_c01274{left:721.146667pt;}
.x48_c01274{left:722.693333pt;}
.xcd_c01274{left:724.226667pt;}
.x69_c01274{left:726.533333pt;}
.xea_c01274{left:728.066667pt;}
.x8f_c01274{left:730.373333pt;}
.x49_c01274{left:733.440000pt;}
.xdc_c01274{left:734.973333pt;}
.x29_c01274{left:736.506667pt;}
.xc2_c01274{left:738.813333pt;}
.x37_c01274{left:741.120000pt;}
.x56_c01274{left:742.653333pt;}
.x9e_c01274{left:744.960000pt;}
.x2a_c01274{left:747.266667pt;}
.x4a_c01274{left:748.800000pt;}
.xe5_c01274{left:750.333333pt;}
.x84_c01274{left:752.640000pt;}
.x108_c01274{left:757.253333pt;}
.x124_c01274{left:758.786667pt;}
.xbc_c01274{left:760.320000pt;}
.x105_c01274{left:762.626667pt;}
.x10b_c01274{left:765.693333pt;}
.xee_c01274{left:768.000000pt;}
.xc5_c01274{left:769.533333pt;}
.x85_c01274{left:771.840000pt;}
.x1f_c01274{left:774.146667pt;}
.xad_c01274{left:775.680000pt;}
.x106_c01274{left:777.986667pt;}
.x115_c01274{left:779.520000pt;}
.x38_c01274{left:782.586667pt;}
.x110_c01274{left:784.133333pt;}
.xf6_c01274{left:787.200000pt;}
.xef_c01274{left:792.573333pt;}
.x13a_c01274{left:802.560000pt;}
.x8_c01274{left:804.866667pt;}
.x135_c01274{left:806.400000pt;}
.x39_c01274{left:809.466667pt;}
.xf0_c01274{left:814.080000pt;}
.x136_c01274{left:830.973333pt;}
.xfc_c01274{left:832.506667pt;}
.x133_c01274{left:878.586667pt;}
.x137_c01274{left:923.906667pt;}
.x138_c01274{left:925.440000pt;}
.x139_c01274{left:939.266667pt;}
.x134_c01274{left:943.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1459355524e645a7adb70dd9.woff2')format("woff");}.ff1_c01275{font-family:ff1_c01275;line-height:1.109863;font-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_c01275{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me_c01275{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);}
.m4_c01275{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01275{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m3_c01275{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c01275{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c01275{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c01275{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf_c01275{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);}
.m2_c01275{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m7_c01275{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mb_c01275{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m9_c01275{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);}
.mc_c01275{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m8_c01275{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1_c01275{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,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;}
.fc0_c01275{color:transparent;}
.fs2_c01275{font-size:6.900000px;}
.fs1_c01275{font-size:13.800000px;}
.fs4_c01275{font-size:17.280000px;}
.fs6_c01275{font-size:20.760000px;}
.fs0_c01275{font-size:27.660000px;}
.fs7_c01275{font-size:34.560000px;}
.fs3_c01275{font-size:41.460000px;}
.fs5_c01275{font-size:86.400000px;}
.y0_c01275{bottom:0.000000px;}
.y7_c01275{bottom:667.005000px;}
.y4_c01275{bottom:670.470000px;}
.y3_c01275{bottom:672.195000px;}
.y6_c01275{bottom:673.920000px;}
.y5_c01275{bottom:676.515000px;}
.ya_c01275{bottom:704.160000px;}
.yb_c01275{bottom:705.030000px;}
.y9_c01275{bottom:705.885000px;}
.yf_c01275{bottom:796.605000px;}
.y8_c01275{bottom:926.205000px;}
.ye_c01275{bottom:937.440000px;}
.yd_c01275{bottom:1250.205000px;}
.yc_c01275{bottom:1353.885000px;}
.y1_c01275{bottom:1394.490000px;}
.y2_c01275{bottom:1397.085000px;}
.h4_c01275{height:6.209326px;}
.h3_c01275{height:12.418652px;}
.h6_c01275{height:15.550313px;}
.h8_c01275{height:18.681973px;}
.h2_c01275{height:24.891299px;}
.h9_c01275{height:31.100625px;}
.h5_c01275{height:37.309951px;}
.h7_c01275{height:77.751563px;}
.h0_c01275{height:1509.405000px;}
.h1_c01275{height:1509.750000px;}
.w0_c01275{width:1088.640000px;}
.w1_c01275{width:1089.000000px;}
.x0_c01275{left:0.000000px;}
.x1_c01275{left:21.600000px;}
.x3_c01275{left:24.195000px;}
.x4_c01275{left:36.285000px;}
.x2_c01275{left:38.010000px;}
.x5_c01275{left:43.200000px;}
.x6_c01275{left:51.840000px;}
.x9_c01275{left:55.290000px;}
.x7_c01275{left:62.205000px;}
.x8_c01275{left:67.395000px;}
.xa_c01275{left:69.120000px;}
.xb_c01275{left:76.890000px;}
.xd_c01275{left:120.960000px;}
.x10_c01275{left:148.605000px;}
.xe_c01275{left:171.930000px;}
.xf_c01275{left:178.845000px;}
.xc_c01275{left:367.200000px;}
@media print{
.v0_c01275{vertical-align:0.000000pt;}
.ls0_c01275{letter-spacing:0.000000pt;}
.ws0_c01275{word-spacing:0.000000pt;}
.fs2_c01275{font-size:6.133333pt;}
.fs1_c01275{font-size:12.266667pt;}
.fs4_c01275{font-size:15.360000pt;}
.fs6_c01275{font-size:18.453333pt;}
.fs0_c01275{font-size:24.586667pt;}
.fs7_c01275{font-size:30.720000pt;}
.fs3_c01275{font-size:36.853333pt;}
.fs5_c01275{font-size:76.800000pt;}
.y0_c01275{bottom:0.000000pt;}
.y7_c01275{bottom:592.893333pt;}
.y4_c01275{bottom:595.973333pt;}
.y3_c01275{bottom:597.506667pt;}
.y6_c01275{bottom:599.040000pt;}
.y5_c01275{bottom:601.346667pt;}
.ya_c01275{bottom:625.920000pt;}
.yb_c01275{bottom:626.693333pt;}
.y9_c01275{bottom:627.453333pt;}
.yf_c01275{bottom:708.093333pt;}
.y8_c01275{bottom:823.293333pt;}
.ye_c01275{bottom:833.280000pt;}
.yd_c01275{bottom:1111.293333pt;}
.yc_c01275{bottom:1203.453333pt;}
.y1_c01275{bottom:1239.546667pt;}
.y2_c01275{bottom:1241.853333pt;}
.h4_c01275{height:5.519401pt;}
.h3_c01275{height:11.038802pt;}
.h6_c01275{height:13.822500pt;}
.h8_c01275{height:16.606198pt;}
.h2_c01275{height:22.125599pt;}
.h9_c01275{height:27.645000pt;}
.h5_c01275{height:33.164401pt;}
.h7_c01275{height:69.112500pt;}
.h0_c01275{height:1341.693333pt;}
.h1_c01275{height:1342.000000pt;}
.w0_c01275{width:967.680000pt;}
.w1_c01275{width:968.000000pt;}
.x0_c01275{left:0.000000pt;}
.x1_c01275{left:19.200000pt;}
.x3_c01275{left:21.506667pt;}
.x4_c01275{left:32.253333pt;}
.x2_c01275{left:33.786667pt;}
.x5_c01275{left:38.400000pt;}
.x6_c01275{left:46.080000pt;}
.x9_c01275{left:49.146667pt;}
.x7_c01275{left:55.293333pt;}
.x8_c01275{left:59.906667pt;}
.xa_c01275{left:61.440000pt;}
.xb_c01275{left:68.346667pt;}
.xd_c01275{left:107.520000pt;}
.x10_c01275{left:132.093333pt;}
.xe_c01275{left:152.826667pt;}
.xf_c01275{left:158.973333pt;}
.xc_c01275{left:326.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_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_f6d65c795f6f7c4ff1ed7f2b.woff2')format("woff");}.ff1_c01276{font-family:ff1_c01276;line-height:1.109863;font-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_c01276{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01276{transform:matrix(0.022325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022325,0.000000,0.000000,0.250000,0,0);}
.m18a_c01276{transform:matrix(0.085725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085725,0.000000,0.000000,0.250000,0,0);}
.ma5_c01276{transform:matrix(0.092325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092325,0.000000,0.000000,0.250000,0,0);}
.m165_c01276{transform:matrix(0.097250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097250,0.000000,0.000000,0.250000,0,0);}
.m1f_c01276{transform:matrix(0.097675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097675,0.000000,0.000000,0.250000,0,0);}
.m18c_c01276{transform:matrix(0.099600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099600,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01276{transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01276{transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);}
.m114_c01276{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.mf_c01276{transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);}
.m14d_c01276{transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01276{transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);}
.m13f_c01276{transform:matrix(0.114600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114600,0.000000,0.000000,0.250000,0,0);}
.m22_c01276{transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01276{transform:matrix(0.116700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116700,0.000000,0.000000,0.250000,0,0);}
.m18b_c01276{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);}
.m1c8_c01276{transform:matrix(0.118800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118800,0.000000,0.000000,0.250000,0,0);}
.m162_c01276{transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);}
.ma7_c01276{transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);}
.m50_c01276{transform:matrix(0.123500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01276{transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);}
.m13_c01276{transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01276{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.mb3_c01276{transform:matrix(0.130750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130750,0.000000,0.000000,0.250000,0,0);}
.ma8_c01276{transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);}
.m5d_c01276{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);}
.m191_c01276{transform:matrix(0.132025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132025,0.000000,0.000000,0.250000,0,0);}
.m2_c01276{transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);}
.m4a_c01276{transform:matrix(0.134925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134925,0.000000,0.000000,0.250000,0,0);}
.m14a_c01276{transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);}
.mee_c01276{transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);}
.m13b_c01276{transform:matrix(0.136025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136025,0.000000,0.000000,0.250000,0,0);}
.m41_c01276{transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);}
.m4b_c01276{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.m168_c01276{transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01276{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m10c_c01276{transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);}
.mea_c01276{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m55_c01276{transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);}
.m14b_c01276{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m102_c01276{transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);}
.mb7_c01276{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m99_c01276{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);}
.m5a_c01276{transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);}
.m177_c01276{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.m19d_c01276{transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);}
.ma6_c01276{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01276{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m163_c01276{transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);}
.m97_c01276{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.m18_c01276{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.m19a_c01276{transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);}
.m101_c01276{transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);}
.m5c_c01276{transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);}
.m176_c01276{transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);}
.m11c_c01276{transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);}
.md0_c01276{transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147500,0.000000,0.000000,0.250000,0,0);}
.m166_c01276{transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);}
.m4c_c01276{transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);}
.m152_c01276{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);}
.m4e_c01276{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);}
.m1a5_c01276{transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);}
.m12f_c01276{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01276{transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);}
.m57_c01276{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.m161_c01276{transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01276{transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);}
.m78_c01276{transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);}
.me9_c01276{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m160_c01276{transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);}
.m86_c01276{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m186_c01276{transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);}
.m9a_c01276{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);}
.mb1_c01276{transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);}
.m142_c01276{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.mba_c01276{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m118_c01276{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);}
.mdd_c01276{transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01276{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m116_c01276{transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);}
.ma0_c01276{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);}
.mec_c01276{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m179_c01276{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);}
.m71_c01276{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);}
.mdc_c01276{transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);}
.m109_c01276{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01276{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m7e_c01276{transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);}
.m16d_c01276{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.mf8_c01276{transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);}
.m62_c01276{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.mc5_c01276{transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);}
.m184_c01276{transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);}
.m1be_c01276{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m15d_c01276{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.m1af_c01276{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m16b_c01276{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m141_c01276{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.maf_c01276{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m2c_c01276{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m10b_c01276{transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01276{transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01276{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.m136_c01276{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.maa_c01276{transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01276{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);}
.m60_c01276{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m20_c01276{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m51_c01276{transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);}
.m98_c01276{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);}
.me8_c01276{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);}
.m79_c01276{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);}
.md6_c01276{transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);}
.meb_c01276{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);}
.m1d2_c01276{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m5e_c01276{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.mcf_c01276{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m58_c01276{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01276{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);}
.m153_c01276{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m59_c01276{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m125_c01276{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.mde_c01276{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m56_c01276{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m49_c01276{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m43_c01276{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m151_c01276{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01276{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);}
.m7a_c01276{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m8_c01276{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m199_c01276{transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);}
.m30_c01276{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m63_c01276{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01276{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.m14c_c01276{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01276{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01276{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m9f_c01276{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.mdb_c01276{transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);}
.m15c_c01276{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m19e_c01276{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.mc1_c01276{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);}
.m12b_c01276{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m144_c01276{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);}
.m11b_c01276{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.mbf_c01276{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.m84_c01276{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);}
.ma9_c01276{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);}
.m19b_c01276{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m113_c01276{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.m54_c01276{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);}
.m53_c01276{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);}
.m196_c01276{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m124_c01276{transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186200,0.000000,0.000000,0.250000,0,0);}
.m150_c01276{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);}
.m198_c01276{transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);}
.m155_c01276{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m21_c01276{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01276{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);}
.m1b6_c01276{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.m10f_c01276{transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01276{transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);}
.m16a_c01276{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.md4_c01276{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.mc3_c01276{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);}
.m1bb_c01276{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);}
.m52_c01276{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.m12c_c01276{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);}
.m91_c01276{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);}
.m6b_c01276{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.m16c_c01276{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01276{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);}
.m1b7_c01276{transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);}
.m18d_c01276{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m19c_c01276{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.ma4_c01276{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.mb2_c01276{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.m17_c01276{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);}
.m96_c01276{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.mcc_c01276{transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);}
.me3_c01276{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.mc0_c01276{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m44_c01276{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m7b_c01276{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m12a_c01276{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);}
.m16f_c01276{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m18e_c01276{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m167_c01276{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);}
.ma1_c01276{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01276{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);}
.me1_c01276{transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);}
.m15f_c01276{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);}
.m197_c01276{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);}
.m8b_c01276{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m75_c01276{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.mb8_c01276{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);}
.m15a_c01276{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);}
.mbe_c01276{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01276{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);}
.m1a4_c01276{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m195_c01276{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m154_c01276{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);}
.m1a9_c01276{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);}
.m87_c01276{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.mcb_c01276{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);}
.m189_c01276{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);}
.m31_c01276{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);}
.m146_c01276{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.m104_c01276{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m10a_c01276{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01276{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m19f_c01276{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);}
.m1b4_c01276{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);}
.m173_c01276{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);}
.m15_c01276{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);}
.m23_c01276{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m16e_c01276{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);}
.m10d_c01276{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m13e_c01276{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);}
.m120_c01276{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m15b_c01276{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);}
.m164_c01276{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01276{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);}
.med_c01276{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);}
.m126_c01276{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);}
.m8e_c01276{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.mca_c01276{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01276{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);}
.m106_c01276{transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);}
.me4_c01276{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m74_c01276{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m145_c01276{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);}
.m143_c01276{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);}
.m182_c01276{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m29_c01276{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);}
.m1ca_c01276{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m103_c01276{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);}
.m5b_c01276{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);}
.m48_c01276{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m8a_c01276{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.m3_c01276{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);}
.md2_c01276{transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);}
.m6e_c01276{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m194_c01276{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.mfa_c01276{transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);}
.mc7_c01276{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);}
.m128_c01276{transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);}
.m105_c01276{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);}
.m1b2_c01276{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);}
.m1a1_c01276{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);}
.me7_c01276{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);}
.m110_c01276{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mac_c01276{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.mf9_c01276{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);}
.m47_c01276{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m7d_c01276{transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);}
.m66_c01276{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.m67_c01276{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.m139_c01276{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m121_c01276{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m1da_c01276{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);}
.m183_c01276{transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);}
.m149_c01276{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);}
.mf3_c01276{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);}
.m1ae_c01276{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);}
.mfd_c01276{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m95_c01276{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.m147_c01276{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m171_c01276{transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);}
.mce_c01276{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01276{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.mfc_c01276{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);}
.m180_c01276{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);}
.m4f_c01276{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.m89_c01276{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m90_c01276{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m100_c01276{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);}
.m93_c01276{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);}
.m138_c01276{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m14e_c01276{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);}
.m137_c01276{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m27_c01276{transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);}
.m122_c01276{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.m85_c01276{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.mcd_c01276{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);}
.m111_c01276{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);}
.m108_c01276{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m28_c01276{transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);}
.m65_c01276{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m135_c01276{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);}
.m172_c01276{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);}
.m5f_c01276{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m174_c01276{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);}
.m3a_c01276{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);}
.m81_c01276{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);}
.m188_c01276{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);}
.m159_c01276{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.mf7_c01276{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);}
.m45_c01276{transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);}
.m10e_c01276{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);}
.mfe_c01276{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01276{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);}
.m170_c01276{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);}
.m1a2_c01276{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m140_c01276{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.mf2_c01276{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);}
.m133_c01276{transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);}
.m12d_c01276{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);}
.mbd_c01276{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);}
.m11d_c01276{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m123_c01276{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);}
.m9c_c01276{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m73_c01276{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);}
.m46_c01276{transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);}
.m15e_c01276{transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);}
.mf5_c01276{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);}
.m132_c01276{transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);}
.m185_c01276{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);}
.m107_c01276{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);}
.mf6_c01276{transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);}
.m13a_c01276{transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);}
.mae_c01276{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);}
.m64_c01276{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);}
.m9e_c01276{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m11a_c01276{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);}
.m13d_c01276{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01276{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);}
.m76_c01276{transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);}
.m10_c01276{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);}
.mff_c01276{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);}
.m134_c01276{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);}
.me_c01276{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);}
.m61_c01276{transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);}
.mef_c01276{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);}
.m82_c01276{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);}
.m127_c01276{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.m187_c01276{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m156_c01276{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.m4_c01276{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);}
.m169_c01276{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);}
.m117_c01276{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.m11e_c01276{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);}
.mf4_c01276{transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);}
.m6f_c01276{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);}
.m8f_c01276{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);}
.md1_c01276{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);}
.m175_c01276{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);}
.m9b_c01276{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);}
.m37_c01276{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);}
.mf0_c01276{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01276{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);}
.m3b_c01276{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.me0_c01276{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);}
.mb0_c01276{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01276{transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);}
.m12e_c01276{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.m14f_c01276{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01276{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);}
.m11f_c01276{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m192_c01276{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m18f_c01276{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);}
.mc8_c01276{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);}
.m72_c01276{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);}
.m33_c01276{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m39_c01276{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);}
.m14_c01276{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);}
.m130_c01276{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);}
.m3c_c01276{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);}
.m7_c01276{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mfb_c01276{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m16_c01276{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m69_c01276{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);}
.mc_c01276{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c01276{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);}
.m36_c01276{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);}
.m19_c01276{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m70_c01276{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);}
.m1b_c01276{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01276{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m34_c01276{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);}
.m6_c01276{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c01276{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);}
.m68_c01276{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);}
.m8d_c01276{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma2_c01276{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01276{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);}
.mbc_c01276{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf1_c01276{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01276{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);}
.mb5_c01276{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01276{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c01276{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m32_c01276{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mc2_c01276{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc6_c01276{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma_c01276{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m119_c01276{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m92_c01276{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);}
.mad_c01276{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m35_c01276{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me5_c01276{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c01276{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m24_c01276{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);}
.mdf_c01276{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);}
.m129_c01276{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md8_c01276{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me6_c01276{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);}
.mb_c01276{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m148_c01276{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m9d_c01276{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mb9_c01276{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc9_c01276{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);}
.m190_c01276{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m94_c01276{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);}
.m9_c01276{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01276{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01276{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);}
.m42_c01276{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m178_c01276{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.me2_c01276{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m80_c01276{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01276{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01276{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);}
.m6d_c01276{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m131_c01276{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);}
.m1ad_c01276{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m38_c01276{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01276{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m17a_c01276{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m17d_c01276{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m88_c01276{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);}
.m181_c01276{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01276{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01276{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mb4_c01276{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m193_c01276{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m83_c01276{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mc4_c01276{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5_c01276{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01276{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01276{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.md5_c01276{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m17f_c01276{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.mbb_c01276{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m77_c01276{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m26_c01276{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m115_c01276{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01276{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);}
.m1bd_c01276{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.mab_c01276{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01276{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01276{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m112_c01276{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m13c_c01276{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01276{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01276{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m157_c01276{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01276{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01276{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.md3_c01276{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01276{transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);}
.m40_c01276{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01276{transform:matrix(0.965000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.965000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.965000,0.000000,0.000000,0.250000,0,0);}
.m0_c01276{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.md7_c01276{transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);}
.m1de_c01276{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01276{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01276{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.mda_c01276{transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);}
.m17e_c01276{transform:matrix(1.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.267500,0.000000,0.000000,0.250000,0,0);}
.m17b_c01276{transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);}
.m158_c01276{transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01276{transform:matrix(1.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.352500,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01276{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01276{transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);}
.md9_c01276{transform:matrix(1.977500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.977500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.977500,0.000000,0.000000,0.250000,0,0);}
.m1db_c01276{transform:matrix(2.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.165000,0.000000,0.000000,0.250000,0,0);}
.m17c_c01276{transform:matrix(2.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.295000,0.000000,0.000000,0.250000,0,0);}
.v0_c01276{vertical-align:0.000000px;}
.ls1_c01276{letter-spacing:0.000000px;}
.ls0_c01276{letter-spacing:43.868400px;}
.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;}
.fsf_c01276{font-size:3.456000px;}
.fs14_c01276{font-size:6.000000px;}
.fs0_c01276{font-size:6.900000px;}
.fs18_c01276{font-size:10.380000px;}
.fs21_c01276{font-size:13.800000px;}
.fs10_c01276{font-size:17.280000px;}
.fs1b_c01276{font-size:20.760000px;}
.fs1a_c01276{font-size:24.180000px;}
.fsd_c01276{font-size:27.660000px;}
.fs17_c01276{font-size:31.080000px;}
.fs16_c01276{font-size:34.560000px;}
.fs19_c01276{font-size:38.040000px;}
.fs20_c01276{font-size:41.460000px;}
.fs1_c01276{font-size:44.940000px;}
.fs1c_c01276{font-size:48.360000px;}
.fs9_c01276{font-size:51.840000px;}
.fsa_c01276{font-size:55.320000px;}
.fs15_c01276{font-size:58.740000px;}
.fs6_c01276{font-size:62.220000px;}
.fs5_c01276{font-size:65.640000px;}
.fs3_c01276{font-size:69.120000px;}
.fs2_c01276{font-size:72.600000px;}
.fs12_c01276{font-size:76.020000px;}
.fs4_c01276{font-size:79.500000px;}
.fs1d_c01276{font-size:82.920000px;}
.fsb_c01276{font-size:86.400000px;}
.fs1f_c01276{font-size:89.880000px;}
.fs7_c01276{font-size:93.300000px;}
.fs8_c01276{font-size:96.780000px;}
.fsc_c01276{font-size:100.200000px;}
.fs11_c01276{font-size:103.680000px;}
.fse_c01276{font-size:110.580000px;}
.fs1e_c01276{font-size:114.060000px;}
.fs13_c01276{font-size:134.760000px;}
.y0_c01276{bottom:0.000000px;}
.y20a_c01276{bottom:176.250000px;}
.y208_c01276{bottom:177.120000px;}
.y20b_c01276{bottom:177.990000px;}
.y209_c01276{bottom:179.715000px;}
.y207_c01276{bottom:182.310000px;}
.y204_c01276{bottom:183.165000px;}
.y206_c01276{bottom:184.890000px;}
.y205_c01276{bottom:194.400000px;}
.y202_c01276{bottom:195.270000px;}
.y1ff_c01276{bottom:196.125000px;}
.y201_c01276{bottom:196.995000px;}
.y1fe_c01276{bottom:197.850000px;}
.y203_c01276{bottom:198.720000px;}
.y1fd_c01276{bottom:200.445000px;}
.y1fb_c01276{bottom:202.170000px;}
.y200_c01276{bottom:203.040000px;}
.y1fc_c01276{bottom:204.765000px;}
.y1f8_c01276{bottom:216.000000px;}
.y1f9_c01276{bottom:217.725000px;}
.y1f7_c01276{bottom:218.595000px;}
.y1f5_c01276{bottom:220.320000px;}
.y1f2_c01276{bottom:221.190000px;}
.y1f3_c01276{bottom:222.045000px;}
.y1ef_c01276{bottom:222.915000px;}
.y1fa_c01276{bottom:223.770000px;}
.y1f6_c01276{bottom:224.640000px;}
.y1f4_c01276{bottom:225.510000px;}
.y1f0_c01276{bottom:228.090000px;}
.y1ee_c01276{bottom:230.685000px;}
.y1ec_c01276{bottom:237.600000px;}
.y1eb_c01276{bottom:239.325000px;}
.y1f1_c01276{bottom:240.195000px;}
.y1e9_c01276{bottom:241.050000px;}
.y1e7_c01276{bottom:241.920000px;}
.y1e8_c01276{bottom:242.790000px;}
.y1ea_c01276{bottom:246.240000px;}
.y1e5_c01276{bottom:247.965000px;}
.y1ed_c01276{bottom:249.690000px;}
.y1e6_c01276{bottom:251.430000px;}
.y1e2_c01276{bottom:258.330000px;}
.y1e4_c01276{bottom:260.070000px;}
.y1de_c01276{bottom:260.925000px;}
.y1e0_c01276{bottom:261.795000px;}
.y1db_c01276{bottom:262.650000px;}
.y1e3_c01276{bottom:263.520000px;}
.y1da_c01276{bottom:264.390000px;}
.y1e1_c01276{bottom:265.245000px;}
.y1dc_c01276{bottom:266.115000px;}
.y1d9_c01276{bottom:266.970000px;}
.y1dd_c01276{bottom:267.840000px;}
.y1df_c01276{bottom:275.610000px;}
.y1d8_c01276{bottom:279.075000px;}
.y1d7_c01276{bottom:280.800000px;}
.y1d5_c01276{bottom:281.670000px;}
.y1d4_c01276{bottom:283.395000px;}
.y1d3_c01276{bottom:285.120000px;}
.y1d2_c01276{bottom:289.440000px;}
.y1d6_c01276{bottom:293.760000px;}
.y1d1_c01276{bottom:297.210000px;}
.y1d0_c01276{bottom:298.950000px;}
.y1cd_c01276{bottom:299.805000px;}
.y1ce_c01276{bottom:300.675000px;}
.y1cf_c01276{bottom:301.530000px;}
.y1ca_c01276{bottom:304.125000px;}
.y1c9_c01276{bottom:304.995000px;}
.y1cc_c01276{bottom:306.720000px;}
.y1cb_c01276{bottom:307.590000px;}
.y20f_c01276{bottom:319.680000px;}
.y1c8_c01276{bottom:320.550000px;}
.y1c6_c01276{bottom:321.405000px;}
.y1c3_c01276{bottom:323.130000px;}
.y1c0_c01276{bottom:324.000000px;}
.y1c7_c01276{bottom:324.870000px;}
.y1c2_c01276{bottom:325.725000px;}
.y1c4_c01276{bottom:326.595000px;}
.y1c1_c01276{bottom:329.190000px;}
.y1c5_c01276{bottom:330.045000px;}
.y1be_c01276{bottom:339.555000px;}
.y1bd_c01276{bottom:340.410000px;}
.y1bc_c01276{bottom:342.150000px;}
.y1ba_c01276{bottom:343.005000px;}
.y1bb_c01276{bottom:343.875000px;}
.y1bf_c01276{bottom:345.600000px;}
.y1b9_c01276{bottom:349.050000px;}
.y1b8_c01276{bottom:349.920000px;}
.y1b4_c01276{bottom:362.880000px;}
.y1b2_c01276{bottom:363.750000px;}
.y1b1_c01276{bottom:364.605000px;}
.y1b7_c01276{bottom:365.475000px;}
.y1b3_c01276{bottom:368.925000px;}
.y1b5_c01276{bottom:372.390000px;}
.y1b6_c01276{bottom:376.710000px;}
.y1b0_c01276{bottom:381.885000px;}
.y1af_c01276{bottom:382.755000px;}
.y1ae_c01276{bottom:383.610000px;}
.y1ab_c01276{bottom:384.480000px;}
.y1ad_c01276{bottom:386.205000px;}
.y1a9_c01276{bottom:387.075000px;}
.y1ac_c01276{bottom:388.800000px;}
.y1aa_c01276{bottom:389.670000px;}
.y1a8_c01276{bottom:395.715000px;}
.y1a7_c01276{bottom:400.890000px;}
.y1a5_c01276{bottom:402.630000px;}
.y1a6_c01276{bottom:403.485000px;}
.y1a2_c01276{bottom:404.355000px;}
.y1a0_c01276{bottom:405.210000px;}
.y1a4_c01276{bottom:406.080000px;}
.y1a3_c01276{bottom:406.950000px;}
.y1a1_c01276{bottom:407.805000px;}
.y19f_c01276{bottom:410.400000px;}
.y19e_c01276{bottom:412.995000px;}
.y19d_c01276{bottom:413.850000px;}
.y199_c01276{bottom:414.720000px;}
.y197_c01276{bottom:415.590000px;}
.y19c_c01276{bottom:416.445000px;}
.y19b_c01276{bottom:417.315000px;}
.y195_c01276{bottom:418.170000px;}
.y198_c01276{bottom:419.040000px;}
.y196_c01276{bottom:419.910000px;}
.y19a_c01276{bottom:421.635000px;}
.y193_c01276{bottom:422.490000px;}
.y194_c01276{bottom:423.360000px;}
.y190_c01276{bottom:424.230000px;}
.y18e_c01276{bottom:426.810000px;}
.y191_c01276{bottom:427.680000px;}
.y192_c01276{bottom:429.405000px;}
.y18d_c01276{bottom:430.275000px;}
.y18f_c01276{bottom:431.130000px;}
.y18c_c01276{bottom:442.365000px;}
.y189_c01276{bottom:443.235000px;}
.y18a_c01276{bottom:444.090000px;}
.y187_c01276{bottom:446.685000px;}
.y18b_c01276{bottom:449.280000px;}
.y188_c01276{bottom:450.150000px;}
.y185_c01276{bottom:463.110000px;}
.y186_c01276{bottom:465.690000px;}
.y17f_c01276{bottom:466.560000px;}
.y180_c01276{bottom:467.430000px;}
.y182_c01276{bottom:468.285000px;}
.y183_c01276{bottom:470.880000px;}
.y181_c01276{bottom:471.750000px;}
.y184_c01276{bottom:472.605000px;}
.y17e_c01276{bottom:481.245000px;}
.y17c_c01276{bottom:483.840000px;}
.y178_c01276{bottom:484.710000px;}
.y177_c01276{bottom:486.435000px;}
.y17d_c01276{bottom:487.290000px;}
.y17a_c01276{bottom:489.030000px;}
.y179_c01276{bottom:490.755000px;}
.y17b_c01276{bottom:503.715000px;}
.y174_c01276{bottom:506.310000px;}
.y16f_c01276{bottom:507.165000px;}
.y172_c01276{bottom:508.890000px;}
.y16e_c01276{bottom:509.760000px;}
.y171_c01276{bottom:511.485000px;}
.y170_c01276{bottom:512.355000px;}
.y176_c01276{bottom:513.210000px;}
.y173_c01276{bottom:515.805000px;}
.y175_c01276{bottom:523.590000px;}
.y16c_c01276{bottom:524.445000px;}
.y16b_c01276{bottom:525.315000px;}
.y169_c01276{bottom:527.910000px;}
.y16a_c01276{bottom:528.765000px;}
.y16d_c01276{bottom:529.635000px;}
.y166_c01276{bottom:532.230000px;}
.y167_c01276{bottom:533.955000px;}
.y168_c01276{bottom:535.680000px;}
.y165_c01276{bottom:543.450000px;}
.y163_c01276{bottom:545.190000px;}
.y164_c01276{bottom:546.045000px;}
.y160_c01276{bottom:546.915000px;}
.y15f_c01276{bottom:548.640000px;}
.y15d_c01276{bottom:550.365000px;}
.y161_c01276{bottom:551.235000px;}
.y162_c01276{bottom:552.090000px;}
.y15e_c01276{bottom:553.830000px;}
.y15b_c01276{bottom:565.920000px;}
.y15a_c01276{bottom:566.790000px;}
.y158_c01276{bottom:567.645000px;}
.y155_c01276{bottom:568.515000px;}
.y15c_c01276{bottom:569.370000px;}
.y159_c01276{bottom:570.240000px;}
.y156_c01276{bottom:571.965000px;}
.y157_c01276{bottom:574.560000px;}
.y154_c01276{bottom:586.650000px;}
.y153_c01276{bottom:587.520000px;}
.y14f_c01276{bottom:588.390000px;}
.y152_c01276{bottom:589.245000px;}
.y151_c01276{bottom:591.840000px;}
.y150_c01276{bottom:592.710000px;}
.y14e_c01276{bottom:594.435000px;}
.y14d_c01276{bottom:603.075000px;}
.y14c_c01276{bottom:606.525000px;}
.y149_c01276{bottom:607.395000px;}
.y14b_c01276{bottom:608.250000px;}
.y146_c01276{bottom:609.120000px;}
.y145_c01276{bottom:609.990000px;}
.y14a_c01276{bottom:611.715000px;}
.y148_c01276{bottom:612.570000px;}
.y147_c01276{bottom:613.440000px;}
.y144_c01276{bottom:614.310000px;}
.y143_c01276{bottom:615.165000px;}
.y141_c01276{bottom:626.400000px;}
.y140_c01276{bottom:628.125000px;}
.y13c_c01276{bottom:629.850000px;}
.y13f_c01276{bottom:630.720000px;}
.y13b_c01276{bottom:632.445000px;}
.y13e_c01276{bottom:633.315000px;}
.y13d_c01276{bottom:634.170000px;}
.y142_c01276{bottom:642.810000px;}
.y13a_c01276{bottom:644.550000px;}
.y138_c01276{bottom:645.405000px;}
.y134_c01276{bottom:648.000000px;}
.y139_c01276{bottom:649.725000px;}
.y137_c01276{bottom:650.595000px;}
.y136_c01276{bottom:651.450000px;}
.y135_c01276{bottom:652.320000px;}
.y132_c01276{bottom:653.190000px;}
.y133_c01276{bottom:654.045000px;}
.y131_c01276{bottom:664.410000px;}
.y130_c01276{bottom:665.280000px;}
.y12d_c01276{bottom:667.005000px;}
.y20e_c01276{bottom:668.730000px;}
.y12a_c01276{bottom:669.600000px;}
.y129_c01276{bottom:670.470000px;}
.y12b_c01276{bottom:671.325000px;}
.y12e_c01276{bottom:672.195000px;}
.y12c_c01276{bottom:673.050000px;}
.y12f_c01276{bottom:673.920000px;}
.y128_c01276{bottom:685.155000px;}
.y125_c01276{bottom:686.880000px;}
.y124_c01276{bottom:687.750000px;}
.y122_c01276{bottom:689.475000px;}
.y121_c01276{bottom:691.200000px;}
.y127_c01276{bottom:692.070000px;}
.y123_c01276{bottom:692.925000px;}
.y126_c01276{bottom:693.795000px;}
.y11f_c01276{bottom:705.030000px;}
.y11a_c01276{bottom:706.755000px;}
.y11d_c01276{bottom:707.610000px;}
.y11c_c01276{bottom:708.480000px;}
.y120_c01276{bottom:709.350000px;}
.y11b_c01276{bottom:711.075000px;}
.y11e_c01276{bottom:711.930000px;}
.y118_c01276{bottom:712.800000px;}
.y119_c01276{bottom:721.440000px;}
.y116_c01276{bottom:725.760000px;}
.y112_c01276{bottom:727.485000px;}
.y10e_c01276{bottom:728.355000px;}
.y111_c01276{bottom:729.210000px;}
.y114_c01276{bottom:730.080000px;}
.y117_c01276{bottom:730.950000px;}
.y113_c01276{bottom:731.805000px;}
.y115_c01276{bottom:732.675000px;}
.y10f_c01276{bottom:734.400000px;}
.y10d_c01276{bottom:735.270000px;}
.y110_c01276{bottom:737.850000px;}
.y10c_c01276{bottom:738.720000px;}
.y106_c01276{bottom:748.230000px;}
.y10b_c01276{bottom:749.085000px;}
.y109_c01276{bottom:750.810000px;}
.y10a_c01276{bottom:751.680000px;}
.y107_c01276{bottom:753.405000px;}
.y108_c01276{bottom:754.275000px;}
.y105_c01276{bottom:764.640000px;}
.y103_c01276{bottom:766.365000px;}
.y104_c01276{bottom:767.235000px;}
.yff_c01276{bottom:768.090000px;}
.y102_c01276{bottom:768.960000px;}
.yfe_c01276{bottom:769.830000px;}
.yfd_c01276{bottom:770.685000px;}
.y100_c01276{bottom:774.150000px;}
.y101_c01276{bottom:781.050000px;}
.yfb_c01276{bottom:787.110000px;}
.yf8_c01276{bottom:787.965000px;}
.yfa_c01276{bottom:788.835000px;}
.yf5_c01276{bottom:790.560000px;}
.yfc_c01276{bottom:791.430000px;}
.yf6_c01276{bottom:792.285000px;}
.yf9_c01276{bottom:793.155000px;}
.yf7_c01276{bottom:794.010000px;}
.yf4_c01276{bottom:795.750000px;}
.yf3_c01276{bottom:805.245000px;}
.yf2_c01276{bottom:806.115000px;}
.yef_c01276{bottom:808.710000px;}
.yf1_c01276{bottom:813.030000px;}
.yf0_c01276{bottom:813.885000px;}
.yee_c01276{bottom:825.120000px;}
.yed_c01276{bottom:825.990000px;}
.yec_c01276{bottom:827.715000px;}
.yeb_c01276{bottom:828.570000px;}
.ye8_c01276{bottom:829.440000px;}
.ye9_c01276{bottom:830.310000px;}
.ye5_c01276{bottom:831.165000px;}
.yea_c01276{bottom:832.035000px;}
.ye6_c01276{bottom:834.630000px;}
.ye7_c01276{bottom:835.485000px;}
.ye2_c01276{bottom:845.850000px;}
.ye4_c01276{bottom:846.720000px;}
.ye3_c01276{bottom:847.590000px;}
.ydb_c01276{bottom:848.445000px;}
.yda_c01276{bottom:849.315000px;}
.yde_c01276{bottom:850.170000px;}
.ydc_c01276{bottom:851.040000px;}
.ydf_c01276{bottom:852.765000px;}
.ye1_c01276{bottom:853.635000px;}
.ydd_c01276{bottom:854.490000px;}
.ye0_c01276{bottom:864.000000px;}
.yd9_c01276{bottom:865.725000px;}
.yd8_c01276{bottom:867.450000px;}
.yd5_c01276{bottom:868.320000px;}
.yd1_c01276{bottom:869.190000px;}
.yd3_c01276{bottom:870.045000px;}
.yd6_c01276{bottom:871.770000px;}
.yd7_c01276{bottom:872.640000px;}
.yd4_c01276{bottom:873.510000px;}
.yd2_c01276{bottom:874.365000px;}
.yd0_c01276{bottom:875.235000px;}
.ycf_c01276{bottom:876.090000px;}
.yce_c01276{bottom:876.960000px;}
.ycc_c01276{bottom:885.600000px;}
.ycb_c01276{bottom:886.470000px;}
.ycd_c01276{bottom:887.325000px;}
.yc8_c01276{bottom:889.050000px;}
.yca_c01276{bottom:890.790000px;}
.yc9_c01276{bottom:893.370000px;}
.yc7_c01276{bottom:894.240000px;}
.yc6_c01276{bottom:895.110000px;}
.yc5_c01276{bottom:902.010000px;}
.yc0_c01276{bottom:905.475000px;}
.yc3_c01276{bottom:908.070000px;}
.ybd_c01276{bottom:908.925000px;}
.yc4_c01276{bottom:909.795000px;}
.yc1_c01276{bottom:911.520000px;}
.yc2_c01276{bottom:912.390000px;}
.ybe_c01276{bottom:914.970000px;}
.ybf_c01276{bottom:915.840000px;}
.ybc_c01276{bottom:919.290000px;}
.ybb_c01276{bottom:922.755000px;}
.yb7_c01276{bottom:929.670000px;}
.yba_c01276{bottom:931.395000px;}
.yb8_c01276{bottom:932.250000px;}
.yb9_c01276{bottom:933.990000px;}
.yb6_c01276{bottom:947.805000px;}
.yb4_c01276{bottom:948.675000px;}
.yb0_c01276{bottom:949.530000px;}
.yb3_c01276{bottom:950.400000px;}
.yae_c01276{bottom:951.270000px;}
.yaf_c01276{bottom:952.125000px;}
.yb2_c01276{bottom:952.995000px;}
.yb5_c01276{bottom:953.850000px;}
.yb1_c01276{bottom:954.720000px;}
.yac_c01276{bottom:968.550000px;}
.ya7_c01276{bottom:970.275000px;}
.yab_c01276{bottom:972.000000px;}
.yad_c01276{bottom:972.870000px;}
.ya9_c01276{bottom:973.725000px;}
.ya8_c01276{bottom:975.450000px;}
.yaa_c01276{bottom:983.235000px;}
.ya6_c01276{bottom:986.685000px;}
.ya5_c01276{bottom:988.410000px;}
.ya1_c01276{bottom:989.280000px;}
.ya2_c01276{bottom:990.150000px;}
.ya0_c01276{bottom:991.875000px;}
.ya4_c01276{bottom:993.600000px;}
.ya3_c01276{bottom:995.325000px;}
.y9e_c01276{bottom:1009.155000px;}
.y9f_c01276{bottom:1012.605000px;}
.y9b_c01276{bottom:1013.475000px;}
.y9a_c01276{bottom:1014.330000px;}
.y9c_c01276{bottom:1015.200000px;}
.y9d_c01276{bottom:1016.070000px;}
.y20c_c01276{bottom:1018.650000px;}
.y20d_c01276{bottom:1022.115000px;}
.y99_c01276{bottom:1028.160000px;}
.y94_c01276{bottom:1030.755000px;}
.y97_c01276{bottom:1031.610000px;}
.y95_c01276{bottom:1032.480000px;}
.y93_c01276{bottom:1033.350000px;}
.y96_c01276{bottom:1035.075000px;}
.y98_c01276{bottom:1035.930000px;}
.y91_c01276{bottom:1048.890000px;}
.y8f_c01276{bottom:1050.630000px;}
.y92_c01276{bottom:1051.485000px;}
.y8c_c01276{bottom:1052.355000px;}
.y8b_c01276{bottom:1053.210000px;}
.y89_c01276{bottom:1054.080000px;}
.y8e_c01276{bottom:1054.950000px;}
.y90_c01276{bottom:1055.805000px;}
.y8d_c01276{bottom:1056.675000px;}
.y8a_c01276{bottom:1057.530000px;}
.y86_c01276{bottom:1067.040000px;}
.y88_c01276{bottom:1067.910000px;}
.y87_c01276{bottom:1068.765000px;}
.y84_c01276{bottom:1071.360000px;}
.y83_c01276{bottom:1072.230000px;}
.y85_c01276{bottom:1073.085000px;}
.y82_c01276{bottom:1074.810000px;}
.y81_c01276{bottom:1076.550000px;}
.y80_c01276{bottom:1087.770000px;}
.y7d_c01276{bottom:1090.365000px;}
.y7c_c01276{bottom:1091.235000px;}
.y79_c01276{bottom:1092.090000px;}
.y7f_c01276{bottom:1093.830000px;}
.y7e_c01276{bottom:1094.685000px;}
.y7a_c01276{bottom:1096.410000px;}
.y7b_c01276{bottom:1097.280000px;}
.y78_c01276{bottom:1099.005000px;}
.y74_c01276{bottom:1108.515000px;}
.y73_c01276{bottom:1110.240000px;}
.y70_c01276{bottom:1111.110000px;}
.y71_c01276{bottom:1111.965000px;}
.y77_c01276{bottom:1112.835000px;}
.y76_c01276{bottom:1113.690000px;}
.y75_c01276{bottom:1116.285000px;}
.y72_c01276{bottom:1117.155000px;}
.y6e_c01276{bottom:1128.390000px;}
.y6c_c01276{bottom:1130.115000px;}
.y69_c01276{bottom:1130.970000px;}
.y68_c01276{bottom:1131.840000px;}
.y66_c01276{bottom:1132.710000px;}
.y6f_c01276{bottom:1133.565000px;}
.y6d_c01276{bottom:1134.435000px;}
.y6b_c01276{bottom:1136.160000px;}
.y6a_c01276{bottom:1137.030000px;}
.y67_c01276{bottom:1137.885000px;}
.y63_c01276{bottom:1149.120000px;}
.y60_c01276{bottom:1149.990000px;}
.y5e_c01276{bottom:1151.715000px;}
.y62_c01276{bottom:1152.570000px;}
.y64_c01276{bottom:1154.310000px;}
.y61_c01276{bottom:1156.890000px;}
.y5f_c01276{bottom:1157.760000px;}
.y5d_c01276{bottom:1158.630000px;}
.y65_c01276{bottom:1167.270000px;}
.y5c_c01276{bottom:1169.850000px;}
.y59_c01276{bottom:1171.590000px;}
.y5a_c01276{bottom:1172.445000px;}
.y57_c01276{bottom:1174.170000px;}
.y55_c01276{bottom:1175.040000px;}
.y5b_c01276{bottom:1175.910000px;}
.y56_c01276{bottom:1176.765000px;}
.y58_c01276{bottom:1177.635000px;}
.y54_c01276{bottom:1178.490000px;}
.y52_c01276{bottom:1189.725000px;}
.y4f_c01276{bottom:1191.450000px;}
.y4e_c01276{bottom:1192.320000px;}
.y4d_c01276{bottom:1193.190000px;}
.y4c_c01276{bottom:1194.045000px;}
.y53_c01276{bottom:1194.915000px;}
.y51_c01276{bottom:1196.640000px;}
.y50_c01276{bottom:1204.410000px;}
.y4a_c01276{bottom:1207.875000px;}
.y45_c01276{bottom:1212.195000px;}
.y44_c01276{bottom:1213.050000px;}
.y49_c01276{bottom:1213.920000px;}
.y43_c01276{bottom:1214.790000px;}
.y46_c01276{bottom:1215.645000px;}
.y4b_c01276{bottom:1216.515000px;}
.y47_c01276{bottom:1218.240000px;}
.y42_c01276{bottom:1219.110000px;}
.y38_c01276{bottom:1222.560000px;}
.y48_c01276{bottom:1224.285000px;}
.y41_c01276{bottom:1231.200000px;}
.y3d_c01276{bottom:1232.070000px;}
.y3c_c01276{bottom:1232.925000px;}
.y40_c01276{bottom:1234.650000px;}
.y3f_c01276{bottom:1236.390000px;}
.y3e_c01276{bottom:1237.245000px;}
.y3b_c01276{bottom:1238.115000px;}
.y3a_c01276{bottom:1239.840000px;}
.y39_c01276{bottom:1240.710000px;}
.y37_c01276{bottom:1250.205000px;}
.y36_c01276{bottom:1251.075000px;}
.y34_c01276{bottom:1252.800000px;}
.y32_c01276{bottom:1253.670000px;}
.y31_c01276{bottom:1254.525000px;}
.y2f_c01276{bottom:1256.250000px;}
.y30_c01276{bottom:1257.120000px;}
.y33_c01276{bottom:1257.990000px;}
.y35_c01276{bottom:1270.080000px;}
.y2e_c01276{bottom:1270.950000px;}
.y2d_c01276{bottom:1271.805000px;}
.y2a_c01276{bottom:1273.530000px;}
.y28_c01276{bottom:1274.400000px;}
.y2b_c01276{bottom:1275.270000px;}
.y29_c01276{bottom:1276.125000px;}
.y2c_c01276{bottom:1279.590000px;}
.y27_c01276{bottom:1280.445000px;}
.y25_c01276{bottom:1290.810000px;}
.y21_c01276{bottom:1295.130000px;}
.y26_c01276{bottom:1296.000000px;}
.y24_c01276{bottom:1296.870000px;}
.y23_c01276{bottom:1297.725000px;}
.y22_c01276{bottom:1298.595000px;}
.y20_c01276{bottom:1299.450000px;}
.y1f_c01276{bottom:1310.685000px;}
.y1c_c01276{bottom:1312.410000px;}
.y1a_c01276{bottom:1313.280000px;}
.y1b_c01276{bottom:1314.150000px;}
.y16_c01276{bottom:1315.005000px;}
.y17_c01276{bottom:1315.875000px;}
.y1d_c01276{bottom:1317.600000px;}
.y19_c01276{bottom:1319.325000px;}
.y18_c01276{bottom:1320.195000px;}
.y1e_c01276{bottom:1325.370000px;}
.y15_c01276{bottom:1327.110000px;}
.ye_c01276{bottom:1327.965000px;}
.y10_c01276{bottom:1330.560000px;}
.y12_c01276{bottom:1333.155000px;}
.y14_c01276{bottom:1334.010000px;}
.yd_c01276{bottom:1334.880000px;}
.ya_c01276{bottom:1336.605000px;}
.y13_c01276{bottom:1338.330000px;}
.y9_c01276{bottom:1339.200000px;}
.yb_c01276{bottom:1340.070000px;}
.yc_c01276{bottom:1340.925000px;}
.yf_c01276{bottom:1345.245000px;}
.y11_c01276{bottom:1353.030000px;}
.y6_c01276{bottom:1359.075000px;}
.y2_c01276{bottom:1362.525000px;}
.y7_c01276{bottom:1363.395000px;}
.y8_c01276{bottom:1364.250000px;}
.y5_c01276{bottom:1365.990000px;}
.y3_c01276{bottom:1366.845000px;}
.y4_c01276{bottom:1367.715000px;}
.y1_c01276{bottom:1389.315000px;}
.h11_c01276{height:3.110063px;}
.h16_c01276{height:5.399414px;}
.h2_c01276{height:6.209326px;}
.h1a_c01276{height:9.340986px;}
.h23_c01276{height:12.418652px;}
.h12_c01276{height:15.550313px;}
.h1d_c01276{height:18.681973px;}
.h1c_c01276{height:21.759639px;}
.hf_c01276{height:24.891299px;}
.h19_c01276{height:27.968965px;}
.h18_c01276{height:31.100625px;}
.h1b_c01276{height:34.232285px;}
.h22_c01276{height:37.309951px;}
.h3_c01276{height:40.441611px;}
.h1e_c01276{height:43.519277px;}
.hb_c01276{height:46.650937px;}
.hc_c01276{height:49.782598px;}
.h17_c01276{height:52.860264px;}
.h8_c01276{height:55.991924px;}
.h7_c01276{height:59.069590px;}
.h5_c01276{height:62.201250px;}
.h4_c01276{height:65.332910px;}
.h14_c01276{height:68.410576px;}
.h6_c01276{height:71.542236px;}
.h1f_c01276{height:74.619902px;}
.hd_c01276{height:77.751563px;}
.h21_c01276{height:80.883223px;}
.h9_c01276{height:83.960889px;}
.ha_c01276{height:87.092549px;}
.he_c01276{height:90.170215px;}
.h13_c01276{height:93.301875px;}
.h10_c01276{height:99.511201px;}
.h20_c01276{height:102.642861px;}
.h15_c01276{height:121.270840px;}
.h1_c01276{height:1518.750000px;}
.h0_c01276{height:1518.915000px;}
.w0_c01276{width:1085.190000px;}
.w1_c01276{width:1085.250000px;}
.x0_c01276{left:0.000000px;}
.x11b_c01276{left:168.479550px;}
.x117_c01276{left:175.395000px;}
.x11c_c01276{left:183.165000px;}
.xdd_c01276{left:184.890000px;}
.x116_c01276{left:188.355000px;}
.x118_c01276{left:190.080000px;}
.x11f_c01276{left:194.400000px;}
.x11d_c01276{left:196.995000px;}
.xc5_c01276{left:199.590000px;}
.x119_c01276{left:201.315000px;}
.x114_c01276{left:206.490000px;}
.x51_c01276{left:208.230000px;}
.x10b_c01276{left:211.680000px;}
.xe3_c01276{left:213.405000px;}
.xe7_c01276{left:216.000000px;}
.x52_c01276{left:218.595000px;}
.xc7_c01276{left:220.320000px;}
.xc1_c01276{left:226.365000px;}
.x80_c01276{left:228.090000px;}
.x8a_c01276{left:230.685000px;}
.x23_c01276{left:232.410000px;}
.x90_c01276{left:234.150000px;}
.x5c_c01276{left:236.730000px;}
.x3_c01276{left:239.325000px;}
.x10_c01276{left:241.050000px;}
.xde_c01276{left:243.645000px;}
.x45_c01276{left:246.240000px;}
.xf5_c01276{left:248.835000px;}
.x53_c01276{left:250.560000px;}
.xee_c01276{left:252.285000px;}
.x91_c01276{left:254.010000px;}
.x104_c01276{left:255.750000px;}
.x77_c01276{left:257.475000px;}
.x10c_c01276{left:259.200000px;}
.x3e_c01276{left:261.795000px;}
.xd1_c01276{left:263.520000px;}
.x46_c01276{left:267.840000px;}
.x5d_c01276{left:273.030000px;}
.x11_c01276{left:274.755000px;}
.x47_c01276{left:276.480000px;}
.x24_c01276{left:278.205000px;}
.x66_c01276{left:281.670000px;}
.x10f_c01276{left:285.120000px;}
.x6b_c01276{left:286.845000px;}
.x96_c01276{left:290.310000px;}
.x32_c01276{left:292.890000px;}
.xf1_c01276{left:294.630000px;}
.x12_c01276{left:298.080000px;}
.x9d_c01276{left:299.805000px;}
.x9e_c01276{left:302.400000px;}
.x25_c01276{left:306.720000px;}
.x81_c01276{left:311.040000px;}
.xb8_c01276{left:313.635000px;}
.xef_c01276{left:317.955000px;}
.x54_c01276{left:319.680000px;}
.xb9_c01276{left:322.275000px;}
.x97_c01276{left:325.725000px;}
.x13_c01276{left:329.190000px;}
.xaa_c01276{left:333.510000px;}
.xc8_c01276{left:336.090000px;}
.xa4_c01276{left:338.685000px;}
.x48_c01276{left:341.280000px;}
.xe8_c01276{left:343.005000px;}
.xab_c01276{left:344.730000px;}
.x9f_c01276{left:346.470000px;}
.x11e_c01276{left:349.050000px;}
.xbc_c01276{left:350.790000px;}
.xf6_c01276{left:352.515000px;}
.x82_c01276{left:355.965000px;}
.x4_c01276{left:358.560000px;}
.x26_c01276{left:360.285000px;}
.x5e_c01276{left:363.750000px;}
.x105_c01276{left:365.475000px;}
.xce_c01276{left:367.200000px;}
.x33_c01276{left:369.795000px;}
.xd2_c01276{left:371.520000px;}
.xa0_c01276{left:374.115000px;}
.x14_c01276{left:375.840000px;}
.x78_c01276{left:377.565000px;}
.x49_c01276{left:381.030000px;}
.xfe_c01276{left:382.755000px;}
.x27_c01276{left:385.350000px;}
.x67_c01276{left:388.800000px;}
.xe4_c01276{left:390.525000px;}
.xd5_c01276{left:393.120000px;}
.x5_c01276{left:395.715000px;}
.x98_c01276{left:397.440000px;}
.xc9_c01276{left:399.165000px;}
.xbd_c01276{left:400.890000px;}
.xb2_c01276{left:402.630000px;}
.xfb_c01276{left:405.210000px;}
.x15_c01276{left:407.805000px;}
.xd3_c01276{left:409.530000px;}
.x3f_c01276{left:412.995000px;}
.x34_c01276{left:415.590000px;}
.xdf_c01276{left:417.315000px;}
.x68_c01276{left:419.910000px;}
.xa5_c01276{left:426.810000px;}
.xa1_c01276{left:428.550000px;}
.x108_c01276{left:430.275000px;}
.xe9_c01276{left:432.000000px;}
.x4a_c01276{left:433.725000px;}
.x28_c01276{left:436.320000px;}
.x6c_c01276{left:439.770000px;}
.x10d_c01276{left:442.365000px;}
.x55_c01276{left:445.830000px;}
.x6d_c01276{left:447.555000px;}
.xb5_c01276{left:449.280000px;}
.xa6_c01276{left:451.875000px;}
.x16_c01276{left:453.600000px;}
.xf0_c01276{left:455.325000px;}
.x6_c01276{left:457.920000px;}
.x35_c01276{left:462.240000px;}
.x17_c01276{left:463.965000px;}
.x8b_c01276{left:465.690000px;}
.x40_c01276{left:467.430000px;}
.xfc_c01276{left:471.750000px;}
.x6e_c01276{left:473.475000px;}
.x99_c01276{left:475.200000px;}
.xd6_c01276{left:476.925000px;}
.x109_c01276{left:479.520000px;}
.x79_c01276{left:481.245000px;}
.xca_c01276{left:482.970000px;}
.x8c_c01276{left:485.565000px;}
.x29_c01276{left:487.290000px;}
.x18_c01276{left:489.030000px;}
.x83_c01276{left:493.350000px;}
.x56_c01276{left:495.930000px;}
.x6f_c01276{left:497.670000px;}
.x7_c01276{left:500.250000px;}
.x36_c01276{left:501.990000px;}
.xea_c01276{left:503.715000px;}
.x7a_c01276{left:508.035000px;}
.x9a_c01276{left:509.760000px;}
.x4b_c01276{left:512.355000px;}
.x84_c01276{left:514.080000px;}
.x115_c01276{left:515.805000px;}
.x92_c01276{left:518.400000px;}
.x8_c01276{left:520.995000px;}
.xd8_c01276{left:522.720000px;}
.xba_c01276{left:524.445000px;}
.x2a_c01276{left:527.040000px;}
.x5f_c01276{left:532.230000px;}
.xc2_c01276{left:533.955000px;}
.x41_c01276{left:540.000000px;}
.xac_c01276{left:543.450000px;}
.x19_c01276{left:545.190000px;}
.xcf_c01276{left:546.915000px;}
.x1a_c01276{left:548.640000px;}
.x60_c01276{left:550.365000px;}
.x7b_c01276{left:552.960000px;}
.xf8_c01276{left:555.555000px;}
.xb3_c01276{left:558.150000px;}
.x85_c01276{left:559.875000px;}
.x37_c01276{left:561.600000px;}
.xad_c01276{left:563.325000px;}
.x70_c01276{left:565.920000px;}
.x4c_c01276{left:567.645000px;}
.x2b_c01276{left:570.240000px;}
.x112_c01276{left:571.965000px;}
.x7c_c01276{left:573.690000px;}
.x9_c01276{left:575.430000px;}
.x2c_c01276{left:577.155000px;}
.xbb_c01276{left:578.880000px;}
.x1b_c01276{left:580.605000px;}
.x69_c01276{left:582.330000px;}
.xfd_c01276{left:584.070000px;}
.x1c_c01276{left:585.795000px;}
.x57_c01276{left:588.390000px;}
.x93_c01276{left:590.115000px;}
.xae_c01276{left:591.840000px;}
.xa2_c01276{left:595.290000px;}
.xeb_c01276{left:597.030000px;}
.x106_c01276{left:598.755000px;}
.x1_c01276{left:601.350000px;}
.x1d_c01276{left:603.075000px;}
.xb6_c01276{left:604.800000px;}
.xa7_c01276{left:607.395000px;}
.xda_c01276{left:609.120000px;}
.x86_c01276{left:610.845000px;}
.x4d_c01276{left:613.440000px;}
.x71_c01276{left:615.165000px;}
.xa_c01276{left:616.890000px;}
.x1e_c01276{left:619.485000px;}
.x2_c01276{left:622.080000px;}
.x7d_c01276{left:623.805000px;}
.x10e_c01276{left:625.530000px;}
.x87_c01276{left:628.125000px;}
.x42_c01276{left:629.850000px;}
.x38_c01276{left:632.445000px;}
.x1f_c01276{left:635.040000px;}
.x43_c01276{left:639.360000px;}
.x102_c01276{left:642.810000px;}
.xb_c01276{left:644.550000px;}
.x61_c01276{left:647.130000px;}
.xbe_c01276{left:650.595000px;}
.xf3_c01276{left:654.915000px;}
.x2d_c01276{left:656.640000px;}
.x20_c01276{left:660.090000px;}
.x113_c01276{left:661.830000px;}
.xf2_c01276{left:664.410000px;}
.xc6_c01276{left:666.150000px;}
.xa8_c01276{left:669.600000px;}
.xc_c01276{left:672.195000px;}
.x39_c01276{left:674.790000px;}
.xc3_c01276{left:678.240000px;}
.x2e_c01276{left:679.965000px;}
.x8d_c01276{left:681.690000px;}
.x72_c01276{left:684.285000px;}
.xd4_c01276{left:686.880000px;}
.x62_c01276{left:690.330000px;}
.xb4_c01276{left:692.070000px;}
.x3a_c01276{left:693.795000px;}
.x4e_c01276{left:695.520000px;}
.xd_c01276{left:697.245000px;}
.xdb_c01276{left:699.840000px;}
.xd9_c01276{left:702.435000px;}
.xf7_c01276{left:705.030000px;}
.x94_c01276{left:706.755000px;}
.x10a_c01276{left:708.480000px;}
.xcb_c01276{left:710.205000px;}
.x9b_c01276{left:712.800000px;}
.x58_c01276{left:716.250000px;}
.xe_c01276{left:718.845000px;}
.x21_c01276{left:723.165000px;}
.x88_c01276{left:724.890000px;}
.xe5_c01276{left:726.630000px;}
.xaf_c01276{left:729.210000px;}
.x95_c01276{left:731.805000px;}
.xbf_c01276{left:733.530000px;}
.x4f_c01276{left:736.995000px;}
.xf_c01276{left:738.720000px;}
.xcc_c01276{left:740.445000px;}
.xe6_c01276{left:743.040000px;}
.x59_c01276{left:745.635000px;}
.xe0_c01276{left:747.360000px;}
.xff_c01276{left:749.955000px;}
.xc4_c01276{left:753.405000px;}
.xdc_c01276{left:755.130000px;}
.xb7_c01276{left:757.725000px;}
.x44_c01276{left:759.450000px;}
.x103_c01276{left:762.915000px;}
.x2f_c01276{left:768.960000px;}
.xf4_c01276{left:770.685000px;}
.x6a_c01276{left:774.150000px;}
.x110_c01276{left:777.600000px;}
.xd0_c01276{left:779.325000px;}
.xec_c01276{left:783.645000px;}
.x5a_c01276{left:787.110000px;}
.x73_c01276{left:790.560000px;}
.x8e_c01276{left:792.285000px;}
.x3b_c01276{left:794.010000px;}
.xa3_c01276{left:796.605000px;}
.x22_c01276{left:799.200000px;}
.xf9_c01276{left:803.520000px;}
.x63_c01276{left:805.245000px;}
.xe1_c01276{left:806.970000px;}
.x8f_c01276{left:812.160000px;}
.xed_c01276{left:814.755000px;}
.xb0_c01276{left:819.075000px;}
.xcd_c01276{left:822.525000px;}
.x30_c01276{left:824.250000px;}
.x111_c01276{left:825.990000px;}
.x50_c01276{left:827.715000px;}
.x100_c01276{left:829.440000px;}
.xb1_c01276{left:831.165000px;}
.x89_c01276{left:832.890000px;}
.x3c_c01276{left:834.630000px;}
.x7e_c01276{left:836.355000px;}
.x74_c01276{left:838.950000px;}
.xfa_c01276{left:840.675000px;}
.x9c_c01276{left:842.400000px;}
.x31_c01276{left:844.125000px;}
.xa9_c01276{left:846.720000px;}
.xc0_c01276{left:849.315000px;}
.x107_c01276{left:852.765000px;}
.x101_c01276{left:856.230000px;}
.x64_c01276{left:860.550000px;}
.x3d_c01276{left:864.000000px;}
.xe2_c01276{left:866.595000px;}
.x65_c01276{left:870.915000px;}
.x5b_c01276{left:872.640000px;}
.x7f_c01276{left:876.960000px;}
.xd7_c01276{left:883.875000px;}
.x11a_c01276{left:885.600000px;}
.x75_c01276{left:888.195000px;}
.x76_c01276{left:908.070000px;}
.x123_c01276{left:1012.605000px;}
.x124_c01276{left:1032.480000px;}
.x120_c01276{left:1037.670000px;}
.x121_c01276{left:1047.165000px;}
.x122_c01276{left:1052.355048px;}
@media print{
.v0_c01276{vertical-align:0.000000pt;}
.ls1_c01276{letter-spacing:0.000000pt;}
.ls0_c01276{letter-spacing:38.994133pt;}
.ws0_c01276{word-spacing:0.000000pt;}
.fsf_c01276{font-size:3.072000pt;}
.fs14_c01276{font-size:5.333333pt;}
.fs0_c01276{font-size:6.133333pt;}
.fs18_c01276{font-size:9.226667pt;}
.fs21_c01276{font-size:12.266667pt;}
.fs10_c01276{font-size:15.360000pt;}
.fs1b_c01276{font-size:18.453333pt;}
.fs1a_c01276{font-size:21.493333pt;}
.fsd_c01276{font-size:24.586667pt;}
.fs17_c01276{font-size:27.626667pt;}
.fs16_c01276{font-size:30.720000pt;}
.fs19_c01276{font-size:33.813333pt;}
.fs20_c01276{font-size:36.853333pt;}
.fs1_c01276{font-size:39.946667pt;}
.fs1c_c01276{font-size:42.986667pt;}
.fs9_c01276{font-size:46.080000pt;}
.fsa_c01276{font-size:49.173333pt;}
.fs15_c01276{font-size:52.213333pt;}
.fs6_c01276{font-size:55.306667pt;}
.fs5_c01276{font-size:58.346667pt;}
.fs3_c01276{font-size:61.440000pt;}
.fs2_c01276{font-size:64.533333pt;}
.fs12_c01276{font-size:67.573333pt;}
.fs4_c01276{font-size:70.666667pt;}
.fs1d_c01276{font-size:73.706667pt;}
.fsb_c01276{font-size:76.800000pt;}
.fs1f_c01276{font-size:79.893333pt;}
.fs7_c01276{font-size:82.933333pt;}
.fs8_c01276{font-size:86.026667pt;}
.fsc_c01276{font-size:89.066667pt;}
.fs11_c01276{font-size:92.160000pt;}
.fse_c01276{font-size:98.293333pt;}
.fs1e_c01276{font-size:101.386667pt;}
.fs13_c01276{font-size:119.786667pt;}
.y0_c01276{bottom:0.000000pt;}
.y20a_c01276{bottom:156.666667pt;}
.y208_c01276{bottom:157.440000pt;}
.y20b_c01276{bottom:158.213333pt;}
.y209_c01276{bottom:159.746667pt;}
.y207_c01276{bottom:162.053333pt;}
.y204_c01276{bottom:162.813333pt;}
.y206_c01276{bottom:164.346667pt;}
.y205_c01276{bottom:172.800000pt;}
.y202_c01276{bottom:173.573333pt;}
.y1ff_c01276{bottom:174.333333pt;}
.y201_c01276{bottom:175.106667pt;}
.y1fe_c01276{bottom:175.866667pt;}
.y203_c01276{bottom:176.640000pt;}
.y1fd_c01276{bottom:178.173333pt;}
.y1fb_c01276{bottom:179.706667pt;}
.y200_c01276{bottom:180.480000pt;}
.y1fc_c01276{bottom:182.013333pt;}
.y1f8_c01276{bottom:192.000000pt;}
.y1f9_c01276{bottom:193.533333pt;}
.y1f7_c01276{bottom:194.306667pt;}
.y1f5_c01276{bottom:195.840000pt;}
.y1f2_c01276{bottom:196.613333pt;}
.y1f3_c01276{bottom:197.373333pt;}
.y1ef_c01276{bottom:198.146667pt;}
.y1fa_c01276{bottom:198.906667pt;}
.y1f6_c01276{bottom:199.680000pt;}
.y1f4_c01276{bottom:200.453333pt;}
.y1f0_c01276{bottom:202.746667pt;}
.y1ee_c01276{bottom:205.053333pt;}
.y1ec_c01276{bottom:211.200000pt;}
.y1eb_c01276{bottom:212.733333pt;}
.y1f1_c01276{bottom:213.506667pt;}
.y1e9_c01276{bottom:214.266667pt;}
.y1e7_c01276{bottom:215.040000pt;}
.y1e8_c01276{bottom:215.813333pt;}
.y1ea_c01276{bottom:218.880000pt;}
.y1e5_c01276{bottom:220.413333pt;}
.y1ed_c01276{bottom:221.946667pt;}
.y1e6_c01276{bottom:223.493333pt;}
.y1e2_c01276{bottom:229.626667pt;}
.y1e4_c01276{bottom:231.173333pt;}
.y1de_c01276{bottom:231.933333pt;}
.y1e0_c01276{bottom:232.706667pt;}
.y1db_c01276{bottom:233.466667pt;}
.y1e3_c01276{bottom:234.240000pt;}
.y1da_c01276{bottom:235.013333pt;}
.y1e1_c01276{bottom:235.773333pt;}
.y1dc_c01276{bottom:236.546667pt;}
.y1d9_c01276{bottom:237.306667pt;}
.y1dd_c01276{bottom:238.080000pt;}
.y1df_c01276{bottom:244.986667pt;}
.y1d8_c01276{bottom:248.066667pt;}
.y1d7_c01276{bottom:249.600000pt;}
.y1d5_c01276{bottom:250.373333pt;}
.y1d4_c01276{bottom:251.906667pt;}
.y1d3_c01276{bottom:253.440000pt;}
.y1d2_c01276{bottom:257.280000pt;}
.y1d6_c01276{bottom:261.120000pt;}
.y1d1_c01276{bottom:264.186667pt;}
.y1d0_c01276{bottom:265.733333pt;}
.y1cd_c01276{bottom:266.493333pt;}
.y1ce_c01276{bottom:267.266667pt;}
.y1cf_c01276{bottom:268.026667pt;}
.y1ca_c01276{bottom:270.333333pt;}
.y1c9_c01276{bottom:271.106667pt;}
.y1cc_c01276{bottom:272.640000pt;}
.y1cb_c01276{bottom:273.413333pt;}
.y20f_c01276{bottom:284.160000pt;}
.y1c8_c01276{bottom:284.933333pt;}
.y1c6_c01276{bottom:285.693333pt;}
.y1c3_c01276{bottom:287.226667pt;}
.y1c0_c01276{bottom:288.000000pt;}
.y1c7_c01276{bottom:288.773333pt;}
.y1c2_c01276{bottom:289.533333pt;}
.y1c4_c01276{bottom:290.306667pt;}
.y1c1_c01276{bottom:292.613333pt;}
.y1c5_c01276{bottom:293.373333pt;}
.y1be_c01276{bottom:301.826667pt;}
.y1bd_c01276{bottom:302.586667pt;}
.y1bc_c01276{bottom:304.133333pt;}
.y1ba_c01276{bottom:304.893333pt;}
.y1bb_c01276{bottom:305.666667pt;}
.y1bf_c01276{bottom:307.200000pt;}
.y1b9_c01276{bottom:310.266667pt;}
.y1b8_c01276{bottom:311.040000pt;}
.y1b4_c01276{bottom:322.560000pt;}
.y1b2_c01276{bottom:323.333333pt;}
.y1b1_c01276{bottom:324.093333pt;}
.y1b7_c01276{bottom:324.866667pt;}
.y1b3_c01276{bottom:327.933333pt;}
.y1b5_c01276{bottom:331.013333pt;}
.y1b6_c01276{bottom:334.853333pt;}
.y1b0_c01276{bottom:339.453333pt;}
.y1af_c01276{bottom:340.226667pt;}
.y1ae_c01276{bottom:340.986667pt;}
.y1ab_c01276{bottom:341.760000pt;}
.y1ad_c01276{bottom:343.293333pt;}
.y1a9_c01276{bottom:344.066667pt;}
.y1ac_c01276{bottom:345.600000pt;}
.y1aa_c01276{bottom:346.373333pt;}
.y1a8_c01276{bottom:351.746667pt;}
.y1a7_c01276{bottom:356.346667pt;}
.y1a5_c01276{bottom:357.893333pt;}
.y1a6_c01276{bottom:358.653333pt;}
.y1a2_c01276{bottom:359.426667pt;}
.y1a0_c01276{bottom:360.186667pt;}
.y1a4_c01276{bottom:360.960000pt;}
.y1a3_c01276{bottom:361.733333pt;}
.y1a1_c01276{bottom:362.493333pt;}
.y19f_c01276{bottom:364.800000pt;}
.y19e_c01276{bottom:367.106667pt;}
.y19d_c01276{bottom:367.866667pt;}
.y199_c01276{bottom:368.640000pt;}
.y197_c01276{bottom:369.413333pt;}
.y19c_c01276{bottom:370.173333pt;}
.y19b_c01276{bottom:370.946667pt;}
.y195_c01276{bottom:371.706667pt;}
.y198_c01276{bottom:372.480000pt;}
.y196_c01276{bottom:373.253333pt;}
.y19a_c01276{bottom:374.786667pt;}
.y193_c01276{bottom:375.546667pt;}
.y194_c01276{bottom:376.320000pt;}
.y190_c01276{bottom:377.093333pt;}
.y18e_c01276{bottom:379.386667pt;}
.y191_c01276{bottom:380.160000pt;}
.y192_c01276{bottom:381.693333pt;}
.y18d_c01276{bottom:382.466667pt;}
.y18f_c01276{bottom:383.226667pt;}
.y18c_c01276{bottom:393.213333pt;}
.y189_c01276{bottom:393.986667pt;}
.y18a_c01276{bottom:394.746667pt;}
.y187_c01276{bottom:397.053333pt;}
.y18b_c01276{bottom:399.360000pt;}
.y188_c01276{bottom:400.133333pt;}
.y185_c01276{bottom:411.653333pt;}
.y186_c01276{bottom:413.946667pt;}
.y17f_c01276{bottom:414.720000pt;}
.y180_c01276{bottom:415.493333pt;}
.y182_c01276{bottom:416.253333pt;}
.y183_c01276{bottom:418.560000pt;}
.y181_c01276{bottom:419.333333pt;}
.y184_c01276{bottom:420.093333pt;}
.y17e_c01276{bottom:427.773333pt;}
.y17c_c01276{bottom:430.080000pt;}
.y178_c01276{bottom:430.853333pt;}
.y177_c01276{bottom:432.386667pt;}
.y17d_c01276{bottom:433.146667pt;}
.y17a_c01276{bottom:434.693333pt;}
.y179_c01276{bottom:436.226667pt;}
.y17b_c01276{bottom:447.746667pt;}
.y174_c01276{bottom:450.053333pt;}
.y16f_c01276{bottom:450.813333pt;}
.y172_c01276{bottom:452.346667pt;}
.y16e_c01276{bottom:453.120000pt;}
.y171_c01276{bottom:454.653333pt;}
.y170_c01276{bottom:455.426667pt;}
.y176_c01276{bottom:456.186667pt;}
.y173_c01276{bottom:458.493333pt;}
.y175_c01276{bottom:465.413333pt;}
.y16c_c01276{bottom:466.173333pt;}
.y16b_c01276{bottom:466.946667pt;}
.y169_c01276{bottom:469.253333pt;}
.y16a_c01276{bottom:470.013333pt;}
.y16d_c01276{bottom:470.786667pt;}
.y166_c01276{bottom:473.093333pt;}
.y167_c01276{bottom:474.626667pt;}
.y168_c01276{bottom:476.160000pt;}
.y165_c01276{bottom:483.066667pt;}
.y163_c01276{bottom:484.613333pt;}
.y164_c01276{bottom:485.373333pt;}
.y160_c01276{bottom:486.146667pt;}
.y15f_c01276{bottom:487.680000pt;}
.y15d_c01276{bottom:489.213333pt;}
.y161_c01276{bottom:489.986667pt;}
.y162_c01276{bottom:490.746667pt;}
.y15e_c01276{bottom:492.293333pt;}
.y15b_c01276{bottom:503.040000pt;}
.y15a_c01276{bottom:503.813333pt;}
.y158_c01276{bottom:504.573333pt;}
.y155_c01276{bottom:505.346667pt;}
.y15c_c01276{bottom:506.106667pt;}
.y159_c01276{bottom:506.880000pt;}
.y156_c01276{bottom:508.413333pt;}
.y157_c01276{bottom:510.720000pt;}
.y154_c01276{bottom:521.466667pt;}
.y153_c01276{bottom:522.240000pt;}
.y14f_c01276{bottom:523.013333pt;}
.y152_c01276{bottom:523.773333pt;}
.y151_c01276{bottom:526.080000pt;}
.y150_c01276{bottom:526.853333pt;}
.y14e_c01276{bottom:528.386667pt;}
.y14d_c01276{bottom:536.066667pt;}
.y14c_c01276{bottom:539.133333pt;}
.y149_c01276{bottom:539.906667pt;}
.y14b_c01276{bottom:540.666667pt;}
.y146_c01276{bottom:541.440000pt;}
.y145_c01276{bottom:542.213333pt;}
.y14a_c01276{bottom:543.746667pt;}
.y148_c01276{bottom:544.506667pt;}
.y147_c01276{bottom:545.280000pt;}
.y144_c01276{bottom:546.053333pt;}
.y143_c01276{bottom:546.813333pt;}
.y141_c01276{bottom:556.800000pt;}
.y140_c01276{bottom:558.333333pt;}
.y13c_c01276{bottom:559.866667pt;}
.y13f_c01276{bottom:560.640000pt;}
.y13b_c01276{bottom:562.173333pt;}
.y13e_c01276{bottom:562.946667pt;}
.y13d_c01276{bottom:563.706667pt;}
.y142_c01276{bottom:571.386667pt;}
.y13a_c01276{bottom:572.933333pt;}
.y138_c01276{bottom:573.693333pt;}
.y134_c01276{bottom:576.000000pt;}
.y139_c01276{bottom:577.533333pt;}
.y137_c01276{bottom:578.306667pt;}
.y136_c01276{bottom:579.066667pt;}
.y135_c01276{bottom:579.840000pt;}
.y132_c01276{bottom:580.613333pt;}
.y133_c01276{bottom:581.373333pt;}
.y131_c01276{bottom:590.586667pt;}
.y130_c01276{bottom:591.360000pt;}
.y12d_c01276{bottom:592.893333pt;}
.y20e_c01276{bottom:594.426667pt;}
.y12a_c01276{bottom:595.200000pt;}
.y129_c01276{bottom:595.973333pt;}
.y12b_c01276{bottom:596.733333pt;}
.y12e_c01276{bottom:597.506667pt;}
.y12c_c01276{bottom:598.266667pt;}
.y12f_c01276{bottom:599.040000pt;}
.y128_c01276{bottom:609.026667pt;}
.y125_c01276{bottom:610.560000pt;}
.y124_c01276{bottom:611.333333pt;}
.y122_c01276{bottom:612.866667pt;}
.y121_c01276{bottom:614.400000pt;}
.y127_c01276{bottom:615.173333pt;}
.y123_c01276{bottom:615.933333pt;}
.y126_c01276{bottom:616.706667pt;}
.y11f_c01276{bottom:626.693333pt;}
.y11a_c01276{bottom:628.226667pt;}
.y11d_c01276{bottom:628.986667pt;}
.y11c_c01276{bottom:629.760000pt;}
.y120_c01276{bottom:630.533333pt;}
.y11b_c01276{bottom:632.066667pt;}
.y11e_c01276{bottom:632.826667pt;}
.y118_c01276{bottom:633.600000pt;}
.y119_c01276{bottom:641.280000pt;}
.y116_c01276{bottom:645.120000pt;}
.y112_c01276{bottom:646.653333pt;}
.y10e_c01276{bottom:647.426667pt;}
.y111_c01276{bottom:648.186667pt;}
.y114_c01276{bottom:648.960000pt;}
.y117_c01276{bottom:649.733333pt;}
.y113_c01276{bottom:650.493333pt;}
.y115_c01276{bottom:651.266667pt;}
.y10f_c01276{bottom:652.800000pt;}
.y10d_c01276{bottom:653.573333pt;}
.y110_c01276{bottom:655.866667pt;}
.y10c_c01276{bottom:656.640000pt;}
.y106_c01276{bottom:665.093333pt;}
.y10b_c01276{bottom:665.853333pt;}
.y109_c01276{bottom:667.386667pt;}
.y10a_c01276{bottom:668.160000pt;}
.y107_c01276{bottom:669.693333pt;}
.y108_c01276{bottom:670.466667pt;}
.y105_c01276{bottom:679.680000pt;}
.y103_c01276{bottom:681.213333pt;}
.y104_c01276{bottom:681.986667pt;}
.yff_c01276{bottom:682.746667pt;}
.y102_c01276{bottom:683.520000pt;}
.yfe_c01276{bottom:684.293333pt;}
.yfd_c01276{bottom:685.053333pt;}
.y100_c01276{bottom:688.133333pt;}
.y101_c01276{bottom:694.266667pt;}
.yfb_c01276{bottom:699.653333pt;}
.yf8_c01276{bottom:700.413333pt;}
.yfa_c01276{bottom:701.186667pt;}
.yf5_c01276{bottom:702.720000pt;}
.yfc_c01276{bottom:703.493333pt;}
.yf6_c01276{bottom:704.253333pt;}
.yf9_c01276{bottom:705.026667pt;}
.yf7_c01276{bottom:705.786667pt;}
.yf4_c01276{bottom:707.333333pt;}
.yf3_c01276{bottom:715.773333pt;}
.yf2_c01276{bottom:716.546667pt;}
.yef_c01276{bottom:718.853333pt;}
.yf1_c01276{bottom:722.693333pt;}
.yf0_c01276{bottom:723.453333pt;}
.yee_c01276{bottom:733.440000pt;}
.yed_c01276{bottom:734.213333pt;}
.yec_c01276{bottom:735.746667pt;}
.yeb_c01276{bottom:736.506667pt;}
.ye8_c01276{bottom:737.280000pt;}
.ye9_c01276{bottom:738.053333pt;}
.ye5_c01276{bottom:738.813333pt;}
.yea_c01276{bottom:739.586667pt;}
.ye6_c01276{bottom:741.893333pt;}
.ye7_c01276{bottom:742.653333pt;}
.ye2_c01276{bottom:751.866667pt;}
.ye4_c01276{bottom:752.640000pt;}
.ye3_c01276{bottom:753.413333pt;}
.ydb_c01276{bottom:754.173333pt;}
.yda_c01276{bottom:754.946667pt;}
.yde_c01276{bottom:755.706667pt;}
.ydc_c01276{bottom:756.480000pt;}
.ydf_c01276{bottom:758.013333pt;}
.ye1_c01276{bottom:758.786667pt;}
.ydd_c01276{bottom:759.546667pt;}
.ye0_c01276{bottom:768.000000pt;}
.yd9_c01276{bottom:769.533333pt;}
.yd8_c01276{bottom:771.066667pt;}
.yd5_c01276{bottom:771.840000pt;}
.yd1_c01276{bottom:772.613333pt;}
.yd3_c01276{bottom:773.373333pt;}
.yd6_c01276{bottom:774.906667pt;}
.yd7_c01276{bottom:775.680000pt;}
.yd4_c01276{bottom:776.453333pt;}
.yd2_c01276{bottom:777.213333pt;}
.yd0_c01276{bottom:777.986667pt;}
.ycf_c01276{bottom:778.746667pt;}
.yce_c01276{bottom:779.520000pt;}
.ycc_c01276{bottom:787.200000pt;}
.ycb_c01276{bottom:787.973333pt;}
.ycd_c01276{bottom:788.733333pt;}
.yc8_c01276{bottom:790.266667pt;}
.yca_c01276{bottom:791.813333pt;}
.yc9_c01276{bottom:794.106667pt;}
.yc7_c01276{bottom:794.880000pt;}
.yc6_c01276{bottom:795.653333pt;}
.yc5_c01276{bottom:801.786667pt;}
.yc0_c01276{bottom:804.866667pt;}
.yc3_c01276{bottom:807.173333pt;}
.ybd_c01276{bottom:807.933333pt;}
.yc4_c01276{bottom:808.706667pt;}
.yc1_c01276{bottom:810.240000pt;}
.yc2_c01276{bottom:811.013333pt;}
.ybe_c01276{bottom:813.306667pt;}
.ybf_c01276{bottom:814.080000pt;}
.ybc_c01276{bottom:817.146667pt;}
.ybb_c01276{bottom:820.226667pt;}
.yb7_c01276{bottom:826.373333pt;}
.yba_c01276{bottom:827.906667pt;}
.yb8_c01276{bottom:828.666667pt;}
.yb9_c01276{bottom:830.213333pt;}
.yb6_c01276{bottom:842.493333pt;}
.yb4_c01276{bottom:843.266667pt;}
.yb0_c01276{bottom:844.026667pt;}
.yb3_c01276{bottom:844.800000pt;}
.yae_c01276{bottom:845.573333pt;}
.yaf_c01276{bottom:846.333333pt;}
.yb2_c01276{bottom:847.106667pt;}
.yb5_c01276{bottom:847.866667pt;}
.yb1_c01276{bottom:848.640000pt;}
.yac_c01276{bottom:860.933333pt;}
.ya7_c01276{bottom:862.466667pt;}
.yab_c01276{bottom:864.000000pt;}
.yad_c01276{bottom:864.773333pt;}
.ya9_c01276{bottom:865.533333pt;}
.ya8_c01276{bottom:867.066667pt;}
.yaa_c01276{bottom:873.986667pt;}
.ya6_c01276{bottom:877.053333pt;}
.ya5_c01276{bottom:878.586667pt;}
.ya1_c01276{bottom:879.360000pt;}
.ya2_c01276{bottom:880.133333pt;}
.ya0_c01276{bottom:881.666667pt;}
.ya4_c01276{bottom:883.200000pt;}
.ya3_c01276{bottom:884.733333pt;}
.y9e_c01276{bottom:897.026667pt;}
.y9f_c01276{bottom:900.093333pt;}
.y9b_c01276{bottom:900.866667pt;}
.y9a_c01276{bottom:901.626667pt;}
.y9c_c01276{bottom:902.400000pt;}
.y9d_c01276{bottom:903.173333pt;}
.y20c_c01276{bottom:905.466667pt;}
.y20d_c01276{bottom:908.546667pt;}
.y99_c01276{bottom:913.920000pt;}
.y94_c01276{bottom:916.226667pt;}
.y97_c01276{bottom:916.986667pt;}
.y95_c01276{bottom:917.760000pt;}
.y93_c01276{bottom:918.533333pt;}
.y96_c01276{bottom:920.066667pt;}
.y98_c01276{bottom:920.826667pt;}
.y91_c01276{bottom:932.346667pt;}
.y8f_c01276{bottom:933.893333pt;}
.y92_c01276{bottom:934.653333pt;}
.y8c_c01276{bottom:935.426667pt;}
.y8b_c01276{bottom:936.186667pt;}
.y89_c01276{bottom:936.960000pt;}
.y8e_c01276{bottom:937.733333pt;}
.y90_c01276{bottom:938.493333pt;}
.y8d_c01276{bottom:939.266667pt;}
.y8a_c01276{bottom:940.026667pt;}
.y86_c01276{bottom:948.480000pt;}
.y88_c01276{bottom:949.253333pt;}
.y87_c01276{bottom:950.013333pt;}
.y84_c01276{bottom:952.320000pt;}
.y83_c01276{bottom:953.093333pt;}
.y85_c01276{bottom:953.853333pt;}
.y82_c01276{bottom:955.386667pt;}
.y81_c01276{bottom:956.933333pt;}
.y80_c01276{bottom:966.906667pt;}
.y7d_c01276{bottom:969.213333pt;}
.y7c_c01276{bottom:969.986667pt;}
.y79_c01276{bottom:970.746667pt;}
.y7f_c01276{bottom:972.293333pt;}
.y7e_c01276{bottom:973.053333pt;}
.y7a_c01276{bottom:974.586667pt;}
.y7b_c01276{bottom:975.360000pt;}
.y78_c01276{bottom:976.893333pt;}
.y74_c01276{bottom:985.346667pt;}
.y73_c01276{bottom:986.880000pt;}
.y70_c01276{bottom:987.653333pt;}
.y71_c01276{bottom:988.413333pt;}
.y77_c01276{bottom:989.186667pt;}
.y76_c01276{bottom:989.946667pt;}
.y75_c01276{bottom:992.253333pt;}
.y72_c01276{bottom:993.026667pt;}
.y6e_c01276{bottom:1003.013333pt;}
.y6c_c01276{bottom:1004.546667pt;}
.y69_c01276{bottom:1005.306667pt;}
.y68_c01276{bottom:1006.080000pt;}
.y66_c01276{bottom:1006.853333pt;}
.y6f_c01276{bottom:1007.613333pt;}
.y6d_c01276{bottom:1008.386667pt;}
.y6b_c01276{bottom:1009.920000pt;}
.y6a_c01276{bottom:1010.693333pt;}
.y67_c01276{bottom:1011.453333pt;}
.y63_c01276{bottom:1021.440000pt;}
.y60_c01276{bottom:1022.213333pt;}
.y5e_c01276{bottom:1023.746667pt;}
.y62_c01276{bottom:1024.506667pt;}
.y64_c01276{bottom:1026.053333pt;}
.y61_c01276{bottom:1028.346667pt;}
.y5f_c01276{bottom:1029.120000pt;}
.y5d_c01276{bottom:1029.893333pt;}
.y65_c01276{bottom:1037.573333pt;}
.y5c_c01276{bottom:1039.866667pt;}
.y59_c01276{bottom:1041.413333pt;}
.y5a_c01276{bottom:1042.173333pt;}
.y57_c01276{bottom:1043.706667pt;}
.y55_c01276{bottom:1044.480000pt;}
.y5b_c01276{bottom:1045.253333pt;}
.y56_c01276{bottom:1046.013333pt;}
.y58_c01276{bottom:1046.786667pt;}
.y54_c01276{bottom:1047.546667pt;}
.y52_c01276{bottom:1057.533333pt;}
.y4f_c01276{bottom:1059.066667pt;}
.y4e_c01276{bottom:1059.840000pt;}
.y4d_c01276{bottom:1060.613333pt;}
.y4c_c01276{bottom:1061.373333pt;}
.y53_c01276{bottom:1062.146667pt;}
.y51_c01276{bottom:1063.680000pt;}
.y50_c01276{bottom:1070.586667pt;}
.y4a_c01276{bottom:1073.666667pt;}
.y45_c01276{bottom:1077.506667pt;}
.y44_c01276{bottom:1078.266667pt;}
.y49_c01276{bottom:1079.040000pt;}
.y43_c01276{bottom:1079.813333pt;}
.y46_c01276{bottom:1080.573333pt;}
.y4b_c01276{bottom:1081.346667pt;}
.y47_c01276{bottom:1082.880000pt;}
.y42_c01276{bottom:1083.653333pt;}
.y38_c01276{bottom:1086.720000pt;}
.y48_c01276{bottom:1088.253333pt;}
.y41_c01276{bottom:1094.400000pt;}
.y3d_c01276{bottom:1095.173333pt;}
.y3c_c01276{bottom:1095.933333pt;}
.y40_c01276{bottom:1097.466667pt;}
.y3f_c01276{bottom:1099.013333pt;}
.y3e_c01276{bottom:1099.773333pt;}
.y3b_c01276{bottom:1100.546667pt;}
.y3a_c01276{bottom:1102.080000pt;}
.y39_c01276{bottom:1102.853333pt;}
.y37_c01276{bottom:1111.293333pt;}
.y36_c01276{bottom:1112.066667pt;}
.y34_c01276{bottom:1113.600000pt;}
.y32_c01276{bottom:1114.373333pt;}
.y31_c01276{bottom:1115.133333pt;}
.y2f_c01276{bottom:1116.666667pt;}
.y30_c01276{bottom:1117.440000pt;}
.y33_c01276{bottom:1118.213333pt;}
.y35_c01276{bottom:1128.960000pt;}
.y2e_c01276{bottom:1129.733333pt;}
.y2d_c01276{bottom:1130.493333pt;}
.y2a_c01276{bottom:1132.026667pt;}
.y28_c01276{bottom:1132.800000pt;}
.y2b_c01276{bottom:1133.573333pt;}
.y29_c01276{bottom:1134.333333pt;}
.y2c_c01276{bottom:1137.413333pt;}
.y27_c01276{bottom:1138.173333pt;}
.y25_c01276{bottom:1147.386667pt;}
.y21_c01276{bottom:1151.226667pt;}
.y26_c01276{bottom:1152.000000pt;}
.y24_c01276{bottom:1152.773333pt;}
.y23_c01276{bottom:1153.533333pt;}
.y22_c01276{bottom:1154.306667pt;}
.y20_c01276{bottom:1155.066667pt;}
.y1f_c01276{bottom:1165.053333pt;}
.y1c_c01276{bottom:1166.586667pt;}
.y1a_c01276{bottom:1167.360000pt;}
.y1b_c01276{bottom:1168.133333pt;}
.y16_c01276{bottom:1168.893333pt;}
.y17_c01276{bottom:1169.666667pt;}
.y1d_c01276{bottom:1171.200000pt;}
.y19_c01276{bottom:1172.733333pt;}
.y18_c01276{bottom:1173.506667pt;}
.y1e_c01276{bottom:1178.106667pt;}
.y15_c01276{bottom:1179.653333pt;}
.ye_c01276{bottom:1180.413333pt;}
.y10_c01276{bottom:1182.720000pt;}
.y12_c01276{bottom:1185.026667pt;}
.y14_c01276{bottom:1185.786667pt;}
.yd_c01276{bottom:1186.560000pt;}
.ya_c01276{bottom:1188.093333pt;}
.y13_c01276{bottom:1189.626667pt;}
.y9_c01276{bottom:1190.400000pt;}
.yb_c01276{bottom:1191.173333pt;}
.yc_c01276{bottom:1191.933333pt;}
.yf_c01276{bottom:1195.773333pt;}
.y11_c01276{bottom:1202.693333pt;}
.y6_c01276{bottom:1208.066667pt;}
.y2_c01276{bottom:1211.133333pt;}
.y7_c01276{bottom:1211.906667pt;}
.y8_c01276{bottom:1212.666667pt;}
.y5_c01276{bottom:1214.213333pt;}
.y3_c01276{bottom:1214.973333pt;}
.y4_c01276{bottom:1215.746667pt;}
.y1_c01276{bottom:1234.946667pt;}
.h11_c01276{height:2.764500pt;}
.h16_c01276{height:4.799479pt;}
.h2_c01276{height:5.519401pt;}
.h1a_c01276{height:8.303099pt;}
.h23_c01276{height:11.038802pt;}
.h12_c01276{height:13.822500pt;}
.h1d_c01276{height:16.606198pt;}
.h1c_c01276{height:19.341901pt;}
.hf_c01276{height:22.125599pt;}
.h19_c01276{height:24.861302pt;}
.h18_c01276{height:27.645000pt;}
.h1b_c01276{height:30.428698pt;}
.h22_c01276{height:33.164401pt;}
.h3_c01276{height:35.948099pt;}
.h1e_c01276{height:38.683802pt;}
.hb_c01276{height:41.467500pt;}
.hc_c01276{height:44.251198pt;}
.h17_c01276{height:46.986901pt;}
.h8_c01276{height:49.770599pt;}
.h7_c01276{height:52.506302pt;}
.h5_c01276{height:55.290000pt;}
.h4_c01276{height:58.073698pt;}
.h14_c01276{height:60.809401pt;}
.h6_c01276{height:63.593099pt;}
.h1f_c01276{height:66.328802pt;}
.hd_c01276{height:69.112500pt;}
.h21_c01276{height:71.896198pt;}
.h9_c01276{height:74.631901pt;}
.ha_c01276{height:77.415599pt;}
.he_c01276{height:80.151302pt;}
.h13_c01276{height:82.935000pt;}
.h10_c01276{height:88.454401pt;}
.h20_c01276{height:91.238099pt;}
.h15_c01276{height:107.796302pt;}
.h1_c01276{height:1350.000000pt;}
.h0_c01276{height:1350.146667pt;}
.w0_c01276{width:964.613333pt;}
.w1_c01276{width:964.666667pt;}
.x0_c01276{left:0.000000pt;}
.x11b_c01276{left:149.759600pt;}
.x117_c01276{left:155.906667pt;}
.x11c_c01276{left:162.813333pt;}
.xdd_c01276{left:164.346667pt;}
.x116_c01276{left:167.426667pt;}
.x118_c01276{left:168.960000pt;}
.x11f_c01276{left:172.800000pt;}
.x11d_c01276{left:175.106667pt;}
.xc5_c01276{left:177.413333pt;}
.x119_c01276{left:178.946667pt;}
.x114_c01276{left:183.546667pt;}
.x51_c01276{left:185.093333pt;}
.x10b_c01276{left:188.160000pt;}
.xe3_c01276{left:189.693333pt;}
.xe7_c01276{left:192.000000pt;}
.x52_c01276{left:194.306667pt;}
.xc7_c01276{left:195.840000pt;}
.xc1_c01276{left:201.213333pt;}
.x80_c01276{left:202.746667pt;}
.x8a_c01276{left:205.053333pt;}
.x23_c01276{left:206.586667pt;}
.x90_c01276{left:208.133333pt;}
.x5c_c01276{left:210.426667pt;}
.x3_c01276{left:212.733333pt;}
.x10_c01276{left:214.266667pt;}
.xde_c01276{left:216.573333pt;}
.x45_c01276{left:218.880000pt;}
.xf5_c01276{left:221.186667pt;}
.x53_c01276{left:222.720000pt;}
.xee_c01276{left:224.253333pt;}
.x91_c01276{left:225.786667pt;}
.x104_c01276{left:227.333333pt;}
.x77_c01276{left:228.866667pt;}
.x10c_c01276{left:230.400000pt;}
.x3e_c01276{left:232.706667pt;}
.xd1_c01276{left:234.240000pt;}
.x46_c01276{left:238.080000pt;}
.x5d_c01276{left:242.693333pt;}
.x11_c01276{left:244.226667pt;}
.x47_c01276{left:245.760000pt;}
.x24_c01276{left:247.293333pt;}
.x66_c01276{left:250.373333pt;}
.x10f_c01276{left:253.440000pt;}
.x6b_c01276{left:254.973333pt;}
.x96_c01276{left:258.053333pt;}
.x32_c01276{left:260.346667pt;}
.xf1_c01276{left:261.893333pt;}
.x12_c01276{left:264.960000pt;}
.x9d_c01276{left:266.493333pt;}
.x9e_c01276{left:268.800000pt;}
.x25_c01276{left:272.640000pt;}
.x81_c01276{left:276.480000pt;}
.xb8_c01276{left:278.786667pt;}
.xef_c01276{left:282.626667pt;}
.x54_c01276{left:284.160000pt;}
.xb9_c01276{left:286.466667pt;}
.x97_c01276{left:289.533333pt;}
.x13_c01276{left:292.613333pt;}
.xaa_c01276{left:296.453333pt;}
.xc8_c01276{left:298.746667pt;}
.xa4_c01276{left:301.053333pt;}
.x48_c01276{left:303.360000pt;}
.xe8_c01276{left:304.893333pt;}
.xab_c01276{left:306.426667pt;}
.x9f_c01276{left:307.973333pt;}
.x11e_c01276{left:310.266667pt;}
.xbc_c01276{left:311.813333pt;}
.xf6_c01276{left:313.346667pt;}
.x82_c01276{left:316.413333pt;}
.x4_c01276{left:318.720000pt;}
.x26_c01276{left:320.253333pt;}
.x5e_c01276{left:323.333333pt;}
.x105_c01276{left:324.866667pt;}
.xce_c01276{left:326.400000pt;}
.x33_c01276{left:328.706667pt;}
.xd2_c01276{left:330.240000pt;}
.xa0_c01276{left:332.546667pt;}
.x14_c01276{left:334.080000pt;}
.x78_c01276{left:335.613333pt;}
.x49_c01276{left:338.693333pt;}
.xfe_c01276{left:340.226667pt;}
.x27_c01276{left:342.533333pt;}
.x67_c01276{left:345.600000pt;}
.xe4_c01276{left:347.133333pt;}
.xd5_c01276{left:349.440000pt;}
.x5_c01276{left:351.746667pt;}
.x98_c01276{left:353.280000pt;}
.xc9_c01276{left:354.813333pt;}
.xbd_c01276{left:356.346667pt;}
.xb2_c01276{left:357.893333pt;}
.xfb_c01276{left:360.186667pt;}
.x15_c01276{left:362.493333pt;}
.xd3_c01276{left:364.026667pt;}
.x3f_c01276{left:367.106667pt;}
.x34_c01276{left:369.413333pt;}
.xdf_c01276{left:370.946667pt;}
.x68_c01276{left:373.253333pt;}
.xa5_c01276{left:379.386667pt;}
.xa1_c01276{left:380.933333pt;}
.x108_c01276{left:382.466667pt;}
.xe9_c01276{left:384.000000pt;}
.x4a_c01276{left:385.533333pt;}
.x28_c01276{left:387.840000pt;}
.x6c_c01276{left:390.906667pt;}
.x10d_c01276{left:393.213333pt;}
.x55_c01276{left:396.293333pt;}
.x6d_c01276{left:397.826667pt;}
.xb5_c01276{left:399.360000pt;}
.xa6_c01276{left:401.666667pt;}
.x16_c01276{left:403.200000pt;}
.xf0_c01276{left:404.733333pt;}
.x6_c01276{left:407.040000pt;}
.x35_c01276{left:410.880000pt;}
.x17_c01276{left:412.413333pt;}
.x8b_c01276{left:413.946667pt;}
.x40_c01276{left:415.493333pt;}
.xfc_c01276{left:419.333333pt;}
.x6e_c01276{left:420.866667pt;}
.x99_c01276{left:422.400000pt;}
.xd6_c01276{left:423.933333pt;}
.x109_c01276{left:426.240000pt;}
.x79_c01276{left:427.773333pt;}
.xca_c01276{left:429.306667pt;}
.x8c_c01276{left:431.613333pt;}
.x29_c01276{left:433.146667pt;}
.x18_c01276{left:434.693333pt;}
.x83_c01276{left:438.533333pt;}
.x56_c01276{left:440.826667pt;}
.x6f_c01276{left:442.373333pt;}
.x7_c01276{left:444.666667pt;}
.x36_c01276{left:446.213333pt;}
.xea_c01276{left:447.746667pt;}
.x7a_c01276{left:451.586667pt;}
.x9a_c01276{left:453.120000pt;}
.x4b_c01276{left:455.426667pt;}
.x84_c01276{left:456.960000pt;}
.x115_c01276{left:458.493333pt;}
.x92_c01276{left:460.800000pt;}
.x8_c01276{left:463.106667pt;}
.xd8_c01276{left:464.640000pt;}
.xba_c01276{left:466.173333pt;}
.x2a_c01276{left:468.480000pt;}
.x5f_c01276{left:473.093333pt;}
.xc2_c01276{left:474.626667pt;}
.x41_c01276{left:480.000000pt;}
.xac_c01276{left:483.066667pt;}
.x19_c01276{left:484.613333pt;}
.xcf_c01276{left:486.146667pt;}
.x1a_c01276{left:487.680000pt;}
.x60_c01276{left:489.213333pt;}
.x7b_c01276{left:491.520000pt;}
.xf8_c01276{left:493.826667pt;}
.xb3_c01276{left:496.133333pt;}
.x85_c01276{left:497.666667pt;}
.x37_c01276{left:499.200000pt;}
.xad_c01276{left:500.733333pt;}
.x70_c01276{left:503.040000pt;}
.x4c_c01276{left:504.573333pt;}
.x2b_c01276{left:506.880000pt;}
.x112_c01276{left:508.413333pt;}
.x7c_c01276{left:509.946667pt;}
.x9_c01276{left:511.493333pt;}
.x2c_c01276{left:513.026667pt;}
.xbb_c01276{left:514.560000pt;}
.x1b_c01276{left:516.093333pt;}
.x69_c01276{left:517.626667pt;}
.xfd_c01276{left:519.173333pt;}
.x1c_c01276{left:520.706667pt;}
.x57_c01276{left:523.013333pt;}
.x93_c01276{left:524.546667pt;}
.xae_c01276{left:526.080000pt;}
.xa2_c01276{left:529.146667pt;}
.xeb_c01276{left:530.693333pt;}
.x106_c01276{left:532.226667pt;}
.x1_c01276{left:534.533333pt;}
.x1d_c01276{left:536.066667pt;}
.xb6_c01276{left:537.600000pt;}
.xa7_c01276{left:539.906667pt;}
.xda_c01276{left:541.440000pt;}
.x86_c01276{left:542.973333pt;}
.x4d_c01276{left:545.280000pt;}
.x71_c01276{left:546.813333pt;}
.xa_c01276{left:548.346667pt;}
.x1e_c01276{left:550.653333pt;}
.x2_c01276{left:552.960000pt;}
.x7d_c01276{left:554.493333pt;}
.x10e_c01276{left:556.026667pt;}
.x87_c01276{left:558.333333pt;}
.x42_c01276{left:559.866667pt;}
.x38_c01276{left:562.173333pt;}
.x1f_c01276{left:564.480000pt;}
.x43_c01276{left:568.320000pt;}
.x102_c01276{left:571.386667pt;}
.xb_c01276{left:572.933333pt;}
.x61_c01276{left:575.226667pt;}
.xbe_c01276{left:578.306667pt;}
.xf3_c01276{left:582.146667pt;}
.x2d_c01276{left:583.680000pt;}
.x20_c01276{left:586.746667pt;}
.x113_c01276{left:588.293333pt;}
.xf2_c01276{left:590.586667pt;}
.xc6_c01276{left:592.133333pt;}
.xa8_c01276{left:595.200000pt;}
.xc_c01276{left:597.506667pt;}
.x39_c01276{left:599.813333pt;}
.xc3_c01276{left:602.880000pt;}
.x2e_c01276{left:604.413333pt;}
.x8d_c01276{left:605.946667pt;}
.x72_c01276{left:608.253333pt;}
.xd4_c01276{left:610.560000pt;}
.x62_c01276{left:613.626667pt;}
.xb4_c01276{left:615.173333pt;}
.x3a_c01276{left:616.706667pt;}
.x4e_c01276{left:618.240000pt;}
.xd_c01276{left:619.773333pt;}
.xdb_c01276{left:622.080000pt;}
.xd9_c01276{left:624.386667pt;}
.xf7_c01276{left:626.693333pt;}
.x94_c01276{left:628.226667pt;}
.x10a_c01276{left:629.760000pt;}
.xcb_c01276{left:631.293333pt;}
.x9b_c01276{left:633.600000pt;}
.x58_c01276{left:636.666667pt;}
.xe_c01276{left:638.973333pt;}
.x21_c01276{left:642.813333pt;}
.x88_c01276{left:644.346667pt;}
.xe5_c01276{left:645.893333pt;}
.xaf_c01276{left:648.186667pt;}
.x95_c01276{left:650.493333pt;}
.xbf_c01276{left:652.026667pt;}
.x4f_c01276{left:655.106667pt;}
.xf_c01276{left:656.640000pt;}
.xcc_c01276{left:658.173333pt;}
.xe6_c01276{left:660.480000pt;}
.x59_c01276{left:662.786667pt;}
.xe0_c01276{left:664.320000pt;}
.xff_c01276{left:666.626667pt;}
.xc4_c01276{left:669.693333pt;}
.xdc_c01276{left:671.226667pt;}
.xb7_c01276{left:673.533333pt;}
.x44_c01276{left:675.066667pt;}
.x103_c01276{left:678.146667pt;}
.x2f_c01276{left:683.520000pt;}
.xf4_c01276{left:685.053333pt;}
.x6a_c01276{left:688.133333pt;}
.x110_c01276{left:691.200000pt;}
.xd0_c01276{left:692.733333pt;}
.xec_c01276{left:696.573333pt;}
.x5a_c01276{left:699.653333pt;}
.x73_c01276{left:702.720000pt;}
.x8e_c01276{left:704.253333pt;}
.x3b_c01276{left:705.786667pt;}
.xa3_c01276{left:708.093333pt;}
.x22_c01276{left:710.400000pt;}
.xf9_c01276{left:714.240000pt;}
.x63_c01276{left:715.773333pt;}
.xe1_c01276{left:717.306667pt;}
.x8f_c01276{left:721.920000pt;}
.xed_c01276{left:724.226667pt;}
.xb0_c01276{left:728.066667pt;}
.xcd_c01276{left:731.133333pt;}
.x30_c01276{left:732.666667pt;}
.x111_c01276{left:734.213333pt;}
.x50_c01276{left:735.746667pt;}
.x100_c01276{left:737.280000pt;}
.xb1_c01276{left:738.813333pt;}
.x89_c01276{left:740.346667pt;}
.x3c_c01276{left:741.893333pt;}
.x7e_c01276{left:743.426667pt;}
.x74_c01276{left:745.733333pt;}
.xfa_c01276{left:747.266667pt;}
.x9c_c01276{left:748.800000pt;}
.x31_c01276{left:750.333333pt;}
.xa9_c01276{left:752.640000pt;}
.xc0_c01276{left:754.946667pt;}
.x107_c01276{left:758.013333pt;}
.x101_c01276{left:761.093333pt;}
.x64_c01276{left:764.933333pt;}
.x3d_c01276{left:768.000000pt;}
.xe2_c01276{left:770.306667pt;}
.x65_c01276{left:774.146667pt;}
.x5b_c01276{left:775.680000pt;}
.x7f_c01276{left:779.520000pt;}
.xd7_c01276{left:785.666667pt;}
.x11a_c01276{left:787.200000pt;}
.x75_c01276{left:789.506667pt;}
.x76_c01276{left:807.173333pt;}
.x123_c01276{left:900.093333pt;}
.x124_c01276{left:917.760000pt;}
.x120_c01276{left:922.373333pt;}
.x121_c01276{left:930.813333pt;}
.x122_c01276{left:935.426709pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6780f8eabff3fc359903c092.woff2')format("woff");}.ff1_c01277{font-family:ff1_c01277;line-height:1.109863;font-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_c01277{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m107_c01277{transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052075,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01277{transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);}
.m14e_c01277{transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);}
.m10d_c01277{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m134_c01277{transform:matrix(0.094425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094425,0.000000,0.000000,0.250000,0,0);}
.m16f_c01277{transform:matrix(0.094625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094625,0.000000,0.000000,0.250000,0,0);}
.m98_c01277{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m4f_c01277{transform:matrix(0.097900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097900,0.000000,0.000000,0.250000,0,0);}
.m169_c01277{transform:matrix(0.099525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099525,0.000000,0.000000,0.250000,0,0);}
.m170_c01277{transform:matrix(0.101450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101450,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01277{transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102500,0.000000,0.000000,0.250000,0,0);}
.med_c01277{transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);}
.m124_c01277{transform:matrix(0.106325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106325,0.000000,0.000000,0.250000,0,0);}
.m72_c01277{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m188_c01277{transform:matrix(0.109500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109500,0.000000,0.000000,0.250000,0,0);}
.m16b_c01277{transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);}
.m18e_c01277{transform:matrix(0.109950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109950,0.000000,0.000000,0.250000,0,0);}
.md3_c01277{transform:matrix(0.110050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110050,0.000000,0.000000,0.250000,0,0);}
.m131_c01277{transform:matrix(0.110475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110475,0.000000,0.000000,0.250000,0,0);}
.m173_c01277{transform:matrix(0.111325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111325,0.000000,0.000000,0.250000,0,0);}
.m8c_c01277{transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);}
.m18a_c01277{transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113850,0.000000,0.000000,0.250000,0,0);}
.m19e_c01277{transform:matrix(0.113900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113900,0.000000,0.000000,0.250000,0,0);}
.m18f_c01277{transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);}
.m125_c01277{transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);}
.m114_c01277{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.mf9_c01277{transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);}
.m17c_c01277{transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);}
.m168_c01277{transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116225,0.000000,0.000000,0.250000,0,0);}
.m10b_c01277{transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01277{transform:matrix(0.117350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117350,0.000000,0.000000,0.250000,0,0);}
.m178_c01277{transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01277{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m128_c01277{transform:matrix(0.119650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119650,0.000000,0.000000,0.250000,0,0);}
.mf5_c01277{transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);}
.mc6_c01277{transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);}
.me6_c01277{transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01277{transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);}
.me7_c01277{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);}
.m126_c01277{transform:matrix(0.124325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124325,0.000000,0.000000,0.250000,0,0);}
.m70_c01277{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.mf6_c01277{transform:matrix(0.126050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126050,0.000000,0.000000,0.250000,0,0);}
.m111_c01277{transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);}
.m19f_c01277{transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);}
.m77_c01277{transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);}
.mf7_c01277{transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01277{transform:matrix(0.127525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127525,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01277{transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);}
.m104_c01277{transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);}
.m19a_c01277{transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);}
.m12c_c01277{transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);}
.m26_c01277{transform:matrix(0.130925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130925,0.000000,0.000000,0.250000,0,0);}
.m181_c01277{transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);}
.mb5_c01277{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);}
.m96_c01277{transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132150,0.000000,0.000000,0.250000,0,0);}
.m135_c01277{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m151_c01277{transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);}
.m97_c01277{transform:matrix(0.134075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134075,0.000000,0.000000,0.250000,0,0);}
.m12a_c01277{transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);}
.m9a_c01277{transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);}
.mf3_c01277{transform:matrix(0.135725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135725,0.000000,0.000000,0.250000,0,0);}
.m152_c01277{transform:matrix(0.136950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136950,0.000000,0.000000,0.250000,0,0);}
.m92_c01277{transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);}
.m12e_c01277{transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);}
.m14_c01277{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);}
.m136_c01277{transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);}
.m12f_c01277{transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01277{transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);}
.m189_c01277{transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);}
.m13c_c01277{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m176_c01277{transform:matrix(0.139200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139200,0.000000,0.000000,0.250000,0,0);}
.m10_c01277{transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);}
.m13a_c01277{transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);}
.m14f_c01277{transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);}
.m8d_c01277{transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);}
.m197_c01277{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m155_c01277{transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);}
.m179_c01277{transform:matrix(0.140800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140800,0.000000,0.000000,0.250000,0,0);}
.m132_c01277{transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);}
.m1b_c01277{transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142625,0.000000,0.000000,0.250000,0,0);}
.mc8_c01277{transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);}
.m7_c01277{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m129_c01277{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);}
.m10c_c01277{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);}
.me2_c01277{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m174_c01277{transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);}
.m5c_c01277{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m159_c01277{transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01277{transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147625,0.000000,0.000000,0.250000,0,0);}
.m196_c01277{transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);}
.m142_c01277{transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);}
.m50_c01277{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);}
.m121_c01277{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m30_c01277{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m8_c01277{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m17b_c01277{transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);}
.md9_c01277{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.m177_c01277{transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);}
.m112_c01277{transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);}
.m20_c01277{transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);}
.m15_c01277{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.md1_c01277{transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);}
.mda_c01277{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);}
.m13d_c01277{transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);}
.m183_c01277{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);}
.m90_c01277{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);}
.m122_c01277{transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);}
.mee_c01277{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m198_c01277{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.m8e_c01277{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);}
.me0_c01277{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m149_c01277{transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);}
.mb9_c01277{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m18c_c01277{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);}
.mf1_c01277{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);}
.m158_c01277{transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);}
.md7_c01277{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01277{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m133_c01277{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01277{transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);}
.m14c_c01277{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m32_c01277{transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);}
.m108_c01277{transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165350,0.000000,0.000000,0.250000,0,0);}
.me5_c01277{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.mc5_c01277{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);}
.m17a_c01277{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m15e_c01277{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m156_c01277{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m83_c01277{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);}
.m130_c01277{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);}
.m1b9_c01277{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m18_c01277{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);}
.m17e_c01277{transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);}
.m105_c01277{transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);}
.mc0_c01277{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01277{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);}
.m15c_c01277{transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);}
.me8_c01277{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.me3_c01277{transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);}
.m127_c01277{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.mf4_c01277{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01277{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.mdf_c01277{transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172575,0.000000,0.000000,0.250000,0,0);}
.m147_c01277{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m1af_c01277{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.ma4_c01277{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m88_c01277{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);}
.m120_c01277{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.md2_c01277{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);}
.m19d_c01277{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.m91_c01277{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m150_c01277{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);}
.m161_c01277{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m11a_c01277{transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);}
.m11_c01277{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m11e_c01277{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.mc7_c01277{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);}
.m28_c01277{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m12d_c01277{transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);}
.m123_c01277{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.mdb_c01277{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01277{transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);}
.m99_c01277{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m137_c01277{transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);}
.mfb_c01277{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);}
.m59_c01277{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.mf2_c01277{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);}
.m187_c01277{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m141_c01277{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);}
.m1a1_c01277{transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);}
.m19b_c01277{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);}
.m194_c01277{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m5d_c01277{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.m17f_c01277{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);}
.m6_c01277{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m18d_c01277{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m146_c01277{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);}
.m5a_c01277{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);}
.m143_c01277{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m8a_c01277{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);}
.m1a7_c01277{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);}
.m182_c01277{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m5e_c01277{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.md0_c01277{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.m138_c01277{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.m13b_c01277{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01277{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01277{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m3f_c01277{transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);}
.mef_c01277{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m101_c01277{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);}
.mc4_c01277{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.m3e_c01277{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01277{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m109_c01277{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);}
.m64_c01277{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);}
.m185_c01277{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);}
.m153_c01277{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);}
.m95_c01277{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);}
.mfc_c01277{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);}
.mf_c01277{transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);}
.m186_c01277{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);}
.m1bf_c01277{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);}
.m191_c01277{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.ma6_c01277{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m21_c01277{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.mae_c01277{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);}
.mdd_c01277{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m139_c01277{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01277{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);}
.m16e_c01277{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.m38_c01277{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.m171_c01277{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);}
.m180_c01277{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01277{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);}
.m172_c01277{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);}
.m10e_c01277{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m163_c01277{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01277{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m40_c01277{transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);}
.mb1_c01277{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);}
.m1a6_c01277{transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);}
.mcb_c01277{transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);}
.m106_c01277{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);}
.m6c_c01277{transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);}
.me1_c01277{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m10f_c01277{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m193_c01277{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);}
.m5b_c01277{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.m67_c01277{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);}
.m37_c01277{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);}
.m3d_c01277{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);}
.m1aa_c01277{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);}
.me4_c01277{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);}
.mcc_c01277{transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);}
.m65_c01277{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mc1_c01277{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);}
.m6e_c01277{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);}
.m103_c01277{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01277{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);}
.m71_c01277{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);}
.m15b_c01277{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m116_c01277{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);}
.m1c1_c01277{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);}
.m94_c01277{transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);}
.mb2_c01277{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m89_c01277{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);}
.m36_c01277{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m10a_c01277{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);}
.m74_c01277{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);}
.m11c_c01277{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.mb3_c01277{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01277{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.mcd_c01277{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);}
.m1bd_c01277{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);}
.m9b_c01277{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.m110_c01277{transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);}
.m8b_c01277{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);}
.m2e_c01277{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m175_c01277{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);}
.m79_c01277{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.mfd_c01277{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.md4_c01277{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.mbb_c01277{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m63_c01277{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);}
.mfe_c01277{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);}
.m19c_c01277{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);}
.m52_c01277{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m1be_c01277{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);}
.m55_c01277{transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);}
.m9d_c01277{transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);}
.md5_c01277{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);}
.m7b_c01277{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);}
.mea_c01277{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m157_c01277{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);}
.m148_c01277{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.mce_c01277{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);}
.m117_c01277{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);}
.m199_c01277{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);}
.mbf_c01277{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);}
.m7c_c01277{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);}
.m14d_c01277{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.maa_c01277{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);}
.m75_c01277{transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);}
.mb0_c01277{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);}
.ma9_c01277{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.mc3_c01277{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m85_c01277{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m17d_c01277{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.mad_c01277{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);}
.md8_c01277{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);}
.m115_c01277{transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);}
.m154_c01277{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m195_c01277{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);}
.m3b_c01277{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);}
.mc9_c01277{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m140_c01277{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);}
.m100_c01277{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);}
.mff_c01277{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);}
.m13f_c01277{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mc2_c01277{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);}
.m16d_c01277{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);}
.ma7_c01277{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.meb_c01277{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);}
.mb4_c01277{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);}
.mbd_c01277{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);}
.m113_c01277{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);}
.m76_c01277{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m17_c01277{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m16a_c01277{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m41_c01277{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.m80_c01277{transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);}
.m184_c01277{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);}
.m3a_c01277{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.mcf_c01277{transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);}
.mab_c01277{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);}
.ma0_c01277{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m1d_c01277{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);}
.m62_c01277{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);}
.m192_c01277{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);}
.m4c_c01277{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m47_c01277{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);}
.m93_c01277{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.ma3_c01277{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);}
.m11f_c01277{transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247200,0.000000,0.000000,0.250000,0,0);}
.m87_c01277{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);}
.m73_c01277{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.mb7_c01277{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);}
.m1e_c01277{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m13e_c01277{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);}
.m9f_c01277{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m9e_c01277{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);}
.mac_c01277{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01277{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);}
.m42_c01277{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);}
.m23_c01277{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);}
.m2c_c01277{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);}
.m45_c01277{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m44_c01277{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c01277{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m34_c01277{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);}
.m25_c01277{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m31_c01277{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);}
.mba_c01277{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);}
.m2f_c01277{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m46_c01277{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_c01277{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01277{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m27_c01277{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);}
.m1c_c01277{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m48_c01277{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);}
.m1f_c01277{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);}
.m2b_c01277{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c01277{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01277{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);}
.m4a_c01277{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma5_c01277{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m54_c01277{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);}
.mbc_c01277{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c01277{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m69_c01277{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf0_c01277{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m35_c01277{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma1_c01277{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c01277{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m24_c01277{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m53_c01277{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);}
.m6d_c01277{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m51_c01277{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01277{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m13_c01277{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m118_c01277{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);}
.m1_c01277{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);}
.me_c01277{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c01277{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);}
.mdc_c01277{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m68_c01277{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m164_c01277{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m145_c01277{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);}
.m4d_c01277{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma2_c01277{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mb8_c01277{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m14a_c01277{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m160_c01277{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);}
.m119_c01277{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m190_c01277{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.maf_c01277{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01277{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m12b_c01277{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01277{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);}
.m8f_c01277{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m7e_c01277{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);}
.m144_c01277{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m33_c01277{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01277{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);}
.m58_c01277{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4_c01277{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01277{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mbe_c01277{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m82_c01277{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m84_c01277{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_c01277{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m81_c01277{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m16c_c01277{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01277{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m61_c01277{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.ma8_c01277{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m43_c01277{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m165_c01277{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m0_c01277{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01277{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01277{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);}
.mde_c01277{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m39_c01277{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mec_c01277{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);}
.m66_c01277{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01277{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m49_c01277{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);}
.mca_c01277{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01277{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m11d_c01277{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m102_c01277{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.md6_c01277{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01277{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01277{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.ma_c01277{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m166_c01277{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01277{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);}
.m11b_c01277{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m60_c01277{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.m162_c01277{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.md_c01277{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.me9_c01277{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m57_c01277{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.m56_c01277{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.m18b_c01277{transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01277{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m15d_c01277{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m15f_c01277{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.m167_c01277{transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.985000,0.000000,0.000000,0.250000,0,0);}
.m5_c01277{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.mfa_c01277{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.mc_c01277{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m86_c01277{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.mb_c01277{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01277{transform:matrix(1.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.577500,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01277{transform:matrix(1.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.587500,0.000000,0.000000,0.250000,0,0);}
.m15a_c01277{transform:matrix(2.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.000000,0.000000,0.000000,0.250000,0,0);}
.m78_c01277{transform:matrix(2.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.080000,0.000000,0.000000,0.250000,0,0);}
.m14b_c01277{transform:matrix(2.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.345000,0.000000,0.000000,0.250000,0,0);}
.v2_c01277{vertical-align:-6.900000px;}
.v1_c01277{vertical-align:-3.480000px;}
.v0_c01277{vertical-align:0.000000px;}
.ls3_c01277{letter-spacing:0.000000px;}
.ls1_c01277{letter-spacing:24.024000px;}
.ls2_c01277{letter-spacing:52.167480px;}
.ls0_c01277{letter-spacing:128.387400px;}
.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:-25.203960px;}
.ws1_c01277{word-spacing:-8.241120px;}
.ws2_c01277{word-spacing:0.000000px;}
.fc0_c01277{color:transparent;}
.fs2_c01277{font-size:3.456000px;}
.fs8_c01277{font-size:6.000000px;}
.fs4_c01277{font-size:6.900000px;}
.fs1a_c01277{font-size:10.380000px;}
.fs9_c01277{font-size:13.800000px;}
.fs0_c01277{font-size:17.280000px;}
.fs3_c01277{font-size:20.760000px;}
.fsa_c01277{font-size:24.180000px;}
.fs5_c01277{font-size:27.660000px;}
.fs1_c01277{font-size:31.080000px;}
.fs19_c01277{font-size:34.560000px;}
.fs7_c01277{font-size:38.040000px;}
.fs16_c01277{font-size:41.460000px;}
.fs15_c01277{font-size:44.940000px;}
.fsf_c01277{font-size:48.360000px;}
.fs13_c01277{font-size:51.840000px;}
.fse_c01277{font-size:55.320000px;}
.fs11_c01277{font-size:58.740000px;}
.fs14_c01277{font-size:62.220000px;}
.fs17_c01277{font-size:65.640000px;}
.fs6_c01277{font-size:69.120000px;}
.fs1b_c01277{font-size:72.600000px;}
.fs18_c01277{font-size:76.020000px;}
.fsb_c01277{font-size:79.500000px;}
.fs10_c01277{font-size:82.920000px;}
.fsd_c01277{font-size:86.400000px;}
.fs12_c01277{font-size:89.880000px;}
.fs1e_c01277{font-size:93.300000px;}
.fs1c_c01277{font-size:96.780000px;}
.fsc_c01277{font-size:100.200000px;}
.fs1d_c01277{font-size:103.680000px;}
.fs21_c01277{font-size:107.160000px;}
.fs22_c01277{font-size:110.580000px;}
.fs1f_c01277{font-size:114.060000px;}
.fs20_c01277{font-size:117.480000px;}
.y0_c01277{bottom:0.000000px;}
.y213_c01277{bottom:127.875000px;}
.y212_c01277{bottom:130.470000px;}
.y210_c01277{bottom:143.430000px;}
.y211_c01277{bottom:144.285000px;}
.y20e_c01277{bottom:153.795000px;}
.y20d_c01277{bottom:157.245000px;}
.y20f_c01277{bottom:161.565000px;}
.y20c_c01277{bottom:170.205000px;}
.y208_c01277{bottom:171.075000px;}
.y206_c01277{bottom:171.930000px;}
.y20b_c01277{bottom:172.800000px;}
.y207_c01277{bottom:174.525000px;}
.y203_c01277{bottom:175.395000px;}
.y204_c01277{bottom:176.250000px;}
.y202_c01277{bottom:177.120000px;}
.y201_c01277{bottom:178.845000px;}
.y205_c01277{bottom:186.630000px;}
.y20a_c01277{bottom:188.355000px;}
.y209_c01277{bottom:190.080000px;}
.y1ff_c01277{bottom:191.805000px;}
.y1fe_c01277{bottom:192.675000px;}
.y1fd_c01277{bottom:193.530000px;}
.y200_c01277{bottom:195.270000px;}
.y1fb_c01277{bottom:198.720000px;}
.y1fa_c01277{bottom:200.445000px;}
.y1fc_c01277{bottom:202.170000px;}
.y1f8_c01277{bottom:209.955000px;}
.y1f2_c01277{bottom:213.405000px;}
.y1f7_c01277{bottom:214.275000px;}
.y1f6_c01277{bottom:215.130000px;}
.y1f1_c01277{bottom:216.000000px;}
.y1f9_c01277{bottom:217.725000px;}
.y1f3_c01277{bottom:222.045000px;}
.y1f4_c01277{bottom:229.830000px;}
.y1f5_c01277{bottom:234.150000px;}
.y1ed_c01277{bottom:235.875000px;}
.y1ee_c01277{bottom:239.325000px;}
.y1eb_c01277{bottom:240.195000px;}
.y1ec_c01277{bottom:241.050000px;}
.y1f0_c01277{bottom:243.645000px;}
.y1ea_c01277{bottom:245.370000px;}
.y1ef_c01277{bottom:247.965000px;}
.y1e9_c01277{bottom:248.835000px;}
.y1e6_c01277{bottom:250.560000px;}
.y1e7_c01277{bottom:251.430000px;}
.y1e5_c01277{bottom:253.155000px;}
.y1e8_c01277{bottom:254.010000px;}
.y1e0_c01277{bottom:254.880000px;}
.y1e2_c01277{bottom:255.750000px;}
.y1e1_c01277{bottom:256.605000px;}
.y1e3_c01277{bottom:258.330000px;}
.y1e4_c01277{bottom:261.795000px;}
.y1df_c01277{bottom:273.885000px;}
.y1dc_c01277{bottom:275.610000px;}
.y1dd_c01277{bottom:276.480000px;}
.y1db_c01277{bottom:277.350000px;}
.y1de_c01277{bottom:279.075000px;}
.y1d9_c01277{bottom:280.800000px;}
.y1da_c01277{bottom:281.670000px;}
.y1d8_c01277{bottom:291.165000px;}
.y1d5_c01277{bottom:292.035000px;}
.y1d6_c01277{bottom:292.890000px;}
.y1d2_c01277{bottom:296.355000px;}
.y1d7_c01277{bottom:297.210000px;}
.y1d1_c01277{bottom:298.080000px;}
.y1d4_c01277{bottom:298.950000px;}
.y1d0_c01277{bottom:300.675000px;}
.y1d3_c01277{bottom:302.400000px;}
.y1cf_c01277{bottom:307.590000px;}
.y1cd_c01277{bottom:308.445000px;}
.y1cc_c01277{bottom:310.170000px;}
.y1c7_c01277{bottom:311.040000px;}
.y1cb_c01277{bottom:314.490000px;}
.y1c9_c01277{bottom:315.360000px;}
.y4_c01277{bottom:316.230000px;}
.y5_c01277{bottom:317.085000px;}
.y1c6_c01277{bottom:317.955000px;}
.y1ce_c01277{bottom:319.680000px;}
.y1c4_c01277{bottom:320.550000px;}
.y1c8_c01277{bottom:327.450000px;}
.y1c5_c01277{bottom:328.320000px;}
.y1ca_c01277{bottom:330.915000px;}
.y1c3_c01277{bottom:333.510000px;}
.y1c2_c01277{bottom:334.365000px;}
.y1c1_c01277{bottom:336.960000px;}
.y1c0_c01277{bottom:337.830000px;}
.y1bb_c01277{bottom:338.685000px;}
.y1b9_c01277{bottom:339.555000px;}
.y1bf_c01277{bottom:340.410000px;}
.y1bc_c01277{bottom:341.280000px;}
.y1ba_c01277{bottom:342.150000px;}
.y1bd_c01277{bottom:343.005000px;}
.y1be_c01277{bottom:344.730000px;}
.y1b8_c01277{bottom:353.370000px;}
.y1b7_c01277{bottom:354.240000px;}
.y1b5_c01277{bottom:355.110000px;}
.y1b6_c01277{bottom:357.690000px;}
.y1b2_c01277{bottom:358.560000px;}
.y1b3_c01277{bottom:362.880000px;}
.y1b4_c01277{bottom:363.750000px;}
.y1ae_c01277{bottom:369.795000px;}
.y1b1_c01277{bottom:370.650000px;}
.y1b0_c01277{bottom:371.520000px;}
.y1ac_c01277{bottom:372.390000px;}
.y1af_c01277{bottom:373.245000px;}
.y1ab_c01277{bottom:375.840000px;}
.y1ad_c01277{bottom:376.710000px;}
.y1aa_c01277{bottom:377.565000px;}
.y3_c01277{bottom:379.290000px;}
.y1a9_c01277{bottom:382.755000px;}
.y1a8_c01277{bottom:388.800000px;}
.y1a6_c01277{bottom:393.120000px;}
.y19f_c01277{bottom:393.990000px;}
.y1a4_c01277{bottom:394.845000px;}
.y1a5_c01277{bottom:396.570000px;}
.y19e_c01277{bottom:397.440000px;}
.y19d_c01277{bottom:398.310000px;}
.y1a7_c01277{bottom:400.890000px;}
.y1a3_c01277{bottom:404.355000px;}
.y1a2_c01277{bottom:405.210000px;}
.y1a0_c01277{bottom:406.950000px;}
.y19a_c01277{bottom:411.270000px;}
.y1a1_c01277{bottom:412.995000px;}
.y19c_c01277{bottom:413.850000px;}
.y19b_c01277{bottom:414.720000px;}
.y198_c01277{bottom:415.590000px;}
.y192_c01277{bottom:416.445000px;}
.y197_c01277{bottom:417.315000px;}
.y199_c01277{bottom:418.170000px;}
.y196_c01277{bottom:419.040000px;}
.y191_c01277{bottom:419.910000px;}
.y195_c01277{bottom:420.765000px;}
.y190_c01277{bottom:421.635000px;}
.y18d_c01277{bottom:422.490000px;}
.y194_c01277{bottom:423.360000px;}
.y18c_c01277{bottom:425.085000px;}
.y18e_c01277{bottom:425.955000px;}
.y18f_c01277{bottom:426.810000px;}
.y188_c01277{bottom:430.275000px;}
.y193_c01277{bottom:431.130000px;}
.y185_c01277{bottom:433.725000px;}
.y186_c01277{bottom:436.320000px;}
.y182_c01277{bottom:439.770000px;}
.y184_c01277{bottom:440.640000px;}
.y183_c01277{bottom:442.365000px;}
.y189_c01277{bottom:444.090000px;}
.y187_c01277{bottom:445.830000px;}
.y18b_c01277{bottom:448.410000px;}
.y18a_c01277{bottom:449.280000px;}
.y180_c01277{bottom:459.645000px;}
.y179_c01277{bottom:460.515000px;}
.y17b_c01277{bottom:461.370000px;}
.y17e_c01277{bottom:463.110000px;}
.y17f_c01277{bottom:463.965000px;}
.y177_c01277{bottom:465.690000px;}
.y17a_c01277{bottom:467.430000px;}
.y178_c01277{bottom:468.285000px;}
.y17d_c01277{bottom:472.605000px;}
.y17c_c01277{bottom:474.330000px;}
.y181_c01277{bottom:476.070000px;}
.y174_c01277{bottom:478.650000px;}
.y173_c01277{bottom:479.520000px;}
.y176_c01277{bottom:480.390000px;}
.y175_c01277{bottom:481.245000px;}
.y171_c01277{bottom:482.970000px;}
.y172_c01277{bottom:488.160000px;}
.y170_c01277{bottom:490.755000px;}
.y16f_c01277{bottom:491.610000px;}
.y16e_c01277{bottom:496.800000px;}
.y16d_c01277{bottom:498.525000px;}
.y16b_c01277{bottom:499.395000px;}
.y166_c01277{bottom:501.120000px;}
.y169_c01277{bottom:501.990000px;}
.y16c_c01277{bottom:502.845000px;}
.y168_c01277{bottom:503.715000px;}
.y167_c01277{bottom:508.890000px;}
.y16a_c01277{bottom:511.485000px;}
.y165_c01277{bottom:515.805000px;}
.y164_c01277{bottom:518.400000px;}
.y160_c01277{bottom:519.270000px;}
.y163_c01277{bottom:520.995000px;}
.y162_c01277{bottom:521.850000px;}
.y15f_c01277{bottom:524.445000px;}
.y161_c01277{bottom:529.635000px;}
.y15e_c01277{bottom:530.490000px;}
.y15c_c01277{bottom:532.230000px;}
.y15d_c01277{bottom:533.085000px;}
.y15a_c01277{bottom:534.810000px;}
.y15b_c01277{bottom:535.680000px;}
.y159_c01277{bottom:556.410000px;}
.y157_c01277{bottom:559.005000px;}
.y156_c01277{bottom:559.875000px;}
.y155_c01277{bottom:560.730000px;}
.y152_c01277{bottom:561.600000px;}
.y154_c01277{bottom:563.325000px;}
.y158_c01277{bottom:564.195000px;}
.y153_c01277{bottom:568.515000px;}
.y150_c01277{bottom:578.010000px;}
.y14c_c01277{bottom:580.605000px;}
.y14f_c01277{bottom:582.330000px;}
.y151_c01277{bottom:583.200000px;}
.y14e_c01277{bottom:584.070000px;}
.y14d_c01277{bottom:584.925000px;}
.y148_c01277{bottom:586.650000px;}
.y147_c01277{bottom:590.115000px;}
.y146_c01277{bottom:590.970000px;}
.y14a_c01277{bottom:591.840000px;}
.y14b_c01277{bottom:593.565000px;}
.y149_c01277{bottom:594.435000px;}
.y145_c01277{bottom:599.610000px;}
.y144_c01277{bottom:602.205000px;}
.y143_c01277{bottom:603.075000px;}
.y140_c01277{bottom:603.930000px;}
.y13f_c01277{bottom:604.800000px;}
.y142_c01277{bottom:605.670000px;}
.y141_c01277{bottom:606.525000px;}
.y13d_c01277{bottom:609.990000px;}
.y13e_c01277{bottom:610.845000px;}
.y13c_c01277{bottom:619.485000px;}
.y13a_c01277{bottom:620.355000px;}
.y139_c01277{bottom:621.210000px;}
.y13b_c01277{bottom:622.080000px;}
.y137_c01277{bottom:624.675000px;}
.y134_c01277{bottom:625.530000px;}
.y138_c01277{bottom:626.400000px;}
.y135_c01277{bottom:627.270000px;}
.y136_c01277{bottom:629.850000px;}
.y130_c01277{bottom:641.955000px;}
.y131_c01277{bottom:642.810000px;}
.y12d_c01277{bottom:645.405000px;}
.y12c_c01277{bottom:648.000000px;}
.y12e_c01277{bottom:648.870000px;}
.y132_c01277{bottom:651.450000px;}
.y12f_c01277{bottom:652.320000px;}
.y133_c01277{bottom:659.235000px;}
.y12b_c01277{bottom:660.090000px;}
.y12a_c01277{bottom:661.830000px;}
.y129_c01277{bottom:662.685000px;}
.y127_c01277{bottom:665.280000px;}
.y125_c01277{bottom:666.150000px;}
.y128_c01277{bottom:667.005000px;}
.y126_c01277{bottom:669.600000px;}
.y122_c01277{bottom:670.470000px;}
.y121_c01277{bottom:671.325000px;}
.y120_c01277{bottom:675.645000px;}
.y123_c01277{bottom:679.110000px;}
.y124_c01277{bottom:679.965000px;}
.y11f_c01277{bottom:680.835000px;}
.y11d_c01277{bottom:683.430000px;}
.y11c_c01277{bottom:684.285000px;}
.y11a_c01277{bottom:686.010000px;}
.y11b_c01277{bottom:686.880000px;}
.y11e_c01277{bottom:687.750000px;}
.y119_c01277{bottom:690.330000px;}
.y116_c01277{bottom:695.520000px;}
.y115_c01277{bottom:696.390000px;}
.y114_c01277{bottom:698.970000px;}
.y112_c01277{bottom:699.840000px;}
.y113_c01277{bottom:703.290000px;}
.y118_c01277{bottom:705.030000px;}
.y117_c01277{bottom:705.885000px;}
.y10f_c01277{bottom:706.755000px;}
.y10e_c01277{bottom:707.610000px;}
.y111_c01277{bottom:708.480000px;}
.y110_c01277{bottom:711.075000px;}
.y10c_c01277{bottom:719.715000px;}
.y10d_c01277{bottom:722.310000px;}
.y10b_c01277{bottom:724.035000px;}
.y107_c01277{bottom:725.760000px;}
.y109_c01277{bottom:726.630000px;}
.y108_c01277{bottom:727.485000px;}
.y10a_c01277{bottom:728.355000px;}
.y106_c01277{bottom:730.080000px;}
.y105_c01277{bottom:731.805000px;}
.y104_c01277{bottom:736.125000px;}
.y102_c01277{bottom:740.445000px;}
.y103_c01277{bottom:742.170000px;}
.y100_c01277{bottom:743.910000px;}
.yfd_c01277{bottom:744.765000px;}
.yfe_c01277{bottom:746.490000px;}
.yfc_c01277{bottom:747.360000px;}
.y101_c01277{bottom:748.230000px;}
.yff_c01277{bottom:749.085000px;}
.yfb_c01277{bottom:751.680000px;}
.yfa_c01277{bottom:762.045000px;}
.yf8_c01277{bottom:762.915000px;}
.yf9_c01277{bottom:766.365000px;}
.yf6_c01277{bottom:767.235000px;}
.yf4_c01277{bottom:768.090000px;}
.yf5_c01277{bottom:768.960000px;}
.yf7_c01277{bottom:769.830000px;}
.yf3_c01277{bottom:781.920000px;}
.yf0_c01277{bottom:784.515000px;}
.yf2_c01277{bottom:786.240000px;}
.yed_c01277{bottom:787.110000px;}
.yef_c01277{bottom:787.965000px;}
.yf1_c01277{bottom:790.560000px;}
.yee_c01277{bottom:791.430000px;}
.yeb_c01277{bottom:800.925000px;}
.yea_c01277{bottom:801.795000px;}
.yec_c01277{bottom:802.650000px;}
.ye7_c01277{bottom:805.245000px;}
.ye6_c01277{bottom:806.115000px;}
.ye5_c01277{bottom:806.970000px;}
.ye9_c01277{bottom:808.710000px;}
.ye8_c01277{bottom:810.435000px;}
.ye4_c01277{bottom:821.670000px;}
.ye2_c01277{bottom:824.250000px;}
.ye1_c01277{bottom:825.120000px;}
.ydf_c01277{bottom:825.990000px;}
.ydc_c01277{bottom:826.845000px;}
.yde_c01277{bottom:827.715000px;}
.ye3_c01277{bottom:829.440000px;}
.ye0_c01277{bottom:830.310000px;}
.ydd_c01277{bottom:831.165000px;}
.ydb_c01277{bottom:832.035000px;}
.y2_c01277{bottom:842.400000px;}
.yd9_c01277{bottom:843.270000px;}
.yd6_c01277{bottom:844.125000px;}
.yd8_c01277{bottom:846.720000px;}
.yda_c01277{bottom:847.590000px;}
.yd7_c01277{bottom:849.315000px;}
.yd5_c01277{bottom:850.170000px;}
.yd4_c01277{bottom:852.765000px;}
.yd3_c01277{bottom:862.275000px;}
.yd1_c01277{bottom:863.130000px;}
.ycf_c01277{bottom:864.870000px;}
.ycc_c01277{bottom:865.725000px;}
.yd0_c01277{bottom:866.595000px;}
.yca_c01277{bottom:867.450000px;}
.yd2_c01277{bottom:869.190000px;}
.yce_c01277{bottom:870.045000px;}
.ycd_c01277{bottom:870.915000px;}
.ycb_c01277{bottom:871.770000px;}
.yc9_c01277{bottom:883.005000px;}
.yc5_c01277{bottom:883.875000px;}
.yc6_c01277{bottom:884.730000px;}
.yc2_c01277{bottom:888.195000px;}
.yc3_c01277{bottom:889.050000px;}
.yc8_c01277{bottom:889.920000px;}
.yc7_c01277{bottom:890.790000px;}
.yc4_c01277{bottom:891.645000px;}
.yc1_c01277{bottom:902.880000px;}
.yc0_c01277{bottom:903.750000px;}
.ybb_c01277{bottom:905.475000px;}
.ybe_c01277{bottom:906.330000px;}
.yb9_c01277{bottom:907.200000px;}
.ybf_c01277{bottom:909.795000px;}
.ybd_c01277{bottom:910.650000px;}
.ybc_c01277{bottom:911.520000px;}
.yba_c01277{bottom:912.390000px;}
.yb8_c01277{bottom:923.610000px;}
.yb6_c01277{bottom:926.205000px;}
.yb5_c01277{bottom:927.075000px;}
.yb7_c01277{bottom:929.670000px;}
.yb4_c01277{bottom:930.525000px;}
.yb3_c01277{bottom:932.250000px;}
.yb2_c01277{bottom:933.120000px;}
.yb1_c01277{bottom:933.990000px;}
.yaf_c01277{bottom:944.355000px;}
.yac_c01277{bottom:946.080000px;}
.yab_c01277{bottom:946.950000px;}
.yb0_c01277{bottom:947.805000px;}
.yae_c01277{bottom:948.675000px;}
.ya7_c01277{bottom:950.400000px;}
.yad_c01277{bottom:951.270000px;}
.ya9_c01277{bottom:952.125000px;}
.yaa_c01277{bottom:952.995000px;}
.ya8_c01277{bottom:953.850000px;}
.ya3_c01277{bottom:965.085000px;}
.ya5_c01277{bottom:965.955000px;}
.y9f_c01277{bottom:966.810000px;}
.ya6_c01277{bottom:969.405000px;}
.ya4_c01277{bottom:970.275000px;}
.ya2_c01277{bottom:971.130000px;}
.ya0_c01277{bottom:972.000000px;}
.ya1_c01277{bottom:972.870000px;}
.y9c_c01277{bottom:986.685000px;}
.y9d_c01277{bottom:987.555000px;}
.y9b_c01277{bottom:990.150000px;}
.y9e_c01277{bottom:991.005000px;}
.y99_c01277{bottom:1000.515000px;}
.y97_c01277{bottom:1001.370000px;}
.y92_c01277{bottom:1002.240000px;}
.y94_c01277{bottom:1004.835000px;}
.y96_c01277{bottom:1006.560000px;}
.y98_c01277{bottom:1010.010000px;}
.y95_c01277{bottom:1010.880000px;}
.y93_c01277{bottom:1012.605000px;}
.y9a_c01277{bottom:1013.475000px;}
.y1_c01277{bottom:1015.200000px;}
.y91_c01277{bottom:1022.115000px;}
.y8e_c01277{bottom:1022.970000px;}
.y8d_c01277{bottom:1023.840000px;}
.y87_c01277{bottom:1026.435000px;}
.y8b_c01277{bottom:1027.290000px;}
.y8f_c01277{bottom:1028.160000px;}
.y90_c01277{bottom:1029.030000px;}
.y8a_c01277{bottom:1029.885000px;}
.y8c_c01277{bottom:1030.755000px;}
.y88_c01277{bottom:1031.610000px;}
.y86_c01277{bottom:1032.480000px;}
.y89_c01277{bottom:1035.930000px;}
.y80_c01277{bottom:1046.310000px;}
.y84_c01277{bottom:1047.165000px;}
.y85_c01277{bottom:1048.035000px;}
.y7c_c01277{bottom:1048.890000px;}
.y7f_c01277{bottom:1050.630000px;}
.y83_c01277{bottom:1052.355000px;}
.y7e_c01277{bottom:1053.210000px;}
.y78_c01277{bottom:1054.080000px;}
.y81_c01277{bottom:1055.805000px;}
.y82_c01277{bottom:1058.400000px;}
.y79_c01277{bottom:1059.270000px;}
.y7d_c01277{bottom:1060.125000px;}
.y7b_c01277{bottom:1060.995000px;}
.y7a_c01277{bottom:1063.590000px;}
.y74_c01277{bottom:1066.170000px;}
.y76_c01277{bottom:1067.910000px;}
.y77_c01277{bottom:1068.765000px;}
.y75_c01277{bottom:1070.490000px;}
.y6f_c01277{bottom:1071.360000px;}
.y72_c01277{bottom:1073.955000px;}
.y71_c01277{bottom:1076.550000px;}
.y70_c01277{bottom:1078.275000px;}
.y73_c01277{bottom:1080.000000px;}
.y6a_c01277{bottom:1086.045000px;}
.y68_c01277{bottom:1089.510000px;}
.y6b_c01277{bottom:1092.090000px;}
.y69_c01277{bottom:1092.960000px;}
.y67_c01277{bottom:1093.830000px;}
.y6d_c01277{bottom:1094.685000px;}
.y6e_c01277{bottom:1099.005000px;}
.y6c_c01277{bottom:1100.730000px;}
.y66_c01277{bottom:1103.325000px;}
.y64_c01277{bottom:1105.920000px;}
.y60_c01277{bottom:1106.790000px;}
.y5e_c01277{bottom:1107.645000px;}
.y65_c01277{bottom:1108.515000px;}
.y5f_c01277{bottom:1109.370000px;}
.y62_c01277{bottom:1110.240000px;}
.y5d_c01277{bottom:1111.110000px;}
.y61_c01277{bottom:1111.965000px;}
.y63_c01277{bottom:1112.835000px;}
.y5c_c01277{bottom:1114.560000px;}
.y56_c01277{bottom:1128.390000px;}
.y5b_c01277{bottom:1129.245000px;}
.y55_c01277{bottom:1132.710000px;}
.y59_c01277{bottom:1133.565000px;}
.y57_c01277{bottom:1136.160000px;}
.y5a_c01277{bottom:1137.885000px;}
.y58_c01277{bottom:1145.670000px;}
.y51_c01277{bottom:1147.395000px;}
.y50_c01277{bottom:1148.250000px;}
.y53_c01277{bottom:1150.845000px;}
.y54_c01277{bottom:1152.570000px;}
.y52_c01277{bottom:1154.310000px;}
.y4d_c01277{bottom:1156.035000px;}
.y4e_c01277{bottom:1166.400000px;}
.y49_c01277{bottom:1167.270000px;}
.y4f_c01277{bottom:1169.850000px;}
.y46_c01277{bottom:1170.720000px;}
.y4a_c01277{bottom:1173.315000px;}
.y48_c01277{bottom:1174.170000px;}
.y47_c01277{bottom:1175.040000px;}
.y45_c01277{bottom:1175.910000px;}
.y4b_c01277{bottom:1178.490000px;}
.y4c_c01277{bottom:1181.955000px;}
.y44_c01277{bottom:1182.810000px;}
.y42_c01277{bottom:1188.870000px;}
.y3d_c01277{bottom:1191.450000px;}
.y43_c01277{bottom:1193.190000px;}
.y40_c01277{bottom:1194.045000px;}
.y41_c01277{bottom:1194.915000px;}
.y3f_c01277{bottom:1195.770000px;}
.y3e_c01277{bottom:1196.640000px;}
.y3c_c01277{bottom:1212.195000px;}
.y38_c01277{bottom:1213.050000px;}
.y39_c01277{bottom:1213.920000px;}
.y3b_c01277{bottom:1214.790000px;}
.y3a_c01277{bottom:1216.515000px;}
.y37_c01277{bottom:1229.475000px;}
.y35_c01277{bottom:1231.200000px;}
.y34_c01277{bottom:1237.245000px;}
.y36_c01277{bottom:1238.115000px;}
.y32_c01277{bottom:1249.350000px;}
.y31_c01277{bottom:1250.205000px;}
.y2c_c01277{bottom:1251.930000px;}
.y2f_c01277{bottom:1252.800000px;}
.y2d_c01277{bottom:1253.670000px;}
.y33_c01277{bottom:1254.525000px;}
.y30_c01277{bottom:1256.250000px;}
.y2e_c01277{bottom:1257.120000px;}
.y28_c01277{bottom:1272.675000px;}
.y29_c01277{bottom:1274.400000px;}
.y2b_c01277{bottom:1275.270000px;}
.y2a_c01277{bottom:1276.125000px;}
.y26_c01277{bottom:1276.995000px;}
.y27_c01277{bottom:1277.850000px;}
.y25_c01277{bottom:1286.490000px;}
.y23_c01277{bottom:1289.085000px;}
.y21_c01277{bottom:1289.955000px;}
.y1d_c01277{bottom:1292.550000px;}
.y1c_c01277{bottom:1293.405000px;}
.y1e_c01277{bottom:1294.275000px;}
.y24_c01277{bottom:1295.130000px;}
.y22_c01277{bottom:1296.000000px;}
.y1f_c01277{bottom:1296.870000px;}
.y20_c01277{bottom:1297.725000px;}
.y1b_c01277{bottom:1307.235000px;}
.y19_c01277{bottom:1308.090000px;}
.y17_c01277{bottom:1308.960000px;}
.y16_c01277{bottom:1311.555000px;}
.y12_c01277{bottom:1312.410000px;}
.y13_c01277{bottom:1313.280000px;}
.y18_c01277{bottom:1315.005000px;}
.y1a_c01277{bottom:1315.875000px;}
.y14_c01277{bottom:1318.470000px;}
.y15_c01277{bottom:1319.325000px;}
.y11_c01277{bottom:1334.010000px;}
.y10_c01277{bottom:1337.475000px;}
.yf_c01277{bottom:1339.200000px;}
.ye_c01277{bottom:1340.070000px;}
.yd_c01277{bottom:1340.925000px;}
.ya_c01277{bottom:1359.930000px;}
.yc_c01277{bottom:1362.525000px;}
.yb_c01277{bottom:1363.395000px;}
.y8_c01277{bottom:1372.035000px;}
.y9_c01277{bottom:1384.125000px;}
.y7_c01277{bottom:1410.915000px;}
.y6_c01277{bottom:1413.510000px;}
.h4_c01277{height:3.110063px;}
.ha_c01277{height:5.399414px;}
.h6_c01277{height:6.209326px;}
.h1c_c01277{height:9.340986px;}
.hb_c01277{height:12.418652px;}
.h2_c01277{height:15.550313px;}
.h5_c01277{height:18.681973px;}
.hc_c01277{height:21.759639px;}
.h7_c01277{height:24.891299px;}
.h3_c01277{height:27.968965px;}
.h1b_c01277{height:31.100625px;}
.h9_c01277{height:34.232285px;}
.h18_c01277{height:37.309951px;}
.h17_c01277{height:40.441611px;}
.h11_c01277{height:43.519277px;}
.h15_c01277{height:46.650937px;}
.h10_c01277{height:49.782598px;}
.h13_c01277{height:52.860264px;}
.h16_c01277{height:55.991924px;}
.h19_c01277{height:59.069590px;}
.h8_c01277{height:62.201250px;}
.h1d_c01277{height:65.332910px;}
.h1a_c01277{height:68.410576px;}
.hd_c01277{height:71.542236px;}
.h12_c01277{height:74.619902px;}
.hf_c01277{height:77.751563px;}
.h14_c01277{height:80.883223px;}
.h20_c01277{height:83.960889px;}
.h1e_c01277{height:87.092549px;}
.he_c01277{height:90.170215px;}
.h1f_c01277{height:93.301875px;}
.h23_c01277{height:96.433535px;}
.h24_c01277{height:99.511201px;}
.h21_c01277{height:102.642861px;}
.h22_c01277{height:105.720527px;}
.h0_c01277{height:1509.405000px;}
.h1_c01277{height:1509.750000px;}
.w0_c01277{width:1088.640000px;}
.w1_c01277{width:1089.000000px;}
.x0_c01277{left:0.000000px;}
.x1_c01277{left:137.370000px;}
.x2_c01277{left:139.965000px;}
.x5_c01277{left:146.010000px;}
.x3_c01277{left:159.840000px;}
.x6_c01277{left:165.030000px;}
.x4_c01277{left:167.610000px;}
.x5f_c01277{left:191.805000px;}
.xf2_c01277{left:217.725000px;}
.xe1_c01277{left:226.365000px;}
.x53_c01277{left:229.830000px;}
.xd0_c01277{left:233.280000px;}
.x95_c01277{left:235.005000px;}
.xc6_c01277{left:236.730000px;}
.xf_c01277{left:238.470000px;}
.x20_c01277{left:241.050000px;}
.xfe_c01277{left:242.790000px;}
.x3a_c01277{left:254.880000px;}
.xe9_c01277{left:256.605000px;}
.x5a_c01277{left:258.330000px;}
.x3e_c01277{left:260.070000px;}
.xbf_c01277{left:263.520000px;}
.x10_c01277{left:265.245000px;}
.x54_c01277{left:267.840000px;}
.x32_c01277{left:270.435000px;}
.x8a_c01277{left:272.160000px;}
.xdb_c01277{left:274.755000px;}
.x66_c01277{left:277.350000px;}
.x103_c01277{left:279.075000px;}
.xe2_c01277{left:282.525000px;}
.x83_c01277{left:285.120000px;}
.x112_c01277{left:286.845000px;}
.x107_c01277{left:289.440000px;}
.x21_c01277{left:291.165000px;}
.x47_c01277{left:292.890000px;}
.x7a_c01277{left:294.630000px;}
.x6d_c01277{left:296.355000px;}
.x29_c01277{left:298.950000px;}
.xd1_c01277{left:303.270000px;}
.x96_c01277{left:305.850000px;}
.x3b_c01277{left:307.590000px;}
.x114_c01277{left:309.315000px;}
.x15_c01277{left:311.040000px;}
.x7_c01277{left:312.765000px;}
.xf4_c01277{left:315.360000px;}
.xc0_c01277{left:317.085000px;}
.x8_c01277{left:319.680000px;}
.x22_c01277{left:322.275000px;}
.x8b_c01277{left:324.870000px;}
.x5b_c01277{left:328.320000px;}
.x108_c01277{left:330.045000px;}
.xe3_c01277{left:332.640000px;}
.xf5_c01277{left:335.235000px;}
.x3f_c01277{left:337.830000px;}
.x7b_c01277{left:339.555000px;}
.xc3_c01277{left:343.005000px;}
.x48_c01277{left:345.600000px;}
.xe4_c01277{left:348.195000px;}
.xff_c01277{left:350.790000px;}
.xd9_c01277{left:352.515000px;}
.xfb_c01277{left:354.240000px;}
.xdc_c01277{left:356.835000px;}
.xb0_c01277{left:359.430000px;}
.xa4_c01277{left:361.155000px;}
.x2a_c01277{left:362.880000px;}
.x97_c01277{left:365.475000px;}
.x8c_c01277{left:368.925000px;}
.x55_c01277{left:370.650000px;}
.x16_c01277{left:373.245000px;}
.x109_c01277{left:375.840000px;}
.x67_c01277{left:379.290000px;}
.x33_c01277{left:382.755000px;}
.xa5_c01277{left:384.480000px;}
.x49_c01277{left:386.205000px;}
.x11_c01277{left:389.670000px;}
.x98_c01277{left:391.395000px;}
.x10a_c01277{left:393.120000px;}
.x40_c01277{left:396.570000px;}
.xe5_c01277{left:401.760000px;}
.x3c_c01277{left:403.485000px;}
.xa6_c01277{left:406.950000px;}
.x100_c01277{left:409.530000px;}
.xba_c01277{left:412.125000px;}
.x23_c01277{left:414.720000px;}
.x7c_c01277{left:417.315000px;}
.xbb_c01277{left:419.910000px;}
.x74_c01277{left:421.635000px;}
.xfc_c01277{left:423.360000px;}
.x3d_c01277{left:426.810000px;}
.xb5_c01277{left:429.405000px;}
.x24_c01277{left:433.725000px;}
.x118_c01277{left:435.450000px;}
.x41_c01277{left:438.045000px;}
.x84_c01277{left:439.770000px;}
.x34_c01277{left:444.090000px;}
.xeb_c01277{left:446.685000px;}
.xcd_c01277{left:448.410000px;}
.xdd_c01277{left:450.150000px;}
.x4a_c01277{left:451.875000px;}
.xc4_c01277{left:453.600000px;}
.x7d_c01277{left:455.325000px;}
.xd2_c01277{left:457.920000px;}
.x4b_c01277{left:459.645000px;}
.x56_c01277{left:462.240000px;}
.xc1_c01277{left:464.835000px;}
.x8d_c01277{left:467.430000px;}
.x101_c01277{left:474.330000px;}
.x75_c01277{left:476.925000px;}
.x68_c01277{left:480.390000px;}
.xda_c01277{left:482.970000px;}
.x42_c01277{left:486.435000px;}
.x4c_c01277{left:489.030000px;}
.x35_c01277{left:490.755000px;}
.x113_c01277{left:493.350000px;}
.xc7_c01277{left:495.075000px;}
.xde_c01277{left:496.800000px;}
.x99_c01277{left:499.395000px;}
.x6e_c01277{left:501.990000px;}
.xd3_c01277{left:505.440000px;}
.x17_c01277{left:508.035000px;}
.xea_c01277{left:510.630000px;}
.x9a_c01277{left:512.355000px;}
.x117_c01277{left:514.080000px;}
.xa7_c01277{left:516.675000px;}
.xcb_c01277{left:520.995000px;}
.xd4_c01277{left:523.590000px;}
.x8e_c01277{left:526.170000px;}
.x7e_c01277{left:529.635000px;}
.x4d_c01277{left:531.360000px;}
.xb6_c01277{left:533.085000px;}
.x25_c01277{left:534.810000px;}
.x12_c01277{left:537.404175px;}
.x85_c01277{left:540.000000px;}
.x60_c01277{left:542.595000px;}
.x10c_c01277{left:545.190000px;}
.x61_c01277{left:546.915000px;}
.xab_c01277{left:548.640000px;}
.x5c_c01277{left:552.960000px;}
.x10b_c01277{left:554.685000px;}
.x18_c01277{left:556.410000px;}
.xfd_c01277{left:560.730000px;}
.xf6_c01277{left:562.470000px;}
.x9e_c01277{left:565.920000px;}
.x13_c01277{left:567.645000px;}
.xbc_c01277{left:569.370000px;}
.x9f_c01277{left:571.965000px;}
.x26_c01277{left:574.560000px;}
.xed_c01277{left:576.285000px;}
.x7f_c01277{left:586.650000px;}
.x102_c01277{left:589.245000px;}
.x19_c01277{left:590.970000px;}
.x43_c01277{left:592.710000px;}
.x5d_c01277{left:597.030000px;}
.x86_c01277{left:599.610000px;}
.xce_c01277{left:602.205000px;}
.x36_c01277{left:604.800000px;}
.xbd_c01277{left:609.990000px;}
.x2b_c01277{left:614.310000px;}
.xf3_c01277{left:616.035000px;}
.x76_c01277{left:617.760000px;}
.xc5_c01277{left:619.485000px;}
.x104_c01277{left:622.080000px;}
.xd5_c01277{left:624.675000px;}
.xac_c01277{left:627.270000px;}
.x9b_c01277{left:628.995000px;}
.x10d_c01277{left:630.720000px;}
.x27_c01277{left:634.170000px;}
.xa8_c01277{left:635.910000px;}
.x69_c01277{left:637.635000px;}
.x2c_c01277{left:639.360000px;}
.xcc_c01277{left:643.680000px;}
.xc2_c01277{left:645.405000px;}
.x8f_c01277{left:647.130000px;}
.xb1_c01277{left:649.725000px;}
.xf7_c01277{left:651.450000px;}
.x4e_c01277{left:654.915000px;}
.xb7_c01277{left:661.830000px;}
.x2d_c01277{left:663.555000px;}
.xa0_c01277{left:665.280000px;}
.x90_c01277{left:667.005000px;}
.x80_c01277{left:669.600000px;}
.xc9_c01277{left:671.325000px;}
.x1a_c01277{left:673.920000px;}
.xf1_c01277{left:676.515000px;}
.x81_c01277{left:678.240000px;}
.x2e_c01277{left:680.835000px;}
.xee_c01277{left:682.560000px;}
.xf9_c01277{left:685.155000px;}
.x87_c01277{left:686.880000px;}
.x105_c01277{left:688.605000px;}
.x14_c01277{left:691.200000px;}
.x6f_c01277{left:693.795000px;}
.x44_c01277{left:696.390000px;}
.x77_c01277{left:698.970000px;}
.x10e_c01277{left:701.565000px;}
.xdf_c01277{left:703.290000px;}
.xe6_c01277{left:706.755000px;}
.x91_c01277{left:708.480000px;}
.xad_c01277{left:710.205000px;}
.xd6_c01277{left:712.800000px;}
.x1b_c01277{left:714.525000px;}
.x88_c01277{left:717.120000px;}
.xae_c01277{left:718.845000px;}
.xfa_c01277{left:720.570000px;}
.xb8_c01277{left:723.165000px;}
.x57_c01277{left:724.890000px;}
.xb2_c01277{left:728.355000px;}
.xa9_c01277{left:730.080000px;}
.x2f_c01277{left:731.805000px;}
.x92_c01277{left:734.400000px;}
.x78_c01277{left:739.590000px;}
.x62_c01277{left:741.315000px;}
.x45_c01277{left:743.910000px;}
.xbe_c01277{left:745.635000px;}
.x1c_c01277{left:747.360000px;}
.x37_c01277{left:749.955000px;}
.x63_c01277{left:752.550000px;}
.xd7_c01277{left:756.000000px;}
.x9_c01277{left:757.725000px;}
.x1d_c01277{left:760.320000px;}
.x58_c01277{left:762.045000px;}
.x30_c01277{left:765.510000px;}
.xa1_c01277{left:768.090000px;}
.xa_c01277{left:771.555000px;}
.xb3_c01277{left:774.150000px;}
.x4f_c01277{left:776.730000px;}
.xe0_c01277{left:779.325000px;}
.x111_c01277{left:781.920000px;}
.xc8_c01277{left:783.645000px;}
.x59_c01277{left:787.965000px;}
.x106_c01277{left:793.155000px;}
.xb9_c01277{left:794.880000px;}
.x119_c01277{left:796.605000px;}
.x82_c01277{left:799.200000px;}
.x38_c01277{left:800.925000px;}
.x28_c01277{left:802.650000px;}
.x70_c01277{left:804.390000px;}
.xaa_c01277{left:806.970000px;}
.x10f_c01277{left:808.710000px;}
.x71_c01277{left:812.160000px;}
.x6a_c01277{left:813.885000px;}
.x5e_c01277{left:816.480000px;}
.x64_c01277{left:819.075000px;}
.x46_c01277{left:820.800000px;}
.x79_c01277{left:822.525000px;}
.x72_c01277{left:824.250000px;}
.xaf_c01277{left:829.440000px;}
.x115_c01277{left:832.890000px;}
.xf8_c01277{left:834.630000px;}
.xa2_c01277{left:836.355000px;}
.x1e_c01277{left:838.080000px;}
.xca_c01277{left:839.805000px;}
.xe7_c01277{left:841.530000px;}
.x6b_c01277{left:843.270000px;}
.xb_c01277{left:845.850000px;}
.x31_c01277{left:847.590000px;}
.xcf_c01277{left:849.315000px;}
.xb4_c01277{left:851.040000px;}
.x39_c01277{left:852.765000px;}
.xc_c01277{left:854.490000px;}
.x110_c01277{left:857.085000px;}
.xd_c01277{left:858.810000px;}
.xa3_c01277{left:860.550000px;}
.x73_c01277{left:867.450000px;}
.xe_c01277{left:869.190000px;}
.x50_c01277{left:870.915000px;}
.x116_c01277{left:874.365000px;}
.x65_c01277{left:876.960000px;}
.x51_c01277{left:880.410000px;}
.x9c_c01277{left:882.150000px;}
.x1f_c01277{left:883.875000px;}
.xe8_c01277{left:885.600000px;}
.xef_c01277{left:887.325000px;}
.x52_c01277{left:890.790000px;}
.x89_c01277{left:893.370000px;}
.xec_c01277{left:895.110000px;}
.xd8_c01277{left:896.835000px;}
.x93_c01277{left:898.560000px;}
.x6c_c01277{left:903.750000px;}
.xf0_c01277{left:906.330000px;}
.x94_c01277{left:916.710000px;}
.x9d_c01277{left:935.715000px;}
@media print{
.v2_c01277{vertical-align:-6.133333pt;}
.v1_c01277{vertical-align:-3.093333pt;}
.v0_c01277{vertical-align:0.000000pt;}
.ls3_c01277{letter-spacing:0.000000pt;}
.ls1_c01277{letter-spacing:21.354667pt;}
.ls2_c01277{letter-spacing:46.371093pt;}
.ls0_c01277{letter-spacing:114.122133pt;}
.ws0_c01277{word-spacing:-22.403520pt;}
.ws1_c01277{word-spacing:-7.325440pt;}
.ws2_c01277{word-spacing:0.000000pt;}
.fs2_c01277{font-size:3.072000pt;}
.fs8_c01277{font-size:5.333333pt;}
.fs4_c01277{font-size:6.133333pt;}
.fs1a_c01277{font-size:9.226667pt;}
.fs9_c01277{font-size:12.266667pt;}
.fs0_c01277{font-size:15.360000pt;}
.fs3_c01277{font-size:18.453333pt;}
.fsa_c01277{font-size:21.493333pt;}
.fs5_c01277{font-size:24.586667pt;}
.fs1_c01277{font-size:27.626667pt;}
.fs19_c01277{font-size:30.720000pt;}
.fs7_c01277{font-size:33.813333pt;}
.fs16_c01277{font-size:36.853333pt;}
.fs15_c01277{font-size:39.946667pt;}
.fsf_c01277{font-size:42.986667pt;}
.fs13_c01277{font-size:46.080000pt;}
.fse_c01277{font-size:49.173333pt;}
.fs11_c01277{font-size:52.213333pt;}
.fs14_c01277{font-size:55.306667pt;}
.fs17_c01277{font-size:58.346667pt;}
.fs6_c01277{font-size:61.440000pt;}
.fs1b_c01277{font-size:64.533333pt;}
.fs18_c01277{font-size:67.573333pt;}
.fsb_c01277{font-size:70.666667pt;}
.fs10_c01277{font-size:73.706667pt;}
.fsd_c01277{font-size:76.800000pt;}
.fs12_c01277{font-size:79.893333pt;}
.fs1e_c01277{font-size:82.933333pt;}
.fs1c_c01277{font-size:86.026667pt;}
.fsc_c01277{font-size:89.066667pt;}
.fs1d_c01277{font-size:92.160000pt;}
.fs21_c01277{font-size:95.253333pt;}
.fs22_c01277{font-size:98.293333pt;}
.fs1f_c01277{font-size:101.386667pt;}
.fs20_c01277{font-size:104.426667pt;}
.y0_c01277{bottom:0.000000pt;}
.y213_c01277{bottom:113.666667pt;}
.y212_c01277{bottom:115.973333pt;}
.y210_c01277{bottom:127.493333pt;}
.y211_c01277{bottom:128.253333pt;}
.y20e_c01277{bottom:136.706667pt;}
.y20d_c01277{bottom:139.773333pt;}
.y20f_c01277{bottom:143.613333pt;}
.y20c_c01277{bottom:151.293333pt;}
.y208_c01277{bottom:152.066667pt;}
.y206_c01277{bottom:152.826667pt;}
.y20b_c01277{bottom:153.600000pt;}
.y207_c01277{bottom:155.133333pt;}
.y203_c01277{bottom:155.906667pt;}
.y204_c01277{bottom:156.666667pt;}
.y202_c01277{bottom:157.440000pt;}
.y201_c01277{bottom:158.973333pt;}
.y205_c01277{bottom:165.893333pt;}
.y20a_c01277{bottom:167.426667pt;}
.y209_c01277{bottom:168.960000pt;}
.y1ff_c01277{bottom:170.493333pt;}
.y1fe_c01277{bottom:171.266667pt;}
.y1fd_c01277{bottom:172.026667pt;}
.y200_c01277{bottom:173.573333pt;}
.y1fb_c01277{bottom:176.640000pt;}
.y1fa_c01277{bottom:178.173333pt;}
.y1fc_c01277{bottom:179.706667pt;}
.y1f8_c01277{bottom:186.626667pt;}
.y1f2_c01277{bottom:189.693333pt;}
.y1f7_c01277{bottom:190.466667pt;}
.y1f6_c01277{bottom:191.226667pt;}
.y1f1_c01277{bottom:192.000000pt;}
.y1f9_c01277{bottom:193.533333pt;}
.y1f3_c01277{bottom:197.373333pt;}
.y1f4_c01277{bottom:204.293333pt;}
.y1f5_c01277{bottom:208.133333pt;}
.y1ed_c01277{bottom:209.666667pt;}
.y1ee_c01277{bottom:212.733333pt;}
.y1eb_c01277{bottom:213.506667pt;}
.y1ec_c01277{bottom:214.266667pt;}
.y1f0_c01277{bottom:216.573333pt;}
.y1ea_c01277{bottom:218.106667pt;}
.y1ef_c01277{bottom:220.413333pt;}
.y1e9_c01277{bottom:221.186667pt;}
.y1e6_c01277{bottom:222.720000pt;}
.y1e7_c01277{bottom:223.493333pt;}
.y1e5_c01277{bottom:225.026667pt;}
.y1e8_c01277{bottom:225.786667pt;}
.y1e0_c01277{bottom:226.560000pt;}
.y1e2_c01277{bottom:227.333333pt;}
.y1e1_c01277{bottom:228.093333pt;}
.y1e3_c01277{bottom:229.626667pt;}
.y1e4_c01277{bottom:232.706667pt;}
.y1df_c01277{bottom:243.453333pt;}
.y1dc_c01277{bottom:244.986667pt;}
.y1dd_c01277{bottom:245.760000pt;}
.y1db_c01277{bottom:246.533333pt;}
.y1de_c01277{bottom:248.066667pt;}
.y1d9_c01277{bottom:249.600000pt;}
.y1da_c01277{bottom:250.373333pt;}
.y1d8_c01277{bottom:258.813333pt;}
.y1d5_c01277{bottom:259.586667pt;}
.y1d6_c01277{bottom:260.346667pt;}
.y1d2_c01277{bottom:263.426667pt;}
.y1d7_c01277{bottom:264.186667pt;}
.y1d1_c01277{bottom:264.960000pt;}
.y1d4_c01277{bottom:265.733333pt;}
.y1d0_c01277{bottom:267.266667pt;}
.y1d3_c01277{bottom:268.800000pt;}
.y1cf_c01277{bottom:273.413333pt;}
.y1cd_c01277{bottom:274.173333pt;}
.y1cc_c01277{bottom:275.706667pt;}
.y1c7_c01277{bottom:276.480000pt;}
.y1cb_c01277{bottom:279.546667pt;}
.y1c9_c01277{bottom:280.320000pt;}
.y4_c01277{bottom:281.093333pt;}
.y5_c01277{bottom:281.853333pt;}
.y1c6_c01277{bottom:282.626667pt;}
.y1ce_c01277{bottom:284.160000pt;}
.y1c4_c01277{bottom:284.933333pt;}
.y1c8_c01277{bottom:291.066667pt;}
.y1c5_c01277{bottom:291.840000pt;}
.y1ca_c01277{bottom:294.146667pt;}
.y1c3_c01277{bottom:296.453333pt;}
.y1c2_c01277{bottom:297.213333pt;}
.y1c1_c01277{bottom:299.520000pt;}
.y1c0_c01277{bottom:300.293333pt;}
.y1bb_c01277{bottom:301.053333pt;}
.y1b9_c01277{bottom:301.826667pt;}
.y1bf_c01277{bottom:302.586667pt;}
.y1bc_c01277{bottom:303.360000pt;}
.y1ba_c01277{bottom:304.133333pt;}
.y1bd_c01277{bottom:304.893333pt;}
.y1be_c01277{bottom:306.426667pt;}
.y1b8_c01277{bottom:314.106667pt;}
.y1b7_c01277{bottom:314.880000pt;}
.y1b5_c01277{bottom:315.653333pt;}
.y1b6_c01277{bottom:317.946667pt;}
.y1b2_c01277{bottom:318.720000pt;}
.y1b3_c01277{bottom:322.560000pt;}
.y1b4_c01277{bottom:323.333333pt;}
.y1ae_c01277{bottom:328.706667pt;}
.y1b1_c01277{bottom:329.466667pt;}
.y1b0_c01277{bottom:330.240000pt;}
.y1ac_c01277{bottom:331.013333pt;}
.y1af_c01277{bottom:331.773333pt;}
.y1ab_c01277{bottom:334.080000pt;}
.y1ad_c01277{bottom:334.853333pt;}
.y1aa_c01277{bottom:335.613333pt;}
.y3_c01277{bottom:337.146667pt;}
.y1a9_c01277{bottom:340.226667pt;}
.y1a8_c01277{bottom:345.600000pt;}
.y1a6_c01277{bottom:349.440000pt;}
.y19f_c01277{bottom:350.213333pt;}
.y1a4_c01277{bottom:350.973333pt;}
.y1a5_c01277{bottom:352.506667pt;}
.y19e_c01277{bottom:353.280000pt;}
.y19d_c01277{bottom:354.053333pt;}
.y1a7_c01277{bottom:356.346667pt;}
.y1a3_c01277{bottom:359.426667pt;}
.y1a2_c01277{bottom:360.186667pt;}
.y1a0_c01277{bottom:361.733333pt;}
.y19a_c01277{bottom:365.573333pt;}
.y1a1_c01277{bottom:367.106667pt;}
.y19c_c01277{bottom:367.866667pt;}
.y19b_c01277{bottom:368.640000pt;}
.y198_c01277{bottom:369.413333pt;}
.y192_c01277{bottom:370.173333pt;}
.y197_c01277{bottom:370.946667pt;}
.y199_c01277{bottom:371.706667pt;}
.y196_c01277{bottom:372.480000pt;}
.y191_c01277{bottom:373.253333pt;}
.y195_c01277{bottom:374.013333pt;}
.y190_c01277{bottom:374.786667pt;}
.y18d_c01277{bottom:375.546667pt;}
.y194_c01277{bottom:376.320000pt;}
.y18c_c01277{bottom:377.853333pt;}
.y18e_c01277{bottom:378.626667pt;}
.y18f_c01277{bottom:379.386667pt;}
.y188_c01277{bottom:382.466667pt;}
.y193_c01277{bottom:383.226667pt;}
.y185_c01277{bottom:385.533333pt;}
.y186_c01277{bottom:387.840000pt;}
.y182_c01277{bottom:390.906667pt;}
.y184_c01277{bottom:391.680000pt;}
.y183_c01277{bottom:393.213333pt;}
.y189_c01277{bottom:394.746667pt;}
.y187_c01277{bottom:396.293333pt;}
.y18b_c01277{bottom:398.586667pt;}
.y18a_c01277{bottom:399.360000pt;}
.y180_c01277{bottom:408.573333pt;}
.y179_c01277{bottom:409.346667pt;}
.y17b_c01277{bottom:410.106667pt;}
.y17e_c01277{bottom:411.653333pt;}
.y17f_c01277{bottom:412.413333pt;}
.y177_c01277{bottom:413.946667pt;}
.y17a_c01277{bottom:415.493333pt;}
.y178_c01277{bottom:416.253333pt;}
.y17d_c01277{bottom:420.093333pt;}
.y17c_c01277{bottom:421.626667pt;}
.y181_c01277{bottom:423.173333pt;}
.y174_c01277{bottom:425.466667pt;}
.y173_c01277{bottom:426.240000pt;}
.y176_c01277{bottom:427.013333pt;}
.y175_c01277{bottom:427.773333pt;}
.y171_c01277{bottom:429.306667pt;}
.y172_c01277{bottom:433.920000pt;}
.y170_c01277{bottom:436.226667pt;}
.y16f_c01277{bottom:436.986667pt;}
.y16e_c01277{bottom:441.600000pt;}
.y16d_c01277{bottom:443.133333pt;}
.y16b_c01277{bottom:443.906667pt;}
.y166_c01277{bottom:445.440000pt;}
.y169_c01277{bottom:446.213333pt;}
.y16c_c01277{bottom:446.973333pt;}
.y168_c01277{bottom:447.746667pt;}
.y167_c01277{bottom:452.346667pt;}
.y16a_c01277{bottom:454.653333pt;}
.y165_c01277{bottom:458.493333pt;}
.y164_c01277{bottom:460.800000pt;}
.y160_c01277{bottom:461.573333pt;}
.y163_c01277{bottom:463.106667pt;}
.y162_c01277{bottom:463.866667pt;}
.y15f_c01277{bottom:466.173333pt;}
.y161_c01277{bottom:470.786667pt;}
.y15e_c01277{bottom:471.546667pt;}
.y15c_c01277{bottom:473.093333pt;}
.y15d_c01277{bottom:473.853333pt;}
.y15a_c01277{bottom:475.386667pt;}
.y15b_c01277{bottom:476.160000pt;}
.y159_c01277{bottom:494.586667pt;}
.y157_c01277{bottom:496.893333pt;}
.y156_c01277{bottom:497.666667pt;}
.y155_c01277{bottom:498.426667pt;}
.y152_c01277{bottom:499.200000pt;}
.y154_c01277{bottom:500.733333pt;}
.y158_c01277{bottom:501.506667pt;}
.y153_c01277{bottom:505.346667pt;}
.y150_c01277{bottom:513.786667pt;}
.y14c_c01277{bottom:516.093333pt;}
.y14f_c01277{bottom:517.626667pt;}
.y151_c01277{bottom:518.400000pt;}
.y14e_c01277{bottom:519.173333pt;}
.y14d_c01277{bottom:519.933333pt;}
.y148_c01277{bottom:521.466667pt;}
.y147_c01277{bottom:524.546667pt;}
.y146_c01277{bottom:525.306667pt;}
.y14a_c01277{bottom:526.080000pt;}
.y14b_c01277{bottom:527.613333pt;}
.y149_c01277{bottom:528.386667pt;}
.y145_c01277{bottom:532.986667pt;}
.y144_c01277{bottom:535.293333pt;}
.y143_c01277{bottom:536.066667pt;}
.y140_c01277{bottom:536.826667pt;}
.y13f_c01277{bottom:537.600000pt;}
.y142_c01277{bottom:538.373333pt;}
.y141_c01277{bottom:539.133333pt;}
.y13d_c01277{bottom:542.213333pt;}
.y13e_c01277{bottom:542.973333pt;}
.y13c_c01277{bottom:550.653333pt;}
.y13a_c01277{bottom:551.426667pt;}
.y139_c01277{bottom:552.186667pt;}
.y13b_c01277{bottom:552.960000pt;}
.y137_c01277{bottom:555.266667pt;}
.y134_c01277{bottom:556.026667pt;}
.y138_c01277{bottom:556.800000pt;}
.y135_c01277{bottom:557.573333pt;}
.y136_c01277{bottom:559.866667pt;}
.y130_c01277{bottom:570.626667pt;}
.y131_c01277{bottom:571.386667pt;}
.y12d_c01277{bottom:573.693333pt;}
.y12c_c01277{bottom:576.000000pt;}
.y12e_c01277{bottom:576.773333pt;}
.y132_c01277{bottom:579.066667pt;}
.y12f_c01277{bottom:579.840000pt;}
.y133_c01277{bottom:585.986667pt;}
.y12b_c01277{bottom:586.746667pt;}
.y12a_c01277{bottom:588.293333pt;}
.y129_c01277{bottom:589.053333pt;}
.y127_c01277{bottom:591.360000pt;}
.y125_c01277{bottom:592.133333pt;}
.y128_c01277{bottom:592.893333pt;}
.y126_c01277{bottom:595.200000pt;}
.y122_c01277{bottom:595.973333pt;}
.y121_c01277{bottom:596.733333pt;}
.y120_c01277{bottom:600.573333pt;}
.y123_c01277{bottom:603.653333pt;}
.y124_c01277{bottom:604.413333pt;}
.y11f_c01277{bottom:605.186667pt;}
.y11d_c01277{bottom:607.493333pt;}
.y11c_c01277{bottom:608.253333pt;}
.y11a_c01277{bottom:609.786667pt;}
.y11b_c01277{bottom:610.560000pt;}
.y11e_c01277{bottom:611.333333pt;}
.y119_c01277{bottom:613.626667pt;}
.y116_c01277{bottom:618.240000pt;}
.y115_c01277{bottom:619.013333pt;}
.y114_c01277{bottom:621.306667pt;}
.y112_c01277{bottom:622.080000pt;}
.y113_c01277{bottom:625.146667pt;}
.y118_c01277{bottom:626.693333pt;}
.y117_c01277{bottom:627.453333pt;}
.y10f_c01277{bottom:628.226667pt;}
.y10e_c01277{bottom:628.986667pt;}
.y111_c01277{bottom:629.760000pt;}
.y110_c01277{bottom:632.066667pt;}
.y10c_c01277{bottom:639.746667pt;}
.y10d_c01277{bottom:642.053333pt;}
.y10b_c01277{bottom:643.586667pt;}
.y107_c01277{bottom:645.120000pt;}
.y109_c01277{bottom:645.893333pt;}
.y108_c01277{bottom:646.653333pt;}
.y10a_c01277{bottom:647.426667pt;}
.y106_c01277{bottom:648.960000pt;}
.y105_c01277{bottom:650.493333pt;}
.y104_c01277{bottom:654.333333pt;}
.y102_c01277{bottom:658.173333pt;}
.y103_c01277{bottom:659.706667pt;}
.y100_c01277{bottom:661.253333pt;}
.yfd_c01277{bottom:662.013333pt;}
.yfe_c01277{bottom:663.546667pt;}
.yfc_c01277{bottom:664.320000pt;}
.y101_c01277{bottom:665.093333pt;}
.yff_c01277{bottom:665.853333pt;}
.yfb_c01277{bottom:668.160000pt;}
.yfa_c01277{bottom:677.373333pt;}
.yf8_c01277{bottom:678.146667pt;}
.yf9_c01277{bottom:681.213333pt;}
.yf6_c01277{bottom:681.986667pt;}
.yf4_c01277{bottom:682.746667pt;}
.yf5_c01277{bottom:683.520000pt;}
.yf7_c01277{bottom:684.293333pt;}
.yf3_c01277{bottom:695.040000pt;}
.yf0_c01277{bottom:697.346667pt;}
.yf2_c01277{bottom:698.880000pt;}
.yed_c01277{bottom:699.653333pt;}
.yef_c01277{bottom:700.413333pt;}
.yf1_c01277{bottom:702.720000pt;}
.yee_c01277{bottom:703.493333pt;}
.yeb_c01277{bottom:711.933333pt;}
.yea_c01277{bottom:712.706667pt;}
.yec_c01277{bottom:713.466667pt;}
.ye7_c01277{bottom:715.773333pt;}
.ye6_c01277{bottom:716.546667pt;}
.ye5_c01277{bottom:717.306667pt;}
.ye9_c01277{bottom:718.853333pt;}
.ye8_c01277{bottom:720.386667pt;}
.ye4_c01277{bottom:730.373333pt;}
.ye2_c01277{bottom:732.666667pt;}
.ye1_c01277{bottom:733.440000pt;}
.ydf_c01277{bottom:734.213333pt;}
.ydc_c01277{bottom:734.973333pt;}
.yde_c01277{bottom:735.746667pt;}
.ye3_c01277{bottom:737.280000pt;}
.ye0_c01277{bottom:738.053333pt;}
.ydd_c01277{bottom:738.813333pt;}
.ydb_c01277{bottom:739.586667pt;}
.y2_c01277{bottom:748.800000pt;}
.yd9_c01277{bottom:749.573333pt;}
.yd6_c01277{bottom:750.333333pt;}
.yd8_c01277{bottom:752.640000pt;}
.yda_c01277{bottom:753.413333pt;}
.yd7_c01277{bottom:754.946667pt;}
.yd5_c01277{bottom:755.706667pt;}
.yd4_c01277{bottom:758.013333pt;}
.yd3_c01277{bottom:766.466667pt;}
.yd1_c01277{bottom:767.226667pt;}
.ycf_c01277{bottom:768.773333pt;}
.ycc_c01277{bottom:769.533333pt;}
.yd0_c01277{bottom:770.306667pt;}
.yca_c01277{bottom:771.066667pt;}
.yd2_c01277{bottom:772.613333pt;}
.yce_c01277{bottom:773.373333pt;}
.ycd_c01277{bottom:774.146667pt;}
.ycb_c01277{bottom:774.906667pt;}
.yc9_c01277{bottom:784.893333pt;}
.yc5_c01277{bottom:785.666667pt;}
.yc6_c01277{bottom:786.426667pt;}
.yc2_c01277{bottom:789.506667pt;}
.yc3_c01277{bottom:790.266667pt;}
.yc8_c01277{bottom:791.040000pt;}
.yc7_c01277{bottom:791.813333pt;}
.yc4_c01277{bottom:792.573333pt;}
.yc1_c01277{bottom:802.560000pt;}
.yc0_c01277{bottom:803.333333pt;}
.ybb_c01277{bottom:804.866667pt;}
.ybe_c01277{bottom:805.626667pt;}
.yb9_c01277{bottom:806.400000pt;}
.ybf_c01277{bottom:808.706667pt;}
.ybd_c01277{bottom:809.466667pt;}
.ybc_c01277{bottom:810.240000pt;}
.yba_c01277{bottom:811.013333pt;}
.yb8_c01277{bottom:820.986667pt;}
.yb6_c01277{bottom:823.293333pt;}
.yb5_c01277{bottom:824.066667pt;}
.yb7_c01277{bottom:826.373333pt;}
.yb4_c01277{bottom:827.133333pt;}
.yb3_c01277{bottom:828.666667pt;}
.yb2_c01277{bottom:829.440000pt;}
.yb1_c01277{bottom:830.213333pt;}
.yaf_c01277{bottom:839.426667pt;}
.yac_c01277{bottom:840.960000pt;}
.yab_c01277{bottom:841.733333pt;}
.yb0_c01277{bottom:842.493333pt;}
.yae_c01277{bottom:843.266667pt;}
.ya7_c01277{bottom:844.800000pt;}
.yad_c01277{bottom:845.573333pt;}
.ya9_c01277{bottom:846.333333pt;}
.yaa_c01277{bottom:847.106667pt;}
.ya8_c01277{bottom:847.866667pt;}
.ya3_c01277{bottom:857.853333pt;}
.ya5_c01277{bottom:858.626667pt;}
.y9f_c01277{bottom:859.386667pt;}
.ya6_c01277{bottom:861.693333pt;}
.ya4_c01277{bottom:862.466667pt;}
.ya2_c01277{bottom:863.226667pt;}
.ya0_c01277{bottom:864.000000pt;}
.ya1_c01277{bottom:864.773333pt;}
.y9c_c01277{bottom:877.053333pt;}
.y9d_c01277{bottom:877.826667pt;}
.y9b_c01277{bottom:880.133333pt;}
.y9e_c01277{bottom:880.893333pt;}
.y99_c01277{bottom:889.346667pt;}
.y97_c01277{bottom:890.106667pt;}
.y92_c01277{bottom:890.880000pt;}
.y94_c01277{bottom:893.186667pt;}
.y96_c01277{bottom:894.720000pt;}
.y98_c01277{bottom:897.786667pt;}
.y95_c01277{bottom:898.560000pt;}
.y93_c01277{bottom:900.093333pt;}
.y9a_c01277{bottom:900.866667pt;}
.y1_c01277{bottom:902.400000pt;}
.y91_c01277{bottom:908.546667pt;}
.y8e_c01277{bottom:909.306667pt;}
.y8d_c01277{bottom:910.080000pt;}
.y87_c01277{bottom:912.386667pt;}
.y8b_c01277{bottom:913.146667pt;}
.y8f_c01277{bottom:913.920000pt;}
.y90_c01277{bottom:914.693333pt;}
.y8a_c01277{bottom:915.453333pt;}
.y8c_c01277{bottom:916.226667pt;}
.y88_c01277{bottom:916.986667pt;}
.y86_c01277{bottom:917.760000pt;}
.y89_c01277{bottom:920.826667pt;}
.y80_c01277{bottom:930.053333pt;}
.y84_c01277{bottom:930.813333pt;}
.y85_c01277{bottom:931.586667pt;}
.y7c_c01277{bottom:932.346667pt;}
.y7f_c01277{bottom:933.893333pt;}
.y83_c01277{bottom:935.426667pt;}
.y7e_c01277{bottom:936.186667pt;}
.y78_c01277{bottom:936.960000pt;}
.y81_c01277{bottom:938.493333pt;}
.y82_c01277{bottom:940.800000pt;}
.y79_c01277{bottom:941.573333pt;}
.y7d_c01277{bottom:942.333333pt;}
.y7b_c01277{bottom:943.106667pt;}
.y7a_c01277{bottom:945.413333pt;}
.y74_c01277{bottom:947.706667pt;}
.y76_c01277{bottom:949.253333pt;}
.y77_c01277{bottom:950.013333pt;}
.y75_c01277{bottom:951.546667pt;}
.y6f_c01277{bottom:952.320000pt;}
.y72_c01277{bottom:954.626667pt;}
.y71_c01277{bottom:956.933333pt;}
.y70_c01277{bottom:958.466667pt;}
.y73_c01277{bottom:960.000000pt;}
.y6a_c01277{bottom:965.373333pt;}
.y68_c01277{bottom:968.453333pt;}
.y6b_c01277{bottom:970.746667pt;}
.y69_c01277{bottom:971.520000pt;}
.y67_c01277{bottom:972.293333pt;}
.y6d_c01277{bottom:973.053333pt;}
.y6e_c01277{bottom:976.893333pt;}
.y6c_c01277{bottom:978.426667pt;}
.y66_c01277{bottom:980.733333pt;}
.y64_c01277{bottom:983.040000pt;}
.y60_c01277{bottom:983.813333pt;}
.y5e_c01277{bottom:984.573333pt;}
.y65_c01277{bottom:985.346667pt;}
.y5f_c01277{bottom:986.106667pt;}
.y62_c01277{bottom:986.880000pt;}
.y5d_c01277{bottom:987.653333pt;}
.y61_c01277{bottom:988.413333pt;}
.y63_c01277{bottom:989.186667pt;}
.y5c_c01277{bottom:990.720000pt;}
.y56_c01277{bottom:1003.013333pt;}
.y5b_c01277{bottom:1003.773333pt;}
.y55_c01277{bottom:1006.853333pt;}
.y59_c01277{bottom:1007.613333pt;}
.y57_c01277{bottom:1009.920000pt;}
.y5a_c01277{bottom:1011.453333pt;}
.y58_c01277{bottom:1018.373333pt;}
.y51_c01277{bottom:1019.906667pt;}
.y50_c01277{bottom:1020.666667pt;}
.y53_c01277{bottom:1022.973333pt;}
.y54_c01277{bottom:1024.506667pt;}
.y52_c01277{bottom:1026.053333pt;}
.y4d_c01277{bottom:1027.586667pt;}
.y4e_c01277{bottom:1036.800000pt;}
.y49_c01277{bottom:1037.573333pt;}
.y4f_c01277{bottom:1039.866667pt;}
.y46_c01277{bottom:1040.640000pt;}
.y4a_c01277{bottom:1042.946667pt;}
.y48_c01277{bottom:1043.706667pt;}
.y47_c01277{bottom:1044.480000pt;}
.y45_c01277{bottom:1045.253333pt;}
.y4b_c01277{bottom:1047.546667pt;}
.y4c_c01277{bottom:1050.626667pt;}
.y44_c01277{bottom:1051.386667pt;}
.y42_c01277{bottom:1056.773333pt;}
.y3d_c01277{bottom:1059.066667pt;}
.y43_c01277{bottom:1060.613333pt;}
.y40_c01277{bottom:1061.373333pt;}
.y41_c01277{bottom:1062.146667pt;}
.y3f_c01277{bottom:1062.906667pt;}
.y3e_c01277{bottom:1063.680000pt;}
.y3c_c01277{bottom:1077.506667pt;}
.y38_c01277{bottom:1078.266667pt;}
.y39_c01277{bottom:1079.040000pt;}
.y3b_c01277{bottom:1079.813333pt;}
.y3a_c01277{bottom:1081.346667pt;}
.y37_c01277{bottom:1092.866667pt;}
.y35_c01277{bottom:1094.400000pt;}
.y34_c01277{bottom:1099.773333pt;}
.y36_c01277{bottom:1100.546667pt;}
.y32_c01277{bottom:1110.533333pt;}
.y31_c01277{bottom:1111.293333pt;}
.y2c_c01277{bottom:1112.826667pt;}
.y2f_c01277{bottom:1113.600000pt;}
.y2d_c01277{bottom:1114.373333pt;}
.y33_c01277{bottom:1115.133333pt;}
.y30_c01277{bottom:1116.666667pt;}
.y2e_c01277{bottom:1117.440000pt;}
.y28_c01277{bottom:1131.266667pt;}
.y29_c01277{bottom:1132.800000pt;}
.y2b_c01277{bottom:1133.573333pt;}
.y2a_c01277{bottom:1134.333333pt;}
.y26_c01277{bottom:1135.106667pt;}
.y27_c01277{bottom:1135.866667pt;}
.y25_c01277{bottom:1143.546667pt;}
.y23_c01277{bottom:1145.853333pt;}
.y21_c01277{bottom:1146.626667pt;}
.y1d_c01277{bottom:1148.933333pt;}
.y1c_c01277{bottom:1149.693333pt;}
.y1e_c01277{bottom:1150.466667pt;}
.y24_c01277{bottom:1151.226667pt;}
.y22_c01277{bottom:1152.000000pt;}
.y1f_c01277{bottom:1152.773333pt;}
.y20_c01277{bottom:1153.533333pt;}
.y1b_c01277{bottom:1161.986667pt;}
.y19_c01277{bottom:1162.746667pt;}
.y17_c01277{bottom:1163.520000pt;}
.y16_c01277{bottom:1165.826667pt;}
.y12_c01277{bottom:1166.586667pt;}
.y13_c01277{bottom:1167.360000pt;}
.y18_c01277{bottom:1168.893333pt;}
.y1a_c01277{bottom:1169.666667pt;}
.y14_c01277{bottom:1171.973333pt;}
.y15_c01277{bottom:1172.733333pt;}
.y11_c01277{bottom:1185.786667pt;}
.y10_c01277{bottom:1188.866667pt;}
.yf_c01277{bottom:1190.400000pt;}
.ye_c01277{bottom:1191.173333pt;}
.yd_c01277{bottom:1191.933333pt;}
.ya_c01277{bottom:1208.826667pt;}
.yc_c01277{bottom:1211.133333pt;}
.yb_c01277{bottom:1211.906667pt;}
.y8_c01277{bottom:1219.586667pt;}
.y9_c01277{bottom:1230.333333pt;}
.y7_c01277{bottom:1254.146667pt;}
.y6_c01277{bottom:1256.453333pt;}
.h4_c01277{height:2.764500pt;}
.ha_c01277{height:4.799479pt;}
.h6_c01277{height:5.519401pt;}
.h1c_c01277{height:8.303099pt;}
.hb_c01277{height:11.038802pt;}
.h2_c01277{height:13.822500pt;}
.h5_c01277{height:16.606198pt;}
.hc_c01277{height:19.341901pt;}
.h7_c01277{height:22.125599pt;}
.h3_c01277{height:24.861302pt;}
.h1b_c01277{height:27.645000pt;}
.h9_c01277{height:30.428698pt;}
.h18_c01277{height:33.164401pt;}
.h17_c01277{height:35.948099pt;}
.h11_c01277{height:38.683802pt;}
.h15_c01277{height:41.467500pt;}
.h10_c01277{height:44.251198pt;}
.h13_c01277{height:46.986901pt;}
.h16_c01277{height:49.770599pt;}
.h19_c01277{height:52.506302pt;}
.h8_c01277{height:55.290000pt;}
.h1d_c01277{height:58.073698pt;}
.h1a_c01277{height:60.809401pt;}
.hd_c01277{height:63.593099pt;}
.h12_c01277{height:66.328802pt;}
.hf_c01277{height:69.112500pt;}
.h14_c01277{height:71.896198pt;}
.h20_c01277{height:74.631901pt;}
.h1e_c01277{height:77.415599pt;}
.he_c01277{height:80.151302pt;}
.h1f_c01277{height:82.935000pt;}
.h23_c01277{height:85.718698pt;}
.h24_c01277{height:88.454401pt;}
.h21_c01277{height:91.238099pt;}
.h22_c01277{height:93.973802pt;}
.h0_c01277{height:1341.693333pt;}
.h1_c01277{height:1342.000000pt;}
.w0_c01277{width:967.680000pt;}
.w1_c01277{width:968.000000pt;}
.x0_c01277{left:0.000000pt;}
.x1_c01277{left:122.106667pt;}
.x2_c01277{left:124.413333pt;}
.x5_c01277{left:129.786667pt;}
.x3_c01277{left:142.080000pt;}
.x6_c01277{left:146.693333pt;}
.x4_c01277{left:148.986667pt;}
.x5f_c01277{left:170.493333pt;}
.xf2_c01277{left:193.533333pt;}
.xe1_c01277{left:201.213333pt;}
.x53_c01277{left:204.293333pt;}
.xd0_c01277{left:207.360000pt;}
.x95_c01277{left:208.893333pt;}
.xc6_c01277{left:210.426667pt;}
.xf_c01277{left:211.973333pt;}
.x20_c01277{left:214.266667pt;}
.xfe_c01277{left:215.813333pt;}
.x3a_c01277{left:226.560000pt;}
.xe9_c01277{left:228.093333pt;}
.x5a_c01277{left:229.626667pt;}
.x3e_c01277{left:231.173333pt;}
.xbf_c01277{left:234.240000pt;}
.x10_c01277{left:235.773333pt;}
.x54_c01277{left:238.080000pt;}
.x32_c01277{left:240.386667pt;}
.x8a_c01277{left:241.920000pt;}
.xdb_c01277{left:244.226667pt;}
.x66_c01277{left:246.533333pt;}
.x103_c01277{left:248.066667pt;}
.xe2_c01277{left:251.133333pt;}
.x83_c01277{left:253.440000pt;}
.x112_c01277{left:254.973333pt;}
.x107_c01277{left:257.280000pt;}
.x21_c01277{left:258.813333pt;}
.x47_c01277{left:260.346667pt;}
.x7a_c01277{left:261.893333pt;}
.x6d_c01277{left:263.426667pt;}
.x29_c01277{left:265.733333pt;}
.xd1_c01277{left:269.573333pt;}
.x96_c01277{left:271.866667pt;}
.x3b_c01277{left:273.413333pt;}
.x114_c01277{left:274.946667pt;}
.x15_c01277{left:276.480000pt;}
.x7_c01277{left:278.013333pt;}
.xf4_c01277{left:280.320000pt;}
.xc0_c01277{left:281.853333pt;}
.x8_c01277{left:284.160000pt;}
.x22_c01277{left:286.466667pt;}
.x8b_c01277{left:288.773333pt;}
.x5b_c01277{left:291.840000pt;}
.x108_c01277{left:293.373333pt;}
.xe3_c01277{left:295.680000pt;}
.xf5_c01277{left:297.986667pt;}
.x3f_c01277{left:300.293333pt;}
.x7b_c01277{left:301.826667pt;}
.xc3_c01277{left:304.893333pt;}
.x48_c01277{left:307.200000pt;}
.xe4_c01277{left:309.506667pt;}
.xff_c01277{left:311.813333pt;}
.xd9_c01277{left:313.346667pt;}
.xfb_c01277{left:314.880000pt;}
.xdc_c01277{left:317.186667pt;}
.xb0_c01277{left:319.493333pt;}
.xa4_c01277{left:321.026667pt;}
.x2a_c01277{left:322.560000pt;}
.x97_c01277{left:324.866667pt;}
.x8c_c01277{left:327.933333pt;}
.x55_c01277{left:329.466667pt;}
.x16_c01277{left:331.773333pt;}
.x109_c01277{left:334.080000pt;}
.x67_c01277{left:337.146667pt;}
.x33_c01277{left:340.226667pt;}
.xa5_c01277{left:341.760000pt;}
.x49_c01277{left:343.293333pt;}
.x11_c01277{left:346.373333pt;}
.x98_c01277{left:347.906667pt;}
.x10a_c01277{left:349.440000pt;}
.x40_c01277{left:352.506667pt;}
.xe5_c01277{left:357.120000pt;}
.x3c_c01277{left:358.653333pt;}
.xa6_c01277{left:361.733333pt;}
.x100_c01277{left:364.026667pt;}
.xba_c01277{left:366.333333pt;}
.x23_c01277{left:368.640000pt;}
.x7c_c01277{left:370.946667pt;}
.xbb_c01277{left:373.253333pt;}
.x74_c01277{left:374.786667pt;}
.xfc_c01277{left:376.320000pt;}
.x3d_c01277{left:379.386667pt;}
.xb5_c01277{left:381.693333pt;}
.x24_c01277{left:385.533333pt;}
.x118_c01277{left:387.066667pt;}
.x41_c01277{left:389.373333pt;}
.x84_c01277{left:390.906667pt;}
.x34_c01277{left:394.746667pt;}
.xeb_c01277{left:397.053333pt;}
.xcd_c01277{left:398.586667pt;}
.xdd_c01277{left:400.133333pt;}
.x4a_c01277{left:401.666667pt;}
.xc4_c01277{left:403.200000pt;}
.x7d_c01277{left:404.733333pt;}
.xd2_c01277{left:407.040000pt;}
.x4b_c01277{left:408.573333pt;}
.x56_c01277{left:410.880000pt;}
.xc1_c01277{left:413.186667pt;}
.x8d_c01277{left:415.493333pt;}
.x101_c01277{left:421.626667pt;}
.x75_c01277{left:423.933333pt;}
.x68_c01277{left:427.013333pt;}
.xda_c01277{left:429.306667pt;}
.x42_c01277{left:432.386667pt;}
.x4c_c01277{left:434.693333pt;}
.x35_c01277{left:436.226667pt;}
.x113_c01277{left:438.533333pt;}
.xc7_c01277{left:440.066667pt;}
.xde_c01277{left:441.600000pt;}
.x99_c01277{left:443.906667pt;}
.x6e_c01277{left:446.213333pt;}
.xd3_c01277{left:449.280000pt;}
.x17_c01277{left:451.586667pt;}
.xea_c01277{left:453.893333pt;}
.x9a_c01277{left:455.426667pt;}
.x117_c01277{left:456.960000pt;}
.xa7_c01277{left:459.266667pt;}
.xcb_c01277{left:463.106667pt;}
.xd4_c01277{left:465.413333pt;}
.x8e_c01277{left:467.706667pt;}
.x7e_c01277{left:470.786667pt;}
.x4d_c01277{left:472.320000pt;}
.xb6_c01277{left:473.853333pt;}
.x25_c01277{left:475.386667pt;}
.x12_c01277{left:477.692600pt;}
.x85_c01277{left:480.000000pt;}
.x60_c01277{left:482.306667pt;}
.x10c_c01277{left:484.613333pt;}
.x61_c01277{left:486.146667pt;}
.xab_c01277{left:487.680000pt;}
.x5c_c01277{left:491.520000pt;}
.x10b_c01277{left:493.053333pt;}
.x18_c01277{left:494.586667pt;}
.xfd_c01277{left:498.426667pt;}
.xf6_c01277{left:499.973333pt;}
.x9e_c01277{left:503.040000pt;}
.x13_c01277{left:504.573333pt;}
.xbc_c01277{left:506.106667pt;}
.x9f_c01277{left:508.413333pt;}
.x26_c01277{left:510.720000pt;}
.xed_c01277{left:512.253333pt;}
.x7f_c01277{left:521.466667pt;}
.x102_c01277{left:523.773333pt;}
.x19_c01277{left:525.306667pt;}
.x43_c01277{left:526.853333pt;}
.x5d_c01277{left:530.693333pt;}
.x86_c01277{left:532.986667pt;}
.xce_c01277{left:535.293333pt;}
.x36_c01277{left:537.600000pt;}
.xbd_c01277{left:542.213333pt;}
.x2b_c01277{left:546.053333pt;}
.xf3_c01277{left:547.586667pt;}
.x76_c01277{left:549.120000pt;}
.xc5_c01277{left:550.653333pt;}
.x104_c01277{left:552.960000pt;}
.xd5_c01277{left:555.266667pt;}
.xac_c01277{left:557.573333pt;}
.x9b_c01277{left:559.106667pt;}
.x10d_c01277{left:560.640000pt;}
.x27_c01277{left:563.706667pt;}
.xa8_c01277{left:565.253333pt;}
.x69_c01277{left:566.786667pt;}
.x2c_c01277{left:568.320000pt;}
.xcc_c01277{left:572.160000pt;}
.xc2_c01277{left:573.693333pt;}
.x8f_c01277{left:575.226667pt;}
.xb1_c01277{left:577.533333pt;}
.xf7_c01277{left:579.066667pt;}
.x4e_c01277{left:582.146667pt;}
.xb7_c01277{left:588.293333pt;}
.x2d_c01277{left:589.826667pt;}
.xa0_c01277{left:591.360000pt;}
.x90_c01277{left:592.893333pt;}
.x80_c01277{left:595.200000pt;}
.xc9_c01277{left:596.733333pt;}
.x1a_c01277{left:599.040000pt;}
.xf1_c01277{left:601.346667pt;}
.x81_c01277{left:602.880000pt;}
.x2e_c01277{left:605.186667pt;}
.xee_c01277{left:606.720000pt;}
.xf9_c01277{left:609.026667pt;}
.x87_c01277{left:610.560000pt;}
.x105_c01277{left:612.093333pt;}
.x14_c01277{left:614.400000pt;}
.x6f_c01277{left:616.706667pt;}
.x44_c01277{left:619.013333pt;}
.x77_c01277{left:621.306667pt;}
.x10e_c01277{left:623.613333pt;}
.xdf_c01277{left:625.146667pt;}
.xe6_c01277{left:628.226667pt;}
.x91_c01277{left:629.760000pt;}
.xad_c01277{left:631.293333pt;}
.xd6_c01277{left:633.600000pt;}
.x1b_c01277{left:635.133333pt;}
.x88_c01277{left:637.440000pt;}
.xae_c01277{left:638.973333pt;}
.xfa_c01277{left:640.506667pt;}
.xb8_c01277{left:642.813333pt;}
.x57_c01277{left:644.346667pt;}
.xb2_c01277{left:647.426667pt;}
.xa9_c01277{left:648.960000pt;}
.x2f_c01277{left:650.493333pt;}
.x92_c01277{left:652.800000pt;}
.x78_c01277{left:657.413333pt;}
.x62_c01277{left:658.946667pt;}
.x45_c01277{left:661.253333pt;}
.xbe_c01277{left:662.786667pt;}
.x1c_c01277{left:664.320000pt;}
.x37_c01277{left:666.626667pt;}
.x63_c01277{left:668.933333pt;}
.xd7_c01277{left:672.000000pt;}
.x9_c01277{left:673.533333pt;}
.x1d_c01277{left:675.840000pt;}
.x58_c01277{left:677.373333pt;}
.x30_c01277{left:680.453333pt;}
.xa1_c01277{left:682.746667pt;}
.xa_c01277{left:685.826667pt;}
.xb3_c01277{left:688.133333pt;}
.x4f_c01277{left:690.426667pt;}
.xe0_c01277{left:692.733333pt;}
.x111_c01277{left:695.040000pt;}
.xc8_c01277{left:696.573333pt;}
.x59_c01277{left:700.413333pt;}
.x106_c01277{left:705.026667pt;}
.xb9_c01277{left:706.560000pt;}
.x119_c01277{left:708.093333pt;}
.x82_c01277{left:710.400000pt;}
.x38_c01277{left:711.933333pt;}
.x28_c01277{left:713.466667pt;}
.x70_c01277{left:715.013333pt;}
.xaa_c01277{left:717.306667pt;}
.x10f_c01277{left:718.853333pt;}
.x71_c01277{left:721.920000pt;}
.x6a_c01277{left:723.453333pt;}
.x5e_c01277{left:725.760000pt;}
.x64_c01277{left:728.066667pt;}
.x46_c01277{left:729.600000pt;}
.x79_c01277{left:731.133333pt;}
.x72_c01277{left:732.666667pt;}
.xaf_c01277{left:737.280000pt;}
.x115_c01277{left:740.346667pt;}
.xf8_c01277{left:741.893333pt;}
.xa2_c01277{left:743.426667pt;}
.x1e_c01277{left:744.960000pt;}
.xca_c01277{left:746.493333pt;}
.xe7_c01277{left:748.026667pt;}
.x6b_c01277{left:749.573333pt;}
.xb_c01277{left:751.866667pt;}
.x31_c01277{left:753.413333pt;}
.xcf_c01277{left:754.946667pt;}
.xb4_c01277{left:756.480000pt;}
.x39_c01277{left:758.013333pt;}
.xc_c01277{left:759.546667pt;}
.x110_c01277{left:761.853333pt;}
.xd_c01277{left:763.386667pt;}
.xa3_c01277{left:764.933333pt;}
.x73_c01277{left:771.066667pt;}
.xe_c01277{left:772.613333pt;}
.x50_c01277{left:774.146667pt;}
.x116_c01277{left:777.213333pt;}
.x65_c01277{left:779.520000pt;}
.x51_c01277{left:782.586667pt;}
.x9c_c01277{left:784.133333pt;}
.x1f_c01277{left:785.666667pt;}
.xe8_c01277{left:787.200000pt;}
.xef_c01277{left:788.733333pt;}
.x52_c01277{left:791.813333pt;}
.x89_c01277{left:794.106667pt;}
.xec_c01277{left:795.653333pt;}
.xd8_c01277{left:797.186667pt;}
.x93_c01277{left:798.720000pt;}
.x6c_c01277{left:803.333333pt;}
.xf0_c01277{left:805.626667pt;}
.x94_c01277{left:814.853333pt;}
.x9d_c01277{left:831.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1164f8a3dc79093218fe2ac7.woff2')format("woff");}.ff1_c01278{font-family:ff1_c01278;line-height:1.109863;font-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_c01278{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mfc_c01278{transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);}
.m167_c01278{transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01278{transform:matrix(0.048300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048300,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01278{transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);}
.m154_c01278{transform:matrix(0.058725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058725,0.000000,0.000000,0.250000,0,0);}
.m2f_c01278{transform:matrix(0.069925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069925,0.000000,0.000000,0.250000,0,0);}
.m101_c01278{transform:matrix(0.071375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071375,0.000000,0.000000,0.250000,0,0);}
.m13d_c01278{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.ma2_c01278{transform:matrix(0.086275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086275,0.000000,0.000000,0.250000,0,0);}
.m38_c01278{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01278{transform:matrix(0.092600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092600,0.000000,0.000000,0.250000,0,0);}
.m104_c01278{transform:matrix(0.093225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093225,0.000000,0.000000,0.250000,0,0);}
.m144_c01278{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m163_c01278{transform:matrix(0.099200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099200,0.000000,0.000000,0.250000,0,0);}
.m103_c01278{transform:matrix(0.103200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103200,0.000000,0.000000,0.250000,0,0);}
.m180_c01278{transform:matrix(0.103225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103225,0.000000,0.000000,0.250000,0,0);}
.m183_c01278{transform:matrix(0.103925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103925,0.000000,0.000000,0.250000,0,0);}
.mb0_c01278{transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);}
.m197_c01278{transform:matrix(0.112425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112425,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01278{transform:matrix(0.113400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113400,0.000000,0.000000,0.250000,0,0);}
.mb6_c01278{transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114000,0.000000,0.000000,0.250000,0,0);}
.mf5_c01278{transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01278{transform:matrix(0.114200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114200,0.000000,0.000000,0.250000,0,0);}
.m106_c01278{transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115000,0.000000,0.000000,0.250000,0,0);}
.m190_c01278{transform:matrix(0.115400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115400,0.000000,0.000000,0.250000,0,0);}
.m9c_c01278{transform:matrix(0.115600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115600,0.000000,0.000000,0.250000,0,0);}
.mee_c01278{transform:matrix(0.115650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115650,0.000000,0.000000,0.250000,0,0);}
.m68_c01278{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);}
.m184_c01278{transform:matrix(0.118525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118525,0.000000,0.000000,0.250000,0,0);}
.m35_c01278{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.mac_c01278{transform:matrix(0.119125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119125,0.000000,0.000000,0.250000,0,0);}
.m196_c01278{transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);}
.m126_c01278{transform:matrix(0.120925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120925,0.000000,0.000000,0.250000,0,0);}
.m102_c01278{transform:matrix(0.121050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121050,0.000000,0.000000,0.250000,0,0);}
.m199_c01278{transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);}
.m16c_c01278{transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);}
.m159_c01278{transform:matrix(0.121900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121900,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01278{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);}
.m17d_c01278{transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);}
.m17c_c01278{transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124200,0.000000,0.000000,0.250000,0,0);}
.m11e_c01278{transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01278{transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);}
.m7b_c01278{transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);}
.m5a_c01278{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m19c_c01278{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m187_c01278{transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);}
.mb8_c01278{transform:matrix(0.127050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127050,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01278{transform:matrix(0.127200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127200,0.000000,0.000000,0.250000,0,0);}
.mb2_c01278{transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);}
.m1e6_c01278{transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);}
.m14b_c01278{transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);}
.m93_c01278{transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);}
.m17f_c01278{transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01278{transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01278{transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);}
.m6b_c01278{transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);}
.mff_c01278{transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129600,0.000000,0.000000,0.250000,0,0);}
.m29_c01278{transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130350,0.000000,0.000000,0.250000,0,0);}
.mad_c01278{transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);}
.m16a_c01278{transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01278{transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);}
.m15d_c01278{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m90_c01278{transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);}
.mec_c01278{transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);}
.mc_c01278{transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01278{transform:matrix(0.131100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131100,0.000000,0.000000,0.250000,0,0);}
.md6_c01278{transform:matrix(0.131775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131775,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01278{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);}
.m107_c01278{transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);}
.m28_c01278{transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);}
.m2b_c01278{transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);}
.m6e_c01278{transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);}
.m9d_c01278{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);}
.m155_c01278{transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);}
.m92_c01278{transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);}
.med_c01278{transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01278{transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);}
.m18f_c01278{transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);}
.m16f_c01278{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m47_c01278{transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);}
.m84_c01278{transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);}
.m195_c01278{transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);}
.m130_c01278{transform:matrix(0.141700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141700,0.000000,0.000000,0.250000,0,0);}
.mc6_c01278{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m11f_c01278{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);}
.mfd_c01278{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);}
.m49_c01278{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.m19d_c01278{transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);}
.m10d_c01278{transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);}
.m138_c01278{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.mb_c01278{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m14c_c01278{transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);}
.m16b_c01278{transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);}
.m9e_c01278{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);}
.m18b_c01278{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01278{transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);}
.m186_c01278{transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);}
.m9f_c01278{transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);}
.m42_c01278{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);}
.m112_c01278{transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);}
.ma0_c01278{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);}
.m86_c01278{transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);}
.m4a_c01278{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);}
.m7f_c01278{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);}
.m12e_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);}
.mf7_c01278{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.mbd_c01278{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.m114_c01278{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m109_c01278{transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);}
.m177_c01278{transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);}
.m67_c01278{transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);}
.m13a_c01278{transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);}
.m19a_c01278{transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);}
.m161_c01278{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01278{transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);}
.mf9_c01278{transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154125,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01278{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);}
.m23_c01278{transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);}
.m8f_c01278{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);}
.m185_c01278{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);}
.m108_c01278{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.m11b_c01278{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m160_c01278{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);}
.m1da_c01278{transform:matrix(0.156425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156425,0.000000,0.000000,0.250000,0,0);}
.m105_c01278{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m15c_c01278{transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);}
.md7_c01278{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);}
.m1d3_c01278{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m128_c01278{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);}
.m39_c01278{transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);}
.m60_c01278{transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160850,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01278{transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);}
.m178_c01278{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.m21_c01278{transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);}
.m20_c01278{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);}
.m46_c01278{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01278{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);}
.m1bf_c01278{transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01278{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.m10c_c01278{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);}
.m1c6_c01278{transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01278{transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);}
.m169_c01278{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.m127_c01278{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.mf2_c01278{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.m3c_c01278{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);}
.m18c_c01278{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m16e_c01278{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);}
.mae_c01278{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.mba_c01278{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.md0_c01278{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);}
.me2_c01278{transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01278{transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);}
.md_c01278{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01278{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);}
.mcf_c01278{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.mbf_c01278{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);}
.m83_c01278{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);}
.m1be_c01278{transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);}
.m71_c01278{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m110_c01278{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01278{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.m6c_c01278{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.m10a_c01278{transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);}
.m4c_c01278{transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);}
.maf_c01278{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);}
.mc8_c01278{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.maa_c01278{transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);}
.m12f_c01278{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);}
.meb_c01278{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m11d_c01278{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);}
.m1a4_c01278{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);}
.m1cb_c01278{transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);}
.m76_c01278{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mb9_c01278{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.mdf_c01278{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01278{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01278{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.mf1_c01278{transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01278{transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);}
.m198_c01278{transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);}
.mfe_c01278{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m18e_c01278{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);}
.ma1_c01278{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.m3a_c01278{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01278{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.m69_c01278{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.mab_c01278{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.md5_c01278{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_c01278{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.m6a_c01278{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);}
.mca_c01278{transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);}
.m152_c01278{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m19f_c01278{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);}
.m1b0_c01278{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);}
.m1c1_c01278{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m115_c01278{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.m16d_c01278{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.m14d_c01278{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m162_c01278{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m168_c01278{transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);}
.md8_c01278{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m96_c01278{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.me_c01278{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);}
.mf8_c01278{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.m125_c01278{transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01278{transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);}
.m1af_c01278{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.m11_c01278{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);}
.mef_c01278{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m165_c01278{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.m129_c01278{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m1de_c01278{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);}
.mf0_c01278{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);}
.m1c5_c01278{transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);}
.m175_c01278{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);}
.m72_c01278{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m191_c01278{transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01278{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);}
.m25_c01278{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);}
.m1b2_c01278{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);}
.m19e_c01278{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);}
.m11a_c01278{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.me0_c01278{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m111_c01278{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m14e_c01278{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m8e_c01278{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01278{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.mea_c01278{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mfa_c01278{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.m57_c01278{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.m182_c01278{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);}
.mbb_c01278{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m149_c01278{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);}
.m6d_c01278{transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);}
.m134_c01278{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);}
.m133_c01278{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01278{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);}
.m166_c01278{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m12d_c01278{transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01278{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.ma7_c01278{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.m13e_c01278{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.m124_c01278{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m56_c01278{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.m12_c01278{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);}
.m48_c01278{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);}
.m1c4_c01278{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);}
.m12b_c01278{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01278{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.m1d_c01278{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m12a_c01278{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);}
.m170_c01278{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);}
.m132_c01278{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);}
.m11c_c01278{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);}
.mcb_c01278{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.mc0_c01278{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);}
.m189_c01278{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);}
.m123_c01278{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m3d_c01278{transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);}
.m192_c01278{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);}
.m15a_c01278{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);}
.m1d5_c01278{transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01278{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);}
.m88_c01278{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);}
.m65_c01278{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01278{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.m1f_c01278{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);}
.m5d_c01278{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m15e_c01278{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m7a_c01278{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m9b_c01278{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);}
.m3_c01278{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.mde_c01278{transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);}
.m176_c01278{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.md1_c01278{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);}
.m1bc_c01278{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.me9_c01278{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);}
.m7e_c01278{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m95_c01278{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);}
.m179_c01278{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);}
.m1d6_c01278{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);}
.m1a1_c01278{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);}
.mb7_c01278{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);}
.m188_c01278{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m120_c01278{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);}
.m19b_c01278{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m113_c01278{transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);}
.m2c_c01278{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.m4e_c01278{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);}
.m1bd_c01278{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.m181_c01278{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.m122_c01278{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);}
.m1db_c01278{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.m40_c01278{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);}
.m5b_c01278{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);}
.m1ce_c01278{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.m10e_c01278{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);}
.m140_c01278{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);}
.m1b3_c01278{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);}
.m97_c01278{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m3e_c01278{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.m1e_c01278{transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);}
.mc7_c01278{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);}
.m151_c01278{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.m10_c01278{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m33_c01278{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);}
.m136_c01278{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m172_c01278{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);}
.m44_c01278{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.mcd_c01278{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m18d_c01278{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);}
.mdb_c01278{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);}
.m8c_c01278{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);}
.m51_c01278{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);}
.mf4_c01278{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);}
.md4_c01278{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m22_c01278{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);}
.m8d_c01278{transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);}
.ma8_c01278{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);}
.m145_c01278{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);}
.m2_c01278{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);}
.ma5_c01278{transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);}
.md3_c01278{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);}
.m13f_c01278{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);}
.m73_c01278{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.me5_c01278{transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);}
.m94_c01278{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);}
.m193_c01278{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.m8b_c01278{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);}
.me8_c01278{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);}
.m5c_c01278{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);}
.mce_c01278{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);}
.m173_c01278{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);}
.me3_c01278{transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);}
.m18a_c01278{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.m43_c01278{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);}
.m1a3_c01278{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);}
.m3b_c01278{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m142_c01278{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m174_c01278{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.mbe_c01278{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);}
.me7_c01278{transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);}
.m91_c01278{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);}
.ma9_c01278{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);}
.m15b_c01278{transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);}
.m164_c01278{transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);}
.m55_c01278{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);}
.m1ba_c01278{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);}
.m10b_c01278{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);}
.mbc_c01278{transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);}
.m17e_c01278{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);}
.m98_c01278{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);}
.m66_c01278{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);}
.m1e0_c01278{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);}
.me4_c01278{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m45_c01278{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);}
.mdc_c01278{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);}
.m17_c01278{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mf3_c01278{transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);}
.mdd_c01278{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);}
.m131_c01278{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);}
.m14f_c01278{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);}
.me1_c01278{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);}
.m17b_c01278{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);}
.m12c_c01278{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);}
.m1a0_c01278{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);}
.mc5_c01278{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m99_c01278{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m9a_c01278{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);}
.m116_c01278{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.mf6_c01278{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);}
.mb1_c01278{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);}
.m1df_c01278{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);}
.m85_c01278{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);}
.ma6_c01278{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);}
.mf_c01278{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14_c01278{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);}
.m2a_c01278{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);}
.m1c_c01278{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);}
.m62_c01278{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);}
.m0_c01278{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m87_c01278{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c01278{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01278{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);}
.m10f_c01278{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m15_c01278{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);}
.mc9_c01278{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);}
.m34_c01278{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m24_c01278{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);}
.m4_c01278{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m79_c01278{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m27_c01278{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);}
.md9_c01278{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c01278{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);}
.m36_c01278{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);}
.m2d_c01278{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01278{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m26_c01278{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01278{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m147_c01278{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);}
.mfb_c01278{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m53_c01278{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01278{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc1_c01278{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m37_c01278{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01278{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m31_c01278{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m100_c01278{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m63_c01278{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);}
.m3f_c01278{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m58_c01278{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m64_c01278{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me6_c01278{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);}
.m74_c01278{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);}
.m148_c01278{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m153_c01278{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m80_c01278{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);}
.mc3_c01278{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.ma3_c01278{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m50_c01278{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m121_c01278{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);}
.mda_c01278{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01278{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);}
.m1dd_c01278{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m81_c01278{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m15f_c01278{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);}
.m52_c01278{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01278{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01278{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m54_c01278{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m146_c01278{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01278{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);}
.m70_c01278{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1_c01278{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);}
.m5f_c01278{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m135_c01278{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m139_c01278{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m89_c01278{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m61_c01278{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mb5_c01278{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m150_c01278{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mb4_c01278{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m13_c01278{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);}
.m19_c01278{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01278{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01278{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m59_c01278{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01278{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m30_c01278{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01278{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m118_c01278{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mb3_c01278{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);}
.m4d_c01278{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m14a_c01278{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.ma4_c01278{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);}
.m158_c01278{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m137_c01278{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01278{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1e7_c01278{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m8_c01278{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m117_c01278{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m157_c01278{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m8a_c01278{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m5_c01278{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m17a_c01278{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m1e8_c01278{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m41_c01278{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m6_c01278{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m119_c01278{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.md2_c01278{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m194_c01278{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m171_c01278{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01278{transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);}
.m7_c01278{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01278{transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);}
.m156_c01278{transform:matrix(1.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.095000,0.000000,0.000000,0.250000,0,0);}
.m78_c01278{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m143_c01278{transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);}
.mc2_c01278{transform:matrix(1.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.335000,0.000000,0.000000,0.250000,0,0);}
.m77_c01278{transform:matrix(1.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.347500,0.000000,0.000000,0.250000,0,0);}
.m141_c01278{transform:matrix(1.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.360000,0.000000,0.000000,0.250000,0,0);}
.m13b_c01278{transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);}
.m9_c01278{transform:matrix(1.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.722500,0.000000,0.000000,0.250000,0,0);}
.m13c_c01278{transform:matrix(2.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.520000,0.000000,0.000000,0.250000,0,0);}
.m75_c01278{transform:matrix(2.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.615000,0.000000,0.000000,0.250000,0,0);}
.mc4_c01278{transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);}
.ma_c01278{transform:matrix(3.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.360000,0.000000,0.000000,0.250000,0,0);}
.mcc_c01278{transform:matrix(3.615000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.615000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.615000,0.000000,0.000000,0.250000,0,0);}
.v0_c01278{vertical-align:0.000000px;}
.v1_c01278{vertical-align:3.420000px;}
.v2_c01278{vertical-align:27.660000px;}
.ls1_c01278{letter-spacing:0.000000px;}
.ls0_c01278{letter-spacing:276.222000px;}
.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;}
}
.ws1_c01278{word-spacing:0.000000px;}
.ws0_c01278{word-spacing:11.670360px;}
.fc0_c01278{color:transparent;}
.fs4_c01278{font-size:3.456000px;}
.fs8_c01278{font-size:6.000000px;}
.fs7_c01278{font-size:6.900000px;}
.fs6_c01278{font-size:10.380000px;}
.fs18_c01278{font-size:13.800000px;}
.fs9_c01278{font-size:17.280000px;}
.fsa_c01278{font-size:20.760000px;}
.fs5_c01278{font-size:24.180000px;}
.fs13_c01278{font-size:27.660000px;}
.fs1e_c01278{font-size:31.080000px;}
.fs10_c01278{font-size:34.560000px;}
.fs1b_c01278{font-size:38.040000px;}
.fs1d_c01278{font-size:41.460000px;}
.fs1f_c01278{font-size:44.940000px;}
.fs12_c01278{font-size:48.360000px;}
.fs1a_c01278{font-size:51.840000px;}
.fsd_c01278{font-size:55.320000px;}
.fsf_c01278{font-size:58.740000px;}
.fs14_c01278{font-size:62.220000px;}
.fs11_c01278{font-size:65.640000px;}
.fs0_c01278{font-size:69.120000px;}
.fsc_c01278{font-size:72.600000px;}
.fsb_c01278{font-size:76.020000px;}
.fse_c01278{font-size:79.500000px;}
.fs1_c01278{font-size:82.920000px;}
.fs19_c01278{font-size:86.400000px;}
.fs1c_c01278{font-size:89.880000px;}
.fs15_c01278{font-size:93.300000px;}
.fs17_c01278{font-size:96.780000px;}
.fs21_c01278{font-size:100.200000px;}
.fs16_c01278{font-size:103.680000px;}
.fs20_c01278{font-size:107.160000px;}
.fs22_c01278{font-size:110.580000px;}
.fs2_c01278{font-size:127.860000px;}
.fs3_c01278{font-size:138.240000px;}
.fs23_c01278{font-size:159.000000px;}
.y0_c01278{bottom:0.000000px;}
.y1d5_c01278{bottom:191.805000px;}
.y1d6_c01278{bottom:192.675000px;}
.y1db_c01278{bottom:193.530000px;}
.y1dd_c01278{bottom:195.270000px;}
.y1da_c01278{bottom:196.125000px;}
.y1dc_c01278{bottom:197.850000px;}
.y1d4_c01278{bottom:199.590000px;}
.y1d7_c01278{bottom:200.445000px;}
.y1d9_c01278{bottom:201.315000px;}
.y1d8_c01278{bottom:216.000000px;}
.y1d1_c01278{bottom:218.595000px;}
.y1cf_c01278{bottom:219.450000px;}
.y1ce_c01278{bottom:220.320000px;}
.y1cd_c01278{bottom:221.190000px;}
.y1d0_c01278{bottom:222.045000px;}
.y1d2_c01278{bottom:222.915000px;}
.y1d3_c01278{bottom:226.365000px;}
.y1c8_c01278{bottom:235.005000px;}
.y1c7_c01278{bottom:236.730000px;}
.y1cb_c01278{bottom:237.600000px;}
.y1cc_c01278{bottom:238.470000px;}
.y1c9_c01278{bottom:240.195000px;}
.y1ca_c01278{bottom:241.050000px;}
.y1bf_c01278{bottom:254.880000px;}
.y1c1_c01278{bottom:255.750000px;}
.y1c4_c01278{bottom:256.605000px;}
.y1c6_c01278{bottom:257.475000px;}
.y1c0_c01278{bottom:258.330000px;}
.y1c3_c01278{bottom:259.200000px;}
.y1be_c01278{bottom:260.070000px;}
.y1c2_c01278{bottom:262.650000px;}
.y1c5_c01278{bottom:263.520000px;}
.y1b7_c01278{bottom:274.755000px;}
.y1b8_c01278{bottom:276.480000px;}
.y1b9_c01278{bottom:278.205000px;}
.y1b6_c01278{bottom:280.800000px;}
.y1ba_c01278{bottom:281.670000px;}
.y1bb_c01278{bottom:282.525000px;}
.y1bc_c01278{bottom:285.990000px;}
.y1bd_c01278{bottom:287.715000px;}
.y1b1_c01278{bottom:296.355000px;}
.y1af_c01278{bottom:297.210000px;}
.y1b2_c01278{bottom:298.080000px;}
.y1b4_c01278{bottom:300.675000px;}
.y1b0_c01278{bottom:301.530000px;}
.y1b5_c01278{bottom:302.400000px;}
.y1b3_c01278{bottom:307.590000px;}
.y1a7_c01278{bottom:317.085000px;}
.y1a6_c01278{bottom:319.680000px;}
.y1aa_c01278{bottom:320.550000px;}
.y1ae_c01278{bottom:321.405000px;}
.y1ab_c01278{bottom:322.275000px;}
.y1a9_c01278{bottom:325.725000px;}
.y1a8_c01278{bottom:326.595000px;}
.y1ac_c01278{bottom:327.450000px;}
.y1ad_c01278{bottom:328.320000px;}
.y19f_c01278{bottom:338.685000px;}
.y1a0_c01278{bottom:339.555000px;}
.y1a1_c01278{bottom:341.280000px;}
.y19e_c01278{bottom:343.875000px;}
.y1a4_c01278{bottom:344.730000px;}
.y1a2_c01278{bottom:346.470000px;}
.y1a3_c01278{bottom:348.195000px;}
.y1a5_c01278{bottom:349.050000px;}
.y197_c01278{bottom:359.430000px;}
.y19d_c01278{bottom:362.880000px;}
.y19a_c01278{bottom:363.750000px;}
.y199_c01278{bottom:364.605000px;}
.y198_c01278{bottom:365.475000px;}
.y19b_c01278{bottom:366.330000px;}
.y19c_c01278{bottom:367.200000px;}
.y18e_c01278{bottom:380.160000px;}
.y18d_c01278{bottom:381.885000px;}
.y190_c01278{bottom:383.610000px;}
.y18f_c01278{bottom:384.480000px;}
.y193_c01278{bottom:385.350000px;}
.y195_c01278{bottom:386.205000px;}
.y192_c01278{bottom:387.075000px;}
.y191_c01278{bottom:387.930000px;}
.y194_c01278{bottom:389.670000px;}
.y196_c01278{bottom:391.395000px;}
.y18a_c01278{bottom:400.890000px;}
.y18c_c01278{bottom:401.760000px;}
.y182_c01278{bottom:402.630000px;}
.y183_c01278{bottom:403.485000px;}
.y187_c01278{bottom:405.210000px;}
.y184_c01278{bottom:406.080000px;}
.y189_c01278{bottom:406.950000px;}
.y185_c01278{bottom:410.400000px;}
.y18b_c01278{bottom:411.270000px;}
.y188_c01278{bottom:413.850000px;}
.y186_c01278{bottom:419.040000px;}
.y178_c01278{bottom:420.765000px;}
.y177_c01278{bottom:421.635000px;}
.y17b_c01278{bottom:422.490000px;}
.y17a_c01278{bottom:423.360000px;}
.y179_c01278{bottom:424.230000px;}
.y17c_c01278{bottom:425.085000px;}
.y17f_c01278{bottom:425.955000px;}
.y176_c01278{bottom:426.810000px;}
.y181_c01278{bottom:428.550000px;}
.y17d_c01278{bottom:430.275000px;}
.y17e_c01278{bottom:432.000000px;}
.y180_c01278{bottom:439.770000px;}
.y175_c01278{bottom:440.640000px;}
.y174_c01278{bottom:441.510000px;}
.y171_c01278{bottom:442.365000px;}
.y173_c01278{bottom:444.090000px;}
.y172_c01278{bottom:447.555000px;}
.y169_c01278{bottom:460.515000px;}
.y167_c01278{bottom:461.370000px;}
.y16e_c01278{bottom:462.240000px;}
.y168_c01278{bottom:463.110000px;}
.y16d_c01278{bottom:465.690000px;}
.y16c_c01278{bottom:467.430000px;}
.y166_c01278{bottom:468.285000px;}
.y16a_c01278{bottom:469.155000px;}
.y170_c01278{bottom:470.010000px;}
.y16b_c01278{bottom:471.750000px;}
.y16f_c01278{bottom:473.475000px;}
.y161_c01278{bottom:483.840000px;}
.y163_c01278{bottom:486.435000px;}
.y164_c01278{bottom:487.290000px;}
.y162_c01278{bottom:488.160000px;}
.y165_c01278{bottom:489.885000px;}
.y160_c01278{bottom:501.990000px;}
.y15c_c01278{bottom:503.715000px;}
.y15d_c01278{bottom:504.570000px;}
.y15b_c01278{bottom:505.440000px;}
.y150_c01278{bottom:507.165000px;}
.y15e_c01278{bottom:513.210000px;}
.y15a_c01278{bottom:514.080000px;}
.y15f_c01278{bottom:514.950000px;}
.y158_c01278{bottom:520.125000px;}
.y14e_c01278{bottom:523.590000px;}
.y159_c01278{bottom:524.445000px;}
.y155_c01278{bottom:526.170000px;}
.y153_c01278{bottom:527.040000px;}
.y154_c01278{bottom:527.910000px;}
.y152_c01278{bottom:528.765000px;}
.y151_c01278{bottom:529.635000px;}
.y156_c01278{bottom:533.085000px;}
.y157_c01278{bottom:533.955000px;}
.y14f_c01278{bottom:546.915000px;}
.y144_c01278{bottom:547.770000px;}
.y146_c01278{bottom:548.640000px;}
.y14a_c01278{bottom:549.510000px;}
.y145_c01278{bottom:551.235000px;}
.y14b_c01278{bottom:552.090000px;}
.y148_c01278{bottom:552.960000px;}
.y147_c01278{bottom:553.830000px;}
.y14d_c01278{bottom:560.730000px;}
.y149_c01278{bottom:561.600000px;}
.y14c_c01278{bottom:564.195000px;}
.y13b_c01278{bottom:565.920000px;}
.y13c_c01278{bottom:566.790000px;}
.y13a_c01278{bottom:567.645000px;}
.y13f_c01278{bottom:568.515000px;}
.y13d_c01278{bottom:569.370000px;}
.y13e_c01278{bottom:570.240000px;}
.y139_c01278{bottom:571.110000px;}
.y142_c01278{bottom:571.965000px;}
.y138_c01278{bottom:572.835000px;}
.y141_c01278{bottom:573.690000px;}
.y140_c01278{bottom:574.560000px;}
.y143_c01278{bottom:575.430000px;}
.y134_c01278{bottom:579.750000px;}
.y133_c01278{bottom:581.475000px;}
.y135_c01278{bottom:583.200000px;}
.y132_c01278{bottom:584.070000px;}
.y136_c01278{bottom:585.795000px;}
.y130_c01278{bottom:588.390000px;}
.y137_c01278{bottom:589.245000px;}
.y12e_c01278{bottom:591.840000px;}
.y131_c01278{bottom:592.710000px;}
.y12f_c01278{bottom:594.435000px;}
.y12d_c01278{bottom:609.990000px;}
.y12b_c01278{bottom:611.715000px;}
.y12c_c01278{bottom:614.310000px;}
.y126_c01278{bottom:626.400000px;}
.y128_c01278{bottom:628.995000px;}
.y12a_c01278{bottom:632.445000px;}
.y125_c01278{bottom:634.170000px;}
.y127_c01278{bottom:635.910000px;}
.y124_c01278{bottom:636.765000px;}
.y129_c01278{bottom:638.490000px;}
.y11e_c01278{bottom:648.870000px;}
.y122_c01278{bottom:649.725000px;}
.y11f_c01278{bottom:654.045000px;}
.y121_c01278{bottom:655.770000px;}
.y120_c01278{bottom:657.510000px;}
.y123_c01278{bottom:667.005000px;}
.y11b_c01278{bottom:667.875000px;}
.y11a_c01278{bottom:669.600000px;}
.y11d_c01278{bottom:670.470000px;}
.y11c_c01278{bottom:675.645000px;}
.y119_c01278{bottom:681.690000px;}
.y117_c01278{bottom:691.200000px;}
.y112_c01278{bottom:692.070000px;}
.y116_c01278{bottom:692.925000px;}
.y114_c01278{bottom:695.520000px;}
.y115_c01278{bottom:696.390000px;}
.y113_c01278{bottom:697.245000px;}
.y118_c01278{bottom:705.885000px;}
.y10d_c01278{bottom:709.350000px;}
.y110_c01278{bottom:711.075000px;}
.y10f_c01278{bottom:711.930000px;}
.y10b_c01278{bottom:713.670000px;}
.y10c_c01278{bottom:715.395000px;}
.y111_c01278{bottom:716.250000px;}
.y10a_c01278{bottom:717.120000px;}
.y10e_c01278{bottom:724.890000px;}
.y109_c01278{bottom:729.210000px;}
.y106_c01278{bottom:730.080000px;}
.y104_c01278{bottom:730.950000px;}
.y107_c01278{bottom:731.805000px;}
.y102_c01278{bottom:732.675000px;}
.y108_c01278{bottom:734.400000px;}
.y103_c01278{bottom:735.270000px;}
.y101_c01278{bottom:736.125000px;}
.y100_c01278{bottom:736.995000px;}
.y105_c01278{bottom:738.720000px;}
.yff_c01278{bottom:749.085000px;}
.yf8_c01278{bottom:751.680000px;}
.yfb_c01278{bottom:752.550000px;}
.yf4_c01278{bottom:753.405000px;}
.yf7_c01278{bottom:754.275000px;}
.yf6_c01278{bottom:755.130000px;}
.yfc_c01278{bottom:756.000000px;}
.yf5_c01278{bottom:757.725000px;}
.yf9_c01278{bottom:758.595000px;}
.yfe_c01278{bottom:759.450000px;}
.yfd_c01278{bottom:762.045000px;}
.yfa_c01278{bottom:770.685000px;}
.yf3_c01278{bottom:772.410000px;}
.yf0_c01278{bottom:773.280000px;}
.yef_c01278{bottom:775.005000px;}
.yed_c01278{bottom:776.730000px;}
.yf2_c01278{bottom:777.600000px;}
.yec_c01278{bottom:778.470000px;}
.yee_c01278{bottom:779.325000px;}
.yf1_c01278{bottom:784.515000px;}
.ye5_c01278{bottom:787.110000px;}
.ye4_c01278{bottom:787.965000px;}
.ye3_c01278{bottom:788.835000px;}
.yea_c01278{bottom:789.690000px;}
.ye8_c01278{bottom:791.430000px;}
.ye9_c01278{bottom:792.285000px;}
.ye6_c01278{bottom:795.750000px;}
.ye7_c01278{bottom:796.605000px;}
.yeb_c01278{bottom:799.200000px;}
.ye0_c01278{bottom:812.160000px;}
.ye1_c01278{bottom:813.885000px;}
.ydf_c01278{bottom:814.755000px;}
.yde_c01278{bottom:815.610000px;}
.ydd_c01278{bottom:816.480000px;}
.yda_c01278{bottom:818.205000px;}
.ydc_c01278{bottom:819.075000px;}
.ydb_c01278{bottom:819.930000px;}
.ye2_c01278{bottom:820.800000px;}
.yd7_c01278{bottom:832.035000px;}
.yd4_c01278{bottom:832.890000px;}
.yd6_c01278{bottom:833.760000px;}
.yd5_c01278{bottom:836.355000px;}
.yd3_c01278{bottom:839.805000px;}
.yd2_c01278{bottom:840.675000px;}
.yd9_c01278{bottom:846.720000px;}
.yd8_c01278{bottom:849.315000px;}
.ycd_c01278{bottom:850.170000px;}
.yce_c01278{bottom:851.040000px;}
.ycf_c01278{bottom:851.910000px;}
.ycc_c01278{bottom:852.765000px;}
.yd0_c01278{bottom:857.085000px;}
.yd1_c01278{bottom:857.955000px;}
.ycb_c01278{bottom:865.725000px;}
.yc6_c01278{bottom:874.365000px;}
.yc8_c01278{bottom:875.235000px;}
.yc9_c01278{bottom:876.090000px;}
.yc7_c01278{bottom:878.685000px;}
.yc5_c01278{bottom:879.555000px;}
.yc4_c01278{bottom:880.410000px;}
.yc3_c01278{bottom:881.280000px;}
.yca_c01278{bottom:882.150000px;}
.ybe_c01278{bottom:894.240000px;}
.ybc_c01278{bottom:895.965000px;}
.yc2_c01278{bottom:896.835000px;}
.ybf_c01278{bottom:897.690000px;}
.yc0_c01278{bottom:899.430000px;}
.yc1_c01278{bottom:900.285000px;}
.ybd_c01278{bottom:901.155000px;}
.yb9_c01278{bottom:912.390000px;}
.yba_c01278{bottom:914.115000px;}
.yb6_c01278{bottom:914.970000px;}
.yb5_c01278{bottom:915.840000px;}
.yb4_c01278{bottom:917.565000px;}
.ybb_c01278{bottom:918.435000px;}
.yb8_c01278{bottom:919.290000px;}
.yb7_c01278{bottom:920.160000px;}
.yb3_c01278{bottom:922.755000px;}
.yb1_c01278{bottom:933.120000px;}
.yac_c01278{bottom:933.990000px;}
.yb0_c01278{bottom:934.845000px;}
.yb2_c01278{bottom:935.715000px;}
.yae_c01278{bottom:937.440000px;}
.yaf_c01278{bottom:940.890000px;}
.yad_c01278{bottom:942.630000px;}
.ya4_c01278{bottom:956.445000px;}
.ya8_c01278{bottom:958.170000px;}
.yaa_c01278{bottom:959.040000px;}
.ya5_c01278{bottom:960.765000px;}
.ya7_c01278{bottom:961.635000px;}
.ya6_c01278{bottom:962.490000px;}
.yab_c01278{bottom:963.360000px;}
.ya9_c01278{bottom:973.725000px;}
.y9f_c01278{bottom:974.595000px;}
.ya2_c01278{bottom:975.450000px;}
.ya1_c01278{bottom:976.320000px;}
.ya0_c01278{bottom:977.190000px;}
.y9e_c01278{bottom:978.915000px;}
.ya3_c01278{bottom:979.770000px;}
.y9a_c01278{bottom:986.685000px;}
.y97_c01278{bottom:987.555000px;}
.y99_c01278{bottom:988.410000px;}
.y9c_c01278{bottom:989.280000px;}
.y98_c01278{bottom:991.005000px;}
.y9b_c01278{bottom:994.470000px;}
.y9d_c01278{bottom:995.325000px;}
.y96_c01278{bottom:996.195000px;}
.y92_c01278{bottom:997.050000px;}
.y90_c01278{bottom:997.920000px;}
.y93_c01278{bottom:998.790000px;}
.y95_c01278{bottom:1000.515000px;}
.y94_c01278{bottom:1001.370000px;}
.y91_c01278{bottom:1002.240000px;}
.y8b_c01278{bottom:1016.925000px;}
.y88_c01278{bottom:1018.650000px;}
.y8a_c01278{bottom:1019.520000px;}
.y89_c01278{bottom:1020.390000px;}
.y8c_c01278{bottom:1021.245000px;}
.y8e_c01278{bottom:1022.115000px;}
.y8d_c01278{bottom:1022.970000px;}
.y8f_c01278{bottom:1023.840000px;}
.y87_c01278{bottom:1036.800000px;}
.y81_c01278{bottom:1037.670000px;}
.y83_c01278{bottom:1038.525000px;}
.y85_c01278{bottom:1039.395000px;}
.y84_c01278{bottom:1041.990000px;}
.y86_c01278{bottom:1042.845000px;}
.y80_c01278{bottom:1043.715000px;}
.y7f_c01278{bottom:1044.570000px;}
.y82_c01278{bottom:1048.035000px;}
.y7c_c01278{bottom:1050.630000px;}
.y7b_c01278{bottom:1051.485000px;}
.y7e_c01278{bottom:1053.210000px;}
.y7d_c01278{bottom:1067.040000px;}
.y76_c01278{bottom:1077.405000px;}
.y75_c01278{bottom:1078.275000px;}
.y79_c01278{bottom:1080.870000px;}
.y78_c01278{bottom:1081.725000px;}
.y7a_c01278{bottom:1084.320000px;}
.y77_c01278{bottom:1095.555000px;}
.y6e_c01278{bottom:1097.280000px;}
.y72_c01278{bottom:1098.150000px;}
.y71_c01278{bottom:1099.005000px;}
.y73_c01278{bottom:1100.730000px;}
.y6d_c01278{bottom:1101.600000px;}
.y70_c01278{bottom:1104.195000px;}
.y6f_c01278{bottom:1105.050000px;}
.y74_c01278{bottom:1107.645000px;}
.y6c_c01278{bottom:1113.690000px;}
.y69_c01278{bottom:1118.880000px;}
.y68_c01278{bottom:1119.750000px;}
.y64_c01278{bottom:1120.605000px;}
.y6a_c01278{bottom:1121.475000px;}
.y6b_c01278{bottom:1122.330000px;}
.y61_c01278{bottom:1123.200000px;}
.y65_c01278{bottom:1124.070000px;}
.y66_c01278{bottom:1124.925000px;}
.y5e_c01278{bottom:1130.115000px;}
.y62_c01278{bottom:1130.970000px;}
.y63_c01278{bottom:1132.710000px;}
.y60_c01278{bottom:1133.565000px;}
.y5f_c01278{bottom:1134.435000px;}
.y5c_c01278{bottom:1135.290000px;}
.y5b_c01278{bottom:1136.160000px;}
.y5d_c01278{bottom:1137.030000px;}
.y5a_c01278{bottom:1138.755000px;}
.y57_c01278{bottom:1139.610000px;}
.y67_c01278{bottom:1140.480000px;}
.y58_c01278{bottom:1141.350000px;}
.y56_c01278{bottom:1142.205000px;}
.y59_c01278{bottom:1143.930000px;}
.y55_c01278{bottom:1145.670000px;}
.y54_c01278{bottom:1146.525000px;}
.y50_c01278{bottom:1159.485000px;}
.y4c_c01278{bottom:1161.210000px;}
.y53_c01278{bottom:1162.950000px;}
.y4f_c01278{bottom:1163.805000px;}
.y52_c01278{bottom:1164.675000px;}
.y4d_c01278{bottom:1165.530000px;}
.y4e_c01278{bottom:1166.400000px;}
.y4b_c01278{bottom:1167.270000px;}
.y1e4_c01278{bottom:1169.850000px;}
.y51_c01278{bottom:1170.720000px;}
.y46_c01278{bottom:1179.360000px;}
.y47_c01278{bottom:1180.230000px;}
.y45_c01278{bottom:1181.085000px;}
.y41_c01278{bottom:1181.955000px;}
.y44_c01278{bottom:1184.550000px;}
.y49_c01278{bottom:1185.405000px;}
.y43_c01278{bottom:1187.130000px;}
.y48_c01278{bottom:1188.000000px;}
.y42_c01278{bottom:1188.870000px;}
.y4a_c01278{bottom:1190.595000px;}
.y3c_c01278{bottom:1198.365000px;}
.y3a_c01278{bottom:1199.235000px;}
.y3b_c01278{bottom:1200.960000px;}
.y3f_c01278{bottom:1204.410000px;}
.y3d_c01278{bottom:1206.150000px;}
.y40_c01278{bottom:1207.005000px;}
.y3e_c01278{bottom:1212.195000px;}
.y34_c01278{bottom:1218.240000px;}
.y36_c01278{bottom:1219.965000px;}
.y38_c01278{bottom:1220.835000px;}
.y39_c01278{bottom:1221.690000px;}
.y35_c01278{bottom:1222.560000px;}
.y37_c01278{bottom:1227.750000px;}
.y2b_c01278{bottom:1238.970000px;}
.y2d_c01278{bottom:1239.840000px;}
.y2a_c01278{bottom:1240.710000px;}
.y32_c01278{bottom:1241.565000px;}
.y2f_c01278{bottom:1242.435000px;}
.y30_c01278{bottom:1243.290000px;}
.y2e_c01278{bottom:1244.160000px;}
.y31_c01278{bottom:1246.755000px;}
.y2c_c01278{bottom:1248.480000px;}
.y33_c01278{bottom:1250.205000px;}
.y27_c01278{bottom:1260.570000px;}
.y22_c01278{bottom:1261.440000px;}
.y29_c01278{bottom:1262.310000px;}
.y25_c01278{bottom:1264.890000px;}
.y24_c01278{bottom:1265.760000px;}
.y26_c01278{bottom:1266.630000px;}
.y28_c01278{bottom:1267.485000px;}
.y23_c01278{bottom:1268.355000px;}
.y20_c01278{bottom:1273.530000px;}
.y1d_c01278{bottom:1276.125000px;}
.y21_c01278{bottom:1276.995000px;}
.y1f_c01278{bottom:1277.850000px;}
.y1e_c01278{bottom:1278.720000px;}
.y19_c01278{bottom:1279.590000px;}
.y1a_c01278{bottom:1281.315000px;}
.y18_c01278{bottom:1283.040000px;}
.y1c_c01278{bottom:1283.910000px;}
.y1b_c01278{bottom:1286.490000px;}
.y17_c01278{bottom:1287.360000px;}
.y14_c01278{bottom:1301.190000px;}
.y15_c01278{bottom:1302.045000px;}
.y16_c01278{bottom:1303.770000px;}
.y13_c01278{bottom:1308.090000px;}
.y12_c01278{bottom:1308.960000px;}
.y1e3_c01278{bottom:1320.195000px;}
.yb_c01278{bottom:1321.050000px;}
.yd_c01278{bottom:1322.790000px;}
.y10_c01278{bottom:1324.515000px;}
.yc_c01278{bottom:1325.370000px;}
.ye_c01278{bottom:1327.110000px;}
.yf_c01278{bottom:1327.965000px;}
.y11_c01278{bottom:1328.835000px;}
.y1e1_c01278{bottom:1334.880000px;}
.y5_c01278{bottom:1338.330000px;}
.y1e2_c01278{bottom:1339.200000px;}
.y6_c01278{bottom:1340.925000px;}
.y4_c01278{bottom:1342.650000px;}
.y8_c01278{bottom:1343.520000px;}
.y9_c01278{bottom:1344.390000px;}
.ya_c01278{bottom:1345.245000px;}
.y7_c01278{bottom:1346.970000px;}
.y3_c01278{bottom:1348.710000px;}
.y1_c01278{bottom:1353.030000px;}
.y2_c01278{bottom:1354.755000px;}
.y1e0_c01278{bottom:1393.635000px;}
.y1df_c01278{bottom:1406.595000px;}
.y1de_c01278{bottom:1411.770000px;}
.h6_c01278{height:3.110063px;}
.ha_c01278{height:5.399414px;}
.h9_c01278{height:6.209326px;}
.h8_c01278{height:9.340986px;}
.h1a_c01278{height:12.418652px;}
.hb_c01278{height:15.550313px;}
.h25_c01278{height:15.838652px;}
.hc_c01278{height:18.681973px;}
.h7_c01278{height:21.759639px;}
.h15_c01278{height:24.891299px;}
.h20_c01278{height:27.968965px;}
.h12_c01278{height:31.100625px;}
.h1d_c01278{height:34.232285px;}
.h1f_c01278{height:37.309951px;}
.h21_c01278{height:40.441611px;}
.h14_c01278{height:43.519277px;}
.h1c_c01278{height:46.650937px;}
.hf_c01278{height:49.782598px;}
.h11_c01278{height:52.860264px;}
.h16_c01278{height:55.991924px;}
.h13_c01278{height:59.069590px;}
.h2_c01278{height:62.201250px;}
.he_c01278{height:65.332910px;}
.hd_c01278{height:68.410576px;}
.h10_c01278{height:71.542236px;}
.h3_c01278{height:74.619902px;}
.h1b_c01278{height:77.751563px;}
.h27_c01278{height:80.520264px;}
.h1e_c01278{height:80.883223px;}
.h17_c01278{height:83.960889px;}
.h19_c01278{height:87.092549px;}
.h23_c01278{height:90.170215px;}
.h18_c01278{height:93.301875px;}
.h22_c01278{height:96.433535px;}
.h24_c01278{height:99.511201px;}
.h4_c01278{height:115.061514px;}
.h5_c01278{height:124.402500px;}
.h26_c01278{height:143.084473px;}
.h1_c01278{height:1518.750000px;}
.h0_c01278{height:1518.915000px;}
.w0_c01278{width:1085.190000px;}
.w1_c01278{width:1085.250000px;}
.x0_c01278{left:0.000000px;}
.xf2_c01278{left:169.350000px;}
.xfc_c01278{left:181.440000px;}
.x2f_c01278{left:187.485000px;}
.xec_c01278{left:190.080000px;}
.x25_c01278{left:195.270000px;}
.xad_c01278{left:198.720000px;}
.xb1_c01278{left:201.315000px;}
.x30_c01278{left:203.040000px;}
.xf9_c01278{left:205.635000px;}
.x31_c01278{left:208.230000px;}
.x3b_c01278{left:212.550000px;}
.xe3_c01278{left:214.274625px;}
.xff_c01278{left:216.000000px;}
.xc6_c01278{left:217.725000px;}
.xb8_c01278{left:219.450000px;}
.x51_c01278{left:221.190000px;}
.x85_c01278{left:223.770000px;}
.x1f_c01278{left:227.235000px;}
.x44_c01278{left:229.830000px;}
.x1_c01278{left:231.555000px;}
.x6e_c01278{left:234.150000px;}
.xf3_c01278{left:241.050000px;}
.xd7_c01278{left:243.645000px;}
.x112_c01278{left:247.110000px;}
.x10_c01278{left:248.835000px;}
.xd2_c01278{left:250.560000px;}
.x6f_c01278{left:252.285000px;}
.x10b_c01278{left:254.880000px;}
.x3c_c01278{left:256.605000px;}
.xc2_c01278{left:258.330000px;}
.xba_c01278{left:260.070000px;}
.x20_c01278{left:261.795000px;}
.x3d_c01278{left:264.390000px;}
.x7e_c01278{left:266.115000px;}
.x66_c01278{left:267.840000px;}
.xa2_c01278{left:269.565000px;}
.x99_c01278{left:271.290000px;}
.xb2_c01278{left:273.030000px;}
.xa7_c01278{left:275.610000px;}
.x86_c01278{left:278.205000px;}
.x5d_c01278{left:284.250000px;}
.xae_c01278{left:287.715000px;}
.x67_c01278{left:289.440000px;}
.xd8_c01278{left:292.035000px;}
.x70_c01278{left:293.760000px;}
.x26_c01278{left:295.485000px;}
.xa3_c01278{left:298.080000px;}
.x5_c01278{left:300.675000px;}
.xd0_c01278{left:302.400000px;}
.x115_c01278{left:304.125000px;}
.xbe_c01278{left:307.590000px;}
.x11_c01278{left:310.170000px;}
.x93_c01278{left:312.765000px;}
.x52_c01278{left:314.490000px;}
.xa8_c01278{left:316.230000px;}
.xe1_c01278{left:317.955000px;}
.x6_c01278{left:320.550000px;}
.x53_c01278{left:322.275000px;}
.x9a_c01278{left:324.870000px;}
.xa9_c01278{left:326.595000px;}
.xbb_c01278{left:329.190000px;}
.x7_c01278{left:330.915000px;}
.x71_c01278{left:334.365000px;}
.x32_c01278{left:337.830000px;}
.x54_c01278{left:342.150000px;}
.xb3_c01278{left:343.875000px;}
.xd3_c01278{left:348.195000px;}
.x2_c01278{left:350.790000px;}
.xf4_c01278{left:353.370000px;}
.x113_c01278{left:355.965000px;}
.x12_c01278{left:358.560000px;}
.x87_c01278{left:361.155000px;}
.x33_c01278{left:362.880000px;}
.x72_c01278{left:365.475000px;}
.xb4_c01278{left:367.200000px;}
.x108_c01278{left:369.795000px;}
.x45_c01278{left:372.390000px;}
.xc7_c01278{left:376.710000px;}
.x5e_c01278{left:379.290000px;}
.x55_c01278{left:381.885000px;}
.x73_c01278{left:384.480000px;}
.xcd_c01278{left:387.075000px;}
.x27_c01278{left:388.800000px;}
.xe2_c01278{left:390.525000px;}
.x21_c01278{left:393.120000px;}
.xaf_c01278{left:397.440000px;}
.xf5_c01278{left:399.165000px;}
.x68_c01278{left:400.890000px;}
.xbf_c01278{left:404.355000px;}
.x8_c01278{left:408.675000px;}
.xbc_c01278{left:412.125000px;}
.x13_c01278{left:414.720000px;}
.xaa_c01278{left:416.445000px;}
.xfa_c01278{left:419.040000px;}
.x105_c01278{left:421.635000px;}
.x94_c01278{left:424.230000px;}
.xab_c01278{left:425.955000px;}
.x95_c01278{left:427.680000px;}
.x56_c01278{left:429.405000px;}
.xac_c01278{left:431.130000px;}
.x8c_c01278{left:434.595000px;}
.x28_c01278{left:436.320000px;}
.x74_c01278{left:438.915000px;}
.xa4_c01278{left:440.640000px;}
.x5f_c01278{left:443.235000px;}
.xfd_c01278{left:444.960000px;}
.x34_c01278{left:450.150000px;}
.xc3_c01278{left:452.730000px;}
.x69_c01278{left:454.470000px;}
.x7f_c01278{left:456.195000px;}
.x29_c01278{left:457.920000px;}
.xd9_c01278{left:459.645000px;}
.x96_c01278{left:461.370000px;}
.x116_c01278{left:463.110000px;}
.xdd_c01278{left:466.560000px;}
.x46_c01278{left:469.155000px;}
.xb0_c01278{left:472.605000px;}
.x60_c01278{left:476.925000px;}
.x14_c01278{left:478.650000px;}
.x9b_c01278{left:481.245000px;}
.x2a_c01278{left:484.710000px;}
.x3e_c01278{left:486.435000px;}
.x9_c01278{left:489.030000px;}
.xb9_c01278{left:490.755000px;}
.x3_c01278{left:492.480000px;}
.x9c_c01278{left:494.205000px;}
.x75_c01278{left:495.930000px;}
.x47_c01278{left:501.990000px;}
.xce_c01278{left:503.715000px;}
.x57_c01278{left:510.630000px;}
.xde_c01278{left:513.210000px;}
.xc0_c01278{left:516.675000px;}
.x97_c01278{left:518.400000px;}
.x100_c01278{left:520.995000px;}
.xa_c01278{left:522.720000px;}
.xca_c01278{left:525.315000px;}
.x101_c01278{left:527.040000px;}
.x61_c01278{left:529.635000px;}
.xfe_c01278{left:533.955000px;}
.xd4_c01278{left:535.680000px;}
.x62_c01278{left:537.405000px;}
.x15_c01278{left:539.130000px;}
.xcb_c01278{left:540.870000px;}
.x3f_c01278{left:544.320000px;}
.x48_c01278{left:546.915000px;}
.xb_c01278{left:549.510000px;}
.x22_c01278{left:551.235000px;}
.x4c_c01278{left:552.960000px;}
.x58_c01278{left:555.555000px;}
.x80_c01278{left:558.150000px;}
.x16_c01278{left:559.875000px;}
.xcf_c01278{left:561.600000px;}
.x106_c01278{left:565.050000px;}
.xb5_c01278{left:568.515000px;}
.x81_c01278{left:571.110000px;}
.xda_c01278{left:572.835000px;}
.xe9_c01278{left:574.560000px;}
.x17_c01278{left:576.285000px;}
.xed_c01278{left:579.750000px;}
.xe4_c01278{left:587.520000px;}
.x49_c01278{left:589.245000px;}
.xc8_c01278{left:590.970000px;}
.x117_c01278{left:595.290000px;}
.x18_c01278{left:597.885000px;}
.x35_c01278{left:599.610000px;}
.x76_c01278{left:601.350000px;}
.x88_c01278{left:604.800000px;}
.x2b_c01278{left:607.395000px;}
.xee_c01278{left:609.120000px;}
.xd5_c01278{left:612.570000px;}
.xa5_c01278{left:616.890000px;}
.xe8_c01278{left:619.485000px;}
.x82_c01278{left:622.950000px;}
.x77_c01278{left:626.400000px;}
.xb6_c01278{left:628.125000px;}
.x40_c01278{left:631.590000px;}
.x59_c01278{left:633.315000px;}
.xc4_c01278{left:635.040000px;}
.x19_c01278{left:638.490000px;}
.x63_c01278{left:640.230000px;}
.x10d_c01278{left:641.955000px;}
.x4d_c01278{left:645.405000px;}
.x98_c01278{left:647.130000px;}
.x6a_c01278{left:648.870000px;}
.xc_c01278{left:650.595000px;}
.x83_c01278{left:654.915000px;}
.x5a_c01278{left:659.235000px;}
.x1a_c01278{left:661.830000px;}
.x6b_c01278{left:667.005000px;}
.x4_c01278{left:668.730000px;}
.xef_c01278{left:670.470000px;}
.x110_c01278{left:673.920000px;}
.xea_c01278{left:675.645000px;}
.x102_c01278{left:679.110000px;}
.x23_c01278{left:682.560000px;}
.x2c_c01278{left:685.155000px;}
.xf6_c01278{left:686.880000px;}
.x4a_c01278{left:689.475000px;}
.xb7_c01278{left:691.200000px;}
.x114_c01278{left:692.925000px;}
.xd1_c01278{left:696.390000px;}
.x8f_c01278{left:698.115000px;}
.x41_c01278{left:699.840000px;}
.xf0_c01278{left:702.435000px;}
.x111_c01278{left:704.160000px;}
.x36_c01278{left:705.885000px;}
.xfb_c01278{left:708.480000px;}
.x1b_c01278{left:710.205000px;}
.x78_c01278{left:712.800000px;}
.xdb_c01278{left:715.395000px;}
.x9d_c01278{left:717.120000px;}
.x10c_c01278{left:718.845000px;}
.x4e_c01278{left:720.570000px;}
.x9e_c01278{left:724.035000px;}
.x79_c01278{left:725.760000px;}
.x64_c01278{left:727.485000px;}
.x8d_c01278{left:730.080000px;}
.x5b_c01278{left:731.805000px;}
.xcc_c01278{left:734.400000px;}
.xdf_c01278{left:736.125000px;}
.x9f_c01278{left:739.590000px;}
.x109_c01278{left:741.315000px;}
.x7a_c01278{left:743.040000px;}
.xc9_c01278{left:744.765000px;}
.xf7_c01278{left:747.360000px;}
.x89_c01278{left:749.085000px;}
.x4b_c01278{left:750.810000px;}
.x6c_c01278{left:752.550000px;}
.xc1_c01278{left:755.130000px;}
.x37_c01278{left:759.450000px;}
.xd_c01278{left:762.915000px;}
.x90_c01278{left:765.510000px;}
.x4f_c01278{left:768.090000px;}
.xe6_c01278{left:769.830000px;}
.xa0_c01278{left:773.280000px;}
.xa6_c01278{left:775.005000px;}
.x10e_c01278{left:776.730000px;}
.x38_c01278{left:778.470000px;}
.xe7_c01278{left:781.920000px;}
.xe_c01278{left:785.370000px;}
.xf1_c01278{left:788.835000px;}
.x7b_c01278{left:790.560000px;}
.x39_c01278{left:794.880000px;}
.x8e_c01278{left:796.605000px;}
.x65_c01278{left:798.330000px;}
.x10a_c01278{left:801.795000px;}
.xdc_c01278{left:803.520000px;}
.xf_c01278{left:805.245000px;}
.xe5_c01278{left:806.970000px;}
.xf8_c01278{left:809.565000px;}
.x42_c01278{left:811.290000px;}
.x91_c01278{left:813.030000px;}
.xbd_c01278{left:814.755000px;}
.x2d_c01278{left:816.480000px;}
.x3a_c01278{left:819.075000px;}
.x84_c01278{left:821.670000px;}
.x7c_c01278{left:824.250000px;}
.x10f_c01278{left:826.845000px;}
.x5c_c01278{left:828.570000px;}
.xc5_c01278{left:831.165000px;}
.xa1_c01278{left:832.890000px;}
.x1c_c01278{left:834.630000px;}
.xd6_c01278{left:837.210000px;}
.xeb_c01278{left:839.805000px;}
.x1d_c01278{left:841.530000px;}
.x92_c01278{left:845.850000px;}
.xe0_c01278{left:850.170000px;}
.x103_c01278{left:853.635000px;}
.x7d_c01278{left:856.230000px;}
.x50_c01278{left:857.955000px;}
.x43_c01278{left:859.680000px;}
.x107_c01278{left:864.870000px;}
.x24_c01278{left:871.770000px;}
.x1e_c01278{left:873.510000px;}
.x2e_c01278{left:875.235000px;}
.x8a_c01278{left:891.645000px;}
.x6d_c01278{left:904.605000px;}
.x104_c01278{left:911.520000px;}
.x8b_c01278{left:913.245000px;}
.x118_c01278{left:992.730000px;}
.x119_c01278{left:1005.690000px;}
.x11d_c01278{left:1021.245000px;}
.x11a_c01278{left:1041.990000px;}
.x11b_c01278{left:1060.125000px;}
.x11c_c01278{left:1064.445000px;}
@media print{
.v0_c01278{vertical-align:0.000000pt;}
.v1_c01278{vertical-align:3.040000pt;}
.v2_c01278{vertical-align:24.586667pt;}
.ls1_c01278{letter-spacing:0.000000pt;}
.ls0_c01278{letter-spacing:245.530667pt;}
.ws1_c01278{word-spacing:0.000000pt;}
.ws0_c01278{word-spacing:10.373653pt;}
.fs4_c01278{font-size:3.072000pt;}
.fs8_c01278{font-size:5.333333pt;}
.fs7_c01278{font-size:6.133333pt;}
.fs6_c01278{font-size:9.226667pt;}
.fs18_c01278{font-size:12.266667pt;}
.fs9_c01278{font-size:15.360000pt;}
.fsa_c01278{font-size:18.453333pt;}
.fs5_c01278{font-size:21.493333pt;}
.fs13_c01278{font-size:24.586667pt;}
.fs1e_c01278{font-size:27.626667pt;}
.fs10_c01278{font-size:30.720000pt;}
.fs1b_c01278{font-size:33.813333pt;}
.fs1d_c01278{font-size:36.853333pt;}
.fs1f_c01278{font-size:39.946667pt;}
.fs12_c01278{font-size:42.986667pt;}
.fs1a_c01278{font-size:46.080000pt;}
.fsd_c01278{font-size:49.173333pt;}
.fsf_c01278{font-size:52.213333pt;}
.fs14_c01278{font-size:55.306667pt;}
.fs11_c01278{font-size:58.346667pt;}
.fs0_c01278{font-size:61.440000pt;}
.fsc_c01278{font-size:64.533333pt;}
.fsb_c01278{font-size:67.573333pt;}
.fse_c01278{font-size:70.666667pt;}
.fs1_c01278{font-size:73.706667pt;}
.fs19_c01278{font-size:76.800000pt;}
.fs1c_c01278{font-size:79.893333pt;}
.fs15_c01278{font-size:82.933333pt;}
.fs17_c01278{font-size:86.026667pt;}
.fs21_c01278{font-size:89.066667pt;}
.fs16_c01278{font-size:92.160000pt;}
.fs20_c01278{font-size:95.253333pt;}
.fs22_c01278{font-size:98.293333pt;}
.fs2_c01278{font-size:113.653333pt;}
.fs3_c01278{font-size:122.880000pt;}
.fs23_c01278{font-size:141.333333pt;}
.y0_c01278{bottom:0.000000pt;}
.y1d5_c01278{bottom:170.493333pt;}
.y1d6_c01278{bottom:171.266667pt;}
.y1db_c01278{bottom:172.026667pt;}
.y1dd_c01278{bottom:173.573333pt;}
.y1da_c01278{bottom:174.333333pt;}
.y1dc_c01278{bottom:175.866667pt;}
.y1d4_c01278{bottom:177.413333pt;}
.y1d7_c01278{bottom:178.173333pt;}
.y1d9_c01278{bottom:178.946667pt;}
.y1d8_c01278{bottom:192.000000pt;}
.y1d1_c01278{bottom:194.306667pt;}
.y1cf_c01278{bottom:195.066667pt;}
.y1ce_c01278{bottom:195.840000pt;}
.y1cd_c01278{bottom:196.613333pt;}
.y1d0_c01278{bottom:197.373333pt;}
.y1d2_c01278{bottom:198.146667pt;}
.y1d3_c01278{bottom:201.213333pt;}
.y1c8_c01278{bottom:208.893333pt;}
.y1c7_c01278{bottom:210.426667pt;}
.y1cb_c01278{bottom:211.200000pt;}
.y1cc_c01278{bottom:211.973333pt;}
.y1c9_c01278{bottom:213.506667pt;}
.y1ca_c01278{bottom:214.266667pt;}
.y1bf_c01278{bottom:226.560000pt;}
.y1c1_c01278{bottom:227.333333pt;}
.y1c4_c01278{bottom:228.093333pt;}
.y1c6_c01278{bottom:228.866667pt;}
.y1c0_c01278{bottom:229.626667pt;}
.y1c3_c01278{bottom:230.400000pt;}
.y1be_c01278{bottom:231.173333pt;}
.y1c2_c01278{bottom:233.466667pt;}
.y1c5_c01278{bottom:234.240000pt;}
.y1b7_c01278{bottom:244.226667pt;}
.y1b8_c01278{bottom:245.760000pt;}
.y1b9_c01278{bottom:247.293333pt;}
.y1b6_c01278{bottom:249.600000pt;}
.y1ba_c01278{bottom:250.373333pt;}
.y1bb_c01278{bottom:251.133333pt;}
.y1bc_c01278{bottom:254.213333pt;}
.y1bd_c01278{bottom:255.746667pt;}
.y1b1_c01278{bottom:263.426667pt;}
.y1af_c01278{bottom:264.186667pt;}
.y1b2_c01278{bottom:264.960000pt;}
.y1b4_c01278{bottom:267.266667pt;}
.y1b0_c01278{bottom:268.026667pt;}
.y1b5_c01278{bottom:268.800000pt;}
.y1b3_c01278{bottom:273.413333pt;}
.y1a7_c01278{bottom:281.853333pt;}
.y1a6_c01278{bottom:284.160000pt;}
.y1aa_c01278{bottom:284.933333pt;}
.y1ae_c01278{bottom:285.693333pt;}
.y1ab_c01278{bottom:286.466667pt;}
.y1a9_c01278{bottom:289.533333pt;}
.y1a8_c01278{bottom:290.306667pt;}
.y1ac_c01278{bottom:291.066667pt;}
.y1ad_c01278{bottom:291.840000pt;}
.y19f_c01278{bottom:301.053333pt;}
.y1a0_c01278{bottom:301.826667pt;}
.y1a1_c01278{bottom:303.360000pt;}
.y19e_c01278{bottom:305.666667pt;}
.y1a4_c01278{bottom:306.426667pt;}
.y1a2_c01278{bottom:307.973333pt;}
.y1a3_c01278{bottom:309.506667pt;}
.y1a5_c01278{bottom:310.266667pt;}
.y197_c01278{bottom:319.493333pt;}
.y19d_c01278{bottom:322.560000pt;}
.y19a_c01278{bottom:323.333333pt;}
.y199_c01278{bottom:324.093333pt;}
.y198_c01278{bottom:324.866667pt;}
.y19b_c01278{bottom:325.626667pt;}
.y19c_c01278{bottom:326.400000pt;}
.y18e_c01278{bottom:337.920000pt;}
.y18d_c01278{bottom:339.453333pt;}
.y190_c01278{bottom:340.986667pt;}
.y18f_c01278{bottom:341.760000pt;}
.y193_c01278{bottom:342.533333pt;}
.y195_c01278{bottom:343.293333pt;}
.y192_c01278{bottom:344.066667pt;}
.y191_c01278{bottom:344.826667pt;}
.y194_c01278{bottom:346.373333pt;}
.y196_c01278{bottom:347.906667pt;}
.y18a_c01278{bottom:356.346667pt;}
.y18c_c01278{bottom:357.120000pt;}
.y182_c01278{bottom:357.893333pt;}
.y183_c01278{bottom:358.653333pt;}
.y187_c01278{bottom:360.186667pt;}
.y184_c01278{bottom:360.960000pt;}
.y189_c01278{bottom:361.733333pt;}
.y185_c01278{bottom:364.800000pt;}
.y18b_c01278{bottom:365.573333pt;}
.y188_c01278{bottom:367.866667pt;}
.y186_c01278{bottom:372.480000pt;}
.y178_c01278{bottom:374.013333pt;}
.y177_c01278{bottom:374.786667pt;}
.y17b_c01278{bottom:375.546667pt;}
.y17a_c01278{bottom:376.320000pt;}
.y179_c01278{bottom:377.093333pt;}
.y17c_c01278{bottom:377.853333pt;}
.y17f_c01278{bottom:378.626667pt;}
.y176_c01278{bottom:379.386667pt;}
.y181_c01278{bottom:380.933333pt;}
.y17d_c01278{bottom:382.466667pt;}
.y17e_c01278{bottom:384.000000pt;}
.y180_c01278{bottom:390.906667pt;}
.y175_c01278{bottom:391.680000pt;}
.y174_c01278{bottom:392.453333pt;}
.y171_c01278{bottom:393.213333pt;}
.y173_c01278{bottom:394.746667pt;}
.y172_c01278{bottom:397.826667pt;}
.y169_c01278{bottom:409.346667pt;}
.y167_c01278{bottom:410.106667pt;}
.y16e_c01278{bottom:410.880000pt;}
.y168_c01278{bottom:411.653333pt;}
.y16d_c01278{bottom:413.946667pt;}
.y16c_c01278{bottom:415.493333pt;}
.y166_c01278{bottom:416.253333pt;}
.y16a_c01278{bottom:417.026667pt;}
.y170_c01278{bottom:417.786667pt;}
.y16b_c01278{bottom:419.333333pt;}
.y16f_c01278{bottom:420.866667pt;}
.y161_c01278{bottom:430.080000pt;}
.y163_c01278{bottom:432.386667pt;}
.y164_c01278{bottom:433.146667pt;}
.y162_c01278{bottom:433.920000pt;}
.y165_c01278{bottom:435.453333pt;}
.y160_c01278{bottom:446.213333pt;}
.y15c_c01278{bottom:447.746667pt;}
.y15d_c01278{bottom:448.506667pt;}
.y15b_c01278{bottom:449.280000pt;}
.y150_c01278{bottom:450.813333pt;}
.y15e_c01278{bottom:456.186667pt;}
.y15a_c01278{bottom:456.960000pt;}
.y15f_c01278{bottom:457.733333pt;}
.y158_c01278{bottom:462.333333pt;}
.y14e_c01278{bottom:465.413333pt;}
.y159_c01278{bottom:466.173333pt;}
.y155_c01278{bottom:467.706667pt;}
.y153_c01278{bottom:468.480000pt;}
.y154_c01278{bottom:469.253333pt;}
.y152_c01278{bottom:470.013333pt;}
.y151_c01278{bottom:470.786667pt;}
.y156_c01278{bottom:473.853333pt;}
.y157_c01278{bottom:474.626667pt;}
.y14f_c01278{bottom:486.146667pt;}
.y144_c01278{bottom:486.906667pt;}
.y146_c01278{bottom:487.680000pt;}
.y14a_c01278{bottom:488.453333pt;}
.y145_c01278{bottom:489.986667pt;}
.y14b_c01278{bottom:490.746667pt;}
.y148_c01278{bottom:491.520000pt;}
.y147_c01278{bottom:492.293333pt;}
.y14d_c01278{bottom:498.426667pt;}
.y149_c01278{bottom:499.200000pt;}
.y14c_c01278{bottom:501.506667pt;}
.y13b_c01278{bottom:503.040000pt;}
.y13c_c01278{bottom:503.813333pt;}
.y13a_c01278{bottom:504.573333pt;}
.y13f_c01278{bottom:505.346667pt;}
.y13d_c01278{bottom:506.106667pt;}
.y13e_c01278{bottom:506.880000pt;}
.y139_c01278{bottom:507.653333pt;}
.y142_c01278{bottom:508.413333pt;}
.y138_c01278{bottom:509.186667pt;}
.y141_c01278{bottom:509.946667pt;}
.y140_c01278{bottom:510.720000pt;}
.y143_c01278{bottom:511.493333pt;}
.y134_c01278{bottom:515.333333pt;}
.y133_c01278{bottom:516.866667pt;}
.y135_c01278{bottom:518.400000pt;}
.y132_c01278{bottom:519.173333pt;}
.y136_c01278{bottom:520.706667pt;}
.y130_c01278{bottom:523.013333pt;}
.y137_c01278{bottom:523.773333pt;}
.y12e_c01278{bottom:526.080000pt;}
.y131_c01278{bottom:526.853333pt;}
.y12f_c01278{bottom:528.386667pt;}
.y12d_c01278{bottom:542.213333pt;}
.y12b_c01278{bottom:543.746667pt;}
.y12c_c01278{bottom:546.053333pt;}
.y126_c01278{bottom:556.800000pt;}
.y128_c01278{bottom:559.106667pt;}
.y12a_c01278{bottom:562.173333pt;}
.y125_c01278{bottom:563.706667pt;}
.y127_c01278{bottom:565.253333pt;}
.y124_c01278{bottom:566.013333pt;}
.y129_c01278{bottom:567.546667pt;}
.y11e_c01278{bottom:576.773333pt;}
.y122_c01278{bottom:577.533333pt;}
.y11f_c01278{bottom:581.373333pt;}
.y121_c01278{bottom:582.906667pt;}
.y120_c01278{bottom:584.453333pt;}
.y123_c01278{bottom:592.893333pt;}
.y11b_c01278{bottom:593.666667pt;}
.y11a_c01278{bottom:595.200000pt;}
.y11d_c01278{bottom:595.973333pt;}
.y11c_c01278{bottom:600.573333pt;}
.y119_c01278{bottom:605.946667pt;}
.y117_c01278{bottom:614.400000pt;}
.y112_c01278{bottom:615.173333pt;}
.y116_c01278{bottom:615.933333pt;}
.y114_c01278{bottom:618.240000pt;}
.y115_c01278{bottom:619.013333pt;}
.y113_c01278{bottom:619.773333pt;}
.y118_c01278{bottom:627.453333pt;}
.y10d_c01278{bottom:630.533333pt;}
.y110_c01278{bottom:632.066667pt;}
.y10f_c01278{bottom:632.826667pt;}
.y10b_c01278{bottom:634.373333pt;}
.y10c_c01278{bottom:635.906667pt;}
.y111_c01278{bottom:636.666667pt;}
.y10a_c01278{bottom:637.440000pt;}
.y10e_c01278{bottom:644.346667pt;}
.y109_c01278{bottom:648.186667pt;}
.y106_c01278{bottom:648.960000pt;}
.y104_c01278{bottom:649.733333pt;}
.y107_c01278{bottom:650.493333pt;}
.y102_c01278{bottom:651.266667pt;}
.y108_c01278{bottom:652.800000pt;}
.y103_c01278{bottom:653.573333pt;}
.y101_c01278{bottom:654.333333pt;}
.y100_c01278{bottom:655.106667pt;}
.y105_c01278{bottom:656.640000pt;}
.yff_c01278{bottom:665.853333pt;}
.yf8_c01278{bottom:668.160000pt;}
.yfb_c01278{bottom:668.933333pt;}
.yf4_c01278{bottom:669.693333pt;}
.yf7_c01278{bottom:670.466667pt;}
.yf6_c01278{bottom:671.226667pt;}
.yfc_c01278{bottom:672.000000pt;}
.yf5_c01278{bottom:673.533333pt;}
.yf9_c01278{bottom:674.306667pt;}
.yfe_c01278{bottom:675.066667pt;}
.yfd_c01278{bottom:677.373333pt;}
.yfa_c01278{bottom:685.053333pt;}
.yf3_c01278{bottom:686.586667pt;}
.yf0_c01278{bottom:687.360000pt;}
.yef_c01278{bottom:688.893333pt;}
.yed_c01278{bottom:690.426667pt;}
.yf2_c01278{bottom:691.200000pt;}
.yec_c01278{bottom:691.973333pt;}
.yee_c01278{bottom:692.733333pt;}
.yf1_c01278{bottom:697.346667pt;}
.ye5_c01278{bottom:699.653333pt;}
.ye4_c01278{bottom:700.413333pt;}
.ye3_c01278{bottom:701.186667pt;}
.yea_c01278{bottom:701.946667pt;}
.ye8_c01278{bottom:703.493333pt;}
.ye9_c01278{bottom:704.253333pt;}
.ye6_c01278{bottom:707.333333pt;}
.ye7_c01278{bottom:708.093333pt;}
.yeb_c01278{bottom:710.400000pt;}
.ye0_c01278{bottom:721.920000pt;}
.ye1_c01278{bottom:723.453333pt;}
.ydf_c01278{bottom:724.226667pt;}
.yde_c01278{bottom:724.986667pt;}
.ydd_c01278{bottom:725.760000pt;}
.yda_c01278{bottom:727.293333pt;}
.ydc_c01278{bottom:728.066667pt;}
.ydb_c01278{bottom:728.826667pt;}
.ye2_c01278{bottom:729.600000pt;}
.yd7_c01278{bottom:739.586667pt;}
.yd4_c01278{bottom:740.346667pt;}
.yd6_c01278{bottom:741.120000pt;}
.yd5_c01278{bottom:743.426667pt;}
.yd3_c01278{bottom:746.493333pt;}
.yd2_c01278{bottom:747.266667pt;}
.yd9_c01278{bottom:752.640000pt;}
.yd8_c01278{bottom:754.946667pt;}
.ycd_c01278{bottom:755.706667pt;}
.yce_c01278{bottom:756.480000pt;}
.ycf_c01278{bottom:757.253333pt;}
.ycc_c01278{bottom:758.013333pt;}
.yd0_c01278{bottom:761.853333pt;}
.yd1_c01278{bottom:762.626667pt;}
.ycb_c01278{bottom:769.533333pt;}
.yc6_c01278{bottom:777.213333pt;}
.yc8_c01278{bottom:777.986667pt;}
.yc9_c01278{bottom:778.746667pt;}
.yc7_c01278{bottom:781.053333pt;}
.yc5_c01278{bottom:781.826667pt;}
.yc4_c01278{bottom:782.586667pt;}
.yc3_c01278{bottom:783.360000pt;}
.yca_c01278{bottom:784.133333pt;}
.ybe_c01278{bottom:794.880000pt;}
.ybc_c01278{bottom:796.413333pt;}
.yc2_c01278{bottom:797.186667pt;}
.ybf_c01278{bottom:797.946667pt;}
.yc0_c01278{bottom:799.493333pt;}
.yc1_c01278{bottom:800.253333pt;}
.ybd_c01278{bottom:801.026667pt;}
.yb9_c01278{bottom:811.013333pt;}
.yba_c01278{bottom:812.546667pt;}
.yb6_c01278{bottom:813.306667pt;}
.yb5_c01278{bottom:814.080000pt;}
.yb4_c01278{bottom:815.613333pt;}
.ybb_c01278{bottom:816.386667pt;}
.yb8_c01278{bottom:817.146667pt;}
.yb7_c01278{bottom:817.920000pt;}
.yb3_c01278{bottom:820.226667pt;}
.yb1_c01278{bottom:829.440000pt;}
.yac_c01278{bottom:830.213333pt;}
.yb0_c01278{bottom:830.973333pt;}
.yb2_c01278{bottom:831.746667pt;}
.yae_c01278{bottom:833.280000pt;}
.yaf_c01278{bottom:836.346667pt;}
.yad_c01278{bottom:837.893333pt;}
.ya4_c01278{bottom:850.173333pt;}
.ya8_c01278{bottom:851.706667pt;}
.yaa_c01278{bottom:852.480000pt;}
.ya5_c01278{bottom:854.013333pt;}
.ya7_c01278{bottom:854.786667pt;}
.ya6_c01278{bottom:855.546667pt;}
.yab_c01278{bottom:856.320000pt;}
.ya9_c01278{bottom:865.533333pt;}
.y9f_c01278{bottom:866.306667pt;}
.ya2_c01278{bottom:867.066667pt;}
.ya1_c01278{bottom:867.840000pt;}
.ya0_c01278{bottom:868.613333pt;}
.y9e_c01278{bottom:870.146667pt;}
.ya3_c01278{bottom:870.906667pt;}
.y9a_c01278{bottom:877.053333pt;}
.y97_c01278{bottom:877.826667pt;}
.y99_c01278{bottom:878.586667pt;}
.y9c_c01278{bottom:879.360000pt;}
.y98_c01278{bottom:880.893333pt;}
.y9b_c01278{bottom:883.973333pt;}
.y9d_c01278{bottom:884.733333pt;}
.y96_c01278{bottom:885.506667pt;}
.y92_c01278{bottom:886.266667pt;}
.y90_c01278{bottom:887.040000pt;}
.y93_c01278{bottom:887.813333pt;}
.y95_c01278{bottom:889.346667pt;}
.y94_c01278{bottom:890.106667pt;}
.y91_c01278{bottom:890.880000pt;}
.y8b_c01278{bottom:903.933333pt;}
.y88_c01278{bottom:905.466667pt;}
.y8a_c01278{bottom:906.240000pt;}
.y89_c01278{bottom:907.013333pt;}
.y8c_c01278{bottom:907.773333pt;}
.y8e_c01278{bottom:908.546667pt;}
.y8d_c01278{bottom:909.306667pt;}
.y8f_c01278{bottom:910.080000pt;}
.y87_c01278{bottom:921.600000pt;}
.y81_c01278{bottom:922.373333pt;}
.y83_c01278{bottom:923.133333pt;}
.y85_c01278{bottom:923.906667pt;}
.y84_c01278{bottom:926.213333pt;}
.y86_c01278{bottom:926.973333pt;}
.y80_c01278{bottom:927.746667pt;}
.y7f_c01278{bottom:928.506667pt;}
.y82_c01278{bottom:931.586667pt;}
.y7c_c01278{bottom:933.893333pt;}
.y7b_c01278{bottom:934.653333pt;}
.y7e_c01278{bottom:936.186667pt;}
.y7d_c01278{bottom:948.480000pt;}
.y76_c01278{bottom:957.693333pt;}
.y75_c01278{bottom:958.466667pt;}
.y79_c01278{bottom:960.773333pt;}
.y78_c01278{bottom:961.533333pt;}
.y7a_c01278{bottom:963.840000pt;}
.y77_c01278{bottom:973.826667pt;}
.y6e_c01278{bottom:975.360000pt;}
.y72_c01278{bottom:976.133333pt;}
.y71_c01278{bottom:976.893333pt;}
.y73_c01278{bottom:978.426667pt;}
.y6d_c01278{bottom:979.200000pt;}
.y70_c01278{bottom:981.506667pt;}
.y6f_c01278{bottom:982.266667pt;}
.y74_c01278{bottom:984.573333pt;}
.y6c_c01278{bottom:989.946667pt;}
.y69_c01278{bottom:994.560000pt;}
.y68_c01278{bottom:995.333333pt;}
.y64_c01278{bottom:996.093333pt;}
.y6a_c01278{bottom:996.866667pt;}
.y6b_c01278{bottom:997.626667pt;}
.y61_c01278{bottom:998.400000pt;}
.y65_c01278{bottom:999.173333pt;}
.y66_c01278{bottom:999.933333pt;}
.y5e_c01278{bottom:1004.546667pt;}
.y62_c01278{bottom:1005.306667pt;}
.y63_c01278{bottom:1006.853333pt;}
.y60_c01278{bottom:1007.613333pt;}
.y5f_c01278{bottom:1008.386667pt;}
.y5c_c01278{bottom:1009.146667pt;}
.y5b_c01278{bottom:1009.920000pt;}
.y5d_c01278{bottom:1010.693333pt;}
.y5a_c01278{bottom:1012.226667pt;}
.y57_c01278{bottom:1012.986667pt;}
.y67_c01278{bottom:1013.760000pt;}
.y58_c01278{bottom:1014.533333pt;}
.y56_c01278{bottom:1015.293333pt;}
.y59_c01278{bottom:1016.826667pt;}
.y55_c01278{bottom:1018.373333pt;}
.y54_c01278{bottom:1019.133333pt;}
.y50_c01278{bottom:1030.653333pt;}
.y4c_c01278{bottom:1032.186667pt;}
.y53_c01278{bottom:1033.733333pt;}
.y4f_c01278{bottom:1034.493333pt;}
.y52_c01278{bottom:1035.266667pt;}
.y4d_c01278{bottom:1036.026667pt;}
.y4e_c01278{bottom:1036.800000pt;}
.y4b_c01278{bottom:1037.573333pt;}
.y1e4_c01278{bottom:1039.866667pt;}
.y51_c01278{bottom:1040.640000pt;}
.y46_c01278{bottom:1048.320000pt;}
.y47_c01278{bottom:1049.093333pt;}
.y45_c01278{bottom:1049.853333pt;}
.y41_c01278{bottom:1050.626667pt;}
.y44_c01278{bottom:1052.933333pt;}
.y49_c01278{bottom:1053.693333pt;}
.y43_c01278{bottom:1055.226667pt;}
.y48_c01278{bottom:1056.000000pt;}
.y42_c01278{bottom:1056.773333pt;}
.y4a_c01278{bottom:1058.306667pt;}
.y3c_c01278{bottom:1065.213333pt;}
.y3a_c01278{bottom:1065.986667pt;}
.y3b_c01278{bottom:1067.520000pt;}
.y3f_c01278{bottom:1070.586667pt;}
.y3d_c01278{bottom:1072.133333pt;}
.y40_c01278{bottom:1072.893333pt;}
.y3e_c01278{bottom:1077.506667pt;}
.y34_c01278{bottom:1082.880000pt;}
.y36_c01278{bottom:1084.413333pt;}
.y38_c01278{bottom:1085.186667pt;}
.y39_c01278{bottom:1085.946667pt;}
.y35_c01278{bottom:1086.720000pt;}
.y37_c01278{bottom:1091.333333pt;}
.y2b_c01278{bottom:1101.306667pt;}
.y2d_c01278{bottom:1102.080000pt;}
.y2a_c01278{bottom:1102.853333pt;}
.y32_c01278{bottom:1103.613333pt;}
.y2f_c01278{bottom:1104.386667pt;}
.y30_c01278{bottom:1105.146667pt;}
.y2e_c01278{bottom:1105.920000pt;}
.y31_c01278{bottom:1108.226667pt;}
.y2c_c01278{bottom:1109.760000pt;}
.y33_c01278{bottom:1111.293333pt;}
.y27_c01278{bottom:1120.506667pt;}
.y22_c01278{bottom:1121.280000pt;}
.y29_c01278{bottom:1122.053333pt;}
.y25_c01278{bottom:1124.346667pt;}
.y24_c01278{bottom:1125.120000pt;}
.y26_c01278{bottom:1125.893333pt;}
.y28_c01278{bottom:1126.653333pt;}
.y23_c01278{bottom:1127.426667pt;}
.y20_c01278{bottom:1132.026667pt;}
.y1d_c01278{bottom:1134.333333pt;}
.y21_c01278{bottom:1135.106667pt;}
.y1f_c01278{bottom:1135.866667pt;}
.y1e_c01278{bottom:1136.640000pt;}
.y19_c01278{bottom:1137.413333pt;}
.y1a_c01278{bottom:1138.946667pt;}
.y18_c01278{bottom:1140.480000pt;}
.y1c_c01278{bottom:1141.253333pt;}
.y1b_c01278{bottom:1143.546667pt;}
.y17_c01278{bottom:1144.320000pt;}
.y14_c01278{bottom:1156.613333pt;}
.y15_c01278{bottom:1157.373333pt;}
.y16_c01278{bottom:1158.906667pt;}
.y13_c01278{bottom:1162.746667pt;}
.y12_c01278{bottom:1163.520000pt;}
.y1e3_c01278{bottom:1173.506667pt;}
.yb_c01278{bottom:1174.266667pt;}
.yd_c01278{bottom:1175.813333pt;}
.y10_c01278{bottom:1177.346667pt;}
.yc_c01278{bottom:1178.106667pt;}
.ye_c01278{bottom:1179.653333pt;}
.yf_c01278{bottom:1180.413333pt;}
.y11_c01278{bottom:1181.186667pt;}
.y1e1_c01278{bottom:1186.560000pt;}
.y5_c01278{bottom:1189.626667pt;}
.y1e2_c01278{bottom:1190.400000pt;}
.y6_c01278{bottom:1191.933333pt;}
.y4_c01278{bottom:1193.466667pt;}
.y8_c01278{bottom:1194.240000pt;}
.y9_c01278{bottom:1195.013333pt;}
.ya_c01278{bottom:1195.773333pt;}
.y7_c01278{bottom:1197.306667pt;}
.y3_c01278{bottom:1198.853333pt;}
.y1_c01278{bottom:1202.693333pt;}
.y2_c01278{bottom:1204.226667pt;}
.y1e0_c01278{bottom:1238.786667pt;}
.y1df_c01278{bottom:1250.306667pt;}
.y1de_c01278{bottom:1254.906667pt;}
.h6_c01278{height:2.764500pt;}
.ha_c01278{height:4.799479pt;}
.h9_c01278{height:5.519401pt;}
.h8_c01278{height:8.303099pt;}
.h1a_c01278{height:11.038802pt;}
.hb_c01278{height:13.822500pt;}
.h25_c01278{height:14.078802pt;}
.hc_c01278{height:16.606198pt;}
.h7_c01278{height:19.341901pt;}
.h15_c01278{height:22.125599pt;}
.h20_c01278{height:24.861302pt;}
.h12_c01278{height:27.645000pt;}
.h1d_c01278{height:30.428698pt;}
.h1f_c01278{height:33.164401pt;}
.h21_c01278{height:35.948099pt;}
.h14_c01278{height:38.683802pt;}
.h1c_c01278{height:41.467500pt;}
.hf_c01278{height:44.251198pt;}
.h11_c01278{height:46.986901pt;}
.h16_c01278{height:49.770599pt;}
.h13_c01278{height:52.506302pt;}
.h2_c01278{height:55.290000pt;}
.he_c01278{height:58.073698pt;}
.hd_c01278{height:60.809401pt;}
.h10_c01278{height:63.593099pt;}
.h3_c01278{height:66.328802pt;}
.h1b_c01278{height:69.112500pt;}
.h27_c01278{height:71.573568pt;}
.h1e_c01278{height:71.896198pt;}
.h17_c01278{height:74.631901pt;}
.h19_c01278{height:77.415599pt;}
.h23_c01278{height:80.151302pt;}
.h18_c01278{height:82.935000pt;}
.h22_c01278{height:85.718698pt;}
.h24_c01278{height:88.454401pt;}
.h4_c01278{height:102.276901pt;}
.h5_c01278{height:110.580000pt;}
.h26_c01278{height:127.186198pt;}
.h1_c01278{height:1350.000000pt;}
.h0_c01278{height:1350.146667pt;}
.w0_c01278{width:964.613333pt;}
.w1_c01278{width:964.666667pt;}
.x0_c01278{left:0.000000pt;}
.xf2_c01278{left:150.533333pt;}
.xfc_c01278{left:161.280000pt;}
.x2f_c01278{left:166.653333pt;}
.xec_c01278{left:168.960000pt;}
.x25_c01278{left:173.573333pt;}
.xad_c01278{left:176.640000pt;}
.xb1_c01278{left:178.946667pt;}
.x30_c01278{left:180.480000pt;}
.xf9_c01278{left:182.786667pt;}
.x31_c01278{left:185.093333pt;}
.x3b_c01278{left:188.933333pt;}
.xe3_c01278{left:190.466333pt;}
.xff_c01278{left:192.000000pt;}
.xc6_c01278{left:193.533333pt;}
.xb8_c01278{left:195.066667pt;}
.x51_c01278{left:196.613333pt;}
.x85_c01278{left:198.906667pt;}
.x1f_c01278{left:201.986667pt;}
.x44_c01278{left:204.293333pt;}
.x1_c01278{left:205.826667pt;}
.x6e_c01278{left:208.133333pt;}
.xf3_c01278{left:214.266667pt;}
.xd7_c01278{left:216.573333pt;}
.x112_c01278{left:219.653333pt;}
.x10_c01278{left:221.186667pt;}
.xd2_c01278{left:222.720000pt;}
.x6f_c01278{left:224.253333pt;}
.x10b_c01278{left:226.560000pt;}
.x3c_c01278{left:228.093333pt;}
.xc2_c01278{left:229.626667pt;}
.xba_c01278{left:231.173333pt;}
.x20_c01278{left:232.706667pt;}
.x3d_c01278{left:235.013333pt;}
.x7e_c01278{left:236.546667pt;}
.x66_c01278{left:238.080000pt;}
.xa2_c01278{left:239.613333pt;}
.x99_c01278{left:241.146667pt;}
.xb2_c01278{left:242.693333pt;}
.xa7_c01278{left:244.986667pt;}
.x86_c01278{left:247.293333pt;}
.x5d_c01278{left:252.666667pt;}
.xae_c01278{left:255.746667pt;}
.x67_c01278{left:257.280000pt;}
.xd8_c01278{left:259.586667pt;}
.x70_c01278{left:261.120000pt;}
.x26_c01278{left:262.653333pt;}
.xa3_c01278{left:264.960000pt;}
.x5_c01278{left:267.266667pt;}
.xd0_c01278{left:268.800000pt;}
.x115_c01278{left:270.333333pt;}
.xbe_c01278{left:273.413333pt;}
.x11_c01278{left:275.706667pt;}
.x93_c01278{left:278.013333pt;}
.x52_c01278{left:279.546667pt;}
.xa8_c01278{left:281.093333pt;}
.xe1_c01278{left:282.626667pt;}
.x6_c01278{left:284.933333pt;}
.x53_c01278{left:286.466667pt;}
.x9a_c01278{left:288.773333pt;}
.xa9_c01278{left:290.306667pt;}
.xbb_c01278{left:292.613333pt;}
.x7_c01278{left:294.146667pt;}
.x71_c01278{left:297.213333pt;}
.x32_c01278{left:300.293333pt;}
.x54_c01278{left:304.133333pt;}
.xb3_c01278{left:305.666667pt;}
.xd3_c01278{left:309.506667pt;}
.x2_c01278{left:311.813333pt;}
.xf4_c01278{left:314.106667pt;}
.x113_c01278{left:316.413333pt;}
.x12_c01278{left:318.720000pt;}
.x87_c01278{left:321.026667pt;}
.x33_c01278{left:322.560000pt;}
.x72_c01278{left:324.866667pt;}
.xb4_c01278{left:326.400000pt;}
.x108_c01278{left:328.706667pt;}
.x45_c01278{left:331.013333pt;}
.xc7_c01278{left:334.853333pt;}
.x5e_c01278{left:337.146667pt;}
.x55_c01278{left:339.453333pt;}
.x73_c01278{left:341.760000pt;}
.xcd_c01278{left:344.066667pt;}
.x27_c01278{left:345.600000pt;}
.xe2_c01278{left:347.133333pt;}
.x21_c01278{left:349.440000pt;}
.xaf_c01278{left:353.280000pt;}
.xf5_c01278{left:354.813333pt;}
.x68_c01278{left:356.346667pt;}
.xbf_c01278{left:359.426667pt;}
.x8_c01278{left:363.266667pt;}
.xbc_c01278{left:366.333333pt;}
.x13_c01278{left:368.640000pt;}
.xaa_c01278{left:370.173333pt;}
.xfa_c01278{left:372.480000pt;}
.x105_c01278{left:374.786667pt;}
.x94_c01278{left:377.093333pt;}
.xab_c01278{left:378.626667pt;}
.x95_c01278{left:380.160000pt;}
.x56_c01278{left:381.693333pt;}
.xac_c01278{left:383.226667pt;}
.x8c_c01278{left:386.306667pt;}
.x28_c01278{left:387.840000pt;}
.x74_c01278{left:390.146667pt;}
.xa4_c01278{left:391.680000pt;}
.x5f_c01278{left:393.986667pt;}
.xfd_c01278{left:395.520000pt;}
.x34_c01278{left:400.133333pt;}
.xc3_c01278{left:402.426667pt;}
.x69_c01278{left:403.973333pt;}
.x7f_c01278{left:405.506667pt;}
.x29_c01278{left:407.040000pt;}
.xd9_c01278{left:408.573333pt;}
.x96_c01278{left:410.106667pt;}
.x116_c01278{left:411.653333pt;}
.xdd_c01278{left:414.720000pt;}
.x46_c01278{left:417.026667pt;}
.xb0_c01278{left:420.093333pt;}
.x60_c01278{left:423.933333pt;}
.x14_c01278{left:425.466667pt;}
.x9b_c01278{left:427.773333pt;}
.x2a_c01278{left:430.853333pt;}
.x3e_c01278{left:432.386667pt;}
.x9_c01278{left:434.693333pt;}
.xb9_c01278{left:436.226667pt;}
.x3_c01278{left:437.760000pt;}
.x9c_c01278{left:439.293333pt;}
.x75_c01278{left:440.826667pt;}
.x47_c01278{left:446.213333pt;}
.xce_c01278{left:447.746667pt;}
.x57_c01278{left:453.893333pt;}
.xde_c01278{left:456.186667pt;}
.xc0_c01278{left:459.266667pt;}
.x97_c01278{left:460.800000pt;}
.x100_c01278{left:463.106667pt;}
.xa_c01278{left:464.640000pt;}
.xca_c01278{left:466.946667pt;}
.x101_c01278{left:468.480000pt;}
.x61_c01278{left:470.786667pt;}
.xfe_c01278{left:474.626667pt;}
.xd4_c01278{left:476.160000pt;}
.x62_c01278{left:477.693333pt;}
.x15_c01278{left:479.226667pt;}
.xcb_c01278{left:480.773333pt;}
.x3f_c01278{left:483.840000pt;}
.x48_c01278{left:486.146667pt;}
.xb_c01278{left:488.453333pt;}
.x22_c01278{left:489.986667pt;}
.x4c_c01278{left:491.520000pt;}
.x58_c01278{left:493.826667pt;}
.x80_c01278{left:496.133333pt;}
.x16_c01278{left:497.666667pt;}
.xcf_c01278{left:499.200000pt;}
.x106_c01278{left:502.266667pt;}
.xb5_c01278{left:505.346667pt;}
.x81_c01278{left:507.653333pt;}
.xda_c01278{left:509.186667pt;}
.xe9_c01278{left:510.720000pt;}
.x17_c01278{left:512.253333pt;}
.xed_c01278{left:515.333333pt;}
.xe4_c01278{left:522.240000pt;}
.x49_c01278{left:523.773333pt;}
.xc8_c01278{left:525.306667pt;}
.x117_c01278{left:529.146667pt;}
.x18_c01278{left:531.453333pt;}
.x35_c01278{left:532.986667pt;}
.x76_c01278{left:534.533333pt;}
.x88_c01278{left:537.600000pt;}
.x2b_c01278{left:539.906667pt;}
.xee_c01278{left:541.440000pt;}
.xd5_c01278{left:544.506667pt;}
.xa5_c01278{left:548.346667pt;}
.xe8_c01278{left:550.653333pt;}
.x82_c01278{left:553.733333pt;}
.x77_c01278{left:556.800000pt;}
.xb6_c01278{left:558.333333pt;}
.x40_c01278{left:561.413333pt;}
.x59_c01278{left:562.946667pt;}
.xc4_c01278{left:564.480000pt;}
.x19_c01278{left:567.546667pt;}
.x63_c01278{left:569.093333pt;}
.x10d_c01278{left:570.626667pt;}
.x4d_c01278{left:573.693333pt;}
.x98_c01278{left:575.226667pt;}
.x6a_c01278{left:576.773333pt;}
.xc_c01278{left:578.306667pt;}
.x83_c01278{left:582.146667pt;}
.x5a_c01278{left:585.986667pt;}
.x1a_c01278{left:588.293333pt;}
.x6b_c01278{left:592.893333pt;}
.x4_c01278{left:594.426667pt;}
.xef_c01278{left:595.973333pt;}
.x110_c01278{left:599.040000pt;}
.xea_c01278{left:600.573333pt;}
.x102_c01278{left:603.653333pt;}
.x23_c01278{left:606.720000pt;}
.x2c_c01278{left:609.026667pt;}
.xf6_c01278{left:610.560000pt;}
.x4a_c01278{left:612.866667pt;}
.xb7_c01278{left:614.400000pt;}
.x114_c01278{left:615.933333pt;}
.xd1_c01278{left:619.013333pt;}
.x8f_c01278{left:620.546667pt;}
.x41_c01278{left:622.080000pt;}
.xf0_c01278{left:624.386667pt;}
.x111_c01278{left:625.920000pt;}
.x36_c01278{left:627.453333pt;}
.xfb_c01278{left:629.760000pt;}
.x1b_c01278{left:631.293333pt;}
.x78_c01278{left:633.600000pt;}
.xdb_c01278{left:635.906667pt;}
.x9d_c01278{left:637.440000pt;}
.x10c_c01278{left:638.973333pt;}
.x4e_c01278{left:640.506667pt;}
.x9e_c01278{left:643.586667pt;}
.x79_c01278{left:645.120000pt;}
.x64_c01278{left:646.653333pt;}
.x8d_c01278{left:648.960000pt;}
.x5b_c01278{left:650.493333pt;}
.xcc_c01278{left:652.800000pt;}
.xdf_c01278{left:654.333333pt;}
.x9f_c01278{left:657.413333pt;}
.x109_c01278{left:658.946667pt;}
.x7a_c01278{left:660.480000pt;}
.xc9_c01278{left:662.013333pt;}
.xf7_c01278{left:664.320000pt;}
.x89_c01278{left:665.853333pt;}
.x4b_c01278{left:667.386667pt;}
.x6c_c01278{left:668.933333pt;}
.xc1_c01278{left:671.226667pt;}
.x37_c01278{left:675.066667pt;}
.xd_c01278{left:678.146667pt;}
.x90_c01278{left:680.453333pt;}
.x4f_c01278{left:682.746667pt;}
.xe6_c01278{left:684.293333pt;}
.xa0_c01278{left:687.360000pt;}
.xa6_c01278{left:688.893333pt;}
.x10e_c01278{left:690.426667pt;}
.x38_c01278{left:691.973333pt;}
.xe7_c01278{left:695.040000pt;}
.xe_c01278{left:698.106667pt;}
.xf1_c01278{left:701.186667pt;}
.x7b_c01278{left:702.720000pt;}
.x39_c01278{left:706.560000pt;}
.x8e_c01278{left:708.093333pt;}
.x65_c01278{left:709.626667pt;}
.x10a_c01278{left:712.706667pt;}
.xdc_c01278{left:714.240000pt;}
.xf_c01278{left:715.773333pt;}
.xe5_c01278{left:717.306667pt;}
.xf8_c01278{left:719.613333pt;}
.x42_c01278{left:721.146667pt;}
.x91_c01278{left:722.693333pt;}
.xbd_c01278{left:724.226667pt;}
.x2d_c01278{left:725.760000pt;}
.x3a_c01278{left:728.066667pt;}
.x84_c01278{left:730.373333pt;}
.x7c_c01278{left:732.666667pt;}
.x10f_c01278{left:734.973333pt;}
.x5c_c01278{left:736.506667pt;}
.xc5_c01278{left:738.813333pt;}
.xa1_c01278{left:740.346667pt;}
.x1c_c01278{left:741.893333pt;}
.xd6_c01278{left:744.186667pt;}
.xeb_c01278{left:746.493333pt;}
.x1d_c01278{left:748.026667pt;}
.x92_c01278{left:751.866667pt;}
.xe0_c01278{left:755.706667pt;}
.x103_c01278{left:758.786667pt;}
.x7d_c01278{left:761.093333pt;}
.x50_c01278{left:762.626667pt;}
.x43_c01278{left:764.160000pt;}
.x107_c01278{left:768.773333pt;}
.x24_c01278{left:774.906667pt;}
.x1e_c01278{left:776.453333pt;}
.x2e_c01278{left:777.986667pt;}
.x8a_c01278{left:792.573333pt;}
.x6d_c01278{left:804.093333pt;}
.x104_c01278{left:810.240000pt;}
.x8b_c01278{left:811.773333pt;}
.x118_c01278{left:882.426667pt;}
.x119_c01278{left:893.946667pt;}
.x11d_c01278{left:907.773333pt;}
.x11a_c01278{left:926.213333pt;}
.x11b_c01278{left:942.333333pt;}
.x11c_c01278{left:946.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01279;src:url('chunks/assets/font_a4465549e04c6fcb59bc5121.woff2')format("woff");}.ff1_c01279{font-family:ff1_c01279;line-height:1.109863;font-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_c01279{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m146_c01279{transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);}
.m133_c01279{transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);}
.ma9_c01279{transform:matrix(0.069100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069100,0.000000,0.000000,0.250000,0,0);}
.m5c_c01279{transform:matrix(0.071500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071500,0.000000,0.000000,0.250000,0,0);}
.m126_c01279{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);}
.mee_c01279{transform:matrix(0.080825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080825,0.000000,0.000000,0.250000,0,0);}
.m31_c01279{transform:matrix(0.081550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081550,0.000000,0.000000,0.250000,0,0);}
.m208_c01279{transform:matrix(0.082625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082625,0.000000,0.000000,0.250000,0,0);}
.mc2_c01279{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.mf0_c01279{transform:matrix(0.096900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096900,0.000000,0.000000,0.250000,0,0);}
.m8e_c01279{transform:matrix(0.097425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097425,0.000000,0.000000,0.250000,0,0);}
.m19a_c01279{transform:matrix(0.099875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099875,0.000000,0.000000,0.250000,0,0);}
.m181_c01279{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);}
.m99_c01279{transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);}
.m5a_c01279{transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);}
.mf1_c01279{transform:matrix(0.108800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108800,0.000000,0.000000,0.250000,0,0);}
.ma6_c01279{transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);}
.mb8_c01279{transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);}
.m17e_c01279{transform:matrix(0.110650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110650,0.000000,0.000000,0.250000,0,0);}
.mdb_c01279{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01279{transform:matrix(0.112225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112225,0.000000,0.000000,0.250000,0,0);}
.m64_c01279{transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);}
.mcb_c01279{transform:matrix(0.114325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114325,0.000000,0.000000,0.250000,0,0);}
.m135_c01279{transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114650,0.000000,0.000000,0.250000,0,0);}
.m177_c01279{transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);}
.m2c_c01279{transform:matrix(0.118650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118650,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01279{transform:matrix(0.119425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119425,0.000000,0.000000,0.250000,0,0);}
.m16a_c01279{transform:matrix(0.120825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120825,0.000000,0.000000,0.250000,0,0);}
.m169_c01279{transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);}
.ma7_c01279{transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);}
.ma4_c01279{transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);}
.m12b_c01279{transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);}
.m57_c01279{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01279{transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);}
.mbf_c01279{transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);}
.m55_c01279{transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);}
.mb2_c01279{transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01279{transform:matrix(0.130275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130275,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01279{transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);}
.m1f_c01279{transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);}
.m189_c01279{transform:matrix(0.131225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131225,0.000000,0.000000,0.250000,0,0);}
.m191_c01279{transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);}
.m21c_c01279{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);}
.m186_c01279{transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);}
.m63_c01279{transform:matrix(0.131950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131950,0.000000,0.000000,0.250000,0,0);}
.m5b_c01279{transform:matrix(0.131975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131975,0.000000,0.000000,0.250000,0,0);}
.m95_c01279{transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);}
.mc5_c01279{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);}
.m1cc_c01279{transform:matrix(0.133200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133200,0.000000,0.000000,0.250000,0,0);}
.m209_c01279{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.m93_c01279{transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);}
.m14_c01279{transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01279{transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);}
.m12a_c01279{transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);}
.mf_c01279{transform:matrix(0.135975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135975,0.000000,0.000000,0.250000,0,0);}
.me7_c01279{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m6a_c01279{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01279{transform:matrix(0.137425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137425,0.000000,0.000000,0.250000,0,0);}
.md5_c01279{transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137825,0.000000,0.000000,0.250000,0,0);}
.m2e_c01279{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);}
.m13_c01279{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);}
.mca_c01279{transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);}
.m9a_c01279{transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);}
.ma8_c01279{transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);}
.m4a_c01279{transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);}
.mc_c01279{transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);}
.m7f_c01279{transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01279{transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);}
.m19b_c01279{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m37_c01279{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m5e_c01279{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);}
.mef_c01279{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m5_c01279{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.m52_c01279{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m94_c01279{transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);}
.m89_c01279{transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);}
.m185_c01279{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);}
.m21d_c01279{transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);}
.m159_c01279{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.m1f0_c01279{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.m1ea_c01279{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m71_c01279{transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);}
.m1f4_c01279{transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);}
.m19_c01279{transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);}
.md1_c01279{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);}
.m30_c01279{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m17c_c01279{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01279{transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01279{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.m7b_c01279{transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);}
.m129_c01279{transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);}
.m125_c01279{transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);}
.m59_c01279{transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);}
.mf3_c01279{transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);}
.m205_c01279{transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);}
.m15f_c01279{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01279{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);}
.mb3_c01279{transform:matrix(0.153575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153575,0.000000,0.000000,0.250000,0,0);}
.m121_c01279{transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);}
.mcc_c01279{transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);}
.m3e_c01279{transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01279{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);}
.m15a_c01279{transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);}
.m174_c01279{transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01279{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m34_c01279{transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);}
.mbe_c01279{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.m3d_c01279{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.m11_c01279{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m179_c01279{transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01279{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);}
.m1ef_c01279{transform:matrix(0.157600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157600,0.000000,0.000000,0.250000,0,0);}
.m139_c01279{transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);}
.m19c_c01279{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.m69_c01279{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);}
.m157_c01279{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01279{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);}
.m32_c01279{transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01279{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01279{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m1e8_c01279{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m199_c01279{transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01279{transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);}
.mde_c01279{transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);}
.m17b_c01279{transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);}
.m1ee_c01279{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.m9e_c01279{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01279{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.m160_c01279{transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);}
.m2b_c01279{transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);}
.m188_c01279{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);}
.m1f8_c01279{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.m19f_c01279{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m42_c01279{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);}
.m161_c01279{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.m15b_c01279{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);}
.m217_c01279{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01279{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m1e_c01279{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m72_c01279{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01279{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.m225_c01279{transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165675,0.000000,0.000000,0.250000,0,0);}
.mba_c01279{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m203_c01279{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m11a_c01279{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01279{transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);}
.m190_c01279{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.m132_c01279{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m153_c01279{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mf4_c01279{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m166_c01279{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.m17_c01279{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01279{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m20a_c01279{transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);}
.m173_c01279{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);}
.m184_c01279{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01279{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.m9b_c01279{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.m151_c01279{transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);}
.m21f_c01279{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.m45_c01279{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);}
.m10e_c01279{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.mb4_c01279{transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);}
.m192_c01279{transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);}
.m1de_c01279{transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);}
.m54_c01279{transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);}
.m178_c01279{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);}
.mf9_c01279{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.ma3_c01279{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.m13e_c01279{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);}
.mf5_c01279{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m15d_c01279{transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);}
.m1f9_c01279{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);}
.m20f_c01279{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);}
.m9c_c01279{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.m112_c01279{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.m219_c01279{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);}
.m1bc_c01279{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.m156_c01279{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m163_c01279{transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);}
.m128_c01279{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.m19e_c01279{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);}
.m17d_c01279{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.ma5_c01279{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.m198_c01279{transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);}
.m1fd_c01279{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.mc3_c01279{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.m114_c01279{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.m18a_c01279{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);}
.m21a_c01279{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.me_c01279{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);}
.mbd_c01279{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m77_c01279{transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);}
.m20b_c01279{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);}
.m171_c01279{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m207_c01279{transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);}
.m82_c01279{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m91_c01279{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.m120_c01279{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.m3f_c01279{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m78_c01279{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m1f6_c01279{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);}
.m18e_c01279{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01279{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.mb_c01279{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);}
.m200_c01279{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m170_c01279{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);}
.m210_c01279{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.mc9_c01279{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);}
.m227_c01279{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);}
.m138_c01279{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);}
.m1db_c01279{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m12_c01279{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m33_c01279{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);}
.m103_c01279{transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);}
.m172_c01279{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01279{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);}
.m11e_c01279{transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);}
.m29_c01279{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m206_c01279{transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01279{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m17a_c01279{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);}
.m1a6_c01279{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.mea_c01279{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.mcf_c01279{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);}
.m73_c01279{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);}
.m1ab_c01279{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01279{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.m143_c01279{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m5f_c01279{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m1da_c01279{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m44_c01279{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);}
.m18d_c01279{transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);}
.mf7_c01279{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);}
.m1dc_c01279{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);}
.mbb_c01279{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);}
.m15_c01279{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.mb5_c01279{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);}
.mdf_c01279{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m104_c01279{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);}
.m1dd_c01279{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01279{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.m6d_c01279{transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);}
.m1b_c01279{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);}
.m10_c01279{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);}
.m88_c01279{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01279{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);}
.m196_c01279{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);}
.m1be_c01279{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.m14f_c01279{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);}
.m167_c01279{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);}
.m176_c01279{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);}
.m1ed_c01279{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);}
.m154_c01279{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);}
.m40_c01279{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);}
.m16d_c01279{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m142_c01279{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);}
.md_c01279{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m53_c01279{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);}
.m14b_c01279{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);}
.m150_c01279{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.m20c_c01279{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m13d_c01279{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);}
.m202_c01279{transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);}
.mdc_c01279{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);}
.m8c_c01279{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m118_c01279{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);}
.m218_c01279{transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01279{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.m204_c01279{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m1f7_c01279{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.m36_c01279{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01279{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);}
.m0_c01279{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.m108_c01279{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.m9f_c01279{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.m15e_c01279{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.m155_c01279{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01279{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.m17f_c01279{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);}
.m8f_c01279{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);}
.mda_c01279{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);}
.m182_c01279{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.me5_c01279{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);}
.m5d_c01279{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.mb9_c01279{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m3_c01279{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m60_c01279{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);}
.m18c_c01279{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);}
.m1b5_c01279{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m4f_c01279{transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);}
.m51_c01279{transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);}
.m21e_c01279{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.mec_c01279{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);}
.m4d_c01279{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);}
.m168_c01279{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m197_c01279{transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01279{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m1a_c01279{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);}
.m211_c01279{transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01279{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);}
.m106_c01279{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);}
.m3a_c01279{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m12f_c01279{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.mb1_c01279{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m20e_c01279{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);}
.m9d_c01279{transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);}
.m1eb_c01279{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m11d_c01279{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);}
.m13c_c01279{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);}
.m180_c01279{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m11f_c01279{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);}
.m183_c01279{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m58_c01279{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);}
.m1b8_c01279{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);}
.m92_c01279{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);}
.m16c_c01279{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);}
.m18f_c01279{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.mb6_c01279{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m1e7_c01279{transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);}
.m21b_c01279{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m8b_c01279{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.m158_c01279{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.maa_c01279{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);}
.m1a8_c01279{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);}
.m18b_c01279{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);}
.m3b_c01279{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m4e_c01279{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);}
.m90_c01279{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);}
.m109_c01279{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);}
.m1f2_c01279{transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219425,0.000000,0.000000,0.250000,0,0);}
.m144_c01279{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);}
.m61_c01279{transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);}
.m23_c01279{transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);}
.me4_c01279{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01279{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);}
.mab_c01279{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.m1ff_c01279{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);}
.m14a_c01279{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m187_c01279{transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01279{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);}
.m162_c01279{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);}
.m194_c01279{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);}
.m49_c01279{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m13a_c01279{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m39_c01279{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01279{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.mc7_c01279{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);}
.m1b3_c01279{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);}
.m1e6_c01279{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);}
.m122_c01279{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m101_c01279{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.m7_c01279{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.m1c_c01279{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);}
.m41_c01279{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);}
.m130_c01279{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);}
.m228_c01279{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m124_c01279{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);}
.m84_c01279{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);}
.m79_c01279{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m13b_c01279{transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);}
.m8a_c01279{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);}
.m66_c01279{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);}
.m149_c01279{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);}
.m145_c01279{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);}
.ma0_c01279{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);}
.mf6_c01279{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01279{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.me3_c01279{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);}
.m107_c01279{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.mf2_c01279{transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);}
.m28_c01279{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);}
.ma2_c01279{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m102_c01279{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);}
.m43_c01279{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);}
.m127_c01279{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);}
.m47_c01279{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);}
.m1e1_c01279{transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);}
.m19d_c01279{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);}
.m221_c01279{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);}
.m6_c01279{transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);}
.m193_c01279{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);}
.me6_c01279{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);}
.m1d_c01279{transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);}
.mdd_c01279{transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239675,0.000000,0.000000,0.250000,0,0);}
.m4b_c01279{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m16b_c01279{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m87_c01279{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);}
.m1aa_c01279{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01279{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);}
.m6e_c01279{transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);}
.m226_c01279{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);}
.m20d_c01279{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.m22a_c01279{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);}
.m7a_c01279{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.mc4_c01279{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);}
.m13f_c01279{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);}
.meb_c01279{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.m1f5_c01279{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);}
.m113_c01279{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);}
.m1d7_c01279{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);}
.m1f3_c01279{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);}
.m1bb_c01279{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m141_c01279{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);}
.m147_c01279{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);}
.m1c2_c01279{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m1fa_c01279{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m119_c01279{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);}
.m1ba_c01279{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);}
.m131_c01279{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.m105_c01279{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);}
.m201_c01279{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);}
.m65_c01279{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01279{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m86_c01279{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m8_c01279{transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249675,0.000000,0.000000,0.250000,0,0);}
.m15c_c01279{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m16_c01279{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);}
.m2_c01279{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01279{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);}
.m164_c01279{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);}
.m8d_c01279{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);}
.m68_c01279{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);}
.m7e_c01279{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c01279{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01279{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m24_c01279{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);}
.m14c_c01279{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m25_c01279{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);}
.m35_c01279{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_c01279{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m21_c01279{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);}
.m2f_c01279{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c01279{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m48_c01279{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);}
.m6c_c01279{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16f_c01279{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);}
.m26_c01279{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);}
.m7d_c01279{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.md6_c01279{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb0_c01279{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);}
.m83_c01279{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md3_c01279{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1_c01279{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);}
.m76_c01279{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md7_c01279{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c01279{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m148_c01279{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c01279{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m62_c01279{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m20_c01279{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m137_c01279{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);}
.m85_c01279{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma1_c01279{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mc6_c01279{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01279{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);}
.m215_c01279{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01279{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mae_c01279{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);}
.md8_c01279{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mfa_c01279{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m46_c01279{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.me9_c01279{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01279{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mff_c01279{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);}
.m4c_c01279{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m16e_c01279{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mcd_c01279{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m165_c01279{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m70_c01279{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);}
.m100_c01279{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01279{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mc8_c01279{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m97_c01279{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m80_c01279{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);}
.me1_c01279{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);}
.m140_c01279{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mac_c01279{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m195_c01279{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);}
.m1ae_c01279{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m74_c01279{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m56_c01279{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.med_c01279{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m152_c01279{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.md4_c01279{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);}
.m213_c01279{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m229_c01279{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m10f_c01279{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m10b_c01279{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mc1_c01279{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m116_c01279{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m27_c01279{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m212_c01279{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.me8_c01279{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m222_c01279{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m14e_c01279{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01279{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);}
.m98_c01279{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);}
.mc0_c01279{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m224_c01279{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m50_c01279{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01279{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_c01279{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1af_c01279{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m136_c01279{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mfd_c01279{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m134_c01279{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m67_c01279{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m117_c01279{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);}
.mbc_c01279{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m96_c01279{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m12e_c01279{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.maf_c01279{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01279{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m220_c01279{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m123_c01279{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m10a_c01279{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m75_c01279{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mfe_c01279{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m1f1_c01279{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m223_c01279{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.m110_c01279{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01279{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01279{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.me0_c01279{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m115_c01279{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.mb7_c01279{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01279{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mfb_c01279{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m14d_c01279{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);}
.m1e4_c01279{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m11b_c01279{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m175_c01279{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);}
.m81_c01279{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m216_c01279{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.m10d_c01279{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.me2_c01279{transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);}
.m12d_c01279{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1df_c01279{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);}
.mf8_c01279{transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01279{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.mad_c01279{transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);}
.md0_c01279{transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);}
.m1fc_c01279{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m12c_c01279{transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);}
.m1fe_c01279{transform:matrix(1.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.415000,0.000000,0.000000,0.250000,0,0);}
.md9_c01279{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m1fb_c01279{transform:matrix(1.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.527500,0.000000,0.000000,0.250000,0,0);}
.m214_c01279{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m111_c01279{transform:matrix(3.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.217500,0.000000,0.000000,0.250000,0,0);}
.m10c_c01279{transform:matrix(3.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.225000,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01279{transform:matrix(4.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.595000,0.000000,0.000000,0.250000,0,0);}
.md2_c01279{transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);}
.mfc_c01279{transform:matrix(7.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.200000,0.000000,0.000000,0.250000,0,0);}
.v2_c01279{vertical-align:-13.860000px;}
.v3_c01279{vertical-align:-3.480000px;}
.v0_c01279{vertical-align:0.000000px;}
.v4_c01279{vertical-align:3.420000px;}
.v1_c01279{vertical-align:10.380000px;}
.ls3_c01279{letter-spacing:0.000000px;}
.ls2_c01279{letter-spacing:9.578640px;}
.ls1_c01279{letter-spacing:28.272000px;}
.ls0_c01279{letter-spacing:722.219067px;}
.sc__c01279{text-shadow:none;}
.sc0_c01279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01279{-webkit-text-stroke:0px transparent;}
.sc0_c01279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01279{word-spacing:-20.148480px;}
.ws2_c01279{word-spacing:-10.572457px;}
.ws3_c01279{word-spacing:0.000000px;}
.ws0_c01279{word-spacing:193.225800px;}
._0_c01279{width:3.842160px;}
.fc0_c01279{color:transparent;}
.fs8_c01279{font-size:3.456000px;}
.fs14_c01279{font-size:6.000000px;}
.fs19_c01279{font-size:6.900000px;}
.fs15_c01279{font-size:10.380000px;}
.fs11_c01279{font-size:13.800000px;}
.fs1c_c01279{font-size:17.280000px;}
.fs1d_c01279{font-size:20.760000px;}
.fs1a_c01279{font-size:24.180000px;}
.fs16_c01279{font-size:27.660000px;}
.fs17_c01279{font-size:31.080000px;}
.fs10_c01279{font-size:34.560000px;}
.fs1b_c01279{font-size:38.040000px;}
.fs21_c01279{font-size:41.460000px;}
.fs18_c01279{font-size:44.940000px;}
.fs4_c01279{font-size:48.360000px;}
.fs13_c01279{font-size:51.840000px;}
.fs7_c01279{font-size:55.320000px;}
.fs1_c01279{font-size:58.740000px;}
.fs3_c01279{font-size:62.220000px;}
.fs12_c01279{font-size:65.640000px;}
.fs2_c01279{font-size:69.120000px;}
.fsf_c01279{font-size:72.600000px;}
.fs5_c01279{font-size:76.020000px;}
.fs6_c01279{font-size:79.500000px;}
.fs0_c01279{font-size:82.920000px;}
.fse_c01279{font-size:86.400000px;}
.fsc_c01279{font-size:89.880000px;}
.fsa_c01279{font-size:93.300000px;}
.fsb_c01279{font-size:96.780000px;}
.fs9_c01279{font-size:100.200000px;}
.fsd_c01279{font-size:103.680000px;}
.fs22_c01279{font-size:107.160000px;}
.fs1f_c01279{font-size:110.580000px;}
.fs20_c01279{font-size:117.480000px;}
.fs1e_c01279{font-size:127.860000px;}
.y0_c01279{bottom:0.000000px;}
.y24d_c01279{bottom:140.835000px;}
.y24c_c01279{bottom:146.880000px;}
.y24b_c01279{bottom:148.605000px;}
.y24e_c01279{bottom:153.795000px;}
.y24a_c01279{bottom:155.520000px;}
.y246_c01279{bottom:157.245000px;}
.y248_c01279{bottom:158.115000px;}
.y244_c01279{bottom:161.565000px;}
.y247_c01279{bottom:163.290000px;}
.y241_c01279{bottom:164.160000px;}
.y245_c01279{bottom:165.030000px;}
.y249_c01279{bottom:165.885000px;}
.y242_c01279{bottom:167.610000px;}
.y23f_c01279{bottom:171.930000px;}
.y240_c01279{bottom:175.395000px;}
.y239_c01279{bottom:176.250000px;}
.y23d_c01279{bottom:177.990000px;}
.y243_c01279{bottom:178.845000px;}
.y23e_c01279{bottom:179.715000px;}
.y23b_c01279{bottom:180.570000px;}
.y237_c01279{bottom:181.440000px;}
.y23a_c01279{bottom:182.310000px;}
.y23c_c01279{bottom:183.165000px;}
.y238_c01279{bottom:184.035000px;}
.y235_c01279{bottom:184.890000px;}
.y236_c01279{bottom:185.760000px;}
.y234_c01279{bottom:186.630000px;}
.y232_c01279{bottom:191.805000px;}
.y233_c01279{bottom:192.675000px;}
.y22e_c01279{bottom:194.400000px;}
.y231_c01279{bottom:195.270000px;}
.y230_c01279{bottom:196.125000px;}
.y22f_c01279{bottom:198.720000px;}
.y22b_c01279{bottom:203.040000px;}
.y22c_c01279{bottom:204.765000px;}
.y22a_c01279{bottom:208.230000px;}
.y228_c01279{bottom:209.955000px;}
.y222_c01279{bottom:211.680000px;}
.y229_c01279{bottom:212.550000px;}
.y225_c01279{bottom:213.405000px;}
.y22d_c01279{bottom:214.275000px;}
.y224_c01279{bottom:216.000000px;}
.y227_c01279{bottom:216.870000px;}
.y21f_c01279{bottom:217.725000px;}
.y223_c01279{bottom:218.595000px;}
.y226_c01279{bottom:219.450000px;}
.y220_c01279{bottom:220.320000px;}
.y221_c01279{bottom:223.770000px;}
.y21e_c01279{bottom:224.640000px;}
.y21c_c01279{bottom:225.510000px;}
.y219_c01279{bottom:226.365000px;}
.y218_c01279{bottom:227.235000px;}
.y21d_c01279{bottom:228.090000px;}
.y21a_c01279{bottom:228.960000px;}
.y21b_c01279{bottom:232.410000px;}
.y216_c01279{bottom:233.280000px;}
.y214_c01279{bottom:235.005000px;}
.y215_c01279{bottom:236.730000px;}
.y213_c01279{bottom:238.470000px;}
.y212_c01279{bottom:240.195000px;}
.y20f_c01279{bottom:242.790000px;}
.y20e_c01279{bottom:245.370000px;}
.y217_c01279{bottom:246.240000px;}
.y211_c01279{bottom:247.965000px;}
.y20c_c01279{bottom:248.835000px;}
.y209_c01279{bottom:249.690000px;}
.y210_c01279{bottom:250.560000px;}
.y20d_c01279{bottom:251.430000px;}
.y20b_c01279{bottom:253.155000px;}
.y207_c01279{bottom:254.010000px;}
.y205_c01279{bottom:254.880000px;}
.y20a_c01279{bottom:257.475000px;}
.y208_c01279{bottom:258.330000px;}
.y204_c01279{bottom:260.070000px;}
.y206_c01279{bottom:260.925000px;}
.y202_c01279{bottom:265.245000px;}
.y203_c01279{bottom:266.115000px;}
.y200_c01279{bottom:267.840000px;}
.y1ff_c01279{bottom:268.710000px;}
.y201_c01279{bottom:270.435000px;}
.y1fd_c01279{bottom:271.290000px;}
.y1fe_c01279{bottom:272.160000px;}
.y1fa_c01279{bottom:274.755000px;}
.y1fb_c01279{bottom:277.350000px;}
.y1fc_c01279{bottom:278.205000px;}
.y1f9_c01279{bottom:279.075000px;}
.y1f8_c01279{bottom:282.525000px;}
.y1f4_c01279{bottom:292.035000px;}
.y1f5_c01279{bottom:295.485000px;}
.y1f7_c01279{bottom:296.355000px;}
.y1f6_c01279{bottom:298.080000px;}
.y1f3_c01279{bottom:301.530000px;}
.y1f2_c01279{bottom:304.125000px;}
.y1f1_c01279{bottom:309.315000px;}
.y1f0_c01279{bottom:310.170000px;}
.y1ee_c01279{bottom:311.910000px;}
.y1ed_c01279{bottom:315.360000px;}
.y1ef_c01279{bottom:317.085000px;}
.y1ec_c01279{bottom:318.810000px;}
.y1eb_c01279{bottom:323.130000px;}
.y1ea_c01279{bottom:324.870000px;}
.y1e8_c01279{bottom:325.725000px;}
.y1e7_c01279{bottom:326.595000px;}
.y1e5_c01279{bottom:331.770000px;}
.y1e4_c01279{bottom:333.510000px;}
.y1e1_c01279{bottom:336.090000px;}
.y1e2_c01279{bottom:337.830000px;}
.y1e9_c01279{bottom:339.555000px;}
.y1e6_c01279{bottom:340.410000px;}
.y1e0_c01279{bottom:344.730000px;}
.y1de_c01279{bottom:346.470000px;}
.y1dd_c01279{bottom:348.195000px;}
.y1df_c01279{bottom:350.790000px;}
.y1e3_c01279{bottom:353.370000px;}
.y1d8_c01279{bottom:354.240000px;}
.y1d9_c01279{bottom:357.690000px;}
.y1dc_c01279{bottom:362.010000px;}
.y1db_c01279{bottom:363.750000px;}
.y1d4_c01279{bottom:368.925000px;}
.y1da_c01279{bottom:370.650000px;}
.y1d5_c01279{bottom:371.520000px;}
.y1d7_c01279{bottom:372.390000px;}
.y1d2_c01279{bottom:373.245000px;}
.y1d1_c01279{bottom:374.970000px;}
.y1d3_c01279{bottom:377.565000px;}
.y1cf_c01279{bottom:378.435000px;}
.y1ce_c01279{bottom:381.030000px;}
.y1d6_c01279{bottom:381.885000px;}
.y1d0_c01279{bottom:382.755000px;}
.y1cd_c01279{bottom:383.610000px;}
.y1cb_c01279{bottom:387.930000px;}
.y1ca_c01279{bottom:389.670000px;}
.y1cc_c01279{bottom:391.395000px;}
.y1c9_c01279{bottom:392.250000px;}
.y1c8_c01279{bottom:393.990000px;}
.y1c6_c01279{bottom:395.715000px;}
.y1c5_c01279{bottom:398.310000px;}
.y1c7_c01279{bottom:400.035000px;}
.y1c4_c01279{bottom:403.485000px;}
.y1bf_c01279{bottom:406.080000px;}
.y1c2_c01279{bottom:406.950000px;}
.y1c1_c01279{bottom:407.805000px;}
.y1be_c01279{bottom:409.530000px;}
.y1c3_c01279{bottom:410.400000px;}
.y1bc_c01279{bottom:411.270000px;}
.y1bd_c01279{bottom:412.125000px;}
.y1c0_c01279{bottom:412.995000px;}
.y1b9_c01279{bottom:413.850000px;}
.y1bb_c01279{bottom:414.720000px;}
.y1b8_c01279{bottom:415.590000px;}
.y1b7_c01279{bottom:417.315000px;}
.y1ba_c01279{bottom:418.170000px;}
.y1b6_c01279{bottom:419.040000px;}
.y1b5_c01279{bottom:419.910000px;}
.y1b2_c01279{bottom:420.765000px;}
.y1b1_c01279{bottom:422.490000px;}
.y1b3_c01279{bottom:423.360000px;}
.y1ae_c01279{bottom:425.085000px;}
.y1ad_c01279{bottom:425.955000px;}
.y1b0_c01279{bottom:428.550000px;}
.y1af_c01279{bottom:432.870000px;}
.y1ac_c01279{bottom:434.595000px;}
.y1ab_c01279{bottom:435.450000px;}
.y1b4_c01279{bottom:439.770000px;}
.y1aa_c01279{bottom:444.960000px;}
.y1a8_c01279{bottom:447.555000px;}
.y1a9_c01279{bottom:451.875000px;}
.y1a5_c01279{bottom:453.600000px;}
.y1a4_c01279{bottom:454.470000px;}
.y1a7_c01279{bottom:455.325000px;}
.y1a1_c01279{bottom:457.050000px;}
.y1a6_c01279{bottom:458.790000px;}
.y1a2_c01279{bottom:459.645000px;}
.y1a3_c01279{bottom:463.110000px;}
.y1a0_c01279{bottom:465.690000px;}
.y19f_c01279{bottom:466.560000px;}
.y19e_c01279{bottom:472.605000px;}
.y19c_c01279{bottom:473.475000px;}
.y19d_c01279{bottom:474.330000px;}
.y199_c01279{bottom:476.925000px;}
.y19b_c01279{bottom:478.650000px;}
.y198_c01279{bottom:480.390000px;}
.y19a_c01279{bottom:483.840000px;}
.y196_c01279{bottom:488.160000px;}
.y194_c01279{bottom:489.885000px;}
.y197_c01279{bottom:490.755000px;}
.y192_c01279{bottom:497.670000px;}
.y193_c01279{bottom:503.715000px;}
.y191_c01279{bottom:506.310000px;}
.y195_c01279{bottom:508.035000px;}
.y18f_c01279{bottom:508.890000px;}
.y190_c01279{bottom:509.760000px;}
.y18c_c01279{bottom:513.210000px;}
.y18e_c01279{bottom:514.080000px;}
.y18b_c01279{bottom:514.950000px;}
.y18a_c01279{bottom:515.805000px;}
.y18d_c01279{bottom:517.530000px;}
.y189_c01279{bottom:527.040000px;}
.y188_c01279{bottom:530.490000px;}
.y183_c01279{bottom:533.955000px;}
.y187_c01279{bottom:534.810000px;}
.y186_c01279{bottom:535.680000px;}
.y182_c01279{bottom:538.275000px;}
.y185_c01279{bottom:540.000000px;}
.y184_c01279{bottom:540.870000px;}
.y181_c01279{bottom:547.770000px;}
.y180_c01279{bottom:552.090000px;}
.y17f_c01279{bottom:552.960000px;}
.y17e_c01279{bottom:554.685000px;}
.y17d_c01279{bottom:558.150000px;}
.y17c_c01279{bottom:563.325000px;}
.y17b_c01279{bottom:572.835000px;}
.y178_c01279{bottom:577.155000px;}
.y17a_c01279{bottom:578.880000px;}
.y179_c01279{bottom:582.330000px;}
.y177_c01279{bottom:588.390000px;}
.y175_c01279{bottom:590.115000px;}
.y174_c01279{bottom:591.840000px;}
.y176_c01279{bottom:593.565000px;}
.y173_c01279{bottom:594.435000px;}
.y171_c01279{bottom:595.290000px;}
.y170_c01279{bottom:596.160000px;}
.y16d_c01279{bottom:598.755000px;}
.y16e_c01279{bottom:600.480000px;}
.y16c_c01279{bottom:602.205000px;}
.y16f_c01279{bottom:603.075000px;}
.y16b_c01279{bottom:607.395000px;}
.y172_c01279{bottom:608.250000px;}
.y166_c01279{bottom:614.310000px;}
.y16a_c01279{bottom:615.165000px;}
.y160_c01279{bottom:616.890000px;}
.y168_c01279{bottom:618.630000px;}
.y169_c01279{bottom:619.485000px;}
.y167_c01279{bottom:620.355000px;}
.y164_c01279{bottom:621.210000px;}
.y163_c01279{bottom:622.080000px;}
.y162_c01279{bottom:622.950000px;}
.y161_c01279{bottom:623.805000px;}
.y15f_c01279{bottom:624.675000px;}
.y165_c01279{bottom:625.530000px;}
.y15c_c01279{bottom:631.590000px;}
.y15b_c01279{bottom:632.445000px;}
.y15d_c01279{bottom:634.170000px;}
.y15e_c01279{bottom:635.040000px;}
.y15a_c01279{bottom:635.910000px;}
.y159_c01279{bottom:637.635000px;}
.y158_c01279{bottom:638.490000px;}
.y156_c01279{bottom:640.230000px;}
.y157_c01279{bottom:643.680000px;}
.y155_c01279{bottom:651.450000px;}
.y153_c01279{bottom:652.320000px;}
.y152_c01279{bottom:653.190000px;}
.y151_c01279{bottom:654.915000px;}
.y14e_c01279{bottom:657.510000px;}
.y14d_c01279{bottom:659.235000px;}
.y14f_c01279{bottom:660.960000px;}
.y154_c01279{bottom:663.555000px;}
.y14c_c01279{bottom:665.280000px;}
.y14b_c01279{bottom:666.150000px;}
.y14a_c01279{bottom:672.195000px;}
.y148_c01279{bottom:673.050000px;}
.y147_c01279{bottom:673.920000px;}
.y150_c01279{bottom:674.790000px;}
.y149_c01279{bottom:675.645000px;}
.y142_c01279{bottom:677.370000px;}
.y146_c01279{bottom:678.240000px;}
.y145_c01279{bottom:679.110000px;}
.y141_c01279{bottom:679.965000px;}
.y144_c01279{bottom:680.835000px;}
.y143_c01279{bottom:681.690000px;}
.y13f_c01279{bottom:683.430000px;}
.y13e_c01279{bottom:684.285000px;}
.y140_c01279{bottom:685.155000px;}
.y13d_c01279{bottom:691.200000px;}
.y13c_c01279{bottom:692.925000px;}
.y13b_c01279{bottom:693.795000px;}
.y13a_c01279{bottom:697.245000px;}
.y137_c01279{bottom:698.115000px;}
.y138_c01279{bottom:698.970000px;}
.y136_c01279{bottom:699.840000px;}
.y134_c01279{bottom:700.710000px;}
.y139_c01279{bottom:701.565000px;}
.y132_c01279{bottom:712.800000px;}
.y135_c01279{bottom:714.525000px;}
.y131_c01279{bottom:716.250000px;}
.y12e_c01279{bottom:721.440000px;}
.y12c_c01279{bottom:722.310000px;}
.y130_c01279{bottom:723.165000px;}
.y12f_c01279{bottom:724.035000px;}
.y12b_c01279{bottom:724.890000px;}
.y12d_c01279{bottom:725.760000px;}
.y133_c01279{bottom:728.355000px;}
.y12a_c01279{bottom:729.210000px;}
.y128_c01279{bottom:730.950000px;}
.y129_c01279{bottom:732.675000px;}
.y127_c01279{bottom:734.400000px;}
.y124_c01279{bottom:736.995000px;}
.y123_c01279{bottom:737.850000px;}
.y122_c01279{bottom:739.590000px;}
.y125_c01279{bottom:741.315000px;}
.y126_c01279{bottom:743.040000px;}
.y120_c01279{bottom:743.910000px;}
.y121_c01279{bottom:744.765000px;}
.y11d_c01279{bottom:753.405000px;}
.y11c_c01279{bottom:754.275000px;}
.y11a_c01279{bottom:756.870000px;}
.y11e_c01279{bottom:758.595000px;}
.y117_c01279{bottom:759.450000px;}
.y11b_c01279{bottom:760.320000px;}
.y116_c01279{bottom:761.190000px;}
.y11f_c01279{bottom:762.045000px;}
.y119_c01279{bottom:762.915000px;}
.y118_c01279{bottom:763.770000px;}
.y115_c01279{bottom:772.410000px;}
.y113_c01279{bottom:775.875000px;}
.y114_c01279{bottom:776.730000px;}
.y10d_c01279{bottom:777.600000px;}
.y107_c01279{bottom:778.470000px;}
.y111_c01279{bottom:779.325000px;}
.y112_c01279{bottom:780.195000px;}
.y10f_c01279{bottom:781.050000px;}
.y108_c01279{bottom:782.790000px;}
.y110_c01279{bottom:784.515000px;}
.y10e_c01279{bottom:785.370000px;}
.y10c_c01279{bottom:786.240000px;}
.y10a_c01279{bottom:787.110000px;}
.y106_c01279{bottom:787.965000px;}
.y10b_c01279{bottom:788.835000px;}
.y109_c01279{bottom:791.430000px;}
.y102_c01279{bottom:792.285000px;}
.y100_c01279{bottom:793.155000px;}
.y104_c01279{bottom:794.010000px;}
.y103_c01279{bottom:794.880000px;}
.yfe_c01279{bottom:795.750000px;}
.yff_c01279{bottom:797.475000px;}
.y101_c01279{bottom:798.330000px;}
.y105_c01279{bottom:799.200000px;}
.yfd_c01279{bottom:800.925000px;}
.yfc_c01279{bottom:801.795000px;}
.yfb_c01279{bottom:802.650000px;}
.yf8_c01279{bottom:804.390000px;}
.yf9_c01279{bottom:805.245000px;}
.yfa_c01279{bottom:807.840000px;}
.yf6_c01279{bottom:808.710000px;}
.yf7_c01279{bottom:810.435000px;}
.yf5_c01279{bottom:813.030000px;}
.yf3_c01279{bottom:813.885000px;}
.yf2_c01279{bottom:814.755000px;}
.yf4_c01279{bottom:816.480000px;}
.yf0_c01279{bottom:817.350000px;}
.yf1_c01279{bottom:818.205000px;}
.yef_c01279{bottom:819.075000px;}
.yeb_c01279{bottom:819.930000px;}
.yee_c01279{bottom:823.395000px;}
.ye6_c01279{bottom:825.120000px;}
.ye7_c01279{bottom:825.990000px;}
.ye9_c01279{bottom:826.845000px;}
.yed_c01279{bottom:827.715000px;}
.ye8_c01279{bottom:828.570000px;}
.yec_c01279{bottom:829.440000px;}
.yea_c01279{bottom:830.310000px;}
.ye4_c01279{bottom:831.165000px;}
.ye3_c01279{bottom:835.485000px;}
.ye1_c01279{bottom:836.355000px;}
.ydf_c01279{bottom:838.080000px;}
.yde_c01279{bottom:839.805000px;}
.ye5_c01279{bottom:840.675000px;}
.ye0_c01279{bottom:841.530000px;}
.ydd_c01279{bottom:843.270000px;}
.ye2_c01279{bottom:846.720000px;}
.yd4_c01279{bottom:850.170000px;}
.yd8_c01279{bottom:852.765000px;}
.yd7_c01279{bottom:853.635000px;}
.ydb_c01279{bottom:854.490000px;}
.yda_c01279{bottom:857.085000px;}
.yd5_c01279{bottom:859.680000px;}
.yd9_c01279{bottom:860.550000px;}
.yd1_c01279{bottom:861.405000px;}
.yd6_c01279{bottom:863.130000px;}
.yd3_c01279{bottom:864.000000px;}
.yd2_c01279{bottom:864.870000px;}
.ydc_c01279{bottom:873.510000px;}
.ycd_c01279{bottom:878.685000px;}
.ycb_c01279{bottom:879.555000px;}
.yd0_c01279{bottom:882.150000px;}
.yca_c01279{bottom:883.005000px;}
.ycc_c01279{bottom:883.875000px;}
.yce_c01279{bottom:889.920000px;}
.ycf_c01279{bottom:893.370000px;}
.yc9_c01279{bottom:899.430000px;}
.yc6_c01279{bottom:900.285000px;}
.yc8_c01279{bottom:901.155000px;}
.yc4_c01279{bottom:902.010000px;}
.yc7_c01279{bottom:902.880000px;}
.yc5_c01279{bottom:903.750000px;}
.yc3_c01279{bottom:914.115000px;}
.yc2_c01279{bottom:914.970000px;}
.yc1_c01279{bottom:917.565000px;}
.yc0_c01279{bottom:918.435000px;}
.ybf_c01279{bottom:920.160000px;}
.ybc_c01279{bottom:921.885000px;}
.yb9_c01279{bottom:922.755000px;}
.yb8_c01279{bottom:923.610000px;}
.ybd_c01279{bottom:924.480000px;}
.ybb_c01279{bottom:925.350000px;}
.yba_c01279{bottom:927.075000px;}
.yb7_c01279{bottom:927.930000px;}
.ybe_c01279{bottom:928.800000px;}
.yb6_c01279{bottom:929.670000px;}
.yb0_c01279{bottom:939.165000px;}
.yb2_c01279{bottom:940.035000px;}
.yad_c01279{bottom:940.890000px;}
.yb1_c01279{bottom:942.630000px;}
.yae_c01279{bottom:946.080000px;}
.yb5_c01279{bottom:949.530000px;}
.yb3_c01279{bottom:950.400000px;}
.ya9_c01279{bottom:952.995000px;}
.yb4_c01279{bottom:953.850000px;}
.yaa_c01279{bottom:955.590000px;}
.yaf_c01279{bottom:956.445000px;}
.ya6_c01279{bottom:957.315000px;}
.yab_c01279{bottom:958.170000px;}
.ya8_c01279{bottom:959.040000px;}
.ya4_c01279{bottom:960.765000px;}
.yac_c01279{bottom:962.490000px;}
.ya7_c01279{bottom:964.230000px;}
.ya5_c01279{bottom:965.085000px;}
.ya3_c01279{bottom:966.810000px;}
.y9d_c01279{bottom:972.000000px;}
.y9f_c01279{bottom:972.870000px;}
.ya0_c01279{bottom:973.725000px;}
.ya1_c01279{bottom:974.595000px;}
.ya2_c01279{bottom:976.320000px;}
.y9a_c01279{bottom:978.915000px;}
.y9c_c01279{bottom:980.640000px;}
.y98_c01279{bottom:981.510000px;}
.y99_c01279{bottom:982.365000px;}
.y9e_c01279{bottom:983.235000px;}
.y9b_c01279{bottom:984.960000px;}
.y97_c01279{bottom:985.830000px;}
.y95_c01279{bottom:994.470000px;}
.y96_c01279{bottom:995.325000px;}
.y93_c01279{bottom:997.050000px;}
.y91_c01279{bottom:998.790000px;}
.y94_c01279{bottom:1000.515000px;}
.y8d_c01279{bottom:1001.370000px;}
.y8f_c01279{bottom:1002.240000px;}
.y90_c01279{bottom:1003.965000px;}
.y92_c01279{bottom:1004.835000px;}
.y8e_c01279{bottom:1006.560000px;}
.y8c_c01279{bottom:1008.285000px;}
.y8a_c01279{bottom:1010.010000px;}
.y88_c01279{bottom:1011.750000px;}
.y89_c01279{bottom:1012.605000px;}
.y87_c01279{bottom:1013.475000px;}
.y86_c01279{bottom:1014.330000px;}
.y8b_c01279{bottom:1015.200000px;}
.y81_c01279{bottom:1018.650000px;}
.y84_c01279{bottom:1019.520000px;}
.y82_c01279{bottom:1021.245000px;}
.y80_c01279{bottom:1022.115000px;}
.y83_c01279{bottom:1022.970000px;}
.y85_c01279{bottom:1024.710000px;}
.y7c_c01279{bottom:1032.480000px;}
.y7f_c01279{bottom:1034.205000px;}
.y7d_c01279{bottom:1035.075000px;}
.y7e_c01279{bottom:1035.930000px;}
.y77_c01279{bottom:1036.800000px;}
.y79_c01279{bottom:1037.670000px;}
.y72_c01279{bottom:1041.120000px;}
.y74_c01279{bottom:1041.990000px;}
.y76_c01279{bottom:1042.845000px;}
.y7b_c01279{bottom:1043.715000px;}
.y7a_c01279{bottom:1045.440000px;}
.y75_c01279{bottom:1046.310000px;}
.y73_c01279{bottom:1047.165000px;}
.y78_c01279{bottom:1055.805000px;}
.y70_c01279{bottom:1058.400000px;}
.y6e_c01279{bottom:1060.125000px;}
.y6d_c01279{bottom:1060.995000px;}
.y6f_c01279{bottom:1061.850000px;}
.y6b_c01279{bottom:1062.720000px;}
.y71_c01279{bottom:1063.590000px;}
.y6c_c01279{bottom:1067.910000px;}
.y6a_c01279{bottom:1068.765000px;}
.y67_c01279{bottom:1073.955000px;}
.y66_c01279{bottom:1077.405000px;}
.y65_c01279{bottom:1078.275000px;}
.y69_c01279{bottom:1080.000000px;}
.y64_c01279{bottom:1081.725000px;}
.y68_c01279{bottom:1082.595000px;}
.y61_c01279{bottom:1083.450000px;}
.y62_c01279{bottom:1084.320000px;}
.y63_c01279{bottom:1085.190000px;}
.y60_c01279{bottom:1095.555000px;}
.y5f_c01279{bottom:1096.410000px;}
.y5e_c01279{bottom:1099.005000px;}
.y5b_c01279{bottom:1099.875000px;}
.y59_c01279{bottom:1100.730000px;}
.y57_c01279{bottom:1101.600000px;}
.y55_c01279{bottom:1102.470000px;}
.y56_c01279{bottom:1103.325000px;}
.y5c_c01279{bottom:1104.195000px;}
.y5d_c01279{bottom:1105.050000px;}
.y58_c01279{bottom:1105.920000px;}
.y5a_c01279{bottom:1107.645000px;}
.y54_c01279{bottom:1108.515000px;}
.y53_c01279{bottom:1113.690000px;}
.y52_c01279{bottom:1115.430000px;}
.y4e_c01279{bottom:1121.475000px;}
.y51_c01279{bottom:1122.330000px;}
.y4f_c01279{bottom:1123.200000px;}
.y50_c01279{bottom:1124.925000px;}
.y4d_c01279{bottom:1134.435000px;}
.y4b_c01279{bottom:1136.160000px;}
.y4a_c01279{bottom:1137.030000px;}
.y45_c01279{bottom:1139.610000px;}
.y49_c01279{bottom:1140.480000px;}
.y4c_c01279{bottom:1141.350000px;}
.y44_c01279{bottom:1143.075000px;}
.y46_c01279{bottom:1146.525000px;}
.y47_c01279{bottom:1147.395000px;}
.y48_c01279{bottom:1148.250000px;}
.y43_c01279{bottom:1160.355000px;}
.y41_c01279{bottom:1161.210000px;}
.y3f_c01279{bottom:1162.950000px;}
.y3e_c01279{bottom:1163.805000px;}
.y3b_c01279{bottom:1164.675000px;}
.y42_c01279{bottom:1165.530000px;}
.y251_c01279{bottom:1167.270000px;}
.y40_c01279{bottom:1168.125000px;}
.y3c_c01279{bottom:1169.850000px;}
.y3d_c01279{bottom:1170.720000px;}
.y262_c01279{bottom:1175.910000px;}
.y263_c01279{bottom:1176.765000px;}
.y3a_c01279{bottom:1179.360000px;}
.y37_c01279{bottom:1181.955000px;}
.y35_c01279{bottom:1184.550000px;}
.y34_c01279{bottom:1185.405000px;}
.y39_c01279{bottom:1186.275000px;}
.y38_c01279{bottom:1187.130000px;}
.y32_c01279{bottom:1188.000000px;}
.y261_c01279{bottom:1188.870000px;}
.y33_c01279{bottom:1189.725000px;}
.y36_c01279{bottom:1192.320000px;}
.y260_c01279{bottom:1194.045000px;}
.y31_c01279{bottom:1196.640000px;}
.y30_c01279{bottom:1198.365000px;}
.y2f_c01279{bottom:1199.235000px;}
.y2e_c01279{bottom:1201.830000px;}
.y2d_c01279{bottom:1203.555000px;}
.y2a_c01279{bottom:1204.410000px;}
.y2b_c01279{bottom:1205.280000px;}
.y2c_c01279{bottom:1208.730000px;}
.y29_c01279{bottom:1210.470000px;}
.y28_c01279{bottom:1218.240000px;}
.y26_c01279{bottom:1219.110000px;}
.y22_c01279{bottom:1219.965000px;}
.y24_c01279{bottom:1221.690000px;}
.y27_c01279{bottom:1226.880000px;}
.y23_c01279{bottom:1229.475000px;}
.y21_c01279{bottom:1231.200000px;}
.y25_c01279{bottom:1232.925000px;}
.y20_c01279{bottom:1238.970000px;}
.y1f_c01279{bottom:1243.290000px;}
.y1c_c01279{bottom:1246.755000px;}
.y1e_c01279{bottom:1247.610000px;}
.y1b_c01279{bottom:1249.350000px;}
.y1d_c01279{bottom:1250.205000px;}
.y1a_c01279{bottom:1251.930000px;}
.y19_c01279{bottom:1257.990000px;}
.y18_c01279{bottom:1259.715000px;}
.y17_c01279{bottom:1261.440000px;}
.y15_c01279{bottom:1262.310000px;}
.y14_c01279{bottom:1264.890000px;}
.y12_c01279{bottom:1265.760000px;}
.y16_c01279{bottom:1266.630000px;}
.y13_c01279{bottom:1271.805000px;}
.y10_c01279{bottom:1277.850000px;}
.yf_c01279{bottom:1278.720000px;}
.y11_c01279{bottom:1279.590000px;}
.ye_c01279{bottom:1281.315000px;}
.yc_c01279{bottom:1283.040000px;}
.yd_c01279{bottom:1283.910000px;}
.ya_c01279{bottom:1284.765000px;}
.yb_c01279{bottom:1286.490000px;}
.y7_c01279{bottom:1303.770000px;}
.y6_c01279{bottom:1304.640000px;}
.y5_c01279{bottom:1307.235000px;}
.y8_c01279{bottom:1308.090000px;}
.y9_c01279{bottom:1309.830000px;}
.y1_c01279{bottom:1311.555000px;}
.y2_c01279{bottom:1312.410000px;}
.y4_c01279{bottom:1313.280000px;}
.y25f_c01279{bottom:1315.875000px;}
.y3_c01279{bottom:1316.730000px;}
.y253_c01279{bottom:1321.050000px;}
.y255_c01279{bottom:1331.430000px;}
.y25e_c01279{bottom:1334.010000px;}
.y25b_c01279{bottom:1335.750000px;}
.y256_c01279{bottom:1336.605000px;}
.y25d_c01279{bottom:1338.330000px;}
.y254_c01279{bottom:1339.200000px;}
.y25a_c01279{bottom:1340.070000px;}
.y252_c01279{bottom:1346.115000px;}
.y25c_c01279{bottom:1346.970000px;}
.y259_c01279{bottom:1358.205000px;}
.y258_c01279{bottom:1359.075000px;}
.y24f_c01279{bottom:1404.000000px;}
.y250_c01279{bottom:1406.595000px;}
.y257_c01279{bottom:1409.190000px;}
.ha_c01279{height:3.110063px;}
.h16_c01279{height:5.399414px;}
.h1c_c01279{height:6.209326px;}
.h26_c01279{height:8.819414px;}
.h1a_c01279{height:9.340986px;}
.h13_c01279{height:12.418652px;}
.h1f_c01279{height:15.550313px;}
.h20_c01279{height:18.681973px;}
.h17_c01279{height:19.720986px;}
.h1d_c01279{height:21.759639px;}
.h18_c01279{height:24.891299px;}
.h19_c01279{height:27.968965px;}
.h12_c01279{height:31.100625px;}
.h1e_c01279{height:34.232285px;}
.h24_c01279{height:37.309951px;}
.h1b_c01279{height:40.441611px;}
.h6_c01279{height:43.519277px;}
.h15_c01279{height:46.650937px;}
.h9_c01279{height:49.782598px;}
.h3_c01279{height:52.860264px;}
.h5_c01279{height:55.991924px;}
.h14_c01279{height:59.069590px;}
.h4_c01279{height:62.201250px;}
.h11_c01279{height:65.332910px;}
.h7_c01279{height:68.410576px;}
.h8_c01279{height:71.542236px;}
.h2_c01279{height:74.619902px;}
.h10_c01279{height:77.751563px;}
.he_c01279{height:80.883223px;}
.hc_c01279{height:83.960889px;}
.hd_c01279{height:87.092549px;}
.hb_c01279{height:90.170215px;}
.hf_c01279{height:93.301875px;}
.h25_c01279{height:96.433535px;}
.h22_c01279{height:99.511201px;}
.h23_c01279{height:105.720527px;}
.h21_c01279{height:115.061514px;}
.h0_c01279{height:1509.405000px;}
.h1_c01279{height:1509.750000px;}
.w0_c01279{width:1088.640000px;}
.w1_c01279{width:1089.000000px;}
.x0_c01279{left:0.000000px;}
.x128_c01279{left:3.450000px;}
.x122_c01279{left:39.750000px;}
.x123_c01279{left:47.520000px;}
.x125_c01279{left:126.150000px;}
.x126_c01279{left:138.240000px;}
.x124_c01279{left:153.795000px;}
.x12a_c01279{left:169.350000px;}
.x127_c01279{left:175.395000px;}
.xe8_c01279{left:180.570000px;}
.x129_c01279{left:183.165000px;}
.x110_c01279{left:186.630000px;}
.x111_c01279{left:193.530000px;}
.x12b_c01279{left:196.995000px;}
.x105_c01279{left:202.170000px;}
.xe9_c01279{left:204.765000px;}
.x116_c01279{left:206.490000px;}
.xe3_c01279{left:209.955000px;}
.x106_c01279{left:212.550000px;}
.x10b_c01279{left:214.275000px;}
.x6e_c01279{left:217.725000px;}
.xe4_c01279{left:219.450000px;}
.x11c_c01279{left:221.190000px;}
.xe6_c01279{left:222.915000px;}
.x69_c01279{left:225.510000px;}
.xab_c01279{left:228.090000px;}
.x10c_c01279{left:229.830000px;}
.xfa_c01279{left:232.410000px;}
.xc_c01279{left:234.150000px;}
.x38_c01279{left:235.875000px;}
.x1_c01279{left:238.470000px;}
.x117_c01279{left:240.195000px;}
.xc0_c01279{left:243.645000px;}
.x107_c01279{left:246.240000px;}
.x99_c01279{left:249.690000px;}
.xa1_c01279{left:252.285000px;}
.xd_c01279{left:254.880000px;}
.x6a_c01279{left:260.925000px;}
.x17_c01279{left:267.840000px;}
.xca_c01279{left:269.565000px;}
.x76_c01279{left:272.160000px;}
.xd6_c01279{left:273.885000px;}
.x2f_c01279{left:276.480000px;}
.xba_c01279{left:279.930000px;}
.x10a_c01279{left:283.395000px;}
.x28_c01279{left:286.845000px;}
.x6f_c01279{left:289.440000px;}
.x39_c01279{left:291.165000px;}
.x108_c01279{left:292.890000px;}
.x11d_c01279{left:295.485000px;}
.x102_c01279{left:298.080000px;}
.x70_c01279{left:299.805000px;}
.xfe_c01279{left:301.530000px;}
.xa2_c01279{left:303.270000px;}
.x3f_c01279{left:306.720000px;}
.x11f_c01279{left:309.315000px;}
.x52_c01279{left:311.040000px;}
.xc1_c01279{left:315.360000px;}
.xdc_c01279{left:317.955000px;}
.x80_c01279{left:319.680000px;}
.x53_c01279{left:321.405000px;}
.x18_c01279{left:323.130000px;}
.xfb_c01279{left:325.725000px;}
.x4f_c01279{left:327.450000px;}
.x11a_c01279{left:330.045000px;}
.xec_c01279{left:334.365000px;}
.x77_c01279{left:336.960000px;}
.x2_c01279{left:340.410000px;}
.x6b_c01279{left:343.875000px;}
.x44_c01279{left:346.470000px;}
.x5f_c01279{left:349.050000px;}
.xff_c01279{left:352.515000px;}
.xe_c01279{left:355.965000px;}
.x22_c01279{left:359.430000px;}
.x3a_c01279{left:361.155000px;}
.xc6_c01279{left:362.880000px;}
.x19_c01279{left:366.330000px;}
.xdd_c01279{left:368.925000px;}
.xaf_c01279{left:370.650000px;}
.xf6_c01279{left:375.840000px;}
.x60_c01279{left:377.565000px;}
.x103_c01279{left:379.290000px;}
.x40_c01279{left:381.030000px;}
.xd7_c01279{left:382.755000px;}
.x71_c01279{left:385.350000px;}
.x78_c01279{left:388.800000px;}
.x118_c01279{left:390.525000px;}
.x54_c01279{left:392.250000px;}
.x29_c01279{left:394.845000px;}
.x9a_c01279{left:396.570000px;}
.xed_c01279{left:399.165000px;}
.x30_c01279{left:400.890000px;}
.x3_c01279{left:403.485000px;}
.x72_c01279{left:405.210000px;}
.x41_c01279{left:406.950000px;}
.x45_c01279{left:408.675000px;}
.xde_c01279{left:410.400000px;}
.xf_c01279{left:413.850000px;}
.x81_c01279{left:419.040000px;}
.x94_c01279{left:421.635000px;}
.x61_c01279{left:423.360000px;}
.x6c_c01279{left:427.680000px;}
.x1a_c01279{left:430.275000px;}
.x79_c01279{left:432.870000px;}
.x10_c01279{left:435.450000px;}
.x8b_c01279{left:437.190000px;}
.x23_c01279{left:440.640000px;}
.x120_c01279{left:443.235000px;}
.x6d_c01279{left:444.960000px;}
.x82_c01279{left:449.280000px;}
.x3b_c01279{left:454.470000px;}
.x8c_c01279{left:456.195000px;}
.x95_c01279{left:457.920000px;}
.xd3_c01279{left:459.645000px;}
.x113_c01279{left:461.370000px;}
.x55_c01279{left:463.965000px;}
.x83_c01279{left:465.690000px;}
.x42_c01279{left:469.155000px;}
.xe7_c01279{left:471.750000px;}
.xee_c01279{left:473.475000px;}
.x31_c01279{left:475.200000px;}
.xb4_c01279{left:476.925000px;}
.x7a_c01279{left:479.520000px;}
.x46_c01279{left:482.970000px;}
.xf7_c01279{left:484.710000px;}
.x11_c01279{left:487.290000px;}
.x24_c01279{left:489.030000px;}
.x8d_c01279{left:490.755000px;}
.x9b_c01279{left:493.350000px;}
.x32_c01279{left:496.800000px;}
.xa3_c01279{left:499.395000px;}
.x1b_c01279{left:501.990000px;}
.x56_c01279{left:504.570000px;}
.x11e_c01279{left:506.310000px;}
.x62_c01279{left:508.890000px;}
.xa4_c01279{left:511.485000px;}
.x2a_c01279{left:514.080000px;}
.x43_c01279{left:517.530000px;}
.x9c_c01279{left:521.850000px;}
.x104_c01279{left:523.590000px;}
.x47_c01279{left:525.315000px;}
.x10d_c01279{left:527.040000px;}
.x4_c01279{left:532.230000px;}
.x84_c01279{left:534.810000px;}
.x57_c01279{left:536.550000px;}
.xb5_c01279{left:538.275000px;}
.xcb_c01279{left:540.000000px;}
.x96_c01279{left:541.725000px;}
.x58_c01279{left:546.045000px;}
.x7b_c01279{left:547.770000px;}
.x5_c01279{left:550.365000px;}
.x48_c01279{left:552.090000px;}
.xef_c01279{left:553.830000px;}
.xac_c01279{left:555.555000px;}
.x2b_c01279{left:557.280000px;}
.x1c_c01279{left:559.875000px;}
.x63_c01279{left:561.600000px;}
.x12_c01279{left:564.195000px;}
.x50_c01279{left:566.790000px;}
.x33_c01279{left:568.515000px;}
.x6_c01279{left:570.240000px;}
.x49_c01279{left:572.835000px;}
.xdf_c01279{left:575.430000px;}
.xbb_c01279{left:577.155000px;}
.xcc_c01279{left:578.880000px;}
.xea_c01279{left:581.475000px;}
.x85_c01279{left:583.200000px;}
.xeb_c01279{left:586.650000px;}
.x2c_c01279{left:588.390000px;}
.x1d_c01279{left:591.840000px;}
.xd4_c01279{left:594.435000px;}
.xf8_c01279{left:596.160000px;}
.x10e_c01279{left:598.755000px;}
.x25_c01279{left:600.480000px;}
.x9d_c01279{left:603.075000px;}
.x86_c01279{left:605.670000px;}
.x1e_c01279{left:609.120000px;}
.x8e_c01279{left:611.715000px;}
.x7_c01279{left:616.035000px;}
.xfc_c01279{left:618.630000px;}
.xb6_c01279{left:621.210000px;}
.x73_c01279{left:622.950000px;}
.x13_c01279{left:624.675000px;}
.x119_c01279{left:626.400000px;}
.x11b_c01279{left:628.125000px;}
.xb7_c01279{left:630.720000px;}
.x64_c01279{left:633.315000px;}
.xa5_c01279{left:635.040000px;}
.x26_c01279{left:636.765000px;}
.xad_c01279{left:639.360000px;}
.xe0_c01279{left:641.955000px;}
.x34_c01279{left:643.680000px;}
.xf3_c01279{left:645.405000px;}
.xb8_c01279{left:648.000000px;}
.x114_c01279{left:650.595000px;}
.x14_c01279{left:653.190000px;}
.xa6_c01279{left:656.640000px;}
.x7c_c01279{left:660.090000px;}
.xf0_c01279{left:661.830000px;}
.x4a_c01279{left:663.555000px;}
.x8_c01279{left:665.280000px;}
.x87_c01279{left:667.005000px;}
.x9e_c01279{left:669.600000px;}
.x2d_c01279{left:672.195000px;}
.x121_c01279{left:674.790000px;}
.xb0_c01279{left:676.515000px;}
.x3c_c01279{left:678.240000px;}
.x8f_c01279{left:680.835000px;}
.xa7_c01279{left:682.560000px;}
.x65_c01279{left:684.285000px;}
.xd8_c01279{left:687.750000px;}
.x90_c01279{left:689.475000px;}
.x59_c01279{left:692.070000px;}
.x4b_c01279{left:694.650000px;}
.x27_c01279{left:696.390000px;}
.x35_c01279{left:698.970000px;}
.x1f_c01279{left:701.565000px;}
.xf9_c01279{left:704.160000px;}
.xb1_c01279{left:705.885000px;}
.xae_c01279{left:708.480000px;}
.x91_c01279{left:710.205000px;}
.xb9_c01279{left:711.930000px;}
.xc7_c01279{left:715.395000px;}
.x66_c01279{left:717.120000px;}
.xc2_c01279{left:720.570000px;}
.x74_c01279{left:722.310000px;}
.xa8_c01279{left:726.630000px;}
.xcd_c01279{left:728.355000px;}
.x92_c01279{left:730.950000px;}
.x7d_c01279{left:732.675000px;}
.xc8_c01279{left:734.400000px;}
.x100_c01279{left:736.125000px;}
.xe1_c01279{left:738.720000px;}
.xd5_c01279{left:740.445000px;}
.x3d_c01279{left:742.170000px;}
.x97_c01279{left:744.765000px;}
.x5a_c01279{left:749.085000px;}
.xce_c01279{left:750.810000px;}
.xd9_c01279{left:752.550000px;}
.x67_c01279{left:754.275000px;}
.x36_c01279{left:757.725000px;}
.x9_c01279{left:759.450000px;}
.x51_c01279{left:763.770000px;}
.x115_c01279{left:766.365000px;}
.xc3_c01279{left:768.090000px;}
.x20_c01279{left:770.685000px;}
.x4c_c01279{left:773.280000px;}
.x112_c01279{left:775.005000px;}
.x9f_c01279{left:776.730000px;}
.xe2_c01279{left:778.470000px;}
.x4d_c01279{left:782.790000px;}
.x88_c01279{left:785.370000px;}
.xcf_c01279{left:787.965000px;}
.xbc_c01279{left:789.690000px;}
.x109_c01279{left:792.285000px;}
.xa9_c01279{left:794.880000px;}
.x2e_c01279{left:797.475000px;}
.xc4_c01279{left:800.925000px;}
.xd0_c01279{left:802.650000px;}
.x75_c01279{left:805.245000px;}
.xaa_c01279{left:807.840000px;}
.xda_c01279{left:812.160000px;}
.x5b_c01279{left:813.885000px;}
.x98_c01279{left:816.480000px;}
.xa_c01279{left:818.205000px;}
.x21_c01279{left:820.800000px;}
.x15_c01279{left:822.525000px;}
.x3e_c01279{left:825.120000px;}
.xb2_c01279{left:826.845000px;}
.xc5_c01279{left:829.440000px;}
.xd1_c01279{left:832.890000px;}
.x68_c01279{left:834.630000px;}
.xfd_c01279{left:837.210000px;}
.xa0_c01279{left:839.805000px;}
.x16_c01279{left:842.400000px;}
.x4e_c01279{left:845.850000px;}
.x37_c01279{left:847.590000px;}
.xf4_c01279{left:850.170000px;}
.xd2_c01279{left:851.910000px;}
.xe5_c01279{left:854.490000px;}
.xf1_c01279{left:857.085000px;}
.x7e_c01279{left:859.680000px;}
.xdb_c01279{left:861.405000px;}
.xbd_c01279{left:863.130000px;}
.x5c_c01279{left:865.725000px;}
.x5d_c01279{left:868.320000px;}
.xc9_c01279{left:870.045000px;}
.xf5_c01279{left:872.640000px;}
.x101_c01279{left:874.365000px;}
.xb3_c01279{left:876.090000px;}
.xb_c01279{left:878.685000px;}
.x89_c01279{left:880.410000px;}
.x10f_c01279{left:887.325000px;}
.x93_c01279{left:895.110000px;}
.x5e_c01279{left:898.560000px;}
.xf2_c01279{left:901.155000px;}
.xbe_c01279{left:902.880000px;}
.x7f_c01279{left:906.330000px;}
.xbf_c01279{left:918.435000px;}
.x8a_c01279{left:926.205000px;}
.x12f_c01279{left:937.440000px;}
.x12d_c01279{left:950.400000px;}
.x12e_c01279{left:963.360000px;}
.x12c_c01279{left:969.405000px;}
@media print{
.v2_c01279{vertical-align:-12.320000pt;}
.v3_c01279{vertical-align:-3.093333pt;}
.v0_c01279{vertical-align:0.000000pt;}
.v4_c01279{vertical-align:3.040000pt;}
.v1_c01279{vertical-align:9.226667pt;}
.ls3_c01279{letter-spacing:0.000000pt;}
.ls2_c01279{letter-spacing:8.514347pt;}
.ls1_c01279{letter-spacing:25.130667pt;}
.ls0_c01279{letter-spacing:641.972504pt;}
.ws1_c01279{word-spacing:-17.909760pt;}
.ws2_c01279{word-spacing:-9.397740pt;}
.ws3_c01279{word-spacing:0.000000pt;}
.ws0_c01279{word-spacing:171.756267pt;}
._0_c01279{width:3.415253pt;}
.fs8_c01279{font-size:3.072000pt;}
.fs14_c01279{font-size:5.333333pt;}
.fs19_c01279{font-size:6.133333pt;}
.fs15_c01279{font-size:9.226667pt;}
.fs11_c01279{font-size:12.266667pt;}
.fs1c_c01279{font-size:15.360000pt;}
.fs1d_c01279{font-size:18.453333pt;}
.fs1a_c01279{font-size:21.493333pt;}
.fs16_c01279{font-size:24.586667pt;}
.fs17_c01279{font-size:27.626667pt;}
.fs10_c01279{font-size:30.720000pt;}
.fs1b_c01279{font-size:33.813333pt;}
.fs21_c01279{font-size:36.853333pt;}
.fs18_c01279{font-size:39.946667pt;}
.fs4_c01279{font-size:42.986667pt;}
.fs13_c01279{font-size:46.080000pt;}
.fs7_c01279{font-size:49.173333pt;}
.fs1_c01279{font-size:52.213333pt;}
.fs3_c01279{font-size:55.306667pt;}
.fs12_c01279{font-size:58.346667pt;}
.fs2_c01279{font-size:61.440000pt;}
.fsf_c01279{font-size:64.533333pt;}
.fs5_c01279{font-size:67.573333pt;}
.fs6_c01279{font-size:70.666667pt;}
.fs0_c01279{font-size:73.706667pt;}
.fse_c01279{font-size:76.800000pt;}
.fsc_c01279{font-size:79.893333pt;}
.fsa_c01279{font-size:82.933333pt;}
.fsb_c01279{font-size:86.026667pt;}
.fs9_c01279{font-size:89.066667pt;}
.fsd_c01279{font-size:92.160000pt;}
.fs22_c01279{font-size:95.253333pt;}
.fs1f_c01279{font-size:98.293333pt;}
.fs20_c01279{font-size:104.426667pt;}
.fs1e_c01279{font-size:113.653333pt;}
.y0_c01279{bottom:0.000000pt;}
.y24d_c01279{bottom:125.186667pt;}
.y24c_c01279{bottom:130.560000pt;}
.y24b_c01279{bottom:132.093333pt;}
.y24e_c01279{bottom:136.706667pt;}
.y24a_c01279{bottom:138.240000pt;}
.y246_c01279{bottom:139.773333pt;}
.y248_c01279{bottom:140.546667pt;}
.y244_c01279{bottom:143.613333pt;}
.y247_c01279{bottom:145.146667pt;}
.y241_c01279{bottom:145.920000pt;}
.y245_c01279{bottom:146.693333pt;}
.y249_c01279{bottom:147.453333pt;}
.y242_c01279{bottom:148.986667pt;}
.y23f_c01279{bottom:152.826667pt;}
.y240_c01279{bottom:155.906667pt;}
.y239_c01279{bottom:156.666667pt;}
.y23d_c01279{bottom:158.213333pt;}
.y243_c01279{bottom:158.973333pt;}
.y23e_c01279{bottom:159.746667pt;}
.y23b_c01279{bottom:160.506667pt;}
.y237_c01279{bottom:161.280000pt;}
.y23a_c01279{bottom:162.053333pt;}
.y23c_c01279{bottom:162.813333pt;}
.y238_c01279{bottom:163.586667pt;}
.y235_c01279{bottom:164.346667pt;}
.y236_c01279{bottom:165.120000pt;}
.y234_c01279{bottom:165.893333pt;}
.y232_c01279{bottom:170.493333pt;}
.y233_c01279{bottom:171.266667pt;}
.y22e_c01279{bottom:172.800000pt;}
.y231_c01279{bottom:173.573333pt;}
.y230_c01279{bottom:174.333333pt;}
.y22f_c01279{bottom:176.640000pt;}
.y22b_c01279{bottom:180.480000pt;}
.y22c_c01279{bottom:182.013333pt;}
.y22a_c01279{bottom:185.093333pt;}
.y228_c01279{bottom:186.626667pt;}
.y222_c01279{bottom:188.160000pt;}
.y229_c01279{bottom:188.933333pt;}
.y225_c01279{bottom:189.693333pt;}
.y22d_c01279{bottom:190.466667pt;}
.y224_c01279{bottom:192.000000pt;}
.y227_c01279{bottom:192.773333pt;}
.y21f_c01279{bottom:193.533333pt;}
.y223_c01279{bottom:194.306667pt;}
.y226_c01279{bottom:195.066667pt;}
.y220_c01279{bottom:195.840000pt;}
.y221_c01279{bottom:198.906667pt;}
.y21e_c01279{bottom:199.680000pt;}
.y21c_c01279{bottom:200.453333pt;}
.y219_c01279{bottom:201.213333pt;}
.y218_c01279{bottom:201.986667pt;}
.y21d_c01279{bottom:202.746667pt;}
.y21a_c01279{bottom:203.520000pt;}
.y21b_c01279{bottom:206.586667pt;}
.y216_c01279{bottom:207.360000pt;}
.y214_c01279{bottom:208.893333pt;}
.y215_c01279{bottom:210.426667pt;}
.y213_c01279{bottom:211.973333pt;}
.y212_c01279{bottom:213.506667pt;}
.y20f_c01279{bottom:215.813333pt;}
.y20e_c01279{bottom:218.106667pt;}
.y217_c01279{bottom:218.880000pt;}
.y211_c01279{bottom:220.413333pt;}
.y20c_c01279{bottom:221.186667pt;}
.y209_c01279{bottom:221.946667pt;}
.y210_c01279{bottom:222.720000pt;}
.y20d_c01279{bottom:223.493333pt;}
.y20b_c01279{bottom:225.026667pt;}
.y207_c01279{bottom:225.786667pt;}
.y205_c01279{bottom:226.560000pt;}
.y20a_c01279{bottom:228.866667pt;}
.y208_c01279{bottom:229.626667pt;}
.y204_c01279{bottom:231.173333pt;}
.y206_c01279{bottom:231.933333pt;}
.y202_c01279{bottom:235.773333pt;}
.y203_c01279{bottom:236.546667pt;}
.y200_c01279{bottom:238.080000pt;}
.y1ff_c01279{bottom:238.853333pt;}
.y201_c01279{bottom:240.386667pt;}
.y1fd_c01279{bottom:241.146667pt;}
.y1fe_c01279{bottom:241.920000pt;}
.y1fa_c01279{bottom:244.226667pt;}
.y1fb_c01279{bottom:246.533333pt;}
.y1fc_c01279{bottom:247.293333pt;}
.y1f9_c01279{bottom:248.066667pt;}
.y1f8_c01279{bottom:251.133333pt;}
.y1f4_c01279{bottom:259.586667pt;}
.y1f5_c01279{bottom:262.653333pt;}
.y1f7_c01279{bottom:263.426667pt;}
.y1f6_c01279{bottom:264.960000pt;}
.y1f3_c01279{bottom:268.026667pt;}
.y1f2_c01279{bottom:270.333333pt;}
.y1f1_c01279{bottom:274.946667pt;}
.y1f0_c01279{bottom:275.706667pt;}
.y1ee_c01279{bottom:277.253333pt;}
.y1ed_c01279{bottom:280.320000pt;}
.y1ef_c01279{bottom:281.853333pt;}
.y1ec_c01279{bottom:283.386667pt;}
.y1eb_c01279{bottom:287.226667pt;}
.y1ea_c01279{bottom:288.773333pt;}
.y1e8_c01279{bottom:289.533333pt;}
.y1e7_c01279{bottom:290.306667pt;}
.y1e5_c01279{bottom:294.906667pt;}
.y1e4_c01279{bottom:296.453333pt;}
.y1e1_c01279{bottom:298.746667pt;}
.y1e2_c01279{bottom:300.293333pt;}
.y1e9_c01279{bottom:301.826667pt;}
.y1e6_c01279{bottom:302.586667pt;}
.y1e0_c01279{bottom:306.426667pt;}
.y1de_c01279{bottom:307.973333pt;}
.y1dd_c01279{bottom:309.506667pt;}
.y1df_c01279{bottom:311.813333pt;}
.y1e3_c01279{bottom:314.106667pt;}
.y1d8_c01279{bottom:314.880000pt;}
.y1d9_c01279{bottom:317.946667pt;}
.y1dc_c01279{bottom:321.786667pt;}
.y1db_c01279{bottom:323.333333pt;}
.y1d4_c01279{bottom:327.933333pt;}
.y1da_c01279{bottom:329.466667pt;}
.y1d5_c01279{bottom:330.240000pt;}
.y1d7_c01279{bottom:331.013333pt;}
.y1d2_c01279{bottom:331.773333pt;}
.y1d1_c01279{bottom:333.306667pt;}
.y1d3_c01279{bottom:335.613333pt;}
.y1cf_c01279{bottom:336.386667pt;}
.y1ce_c01279{bottom:338.693333pt;}
.y1d6_c01279{bottom:339.453333pt;}
.y1d0_c01279{bottom:340.226667pt;}
.y1cd_c01279{bottom:340.986667pt;}
.y1cb_c01279{bottom:344.826667pt;}
.y1ca_c01279{bottom:346.373333pt;}
.y1cc_c01279{bottom:347.906667pt;}
.y1c9_c01279{bottom:348.666667pt;}
.y1c8_c01279{bottom:350.213333pt;}
.y1c6_c01279{bottom:351.746667pt;}
.y1c5_c01279{bottom:354.053333pt;}
.y1c7_c01279{bottom:355.586667pt;}
.y1c4_c01279{bottom:358.653333pt;}
.y1bf_c01279{bottom:360.960000pt;}
.y1c2_c01279{bottom:361.733333pt;}
.y1c1_c01279{bottom:362.493333pt;}
.y1be_c01279{bottom:364.026667pt;}
.y1c3_c01279{bottom:364.800000pt;}
.y1bc_c01279{bottom:365.573333pt;}
.y1bd_c01279{bottom:366.333333pt;}
.y1c0_c01279{bottom:367.106667pt;}
.y1b9_c01279{bottom:367.866667pt;}
.y1bb_c01279{bottom:368.640000pt;}
.y1b8_c01279{bottom:369.413333pt;}
.y1b7_c01279{bottom:370.946667pt;}
.y1ba_c01279{bottom:371.706667pt;}
.y1b6_c01279{bottom:372.480000pt;}
.y1b5_c01279{bottom:373.253333pt;}
.y1b2_c01279{bottom:374.013333pt;}
.y1b1_c01279{bottom:375.546667pt;}
.y1b3_c01279{bottom:376.320000pt;}
.y1ae_c01279{bottom:377.853333pt;}
.y1ad_c01279{bottom:378.626667pt;}
.y1b0_c01279{bottom:380.933333pt;}
.y1af_c01279{bottom:384.773333pt;}
.y1ac_c01279{bottom:386.306667pt;}
.y1ab_c01279{bottom:387.066667pt;}
.y1b4_c01279{bottom:390.906667pt;}
.y1aa_c01279{bottom:395.520000pt;}
.y1a8_c01279{bottom:397.826667pt;}
.y1a9_c01279{bottom:401.666667pt;}
.y1a5_c01279{bottom:403.200000pt;}
.y1a4_c01279{bottom:403.973333pt;}
.y1a7_c01279{bottom:404.733333pt;}
.y1a1_c01279{bottom:406.266667pt;}
.y1a6_c01279{bottom:407.813333pt;}
.y1a2_c01279{bottom:408.573333pt;}
.y1a3_c01279{bottom:411.653333pt;}
.y1a0_c01279{bottom:413.946667pt;}
.y19f_c01279{bottom:414.720000pt;}
.y19e_c01279{bottom:420.093333pt;}
.y19c_c01279{bottom:420.866667pt;}
.y19d_c01279{bottom:421.626667pt;}
.y199_c01279{bottom:423.933333pt;}
.y19b_c01279{bottom:425.466667pt;}
.y198_c01279{bottom:427.013333pt;}
.y19a_c01279{bottom:430.080000pt;}
.y196_c01279{bottom:433.920000pt;}
.y194_c01279{bottom:435.453333pt;}
.y197_c01279{bottom:436.226667pt;}
.y192_c01279{bottom:442.373333pt;}
.y193_c01279{bottom:447.746667pt;}
.y191_c01279{bottom:450.053333pt;}
.y195_c01279{bottom:451.586667pt;}
.y18f_c01279{bottom:452.346667pt;}
.y190_c01279{bottom:453.120000pt;}
.y18c_c01279{bottom:456.186667pt;}
.y18e_c01279{bottom:456.960000pt;}
.y18b_c01279{bottom:457.733333pt;}
.y18a_c01279{bottom:458.493333pt;}
.y18d_c01279{bottom:460.026667pt;}
.y189_c01279{bottom:468.480000pt;}
.y188_c01279{bottom:471.546667pt;}
.y183_c01279{bottom:474.626667pt;}
.y187_c01279{bottom:475.386667pt;}
.y186_c01279{bottom:476.160000pt;}
.y182_c01279{bottom:478.466667pt;}
.y185_c01279{bottom:480.000000pt;}
.y184_c01279{bottom:480.773333pt;}
.y181_c01279{bottom:486.906667pt;}
.y180_c01279{bottom:490.746667pt;}
.y17f_c01279{bottom:491.520000pt;}
.y17e_c01279{bottom:493.053333pt;}
.y17d_c01279{bottom:496.133333pt;}
.y17c_c01279{bottom:500.733333pt;}
.y17b_c01279{bottom:509.186667pt;}
.y178_c01279{bottom:513.026667pt;}
.y17a_c01279{bottom:514.560000pt;}
.y179_c01279{bottom:517.626667pt;}
.y177_c01279{bottom:523.013333pt;}
.y175_c01279{bottom:524.546667pt;}
.y174_c01279{bottom:526.080000pt;}
.y176_c01279{bottom:527.613333pt;}
.y173_c01279{bottom:528.386667pt;}
.y171_c01279{bottom:529.146667pt;}
.y170_c01279{bottom:529.920000pt;}
.y16d_c01279{bottom:532.226667pt;}
.y16e_c01279{bottom:533.760000pt;}
.y16c_c01279{bottom:535.293333pt;}
.y16f_c01279{bottom:536.066667pt;}
.y16b_c01279{bottom:539.906667pt;}
.y172_c01279{bottom:540.666667pt;}
.y166_c01279{bottom:546.053333pt;}
.y16a_c01279{bottom:546.813333pt;}
.y160_c01279{bottom:548.346667pt;}
.y168_c01279{bottom:549.893333pt;}
.y169_c01279{bottom:550.653333pt;}
.y167_c01279{bottom:551.426667pt;}
.y164_c01279{bottom:552.186667pt;}
.y163_c01279{bottom:552.960000pt;}
.y162_c01279{bottom:553.733333pt;}
.y161_c01279{bottom:554.493333pt;}
.y15f_c01279{bottom:555.266667pt;}
.y165_c01279{bottom:556.026667pt;}
.y15c_c01279{bottom:561.413333pt;}
.y15b_c01279{bottom:562.173333pt;}
.y15d_c01279{bottom:563.706667pt;}
.y15e_c01279{bottom:564.480000pt;}
.y15a_c01279{bottom:565.253333pt;}
.y159_c01279{bottom:566.786667pt;}
.y158_c01279{bottom:567.546667pt;}
.y156_c01279{bottom:569.093333pt;}
.y157_c01279{bottom:572.160000pt;}
.y155_c01279{bottom:579.066667pt;}
.y153_c01279{bottom:579.840000pt;}
.y152_c01279{bottom:580.613333pt;}
.y151_c01279{bottom:582.146667pt;}
.y14e_c01279{bottom:584.453333pt;}
.y14d_c01279{bottom:585.986667pt;}
.y14f_c01279{bottom:587.520000pt;}
.y154_c01279{bottom:589.826667pt;}
.y14c_c01279{bottom:591.360000pt;}
.y14b_c01279{bottom:592.133333pt;}
.y14a_c01279{bottom:597.506667pt;}
.y148_c01279{bottom:598.266667pt;}
.y147_c01279{bottom:599.040000pt;}
.y150_c01279{bottom:599.813333pt;}
.y149_c01279{bottom:600.573333pt;}
.y142_c01279{bottom:602.106667pt;}
.y146_c01279{bottom:602.880000pt;}
.y145_c01279{bottom:603.653333pt;}
.y141_c01279{bottom:604.413333pt;}
.y144_c01279{bottom:605.186667pt;}
.y143_c01279{bottom:605.946667pt;}
.y13f_c01279{bottom:607.493333pt;}
.y13e_c01279{bottom:608.253333pt;}
.y140_c01279{bottom:609.026667pt;}
.y13d_c01279{bottom:614.400000pt;}
.y13c_c01279{bottom:615.933333pt;}
.y13b_c01279{bottom:616.706667pt;}
.y13a_c01279{bottom:619.773333pt;}
.y137_c01279{bottom:620.546667pt;}
.y138_c01279{bottom:621.306667pt;}
.y136_c01279{bottom:622.080000pt;}
.y134_c01279{bottom:622.853333pt;}
.y139_c01279{bottom:623.613333pt;}
.y132_c01279{bottom:633.600000pt;}
.y135_c01279{bottom:635.133333pt;}
.y131_c01279{bottom:636.666667pt;}
.y12e_c01279{bottom:641.280000pt;}
.y12c_c01279{bottom:642.053333pt;}
.y130_c01279{bottom:642.813333pt;}
.y12f_c01279{bottom:643.586667pt;}
.y12b_c01279{bottom:644.346667pt;}
.y12d_c01279{bottom:645.120000pt;}
.y133_c01279{bottom:647.426667pt;}
.y12a_c01279{bottom:648.186667pt;}
.y128_c01279{bottom:649.733333pt;}
.y129_c01279{bottom:651.266667pt;}
.y127_c01279{bottom:652.800000pt;}
.y124_c01279{bottom:655.106667pt;}
.y123_c01279{bottom:655.866667pt;}
.y122_c01279{bottom:657.413333pt;}
.y125_c01279{bottom:658.946667pt;}
.y126_c01279{bottom:660.480000pt;}
.y120_c01279{bottom:661.253333pt;}
.y121_c01279{bottom:662.013333pt;}
.y11d_c01279{bottom:669.693333pt;}
.y11c_c01279{bottom:670.466667pt;}
.y11a_c01279{bottom:672.773333pt;}
.y11e_c01279{bottom:674.306667pt;}
.y117_c01279{bottom:675.066667pt;}
.y11b_c01279{bottom:675.840000pt;}
.y116_c01279{bottom:676.613333pt;}
.y11f_c01279{bottom:677.373333pt;}
.y119_c01279{bottom:678.146667pt;}
.y118_c01279{bottom:678.906667pt;}
.y115_c01279{bottom:686.586667pt;}
.y113_c01279{bottom:689.666667pt;}
.y114_c01279{bottom:690.426667pt;}
.y10d_c01279{bottom:691.200000pt;}
.y107_c01279{bottom:691.973333pt;}
.y111_c01279{bottom:692.733333pt;}
.y112_c01279{bottom:693.506667pt;}
.y10f_c01279{bottom:694.266667pt;}
.y108_c01279{bottom:695.813333pt;}
.y110_c01279{bottom:697.346667pt;}
.y10e_c01279{bottom:698.106667pt;}
.y10c_c01279{bottom:698.880000pt;}
.y10a_c01279{bottom:699.653333pt;}
.y106_c01279{bottom:700.413333pt;}
.y10b_c01279{bottom:701.186667pt;}
.y109_c01279{bottom:703.493333pt;}
.y102_c01279{bottom:704.253333pt;}
.y100_c01279{bottom:705.026667pt;}
.y104_c01279{bottom:705.786667pt;}
.y103_c01279{bottom:706.560000pt;}
.yfe_c01279{bottom:707.333333pt;}
.yff_c01279{bottom:708.866667pt;}
.y101_c01279{bottom:709.626667pt;}
.y105_c01279{bottom:710.400000pt;}
.yfd_c01279{bottom:711.933333pt;}
.yfc_c01279{bottom:712.706667pt;}
.yfb_c01279{bottom:713.466667pt;}
.yf8_c01279{bottom:715.013333pt;}
.yf9_c01279{bottom:715.773333pt;}
.yfa_c01279{bottom:718.080000pt;}
.yf6_c01279{bottom:718.853333pt;}
.yf7_c01279{bottom:720.386667pt;}
.yf5_c01279{bottom:722.693333pt;}
.yf3_c01279{bottom:723.453333pt;}
.yf2_c01279{bottom:724.226667pt;}
.yf4_c01279{bottom:725.760000pt;}
.yf0_c01279{bottom:726.533333pt;}
.yf1_c01279{bottom:727.293333pt;}
.yef_c01279{bottom:728.066667pt;}
.yeb_c01279{bottom:728.826667pt;}
.yee_c01279{bottom:731.906667pt;}
.ye6_c01279{bottom:733.440000pt;}
.ye7_c01279{bottom:734.213333pt;}
.ye9_c01279{bottom:734.973333pt;}
.yed_c01279{bottom:735.746667pt;}
.ye8_c01279{bottom:736.506667pt;}
.yec_c01279{bottom:737.280000pt;}
.yea_c01279{bottom:738.053333pt;}
.ye4_c01279{bottom:738.813333pt;}
.ye3_c01279{bottom:742.653333pt;}
.ye1_c01279{bottom:743.426667pt;}
.ydf_c01279{bottom:744.960000pt;}
.yde_c01279{bottom:746.493333pt;}
.ye5_c01279{bottom:747.266667pt;}
.ye0_c01279{bottom:748.026667pt;}
.ydd_c01279{bottom:749.573333pt;}
.ye2_c01279{bottom:752.640000pt;}
.yd4_c01279{bottom:755.706667pt;}
.yd8_c01279{bottom:758.013333pt;}
.yd7_c01279{bottom:758.786667pt;}
.ydb_c01279{bottom:759.546667pt;}
.yda_c01279{bottom:761.853333pt;}
.yd5_c01279{bottom:764.160000pt;}
.yd9_c01279{bottom:764.933333pt;}
.yd1_c01279{bottom:765.693333pt;}
.yd6_c01279{bottom:767.226667pt;}
.yd3_c01279{bottom:768.000000pt;}
.yd2_c01279{bottom:768.773333pt;}
.ydc_c01279{bottom:776.453333pt;}
.ycd_c01279{bottom:781.053333pt;}
.ycb_c01279{bottom:781.826667pt;}
.yd0_c01279{bottom:784.133333pt;}
.yca_c01279{bottom:784.893333pt;}
.ycc_c01279{bottom:785.666667pt;}
.yce_c01279{bottom:791.040000pt;}
.ycf_c01279{bottom:794.106667pt;}
.yc9_c01279{bottom:799.493333pt;}
.yc6_c01279{bottom:800.253333pt;}
.yc8_c01279{bottom:801.026667pt;}
.yc4_c01279{bottom:801.786667pt;}
.yc7_c01279{bottom:802.560000pt;}
.yc5_c01279{bottom:803.333333pt;}
.yc3_c01279{bottom:812.546667pt;}
.yc2_c01279{bottom:813.306667pt;}
.yc1_c01279{bottom:815.613333pt;}
.yc0_c01279{bottom:816.386667pt;}
.ybf_c01279{bottom:817.920000pt;}
.ybc_c01279{bottom:819.453333pt;}
.yb9_c01279{bottom:820.226667pt;}
.yb8_c01279{bottom:820.986667pt;}
.ybd_c01279{bottom:821.760000pt;}
.ybb_c01279{bottom:822.533333pt;}
.yba_c01279{bottom:824.066667pt;}
.yb7_c01279{bottom:824.826667pt;}
.ybe_c01279{bottom:825.600000pt;}
.yb6_c01279{bottom:826.373333pt;}
.yb0_c01279{bottom:834.813333pt;}
.yb2_c01279{bottom:835.586667pt;}
.yad_c01279{bottom:836.346667pt;}
.yb1_c01279{bottom:837.893333pt;}
.yae_c01279{bottom:840.960000pt;}
.yb5_c01279{bottom:844.026667pt;}
.yb3_c01279{bottom:844.800000pt;}
.ya9_c01279{bottom:847.106667pt;}
.yb4_c01279{bottom:847.866667pt;}
.yaa_c01279{bottom:849.413333pt;}
.yaf_c01279{bottom:850.173333pt;}
.ya6_c01279{bottom:850.946667pt;}
.yab_c01279{bottom:851.706667pt;}
.ya8_c01279{bottom:852.480000pt;}
.ya4_c01279{bottom:854.013333pt;}
.yac_c01279{bottom:855.546667pt;}
.ya7_c01279{bottom:857.093333pt;}
.ya5_c01279{bottom:857.853333pt;}
.ya3_c01279{bottom:859.386667pt;}
.y9d_c01279{bottom:864.000000pt;}
.y9f_c01279{bottom:864.773333pt;}
.ya0_c01279{bottom:865.533333pt;}
.ya1_c01279{bottom:866.306667pt;}
.ya2_c01279{bottom:867.840000pt;}
.y9a_c01279{bottom:870.146667pt;}
.y9c_c01279{bottom:871.680000pt;}
.y98_c01279{bottom:872.453333pt;}
.y99_c01279{bottom:873.213333pt;}
.y9e_c01279{bottom:873.986667pt;}
.y9b_c01279{bottom:875.520000pt;}
.y97_c01279{bottom:876.293333pt;}
.y95_c01279{bottom:883.973333pt;}
.y96_c01279{bottom:884.733333pt;}
.y93_c01279{bottom:886.266667pt;}
.y91_c01279{bottom:887.813333pt;}
.y94_c01279{bottom:889.346667pt;}
.y8d_c01279{bottom:890.106667pt;}
.y8f_c01279{bottom:890.880000pt;}
.y90_c01279{bottom:892.413333pt;}
.y92_c01279{bottom:893.186667pt;}
.y8e_c01279{bottom:894.720000pt;}
.y8c_c01279{bottom:896.253333pt;}
.y8a_c01279{bottom:897.786667pt;}
.y88_c01279{bottom:899.333333pt;}
.y89_c01279{bottom:900.093333pt;}
.y87_c01279{bottom:900.866667pt;}
.y86_c01279{bottom:901.626667pt;}
.y8b_c01279{bottom:902.400000pt;}
.y81_c01279{bottom:905.466667pt;}
.y84_c01279{bottom:906.240000pt;}
.y82_c01279{bottom:907.773333pt;}
.y80_c01279{bottom:908.546667pt;}
.y83_c01279{bottom:909.306667pt;}
.y85_c01279{bottom:910.853333pt;}
.y7c_c01279{bottom:917.760000pt;}
.y7f_c01279{bottom:919.293333pt;}
.y7d_c01279{bottom:920.066667pt;}
.y7e_c01279{bottom:920.826667pt;}
.y77_c01279{bottom:921.600000pt;}
.y79_c01279{bottom:922.373333pt;}
.y72_c01279{bottom:925.440000pt;}
.y74_c01279{bottom:926.213333pt;}
.y76_c01279{bottom:926.973333pt;}
.y7b_c01279{bottom:927.746667pt;}
.y7a_c01279{bottom:929.280000pt;}
.y75_c01279{bottom:930.053333pt;}
.y73_c01279{bottom:930.813333pt;}
.y78_c01279{bottom:938.493333pt;}
.y70_c01279{bottom:940.800000pt;}
.y6e_c01279{bottom:942.333333pt;}
.y6d_c01279{bottom:943.106667pt;}
.y6f_c01279{bottom:943.866667pt;}
.y6b_c01279{bottom:944.640000pt;}
.y71_c01279{bottom:945.413333pt;}
.y6c_c01279{bottom:949.253333pt;}
.y6a_c01279{bottom:950.013333pt;}
.y67_c01279{bottom:954.626667pt;}
.y66_c01279{bottom:957.693333pt;}
.y65_c01279{bottom:958.466667pt;}
.y69_c01279{bottom:960.000000pt;}
.y64_c01279{bottom:961.533333pt;}
.y68_c01279{bottom:962.306667pt;}
.y61_c01279{bottom:963.066667pt;}
.y62_c01279{bottom:963.840000pt;}
.y63_c01279{bottom:964.613333pt;}
.y60_c01279{bottom:973.826667pt;}
.y5f_c01279{bottom:974.586667pt;}
.y5e_c01279{bottom:976.893333pt;}
.y5b_c01279{bottom:977.666667pt;}
.y59_c01279{bottom:978.426667pt;}
.y57_c01279{bottom:979.200000pt;}
.y55_c01279{bottom:979.973333pt;}
.y56_c01279{bottom:980.733333pt;}
.y5c_c01279{bottom:981.506667pt;}
.y5d_c01279{bottom:982.266667pt;}
.y58_c01279{bottom:983.040000pt;}
.y5a_c01279{bottom:984.573333pt;}
.y54_c01279{bottom:985.346667pt;}
.y53_c01279{bottom:989.946667pt;}
.y52_c01279{bottom:991.493333pt;}
.y4e_c01279{bottom:996.866667pt;}
.y51_c01279{bottom:997.626667pt;}
.y4f_c01279{bottom:998.400000pt;}
.y50_c01279{bottom:999.933333pt;}
.y4d_c01279{bottom:1008.386667pt;}
.y4b_c01279{bottom:1009.920000pt;}
.y4a_c01279{bottom:1010.693333pt;}
.y45_c01279{bottom:1012.986667pt;}
.y49_c01279{bottom:1013.760000pt;}
.y4c_c01279{bottom:1014.533333pt;}
.y44_c01279{bottom:1016.066667pt;}
.y46_c01279{bottom:1019.133333pt;}
.y47_c01279{bottom:1019.906667pt;}
.y48_c01279{bottom:1020.666667pt;}
.y43_c01279{bottom:1031.426667pt;}
.y41_c01279{bottom:1032.186667pt;}
.y3f_c01279{bottom:1033.733333pt;}
.y3e_c01279{bottom:1034.493333pt;}
.y3b_c01279{bottom:1035.266667pt;}
.y42_c01279{bottom:1036.026667pt;}
.y251_c01279{bottom:1037.573333pt;}
.y40_c01279{bottom:1038.333333pt;}
.y3c_c01279{bottom:1039.866667pt;}
.y3d_c01279{bottom:1040.640000pt;}
.y262_c01279{bottom:1045.253333pt;}
.y263_c01279{bottom:1046.013333pt;}
.y3a_c01279{bottom:1048.320000pt;}
.y37_c01279{bottom:1050.626667pt;}
.y35_c01279{bottom:1052.933333pt;}
.y34_c01279{bottom:1053.693333pt;}
.y39_c01279{bottom:1054.466667pt;}
.y38_c01279{bottom:1055.226667pt;}
.y32_c01279{bottom:1056.000000pt;}
.y261_c01279{bottom:1056.773333pt;}
.y33_c01279{bottom:1057.533333pt;}
.y36_c01279{bottom:1059.840000pt;}
.y260_c01279{bottom:1061.373333pt;}
.y31_c01279{bottom:1063.680000pt;}
.y30_c01279{bottom:1065.213333pt;}
.y2f_c01279{bottom:1065.986667pt;}
.y2e_c01279{bottom:1068.293333pt;}
.y2d_c01279{bottom:1069.826667pt;}
.y2a_c01279{bottom:1070.586667pt;}
.y2b_c01279{bottom:1071.360000pt;}
.y2c_c01279{bottom:1074.426667pt;}
.y29_c01279{bottom:1075.973333pt;}
.y28_c01279{bottom:1082.880000pt;}
.y26_c01279{bottom:1083.653333pt;}
.y22_c01279{bottom:1084.413333pt;}
.y24_c01279{bottom:1085.946667pt;}
.y27_c01279{bottom:1090.560000pt;}
.y23_c01279{bottom:1092.866667pt;}
.y21_c01279{bottom:1094.400000pt;}
.y25_c01279{bottom:1095.933333pt;}
.y20_c01279{bottom:1101.306667pt;}
.y1f_c01279{bottom:1105.146667pt;}
.y1c_c01279{bottom:1108.226667pt;}
.y1e_c01279{bottom:1108.986667pt;}
.y1b_c01279{bottom:1110.533333pt;}
.y1d_c01279{bottom:1111.293333pt;}
.y1a_c01279{bottom:1112.826667pt;}
.y19_c01279{bottom:1118.213333pt;}
.y18_c01279{bottom:1119.746667pt;}
.y17_c01279{bottom:1121.280000pt;}
.y15_c01279{bottom:1122.053333pt;}
.y14_c01279{bottom:1124.346667pt;}
.y12_c01279{bottom:1125.120000pt;}
.y16_c01279{bottom:1125.893333pt;}
.y13_c01279{bottom:1130.493333pt;}
.y10_c01279{bottom:1135.866667pt;}
.yf_c01279{bottom:1136.640000pt;}
.y11_c01279{bottom:1137.413333pt;}
.ye_c01279{bottom:1138.946667pt;}
.yc_c01279{bottom:1140.480000pt;}
.yd_c01279{bottom:1141.253333pt;}
.ya_c01279{bottom:1142.013333pt;}
.yb_c01279{bottom:1143.546667pt;}
.y7_c01279{bottom:1158.906667pt;}
.y6_c01279{bottom:1159.680000pt;}
.y5_c01279{bottom:1161.986667pt;}
.y8_c01279{bottom:1162.746667pt;}
.y9_c01279{bottom:1164.293333pt;}
.y1_c01279{bottom:1165.826667pt;}
.y2_c01279{bottom:1166.586667pt;}
.y4_c01279{bottom:1167.360000pt;}
.y25f_c01279{bottom:1169.666667pt;}
.y3_c01279{bottom:1170.426667pt;}
.y253_c01279{bottom:1174.266667pt;}
.y255_c01279{bottom:1183.493333pt;}
.y25e_c01279{bottom:1185.786667pt;}
.y25b_c01279{bottom:1187.333333pt;}
.y256_c01279{bottom:1188.093333pt;}
.y25d_c01279{bottom:1189.626667pt;}
.y254_c01279{bottom:1190.400000pt;}
.y25a_c01279{bottom:1191.173333pt;}
.y252_c01279{bottom:1196.546667pt;}
.y25c_c01279{bottom:1197.306667pt;}
.y259_c01279{bottom:1207.293333pt;}
.y258_c01279{bottom:1208.066667pt;}
.y24f_c01279{bottom:1248.000000pt;}
.y250_c01279{bottom:1250.306667pt;}
.y257_c01279{bottom:1252.613333pt;}
.ha_c01279{height:2.764500pt;}
.h16_c01279{height:4.799479pt;}
.h1c_c01279{height:5.519401pt;}
.h26_c01279{height:7.839479pt;}
.h1a_c01279{height:8.303099pt;}
.h13_c01279{height:11.038802pt;}
.h1f_c01279{height:13.822500pt;}
.h20_c01279{height:16.606198pt;}
.h17_c01279{height:17.529766pt;}
.h1d_c01279{height:19.341901pt;}
.h18_c01279{height:22.125599pt;}
.h19_c01279{height:24.861302pt;}
.h12_c01279{height:27.645000pt;}
.h1e_c01279{height:30.428698pt;}
.h24_c01279{height:33.164401pt;}
.h1b_c01279{height:35.948099pt;}
.h6_c01279{height:38.683802pt;}
.h15_c01279{height:41.467500pt;}
.h9_c01279{height:44.251198pt;}
.h3_c01279{height:46.986901pt;}
.h5_c01279{height:49.770599pt;}
.h14_c01279{height:52.506302pt;}
.h4_c01279{height:55.290000pt;}
.h11_c01279{height:58.073698pt;}
.h7_c01279{height:60.809401pt;}
.h8_c01279{height:63.593099pt;}
.h2_c01279{height:66.328802pt;}
.h10_c01279{height:69.112500pt;}
.he_c01279{height:71.896198pt;}
.hc_c01279{height:74.631901pt;}
.hd_c01279{height:77.415599pt;}
.hb_c01279{height:80.151302pt;}
.hf_c01279{height:82.935000pt;}
.h25_c01279{height:85.718698pt;}
.h22_c01279{height:88.454401pt;}
.h23_c01279{height:93.973802pt;}
.h21_c01279{height:102.276901pt;}
.h0_c01279{height:1341.693333pt;}
.h1_c01279{height:1342.000000pt;}
.w0_c01279{width:967.680000pt;}
.w1_c01279{width:968.000000pt;}
.x0_c01279{left:0.000000pt;}
.x128_c01279{left:3.066667pt;}
.x122_c01279{left:35.333333pt;}
.x123_c01279{left:42.240000pt;}
.x125_c01279{left:112.133333pt;}
.x126_c01279{left:122.880000pt;}
.x124_c01279{left:136.706667pt;}
.x12a_c01279{left:150.533333pt;}
.x127_c01279{left:155.906667pt;}
.xe8_c01279{left:160.506667pt;}
.x129_c01279{left:162.813333pt;}
.x110_c01279{left:165.893333pt;}
.x111_c01279{left:172.026667pt;}
.x12b_c01279{left:175.106667pt;}
.x105_c01279{left:179.706667pt;}
.xe9_c01279{left:182.013333pt;}
.x116_c01279{left:183.546667pt;}
.xe3_c01279{left:186.626667pt;}
.x106_c01279{left:188.933333pt;}
.x10b_c01279{left:190.466667pt;}
.x6e_c01279{left:193.533333pt;}
.xe4_c01279{left:195.066667pt;}
.x11c_c01279{left:196.613333pt;}
.xe6_c01279{left:198.146667pt;}
.x69_c01279{left:200.453333pt;}
.xab_c01279{left:202.746667pt;}
.x10c_c01279{left:204.293333pt;}
.xfa_c01279{left:206.586667pt;}
.xc_c01279{left:208.133333pt;}
.x38_c01279{left:209.666667pt;}
.x1_c01279{left:211.973333pt;}
.x117_c01279{left:213.506667pt;}
.xc0_c01279{left:216.573333pt;}
.x107_c01279{left:218.880000pt;}
.x99_c01279{left:221.946667pt;}
.xa1_c01279{left:224.253333pt;}
.xd_c01279{left:226.560000pt;}
.x6a_c01279{left:231.933333pt;}
.x17_c01279{left:238.080000pt;}
.xca_c01279{left:239.613333pt;}
.x76_c01279{left:241.920000pt;}
.xd6_c01279{left:243.453333pt;}
.x2f_c01279{left:245.760000pt;}
.xba_c01279{left:248.826667pt;}
.x10a_c01279{left:251.906667pt;}
.x28_c01279{left:254.973333pt;}
.x6f_c01279{left:257.280000pt;}
.x39_c01279{left:258.813333pt;}
.x108_c01279{left:260.346667pt;}
.x11d_c01279{left:262.653333pt;}
.x102_c01279{left:264.960000pt;}
.x70_c01279{left:266.493333pt;}
.xfe_c01279{left:268.026667pt;}
.xa2_c01279{left:269.573333pt;}
.x3f_c01279{left:272.640000pt;}
.x11f_c01279{left:274.946667pt;}
.x52_c01279{left:276.480000pt;}
.xc1_c01279{left:280.320000pt;}
.xdc_c01279{left:282.626667pt;}
.x80_c01279{left:284.160000pt;}
.x53_c01279{left:285.693333pt;}
.x18_c01279{left:287.226667pt;}
.xfb_c01279{left:289.533333pt;}
.x4f_c01279{left:291.066667pt;}
.x11a_c01279{left:293.373333pt;}
.xec_c01279{left:297.213333pt;}
.x77_c01279{left:299.520000pt;}
.x2_c01279{left:302.586667pt;}
.x6b_c01279{left:305.666667pt;}
.x44_c01279{left:307.973333pt;}
.x5f_c01279{left:310.266667pt;}
.xff_c01279{left:313.346667pt;}
.xe_c01279{left:316.413333pt;}
.x22_c01279{left:319.493333pt;}
.x3a_c01279{left:321.026667pt;}
.xc6_c01279{left:322.560000pt;}
.x19_c01279{left:325.626667pt;}
.xdd_c01279{left:327.933333pt;}
.xaf_c01279{left:329.466667pt;}
.xf6_c01279{left:334.080000pt;}
.x60_c01279{left:335.613333pt;}
.x103_c01279{left:337.146667pt;}
.x40_c01279{left:338.693333pt;}
.xd7_c01279{left:340.226667pt;}
.x71_c01279{left:342.533333pt;}
.x78_c01279{left:345.600000pt;}
.x118_c01279{left:347.133333pt;}
.x54_c01279{left:348.666667pt;}
.x29_c01279{left:350.973333pt;}
.x9a_c01279{left:352.506667pt;}
.xed_c01279{left:354.813333pt;}
.x30_c01279{left:356.346667pt;}
.x3_c01279{left:358.653333pt;}
.x72_c01279{left:360.186667pt;}
.x41_c01279{left:361.733333pt;}
.x45_c01279{left:363.266667pt;}
.xde_c01279{left:364.800000pt;}
.xf_c01279{left:367.866667pt;}
.x81_c01279{left:372.480000pt;}
.x94_c01279{left:374.786667pt;}
.x61_c01279{left:376.320000pt;}
.x6c_c01279{left:380.160000pt;}
.x1a_c01279{left:382.466667pt;}
.x79_c01279{left:384.773333pt;}
.x10_c01279{left:387.066667pt;}
.x8b_c01279{left:388.613333pt;}
.x23_c01279{left:391.680000pt;}
.x120_c01279{left:393.986667pt;}
.x6d_c01279{left:395.520000pt;}
.x82_c01279{left:399.360000pt;}
.x3b_c01279{left:403.973333pt;}
.x8c_c01279{left:405.506667pt;}
.x95_c01279{left:407.040000pt;}
.xd3_c01279{left:408.573333pt;}
.x113_c01279{left:410.106667pt;}
.x55_c01279{left:412.413333pt;}
.x83_c01279{left:413.946667pt;}
.x42_c01279{left:417.026667pt;}
.xe7_c01279{left:419.333333pt;}
.xee_c01279{left:420.866667pt;}
.x31_c01279{left:422.400000pt;}
.xb4_c01279{left:423.933333pt;}
.x7a_c01279{left:426.240000pt;}
.x46_c01279{left:429.306667pt;}
.xf7_c01279{left:430.853333pt;}
.x11_c01279{left:433.146667pt;}
.x24_c01279{left:434.693333pt;}
.x8d_c01279{left:436.226667pt;}
.x9b_c01279{left:438.533333pt;}
.x32_c01279{left:441.600000pt;}
.xa3_c01279{left:443.906667pt;}
.x1b_c01279{left:446.213333pt;}
.x56_c01279{left:448.506667pt;}
.x11e_c01279{left:450.053333pt;}
.x62_c01279{left:452.346667pt;}
.xa4_c01279{left:454.653333pt;}
.x2a_c01279{left:456.960000pt;}
.x43_c01279{left:460.026667pt;}
.x9c_c01279{left:463.866667pt;}
.x104_c01279{left:465.413333pt;}
.x47_c01279{left:466.946667pt;}
.x10d_c01279{left:468.480000pt;}
.x4_c01279{left:473.093333pt;}
.x84_c01279{left:475.386667pt;}
.x57_c01279{left:476.933333pt;}
.xb5_c01279{left:478.466667pt;}
.xcb_c01279{left:480.000000pt;}
.x96_c01279{left:481.533333pt;}
.x58_c01279{left:485.373333pt;}
.x7b_c01279{left:486.906667pt;}
.x5_c01279{left:489.213333pt;}
.x48_c01279{left:490.746667pt;}
.xef_c01279{left:492.293333pt;}
.xac_c01279{left:493.826667pt;}
.x2b_c01279{left:495.360000pt;}
.x1c_c01279{left:497.666667pt;}
.x63_c01279{left:499.200000pt;}
.x12_c01279{left:501.506667pt;}
.x50_c01279{left:503.813333pt;}
.x33_c01279{left:505.346667pt;}
.x6_c01279{left:506.880000pt;}
.x49_c01279{left:509.186667pt;}
.xdf_c01279{left:511.493333pt;}
.xbb_c01279{left:513.026667pt;}
.xcc_c01279{left:514.560000pt;}
.xea_c01279{left:516.866667pt;}
.x85_c01279{left:518.400000pt;}
.xeb_c01279{left:521.466667pt;}
.x2c_c01279{left:523.013333pt;}
.x1d_c01279{left:526.080000pt;}
.xd4_c01279{left:528.386667pt;}
.xf8_c01279{left:529.920000pt;}
.x10e_c01279{left:532.226667pt;}
.x25_c01279{left:533.760000pt;}
.x9d_c01279{left:536.066667pt;}
.x86_c01279{left:538.373333pt;}
.x1e_c01279{left:541.440000pt;}
.x8e_c01279{left:543.746667pt;}
.x7_c01279{left:547.586667pt;}
.xfc_c01279{left:549.893333pt;}
.xb6_c01279{left:552.186667pt;}
.x73_c01279{left:553.733333pt;}
.x13_c01279{left:555.266667pt;}
.x119_c01279{left:556.800000pt;}
.x11b_c01279{left:558.333333pt;}
.xb7_c01279{left:560.640000pt;}
.x64_c01279{left:562.946667pt;}
.xa5_c01279{left:564.480000pt;}
.x26_c01279{left:566.013333pt;}
.xad_c01279{left:568.320000pt;}
.xe0_c01279{left:570.626667pt;}
.x34_c01279{left:572.160000pt;}
.xf3_c01279{left:573.693333pt;}
.xb8_c01279{left:576.000000pt;}
.x114_c01279{left:578.306667pt;}
.x14_c01279{left:580.613333pt;}
.xa6_c01279{left:583.680000pt;}
.x7c_c01279{left:586.746667pt;}
.xf0_c01279{left:588.293333pt;}
.x4a_c01279{left:589.826667pt;}
.x8_c01279{left:591.360000pt;}
.x87_c01279{left:592.893333pt;}
.x9e_c01279{left:595.200000pt;}
.x2d_c01279{left:597.506667pt;}
.x121_c01279{left:599.813333pt;}
.xb0_c01279{left:601.346667pt;}
.x3c_c01279{left:602.880000pt;}
.x8f_c01279{left:605.186667pt;}
.xa7_c01279{left:606.720000pt;}
.x65_c01279{left:608.253333pt;}
.xd8_c01279{left:611.333333pt;}
.x90_c01279{left:612.866667pt;}
.x59_c01279{left:615.173333pt;}
.x4b_c01279{left:617.466667pt;}
.x27_c01279{left:619.013333pt;}
.x35_c01279{left:621.306667pt;}
.x1f_c01279{left:623.613333pt;}
.xf9_c01279{left:625.920000pt;}
.xb1_c01279{left:627.453333pt;}
.xae_c01279{left:629.760000pt;}
.x91_c01279{left:631.293333pt;}
.xb9_c01279{left:632.826667pt;}
.xc7_c01279{left:635.906667pt;}
.x66_c01279{left:637.440000pt;}
.xc2_c01279{left:640.506667pt;}
.x74_c01279{left:642.053333pt;}
.xa8_c01279{left:645.893333pt;}
.xcd_c01279{left:647.426667pt;}
.x92_c01279{left:649.733333pt;}
.x7d_c01279{left:651.266667pt;}
.xc8_c01279{left:652.800000pt;}
.x100_c01279{left:654.333333pt;}
.xe1_c01279{left:656.640000pt;}
.xd5_c01279{left:658.173333pt;}
.x3d_c01279{left:659.706667pt;}
.x97_c01279{left:662.013333pt;}
.x5a_c01279{left:665.853333pt;}
.xce_c01279{left:667.386667pt;}
.xd9_c01279{left:668.933333pt;}
.x67_c01279{left:670.466667pt;}
.x36_c01279{left:673.533333pt;}
.x9_c01279{left:675.066667pt;}
.x51_c01279{left:678.906667pt;}
.x115_c01279{left:681.213333pt;}
.xc3_c01279{left:682.746667pt;}
.x20_c01279{left:685.053333pt;}
.x4c_c01279{left:687.360000pt;}
.x112_c01279{left:688.893333pt;}
.x9f_c01279{left:690.426667pt;}
.xe2_c01279{left:691.973333pt;}
.x4d_c01279{left:695.813333pt;}
.x88_c01279{left:698.106667pt;}
.xcf_c01279{left:700.413333pt;}
.xbc_c01279{left:701.946667pt;}
.x109_c01279{left:704.253333pt;}
.xa9_c01279{left:706.560000pt;}
.x2e_c01279{left:708.866667pt;}
.xc4_c01279{left:711.933333pt;}
.xd0_c01279{left:713.466667pt;}
.x75_c01279{left:715.773333pt;}
.xaa_c01279{left:718.080000pt;}
.xda_c01279{left:721.920000pt;}
.x5b_c01279{left:723.453333pt;}
.x98_c01279{left:725.760000pt;}
.xa_c01279{left:727.293333pt;}
.x21_c01279{left:729.600000pt;}
.x15_c01279{left:731.133333pt;}
.x3e_c01279{left:733.440000pt;}
.xb2_c01279{left:734.973333pt;}
.xc5_c01279{left:737.280000pt;}
.xd1_c01279{left:740.346667pt;}
.x68_c01279{left:741.893333pt;}
.xfd_c01279{left:744.186667pt;}
.xa0_c01279{left:746.493333pt;}
.x16_c01279{left:748.800000pt;}
.x4e_c01279{left:751.866667pt;}
.x37_c01279{left:753.413333pt;}
.xf4_c01279{left:755.706667pt;}
.xd2_c01279{left:757.253333pt;}
.xe5_c01279{left:759.546667pt;}
.xf1_c01279{left:761.853333pt;}
.x7e_c01279{left:764.160000pt;}
.xdb_c01279{left:765.693333pt;}
.xbd_c01279{left:767.226667pt;}
.x5c_c01279{left:769.533333pt;}
.x5d_c01279{left:771.840000pt;}
.xc9_c01279{left:773.373333pt;}
.xf5_c01279{left:775.680000pt;}
.x101_c01279{left:777.213333pt;}
.xb3_c01279{left:778.746667pt;}
.xb_c01279{left:781.053333pt;}
.x89_c01279{left:782.586667pt;}
.x10f_c01279{left:788.733333pt;}
.x93_c01279{left:795.653333pt;}
.x5e_c01279{left:798.720000pt;}
.xf2_c01279{left:801.026667pt;}
.xbe_c01279{left:802.560000pt;}
.x7f_c01279{left:805.626667pt;}
.xbf_c01279{left:816.386667pt;}
.x8a_c01279{left:823.293333pt;}
.x12f_c01279{left:833.280000pt;}
.x12d_c01279{left:844.800000pt;}
.x12e_c01279{left:856.320000pt;}
.x12c_c01279{left:861.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_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_94c66ee6e4bb0de7046926db.woff2')format("woff");}.ff1_c01280{font-family:ff1_c01280;line-height:1.109863;font-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_c01280{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m145_c01280{transform:matrix(0.079250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079250,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01280{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m14b_c01280{transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01280{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.mc3_c01280{transform:matrix(0.101875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101875,0.000000,0.000000,0.250000,0,0);}
.m18b_c01280{transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);}
.m197_c01280{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);}
.m16d_c01280{transform:matrix(0.109425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109425,0.000000,0.000000,0.250000,0,0);}
.m66_c01280{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m131_c01280{transform:matrix(0.117400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117400,0.000000,0.000000,0.250000,0,0);}
.md6_c01280{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);}
.m19d_c01280{transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);}
.m93_c01280{transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);}
.mac_c01280{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);}
.m5c_c01280{transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122400,0.000000,0.000000,0.250000,0,0);}
.m102_c01280{transform:matrix(0.122725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122725,0.000000,0.000000,0.250000,0,0);}
.ma2_c01280{transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122875,0.000000,0.000000,0.250000,0,0);}
.m1be_c01280{transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);}
.m132_c01280{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m135_c01280{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.mb4_c01280{transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125225,0.000000,0.000000,0.250000,0,0);}
.m103_c01280{transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);}
.m179_c01280{transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);}
.m196_c01280{transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);}
.m5f_c01280{transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);}
.m170_c01280{transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01280{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);}
.m8b_c01280{transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);}
.m141_c01280{transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);}
.m165_c01280{transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);}
.m97_c01280{transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);}
.md7_c01280{transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135050,0.000000,0.000000,0.250000,0,0);}
.m174_c01280{transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);}
.m148_c01280{transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);}
.m38_c01280{transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);}
.m16e_c01280{transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);}
.mbc_c01280{transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);}
.m17b_c01280{transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);}
.m85_c01280{transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);}
.m81_c01280{transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);}
.m89_c01280{transform:matrix(0.141850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141850,0.000000,0.000000,0.250000,0,0);}
.m198_c01280{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.mc6_c01280{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.mbd_c01280{transform:matrix(0.143050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143050,0.000000,0.000000,0.250000,0,0);}
.m19c_c01280{transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);}
.mfc_c01280{transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);}
.m1_c01280{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m56_c01280{transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);}
.mcb_c01280{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.m68_c01280{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);}
.m90_c01280{transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);}
.m50_c01280{transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01280{transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01280{transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);}
.m24_c01280{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);}
.m36_c01280{transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);}
.m6a_c01280{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m101_c01280{transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);}
.m190_c01280{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);}
.m37_c01280{transform:matrix(0.149125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149125,0.000000,0.000000,0.250000,0,0);}
.m7b_c01280{transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);}
.mfd_c01280{transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01280{transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);}
.m9c_c01280{transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);}
.m3d_c01280{transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);}
.mcc_c01280{transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);}
.m182_c01280{transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);}
.m17a_c01280{transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);}
.m12c_c01280{transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);}
.mde_c01280{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.m69_c01280{transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);}
.mb2_c01280{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);}
.m177_c01280{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);}
.m147_c01280{transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);}
.mf1_c01280{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);}
.m7e_c01280{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m171_c01280{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);}
.m116_c01280{transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);}
.m5d_c01280{transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01280{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.m25_c01280{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.m5e_c01280{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.mcf_c01280{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m137_c01280{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);}
.m19f_c01280{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);}
.md3_c01280{transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01280{transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);}
.m183_c01280{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.mc8_c01280{transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);}
.m114_c01280{transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);}
.m99_c01280{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.m118_c01280{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.mab_c01280{transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);}
.m11f_c01280{transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);}
.m18d_c01280{transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);}
.m176_c01280{transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);}
.m19a_c01280{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.mfb_c01280{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01280{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m12f_c01280{transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);}
.ma9_c01280{transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);}
.m107_c01280{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m79_c01280{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);}
.m1ac_c01280{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m10c_c01280{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.maf_c01280{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m35_c01280{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);}
.m193_c01280{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m100_c01280{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.m60_c01280{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m191_c01280{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m57_c01280{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.md8_c01280{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01280{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m70_c01280{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.m14f_c01280{transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);}
.m74_c01280{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m12a_c01280{transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);}
.mb5_c01280{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m186_c01280{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.m105_c01280{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01280{transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);}
.m17_c01280{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01280{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.m91_c01280{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01280{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);}
.m121_c01280{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);}
.m128_c01280{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);}
.mad_c01280{transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01280{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.m17d_c01280{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m133_c01280{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);}
.m130_c01280{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m192_c01280{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01280{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.m18c_c01280{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.m20_c01280{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m149_c01280{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m17f_c01280{transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);}
.mb7_c01280{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);}
.mae_c01280{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.ma1_c01280{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m15f_c01280{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);}
.m164_c01280{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);}
.m62_c01280{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);}
.m13d_c01280{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m61_c01280{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);}
.md4_c01280{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m80_c01280{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);}
.mcd_c01280{transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);}
.md2_c01280{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);}
.mc4_c01280{transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);}
.m122_c01280{transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182025,0.000000,0.000000,0.250000,0,0);}
.mc_c01280{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01280{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);}
.m1c2_c01280{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);}
.m106_c01280{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m178_c01280{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m72_c01280{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.mbb_c01280{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01280{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.mdb_c01280{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);}
.m28_c01280{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);}
.m95_c01280{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);}
.mc1_c01280{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m1af_c01280{transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);}
.m172_c01280{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01280{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);}
.m16f_c01280{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.meb_c01280{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m13c_c01280{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m15b_c01280{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);}
.m113_c01280{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);}
.m7f_c01280{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m11c_c01280{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);}
.m1ad_c01280{transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);}
.mc7_c01280{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);}
.m1a3_c01280{transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188475,0.000000,0.000000,0.250000,0,0);}
.m11d_c01280{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.m8e_c01280{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m7c_c01280{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m184_c01280{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m115_c01280{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);}
.m1c7_c01280{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);}
.m199_c01280{transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);}
.m13b_c01280{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);}
.m3b_c01280{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m14a_c01280{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);}
.m96_c01280{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m9a_c01280{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m6c_c01280{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m53_c01280{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);}
.m59_c01280{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m32_c01280{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);}
.m151_c01280{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m142_c01280{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m48_c01280{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.m19e_c01280{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.m82_c01280{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mca_c01280{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);}
.m1c5_c01280{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);}
.m144_c01280{transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);}
.m10_c01280{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.mc0_c01280{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m108_c01280{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);}
.m92_c01280{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);}
.m1b0_c01280{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01280{transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);}
.m175_c01280{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);}
.m12e_c01280{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m112_c01280{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);}
.m11a_c01280{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);}
.m49_c01280{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);}
.m187_c01280{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);}
.m150_c01280{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.me3_c01280{transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);}
.md5_c01280{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mef_c01280{transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);}
.m6f_c01280{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m157_c01280{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m159_c01280{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.ma8_c01280{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);}
.m43_c01280{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.m10b_c01280{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.m3c_c01280{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.m1e_c01280{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.m8d_c01280{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m125_c01280{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m98_c01280{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.m161_c01280{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.m180_c01280{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m181_c01280{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.m160_c01280{transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);}
.me2_c01280{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.mb6_c01280{transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);}
.mc9_c01280{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);}
.m2e_c01280{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.mfa_c01280{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.m146_c01280{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m88_c01280{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.m117_c01280{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.md0_c01280{transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);}
.m18_c01280{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01280{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);}
.m15a_c01280{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);}
.m1c6_c01280{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.ma6_c01280{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m21_c01280{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.m127_c01280{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);}
.m14e_c01280{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);}
.m42_c01280{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);}
.m1ab_c01280{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);}
.m12b_c01280{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m73_c01280{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m185_c01280{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.mb3_c01280{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m33_c01280{transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211400,0.000000,0.000000,0.250000,0,0);}
.m16a_c01280{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);}
.m13f_c01280{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.mc5_c01280{transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);}
.m58_c01280{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m2a_c01280{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m14c_c01280{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.me7_c01280{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m6b_c01280{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m110_c01280{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);}
.m13a_c01280{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01280{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m94_c01280{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);}
.m152_c01280{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);}
.m11e_c01280{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);}
.m71_c01280{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m86_c01280{transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);}
.m19b_c01280{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.m83_c01280{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.m156_c01280{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);}
.m162_c01280{transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);}
.ma4_c01280{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m34_c01280{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.mf8_c01280{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.mce_c01280{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);}
.m126_c01280{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);}
.ma5_c01280{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);}
.mb8_c01280{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01280{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.mfe_c01280{transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);}
.m16b_c01280{transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);}
.m16c_c01280{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);}
.m39_c01280{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.md1_c01280{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m84_c01280{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m65_c01280{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);}
.m129_c01280{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.m2b_c01280{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01280{transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);}
.m19_c01280{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);}
.m15d_c01280{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.mf2_c01280{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);}
.m166_c01280{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);}
.m63_c01280{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.m12d_c01280{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);}
.me6_c01280{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);}
.m18f_c01280{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.m195_c01280{transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);}
.m4b_c01280{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);}
.m9e_c01280{transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);}
.m5a_c01280{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mdc_c01280{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m138_c01280{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m6d_c01280{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);}
.m13e_c01280{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);}
.m123_c01280{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.m4d_c01280{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.mc2_c01280{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);}
.m1a5_c01280{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m11_c01280{transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);}
.me_c01280{transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);}
.mdf_c01280{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_c01280{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m168_c01280{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.m77_c01280{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);}
.mee_c01280{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);}
.m140_c01280{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);}
.m1a8_c01280{transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);}
.mdd_c01280{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01280{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);}
.m155_c01280{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);}
.me0_c01280{transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);}
.mec_c01280{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.me4_c01280{transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235550,0.000000,0.000000,0.250000,0,0);}
.m18e_c01280{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);}
.m169_c01280{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.mda_c01280{transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);}
.m17e_c01280{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);}
.m2c_c01280{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);}
.m104_c01280{transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);}
.m29_c01280{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);}
.m17c_c01280{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m8c_c01280{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.mf6_c01280{transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);}
.m18a_c01280{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.m4a_c01280{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01280{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);}
.m1a9_c01280{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);}
.m2f_c01280{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);}
.mea_c01280{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);}
.med_c01280{transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);}
.m7d_c01280{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);}
.m188_c01280{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);}
.m2d_c01280{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01280{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01280{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.mf4_c01280{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);}
.m124_c01280{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);}
.mbf_c01280{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);}
.m41_c01280{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m54_c01280{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.ma7_c01280{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);}
.me8_c01280{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m111_c01280{transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);}
.m5b_c01280{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);}
.m9b_c01280{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);}
.m163_c01280{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m10f_c01280{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.mff_c01280{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);}
.m45_c01280{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);}
.m139_c01280{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);}
.me5_c01280{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m47_c01280{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);}
.m4c_c01280{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);}
.m87_c01280{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);}
.m8a_c01280{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);}
.m1d_c01280{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5_c01280{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m52_c01280{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb0_c01280{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7_c01280{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);}
.mf_c01280{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);}
.m2_c01280{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01280{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);}
.md_c01280{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01280{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb1_c01280{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);}
.m22_c01280{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m120_c01280{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);}
.m1c_c01280{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);}
.m44_c01280{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01280{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01280{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);}
.md9_c01280{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01280{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me1_c01280{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);}
.m75_c01280{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01280{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m15_c01280{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m55_c01280{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m46_c01280{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c01280{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01280{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01280{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c01280{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);}
.m7a_c01280{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10a_c01280{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb_c01280{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m16_c01280{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c01280{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);}
.m1c8_c01280{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);}
.ma3_c01280{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf7_c01280{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.maa_c01280{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mf3_c01280{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m167_c01280{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mba_c01280{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m15e_c01280{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);}
.m136_c01280{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m9_c01280{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);}
.m9d_c01280{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01280{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);}
.m109_c01280{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m64_c01280{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m158_c01280{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mf9_c01280{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.ma_c01280{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m8f_c01280{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);}
.m78_c01280{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m15c_c01280{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m189_c01280{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);}
.m173_c01280{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m10d_c01280{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m76_c01280{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m67_c01280{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m31_c01280{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m6_c01280{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);}
.mf0_c01280{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m11b_c01280{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mf5_c01280{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mbe_c01280{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01280{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m23_c01280{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);}
.m27_c01280{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m143_c01280{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m51_c01280{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);}
.m1b3_c01280{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);}
.m1cd_c01280{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m10e_c01280{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m134_c01280{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m26_c01280{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m194_c01280{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m153_c01280{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.me9_c01280{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01280{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01280{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01280{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m119_c01280{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01280{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01280{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.ma0_c01280{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);}
.m154_c01280{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01280{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m14_c01280{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m30_c01280{transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);}
.m40_c01280{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m14d_c01280{transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);}
.m0_c01280{transform:matrix(16.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(16.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(16.560000,0.000000,0.000000,0.250000,0,0);}
.v0_c01280{vertical-align:0.000000px;}
.ls1_c01280{letter-spacing:0.000000px;}
.ls0_c01280{letter-spacing:53.102688px;}
.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:-11.412240px;}
.ws1_c01280{word-spacing:0.000000px;}
.fc0_c01280{color:transparent;}
.fs1_c01280{font-size:3.456000px;}
.fs3_c01280{font-size:6.000000px;}
.fs0_c01280{font-size:6.900000px;}
.fs10_c01280{font-size:10.380000px;}
.fs17_c01280{font-size:13.800000px;}
.fs2_c01280{font-size:17.280000px;}
.fs19_c01280{font-size:20.760000px;}
.fs1c_c01280{font-size:24.180000px;}
.fs18_c01280{font-size:27.660000px;}
.fs16_c01280{font-size:31.080000px;}
.fs14_c01280{font-size:34.560000px;}
.fs1a_c01280{font-size:38.040000px;}
.fsf_c01280{font-size:41.460000px;}
.fs9_c01280{font-size:44.940000px;}
.fs11_c01280{font-size:48.360000px;}
.fs13_c01280{font-size:51.840000px;}
.fse_c01280{font-size:55.320000px;}
.fsd_c01280{font-size:58.740000px;}
.fs7_c01280{font-size:62.220000px;}
.fsa_c01280{font-size:65.640000px;}
.fs6_c01280{font-size:69.120000px;}
.fs5_c01280{font-size:72.600000px;}
.fs4_c01280{font-size:76.020000px;}
.fsc_c01280{font-size:79.500000px;}
.fs8_c01280{font-size:82.920000px;}
.fs1b_c01280{font-size:86.400000px;}
.fs15_c01280{font-size:89.880000px;}
.fs12_c01280{font-size:93.300000px;}
.fs1e_c01280{font-size:96.780000px;}
.fs1d_c01280{font-size:100.200000px;}
.fsb_c01280{font-size:107.160000px;}
.y0_c01280{bottom:0.000000px;}
.y1e9_c01280{bottom:154.650000px;}
.y1e8_c01280{bottom:156.390000px;}
.y1e4_c01280{bottom:159.840000px;}
.y1e5_c01280{bottom:162.435000px;}
.y1ea_c01280{bottom:163.290000px;}
.y1e6_c01280{bottom:166.755000px;}
.y1e7_c01280{bottom:167.610000px;}
.y1eb_c01280{bottom:169.350000px;}
.y1e0_c01280{bottom:170.205000px;}
.y1de_c01280{bottom:171.075000px;}
.y1df_c01280{bottom:171.930000px;}
.y1e2_c01280{bottom:173.670000px;}
.y1dc_c01280{bottom:175.395000px;}
.y1dd_c01280{bottom:176.250000px;}
.y1e3_c01280{bottom:182.310000px;}
.y1e1_c01280{bottom:185.760000px;}
.y1d7_c01280{bottom:191.805000px;}
.y1d5_c01280{bottom:192.675000px;}
.y1d9_c01280{bottom:196.125000px;}
.y1d6_c01280{bottom:196.995000px;}
.y1d4_c01280{bottom:197.850000px;}
.y1d8_c01280{bottom:198.720000px;}
.y1da_c01280{bottom:199.590000px;}
.y1d3_c01280{bottom:204.765000px;}
.y1db_c01280{bottom:209.955000px;}
.y1ce_c01280{bottom:211.680000px;}
.y1cc_c01280{bottom:213.405000px;}
.y1d1_c01280{bottom:214.275000px;}
.y1cd_c01280{bottom:215.130000px;}
.y1cf_c01280{bottom:216.000000px;}
.y1d2_c01280{bottom:222.915000px;}
.y1d0_c01280{bottom:228.090000px;}
.y1c3_c01280{bottom:231.555000px;}
.y1c8_c01280{bottom:234.150000px;}
.y1c7_c01280{bottom:235.005000px;}
.y1c4_c01280{bottom:235.875000px;}
.y1cb_c01280{bottom:236.730000px;}
.y1c2_c01280{bottom:237.600000px;}
.y1c5_c01280{bottom:238.470000px;}
.y1ca_c01280{bottom:239.325000px;}
.y1c9_c01280{bottom:240.195000px;}
.y1c6_c01280{bottom:249.690000px;}
.y1bc_c01280{bottom:250.560000px;}
.y1bb_c01280{bottom:251.430000px;}
.y1c0_c01280{bottom:254.010000px;}
.y1bf_c01280{bottom:254.880000px;}
.y1c1_c01280{bottom:255.750000px;}
.y1bd_c01280{bottom:260.070000px;}
.y1be_c01280{bottom:265.245000px;}
.y1b2_c01280{bottom:268.710000px;}
.y1b7_c01280{bottom:269.565000px;}
.y1b4_c01280{bottom:270.435000px;}
.y1ba_c01280{bottom:271.290000px;}
.y1b3_c01280{bottom:273.030000px;}
.y1b6_c01280{bottom:273.885000px;}
.y1b9_c01280{bottom:274.755000px;}
.y1b5_c01280{bottom:278.205000px;}
.y1b8_c01280{bottom:279.930000px;}
.y1a8_c01280{bottom:292.035000px;}
.y1aa_c01280{bottom:292.890000px;}
.y1b0_c01280{bottom:293.760000px;}
.y1ac_c01280{bottom:295.485000px;}
.y1ae_c01280{bottom:296.355000px;}
.y1af_c01280{bottom:297.210000px;}
.y1a9_c01280{bottom:298.080000px;}
.y1ab_c01280{bottom:300.675000px;}
.y1ad_c01280{bottom:301.530000px;}
.y1b1_c01280{bottom:303.270000px;}
.y1a2_c01280{bottom:312.765000px;}
.y1a4_c01280{bottom:315.360000px;}
.y1a6_c01280{bottom:316.230000px;}
.y1a7_c01280{bottom:317.085000px;}
.y1a1_c01280{bottom:317.955000px;}
.y1a3_c01280{bottom:319.680000px;}
.y1a5_c01280{bottom:321.405000px;}
.y19a_c01280{bottom:334.365000px;}
.y19e_c01280{bottom:336.090000px;}
.y19c_c01280{bottom:336.960000px;}
.y199_c01280{bottom:338.685000px;}
.y198_c01280{bottom:339.555000px;}
.y19b_c01280{bottom:341.280000px;}
.y19d_c01280{bottom:342.150000px;}
.y19f_c01280{bottom:343.005000px;}
.y1a0_c01280{bottom:343.875000px;}
.y191_c01280{bottom:355.110000px;}
.y193_c01280{bottom:356.835000px;}
.y194_c01280{bottom:360.285000px;}
.y192_c01280{bottom:361.155000px;}
.y195_c01280{bottom:362.010000px;}
.y196_c01280{bottom:362.880000px;}
.y197_c01280{bottom:363.750000px;}
.y189_c01280{bottom:373.245000px;}
.y18b_c01280{bottom:374.115000px;}
.y18d_c01280{bottom:375.840000px;}
.y18c_c01280{bottom:376.710000px;}
.y18e_c01280{bottom:378.435000px;}
.y18a_c01280{bottom:381.030000px;}
.y190_c01280{bottom:382.755000px;}
.y18f_c01280{bottom:383.610000px;}
.y183_c01280{bottom:396.570000px;}
.y185_c01280{bottom:397.440000px;}
.y186_c01280{bottom:398.310000px;}
.y182_c01280{bottom:399.165000px;}
.y184_c01280{bottom:400.890000px;}
.y187_c01280{bottom:404.355000px;}
.y188_c01280{bottom:405.210000px;}
.y17d_c01280{bottom:414.720000px;}
.y17c_c01280{bottom:415.590000px;}
.y17e_c01280{bottom:417.315000px;}
.y17f_c01280{bottom:418.170000px;}
.y17b_c01280{bottom:419.910000px;}
.y181_c01280{bottom:421.635000px;}
.y180_c01280{bottom:423.360000px;}
.y170_c01280{bottom:437.190000px;}
.y176_c01280{bottom:439.770000px;}
.y178_c01280{bottom:440.640000px;}
.y171_c01280{bottom:441.510000px;}
.y16f_c01280{bottom:442.365000px;}
.y172_c01280{bottom:443.235000px;}
.y177_c01280{bottom:444.090000px;}
.y17a_c01280{bottom:444.960000px;}
.y173_c01280{bottom:445.830000px;}
.y175_c01280{bottom:447.555000px;}
.y179_c01280{bottom:449.280000px;}
.y174_c01280{bottom:454.470000px;}
.y168_c01280{bottom:457.050000px;}
.y16b_c01280{bottom:458.790000px;}
.y16c_c01280{bottom:459.645000px;}
.y165_c01280{bottom:460.515000px;}
.y169_c01280{bottom:461.370000px;}
.y167_c01280{bottom:462.240000px;}
.y166_c01280{bottom:463.110000px;}
.y16d_c01280{bottom:463.965000px;}
.y16e_c01280{bottom:464.835000px;}
.y16a_c01280{bottom:470.880000px;}
.y15e_c01280{bottom:476.925000px;}
.y15d_c01280{bottom:477.795000px;}
.y162_c01280{bottom:479.520000px;}
.y164_c01280{bottom:480.390000px;}
.y163_c01280{bottom:481.245000px;}
.y15c_c01280{bottom:482.970000px;}
.y15f_c01280{bottom:483.840000px;}
.y161_c01280{bottom:485.565000px;}
.y160_c01280{bottom:486.435000px;}
.y15b_c01280{bottom:495.930000px;}
.y154_c01280{bottom:497.670000px;}
.y153_c01280{bottom:498.525000px;}
.y156_c01280{bottom:499.395000px;}
.y158_c01280{bottom:500.250000px;}
.y15a_c01280{bottom:501.120000px;}
.y155_c01280{bottom:503.715000px;}
.y157_c01280{bottom:505.440000px;}
.y159_c01280{bottom:506.310000px;}
.y14d_c01280{bottom:516.675000px;}
.y14c_c01280{bottom:519.270000px;}
.y150_c01280{bottom:520.125000px;}
.y14f_c01280{bottom:520.995000px;}
.y14e_c01280{bottom:522.720000px;}
.y14b_c01280{bottom:524.445000px;}
.y152_c01280{bottom:527.040000px;}
.y151_c01280{bottom:528.765000px;}
.y14a_c01280{bottom:532.230000px;}
.y149_c01280{bottom:533.085000px;}
.y144_c01280{bottom:537.405000px;}
.y143_c01280{bottom:538.275000px;}
.y148_c01280{bottom:541.725000px;}
.y146_c01280{bottom:542.595000px;}
.y145_c01280{bottom:543.450000px;}
.y147_c01280{bottom:544.320000px;}
.y13c_c01280{bottom:558.150000px;}
.y13d_c01280{bottom:559.875000px;}
.y141_c01280{bottom:561.600000px;}
.y13e_c01280{bottom:563.325000px;}
.y140_c01280{bottom:565.920000px;}
.y142_c01280{bottom:566.790000px;}
.y13f_c01280{bottom:571.110000px;}
.y136_c01280{bottom:578.010000px;}
.y135_c01280{bottom:578.880000px;}
.y137_c01280{bottom:580.605000px;}
.y13a_c01280{bottom:581.475000px;}
.y138_c01280{bottom:584.070000px;}
.y134_c01280{bottom:584.925000px;}
.y139_c01280{bottom:587.520000px;}
.y13b_c01280{bottom:591.840000px;}
.y12b_c01280{bottom:596.160000px;}
.y12c_c01280{bottom:598.755000px;}
.y12d_c01280{bottom:599.610000px;}
.y130_c01280{bottom:600.480000px;}
.y12e_c01280{bottom:602.205000px;}
.y12f_c01280{bottom:603.075000px;}
.y131_c01280{bottom:605.670000px;}
.y133_c01280{bottom:607.395000px;}
.y132_c01280{bottom:610.845000px;}
.y125_c01280{bottom:618.630000px;}
.y123_c01280{bottom:619.485000px;}
.y127_c01280{bottom:620.355000px;}
.y124_c01280{bottom:621.210000px;}
.y12a_c01280{bottom:622.080000px;}
.y128_c01280{bottom:623.805000px;}
.y126_c01280{bottom:624.675000px;}
.y129_c01280{bottom:627.270000px;}
.y11e_c01280{bottom:640.230000px;}
.y11d_c01280{bottom:644.550000px;}
.y11f_c01280{bottom:645.405000px;}
.y122_c01280{bottom:646.275000px;}
.y120_c01280{bottom:647.130000px;}
.y121_c01280{bottom:648.000000px;}
.y117_c01280{bottom:657.510000px;}
.y118_c01280{bottom:659.235000px;}
.y11c_c01280{bottom:661.830000px;}
.y11b_c01280{bottom:663.555000px;}
.y119_c01280{bottom:664.410000px;}
.y11a_c01280{bottom:665.280000px;}
.y111_c01280{bottom:678.240000px;}
.y112_c01280{bottom:680.835000px;}
.y113_c01280{bottom:683.430000px;}
.y116_c01280{bottom:685.155000px;}
.y115_c01280{bottom:686.010000px;}
.y114_c01280{bottom:686.880000px;}
.y109_c01280{bottom:695.520000px;}
.y108_c01280{bottom:696.390000px;}
.y10d_c01280{bottom:697.245000px;}
.y10c_c01280{bottom:698.115000px;}
.y107_c01280{bottom:702.435000px;}
.y10a_c01280{bottom:704.160000px;}
.y10e_c01280{bottom:705.885000px;}
.y10b_c01280{bottom:706.755000px;}
.y106_c01280{bottom:708.480000px;}
.y10f_c01280{bottom:710.205000px;}
.y101_c01280{bottom:718.845000px;}
.y100_c01280{bottom:719.715000px;}
.y110_c01280{bottom:720.570000px;}
.y105_c01280{bottom:721.440000px;}
.y103_c01280{bottom:722.310000px;}
.y102_c01280{bottom:724.035000px;}
.y104_c01280{bottom:726.630000px;}
.yfc_c01280{bottom:738.720000px;}
.yfb_c01280{bottom:741.315000px;}
.yfd_c01280{bottom:744.765000px;}
.yff_c01280{bottom:746.490000px;}
.yfe_c01280{bottom:747.360000px;}
.yfa_c01280{bottom:748.230000px;}
.yf5_c01280{bottom:759.450000px;}
.yf4_c01280{bottom:760.320000px;}
.yf8_c01280{bottom:761.190000px;}
.yf9_c01280{bottom:762.045000px;}
.yf7_c01280{bottom:762.915000px;}
.yf6_c01280{bottom:766.365000px;}
.yeb_c01280{bottom:780.195000px;}
.yee_c01280{bottom:781.050000px;}
.yef_c01280{bottom:781.920000px;}
.yed_c01280{bottom:782.790000px;}
.yf3_c01280{bottom:784.515000px;}
.yec_c01280{bottom:785.370000px;}
.yf1_c01280{bottom:787.110000px;}
.yf0_c01280{bottom:787.965000px;}
.yf2_c01280{bottom:788.835000px;}
.ye7_c01280{bottom:800.925000px;}
.ye4_c01280{bottom:801.795000px;}
.ye6_c01280{bottom:802.650000px;}
.yea_c01280{bottom:803.520000px;}
.ye5_c01280{bottom:805.245000px;}
.ye3_c01280{bottom:806.115000px;}
.ye8_c01280{bottom:806.970000px;}
.ye9_c01280{bottom:807.840000px;}
.ydc_c01280{bottom:819.075000px;}
.ydd_c01280{bottom:820.800000px;}
.ye1_c01280{bottom:821.670000px;}
.ye2_c01280{bottom:822.525000px;}
.y1f8_c01280{bottom:825.120000px;}
.yde_c01280{bottom:825.990000px;}
.ydf_c01280{bottom:826.845000px;}
.ye0_c01280{bottom:828.570000px;}
.yd4_c01280{bottom:840.675000px;}
.yd3_c01280{bottom:841.530000px;}
.yd7_c01280{bottom:842.400000px;}
.yd5_c01280{bottom:844.995000px;}
.yd6_c01280{bottom:845.850000px;}
.ydb_c01280{bottom:847.590000px;}
.yda_c01280{bottom:850.170000px;}
.yd9_c01280{bottom:851.040000px;}
.yd8_c01280{bottom:857.955000px;}
.ycd_c01280{bottom:860.550000px;}
.ycc_c01280{bottom:861.405000px;}
.yd1_c01280{bottom:862.275000px;}
.ycf_c01280{bottom:864.870000px;}
.yce_c01280{bottom:865.725000px;}
.ycb_c01280{bottom:866.595000px;}
.yd0_c01280{bottom:867.450000px;}
.yd2_c01280{bottom:874.365000px;}
.yc5_c01280{bottom:879.555000px;}
.yc4_c01280{bottom:880.410000px;}
.yc7_c01280{bottom:881.280000px;}
.yc9_c01280{bottom:882.150000px;}
.yc6_c01280{bottom:883.875000px;}
.yc3_c01280{bottom:884.730000px;}
.yca_c01280{bottom:887.325000px;}
.yc8_c01280{bottom:888.195000px;}
.ybb_c01280{bottom:900.285000px;}
.ybe_c01280{bottom:902.010000px;}
.yc1_c01280{bottom:902.880000px;}
.ybc_c01280{bottom:903.750000px;}
.ybd_c01280{bottom:905.475000px;}
.ybf_c01280{bottom:906.330000px;}
.yc0_c01280{bottom:908.070000px;}
.yc2_c01280{bottom:908.925000px;}
.yb3_c01280{bottom:920.160000px;}
.yb5_c01280{bottom:921.885000px;}
.yb9_c01280{bottom:923.610000px;}
.yba_c01280{bottom:924.480000px;}
.yb7_c01280{bottom:925.350000px;}
.yb4_c01280{bottom:927.075000px;}
.yb8_c01280{bottom:927.930000px;}
.y1f6_c01280{bottom:931.395000px;}
.yb6_c01280{bottom:936.570000px;}
.yac_c01280{bottom:940.890000px;}
.yad_c01280{bottom:941.760000px;}
.yae_c01280{bottom:942.630000px;}
.yb0_c01280{bottom:946.080000px;}
.yaf_c01280{bottom:946.950000px;}
.yb2_c01280{bottom:956.445000px;}
.yb1_c01280{bottom:959.910000px;}
.ya6_c01280{bottom:961.635000px;}
.ya7_c01280{bottom:963.360000px;}
.ya9_c01280{bottom:964.230000px;}
.ya8_c01280{bottom:965.085000px;}
.yaa_c01280{bottom:968.550000px;}
.yab_c01280{bottom:970.275000px;}
.y1f5_c01280{bottom:973.725000px;}
.ya0_c01280{bottom:981.510000px;}
.ya1_c01280{bottom:982.365000px;}
.y9f_c01280{bottom:983.235000px;}
.ya2_c01280{bottom:984.090000px;}
.ya3_c01280{bottom:986.685000px;}
.ya5_c01280{bottom:987.555000px;}
.ya4_c01280{bottom:990.150000px;}
.y9d_c01280{bottom:995.325000px;}
.y9e_c01280{bottom:997.050000px;}
.y98_c01280{bottom:1001.370000px;}
.y93_c01280{bottom:1002.240000px;}
.y99_c01280{bottom:1003.110000px;}
.y9a_c01280{bottom:1003.965000px;}
.y96_c01280{bottom:1004.835000px;}
.y94_c01280{bottom:1005.690000px;}
.y9b_c01280{bottom:1006.560000px;}
.y97_c01280{bottom:1007.430000px;}
.y95_c01280{bottom:1008.285000px;}
.y9c_c01280{bottom:1010.880000px;}
.y89_c01280{bottom:1022.115000px;}
.y8b_c01280{bottom:1022.970000px;}
.y8a_c01280{bottom:1023.840000px;}
.y8f_c01280{bottom:1024.710000px;}
.y92_c01280{bottom:1025.565000px;}
.y91_c01280{bottom:1026.435000px;}
.y8c_c01280{bottom:1028.160000px;}
.y8e_c01280{bottom:1029.885000px;}
.y90_c01280{bottom:1030.755000px;}
.y8d_c01280{bottom:1031.610000px;}
.y81_c01280{bottom:1043.715000px;}
.y83_c01280{bottom:1044.570000px;}
.y87_c01280{bottom:1045.440000px;}
.y84_c01280{bottom:1046.310000px;}
.y85_c01280{bottom:1047.165000px;}
.y82_c01280{bottom:1048.035000px;}
.y86_c01280{bottom:1048.890000px;}
.y80_c01280{bottom:1050.630000px;}
.y88_c01280{bottom:1060.995000px;}
.y79_c01280{bottom:1061.850000px;}
.y7b_c01280{bottom:1064.445000px;}
.y7c_c01280{bottom:1065.315000px;}
.y7f_c01280{bottom:1067.040000px;}
.y7a_c01280{bottom:1067.910000px;}
.y78_c01280{bottom:1068.765000px;}
.y7d_c01280{bottom:1070.490000px;}
.y7e_c01280{bottom:1071.360000px;}
.y6f_c01280{bottom:1080.000000px;}
.y72_c01280{bottom:1083.450000px;}
.y71_c01280{bottom:1084.320000px;}
.y73_c01280{bottom:1086.915000px;}
.y70_c01280{bottom:1087.770000px;}
.y75_c01280{bottom:1088.640000px;}
.y74_c01280{bottom:1090.365000px;}
.y77_c01280{bottom:1091.235000px;}
.y76_c01280{bottom:1092.090000px;}
.y1f4_c01280{bottom:1093.830000px;}
.y67_c01280{bottom:1102.470000px;}
.y68_c01280{bottom:1104.195000px;}
.y6a_c01280{bottom:1105.050000px;}
.y6e_c01280{bottom:1105.920000px;}
.y6b_c01280{bottom:1106.790000px;}
.y66_c01280{bottom:1108.515000px;}
.y69_c01280{bottom:1110.240000px;}
.y6c_c01280{bottom:1111.110000px;}
.y6d_c01280{bottom:1111.965000px;}
.y65_c01280{bottom:1112.835000px;}
.y64_c01280{bottom:1115.430000px;}
.y5a_c01280{bottom:1123.200000px;}
.y5e_c01280{bottom:1124.925000px;}
.y63_c01280{bottom:1125.795000px;}
.y5b_c01280{bottom:1127.520000px;}
.y5d_c01280{bottom:1128.390000px;}
.y5c_c01280{bottom:1129.245000px;}
.y5f_c01280{bottom:1130.115000px;}
.y60_c01280{bottom:1130.970000px;}
.y61_c01280{bottom:1131.840000px;}
.y62_c01280{bottom:1132.710000px;}
.y59_c01280{bottom:1136.160000px;}
.y1f3_c01280{bottom:1137.030000px;}
.y53_c01280{bottom:1143.930000px;}
.y52_c01280{bottom:1144.800000px;}
.y55_c01280{bottom:1145.670000px;}
.y54_c01280{bottom:1146.525000px;}
.y58_c01280{bottom:1147.395000px;}
.y56_c01280{bottom:1148.250000px;}
.y57_c01280{bottom:1152.570000px;}
.y51_c01280{bottom:1156.035000px;}
.y4b_c01280{bottom:1162.950000px;}
.y4a_c01280{bottom:1164.675000px;}
.y47_c01280{bottom:1165.530000px;}
.y49_c01280{bottom:1166.400000px;}
.y48_c01280{bottom:1168.995000px;}
.y4c_c01280{bottom:1171.590000px;}
.y4e_c01280{bottom:1172.445000px;}
.y4d_c01280{bottom:1173.315000px;}
.y4f_c01280{bottom:1181.085000px;}
.y46_c01280{bottom:1181.955000px;}
.y50_c01280{bottom:1182.810000px;}
.y3e_c01280{bottom:1184.550000px;}
.y3f_c01280{bottom:1185.405000px;}
.y40_c01280{bottom:1186.275000px;}
.y45_c01280{bottom:1187.130000px;}
.y44_c01280{bottom:1188.000000px;}
.y41_c01280{bottom:1190.595000px;}
.y42_c01280{bottom:1191.450000px;}
.y43_c01280{bottom:1192.320000px;}
.y3d_c01280{bottom:1197.510000px;}
.y36_c01280{bottom:1203.555000px;}
.y35_c01280{bottom:1205.280000px;}
.y38_c01280{bottom:1206.150000px;}
.y3b_c01280{bottom:1207.005000px;}
.y37_c01280{bottom:1210.470000px;}
.y3a_c01280{bottom:1211.325000px;}
.y39_c01280{bottom:1212.195000px;}
.y3c_c01280{bottom:1224.285000px;}
.y2e_c01280{bottom:1226.010000px;}
.y2f_c01280{bottom:1226.880000px;}
.y33_c01280{bottom:1227.750000px;}
.y34_c01280{bottom:1229.475000px;}
.y30_c01280{bottom:1231.200000px;}
.y31_c01280{bottom:1232.925000px;}
.y2d_c01280{bottom:1233.795000px;}
.y32_c01280{bottom:1236.390000px;}
.y29_c01280{bottom:1245.885000px;}
.y28_c01280{bottom:1246.755000px;}
.y26_c01280{bottom:1248.480000px;}
.y2a_c01280{bottom:1249.350000px;}
.y25_c01280{bottom:1251.075000px;}
.y27_c01280{bottom:1251.930000px;}
.y2b_c01280{bottom:1252.800000px;}
.y2c_c01280{bottom:1253.670000px;}
.y24_c01280{bottom:1255.395000px;}
.y23_c01280{bottom:1262.310000px;}
.y1e_c01280{bottom:1265.760000px;}
.y21_c01280{bottom:1267.485000px;}
.y1d_c01280{bottom:1268.355000px;}
.y20_c01280{bottom:1269.210000px;}
.y1f_c01280{bottom:1270.950000px;}
.y22_c01280{bottom:1274.400000px;}
.y18_c01280{bottom:1286.490000px;}
.y16_c01280{bottom:1287.360000px;}
.y19_c01280{bottom:1289.085000px;}
.y14_c01280{bottom:1289.955000px;}
.y17_c01280{bottom:1290.810000px;}
.y15_c01280{bottom:1291.680000px;}
.y1a_c01280{bottom:1292.550000px;}
.y1c_c01280{bottom:1293.405000px;}
.y1b_c01280{bottom:1294.275000px;}
.y13_c01280{bottom:1298.595000px;}
.y1f2_c01280{bottom:1300.320000px;}
.yd_c01280{bottom:1305.510000px;}
.ye_c01280{bottom:1307.235000px;}
.y12_c01280{bottom:1308.090000px;}
.yf_c01280{bottom:1311.555000px;}
.y10_c01280{bottom:1312.410000px;}
.y11_c01280{bottom:1314.150000px;}
.y8_c01280{bottom:1332.285000px;}
.y5_c01280{bottom:1339.200000px;}
.y6_c01280{bottom:1340.070000px;}
.y9_c01280{bottom:1340.925000px;}
.yc_c01280{bottom:1342.650000px;}
.y7_c01280{bottom:1344.390000px;}
.y4_c01280{bottom:1345.245000px;}
.ya_c01280{bottom:1346.970000px;}
.yb_c01280{bottom:1348.710000px;}
.y1f7_c01280{bottom:1353.885000px;}
.y1_c01280{bottom:1363.395000px;}
.y3_c01280{bottom:1364.250000px;}
.y2_c01280{bottom:1365.990000px;}
.y1ef_c01280{bottom:1367.715000px;}
.y1f1_c01280{bottom:1368.570000px;}
.y1f0_c01280{bottom:1370.310000px;}
.y1ee_c01280{bottom:1375.485000px;}
.y1ed_c01280{bottom:1410.045000px;}
.y1ec_c01280{bottom:1413.510000px;}
.h3_c01280{height:3.110063px;}
.h5_c01280{height:5.399414px;}
.h2_c01280{height:6.209326px;}
.h12_c01280{height:9.340986px;}
.h19_c01280{height:12.418652px;}
.h4_c01280{height:15.550313px;}
.h1b_c01280{height:18.681973px;}
.h1e_c01280{height:21.759639px;}
.h1a_c01280{height:24.891299px;}
.h18_c01280{height:27.968965px;}
.h16_c01280{height:31.100625px;}
.h1c_c01280{height:34.232285px;}
.h11_c01280{height:37.309951px;}
.hb_c01280{height:40.441611px;}
.h13_c01280{height:43.519277px;}
.h15_c01280{height:46.650937px;}
.h10_c01280{height:49.782598px;}
.hf_c01280{height:52.860264px;}
.h9_c01280{height:55.991924px;}
.hc_c01280{height:59.069590px;}
.h8_c01280{height:62.201250px;}
.h7_c01280{height:65.332910px;}
.h6_c01280{height:68.410576px;}
.he_c01280{height:71.542236px;}
.ha_c01280{height:74.619902px;}
.h1d_c01280{height:77.751563px;}
.h17_c01280{height:80.883223px;}
.h14_c01280{height:83.960889px;}
.h20_c01280{height:87.092549px;}
.h1f_c01280{height:90.170215px;}
.hd_c01280{height:96.433535px;}
.h1_c01280{height:1518.750000px;}
.h0_c01280{height:1518.915000px;}
.w0_c01280{width:1085.190000px;}
.w1_c01280{width:1085.250000px;}
.x0_c01280{left:0.000000px;}
.x119_c01280{left:132.195000px;}
.x94_c01280{left:140.835000px;}
.x9e_c01280{left:142.560000px;}
.x11a_c01280{left:146.880000px;}
.x11b_c01280{left:158.115000px;}
.x11c_c01280{left:161.565000px;}
.x9f_c01280{left:168.480000px;}
.x95_c01280{left:182.310000px;}
.x76_c01280{left:190.080000px;}
.x96_c01280{left:192.675000px;}
.x90_c01280{left:196.125000px;}
.x97_c01280{left:200.445000px;}
.xd0_c01280{left:207.360000px;}
.x71_c01280{left:210.810000px;}
.x98_c01280{left:212.550000px;}
.xbb_c01280{left:215.130000px;}
.x5f_c01280{left:216.870000px;}
.xd7_c01280{left:218.595000px;}
.x35_c01280{left:221.190000px;}
.xf5_c01280{left:222.915000px;}
.x6c_c01280{left:224.640000px;}
.x55_c01280{left:226.365000px;}
.x1d_c01280{left:228.960000px;}
.x60_c01280{left:231.555000px;}
.x14_c01280{left:233.280000px;}
.x36_c01280{left:235.005000px;}
.x1e_c01280{left:236.730000px;}
.x99_c01280{left:245.370000px;}
.xfc_c01280{left:247.965000px;}
.x37_c01280{left:254.880000px;}
.xb2_c01280{left:258.330000px;}
.x56_c01280{left:260.925000px;}
.xc1_c01280{left:262.650000px;}
.x15_c01280{left:265.245000px;}
.x38_c01280{left:267.840000px;}
.xd1_c01280{left:273.030000px;}
.x84_c01280{left:275.610000px;}
.xd8_c01280{left:277.350000px;}
.x104_c01280{left:279.075000px;}
.x107_c01280{left:282.525000px;}
.x1f_c01280{left:285.120000px;}
.xcc_c01280{left:286.845000px;}
.x61_c01280{left:290.310000px;}
.xa2_c01280{left:292.035000px;}
.x10b_c01280{left:293.760000px;}
.x39_c01280{left:295.485000px;}
.xf9_c01280{left:297.210000px;}
.xa6_c01280{left:299.805000px;}
.x42_c01280{left:304.125000px;}
.x9a_c01280{left:305.850000px;}
.x57_c01280{left:312.765000px;}
.x2d_c01280{left:315.360000px;}
.x7d_c01280{left:318.810000px;}
.xb3_c01280{left:321.405000px;}
.x3a_c01280{left:323.130000px;}
.x62_c01280{left:325.725000px;}
.x4c_c01280{left:327.450000px;}
.xb4_c01280{left:329.190000px;}
.xd2_c01280{left:330.915000px;}
.x105_c01280{left:332.640000px;}
.xd9_c01280{left:334.365000px;}
.x20_c01280{left:336.090000px;}
.xfd_c01280{left:338.685000px;}
.xbc_c01280{left:342.150000px;}
.x77_c01280{left:344.730000px;}
.xb5_c01280{left:346.470000px;}
.x4_c01280{left:348.195000px;}
.x3b_c01280{left:350.790000px;}
.xa3_c01280{left:352.515000px;}
.x5_c01280{left:355.965000px;}
.x87_c01280{left:360.285000px;}
.x7e_c01280{left:362.010000px;}
.x58_c01280{left:363.750000px;}
.x21_c01280{left:365.475000px;}
.xb6_c01280{left:367.200000px;}
.xcd_c01280{left:370.650000px;}
.xac_c01280{left:374.115000px;}
.x4d_c01280{left:376.710000px;}
.xa0_c01280{left:379.290000px;}
.x63_c01280{left:381.885000px;}
.x1_c01280{left:384.480000px;}
.xe8_c01280{left:387.075000px;}
.x22_c01280{left:388.800000px;}
.x6_c01280{left:391.395000px;}
.x108_c01280{left:393.120000px;}
.x72_c01280{left:395.715000px;}
.x16_c01280{left:397.440000px;}
.xad_c01280{left:401.760000px;}
.xe9_c01280{left:404.355000px;}
.x117_c01280{left:406.080000px;}
.x2e_c01280{left:408.675000px;}
.x7_c01280{left:410.400000px;}
.x3c_c01280{left:412.125000px;}
.xc2_c01280{left:414.720000px;}
.x6d_c01280{left:417.315000px;}
.xa4_c01280{left:419.040000px;}
.x23_c01280{left:421.635000px;}
.xae_c01280{left:424.230000px;}
.xc3_c01280{left:425.955000px;}
.x88_c01280{left:428.550000px;}
.x8_c01280{left:430.275000px;}
.xf6_c01280{left:432.000000px;}
.x7f_c01280{left:433.725000px;}
.x118_c01280{left:435.450000px;}
.x2f_c01280{left:440.640000px;}
.x73_c01280{left:443.235000px;}
.xc9_c01280{left:445.830000px;}
.x4e_c01280{left:447.555000px;}
.x59_c01280{left:449.280000px;}
.x9_c01280{left:451.875000px;}
.x101_c01280{left:453.600000px;}
.x4f_c01280{left:455.325000px;}
.xea_c01280{left:457.050000px;}
.x9b_c01280{left:459.645000px;}
.xf8_c01280{left:463.965000px;}
.x17_c01280{left:465.690000px;}
.x24_c01280{left:470.010000px;}
.x111_c01280{left:472.605000px;}
.xbd_c01280{left:475.200000px;}
.xa7_c01280{left:476.925000px;}
.xa_c01280{left:479.520000px;}
.xfa_c01280{left:484.710000px;}
.x89_c01280{left:486.435000px;}
.x30_c01280{left:489.030000px;}
.x109_c01280{left:490.755000px;}
.x5a_c01280{left:492.480000px;}
.x91_c01280{left:495.075000px;}
.xb_c01280{left:496.800000px;}
.xcb_c01280{left:499.395000px;}
.x3d_c01280{left:501.120000px;}
.xc4_c01280{left:502.845000px;}
.x18_c01280{left:506.310000px;}
.x100_c01280{left:509.760000px;}
.x43_c01280{left:511.485000px;}
.x19_c01280{left:514.080000px;}
.xc_c01280{left:516.675000px;}
.x78_c01280{left:519.270000px;}
.xa1_c01280{left:521.850000px;}
.x5b_c01280{left:526.170000px;}
.x44_c01280{left:531.360000px;}
.x45_c01280{left:537.405000px;}
.xfe_c01280{left:540.000000px;}
.x1a_c01280{left:542.595000px;}
.xee_c01280{left:545.190000px;}
.x92_c01280{left:546.915000px;}
.xd3_c01280{left:549.510000px;}
.x116_c01280{left:551.235000px;}
.x64_c01280{left:552.960000px;}
.xff_c01280{left:554.685000px;}
.xd_c01280{left:556.410000px;}
.x3e_c01280{left:558.150000px;}
.x80_c01280{left:560.730000px;}
.x1b_c01280{left:562.470000px;}
.x31_c01280{left:564.195000px;}
.xbe_c01280{left:570.240000px;}
.x112_c01280{left:572.835000px;}
.xdc_c01280{left:578.010000px;}
.xaa_c01280{left:579.750000px;}
.x32_c01280{left:582.330000px;}
.x50_c01280{left:584.070000px;}
.x113_c01280{left:585.795000px;}
.x25_c01280{left:587.520000px;}
.x8a_c01280{left:590.115000px;}
.x114_c01280{left:595.290000px;}
.xdb_c01280{left:597.885000px;}
.xdd_c01280{left:600.480000px;}
.xef_c01280{left:603.075000px;}
.x79_c01280{left:604.800000px;}
.x5c_c01280{left:606.525000px;}
.x51_c01280{left:616.035000px;}
.xce_c01280{left:620.355000px;}
.xe0_c01280{left:622.950000px;}
.x26_c01280{left:626.400000px;}
.xaf_c01280{left:628.125000px;}
.x8b_c01280{left:630.720000px;}
.x10c_c01280{left:632.445000px;}
.xa8_c01280{left:634.170000px;}
.xd4_c01280{left:636.765000px;}
.x93_c01280{left:638.490000px;}
.x46_c01280{left:640.230000px;}
.xb0_c01280{left:643.680000px;}
.xd5_c01280{left:645.405000px;}
.x103_c01280{left:648.870000px;}
.x1c_c01280{left:650.595000px;}
.x106_c01280{left:652.320000px;}
.x85_c01280{left:654.915000px;}
.x7a_c01280{left:657.510000px;}
.x27_c01280{left:660.960000px;}
.x6e_c01280{left:662.685000px;}
.x52_c01280{left:665.280000px;}
.x8c_c01280{left:667.875000px;}
.xe_c01280{left:670.470000px;}
.x81_c01280{left:673.050000px;}
.xb7_c01280{left:674.790000px;}
.x102_c01280{left:676.515000px;}
.x5d_c01280{left:678.240000px;}
.xe1_c01280{left:679.965000px;}
.x28_c01280{left:682.560000px;}
.xf0_c01280{left:684.285000px;}
.x74_c01280{left:687.750000px;}
.xe2_c01280{left:690.330000px;}
.xca_c01280{left:692.070000px;}
.x47_c01280{left:694.650000px;}
.xf_c01280{left:696.390000px;}
.x2_c01280{left:698.115000px;}
.x3f_c01280{left:702.435000px;}
.xfb_c01280{left:704.160000px;}
.x10d_c01280{left:705.885000px;}
.xb1_c01280{left:707.610000px;}
.xcf_c01280{left:709.350000px;}
.x48_c01280{left:711.930000px;}
.x29_c01280{left:713.670000px;}
.x8d_c01280{left:715.395000px;}
.x3_c01280{left:717.120000px;}
.x10_c01280{left:720.570000px;}
.x10e_c01280{left:722.310000px;}
.x40_c01280{left:724.890000px;}
.xde_c01280{left:727.485000px;}
.x65_c01280{left:730.080000px;}
.x10a_c01280{left:732.675000px;}
.xeb_c01280{left:734.400000px;}
.x2a_c01280{left:736.125000px;}
.x33_c01280{left:738.720000px;}
.xc5_c01280{left:741.315000px;}
.x8e_c01280{left:743.040000px;}
.xb8_c01280{left:744.765000px;}
.xab_c01280{left:746.490000px;}
.xc8_c01280{left:749.085000px;}
.x66_c01280{left:750.810000px;}
.xa9_c01280{left:754.275000px;}
.xbf_c01280{left:756.000000px;}
.x6f_c01280{left:758.595000px;}
.x115_c01280{left:760.320000px;}
.x82_c01280{left:766.365000px;}
.x49_c01280{left:768.090000px;}
.x11_c01280{left:769.830000px;}
.xd6_c01280{left:771.555000px;}
.x7b_c01280{left:774.150000px;}
.xec_c01280{left:775.875000px;}
.x12_c01280{left:779.325000px;}
.x2b_c01280{left:782.790000px;}
.xdf_c01280{left:785.370000px;}
.x13_c01280{left:787.110000px;}
.xb9_c01280{left:791.430000px;}
.x9c_c01280{left:793.155000px;}
.x70_c01280{left:794.880000px;}
.xa5_c01280{left:796.605000px;}
.xc6_c01280{left:799.200000px;}
.xf1_c01280{left:801.795000px;}
.x5e_c01280{left:803.520000px;}
.xf3_c01280{left:805.245000px;}
.xed_c01280{left:806.970000px;}
.x53_c01280{left:808.710000px;}
.xc0_c01280{left:810.435000px;}
.xe3_c01280{left:812.160000px;}
.x34_c01280{left:816.480000px;}
.x41_c01280{left:819.930000px;}
.x4a_c01280{left:823.395000px;}
.x9d_c01280{left:825.990000px;}
.x86_c01280{left:829.440000px;}
.x67_c01280{left:832.035000px;}
.x75_c01280{left:833.760000px;}
.x8f_c01280{left:835.485000px;}
.x68_c01280{left:838.950000px;}
.x7c_c01280{left:849.315000px;}
.xba_c01280{left:855.360000px;}
.x69_c01280{left:857.085000px;}
.xc7_c01280{left:858.810000px;}
.x2c_c01280{left:860.550000px;}
.xda_c01280{left:865.725000px;}
.xe4_c01280{left:869.190000px;}
.x10f_c01280{left:870.915000px;}
.x83_c01280{left:873.510000px;}
.x4b_c01280{left:876.090000px;}
.x54_c01280{left:877.830000px;}
.x110_c01280{left:883.005000px;}
.xe5_c01280{left:888.195000px;}
.xf4_c01280{left:889.920000px;}
.xf7_c01280{left:891.645000px;}
.x6a_c01280{left:898.560000px;}
.x124_c01280{left:903.750000px;}
.x6b_c01280{left:908.070000px;}
.x11d_c01280{left:909.795000px;}
.xe6_c01280{left:912.390000px;}
.xe7_c01280{left:918.435000px;}
.xf2_c01280{left:924.480000px;}
.x11e_c01280{left:977.190000px;}
.x11f_c01280{left:991.005000px;}
.x120_c01280{left:1008.285000px;}
.x121_c01280{left:1026.435000px;}
.x122_c01280{left:1043.715000px;}
.x123_c01280{left:1062.720000px;}
@media print{
.v0_c01280{vertical-align:0.000000pt;}
.ls1_c01280{letter-spacing:0.000000pt;}
.ls0_c01280{letter-spacing:47.202389pt;}
.ws0_c01280{word-spacing:-10.144213pt;}
.ws1_c01280{word-spacing:0.000000pt;}
.fs1_c01280{font-size:3.072000pt;}
.fs3_c01280{font-size:5.333333pt;}
.fs0_c01280{font-size:6.133333pt;}
.fs10_c01280{font-size:9.226667pt;}
.fs17_c01280{font-size:12.266667pt;}
.fs2_c01280{font-size:15.360000pt;}
.fs19_c01280{font-size:18.453333pt;}
.fs1c_c01280{font-size:21.493333pt;}
.fs18_c01280{font-size:24.586667pt;}
.fs16_c01280{font-size:27.626667pt;}
.fs14_c01280{font-size:30.720000pt;}
.fs1a_c01280{font-size:33.813333pt;}
.fsf_c01280{font-size:36.853333pt;}
.fs9_c01280{font-size:39.946667pt;}
.fs11_c01280{font-size:42.986667pt;}
.fs13_c01280{font-size:46.080000pt;}
.fse_c01280{font-size:49.173333pt;}
.fsd_c01280{font-size:52.213333pt;}
.fs7_c01280{font-size:55.306667pt;}
.fsa_c01280{font-size:58.346667pt;}
.fs6_c01280{font-size:61.440000pt;}
.fs5_c01280{font-size:64.533333pt;}
.fs4_c01280{font-size:67.573333pt;}
.fsc_c01280{font-size:70.666667pt;}
.fs8_c01280{font-size:73.706667pt;}
.fs1b_c01280{font-size:76.800000pt;}
.fs15_c01280{font-size:79.893333pt;}
.fs12_c01280{font-size:82.933333pt;}
.fs1e_c01280{font-size:86.026667pt;}
.fs1d_c01280{font-size:89.066667pt;}
.fsb_c01280{font-size:95.253333pt;}
.y0_c01280{bottom:0.000000pt;}
.y1e9_c01280{bottom:137.466667pt;}
.y1e8_c01280{bottom:139.013333pt;}
.y1e4_c01280{bottom:142.080000pt;}
.y1e5_c01280{bottom:144.386667pt;}
.y1ea_c01280{bottom:145.146667pt;}
.y1e6_c01280{bottom:148.226667pt;}
.y1e7_c01280{bottom:148.986667pt;}
.y1eb_c01280{bottom:150.533333pt;}
.y1e0_c01280{bottom:151.293333pt;}
.y1de_c01280{bottom:152.066667pt;}
.y1df_c01280{bottom:152.826667pt;}
.y1e2_c01280{bottom:154.373333pt;}
.y1dc_c01280{bottom:155.906667pt;}
.y1dd_c01280{bottom:156.666667pt;}
.y1e3_c01280{bottom:162.053333pt;}
.y1e1_c01280{bottom:165.120000pt;}
.y1d7_c01280{bottom:170.493333pt;}
.y1d5_c01280{bottom:171.266667pt;}
.y1d9_c01280{bottom:174.333333pt;}
.y1d6_c01280{bottom:175.106667pt;}
.y1d4_c01280{bottom:175.866667pt;}
.y1d8_c01280{bottom:176.640000pt;}
.y1da_c01280{bottom:177.413333pt;}
.y1d3_c01280{bottom:182.013333pt;}
.y1db_c01280{bottom:186.626667pt;}
.y1ce_c01280{bottom:188.160000pt;}
.y1cc_c01280{bottom:189.693333pt;}
.y1d1_c01280{bottom:190.466667pt;}
.y1cd_c01280{bottom:191.226667pt;}
.y1cf_c01280{bottom:192.000000pt;}
.y1d2_c01280{bottom:198.146667pt;}
.y1d0_c01280{bottom:202.746667pt;}
.y1c3_c01280{bottom:205.826667pt;}
.y1c8_c01280{bottom:208.133333pt;}
.y1c7_c01280{bottom:208.893333pt;}
.y1c4_c01280{bottom:209.666667pt;}
.y1cb_c01280{bottom:210.426667pt;}
.y1c2_c01280{bottom:211.200000pt;}
.y1c5_c01280{bottom:211.973333pt;}
.y1ca_c01280{bottom:212.733333pt;}
.y1c9_c01280{bottom:213.506667pt;}
.y1c6_c01280{bottom:221.946667pt;}
.y1bc_c01280{bottom:222.720000pt;}
.y1bb_c01280{bottom:223.493333pt;}
.y1c0_c01280{bottom:225.786667pt;}
.y1bf_c01280{bottom:226.560000pt;}
.y1c1_c01280{bottom:227.333333pt;}
.y1bd_c01280{bottom:231.173333pt;}
.y1be_c01280{bottom:235.773333pt;}
.y1b2_c01280{bottom:238.853333pt;}
.y1b7_c01280{bottom:239.613333pt;}
.y1b4_c01280{bottom:240.386667pt;}
.y1ba_c01280{bottom:241.146667pt;}
.y1b3_c01280{bottom:242.693333pt;}
.y1b6_c01280{bottom:243.453333pt;}
.y1b9_c01280{bottom:244.226667pt;}
.y1b5_c01280{bottom:247.293333pt;}
.y1b8_c01280{bottom:248.826667pt;}
.y1a8_c01280{bottom:259.586667pt;}
.y1aa_c01280{bottom:260.346667pt;}
.y1b0_c01280{bottom:261.120000pt;}
.y1ac_c01280{bottom:262.653333pt;}
.y1ae_c01280{bottom:263.426667pt;}
.y1af_c01280{bottom:264.186667pt;}
.y1a9_c01280{bottom:264.960000pt;}
.y1ab_c01280{bottom:267.266667pt;}
.y1ad_c01280{bottom:268.026667pt;}
.y1b1_c01280{bottom:269.573333pt;}
.y1a2_c01280{bottom:278.013333pt;}
.y1a4_c01280{bottom:280.320000pt;}
.y1a6_c01280{bottom:281.093333pt;}
.y1a7_c01280{bottom:281.853333pt;}
.y1a1_c01280{bottom:282.626667pt;}
.y1a3_c01280{bottom:284.160000pt;}
.y1a5_c01280{bottom:285.693333pt;}
.y19a_c01280{bottom:297.213333pt;}
.y19e_c01280{bottom:298.746667pt;}
.y19c_c01280{bottom:299.520000pt;}
.y199_c01280{bottom:301.053333pt;}
.y198_c01280{bottom:301.826667pt;}
.y19b_c01280{bottom:303.360000pt;}
.y19d_c01280{bottom:304.133333pt;}
.y19f_c01280{bottom:304.893333pt;}
.y1a0_c01280{bottom:305.666667pt;}
.y191_c01280{bottom:315.653333pt;}
.y193_c01280{bottom:317.186667pt;}
.y194_c01280{bottom:320.253333pt;}
.y192_c01280{bottom:321.026667pt;}
.y195_c01280{bottom:321.786667pt;}
.y196_c01280{bottom:322.560000pt;}
.y197_c01280{bottom:323.333333pt;}
.y189_c01280{bottom:331.773333pt;}
.y18b_c01280{bottom:332.546667pt;}
.y18d_c01280{bottom:334.080000pt;}
.y18c_c01280{bottom:334.853333pt;}
.y18e_c01280{bottom:336.386667pt;}
.y18a_c01280{bottom:338.693333pt;}
.y190_c01280{bottom:340.226667pt;}
.y18f_c01280{bottom:340.986667pt;}
.y183_c01280{bottom:352.506667pt;}
.y185_c01280{bottom:353.280000pt;}
.y186_c01280{bottom:354.053333pt;}
.y182_c01280{bottom:354.813333pt;}
.y184_c01280{bottom:356.346667pt;}
.y187_c01280{bottom:359.426667pt;}
.y188_c01280{bottom:360.186667pt;}
.y17d_c01280{bottom:368.640000pt;}
.y17c_c01280{bottom:369.413333pt;}
.y17e_c01280{bottom:370.946667pt;}
.y17f_c01280{bottom:371.706667pt;}
.y17b_c01280{bottom:373.253333pt;}
.y181_c01280{bottom:374.786667pt;}
.y180_c01280{bottom:376.320000pt;}
.y170_c01280{bottom:388.613333pt;}
.y176_c01280{bottom:390.906667pt;}
.y178_c01280{bottom:391.680000pt;}
.y171_c01280{bottom:392.453333pt;}
.y16f_c01280{bottom:393.213333pt;}
.y172_c01280{bottom:393.986667pt;}
.y177_c01280{bottom:394.746667pt;}
.y17a_c01280{bottom:395.520000pt;}
.y173_c01280{bottom:396.293333pt;}
.y175_c01280{bottom:397.826667pt;}
.y179_c01280{bottom:399.360000pt;}
.y174_c01280{bottom:403.973333pt;}
.y168_c01280{bottom:406.266667pt;}
.y16b_c01280{bottom:407.813333pt;}
.y16c_c01280{bottom:408.573333pt;}
.y165_c01280{bottom:409.346667pt;}
.y169_c01280{bottom:410.106667pt;}
.y167_c01280{bottom:410.880000pt;}
.y166_c01280{bottom:411.653333pt;}
.y16d_c01280{bottom:412.413333pt;}
.y16e_c01280{bottom:413.186667pt;}
.y16a_c01280{bottom:418.560000pt;}
.y15e_c01280{bottom:423.933333pt;}
.y15d_c01280{bottom:424.706667pt;}
.y162_c01280{bottom:426.240000pt;}
.y164_c01280{bottom:427.013333pt;}
.y163_c01280{bottom:427.773333pt;}
.y15c_c01280{bottom:429.306667pt;}
.y15f_c01280{bottom:430.080000pt;}
.y161_c01280{bottom:431.613333pt;}
.y160_c01280{bottom:432.386667pt;}
.y15b_c01280{bottom:440.826667pt;}
.y154_c01280{bottom:442.373333pt;}
.y153_c01280{bottom:443.133333pt;}
.y156_c01280{bottom:443.906667pt;}
.y158_c01280{bottom:444.666667pt;}
.y15a_c01280{bottom:445.440000pt;}
.y155_c01280{bottom:447.746667pt;}
.y157_c01280{bottom:449.280000pt;}
.y159_c01280{bottom:450.053333pt;}
.y14d_c01280{bottom:459.266667pt;}
.y14c_c01280{bottom:461.573333pt;}
.y150_c01280{bottom:462.333333pt;}
.y14f_c01280{bottom:463.106667pt;}
.y14e_c01280{bottom:464.640000pt;}
.y14b_c01280{bottom:466.173333pt;}
.y152_c01280{bottom:468.480000pt;}
.y151_c01280{bottom:470.013333pt;}
.y14a_c01280{bottom:473.093333pt;}
.y149_c01280{bottom:473.853333pt;}
.y144_c01280{bottom:477.693333pt;}
.y143_c01280{bottom:478.466667pt;}
.y148_c01280{bottom:481.533333pt;}
.y146_c01280{bottom:482.306667pt;}
.y145_c01280{bottom:483.066667pt;}
.y147_c01280{bottom:483.840000pt;}
.y13c_c01280{bottom:496.133333pt;}
.y13d_c01280{bottom:497.666667pt;}
.y141_c01280{bottom:499.200000pt;}
.y13e_c01280{bottom:500.733333pt;}
.y140_c01280{bottom:503.040000pt;}
.y142_c01280{bottom:503.813333pt;}
.y13f_c01280{bottom:507.653333pt;}
.y136_c01280{bottom:513.786667pt;}
.y135_c01280{bottom:514.560000pt;}
.y137_c01280{bottom:516.093333pt;}
.y13a_c01280{bottom:516.866667pt;}
.y138_c01280{bottom:519.173333pt;}
.y134_c01280{bottom:519.933333pt;}
.y139_c01280{bottom:522.240000pt;}
.y13b_c01280{bottom:526.080000pt;}
.y12b_c01280{bottom:529.920000pt;}
.y12c_c01280{bottom:532.226667pt;}
.y12d_c01280{bottom:532.986667pt;}
.y130_c01280{bottom:533.760000pt;}
.y12e_c01280{bottom:535.293333pt;}
.y12f_c01280{bottom:536.066667pt;}
.y131_c01280{bottom:538.373333pt;}
.y133_c01280{bottom:539.906667pt;}
.y132_c01280{bottom:542.973333pt;}
.y125_c01280{bottom:549.893333pt;}
.y123_c01280{bottom:550.653333pt;}
.y127_c01280{bottom:551.426667pt;}
.y124_c01280{bottom:552.186667pt;}
.y12a_c01280{bottom:552.960000pt;}
.y128_c01280{bottom:554.493333pt;}
.y126_c01280{bottom:555.266667pt;}
.y129_c01280{bottom:557.573333pt;}
.y11e_c01280{bottom:569.093333pt;}
.y11d_c01280{bottom:572.933333pt;}
.y11f_c01280{bottom:573.693333pt;}
.y122_c01280{bottom:574.466667pt;}
.y120_c01280{bottom:575.226667pt;}
.y121_c01280{bottom:576.000000pt;}
.y117_c01280{bottom:584.453333pt;}
.y118_c01280{bottom:585.986667pt;}
.y11c_c01280{bottom:588.293333pt;}
.y11b_c01280{bottom:589.826667pt;}
.y119_c01280{bottom:590.586667pt;}
.y11a_c01280{bottom:591.360000pt;}
.y111_c01280{bottom:602.880000pt;}
.y112_c01280{bottom:605.186667pt;}
.y113_c01280{bottom:607.493333pt;}
.y116_c01280{bottom:609.026667pt;}
.y115_c01280{bottom:609.786667pt;}
.y114_c01280{bottom:610.560000pt;}
.y109_c01280{bottom:618.240000pt;}
.y108_c01280{bottom:619.013333pt;}
.y10d_c01280{bottom:619.773333pt;}
.y10c_c01280{bottom:620.546667pt;}
.y107_c01280{bottom:624.386667pt;}
.y10a_c01280{bottom:625.920000pt;}
.y10e_c01280{bottom:627.453333pt;}
.y10b_c01280{bottom:628.226667pt;}
.y106_c01280{bottom:629.760000pt;}
.y10f_c01280{bottom:631.293333pt;}
.y101_c01280{bottom:638.973333pt;}
.y100_c01280{bottom:639.746667pt;}
.y110_c01280{bottom:640.506667pt;}
.y105_c01280{bottom:641.280000pt;}
.y103_c01280{bottom:642.053333pt;}
.y102_c01280{bottom:643.586667pt;}
.y104_c01280{bottom:645.893333pt;}
.yfc_c01280{bottom:656.640000pt;}
.yfb_c01280{bottom:658.946667pt;}
.yfd_c01280{bottom:662.013333pt;}
.yff_c01280{bottom:663.546667pt;}
.yfe_c01280{bottom:664.320000pt;}
.yfa_c01280{bottom:665.093333pt;}
.yf5_c01280{bottom:675.066667pt;}
.yf4_c01280{bottom:675.840000pt;}
.yf8_c01280{bottom:676.613333pt;}
.yf9_c01280{bottom:677.373333pt;}
.yf7_c01280{bottom:678.146667pt;}
.yf6_c01280{bottom:681.213333pt;}
.yeb_c01280{bottom:693.506667pt;}
.yee_c01280{bottom:694.266667pt;}
.yef_c01280{bottom:695.040000pt;}
.yed_c01280{bottom:695.813333pt;}
.yf3_c01280{bottom:697.346667pt;}
.yec_c01280{bottom:698.106667pt;}
.yf1_c01280{bottom:699.653333pt;}
.yf0_c01280{bottom:700.413333pt;}
.yf2_c01280{bottom:701.186667pt;}
.ye7_c01280{bottom:711.933333pt;}
.ye4_c01280{bottom:712.706667pt;}
.ye6_c01280{bottom:713.466667pt;}
.yea_c01280{bottom:714.240000pt;}
.ye5_c01280{bottom:715.773333pt;}
.ye3_c01280{bottom:716.546667pt;}
.ye8_c01280{bottom:717.306667pt;}
.ye9_c01280{bottom:718.080000pt;}
.ydc_c01280{bottom:728.066667pt;}
.ydd_c01280{bottom:729.600000pt;}
.ye1_c01280{bottom:730.373333pt;}
.ye2_c01280{bottom:731.133333pt;}
.y1f8_c01280{bottom:733.440000pt;}
.yde_c01280{bottom:734.213333pt;}
.ydf_c01280{bottom:734.973333pt;}
.ye0_c01280{bottom:736.506667pt;}
.yd4_c01280{bottom:747.266667pt;}
.yd3_c01280{bottom:748.026667pt;}
.yd7_c01280{bottom:748.800000pt;}
.yd5_c01280{bottom:751.106667pt;}
.yd6_c01280{bottom:751.866667pt;}
.ydb_c01280{bottom:753.413333pt;}
.yda_c01280{bottom:755.706667pt;}
.yd9_c01280{bottom:756.480000pt;}
.yd8_c01280{bottom:762.626667pt;}
.ycd_c01280{bottom:764.933333pt;}
.ycc_c01280{bottom:765.693333pt;}
.yd1_c01280{bottom:766.466667pt;}
.ycf_c01280{bottom:768.773333pt;}
.yce_c01280{bottom:769.533333pt;}
.ycb_c01280{bottom:770.306667pt;}
.yd0_c01280{bottom:771.066667pt;}
.yd2_c01280{bottom:777.213333pt;}
.yc5_c01280{bottom:781.826667pt;}
.yc4_c01280{bottom:782.586667pt;}
.yc7_c01280{bottom:783.360000pt;}
.yc9_c01280{bottom:784.133333pt;}
.yc6_c01280{bottom:785.666667pt;}
.yc3_c01280{bottom:786.426667pt;}
.yca_c01280{bottom:788.733333pt;}
.yc8_c01280{bottom:789.506667pt;}
.ybb_c01280{bottom:800.253333pt;}
.ybe_c01280{bottom:801.786667pt;}
.yc1_c01280{bottom:802.560000pt;}
.ybc_c01280{bottom:803.333333pt;}
.ybd_c01280{bottom:804.866667pt;}
.ybf_c01280{bottom:805.626667pt;}
.yc0_c01280{bottom:807.173333pt;}
.yc2_c01280{bottom:807.933333pt;}
.yb3_c01280{bottom:817.920000pt;}
.yb5_c01280{bottom:819.453333pt;}
.yb9_c01280{bottom:820.986667pt;}
.yba_c01280{bottom:821.760000pt;}
.yb7_c01280{bottom:822.533333pt;}
.yb4_c01280{bottom:824.066667pt;}
.yb8_c01280{bottom:824.826667pt;}
.y1f6_c01280{bottom:827.906667pt;}
.yb6_c01280{bottom:832.506667pt;}
.yac_c01280{bottom:836.346667pt;}
.yad_c01280{bottom:837.120000pt;}
.yae_c01280{bottom:837.893333pt;}
.yb0_c01280{bottom:840.960000pt;}
.yaf_c01280{bottom:841.733333pt;}
.yb2_c01280{bottom:850.173333pt;}
.yb1_c01280{bottom:853.253333pt;}
.ya6_c01280{bottom:854.786667pt;}
.ya7_c01280{bottom:856.320000pt;}
.ya9_c01280{bottom:857.093333pt;}
.ya8_c01280{bottom:857.853333pt;}
.yaa_c01280{bottom:860.933333pt;}
.yab_c01280{bottom:862.466667pt;}
.y1f5_c01280{bottom:865.533333pt;}
.ya0_c01280{bottom:872.453333pt;}
.ya1_c01280{bottom:873.213333pt;}
.y9f_c01280{bottom:873.986667pt;}
.ya2_c01280{bottom:874.746667pt;}
.ya3_c01280{bottom:877.053333pt;}
.ya5_c01280{bottom:877.826667pt;}
.ya4_c01280{bottom:880.133333pt;}
.y9d_c01280{bottom:884.733333pt;}
.y9e_c01280{bottom:886.266667pt;}
.y98_c01280{bottom:890.106667pt;}
.y93_c01280{bottom:890.880000pt;}
.y99_c01280{bottom:891.653333pt;}
.y9a_c01280{bottom:892.413333pt;}
.y96_c01280{bottom:893.186667pt;}
.y94_c01280{bottom:893.946667pt;}
.y9b_c01280{bottom:894.720000pt;}
.y97_c01280{bottom:895.493333pt;}
.y95_c01280{bottom:896.253333pt;}
.y9c_c01280{bottom:898.560000pt;}
.y89_c01280{bottom:908.546667pt;}
.y8b_c01280{bottom:909.306667pt;}
.y8a_c01280{bottom:910.080000pt;}
.y8f_c01280{bottom:910.853333pt;}
.y92_c01280{bottom:911.613333pt;}
.y91_c01280{bottom:912.386667pt;}
.y8c_c01280{bottom:913.920000pt;}
.y8e_c01280{bottom:915.453333pt;}
.y90_c01280{bottom:916.226667pt;}
.y8d_c01280{bottom:916.986667pt;}
.y81_c01280{bottom:927.746667pt;}
.y83_c01280{bottom:928.506667pt;}
.y87_c01280{bottom:929.280000pt;}
.y84_c01280{bottom:930.053333pt;}
.y85_c01280{bottom:930.813333pt;}
.y82_c01280{bottom:931.586667pt;}
.y86_c01280{bottom:932.346667pt;}
.y80_c01280{bottom:933.893333pt;}
.y88_c01280{bottom:943.106667pt;}
.y79_c01280{bottom:943.866667pt;}
.y7b_c01280{bottom:946.173333pt;}
.y7c_c01280{bottom:946.946667pt;}
.y7f_c01280{bottom:948.480000pt;}
.y7a_c01280{bottom:949.253333pt;}
.y78_c01280{bottom:950.013333pt;}
.y7d_c01280{bottom:951.546667pt;}
.y7e_c01280{bottom:952.320000pt;}
.y6f_c01280{bottom:960.000000pt;}
.y72_c01280{bottom:963.066667pt;}
.y71_c01280{bottom:963.840000pt;}
.y73_c01280{bottom:966.146667pt;}
.y70_c01280{bottom:966.906667pt;}
.y75_c01280{bottom:967.680000pt;}
.y74_c01280{bottom:969.213333pt;}
.y77_c01280{bottom:969.986667pt;}
.y76_c01280{bottom:970.746667pt;}
.y1f4_c01280{bottom:972.293333pt;}
.y67_c01280{bottom:979.973333pt;}
.y68_c01280{bottom:981.506667pt;}
.y6a_c01280{bottom:982.266667pt;}
.y6e_c01280{bottom:983.040000pt;}
.y6b_c01280{bottom:983.813333pt;}
.y66_c01280{bottom:985.346667pt;}
.y69_c01280{bottom:986.880000pt;}
.y6c_c01280{bottom:987.653333pt;}
.y6d_c01280{bottom:988.413333pt;}
.y65_c01280{bottom:989.186667pt;}
.y64_c01280{bottom:991.493333pt;}
.y5a_c01280{bottom:998.400000pt;}
.y5e_c01280{bottom:999.933333pt;}
.y63_c01280{bottom:1000.706667pt;}
.y5b_c01280{bottom:1002.240000pt;}
.y5d_c01280{bottom:1003.013333pt;}
.y5c_c01280{bottom:1003.773333pt;}
.y5f_c01280{bottom:1004.546667pt;}
.y60_c01280{bottom:1005.306667pt;}
.y61_c01280{bottom:1006.080000pt;}
.y62_c01280{bottom:1006.853333pt;}
.y59_c01280{bottom:1009.920000pt;}
.y1f3_c01280{bottom:1010.693333pt;}
.y53_c01280{bottom:1016.826667pt;}
.y52_c01280{bottom:1017.600000pt;}
.y55_c01280{bottom:1018.373333pt;}
.y54_c01280{bottom:1019.133333pt;}
.y58_c01280{bottom:1019.906667pt;}
.y56_c01280{bottom:1020.666667pt;}
.y57_c01280{bottom:1024.506667pt;}
.y51_c01280{bottom:1027.586667pt;}
.y4b_c01280{bottom:1033.733333pt;}
.y4a_c01280{bottom:1035.266667pt;}
.y47_c01280{bottom:1036.026667pt;}
.y49_c01280{bottom:1036.800000pt;}
.y48_c01280{bottom:1039.106667pt;}
.y4c_c01280{bottom:1041.413333pt;}
.y4e_c01280{bottom:1042.173333pt;}
.y4d_c01280{bottom:1042.946667pt;}
.y4f_c01280{bottom:1049.853333pt;}
.y46_c01280{bottom:1050.626667pt;}
.y50_c01280{bottom:1051.386667pt;}
.y3e_c01280{bottom:1052.933333pt;}
.y3f_c01280{bottom:1053.693333pt;}
.y40_c01280{bottom:1054.466667pt;}
.y45_c01280{bottom:1055.226667pt;}
.y44_c01280{bottom:1056.000000pt;}
.y41_c01280{bottom:1058.306667pt;}
.y42_c01280{bottom:1059.066667pt;}
.y43_c01280{bottom:1059.840000pt;}
.y3d_c01280{bottom:1064.453333pt;}
.y36_c01280{bottom:1069.826667pt;}
.y35_c01280{bottom:1071.360000pt;}
.y38_c01280{bottom:1072.133333pt;}
.y3b_c01280{bottom:1072.893333pt;}
.y37_c01280{bottom:1075.973333pt;}
.y3a_c01280{bottom:1076.733333pt;}
.y39_c01280{bottom:1077.506667pt;}
.y3c_c01280{bottom:1088.253333pt;}
.y2e_c01280{bottom:1089.786667pt;}
.y2f_c01280{bottom:1090.560000pt;}
.y33_c01280{bottom:1091.333333pt;}
.y34_c01280{bottom:1092.866667pt;}
.y30_c01280{bottom:1094.400000pt;}
.y31_c01280{bottom:1095.933333pt;}
.y2d_c01280{bottom:1096.706667pt;}
.y32_c01280{bottom:1099.013333pt;}
.y29_c01280{bottom:1107.453333pt;}
.y28_c01280{bottom:1108.226667pt;}
.y26_c01280{bottom:1109.760000pt;}
.y2a_c01280{bottom:1110.533333pt;}
.y25_c01280{bottom:1112.066667pt;}
.y27_c01280{bottom:1112.826667pt;}
.y2b_c01280{bottom:1113.600000pt;}
.y2c_c01280{bottom:1114.373333pt;}
.y24_c01280{bottom:1115.906667pt;}
.y23_c01280{bottom:1122.053333pt;}
.y1e_c01280{bottom:1125.120000pt;}
.y21_c01280{bottom:1126.653333pt;}
.y1d_c01280{bottom:1127.426667pt;}
.y20_c01280{bottom:1128.186667pt;}
.y1f_c01280{bottom:1129.733333pt;}
.y22_c01280{bottom:1132.800000pt;}
.y18_c01280{bottom:1143.546667pt;}
.y16_c01280{bottom:1144.320000pt;}
.y19_c01280{bottom:1145.853333pt;}
.y14_c01280{bottom:1146.626667pt;}
.y17_c01280{bottom:1147.386667pt;}
.y15_c01280{bottom:1148.160000pt;}
.y1a_c01280{bottom:1148.933333pt;}
.y1c_c01280{bottom:1149.693333pt;}
.y1b_c01280{bottom:1150.466667pt;}
.y13_c01280{bottom:1154.306667pt;}
.y1f2_c01280{bottom:1155.840000pt;}
.yd_c01280{bottom:1160.453333pt;}
.ye_c01280{bottom:1161.986667pt;}
.y12_c01280{bottom:1162.746667pt;}
.yf_c01280{bottom:1165.826667pt;}
.y10_c01280{bottom:1166.586667pt;}
.y11_c01280{bottom:1168.133333pt;}
.y8_c01280{bottom:1184.253333pt;}
.y5_c01280{bottom:1190.400000pt;}
.y6_c01280{bottom:1191.173333pt;}
.y9_c01280{bottom:1191.933333pt;}
.yc_c01280{bottom:1193.466667pt;}
.y7_c01280{bottom:1195.013333pt;}
.y4_c01280{bottom:1195.773333pt;}
.ya_c01280{bottom:1197.306667pt;}
.yb_c01280{bottom:1198.853333pt;}
.y1f7_c01280{bottom:1203.453333pt;}
.y1_c01280{bottom:1211.906667pt;}
.y3_c01280{bottom:1212.666667pt;}
.y2_c01280{bottom:1214.213333pt;}
.y1ef_c01280{bottom:1215.746667pt;}
.y1f1_c01280{bottom:1216.506667pt;}
.y1f0_c01280{bottom:1218.053333pt;}
.y1ee_c01280{bottom:1222.653333pt;}
.y1ed_c01280{bottom:1253.373333pt;}
.y1ec_c01280{bottom:1256.453333pt;}
.h3_c01280{height:2.764500pt;}
.h5_c01280{height:4.799479pt;}
.h2_c01280{height:5.519401pt;}
.h12_c01280{height:8.303099pt;}
.h19_c01280{height:11.038802pt;}
.h4_c01280{height:13.822500pt;}
.h1b_c01280{height:16.606198pt;}
.h1e_c01280{height:19.341901pt;}
.h1a_c01280{height:22.125599pt;}
.h18_c01280{height:24.861302pt;}
.h16_c01280{height:27.645000pt;}
.h1c_c01280{height:30.428698pt;}
.h11_c01280{height:33.164401pt;}
.hb_c01280{height:35.948099pt;}
.h13_c01280{height:38.683802pt;}
.h15_c01280{height:41.467500pt;}
.h10_c01280{height:44.251198pt;}
.hf_c01280{height:46.986901pt;}
.h9_c01280{height:49.770599pt;}
.hc_c01280{height:52.506302pt;}
.h8_c01280{height:55.290000pt;}
.h7_c01280{height:58.073698pt;}
.h6_c01280{height:60.809401pt;}
.he_c01280{height:63.593099pt;}
.ha_c01280{height:66.328802pt;}
.h1d_c01280{height:69.112500pt;}
.h17_c01280{height:71.896198pt;}
.h14_c01280{height:74.631901pt;}
.h20_c01280{height:77.415599pt;}
.h1f_c01280{height:80.151302pt;}
.hd_c01280{height:85.718698pt;}
.h1_c01280{height:1350.000000pt;}
.h0_c01280{height:1350.146667pt;}
.w0_c01280{width:964.613333pt;}
.w1_c01280{width:964.666667pt;}
.x0_c01280{left:0.000000pt;}
.x119_c01280{left:117.506667pt;}
.x94_c01280{left:125.186667pt;}
.x9e_c01280{left:126.720000pt;}
.x11a_c01280{left:130.560000pt;}
.x11b_c01280{left:140.546667pt;}
.x11c_c01280{left:143.613333pt;}
.x9f_c01280{left:149.760000pt;}
.x95_c01280{left:162.053333pt;}
.x76_c01280{left:168.960000pt;}
.x96_c01280{left:171.266667pt;}
.x90_c01280{left:174.333333pt;}
.x97_c01280{left:178.173333pt;}
.xd0_c01280{left:184.320000pt;}
.x71_c01280{left:187.386667pt;}
.x98_c01280{left:188.933333pt;}
.xbb_c01280{left:191.226667pt;}
.x5f_c01280{left:192.773333pt;}
.xd7_c01280{left:194.306667pt;}
.x35_c01280{left:196.613333pt;}
.xf5_c01280{left:198.146667pt;}
.x6c_c01280{left:199.680000pt;}
.x55_c01280{left:201.213333pt;}
.x1d_c01280{left:203.520000pt;}
.x60_c01280{left:205.826667pt;}
.x14_c01280{left:207.360000pt;}
.x36_c01280{left:208.893333pt;}
.x1e_c01280{left:210.426667pt;}
.x99_c01280{left:218.106667pt;}
.xfc_c01280{left:220.413333pt;}
.x37_c01280{left:226.560000pt;}
.xb2_c01280{left:229.626667pt;}
.x56_c01280{left:231.933333pt;}
.xc1_c01280{left:233.466667pt;}
.x15_c01280{left:235.773333pt;}
.x38_c01280{left:238.080000pt;}
.xd1_c01280{left:242.693333pt;}
.x84_c01280{left:244.986667pt;}
.xd8_c01280{left:246.533333pt;}
.x104_c01280{left:248.066667pt;}
.x107_c01280{left:251.133333pt;}
.x1f_c01280{left:253.440000pt;}
.xcc_c01280{left:254.973333pt;}
.x61_c01280{left:258.053333pt;}
.xa2_c01280{left:259.586667pt;}
.x10b_c01280{left:261.120000pt;}
.x39_c01280{left:262.653333pt;}
.xf9_c01280{left:264.186667pt;}
.xa6_c01280{left:266.493333pt;}
.x42_c01280{left:270.333333pt;}
.x9a_c01280{left:271.866667pt;}
.x57_c01280{left:278.013333pt;}
.x2d_c01280{left:280.320000pt;}
.x7d_c01280{left:283.386667pt;}
.xb3_c01280{left:285.693333pt;}
.x3a_c01280{left:287.226667pt;}
.x62_c01280{left:289.533333pt;}
.x4c_c01280{left:291.066667pt;}
.xb4_c01280{left:292.613333pt;}
.xd2_c01280{left:294.146667pt;}
.x105_c01280{left:295.680000pt;}
.xd9_c01280{left:297.213333pt;}
.x20_c01280{left:298.746667pt;}
.xfd_c01280{left:301.053333pt;}
.xbc_c01280{left:304.133333pt;}
.x77_c01280{left:306.426667pt;}
.xb5_c01280{left:307.973333pt;}
.x4_c01280{left:309.506667pt;}
.x3b_c01280{left:311.813333pt;}
.xa3_c01280{left:313.346667pt;}
.x5_c01280{left:316.413333pt;}
.x87_c01280{left:320.253333pt;}
.x7e_c01280{left:321.786667pt;}
.x58_c01280{left:323.333333pt;}
.x21_c01280{left:324.866667pt;}
.xb6_c01280{left:326.400000pt;}
.xcd_c01280{left:329.466667pt;}
.xac_c01280{left:332.546667pt;}
.x4d_c01280{left:334.853333pt;}
.xa0_c01280{left:337.146667pt;}
.x63_c01280{left:339.453333pt;}
.x1_c01280{left:341.760000pt;}
.xe8_c01280{left:344.066667pt;}
.x22_c01280{left:345.600000pt;}
.x6_c01280{left:347.906667pt;}
.x108_c01280{left:349.440000pt;}
.x72_c01280{left:351.746667pt;}
.x16_c01280{left:353.280000pt;}
.xad_c01280{left:357.120000pt;}
.xe9_c01280{left:359.426667pt;}
.x117_c01280{left:360.960000pt;}
.x2e_c01280{left:363.266667pt;}
.x7_c01280{left:364.800000pt;}
.x3c_c01280{left:366.333333pt;}
.xc2_c01280{left:368.640000pt;}
.x6d_c01280{left:370.946667pt;}
.xa4_c01280{left:372.480000pt;}
.x23_c01280{left:374.786667pt;}
.xae_c01280{left:377.093333pt;}
.xc3_c01280{left:378.626667pt;}
.x88_c01280{left:380.933333pt;}
.x8_c01280{left:382.466667pt;}
.xf6_c01280{left:384.000000pt;}
.x7f_c01280{left:385.533333pt;}
.x118_c01280{left:387.066667pt;}
.x2f_c01280{left:391.680000pt;}
.x73_c01280{left:393.986667pt;}
.xc9_c01280{left:396.293333pt;}
.x4e_c01280{left:397.826667pt;}
.x59_c01280{left:399.360000pt;}
.x9_c01280{left:401.666667pt;}
.x101_c01280{left:403.200000pt;}
.x4f_c01280{left:404.733333pt;}
.xea_c01280{left:406.266667pt;}
.x9b_c01280{left:408.573333pt;}
.xf8_c01280{left:412.413333pt;}
.x17_c01280{left:413.946667pt;}
.x24_c01280{left:417.786667pt;}
.x111_c01280{left:420.093333pt;}
.xbd_c01280{left:422.400000pt;}
.xa7_c01280{left:423.933333pt;}
.xa_c01280{left:426.240000pt;}
.xfa_c01280{left:430.853333pt;}
.x89_c01280{left:432.386667pt;}
.x30_c01280{left:434.693333pt;}
.x109_c01280{left:436.226667pt;}
.x5a_c01280{left:437.760000pt;}
.x91_c01280{left:440.066667pt;}
.xb_c01280{left:441.600000pt;}
.xcb_c01280{left:443.906667pt;}
.x3d_c01280{left:445.440000pt;}
.xc4_c01280{left:446.973333pt;}
.x18_c01280{left:450.053333pt;}
.x100_c01280{left:453.120000pt;}
.x43_c01280{left:454.653333pt;}
.x19_c01280{left:456.960000pt;}
.xc_c01280{left:459.266667pt;}
.x78_c01280{left:461.573333pt;}
.xa1_c01280{left:463.866667pt;}
.x5b_c01280{left:467.706667pt;}
.x44_c01280{left:472.320000pt;}
.x45_c01280{left:477.693333pt;}
.xfe_c01280{left:480.000000pt;}
.x1a_c01280{left:482.306667pt;}
.xee_c01280{left:484.613333pt;}
.x92_c01280{left:486.146667pt;}
.xd3_c01280{left:488.453333pt;}
.x116_c01280{left:489.986667pt;}
.x64_c01280{left:491.520000pt;}
.xff_c01280{left:493.053333pt;}
.xd_c01280{left:494.586667pt;}
.x3e_c01280{left:496.133333pt;}
.x80_c01280{left:498.426667pt;}
.x1b_c01280{left:499.973333pt;}
.x31_c01280{left:501.506667pt;}
.xbe_c01280{left:506.880000pt;}
.x112_c01280{left:509.186667pt;}
.xdc_c01280{left:513.786667pt;}
.xaa_c01280{left:515.333333pt;}
.x32_c01280{left:517.626667pt;}
.x50_c01280{left:519.173333pt;}
.x113_c01280{left:520.706667pt;}
.x25_c01280{left:522.240000pt;}
.x8a_c01280{left:524.546667pt;}
.x114_c01280{left:529.146667pt;}
.xdb_c01280{left:531.453333pt;}
.xdd_c01280{left:533.760000pt;}
.xef_c01280{left:536.066667pt;}
.x79_c01280{left:537.600000pt;}
.x5c_c01280{left:539.133333pt;}
.x51_c01280{left:547.586667pt;}
.xce_c01280{left:551.426667pt;}
.xe0_c01280{left:553.733333pt;}
.x26_c01280{left:556.800000pt;}
.xaf_c01280{left:558.333333pt;}
.x8b_c01280{left:560.640000pt;}
.x10c_c01280{left:562.173333pt;}
.xa8_c01280{left:563.706667pt;}
.xd4_c01280{left:566.013333pt;}
.x93_c01280{left:567.546667pt;}
.x46_c01280{left:569.093333pt;}
.xb0_c01280{left:572.160000pt;}
.xd5_c01280{left:573.693333pt;}
.x103_c01280{left:576.773333pt;}
.x1c_c01280{left:578.306667pt;}
.x106_c01280{left:579.840000pt;}
.x85_c01280{left:582.146667pt;}
.x7a_c01280{left:584.453333pt;}
.x27_c01280{left:587.520000pt;}
.x6e_c01280{left:589.053333pt;}
.x52_c01280{left:591.360000pt;}
.x8c_c01280{left:593.666667pt;}
.xe_c01280{left:595.973333pt;}
.x81_c01280{left:598.266667pt;}
.xb7_c01280{left:599.813333pt;}
.x102_c01280{left:601.346667pt;}
.x5d_c01280{left:602.880000pt;}
.xe1_c01280{left:604.413333pt;}
.x28_c01280{left:606.720000pt;}
.xf0_c01280{left:608.253333pt;}
.x74_c01280{left:611.333333pt;}
.xe2_c01280{left:613.626667pt;}
.xca_c01280{left:615.173333pt;}
.x47_c01280{left:617.466667pt;}
.xf_c01280{left:619.013333pt;}
.x2_c01280{left:620.546667pt;}
.x3f_c01280{left:624.386667pt;}
.xfb_c01280{left:625.920000pt;}
.x10d_c01280{left:627.453333pt;}
.xb1_c01280{left:628.986667pt;}
.xcf_c01280{left:630.533333pt;}
.x48_c01280{left:632.826667pt;}
.x29_c01280{left:634.373333pt;}
.x8d_c01280{left:635.906667pt;}
.x3_c01280{left:637.440000pt;}
.x10_c01280{left:640.506667pt;}
.x10e_c01280{left:642.053333pt;}
.x40_c01280{left:644.346667pt;}
.xde_c01280{left:646.653333pt;}
.x65_c01280{left:648.960000pt;}
.x10a_c01280{left:651.266667pt;}
.xeb_c01280{left:652.800000pt;}
.x2a_c01280{left:654.333333pt;}
.x33_c01280{left:656.640000pt;}
.xc5_c01280{left:658.946667pt;}
.x8e_c01280{left:660.480000pt;}
.xb8_c01280{left:662.013333pt;}
.xab_c01280{left:663.546667pt;}
.xc8_c01280{left:665.853333pt;}
.x66_c01280{left:667.386667pt;}
.xa9_c01280{left:670.466667pt;}
.xbf_c01280{left:672.000000pt;}
.x6f_c01280{left:674.306667pt;}
.x115_c01280{left:675.840000pt;}
.x82_c01280{left:681.213333pt;}
.x49_c01280{left:682.746667pt;}
.x11_c01280{left:684.293333pt;}
.xd6_c01280{left:685.826667pt;}
.x7b_c01280{left:688.133333pt;}
.xec_c01280{left:689.666667pt;}
.x12_c01280{left:692.733333pt;}
.x2b_c01280{left:695.813333pt;}
.xdf_c01280{left:698.106667pt;}
.x13_c01280{left:699.653333pt;}
.xb9_c01280{left:703.493333pt;}
.x9c_c01280{left:705.026667pt;}
.x70_c01280{left:706.560000pt;}
.xa5_c01280{left:708.093333pt;}
.xc6_c01280{left:710.400000pt;}
.xf1_c01280{left:712.706667pt;}
.x5e_c01280{left:714.240000pt;}
.xf3_c01280{left:715.773333pt;}
.xed_c01280{left:717.306667pt;}
.x53_c01280{left:718.853333pt;}
.xc0_c01280{left:720.386667pt;}
.xe3_c01280{left:721.920000pt;}
.x34_c01280{left:725.760000pt;}
.x41_c01280{left:728.826667pt;}
.x4a_c01280{left:731.906667pt;}
.x9d_c01280{left:734.213333pt;}
.x86_c01280{left:737.280000pt;}
.x67_c01280{left:739.586667pt;}
.x75_c01280{left:741.120000pt;}
.x8f_c01280{left:742.653333pt;}
.x68_c01280{left:745.733333pt;}
.x7c_c01280{left:754.946667pt;}
.xba_c01280{left:760.320000pt;}
.x69_c01280{left:761.853333pt;}
.xc7_c01280{left:763.386667pt;}
.x2c_c01280{left:764.933333pt;}
.xda_c01280{left:769.533333pt;}
.xe4_c01280{left:772.613333pt;}
.x10f_c01280{left:774.146667pt;}
.x83_c01280{left:776.453333pt;}
.x4b_c01280{left:778.746667pt;}
.x54_c01280{left:780.293333pt;}
.x110_c01280{left:784.893333pt;}
.xe5_c01280{left:789.506667pt;}
.xf4_c01280{left:791.040000pt;}
.xf7_c01280{left:792.573333pt;}
.x6a_c01280{left:798.720000pt;}
.x124_c01280{left:803.333333pt;}
.x6b_c01280{left:807.173333pt;}
.x11d_c01280{left:808.706667pt;}
.xe6_c01280{left:811.013333pt;}
.xe7_c01280{left:816.386667pt;}
.xf2_c01280{left:821.760000pt;}
.x11e_c01280{left:868.613333pt;}
.x11f_c01280{left:880.893333pt;}
.x120_c01280{left:896.253333pt;}
.x121_c01280{left:912.386667pt;}
.x122_c01280{left:927.746667pt;}
.x123_c01280{left:944.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_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;}
@font-face{font-family:ff1_c01281;src:url('chunks/assets/font_7a974b270da001177e33f7e7.woff2')format("woff");}.ff1_c01281{font-family:ff1_c01281;line-height:1.109863;font-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_c01281{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m22_c01281{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_c01281{transform:matrix(0.050050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050050,0.000000,0.000000,0.250000,0,0);}
.m7c_c01281{transform:matrix(0.064100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064100,0.000000,0.000000,0.250000,0,0);}
.m0_c01281{transform:matrix(0.064200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064200,0.000000,0.000000,0.250000,0,0);}
.m166_c01281{transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);}
.m187_c01281{transform:matrix(0.074900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074900,0.000000,0.000000,0.250000,0,0);}
.m7a_c01281{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);}
.m1b6_c01281{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);}
.m1c5_c01281{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m134_c01281{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m17c_c01281{transform:matrix(0.083775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083775,0.000000,0.000000,0.250000,0,0);}
.m83_c01281{transform:matrix(0.091475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091475,0.000000,0.000000,0.250000,0,0);}
.me1_c01281{transform:matrix(0.094000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094000,0.000000,0.000000,0.250000,0,0);}
.mdf_c01281{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);}
.m192_c01281{transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);}
.m92_c01281{transform:matrix(0.106475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106475,0.000000,0.000000,0.250000,0,0);}
.me6_c01281{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m155_c01281{transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01281{transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);}
.m3b_c01281{transform:matrix(0.108875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108875,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01281{transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110150,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01281{transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111775,0.000000,0.000000,0.250000,0,0);}
.m163_c01281{transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);}
.m183_c01281{transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);}
.me3_c01281{transform:matrix(0.115225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115225,0.000000,0.000000,0.250000,0,0);}
.m150_c01281{transform:matrix(0.115725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115725,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01281{transform:matrix(0.117875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117875,0.000000,0.000000,0.250000,0,0);}
.m154_c01281{transform:matrix(0.118825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118825,0.000000,0.000000,0.250000,0,0);}
.me8_c01281{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m10d_c01281{transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);}
.m1f4_c01281{transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);}
.m111_c01281{transform:matrix(0.120825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120825,0.000000,0.000000,0.250000,0,0);}
.m19b_c01281{transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01281{transform:matrix(0.122200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122200,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01281{transform:matrix(0.122300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122300,0.000000,0.000000,0.250000,0,0);}
.m51_c01281{transform:matrix(0.122725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122725,0.000000,0.000000,0.250000,0,0);}
.m14e_c01281{transform:matrix(0.123425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123425,0.000000,0.000000,0.250000,0,0);}
.m162_c01281{transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);}
.m91_c01281{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m18d_c01281{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);}
.m16d_c01281{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);}
.m16f_c01281{transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);}
.m4a_c01281{transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);}
.m181_c01281{transform:matrix(0.127150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127150,0.000000,0.000000,0.250000,0,0);}
.ma7_c01281{transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);}
.m195_c01281{transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01281{transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);}
.m197_c01281{transform:matrix(0.129225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129225,0.000000,0.000000,0.250000,0,0);}
.m182_c01281{transform:matrix(0.129875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129875,0.000000,0.000000,0.250000,0,0);}
.m14f_c01281{transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);}
.md8_c01281{transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);}
.m8f_c01281{transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);}
.mf6_c01281{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);}
.m185_c01281{transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133225,0.000000,0.000000,0.250000,0,0);}
.m165_c01281{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);}
.m1e3_c01281{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01281{transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);}
.m18b_c01281{transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);}
.m189_c01281{transform:matrix(0.134775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134775,0.000000,0.000000,0.250000,0,0);}
.m161_c01281{transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);}
.m2a_c01281{transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);}
.m19d_c01281{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m2f_c01281{transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);}
.m186_c01281{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m4c_c01281{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mf2_c01281{transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);}
.m16a_c01281{transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01281{transform:matrix(0.138300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138300,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01281{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.m151_c01281{transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);}
.m169_c01281{transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);}
.mf_c01281{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m84_c01281{transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);}
.m2b_c01281{transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);}
.m9e_c01281{transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);}
.m1eb_c01281{transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);}
.m170_c01281{transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);}
.m105_c01281{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);}
.m20_c01281{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m11_c01281{transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);}
.m1e8_c01281{transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01281{transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);}
.m164_c01281{transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);}
.mef_c01281{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);}
.m1fe_c01281{transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);}
.m18c_c01281{transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);}
.m19a_c01281{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m29_c01281{transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);}
.meb_c01281{transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01281{transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);}
.m2d_c01281{transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);}
.m54_c01281{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);}
.m1d3_c01281{transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);}
.m12a_c01281{transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01281{transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);}
.m3e_c01281{transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);}
.m53_c01281{transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);}
.m16b_c01281{transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);}
.m7f_c01281{transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);}
.m12b_c01281{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);}
.m143_c01281{transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);}
.ma6_c01281{transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01281{transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150625,0.000000,0.000000,0.250000,0,0);}
.m135_c01281{transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01281{transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151150,0.000000,0.000000,0.250000,0,0);}
.mcf_c01281{transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);}
.mda_c01281{transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);}
.me2_c01281{transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);}
.m8e_c01281{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.mf0_c01281{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m82_c01281{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);}
.mb7_c01281{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m172_c01281{transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);}
.m184_c01281{transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);}
.m10c_c01281{transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01281{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.mc2_c01281{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);}
.md3_c01281{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);}
.mce_c01281{transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);}
.m119_c01281{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);}
.m12c_c01281{transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01281{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m137_c01281{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);}
.m1b1_c01281{transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161200,0.000000,0.000000,0.250000,0,0);}
.md5_c01281{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m15f_c01281{transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);}
.m1fa_c01281{transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);}
.mb8_c01281{transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);}
.m8a_c01281{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.m10e_c01281{transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);}
.ma9_c01281{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m16e_c01281{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m4e_c01281{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.mcc_c01281{transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);}
.m36_c01281{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.m61_c01281{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m100_c01281{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.mee_c01281{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01281{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);}
.m1a0_c01281{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m188_c01281{transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);}
.m191_c01281{transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);}
.m35_c01281{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m17e_c01281{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.m10b_c01281{transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);}
.m17f_c01281{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);}
.m90_c01281{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);}
.me7_c01281{transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01281{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.m132_c01281{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m179_c01281{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);}
.m40_c01281{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);}
.m52_c01281{transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);}
.m196_c01281{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);}
.m19f_c01281{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.me0_c01281{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.m175_c01281{transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);}
.me9_c01281{transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171400,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01281{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01281{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m117_c01281{transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01281{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);}
.m113_c01281{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.m87_c01281{transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);}
.m180_c01281{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m174_c01281{transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);}
.md7_c01281{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);}
.m1b0_c01281{transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);}
.m43_c01281{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01281{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01281{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.mfb_c01281{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.m19_c01281{transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01281{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01281{transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);}
.m139_c01281{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);}
.m1ce_c01281{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.m6d_c01281{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.md9_c01281{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01281{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.mf9_c01281{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m156_c01281{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);}
.m3f_c01281{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m13c_c01281{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);}
.m4f_c01281{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.mf5_c01281{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.mfd_c01281{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);}
.m15a_c01281{transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);}
.m1ef_c01281{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);}
.m160_c01281{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);}
.m1ee_c01281{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.m72_c01281{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);}
.m1de_c01281{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m133_c01281{transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);}
.m7e_c01281{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);}
.m5f_c01281{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m9f_c01281{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);}
.m1bf_c01281{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);}
.m1a6_c01281{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01281{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m5d_c01281{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);}
.m26_c01281{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);}
.m1cd_c01281{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m94_c01281{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.m15_c01281{transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);}
.m1f2_c01281{transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);}
.m12e_c01281{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m1be_c01281{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.mf8_c01281{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m1f9_c01281{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);}
.m4b_c01281{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m19e_c01281{transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);}
.m8b_c01281{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);}
.m131_c01281{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.md4_c01281{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);}
.me5_c01281{transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01281{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m15b_c01281{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);}
.m1f0_c01281{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m125_c01281{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);}
.m12f_c01281{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);}
.m17a_c01281{transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);}
.m13b_c01281{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.mc8_c01281{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);}
.m1a2_c01281{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);}
.m17b_c01281{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);}
.m159_c01281{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);}
.m5e_c01281{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.m42_c01281{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m194_c01281{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.m171_c01281{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01281{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.mf7_c01281{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);}
.m126_c01281{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m78_c01281{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);}
.m106_c01281{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);}
.m136_c01281{transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);}
.m142_c01281{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.mf1_c01281{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);}
.ma5_c01281{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);}
.mc9_c01281{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.m74_c01281{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);}
.m110_c01281{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);}
.m1c_c01281{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.ma8_c01281{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);}
.m31_c01281{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m1af_c01281{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m79_c01281{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);}
.m67_c01281{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);}
.m13e_c01281{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.ma4_c01281{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);}
.m14c_c01281{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m11b_c01281{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);}
.m1fd_c01281{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.mc7_c01281{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);}
.m49_c01281{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);}
.m15d_c01281{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.maf_c01281{transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01281{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.m178_c01281{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.mea_c01281{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);}
.m167_c01281{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m1f3_c01281{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);}
.m96_c01281{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.m16_c01281{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.mba_c01281{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mbc_c01281{transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);}
.m140_c01281{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);}
.m1e4_c01281{transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);}
.m81_c01281{transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);}
.m19c_c01281{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);}
.m69_c01281{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);}
.m14b_c01281{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m6b_c01281{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m1f1_c01281{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);}
.m104_c01281{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m8c_c01281{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);}
.m102_c01281{transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);}
.mb0_c01281{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01281{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);}
.m199_c01281{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);}
.m1c7_c01281{transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);}
.mff_c01281{transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01281{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.m27_c01281{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m190_c01281{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);}
.mdc_c01281{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.m85_c01281{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);}
.md1_c01281{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m75_c01281{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01281{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m127_c01281{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);}
.m9a_c01281{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m1e6_c01281{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);}
.m71_c01281{transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01281{transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);}
.mf4_c01281{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);}
.mc1_c01281{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.mae_c01281{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);}
.m4d_c01281{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m153_c01281{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);}
.m168_c01281{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m128_c01281{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);}
.med_c01281{transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);}
.m1f6_c01281{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01281{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m11d_c01281{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.m114_c01281{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.mb_c01281{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m93_c01281{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m80_c01281{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.m177_c01281{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.m62_c01281{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.mb9_c01281{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.md6_c01281{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);}
.mfe_c01281{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.m59_c01281{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);}
.m6f_c01281{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);}
.mab_c01281{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);}
.m14d_c01281{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);}
.m32_c01281{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m1f5_c01281{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);}
.m152_c01281{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);}
.m70_c01281{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);}
.m1d2_c01281{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.mbb_c01281{transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01281{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);}
.m18a_c01281{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);}
.m1a4_c01281{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m158_c01281{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.m13_c01281{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m89_c01281{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);}
.m1d5_c01281{transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);}
.mb4_c01281{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m76_c01281{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);}
.m86_c01281{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);}
.mdd_c01281{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m73_c01281{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m108_c01281{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);}
.m2c_c01281{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);}
.m6a_c01281{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);}
.mfc_c01281{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);}
.m15e_c01281{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);}
.m1ea_c01281{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.md0_c01281{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m5c_c01281{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);}
.m1d_c01281{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.m1ed_c01281{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);}
.mc0_c01281{transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);}
.m145_c01281{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m57_c01281{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);}
.m99_c01281{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);}
.m13a_c01281{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);}
.m1da_c01281{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);}
.m107_c01281{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);}
.m1a7_c01281{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);}
.m1df_c01281{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01281{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);}
.mec_c01281{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.mbe_c01281{transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);}
.m14a_c01281{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);}
.m18f_c01281{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);}
.m1dc_c01281{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m13d_c01281{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);}
.mcb_c01281{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);}
.m55_c01281{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);}
.m138_c01281{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);}
.mbd_c01281{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.m115_c01281{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.mc3_c01281{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m17d_c01281{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01281{transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);}
.m1e7_c01281{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);}
.m9b_c01281{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);}
.m39_c01281{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);}
.m12d_c01281{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);}
.m18e_c01281{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);}
.m146_c01281{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);}
.m1f7_c01281{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);}
.m98_c01281{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.m148_c01281{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m8d_c01281{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);}
.m173_c01281{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.m129_c01281{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);}
.m18_c01281{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01281{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m3a_c01281{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m77_c01281{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);}
.ma2_c01281{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);}
.m48_c01281{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.mac_c01281{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m3c_c01281{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);}
.m15c_c01281{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);}
.mc5_c01281{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);}
.m2e_c01281{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m88_c01281{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);}
.m46_c01281{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);}
.ma1_c01281{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);}
.m38_c01281{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);}
.m1e_c01281{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01281{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3_c01281{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m112_c01281{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);}
.m3d_c01281{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01281{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);}
.m2_c01281{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);}
.m45_c01281{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01281{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);}
.m6_c01281{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m33_c01281{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01281{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);}
.m58_c01281{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mdb_c01281{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);}
.m24_c01281{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);}
.m65_c01281{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m64_c01281{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c01281{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);}
.m7b_c01281{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.me_c01281{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m23_c01281{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);}
.m95_c01281{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c01281{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c01281{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb5_c01281{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01281{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m34_c01281{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m120_c01281{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c01281{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m144_c01281{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);}
.m37_c01281{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m147_c01281{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c01281{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m14_c01281{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m63_c01281{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);}
.maa_c01281{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);}
.m9c_c01281{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m47_c01281{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m10a_c01281{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);}
.m68_c01281{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m50_c01281{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mfa_c01281{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01281{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);}
.m1d8_c01281{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01281{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01281{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);}
.m5_c01281{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mc_c01281{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m121_c01281{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma0_c01281{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m101_c01281{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m17_c01281{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m66_c01281{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m10_c01281{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mca_c01281{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);}
.mb6_c01281{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);}
.m10f_c01281{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.mb3_c01281{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01281{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m176_c01281{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);}
.m7d_c01281{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m56_c01281{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m9_c01281{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me4_c01281{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m103_c01281{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m97_c01281{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m60_c01281{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01281{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);}
.md2_c01281{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01281{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01281{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01281{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01281{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mad_c01281{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.mde_c01281{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);}
.m1fb_c01281{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m25_c01281{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);}
.m9d_c01281{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m16c_c01281{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mc4_c01281{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01281{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m130_c01281{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01281{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);}
.m11c_c01281{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mf3_c01281{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m11f_c01281{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);}
.m193_c01281{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m41_c01281{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m13f_c01281{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01281{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m28_c01281{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m21_c01281{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.ma_c01281{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m149_c01281{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m4_c01281{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m109_c01281{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);}
.m118_c01281{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);}
.m1db_c01281{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.mc6_c01281{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m124_c01281{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.mcd_c01281{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.m11a_c01281{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m1ff_c01281{transform:matrix(1.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.322500,0.000000,0.000000,0.250000,0,0);}
.m157_c01281{transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);}
.m1fc_c01281{transform:matrix(1.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.512500,0.000000,0.000000,0.250000,0,0);}
.m122_c01281{transform:matrix(1.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.570000,0.000000,0.000000,0.250000,0,0);}
.m116_c01281{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m11e_c01281{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m123_c01281{transform:matrix(1.935000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.935000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.935000,0.000000,0.000000,0.250000,0,0);}
.m198_c01281{transform:matrix(2.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.217500,0.000000,0.000000,0.250000,0,0);}
.m141_c01281{transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);}
.m1f8_c01281{transform:matrix(3.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.340000,0.000000,0.000000,0.250000,0,0);}
.v2_c01281{vertical-align:-6.900000px;}
.v0_c01281{vertical-align:0.000000px;}
.v1_c01281{vertical-align:20.760000px;}
.ls1_c01281{letter-spacing:0.000000px;}
.ls0_c01281{letter-spacing:53.102688px;}
.sc__c01281{text-shadow:none;}
.sc0_c01281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01281{-webkit-text-stroke:0px transparent;}
.sc0_c01281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01281{word-spacing:-22.334828px;}
.ws2_c01281{word-spacing:-9.067899px;}
.ws3_c01281{word-spacing:0.000000px;}
.ws0_c01281{word-spacing:1.241940px;}
.fc0_c01281{color:transparent;}
.fs3_c01281{font-size:3.456000px;}
.fs1_c01281{font-size:6.000000px;}
.fs5_c01281{font-size:6.900000px;}
.fs15_c01281{font-size:10.380000px;}
.fs1a_c01281{font-size:13.800000px;}
.fs8_c01281{font-size:17.280000px;}
.fs17_c01281{font-size:20.760000px;}
.fs6_c01281{font-size:24.180000px;}
.fs1e_c01281{font-size:27.660000px;}
.fs9_c01281{font-size:31.080000px;}
.fs4_c01281{font-size:34.560000px;}
.fs0_c01281{font-size:38.040000px;}
.fs2_c01281{font-size:41.460000px;}
.fs11_c01281{font-size:44.940000px;}
.fs1c_c01281{font-size:48.360000px;}
.fs7_c01281{font-size:51.840000px;}
.fs10_c01281{font-size:55.320000px;}
.fsf_c01281{font-size:58.740000px;}
.fs14_c01281{font-size:62.220000px;}
.fs16_c01281{font-size:65.640000px;}
.fsa_c01281{font-size:69.120000px;}
.fsd_c01281{font-size:72.600000px;}
.fs19_c01281{font-size:76.020000px;}
.fs12_c01281{font-size:79.500000px;}
.fsb_c01281{font-size:82.920000px;}
.fs18_c01281{font-size:86.400000px;}
.fs1b_c01281{font-size:89.880000px;}
.fs13_c01281{font-size:93.300000px;}
.fs1d_c01281{font-size:96.780000px;}
.fs22_c01281{font-size:100.200000px;}
.fse_c01281{font-size:103.680000px;}
.fs20_c01281{font-size:107.160000px;}
.fs21_c01281{font-size:110.580000px;}
.fs1f_c01281{font-size:114.060000px;}
.fsc_c01281{font-size:120.960000px;}
.y0_c01281{bottom:0.000000px;}
.y245_c01281{bottom:138.240000px;}
.y244_c01281{bottom:140.835000px;}
.y240_c01281{bottom:142.560000px;}
.y23e_c01281{bottom:144.285000px;}
.y243_c01281{bottom:145.155000px;}
.y23d_c01281{bottom:146.010000px;}
.y23f_c01281{bottom:146.880000px;}
.y242_c01281{bottom:149.475000px;}
.y241_c01281{bottom:152.070000px;}
.y23c_c01281{bottom:154.650000px;}
.y239_c01281{bottom:158.115000px;}
.y23a_c01281{bottom:158.970000px;}
.y238_c01281{bottom:159.840000px;}
.y23b_c01281{bottom:160.710000px;}
.y237_c01281{bottom:161.565000px;}
.y236_c01281{bottom:162.435000px;}
.y235_c01281{bottom:164.160000px;}
.y234_c01281{bottom:165.030000px;}
.y233_c01281{bottom:165.885000px;}
.y231_c01281{bottom:166.755000px;}
.y230_c01281{bottom:167.610000px;}
.y22e_c01281{bottom:169.350000px;}
.y232_c01281{bottom:171.930000px;}
.y22f_c01281{bottom:174.525000px;}
.y22d_c01281{bottom:176.250000px;}
.y22c_c01281{bottom:185.760000px;}
.y22a_c01281{bottom:186.630000px;}
.y22b_c01281{bottom:188.355000px;}
.y227_c01281{bottom:189.210000px;}
.y229_c01281{bottom:190.080000px;}
.y226_c01281{bottom:191.805000px;}
.y228_c01281{bottom:194.400000px;}
.y225_c01281{bottom:195.270000px;}
.y224_c01281{bottom:204.765000px;}
.y223_c01281{bottom:207.360000px;}
.y221_c01281{bottom:208.230000px;}
.y222_c01281{bottom:209.085000px;}
.y21f_c01281{bottom:209.955000px;}
.y21d_c01281{bottom:210.810000px;}
.y21e_c01281{bottom:211.680000px;}
.y220_c01281{bottom:212.550000px;}
.y21a_c01281{bottom:213.405000px;}
.y217_c01281{bottom:215.130000px;}
.y214_c01281{bottom:216.870000px;}
.y21c_c01281{bottom:218.595000px;}
.y218_c01281{bottom:219.450000px;}
.y21b_c01281{bottom:220.320000px;}
.y219_c01281{bottom:221.190000px;}
.y213_c01281{bottom:222.045000px;}
.y216_c01281{bottom:222.915000px;}
.y212_c01281{bottom:224.640000px;}
.y215_c01281{bottom:225.510000px;}
.y210_c01281{bottom:226.365000px;}
.y211_c01281{bottom:227.235000px;}
.y20d_c01281{bottom:228.090000px;}
.y20f_c01281{bottom:228.960000px;}
.y20b_c01281{bottom:229.830000px;}
.y20a_c01281{bottom:232.410000px;}
.y20e_c01281{bottom:233.280000px;}
.y20c_c01281{bottom:235.005000px;}
.y209_c01281{bottom:236.730000px;}
.y206_c01281{bottom:244.515000px;}
.y207_c01281{bottom:245.370000px;}
.y208_c01281{bottom:246.240000px;}
.y203_c01281{bottom:248.835000px;}
.y202_c01281{bottom:249.690000px;}
.y1fd_c01281{bottom:250.560000px;}
.y201_c01281{bottom:251.430000px;}
.y204_c01281{bottom:252.285000px;}
.y205_c01281{bottom:253.155000px;}
.y1fc_c01281{bottom:254.010000px;}
.y1ff_c01281{bottom:254.880000px;}
.y200_c01281{bottom:260.070000px;}
.y1fe_c01281{bottom:263.520000px;}
.y1fa_c01281{bottom:264.390000px;}
.y1f9_c01281{bottom:265.245000px;}
.y1f6_c01281{bottom:266.115000px;}
.y1f8_c01281{bottom:266.970000px;}
.y1fb_c01281{bottom:267.840000px;}
.y1f5_c01281{bottom:268.710000px;}
.y1f4_c01281{bottom:269.565000px;}
.y1f7_c01281{bottom:272.160000px;}
.y1f2_c01281{bottom:273.885000px;}
.y1f3_c01281{bottom:274.755000px;}
.y1f1_c01281{bottom:278.205000px;}
.y1ef_c01281{bottom:286.845000px;}
.y1f0_c01281{bottom:287.715000px;}
.y1ee_c01281{bottom:289.440000px;}
.y1ec_c01281{bottom:292.035000px;}
.y1eb_c01281{bottom:293.760000px;}
.y1ed_c01281{bottom:295.485000px;}
.y1ea_c01281{bottom:297.210000px;}
.y1e9_c01281{bottom:302.400000px;}
.y1e6_c01281{bottom:305.850000px;}
.y1e4_c01281{bottom:309.315000px;}
.y1e5_c01281{bottom:311.040000px;}
.y1e7_c01281{bottom:311.910000px;}
.y1e1_c01281{bottom:313.635000px;}
.y1e3_c01281{bottom:315.360000px;}
.y1df_c01281{bottom:316.230000px;}
.y1e0_c01281{bottom:317.085000px;}
.y1e2_c01281{bottom:317.955000px;}
.y1e8_c01281{bottom:323.130000px;}
.y1de_c01281{bottom:327.450000px;}
.y1dc_c01281{bottom:329.190000px;}
.y1dd_c01281{bottom:330.045000px;}
.y1d9_c01281{bottom:330.915000px;}
.y1db_c01281{bottom:331.770000px;}
.y1d4_c01281{bottom:332.640000px;}
.y1d5_c01281{bottom:333.510000px;}
.y1d6_c01281{bottom:334.365000px;}
.y1d8_c01281{bottom:335.235000px;}
.y1d7_c01281{bottom:336.090000px;}
.y1da_c01281{bottom:339.555000px;}
.y1d3_c01281{bottom:346.470000px;}
.y1d1_c01281{bottom:347.325000px;}
.y1cf_c01281{bottom:349.050000px;}
.y1d0_c01281{bottom:349.920000px;}
.y1d2_c01281{bottom:350.790000px;}
.y1ce_c01281{bottom:351.645000px;}
.y1cd_c01281{bottom:355.110000px;}
.y1cb_c01281{bottom:364.605000px;}
.y1cc_c01281{bottom:367.200000px;}
.y1c5_c01281{bottom:368.070000px;}
.y1ca_c01281{bottom:368.925000px;}
.y1c8_c01281{bottom:370.650000px;}
.y1c7_c01281{bottom:372.390000px;}
.y1c4_c01281{bottom:373.245000px;}
.y1c9_c01281{bottom:374.115000px;}
.y1c2_c01281{bottom:375.840000px;}
.y1c6_c01281{bottom:376.710000px;}
.y1c3_c01281{bottom:379.290000px;}
.y1c0_c01281{bottom:381.885000px;}
.y1be_c01281{bottom:384.480000px;}
.y1bf_c01281{bottom:385.350000px;}
.y1bb_c01281{bottom:386.205000px;}
.y1ba_c01281{bottom:388.800000px;}
.y1bc_c01281{bottom:394.845000px;}
.y1bd_c01281{bottom:400.890000px;}
.y1c1_c01281{bottom:402.630000px;}
.y1b7_c01281{bottom:406.080000px;}
.y1b8_c01281{bottom:408.675000px;}
.y1b6_c01281{bottom:409.530000px;}
.y1b3_c01281{bottom:411.270000px;}
.y1b2_c01281{bottom:412.125000px;}
.y1b4_c01281{bottom:412.995000px;}
.y1b1_c01281{bottom:413.850000px;}
.y1b5_c01281{bottom:420.765000px;}
.y1b9_c01281{bottom:422.490000px;}
.y1ae_c01281{bottom:427.680000px;}
.y1ad_c01281{bottom:428.550000px;}
.y1b0_c01281{bottom:430.275000px;}
.y1ab_c01281{bottom:431.130000px;}
.y1aa_c01281{bottom:432.000000px;}
.y1a9_c01281{bottom:432.870000px;}
.y1ac_c01281{bottom:433.725000px;}
.y1af_c01281{bottom:438.045000px;}
.y1a8_c01281{bottom:442.365000px;}
.y1a6_c01281{bottom:444.090000px;}
.y1a5_c01281{bottom:445.830000px;}
.y1a4_c01281{bottom:446.685000px;}
.y1a7_c01281{bottom:449.280000px;}
.y1a1_c01281{bottom:450.150000px;}
.y1a2_c01281{bottom:451.875000px;}
.y1a3_c01281{bottom:459.645000px;}
.y19f_c01281{bottom:466.560000px;}
.y19d_c01281{bottom:471.750000px;}
.y19a_c01281{bottom:472.605000px;}
.y19b_c01281{bottom:473.475000px;}
.y19e_c01281{bottom:474.330000px;}
.y19c_c01281{bottom:476.070000px;}
.y197_c01281{bottom:476.925000px;}
.y199_c01281{bottom:477.795000px;}
.y198_c01281{bottom:478.650000px;}
.y1a0_c01281{bottom:484.710000px;}
.y194_c01281{bottom:488.160000px;}
.y196_c01281{bottom:489.030000px;}
.y192_c01281{bottom:489.885000px;}
.y195_c01281{bottom:491.610000px;}
.y193_c01281{bottom:493.350000px;}
.y191_c01281{bottom:494.205000px;}
.y18e_c01281{bottom:495.930000px;}
.y190_c01281{bottom:498.525000px;}
.y18f_c01281{bottom:500.250000px;}
.y18d_c01281{bottom:501.990000px;}
.y18c_c01281{bottom:504.570000px;}
.y18a_c01281{bottom:506.310000px;}
.y187_c01281{bottom:507.165000px;}
.y188_c01281{bottom:508.035000px;}
.y189_c01281{bottom:508.890000px;}
.y18b_c01281{bottom:510.630000px;}
.y186_c01281{bottom:511.485000px;}
.y185_c01281{bottom:516.675000px;}
.y184_c01281{bottom:520.995000px;}
.y183_c01281{bottom:521.850000px;}
.y181_c01281{bottom:523.590000px;}
.y182_c01281{bottom:524.445000px;}
.y180_c01281{bottom:525.315000px;}
.y17b_c01281{bottom:527.040000px;}
.y17a_c01281{bottom:528.765000px;}
.y179_c01281{bottom:529.635000px;}
.y17f_c01281{bottom:531.360000px;}
.y17d_c01281{bottom:533.085000px;}
.y17c_c01281{bottom:534.810000px;}
.y17e_c01281{bottom:536.550000px;}
.y177_c01281{bottom:547.770000px;}
.y175_c01281{bottom:548.640000px;}
.y178_c01281{bottom:550.365000px;}
.y176_c01281{bottom:552.090000px;}
.y174_c01281{bottom:552.960000px;}
.y173_c01281{bottom:554.685000px;}
.y172_c01281{bottom:559.875000px;}
.y171_c01281{bottom:560.730000px;}
.y16f_c01281{bottom:564.195000px;}
.y16b_c01281{bottom:565.050000px;}
.y16c_c01281{bottom:565.920000px;}
.y170_c01281{bottom:566.790000px;}
.y16a_c01281{bottom:568.515000px;}
.y16e_c01281{bottom:570.240000px;}
.y16d_c01281{bottom:578.880000px;}
.y169_c01281{bottom:587.520000px;}
.y168_c01281{bottom:588.390000px;}
.y166_c01281{bottom:590.115000px;}
.y165_c01281{bottom:590.970000px;}
.y163_c01281{bottom:593.565000px;}
.y15e_c01281{bottom:594.435000px;}
.y167_c01281{bottom:595.290000px;}
.y160_c01281{bottom:600.480000px;}
.y15f_c01281{bottom:601.350000px;}
.y162_c01281{bottom:604.800000px;}
.y161_c01281{bottom:605.670000px;}
.y164_c01281{bottom:606.525000px;}
.y159_c01281{bottom:609.990000px;}
.y158_c01281{bottom:610.845000px;}
.y15c_c01281{bottom:611.715000px;}
.y15d_c01281{bottom:613.440000px;}
.y15b_c01281{bottom:614.310000px;}
.y15a_c01281{bottom:615.165000px;}
.y156_c01281{bottom:617.760000px;}
.y155_c01281{bottom:619.485000px;}
.y154_c01281{bottom:622.080000px;}
.y157_c01281{bottom:622.950000px;}
.y153_c01281{bottom:628.125000px;}
.y152_c01281{bottom:629.850000px;}
.y14f_c01281{bottom:632.445000px;}
.y151_c01281{bottom:633.315000px;}
.y150_c01281{bottom:635.040000px;}
.y14e_c01281{bottom:635.910000px;}
.y14d_c01281{bottom:638.490000px;}
.y149_c01281{bottom:650.595000px;}
.y148_c01281{bottom:651.450000px;}
.y146_c01281{bottom:653.190000px;}
.y144_c01281{bottom:654.045000px;}
.y14a_c01281{bottom:654.915000px;}
.y147_c01281{bottom:655.770000px;}
.y14b_c01281{bottom:656.640000px;}
.y143_c01281{bottom:657.510000px;}
.y145_c01281{bottom:658.365000px;}
.y14c_c01281{bottom:659.235000px;}
.y142_c01281{bottom:660.960000px;}
.y140_c01281{bottom:668.730000px;}
.y13d_c01281{bottom:671.325000px;}
.y13f_c01281{bottom:672.195000px;}
.y139_c01281{bottom:673.920000px;}
.y13e_c01281{bottom:675.645000px;}
.y13c_c01281{bottom:676.515000px;}
.y13b_c01281{bottom:677.370000px;}
.y138_c01281{bottom:679.110000px;}
.y13a_c01281{bottom:679.965000px;}
.y137_c01281{bottom:680.835000px;}
.y141_c01281{bottom:685.155000px;}
.y136_c01281{bottom:688.605000px;}
.y135_c01281{bottom:690.330000px;}
.y134_c01281{bottom:692.070000px;}
.y12b_c01281{bottom:692.925000px;}
.y133_c01281{bottom:693.795000px;}
.y12e_c01281{bottom:694.650000px;}
.y131_c01281{bottom:695.520000px;}
.y130_c01281{bottom:696.390000px;}
.y132_c01281{bottom:697.245000px;}
.y12f_c01281{bottom:700.710000px;}
.y12d_c01281{bottom:701.565000px;}
.y12c_c01281{bottom:703.290000px;}
.y128_c01281{bottom:704.160000px;}
.y126_c01281{bottom:705.030000px;}
.y127_c01281{bottom:705.885000px;}
.y129_c01281{bottom:706.755000px;}
.y12a_c01281{bottom:707.610000px;}
.y124_c01281{bottom:708.480000px;}
.y125_c01281{bottom:709.350000px;}
.y123_c01281{bottom:710.205000px;}
.y122_c01281{bottom:711.075000px;}
.y120_c01281{bottom:711.930000px;}
.y11e_c01281{bottom:712.800000px;}
.y11f_c01281{bottom:714.525000px;}
.y11b_c01281{bottom:715.395000px;}
.y11c_c01281{bottom:717.120000px;}
.y11d_c01281{bottom:718.845000px;}
.y121_c01281{bottom:722.310000px;}
.y117_c01281{bottom:730.950000px;}
.y119_c01281{bottom:731.805000px;}
.y11a_c01281{bottom:732.675000px;}
.y116_c01281{bottom:733.530000px;}
.y113_c01281{bottom:734.400000px;}
.y118_c01281{bottom:735.270000px;}
.y112_c01281{bottom:736.125000px;}
.y10f_c01281{bottom:736.995000px;}
.y111_c01281{bottom:737.850000px;}
.y114_c01281{bottom:739.590000px;}
.y110_c01281{bottom:740.445000px;}
.y115_c01281{bottom:741.315000px;}
.y10d_c01281{bottom:751.680000px;}
.y10c_c01281{bottom:752.550000px;}
.y10b_c01281{bottom:754.275000px;}
.y10a_c01281{bottom:755.130000px;}
.y109_c01281{bottom:756.870000px;}
.y108_c01281{bottom:759.450000px;}
.y107_c01281{bottom:760.320000px;}
.y106_c01281{bottom:761.190000px;}
.y10e_c01281{bottom:767.235000px;}
.y104_c01281{bottom:769.830000px;}
.y103_c01281{bottom:770.685000px;}
.y105_c01281{bottom:772.410000px;}
.y100_c01281{bottom:774.150000px;}
.yff_c01281{bottom:776.730000px;}
.y102_c01281{bottom:777.600000px;}
.y101_c01281{bottom:782.790000px;}
.yfd_c01281{bottom:790.560000px;}
.yfc_c01281{bottom:791.430000px;}
.yfb_c01281{bottom:792.285000px;}
.yfa_c01281{bottom:794.010000px;}
.yfe_c01281{bottom:795.750000px;}
.yf9_c01281{bottom:800.070000px;}
.yf8_c01281{bottom:800.925000px;}
.yf7_c01281{bottom:806.970000px;}
.yf6_c01281{bottom:809.565000px;}
.yf4_c01281{bottom:810.435000px;}
.yf3_c01281{bottom:811.290000px;}
.yf5_c01281{bottom:813.030000px;}
.yef_c01281{bottom:813.885000px;}
.yee_c01281{bottom:814.755000px;}
.yf2_c01281{bottom:815.610000px;}
.yed_c01281{bottom:817.350000px;}
.ya_c01281{bottom:818.205000px;}
.yf0_c01281{bottom:819.075000px;}
.y9_c01281{bottom:823.395000px;}
.yf1_c01281{bottom:826.845000px;}
.yeb_c01281{bottom:831.165000px;}
.yea_c01281{bottom:832.035000px;}
.ye9_c01281{bottom:832.890000px;}
.ye8_c01281{bottom:833.760000px;}
.ye5_c01281{bottom:834.630000px;}
.ye6_c01281{bottom:835.485000px;}
.yec_c01281{bottom:836.355000px;}
.ye3_c01281{bottom:837.210000px;}
.ye2_c01281{bottom:838.080000px;}
.ye7_c01281{bottom:838.950000px;}
.ye1_c01281{bottom:839.805000px;}
.ye4_c01281{bottom:840.675000px;}
.ydf_c01281{bottom:849.315000px;}
.ye0_c01281{bottom:851.040000px;}
.yda_c01281{bottom:852.765000px;}
.yde_c01281{bottom:853.635000px;}
.yd7_c01281{bottom:855.360000px;}
.ydd_c01281{bottom:857.955000px;}
.ydb_c01281{bottom:858.810000px;}
.yd9_c01281{bottom:859.680000px;}
.yd8_c01281{bottom:860.550000px;}
.yd4_c01281{bottom:862.275000px;}
.ydc_c01281{bottom:863.130000px;}
.yd5_c01281{bottom:868.320000px;}
.yd6_c01281{bottom:870.045000px;}
.yd3_c01281{bottom:871.770000px;}
.yd1_c01281{bottom:873.510000px;}
.ycf_c01281{bottom:874.365000px;}
.ycd_c01281{bottom:876.090000px;}
.yd2_c01281{bottom:877.830000px;}
.yd0_c01281{bottom:879.555000px;}
.yce_c01281{bottom:880.410000px;}
.ycc_c01281{bottom:881.280000px;}
.ycb_c01281{bottom:882.150000px;}
.yc9_c01281{bottom:891.645000px;}
.yc7_c01281{bottom:893.370000px;}
.yc8_c01281{bottom:894.240000px;}
.yc1_c01281{bottom:895.965000px;}
.yca_c01281{bottom:896.835000px;}
.yc2_c01281{bottom:897.690000px;}
.yc0_c01281{bottom:899.430000px;}
.ybf_c01281{bottom:901.155000px;}
.yc5_c01281{bottom:902.010000px;}
.yc6_c01281{bottom:904.605000px;}
.yc3_c01281{bottom:906.330000px;}
.yc4_c01281{bottom:910.650000px;}
.ybe_c01281{bottom:912.390000px;}
.ybd_c01281{bottom:914.970000px;}
.yb9_c01281{bottom:916.710000px;}
.ybc_c01281{bottom:917.565000px;}
.yba_c01281{bottom:919.290000px;}
.ybb_c01281{bottom:920.160000px;}
.yb8_c01281{bottom:921.885000px;}
.yb7_c01281{bottom:922.755000px;}
.yb6_c01281{bottom:931.395000px;}
.yb5_c01281{bottom:932.250000px;}
.yb4_c01281{bottom:933.990000px;}
.yb3_c01281{bottom:934.845000px;}
.yaf_c01281{bottom:935.715000px;}
.yae_c01281{bottom:936.570000px;}
.yb2_c01281{bottom:937.440000px;}
.yb1_c01281{bottom:938.310000px;}
.yb0_c01281{bottom:940.035000px;}
.yac_c01281{bottom:949.530000px;}
.ya9_c01281{bottom:953.850000px;}
.yad_c01281{bottom:956.445000px;}
.yab_c01281{bottom:957.315000px;}
.ya7_c01281{bottom:958.170000px;}
.yaa_c01281{bottom:959.040000px;}
.ya8_c01281{bottom:959.910000px;}
.ya6_c01281{bottom:960.765000px;}
.ya5_c01281{bottom:961.635000px;}
.ya4_c01281{bottom:972.000000px;}
.ya3_c01281{bottom:972.870000px;}
.ya2_c01281{bottom:973.725000px;}
.ya0_c01281{bottom:974.595000px;}
.y9f_c01281{bottom:976.320000px;}
.y9c_c01281{bottom:977.190000px;}
.y9e_c01281{bottom:979.770000px;}
.y9d_c01281{bottom:980.640000px;}
.y9b_c01281{bottom:991.875000px;}
.ya1_c01281{bottom:993.600000px;}
.y99_c01281{bottom:996.195000px;}
.y9a_c01281{bottom:997.920000px;}
.y96_c01281{bottom:998.790000px;}
.y98_c01281{bottom:999.645000px;}
.y97_c01281{bottom:1001.370000px;}
.y95_c01281{bottom:1003.110000px;}
.y94_c01281{bottom:1012.605000px;}
.y8f_c01281{bottom:1016.925000px;}
.y93_c01281{bottom:1017.795000px;}
.y92_c01281{bottom:1018.650000px;}
.y91_c01281{bottom:1020.390000px;}
.y8e_c01281{bottom:1021.245000px;}
.y90_c01281{bottom:1025.565000px;}
.y8c_c01281{bottom:1032.480000px;}
.y8b_c01281{bottom:1033.350000px;}
.y87_c01281{bottom:1035.075000px;}
.y89_c01281{bottom:1035.930000px;}
.y8a_c01281{bottom:1036.800000px;}
.y8d_c01281{bottom:1037.670000px;}
.y85_c01281{bottom:1038.525000px;}
.y88_c01281{bottom:1039.395000px;}
.y86_c01281{bottom:1040.250000px;}
.y83_c01281{bottom:1053.210000px;}
.y7f_c01281{bottom:1054.080000px;}
.y80_c01281{bottom:1055.805000px;}
.y7d_c01281{bottom:1056.675000px;}
.y7e_c01281{bottom:1057.530000px;}
.y84_c01281{bottom:1058.400000px;}
.y82_c01281{bottom:1059.270000px;}
.y81_c01281{bottom:1060.125000px;}
.y8_c01281{bottom:1060.995000px;}
.y7_c01281{bottom:1061.850000px;}
.y7b_c01281{bottom:1069.635000px;}
.y7a_c01281{bottom:1072.230000px;}
.y79_c01281{bottom:1073.085000px;}
.y78_c01281{bottom:1073.955000px;}
.y7c_c01281{bottom:1075.680000px;}
.y73_c01281{bottom:1076.550000px;}
.y77_c01281{bottom:1079.130000px;}
.y76_c01281{bottom:1080.000000px;}
.y75_c01281{bottom:1080.870000px;}
.y74_c01281{bottom:1081.725000px;}
.y72_c01281{bottom:1092.090000px;}
.y6e_c01281{bottom:1093.830000px;}
.y71_c01281{bottom:1094.685000px;}
.y6f_c01281{bottom:1095.555000px;}
.y6d_c01281{bottom:1098.150000px;}
.y6c_c01281{bottom:1099.875000px;}
.y70_c01281{bottom:1100.730000px;}
.y6b_c01281{bottom:1101.600000px;}
.y67_c01281{bottom:1112.835000px;}
.y68_c01281{bottom:1114.560000px;}
.y64_c01281{bottom:1116.285000px;}
.y62_c01281{bottom:1117.155000px;}
.y63_c01281{bottom:1118.010000px;}
.y66_c01281{bottom:1119.750000px;}
.y65_c01281{bottom:1120.605000px;}
.y69_c01281{bottom:1123.200000px;}
.y6a_c01281{bottom:1125.795000px;}
.y60_c01281{bottom:1132.710000px;}
.y61_c01281{bottom:1133.565000px;}
.y5c_c01281{bottom:1136.160000px;}
.y5b_c01281{bottom:1137.030000px;}
.y5d_c01281{bottom:1138.755000px;}
.y5f_c01281{bottom:1139.610000px;}
.y5e_c01281{bottom:1140.480000px;}
.y59_c01281{bottom:1151.715000px;}
.y58_c01281{bottom:1153.440000px;}
.y53_c01281{bottom:1156.035000px;}
.y54_c01281{bottom:1157.760000px;}
.y57_c01281{bottom:1159.485000px;}
.y56_c01281{bottom:1160.355000px;}
.y55_c01281{bottom:1161.210000px;}
.y52_c01281{bottom:1162.080000px;}
.y5a_c01281{bottom:1166.400000px;}
.y51_c01281{bottom:1174.170000px;}
.y4a_c01281{bottom:1175.040000px;}
.y50_c01281{bottom:1175.910000px;}
.y4d_c01281{bottom:1177.635000px;}
.y4f_c01281{bottom:1178.490000px;}
.y5_c01281{bottom:1179.360000px;}
.y4e_c01281{bottom:1180.230000px;}
.y6_c01281{bottom:1181.085000px;}
.y4c_c01281{bottom:1181.955000px;}
.y4b_c01281{bottom:1186.275000px;}
.y47_c01281{bottom:1194.045000px;}
.y46_c01281{bottom:1195.770000px;}
.y45_c01281{bottom:1196.640000px;}
.y43_c01281{bottom:1197.510000px;}
.y40_c01281{bottom:1198.365000px;}
.y42_c01281{bottom:1199.235000px;}
.y41_c01281{bottom:1200.090000px;}
.y3f_c01281{bottom:1201.830000px;}
.y48_c01281{bottom:1202.685000px;}
.y49_c01281{bottom:1203.555000px;}
.y44_c01281{bottom:1213.920000px;}
.y3c_c01281{bottom:1214.790000px;}
.y3d_c01281{bottom:1215.645000px;}
.y38_c01281{bottom:1216.515000px;}
.y3a_c01281{bottom:1217.370000px;}
.y39_c01281{bottom:1218.240000px;}
.y3b_c01281{bottom:1219.110000px;}
.y36_c01281{bottom:1219.965000px;}
.y3_c01281{bottom:1220.835000px;}
.y2_c01281{bottom:1222.560000px;}
.y37_c01281{bottom:1223.430000px;}
.y3e_c01281{bottom:1225.155000px;}
.y4_c01281{bottom:1228.605000px;}
.y35_c01281{bottom:1234.650000px;}
.y34_c01281{bottom:1235.520000px;}
.y30_c01281{bottom:1236.390000px;}
.y31_c01281{bottom:1238.970000px;}
.y33_c01281{bottom:1240.710000px;}
.y32_c01281{bottom:1242.435000px;}
.y2f_c01281{bottom:1243.290000px;}
.y246_c01281{bottom:1249.350000px;}
.y2e_c01281{bottom:1253.670000px;}
.y2d_c01281{bottom:1254.525000px;}
.y2c_c01281{bottom:1257.120000px;}
.y2b_c01281{bottom:1258.845000px;}
.y28_c01281{bottom:1259.715000px;}
.y2a_c01281{bottom:1263.165000px;}
.y29_c01281{bottom:1264.035000px;}
.y27_c01281{bottom:1275.270000px;}
.y25_c01281{bottom:1276.125000px;}
.y24_c01281{bottom:1276.995000px;}
.y20_c01281{bottom:1278.720000px;}
.y1f_c01281{bottom:1279.590000px;}
.y21_c01281{bottom:1280.445000px;}
.y26_c01281{bottom:1281.315000px;}
.y22_c01281{bottom:1282.170000px;}
.y1e_c01281{bottom:1283.910000px;}
.y23_c01281{bottom:1287.360000px;}
.y1d_c01281{bottom:1291.680000px;}
.y19_c01281{bottom:1294.275000px;}
.y1a_c01281{bottom:1296.870000px;}
.y17_c01281{bottom:1298.595000px;}
.y15_c01281{bottom:1299.450000px;}
.y1b_c01281{bottom:1300.320000px;}
.y1c_c01281{bottom:1301.190000px;}
.y16_c01281{bottom:1303.770000px;}
.y18_c01281{bottom:1305.510000px;}
.y13_c01281{bottom:1326.240000px;}
.y12_c01281{bottom:1327.965000px;}
.y11_c01281{bottom:1331.430000px;}
.y14_c01281{bottom:1332.285000px;}
.y1_c01281{bottom:1350.435000px;}
.y10_c01281{bottom:1354.755000px;}
.ye_c01281{bottom:1362.525000px;}
.yd_c01281{bottom:1363.395000px;}
.yf_c01281{bottom:1366.845000px;}
.yb_c01281{bottom:1389.315000px;}
.yc_c01281{bottom:1392.765000px;}
.h5_c01281{height:3.110063px;}
.h3_c01281{height:5.399414px;}
.h7_c01281{height:6.209326px;}
.h22_c01281{height:8.650312px;}
.h17_c01281{height:9.340986px;}
.h1d_c01281{height:12.418652px;}
.ha_c01281{height:15.550313px;}
.h19_c01281{height:18.681973px;}
.h8_c01281{height:21.759639px;}
.h21_c01281{height:24.891299px;}
.hb_c01281{height:27.968965px;}
.h6_c01281{height:31.100625px;}
.h2_c01281{height:34.232285px;}
.h4_c01281{height:37.309951px;}
.h13_c01281{height:40.441611px;}
.h1f_c01281{height:43.519277px;}
.h9_c01281{height:46.650937px;}
.h12_c01281{height:49.782598px;}
.h1a_c01281{height:52.860264px;}
.h16_c01281{height:55.991924px;}
.h18_c01281{height:59.069590px;}
.hc_c01281{height:62.201250px;}
.hf_c01281{height:65.332910px;}
.h1c_c01281{height:68.410576px;}
.h14_c01281{height:71.542236px;}
.h11_c01281{height:73.620264px;}
.hd_c01281{height:74.619902px;}
.h1b_c01281{height:77.751563px;}
.h1e_c01281{height:80.883223px;}
.h15_c01281{height:83.960889px;}
.h20_c01281{height:87.092549px;}
.h26_c01281{height:90.170215px;}
.h10_c01281{height:93.301875px;}
.h24_c01281{height:96.433535px;}
.h25_c01281{height:99.511201px;}
.h23_c01281{height:102.642861px;}
.he_c01281{height:108.852188px;}
.h0_c01281{height:1509.405000px;}
.h1_c01281{height:1509.750000px;}
.w0_c01281{width:1088.640000px;}
.w1_c01281{width:1089.000000px;}
.x0_c01281{left:0.000000px;}
.x2_c01281{left:2.595000px;}
.x3_c01281{left:8.640000px;}
.x4_c01281{left:27.645000px;}
.x5_c01281{left:31.110000px;}
.x8_c01281{left:37.155000px;}
.x1_c01281{left:42.330000px;}
.x6_c01281{left:140.835000px;}
.x7_c01281{left:159.840000px;}
.xc3_c01281{left:171.930000px;}
.xc4_c01281{left:188.354640px;}
.xf3_c01281{left:193.530000px;}
.xc5_c01281{left:196.125000px;}
.xc9_c01281{left:197.850000px;}
.xbc_c01281{left:205.635000px;}
.xca_c01281{left:214.275000px;}
.x58_c01281{left:218.595000px;}
.xb3_c01281{left:222.915000px;}
.x116_c01281{left:225.510000px;}
.x59_c01281{left:227.235000px;}
.xf8_c01281{left:228.960000px;}
.x2c_c01281{left:231.555000px;}
.xe8_c01281{left:233.280000px;}
.x117_c01281{left:235.005000px;}
.x13_c01281{left:236.730000px;}
.x35_c01281{left:238.470000px;}
.x99_c01281{left:241.050000px;}
.xbd_c01281{left:243.645000px;}
.x126_c01281{left:245.370000px;}
.x93_c01281{left:248.835000px;}
.x110_c01281{left:250.560000px;}
.x9_c01281{left:257.475000px;}
.x2d_c01281{left:259.200000px;}
.x7a_c01281{left:260.925000px;}
.xbe_c01281{left:262.650000px;}
.x62_c01281{left:264.390000px;}
.xb4_c01281{left:266.115000px;}
.xaf_c01281{left:268.710000px;}
.x49_c01281{left:270.435000px;}
.xa3_c01281{left:272.160000px;}
.xce_c01281{left:273.885000px;}
.x87_c01281{left:275.610000px;}
.x1e_c01281{left:278.205000px;}
.x9e_c01281{left:279.930000px;}
.x108_c01281{left:282.525000px;}
.xa_c01281{left:284.250000px;}
.x72_c01281{left:289.440000px;}
.xa4_c01281{left:292.035000px;}
.x1f_c01281{left:294.630000px;}
.x3d_c01281{left:296.355000px;}
.x100_c01281{left:298.950000px;}
.x20_c01281{left:301.530000px;}
.x82_c01281{left:304.125000px;}
.xcf_c01281{left:306.720000px;}
.xd6_c01281{left:308.445000px;}
.x14_c01281{left:310.170000px;}
.x11d_c01281{left:312.765000px;}
.x7b_c01281{left:315.360000px;}
.x36_c01281{left:317.955000px;}
.x9a_c01281{left:319.680000px;}
.x63_c01281{left:321.405000px;}
.x2e_c01281{left:325.725000px;}
.xe2_c01281{left:328.320000px;}
.xcb_c01281{left:330.045000px;}
.x107_c01281{left:332.640000px;}
.x6a_c01281{left:336.090000px;}
.xa5_c01281{left:338.685000px;}
.xec_c01281{left:341.280000px;}
.xed_c01281{left:343.005000px;}
.x4a_c01281{left:346.470000px;}
.xee_c01281{left:348.195000px;}
.x21_c01281{left:351.645000px;}
.xf9_c01281{left:355.110000px;}
.x9b_c01281{left:356.835000px;}
.xb_c01281{left:358.560000px;}
.x83_c01281{left:361.155000px;}
.xd9_c01281{left:363.750000px;}
.x12_c01281{left:367.200000px;}
.x109_c01281{left:368.925000px;}
.xa6_c01281{left:370.650000px;}
.x4b_c01281{left:373.245000px;}
.x22_c01281{left:375.840000px;}
.x2f_c01281{left:377.565000px;}
.xaa_c01281{left:380.160000px;}
.xc_c01281{left:381.885000px;}
.x64_c01281{left:384.480000px;}
.x73_c01281{left:386.205000px;}
.x106_c01281{left:388.800000px;}
.xd_c01281{left:391.395000px;}
.x10a_c01281{left:393.990000px;}
.x7c_c01281{left:395.715000px;}
.x23_c01281{left:399.165000px;}
.xbf_c01281{left:400.890000px;}
.x3e_c01281{left:402.630000px;}
.x101_c01281{left:404.355000px;}
.x121_c01281{left:406.950000px;}
.xb5_c01281{left:410.400000px;}
.xb0_c01281{left:413.850000px;}
.xf_c01281{left:415.590000px;}
.x88_c01281{left:418.170000px;}
.x84_c01281{left:422.490000px;}
.x89_c01281{left:425.085000px;}
.x4c_c01281{left:427.680000px;}
.xab_c01281{left:429.405000px;}
.x122_c01281{left:431.130000px;}
.x94_c01281{left:433.725000px;}
.x5a_c01281{left:438.045000px;}
.x15_c01281{left:440.640000px;}
.x8f_c01281{left:442.365000px;}
.xe_c01281{left:444.960000px;}
.xd0_c01281{left:446.685000px;}
.x85_c01281{left:450.150000px;}
.x30_c01281{left:452.730000px;}
.x10_c01281{left:454.470000px;}
.x7d_c01281{left:457.050000px;}
.x123_c01281{left:459.645000px;}
.x3f_c01281{left:461.370000px;}
.x6b_c01281{left:463.965000px;}
.x16_c01281{left:466.560000px;}
.x5b_c01281{left:468.285000px;}
.x10f_c01281{left:470.880000px;}
.x8a_c01281{left:472.605000px;}
.x40_c01281{left:475.200000px;}
.x9f_c01281{left:477.795000px;}
.x8b_c01281{left:480.390000px;}
.x65_c01281{left:482.115000px;}
.xfe_c01281{left:483.840000px;}
.xc6_c01281{left:485.565000px;}
.xd7_c01281{left:489.030000px;}
.x103_c01281{left:490.755000px;}
.x24_c01281{left:494.205000px;}
.x5c_c01281{left:495.930000px;}
.xd1_c01281{left:498.525000px;}
.x25_c01281{left:502.845000px;}
.x31_c01281{left:506.310000px;}
.xb6_c01281{left:508.890000px;}
.x74_c01281{left:511.485000px;}
.x7e_c01281{left:514.080000px;}
.x9c_c01281{left:516.675000px;}
.x37_c01281{left:518.400000px;}
.x4d_c01281{left:520.995000px;}
.x8c_c01281{left:522.720000px;}
.x7f_c01281{left:524.445000px;}
.xd2_c01281{left:527.040000px;}
.xb7_c01281{left:528.765000px;}
.x26_c01281{left:530.490000px;}
.x113_c01281{left:533.955000px;}
.xc0_c01281{left:538.275000px;}
.xc1_c01281{left:541.725000px;}
.x129_c01281{left:543.450000px;}
.x4e_c01281{left:545.190000px;}
.x111_c01281{left:546.915000px;}
.x95_c01281{left:548.640000px;}
.x17_c01281{left:551.235000px;}
.x6c_c01281{left:554.685000px;}
.xd8_c01281{left:556.410000px;}
.xac_c01281{left:558.150000px;}
.xda_c01281{left:559.875000px;}
.xb8_c01281{left:561.600000px;}
.xa0_c01281{left:563.325000px;}
.x75_c01281{left:565.920000px;}
.x32_c01281{left:568.515000px;}
.x11_c01281{left:570.240000px;}
.x4f_c01281{left:572.835000px;}
.x80_c01281{left:575.430000px;}
.xe3_c01281{left:583.200000px;}
.xf4_c01281{left:585.795000px;}
.xc7_c01281{left:587.520000px;}
.x50_c01281{left:589.245000px;}
.x41_c01281{left:591.840000px;}
.x76_c01281{left:594.435000px;}
.x66_c01281{left:597.030000px;}
.xcc_c01281{left:598.755000px;}
.x96_c01281{left:600.480000px;}
.x33_c01281{left:602.205000px;}
.x6d_c01281{left:606.525000px;}
.x38_c01281{left:608.250000px;}
.x11f_c01281{left:611.715000px;}
.xef_c01281{left:613.440000px;}
.x67_c01281{left:615.165000px;}
.xe4_c01281{left:616.890000px;}
.xad_c01281{left:619.485000px;}
.x51_c01281{left:621.210000px;}
.xc8_c01281{left:622.950000px;}
.x115_c01281{left:624.675000px;}
.x18_c01281{left:626.400000px;}
.xa7_c01281{left:628.125000px;}
.xb1_c01281{left:630.720000px;}
.xfa_c01281{left:635.910000px;}
.x5d_c01281{left:638.490000px;}
.x120_c01281{left:641.085000px;}
.x6e_c01281{left:642.810000px;}
.x114_c01281{left:644.550000px;}
.x27_c01281{left:646.275000px;}
.x39_c01281{left:648.870000px;}
.x124_c01281{left:651.450000px;}
.xcd_c01281{left:654.045000px;}
.xde_c01281{left:655.770000px;}
.xf5_c01281{left:659.235000px;}
.x10b_c01281{left:663.555000px;}
.xe9_c01281{left:666.150000px;}
.xa8_c01281{left:669.600000px;}
.x42_c01281{left:671.325000px;}
.x11b_c01281{left:673.050000px;}
.x68_c01281{left:674.790000px;}
.x5e_c01281{left:677.370000px;}
.x52_c01281{left:679.965000px;}
.x11e_c01281{left:685.155000px;}
.xdb_c01281{left:686.880000px;}
.x19_c01281{left:688.605000px;}
.x6f_c01281{left:691.200000px;}
.xf6_c01281{left:692.925000px;}
.xd3_c01281{left:698.115000px;}
.x86_c01281{left:699.840000px;}
.x102_c01281{left:701.565000px;}
.x43_c01281{left:705.030000px;}
.x1a_c01281{left:706.755000px;}
.x53_c01281{left:709.350000px;}
.xc2_c01281{left:711.930000px;}
.x81_c01281{left:715.395000px;}
.xb2_c01281{left:717.120000px;}
.x9d_c01281{left:719.715000px;}
.x119_c01281{left:721.440000px;}
.x34_c01281{left:723.165000px;}
.xe5_c01281{left:725.760000px;}
.x1b_c01281{left:728.355000px;}
.x28_c01281{left:730.950000px;}
.xa1_c01281{left:732.675000px;}
.xd4_c01281{left:735.270000px;}
.xae_c01281{left:736.995000px;}
.x128_c01281{left:739.590000px;}
.xb9_c01281{left:741.315000px;}
.x3a_c01281{left:743.040000px;}
.xf0_c01281{left:744.765000px;}
.x5f_c01281{left:748.230000px;}
.x97_c01281{left:749.955000px;}
.x29_c01281{left:751.680000px;}
.x112_c01281{left:753.405000px;}
.x54_c01281{left:755.130000px;}
.xf1_c01281{left:757.725000px;}
.x90_c01281{left:761.190000px;}
.x44_c01281{left:763.770000px;}
.x70_c01281{left:766.365000px;}
.xf7_c01281{left:768.090000px;}
.x1c_c01281{left:770.685000px;}
.xba_c01281{left:772.410000px;}
.x125_c01281{left:774.150000px;}
.x127_c01281{left:775.875000px;}
.x60_c01281{left:778.470000px;}
.xf2_c01281{left:780.195000px;}
.x104_c01281{left:781.920000px;}
.x2a_c01281{left:783.645000px;}
.xea_c01281{left:786.240000px;}
.xdc_c01281{left:789.690000px;}
.x91_c01281{left:792.285000px;}
.xe6_c01281{left:794.010000px;}
.x45_c01281{left:795.750000px;}
.x10c_c01281{left:799.200000px;}
.xd5_c01281{left:800.925000px;}
.xdf_c01281{left:802.650000px;}
.x98_c01281{left:806.115000px;}
.x77_c01281{left:807.840000px;}
.xfb_c01281{left:809.565000px;}
.xe0_c01281{left:814.755000px;}
.x11a_c01281{left:818.205000px;}
.x3b_c01281{left:820.800000px;}
.x78_c01281{left:822.525000px;}
.x46_c01281{left:825.990000px;}
.xbb_c01281{left:827.715000px;}
.x105_c01281{left:829.440000px;}
.x55_c01281{left:831.165000px;}
.xeb_c01281{left:834.630000px;}
.x79_c01281{left:836.355000px;}
.xfc_c01281{left:838.080000px;}
.x8d_c01281{left:840.675000px;}
.x61_c01281{left:843.270000px;}
.x118_c01281{left:846.720000px;}
.x2b_c01281{left:849.315000px;}
.x8e_c01281{left:851.910000px;}
.x71_c01281{left:853.635000px;}
.xdd_c01281{left:857.085000px;}
.xe7_c01281{left:859.680000px;}
.x1d_c01281{left:861.405000px;}
.x11c_c01281{left:864.870000px;}
.x92_c01281{left:870.045000px;}
.xe1_c01281{left:872.638500px;}
.xff_c01281{left:876.960000px;}
.x69_c01281{left:879.555000px;}
.x3c_c01281{left:881.280000px;}
.x47_c01281{left:885.600000px;}
.xfd_c01281{left:887.325000px;}
.x48_c01281{left:895.965000px;}
.x56_c01281{left:897.690000px;}
.x10d_c01281{left:899.430000px;}
.xa9_c01281{left:901.155000px;}
.xa2_c01281{left:907.200000px;}
.x10e_c01281{left:911.520000px;}
.x57_c01281{left:925.350000px;}
.x12a_c01281{left:952.995000px;}
.x12b_c01281{left:975.450000px;}
@media print{
.v2_c01281{vertical-align:-6.133333pt;}
.v0_c01281{vertical-align:0.000000pt;}
.v1_c01281{vertical-align:18.453333pt;}
.ls1_c01281{letter-spacing:0.000000pt;}
.ls0_c01281{letter-spacing:47.202389pt;}
.ws1_c01281{word-spacing:-19.853180pt;}
.ws2_c01281{word-spacing:-8.060355pt;}
.ws3_c01281{word-spacing:0.000000pt;}
.ws0_c01281{word-spacing:1.103947pt;}
.fs3_c01281{font-size:3.072000pt;}
.fs1_c01281{font-size:5.333333pt;}
.fs5_c01281{font-size:6.133333pt;}
.fs15_c01281{font-size:9.226667pt;}
.fs1a_c01281{font-size:12.266667pt;}
.fs8_c01281{font-size:15.360000pt;}
.fs17_c01281{font-size:18.453333pt;}
.fs6_c01281{font-size:21.493333pt;}
.fs1e_c01281{font-size:24.586667pt;}
.fs9_c01281{font-size:27.626667pt;}
.fs4_c01281{font-size:30.720000pt;}
.fs0_c01281{font-size:33.813333pt;}
.fs2_c01281{font-size:36.853333pt;}
.fs11_c01281{font-size:39.946667pt;}
.fs1c_c01281{font-size:42.986667pt;}
.fs7_c01281{font-size:46.080000pt;}
.fs10_c01281{font-size:49.173333pt;}
.fsf_c01281{font-size:52.213333pt;}
.fs14_c01281{font-size:55.306667pt;}
.fs16_c01281{font-size:58.346667pt;}
.fsa_c01281{font-size:61.440000pt;}
.fsd_c01281{font-size:64.533333pt;}
.fs19_c01281{font-size:67.573333pt;}
.fs12_c01281{font-size:70.666667pt;}
.fsb_c01281{font-size:73.706667pt;}
.fs18_c01281{font-size:76.800000pt;}
.fs1b_c01281{font-size:79.893333pt;}
.fs13_c01281{font-size:82.933333pt;}
.fs1d_c01281{font-size:86.026667pt;}
.fs22_c01281{font-size:89.066667pt;}
.fse_c01281{font-size:92.160000pt;}
.fs20_c01281{font-size:95.253333pt;}
.fs21_c01281{font-size:98.293333pt;}
.fs1f_c01281{font-size:101.386667pt;}
.fsc_c01281{font-size:107.520000pt;}
.y0_c01281{bottom:0.000000pt;}
.y245_c01281{bottom:122.880000pt;}
.y244_c01281{bottom:125.186667pt;}
.y240_c01281{bottom:126.720000pt;}
.y23e_c01281{bottom:128.253333pt;}
.y243_c01281{bottom:129.026667pt;}
.y23d_c01281{bottom:129.786667pt;}
.y23f_c01281{bottom:130.560000pt;}
.y242_c01281{bottom:132.866667pt;}
.y241_c01281{bottom:135.173333pt;}
.y23c_c01281{bottom:137.466667pt;}
.y239_c01281{bottom:140.546667pt;}
.y23a_c01281{bottom:141.306667pt;}
.y238_c01281{bottom:142.080000pt;}
.y23b_c01281{bottom:142.853333pt;}
.y237_c01281{bottom:143.613333pt;}
.y236_c01281{bottom:144.386667pt;}
.y235_c01281{bottom:145.920000pt;}
.y234_c01281{bottom:146.693333pt;}
.y233_c01281{bottom:147.453333pt;}
.y231_c01281{bottom:148.226667pt;}
.y230_c01281{bottom:148.986667pt;}
.y22e_c01281{bottom:150.533333pt;}
.y232_c01281{bottom:152.826667pt;}
.y22f_c01281{bottom:155.133333pt;}
.y22d_c01281{bottom:156.666667pt;}
.y22c_c01281{bottom:165.120000pt;}
.y22a_c01281{bottom:165.893333pt;}
.y22b_c01281{bottom:167.426667pt;}
.y227_c01281{bottom:168.186667pt;}
.y229_c01281{bottom:168.960000pt;}
.y226_c01281{bottom:170.493333pt;}
.y228_c01281{bottom:172.800000pt;}
.y225_c01281{bottom:173.573333pt;}
.y224_c01281{bottom:182.013333pt;}
.y223_c01281{bottom:184.320000pt;}
.y221_c01281{bottom:185.093333pt;}
.y222_c01281{bottom:185.853333pt;}
.y21f_c01281{bottom:186.626667pt;}
.y21d_c01281{bottom:187.386667pt;}
.y21e_c01281{bottom:188.160000pt;}
.y220_c01281{bottom:188.933333pt;}
.y21a_c01281{bottom:189.693333pt;}
.y217_c01281{bottom:191.226667pt;}
.y214_c01281{bottom:192.773333pt;}
.y21c_c01281{bottom:194.306667pt;}
.y218_c01281{bottom:195.066667pt;}
.y21b_c01281{bottom:195.840000pt;}
.y219_c01281{bottom:196.613333pt;}
.y213_c01281{bottom:197.373333pt;}
.y216_c01281{bottom:198.146667pt;}
.y212_c01281{bottom:199.680000pt;}
.y215_c01281{bottom:200.453333pt;}
.y210_c01281{bottom:201.213333pt;}
.y211_c01281{bottom:201.986667pt;}
.y20d_c01281{bottom:202.746667pt;}
.y20f_c01281{bottom:203.520000pt;}
.y20b_c01281{bottom:204.293333pt;}
.y20a_c01281{bottom:206.586667pt;}
.y20e_c01281{bottom:207.360000pt;}
.y20c_c01281{bottom:208.893333pt;}
.y209_c01281{bottom:210.426667pt;}
.y206_c01281{bottom:217.346667pt;}
.y207_c01281{bottom:218.106667pt;}
.y208_c01281{bottom:218.880000pt;}
.y203_c01281{bottom:221.186667pt;}
.y202_c01281{bottom:221.946667pt;}
.y1fd_c01281{bottom:222.720000pt;}
.y201_c01281{bottom:223.493333pt;}
.y204_c01281{bottom:224.253333pt;}
.y205_c01281{bottom:225.026667pt;}
.y1fc_c01281{bottom:225.786667pt;}
.y1ff_c01281{bottom:226.560000pt;}
.y200_c01281{bottom:231.173333pt;}
.y1fe_c01281{bottom:234.240000pt;}
.y1fa_c01281{bottom:235.013333pt;}
.y1f9_c01281{bottom:235.773333pt;}
.y1f6_c01281{bottom:236.546667pt;}
.y1f8_c01281{bottom:237.306667pt;}
.y1fb_c01281{bottom:238.080000pt;}
.y1f5_c01281{bottom:238.853333pt;}
.y1f4_c01281{bottom:239.613333pt;}
.y1f7_c01281{bottom:241.920000pt;}
.y1f2_c01281{bottom:243.453333pt;}
.y1f3_c01281{bottom:244.226667pt;}
.y1f1_c01281{bottom:247.293333pt;}
.y1ef_c01281{bottom:254.973333pt;}
.y1f0_c01281{bottom:255.746667pt;}
.y1ee_c01281{bottom:257.280000pt;}
.y1ec_c01281{bottom:259.586667pt;}
.y1eb_c01281{bottom:261.120000pt;}
.y1ed_c01281{bottom:262.653333pt;}
.y1ea_c01281{bottom:264.186667pt;}
.y1e9_c01281{bottom:268.800000pt;}
.y1e6_c01281{bottom:271.866667pt;}
.y1e4_c01281{bottom:274.946667pt;}
.y1e5_c01281{bottom:276.480000pt;}
.y1e7_c01281{bottom:277.253333pt;}
.y1e1_c01281{bottom:278.786667pt;}
.y1e3_c01281{bottom:280.320000pt;}
.y1df_c01281{bottom:281.093333pt;}
.y1e0_c01281{bottom:281.853333pt;}
.y1e2_c01281{bottom:282.626667pt;}
.y1e8_c01281{bottom:287.226667pt;}
.y1de_c01281{bottom:291.066667pt;}
.y1dc_c01281{bottom:292.613333pt;}
.y1dd_c01281{bottom:293.373333pt;}
.y1d9_c01281{bottom:294.146667pt;}
.y1db_c01281{bottom:294.906667pt;}
.y1d4_c01281{bottom:295.680000pt;}
.y1d5_c01281{bottom:296.453333pt;}
.y1d6_c01281{bottom:297.213333pt;}
.y1d8_c01281{bottom:297.986667pt;}
.y1d7_c01281{bottom:298.746667pt;}
.y1da_c01281{bottom:301.826667pt;}
.y1d3_c01281{bottom:307.973333pt;}
.y1d1_c01281{bottom:308.733333pt;}
.y1cf_c01281{bottom:310.266667pt;}
.y1d0_c01281{bottom:311.040000pt;}
.y1d2_c01281{bottom:311.813333pt;}
.y1ce_c01281{bottom:312.573333pt;}
.y1cd_c01281{bottom:315.653333pt;}
.y1cb_c01281{bottom:324.093333pt;}
.y1cc_c01281{bottom:326.400000pt;}
.y1c5_c01281{bottom:327.173333pt;}
.y1ca_c01281{bottom:327.933333pt;}
.y1c8_c01281{bottom:329.466667pt;}
.y1c7_c01281{bottom:331.013333pt;}
.y1c4_c01281{bottom:331.773333pt;}
.y1c9_c01281{bottom:332.546667pt;}
.y1c2_c01281{bottom:334.080000pt;}
.y1c6_c01281{bottom:334.853333pt;}
.y1c3_c01281{bottom:337.146667pt;}
.y1c0_c01281{bottom:339.453333pt;}
.y1be_c01281{bottom:341.760000pt;}
.y1bf_c01281{bottom:342.533333pt;}
.y1bb_c01281{bottom:343.293333pt;}
.y1ba_c01281{bottom:345.600000pt;}
.y1bc_c01281{bottom:350.973333pt;}
.y1bd_c01281{bottom:356.346667pt;}
.y1c1_c01281{bottom:357.893333pt;}
.y1b7_c01281{bottom:360.960000pt;}
.y1b8_c01281{bottom:363.266667pt;}
.y1b6_c01281{bottom:364.026667pt;}
.y1b3_c01281{bottom:365.573333pt;}
.y1b2_c01281{bottom:366.333333pt;}
.y1b4_c01281{bottom:367.106667pt;}
.y1b1_c01281{bottom:367.866667pt;}
.y1b5_c01281{bottom:374.013333pt;}
.y1b9_c01281{bottom:375.546667pt;}
.y1ae_c01281{bottom:380.160000pt;}
.y1ad_c01281{bottom:380.933333pt;}
.y1b0_c01281{bottom:382.466667pt;}
.y1ab_c01281{bottom:383.226667pt;}
.y1aa_c01281{bottom:384.000000pt;}
.y1a9_c01281{bottom:384.773333pt;}
.y1ac_c01281{bottom:385.533333pt;}
.y1af_c01281{bottom:389.373333pt;}
.y1a8_c01281{bottom:393.213333pt;}
.y1a6_c01281{bottom:394.746667pt;}
.y1a5_c01281{bottom:396.293333pt;}
.y1a4_c01281{bottom:397.053333pt;}
.y1a7_c01281{bottom:399.360000pt;}
.y1a1_c01281{bottom:400.133333pt;}
.y1a2_c01281{bottom:401.666667pt;}
.y1a3_c01281{bottom:408.573333pt;}
.y19f_c01281{bottom:414.720000pt;}
.y19d_c01281{bottom:419.333333pt;}
.y19a_c01281{bottom:420.093333pt;}
.y19b_c01281{bottom:420.866667pt;}
.y19e_c01281{bottom:421.626667pt;}
.y19c_c01281{bottom:423.173333pt;}
.y197_c01281{bottom:423.933333pt;}
.y199_c01281{bottom:424.706667pt;}
.y198_c01281{bottom:425.466667pt;}
.y1a0_c01281{bottom:430.853333pt;}
.y194_c01281{bottom:433.920000pt;}
.y196_c01281{bottom:434.693333pt;}
.y192_c01281{bottom:435.453333pt;}
.y195_c01281{bottom:436.986667pt;}
.y193_c01281{bottom:438.533333pt;}
.y191_c01281{bottom:439.293333pt;}
.y18e_c01281{bottom:440.826667pt;}
.y190_c01281{bottom:443.133333pt;}
.y18f_c01281{bottom:444.666667pt;}
.y18d_c01281{bottom:446.213333pt;}
.y18c_c01281{bottom:448.506667pt;}
.y18a_c01281{bottom:450.053333pt;}
.y187_c01281{bottom:450.813333pt;}
.y188_c01281{bottom:451.586667pt;}
.y189_c01281{bottom:452.346667pt;}
.y18b_c01281{bottom:453.893333pt;}
.y186_c01281{bottom:454.653333pt;}
.y185_c01281{bottom:459.266667pt;}
.y184_c01281{bottom:463.106667pt;}
.y183_c01281{bottom:463.866667pt;}
.y181_c01281{bottom:465.413333pt;}
.y182_c01281{bottom:466.173333pt;}
.y180_c01281{bottom:466.946667pt;}
.y17b_c01281{bottom:468.480000pt;}
.y17a_c01281{bottom:470.013333pt;}
.y179_c01281{bottom:470.786667pt;}
.y17f_c01281{bottom:472.320000pt;}
.y17d_c01281{bottom:473.853333pt;}
.y17c_c01281{bottom:475.386667pt;}
.y17e_c01281{bottom:476.933333pt;}
.y177_c01281{bottom:486.906667pt;}
.y175_c01281{bottom:487.680000pt;}
.y178_c01281{bottom:489.213333pt;}
.y176_c01281{bottom:490.746667pt;}
.y174_c01281{bottom:491.520000pt;}
.y173_c01281{bottom:493.053333pt;}
.y172_c01281{bottom:497.666667pt;}
.y171_c01281{bottom:498.426667pt;}
.y16f_c01281{bottom:501.506667pt;}
.y16b_c01281{bottom:502.266667pt;}
.y16c_c01281{bottom:503.040000pt;}
.y170_c01281{bottom:503.813333pt;}
.y16a_c01281{bottom:505.346667pt;}
.y16e_c01281{bottom:506.880000pt;}
.y16d_c01281{bottom:514.560000pt;}
.y169_c01281{bottom:522.240000pt;}
.y168_c01281{bottom:523.013333pt;}
.y166_c01281{bottom:524.546667pt;}
.y165_c01281{bottom:525.306667pt;}
.y163_c01281{bottom:527.613333pt;}
.y15e_c01281{bottom:528.386667pt;}
.y167_c01281{bottom:529.146667pt;}
.y160_c01281{bottom:533.760000pt;}
.y15f_c01281{bottom:534.533333pt;}
.y162_c01281{bottom:537.600000pt;}
.y161_c01281{bottom:538.373333pt;}
.y164_c01281{bottom:539.133333pt;}
.y159_c01281{bottom:542.213333pt;}
.y158_c01281{bottom:542.973333pt;}
.y15c_c01281{bottom:543.746667pt;}
.y15d_c01281{bottom:545.280000pt;}
.y15b_c01281{bottom:546.053333pt;}
.y15a_c01281{bottom:546.813333pt;}
.y156_c01281{bottom:549.120000pt;}
.y155_c01281{bottom:550.653333pt;}
.y154_c01281{bottom:552.960000pt;}
.y157_c01281{bottom:553.733333pt;}
.y153_c01281{bottom:558.333333pt;}
.y152_c01281{bottom:559.866667pt;}
.y14f_c01281{bottom:562.173333pt;}
.y151_c01281{bottom:562.946667pt;}
.y150_c01281{bottom:564.480000pt;}
.y14e_c01281{bottom:565.253333pt;}
.y14d_c01281{bottom:567.546667pt;}
.y149_c01281{bottom:578.306667pt;}
.y148_c01281{bottom:579.066667pt;}
.y146_c01281{bottom:580.613333pt;}
.y144_c01281{bottom:581.373333pt;}
.y14a_c01281{bottom:582.146667pt;}
.y147_c01281{bottom:582.906667pt;}
.y14b_c01281{bottom:583.680000pt;}
.y143_c01281{bottom:584.453333pt;}
.y145_c01281{bottom:585.213333pt;}
.y14c_c01281{bottom:585.986667pt;}
.y142_c01281{bottom:587.520000pt;}
.y140_c01281{bottom:594.426667pt;}
.y13d_c01281{bottom:596.733333pt;}
.y13f_c01281{bottom:597.506667pt;}
.y139_c01281{bottom:599.040000pt;}
.y13e_c01281{bottom:600.573333pt;}
.y13c_c01281{bottom:601.346667pt;}
.y13b_c01281{bottom:602.106667pt;}
.y138_c01281{bottom:603.653333pt;}
.y13a_c01281{bottom:604.413333pt;}
.y137_c01281{bottom:605.186667pt;}
.y141_c01281{bottom:609.026667pt;}
.y136_c01281{bottom:612.093333pt;}
.y135_c01281{bottom:613.626667pt;}
.y134_c01281{bottom:615.173333pt;}
.y12b_c01281{bottom:615.933333pt;}
.y133_c01281{bottom:616.706667pt;}
.y12e_c01281{bottom:617.466667pt;}
.y131_c01281{bottom:618.240000pt;}
.y130_c01281{bottom:619.013333pt;}
.y132_c01281{bottom:619.773333pt;}
.y12f_c01281{bottom:622.853333pt;}
.y12d_c01281{bottom:623.613333pt;}
.y12c_c01281{bottom:625.146667pt;}
.y128_c01281{bottom:625.920000pt;}
.y126_c01281{bottom:626.693333pt;}
.y127_c01281{bottom:627.453333pt;}
.y129_c01281{bottom:628.226667pt;}
.y12a_c01281{bottom:628.986667pt;}
.y124_c01281{bottom:629.760000pt;}
.y125_c01281{bottom:630.533333pt;}
.y123_c01281{bottom:631.293333pt;}
.y122_c01281{bottom:632.066667pt;}
.y120_c01281{bottom:632.826667pt;}
.y11e_c01281{bottom:633.600000pt;}
.y11f_c01281{bottom:635.133333pt;}
.y11b_c01281{bottom:635.906667pt;}
.y11c_c01281{bottom:637.440000pt;}
.y11d_c01281{bottom:638.973333pt;}
.y121_c01281{bottom:642.053333pt;}
.y117_c01281{bottom:649.733333pt;}
.y119_c01281{bottom:650.493333pt;}
.y11a_c01281{bottom:651.266667pt;}
.y116_c01281{bottom:652.026667pt;}
.y113_c01281{bottom:652.800000pt;}
.y118_c01281{bottom:653.573333pt;}
.y112_c01281{bottom:654.333333pt;}
.y10f_c01281{bottom:655.106667pt;}
.y111_c01281{bottom:655.866667pt;}
.y114_c01281{bottom:657.413333pt;}
.y110_c01281{bottom:658.173333pt;}
.y115_c01281{bottom:658.946667pt;}
.y10d_c01281{bottom:668.160000pt;}
.y10c_c01281{bottom:668.933333pt;}
.y10b_c01281{bottom:670.466667pt;}
.y10a_c01281{bottom:671.226667pt;}
.y109_c01281{bottom:672.773333pt;}
.y108_c01281{bottom:675.066667pt;}
.y107_c01281{bottom:675.840000pt;}
.y106_c01281{bottom:676.613333pt;}
.y10e_c01281{bottom:681.986667pt;}
.y104_c01281{bottom:684.293333pt;}
.y103_c01281{bottom:685.053333pt;}
.y105_c01281{bottom:686.586667pt;}
.y100_c01281{bottom:688.133333pt;}
.yff_c01281{bottom:690.426667pt;}
.y102_c01281{bottom:691.200000pt;}
.y101_c01281{bottom:695.813333pt;}
.yfd_c01281{bottom:702.720000pt;}
.yfc_c01281{bottom:703.493333pt;}
.yfb_c01281{bottom:704.253333pt;}
.yfa_c01281{bottom:705.786667pt;}
.yfe_c01281{bottom:707.333333pt;}
.yf9_c01281{bottom:711.173333pt;}
.yf8_c01281{bottom:711.933333pt;}
.yf7_c01281{bottom:717.306667pt;}
.yf6_c01281{bottom:719.613333pt;}
.yf4_c01281{bottom:720.386667pt;}
.yf3_c01281{bottom:721.146667pt;}
.yf5_c01281{bottom:722.693333pt;}
.yef_c01281{bottom:723.453333pt;}
.yee_c01281{bottom:724.226667pt;}
.yf2_c01281{bottom:724.986667pt;}
.yed_c01281{bottom:726.533333pt;}
.ya_c01281{bottom:727.293333pt;}
.yf0_c01281{bottom:728.066667pt;}
.y9_c01281{bottom:731.906667pt;}
.yf1_c01281{bottom:734.973333pt;}
.yeb_c01281{bottom:738.813333pt;}
.yea_c01281{bottom:739.586667pt;}
.ye9_c01281{bottom:740.346667pt;}
.ye8_c01281{bottom:741.120000pt;}
.ye5_c01281{bottom:741.893333pt;}
.ye6_c01281{bottom:742.653333pt;}
.yec_c01281{bottom:743.426667pt;}
.ye3_c01281{bottom:744.186667pt;}
.ye2_c01281{bottom:744.960000pt;}
.ye7_c01281{bottom:745.733333pt;}
.ye1_c01281{bottom:746.493333pt;}
.ye4_c01281{bottom:747.266667pt;}
.ydf_c01281{bottom:754.946667pt;}
.ye0_c01281{bottom:756.480000pt;}
.yda_c01281{bottom:758.013333pt;}
.yde_c01281{bottom:758.786667pt;}
.yd7_c01281{bottom:760.320000pt;}
.ydd_c01281{bottom:762.626667pt;}
.ydb_c01281{bottom:763.386667pt;}
.yd9_c01281{bottom:764.160000pt;}
.yd8_c01281{bottom:764.933333pt;}
.yd4_c01281{bottom:766.466667pt;}
.ydc_c01281{bottom:767.226667pt;}
.yd5_c01281{bottom:771.840000pt;}
.yd6_c01281{bottom:773.373333pt;}
.yd3_c01281{bottom:774.906667pt;}
.yd1_c01281{bottom:776.453333pt;}
.ycf_c01281{bottom:777.213333pt;}
.ycd_c01281{bottom:778.746667pt;}
.yd2_c01281{bottom:780.293333pt;}
.yd0_c01281{bottom:781.826667pt;}
.yce_c01281{bottom:782.586667pt;}
.ycc_c01281{bottom:783.360000pt;}
.ycb_c01281{bottom:784.133333pt;}
.yc9_c01281{bottom:792.573333pt;}
.yc7_c01281{bottom:794.106667pt;}
.yc8_c01281{bottom:794.880000pt;}
.yc1_c01281{bottom:796.413333pt;}
.yca_c01281{bottom:797.186667pt;}
.yc2_c01281{bottom:797.946667pt;}
.yc0_c01281{bottom:799.493333pt;}
.ybf_c01281{bottom:801.026667pt;}
.yc5_c01281{bottom:801.786667pt;}
.yc6_c01281{bottom:804.093333pt;}
.yc3_c01281{bottom:805.626667pt;}
.yc4_c01281{bottom:809.466667pt;}
.ybe_c01281{bottom:811.013333pt;}
.ybd_c01281{bottom:813.306667pt;}
.yb9_c01281{bottom:814.853333pt;}
.ybc_c01281{bottom:815.613333pt;}
.yba_c01281{bottom:817.146667pt;}
.ybb_c01281{bottom:817.920000pt;}
.yb8_c01281{bottom:819.453333pt;}
.yb7_c01281{bottom:820.226667pt;}
.yb6_c01281{bottom:827.906667pt;}
.yb5_c01281{bottom:828.666667pt;}
.yb4_c01281{bottom:830.213333pt;}
.yb3_c01281{bottom:830.973333pt;}
.yaf_c01281{bottom:831.746667pt;}
.yae_c01281{bottom:832.506667pt;}
.yb2_c01281{bottom:833.280000pt;}
.yb1_c01281{bottom:834.053333pt;}
.yb0_c01281{bottom:835.586667pt;}
.yac_c01281{bottom:844.026667pt;}
.ya9_c01281{bottom:847.866667pt;}
.yad_c01281{bottom:850.173333pt;}
.yab_c01281{bottom:850.946667pt;}
.ya7_c01281{bottom:851.706667pt;}
.yaa_c01281{bottom:852.480000pt;}
.ya8_c01281{bottom:853.253333pt;}
.ya6_c01281{bottom:854.013333pt;}
.ya5_c01281{bottom:854.786667pt;}
.ya4_c01281{bottom:864.000000pt;}
.ya3_c01281{bottom:864.773333pt;}
.ya2_c01281{bottom:865.533333pt;}
.ya0_c01281{bottom:866.306667pt;}
.y9f_c01281{bottom:867.840000pt;}
.y9c_c01281{bottom:868.613333pt;}
.y9e_c01281{bottom:870.906667pt;}
.y9d_c01281{bottom:871.680000pt;}
.y9b_c01281{bottom:881.666667pt;}
.ya1_c01281{bottom:883.200000pt;}
.y99_c01281{bottom:885.506667pt;}
.y9a_c01281{bottom:887.040000pt;}
.y96_c01281{bottom:887.813333pt;}
.y98_c01281{bottom:888.573333pt;}
.y97_c01281{bottom:890.106667pt;}
.y95_c01281{bottom:891.653333pt;}
.y94_c01281{bottom:900.093333pt;}
.y8f_c01281{bottom:903.933333pt;}
.y93_c01281{bottom:904.706667pt;}
.y92_c01281{bottom:905.466667pt;}
.y91_c01281{bottom:907.013333pt;}
.y8e_c01281{bottom:907.773333pt;}
.y90_c01281{bottom:911.613333pt;}
.y8c_c01281{bottom:917.760000pt;}
.y8b_c01281{bottom:918.533333pt;}
.y87_c01281{bottom:920.066667pt;}
.y89_c01281{bottom:920.826667pt;}
.y8a_c01281{bottom:921.600000pt;}
.y8d_c01281{bottom:922.373333pt;}
.y85_c01281{bottom:923.133333pt;}
.y88_c01281{bottom:923.906667pt;}
.y86_c01281{bottom:924.666667pt;}
.y83_c01281{bottom:936.186667pt;}
.y7f_c01281{bottom:936.960000pt;}
.y80_c01281{bottom:938.493333pt;}
.y7d_c01281{bottom:939.266667pt;}
.y7e_c01281{bottom:940.026667pt;}
.y84_c01281{bottom:940.800000pt;}
.y82_c01281{bottom:941.573333pt;}
.y81_c01281{bottom:942.333333pt;}
.y8_c01281{bottom:943.106667pt;}
.y7_c01281{bottom:943.866667pt;}
.y7b_c01281{bottom:950.786667pt;}
.y7a_c01281{bottom:953.093333pt;}
.y79_c01281{bottom:953.853333pt;}
.y78_c01281{bottom:954.626667pt;}
.y7c_c01281{bottom:956.160000pt;}
.y73_c01281{bottom:956.933333pt;}
.y77_c01281{bottom:959.226667pt;}
.y76_c01281{bottom:960.000000pt;}
.y75_c01281{bottom:960.773333pt;}
.y74_c01281{bottom:961.533333pt;}
.y72_c01281{bottom:970.746667pt;}
.y6e_c01281{bottom:972.293333pt;}
.y71_c01281{bottom:973.053333pt;}
.y6f_c01281{bottom:973.826667pt;}
.y6d_c01281{bottom:976.133333pt;}
.y6c_c01281{bottom:977.666667pt;}
.y70_c01281{bottom:978.426667pt;}
.y6b_c01281{bottom:979.200000pt;}
.y67_c01281{bottom:989.186667pt;}
.y68_c01281{bottom:990.720000pt;}
.y64_c01281{bottom:992.253333pt;}
.y62_c01281{bottom:993.026667pt;}
.y63_c01281{bottom:993.786667pt;}
.y66_c01281{bottom:995.333333pt;}
.y65_c01281{bottom:996.093333pt;}
.y69_c01281{bottom:998.400000pt;}
.y6a_c01281{bottom:1000.706667pt;}
.y60_c01281{bottom:1006.853333pt;}
.y61_c01281{bottom:1007.613333pt;}
.y5c_c01281{bottom:1009.920000pt;}
.y5b_c01281{bottom:1010.693333pt;}
.y5d_c01281{bottom:1012.226667pt;}
.y5f_c01281{bottom:1012.986667pt;}
.y5e_c01281{bottom:1013.760000pt;}
.y59_c01281{bottom:1023.746667pt;}
.y58_c01281{bottom:1025.280000pt;}
.y53_c01281{bottom:1027.586667pt;}
.y54_c01281{bottom:1029.120000pt;}
.y57_c01281{bottom:1030.653333pt;}
.y56_c01281{bottom:1031.426667pt;}
.y55_c01281{bottom:1032.186667pt;}
.y52_c01281{bottom:1032.960000pt;}
.y5a_c01281{bottom:1036.800000pt;}
.y51_c01281{bottom:1043.706667pt;}
.y4a_c01281{bottom:1044.480000pt;}
.y50_c01281{bottom:1045.253333pt;}
.y4d_c01281{bottom:1046.786667pt;}
.y4f_c01281{bottom:1047.546667pt;}
.y5_c01281{bottom:1048.320000pt;}
.y4e_c01281{bottom:1049.093333pt;}
.y6_c01281{bottom:1049.853333pt;}
.y4c_c01281{bottom:1050.626667pt;}
.y4b_c01281{bottom:1054.466667pt;}
.y47_c01281{bottom:1061.373333pt;}
.y46_c01281{bottom:1062.906667pt;}
.y45_c01281{bottom:1063.680000pt;}
.y43_c01281{bottom:1064.453333pt;}
.y40_c01281{bottom:1065.213333pt;}
.y42_c01281{bottom:1065.986667pt;}
.y41_c01281{bottom:1066.746667pt;}
.y3f_c01281{bottom:1068.293333pt;}
.y48_c01281{bottom:1069.053333pt;}
.y49_c01281{bottom:1069.826667pt;}
.y44_c01281{bottom:1079.040000pt;}
.y3c_c01281{bottom:1079.813333pt;}
.y3d_c01281{bottom:1080.573333pt;}
.y38_c01281{bottom:1081.346667pt;}
.y3a_c01281{bottom:1082.106667pt;}
.y39_c01281{bottom:1082.880000pt;}
.y3b_c01281{bottom:1083.653333pt;}
.y36_c01281{bottom:1084.413333pt;}
.y3_c01281{bottom:1085.186667pt;}
.y2_c01281{bottom:1086.720000pt;}
.y37_c01281{bottom:1087.493333pt;}
.y3e_c01281{bottom:1089.026667pt;}
.y4_c01281{bottom:1092.093333pt;}
.y35_c01281{bottom:1097.466667pt;}
.y34_c01281{bottom:1098.240000pt;}
.y30_c01281{bottom:1099.013333pt;}
.y31_c01281{bottom:1101.306667pt;}
.y33_c01281{bottom:1102.853333pt;}
.y32_c01281{bottom:1104.386667pt;}
.y2f_c01281{bottom:1105.146667pt;}
.y246_c01281{bottom:1110.533333pt;}
.y2e_c01281{bottom:1114.373333pt;}
.y2d_c01281{bottom:1115.133333pt;}
.y2c_c01281{bottom:1117.440000pt;}
.y2b_c01281{bottom:1118.973333pt;}
.y28_c01281{bottom:1119.746667pt;}
.y2a_c01281{bottom:1122.813333pt;}
.y29_c01281{bottom:1123.586667pt;}
.y27_c01281{bottom:1133.573333pt;}
.y25_c01281{bottom:1134.333333pt;}
.y24_c01281{bottom:1135.106667pt;}
.y20_c01281{bottom:1136.640000pt;}
.y1f_c01281{bottom:1137.413333pt;}
.y21_c01281{bottom:1138.173333pt;}
.y26_c01281{bottom:1138.946667pt;}
.y22_c01281{bottom:1139.706667pt;}
.y1e_c01281{bottom:1141.253333pt;}
.y23_c01281{bottom:1144.320000pt;}
.y1d_c01281{bottom:1148.160000pt;}
.y19_c01281{bottom:1150.466667pt;}
.y1a_c01281{bottom:1152.773333pt;}
.y17_c01281{bottom:1154.306667pt;}
.y15_c01281{bottom:1155.066667pt;}
.y1b_c01281{bottom:1155.840000pt;}
.y1c_c01281{bottom:1156.613333pt;}
.y16_c01281{bottom:1158.906667pt;}
.y18_c01281{bottom:1160.453333pt;}
.y13_c01281{bottom:1178.880000pt;}
.y12_c01281{bottom:1180.413333pt;}
.y11_c01281{bottom:1183.493333pt;}
.y14_c01281{bottom:1184.253333pt;}
.y1_c01281{bottom:1200.386667pt;}
.y10_c01281{bottom:1204.226667pt;}
.ye_c01281{bottom:1211.133333pt;}
.yd_c01281{bottom:1211.906667pt;}
.yf_c01281{bottom:1214.973333pt;}
.yb_c01281{bottom:1234.946667pt;}
.yc_c01281{bottom:1238.013333pt;}
.h5_c01281{height:2.764500pt;}
.h3_c01281{height:4.799479pt;}
.h7_c01281{height:5.519401pt;}
.h22_c01281{height:7.689167pt;}
.h17_c01281{height:8.303099pt;}
.h1d_c01281{height:11.038802pt;}
.ha_c01281{height:13.822500pt;}
.h19_c01281{height:16.606198pt;}
.h8_c01281{height:19.341901pt;}
.h21_c01281{height:22.125599pt;}
.hb_c01281{height:24.861302pt;}
.h6_c01281{height:27.645000pt;}
.h2_c01281{height:30.428698pt;}
.h4_c01281{height:33.164401pt;}
.h13_c01281{height:35.948099pt;}
.h1f_c01281{height:38.683802pt;}
.h9_c01281{height:41.467500pt;}
.h12_c01281{height:44.251198pt;}
.h1a_c01281{height:46.986901pt;}
.h16_c01281{height:49.770599pt;}
.h18_c01281{height:52.506302pt;}
.hc_c01281{height:55.290000pt;}
.hf_c01281{height:58.073698pt;}
.h1c_c01281{height:60.809401pt;}
.h14_c01281{height:63.593099pt;}
.h11_c01281{height:65.440234pt;}
.hd_c01281{height:66.328802pt;}
.h1b_c01281{height:69.112500pt;}
.h1e_c01281{height:71.896198pt;}
.h15_c01281{height:74.631901pt;}
.h20_c01281{height:77.415599pt;}
.h26_c01281{height:80.151302pt;}
.h10_c01281{height:82.935000pt;}
.h24_c01281{height:85.718698pt;}
.h25_c01281{height:88.454401pt;}
.h23_c01281{height:91.238099pt;}
.he_c01281{height:96.757500pt;}
.h0_c01281{height:1341.693333pt;}
.h1_c01281{height:1342.000000pt;}
.w0_c01281{width:967.680000pt;}
.w1_c01281{width:968.000000pt;}
.x0_c01281{left:0.000000pt;}
.x2_c01281{left:2.306667pt;}
.x3_c01281{left:7.680000pt;}
.x4_c01281{left:24.573333pt;}
.x5_c01281{left:27.653333pt;}
.x8_c01281{left:33.026667pt;}
.x1_c01281{left:37.626667pt;}
.x6_c01281{left:125.186667pt;}
.x7_c01281{left:142.080000pt;}
.xc3_c01281{left:152.826667pt;}
.xc4_c01281{left:167.426347pt;}
.xf3_c01281{left:172.026667pt;}
.xc5_c01281{left:174.333333pt;}
.xc9_c01281{left:175.866667pt;}
.xbc_c01281{left:182.786667pt;}
.xca_c01281{left:190.466667pt;}
.x58_c01281{left:194.306667pt;}
.xb3_c01281{left:198.146667pt;}
.x116_c01281{left:200.453333pt;}
.x59_c01281{left:201.986667pt;}
.xf8_c01281{left:203.520000pt;}
.x2c_c01281{left:205.826667pt;}
.xe8_c01281{left:207.360000pt;}
.x117_c01281{left:208.893333pt;}
.x13_c01281{left:210.426667pt;}
.x35_c01281{left:211.973333pt;}
.x99_c01281{left:214.266667pt;}
.xbd_c01281{left:216.573333pt;}
.x126_c01281{left:218.106667pt;}
.x93_c01281{left:221.186667pt;}
.x110_c01281{left:222.720000pt;}
.x9_c01281{left:228.866667pt;}
.x2d_c01281{left:230.400000pt;}
.x7a_c01281{left:231.933333pt;}
.xbe_c01281{left:233.466667pt;}
.x62_c01281{left:235.013333pt;}
.xb4_c01281{left:236.546667pt;}
.xaf_c01281{left:238.853333pt;}
.x49_c01281{left:240.386667pt;}
.xa3_c01281{left:241.920000pt;}
.xce_c01281{left:243.453333pt;}
.x87_c01281{left:244.986667pt;}
.x1e_c01281{left:247.293333pt;}
.x9e_c01281{left:248.826667pt;}
.x108_c01281{left:251.133333pt;}
.xa_c01281{left:252.666667pt;}
.x72_c01281{left:257.280000pt;}
.xa4_c01281{left:259.586667pt;}
.x1f_c01281{left:261.893333pt;}
.x3d_c01281{left:263.426667pt;}
.x100_c01281{left:265.733333pt;}
.x20_c01281{left:268.026667pt;}
.x82_c01281{left:270.333333pt;}
.xcf_c01281{left:272.640000pt;}
.xd6_c01281{left:274.173333pt;}
.x14_c01281{left:275.706667pt;}
.x11d_c01281{left:278.013333pt;}
.x7b_c01281{left:280.320000pt;}
.x36_c01281{left:282.626667pt;}
.x9a_c01281{left:284.160000pt;}
.x63_c01281{left:285.693333pt;}
.x2e_c01281{left:289.533333pt;}
.xe2_c01281{left:291.840000pt;}
.xcb_c01281{left:293.373333pt;}
.x107_c01281{left:295.680000pt;}
.x6a_c01281{left:298.746667pt;}
.xa5_c01281{left:301.053333pt;}
.xec_c01281{left:303.360000pt;}
.xed_c01281{left:304.893333pt;}
.x4a_c01281{left:307.973333pt;}
.xee_c01281{left:309.506667pt;}
.x21_c01281{left:312.573333pt;}
.xf9_c01281{left:315.653333pt;}
.x9b_c01281{left:317.186667pt;}
.xb_c01281{left:318.720000pt;}
.x83_c01281{left:321.026667pt;}
.xd9_c01281{left:323.333333pt;}
.x12_c01281{left:326.400000pt;}
.x109_c01281{left:327.933333pt;}
.xa6_c01281{left:329.466667pt;}
.x4b_c01281{left:331.773333pt;}
.x22_c01281{left:334.080000pt;}
.x2f_c01281{left:335.613333pt;}
.xaa_c01281{left:337.920000pt;}
.xc_c01281{left:339.453333pt;}
.x64_c01281{left:341.760000pt;}
.x73_c01281{left:343.293333pt;}
.x106_c01281{left:345.600000pt;}
.xd_c01281{left:347.906667pt;}
.x10a_c01281{left:350.213333pt;}
.x7c_c01281{left:351.746667pt;}
.x23_c01281{left:354.813333pt;}
.xbf_c01281{left:356.346667pt;}
.x3e_c01281{left:357.893333pt;}
.x101_c01281{left:359.426667pt;}
.x121_c01281{left:361.733333pt;}
.xb5_c01281{left:364.800000pt;}
.xb0_c01281{left:367.866667pt;}
.xf_c01281{left:369.413333pt;}
.x88_c01281{left:371.706667pt;}
.x84_c01281{left:375.546667pt;}
.x89_c01281{left:377.853333pt;}
.x4c_c01281{left:380.160000pt;}
.xab_c01281{left:381.693333pt;}
.x122_c01281{left:383.226667pt;}
.x94_c01281{left:385.533333pt;}
.x5a_c01281{left:389.373333pt;}
.x15_c01281{left:391.680000pt;}
.x8f_c01281{left:393.213333pt;}
.xe_c01281{left:395.520000pt;}
.xd0_c01281{left:397.053333pt;}
.x85_c01281{left:400.133333pt;}
.x30_c01281{left:402.426667pt;}
.x10_c01281{left:403.973333pt;}
.x7d_c01281{left:406.266667pt;}
.x123_c01281{left:408.573333pt;}
.x3f_c01281{left:410.106667pt;}
.x6b_c01281{left:412.413333pt;}
.x16_c01281{left:414.720000pt;}
.x5b_c01281{left:416.253333pt;}
.x10f_c01281{left:418.560000pt;}
.x8a_c01281{left:420.093333pt;}
.x40_c01281{left:422.400000pt;}
.x9f_c01281{left:424.706667pt;}
.x8b_c01281{left:427.013333pt;}
.x65_c01281{left:428.546667pt;}
.xfe_c01281{left:430.080000pt;}
.xc6_c01281{left:431.613333pt;}
.xd7_c01281{left:434.693333pt;}
.x103_c01281{left:436.226667pt;}
.x24_c01281{left:439.293333pt;}
.x5c_c01281{left:440.826667pt;}
.xd1_c01281{left:443.133333pt;}
.x25_c01281{left:446.973333pt;}
.x31_c01281{left:450.053333pt;}
.xb6_c01281{left:452.346667pt;}
.x74_c01281{left:454.653333pt;}
.x7e_c01281{left:456.960000pt;}
.x9c_c01281{left:459.266667pt;}
.x37_c01281{left:460.800000pt;}
.x4d_c01281{left:463.106667pt;}
.x8c_c01281{left:464.640000pt;}
.x7f_c01281{left:466.173333pt;}
.xd2_c01281{left:468.480000pt;}
.xb7_c01281{left:470.013333pt;}
.x26_c01281{left:471.546667pt;}
.x113_c01281{left:474.626667pt;}
.xc0_c01281{left:478.466667pt;}
.xc1_c01281{left:481.533333pt;}
.x129_c01281{left:483.066667pt;}
.x4e_c01281{left:484.613333pt;}
.x111_c01281{left:486.146667pt;}
.x95_c01281{left:487.680000pt;}
.x17_c01281{left:489.986667pt;}
.x6c_c01281{left:493.053333pt;}
.xd8_c01281{left:494.586667pt;}
.xac_c01281{left:496.133333pt;}
.xda_c01281{left:497.666667pt;}
.xb8_c01281{left:499.200000pt;}
.xa0_c01281{left:500.733333pt;}
.x75_c01281{left:503.040000pt;}
.x32_c01281{left:505.346667pt;}
.x11_c01281{left:506.880000pt;}
.x4f_c01281{left:509.186667pt;}
.x80_c01281{left:511.493333pt;}
.xe3_c01281{left:518.400000pt;}
.xf4_c01281{left:520.706667pt;}
.xc7_c01281{left:522.240000pt;}
.x50_c01281{left:523.773333pt;}
.x41_c01281{left:526.080000pt;}
.x76_c01281{left:528.386667pt;}
.x66_c01281{left:530.693333pt;}
.xcc_c01281{left:532.226667pt;}
.x96_c01281{left:533.760000pt;}
.x33_c01281{left:535.293333pt;}
.x6d_c01281{left:539.133333pt;}
.x38_c01281{left:540.666667pt;}
.x11f_c01281{left:543.746667pt;}
.xef_c01281{left:545.280000pt;}
.x67_c01281{left:546.813333pt;}
.xe4_c01281{left:548.346667pt;}
.xad_c01281{left:550.653333pt;}
.x51_c01281{left:552.186667pt;}
.xc8_c01281{left:553.733333pt;}
.x115_c01281{left:555.266667pt;}
.x18_c01281{left:556.800000pt;}
.xa7_c01281{left:558.333333pt;}
.xb1_c01281{left:560.640000pt;}
.xfa_c01281{left:565.253333pt;}
.x5d_c01281{left:567.546667pt;}
.x120_c01281{left:569.853333pt;}
.x6e_c01281{left:571.386667pt;}
.x114_c01281{left:572.933333pt;}
.x27_c01281{left:574.466667pt;}
.x39_c01281{left:576.773333pt;}
.x124_c01281{left:579.066667pt;}
.xcd_c01281{left:581.373333pt;}
.xde_c01281{left:582.906667pt;}
.xf5_c01281{left:585.986667pt;}
.x10b_c01281{left:589.826667pt;}
.xe9_c01281{left:592.133333pt;}
.xa8_c01281{left:595.200000pt;}
.x42_c01281{left:596.733333pt;}
.x11b_c01281{left:598.266667pt;}
.x68_c01281{left:599.813333pt;}
.x5e_c01281{left:602.106667pt;}
.x52_c01281{left:604.413333pt;}
.x11e_c01281{left:609.026667pt;}
.xdb_c01281{left:610.560000pt;}
.x19_c01281{left:612.093333pt;}
.x6f_c01281{left:614.400000pt;}
.xf6_c01281{left:615.933333pt;}
.xd3_c01281{left:620.546667pt;}
.x86_c01281{left:622.080000pt;}
.x102_c01281{left:623.613333pt;}
.x43_c01281{left:626.693333pt;}
.x1a_c01281{left:628.226667pt;}
.x53_c01281{left:630.533333pt;}
.xc2_c01281{left:632.826667pt;}
.x81_c01281{left:635.906667pt;}
.xb2_c01281{left:637.440000pt;}
.x9d_c01281{left:639.746667pt;}
.x119_c01281{left:641.280000pt;}
.x34_c01281{left:642.813333pt;}
.xe5_c01281{left:645.120000pt;}
.x1b_c01281{left:647.426667pt;}
.x28_c01281{left:649.733333pt;}
.xa1_c01281{left:651.266667pt;}
.xd4_c01281{left:653.573333pt;}
.xae_c01281{left:655.106667pt;}
.x128_c01281{left:657.413333pt;}
.xb9_c01281{left:658.946667pt;}
.x3a_c01281{left:660.480000pt;}
.xf0_c01281{left:662.013333pt;}
.x5f_c01281{left:665.093333pt;}
.x97_c01281{left:666.626667pt;}
.x29_c01281{left:668.160000pt;}
.x112_c01281{left:669.693333pt;}
.x54_c01281{left:671.226667pt;}
.xf1_c01281{left:673.533333pt;}
.x90_c01281{left:676.613333pt;}
.x44_c01281{left:678.906667pt;}
.x70_c01281{left:681.213333pt;}
.xf7_c01281{left:682.746667pt;}
.x1c_c01281{left:685.053333pt;}
.xba_c01281{left:686.586667pt;}
.x125_c01281{left:688.133333pt;}
.x127_c01281{left:689.666667pt;}
.x60_c01281{left:691.973333pt;}
.xf2_c01281{left:693.506667pt;}
.x104_c01281{left:695.040000pt;}
.x2a_c01281{left:696.573333pt;}
.xea_c01281{left:698.880000pt;}
.xdc_c01281{left:701.946667pt;}
.x91_c01281{left:704.253333pt;}
.xe6_c01281{left:705.786667pt;}
.x45_c01281{left:707.333333pt;}
.x10c_c01281{left:710.400000pt;}
.xd5_c01281{left:711.933333pt;}
.xdf_c01281{left:713.466667pt;}
.x98_c01281{left:716.546667pt;}
.x77_c01281{left:718.080000pt;}
.xfb_c01281{left:719.613333pt;}
.xe0_c01281{left:724.226667pt;}
.x11a_c01281{left:727.293333pt;}
.x3b_c01281{left:729.600000pt;}
.x78_c01281{left:731.133333pt;}
.x46_c01281{left:734.213333pt;}
.xbb_c01281{left:735.746667pt;}
.x105_c01281{left:737.280000pt;}
.x55_c01281{left:738.813333pt;}
.xeb_c01281{left:741.893333pt;}
.x79_c01281{left:743.426667pt;}
.xfc_c01281{left:744.960000pt;}
.x8d_c01281{left:747.266667pt;}
.x61_c01281{left:749.573333pt;}
.x118_c01281{left:752.640000pt;}
.x2b_c01281{left:754.946667pt;}
.x8e_c01281{left:757.253333pt;}
.x71_c01281{left:758.786667pt;}
.xdd_c01281{left:761.853333pt;}
.xe7_c01281{left:764.160000pt;}
.x1d_c01281{left:765.693333pt;}
.x11c_c01281{left:768.773333pt;}
.x92_c01281{left:773.373333pt;}
.xe1_c01281{left:775.678667pt;}
.xff_c01281{left:779.520000pt;}
.x69_c01281{left:781.826667pt;}
.x3c_c01281{left:783.360000pt;}
.x47_c01281{left:787.200000pt;}
.xfd_c01281{left:788.733333pt;}
.x48_c01281{left:796.413333pt;}
.x56_c01281{left:797.946667pt;}
.x10d_c01281{left:799.493333pt;}
.xa9_c01281{left:801.026667pt;}
.xa2_c01281{left:806.400000pt;}
.x10e_c01281{left:810.240000pt;}
.x57_c01281{left:822.533333pt;}
.x12a_c01281{left:847.106667pt;}
.x12b_c01281{left:867.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2bb5116b21d7d27375708594.woff2')format("woff");}.ff1_c01282{font-family:ff1_c01282;line-height:1.109863;font-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_c01282{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m108_c01282{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m140_c01282{transform:matrix(0.076500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076500,0.000000,0.000000,0.250000,0,0);}
.m105_c01282{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m183_c01282{transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);}
.m19f_c01282{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.m144_c01282{transform:matrix(0.110200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110200,0.000000,0.000000,0.250000,0,0);}
.m17a_c01282{transform:matrix(0.111175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111175,0.000000,0.000000,0.250000,0,0);}
.m127_c01282{transform:matrix(0.111375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111375,0.000000,0.000000,0.250000,0,0);}
.m143_c01282{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);}
.m14d_c01282{transform:matrix(0.122050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122050,0.000000,0.000000,0.250000,0,0);}
.mf6_c01282{transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);}
.m49_c01282{transform:matrix(0.125700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125700,0.000000,0.000000,0.250000,0,0);}
.m150_c01282{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);}
.mef_c01282{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m14a_c01282{transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);}
.m110_c01282{transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);}
.m14f_c01282{transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132950,0.000000,0.000000,0.250000,0,0);}
.m10f_c01282{transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);}
.m158_c01282{transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);}
.m14b_c01282{transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);}
.m17b_c01282{transform:matrix(0.135725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135725,0.000000,0.000000,0.250000,0,0);}
.m18_c01282{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m19a_c01282{transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);}
.m52_c01282{transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);}
.m82_c01282{transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);}
.m12d_c01282{transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140475,0.000000,0.000000,0.250000,0,0);}
.m186_c01282{transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);}
.md3_c01282{transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);}
.m1c_c01282{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m19c_c01282{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.mf5_c01282{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);}
.mb5_c01282{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m43_c01282{transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);}
.m10d_c01282{transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);}
.m10_c01282{transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);}
.m185_c01282{transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);}
.me6_c01282{transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);}
.m159_c01282{transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);}
.mbd_c01282{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);}
.m149_c01282{transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);}
.m23_c01282{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);}
.mc4_c01282{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m196_c01282{transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);}
.m122_c01282{transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);}
.m7e_c01282{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.md4_c01282{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m161_c01282{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.m19b_c01282{transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);}
.m16c_c01282{transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);}
.m27_c01282{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);}
.m6b_c01282{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m97_c01282{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m153_c01282{transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);}
.mdb_c01282{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);}
.mf4_c01282{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);}
.m10b_c01282{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.m124_c01282{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.ma5_c01282{transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);}
.m13a_c01282{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);}
.m111_c01282{transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160150,0.000000,0.000000,0.250000,0,0);}
.m179_c01282{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01282{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m16b_c01282{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);}
.m133_c01282{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);}
.m107_c01282{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);}
.m7a_c01282{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.m160_c01282{transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);}
.meb_c01282{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01282{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m44_c01282{transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);}
.m194_c01282{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);}
.m17_c01282{transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);}
.md7_c01282{transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166950,0.000000,0.000000,0.250000,0,0);}
.m130_c01282{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m164_c01282{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.md2_c01282{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.m167_c01282{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);}
.m1a7_c01282{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m16a_c01282{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m184_c01282{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.ma9_c01282{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m11b_c01282{transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01282{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);}
.m5f_c01282{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m152_c01282{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.m151_c01282{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m4e_c01282{transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);}
.m189_c01282{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.m11d_c01282{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.mea_c01282{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m34_c01282{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.m14e_c01282{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);}
.m7b_c01282{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);}
.m5a_c01282{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m15c_c01282{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);}
.m146_c01282{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.m13d_c01282{transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);}
.mbc_c01282{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m129_c01282{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m12a_c01282{transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);}
.m181_c01282{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.mfb_c01282{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.mb6_c01282{transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);}
.mf9_c01282{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);}
.m4b_c01282{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);}
.m15d_c01282{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m2f_c01282{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.me8_c01282{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);}
.m117_c01282{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);}
.mcc_c01282{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m113_c01282{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.m199_c01282{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);}
.m169_c01282{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m163_c01282{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.mc1_c01282{transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);}
.mfd_c01282{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m15a_c01282{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m85_c01282{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.ma3_c01282{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m80_c01282{transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);}
.m118_c01282{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);}
.m135_c01282{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m177_c01282{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);}
.m147_c01282{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.me9_c01282{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m116_c01282{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);}
.m78_c01282{transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);}
.m16d_c01282{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m19e_c01282{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.m18e_c01282{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);}
.m176_c01282{transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);}
.m6c_c01282{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.m4d_c01282{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.m60_c01282{transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);}
.m51_c01282{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);}
.m156_c01282{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.m3b_c01282{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m136_c01282{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m192_c01282{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m148_c01282{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);}
.m46_c01282{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.m170_c01282{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);}
.m67_c01282{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.m193_c01282{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);}
.m8b_c01282{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m11c_c01282{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);}
.m171_c01282{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m138_c01282{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);}
.mb9_c01282{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.m13c_c01282{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);}
.m91_c01282{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);}
.ma0_c01282{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);}
.m10a_c01282{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);}
.m94_c01282{transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);}
.m4a_c01282{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m12f_c01282{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.m84_c01282{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);}
.m155_c01282{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.m17c_c01282{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);}
.m15f_c01282{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);}
.m15e_c01282{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);}
.m11_c01282{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);}
.mcf_c01282{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.mc2_c01282{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);}
.m15b_c01282{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.m18f_c01282{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.m8d_c01282{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.m115_c01282{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m18a_c01282{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m145_c01282{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.m126_c01282{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m188_c01282{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);}
.mca_c01282{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.mc3_c01282{transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);}
.m141_c01282{transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);}
.me4_c01282{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);}
.mee_c01282{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.mcb_c01282{transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);}
.m12c_c01282{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);}
.m19_c01282{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);}
.me7_c01282{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m93_c01282{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);}
.m180_c01282{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.mff_c01282{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.m3a_c01282{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);}
.m197_c01282{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m162_c01282{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01282{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m3e_c01282{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);}
.m69_c01282{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);}
.mde_c01282{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m68_c01282{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);}
.m28_c01282{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m114_c01282{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);}
.m11f_c01282{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);}
.m191_c01282{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);}
.mdc_c01282{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.m57_c01282{transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);}
.m75_c01282{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);}
.mc8_c01282{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);}
.m19d_c01282{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m73_c01282{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m134_c01282{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);}
.m58_c01282{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.m96_c01282{transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);}
.m26_c01282{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.m89_c01282{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m2c_c01282{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.mb3_c01282{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);}
.mbf_c01282{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);}
.m2e_c01282{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);}
.m123_c01282{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);}
.mb4_c01282{transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);}
.m13f_c01282{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);}
.m11e_c01282{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m59_c01282{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);}
.maa_c01282{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.mf7_c01282{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.mae_c01282{transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);}
.m25_c01282{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.m5c_c01282{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m112_c01282{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);}
.mac_c01282{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m95_c01282{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m168_c01282{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m32_c01282{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);}
.mfa_c01282{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);}
.md_c01282{transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);}
.m35_c01282{transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);}
.m92_c01282{transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);}
.m9d_c01282{transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);}
.m81_c01282{transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);}
.m0_c01282{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);}
.m128_c01282{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.m17e_c01282{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);}
.m14c_c01282{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.ma6_c01282{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);}
.m103_c01282{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);}
.m5e_c01282{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m13e_c01282{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);}
.m10e_c01282{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.mfc_c01282{transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);}
.mc6_c01282{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.m42_c01282{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.m157_c01282{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m90_c01282{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);}
.m109_c01282{transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);}
.m174_c01282{transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);}
.m16_c01282{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mda_c01282{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);}
.m139_c01282{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m65_c01282{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.mbe_c01282{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);}
.m86_c01282{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);}
.m9e_c01282{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.m31_c01282{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);}
.m30_c01282{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.ma2_c01282{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);}
.me0_c01282{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m18b_c01282{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.md9_c01282{transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);}
.m187_c01282{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.me5_c01282{transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);}
.m9a_c01282{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);}
.m198_c01282{transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);}
.m175_c01282{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);}
.mcd_c01282{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);}
.md0_c01282{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);}
.m178_c01282{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);}
.m8e_c01282{transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);}
.m11a_c01282{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m70_c01282{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m131_c01282{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);}
.mc7_c01282{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.m190_c01282{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.m106_c01282{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);}
.m40_c01282{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m121_c01282{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);}
.m39_c01282{transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);}
.m76_c01282{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);}
.maf_c01282{transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);}
.m99_c01282{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m4f_c01282{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m18c_c01282{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.m154_c01282{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m8a_c01282{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);}
.mb7_c01282{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.md8_c01282{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);}
.m172_c01282{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m17d_c01282{transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);}
.mf8_c01282{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);}
.mb2_c01282{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);}
.m104_c01282{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);}
.m125_c01282{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_c01282{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);}
.m61_c01282{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);}
.m53_c01282{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);}
.mbb_c01282{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m98_c01282{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);}
.mc0_c01282{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);}
.mf2_c01282{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01282{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m195_c01282{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);}
.mdf_c01282{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);}
.m1a0_c01282{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);}
.me1_c01282{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m137_c01282{transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);}
.mb8_c01282{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);}
.m142_c01282{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.m77_c01282{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);}
.m47_c01282{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.mdd_c01282{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m132_c01282{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);}
.mf3_c01282{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);}
.mc5_c01282{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01282{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);}
.m10c_c01282{transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);}
.m29_c01282{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);}
.m20_c01282{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.m100_c01282{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m5_c01282{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.mb_c01282{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);}
.m5b_c01282{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m48_c01282{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);}
.m1e_c01282{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);}
.mc_c01282{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);}
.m3d_c01282{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);}
.m22_c01282{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01282{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me_c01282{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01282{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_c01282{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma1_c01282{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);}
.m62_c01282{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);}
.m3_c01282{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01282{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);}
.m8_c01282{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m14_c01282{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01282{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);}
.m45_c01282{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me3_c01282{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);}
.m13_c01282{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);}
.m12_c01282{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c01282{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb1_c01282{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);}
.m3f_c01282{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01282{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01282{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);}
.m1d_c01282{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01282{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m63_c01282{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01282{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mad_c01282{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c01282{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01282{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m24_c01282{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01282{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);}
.m56_c01282{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01282{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf_c01282{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m55_c01282{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);}
.md6_c01282{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);}
.m66_c01282{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m173_c01282{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m72_c01282{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);}
.mc9_c01282{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01282{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4_c01282{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.ma4_c01282{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m38_c01282{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);}
.m101_c01282{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.md5_c01282{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);}
.m9c_c01282{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mf1_c01282{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01282{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);}
.m8f_c01282{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.md1_c01282{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m83_c01282{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m12e_c01282{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01282{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);}
.m79_c01282{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);}
.m74_c01282{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m41_c01282{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);}
.ma7_c01282{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01282{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m18d_c01282{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);}
.m120_c01282{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m37_c01282{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m9_c01282{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me2_c01282{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m119_c01282{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.ma8_c01282{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);}
.m64_c01282{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01282{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.med_c01282{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mec_c01282{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m21_c01282{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m9b_c01282{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);}
.m33_c01282{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m87_c01282{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m54_c01282{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mab_c01282{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.ma_c01282{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01282{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m16f_c01282{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);}
.m1_c01282{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m71_c01282{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m102_c01282{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m182_c01282{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m2_c01282{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01282{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);}
.m88_c01282{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m165_c01282{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m166_c01282{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mfe_c01282{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.mb0_c01282{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mce_c01282{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m16e_c01282{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m12b_c01282{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01282{transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);}
.m36_c01282{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01282{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m13b_c01282{transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.625000,0.000000,0.000000,0.250000,0,0);}
.m17f_c01282{transform:matrix(2.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.117500,0.000000,0.000000,0.250000,0,0);}
.mf0_c01282{transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);}
.v1_c01282{vertical-align:-3.480000px;}
.v0_c01282{vertical-align:0.000000px;}
.v2_c01282{vertical-align:3.480000px;}
.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;}
}
.ws3_c01282{word-spacing:-22.050300px;}
.ws0_c01282{word-spacing:-16.343040px;}
.ws2_c01282{word-spacing:-8.012520px;}
.ws4_c01282{word-spacing:-5.231940px;}
.ws1_c01282{word-spacing:-4.603920px;}
.ws5_c01282{word-spacing:0.000000px;}
.fc0_c01282{color:transparent;}
.fs12_c01282{font-size:3.456000px;}
.fs1a_c01282{font-size:6.000000px;}
.fs7_c01282{font-size:6.900000px;}
.fs14_c01282{font-size:10.380000px;}
.fs1_c01282{font-size:13.800000px;}
.fs18_c01282{font-size:17.280000px;}
.fs13_c01282{font-size:20.760000px;}
.fs2_c01282{font-size:24.180000px;}
.fs15_c01282{font-size:27.660000px;}
.fs16_c01282{font-size:31.080000px;}
.fsf_c01282{font-size:34.560000px;}
.fs8_c01282{font-size:38.040000px;}
.fs1b_c01282{font-size:41.460000px;}
.fsb_c01282{font-size:44.940000px;}
.fs19_c01282{font-size:48.360000px;}
.fs10_c01282{font-size:51.840000px;}
.fse_c01282{font-size:55.320000px;}
.fs0_c01282{font-size:58.740000px;}
.fs9_c01282{font-size:62.220000px;}
.fs6_c01282{font-size:65.640000px;}
.fs4_c01282{font-size:69.120000px;}
.fsa_c01282{font-size:72.600000px;}
.fsc_c01282{font-size:76.020000px;}
.fs11_c01282{font-size:79.500000px;}
.fs17_c01282{font-size:82.920000px;}
.fsd_c01282{font-size:86.400000px;}
.fs1c_c01282{font-size:89.880000px;}
.fs5_c01282{font-size:93.300000px;}
.fs3_c01282{font-size:96.780000px;}
.fs1d_c01282{font-size:103.680000px;}
.y0_c01282{bottom:0.000000px;}
.y1e1_c01282{bottom:167.610000px;}
.y1df_c01282{bottom:168.480000px;}
.y1e0_c01282{bottom:169.350000px;}
.y1dd_c01282{bottom:171.075000px;}
.y1dc_c01282{bottom:171.930000px;}
.y1d9_c01282{bottom:173.670000px;}
.y1da_c01282{bottom:174.525000px;}
.y1d7_c01282{bottom:175.395000px;}
.y1d6_c01282{bottom:177.120000px;}
.y1db_c01282{bottom:177.990000px;}
.y1d8_c01282{bottom:178.845000px;}
.y1de_c01282{bottom:181.440000px;}
.y1d5_c01282{bottom:190.950000px;}
.y1d0_c01282{bottom:193.530000px;}
.y1d4_c01282{bottom:195.270000px;}
.y1d2_c01282{bottom:196.125000px;}
.y1d3_c01282{bottom:196.995000px;}
.y1cf_c01282{bottom:197.850000px;}
.y1d1_c01282{bottom:199.590000px;}
.y1cd_c01282{bottom:209.955000px;}
.y1ce_c01282{bottom:211.680000px;}
.y1cb_c01282{bottom:212.550000px;}
.y1ca_c01282{bottom:213.405000px;}
.y1c5_c01282{bottom:214.275000px;}
.y1c8_c01282{bottom:215.130000px;}
.y1c6_c01282{bottom:216.000000px;}
.y1c9_c01282{bottom:216.870000px;}
.y1c7_c01282{bottom:217.725000px;}
.y1cc_c01282{bottom:218.595000px;}
.y1be_c01282{bottom:233.280000px;}
.y1bd_c01282{bottom:234.150000px;}
.y1c2_c01282{bottom:235.875000px;}
.y1c3_c01282{bottom:236.730000px;}
.y1c4_c01282{bottom:237.600000px;}
.y1bf_c01282{bottom:238.470000px;}
.y1c0_c01282{bottom:239.325000px;}
.y1bc_c01282{bottom:241.050000px;}
.y1c1_c01282{bottom:246.240000px;}
.y1ba_c01282{bottom:252.285000px;}
.y1b8_c01282{bottom:254.010000px;}
.y1b4_c01282{bottom:254.880000px;}
.y1b7_c01282{bottom:256.605000px;}
.y1b9_c01282{bottom:259.200000px;}
.y1b6_c01282{bottom:260.070000px;}
.y1bb_c01282{bottom:260.925000px;}
.y1b5_c01282{bottom:266.115000px;}
.y1b3_c01282{bottom:273.030000px;}
.y1ad_c01282{bottom:275.610000px;}
.y1b2_c01282{bottom:277.350000px;}
.y1b0_c01282{bottom:278.205000px;}
.y1ae_c01282{bottom:279.075000px;}
.y1b1_c01282{bottom:279.930000px;}
.y1af_c01282{bottom:286.845000px;}
.y1aa_c01282{bottom:293.760000px;}
.y1ac_c01282{bottom:294.630000px;}
.y1a4_c01282{bottom:295.485000px;}
.y1ab_c01282{bottom:298.080000px;}
.y1a7_c01282{bottom:299.805000px;}
.y1a6_c01282{bottom:300.675000px;}
.y1a5_c01282{bottom:301.530000px;}
.y1a8_c01282{bottom:304.995000px;}
.y1a9_c01282{bottom:310.170000px;}
.y1a3_c01282{bottom:312.765000px;}
.y1a1_c01282{bottom:313.635000px;}
.y19f_c01282{bottom:314.490000px;}
.y19c_c01282{bottom:315.360000px;}
.y19d_c01282{bottom:316.230000px;}
.y19b_c01282{bottom:317.955000px;}
.y1a0_c01282{bottom:318.810000px;}
.y19e_c01282{bottom:319.680000px;}
.y19a_c01282{bottom:320.550000px;}
.y199_c01282{bottom:321.405000px;}
.y198_c01282{bottom:322.275000px;}
.y1a2_c01282{bottom:326.595000px;}
.y197_c01282{bottom:327.450000px;}
.y196_c01282{bottom:332.640000px;}
.y195_c01282{bottom:333.510000px;}
.y191_c01282{bottom:336.090000px;}
.y194_c01282{bottom:336.960000px;}
.y192_c01282{bottom:337.830000px;}
.y193_c01282{bottom:342.150000px;}
.y190_c01282{bottom:353.370000px;}
.y18f_c01282{bottom:355.110000px;}
.y188_c01282{bottom:356.835000px;}
.y189_c01282{bottom:358.560000px;}
.y18e_c01282{bottom:360.285000px;}
.y18c_c01282{bottom:361.155000px;}
.y187_c01282{bottom:362.880000px;}
.y1e5_c01282{bottom:364.605000px;}
.y18b_c01282{bottom:366.330000px;}
.y18a_c01282{bottom:368.925000px;}
.y1e4_c01282{bottom:370.650000px;}
.y18d_c01282{bottom:373.245000px;}
.y184_c01282{bottom:374.115000px;}
.y186_c01282{bottom:374.970000px;}
.y183_c01282{bottom:375.840000px;}
.y182_c01282{bottom:376.710000px;}
.y181_c01282{bottom:377.565000px;}
.y17f_c01282{bottom:380.160000px;}
.y185_c01282{bottom:381.885000px;}
.y1e3_c01282{bottom:388.800000px;}
.y180_c01282{bottom:393.120000px;}
.y17d_c01282{bottom:393.990000px;}
.y17c_c01282{bottom:394.845000px;}
.y17b_c01282{bottom:396.570000px;}
.y179_c01282{bottom:397.440000px;}
.y173_c01282{bottom:398.310000px;}
.y175_c01282{bottom:399.165000px;}
.y17e_c01282{bottom:400.035000px;}
.y174_c01282{bottom:400.890000px;}
.y177_c01282{bottom:401.760000px;}
.y178_c01282{bottom:402.630000px;}
.y176_c01282{bottom:405.210000px;}
.y17a_c01282{bottom:409.530000px;}
.y170_c01282{bottom:413.850000px;}
.y16e_c01282{bottom:415.590000px;}
.y16a_c01282{bottom:416.445000px;}
.y171_c01282{bottom:417.315000px;}
.y16b_c01282{bottom:418.170000px;}
.y16f_c01282{bottom:419.040000px;}
.y172_c01282{bottom:420.765000px;}
.y16c_c01282{bottom:421.635000px;}
.y16d_c01282{bottom:432.000000px;}
.y169_c01282{bottom:435.450000px;}
.y165_c01282{bottom:436.320000px;}
.y162_c01282{bottom:437.190000px;}
.y161_c01282{bottom:438.045000px;}
.y166_c01282{bottom:438.915000px;}
.y168_c01282{bottom:440.640000px;}
.y167_c01282{bottom:441.510000px;}
.y163_c01282{bottom:443.235000px;}
.y164_c01282{bottom:444.090000px;}
.y15d_c01282{bottom:455.325000px;}
.y15a_c01282{bottom:457.920000px;}
.y158_c01282{bottom:458.790000px;}
.y159_c01282{bottom:460.515000px;}
.y15f_c01282{bottom:462.240000px;}
.y15b_c01282{bottom:463.110000px;}
.y157_c01282{bottom:463.965000px;}
.y156_c01282{bottom:464.835000px;}
.y15c_c01282{bottom:466.560000px;}
.y160_c01282{bottom:470.880000px;}
.y15e_c01282{bottom:473.475000px;}
.y154_c01282{bottom:476.070000px;}
.y155_c01282{bottom:476.925000px;}
.y152_c01282{bottom:478.650000px;}
.y151_c01282{bottom:479.520000px;}
.y153_c01282{bottom:482.115000px;}
.y14f_c01282{bottom:484.710000px;}
.y150_c01282{bottom:485.565000px;}
.y14d_c01282{bottom:497.670000px;}
.y14e_c01282{bottom:498.525000px;}
.y14b_c01282{bottom:499.395000px;}
.y148_c01282{bottom:500.250000px;}
.y149_c01282{bottom:501.990000px;}
.y14a_c01282{bottom:505.440000px;}
.y147_c01282{bottom:506.310000px;}
.y14c_c01282{bottom:508.035000px;}
.y145_c01282{bottom:517.530000px;}
.y13f_c01282{bottom:519.270000px;}
.y144_c01282{bottom:520.995000px;}
.y141_c01282{bottom:521.850000px;}
.y146_c01282{bottom:522.720000px;}
.y142_c01282{bottom:524.445000px;}
.y140_c01282{bottom:525.315000px;}
.y143_c01282{bottom:534.810000px;}
.y137_c01282{bottom:540.000000px;}
.y13c_c01282{bottom:541.725000px;}
.y13d_c01282{bottom:542.595000px;}
.y13e_c01282{bottom:543.450000px;}
.y13b_c01282{bottom:544.320000px;}
.y139_c01282{bottom:545.190000px;}
.y138_c01282{bottom:546.045000px;}
.y13a_c01282{bottom:546.915000px;}
.y136_c01282{bottom:558.150000px;}
.y135_c01282{bottom:559.005000px;}
.y131_c01282{bottom:559.875000px;}
.y12f_c01282{bottom:560.730000px;}
.y132_c01282{bottom:562.470000px;}
.y134_c01282{bottom:564.195000px;}
.y130_c01282{bottom:565.050000px;}
.y133_c01282{bottom:565.920000px;}
.y12e_c01282{bottom:571.965000px;}
.y12d_c01282{bottom:578.010000px;}
.y12a_c01282{bottom:580.605000px;}
.y12b_c01282{bottom:581.475000px;}
.y129_c01282{bottom:582.330000px;}
.y12c_c01282{bottom:585.795000px;}
.y127_c01282{bottom:597.885000px;}
.y126_c01282{bottom:599.610000px;}
.y124_c01282{bottom:600.480000px;}
.y128_c01282{bottom:601.350000px;}
.y125_c01282{bottom:602.205000px;}
.y123_c01282{bottom:606.525000px;}
.y122_c01282{bottom:607.395000px;}
.y121_c01282{bottom:617.760000px;}
.y120_c01282{bottom:620.355000px;}
.y119_c01282{bottom:622.080000px;}
.y11c_c01282{bottom:622.950000px;}
.y11d_c01282{bottom:624.675000px;}
.y11e_c01282{bottom:626.400000px;}
.y11f_c01282{bottom:627.270000px;}
.y118_c01282{bottom:628.125000px;}
.y11a_c01282{bottom:628.995000px;}
.y11b_c01282{bottom:632.445000px;}
.y116_c01282{bottom:640.230000px;}
.y113_c01282{bottom:641.085000px;}
.y111_c01282{bottom:641.955000px;}
.y115_c01282{bottom:643.680000px;}
.y117_c01282{bottom:645.405000px;}
.y114_c01282{bottom:646.275000px;}
.y112_c01282{bottom:647.130000px;}
.y110_c01282{bottom:654.045000px;}
.y10f_c01282{bottom:658.365000px;}
.y10c_c01282{bottom:661.830000px;}
.y10d_c01282{bottom:663.555000px;}
.y10e_c01282{bottom:664.410000px;}
.y10a_c01282{bottom:665.280000px;}
.y10b_c01282{bottom:666.150000px;}
.y109_c01282{bottom:678.240000px;}
.y107_c01282{bottom:679.110000px;}
.y105_c01282{bottom:679.965000px;}
.y101_c01282{bottom:680.835000px;}
.y100_c01282{bottom:682.560000px;}
.y108_c01282{bottom:683.430000px;}
.y106_c01282{bottom:684.285000px;}
.y102_c01282{bottom:685.155000px;}
.y103_c01282{bottom:686.010000px;}
.y104_c01282{bottom:686.880000px;}
.yfe_c01282{bottom:692.070000px;}
.yfd_c01282{bottom:692.925000px;}
.yfc_c01282{bottom:693.795000px;}
.yf9_c01282{bottom:694.650000px;}
.yf8_c01282{bottom:698.115000px;}
.yfb_c01282{bottom:705.030000px;}
.yfa_c01282{bottom:706.755000px;}
.yff_c01282{bottom:712.800000px;}
.yf5_c01282{bottom:717.120000px;}
.yf6_c01282{bottom:717.990000px;}
.yf7_c01282{bottom:718.845000px;}
.yf0_c01282{bottom:721.440000px;}
.yf4_c01282{bottom:722.310000px;}
.yf2_c01282{bottom:723.165000px;}
.yee_c01282{bottom:724.035000px;}
.yef_c01282{bottom:724.890000px;}
.yf3_c01282{bottom:725.760000px;}
.yf1_c01282{bottom:726.630000px;}
.yec_c01282{bottom:738.720000px;}
.yea_c01282{bottom:739.590000px;}
.ye9_c01282{bottom:741.315000px;}
.ye7_c01282{bottom:742.170000px;}
.ye6_c01282{bottom:743.040000px;}
.ye5_c01282{bottom:743.910000px;}
.yed_c01282{bottom:744.765000px;}
.yeb_c01282{bottom:745.635000px;}
.ye4_c01282{bottom:746.490000px;}
.ye8_c01282{bottom:747.360000px;}
.ye3_c01282{bottom:757.725000px;}
.ye2_c01282{bottom:761.190000px;}
.ye0_c01282{bottom:762.045000px;}
.ye1_c01282{bottom:762.915000px;}
.ydf_c01282{bottom:767.235000px;}
.yde_c01282{bottom:780.195000px;}
.yd8_c01282{bottom:781.050000px;}
.ydd_c01282{bottom:781.920000px;}
.yd7_c01282{bottom:782.790000px;}
.ydc_c01282{bottom:784.515000px;}
.ydb_c01282{bottom:785.370000px;}
.yd9_c01282{bottom:786.240000px;}
.yd6_c01282{bottom:787.110000px;}
.yda_c01282{bottom:787.965000px;}
.yd4_c01282{bottom:799.200000px;}
.yd2_c01282{bottom:800.925000px;}
.yd5_c01282{bottom:803.520000px;}
.yce_c01282{bottom:804.390000px;}
.yd3_c01282{bottom:805.245000px;}
.ycf_c01282{bottom:806.115000px;}
.ycd_c01282{bottom:807.840000px;}
.yd0_c01282{bottom:814.755000px;}
.yd1_c01282{bottom:817.350000px;}
.ycb_c01282{bottom:818.205000px;}
.yca_c01282{bottom:819.930000px;}
.ycc_c01282{bottom:820.800000px;}
.yc4_c01282{bottom:821.670000px;}
.yc5_c01282{bottom:822.525000px;}
.yc6_c01282{bottom:824.250000px;}
.yc9_c01282{bottom:825.120000px;}
.yc8_c01282{bottom:825.990000px;}
.yc7_c01282{bottom:827.715000px;}
.yc2_c01282{bottom:838.950000px;}
.ybf_c01282{bottom:839.805000px;}
.yc1_c01282{bottom:840.675000px;}
.yc0_c01282{bottom:841.530000px;}
.ybd_c01282{bottom:842.400000px;}
.yc3_c01282{bottom:844.995000px;}
.ybe_c01282{bottom:847.590000px;}
.ybc_c01282{bottom:857.085000px;}
.ybb_c01282{bottom:858.810000px;}
.yba_c01282{bottom:859.680000px;}
.yb7_c01282{bottom:862.275000px;}
.yb6_c01282{bottom:863.130000px;}
.yb8_c01282{bottom:866.595000px;}
.yb9_c01282{bottom:867.450000px;}
.yb5_c01282{bottom:868.320000px;}
.yb3_c01282{bottom:880.410000px;}
.yb2_c01282{bottom:882.150000px;}
.yb0_c01282{bottom:883.005000px;}
.yb1_c01282{bottom:883.875000px;}
.yb4_c01282{bottom:885.600000px;}
.yae_c01282{bottom:886.470000px;}
.yaf_c01282{bottom:888.195000px;}
.yac_c01282{bottom:901.155000px;}
.ya5_c01282{bottom:902.010000px;}
.ya7_c01282{bottom:903.750000px;}
.yab_c01282{bottom:905.475000px;}
.yad_c01282{bottom:906.330000px;}
.ya8_c01282{bottom:907.200000px;}
.ya6_c01282{bottom:908.070000px;}
.yaa_c01282{bottom:908.925000px;}
.ya9_c01282{bottom:913.245000px;}
.y9f_c01282{bottom:922.755000px;}
.ya2_c01282{bottom:923.610000px;}
.ya4_c01282{bottom:925.350000px;}
.ya3_c01282{bottom:926.205000px;}
.ya1_c01282{bottom:927.930000px;}
.ya0_c01282{bottom:928.800000px;}
.y9e_c01282{bottom:940.035000px;}
.y9d_c01282{bottom:940.890000px;}
.y9b_c01282{bottom:942.630000px;}
.y97_c01282{bottom:945.210000px;}
.y98_c01282{bottom:946.080000px;}
.y9c_c01282{bottom:946.950000px;}
.y9a_c01282{bottom:947.805000px;}
.y99_c01282{bottom:948.675000px;}
.y96_c01282{bottom:960.765000px;}
.y92_c01282{bottom:963.360000px;}
.y90_c01282{bottom:965.085000px;}
.y95_c01282{bottom:965.955000px;}
.y91_c01282{bottom:966.810000px;}
.y93_c01282{bottom:967.680000px;}
.y94_c01282{bottom:968.550000px;}
.y8f_c01282{bottom:980.640000px;}
.y8c_c01282{bottom:981.510000px;}
.y8a_c01282{bottom:982.365000px;}
.y8b_c01282{bottom:983.235000px;}
.y8e_c01282{bottom:986.685000px;}
.y8d_c01282{bottom:987.555000px;}
.y89_c01282{bottom:989.280000px;}
.y87_c01282{bottom:1000.515000px;}
.y86_c01282{bottom:1002.240000px;}
.y82_c01282{bottom:1003.110000px;}
.y83_c01282{bottom:1003.965000px;}
.y88_c01282{bottom:1005.690000px;}
.y85_c01282{bottom:1006.560000px;}
.y84_c01282{bottom:1007.430000px;}
.y81_c01282{bottom:1021.245000px;}
.y7c_c01282{bottom:1022.970000px;}
.y7b_c01282{bottom:1023.840000px;}
.y7e_c01282{bottom:1024.710000px;}
.y7f_c01282{bottom:1025.565000px;}
.y80_c01282{bottom:1026.435000px;}
.y79_c01282{bottom:1027.290000px;}
.y7d_c01282{bottom:1028.160000px;}
.y7a_c01282{bottom:1029.030000px;}
.y72_c01282{bottom:1041.120000px;}
.y77_c01282{bottom:1041.990000px;}
.y74_c01282{bottom:1042.845000px;}
.y75_c01282{bottom:1043.715000px;}
.y78_c01282{bottom:1047.165000px;}
.y76_c01282{bottom:1048.035000px;}
.y71_c01282{bottom:1048.890000px;}
.y73_c01282{bottom:1049.760000px;}
.y6d_c01282{bottom:1061.850000px;}
.y70_c01282{bottom:1062.720000px;}
.y6e_c01282{bottom:1063.590000px;}
.y6b_c01282{bottom:1067.040000px;}
.y6f_c01282{bottom:1067.910000px;}
.y6c_c01282{bottom:1068.765000px;}
.y6a_c01282{bottom:1069.635000px;}
.y69_c01282{bottom:1080.870000px;}
.y68_c01282{bottom:1082.595000px;}
.y65_c01282{bottom:1083.450000px;}
.y63_c01282{bottom:1084.320000px;}
.y62_c01282{bottom:1085.190000px;}
.y67_c01282{bottom:1086.045000px;}
.y66_c01282{bottom:1086.915000px;}
.y64_c01282{bottom:1088.640000px;}
.y61_c01282{bottom:1089.510000px;}
.y1e9_c01282{bottom:1098.150000px;}
.y60_c01282{bottom:1099.875000px;}
.y5f_c01282{bottom:1101.600000px;}
.y5e_c01282{bottom:1102.470000px;}
.y5b_c01282{bottom:1103.325000px;}
.y5a_c01282{bottom:1104.195000px;}
.y59_c01282{bottom:1105.920000px;}
.y5d_c01282{bottom:1108.515000px;}
.y5c_c01282{bottom:1117.155000px;}
.y56_c01282{bottom:1122.330000px;}
.y55_c01282{bottom:1124.070000px;}
.y52_c01282{bottom:1124.925000px;}
.y50_c01282{bottom:1125.795000px;}
.y54_c01282{bottom:1126.650000px;}
.y58_c01282{bottom:1127.520000px;}
.y57_c01282{bottom:1128.390000px;}
.y4f_c01282{bottom:1129.245000px;}
.y53_c01282{bottom:1130.115000px;}
.y51_c01282{bottom:1130.970000px;}
.y4d_c01282{bottom:1142.205000px;}
.y4c_c01282{bottom:1144.800000px;}
.y4a_c01282{bottom:1145.670000px;}
.y49_c01282{bottom:1146.525000px;}
.y4e_c01282{bottom:1148.250000px;}
.y4b_c01282{bottom:1149.990000px;}
.y48_c01282{bottom:1162.080000px;}
.y43_c01282{bottom:1163.805000px;}
.y44_c01282{bottom:1165.530000px;}
.y42_c01282{bottom:1167.270000px;}
.y45_c01282{bottom:1168.125000px;}
.y46_c01282{bottom:1168.995000px;}
.y47_c01282{bottom:1169.850000px;}
.y41_c01282{bottom:1171.590000px;}
.y40_c01282{bottom:1182.810000px;}
.y3d_c01282{bottom:1184.550000px;}
.y3f_c01282{bottom:1185.405000px;}
.y3c_c01282{bottom:1186.275000px;}
.y3e_c01282{bottom:1189.725000px;}
.y1ea_c01282{bottom:1193.190000px;}
.y3b_c01282{bottom:1200.960000px;}
.y37_c01282{bottom:1203.555000px;}
.y36_c01282{bottom:1204.410000px;}
.y39_c01282{bottom:1205.280000px;}
.y34_c01282{bottom:1206.150000px;}
.y32_c01282{bottom:1207.875000px;}
.y38_c01282{bottom:1208.730000px;}
.y35_c01282{bottom:1210.470000px;}
.y33_c01282{bottom:1211.325000px;}
.y3a_c01282{bottom:1212.195000px;}
.y31_c01282{bottom:1222.560000px;}
.y30_c01282{bottom:1224.285000px;}
.y29_c01282{bottom:1225.155000px;}
.y2a_c01282{bottom:1226.880000px;}
.y28_c01282{bottom:1227.750000px;}
.y2f_c01282{bottom:1228.605000px;}
.y2e_c01282{bottom:1232.925000px;}
.y2b_c01282{bottom:1233.795000px;}
.y2c_c01282{bottom:1237.245000px;}
.y2d_c01282{bottom:1238.115000px;}
.y26_c01282{bottom:1243.290000px;}
.y27_c01282{bottom:1244.160000px;}
.y22_c01282{bottom:1245.030000px;}
.y20_c01282{bottom:1245.885000px;}
.y1f_c01282{bottom:1246.755000px;}
.y25_c01282{bottom:1248.480000px;}
.y24_c01282{bottom:1249.350000px;}
.y21_c01282{bottom:1251.075000px;}
.y23_c01282{bottom:1252.800000px;}
.y1e2_c01282{bottom:1259.715000px;}
.y1d_c01282{bottom:1264.890000px;}
.y19_c01282{bottom:1265.760000px;}
.y1e_c01282{bottom:1266.630000px;}
.y1a_c01282{bottom:1267.485000px;}
.y1c_c01282{bottom:1269.210000px;}
.y1b_c01282{bottom:1270.950000px;}
.y18_c01282{bottom:1271.805000px;}
.y16_c01282{bottom:1283.910000px;}
.y14_c01282{bottom:1284.765000px;}
.y13_c01282{bottom:1286.490000px;}
.y10_c01282{bottom:1288.230000px;}
.y17_c01282{bottom:1289.085000px;}
.y12_c01282{bottom:1289.955000px;}
.y11_c01282{bottom:1290.810000px;}
.yf_c01282{bottom:1291.680000px;}
.y15_c01282{bottom:1297.725000px;}
.ye_c01282{bottom:1303.770000px;}
.yb_c01282{bottom:1306.365000px;}
.yd_c01282{bottom:1308.960000px;}
.ya_c01282{bottom:1309.830000px;}
.yc_c01282{bottom:1310.685000px;}
.y9_c01282{bottom:1312.410000px;}
.y8_c01282{bottom:1313.280000px;}
.y7_c01282{bottom:1327.110000px;}
.y5_c01282{bottom:1330.560000px;}
.y3_c01282{bottom:1333.155000px;}
.y1_c01282{bottom:1334.010000px;}
.y6_c01282{bottom:1336.605000px;}
.y4_c01282{bottom:1337.475000px;}
.y2_c01282{bottom:1340.070000px;}
.y1e6_c01282{bottom:1393.635000px;}
.y1e7_c01282{bottom:1407.450000px;}
.y1e8_c01282{bottom:1410.915000px;}
.h13_c01282{height:3.110063px;}
.h1c_c01282{height:5.399414px;}
.h9_c01282{height:6.209326px;}
.h15_c01282{height:9.340986px;}
.h3_c01282{height:12.418652px;}
.h1a_c01282{height:15.550313px;}
.h14_c01282{height:18.681973px;}
.h4_c01282{height:21.759639px;}
.h16_c01282{height:24.891299px;}
.h18_c01282{height:27.968965px;}
.h17_c01282{height:31.100625px;}
.ha_c01282{height:34.232285px;}
.h1d_c01282{height:37.309951px;}
.hd_c01282{height:40.441611px;}
.h1b_c01282{height:43.519277px;}
.h11_c01282{height:46.650937px;}
.h10_c01282{height:49.782598px;}
.h2_c01282{height:52.860264px;}
.h20_c01282{height:53.202598px;}
.hb_c01282{height:55.991924px;}
.h8_c01282{height:59.069590px;}
.h6_c01282{height:62.201250px;}
.hc_c01282{height:65.332910px;}
.he_c01282{height:68.410576px;}
.h12_c01282{height:71.542236px;}
.h19_c01282{height:74.619902px;}
.hf_c01282{height:77.751563px;}
.h1e_c01282{height:80.883223px;}
.h7_c01282{height:83.960889px;}
.h5_c01282{height:87.092549px;}
.h1f_c01282{height:93.301875px;}
.h1_c01282{height:1518.750000px;}
.h0_c01282{height:1518.915000px;}
.w0_c01282{width:1085.190000px;}
.w1_c01282{width:1085.250000px;}
.x0_c01282{left:0.000000px;}
.x120_c01282{left:5.190000px;}
.x122_c01282{left:7.770000px;}
.x121_c01282{left:19.005000px;}
.xfb_c01282{left:82.950000px;}
.x103_c01282{left:133.920000px;}
.x106_c01282{left:140.835000px;}
.x11e_c01282{left:146.010000px;}
.x11f_c01282{left:148.605000px;}
.xfc_c01282{left:163.290000px;}
.x10a_c01282{left:167.610000px;}
.x104_c01282{left:172.800000px;}
.xfd_c01282{left:181.440000px;}
.x112_c01282{left:183.165000px;}
.x47_c01282{left:186.630000px;}
.x116_c01282{left:189.210000px;}
.x10c_c01282{left:197.850000px;}
.x10b_c01282{left:200.445000px;}
.xfe_c01282{left:206.490000px;}
.x107_c01282{left:211.680000px;}
.x3d_c01282{left:216.000000px;}
.x4d_c01282{left:220.320000px;}
.xf8_c01282{left:222.045000px;}
.xe8_c01282{left:223.770000px;}
.x6e_c01282{left:226.365000px;}
.xa_c01282{left:228.090000px;}
.x5c_c01282{left:229.830000px;}
.x7e_c01282{left:231.555000px;}
.x69_c01282{left:234.150000px;}
.x4e_c01282{left:235.875000px;}
.x12_c01282{left:238.470000px;}
.x1e_c01282{left:240.195000px;}
.x1_c01282{left:241.920000px;}
.xdc_c01282{left:244.515000px;}
.xbf_c01282{left:247.965000px;}
.x34_c01282{left:250.560000px;}
.x6a_c01282{left:253.155000px;}
.x95_c01282{left:258.330000px;}
.xff_c01282{left:260.070000px;}
.x2_c01282{left:261.795000px;}
.x8f_c01282{left:265.245000px;}
.x3e_c01282{left:266.970000px;}
.xe0_c01282{left:269.565000px;}
.x6f_c01282{left:271.290000px;}
.x35_c01282{left:275.610000px;}
.x7f_c01282{left:278.205000px;}
.xaa_c01282{left:279.930000px;}
.x3_c01282{left:281.670000px;}
.xe1_c01282{left:283.395000px;}
.xd4_c01282{left:285.120000px;}
.x5d_c01282{left:289.440000px;}
.x1f_c01282{left:291.165000px;}
.x96_c01282{left:293.760000px;}
.xef_c01282{left:298.080000px;}
.xb_c01282{left:302.400000px;}
.x4f_c01282{left:304.995000px;}
.x2a_c01282{left:307.590000px;}
.x77_c01282{left:311.040000px;}
.x85_c01282{left:314.490000px;}
.xb2_c01282{left:316.230000px;}
.x57_c01282{left:319.680000px;}
.x3f_c01282{left:321.405000px;}
.x20_c01282{left:324.000000px;}
.x48_c01282{left:327.450000px;}
.xf3_c01282{left:330.915000px;}
.x70_c01282{left:332.640000px;}
.xab_c01282{left:334.365000px;}
.x13_c01282{left:338.685000px;}
.x78_c01282{left:343.005000px;}
.xe6_c01282{left:347.325000px;}
.xc5_c01282{left:349.920000px;}
.x21_c01282{left:351.645000px;}
.xf9_c01282{left:353.370000px;}
.xf0_c01282{left:355.110000px;}
.x4_c01282{left:356.835000px;}
.xb3_c01282{left:359.430000px;}
.xe5_c01282{left:361.155000px;}
.xac_c01282{left:363.750000px;}
.x11a_c01282{left:365.475000px;}
.xdd_c01282{left:367.200000px;}
.x50_c01282{left:368.925000px;}
.x14_c01282{left:372.390000px;}
.xa1_c01282{left:374.115000px;}
.x92_c01282{left:376.710000px;}
.xec_c01282{left:378.435000px;}
.x8b_c01282{left:381.030000px;}
.x36_c01282{left:385.350000px;}
.x108_c01282{left:387.075000px;}
.xba_c01282{left:388.800000px;}
.x5e_c01282{left:390.525000px;}
.x49_c01282{left:392.250000px;}
.x79_c01282{left:394.845000px;}
.x10d_c01282{left:398.310000px;}
.x86_c01282{left:400.035000px;}
.x2b_c01282{left:401.760000px;}
.x80_c01282{left:403.485000px;}
.x9b_c01282{left:405.210000px;}
.x22_c01282{left:407.805000px;}
.xda_c01282{left:409.530000px;}
.xa2_c01282{left:412.995000px;}
.x71_c01282{left:414.720000px;}
.xd1_c01282{left:418.170000px;}
.xe7_c01282{left:419.910000px;}
.xf1_c01282{left:422.490000px;}
.xe9_c01282{left:424.230000px;}
.xc0_c01282{left:425.955000px;}
.xc_c01282{left:427.680000px;}
.x93_c01282{left:429.405000px;}
.x109_c01282{left:432.870000px;}
.x117_c01282{left:435.450000px;}
.x10e_c01282{left:437.190000px;}
.x15_c01282{left:438.915000px;}
.x58_c01282{left:441.510000px;}
.x2c_c01282{left:445.830000px;}
.x5f_c01282{left:448.410000px;}
.x87_c01282{left:450.150000px;}
.x23_c01282{left:451.875000px;}
.x7a_c01282{left:453.600000px;}
.xad_c01282{left:455.325000px;}
.x51_c01282{left:457.920000px;}
.xae_c01282{left:462.240000px;}
.x72_c01282{left:463.965000px;}
.x97_c01282{left:465.690000px;}
.x94_c01282{left:468.285000px;}
.xd5_c01282{left:471.750000px;}
.xd_c01282{left:474.330000px;}
.xe2_c01282{left:476.925000px;}
.xbb_c01282{left:480.390000px;}
.x10f_c01282{left:483.840000px;}
.x9c_c01282{left:485.565000px;}
.x37_c01282{left:488.160000px;}
.xde_c01282{left:489.885000px;}
.xed_c01282{left:492.480000px;}
.x40_c01282{left:495.930000px;}
.x4a_c01282{left:498.525000px;}
.x5_c01282{left:500.250000px;}
.x8c_c01282{left:501.990000px;}
.x60_c01282{left:503.715000px;}
.xc9_c01282{left:506.310000px;}
.x9d_c01282{left:508.035000px;}
.x6b_c01282{left:513.210000px;}
.x81_c01282{left:515.805000px;}
.xd6_c01282{left:517.530000px;}
.x16_c01282{left:520.995000px;}
.x2d_c01282{left:522.720000px;}
.xe3_c01282{left:524.445000px;}
.xe_c01282{left:527.040000px;}
.xdf_c01282{left:530.490000px;}
.x2e_c01282{left:535.680000px;}
.xf4_c01282{left:537.405000px;}
.x6_c01282{left:540.870000px;}
.x113_c01282{left:542.595000px;}
.xd2_c01282{left:544.320000px;}
.x90_c01282{left:546.915000px;}
.xf_c01282{left:549.510000px;}
.x119_c01282{left:552.090000px;}
.xb4_c01282{left:553.830000px;}
.xa3_c01282{left:556.410525px;}
.x100_c01282{left:558.150000px;}
.x38_c01282{left:559.875000px;}
.xa4_c01282{left:561.600000px;}
.xc1_c01282{left:563.325000px;}
.x41_c01282{left:565.050000px;}
.x59_c01282{left:566.790000px;}
.x17_c01282{left:569.370000px;}
.xc6_c01282{left:577.155000px;}
.x10_c01282{left:583.200000px;}
.xc7_c01282{left:586.650000px;}
.x24_c01282{left:589.245000px;}
.xaf_c01282{left:592.710000px;}
.x61_c01282{left:594.435000px;}
.xd3_c01282{left:597.030000px;}
.x110_c01282{left:598.755000px;}
.x98_c01282{left:601.350000px;}
.x73_c01282{left:603.075000px;}
.xca_c01282{left:604.800000px;}
.x18_c01282{left:606.525000px;}
.x62_c01282{left:608.250000px;}
.x82_c01282{left:609.990000px;}
.xcb_c01282{left:611.715000px;}
.xea_c01282{left:613.440000px;}
.x52_c01282{left:616.035000px;}
.x88_c01282{left:618.630000px;}
.x2f_c01282{left:620.355000px;}
.x6c_c01282{left:622.950000px;}
.x7b_c01282{left:625.530000px;}
.x39_c01282{left:628.995000px;}
.x8d_c01282{left:630.720000px;}
.x11c_c01282{left:635.910000px;}
.x25_c01282{left:637.635000px;}
.xee_c01282{left:639.360000px;}
.x63_c01282{left:641.955000px;}
.xe4_c01282{left:646.275000px;}
.x74_c01282{left:648.000000px;}
.xc8_c01282{left:649.725000px;}
.x26_c01282{left:651.450000px;}
.xcc_c01282{left:653.190000px;}
.x30_c01282{left:654.915000px;}
.x11d_c01282{left:658.365000px;}
.x42_c01282{left:660.960000px;}
.x99_c01282{left:662.685000px;}
.x7_c01282{left:665.280000px;}
.x53_c01282{left:667.875000px;}
.xc2_c01282{left:669.600000px;}
.xb5_c01282{left:671.325000px;}
.x5a_c01282{left:673.050000px;}
.x91_c01282{left:675.645000px;}
.xb6_c01282{left:677.370000px;}
.xa5_c01282{left:679.965000px;}
.x19_c01282{left:681.690000px;}
.x118_c01282{left:684.285000px;}
.xcd_c01282{left:686.010000px;}
.x54_c01282{left:688.605000px;}
.xb0_c01282{left:691.200000px;}
.x43_c01282{left:694.650000px;}
.x11_c01282{left:696.390000px;}
.xf5_c01282{left:698.970000px;}
.x4b_c01282{left:700.710000px;}
.x8_c01282{left:702.435000px;}
.x101_c01282{left:706.755000px;}
.x3a_c01282{left:711.930000px;}
.xa6_c01282{left:715.395000px;}
.x75_c01282{left:717.990000px;}
.x27_c01282{left:719.715000px;}
.x114_c01282{left:721.440000px;}
.xbc_c01282{left:723.165000px;}
.x9_c01282{left:726.630000px;}
.xf2_c01282{left:730.080000px;}
.xf7_c01282{left:734.400000px;}
.xb1_c01282{left:737.850000px;}
.x9a_c01282{left:740.445000px;}
.x44_c01282{left:742.170000px;}
.x64_c01282{left:743.910000px;}
.x31_c01282{left:747.360000px;}
.xa7_c01282{left:749.085000px;}
.x7c_c01282{left:751.680000px;}
.x9e_c01282{left:753.405000px;}
.x65_c01282{left:755.130000px;}
.xb7_c01282{left:756.870000px;}
.xbd_c01282{left:759.450000px;}
.x11b_c01282{left:762.045000px;}
.x8e_c01282{left:763.770000px;}
.xb8_c01282{left:766.365000px;}
.x9f_c01282{left:769.830000px;}
.xdb_c01282{left:771.555000px;}
.x1a_c01282{left:773.280000px;}
.x66_c01282{left:775.875000px;}
.x83_c01282{left:778.470000px;}
.xf6_c01282{left:781.050000px;}
.x3b_c01282{left:782.790000px;}
.x67_c01282{left:784.515000px;}
.xa0_c01282{left:789.690000px;}
.x89_c01282{left:791.430000px;}
.x115_c01282{left:793.155000px;}
.xc3_c01282{left:795.750000px;}
.x76_c01282{left:798.330000px;}
.x8a_c01282{left:801.795000px;}
.xc4_c01282{left:803.520000px;}
.x4c_c01282{left:807.840000px;}
.x1b_c01282{left:812.160000px;}
.x55_c01282{left:814.755000px;}
.xcf_c01282{left:816.480000px;}
.x102_c01282{left:818.205000px;}
.x32_c01282{left:820.800000px;}
.xce_c01282{left:823.395000px;}
.xb9_c01282{left:825.990000px;}
.x56_c01282{left:827.715000px;}
.x33_c01282{left:829.440000px;}
.x1c_c01282{left:832.035000px;}
.x5b_c01282{left:834.630000px;}
.x7d_c01282{left:837.210000px;}
.xd7_c01282{left:839.805000px;}
.x6d_c01282{left:843.270000px;}
.xfa_c01282{left:845.850000px;}
.xeb_c01282{left:847.590000px;}
.x84_c01282{left:849.315000px;}
.x1d_c01282{left:851.910000px;}
.x28_c01282{left:853.635000px;}
.x3c_c01282{left:856.230000px;}
.x105_c01282{left:857.955000px;}
.xd0_c01282{left:861.405000px;}
.xbe_c01282{left:863.130000px;}
.xa8_c01282{left:864.870000px;}
.x111_c01282{left:866.595000px;}
.x29_c01282{left:868.320000px;}
.xa9_c01282{left:870.915000px;}
.xd8_c01282{left:873.510000px;}
.x45_c01282{left:876.960000px;}
.x46_c01282{left:885.600000px;}
.xd9_c01282{left:898.560000px;}
.x68_c01282{left:904.605000px;}
.x123_c01282{left:912.390000px;}
.x126_c01282{left:956.445000px;}
.x127_c01282{left:1039.395000px;}
.x128_c01282{left:1053.210000px;}
.x124_c01282{left:1066.170000px;}
.x125_c01282{left:1080.870000px;}
@media print{
.v1_c01282{vertical-align:-3.093333pt;}
.v0_c01282{vertical-align:0.000000pt;}
.v2_c01282{vertical-align:3.093333pt;}
.ls0_c01282{letter-spacing:0.000000pt;}
.ws3_c01282{word-spacing:-19.600267pt;}
.ws0_c01282{word-spacing:-14.527147pt;}
.ws2_c01282{word-spacing:-7.122240pt;}
.ws4_c01282{word-spacing:-4.650613pt;}
.ws1_c01282{word-spacing:-4.092373pt;}
.ws5_c01282{word-spacing:0.000000pt;}
.fs12_c01282{font-size:3.072000pt;}
.fs1a_c01282{font-size:5.333333pt;}
.fs7_c01282{font-size:6.133333pt;}
.fs14_c01282{font-size:9.226667pt;}
.fs1_c01282{font-size:12.266667pt;}
.fs18_c01282{font-size:15.360000pt;}
.fs13_c01282{font-size:18.453333pt;}
.fs2_c01282{font-size:21.493333pt;}
.fs15_c01282{font-size:24.586667pt;}
.fs16_c01282{font-size:27.626667pt;}
.fsf_c01282{font-size:30.720000pt;}
.fs8_c01282{font-size:33.813333pt;}
.fs1b_c01282{font-size:36.853333pt;}
.fsb_c01282{font-size:39.946667pt;}
.fs19_c01282{font-size:42.986667pt;}
.fs10_c01282{font-size:46.080000pt;}
.fse_c01282{font-size:49.173333pt;}
.fs0_c01282{font-size:52.213333pt;}
.fs9_c01282{font-size:55.306667pt;}
.fs6_c01282{font-size:58.346667pt;}
.fs4_c01282{font-size:61.440000pt;}
.fsa_c01282{font-size:64.533333pt;}
.fsc_c01282{font-size:67.573333pt;}
.fs11_c01282{font-size:70.666667pt;}
.fs17_c01282{font-size:73.706667pt;}
.fsd_c01282{font-size:76.800000pt;}
.fs1c_c01282{font-size:79.893333pt;}
.fs5_c01282{font-size:82.933333pt;}
.fs3_c01282{font-size:86.026667pt;}
.fs1d_c01282{font-size:92.160000pt;}
.y0_c01282{bottom:0.000000pt;}
.y1e1_c01282{bottom:148.986667pt;}
.y1df_c01282{bottom:149.760000pt;}
.y1e0_c01282{bottom:150.533333pt;}
.y1dd_c01282{bottom:152.066667pt;}
.y1dc_c01282{bottom:152.826667pt;}
.y1d9_c01282{bottom:154.373333pt;}
.y1da_c01282{bottom:155.133333pt;}
.y1d7_c01282{bottom:155.906667pt;}
.y1d6_c01282{bottom:157.440000pt;}
.y1db_c01282{bottom:158.213333pt;}
.y1d8_c01282{bottom:158.973333pt;}
.y1de_c01282{bottom:161.280000pt;}
.y1d5_c01282{bottom:169.733333pt;}
.y1d0_c01282{bottom:172.026667pt;}
.y1d4_c01282{bottom:173.573333pt;}
.y1d2_c01282{bottom:174.333333pt;}
.y1d3_c01282{bottom:175.106667pt;}
.y1cf_c01282{bottom:175.866667pt;}
.y1d1_c01282{bottom:177.413333pt;}
.y1cd_c01282{bottom:186.626667pt;}
.y1ce_c01282{bottom:188.160000pt;}
.y1cb_c01282{bottom:188.933333pt;}
.y1ca_c01282{bottom:189.693333pt;}
.y1c5_c01282{bottom:190.466667pt;}
.y1c8_c01282{bottom:191.226667pt;}
.y1c6_c01282{bottom:192.000000pt;}
.y1c9_c01282{bottom:192.773333pt;}
.y1c7_c01282{bottom:193.533333pt;}
.y1cc_c01282{bottom:194.306667pt;}
.y1be_c01282{bottom:207.360000pt;}
.y1bd_c01282{bottom:208.133333pt;}
.y1c2_c01282{bottom:209.666667pt;}
.y1c3_c01282{bottom:210.426667pt;}
.y1c4_c01282{bottom:211.200000pt;}
.y1bf_c01282{bottom:211.973333pt;}
.y1c0_c01282{bottom:212.733333pt;}
.y1bc_c01282{bottom:214.266667pt;}
.y1c1_c01282{bottom:218.880000pt;}
.y1ba_c01282{bottom:224.253333pt;}
.y1b8_c01282{bottom:225.786667pt;}
.y1b4_c01282{bottom:226.560000pt;}
.y1b7_c01282{bottom:228.093333pt;}
.y1b9_c01282{bottom:230.400000pt;}
.y1b6_c01282{bottom:231.173333pt;}
.y1bb_c01282{bottom:231.933333pt;}
.y1b5_c01282{bottom:236.546667pt;}
.y1b3_c01282{bottom:242.693333pt;}
.y1ad_c01282{bottom:244.986667pt;}
.y1b2_c01282{bottom:246.533333pt;}
.y1b0_c01282{bottom:247.293333pt;}
.y1ae_c01282{bottom:248.066667pt;}
.y1b1_c01282{bottom:248.826667pt;}
.y1af_c01282{bottom:254.973333pt;}
.y1aa_c01282{bottom:261.120000pt;}
.y1ac_c01282{bottom:261.893333pt;}
.y1a4_c01282{bottom:262.653333pt;}
.y1ab_c01282{bottom:264.960000pt;}
.y1a7_c01282{bottom:266.493333pt;}
.y1a6_c01282{bottom:267.266667pt;}
.y1a5_c01282{bottom:268.026667pt;}
.y1a8_c01282{bottom:271.106667pt;}
.y1a9_c01282{bottom:275.706667pt;}
.y1a3_c01282{bottom:278.013333pt;}
.y1a1_c01282{bottom:278.786667pt;}
.y19f_c01282{bottom:279.546667pt;}
.y19c_c01282{bottom:280.320000pt;}
.y19d_c01282{bottom:281.093333pt;}
.y19b_c01282{bottom:282.626667pt;}
.y1a0_c01282{bottom:283.386667pt;}
.y19e_c01282{bottom:284.160000pt;}
.y19a_c01282{bottom:284.933333pt;}
.y199_c01282{bottom:285.693333pt;}
.y198_c01282{bottom:286.466667pt;}
.y1a2_c01282{bottom:290.306667pt;}
.y197_c01282{bottom:291.066667pt;}
.y196_c01282{bottom:295.680000pt;}
.y195_c01282{bottom:296.453333pt;}
.y191_c01282{bottom:298.746667pt;}
.y194_c01282{bottom:299.520000pt;}
.y192_c01282{bottom:300.293333pt;}
.y193_c01282{bottom:304.133333pt;}
.y190_c01282{bottom:314.106667pt;}
.y18f_c01282{bottom:315.653333pt;}
.y188_c01282{bottom:317.186667pt;}
.y189_c01282{bottom:318.720000pt;}
.y18e_c01282{bottom:320.253333pt;}
.y18c_c01282{bottom:321.026667pt;}
.y187_c01282{bottom:322.560000pt;}
.y1e5_c01282{bottom:324.093333pt;}
.y18b_c01282{bottom:325.626667pt;}
.y18a_c01282{bottom:327.933333pt;}
.y1e4_c01282{bottom:329.466667pt;}
.y18d_c01282{bottom:331.773333pt;}
.y184_c01282{bottom:332.546667pt;}
.y186_c01282{bottom:333.306667pt;}
.y183_c01282{bottom:334.080000pt;}
.y182_c01282{bottom:334.853333pt;}
.y181_c01282{bottom:335.613333pt;}
.y17f_c01282{bottom:337.920000pt;}
.y185_c01282{bottom:339.453333pt;}
.y1e3_c01282{bottom:345.600000pt;}
.y180_c01282{bottom:349.440000pt;}
.y17d_c01282{bottom:350.213333pt;}
.y17c_c01282{bottom:350.973333pt;}
.y17b_c01282{bottom:352.506667pt;}
.y179_c01282{bottom:353.280000pt;}
.y173_c01282{bottom:354.053333pt;}
.y175_c01282{bottom:354.813333pt;}
.y17e_c01282{bottom:355.586667pt;}
.y174_c01282{bottom:356.346667pt;}
.y177_c01282{bottom:357.120000pt;}
.y178_c01282{bottom:357.893333pt;}
.y176_c01282{bottom:360.186667pt;}
.y17a_c01282{bottom:364.026667pt;}
.y170_c01282{bottom:367.866667pt;}
.y16e_c01282{bottom:369.413333pt;}
.y16a_c01282{bottom:370.173333pt;}
.y171_c01282{bottom:370.946667pt;}
.y16b_c01282{bottom:371.706667pt;}
.y16f_c01282{bottom:372.480000pt;}
.y172_c01282{bottom:374.013333pt;}
.y16c_c01282{bottom:374.786667pt;}
.y16d_c01282{bottom:384.000000pt;}
.y169_c01282{bottom:387.066667pt;}
.y165_c01282{bottom:387.840000pt;}
.y162_c01282{bottom:388.613333pt;}
.y161_c01282{bottom:389.373333pt;}
.y166_c01282{bottom:390.146667pt;}
.y168_c01282{bottom:391.680000pt;}
.y167_c01282{bottom:392.453333pt;}
.y163_c01282{bottom:393.986667pt;}
.y164_c01282{bottom:394.746667pt;}
.y15d_c01282{bottom:404.733333pt;}
.y15a_c01282{bottom:407.040000pt;}
.y158_c01282{bottom:407.813333pt;}
.y159_c01282{bottom:409.346667pt;}
.y15f_c01282{bottom:410.880000pt;}
.y15b_c01282{bottom:411.653333pt;}
.y157_c01282{bottom:412.413333pt;}
.y156_c01282{bottom:413.186667pt;}
.y15c_c01282{bottom:414.720000pt;}
.y160_c01282{bottom:418.560000pt;}
.y15e_c01282{bottom:420.866667pt;}
.y154_c01282{bottom:423.173333pt;}
.y155_c01282{bottom:423.933333pt;}
.y152_c01282{bottom:425.466667pt;}
.y151_c01282{bottom:426.240000pt;}
.y153_c01282{bottom:428.546667pt;}
.y14f_c01282{bottom:430.853333pt;}
.y150_c01282{bottom:431.613333pt;}
.y14d_c01282{bottom:442.373333pt;}
.y14e_c01282{bottom:443.133333pt;}
.y14b_c01282{bottom:443.906667pt;}
.y148_c01282{bottom:444.666667pt;}
.y149_c01282{bottom:446.213333pt;}
.y14a_c01282{bottom:449.280000pt;}
.y147_c01282{bottom:450.053333pt;}
.y14c_c01282{bottom:451.586667pt;}
.y145_c01282{bottom:460.026667pt;}
.y13f_c01282{bottom:461.573333pt;}
.y144_c01282{bottom:463.106667pt;}
.y141_c01282{bottom:463.866667pt;}
.y146_c01282{bottom:464.640000pt;}
.y142_c01282{bottom:466.173333pt;}
.y140_c01282{bottom:466.946667pt;}
.y143_c01282{bottom:475.386667pt;}
.y137_c01282{bottom:480.000000pt;}
.y13c_c01282{bottom:481.533333pt;}
.y13d_c01282{bottom:482.306667pt;}
.y13e_c01282{bottom:483.066667pt;}
.y13b_c01282{bottom:483.840000pt;}
.y139_c01282{bottom:484.613333pt;}
.y138_c01282{bottom:485.373333pt;}
.y13a_c01282{bottom:486.146667pt;}
.y136_c01282{bottom:496.133333pt;}
.y135_c01282{bottom:496.893333pt;}
.y131_c01282{bottom:497.666667pt;}
.y12f_c01282{bottom:498.426667pt;}
.y132_c01282{bottom:499.973333pt;}
.y134_c01282{bottom:501.506667pt;}
.y130_c01282{bottom:502.266667pt;}
.y133_c01282{bottom:503.040000pt;}
.y12e_c01282{bottom:508.413333pt;}
.y12d_c01282{bottom:513.786667pt;}
.y12a_c01282{bottom:516.093333pt;}
.y12b_c01282{bottom:516.866667pt;}
.y129_c01282{bottom:517.626667pt;}
.y12c_c01282{bottom:520.706667pt;}
.y127_c01282{bottom:531.453333pt;}
.y126_c01282{bottom:532.986667pt;}
.y124_c01282{bottom:533.760000pt;}
.y128_c01282{bottom:534.533333pt;}
.y125_c01282{bottom:535.293333pt;}
.y123_c01282{bottom:539.133333pt;}
.y122_c01282{bottom:539.906667pt;}
.y121_c01282{bottom:549.120000pt;}
.y120_c01282{bottom:551.426667pt;}
.y119_c01282{bottom:552.960000pt;}
.y11c_c01282{bottom:553.733333pt;}
.y11d_c01282{bottom:555.266667pt;}
.y11e_c01282{bottom:556.800000pt;}
.y11f_c01282{bottom:557.573333pt;}
.y118_c01282{bottom:558.333333pt;}
.y11a_c01282{bottom:559.106667pt;}
.y11b_c01282{bottom:562.173333pt;}
.y116_c01282{bottom:569.093333pt;}
.y113_c01282{bottom:569.853333pt;}
.y111_c01282{bottom:570.626667pt;}
.y115_c01282{bottom:572.160000pt;}
.y117_c01282{bottom:573.693333pt;}
.y114_c01282{bottom:574.466667pt;}
.y112_c01282{bottom:575.226667pt;}
.y110_c01282{bottom:581.373333pt;}
.y10f_c01282{bottom:585.213333pt;}
.y10c_c01282{bottom:588.293333pt;}
.y10d_c01282{bottom:589.826667pt;}
.y10e_c01282{bottom:590.586667pt;}
.y10a_c01282{bottom:591.360000pt;}
.y10b_c01282{bottom:592.133333pt;}
.y109_c01282{bottom:602.880000pt;}
.y107_c01282{bottom:603.653333pt;}
.y105_c01282{bottom:604.413333pt;}
.y101_c01282{bottom:605.186667pt;}
.y100_c01282{bottom:606.720000pt;}
.y108_c01282{bottom:607.493333pt;}
.y106_c01282{bottom:608.253333pt;}
.y102_c01282{bottom:609.026667pt;}
.y103_c01282{bottom:609.786667pt;}
.y104_c01282{bottom:610.560000pt;}
.yfe_c01282{bottom:615.173333pt;}
.yfd_c01282{bottom:615.933333pt;}
.yfc_c01282{bottom:616.706667pt;}
.yf9_c01282{bottom:617.466667pt;}
.yf8_c01282{bottom:620.546667pt;}
.yfb_c01282{bottom:626.693333pt;}
.yfa_c01282{bottom:628.226667pt;}
.yff_c01282{bottom:633.600000pt;}
.yf5_c01282{bottom:637.440000pt;}
.yf6_c01282{bottom:638.213333pt;}
.yf7_c01282{bottom:638.973333pt;}
.yf0_c01282{bottom:641.280000pt;}
.yf4_c01282{bottom:642.053333pt;}
.yf2_c01282{bottom:642.813333pt;}
.yee_c01282{bottom:643.586667pt;}
.yef_c01282{bottom:644.346667pt;}
.yf3_c01282{bottom:645.120000pt;}
.yf1_c01282{bottom:645.893333pt;}
.yec_c01282{bottom:656.640000pt;}
.yea_c01282{bottom:657.413333pt;}
.ye9_c01282{bottom:658.946667pt;}
.ye7_c01282{bottom:659.706667pt;}
.ye6_c01282{bottom:660.480000pt;}
.ye5_c01282{bottom:661.253333pt;}
.yed_c01282{bottom:662.013333pt;}
.yeb_c01282{bottom:662.786667pt;}
.ye4_c01282{bottom:663.546667pt;}
.ye8_c01282{bottom:664.320000pt;}
.ye3_c01282{bottom:673.533333pt;}
.ye2_c01282{bottom:676.613333pt;}
.ye0_c01282{bottom:677.373333pt;}
.ye1_c01282{bottom:678.146667pt;}
.ydf_c01282{bottom:681.986667pt;}
.yde_c01282{bottom:693.506667pt;}
.yd8_c01282{bottom:694.266667pt;}
.ydd_c01282{bottom:695.040000pt;}
.yd7_c01282{bottom:695.813333pt;}
.ydc_c01282{bottom:697.346667pt;}
.ydb_c01282{bottom:698.106667pt;}
.yd9_c01282{bottom:698.880000pt;}
.yd6_c01282{bottom:699.653333pt;}
.yda_c01282{bottom:700.413333pt;}
.yd4_c01282{bottom:710.400000pt;}
.yd2_c01282{bottom:711.933333pt;}
.yd5_c01282{bottom:714.240000pt;}
.yce_c01282{bottom:715.013333pt;}
.yd3_c01282{bottom:715.773333pt;}
.ycf_c01282{bottom:716.546667pt;}
.ycd_c01282{bottom:718.080000pt;}
.yd0_c01282{bottom:724.226667pt;}
.yd1_c01282{bottom:726.533333pt;}
.ycb_c01282{bottom:727.293333pt;}
.yca_c01282{bottom:728.826667pt;}
.ycc_c01282{bottom:729.600000pt;}
.yc4_c01282{bottom:730.373333pt;}
.yc5_c01282{bottom:731.133333pt;}
.yc6_c01282{bottom:732.666667pt;}
.yc9_c01282{bottom:733.440000pt;}
.yc8_c01282{bottom:734.213333pt;}
.yc7_c01282{bottom:735.746667pt;}
.yc2_c01282{bottom:745.733333pt;}
.ybf_c01282{bottom:746.493333pt;}
.yc1_c01282{bottom:747.266667pt;}
.yc0_c01282{bottom:748.026667pt;}
.ybd_c01282{bottom:748.800000pt;}
.yc3_c01282{bottom:751.106667pt;}
.ybe_c01282{bottom:753.413333pt;}
.ybc_c01282{bottom:761.853333pt;}
.ybb_c01282{bottom:763.386667pt;}
.yba_c01282{bottom:764.160000pt;}
.yb7_c01282{bottom:766.466667pt;}
.yb6_c01282{bottom:767.226667pt;}
.yb8_c01282{bottom:770.306667pt;}
.yb9_c01282{bottom:771.066667pt;}
.yb5_c01282{bottom:771.840000pt;}
.yb3_c01282{bottom:782.586667pt;}
.yb2_c01282{bottom:784.133333pt;}
.yb0_c01282{bottom:784.893333pt;}
.yb1_c01282{bottom:785.666667pt;}
.yb4_c01282{bottom:787.200000pt;}
.yae_c01282{bottom:787.973333pt;}
.yaf_c01282{bottom:789.506667pt;}
.yac_c01282{bottom:801.026667pt;}
.ya5_c01282{bottom:801.786667pt;}
.ya7_c01282{bottom:803.333333pt;}
.yab_c01282{bottom:804.866667pt;}
.yad_c01282{bottom:805.626667pt;}
.ya8_c01282{bottom:806.400000pt;}
.ya6_c01282{bottom:807.173333pt;}
.yaa_c01282{bottom:807.933333pt;}
.ya9_c01282{bottom:811.773333pt;}
.y9f_c01282{bottom:820.226667pt;}
.ya2_c01282{bottom:820.986667pt;}
.ya4_c01282{bottom:822.533333pt;}
.ya3_c01282{bottom:823.293333pt;}
.ya1_c01282{bottom:824.826667pt;}
.ya0_c01282{bottom:825.600000pt;}
.y9e_c01282{bottom:835.586667pt;}
.y9d_c01282{bottom:836.346667pt;}
.y9b_c01282{bottom:837.893333pt;}
.y97_c01282{bottom:840.186667pt;}
.y98_c01282{bottom:840.960000pt;}
.y9c_c01282{bottom:841.733333pt;}
.y9a_c01282{bottom:842.493333pt;}
.y99_c01282{bottom:843.266667pt;}
.y96_c01282{bottom:854.013333pt;}
.y92_c01282{bottom:856.320000pt;}
.y90_c01282{bottom:857.853333pt;}
.y95_c01282{bottom:858.626667pt;}
.y91_c01282{bottom:859.386667pt;}
.y93_c01282{bottom:860.160000pt;}
.y94_c01282{bottom:860.933333pt;}
.y8f_c01282{bottom:871.680000pt;}
.y8c_c01282{bottom:872.453333pt;}
.y8a_c01282{bottom:873.213333pt;}
.y8b_c01282{bottom:873.986667pt;}
.y8e_c01282{bottom:877.053333pt;}
.y8d_c01282{bottom:877.826667pt;}
.y89_c01282{bottom:879.360000pt;}
.y87_c01282{bottom:889.346667pt;}
.y86_c01282{bottom:890.880000pt;}
.y82_c01282{bottom:891.653333pt;}
.y83_c01282{bottom:892.413333pt;}
.y88_c01282{bottom:893.946667pt;}
.y85_c01282{bottom:894.720000pt;}
.y84_c01282{bottom:895.493333pt;}
.y81_c01282{bottom:907.773333pt;}
.y7c_c01282{bottom:909.306667pt;}
.y7b_c01282{bottom:910.080000pt;}
.y7e_c01282{bottom:910.853333pt;}
.y7f_c01282{bottom:911.613333pt;}
.y80_c01282{bottom:912.386667pt;}
.y79_c01282{bottom:913.146667pt;}
.y7d_c01282{bottom:913.920000pt;}
.y7a_c01282{bottom:914.693333pt;}
.y72_c01282{bottom:925.440000pt;}
.y77_c01282{bottom:926.213333pt;}
.y74_c01282{bottom:926.973333pt;}
.y75_c01282{bottom:927.746667pt;}
.y78_c01282{bottom:930.813333pt;}
.y76_c01282{bottom:931.586667pt;}
.y71_c01282{bottom:932.346667pt;}
.y73_c01282{bottom:933.120000pt;}
.y6d_c01282{bottom:943.866667pt;}
.y70_c01282{bottom:944.640000pt;}
.y6e_c01282{bottom:945.413333pt;}
.y6b_c01282{bottom:948.480000pt;}
.y6f_c01282{bottom:949.253333pt;}
.y6c_c01282{bottom:950.013333pt;}
.y6a_c01282{bottom:950.786667pt;}
.y69_c01282{bottom:960.773333pt;}
.y68_c01282{bottom:962.306667pt;}
.y65_c01282{bottom:963.066667pt;}
.y63_c01282{bottom:963.840000pt;}
.y62_c01282{bottom:964.613333pt;}
.y67_c01282{bottom:965.373333pt;}
.y66_c01282{bottom:966.146667pt;}
.y64_c01282{bottom:967.680000pt;}
.y61_c01282{bottom:968.453333pt;}
.y1e9_c01282{bottom:976.133333pt;}
.y60_c01282{bottom:977.666667pt;}
.y5f_c01282{bottom:979.200000pt;}
.y5e_c01282{bottom:979.973333pt;}
.y5b_c01282{bottom:980.733333pt;}
.y5a_c01282{bottom:981.506667pt;}
.y59_c01282{bottom:983.040000pt;}
.y5d_c01282{bottom:985.346667pt;}
.y5c_c01282{bottom:993.026667pt;}
.y56_c01282{bottom:997.626667pt;}
.y55_c01282{bottom:999.173333pt;}
.y52_c01282{bottom:999.933333pt;}
.y50_c01282{bottom:1000.706667pt;}
.y54_c01282{bottom:1001.466667pt;}
.y58_c01282{bottom:1002.240000pt;}
.y57_c01282{bottom:1003.013333pt;}
.y4f_c01282{bottom:1003.773333pt;}
.y53_c01282{bottom:1004.546667pt;}
.y51_c01282{bottom:1005.306667pt;}
.y4d_c01282{bottom:1015.293333pt;}
.y4c_c01282{bottom:1017.600000pt;}
.y4a_c01282{bottom:1018.373333pt;}
.y49_c01282{bottom:1019.133333pt;}
.y4e_c01282{bottom:1020.666667pt;}
.y4b_c01282{bottom:1022.213333pt;}
.y48_c01282{bottom:1032.960000pt;}
.y43_c01282{bottom:1034.493333pt;}
.y44_c01282{bottom:1036.026667pt;}
.y42_c01282{bottom:1037.573333pt;}
.y45_c01282{bottom:1038.333333pt;}
.y46_c01282{bottom:1039.106667pt;}
.y47_c01282{bottom:1039.866667pt;}
.y41_c01282{bottom:1041.413333pt;}
.y40_c01282{bottom:1051.386667pt;}
.y3d_c01282{bottom:1052.933333pt;}
.y3f_c01282{bottom:1053.693333pt;}
.y3c_c01282{bottom:1054.466667pt;}
.y3e_c01282{bottom:1057.533333pt;}
.y1ea_c01282{bottom:1060.613333pt;}
.y3b_c01282{bottom:1067.520000pt;}
.y37_c01282{bottom:1069.826667pt;}
.y36_c01282{bottom:1070.586667pt;}
.y39_c01282{bottom:1071.360000pt;}
.y34_c01282{bottom:1072.133333pt;}
.y32_c01282{bottom:1073.666667pt;}
.y38_c01282{bottom:1074.426667pt;}
.y35_c01282{bottom:1075.973333pt;}
.y33_c01282{bottom:1076.733333pt;}
.y3a_c01282{bottom:1077.506667pt;}
.y31_c01282{bottom:1086.720000pt;}
.y30_c01282{bottom:1088.253333pt;}
.y29_c01282{bottom:1089.026667pt;}
.y2a_c01282{bottom:1090.560000pt;}
.y28_c01282{bottom:1091.333333pt;}
.y2f_c01282{bottom:1092.093333pt;}
.y2e_c01282{bottom:1095.933333pt;}
.y2b_c01282{bottom:1096.706667pt;}
.y2c_c01282{bottom:1099.773333pt;}
.y2d_c01282{bottom:1100.546667pt;}
.y26_c01282{bottom:1105.146667pt;}
.y27_c01282{bottom:1105.920000pt;}
.y22_c01282{bottom:1106.693333pt;}
.y20_c01282{bottom:1107.453333pt;}
.y1f_c01282{bottom:1108.226667pt;}
.y25_c01282{bottom:1109.760000pt;}
.y24_c01282{bottom:1110.533333pt;}
.y21_c01282{bottom:1112.066667pt;}
.y23_c01282{bottom:1113.600000pt;}
.y1e2_c01282{bottom:1119.746667pt;}
.y1d_c01282{bottom:1124.346667pt;}
.y19_c01282{bottom:1125.120000pt;}
.y1e_c01282{bottom:1125.893333pt;}
.y1a_c01282{bottom:1126.653333pt;}
.y1c_c01282{bottom:1128.186667pt;}
.y1b_c01282{bottom:1129.733333pt;}
.y18_c01282{bottom:1130.493333pt;}
.y16_c01282{bottom:1141.253333pt;}
.y14_c01282{bottom:1142.013333pt;}
.y13_c01282{bottom:1143.546667pt;}
.y10_c01282{bottom:1145.093333pt;}
.y17_c01282{bottom:1145.853333pt;}
.y12_c01282{bottom:1146.626667pt;}
.y11_c01282{bottom:1147.386667pt;}
.yf_c01282{bottom:1148.160000pt;}
.y15_c01282{bottom:1153.533333pt;}
.ye_c01282{bottom:1158.906667pt;}
.yb_c01282{bottom:1161.213333pt;}
.yd_c01282{bottom:1163.520000pt;}
.ya_c01282{bottom:1164.293333pt;}
.yc_c01282{bottom:1165.053333pt;}
.y9_c01282{bottom:1166.586667pt;}
.y8_c01282{bottom:1167.360000pt;}
.y7_c01282{bottom:1179.653333pt;}
.y5_c01282{bottom:1182.720000pt;}
.y3_c01282{bottom:1185.026667pt;}
.y1_c01282{bottom:1185.786667pt;}
.y6_c01282{bottom:1188.093333pt;}
.y4_c01282{bottom:1188.866667pt;}
.y2_c01282{bottom:1191.173333pt;}
.y1e6_c01282{bottom:1238.786667pt;}
.y1e7_c01282{bottom:1251.066667pt;}
.y1e8_c01282{bottom:1254.146667pt;}
.h13_c01282{height:2.764500pt;}
.h1c_c01282{height:4.799479pt;}
.h9_c01282{height:5.519401pt;}
.h15_c01282{height:8.303099pt;}
.h3_c01282{height:11.038802pt;}
.h1a_c01282{height:13.822500pt;}
.h14_c01282{height:16.606198pt;}
.h4_c01282{height:19.341901pt;}
.h16_c01282{height:22.125599pt;}
.h18_c01282{height:24.861302pt;}
.h17_c01282{height:27.645000pt;}
.ha_c01282{height:30.428698pt;}
.h1d_c01282{height:33.164401pt;}
.hd_c01282{height:35.948099pt;}
.h1b_c01282{height:38.683802pt;}
.h11_c01282{height:41.467500pt;}
.h10_c01282{height:44.251198pt;}
.h2_c01282{height:46.986901pt;}
.h20_c01282{height:47.291198pt;}
.hb_c01282{height:49.770599pt;}
.h8_c01282{height:52.506302pt;}
.h6_c01282{height:55.290000pt;}
.hc_c01282{height:58.073698pt;}
.he_c01282{height:60.809401pt;}
.h12_c01282{height:63.593099pt;}
.h19_c01282{height:66.328802pt;}
.hf_c01282{height:69.112500pt;}
.h1e_c01282{height:71.896198pt;}
.h7_c01282{height:74.631901pt;}
.h5_c01282{height:77.415599pt;}
.h1f_c01282{height:82.935000pt;}
.h1_c01282{height:1350.000000pt;}
.h0_c01282{height:1350.146667pt;}
.w0_c01282{width:964.613333pt;}
.w1_c01282{width:964.666667pt;}
.x0_c01282{left:0.000000pt;}
.x120_c01282{left:4.613333pt;}
.x122_c01282{left:6.906667pt;}
.x121_c01282{left:16.893333pt;}
.xfb_c01282{left:73.733333pt;}
.x103_c01282{left:119.040000pt;}
.x106_c01282{left:125.186667pt;}
.x11e_c01282{left:129.786667pt;}
.x11f_c01282{left:132.093333pt;}
.xfc_c01282{left:145.146667pt;}
.x10a_c01282{left:148.986667pt;}
.x104_c01282{left:153.600000pt;}
.xfd_c01282{left:161.280000pt;}
.x112_c01282{left:162.813333pt;}
.x47_c01282{left:165.893333pt;}
.x116_c01282{left:168.186667pt;}
.x10c_c01282{left:175.866667pt;}
.x10b_c01282{left:178.173333pt;}
.xfe_c01282{left:183.546667pt;}
.x107_c01282{left:188.160000pt;}
.x3d_c01282{left:192.000000pt;}
.x4d_c01282{left:195.840000pt;}
.xf8_c01282{left:197.373333pt;}
.xe8_c01282{left:198.906667pt;}
.x6e_c01282{left:201.213333pt;}
.xa_c01282{left:202.746667pt;}
.x5c_c01282{left:204.293333pt;}
.x7e_c01282{left:205.826667pt;}
.x69_c01282{left:208.133333pt;}
.x4e_c01282{left:209.666667pt;}
.x12_c01282{left:211.973333pt;}
.x1e_c01282{left:213.506667pt;}
.x1_c01282{left:215.040000pt;}
.xdc_c01282{left:217.346667pt;}
.xbf_c01282{left:220.413333pt;}
.x34_c01282{left:222.720000pt;}
.x6a_c01282{left:225.026667pt;}
.x95_c01282{left:229.626667pt;}
.xff_c01282{left:231.173333pt;}
.x2_c01282{left:232.706667pt;}
.x8f_c01282{left:235.773333pt;}
.x3e_c01282{left:237.306667pt;}
.xe0_c01282{left:239.613333pt;}
.x6f_c01282{left:241.146667pt;}
.x35_c01282{left:244.986667pt;}
.x7f_c01282{left:247.293333pt;}
.xaa_c01282{left:248.826667pt;}
.x3_c01282{left:250.373333pt;}
.xe1_c01282{left:251.906667pt;}
.xd4_c01282{left:253.440000pt;}
.x5d_c01282{left:257.280000pt;}
.x1f_c01282{left:258.813333pt;}
.x96_c01282{left:261.120000pt;}
.xef_c01282{left:264.960000pt;}
.xb_c01282{left:268.800000pt;}
.x4f_c01282{left:271.106667pt;}
.x2a_c01282{left:273.413333pt;}
.x77_c01282{left:276.480000pt;}
.x85_c01282{left:279.546667pt;}
.xb2_c01282{left:281.093333pt;}
.x57_c01282{left:284.160000pt;}
.x3f_c01282{left:285.693333pt;}
.x20_c01282{left:288.000000pt;}
.x48_c01282{left:291.066667pt;}
.xf3_c01282{left:294.146667pt;}
.x70_c01282{left:295.680000pt;}
.xab_c01282{left:297.213333pt;}
.x13_c01282{left:301.053333pt;}
.x78_c01282{left:304.893333pt;}
.xe6_c01282{left:308.733333pt;}
.xc5_c01282{left:311.040000pt;}
.x21_c01282{left:312.573333pt;}
.xf9_c01282{left:314.106667pt;}
.xf0_c01282{left:315.653333pt;}
.x4_c01282{left:317.186667pt;}
.xb3_c01282{left:319.493333pt;}
.xe5_c01282{left:321.026667pt;}
.xac_c01282{left:323.333333pt;}
.x11a_c01282{left:324.866667pt;}
.xdd_c01282{left:326.400000pt;}
.x50_c01282{left:327.933333pt;}
.x14_c01282{left:331.013333pt;}
.xa1_c01282{left:332.546667pt;}
.x92_c01282{left:334.853333pt;}
.xec_c01282{left:336.386667pt;}
.x8b_c01282{left:338.693333pt;}
.x36_c01282{left:342.533333pt;}
.x108_c01282{left:344.066667pt;}
.xba_c01282{left:345.600000pt;}
.x5e_c01282{left:347.133333pt;}
.x49_c01282{left:348.666667pt;}
.x79_c01282{left:350.973333pt;}
.x10d_c01282{left:354.053333pt;}
.x86_c01282{left:355.586667pt;}
.x2b_c01282{left:357.120000pt;}
.x80_c01282{left:358.653333pt;}
.x9b_c01282{left:360.186667pt;}
.x22_c01282{left:362.493333pt;}
.xda_c01282{left:364.026667pt;}
.xa2_c01282{left:367.106667pt;}
.x71_c01282{left:368.640000pt;}
.xd1_c01282{left:371.706667pt;}
.xe7_c01282{left:373.253333pt;}
.xf1_c01282{left:375.546667pt;}
.xe9_c01282{left:377.093333pt;}
.xc0_c01282{left:378.626667pt;}
.xc_c01282{left:380.160000pt;}
.x93_c01282{left:381.693333pt;}
.x109_c01282{left:384.773333pt;}
.x117_c01282{left:387.066667pt;}
.x10e_c01282{left:388.613333pt;}
.x15_c01282{left:390.146667pt;}
.x58_c01282{left:392.453333pt;}
.x2c_c01282{left:396.293333pt;}
.x5f_c01282{left:398.586667pt;}
.x87_c01282{left:400.133333pt;}
.x23_c01282{left:401.666667pt;}
.x7a_c01282{left:403.200000pt;}
.xad_c01282{left:404.733333pt;}
.x51_c01282{left:407.040000pt;}
.xae_c01282{left:410.880000pt;}
.x72_c01282{left:412.413333pt;}
.x97_c01282{left:413.946667pt;}
.x94_c01282{left:416.253333pt;}
.xd5_c01282{left:419.333333pt;}
.xd_c01282{left:421.626667pt;}
.xe2_c01282{left:423.933333pt;}
.xbb_c01282{left:427.013333pt;}
.x10f_c01282{left:430.080000pt;}
.x9c_c01282{left:431.613333pt;}
.x37_c01282{left:433.920000pt;}
.xde_c01282{left:435.453333pt;}
.xed_c01282{left:437.760000pt;}
.x40_c01282{left:440.826667pt;}
.x4a_c01282{left:443.133333pt;}
.x5_c01282{left:444.666667pt;}
.x8c_c01282{left:446.213333pt;}
.x60_c01282{left:447.746667pt;}
.xc9_c01282{left:450.053333pt;}
.x9d_c01282{left:451.586667pt;}
.x6b_c01282{left:456.186667pt;}
.x81_c01282{left:458.493333pt;}
.xd6_c01282{left:460.026667pt;}
.x16_c01282{left:463.106667pt;}
.x2d_c01282{left:464.640000pt;}
.xe3_c01282{left:466.173333pt;}
.xe_c01282{left:468.480000pt;}
.xdf_c01282{left:471.546667pt;}
.x2e_c01282{left:476.160000pt;}
.xf4_c01282{left:477.693333pt;}
.x6_c01282{left:480.773333pt;}
.x113_c01282{left:482.306667pt;}
.xd2_c01282{left:483.840000pt;}
.x90_c01282{left:486.146667pt;}
.xf_c01282{left:488.453333pt;}
.x119_c01282{left:490.746667pt;}
.xb4_c01282{left:492.293333pt;}
.xa3_c01282{left:494.587133pt;}
.x100_c01282{left:496.133333pt;}
.x38_c01282{left:497.666667pt;}
.xa4_c01282{left:499.200000pt;}
.xc1_c01282{left:500.733333pt;}
.x41_c01282{left:502.266667pt;}
.x59_c01282{left:503.813333pt;}
.x17_c01282{left:506.106667pt;}
.xc6_c01282{left:513.026667pt;}
.x10_c01282{left:518.400000pt;}
.xc7_c01282{left:521.466667pt;}
.x24_c01282{left:523.773333pt;}
.xaf_c01282{left:526.853333pt;}
.x61_c01282{left:528.386667pt;}
.xd3_c01282{left:530.693333pt;}
.x110_c01282{left:532.226667pt;}
.x98_c01282{left:534.533333pt;}
.x73_c01282{left:536.066667pt;}
.xca_c01282{left:537.600000pt;}
.x18_c01282{left:539.133333pt;}
.x62_c01282{left:540.666667pt;}
.x82_c01282{left:542.213333pt;}
.xcb_c01282{left:543.746667pt;}
.xea_c01282{left:545.280000pt;}
.x52_c01282{left:547.586667pt;}
.x88_c01282{left:549.893333pt;}
.x2f_c01282{left:551.426667pt;}
.x6c_c01282{left:553.733333pt;}
.x7b_c01282{left:556.026667pt;}
.x39_c01282{left:559.106667pt;}
.x8d_c01282{left:560.640000pt;}
.x11c_c01282{left:565.253333pt;}
.x25_c01282{left:566.786667pt;}
.xee_c01282{left:568.320000pt;}
.x63_c01282{left:570.626667pt;}
.xe4_c01282{left:574.466667pt;}
.x74_c01282{left:576.000000pt;}
.xc8_c01282{left:577.533333pt;}
.x26_c01282{left:579.066667pt;}
.xcc_c01282{left:580.613333pt;}
.x30_c01282{left:582.146667pt;}
.x11d_c01282{left:585.213333pt;}
.x42_c01282{left:587.520000pt;}
.x99_c01282{left:589.053333pt;}
.x7_c01282{left:591.360000pt;}
.x53_c01282{left:593.666667pt;}
.xc2_c01282{left:595.200000pt;}
.xb5_c01282{left:596.733333pt;}
.x5a_c01282{left:598.266667pt;}
.x91_c01282{left:600.573333pt;}
.xb6_c01282{left:602.106667pt;}
.xa5_c01282{left:604.413333pt;}
.x19_c01282{left:605.946667pt;}
.x118_c01282{left:608.253333pt;}
.xcd_c01282{left:609.786667pt;}
.x54_c01282{left:612.093333pt;}
.xb0_c01282{left:614.400000pt;}
.x43_c01282{left:617.466667pt;}
.x11_c01282{left:619.013333pt;}
.xf5_c01282{left:621.306667pt;}
.x4b_c01282{left:622.853333pt;}
.x8_c01282{left:624.386667pt;}
.x101_c01282{left:628.226667pt;}
.x3a_c01282{left:632.826667pt;}
.xa6_c01282{left:635.906667pt;}
.x75_c01282{left:638.213333pt;}
.x27_c01282{left:639.746667pt;}
.x114_c01282{left:641.280000pt;}
.xbc_c01282{left:642.813333pt;}
.x9_c01282{left:645.893333pt;}
.xf2_c01282{left:648.960000pt;}
.xf7_c01282{left:652.800000pt;}
.xb1_c01282{left:655.866667pt;}
.x9a_c01282{left:658.173333pt;}
.x44_c01282{left:659.706667pt;}
.x64_c01282{left:661.253333pt;}
.x31_c01282{left:664.320000pt;}
.xa7_c01282{left:665.853333pt;}
.x7c_c01282{left:668.160000pt;}
.x9e_c01282{left:669.693333pt;}
.x65_c01282{left:671.226667pt;}
.xb7_c01282{left:672.773333pt;}
.xbd_c01282{left:675.066667pt;}
.x11b_c01282{left:677.373333pt;}
.x8e_c01282{left:678.906667pt;}
.xb8_c01282{left:681.213333pt;}
.x9f_c01282{left:684.293333pt;}
.xdb_c01282{left:685.826667pt;}
.x1a_c01282{left:687.360000pt;}
.x66_c01282{left:689.666667pt;}
.x83_c01282{left:691.973333pt;}
.xf6_c01282{left:694.266667pt;}
.x3b_c01282{left:695.813333pt;}
.x67_c01282{left:697.346667pt;}
.xa0_c01282{left:701.946667pt;}
.x89_c01282{left:703.493333pt;}
.x115_c01282{left:705.026667pt;}
.xc3_c01282{left:707.333333pt;}
.x76_c01282{left:709.626667pt;}
.x8a_c01282{left:712.706667pt;}
.xc4_c01282{left:714.240000pt;}
.x4c_c01282{left:718.080000pt;}
.x1b_c01282{left:721.920000pt;}
.x55_c01282{left:724.226667pt;}
.xcf_c01282{left:725.760000pt;}
.x102_c01282{left:727.293333pt;}
.x32_c01282{left:729.600000pt;}
.xce_c01282{left:731.906667pt;}
.xb9_c01282{left:734.213333pt;}
.x56_c01282{left:735.746667pt;}
.x33_c01282{left:737.280000pt;}
.x1c_c01282{left:739.586667pt;}
.x5b_c01282{left:741.893333pt;}
.x7d_c01282{left:744.186667pt;}
.xd7_c01282{left:746.493333pt;}
.x6d_c01282{left:749.573333pt;}
.xfa_c01282{left:751.866667pt;}
.xeb_c01282{left:753.413333pt;}
.x84_c01282{left:754.946667pt;}
.x1d_c01282{left:757.253333pt;}
.x28_c01282{left:758.786667pt;}
.x3c_c01282{left:761.093333pt;}
.x105_c01282{left:762.626667pt;}
.xd0_c01282{left:765.693333pt;}
.xbe_c01282{left:767.226667pt;}
.xa8_c01282{left:768.773333pt;}
.x111_c01282{left:770.306667pt;}
.x29_c01282{left:771.840000pt;}
.xa9_c01282{left:774.146667pt;}
.xd8_c01282{left:776.453333pt;}
.x45_c01282{left:779.520000pt;}
.x46_c01282{left:787.200000pt;}
.xd9_c01282{left:798.720000pt;}
.x68_c01282{left:804.093333pt;}
.x123_c01282{left:811.013333pt;}
.x126_c01282{left:850.173333pt;}
.x127_c01282{left:923.906667pt;}
.x128_c01282{left:936.186667pt;}
.x124_c01282{left:947.706667pt;}
.x125_c01282{left:960.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01283;src:url('chunks/assets/font_d3aa7512bbf331c0bf27f122.woff2')format("woff");}.ff1_c01283{font-family:ff1_c01283;line-height:1.109863;font-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_c01283{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m147_c01283{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m155_c01283{transform:matrix(0.098675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098675,0.000000,0.000000,0.250000,0,0);}
.m16f_c01283{transform:matrix(0.101450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101450,0.000000,0.000000,0.250000,0,0);}
.m115_c01283{transform:matrix(0.103150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103150,0.000000,0.000000,0.250000,0,0);}
.m160_c01283{transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);}
.m17b_c01283{transform:matrix(0.104400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104400,0.000000,0.000000,0.250000,0,0);}
.m170_c01283{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.mf3_c01283{transform:matrix(0.108350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108350,0.000000,0.000000,0.250000,0,0);}
.maf_c01283{transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108400,0.000000,0.000000,0.250000,0,0);}
.m17a_c01283{transform:matrix(0.109250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109250,0.000000,0.000000,0.250000,0,0);}
.m14c_c01283{transform:matrix(0.109275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109275,0.000000,0.000000,0.250000,0,0);}
.m129_c01283{transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);}
.m184_c01283{transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111000,0.000000,0.000000,0.250000,0,0);}
.m156_c01283{transform:matrix(0.113300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113300,0.000000,0.000000,0.250000,0,0);}
.m63_c01283{transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);}
.m132_c01283{transform:matrix(0.114225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114225,0.000000,0.000000,0.250000,0,0);}
.m148_c01283{transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);}
.m17c_c01283{transform:matrix(0.115600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115600,0.000000,0.000000,0.250000,0,0);}
.m149_c01283{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.m125_c01283{transform:matrix(0.119300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119300,0.000000,0.000000,0.250000,0,0);}
.m11e_c01283{transform:matrix(0.119800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119800,0.000000,0.000000,0.250000,0,0);}
.m17e_c01283{transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120075,0.000000,0.000000,0.250000,0,0);}
.m3b_c01283{transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);}
.m18b_c01283{transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);}
.m159_c01283{transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);}
.m13e_c01283{transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);}
.m16e_c01283{transform:matrix(0.122050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122050,0.000000,0.000000,0.250000,0,0);}
.mb7_c01283{transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123400,0.000000,0.000000,0.250000,0,0);}
.me2_c01283{transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);}
.m89_c01283{transform:matrix(0.125325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125325,0.000000,0.000000,0.250000,0,0);}
.m8c_c01283{transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);}
.m114_c01283{transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);}
.med_c01283{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);}
.m15f_c01283{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);}
.m93_c01283{transform:matrix(0.127700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127700,0.000000,0.000000,0.250000,0,0);}
.m185_c01283{transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);}
.m12f_c01283{transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);}
.m127_c01283{transform:matrix(0.129100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129100,0.000000,0.000000,0.250000,0,0);}
.ma7_c01283{transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);}
.meb_c01283{transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);}
.ma1_c01283{transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);}
.m152_c01283{transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);}
.m119_c01283{transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);}
.m12b_c01283{transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);}
.m168_c01283{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);}
.m8d_c01283{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);}
.m1a0_c01283{transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);}
.m87_c01283{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m3d_c01283{transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);}
.m13a_c01283{transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);}
.mb0_c01283{transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);}
.m166_c01283{transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);}
.mc5_c01283{transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);}
.m17f_c01283{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m188_c01283{transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);}
.m84_c01283{transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);}
.m14a_c01283{transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);}
.mc8_c01283{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m18d_c01283{transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);}
.md7_c01283{transform:matrix(0.142725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142725,0.000000,0.000000,0.250000,0,0);}
.m180_c01283{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.me0_c01283{transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143275,0.000000,0.000000,0.250000,0,0);}
.mf4_c01283{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m136_c01283{transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);}
.m14_c01283{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mfe_c01283{transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);}
.mf2_c01283{transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);}
.m104_c01283{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.mae_c01283{transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01283{transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);}
.m108_c01283{transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);}
.m9e_c01283{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.m162_c01283{transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);}
.m126_c01283{transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);}
.m176_c01283{transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);}
.m83_c01283{transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);}
.m11a_c01283{transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);}
.m17d_c01283{transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);}
.mf5_c01283{transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);}
.m174_c01283{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.m186_c01283{transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);}
.mc2_c01283{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.m191_c01283{transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);}
.m163_c01283{transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);}
.m105_c01283{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);}
.m85_c01283{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);}
.me4_c01283{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.m13d_c01283{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);}
.mad_c01283{transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);}
.m42_c01283{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m189_c01283{transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);}
.m11d_c01283{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.m10c_c01283{transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);}
.m128_c01283{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m106_c01283{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.m117_c01283{transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);}
.me6_c01283{transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);}
.m11b_c01283{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m13c_c01283{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);}
.m134_c01283{transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);}
.m16d_c01283{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);}
.mb3_c01283{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mcf_c01283{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.mf8_c01283{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.m133_c01283{transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);}
.m146_c01283{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.me7_c01283{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m10d_c01283{transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);}
.mec_c01283{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.mda_c01283{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);}
.mf6_c01283{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m153_c01283{transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);}
.mfc_c01283{transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165800,0.000000,0.000000,0.250000,0,0);}
.m193_c01283{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.m124_c01283{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.m12a_c01283{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m14b_c01283{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);}
.m113_c01283{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.m81_c01283{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);}
.m16c_c01283{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.mff_c01283{transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);}
.m88_c01283{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m101_c01283{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m182_c01283{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);}
.m9a_c01283{transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);}
.m19f_c01283{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m64_c01283{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);}
.mb2_c01283{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.m15a_c01283{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m4e_c01283{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m151_c01283{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.m76_c01283{transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);}
.m7f_c01283{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.m177_c01283{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m15_c01283{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m144_c01283{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m43_c01283{transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);}
.m65_c01283{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);}
.m9c_c01283{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.me3_c01283{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.md0_c01283{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m15d_c01283{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m4c_c01283{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.me_c01283{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.me9_c01283{transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);}
.m16a_c01283{transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);}
.m61_c01283{transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);}
.m123_c01283{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);}
.m9b_c01283{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m161_c01283{transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);}
.m14d_c01283{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m140_c01283{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.ma0_c01283{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m19a_c01283{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);}
.m183_c01283{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m175_c01283{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);}
.m47_c01283{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.ma4_c01283{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);}
.m192_c01283{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);}
.m157_c01283{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m6e_c01283{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.mf1_c01283{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m120_c01283{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.mfa_c01283{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.m122_c01283{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb4_c01283{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m58_c01283{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.mbd_c01283{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.mf9_c01283{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.mef_c01283{transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191575,0.000000,0.000000,0.250000,0,0);}
.m3f_c01283{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.mfd_c01283{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m197_c01283{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);}
.m18a_c01283{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.mee_c01283{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);}
.m68_c01283{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.mdd_c01283{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.m178_c01283{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);}
.md5_c01283{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m171_c01283{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.mdb_c01283{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);}
.m13f_c01283{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);}
.me1_c01283{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);}
.m49_c01283{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);}
.mb5_c01283{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);}
.m14e_c01283{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m4a_c01283{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);}
.m8f_c01283{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);}
.m5e_c01283{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);}
.mb9_c01283{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);}
.ma2_c01283{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.mf0_c01283{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);}
.m77_c01283{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01283{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);}
.m111_c01283{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.m121_c01283{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.mea_c01283{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);}
.mdf_c01283{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.m10e_c01283{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.m199_c01283{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m2b_c01283{transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);}
.m94_c01283{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m190_c01283{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m29_c01283{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m165_c01283{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m5f_c01283{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);}
.m6c_c01283{transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);}
.m38_c01283{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m86_c01283{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m154_c01283{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.mb1_c01283{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);}
.m55_c01283{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);}
.m16b_c01283{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m145_c01283{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m69_c01283{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);}
.m41_c01283{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.m74_c01283{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);}
.m7a_c01283{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);}
.m60_c01283{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.m7b_c01283{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m11f_c01283{transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);}
.m98_c01283{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.m27_c01283{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m164_c01283{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);}
.m130_c01283{transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01283{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);}
.m10f_c01283{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m116_c01283{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);}
.mba_c01283{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);}
.mab_c01283{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);}
.m169_c01283{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);}
.m15c_c01283{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);}
.m19e_c01283{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.m107_c01283{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);}
.m12c_c01283{transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);}
.m28_c01283{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);}
.m131_c01283{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);}
.m179_c01283{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);}
.m12e_c01283{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m70_c01283{transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);}
.m10_c01283{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.mb8_c01283{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m19d_c01283{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);}
.m100_c01283{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);}
.m91_c01283{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m1c_c01283{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.mf7_c01283{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m34_c01283{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.m150_c01283{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.mde_c01283{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m9d_c01283{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m23_c01283{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m44_c01283{transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);}
.m167_c01283{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);}
.m62_c01283{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mc0_c01283{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);}
.mbf_c01283{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m2f_c01283{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m141_c01283{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);}
.m99_c01283{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);}
.m8e_c01283{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.m75_c01283{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);}
.md4_c01283{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m112_c01283{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);}
.m30_c01283{transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);}
.m67_c01283{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.m40_c01283{transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);}
.m2e_c01283{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);}
.mbe_c01283{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.mb6_c01283{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);}
.m59_c01283{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);}
.m7d_c01283{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.ma6_c01283{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);}
.m16_c01283{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);}
.m9f_c01283{transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);}
.m6a_c01283{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m19b_c01283{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);}
.m6b_c01283{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.m2c_c01283{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);}
.m14f_c01283{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.md6_c01283{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);}
.m194_c01283{transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);}
.m18f_c01283{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m158_c01283{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);}
.m39_c01283{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.m196_c01283{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m12_c01283{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.m96_c01283{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.md9_c01283{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);}
.m92_c01283{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.ma8_c01283{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.m4f_c01283{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.mdc_c01283{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);}
.m172_c01283{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m143_c01283{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);}
.me8_c01283{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m198_c01283{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_c01283{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);}
.m78_c01283{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m4b_c01283{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);}
.mfb_c01283{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.md3_c01283{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m52_c01283{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);}
.md_c01283{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);}
.m71_c01283{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m6_c01283{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);}
.m10a_c01283{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);}
.m103_c01283{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m80_c01283{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.md8_c01283{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m15e_c01283{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.mc6_c01283{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);}
.m35_c01283{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19c_c01283{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);}
.m5a_c01283{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);}
.mc3_c01283{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);}
.m15b_c01283{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);}
.m5d_c01283{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);}
.m7_c01283{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md1_c01283{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);}
.m18_c01283{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);}
.m53_c01283{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);}
.m82_c01283{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);}
.m31_c01283{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c01283{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01283{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01283{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);}
.m56_c01283{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m50_c01283{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);}
.m57_c01283{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);}
.ma_c01283{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01283{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);}
.m5_c01283{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma3_c01283{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2_c01283{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);}
.m17_c01283{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01283{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);}
.m2d_c01283{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);}
.m36_c01283{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c01283{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m37_c01283{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);}
.mac_c01283{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c01283{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md2_c01283{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);}
.m8b_c01283{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m24_c01283{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c01283{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01283{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01283{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m11_c01283{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01283{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01283{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m13_c01283{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);}
.m33_c01283{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m21_c01283{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m22_c01283{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c01283{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c01283{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);}
.m18e_c01283{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mc7_c01283{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m173_c01283{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);}
.m3a_c01283{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma9_c01283{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c01283{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);}
.m13b_c01283{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01283{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01283{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);}
.mce_c01283{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m48_c01283{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m26_c01283{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m137_c01283{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m54_c01283{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mbc_c01283{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m90_c01283{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);}
.mc_c01283{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m12d_c01283{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);}
.m8a_c01283{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);}
.m195_c01283{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m135_c01283{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01283{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m18c_c01283{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.me5_c01283{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mc1_c01283{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m32_c01283{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);}
.m1d_c01283{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c01283{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m51_c01283{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mc4_c01283{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mcb_c01283{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m181_c01283{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m73_c01283{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m110_c01283{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m139_c01283{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m46_c01283{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.mcc_c01283{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);}
.mcd_c01283{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01283{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m142_c01283{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);}
.m66_c01283{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01283{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01283{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);}
.mca_c01283{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m25_c01283{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01283{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);}
.mbb_c01283{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1_c01283{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m79_c01283{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.maa_c01283{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01283{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m95_c01283{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m138_c01283{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m3_c01283{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m109_c01283{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m10b_c01283{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01283{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m72_c01283{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);}
.m187_c01283{transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);}
.m7e_c01283{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m118_c01283{transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);}
.m97_c01283{transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.485000,0.000000,0.000000,0.250000,0,0);}
.v0_c01283{vertical-align:0.000000px;}
.v1_c01283{vertical-align:6.900000px;}
.ls0_c01283{letter-spacing:0.000000px;}
.sc__c01283{text-shadow:none;}
.sc0_c01283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01283{-webkit-text-stroke:0px transparent;}
.sc0_c01283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01283{word-spacing:-22.690320px;}
.ws1_c01283{word-spacing:0.000000px;}
.fc0_c01283{color:transparent;}
.fsd_c01283{font-size:3.456000px;}
.fs1b_c01283{font-size:6.000000px;}
.fs4_c01283{font-size:6.900000px;}
.fs10_c01283{font-size:10.380000px;}
.fs16_c01283{font-size:13.800000px;}
.fs1_c01283{font-size:17.280000px;}
.fs19_c01283{font-size:20.760000px;}
.fs3_c01283{font-size:24.180000px;}
.fs2_c01283{font-size:27.660000px;}
.fs1f_c01283{font-size:31.080000px;}
.fs0_c01283{font-size:34.560000px;}
.fs18_c01283{font-size:38.040000px;}
.fs11_c01283{font-size:41.460000px;}
.fsa_c01283{font-size:44.940000px;}
.fs9_c01283{font-size:48.360000px;}
.fs7_c01283{font-size:51.840000px;}
.fs8_c01283{font-size:55.320000px;}
.fs6_c01283{font-size:58.740000px;}
.fs12_c01283{font-size:62.220000px;}
.fsf_c01283{font-size:65.640000px;}
.fs5_c01283{font-size:69.120000px;}
.fsb_c01283{font-size:72.600000px;}
.fsc_c01283{font-size:76.020000px;}
.fse_c01283{font-size:79.500000px;}
.fs13_c01283{font-size:82.920000px;}
.fs17_c01283{font-size:86.400000px;}
.fs1a_c01283{font-size:89.880000px;}
.fs15_c01283{font-size:93.300000px;}
.fs1d_c01283{font-size:96.780000px;}
.fs1e_c01283{font-size:100.200000px;}
.fs1c_c01283{font-size:103.680000px;}
.fs14_c01283{font-size:107.160000px;}
.fs20_c01283{font-size:114.060000px;}
.y0_c01283{bottom:0.000000px;}
.y1c9_c01283{bottom:146.010000px;}
.y1c8_c01283{bottom:152.070000px;}
.y1c7_c01283{bottom:167.610000px;}
.y1c6_c01283{bottom:169.350000px;}
.y1c4_c01283{bottom:170.205000px;}
.y1c2_c01283{bottom:171.075000px;}
.y1c5_c01283{bottom:172.800000px;}
.y1c3_c01283{bottom:177.120000px;}
.y1c1_c01283{bottom:189.210000px;}
.y1bd_c01283{bottom:190.080000px;}
.y1c0_c01283{bottom:190.950000px;}
.y1bc_c01283{bottom:191.805000px;}
.y1bf_c01283{bottom:194.400000px;}
.y1be_c01283{bottom:195.270000px;}
.y1bb_c01283{bottom:198.720000px;}
.y1b8_c01283{bottom:209.955000px;}
.y1b6_c01283{bottom:210.810000px;}
.y1b5_c01283{bottom:212.550000px;}
.y1ba_c01283{bottom:213.405000px;}
.y1b9_c01283{bottom:214.275000px;}
.y1b7_c01283{bottom:215.130000px;}
.y1b4_c01283{bottom:228.090000px;}
.y1b1_c01283{bottom:228.960000px;}
.y1af_c01283{bottom:230.685000px;}
.y1b0_c01283{bottom:232.410000px;}
.y1b2_c01283{bottom:235.005000px;}
.y1b3_c01283{bottom:235.875000px;}
.y1ae_c01283{bottom:245.370000px;}
.y1ab_c01283{bottom:248.835000px;}
.y1a9_c01283{bottom:249.690000px;}
.y1ac_c01283{bottom:251.430000px;}
.y1ad_c01283{bottom:252.285000px;}
.y1a8_c01283{bottom:254.010000px;}
.y1a7_c01283{bottom:254.880000px;}
.y1aa_c01283{bottom:259.200000px;}
.y1a5_c01283{bottom:265.245000px;}
.y1a2_c01283{bottom:266.115000px;}
.y1a4_c01283{bottom:266.970000px;}
.y1a0_c01283{bottom:267.840000px;}
.y19f_c01283{bottom:268.710000px;}
.y19e_c01283{bottom:269.565000px;}
.y1a6_c01283{bottom:272.160000px;}
.y1a3_c01283{bottom:275.610000px;}
.y1a1_c01283{bottom:278.205000px;}
.y19a_c01283{bottom:284.250000px;}
.y195_c01283{bottom:285.990000px;}
.y19d_c01283{bottom:286.845000px;}
.y197_c01283{bottom:287.715000px;}
.y198_c01283{bottom:288.570000px;}
.y199_c01283{bottom:290.310000px;}
.y19c_c01283{bottom:291.165000px;}
.y196_c01283{bottom:292.890000px;}
.y19b_c01283{bottom:295.485000px;}
.y192_c01283{bottom:309.315000px;}
.y194_c01283{bottom:310.170000px;}
.y191_c01283{bottom:311.910000px;}
.y193_c01283{bottom:312.765000px;}
.y18f_c01283{bottom:313.635000px;}
.y190_c01283{bottom:315.360000px;}
.y187_c01283{bottom:329.190000px;}
.y18c_c01283{bottom:330.045000px;}
.y188_c01283{bottom:331.770000px;}
.y189_c01283{bottom:332.640000px;}
.y186_c01283{bottom:334.365000px;}
.y18d_c01283{bottom:335.235000px;}
.y18e_c01283{bottom:336.090000px;}
.y185_c01283{bottom:339.555000px;}
.y18a_c01283{bottom:341.280000px;}
.y18b_c01283{bottom:343.875000px;}
.y181_c01283{bottom:349.920000px;}
.y184_c01283{bottom:350.790000px;}
.y17e_c01283{bottom:351.645000px;}
.y180_c01283{bottom:352.515000px;}
.y183_c01283{bottom:353.370000px;}
.y17d_c01283{bottom:354.240000px;}
.y17c_c01283{bottom:355.110000px;}
.y182_c01283{bottom:355.965000px;}
.y17b_c01283{bottom:356.835000px;}
.y17f_c01283{bottom:357.690000px;}
.y17a_c01283{bottom:366.330000px;}
.y173_c01283{bottom:367.200000px;}
.y171_c01283{bottom:368.070000px;}
.y170_c01283{bottom:368.925000px;}
.y16f_c01283{bottom:370.650000px;}
.y176_c01283{bottom:371.520000px;}
.y179_c01283{bottom:372.390000px;}
.y177_c01283{bottom:374.115000px;}
.y178_c01283{bottom:375.840000px;}
.y172_c01283{bottom:378.435000px;}
.y175_c01283{bottom:382.755000px;}
.y174_c01283{bottom:383.610000px;}
.y16e_c01283{bottom:384.480000px;}
.y16c_c01283{bottom:387.930000px;}
.y166_c01283{bottom:389.670000px;}
.y167_c01283{bottom:392.250000px;}
.y168_c01283{bottom:393.120000px;}
.y16a_c01283{bottom:394.845000px;}
.y16b_c01283{bottom:395.715000px;}
.y169_c01283{bottom:398.310000px;}
.y16d_c01283{bottom:400.035000px;}
.y163_c01283{bottom:410.400000px;}
.y165_c01283{bottom:411.270000px;}
.y162_c01283{bottom:412.995000px;}
.y160_c01283{bottom:413.850000px;}
.y164_c01283{bottom:414.720000px;}
.y161_c01283{bottom:416.445000px;}
.y15e_c01283{bottom:419.910000px;}
.y15f_c01283{bottom:420.765000px;}
.y15c_c01283{bottom:425.955000px;}
.y154_c01283{bottom:426.810000px;}
.y15d_c01283{bottom:427.680000px;}
.y156_c01283{bottom:428.550000px;}
.y153_c01283{bottom:429.405000px;}
.y155_c01283{bottom:430.275000px;}
.y15a_c01283{bottom:431.130000px;}
.y159_c01283{bottom:432.000000px;}
.y15b_c01283{bottom:432.870000px;}
.y158_c01283{bottom:435.450000px;}
.y157_c01283{bottom:440.640000px;}
.y152_c01283{bottom:450.150000px;}
.y14d_c01283{bottom:451.005000px;}
.y14b_c01283{bottom:452.730000px;}
.y151_c01283{bottom:453.600000px;}
.y14c_c01283{bottom:454.470000px;}
.y150_c01283{bottom:455.325000px;}
.y14e_c01283{bottom:456.195000px;}
.y14f_c01283{bottom:460.515000px;}
.y14a_c01283{bottom:467.430000px;}
.y147_c01283{bottom:468.285000px;}
.y146_c01283{bottom:469.155000px;}
.y140_c01283{bottom:470.010000px;}
.y142_c01283{bottom:470.880000px;}
.y145_c01283{bottom:471.750000px;}
.y148_c01283{bottom:473.475000px;}
.y149_c01283{bottom:475.200000px;}
.y144_c01283{bottom:476.070000px;}
.y143_c01283{bottom:479.520000px;}
.y141_c01283{bottom:481.245000px;}
.y13c_c01283{bottom:489.885000px;}
.y135_c01283{bottom:490.755000px;}
.y13d_c01283{bottom:491.610000px;}
.y13f_c01283{bottom:492.480000px;}
.y13a_c01283{bottom:493.350000px;}
.y139_c01283{bottom:495.075000px;}
.y13b_c01283{bottom:496.800000px;}
.y138_c01283{bottom:497.670000px;}
.y137_c01283{bottom:499.395000px;}
.y136_c01283{bottom:500.250000px;}
.y13e_c01283{bottom:501.990000px;}
.y133_c01283{bottom:504.570000px;}
.y134_c01283{bottom:505.440000px;}
.y132_c01283{bottom:512.355000px;}
.y130_c01283{bottom:514.950000px;}
.y131_c01283{bottom:515.805000px;}
.y12e_c01283{bottom:530.490000px;}
.y12b_c01283{bottom:531.360000px;}
.y12a_c01283{bottom:532.230000px;}
.y12d_c01283{bottom:533.085000px;}
.y12c_c01283{bottom:533.955000px;}
.y12f_c01283{bottom:536.550000px;}
.y129_c01283{bottom:546.045000px;}
.y124_c01283{bottom:547.770000px;}
.y127_c01283{bottom:548.640000px;}
.y122_c01283{bottom:549.510000px;}
.y126_c01283{bottom:550.365000px;}
.y121_c01283{bottom:551.235000px;}
.y123_c01283{bottom:552.090000px;}
.y120_c01283{bottom:554.685000px;}
.y125_c01283{bottom:556.410000px;}
.y128_c01283{bottom:557.280000px;}
.y11f_c01283{bottom:571.965000px;}
.y118_c01283{bottom:573.690000px;}
.y11a_c01283{bottom:574.560000px;}
.y119_c01283{bottom:575.430000px;}
.y11e_c01283{bottom:576.285000px;}
.y11d_c01283{bottom:577.155000px;}
.y11c_c01283{bottom:578.010000px;}
.y11b_c01283{bottom:578.880000px;}
.y111_c01283{bottom:591.840000px;}
.y112_c01283{bottom:592.710000px;}
.y110_c01283{bottom:593.565000px;}
.y10d_c01283{bottom:594.435000px;}
.y10f_c01283{bottom:595.290000px;}
.y115_c01283{bottom:596.160000px;}
.y113_c01283{bottom:597.030000px;}
.y114_c01283{bottom:597.885000px;}
.y10e_c01283{bottom:598.755000px;}
.y10c_c01283{bottom:599.610000px;}
.y116_c01283{bottom:600.480000px;}
.y117_c01283{bottom:607.395000px;}
.y107_c01283{bottom:614.310000px;}
.y10a_c01283{bottom:616.035000px;}
.y10b_c01283{bottom:618.630000px;}
.y109_c01283{bottom:619.485000px;}
.y108_c01283{bottom:620.355000px;}
.y106_c01283{bottom:634.170000px;}
.y104_c01283{bottom:635.040000px;}
.y105_c01283{bottom:635.910000px;}
.y103_c01283{bottom:638.490000px;}
.y102_c01283{bottom:640.230000px;}
.yfc_c01283{bottom:652.320000px;}
.yff_c01283{bottom:653.190000px;}
.yfa_c01283{bottom:654.045000px;}
.y100_c01283{bottom:654.915000px;}
.yfb_c01283{bottom:655.770000px;}
.yf9_c01283{bottom:656.640000px;}
.yfd_c01283{bottom:657.510000px;}
.yfe_c01283{bottom:658.365000px;}
.yf8_c01283{bottom:660.090000px;}
.yf7_c01283{bottom:660.960000px;}
.yf6_c01283{bottom:664.410000px;}
.y101_c01283{bottom:668.730000px;}
.yf3_c01283{bottom:672.195000px;}
.yf5_c01283{bottom:673.920000px;}
.yf0_c01283{bottom:674.790000px;}
.yf1_c01283{bottom:675.645000px;}
.yf4_c01283{bottom:676.515000px;}
.yf2_c01283{bottom:677.370000px;}
.yee_c01283{bottom:692.925000px;}
.yef_c01283{bottom:694.650000px;}
.yea_c01283{bottom:695.520000px;}
.ye9_c01283{bottom:696.390000px;}
.yec_c01283{bottom:697.245000px;}
.yed_c01283{bottom:698.115000px;}
.yeb_c01283{bottom:698.970000px;}
.ye8_c01283{bottom:699.840000px;}
.ye6_c01283{bottom:714.525000px;}
.ye4_c01283{bottom:715.395000px;}
.ye3_c01283{bottom:717.120000px;}
.ye2_c01283{bottom:717.990000px;}
.ye7_c01283{bottom:718.845000px;}
.ye5_c01283{bottom:719.715000px;}
.ye1_c01283{bottom:733.530000px;}
.ye0_c01283{bottom:734.400000px;}
.ydd_c01283{bottom:735.270000px;}
.ydf_c01283{bottom:738.720000px;}
.yde_c01283{bottom:739.590000px;}
.ydc_c01283{bottom:740.445000px;}
.yda_c01283{bottom:752.550000px;}
.yd8_c01283{bottom:753.405000px;}
.yd9_c01283{bottom:754.275000px;}
.yd7_c01283{bottom:755.130000px;}
.ydb_c01283{bottom:756.000000px;}
.yd6_c01283{bottom:756.870000px;}
.yd4_c01283{bottom:758.595000px;}
.yd5_c01283{bottom:759.450000px;}
.yd3_c01283{bottom:760.320000px;}
.yd2_c01283{bottom:761.190000px;}
.yce_c01283{bottom:772.410000px;}
.yd0_c01283{bottom:777.600000px;}
.ycf_c01283{bottom:778.470000px;}
.ycd_c01283{bottom:779.325000px;}
.ycc_c01283{bottom:780.195000px;}
.yd1_c01283{bottom:790.560000px;}
.yc6_c01283{bottom:794.880000px;}
.ycb_c01283{bottom:795.750000px;}
.yc7_c01283{bottom:796.605000px;}
.yc9_c01283{bottom:797.475000px;}
.yca_c01283{bottom:799.200000px;}
.yc8_c01283{bottom:800.070000px;}
.y6_c01283{bottom:800.925000px;}
.y5_c01283{bottom:804.390000px;}
.yc5_c01283{bottom:812.160000px;}
.yc2_c01283{bottom:813.885000px;}
.yc0_c01283{bottom:814.755000px;}
.yc1_c01283{bottom:815.610000px;}
.yc3_c01283{bottom:818.205000px;}
.yc4_c01283{bottom:819.075000px;}
.ybf_c01283{bottom:833.760000px;}
.ybc_c01283{bottom:834.630000px;}
.ybb_c01283{bottom:835.485000px;}
.ybd_c01283{bottom:836.355000px;}
.ybe_c01283{bottom:838.080000px;}
.yba_c01283{bottom:839.805000px;}
.yb3_c01283{bottom:854.490000px;}
.yb5_c01283{bottom:855.360000px;}
.yb9_c01283{bottom:856.230000px;}
.yb8_c01283{bottom:857.085000px;}
.yb7_c01283{bottom:857.955000px;}
.yb6_c01283{bottom:858.810000px;}
.yb4_c01283{bottom:859.680000px;}
.yac_c01283{bottom:874.365000px;}
.yaf_c01283{bottom:875.235000px;}
.yb0_c01283{bottom:877.830000px;}
.yb1_c01283{bottom:878.685000px;}
.yad_c01283{bottom:879.555000px;}
.yae_c01283{bottom:880.410000px;}
.yb2_c01283{bottom:886.470000px;}
.ya9_c01283{bottom:893.370000px;}
.yaa_c01283{bottom:894.240000px;}
.ya5_c01283{bottom:895.110000px;}
.ya8_c01283{bottom:895.965000px;}
.ya6_c01283{bottom:896.835000px;}
.ya4_c01283{bottom:898.560000px;}
.ya7_c01283{bottom:899.430000px;}
.yab_c01283{bottom:900.285000px;}
.ya1_c01283{bottom:913.245000px;}
.y9c_c01283{bottom:914.115000px;}
.y9e_c01283{bottom:918.435000px;}
.ya2_c01283{bottom:919.290000px;}
.ya3_c01283{bottom:920.160000px;}
.y9d_c01283{bottom:921.030000px;}
.ya0_c01283{bottom:923.610000px;}
.y9f_c01283{bottom:925.350000px;}
.y97_c01283{bottom:933.990000px;}
.y9a_c01283{bottom:934.845000px;}
.y9b_c01283{bottom:935.715000px;}
.y93_c01283{bottom:936.570000px;}
.y96_c01283{bottom:937.440000px;}
.y98_c01283{bottom:938.310000px;}
.y99_c01283{bottom:939.165000px;}
.y95_c01283{bottom:940.035000px;}
.y94_c01283{bottom:940.890000px;}
.y92_c01283{bottom:952.125000px;}
.y8e_c01283{bottom:952.995000px;}
.y90_c01283{bottom:954.720000px;}
.y8d_c01283{bottom:955.590000px;}
.y8f_c01283{bottom:957.315000px;}
.y8c_c01283{bottom:958.170000px;}
.y8b_c01283{bottom:959.040000px;}
.y8a_c01283{bottom:959.910000px;}
.y91_c01283{bottom:960.765000px;}
.y84_c01283{bottom:967.680000px;}
.y85_c01283{bottom:968.550000px;}
.y81_c01283{bottom:971.130000px;}
.y86_c01283{bottom:972.870000px;}
.y82_c01283{bottom:973.725000px;}
.y80_c01283{bottom:974.595000px;}
.y83_c01283{bottom:975.450000px;}
.y88_c01283{bottom:976.320000px;}
.y87_c01283{bottom:977.190000px;}
.y89_c01283{bottom:983.235000px;}
.y7f_c01283{bottom:992.730000px;}
.y7b_c01283{bottom:993.600000px;}
.y79_c01283{bottom:994.470000px;}
.y7a_c01283{bottom:995.325000px;}
.y7d_c01283{bottom:996.195000px;}
.y77_c01283{bottom:997.050000px;}
.y7e_c01283{bottom:998.790000px;}
.y78_c01283{bottom:999.645000px;}
.y7c_c01283{bottom:1001.370000px;}
.y73_c01283{bottom:1013.475000px;}
.y70_c01283{bottom:1014.330000px;}
.y74_c01283{bottom:1015.200000px;}
.y6f_c01283{bottom:1016.070000px;}
.y71_c01283{bottom:1018.650000px;}
.y72_c01283{bottom:1019.520000px;}
.y75_c01283{bottom:1020.390000px;}
.y76_c01283{bottom:1021.245000px;}
.y6e_c01283{bottom:1031.610000px;}
.y6b_c01283{bottom:1033.350000px;}
.y69_c01283{bottom:1034.205000px;}
.y68_c01283{bottom:1035.075000px;}
.y6a_c01283{bottom:1035.930000px;}
.y67_c01283{bottom:1036.800000px;}
.y66_c01283{bottom:1038.525000px;}
.y6c_c01283{bottom:1039.395000px;}
.y6d_c01283{bottom:1042.845000px;}
.y60_c01283{bottom:1053.210000px;}
.y63_c01283{bottom:1054.080000px;}
.y64_c01283{bottom:1054.950000px;}
.y5f_c01283{bottom:1055.805000px;}
.y61_c01283{bottom:1059.270000px;}
.y65_c01283{bottom:1060.125000px;}
.y62_c01283{bottom:1062.720000px;}
.y5e_c01283{bottom:1073.085000px;}
.y5c_c01283{bottom:1074.810000px;}
.y5b_c01283{bottom:1076.550000px;}
.y5d_c01283{bottom:1079.130000px;}
.y5a_c01283{bottom:1081.725000px;}
.y56_c01283{bottom:1094.685000px;}
.y57_c01283{bottom:1097.280000px;}
.y58_c01283{bottom:1098.150000px;}
.y59_c01283{bottom:1099.005000px;}
.y55_c01283{bottom:1099.875000px;}
.y54_c01283{bottom:1111.965000px;}
.y50_c01283{bottom:1114.560000px;}
.y4e_c01283{bottom:1116.285000px;}
.y4c_c01283{bottom:1117.155000px;}
.y4d_c01283{bottom:1119.750000px;}
.y4f_c01283{bottom:1120.605000px;}
.y51_c01283{bottom:1121.475000px;}
.y52_c01283{bottom:1122.330000px;}
.y53_c01283{bottom:1128.390000px;}
.y47_c01283{bottom:1132.710000px;}
.y43_c01283{bottom:1134.435000px;}
.y44_c01283{bottom:1135.290000px;}
.y46_c01283{bottom:1136.160000px;}
.y49_c01283{bottom:1137.030000px;}
.y4b_c01283{bottom:1137.885000px;}
.y45_c01283{bottom:1140.480000px;}
.y48_c01283{bottom:1141.350000px;}
.y4a_c01283{bottom:1143.075000px;}
.y3d_c01283{bottom:1153.440000px;}
.y3f_c01283{bottom:1154.310000px;}
.y40_c01283{bottom:1155.165000px;}
.y3e_c01283{bottom:1156.035000px;}
.y41_c01283{bottom:1160.355000px;}
.y42_c01283{bottom:1162.080000px;}
.y4_c01283{bottom:1168.995000px;}
.y35_c01283{bottom:1169.850000px;}
.y38_c01283{bottom:1170.720000px;}
.y3c_c01283{bottom:1174.170000px;}
.y36_c01283{bottom:1175.910000px;}
.y3b_c01283{bottom:1178.490000px;}
.y39_c01283{bottom:1179.360000px;}
.y3a_c01283{bottom:1180.230000px;}
.y37_c01283{bottom:1181.085000px;}
.y31_c01283{bottom:1194.915000px;}
.y33_c01283{bottom:1195.770000px;}
.y32_c01283{bottom:1196.640000px;}
.y34_c01283{bottom:1197.510000px;}
.y2e_c01283{bottom:1198.365000px;}
.y2f_c01283{bottom:1200.090000px;}
.y30_c01283{bottom:1200.960000px;}
.y3_c01283{bottom:1201.830000px;}
.y2_c01283{bottom:1208.730000px;}
.y29_c01283{bottom:1215.645000px;}
.y2b_c01283{bottom:1218.240000px;}
.y2c_c01283{bottom:1219.110000px;}
.y28_c01283{bottom:1219.965000px;}
.y2a_c01283{bottom:1221.690000px;}
.y2d_c01283{bottom:1222.560000px;}
.y23_c01283{bottom:1235.520000px;}
.y25_c01283{bottom:1236.390000px;}
.y21_c01283{bottom:1237.245000px;}
.y22_c01283{bottom:1238.115000px;}
.y24_c01283{bottom:1238.970000px;}
.y20_c01283{bottom:1240.710000px;}
.y1f_c01283{bottom:1241.565000px;}
.y27_c01283{bottom:1242.435000px;}
.y26_c01283{bottom:1246.755000px;}
.y1c_c01283{bottom:1256.250000px;}
.y1d_c01283{bottom:1257.120000px;}
.y1e_c01283{bottom:1257.990000px;}
.y15_c01283{bottom:1258.845000px;}
.y17_c01283{bottom:1259.715000px;}
.y16_c01283{bottom:1260.570000px;}
.y19_c01283{bottom:1261.440000px;}
.y18_c01283{bottom:1262.310000px;}
.y1b_c01283{bottom:1263.165000px;}
.y1a_c01283{bottom:1275.270000px;}
.y14_c01283{bottom:1276.125000px;}
.yf_c01283{bottom:1276.995000px;}
.y13_c01283{bottom:1279.590000px;}
.ye_c01283{bottom:1280.445000px;}
.y12_c01283{bottom:1281.315000px;}
.y10_c01283{bottom:1282.170000px;}
.y11_c01283{bottom:1283.040000px;}
.yd_c01283{bottom:1296.870000px;}
.y7_c01283{bottom:1297.725000px;}
.y9_c01283{bottom:1298.595000px;}
.y8_c01283{bottom:1301.190000px;}
.yc_c01283{bottom:1302.045000px;}
.yb_c01283{bottom:1302.915000px;}
.ya_c01283{bottom:1303.770000px;}
.y1_c01283{bottom:1306.365000px;}
.y1cb_c01283{bottom:1376.355000px;}
.y1ca_c01283{bottom:1382.400000px;}
.hf_c01283{height:3.110063px;}
.h1d_c01283{height:5.399414px;}
.h6_c01283{height:6.209326px;}
.h12_c01283{height:9.340986px;}
.h18_c01283{height:12.418652px;}
.h3_c01283{height:15.550313px;}
.h1b_c01283{height:18.681973px;}
.h5_c01283{height:21.759639px;}
.h4_c01283{height:24.891299px;}
.h21_c01283{height:27.968965px;}
.h2_c01283{height:31.100625px;}
.h1a_c01283{height:34.232285px;}
.h13_c01283{height:37.309951px;}
.hc_c01283{height:40.441611px;}
.hb_c01283{height:43.519277px;}
.h9_c01283{height:46.650937px;}
.ha_c01283{height:49.782598px;}
.h8_c01283{height:52.860264px;}
.h14_c01283{height:55.991924px;}
.h11_c01283{height:59.069590px;}
.h7_c01283{height:62.201250px;}
.hd_c01283{height:65.332910px;}
.he_c01283{height:68.410576px;}
.h10_c01283{height:71.542236px;}
.h15_c01283{height:74.619902px;}
.h19_c01283{height:77.751563px;}
.h1c_c01283{height:80.883223px;}
.h17_c01283{height:83.960889px;}
.h1f_c01283{height:87.092549px;}
.h20_c01283{height:90.170215px;}
.h1e_c01283{height:93.301875px;}
.h16_c01283{height:96.433535px;}
.h22_c01283{height:102.642861px;}
.h0_c01283{height:1509.405000px;}
.h1_c01283{height:1509.750000px;}
.w0_c01283{width:1088.640000px;}
.w1_c01283{width:1089.000000px;}
.x0_c01283{left:0.000000px;}
.x3_c01283{left:12.960000px;}
.x1_c01283{left:15.555000px;}
.x2_c01283{left:33.690000px;}
.x65_c01283{left:219.450000px;}
.x7b_c01283{left:229.830000px;}
.x93_c01283{left:232.410000px;}
.x6c_c01283{left:234.150000px;}
.x83_c01283{left:238.470525px;}
.x45_c01283{left:241.920000px;}
.x4_c01283{left:243.645000px;}
.x18_c01283{left:245.370000px;}
.x84_c01283{left:247.965000px;}
.xd6_c01283{left:249.690000px;}
.x9e_c01283{left:251.430000px;}
.xe5_c01283{left:253.155000px;}
.xee_c01283{left:254.880000px;}
.xdf_c01283{left:258.330000px;}
.xad_c01283{left:260.070000px;}
.x9f_c01283{left:264.390000px;}
.x90_c01283{left:266.970000px;}
.x102_c01283{left:271.290000px;}
.xb4_c01283{left:273.030000px;}
.xd8_c01283{left:275.610000px;}
.x10_c01283{left:277.350000px;}
.xba_c01283{left:281.670000px;}
.x3c_c01283{left:284.250000px;}
.x72_c01283{left:286.845000px;}
.xcf_c01283{left:289.440000px;}
.xf5_c01283{left:291.165000px;}
.x19_c01283{left:292.890000px;}
.x94_c01283{left:294.630000px;}
.x28_c01283{left:297.210000px;}
.x31_c01283{left:301.530000px;}
.x4f_c01283{left:303.270000px;}
.xfb_c01283{left:304.995000px;}
.xc9_c01283{left:306.720000px;}
.x5_c01283{left:308.445000px;}
.x66_c01283{left:311.040000px;}
.xbf_c01283{left:315.360000px;}
.x3d_c01283{left:318.810000px;}
.x6d_c01283{left:324.870000px;}
.x85_c01283{left:330.045000px;}
.x99_c01283{left:332.640000px;}
.xe6_c01283{left:336.090000px;}
.x11_c01283{left:339.555000px;}
.xcd_c01283{left:341.280000px;}
.xe3_c01283{left:343.005000px;}
.x32_c01283{left:345.600000px;}
.x46_c01283{left:347.325000px;}
.xbb_c01283{left:351.645000px;}
.x29_c01283{left:353.370000px;}
.xa0_c01283{left:355.965000px;}
.xf1_c01283{left:358.560000px;}
.x8a_c01283{left:362.010000px;}
.x6_c01283{left:367.200000px;}
.xd0_c01283{left:368.925000px;}
.xe1_c01283{left:371.520000px;}
.x2a_c01283{left:374.115000px;}
.x86_c01283{left:377.565000px;}
.x6f_c01283{left:379.290000px;}
.x50_c01283{left:385.350000px;}
.x7c_c01283{left:387.930000px;}
.x3e_c01283{left:390.525000px;}
.x67_c01283{left:392.250000px;}
.x47_c01283{left:393.990000px;}
.x55_c01283{left:396.570000px;}
.x7d_c01283{left:398.310000px;}
.xc6_c01283{left:401.760000px;}
.xff_c01283{left:404.355000px;}
.x103_c01283{left:407.805000px;}
.x2b_c01283{left:409.530000px;}
.xca_c01283{left:411.270000px;}
.x8b_c01283{left:412.995000px;}
.x48_c01283{left:415.590000px;}
.x12_c01283{left:419.910000px;}
.x95_c01283{left:423.360000px;}
.x1a_c01283{left:425.085000px;}
.x33_c01283{left:427.680000px;}
.xdd_c01283{left:429.405000px;}
.xaa_c01283{left:431.130000px;}
.xa6_c01283{left:433.725000px;}
.xb5_c01283{left:436.320000px;}
.xe4_c01283{left:438.045000px;}
.x56_c01283{left:444.960000px;}
.x68_c01283{left:447.555000px;}
.xd1_c01283{left:449.280000px;}
.x7e_c01283{left:451.875000px;}
.xcb_c01283{left:453.600000px;}
.xea_c01283{left:456.195525px;}
.x57_c01283{left:458.790000px;}
.x1b_c01283{left:463.110000px;}
.x7_c01283{left:465.690000px;}
.x73_c01283{left:467.430000px;}
.xfc_c01283{left:469.155000px;}
.xab_c01283{left:470.880000px;}
.xae_c01283{left:472.605000px;}
.x6e_c01283{left:475.200000px;}
.x74_c01283{left:476.925000px;}
.x3f_c01283{left:482.115000px;}
.xc0_c01283{left:483.840000px;}
.x1c_c01283{left:485.565000px;}
.x8c_c01283{left:487.290000px;}
.x51_c01283{left:489.885000px;}
.x7f_c01283{left:491.610000px;}
.x8_c01283{left:493.350000px;}
.xa1_c01283{left:495.075000px;}
.x105_c01283{left:496.800000px;}
.xf4_c01283{left:499.395000px;}
.xeb_c01283{left:501.120000px;}
.xc7_c01283{left:502.845000px;}
.x69_c01283{left:506.310000px;}
.xc1_c01283{left:508.035000px;}
.x34_c01283{left:509.760000px;}
.xaf_c01283{left:513.210000px;}
.x9_c01283{left:514.950000px;}
.xc2_c01283{left:518.400000px;}
.x13_c01283{left:520.125000px;}
.xd9_c01283{left:524.445000px;}
.x49_c01283{left:526.170000px;}
.xfd_c01283{left:529.635000px;}
.xef_c01283{left:531.360000px;}
.x70_c01283{left:533.085000px;}
.xda_c01283{left:534.810000px;}
.xb0_c01283{left:539.130000px;}
.xe7_c01283{left:541.725000px;}
.x87_c01283{left:545.190000px;}
.x1d_c01283{left:548.640000px;}
.xa_c01283{left:550.365000px;}
.x14_c01283{left:552.960000px;}
.x88_c01283{left:554.685000px;}
.x75_c01283{left:558.150000px;}
.xf6_c01283{left:559.875000px;}
.x15_c01283{left:561.600000px;}
.x1e_c01283{left:564.195000px;}
.x40_c01283{left:566.790000px;}
.xe8_c01283{left:569.370000px;}
.x1f_c01283{left:571.110000px;}
.x35_c01283{left:573.690000px;}
.x52_c01283{left:575.430000px;}
.x89_c01283{left:578.010000px;}
.x96_c01283{left:579.750000px;}
.xa7_c01283{left:581.475000px;}
.xe0_c01283{left:583.200000px;}
.x106_c01283{left:584.925000px;}
.xb_c01283{left:590.970000px;}
.x16_c01283{left:595.290000px;}
.xa8_c01283{left:597.030000px;}
.xf8_c01283{left:598.755000px;}
.xa2_c01283{left:601.350000px;}
.xb6_c01283{left:603.930000px;}
.xc_c01283{left:606.525000px;}
.x6a_c01283{left:608.250000px;}
.xb7_c01283{left:609.990000px;}
.x76_c01283{left:611.715000px;}
.xe2_c01283{left:613.440000px;}
.x4a_c01283{left:615.165000px;}
.x41_c01283{left:617.760000px;}
.x100_c01283{left:619.485000px;}
.xd7_c01283{left:621.210000px;}
.x4b_c01283{left:622.950000px;}
.xe9_c01283{left:625.530000px;}
.x91_c01283{left:628.125000px;}
.xcc_c01283{left:629.850000px;}
.x58_c01283{left:633.315000px;}
.x4c_c01283{left:635.040000px;}
.x80_c01283{left:639.360000px;}
.x20_c01283{left:641.955000px;}
.x104_c01283{left:643.680000px;}
.x9a_c01283{left:648.870000px;}
.xa3_c01283{left:650.595000px;}
.x42_c01283{left:653.190000px;}
.xde_c01283{left:654.915000px;}
.x61_c01283{left:656.640000px;}
.x53_c01283{left:660.090000px;}
.xce_c01283{left:662.685000px;}
.x36_c01283{left:664.410000px;}
.x59_c01283{left:667.875000px;}
.xc3_c01283{left:669.600000px;}
.x97_c01283{left:671.325000px;}
.xa4_c01283{left:673.050000px;}
.x2c_c01283{left:676.515000px;}
.xb1_c01283{left:678.240000px;}
.xf7_c01283{left:679.965000px;}
.x21_c01283{left:681.690000px;}
.xc8_c01283{left:686.880000px;}
.xf2_c01283{left:688.605000px;}
.x22_c01283{left:690.330000px;}
.xf9_c01283{left:692.070000px;}
.xec_c01283{left:693.795000px;}
.x23_c01283{left:699.840000px;}
.xb8_c01283{left:702.435000px;}
.x62_c01283{left:705.030000px;}
.xbc_c01283{left:707.610000px;}
.x92_c01283{left:711.075000px;}
.xa9_c01283{left:712.800000px;}
.xd_c01283{left:715.395000px;}
.x37_c01283{left:720.570000px;}
.x77_c01283{left:723.165000px;}
.x4d_c01283{left:724.890000px;}
.xb2_c01283{left:727.485000px;}
.x5a_c01283{left:729.210000px;}
.x24_c01283{left:731.805000px;}
.xd2_c01283{left:733.530000px;}
.x98_c01283{left:736.125000px;}
.xed_c01283{left:737.850000px;}
.xf3_c01283{left:739.590000px;}
.x81_c01283{left:741.315000px;}
.xb9_c01283{left:743.040000px;}
.x2d_c01283{left:745.635000px;}
.x25_c01283{left:748.230000px;}
.x43_c01283{left:749.955000px;}
.xfe_c01283{left:751.680000px;}
.xd3_c01283{left:754.275000px;}
.x5b_c01283{left:756.000000px;}
.x101_c01283{left:758.595000px;}
.x54_c01283{left:761.190000px;}
.x38_c01283{left:762.915000px;}
.xe_c01283{left:764.640000px;}
.x5c_c01283{left:772.410000px;}
.x39_c01283{left:775.875000px;}
.x6b_c01283{left:779.325000px;}
.xfa_c01283{left:781.050000px;}
.xf_c01283{left:782.790000px;}
.x3a_c01283{left:785.370000px;}
.x8d_c01283{left:787.110000px;}
.xbd_c01283{left:792.285000px;}
.xd4_c01283{left:794.010000px;}
.x71_c01283{left:796.605000px;}
.x8e_c01283{left:799.200000px;}
.x4e_c01283{left:803.520000px;}
.x5d_c01283{left:805.245000px;}
.x26_c01283{left:806.970000px;}
.x82_c01283{left:808.710000px;}
.x9b_c01283{left:810.435000px;}
.x2e_c01283{left:813.030000px;}
.x108_c01283{left:814.755000px;}
.x78_c01283{left:817.350000px;}
.xc4_c01283{left:819.075000px;}
.xac_c01283{left:820.800000px;}
.x5e_c01283{left:823.395000px;}
.x27_c01283{left:825.990000px;}
.x17_c01283{left:828.570000px;}
.x63_c01283{left:831.165000px;}
.xa5_c01283{left:833.760000px;}
.xb3_c01283{left:835.485000px;}
.x3b_c01283{left:838.080000px;}
.xdb_c01283{left:840.675000px;}
.x8f_c01283{left:844.995000px;}
.x107_c01283{left:846.720000px;}
.x79_c01283{left:850.170000px;}
.x44_c01283{left:855.360000px;}
.xd5_c01283{left:857.085000px;}
.x9c_c01283{left:858.810000px;}
.x5f_c01283{left:860.550000px;}
.xbe_c01283{left:863.130000px;}
.x7a_c01283{left:872.640000px;}
.x9d_c01283{left:880.410000px;}
.xdc_c01283{left:882.150000px;}
.x64_c01283{left:889.050000px;}
.x60_c01283{left:894.240000px;}
.xc5_c01283{left:895.965000px;}
.xf0_c01283{left:897.690000px;}
.x2f_c01283{left:919.290000px;}
.x30_c01283{left:924.480000px;}
.x109_c01283{left:938.310000px;}
.x10a_c01283{left:960.765000px;}
@media print{
.v0_c01283{vertical-align:0.000000pt;}
.v1_c01283{vertical-align:6.133333pt;}
.ls0_c01283{letter-spacing:0.000000pt;}
.ws0_c01283{word-spacing:-20.169173pt;}
.ws1_c01283{word-spacing:0.000000pt;}
.fsd_c01283{font-size:3.072000pt;}
.fs1b_c01283{font-size:5.333333pt;}
.fs4_c01283{font-size:6.133333pt;}
.fs10_c01283{font-size:9.226667pt;}
.fs16_c01283{font-size:12.266667pt;}
.fs1_c01283{font-size:15.360000pt;}
.fs19_c01283{font-size:18.453333pt;}
.fs3_c01283{font-size:21.493333pt;}
.fs2_c01283{font-size:24.586667pt;}
.fs1f_c01283{font-size:27.626667pt;}
.fs0_c01283{font-size:30.720000pt;}
.fs18_c01283{font-size:33.813333pt;}
.fs11_c01283{font-size:36.853333pt;}
.fsa_c01283{font-size:39.946667pt;}
.fs9_c01283{font-size:42.986667pt;}
.fs7_c01283{font-size:46.080000pt;}
.fs8_c01283{font-size:49.173333pt;}
.fs6_c01283{font-size:52.213333pt;}
.fs12_c01283{font-size:55.306667pt;}
.fsf_c01283{font-size:58.346667pt;}
.fs5_c01283{font-size:61.440000pt;}
.fsb_c01283{font-size:64.533333pt;}
.fsc_c01283{font-size:67.573333pt;}
.fse_c01283{font-size:70.666667pt;}
.fs13_c01283{font-size:73.706667pt;}
.fs17_c01283{font-size:76.800000pt;}
.fs1a_c01283{font-size:79.893333pt;}
.fs15_c01283{font-size:82.933333pt;}
.fs1d_c01283{font-size:86.026667pt;}
.fs1e_c01283{font-size:89.066667pt;}
.fs1c_c01283{font-size:92.160000pt;}
.fs14_c01283{font-size:95.253333pt;}
.fs20_c01283{font-size:101.386667pt;}
.y0_c01283{bottom:0.000000pt;}
.y1c9_c01283{bottom:129.786667pt;}
.y1c8_c01283{bottom:135.173333pt;}
.y1c7_c01283{bottom:148.986667pt;}
.y1c6_c01283{bottom:150.533333pt;}
.y1c4_c01283{bottom:151.293333pt;}
.y1c2_c01283{bottom:152.066667pt;}
.y1c5_c01283{bottom:153.600000pt;}
.y1c3_c01283{bottom:157.440000pt;}
.y1c1_c01283{bottom:168.186667pt;}
.y1bd_c01283{bottom:168.960000pt;}
.y1c0_c01283{bottom:169.733333pt;}
.y1bc_c01283{bottom:170.493333pt;}
.y1bf_c01283{bottom:172.800000pt;}
.y1be_c01283{bottom:173.573333pt;}
.y1bb_c01283{bottom:176.640000pt;}
.y1b8_c01283{bottom:186.626667pt;}
.y1b6_c01283{bottom:187.386667pt;}
.y1b5_c01283{bottom:188.933333pt;}
.y1ba_c01283{bottom:189.693333pt;}
.y1b9_c01283{bottom:190.466667pt;}
.y1b7_c01283{bottom:191.226667pt;}
.y1b4_c01283{bottom:202.746667pt;}
.y1b1_c01283{bottom:203.520000pt;}
.y1af_c01283{bottom:205.053333pt;}
.y1b0_c01283{bottom:206.586667pt;}
.y1b2_c01283{bottom:208.893333pt;}
.y1b3_c01283{bottom:209.666667pt;}
.y1ae_c01283{bottom:218.106667pt;}
.y1ab_c01283{bottom:221.186667pt;}
.y1a9_c01283{bottom:221.946667pt;}
.y1ac_c01283{bottom:223.493333pt;}
.y1ad_c01283{bottom:224.253333pt;}
.y1a8_c01283{bottom:225.786667pt;}
.y1a7_c01283{bottom:226.560000pt;}
.y1aa_c01283{bottom:230.400000pt;}
.y1a5_c01283{bottom:235.773333pt;}
.y1a2_c01283{bottom:236.546667pt;}
.y1a4_c01283{bottom:237.306667pt;}
.y1a0_c01283{bottom:238.080000pt;}
.y19f_c01283{bottom:238.853333pt;}
.y19e_c01283{bottom:239.613333pt;}
.y1a6_c01283{bottom:241.920000pt;}
.y1a3_c01283{bottom:244.986667pt;}
.y1a1_c01283{bottom:247.293333pt;}
.y19a_c01283{bottom:252.666667pt;}
.y195_c01283{bottom:254.213333pt;}
.y19d_c01283{bottom:254.973333pt;}
.y197_c01283{bottom:255.746667pt;}
.y198_c01283{bottom:256.506667pt;}
.y199_c01283{bottom:258.053333pt;}
.y19c_c01283{bottom:258.813333pt;}
.y196_c01283{bottom:260.346667pt;}
.y19b_c01283{bottom:262.653333pt;}
.y192_c01283{bottom:274.946667pt;}
.y194_c01283{bottom:275.706667pt;}
.y191_c01283{bottom:277.253333pt;}
.y193_c01283{bottom:278.013333pt;}
.y18f_c01283{bottom:278.786667pt;}
.y190_c01283{bottom:280.320000pt;}
.y187_c01283{bottom:292.613333pt;}
.y18c_c01283{bottom:293.373333pt;}
.y188_c01283{bottom:294.906667pt;}
.y189_c01283{bottom:295.680000pt;}
.y186_c01283{bottom:297.213333pt;}
.y18d_c01283{bottom:297.986667pt;}
.y18e_c01283{bottom:298.746667pt;}
.y185_c01283{bottom:301.826667pt;}
.y18a_c01283{bottom:303.360000pt;}
.y18b_c01283{bottom:305.666667pt;}
.y181_c01283{bottom:311.040000pt;}
.y184_c01283{bottom:311.813333pt;}
.y17e_c01283{bottom:312.573333pt;}
.y180_c01283{bottom:313.346667pt;}
.y183_c01283{bottom:314.106667pt;}
.y17d_c01283{bottom:314.880000pt;}
.y17c_c01283{bottom:315.653333pt;}
.y182_c01283{bottom:316.413333pt;}
.y17b_c01283{bottom:317.186667pt;}
.y17f_c01283{bottom:317.946667pt;}
.y17a_c01283{bottom:325.626667pt;}
.y173_c01283{bottom:326.400000pt;}
.y171_c01283{bottom:327.173333pt;}
.y170_c01283{bottom:327.933333pt;}
.y16f_c01283{bottom:329.466667pt;}
.y176_c01283{bottom:330.240000pt;}
.y179_c01283{bottom:331.013333pt;}
.y177_c01283{bottom:332.546667pt;}
.y178_c01283{bottom:334.080000pt;}
.y172_c01283{bottom:336.386667pt;}
.y175_c01283{bottom:340.226667pt;}
.y174_c01283{bottom:340.986667pt;}
.y16e_c01283{bottom:341.760000pt;}
.y16c_c01283{bottom:344.826667pt;}
.y166_c01283{bottom:346.373333pt;}
.y167_c01283{bottom:348.666667pt;}
.y168_c01283{bottom:349.440000pt;}
.y16a_c01283{bottom:350.973333pt;}
.y16b_c01283{bottom:351.746667pt;}
.y169_c01283{bottom:354.053333pt;}
.y16d_c01283{bottom:355.586667pt;}
.y163_c01283{bottom:364.800000pt;}
.y165_c01283{bottom:365.573333pt;}
.y162_c01283{bottom:367.106667pt;}
.y160_c01283{bottom:367.866667pt;}
.y164_c01283{bottom:368.640000pt;}
.y161_c01283{bottom:370.173333pt;}
.y15e_c01283{bottom:373.253333pt;}
.y15f_c01283{bottom:374.013333pt;}
.y15c_c01283{bottom:378.626667pt;}
.y154_c01283{bottom:379.386667pt;}
.y15d_c01283{bottom:380.160000pt;}
.y156_c01283{bottom:380.933333pt;}
.y153_c01283{bottom:381.693333pt;}
.y155_c01283{bottom:382.466667pt;}
.y15a_c01283{bottom:383.226667pt;}
.y159_c01283{bottom:384.000000pt;}
.y15b_c01283{bottom:384.773333pt;}
.y158_c01283{bottom:387.066667pt;}
.y157_c01283{bottom:391.680000pt;}
.y152_c01283{bottom:400.133333pt;}
.y14d_c01283{bottom:400.893333pt;}
.y14b_c01283{bottom:402.426667pt;}
.y151_c01283{bottom:403.200000pt;}
.y14c_c01283{bottom:403.973333pt;}
.y150_c01283{bottom:404.733333pt;}
.y14e_c01283{bottom:405.506667pt;}
.y14f_c01283{bottom:409.346667pt;}
.y14a_c01283{bottom:415.493333pt;}
.y147_c01283{bottom:416.253333pt;}
.y146_c01283{bottom:417.026667pt;}
.y140_c01283{bottom:417.786667pt;}
.y142_c01283{bottom:418.560000pt;}
.y145_c01283{bottom:419.333333pt;}
.y148_c01283{bottom:420.866667pt;}
.y149_c01283{bottom:422.400000pt;}
.y144_c01283{bottom:423.173333pt;}
.y143_c01283{bottom:426.240000pt;}
.y141_c01283{bottom:427.773333pt;}
.y13c_c01283{bottom:435.453333pt;}
.y135_c01283{bottom:436.226667pt;}
.y13d_c01283{bottom:436.986667pt;}
.y13f_c01283{bottom:437.760000pt;}
.y13a_c01283{bottom:438.533333pt;}
.y139_c01283{bottom:440.066667pt;}
.y13b_c01283{bottom:441.600000pt;}
.y138_c01283{bottom:442.373333pt;}
.y137_c01283{bottom:443.906667pt;}
.y136_c01283{bottom:444.666667pt;}
.y13e_c01283{bottom:446.213333pt;}
.y133_c01283{bottom:448.506667pt;}
.y134_c01283{bottom:449.280000pt;}
.y132_c01283{bottom:455.426667pt;}
.y130_c01283{bottom:457.733333pt;}
.y131_c01283{bottom:458.493333pt;}
.y12e_c01283{bottom:471.546667pt;}
.y12b_c01283{bottom:472.320000pt;}
.y12a_c01283{bottom:473.093333pt;}
.y12d_c01283{bottom:473.853333pt;}
.y12c_c01283{bottom:474.626667pt;}
.y12f_c01283{bottom:476.933333pt;}
.y129_c01283{bottom:485.373333pt;}
.y124_c01283{bottom:486.906667pt;}
.y127_c01283{bottom:487.680000pt;}
.y122_c01283{bottom:488.453333pt;}
.y126_c01283{bottom:489.213333pt;}
.y121_c01283{bottom:489.986667pt;}
.y123_c01283{bottom:490.746667pt;}
.y120_c01283{bottom:493.053333pt;}
.y125_c01283{bottom:494.586667pt;}
.y128_c01283{bottom:495.360000pt;}
.y11f_c01283{bottom:508.413333pt;}
.y118_c01283{bottom:509.946667pt;}
.y11a_c01283{bottom:510.720000pt;}
.y119_c01283{bottom:511.493333pt;}
.y11e_c01283{bottom:512.253333pt;}
.y11d_c01283{bottom:513.026667pt;}
.y11c_c01283{bottom:513.786667pt;}
.y11b_c01283{bottom:514.560000pt;}
.y111_c01283{bottom:526.080000pt;}
.y112_c01283{bottom:526.853333pt;}
.y110_c01283{bottom:527.613333pt;}
.y10d_c01283{bottom:528.386667pt;}
.y10f_c01283{bottom:529.146667pt;}
.y115_c01283{bottom:529.920000pt;}
.y113_c01283{bottom:530.693333pt;}
.y114_c01283{bottom:531.453333pt;}
.y10e_c01283{bottom:532.226667pt;}
.y10c_c01283{bottom:532.986667pt;}
.y116_c01283{bottom:533.760000pt;}
.y117_c01283{bottom:539.906667pt;}
.y107_c01283{bottom:546.053333pt;}
.y10a_c01283{bottom:547.586667pt;}
.y10b_c01283{bottom:549.893333pt;}
.y109_c01283{bottom:550.653333pt;}
.y108_c01283{bottom:551.426667pt;}
.y106_c01283{bottom:563.706667pt;}
.y104_c01283{bottom:564.480000pt;}
.y105_c01283{bottom:565.253333pt;}
.y103_c01283{bottom:567.546667pt;}
.y102_c01283{bottom:569.093333pt;}
.yfc_c01283{bottom:579.840000pt;}
.yff_c01283{bottom:580.613333pt;}
.yfa_c01283{bottom:581.373333pt;}
.y100_c01283{bottom:582.146667pt;}
.yfb_c01283{bottom:582.906667pt;}
.yf9_c01283{bottom:583.680000pt;}
.yfd_c01283{bottom:584.453333pt;}
.yfe_c01283{bottom:585.213333pt;}
.yf8_c01283{bottom:586.746667pt;}
.yf7_c01283{bottom:587.520000pt;}
.yf6_c01283{bottom:590.586667pt;}
.y101_c01283{bottom:594.426667pt;}
.yf3_c01283{bottom:597.506667pt;}
.yf5_c01283{bottom:599.040000pt;}
.yf0_c01283{bottom:599.813333pt;}
.yf1_c01283{bottom:600.573333pt;}
.yf4_c01283{bottom:601.346667pt;}
.yf2_c01283{bottom:602.106667pt;}
.yee_c01283{bottom:615.933333pt;}
.yef_c01283{bottom:617.466667pt;}
.yea_c01283{bottom:618.240000pt;}
.ye9_c01283{bottom:619.013333pt;}
.yec_c01283{bottom:619.773333pt;}
.yed_c01283{bottom:620.546667pt;}
.yeb_c01283{bottom:621.306667pt;}
.ye8_c01283{bottom:622.080000pt;}
.ye6_c01283{bottom:635.133333pt;}
.ye4_c01283{bottom:635.906667pt;}
.ye3_c01283{bottom:637.440000pt;}
.ye2_c01283{bottom:638.213333pt;}
.ye7_c01283{bottom:638.973333pt;}
.ye5_c01283{bottom:639.746667pt;}
.ye1_c01283{bottom:652.026667pt;}
.ye0_c01283{bottom:652.800000pt;}
.ydd_c01283{bottom:653.573333pt;}
.ydf_c01283{bottom:656.640000pt;}
.yde_c01283{bottom:657.413333pt;}
.ydc_c01283{bottom:658.173333pt;}
.yda_c01283{bottom:668.933333pt;}
.yd8_c01283{bottom:669.693333pt;}
.yd9_c01283{bottom:670.466667pt;}
.yd7_c01283{bottom:671.226667pt;}
.ydb_c01283{bottom:672.000000pt;}
.yd6_c01283{bottom:672.773333pt;}
.yd4_c01283{bottom:674.306667pt;}
.yd5_c01283{bottom:675.066667pt;}
.yd3_c01283{bottom:675.840000pt;}
.yd2_c01283{bottom:676.613333pt;}
.yce_c01283{bottom:686.586667pt;}
.yd0_c01283{bottom:691.200000pt;}
.ycf_c01283{bottom:691.973333pt;}
.ycd_c01283{bottom:692.733333pt;}
.ycc_c01283{bottom:693.506667pt;}
.yd1_c01283{bottom:702.720000pt;}
.yc6_c01283{bottom:706.560000pt;}
.ycb_c01283{bottom:707.333333pt;}
.yc7_c01283{bottom:708.093333pt;}
.yc9_c01283{bottom:708.866667pt;}
.yca_c01283{bottom:710.400000pt;}
.yc8_c01283{bottom:711.173333pt;}
.y6_c01283{bottom:711.933333pt;}
.y5_c01283{bottom:715.013333pt;}
.yc5_c01283{bottom:721.920000pt;}
.yc2_c01283{bottom:723.453333pt;}
.yc0_c01283{bottom:724.226667pt;}
.yc1_c01283{bottom:724.986667pt;}
.yc3_c01283{bottom:727.293333pt;}
.yc4_c01283{bottom:728.066667pt;}
.ybf_c01283{bottom:741.120000pt;}
.ybc_c01283{bottom:741.893333pt;}
.ybb_c01283{bottom:742.653333pt;}
.ybd_c01283{bottom:743.426667pt;}
.ybe_c01283{bottom:744.960000pt;}
.yba_c01283{bottom:746.493333pt;}
.yb3_c01283{bottom:759.546667pt;}
.yb5_c01283{bottom:760.320000pt;}
.yb9_c01283{bottom:761.093333pt;}
.yb8_c01283{bottom:761.853333pt;}
.yb7_c01283{bottom:762.626667pt;}
.yb6_c01283{bottom:763.386667pt;}
.yb4_c01283{bottom:764.160000pt;}
.yac_c01283{bottom:777.213333pt;}
.yaf_c01283{bottom:777.986667pt;}
.yb0_c01283{bottom:780.293333pt;}
.yb1_c01283{bottom:781.053333pt;}
.yad_c01283{bottom:781.826667pt;}
.yae_c01283{bottom:782.586667pt;}
.yb2_c01283{bottom:787.973333pt;}
.ya9_c01283{bottom:794.106667pt;}
.yaa_c01283{bottom:794.880000pt;}
.ya5_c01283{bottom:795.653333pt;}
.ya8_c01283{bottom:796.413333pt;}
.ya6_c01283{bottom:797.186667pt;}
.ya4_c01283{bottom:798.720000pt;}
.ya7_c01283{bottom:799.493333pt;}
.yab_c01283{bottom:800.253333pt;}
.ya1_c01283{bottom:811.773333pt;}
.y9c_c01283{bottom:812.546667pt;}
.y9e_c01283{bottom:816.386667pt;}
.ya2_c01283{bottom:817.146667pt;}
.ya3_c01283{bottom:817.920000pt;}
.y9d_c01283{bottom:818.693333pt;}
.ya0_c01283{bottom:820.986667pt;}
.y9f_c01283{bottom:822.533333pt;}
.y97_c01283{bottom:830.213333pt;}
.y9a_c01283{bottom:830.973333pt;}
.y9b_c01283{bottom:831.746667pt;}
.y93_c01283{bottom:832.506667pt;}
.y96_c01283{bottom:833.280000pt;}
.y98_c01283{bottom:834.053333pt;}
.y99_c01283{bottom:834.813333pt;}
.y95_c01283{bottom:835.586667pt;}
.y94_c01283{bottom:836.346667pt;}
.y92_c01283{bottom:846.333333pt;}
.y8e_c01283{bottom:847.106667pt;}
.y90_c01283{bottom:848.640000pt;}
.y8d_c01283{bottom:849.413333pt;}
.y8f_c01283{bottom:850.946667pt;}
.y8c_c01283{bottom:851.706667pt;}
.y8b_c01283{bottom:852.480000pt;}
.y8a_c01283{bottom:853.253333pt;}
.y91_c01283{bottom:854.013333pt;}
.y84_c01283{bottom:860.160000pt;}
.y85_c01283{bottom:860.933333pt;}
.y81_c01283{bottom:863.226667pt;}
.y86_c01283{bottom:864.773333pt;}
.y82_c01283{bottom:865.533333pt;}
.y80_c01283{bottom:866.306667pt;}
.y83_c01283{bottom:867.066667pt;}
.y88_c01283{bottom:867.840000pt;}
.y87_c01283{bottom:868.613333pt;}
.y89_c01283{bottom:873.986667pt;}
.y7f_c01283{bottom:882.426667pt;}
.y7b_c01283{bottom:883.200000pt;}
.y79_c01283{bottom:883.973333pt;}
.y7a_c01283{bottom:884.733333pt;}
.y7d_c01283{bottom:885.506667pt;}
.y77_c01283{bottom:886.266667pt;}
.y7e_c01283{bottom:887.813333pt;}
.y78_c01283{bottom:888.573333pt;}
.y7c_c01283{bottom:890.106667pt;}
.y73_c01283{bottom:900.866667pt;}
.y70_c01283{bottom:901.626667pt;}
.y74_c01283{bottom:902.400000pt;}
.y6f_c01283{bottom:903.173333pt;}
.y71_c01283{bottom:905.466667pt;}
.y72_c01283{bottom:906.240000pt;}
.y75_c01283{bottom:907.013333pt;}
.y76_c01283{bottom:907.773333pt;}
.y6e_c01283{bottom:916.986667pt;}
.y6b_c01283{bottom:918.533333pt;}
.y69_c01283{bottom:919.293333pt;}
.y68_c01283{bottom:920.066667pt;}
.y6a_c01283{bottom:920.826667pt;}
.y67_c01283{bottom:921.600000pt;}
.y66_c01283{bottom:923.133333pt;}
.y6c_c01283{bottom:923.906667pt;}
.y6d_c01283{bottom:926.973333pt;}
.y60_c01283{bottom:936.186667pt;}
.y63_c01283{bottom:936.960000pt;}
.y64_c01283{bottom:937.733333pt;}
.y5f_c01283{bottom:938.493333pt;}
.y61_c01283{bottom:941.573333pt;}
.y65_c01283{bottom:942.333333pt;}
.y62_c01283{bottom:944.640000pt;}
.y5e_c01283{bottom:953.853333pt;}
.y5c_c01283{bottom:955.386667pt;}
.y5b_c01283{bottom:956.933333pt;}
.y5d_c01283{bottom:959.226667pt;}
.y5a_c01283{bottom:961.533333pt;}
.y56_c01283{bottom:973.053333pt;}
.y57_c01283{bottom:975.360000pt;}
.y58_c01283{bottom:976.133333pt;}
.y59_c01283{bottom:976.893333pt;}
.y55_c01283{bottom:977.666667pt;}
.y54_c01283{bottom:988.413333pt;}
.y50_c01283{bottom:990.720000pt;}
.y4e_c01283{bottom:992.253333pt;}
.y4c_c01283{bottom:993.026667pt;}
.y4d_c01283{bottom:995.333333pt;}
.y4f_c01283{bottom:996.093333pt;}
.y51_c01283{bottom:996.866667pt;}
.y52_c01283{bottom:997.626667pt;}
.y53_c01283{bottom:1003.013333pt;}
.y47_c01283{bottom:1006.853333pt;}
.y43_c01283{bottom:1008.386667pt;}
.y44_c01283{bottom:1009.146667pt;}
.y46_c01283{bottom:1009.920000pt;}
.y49_c01283{bottom:1010.693333pt;}
.y4b_c01283{bottom:1011.453333pt;}
.y45_c01283{bottom:1013.760000pt;}
.y48_c01283{bottom:1014.533333pt;}
.y4a_c01283{bottom:1016.066667pt;}
.y3d_c01283{bottom:1025.280000pt;}
.y3f_c01283{bottom:1026.053333pt;}
.y40_c01283{bottom:1026.813333pt;}
.y3e_c01283{bottom:1027.586667pt;}
.y41_c01283{bottom:1031.426667pt;}
.y42_c01283{bottom:1032.960000pt;}
.y4_c01283{bottom:1039.106667pt;}
.y35_c01283{bottom:1039.866667pt;}
.y38_c01283{bottom:1040.640000pt;}
.y3c_c01283{bottom:1043.706667pt;}
.y36_c01283{bottom:1045.253333pt;}
.y3b_c01283{bottom:1047.546667pt;}
.y39_c01283{bottom:1048.320000pt;}
.y3a_c01283{bottom:1049.093333pt;}
.y37_c01283{bottom:1049.853333pt;}
.y31_c01283{bottom:1062.146667pt;}
.y33_c01283{bottom:1062.906667pt;}
.y32_c01283{bottom:1063.680000pt;}
.y34_c01283{bottom:1064.453333pt;}
.y2e_c01283{bottom:1065.213333pt;}
.y2f_c01283{bottom:1066.746667pt;}
.y30_c01283{bottom:1067.520000pt;}
.y3_c01283{bottom:1068.293333pt;}
.y2_c01283{bottom:1074.426667pt;}
.y29_c01283{bottom:1080.573333pt;}
.y2b_c01283{bottom:1082.880000pt;}
.y2c_c01283{bottom:1083.653333pt;}
.y28_c01283{bottom:1084.413333pt;}
.y2a_c01283{bottom:1085.946667pt;}
.y2d_c01283{bottom:1086.720000pt;}
.y23_c01283{bottom:1098.240000pt;}
.y25_c01283{bottom:1099.013333pt;}
.y21_c01283{bottom:1099.773333pt;}
.y22_c01283{bottom:1100.546667pt;}
.y24_c01283{bottom:1101.306667pt;}
.y20_c01283{bottom:1102.853333pt;}
.y1f_c01283{bottom:1103.613333pt;}
.y27_c01283{bottom:1104.386667pt;}
.y26_c01283{bottom:1108.226667pt;}
.y1c_c01283{bottom:1116.666667pt;}
.y1d_c01283{bottom:1117.440000pt;}
.y1e_c01283{bottom:1118.213333pt;}
.y15_c01283{bottom:1118.973333pt;}
.y17_c01283{bottom:1119.746667pt;}
.y16_c01283{bottom:1120.506667pt;}
.y19_c01283{bottom:1121.280000pt;}
.y18_c01283{bottom:1122.053333pt;}
.y1b_c01283{bottom:1122.813333pt;}
.y1a_c01283{bottom:1133.573333pt;}
.y14_c01283{bottom:1134.333333pt;}
.yf_c01283{bottom:1135.106667pt;}
.y13_c01283{bottom:1137.413333pt;}
.ye_c01283{bottom:1138.173333pt;}
.y12_c01283{bottom:1138.946667pt;}
.y10_c01283{bottom:1139.706667pt;}
.y11_c01283{bottom:1140.480000pt;}
.yd_c01283{bottom:1152.773333pt;}
.y7_c01283{bottom:1153.533333pt;}
.y9_c01283{bottom:1154.306667pt;}
.y8_c01283{bottom:1156.613333pt;}
.yc_c01283{bottom:1157.373333pt;}
.yb_c01283{bottom:1158.146667pt;}
.ya_c01283{bottom:1158.906667pt;}
.y1_c01283{bottom:1161.213333pt;}
.y1cb_c01283{bottom:1223.426667pt;}
.y1ca_c01283{bottom:1228.800000pt;}
.hf_c01283{height:2.764500pt;}
.h1d_c01283{height:4.799479pt;}
.h6_c01283{height:5.519401pt;}
.h12_c01283{height:8.303099pt;}
.h18_c01283{height:11.038802pt;}
.h3_c01283{height:13.822500pt;}
.h1b_c01283{height:16.606198pt;}
.h5_c01283{height:19.341901pt;}
.h4_c01283{height:22.125599pt;}
.h21_c01283{height:24.861302pt;}
.h2_c01283{height:27.645000pt;}
.h1a_c01283{height:30.428698pt;}
.h13_c01283{height:33.164401pt;}
.hc_c01283{height:35.948099pt;}
.hb_c01283{height:38.683802pt;}
.h9_c01283{height:41.467500pt;}
.ha_c01283{height:44.251198pt;}
.h8_c01283{height:46.986901pt;}
.h14_c01283{height:49.770599pt;}
.h11_c01283{height:52.506302pt;}
.h7_c01283{height:55.290000pt;}
.hd_c01283{height:58.073698pt;}
.he_c01283{height:60.809401pt;}
.h10_c01283{height:63.593099pt;}
.h15_c01283{height:66.328802pt;}
.h19_c01283{height:69.112500pt;}
.h1c_c01283{height:71.896198pt;}
.h17_c01283{height:74.631901pt;}
.h1f_c01283{height:77.415599pt;}
.h20_c01283{height:80.151302pt;}
.h1e_c01283{height:82.935000pt;}
.h16_c01283{height:85.718698pt;}
.h22_c01283{height:91.238099pt;}
.h0_c01283{height:1341.693333pt;}
.h1_c01283{height:1342.000000pt;}
.w0_c01283{width:967.680000pt;}
.w1_c01283{width:968.000000pt;}
.x0_c01283{left:0.000000pt;}
.x3_c01283{left:11.520000pt;}
.x1_c01283{left:13.826667pt;}
.x2_c01283{left:29.946667pt;}
.x65_c01283{left:195.066667pt;}
.x7b_c01283{left:204.293333pt;}
.x93_c01283{left:206.586667pt;}
.x6c_c01283{left:208.133333pt;}
.x83_c01283{left:211.973800pt;}
.x45_c01283{left:215.040000pt;}
.x4_c01283{left:216.573333pt;}
.x18_c01283{left:218.106667pt;}
.x84_c01283{left:220.413333pt;}
.xd6_c01283{left:221.946667pt;}
.x9e_c01283{left:223.493333pt;}
.xe5_c01283{left:225.026667pt;}
.xee_c01283{left:226.560000pt;}
.xdf_c01283{left:229.626667pt;}
.xad_c01283{left:231.173333pt;}
.x9f_c01283{left:235.013333pt;}
.x90_c01283{left:237.306667pt;}
.x102_c01283{left:241.146667pt;}
.xb4_c01283{left:242.693333pt;}
.xd8_c01283{left:244.986667pt;}
.x10_c01283{left:246.533333pt;}
.xba_c01283{left:250.373333pt;}
.x3c_c01283{left:252.666667pt;}
.x72_c01283{left:254.973333pt;}
.xcf_c01283{left:257.280000pt;}
.xf5_c01283{left:258.813333pt;}
.x19_c01283{left:260.346667pt;}
.x94_c01283{left:261.893333pt;}
.x28_c01283{left:264.186667pt;}
.x31_c01283{left:268.026667pt;}
.x4f_c01283{left:269.573333pt;}
.xfb_c01283{left:271.106667pt;}
.xc9_c01283{left:272.640000pt;}
.x5_c01283{left:274.173333pt;}
.x66_c01283{left:276.480000pt;}
.xbf_c01283{left:280.320000pt;}
.x3d_c01283{left:283.386667pt;}
.x6d_c01283{left:288.773333pt;}
.x85_c01283{left:293.373333pt;}
.x99_c01283{left:295.680000pt;}
.xe6_c01283{left:298.746667pt;}
.x11_c01283{left:301.826667pt;}
.xcd_c01283{left:303.360000pt;}
.xe3_c01283{left:304.893333pt;}
.x32_c01283{left:307.200000pt;}
.x46_c01283{left:308.733333pt;}
.xbb_c01283{left:312.573333pt;}
.x29_c01283{left:314.106667pt;}
.xa0_c01283{left:316.413333pt;}
.xf1_c01283{left:318.720000pt;}
.x8a_c01283{left:321.786667pt;}
.x6_c01283{left:326.400000pt;}
.xd0_c01283{left:327.933333pt;}
.xe1_c01283{left:330.240000pt;}
.x2a_c01283{left:332.546667pt;}
.x86_c01283{left:335.613333pt;}
.x6f_c01283{left:337.146667pt;}
.x50_c01283{left:342.533333pt;}
.x7c_c01283{left:344.826667pt;}
.x3e_c01283{left:347.133333pt;}
.x67_c01283{left:348.666667pt;}
.x47_c01283{left:350.213333pt;}
.x55_c01283{left:352.506667pt;}
.x7d_c01283{left:354.053333pt;}
.xc6_c01283{left:357.120000pt;}
.xff_c01283{left:359.426667pt;}
.x103_c01283{left:362.493333pt;}
.x2b_c01283{left:364.026667pt;}
.xca_c01283{left:365.573333pt;}
.x8b_c01283{left:367.106667pt;}
.x48_c01283{left:369.413333pt;}
.x12_c01283{left:373.253333pt;}
.x95_c01283{left:376.320000pt;}
.x1a_c01283{left:377.853333pt;}
.x33_c01283{left:380.160000pt;}
.xdd_c01283{left:381.693333pt;}
.xaa_c01283{left:383.226667pt;}
.xa6_c01283{left:385.533333pt;}
.xb5_c01283{left:387.840000pt;}
.xe4_c01283{left:389.373333pt;}
.x56_c01283{left:395.520000pt;}
.x68_c01283{left:397.826667pt;}
.xd1_c01283{left:399.360000pt;}
.x7e_c01283{left:401.666667pt;}
.xcb_c01283{left:403.200000pt;}
.xea_c01283{left:405.507133pt;}
.x57_c01283{left:407.813333pt;}
.x1b_c01283{left:411.653333pt;}
.x7_c01283{left:413.946667pt;}
.x73_c01283{left:415.493333pt;}
.xfc_c01283{left:417.026667pt;}
.xab_c01283{left:418.560000pt;}
.xae_c01283{left:420.093333pt;}
.x6e_c01283{left:422.400000pt;}
.x74_c01283{left:423.933333pt;}
.x3f_c01283{left:428.546667pt;}
.xc0_c01283{left:430.080000pt;}
.x1c_c01283{left:431.613333pt;}
.x8c_c01283{left:433.146667pt;}
.x51_c01283{left:435.453333pt;}
.x7f_c01283{left:436.986667pt;}
.x8_c01283{left:438.533333pt;}
.xa1_c01283{left:440.066667pt;}
.x105_c01283{left:441.600000pt;}
.xf4_c01283{left:443.906667pt;}
.xeb_c01283{left:445.440000pt;}
.xc7_c01283{left:446.973333pt;}
.x69_c01283{left:450.053333pt;}
.xc1_c01283{left:451.586667pt;}
.x34_c01283{left:453.120000pt;}
.xaf_c01283{left:456.186667pt;}
.x9_c01283{left:457.733333pt;}
.xc2_c01283{left:460.800000pt;}
.x13_c01283{left:462.333333pt;}
.xd9_c01283{left:466.173333pt;}
.x49_c01283{left:467.706667pt;}
.xfd_c01283{left:470.786667pt;}
.xef_c01283{left:472.320000pt;}
.x70_c01283{left:473.853333pt;}
.xda_c01283{left:475.386667pt;}
.xb0_c01283{left:479.226667pt;}
.xe7_c01283{left:481.533333pt;}
.x87_c01283{left:484.613333pt;}
.x1d_c01283{left:487.680000pt;}
.xa_c01283{left:489.213333pt;}
.x14_c01283{left:491.520000pt;}
.x88_c01283{left:493.053333pt;}
.x75_c01283{left:496.133333pt;}
.xf6_c01283{left:497.666667pt;}
.x15_c01283{left:499.200000pt;}
.x1e_c01283{left:501.506667pt;}
.x40_c01283{left:503.813333pt;}
.xe8_c01283{left:506.106667pt;}
.x1f_c01283{left:507.653333pt;}
.x35_c01283{left:509.946667pt;}
.x52_c01283{left:511.493333pt;}
.x89_c01283{left:513.786667pt;}
.x96_c01283{left:515.333333pt;}
.xa7_c01283{left:516.866667pt;}
.xe0_c01283{left:518.400000pt;}
.x106_c01283{left:519.933333pt;}
.xb_c01283{left:525.306667pt;}
.x16_c01283{left:529.146667pt;}
.xa8_c01283{left:530.693333pt;}
.xf8_c01283{left:532.226667pt;}
.xa2_c01283{left:534.533333pt;}
.xb6_c01283{left:536.826667pt;}
.xc_c01283{left:539.133333pt;}
.x6a_c01283{left:540.666667pt;}
.xb7_c01283{left:542.213333pt;}
.x76_c01283{left:543.746667pt;}
.xe2_c01283{left:545.280000pt;}
.x4a_c01283{left:546.813333pt;}
.x41_c01283{left:549.120000pt;}
.x100_c01283{left:550.653333pt;}
.xd7_c01283{left:552.186667pt;}
.x4b_c01283{left:553.733333pt;}
.xe9_c01283{left:556.026667pt;}
.x91_c01283{left:558.333333pt;}
.xcc_c01283{left:559.866667pt;}
.x58_c01283{left:562.946667pt;}
.x4c_c01283{left:564.480000pt;}
.x80_c01283{left:568.320000pt;}
.x20_c01283{left:570.626667pt;}
.x104_c01283{left:572.160000pt;}
.x9a_c01283{left:576.773333pt;}
.xa3_c01283{left:578.306667pt;}
.x42_c01283{left:580.613333pt;}
.xde_c01283{left:582.146667pt;}
.x61_c01283{left:583.680000pt;}
.x53_c01283{left:586.746667pt;}
.xce_c01283{left:589.053333pt;}
.x36_c01283{left:590.586667pt;}
.x59_c01283{left:593.666667pt;}
.xc3_c01283{left:595.200000pt;}
.x97_c01283{left:596.733333pt;}
.xa4_c01283{left:598.266667pt;}
.x2c_c01283{left:601.346667pt;}
.xb1_c01283{left:602.880000pt;}
.xf7_c01283{left:604.413333pt;}
.x21_c01283{left:605.946667pt;}
.xc8_c01283{left:610.560000pt;}
.xf2_c01283{left:612.093333pt;}
.x22_c01283{left:613.626667pt;}
.xf9_c01283{left:615.173333pt;}
.xec_c01283{left:616.706667pt;}
.x23_c01283{left:622.080000pt;}
.xb8_c01283{left:624.386667pt;}
.x62_c01283{left:626.693333pt;}
.xbc_c01283{left:628.986667pt;}
.x92_c01283{left:632.066667pt;}
.xa9_c01283{left:633.600000pt;}
.xd_c01283{left:635.906667pt;}
.x37_c01283{left:640.506667pt;}
.x77_c01283{left:642.813333pt;}
.x4d_c01283{left:644.346667pt;}
.xb2_c01283{left:646.653333pt;}
.x5a_c01283{left:648.186667pt;}
.x24_c01283{left:650.493333pt;}
.xd2_c01283{left:652.026667pt;}
.x98_c01283{left:654.333333pt;}
.xed_c01283{left:655.866667pt;}
.xf3_c01283{left:657.413333pt;}
.x81_c01283{left:658.946667pt;}
.xb9_c01283{left:660.480000pt;}
.x2d_c01283{left:662.786667pt;}
.x25_c01283{left:665.093333pt;}
.x43_c01283{left:666.626667pt;}
.xfe_c01283{left:668.160000pt;}
.xd3_c01283{left:670.466667pt;}
.x5b_c01283{left:672.000000pt;}
.x101_c01283{left:674.306667pt;}
.x54_c01283{left:676.613333pt;}
.x38_c01283{left:678.146667pt;}
.xe_c01283{left:679.680000pt;}
.x5c_c01283{left:686.586667pt;}
.x39_c01283{left:689.666667pt;}
.x6b_c01283{left:692.733333pt;}
.xfa_c01283{left:694.266667pt;}
.xf_c01283{left:695.813333pt;}
.x3a_c01283{left:698.106667pt;}
.x8d_c01283{left:699.653333pt;}
.xbd_c01283{left:704.253333pt;}
.xd4_c01283{left:705.786667pt;}
.x71_c01283{left:708.093333pt;}
.x8e_c01283{left:710.400000pt;}
.x4e_c01283{left:714.240000pt;}
.x5d_c01283{left:715.773333pt;}
.x26_c01283{left:717.306667pt;}
.x82_c01283{left:718.853333pt;}
.x9b_c01283{left:720.386667pt;}
.x2e_c01283{left:722.693333pt;}
.x108_c01283{left:724.226667pt;}
.x78_c01283{left:726.533333pt;}
.xc4_c01283{left:728.066667pt;}
.xac_c01283{left:729.600000pt;}
.x5e_c01283{left:731.906667pt;}
.x27_c01283{left:734.213333pt;}
.x17_c01283{left:736.506667pt;}
.x63_c01283{left:738.813333pt;}
.xa5_c01283{left:741.120000pt;}
.xb3_c01283{left:742.653333pt;}
.x3b_c01283{left:744.960000pt;}
.xdb_c01283{left:747.266667pt;}
.x8f_c01283{left:751.106667pt;}
.x107_c01283{left:752.640000pt;}
.x79_c01283{left:755.706667pt;}
.x44_c01283{left:760.320000pt;}
.xd5_c01283{left:761.853333pt;}
.x9c_c01283{left:763.386667pt;}
.x5f_c01283{left:764.933333pt;}
.xbe_c01283{left:767.226667pt;}
.x7a_c01283{left:775.680000pt;}
.x9d_c01283{left:782.586667pt;}
.xdc_c01283{left:784.133333pt;}
.x64_c01283{left:790.266667pt;}
.x60_c01283{left:794.880000pt;}
.xc5_c01283{left:796.413333pt;}
.xf0_c01283{left:797.946667pt;}
.x2f_c01283{left:817.146667pt;}
.x30_c01283{left:821.760000pt;}
.x109_c01283{left:834.053333pt;}
.x10a_c01283{left:854.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_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_4bba40a039f1729798cefa51.woff2')format("woff");}.ff1_c01284{font-family:ff1_c01284;line-height:1.109863;font-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_c01284{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m29_c01284{transform:matrix(0.077050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077050,0.000000,0.000000,0.250000,0,0);}
.m14_c01284{transform:matrix(0.095025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095025,0.000000,0.000000,0.250000,0,0);}
.m147_c01284{transform:matrix(0.103675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103675,0.000000,0.000000,0.250000,0,0);}
.m14e_c01284{transform:matrix(0.103825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103825,0.000000,0.000000,0.250000,0,0);}
.m48_c01284{transform:matrix(0.110075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110075,0.000000,0.000000,0.250000,0,0);}
.m38_c01284{transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110300,0.000000,0.000000,0.250000,0,0);}
.ma2_c01284{transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);}
.m4a_c01284{transform:matrix(0.112300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112300,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01284{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m44_c01284{transform:matrix(0.113075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113075,0.000000,0.000000,0.250000,0,0);}
.m6a_c01284{transform:matrix(0.113400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113400,0.000000,0.000000,0.250000,0,0);}
.m7e_c01284{transform:matrix(0.113450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113450,0.000000,0.000000,0.250000,0,0);}
.m182_c01284{transform:matrix(0.114925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114925,0.000000,0.000000,0.250000,0,0);}
.m7d_c01284{transform:matrix(0.115225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115225,0.000000,0.000000,0.250000,0,0);}
.m148_c01284{transform:matrix(0.115475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115475,0.000000,0.000000,0.250000,0,0);}
.maa_c01284{transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);}
.m152_c01284{transform:matrix(0.118400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118400,0.000000,0.000000,0.250000,0,0);}
.m41_c01284{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m146_c01284{transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);}
.m7f_c01284{transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);}
.m191_c01284{transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01284{transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122675,0.000000,0.000000,0.250000,0,0);}
.m19a_c01284{transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);}
.m81_c01284{transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);}
.m183_c01284{transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);}
.m32_c01284{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m16a_c01284{transform:matrix(0.125650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125650,0.000000,0.000000,0.250000,0,0);}
.m46_c01284{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m194_c01284{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m43_c01284{transform:matrix(0.129475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129475,0.000000,0.000000,0.250000,0,0);}
.m134_c01284{transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);}
.m13e_c01284{transform:matrix(0.130925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130925,0.000000,0.000000,0.250000,0,0);}
.m70_c01284{transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);}
.m51_c01284{transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);}
.m50_c01284{transform:matrix(0.133850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133850,0.000000,0.000000,0.250000,0,0);}
.mbc_c01284{transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);}
.m1e_c01284{transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);}
.m118_c01284{transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);}
.m69_c01284{transform:matrix(0.135600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135600,0.000000,0.000000,0.250000,0,0);}
.m169_c01284{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m27_c01284{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.m28_c01284{transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);}
.mb5_c01284{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m72_c01284{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.m14c_c01284{transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);}
.m177_c01284{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m154_c01284{transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);}
.m11a_c01284{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);}
.md4_c01284{transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);}
.mb6_c01284{transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);}
.m186_c01284{transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);}
.m8e_c01284{transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);}
.mc1_c01284{transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);}
.m0_c01284{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m102_c01284{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);}
.mb7_c01284{transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);}
.m82_c01284{transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);}
.m3b_c01284{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m16f_c01284{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.m130_c01284{transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);}
.m16b_c01284{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.m36_c01284{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.m16d_c01284{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mf1_c01284{transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);}
.m161_c01284{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m92_c01284{transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);}
.mff_c01284{transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);}
.maf_c01284{transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);}
.m109_c01284{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.mf6_c01284{transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);}
.m78_c01284{transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);}
.m132_c01284{transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01284{transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);}
.m141_c01284{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);}
.m103_c01284{transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);}
.m1c_c01284{transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);}
.m59_c01284{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);}
.m42_c01284{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m187_c01284{transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);}
.m5a_c01284{transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);}
.m144_c01284{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);}
.m13c_c01284{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01284{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.m12b_c01284{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m55_c01284{transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);}
.m125_c01284{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.m5c_c01284{transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);}
.mfe_c01284{transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);}
.m6b_c01284{transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);}
.m9f_c01284{transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);}
.m12_c01284{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.me9_c01284{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.mae_c01284{transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);}
.ma0_c01284{transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);}
.md2_c01284{transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);}
.m75_c01284{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.m167_c01284{transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162725,0.000000,0.000000,0.250000,0,0);}
.mc5_c01284{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m2e_c01284{transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);}
.m7b_c01284{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m101_c01284{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.m25_c01284{transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01284{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m31_c01284{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.m4f_c01284{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01284{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.md7_c01284{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.ma3_c01284{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m181_c01284{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);}
.m113_c01284{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m131_c01284{transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);}
.m15d_c01284{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m80_c01284{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);}
.mcf_c01284{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.m157_c01284{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);}
.m13_c01284{transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);}
.ma8_c01284{transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);}
.m3f_c01284{transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);}
.m19f_c01284{transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);}
.m16_c01284{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m14f_c01284{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.me3_c01284{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);}
.m1ab_c01284{transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);}
.md6_c01284{transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);}
.m120_c01284{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.md3_c01284{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);}
.m5b_c01284{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.m14a_c01284{transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);}
.m20_c01284{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.mf3_c01284{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.m2_c01284{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m4c_c01284{transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);}
.m153_c01284{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.me1_c01284{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.m2d_c01284{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.m180_c01284{transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);}
.mb1_c01284{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);}
.m3d_c01284{transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);}
.mc9_c01284{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m33_c01284{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);}
.m185_c01284{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m12f_c01284{transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01284{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.md5_c01284{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m158_c01284{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m105_c01284{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);}
.m15b_c01284{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m53_c01284{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);}
.mb4_c01284{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.m13f_c01284{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);}
.m8a_c01284{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);}
.mb0_c01284{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.ma6_c01284{transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181050,0.000000,0.000000,0.250000,0,0);}
.m133_c01284{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.ma9_c01284{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.m23_c01284{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.m123_c01284{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.mf4_c01284{transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);}
.m17e_c01284{transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);}
.mfb_c01284{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m35_c01284{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m175_c01284{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);}
.m190_c01284{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.m26_c01284{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);}
.m121_c01284{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);}
.m13b_c01284{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);}
.m64_c01284{transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);}
.m142_c01284{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);}
.m39_c01284{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m166_c01284{transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);}
.m156_c01284{transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);}
.m197_c01284{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m12c_c01284{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);}
.md9_c01284{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);}
.m192_c01284{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);}
.mab_c01284{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);}
.m15a_c01284{transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);}
.m108_c01284{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);}
.mdc_c01284{transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);}
.m10a_c01284{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.m15e_c01284{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.mc6_c01284{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.m1b_c01284{transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);}
.m18e_c01284{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);}
.m198_c01284{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);}
.mef_c01284{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.m18b_c01284{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01284{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m179_c01284{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);}
.m34_c01284{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.m139_c01284{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.m172_c01284{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m52_c01284{transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);}
.md0_c01284{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.m11_c01284{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc8_c01284{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);}
.m111_c01284{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);}
.m18f_c01284{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.m163_c01284{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);}
.m6c_c01284{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);}
.mcd_c01284{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);}
.m65_c01284{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);}
.mbd_c01284{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);}
.m2a_c01284{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);}
.m2b_c01284{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);}
.m17c_c01284{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);}
.md1_c01284{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m16c_c01284{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.m117_c01284{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m136_c01284{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);}
.mf9_c01284{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.m77_c01284{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);}
.med_c01284{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m4e_c01284{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m176_c01284{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);}
.mca_c01284{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.ma7_c01284{transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);}
.m89_c01284{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.md8_c01284{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);}
.m12e_c01284{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);}
.me7_c01284{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m151_c01284{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.m18d_c01284{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.mb8_c01284{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.m17a_c01284{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);}
.mc7_c01284{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);}
.m9e_c01284{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);}
.m193_c01284{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);}
.m1a0_c01284{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.m162_c01284{transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);}
.m116_c01284{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m10f_c01284{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);}
.m8f_c01284{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);}
.m13a_c01284{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m15c_c01284{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);}
.m37_c01284{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);}
.m91_c01284{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m19b_c01284{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);}
.mf2_c01284{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m164_c01284{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);}
.mde_c01284{transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);}
.m84_c01284{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.mb3_c01284{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);}
.m8b_c01284{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);}
.m199_c01284{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m17f_c01284{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.m76_c01284{transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);}
.m173_c01284{transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);}
.me0_c01284{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m1d_c01284{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m137_c01284{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);}
.m128_c01284{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);}
.mdf_c01284{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);}
.m15f_c01284{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);}
.m71_c01284{transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);}
.m3_c01284{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);}
.me8_c01284{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m17d_c01284{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);}
.m159_c01284{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);}
.m57_c01284{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);}
.me4_c01284{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.mb9_c01284{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);}
.m122_c01284{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.mcb_c01284{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);}
.mc3_c01284{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);}
.ma1_c01284{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);}
.mf8_c01284{transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);}
.m195_c01284{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m97_c01284{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);}
.m11e_c01284{transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);}
.m56_c01284{transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);}
.mac_c01284{transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);}
.ma5_c01284{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m127_c01284{transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);}
.m150_c01284{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);}
.mfa_c01284{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);}
.m174_c01284{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);}
.m165_c01284{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.m47_c01284{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m99_c01284{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.m184_c01284{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m143_c01284{transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);}
.m14b_c01284{transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);}
.m12d_c01284{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);}
.mc2_c01284{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);}
.ma4_c01284{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);}
.m54_c01284{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);}
.m11f_c01284{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);}
.m171_c01284{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);}
.m168_c01284{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m106_c01284{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);}
.m96_c01284{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);}
.m1a4_c01284{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);}
.m24_c01284{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m4_c01284{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);}
.m119_c01284{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);}
.m126_c01284{transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);}
.m129_c01284{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m16e_c01284{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);}
.m3e_c01284{transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);}
.m135_c01284{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);}
.m112_c01284{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);}
.m66_c01284{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.m79_c01284{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m149_c01284{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.mcc_c01284{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01284{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m100_c01284{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m140_c01284{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);}
.m160_c01284{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);}
.mea_c01284{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);}
.m196_c01284{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m11b_c01284{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01284{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);}
.m40_c01284{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);}
.m93_c01284{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m85_c01284{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);}
.m4b_c01284{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);}
.m2f_c01284{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);}
.m21_c01284{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m19_c01284{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01284{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01284{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);}
.m1f_c01284{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m98_c01284{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);}
.m94_c01284{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);}
.m30_c01284{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m63_c01284{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);}
.m8_c01284{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01284{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01284{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);}
.m18_c01284{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mdb_c01284{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);}
.mda_c01284{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);}
.mba_c01284{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me5_c01284{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m83_c01284{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);}
.mec_c01284{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m49_c01284{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mbe_c01284{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);}
.m95_c01284{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01284{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c01284{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m115_c01284{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m114_c01284{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m138_c01284{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01284{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m104_c01284{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m10d_c01284{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);}
.m110_c01284{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m62_c01284{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf7_c01284{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me2_c01284{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m17b_c01284{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);}
.m61_c01284{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);}
.mdd_c01284{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m9d_c01284{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m87_c01284{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);}
.m9b_c01284{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m124_c01284{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m88_c01284{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.meb_c01284{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01284{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m10_c01284{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);}
.m188_c01284{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);}
.m67_c01284{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m60_c01284{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m10e_c01284{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);}
.mf5_c01284{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m145_c01284{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m155_c01284{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01284{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m73_c01284{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);}
.m14d_c01284{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);}
.m6f_c01284{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m7_c01284{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m15_c01284{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);}
.mc4_c01284{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.ma_c01284{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m68_c01284{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m12a_c01284{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m8d_c01284{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m9_c01284{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m18c_c01284{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01284{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01284{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m11c_c01284{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m10b_c01284{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m90_c01284{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m86_c01284{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mfc_c01284{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01284{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);}
.m6e_c01284{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mbb_c01284{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.me6_c01284{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m11d_c01284{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);}
.m58_c01284{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);}
.m10c_c01284{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01284{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01284{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mee_c01284{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mce_c01284{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m19c_c01284{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m45_c01284{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m18a_c01284{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.mc_c01284{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mbf_c01284{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01284{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mf0_c01284{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01284{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.m107_c01284{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m22_c01284{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mf_c01284{transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01284{transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);}
.mfd_c01284{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01284{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mc0_c01284{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m19e_c01284{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.mad_c01284{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m74_c01284{transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.020000,0.000000,0.000000,0.250000,0,0);}
.m178_c01284{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.mb_c01284{transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);}
.m170_c01284{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m13d_c01284{transform:matrix(1.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.705000,0.000000,0.000000,0.250000,0,0);}
.m19d_c01284{transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);}
.m9a_c01284{transform:matrix(2.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.185000,0.000000,0.000000,0.250000,0,0);}
.md_c01284{transform:matrix(2.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.452500,0.000000,0.000000,0.250000,0,0);}
.m189_c01284{transform:matrix(3.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.007500,0.000000,0.000000,0.250000,0,0);}
.me_c01284{transform:matrix(3.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.597500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01284{transform:matrix(5.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.327500,0.000000,0.000000,0.250000,0,0);}
.v1_c01284{vertical-align:-17.280000px;}
.v3_c01284{vertical-align:-10.380000px;}
.v2_c01284{vertical-align:-6.960000px;}
.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;}
}
.ws3_c01284{word-spacing:-27.837000px;}
.ws1_c01284{word-spacing:-19.972860px;}
.ws0_c01284{word-spacing:-19.059600px;}
.ws2_c01284{word-spacing:-12.663840px;}
.ws4_c01284{word-spacing:0.000000px;}
.fc0_c01284{color:transparent;}
.fs8_c01284{font-size:3.456000px;}
.fs1_c01284{font-size:6.000000px;}
.fs1c_c01284{font-size:6.900000px;}
.fs0_c01284{font-size:10.380000px;}
.fs7_c01284{font-size:13.800000px;}
.fs9_c01284{font-size:17.280000px;}
.fsb_c01284{font-size:20.760000px;}
.fsc_c01284{font-size:24.180000px;}
.fse_c01284{font-size:27.660000px;}
.fsa_c01284{font-size:31.080000px;}
.fsd_c01284{font-size:34.560000px;}
.fs1d_c01284{font-size:38.040000px;}
.fs16_c01284{font-size:41.460000px;}
.fs13_c01284{font-size:44.940000px;}
.fs11_c01284{font-size:48.360000px;}
.fs17_c01284{font-size:51.840000px;}
.fs2_c01284{font-size:55.320000px;}
.fs14_c01284{font-size:58.740000px;}
.fsf_c01284{font-size:62.220000px;}
.fs19_c01284{font-size:65.640000px;}
.fs6_c01284{font-size:69.120000px;}
.fs15_c01284{font-size:72.600000px;}
.fs10_c01284{font-size:76.020000px;}
.fs12_c01284{font-size:79.500000px;}
.fs18_c01284{font-size:82.920000px;}
.fs1a_c01284{font-size:86.400000px;}
.fs1b_c01284{font-size:89.880000px;}
.fs3_c01284{font-size:93.300000px;}
.fs1e_c01284{font-size:96.780000px;}
.fs5_c01284{font-size:100.200000px;}
.fs22_c01284{font-size:103.680000px;}
.fs4_c01284{font-size:107.160000px;}
.fs21_c01284{font-size:110.580000px;}
.fs20_c01284{font-size:114.060000px;}
.fs1f_c01284{font-size:120.960000px;}
.y0_c01284{bottom:0.000000px;}
.y1cf_c01284{bottom:173.670000px;}
.y1ce_c01284{bottom:174.525000px;}
.y1cd_c01284{bottom:175.395000px;}
.y1d0_c01284{bottom:180.570000px;}
.y1cb_c01284{bottom:184.890000px;}
.y1ca_c01284{bottom:185.760000px;}
.y1c9_c01284{bottom:186.630000px;}
.y1cc_c01284{bottom:187.485000px;}
.y1c7_c01284{bottom:189.210000px;}
.y1c8_c01284{bottom:190.080000px;}
.y1c6_c01284{bottom:192.675000px;}
.y1c4_c01284{bottom:194.400000px;}
.y1c3_c01284{bottom:196.125000px;}
.y1c2_c01284{bottom:199.590000px;}
.y1c5_c01284{bottom:203.910000px;}
.y1bf_c01284{bottom:207.360000px;}
.y1bd_c01284{bottom:208.230000px;}
.y1c0_c01284{bottom:209.085000px;}
.y1be_c01284{bottom:209.955000px;}
.y1c1_c01284{bottom:210.810000px;}
.y1bc_c01284{bottom:212.550000px;}
.y1b8_c01284{bottom:216.000000px;}
.y1b7_c01284{bottom:216.870000px;}
.y1b9_c01284{bottom:218.595000px;}
.y1ba_c01284{bottom:219.450000px;}
.y1bb_c01284{bottom:234.150000px;}
.y1b4_c01284{bottom:235.875000px;}
.y1b6_c01284{bottom:236.730000px;}
.y1b5_c01284{bottom:240.195000px;}
.y1b2_c01284{bottom:254.880000px;}
.y1b1_c01284{bottom:256.605000px;}
.y1b3_c01284{bottom:260.925000px;}
.y1b0_c01284{bottom:263.520000px;}
.y1af_c01284{bottom:275.610000px;}
.y1ab_c01284{bottom:276.480000px;}
.y1ae_c01284{bottom:277.350000px;}
.y1ac_c01284{bottom:279.075000px;}
.y1ad_c01284{bottom:281.670000px;}
.y1a9_c01284{bottom:285.990000px;}
.y1aa_c01284{bottom:287.715000px;}
.y1a8_c01284{bottom:289.440000px;}
.y1a7_c01284{bottom:291.165000px;}
.y1a6_c01284{bottom:297.210000px;}
.y1a5_c01284{bottom:298.080000px;}
.y1a2_c01284{bottom:298.950000px;}
.y1a4_c01284{bottom:302.400000px;}
.y1a3_c01284{bottom:303.270000px;}
.y1a0_c01284{bottom:323.130000px;}
.y1a1_c01284{bottom:335.235000px;}
.y19d_c01284{bottom:336.090000px;}
.y19e_c01284{bottom:338.685000px;}
.y19c_c01284{bottom:339.555000px;}
.y19f_c01284{bottom:342.150000px;}
.y19b_c01284{bottom:359.430000px;}
.y199_c01284{bottom:360.285000px;}
.y19a_c01284{bottom:362.880000px;}
.y198_c01284{bottom:364.605000px;}
.y197_c01284{bottom:365.475000px;}
.y192_c01284{bottom:366.330000px;}
.y195_c01284{bottom:369.795000px;}
.y193_c01284{bottom:370.650000px;}
.y196_c01284{bottom:372.390000px;}
.y194_c01284{bottom:374.115000px;}
.y191_c01284{bottom:376.710000px;}
.y18f_c01284{bottom:378.435000px;}
.y18c_c01284{bottom:379.290000px;}
.y18d_c01284{bottom:380.160000px;}
.y18b_c01284{bottom:381.030000px;}
.y18e_c01284{bottom:384.480000px;}
.y18a_c01284{bottom:388.800000px;}
.y190_c01284{bottom:395.715000px;}
.y189_c01284{bottom:399.165000px;}
.y188_c01284{bottom:400.890000px;}
.y187_c01284{bottom:401.760000px;}
.y186_c01284{bottom:402.630000px;}
.y184_c01284{bottom:403.485000px;}
.y185_c01284{bottom:404.355000px;}
.y181_c01284{bottom:419.040000px;}
.y182_c01284{bottom:420.765000px;}
.y180_c01284{bottom:421.635000px;}
.y183_c01284{bottom:422.490000px;}
.y17f_c01284{bottom:429.405000px;}
.y17e_c01284{bottom:440.640000px;}
.y17d_c01284{bottom:445.830000px;}
.y17c_c01284{bottom:446.685000px;}
.y17b_c01284{bottom:447.555000px;}
.y179_c01284{bottom:459.645000px;}
.y175_c01284{bottom:460.515000px;}
.y174_c01284{bottom:461.370000px;}
.y178_c01284{bottom:463.110000px;}
.y173_c01284{bottom:463.965000px;}
.y177_c01284{bottom:466.560000px;}
.y176_c01284{bottom:467.430000px;}
.y17a_c01284{bottom:469.155000px;}
.y170_c01284{bottom:481.245000px;}
.y16f_c01284{bottom:482.970000px;}
.y16d_c01284{bottom:484.710000px;}
.y171_c01284{bottom:485.565000px;}
.y16e_c01284{bottom:487.290000px;}
.y16c_c01284{bottom:488.160000px;}
.y172_c01284{bottom:496.800000px;}
.y16b_c01284{bottom:500.250000px;}
.y167_c01284{bottom:501.120000px;}
.y165_c01284{bottom:501.990000px;}
.y164_c01284{bottom:502.845000px;}
.y166_c01284{bottom:503.715000px;}
.y16a_c01284{bottom:505.440000px;}
.y163_c01284{bottom:506.310000px;}
.y168_c01284{bottom:508.035000px;}
.y169_c01284{bottom:508.890000px;}
.y162_c01284{bottom:513.210000px;}
.y15a_c01284{bottom:516.675000px;}
.y15e_c01284{bottom:517.530000px;}
.y15f_c01284{bottom:519.270000px;}
.y158_c01284{bottom:520.125000px;}
.y156_c01284{bottom:520.995000px;}
.y157_c01284{bottom:521.850000px;}
.y15b_c01284{bottom:522.720000px;}
.y15c_c01284{bottom:523.590000px;}
.y161_c01284{bottom:524.445000px;}
.y160_c01284{bottom:525.315000px;}
.y159_c01284{bottom:527.910000px;}
.y15d_c01284{bottom:528.765000px;}
.y155_c01284{bottom:540.000000px;}
.y154_c01284{bottom:540.870000px;}
.y151_c01284{bottom:541.725000px;}
.y150_c01284{bottom:542.595000px;}
.y153_c01284{bottom:543.450000px;}
.y14e_c01284{bottom:544.320000px;}
.y14f_c01284{bottom:545.190000px;}
.y152_c01284{bottom:550.365000px;}
.y14d_c01284{bottom:564.195000px;}
.y14c_c01284{bottom:565.920000px;}
.y14b_c01284{bottom:566.790000px;}
.y14a_c01284{bottom:567.645000px;}
.y149_c01284{bottom:568.515000px;}
.y148_c01284{bottom:569.370000px;}
.y147_c01284{bottom:580.605000px;}
.y145_c01284{bottom:581.475000px;}
.y144_c01284{bottom:582.330000px;}
.y146_c01284{bottom:583.200000px;}
.y141_c01284{bottom:584.070000px;}
.y142_c01284{bottom:590.115000px;}
.y143_c01284{bottom:590.970000px;}
.y13f_c01284{bottom:600.480000px;}
.y13c_c01284{bottom:603.075000px;}
.y13b_c01284{bottom:603.930000px;}
.y140_c01284{bottom:604.800000px;}
.y13a_c01284{bottom:605.670000px;}
.y13d_c01284{bottom:606.525000px;}
.y139_c01284{bottom:607.395000px;}
.y13e_c01284{bottom:609.120000px;}
.y134_c01284{bottom:623.805000px;}
.y137_c01284{bottom:624.675000px;}
.y138_c01284{bottom:625.530000px;}
.y132_c01284{bottom:626.400000px;}
.y133_c01284{bottom:627.270000px;}
.y135_c01284{bottom:628.125000px;}
.y136_c01284{bottom:628.995000px;}
.y131_c01284{bottom:634.170000px;}
.y12e_c01284{bottom:641.955000px;}
.y12c_c01284{bottom:643.680000px;}
.y12b_c01284{bottom:644.550000px;}
.y127_c01284{bottom:645.405000px;}
.y12f_c01284{bottom:646.275000px;}
.y12d_c01284{bottom:647.130000px;}
.y129_c01284{bottom:648.000000px;}
.y12a_c01284{bottom:648.870000px;}
.y128_c01284{bottom:649.725000px;}
.y130_c01284{bottom:651.450000px;}
.y125_c01284{bottom:661.830000px;}
.y122_c01284{bottom:662.685000px;}
.y126_c01284{bottom:663.555000px;}
.y120_c01284{bottom:665.280000px;}
.y121_c01284{bottom:667.005000px;}
.y124_c01284{bottom:667.875000px;}
.y123_c01284{bottom:669.600000px;}
.y11f_c01284{bottom:673.920000px;}
.y11d_c01284{bottom:679.110000px;}
.y11c_c01284{bottom:680.835000px;}
.y11b_c01284{bottom:681.690000px;}
.y11e_c01284{bottom:684.285000px;}
.y117_c01284{bottom:685.155000px;}
.y115_c01284{bottom:686.010000px;}
.y11a_c01284{bottom:686.880000px;}
.y119_c01284{bottom:687.750000px;}
.y118_c01284{bottom:688.605000px;}
.y116_c01284{bottom:690.330000px;}
.y113_c01284{bottom:700.710000px;}
.y112_c01284{bottom:701.565000px;}
.y110_c01284{bottom:702.435000px;}
.y10f_c01284{bottom:704.160000px;}
.y114_c01284{bottom:705.030000px;}
.y10d_c01284{bottom:706.755000px;}
.y111_c01284{bottom:709.350000px;}
.y10e_c01284{bottom:710.205000px;}
.y10a_c01284{bottom:721.440000px;}
.y107_c01284{bottom:723.165000px;}
.y106_c01284{bottom:724.035000px;}
.y105_c01284{bottom:724.890000px;}
.y10c_c01284{bottom:725.760000px;}
.y10b_c01284{bottom:727.485000px;}
.y109_c01284{bottom:728.355000px;}
.y108_c01284{bottom:729.210000px;}
.y104_c01284{bottom:741.315000px;}
.y103_c01284{bottom:742.170000px;}
.y101_c01284{bottom:743.910000px;}
.y100_c01284{bottom:744.765000px;}
.yfd_c01284{bottom:746.490000px;}
.yfe_c01284{bottom:748.230000px;}
.y102_c01284{bottom:749.085000px;}
.yff_c01284{bottom:749.955000px;}
.yfa_c01284{bottom:761.190000px;}
.yf9_c01284{bottom:762.045000px;}
.yf6_c01284{bottom:765.510000px;}
.yfb_c01284{bottom:766.365000px;}
.yfc_c01284{bottom:768.090000px;}
.yf4_c01284{bottom:768.960000px;}
.yf8_c01284{bottom:769.830000px;}
.yf7_c01284{bottom:770.685000px;}
.yf5_c01284{bottom:772.410000px;}
.yef_c01284{bottom:785.370000px;}
.yed_c01284{bottom:786.240000px;}
.yf1_c01284{bottom:787.110000px;}
.yee_c01284{bottom:788.835000px;}
.yf0_c01284{bottom:789.690000px;}
.yec_c01284{bottom:791.430000px;}
.yf3_c01284{bottom:795.750000px;}
.yf2_c01284{bottom:798.330000px;}
.yeb_c01284{bottom:804.390000px;}
.ye7_c01284{bottom:806.115000px;}
.ye9_c01284{bottom:807.840000px;}
.yea_c01284{bottom:808.710000px;}
.ye6_c01284{bottom:809.565000px;}
.ye5_c01284{bottom:813.030000px;}
.ye4_c01284{bottom:820.800000px;}
.ye8_c01284{bottom:821.670000px;}
.yde_c01284{bottom:825.990000px;}
.ydc_c01284{bottom:826.845000px;}
.ye3_c01284{bottom:827.715000px;}
.ye2_c01284{bottom:828.570000px;}
.ye1_c01284{bottom:829.440000px;}
.ye0_c01284{bottom:830.310000px;}
.ydf_c01284{bottom:831.165000px;}
.ydd_c01284{bottom:832.035000px;}
.ydb_c01284{bottom:833.760000px;}
.yd9_c01284{bottom:841.530000px;}
.yd7_c01284{bottom:844.995000px;}
.yda_c01284{bottom:845.850000px;}
.yd3_c01284{bottom:846.720000px;}
.yd8_c01284{bottom:847.590000px;}
.yd2_c01284{bottom:848.445000px;}
.yd6_c01284{bottom:849.315000px;}
.yd5_c01284{bottom:850.170000px;}
.yd4_c01284{bottom:851.040000px;}
.yd1_c01284{bottom:860.550000px;}
.ycf_c01284{bottom:863.130000px;}
.ycd_c01284{bottom:866.595000px;}
.ycc_c01284{bottom:867.450000px;}
.yd0_c01284{bottom:868.320000px;}
.ycb_c01284{bottom:869.190000px;}
.yce_c01284{bottom:870.045000px;}
.yca_c01284{bottom:882.150000px;}
.yc6_c01284{bottom:883.875000px;}
.yc8_c01284{bottom:885.600000px;}
.yc5_c01284{bottom:886.470000px;}
.yc9_c01284{bottom:888.195000px;}
.yc7_c01284{bottom:889.920000px;}
.yc4_c01284{bottom:891.645000px;}
.y1d9_c01284{bottom:901.155000px;}
.yc3_c01284{bottom:902.010000px;}
.ybe_c01284{bottom:902.880000px;}
.ybd_c01284{bottom:905.475000px;}
.yc1_c01284{bottom:906.330000px;}
.ybc_c01284{bottom:908.070000px;}
.ybf_c01284{bottom:909.795000px;}
.ybb_c01284{bottom:912.390000px;}
.yba_c01284{bottom:914.115000px;}
.yc0_c01284{bottom:914.970000px;}
.yb9_c01284{bottom:917.565000px;}
.yc2_c01284{bottom:920.160000px;}
.yb7_c01284{bottom:921.885000px;}
.y1d8_c01284{bottom:922.755000px;}
.yb6_c01284{bottom:923.610000px;}
.yb0_c01284{bottom:924.480000px;}
.yb3_c01284{bottom:925.350000px;}
.yb4_c01284{bottom:926.205000px;}
.yb5_c01284{bottom:927.930000px;}
.yae_c01284{bottom:928.800000px;}
.yb8_c01284{bottom:929.670000px;}
.yaf_c01284{bottom:930.525000px;}
.yb2_c01284{bottom:931.395000px;}
.yb1_c01284{bottom:933.120000px;}
.yab_c01284{bottom:942.630000px;}
.yaa_c01284{bottom:945.210000px;}
.yad_c01284{bottom:947.805000px;}
.yac_c01284{bottom:948.675000px;}
.ya7_c01284{bottom:950.400000px;}
.ya9_c01284{bottom:951.270000px;}
.ya8_c01284{bottom:952.125000px;}
.ya6_c01284{bottom:965.085000px;}
.ya5_c01284{bottom:966.810000px;}
.ya4_c01284{bottom:968.550000px;}
.ya2_c01284{bottom:970.275000px;}
.ya3_c01284{bottom:972.000000px;}
.y1d7_c01284{bottom:972.870000px;}
.ya1_c01284{bottom:975.450000px;}
.ya0_c01284{bottom:984.960000px;}
.y9c_c01284{bottom:986.685000px;}
.y9b_c01284{bottom:987.555000px;}
.y9f_c01284{bottom:989.280000px;}
.y9e_c01284{bottom:990.150000px;}
.y9a_c01284{bottom:991.005000px;}
.y9d_c01284{bottom:991.875000px;}
.y99_c01284{bottom:1003.110000px;}
.y97_c01284{bottom:1004.835000px;}
.y94_c01284{bottom:1006.560000px;}
.y98_c01284{bottom:1009.155000px;}
.y95_c01284{bottom:1010.880000px;}
.y93_c01284{bottom:1011.750000px;}
.y96_c01284{bottom:1012.605000px;}
.y90_c01284{bottom:1024.710000px;}
.y91_c01284{bottom:1025.565000px;}
.y8f_c01284{bottom:1028.160000px;}
.y8e_c01284{bottom:1029.030000px;}
.y92_c01284{bottom:1029.885000px;}
.y8d_c01284{bottom:1030.755000px;}
.y1d6_c01284{bottom:1034.205000px;}
.y8a_c01284{bottom:1043.715000px;}
.y8c_c01284{bottom:1049.760000px;}
.y89_c01284{bottom:1050.630000px;}
.y8b_c01284{bottom:1051.485000px;}
.y84_c01284{bottom:1052.355000px;}
.y88_c01284{bottom:1054.080000px;}
.y85_c01284{bottom:1057.530000px;}
.y87_c01284{bottom:1060.995000px;}
.y86_c01284{bottom:1062.720000px;}
.y82_c01284{bottom:1065.315000px;}
.y7f_c01284{bottom:1068.765000px;}
.y83_c01284{bottom:1069.635000px;}
.y7e_c01284{bottom:1070.490000px;}
.y81_c01284{bottom:1072.230000px;}
.y80_c01284{bottom:1073.085000px;}
.y7b_c01284{bottom:1073.955000px;}
.y7d_c01284{bottom:1074.810000px;}
.y7c_c01284{bottom:1076.550000px;}
.y79_c01284{bottom:1085.190000px;}
.y78_c01284{bottom:1086.915000px;}
.y73_c01284{bottom:1088.640000px;}
.y7a_c01284{bottom:1089.510000px;}
.y72_c01284{bottom:1090.365000px;}
.y74_c01284{bottom:1091.235000px;}
.y77_c01284{bottom:1092.960000px;}
.y76_c01284{bottom:1093.830000px;}
.y75_c01284{bottom:1094.685000px;}
.y71_c01284{bottom:1098.150000px;}
.y70_c01284{bottom:1099.005000px;}
.y6f_c01284{bottom:1100.730000px;}
.y6c_c01284{bottom:1101.600000px;}
.y6d_c01284{bottom:1102.470000px;}
.y6a_c01284{bottom:1104.195000px;}
.y6e_c01284{bottom:1105.050000px;}
.y6b_c01284{bottom:1111.110000px;}
.y68_c01284{bottom:1125.795000px;}
.y69_c01284{bottom:1126.650000px;}
.y65_c01284{bottom:1127.520000px;}
.y66_c01284{bottom:1128.390000px;}
.y67_c01284{bottom:1130.970000px;}
.y64_c01284{bottom:1131.840000px;}
.y63_c01284{bottom:1134.435000px;}
.y61_c01284{bottom:1146.525000px;}
.y5d_c01284{bottom:1147.395000px;}
.y5f_c01284{bottom:1149.990000px;}
.y5b_c01284{bottom:1151.715000px;}
.y5e_c01284{bottom:1152.570000px;}
.y60_c01284{bottom:1153.440000px;}
.y5c_c01284{bottom:1154.310000px;}
.y5a_c01284{bottom:1156.890000px;}
.y62_c01284{bottom:1159.485000px;}
.y57_c01284{bottom:1164.675000px;}
.y59_c01284{bottom:1165.530000px;}
.y58_c01284{bottom:1166.400000px;}
.y56_c01284{bottom:1174.170000px;}
.y55_c01284{bottom:1185.405000px;}
.y50_c01284{bottom:1187.130000px;}
.y53_c01284{bottom:1188.000000px;}
.y52_c01284{bottom:1188.870000px;}
.y4f_c01284{bottom:1190.595000px;}
.y54_c01284{bottom:1191.450000px;}
.y51_c01284{bottom:1192.320000px;}
.y4e_c01284{bottom:1193.190000px;}
.y47_c01284{bottom:1194.045000px;}
.y4d_c01284{bottom:1196.640000px;}
.y48_c01284{bottom:1197.510000px;}
.y4c_c01284{bottom:1199.235000px;}
.y4a_c01284{bottom:1200.090000px;}
.y4b_c01284{bottom:1200.960000px;}
.y49_c01284{bottom:1202.685000px;}
.y46_c01284{bottom:1204.410000px;}
.y45_c01284{bottom:1207.005000px;}
.y44_c01284{bottom:1208.730000px;}
.y43_c01284{bottom:1209.600000px;}
.y42_c01284{bottom:1214.790000px;}
.y41_c01284{bottom:1226.010000px;}
.y3e_c01284{bottom:1227.750000px;}
.y40_c01284{bottom:1228.605000px;}
.y3f_c01284{bottom:1230.330000px;}
.y3d_c01284{bottom:1231.200000px;}
.y3b_c01284{bottom:1232.070000px;}
.y3c_c01284{bottom:1235.520000px;}
.y3a_c01284{bottom:1241.565000px;}
.y1d2_c01284{bottom:1245.030000px;}
.y38_c01284{bottom:1245.885000px;}
.y37_c01284{bottom:1247.610000px;}
.y36_c01284{bottom:1248.480000px;}
.y39_c01284{bottom:1249.350000px;}
.y34_c01284{bottom:1250.205000px;}
.y33_c01284{bottom:1251.075000px;}
.y30_c01284{bottom:1253.670000px;}
.y35_c01284{bottom:1254.525000px;}
.y32_c01284{bottom:1257.120000px;}
.y31_c01284{bottom:1261.440000px;}
.y2e_c01284{bottom:1270.080000px;}
.y2d_c01284{bottom:1270.950000px;}
.y2c_c01284{bottom:1271.805000px;}
.y2f_c01284{bottom:1273.530000px;}
.y29_c01284{bottom:1274.400000px;}
.y2b_c01284{bottom:1275.270000px;}
.y2a_c01284{bottom:1276.125000px;}
.y26_c01284{bottom:1277.850000px;}
.y28_c01284{bottom:1278.720000px;}
.y27_c01284{bottom:1280.445000px;}
.y24_c01284{bottom:1288.230000px;}
.y23_c01284{bottom:1289.955000px;}
.y25_c01284{bottom:1290.810000px;}
.y21_c01284{bottom:1291.680000px;}
.y1e_c01284{bottom:1292.550000px;}
.y1b_c01284{bottom:1294.275000px;}
.y22_c01284{bottom:1295.130000px;}
.y1c_c01284{bottom:1296.000000px;}
.y1f_c01284{bottom:1296.870000px;}
.y1d_c01284{bottom:1297.725000px;}
.y1a_c01284{bottom:1301.190000px;}
.y19_c01284{bottom:1302.045000px;}
.y18_c01284{bottom:1305.510000px;}
.y17_c01284{bottom:1308.960000px;}
.y20_c01284{bottom:1309.830000px;}
.y14_c01284{bottom:1311.555000px;}
.y15_c01284{bottom:1312.410000px;}
.y12_c01284{bottom:1313.280000px;}
.y16_c01284{bottom:1314.150000px;}
.y13_c01284{bottom:1315.005000px;}
.y11_c01284{bottom:1317.600000px;}
.yf_c01284{bottom:1321.920000px;}
.ye_c01284{bottom:1322.790000px;}
.yc_c01284{bottom:1325.370000px;}
.y10_c01284{bottom:1327.110000px;}
.yd_c01284{bottom:1327.965000px;}
.ya_c01284{bottom:1329.690000px;}
.yb_c01284{bottom:1332.285000px;}
.y9_c01284{bottom:1333.155000px;}
.y6_c01284{bottom:1335.750000px;}
.y5_c01284{bottom:1336.605000px;}
.y4_c01284{bottom:1337.475000px;}
.y8_c01284{bottom:1340.070000px;}
.y7_c01284{bottom:1340.925000px;}
.y2_c01284{bottom:1341.795000px;}
.y3_c01284{bottom:1344.390000px;}
.y1d1_c01284{bottom:1351.290000px;}
.y1_c01284{bottom:1365.990000px;}
.y1d5_c01284{bottom:1384.995000px;}
.y1d4_c01284{bottom:1392.765000px;}
.y1d3_c01284{bottom:1408.320000px;}
.ha_c01284{height:3.110063px;}
.h3_c01284{height:5.399414px;}
.h1e_c01284{height:6.209326px;}
.h2_c01284{height:9.340986px;}
.h9_c01284{height:12.418652px;}
.hb_c01284{height:15.550313px;}
.hd_c01284{height:18.681973px;}
.he_c01284{height:21.759639px;}
.h10_c01284{height:24.891299px;}
.hc_c01284{height:27.968965px;}
.hf_c01284{height:31.100625px;}
.h1f_c01284{height:34.232285px;}
.h18_c01284{height:37.309951px;}
.h15_c01284{height:40.441611px;}
.h13_c01284{height:43.519277px;}
.h19_c01284{height:46.650937px;}
.h4_c01284{height:49.782598px;}
.h16_c01284{height:52.860264px;}
.h11_c01284{height:55.991924px;}
.h1b_c01284{height:59.069590px;}
.h8_c01284{height:62.201250px;}
.h17_c01284{height:65.332910px;}
.h12_c01284{height:68.410576px;}
.h14_c01284{height:71.542236px;}
.h1a_c01284{height:74.619902px;}
.h1c_c01284{height:77.751563px;}
.h1d_c01284{height:80.883223px;}
.h5_c01284{height:83.960889px;}
.h20_c01284{height:87.092549px;}
.h7_c01284{height:90.170215px;}
.h24_c01284{height:93.301875px;}
.h6_c01284{height:96.433535px;}
.h23_c01284{height:99.511201px;}
.h22_c01284{height:102.642861px;}
.h21_c01284{height:108.852188px;}
.h1_c01284{height:1518.750000px;}
.h0_c01284{height:1518.915000px;}
.w0_c01284{width:1085.190000px;}
.w1_c01284{width:1085.250000px;}
.x0_c01284{left:0.000000px;}
.x10c_c01284{left:125.280000px;}
.x10d_c01284{left:138.240000px;}
.x10e_c01284{left:148.605000px;}
.x104_c01284{left:154.650000px;}
.xaf_c01284{left:166.755000px;}
.xf3_c01284{left:171.930000px;}
.x12_c01284{left:175.395000px;}
.xb0_c01284{left:179.715000px;}
.x13_c01284{left:184.890000px;}
.xff_c01284{left:188.355000px;}
.x1f_c01284{left:190.950000px;}
.x2_c01284{left:193.530000px;}
.xf8_c01284{left:201.315000px;}
.xe4_c01284{left:203.040000px;}
.xfd_c01284{left:205.635000px;}
.xf0_c01284{left:209.085000px;}
.x5a_c01284{left:210.810000px;}
.x106_c01284{left:215.130000px;}
.xdd_c01284{left:216.870000px;}
.x94_c01284{left:218.595000px;}
.x39_c01284{left:220.320000px;}
.xc1_c01284{left:222.045000px;}
.x5b_c01284{left:223.770000px;}
.x73_c01284{left:225.510000px;}
.x48_c01284{left:227.235000px;}
.x20_c01284{left:228.960000px;}
.x3_c01284{left:231.555000px;}
.x105_c01284{left:235.005000px;}
.x9_c01284{left:239.325000px;}
.x14_c01284{left:241.920000px;}
.xb1_c01284{left:243.645000px;}
.x9c_c01284{left:246.240000px;}
.xd9_c01284{left:248.835000px;}
.x15_c01284{left:250.560000px;}
.x77_c01284{left:253.155000px;}
.xac_c01284{left:254.880000px;}
.x49_c01284{left:256.605000px;}
.xb7_c01284{left:259.200000px;}
.xf5_c01284{left:263.520000px;}
.xa_c01284{left:265.245000px;}
.xf9_c01284{left:266.970000px;}
.x2e_c01284{left:268.710000px;}
.xe8_c01284{left:270.435000px;}
.x82_c01284{left:274.755000px;}
.xb_c01284{left:276.480000px;}
.x21_c01284{left:278.205000px;}
.x4_c01284{left:279.930000px;}
.x78_c01284{left:281.670000px;}
.x4a_c01284{left:284.250000px;}
.xc7_c01284{left:285.990000px;}
.x3a_c01284{left:287.715000px;}
.x67_c01284{left:290.310000px;}
.xc_c01284{left:296.355000px;}
.x9d_c01284{left:298.950000px;}
.x102_c01284{left:300.675000px;}
.xc2_c01284{left:302.400000px;}
.x2f_c01284{left:304.995000px;}
.xcc_c01284{left:310.170000px;}
.x103_c01284{left:312.765000px;}
.x68_c01284{left:316.230000px;}
.xb8_c01284{left:319.680000px;}
.xe1_c01284{left:322.275000px;}
.x22_c01284{left:325.725000px;}
.x79_c01284{left:328.320000px;}
.x95_c01284{left:330.045000px;}
.x9f_c01284{left:332.640000px;}
.xc5_c01284{left:336.960000px;}
.xde_c01284{left:338.685000px;}
.x69_c01284{left:341.280000px;}
.x16_c01284{left:343.005000px;}
.x83_c01284{left:344.730000px;}
.x89_c01284{left:346.469250px;}
.xd_c01284{left:352.515000px;}
.x5_c01284{left:354.240000px;}
.x74_c01284{left:355.965000px;}
.x4b_c01284{left:358.560000px;}
.x3b_c01284{left:362.880000px;}
.x17_c01284{left:367.200000px;}
.x108_c01284{left:369.795000px;}
.x6a_c01284{left:371.520000px;}
.x30_c01284{left:373.245000px;}
.xbc_c01284{left:375.840000px;}
.xfa_c01284{left:377.565000px;}
.x8a_c01284{left:379.290000px;}
.x3c_c01284{left:381.030000px;}
.x84_c01284{left:382.755000px;}
.xc3_c01284{left:385.350000px;}
.x23_c01284{left:387.075000px;}
.xa0_c01284{left:393.990000px;}
.x101_c01284{left:396.570000px;}
.xc8_c01284{left:398.310000px;}
.x7a_c01284{left:402.630000px;}
.xa3_c01284{left:404.355000px;}
.xef_c01284{left:406.080000px;}
.x100_c01284{left:407.805000px;}
.xad_c01284{left:410.400000px;}
.xd0_c01284{left:412.995000px;}
.xdf_c01284{left:414.720000px;}
.xcd_c01284{left:417.315000px;}
.x9e_c01284{left:420.765000px;}
.x18_c01284{left:424.230000px;}
.x31_c01284{left:426.810000px;}
.x85_c01284{left:429.405000px;}
.x7b_c01284{left:432.000000px;}
.xe_c01284{left:433.725000px;}
.x8b_c01284{left:435.450000px;}
.xfe_c01284{left:438.045000px;}
.xbd_c01284{left:439.770000px;}
.x24_c01284{left:443.235000px;}
.x10a_c01284{left:444.960000px;}
.x19_c01284{left:446.685000px;}
.xd3_c01284{left:448.410000px;}
.xc6_c01284{left:450.150000px;}
.xf_c01284{left:451.875000px;}
.xda_c01284{left:454.470000px;}
.x7c_c01284{left:457.920000px;}
.x86_c01284{left:459.645000px;}
.xed_c01284{left:461.370000px;}
.x70_c01284{left:464.835000px;}
.xe9_c01284{left:467.430000px;}
.xe5_c01284{left:471.750000px;}
.x4c_c01284{left:476.070000px;}
.xbe_c01284{left:477.795000px;}
.x7d_c01284{left:480.390000px;}
.xfb_c01284{left:482.970000px;}
.x3d_c01284{left:485.565000px;}
.x32_c01284{left:488.160000px;}
.xae_c01284{left:489.885000px;}
.x6_c01284{left:493.350000px;}
.x4d_c01284{left:496.800000px;}
.x107_c01284{left:500.250000px;}
.x96_c01284{left:502.845000px;}
.x8f_c01284{left:505.440000px;}
.x109_c01284{left:508.035000px;}
.x3e_c01284{left:510.630000px;}
.x10b_c01284{left:513.210000px;}
.x25_c01284{left:517.530000px;}
.x7e_c01284{left:519.270000px;}
.xa7_c01284{left:522.720000px;}
.x8c_c01284{left:525.315000px;}
.x1_c01284{left:527.910000px;}
.xf6_c01284{left:530.490000px;}
.xfc_c01284{left:532.230000px;}
.x90_c01284{left:534.810000px;}
.xdb_c01284{left:536.550000px;}
.x1a_c01284{left:540.000000px;}
.x26_c01284{left:541.725000px;}
.xd4_c01284{left:543.450000px;}
.xb2_c01284{left:546.915000px;}
.x5c_c01284{left:548.640000px;}
.x75_c01284{left:551.235000px;}
.x7f_c01284{left:553.830000px;}
.x62_c01284{left:555.555000px;}
.x3f_c01284{left:557.280000px;}
.x1b_c01284{left:559.005000px;}
.x55_c01284{left:568.515000px;}
.x71_c01284{left:571.110000px;}
.xb9_c01284{left:572.835000px;}
.xb3_c01284{left:574.560000px;}
.x5d_c01284{left:576.285000px;}
.xce_c01284{left:578.010000px;}
.xa1_c01284{left:582.330000px;}
.xa8_c01284{left:584.070000px;}
.xe6_c01284{left:585.795000px;}
.xd5_c01284{left:589.245000px;}
.x56_c01284{left:590.970000px;}
.x27_c01284{left:592.710000px;}
.x40_c01284{left:596.160000px;}
.x4e_c01284{left:597.885000px;}
.x41_c01284{left:601.350000px;}
.x97_c01284{left:607.395000px;}
.x1c_c01284{left:609.120000px;}
.x33_c01284{left:610.845000px;}
.x87_c01284{left:615.165000px;}
.x28_c01284{left:616.890000px;}
.xbf_c01284{left:620.355000px;}
.x42_c01284{left:623.805000px;}
.xd1_c01284{left:625.530000px;}
.xa2_c01284{left:628.995000px;}
.x10_c01284{left:631.590000px;}
.xcf_c01284{left:633.315000px;}
.xa4_c01284{left:635.910000px;}
.xc4_c01284{left:637.635000px;}
.x29_c01284{left:639.360000px;}
.x43_c01284{left:641.955000px;}
.xe0_c01284{left:643.680000px;}
.x4f_c01284{left:645.405000px;}
.xf1_c01284{left:649.725000px;}
.xcb_c01284{left:651.450000px;}
.xd6_c01284{left:654.045000px;}
.x88_c01284{left:655.770000px;}
.x63_c01284{left:658.365000px;}
.xeb_c01284{left:666.150000px;}
.x7_c01284{left:667.875000px;}
.x6b_c01284{left:669.600000px;}
.xf4_c01284{left:671.325000px;}
.x1d_c01284{left:675.645000px;}
.x72_c01284{left:679.110000px;}
.xb4_c01284{left:680.835000px;}
.x98_c01284{left:682.560000px;}
.x50_c01284{left:685.155000px;}
.x76_c01284{left:686.880000px;}
.x57_c01284{left:688.605000px;}
.xdc_c01284{left:691.200000px;}
.x34_c01284{left:696.390000px;}
.x80_c01284{left:698.115000px;}
.xe7_c01284{left:700.710000px;}
.x2a_c01284{left:702.435000px;}
.xf2_c01284{left:706.755000px;}
.x6c_c01284{left:711.075000px;}
.xa9_c01284{left:712.800000px;}
.x51_c01284{left:715.395000px;}
.x35_c01284{left:717.120000px;}
.xb5_c01284{left:718.845000px;}
.x5e_c01284{left:720.570000px;}
.xba_c01284{left:722.310000px;}
.x44_c01284{left:724.035000px;}
.x6d_c01284{left:729.210000px;}
.x58_c01284{left:733.530000px;}
.x6e_c01284{left:735.270000px;}
.x36_c01284{left:737.850000px;}
.xaa_c01284{left:740.445000px;}
.x99_c01284{left:742.170000px;}
.xc0_c01284{left:746.490000px;}
.x64_c01284{left:749.085000px;}
.x8d_c01284{left:752.550000px;}
.xec_c01284{left:754.275000px;}
.x52_c01284{left:756.870000px;}
.xbb_c01284{left:758.595000px;}
.x5f_c01284{left:760.320000px;}
.x2b_c01284{left:762.045000px;}
.xd7_c01284{left:764.640000px;}
.x91_c01284{left:766.365000px;}
.x60_c01284{left:768.090000px;}
.xee_c01284{left:769.830000px;}
.xd2_c01284{left:774.150000px;}
.x8e_c01284{left:778.470000px;}
.x92_c01284{left:780.195000px;}
.x2c_c01284{left:782.790000px;}
.x53_c01284{left:784.515000px;}
.x61_c01284{left:788.835000px;}
.x65_c01284{left:795.750000px;}
.x37_c01284{left:797.475000px;}
.x2d_c01284{left:800.070000px;}
.x9a_c01284{left:801.795000px;}
.x81_c01284{left:803.520000px;}
.x8_c01284{left:805.245000px;}
.x45_c01284{left:807.840000px;}
.xab_c01284{left:809.565000px;}
.x1e_c01284{left:815.610000px;}
.x6f_c01284{left:817.350000px;}
.x38_c01284{left:819.075000px;}
.x54_c01284{left:820.800000px;}
.x46_c01284{left:824.250000px;}
.xe2_c01284{left:825.990000px;}
.xea_c01284{left:827.715000px;}
.x93_c01284{left:830.310000px;}
.x66_c01284{left:834.630000px;}
.xd8_c01284{left:838.080000px;}
.xa5_c01284{left:842.400000px;}
.x47_c01284{left:844.125000px;}
.xf7_c01284{left:845.850000px;}
.x11_c01284{left:847.590000px;}
.xa6_c01284{left:849.315000px;}
.x59_c01284{left:851.910000px;}
.x9b_c01284{left:857.085000px;}
.xb6_c01284{left:862.275000px;}
.xe3_c01284{left:870.045000px;}
.xc9_c01284{left:878.685000px;}
.xca_c01284{left:897.690000px;}
.x10f_c01284{left:936.570000px;}
.x110_c01284{left:971.130000px;}
.x117_c01284{left:974.595000px;}
.x118_c01284{left:977.190000px;}
.x111_c01284{left:978.915000px;}
.x116_c01284{left:993.600000px;}
.x112_c01284{left:996.195000px;}
.x115_c01284{left:1015.200000px;}
.x113_c01284{left:1043.715000px;}
.x114_c01284{left:1057.530000px;}
@media print{
.v1_c01284{vertical-align:-15.360000pt;}
.v3_c01284{vertical-align:-9.226667pt;}
.v2_c01284{vertical-align:-6.186667pt;}
.v0_c01284{vertical-align:0.000000pt;}
.ls0_c01284{letter-spacing:0.000000pt;}
.ws3_c01284{word-spacing:-24.744000pt;}
.ws1_c01284{word-spacing:-17.753653pt;}
.ws0_c01284{word-spacing:-16.941867pt;}
.ws2_c01284{word-spacing:-11.256747pt;}
.ws4_c01284{word-spacing:0.000000pt;}
.fs8_c01284{font-size:3.072000pt;}
.fs1_c01284{font-size:5.333333pt;}
.fs1c_c01284{font-size:6.133333pt;}
.fs0_c01284{font-size:9.226667pt;}
.fs7_c01284{font-size:12.266667pt;}
.fs9_c01284{font-size:15.360000pt;}
.fsb_c01284{font-size:18.453333pt;}
.fsc_c01284{font-size:21.493333pt;}
.fse_c01284{font-size:24.586667pt;}
.fsa_c01284{font-size:27.626667pt;}
.fsd_c01284{font-size:30.720000pt;}
.fs1d_c01284{font-size:33.813333pt;}
.fs16_c01284{font-size:36.853333pt;}
.fs13_c01284{font-size:39.946667pt;}
.fs11_c01284{font-size:42.986667pt;}
.fs17_c01284{font-size:46.080000pt;}
.fs2_c01284{font-size:49.173333pt;}
.fs14_c01284{font-size:52.213333pt;}
.fsf_c01284{font-size:55.306667pt;}
.fs19_c01284{font-size:58.346667pt;}
.fs6_c01284{font-size:61.440000pt;}
.fs15_c01284{font-size:64.533333pt;}
.fs10_c01284{font-size:67.573333pt;}
.fs12_c01284{font-size:70.666667pt;}
.fs18_c01284{font-size:73.706667pt;}
.fs1a_c01284{font-size:76.800000pt;}
.fs1b_c01284{font-size:79.893333pt;}
.fs3_c01284{font-size:82.933333pt;}
.fs1e_c01284{font-size:86.026667pt;}
.fs5_c01284{font-size:89.066667pt;}
.fs22_c01284{font-size:92.160000pt;}
.fs4_c01284{font-size:95.253333pt;}
.fs21_c01284{font-size:98.293333pt;}
.fs20_c01284{font-size:101.386667pt;}
.fs1f_c01284{font-size:107.520000pt;}
.y0_c01284{bottom:0.000000pt;}
.y1cf_c01284{bottom:154.373333pt;}
.y1ce_c01284{bottom:155.133333pt;}
.y1cd_c01284{bottom:155.906667pt;}
.y1d0_c01284{bottom:160.506667pt;}
.y1cb_c01284{bottom:164.346667pt;}
.y1ca_c01284{bottom:165.120000pt;}
.y1c9_c01284{bottom:165.893333pt;}
.y1cc_c01284{bottom:166.653333pt;}
.y1c7_c01284{bottom:168.186667pt;}
.y1c8_c01284{bottom:168.960000pt;}
.y1c6_c01284{bottom:171.266667pt;}
.y1c4_c01284{bottom:172.800000pt;}
.y1c3_c01284{bottom:174.333333pt;}
.y1c2_c01284{bottom:177.413333pt;}
.y1c5_c01284{bottom:181.253333pt;}
.y1bf_c01284{bottom:184.320000pt;}
.y1bd_c01284{bottom:185.093333pt;}
.y1c0_c01284{bottom:185.853333pt;}
.y1be_c01284{bottom:186.626667pt;}
.y1c1_c01284{bottom:187.386667pt;}
.y1bc_c01284{bottom:188.933333pt;}
.y1b8_c01284{bottom:192.000000pt;}
.y1b7_c01284{bottom:192.773333pt;}
.y1b9_c01284{bottom:194.306667pt;}
.y1ba_c01284{bottom:195.066667pt;}
.y1bb_c01284{bottom:208.133333pt;}
.y1b4_c01284{bottom:209.666667pt;}
.y1b6_c01284{bottom:210.426667pt;}
.y1b5_c01284{bottom:213.506667pt;}
.y1b2_c01284{bottom:226.560000pt;}
.y1b1_c01284{bottom:228.093333pt;}
.y1b3_c01284{bottom:231.933333pt;}
.y1b0_c01284{bottom:234.240000pt;}
.y1af_c01284{bottom:244.986667pt;}
.y1ab_c01284{bottom:245.760000pt;}
.y1ae_c01284{bottom:246.533333pt;}
.y1ac_c01284{bottom:248.066667pt;}
.y1ad_c01284{bottom:250.373333pt;}
.y1a9_c01284{bottom:254.213333pt;}
.y1aa_c01284{bottom:255.746667pt;}
.y1a8_c01284{bottom:257.280000pt;}
.y1a7_c01284{bottom:258.813333pt;}
.y1a6_c01284{bottom:264.186667pt;}
.y1a5_c01284{bottom:264.960000pt;}
.y1a2_c01284{bottom:265.733333pt;}
.y1a4_c01284{bottom:268.800000pt;}
.y1a3_c01284{bottom:269.573333pt;}
.y1a0_c01284{bottom:287.226667pt;}
.y1a1_c01284{bottom:297.986667pt;}
.y19d_c01284{bottom:298.746667pt;}
.y19e_c01284{bottom:301.053333pt;}
.y19c_c01284{bottom:301.826667pt;}
.y19f_c01284{bottom:304.133333pt;}
.y19b_c01284{bottom:319.493333pt;}
.y199_c01284{bottom:320.253333pt;}
.y19a_c01284{bottom:322.560000pt;}
.y198_c01284{bottom:324.093333pt;}
.y197_c01284{bottom:324.866667pt;}
.y192_c01284{bottom:325.626667pt;}
.y195_c01284{bottom:328.706667pt;}
.y193_c01284{bottom:329.466667pt;}
.y196_c01284{bottom:331.013333pt;}
.y194_c01284{bottom:332.546667pt;}
.y191_c01284{bottom:334.853333pt;}
.y18f_c01284{bottom:336.386667pt;}
.y18c_c01284{bottom:337.146667pt;}
.y18d_c01284{bottom:337.920000pt;}
.y18b_c01284{bottom:338.693333pt;}
.y18e_c01284{bottom:341.760000pt;}
.y18a_c01284{bottom:345.600000pt;}
.y190_c01284{bottom:351.746667pt;}
.y189_c01284{bottom:354.813333pt;}
.y188_c01284{bottom:356.346667pt;}
.y187_c01284{bottom:357.120000pt;}
.y186_c01284{bottom:357.893333pt;}
.y184_c01284{bottom:358.653333pt;}
.y185_c01284{bottom:359.426667pt;}
.y181_c01284{bottom:372.480000pt;}
.y182_c01284{bottom:374.013333pt;}
.y180_c01284{bottom:374.786667pt;}
.y183_c01284{bottom:375.546667pt;}
.y17f_c01284{bottom:381.693333pt;}
.y17e_c01284{bottom:391.680000pt;}
.y17d_c01284{bottom:396.293333pt;}
.y17c_c01284{bottom:397.053333pt;}
.y17b_c01284{bottom:397.826667pt;}
.y179_c01284{bottom:408.573333pt;}
.y175_c01284{bottom:409.346667pt;}
.y174_c01284{bottom:410.106667pt;}
.y178_c01284{bottom:411.653333pt;}
.y173_c01284{bottom:412.413333pt;}
.y177_c01284{bottom:414.720000pt;}
.y176_c01284{bottom:415.493333pt;}
.y17a_c01284{bottom:417.026667pt;}
.y170_c01284{bottom:427.773333pt;}
.y16f_c01284{bottom:429.306667pt;}
.y16d_c01284{bottom:430.853333pt;}
.y171_c01284{bottom:431.613333pt;}
.y16e_c01284{bottom:433.146667pt;}
.y16c_c01284{bottom:433.920000pt;}
.y172_c01284{bottom:441.600000pt;}
.y16b_c01284{bottom:444.666667pt;}
.y167_c01284{bottom:445.440000pt;}
.y165_c01284{bottom:446.213333pt;}
.y164_c01284{bottom:446.973333pt;}
.y166_c01284{bottom:447.746667pt;}
.y16a_c01284{bottom:449.280000pt;}
.y163_c01284{bottom:450.053333pt;}
.y168_c01284{bottom:451.586667pt;}
.y169_c01284{bottom:452.346667pt;}
.y162_c01284{bottom:456.186667pt;}
.y15a_c01284{bottom:459.266667pt;}
.y15e_c01284{bottom:460.026667pt;}
.y15f_c01284{bottom:461.573333pt;}
.y158_c01284{bottom:462.333333pt;}
.y156_c01284{bottom:463.106667pt;}
.y157_c01284{bottom:463.866667pt;}
.y15b_c01284{bottom:464.640000pt;}
.y15c_c01284{bottom:465.413333pt;}
.y161_c01284{bottom:466.173333pt;}
.y160_c01284{bottom:466.946667pt;}
.y159_c01284{bottom:469.253333pt;}
.y15d_c01284{bottom:470.013333pt;}
.y155_c01284{bottom:480.000000pt;}
.y154_c01284{bottom:480.773333pt;}
.y151_c01284{bottom:481.533333pt;}
.y150_c01284{bottom:482.306667pt;}
.y153_c01284{bottom:483.066667pt;}
.y14e_c01284{bottom:483.840000pt;}
.y14f_c01284{bottom:484.613333pt;}
.y152_c01284{bottom:489.213333pt;}
.y14d_c01284{bottom:501.506667pt;}
.y14c_c01284{bottom:503.040000pt;}
.y14b_c01284{bottom:503.813333pt;}
.y14a_c01284{bottom:504.573333pt;}
.y149_c01284{bottom:505.346667pt;}
.y148_c01284{bottom:506.106667pt;}
.y147_c01284{bottom:516.093333pt;}
.y145_c01284{bottom:516.866667pt;}
.y144_c01284{bottom:517.626667pt;}
.y146_c01284{bottom:518.400000pt;}
.y141_c01284{bottom:519.173333pt;}
.y142_c01284{bottom:524.546667pt;}
.y143_c01284{bottom:525.306667pt;}
.y13f_c01284{bottom:533.760000pt;}
.y13c_c01284{bottom:536.066667pt;}
.y13b_c01284{bottom:536.826667pt;}
.y140_c01284{bottom:537.600000pt;}
.y13a_c01284{bottom:538.373333pt;}
.y13d_c01284{bottom:539.133333pt;}
.y139_c01284{bottom:539.906667pt;}
.y13e_c01284{bottom:541.440000pt;}
.y134_c01284{bottom:554.493333pt;}
.y137_c01284{bottom:555.266667pt;}
.y138_c01284{bottom:556.026667pt;}
.y132_c01284{bottom:556.800000pt;}
.y133_c01284{bottom:557.573333pt;}
.y135_c01284{bottom:558.333333pt;}
.y136_c01284{bottom:559.106667pt;}
.y131_c01284{bottom:563.706667pt;}
.y12e_c01284{bottom:570.626667pt;}
.y12c_c01284{bottom:572.160000pt;}
.y12b_c01284{bottom:572.933333pt;}
.y127_c01284{bottom:573.693333pt;}
.y12f_c01284{bottom:574.466667pt;}
.y12d_c01284{bottom:575.226667pt;}
.y129_c01284{bottom:576.000000pt;}
.y12a_c01284{bottom:576.773333pt;}
.y128_c01284{bottom:577.533333pt;}
.y130_c01284{bottom:579.066667pt;}
.y125_c01284{bottom:588.293333pt;}
.y122_c01284{bottom:589.053333pt;}
.y126_c01284{bottom:589.826667pt;}
.y120_c01284{bottom:591.360000pt;}
.y121_c01284{bottom:592.893333pt;}
.y124_c01284{bottom:593.666667pt;}
.y123_c01284{bottom:595.200000pt;}
.y11f_c01284{bottom:599.040000pt;}
.y11d_c01284{bottom:603.653333pt;}
.y11c_c01284{bottom:605.186667pt;}
.y11b_c01284{bottom:605.946667pt;}
.y11e_c01284{bottom:608.253333pt;}
.y117_c01284{bottom:609.026667pt;}
.y115_c01284{bottom:609.786667pt;}
.y11a_c01284{bottom:610.560000pt;}
.y119_c01284{bottom:611.333333pt;}
.y118_c01284{bottom:612.093333pt;}
.y116_c01284{bottom:613.626667pt;}
.y113_c01284{bottom:622.853333pt;}
.y112_c01284{bottom:623.613333pt;}
.y110_c01284{bottom:624.386667pt;}
.y10f_c01284{bottom:625.920000pt;}
.y114_c01284{bottom:626.693333pt;}
.y10d_c01284{bottom:628.226667pt;}
.y111_c01284{bottom:630.533333pt;}
.y10e_c01284{bottom:631.293333pt;}
.y10a_c01284{bottom:641.280000pt;}
.y107_c01284{bottom:642.813333pt;}
.y106_c01284{bottom:643.586667pt;}
.y105_c01284{bottom:644.346667pt;}
.y10c_c01284{bottom:645.120000pt;}
.y10b_c01284{bottom:646.653333pt;}
.y109_c01284{bottom:647.426667pt;}
.y108_c01284{bottom:648.186667pt;}
.y104_c01284{bottom:658.946667pt;}
.y103_c01284{bottom:659.706667pt;}
.y101_c01284{bottom:661.253333pt;}
.y100_c01284{bottom:662.013333pt;}
.yfd_c01284{bottom:663.546667pt;}
.yfe_c01284{bottom:665.093333pt;}
.y102_c01284{bottom:665.853333pt;}
.yff_c01284{bottom:666.626667pt;}
.yfa_c01284{bottom:676.613333pt;}
.yf9_c01284{bottom:677.373333pt;}
.yf6_c01284{bottom:680.453333pt;}
.yfb_c01284{bottom:681.213333pt;}
.yfc_c01284{bottom:682.746667pt;}
.yf4_c01284{bottom:683.520000pt;}
.yf8_c01284{bottom:684.293333pt;}
.yf7_c01284{bottom:685.053333pt;}
.yf5_c01284{bottom:686.586667pt;}
.yef_c01284{bottom:698.106667pt;}
.yed_c01284{bottom:698.880000pt;}
.yf1_c01284{bottom:699.653333pt;}
.yee_c01284{bottom:701.186667pt;}
.yf0_c01284{bottom:701.946667pt;}
.yec_c01284{bottom:703.493333pt;}
.yf3_c01284{bottom:707.333333pt;}
.yf2_c01284{bottom:709.626667pt;}
.yeb_c01284{bottom:715.013333pt;}
.ye7_c01284{bottom:716.546667pt;}
.ye9_c01284{bottom:718.080000pt;}
.yea_c01284{bottom:718.853333pt;}
.ye6_c01284{bottom:719.613333pt;}
.ye5_c01284{bottom:722.693333pt;}
.ye4_c01284{bottom:729.600000pt;}
.ye8_c01284{bottom:730.373333pt;}
.yde_c01284{bottom:734.213333pt;}
.ydc_c01284{bottom:734.973333pt;}
.ye3_c01284{bottom:735.746667pt;}
.ye2_c01284{bottom:736.506667pt;}
.ye1_c01284{bottom:737.280000pt;}
.ye0_c01284{bottom:738.053333pt;}
.ydf_c01284{bottom:738.813333pt;}
.ydd_c01284{bottom:739.586667pt;}
.ydb_c01284{bottom:741.120000pt;}
.yd9_c01284{bottom:748.026667pt;}
.yd7_c01284{bottom:751.106667pt;}
.yda_c01284{bottom:751.866667pt;}
.yd3_c01284{bottom:752.640000pt;}
.yd8_c01284{bottom:753.413333pt;}
.yd2_c01284{bottom:754.173333pt;}
.yd6_c01284{bottom:754.946667pt;}
.yd5_c01284{bottom:755.706667pt;}
.yd4_c01284{bottom:756.480000pt;}
.yd1_c01284{bottom:764.933333pt;}
.ycf_c01284{bottom:767.226667pt;}
.ycd_c01284{bottom:770.306667pt;}
.ycc_c01284{bottom:771.066667pt;}
.yd0_c01284{bottom:771.840000pt;}
.ycb_c01284{bottom:772.613333pt;}
.yce_c01284{bottom:773.373333pt;}
.yca_c01284{bottom:784.133333pt;}
.yc6_c01284{bottom:785.666667pt;}
.yc8_c01284{bottom:787.200000pt;}
.yc5_c01284{bottom:787.973333pt;}
.yc9_c01284{bottom:789.506667pt;}
.yc7_c01284{bottom:791.040000pt;}
.yc4_c01284{bottom:792.573333pt;}
.y1d9_c01284{bottom:801.026667pt;}
.yc3_c01284{bottom:801.786667pt;}
.ybe_c01284{bottom:802.560000pt;}
.ybd_c01284{bottom:804.866667pt;}
.yc1_c01284{bottom:805.626667pt;}
.ybc_c01284{bottom:807.173333pt;}
.ybf_c01284{bottom:808.706667pt;}
.ybb_c01284{bottom:811.013333pt;}
.yba_c01284{bottom:812.546667pt;}
.yc0_c01284{bottom:813.306667pt;}
.yb9_c01284{bottom:815.613333pt;}
.yc2_c01284{bottom:817.920000pt;}
.yb7_c01284{bottom:819.453333pt;}
.y1d8_c01284{bottom:820.226667pt;}
.yb6_c01284{bottom:820.986667pt;}
.yb0_c01284{bottom:821.760000pt;}
.yb3_c01284{bottom:822.533333pt;}
.yb4_c01284{bottom:823.293333pt;}
.yb5_c01284{bottom:824.826667pt;}
.yae_c01284{bottom:825.600000pt;}
.yb8_c01284{bottom:826.373333pt;}
.yaf_c01284{bottom:827.133333pt;}
.yb2_c01284{bottom:827.906667pt;}
.yb1_c01284{bottom:829.440000pt;}
.yab_c01284{bottom:837.893333pt;}
.yaa_c01284{bottom:840.186667pt;}
.yad_c01284{bottom:842.493333pt;}
.yac_c01284{bottom:843.266667pt;}
.ya7_c01284{bottom:844.800000pt;}
.ya9_c01284{bottom:845.573333pt;}
.ya8_c01284{bottom:846.333333pt;}
.ya6_c01284{bottom:857.853333pt;}
.ya5_c01284{bottom:859.386667pt;}
.ya4_c01284{bottom:860.933333pt;}
.ya2_c01284{bottom:862.466667pt;}
.ya3_c01284{bottom:864.000000pt;}
.y1d7_c01284{bottom:864.773333pt;}
.ya1_c01284{bottom:867.066667pt;}
.ya0_c01284{bottom:875.520000pt;}
.y9c_c01284{bottom:877.053333pt;}
.y9b_c01284{bottom:877.826667pt;}
.y9f_c01284{bottom:879.360000pt;}
.y9e_c01284{bottom:880.133333pt;}
.y9a_c01284{bottom:880.893333pt;}
.y9d_c01284{bottom:881.666667pt;}
.y99_c01284{bottom:891.653333pt;}
.y97_c01284{bottom:893.186667pt;}
.y94_c01284{bottom:894.720000pt;}
.y98_c01284{bottom:897.026667pt;}
.y95_c01284{bottom:898.560000pt;}
.y93_c01284{bottom:899.333333pt;}
.y96_c01284{bottom:900.093333pt;}
.y90_c01284{bottom:910.853333pt;}
.y91_c01284{bottom:911.613333pt;}
.y8f_c01284{bottom:913.920000pt;}
.y8e_c01284{bottom:914.693333pt;}
.y92_c01284{bottom:915.453333pt;}
.y8d_c01284{bottom:916.226667pt;}
.y1d6_c01284{bottom:919.293333pt;}
.y8a_c01284{bottom:927.746667pt;}
.y8c_c01284{bottom:933.120000pt;}
.y89_c01284{bottom:933.893333pt;}
.y8b_c01284{bottom:934.653333pt;}
.y84_c01284{bottom:935.426667pt;}
.y88_c01284{bottom:936.960000pt;}
.y85_c01284{bottom:940.026667pt;}
.y87_c01284{bottom:943.106667pt;}
.y86_c01284{bottom:944.640000pt;}
.y82_c01284{bottom:946.946667pt;}
.y7f_c01284{bottom:950.013333pt;}
.y83_c01284{bottom:950.786667pt;}
.y7e_c01284{bottom:951.546667pt;}
.y81_c01284{bottom:953.093333pt;}
.y80_c01284{bottom:953.853333pt;}
.y7b_c01284{bottom:954.626667pt;}
.y7d_c01284{bottom:955.386667pt;}
.y7c_c01284{bottom:956.933333pt;}
.y79_c01284{bottom:964.613333pt;}
.y78_c01284{bottom:966.146667pt;}
.y73_c01284{bottom:967.680000pt;}
.y7a_c01284{bottom:968.453333pt;}
.y72_c01284{bottom:969.213333pt;}
.y74_c01284{bottom:969.986667pt;}
.y77_c01284{bottom:971.520000pt;}
.y76_c01284{bottom:972.293333pt;}
.y75_c01284{bottom:973.053333pt;}
.y71_c01284{bottom:976.133333pt;}
.y70_c01284{bottom:976.893333pt;}
.y6f_c01284{bottom:978.426667pt;}
.y6c_c01284{bottom:979.200000pt;}
.y6d_c01284{bottom:979.973333pt;}
.y6a_c01284{bottom:981.506667pt;}
.y6e_c01284{bottom:982.266667pt;}
.y6b_c01284{bottom:987.653333pt;}
.y68_c01284{bottom:1000.706667pt;}
.y69_c01284{bottom:1001.466667pt;}
.y65_c01284{bottom:1002.240000pt;}
.y66_c01284{bottom:1003.013333pt;}
.y67_c01284{bottom:1005.306667pt;}
.y64_c01284{bottom:1006.080000pt;}
.y63_c01284{bottom:1008.386667pt;}
.y61_c01284{bottom:1019.133333pt;}
.y5d_c01284{bottom:1019.906667pt;}
.y5f_c01284{bottom:1022.213333pt;}
.y5b_c01284{bottom:1023.746667pt;}
.y5e_c01284{bottom:1024.506667pt;}
.y60_c01284{bottom:1025.280000pt;}
.y5c_c01284{bottom:1026.053333pt;}
.y5a_c01284{bottom:1028.346667pt;}
.y62_c01284{bottom:1030.653333pt;}
.y57_c01284{bottom:1035.266667pt;}
.y59_c01284{bottom:1036.026667pt;}
.y58_c01284{bottom:1036.800000pt;}
.y56_c01284{bottom:1043.706667pt;}
.y55_c01284{bottom:1053.693333pt;}
.y50_c01284{bottom:1055.226667pt;}
.y53_c01284{bottom:1056.000000pt;}
.y52_c01284{bottom:1056.773333pt;}
.y4f_c01284{bottom:1058.306667pt;}
.y54_c01284{bottom:1059.066667pt;}
.y51_c01284{bottom:1059.840000pt;}
.y4e_c01284{bottom:1060.613333pt;}
.y47_c01284{bottom:1061.373333pt;}
.y4d_c01284{bottom:1063.680000pt;}
.y48_c01284{bottom:1064.453333pt;}
.y4c_c01284{bottom:1065.986667pt;}
.y4a_c01284{bottom:1066.746667pt;}
.y4b_c01284{bottom:1067.520000pt;}
.y49_c01284{bottom:1069.053333pt;}
.y46_c01284{bottom:1070.586667pt;}
.y45_c01284{bottom:1072.893333pt;}
.y44_c01284{bottom:1074.426667pt;}
.y43_c01284{bottom:1075.200000pt;}
.y42_c01284{bottom:1079.813333pt;}
.y41_c01284{bottom:1089.786667pt;}
.y3e_c01284{bottom:1091.333333pt;}
.y40_c01284{bottom:1092.093333pt;}
.y3f_c01284{bottom:1093.626667pt;}
.y3d_c01284{bottom:1094.400000pt;}
.y3b_c01284{bottom:1095.173333pt;}
.y3c_c01284{bottom:1098.240000pt;}
.y3a_c01284{bottom:1103.613333pt;}
.y1d2_c01284{bottom:1106.693333pt;}
.y38_c01284{bottom:1107.453333pt;}
.y37_c01284{bottom:1108.986667pt;}
.y36_c01284{bottom:1109.760000pt;}
.y39_c01284{bottom:1110.533333pt;}
.y34_c01284{bottom:1111.293333pt;}
.y33_c01284{bottom:1112.066667pt;}
.y30_c01284{bottom:1114.373333pt;}
.y35_c01284{bottom:1115.133333pt;}
.y32_c01284{bottom:1117.440000pt;}
.y31_c01284{bottom:1121.280000pt;}
.y2e_c01284{bottom:1128.960000pt;}
.y2d_c01284{bottom:1129.733333pt;}
.y2c_c01284{bottom:1130.493333pt;}
.y2f_c01284{bottom:1132.026667pt;}
.y29_c01284{bottom:1132.800000pt;}
.y2b_c01284{bottom:1133.573333pt;}
.y2a_c01284{bottom:1134.333333pt;}
.y26_c01284{bottom:1135.866667pt;}
.y28_c01284{bottom:1136.640000pt;}
.y27_c01284{bottom:1138.173333pt;}
.y24_c01284{bottom:1145.093333pt;}
.y23_c01284{bottom:1146.626667pt;}
.y25_c01284{bottom:1147.386667pt;}
.y21_c01284{bottom:1148.160000pt;}
.y1e_c01284{bottom:1148.933333pt;}
.y1b_c01284{bottom:1150.466667pt;}
.y22_c01284{bottom:1151.226667pt;}
.y1c_c01284{bottom:1152.000000pt;}
.y1f_c01284{bottom:1152.773333pt;}
.y1d_c01284{bottom:1153.533333pt;}
.y1a_c01284{bottom:1156.613333pt;}
.y19_c01284{bottom:1157.373333pt;}
.y18_c01284{bottom:1160.453333pt;}
.y17_c01284{bottom:1163.520000pt;}
.y20_c01284{bottom:1164.293333pt;}
.y14_c01284{bottom:1165.826667pt;}
.y15_c01284{bottom:1166.586667pt;}
.y12_c01284{bottom:1167.360000pt;}
.y16_c01284{bottom:1168.133333pt;}
.y13_c01284{bottom:1168.893333pt;}
.y11_c01284{bottom:1171.200000pt;}
.yf_c01284{bottom:1175.040000pt;}
.ye_c01284{bottom:1175.813333pt;}
.yc_c01284{bottom:1178.106667pt;}
.y10_c01284{bottom:1179.653333pt;}
.yd_c01284{bottom:1180.413333pt;}
.ya_c01284{bottom:1181.946667pt;}
.yb_c01284{bottom:1184.253333pt;}
.y9_c01284{bottom:1185.026667pt;}
.y6_c01284{bottom:1187.333333pt;}
.y5_c01284{bottom:1188.093333pt;}
.y4_c01284{bottom:1188.866667pt;}
.y8_c01284{bottom:1191.173333pt;}
.y7_c01284{bottom:1191.933333pt;}
.y2_c01284{bottom:1192.706667pt;}
.y3_c01284{bottom:1195.013333pt;}
.y1d1_c01284{bottom:1201.146667pt;}
.y1_c01284{bottom:1214.213333pt;}
.y1d5_c01284{bottom:1231.106667pt;}
.y1d4_c01284{bottom:1238.013333pt;}
.y1d3_c01284{bottom:1251.840000pt;}
.ha_c01284{height:2.764500pt;}
.h3_c01284{height:4.799479pt;}
.h1e_c01284{height:5.519401pt;}
.h2_c01284{height:8.303099pt;}
.h9_c01284{height:11.038802pt;}
.hb_c01284{height:13.822500pt;}
.hd_c01284{height:16.606198pt;}
.he_c01284{height:19.341901pt;}
.h10_c01284{height:22.125599pt;}
.hc_c01284{height:24.861302pt;}
.hf_c01284{height:27.645000pt;}
.h1f_c01284{height:30.428698pt;}
.h18_c01284{height:33.164401pt;}
.h15_c01284{height:35.948099pt;}
.h13_c01284{height:38.683802pt;}
.h19_c01284{height:41.467500pt;}
.h4_c01284{height:44.251198pt;}
.h16_c01284{height:46.986901pt;}
.h11_c01284{height:49.770599pt;}
.h1b_c01284{height:52.506302pt;}
.h8_c01284{height:55.290000pt;}
.h17_c01284{height:58.073698pt;}
.h12_c01284{height:60.809401pt;}
.h14_c01284{height:63.593099pt;}
.h1a_c01284{height:66.328802pt;}
.h1c_c01284{height:69.112500pt;}
.h1d_c01284{height:71.896198pt;}
.h5_c01284{height:74.631901pt;}
.h20_c01284{height:77.415599pt;}
.h7_c01284{height:80.151302pt;}
.h24_c01284{height:82.935000pt;}
.h6_c01284{height:85.718698pt;}
.h23_c01284{height:88.454401pt;}
.h22_c01284{height:91.238099pt;}
.h21_c01284{height:96.757500pt;}
.h1_c01284{height:1350.000000pt;}
.h0_c01284{height:1350.146667pt;}
.w0_c01284{width:964.613333pt;}
.w1_c01284{width:964.666667pt;}
.x0_c01284{left:0.000000pt;}
.x10c_c01284{left:111.360000pt;}
.x10d_c01284{left:122.880000pt;}
.x10e_c01284{left:132.093333pt;}
.x104_c01284{left:137.466667pt;}
.xaf_c01284{left:148.226667pt;}
.xf3_c01284{left:152.826667pt;}
.x12_c01284{left:155.906667pt;}
.xb0_c01284{left:159.746667pt;}
.x13_c01284{left:164.346667pt;}
.xff_c01284{left:167.426667pt;}
.x1f_c01284{left:169.733333pt;}
.x2_c01284{left:172.026667pt;}
.xf8_c01284{left:178.946667pt;}
.xe4_c01284{left:180.480000pt;}
.xfd_c01284{left:182.786667pt;}
.xf0_c01284{left:185.853333pt;}
.x5a_c01284{left:187.386667pt;}
.x106_c01284{left:191.226667pt;}
.xdd_c01284{left:192.773333pt;}
.x94_c01284{left:194.306667pt;}
.x39_c01284{left:195.840000pt;}
.xc1_c01284{left:197.373333pt;}
.x5b_c01284{left:198.906667pt;}
.x73_c01284{left:200.453333pt;}
.x48_c01284{left:201.986667pt;}
.x20_c01284{left:203.520000pt;}
.x3_c01284{left:205.826667pt;}
.x105_c01284{left:208.893333pt;}
.x9_c01284{left:212.733333pt;}
.x14_c01284{left:215.040000pt;}
.xb1_c01284{left:216.573333pt;}
.x9c_c01284{left:218.880000pt;}
.xd9_c01284{left:221.186667pt;}
.x15_c01284{left:222.720000pt;}
.x77_c01284{left:225.026667pt;}
.xac_c01284{left:226.560000pt;}
.x49_c01284{left:228.093333pt;}
.xb7_c01284{left:230.400000pt;}
.xf5_c01284{left:234.240000pt;}
.xa_c01284{left:235.773333pt;}
.xf9_c01284{left:237.306667pt;}
.x2e_c01284{left:238.853333pt;}
.xe8_c01284{left:240.386667pt;}
.x82_c01284{left:244.226667pt;}
.xb_c01284{left:245.760000pt;}
.x21_c01284{left:247.293333pt;}
.x4_c01284{left:248.826667pt;}
.x78_c01284{left:250.373333pt;}
.x4a_c01284{left:252.666667pt;}
.xc7_c01284{left:254.213333pt;}
.x3a_c01284{left:255.746667pt;}
.x67_c01284{left:258.053333pt;}
.xc_c01284{left:263.426667pt;}
.x9d_c01284{left:265.733333pt;}
.x102_c01284{left:267.266667pt;}
.xc2_c01284{left:268.800000pt;}
.x2f_c01284{left:271.106667pt;}
.xcc_c01284{left:275.706667pt;}
.x103_c01284{left:278.013333pt;}
.x68_c01284{left:281.093333pt;}
.xb8_c01284{left:284.160000pt;}
.xe1_c01284{left:286.466667pt;}
.x22_c01284{left:289.533333pt;}
.x79_c01284{left:291.840000pt;}
.x95_c01284{left:293.373333pt;}
.x9f_c01284{left:295.680000pt;}
.xc5_c01284{left:299.520000pt;}
.xde_c01284{left:301.053333pt;}
.x69_c01284{left:303.360000pt;}
.x16_c01284{left:304.893333pt;}
.x83_c01284{left:306.426667pt;}
.x89_c01284{left:307.972667pt;}
.xd_c01284{left:313.346667pt;}
.x5_c01284{left:314.880000pt;}
.x74_c01284{left:316.413333pt;}
.x4b_c01284{left:318.720000pt;}
.x3b_c01284{left:322.560000pt;}
.x17_c01284{left:326.400000pt;}
.x108_c01284{left:328.706667pt;}
.x6a_c01284{left:330.240000pt;}
.x30_c01284{left:331.773333pt;}
.xbc_c01284{left:334.080000pt;}
.xfa_c01284{left:335.613333pt;}
.x8a_c01284{left:337.146667pt;}
.x3c_c01284{left:338.693333pt;}
.x84_c01284{left:340.226667pt;}
.xc3_c01284{left:342.533333pt;}
.x23_c01284{left:344.066667pt;}
.xa0_c01284{left:350.213333pt;}
.x101_c01284{left:352.506667pt;}
.xc8_c01284{left:354.053333pt;}
.x7a_c01284{left:357.893333pt;}
.xa3_c01284{left:359.426667pt;}
.xef_c01284{left:360.960000pt;}
.x100_c01284{left:362.493333pt;}
.xad_c01284{left:364.800000pt;}
.xd0_c01284{left:367.106667pt;}
.xdf_c01284{left:368.640000pt;}
.xcd_c01284{left:370.946667pt;}
.x9e_c01284{left:374.013333pt;}
.x18_c01284{left:377.093333pt;}
.x31_c01284{left:379.386667pt;}
.x85_c01284{left:381.693333pt;}
.x7b_c01284{left:384.000000pt;}
.xe_c01284{left:385.533333pt;}
.x8b_c01284{left:387.066667pt;}
.xfe_c01284{left:389.373333pt;}
.xbd_c01284{left:390.906667pt;}
.x24_c01284{left:393.986667pt;}
.x10a_c01284{left:395.520000pt;}
.x19_c01284{left:397.053333pt;}
.xd3_c01284{left:398.586667pt;}
.xc6_c01284{left:400.133333pt;}
.xf_c01284{left:401.666667pt;}
.xda_c01284{left:403.973333pt;}
.x7c_c01284{left:407.040000pt;}
.x86_c01284{left:408.573333pt;}
.xed_c01284{left:410.106667pt;}
.x70_c01284{left:413.186667pt;}
.xe9_c01284{left:415.493333pt;}
.xe5_c01284{left:419.333333pt;}
.x4c_c01284{left:423.173333pt;}
.xbe_c01284{left:424.706667pt;}
.x7d_c01284{left:427.013333pt;}
.xfb_c01284{left:429.306667pt;}
.x3d_c01284{left:431.613333pt;}
.x32_c01284{left:433.920000pt;}
.xae_c01284{left:435.453333pt;}
.x6_c01284{left:438.533333pt;}
.x4d_c01284{left:441.600000pt;}
.x107_c01284{left:444.666667pt;}
.x96_c01284{left:446.973333pt;}
.x8f_c01284{left:449.280000pt;}
.x109_c01284{left:451.586667pt;}
.x3e_c01284{left:453.893333pt;}
.x10b_c01284{left:456.186667pt;}
.x25_c01284{left:460.026667pt;}
.x7e_c01284{left:461.573333pt;}
.xa7_c01284{left:464.640000pt;}
.x8c_c01284{left:466.946667pt;}
.x1_c01284{left:469.253333pt;}
.xf6_c01284{left:471.546667pt;}
.xfc_c01284{left:473.093333pt;}
.x90_c01284{left:475.386667pt;}
.xdb_c01284{left:476.933333pt;}
.x1a_c01284{left:480.000000pt;}
.x26_c01284{left:481.533333pt;}
.xd4_c01284{left:483.066667pt;}
.xb2_c01284{left:486.146667pt;}
.x5c_c01284{left:487.680000pt;}
.x75_c01284{left:489.986667pt;}
.x7f_c01284{left:492.293333pt;}
.x62_c01284{left:493.826667pt;}
.x3f_c01284{left:495.360000pt;}
.x1b_c01284{left:496.893333pt;}
.x55_c01284{left:505.346667pt;}
.x71_c01284{left:507.653333pt;}
.xb9_c01284{left:509.186667pt;}
.xb3_c01284{left:510.720000pt;}
.x5d_c01284{left:512.253333pt;}
.xce_c01284{left:513.786667pt;}
.xa1_c01284{left:517.626667pt;}
.xa8_c01284{left:519.173333pt;}
.xe6_c01284{left:520.706667pt;}
.xd5_c01284{left:523.773333pt;}
.x56_c01284{left:525.306667pt;}
.x27_c01284{left:526.853333pt;}
.x40_c01284{left:529.920000pt;}
.x4e_c01284{left:531.453333pt;}
.x41_c01284{left:534.533333pt;}
.x97_c01284{left:539.906667pt;}
.x1c_c01284{left:541.440000pt;}
.x33_c01284{left:542.973333pt;}
.x87_c01284{left:546.813333pt;}
.x28_c01284{left:548.346667pt;}
.xbf_c01284{left:551.426667pt;}
.x42_c01284{left:554.493333pt;}
.xd1_c01284{left:556.026667pt;}
.xa2_c01284{left:559.106667pt;}
.x10_c01284{left:561.413333pt;}
.xcf_c01284{left:562.946667pt;}
.xa4_c01284{left:565.253333pt;}
.xc4_c01284{left:566.786667pt;}
.x29_c01284{left:568.320000pt;}
.x43_c01284{left:570.626667pt;}
.xe0_c01284{left:572.160000pt;}
.x4f_c01284{left:573.693333pt;}
.xf1_c01284{left:577.533333pt;}
.xcb_c01284{left:579.066667pt;}
.xd6_c01284{left:581.373333pt;}
.x88_c01284{left:582.906667pt;}
.x63_c01284{left:585.213333pt;}
.xeb_c01284{left:592.133333pt;}
.x7_c01284{left:593.666667pt;}
.x6b_c01284{left:595.200000pt;}
.xf4_c01284{left:596.733333pt;}
.x1d_c01284{left:600.573333pt;}
.x72_c01284{left:603.653333pt;}
.xb4_c01284{left:605.186667pt;}
.x98_c01284{left:606.720000pt;}
.x50_c01284{left:609.026667pt;}
.x76_c01284{left:610.560000pt;}
.x57_c01284{left:612.093333pt;}
.xdc_c01284{left:614.400000pt;}
.x34_c01284{left:619.013333pt;}
.x80_c01284{left:620.546667pt;}
.xe7_c01284{left:622.853333pt;}
.x2a_c01284{left:624.386667pt;}
.xf2_c01284{left:628.226667pt;}
.x6c_c01284{left:632.066667pt;}
.xa9_c01284{left:633.600000pt;}
.x51_c01284{left:635.906667pt;}
.x35_c01284{left:637.440000pt;}
.xb5_c01284{left:638.973333pt;}
.x5e_c01284{left:640.506667pt;}
.xba_c01284{left:642.053333pt;}
.x44_c01284{left:643.586667pt;}
.x6d_c01284{left:648.186667pt;}
.x58_c01284{left:652.026667pt;}
.x6e_c01284{left:653.573333pt;}
.x36_c01284{left:655.866667pt;}
.xaa_c01284{left:658.173333pt;}
.x99_c01284{left:659.706667pt;}
.xc0_c01284{left:663.546667pt;}
.x64_c01284{left:665.853333pt;}
.x8d_c01284{left:668.933333pt;}
.xec_c01284{left:670.466667pt;}
.x52_c01284{left:672.773333pt;}
.xbb_c01284{left:674.306667pt;}
.x5f_c01284{left:675.840000pt;}
.x2b_c01284{left:677.373333pt;}
.xd7_c01284{left:679.680000pt;}
.x91_c01284{left:681.213333pt;}
.x60_c01284{left:682.746667pt;}
.xee_c01284{left:684.293333pt;}
.xd2_c01284{left:688.133333pt;}
.x8e_c01284{left:691.973333pt;}
.x92_c01284{left:693.506667pt;}
.x2c_c01284{left:695.813333pt;}
.x53_c01284{left:697.346667pt;}
.x61_c01284{left:701.186667pt;}
.x65_c01284{left:707.333333pt;}
.x37_c01284{left:708.866667pt;}
.x2d_c01284{left:711.173333pt;}
.x9a_c01284{left:712.706667pt;}
.x81_c01284{left:714.240000pt;}
.x8_c01284{left:715.773333pt;}
.x45_c01284{left:718.080000pt;}
.xab_c01284{left:719.613333pt;}
.x1e_c01284{left:724.986667pt;}
.x6f_c01284{left:726.533333pt;}
.x38_c01284{left:728.066667pt;}
.x54_c01284{left:729.600000pt;}
.x46_c01284{left:732.666667pt;}
.xe2_c01284{left:734.213333pt;}
.xea_c01284{left:735.746667pt;}
.x93_c01284{left:738.053333pt;}
.x66_c01284{left:741.893333pt;}
.xd8_c01284{left:744.960000pt;}
.xa5_c01284{left:748.800000pt;}
.x47_c01284{left:750.333333pt;}
.xf7_c01284{left:751.866667pt;}
.x11_c01284{left:753.413333pt;}
.xa6_c01284{left:754.946667pt;}
.x59_c01284{left:757.253333pt;}
.x9b_c01284{left:761.853333pt;}
.xb6_c01284{left:766.466667pt;}
.xe3_c01284{left:773.373333pt;}
.xc9_c01284{left:781.053333pt;}
.xca_c01284{left:797.946667pt;}
.x10f_c01284{left:832.506667pt;}
.x110_c01284{left:863.226667pt;}
.x117_c01284{left:866.306667pt;}
.x118_c01284{left:868.613333pt;}
.x111_c01284{left:870.146667pt;}
.x116_c01284{left:883.200000pt;}
.x112_c01284{left:885.506667pt;}
.x115_c01284{left:902.400000pt;}
.x113_c01284{left:927.746667pt;}
.x114_c01284{left:940.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ea2320e81f08c05f74f22121.woff2')format("woff");}.ff1_c01285{font-family:ff1_c01285;line-height:1.109863;font-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_c01285{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01285{transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);}
.m4d_c01285{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);}
.m6_c01285{transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01285{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.me3_c01285{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m78_c01285{transform:matrix(0.074975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074975,0.000000,0.000000,0.250000,0,0);}
.m105_c01285{transform:matrix(0.079425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079425,0.000000,0.000000,0.250000,0,0);}
.m11f_c01285{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.me0_c01285{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.m116_c01285{transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093775,0.000000,0.000000,0.250000,0,0);}
.m162_c01285{transform:matrix(0.099900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099900,0.000000,0.000000,0.250000,0,0);}
.m2b_c01285{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);}
.m163_c01285{transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104000,0.000000,0.000000,0.250000,0,0);}
.m159_c01285{transform:matrix(0.105100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105100,0.000000,0.000000,0.250000,0,0);}
.m196_c01285{transform:matrix(0.106700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106700,0.000000,0.000000,0.250000,0,0);}
.m176_c01285{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m190_c01285{transform:matrix(0.107900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107900,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01285{transform:matrix(0.109175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109175,0.000000,0.000000,0.250000,0,0);}
.m197_c01285{transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);}
.md2_c01285{transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);}
.mb_c01285{transform:matrix(0.115450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115450,0.000000,0.000000,0.250000,0,0);}
.m8_c01285{transform:matrix(0.116400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116400,0.000000,0.000000,0.250000,0,0);}
.m153_c01285{transform:matrix(0.116925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116925,0.000000,0.000000,0.250000,0,0);}
.m155_c01285{transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);}
.m147_c01285{transform:matrix(0.118300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118300,0.000000,0.000000,0.250000,0,0);}
.m9b_c01285{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m73_c01285{transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);}
.m161_c01285{transform:matrix(0.120900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120900,0.000000,0.000000,0.250000,0,0);}
.m17f_c01285{transform:matrix(0.121800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121800,0.000000,0.000000,0.250000,0,0);}
.mfd_c01285{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);}
.mdd_c01285{transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);}
.m165_c01285{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m169_c01285{transform:matrix(0.124325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124325,0.000000,0.000000,0.250000,0,0);}
.m172_c01285{transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);}
.m122_c01285{transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);}
.m15b_c01285{transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);}
.m127_c01285{transform:matrix(0.130275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130275,0.000000,0.000000,0.250000,0,0);}
.m2c_c01285{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m7a_c01285{transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);}
.m167_c01285{transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);}
.mf1_c01285{transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01285{transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01285{transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);}
.m140_c01285{transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);}
.m99_c01285{transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);}
.m166_c01285{transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);}
.m154_c01285{transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);}
.m16d_c01285{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.m180_c01285{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01285{transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);}
.mae_c01285{transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);}
.mab_c01285{transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);}
.ma2_c01285{transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);}
.m37_c01285{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01285{transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);}
.m158_c01285{transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);}
.mde_c01285{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m194_c01285{transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);}
.m14c_c01285{transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01285{transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);}
.maa_c01285{transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);}
.m18f_c01285{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);}
.m148_c01285{transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);}
.m13e_c01285{transform:matrix(0.142800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142800,0.000000,0.000000,0.250000,0,0);}
.m156_c01285{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m3_c01285{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m77_c01285{transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);}
.mba_c01285{transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);}
.m19a_c01285{transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);}
.mfc_c01285{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);}
.m13c_c01285{transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);}
.m14b_c01285{transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);}
.mb9_c01285{transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);}
.mf9_c01285{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.m181_c01285{transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);}
.m16b_c01285{transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);}
.m13a_c01285{transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);}
.m126_c01285{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.m11e_c01285{transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);}
.m11d_c01285{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.m136_c01285{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.mfb_c01285{transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);}
.m15c_c01285{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);}
.ma_c01285{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.m129_c01285{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m19b_c01285{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.ma0_c01285{transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);}
.m19d_c01285{transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);}
.m150_c01285{transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);}
.ma3_c01285{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m9c_c01285{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m18a_c01285{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.md9_c01285{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);}
.m5c_c01285{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m16f_c01285{transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);}
.m124_c01285{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.mea_c01285{transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);}
.mc2_c01285{transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);}
.m131_c01285{transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);}
.m34_c01285{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01285{transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);}
.m4_c01285{transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);}
.m4a_c01285{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.me5_c01285{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m193_c01285{transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165050,0.000000,0.000000,0.250000,0,0);}
.m13b_c01285{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m8f_c01285{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m47_c01285{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);}
.mb7_c01285{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);}
.ma9_c01285{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);}
.m4c_c01285{transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);}
.me2_c01285{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m186_c01285{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m6b_c01285{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.m143_c01285{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);}
.m49_c01285{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01285{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);}
.md6_c01285{transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);}
.mb4_c01285{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m16e_c01285{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);}
.m195_c01285{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.m38_c01285{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);}
.me_c01285{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);}
.mad_c01285{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01285{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.ma7_c01285{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);}
.m189_c01285{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m171_c01285{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.m146_c01285{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m63_c01285{transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01285{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m132_c01285{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.m101_c01285{transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);}
.m149_c01285{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);}
.m125_c01285{transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);}
.mf5_c01285{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);}
.m107_c01285{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);}
.m10f_c01285{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);}
.m95_c01285{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);}
.m57_c01285{transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);}
.m174_c01285{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m92_c01285{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);}
.m71_c01285{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.m6d_c01285{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m93_c01285{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m10c_c01285{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);}
.mfe_c01285{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.mff_c01285{transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);}
.m89_c01285{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);}
.m36_c01285{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);}
.m168_c01285{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.maf_c01285{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m41_c01285{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);}
.m15a_c01285{transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);}
.m91_c01285{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m17c_c01285{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);}
.mb3_c01285{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m11c_c01285{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);}
.m85_c01285{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.mf0_c01285{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);}
.m12a_c01285{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);}
.mcc_c01285{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.m45_c01285{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);}
.m8d_c01285{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01285{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);}
.m11_c01285{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01285{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01285{transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);}
.m17e_c01285{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m1af_c01285{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.m1be_c01285{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);}
.m175_c01285{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.mc9_c01285{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);}
.mef_c01285{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.meb_c01285{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01285{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);}
.m42_c01285{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m135_c01285{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01285{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.m141_c01285{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.mc4_c01285{transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);}
.m16a_c01285{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m9_c01285{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);}
.me6_c01285{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.m9f_c01285{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);}
.m1a9_c01285{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m15f_c01285{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);}
.m182_c01285{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.m100_c01285{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m13d_c01285{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m104_c01285{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.m123_c01285{transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);}
.m120_c01285{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);}
.m1bb_c01285{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01285{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01285{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);}
.m198_c01285{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.m7e_c01285{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.mf7_c01285{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);}
.m1a2_c01285{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);}
.m113_c01285{transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);}
.mbb_c01285{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);}
.mc0_c01285{transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);}
.mf2_c01285{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);}
.m10a_c01285{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m152_c01285{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);}
.m3e_c01285{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.mcf_c01285{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);}
.m1b4_c01285{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m18b_c01285{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);}
.m7c_c01285{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.m97_c01285{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m19f_c01285{transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);}
.ma1_c01285{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01285{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);}
.ma8_c01285{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);}
.m62_c01285{transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);}
.m1f_c01285{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m5d_c01285{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);}
.md0_c01285{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.m117_c01285{transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01285{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m11a_c01285{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.mc7_c01285{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m74_c01285{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);}
.md8_c01285{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);}
.m188_c01285{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m15e_c01285{transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);}
.m65_c01285{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);}
.m10e_c01285{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m170_c01285{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.md1_c01285{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.med_c01285{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.mbc_c01285{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m12d_c01285{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01285{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.m1a_c01285{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);}
.m1a3_c01285{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);}
.m1ca_c01285{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);}
.m22_c01285{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);}
.md4_c01285{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);}
.m9a_c01285{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01285{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.mbf_c01285{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);}
.m60_c01285{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);}
.m32_c01285{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.m8b_c01285{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);}
.m119_c01285{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);}
.m157_c01285{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m66_c01285{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m14e_c01285{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);}
.m1a7_c01285{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.m53_c01285{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.mcb_c01285{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.m15d_c01285{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);}
.mec_c01285{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m102_c01285{transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);}
.m112_c01285{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);}
.m10d_c01285{transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);}
.m6c_c01285{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m5e_c01285{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.me4_c01285{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);}
.m3a_c01285{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m80_c01285{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);}
.mc8_c01285{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);}
.m1c3_c01285{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mb8_c01285{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);}
.m13f_c01285{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);}
.m1ba_c01285{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);}
.m51_c01285{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01285{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m2_c01285{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);}
.m94_c01285{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);}
.m69_c01285{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);}
.mf4_c01285{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);}
.m10_c01285{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m109_c01285{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);}
.m177_c01285{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);}
.m40_c01285{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);}
.m106_c01285{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);}
.m192_c01285{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.mda_c01285{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.mee_c01285{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01285{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);}
.m130_c01285{transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221550,0.000000,0.000000,0.250000,0,0);}
.m30_c01285{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);}
.m18d_c01285{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);}
.m11b_c01285{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.m1c_c01285{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m9d_c01285{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mdb_c01285{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);}
.m1d1_c01285{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);}
.m179_c01285{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);}
.me7_c01285{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01285{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);}
.mac_c01285{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);}
.m96_c01285{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);}
.m144_c01285{transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);}
.mbd_c01285{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m54_c01285{transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);}
.m178_c01285{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m76_c01285{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.mf6_c01285{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m70_c01285{transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);}
.mdf_c01285{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);}
.m16_c01285{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);}
.m14f_c01285{transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01285{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m17b_c01285{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m7f_c01285{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);}
.m1b5_c01285{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m7b_c01285{transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);}
.m61_c01285{transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231175,0.000000,0.000000,0.250000,0,0);}
.mdc_c01285{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);}
.m1a4_c01285{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);}
.m3d_c01285{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m7d_c01285{transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);}
.m199_c01285{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);}
.m142_c01285{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);}
.m1d2_c01285{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);}
.m151_c01285{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m10b_c01285{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);}
.m1ad_c01285{transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);}
.m17d_c01285{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);}
.m1ab_c01285{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.m3f_c01285{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.me8_c01285{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);}
.m15_c01285{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.ma4_c01285{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m90_c01285{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);}
.mbe_c01285{transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);}
.m134_c01285{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);}
.mc5_c01285{transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);}
.m29_c01285{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);}
.mcd_c01285{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);}
.md7_c01285{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.md3_c01285{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);}
.m133_c01285{transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);}
.m111_c01285{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m68_c01285{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.mc3_c01285{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);}
.m1a5_c01285{transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);}
.m8c_c01285{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.mc_c01285{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01285{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);}
.m1cb_c01285{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.mce_c01285{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);}
.m79_c01285{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01285{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);}
.m27_c01285{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);}
.mf3_c01285{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);}
.m183_c01285{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);}
.m1bc_c01285{transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);}
.m160_c01285{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);}
.mfa_c01285{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);}
.m108_c01285{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m88_c01285{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);}
.m26_c01285{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5_c01285{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);}
.m6f_c01285{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);}
.mf_c01285{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);}
.m48_c01285{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);}
.m3c_c01285{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m20_c01285{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m59_c01285{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7_c01285{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);}
.mb6_c01285{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01285{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);}
.m24_c01285{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);}
.m17_c01285{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01285{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);}
.m18_c01285{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m87_c01285{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m23_c01285{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);}
.mb2_c01285{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m98_c01285{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);}
.m1e_c01285{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);}
.m19_c01285{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8a_c01285{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m184_c01285{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);}
.ma5_c01285{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m0_c01285{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m83_c01285{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);}
.m6e_c01285{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m13_c01285{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m114_c01285{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m31_c01285{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md_c01285{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01285{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m58_c01285{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m81_c01285{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c01285{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);}
.m1a8_c01285{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m52_c01285{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01285{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12_c01285{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01285{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);}
.m86_c01285{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);}
.m1ac_c01285{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01285{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m187_c01285{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);}
.m3b_c01285{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m50_c01285{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m25_c01285{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m44_c01285{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m64_c01285{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);}
.mc1_c01285{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m39_c01285{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);}
.m46_c01285{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01285{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m118_c01285{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);}
.m84_c01285{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb0_c01285{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m19c_c01285{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m35_c01285{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01285{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m14a_c01285{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);}
.me9_c01285{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01285{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);}
.mca_c01285{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf8_c01285{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01285{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);}
.m21_c01285{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb5_c01285{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m33_c01285{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m56_c01285{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.md5_c01285{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m12e_c01285{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);}
.m1b8_c01285{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01285{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m18c_c01285{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01285{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m17a_c01285{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m67_c01285{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m14d_c01285{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01285{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);}
.m185_c01285{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m103_c01285{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m19e_c01285{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);}
.m2f_c01285{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m43_c01285{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m139_c01285{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m110_c01285{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1_c01285{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m55_c01285{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m145_c01285{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m82_c01285{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m12c_c01285{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01285{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.me1_c01285{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m18e_c01285{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m138_c01285{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m12f_c01285{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m128_c01285{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01285{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc6_c01285{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m16c_c01285{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m75_c01285{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01285{transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01285{transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);}
.m72_c01285{transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.200000,0.000000,0.000000,0.250000,0,0);}
.m12b_c01285{transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01285{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m137_c01285{transform:matrix(1.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.645000,0.000000,0.000000,0.250000,0,0);}
.m173_c01285{transform:matrix(1.957500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.957500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.957500,0.000000,0.000000,0.250000,0,0);}
.m115_c01285{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.m164_c01285{transform:matrix(2.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.295000,0.000000,0.000000,0.250000,0,0);}
.m191_c01285{transform:matrix(5.975000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.975000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.975000,0.000000,0.000000,0.250000,0,0);}
.m121_c01285{transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);}
.v2_c01285{vertical-align:-6.960000px;}
.v0_c01285{vertical-align:0.000000px;}
.v1_c01285{vertical-align:3.480000px;}
.ls2_c01285{letter-spacing:0.000000px;}
.ls1_c01285{letter-spacing:45.402000px;}
.ls0_c01285{letter-spacing:57.102000px;}
.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:-10.120800px;}
.ws1_c01285{word-spacing:-6.330480px;}
.ws2_c01285{word-spacing:0.000000px;}
.fc0_c01285{color:transparent;}
.fs16_c01285{font-size:3.456000px;}
.fs2_c01285{font-size:6.000000px;}
.fs15_c01285{font-size:6.900000px;}
.fs19_c01285{font-size:10.380000px;}
.fs12_c01285{font-size:13.800000px;}
.fs17_c01285{font-size:17.280000px;}
.fs18_c01285{font-size:20.760000px;}
.fs1c_c01285{font-size:24.180000px;}
.fs0_c01285{font-size:27.660000px;}
.fs1e_c01285{font-size:31.080000px;}
.fs13_c01285{font-size:34.560000px;}
.fs1d_c01285{font-size:38.040000px;}
.fs1b_c01285{font-size:41.460000px;}
.fs14_c01285{font-size:44.940000px;}
.fs1a_c01285{font-size:48.360000px;}
.fsf_c01285{font-size:51.840000px;}
.fsb_c01285{font-size:55.320000px;}
.fs1_c01285{font-size:58.740000px;}
.fs4_c01285{font-size:62.220000px;}
.fs11_c01285{font-size:65.640000px;}
.fs7_c01285{font-size:69.120000px;}
.fsa_c01285{font-size:72.600000px;}
.fs10_c01285{font-size:76.020000px;}
.fsd_c01285{font-size:79.500000px;}
.fs8_c01285{font-size:82.920000px;}
.fse_c01285{font-size:86.400000px;}
.fs9_c01285{font-size:89.880000px;}
.fs5_c01285{font-size:93.300000px;}
.fsc_c01285{font-size:96.780000px;}
.fs1f_c01285{font-size:100.200000px;}
.fs20_c01285{font-size:103.680000px;}
.fs3_c01285{font-size:110.580000px;}
.fs6_c01285{font-size:114.060000px;}
.y0_c01285{bottom:0.000000px;}
.y1dc_c01285{bottom:167.610000px;}
.y1d1_c01285{bottom:171.930000px;}
.y1d6_c01285{bottom:172.800000px;}
.y1d9_c01285{bottom:173.670000px;}
.y1d3_c01285{bottom:175.395000px;}
.y1d5_c01285{bottom:176.250000px;}
.y1da_c01285{bottom:177.990000px;}
.y1d4_c01285{bottom:178.845000px;}
.y1d8_c01285{bottom:179.715000px;}
.y1db_c01285{bottom:180.570000px;}
.y1d7_c01285{bottom:181.440000px;}
.y1d2_c01285{bottom:184.890000px;}
.y1c7_c01285{bottom:190.080000px;}
.y1c8_c01285{bottom:190.950000px;}
.y1cd_c01285{bottom:191.805000px;}
.y1cf_c01285{bottom:193.530000px;}
.y1c6_c01285{bottom:196.125000px;}
.y1ce_c01285{bottom:196.995000px;}
.y1c4_c01285{bottom:197.850000px;}
.y1cb_c01285{bottom:198.720000px;}
.y1ca_c01285{bottom:199.590000px;}
.y1c9_c01285{bottom:202.170000px;}
.y1cc_c01285{bottom:206.490000px;}
.y1c5_c01285{bottom:210.810000px;}
.y1d0_c01285{bottom:213.405000px;}
.y1c0_c01285{bottom:216.000000px;}
.y1c2_c01285{bottom:216.870000px;}
.y1c3_c01285{bottom:217.725000px;}
.y1c1_c01285{bottom:222.045000px;}
.y1b8_c01285{bottom:236.730000px;}
.y1bb_c01285{bottom:237.600000px;}
.y1ba_c01285{bottom:238.470000px;}
.y1b9_c01285{bottom:240.195000px;}
.y1be_c01285{bottom:241.050000px;}
.y1b7_c01285{bottom:241.920000px;}
.y1bd_c01285{bottom:242.790000px;}
.y1bc_c01285{bottom:243.645000px;}
.y1bf_c01285{bottom:246.240000px;}
.y1b1_c01285{bottom:257.475000px;}
.y1b2_c01285{bottom:260.925000px;}
.y1b3_c01285{bottom:262.650000px;}
.y1b5_c01285{bottom:263.520000px;}
.y1b4_c01285{bottom:264.390000px;}
.y1b6_c01285{bottom:270.435000px;}
.y1ab_c01285{bottom:277.350000px;}
.y1ad_c01285{bottom:278.205000px;}
.y1b0_c01285{bottom:279.075000px;}
.y1ac_c01285{bottom:282.525000px;}
.y1af_c01285{bottom:283.395000px;}
.y1ae_c01285{bottom:284.250000px;}
.y1a3_c01285{bottom:294.630000px;}
.y1a4_c01285{bottom:295.485000px;}
.y1a8_c01285{bottom:298.080000px;}
.y1a9_c01285{bottom:298.950000px;}
.y1aa_c01285{bottom:299.805000px;}
.y1a7_c01285{bottom:302.400000px;}
.y1a6_c01285{bottom:303.270000px;}
.y1a5_c01285{bottom:304.125000px;}
.y19b_c01285{bottom:314.490000px;}
.y19c_c01285{bottom:317.085000px;}
.y1a0_c01285{bottom:317.955000px;}
.y1a1_c01285{bottom:318.810000px;}
.y19d_c01285{bottom:320.550000px;}
.y19f_c01285{bottom:322.275000px;}
.y19e_c01285{bottom:323.130000px;}
.y19a_c01285{bottom:324.000000px;}
.y1a2_c01285{bottom:325.725000px;}
.y18e_c01285{bottom:335.235000px;}
.y191_c01285{bottom:336.090000px;}
.y198_c01285{bottom:337.830000px;}
.y192_c01285{bottom:338.685000px;}
.y196_c01285{bottom:339.555000px;}
.y190_c01285{bottom:340.410000px;}
.y197_c01285{bottom:342.150000px;}
.y18f_c01285{bottom:343.005000px;}
.y193_c01285{bottom:343.875000px;}
.y199_c01285{bottom:344.730000px;}
.y195_c01285{bottom:346.470000px;}
.y194_c01285{bottom:348.195000px;}
.y187_c01285{bottom:358.560000px;}
.y18b_c01285{bottom:359.430000px;}
.y18a_c01285{bottom:360.285000px;}
.y186_c01285{bottom:361.155000px;}
.y18c_c01285{bottom:363.750000px;}
.y189_c01285{bottom:364.605000px;}
.y18d_c01285{bottom:365.475000px;}
.y188_c01285{bottom:376.710000px;}
.y185_c01285{bottom:377.565000px;}
.y181_c01285{bottom:379.290000px;}
.y17f_c01285{bottom:381.030000px;}
.y184_c01285{bottom:382.755000px;}
.y183_c01285{bottom:383.610000px;}
.y180_c01285{bottom:384.480000px;}
.y17e_c01285{bottom:385.350000px;}
.y182_c01285{bottom:387.930000px;}
.y179_c01285{bottom:400.035000px;}
.y177_c01285{bottom:400.890000px;}
.y17a_c01285{bottom:401.760000px;}
.y17c_c01285{bottom:402.630000px;}
.y176_c01285{bottom:403.485000px;}
.y17b_c01285{bottom:404.355000px;}
.y178_c01285{bottom:405.210000px;}
.y17d_c01285{bottom:406.080000px;}
.y174_c01285{bottom:419.040000px;}
.y16e_c01285{bottom:420.765000px;}
.y175_c01285{bottom:422.490000px;}
.y172_c01285{bottom:423.360000px;}
.y173_c01285{bottom:424.230000px;}
.y16f_c01285{bottom:425.085000px;}
.y170_c01285{bottom:425.955000px;}
.y171_c01285{bottom:431.130000px;}
.y168_c01285{bottom:435.450000px;}
.y16b_c01285{bottom:437.190000px;}
.y16c_c01285{bottom:439.770000px;}
.y167_c01285{bottom:441.510000px;}
.y16a_c01285{bottom:444.960000px;}
.y16d_c01285{bottom:446.685000px;}
.y169_c01285{bottom:447.555000px;}
.y15e_c01285{bottom:453.600000px;}
.y164_c01285{bottom:455.325000px;}
.y161_c01285{bottom:456.195000px;}
.y160_c01285{bottom:457.050000px;}
.y166_c01285{bottom:457.920000px;}
.y162_c01285{bottom:460.515000px;}
.y15f_c01285{bottom:461.370000px;}
.y165_c01285{bottom:464.835000px;}
.y15d_c01285{bottom:465.690000px;}
.y163_c01285{bottom:470.880000px;}
.y156_c01285{bottom:476.070000px;}
.y155_c01285{bottom:476.925000px;}
.y15b_c01285{bottom:478.650000px;}
.y15c_c01285{bottom:479.520000px;}
.y15a_c01285{bottom:480.390000px;}
.y159_c01285{bottom:483.840000px;}
.y158_c01285{bottom:486.435000px;}
.y157_c01285{bottom:487.290000px;}
.y154_c01285{bottom:498.525000px;}
.y152_c01285{bottom:499.395000px;}
.y150_c01285{bottom:500.250000px;}
.y14d_c01285{bottom:501.120000px;}
.y14f_c01285{bottom:501.990000px;}
.y153_c01285{bottom:502.845000px;}
.y151_c01285{bottom:503.715000px;}
.y14e_c01285{bottom:504.570000px;}
.y14c_c01285{bottom:513.210000px;}
.y149_c01285{bottom:514.080000px;}
.y14a_c01285{bottom:514.950000px;}
.y148_c01285{bottom:515.805000px;}
.y14b_c01285{bottom:516.675000px;}
.y147_c01285{bottom:522.720000px;}
.y13f_c01285{bottom:537.405000px;}
.y13e_c01285{bottom:540.870000px;}
.y146_c01285{bottom:541.725000px;}
.y144_c01285{bottom:542.595000px;}
.y142_c01285{bottom:543.450000px;}
.y141_c01285{bottom:544.320000px;}
.y145_c01285{bottom:546.045000px;}
.y143_c01285{bottom:546.915000px;}
.y140_c01285{bottom:547.770000px;}
.y138_c01285{bottom:559.005000px;}
.y137_c01285{bottom:559.875000px;}
.y139_c01285{bottom:560.730000px;}
.y135_c01285{bottom:561.600000px;}
.y136_c01285{bottom:565.050000px;}
.y13c_c01285{bottom:565.920000px;}
.y13d_c01285{bottom:566.790000px;}
.y13a_c01285{bottom:569.370000px;}
.y13b_c01285{bottom:570.240000px;}
.y133_c01285{bottom:582.330000px;}
.y12d_c01285{bottom:583.200000px;}
.y134_c01285{bottom:584.925000px;}
.y12e_c01285{bottom:587.520000px;}
.y130_c01285{bottom:589.245000px;}
.y131_c01285{bottom:590.115000px;}
.y132_c01285{bottom:594.435000px;}
.y12f_c01285{bottom:597.030000px;}
.y129_c01285{bottom:601.350000px;}
.y128_c01285{bottom:602.205000px;}
.y12c_c01285{bottom:603.075000px;}
.y12b_c01285{bottom:603.930000px;}
.y127_c01285{bottom:604.800000px;}
.y11f_c01285{bottom:605.670000px;}
.y12a_c01285{bottom:606.525000px;}
.y125_c01285{bottom:607.395000px;}
.y120_c01285{bottom:612.570000px;}
.y121_c01285{bottom:615.165000px;}
.y126_c01285{bottom:616.035000px;}
.y123_c01285{bottom:616.890000px;}
.y122_c01285{bottom:617.760000px;}
.y124_c01285{bottom:619.485000px;}
.y119_c01285{bottom:621.210000px;}
.y11e_c01285{bottom:622.950000px;}
.y11c_c01285{bottom:623.805000px;}
.y11d_c01285{bottom:624.675000px;}
.y11b_c01285{bottom:626.400000px;}
.y11a_c01285{bottom:639.360000px;}
.y113_c01285{bottom:641.085000px;}
.y111_c01285{bottom:641.955000px;}
.y115_c01285{bottom:642.810000px;}
.y117_c01285{bottom:643.680000px;}
.y116_c01285{bottom:644.550000px;}
.y112_c01285{bottom:646.275000px;}
.y114_c01285{bottom:647.130000px;}
.y118_c01285{bottom:648.000000px;}
.y10c_c01285{bottom:660.960000px;}
.y10d_c01285{bottom:661.830000px;}
.y110_c01285{bottom:663.555000px;}
.y10f_c01285{bottom:665.280000px;}
.y10a_c01285{bottom:666.150000px;}
.y10b_c01285{bottom:667.005000px;}
.y10e_c01285{bottom:667.875000px;}
.y101_c01285{bottom:680.835000px;}
.y105_c01285{bottom:681.690000px;}
.y106_c01285{bottom:682.560000px;}
.y104_c01285{bottom:683.430000px;}
.y108_c01285{bottom:684.285000px;}
.y107_c01285{bottom:685.155000px;}
.y103_c01285{bottom:686.880000px;}
.y102_c01285{bottom:687.750000px;}
.y109_c01285{bottom:698.970000px;}
.yfb_c01285{bottom:701.565000px;}
.yfd_c01285{bottom:702.435000px;}
.yff_c01285{bottom:703.290000px;}
.yfc_c01285{bottom:706.755000px;}
.yfe_c01285{bottom:707.610000px;}
.y100_c01285{bottom:708.480000px;}
.yfa_c01285{bottom:716.250000px;}
.yf4_c01285{bottom:722.310000px;}
.yf9_c01285{bottom:723.165000px;}
.yf7_c01285{bottom:724.035000px;}
.yf6_c01285{bottom:726.630000px;}
.yf5_c01285{bottom:728.355000px;}
.yf8_c01285{bottom:729.210000px;}
.yee_c01285{bottom:740.445000px;}
.yec_c01285{bottom:741.315000px;}
.yed_c01285{bottom:742.170000px;}
.yf0_c01285{bottom:743.910000px;}
.yf2_c01285{bottom:744.765000px;}
.yf1_c01285{bottom:745.635000px;}
.yef_c01285{bottom:747.360000px;}
.yf3_c01285{bottom:749.085000px;}
.ye5_c01285{bottom:761.190000px;}
.ye6_c01285{bottom:762.045000px;}
.ye7_c01285{bottom:762.915000px;}
.ye4_c01285{bottom:763.770000px;}
.yea_c01285{bottom:765.510000px;}
.ye8_c01285{bottom:767.235000px;}
.ye9_c01285{bottom:768.090000px;}
.yeb_c01285{bottom:769.830000px;}
.ydc_c01285{bottom:781.920000px;}
.yde_c01285{bottom:782.790000px;}
.ye1_c01285{bottom:785.370000px;}
.ye2_c01285{bottom:786.240000px;}
.ydd_c01285{bottom:787.110000px;}
.ye0_c01285{bottom:787.965000px;}
.ye3_c01285{bottom:788.835000px;}
.ydf_c01285{bottom:789.690000px;}
.yd2_c01285{bottom:800.925000px;}
.yd8_c01285{bottom:801.795000px;}
.yd3_c01285{bottom:802.650000px;}
.yd5_c01285{bottom:803.520000px;}
.yda_c01285{bottom:804.390000px;}
.ydb_c01285{bottom:805.245000px;}
.yd4_c01285{bottom:806.115000px;}
.yd6_c01285{bottom:806.970000px;}
.yd7_c01285{bottom:807.840000px;}
.yd9_c01285{bottom:808.710000px;}
.ycd_c01285{bottom:821.670000px;}
.ycc_c01285{bottom:822.525000px;}
.yd0_c01285{bottom:824.250000px;}
.ycb_c01285{bottom:825.990000px;}
.ycf_c01285{bottom:827.715000px;}
.yd1_c01285{bottom:830.310000px;}
.y1e7_c01285{bottom:838.080000px;}
.y1e8_c01285{bottom:838.950000px;}
.yce_c01285{bottom:841.530000px;}
.y1e6_c01285{bottom:842.400000px;}
.yc8_c01285{bottom:843.270000px;}
.yc7_c01285{bottom:844.125000px;}
.yca_c01285{bottom:844.995000px;}
.yc6_c01285{bottom:846.720000px;}
.yc9_c01285{bottom:850.170000px;}
.y1e5_c01285{bottom:854.490000px;}
.y1e4_c01285{bottom:858.810000px;}
.yc0_c01285{bottom:861.405000px;}
.yc2_c01285{bottom:863.130000px;}
.yc3_c01285{bottom:864.000000px;}
.yc4_c01285{bottom:869.190000px;}
.yc5_c01285{bottom:870.045000px;}
.yc1_c01285{bottom:882.150000px;}
.yb9_c01285{bottom:883.005000px;}
.y1e3_c01285{bottom:884.730000px;}
.ybc_c01285{bottom:885.600000px;}
.ybe_c01285{bottom:886.470000px;}
.yb8_c01285{bottom:887.325000px;}
.yba_c01285{bottom:888.195000px;}
.ybb_c01285{bottom:889.050000px;}
.ybd_c01285{bottom:889.920000px;}
.ybf_c01285{bottom:893.370000px;}
.yb2_c01285{bottom:902.010000px;}
.yb1_c01285{bottom:902.880000px;}
.yaf_c01285{bottom:903.750000px;}
.yb0_c01285{bottom:904.605000px;}
.yb6_c01285{bottom:905.475000px;}
.yb3_c01285{bottom:908.070000px;}
.yb5_c01285{bottom:908.925000px;}
.yb7_c01285{bottom:912.390000px;}
.yb4_c01285{bottom:919.290000px;}
.yac_c01285{bottom:923.610000px;}
.yab_c01285{bottom:924.480000px;}
.yaa_c01285{bottom:926.205000px;}
.ya8_c01285{bottom:927.930000px;}
.ya7_c01285{bottom:928.800000px;}
.yae_c01285{bottom:931.395000px;}
.yad_c01285{bottom:940.035000px;}
.ya9_c01285{bottom:941.760000px;}
.y9f_c01285{bottom:942.630000px;}
.y9e_c01285{bottom:943.485000px;}
.y9d_c01285{bottom:944.355000px;}
.ya0_c01285{bottom:946.080000px;}
.ya2_c01285{bottom:947.805000px;}
.ya4_c01285{bottom:948.675000px;}
.ya1_c01285{bottom:949.530000px;}
.ya3_c01285{bottom:951.270000px;}
.ya5_c01285{bottom:952.125000px;}
.ya6_c01285{bottom:953.850000px;}
.y94_c01285{bottom:963.360000px;}
.y93_c01285{bottom:964.230000px;}
.y95_c01285{bottom:965.085000px;}
.y9c_c01285{bottom:965.955000px;}
.y96_c01285{bottom:966.810000px;}
.y99_c01285{bottom:968.550000px;}
.y97_c01285{bottom:969.405000px;}
.y9b_c01285{bottom:970.275000px;}
.y9a_c01285{bottom:971.130000px;}
.y98_c01285{bottom:972.000000px;}
.y8d_c01285{bottom:982.365000px;}
.y8e_c01285{bottom:983.235000px;}
.y8a_c01285{bottom:984.090000px;}
.y8b_c01285{bottom:984.960000px;}
.y8c_c01285{bottom:985.830000px;}
.y90_c01285{bottom:986.685000px;}
.y8f_c01285{bottom:988.410000px;}
.y92_c01285{bottom:989.280000px;}
.y91_c01285{bottom:991.005000px;}
.y82_c01285{bottom:1001.370000px;}
.y86_c01285{bottom:1002.240000px;}
.y83_c01285{bottom:1003.965000px;}
.y84_c01285{bottom:1004.835000px;}
.y87_c01285{bottom:1005.690000px;}
.y81_c01285{bottom:1006.560000px;}
.y85_c01285{bottom:1007.430000px;}
.y88_c01285{bottom:1008.285000px;}
.y89_c01285{bottom:1009.155000px;}
.y7c_c01285{bottom:1021.245000px;}
.y7e_c01285{bottom:1022.970000px;}
.y80_c01285{bottom:1024.710000px;}
.y7f_c01285{bottom:1025.565000px;}
.y7d_c01285{bottom:1026.435000px;}
.y7b_c01285{bottom:1027.290000px;}
.y78_c01285{bottom:1045.440000px;}
.y75_c01285{bottom:1046.310000px;}
.y77_c01285{bottom:1047.165000px;}
.y74_c01285{bottom:1048.035000px;}
.y76_c01285{bottom:1048.890000px;}
.y7a_c01285{bottom:1049.760000px;}
.y79_c01285{bottom:1050.630000px;}
.y6f_c01285{bottom:1060.995000px;}
.y70_c01285{bottom:1063.590000px;}
.y6d_c01285{bottom:1064.445000px;}
.y6e_c01285{bottom:1065.315000px;}
.y69_c01285{bottom:1066.170000px;}
.y6b_c01285{bottom:1067.040000px;}
.y71_c01285{bottom:1067.910000px;}
.y6c_c01285{bottom:1068.765000px;}
.y73_c01285{bottom:1070.490000px;}
.y72_c01285{bottom:1071.360000px;}
.y6a_c01285{bottom:1079.130000px;}
.y66_c01285{bottom:1082.595000px;}
.y63_c01285{bottom:1083.450000px;}
.y67_c01285{bottom:1086.045000px;}
.y1e1_c01285{bottom:1087.770000px;}
.y1e2_c01285{bottom:1088.640000px;}
.y65_c01285{bottom:1091.235000px;}
.y68_c01285{bottom:1094.685000px;}
.y64_c01285{bottom:1099.005000px;}
.y5d_c01285{bottom:1102.470000px;}
.y5a_c01285{bottom:1104.195000px;}
.y5c_c01285{bottom:1107.645000px;}
.y5b_c01285{bottom:1108.515000px;}
.y5e_c01285{bottom:1109.370000px;}
.y5f_c01285{bottom:1110.240000px;}
.y60_c01285{bottom:1111.965000px;}
.y61_c01285{bottom:1114.560000px;}
.y62_c01285{bottom:1115.430000px;}
.y52_c01285{bottom:1121.475000px;}
.y56_c01285{bottom:1124.070000px;}
.y58_c01285{bottom:1124.925000px;}
.y55_c01285{bottom:1125.795000px;}
.y53_c01285{bottom:1126.650000px;}
.y54_c01285{bottom:1127.520000px;}
.y57_c01285{bottom:1130.115000px;}
.y59_c01285{bottom:1130.970000px;}
.y4d_c01285{bottom:1143.930000px;}
.y4f_c01285{bottom:1144.800000px;}
.y51_c01285{bottom:1145.670000px;}
.y50_c01285{bottom:1146.525000px;}
.y4e_c01285{bottom:1149.990000px;}
.y4c_c01285{bottom:1158.630000px;}
.y44_c01285{bottom:1163.805000px;}
.y47_c01285{bottom:1166.400000px;}
.y45_c01285{bottom:1168.125000px;}
.y46_c01285{bottom:1169.850000px;}
.y48_c01285{bottom:1170.720000px;}
.y4a_c01285{bottom:1171.590000px;}
.y49_c01285{bottom:1172.445000px;}
.y4b_c01285{bottom:1173.315000px;}
.y3b_c01285{bottom:1184.550000px;}
.y39_c01285{bottom:1185.405000px;}
.y3a_c01285{bottom:1186.275000px;}
.y3c_c01285{bottom:1187.130000px;}
.y3e_c01285{bottom:1188.000000px;}
.y40_c01285{bottom:1189.725000px;}
.y3d_c01285{bottom:1190.595000px;}
.y3f_c01285{bottom:1191.450000px;}
.y41_c01285{bottom:1192.320000px;}
.y42_c01285{bottom:1193.190000px;}
.y43_c01285{bottom:1197.510000px;}
.y33_c01285{bottom:1204.410000px;}
.y31_c01285{bottom:1205.280000px;}
.y35_c01285{bottom:1206.150000px;}
.y34_c01285{bottom:1207.005000px;}
.y36_c01285{bottom:1207.875000px;}
.y32_c01285{bottom:1210.470000px;}
.y37_c01285{bottom:1211.325000px;}
.y38_c01285{bottom:1213.050000px;}
.y2_c01285{bottom:1222.560000px;}
.y2a_c01285{bottom:1226.880000px;}
.y2e_c01285{bottom:1227.750000px;}
.y29_c01285{bottom:1229.475000px;}
.y2d_c01285{bottom:1230.330000px;}
.y2b_c01285{bottom:1231.200000px;}
.y2f_c01285{bottom:1232.925000px;}
.y30_c01285{bottom:1233.795000px;}
.y2c_c01285{bottom:1237.245000px;}
.y20_c01285{bottom:1246.755000px;}
.y28_c01285{bottom:1247.610000px;}
.y1f_c01285{bottom:1249.350000px;}
.y25_c01285{bottom:1253.670000px;}
.y27_c01285{bottom:1257.120000px;}
.y24_c01285{bottom:1257.990000px;}
.y26_c01285{bottom:1258.845000px;}
.y22_c01285{bottom:1259.715000px;}
.y23_c01285{bottom:1260.570000px;}
.y21_c01285{bottom:1264.035000px;}
.y18_c01285{bottom:1264.890000px;}
.y1b_c01285{bottom:1266.630000px;}
.y1e_c01285{bottom:1268.355000px;}
.y17_c01285{bottom:1270.080000px;}
.y19_c01285{bottom:1270.950000px;}
.y1a_c01285{bottom:1271.805000px;}
.y1c_c01285{bottom:1272.675000px;}
.y1d_c01285{bottom:1273.530000px;}
.y10_c01285{bottom:1285.635000px;}
.y11_c01285{bottom:1286.490000px;}
.y14_c01285{bottom:1287.360000px;}
.y12_c01285{bottom:1289.085000px;}
.ye_c01285{bottom:1289.955000px;}
.yf_c01285{bottom:1290.810000px;}
.y13_c01285{bottom:1292.550000px;}
.y15_c01285{bottom:1294.275000px;}
.y16_c01285{bottom:1302.045000px;}
.y5_c01285{bottom:1304.640000px;}
.y8_c01285{bottom:1305.510000px;}
.yc_c01285{bottom:1306.365000px;}
.y7_c01285{bottom:1307.235000px;}
.yb_c01285{bottom:1308.090000px;}
.yd_c01285{bottom:1308.960000px;}
.y6_c01285{bottom:1310.685000px;}
.y9_c01285{bottom:1311.555000px;}
.ya_c01285{bottom:1312.410000px;}
.y3_c01285{bottom:1338.330000px;}
.y1ea_c01285{bottom:1344.390000px;}
.y4_c01285{bottom:1346.115000px;}
.y1e9_c01285{bottom:1348.710000px;}
.y1df_c01285{bottom:1381.530000px;}
.y1e0_c01285{bottom:1382.400000px;}
.y1de_c01285{bottom:1389.315000px;}
.y1dd_c01285{bottom:1392.765000px;}
.y1_c01285{bottom:1404.000000px;}
.h19_c01285{height:3.110063px;}
.h4_c01285{height:5.399414px;}
.h18_c01285{height:6.209326px;}
.h1d_c01285{height:9.340986px;}
.h15_c01285{height:12.418652px;}
.h1b_c01285{height:15.550313px;}
.h1c_c01285{height:18.681973px;}
.h1a_c01285{height:18.970313px;}
.h20_c01285{height:21.759639px;}
.h2_c01285{height:24.891299px;}
.h23_c01285{height:27.968965px;}
.h16_c01285{height:31.100625px;}
.h21_c01285{height:34.232285px;}
.h1f_c01285{height:37.309951px;}
.h17_c01285{height:40.441611px;}
.h1e_c01285{height:43.519277px;}
.h11_c01285{height:46.650937px;}
.h22_c01285{height:49.031924px;}
.hd_c01285{height:49.782598px;}
.h3_c01285{height:52.860264px;}
.h24_c01285{height:53.202598px;}
.h6_c01285{height:55.991924px;}
.h13_c01285{height:59.069590px;}
.h14_c01285{height:59.471924px;}
.h9_c01285{height:62.201250px;}
.hc_c01285{height:65.332910px;}
.h12_c01285{height:68.410576px;}
.hf_c01285{height:71.542236px;}
.ha_c01285{height:74.619902px;}
.h10_c01285{height:77.751563px;}
.hb_c01285{height:80.883223px;}
.h7_c01285{height:83.960889px;}
.he_c01285{height:87.092549px;}
.h25_c01285{height:90.170215px;}
.h26_c01285{height:93.301875px;}
.h5_c01285{height:99.511201px;}
.h8_c01285{height:102.642861px;}
.h0_c01285{height:1509.405000px;}
.h1_c01285{height:1509.750000px;}
.w0_c01285{width:1088.640000px;}
.w1_c01285{width:1089.000000px;}
.x0_c01285{left:0.000000px;}
.x1_c01285{left:69.120000px;}
.x11a_c01285{left:103.680000px;}
.x120_c01285{left:108.870000px;}
.x11b_c01285{left:111.450000px;}
.x11e_c01285{left:126.150000px;}
.x2_c01285{left:128.730000px;}
.x11c_c01285{left:160.710000px;}
.x11f_c01285{left:163.290000px;}
.x11d_c01285{left:168.480000px;}
.x121_c01285{left:176.250000px;}
.x72_c01285{left:190.080000px;}
.x122_c01285{left:193.530000px;}
.xc0_c01285{left:209.955000px;}
.x115_c01285{left:224.640000px;}
.x28_c01285{left:227.235000px;}
.xe0_c01285{left:232.410000px;}
.x5_c01285{left:234.150000px;}
.x88_c01285{left:235.875000px;}
.x73_c01285{left:237.600000px;}
.xaa_c01285{left:239.325000px;}
.xf2_c01285{left:241.920000px;}
.x5e_c01285{left:243.645000px;}
.x10b_c01285{left:246.240000px;}
.x74_c01285{left:250.560000px;}
.x36_c01285{left:254.880000px;}
.xa5_c01285{left:257.475000px;}
.xb5_c01285{left:260.925000px;}
.xea_c01285{left:262.650000px;}
.xfb_c01285{left:264.390000px;}
.x89_c01285{left:266.115000px;}
.x80_c01285{left:267.840000px;}
.x7a_c01285{left:271.290000px;}
.x68_c01285{left:276.480000px;}
.x6_c01285{left:278.205000px;}
.xd8_c01285{left:280.800000px;}
.x13_c01285{left:285.120000px;}
.x10c_c01285{left:286.845000px;}
.x94_c01285{left:290.310000px;}
.xb2_c01285{left:292.890000px;}
.x106_c01285{left:294.630000px;}
.x75_c01285{left:296.355000px;}
.x7f_c01285{left:298.080000px;}
.x116_c01285{left:300.675000px;}
.xda_c01285{left:302.400000px;}
.x9c_c01285{left:304.995000px;}
.x76_c01285{left:306.720000px;}
.x56_c01285{left:309.315000px;}
.x8a_c01285{left:311.040000px;}
.x40_c01285{left:312.765000px;}
.x81_c01285{left:314.490000px;}
.xeb_c01285{left:316.230000px;}
.xa6_c01285{left:318.810000px;}
.x77_c01285{left:320.550000px;}
.x107_c01285{left:322.275000px;}
.x82_c01285{left:324.000000px;}
.x37_c01285{left:329.190000px;}
.xdb_c01285{left:330.915000px;}
.x7_c01285{left:332.640000px;}
.x14_c01285{left:335.235000px;}
.x83_c01285{left:339.555000px;}
.x8_c01285{left:341.280000px;}
.x29_c01285{left:344.730000px;}
.xca_c01285{left:346.470000px;}
.x69_c01285{left:348.195000px;}
.xf7_c01285{left:351.645000px;}
.xc3_c01285{left:354.240000px;}
.x63_c01285{left:355.965000px;}
.xb4_c01285{left:357.690000px;}
.x1f_c01285{left:359.430000px;}
.x38_c01285{left:362.010000px;}
.x7b_c01285{left:365.475000px;}
.xef_c01285{left:367.200000px;}
.xce_c01285{left:370.650000px;}
.xff_c01285{left:372.390000px;}
.xe6_c01285{left:374.115000px;}
.x9_c01285{left:376.710000px;}
.x109_c01285{left:378.435000px;}
.x6d_c01285{left:380.160000px;}
.x117_c01285{left:381.885000px;}
.xb8_c01285{left:383.610000px;}
.x8b_c01285{left:386.205000px;}
.x4d_c01285{left:388.800000px;}
.x100_c01285{left:390.525000px;}
.x15_c01285{left:393.120000px;}
.x84_c01285{left:395.715000px;}
.x8f_c01285{left:399.165000px;}
.xc4_c01285{left:402.630000px;}
.x2a_c01285{left:404.355000px;}
.xab_c01285{left:406.080000px;}
.x6e_c01285{left:407.805000px;}
.xf3_c01285{left:409.530000px;}
.x85_c01285{left:412.995000px;}
.x2b_c01285{left:415.590000px;}
.xb9_c01285{left:419.040000px;}
.x2c_c01285{left:422.490000px;}
.x20_c01285{left:424.230000px;}
.xc1_c01285{left:426.810000px;}
.x41_c01285{left:428.550000px;}
.x95_c01285{left:431.130000px;}
.x2d_c01285{left:432.870000px;}
.x64_c01285{left:435.450000px;}
.x9d_c01285{left:438.045000px;}
.x16_c01285{left:440.640000px;}
.x2e_c01285{left:445.830000px;}
.x9e_c01285{left:449.280000px;}
.x6f_c01285{left:451.875000px;}
.x42_c01285{left:454.470000px;}
.x78_c01285{left:456.195000px;}
.xfc_c01285{left:457.920000px;}
.x7c_c01285{left:459.645000px;}
.x9f_c01285{left:461.370000px;}
.x90_c01285{left:463.110000px;}
.x2f_c01285{left:465.690000px;}
.x65_c01285{left:470.010000px;}
.xcb_c01285{left:472.605000px;}
.x43_c01285{left:474.330000px;}
.xc5_c01285{left:476.070000px;}
.xec_c01285{left:478.650000px;}
.x7d_c01285{left:480.390000px;}
.x10a_c01285{left:482.115000px;}
.xe3_c01285{left:483.840000px;}
.x96_c01285{left:485.565000px;}
.x17_c01285{left:487.290000px;}
.x4e_c01285{left:489.885000px;}
.x5f_c01285{left:492.480000px;}
.x110_c01285{left:494.205000px;}
.x30_c01285{left:496.800000px;}
.x8c_c01285{left:498.525000px;}
.x44_c01285{left:501.120000px;}
.x86_c01285{left:503.715000px;}
.x114_c01285{left:505.440000px;}
.x111_c01285{left:507.165000px;}
.x4f_c01285{left:508.890000px;}
.xa_c01285{left:510.630000px;}
.xd5_c01285{left:513.210000px;}
.x31_c01285{left:515.804544px;}
.x70_c01285{left:518.400000px;}
.xa0_c01285{left:520.995000px;}
.x32_c01285{left:522.720000px;}
.xc2_c01285{left:527.910000px;}
.x119_c01285{left:529.635000px;}
.x108_c01285{left:531.360000px;}
.x91_c01285{left:534.810000px;}
.xfd_c01285{left:537.405000px;}
.xf4_c01285{left:539.130000px;}
.xe1_c01285{left:542.595000px;}
.xb_c01285{left:545.190000px;}
.xba_c01285{left:546.915000px;}
.x18_c01285{left:548.640000px;}
.xae_c01285{left:550.365000px;}
.xf8_c01285{left:552.090000px;}
.xf0_c01285{left:553.830000px;}
.x71_c01285{left:555.555000px;}
.x101_c01285{left:557.280000px;}
.xa7_c01285{left:559.005000px;}
.xa1_c01285{left:560.730000px;}
.x39_c01285{left:563.325000px;}
.xc_c01285{left:565.920000px;}
.xaf_c01285{left:568.515000px;}
.xdc_c01285{left:570.240000px;}
.xbb_c01285{left:571.965000px;}
.x3a_c01285{left:582.330000px;}
.xe7_c01285{left:585.795000px;}
.xd_c01285{left:589.245000px;}
.xd6_c01285{left:590.970000px;}
.x66_c01285{left:593.565000px;}
.x50_c01285{left:595.290000px;}
.x21_c01285{left:597.030000px;}
.x7e_c01285{left:598.755000px;}
.x8d_c01285{left:601.350000px;}
.x51_c01285{left:603.075000px;}
.xe2_c01285{left:604.800000px;}
.x102_c01285{left:606.525000px;}
.x19_c01285{left:610.845000px;}
.x57_c01285{left:613.440000px;}
.x22_c01285{left:617.760000px;}
.xed_c01285{left:620.355000px;}
.x58_c01285{left:622.080000px;}
.xf5_c01285{left:623.805000px;}
.x3b_c01285{left:628.125000px;}
.xb6_c01285{left:631.590000px;}
.xa8_c01285{left:633.315000px;}
.x52_c01285{left:635.910000px;}
.x45_c01285{left:637.635000px;}
.xcf_c01285{left:639.360000px;}
.xb0_c01285{left:641.955000px;}
.xa2_c01285{left:643.680000px;}
.x46_c01285{left:645.405000px;}
.xc6_c01285{left:647.130000px;}
.x59_c01285{left:648.870000px;}
.x3c_c01285{left:651.450000px;}
.xf9_c01285{left:653.190000px;}
.x47_c01285{left:655.770000px;}
.x92_c01285{left:657.510000px;}
.xbc_c01285{left:659.235000px;}
.xe_c01285{left:660.960000px;}
.xd7_c01285{left:662.685000px;}
.x1a_c01285{left:664.410000px;}
.x60_c01285{left:667.005000px;}
.xf6_c01285{left:669.600000px;}
.x48_c01285{left:673.050000px;}
.xcc_c01285{left:675.645000px;}
.x5a_c01285{left:680.835000px;}
.xf_c01285{left:682.560000px;}
.xf1_c01285{left:684.285000px;}
.xe8_c01285{left:686.010000px;}
.x23_c01285{left:691.200000px;}
.xa9_c01285{left:692.925000px;}
.xdd_c01285{left:694.650000px;}
.xac_c01285{left:697.245000px;}
.x53_c01285{left:698.970000px;}
.x1b_c01285{left:703.290000px;}
.x49_c01285{left:705.885000px;}
.xee_c01285{left:707.610000px;}
.xc7_c01285{left:709.350000px;}
.x97_c01285{left:711.075000px;}
.x87_c01285{left:712.800000px;}
.x24_c01285{left:716.250000px;}
.xe4_c01285{left:717.990000px;}
.x67_c01285{left:719.715000px;}
.x112_c01285{left:724.035000px;}
.xb1_c01285{left:727.485000px;}
.x104_c01285{left:730.950000px;}
.xfa_c01285{left:732.675000px;}
.x10d_c01285{left:734.400000px;}
.xcd_c01285{left:736.125000px;}
.x25_c01285{left:738.720000px;}
.xa3_c01285{left:740.445000px;}
.x3d_c01285{left:744.765000px;}
.x6a_c01285{left:746.490000px;}
.x93_c01285{left:749.085000px;}
.x98_c01285{left:750.810000px;}
.x8e_c01285{left:756.000000px;}
.x5b_c01285{left:758.595000px;}
.x1c_c01285{left:762.045000px;}
.x33_c01285{left:763.770000px;}
.xb7_c01285{left:765.510000px;}
.x10_c01285{left:768.960000px;}
.x61_c01285{left:771.555000px;}
.x54_c01285{left:775.875000px;}
.x4a_c01285{left:777.600000px;}
.xd0_c01285{left:779.325000px;}
.x99_c01285{left:781.050000px;}
.xde_c01285{left:783.645000px;}
.xb3_c01285{left:786.240000px;}
.xc8_c01285{left:787.965000px;}
.x11_c01285{left:793.155000px;}
.x62_c01285{left:798.330000px;}
.x26_c01285{left:802.650000px;}
.x5c_c01285{left:805.245000px;}
.x55_c01285{left:807.840000px;}
.x3e_c01285{left:809.565000px;}
.xd1_c01285{left:812.160000px;}
.x34_c01285{left:814.755000px;}
.x9a_c01285{left:817.350000px;}
.x6b_c01285{left:819.930000px;}
.xe9_c01285{left:821.670000px;}
.x27_c01285{left:824.250000px;}
.xbd_c01285{left:826.845000px;}
.x103_c01285{left:828.570000px;}
.x10e_c01285{left:830.310000px;}
.xc9_c01285{left:832.035000px;}
.x4b_c01285{left:834.630000px;}
.x12_c01285{left:837.210000px;}
.x3_c01285{left:839.805000px;}
.xfe_c01285{left:841.530000px;}
.x1d_c01285{left:844.125000px;}
.x5d_c01285{left:846.720000px;}
.x3f_c01285{left:850.170000px;}
.x9b_c01285{left:851.910000px;}
.x113_c01285{left:853.635000px;}
.xa4_c01285{left:857.085000px;}
.xe5_c01285{left:861.405000px;}
.x6c_c01285{left:864.000000px;}
.xad_c01285{left:866.595000px;}
.x105_c01285{left:868.320000px;}
.xdf_c01285{left:870.915000px;}
.x4c_c01285{left:872.640000px;}
.x35_c01285{left:875.235000px;}
.x4_c01285{left:876.960000px;}
.x10f_c01285{left:878.685000px;}
.xd2_c01285{left:881.280000px;}
.x118_c01285{left:883.005000px;}
.x1e_c01285{left:885.600000px;}
.xd9_c01285{left:888.195000px;}
.x79_c01285{left:890.790000px;}
.xd3_c01285{left:901.155000px;}
.xbe_c01285{left:905.475000px;}
.x123_c01285{left:917.565000px;}
.xd4_c01285{left:920.160000px;}
.xbf_c01285{left:923.610000px;}
@media print{
.v2_c01285{vertical-align:-6.186667pt;}
.v0_c01285{vertical-align:0.000000pt;}
.v1_c01285{vertical-align:3.093333pt;}
.ls2_c01285{letter-spacing:0.000000pt;}
.ls1_c01285{letter-spacing:40.357333pt;}
.ls0_c01285{letter-spacing:50.757333pt;}
.ws0_c01285{word-spacing:-8.996267pt;}
.ws1_c01285{word-spacing:-5.627093pt;}
.ws2_c01285{word-spacing:0.000000pt;}
.fs16_c01285{font-size:3.072000pt;}
.fs2_c01285{font-size:5.333333pt;}
.fs15_c01285{font-size:6.133333pt;}
.fs19_c01285{font-size:9.226667pt;}
.fs12_c01285{font-size:12.266667pt;}
.fs17_c01285{font-size:15.360000pt;}
.fs18_c01285{font-size:18.453333pt;}
.fs1c_c01285{font-size:21.493333pt;}
.fs0_c01285{font-size:24.586667pt;}
.fs1e_c01285{font-size:27.626667pt;}
.fs13_c01285{font-size:30.720000pt;}
.fs1d_c01285{font-size:33.813333pt;}
.fs1b_c01285{font-size:36.853333pt;}
.fs14_c01285{font-size:39.946667pt;}
.fs1a_c01285{font-size:42.986667pt;}
.fsf_c01285{font-size:46.080000pt;}
.fsb_c01285{font-size:49.173333pt;}
.fs1_c01285{font-size:52.213333pt;}
.fs4_c01285{font-size:55.306667pt;}
.fs11_c01285{font-size:58.346667pt;}
.fs7_c01285{font-size:61.440000pt;}
.fsa_c01285{font-size:64.533333pt;}
.fs10_c01285{font-size:67.573333pt;}
.fsd_c01285{font-size:70.666667pt;}
.fs8_c01285{font-size:73.706667pt;}
.fse_c01285{font-size:76.800000pt;}
.fs9_c01285{font-size:79.893333pt;}
.fs5_c01285{font-size:82.933333pt;}
.fsc_c01285{font-size:86.026667pt;}
.fs1f_c01285{font-size:89.066667pt;}
.fs20_c01285{font-size:92.160000pt;}
.fs3_c01285{font-size:98.293333pt;}
.fs6_c01285{font-size:101.386667pt;}
.y0_c01285{bottom:0.000000pt;}
.y1dc_c01285{bottom:148.986667pt;}
.y1d1_c01285{bottom:152.826667pt;}
.y1d6_c01285{bottom:153.600000pt;}
.y1d9_c01285{bottom:154.373333pt;}
.y1d3_c01285{bottom:155.906667pt;}
.y1d5_c01285{bottom:156.666667pt;}
.y1da_c01285{bottom:158.213333pt;}
.y1d4_c01285{bottom:158.973333pt;}
.y1d8_c01285{bottom:159.746667pt;}
.y1db_c01285{bottom:160.506667pt;}
.y1d7_c01285{bottom:161.280000pt;}
.y1d2_c01285{bottom:164.346667pt;}
.y1c7_c01285{bottom:168.960000pt;}
.y1c8_c01285{bottom:169.733333pt;}
.y1cd_c01285{bottom:170.493333pt;}
.y1cf_c01285{bottom:172.026667pt;}
.y1c6_c01285{bottom:174.333333pt;}
.y1ce_c01285{bottom:175.106667pt;}
.y1c4_c01285{bottom:175.866667pt;}
.y1cb_c01285{bottom:176.640000pt;}
.y1ca_c01285{bottom:177.413333pt;}
.y1c9_c01285{bottom:179.706667pt;}
.y1cc_c01285{bottom:183.546667pt;}
.y1c5_c01285{bottom:187.386667pt;}
.y1d0_c01285{bottom:189.693333pt;}
.y1c0_c01285{bottom:192.000000pt;}
.y1c2_c01285{bottom:192.773333pt;}
.y1c3_c01285{bottom:193.533333pt;}
.y1c1_c01285{bottom:197.373333pt;}
.y1b8_c01285{bottom:210.426667pt;}
.y1bb_c01285{bottom:211.200000pt;}
.y1ba_c01285{bottom:211.973333pt;}
.y1b9_c01285{bottom:213.506667pt;}
.y1be_c01285{bottom:214.266667pt;}
.y1b7_c01285{bottom:215.040000pt;}
.y1bd_c01285{bottom:215.813333pt;}
.y1bc_c01285{bottom:216.573333pt;}
.y1bf_c01285{bottom:218.880000pt;}
.y1b1_c01285{bottom:228.866667pt;}
.y1b2_c01285{bottom:231.933333pt;}
.y1b3_c01285{bottom:233.466667pt;}
.y1b5_c01285{bottom:234.240000pt;}
.y1b4_c01285{bottom:235.013333pt;}
.y1b6_c01285{bottom:240.386667pt;}
.y1ab_c01285{bottom:246.533333pt;}
.y1ad_c01285{bottom:247.293333pt;}
.y1b0_c01285{bottom:248.066667pt;}
.y1ac_c01285{bottom:251.133333pt;}
.y1af_c01285{bottom:251.906667pt;}
.y1ae_c01285{bottom:252.666667pt;}
.y1a3_c01285{bottom:261.893333pt;}
.y1a4_c01285{bottom:262.653333pt;}
.y1a8_c01285{bottom:264.960000pt;}
.y1a9_c01285{bottom:265.733333pt;}
.y1aa_c01285{bottom:266.493333pt;}
.y1a7_c01285{bottom:268.800000pt;}
.y1a6_c01285{bottom:269.573333pt;}
.y1a5_c01285{bottom:270.333333pt;}
.y19b_c01285{bottom:279.546667pt;}
.y19c_c01285{bottom:281.853333pt;}
.y1a0_c01285{bottom:282.626667pt;}
.y1a1_c01285{bottom:283.386667pt;}
.y19d_c01285{bottom:284.933333pt;}
.y19f_c01285{bottom:286.466667pt;}
.y19e_c01285{bottom:287.226667pt;}
.y19a_c01285{bottom:288.000000pt;}
.y1a2_c01285{bottom:289.533333pt;}
.y18e_c01285{bottom:297.986667pt;}
.y191_c01285{bottom:298.746667pt;}
.y198_c01285{bottom:300.293333pt;}
.y192_c01285{bottom:301.053333pt;}
.y196_c01285{bottom:301.826667pt;}
.y190_c01285{bottom:302.586667pt;}
.y197_c01285{bottom:304.133333pt;}
.y18f_c01285{bottom:304.893333pt;}
.y193_c01285{bottom:305.666667pt;}
.y199_c01285{bottom:306.426667pt;}
.y195_c01285{bottom:307.973333pt;}
.y194_c01285{bottom:309.506667pt;}
.y187_c01285{bottom:318.720000pt;}
.y18b_c01285{bottom:319.493333pt;}
.y18a_c01285{bottom:320.253333pt;}
.y186_c01285{bottom:321.026667pt;}
.y18c_c01285{bottom:323.333333pt;}
.y189_c01285{bottom:324.093333pt;}
.y18d_c01285{bottom:324.866667pt;}
.y188_c01285{bottom:334.853333pt;}
.y185_c01285{bottom:335.613333pt;}
.y181_c01285{bottom:337.146667pt;}
.y17f_c01285{bottom:338.693333pt;}
.y184_c01285{bottom:340.226667pt;}
.y183_c01285{bottom:340.986667pt;}
.y180_c01285{bottom:341.760000pt;}
.y17e_c01285{bottom:342.533333pt;}
.y182_c01285{bottom:344.826667pt;}
.y179_c01285{bottom:355.586667pt;}
.y177_c01285{bottom:356.346667pt;}
.y17a_c01285{bottom:357.120000pt;}
.y17c_c01285{bottom:357.893333pt;}
.y176_c01285{bottom:358.653333pt;}
.y17b_c01285{bottom:359.426667pt;}
.y178_c01285{bottom:360.186667pt;}
.y17d_c01285{bottom:360.960000pt;}
.y174_c01285{bottom:372.480000pt;}
.y16e_c01285{bottom:374.013333pt;}
.y175_c01285{bottom:375.546667pt;}
.y172_c01285{bottom:376.320000pt;}
.y173_c01285{bottom:377.093333pt;}
.y16f_c01285{bottom:377.853333pt;}
.y170_c01285{bottom:378.626667pt;}
.y171_c01285{bottom:383.226667pt;}
.y168_c01285{bottom:387.066667pt;}
.y16b_c01285{bottom:388.613333pt;}
.y16c_c01285{bottom:390.906667pt;}
.y167_c01285{bottom:392.453333pt;}
.y16a_c01285{bottom:395.520000pt;}
.y16d_c01285{bottom:397.053333pt;}
.y169_c01285{bottom:397.826667pt;}
.y15e_c01285{bottom:403.200000pt;}
.y164_c01285{bottom:404.733333pt;}
.y161_c01285{bottom:405.506667pt;}
.y160_c01285{bottom:406.266667pt;}
.y166_c01285{bottom:407.040000pt;}
.y162_c01285{bottom:409.346667pt;}
.y15f_c01285{bottom:410.106667pt;}
.y165_c01285{bottom:413.186667pt;}
.y15d_c01285{bottom:413.946667pt;}
.y163_c01285{bottom:418.560000pt;}
.y156_c01285{bottom:423.173333pt;}
.y155_c01285{bottom:423.933333pt;}
.y15b_c01285{bottom:425.466667pt;}
.y15c_c01285{bottom:426.240000pt;}
.y15a_c01285{bottom:427.013333pt;}
.y159_c01285{bottom:430.080000pt;}
.y158_c01285{bottom:432.386667pt;}
.y157_c01285{bottom:433.146667pt;}
.y154_c01285{bottom:443.133333pt;}
.y152_c01285{bottom:443.906667pt;}
.y150_c01285{bottom:444.666667pt;}
.y14d_c01285{bottom:445.440000pt;}
.y14f_c01285{bottom:446.213333pt;}
.y153_c01285{bottom:446.973333pt;}
.y151_c01285{bottom:447.746667pt;}
.y14e_c01285{bottom:448.506667pt;}
.y14c_c01285{bottom:456.186667pt;}
.y149_c01285{bottom:456.960000pt;}
.y14a_c01285{bottom:457.733333pt;}
.y148_c01285{bottom:458.493333pt;}
.y14b_c01285{bottom:459.266667pt;}
.y147_c01285{bottom:464.640000pt;}
.y13f_c01285{bottom:477.693333pt;}
.y13e_c01285{bottom:480.773333pt;}
.y146_c01285{bottom:481.533333pt;}
.y144_c01285{bottom:482.306667pt;}
.y142_c01285{bottom:483.066667pt;}
.y141_c01285{bottom:483.840000pt;}
.y145_c01285{bottom:485.373333pt;}
.y143_c01285{bottom:486.146667pt;}
.y140_c01285{bottom:486.906667pt;}
.y138_c01285{bottom:496.893333pt;}
.y137_c01285{bottom:497.666667pt;}
.y139_c01285{bottom:498.426667pt;}
.y135_c01285{bottom:499.200000pt;}
.y136_c01285{bottom:502.266667pt;}
.y13c_c01285{bottom:503.040000pt;}
.y13d_c01285{bottom:503.813333pt;}
.y13a_c01285{bottom:506.106667pt;}
.y13b_c01285{bottom:506.880000pt;}
.y133_c01285{bottom:517.626667pt;}
.y12d_c01285{bottom:518.400000pt;}
.y134_c01285{bottom:519.933333pt;}
.y12e_c01285{bottom:522.240000pt;}
.y130_c01285{bottom:523.773333pt;}
.y131_c01285{bottom:524.546667pt;}
.y132_c01285{bottom:528.386667pt;}
.y12f_c01285{bottom:530.693333pt;}
.y129_c01285{bottom:534.533333pt;}
.y128_c01285{bottom:535.293333pt;}
.y12c_c01285{bottom:536.066667pt;}
.y12b_c01285{bottom:536.826667pt;}
.y127_c01285{bottom:537.600000pt;}
.y11f_c01285{bottom:538.373333pt;}
.y12a_c01285{bottom:539.133333pt;}
.y125_c01285{bottom:539.906667pt;}
.y120_c01285{bottom:544.506667pt;}
.y121_c01285{bottom:546.813333pt;}
.y126_c01285{bottom:547.586667pt;}
.y123_c01285{bottom:548.346667pt;}
.y122_c01285{bottom:549.120000pt;}
.y124_c01285{bottom:550.653333pt;}
.y119_c01285{bottom:552.186667pt;}
.y11e_c01285{bottom:553.733333pt;}
.y11c_c01285{bottom:554.493333pt;}
.y11d_c01285{bottom:555.266667pt;}
.y11b_c01285{bottom:556.800000pt;}
.y11a_c01285{bottom:568.320000pt;}
.y113_c01285{bottom:569.853333pt;}
.y111_c01285{bottom:570.626667pt;}
.y115_c01285{bottom:571.386667pt;}
.y117_c01285{bottom:572.160000pt;}
.y116_c01285{bottom:572.933333pt;}
.y112_c01285{bottom:574.466667pt;}
.y114_c01285{bottom:575.226667pt;}
.y118_c01285{bottom:576.000000pt;}
.y10c_c01285{bottom:587.520000pt;}
.y10d_c01285{bottom:588.293333pt;}
.y110_c01285{bottom:589.826667pt;}
.y10f_c01285{bottom:591.360000pt;}
.y10a_c01285{bottom:592.133333pt;}
.y10b_c01285{bottom:592.893333pt;}
.y10e_c01285{bottom:593.666667pt;}
.y101_c01285{bottom:605.186667pt;}
.y105_c01285{bottom:605.946667pt;}
.y106_c01285{bottom:606.720000pt;}
.y104_c01285{bottom:607.493333pt;}
.y108_c01285{bottom:608.253333pt;}
.y107_c01285{bottom:609.026667pt;}
.y103_c01285{bottom:610.560000pt;}
.y102_c01285{bottom:611.333333pt;}
.y109_c01285{bottom:621.306667pt;}
.yfb_c01285{bottom:623.613333pt;}
.yfd_c01285{bottom:624.386667pt;}
.yff_c01285{bottom:625.146667pt;}
.yfc_c01285{bottom:628.226667pt;}
.yfe_c01285{bottom:628.986667pt;}
.y100_c01285{bottom:629.760000pt;}
.yfa_c01285{bottom:636.666667pt;}
.yf4_c01285{bottom:642.053333pt;}
.yf9_c01285{bottom:642.813333pt;}
.yf7_c01285{bottom:643.586667pt;}
.yf6_c01285{bottom:645.893333pt;}
.yf5_c01285{bottom:647.426667pt;}
.yf8_c01285{bottom:648.186667pt;}
.yee_c01285{bottom:658.173333pt;}
.yec_c01285{bottom:658.946667pt;}
.yed_c01285{bottom:659.706667pt;}
.yf0_c01285{bottom:661.253333pt;}
.yf2_c01285{bottom:662.013333pt;}
.yf1_c01285{bottom:662.786667pt;}
.yef_c01285{bottom:664.320000pt;}
.yf3_c01285{bottom:665.853333pt;}
.ye5_c01285{bottom:676.613333pt;}
.ye6_c01285{bottom:677.373333pt;}
.ye7_c01285{bottom:678.146667pt;}
.ye4_c01285{bottom:678.906667pt;}
.yea_c01285{bottom:680.453333pt;}
.ye8_c01285{bottom:681.986667pt;}
.ye9_c01285{bottom:682.746667pt;}
.yeb_c01285{bottom:684.293333pt;}
.ydc_c01285{bottom:695.040000pt;}
.yde_c01285{bottom:695.813333pt;}
.ye1_c01285{bottom:698.106667pt;}
.ye2_c01285{bottom:698.880000pt;}
.ydd_c01285{bottom:699.653333pt;}
.ye0_c01285{bottom:700.413333pt;}
.ye3_c01285{bottom:701.186667pt;}
.ydf_c01285{bottom:701.946667pt;}
.yd2_c01285{bottom:711.933333pt;}
.yd8_c01285{bottom:712.706667pt;}
.yd3_c01285{bottom:713.466667pt;}
.yd5_c01285{bottom:714.240000pt;}
.yda_c01285{bottom:715.013333pt;}
.ydb_c01285{bottom:715.773333pt;}
.yd4_c01285{bottom:716.546667pt;}
.yd6_c01285{bottom:717.306667pt;}
.yd7_c01285{bottom:718.080000pt;}
.yd9_c01285{bottom:718.853333pt;}
.ycd_c01285{bottom:730.373333pt;}
.ycc_c01285{bottom:731.133333pt;}
.yd0_c01285{bottom:732.666667pt;}
.ycb_c01285{bottom:734.213333pt;}
.ycf_c01285{bottom:735.746667pt;}
.yd1_c01285{bottom:738.053333pt;}
.y1e7_c01285{bottom:744.960000pt;}
.y1e8_c01285{bottom:745.733333pt;}
.yce_c01285{bottom:748.026667pt;}
.y1e6_c01285{bottom:748.800000pt;}
.yc8_c01285{bottom:749.573333pt;}
.yc7_c01285{bottom:750.333333pt;}
.yca_c01285{bottom:751.106667pt;}
.yc6_c01285{bottom:752.640000pt;}
.yc9_c01285{bottom:755.706667pt;}
.y1e5_c01285{bottom:759.546667pt;}
.y1e4_c01285{bottom:763.386667pt;}
.yc0_c01285{bottom:765.693333pt;}
.yc2_c01285{bottom:767.226667pt;}
.yc3_c01285{bottom:768.000000pt;}
.yc4_c01285{bottom:772.613333pt;}
.yc5_c01285{bottom:773.373333pt;}
.yc1_c01285{bottom:784.133333pt;}
.yb9_c01285{bottom:784.893333pt;}
.y1e3_c01285{bottom:786.426667pt;}
.ybc_c01285{bottom:787.200000pt;}
.ybe_c01285{bottom:787.973333pt;}
.yb8_c01285{bottom:788.733333pt;}
.yba_c01285{bottom:789.506667pt;}
.ybb_c01285{bottom:790.266667pt;}
.ybd_c01285{bottom:791.040000pt;}
.ybf_c01285{bottom:794.106667pt;}
.yb2_c01285{bottom:801.786667pt;}
.yb1_c01285{bottom:802.560000pt;}
.yaf_c01285{bottom:803.333333pt;}
.yb0_c01285{bottom:804.093333pt;}
.yb6_c01285{bottom:804.866667pt;}
.yb3_c01285{bottom:807.173333pt;}
.yb5_c01285{bottom:807.933333pt;}
.yb7_c01285{bottom:811.013333pt;}
.yb4_c01285{bottom:817.146667pt;}
.yac_c01285{bottom:820.986667pt;}
.yab_c01285{bottom:821.760000pt;}
.yaa_c01285{bottom:823.293333pt;}
.ya8_c01285{bottom:824.826667pt;}
.ya7_c01285{bottom:825.600000pt;}
.yae_c01285{bottom:827.906667pt;}
.yad_c01285{bottom:835.586667pt;}
.ya9_c01285{bottom:837.120000pt;}
.y9f_c01285{bottom:837.893333pt;}
.y9e_c01285{bottom:838.653333pt;}
.y9d_c01285{bottom:839.426667pt;}
.ya0_c01285{bottom:840.960000pt;}
.ya2_c01285{bottom:842.493333pt;}
.ya4_c01285{bottom:843.266667pt;}
.ya1_c01285{bottom:844.026667pt;}
.ya3_c01285{bottom:845.573333pt;}
.ya5_c01285{bottom:846.333333pt;}
.ya6_c01285{bottom:847.866667pt;}
.y94_c01285{bottom:856.320000pt;}
.y93_c01285{bottom:857.093333pt;}
.y95_c01285{bottom:857.853333pt;}
.y9c_c01285{bottom:858.626667pt;}
.y96_c01285{bottom:859.386667pt;}
.y99_c01285{bottom:860.933333pt;}
.y97_c01285{bottom:861.693333pt;}
.y9b_c01285{bottom:862.466667pt;}
.y9a_c01285{bottom:863.226667pt;}
.y98_c01285{bottom:864.000000pt;}
.y8d_c01285{bottom:873.213333pt;}
.y8e_c01285{bottom:873.986667pt;}
.y8a_c01285{bottom:874.746667pt;}
.y8b_c01285{bottom:875.520000pt;}
.y8c_c01285{bottom:876.293333pt;}
.y90_c01285{bottom:877.053333pt;}
.y8f_c01285{bottom:878.586667pt;}
.y92_c01285{bottom:879.360000pt;}
.y91_c01285{bottom:880.893333pt;}
.y82_c01285{bottom:890.106667pt;}
.y86_c01285{bottom:890.880000pt;}
.y83_c01285{bottom:892.413333pt;}
.y84_c01285{bottom:893.186667pt;}
.y87_c01285{bottom:893.946667pt;}
.y81_c01285{bottom:894.720000pt;}
.y85_c01285{bottom:895.493333pt;}
.y88_c01285{bottom:896.253333pt;}
.y89_c01285{bottom:897.026667pt;}
.y7c_c01285{bottom:907.773333pt;}
.y7e_c01285{bottom:909.306667pt;}
.y80_c01285{bottom:910.853333pt;}
.y7f_c01285{bottom:911.613333pt;}
.y7d_c01285{bottom:912.386667pt;}
.y7b_c01285{bottom:913.146667pt;}
.y78_c01285{bottom:929.280000pt;}
.y75_c01285{bottom:930.053333pt;}
.y77_c01285{bottom:930.813333pt;}
.y74_c01285{bottom:931.586667pt;}
.y76_c01285{bottom:932.346667pt;}
.y7a_c01285{bottom:933.120000pt;}
.y79_c01285{bottom:933.893333pt;}
.y6f_c01285{bottom:943.106667pt;}
.y70_c01285{bottom:945.413333pt;}
.y6d_c01285{bottom:946.173333pt;}
.y6e_c01285{bottom:946.946667pt;}
.y69_c01285{bottom:947.706667pt;}
.y6b_c01285{bottom:948.480000pt;}
.y71_c01285{bottom:949.253333pt;}
.y6c_c01285{bottom:950.013333pt;}
.y73_c01285{bottom:951.546667pt;}
.y72_c01285{bottom:952.320000pt;}
.y6a_c01285{bottom:959.226667pt;}
.y66_c01285{bottom:962.306667pt;}
.y63_c01285{bottom:963.066667pt;}
.y67_c01285{bottom:965.373333pt;}
.y1e1_c01285{bottom:966.906667pt;}
.y1e2_c01285{bottom:967.680000pt;}
.y65_c01285{bottom:969.986667pt;}
.y68_c01285{bottom:973.053333pt;}
.y64_c01285{bottom:976.893333pt;}
.y5d_c01285{bottom:979.973333pt;}
.y5a_c01285{bottom:981.506667pt;}
.y5c_c01285{bottom:984.573333pt;}
.y5b_c01285{bottom:985.346667pt;}
.y5e_c01285{bottom:986.106667pt;}
.y5f_c01285{bottom:986.880000pt;}
.y60_c01285{bottom:988.413333pt;}
.y61_c01285{bottom:990.720000pt;}
.y62_c01285{bottom:991.493333pt;}
.y52_c01285{bottom:996.866667pt;}
.y56_c01285{bottom:999.173333pt;}
.y58_c01285{bottom:999.933333pt;}
.y55_c01285{bottom:1000.706667pt;}
.y53_c01285{bottom:1001.466667pt;}
.y54_c01285{bottom:1002.240000pt;}
.y57_c01285{bottom:1004.546667pt;}
.y59_c01285{bottom:1005.306667pt;}
.y4d_c01285{bottom:1016.826667pt;}
.y4f_c01285{bottom:1017.600000pt;}
.y51_c01285{bottom:1018.373333pt;}
.y50_c01285{bottom:1019.133333pt;}
.y4e_c01285{bottom:1022.213333pt;}
.y4c_c01285{bottom:1029.893333pt;}
.y44_c01285{bottom:1034.493333pt;}
.y47_c01285{bottom:1036.800000pt;}
.y45_c01285{bottom:1038.333333pt;}
.y46_c01285{bottom:1039.866667pt;}
.y48_c01285{bottom:1040.640000pt;}
.y4a_c01285{bottom:1041.413333pt;}
.y49_c01285{bottom:1042.173333pt;}
.y4b_c01285{bottom:1042.946667pt;}
.y3b_c01285{bottom:1052.933333pt;}
.y39_c01285{bottom:1053.693333pt;}
.y3a_c01285{bottom:1054.466667pt;}
.y3c_c01285{bottom:1055.226667pt;}
.y3e_c01285{bottom:1056.000000pt;}
.y40_c01285{bottom:1057.533333pt;}
.y3d_c01285{bottom:1058.306667pt;}
.y3f_c01285{bottom:1059.066667pt;}
.y41_c01285{bottom:1059.840000pt;}
.y42_c01285{bottom:1060.613333pt;}
.y43_c01285{bottom:1064.453333pt;}
.y33_c01285{bottom:1070.586667pt;}
.y31_c01285{bottom:1071.360000pt;}
.y35_c01285{bottom:1072.133333pt;}
.y34_c01285{bottom:1072.893333pt;}
.y36_c01285{bottom:1073.666667pt;}
.y32_c01285{bottom:1075.973333pt;}
.y37_c01285{bottom:1076.733333pt;}
.y38_c01285{bottom:1078.266667pt;}
.y2_c01285{bottom:1086.720000pt;}
.y2a_c01285{bottom:1090.560000pt;}
.y2e_c01285{bottom:1091.333333pt;}
.y29_c01285{bottom:1092.866667pt;}
.y2d_c01285{bottom:1093.626667pt;}
.y2b_c01285{bottom:1094.400000pt;}
.y2f_c01285{bottom:1095.933333pt;}
.y30_c01285{bottom:1096.706667pt;}
.y2c_c01285{bottom:1099.773333pt;}
.y20_c01285{bottom:1108.226667pt;}
.y28_c01285{bottom:1108.986667pt;}
.y1f_c01285{bottom:1110.533333pt;}
.y25_c01285{bottom:1114.373333pt;}
.y27_c01285{bottom:1117.440000pt;}
.y24_c01285{bottom:1118.213333pt;}
.y26_c01285{bottom:1118.973333pt;}
.y22_c01285{bottom:1119.746667pt;}
.y23_c01285{bottom:1120.506667pt;}
.y21_c01285{bottom:1123.586667pt;}
.y18_c01285{bottom:1124.346667pt;}
.y1b_c01285{bottom:1125.893333pt;}
.y1e_c01285{bottom:1127.426667pt;}
.y17_c01285{bottom:1128.960000pt;}
.y19_c01285{bottom:1129.733333pt;}
.y1a_c01285{bottom:1130.493333pt;}
.y1c_c01285{bottom:1131.266667pt;}
.y1d_c01285{bottom:1132.026667pt;}
.y10_c01285{bottom:1142.786667pt;}
.y11_c01285{bottom:1143.546667pt;}
.y14_c01285{bottom:1144.320000pt;}
.y12_c01285{bottom:1145.853333pt;}
.ye_c01285{bottom:1146.626667pt;}
.yf_c01285{bottom:1147.386667pt;}
.y13_c01285{bottom:1148.933333pt;}
.y15_c01285{bottom:1150.466667pt;}
.y16_c01285{bottom:1157.373333pt;}
.y5_c01285{bottom:1159.680000pt;}
.y8_c01285{bottom:1160.453333pt;}
.yc_c01285{bottom:1161.213333pt;}
.y7_c01285{bottom:1161.986667pt;}
.yb_c01285{bottom:1162.746667pt;}
.yd_c01285{bottom:1163.520000pt;}
.y6_c01285{bottom:1165.053333pt;}
.y9_c01285{bottom:1165.826667pt;}
.ya_c01285{bottom:1166.586667pt;}
.y3_c01285{bottom:1189.626667pt;}
.y1ea_c01285{bottom:1195.013333pt;}
.y4_c01285{bottom:1196.546667pt;}
.y1e9_c01285{bottom:1198.853333pt;}
.y1df_c01285{bottom:1228.026667pt;}
.y1e0_c01285{bottom:1228.800000pt;}
.y1de_c01285{bottom:1234.946667pt;}
.y1dd_c01285{bottom:1238.013333pt;}
.y1_c01285{bottom:1248.000000pt;}
.h19_c01285{height:2.764500pt;}
.h4_c01285{height:4.799479pt;}
.h18_c01285{height:5.519401pt;}
.h1d_c01285{height:8.303099pt;}
.h15_c01285{height:11.038802pt;}
.h1b_c01285{height:13.822500pt;}
.h1c_c01285{height:16.606198pt;}
.h1a_c01285{height:16.862500pt;}
.h20_c01285{height:19.341901pt;}
.h2_c01285{height:22.125599pt;}
.h23_c01285{height:24.861302pt;}
.h16_c01285{height:27.645000pt;}
.h21_c01285{height:30.428698pt;}
.h1f_c01285{height:33.164401pt;}
.h17_c01285{height:35.948099pt;}
.h1e_c01285{height:38.683802pt;}
.h11_c01285{height:41.467500pt;}
.h22_c01285{height:43.583932pt;}
.hd_c01285{height:44.251198pt;}
.h3_c01285{height:46.986901pt;}
.h24_c01285{height:47.291198pt;}
.h6_c01285{height:49.770599pt;}
.h13_c01285{height:52.506302pt;}
.h14_c01285{height:52.863932pt;}
.h9_c01285{height:55.290000pt;}
.hc_c01285{height:58.073698pt;}
.h12_c01285{height:60.809401pt;}
.hf_c01285{height:63.593099pt;}
.ha_c01285{height:66.328802pt;}
.h10_c01285{height:69.112500pt;}
.hb_c01285{height:71.896198pt;}
.h7_c01285{height:74.631901pt;}
.he_c01285{height:77.415599pt;}
.h25_c01285{height:80.151302pt;}
.h26_c01285{height:82.935000pt;}
.h5_c01285{height:88.454401pt;}
.h8_c01285{height:91.238099pt;}
.h0_c01285{height:1341.693333pt;}
.h1_c01285{height:1342.000000pt;}
.w0_c01285{width:967.680000pt;}
.w1_c01285{width:968.000000pt;}
.x0_c01285{left:0.000000pt;}
.x1_c01285{left:61.440000pt;}
.x11a_c01285{left:92.160000pt;}
.x120_c01285{left:96.773333pt;}
.x11b_c01285{left:99.066667pt;}
.x11e_c01285{left:112.133333pt;}
.x2_c01285{left:114.426667pt;}
.x11c_c01285{left:142.853333pt;}
.x11f_c01285{left:145.146667pt;}
.x11d_c01285{left:149.760000pt;}
.x121_c01285{left:156.666667pt;}
.x72_c01285{left:168.960000pt;}
.x122_c01285{left:172.026667pt;}
.xc0_c01285{left:186.626667pt;}
.x115_c01285{left:199.680000pt;}
.x28_c01285{left:201.986667pt;}
.xe0_c01285{left:206.586667pt;}
.x5_c01285{left:208.133333pt;}
.x88_c01285{left:209.666667pt;}
.x73_c01285{left:211.200000pt;}
.xaa_c01285{left:212.733333pt;}
.xf2_c01285{left:215.040000pt;}
.x5e_c01285{left:216.573333pt;}
.x10b_c01285{left:218.880000pt;}
.x74_c01285{left:222.720000pt;}
.x36_c01285{left:226.560000pt;}
.xa5_c01285{left:228.866667pt;}
.xb5_c01285{left:231.933333pt;}
.xea_c01285{left:233.466667pt;}
.xfb_c01285{left:235.013333pt;}
.x89_c01285{left:236.546667pt;}
.x80_c01285{left:238.080000pt;}
.x7a_c01285{left:241.146667pt;}
.x68_c01285{left:245.760000pt;}
.x6_c01285{left:247.293333pt;}
.xd8_c01285{left:249.600000pt;}
.x13_c01285{left:253.440000pt;}
.x10c_c01285{left:254.973333pt;}
.x94_c01285{left:258.053333pt;}
.xb2_c01285{left:260.346667pt;}
.x106_c01285{left:261.893333pt;}
.x75_c01285{left:263.426667pt;}
.x7f_c01285{left:264.960000pt;}
.x116_c01285{left:267.266667pt;}
.xda_c01285{left:268.800000pt;}
.x9c_c01285{left:271.106667pt;}
.x76_c01285{left:272.640000pt;}
.x56_c01285{left:274.946667pt;}
.x8a_c01285{left:276.480000pt;}
.x40_c01285{left:278.013333pt;}
.x81_c01285{left:279.546667pt;}
.xeb_c01285{left:281.093333pt;}
.xa6_c01285{left:283.386667pt;}
.x77_c01285{left:284.933333pt;}
.x107_c01285{left:286.466667pt;}
.x82_c01285{left:288.000000pt;}
.x37_c01285{left:292.613333pt;}
.xdb_c01285{left:294.146667pt;}
.x7_c01285{left:295.680000pt;}
.x14_c01285{left:297.986667pt;}
.x83_c01285{left:301.826667pt;}
.x8_c01285{left:303.360000pt;}
.x29_c01285{left:306.426667pt;}
.xca_c01285{left:307.973333pt;}
.x69_c01285{left:309.506667pt;}
.xf7_c01285{left:312.573333pt;}
.xc3_c01285{left:314.880000pt;}
.x63_c01285{left:316.413333pt;}
.xb4_c01285{left:317.946667pt;}
.x1f_c01285{left:319.493333pt;}
.x38_c01285{left:321.786667pt;}
.x7b_c01285{left:324.866667pt;}
.xef_c01285{left:326.400000pt;}
.xce_c01285{left:329.466667pt;}
.xff_c01285{left:331.013333pt;}
.xe6_c01285{left:332.546667pt;}
.x9_c01285{left:334.853333pt;}
.x109_c01285{left:336.386667pt;}
.x6d_c01285{left:337.920000pt;}
.x117_c01285{left:339.453333pt;}
.xb8_c01285{left:340.986667pt;}
.x8b_c01285{left:343.293333pt;}
.x4d_c01285{left:345.600000pt;}
.x100_c01285{left:347.133333pt;}
.x15_c01285{left:349.440000pt;}
.x84_c01285{left:351.746667pt;}
.x8f_c01285{left:354.813333pt;}
.xc4_c01285{left:357.893333pt;}
.x2a_c01285{left:359.426667pt;}
.xab_c01285{left:360.960000pt;}
.x6e_c01285{left:362.493333pt;}
.xf3_c01285{left:364.026667pt;}
.x85_c01285{left:367.106667pt;}
.x2b_c01285{left:369.413333pt;}
.xb9_c01285{left:372.480000pt;}
.x2c_c01285{left:375.546667pt;}
.x20_c01285{left:377.093333pt;}
.xc1_c01285{left:379.386667pt;}
.x41_c01285{left:380.933333pt;}
.x95_c01285{left:383.226667pt;}
.x2d_c01285{left:384.773333pt;}
.x64_c01285{left:387.066667pt;}
.x9d_c01285{left:389.373333pt;}
.x16_c01285{left:391.680000pt;}
.x2e_c01285{left:396.293333pt;}
.x9e_c01285{left:399.360000pt;}
.x6f_c01285{left:401.666667pt;}
.x42_c01285{left:403.973333pt;}
.x78_c01285{left:405.506667pt;}
.xfc_c01285{left:407.040000pt;}
.x7c_c01285{left:408.573333pt;}
.x9f_c01285{left:410.106667pt;}
.x90_c01285{left:411.653333pt;}
.x2f_c01285{left:413.946667pt;}
.x65_c01285{left:417.786667pt;}
.xcb_c01285{left:420.093333pt;}
.x43_c01285{left:421.626667pt;}
.xc5_c01285{left:423.173333pt;}
.xec_c01285{left:425.466667pt;}
.x7d_c01285{left:427.013333pt;}
.x10a_c01285{left:428.546667pt;}
.xe3_c01285{left:430.080000pt;}
.x96_c01285{left:431.613333pt;}
.x17_c01285{left:433.146667pt;}
.x4e_c01285{left:435.453333pt;}
.x5f_c01285{left:437.760000pt;}
.x110_c01285{left:439.293333pt;}
.x30_c01285{left:441.600000pt;}
.x8c_c01285{left:443.133333pt;}
.x44_c01285{left:445.440000pt;}
.x86_c01285{left:447.746667pt;}
.x114_c01285{left:449.280000pt;}
.x111_c01285{left:450.813333pt;}
.x4f_c01285{left:452.346667pt;}
.xa_c01285{left:453.893333pt;}
.xd5_c01285{left:456.186667pt;}
.x31_c01285{left:458.492928pt;}
.x70_c01285{left:460.800000pt;}
.xa0_c01285{left:463.106667pt;}
.x32_c01285{left:464.640000pt;}
.xc2_c01285{left:469.253333pt;}
.x119_c01285{left:470.786667pt;}
.x108_c01285{left:472.320000pt;}
.x91_c01285{left:475.386667pt;}
.xfd_c01285{left:477.693333pt;}
.xf4_c01285{left:479.226667pt;}
.xe1_c01285{left:482.306667pt;}
.xb_c01285{left:484.613333pt;}
.xba_c01285{left:486.146667pt;}
.x18_c01285{left:487.680000pt;}
.xae_c01285{left:489.213333pt;}
.xf8_c01285{left:490.746667pt;}
.xf0_c01285{left:492.293333pt;}
.x71_c01285{left:493.826667pt;}
.x101_c01285{left:495.360000pt;}
.xa7_c01285{left:496.893333pt;}
.xa1_c01285{left:498.426667pt;}
.x39_c01285{left:500.733333pt;}
.xc_c01285{left:503.040000pt;}
.xaf_c01285{left:505.346667pt;}
.xdc_c01285{left:506.880000pt;}
.xbb_c01285{left:508.413333pt;}
.x3a_c01285{left:517.626667pt;}
.xe7_c01285{left:520.706667pt;}
.xd_c01285{left:523.773333pt;}
.xd6_c01285{left:525.306667pt;}
.x66_c01285{left:527.613333pt;}
.x50_c01285{left:529.146667pt;}
.x21_c01285{left:530.693333pt;}
.x7e_c01285{left:532.226667pt;}
.x8d_c01285{left:534.533333pt;}
.x51_c01285{left:536.066667pt;}
.xe2_c01285{left:537.600000pt;}
.x102_c01285{left:539.133333pt;}
.x19_c01285{left:542.973333pt;}
.x57_c01285{left:545.280000pt;}
.x22_c01285{left:549.120000pt;}
.xed_c01285{left:551.426667pt;}
.x58_c01285{left:552.960000pt;}
.xf5_c01285{left:554.493333pt;}
.x3b_c01285{left:558.333333pt;}
.xb6_c01285{left:561.413333pt;}
.xa8_c01285{left:562.946667pt;}
.x52_c01285{left:565.253333pt;}
.x45_c01285{left:566.786667pt;}
.xcf_c01285{left:568.320000pt;}
.xb0_c01285{left:570.626667pt;}
.xa2_c01285{left:572.160000pt;}
.x46_c01285{left:573.693333pt;}
.xc6_c01285{left:575.226667pt;}
.x59_c01285{left:576.773333pt;}
.x3c_c01285{left:579.066667pt;}
.xf9_c01285{left:580.613333pt;}
.x47_c01285{left:582.906667pt;}
.x92_c01285{left:584.453333pt;}
.xbc_c01285{left:585.986667pt;}
.xe_c01285{left:587.520000pt;}
.xd7_c01285{left:589.053333pt;}
.x1a_c01285{left:590.586667pt;}
.x60_c01285{left:592.893333pt;}
.xf6_c01285{left:595.200000pt;}
.x48_c01285{left:598.266667pt;}
.xcc_c01285{left:600.573333pt;}
.x5a_c01285{left:605.186667pt;}
.xf_c01285{left:606.720000pt;}
.xf1_c01285{left:608.253333pt;}
.xe8_c01285{left:609.786667pt;}
.x23_c01285{left:614.400000pt;}
.xa9_c01285{left:615.933333pt;}
.xdd_c01285{left:617.466667pt;}
.xac_c01285{left:619.773333pt;}
.x53_c01285{left:621.306667pt;}
.x1b_c01285{left:625.146667pt;}
.x49_c01285{left:627.453333pt;}
.xee_c01285{left:628.986667pt;}
.xc7_c01285{left:630.533333pt;}
.x97_c01285{left:632.066667pt;}
.x87_c01285{left:633.600000pt;}
.x24_c01285{left:636.666667pt;}
.xe4_c01285{left:638.213333pt;}
.x67_c01285{left:639.746667pt;}
.x112_c01285{left:643.586667pt;}
.xb1_c01285{left:646.653333pt;}
.x104_c01285{left:649.733333pt;}
.xfa_c01285{left:651.266667pt;}
.x10d_c01285{left:652.800000pt;}
.xcd_c01285{left:654.333333pt;}
.x25_c01285{left:656.640000pt;}
.xa3_c01285{left:658.173333pt;}
.x3d_c01285{left:662.013333pt;}
.x6a_c01285{left:663.546667pt;}
.x93_c01285{left:665.853333pt;}
.x98_c01285{left:667.386667pt;}
.x8e_c01285{left:672.000000pt;}
.x5b_c01285{left:674.306667pt;}
.x1c_c01285{left:677.373333pt;}
.x33_c01285{left:678.906667pt;}
.xb7_c01285{left:680.453333pt;}
.x10_c01285{left:683.520000pt;}
.x61_c01285{left:685.826667pt;}
.x54_c01285{left:689.666667pt;}
.x4a_c01285{left:691.200000pt;}
.xd0_c01285{left:692.733333pt;}
.x99_c01285{left:694.266667pt;}
.xde_c01285{left:696.573333pt;}
.xb3_c01285{left:698.880000pt;}
.xc8_c01285{left:700.413333pt;}
.x11_c01285{left:705.026667pt;}
.x62_c01285{left:709.626667pt;}
.x26_c01285{left:713.466667pt;}
.x5c_c01285{left:715.773333pt;}
.x55_c01285{left:718.080000pt;}
.x3e_c01285{left:719.613333pt;}
.xd1_c01285{left:721.920000pt;}
.x34_c01285{left:724.226667pt;}
.x9a_c01285{left:726.533333pt;}
.x6b_c01285{left:728.826667pt;}
.xe9_c01285{left:730.373333pt;}
.x27_c01285{left:732.666667pt;}
.xbd_c01285{left:734.973333pt;}
.x103_c01285{left:736.506667pt;}
.x10e_c01285{left:738.053333pt;}
.xc9_c01285{left:739.586667pt;}
.x4b_c01285{left:741.893333pt;}
.x12_c01285{left:744.186667pt;}
.x3_c01285{left:746.493333pt;}
.xfe_c01285{left:748.026667pt;}
.x1d_c01285{left:750.333333pt;}
.x5d_c01285{left:752.640000pt;}
.x3f_c01285{left:755.706667pt;}
.x9b_c01285{left:757.253333pt;}
.x113_c01285{left:758.786667pt;}
.xa4_c01285{left:761.853333pt;}
.xe5_c01285{left:765.693333pt;}
.x6c_c01285{left:768.000000pt;}
.xad_c01285{left:770.306667pt;}
.x105_c01285{left:771.840000pt;}
.xdf_c01285{left:774.146667pt;}
.x4c_c01285{left:775.680000pt;}
.x35_c01285{left:777.986667pt;}
.x4_c01285{left:779.520000pt;}
.x10f_c01285{left:781.053333pt;}
.xd2_c01285{left:783.360000pt;}
.x118_c01285{left:784.893333pt;}
.x1e_c01285{left:787.200000pt;}
.xd9_c01285{left:789.506667pt;}
.x79_c01285{left:791.813333pt;}
.xd3_c01285{left:801.026667pt;}
.xbe_c01285{left:804.866667pt;}
.x123_c01285{left:815.613333pt;}
.xd4_c01285{left:817.920000pt;}
.xbf_c01285{left:820.986667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_75f8e6dd13650a5b5ffe89cd.woff2')format("woff");}.ff1_c01286{font-family:ff1_c01286;line-height:1.109863;font-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_c01286{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1db_c01286{transform:matrix(0.047400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047400,0.000000,0.000000,0.250000,0,0);}
.m125_c01286{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.m192_c01286{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01286{transform:matrix(0.079500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079500,0.000000,0.000000,0.250000,0,0);}
.m15c_c01286{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);}
.m15e_c01286{transform:matrix(0.086650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086650,0.000000,0.000000,0.250000,0,0);}
.m1ea_c01286{transform:matrix(0.087650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087650,0.000000,0.000000,0.250000,0,0);}
.m147_c01286{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01286{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m86_c01286{transform:matrix(0.098800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098800,0.000000,0.000000,0.250000,0,0);}
.m150_c01286{transform:matrix(0.101475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101475,0.000000,0.000000,0.250000,0,0);}
.m122_c01286{transform:matrix(0.102150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102150,0.000000,0.000000,0.250000,0,0);}
.m121_c01286{transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103800,0.000000,0.000000,0.250000,0,0);}
.m15d_c01286{transform:matrix(0.104700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104700,0.000000,0.000000,0.250000,0,0);}
.m162_c01286{transform:matrix(0.104925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104925,0.000000,0.000000,0.250000,0,0);}
.m15f_c01286{transform:matrix(0.108075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108075,0.000000,0.000000,0.250000,0,0);}
.m3b_c01286{transform:matrix(0.108325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108325,0.000000,0.000000,0.250000,0,0);}
.m160_c01286{transform:matrix(0.110925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110925,0.000000,0.000000,0.250000,0,0);}
.m65_c01286{transform:matrix(0.112200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112200,0.000000,0.000000,0.250000,0,0);}
.ma8_c01286{transform:matrix(0.112275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112275,0.000000,0.000000,0.250000,0,0);}
.m74_c01286{transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);}
.m19b_c01286{transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);}
.m84_c01286{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m1af_c01286{transform:matrix(0.114625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114625,0.000000,0.000000,0.250000,0,0);}
.m37_c01286{transform:matrix(0.115300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115300,0.000000,0.000000,0.250000,0,0);}
.m10c_c01286{transform:matrix(0.115450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115450,0.000000,0.000000,0.250000,0,0);}
.m77_c01286{transform:matrix(0.116850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116850,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01286{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);}
.m1ed_c01286{transform:matrix(0.119875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119875,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01286{transform:matrix(0.120575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120575,0.000000,0.000000,0.250000,0,0);}
.m75_c01286{transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123075,0.000000,0.000000,0.250000,0,0);}
.mae_c01286{transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01286{transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01286{transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);}
.maf_c01286{transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);}
.ma7_c01286{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1f9_c01286{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01286{transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);}
.mc0_c01286{transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);}
.m1f6_c01286{transform:matrix(0.126825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126825,0.000000,0.000000,0.250000,0,0);}
.m10_c01286{transform:matrix(0.126975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126975,0.000000,0.000000,0.250000,0,0);}
.m149_c01286{transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);}
.m11e_c01286{transform:matrix(0.129325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129325,0.000000,0.000000,0.250000,0,0);}
.mad_c01286{transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);}
.m156_c01286{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.mdf_c01286{transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);}
.m109_c01286{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.m1ee_c01286{transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);}
.m1f1_c01286{transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);}
.m172_c01286{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m174_c01286{transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);}
.m3d_c01286{transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135450,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01286{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m7c_c01286{transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);}
.m16e_c01286{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.mac_c01286{transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01286{transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);}
.m48_c01286{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m85_c01286{transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);}
.m190_c01286{transform:matrix(0.141150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141150,0.000000,0.000000,0.250000,0,0);}
.m81_c01286{transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01286{transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);}
.m161_c01286{transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01286{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.me1_c01286{transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);}
.m19f_c01286{transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01286{transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);}
.m1f2_c01286{transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143950,0.000000,0.000000,0.250000,0,0);}
.m25_c01286{transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);}
.m2_c01286{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01286{transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);}
.m1de_c01286{transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);}
.me0_c01286{transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01286{transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);}
.m12f_c01286{transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01286{transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);}
.mb4_c01286{transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01286{transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);}
.ma9_c01286{transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);}
.m66_c01286{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.maa_c01286{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);}
.m8d_c01286{transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);}
.m14a_c01286{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);}
.m113_c01286{transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);}
.m59_c01286{transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);}
.m119_c01286{transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149375,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01286{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);}
.m87_c01286{transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01286{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m40_c01286{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m7e_c01286{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m153_c01286{transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);}
.m7d_c01286{transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);}
.mc2_c01286{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.m68_c01286{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.m22_c01286{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.mcb_c01286{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.mc4_c01286{transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);}
.m98_c01286{transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01286{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);}
.m177_c01286{transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);}
.mbd_c01286{transform:matrix(0.153350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153350,0.000000,0.000000,0.250000,0,0);}
.mb5_c01286{transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);}
.m171_c01286{transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153950,0.000000,0.000000,0.250000,0,0);}
.m106_c01286{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);}
.ma1_c01286{transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);}
.m35_c01286{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.m11c_c01286{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.m80_c01286{transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);}
.m11d_c01286{transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);}
.m61_c01286{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m1eb_c01286{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.m4b_c01286{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.m69_c01286{transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);}
.mbc_c01286{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);}
.m165_c01286{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);}
.m144_c01286{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m89_c01286{transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);}
.m12d_c01286{transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);}
.m1b_c01286{transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);}
.m17a_c01286{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.m44_c01286{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m123_c01286{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.me2_c01286{transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01286{transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);}
.mb3_c01286{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.m152_c01286{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);}
.m148_c01286{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.mc7_c01286{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01286{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.m9b_c01286{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m18f_c01286{transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);}
.m76_c01286{transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);}
.m9f_c01286{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.m146_c01286{transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);}
.m11a_c01286{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.me4_c01286{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.me6_c01286{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);}
.m183_c01286{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01286{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01286{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m39_c01286{transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);}
.mb8_c01286{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.m158_c01286{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m151_c01286{transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171200,0.000000,0.000000,0.250000,0,0);}
.m110_c01286{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);}
.m19a_c01286{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.m10d_c01286{transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);}
.m9a_c01286{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.m193_c01286{transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172700,0.000000,0.000000,0.250000,0,0);}
.m118_c01286{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.mb0_c01286{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m45_c01286{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.m12b_c01286{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m90_c01286{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);}
.m168_c01286{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.m78_c01286{transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01286{transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);}
.m14e_c01286{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01286{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m140_c01286{transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);}
.m17d_c01286{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);}
.mc_c01286{transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);}
.m94_c01286{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.m3a_c01286{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.mc9_c01286{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);}
.md1_c01286{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);}
.m16d_c01286{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m11f_c01286{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m93_c01286{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01286{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.mc1_c01286{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01286{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m1f0_c01286{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);}
.m4_c01286{transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);}
.m133_c01286{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01286{transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);}
.m7b_c01286{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m10e_c01286{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.m128_c01286{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m2c_c01286{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.m181_c01286{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);}
.m91_c01286{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m194_c01286{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.m99_c01286{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m88_c01286{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m55_c01286{transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187125,0.000000,0.000000,0.250000,0,0);}
.m96_c01286{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m1df_c01286{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);}
.m18e_c01286{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m6b_c01286{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.md7_c01286{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m1f4_c01286{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);}
.m134_c01286{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.m0_c01286{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);}
.m16a_c01286{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);}
.m142_c01286{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);}
.m1be_c01286{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.m189_c01286{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01286{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);}
.m132_c01286{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);}
.m16b_c01286{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m14c_c01286{transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);}
.m13c_c01286{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);}
.m120_c01286{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.m175_c01286{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);}
.m1c7_c01286{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01286{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m16c_c01286{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m167_c01286{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m72_c01286{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01286{transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);}
.m154_c01286{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.m155_c01286{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m17b_c01286{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m12_c01286{transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);}
.m1e6_c01286{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);}
.m112_c01286{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);}
.m188_c01286{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01286{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);}
.m13f_c01286{transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);}
.m17e_c01286{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m46_c01286{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);}
.m33_c01286{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);}
.me7_c01286{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);}
.m24_c01286{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);}
.me9_c01286{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.m19d_c01286{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);}
.md0_c01286{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);}
.m21_c01286{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.m130_c01286{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.m186_c01286{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.mf6_c01286{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);}
.m1ba_c01286{transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);}
.m145_c01286{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.mf8_c01286{transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01286{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.m187_c01286{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);}
.m2f_c01286{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.mcd_c01286{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_c01286{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);}
.mbe_c01286{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m196_c01286{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);}
.mcc_c01286{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);}
.m10a_c01286{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.m164_c01286{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01286{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.m49_c01286{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01286{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);}
.m1d9_c01286{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);}
.m1fb_c01286{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.m8c_c01286{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);}
.mc6_c01286{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);}
.m139_c01286{transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);}
.m6a_c01286{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01286{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);}
.m129_c01286{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m6_c01286{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m1fa_c01286{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.mc5_c01286{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);}
.m131_c01286{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);}
.m70_c01286{transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);}
.m180_c01286{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m7a_c01286{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m166_c01286{transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);}
.m111_c01286{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.m53_c01286{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.mcf_c01286{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.meb_c01286{transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01286{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m1ef_c01286{transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);}
.ma5_c01286{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m3f_c01286{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);}
.m95_c01286{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.m8e_c01286{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);}
.m1ac_c01286{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m127_c01286{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m6c_c01286{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);}
.med_c01286{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);}
.mec_c01286{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);}
.m1e7_c01286{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);}
.m10b_c01286{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m141_c01286{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01286{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);}
.mf3_c01286{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);}
.m173_c01286{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);}
.m1cf_c01286{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m12e_c01286{transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);}
.m6f_c01286{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m6d_c01286{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m23_c01286{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);}
.md6_c01286{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.mc8_c01286{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m26_c01286{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m13d_c01286{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);}
.m15a_c01286{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m4e_c01286{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);}
.mef_c01286{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);}
.m3e_c01286{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);}
.m5a_c01286{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.mce_c01286{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);}
.m104_c01286{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);}
.m1fe_c01286{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);}
.m5c_c01286{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01286{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);}
.me8_c01286{transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);}
.m115_c01286{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);}
.m1f5_c01286{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m4a_c01286{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);}
.mb6_c01286{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);}
.m3c_c01286{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.m73_c01286{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);}
.m17f_c01286{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.m52_c01286{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m8_c01286{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.mdc_c01286{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);}
.m16f_c01286{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);}
.m43_c01286{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);}
.m17c_c01286{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m14b_c01286{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);}
.m29_c01286{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.mf5_c01286{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);}
.m137_c01286{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.m12c_c01286{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);}
.mfa_c01286{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);}
.m169_c01286{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01286{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);}
.m1f3_c01286{transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);}
.m2d_c01286{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m170_c01286{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.m138_c01286{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m157_c01286{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.mdb_c01286{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01286{transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);}
.m20_c01286{transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);}
.m13_c01286{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m19c_c01286{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);}
.m1a3_c01286{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m34_c01286{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m15b_c01286{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);}
.m36_c01286{transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);}
.m9c_c01286{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);}
.m13b_c01286{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);}
.mb9_c01286{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);}
.m3_c01286{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.m13e_c01286{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.m8f_c01286{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.m82_c01286{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);}
.m97_c01286{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);}
.m135_c01286{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.m116_c01286{transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);}
.m83_c01286{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m5e_c01286{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.mde_c01286{transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);}
.m62_c01286{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);}
.m14d_c01286{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);}
.m108_c01286{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);}
.m71_c01286{transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);}
.md5_c01286{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);}
.me5_c01286{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);}
.m2e_c01286{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.m197_c01286{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);}
.md2_c01286{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);}
.m184_c01286{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);}
.m1d2_c01286{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.ma3_c01286{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);}
.m159_c01286{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);}
.m58_c01286{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);}
.m19e_c01286{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);}
.m8b_c01286{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);}
.m114_c01286{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);}
.m136_c01286{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);}
.m11b_c01286{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01286{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m198_c01286{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_c01286{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);}
.m92_c01286{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);}
.m1c8_c01286{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.m56_c01286{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.m176_c01286{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);}
.m4c_c01286{transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);}
.m102_c01286{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);}
.m178_c01286{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);}
.mdd_c01286{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);}
.m191_c01286{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.mbb_c01286{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);}
.mf0_c01286{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);}
.m9d_c01286{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);}
.m32_c01286{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);}
.m4f_c01286{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m19_c01286{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m199_c01286{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);}
.m5d_c01286{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mf_c01286{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);}
.m28_c01286{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);}
.me_c01286{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);}
.m14_c01286{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);}
.m38_c01286{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mee_c01286{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m51_c01286{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma0_c01286{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);}
.m15_c01286{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc3_c01286{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);}
.m6e_c01286{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);}
.m1a_c01286{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m105_c01286{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);}
.m1d_c01286{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m41_c01286{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m18d_c01286{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);}
.m31_c01286{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mea_c01286{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);}
.mca_c01286{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);}
.m11_c01286{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m64_c01286{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m67_c01286{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);}
.m60_c01286{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01286{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb7_c01286{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);}
.m79_c01286{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me3_c01286{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01286{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c01286{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mda_c01286{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mfb_c01286{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mab_c01286{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mf9_c01286{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m16_c01286{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);}
.m124_c01286{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01286{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mbf_c01286{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01286{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m179_c01286{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);}
.m7_c01286{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.md3_c01286{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);}
.m1c6_c01286{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m9e_c01286{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb1_c01286{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m27_c01286{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md9_c01286{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);}
.m2b_c01286{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01286{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);}
.mf7_c01286{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m57_c01286{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m12a_c01286{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);}
.ma2_c01286{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m47_c01286{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m50_c01286{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m9_c01286{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01286{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m54_c01286{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);}
.mba_c01286{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);}
.m185_c01286{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);}
.m126_c01286{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m100_c01286{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m10f_c01286{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mf1_c01286{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01286{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m30_c01286{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.md8_c01286{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m163_c01286{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mf4_c01286{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mf2_c01286{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1f8_c01286{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01286{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);}
.m117_c01286{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mb2_c01286{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mb_c01286{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mff_c01286{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m101_c01286{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);}
.m1dd_c01286{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.ma4_c01286{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01286{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);}
.m1_c01286{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1fd_c01286{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.ma_c01286{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1da_c01286{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mfc_c01286{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m182_c01286{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01286{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m18a_c01286{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m18c_c01286{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m1ff_c01286{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m42_c01286{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1e8_c01286{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m1fc_c01286{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m195_c01286{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01286{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01286{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m107_c01286{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.md4_c01286{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01286{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m63_c01286{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.mfe_c01286{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m18b_c01286{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);}
.m143_c01286{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01286{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01286{transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);}
.m200_c01286{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m13a_c01286{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01286{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m5_c01286{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m14f_c01286{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01286{transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.907500,0.000000,0.000000,0.250000,0,0);}
.mfd_c01286{transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01286{transform:matrix(1.117500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.117500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.117500,0.000000,0.000000,0.250000,0,0);}
.m103_c01286{transform:matrix(1.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.330000,0.000000,0.000000,0.250000,0,0);}
.m1f7_c01286{transform:matrix(1.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.595000,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01286{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01286{transform:matrix(2.010000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.010000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.010000,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01286{transform:matrix(2.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.167500,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01286{transform:matrix(2.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.227500,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01286{transform:matrix(2.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.335000,0.000000,0.000000,0.250000,0,0);}
.v4_c01286{vertical-align:-41.460000px;}
.v3_c01286{vertical-align:-13.800000px;}
.v5_c01286{vertical-align:-10.380000px;}
.v0_c01286{vertical-align:0.000000px;}
.v1_c01286{vertical-align:3.420000px;}
.v2_c01286{vertical-align:10.380000px;}
.ls4_c01286{letter-spacing:0.000000px;}
.ls2_c01286{letter-spacing:21.327480px;}
.ls1_c01286{letter-spacing:44.120688px;}
.ls0_c01286{letter-spacing:88.088700px;}
.ls3_c01286{letter-spacing:107.032140px;}
.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;}
}
.ws3_c01286{word-spacing:-26.846160px;}
.ws2_c01286{word-spacing:-22.856204px;}
.ws1_c01286{word-spacing:-20.001720px;}
.ws0_c01286{word-spacing:-15.054480px;}
.ws5_c01286{word-spacing:0.000000px;}
.ws4_c01286{word-spacing:21.629520px;}
.fc0_c01286{color:transparent;}
.fs3_c01286{font-size:3.456000px;}
.fs17_c01286{font-size:6.000000px;}
.fs2_c01286{font-size:6.900000px;}
.fs6_c01286{font-size:10.380000px;}
.fs1e_c01286{font-size:13.800000px;}
.fs1c_c01286{font-size:17.280000px;}
.fs1d_c01286{font-size:20.760000px;}
.fs1_c01286{font-size:24.180000px;}
.fs13_c01286{font-size:27.660000px;}
.fs1f_c01286{font-size:31.080000px;}
.fs1a_c01286{font-size:34.560000px;}
.fsb_c01286{font-size:38.040000px;}
.fsa_c01286{font-size:41.460000px;}
.fs1b_c01286{font-size:44.940000px;}
.fs8_c01286{font-size:48.360000px;}
.fsd_c01286{font-size:51.840000px;}
.fs11_c01286{font-size:55.320000px;}
.fs15_c01286{font-size:58.740000px;}
.fs12_c01286{font-size:62.220000px;}
.fsf_c01286{font-size:65.640000px;}
.fse_c01286{font-size:69.120000px;}
.fs9_c01286{font-size:72.600000px;}
.fs0_c01286{font-size:76.020000px;}
.fs18_c01286{font-size:79.500000px;}
.fs14_c01286{font-size:82.920000px;}
.fsc_c01286{font-size:86.400000px;}
.fs19_c01286{font-size:89.880000px;}
.fs16_c01286{font-size:93.300000px;}
.fs7_c01286{font-size:96.780000px;}
.fs5_c01286{font-size:103.680000px;}
.fs21_c01286{font-size:107.160000px;}
.fs20_c01286{font-size:110.580000px;}
.fs4_c01286{font-size:114.060000px;}
.fs10_c01286{font-size:120.960000px;}
.y0_c01286{bottom:0.000000px;}
.y238_c01286{bottom:155.520000px;}
.y237_c01286{bottom:160.710000px;}
.y234_c01286{bottom:169.350000px;}
.y235_c01286{bottom:170.205000px;}
.y22e_c01286{bottom:171.075000px;}
.y22f_c01286{bottom:172.800000px;}
.y230_c01286{bottom:173.670000px;}
.y236_c01286{bottom:174.525000px;}
.y22d_c01286{bottom:175.395000px;}
.y233_c01286{bottom:176.250000px;}
.y22b_c01286{bottom:177.120000px;}
.y232_c01286{bottom:177.990000px;}
.y231_c01286{bottom:178.845000px;}
.y229_c01286{bottom:179.715000px;}
.y22a_c01286{bottom:181.440000px;}
.y22c_c01286{bottom:184.035000px;}
.y228_c01286{bottom:195.270000px;}
.y227_c01286{bottom:196.125000px;}
.y225_c01286{bottom:198.720000px;}
.y226_c01286{bottom:199.590000px;}
.y221_c01286{bottom:200.445000px;}
.y223_c01286{bottom:201.315000px;}
.y224_c01286{bottom:203.040000px;}
.y222_c01286{bottom:205.635000px;}
.y220_c01286{bottom:209.955000px;}
.y21f_c01286{bottom:215.130000px;}
.y21d_c01286{bottom:217.725000px;}
.y21c_c01286{bottom:218.595000px;}
.y21a_c01286{bottom:219.450000px;}
.y21e_c01286{bottom:220.320000px;}
.y216_c01286{bottom:221.190000px;}
.y21b_c01286{bottom:222.045000px;}
.y213_c01286{bottom:222.915000px;}
.y212_c01286{bottom:223.770000px;}
.y219_c01286{bottom:224.640000px;}
.y211_c01286{bottom:225.510000px;}
.y218_c01286{bottom:226.365000px;}
.y217_c01286{bottom:228.960000px;}
.y210_c01286{bottom:229.830000px;}
.y215_c01286{bottom:230.685000px;}
.y214_c01286{bottom:231.555000px;}
.y20d_c01286{bottom:234.150000px;}
.y209_c01286{bottom:235.005000px;}
.y20f_c01286{bottom:235.875000px;}
.y20e_c01286{bottom:236.730000px;}
.y208_c01286{bottom:237.600000px;}
.y20c_c01286{bottom:238.470000px;}
.y20b_c01286{bottom:240.195000px;}
.y206_c01286{bottom:241.050000px;}
.y205_c01286{bottom:241.920000px;}
.y204_c01286{bottom:242.790000px;}
.y203_c01286{bottom:244.515000px;}
.y20a_c01286{bottom:248.835000px;}
.y202_c01286{bottom:251.430000px;}
.y207_c01286{bottom:255.750000px;}
.y201_c01286{bottom:257.475000px;}
.y1ff_c01286{bottom:258.330000px;}
.y1fe_c01286{bottom:260.070000px;}
.y200_c01286{bottom:260.925000px;}
.y1fd_c01286{bottom:261.795000px;}
.y1f9_c01286{bottom:262.650000px;}
.y1fc_c01286{bottom:263.520000px;}
.y1fa_c01286{bottom:265.245000px;}
.y1fb_c01286{bottom:266.115000px;}
.y1f7_c01286{bottom:266.970000px;}
.y1f5_c01286{bottom:268.710000px;}
.y1f8_c01286{bottom:269.565000px;}
.y1f6_c01286{bottom:270.435000px;}
.y1f4_c01286{bottom:271.290000px;}
.y1f0_c01286{bottom:273.030000px;}
.y1f3_c01286{bottom:273.885000px;}
.y1f2_c01286{bottom:274.755000px;}
.y1ed_c01286{bottom:275.610000px;}
.y1ee_c01286{bottom:276.480000px;}
.y1ef_c01286{bottom:278.205000px;}
.y1f1_c01286{bottom:279.075000px;}
.y1eb_c01286{bottom:279.930000px;}
.y1ec_c01286{bottom:282.525000px;}
.y1ea_c01286{bottom:283.395000px;}
.y1e3_c01286{bottom:284.250000px;}
.y1e7_c01286{bottom:285.120000px;}
.y1e4_c01286{bottom:285.990000px;}
.y1e8_c01286{bottom:287.715000px;}
.y1e6_c01286{bottom:288.570000px;}
.y1e5_c01286{bottom:289.440000px;}
.y1e0_c01286{bottom:290.310000px;}
.y1e9_c01286{bottom:291.165000px;}
.y1de_c01286{bottom:292.035000px;}
.y1dc_c01286{bottom:292.890000px;}
.y1df_c01286{bottom:293.760000px;}
.y1e2_c01286{bottom:294.630000px;}
.y1e1_c01286{bottom:296.355000px;}
.y1dd_c01286{bottom:297.210000px;}
.y1d9_c01286{bottom:298.080000px;}
.y1da_c01286{bottom:298.950000px;}
.y1db_c01286{bottom:299.805000px;}
.y1d8_c01286{bottom:302.400000px;}
.y1d6_c01286{bottom:304.125000px;}
.y1d5_c01286{bottom:304.995000px;}
.y1d2_c01286{bottom:308.445000px;}
.y1d7_c01286{bottom:309.315000px;}
.y1d1_c01286{bottom:310.170000px;}
.y1d4_c01286{bottom:311.040000px;}
.y1d3_c01286{bottom:311.910000px;}
.y1d0_c01286{bottom:317.955000px;}
.y1cf_c01286{bottom:318.810000px;}
.y1ce_c01286{bottom:323.130000px;}
.y1cd_c01286{bottom:324.000000px;}
.y1cb_c01286{bottom:330.045000px;}
.y1cc_c01286{bottom:330.915000px;}
.y1ca_c01286{bottom:337.830000px;}
.y1c8_c01286{bottom:341.280000px;}
.y1c5_c01286{bottom:342.150000px;}
.y1c9_c01286{bottom:343.005000px;}
.y1c4_c01286{bottom:343.875000px;}
.y1c6_c01286{bottom:345.600000px;}
.y1c7_c01286{bottom:346.470000px;}
.y1c1_c01286{bottom:348.195000px;}
.y1c2_c01286{bottom:349.920000px;}
.y1c3_c01286{bottom:351.645000px;}
.y1c0_c01286{bottom:353.370000px;}
.y1bf_c01286{bottom:358.560000px;}
.y1be_c01286{bottom:362.880000px;}
.y1bd_c01286{bottom:363.750000px;}
.y1bc_c01286{bottom:364.605000px;}
.y1b9_c01286{bottom:365.475000px;}
.y1bb_c01286{bottom:366.330000px;}
.y1ba_c01286{bottom:370.650000px;}
.y1b8_c01286{bottom:372.390000px;}
.y1b7_c01286{bottom:381.030000px;}
.y1b6_c01286{bottom:381.885000px;}
.y1b2_c01286{bottom:385.350000px;}
.y1b1_c01286{bottom:386.205000px;}
.y1b5_c01286{bottom:388.800000px;}
.y1b0_c01286{bottom:390.525000px;}
.y1b4_c01286{bottom:395.715000px;}
.y1b3_c01286{bottom:399.165000px;}
.y1ad_c01286{bottom:402.630000px;}
.y1ab_c01286{bottom:404.355000px;}
.y1aa_c01286{bottom:406.950000px;}
.y1ac_c01286{bottom:407.805000px;}
.y1a9_c01286{bottom:408.675000px;}
.y1af_c01286{bottom:409.530000px;}
.y1a4_c01286{bottom:412.995000px;}
.y1a8_c01286{bottom:413.850000px;}
.y1ae_c01286{bottom:416.445000px;}
.y1a5_c01286{bottom:418.170000px;}
.y1a7_c01286{bottom:419.040000px;}
.y1a2_c01286{bottom:419.910000px;}
.y1a1_c01286{bottom:420.765000px;}
.y1a0_c01286{bottom:421.635000px;}
.y19f_c01286{bottom:423.360000px;}
.y1a3_c01286{bottom:424.230000px;}
.y1a6_c01286{bottom:425.085000px;}
.y19d_c01286{bottom:426.810000px;}
.y19c_c01286{bottom:429.405000px;}
.y19e_c01286{bottom:430.275000px;}
.y19b_c01286{bottom:443.235000px;}
.y199_c01286{bottom:444.960000px;}
.y198_c01286{bottom:445.830000px;}
.y196_c01286{bottom:447.555000px;}
.y195_c01286{bottom:448.410000px;}
.y194_c01286{bottom:450.150000px;}
.y197_c01286{bottom:451.005000px;}
.y19a_c01286{bottom:451.875000px;}
.y192_c01286{bottom:463.965000px;}
.y193_c01286{bottom:465.690000px;}
.y18e_c01286{bottom:468.285000px;}
.y18a_c01286{bottom:469.155000px;}
.y18c_c01286{bottom:470.010000px;}
.y191_c01286{bottom:470.880000px;}
.y190_c01286{bottom:472.605000px;}
.y18d_c01286{bottom:473.475000px;}
.y18b_c01286{bottom:474.330000px;}
.y189_c01286{bottom:476.070000px;}
.y18f_c01286{bottom:476.925000px;}
.y187_c01286{bottom:478.650000px;}
.y188_c01286{bottom:482.115000px;}
.y186_c01286{bottom:482.970000px;}
.y185_c01286{bottom:486.435000px;}
.y183_c01286{bottom:487.290000px;}
.y182_c01286{bottom:489.030000px;}
.y181_c01286{bottom:489.885000px;}
.y184_c01286{bottom:494.205000px;}
.y180_c01286{bottom:503.715000px;}
.y17f_c01286{bottom:506.310000px;}
.y17c_c01286{bottom:507.165000px;}
.y17d_c01286{bottom:508.035000px;}
.y17e_c01286{bottom:509.760000px;}
.y179_c01286{bottom:510.630000px;}
.y17b_c01286{bottom:511.485000px;}
.y17a_c01286{bottom:512.355000px;}
.y176_c01286{bottom:513.210000px;}
.y178_c01286{bottom:514.950000px;}
.y177_c01286{bottom:519.270000px;}
.y172_c01286{bottom:522.720000px;}
.y170_c01286{bottom:524.445000px;}
.y16f_c01286{bottom:525.315000px;}
.y174_c01286{bottom:526.170000px;}
.y16e_c01286{bottom:527.040000px;}
.y16c_c01286{bottom:528.765000px;}
.y16b_c01286{bottom:530.490000px;}
.y175_c01286{bottom:531.360000px;}
.y171_c01286{bottom:532.230000px;}
.y16d_c01286{bottom:533.085000px;}
.y173_c01286{bottom:533.955000px;}
.y167_c01286{bottom:546.045000px;}
.y169_c01286{bottom:546.915000px;}
.y16a_c01286{bottom:549.510000px;}
.y168_c01286{bottom:551.235000px;}
.y165_c01286{bottom:552.090000px;}
.y166_c01286{bottom:552.960000px;}
.y164_c01286{bottom:553.830000px;}
.y161_c01286{bottom:554.685000px;}
.y160_c01286{bottom:555.555000px;}
.y163_c01286{bottom:556.410000px;}
.y162_c01286{bottom:557.280000px;}
.y15f_c01286{bottom:563.325000px;}
.y15e_c01286{bottom:567.645000px;}
.y15c_c01286{bottom:569.370000px;}
.y15b_c01286{bottom:571.110000px;}
.y158_c01286{bottom:571.965000px;}
.y159_c01286{bottom:572.835000px;}
.y15d_c01286{bottom:573.690000px;}
.y157_c01286{bottom:574.560000px;}
.y15a_c01286{bottom:575.430000px;}
.y154_c01286{bottom:585.795000px;}
.y156_c01286{bottom:588.390000px;}
.y155_c01286{bottom:589.245000px;}
.y150_c01286{bottom:590.970000px;}
.y153_c01286{bottom:591.840000px;}
.y14f_c01286{bottom:593.565000px;}
.y151_c01286{bottom:594.435000px;}
.y14e_c01286{bottom:597.885000px;}
.y14c_c01286{bottom:604.800000px;}
.y152_c01286{bottom:605.670000px;}
.y14a_c01286{bottom:609.120000px;}
.y14d_c01286{bottom:610.845000px;}
.y149_c01286{bottom:612.570000px;}
.y14b_c01286{bottom:613.440000px;}
.y148_c01286{bottom:614.310000px;}
.y147_c01286{bottom:618.630000px;}
.y145_c01286{bottom:626.400000px;}
.y144_c01286{bottom:628.995000px;}
.y143_c01286{bottom:629.850000px;}
.y146_c01286{bottom:630.720000px;}
.y140_c01286{bottom:631.590000px;}
.y13c_c01286{bottom:633.315000px;}
.y13d_c01286{bottom:634.170000px;}
.y142_c01286{bottom:636.765000px;}
.y141_c01286{bottom:641.085000px;}
.y13e_c01286{bottom:642.810000px;}
.y13f_c01286{bottom:644.550000px;}
.y13b_c01286{bottom:645.405000px;}
.y13a_c01286{bottom:647.130000px;}
.y138_c01286{bottom:649.725000px;}
.y137_c01286{bottom:651.450000px;}
.y135_c01286{bottom:652.320000px;}
.y139_c01286{bottom:653.190000px;}
.y132_c01286{bottom:654.045000px;}
.y133_c01286{bottom:654.915000px;}
.y131_c01286{bottom:655.770000px;}
.y136_c01286{bottom:656.640000px;}
.y134_c01286{bottom:658.365000px;}
.y130_c01286{bottom:664.410000px;}
.y12e_c01286{bottom:667.875000px;}
.y12c_c01286{bottom:669.600000px;}
.y12f_c01286{bottom:671.325000px;}
.y12a_c01286{bottom:673.050000px;}
.y12d_c01286{bottom:673.920000px;}
.y12b_c01286{bottom:675.645000px;}
.y129_c01286{bottom:677.370000px;}
.y246_c01286{bottom:678.240000px;}
.y128_c01286{bottom:679.110000px;}
.y127_c01286{bottom:679.965000px;}
.y125_c01286{bottom:684.285000px;}
.y123_c01286{bottom:686.880000px;}
.y126_c01286{bottom:688.605000px;}
.y124_c01286{bottom:692.070000px;}
.y11f_c01286{bottom:692.925000px;}
.y11e_c01286{bottom:693.795000px;}
.y121_c01286{bottom:694.650000px;}
.y122_c01286{bottom:695.520000px;}
.y120_c01286{bottom:697.245000px;}
.y11c_c01286{bottom:707.610000px;}
.y11b_c01286{bottom:708.480000px;}
.y117_c01286{bottom:711.075000px;}
.y11d_c01286{bottom:712.800000px;}
.y119_c01286{bottom:713.670000px;}
.y116_c01286{bottom:714.525000px;}
.y11a_c01286{bottom:715.395000px;}
.y118_c01286{bottom:716.250000px;}
.y114_c01286{bottom:719.715000px;}
.y115_c01286{bottom:720.570000px;}
.y113_c01286{bottom:724.890000px;}
.y112_c01286{bottom:725.760000px;}
.y111_c01286{bottom:728.355000px;}
.y110_c01286{bottom:729.210000px;}
.y10f_c01286{bottom:732.675000px;}
.y10c_c01286{bottom:733.530000px;}
.y10d_c01286{bottom:734.400000px;}
.y10e_c01286{bottom:738.720000px;}
.y10b_c01286{bottom:741.315000px;}
.y109_c01286{bottom:746.490000px;}
.y10a_c01286{bottom:750.810000px;}
.y106_c01286{bottom:751.680000px;}
.y105_c01286{bottom:752.550000px;}
.y108_c01286{bottom:753.405000px;}
.y107_c01286{bottom:754.275000px;}
.y104_c01286{bottom:755.130000px;}
.yff_c01286{bottom:756.870000px;}
.yfb_c01286{bottom:759.450000px;}
.y103_c01286{bottom:760.320000px;}
.yfa_c01286{bottom:761.190000px;}
.y101_c01286{bottom:762.045000px;}
.y100_c01286{bottom:762.915000px;}
.yfd_c01286{bottom:763.770000px;}
.y102_c01286{bottom:764.640000px;}
.yfe_c01286{bottom:765.510000px;}
.yf8_c01286{bottom:768.960000px;}
.yf9_c01286{bottom:770.685000px;}
.yfc_c01286{bottom:771.555000px;}
.yf6_c01286{bottom:772.410000px;}
.yf7_c01286{bottom:775.875000px;}
.yf4_c01286{bottom:777.600000px;}
.yf5_c01286{bottom:779.325000px;}
.yf3_c01286{bottom:781.920000px;}
.yf0_c01286{bottom:791.430000px;}
.yf1_c01286{bottom:794.880000px;}
.yee_c01286{bottom:795.750000px;}
.yef_c01286{bottom:797.475000px;}
.yec_c01286{bottom:800.070000px;}
.yf2_c01286{bottom:800.925000px;}
.yed_c01286{bottom:802.650000px;}
.yeb_c01286{bottom:810.435000px;}
.yea_c01286{bottom:813.885000px;}
.ye7_c01286{bottom:814.755000px;}
.ye6_c01286{bottom:815.610000px;}
.ye9_c01286{bottom:817.350000px;}
.ye8_c01286{bottom:819.075000px;}
.ye5_c01286{bottom:822.525000px;}
.ye4_c01286{bottom:828.570000px;}
.ye2_c01286{bottom:830.310000px;}
.ydf_c01286{bottom:832.035000px;}
.ye3_c01286{bottom:832.890000px;}
.ye0_c01286{bottom:834.630000px;}
.ydd_c01286{bottom:835.485000px;}
.ye1_c01286{bottom:837.210000px;}
.yde_c01286{bottom:839.805000px;}
.ydc_c01286{bottom:840.675000px;}
.ydb_c01286{bottom:842.400000px;}
.yd9_c01286{bottom:851.040000px;}
.yd8_c01286{bottom:852.765000px;}
.yda_c01286{bottom:853.635000px;}
.yd6_c01286{bottom:854.490000px;}
.yd5_c01286{bottom:855.360000px;}
.yd4_c01286{bottom:857.085000px;}
.yd7_c01286{bottom:857.955000px;}
.yd2_c01286{bottom:861.405000px;}
.yd1_c01286{bottom:869.190000px;}
.yd3_c01286{bottom:870.045000px;}
.ycd_c01286{bottom:872.640000px;}
.yce_c01286{bottom:873.510000px;}
.yd0_c01286{bottom:874.365000px;}
.ycf_c01286{bottom:875.235000px;}
.ycc_c01286{bottom:876.090000px;}
.ycb_c01286{bottom:880.410000px;}
.yca_c01286{bottom:892.515000px;}
.yc8_c01286{bottom:893.370000px;}
.yc9_c01286{bottom:894.240000px;}
.yc4_c01286{bottom:895.110000px;}
.yc7_c01286{bottom:895.965000px;}
.yc3_c01286{bottom:896.835000px;}
.yc6_c01286{bottom:898.560000px;}
.yc5_c01286{bottom:901.155000px;}
.yc2_c01286{bottom:910.650000px;}
.ybe_c01286{bottom:913.245000px;}
.ybb_c01286{bottom:914.970000px;}
.yc1_c01286{bottom:915.840000px;}
.yba_c01286{bottom:916.710000px;}
.yc0_c01286{bottom:917.565000px;}
.ybf_c01286{bottom:918.435000px;}
.ybd_c01286{bottom:919.290000px;}
.ybc_c01286{bottom:921.030000px;}
.yb9_c01286{bottom:932.250000px;}
.yb7_c01286{bottom:933.120000px;}
.yb3_c01286{bottom:934.845000px;}
.yb5_c01286{bottom:935.715000px;}
.yb2_c01286{bottom:936.570000px;}
.yb8_c01286{bottom:937.440000px;}
.yb1_c01286{bottom:939.165000px;}
.yb6_c01286{bottom:940.035000px;}
.yb4_c01286{bottom:940.890000px;}
.yb0_c01286{bottom:946.080000px;}
.yaf_c01286{bottom:951.270000px;}
.yae_c01286{bottom:954.720000px;}
.yab_c01286{bottom:955.590000px;}
.ya7_c01286{bottom:956.445000px;}
.ya9_c01286{bottom:957.315000px;}
.ya8_c01286{bottom:958.170000px;}
.yad_c01286{bottom:959.040000px;}
.ya2_c01286{bottom:959.910000px;}
.yaa_c01286{bottom:960.765000px;}
.ya4_c01286{bottom:961.635000px;}
.ya6_c01286{bottom:963.360000px;}
.ya5_c01286{bottom:964.230000px;}
.ya3_c01286{bottom:965.085000px;}
.yac_c01286{bottom:967.680000px;}
.y9f_c01286{bottom:973.725000px;}
.y9e_c01286{bottom:974.595000px;}
.ya1_c01286{bottom:976.320000px;}
.ya0_c01286{bottom:978.045000px;}
.y9c_c01286{bottom:978.915000px;}
.y9b_c01286{bottom:979.770000px;}
.y9a_c01286{bottom:980.640000px;}
.y98_c01286{bottom:981.510000px;}
.y99_c01286{bottom:982.365000px;}
.y9d_c01286{bottom:984.090000px;}
.y97_c01286{bottom:991.005000px;}
.y92_c01286{bottom:995.325000px;}
.y94_c01286{bottom:997.050000px;}
.y96_c01286{bottom:997.920000px;}
.y8f_c01286{bottom:998.790000px;}
.y95_c01286{bottom:999.645000px;}
.y91_c01286{bottom:1000.515000px;}
.y90_c01286{bottom:1003.965000px;}
.y93_c01286{bottom:1007.430000px;}
.y8d_c01286{bottom:1012.605000px;}
.y8e_c01286{bottom:1014.330000px;}
.y8a_c01286{bottom:1015.200000px;}
.y8b_c01286{bottom:1016.070000px;}
.y89_c01286{bottom:1016.925000px;}
.y88_c01286{bottom:1019.520000px;}
.y8c_c01286{bottom:1020.390000px;}
.y87_c01286{bottom:1022.970000px;}
.y86_c01286{bottom:1030.755000px;}
.y85_c01286{bottom:1034.205000px;}
.y84_c01286{bottom:1035.075000px;}
.y83_c01286{bottom:1036.800000px;}
.y82_c01286{bottom:1038.525000px;}
.y81_c01286{bottom:1039.395000px;}
.y80_c01286{bottom:1053.210000px;}
.y7f_c01286{bottom:1054.080000px;}
.y7b_c01286{bottom:1058.400000px;}
.y7c_c01286{bottom:1059.270000px;}
.y79_c01286{bottom:1060.125000px;}
.y7a_c01286{bottom:1060.995000px;}
.y78_c01286{bottom:1061.850000px;}
.y7e_c01286{bottom:1062.720000px;}
.y7d_c01286{bottom:1066.170000px;}
.y77_c01286{bottom:1074.810000px;}
.y76_c01286{bottom:1075.680000px;}
.y73_c01286{bottom:1077.405000px;}
.y74_c01286{bottom:1078.275000px;}
.y72_c01286{bottom:1080.000000px;}
.y75_c01286{bottom:1080.870000px;}
.y70_c01286{bottom:1082.595000px;}
.y71_c01286{bottom:1085.190000px;}
.y6d_c01286{bottom:1094.685000px;}
.y6e_c01286{bottom:1095.555000px;}
.y6c_c01286{bottom:1096.410000px;}
.y6b_c01286{bottom:1097.280000px;}
.y6a_c01286{bottom:1098.150000px;}
.y69_c01286{bottom:1099.005000px;}
.y68_c01286{bottom:1099.875000px;}
.y67_c01286{bottom:1101.600000px;}
.y66_c01286{bottom:1102.470000px;}
.y6f_c01286{bottom:1105.920000px;}
.y65_c01286{bottom:1114.560000px;}
.y64_c01286{bottom:1116.285000px;}
.y62_c01286{bottom:1117.155000px;}
.y61_c01286{bottom:1121.475000px;}
.y63_c01286{bottom:1122.330000px;}
.y60_c01286{bottom:1123.200000px;}
.y5f_c01286{bottom:1124.070000px;}
.y5e_c01286{bottom:1136.160000px;}
.y5d_c01286{bottom:1137.030000px;}
.y5c_c01286{bottom:1137.885000px;}
.y5a_c01286{bottom:1139.610000px;}
.y57_c01286{bottom:1142.205000px;}
.y56_c01286{bottom:1143.075000px;}
.y59_c01286{bottom:1143.930000px;}
.y58_c01286{bottom:1145.670000px;}
.y5b_c01286{bottom:1146.525000px;}
.y55_c01286{bottom:1156.035000px;}
.y54_c01286{bottom:1157.760000px;}
.y52_c01286{bottom:1159.485000px;}
.y51_c01286{bottom:1160.355000px;}
.y50_c01286{bottom:1161.210000px;}
.y53_c01286{bottom:1162.080000px;}
.y4f_c01286{bottom:1162.950000px;}
.y4e_c01286{bottom:1163.805000px;}
.y4b_c01286{bottom:1176.765000px;}
.y4a_c01286{bottom:1177.635000px;}
.y49_c01286{bottom:1178.490000px;}
.y4d_c01286{bottom:1179.360000px;}
.y48_c01286{bottom:1180.230000px;}
.y4c_c01286{bottom:1181.085000px;}
.y47_c01286{bottom:1183.680000px;}
.y45_c01286{bottom:1184.550000px;}
.y46_c01286{bottom:1188.000000px;}
.y44_c01286{bottom:1195.770000px;}
.y42_c01286{bottom:1196.640000px;}
.y41_c01286{bottom:1198.365000px;}
.y3f_c01286{bottom:1199.235000px;}
.y3e_c01286{bottom:1200.960000px;}
.y43_c01286{bottom:1201.830000px;}
.y3d_c01286{bottom:1203.555000px;}
.y40_c01286{bottom:1204.410000px;}
.y3c_c01286{bottom:1207.875000px;}
.y3b_c01286{bottom:1215.645000px;}
.y3a_c01286{bottom:1216.515000px;}
.y39_c01286{bottom:1217.370000px;}
.y36_c01286{bottom:1219.110000px;}
.y37_c01286{bottom:1219.965000px;}
.y38_c01286{bottom:1220.835000px;}
.y34_c01286{bottom:1222.560000px;}
.y33_c01286{bottom:1225.155000px;}
.y35_c01286{bottom:1226.010000px;}
.y32_c01286{bottom:1235.520000px;}
.y2f_c01286{bottom:1238.115000px;}
.y30_c01286{bottom:1239.840000px;}
.y31_c01286{bottom:1240.710000px;}
.y2a_c01286{bottom:1241.565000px;}
.y2b_c01286{bottom:1242.435000px;}
.y2c_c01286{bottom:1243.290000px;}
.y2e_c01286{bottom:1244.160000px;}
.y2d_c01286{bottom:1245.030000px;}
.y29_c01286{bottom:1257.120000px;}
.y28_c01286{bottom:1258.845000px;}
.y25_c01286{bottom:1259.715000px;}
.y27_c01286{bottom:1261.440000px;}
.y22_c01286{bottom:1263.165000px;}
.y20_c01286{bottom:1264.890000px;}
.y26_c01286{bottom:1265.760000px;}
.y23_c01286{bottom:1266.630000px;}
.y24_c01286{bottom:1267.485000px;}
.y21_c01286{bottom:1270.080000px;}
.y1f_c01286{bottom:1275.270000px;}
.y1e_c01286{bottom:1277.850000px;}
.y1d_c01286{bottom:1278.720000px;}
.y1c_c01286{bottom:1280.445000px;}
.y1a_c01286{bottom:1281.315000px;}
.y1b_c01286{bottom:1288.230000px;}
.y18_c01286{bottom:1292.550000px;}
.y19_c01286{bottom:1295.130000px;}
.y16_c01286{bottom:1298.595000px;}
.y13_c01286{bottom:1299.450000px;}
.y15_c01286{bottom:1301.190000px;}
.y17_c01286{bottom:1302.915000px;}
.y10_c01286{bottom:1303.770000px;}
.y14_c01286{bottom:1304.640000px;}
.y12_c01286{bottom:1305.510000px;}
.ye_c01286{bottom:1308.960000px;}
.yf_c01286{bottom:1309.830000px;}
.y11_c01286{bottom:1310.685000px;}
.yc_c01286{bottom:1321.920000px;}
.yd_c01286{bottom:1324.515000px;}
.ya_c01286{bottom:1325.370000px;}
.y8_c01286{bottom:1326.240000px;}
.yb_c01286{bottom:1327.965000px;}
.y9_c01286{bottom:1328.835000px;}
.y7_c01286{bottom:1329.690000px;}
.y4_c01286{bottom:1345.245000px;}
.y5_c01286{bottom:1346.115000px;}
.y3_c01286{bottom:1348.710000px;}
.y1_c01286{bottom:1353.030000px;}
.y2_c01286{bottom:1354.755000px;}
.y6_c01286{bottom:1357.350000px;}
.y239_c01286{bottom:1359.075000px;}
.y23a_c01286{bottom:1363.395000px;}
.y245_c01286{bottom:1366.845000px;}
.y244_c01286{bottom:1370.310000px;}
.y243_c01286{bottom:1378.080000px;}
.y23e_c01286{bottom:1387.590000px;}
.y23f_c01286{bottom:1399.680000px;}
.y23d_c01286{bottom:1400.550000px;}
.y242_c01286{bottom:1402.275000px;}
.y23b_c01286{bottom:1409.190000px;}
.y23c_c01286{bottom:1410.915000px;}
.y241_c01286{bottom:1435.110000px;}
.y240_c01286{bottom:1447.200000px;}
.h9_c01286{height:3.110063px;}
.h1a_c01286{height:5.399414px;}
.h19_c01286{height:6.209326px;}
.h4_c01286{height:6.530063px;}
.h7_c01286{height:9.340986px;}
.h22_c01286{height:12.418652px;}
.h20_c01286{height:15.550313px;}
.h21_c01286{height:18.681973px;}
.h3_c01286{height:21.759639px;}
.h15_c01286{height:24.891299px;}
.h23_c01286{height:27.968965px;}
.h1d_c01286{height:31.100625px;}
.hd_c01286{height:34.232285px;}
.hc_c01286{height:37.309951px;}
.h1f_c01286{height:40.441611px;}
.ha_c01286{height:43.519277px;}
.hf_c01286{height:46.650937px;}
.h13_c01286{height:49.782598px;}
.h17_c01286{height:52.860264px;}
.h14_c01286{height:55.991924px;}
.h11_c01286{height:59.069590px;}
.h10_c01286{height:62.201250px;}
.hb_c01286{height:65.332910px;}
.h2_c01286{height:68.410576px;}
.h1b_c01286{height:71.542236px;}
.h1e_c01286{height:72.581250px;}
.h16_c01286{height:74.619902px;}
.he_c01286{height:77.751563px;}
.h1c_c01286{height:80.883223px;}
.h18_c01286{height:83.960889px;}
.h8_c01286{height:87.092549px;}
.h6_c01286{height:93.301875px;}
.h25_c01286{height:96.433535px;}
.h24_c01286{height:99.511201px;}
.h5_c01286{height:102.642861px;}
.h12_c01286{height:108.852188px;}
.h1_c01286{height:1518.750000px;}
.h0_c01286{height:1518.915000px;}
.w0_c01286{width:1085.190000px;}
.w1_c01286{width:1085.250000px;}
.x0_c01286{left:0.000000px;}
.x123_c01286{left:146.880000px;}
.x8f_c01286{left:165.885000px;}
.x10a_c01286{left:167.610000px;}
.x94_c01286{left:171.930000px;}
.xfe_c01286{left:175.395000px;}
.xe8_c01286{left:179.715000px;}
.x95_c01286{left:183.165000px;}
.x124_c01286{left:184.890000px;}
.x108_c01286{left:188.355000px;}
.xa1_c01286{left:192.675000px;}
.xf6_c01286{left:195.270000px;}
.xeb_c01286{left:198.720000px;}
.x2e_c01286{left:202.170000px;}
.xd4_c01286{left:205.635000px;}
.x96_c01286{left:208.230000px;}
.x1c_c01286{left:211.680000px;}
.xce_c01286{left:215.130000px;}
.x38_c01286{left:217.725000px;}
.xec_c01286{left:219.450000px;}
.xbb_c01286{left:222.045000px;}
.x4b_c01286{left:224.640000px;}
.x55_c01286{left:227.235000px;}
.x39_c01286{left:229.830000px;}
.xb3_c01286{left:231.555000px;}
.x1_c01286{left:233.280000px;}
.xcc_c01286{left:235.005000px;}
.xf4_c01286{left:239.325000px;}
.x90_c01286{left:241.050000px;}
.x111_c01286{left:242.790000px;}
.x75_c01286{left:244.515000px;}
.xaa_c01286{left:246.240000px;}
.x97_c01286{left:248.835000px;}
.x11_c01286{left:250.560000px;}
.x1d_c01286{left:252.285000px;}
.xdb_c01286{left:254.880000px;}
.xbf_c01286{left:256.605000px;}
.x68_c01286{left:259.200000px;}
.xed_c01286{left:260.925000px;}
.x7a_c01286{left:263.520000px;}
.x100_c01286{left:265.245000px;}
.x23_c01286{left:267.840000px;}
.x4c_c01286{left:270.435000px;}
.x11b_c01286{left:272.160000px;}
.x2_c01286{left:274.755000px;}
.x7b_c01286{left:277.350000px;}
.x43_c01286{left:279.930000px;}
.x98_c01286{left:281.670000px;}
.xf7_c01286{left:283.395000px;}
.x2f_c01286{left:285.120000px;}
.xe3_c01286{left:286.845000px;}
.xdd_c01286{left:289.440000px;}
.x24_c01286{left:291.165000px;}
.x118_c01286{left:292.890000px;}
.x102_c01286{left:296.355000px;}
.x3_c01286{left:298.080000px;}
.x76_c01286{left:299.805000px;}
.xcf_c01286{left:302.400000px;}
.x6f_c01286{left:304.125000px;}
.xe9_c01286{left:305.850000px;}
.x9_c01286{left:309.315000px;}
.xc4_c01286{left:312.765000px;}
.xd9_c01286{left:314.490000px;}
.x5f_c01286{left:317.955000px;}
.x69_c01286{left:320.550000px;}
.x112_c01286{left:322.275000px;}
.xff_c01286{left:324.870000px;}
.x56_c01286{left:326.595000px;}
.x77_c01286{left:329.190000px;}
.x89_c01286{left:331.770000px;}
.x12_c01286{left:336.090000px;}
.x57_c01286{left:337.830000px;}
.xd0_c01286{left:340.410000px;}
.x8a_c01286{left:343.005000px;}
.xc5_c01286{left:344.730000px;}
.x13_c01286{left:346.470000px;}
.x4d_c01286{left:348.195000px;}
.xde_c01286{left:350.790000px;}
.x99_c01286{left:352.515000px;}
.x91_c01286{left:355.110000px;}
.xcd_c01286{left:356.835000px;}
.x7c_c01286{left:362.010000px;}
.x4_c01286{left:363.750000px;}
.x14_c01286{left:365.475000px;}
.xab_c01286{left:368.070000px;}
.xa_c01286{left:369.795000px;}
.xfc_c01286{left:371.520000px;}
.x120_c01286{left:374.115000px;}
.xb7_c01286{left:375.840000px;}
.x3a_c01286{left:377.565000px;}
.x1e_c01286{left:379.290000px;}
.xbc_c01286{left:381.030000px;}
.xee_c01286{left:382.755000px;}
.x113_c01286{left:384.480000px;}
.x58_c01286{left:387.075000px;}
.x30_c01286{left:389.670000px;}
.x60_c01286{left:391.395000px;}
.x10d_c01286{left:393.990000px;}
.xd1_c01286{left:397.440000px;}
.x10b_c01286{left:400.035000px;}
.xdf_c01286{left:401.760000px;}
.x8b_c01286{left:403.485000px;}
.xda_c01286{left:406.080000px;}
.xac_c01286{left:408.675000px;}
.x25_c01286{left:412.125000px;}
.x80_c01286{left:413.850000px;}
.xa6_c01286{left:417.315000px;}
.x15_c01286{left:419.910000px;}
.xe4_c01286{left:421.635000px;}
.x3b_c01286{left:423.360000px;}
.x1f_c01286{left:425.085000px;}
.x4e_c01286{left:426.810000px;}
.xb_c01286{left:429.405000px;}
.xe0_c01286{left:431.130000px;}
.xf8_c01286{left:432.870000px;}
.x81_c01286{left:436.320000px;}
.x9a_c01286{left:438.045000px;}
.xc_c01286{left:440.640000px;}
.xfa_c01286{left:442.365000px;}
.x10e_c01286{left:444.090000px;}
.x4f_c01286{left:445.830000px;}
.xfb_c01286{left:447.555000px;}
.x11d_c01286{left:449.280000px;}
.x26_c01286{left:451.005000px;}
.xe5_c01286{left:455.325000px;}
.x61_c01286{left:457.920000px;}
.x85_c01286{left:459.645000px;}
.xd_c01286{left:461.370000px;}
.x31_c01286{left:463.110000px;}
.xc6_c01286{left:464.835000px;}
.x27_c01286{left:468.285000px;}
.xb4_c01286{left:471.750000px;}
.xe6_c01286{left:473.475000px;}
.x44_c01286{left:475.200000px;}
.xe1_c01286{left:476.925000px;}
.xa2_c01286{left:478.650000px;}
.x3c_c01286{left:481.245000px;}
.x32_c01286{left:483.840000px;}
.xc7_c01286{left:487.290000px;}
.x45_c01286{left:492.480000px;}
.x59_c01286{left:494.205000px;}
.x20_c01286{left:497.670000px;}
.x5_c01286{left:499.395000px;}
.x50_c01286{left:501.990000px;}
.x70_c01286{left:503.715000px;}
.x9b_c01286{left:507.165000px;}
.xd5_c01286{left:509.760000px;}
.x28_c01286{left:512.355000px;}
.xbd_c01286{left:524.445000px;}
.x62_c01286{left:527.910000px;}
.x103_c01286{left:529.635000px;}
.xfd_c01286{left:532.230000px;}
.x104_c01286{left:535.680000px;}
.x86_c01286{left:537.405000px;}
.x82_c01286{left:540.000000px;}
.xe_c01286{left:542.595000px;}
.x9c_c01286{left:545.190000px;}
.x5a_c01286{left:546.915000px;}
.xb9_c01286{left:548.640000px;}
.x8c_c01286{left:551.235000px;}
.xd6_c01286{left:552.960000px;}
.x16_c01286{left:554.685000px;}
.x71_c01286{left:556.410000px;}
.x6a_c01286{left:559.005000px;}
.x33_c01286{left:561.600000px;}
.xf_c01286{left:563.325000px;}
.x92_c01286{left:565.050000px;}
.xc8_c01286{left:568.515000px;}
.xa3_c01286{left:570.240000px;}
.x93_c01286{left:571.965000px;}
.xc0_c01286{left:574.560000px;}
.x10f_c01286{left:577.155000px;}
.xb5_c01286{left:579.750000px;}
.x7d_c01286{left:584.070000px;}
.x114_c01286{left:586.650000px;}
.x106_c01286{left:591.840000px;}
.x63_c01286{left:593.565000px;}
.x3d_c01286{left:595.290000px;}
.xef_c01286{left:597.885000px;}
.xad_c01286{left:600.480000px;}
.xdc_c01286{left:602.205000px;}
.x110_c01286{left:603.930000px;}
.x51_c01286{left:605.670000px;}
.x101_c01286{left:607.395000px;}
.xa4_c01286{left:609.990000px;}
.x11f_c01286{left:611.715000px;}
.x46_c01286{left:613.440000px;}
.xf5_c01286{left:615.165000px;}
.x83_c01286{left:617.760000px;}
.x5b_c01286{left:621.210000px;}
.x29_c01286{left:623.805000px;}
.xd2_c01286{left:626.400000px;}
.xd7_c01286{left:628.125000px;}
.xea_c01286{left:629.850000px;}
.x115_c01286{left:631.590000px;}
.xbe_c01286{left:633.315000px;}
.xa5_c01286{left:635.910000px;}
.x6b_c01286{left:638.490000px;}
.xb8_c01286{left:641.085000px;}
.x3e_c01286{left:643.680000px;}
.x109_c01286{left:646.275000px;}
.x21_c01286{left:648.000000px;}
.x2a_c01286{left:651.450000px;}
.x64_c01286{left:656.640000px;}
.x78_c01286{left:659.235000px;}
.x9d_c01286{left:661.830000px;}
.x6_c01286{left:664.410000px;}
.xc1_c01286{left:668.730000px;}
.x119_c01286{left:670.470000px;}
.x7_c01286{left:673.050000px;}
.x34_c01286{left:675.645000px;}
.x47_c01286{left:679.110000px;}
.x6c_c01286{left:683.430000px;}
.xaf_c01286{left:685.155000px;}
.xe2_c01286{left:690.330000px;}
.x87_c01286{left:692.070000px;}
.xf0_c01286{left:694.650000px;}
.xa7_c01286{left:698.115000px;}
.x3f_c01286{left:700.710000px;}
.x9e_c01286{left:704.160000px;}
.x2b_c01286{left:707.610000px;}
.x11c_c01286{left:711.075000px;}
.x17_c01286{left:712.800000px;}
.x8d_c01286{left:715.395000px;}
.x5c_c01286{left:717.120000px;}
.x48_c01286{left:719.715000px;}
.x18_c01286{left:721.440000px;}
.xf9_c01286{left:723.165000px;}
.x72_c01286{left:725.760000px;}
.x52_c01286{left:727.485000px;}
.x10_c01286{left:730.080000px;}
.x121_c01286{left:732.675000px;}
.xa8_c01286{left:734.400000px;}
.xb0_c01286{left:737.850000px;}
.x79_c01286{left:740.445000px;}
.x35_c01286{left:743.910000px;}
.x65_c01286{left:746.490000px;}
.x105_c01286{left:749.085000px;}
.x7e_c01286{left:750.810000px;}
.xc9_c01286{left:752.550000px;}
.x66_c01286{left:754.275000px;}
.x19_c01286{left:756.000000px;}
.x49_c01286{left:758.595000px;}
.xd3_c01286{left:760.320000px;}
.x84_c01286{left:762.045000px;}
.x53_c01286{left:763.770000px;}
.x2c_c01286{left:768.090000px;}
.x8e_c01286{left:769.830000px;}
.x67_c01286{left:772.410000px;}
.xf1_c01286{left:775.005000px;}
.x4a_c01286{left:776.730000px;}
.x36_c01286{left:778.470000px;}
.xae_c01286{left:781.050000px;}
.x22_c01286{left:786.240000px;}
.x6d_c01286{left:787.965000px;}
.x40_c01286{left:790.560000px;}
.x9f_c01286{left:792.285000px;}
.xca_c01286{left:795.750000px;}
.x2d_c01286{left:800.070000px;}
.x54_c01286{left:803.520000px;}
.xb1_c01286{left:806.115000px;}
.x116_c01286{left:808.710000px;}
.x41_c01286{left:810.435000px;}
.x8_c01286{left:813.030000px;}
.x107_c01286{left:814.755000px;}
.x5d_c01286{left:816.480000px;}
.xa9_c01286{left:819.930000px;}
.x37_c01286{left:822.525000px;}
.x1a_c01286{left:825.120000px;}
.xb6_c01286{left:827.715000px;}
.x6e_c01286{left:829.440000px;}
.x42_c01286{left:831.165000px;}
.xc2_c01286{left:832.890000px;}
.x7f_c01286{left:834.630000px;}
.xe7_c01286{left:837.210000px;}
.x5e_c01286{left:838.950000px;}
.xa0_c01286{left:840.675000px;}
.x73_c01286{left:843.270000px;}
.x122_c01286{left:844.995000px;}
.x1b_c01286{left:846.720000px;}
.x88_c01286{left:850.170000px;}
.xc3_c01286{left:852.765000px;}
.xd8_c01286{left:855.360000px;}
.xcb_c01286{left:857.955000px;}
.x10c_c01286{left:859.680000px;}
.xb2_c01286{left:865.725000px;}
.xba_c01286{left:867.450000px;}
.xf2_c01286{left:869.190000px;}
.x126_c01286{left:873.510000px;}
.xf3_c01286{left:876.960000px;}
.x11e_c01286{left:879.555000px;}
.x125_c01286{left:882.150000px;}
.x11a_c01286{left:885.600000px;}
.x117_c01286{left:888.195000px;}
.x12a_c01286{left:906.330000px;}
.x74_c01286{left:908.070000px;}
.x12b_c01286{left:926.205000px;}
.x129_c01286{left:1011.750000px;}
.x127_c01286{left:1017.795000px;}
.x128_c01286{left:1029.030000px;}
@media print{
.v4_c01286{vertical-align:-36.853333pt;}
.v3_c01286{vertical-align:-12.266667pt;}
.v5_c01286{vertical-align:-9.226667pt;}
.v0_c01286{vertical-align:0.000000pt;}
.v1_c01286{vertical-align:3.040000pt;}
.v2_c01286{vertical-align:9.226667pt;}
.ls4_c01286{letter-spacing:0.000000pt;}
.ls2_c01286{letter-spacing:18.957760pt;}
.ls1_c01286{letter-spacing:39.218389pt;}
.ls0_c01286{letter-spacing:78.301067pt;}
.ls3_c01286{letter-spacing:95.139680pt;}
.ws3_c01286{word-spacing:-23.863253pt;}
.ws2_c01286{word-spacing:-20.316626pt;}
.ws1_c01286{word-spacing:-17.779307pt;}
.ws0_c01286{word-spacing:-13.381760pt;}
.ws5_c01286{word-spacing:0.000000pt;}
.ws4_c01286{word-spacing:19.226240pt;}
.fs3_c01286{font-size:3.072000pt;}
.fs17_c01286{font-size:5.333333pt;}
.fs2_c01286{font-size:6.133333pt;}
.fs6_c01286{font-size:9.226667pt;}
.fs1e_c01286{font-size:12.266667pt;}
.fs1c_c01286{font-size:15.360000pt;}
.fs1d_c01286{font-size:18.453333pt;}
.fs1_c01286{font-size:21.493333pt;}
.fs13_c01286{font-size:24.586667pt;}
.fs1f_c01286{font-size:27.626667pt;}
.fs1a_c01286{font-size:30.720000pt;}
.fsb_c01286{font-size:33.813333pt;}
.fsa_c01286{font-size:36.853333pt;}
.fs1b_c01286{font-size:39.946667pt;}
.fs8_c01286{font-size:42.986667pt;}
.fsd_c01286{font-size:46.080000pt;}
.fs11_c01286{font-size:49.173333pt;}
.fs15_c01286{font-size:52.213333pt;}
.fs12_c01286{font-size:55.306667pt;}
.fsf_c01286{font-size:58.346667pt;}
.fse_c01286{font-size:61.440000pt;}
.fs9_c01286{font-size:64.533333pt;}
.fs0_c01286{font-size:67.573333pt;}
.fs18_c01286{font-size:70.666667pt;}
.fs14_c01286{font-size:73.706667pt;}
.fsc_c01286{font-size:76.800000pt;}
.fs19_c01286{font-size:79.893333pt;}
.fs16_c01286{font-size:82.933333pt;}
.fs7_c01286{font-size:86.026667pt;}
.fs5_c01286{font-size:92.160000pt;}
.fs21_c01286{font-size:95.253333pt;}
.fs20_c01286{font-size:98.293333pt;}
.fs4_c01286{font-size:101.386667pt;}
.fs10_c01286{font-size:107.520000pt;}
.y0_c01286{bottom:0.000000pt;}
.y238_c01286{bottom:138.240000pt;}
.y237_c01286{bottom:142.853333pt;}
.y234_c01286{bottom:150.533333pt;}
.y235_c01286{bottom:151.293333pt;}
.y22e_c01286{bottom:152.066667pt;}
.y22f_c01286{bottom:153.600000pt;}
.y230_c01286{bottom:154.373333pt;}
.y236_c01286{bottom:155.133333pt;}
.y22d_c01286{bottom:155.906667pt;}
.y233_c01286{bottom:156.666667pt;}
.y22b_c01286{bottom:157.440000pt;}
.y232_c01286{bottom:158.213333pt;}
.y231_c01286{bottom:158.973333pt;}
.y229_c01286{bottom:159.746667pt;}
.y22a_c01286{bottom:161.280000pt;}
.y22c_c01286{bottom:163.586667pt;}
.y228_c01286{bottom:173.573333pt;}
.y227_c01286{bottom:174.333333pt;}
.y225_c01286{bottom:176.640000pt;}
.y226_c01286{bottom:177.413333pt;}
.y221_c01286{bottom:178.173333pt;}
.y223_c01286{bottom:178.946667pt;}
.y224_c01286{bottom:180.480000pt;}
.y222_c01286{bottom:182.786667pt;}
.y220_c01286{bottom:186.626667pt;}
.y21f_c01286{bottom:191.226667pt;}
.y21d_c01286{bottom:193.533333pt;}
.y21c_c01286{bottom:194.306667pt;}
.y21a_c01286{bottom:195.066667pt;}
.y21e_c01286{bottom:195.840000pt;}
.y216_c01286{bottom:196.613333pt;}
.y21b_c01286{bottom:197.373333pt;}
.y213_c01286{bottom:198.146667pt;}
.y212_c01286{bottom:198.906667pt;}
.y219_c01286{bottom:199.680000pt;}
.y211_c01286{bottom:200.453333pt;}
.y218_c01286{bottom:201.213333pt;}
.y217_c01286{bottom:203.520000pt;}
.y210_c01286{bottom:204.293333pt;}
.y215_c01286{bottom:205.053333pt;}
.y214_c01286{bottom:205.826667pt;}
.y20d_c01286{bottom:208.133333pt;}
.y209_c01286{bottom:208.893333pt;}
.y20f_c01286{bottom:209.666667pt;}
.y20e_c01286{bottom:210.426667pt;}
.y208_c01286{bottom:211.200000pt;}
.y20c_c01286{bottom:211.973333pt;}
.y20b_c01286{bottom:213.506667pt;}
.y206_c01286{bottom:214.266667pt;}
.y205_c01286{bottom:215.040000pt;}
.y204_c01286{bottom:215.813333pt;}
.y203_c01286{bottom:217.346667pt;}
.y20a_c01286{bottom:221.186667pt;}
.y202_c01286{bottom:223.493333pt;}
.y207_c01286{bottom:227.333333pt;}
.y201_c01286{bottom:228.866667pt;}
.y1ff_c01286{bottom:229.626667pt;}
.y1fe_c01286{bottom:231.173333pt;}
.y200_c01286{bottom:231.933333pt;}
.y1fd_c01286{bottom:232.706667pt;}
.y1f9_c01286{bottom:233.466667pt;}
.y1fc_c01286{bottom:234.240000pt;}
.y1fa_c01286{bottom:235.773333pt;}
.y1fb_c01286{bottom:236.546667pt;}
.y1f7_c01286{bottom:237.306667pt;}
.y1f5_c01286{bottom:238.853333pt;}
.y1f8_c01286{bottom:239.613333pt;}
.y1f6_c01286{bottom:240.386667pt;}
.y1f4_c01286{bottom:241.146667pt;}
.y1f0_c01286{bottom:242.693333pt;}
.y1f3_c01286{bottom:243.453333pt;}
.y1f2_c01286{bottom:244.226667pt;}
.y1ed_c01286{bottom:244.986667pt;}
.y1ee_c01286{bottom:245.760000pt;}
.y1ef_c01286{bottom:247.293333pt;}
.y1f1_c01286{bottom:248.066667pt;}
.y1eb_c01286{bottom:248.826667pt;}
.y1ec_c01286{bottom:251.133333pt;}
.y1ea_c01286{bottom:251.906667pt;}
.y1e3_c01286{bottom:252.666667pt;}
.y1e7_c01286{bottom:253.440000pt;}
.y1e4_c01286{bottom:254.213333pt;}
.y1e8_c01286{bottom:255.746667pt;}
.y1e6_c01286{bottom:256.506667pt;}
.y1e5_c01286{bottom:257.280000pt;}
.y1e0_c01286{bottom:258.053333pt;}
.y1e9_c01286{bottom:258.813333pt;}
.y1de_c01286{bottom:259.586667pt;}
.y1dc_c01286{bottom:260.346667pt;}
.y1df_c01286{bottom:261.120000pt;}
.y1e2_c01286{bottom:261.893333pt;}
.y1e1_c01286{bottom:263.426667pt;}
.y1dd_c01286{bottom:264.186667pt;}
.y1d9_c01286{bottom:264.960000pt;}
.y1da_c01286{bottom:265.733333pt;}
.y1db_c01286{bottom:266.493333pt;}
.y1d8_c01286{bottom:268.800000pt;}
.y1d6_c01286{bottom:270.333333pt;}
.y1d5_c01286{bottom:271.106667pt;}
.y1d2_c01286{bottom:274.173333pt;}
.y1d7_c01286{bottom:274.946667pt;}
.y1d1_c01286{bottom:275.706667pt;}
.y1d4_c01286{bottom:276.480000pt;}
.y1d3_c01286{bottom:277.253333pt;}
.y1d0_c01286{bottom:282.626667pt;}
.y1cf_c01286{bottom:283.386667pt;}
.y1ce_c01286{bottom:287.226667pt;}
.y1cd_c01286{bottom:288.000000pt;}
.y1cb_c01286{bottom:293.373333pt;}
.y1cc_c01286{bottom:294.146667pt;}
.y1ca_c01286{bottom:300.293333pt;}
.y1c8_c01286{bottom:303.360000pt;}
.y1c5_c01286{bottom:304.133333pt;}
.y1c9_c01286{bottom:304.893333pt;}
.y1c4_c01286{bottom:305.666667pt;}
.y1c6_c01286{bottom:307.200000pt;}
.y1c7_c01286{bottom:307.973333pt;}
.y1c1_c01286{bottom:309.506667pt;}
.y1c2_c01286{bottom:311.040000pt;}
.y1c3_c01286{bottom:312.573333pt;}
.y1c0_c01286{bottom:314.106667pt;}
.y1bf_c01286{bottom:318.720000pt;}
.y1be_c01286{bottom:322.560000pt;}
.y1bd_c01286{bottom:323.333333pt;}
.y1bc_c01286{bottom:324.093333pt;}
.y1b9_c01286{bottom:324.866667pt;}
.y1bb_c01286{bottom:325.626667pt;}
.y1ba_c01286{bottom:329.466667pt;}
.y1b8_c01286{bottom:331.013333pt;}
.y1b7_c01286{bottom:338.693333pt;}
.y1b6_c01286{bottom:339.453333pt;}
.y1b2_c01286{bottom:342.533333pt;}
.y1b1_c01286{bottom:343.293333pt;}
.y1b5_c01286{bottom:345.600000pt;}
.y1b0_c01286{bottom:347.133333pt;}
.y1b4_c01286{bottom:351.746667pt;}
.y1b3_c01286{bottom:354.813333pt;}
.y1ad_c01286{bottom:357.893333pt;}
.y1ab_c01286{bottom:359.426667pt;}
.y1aa_c01286{bottom:361.733333pt;}
.y1ac_c01286{bottom:362.493333pt;}
.y1a9_c01286{bottom:363.266667pt;}
.y1af_c01286{bottom:364.026667pt;}
.y1a4_c01286{bottom:367.106667pt;}
.y1a8_c01286{bottom:367.866667pt;}
.y1ae_c01286{bottom:370.173333pt;}
.y1a5_c01286{bottom:371.706667pt;}
.y1a7_c01286{bottom:372.480000pt;}
.y1a2_c01286{bottom:373.253333pt;}
.y1a1_c01286{bottom:374.013333pt;}
.y1a0_c01286{bottom:374.786667pt;}
.y19f_c01286{bottom:376.320000pt;}
.y1a3_c01286{bottom:377.093333pt;}
.y1a6_c01286{bottom:377.853333pt;}
.y19d_c01286{bottom:379.386667pt;}
.y19c_c01286{bottom:381.693333pt;}
.y19e_c01286{bottom:382.466667pt;}
.y19b_c01286{bottom:393.986667pt;}
.y199_c01286{bottom:395.520000pt;}
.y198_c01286{bottom:396.293333pt;}
.y196_c01286{bottom:397.826667pt;}
.y195_c01286{bottom:398.586667pt;}
.y194_c01286{bottom:400.133333pt;}
.y197_c01286{bottom:400.893333pt;}
.y19a_c01286{bottom:401.666667pt;}
.y192_c01286{bottom:412.413333pt;}
.y193_c01286{bottom:413.946667pt;}
.y18e_c01286{bottom:416.253333pt;}
.y18a_c01286{bottom:417.026667pt;}
.y18c_c01286{bottom:417.786667pt;}
.y191_c01286{bottom:418.560000pt;}
.y190_c01286{bottom:420.093333pt;}
.y18d_c01286{bottom:420.866667pt;}
.y18b_c01286{bottom:421.626667pt;}
.y189_c01286{bottom:423.173333pt;}
.y18f_c01286{bottom:423.933333pt;}
.y187_c01286{bottom:425.466667pt;}
.y188_c01286{bottom:428.546667pt;}
.y186_c01286{bottom:429.306667pt;}
.y185_c01286{bottom:432.386667pt;}
.y183_c01286{bottom:433.146667pt;}
.y182_c01286{bottom:434.693333pt;}
.y181_c01286{bottom:435.453333pt;}
.y184_c01286{bottom:439.293333pt;}
.y180_c01286{bottom:447.746667pt;}
.y17f_c01286{bottom:450.053333pt;}
.y17c_c01286{bottom:450.813333pt;}
.y17d_c01286{bottom:451.586667pt;}
.y17e_c01286{bottom:453.120000pt;}
.y179_c01286{bottom:453.893333pt;}
.y17b_c01286{bottom:454.653333pt;}
.y17a_c01286{bottom:455.426667pt;}
.y176_c01286{bottom:456.186667pt;}
.y178_c01286{bottom:457.733333pt;}
.y177_c01286{bottom:461.573333pt;}
.y172_c01286{bottom:464.640000pt;}
.y170_c01286{bottom:466.173333pt;}
.y16f_c01286{bottom:466.946667pt;}
.y174_c01286{bottom:467.706667pt;}
.y16e_c01286{bottom:468.480000pt;}
.y16c_c01286{bottom:470.013333pt;}
.y16b_c01286{bottom:471.546667pt;}
.y175_c01286{bottom:472.320000pt;}
.y171_c01286{bottom:473.093333pt;}
.y16d_c01286{bottom:473.853333pt;}
.y173_c01286{bottom:474.626667pt;}
.y167_c01286{bottom:485.373333pt;}
.y169_c01286{bottom:486.146667pt;}
.y16a_c01286{bottom:488.453333pt;}
.y168_c01286{bottom:489.986667pt;}
.y165_c01286{bottom:490.746667pt;}
.y166_c01286{bottom:491.520000pt;}
.y164_c01286{bottom:492.293333pt;}
.y161_c01286{bottom:493.053333pt;}
.y160_c01286{bottom:493.826667pt;}
.y163_c01286{bottom:494.586667pt;}
.y162_c01286{bottom:495.360000pt;}
.y15f_c01286{bottom:500.733333pt;}
.y15e_c01286{bottom:504.573333pt;}
.y15c_c01286{bottom:506.106667pt;}
.y15b_c01286{bottom:507.653333pt;}
.y158_c01286{bottom:508.413333pt;}
.y159_c01286{bottom:509.186667pt;}
.y15d_c01286{bottom:509.946667pt;}
.y157_c01286{bottom:510.720000pt;}
.y15a_c01286{bottom:511.493333pt;}
.y154_c01286{bottom:520.706667pt;}
.y156_c01286{bottom:523.013333pt;}
.y155_c01286{bottom:523.773333pt;}
.y150_c01286{bottom:525.306667pt;}
.y153_c01286{bottom:526.080000pt;}
.y14f_c01286{bottom:527.613333pt;}
.y151_c01286{bottom:528.386667pt;}
.y14e_c01286{bottom:531.453333pt;}
.y14c_c01286{bottom:537.600000pt;}
.y152_c01286{bottom:538.373333pt;}
.y14a_c01286{bottom:541.440000pt;}
.y14d_c01286{bottom:542.973333pt;}
.y149_c01286{bottom:544.506667pt;}
.y14b_c01286{bottom:545.280000pt;}
.y148_c01286{bottom:546.053333pt;}
.y147_c01286{bottom:549.893333pt;}
.y145_c01286{bottom:556.800000pt;}
.y144_c01286{bottom:559.106667pt;}
.y143_c01286{bottom:559.866667pt;}
.y146_c01286{bottom:560.640000pt;}
.y140_c01286{bottom:561.413333pt;}
.y13c_c01286{bottom:562.946667pt;}
.y13d_c01286{bottom:563.706667pt;}
.y142_c01286{bottom:566.013333pt;}
.y141_c01286{bottom:569.853333pt;}
.y13e_c01286{bottom:571.386667pt;}
.y13f_c01286{bottom:572.933333pt;}
.y13b_c01286{bottom:573.693333pt;}
.y13a_c01286{bottom:575.226667pt;}
.y138_c01286{bottom:577.533333pt;}
.y137_c01286{bottom:579.066667pt;}
.y135_c01286{bottom:579.840000pt;}
.y139_c01286{bottom:580.613333pt;}
.y132_c01286{bottom:581.373333pt;}
.y133_c01286{bottom:582.146667pt;}
.y131_c01286{bottom:582.906667pt;}
.y136_c01286{bottom:583.680000pt;}
.y134_c01286{bottom:585.213333pt;}
.y130_c01286{bottom:590.586667pt;}
.y12e_c01286{bottom:593.666667pt;}
.y12c_c01286{bottom:595.200000pt;}
.y12f_c01286{bottom:596.733333pt;}
.y12a_c01286{bottom:598.266667pt;}
.y12d_c01286{bottom:599.040000pt;}
.y12b_c01286{bottom:600.573333pt;}
.y129_c01286{bottom:602.106667pt;}
.y246_c01286{bottom:602.880000pt;}
.y128_c01286{bottom:603.653333pt;}
.y127_c01286{bottom:604.413333pt;}
.y125_c01286{bottom:608.253333pt;}
.y123_c01286{bottom:610.560000pt;}
.y126_c01286{bottom:612.093333pt;}
.y124_c01286{bottom:615.173333pt;}
.y11f_c01286{bottom:615.933333pt;}
.y11e_c01286{bottom:616.706667pt;}
.y121_c01286{bottom:617.466667pt;}
.y122_c01286{bottom:618.240000pt;}
.y120_c01286{bottom:619.773333pt;}
.y11c_c01286{bottom:628.986667pt;}
.y11b_c01286{bottom:629.760000pt;}
.y117_c01286{bottom:632.066667pt;}
.y11d_c01286{bottom:633.600000pt;}
.y119_c01286{bottom:634.373333pt;}
.y116_c01286{bottom:635.133333pt;}
.y11a_c01286{bottom:635.906667pt;}
.y118_c01286{bottom:636.666667pt;}
.y114_c01286{bottom:639.746667pt;}
.y115_c01286{bottom:640.506667pt;}
.y113_c01286{bottom:644.346667pt;}
.y112_c01286{bottom:645.120000pt;}
.y111_c01286{bottom:647.426667pt;}
.y110_c01286{bottom:648.186667pt;}
.y10f_c01286{bottom:651.266667pt;}
.y10c_c01286{bottom:652.026667pt;}
.y10d_c01286{bottom:652.800000pt;}
.y10e_c01286{bottom:656.640000pt;}
.y10b_c01286{bottom:658.946667pt;}
.y109_c01286{bottom:663.546667pt;}
.y10a_c01286{bottom:667.386667pt;}
.y106_c01286{bottom:668.160000pt;}
.y105_c01286{bottom:668.933333pt;}
.y108_c01286{bottom:669.693333pt;}
.y107_c01286{bottom:670.466667pt;}
.y104_c01286{bottom:671.226667pt;}
.yff_c01286{bottom:672.773333pt;}
.yfb_c01286{bottom:675.066667pt;}
.y103_c01286{bottom:675.840000pt;}
.yfa_c01286{bottom:676.613333pt;}
.y101_c01286{bottom:677.373333pt;}
.y100_c01286{bottom:678.146667pt;}
.yfd_c01286{bottom:678.906667pt;}
.y102_c01286{bottom:679.680000pt;}
.yfe_c01286{bottom:680.453333pt;}
.yf8_c01286{bottom:683.520000pt;}
.yf9_c01286{bottom:685.053333pt;}
.yfc_c01286{bottom:685.826667pt;}
.yf6_c01286{bottom:686.586667pt;}
.yf7_c01286{bottom:689.666667pt;}
.yf4_c01286{bottom:691.200000pt;}
.yf5_c01286{bottom:692.733333pt;}
.yf3_c01286{bottom:695.040000pt;}
.yf0_c01286{bottom:703.493333pt;}
.yf1_c01286{bottom:706.560000pt;}
.yee_c01286{bottom:707.333333pt;}
.yef_c01286{bottom:708.866667pt;}
.yec_c01286{bottom:711.173333pt;}
.yf2_c01286{bottom:711.933333pt;}
.yed_c01286{bottom:713.466667pt;}
.yeb_c01286{bottom:720.386667pt;}
.yea_c01286{bottom:723.453333pt;}
.ye7_c01286{bottom:724.226667pt;}
.ye6_c01286{bottom:724.986667pt;}
.ye9_c01286{bottom:726.533333pt;}
.ye8_c01286{bottom:728.066667pt;}
.ye5_c01286{bottom:731.133333pt;}
.ye4_c01286{bottom:736.506667pt;}
.ye2_c01286{bottom:738.053333pt;}
.ydf_c01286{bottom:739.586667pt;}
.ye3_c01286{bottom:740.346667pt;}
.ye0_c01286{bottom:741.893333pt;}
.ydd_c01286{bottom:742.653333pt;}
.ye1_c01286{bottom:744.186667pt;}
.yde_c01286{bottom:746.493333pt;}
.ydc_c01286{bottom:747.266667pt;}
.ydb_c01286{bottom:748.800000pt;}
.yd9_c01286{bottom:756.480000pt;}
.yd8_c01286{bottom:758.013333pt;}
.yda_c01286{bottom:758.786667pt;}
.yd6_c01286{bottom:759.546667pt;}
.yd5_c01286{bottom:760.320000pt;}
.yd4_c01286{bottom:761.853333pt;}
.yd7_c01286{bottom:762.626667pt;}
.yd2_c01286{bottom:765.693333pt;}
.yd1_c01286{bottom:772.613333pt;}
.yd3_c01286{bottom:773.373333pt;}
.ycd_c01286{bottom:775.680000pt;}
.yce_c01286{bottom:776.453333pt;}
.yd0_c01286{bottom:777.213333pt;}
.ycf_c01286{bottom:777.986667pt;}
.ycc_c01286{bottom:778.746667pt;}
.ycb_c01286{bottom:782.586667pt;}
.yca_c01286{bottom:793.346667pt;}
.yc8_c01286{bottom:794.106667pt;}
.yc9_c01286{bottom:794.880000pt;}
.yc4_c01286{bottom:795.653333pt;}
.yc7_c01286{bottom:796.413333pt;}
.yc3_c01286{bottom:797.186667pt;}
.yc6_c01286{bottom:798.720000pt;}
.yc5_c01286{bottom:801.026667pt;}
.yc2_c01286{bottom:809.466667pt;}
.ybe_c01286{bottom:811.773333pt;}
.ybb_c01286{bottom:813.306667pt;}
.yc1_c01286{bottom:814.080000pt;}
.yba_c01286{bottom:814.853333pt;}
.yc0_c01286{bottom:815.613333pt;}
.ybf_c01286{bottom:816.386667pt;}
.ybd_c01286{bottom:817.146667pt;}
.ybc_c01286{bottom:818.693333pt;}
.yb9_c01286{bottom:828.666667pt;}
.yb7_c01286{bottom:829.440000pt;}
.yb3_c01286{bottom:830.973333pt;}
.yb5_c01286{bottom:831.746667pt;}
.yb2_c01286{bottom:832.506667pt;}
.yb8_c01286{bottom:833.280000pt;}
.yb1_c01286{bottom:834.813333pt;}
.yb6_c01286{bottom:835.586667pt;}
.yb4_c01286{bottom:836.346667pt;}
.yb0_c01286{bottom:840.960000pt;}
.yaf_c01286{bottom:845.573333pt;}
.yae_c01286{bottom:848.640000pt;}
.yab_c01286{bottom:849.413333pt;}
.ya7_c01286{bottom:850.173333pt;}
.ya9_c01286{bottom:850.946667pt;}
.ya8_c01286{bottom:851.706667pt;}
.yad_c01286{bottom:852.480000pt;}
.ya2_c01286{bottom:853.253333pt;}
.yaa_c01286{bottom:854.013333pt;}
.ya4_c01286{bottom:854.786667pt;}
.ya6_c01286{bottom:856.320000pt;}
.ya5_c01286{bottom:857.093333pt;}
.ya3_c01286{bottom:857.853333pt;}
.yac_c01286{bottom:860.160000pt;}
.y9f_c01286{bottom:865.533333pt;}
.y9e_c01286{bottom:866.306667pt;}
.ya1_c01286{bottom:867.840000pt;}
.ya0_c01286{bottom:869.373333pt;}
.y9c_c01286{bottom:870.146667pt;}
.y9b_c01286{bottom:870.906667pt;}
.y9a_c01286{bottom:871.680000pt;}
.y98_c01286{bottom:872.453333pt;}
.y99_c01286{bottom:873.213333pt;}
.y9d_c01286{bottom:874.746667pt;}
.y97_c01286{bottom:880.893333pt;}
.y92_c01286{bottom:884.733333pt;}
.y94_c01286{bottom:886.266667pt;}
.y96_c01286{bottom:887.040000pt;}
.y8f_c01286{bottom:887.813333pt;}
.y95_c01286{bottom:888.573333pt;}
.y91_c01286{bottom:889.346667pt;}
.y90_c01286{bottom:892.413333pt;}
.y93_c01286{bottom:895.493333pt;}
.y8d_c01286{bottom:900.093333pt;}
.y8e_c01286{bottom:901.626667pt;}
.y8a_c01286{bottom:902.400000pt;}
.y8b_c01286{bottom:903.173333pt;}
.y89_c01286{bottom:903.933333pt;}
.y88_c01286{bottom:906.240000pt;}
.y8c_c01286{bottom:907.013333pt;}
.y87_c01286{bottom:909.306667pt;}
.y86_c01286{bottom:916.226667pt;}
.y85_c01286{bottom:919.293333pt;}
.y84_c01286{bottom:920.066667pt;}
.y83_c01286{bottom:921.600000pt;}
.y82_c01286{bottom:923.133333pt;}
.y81_c01286{bottom:923.906667pt;}
.y80_c01286{bottom:936.186667pt;}
.y7f_c01286{bottom:936.960000pt;}
.y7b_c01286{bottom:940.800000pt;}
.y7c_c01286{bottom:941.573333pt;}
.y79_c01286{bottom:942.333333pt;}
.y7a_c01286{bottom:943.106667pt;}
.y78_c01286{bottom:943.866667pt;}
.y7e_c01286{bottom:944.640000pt;}
.y7d_c01286{bottom:947.706667pt;}
.y77_c01286{bottom:955.386667pt;}
.y76_c01286{bottom:956.160000pt;}
.y73_c01286{bottom:957.693333pt;}
.y74_c01286{bottom:958.466667pt;}
.y72_c01286{bottom:960.000000pt;}
.y75_c01286{bottom:960.773333pt;}
.y70_c01286{bottom:962.306667pt;}
.y71_c01286{bottom:964.613333pt;}
.y6d_c01286{bottom:973.053333pt;}
.y6e_c01286{bottom:973.826667pt;}
.y6c_c01286{bottom:974.586667pt;}
.y6b_c01286{bottom:975.360000pt;}
.y6a_c01286{bottom:976.133333pt;}
.y69_c01286{bottom:976.893333pt;}
.y68_c01286{bottom:977.666667pt;}
.y67_c01286{bottom:979.200000pt;}
.y66_c01286{bottom:979.973333pt;}
.y6f_c01286{bottom:983.040000pt;}
.y65_c01286{bottom:990.720000pt;}
.y64_c01286{bottom:992.253333pt;}
.y62_c01286{bottom:993.026667pt;}
.y61_c01286{bottom:996.866667pt;}
.y63_c01286{bottom:997.626667pt;}
.y60_c01286{bottom:998.400000pt;}
.y5f_c01286{bottom:999.173333pt;}
.y5e_c01286{bottom:1009.920000pt;}
.y5d_c01286{bottom:1010.693333pt;}
.y5c_c01286{bottom:1011.453333pt;}
.y5a_c01286{bottom:1012.986667pt;}
.y57_c01286{bottom:1015.293333pt;}
.y56_c01286{bottom:1016.066667pt;}
.y59_c01286{bottom:1016.826667pt;}
.y58_c01286{bottom:1018.373333pt;}
.y5b_c01286{bottom:1019.133333pt;}
.y55_c01286{bottom:1027.586667pt;}
.y54_c01286{bottom:1029.120000pt;}
.y52_c01286{bottom:1030.653333pt;}
.y51_c01286{bottom:1031.426667pt;}
.y50_c01286{bottom:1032.186667pt;}
.y53_c01286{bottom:1032.960000pt;}
.y4f_c01286{bottom:1033.733333pt;}
.y4e_c01286{bottom:1034.493333pt;}
.y4b_c01286{bottom:1046.013333pt;}
.y4a_c01286{bottom:1046.786667pt;}
.y49_c01286{bottom:1047.546667pt;}
.y4d_c01286{bottom:1048.320000pt;}
.y48_c01286{bottom:1049.093333pt;}
.y4c_c01286{bottom:1049.853333pt;}
.y47_c01286{bottom:1052.160000pt;}
.y45_c01286{bottom:1052.933333pt;}
.y46_c01286{bottom:1056.000000pt;}
.y44_c01286{bottom:1062.906667pt;}
.y42_c01286{bottom:1063.680000pt;}
.y41_c01286{bottom:1065.213333pt;}
.y3f_c01286{bottom:1065.986667pt;}
.y3e_c01286{bottom:1067.520000pt;}
.y43_c01286{bottom:1068.293333pt;}
.y3d_c01286{bottom:1069.826667pt;}
.y40_c01286{bottom:1070.586667pt;}
.y3c_c01286{bottom:1073.666667pt;}
.y3b_c01286{bottom:1080.573333pt;}
.y3a_c01286{bottom:1081.346667pt;}
.y39_c01286{bottom:1082.106667pt;}
.y36_c01286{bottom:1083.653333pt;}
.y37_c01286{bottom:1084.413333pt;}
.y38_c01286{bottom:1085.186667pt;}
.y34_c01286{bottom:1086.720000pt;}
.y33_c01286{bottom:1089.026667pt;}
.y35_c01286{bottom:1089.786667pt;}
.y32_c01286{bottom:1098.240000pt;}
.y2f_c01286{bottom:1100.546667pt;}
.y30_c01286{bottom:1102.080000pt;}
.y31_c01286{bottom:1102.853333pt;}
.y2a_c01286{bottom:1103.613333pt;}
.y2b_c01286{bottom:1104.386667pt;}
.y2c_c01286{bottom:1105.146667pt;}
.y2e_c01286{bottom:1105.920000pt;}
.y2d_c01286{bottom:1106.693333pt;}
.y29_c01286{bottom:1117.440000pt;}
.y28_c01286{bottom:1118.973333pt;}
.y25_c01286{bottom:1119.746667pt;}
.y27_c01286{bottom:1121.280000pt;}
.y22_c01286{bottom:1122.813333pt;}
.y20_c01286{bottom:1124.346667pt;}
.y26_c01286{bottom:1125.120000pt;}
.y23_c01286{bottom:1125.893333pt;}
.y24_c01286{bottom:1126.653333pt;}
.y21_c01286{bottom:1128.960000pt;}
.y1f_c01286{bottom:1133.573333pt;}
.y1e_c01286{bottom:1135.866667pt;}
.y1d_c01286{bottom:1136.640000pt;}
.y1c_c01286{bottom:1138.173333pt;}
.y1a_c01286{bottom:1138.946667pt;}
.y1b_c01286{bottom:1145.093333pt;}
.y18_c01286{bottom:1148.933333pt;}
.y19_c01286{bottom:1151.226667pt;}
.y16_c01286{bottom:1154.306667pt;}
.y13_c01286{bottom:1155.066667pt;}
.y15_c01286{bottom:1156.613333pt;}
.y17_c01286{bottom:1158.146667pt;}
.y10_c01286{bottom:1158.906667pt;}
.y14_c01286{bottom:1159.680000pt;}
.y12_c01286{bottom:1160.453333pt;}
.ye_c01286{bottom:1163.520000pt;}
.yf_c01286{bottom:1164.293333pt;}
.y11_c01286{bottom:1165.053333pt;}
.yc_c01286{bottom:1175.040000pt;}
.yd_c01286{bottom:1177.346667pt;}
.ya_c01286{bottom:1178.106667pt;}
.y8_c01286{bottom:1178.880000pt;}
.yb_c01286{bottom:1180.413333pt;}
.y9_c01286{bottom:1181.186667pt;}
.y7_c01286{bottom:1181.946667pt;}
.y4_c01286{bottom:1195.773333pt;}
.y5_c01286{bottom:1196.546667pt;}
.y3_c01286{bottom:1198.853333pt;}
.y1_c01286{bottom:1202.693333pt;}
.y2_c01286{bottom:1204.226667pt;}
.y6_c01286{bottom:1206.533333pt;}
.y239_c01286{bottom:1208.066667pt;}
.y23a_c01286{bottom:1211.906667pt;}
.y245_c01286{bottom:1214.973333pt;}
.y244_c01286{bottom:1218.053333pt;}
.y243_c01286{bottom:1224.960000pt;}
.y23e_c01286{bottom:1233.413333pt;}
.y23f_c01286{bottom:1244.160000pt;}
.y23d_c01286{bottom:1244.933333pt;}
.y242_c01286{bottom:1246.466667pt;}
.y23b_c01286{bottom:1252.613333pt;}
.y23c_c01286{bottom:1254.146667pt;}
.y241_c01286{bottom:1275.653333pt;}
.y240_c01286{bottom:1286.400000pt;}
.h9_c01286{height:2.764500pt;}
.h1a_c01286{height:4.799479pt;}
.h19_c01286{height:5.519401pt;}
.h4_c01286{height:5.804500pt;}
.h7_c01286{height:8.303099pt;}
.h22_c01286{height:11.038802pt;}
.h20_c01286{height:13.822500pt;}
.h21_c01286{height:16.606198pt;}
.h3_c01286{height:19.341901pt;}
.h15_c01286{height:22.125599pt;}
.h23_c01286{height:24.861302pt;}
.h1d_c01286{height:27.645000pt;}
.hd_c01286{height:30.428698pt;}
.hc_c01286{height:33.164401pt;}
.h1f_c01286{height:35.948099pt;}
.ha_c01286{height:38.683802pt;}
.hf_c01286{height:41.467500pt;}
.h13_c01286{height:44.251198pt;}
.h17_c01286{height:46.986901pt;}
.h14_c01286{height:49.770599pt;}
.h11_c01286{height:52.506302pt;}
.h10_c01286{height:55.290000pt;}
.hb_c01286{height:58.073698pt;}
.h2_c01286{height:60.809401pt;}
.h1b_c01286{height:63.593099pt;}
.h1e_c01286{height:64.516667pt;}
.h16_c01286{height:66.328802pt;}
.he_c01286{height:69.112500pt;}
.h1c_c01286{height:71.896198pt;}
.h18_c01286{height:74.631901pt;}
.h8_c01286{height:77.415599pt;}
.h6_c01286{height:82.935000pt;}
.h25_c01286{height:85.718698pt;}
.h24_c01286{height:88.454401pt;}
.h5_c01286{height:91.238099pt;}
.h12_c01286{height:96.757500pt;}
.h1_c01286{height:1350.000000pt;}
.h0_c01286{height:1350.146667pt;}
.w0_c01286{width:964.613333pt;}
.w1_c01286{width:964.666667pt;}
.x0_c01286{left:0.000000pt;}
.x123_c01286{left:130.560000pt;}
.x8f_c01286{left:147.453333pt;}
.x10a_c01286{left:148.986667pt;}
.x94_c01286{left:152.826667pt;}
.xfe_c01286{left:155.906667pt;}
.xe8_c01286{left:159.746667pt;}
.x95_c01286{left:162.813333pt;}
.x124_c01286{left:164.346667pt;}
.x108_c01286{left:167.426667pt;}
.xa1_c01286{left:171.266667pt;}
.xf6_c01286{left:173.573333pt;}
.xeb_c01286{left:176.640000pt;}
.x2e_c01286{left:179.706667pt;}
.xd4_c01286{left:182.786667pt;}
.x96_c01286{left:185.093333pt;}
.x1c_c01286{left:188.160000pt;}
.xce_c01286{left:191.226667pt;}
.x38_c01286{left:193.533333pt;}
.xec_c01286{left:195.066667pt;}
.xbb_c01286{left:197.373333pt;}
.x4b_c01286{left:199.680000pt;}
.x55_c01286{left:201.986667pt;}
.x39_c01286{left:204.293333pt;}
.xb3_c01286{left:205.826667pt;}
.x1_c01286{left:207.360000pt;}
.xcc_c01286{left:208.893333pt;}
.xf4_c01286{left:212.733333pt;}
.x90_c01286{left:214.266667pt;}
.x111_c01286{left:215.813333pt;}
.x75_c01286{left:217.346667pt;}
.xaa_c01286{left:218.880000pt;}
.x97_c01286{left:221.186667pt;}
.x11_c01286{left:222.720000pt;}
.x1d_c01286{left:224.253333pt;}
.xdb_c01286{left:226.560000pt;}
.xbf_c01286{left:228.093333pt;}
.x68_c01286{left:230.400000pt;}
.xed_c01286{left:231.933333pt;}
.x7a_c01286{left:234.240000pt;}
.x100_c01286{left:235.773333pt;}
.x23_c01286{left:238.080000pt;}
.x4c_c01286{left:240.386667pt;}
.x11b_c01286{left:241.920000pt;}
.x2_c01286{left:244.226667pt;}
.x7b_c01286{left:246.533333pt;}
.x43_c01286{left:248.826667pt;}
.x98_c01286{left:250.373333pt;}
.xf7_c01286{left:251.906667pt;}
.x2f_c01286{left:253.440000pt;}
.xe3_c01286{left:254.973333pt;}
.xdd_c01286{left:257.280000pt;}
.x24_c01286{left:258.813333pt;}
.x118_c01286{left:260.346667pt;}
.x102_c01286{left:263.426667pt;}
.x3_c01286{left:264.960000pt;}
.x76_c01286{left:266.493333pt;}
.xcf_c01286{left:268.800000pt;}
.x6f_c01286{left:270.333333pt;}
.xe9_c01286{left:271.866667pt;}
.x9_c01286{left:274.946667pt;}
.xc4_c01286{left:278.013333pt;}
.xd9_c01286{left:279.546667pt;}
.x5f_c01286{left:282.626667pt;}
.x69_c01286{left:284.933333pt;}
.x112_c01286{left:286.466667pt;}
.xff_c01286{left:288.773333pt;}
.x56_c01286{left:290.306667pt;}
.x77_c01286{left:292.613333pt;}
.x89_c01286{left:294.906667pt;}
.x12_c01286{left:298.746667pt;}
.x57_c01286{left:300.293333pt;}
.xd0_c01286{left:302.586667pt;}
.x8a_c01286{left:304.893333pt;}
.xc5_c01286{left:306.426667pt;}
.x13_c01286{left:307.973333pt;}
.x4d_c01286{left:309.506667pt;}
.xde_c01286{left:311.813333pt;}
.x99_c01286{left:313.346667pt;}
.x91_c01286{left:315.653333pt;}
.xcd_c01286{left:317.186667pt;}
.x7c_c01286{left:321.786667pt;}
.x4_c01286{left:323.333333pt;}
.x14_c01286{left:324.866667pt;}
.xab_c01286{left:327.173333pt;}
.xa_c01286{left:328.706667pt;}
.xfc_c01286{left:330.240000pt;}
.x120_c01286{left:332.546667pt;}
.xb7_c01286{left:334.080000pt;}
.x3a_c01286{left:335.613333pt;}
.x1e_c01286{left:337.146667pt;}
.xbc_c01286{left:338.693333pt;}
.xee_c01286{left:340.226667pt;}
.x113_c01286{left:341.760000pt;}
.x58_c01286{left:344.066667pt;}
.x30_c01286{left:346.373333pt;}
.x60_c01286{left:347.906667pt;}
.x10d_c01286{left:350.213333pt;}
.xd1_c01286{left:353.280000pt;}
.x10b_c01286{left:355.586667pt;}
.xdf_c01286{left:357.120000pt;}
.x8b_c01286{left:358.653333pt;}
.xda_c01286{left:360.960000pt;}
.xac_c01286{left:363.266667pt;}
.x25_c01286{left:366.333333pt;}
.x80_c01286{left:367.866667pt;}
.xa6_c01286{left:370.946667pt;}
.x15_c01286{left:373.253333pt;}
.xe4_c01286{left:374.786667pt;}
.x3b_c01286{left:376.320000pt;}
.x1f_c01286{left:377.853333pt;}
.x4e_c01286{left:379.386667pt;}
.xb_c01286{left:381.693333pt;}
.xe0_c01286{left:383.226667pt;}
.xf8_c01286{left:384.773333pt;}
.x81_c01286{left:387.840000pt;}
.x9a_c01286{left:389.373333pt;}
.xc_c01286{left:391.680000pt;}
.xfa_c01286{left:393.213333pt;}
.x10e_c01286{left:394.746667pt;}
.x4f_c01286{left:396.293333pt;}
.xfb_c01286{left:397.826667pt;}
.x11d_c01286{left:399.360000pt;}
.x26_c01286{left:400.893333pt;}
.xe5_c01286{left:404.733333pt;}
.x61_c01286{left:407.040000pt;}
.x85_c01286{left:408.573333pt;}
.xd_c01286{left:410.106667pt;}
.x31_c01286{left:411.653333pt;}
.xc6_c01286{left:413.186667pt;}
.x27_c01286{left:416.253333pt;}
.xb4_c01286{left:419.333333pt;}
.xe6_c01286{left:420.866667pt;}
.x44_c01286{left:422.400000pt;}
.xe1_c01286{left:423.933333pt;}
.xa2_c01286{left:425.466667pt;}
.x3c_c01286{left:427.773333pt;}
.x32_c01286{left:430.080000pt;}
.xc7_c01286{left:433.146667pt;}
.x45_c01286{left:437.760000pt;}
.x59_c01286{left:439.293333pt;}
.x20_c01286{left:442.373333pt;}
.x5_c01286{left:443.906667pt;}
.x50_c01286{left:446.213333pt;}
.x70_c01286{left:447.746667pt;}
.x9b_c01286{left:450.813333pt;}
.xd5_c01286{left:453.120000pt;}
.x28_c01286{left:455.426667pt;}
.xbd_c01286{left:466.173333pt;}
.x62_c01286{left:469.253333pt;}
.x103_c01286{left:470.786667pt;}
.xfd_c01286{left:473.093333pt;}
.x104_c01286{left:476.160000pt;}
.x86_c01286{left:477.693333pt;}
.x82_c01286{left:480.000000pt;}
.xe_c01286{left:482.306667pt;}
.x9c_c01286{left:484.613333pt;}
.x5a_c01286{left:486.146667pt;}
.xb9_c01286{left:487.680000pt;}
.x8c_c01286{left:489.986667pt;}
.xd6_c01286{left:491.520000pt;}
.x16_c01286{left:493.053333pt;}
.x71_c01286{left:494.586667pt;}
.x6a_c01286{left:496.893333pt;}
.x33_c01286{left:499.200000pt;}
.xf_c01286{left:500.733333pt;}
.x92_c01286{left:502.266667pt;}
.xc8_c01286{left:505.346667pt;}
.xa3_c01286{left:506.880000pt;}
.x93_c01286{left:508.413333pt;}
.xc0_c01286{left:510.720000pt;}
.x10f_c01286{left:513.026667pt;}
.xb5_c01286{left:515.333333pt;}
.x7d_c01286{left:519.173333pt;}
.x114_c01286{left:521.466667pt;}
.x106_c01286{left:526.080000pt;}
.x63_c01286{left:527.613333pt;}
.x3d_c01286{left:529.146667pt;}
.xef_c01286{left:531.453333pt;}
.xad_c01286{left:533.760000pt;}
.xdc_c01286{left:535.293333pt;}
.x110_c01286{left:536.826667pt;}
.x51_c01286{left:538.373333pt;}
.x101_c01286{left:539.906667pt;}
.xa4_c01286{left:542.213333pt;}
.x11f_c01286{left:543.746667pt;}
.x46_c01286{left:545.280000pt;}
.xf5_c01286{left:546.813333pt;}
.x83_c01286{left:549.120000pt;}
.x5b_c01286{left:552.186667pt;}
.x29_c01286{left:554.493333pt;}
.xd2_c01286{left:556.800000pt;}
.xd7_c01286{left:558.333333pt;}
.xea_c01286{left:559.866667pt;}
.x115_c01286{left:561.413333pt;}
.xbe_c01286{left:562.946667pt;}
.xa5_c01286{left:565.253333pt;}
.x6b_c01286{left:567.546667pt;}
.xb8_c01286{left:569.853333pt;}
.x3e_c01286{left:572.160000pt;}
.x109_c01286{left:574.466667pt;}
.x21_c01286{left:576.000000pt;}
.x2a_c01286{left:579.066667pt;}
.x64_c01286{left:583.680000pt;}
.x78_c01286{left:585.986667pt;}
.x9d_c01286{left:588.293333pt;}
.x6_c01286{left:590.586667pt;}
.xc1_c01286{left:594.426667pt;}
.x119_c01286{left:595.973333pt;}
.x7_c01286{left:598.266667pt;}
.x34_c01286{left:600.573333pt;}
.x47_c01286{left:603.653333pt;}
.x6c_c01286{left:607.493333pt;}
.xaf_c01286{left:609.026667pt;}
.xe2_c01286{left:613.626667pt;}
.x87_c01286{left:615.173333pt;}
.xf0_c01286{left:617.466667pt;}
.xa7_c01286{left:620.546667pt;}
.x3f_c01286{left:622.853333pt;}
.x9e_c01286{left:625.920000pt;}
.x2b_c01286{left:628.986667pt;}
.x11c_c01286{left:632.066667pt;}
.x17_c01286{left:633.600000pt;}
.x8d_c01286{left:635.906667pt;}
.x5c_c01286{left:637.440000pt;}
.x48_c01286{left:639.746667pt;}
.x18_c01286{left:641.280000pt;}
.xf9_c01286{left:642.813333pt;}
.x72_c01286{left:645.120000pt;}
.x52_c01286{left:646.653333pt;}
.x10_c01286{left:648.960000pt;}
.x121_c01286{left:651.266667pt;}
.xa8_c01286{left:652.800000pt;}
.xb0_c01286{left:655.866667pt;}
.x79_c01286{left:658.173333pt;}
.x35_c01286{left:661.253333pt;}
.x65_c01286{left:663.546667pt;}
.x105_c01286{left:665.853333pt;}
.x7e_c01286{left:667.386667pt;}
.xc9_c01286{left:668.933333pt;}
.x66_c01286{left:670.466667pt;}
.x19_c01286{left:672.000000pt;}
.x49_c01286{left:674.306667pt;}
.xd3_c01286{left:675.840000pt;}
.x84_c01286{left:677.373333pt;}
.x53_c01286{left:678.906667pt;}
.x2c_c01286{left:682.746667pt;}
.x8e_c01286{left:684.293333pt;}
.x67_c01286{left:686.586667pt;}
.xf1_c01286{left:688.893333pt;}
.x4a_c01286{left:690.426667pt;}
.x36_c01286{left:691.973333pt;}
.xae_c01286{left:694.266667pt;}
.x22_c01286{left:698.880000pt;}
.x6d_c01286{left:700.413333pt;}
.x40_c01286{left:702.720000pt;}
.x9f_c01286{left:704.253333pt;}
.xca_c01286{left:707.333333pt;}
.x2d_c01286{left:711.173333pt;}
.x54_c01286{left:714.240000pt;}
.xb1_c01286{left:716.546667pt;}
.x116_c01286{left:718.853333pt;}
.x41_c01286{left:720.386667pt;}
.x8_c01286{left:722.693333pt;}
.x107_c01286{left:724.226667pt;}
.x5d_c01286{left:725.760000pt;}
.xa9_c01286{left:728.826667pt;}
.x37_c01286{left:731.133333pt;}
.x1a_c01286{left:733.440000pt;}
.xb6_c01286{left:735.746667pt;}
.x6e_c01286{left:737.280000pt;}
.x42_c01286{left:738.813333pt;}
.xc2_c01286{left:740.346667pt;}
.x7f_c01286{left:741.893333pt;}
.xe7_c01286{left:744.186667pt;}
.x5e_c01286{left:745.733333pt;}
.xa0_c01286{left:747.266667pt;}
.x73_c01286{left:749.573333pt;}
.x122_c01286{left:751.106667pt;}
.x1b_c01286{left:752.640000pt;}
.x88_c01286{left:755.706667pt;}
.xc3_c01286{left:758.013333pt;}
.xd8_c01286{left:760.320000pt;}
.xcb_c01286{left:762.626667pt;}
.x10c_c01286{left:764.160000pt;}
.xb2_c01286{left:769.533333pt;}
.xba_c01286{left:771.066667pt;}
.xf2_c01286{left:772.613333pt;}
.x126_c01286{left:776.453333pt;}
.xf3_c01286{left:779.520000pt;}
.x11e_c01286{left:781.826667pt;}
.x125_c01286{left:784.133333pt;}
.x11a_c01286{left:787.200000pt;}
.x117_c01286{left:789.506667pt;}
.x12a_c01286{left:805.626667pt;}
.x74_c01286{left:807.173333pt;}
.x12b_c01286{left:823.293333pt;}
.x129_c01286{left:899.333333pt;}
.x127_c01286{left:904.706667pt;}
.x128_c01286{left:914.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_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_28c29322f431fe887a57cfb1.woff2')format("woff");}.ff1_c01287{font-family:ff1_c01287;line-height:1.109863;font-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_c01287{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb0_c01287{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m141_c01287{transform:matrix(0.069650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069650,0.000000,0.000000,0.250000,0,0);}
.m136_c01287{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m109_c01287{transform:matrix(0.087750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087750,0.000000,0.000000,0.250000,0,0);}
.m17_c01287{transform:matrix(0.096275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096275,0.000000,0.000000,0.250000,0,0);}
.m91_c01287{transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);}
.m151_c01287{transform:matrix(0.097975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097975,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01287{transform:matrix(0.101200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101200,0.000000,0.000000,0.250000,0,0);}
.m93_c01287{transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);}
.m102_c01287{transform:matrix(0.103275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103275,0.000000,0.000000,0.250000,0,0);}
.m154_c01287{transform:matrix(0.106875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106875,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01287{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.mc4_c01287{transform:matrix(0.107550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107550,0.000000,0.000000,0.250000,0,0);}
.m16e_c01287{transform:matrix(0.109025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109025,0.000000,0.000000,0.250000,0,0);}
.m147_c01287{transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);}
.m1f3_c01287{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m1ea_c01287{transform:matrix(0.111175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111175,0.000000,0.000000,0.250000,0,0);}
.m1eb_c01287{transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);}
.m100_c01287{transform:matrix(0.113975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113975,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01287{transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);}
.m111_c01287{transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117325,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01287{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);}
.m10c_c01287{transform:matrix(0.117850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117850,0.000000,0.000000,0.250000,0,0);}
.mc8_c01287{transform:matrix(0.118200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118200,0.000000,0.000000,0.250000,0,0);}
.m127_c01287{transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);}
.m183_c01287{transform:matrix(0.121050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121050,0.000000,0.000000,0.250000,0,0);}
.m1b_c01287{transform:matrix(0.122900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122900,0.000000,0.000000,0.250000,0,0);}
.m10f_c01287{transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);}
.m142_c01287{transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);}
.m10a_c01287{transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01287{transform:matrix(0.124775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124775,0.000000,0.000000,0.250000,0,0);}
.m101_c01287{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);}
.m25_c01287{transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);}
.m182_c01287{transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01287{transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126750,0.000000,0.000000,0.250000,0,0);}
.m81_c01287{transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);}
.m1df_c01287{transform:matrix(0.127150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127150,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01287{transform:matrix(0.127400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127400,0.000000,0.000000,0.250000,0,0);}
.mea_c01287{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01287{transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);}
.m103_c01287{transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);}
.m17b_c01287{transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);}
.m155_c01287{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.m178_c01287{transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);}
.maf_c01287{transform:matrix(0.134575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134575,0.000000,0.000000,0.250000,0,0);}
.m144_c01287{transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01287{transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);}
.mac_c01287{transform:matrix(0.135400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135400,0.000000,0.000000,0.250000,0,0);}
.m48_c01287{transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);}
.mfd_c01287{transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);}
.mbd_c01287{transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);}
.m8e_c01287{transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);}
.m18f_c01287{transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01287{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);}
.m1d3_c01287{transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);}
.ma5_c01287{transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01287{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.m18d_c01287{transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);}
.m152_c01287{transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);}
.m104_c01287{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);}
.mb8_c01287{transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01287{transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01287{transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);}
.m69_c01287{transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);}
.m1de_c01287{transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);}
.m1e8_c01287{transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);}
.m12a_c01287{transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);}
.ma7_c01287{transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01287{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.m108_c01287{transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);}
.m12d_c01287{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);}
.mad_c01287{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);}
.md9_c01287{transform:matrix(0.143600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143600,0.000000,0.000000,0.250000,0,0);}
.m75_c01287{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf1_c01287{transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);}
.m5f_c01287{transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);}
.m18a_c01287{transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);}
.mf3_c01287{transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);}
.me0_c01287{transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);}
.m140_c01287{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);}
.m7b_c01287{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.m145_c01287{transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);}
.m94_c01287{transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);}
.m3f_c01287{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);}
.m150_c01287{transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);}
.mb4_c01287{transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);}
.m3d_c01287{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);}
.m19_c01287{transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01287{transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);}
.m1be_c01287{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01287{transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);}
.m1af_c01287{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m1f5_c01287{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);}
.m1cd_c01287{transform:matrix(0.149900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149900,0.000000,0.000000,0.250000,0,0);}
.m158_c01287{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);}
.m24_c01287{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m15_c01287{transform:matrix(0.150200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150200,0.000000,0.000000,0.250000,0,0);}
.m45_c01287{transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01287{transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);}
.m128_c01287{transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152800,0.000000,0.000000,0.250000,0,0);}
.m124_c01287{transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);}
.m12b_c01287{transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);}
.m14d_c01287{transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);}
.m97_c01287{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01287{transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);}
.me2_c01287{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.m1f_c01287{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);}
.m17c_c01287{transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);}
.m12e_c01287{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01287{transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);}
.m156_c01287{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);}
.m11f_c01287{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);}
.m153_c01287{transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);}
.m12c_c01287{transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);}
.mf6_c01287{transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);}
.mab_c01287{transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);}
.m17f_c01287{transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159675,0.000000,0.000000,0.250000,0,0);}
.m113_c01287{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);}
.mbc_c01287{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);}
.m1e6_c01287{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m14_c01287{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.m31_c01287{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.m184_c01287{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m132_c01287{transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);}
.m3b_c01287{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.m10d_c01287{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m16f_c01287{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m17e_c01287{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.m185_c01287{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01287{transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);}
.m130_c01287{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.mc2_c01287{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.m15b_c01287{transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);}
.m21_c01287{transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);}
.m125_c01287{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.m84_c01287{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m126_c01287{transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);}
.m65_c01287{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.m10_c01287{transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);}
.m23_c01287{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.ma6_c01287{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m172_c01287{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m110_c01287{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);}
.m1b6_c01287{transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);}
.m1a_c01287{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m164_c01287{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);}
.m1dc_c01287{transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);}
.m15a_c01287{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);}
.m168_c01287{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m2a_c01287{transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01287{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.mb1_c01287{transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);}
.mca_c01287{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.m163_c01287{transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);}
.m1da_c01287{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.m7e_c01287{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m19d_c01287{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.m177_c01287{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m80_c01287{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m7c_c01287{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m14a_c01287{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01287{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);}
.mf7_c01287{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m194_c01287{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m119_c01287{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01287{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.m143_c01287{transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);}
.m53_c01287{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);}
.m6e_c01287{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);}
.m134_c01287{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m105_c01287{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);}
.m1a0_c01287{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);}
.ma2_c01287{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m179_c01287{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.m10e_c01287{transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);}
.me3_c01287{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m10b_c01287{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);}
.m195_c01287{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.m162_c01287{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m187_c01287{transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);}
.m95_c01287{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.m71_c01287{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01287{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m7f_c01287{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01287{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.m16d_c01287{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01287{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.mfc_c01287{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);}
.mae_c01287{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);}
.me8_c01287{transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);}
.m11d_c01287{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m79_c01287{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.md3_c01287{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);}
.m19c_c01287{transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);}
.m17a_c01287{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);}
.m1bd_c01287{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m7a_c01287{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.ma_c01287{transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);}
.m19f_c01287{transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);}
.m180_c01287{transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);}
.m14f_c01287{transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);}
.m106_c01287{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m8_c01287{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01287{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);}
.mcc_c01287{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);}
.mda_c01287{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m149_c01287{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);}
.m192_c01287{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m18_c01287{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01287{transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);}
.m6f_c01287{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);}
.m1e7_c01287{transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);}
.m18b_c01287{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);}
.m1c9_c01287{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.m12f_c01287{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);}
.m5_c01287{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);}
.m4_c01287{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.mce_c01287{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);}
.mff_c01287{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);}
.m1a4_c01287{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m18c_c01287{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.m67_c01287{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);}
.m120_c01287{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.m6_c01287{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m15f_c01287{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m5a_c01287{transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01287{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);}
.md8_c01287{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);}
.m1a3_c01287{transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);}
.m11e_c01287{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01287{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m186_c01287{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);}
.m16b_c01287{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.mc1_c01287{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);}
.m19b_c01287{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m62_c01287{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m190_c01287{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.m13b_c01287{transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);}
.m148_c01287{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.m61_c01287{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.m169_c01287{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);}
.m63_c01287{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);}
.mdf_c01287{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);}
.m6a_c01287{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01287{transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);}
.m19a_c01287{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);}
.m189_c01287{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m16c_c01287{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);}
.mf4_c01287{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.mf5_c01287{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.ma0_c01287{transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);}
.m70_c01287{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);}
.m32_c01287{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);}
.m174_c01287{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.maa_c01287{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);}
.m159_c01287{transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);}
.m175_c01287{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);}
.m11a_c01287{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);}
.m9c_c01287{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.m46_c01287{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);}
.m135_c01287{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.mf0_c01287{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);}
.m17d_c01287{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);}
.m1cc_c01287{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1ed_c01287{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m15c_c01287{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);}
.m137_c01287{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);}
.m171_c01287{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m122_c01287{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.m74_c01287{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);}
.m129_c01287{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m30_c01287{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);}
.m133_c01287{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m1ee_c01287{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);}
.m165_c01287{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m40_c01287{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.m166_c01287{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);}
.m1ad_c01287{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);}
.m188_c01287{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m7d_c01287{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);}
.ma3_c01287{transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);}
.m59_c01287{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m33_c01287{transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209450,0.000000,0.000000,0.250000,0,0);}
.m2e_c01287{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m66_c01287{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.mc6_c01287{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m193_c01287{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);}
.m5c_c01287{transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);}
.m139_c01287{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);}
.m1ec_c01287{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m123_c01287{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);}
.m2f_c01287{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);}
.m1d1_c01287{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);}
.m191_c01287{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m83_c01287{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01287{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma8_c01287{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);}
.m54_c01287{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m6b_c01287{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);}
.mb9_c01287{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);}
.m49_c01287{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m29_c01287{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.m76_c01287{transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);}
.mcd_c01287{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m14b_c01287{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.mbf_c01287{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m181_c01287{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.mb2_c01287{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);}
.m1a7_c01287{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);}
.mb3_c01287{transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);}
.mcf_c01287{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);}
.mdc_c01287{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);}
.md5_c01287{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);}
.m18e_c01287{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);}
.m1a1_c01287{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);}
.m3a_c01287{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);}
.m44_c01287{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);}
.m43_c01287{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);}
.m1f1_c01287{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_c01287{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);}
.mc7_c01287{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01287{transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);}
.mb6_c01287{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);}
.m82_c01287{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m60_c01287{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);}
.m121_c01287{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);}
.m14c_c01287{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);}
.m1d7_c01287{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);}
.m1f4_c01287{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);}
.m5e_c01287{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);}
.m138_c01287{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.mdd_c01287{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);}
.m99_c01287{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);}
.m73_c01287{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);}
.m117_c01287{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);}
.m173_c01287{transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);}
.m13c_c01287{transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);}
.m167_c01287{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);}
.m1c0_c01287{transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);}
.m55_c01287{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);}
.m1a6_c01287{transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);}
.m7_c01287{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01287{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);}
.m1d4_c01287{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m198_c01287{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);}
.m118_c01287{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);}
.mc_c01287{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);}
.m1d6_c01287{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);}
.mc3_c01287{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.me7_c01287{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m16_c01287{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.m72_c01287{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);}
.mdb_c01287{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);}
.m1c_c01287{transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);}
.m42_c01287{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);}
.mbb_c01287{transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);}
.mf8_c01287{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);}
.m87_c01287{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);}
.m13d_c01287{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m13_c01287{transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);}
.md_c01287{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.m85_c01287{transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);}
.m88_c01287{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.m4f_c01287{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);}
.mc0_c01287{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);}
.m11c_c01287{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);}
.m15d_c01287{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);}
.m64_c01287{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m13e_c01287{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.m107_c01287{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);}
.mc9_c01287{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);}
.m157_c01287{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.md4_c01287{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);}
.mb_c01287{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);}
.mbe_c01287{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01287{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.mfe_c01287{transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);}
.m5d_c01287{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.m8d_c01287{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);}
.med_c01287{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);}
.m1ce_c01287{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);}
.m196_c01287{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);}
.mfa_c01287{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);}
.m1c3_c01287{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);}
.m9d_c01287{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);}
.m6d_c01287{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);}
.m15e_c01287{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);}
.m9a_c01287{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);}
.mfb_c01287{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);}
.m98_c01287{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.m50_c01287{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.mcb_c01287{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01287{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);}
.m13f_c01287{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m197_c01287{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m36_c01287{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);}
.m1d8_c01287{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);}
.m1d_c01287{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m199_c01287{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);}
.m1c7_c01287{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);}
.m47_c01287{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);}
.m11_c01287{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m131_c01287{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);}
.m78_c01287{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);}
.mee_c01287{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);}
.mf_c01287{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);}
.m28_c01287{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01287{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m37_c01287{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01287{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);}
.m86_c01287{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1_c01287{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);}
.m92_c01287{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);}
.m9_c01287{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m96_c01287{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);}
.m57_c01287{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01287{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mec_c01287{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);}
.m20_c01287{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m38_c01287{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);}
.me_c01287{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);}
.m8b_c01287{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m41_c01287{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mba_c01287{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);}
.m56_c01287{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01287{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01287{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);}
.m27_c01287{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11b_c01287{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m90_c01287{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16a_c01287{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m2_c01287{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma1_c01287{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6c_c01287{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc5_c01287{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mb5_c01287{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);}
.m3c_c01287{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01287{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m52_c01287{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m0_c01287{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m58_c01287{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);}
.m13a_c01287{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);}
.m9b_c01287{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01287{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);}
.md1_c01287{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8c_c01287{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma4_c01287{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.me1_c01287{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m68_c01287{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);}
.m176_c01287{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mf9_c01287{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m51_c01287{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01287{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);}
.m2c_c01287{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);}
.m1bf_c01287{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);}
.m1ef_c01287{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m26_c01287{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m35_c01287{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);}
.m112_c01287{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m77_c01287{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m12_c01287{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md6_c01287{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.md7_c01287{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mef_c01287{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m9e_c01287{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);}
.me4_c01287{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m19e_c01287{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01287{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01287{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.ma9_c01287{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m114_c01287{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);}
.m8a_c01287{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01287{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);}
.m1a5_c01287{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01287{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01287{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m161_c01287{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.md0_c01287{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);}
.m160_c01287{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m34_c01287{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01287{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m22_c01287{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.me5_c01287{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mb7_c01287{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1f2_c01287{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.md2_c01287{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01287{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01287{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3_c01287{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m14e_c01287{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1f0_c01287{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m115_c01287{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m39_c01287{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.me6_c01287{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.meb_c01287{transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);}
.m116_c01287{transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);}
.me9_c01287{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.mde_c01287{transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);}
.m170_c01287{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.mf2_c01287{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m1db_c01287{transform:matrix(2.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.270000,0.000000,0.000000,0.250000,0,0);}
.v3_c01287{vertical-align:-6.960000px;}
.v0_c01287{vertical-align:0.000000px;}
.v1_c01287{vertical-align:13.800000px;}
.v2_c01287{vertical-align:31.080000px;}
.ls2_c01287{letter-spacing:0.000000px;}
.ls0_c01287{letter-spacing:65.084688px;}
.ls1_c01287{letter-spacing:67.192607px;}
.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:-2.195700px;}
.ws2_c01287{word-spacing:0.000000px;}
.ws1_c01287{word-spacing:1.864860px;}
.fc0_c01287{color:transparent;}
.fse_c01287{font-size:3.456000px;}
.fs1c_c01287{font-size:6.000000px;}
.fs19_c01287{font-size:6.900000px;}
.fs13_c01287{font-size:10.380000px;}
.fs15_c01287{font-size:13.800000px;}
.fs1a_c01287{font-size:17.280000px;}
.fs17_c01287{font-size:20.760000px;}
.fs16_c01287{font-size:24.180000px;}
.fs1d_c01287{font-size:27.660000px;}
.fsb_c01287{font-size:31.080000px;}
.fs14_c01287{font-size:34.560000px;}
.fs18_c01287{font-size:38.040000px;}
.fs4_c01287{font-size:41.460000px;}
.fs1b_c01287{font-size:44.940000px;}
.fs9_c01287{font-size:48.360000px;}
.fsd_c01287{font-size:51.840000px;}
.fs7_c01287{font-size:55.320000px;}
.fs8_c01287{font-size:58.740000px;}
.fsc_c01287{font-size:62.220000px;}
.fs11_c01287{font-size:65.640000px;}
.fs6_c01287{font-size:69.120000px;}
.fs1_c01287{font-size:72.600000px;}
.fsa_c01287{font-size:76.020000px;}
.fs3_c01287{font-size:79.500000px;}
.fs5_c01287{font-size:82.920000px;}
.fs10_c01287{font-size:86.400000px;}
.fs12_c01287{font-size:89.880000px;}
.fs0_c01287{font-size:93.300000px;}
.fsf_c01287{font-size:96.780000px;}
.fs1e_c01287{font-size:100.200000px;}
.fs2_c01287{font-size:103.680000px;}
.y0_c01287{bottom:0.000000px;}
.y1e6_c01287{bottom:165.885000px;}
.y1e5_c01287{bottom:168.480000px;}
.y1e7_c01287{bottom:169.350000px;}
.y1e4_c01287{bottom:170.205000px;}
.y1e2_c01287{bottom:171.930000px;}
.y1e1_c01287{bottom:172.800000px;}
.y1df_c01287{bottom:173.670000px;}
.y1de_c01287{bottom:174.525000px;}
.y1e3_c01287{bottom:175.395000px;}
.y1e0_c01287{bottom:177.120000px;}
.y1dc_c01287{bottom:188.355000px;}
.y1da_c01287{bottom:189.210000px;}
.y1d9_c01287{bottom:190.080000px;}
.y1d6_c01287{bottom:191.805000px;}
.y1d8_c01287{bottom:193.530000px;}
.y1db_c01287{bottom:194.400000px;}
.y1d4_c01287{bottom:195.270000px;}
.y1d7_c01287{bottom:203.040000px;}
.y1d5_c01287{bottom:204.765000px;}
.y1dd_c01287{bottom:207.360000px;}
.y1d2_c01287{bottom:211.680000px;}
.y1d1_c01287{bottom:213.405000px;}
.y1d3_c01287{bottom:214.275000px;}
.y1cf_c01287{bottom:215.130000px;}
.y1cd_c01287{bottom:216.000000px;}
.y1d0_c01287{bottom:220.320000px;}
.y1ce_c01287{bottom:222.045000px;}
.y1ca_c01287{bottom:235.005000px;}
.y1cb_c01287{bottom:237.600000px;}
.y1c8_c01287{bottom:240.195000px;}
.y1c9_c01287{bottom:241.050000px;}
.y1c6_c01287{bottom:241.920000px;}
.y1c5_c01287{bottom:242.790000px;}
.y1c7_c01287{bottom:243.645000px;}
.y1c4_c01287{bottom:244.515000px;}
.y1cc_c01287{bottom:250.560000px;}
.y1c2_c01287{bottom:253.155000px;}
.y1bf_c01287{bottom:254.880000px;}
.y1c0_c01287{bottom:255.750000px;}
.y1bb_c01287{bottom:259.200000px;}
.y1c1_c01287{bottom:260.070000px;}
.y1be_c01287{bottom:260.925000px;}
.y1bc_c01287{bottom:261.795000px;}
.y1ba_c01287{bottom:263.520000px;}
.y1bd_c01287{bottom:264.390000px;}
.y1c3_c01287{bottom:267.840000px;}
.y1b9_c01287{bottom:273.030000px;}
.y1b8_c01287{bottom:274.755000px;}
.y1b6_c01287{bottom:276.480000px;}
.y1b5_c01287{bottom:277.350000px;}
.y1b3_c01287{bottom:278.205000px;}
.y1b7_c01287{bottom:279.930000px;}
.y1af_c01287{bottom:280.800000px;}
.y1b0_c01287{bottom:282.525000px;}
.y1b2_c01287{bottom:285.120000px;}
.y1b1_c01287{bottom:285.990000px;}
.y1b4_c01287{bottom:298.080000px;}
.y1ac_c01287{bottom:299.805000px;}
.y1ad_c01287{bottom:300.675000px;}
.y1a7_c01287{bottom:302.400000px;}
.y1a9_c01287{bottom:303.270000px;}
.y1a8_c01287{bottom:304.125000px;}
.y1ab_c01287{bottom:304.995000px;}
.y1aa_c01287{bottom:305.850000px;}
.y1ae_c01287{bottom:307.590000px;}
.y1a6_c01287{bottom:317.955000px;}
.y1a5_c01287{bottom:318.810000px;}
.y19f_c01287{bottom:319.680000px;}
.y1a0_c01287{bottom:320.550000px;}
.y1a4_c01287{bottom:321.405000px;}
.y19e_c01287{bottom:323.130000px;}
.y1a3_c01287{bottom:324.000000px;}
.y1a1_c01287{bottom:324.870000px;}
.y1a2_c01287{bottom:325.725000px;}
.y19d_c01287{bottom:327.450000px;}
.y19c_c01287{bottom:333.510000px;}
.y19a_c01287{bottom:334.365000px;}
.y199_c01287{bottom:335.235000px;}
.y198_c01287{bottom:336.090000px;}
.y196_c01287{bottom:337.830000px;}
.y195_c01287{bottom:338.685000px;}
.y19b_c01287{bottom:341.280000px;}
.y197_c01287{bottom:343.005000px;}
.y194_c01287{bottom:347.325000px;}
.y192_c01287{bottom:355.110000px;}
.y18d_c01287{bottom:359.430000px;}
.y193_c01287{bottom:361.155000px;}
.y191_c01287{bottom:362.010000px;}
.y190_c01287{bottom:363.750000px;}
.y18f_c01287{bottom:365.475000px;}
.y18e_c01287{bottom:366.330000px;}
.y18c_c01287{bottom:374.970000px;}
.y18a_c01287{bottom:377.565000px;}
.y187_c01287{bottom:378.435000px;}
.y18b_c01287{bottom:380.160000px;}
.y189_c01287{bottom:381.030000px;}
.y186_c01287{bottom:381.885000px;}
.y188_c01287{bottom:385.350000px;}
.y185_c01287{bottom:399.165000px;}
.y183_c01287{bottom:400.890000px;}
.y181_c01287{bottom:402.630000px;}
.y184_c01287{bottom:404.355000px;}
.y182_c01287{bottom:412.995000px;}
.y17f_c01287{bottom:416.445000px;}
.y17d_c01287{bottom:417.315000px;}
.y17a_c01287{bottom:419.040000px;}
.y179_c01287{bottom:419.910000px;}
.y17b_c01287{bottom:420.765000px;}
.y17e_c01287{bottom:422.490000px;}
.y17c_c01287{bottom:424.230000px;}
.y177_c01287{bottom:425.085000px;}
.y178_c01287{bottom:429.405000px;}
.y180_c01287{bottom:434.595000px;}
.y175_c01287{bottom:437.190000px;}
.y174_c01287{bottom:438.045000px;}
.y173_c01287{bottom:438.915000px;}
.y171_c01287{bottom:439.770000px;}
.y172_c01287{bottom:440.640000px;}
.y16a_c01287{bottom:441.510000px;}
.y16e_c01287{bottom:442.365000px;}
.y16b_c01287{bottom:443.235000px;}
.y16f_c01287{bottom:444.960000px;}
.y16d_c01287{bottom:446.685000px;}
.y16c_c01287{bottom:448.410000px;}
.y176_c01287{bottom:451.875000px;}
.y170_c01287{bottom:452.730000px;}
.y168_c01287{bottom:457.920000px;}
.y167_c01287{bottom:458.790000px;}
.y169_c01287{bottom:459.645000px;}
.y166_c01287{bottom:460.515000px;}
.y164_c01287{bottom:462.240000px;}
.y165_c01287{bottom:469.155000px;}
.y163_c01287{bottom:470.010000px;}
.y161_c01287{bottom:477.795000px;}
.y15e_c01287{bottom:481.245000px;}
.y15f_c01287{bottom:482.115000px;}
.y162_c01287{bottom:482.970000px;}
.y15d_c01287{bottom:483.840000px;}
.y15c_c01287{bottom:484.710000px;}
.y160_c01287{bottom:492.480000px;}
.y159_c01287{bottom:498.525000px;}
.y153_c01287{bottom:500.250000px;}
.y154_c01287{bottom:501.120000px;}
.y152_c01287{bottom:501.990000px;}
.y158_c01287{bottom:502.845000px;}
.y157_c01287{bottom:503.715000px;}
.y15a_c01287{bottom:504.570000px;}
.y156_c01287{bottom:505.440000px;}
.y155_c01287{bottom:508.035000px;}
.y151_c01287{bottom:509.760000px;}
.y15b_c01287{bottom:514.080000px;}
.y150_c01287{bottom:518.400000px;}
.y14e_c01287{bottom:520.995000px;}
.y148_c01287{bottom:522.720000px;}
.y14a_c01287{bottom:523.590000px;}
.y14b_c01287{bottom:524.445000px;}
.y14c_c01287{bottom:525.315000px;}
.y149_c01287{bottom:526.170000px;}
.y14d_c01287{bottom:527.040000px;}
.y146_c01287{bottom:538.275000px;}
.y147_c01287{bottom:539.130000px;}
.y14f_c01287{bottom:540.870000px;}
.y144_c01287{bottom:541.725000px;}
.y143_c01287{bottom:543.450000px;}
.y145_c01287{bottom:544.320000px;}
.y142_c01287{bottom:549.510000px;}
.y13f_c01287{bottom:560.730000px;}
.y13d_c01287{bottom:561.600000px;}
.y13c_c01287{bottom:562.470000px;}
.y13b_c01287{bottom:564.195000px;}
.y140_c01287{bottom:565.920000px;}
.y13e_c01287{bottom:566.790000px;}
.y13a_c01287{bottom:568.515000px;}
.y141_c01287{bottom:576.285000px;}
.y139_c01287{bottom:578.880000px;}
.y138_c01287{bottom:581.475000px;}
.y136_c01287{bottom:582.330000px;}
.y135_c01287{bottom:584.070000px;}
.y134_c01287{bottom:584.925000px;}
.y137_c01287{bottom:585.795000px;}
.y133_c01287{bottom:589.245000px;}
.y131_c01287{bottom:598.755000px;}
.y130_c01287{bottom:602.205000px;}
.y12d_c01287{bottom:603.075000px;}
.y132_c01287{bottom:603.930000px;}
.y12c_c01287{bottom:604.800000px;}
.y12b_c01287{bottom:605.670000px;}
.y12f_c01287{bottom:606.525000px;}
.y12e_c01287{bottom:607.395000px;}
.y12a_c01287{bottom:617.760000px;}
.y127_c01287{bottom:621.210000px;}
.y125_c01287{bottom:622.080000px;}
.y126_c01287{bottom:622.950000px;}
.y123_c01287{bottom:623.805000px;}
.y129_c01287{bottom:624.675000px;}
.y124_c01287{bottom:625.530000px;}
.y128_c01287{bottom:626.400000px;}
.y122_c01287{bottom:640.230000px;}
.y121_c01287{bottom:641.085000px;}
.y11f_c01287{bottom:642.810000px;}
.y11c_c01287{bottom:643.680000px;}
.y11d_c01287{bottom:644.550000px;}
.y11a_c01287{bottom:646.275000px;}
.y120_c01287{bottom:647.130000px;}
.y11e_c01287{bottom:648.870000px;}
.y11b_c01287{bottom:649.725000px;}
.y117_c01287{bottom:661.830000px;}
.y112_c01287{bottom:662.685000px;}
.y10f_c01287{bottom:664.410000px;}
.y119_c01287{bottom:665.280000px;}
.y118_c01287{bottom:666.150000px;}
.y116_c01287{bottom:667.005000px;}
.y115_c01287{bottom:667.875000px;}
.y111_c01287{bottom:668.730000px;}
.y110_c01287{bottom:669.600000px;}
.y113_c01287{bottom:673.050000px;}
.y114_c01287{bottom:677.370000px;}
.y10e_c01287{bottom:680.835000px;}
.y10d_c01287{bottom:681.690000px;}
.y10a_c01287{bottom:683.430000px;}
.y109_c01287{bottom:684.285000px;}
.y10c_c01287{bottom:686.880000px;}
.y10b_c01287{bottom:687.750000px;}
.y107_c01287{bottom:698.115000px;}
.y106_c01287{bottom:698.970000px;}
.y105_c01287{bottom:699.840000px;}
.y103_c01287{bottom:700.710000px;}
.y101_c01287{bottom:701.565000px;}
.y108_c01287{bottom:703.290000px;}
.y102_c01287{bottom:705.030000px;}
.y104_c01287{bottom:706.755000px;}
.y100_c01287{bottom:720.570000px;}
.yff_c01287{bottom:722.310000px;}
.yfc_c01287{bottom:724.035000px;}
.yf9_c01287{bottom:725.760000px;}
.yfa_c01287{bottom:726.630000px;}
.yfd_c01287{bottom:728.355000px;}
.yfb_c01287{bottom:730.080000px;}
.yfe_c01287{bottom:737.850000px;}
.yf8_c01287{bottom:740.445000px;}
.yf3_c01287{bottom:743.040000px;}
.yf4_c01287{bottom:743.910000px;}
.yf5_c01287{bottom:747.360000px;}
.yf6_c01287{bottom:748.230000px;}
.yf2_c01287{bottom:749.955000px;}
.yf7_c01287{bottom:753.405000px;}
.yf0_c01287{bottom:763.770000px;}
.yea_c01287{bottom:764.640000px;}
.yf1_c01287{bottom:766.365000px;}
.yef_c01287{bottom:767.235000px;}
.yee_c01287{bottom:768.090000px;}
.yed_c01287{bottom:768.960000px;}
.yeb_c01287{bottom:769.830000px;}
.yec_c01287{bottom:770.685000px;}
.ye8_c01287{bottom:775.875000px;}
.ye7_c01287{bottom:776.730000px;}
.ye6_c01287{bottom:780.195000px;}
.ye4_c01287{bottom:781.050000px;}
.ye2_c01287{bottom:781.920000px;}
.ye9_c01287{bottom:783.645000px;}
.ye3_c01287{bottom:785.370000px;}
.ye5_c01287{bottom:791.430000px;}
.ydf_c01287{bottom:800.925000px;}
.ydd_c01287{bottom:801.795000px;}
.ye1_c01287{bottom:802.650000px;}
.yde_c01287{bottom:803.520000px;}
.ydb_c01287{bottom:804.390000px;}
.ydc_c01287{bottom:806.115000px;}
.ye0_c01287{bottom:806.970000px;}
.yd9_c01287{bottom:808.710000px;}
.yda_c01287{bottom:809.565000px;}
.y1f0_c01287{bottom:811.290000px;}
.yd8_c01287{bottom:813.885000px;}
.yd7_c01287{bottom:821.670000px;}
.yd4_c01287{bottom:824.250000px;}
.yd3_c01287{bottom:825.120000px;}
.yd5_c01287{bottom:825.990000px;}
.yd0_c01287{bottom:826.845000px;}
.yd6_c01287{bottom:827.715000px;}
.yd1_c01287{bottom:828.570000px;}
.yd2_c01287{bottom:829.440000px;}
.ycf_c01287{bottom:830.310000px;}
.yce_c01287{bottom:837.210000px;}
.ycd_c01287{bottom:841.530000px;}
.ycc_c01287{bottom:843.270000px;}
.yc6_c01287{bottom:844.995000px;}
.yc9_c01287{bottom:845.850000px;}
.yc7_c01287{bottom:846.720000px;}
.ycb_c01287{bottom:847.590000px;}
.yca_c01287{bottom:848.445000px;}
.yc5_c01287{bottom:849.315000px;}
.ybc_c01287{bottom:851.040000px;}
.ybe_c01287{bottom:851.910000px;}
.yc8_c01287{bottom:852.765000px;}
.yc3_c01287{bottom:853.635000px;}
.yc2_c01287{bottom:855.360000px;}
.yc0_c01287{bottom:857.085000px;}
.yc4_c01287{bottom:857.955000px;}
.ybd_c01287{bottom:858.810000px;}
.yc1_c01287{bottom:859.680000px;}
.ybf_c01287{bottom:863.130000px;}
.yba_c01287{bottom:864.000000px;}
.yb8_c01287{bottom:864.870000px;}
.yb7_c01287{bottom:865.725000px;}
.yb5_c01287{bottom:866.595000px;}
.ybb_c01287{bottom:867.450000px;}
.yb9_c01287{bottom:869.190000px;}
.yb6_c01287{bottom:870.915000px;}
.yb4_c01287{bottom:871.770000px;}
.yb3_c01287{bottom:883.875000px;}
.yad_c01287{bottom:886.470000px;}
.yae_c01287{bottom:887.325000px;}
.yb2_c01287{bottom:889.050000px;}
.yb1_c01287{bottom:889.920000px;}
.yaf_c01287{bottom:890.790000px;}
.yac_c01287{bottom:891.645000px;}
.yb0_c01287{bottom:895.965000px;}
.yaa_c01287{bottom:903.750000px;}
.ya8_c01287{bottom:904.605000px;}
.ya7_c01287{bottom:905.475000px;}
.ya4_c01287{bottom:907.200000px;}
.ya9_c01287{bottom:908.070000px;}
.yab_c01287{bottom:908.925000px;}
.ya5_c01287{bottom:909.795000px;}
.ya3_c01287{bottom:910.650000px;}
.ya2_c01287{bottom:911.520000px;}
.ya6_c01287{bottom:916.710000px;}
.y9f_c01287{bottom:924.480000px;}
.ya1_c01287{bottom:926.205000px;}
.y9c_c01287{bottom:927.075000px;}
.y9b_c01287{bottom:928.800000px;}
.ya0_c01287{bottom:930.525000px;}
.y9e_c01287{bottom:931.395000px;}
.y9a_c01287{bottom:932.250000px;}
.y9d_c01287{bottom:942.630000px;}
.y98_c01287{bottom:944.355000px;}
.y99_c01287{bottom:945.210000px;}
.y96_c01287{bottom:946.950000px;}
.y94_c01287{bottom:947.805000px;}
.y93_c01287{bottom:948.675000px;}
.y97_c01287{bottom:951.270000px;}
.y95_c01287{bottom:952.125000px;}
.y92_c01287{bottom:952.995000px;}
.y90_c01287{bottom:963.360000px;}
.y8e_c01287{bottom:964.230000px;}
.y8d_c01287{bottom:965.085000px;}
.y8c_c01287{bottom:965.955000px;}
.y88_c01287{bottom:966.810000px;}
.y8b_c01287{bottom:967.680000px;}
.y87_c01287{bottom:968.550000px;}
.y8f_c01287{bottom:969.405000px;}
.y89_c01287{bottom:970.275000px;}
.y8a_c01287{bottom:972.000000px;}
.y91_c01287{bottom:978.045000px;}
.y84_c01287{bottom:984.960000px;}
.y85_c01287{bottom:985.830000px;}
.y7d_c01287{bottom:986.685000px;}
.y81_c01287{bottom:987.555000px;}
.y7c_c01287{bottom:988.410000px;}
.y82_c01287{bottom:989.280000px;}
.y7f_c01287{bottom:991.005000px;}
.y80_c01287{bottom:991.875000px;}
.y7e_c01287{bottom:992.730000px;}
.y1ef_c01287{bottom:994.470000px;}
.y86_c01287{bottom:995.325000px;}
.y1ee_c01287{bottom:996.195000px;}
.y7b_c01287{bottom:1002.240000px;}
.y83_c01287{bottom:1003.110000px;}
.y7a_c01287{bottom:1004.835000px;}
.y77_c01287{bottom:1007.430000px;}
.y76_c01287{bottom:1010.010000px;}
.y79_c01287{bottom:1011.750000px;}
.y78_c01287{bottom:1012.605000px;}
.y75_c01287{bottom:1022.115000px;}
.y73_c01287{bottom:1024.710000px;}
.y6f_c01287{bottom:1025.565000px;}
.y70_c01287{bottom:1028.160000px;}
.y6e_c01287{bottom:1029.030000px;}
.y74_c01287{bottom:1030.755000px;}
.y71_c01287{bottom:1032.480000px;}
.y72_c01287{bottom:1037.670000px;}
.y6c_c01287{bottom:1051.485000px;}
.y6b_c01287{bottom:1052.355000px;}
.y6a_c01287{bottom:1053.210000px;}
.y1ec_c01287{bottom:1056.675000px;}
.y1ed_c01287{bottom:1058.400000px;}
.y6d_c01287{bottom:1060.995000px;}
.y67_c01287{bottom:1066.170000px;}
.y62_c01287{bottom:1067.040000px;}
.y61_c01287{bottom:1067.910000px;}
.y68_c01287{bottom:1068.765000px;}
.y60_c01287{bottom:1069.635000px;}
.y64_c01287{bottom:1070.490000px;}
.y66_c01287{bottom:1071.360000px;}
.y63_c01287{bottom:1073.085000px;}
.y69_c01287{bottom:1074.810000px;}
.y5f_c01287{bottom:1076.550000px;}
.y5e_c01287{bottom:1083.450000px;}
.y65_c01287{bottom:1084.320000px;}
.y5d_c01287{bottom:1086.045000px;}
.y5b_c01287{bottom:1086.915000px;}
.y5a_c01287{bottom:1087.770000px;}
.y57_c01287{bottom:1088.640000px;}
.y56_c01287{bottom:1089.510000px;}
.y59_c01287{bottom:1090.365000px;}
.y5c_c01287{bottom:1092.090000px;}
.y58_c01287{bottom:1092.960000px;}
.y55_c01287{bottom:1105.050000px;}
.y53_c01287{bottom:1105.920000px;}
.y52_c01287{bottom:1106.790000px;}
.y50_c01287{bottom:1107.645000px;}
.y54_c01287{bottom:1111.965000px;}
.y51_c01287{bottom:1112.835000px;}
.y4f_c01287{bottom:1123.200000px;}
.y4a_c01287{bottom:1126.650000px;}
.y4d_c01287{bottom:1128.390000px;}
.y49_c01287{bottom:1130.115000px;}
.y4e_c01287{bottom:1130.970000px;}
.y48_c01287{bottom:1132.710000px;}
.y4b_c01287{bottom:1133.565000px;}
.y4c_c01287{bottom:1140.480000px;}
.y45_c01287{bottom:1146.525000px;}
.y44_c01287{bottom:1147.395000px;}
.y43_c01287{bottom:1148.250000px;}
.y42_c01287{bottom:1149.990000px;}
.y46_c01287{bottom:1150.845000px;}
.y47_c01287{bottom:1151.715000px;}
.y41_c01287{bottom:1152.570000px;}
.y40_c01287{bottom:1166.400000px;}
.y3e_c01287{bottom:1167.270000px;}
.y3a_c01287{bottom:1168.995000px;}
.y39_c01287{bottom:1170.720000px;}
.y3f_c01287{bottom:1172.445000px;}
.y3c_c01287{bottom:1173.315000px;}
.y3d_c01287{bottom:1174.170000px;}
.y3b_c01287{bottom:1175.040000px;}
.y38_c01287{bottom:1187.130000px;}
.y37_c01287{bottom:1190.595000px;}
.y36_c01287{bottom:1191.450000px;}
.y33_c01287{bottom:1193.190000px;}
.y34_c01287{bottom:1194.045000px;}
.y35_c01287{bottom:1194.915000px;}
.y32_c01287{bottom:1204.410000px;}
.y31_c01287{bottom:1207.875000px;}
.y30_c01287{bottom:1208.730000px;}
.y2b_c01287{bottom:1209.600000px;}
.y29_c01287{bottom:1211.325000px;}
.y2d_c01287{bottom:1212.195000px;}
.y2f_c01287{bottom:1213.050000px;}
.y2a_c01287{bottom:1214.790000px;}
.y2c_c01287{bottom:1215.645000px;}
.y2e_c01287{bottom:1218.240000px;}
.y27_c01287{bottom:1226.010000px;}
.y24_c01287{bottom:1228.605000px;}
.y26_c01287{bottom:1230.330000px;}
.y28_c01287{bottom:1232.070000px;}
.y25_c01287{bottom:1233.795000px;}
.y20_c01287{bottom:1249.350000px;}
.y1f_c01287{bottom:1250.205000px;}
.y1e_c01287{bottom:1251.075000px;}
.y22_c01287{bottom:1251.930000px;}
.y23_c01287{bottom:1252.800000px;}
.y21_c01287{bottom:1253.670000px;}
.y1d_c01287{bottom:1255.395000px;}
.y1c_c01287{bottom:1264.890000px;}
.y19_c01287{bottom:1266.630000px;}
.y15_c01287{bottom:1268.355000px;}
.y1b_c01287{bottom:1269.210000px;}
.y17_c01287{bottom:1270.080000px;}
.y13_c01287{bottom:1270.950000px;}
.y14_c01287{bottom:1273.530000px;}
.y1a_c01287{bottom:1274.400000px;}
.y18_c01287{bottom:1275.270000px;}
.y16_c01287{bottom:1276.995000px;}
.y10_c01287{bottom:1283.910000px;}
.ye_c01287{bottom:1284.765000px;}
.y11_c01287{bottom:1285.635000px;}
.yd_c01287{bottom:1286.490000px;}
.y12_c01287{bottom:1288.230000px;}
.yf_c01287{bottom:1289.085000px;}
.yc_c01287{bottom:1289.955000px;}
.yb_c01287{bottom:1300.320000px;}
.y9_c01287{bottom:1309.830000px;}
.y7_c01287{bottom:1310.685000px;}
.y4_c01287{bottom:1311.555000px;}
.y5_c01287{bottom:1312.410000px;}
.y3_c01287{bottom:1314.150000px;}
.ya_c01287{bottom:1315.005000px;}
.y6_c01287{bottom:1316.730000px;}
.y8_c01287{bottom:1317.600000px;}
.y2_c01287{bottom:1336.605000px;}
.y1_c01287{bottom:1341.795000px;}
.y1eb_c01287{bottom:1365.120000px;}
.y1ea_c01287{bottom:1366.845000px;}
.y1e9_c01287{bottom:1373.760000px;}
.y1f7_c01287{bottom:1389.315000px;}
.y1f8_c01287{bottom:1392.765000px;}
.y1e8_c01287{bottom:1399.680000px;}
.y1f5_c01287{bottom:1411.770000px;}
.y1f6_c01287{bottom:1412.640000px;}
.y1f4_c01287{bottom:1414.365000px;}
.y1f3_c01287{bottom:1429.920000px;}
.y1f2_c01287{bottom:1442.010000px;}
.y1f1_c01287{bottom:1443.750000px;}
.h10_c01287{height:3.110063px;}
.h1e_c01287{height:5.399414px;}
.h1b_c01287{height:6.209326px;}
.h15_c01287{height:9.340986px;}
.h17_c01287{height:12.418652px;}
.h1c_c01287{height:15.550313px;}
.h21_c01287{height:16.910063px;}
.h19_c01287{height:18.681973px;}
.h18_c01287{height:21.759639px;}
.h1f_c01287{height:24.891299px;}
.hd_c01287{height:27.968965px;}
.h16_c01287{height:31.100625px;}
.h1a_c01287{height:34.232285px;}
.h5_c01287{height:37.309951px;}
.h1d_c01287{height:40.441611px;}
.ha_c01287{height:43.519277px;}
.hf_c01287{height:46.650937px;}
.h8_c01287{height:49.782598px;}
.h9_c01287{height:52.860264px;}
.he_c01287{height:55.991924px;}
.h13_c01287{height:59.069590px;}
.h7_c01287{height:62.201250px;}
.hb_c01287{height:65.332910px;}
.hc_c01287{height:68.410576px;}
.h4_c01287{height:71.542236px;}
.h6_c01287{height:74.619902px;}
.h12_c01287{height:77.751563px;}
.h14_c01287{height:80.883223px;}
.h2_c01287{height:83.960889px;}
.h11_c01287{height:87.092549px;}
.h20_c01287{height:90.170215px;}
.h3_c01287{height:93.301875px;}
.h0_c01287{height:1509.405000px;}
.h1_c01287{height:1509.750000px;}
.w0_c01287{width:1088.640000px;}
.w1_c01287{width:1089.000000px;}
.x0_c01287{left:0.000000px;}
.x110_c01287{left:38.880000px;}
.x111_c01287{left:59.610000px;}
.x113_c01287{left:68.250000px;}
.x117_c01287{left:71.715000px;}
.x114_c01287{left:76.890000px;}
.x118_c01287{left:81.210000px;}
.x115_c01287{left:133.050000px;}
.x10f_c01287{left:144.284040px;}
.x116_c01287{left:154.650000px;}
.x10e_c01287{left:161.565000px;}
.x112_c01287{left:163.290000px;}
.x6c_c01287{left:198.720000px;}
.x65_c01287{left:212.550000px;}
.x77_c01287{left:219.450000px;}
.x13_c01287{left:222.045000px;}
.x9a_c01287{left:223.770000px;}
.x8b_c01287{left:225.510000px;}
.xe3_c01287{left:228.960000px;}
.x78_c01287{left:230.685000px;}
.x26_c01287{left:233.280000px;}
.x4_c01287{left:235.005000px;}
.xc7_c01287{left:237.600000px;}
.xe6_c01287{left:247.965000px;}
.xa4_c01287{left:250.560000px;}
.x5_c01287{left:252.285000px;}
.x52_c01287{left:254.880000px;}
.xb7_c01287{left:259.200000px;}
.x6d_c01287{left:262.650000px;}
.x8c_c01287{left:264.390000px;}
.x27_c01287{left:267.840000px;}
.x79_c01287{left:271.290000px;}
.xd1_c01287{left:273.030000px;}
.x6_c01287{left:274.755000px;}
.x93_c01287{left:276.480000px;}
.xb8_c01287{left:278.205000px;}
.xd7_c01287{left:279.930000px;}
.x28_c01287{left:281.670000px;}
.x94_c01287{left:285.120000px;}
.x9b_c01287{left:286.845000px;}
.x14_c01287{left:288.570000px;}
.x66_c01287{left:290.310000px;}
.x7_c01287{left:294.630000px;}
.x104_c01287{left:298.080000px;}
.x49_c01287{left:300.675000px;}
.x41_c01287{left:302.400000px;}
.x5f_c01287{left:304.995000px;}
.x1c_c01287{left:307.590000px;}
.xb1_c01287{left:309.315000px;}
.x53_c01287{left:311.040000px;}
.x8d_c01287{left:313.635000px;}
.x37_c01287{left:315.360000px;}
.xd2_c01287{left:317.955000px;}
.x6e_c01287{left:320.550000px;}
.xdf_c01287{left:322.275000px;}
.xe4_c01287{left:324.870000px;}
.x58_c01287{left:326.595000px;}
.xeb_c01287{left:328.320000px;}
.xac_c01287{left:330.045000px;}
.xe0_c01287{left:336.960000px;}
.xa5_c01287{left:339.555000px;}
.x38_c01287{left:342.150000px;}
.xdb_c01287{left:344.730000px;}
.xd9_c01287{left:347.325000px;}
.x1_c01287{left:349.050000px;}
.xc2_c01287{left:351.645000px;}
.x67_c01287{left:356.835000px;}
.x8_c01287{left:358.560000px;}
.x31_c01287{left:362.010000px;}
.x15_c01287{left:365.475000px;}
.x6f_c01287{left:368.925000px;}
.x9_c01287{left:372.390000px;}
.x70_c01287{left:375.840000px;}
.xbf_c01287{left:377.565000px;}
.x4a_c01287{left:380.160000px;}
.xb2_c01287{left:382.755000px;}
.x68_c01287{left:386.205000px;}
.x7f_c01287{left:388.800000px;}
.x103_c01287{left:390.525000px;}
.x42_c01287{left:393.120000px;}
.xd3_c01287{left:395.715000px;}
.xa0_c01287{left:397.440000px;}
.xcf_c01287{left:400.035000px;}
.x87_c01287{left:401.760000px;}
.x101_c01287{left:403.485000px;}
.xfb_c01287{left:405.210000px;}
.x8e_c01287{left:406.950000px;}
.xc3_c01287{left:410.400000px;}
.x39_c01287{left:412.125000px;}
.x1d_c01287{left:414.720000px;}
.x60_c01287{left:417.315000px;}
.xda_c01287{left:419.040000px;}
.x32_c01287{left:420.765000px;}
.xa1_c01287{left:423.360000px;}
.x8f_c01287{left:425.955000px;}
.x43_c01287{left:428.550000px;}
.x109_c01287{left:430.275000px;}
.xad_c01287{left:432.000000px;}
.x7a_c01287{left:435.450000px;}
.xf3_c01287{left:438.045000px;}
.x44_c01287{left:439.770000px;}
.xe1_c01287{left:442.365000px;}
.x59_c01287{left:445.830000px;}
.xdc_c01287{left:447.555000px;}
.x54_c01287{left:449.280000px;}
.xe7_c01287{left:453.600000px;}
.x95_c01287{left:456.195000px;}
.x7b_c01287{left:457.920000px;}
.x29_c01287{left:460.515000px;}
.xb3_c01287{left:462.240000px;}
.x16_c01287{left:463.965000px;}
.xc4_c01287{left:466.560000px;}
.xa_c01287{left:470.010000px;}
.x4b_c01287{left:471.750000px;}
.x1e_c01287{left:473.475000px;}
.xfc_c01287{left:475.200000px;}
.x80_c01287{left:476.925000px;}
.x90_c01287{left:479.520000px;}
.xa6_c01287{left:483.840000px;}
.xf9_c01287{left:486.435000px;}
.x69_c01287{left:489.885000px;}
.x88_c01287{left:491.610000px;}
.x107_c01287{left:493.350000px;}
.x4c_c01287{left:495.075000px;}
.xc5_c01287{left:496.800000px;}
.x3a_c01287{left:498.525000px;}
.xb_c01287{left:501.120000px;}
.x45_c01287{left:503.715000px;}
.x61_c01287{left:506.310000px;}
.x33_c01287{left:510.630000px;}
.xb4_c01287{left:513.210000px;}
.x1f_c01287{left:515.805000px;}
.x105_c01287{left:517.530000px;}
.x3b_c01287{left:519.270000px;}
.xae_c01287{left:520.995000px;}
.x5a_c01287{left:522.720000px;}
.x96_c01287{left:529.635000px;}
.xb5_c01287{left:531.360000px;}
.xfd_c01287{left:535.680000px;}
.x81_c01287{left:540.870000px;}
.xc_c01287{left:544.320000px;}
.xd4_c01287{left:546.045000px;}
.x62_c01287{left:548.640000px;}
.x20_c01287{left:551.235000px;}
.x71_c01287{left:553.830000px;}
.x5b_c01287{left:555.555000px;}
.x63_c01287{left:557.280525px;}
.x3c_c01287{left:559.005000px;}
.xe9_c01287{left:560.730000px;}
.x2_c01287{left:563.325000px;}
.x46_c01287{left:565.050000px;}
.x82_c01287{left:567.645000px;}
.x10a_c01287{left:572.835000px;}
.x97_c01287{left:575.430000px;}
.xaf_c01287{left:578.880000px;}
.x83_c01287{left:583.200000px;}
.x3d_c01287{left:584.925000px;}
.xcb_c01287{left:587.520000px;}
.x4d_c01287{left:590.115000px;}
.x108_c01287{left:591.840000px;}
.x2a_c01287{left:595.290000px;}
.x98_c01287{left:598.755000px;}
.x55_c01287{left:600.480000px;}
.x84_c01287{left:602.205000px;}
.x34_c01287{left:604.800000px;}
.xa7_c01287{left:607.395000px;}
.x5c_c01287{left:609.990000px;}
.xb0_c01287{left:611.715000px;}
.x3e_c01287{left:615.165000px;}
.x21_c01287{left:617.760000px;}
.xdd_c01287{left:620.355000px;}
.x10c_c01287{left:622.080000px;}
.xd_c01287{left:624.675000px;}
.xa2_c01287{left:629.850000px;}
.x47_c01287{left:632.445000px;}
.x2b_c01287{left:634.170000px;}
.xc6_c01287{left:637.635000px;}
.xfe_c01287{left:639.360000px;}
.x9c_c01287{left:643.680000px;}
.xf4_c01287{left:645.405000px;}
.xb9_c01287{left:648.000000px;}
.x4e_c01287{left:649.725000px;}
.x22_c01287{left:652.320000px;}
.x17_c01287{left:654.915000px;}
.xf5_c01287{left:656.640000px;}
.x102_c01287{left:661.830000px;}
.x5d_c01287{left:664.410000px;}
.x9d_c01287{left:666.150000px;}
.x6a_c01287{left:667.875000px;}
.xba_c01287{left:670.470000px;}
.xa3_c01287{left:673.920000px;}
.x4f_c01287{left:675.645000px;}
.x91_c01287{left:678.240000px;}
.xe_c01287{left:680.835000px;}
.x18_c01287{left:682.560000px;}
.xbb_c01287{left:684.285000px;}
.x56_c01287{left:686.880000px;}
.x35_c01287{left:691.200000px;}
.xff_c01287{left:695.520000px;}
.x72_c01287{left:698.115000px;}
.xc0_c01287{left:700.710000px;}
.xb6_c01287{left:702.435000px;}
.xa8_c01287{left:705.030000px;}
.xd5_c01287{left:708.480000px;}
.xbc_c01287{left:711.075000px;}
.x48_c01287{left:714.525000px;}
.x92_c01287{left:717.120000px;}
.x89_c01287{left:718.845000px;}
.x9e_c01287{left:720.570000px;}
.xf1_c01287{left:722.310000px;}
.x3f_c01287{left:725.760000px;}
.xf_c01287{left:727.485000px;}
.x73_c01287{left:729.210000px;}
.x2c_c01287{left:730.950000px;}
.x10_c01287{left:734.400000px;}
.x2d_c01287{left:738.720000px;}
.xa9_c01287{left:742.170000px;}
.x10b_c01287{left:745.635000px;}
.x8a_c01287{left:747.360000px;}
.xcc_c01287{left:749.085000px;}
.x23_c01287{left:751.680000px;}
.x74_c01287{left:754.275000px;}
.x36_c01287{left:756.000000px;}
.x7c_c01287{left:757.725000px;}
.xe8_c01287{left:759.450000px;}
.x119_c01287{left:761.190000px;}
.x85_c01287{left:763.770000px;}
.x2e_c01287{left:765.510000px;}
.xbd_c01287{left:767.235000px;}
.x100_c01287{left:768.960000px;}
.x50_c01287{left:770.685000px;}
.x11_c01287{left:774.150000px;}
.xea_c01287{left:776.730000px;}
.x51_c01287{left:778.470000px;}
.x7d_c01287{left:781.920000px;}
.xf6_c01287{left:783.645000px;}
.x19_c01287{left:785.370000px;}
.x2f_c01287{left:787.965000px;}
.x7e_c01287{left:789.690000px;}
.xee_c01287{left:791.430000px;}
.xc8_c01287{left:793.155000px;}
.xbe_c01287{left:794.880000px;}
.x24_c01287{left:797.475000px;}
.xde_c01287{left:800.925000px;}
.x1a_c01287{left:803.520000px;}
.x64_c01287{left:806.970000px;}
.xf0_c01287{left:809.565000px;}
.xaa_c01287{left:811.290000px;}
.xfa_c01287{left:813.030000px;}
.x30_c01287{left:814.755000px;}
.xec_c01287{left:816.480000px;}
.x5e_c01287{left:818.205000px;}
.xf7_c01287{left:822.525000px;}
.x3_c01287{left:825.990000px;}
.xed_c01287{left:827.715000px;}
.x86_c01287{left:829.440000px;}
.x99_c01287{left:832.035000px;}
.x57_c01287{left:833.760000px;}
.x1b_c01287{left:836.355000px;}
.x6b_c01287{left:838.080000px;}
.x75_c01287{left:839.805000px;}
.xf8_c01287{left:842.400000px;}
.xef_c01287{left:846.720000px;}
.x12_c01287{left:850.170000px;}
.x9f_c01287{left:855.360000px;}
.xd0_c01287{left:857.085000px;}
.x25_c01287{left:859.680000px;}
.x10d_c01287{left:864.870000px;}
.xe2_c01287{left:869.190000px;}
.xab_c01287{left:870.915000px;}
.x76_c01287{left:872.640000px;}
.x40_c01287{left:876.090000px;}
.xe5_c01287{left:878.685000px;}
.xc1_c01287{left:880.410000px;}
.xc9_c01287{left:886.470000px;}
.xcd_c01287{left:889.920000px;}
.xf2_c01287{left:891.645000px;}
.xd8_c01287{left:893.370000px;}
.x106_c01287{left:897.690000px;}
.xd6_c01287{left:906.330000px;}
.xca_c01287{left:909.795000px;}
.xce_c01287{left:914.115000px;}
@media print{
.v3_c01287{vertical-align:-6.186667pt;}
.v0_c01287{vertical-align:0.000000pt;}
.v1_c01287{vertical-align:12.266667pt;}
.v2_c01287{vertical-align:27.626667pt;}
.ls2_c01287{letter-spacing:0.000000pt;}
.ls0_c01287{letter-spacing:57.853056pt;}
.ls1_c01287{letter-spacing:59.726761pt;}
.ws0_c01287{word-spacing:-1.951733pt;}
.ws2_c01287{word-spacing:0.000000pt;}
.ws1_c01287{word-spacing:1.657653pt;}
.fse_c01287{font-size:3.072000pt;}
.fs1c_c01287{font-size:5.333333pt;}
.fs19_c01287{font-size:6.133333pt;}
.fs13_c01287{font-size:9.226667pt;}
.fs15_c01287{font-size:12.266667pt;}
.fs1a_c01287{font-size:15.360000pt;}
.fs17_c01287{font-size:18.453333pt;}
.fs16_c01287{font-size:21.493333pt;}
.fs1d_c01287{font-size:24.586667pt;}
.fsb_c01287{font-size:27.626667pt;}
.fs14_c01287{font-size:30.720000pt;}
.fs18_c01287{font-size:33.813333pt;}
.fs4_c01287{font-size:36.853333pt;}
.fs1b_c01287{font-size:39.946667pt;}
.fs9_c01287{font-size:42.986667pt;}
.fsd_c01287{font-size:46.080000pt;}
.fs7_c01287{font-size:49.173333pt;}
.fs8_c01287{font-size:52.213333pt;}
.fsc_c01287{font-size:55.306667pt;}
.fs11_c01287{font-size:58.346667pt;}
.fs6_c01287{font-size:61.440000pt;}
.fs1_c01287{font-size:64.533333pt;}
.fsa_c01287{font-size:67.573333pt;}
.fs3_c01287{font-size:70.666667pt;}
.fs5_c01287{font-size:73.706667pt;}
.fs10_c01287{font-size:76.800000pt;}
.fs12_c01287{font-size:79.893333pt;}
.fs0_c01287{font-size:82.933333pt;}
.fsf_c01287{font-size:86.026667pt;}
.fs1e_c01287{font-size:89.066667pt;}
.fs2_c01287{font-size:92.160000pt;}
.y0_c01287{bottom:0.000000pt;}
.y1e6_c01287{bottom:147.453333pt;}
.y1e5_c01287{bottom:149.760000pt;}
.y1e7_c01287{bottom:150.533333pt;}
.y1e4_c01287{bottom:151.293333pt;}
.y1e2_c01287{bottom:152.826667pt;}
.y1e1_c01287{bottom:153.600000pt;}
.y1df_c01287{bottom:154.373333pt;}
.y1de_c01287{bottom:155.133333pt;}
.y1e3_c01287{bottom:155.906667pt;}
.y1e0_c01287{bottom:157.440000pt;}
.y1dc_c01287{bottom:167.426667pt;}
.y1da_c01287{bottom:168.186667pt;}
.y1d9_c01287{bottom:168.960000pt;}
.y1d6_c01287{bottom:170.493333pt;}
.y1d8_c01287{bottom:172.026667pt;}
.y1db_c01287{bottom:172.800000pt;}
.y1d4_c01287{bottom:173.573333pt;}
.y1d7_c01287{bottom:180.480000pt;}
.y1d5_c01287{bottom:182.013333pt;}
.y1dd_c01287{bottom:184.320000pt;}
.y1d2_c01287{bottom:188.160000pt;}
.y1d1_c01287{bottom:189.693333pt;}
.y1d3_c01287{bottom:190.466667pt;}
.y1cf_c01287{bottom:191.226667pt;}
.y1cd_c01287{bottom:192.000000pt;}
.y1d0_c01287{bottom:195.840000pt;}
.y1ce_c01287{bottom:197.373333pt;}
.y1ca_c01287{bottom:208.893333pt;}
.y1cb_c01287{bottom:211.200000pt;}
.y1c8_c01287{bottom:213.506667pt;}
.y1c9_c01287{bottom:214.266667pt;}
.y1c6_c01287{bottom:215.040000pt;}
.y1c5_c01287{bottom:215.813333pt;}
.y1c7_c01287{bottom:216.573333pt;}
.y1c4_c01287{bottom:217.346667pt;}
.y1cc_c01287{bottom:222.720000pt;}
.y1c2_c01287{bottom:225.026667pt;}
.y1bf_c01287{bottom:226.560000pt;}
.y1c0_c01287{bottom:227.333333pt;}
.y1bb_c01287{bottom:230.400000pt;}
.y1c1_c01287{bottom:231.173333pt;}
.y1be_c01287{bottom:231.933333pt;}
.y1bc_c01287{bottom:232.706667pt;}
.y1ba_c01287{bottom:234.240000pt;}
.y1bd_c01287{bottom:235.013333pt;}
.y1c3_c01287{bottom:238.080000pt;}
.y1b9_c01287{bottom:242.693333pt;}
.y1b8_c01287{bottom:244.226667pt;}
.y1b6_c01287{bottom:245.760000pt;}
.y1b5_c01287{bottom:246.533333pt;}
.y1b3_c01287{bottom:247.293333pt;}
.y1b7_c01287{bottom:248.826667pt;}
.y1af_c01287{bottom:249.600000pt;}
.y1b0_c01287{bottom:251.133333pt;}
.y1b2_c01287{bottom:253.440000pt;}
.y1b1_c01287{bottom:254.213333pt;}
.y1b4_c01287{bottom:264.960000pt;}
.y1ac_c01287{bottom:266.493333pt;}
.y1ad_c01287{bottom:267.266667pt;}
.y1a7_c01287{bottom:268.800000pt;}
.y1a9_c01287{bottom:269.573333pt;}
.y1a8_c01287{bottom:270.333333pt;}
.y1ab_c01287{bottom:271.106667pt;}
.y1aa_c01287{bottom:271.866667pt;}
.y1ae_c01287{bottom:273.413333pt;}
.y1a6_c01287{bottom:282.626667pt;}
.y1a5_c01287{bottom:283.386667pt;}
.y19f_c01287{bottom:284.160000pt;}
.y1a0_c01287{bottom:284.933333pt;}
.y1a4_c01287{bottom:285.693333pt;}
.y19e_c01287{bottom:287.226667pt;}
.y1a3_c01287{bottom:288.000000pt;}
.y1a1_c01287{bottom:288.773333pt;}
.y1a2_c01287{bottom:289.533333pt;}
.y19d_c01287{bottom:291.066667pt;}
.y19c_c01287{bottom:296.453333pt;}
.y19a_c01287{bottom:297.213333pt;}
.y199_c01287{bottom:297.986667pt;}
.y198_c01287{bottom:298.746667pt;}
.y196_c01287{bottom:300.293333pt;}
.y195_c01287{bottom:301.053333pt;}
.y19b_c01287{bottom:303.360000pt;}
.y197_c01287{bottom:304.893333pt;}
.y194_c01287{bottom:308.733333pt;}
.y192_c01287{bottom:315.653333pt;}
.y18d_c01287{bottom:319.493333pt;}
.y193_c01287{bottom:321.026667pt;}
.y191_c01287{bottom:321.786667pt;}
.y190_c01287{bottom:323.333333pt;}
.y18f_c01287{bottom:324.866667pt;}
.y18e_c01287{bottom:325.626667pt;}
.y18c_c01287{bottom:333.306667pt;}
.y18a_c01287{bottom:335.613333pt;}
.y187_c01287{bottom:336.386667pt;}
.y18b_c01287{bottom:337.920000pt;}
.y189_c01287{bottom:338.693333pt;}
.y186_c01287{bottom:339.453333pt;}
.y188_c01287{bottom:342.533333pt;}
.y185_c01287{bottom:354.813333pt;}
.y183_c01287{bottom:356.346667pt;}
.y181_c01287{bottom:357.893333pt;}
.y184_c01287{bottom:359.426667pt;}
.y182_c01287{bottom:367.106667pt;}
.y17f_c01287{bottom:370.173333pt;}
.y17d_c01287{bottom:370.946667pt;}
.y17a_c01287{bottom:372.480000pt;}
.y179_c01287{bottom:373.253333pt;}
.y17b_c01287{bottom:374.013333pt;}
.y17e_c01287{bottom:375.546667pt;}
.y17c_c01287{bottom:377.093333pt;}
.y177_c01287{bottom:377.853333pt;}
.y178_c01287{bottom:381.693333pt;}
.y180_c01287{bottom:386.306667pt;}
.y175_c01287{bottom:388.613333pt;}
.y174_c01287{bottom:389.373333pt;}
.y173_c01287{bottom:390.146667pt;}
.y171_c01287{bottom:390.906667pt;}
.y172_c01287{bottom:391.680000pt;}
.y16a_c01287{bottom:392.453333pt;}
.y16e_c01287{bottom:393.213333pt;}
.y16b_c01287{bottom:393.986667pt;}
.y16f_c01287{bottom:395.520000pt;}
.y16d_c01287{bottom:397.053333pt;}
.y16c_c01287{bottom:398.586667pt;}
.y176_c01287{bottom:401.666667pt;}
.y170_c01287{bottom:402.426667pt;}
.y168_c01287{bottom:407.040000pt;}
.y167_c01287{bottom:407.813333pt;}
.y169_c01287{bottom:408.573333pt;}
.y166_c01287{bottom:409.346667pt;}
.y164_c01287{bottom:410.880000pt;}
.y165_c01287{bottom:417.026667pt;}
.y163_c01287{bottom:417.786667pt;}
.y161_c01287{bottom:424.706667pt;}
.y15e_c01287{bottom:427.773333pt;}
.y15f_c01287{bottom:428.546667pt;}
.y162_c01287{bottom:429.306667pt;}
.y15d_c01287{bottom:430.080000pt;}
.y15c_c01287{bottom:430.853333pt;}
.y160_c01287{bottom:437.760000pt;}
.y159_c01287{bottom:443.133333pt;}
.y153_c01287{bottom:444.666667pt;}
.y154_c01287{bottom:445.440000pt;}
.y152_c01287{bottom:446.213333pt;}
.y158_c01287{bottom:446.973333pt;}
.y157_c01287{bottom:447.746667pt;}
.y15a_c01287{bottom:448.506667pt;}
.y156_c01287{bottom:449.280000pt;}
.y155_c01287{bottom:451.586667pt;}
.y151_c01287{bottom:453.120000pt;}
.y15b_c01287{bottom:456.960000pt;}
.y150_c01287{bottom:460.800000pt;}
.y14e_c01287{bottom:463.106667pt;}
.y148_c01287{bottom:464.640000pt;}
.y14a_c01287{bottom:465.413333pt;}
.y14b_c01287{bottom:466.173333pt;}
.y14c_c01287{bottom:466.946667pt;}
.y149_c01287{bottom:467.706667pt;}
.y14d_c01287{bottom:468.480000pt;}
.y146_c01287{bottom:478.466667pt;}
.y147_c01287{bottom:479.226667pt;}
.y14f_c01287{bottom:480.773333pt;}
.y144_c01287{bottom:481.533333pt;}
.y143_c01287{bottom:483.066667pt;}
.y145_c01287{bottom:483.840000pt;}
.y142_c01287{bottom:488.453333pt;}
.y13f_c01287{bottom:498.426667pt;}
.y13d_c01287{bottom:499.200000pt;}
.y13c_c01287{bottom:499.973333pt;}
.y13b_c01287{bottom:501.506667pt;}
.y140_c01287{bottom:503.040000pt;}
.y13e_c01287{bottom:503.813333pt;}
.y13a_c01287{bottom:505.346667pt;}
.y141_c01287{bottom:512.253333pt;}
.y139_c01287{bottom:514.560000pt;}
.y138_c01287{bottom:516.866667pt;}
.y136_c01287{bottom:517.626667pt;}
.y135_c01287{bottom:519.173333pt;}
.y134_c01287{bottom:519.933333pt;}
.y137_c01287{bottom:520.706667pt;}
.y133_c01287{bottom:523.773333pt;}
.y131_c01287{bottom:532.226667pt;}
.y130_c01287{bottom:535.293333pt;}
.y12d_c01287{bottom:536.066667pt;}
.y132_c01287{bottom:536.826667pt;}
.y12c_c01287{bottom:537.600000pt;}
.y12b_c01287{bottom:538.373333pt;}
.y12f_c01287{bottom:539.133333pt;}
.y12e_c01287{bottom:539.906667pt;}
.y12a_c01287{bottom:549.120000pt;}
.y127_c01287{bottom:552.186667pt;}
.y125_c01287{bottom:552.960000pt;}
.y126_c01287{bottom:553.733333pt;}
.y123_c01287{bottom:554.493333pt;}
.y129_c01287{bottom:555.266667pt;}
.y124_c01287{bottom:556.026667pt;}
.y128_c01287{bottom:556.800000pt;}
.y122_c01287{bottom:569.093333pt;}
.y121_c01287{bottom:569.853333pt;}
.y11f_c01287{bottom:571.386667pt;}
.y11c_c01287{bottom:572.160000pt;}
.y11d_c01287{bottom:572.933333pt;}
.y11a_c01287{bottom:574.466667pt;}
.y120_c01287{bottom:575.226667pt;}
.y11e_c01287{bottom:576.773333pt;}
.y11b_c01287{bottom:577.533333pt;}
.y117_c01287{bottom:588.293333pt;}
.y112_c01287{bottom:589.053333pt;}
.y10f_c01287{bottom:590.586667pt;}
.y119_c01287{bottom:591.360000pt;}
.y118_c01287{bottom:592.133333pt;}
.y116_c01287{bottom:592.893333pt;}
.y115_c01287{bottom:593.666667pt;}
.y111_c01287{bottom:594.426667pt;}
.y110_c01287{bottom:595.200000pt;}
.y113_c01287{bottom:598.266667pt;}
.y114_c01287{bottom:602.106667pt;}
.y10e_c01287{bottom:605.186667pt;}
.y10d_c01287{bottom:605.946667pt;}
.y10a_c01287{bottom:607.493333pt;}
.y109_c01287{bottom:608.253333pt;}
.y10c_c01287{bottom:610.560000pt;}
.y10b_c01287{bottom:611.333333pt;}
.y107_c01287{bottom:620.546667pt;}
.y106_c01287{bottom:621.306667pt;}
.y105_c01287{bottom:622.080000pt;}
.y103_c01287{bottom:622.853333pt;}
.y101_c01287{bottom:623.613333pt;}
.y108_c01287{bottom:625.146667pt;}
.y102_c01287{bottom:626.693333pt;}
.y104_c01287{bottom:628.226667pt;}
.y100_c01287{bottom:640.506667pt;}
.yff_c01287{bottom:642.053333pt;}
.yfc_c01287{bottom:643.586667pt;}
.yf9_c01287{bottom:645.120000pt;}
.yfa_c01287{bottom:645.893333pt;}
.yfd_c01287{bottom:647.426667pt;}
.yfb_c01287{bottom:648.960000pt;}
.yfe_c01287{bottom:655.866667pt;}
.yf8_c01287{bottom:658.173333pt;}
.yf3_c01287{bottom:660.480000pt;}
.yf4_c01287{bottom:661.253333pt;}
.yf5_c01287{bottom:664.320000pt;}
.yf6_c01287{bottom:665.093333pt;}
.yf2_c01287{bottom:666.626667pt;}
.yf7_c01287{bottom:669.693333pt;}
.yf0_c01287{bottom:678.906667pt;}
.yea_c01287{bottom:679.680000pt;}
.yf1_c01287{bottom:681.213333pt;}
.yef_c01287{bottom:681.986667pt;}
.yee_c01287{bottom:682.746667pt;}
.yed_c01287{bottom:683.520000pt;}
.yeb_c01287{bottom:684.293333pt;}
.yec_c01287{bottom:685.053333pt;}
.ye8_c01287{bottom:689.666667pt;}
.ye7_c01287{bottom:690.426667pt;}
.ye6_c01287{bottom:693.506667pt;}
.ye4_c01287{bottom:694.266667pt;}
.ye2_c01287{bottom:695.040000pt;}
.ye9_c01287{bottom:696.573333pt;}
.ye3_c01287{bottom:698.106667pt;}
.ye5_c01287{bottom:703.493333pt;}
.ydf_c01287{bottom:711.933333pt;}
.ydd_c01287{bottom:712.706667pt;}
.ye1_c01287{bottom:713.466667pt;}
.yde_c01287{bottom:714.240000pt;}
.ydb_c01287{bottom:715.013333pt;}
.ydc_c01287{bottom:716.546667pt;}
.ye0_c01287{bottom:717.306667pt;}
.yd9_c01287{bottom:718.853333pt;}
.yda_c01287{bottom:719.613333pt;}
.y1f0_c01287{bottom:721.146667pt;}
.yd8_c01287{bottom:723.453333pt;}
.yd7_c01287{bottom:730.373333pt;}
.yd4_c01287{bottom:732.666667pt;}
.yd3_c01287{bottom:733.440000pt;}
.yd5_c01287{bottom:734.213333pt;}
.yd0_c01287{bottom:734.973333pt;}
.yd6_c01287{bottom:735.746667pt;}
.yd1_c01287{bottom:736.506667pt;}
.yd2_c01287{bottom:737.280000pt;}
.ycf_c01287{bottom:738.053333pt;}
.yce_c01287{bottom:744.186667pt;}
.ycd_c01287{bottom:748.026667pt;}
.ycc_c01287{bottom:749.573333pt;}
.yc6_c01287{bottom:751.106667pt;}
.yc9_c01287{bottom:751.866667pt;}
.yc7_c01287{bottom:752.640000pt;}
.ycb_c01287{bottom:753.413333pt;}
.yca_c01287{bottom:754.173333pt;}
.yc5_c01287{bottom:754.946667pt;}
.ybc_c01287{bottom:756.480000pt;}
.ybe_c01287{bottom:757.253333pt;}
.yc8_c01287{bottom:758.013333pt;}
.yc3_c01287{bottom:758.786667pt;}
.yc2_c01287{bottom:760.320000pt;}
.yc0_c01287{bottom:761.853333pt;}
.yc4_c01287{bottom:762.626667pt;}
.ybd_c01287{bottom:763.386667pt;}
.yc1_c01287{bottom:764.160000pt;}
.ybf_c01287{bottom:767.226667pt;}
.yba_c01287{bottom:768.000000pt;}
.yb8_c01287{bottom:768.773333pt;}
.yb7_c01287{bottom:769.533333pt;}
.yb5_c01287{bottom:770.306667pt;}
.ybb_c01287{bottom:771.066667pt;}
.yb9_c01287{bottom:772.613333pt;}
.yb6_c01287{bottom:774.146667pt;}
.yb4_c01287{bottom:774.906667pt;}
.yb3_c01287{bottom:785.666667pt;}
.yad_c01287{bottom:787.973333pt;}
.yae_c01287{bottom:788.733333pt;}
.yb2_c01287{bottom:790.266667pt;}
.yb1_c01287{bottom:791.040000pt;}
.yaf_c01287{bottom:791.813333pt;}
.yac_c01287{bottom:792.573333pt;}
.yb0_c01287{bottom:796.413333pt;}
.yaa_c01287{bottom:803.333333pt;}
.ya8_c01287{bottom:804.093333pt;}
.ya7_c01287{bottom:804.866667pt;}
.ya4_c01287{bottom:806.400000pt;}
.ya9_c01287{bottom:807.173333pt;}
.yab_c01287{bottom:807.933333pt;}
.ya5_c01287{bottom:808.706667pt;}
.ya3_c01287{bottom:809.466667pt;}
.ya2_c01287{bottom:810.240000pt;}
.ya6_c01287{bottom:814.853333pt;}
.y9f_c01287{bottom:821.760000pt;}
.ya1_c01287{bottom:823.293333pt;}
.y9c_c01287{bottom:824.066667pt;}
.y9b_c01287{bottom:825.600000pt;}
.ya0_c01287{bottom:827.133333pt;}
.y9e_c01287{bottom:827.906667pt;}
.y9a_c01287{bottom:828.666667pt;}
.y9d_c01287{bottom:837.893333pt;}
.y98_c01287{bottom:839.426667pt;}
.y99_c01287{bottom:840.186667pt;}
.y96_c01287{bottom:841.733333pt;}
.y94_c01287{bottom:842.493333pt;}
.y93_c01287{bottom:843.266667pt;}
.y97_c01287{bottom:845.573333pt;}
.y95_c01287{bottom:846.333333pt;}
.y92_c01287{bottom:847.106667pt;}
.y90_c01287{bottom:856.320000pt;}
.y8e_c01287{bottom:857.093333pt;}
.y8d_c01287{bottom:857.853333pt;}
.y8c_c01287{bottom:858.626667pt;}
.y88_c01287{bottom:859.386667pt;}
.y8b_c01287{bottom:860.160000pt;}
.y87_c01287{bottom:860.933333pt;}
.y8f_c01287{bottom:861.693333pt;}
.y89_c01287{bottom:862.466667pt;}
.y8a_c01287{bottom:864.000000pt;}
.y91_c01287{bottom:869.373333pt;}
.y84_c01287{bottom:875.520000pt;}
.y85_c01287{bottom:876.293333pt;}
.y7d_c01287{bottom:877.053333pt;}
.y81_c01287{bottom:877.826667pt;}
.y7c_c01287{bottom:878.586667pt;}
.y82_c01287{bottom:879.360000pt;}
.y7f_c01287{bottom:880.893333pt;}
.y80_c01287{bottom:881.666667pt;}
.y7e_c01287{bottom:882.426667pt;}
.y1ef_c01287{bottom:883.973333pt;}
.y86_c01287{bottom:884.733333pt;}
.y1ee_c01287{bottom:885.506667pt;}
.y7b_c01287{bottom:890.880000pt;}
.y83_c01287{bottom:891.653333pt;}
.y7a_c01287{bottom:893.186667pt;}
.y77_c01287{bottom:895.493333pt;}
.y76_c01287{bottom:897.786667pt;}
.y79_c01287{bottom:899.333333pt;}
.y78_c01287{bottom:900.093333pt;}
.y75_c01287{bottom:908.546667pt;}
.y73_c01287{bottom:910.853333pt;}
.y6f_c01287{bottom:911.613333pt;}
.y70_c01287{bottom:913.920000pt;}
.y6e_c01287{bottom:914.693333pt;}
.y74_c01287{bottom:916.226667pt;}
.y71_c01287{bottom:917.760000pt;}
.y72_c01287{bottom:922.373333pt;}
.y6c_c01287{bottom:934.653333pt;}
.y6b_c01287{bottom:935.426667pt;}
.y6a_c01287{bottom:936.186667pt;}
.y1ec_c01287{bottom:939.266667pt;}
.y1ed_c01287{bottom:940.800000pt;}
.y6d_c01287{bottom:943.106667pt;}
.y67_c01287{bottom:947.706667pt;}
.y62_c01287{bottom:948.480000pt;}
.y61_c01287{bottom:949.253333pt;}
.y68_c01287{bottom:950.013333pt;}
.y60_c01287{bottom:950.786667pt;}
.y64_c01287{bottom:951.546667pt;}
.y66_c01287{bottom:952.320000pt;}
.y63_c01287{bottom:953.853333pt;}
.y69_c01287{bottom:955.386667pt;}
.y5f_c01287{bottom:956.933333pt;}
.y5e_c01287{bottom:963.066667pt;}
.y65_c01287{bottom:963.840000pt;}
.y5d_c01287{bottom:965.373333pt;}
.y5b_c01287{bottom:966.146667pt;}
.y5a_c01287{bottom:966.906667pt;}
.y57_c01287{bottom:967.680000pt;}
.y56_c01287{bottom:968.453333pt;}
.y59_c01287{bottom:969.213333pt;}
.y5c_c01287{bottom:970.746667pt;}
.y58_c01287{bottom:971.520000pt;}
.y55_c01287{bottom:982.266667pt;}
.y53_c01287{bottom:983.040000pt;}
.y52_c01287{bottom:983.813333pt;}
.y50_c01287{bottom:984.573333pt;}
.y54_c01287{bottom:988.413333pt;}
.y51_c01287{bottom:989.186667pt;}
.y4f_c01287{bottom:998.400000pt;}
.y4a_c01287{bottom:1001.466667pt;}
.y4d_c01287{bottom:1003.013333pt;}
.y49_c01287{bottom:1004.546667pt;}
.y4e_c01287{bottom:1005.306667pt;}
.y48_c01287{bottom:1006.853333pt;}
.y4b_c01287{bottom:1007.613333pt;}
.y4c_c01287{bottom:1013.760000pt;}
.y45_c01287{bottom:1019.133333pt;}
.y44_c01287{bottom:1019.906667pt;}
.y43_c01287{bottom:1020.666667pt;}
.y42_c01287{bottom:1022.213333pt;}
.y46_c01287{bottom:1022.973333pt;}
.y47_c01287{bottom:1023.746667pt;}
.y41_c01287{bottom:1024.506667pt;}
.y40_c01287{bottom:1036.800000pt;}
.y3e_c01287{bottom:1037.573333pt;}
.y3a_c01287{bottom:1039.106667pt;}
.y39_c01287{bottom:1040.640000pt;}
.y3f_c01287{bottom:1042.173333pt;}
.y3c_c01287{bottom:1042.946667pt;}
.y3d_c01287{bottom:1043.706667pt;}
.y3b_c01287{bottom:1044.480000pt;}
.y38_c01287{bottom:1055.226667pt;}
.y37_c01287{bottom:1058.306667pt;}
.y36_c01287{bottom:1059.066667pt;}
.y33_c01287{bottom:1060.613333pt;}
.y34_c01287{bottom:1061.373333pt;}
.y35_c01287{bottom:1062.146667pt;}
.y32_c01287{bottom:1070.586667pt;}
.y31_c01287{bottom:1073.666667pt;}
.y30_c01287{bottom:1074.426667pt;}
.y2b_c01287{bottom:1075.200000pt;}
.y29_c01287{bottom:1076.733333pt;}
.y2d_c01287{bottom:1077.506667pt;}
.y2f_c01287{bottom:1078.266667pt;}
.y2a_c01287{bottom:1079.813333pt;}
.y2c_c01287{bottom:1080.573333pt;}
.y2e_c01287{bottom:1082.880000pt;}
.y27_c01287{bottom:1089.786667pt;}
.y24_c01287{bottom:1092.093333pt;}
.y26_c01287{bottom:1093.626667pt;}
.y28_c01287{bottom:1095.173333pt;}
.y25_c01287{bottom:1096.706667pt;}
.y20_c01287{bottom:1110.533333pt;}
.y1f_c01287{bottom:1111.293333pt;}
.y1e_c01287{bottom:1112.066667pt;}
.y22_c01287{bottom:1112.826667pt;}
.y23_c01287{bottom:1113.600000pt;}
.y21_c01287{bottom:1114.373333pt;}
.y1d_c01287{bottom:1115.906667pt;}
.y1c_c01287{bottom:1124.346667pt;}
.y19_c01287{bottom:1125.893333pt;}
.y15_c01287{bottom:1127.426667pt;}
.y1b_c01287{bottom:1128.186667pt;}
.y17_c01287{bottom:1128.960000pt;}
.y13_c01287{bottom:1129.733333pt;}
.y14_c01287{bottom:1132.026667pt;}
.y1a_c01287{bottom:1132.800000pt;}
.y18_c01287{bottom:1133.573333pt;}
.y16_c01287{bottom:1135.106667pt;}
.y10_c01287{bottom:1141.253333pt;}
.ye_c01287{bottom:1142.013333pt;}
.y11_c01287{bottom:1142.786667pt;}
.yd_c01287{bottom:1143.546667pt;}
.y12_c01287{bottom:1145.093333pt;}
.yf_c01287{bottom:1145.853333pt;}
.yc_c01287{bottom:1146.626667pt;}
.yb_c01287{bottom:1155.840000pt;}
.y9_c01287{bottom:1164.293333pt;}
.y7_c01287{bottom:1165.053333pt;}
.y4_c01287{bottom:1165.826667pt;}
.y5_c01287{bottom:1166.586667pt;}
.y3_c01287{bottom:1168.133333pt;}
.ya_c01287{bottom:1168.893333pt;}
.y6_c01287{bottom:1170.426667pt;}
.y8_c01287{bottom:1171.200000pt;}
.y2_c01287{bottom:1188.093333pt;}
.y1_c01287{bottom:1192.706667pt;}
.y1eb_c01287{bottom:1213.440000pt;}
.y1ea_c01287{bottom:1214.973333pt;}
.y1e9_c01287{bottom:1221.120000pt;}
.y1f7_c01287{bottom:1234.946667pt;}
.y1f8_c01287{bottom:1238.013333pt;}
.y1e8_c01287{bottom:1244.160000pt;}
.y1f5_c01287{bottom:1254.906667pt;}
.y1f6_c01287{bottom:1255.680000pt;}
.y1f4_c01287{bottom:1257.213333pt;}
.y1f3_c01287{bottom:1271.040000pt;}
.y1f2_c01287{bottom:1281.786667pt;}
.y1f1_c01287{bottom:1283.333333pt;}
.h10_c01287{height:2.764500pt;}
.h1e_c01287{height:4.799479pt;}
.h1b_c01287{height:5.519401pt;}
.h15_c01287{height:8.303099pt;}
.h17_c01287{height:11.038802pt;}
.h1c_c01287{height:13.822500pt;}
.h21_c01287{height:15.031167pt;}
.h19_c01287{height:16.606198pt;}
.h18_c01287{height:19.341901pt;}
.h1f_c01287{height:22.125599pt;}
.hd_c01287{height:24.861302pt;}
.h16_c01287{height:27.645000pt;}
.h1a_c01287{height:30.428698pt;}
.h5_c01287{height:33.164401pt;}
.h1d_c01287{height:35.948099pt;}
.ha_c01287{height:38.683802pt;}
.hf_c01287{height:41.467500pt;}
.h8_c01287{height:44.251198pt;}
.h9_c01287{height:46.986901pt;}
.he_c01287{height:49.770599pt;}
.h13_c01287{height:52.506302pt;}
.h7_c01287{height:55.290000pt;}
.hb_c01287{height:58.073698pt;}
.hc_c01287{height:60.809401pt;}
.h4_c01287{height:63.593099pt;}
.h6_c01287{height:66.328802pt;}
.h12_c01287{height:69.112500pt;}
.h14_c01287{height:71.896198pt;}
.h2_c01287{height:74.631901pt;}
.h11_c01287{height:77.415599pt;}
.h20_c01287{height:80.151302pt;}
.h3_c01287{height:82.935000pt;}
.h0_c01287{height:1341.693333pt;}
.h1_c01287{height:1342.000000pt;}
.w0_c01287{width:967.680000pt;}
.w1_c01287{width:968.000000pt;}
.x0_c01287{left:0.000000pt;}
.x110_c01287{left:34.560000pt;}
.x111_c01287{left:52.986667pt;}
.x113_c01287{left:60.666667pt;}
.x117_c01287{left:63.746667pt;}
.x114_c01287{left:68.346667pt;}
.x118_c01287{left:72.186667pt;}
.x115_c01287{left:118.266667pt;}
.x10f_c01287{left:128.252480pt;}
.x116_c01287{left:137.466667pt;}
.x10e_c01287{left:143.613333pt;}
.x112_c01287{left:145.146667pt;}
.x6c_c01287{left:176.640000pt;}
.x65_c01287{left:188.933333pt;}
.x77_c01287{left:195.066667pt;}
.x13_c01287{left:197.373333pt;}
.x9a_c01287{left:198.906667pt;}
.x8b_c01287{left:200.453333pt;}
.xe3_c01287{left:203.520000pt;}
.x78_c01287{left:205.053333pt;}
.x26_c01287{left:207.360000pt;}
.x4_c01287{left:208.893333pt;}
.xc7_c01287{left:211.200000pt;}
.xe6_c01287{left:220.413333pt;}
.xa4_c01287{left:222.720000pt;}
.x5_c01287{left:224.253333pt;}
.x52_c01287{left:226.560000pt;}
.xb7_c01287{left:230.400000pt;}
.x6d_c01287{left:233.466667pt;}
.x8c_c01287{left:235.013333pt;}
.x27_c01287{left:238.080000pt;}
.x79_c01287{left:241.146667pt;}
.xd1_c01287{left:242.693333pt;}
.x6_c01287{left:244.226667pt;}
.x93_c01287{left:245.760000pt;}
.xb8_c01287{left:247.293333pt;}
.xd7_c01287{left:248.826667pt;}
.x28_c01287{left:250.373333pt;}
.x94_c01287{left:253.440000pt;}
.x9b_c01287{left:254.973333pt;}
.x14_c01287{left:256.506667pt;}
.x66_c01287{left:258.053333pt;}
.x7_c01287{left:261.893333pt;}
.x104_c01287{left:264.960000pt;}
.x49_c01287{left:267.266667pt;}
.x41_c01287{left:268.800000pt;}
.x5f_c01287{left:271.106667pt;}
.x1c_c01287{left:273.413333pt;}
.xb1_c01287{left:274.946667pt;}
.x53_c01287{left:276.480000pt;}
.x8d_c01287{left:278.786667pt;}
.x37_c01287{left:280.320000pt;}
.xd2_c01287{left:282.626667pt;}
.x6e_c01287{left:284.933333pt;}
.xdf_c01287{left:286.466667pt;}
.xe4_c01287{left:288.773333pt;}
.x58_c01287{left:290.306667pt;}
.xeb_c01287{left:291.840000pt;}
.xac_c01287{left:293.373333pt;}
.xe0_c01287{left:299.520000pt;}
.xa5_c01287{left:301.826667pt;}
.x38_c01287{left:304.133333pt;}
.xdb_c01287{left:306.426667pt;}
.xd9_c01287{left:308.733333pt;}
.x1_c01287{left:310.266667pt;}
.xc2_c01287{left:312.573333pt;}
.x67_c01287{left:317.186667pt;}
.x8_c01287{left:318.720000pt;}
.x31_c01287{left:321.786667pt;}
.x15_c01287{left:324.866667pt;}
.x6f_c01287{left:327.933333pt;}
.x9_c01287{left:331.013333pt;}
.x70_c01287{left:334.080000pt;}
.xbf_c01287{left:335.613333pt;}
.x4a_c01287{left:337.920000pt;}
.xb2_c01287{left:340.226667pt;}
.x68_c01287{left:343.293333pt;}
.x7f_c01287{left:345.600000pt;}
.x103_c01287{left:347.133333pt;}
.x42_c01287{left:349.440000pt;}
.xd3_c01287{left:351.746667pt;}
.xa0_c01287{left:353.280000pt;}
.xcf_c01287{left:355.586667pt;}
.x87_c01287{left:357.120000pt;}
.x101_c01287{left:358.653333pt;}
.xfb_c01287{left:360.186667pt;}
.x8e_c01287{left:361.733333pt;}
.xc3_c01287{left:364.800000pt;}
.x39_c01287{left:366.333333pt;}
.x1d_c01287{left:368.640000pt;}
.x60_c01287{left:370.946667pt;}
.xda_c01287{left:372.480000pt;}
.x32_c01287{left:374.013333pt;}
.xa1_c01287{left:376.320000pt;}
.x8f_c01287{left:378.626667pt;}
.x43_c01287{left:380.933333pt;}
.x109_c01287{left:382.466667pt;}
.xad_c01287{left:384.000000pt;}
.x7a_c01287{left:387.066667pt;}
.xf3_c01287{left:389.373333pt;}
.x44_c01287{left:390.906667pt;}
.xe1_c01287{left:393.213333pt;}
.x59_c01287{left:396.293333pt;}
.xdc_c01287{left:397.826667pt;}
.x54_c01287{left:399.360000pt;}
.xe7_c01287{left:403.200000pt;}
.x95_c01287{left:405.506667pt;}
.x7b_c01287{left:407.040000pt;}
.x29_c01287{left:409.346667pt;}
.xb3_c01287{left:410.880000pt;}
.x16_c01287{left:412.413333pt;}
.xc4_c01287{left:414.720000pt;}
.xa_c01287{left:417.786667pt;}
.x4b_c01287{left:419.333333pt;}
.x1e_c01287{left:420.866667pt;}
.xfc_c01287{left:422.400000pt;}
.x80_c01287{left:423.933333pt;}
.x90_c01287{left:426.240000pt;}
.xa6_c01287{left:430.080000pt;}
.xf9_c01287{left:432.386667pt;}
.x69_c01287{left:435.453333pt;}
.x88_c01287{left:436.986667pt;}
.x107_c01287{left:438.533333pt;}
.x4c_c01287{left:440.066667pt;}
.xc5_c01287{left:441.600000pt;}
.x3a_c01287{left:443.133333pt;}
.xb_c01287{left:445.440000pt;}
.x45_c01287{left:447.746667pt;}
.x61_c01287{left:450.053333pt;}
.x33_c01287{left:453.893333pt;}
.xb4_c01287{left:456.186667pt;}
.x1f_c01287{left:458.493333pt;}
.x105_c01287{left:460.026667pt;}
.x3b_c01287{left:461.573333pt;}
.xae_c01287{left:463.106667pt;}
.x5a_c01287{left:464.640000pt;}
.x96_c01287{left:470.786667pt;}
.xb5_c01287{left:472.320000pt;}
.xfd_c01287{left:476.160000pt;}
.x81_c01287{left:480.773333pt;}
.xc_c01287{left:483.840000pt;}
.xd4_c01287{left:485.373333pt;}
.x62_c01287{left:487.680000pt;}
.x20_c01287{left:489.986667pt;}
.x71_c01287{left:492.293333pt;}
.x5b_c01287{left:493.826667pt;}
.x63_c01287{left:495.360467pt;}
.x3c_c01287{left:496.893333pt;}
.xe9_c01287{left:498.426667pt;}
.x2_c01287{left:500.733333pt;}
.x46_c01287{left:502.266667pt;}
.x82_c01287{left:504.573333pt;}
.x10a_c01287{left:509.186667pt;}
.x97_c01287{left:511.493333pt;}
.xaf_c01287{left:514.560000pt;}
.x83_c01287{left:518.400000pt;}
.x3d_c01287{left:519.933333pt;}
.xcb_c01287{left:522.240000pt;}
.x4d_c01287{left:524.546667pt;}
.x108_c01287{left:526.080000pt;}
.x2a_c01287{left:529.146667pt;}
.x98_c01287{left:532.226667pt;}
.x55_c01287{left:533.760000pt;}
.x84_c01287{left:535.293333pt;}
.x34_c01287{left:537.600000pt;}
.xa7_c01287{left:539.906667pt;}
.x5c_c01287{left:542.213333pt;}
.xb0_c01287{left:543.746667pt;}
.x3e_c01287{left:546.813333pt;}
.x21_c01287{left:549.120000pt;}
.xdd_c01287{left:551.426667pt;}
.x10c_c01287{left:552.960000pt;}
.xd_c01287{left:555.266667pt;}
.xa2_c01287{left:559.866667pt;}
.x47_c01287{left:562.173333pt;}
.x2b_c01287{left:563.706667pt;}
.xc6_c01287{left:566.786667pt;}
.xfe_c01287{left:568.320000pt;}
.x9c_c01287{left:572.160000pt;}
.xf4_c01287{left:573.693333pt;}
.xb9_c01287{left:576.000000pt;}
.x4e_c01287{left:577.533333pt;}
.x22_c01287{left:579.840000pt;}
.x17_c01287{left:582.146667pt;}
.xf5_c01287{left:583.680000pt;}
.x102_c01287{left:588.293333pt;}
.x5d_c01287{left:590.586667pt;}
.x9d_c01287{left:592.133333pt;}
.x6a_c01287{left:593.666667pt;}
.xba_c01287{left:595.973333pt;}
.xa3_c01287{left:599.040000pt;}
.x4f_c01287{left:600.573333pt;}
.x91_c01287{left:602.880000pt;}
.xe_c01287{left:605.186667pt;}
.x18_c01287{left:606.720000pt;}
.xbb_c01287{left:608.253333pt;}
.x56_c01287{left:610.560000pt;}
.x35_c01287{left:614.400000pt;}
.xff_c01287{left:618.240000pt;}
.x72_c01287{left:620.546667pt;}
.xc0_c01287{left:622.853333pt;}
.xb6_c01287{left:624.386667pt;}
.xa8_c01287{left:626.693333pt;}
.xd5_c01287{left:629.760000pt;}
.xbc_c01287{left:632.066667pt;}
.x48_c01287{left:635.133333pt;}
.x92_c01287{left:637.440000pt;}
.x89_c01287{left:638.973333pt;}
.x9e_c01287{left:640.506667pt;}
.xf1_c01287{left:642.053333pt;}
.x3f_c01287{left:645.120000pt;}
.xf_c01287{left:646.653333pt;}
.x73_c01287{left:648.186667pt;}
.x2c_c01287{left:649.733333pt;}
.x10_c01287{left:652.800000pt;}
.x2d_c01287{left:656.640000pt;}
.xa9_c01287{left:659.706667pt;}
.x10b_c01287{left:662.786667pt;}
.x8a_c01287{left:664.320000pt;}
.xcc_c01287{left:665.853333pt;}
.x23_c01287{left:668.160000pt;}
.x74_c01287{left:670.466667pt;}
.x36_c01287{left:672.000000pt;}
.x7c_c01287{left:673.533333pt;}
.xe8_c01287{left:675.066667pt;}
.x119_c01287{left:676.613333pt;}
.x85_c01287{left:678.906667pt;}
.x2e_c01287{left:680.453333pt;}
.xbd_c01287{left:681.986667pt;}
.x100_c01287{left:683.520000pt;}
.x50_c01287{left:685.053333pt;}
.x11_c01287{left:688.133333pt;}
.xea_c01287{left:690.426667pt;}
.x51_c01287{left:691.973333pt;}
.x7d_c01287{left:695.040000pt;}
.xf6_c01287{left:696.573333pt;}
.x19_c01287{left:698.106667pt;}
.x2f_c01287{left:700.413333pt;}
.x7e_c01287{left:701.946667pt;}
.xee_c01287{left:703.493333pt;}
.xc8_c01287{left:705.026667pt;}
.xbe_c01287{left:706.560000pt;}
.x24_c01287{left:708.866667pt;}
.xde_c01287{left:711.933333pt;}
.x1a_c01287{left:714.240000pt;}
.x64_c01287{left:717.306667pt;}
.xf0_c01287{left:719.613333pt;}
.xaa_c01287{left:721.146667pt;}
.xfa_c01287{left:722.693333pt;}
.x30_c01287{left:724.226667pt;}
.xec_c01287{left:725.760000pt;}
.x5e_c01287{left:727.293333pt;}
.xf7_c01287{left:731.133333pt;}
.x3_c01287{left:734.213333pt;}
.xed_c01287{left:735.746667pt;}
.x86_c01287{left:737.280000pt;}
.x99_c01287{left:739.586667pt;}
.x57_c01287{left:741.120000pt;}
.x1b_c01287{left:743.426667pt;}
.x6b_c01287{left:744.960000pt;}
.x75_c01287{left:746.493333pt;}
.xf8_c01287{left:748.800000pt;}
.xef_c01287{left:752.640000pt;}
.x12_c01287{left:755.706667pt;}
.x9f_c01287{left:760.320000pt;}
.xd0_c01287{left:761.853333pt;}
.x25_c01287{left:764.160000pt;}
.x10d_c01287{left:768.773333pt;}
.xe2_c01287{left:772.613333pt;}
.xab_c01287{left:774.146667pt;}
.x76_c01287{left:775.680000pt;}
.x40_c01287{left:778.746667pt;}
.xe5_c01287{left:781.053333pt;}
.xc1_c01287{left:782.586667pt;}
.xc9_c01287{left:787.973333pt;}
.xcd_c01287{left:791.040000pt;}
.xf2_c01287{left:792.573333pt;}
.xd8_c01287{left:794.106667pt;}
.x106_c01287{left:797.946667pt;}
.xd6_c01287{left:805.626667pt;}
.xca_c01287{left:808.706667pt;}
.xce_c01287{left:812.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_674070f075701e264dd4eea6.woff2')format("woff");}.ff1_c01288{font-family:ff1_c01288;line-height:1.109863;font-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_c01288{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c01288{transform:matrix(0.073200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073200,0.000000,0.000000,0.250000,0,0);}
.m37_c01288{transform:matrix(0.075475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075475,0.000000,0.000000,0.250000,0,0);}
.m89_c01288{transform:matrix(0.078400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078400,0.000000,0.000000,0.250000,0,0);}
.m125_c01288{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m87_c01288{transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);}
.mc7_c01288{transform:matrix(0.092625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092625,0.000000,0.000000,0.250000,0,0);}
.mf9_c01288{transform:matrix(0.095025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095025,0.000000,0.000000,0.250000,0,0);}
.m8a_c01288{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);}
.m153_c01288{transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);}
.mc6_c01288{transform:matrix(0.098775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098775,0.000000,0.000000,0.250000,0,0);}
.m86_c01288{transform:matrix(0.101475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101475,0.000000,0.000000,0.250000,0,0);}
.mcb_c01288{transform:matrix(0.104325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104325,0.000000,0.000000,0.250000,0,0);}
.m121_c01288{transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);}
.m15c_c01288{transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);}
.m32_c01288{transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);}
.m193_c01288{transform:matrix(0.113575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113575,0.000000,0.000000,0.250000,0,0);}
.m25_c01288{transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115425,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01288{transform:matrix(0.117100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117100,0.000000,0.000000,0.250000,0,0);}
.m198_c01288{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m3b_c01288{transform:matrix(0.119125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119125,0.000000,0.000000,0.250000,0,0);}
.m15b_c01288{transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);}
.m18d_c01288{transform:matrix(0.119700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119700,0.000000,0.000000,0.250000,0,0);}
.m13a_c01288{transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);}
.mc1_c01288{transform:matrix(0.120200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120200,0.000000,0.000000,0.250000,0,0);}
.mad_c01288{transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);}
.mbd_c01288{transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);}
.mfa_c01288{transform:matrix(0.122850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122850,0.000000,0.000000,0.250000,0,0);}
.m1af_c01288{transform:matrix(0.122925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122925,0.000000,0.000000,0.250000,0,0);}
.mc4_c01288{transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);}
.m44_c01288{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m18b_c01288{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);}
.m196_c01288{transform:matrix(0.125650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125650,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01288{transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);}
.me2_c01288{transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);}
.m47_c01288{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.mba_c01288{transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);}
.ma7_c01288{transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);}
.m8b_c01288{transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);}
.mf4_c01288{transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);}
.m127_c01288{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);}
.m197_c01288{transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);}
.m19f_c01288{transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);}
.m180_c01288{transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);}
.mc5_c01288{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m59_c01288{transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130875,0.000000,0.000000,0.250000,0,0);}
.m167_c01288{transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);}
.m48_c01288{transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);}
.m186_c01288{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);}
.mdf_c01288{transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01288{transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);}
.m11f_c01288{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mfb_c01288{transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);}
.m19b_c01288{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);}
.ma8_c01288{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m9c_c01288{transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);}
.m176_c01288{transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);}
.m84_c01288{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);}
.m148_c01288{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01288{transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);}
.m66_c01288{transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);}
.md2_c01288{transform:matrix(0.140975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140975,0.000000,0.000000,0.250000,0,0);}
.ma2_c01288{transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);}
.m128_c01288{transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);}
.m5_c01288{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01288{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.me6_c01288{transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01288{transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);}
.me7_c01288{transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);}
.m13d_c01288{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);}
.m129_c01288{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.mea_c01288{transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01288{transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);}
.mc0_c01288{transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);}
.m120_c01288{transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);}
.m151_c01288{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m42_c01288{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m83_c01288{transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);}
.mc8_c01288{transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151550,0.000000,0.000000,0.250000,0,0);}
.m177_c01288{transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);}
.m155_c01288{transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);}
.m154_c01288{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.mfd_c01288{transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153775,0.000000,0.000000,0.250000,0,0);}
.m10b_c01288{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.ma5_c01288{transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);}
.mab_c01288{transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);}
.m136_c01288{transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);}
.m109_c01288{transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);}
.m152_c01288{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);}
.mca_c01288{transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);}
.mce_c01288{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.m13b_c01288{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);}
.m71_c01288{transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);}
.m35_c01288{transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);}
.m17a_c01288{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.m8f_c01288{transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);}
.m13e_c01288{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.m131_c01288{transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);}
.m57_c01288{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m45_c01288{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.m182_c01288{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.mcf_c01288{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m33_c01288{transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);}
.ma6_c01288{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m18f_c01288{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);}
.m4e_c01288{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m17e_c01288{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);}
.m43_c01288{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.ma3_c01288{transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);}
.m185_c01288{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);}
.m19_c01288{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);}
.m67_c01288{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01288{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.m99_c01288{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m104_c01288{transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);}
.mcc_c01288{transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);}
.mb8_c01288{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);}
.m195_c01288{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.m6c_c01288{transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);}
.m15a_c01288{transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);}
.m8_c01288{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m107_c01288{transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);}
.m19c_c01288{transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);}
.m8e_c01288{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.m17f_c01288{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.md6_c01288{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01288{transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);}
.m10c_c01288{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.m13c_c01288{transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);}
.md9_c01288{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m102_c01288{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.m165_c01288{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01288{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);}
.mcd_c01288{transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);}
.m16a_c01288{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);}
.m63_c01288{transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);}
.m100_c01288{transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);}
.m14f_c01288{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m4a_c01288{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m164_c01288{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.m141_c01288{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.m101_c01288{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.m39_c01288{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);}
.m122_c01288{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);}
.md_c01288{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);}
.md0_c01288{transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178850,0.000000,0.000000,0.250000,0,0);}
.m98_c01288{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.me8_c01288{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.m191_c01288{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);}
.m3d_c01288{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m15f_c01288{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m4c_c01288{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.mfc_c01288{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);}
.m3c_c01288{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m34_c01288{transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);}
.mb1_c01288{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);}
.meb_c01288{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.maf_c01288{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m138_c01288{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m95_c01288{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);}
.m173_c01288{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);}
.m139_c01288{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.mec_c01288{transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);}
.m158_c01288{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m179_c01288{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);}
.me_c01288{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);}
.m15e_c01288{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.me1_c01288{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m11d_c01288{transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188425,0.000000,0.000000,0.250000,0,0);}
.m97_c01288{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m11b_c01288{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);}
.mbe_c01288{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.md3_c01288{transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01288{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);}
.m189_c01288{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.m78_c01288{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m41_c01288{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m183_c01288{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.m75_c01288{transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);}
.m7e_c01288{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.m53_c01288{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mb4_c01288{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m12d_c01288{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.m178_c01288{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m116_c01288{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.m19e_c01288{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m3a_c01288{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);}
.mfe_c01288{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);}
.m18c_c01288{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.me0_c01288{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m7_c01288{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);}
.m199_c01288{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);}
.m103_c01288{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m18e_c01288{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);}
.m108_c01288{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.m134_c01288{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.m5e_c01288{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.mae_c01288{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);}
.mff_c01288{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.mf6_c01288{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m15_c01288{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);}
.m175_c01288{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m11c_c01288{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m181_c01288{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.mb2_c01288{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);}
.m2e_c01288{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);}
.mac_c01288{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.m19d_c01288{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.mf8_c01288{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m10d_c01288{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);}
.m55_c01288{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);}
.m91_c01288{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);}
.m194_c01288{transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);}
.mee_c01288{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m21_c01288{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m171_c01288{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);}
.m126_c01288{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.m10a_c01288{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);}
.m159_c01288{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);}
.m93_c01288{transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);}
.m9d_c01288{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);}
.m190_c01288{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);}
.m124_c01288{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);}
.m9a_c01288{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m119_c01288{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);}
.m123_c01288{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);}
.mb3_c01288{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m3f_c01288{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.md5_c01288{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);}
.m14_c01288{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m16_c01288{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);}
.m1ac_c01288{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01288{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_c01288{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);}
.m110_c01288{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m54_c01288{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.m16f_c01288{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);}
.m1a4_c01288{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.me9_c01288{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.mda_c01288{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m52_c01288{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m4b_c01288{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);}
.md4_c01288{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);}
.m8d_c01288{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);}
.med_c01288{transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);}
.m18_c01288{transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214975,0.000000,0.000000,0.250000,0,0);}
.m132_c01288{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.md8_c01288{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);}
.m61_c01288{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);}
.m7c_c01288{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);}
.m156_c01288{transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);}
.m9e_c01288{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);}
.m36_c01288{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);}
.m16e_c01288{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);}
.m68_c01288{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);}
.m82_c01288{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.mb9_c01288{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);}
.me3_c01288{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);}
.m13f_c01288{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);}
.m16c_c01288{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m166_c01288{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);}
.ma4_c01288{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.m14e_c01288{transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);}
.m6a_c01288{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);}
.m2f_c01288{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m187_c01288{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m14c_c01288{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);}
.m8c_c01288{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);}
.m29_c01288{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.mc9_c01288{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);}
.m118_c01288{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.m163_c01288{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m92_c01288{transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);}
.m192_c01288{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);}
.m1_c01288{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m188_c01288{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m16b_c01288{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m28_c01288{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);}
.m113_c01288{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);}
.m12f_c01288{transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);}
.mb5_c01288{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.m14b_c01288{transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);}
.mef_c01288{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);}
.m115_c01288{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);}
.m10e_c01288{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.me5_c01288{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);}
.m14d_c01288{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);}
.md7_c01288{transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);}
.m15d_c01288{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.mbf_c01288{transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);}
.m80_c01288{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);}
.m12e_c01288{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.m161_c01288{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.m27_c01288{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);}
.m19a_c01288{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m56_c01288{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);}
.m5f_c01288{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);}
.m1a6_c01288{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);}
.m11e_c01288{transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);}
.m143_c01288{transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);}
.m130_c01288{transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);}
.ma0_c01288{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);}
.m11a_c01288{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.m114_c01288{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m157_c01288{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);}
.m77_c01288{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);}
.m168_c01288{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m16d_c01288{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);}
.m10f_c01288{transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);}
.mdb_c01288{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);}
.m7b_c01288{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.mb0_c01288{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_c01288{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);}
.m17d_c01288{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);}
.mc_c01288{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.m3e_c01288{transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);}
.m105_c01288{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);}
.m5c_c01288{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);}
.m17c_c01288{transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);}
.md1_c01288{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);}
.ma9_c01288{transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);}
.m40_c01288{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);}
.m150_c01288{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);}
.m2a_c01288{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m81_c01288{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m9f_c01288{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m1e_c01288{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);}
.m169_c01288{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m111_c01288{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);}
.m17b_c01288{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.mc3_c01288{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);}
.m49_c01288{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);}
.m2_c01288{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6_c01288{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);}
.m6f_c01288{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);}
.m24_c01288{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);}
.m23_c01288{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);}
.m31_c01288{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7d_c01288{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m12b_c01288{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01288{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);}
.m9b_c01288{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m70_c01288{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);}
.m62_c01288{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);}
.m79_c01288{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m60_c01288{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);}
.m2c_c01288{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01288{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mdd_c01288{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);}
.m17_c01288{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01288{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);}
.m30_c01288{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);}
.m5d_c01288{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01288{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m94_c01288{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);}
.mf1_c01288{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m11_c01288{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb6_c01288{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);}
.m4f_c01288{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12_c01288{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01288{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m112_c01288{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01288{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13_c01288{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01288{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m20_c01288{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m58_c01288{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);}
.m85_c01288{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mf3_c01288{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m65_c01288{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m50_c01288{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);}
.m106_c01288{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mf2_c01288{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m51_c01288{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);}
.m133_c01288{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m0_c01288{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m117_c01288{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m38_c01288{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m140_c01288{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01288{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);}
.m142_c01288{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01288{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);}
.mf0_c01288{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.me4_c01288{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m172_c01288{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);}
.m12c_c01288{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m12a_c01288{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m135_c01288{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c01288{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m69_c01288{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01288{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);}
.m76_c01288{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);}
.mbb_c01288{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01288{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mc2_c01288{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);}
.m162_c01288{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m64_c01288{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m46_c01288{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m74_c01288{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mf5_c01288{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01288{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m88_c01288{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01288{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m160_c01288{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m26_c01288{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mde_c01288{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.maa_c01288{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);}
.m1aa_c01288{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mdc_c01288{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);}
.ma1_c01288{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01288{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mbc_c01288{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01288{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma_c01288{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);}
.m184_c01288{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m144_c01288{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m90_c01288{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.mf_c01288{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m3_c01288{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01288{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m147_c01288{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m96_c01288{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m174_c01288{transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);}
.m72_c01288{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01288{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.mf7_c01288{transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01288{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m137_c01288{transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);}
.m73_c01288{transform:matrix(1.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.877500,0.000000,0.000000,0.250000,0,0);}
.m18a_c01288{transform:matrix(2.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.002500,0.000000,0.000000,0.250000,0,0);}
.m149_c01288{transform:matrix(2.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.215000,0.000000,0.000000,0.250000,0,0);}
.m146_c01288{transform:matrix(2.390000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.390000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.390000,0.000000,0.000000,0.250000,0,0);}
.m145_c01288{transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01288{transform:matrix(3.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.487500,0.000000,0.000000,0.250000,0,0);}
.m14a_c01288{transform:matrix(3.745000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.745000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.745000,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01288{transform:matrix(4.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.327500,0.000000,0.000000,0.250000,0,0);}
.m170_c01288{transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.040000,0.000000,0.000000,0.250000,0,0);}
.v1_c01288{vertical-align:-6.900000px;}
.v0_c01288{vertical-align:0.000000px;}
.ls1_c01288{letter-spacing:0.000000px;}
.ls0_c01288{letter-spacing:30.202740px;}
.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:-24.210540px;}
.ws1_c01288{word-spacing:-11.191027px;}
.ws2_c01288{word-spacing:0.000000px;}
.fc0_c01288{color:transparent;}
.fs5_c01288{font-size:3.456000px;}
.fsd_c01288{font-size:6.000000px;}
.fs16_c01288{font-size:6.900000px;}
.fsc_c01288{font-size:10.380000px;}
.fs18_c01288{font-size:13.800000px;}
.fs1a_c01288{font-size:17.280000px;}
.fs12_c01288{font-size:20.760000px;}
.fs1b_c01288{font-size:24.180000px;}
.fs21_c01288{font-size:27.660000px;}
.fs3_c01288{font-size:31.080000px;}
.fse_c01288{font-size:34.560000px;}
.fs13_c01288{font-size:38.040000px;}
.fs11_c01288{font-size:41.460000px;}
.fs1c_c01288{font-size:44.940000px;}
.fs15_c01288{font-size:48.360000px;}
.fsf_c01288{font-size:51.840000px;}
.fs9_c01288{font-size:55.320000px;}
.fs7_c01288{font-size:58.740000px;}
.fs14_c01288{font-size:62.220000px;}
.fs6_c01288{font-size:65.640000px;}
.fsa_c01288{font-size:69.120000px;}
.fs0_c01288{font-size:72.600000px;}
.fs8_c01288{font-size:76.020000px;}
.fs10_c01288{font-size:79.500000px;}
.fs4_c01288{font-size:82.920000px;}
.fs19_c01288{font-size:86.400000px;}
.fs1d_c01288{font-size:89.880000px;}
.fs17_c01288{font-size:93.300000px;}
.fsb_c01288{font-size:96.780000px;}
.fs22_c01288{font-size:100.200000px;}
.fs1f_c01288{font-size:103.680000px;}
.fs20_c01288{font-size:107.160000px;}
.fs1e_c01288{font-size:110.580000px;}
.fs2_c01288{font-size:117.480000px;}
.fs1_c01288{font-size:124.440000px;}
.fs23_c01288{font-size:131.340000px;}
.y0_c01288{bottom:0.000000px;}
.y1b3_c01288{bottom:95.910000px;}
.y1b2_c01288{bottom:98.490000px;}
.y1aa_c01288{bottom:156.390000px;}
.y1a9_c01288{bottom:158.970000px;}
.y1a2_c01288{bottom:160.710000px;}
.y1a6_c01288{bottom:165.030000px;}
.y1a8_c01288{bottom:165.885000px;}
.y1a5_c01288{bottom:167.610000px;}
.y1a7_c01288{bottom:169.350000px;}
.y1a1_c01288{bottom:170.205000px;}
.y1a4_c01288{bottom:172.800000px;}
.y1a0_c01288{bottom:173.670000px;}
.y1a3_c01288{bottom:174.525000px;}
.y19e_c01288{bottom:176.250000px;}
.y19b_c01288{bottom:177.990000px;}
.y19c_c01288{bottom:178.845000px;}
.y19d_c01288{bottom:182.310000px;}
.y19f_c01288{bottom:184.035000px;}
.y19a_c01288{bottom:192.675000px;}
.y198_c01288{bottom:196.125000px;}
.y199_c01288{bottom:197.850000px;}
.y197_c01288{bottom:198.720000px;}
.y193_c01288{bottom:199.590000px;}
.y196_c01288{bottom:201.315000px;}
.y195_c01288{bottom:202.170000px;}
.y194_c01288{bottom:203.040000px;}
.y192_c01288{bottom:204.765000px;}
.y191_c01288{bottom:211.680000px;}
.y18b_c01288{bottom:214.275000px;}
.y18c_c01288{bottom:215.130000px;}
.y18d_c01288{bottom:217.725000px;}
.y18e_c01288{bottom:218.595000px;}
.y189_c01288{bottom:219.450000px;}
.y190_c01288{bottom:221.190000px;}
.y18f_c01288{bottom:222.045000px;}
.y18a_c01288{bottom:224.640000px;}
.y184_c01288{bottom:237.600000px;}
.y188_c01288{bottom:238.470000px;}
.y187_c01288{bottom:239.325000px;}
.y186_c01288{bottom:240.195000px;}
.y185_c01288{bottom:241.050000px;}
.y183_c01288{bottom:243.645000px;}
.y182_c01288{bottom:254.880000px;}
.y180_c01288{bottom:257.475000px;}
.y17c_c01288{bottom:258.330000px;}
.y17e_c01288{bottom:259.200000px;}
.y181_c01288{bottom:261.795000px;}
.y17f_c01288{bottom:263.520000px;}
.y17d_c01288{bottom:264.390000px;}
.y176_c01288{bottom:276.480000px;}
.y174_c01288{bottom:278.205000px;}
.y175_c01288{bottom:279.075000px;}
.y172_c01288{bottom:279.930000px;}
.y178_c01288{bottom:280.800000px;}
.y17b_c01288{bottom:281.670000px;}
.y177_c01288{bottom:282.525000px;}
.y17a_c01288{bottom:283.395000px;}
.y179_c01288{bottom:284.250000px;}
.y173_c01288{bottom:285.120000px;}
.y170_c01288{bottom:298.950000px;}
.y16c_c01288{bottom:299.805000px;}
.y16d_c01288{bottom:300.675000px;}
.y16f_c01288{bottom:304.995000px;}
.y16e_c01288{bottom:305.850000px;}
.y171_c01288{bottom:306.720000px;}
.y165_c01288{bottom:311.040000px;}
.y16a_c01288{bottom:318.810000px;}
.y169_c01288{bottom:319.680000px;}
.y16b_c01288{bottom:320.550000px;}
.y168_c01288{bottom:321.405000px;}
.y167_c01288{bottom:323.130000px;}
.y164_c01288{bottom:324.000000px;}
.y166_c01288{bottom:325.725000px;}
.y161_c01288{bottom:346.470000px;}
.y163_c01288{bottom:353.370000px;}
.y162_c01288{bottom:359.430000px;}
.y15f_c01288{bottom:360.285000px;}
.y15b_c01288{bottom:362.010000px;}
.y15c_c01288{bottom:363.750000px;}
.y160_c01288{bottom:365.475000px;}
.y15e_c01288{bottom:366.330000px;}
.y15d_c01288{bottom:367.200000px;}
.y158_c01288{bottom:381.885000px;}
.y15a_c01288{bottom:383.610000px;}
.y159_c01288{bottom:387.075000px;}
.y157_c01288{bottom:399.165000px;}
.y155_c01288{bottom:401.760000px;}
.y152_c01288{bottom:402.630000px;}
.y151_c01288{bottom:404.355000px;}
.y153_c01288{bottom:406.950000px;}
.y154_c01288{bottom:407.805000px;}
.y156_c01288{bottom:419.040000px;}
.y150_c01288{bottom:419.910000px;}
.y14f_c01288{bottom:421.635000px;}
.y14b_c01288{bottom:422.490000px;}
.y149_c01288{bottom:423.360000px;}
.y14d_c01288{bottom:425.085000px;}
.y14e_c01288{bottom:427.680000px;}
.y14a_c01288{bottom:428.550000px;}
.y148_c01288{bottom:429.405000px;}
.y14c_c01288{bottom:438.045000px;}
.y146_c01288{bottom:442.365000px;}
.y142_c01288{bottom:444.090000px;}
.y141_c01288{bottom:444.960000px;}
.y147_c01288{bottom:447.555000px;}
.y145_c01288{bottom:448.410000px;}
.y144_c01288{bottom:449.280000px;}
.y143_c01288{bottom:450.150000px;}
.y13f_c01288{bottom:463.965000px;}
.y13a_c01288{bottom:464.835000px;}
.y13c_c01288{bottom:465.690000px;}
.y13e_c01288{bottom:466.560000px;}
.y13b_c01288{bottom:467.430000px;}
.y137_c01288{bottom:468.285000px;}
.y140_c01288{bottom:469.155000px;}
.y138_c01288{bottom:470.010000px;}
.y139_c01288{bottom:470.880000px;}
.y13d_c01288{bottom:471.750000px;}
.y134_c01288{bottom:483.840000px;}
.y133_c01288{bottom:485.565000px;}
.y12f_c01288{bottom:486.435000px;}
.y130_c01288{bottom:487.290000px;}
.y135_c01288{bottom:488.160000px;}
.y132_c01288{bottom:489.885000px;}
.y131_c01288{bottom:490.755000px;}
.y136_c01288{bottom:496.800000px;}
.y12e_c01288{bottom:502.845000px;}
.y12c_c01288{bottom:503.715000px;}
.y128_c01288{bottom:506.310000px;}
.y129_c01288{bottom:508.035000px;}
.y12d_c01288{bottom:508.890000px;}
.y12b_c01288{bottom:509.760000px;}
.y12a_c01288{bottom:510.630000px;}
.y126_c01288{bottom:511.485000px;}
.y127_c01288{bottom:515.805000px;}
.y122_c01288{bottom:516.675000px;}
.y123_c01288{bottom:520.125000px;}
.y124_c01288{bottom:520.995000px;}
.y125_c01288{bottom:521.850000px;}
.y11d_c01288{bottom:523.590000px;}
.y11e_c01288{bottom:526.170000px;}
.y11f_c01288{bottom:527.040000px;}
.y11b_c01288{bottom:527.910000px;}
.y120_c01288{bottom:529.635000px;}
.y121_c01288{bottom:530.490000px;}
.y11c_c01288{bottom:531.360000px;}
.y11a_c01288{bottom:544.320000px;}
.y119_c01288{bottom:545.190000px;}
.y115_c01288{bottom:546.045000px;}
.y118_c01288{bottom:548.640000px;}
.y116_c01288{bottom:552.090000px;}
.y117_c01288{bottom:553.830000px;}
.y114_c01288{bottom:565.050000px;}
.y113_c01288{bottom:565.920000px;}
.y110_c01288{bottom:567.645000px;}
.y10f_c01288{bottom:568.515000px;}
.y10e_c01288{bottom:569.370000px;}
.y112_c01288{bottom:570.240000px;}
.y111_c01288{bottom:571.965000px;}
.y10a_c01288{bottom:586.650000px;}
.y109_c01288{bottom:587.520000px;}
.y108_c01288{bottom:589.245000px;}
.y10c_c01288{bottom:591.840000px;}
.y107_c01288{bottom:592.710000px;}
.y10b_c01288{bottom:600.480000px;}
.y10d_c01288{bottom:603.075000px;}
.y106_c01288{bottom:606.525000px;}
.y105_c01288{bottom:607.395000px;}
.y101_c01288{bottom:608.250000px;}
.y103_c01288{bottom:611.715000px;}
.y102_c01288{bottom:618.630000px;}
.y104_c01288{bottom:626.400000px;}
.yff_c01288{bottom:627.270000px;}
.yfd_c01288{bottom:628.125000px;}
.y100_c01288{bottom:628.995000px;}
.yfc_c01288{bottom:632.445000px;}
.yfe_c01288{bottom:633.315000px;}
.yf9_c01288{bottom:648.000000px;}
.yf7_c01288{bottom:648.870000px;}
.yf5_c01288{bottom:649.725000px;}
.yfa_c01288{bottom:651.450000px;}
.yf6_c01288{bottom:652.320000px;}
.yfb_c01288{bottom:653.190000px;}
.yf8_c01288{bottom:654.045000px;}
.yf4_c01288{bottom:666.150000px;}
.yf3_c01288{bottom:667.005000px;}
.yf0_c01288{bottom:667.875000px;}
.yef_c01288{bottom:668.730000px;}
.yf1_c01288{bottom:669.600000px;}
.yf2_c01288{bottom:673.050000px;}
.yee_c01288{bottom:686.010000px;}
.yea_c01288{bottom:686.880000px;}
.ye9_c01288{bottom:687.750000px;}
.yeb_c01288{bottom:688.605000px;}
.ye7_c01288{bottom:689.475000px;}
.yec_c01288{bottom:691.200000px;}
.yed_c01288{bottom:692.070000px;}
.ye8_c01288{bottom:693.795000px;}
.ye2_c01288{bottom:705.885000px;}
.ye4_c01288{bottom:707.610000px;}
.ye0_c01288{bottom:708.480000px;}
.ye1_c01288{bottom:709.350000px;}
.ye3_c01288{bottom:710.205000px;}
.ydf_c01288{bottom:711.075000px;}
.ye6_c01288{bottom:714.525000px;}
.ye5_c01288{bottom:727.485000px;}
.yda_c01288{bottom:728.355000px;}
.yde_c01288{bottom:730.080000px;}
.ydd_c01288{bottom:732.675000px;}
.ydc_c01288{bottom:733.530000px;}
.ydb_c01288{bottom:734.400000px;}
.yd4_c01288{bottom:749.085000px;}
.yd9_c01288{bottom:749.955000px;}
.yd8_c01288{bottom:751.680000px;}
.yd3_c01288{bottom:752.550000px;}
.yd7_c01288{bottom:753.405000px;}
.yd5_c01288{bottom:754.275000px;}
.yd2_c01288{bottom:755.130000px;}
.yd6_c01288{bottom:756.870000px;}
.y1b0_c01288{bottom:758.595000px;}
.y1b1_c01288{bottom:762.915000px;}
.yd1_c01288{bottom:766.365000px;}
.yd0_c01288{bottom:767.235000px;}
.ycb_c01288{bottom:769.830000px;}
.ycf_c01288{bottom:773.280000px;}
.ycd_c01288{bottom:774.150000px;}
.yce_c01288{bottom:775.005000px;}
.ycc_c01288{bottom:775.875000px;}
.yc6_c01288{bottom:789.690000px;}
.yc8_c01288{bottom:790.560000px;}
.yc5_c01288{bottom:791.430000px;}
.yca_c01288{bottom:793.155000px;}
.yc9_c01288{bottom:794.010000px;}
.yc7_c01288{bottom:794.880000px;}
.yc4_c01288{bottom:795.750000px;}
.yc3_c01288{bottom:806.970000px;}
.yc2_c01288{bottom:809.565000px;}
.yc0_c01288{bottom:810.435000px;}
.ybf_c01288{bottom:813.030000px;}
.yc1_c01288{bottom:815.610000px;}
.ybe_c01288{bottom:827.715000px;}
.ybb_c01288{bottom:829.440000px;}
.yb8_c01288{bottom:832.035000px;}
.yba_c01288{bottom:832.890000px;}
.ybd_c01288{bottom:833.760000px;}
.ybc_c01288{bottom:835.485000px;}
.yb9_c01288{bottom:836.355000px;}
.yb2_c01288{bottom:843.270000px;}
.yb4_c01288{bottom:844.995000px;}
.yb3_c01288{bottom:845.850000px;}
.yb6_c01288{bottom:846.720000px;}
.yb1_c01288{bottom:847.590000px;}
.yb5_c01288{bottom:851.040000px;}
.yb7_c01288{bottom:853.635000px;}
.yae_c01288{bottom:869.190000px;}
.yaa_c01288{bottom:870.045000px;}
.yab_c01288{bottom:870.915000px;}
.yac_c01288{bottom:871.770000px;}
.yaf_c01288{bottom:874.365000px;}
.yad_c01288{bottom:875.235000px;}
.ya9_c01288{bottom:877.830000px;}
.yb0_c01288{bottom:886.470000px;}
.ya5_c01288{bottom:888.195000px;}
.ya7_c01288{bottom:889.050000px;}
.ya1_c01288{bottom:890.790000px;}
.ya2_c01288{bottom:891.645000px;}
.ya4_c01288{bottom:893.370000px;}
.ya8_c01288{bottom:894.240000px;}
.ya3_c01288{bottom:895.965000px;}
.ya6_c01288{bottom:897.690000px;}
.y9d_c01288{bottom:909.795000px;}
.y9b_c01288{bottom:910.650000px;}
.y9a_c01288{bottom:911.520000px;}
.y99_c01288{bottom:913.245000px;}
.y9c_c01288{bottom:914.115000px;}
.y9f_c01288{bottom:914.970000px;}
.ya0_c01288{bottom:915.840000px;}
.y9e_c01288{bottom:916.710000px;}
.y1af_c01288{bottom:922.755000px;}
.y1ae_c01288{bottom:927.075000px;}
.y98_c01288{bottom:928.800000px;}
.y94_c01288{bottom:930.525000px;}
.y95_c01288{bottom:931.395000px;}
.y90_c01288{bottom:933.120000px;}
.y91_c01288{bottom:933.990000px;}
.y97_c01288{bottom:935.715000px;}
.y92_c01288{bottom:936.570000px;}
.y93_c01288{bottom:937.440000px;}
.y96_c01288{bottom:940.035000px;}
.y8f_c01288{bottom:949.530000px;}
.y8e_c01288{bottom:951.270000px;}
.y8a_c01288{bottom:952.125000px;}
.y8d_c01288{bottom:952.995000px;}
.y89_c01288{bottom:953.850000px;}
.y8c_c01288{bottom:956.445000px;}
.y8b_c01288{bottom:957.315000px;}
.y86_c01288{bottom:971.130000px;}
.y82_c01288{bottom:972.870000px;}
.y88_c01288{bottom:974.595000px;}
.y84_c01288{bottom:975.450000px;}
.y87_c01288{bottom:976.320000px;}
.y83_c01288{bottom:977.190000px;}
.y85_c01288{bottom:978.045000px;}
.y7f_c01288{bottom:986.685000px;}
.y7c_c01288{bottom:988.410000px;}
.y7d_c01288{bottom:989.280000px;}
.y7b_c01288{bottom:990.150000px;}
.y80_c01288{bottom:992.730000px;}
.y81_c01288{bottom:993.600000px;}
.y7e_c01288{bottom:997.050000px;}
.y79_c01288{bottom:1011.750000px;}
.y7a_c01288{bottom:1016.070000px;}
.y77_c01288{bottom:1016.925000px;}
.y76_c01288{bottom:1018.650000px;}
.y75_c01288{bottom:1019.520000px;}
.y78_c01288{bottom:1028.160000px;}
.y72_c01288{bottom:1031.610000px;}
.y73_c01288{bottom:1032.480000px;}
.y6d_c01288{bottom:1034.205000px;}
.y71_c01288{bottom:1035.075000px;}
.y6e_c01288{bottom:1036.800000px;}
.y70_c01288{bottom:1038.525000px;}
.y74_c01288{bottom:1041.120000px;}
.y6f_c01288{bottom:1051.485000px;}
.y69_c01288{bottom:1053.210000px;}
.y68_c01288{bottom:1054.080000px;}
.y67_c01288{bottom:1054.950000px;}
.y6a_c01288{bottom:1055.805000px;}
.y6b_c01288{bottom:1056.675000px;}
.y6c_c01288{bottom:1058.400000px;}
.y66_c01288{bottom:1060.125000px;}
.y65_c01288{bottom:1068.765000px;}
.y63_c01288{bottom:1073.955000px;}
.y61_c01288{bottom:1074.810000px;}
.y5f_c01288{bottom:1075.680000px;}
.y62_c01288{bottom:1077.405000px;}
.y60_c01288{bottom:1080.000000px;}
.y64_c01288{bottom:1080.870000px;}
.y5d_c01288{bottom:1092.960000px;}
.y5c_c01288{bottom:1094.685000px;}
.y59_c01288{bottom:1095.555000px;}
.y5e_c01288{bottom:1096.410000px;}
.y5b_c01288{bottom:1099.875000px;}
.y5a_c01288{bottom:1100.730000px;}
.y57_c01288{bottom:1113.690000px;}
.y56_c01288{bottom:1114.560000px;}
.y55_c01288{bottom:1115.430000px;}
.y53_c01288{bottom:1116.285000px;}
.y54_c01288{bottom:1121.475000px;}
.y58_c01288{bottom:1132.710000px;}
.y51_c01288{bottom:1134.435000px;}
.y4f_c01288{bottom:1136.160000px;}
.y50_c01288{bottom:1138.755000px;}
.y52_c01288{bottom:1139.610000px;}
.y4e_c01288{bottom:1141.350000px;}
.y4c_c01288{bottom:1142.205000px;}
.y4d_c01288{bottom:1146.525000px;}
.y4b_c01288{bottom:1153.440000px;}
.y48_c01288{bottom:1154.310000px;}
.y4a_c01288{bottom:1156.890000px;}
.y45_c01288{bottom:1157.760000px;}
.y46_c01288{bottom:1158.630000px;}
.y49_c01288{bottom:1159.485000px;}
.y47_c01288{bottom:1162.080000px;}
.y43_c01288{bottom:1173.315000px;}
.y41_c01288{bottom:1175.910000px;}
.y3f_c01288{bottom:1176.765000px;}
.y3e_c01288{bottom:1178.490000px;}
.y3c_c01288{bottom:1179.360000px;}
.y42_c01288{bottom:1180.230000px;}
.y3b_c01288{bottom:1181.955000px;}
.y3d_c01288{bottom:1182.810000px;}
.y44_c01288{bottom:1183.680000px;}
.y40_c01288{bottom:1187.130000px;}
.y39_c01288{bottom:1193.190000px;}
.y38_c01288{bottom:1194.045000px;}
.y37_c01288{bottom:1196.640000px;}
.y34_c01288{bottom:1197.510000px;}
.y35_c01288{bottom:1198.365000px;}
.y32_c01288{bottom:1199.235000px;}
.y33_c01288{bottom:1200.090000px;}
.y3a_c01288{bottom:1200.960000px;}
.y36_c01288{bottom:1202.685000px;}
.y2f_c01288{bottom:1213.920000px;}
.y2e_c01288{bottom:1215.645000px;}
.y30_c01288{bottom:1217.370000px;}
.y2b_c01288{bottom:1218.240000px;}
.y2a_c01288{bottom:1220.835000px;}
.y28_c01288{bottom:1222.560000px;}
.y29_c01288{bottom:1223.430000px;}
.y31_c01288{bottom:1226.010000px;}
.y2c_c01288{bottom:1232.925000px;}
.y2d_c01288{bottom:1233.795000px;}
.y26_c01288{bottom:1235.520000px;}
.y25_c01288{bottom:1236.390000px;}
.y22_c01288{bottom:1237.245000px;}
.y20_c01288{bottom:1238.115000px;}
.y24_c01288{bottom:1238.970000px;}
.y27_c01288{bottom:1240.710000px;}
.y23_c01288{bottom:1243.290000px;}
.y21_c01288{bottom:1254.525000px;}
.y1f_c01288{bottom:1255.395000px;}
.y1d_c01288{bottom:1258.845000px;}
.y1c_c01288{bottom:1259.715000px;}
.y1e_c01288{bottom:1262.310000px;}
.y1b_c01288{bottom:1264.890000px;}
.y1a_c01288{bottom:1276.125000px;}
.y17_c01288{bottom:1279.590000px;}
.y16_c01288{bottom:1281.315000px;}
.y19_c01288{bottom:1282.170000px;}
.y18_c01288{bottom:1283.040000px;}
.y15_c01288{bottom:1283.910000px;}
.y12_c01288{bottom:1296.870000px;}
.y11_c01288{bottom:1297.725000px;}
.y14_c01288{bottom:1298.595000px;}
.yd_c01288{bottom:1301.190000px;}
.y13_c01288{bottom:1302.915000px;}
.y10_c01288{bottom:1303.770000px;}
.yf_c01288{bottom:1304.640000px;}
.ye_c01288{bottom:1310.685000px;}
.yc_c01288{bottom:1317.600000px;}
.ya_c01288{bottom:1318.470000px;}
.y9_c01288{bottom:1319.325000px;}
.yb_c01288{bottom:1320.195000px;}
.y6_c01288{bottom:1321.050000px;}
.y7_c01288{bottom:1322.790000px;}
.y8_c01288{bottom:1324.515000px;}
.y3_c01288{bottom:1339.200000px;}
.y2_c01288{bottom:1340.070000px;}
.y5_c01288{bottom:1340.925000px;}
.y4_c01288{bottom:1341.795000px;}
.y1_c01288{bottom:1346.970000px;}
.y1ac_c01288{bottom:1392.765000px;}
.y1ab_c01288{bottom:1397.085000px;}
.y1ad_c01288{bottom:1398.810000px;}
.h7_c01288{height:3.110063px;}
.hf_c01288{height:5.399414px;}
.h18_c01288{height:6.209326px;}
.he_c01288{height:9.340986px;}
.h1a_c01288{height:12.418652px;}
.h1c_c01288{height:15.550313px;}
.h14_c01288{height:18.681973px;}
.h1d_c01288{height:21.759639px;}
.h23_c01288{height:24.891299px;}
.h5_c01288{height:27.968965px;}
.h10_c01288{height:31.100625px;}
.h15_c01288{height:34.232285px;}
.h13_c01288{height:37.309951px;}
.h1e_c01288{height:40.441611px;}
.h17_c01288{height:43.519277px;}
.h11_c01288{height:46.650937px;}
.hb_c01288{height:49.782598px;}
.h9_c01288{height:52.860264px;}
.h16_c01288{height:55.991924px;}
.h8_c01288{height:59.069590px;}
.hc_c01288{height:62.201250px;}
.h2_c01288{height:65.332910px;}
.ha_c01288{height:68.410576px;}
.h12_c01288{height:71.542236px;}
.h6_c01288{height:74.619902px;}
.h1b_c01288{height:77.751563px;}
.h1f_c01288{height:80.883223px;}
.h19_c01288{height:83.960889px;}
.hd_c01288{height:87.092549px;}
.h24_c01288{height:90.170215px;}
.h21_c01288{height:93.301875px;}
.h22_c01288{height:96.433535px;}
.h20_c01288{height:99.511201px;}
.h4_c01288{height:105.720527px;}
.h3_c01288{height:111.983848px;}
.h25_c01288{height:118.193174px;}
.h1_c01288{height:1518.750000px;}
.h0_c01288{height:1518.915000px;}
.w0_c01288{width:1085.190000px;}
.w1_c01288{width:1085.250000px;}
.x0_c01288{left:0.000000px;}
.x105_c01288{left:177.120000px;}
.x102_c01288{left:183.165000px;}
.xa8_c01288{left:189.210000px;}
.xae_c01288{left:190.950000px;}
.x11_c01288{left:204.765000px;}
.x2d_c01288{left:208.230000px;}
.x1_c01288{left:209.955000px;}
.x12_c01288{left:212.550000px;}
.x10f_c01288{left:216.870000px;}
.x38_c01288{left:220.320000px;}
.x2e_c01288{left:222.045000px;}
.x4c_c01288{left:224.640000px;}
.xdd_c01288{left:226.365000px;}
.x6_c01288{left:228.090000px;}
.xc0_c01288{left:230.685000px;}
.x9e_c01288{left:232.410000px;}
.x5a_c01288{left:234.150000px;}
.x4d_c01288{left:236.730000px;}
.x7_c01288{left:238.470000px;}
.xa9_c01288{left:242.790000px;}
.x5f_c01288{left:246.240000px;}
.x84_c01288{left:248.835000px;}
.x60_c01288{left:250.560000px;}
.x85_c01288{left:253.155000px;}
.x72_c01288{left:255.750000px;}
.x109_c01288{left:257.475000px;}
.xb7_c01288{left:259.200000px;}
.xbb_c01288{left:262.650000px;}
.x6c_c01288{left:264.390000px;}
.x9f_c01288{left:268.710000px;}
.x61_c01288{left:271.290000px;}
.xf6_c01288{left:273.030000px;}
.x27_c01288{left:274.755000px;}
.x54_c01288{left:276.480000px;}
.x1a_c01288{left:281.670000px;}
.x39_c01288{left:285.120000px;}
.x1b_c01288{left:287.715000px;}
.x5b_c01288{left:289.440000px;}
.xa3_c01288{left:292.035000px;}
.xc6_c01288{left:297.210000px;}
.xbe_c01288{left:299.805000px;}
.xcd_c01288{left:302.400000px;}
.x10a_c01288{left:304.125000px;}
.x1c_c01288{left:305.850000px;}
.x86_c01288{left:308.445000px;}
.x2f_c01288{left:310.170000px;}
.x13_c01288{left:311.910000px;}
.xc7_c01288{left:315.360000px;}
.x78_c01288{left:317.955000px;}
.x28_c01288{left:320.550000px;}
.xec_c01288{left:322.275000px;}
.xda_c01288{left:324.870000px;}
.x44_c01288{left:326.595000px;}
.xaa_c01288{left:328.320000px;}
.x94_c01288{left:330.915000px;}
.x55_c01288{left:332.640000px;}
.x8a_c01288{left:335.235000px;}
.x62_c01288{left:337.830000px;}
.xf0_c01288{left:340.410000px;}
.xdb_c01288{left:343.875000px;}
.xde_c01288{left:346.470000px;}
.x30_c01288{left:350.790000px;}
.x6d_c01288{left:354.240000px;}
.x103_c01288{left:355.965000px;}
.xa4_c01288{left:357.690000px;}
.x1d_c01288{left:359.430000px;}
.x87_c01288{left:361.155000px;}
.x29_c01288{left:362.880000px;}
.xdf_c01288{left:365.475000px;}
.x7d_c01288{left:368.070000px;}
.x2_c01288{left:369.795000px;}
.x8b_c01288{left:372.390000px;}
.x111_c01288{left:374.970000px;}
.x73_c01288{left:378.435000px;}
.xe9_c01288{left:380.160000px;}
.x14_c01288{left:385.350000px;}
.xbc_c01288{left:387.075000px;}
.x4e_c01288{left:388.800000px;}
.x79_c01288{left:390.525000px;}
.x95_c01288{left:393.120000px;}
.x68_c01288{left:394.845000px;}
.x9a_c01288{left:397.440000px;}
.xd4_c01288{left:400.890000px;}
.x2a_c01288{left:402.630000px;}
.xed_c01288{left:404.355000px;}
.x96_c01288{left:406.080000px;}
.xf1_c01288{left:409.530000px;}
.xd0_c01288{left:411.270000px;}
.x8_c01288{left:413.850000px;}
.x9b_c01288{left:415.590000px;}
.x56_c01288{left:419.040000px;}
.x3a_c01288{left:420.765000px;}
.x115_c01288{left:422.490000px;}
.x9c_c01288{left:425.085000px;}
.x31_c01288{left:427.680000px;}
.xab_c01288{left:429.405000px;}
.xe0_c01288{left:431.130000px;}
.x1e_c01288{left:432.870000px;}
.x9_c01288{left:434.595000px;}
.x8c_c01288{left:437.190000px;}
.x45_c01288{left:439.770000px;}
.x74_c01288{left:441.510000px;}
.xe5_c01288{left:444.960000px;}
.x63_c01288{left:447.555000px;}
.x69_c01288{left:449.280000px;}
.xca_c01288{left:452.730000px;}
.xd7_c01288{left:454.470000px;}
.x15_c01288{left:457.050000px;}
.x4f_c01288{left:459.645000px;}
.xf9_c01288{left:462.240000px;}
.xa_c01288{left:463.965000px;}
.xc1_c01288{left:466.560000px;}
.x8d_c01288{left:468.285000px;}
.x97_c01288{left:470.010000px;}
.x3b_c01288{left:471.750000px;}
.x91_c01288{left:473.475000px;}
.xb8_c01288{left:475.200000px;}
.xad_c01288{left:476.925000px;}
.xaf_c01288{left:479.520000px;}
.x106_c01288{left:486.435000px;}
.xd5_c01288{left:488.160000px;}
.x3c_c01288{left:492.480000px;}
.xb0_c01288{left:495.075000px;}
.xac_c01288{left:497.670000px;}
.x3_c01288{left:502.845000px;}
.x46_c01288{left:504.570000px;}
.xb1_c01288{left:506.310000px;}
.x57_c01288{left:508.035000px;}
.xf2_c01288{left:509.760000px;}
.x75_c01288{left:511.485000px;}
.x32_c01288{left:513.210000px;}
.x1f_c01288{left:516.675000px;}
.x76_c01288{left:518.400000px;}
.x10b_c01288{left:520.125000px;}
.xa5_c01288{left:521.850000px;}
.x64_c01288{left:523.590000px;}
.x7e_c01288{left:526.170000px;}
.xf3_c01288{left:527.910000px;}
.x47_c01288{left:530.490000px;}
.xa0_c01288{left:533.085000px;}
.xea_c01288{left:540.000000px;}
.x112_c01288{left:541.725000px;}
.xf4_c01288{left:543.450000px;}
.xb_c01288{left:546.045000px;}
.x65_c01288{left:547.770000px;}
.xb2_c01288{left:549.510000px;}
.x3d_c01288{left:551.235000px;}
.x98_c01288{left:552.960000px;}
.xbf_c01288{left:555.555000px;}
.xd1_c01288{left:557.280000px;}
.x3e_c01288{left:559.005000px;}
.x9d_c01288{left:560.730000px;}
.x50_c01288{left:562.470000px;}
.x20_c01288{left:565.050000px;}
.xc_c01288{left:566.790000px;}
.x116_c01288{left:574.560000px;}
.x33_c01288{left:581.475000px;}
.xce_c01288{left:583.200000px;}
.xa6_c01288{left:584.925000px;}
.x7f_c01288{left:586.650000px;}
.xbd_c01288{left:588.390000px;}
.xe1_c01288{left:590.970000px;}
.x117_c01288{left:594.435000px;}
.xeb_c01288{left:596.160000px;}
.xd_c01288{left:597.885000px;}
.x6e_c01288{left:600.480000px;}
.xc8_c01288{left:603.075000px;}
.x2b_c01288{left:607.395000px;}
.x10c_c01288{left:609.120000px;}
.xfd_c01288{left:610.845000px;}
.xb9_c01288{left:613.440000px;}
.xdc_c01288{left:615.165000px;}
.x80_c01288{left:617.760000px;}
.xb3_c01288{left:619.485000px;}
.x48_c01288{left:621.210000px;}
.xe6_c01288{left:622.950000px;}
.xe_c01288{left:625.530000px;}
.x21_c01288{left:627.270000px;}
.x51_c01288{left:629.850000px;}
.x10e_c01288{left:631.590000px;}
.x8e_c01288{left:633.315000px;}
.x81_c01288{left:635.910000px;}
.x16_c01288{left:639.360000px;}
.x8f_c01288{left:641.085000px;}
.x34_c01288{left:642.810000px;}
.x6f_c01288{left:645.405000px;}
.x5c_c01288{left:648.870000px;}
.xcf_c01288{left:650.595000px;}
.x3f_c01288{left:654.915000px;}
.x66_c01288{left:658.365000px;}
.xc2_c01288{left:660.960000px;}
.x77_c01288{left:663.555000px;}
.xfc_c01288{left:666.150000px;}
.x67_c01288{left:667.875000px;}
.x49_c01288{left:672.195000px;}
.x82_c01288{left:673.920000px;}
.xa1_c01288{left:675.645000px;}
.xd8_c01288{left:680.835000px;}
.xcb_c01288{left:682.560000px;}
.x22_c01288{left:686.010000px;}
.xfa_c01288{left:687.750000px;}
.x6a_c01288{left:690.330000px;}
.xba_c01288{left:692.070000px;}
.x104_c01288{left:693.795000px;}
.x7a_c01288{left:695.520000px;}
.x35_c01288{left:698.115000px;}
.x5d_c01288{left:700.710000px;}
.x17_c01288{left:702.435000px;}
.xe2_c01288{left:704.160000px;}
.x88_c01288{left:707.610000px;}
.xa7_c01288{left:712.800000px;}
.x113_c01288{left:716.250000px;}
.x70_c01288{left:717.990000px;}
.xfe_c01288{left:719.715000px;}
.x40_c01288{left:722.310000px;}
.xe3_c01288{left:724.890000px;}
.xb4_c01288{left:727.485000px;}
.xcc_c01288{left:730.950000px;}
.x7b_c01288{left:733.530000px;}
.xe7_c01288{left:735.270000px;}
.x23_c01288{left:737.850000px;}
.x107_c01288{left:739.590000px;}
.x92_c01288{left:741.315000px;}
.x4a_c01288{left:743.040000px;}
.xf5_c01288{left:745.635000px;}
.xc9_c01288{left:747.360000px;}
.x18_c01288{left:749.955000px;}
.x36_c01288{left:751.680000px;}
.x58_c01288{left:756.000000px;}
.xd2_c01288{left:760.320000px;}
.x24_c01288{left:762.045000px;}
.x100_c01288{left:765.510000px;}
.xff_c01288{left:767.235000px;}
.x52_c01288{left:768.960000px;}
.x99_c01288{left:771.555000px;}
.xd6_c01288{left:773.280000px;}
.x83_c01288{left:775.005000px;}
.xf_c01288{left:777.600000px;}
.x53_c01288{left:779.325000px;}
.x71_c01288{left:781.050000px;}
.x41_c01288{left:782.790000px;}
.x6b_c01288{left:788.835000px;}
.xb5_c01288{left:791.430000px;}
.x108_c01288{left:793.155000px;}
.xd3_c01288{left:794.880000px;}
.xf7_c01288{left:796.605000px;}
.x59_c01288{left:803.520000px;}
.x89_c01288{left:806.970000px;}
.xc3_c01288{left:812.160000px;}
.xd9_c01288{left:818.205000px;}
.x25_c01288{left:820.800000px;}
.xfb_c01288{left:825.120000px;}
.x42_c01288{left:827.715000px;}
.x4_c01288{left:829.440000px;}
.x19_c01288{left:831.165000px;}
.xee_c01288{left:832.890000px;}
.x110_c01288{left:835.485000px;}
.xe8_c01288{left:838.080000px;}
.x4b_c01288{left:839.805000px;}
.xb6_c01288{left:841.530000px;}
.x90_c01288{left:843.270000px;}
.x26_c01288{left:848.445000px;}
.x5e_c01288{left:850.170000px;}
.xe4_c01288{left:854.490000px;}
.x114_c01288{left:858.810000px;}
.xf8_c01288{left:861.405000px;}
.xa2_c01288{left:864.000000px;}
.x10_c01288{left:865.725000px;}
.x10d_c01288{left:868.320000px;}
.x5_c01288{left:870.915000px;}
.xc4_c01288{left:873.510000px;}
.x37_c01288{left:876.090000px;}
.x7c_c01288{left:877.830000px;}
.xef_c01288{left:880.410000px;}
.x43_c01288{left:888.195000px;}
.x93_c01288{left:899.430000px;}
.x101_c01288{left:906.330000px;}
.x2c_c01288{left:914.970000px;}
.xc5_c01288{left:930.525000px;}
.x118_c01288{left:952.995000px;}
.x119_c01288{left:957.315000px;}
.x11a_c01288{left:1029.885000px;}
.x11b_c01288{left:1036.800000px;}
.x11f_c01288{left:1044.570000px;}
.x11e_c01288{left:1054.950000px;}
.x120_c01288{left:1057.531650px;}
.x11c_c01288{left:1060.125000px;}
.x121_c01288{left:1069.635000px;}
.x11d_c01288{left:1073.955000px;}
@media print{
.v1_c01288{vertical-align:-6.133333pt;}
.v0_c01288{vertical-align:0.000000pt;}
.ls1_c01288{letter-spacing:0.000000pt;}
.ls0_c01288{letter-spacing:26.846880pt;}
.ws0_c01288{word-spacing:-21.520480pt;}
.ws1_c01288{word-spacing:-9.947580pt;}
.ws2_c01288{word-spacing:0.000000pt;}
.fs5_c01288{font-size:3.072000pt;}
.fsd_c01288{font-size:5.333333pt;}
.fs16_c01288{font-size:6.133333pt;}
.fsc_c01288{font-size:9.226667pt;}
.fs18_c01288{font-size:12.266667pt;}
.fs1a_c01288{font-size:15.360000pt;}
.fs12_c01288{font-size:18.453333pt;}
.fs1b_c01288{font-size:21.493333pt;}
.fs21_c01288{font-size:24.586667pt;}
.fs3_c01288{font-size:27.626667pt;}
.fse_c01288{font-size:30.720000pt;}
.fs13_c01288{font-size:33.813333pt;}
.fs11_c01288{font-size:36.853333pt;}
.fs1c_c01288{font-size:39.946667pt;}
.fs15_c01288{font-size:42.986667pt;}
.fsf_c01288{font-size:46.080000pt;}
.fs9_c01288{font-size:49.173333pt;}
.fs7_c01288{font-size:52.213333pt;}
.fs14_c01288{font-size:55.306667pt;}
.fs6_c01288{font-size:58.346667pt;}
.fsa_c01288{font-size:61.440000pt;}
.fs0_c01288{font-size:64.533333pt;}
.fs8_c01288{font-size:67.573333pt;}
.fs10_c01288{font-size:70.666667pt;}
.fs4_c01288{font-size:73.706667pt;}
.fs19_c01288{font-size:76.800000pt;}
.fs1d_c01288{font-size:79.893333pt;}
.fs17_c01288{font-size:82.933333pt;}
.fsb_c01288{font-size:86.026667pt;}
.fs22_c01288{font-size:89.066667pt;}
.fs1f_c01288{font-size:92.160000pt;}
.fs20_c01288{font-size:95.253333pt;}
.fs1e_c01288{font-size:98.293333pt;}
.fs2_c01288{font-size:104.426667pt;}
.fs1_c01288{font-size:110.613333pt;}
.fs23_c01288{font-size:116.746667pt;}
.y0_c01288{bottom:0.000000pt;}
.y1b3_c01288{bottom:85.253333pt;}
.y1b2_c01288{bottom:87.546667pt;}
.y1aa_c01288{bottom:139.013333pt;}
.y1a9_c01288{bottom:141.306667pt;}
.y1a2_c01288{bottom:142.853333pt;}
.y1a6_c01288{bottom:146.693333pt;}
.y1a8_c01288{bottom:147.453333pt;}
.y1a5_c01288{bottom:148.986667pt;}
.y1a7_c01288{bottom:150.533333pt;}
.y1a1_c01288{bottom:151.293333pt;}
.y1a4_c01288{bottom:153.600000pt;}
.y1a0_c01288{bottom:154.373333pt;}
.y1a3_c01288{bottom:155.133333pt;}
.y19e_c01288{bottom:156.666667pt;}
.y19b_c01288{bottom:158.213333pt;}
.y19c_c01288{bottom:158.973333pt;}
.y19d_c01288{bottom:162.053333pt;}
.y19f_c01288{bottom:163.586667pt;}
.y19a_c01288{bottom:171.266667pt;}
.y198_c01288{bottom:174.333333pt;}
.y199_c01288{bottom:175.866667pt;}
.y197_c01288{bottom:176.640000pt;}
.y193_c01288{bottom:177.413333pt;}
.y196_c01288{bottom:178.946667pt;}
.y195_c01288{bottom:179.706667pt;}
.y194_c01288{bottom:180.480000pt;}
.y192_c01288{bottom:182.013333pt;}
.y191_c01288{bottom:188.160000pt;}
.y18b_c01288{bottom:190.466667pt;}
.y18c_c01288{bottom:191.226667pt;}
.y18d_c01288{bottom:193.533333pt;}
.y18e_c01288{bottom:194.306667pt;}
.y189_c01288{bottom:195.066667pt;}
.y190_c01288{bottom:196.613333pt;}
.y18f_c01288{bottom:197.373333pt;}
.y18a_c01288{bottom:199.680000pt;}
.y184_c01288{bottom:211.200000pt;}
.y188_c01288{bottom:211.973333pt;}
.y187_c01288{bottom:212.733333pt;}
.y186_c01288{bottom:213.506667pt;}
.y185_c01288{bottom:214.266667pt;}
.y183_c01288{bottom:216.573333pt;}
.y182_c01288{bottom:226.560000pt;}
.y180_c01288{bottom:228.866667pt;}
.y17c_c01288{bottom:229.626667pt;}
.y17e_c01288{bottom:230.400000pt;}
.y181_c01288{bottom:232.706667pt;}
.y17f_c01288{bottom:234.240000pt;}
.y17d_c01288{bottom:235.013333pt;}
.y176_c01288{bottom:245.760000pt;}
.y174_c01288{bottom:247.293333pt;}
.y175_c01288{bottom:248.066667pt;}
.y172_c01288{bottom:248.826667pt;}
.y178_c01288{bottom:249.600000pt;}
.y17b_c01288{bottom:250.373333pt;}
.y177_c01288{bottom:251.133333pt;}
.y17a_c01288{bottom:251.906667pt;}
.y179_c01288{bottom:252.666667pt;}
.y173_c01288{bottom:253.440000pt;}
.y170_c01288{bottom:265.733333pt;}
.y16c_c01288{bottom:266.493333pt;}
.y16d_c01288{bottom:267.266667pt;}
.y16f_c01288{bottom:271.106667pt;}
.y16e_c01288{bottom:271.866667pt;}
.y171_c01288{bottom:272.640000pt;}
.y165_c01288{bottom:276.480000pt;}
.y16a_c01288{bottom:283.386667pt;}
.y169_c01288{bottom:284.160000pt;}
.y16b_c01288{bottom:284.933333pt;}
.y168_c01288{bottom:285.693333pt;}
.y167_c01288{bottom:287.226667pt;}
.y164_c01288{bottom:288.000000pt;}
.y166_c01288{bottom:289.533333pt;}
.y161_c01288{bottom:307.973333pt;}
.y163_c01288{bottom:314.106667pt;}
.y162_c01288{bottom:319.493333pt;}
.y15f_c01288{bottom:320.253333pt;}
.y15b_c01288{bottom:321.786667pt;}
.y15c_c01288{bottom:323.333333pt;}
.y160_c01288{bottom:324.866667pt;}
.y15e_c01288{bottom:325.626667pt;}
.y15d_c01288{bottom:326.400000pt;}
.y158_c01288{bottom:339.453333pt;}
.y15a_c01288{bottom:340.986667pt;}
.y159_c01288{bottom:344.066667pt;}
.y157_c01288{bottom:354.813333pt;}
.y155_c01288{bottom:357.120000pt;}
.y152_c01288{bottom:357.893333pt;}
.y151_c01288{bottom:359.426667pt;}
.y153_c01288{bottom:361.733333pt;}
.y154_c01288{bottom:362.493333pt;}
.y156_c01288{bottom:372.480000pt;}
.y150_c01288{bottom:373.253333pt;}
.y14f_c01288{bottom:374.786667pt;}
.y14b_c01288{bottom:375.546667pt;}
.y149_c01288{bottom:376.320000pt;}
.y14d_c01288{bottom:377.853333pt;}
.y14e_c01288{bottom:380.160000pt;}
.y14a_c01288{bottom:380.933333pt;}
.y148_c01288{bottom:381.693333pt;}
.y14c_c01288{bottom:389.373333pt;}
.y146_c01288{bottom:393.213333pt;}
.y142_c01288{bottom:394.746667pt;}
.y141_c01288{bottom:395.520000pt;}
.y147_c01288{bottom:397.826667pt;}
.y145_c01288{bottom:398.586667pt;}
.y144_c01288{bottom:399.360000pt;}
.y143_c01288{bottom:400.133333pt;}
.y13f_c01288{bottom:412.413333pt;}
.y13a_c01288{bottom:413.186667pt;}
.y13c_c01288{bottom:413.946667pt;}
.y13e_c01288{bottom:414.720000pt;}
.y13b_c01288{bottom:415.493333pt;}
.y137_c01288{bottom:416.253333pt;}
.y140_c01288{bottom:417.026667pt;}
.y138_c01288{bottom:417.786667pt;}
.y139_c01288{bottom:418.560000pt;}
.y13d_c01288{bottom:419.333333pt;}
.y134_c01288{bottom:430.080000pt;}
.y133_c01288{bottom:431.613333pt;}
.y12f_c01288{bottom:432.386667pt;}
.y130_c01288{bottom:433.146667pt;}
.y135_c01288{bottom:433.920000pt;}
.y132_c01288{bottom:435.453333pt;}
.y131_c01288{bottom:436.226667pt;}
.y136_c01288{bottom:441.600000pt;}
.y12e_c01288{bottom:446.973333pt;}
.y12c_c01288{bottom:447.746667pt;}
.y128_c01288{bottom:450.053333pt;}
.y129_c01288{bottom:451.586667pt;}
.y12d_c01288{bottom:452.346667pt;}
.y12b_c01288{bottom:453.120000pt;}
.y12a_c01288{bottom:453.893333pt;}
.y126_c01288{bottom:454.653333pt;}
.y127_c01288{bottom:458.493333pt;}
.y122_c01288{bottom:459.266667pt;}
.y123_c01288{bottom:462.333333pt;}
.y124_c01288{bottom:463.106667pt;}
.y125_c01288{bottom:463.866667pt;}
.y11d_c01288{bottom:465.413333pt;}
.y11e_c01288{bottom:467.706667pt;}
.y11f_c01288{bottom:468.480000pt;}
.y11b_c01288{bottom:469.253333pt;}
.y120_c01288{bottom:470.786667pt;}
.y121_c01288{bottom:471.546667pt;}
.y11c_c01288{bottom:472.320000pt;}
.y11a_c01288{bottom:483.840000pt;}
.y119_c01288{bottom:484.613333pt;}
.y115_c01288{bottom:485.373333pt;}
.y118_c01288{bottom:487.680000pt;}
.y116_c01288{bottom:490.746667pt;}
.y117_c01288{bottom:492.293333pt;}
.y114_c01288{bottom:502.266667pt;}
.y113_c01288{bottom:503.040000pt;}
.y110_c01288{bottom:504.573333pt;}
.y10f_c01288{bottom:505.346667pt;}
.y10e_c01288{bottom:506.106667pt;}
.y112_c01288{bottom:506.880000pt;}
.y111_c01288{bottom:508.413333pt;}
.y10a_c01288{bottom:521.466667pt;}
.y109_c01288{bottom:522.240000pt;}
.y108_c01288{bottom:523.773333pt;}
.y10c_c01288{bottom:526.080000pt;}
.y107_c01288{bottom:526.853333pt;}
.y10b_c01288{bottom:533.760000pt;}
.y10d_c01288{bottom:536.066667pt;}
.y106_c01288{bottom:539.133333pt;}
.y105_c01288{bottom:539.906667pt;}
.y101_c01288{bottom:540.666667pt;}
.y103_c01288{bottom:543.746667pt;}
.y102_c01288{bottom:549.893333pt;}
.y104_c01288{bottom:556.800000pt;}
.yff_c01288{bottom:557.573333pt;}
.yfd_c01288{bottom:558.333333pt;}
.y100_c01288{bottom:559.106667pt;}
.yfc_c01288{bottom:562.173333pt;}
.yfe_c01288{bottom:562.946667pt;}
.yf9_c01288{bottom:576.000000pt;}
.yf7_c01288{bottom:576.773333pt;}
.yf5_c01288{bottom:577.533333pt;}
.yfa_c01288{bottom:579.066667pt;}
.yf6_c01288{bottom:579.840000pt;}
.yfb_c01288{bottom:580.613333pt;}
.yf8_c01288{bottom:581.373333pt;}
.yf4_c01288{bottom:592.133333pt;}
.yf3_c01288{bottom:592.893333pt;}
.yf0_c01288{bottom:593.666667pt;}
.yef_c01288{bottom:594.426667pt;}
.yf1_c01288{bottom:595.200000pt;}
.yf2_c01288{bottom:598.266667pt;}
.yee_c01288{bottom:609.786667pt;}
.yea_c01288{bottom:610.560000pt;}
.ye9_c01288{bottom:611.333333pt;}
.yeb_c01288{bottom:612.093333pt;}
.ye7_c01288{bottom:612.866667pt;}
.yec_c01288{bottom:614.400000pt;}
.yed_c01288{bottom:615.173333pt;}
.ye8_c01288{bottom:616.706667pt;}
.ye2_c01288{bottom:627.453333pt;}
.ye4_c01288{bottom:628.986667pt;}
.ye0_c01288{bottom:629.760000pt;}
.ye1_c01288{bottom:630.533333pt;}
.ye3_c01288{bottom:631.293333pt;}
.ydf_c01288{bottom:632.066667pt;}
.ye6_c01288{bottom:635.133333pt;}
.ye5_c01288{bottom:646.653333pt;}
.yda_c01288{bottom:647.426667pt;}
.yde_c01288{bottom:648.960000pt;}
.ydd_c01288{bottom:651.266667pt;}
.ydc_c01288{bottom:652.026667pt;}
.ydb_c01288{bottom:652.800000pt;}
.yd4_c01288{bottom:665.853333pt;}
.yd9_c01288{bottom:666.626667pt;}
.yd8_c01288{bottom:668.160000pt;}
.yd3_c01288{bottom:668.933333pt;}
.yd7_c01288{bottom:669.693333pt;}
.yd5_c01288{bottom:670.466667pt;}
.yd2_c01288{bottom:671.226667pt;}
.yd6_c01288{bottom:672.773333pt;}
.y1b0_c01288{bottom:674.306667pt;}
.y1b1_c01288{bottom:678.146667pt;}
.yd1_c01288{bottom:681.213333pt;}
.yd0_c01288{bottom:681.986667pt;}
.ycb_c01288{bottom:684.293333pt;}
.ycf_c01288{bottom:687.360000pt;}
.ycd_c01288{bottom:688.133333pt;}
.yce_c01288{bottom:688.893333pt;}
.ycc_c01288{bottom:689.666667pt;}
.yc6_c01288{bottom:701.946667pt;}
.yc8_c01288{bottom:702.720000pt;}
.yc5_c01288{bottom:703.493333pt;}
.yca_c01288{bottom:705.026667pt;}
.yc9_c01288{bottom:705.786667pt;}
.yc7_c01288{bottom:706.560000pt;}
.yc4_c01288{bottom:707.333333pt;}
.yc3_c01288{bottom:717.306667pt;}
.yc2_c01288{bottom:719.613333pt;}
.yc0_c01288{bottom:720.386667pt;}
.ybf_c01288{bottom:722.693333pt;}
.yc1_c01288{bottom:724.986667pt;}
.ybe_c01288{bottom:735.746667pt;}
.ybb_c01288{bottom:737.280000pt;}
.yb8_c01288{bottom:739.586667pt;}
.yba_c01288{bottom:740.346667pt;}
.ybd_c01288{bottom:741.120000pt;}
.ybc_c01288{bottom:742.653333pt;}
.yb9_c01288{bottom:743.426667pt;}
.yb2_c01288{bottom:749.573333pt;}
.yb4_c01288{bottom:751.106667pt;}
.yb3_c01288{bottom:751.866667pt;}
.yb6_c01288{bottom:752.640000pt;}
.yb1_c01288{bottom:753.413333pt;}
.yb5_c01288{bottom:756.480000pt;}
.yb7_c01288{bottom:758.786667pt;}
.yae_c01288{bottom:772.613333pt;}
.yaa_c01288{bottom:773.373333pt;}
.yab_c01288{bottom:774.146667pt;}
.yac_c01288{bottom:774.906667pt;}
.yaf_c01288{bottom:777.213333pt;}
.yad_c01288{bottom:777.986667pt;}
.ya9_c01288{bottom:780.293333pt;}
.yb0_c01288{bottom:787.973333pt;}
.ya5_c01288{bottom:789.506667pt;}
.ya7_c01288{bottom:790.266667pt;}
.ya1_c01288{bottom:791.813333pt;}
.ya2_c01288{bottom:792.573333pt;}
.ya4_c01288{bottom:794.106667pt;}
.ya8_c01288{bottom:794.880000pt;}
.ya3_c01288{bottom:796.413333pt;}
.ya6_c01288{bottom:797.946667pt;}
.y9d_c01288{bottom:808.706667pt;}
.y9b_c01288{bottom:809.466667pt;}
.y9a_c01288{bottom:810.240000pt;}
.y99_c01288{bottom:811.773333pt;}
.y9c_c01288{bottom:812.546667pt;}
.y9f_c01288{bottom:813.306667pt;}
.ya0_c01288{bottom:814.080000pt;}
.y9e_c01288{bottom:814.853333pt;}
.y1af_c01288{bottom:820.226667pt;}
.y1ae_c01288{bottom:824.066667pt;}
.y98_c01288{bottom:825.600000pt;}
.y94_c01288{bottom:827.133333pt;}
.y95_c01288{bottom:827.906667pt;}
.y90_c01288{bottom:829.440000pt;}
.y91_c01288{bottom:830.213333pt;}
.y97_c01288{bottom:831.746667pt;}
.y92_c01288{bottom:832.506667pt;}
.y93_c01288{bottom:833.280000pt;}
.y96_c01288{bottom:835.586667pt;}
.y8f_c01288{bottom:844.026667pt;}
.y8e_c01288{bottom:845.573333pt;}
.y8a_c01288{bottom:846.333333pt;}
.y8d_c01288{bottom:847.106667pt;}
.y89_c01288{bottom:847.866667pt;}
.y8c_c01288{bottom:850.173333pt;}
.y8b_c01288{bottom:850.946667pt;}
.y86_c01288{bottom:863.226667pt;}
.y82_c01288{bottom:864.773333pt;}
.y88_c01288{bottom:866.306667pt;}
.y84_c01288{bottom:867.066667pt;}
.y87_c01288{bottom:867.840000pt;}
.y83_c01288{bottom:868.613333pt;}
.y85_c01288{bottom:869.373333pt;}
.y7f_c01288{bottom:877.053333pt;}
.y7c_c01288{bottom:878.586667pt;}
.y7d_c01288{bottom:879.360000pt;}
.y7b_c01288{bottom:880.133333pt;}
.y80_c01288{bottom:882.426667pt;}
.y81_c01288{bottom:883.200000pt;}
.y7e_c01288{bottom:886.266667pt;}
.y79_c01288{bottom:899.333333pt;}
.y7a_c01288{bottom:903.173333pt;}
.y77_c01288{bottom:903.933333pt;}
.y76_c01288{bottom:905.466667pt;}
.y75_c01288{bottom:906.240000pt;}
.y78_c01288{bottom:913.920000pt;}
.y72_c01288{bottom:916.986667pt;}
.y73_c01288{bottom:917.760000pt;}
.y6d_c01288{bottom:919.293333pt;}
.y71_c01288{bottom:920.066667pt;}
.y6e_c01288{bottom:921.600000pt;}
.y70_c01288{bottom:923.133333pt;}
.y74_c01288{bottom:925.440000pt;}
.y6f_c01288{bottom:934.653333pt;}
.y69_c01288{bottom:936.186667pt;}
.y68_c01288{bottom:936.960000pt;}
.y67_c01288{bottom:937.733333pt;}
.y6a_c01288{bottom:938.493333pt;}
.y6b_c01288{bottom:939.266667pt;}
.y6c_c01288{bottom:940.800000pt;}
.y66_c01288{bottom:942.333333pt;}
.y65_c01288{bottom:950.013333pt;}
.y63_c01288{bottom:954.626667pt;}
.y61_c01288{bottom:955.386667pt;}
.y5f_c01288{bottom:956.160000pt;}
.y62_c01288{bottom:957.693333pt;}
.y60_c01288{bottom:960.000000pt;}
.y64_c01288{bottom:960.773333pt;}
.y5d_c01288{bottom:971.520000pt;}
.y5c_c01288{bottom:973.053333pt;}
.y59_c01288{bottom:973.826667pt;}
.y5e_c01288{bottom:974.586667pt;}
.y5b_c01288{bottom:977.666667pt;}
.y5a_c01288{bottom:978.426667pt;}
.y57_c01288{bottom:989.946667pt;}
.y56_c01288{bottom:990.720000pt;}
.y55_c01288{bottom:991.493333pt;}
.y53_c01288{bottom:992.253333pt;}
.y54_c01288{bottom:996.866667pt;}
.y58_c01288{bottom:1006.853333pt;}
.y51_c01288{bottom:1008.386667pt;}
.y4f_c01288{bottom:1009.920000pt;}
.y50_c01288{bottom:1012.226667pt;}
.y52_c01288{bottom:1012.986667pt;}
.y4e_c01288{bottom:1014.533333pt;}
.y4c_c01288{bottom:1015.293333pt;}
.y4d_c01288{bottom:1019.133333pt;}
.y4b_c01288{bottom:1025.280000pt;}
.y48_c01288{bottom:1026.053333pt;}
.y4a_c01288{bottom:1028.346667pt;}
.y45_c01288{bottom:1029.120000pt;}
.y46_c01288{bottom:1029.893333pt;}
.y49_c01288{bottom:1030.653333pt;}
.y47_c01288{bottom:1032.960000pt;}
.y43_c01288{bottom:1042.946667pt;}
.y41_c01288{bottom:1045.253333pt;}
.y3f_c01288{bottom:1046.013333pt;}
.y3e_c01288{bottom:1047.546667pt;}
.y3c_c01288{bottom:1048.320000pt;}
.y42_c01288{bottom:1049.093333pt;}
.y3b_c01288{bottom:1050.626667pt;}
.y3d_c01288{bottom:1051.386667pt;}
.y44_c01288{bottom:1052.160000pt;}
.y40_c01288{bottom:1055.226667pt;}
.y39_c01288{bottom:1060.613333pt;}
.y38_c01288{bottom:1061.373333pt;}
.y37_c01288{bottom:1063.680000pt;}
.y34_c01288{bottom:1064.453333pt;}
.y35_c01288{bottom:1065.213333pt;}
.y32_c01288{bottom:1065.986667pt;}
.y33_c01288{bottom:1066.746667pt;}
.y3a_c01288{bottom:1067.520000pt;}
.y36_c01288{bottom:1069.053333pt;}
.y2f_c01288{bottom:1079.040000pt;}
.y2e_c01288{bottom:1080.573333pt;}
.y30_c01288{bottom:1082.106667pt;}
.y2b_c01288{bottom:1082.880000pt;}
.y2a_c01288{bottom:1085.186667pt;}
.y28_c01288{bottom:1086.720000pt;}
.y29_c01288{bottom:1087.493333pt;}
.y31_c01288{bottom:1089.786667pt;}
.y2c_c01288{bottom:1095.933333pt;}
.y2d_c01288{bottom:1096.706667pt;}
.y26_c01288{bottom:1098.240000pt;}
.y25_c01288{bottom:1099.013333pt;}
.y22_c01288{bottom:1099.773333pt;}
.y20_c01288{bottom:1100.546667pt;}
.y24_c01288{bottom:1101.306667pt;}
.y27_c01288{bottom:1102.853333pt;}
.y23_c01288{bottom:1105.146667pt;}
.y21_c01288{bottom:1115.133333pt;}
.y1f_c01288{bottom:1115.906667pt;}
.y1d_c01288{bottom:1118.973333pt;}
.y1c_c01288{bottom:1119.746667pt;}
.y1e_c01288{bottom:1122.053333pt;}
.y1b_c01288{bottom:1124.346667pt;}
.y1a_c01288{bottom:1134.333333pt;}
.y17_c01288{bottom:1137.413333pt;}
.y16_c01288{bottom:1138.946667pt;}
.y19_c01288{bottom:1139.706667pt;}
.y18_c01288{bottom:1140.480000pt;}
.y15_c01288{bottom:1141.253333pt;}
.y12_c01288{bottom:1152.773333pt;}
.y11_c01288{bottom:1153.533333pt;}
.y14_c01288{bottom:1154.306667pt;}
.yd_c01288{bottom:1156.613333pt;}
.y13_c01288{bottom:1158.146667pt;}
.y10_c01288{bottom:1158.906667pt;}
.yf_c01288{bottom:1159.680000pt;}
.ye_c01288{bottom:1165.053333pt;}
.yc_c01288{bottom:1171.200000pt;}
.ya_c01288{bottom:1171.973333pt;}
.y9_c01288{bottom:1172.733333pt;}
.yb_c01288{bottom:1173.506667pt;}
.y6_c01288{bottom:1174.266667pt;}
.y7_c01288{bottom:1175.813333pt;}
.y8_c01288{bottom:1177.346667pt;}
.y3_c01288{bottom:1190.400000pt;}
.y2_c01288{bottom:1191.173333pt;}
.y5_c01288{bottom:1191.933333pt;}
.y4_c01288{bottom:1192.706667pt;}
.y1_c01288{bottom:1197.306667pt;}
.y1ac_c01288{bottom:1238.013333pt;}
.y1ab_c01288{bottom:1241.853333pt;}
.y1ad_c01288{bottom:1243.386667pt;}
.h7_c01288{height:2.764500pt;}
.hf_c01288{height:4.799479pt;}
.h18_c01288{height:5.519401pt;}
.he_c01288{height:8.303099pt;}
.h1a_c01288{height:11.038802pt;}
.h1c_c01288{height:13.822500pt;}
.h14_c01288{height:16.606198pt;}
.h1d_c01288{height:19.341901pt;}
.h23_c01288{height:22.125599pt;}
.h5_c01288{height:24.861302pt;}
.h10_c01288{height:27.645000pt;}
.h15_c01288{height:30.428698pt;}
.h13_c01288{height:33.164401pt;}
.h1e_c01288{height:35.948099pt;}
.h17_c01288{height:38.683802pt;}
.h11_c01288{height:41.467500pt;}
.hb_c01288{height:44.251198pt;}
.h9_c01288{height:46.986901pt;}
.h16_c01288{height:49.770599pt;}
.h8_c01288{height:52.506302pt;}
.hc_c01288{height:55.290000pt;}
.h2_c01288{height:58.073698pt;}
.ha_c01288{height:60.809401pt;}
.h12_c01288{height:63.593099pt;}
.h6_c01288{height:66.328802pt;}
.h1b_c01288{height:69.112500pt;}
.h1f_c01288{height:71.896198pt;}
.h19_c01288{height:74.631901pt;}
.hd_c01288{height:77.415599pt;}
.h24_c01288{height:80.151302pt;}
.h21_c01288{height:82.935000pt;}
.h22_c01288{height:85.718698pt;}
.h20_c01288{height:88.454401pt;}
.h4_c01288{height:93.973802pt;}
.h3_c01288{height:99.541198pt;}
.h25_c01288{height:105.060599pt;}
.h1_c01288{height:1350.000000pt;}
.h0_c01288{height:1350.146667pt;}
.w0_c01288{width:964.613333pt;}
.w1_c01288{width:964.666667pt;}
.x0_c01288{left:0.000000pt;}
.x105_c01288{left:157.440000pt;}
.x102_c01288{left:162.813333pt;}
.xa8_c01288{left:168.186667pt;}
.xae_c01288{left:169.733333pt;}
.x11_c01288{left:182.013333pt;}
.x2d_c01288{left:185.093333pt;}
.x1_c01288{left:186.626667pt;}
.x12_c01288{left:188.933333pt;}
.x10f_c01288{left:192.773333pt;}
.x38_c01288{left:195.840000pt;}
.x2e_c01288{left:197.373333pt;}
.x4c_c01288{left:199.680000pt;}
.xdd_c01288{left:201.213333pt;}
.x6_c01288{left:202.746667pt;}
.xc0_c01288{left:205.053333pt;}
.x9e_c01288{left:206.586667pt;}
.x5a_c01288{left:208.133333pt;}
.x4d_c01288{left:210.426667pt;}
.x7_c01288{left:211.973333pt;}
.xa9_c01288{left:215.813333pt;}
.x5f_c01288{left:218.880000pt;}
.x84_c01288{left:221.186667pt;}
.x60_c01288{left:222.720000pt;}
.x85_c01288{left:225.026667pt;}
.x72_c01288{left:227.333333pt;}
.x109_c01288{left:228.866667pt;}
.xb7_c01288{left:230.400000pt;}
.xbb_c01288{left:233.466667pt;}
.x6c_c01288{left:235.013333pt;}
.x9f_c01288{left:238.853333pt;}
.x61_c01288{left:241.146667pt;}
.xf6_c01288{left:242.693333pt;}
.x27_c01288{left:244.226667pt;}
.x54_c01288{left:245.760000pt;}
.x1a_c01288{left:250.373333pt;}
.x39_c01288{left:253.440000pt;}
.x1b_c01288{left:255.746667pt;}
.x5b_c01288{left:257.280000pt;}
.xa3_c01288{left:259.586667pt;}
.xc6_c01288{left:264.186667pt;}
.xbe_c01288{left:266.493333pt;}
.xcd_c01288{left:268.800000pt;}
.x10a_c01288{left:270.333333pt;}
.x1c_c01288{left:271.866667pt;}
.x86_c01288{left:274.173333pt;}
.x2f_c01288{left:275.706667pt;}
.x13_c01288{left:277.253333pt;}
.xc7_c01288{left:280.320000pt;}
.x78_c01288{left:282.626667pt;}
.x28_c01288{left:284.933333pt;}
.xec_c01288{left:286.466667pt;}
.xda_c01288{left:288.773333pt;}
.x44_c01288{left:290.306667pt;}
.xaa_c01288{left:291.840000pt;}
.x94_c01288{left:294.146667pt;}
.x55_c01288{left:295.680000pt;}
.x8a_c01288{left:297.986667pt;}
.x62_c01288{left:300.293333pt;}
.xf0_c01288{left:302.586667pt;}
.xdb_c01288{left:305.666667pt;}
.xde_c01288{left:307.973333pt;}
.x30_c01288{left:311.813333pt;}
.x6d_c01288{left:314.880000pt;}
.x103_c01288{left:316.413333pt;}
.xa4_c01288{left:317.946667pt;}
.x1d_c01288{left:319.493333pt;}
.x87_c01288{left:321.026667pt;}
.x29_c01288{left:322.560000pt;}
.xdf_c01288{left:324.866667pt;}
.x7d_c01288{left:327.173333pt;}
.x2_c01288{left:328.706667pt;}
.x8b_c01288{left:331.013333pt;}
.x111_c01288{left:333.306667pt;}
.x73_c01288{left:336.386667pt;}
.xe9_c01288{left:337.920000pt;}
.x14_c01288{left:342.533333pt;}
.xbc_c01288{left:344.066667pt;}
.x4e_c01288{left:345.600000pt;}
.x79_c01288{left:347.133333pt;}
.x95_c01288{left:349.440000pt;}
.x68_c01288{left:350.973333pt;}
.x9a_c01288{left:353.280000pt;}
.xd4_c01288{left:356.346667pt;}
.x2a_c01288{left:357.893333pt;}
.xed_c01288{left:359.426667pt;}
.x96_c01288{left:360.960000pt;}
.xf1_c01288{left:364.026667pt;}
.xd0_c01288{left:365.573333pt;}
.x8_c01288{left:367.866667pt;}
.x9b_c01288{left:369.413333pt;}
.x56_c01288{left:372.480000pt;}
.x3a_c01288{left:374.013333pt;}
.x115_c01288{left:375.546667pt;}
.x9c_c01288{left:377.853333pt;}
.x31_c01288{left:380.160000pt;}
.xab_c01288{left:381.693333pt;}
.xe0_c01288{left:383.226667pt;}
.x1e_c01288{left:384.773333pt;}
.x9_c01288{left:386.306667pt;}
.x8c_c01288{left:388.613333pt;}
.x45_c01288{left:390.906667pt;}
.x74_c01288{left:392.453333pt;}
.xe5_c01288{left:395.520000pt;}
.x63_c01288{left:397.826667pt;}
.x69_c01288{left:399.360000pt;}
.xca_c01288{left:402.426667pt;}
.xd7_c01288{left:403.973333pt;}
.x15_c01288{left:406.266667pt;}
.x4f_c01288{left:408.573333pt;}
.xf9_c01288{left:410.880000pt;}
.xa_c01288{left:412.413333pt;}
.xc1_c01288{left:414.720000pt;}
.x8d_c01288{left:416.253333pt;}
.x97_c01288{left:417.786667pt;}
.x3b_c01288{left:419.333333pt;}
.x91_c01288{left:420.866667pt;}
.xb8_c01288{left:422.400000pt;}
.xad_c01288{left:423.933333pt;}
.xaf_c01288{left:426.240000pt;}
.x106_c01288{left:432.386667pt;}
.xd5_c01288{left:433.920000pt;}
.x3c_c01288{left:437.760000pt;}
.xb0_c01288{left:440.066667pt;}
.xac_c01288{left:442.373333pt;}
.x3_c01288{left:446.973333pt;}
.x46_c01288{left:448.506667pt;}
.xb1_c01288{left:450.053333pt;}
.x57_c01288{left:451.586667pt;}
.xf2_c01288{left:453.120000pt;}
.x75_c01288{left:454.653333pt;}
.x32_c01288{left:456.186667pt;}
.x1f_c01288{left:459.266667pt;}
.x76_c01288{left:460.800000pt;}
.x10b_c01288{left:462.333333pt;}
.xa5_c01288{left:463.866667pt;}
.x64_c01288{left:465.413333pt;}
.x7e_c01288{left:467.706667pt;}
.xf3_c01288{left:469.253333pt;}
.x47_c01288{left:471.546667pt;}
.xa0_c01288{left:473.853333pt;}
.xea_c01288{left:480.000000pt;}
.x112_c01288{left:481.533333pt;}
.xf4_c01288{left:483.066667pt;}
.xb_c01288{left:485.373333pt;}
.x65_c01288{left:486.906667pt;}
.xb2_c01288{left:488.453333pt;}
.x3d_c01288{left:489.986667pt;}
.x98_c01288{left:491.520000pt;}
.xbf_c01288{left:493.826667pt;}
.xd1_c01288{left:495.360000pt;}
.x3e_c01288{left:496.893333pt;}
.x9d_c01288{left:498.426667pt;}
.x50_c01288{left:499.973333pt;}
.x20_c01288{left:502.266667pt;}
.xc_c01288{left:503.813333pt;}
.x116_c01288{left:510.720000pt;}
.x33_c01288{left:516.866667pt;}
.xce_c01288{left:518.400000pt;}
.xa6_c01288{left:519.933333pt;}
.x7f_c01288{left:521.466667pt;}
.xbd_c01288{left:523.013333pt;}
.xe1_c01288{left:525.306667pt;}
.x117_c01288{left:528.386667pt;}
.xeb_c01288{left:529.920000pt;}
.xd_c01288{left:531.453333pt;}
.x6e_c01288{left:533.760000pt;}
.xc8_c01288{left:536.066667pt;}
.x2b_c01288{left:539.906667pt;}
.x10c_c01288{left:541.440000pt;}
.xfd_c01288{left:542.973333pt;}
.xb9_c01288{left:545.280000pt;}
.xdc_c01288{left:546.813333pt;}
.x80_c01288{left:549.120000pt;}
.xb3_c01288{left:550.653333pt;}
.x48_c01288{left:552.186667pt;}
.xe6_c01288{left:553.733333pt;}
.xe_c01288{left:556.026667pt;}
.x21_c01288{left:557.573333pt;}
.x51_c01288{left:559.866667pt;}
.x10e_c01288{left:561.413333pt;}
.x8e_c01288{left:562.946667pt;}
.x81_c01288{left:565.253333pt;}
.x16_c01288{left:568.320000pt;}
.x8f_c01288{left:569.853333pt;}
.x34_c01288{left:571.386667pt;}
.x6f_c01288{left:573.693333pt;}
.x5c_c01288{left:576.773333pt;}
.xcf_c01288{left:578.306667pt;}
.x3f_c01288{left:582.146667pt;}
.x66_c01288{left:585.213333pt;}
.xc2_c01288{left:587.520000pt;}
.x77_c01288{left:589.826667pt;}
.xfc_c01288{left:592.133333pt;}
.x67_c01288{left:593.666667pt;}
.x49_c01288{left:597.506667pt;}
.x82_c01288{left:599.040000pt;}
.xa1_c01288{left:600.573333pt;}
.xd8_c01288{left:605.186667pt;}
.xcb_c01288{left:606.720000pt;}
.x22_c01288{left:609.786667pt;}
.xfa_c01288{left:611.333333pt;}
.x6a_c01288{left:613.626667pt;}
.xba_c01288{left:615.173333pt;}
.x104_c01288{left:616.706667pt;}
.x7a_c01288{left:618.240000pt;}
.x35_c01288{left:620.546667pt;}
.x5d_c01288{left:622.853333pt;}
.x17_c01288{left:624.386667pt;}
.xe2_c01288{left:625.920000pt;}
.x88_c01288{left:628.986667pt;}
.xa7_c01288{left:633.600000pt;}
.x113_c01288{left:636.666667pt;}
.x70_c01288{left:638.213333pt;}
.xfe_c01288{left:639.746667pt;}
.x40_c01288{left:642.053333pt;}
.xe3_c01288{left:644.346667pt;}
.xb4_c01288{left:646.653333pt;}
.xcc_c01288{left:649.733333pt;}
.x7b_c01288{left:652.026667pt;}
.xe7_c01288{left:653.573333pt;}
.x23_c01288{left:655.866667pt;}
.x107_c01288{left:657.413333pt;}
.x92_c01288{left:658.946667pt;}
.x4a_c01288{left:660.480000pt;}
.xf5_c01288{left:662.786667pt;}
.xc9_c01288{left:664.320000pt;}
.x18_c01288{left:666.626667pt;}
.x36_c01288{left:668.160000pt;}
.x58_c01288{left:672.000000pt;}
.xd2_c01288{left:675.840000pt;}
.x24_c01288{left:677.373333pt;}
.x100_c01288{left:680.453333pt;}
.xff_c01288{left:681.986667pt;}
.x52_c01288{left:683.520000pt;}
.x99_c01288{left:685.826667pt;}
.xd6_c01288{left:687.360000pt;}
.x83_c01288{left:688.893333pt;}
.xf_c01288{left:691.200000pt;}
.x53_c01288{left:692.733333pt;}
.x71_c01288{left:694.266667pt;}
.x41_c01288{left:695.813333pt;}
.x6b_c01288{left:701.186667pt;}
.xb5_c01288{left:703.493333pt;}
.x108_c01288{left:705.026667pt;}
.xd3_c01288{left:706.560000pt;}
.xf7_c01288{left:708.093333pt;}
.x59_c01288{left:714.240000pt;}
.x89_c01288{left:717.306667pt;}
.xc3_c01288{left:721.920000pt;}
.xd9_c01288{left:727.293333pt;}
.x25_c01288{left:729.600000pt;}
.xfb_c01288{left:733.440000pt;}
.x42_c01288{left:735.746667pt;}
.x4_c01288{left:737.280000pt;}
.x19_c01288{left:738.813333pt;}
.xee_c01288{left:740.346667pt;}
.x110_c01288{left:742.653333pt;}
.xe8_c01288{left:744.960000pt;}
.x4b_c01288{left:746.493333pt;}
.xb6_c01288{left:748.026667pt;}
.x90_c01288{left:749.573333pt;}
.x26_c01288{left:754.173333pt;}
.x5e_c01288{left:755.706667pt;}
.xe4_c01288{left:759.546667pt;}
.x114_c01288{left:763.386667pt;}
.xf8_c01288{left:765.693333pt;}
.xa2_c01288{left:768.000000pt;}
.x10_c01288{left:769.533333pt;}
.x10d_c01288{left:771.840000pt;}
.x5_c01288{left:774.146667pt;}
.xc4_c01288{left:776.453333pt;}
.x37_c01288{left:778.746667pt;}
.x7c_c01288{left:780.293333pt;}
.xef_c01288{left:782.586667pt;}
.x43_c01288{left:789.506667pt;}
.x93_c01288{left:799.493333pt;}
.x101_c01288{left:805.626667pt;}
.x2c_c01288{left:813.306667pt;}
.xc5_c01288{left:827.133333pt;}
.x118_c01288{left:847.106667pt;}
.x119_c01288{left:850.946667pt;}
.x11a_c01288{left:915.453333pt;}
.x11b_c01288{left:921.600000pt;}
.x11f_c01288{left:928.506667pt;}
.x11e_c01288{left:937.733333pt;}
.x120_c01288{left:940.028133pt;}
.x11c_c01288{left:942.333333pt;}
.x121_c01288{left:950.786667pt;}
.x11d_c01288{left:954.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_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;}
@font-face{font-family:ff1_c01289;src:url('chunks/assets/font_3c9a29d85289bd7a95998670.woff2')format("woff");}.ff1_c01289{font-family:ff1_c01289;line-height:1.109863;font-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_c01289{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mf3_c01289{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m131_c01289{transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072000,0.000000,0.000000,0.250000,0,0);}
.m117_c01289{transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);}
.m178_c01289{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m145_c01289{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.m161_c01289{transform:matrix(0.097900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097900,0.000000,0.000000,0.250000,0,0);}
.m41_c01289{transform:matrix(0.109300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109300,0.000000,0.000000,0.250000,0,0);}
.m152_c01289{transform:matrix(0.109775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109775,0.000000,0.000000,0.250000,0,0);}
.m156_c01289{transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);}
.m15f_c01289{transform:matrix(0.112050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112050,0.000000,0.000000,0.250000,0,0);}
.me3_c01289{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);}
.m19b_c01289{transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);}
.m16f_c01289{transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);}
.m17f_c01289{transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120275,0.000000,0.000000,0.250000,0,0);}
.mf9_c01289{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m18f_c01289{transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);}
.mb6_c01289{transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);}
.m18b_c01289{transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);}
.m11c_c01289{transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);}
.m173_c01289{transform:matrix(0.123625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123625,0.000000,0.000000,0.250000,0,0);}
.m87_c01289{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m7d_c01289{transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125550,0.000000,0.000000,0.250000,0,0);}
.m2a_c01289{transform:matrix(0.127425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127425,0.000000,0.000000,0.250000,0,0);}
.m15e_c01289{transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);}
.m146_c01289{transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);}
.m5d_c01289{transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);}
.m80_c01289{transform:matrix(0.134300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134300,0.000000,0.000000,0.250000,0,0);}
.m3d_c01289{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m194_c01289{transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);}
.m108_c01289{transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);}
.m183_c01289{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.m46_c01289{transform:matrix(0.139125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139125,0.000000,0.000000,0.250000,0,0);}
.me4_c01289{transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140050,0.000000,0.000000,0.250000,0,0);}
.m135_c01289{transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);}
.mdc_c01289{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01289{transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141825,0.000000,0.000000,0.250000,0,0);}
.m2c_c01289{transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);}
.m16e_c01289{transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);}
.m2_c01289{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m186_c01289{transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);}
.me0_c01289{transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);}
.mdb_c01289{transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);}
.m4d_c01289{transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);}
.me8_c01289{transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145125,0.000000,0.000000,0.250000,0,0);}
.m19a_c01289{transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);}
.m24_c01289{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);}
.mcd_c01289{transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);}
.mdd_c01289{transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);}
.m184_c01289{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.m199_c01289{transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148400,0.000000,0.000000,0.250000,0,0);}
.m141_c01289{transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);}
.m195_c01289{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.m196_c01289{transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);}
.m19c_c01289{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);}
.m8_c01289{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m19d_c01289{transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);}
.m19f_c01289{transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);}
.m27_c01289{transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);}
.m5a_c01289{transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);}
.m10f_c01289{transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);}
.m118_c01289{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m157_c01289{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.m103_c01289{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.m56_c01289{transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);}
.md7_c01289{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m17b_c01289{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m45_c01289{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);}
.m134_c01289{transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);}
.m137_c01289{transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);}
.m114_c01289{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.m18e_c01289{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);}
.m166_c01289{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);}
.m26_c01289{transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);}
.me5_c01289{transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);}
.mfb_c01289{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.me2_c01289{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.m3b_c01289{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.m23_c01289{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.m149_c01289{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m34_c01289{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);}
.m175_c01289{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);}
.me6_c01289{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01289{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m153_c01289{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);}
.m17c_c01289{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01289{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.m170_c01289{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.m167_c01289{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.m3c_c01289{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m51_c01289{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m142_c01289{transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);}
.m132_c01289{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);}
.m191_c01289{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m101_c01289{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m14b_c01289{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.m32_c01289{transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);}
.m14a_c01289{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m185_c01289{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);}
.m14e_c01289{transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);}
.m192_c01289{transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169850,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01289{transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);}
.m111_c01289{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);}
.m174_c01289{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.m159_c01289{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.m112_c01289{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.m15c_c01289{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.mf8_c01289{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.m15d_c01289{transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);}
.mfa_c01289{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.m7a_c01289{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);}
.m5c_c01289{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m176_c01289{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);}
.m11f_c01289{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m150_c01289{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.mb9_c01289{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m69_c01289{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.m133_c01289{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m14f_c01289{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);}
.md_c01289{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.mcc_c01289{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.mf_c01289{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m18c_c01289{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);}
.m42_c01289{transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);}
.m43_c01289{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);}
.m52_c01289{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m115_c01289{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);}
.m13d_c01289{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);}
.m5f_c01289{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m8d_c01289{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m110_c01289{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m124_c01289{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);}
.m1c_c01289{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m17d_c01289{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m100_c01289{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.mc_c01289{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);}
.ma3_c01289{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.m86_c01289{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m16c_c01289{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m148_c01289{transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);}
.mff_c01289{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);}
.m144_c01289{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m4a_c01289{transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);}
.m6c_c01289{transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);}
.m6b_c01289{transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);}
.m182_c01289{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);}
.m53_c01289{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);}
.m116_c01289{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);}
.m11e_c01289{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m77_c01289{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.m181_c01289{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);}
.m9_c01289{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01289{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m61_c01289{transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);}
.m198_c01289{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m9b_c01289{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m188_c01289{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m172_c01289{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);}
.md2_c01289{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01289{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);}
.m2e_c01289{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.m55_c01289{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.mf7_c01289{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);}
.m129_c01289{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.mfc_c01289{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.md9_c01289{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.mb8_c01289{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);}
.m33_c01289{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.m88_c01289{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.md6_c01289{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);}
.m25_c01289{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.m3a_c01289{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.md1_c01289{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);}
.m179_c01289{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);}
.m125_c01289{transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);}
.ma8_c01289{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m168_c01289{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m4c_c01289{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m11d_c01289{transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);}
.m190_c01289{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m10b_c01289{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);}
.mb7_c01289{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);}
.m89_c01289{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);}
.m14_c01289{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m197_c01289{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.mf0_c01289{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.mf6_c01289{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.md4_c01289{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.mb1_c01289{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);}
.m7e_c01289{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);}
.ma9_c01289{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m162_c01289{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m127_c01289{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.ma0_c01289{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m136_c01289{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);}
.mcf_c01289{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01289{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);}
.m189_c01289{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);}
.mda_c01289{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.mad_c01289{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m113_c01289{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m11a_c01289{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m58_c01289{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);}
.m158_c01289{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);}
.m96_c01289{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);}
.m1a1_c01289{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);}
.md0_c01289{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);}
.m122_c01289{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);}
.m9f_c01289{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);}
.me1_c01289{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);}
.m12b_c01289{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.mfd_c01289{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);}
.m105_c01289{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m164_c01289{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m12f_c01289{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);}
.m165_c01289{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.m130_c01289{transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);}
.m169_c01289{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);}
.mc8_c01289{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);}
.m109_c01289{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);}
.mca_c01289{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.m155_c01289{transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);}
.m139_c01289{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.m140_c01289{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m83_c01289{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);}
.m19e_c01289{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);}
.m64_c01289{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m9a_c01289{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.m5_c01289{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m6_c01289{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m73_c01289{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);}
.m39_c01289{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);}
.ma2_c01289{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);}
.mc9_c01289{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);}
.m8c_c01289{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.mce_c01289{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);}
.m14c_c01289{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m171_c01289{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.ma4_c01289{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);}
.m10d_c01289{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);}
.m6a_c01289{transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);}
.mf2_c01289{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.mc3_c01289{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);}
.md8_c01289{transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228450,0.000000,0.000000,0.250000,0,0);}
.m8f_c01289{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m13a_c01289{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);}
.md3_c01289{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);}
.m163_c01289{transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);}
.m18a_c01289{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);}
.m128_c01289{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);}
.m10e_c01289{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);}
.m13f_c01289{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);}
.mb0_c01289{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.m72_c01289{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);}
.m104_c01289{transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);}
.m7f_c01289{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m13e_c01289{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);}
.m16d_c01289{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);}
.m120_c01289{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);}
.mef_c01289{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.ma5_c01289{transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);}
.m78_c01289{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);}
.m4f_c01289{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.m121_c01289{transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);}
.m13b_c01289{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.m11b_c01289{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.m74_c01289{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.mcb_c01289{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m13c_c01289{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);}
.m8a_c01289{transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);}
.m9c_c01289{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);}
.m49_c01289{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mde_c01289{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m4e_c01289{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);}
.m82_c01289{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);}
.m19_c01289{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);}
.m16a_c01289{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);}
.m4b_c01289{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);}
.m123_c01289{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);}
.m98_c01289{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);}
.m90_c01289{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);}
.m48_c01289{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);}
.m143_c01289{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);}
.m10c_c01289{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);}
.ma1_c01289{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);}
.m17a_c01289{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);}
.maf_c01289{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);}
.m138_c01289{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);}
.m71_c01289{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);}
.mc7_c01289{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);}
.m6e_c01289{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);}
.mb5_c01289{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);}
.m1b_c01289{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);}
.m29_c01289{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m154_c01289{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);}
.meb_c01289{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.mea_c01289{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);}
.m147_c01289{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);}
.med_c01289{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m75_c01289{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);}
.m15a_c01289{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);}
.mb2_c01289{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.mb_c01289{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);}
.m16_c01289{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mb3_c01289{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);}
.m95_c01289{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);}
.m44_c01289{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);}
.m7c_c01289{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);}
.m7b_c01289{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01289{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01289{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01289{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);}
.m59_c01289{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m18_c01289{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);}
.m30_c01289{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);}
.m97_c01289{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m47_c01289{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);}
.m1_c01289{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md5_c01289{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c01289{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);}
.m60_c01289{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mab_c01289{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);}
.m65_c01289{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_c01289{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01289{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01289{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);}
.m8b_c01289{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m63_c01289{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m66_c01289{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);}
.mae_c01289{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9d_c01289{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c01289{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma7_c01289{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01289{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m57_c01289{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01289{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m91_c01289{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c01289{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);}
.mee_c01289{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.me7_c01289{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m81_c01289{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m17_c01289{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c01289{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);}
.m13_c01289{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);}
.m84_c01289{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m76_c01289{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);}
.m6f_c01289{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m62_c01289{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.maa_c01289{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m94_c01289{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);}
.mc5_c01289{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.ma_c01289{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m79_c01289{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m14d_c01289{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);}
.mf1_c01289{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m15b_c01289{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m31_c01289{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01289{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m17e_c01289{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);}
.m40_c01289{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);}
.m99_c01289{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m107_c01289{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m93_c01289{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);}
.m12_c01289{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m187_c01289{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m7_c01289{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m92_c01289{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m36_c01289{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m106_c01289{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m16b_c01289{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m50_c01289{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m85_c01289{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);}
.m35_c01289{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01289{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m18d_c01289{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mc4_c01289{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m70_c01289{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mdf_c01289{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m180_c01289{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m102_c01289{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);}
.m28_c01289{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m160_c01289{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mec_c01289{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01289{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m9e_c01289{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mba_c01289{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);}
.mfe_c01289{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m119_c01289{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);}
.m15_c01289{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m12c_c01289{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mbc_c01289{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m151_c01289{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mac_c01289{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);}
.mb4_c01289{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m67_c01289{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.me9_c01289{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.mc2_c01289{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01289{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m37_c01289{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m20_c01289{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m12a_c01289{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m10a_c01289{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.mbb_c01289{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.mc6_c01289{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m12e_c01289{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m126_c01289{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc0_c01289{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.mf5_c01289{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m54_c01289{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01289{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01289{transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);}
.mbd_c01289{transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);}
.m3_c01289{transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01289{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m11_c01289{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m22_c01289{transform:matrix(1.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.342500,0.000000,0.000000,0.250000,0,0);}
.mf4_c01289{transform:matrix(1.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.422500,0.000000,0.000000,0.250000,0,0);}
.m193_c01289{transform:matrix(1.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.487500,0.000000,0.000000,0.250000,0,0);}
.mbe_c01289{transform:matrix(1.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.640000,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01289{transform:matrix(1.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.772500,0.000000,0.000000,0.250000,0,0);}
.m12d_c01289{transform:matrix(2.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.050000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01289{transform:matrix(2.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.200000,0.000000,0.000000,0.250000,0,0);}
.mc1_c01289{transform:matrix(2.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.427500,0.000000,0.000000,0.250000,0,0);}
.m177_c01289{transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01289{transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);}
.m21_c01289{transform:matrix(5.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.375000,0.000000,0.000000,0.250000,0,0);}
.v1_c01289{vertical-align:-13.800000px;}
.v0_c01289{vertical-align:0.000000px;}
.v2_c01289{vertical-align:10.380000px;}
.ls1_c01289{letter-spacing:0.000000px;}
.ls0_c01289{letter-spacing:37.386600px;}
.sc__c01289{text-shadow:none;}
.sc0_c01289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01289{-webkit-text-stroke:0px transparent;}
.sc0_c01289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01289{word-spacing:0.000000px;}
.ws0_c01289{word-spacing:64.670160px;}
.fc0_c01289{color:transparent;}
.fs6_c01289{font-size:3.456000px;}
.fs4_c01289{font-size:6.000000px;}
.fsf_c01289{font-size:6.900000px;}
.fs2_c01289{font-size:10.380000px;}
.fs1_c01289{font-size:13.800000px;}
.fs5_c01289{font-size:17.280000px;}
.fs3_c01289{font-size:20.760000px;}
.fse_c01289{font-size:24.180000px;}
.fs12_c01289{font-size:27.660000px;}
.fs15_c01289{font-size:31.080000px;}
.fs0_c01289{font-size:34.560000px;}
.fs10_c01289{font-size:38.040000px;}
.fs11_c01289{font-size:41.460000px;}
.fs1e_c01289{font-size:44.940000px;}
.fs14_c01289{font-size:48.360000px;}
.fs13_c01289{font-size:51.840000px;}
.fs16_c01289{font-size:55.320000px;}
.fs7_c01289{font-size:58.740000px;}
.fs19_c01289{font-size:62.220000px;}
.fs8_c01289{font-size:65.640000px;}
.fs17_c01289{font-size:69.120000px;}
.fsa_c01289{font-size:72.600000px;}
.fsb_c01289{font-size:76.020000px;}
.fs18_c01289{font-size:79.500000px;}
.fs20_c01289{font-size:82.920000px;}
.fsc_c01289{font-size:86.400000px;}
.fs1a_c01289{font-size:89.880000px;}
.fs1c_c01289{font-size:93.300000px;}
.fs1b_c01289{font-size:96.780000px;}
.fs21_c01289{font-size:100.200000px;}
.fs1f_c01289{font-size:103.680000px;}
.fs9_c01289{font-size:107.160000px;}
.fs1d_c01289{font-size:117.480000px;}
.fsd_c01289{font-size:124.440000px;}
.y0_c01289{bottom:0.000000px;}
.y1cd_c01289{bottom:118.365000px;}
.y1cc_c01289{bottom:127.875000px;}
.y1cb_c01289{bottom:128.730000px;}
.y1c8_c01289{bottom:187.485000px;}
.y1c6_c01289{bottom:189.210000px;}
.y1c7_c01289{bottom:190.080000px;}
.y1c5_c01289{bottom:190.950000px;}
.y1c9_c01289{bottom:192.675000px;}
.y1c4_c01289{bottom:193.530000px;}
.y1c3_c01289{bottom:194.400000px;}
.y1c2_c01289{bottom:197.850000px;}
.y1ca_c01289{bottom:207.360000px;}
.y1c1_c01289{bottom:210.810000px;}
.y1c0_c01289{bottom:212.550000px;}
.y1bc_c01289{bottom:214.275000px;}
.y1bb_c01289{bottom:216.000000px;}
.y1ba_c01289{bottom:218.595000px;}
.y1bd_c01289{bottom:219.450000px;}
.y1be_c01289{bottom:220.320000px;}
.y1b9_c01289{bottom:221.190000px;}
.y1bf_c01289{bottom:222.045000px;}
.y1b6_c01289{bottom:234.150000px;}
.y1b2_c01289{bottom:235.005000px;}
.y1b5_c01289{bottom:237.600000px;}
.y1b7_c01289{bottom:239.325000px;}
.y1b8_c01289{bottom:240.195000px;}
.y1b3_c01289{bottom:244.515000px;}
.y1b1_c01289{bottom:247.110000px;}
.y1b4_c01289{bottom:253.155000px;}
.y1af_c01289{bottom:254.880000px;}
.y1ad_c01289{bottom:255.750000px;}
.y1ab_c01289{bottom:256.605000px;}
.y1ac_c01289{bottom:257.475000px;}
.y1a9_c01289{bottom:259.200000px;}
.y1ae_c01289{bottom:260.925000px;}
.y1b0_c01289{bottom:262.650000px;}
.y1aa_c01289{bottom:266.115000px;}
.y1a4_c01289{bottom:275.610000px;}
.y19c_c01289{bottom:276.480000px;}
.y19e_c01289{bottom:277.350000px;}
.y1a3_c01289{bottom:278.205000px;}
.y19b_c01289{bottom:279.075000px;}
.y1a5_c01289{bottom:279.930000px;}
.y1a6_c01289{bottom:280.800000px;}
.y19d_c01289{bottom:281.670000px;}
.y1a7_c01289{bottom:282.525000px;}
.y1a1_c01289{bottom:283.395000px;}
.y1a2_c01289{bottom:287.715000px;}
.y1a8_c01289{bottom:288.570000px;}
.y1a0_c01289{bottom:291.165000px;}
.y19f_c01289{bottom:292.890000px;}
.y192_c01289{bottom:294.630000px;}
.y196_c01289{bottom:295.485000px;}
.y197_c01289{bottom:296.355000px;}
.y19a_c01289{bottom:297.210000px;}
.y198_c01289{bottom:298.080000px;}
.y195_c01289{bottom:298.950000px;}
.y191_c01289{bottom:301.530000px;}
.y193_c01289{bottom:302.400000px;}
.y194_c01289{bottom:304.125000px;}
.y199_c01289{bottom:305.850000px;}
.y18d_c01289{bottom:310.170000px;}
.y189_c01289{bottom:311.040000px;}
.y18b_c01289{bottom:312.765000px;}
.y18a_c01289{bottom:314.490000px;}
.y190_c01289{bottom:315.360000px;}
.y18e_c01289{bottom:319.680000px;}
.y18f_c01289{bottom:320.550000px;}
.y18c_c01289{bottom:323.130000px;}
.y188_c01289{bottom:333.510000px;}
.y181_c01289{bottom:334.365000px;}
.y184_c01289{bottom:335.235000px;}
.y182_c01289{bottom:336.090000px;}
.y186_c01289{bottom:339.555000px;}
.y187_c01289{bottom:340.410000px;}
.y185_c01289{bottom:343.005000px;}
.y183_c01289{bottom:343.875000px;}
.y17f_c01289{bottom:356.835000px;}
.y17b_c01289{bottom:357.690000px;}
.y17d_c01289{bottom:358.560000px;}
.y17c_c01289{bottom:359.430000px;}
.y17e_c01289{bottom:360.285000px;}
.y179_c01289{bottom:361.155000px;}
.y17a_c01289{bottom:362.880000px;}
.y180_c01289{bottom:365.475000px;}
.y177_c01289{bottom:374.115000px;}
.y175_c01289{bottom:374.970000px;}
.y176_c01289{bottom:375.840000px;}
.y174_c01289{bottom:376.710000px;}
.y171_c01289{bottom:377.565000px;}
.y172_c01289{bottom:379.290000px;}
.y173_c01289{bottom:380.160000px;}
.y178_c01289{bottom:392.250000px;}
.y170_c01289{bottom:396.570000px;}
.y16f_c01289{bottom:398.310000px;}
.y16d_c01289{bottom:399.165000px;}
.y16c_c01289{bottom:400.035000px;}
.y16e_c01289{bottom:400.890000px;}
.y16b_c01289{bottom:401.760000px;}
.y166_c01289{bottom:413.850000px;}
.y168_c01289{bottom:415.590000px;}
.y165_c01289{bottom:416.445000px;}
.y167_c01289{bottom:417.315000px;}
.y16a_c01289{bottom:418.170000px;}
.y164_c01289{bottom:419.910000px;}
.y169_c01289{bottom:420.765000px;}
.y163_c01289{bottom:422.490000px;}
.y15c_c01289{bottom:434.595000px;}
.y15f_c01289{bottom:435.450000px;}
.y160_c01289{bottom:436.320000px;}
.y161_c01289{bottom:438.915000px;}
.y15d_c01289{bottom:439.770000px;}
.y15a_c01289{bottom:440.640000px;}
.y15b_c01289{bottom:441.510000px;}
.y162_c01289{bottom:442.365000px;}
.y15e_c01289{bottom:444.090000px;}
.y159_c01289{bottom:453.600000px;}
.y157_c01289{bottom:454.470000px;}
.y156_c01289{bottom:455.325000px;}
.y158_c01289{bottom:456.195000px;}
.y155_c01289{bottom:464.835000px;}
.y150_c01289{bottom:476.925000px;}
.y14e_c01289{bottom:477.795000px;}
.y151_c01289{bottom:478.650000px;}
.y154_c01289{bottom:479.520000px;}
.y152_c01289{bottom:480.390000px;}
.y153_c01289{bottom:482.970000px;}
.y14f_c01289{bottom:485.565000px;}
.y14d_c01289{bottom:489.885000px;}
.y148_c01289{bottom:498.525000px;}
.y14a_c01289{bottom:499.395000px;}
.y147_c01289{bottom:500.250000px;}
.y149_c01289{bottom:501.990000px;}
.y14b_c01289{bottom:502.845000px;}
.y14c_c01289{bottom:503.715000px;}
.y146_c01289{bottom:504.570000px;}
.y145_c01289{bottom:505.440000px;}
.y144_c01289{bottom:506.310000px;}
.y143_c01289{bottom:509.760000px;}
.y13c_c01289{bottom:517.530000px;}
.y141_c01289{bottom:518.400000px;}
.y13f_c01289{bottom:519.270000px;}
.y13e_c01289{bottom:520.125000px;}
.y13d_c01289{bottom:521.850000px;}
.y140_c01289{bottom:522.720000px;}
.y142_c01289{bottom:527.040000px;}
.y136_c01289{bottom:534.810000px;}
.y137_c01289{bottom:536.550000px;}
.y138_c01289{bottom:537.405000px;}
.y135_c01289{bottom:538.275000px;}
.y13a_c01289{bottom:541.725000px;}
.y13b_c01289{bottom:542.595000px;}
.y134_c01289{bottom:545.190000px;}
.y139_c01289{bottom:554.685000px;}
.y131_c01289{bottom:558.150000px;}
.y12f_c01289{bottom:559.005000px;}
.y130_c01289{bottom:559.875000px;}
.y12d_c01289{bottom:560.730000px;}
.y132_c01289{bottom:563.325000px;}
.y133_c01289{bottom:564.195000px;}
.y12e_c01289{bottom:566.790000px;}
.y12a_c01289{bottom:567.645000px;}
.y12c_c01289{bottom:571.110000px;}
.y129_c01289{bottom:571.965000px;}
.y128_c01289{bottom:572.835000px;}
.y12b_c01289{bottom:573.690000px;}
.y127_c01289{bottom:576.285000px;}
.y126_c01289{bottom:578.880000px;}
.y123_c01289{bottom:579.750000px;}
.y122_c01289{bottom:584.925000px;}
.y124_c01289{bottom:585.795000px;}
.y125_c01289{bottom:596.160000px;}
.y120_c01289{bottom:598.755000px;}
.y11d_c01289{bottom:600.480000px;}
.y11c_c01289{bottom:603.075000px;}
.y121_c01289{bottom:604.800000px;}
.y11e_c01289{bottom:606.525000px;}
.y11f_c01289{bottom:608.250000px;}
.y11a_c01289{bottom:618.630000px;}
.y117_c01289{bottom:619.485000px;}
.y118_c01289{bottom:621.210000px;}
.y11b_c01289{bottom:622.080000px;}
.y116_c01289{bottom:623.805000px;}
.y119_c01289{bottom:626.400000px;}
.y115_c01289{bottom:635.910000px;}
.y10f_c01289{bottom:636.765000px;}
.y10e_c01289{bottom:637.635000px;}
.y110_c01289{bottom:638.490000px;}
.y113_c01289{bottom:639.360000px;}
.y10d_c01289{bottom:640.230000px;}
.y10c_c01289{bottom:641.955000px;}
.y114_c01289{bottom:645.405000px;}
.y111_c01289{bottom:646.275000px;}
.y112_c01289{bottom:654.915000px;}
.y108_c01289{bottom:660.960000px;}
.y10a_c01289{bottom:661.830000px;}
.y106_c01289{bottom:663.555000px;}
.y10b_c01289{bottom:664.410000px;}
.y107_c01289{bottom:665.280000px;}
.y109_c01289{bottom:666.150000px;}
.y105_c01289{bottom:677.370000px;}
.y104_c01289{bottom:679.965000px;}
.y100_c01289{bottom:680.835000px;}
.yff_c01289{bottom:681.690000px;}
.yfe_c01289{bottom:683.430000px;}
.y103_c01289{bottom:684.285000px;}
.y101_c01289{bottom:685.155000px;}
.y102_c01289{bottom:686.010000px;}
.yfd_c01289{bottom:699.840000px;}
.yfc_c01289{bottom:700.710000px;}
.yf8_c01289{bottom:701.565000px;}
.yf7_c01289{bottom:703.290000px;}
.yfb_c01289{bottom:705.030000px;}
.yf6_c01289{bottom:705.885000px;}
.yf9_c01289{bottom:708.480000px;}
.yfa_c01289{bottom:717.120000px;}
.yf4_c01289{bottom:719.715000px;}
.yf5_c01289{bottom:720.570000px;}
.yf1_c01289{bottom:721.440000px;}
.yf3_c01289{bottom:724.890000px;}
.yef_c01289{bottom:725.760000px;}
.yf0_c01289{bottom:726.630000px;}
.yf2_c01289{bottom:727.485000px;}
.yec_c01289{bottom:739.590000px;}
.yea_c01289{bottom:741.315000px;}
.ye8_c01289{bottom:743.040000px;}
.ye7_c01289{bottom:745.635000px;}
.ye9_c01289{bottom:746.490000px;}
.yeb_c01289{bottom:747.360000px;}
.yed_c01289{bottom:753.405000px;}
.ye4_c01289{bottom:755.130000px;}
.yee_c01289{bottom:756.870000px;}
.ye5_c01289{bottom:758.595000px;}
.ye6_c01289{bottom:760.320000px;}
.ye1_c01289{bottom:762.915000px;}
.yde_c01289{bottom:763.770000px;}
.ye0_c01289{bottom:765.510000px;}
.ye3_c01289{bottom:766.365000px;}
.ydf_c01289{bottom:767.235000px;}
.ye2_c01289{bottom:768.960000px;}
.yda_c01289{bottom:781.920000px;}
.ydc_c01289{bottom:782.790000px;}
.ydb_c01289{bottom:784.515000px;}
.yd8_c01289{bottom:786.240000px;}
.yd9_c01289{bottom:787.110000px;}
.ydd_c01289{bottom:787.965000px;}
.yd7_c01289{bottom:795.750000px;}
.yd3_c01289{bottom:800.925000px;}
.yd2_c01289{bottom:801.795000px;}
.yd5_c01289{bottom:803.520000px;}
.yd4_c01289{bottom:806.115000px;}
.yd6_c01289{bottom:806.970000px;}
.ycc_c01289{bottom:821.670000px;}
.yd1_c01289{bottom:823.395000px;}
.yce_c01289{bottom:824.250000px;}
.yd0_c01289{bottom:825.990000px;}
.ycf_c01289{bottom:826.845000px;}
.ycd_c01289{bottom:827.715000px;}
.yc7_c01289{bottom:840.675000px;}
.ycb_c01289{bottom:841.530000px;}
.yc6_c01289{bottom:846.720000px;}
.yc8_c01289{bottom:847.590000px;}
.yc9_c01289{bottom:848.445000px;}
.yca_c01289{bottom:849.315000px;}
.yc3_c01289{bottom:860.550000px;}
.yc1_c01289{bottom:861.405000px;}
.yc4_c01289{bottom:862.275000px;}
.yc0_c01289{bottom:867.450000px;}
.yc5_c01289{bottom:868.320000px;}
.yc2_c01289{bottom:874.365000px;}
.ybc_c01289{bottom:881.280000px;}
.ybd_c01289{bottom:882.150000px;}
.ybe_c01289{bottom:883.005000px;}
.ybb_c01289{bottom:887.325000px;}
.ybf_c01289{bottom:888.195000px;}
.yba_c01289{bottom:897.690000px;}
.yb4_c01289{bottom:903.750000px;}
.yb7_c01289{bottom:904.605000px;}
.yb6_c01289{bottom:905.475000px;}
.yb3_c01289{bottom:906.330000px;}
.yb8_c01289{bottom:907.200000px;}
.yb9_c01289{bottom:908.070000px;}
.yae_c01289{bottom:908.925000px;}
.yb5_c01289{bottom:909.795000px;}
.yb0_c01289{bottom:914.115000px;}
.yad_c01289{bottom:914.970000px;}
.yb2_c01289{bottom:915.840000px;}
.yaf_c01289{bottom:916.710000px;}
.yb1_c01289{bottom:918.435000px;}
.y8_c01289{bottom:919.290000px;}
.ya6_c01289{bottom:922.755000px;}
.yab_c01289{bottom:923.610000px;}
.y7_c01289{bottom:924.480000px;}
.ya9_c01289{bottom:925.350000px;}
.ya8_c01289{bottom:927.075000px;}
.ya7_c01289{bottom:928.800000px;}
.yac_c01289{bottom:935.715000px;}
.yaa_c01289{bottom:943.485000px;}
.ya3_c01289{bottom:944.355000px;}
.ya4_c01289{bottom:946.080000px;}
.ya2_c01289{bottom:946.950000px;}
.ya0_c01289{bottom:947.805000px;}
.ya5_c01289{bottom:948.675000px;}
.ya1_c01289{bottom:949.530000px;}
.y9f_c01289{bottom:963.360000px;}
.y9e_c01289{bottom:964.230000px;}
.y9b_c01289{bottom:967.680000px;}
.y9c_c01289{bottom:968.550000px;}
.y9d_c01289{bottom:969.405000px;}
.y6_c01289{bottom:972.000000px;}
.y95_c01289{bottom:982.365000px;}
.y98_c01289{bottom:983.235000px;}
.y97_c01289{bottom:984.090000px;}
.y93_c01289{bottom:985.830000px;}
.y96_c01289{bottom:987.555000px;}
.y94_c01289{bottom:988.410000px;}
.y99_c01289{bottom:989.280000px;}
.y5_c01289{bottom:991.005000px;}
.y9a_c01289{bottom:997.920000px;}
.y8f_c01289{bottom:1003.965000px;}
.y90_c01289{bottom:1006.560000px;}
.y8e_c01289{bottom:1007.430000px;}
.y91_c01289{bottom:1008.285000px;}
.y92_c01289{bottom:1020.390000px;}
.y88_c01289{bottom:1022.970000px;}
.y8a_c01289{bottom:1023.840000px;}
.y8b_c01289{bottom:1025.565000px;}
.y87_c01289{bottom:1028.160000px;}
.y8c_c01289{bottom:1029.030000px;}
.y89_c01289{bottom:1030.755000px;}
.y8d_c01289{bottom:1035.075000px;}
.y82_c01289{bottom:1042.845000px;}
.y86_c01289{bottom:1043.715000px;}
.y84_c01289{bottom:1045.440000px;}
.y85_c01289{bottom:1048.035000px;}
.y83_c01289{bottom:1048.890000px;}
.y4_c01289{bottom:1058.400000px;}
.y3_c01289{bottom:1063.590000px;}
.y7a_c01289{bottom:1064.445000px;}
.y7d_c01289{bottom:1065.315000px;}
.y7e_c01289{bottom:1066.170000px;}
.y80_c01289{bottom:1067.040000px;}
.y7c_c01289{bottom:1068.765000px;}
.y7f_c01289{bottom:1069.635000px;}
.y7b_c01289{bottom:1070.490000px;}
.y81_c01289{bottom:1080.000000px;}
.y76_c01289{bottom:1082.595000px;}
.y77_c01289{bottom:1083.450000px;}
.y74_c01289{bottom:1084.320000px;}
.y72_c01289{bottom:1085.190000px;}
.y73_c01289{bottom:1086.915000px;}
.y75_c01289{bottom:1088.640000px;}
.y78_c01289{bottom:1090.365000px;}
.y79_c01289{bottom:1099.005000px;}
.y6f_c01289{bottom:1103.325000px;}
.y6e_c01289{bottom:1104.195000px;}
.y6c_c01289{bottom:1105.050000px;}
.y6b_c01289{bottom:1105.920000px;}
.y69_c01289{bottom:1106.790000px;}
.y71_c01289{bottom:1107.645000px;}
.y6d_c01289{bottom:1108.515000px;}
.y70_c01289{bottom:1110.240000px;}
.y6a_c01289{bottom:1111.110000px;}
.y66_c01289{bottom:1124.070000px;}
.y62_c01289{bottom:1125.795000px;}
.y68_c01289{bottom:1126.650000px;}
.y67_c01289{bottom:1128.390000px;}
.y65_c01289{bottom:1129.245000px;}
.y61_c01289{bottom:1130.115000px;}
.y63_c01289{bottom:1130.970000px;}
.y64_c01289{bottom:1131.840000px;}
.y5c_c01289{bottom:1144.800000px;}
.y5d_c01289{bottom:1145.670000px;}
.y5e_c01289{bottom:1146.525000px;}
.y5f_c01289{bottom:1147.395000px;}
.y60_c01289{bottom:1148.250000px;}
.y5b_c01289{bottom:1149.990000px;}
.y5a_c01289{bottom:1151.715000px;}
.y56_c01289{bottom:1164.675000px;}
.y51_c01289{bottom:1166.400000px;}
.y52_c01289{bottom:1167.270000px;}
.y54_c01289{bottom:1168.995000px;}
.y57_c01289{bottom:1169.850000px;}
.y58_c01289{bottom:1171.590000px;}
.y53_c01289{bottom:1172.445000px;}
.y59_c01289{bottom:1175.910000px;}
.y1_c01289{bottom:1176.765000px;}
.y55_c01289{bottom:1177.635000px;}
.y2_c01289{bottom:1179.360000px;}
.y48_c01289{bottom:1184.550000px;}
.y4a_c01289{bottom:1186.275000px;}
.y4c_c01289{bottom:1188.000000px;}
.y4e_c01289{bottom:1189.725000px;}
.y4f_c01289{bottom:1190.595000px;}
.y49_c01289{bottom:1191.450000px;}
.y50_c01289{bottom:1192.320000px;}
.y4b_c01289{bottom:1193.190000px;}
.y4d_c01289{bottom:1194.045000px;}
.y42_c01289{bottom:1204.410000px;}
.y47_c01289{bottom:1206.150000px;}
.y43_c01289{bottom:1207.005000px;}
.y46_c01289{bottom:1209.600000px;}
.y44_c01289{bottom:1212.195000px;}
.y45_c01289{bottom:1213.050000px;}
.y41_c01289{bottom:1224.285000px;}
.y39_c01289{bottom:1226.880000px;}
.y3a_c01289{bottom:1227.750000px;}
.y3e_c01289{bottom:1228.605000px;}
.y38_c01289{bottom:1229.475000px;}
.y3d_c01289{bottom:1230.330000px;}
.y3c_c01289{bottom:1231.200000px;}
.y37_c01289{bottom:1232.070000px;}
.y3b_c01289{bottom:1233.795000px;}
.y40_c01289{bottom:1236.390000px;}
.y32_c01289{bottom:1237.245000px;}
.y3f_c01289{bottom:1238.970000px;}
.y34_c01289{bottom:1240.710000px;}
.y35_c01289{bottom:1241.565000px;}
.y2f_c01289{bottom:1243.290000px;}
.y2e_c01289{bottom:1244.160000px;}
.y30_c01289{bottom:1245.030000px;}
.y36_c01289{bottom:1247.610000px;}
.y31_c01289{bottom:1249.350000px;}
.y33_c01289{bottom:1251.930000px;}
.y27_c01289{bottom:1265.760000px;}
.y28_c01289{bottom:1266.630000px;}
.y2d_c01289{bottom:1268.355000px;}
.y2c_c01289{bottom:1269.210000px;}
.y29_c01289{bottom:1272.675000px;}
.y2b_c01289{bottom:1275.270000px;}
.y2a_c01289{bottom:1276.125000px;}
.y21_c01289{bottom:1288.230000px;}
.y22_c01289{bottom:1289.955000px;}
.y25_c01289{bottom:1290.810000px;}
.y23_c01289{bottom:1291.680000px;}
.y26_c01289{bottom:1294.275000px;}
.y24_c01289{bottom:1295.130000px;}
.y20_c01289{bottom:1299.450000px;}
.y1d_c01289{bottom:1308.960000px;}
.y1c_c01289{bottom:1310.685000px;}
.y1e_c01289{bottom:1314.150000px;}
.y1f_c01289{bottom:1315.005000px;}
.y18_c01289{bottom:1330.560000px;}
.y19_c01289{bottom:1331.430000px;}
.y17_c01289{bottom:1332.285000px;}
.y1b_c01289{bottom:1333.155000px;}
.y1a_c01289{bottom:1334.010000px;}
.y16_c01289{bottom:1336.605000px;}
.y13_c01289{bottom:1339.200000px;}
.y12_c01289{bottom:1340.070000px;}
.y11_c01289{bottom:1340.925000px;}
.y14_c01289{bottom:1344.390000px;}
.y15_c01289{bottom:1346.115000px;}
.y10_c01289{bottom:1354.755000px;}
.ya_c01289{bottom:1359.930000px;}
.ye_c01289{bottom:1360.800000px;}
.yf_c01289{bottom:1361.670000px;}
.yd_c01289{bottom:1362.525000px;}
.y9_c01289{bottom:1366.845000px;}
.yc_c01289{bottom:1370.310000px;}
.yb_c01289{bottom:1375.485000px;}
.h8_c01289{height:3.110063px;}
.h6_c01289{height:5.399414px;}
.h11_c01289{height:6.209326px;}
.h4_c01289{height:9.340986px;}
.h3_c01289{height:12.418652px;}
.h7_c01289{height:15.550313px;}
.h5_c01289{height:18.681973px;}
.h10_c01289{height:21.759639px;}
.h24_c01289{height:22.798652px;}
.h14_c01289{height:24.891299px;}
.h17_c01289{height:27.968965px;}
.h2_c01289{height:31.100625px;}
.h12_c01289{height:34.232285px;}
.h13_c01289{height:37.309951px;}
.h20_c01289{height:40.441611px;}
.h16_c01289{height:43.519277px;}
.h15_c01289{height:46.650937px;}
.h18_c01289{height:49.782598px;}
.h9_c01289{height:52.860264px;}
.h1b_c01289{height:55.991924px;}
.ha_c01289{height:59.069590px;}
.h19_c01289{height:62.201250px;}
.hc_c01289{height:65.332910px;}
.hd_c01289{height:68.410576px;}
.h1a_c01289{height:71.542236px;}
.h22_c01289{height:74.619902px;}
.he_c01289{height:77.751563px;}
.h1c_c01289{height:80.883223px;}
.h1e_c01289{height:83.960889px;}
.h1d_c01289{height:87.092549px;}
.h23_c01289{height:90.170215px;}
.h21_c01289{height:93.301875px;}
.hb_c01289{height:96.433535px;}
.h1f_c01289{height:105.720527px;}
.hf_c01289{height:111.983848px;}
.h0_c01289{height:1509.405000px;}
.h1_c01289{height:1509.750000px;}
.w0_c01289{width:1088.640000px;}
.w1_c01289{width:1089.000000px;}
.x0_c01289{left:0.000000px;}
.x1_c01289{left:19.875000px;}
.x3_c01289{left:162.435000px;}
.x2_c01289{left:164.160000px;}
.x4_c01289{left:169.350000px;}
.xdf_c01289{left:185.760000px;}
.x109_c01289{left:187.485000px;}
.xcb_c01289{left:191.805000px;}
.x28_c01289{left:198.720000px;}
.xfe_c01289{left:203.910000px;}
.xb7_c01289{left:206.490000px;}
.xe0_c01289{left:212.550000px;}
.x5_c01289{left:216.000000px;}
.x75_c01289{left:219.450000px;}
.x2f_c01289{left:223.770000px;}
.x4f_c01289{left:225.510000px;}
.x19_c01289{left:228.090000px;}
.xa2_c01289{left:229.830000px;}
.xd0_c01289{left:231.555000px;}
.xf_c01289{left:234.150000px;}
.x6_c01289{left:235.875000px;}
.xc2_c01289{left:240.195000px;}
.xbd_c01289{left:241.920000px;}
.x110_c01289{left:244.515000px;}
.xe1_c01289{left:246.240000px;}
.x60_c01289{left:248.835000px;}
.xb8_c01289{left:250.560000px;}
.xa7_c01289{left:252.285000px;}
.x76_c01289{left:254.880000px;}
.x7_c01289{left:258.330000px;}
.x92_c01289{left:260.070000px;}
.x121_c01289{left:261.795000px;}
.x56_c01289{left:263.520000px;}
.x120_c01289{left:266.115000px;}
.xc3_c01289{left:272.160000px;}
.xd1_c01289{left:274.755000px;}
.x8_c01289{left:277.350000px;}
.x7e_c01289{left:279.930000px;}
.x10_c01289{left:282.525000px;}
.x6e_c01289{left:287.715000px;}
.x11_c01289{left:289.440000px;}
.xd9_c01289{left:293.760000px;}
.x29_c01289{left:296.355000px;}
.x69_c01289{left:298.950000px;}
.x25_c01289{left:302.400000px;}
.x1a_c01289{left:304.125000px;}
.x8d_c01289{left:306.720000px;}
.xc7_c01289{left:309.315000px;}
.xd2_c01289{left:311.910000px;}
.x45_c01289{left:314.490000px;}
.x57_c01289{left:316.230000px;}
.x118_c01289{left:317.955000px;}
.x30_c01289{left:319.680000px;}
.x95_c01289{left:321.405000px;}
.x26_c01289{left:326.595000px;}
.x12_c01289{left:328.320000px;}
.x1b_c01289{left:330.045000px;}
.xa3_c01289{left:331.770000px;}
.x13_c01289{left:336.960000px;}
.x39_c01289{left:339.555000px;}
.x50_c01289{left:343.005000px;}
.x11c_c01289{left:345.600000px;}
.x11d_c01289{left:349.050000px;}
.x9c_c01289{left:350.790000px;}
.x9_c01289{left:353.370000px;}
.x104_c01289{left:355.110000px;}
.xf5_c01289{left:356.835000px;}
.x1c_c01289{left:359.430000px;}
.x119_c01289{left:363.750000px;}
.xee_c01289{left:365.475000px;}
.xa_c01289{left:367.200000px;}
.x77_c01289{left:369.795000px;}
.x58_c01289{left:371.520000px;}
.xcc_c01289{left:374.115000px;}
.x106_c01289{left:375.840000px;}
.x6a_c01289{left:380.160000px;}
.xc8_c01289{left:384.480000px;}
.x7f_c01289{left:386.205000px;}
.x14_c01289{left:388.800000px;}
.xe7_c01289{left:390.525000px;}
.x8e_c01289{left:393.120000px;}
.xa8_c01289{left:397.440000px;}
.x111_c01289{left:399.165000px;}
.xb_c01289{left:401.760000px;}
.xcd_c01289{left:404.355000px;}
.xd3_c01289{left:406.080000px;}
.xad_c01289{left:407.805000px;}
.x85_c01289{left:409.530000px;}
.x1d_c01289{left:412.995000px;}
.xe3_c01289{left:416.445000px;}
.x1e_c01289{left:419.040000px;}
.x11a_c01289{left:420.765000px;}
.xb1_c01289{left:422.490000px;}
.xce_c01289{left:424.230000px;}
.x15_c01289{left:425.955000px;}
.x2a_c01289{left:427.680000px;}
.x112_c01289{left:429.405000px;}
.x31_c01289{left:431.130000px;}
.x8f_c01289{left:433.725000px;}
.x1f_c01289{left:436.320000px;}
.x61_c01289{left:438.045000px;}
.xc_c01289{left:443.235000px;}
.xb2_c01289{left:444.960000px;}
.x107_c01289{left:448.410000px;}
.xda_c01289{left:450.150000px;}
.x90_c01289{left:451.875000px;}
.x6b_c01289{left:454.470000px;}
.xf1_c01289{left:457.050000px;}
.x78_c01289{left:458.790000px;}
.xae_c01289{left:461.370000px;}
.xd_c01289{left:463.110000px;}
.x2b_c01289{left:466.560000px;}
.x46_c01289{left:468.285000px;}
.x51_c01289{left:470.880000px;}
.x16_c01289{left:476.070000px;}
.xef_c01289{left:477.795000px;}
.xa1_c01289{left:479.520000px;}
.xf6_c01289{left:482.115000px;}
.xf8_c01289{left:483.840000px;}
.x52_c01289{left:488.160000px;}
.x32_c01289{left:492.480000px;}
.x59_c01289{left:494.205000px;}
.x3a_c01289{left:495.930000px;}
.xfd_c01289{left:497.670000px;}
.xf0_c01289{left:500.250000px;}
.x33_c01289{left:501.990000px;}
.x62_c01289{left:504.570000px;}
.x27_c01289{left:506.310000px;}
.x6f_c01289{left:508.035000px;}
.xd4_c01289{left:509.760000px;}
.x86_c01289{left:511.485000px;}
.xf2_c01289{left:515.805000px;}
.x80_c01289{left:518.400000px;}
.xdb_c01289{left:520.125000px;}
.x17_c01289{left:524.445000px;}
.x108_c01289{left:527.040000px;}
.xa4_c01289{left:529.635000px;}
.xdc_c01289{left:531.360000px;}
.x114_c01289{left:537.405000px;}
.x18_c01289{left:540.000000px;}
.xc9_c01289{left:541.725000px;}
.x115_c01289{left:544.320000px;}
.x3b_c01289{left:546.915000px;}
.x70_c01289{left:548.640000px;}
.x63_c01289{left:551.235000px;}
.xe_c01289{left:552.960000px;}
.xe8_c01289{left:554.685000px;}
.x5a_c01289{left:557.280000px;}
.x20_c01289{left:559.005000px;}
.x3c_c01289{left:561.600000px;}
.xb3_c01289{left:563.325000px;}
.xe9_c01289{left:565.050000px;}
.xf9_c01289{left:567.645000px;}
.x11b_c01289{left:569.370000px;}
.x116_c01289{left:577.155000px;}
.x96_c01289{left:580.605000px;}
.xb4_c01289{left:582.330000px;}
.x79_c01289{left:584.925000px;}
.x47_c01289{left:588.390000px;}
.xc4_c01289{left:590.115000px;}
.x71_c01289{left:594.435000px;}
.x105_c01289{left:596.160000px;}
.x9d_c01289{left:597.885000px;}
.x5b_c01289{left:600.480000px;}
.xbe_c01289{left:603.930000px;}
.x3d_c01289{left:605.670000px;}
.x10a_c01289{left:607.395000px;}
.x34_c01289{left:609.120000px;}
.x10e_c01289{left:611.715000px;}
.xd5_c01289{left:613.440000px;}
.x3e_c01289{left:615.165000px;}
.xff_c01289{left:616.890000px;}
.xca_c01289{left:618.630000px;}
.xe4_c01289{left:620.355000px;}
.xa9_c01289{left:625.530000px;}
.x48_c01289{left:628.125000px;}
.x53_c01289{left:629.850000px;}
.xf3_c01289{left:631.590000px;}
.x21_c01289{left:633.315000px;}
.x64_c01289{left:635.040000px;}
.x7a_c01289{left:637.635000px;}
.x2c_c01289{left:639.360000px;}
.xb9_c01289{left:641.085000px;}
.xe5_c01289{left:642.810000px;}
.xea_c01289{left:644.550000px;}
.x54_c01289{left:646.275000px;}
.xd6_c01289{left:648.000000px;}
.xba_c01289{left:650.595000px;}
.x22_c01289{left:652.320000px;}
.x3f_c01289{left:654.045000px;}
.x81_c01289{left:656.640000px;}
.x97_c01289{left:660.090000px;}
.x87_c01289{left:661.830000px;}
.xa5_c01289{left:663.555000px;}
.x2d_c01289{left:666.150000px;}
.x35_c01289{left:670.470000px;}
.xdd_c01289{left:672.195000px;}
.x11f_c01289{left:674.790000px;}
.x5c_c01289{left:676.515000px;}
.x49_c01289{left:678.240000px;}
.xfa_c01289{left:680.835000px;}
.xb5_c01289{left:684.285000px;}
.x65_c01289{left:687.750000px;}
.x9e_c01289{left:689.475000px;}
.xeb_c01289{left:691.200000px;}
.xc5_c01289{left:692.925000px;}
.x72_c01289{left:695.520000px;}
.xec_c01289{left:697.245000px;}
.x4a_c01289{left:698.970000px;}
.xe2_c01289{left:700.710000px;}
.x36_c01289{left:702.435000px;}
.xde_c01289{left:708.480000px;}
.xaa_c01289{left:712.800000px;}
.x100_c01289{left:715.395000px;}
.x40_c01289{left:717.120000px;}
.x98_c01289{left:718.845000px;}
.xf4_c01289{left:721.440000px;}
.x93_c01289{left:724.035000px;}
.x73_c01289{left:725.760000px;}
.xa6_c01289{left:730.080000px;}
.xaf_c01289{left:732.675000px;}
.x10b_c01289{left:735.270000px;}
.x5d_c01289{left:737.850000px;}
.x41_c01289{left:739.590000px;}
.x88_c01289{left:742.170000px;}
.x7b_c01289{left:744.765000px;}
.x23_c01289{left:747.360000px;}
.x99_c01289{left:749.085000px;}
.x89_c01289{left:750.810000px;}
.xd7_c01289{left:752.550000px;}
.x6c_c01289{left:755.130000px;}
.xfb_c01289{left:756.870000px;}
.x4b_c01289{left:758.595000px;}
.x9f_c01289{left:761.190000px;}
.x2e_c01289{left:762.915000px;}
.xd8_c01289{left:764.640000px;}
.xc6_c01289{left:768.960000px;}
.x8a_c01289{left:770.685000px;}
.x11e_c01289{left:774.150000px;}
.x7c_c01289{left:775.875000px;}
.x42_c01289{left:777.600000px;}
.x74_c01289{left:779.325000px;}
.xbf_c01289{left:781.920000px;}
.x24_c01289{left:784.515000px;}
.xc0_c01289{left:787.110000px;}
.xbb_c01289{left:791.430000px;}
.x82_c01289{left:794.010000px;}
.xfc_c01289{left:795.750000px;}
.x66_c01289{left:799.200000px;}
.x113_c01289{left:800.925000px;}
.xed_c01289{left:802.650000px;}
.x6d_c01289{left:804.390000px;}
.x10c_c01289{left:807.840000px;}
.xab_c01289{left:810.435000px;}
.x55_c01289{left:813.030000px;}
.x94_c01289{left:814.755000px;}
.xa0_c01289{left:817.350000px;}
.x83_c01289{left:819.075000px;}
.x5e_c01289{left:821.670000px;}
.x101_c01289{left:825.120000px;}
.xc1_c01289{left:826.845000px;}
.xbc_c01289{left:828.570000px;}
.xf7_c01289{left:831.165000px;}
.xcf_c01289{left:833.760000px;}
.x102_c01289{left:835.485000px;}
.x4c_c01289{left:837.210000px;}
.xac_c01289{left:838.950000px;}
.x5f_c01289{left:841.530000px;}
.x67_c01289{left:843.270000px;}
.x8b_c01289{left:844.995000px;}
.xe6_c01289{left:846.720000px;}
.x7d_c01289{left:849.315000px;}
.x103_c01289{left:853.635000px;}
.x10d_c01289{left:856.230000px;}
.xb6_c01289{left:863.130000px;}
.xb0_c01289{left:864.870000px;}
.x43_c01289{left:868.320000px;}
.x68_c01289{left:870.045000px;}
.x9a_c01289{left:872.640000px;}
.x84_c01289{left:875.235000px;}
.x37_c01289{left:878.685000px;}
.x4d_c01289{left:881.280000px;}
.x8c_c01289{left:883.875000px;}
.x10f_c01289{left:885.600000px;}
.x117_c01289{left:891.645000px;}
.x91_c01289{left:893.370000px;}
.x38_c01289{left:895.965000px;}
.x9b_c01289{left:907.200000px;}
.x4e_c01289{left:910.650000px;}
.x44_c01289{left:924.480000px;}
@media print{
.v1_c01289{vertical-align:-12.266667pt;}
.v0_c01289{vertical-align:0.000000pt;}
.v2_c01289{vertical-align:9.226667pt;}
.ls1_c01289{letter-spacing:0.000000pt;}
.ls0_c01289{letter-spacing:33.232533pt;}
.ws1_c01289{word-spacing:0.000000pt;}
.ws0_c01289{word-spacing:57.484587pt;}
.fs6_c01289{font-size:3.072000pt;}
.fs4_c01289{font-size:5.333333pt;}
.fsf_c01289{font-size:6.133333pt;}
.fs2_c01289{font-size:9.226667pt;}
.fs1_c01289{font-size:12.266667pt;}
.fs5_c01289{font-size:15.360000pt;}
.fs3_c01289{font-size:18.453333pt;}
.fse_c01289{font-size:21.493333pt;}
.fs12_c01289{font-size:24.586667pt;}
.fs15_c01289{font-size:27.626667pt;}
.fs0_c01289{font-size:30.720000pt;}
.fs10_c01289{font-size:33.813333pt;}
.fs11_c01289{font-size:36.853333pt;}
.fs1e_c01289{font-size:39.946667pt;}
.fs14_c01289{font-size:42.986667pt;}
.fs13_c01289{font-size:46.080000pt;}
.fs16_c01289{font-size:49.173333pt;}
.fs7_c01289{font-size:52.213333pt;}
.fs19_c01289{font-size:55.306667pt;}
.fs8_c01289{font-size:58.346667pt;}
.fs17_c01289{font-size:61.440000pt;}
.fsa_c01289{font-size:64.533333pt;}
.fsb_c01289{font-size:67.573333pt;}
.fs18_c01289{font-size:70.666667pt;}
.fs20_c01289{font-size:73.706667pt;}
.fsc_c01289{font-size:76.800000pt;}
.fs1a_c01289{font-size:79.893333pt;}
.fs1c_c01289{font-size:82.933333pt;}
.fs1b_c01289{font-size:86.026667pt;}
.fs21_c01289{font-size:89.066667pt;}
.fs1f_c01289{font-size:92.160000pt;}
.fs9_c01289{font-size:95.253333pt;}
.fs1d_c01289{font-size:104.426667pt;}
.fsd_c01289{font-size:110.613333pt;}
.y0_c01289{bottom:0.000000pt;}
.y1cd_c01289{bottom:105.213333pt;}
.y1cc_c01289{bottom:113.666667pt;}
.y1cb_c01289{bottom:114.426667pt;}
.y1c8_c01289{bottom:166.653333pt;}
.y1c6_c01289{bottom:168.186667pt;}
.y1c7_c01289{bottom:168.960000pt;}
.y1c5_c01289{bottom:169.733333pt;}
.y1c9_c01289{bottom:171.266667pt;}
.y1c4_c01289{bottom:172.026667pt;}
.y1c3_c01289{bottom:172.800000pt;}
.y1c2_c01289{bottom:175.866667pt;}
.y1ca_c01289{bottom:184.320000pt;}
.y1c1_c01289{bottom:187.386667pt;}
.y1c0_c01289{bottom:188.933333pt;}
.y1bc_c01289{bottom:190.466667pt;}
.y1bb_c01289{bottom:192.000000pt;}
.y1ba_c01289{bottom:194.306667pt;}
.y1bd_c01289{bottom:195.066667pt;}
.y1be_c01289{bottom:195.840000pt;}
.y1b9_c01289{bottom:196.613333pt;}
.y1bf_c01289{bottom:197.373333pt;}
.y1b6_c01289{bottom:208.133333pt;}
.y1b2_c01289{bottom:208.893333pt;}
.y1b5_c01289{bottom:211.200000pt;}
.y1b7_c01289{bottom:212.733333pt;}
.y1b8_c01289{bottom:213.506667pt;}
.y1b3_c01289{bottom:217.346667pt;}
.y1b1_c01289{bottom:219.653333pt;}
.y1b4_c01289{bottom:225.026667pt;}
.y1af_c01289{bottom:226.560000pt;}
.y1ad_c01289{bottom:227.333333pt;}
.y1ab_c01289{bottom:228.093333pt;}
.y1ac_c01289{bottom:228.866667pt;}
.y1a9_c01289{bottom:230.400000pt;}
.y1ae_c01289{bottom:231.933333pt;}
.y1b0_c01289{bottom:233.466667pt;}
.y1aa_c01289{bottom:236.546667pt;}
.y1a4_c01289{bottom:244.986667pt;}
.y19c_c01289{bottom:245.760000pt;}
.y19e_c01289{bottom:246.533333pt;}
.y1a3_c01289{bottom:247.293333pt;}
.y19b_c01289{bottom:248.066667pt;}
.y1a5_c01289{bottom:248.826667pt;}
.y1a6_c01289{bottom:249.600000pt;}
.y19d_c01289{bottom:250.373333pt;}
.y1a7_c01289{bottom:251.133333pt;}
.y1a1_c01289{bottom:251.906667pt;}
.y1a2_c01289{bottom:255.746667pt;}
.y1a8_c01289{bottom:256.506667pt;}
.y1a0_c01289{bottom:258.813333pt;}
.y19f_c01289{bottom:260.346667pt;}
.y192_c01289{bottom:261.893333pt;}
.y196_c01289{bottom:262.653333pt;}
.y197_c01289{bottom:263.426667pt;}
.y19a_c01289{bottom:264.186667pt;}
.y198_c01289{bottom:264.960000pt;}
.y195_c01289{bottom:265.733333pt;}
.y191_c01289{bottom:268.026667pt;}
.y193_c01289{bottom:268.800000pt;}
.y194_c01289{bottom:270.333333pt;}
.y199_c01289{bottom:271.866667pt;}
.y18d_c01289{bottom:275.706667pt;}
.y189_c01289{bottom:276.480000pt;}
.y18b_c01289{bottom:278.013333pt;}
.y18a_c01289{bottom:279.546667pt;}
.y190_c01289{bottom:280.320000pt;}
.y18e_c01289{bottom:284.160000pt;}
.y18f_c01289{bottom:284.933333pt;}
.y18c_c01289{bottom:287.226667pt;}
.y188_c01289{bottom:296.453333pt;}
.y181_c01289{bottom:297.213333pt;}
.y184_c01289{bottom:297.986667pt;}
.y182_c01289{bottom:298.746667pt;}
.y186_c01289{bottom:301.826667pt;}
.y187_c01289{bottom:302.586667pt;}
.y185_c01289{bottom:304.893333pt;}
.y183_c01289{bottom:305.666667pt;}
.y17f_c01289{bottom:317.186667pt;}
.y17b_c01289{bottom:317.946667pt;}
.y17d_c01289{bottom:318.720000pt;}
.y17c_c01289{bottom:319.493333pt;}
.y17e_c01289{bottom:320.253333pt;}
.y179_c01289{bottom:321.026667pt;}
.y17a_c01289{bottom:322.560000pt;}
.y180_c01289{bottom:324.866667pt;}
.y177_c01289{bottom:332.546667pt;}
.y175_c01289{bottom:333.306667pt;}
.y176_c01289{bottom:334.080000pt;}
.y174_c01289{bottom:334.853333pt;}
.y171_c01289{bottom:335.613333pt;}
.y172_c01289{bottom:337.146667pt;}
.y173_c01289{bottom:337.920000pt;}
.y178_c01289{bottom:348.666667pt;}
.y170_c01289{bottom:352.506667pt;}
.y16f_c01289{bottom:354.053333pt;}
.y16d_c01289{bottom:354.813333pt;}
.y16c_c01289{bottom:355.586667pt;}
.y16e_c01289{bottom:356.346667pt;}
.y16b_c01289{bottom:357.120000pt;}
.y166_c01289{bottom:367.866667pt;}
.y168_c01289{bottom:369.413333pt;}
.y165_c01289{bottom:370.173333pt;}
.y167_c01289{bottom:370.946667pt;}
.y16a_c01289{bottom:371.706667pt;}
.y164_c01289{bottom:373.253333pt;}
.y169_c01289{bottom:374.013333pt;}
.y163_c01289{bottom:375.546667pt;}
.y15c_c01289{bottom:386.306667pt;}
.y15f_c01289{bottom:387.066667pt;}
.y160_c01289{bottom:387.840000pt;}
.y161_c01289{bottom:390.146667pt;}
.y15d_c01289{bottom:390.906667pt;}
.y15a_c01289{bottom:391.680000pt;}
.y15b_c01289{bottom:392.453333pt;}
.y162_c01289{bottom:393.213333pt;}
.y15e_c01289{bottom:394.746667pt;}
.y159_c01289{bottom:403.200000pt;}
.y157_c01289{bottom:403.973333pt;}
.y156_c01289{bottom:404.733333pt;}
.y158_c01289{bottom:405.506667pt;}
.y155_c01289{bottom:413.186667pt;}
.y150_c01289{bottom:423.933333pt;}
.y14e_c01289{bottom:424.706667pt;}
.y151_c01289{bottom:425.466667pt;}
.y154_c01289{bottom:426.240000pt;}
.y152_c01289{bottom:427.013333pt;}
.y153_c01289{bottom:429.306667pt;}
.y14f_c01289{bottom:431.613333pt;}
.y14d_c01289{bottom:435.453333pt;}
.y148_c01289{bottom:443.133333pt;}
.y14a_c01289{bottom:443.906667pt;}
.y147_c01289{bottom:444.666667pt;}
.y149_c01289{bottom:446.213333pt;}
.y14b_c01289{bottom:446.973333pt;}
.y14c_c01289{bottom:447.746667pt;}
.y146_c01289{bottom:448.506667pt;}
.y145_c01289{bottom:449.280000pt;}
.y144_c01289{bottom:450.053333pt;}
.y143_c01289{bottom:453.120000pt;}
.y13c_c01289{bottom:460.026667pt;}
.y141_c01289{bottom:460.800000pt;}
.y13f_c01289{bottom:461.573333pt;}
.y13e_c01289{bottom:462.333333pt;}
.y13d_c01289{bottom:463.866667pt;}
.y140_c01289{bottom:464.640000pt;}
.y142_c01289{bottom:468.480000pt;}
.y136_c01289{bottom:475.386667pt;}
.y137_c01289{bottom:476.933333pt;}
.y138_c01289{bottom:477.693333pt;}
.y135_c01289{bottom:478.466667pt;}
.y13a_c01289{bottom:481.533333pt;}
.y13b_c01289{bottom:482.306667pt;}
.y134_c01289{bottom:484.613333pt;}
.y139_c01289{bottom:493.053333pt;}
.y131_c01289{bottom:496.133333pt;}
.y12f_c01289{bottom:496.893333pt;}
.y130_c01289{bottom:497.666667pt;}
.y12d_c01289{bottom:498.426667pt;}
.y132_c01289{bottom:500.733333pt;}
.y133_c01289{bottom:501.506667pt;}
.y12e_c01289{bottom:503.813333pt;}
.y12a_c01289{bottom:504.573333pt;}
.y12c_c01289{bottom:507.653333pt;}
.y129_c01289{bottom:508.413333pt;}
.y128_c01289{bottom:509.186667pt;}
.y12b_c01289{bottom:509.946667pt;}
.y127_c01289{bottom:512.253333pt;}
.y126_c01289{bottom:514.560000pt;}
.y123_c01289{bottom:515.333333pt;}
.y122_c01289{bottom:519.933333pt;}
.y124_c01289{bottom:520.706667pt;}
.y125_c01289{bottom:529.920000pt;}
.y120_c01289{bottom:532.226667pt;}
.y11d_c01289{bottom:533.760000pt;}
.y11c_c01289{bottom:536.066667pt;}
.y121_c01289{bottom:537.600000pt;}
.y11e_c01289{bottom:539.133333pt;}
.y11f_c01289{bottom:540.666667pt;}
.y11a_c01289{bottom:549.893333pt;}
.y117_c01289{bottom:550.653333pt;}
.y118_c01289{bottom:552.186667pt;}
.y11b_c01289{bottom:552.960000pt;}
.y116_c01289{bottom:554.493333pt;}
.y119_c01289{bottom:556.800000pt;}
.y115_c01289{bottom:565.253333pt;}
.y10f_c01289{bottom:566.013333pt;}
.y10e_c01289{bottom:566.786667pt;}
.y110_c01289{bottom:567.546667pt;}
.y113_c01289{bottom:568.320000pt;}
.y10d_c01289{bottom:569.093333pt;}
.y10c_c01289{bottom:570.626667pt;}
.y114_c01289{bottom:573.693333pt;}
.y111_c01289{bottom:574.466667pt;}
.y112_c01289{bottom:582.146667pt;}
.y108_c01289{bottom:587.520000pt;}
.y10a_c01289{bottom:588.293333pt;}
.y106_c01289{bottom:589.826667pt;}
.y10b_c01289{bottom:590.586667pt;}
.y107_c01289{bottom:591.360000pt;}
.y109_c01289{bottom:592.133333pt;}
.y105_c01289{bottom:602.106667pt;}
.y104_c01289{bottom:604.413333pt;}
.y100_c01289{bottom:605.186667pt;}
.yff_c01289{bottom:605.946667pt;}
.yfe_c01289{bottom:607.493333pt;}
.y103_c01289{bottom:608.253333pt;}
.y101_c01289{bottom:609.026667pt;}
.y102_c01289{bottom:609.786667pt;}
.yfd_c01289{bottom:622.080000pt;}
.yfc_c01289{bottom:622.853333pt;}
.yf8_c01289{bottom:623.613333pt;}
.yf7_c01289{bottom:625.146667pt;}
.yfb_c01289{bottom:626.693333pt;}
.yf6_c01289{bottom:627.453333pt;}
.yf9_c01289{bottom:629.760000pt;}
.yfa_c01289{bottom:637.440000pt;}
.yf4_c01289{bottom:639.746667pt;}
.yf5_c01289{bottom:640.506667pt;}
.yf1_c01289{bottom:641.280000pt;}
.yf3_c01289{bottom:644.346667pt;}
.yef_c01289{bottom:645.120000pt;}
.yf0_c01289{bottom:645.893333pt;}
.yf2_c01289{bottom:646.653333pt;}
.yec_c01289{bottom:657.413333pt;}
.yea_c01289{bottom:658.946667pt;}
.ye8_c01289{bottom:660.480000pt;}
.ye7_c01289{bottom:662.786667pt;}
.ye9_c01289{bottom:663.546667pt;}
.yeb_c01289{bottom:664.320000pt;}
.yed_c01289{bottom:669.693333pt;}
.ye4_c01289{bottom:671.226667pt;}
.yee_c01289{bottom:672.773333pt;}
.ye5_c01289{bottom:674.306667pt;}
.ye6_c01289{bottom:675.840000pt;}
.ye1_c01289{bottom:678.146667pt;}
.yde_c01289{bottom:678.906667pt;}
.ye0_c01289{bottom:680.453333pt;}
.ye3_c01289{bottom:681.213333pt;}
.ydf_c01289{bottom:681.986667pt;}
.ye2_c01289{bottom:683.520000pt;}
.yda_c01289{bottom:695.040000pt;}
.ydc_c01289{bottom:695.813333pt;}
.ydb_c01289{bottom:697.346667pt;}
.yd8_c01289{bottom:698.880000pt;}
.yd9_c01289{bottom:699.653333pt;}
.ydd_c01289{bottom:700.413333pt;}
.yd7_c01289{bottom:707.333333pt;}
.yd3_c01289{bottom:711.933333pt;}
.yd2_c01289{bottom:712.706667pt;}
.yd5_c01289{bottom:714.240000pt;}
.yd4_c01289{bottom:716.546667pt;}
.yd6_c01289{bottom:717.306667pt;}
.ycc_c01289{bottom:730.373333pt;}
.yd1_c01289{bottom:731.906667pt;}
.yce_c01289{bottom:732.666667pt;}
.yd0_c01289{bottom:734.213333pt;}
.ycf_c01289{bottom:734.973333pt;}
.ycd_c01289{bottom:735.746667pt;}
.yc7_c01289{bottom:747.266667pt;}
.ycb_c01289{bottom:748.026667pt;}
.yc6_c01289{bottom:752.640000pt;}
.yc8_c01289{bottom:753.413333pt;}
.yc9_c01289{bottom:754.173333pt;}
.yca_c01289{bottom:754.946667pt;}
.yc3_c01289{bottom:764.933333pt;}
.yc1_c01289{bottom:765.693333pt;}
.yc4_c01289{bottom:766.466667pt;}
.yc0_c01289{bottom:771.066667pt;}
.yc5_c01289{bottom:771.840000pt;}
.yc2_c01289{bottom:777.213333pt;}
.ybc_c01289{bottom:783.360000pt;}
.ybd_c01289{bottom:784.133333pt;}
.ybe_c01289{bottom:784.893333pt;}
.ybb_c01289{bottom:788.733333pt;}
.ybf_c01289{bottom:789.506667pt;}
.yba_c01289{bottom:797.946667pt;}
.yb4_c01289{bottom:803.333333pt;}
.yb7_c01289{bottom:804.093333pt;}
.yb6_c01289{bottom:804.866667pt;}
.yb3_c01289{bottom:805.626667pt;}
.yb8_c01289{bottom:806.400000pt;}
.yb9_c01289{bottom:807.173333pt;}
.yae_c01289{bottom:807.933333pt;}
.yb5_c01289{bottom:808.706667pt;}
.yb0_c01289{bottom:812.546667pt;}
.yad_c01289{bottom:813.306667pt;}
.yb2_c01289{bottom:814.080000pt;}
.yaf_c01289{bottom:814.853333pt;}
.yb1_c01289{bottom:816.386667pt;}
.y8_c01289{bottom:817.146667pt;}
.ya6_c01289{bottom:820.226667pt;}
.yab_c01289{bottom:820.986667pt;}
.y7_c01289{bottom:821.760000pt;}
.ya9_c01289{bottom:822.533333pt;}
.ya8_c01289{bottom:824.066667pt;}
.ya7_c01289{bottom:825.600000pt;}
.yac_c01289{bottom:831.746667pt;}
.yaa_c01289{bottom:838.653333pt;}
.ya3_c01289{bottom:839.426667pt;}
.ya4_c01289{bottom:840.960000pt;}
.ya2_c01289{bottom:841.733333pt;}
.ya0_c01289{bottom:842.493333pt;}
.ya5_c01289{bottom:843.266667pt;}
.ya1_c01289{bottom:844.026667pt;}
.y9f_c01289{bottom:856.320000pt;}
.y9e_c01289{bottom:857.093333pt;}
.y9b_c01289{bottom:860.160000pt;}
.y9c_c01289{bottom:860.933333pt;}
.y9d_c01289{bottom:861.693333pt;}
.y6_c01289{bottom:864.000000pt;}
.y95_c01289{bottom:873.213333pt;}
.y98_c01289{bottom:873.986667pt;}
.y97_c01289{bottom:874.746667pt;}
.y93_c01289{bottom:876.293333pt;}
.y96_c01289{bottom:877.826667pt;}
.y94_c01289{bottom:878.586667pt;}
.y99_c01289{bottom:879.360000pt;}
.y5_c01289{bottom:880.893333pt;}
.y9a_c01289{bottom:887.040000pt;}
.y8f_c01289{bottom:892.413333pt;}
.y90_c01289{bottom:894.720000pt;}
.y8e_c01289{bottom:895.493333pt;}
.y91_c01289{bottom:896.253333pt;}
.y92_c01289{bottom:907.013333pt;}
.y88_c01289{bottom:909.306667pt;}
.y8a_c01289{bottom:910.080000pt;}
.y8b_c01289{bottom:911.613333pt;}
.y87_c01289{bottom:913.920000pt;}
.y8c_c01289{bottom:914.693333pt;}
.y89_c01289{bottom:916.226667pt;}
.y8d_c01289{bottom:920.066667pt;}
.y82_c01289{bottom:926.973333pt;}
.y86_c01289{bottom:927.746667pt;}
.y84_c01289{bottom:929.280000pt;}
.y85_c01289{bottom:931.586667pt;}
.y83_c01289{bottom:932.346667pt;}
.y4_c01289{bottom:940.800000pt;}
.y3_c01289{bottom:945.413333pt;}
.y7a_c01289{bottom:946.173333pt;}
.y7d_c01289{bottom:946.946667pt;}
.y7e_c01289{bottom:947.706667pt;}
.y80_c01289{bottom:948.480000pt;}
.y7c_c01289{bottom:950.013333pt;}
.y7f_c01289{bottom:950.786667pt;}
.y7b_c01289{bottom:951.546667pt;}
.y81_c01289{bottom:960.000000pt;}
.y76_c01289{bottom:962.306667pt;}
.y77_c01289{bottom:963.066667pt;}
.y74_c01289{bottom:963.840000pt;}
.y72_c01289{bottom:964.613333pt;}
.y73_c01289{bottom:966.146667pt;}
.y75_c01289{bottom:967.680000pt;}
.y78_c01289{bottom:969.213333pt;}
.y79_c01289{bottom:976.893333pt;}
.y6f_c01289{bottom:980.733333pt;}
.y6e_c01289{bottom:981.506667pt;}
.y6c_c01289{bottom:982.266667pt;}
.y6b_c01289{bottom:983.040000pt;}
.y69_c01289{bottom:983.813333pt;}
.y71_c01289{bottom:984.573333pt;}
.y6d_c01289{bottom:985.346667pt;}
.y70_c01289{bottom:986.880000pt;}
.y6a_c01289{bottom:987.653333pt;}
.y66_c01289{bottom:999.173333pt;}
.y62_c01289{bottom:1000.706667pt;}
.y68_c01289{bottom:1001.466667pt;}
.y67_c01289{bottom:1003.013333pt;}
.y65_c01289{bottom:1003.773333pt;}
.y61_c01289{bottom:1004.546667pt;}
.y63_c01289{bottom:1005.306667pt;}
.y64_c01289{bottom:1006.080000pt;}
.y5c_c01289{bottom:1017.600000pt;}
.y5d_c01289{bottom:1018.373333pt;}
.y5e_c01289{bottom:1019.133333pt;}
.y5f_c01289{bottom:1019.906667pt;}
.y60_c01289{bottom:1020.666667pt;}
.y5b_c01289{bottom:1022.213333pt;}
.y5a_c01289{bottom:1023.746667pt;}
.y56_c01289{bottom:1035.266667pt;}
.y51_c01289{bottom:1036.800000pt;}
.y52_c01289{bottom:1037.573333pt;}
.y54_c01289{bottom:1039.106667pt;}
.y57_c01289{bottom:1039.866667pt;}
.y58_c01289{bottom:1041.413333pt;}
.y53_c01289{bottom:1042.173333pt;}
.y59_c01289{bottom:1045.253333pt;}
.y1_c01289{bottom:1046.013333pt;}
.y55_c01289{bottom:1046.786667pt;}
.y2_c01289{bottom:1048.320000pt;}
.y48_c01289{bottom:1052.933333pt;}
.y4a_c01289{bottom:1054.466667pt;}
.y4c_c01289{bottom:1056.000000pt;}
.y4e_c01289{bottom:1057.533333pt;}
.y4f_c01289{bottom:1058.306667pt;}
.y49_c01289{bottom:1059.066667pt;}
.y50_c01289{bottom:1059.840000pt;}
.y4b_c01289{bottom:1060.613333pt;}
.y4d_c01289{bottom:1061.373333pt;}
.y42_c01289{bottom:1070.586667pt;}
.y47_c01289{bottom:1072.133333pt;}
.y43_c01289{bottom:1072.893333pt;}
.y46_c01289{bottom:1075.200000pt;}
.y44_c01289{bottom:1077.506667pt;}
.y45_c01289{bottom:1078.266667pt;}
.y41_c01289{bottom:1088.253333pt;}
.y39_c01289{bottom:1090.560000pt;}
.y3a_c01289{bottom:1091.333333pt;}
.y3e_c01289{bottom:1092.093333pt;}
.y38_c01289{bottom:1092.866667pt;}
.y3d_c01289{bottom:1093.626667pt;}
.y3c_c01289{bottom:1094.400000pt;}
.y37_c01289{bottom:1095.173333pt;}
.y3b_c01289{bottom:1096.706667pt;}
.y40_c01289{bottom:1099.013333pt;}
.y32_c01289{bottom:1099.773333pt;}
.y3f_c01289{bottom:1101.306667pt;}
.y34_c01289{bottom:1102.853333pt;}
.y35_c01289{bottom:1103.613333pt;}
.y2f_c01289{bottom:1105.146667pt;}
.y2e_c01289{bottom:1105.920000pt;}
.y30_c01289{bottom:1106.693333pt;}
.y36_c01289{bottom:1108.986667pt;}
.y31_c01289{bottom:1110.533333pt;}
.y33_c01289{bottom:1112.826667pt;}
.y27_c01289{bottom:1125.120000pt;}
.y28_c01289{bottom:1125.893333pt;}
.y2d_c01289{bottom:1127.426667pt;}
.y2c_c01289{bottom:1128.186667pt;}
.y29_c01289{bottom:1131.266667pt;}
.y2b_c01289{bottom:1133.573333pt;}
.y2a_c01289{bottom:1134.333333pt;}
.y21_c01289{bottom:1145.093333pt;}
.y22_c01289{bottom:1146.626667pt;}
.y25_c01289{bottom:1147.386667pt;}
.y23_c01289{bottom:1148.160000pt;}
.y26_c01289{bottom:1150.466667pt;}
.y24_c01289{bottom:1151.226667pt;}
.y20_c01289{bottom:1155.066667pt;}
.y1d_c01289{bottom:1163.520000pt;}
.y1c_c01289{bottom:1165.053333pt;}
.y1e_c01289{bottom:1168.133333pt;}
.y1f_c01289{bottom:1168.893333pt;}
.y18_c01289{bottom:1182.720000pt;}
.y19_c01289{bottom:1183.493333pt;}
.y17_c01289{bottom:1184.253333pt;}
.y1b_c01289{bottom:1185.026667pt;}
.y1a_c01289{bottom:1185.786667pt;}
.y16_c01289{bottom:1188.093333pt;}
.y13_c01289{bottom:1190.400000pt;}
.y12_c01289{bottom:1191.173333pt;}
.y11_c01289{bottom:1191.933333pt;}
.y14_c01289{bottom:1195.013333pt;}
.y15_c01289{bottom:1196.546667pt;}
.y10_c01289{bottom:1204.226667pt;}
.ya_c01289{bottom:1208.826667pt;}
.ye_c01289{bottom:1209.600000pt;}
.yf_c01289{bottom:1210.373333pt;}
.yd_c01289{bottom:1211.133333pt;}
.y9_c01289{bottom:1214.973333pt;}
.yc_c01289{bottom:1218.053333pt;}
.yb_c01289{bottom:1222.653333pt;}
.h8_c01289{height:2.764500pt;}
.h6_c01289{height:4.799479pt;}
.h11_c01289{height:5.519401pt;}
.h4_c01289{height:8.303099pt;}
.h3_c01289{height:11.038802pt;}
.h7_c01289{height:13.822500pt;}
.h5_c01289{height:16.606198pt;}
.h10_c01289{height:19.341901pt;}
.h24_c01289{height:20.265469pt;}
.h14_c01289{height:22.125599pt;}
.h17_c01289{height:24.861302pt;}
.h2_c01289{height:27.645000pt;}
.h12_c01289{height:30.428698pt;}
.h13_c01289{height:33.164401pt;}
.h20_c01289{height:35.948099pt;}
.h16_c01289{height:38.683802pt;}
.h15_c01289{height:41.467500pt;}
.h18_c01289{height:44.251198pt;}
.h9_c01289{height:46.986901pt;}
.h1b_c01289{height:49.770599pt;}
.ha_c01289{height:52.506302pt;}
.h19_c01289{height:55.290000pt;}
.hc_c01289{height:58.073698pt;}
.hd_c01289{height:60.809401pt;}
.h1a_c01289{height:63.593099pt;}
.h22_c01289{height:66.328802pt;}
.he_c01289{height:69.112500pt;}
.h1c_c01289{height:71.896198pt;}
.h1e_c01289{height:74.631901pt;}
.h1d_c01289{height:77.415599pt;}
.h23_c01289{height:80.151302pt;}
.h21_c01289{height:82.935000pt;}
.hb_c01289{height:85.718698pt;}
.h1f_c01289{height:93.973802pt;}
.hf_c01289{height:99.541198pt;}
.h0_c01289{height:1341.693333pt;}
.h1_c01289{height:1342.000000pt;}
.w0_c01289{width:967.680000pt;}
.w1_c01289{width:968.000000pt;}
.x0_c01289{left:0.000000pt;}
.x1_c01289{left:17.666667pt;}
.x3_c01289{left:144.386667pt;}
.x2_c01289{left:145.920000pt;}
.x4_c01289{left:150.533333pt;}
.xdf_c01289{left:165.120000pt;}
.x109_c01289{left:166.653333pt;}
.xcb_c01289{left:170.493333pt;}
.x28_c01289{left:176.640000pt;}
.xfe_c01289{left:181.253333pt;}
.xb7_c01289{left:183.546667pt;}
.xe0_c01289{left:188.933333pt;}
.x5_c01289{left:192.000000pt;}
.x75_c01289{left:195.066667pt;}
.x2f_c01289{left:198.906667pt;}
.x4f_c01289{left:200.453333pt;}
.x19_c01289{left:202.746667pt;}
.xa2_c01289{left:204.293333pt;}
.xd0_c01289{left:205.826667pt;}
.xf_c01289{left:208.133333pt;}
.x6_c01289{left:209.666667pt;}
.xc2_c01289{left:213.506667pt;}
.xbd_c01289{left:215.040000pt;}
.x110_c01289{left:217.346667pt;}
.xe1_c01289{left:218.880000pt;}
.x60_c01289{left:221.186667pt;}
.xb8_c01289{left:222.720000pt;}
.xa7_c01289{left:224.253333pt;}
.x76_c01289{left:226.560000pt;}
.x7_c01289{left:229.626667pt;}
.x92_c01289{left:231.173333pt;}
.x121_c01289{left:232.706667pt;}
.x56_c01289{left:234.240000pt;}
.x120_c01289{left:236.546667pt;}
.xc3_c01289{left:241.920000pt;}
.xd1_c01289{left:244.226667pt;}
.x8_c01289{left:246.533333pt;}
.x7e_c01289{left:248.826667pt;}
.x10_c01289{left:251.133333pt;}
.x6e_c01289{left:255.746667pt;}
.x11_c01289{left:257.280000pt;}
.xd9_c01289{left:261.120000pt;}
.x29_c01289{left:263.426667pt;}
.x69_c01289{left:265.733333pt;}
.x25_c01289{left:268.800000pt;}
.x1a_c01289{left:270.333333pt;}
.x8d_c01289{left:272.640000pt;}
.xc7_c01289{left:274.946667pt;}
.xd2_c01289{left:277.253333pt;}
.x45_c01289{left:279.546667pt;}
.x57_c01289{left:281.093333pt;}
.x118_c01289{left:282.626667pt;}
.x30_c01289{left:284.160000pt;}
.x95_c01289{left:285.693333pt;}
.x26_c01289{left:290.306667pt;}
.x12_c01289{left:291.840000pt;}
.x1b_c01289{left:293.373333pt;}
.xa3_c01289{left:294.906667pt;}
.x13_c01289{left:299.520000pt;}
.x39_c01289{left:301.826667pt;}
.x50_c01289{left:304.893333pt;}
.x11c_c01289{left:307.200000pt;}
.x11d_c01289{left:310.266667pt;}
.x9c_c01289{left:311.813333pt;}
.x9_c01289{left:314.106667pt;}
.x104_c01289{left:315.653333pt;}
.xf5_c01289{left:317.186667pt;}
.x1c_c01289{left:319.493333pt;}
.x119_c01289{left:323.333333pt;}
.xee_c01289{left:324.866667pt;}
.xa_c01289{left:326.400000pt;}
.x77_c01289{left:328.706667pt;}
.x58_c01289{left:330.240000pt;}
.xcc_c01289{left:332.546667pt;}
.x106_c01289{left:334.080000pt;}
.x6a_c01289{left:337.920000pt;}
.xc8_c01289{left:341.760000pt;}
.x7f_c01289{left:343.293333pt;}
.x14_c01289{left:345.600000pt;}
.xe7_c01289{left:347.133333pt;}
.x8e_c01289{left:349.440000pt;}
.xa8_c01289{left:353.280000pt;}
.x111_c01289{left:354.813333pt;}
.xb_c01289{left:357.120000pt;}
.xcd_c01289{left:359.426667pt;}
.xd3_c01289{left:360.960000pt;}
.xad_c01289{left:362.493333pt;}
.x85_c01289{left:364.026667pt;}
.x1d_c01289{left:367.106667pt;}
.xe3_c01289{left:370.173333pt;}
.x1e_c01289{left:372.480000pt;}
.x11a_c01289{left:374.013333pt;}
.xb1_c01289{left:375.546667pt;}
.xce_c01289{left:377.093333pt;}
.x15_c01289{left:378.626667pt;}
.x2a_c01289{left:380.160000pt;}
.x112_c01289{left:381.693333pt;}
.x31_c01289{left:383.226667pt;}
.x8f_c01289{left:385.533333pt;}
.x1f_c01289{left:387.840000pt;}
.x61_c01289{left:389.373333pt;}
.xc_c01289{left:393.986667pt;}
.xb2_c01289{left:395.520000pt;}
.x107_c01289{left:398.586667pt;}
.xda_c01289{left:400.133333pt;}
.x90_c01289{left:401.666667pt;}
.x6b_c01289{left:403.973333pt;}
.xf1_c01289{left:406.266667pt;}
.x78_c01289{left:407.813333pt;}
.xae_c01289{left:410.106667pt;}
.xd_c01289{left:411.653333pt;}
.x2b_c01289{left:414.720000pt;}
.x46_c01289{left:416.253333pt;}
.x51_c01289{left:418.560000pt;}
.x16_c01289{left:423.173333pt;}
.xef_c01289{left:424.706667pt;}
.xa1_c01289{left:426.240000pt;}
.xf6_c01289{left:428.546667pt;}
.xf8_c01289{left:430.080000pt;}
.x52_c01289{left:433.920000pt;}
.x32_c01289{left:437.760000pt;}
.x59_c01289{left:439.293333pt;}
.x3a_c01289{left:440.826667pt;}
.xfd_c01289{left:442.373333pt;}
.xf0_c01289{left:444.666667pt;}
.x33_c01289{left:446.213333pt;}
.x62_c01289{left:448.506667pt;}
.x27_c01289{left:450.053333pt;}
.x6f_c01289{left:451.586667pt;}
.xd4_c01289{left:453.120000pt;}
.x86_c01289{left:454.653333pt;}
.xf2_c01289{left:458.493333pt;}
.x80_c01289{left:460.800000pt;}
.xdb_c01289{left:462.333333pt;}
.x17_c01289{left:466.173333pt;}
.x108_c01289{left:468.480000pt;}
.xa4_c01289{left:470.786667pt;}
.xdc_c01289{left:472.320000pt;}
.x114_c01289{left:477.693333pt;}
.x18_c01289{left:480.000000pt;}
.xc9_c01289{left:481.533333pt;}
.x115_c01289{left:483.840000pt;}
.x3b_c01289{left:486.146667pt;}
.x70_c01289{left:487.680000pt;}
.x63_c01289{left:489.986667pt;}
.xe_c01289{left:491.520000pt;}
.xe8_c01289{left:493.053333pt;}
.x5a_c01289{left:495.360000pt;}
.x20_c01289{left:496.893333pt;}
.x3c_c01289{left:499.200000pt;}
.xb3_c01289{left:500.733333pt;}
.xe9_c01289{left:502.266667pt;}
.xf9_c01289{left:504.573333pt;}
.x11b_c01289{left:506.106667pt;}
.x116_c01289{left:513.026667pt;}
.x96_c01289{left:516.093333pt;}
.xb4_c01289{left:517.626667pt;}
.x79_c01289{left:519.933333pt;}
.x47_c01289{left:523.013333pt;}
.xc4_c01289{left:524.546667pt;}
.x71_c01289{left:528.386667pt;}
.x105_c01289{left:529.920000pt;}
.x9d_c01289{left:531.453333pt;}
.x5b_c01289{left:533.760000pt;}
.xbe_c01289{left:536.826667pt;}
.x3d_c01289{left:538.373333pt;}
.x10a_c01289{left:539.906667pt;}
.x34_c01289{left:541.440000pt;}
.x10e_c01289{left:543.746667pt;}
.xd5_c01289{left:545.280000pt;}
.x3e_c01289{left:546.813333pt;}
.xff_c01289{left:548.346667pt;}
.xca_c01289{left:549.893333pt;}
.xe4_c01289{left:551.426667pt;}
.xa9_c01289{left:556.026667pt;}
.x48_c01289{left:558.333333pt;}
.x53_c01289{left:559.866667pt;}
.xf3_c01289{left:561.413333pt;}
.x21_c01289{left:562.946667pt;}
.x64_c01289{left:564.480000pt;}
.x7a_c01289{left:566.786667pt;}
.x2c_c01289{left:568.320000pt;}
.xb9_c01289{left:569.853333pt;}
.xe5_c01289{left:571.386667pt;}
.xea_c01289{left:572.933333pt;}
.x54_c01289{left:574.466667pt;}
.xd6_c01289{left:576.000000pt;}
.xba_c01289{left:578.306667pt;}
.x22_c01289{left:579.840000pt;}
.x3f_c01289{left:581.373333pt;}
.x81_c01289{left:583.680000pt;}
.x97_c01289{left:586.746667pt;}
.x87_c01289{left:588.293333pt;}
.xa5_c01289{left:589.826667pt;}
.x2d_c01289{left:592.133333pt;}
.x35_c01289{left:595.973333pt;}
.xdd_c01289{left:597.506667pt;}
.x11f_c01289{left:599.813333pt;}
.x5c_c01289{left:601.346667pt;}
.x49_c01289{left:602.880000pt;}
.xfa_c01289{left:605.186667pt;}
.xb5_c01289{left:608.253333pt;}
.x65_c01289{left:611.333333pt;}
.x9e_c01289{left:612.866667pt;}
.xeb_c01289{left:614.400000pt;}
.xc5_c01289{left:615.933333pt;}
.x72_c01289{left:618.240000pt;}
.xec_c01289{left:619.773333pt;}
.x4a_c01289{left:621.306667pt;}
.xe2_c01289{left:622.853333pt;}
.x36_c01289{left:624.386667pt;}
.xde_c01289{left:629.760000pt;}
.xaa_c01289{left:633.600000pt;}
.x100_c01289{left:635.906667pt;}
.x40_c01289{left:637.440000pt;}
.x98_c01289{left:638.973333pt;}
.xf4_c01289{left:641.280000pt;}
.x93_c01289{left:643.586667pt;}
.x73_c01289{left:645.120000pt;}
.xa6_c01289{left:648.960000pt;}
.xaf_c01289{left:651.266667pt;}
.x10b_c01289{left:653.573333pt;}
.x5d_c01289{left:655.866667pt;}
.x41_c01289{left:657.413333pt;}
.x88_c01289{left:659.706667pt;}
.x7b_c01289{left:662.013333pt;}
.x23_c01289{left:664.320000pt;}
.x99_c01289{left:665.853333pt;}
.x89_c01289{left:667.386667pt;}
.xd7_c01289{left:668.933333pt;}
.x6c_c01289{left:671.226667pt;}
.xfb_c01289{left:672.773333pt;}
.x4b_c01289{left:674.306667pt;}
.x9f_c01289{left:676.613333pt;}
.x2e_c01289{left:678.146667pt;}
.xd8_c01289{left:679.680000pt;}
.xc6_c01289{left:683.520000pt;}
.x8a_c01289{left:685.053333pt;}
.x11e_c01289{left:688.133333pt;}
.x7c_c01289{left:689.666667pt;}
.x42_c01289{left:691.200000pt;}
.x74_c01289{left:692.733333pt;}
.xbf_c01289{left:695.040000pt;}
.x24_c01289{left:697.346667pt;}
.xc0_c01289{left:699.653333pt;}
.xbb_c01289{left:703.493333pt;}
.x82_c01289{left:705.786667pt;}
.xfc_c01289{left:707.333333pt;}
.x66_c01289{left:710.400000pt;}
.x113_c01289{left:711.933333pt;}
.xed_c01289{left:713.466667pt;}
.x6d_c01289{left:715.013333pt;}
.x10c_c01289{left:718.080000pt;}
.xab_c01289{left:720.386667pt;}
.x55_c01289{left:722.693333pt;}
.x94_c01289{left:724.226667pt;}
.xa0_c01289{left:726.533333pt;}
.x83_c01289{left:728.066667pt;}
.x5e_c01289{left:730.373333pt;}
.x101_c01289{left:733.440000pt;}
.xc1_c01289{left:734.973333pt;}
.xbc_c01289{left:736.506667pt;}
.xf7_c01289{left:738.813333pt;}
.xcf_c01289{left:741.120000pt;}
.x102_c01289{left:742.653333pt;}
.x4c_c01289{left:744.186667pt;}
.xac_c01289{left:745.733333pt;}
.x5f_c01289{left:748.026667pt;}
.x67_c01289{left:749.573333pt;}
.x8b_c01289{left:751.106667pt;}
.xe6_c01289{left:752.640000pt;}
.x7d_c01289{left:754.946667pt;}
.x103_c01289{left:758.786667pt;}
.x10d_c01289{left:761.093333pt;}
.xb6_c01289{left:767.226667pt;}
.xb0_c01289{left:768.773333pt;}
.x43_c01289{left:771.840000pt;}
.x68_c01289{left:773.373333pt;}
.x9a_c01289{left:775.680000pt;}
.x84_c01289{left:777.986667pt;}
.x37_c01289{left:781.053333pt;}
.x4d_c01289{left:783.360000pt;}
.x8c_c01289{left:785.666667pt;}
.x10f_c01289{left:787.200000pt;}
.x117_c01289{left:792.573333pt;}
.x91_c01289{left:794.106667pt;}
.x38_c01289{left:796.413333pt;}
.x9b_c01289{left:806.400000pt;}
.x4e_c01289{left:809.466667pt;}
.x44_c01289{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_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_4bee3fbd2d9a3ec96c58f8d2.woff2')format("woff");}.ff1_c01290{font-family:ff1_c01290;line-height:1.109863;font-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_c01290{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m74_c01290{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);}
.m17c_c01290{transform:matrix(0.056275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056275,0.000000,0.000000,0.250000,0,0);}
.m53_c01290{transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056825,0.000000,0.000000,0.250000,0,0);}
.m1be_c01290{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.m3_c01290{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m11a_c01290{transform:matrix(0.094700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094700,0.000000,0.000000,0.250000,0,0);}
.mdb_c01290{transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095250,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01290{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);}
.m103_c01290{transform:matrix(0.101000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101000,0.000000,0.000000,0.250000,0,0);}
.m132_c01290{transform:matrix(0.101950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101950,0.000000,0.000000,0.250000,0,0);}
.mc7_c01290{transform:matrix(0.102575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102575,0.000000,0.000000,0.250000,0,0);}
.mee_c01290{transform:matrix(0.105700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105700,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01290{transform:matrix(0.107575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107575,0.000000,0.000000,0.250000,0,0);}
.m12e_c01290{transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);}
.md5_c01290{transform:matrix(0.111050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111050,0.000000,0.000000,0.250000,0,0);}
.m197_c01290{transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);}
.mc3_c01290{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01290{transform:matrix(0.113125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113125,0.000000,0.000000,0.250000,0,0);}
.mda_c01290{transform:matrix(0.113875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113875,0.000000,0.000000,0.250000,0,0);}
.m15c_c01290{transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114050,0.000000,0.000000,0.250000,0,0);}
.m16b_c01290{transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);}
.m130_c01290{transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);}
.m9c_c01290{transform:matrix(0.116625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116625,0.000000,0.000000,0.250000,0,0);}
.m162_c01290{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);}
.m16d_c01290{transform:matrix(0.118625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118625,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01290{transform:matrix(0.119025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119025,0.000000,0.000000,0.250000,0,0);}
.m164_c01290{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m15f_c01290{transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120375,0.000000,0.000000,0.250000,0,0);}
.m106_c01290{transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01290{transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01290{transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);}
.m170_c01290{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01290{transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01290{transform:matrix(0.125975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125975,0.000000,0.000000,0.250000,0,0);}
.m14_c01290{transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01290{transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01290{transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);}
.md8_c01290{transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);}
.m98_c01290{transform:matrix(0.127950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127950,0.000000,0.000000,0.250000,0,0);}
.m9a_c01290{transform:matrix(0.129700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129700,0.000000,0.000000,0.250000,0,0);}
.m180_c01290{transform:matrix(0.129925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129925,0.000000,0.000000,0.250000,0,0);}
.m12f_c01290{transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01290{transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);}
.m73_c01290{transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01290{transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);}
.m13_c01290{transform:matrix(0.131350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131350,0.000000,0.000000,0.250000,0,0);}
.m163_c01290{transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);}
.m17d_c01290{transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131550,0.000000,0.000000,0.250000,0,0);}
.mc4_c01290{transform:matrix(0.132300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132300,0.000000,0.000000,0.250000,0,0);}
.m9f_c01290{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.mf4_c01290{transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);}
.m4d_c01290{transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01290{transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);}
.mdc_c01290{transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);}
.m171_c01290{transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);}
.m9d_c01290{transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136975,0.000000,0.000000,0.250000,0,0);}
.m35_c01290{transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137750,0.000000,0.000000,0.250000,0,0);}
.me1_c01290{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);}
.m1b8_c01290{transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);}
.m17f_c01290{transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);}
.m11e_c01290{transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);}
.m10b_c01290{transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);}
.maf_c01290{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m176_c01290{transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);}
.ma5_c01290{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.m99_c01290{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01290{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.mf1_c01290{transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);}
.ma9_c01290{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m16_c01290{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m133_c01290{transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);}
.mf8_c01290{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);}
.m135_c01290{transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);}
.m8a_c01290{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);}
.m97_c01290{transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);}
.m4e_c01290{transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01290{transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);}
.m19a_c01290{transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);}
.m15d_c01290{transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);}
.m16e_c01290{transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01290{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);}
.m19d_c01290{transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);}
.mc8_c01290{transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);}
.md2_c01290{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);}
.me7_c01290{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01290{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m20_c01290{transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);}
.mf0_c01290{transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);}
.m91_c01290{transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);}
.m9e_c01290{transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);}
.m190_c01290{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m160_c01290{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);}
.md7_c01290{transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);}
.m16f_c01290{transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);}
.m10c_c01290{transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);}
.md6_c01290{transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);}
.ma0_c01290{transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153900,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01290{transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);}
.m102_c01290{transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154100,0.000000,0.000000,0.250000,0,0);}
.m10e_c01290{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);}
.m16c_c01290{transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);}
.m196_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);}
.m140_c01290{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.m18_c01290{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m77_c01290{transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);}
.m128_c01290{transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);}
.m107_c01290{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);}
.md9_c01290{transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);}
.mdd_c01290{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);}
.md4_c01290{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m198_c01290{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m17a_c01290{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.m18c_c01290{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);}
.m8e_c01290{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);}
.m14c_c01290{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.mb2_c01290{transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);}
.m101_c01290{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.mf2_c01290{transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);}
.mf5_c01290{transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);}
.m182_c01290{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01290{transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162150,0.000000,0.000000,0.250000,0,0);}
.m159_c01290{transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01290{transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);}
.mc_c01290{transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);}
.m131_c01290{transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);}
.mfa_c01290{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.mec_c01290{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.m115_c01290{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.mb6_c01290{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m76_c01290{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m9b_c01290{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);}
.m155_c01290{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m165_c01290{transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);}
.mf3_c01290{transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01290{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m144_c01290{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);}
.m105_c01290{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m129_c01290{transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);}
.mc6_c01290{transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01290{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.m187_c01290{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m104_c01290{transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);}
.m82_c01290{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);}
.m10a_c01290{transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);}
.m75_c01290{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);}
.m1d2_c01290{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m11d_c01290{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m17e_c01290{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m18f_c01290{transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);}
.m19_c01290{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.ma1_c01290{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);}
.md1_c01290{transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);}
.m96_c01290{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.mb9_c01290{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);}
.m173_c01290{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m158_c01290{transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);}
.m44_c01290{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);}
.mca_c01290{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01290{transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01290{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m19e_c01290{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);}
.m1a3_c01290{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01290{transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01290{transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);}
.m121_c01290{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);}
.m7d_c01290{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.m13a_c01290{transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179575,0.000000,0.000000,0.250000,0,0);}
.mb3_c01290{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.ma4_c01290{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m8d_c01290{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m11_c01290{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);}
.m1af_c01290{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);}
.m154_c01290{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m10d_c01290{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);}
.m6b_c01290{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.m149_c01290{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);}
.m181_c01290{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01290{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m177_c01290{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);}
.m189_c01290{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);}
.m110_c01290{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m68_c01290{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);}
.m3d_c01290{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.m119_c01290{transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);}
.m13b_c01290{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01290{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);}
.mce_c01290{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m7e_c01290{transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);}
.m150_c01290{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);}
.m1b5_c01290{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);}
.m1c3_c01290{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m52_c01290{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m4a_c01290{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m18d_c01290{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);}
.m1b3_c01290{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.mf7_c01290{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m1b_c01290{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);}
.m7a_c01290{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);}
.m1aa_c01290{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);}
.m166_c01290{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);}
.m65_c01290{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);}
.mfc_c01290{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m112_c01290{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);}
.m188_c01290{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);}
.m1c2_c01290{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01290{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m14b_c01290{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.mbe_c01290{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);}
.m1a8_c01290{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m183_c01290{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);}
.m1d_c01290{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.me2_c01290{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.m19f_c01290{transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);}
.m157_c01290{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);}
.m54_c01290{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);}
.m193_c01290{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.m6d_c01290{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);}
.m4f_c01290{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01290{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);}
.m72_c01290{transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);}
.m143_c01290{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.m19b_c01290{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);}
.m12c_c01290{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.m10f_c01290{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m49_c01290{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);}
.m1a0_c01290{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.m174_c01290{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m50_c01290{transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);}
.m184_c01290{transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);}
.m108_c01290{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m186_c01290{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m42_c01290{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.m1db_c01290{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m80_c01290{transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);}
.me9_c01290{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);}
.m118_c01290{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m24_c01290{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);}
.m145_c01290{transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);}
.m18b_c01290{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.mcf_c01290{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m15b_c01290{transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);}
.mf6_c01290{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);}
.mef_c01290{transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01290{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);}
.m5_c01290{transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);}
.m43_c01290{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.mfb_c01290{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);}
.m78_c01290{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m199_c01290{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);}
.md3_c01290{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.m139_c01290{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);}
.m3f_c01290{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);}
.m117_c01290{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);}
.m46_c01290{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.mba_c01290{transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);}
.m13d_c01290{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m136_c01290{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m12b_c01290{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);}
.m6f_c01290{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.mcb_c01290{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mfd_c01290{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);}
.m15e_c01290{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01290{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);}
.mbd_c01290{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);}
.m81_c01290{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.mb_c01290{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);}
.m19c_c01290{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);}
.m194_c01290{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);}
.m134_c01290{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);}
.m94_c01290{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);}
.mfe_c01290{transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);}
.m137_c01290{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m15a_c01290{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);}
.m39_c01290{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);}
.m13c_c01290{transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);}
.m55_c01290{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.m169_c01290{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01290{transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);}
.m4c_c01290{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.m6e_c01290{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01290{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m29_c01290{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.meb_c01290{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.mbc_c01290{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.m6_c01290{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);}
.m1ac_c01290{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);}
.m111_c01290{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);}
.m92_c01290{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m123_c01290{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);}
.m100_c01290{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);}
.m5b_c01290{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m6c_c01290{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.m5a_c01290{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m122_c01290{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);}
.m126_c01290{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01290{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01290{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m178_c01290{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.md_c01290{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.m47_c01290{transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);}
.m175_c01290{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);}
.m93_c01290{transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);}
.maa_c01290{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m59_c01290{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);}
.m69_c01290{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m18a_c01290{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);}
.m127_c01290{transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);}
.mcd_c01290{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);}
.m148_c01290{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);}
.m63_c01290{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);}
.mcc_c01290{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);}
.mab_c01290{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.mc5_c01290{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);}
.m156_c01290{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);}
.m5c_c01290{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m5d_c01290{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);}
.m12a_c01290{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);}
.mbf_c01290{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);}
.m114_c01290{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);}
.mb8_c01290{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);}
.m18e_c01290{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m116_c01290{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.mbb_c01290{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);}
.m60_c01290{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);}
.mff_c01290{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);}
.m56_c01290{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);}
.m1b6_c01290{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m124_c01290{transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);}
.m109_c01290{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);}
.m11c_c01290{transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);}
.m8f_c01290{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01290{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);}
.m4b_c01290{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);}
.m7_c01290{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.m138_c01290{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);}
.m17b_c01290{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.m172_c01290{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);}
.mdf_c01290{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);}
.m179_c01290{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);}
.m31_c01290{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);}
.m1a9_c01290{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);}
.m13e_c01290{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);}
.m6a_c01290{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);}
.mb7_c01290{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);}
.m1a5_c01290{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);}
.m125_c01290{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);}
.m57_c01290{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);}
.ma2_c01290{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);}
.m14e_c01290{transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241625,0.000000,0.000000,0.250000,0,0);}
.m11f_c01290{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.me6_c01290{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.m192_c01290{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);}
.m147_c01290{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);}
.m32_c01290{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);}
.m1da_c01290{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);}
.m7c_c01290{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m13f_c01290{transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);}
.m120_c01290{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.me4_c01290{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);}
.m1bf_c01290{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);}
.m62_c01290{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);}
.mc9_c01290{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);}
.m16a_c01290{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);}
.m21_c01290{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);}
.m2f_c01290{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01290{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_c01290{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);}
.m40_c01290{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);}
.m30_c01290{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);}
.m70_c01290{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m26_c01290{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c01290{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m67_c01290{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);}
.m28_c01290{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01290{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);}
.mac_c01290{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);}
.m7f_c01290{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01290{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);}
.m0_c01290{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c01290{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8_c01290{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);}
.m37_c01290{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m23_c01290{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);}
.m41_c01290{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);}
.m66_c01290{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m9_c01290{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m38_c01290{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);}
.me5_c01290{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01290{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m142_c01290{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);}
.m79_c01290{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01290{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01290{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m27_c01290{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m58_c01290{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01290{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m64_c01290{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m51_c01290{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);}
.ma7_c01290{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m84_c01290{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m36_c01290{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01290{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m61_c01290{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);}
.m2d_c01290{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7b_c01290{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);}
.m95_c01290{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m33_c01290{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m11b_c01290{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);}
.m12_c01290{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m89_c01290{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);}
.m85_c01290{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.me3_c01290{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);}
.m86_c01290{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.me_c01290{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01290{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m168_c01290{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m71_c01290{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);}
.m90_c01290{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);}
.mde_c01290{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01290{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);}
.m34_c01290{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m83_c01290{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01290{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);}
.m167_c01290{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14a_c01290{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.ma_c01290{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01290{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.me8_c01290{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);}
.mae_c01290{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m45_c01290{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m8c_c01290{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01290{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m88_c01290{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01290{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m195_c01290{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m25_c01290{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);}
.m161_c01290{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);}
.m1dc_c01290{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.md0_c01290{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01290{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m15_c01290{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m113_c01290{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.med_c01290{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01290{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);}
.ma8_c01290{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m10_c01290{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m191_c01290{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.mb0_c01290{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);}
.mb4_c01290{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.mf9_c01290{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01290{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m48_c01290{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.mad_c01290{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m153_c01290{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m185_c01290{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.mb5_c01290{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m1de_c01290{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01290{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.mc0_c01290{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01290{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.mea_c01290{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01290{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m1df_c01290{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m87_c01290{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m12d_c01290{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.me0_c01290{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m146_c01290{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m17_c01290{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01290{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m1_c01290{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.ma6_c01290{transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01290{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m14d_c01290{transform:matrix(1.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.382500,0.000000,0.000000,0.250000,0,0);}
.mc2_c01290{transform:matrix(1.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.455000,0.000000,0.000000,0.250000,0,0);}
.m141_c01290{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m14f_c01290{transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);}
.m151_c01290{transform:matrix(1.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.737500,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01290{transform:matrix(2.012500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.012500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.012500,0.000000,0.000000,0.250000,0,0);}
.m152_c01290{transform:matrix(2.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.105000,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01290{transform:matrix(2.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.352500,0.000000,0.000000,0.250000,0,0);}
.mc1_c01290{transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);}
.v1_c01290{vertical-align:-6.900000px;}
.v0_c01290{vertical-align:0.000000px;}
.v2_c01290{vertical-align:3.480000px;}
.v3_c01290{vertical-align:24.180000px;}
.ls2_c01290{letter-spacing:0.000000px;}
.ls0_c01290{letter-spacing:73.922400px;}
.ls1_c01290{letter-spacing:152.219067px;}
.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:-11.026680px;}
.ws2_c01290{word-spacing:-5.242560px;}
.ws4_c01290{word-spacing:0.000000px;}
.ws1_c01290{word-spacing:12.414540px;}
.ws3_c01290{word-spacing:54.211152px;}
.fc0_c01290{color:transparent;}
.fs1_c01290{font-size:3.456000px;}
.fs1d_c01290{font-size:6.000000px;}
.fs11_c01290{font-size:6.900000px;}
.fs4_c01290{font-size:10.380000px;}
.fs0_c01290{font-size:13.800000px;}
.fsa_c01290{font-size:17.280000px;}
.fs1b_c01290{font-size:20.760000px;}
.fs1a_c01290{font-size:24.180000px;}
.fs1e_c01290{font-size:27.660000px;}
.fs15_c01290{font-size:31.080000px;}
.fs3_c01290{font-size:34.560000px;}
.fs14_c01290{font-size:38.040000px;}
.fs19_c01290{font-size:41.460000px;}
.fsf_c01290{font-size:44.940000px;}
.fs17_c01290{font-size:48.360000px;}
.fsd_c01290{font-size:51.840000px;}
.fs9_c01290{font-size:55.320000px;}
.fs13_c01290{font-size:58.740000px;}
.fse_c01290{font-size:62.220000px;}
.fs2_c01290{font-size:65.640000px;}
.fs1c_c01290{font-size:69.120000px;}
.fs8_c01290{font-size:72.600000px;}
.fs5_c01290{font-size:76.020000px;}
.fs16_c01290{font-size:79.500000px;}
.fsb_c01290{font-size:82.920000px;}
.fs12_c01290{font-size:86.400000px;}
.fs6_c01290{font-size:89.880000px;}
.fs1f_c01290{font-size:93.300000px;}
.fsc_c01290{font-size:96.780000px;}
.fs18_c01290{font-size:100.200000px;}
.fs7_c01290{font-size:103.680000px;}
.fs20_c01290{font-size:107.160000px;}
.fs10_c01290{font-size:110.580000px;}
.y0_c01290{bottom:0.000000px;}
.y22f_c01290{bottom:188.355000px;}
.y232_c01290{bottom:190.080000px;}
.y230_c01290{bottom:190.950000px;}
.y231_c01290{bottom:191.805000px;}
.y227_c01290{bottom:192.675000px;}
.y22e_c01290{bottom:194.400000px;}
.y226_c01290{bottom:195.270000px;}
.y22a_c01290{bottom:196.125000px;}
.y22d_c01290{bottom:196.995000px;}
.y229_c01290{bottom:198.720000px;}
.y228_c01290{bottom:200.445000px;}
.y22b_c01290{bottom:201.315000px;}
.y22c_c01290{bottom:205.635000px;}
.y225_c01290{bottom:208.230000px;}
.y224_c01290{bottom:209.085000px;}
.y223_c01290{bottom:209.955000px;}
.y221_c01290{bottom:210.810000px;}
.y222_c01290{bottom:211.680000px;}
.y220_c01290{bottom:216.000000px;}
.y216_c01290{bottom:219.450000px;}
.y21f_c01290{bottom:220.320000px;}
.y217_c01290{bottom:222.915000px;}
.y21b_c01290{bottom:224.640000px;}
.y214_c01290{bottom:226.365000px;}
.y21e_c01290{bottom:227.235000px;}
.y219_c01290{bottom:228.090000px;}
.y21c_c01290{bottom:228.960000px;}
.y21a_c01290{bottom:229.830000px;}
.y218_c01290{bottom:230.685000px;}
.y21d_c01290{bottom:231.555000px;}
.y215_c01290{bottom:232.410000px;}
.y212_c01290{bottom:233.280000px;}
.y213_c01290{bottom:234.150000px;}
.y211_c01290{bottom:235.005000px;}
.y20f_c01290{bottom:235.875000px;}
.y20d_c01290{bottom:237.600000px;}
.y20c_c01290{bottom:238.470000px;}
.y207_c01290{bottom:239.325000px;}
.y210_c01290{bottom:240.195000px;}
.y205_c01290{bottom:241.050000px;}
.y20e_c01290{bottom:242.790000px;}
.y203_c01290{bottom:243.645000px;}
.y204_c01290{bottom:244.515000px;}
.y206_c01290{bottom:245.370000px;}
.y20b_c01290{bottom:246.240000px;}
.y209_c01290{bottom:252.285000px;}
.y208_c01290{bottom:253.155000px;}
.y201_c01290{bottom:254.010000px;}
.y20a_c01290{bottom:254.880000px;}
.y200_c01290{bottom:257.475000px;}
.y1fe_c01290{bottom:258.330000px;}
.y1fc_c01290{bottom:259.200000px;}
.y202_c01290{bottom:260.070000px;}
.y1fa_c01290{bottom:260.925000px;}
.y1ff_c01290{bottom:261.795000px;}
.y1fd_c01290{bottom:262.650000px;}
.y1fb_c01290{bottom:266.115000px;}
.y1f8_c01290{bottom:274.755000px;}
.y1f9_c01290{bottom:275.610000px;}
.y1f6_c01290{bottom:278.205000px;}
.y1f7_c01290{bottom:279.930000px;}
.y1f3_c01290{bottom:281.670000px;}
.y1f5_c01290{bottom:282.525000px;}
.y1f2_c01290{bottom:283.395000px;}
.y1f4_c01290{bottom:285.120000px;}
.y1f1_c01290{bottom:285.990000px;}
.y1f0_c01290{bottom:296.355000px;}
.y1ef_c01290{bottom:298.080000px;}
.y1ed_c01290{bottom:299.805000px;}
.y1ec_c01290{bottom:300.675000px;}
.y1ee_c01290{bottom:303.270000px;}
.y1ea_c01290{bottom:304.995000px;}
.y1eb_c01290{bottom:305.850000px;}
.y1e9_c01290{bottom:315.360000px;}
.y1e8_c01290{bottom:317.955000px;}
.y1e6_c01290{bottom:318.810000px;}
.y1e4_c01290{bottom:319.680000px;}
.y1e5_c01290{bottom:321.405000px;}
.y1e7_c01290{bottom:324.000000px;}
.y1e2_c01290{bottom:324.870000px;}
.y1e3_c01290{bottom:326.595000px;}
.y1e1_c01290{bottom:336.960000px;}
.y1da_c01290{bottom:341.280000px;}
.y1dd_c01290{bottom:342.150000px;}
.y1e0_c01290{bottom:343.005000px;}
.y1df_c01290{bottom:343.875000px;}
.y1de_c01290{bottom:345.600000px;}
.y1db_c01290{bottom:347.325000px;}
.y1dc_c01290{bottom:348.195000px;}
.y1d9_c01290{bottom:355.965000px;}
.y1d8_c01290{bottom:356.835000px;}
.y1d6_c01290{bottom:359.430000px;}
.y1d3_c01290{bottom:362.010000px;}
.y1d2_c01290{bottom:362.880000px;}
.y1d7_c01290{bottom:363.750000px;}
.y1d5_c01290{bottom:367.200000px;}
.y1d4_c01290{bottom:368.070000px;}
.y1d1_c01290{bottom:377.565000px;}
.y1d0_c01290{bottom:380.160000px;}
.y1cc_c01290{bottom:382.755000px;}
.y1cf_c01290{bottom:383.610000px;}
.y1cb_c01290{bottom:385.350000px;}
.y1cd_c01290{bottom:386.205000px;}
.y1ce_c01290{bottom:387.075000px;}
.y1ca_c01290{bottom:398.310000px;}
.y1c9_c01290{bottom:400.035000px;}
.y1c5_c01290{bottom:402.630000px;}
.y1c4_c01290{bottom:403.485000px;}
.y1c7_c01290{bottom:406.950000px;}
.y1c6_c01290{bottom:407.805000px;}
.y1c8_c01290{bottom:408.675000px;}
.y1c3_c01290{bottom:419.910000px;}
.y1c0_c01290{bottom:423.360000px;}
.y1c1_c01290{bottom:424.230000px;}
.y1be_c01290{bottom:425.955000px;}
.y1c2_c01290{bottom:427.680000px;}
.y1bd_c01290{bottom:429.405000px;}
.y1bf_c01290{bottom:430.275000px;}
.y1bb_c01290{bottom:438.915000px;}
.y1ba_c01290{bottom:439.770000px;}
.y1b6_c01290{bottom:440.640000px;}
.y1b8_c01290{bottom:442.365000px;}
.y1b5_c01290{bottom:444.960000px;}
.y1b9_c01290{bottom:445.830000px;}
.y1b4_c01290{bottom:447.555000px;}
.y1b3_c01290{bottom:450.150000px;}
.y1b7_c01290{bottom:451.875000px;}
.y1bc_c01290{bottom:457.050000px;}
.y1b2_c01290{bottom:465.690000px;}
.y1af_c01290{bottom:466.560000px;}
.y1b1_c01290{bottom:467.430000px;}
.y1b0_c01290{bottom:468.285000px;}
.y1ae_c01290{bottom:469.155000px;}
.y1ac_c01290{bottom:470.010000px;}
.y1ad_c01290{bottom:470.880000px;}
.y1aa_c01290{bottom:479.520000px;}
.y1a7_c01290{bottom:480.390000px;}
.y1a8_c01290{bottom:482.115000px;}
.y1ab_c01290{bottom:482.970000px;}
.y1a6_c01290{bottom:483.840000px;}
.y1a3_c01290{bottom:484.710000px;}
.y1a2_c01290{bottom:485.565000px;}
.y1a0_c01290{bottom:486.435000px;}
.y1a5_c01290{bottom:487.290000px;}
.y19f_c01290{bottom:488.160000px;}
.y1a1_c01290{bottom:491.610000px;}
.y1a9_c01290{bottom:493.350000px;}
.y1a4_c01290{bottom:494.205000px;}
.y19d_c01290{bottom:501.120000px;}
.y19b_c01290{bottom:503.715000px;}
.y199_c01290{bottom:505.440000px;}
.y19a_c01290{bottom:506.310000px;}
.y19c_c01290{bottom:508.035000px;}
.y197_c01290{bottom:508.890000px;}
.y19e_c01290{bottom:510.630000px;}
.y198_c01290{bottom:512.355000px;}
.y196_c01290{bottom:518.400000px;}
.y195_c01290{bottom:519.270000px;}
.y194_c01290{bottom:520.995000px;}
.y193_c01290{bottom:521.850000px;}
.y18f_c01290{bottom:523.590000px;}
.y191_c01290{bottom:524.445000px;}
.y192_c01290{bottom:525.315000px;}
.y18d_c01290{bottom:526.170000px;}
.y190_c01290{bottom:527.040000px;}
.y18e_c01290{bottom:531.360000px;}
.y18a_c01290{bottom:532.230000px;}
.y184_c01290{bottom:533.085000px;}
.y188_c01290{bottom:533.955000px;}
.y18c_c01290{bottom:535.680000px;}
.y18b_c01290{bottom:537.405000px;}
.y189_c01290{bottom:539.130000px;}
.y185_c01290{bottom:540.000000px;}
.y186_c01290{bottom:540.870000px;}
.y187_c01290{bottom:542.595000px;}
.y181_c01290{bottom:544.320000px;}
.y17f_c01290{bottom:545.190000px;}
.y183_c01290{bottom:547.770000px;}
.y17b_c01290{bottom:550.365000px;}
.y182_c01290{bottom:551.235000px;}
.y17c_c01290{bottom:552.090000px;}
.y17d_c01290{bottom:552.960000px;}
.y17e_c01290{bottom:556.410000px;}
.y180_c01290{bottom:559.875000px;}
.y17a_c01290{bottom:561.600000px;}
.y179_c01290{bottom:562.470000px;}
.y178_c01290{bottom:563.325000px;}
.y177_c01290{bottom:565.050000px;}
.y173_c01290{bottom:567.645000px;}
.y175_c01290{bottom:568.515000px;}
.y171_c01290{bottom:569.370000px;}
.y172_c01290{bottom:570.240000px;}
.y176_c01290{bottom:571.110000px;}
.y174_c01290{bottom:571.965000px;}
.y236_c01290{bottom:581.475000px;}
.y235_c01290{bottom:583.200000px;}
.y16f_c01290{bottom:584.925000px;}
.y16e_c01290{bottom:585.795000px;}
.y170_c01290{bottom:586.650000px;}
.y169_c01290{bottom:587.520000px;}
.y16a_c01290{bottom:588.390000px;}
.y16b_c01290{bottom:590.115000px;}
.y16d_c01290{bottom:591.840000px;}
.y16c_c01290{bottom:593.565000px;}
.y168_c01290{bottom:602.205000px;}
.y167_c01290{bottom:603.930000px;}
.y165_c01290{bottom:604.800000px;}
.y164_c01290{bottom:605.670000px;}
.y161_c01290{bottom:607.395000px;}
.y166_c01290{bottom:609.990000px;}
.y162_c01290{bottom:611.715000px;}
.y160_c01290{bottom:612.570000px;}
.y15f_c01290{bottom:613.440000px;}
.y163_c01290{bottom:616.890000px;}
.y15b_c01290{bottom:623.805000px;}
.y15d_c01290{bottom:624.675000px;}
.y15c_c01290{bottom:626.400000px;}
.y15e_c01290{bottom:627.270000px;}
.y156_c01290{bottom:628.125000px;}
.y154_c01290{bottom:628.995000px;}
.y157_c01290{bottom:629.850000px;}
.y15a_c01290{bottom:630.720000px;}
.y153_c01290{bottom:633.315000px;}
.y155_c01290{bottom:634.170000px;}
.y159_c01290{bottom:635.910000px;}
.y158_c01290{bottom:641.955000px;}
.y151_c01290{bottom:642.810000px;}
.y152_c01290{bottom:644.550000px;}
.y150_c01290{bottom:646.275000px;}
.y14c_c01290{bottom:648.870000px;}
.y14d_c01290{bottom:649.725000px;}
.y14f_c01290{bottom:651.450000px;}
.y14e_c01290{bottom:652.320000px;}
.y14b_c01290{bottom:654.045000px;}
.y147_c01290{bottom:665.280000px;}
.y149_c01290{bottom:666.150000px;}
.y14a_c01290{bottom:667.005000px;}
.y145_c01290{bottom:668.730000px;}
.y148_c01290{bottom:669.600000px;}
.y146_c01290{bottom:670.470000px;}
.y144_c01290{bottom:673.920000px;}
.y143_c01290{bottom:674.790000px;}
.y141_c01290{bottom:680.835000px;}
.y142_c01290{bottom:681.690000px;}
.y140_c01290{bottom:684.285000px;}
.y13b_c01290{bottom:686.880000px;}
.y13f_c01290{bottom:687.750000px;}
.y13e_c01290{bottom:689.475000px;}
.y13d_c01290{bottom:691.200000px;}
.y13c_c01290{bottom:692.925000px;}
.y13a_c01290{bottom:694.650000px;}
.y138_c01290{bottom:703.290000px;}
.y137_c01290{bottom:704.160000px;}
.y136_c01290{bottom:705.030000px;}
.y133_c01290{bottom:705.885000px;}
.y131_c01290{bottom:706.755000px;}
.y139_c01290{bottom:707.610000px;}
.y132_c01290{bottom:708.480000px;}
.y134_c01290{bottom:711.075000px;}
.y135_c01290{bottom:712.800000px;}
.y12f_c01290{bottom:717.990000px;}
.y130_c01290{bottom:718.845000px;}
.y12b_c01290{bottom:720.570000px;}
.y12e_c01290{bottom:721.440000px;}
.y12a_c01290{bottom:722.310000px;}
.y127_c01290{bottom:724.035000px;}
.y129_c01290{bottom:728.355000px;}
.y12d_c01290{bottom:729.210000px;}
.y128_c01290{bottom:730.080000px;}
.y12c_c01290{bottom:730.950000px;}
.y126_c01290{bottom:733.530000px;}
.y125_c01290{bottom:734.400000px;}
.y124_c01290{bottom:736.125000px;}
.y122_c01290{bottom:742.170000px;}
.y121_c01290{bottom:743.910000px;}
.y11f_c01290{bottom:746.490000px;}
.y11e_c01290{bottom:747.360000px;}
.y123_c01290{bottom:748.230000px;}
.y11d_c01290{bottom:749.085000px;}
.y11c_c01290{bottom:749.955000px;}
.y120_c01290{bottom:751.680000px;}
.y11a_c01290{bottom:754.275000px;}
.y11b_c01290{bottom:762.045000px;}
.y119_c01290{bottom:762.915000px;}
.y117_c01290{bottom:765.510000px;}
.y112_c01290{bottom:771.555000px;}
.y116_c01290{bottom:775.875000px;}
.y114_c01290{bottom:777.600000px;}
.y115_c01290{bottom:778.470000px;}
.y118_c01290{bottom:780.195000px;}
.y111_c01290{bottom:783.645000px;}
.y110_c01290{bottom:785.370000px;}
.y10f_c01290{bottom:786.240000px;}
.y113_c01290{bottom:787.965000px;}
.y10e_c01290{bottom:788.835000px;}
.y10a_c01290{bottom:789.690000px;}
.y10d_c01290{bottom:790.560000px;}
.y10c_c01290{bottom:791.430000px;}
.y108_c01290{bottom:794.880000px;}
.y10b_c01290{bottom:796.605000px;}
.y109_c01290{bottom:798.330000px;}
.y107_c01290{bottom:801.795000px;}
.y106_c01290{bottom:804.390000px;}
.y105_c01290{bottom:807.840000px;}
.y104_c01290{bottom:808.710000px;}
.y103_c01290{bottom:809.565000px;}
.y101_c01290{bottom:813.030000px;}
.y100_c01290{bottom:817.350000px;}
.yff_c01290{bottom:819.075000px;}
.y102_c01290{bottom:819.930000px;}
.yfc_c01290{bottom:823.395000px;}
.yfd_c01290{bottom:825.120000px;}
.yf7_c01290{bottom:828.570000px;}
.yf9_c01290{bottom:829.440000px;}
.yf6_c01290{bottom:830.310000px;}
.yf5_c01290{bottom:831.165000px;}
.yfb_c01290{bottom:832.035000px;}
.yf8_c01290{bottom:832.890000px;}
.yfe_c01290{bottom:834.630000px;}
.yf4_c01290{bottom:837.210000px;}
.yfa_c01290{bottom:842.400000px;}
.yf2_c01290{bottom:845.850000px;}
.yef_c01290{bottom:848.445000px;}
.yf3_c01290{bottom:849.315000px;}
.yee_c01290{bottom:851.040000px;}
.yf0_c01290{bottom:851.910000px;}
.yf1_c01290{bottom:852.765000px;}
.yed_c01290{bottom:853.635000px;}
.yec_c01290{bottom:861.405000px;}
.yeb_c01290{bottom:863.130000px;}
.ye5_c01290{bottom:865.725000px;}
.ye6_c01290{bottom:866.595000px;}
.ye8_c01290{bottom:867.450000px;}
.ye7_c01290{bottom:869.190000px;}
.ye3_c01290{bottom:870.915000px;}
.ye9_c01290{bottom:871.770000px;}
.ye4_c01290{bottom:874.365000px;}
.yea_c01290{bottom:875.235000px;}
.ye0_c01290{bottom:887.325000px;}
.ye2_c01290{bottom:889.050000px;}
.yde_c01290{bottom:890.790000px;}
.ydd_c01290{bottom:891.645000px;}
.ye1_c01290{bottom:892.515000px;}
.ydf_c01290{bottom:893.370000px;}
.ydb_c01290{bottom:908.070000px;}
.yd8_c01290{bottom:909.795000px;}
.ydc_c01290{bottom:910.650000px;}
.yda_c01290{bottom:911.520000px;}
.yd9_c01290{bottom:914.115000px;}
.yd7_c01290{bottom:914.970000px;}
.yd5_c01290{bottom:915.840000px;}
.yd6_c01290{bottom:917.565000px;}
.yd4_c01290{bottom:919.290000px;}
.yd3_c01290{bottom:925.350000px;}
.yd2_c01290{bottom:926.205000px;}
.yce_c01290{bottom:927.930000px;}
.yd1_c01290{bottom:931.395000px;}
.ycf_c01290{bottom:932.250000px;}
.yd0_c01290{bottom:933.990000px;}
.ycb_c01290{bottom:945.210000px;}
.ycc_c01290{bottom:946.950000px;}
.yc8_c01290{bottom:947.805000px;}
.ycd_c01290{bottom:949.530000px;}
.yc5_c01290{bottom:952.995000px;}
.yc6_c01290{bottom:954.720000px;}
.yc3_c01290{bottom:956.445000px;}
.yc9_c01290{bottom:957.315000px;}
.yc4_c01290{bottom:958.170000px;}
.yc2_c01290{bottom:960.765000px;}
.yc7_c01290{bottom:962.490000px;}
.yca_c01290{bottom:965.085000px;}
.yc0_c01290{bottom:965.955000px;}
.ybf_c01290{bottom:969.405000px;}
.ybe_c01290{bottom:970.275000px;}
.yba_c01290{bottom:972.000000px;}
.yb9_c01290{bottom:972.870000px;}
.ybc_c01290{bottom:976.320000px;}
.ybb_c01290{bottom:977.190000px;}
.yb8_c01290{bottom:978.915000px;}
.yc1_c01290{bottom:983.235000px;}
.ybd_c01290{bottom:984.960000px;}
.yb5_c01290{bottom:988.410000px;}
.yb7_c01290{bottom:990.150000px;}
.yb4_c01290{bottom:991.005000px;}
.yb6_c01290{bottom:991.875000px;}
.yb3_c01290{bottom:992.730000px;}
.yb0_c01290{bottom:993.600000px;}
.yad_c01290{bottom:996.195000px;}
.yb2_c01290{bottom:998.790000px;}
.yaf_c01290{bottom:999.645000px;}
.yac_c01290{bottom:1000.515000px;}
.yab_c01290{bottom:1001.370000px;}
.yb1_c01290{bottom:1002.240000px;}
.yae_c01290{bottom:1003.110000px;}
.ya9_c01290{bottom:1003.965000px;}
.yaa_c01290{bottom:1004.835000px;}
.ya7_c01290{bottom:1006.560000px;}
.ya8_c01290{bottom:1007.430000px;}
.ya6_c01290{bottom:1008.285000px;}
.ya2_c01290{bottom:1009.155000px;}
.ya3_c01290{bottom:1010.880000px;}
.ya1_c01290{bottom:1011.750000px;}
.y9f_c01290{bottom:1012.605000px;}
.ya5_c01290{bottom:1014.330000px;}
.ya4_c01290{bottom:1015.200000px;}
.ya0_c01290{bottom:1016.925000px;}
.y9e_c01290{bottom:1021.245000px;}
.y9d_c01290{bottom:1022.115000px;}
.y9c_c01290{bottom:1023.840000px;}
.y9a_c01290{bottom:1025.565000px;}
.y99_c01290{bottom:1026.435000px;}
.y97_c01290{bottom:1027.290000px;}
.y96_c01290{bottom:1033.350000px;}
.y98_c01290{bottom:1034.205000px;}
.y9b_c01290{bottom:1035.075000px;}
.y94_c01290{bottom:1048.890000px;}
.y8e_c01290{bottom:1049.760000px;}
.y92_c01290{bottom:1052.355000px;}
.y90_c01290{bottom:1054.080000px;}
.y95_c01290{bottom:1054.950000px;}
.y91_c01290{bottom:1055.805000px;}
.y8c_c01290{bottom:1057.530000px;}
.y93_c01290{bottom:1058.400000px;}
.y85_c01290{bottom:1059.270000px;}
.y8d_c01290{bottom:1060.995000px;}
.y8f_c01290{bottom:1061.850000px;}
.y87_c01290{bottom:1063.590000px;}
.y89_c01290{bottom:1064.445000px;}
.y8a_c01290{bottom:1067.040000px;}
.y8b_c01290{bottom:1067.910000px;}
.y88_c01290{bottom:1068.765000px;}
.y86_c01290{bottom:1069.635000px;}
.y81_c01290{bottom:1072.230000px;}
.y82_c01290{bottom:1075.680000px;}
.y7f_c01290{bottom:1078.275000px;}
.y83_c01290{bottom:1082.595000px;}
.y80_c01290{bottom:1083.450000px;}
.y84_c01290{bottom:1086.045000px;}
.y7d_c01290{bottom:1088.640000px;}
.y7e_c01290{bottom:1090.365000px;}
.y79_c01290{bottom:1092.090000px;}
.y78_c01290{bottom:1092.960000px;}
.y7c_c01290{bottom:1095.555000px;}
.y7b_c01290{bottom:1096.410000px;}
.y7a_c01290{bottom:1097.280000px;}
.y77_c01290{bottom:1105.920000px;}
.y76_c01290{bottom:1108.515000px;}
.y75_c01290{bottom:1111.965000px;}
.y73_c01290{bottom:1112.835000px;}
.y70_c01290{bottom:1114.560000px;}
.y71_c01290{bottom:1115.430000px;}
.y6f_c01290{bottom:1116.285000px;}
.y74_c01290{bottom:1117.155000px;}
.y72_c01290{bottom:1118.880000px;}
.y6e_c01290{bottom:1122.330000px;}
.y6c_c01290{bottom:1127.520000px;}
.y6b_c01290{bottom:1129.245000px;}
.y69_c01290{bottom:1130.115000px;}
.y67_c01290{bottom:1131.840000px;}
.y66_c01290{bottom:1133.565000px;}
.y6d_c01290{bottom:1134.435000px;}
.y6a_c01290{bottom:1135.290000px;}
.y68_c01290{bottom:1136.160000px;}
.y65_c01290{bottom:1137.885000px;}
.y64_c01290{bottom:1142.205000px;}
.y61_c01290{bottom:1149.990000px;}
.y60_c01290{bottom:1150.845000px;}
.y63_c01290{bottom:1151.715000px;}
.y62_c01290{bottom:1152.570000px;}
.y5e_c01290{bottom:1153.440000px;}
.y5f_c01290{bottom:1156.035000px;}
.y5d_c01290{bottom:1156.890000px;}
.y5c_c01290{bottom:1161.210000px;}
.y59_c01290{bottom:1169.850000px;}
.y57_c01290{bottom:1170.720000px;}
.y56_c01290{bottom:1172.445000px;}
.y55_c01290{bottom:1173.315000px;}
.y5a_c01290{bottom:1174.170000px;}
.y58_c01290{bottom:1175.040000px;}
.y54_c01290{bottom:1176.765000px;}
.y51_c01290{bottom:1177.635000px;}
.y50_c01290{bottom:1178.490000px;}
.y53_c01290{bottom:1180.230000px;}
.y52_c01290{bottom:1181.085000px;}
.y5b_c01290{bottom:1185.405000px;}
.y4f_c01290{bottom:1188.000000px;}
.y4e_c01290{bottom:1189.725000px;}
.y4c_c01290{bottom:1190.595000px;}
.y4d_c01290{bottom:1193.190000px;}
.y4a_c01290{bottom:1194.045000px;}
.y4b_c01290{bottom:1194.915000px;}
.y47_c01290{bottom:1197.510000px;}
.y49_c01290{bottom:1198.365000px;}
.y46_c01290{bottom:1199.235000px;}
.y45_c01290{bottom:1200.090000px;}
.y48_c01290{bottom:1201.830000px;}
.y44_c01290{bottom:1211.325000px;}
.y43_c01290{bottom:1212.195000px;}
.y42_c01290{bottom:1213.050000px;}
.y3f_c01290{bottom:1215.645000px;}
.y40_c01290{bottom:1216.515000px;}
.y41_c01290{bottom:1221.690000px;}
.y3b_c01290{bottom:1232.070000px;}
.y3a_c01290{bottom:1232.925000px;}
.y39_c01290{bottom:1233.795000px;}
.y38_c01290{bottom:1236.390000px;}
.y3e_c01290{bottom:1240.710000px;}
.y3d_c01290{bottom:1242.435000px;}
.y3c_c01290{bottom:1245.885000px;}
.y36_c01290{bottom:1251.075000px;}
.y37_c01290{bottom:1253.670000px;}
.y34_c01290{bottom:1254.525000px;}
.y2f_c01290{bottom:1255.395000px;}
.y33_c01290{bottom:1256.250000px;}
.y2d_c01290{bottom:1257.120000px;}
.y35_c01290{bottom:1257.990000px;}
.y32_c01290{bottom:1258.845000px;}
.y31_c01290{bottom:1259.715000px;}
.y30_c01290{bottom:1260.570000px;}
.y2e_c01290{bottom:1265.760000px;}
.y2c_c01290{bottom:1270.080000px;}
.y2a_c01290{bottom:1273.530000px;}
.y26_c01290{bottom:1276.125000px;}
.y2b_c01290{bottom:1276.995000px;}
.y28_c01290{bottom:1278.720000px;}
.y29_c01290{bottom:1279.590000px;}
.y27_c01290{bottom:1280.445000px;}
.y24_c01290{bottom:1283.040000px;}
.y25_c01290{bottom:1283.910000px;}
.y21_c01290{bottom:1291.680000px;}
.y1f_c01290{bottom:1292.550000px;}
.y23_c01290{bottom:1293.405000px;}
.y1a_c01290{bottom:1295.130000px;}
.y18_c01290{bottom:1296.870000px;}
.y20_c01290{bottom:1297.725000px;}
.y1e_c01290{bottom:1298.595000px;}
.y1c_c01290{bottom:1299.450000px;}
.y1b_c01290{bottom:1300.320000px;}
.y19_c01290{bottom:1302.045000px;}
.y1d_c01290{bottom:1304.640000px;}
.y22_c01290{bottom:1305.510000px;}
.y17_c01290{bottom:1309.830000px;}
.y15_c01290{bottom:1312.410000px;}
.y14_c01290{bottom:1315.005000px;}
.y12_c01290{bottom:1315.875000px;}
.y13_c01290{bottom:1316.730000px;}
.y11_c01290{bottom:1317.600000px;}
.y16_c01290{bottom:1318.470000px;}
.y10_c01290{bottom:1330.560000px;}
.yf_c01290{bottom:1333.155000px;}
.yb_c01290{bottom:1335.750000px;}
.ya_c01290{bottom:1336.605000px;}
.y9_c01290{bottom:1338.330000px;}
.ye_c01290{bottom:1339.200000px;}
.yd_c01290{bottom:1340.070000px;}
.yc_c01290{bottom:1340.925000px;}
.y8_c01290{bottom:1341.795000px;}
.y7_c01290{bottom:1343.520000px;}
.y6_c01290{bottom:1360.800000px;}
.y3_c01290{bottom:1365.990000px;}
.y5_c01290{bottom:1369.440000px;}
.y4_c01290{bottom:1371.165000px;}
.y2_c01290{bottom:1390.170000px;}
.y1_c01290{bottom:1391.040000px;}
.y234_c01290{bottom:1433.370000px;}
.y233_c01290{bottom:1448.070000px;}
.h3_c01290{height:3.110063px;}
.h1f_c01290{height:5.399414px;}
.h13_c01290{height:6.209326px;}
.h6_c01290{height:9.340986px;}
.h2_c01290{height:12.418652px;}
.hc_c01290{height:15.550313px;}
.h1d_c01290{height:18.681973px;}
.h1c_c01290{height:21.759639px;}
.h20_c01290{height:24.891299px;}
.h17_c01290{height:27.968965px;}
.h5_c01290{height:31.100625px;}
.h16_c01290{height:34.232285px;}
.h1b_c01290{height:37.309951px;}
.h11_c01290{height:40.441611px;}
.h19_c01290{height:43.519277px;}
.hf_c01290{height:46.650937px;}
.hb_c01290{height:49.782598px;}
.h15_c01290{height:52.860264px;}
.h23_c01290{height:53.262598px;}
.h10_c01290{height:55.991924px;}
.h4_c01290{height:59.069590px;}
.h1e_c01290{height:62.201250px;}
.h24_c01290{height:64.621611px;}
.ha_c01290{height:65.332910px;}
.h7_c01290{height:68.410576px;}
.h18_c01290{height:71.542236px;}
.hd_c01290{height:74.619902px;}
.h14_c01290{height:77.751563px;}
.h8_c01290{height:80.883223px;}
.h21_c01290{height:83.960889px;}
.he_c01290{height:87.092549px;}
.h1a_c01290{height:90.170215px;}
.h9_c01290{height:93.301875px;}
.h22_c01290{height:96.433535px;}
.h12_c01290{height:99.511201px;}
.h1_c01290{height:1518.750000px;}
.h0_c01290{height:1518.915000px;}
.w0_c01290{width:1085.190000px;}
.w1_c01290{width:1085.250000px;}
.x0_c01290{left:0.000000px;}
.xca_c01290{left:126.150000px;}
.xd2_c01290{left:134.790000px;}
.xd6_c01290{left:139.965000px;}
.xcb_c01290{left:146.880000px;}
.xd3_c01290{left:153.795000px;}
.xcc_c01290{left:166.755000px;}
.xd4_c01290{left:172.800000px;}
.x36_c01290{left:177.120000px;}
.xcd_c01290{left:185.760000px;}
.x8b_c01290{left:189.210000px;}
.x115_c01290{left:195.270000px;}
.x107_c01290{left:197.850000px;}
.x37_c01290{left:200.445000px;}
.x4f_c01290{left:203.040000px;}
.x50_c01290{left:207.360000px;}
.x5a_c01290{left:209.085000px;}
.xb2_c01290{left:210.810000px;}
.x16_c01290{left:212.550000px;}
.x38_c01290{left:215.130000px;}
.xda_c01290{left:216.870000px;}
.x5b_c01290{left:218.595000px;}
.xb7_c01290{left:221.190000px;}
.x51_c01290{left:223.770000px;}
.xd5_c01290{left:225.510864px;}
.x65_c01290{left:228.090000px;}
.x2a_c01290{left:229.830000px;}
.x7f_c01290{left:232.410000px;}
.x3_c01290{left:234.150000px;}
.x6c_c01290{left:236.730000px;}
.x8c_c01290{left:239.325000px;}
.xa0_c01290{left:242.790000px;}
.x11d_c01290{left:244.515000px;}
.x7a_c01290{left:246.240000px;}
.x66_c01290{left:255.750000px;}
.x7b_c01290{left:257.475000px;}
.x8d_c01290{left:260.070000px;}
.x2b_c01290{left:261.795000px;}
.x80_c01290{left:264.390000px;}
.xff_c01290{left:270.435000px;}
.x73_c01290{left:272.160000px;}
.x81_c01290{left:274.755000px;}
.xea_c01290{left:276.480000px;}
.x8e_c01290{left:278.205000px;}
.x46_c01290{left:279.930000px;}
.x2c_c01290{left:281.670000px;}
.x83_c01290{left:283.395000px;}
.x4_c01290{left:285.990000px;}
.xe2_c01290{left:288.570000px;}
.xa1_c01290{left:290.310000px;}
.x119_c01290{left:292.890000px;}
.xa_c01290{left:294.630000px;}
.xf2_c01290{left:298.080000px;}
.xa2_c01290{left:300.675000px;}
.xb_c01290{left:303.270000px;}
.x84_c01290{left:306.720000px;}
.x116_c01290{left:309.315000px;}
.x52_c01290{left:311.040000px;}
.x39_c01290{left:312.765000px;}
.x17_c01290{left:317.085000px;}
.xb3_c01290{left:318.810000px;}
.x110_c01290{left:320.550000px;}
.x5c_c01290{left:323.130000px;}
.xe3_c01290{left:326.595000px;}
.x5_c01290{left:329.190000px;}
.x47_c01290{left:331.770000px;}
.xad_c01290{left:333.510000px;}
.xd7_c01290{left:335.235000px;}
.xce_c01290{left:336.960000px;}
.x74_c01290{left:341.280000px;}
.xc0_c01290{left:344.730000px;}
.x10d_c01290{left:348.195000px;}
.xc_c01290{left:351.645000px;}
.xaf_c01290{left:353.370000px;}
.xdb_c01290{left:355.110000px;}
.x100_c01290{left:356.835000px;}
.xa3_c01290{left:362.010000px;}
.x53_c01290{left:364.605000px;}
.x8f_c01290{left:366.330000px;}
.x113_c01290{left:368.070000px;}
.xfb_c01290{left:369.795000px;}
.xbd_c01290{left:371.520000px;}
.x109_c01290{left:374.115000px;}
.x6_c01290{left:375.840000px;}
.x95_c01290{left:379.290000px;}
.x5d_c01290{left:382.755000px;}
.x6d_c01290{left:384.480000px;}
.xeb_c01290{left:387.075000px;}
.xf1_c01290{left:390.525000px;}
.x18_c01290{left:393.120000px;}
.xd_c01290{left:394.845000px;}
.x2d_c01290{left:398.310000px;}
.x96_c01290{left:400.890000px;}
.x1f_c01290{left:402.630000px;}
.x5e_c01290{left:404.355000px;}
.x117_c01290{left:406.080000px;}
.x85_c01290{left:407.805000px;}
.x20_c01290{left:409.530000px;}
.x111_c01290{left:411.270000px;}
.xb8_c01290{left:412.995000px;}
.x3a_c01290{left:414.720000px;}
.x9a_c01290{left:417.315000px;}
.xee_c01290{left:419.040000px;}
.x54_c01290{left:420.765000px;}
.x75_c01290{left:423.360000px;}
.x19_c01290{left:425.955000px;}
.x90_c01290{left:430.275000px;}
.xa4_c01290{left:432.870000px;}
.xe8_c01290{left:434.595000px;}
.x11b_c01290{left:436.320000px;}
.x67_c01290{left:438.045000px;}
.x42_c01290{left:440.640000px;}
.xf3_c01290{left:443.235000px;}
.xc8_c01290{left:447.555000px;}
.x2e_c01290{left:451.875000px;}
.x7_c01290{left:455.325000px;}
.xec_c01290{left:457.920000px;}
.x9b_c01290{left:460.515000px;}
.x5f_c01290{left:462.240000px;}
.xe_c01290{left:465.690000px;}
.x86_c01290{left:470.010000px;}
.x2f_c01290{left:471.750000px;}
.xf6_c01290{left:474.330000px;}
.xb6_c01290{left:476.070000px;}
.x10a_c01290{left:477.795000px;}
.xcf_c01290{left:479.520000px;}
.x21_c01290{left:482.115000px;}
.xf_c01290{left:483.840000px;}
.x76_c01290{left:489.030000px;}
.x3b_c01290{left:491.610000px;}
.xb4_c01290{left:496.800000px;}
.x3c_c01290{left:500.250000px;}
.x10b_c01290{left:501.990000px;}
.x87_c01290{left:503.715000px;}
.xa5_c01290{left:505.440000px;}
.x1_c01290{left:508.035000px;}
.x9c_c01290{left:509.760000px;}
.x11e_c01290{left:511.485000px;}
.x97_c01290{left:513.210000px;}
.xaa_c01290{left:515.805000px;}
.xfc_c01290{left:517.530000px;}
.x55_c01290{left:520.125000px;}
.xab_c01290{left:522.720000px;}
.xb0_c01290{left:524.445000px;}
.xa6_c01290{left:530.490000px;}
.x6e_c01290{left:536.550000px;}
.x22_c01290{left:538.275000px;}
.x10_c01290{left:541.725000px;}
.xae_c01290{left:544.320000px;}
.x43_c01290{left:546.915000px;}
.x8_c01290{left:549.510000px;}
.x104_c01290{left:551.235000px;}
.xdd_c01290{left:552.960000px;}
.x1a_c01290{left:555.555000px;}
.x10f_c01290{left:557.280000px;}
.xc1_c01290{left:559.005000px;}
.x30_c01290{left:560.730000px;}
.xdc_c01290{left:563.325000px;}
.xc9_c01290{left:565.050000px;}
.x68_c01290{left:566.790000px;}
.x11_c01290{left:569.370000px;}
.x10c_c01290{left:573.690000px;}
.xb9_c01290{left:575.430000px;}
.xe4_c01290{left:578.880000px;}
.x48_c01290{left:580.605000px;}
.xba_c01290{left:582.330000px;}
.x2_c01290{left:584.925000px;}
.x88_c01290{left:588.390000px;}
.xed_c01290{left:592.710000px;}
.xf7_c01290{left:594.435000px;}
.xd8_c01290{left:596.160000px;}
.x91_c01290{left:599.610000px;}
.x102_c01290{left:601.350000px;}
.x31_c01290{left:603.930000px;}
.xa7_c01290{left:606.525000px;}
.xf8_c01290{left:608.250000px;}
.x10e_c01290{left:609.990000px;}
.x23_c01290{left:613.440000px;}
.x7c_c01290{left:615.165000px;}
.xd9_c01290{left:616.890000px;}
.x3d_c01290{left:620.355000px;}
.xde_c01290{left:622.950000px;}
.xf9_c01290{left:626.400000px;}
.xa8_c01290{left:628.125000px;}
.x1b_c01290{left:630.720000px;}
.x105_c01290{left:633.315000px;}
.x77_c01290{left:635.040000px;}
.xf4_c01290{left:637.635000px;}
.x9d_c01290{left:639.360000px;}
.x3e_c01290{left:641.085000px;}
.x24_c01290{left:643.680000px;}
.x56_c01290{left:646.275000px;}
.x12_c01290{left:648.000000px;}
.x98_c01290{left:649.725000px;}
.xbb_c01290{left:654.045000px;}
.x49_c01290{left:656.640000px;}
.x60_c01290{left:660.090000px;}
.x57_c01290{left:663.555000px;}
.xef_c01290{left:665.280000px;}
.x69_c01290{left:668.730000px;}
.xb1_c01290{left:671.325000px;}
.xc2_c01290{left:673.050000px;}
.x9_c01290{left:674.790000px;}
.xe6_c01290{left:676.515000px;}
.x32_c01290{left:678.240000px;}
.x112_c01290{left:679.965000px;}
.xb5_c01290{left:681.690000px;}
.x7d_c01290{left:683.430000px;}
.x3f_c01290{left:686.010000px;}
.x114_c01290{left:688.605000px;}
.xf0_c01290{left:692.070000px;}
.x4a_c01290{left:694.650000px;}
.x9e_c01290{left:698.115000px;}
.x92_c01290{left:700.710000px;}
.x101_c01290{left:703.290000px;}
.x78_c01290{left:705.030000px;}
.x33_c01290{left:706.755000px;}
.x6f_c01290{left:708.480000px;}
.x58_c01290{left:710.205000px;}
.x25_c01290{left:711.930000px;}
.x93_c01290{left:714.525000px;}
.x99_c01290{left:717.120000px;}
.x61_c01290{left:718.845000px;}
.x11f_c01290{left:720.570000px;}
.x1c_c01290{left:722.310000px;}
.xe9_c01290{left:724.035000px;}
.xf5_c01290{left:725.760000px;}
.xd0_c01290{left:730.950000px;}
.x103_c01290{left:732.675000px;}
.x6a_c01290{left:736.995000px;}
.x79_c01290{left:738.720000px;}
.x26_c01290{left:741.315000px;}
.xac_c01290{left:743.040000px;}
.xc3_c01290{left:744.765000px;}
.x9f_c01290{left:748.230000px;}
.x1d_c01290{left:749.955000px;}
.x44_c01290{left:751.680000px;}
.x4b_c01290{left:753.405000px;}
.xdf_c01290{left:756.870000px;}
.xa9_c01290{left:758.595000px;}
.x13_c01290{left:761.190000px;}
.x40_c01290{left:764.640000px;}
.x94_c01290{left:766.365000px;}
.x34_c01290{left:768.090000px;}
.xbc_c01290{left:769.830000px;}
.x82_c01290{left:771.555000px;}
.xc4_c01290{left:773.280000px;}
.x120_c01290{left:775.005000px;}
.x11a_c01290{left:780.195000px;}
.x89_c01290{left:783.645000px;}
.xfd_c01290{left:786.240000px;}
.x70_c01290{left:787.965000px;}
.xbe_c01290{left:790.560000px;}
.x62_c01290{left:793.155000px;}
.x4c_c01290{left:798.330000px;}
.x1e_c01290{left:800.070000px;}
.x35_c01290{left:802.650000px;}
.x71_c01290{left:806.115000px;}
.x27_c01290{left:807.840000px;}
.xe0_c01290{left:814.755000px;}
.x108_c01290{left:816.480000px;}
.xfa_c01290{left:819.075000px;}
.x8a_c01290{left:820.800000px;}
.x41_c01290{left:823.395000px;}
.xe7_c01290{left:825.120000px;}
.x59_c01290{left:826.845000px;}
.x4d_c01290{left:831.165000px;}
.x6b_c01290{left:835.485000px;}
.x72_c01290{left:838.950000px;}
.xc5_c01290{left:840.675000px;}
.x28_c01290{left:842.400000px;}
.x118_c01290{left:844.125000px;}
.x29_c01290{left:846.720000px;}
.xd1_c01290{left:848.445000px;}
.x45_c01290{left:851.910000px;}
.x11c_c01290{left:854.490000px;}
.x7e_c01290{left:856.230000px;}
.xe1_c01290{left:859.680000px;}
.xe5_c01290{left:863.130000px;}
.xbf_c01290{left:864.870000px;}
.x14_c01290{left:866.595000px;}
.x63_c01290{left:870.045000px;}
.xfe_c01290{left:871.770000px;}
.x15_c01290{left:874.365000px;}
.x64_c01290{left:881.280000px;}
.x4e_c01290{left:885.600000px;}
.x106_c01290{left:891.645000px;}
.xc6_c01290{left:902.880000px;}
.xc7_c01290{left:908.925000px;}
.x122_c01290{left:919.290000px;}
.x123_c01290{left:930.525000px;}
.x121_c01290{left:1046.310000px;}
@media print{
.v1_c01290{vertical-align:-6.133333pt;}
.v0_c01290{vertical-align:0.000000pt;}
.v2_c01290{vertical-align:3.093333pt;}
.v3_c01290{vertical-align:21.493333pt;}
.ls2_c01290{letter-spacing:0.000000pt;}
.ls0_c01290{letter-spacing:65.708800pt;}
.ls1_c01290{letter-spacing:135.305837pt;}
.ws0_c01290{word-spacing:-9.801493pt;}
.ws2_c01290{word-spacing:-4.660053pt;}
.ws4_c01290{word-spacing:0.000000pt;}
.ws1_c01290{word-spacing:11.035147pt;}
.ws3_c01290{word-spacing:48.187691pt;}
.fs1_c01290{font-size:3.072000pt;}
.fs1d_c01290{font-size:5.333333pt;}
.fs11_c01290{font-size:6.133333pt;}
.fs4_c01290{font-size:9.226667pt;}
.fs0_c01290{font-size:12.266667pt;}
.fsa_c01290{font-size:15.360000pt;}
.fs1b_c01290{font-size:18.453333pt;}
.fs1a_c01290{font-size:21.493333pt;}
.fs1e_c01290{font-size:24.586667pt;}
.fs15_c01290{font-size:27.626667pt;}
.fs3_c01290{font-size:30.720000pt;}
.fs14_c01290{font-size:33.813333pt;}
.fs19_c01290{font-size:36.853333pt;}
.fsf_c01290{font-size:39.946667pt;}
.fs17_c01290{font-size:42.986667pt;}
.fsd_c01290{font-size:46.080000pt;}
.fs9_c01290{font-size:49.173333pt;}
.fs13_c01290{font-size:52.213333pt;}
.fse_c01290{font-size:55.306667pt;}
.fs2_c01290{font-size:58.346667pt;}
.fs1c_c01290{font-size:61.440000pt;}
.fs8_c01290{font-size:64.533333pt;}
.fs5_c01290{font-size:67.573333pt;}
.fs16_c01290{font-size:70.666667pt;}
.fsb_c01290{font-size:73.706667pt;}
.fs12_c01290{font-size:76.800000pt;}
.fs6_c01290{font-size:79.893333pt;}
.fs1f_c01290{font-size:82.933333pt;}
.fsc_c01290{font-size:86.026667pt;}
.fs18_c01290{font-size:89.066667pt;}
.fs7_c01290{font-size:92.160000pt;}
.fs20_c01290{font-size:95.253333pt;}
.fs10_c01290{font-size:98.293333pt;}
.y0_c01290{bottom:0.000000pt;}
.y22f_c01290{bottom:167.426667pt;}
.y232_c01290{bottom:168.960000pt;}
.y230_c01290{bottom:169.733333pt;}
.y231_c01290{bottom:170.493333pt;}
.y227_c01290{bottom:171.266667pt;}
.y22e_c01290{bottom:172.800000pt;}
.y226_c01290{bottom:173.573333pt;}
.y22a_c01290{bottom:174.333333pt;}
.y22d_c01290{bottom:175.106667pt;}
.y229_c01290{bottom:176.640000pt;}
.y228_c01290{bottom:178.173333pt;}
.y22b_c01290{bottom:178.946667pt;}
.y22c_c01290{bottom:182.786667pt;}
.y225_c01290{bottom:185.093333pt;}
.y224_c01290{bottom:185.853333pt;}
.y223_c01290{bottom:186.626667pt;}
.y221_c01290{bottom:187.386667pt;}
.y222_c01290{bottom:188.160000pt;}
.y220_c01290{bottom:192.000000pt;}
.y216_c01290{bottom:195.066667pt;}
.y21f_c01290{bottom:195.840000pt;}
.y217_c01290{bottom:198.146667pt;}
.y21b_c01290{bottom:199.680000pt;}
.y214_c01290{bottom:201.213333pt;}
.y21e_c01290{bottom:201.986667pt;}
.y219_c01290{bottom:202.746667pt;}
.y21c_c01290{bottom:203.520000pt;}
.y21a_c01290{bottom:204.293333pt;}
.y218_c01290{bottom:205.053333pt;}
.y21d_c01290{bottom:205.826667pt;}
.y215_c01290{bottom:206.586667pt;}
.y212_c01290{bottom:207.360000pt;}
.y213_c01290{bottom:208.133333pt;}
.y211_c01290{bottom:208.893333pt;}
.y20f_c01290{bottom:209.666667pt;}
.y20d_c01290{bottom:211.200000pt;}
.y20c_c01290{bottom:211.973333pt;}
.y207_c01290{bottom:212.733333pt;}
.y210_c01290{bottom:213.506667pt;}
.y205_c01290{bottom:214.266667pt;}
.y20e_c01290{bottom:215.813333pt;}
.y203_c01290{bottom:216.573333pt;}
.y204_c01290{bottom:217.346667pt;}
.y206_c01290{bottom:218.106667pt;}
.y20b_c01290{bottom:218.880000pt;}
.y209_c01290{bottom:224.253333pt;}
.y208_c01290{bottom:225.026667pt;}
.y201_c01290{bottom:225.786667pt;}
.y20a_c01290{bottom:226.560000pt;}
.y200_c01290{bottom:228.866667pt;}
.y1fe_c01290{bottom:229.626667pt;}
.y1fc_c01290{bottom:230.400000pt;}
.y202_c01290{bottom:231.173333pt;}
.y1fa_c01290{bottom:231.933333pt;}
.y1ff_c01290{bottom:232.706667pt;}
.y1fd_c01290{bottom:233.466667pt;}
.y1fb_c01290{bottom:236.546667pt;}
.y1f8_c01290{bottom:244.226667pt;}
.y1f9_c01290{bottom:244.986667pt;}
.y1f6_c01290{bottom:247.293333pt;}
.y1f7_c01290{bottom:248.826667pt;}
.y1f3_c01290{bottom:250.373333pt;}
.y1f5_c01290{bottom:251.133333pt;}
.y1f2_c01290{bottom:251.906667pt;}
.y1f4_c01290{bottom:253.440000pt;}
.y1f1_c01290{bottom:254.213333pt;}
.y1f0_c01290{bottom:263.426667pt;}
.y1ef_c01290{bottom:264.960000pt;}
.y1ed_c01290{bottom:266.493333pt;}
.y1ec_c01290{bottom:267.266667pt;}
.y1ee_c01290{bottom:269.573333pt;}
.y1ea_c01290{bottom:271.106667pt;}
.y1eb_c01290{bottom:271.866667pt;}
.y1e9_c01290{bottom:280.320000pt;}
.y1e8_c01290{bottom:282.626667pt;}
.y1e6_c01290{bottom:283.386667pt;}
.y1e4_c01290{bottom:284.160000pt;}
.y1e5_c01290{bottom:285.693333pt;}
.y1e7_c01290{bottom:288.000000pt;}
.y1e2_c01290{bottom:288.773333pt;}
.y1e3_c01290{bottom:290.306667pt;}
.y1e1_c01290{bottom:299.520000pt;}
.y1da_c01290{bottom:303.360000pt;}
.y1dd_c01290{bottom:304.133333pt;}
.y1e0_c01290{bottom:304.893333pt;}
.y1df_c01290{bottom:305.666667pt;}
.y1de_c01290{bottom:307.200000pt;}
.y1db_c01290{bottom:308.733333pt;}
.y1dc_c01290{bottom:309.506667pt;}
.y1d9_c01290{bottom:316.413333pt;}
.y1d8_c01290{bottom:317.186667pt;}
.y1d6_c01290{bottom:319.493333pt;}
.y1d3_c01290{bottom:321.786667pt;}
.y1d2_c01290{bottom:322.560000pt;}
.y1d7_c01290{bottom:323.333333pt;}
.y1d5_c01290{bottom:326.400000pt;}
.y1d4_c01290{bottom:327.173333pt;}
.y1d1_c01290{bottom:335.613333pt;}
.y1d0_c01290{bottom:337.920000pt;}
.y1cc_c01290{bottom:340.226667pt;}
.y1cf_c01290{bottom:340.986667pt;}
.y1cb_c01290{bottom:342.533333pt;}
.y1cd_c01290{bottom:343.293333pt;}
.y1ce_c01290{bottom:344.066667pt;}
.y1ca_c01290{bottom:354.053333pt;}
.y1c9_c01290{bottom:355.586667pt;}
.y1c5_c01290{bottom:357.893333pt;}
.y1c4_c01290{bottom:358.653333pt;}
.y1c7_c01290{bottom:361.733333pt;}
.y1c6_c01290{bottom:362.493333pt;}
.y1c8_c01290{bottom:363.266667pt;}
.y1c3_c01290{bottom:373.253333pt;}
.y1c0_c01290{bottom:376.320000pt;}
.y1c1_c01290{bottom:377.093333pt;}
.y1be_c01290{bottom:378.626667pt;}
.y1c2_c01290{bottom:380.160000pt;}
.y1bd_c01290{bottom:381.693333pt;}
.y1bf_c01290{bottom:382.466667pt;}
.y1bb_c01290{bottom:390.146667pt;}
.y1ba_c01290{bottom:390.906667pt;}
.y1b6_c01290{bottom:391.680000pt;}
.y1b8_c01290{bottom:393.213333pt;}
.y1b5_c01290{bottom:395.520000pt;}
.y1b9_c01290{bottom:396.293333pt;}
.y1b4_c01290{bottom:397.826667pt;}
.y1b3_c01290{bottom:400.133333pt;}
.y1b7_c01290{bottom:401.666667pt;}
.y1bc_c01290{bottom:406.266667pt;}
.y1b2_c01290{bottom:413.946667pt;}
.y1af_c01290{bottom:414.720000pt;}
.y1b1_c01290{bottom:415.493333pt;}
.y1b0_c01290{bottom:416.253333pt;}
.y1ae_c01290{bottom:417.026667pt;}
.y1ac_c01290{bottom:417.786667pt;}
.y1ad_c01290{bottom:418.560000pt;}
.y1aa_c01290{bottom:426.240000pt;}
.y1a7_c01290{bottom:427.013333pt;}
.y1a8_c01290{bottom:428.546667pt;}
.y1ab_c01290{bottom:429.306667pt;}
.y1a6_c01290{bottom:430.080000pt;}
.y1a3_c01290{bottom:430.853333pt;}
.y1a2_c01290{bottom:431.613333pt;}
.y1a0_c01290{bottom:432.386667pt;}
.y1a5_c01290{bottom:433.146667pt;}
.y19f_c01290{bottom:433.920000pt;}
.y1a1_c01290{bottom:436.986667pt;}
.y1a9_c01290{bottom:438.533333pt;}
.y1a4_c01290{bottom:439.293333pt;}
.y19d_c01290{bottom:445.440000pt;}
.y19b_c01290{bottom:447.746667pt;}
.y199_c01290{bottom:449.280000pt;}
.y19a_c01290{bottom:450.053333pt;}
.y19c_c01290{bottom:451.586667pt;}
.y197_c01290{bottom:452.346667pt;}
.y19e_c01290{bottom:453.893333pt;}
.y198_c01290{bottom:455.426667pt;}
.y196_c01290{bottom:460.800000pt;}
.y195_c01290{bottom:461.573333pt;}
.y194_c01290{bottom:463.106667pt;}
.y193_c01290{bottom:463.866667pt;}
.y18f_c01290{bottom:465.413333pt;}
.y191_c01290{bottom:466.173333pt;}
.y192_c01290{bottom:466.946667pt;}
.y18d_c01290{bottom:467.706667pt;}
.y190_c01290{bottom:468.480000pt;}
.y18e_c01290{bottom:472.320000pt;}
.y18a_c01290{bottom:473.093333pt;}
.y184_c01290{bottom:473.853333pt;}
.y188_c01290{bottom:474.626667pt;}
.y18c_c01290{bottom:476.160000pt;}
.y18b_c01290{bottom:477.693333pt;}
.y189_c01290{bottom:479.226667pt;}
.y185_c01290{bottom:480.000000pt;}
.y186_c01290{bottom:480.773333pt;}
.y187_c01290{bottom:482.306667pt;}
.y181_c01290{bottom:483.840000pt;}
.y17f_c01290{bottom:484.613333pt;}
.y183_c01290{bottom:486.906667pt;}
.y17b_c01290{bottom:489.213333pt;}
.y182_c01290{bottom:489.986667pt;}
.y17c_c01290{bottom:490.746667pt;}
.y17d_c01290{bottom:491.520000pt;}
.y17e_c01290{bottom:494.586667pt;}
.y180_c01290{bottom:497.666667pt;}
.y17a_c01290{bottom:499.200000pt;}
.y179_c01290{bottom:499.973333pt;}
.y178_c01290{bottom:500.733333pt;}
.y177_c01290{bottom:502.266667pt;}
.y173_c01290{bottom:504.573333pt;}
.y175_c01290{bottom:505.346667pt;}
.y171_c01290{bottom:506.106667pt;}
.y172_c01290{bottom:506.880000pt;}
.y176_c01290{bottom:507.653333pt;}
.y174_c01290{bottom:508.413333pt;}
.y236_c01290{bottom:516.866667pt;}
.y235_c01290{bottom:518.400000pt;}
.y16f_c01290{bottom:519.933333pt;}
.y16e_c01290{bottom:520.706667pt;}
.y170_c01290{bottom:521.466667pt;}
.y169_c01290{bottom:522.240000pt;}
.y16a_c01290{bottom:523.013333pt;}
.y16b_c01290{bottom:524.546667pt;}
.y16d_c01290{bottom:526.080000pt;}
.y16c_c01290{bottom:527.613333pt;}
.y168_c01290{bottom:535.293333pt;}
.y167_c01290{bottom:536.826667pt;}
.y165_c01290{bottom:537.600000pt;}
.y164_c01290{bottom:538.373333pt;}
.y161_c01290{bottom:539.906667pt;}
.y166_c01290{bottom:542.213333pt;}
.y162_c01290{bottom:543.746667pt;}
.y160_c01290{bottom:544.506667pt;}
.y15f_c01290{bottom:545.280000pt;}
.y163_c01290{bottom:548.346667pt;}
.y15b_c01290{bottom:554.493333pt;}
.y15d_c01290{bottom:555.266667pt;}
.y15c_c01290{bottom:556.800000pt;}
.y15e_c01290{bottom:557.573333pt;}
.y156_c01290{bottom:558.333333pt;}
.y154_c01290{bottom:559.106667pt;}
.y157_c01290{bottom:559.866667pt;}
.y15a_c01290{bottom:560.640000pt;}
.y153_c01290{bottom:562.946667pt;}
.y155_c01290{bottom:563.706667pt;}
.y159_c01290{bottom:565.253333pt;}
.y158_c01290{bottom:570.626667pt;}
.y151_c01290{bottom:571.386667pt;}
.y152_c01290{bottom:572.933333pt;}
.y150_c01290{bottom:574.466667pt;}
.y14c_c01290{bottom:576.773333pt;}
.y14d_c01290{bottom:577.533333pt;}
.y14f_c01290{bottom:579.066667pt;}
.y14e_c01290{bottom:579.840000pt;}
.y14b_c01290{bottom:581.373333pt;}
.y147_c01290{bottom:591.360000pt;}
.y149_c01290{bottom:592.133333pt;}
.y14a_c01290{bottom:592.893333pt;}
.y145_c01290{bottom:594.426667pt;}
.y148_c01290{bottom:595.200000pt;}
.y146_c01290{bottom:595.973333pt;}
.y144_c01290{bottom:599.040000pt;}
.y143_c01290{bottom:599.813333pt;}
.y141_c01290{bottom:605.186667pt;}
.y142_c01290{bottom:605.946667pt;}
.y140_c01290{bottom:608.253333pt;}
.y13b_c01290{bottom:610.560000pt;}
.y13f_c01290{bottom:611.333333pt;}
.y13e_c01290{bottom:612.866667pt;}
.y13d_c01290{bottom:614.400000pt;}
.y13c_c01290{bottom:615.933333pt;}
.y13a_c01290{bottom:617.466667pt;}
.y138_c01290{bottom:625.146667pt;}
.y137_c01290{bottom:625.920000pt;}
.y136_c01290{bottom:626.693333pt;}
.y133_c01290{bottom:627.453333pt;}
.y131_c01290{bottom:628.226667pt;}
.y139_c01290{bottom:628.986667pt;}
.y132_c01290{bottom:629.760000pt;}
.y134_c01290{bottom:632.066667pt;}
.y135_c01290{bottom:633.600000pt;}
.y12f_c01290{bottom:638.213333pt;}
.y130_c01290{bottom:638.973333pt;}
.y12b_c01290{bottom:640.506667pt;}
.y12e_c01290{bottom:641.280000pt;}
.y12a_c01290{bottom:642.053333pt;}
.y127_c01290{bottom:643.586667pt;}
.y129_c01290{bottom:647.426667pt;}
.y12d_c01290{bottom:648.186667pt;}
.y128_c01290{bottom:648.960000pt;}
.y12c_c01290{bottom:649.733333pt;}
.y126_c01290{bottom:652.026667pt;}
.y125_c01290{bottom:652.800000pt;}
.y124_c01290{bottom:654.333333pt;}
.y122_c01290{bottom:659.706667pt;}
.y121_c01290{bottom:661.253333pt;}
.y11f_c01290{bottom:663.546667pt;}
.y11e_c01290{bottom:664.320000pt;}
.y123_c01290{bottom:665.093333pt;}
.y11d_c01290{bottom:665.853333pt;}
.y11c_c01290{bottom:666.626667pt;}
.y120_c01290{bottom:668.160000pt;}
.y11a_c01290{bottom:670.466667pt;}
.y11b_c01290{bottom:677.373333pt;}
.y119_c01290{bottom:678.146667pt;}
.y117_c01290{bottom:680.453333pt;}
.y112_c01290{bottom:685.826667pt;}
.y116_c01290{bottom:689.666667pt;}
.y114_c01290{bottom:691.200000pt;}
.y115_c01290{bottom:691.973333pt;}
.y118_c01290{bottom:693.506667pt;}
.y111_c01290{bottom:696.573333pt;}
.y110_c01290{bottom:698.106667pt;}
.y10f_c01290{bottom:698.880000pt;}
.y113_c01290{bottom:700.413333pt;}
.y10e_c01290{bottom:701.186667pt;}
.y10a_c01290{bottom:701.946667pt;}
.y10d_c01290{bottom:702.720000pt;}
.y10c_c01290{bottom:703.493333pt;}
.y108_c01290{bottom:706.560000pt;}
.y10b_c01290{bottom:708.093333pt;}
.y109_c01290{bottom:709.626667pt;}
.y107_c01290{bottom:712.706667pt;}
.y106_c01290{bottom:715.013333pt;}
.y105_c01290{bottom:718.080000pt;}
.y104_c01290{bottom:718.853333pt;}
.y103_c01290{bottom:719.613333pt;}
.y101_c01290{bottom:722.693333pt;}
.y100_c01290{bottom:726.533333pt;}
.yff_c01290{bottom:728.066667pt;}
.y102_c01290{bottom:728.826667pt;}
.yfc_c01290{bottom:731.906667pt;}
.yfd_c01290{bottom:733.440000pt;}
.yf7_c01290{bottom:736.506667pt;}
.yf9_c01290{bottom:737.280000pt;}
.yf6_c01290{bottom:738.053333pt;}
.yf5_c01290{bottom:738.813333pt;}
.yfb_c01290{bottom:739.586667pt;}
.yf8_c01290{bottom:740.346667pt;}
.yfe_c01290{bottom:741.893333pt;}
.yf4_c01290{bottom:744.186667pt;}
.yfa_c01290{bottom:748.800000pt;}
.yf2_c01290{bottom:751.866667pt;}
.yef_c01290{bottom:754.173333pt;}
.yf3_c01290{bottom:754.946667pt;}
.yee_c01290{bottom:756.480000pt;}
.yf0_c01290{bottom:757.253333pt;}
.yf1_c01290{bottom:758.013333pt;}
.yed_c01290{bottom:758.786667pt;}
.yec_c01290{bottom:765.693333pt;}
.yeb_c01290{bottom:767.226667pt;}
.ye5_c01290{bottom:769.533333pt;}
.ye6_c01290{bottom:770.306667pt;}
.ye8_c01290{bottom:771.066667pt;}
.ye7_c01290{bottom:772.613333pt;}
.ye3_c01290{bottom:774.146667pt;}
.ye9_c01290{bottom:774.906667pt;}
.ye4_c01290{bottom:777.213333pt;}
.yea_c01290{bottom:777.986667pt;}
.ye0_c01290{bottom:788.733333pt;}
.ye2_c01290{bottom:790.266667pt;}
.yde_c01290{bottom:791.813333pt;}
.ydd_c01290{bottom:792.573333pt;}
.ye1_c01290{bottom:793.346667pt;}
.ydf_c01290{bottom:794.106667pt;}
.ydb_c01290{bottom:807.173333pt;}
.yd8_c01290{bottom:808.706667pt;}
.ydc_c01290{bottom:809.466667pt;}
.yda_c01290{bottom:810.240000pt;}
.yd9_c01290{bottom:812.546667pt;}
.yd7_c01290{bottom:813.306667pt;}
.yd5_c01290{bottom:814.080000pt;}
.yd6_c01290{bottom:815.613333pt;}
.yd4_c01290{bottom:817.146667pt;}
.yd3_c01290{bottom:822.533333pt;}
.yd2_c01290{bottom:823.293333pt;}
.yce_c01290{bottom:824.826667pt;}
.yd1_c01290{bottom:827.906667pt;}
.ycf_c01290{bottom:828.666667pt;}
.yd0_c01290{bottom:830.213333pt;}
.ycb_c01290{bottom:840.186667pt;}
.ycc_c01290{bottom:841.733333pt;}
.yc8_c01290{bottom:842.493333pt;}
.ycd_c01290{bottom:844.026667pt;}
.yc5_c01290{bottom:847.106667pt;}
.yc6_c01290{bottom:848.640000pt;}
.yc3_c01290{bottom:850.173333pt;}
.yc9_c01290{bottom:850.946667pt;}
.yc4_c01290{bottom:851.706667pt;}
.yc2_c01290{bottom:854.013333pt;}
.yc7_c01290{bottom:855.546667pt;}
.yca_c01290{bottom:857.853333pt;}
.yc0_c01290{bottom:858.626667pt;}
.ybf_c01290{bottom:861.693333pt;}
.ybe_c01290{bottom:862.466667pt;}
.yba_c01290{bottom:864.000000pt;}
.yb9_c01290{bottom:864.773333pt;}
.ybc_c01290{bottom:867.840000pt;}
.ybb_c01290{bottom:868.613333pt;}
.yb8_c01290{bottom:870.146667pt;}
.yc1_c01290{bottom:873.986667pt;}
.ybd_c01290{bottom:875.520000pt;}
.yb5_c01290{bottom:878.586667pt;}
.yb7_c01290{bottom:880.133333pt;}
.yb4_c01290{bottom:880.893333pt;}
.yb6_c01290{bottom:881.666667pt;}
.yb3_c01290{bottom:882.426667pt;}
.yb0_c01290{bottom:883.200000pt;}
.yad_c01290{bottom:885.506667pt;}
.yb2_c01290{bottom:887.813333pt;}
.yaf_c01290{bottom:888.573333pt;}
.yac_c01290{bottom:889.346667pt;}
.yab_c01290{bottom:890.106667pt;}
.yb1_c01290{bottom:890.880000pt;}
.yae_c01290{bottom:891.653333pt;}
.ya9_c01290{bottom:892.413333pt;}
.yaa_c01290{bottom:893.186667pt;}
.ya7_c01290{bottom:894.720000pt;}
.ya8_c01290{bottom:895.493333pt;}
.ya6_c01290{bottom:896.253333pt;}
.ya2_c01290{bottom:897.026667pt;}
.ya3_c01290{bottom:898.560000pt;}
.ya1_c01290{bottom:899.333333pt;}
.y9f_c01290{bottom:900.093333pt;}
.ya5_c01290{bottom:901.626667pt;}
.ya4_c01290{bottom:902.400000pt;}
.ya0_c01290{bottom:903.933333pt;}
.y9e_c01290{bottom:907.773333pt;}
.y9d_c01290{bottom:908.546667pt;}
.y9c_c01290{bottom:910.080000pt;}
.y9a_c01290{bottom:911.613333pt;}
.y99_c01290{bottom:912.386667pt;}
.y97_c01290{bottom:913.146667pt;}
.y96_c01290{bottom:918.533333pt;}
.y98_c01290{bottom:919.293333pt;}
.y9b_c01290{bottom:920.066667pt;}
.y94_c01290{bottom:932.346667pt;}
.y8e_c01290{bottom:933.120000pt;}
.y92_c01290{bottom:935.426667pt;}
.y90_c01290{bottom:936.960000pt;}
.y95_c01290{bottom:937.733333pt;}
.y91_c01290{bottom:938.493333pt;}
.y8c_c01290{bottom:940.026667pt;}
.y93_c01290{bottom:940.800000pt;}
.y85_c01290{bottom:941.573333pt;}
.y8d_c01290{bottom:943.106667pt;}
.y8f_c01290{bottom:943.866667pt;}
.y87_c01290{bottom:945.413333pt;}
.y89_c01290{bottom:946.173333pt;}
.y8a_c01290{bottom:948.480000pt;}
.y8b_c01290{bottom:949.253333pt;}
.y88_c01290{bottom:950.013333pt;}
.y86_c01290{bottom:950.786667pt;}
.y81_c01290{bottom:953.093333pt;}
.y82_c01290{bottom:956.160000pt;}
.y7f_c01290{bottom:958.466667pt;}
.y83_c01290{bottom:962.306667pt;}
.y80_c01290{bottom:963.066667pt;}
.y84_c01290{bottom:965.373333pt;}
.y7d_c01290{bottom:967.680000pt;}
.y7e_c01290{bottom:969.213333pt;}
.y79_c01290{bottom:970.746667pt;}
.y78_c01290{bottom:971.520000pt;}
.y7c_c01290{bottom:973.826667pt;}
.y7b_c01290{bottom:974.586667pt;}
.y7a_c01290{bottom:975.360000pt;}
.y77_c01290{bottom:983.040000pt;}
.y76_c01290{bottom:985.346667pt;}
.y75_c01290{bottom:988.413333pt;}
.y73_c01290{bottom:989.186667pt;}
.y70_c01290{bottom:990.720000pt;}
.y71_c01290{bottom:991.493333pt;}
.y6f_c01290{bottom:992.253333pt;}
.y74_c01290{bottom:993.026667pt;}
.y72_c01290{bottom:994.560000pt;}
.y6e_c01290{bottom:997.626667pt;}
.y6c_c01290{bottom:1002.240000pt;}
.y6b_c01290{bottom:1003.773333pt;}
.y69_c01290{bottom:1004.546667pt;}
.y67_c01290{bottom:1006.080000pt;}
.y66_c01290{bottom:1007.613333pt;}
.y6d_c01290{bottom:1008.386667pt;}
.y6a_c01290{bottom:1009.146667pt;}
.y68_c01290{bottom:1009.920000pt;}
.y65_c01290{bottom:1011.453333pt;}
.y64_c01290{bottom:1015.293333pt;}
.y61_c01290{bottom:1022.213333pt;}
.y60_c01290{bottom:1022.973333pt;}
.y63_c01290{bottom:1023.746667pt;}
.y62_c01290{bottom:1024.506667pt;}
.y5e_c01290{bottom:1025.280000pt;}
.y5f_c01290{bottom:1027.586667pt;}
.y5d_c01290{bottom:1028.346667pt;}
.y5c_c01290{bottom:1032.186667pt;}
.y59_c01290{bottom:1039.866667pt;}
.y57_c01290{bottom:1040.640000pt;}
.y56_c01290{bottom:1042.173333pt;}
.y55_c01290{bottom:1042.946667pt;}
.y5a_c01290{bottom:1043.706667pt;}
.y58_c01290{bottom:1044.480000pt;}
.y54_c01290{bottom:1046.013333pt;}
.y51_c01290{bottom:1046.786667pt;}
.y50_c01290{bottom:1047.546667pt;}
.y53_c01290{bottom:1049.093333pt;}
.y52_c01290{bottom:1049.853333pt;}
.y5b_c01290{bottom:1053.693333pt;}
.y4f_c01290{bottom:1056.000000pt;}
.y4e_c01290{bottom:1057.533333pt;}
.y4c_c01290{bottom:1058.306667pt;}
.y4d_c01290{bottom:1060.613333pt;}
.y4a_c01290{bottom:1061.373333pt;}
.y4b_c01290{bottom:1062.146667pt;}
.y47_c01290{bottom:1064.453333pt;}
.y49_c01290{bottom:1065.213333pt;}
.y46_c01290{bottom:1065.986667pt;}
.y45_c01290{bottom:1066.746667pt;}
.y48_c01290{bottom:1068.293333pt;}
.y44_c01290{bottom:1076.733333pt;}
.y43_c01290{bottom:1077.506667pt;}
.y42_c01290{bottom:1078.266667pt;}
.y3f_c01290{bottom:1080.573333pt;}
.y40_c01290{bottom:1081.346667pt;}
.y41_c01290{bottom:1085.946667pt;}
.y3b_c01290{bottom:1095.173333pt;}
.y3a_c01290{bottom:1095.933333pt;}
.y39_c01290{bottom:1096.706667pt;}
.y38_c01290{bottom:1099.013333pt;}
.y3e_c01290{bottom:1102.853333pt;}
.y3d_c01290{bottom:1104.386667pt;}
.y3c_c01290{bottom:1107.453333pt;}
.y36_c01290{bottom:1112.066667pt;}
.y37_c01290{bottom:1114.373333pt;}
.y34_c01290{bottom:1115.133333pt;}
.y2f_c01290{bottom:1115.906667pt;}
.y33_c01290{bottom:1116.666667pt;}
.y2d_c01290{bottom:1117.440000pt;}
.y35_c01290{bottom:1118.213333pt;}
.y32_c01290{bottom:1118.973333pt;}
.y31_c01290{bottom:1119.746667pt;}
.y30_c01290{bottom:1120.506667pt;}
.y2e_c01290{bottom:1125.120000pt;}
.y2c_c01290{bottom:1128.960000pt;}
.y2a_c01290{bottom:1132.026667pt;}
.y26_c01290{bottom:1134.333333pt;}
.y2b_c01290{bottom:1135.106667pt;}
.y28_c01290{bottom:1136.640000pt;}
.y29_c01290{bottom:1137.413333pt;}
.y27_c01290{bottom:1138.173333pt;}
.y24_c01290{bottom:1140.480000pt;}
.y25_c01290{bottom:1141.253333pt;}
.y21_c01290{bottom:1148.160000pt;}
.y1f_c01290{bottom:1148.933333pt;}
.y23_c01290{bottom:1149.693333pt;}
.y1a_c01290{bottom:1151.226667pt;}
.y18_c01290{bottom:1152.773333pt;}
.y20_c01290{bottom:1153.533333pt;}
.y1e_c01290{bottom:1154.306667pt;}
.y1c_c01290{bottom:1155.066667pt;}
.y1b_c01290{bottom:1155.840000pt;}
.y19_c01290{bottom:1157.373333pt;}
.y1d_c01290{bottom:1159.680000pt;}
.y22_c01290{bottom:1160.453333pt;}
.y17_c01290{bottom:1164.293333pt;}
.y15_c01290{bottom:1166.586667pt;}
.y14_c01290{bottom:1168.893333pt;}
.y12_c01290{bottom:1169.666667pt;}
.y13_c01290{bottom:1170.426667pt;}
.y11_c01290{bottom:1171.200000pt;}
.y16_c01290{bottom:1171.973333pt;}
.y10_c01290{bottom:1182.720000pt;}
.yf_c01290{bottom:1185.026667pt;}
.yb_c01290{bottom:1187.333333pt;}
.ya_c01290{bottom:1188.093333pt;}
.y9_c01290{bottom:1189.626667pt;}
.ye_c01290{bottom:1190.400000pt;}
.yd_c01290{bottom:1191.173333pt;}
.yc_c01290{bottom:1191.933333pt;}
.y8_c01290{bottom:1192.706667pt;}
.y7_c01290{bottom:1194.240000pt;}
.y6_c01290{bottom:1209.600000pt;}
.y3_c01290{bottom:1214.213333pt;}
.y5_c01290{bottom:1217.280000pt;}
.y4_c01290{bottom:1218.813333pt;}
.y2_c01290{bottom:1235.706667pt;}
.y1_c01290{bottom:1236.480000pt;}
.y234_c01290{bottom:1274.106667pt;}
.y233_c01290{bottom:1287.173333pt;}
.h3_c01290{height:2.764500pt;}
.h1f_c01290{height:4.799479pt;}
.h13_c01290{height:5.519401pt;}
.h6_c01290{height:8.303099pt;}
.h2_c01290{height:11.038802pt;}
.hc_c01290{height:13.822500pt;}
.h1d_c01290{height:16.606198pt;}
.h1c_c01290{height:19.341901pt;}
.h20_c01290{height:22.125599pt;}
.h17_c01290{height:24.861302pt;}
.h5_c01290{height:27.645000pt;}
.h16_c01290{height:30.428698pt;}
.h1b_c01290{height:33.164401pt;}
.h11_c01290{height:35.948099pt;}
.h19_c01290{height:38.683802pt;}
.hf_c01290{height:41.467500pt;}
.hb_c01290{height:44.251198pt;}
.h15_c01290{height:46.986901pt;}
.h23_c01290{height:47.344531pt;}
.h10_c01290{height:49.770599pt;}
.h4_c01290{height:52.506302pt;}
.h1e_c01290{height:55.290000pt;}
.h24_c01290{height:57.441432pt;}
.ha_c01290{height:58.073698pt;}
.h7_c01290{height:60.809401pt;}
.h18_c01290{height:63.593099pt;}
.hd_c01290{height:66.328802pt;}
.h14_c01290{height:69.112500pt;}
.h8_c01290{height:71.896198pt;}
.h21_c01290{height:74.631901pt;}
.he_c01290{height:77.415599pt;}
.h1a_c01290{height:80.151302pt;}
.h9_c01290{height:82.935000pt;}
.h22_c01290{height:85.718698pt;}
.h12_c01290{height:88.454401pt;}
.h1_c01290{height:1350.000000pt;}
.h0_c01290{height:1350.146667pt;}
.w0_c01290{width:964.613333pt;}
.w1_c01290{width:964.666667pt;}
.x0_c01290{left:0.000000pt;}
.xca_c01290{left:112.133333pt;}
.xd2_c01290{left:119.813333pt;}
.xd6_c01290{left:124.413333pt;}
.xcb_c01290{left:130.560000pt;}
.xd3_c01290{left:136.706667pt;}
.xcc_c01290{left:148.226667pt;}
.xd4_c01290{left:153.600000pt;}
.x36_c01290{left:157.440000pt;}
.xcd_c01290{left:165.120000pt;}
.x8b_c01290{left:168.186667pt;}
.x115_c01290{left:173.573333pt;}
.x107_c01290{left:175.866667pt;}
.x37_c01290{left:178.173333pt;}
.x4f_c01290{left:180.480000pt;}
.x50_c01290{left:184.320000pt;}
.x5a_c01290{left:185.853333pt;}
.xb2_c01290{left:187.386667pt;}
.x16_c01290{left:188.933333pt;}
.x38_c01290{left:191.226667pt;}
.xda_c01290{left:192.773333pt;}
.x5b_c01290{left:194.306667pt;}
.xb7_c01290{left:196.613333pt;}
.x51_c01290{left:198.906667pt;}
.xd5_c01290{left:200.454101pt;}
.x65_c01290{left:202.746667pt;}
.x2a_c01290{left:204.293333pt;}
.x7f_c01290{left:206.586667pt;}
.x3_c01290{left:208.133333pt;}
.x6c_c01290{left:210.426667pt;}
.x8c_c01290{left:212.733333pt;}
.xa0_c01290{left:215.813333pt;}
.x11d_c01290{left:217.346667pt;}
.x7a_c01290{left:218.880000pt;}
.x66_c01290{left:227.333333pt;}
.x7b_c01290{left:228.866667pt;}
.x8d_c01290{left:231.173333pt;}
.x2b_c01290{left:232.706667pt;}
.x80_c01290{left:235.013333pt;}
.xff_c01290{left:240.386667pt;}
.x73_c01290{left:241.920000pt;}
.x81_c01290{left:244.226667pt;}
.xea_c01290{left:245.760000pt;}
.x8e_c01290{left:247.293333pt;}
.x46_c01290{left:248.826667pt;}
.x2c_c01290{left:250.373333pt;}
.x83_c01290{left:251.906667pt;}
.x4_c01290{left:254.213333pt;}
.xe2_c01290{left:256.506667pt;}
.xa1_c01290{left:258.053333pt;}
.x119_c01290{left:260.346667pt;}
.xa_c01290{left:261.893333pt;}
.xf2_c01290{left:264.960000pt;}
.xa2_c01290{left:267.266667pt;}
.xb_c01290{left:269.573333pt;}
.x84_c01290{left:272.640000pt;}
.x116_c01290{left:274.946667pt;}
.x52_c01290{left:276.480000pt;}
.x39_c01290{left:278.013333pt;}
.x17_c01290{left:281.853333pt;}
.xb3_c01290{left:283.386667pt;}
.x110_c01290{left:284.933333pt;}
.x5c_c01290{left:287.226667pt;}
.xe3_c01290{left:290.306667pt;}
.x5_c01290{left:292.613333pt;}
.x47_c01290{left:294.906667pt;}
.xad_c01290{left:296.453333pt;}
.xd7_c01290{left:297.986667pt;}
.xce_c01290{left:299.520000pt;}
.x74_c01290{left:303.360000pt;}
.xc0_c01290{left:306.426667pt;}
.x10d_c01290{left:309.506667pt;}
.xc_c01290{left:312.573333pt;}
.xaf_c01290{left:314.106667pt;}
.xdb_c01290{left:315.653333pt;}
.x100_c01290{left:317.186667pt;}
.xa3_c01290{left:321.786667pt;}
.x53_c01290{left:324.093333pt;}
.x8f_c01290{left:325.626667pt;}
.x113_c01290{left:327.173333pt;}
.xfb_c01290{left:328.706667pt;}
.xbd_c01290{left:330.240000pt;}
.x109_c01290{left:332.546667pt;}
.x6_c01290{left:334.080000pt;}
.x95_c01290{left:337.146667pt;}
.x5d_c01290{left:340.226667pt;}
.x6d_c01290{left:341.760000pt;}
.xeb_c01290{left:344.066667pt;}
.xf1_c01290{left:347.133333pt;}
.x18_c01290{left:349.440000pt;}
.xd_c01290{left:350.973333pt;}
.x2d_c01290{left:354.053333pt;}
.x96_c01290{left:356.346667pt;}
.x1f_c01290{left:357.893333pt;}
.x5e_c01290{left:359.426667pt;}
.x117_c01290{left:360.960000pt;}
.x85_c01290{left:362.493333pt;}
.x20_c01290{left:364.026667pt;}
.x111_c01290{left:365.573333pt;}
.xb8_c01290{left:367.106667pt;}
.x3a_c01290{left:368.640000pt;}
.x9a_c01290{left:370.946667pt;}
.xee_c01290{left:372.480000pt;}
.x54_c01290{left:374.013333pt;}
.x75_c01290{left:376.320000pt;}
.x19_c01290{left:378.626667pt;}
.x90_c01290{left:382.466667pt;}
.xa4_c01290{left:384.773333pt;}
.xe8_c01290{left:386.306667pt;}
.x11b_c01290{left:387.840000pt;}
.x67_c01290{left:389.373333pt;}
.x42_c01290{left:391.680000pt;}
.xf3_c01290{left:393.986667pt;}
.xc8_c01290{left:397.826667pt;}
.x2e_c01290{left:401.666667pt;}
.x7_c01290{left:404.733333pt;}
.xec_c01290{left:407.040000pt;}
.x9b_c01290{left:409.346667pt;}
.x5f_c01290{left:410.880000pt;}
.xe_c01290{left:413.946667pt;}
.x86_c01290{left:417.786667pt;}
.x2f_c01290{left:419.333333pt;}
.xf6_c01290{left:421.626667pt;}
.xb6_c01290{left:423.173333pt;}
.x10a_c01290{left:424.706667pt;}
.xcf_c01290{left:426.240000pt;}
.x21_c01290{left:428.546667pt;}
.xf_c01290{left:430.080000pt;}
.x76_c01290{left:434.693333pt;}
.x3b_c01290{left:436.986667pt;}
.xb4_c01290{left:441.600000pt;}
.x3c_c01290{left:444.666667pt;}
.x10b_c01290{left:446.213333pt;}
.x87_c01290{left:447.746667pt;}
.xa5_c01290{left:449.280000pt;}
.x1_c01290{left:451.586667pt;}
.x9c_c01290{left:453.120000pt;}
.x11e_c01290{left:454.653333pt;}
.x97_c01290{left:456.186667pt;}
.xaa_c01290{left:458.493333pt;}
.xfc_c01290{left:460.026667pt;}
.x55_c01290{left:462.333333pt;}
.xab_c01290{left:464.640000pt;}
.xb0_c01290{left:466.173333pt;}
.xa6_c01290{left:471.546667pt;}
.x6e_c01290{left:476.933333pt;}
.x22_c01290{left:478.466667pt;}
.x10_c01290{left:481.533333pt;}
.xae_c01290{left:483.840000pt;}
.x43_c01290{left:486.146667pt;}
.x8_c01290{left:488.453333pt;}
.x104_c01290{left:489.986667pt;}
.xdd_c01290{left:491.520000pt;}
.x1a_c01290{left:493.826667pt;}
.x10f_c01290{left:495.360000pt;}
.xc1_c01290{left:496.893333pt;}
.x30_c01290{left:498.426667pt;}
.xdc_c01290{left:500.733333pt;}
.xc9_c01290{left:502.266667pt;}
.x68_c01290{left:503.813333pt;}
.x11_c01290{left:506.106667pt;}
.x10c_c01290{left:509.946667pt;}
.xb9_c01290{left:511.493333pt;}
.xe4_c01290{left:514.560000pt;}
.x48_c01290{left:516.093333pt;}
.xba_c01290{left:517.626667pt;}
.x2_c01290{left:519.933333pt;}
.x88_c01290{left:523.013333pt;}
.xed_c01290{left:526.853333pt;}
.xf7_c01290{left:528.386667pt;}
.xd8_c01290{left:529.920000pt;}
.x91_c01290{left:532.986667pt;}
.x102_c01290{left:534.533333pt;}
.x31_c01290{left:536.826667pt;}
.xa7_c01290{left:539.133333pt;}
.xf8_c01290{left:540.666667pt;}
.x10e_c01290{left:542.213333pt;}
.x23_c01290{left:545.280000pt;}
.x7c_c01290{left:546.813333pt;}
.xd9_c01290{left:548.346667pt;}
.x3d_c01290{left:551.426667pt;}
.xde_c01290{left:553.733333pt;}
.xf9_c01290{left:556.800000pt;}
.xa8_c01290{left:558.333333pt;}
.x1b_c01290{left:560.640000pt;}
.x105_c01290{left:562.946667pt;}
.x77_c01290{left:564.480000pt;}
.xf4_c01290{left:566.786667pt;}
.x9d_c01290{left:568.320000pt;}
.x3e_c01290{left:569.853333pt;}
.x24_c01290{left:572.160000pt;}
.x56_c01290{left:574.466667pt;}
.x12_c01290{left:576.000000pt;}
.x98_c01290{left:577.533333pt;}
.xbb_c01290{left:581.373333pt;}
.x49_c01290{left:583.680000pt;}
.x60_c01290{left:586.746667pt;}
.x57_c01290{left:589.826667pt;}
.xef_c01290{left:591.360000pt;}
.x69_c01290{left:594.426667pt;}
.xb1_c01290{left:596.733333pt;}
.xc2_c01290{left:598.266667pt;}
.x9_c01290{left:599.813333pt;}
.xe6_c01290{left:601.346667pt;}
.x32_c01290{left:602.880000pt;}
.x112_c01290{left:604.413333pt;}
.xb5_c01290{left:605.946667pt;}
.x7d_c01290{left:607.493333pt;}
.x3f_c01290{left:609.786667pt;}
.x114_c01290{left:612.093333pt;}
.xf0_c01290{left:615.173333pt;}
.x4a_c01290{left:617.466667pt;}
.x9e_c01290{left:620.546667pt;}
.x92_c01290{left:622.853333pt;}
.x101_c01290{left:625.146667pt;}
.x78_c01290{left:626.693333pt;}
.x33_c01290{left:628.226667pt;}
.x6f_c01290{left:629.760000pt;}
.x58_c01290{left:631.293333pt;}
.x25_c01290{left:632.826667pt;}
.x93_c01290{left:635.133333pt;}
.x99_c01290{left:637.440000pt;}
.x61_c01290{left:638.973333pt;}
.x11f_c01290{left:640.506667pt;}
.x1c_c01290{left:642.053333pt;}
.xe9_c01290{left:643.586667pt;}
.xf5_c01290{left:645.120000pt;}
.xd0_c01290{left:649.733333pt;}
.x103_c01290{left:651.266667pt;}
.x6a_c01290{left:655.106667pt;}
.x79_c01290{left:656.640000pt;}
.x26_c01290{left:658.946667pt;}
.xac_c01290{left:660.480000pt;}
.xc3_c01290{left:662.013333pt;}
.x9f_c01290{left:665.093333pt;}
.x1d_c01290{left:666.626667pt;}
.x44_c01290{left:668.160000pt;}
.x4b_c01290{left:669.693333pt;}
.xdf_c01290{left:672.773333pt;}
.xa9_c01290{left:674.306667pt;}
.x13_c01290{left:676.613333pt;}
.x40_c01290{left:679.680000pt;}
.x94_c01290{left:681.213333pt;}
.x34_c01290{left:682.746667pt;}
.xbc_c01290{left:684.293333pt;}
.x82_c01290{left:685.826667pt;}
.xc4_c01290{left:687.360000pt;}
.x120_c01290{left:688.893333pt;}
.x11a_c01290{left:693.506667pt;}
.x89_c01290{left:696.573333pt;}
.xfd_c01290{left:698.880000pt;}
.x70_c01290{left:700.413333pt;}
.xbe_c01290{left:702.720000pt;}
.x62_c01290{left:705.026667pt;}
.x4c_c01290{left:709.626667pt;}
.x1e_c01290{left:711.173333pt;}
.x35_c01290{left:713.466667pt;}
.x71_c01290{left:716.546667pt;}
.x27_c01290{left:718.080000pt;}
.xe0_c01290{left:724.226667pt;}
.x108_c01290{left:725.760000pt;}
.xfa_c01290{left:728.066667pt;}
.x8a_c01290{left:729.600000pt;}
.x41_c01290{left:731.906667pt;}
.xe7_c01290{left:733.440000pt;}
.x59_c01290{left:734.973333pt;}
.x4d_c01290{left:738.813333pt;}
.x6b_c01290{left:742.653333pt;}
.x72_c01290{left:745.733333pt;}
.xc5_c01290{left:747.266667pt;}
.x28_c01290{left:748.800000pt;}
.x118_c01290{left:750.333333pt;}
.x29_c01290{left:752.640000pt;}
.xd1_c01290{left:754.173333pt;}
.x45_c01290{left:757.253333pt;}
.x11c_c01290{left:759.546667pt;}
.x7e_c01290{left:761.093333pt;}
.xe1_c01290{left:764.160000pt;}
.xe5_c01290{left:767.226667pt;}
.xbf_c01290{left:768.773333pt;}
.x14_c01290{left:770.306667pt;}
.x63_c01290{left:773.373333pt;}
.xfe_c01290{left:774.906667pt;}
.x15_c01290{left:777.213333pt;}
.x64_c01290{left:783.360000pt;}
.x4e_c01290{left:787.200000pt;}
.x106_c01290{left:792.573333pt;}
.xc6_c01290{left:802.560000pt;}
.xc7_c01290{left:807.933333pt;}
.x122_c01290{left:817.146667pt;}
.x123_c01290{left:827.133333pt;}
.x121_c01290{left:930.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dcb70897cb93de1964694a08.woff2')format("woff");}.ff1_c01291{font-family:ff1_c01291;line-height:1.109863;font-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_c01291{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mcc_c01291{transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);}
.m13e_c01291{transform:matrix(0.055675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055675,0.000000,0.000000,0.250000,0,0);}
.m19d_c01291{transform:matrix(0.057575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057575,0.000000,0.000000,0.250000,0,0);}
.m84_c01291{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m51_c01291{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m1ea_c01291{transform:matrix(0.071775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071775,0.000000,0.000000,0.250000,0,0);}
.m1fa_c01291{transform:matrix(0.072400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072400,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01291{transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);}
.m16d_c01291{transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080325,0.000000,0.000000,0.250000,0,0);}
.m89_c01291{transform:matrix(0.081025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081025,0.000000,0.000000,0.250000,0,0);}
.m12b_c01291{transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081750,0.000000,0.000000,0.250000,0,0);}
.mb_c01291{transform:matrix(0.081825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081825,0.000000,0.000000,0.250000,0,0);}
.ma_c01291{transform:matrix(0.083600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083600,0.000000,0.000000,0.250000,0,0);}
.m75_c01291{transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087250,0.000000,0.000000,0.250000,0,0);}
.m13b_c01291{transform:matrix(0.093000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093000,0.000000,0.000000,0.250000,0,0);}
.m17_c01291{transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093250,0.000000,0.000000,0.250000,0,0);}
.m17c_c01291{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01291{transform:matrix(0.096275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096275,0.000000,0.000000,0.250000,0,0);}
.m52_c01291{transform:matrix(0.097300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097300,0.000000,0.000000,0.250000,0,0);}
.m5e_c01291{transform:matrix(0.099575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099575,0.000000,0.000000,0.250000,0,0);}
.m6e_c01291{transform:matrix(0.101000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01291{transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);}
.ma0_c01291{transform:matrix(0.102200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102200,0.000000,0.000000,0.250000,0,0);}
.me8_c01291{transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);}
.m74_c01291{transform:matrix(0.102650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102650,0.000000,0.000000,0.250000,0,0);}
.m77_c01291{transform:matrix(0.103525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103525,0.000000,0.000000,0.250000,0,0);}
.m57_c01291{transform:matrix(0.104200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104200,0.000000,0.000000,0.250000,0,0);}
.m50_c01291{transform:matrix(0.104250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104250,0.000000,0.000000,0.250000,0,0);}
.m4a_c01291{transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);}
.m5c_c01291{transform:matrix(0.105950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105950,0.000000,0.000000,0.250000,0,0);}
.m8b_c01291{transform:matrix(0.106325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106325,0.000000,0.000000,0.250000,0,0);}
.m91_c01291{transform:matrix(0.107125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107125,0.000000,0.000000,0.250000,0,0);}
.m72_c01291{transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);}
.m90_c01291{transform:matrix(0.107350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107350,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01291{transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);}
.m66_c01291{transform:matrix(0.108450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108450,0.000000,0.000000,0.250000,0,0);}
.m85_c01291{transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109075,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01291{transform:matrix(0.110425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110425,0.000000,0.000000,0.250000,0,0);}
.m15e_c01291{transform:matrix(0.110700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110700,0.000000,0.000000,0.250000,0,0);}
.m73_c01291{transform:matrix(0.111175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111175,0.000000,0.000000,0.250000,0,0);}
.m86_c01291{transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);}
.m69_c01291{transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01291{transform:matrix(0.115250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115250,0.000000,0.000000,0.250000,0,0);}
.m202_c01291{transform:matrix(0.115600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115600,0.000000,0.000000,0.250000,0,0);}
.me6_c01291{transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);}
.m1c_c01291{transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);}
.mc6_c01291{transform:matrix(0.117100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117100,0.000000,0.000000,0.250000,0,0);}
.m1a_c01291{transform:matrix(0.117550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117550,0.000000,0.000000,0.250000,0,0);}
.m1f2_c01291{transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);}
.m5d_c01291{transform:matrix(0.119000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119000,0.000000,0.000000,0.250000,0,0);}
.m8a_c01291{transform:matrix(0.119375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119375,0.000000,0.000000,0.250000,0,0);}
.m1f_c01291{transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);}
.mc5_c01291{transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);}
.m18_c01291{transform:matrix(0.120300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120300,0.000000,0.000000,0.250000,0,0);}
.m49_c01291{transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);}
.mc0_c01291{transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);}
.m8f_c01291{transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);}
.mad_c01291{transform:matrix(0.121800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121800,0.000000,0.000000,0.250000,0,0);}
.m76_c01291{transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);}
.m183_c01291{transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);}
.mcd_c01291{transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);}
.m9c_c01291{transform:matrix(0.123350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123350,0.000000,0.000000,0.250000,0,0);}
.mdf_c01291{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m208_c01291{transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123800,0.000000,0.000000,0.250000,0,0);}
.m60_c01291{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m1f6_c01291{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m55_c01291{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);}
.m1ed_c01291{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m20d_c01291{transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);}
.m70_c01291{transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);}
.m152_c01291{transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);}
.m68_c01291{transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);}
.m4f_c01291{transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127900,0.000000,0.000000,0.250000,0,0);}
.mf3_c01291{transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128125,0.000000,0.000000,0.250000,0,0);}
.m151_c01291{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01291{transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);}
.m141_c01291{transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);}
.mc4_c01291{transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);}
.m210_c01291{transform:matrix(0.131400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131400,0.000000,0.000000,0.250000,0,0);}
.md0_c01291{transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131500,0.000000,0.000000,0.250000,0,0);}
.m19f_c01291{transform:matrix(0.131800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131800,0.000000,0.000000,0.250000,0,0);}
.m71_c01291{transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132000,0.000000,0.000000,0.250000,0,0);}
.m10_c01291{transform:matrix(0.132725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132725,0.000000,0.000000,0.250000,0,0);}
.mb8_c01291{transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);}
.m6d_c01291{transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);}
.m100_c01291{transform:matrix(0.134100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134100,0.000000,0.000000,0.250000,0,0);}
.m27_c01291{transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134350,0.000000,0.000000,0.250000,0,0);}
.m101_c01291{transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);}
.m9d_c01291{transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);}
.m1fd_c01291{transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);}
.m128_c01291{transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);}
.m13d_c01291{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01291{transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);}
.mde_c01291{transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137625,0.000000,0.000000,0.250000,0,0);}
.ma7_c01291{transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);}
.md4_c01291{transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138650,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01291{transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);}
.m223_c01291{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.md1_c01291{transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);}
.mff_c01291{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01291{transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);}
.m105_c01291{transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);}
.m11b_c01291{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m13f_c01291{transform:matrix(0.140800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140800,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01291{transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);}
.m156_c01291{transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);}
.me_c01291{transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);}
.m1e6_c01291{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);}
.m201_c01291{transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01291{transform:matrix(0.142775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142775,0.000000,0.000000,0.250000,0,0);}
.m10d_c01291{transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01291{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01291{transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);}
.m145_c01291{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m3_c01291{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01291{transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);}
.m19_c01291{transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);}
.mc2_c01291{transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01291{transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);}
.m20f_c01291{transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);}
.m174_c01291{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01291{transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);}
.m175_c01291{transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);}
.m46_c01291{transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);}
.m1da_c01291{transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);}
.ma1_c01291{transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);}
.m198_c01291{transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);}
.m10c_c01291{transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);}
.m21a_c01291{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m148_c01291{transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01291{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);}
.m1ff_c01291{transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);}
.m217_c01291{transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);}
.m9e_c01291{transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);}
.m26_c01291{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);}
.m1e1_c01291{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m14a_c01291{transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);}
.ma4_c01291{transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);}
.m190_c01291{transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);}
.m54_c01291{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.mae_c01291{transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01291{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);}
.mb0_c01291{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.mf_c01291{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.mdd_c01291{transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);}
.m5a_c01291{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);}
.m1f5_c01291{transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);}
.m12_c01291{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.mf7_c01291{transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);}
.m9b_c01291{transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01291{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m6c_c01291{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m1f8_c01291{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);}
.m14f_c01291{transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155425,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01291{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.m7b_c01291{transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);}
.m11d_c01291{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.m13c_c01291{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.m126_c01291{transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01291{transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);}
.ma5_c01291{transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01291{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);}
.mb6_c01291{transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);}
.mda_c01291{transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);}
.m166_c01291{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);}
.m109_c01291{transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);}
.m87_c01291{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m10e_c01291{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);}
.m1ef_c01291{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m189_c01291{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);}
.m9a_c01291{transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);}
.m1d_c01291{transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);}
.m143_c01291{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m14e_c01291{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);}
.mfd_c01291{transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);}
.m14d_c01291{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);}
.mf1_c01291{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m11_c01291{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m214_c01291{transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);}
.m20e_c01291{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.md3_c01291{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.m56_c01291{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.m191_c01291{transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);}
.m194_c01291{transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);}
.m137_c01291{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.m147_c01291{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.m199_c01291{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m150_c01291{transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);}
.md6_c01291{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01291{transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);}
.m5f_c01291{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.ma3_c01291{transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165850,0.000000,0.000000,0.250000,0,0);}
.m164_c01291{transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);}
.m107_c01291{transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);}
.m120_c01291{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.meb_c01291{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01291{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);}
.mc3_c01291{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.m5b_c01291{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01291{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);}
.m8d_c01291{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);}
.m1b0_c01291{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);}
.m1ac_c01291{transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167375,0.000000,0.000000,0.250000,0,0);}
.m28_c01291{transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);}
.m139_c01291{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m125_c01291{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01291{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m78_c01291{transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);}
.m16_c01291{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);}
.m200_c01291{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m18a_c01291{transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);}
.m205_c01291{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.me1_c01291{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);}
.m168_c01291{transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01291{transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);}
.mf2_c01291{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);}
.ma6_c01291{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.m192_c01291{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.mf9_c01291{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m21c_c01291{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.mf6_c01291{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01291{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.m149_c01291{transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01291{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m1f9_c01291{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m122_c01291{transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);}
.md_c01291{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m4b_c01291{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);}
.m53_c01291{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);}
.m103_c01291{transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);}
.m15_c01291{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);}
.m1ca_c01291{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.m118_c01291{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m20c_c01291{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.mbd_c01291{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m112_c01291{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01291{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);}
.m170_c01291{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.m197_c01291{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m16b_c01291{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.mfe_c01291{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.me2_c01291{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.m212_c01291{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.m167_c01291{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.m184_c01291{transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);}
.m140_c01291{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m155_c01291{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m173_c01291{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);}
.m219_c01291{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);}
.m1e8_c01291{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.mef_c01291{transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01291{transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);}
.m124_c01291{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m113_c01291{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.mdc_c01291{transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);}
.m92_c01291{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);}
.m58_c01291{transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);}
.m16a_c01291{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.mca_c01291{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.m93_c01291{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.m157_c01291{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);}
.m10a_c01291{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);}
.m216_c01291{transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);}
.m1df_c01291{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01291{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01291{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m94_c01291{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.mfa_c01291{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);}
.m1b7_c01291{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);}
.mc9_c01291{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);}
.m11f_c01291{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m95_c01291{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.mc1_c01291{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.maa_c01291{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);}
.m134_c01291{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.md8_c01291{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);}
.m1f7_c01291{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);}
.m1e2_c01291{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m106_c01291{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);}
.m1d7_c01291{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);}
.m20a_c01291{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);}
.maf_c01291{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);}
.m21f_c01291{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m88_c01291{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.mf5_c01291{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m17b_c01291{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.mb5_c01291{transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);}
.md9_c01291{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m2e_c01291{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);}
.m1bf_c01291{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01291{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.m153_c01291{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.mec_c01291{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);}
.m1b5_c01291{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.m10f_c01291{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);}
.m1fc_c01291{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01291{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.mab_c01291{transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01291{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01291{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.mb9_c01291{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.mbb_c01291{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m187_c01291{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m7c_c01291{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m172_c01291{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);}
.m19c_c01291{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);}
.m80_c01291{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m13a_c01291{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);}
.mbc_c01291{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);}
.m1a3_c01291{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01291{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);}
.m213_c01291{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.m8_c01291{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);}
.m1ee_c01291{transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);}
.m115_c01291{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.m15a_c01291{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m15d_c01291{transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);}
.m1fe_c01291{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);}
.m19b_c01291{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.m8e_c01291{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01291{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.m215_c01291{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.mc8_c01291{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.mce_c01291{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m6a_c01291{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.mbf_c01291{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);}
.m18f_c01291{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.m62_c01291{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);}
.m2d_c01291{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m20b_c01291{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m16f_c01291{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);}
.m18d_c01291{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4d_c01291{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m18b_c01291{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);}
.m188_c01291{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01291{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01291{transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);}
.m12a_c01291{transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);}
.med_c01291{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);}
.m40_c01291{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);}
.m119_c01291{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m123_c01291{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.mb4_c01291{transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);}
.me7_c01291{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);}
.m1eb_c01291{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);}
.m169_c01291{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);}
.m1e5_c01291{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);}
.me0_c01291{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01291{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);}
.m178_c01291{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);}
.m1d2_c01291{transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);}
.m146_c01291{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);}
.mfb_c01291{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);}
.m23_c01291{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.ma8_c01291{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.m159_c01291{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);}
.m1fb_c01291{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.mbe_c01291{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01291{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.m222_c01291{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);}
.m162_c01291{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);}
.m196_c01291{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);}
.m1e7_c01291{transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);}
.m193_c01291{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);}
.m206_c01291{transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223775,0.000000,0.000000,0.250000,0,0);}
.m218_c01291{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);}
.m130_c01291{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m7a_c01291{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m18c_c01291{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);}
.m9_c01291{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);}
.m14_c01291{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.m19e_c01291{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.me5_c01291{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);}
.m1cc_c01291{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);}
.m1f1_c01291{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.m114_c01291{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m16e_c01291{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.md5_c01291{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);}
.m1ce_c01291{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);}
.m1d8_c01291{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);}
.m11e_c01291{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);}
.m195_c01291{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.m1af_c01291{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);}
.m179_c01291{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);}
.m158_c01291{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);}
.m17a_c01291{transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);}
.m10b_c01291{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);}
.m1a9_c01291{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m1b_c01291{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);}
.m144_c01291{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);}
.ma9_c01291{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);}
.m204_c01291{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);}
.m176_c01291{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m160_c01291{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01291{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);}
.m185_c01291{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);}
.mb3_c01291{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);}
.md2_c01291{transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01291{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.mb2_c01291{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);}
.md7_c01291{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m221_c01291{transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);}
.m67_c01291{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.mdb_c01291{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);}
.m12f_c01291{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);}
.m21b_c01291{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);}
.m1c2_c01291{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);}
.m15f_c01291{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.m1db_c01291{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.m15b_c01291{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);}
.m211_c01291{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);}
.m1f0_c01291{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m1e_c01291{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m81_c01291{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);}
.m21_c01291{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);}
.m171_c01291{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m161_c01291{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);}
.m32_c01291{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m135_c01291{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);}
.m1b9_c01291{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);}
.m1d0_c01291{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m14b_c01291{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m127_c01291{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);}
.m136_c01291{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m203_c01291{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);}
.m18e_c01291{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);}
.m22_c01291{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);}
.m3c_c01291{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);}
.mea_c01291{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m47_c01291{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me4_c01291{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m129_c01291{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);}
.m33_c01291{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf0_c01291{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);}
.m2c_c01291{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);}
.mc7_c01291{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m20_c01291{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);}
.m1_c01291{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m82_c01291{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m29_c01291{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);}
.m1bd_c01291{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m102_c01291{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);}
.m2_c01291{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);}
.mfc_c01291{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m97_c01291{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01291{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);}
.m65_c01291{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m37_c01291{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c01291{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);}
.m2b_c01291{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m108_c01291{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m42_c01291{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mba_c01291{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m36_c01291{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m138_c01291{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mac_c01291{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m104_c01291{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m12e_c01291{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);}
.m34_c01291{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7e_c01291{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m99_c01291{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m177_c01291{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);}
.mb1_c01291{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m59_c01291{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m41_c01291{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);}
.m2f_c01291{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mb7_c01291{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m79_c01291{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7_c01291{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);}
.m15c_c01291{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m131_c01291{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01291{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01291{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);}
.m1c3_c01291{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m163_c01291{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1be_c01291{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01291{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m11c_c01291{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);}
.m154_c01291{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);}
.m7d_c01291{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf4_c01291{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01291{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);}
.m220_c01291{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m61_c01291{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m39_c01291{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m19a_c01291{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m48_c01291{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);}
.m4_c01291{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m207_c01291{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1de_c01291{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m63_c01291{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m64_c01291{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01291{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01291{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mcb_c01291{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m14c_c01291{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01291{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);}
.m31_c01291{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);}
.m17d_c01291{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m186_c01291{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m96_c01291{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m98_c01291{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m43_c01291{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m110_c01291{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mcf_c01291{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);}
.ma2_c01291{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m35_c01291{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m16c_c01291{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m116_c01291{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m17e_c01291{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m5_c01291{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m44_c01291{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m12c_c01291{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01291{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01291{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m24_c01291{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m117_c01291{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m21d_c01291{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m121_c01291{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01291{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m209_c01291{transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.707500,0.000000,0.000000,0.250000,0,0);}
.m1f4_c01291{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m13_c01291{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.me3_c01291{transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.730000,0.000000,0.000000,0.250000,0,0);}
.m165_c01291{transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);}
.m182_c01291{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m11a_c01291{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.mee_c01291{transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);}
.m21e_c01291{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m1f3_c01291{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m133_c01291{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01291{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m181_c01291{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.m142_c01291{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01291{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.me9_c01291{transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);}
.m38_c01291{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);}
.m25_c01291{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m180_c01291{transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);}
.m83_c01291{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m12d_c01291{transform:matrix(1.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.482500,0.000000,0.000000,0.250000,0,0);}
.m45_c01291{transform:matrix(1.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.650000,0.000000,0.000000,0.250000,0,0);}
.m30_c01291{transform:matrix(1.945000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.945000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.945000,0.000000,0.000000,0.250000,0,0);}
.m111_c01291{transform:matrix(1.965000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.965000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.965000,0.000000,0.000000,0.250000,0,0);}
.m132_c01291{transform:matrix(2.765000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.765000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.765000,0.000000,0.000000,0.250000,0,0);}
.m17f_c01291{transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);}
.m6_c01291{transform:matrix(6.182500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.182500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.182500,0.000000,0.000000,0.250000,0,0);}
.v0_c01291{vertical-align:0.000000px;}
.v1_c01291{vertical-align:10.380000px;}
.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;}
}
.ws1_c01291{word-spacing:0.000000px;}
.ws0_c01291{word-spacing:1.085400px;}
.fc0_c01291{color:transparent;}
.fs3_c01291{font-size:3.456000px;}
.fs1a_c01291{font-size:6.000000px;}
.fs0_c01291{font-size:6.900000px;}
.fs17_c01291{font-size:10.380000px;}
.fs12_c01291{font-size:13.800000px;}
.fs1_c01291{font-size:17.280000px;}
.fse_c01291{font-size:20.760000px;}
.fs1b_c01291{font-size:24.180000px;}
.fsf_c01291{font-size:27.660000px;}
.fs1f_c01291{font-size:31.080000px;}
.fs2_c01291{font-size:34.560000px;}
.fs19_c01291{font-size:38.040000px;}
.fs21_c01291{font-size:41.460000px;}
.fs11_c01291{font-size:44.940000px;}
.fs18_c01291{font-size:48.360000px;}
.fs15_c01291{font-size:51.840000px;}
.fs16_c01291{font-size:55.320000px;}
.fs14_c01291{font-size:58.740000px;}
.fs10_c01291{font-size:62.220000px;}
.fs8_c01291{font-size:65.640000px;}
.fs5_c01291{font-size:69.120000px;}
.fsc_c01291{font-size:72.600000px;}
.fs1c_c01291{font-size:76.020000px;}
.fs13_c01291{font-size:79.500000px;}
.fs4_c01291{font-size:82.920000px;}
.fs7_c01291{font-size:86.400000px;}
.fs9_c01291{font-size:89.880000px;}
.fsb_c01291{font-size:93.300000px;}
.fs6_c01291{font-size:96.780000px;}
.fsd_c01291{font-size:100.200000px;}
.fsa_c01291{font-size:103.680000px;}
.fs1d_c01291{font-size:107.160000px;}
.fs23_c01291{font-size:110.580000px;}
.fs20_c01291{font-size:117.480000px;}
.fs1e_c01291{font-size:124.440000px;}
.fs22_c01291{font-size:141.720000px;}
.y0_c01291{bottom:0.000000px;}
.y224_c01291{bottom:168.480000px;}
.y228_c01291{bottom:171.075000px;}
.y226_c01291{bottom:173.670000px;}
.y225_c01291{bottom:174.525000px;}
.y21a_c01291{bottom:175.395000px;}
.y21b_c01291{bottom:176.250000px;}
.y221_c01291{bottom:177.120000px;}
.y21d_c01291{bottom:177.990000px;}
.y21c_c01291{bottom:178.845000px;}
.y21f_c01291{bottom:179.715000px;}
.y220_c01291{bottom:180.570000px;}
.y21e_c01291{bottom:181.440000px;}
.y223_c01291{bottom:186.630000px;}
.y227_c01291{bottom:188.355000px;}
.y210_c01291{bottom:189.210000px;}
.y222_c01291{bottom:190.080000px;}
.y211_c01291{bottom:190.950000px;}
.y20f_c01291{bottom:191.805000px;}
.y213_c01291{bottom:193.530000px;}
.y212_c01291{bottom:194.400000px;}
.y215_c01291{bottom:195.270000px;}
.y218_c01291{bottom:196.995000px;}
.y216_c01291{bottom:197.850000px;}
.y214_c01291{bottom:198.720000px;}
.y217_c01291{bottom:199.590000px;}
.y20e_c01291{bottom:208.230000px;}
.y219_c01291{bottom:209.955000px;}
.y208_c01291{bottom:210.810000px;}
.y20a_c01291{bottom:213.405000px;}
.y20c_c01291{bottom:214.275000px;}
.y209_c01291{bottom:215.130000px;}
.y207_c01291{bottom:216.000000px;}
.y206_c01291{bottom:216.870000px;}
.y20b_c01291{bottom:217.725000px;}
.y20d_c01291{bottom:220.320000px;}
.y1fe_c01291{bottom:230.685000px;}
.y1fd_c01291{bottom:231.555000px;}
.y202_c01291{bottom:233.280000px;}
.y200_c01291{bottom:234.150000px;}
.y1ff_c01291{bottom:236.730000px;}
.y201_c01291{bottom:237.600000px;}
.y204_c01291{bottom:239.325000px;}
.y1fc_c01291{bottom:240.195000px;}
.y1fa_c01291{bottom:241.920000px;}
.y203_c01291{bottom:242.790000px;}
.y1fb_c01291{bottom:243.645000px;}
.y205_c01291{bottom:245.370000px;}
.y1f1_c01291{bottom:248.835000px;}
.y1f0_c01291{bottom:251.430000px;}
.y1f5_c01291{bottom:253.155000px;}
.y1f4_c01291{bottom:254.010000px;}
.y1f3_c01291{bottom:254.880000px;}
.y1f8_c01291{bottom:255.750000px;}
.y1f7_c01291{bottom:256.605000px;}
.y1f6_c01291{bottom:265.245000px;}
.y1f9_c01291{bottom:267.840000px;}
.y1f2_c01291{bottom:269.565000px;}
.y1e5_c01291{bottom:272.160000px;}
.y1e7_c01291{bottom:273.030000px;}
.y1e6_c01291{bottom:273.885000px;}
.y1e4_c01291{bottom:274.755000px;}
.y1e8_c01291{bottom:275.610000px;}
.y1ec_c01291{bottom:276.480000px;}
.y1ed_c01291{bottom:278.205000px;}
.y1ef_c01291{bottom:279.075000px;}
.y1ea_c01291{bottom:281.670000px;}
.y1eb_c01291{bottom:283.395000px;}
.y1ee_c01291{bottom:284.250000px;}
.y1e9_c01291{bottom:291.165000px;}
.y1de_c01291{bottom:292.890000px;}
.y1db_c01291{bottom:293.760000px;}
.y1e0_c01291{bottom:294.630000px;}
.y1df_c01291{bottom:295.485000px;}
.y1e1_c01291{bottom:296.355000px;}
.y1dc_c01291{bottom:297.210000px;}
.y1dd_c01291{bottom:298.950000px;}
.y1e2_c01291{bottom:303.270000px;}
.y1e3_c01291{bottom:304.125000px;}
.y1d3_c01291{bottom:311.910000px;}
.y1d5_c01291{bottom:313.635000px;}
.y1d7_c01291{bottom:314.490000px;}
.y1d4_c01291{bottom:316.230000px;}
.y1d2_c01291{bottom:317.955000px;}
.y1da_c01291{bottom:318.810000px;}
.y1d6_c01291{bottom:319.680000px;}
.y1d8_c01291{bottom:321.405000px;}
.y1d9_c01291{bottom:323.130000px;}
.y1cb_c01291{bottom:328.320000px;}
.y1cf_c01291{bottom:329.190000px;}
.y1cd_c01291{bottom:330.045000px;}
.y1d1_c01291{bottom:332.640000px;}
.y1ce_c01291{bottom:333.510000px;}
.y1cc_c01291{bottom:334.365000px;}
.y1d0_c01291{bottom:344.730000px;}
.y1ca_c01291{bottom:346.470000px;}
.y1c2_c01291{bottom:354.240000px;}
.y1c1_c01291{bottom:355.965000px;}
.y1c3_c01291{bottom:357.690000px;}
.y1c6_c01291{bottom:358.560000px;}
.y1c8_c01291{bottom:359.430000px;}
.y1c4_c01291{bottom:360.285000px;}
.y1c5_c01291{bottom:361.155000px;}
.y1c9_c01291{bottom:362.880000px;}
.y1c7_c01291{bottom:363.750000px;}
.y1b7_c01291{bottom:367.200000px;}
.y1b9_c01291{bottom:368.925000px;}
.y1ba_c01291{bottom:372.390000px;}
.y1bd_c01291{bottom:373.245000px;}
.y1bc_c01291{bottom:374.115000px;}
.y1b8_c01291{bottom:374.970000px;}
.y1be_c01291{bottom:376.710000px;}
.y1c0_c01291{bottom:379.290000px;}
.y1bb_c01291{bottom:381.885000px;}
.y1bf_c01291{bottom:385.350000px;}
.y1b6_c01291{bottom:391.395000px;}
.y1af_c01291{bottom:393.990000px;}
.y1b0_c01291{bottom:394.845000px;}
.y1ae_c01291{bottom:395.715000px;}
.y1ad_c01291{bottom:396.570000px;}
.y1b3_c01291{bottom:398.310000px;}
.y1b1_c01291{bottom:399.165000px;}
.y1b4_c01291{bottom:401.760000px;}
.y1b5_c01291{bottom:403.485000px;}
.y1b2_c01291{bottom:410.400000px;}
.y1a2_c01291{bottom:413.850000px;}
.y1a6_c01291{bottom:414.720000px;}
.y1a9_c01291{bottom:416.445000px;}
.y1a4_c01291{bottom:417.315000px;}
.y1a5_c01291{bottom:418.170000px;}
.y1a3_c01291{bottom:419.040000px;}
.y1a7_c01291{bottom:419.910000px;}
.y1aa_c01291{bottom:421.635000px;}
.y1ab_c01291{bottom:425.085000px;}
.y1ac_c01291{bottom:425.955000px;}
.y1a8_c01291{bottom:433.725000px;}
.y199_c01291{bottom:434.595000px;}
.y19c_c01291{bottom:437.190000px;}
.y19f_c01291{bottom:438.045000px;}
.y19e_c01291{bottom:438.915000px;}
.y19a_c01291{bottom:439.770000px;}
.y198_c01291{bottom:441.510000px;}
.y19d_c01291{bottom:442.365000px;}
.y19b_c01291{bottom:443.235000px;}
.y1a0_c01291{bottom:445.830000px;}
.y197_c01291{bottom:446.685000px;}
.y1a1_c01291{bottom:449.280000px;}
.y194_c01291{bottom:455.325000px;}
.y195_c01291{bottom:456.195000px;}
.y196_c01291{bottom:457.920000px;}
.y193_c01291{bottom:460.515000px;}
.y18f_c01291{bottom:476.070000px;}
.y18d_c01291{bottom:476.925000px;}
.y190_c01291{bottom:477.795000px;}
.y192_c01291{bottom:479.520000px;}
.y18e_c01291{bottom:481.245000px;}
.y191_c01291{bottom:482.970000px;}
.y189_c01291{bottom:495.930000px;}
.y188_c01291{bottom:497.670000px;}
.y18c_c01291{bottom:499.395000px;}
.y186_c01291{bottom:500.250000px;}
.y187_c01291{bottom:501.120000px;}
.y18a_c01291{bottom:502.845000px;}
.y18b_c01291{bottom:503.715000px;}
.y17f_c01291{bottom:515.805000px;}
.y182_c01291{bottom:517.530000px;}
.y183_c01291{bottom:518.400000px;}
.y184_c01291{bottom:519.270000px;}
.y180_c01291{bottom:520.125000px;}
.y181_c01291{bottom:520.995000px;}
.y185_c01291{bottom:523.590000px;}
.y17e_c01291{bottom:524.445000px;}
.y179_c01291{bottom:534.810000px;}
.y176_c01291{bottom:535.680000px;}
.y17c_c01291{bottom:538.275000px;}
.y17d_c01291{bottom:539.130000px;}
.y178_c01291{bottom:540.870000px;}
.y177_c01291{bottom:541.725000px;}
.y17a_c01291{bottom:543.450000px;}
.y17b_c01291{bottom:544.320000px;}
.y172_c01291{bottom:554.685000px;}
.y171_c01291{bottom:559.005000px;}
.y173_c01291{bottom:559.875000px;}
.y175_c01291{bottom:563.325000px;}
.y174_c01291{bottom:564.195000px;}
.y16c_c01291{bottom:575.430000px;}
.y16d_c01291{bottom:578.010000px;}
.y16b_c01291{bottom:578.880000px;}
.y16f_c01291{bottom:579.750000px;}
.y16a_c01291{bottom:580.605000px;}
.y170_c01291{bottom:581.475000px;}
.y166_c01291{bottom:588.390000px;}
.y16e_c01291{bottom:589.245000px;}
.y164_c01291{bottom:590.115000px;}
.y169_c01291{bottom:590.970000px;}
.y165_c01291{bottom:591.840000px;}
.y162_c01291{bottom:593.565000px;}
.y163_c01291{bottom:594.435000px;}
.y158_c01291{bottom:595.290000px;}
.y168_c01291{bottom:596.160000px;}
.y167_c01291{bottom:597.030000px;}
.y15c_c01291{bottom:597.885000px;}
.y159_c01291{bottom:598.755000px;}
.y15d_c01291{bottom:600.480000px;}
.y15b_c01291{bottom:601.350000px;}
.y15a_c01291{bottom:602.205000px;}
.y15e_c01291{bottom:603.075000px;}
.y15f_c01291{bottom:606.525000px;}
.y160_c01291{bottom:608.250000px;}
.y161_c01291{bottom:610.845000px;}
.y151_c01291{bottom:615.165000px;}
.y152_c01291{bottom:616.035000px;}
.y153_c01291{bottom:617.760000px;}
.y150_c01291{bottom:618.630000px;}
.y157_c01291{bottom:620.355000px;}
.y155_c01291{bottom:622.080000px;}
.y156_c01291{bottom:623.805000px;}
.y14f_c01291{bottom:625.530000px;}
.y154_c01291{bottom:630.720000px;}
.y143_c01291{bottom:635.040000px;}
.y146_c01291{bottom:635.910000px;}
.y147_c01291{bottom:638.490000px;}
.y144_c01291{bottom:640.230000px;}
.y145_c01291{bottom:641.085000px;}
.y14c_c01291{bottom:641.955000px;}
.y148_c01291{bottom:642.810000px;}
.y14b_c01291{bottom:643.680000px;}
.y14a_c01291{bottom:644.550000px;}
.y14e_c01291{bottom:647.130000px;}
.y14d_c01291{bottom:648.000000px;}
.y149_c01291{bottom:649.725000px;}
.y142_c01291{bottom:651.450000px;}
.y135_c01291{bottom:654.045000px;}
.y134_c01291{bottom:654.915000px;}
.y137_c01291{bottom:655.770000px;}
.y138_c01291{bottom:656.640000px;}
.y139_c01291{bottom:657.510000px;}
.y136_c01291{bottom:658.365000px;}
.y13a_c01291{bottom:659.235000px;}
.y13d_c01291{bottom:660.090000px;}
.y13c_c01291{bottom:660.960000px;}
.y13f_c01291{bottom:661.830000px;}
.y13b_c01291{bottom:663.555000px;}
.y141_c01291{bottom:664.410000px;}
.y140_c01291{bottom:665.280000px;}
.y13e_c01291{bottom:667.875000px;}
.y12d_c01291{bottom:670.470000px;}
.y12e_c01291{bottom:673.920000px;}
.y131_c01291{bottom:675.645000px;}
.y12f_c01291{bottom:676.515000px;}
.y130_c01291{bottom:677.370000px;}
.y133_c01291{bottom:679.110000px;}
.y12c_c01291{bottom:679.965000px;}
.y132_c01291{bottom:682.560000px;}
.y125_c01291{bottom:695.520000px;}
.y124_c01291{bottom:698.970000px;}
.y126_c01291{bottom:699.840000px;}
.y12a_c01291{bottom:703.290000px;}
.y128_c01291{bottom:704.160000px;}
.y127_c01291{bottom:705.885000px;}
.y129_c01291{bottom:706.755000px;}
.y12b_c01291{bottom:708.480000px;}
.y11e_c01291{bottom:716.250000px;}
.y122_c01291{bottom:717.990000px;}
.y11d_c01291{bottom:718.845000px;}
.y113_c01291{bottom:719.715000px;}
.y121_c01291{bottom:720.570000px;}
.y11f_c01291{bottom:721.440000px;}
.y123_c01291{bottom:722.310000px;}
.y11b_c01291{bottom:724.035000px;}
.y120_c01291{bottom:725.760000px;}
.y11c_c01291{bottom:726.630000px;}
.y114_c01291{bottom:730.950000px;}
.y115_c01291{bottom:731.805000px;}
.y116_c01291{bottom:734.400000px;}
.y118_c01291{bottom:736.125000px;}
.y112_c01291{bottom:737.850000px;}
.y11a_c01291{bottom:738.720000px;}
.y119_c01291{bottom:743.910000px;}
.y117_c01291{bottom:748.230000px;}
.y10b_c01291{bottom:759.450000px;}
.y10c_c01291{bottom:760.320000px;}
.y10e_c01291{bottom:761.190000px;}
.y10d_c01291{bottom:762.915000px;}
.y110_c01291{bottom:763.770000px;}
.y10f_c01291{bottom:765.510000px;}
.y111_c01291{bottom:767.235000px;}
.y107_c01291{bottom:770.685000px;}
.y105_c01291{bottom:771.555000px;}
.y106_c01291{bottom:775.005000px;}
.y104_c01291{bottom:776.730000px;}
.y10a_c01291{bottom:777.600000px;}
.y108_c01291{bottom:778.470000px;}
.y109_c01291{bottom:781.050000px;}
.y101_c01291{bottom:784.515000px;}
.y102_c01291{bottom:785.370000px;}
.y100_c01291{bottom:787.110000px;}
.y103_c01291{bottom:787.965000px;}
.yfb_c01291{bottom:801.795000px;}
.yfc_c01291{bottom:803.520000px;}
.yfd_c01291{bottom:804.390000px;}
.yfe_c01291{bottom:805.245000px;}
.yf7_c01291{bottom:808.710000px;}
.yff_c01291{bottom:810.435000px;}
.yf6_c01291{bottom:812.160000px;}
.yf5_c01291{bottom:813.030000px;}
.yf4_c01291{bottom:814.755000px;}
.yfa_c01291{bottom:815.610000px;}
.yf8_c01291{bottom:816.480000px;}
.yf9_c01291{bottom:817.350000px;}
.yf3_c01291{bottom:819.075000px;}
.yed_c01291{bottom:820.800000px;}
.yf0_c01291{bottom:821.670000px;}
.yf2_c01291{bottom:823.395000px;}
.yf1_c01291{bottom:824.250000px;}
.yec_c01291{bottom:825.990000px;}
.yee_c01291{bottom:827.715000px;}
.yef_c01291{bottom:828.570000px;}
.yea_c01291{bottom:837.210000px;}
.yeb_c01291{bottom:838.080000px;}
.ye4_c01291{bottom:838.950000px;}
.ye5_c01291{bottom:839.805000px;}
.ye6_c01291{bottom:841.530000px;}
.ye7_c01291{bottom:842.400000px;}
.ye8_c01291{bottom:844.995000px;}
.ye9_c01291{bottom:850.170000px;}
.ydc_c01291{bottom:858.810000px;}
.ydd_c01291{bottom:860.550000px;}
.yde_c01291{bottom:861.405000px;}
.ye3_c01291{bottom:864.000000px;}
.ydf_c01291{bottom:865.725000px;}
.ye0_c01291{bottom:866.595000px;}
.ye1_c01291{bottom:867.450000px;}
.ye2_c01291{bottom:868.320000px;}
.yd3_c01291{bottom:879.555000px;}
.yd4_c01291{bottom:880.410000px;}
.yd6_c01291{bottom:881.280000px;}
.yd8_c01291{bottom:882.150000px;}
.yd9_c01291{bottom:883.005000px;}
.yd5_c01291{bottom:883.875000px;}
.ydb_c01291{bottom:884.730000px;}
.yd2_c01291{bottom:885.600000px;}
.yd7_c01291{bottom:886.470000px;}
.yda_c01291{bottom:887.325000px;}
.yd1_c01291{bottom:900.285000px;}
.yce_c01291{bottom:901.155000px;}
.ycf_c01291{bottom:902.010000px;}
.ycd_c01291{bottom:904.605000px;}
.ycc_c01291{bottom:905.475000px;}
.yd0_c01291{bottom:906.330000px;}
.yc3_c01291{bottom:919.290000px;}
.yc1_c01291{bottom:920.160000px;}
.yc2_c01291{bottom:921.030000px;}
.yc7_c01291{bottom:922.755000px;}
.yca_c01291{bottom:924.480000px;}
.yc9_c01291{bottom:925.350000px;}
.yc4_c01291{bottom:926.205000px;}
.yc8_c01291{bottom:927.075000px;}
.yc0_c01291{bottom:929.670000px;}
.yc5_c01291{bottom:930.525000px;}
.yc6_c01291{bottom:935.715000px;}
.ycb_c01291{bottom:938.310000px;}
.yb6_c01291{bottom:940.035000px;}
.yb7_c01291{bottom:940.890000px;}
.yb9_c01291{bottom:941.760000px;}
.yba_c01291{bottom:942.630000px;}
.ybb_c01291{bottom:943.485000px;}
.yb8_c01291{bottom:944.355000px;}
.ybd_c01291{bottom:945.210000px;}
.ybe_c01291{bottom:946.080000px;}
.ybc_c01291{bottom:949.530000px;}
.yb0_c01291{bottom:959.910000px;}
.yb1_c01291{bottom:960.765000px;}
.ybf_c01291{bottom:961.635000px;}
.yb2_c01291{bottom:963.360000px;}
.yaf_c01291{bottom:964.230000px;}
.yb4_c01291{bottom:965.955000px;}
.yb5_c01291{bottom:966.810000px;}
.yb3_c01291{bottom:967.680000px;}
.ya6_c01291{bottom:978.915000px;}
.ya7_c01291{bottom:979.770000px;}
.ya8_c01291{bottom:980.640000px;}
.yab_c01291{bottom:982.365000px;}
.yaa_c01291{bottom:983.235000px;}
.yac_c01291{bottom:984.090000px;}
.yad_c01291{bottom:984.960000px;}
.yae_c01291{bottom:987.555000px;}
.ya9_c01291{bottom:988.410000px;}
.y9f_c01291{bottom:997.920000px;}
.y9e_c01291{bottom:998.790000px;}
.ya1_c01291{bottom:999.645000px;}
.ya0_c01291{bottom:1000.515000px;}
.ya5_c01291{bottom:1003.965000px;}
.ya2_c01291{bottom:1005.690000px;}
.ya4_c01291{bottom:1006.560000px;}
.ya3_c01291{bottom:1007.430000px;}
.y95_c01291{bottom:1020.390000px;}
.y96_c01291{bottom:1022.115000px;}
.y99_c01291{bottom:1022.970000px;}
.y98_c01291{bottom:1023.840000px;}
.y9c_c01291{bottom:1025.565000px;}
.y9d_c01291{bottom:1026.435000px;}
.y97_c01291{bottom:1027.290000px;}
.y9b_c01291{bottom:1028.160000px;}
.y9a_c01291{bottom:1029.885000px;}
.y90_c01291{bottom:1040.250000px;}
.y8c_c01291{bottom:1041.120000px;}
.y8d_c01291{bottom:1041.990000px;}
.y92_c01291{bottom:1044.570000px;}
.y8f_c01291{bottom:1045.440000px;}
.y93_c01291{bottom:1046.310000px;}
.y8e_c01291{bottom:1047.165000px;}
.y91_c01291{bottom:1048.035000px;}
.y94_c01291{bottom:1050.630000px;}
.y85_c01291{bottom:1060.125000px;}
.y88_c01291{bottom:1060.995000px;}
.y86_c01291{bottom:1061.850000px;}
.y87_c01291{bottom:1062.720000px;}
.y8a_c01291{bottom:1064.445000px;}
.y8b_c01291{bottom:1067.040000px;}
.y89_c01291{bottom:1071.360000px;}
.y7b_c01291{bottom:1080.000000px;}
.y7f_c01291{bottom:1080.870000px;}
.y7e_c01291{bottom:1081.725000px;}
.y80_c01291{bottom:1083.450000px;}
.y83_c01291{bottom:1084.320000px;}
.y7d_c01291{bottom:1085.190000px;}
.y84_c01291{bottom:1086.045000px;}
.y7c_c01291{bottom:1086.915000px;}
.y81_c01291{bottom:1087.770000px;}
.y82_c01291{bottom:1091.235000px;}
.y79_c01291{bottom:1096.410000px;}
.y7a_c01291{bottom:1097.280000px;}
.y229_c01291{bottom:1102.470000px;}
.y73_c01291{bottom:1118.010000px;}
.y75_c01291{bottom:1120.605000px;}
.y77_c01291{bottom:1122.330000px;}
.y72_c01291{bottom:1123.200000px;}
.y76_c01291{bottom:1124.070000px;}
.y74_c01291{bottom:1126.650000px;}
.y78_c01291{bottom:1127.520000px;}
.y69_c01291{bottom:1142.205000px;}
.y6a_c01291{bottom:1143.930000px;}
.y6e_c01291{bottom:1145.670000px;}
.y70_c01291{bottom:1148.250000px;}
.y71_c01291{bottom:1149.120000px;}
.y6b_c01291{bottom:1149.990000px;}
.y6d_c01291{bottom:1150.845000px;}
.y6f_c01291{bottom:1151.715000px;}
.y62_c01291{bottom:1156.890000px;}
.y6c_c01291{bottom:1158.630000px;}
.y64_c01291{bottom:1160.355000px;}
.y63_c01291{bottom:1162.080000px;}
.y65_c01291{bottom:1162.950000px;}
.y67_c01291{bottom:1168.125000px;}
.y66_c01291{bottom:1168.995000px;}
.y68_c01291{bottom:1169.850000px;}
.y5b_c01291{bottom:1177.635000px;}
.y5d_c01291{bottom:1179.360000px;}
.y5c_c01291{bottom:1180.230000px;}
.y5f_c01291{bottom:1182.810000px;}
.y60_c01291{bottom:1183.680000px;}
.y5a_c01291{bottom:1190.595000px;}
.y5e_c01291{bottom:1199.235000px;}
.y51_c01291{bottom:1200.090000px;}
.y61_c01291{bottom:1200.960000px;}
.y50_c01291{bottom:1201.830000px;}
.y55_c01291{bottom:1202.685000px;}
.y53_c01291{bottom:1203.555000px;}
.y52_c01291{bottom:1204.410000px;}
.y54_c01291{bottom:1205.280000px;}
.y57_c01291{bottom:1207.005000px;}
.y58_c01291{bottom:1208.730000px;}
.y56_c01291{bottom:1211.325000px;}
.y59_c01291{bottom:1217.370000px;}
.y4a_c01291{bottom:1219.965000px;}
.y4c_c01291{bottom:1220.835000px;}
.y4e_c01291{bottom:1221.690000px;}
.y4b_c01291{bottom:1224.285000px;}
.y4d_c01291{bottom:1232.070000px;}
.y4f_c01291{bottom:1236.390000px;}
.y41_c01291{bottom:1238.115000px;}
.y43_c01291{bottom:1238.970000px;}
.y47_c01291{bottom:1239.840000px;}
.y44_c01291{bottom:1241.565000px;}
.y40_c01291{bottom:1242.435000px;}
.y48_c01291{bottom:1243.290000px;}
.y3f_c01291{bottom:1244.160000px;}
.y42_c01291{bottom:1245.030000px;}
.y3e_c01291{bottom:1246.755000px;}
.y46_c01291{bottom:1248.480000px;}
.y45_c01291{bottom:1250.205000px;}
.y49_c01291{bottom:1257.120000px;}
.y35_c01291{bottom:1259.715000px;}
.y37_c01291{bottom:1261.440000px;}
.y39_c01291{bottom:1264.035000px;}
.y3a_c01291{bottom:1265.760000px;}
.y3b_c01291{bottom:1266.630000px;}
.y34_c01291{bottom:1267.485000px;}
.y31_c01291{bottom:1268.355000px;}
.y38_c01291{bottom:1270.080000px;}
.y36_c01291{bottom:1270.950000px;}
.y3c_c01291{bottom:1272.675000px;}
.y32_c01291{bottom:1275.270000px;}
.y3d_c01291{bottom:1276.125000px;}
.y2d_c01291{bottom:1278.720000px;}
.y2c_c01291{bottom:1279.590000px;}
.y2e_c01291{bottom:1280.445000px;}
.y2f_c01291{bottom:1281.315000px;}
.y33_c01291{bottom:1282.170000px;}
.y30_c01291{bottom:1283.040000px;}
.y29_c01291{bottom:1283.910000px;}
.y2a_c01291{bottom:1284.765000px;}
.y2b_c01291{bottom:1286.490000px;}
.y22_c01291{bottom:1287.360000px;}
.y23_c01291{bottom:1288.230000px;}
.y25_c01291{bottom:1289.955000px;}
.y27_c01291{bottom:1290.810000px;}
.y24_c01291{bottom:1293.405000px;}
.y28_c01291{bottom:1294.275000px;}
.y26_c01291{bottom:1295.130000px;}
.y1b_c01291{bottom:1303.770000px;}
.y1a_c01291{bottom:1306.365000px;}
.y1e_c01291{bottom:1307.235000px;}
.y1f_c01291{bottom:1308.090000px;}
.y1c_c01291{bottom:1308.960000px;}
.y20_c01291{bottom:1309.830000px;}
.y21_c01291{bottom:1312.410000px;}
.y1d_c01291{bottom:1315.875000px;}
.y3_c01291{bottom:1319.325000px;}
.y15_c01291{bottom:1321.050000px;}
.y14_c01291{bottom:1322.790000px;}
.y16_c01291{bottom:1323.645000px;}
.y18_c01291{bottom:1326.240000px;}
.y17_c01291{bottom:1332.285000px;}
.y19_c01291{bottom:1333.155000px;}
.y2_c01291{bottom:1338.330000px;}
.y1_c01291{bottom:1340.070000px;}
.y10_c01291{bottom:1351.290000px;}
.y9_c01291{bottom:1352.160000px;}
.yc_c01291{bottom:1353.030000px;}
.yb_c01291{bottom:1353.885000px;}
.yd_c01291{bottom:1355.610000px;}
.y11_c01291{bottom:1356.480000px;}
.yf_c01291{bottom:1357.350000px;}
.y13_c01291{bottom:1358.205000px;}
.ye_c01291{bottom:1359.930000px;}
.ya_c01291{bottom:1360.800000px;}
.y12_c01291{bottom:1361.670000px;}
.y7_c01291{bottom:1382.400000px;}
.y8_c01291{bottom:1384.995000px;}
.y6_c01291{bottom:1387.590000px;}
.y5_c01291{bottom:1401.405000px;}
.y4_c01291{bottom:1409.190000px;}
.h5_c01291{height:3.110063px;}
.h1c_c01291{height:5.399414px;}
.h2_c01291{height:6.209326px;}
.h19_c01291{height:9.340986px;}
.h14_c01291{height:12.418652px;}
.h3_c01291{height:15.550313px;}
.h10_c01291{height:18.681973px;}
.h1d_c01291{height:21.759639px;}
.h11_c01291{height:24.891299px;}
.h21_c01291{height:27.968965px;}
.h4_c01291{height:31.100625px;}
.h1b_c01291{height:34.232285px;}
.h23_c01291{height:37.309951px;}
.h13_c01291{height:40.441611px;}
.h1a_c01291{height:43.519277px;}
.h17_c01291{height:46.650937px;}
.h18_c01291{height:49.782598px;}
.h16_c01291{height:52.860264px;}
.h12_c01291{height:55.991924px;}
.ha_c01291{height:59.069590px;}
.h7_c01291{height:62.201250px;}
.he_c01291{height:65.332910px;}
.h1e_c01291{height:68.410576px;}
.h15_c01291{height:71.542236px;}
.h6_c01291{height:74.619902px;}
.h9_c01291{height:77.751563px;}
.hb_c01291{height:80.883223px;}
.hd_c01291{height:83.960889px;}
.h8_c01291{height:87.092549px;}
.hf_c01291{height:90.170215px;}
.hc_c01291{height:93.301875px;}
.h1f_c01291{height:96.433535px;}
.h25_c01291{height:99.511201px;}
.h22_c01291{height:105.720527px;}
.h20_c01291{height:111.983848px;}
.h24_c01291{height:127.534160px;}
.h0_c01291{height:1509.405000px;}
.h1_c01291{height:1509.750000px;}
.w0_c01291{width:1088.640000px;}
.w1_c01291{width:1089.000000px;}
.x0_c01291{left:0.000000px;}
.x1_c01291{left:41.475000px;}
.x2_c01291{left:64.800000px;}
.x3_c01291{left:133.920000px;}
.x117_c01291{left:177.990000px;}
.xe0_c01291{left:180.570000px;}
.x112_c01291{left:183.165000px;}
.xb6_c01291{left:186.630000px;}
.x53_c01291{left:188.355000px;}
.xe1_c01291{left:190.080000px;}
.x113_c01291{left:191.805000px;}
.x45_c01291{left:194.400000px;}
.xaf_c01291{left:196.995000px;}
.xda_c01291{left:198.720000px;}
.x54_c01291{left:209.955000px;}
.x11b_c01291{left:212.550000px;}
.x55_c01291{left:216.000000px;}
.x114_c01291{left:218.595000px;}
.x61_c01291{left:222.045000px;}
.xac_c01291{left:225.510000px;}
.x1b_c01291{left:227.235000px;}
.x2c_c01291{left:228.960000px;}
.x7f_c01291{left:230.685000px;}
.xba_c01291{left:233.280000px;}
.xd7_c01291{left:235.875000px;}
.x39_c01291{left:238.470000px;}
.x80_c01291{left:240.195000px;}
.xd3_c01291{left:242.790000px;}
.xb7_c01291{left:245.370000px;}
.xa7_c01291{left:247.965000px;}
.x70_c01291{left:249.690000px;}
.x46_c01291{left:253.155000px;}
.xd8_c01291{left:254.880000px;}
.xf8_c01291{left:257.475000px;}
.x1c_c01291{left:259.200000px;}
.x2d_c01291{left:263.520000px;}
.x11c_c01291{left:265.245000px;}
.xf1_c01291{left:267.840000px;}
.xb0_c01291{left:269.565000px;}
.xc5_c01291{left:273.030000px;}
.xd4_c01291{left:274.755000px;}
.x93_c01291{left:276.480000px;}
.x11e_c01291{left:279.075000px;}
.x9b_c01291{left:280.800000px;}
.xbb_c01291{left:282.525000px;}
.x2e_c01291{left:285.120000px;}
.x3a_c01291{left:287.715000px;}
.x2f_c01291{left:291.165000px;}
.x3b_c01291{left:294.630000px;}
.xef_c01291{left:297.210000px;}
.x81_c01291{left:299.805000px;}
.x9_c01291{left:301.530000px;}
.x71_c01291{left:304.125000px;}
.x115_c01291{left:306.720000px;}
.xfd_c01291{left:308.445000px;}
.x84_c01291{left:311.040000px;}
.x62_c01291{left:313.635000px;}
.x94_c01291{left:315.360000px;}
.x3c_c01291{left:317.084535px;}
.xfe_c01291{left:319.680000px;}
.x95_c01291{left:324.870000px;}
.x30_c01291{left:328.320000px;}
.x67_c01291{left:330.915000px;}
.xa_c01291{left:332.640000px;}
.x63_c01291{left:334.365000px;}
.xb1_c01291{left:337.830000px;}
.xb_c01291{left:340.410000px;}
.x56_c01291{left:344.730000px;}
.x23_c01291{left:348.195000px;}
.x96_c01291{left:350.790000px;}
.x57_c01291{left:353.370000px;}
.x8c_c01291{left:355.110000px;}
.x1d_c01291{left:357.690000px;}
.x10d_c01291{left:360.285000px;}
.x3d_c01291{left:366.330000px;}
.xbe_c01291{left:368.925000px;}
.x47_c01291{left:375.840000px;}
.xa1_c01291{left:378.435000px;}
.x7_c01291{left:380.160000px;}
.x3e_c01291{left:382.755000px;}
.x104_c01291{left:385.350000px;}
.xc_c01291{left:388.800000px;}
.x31_c01291{left:391.395000px;}
.xa4_c01291{left:393.990000px;}
.xd_c01291{left:397.440000px;}
.x75_c01291{left:400.035000px;}
.x4_c01291{left:402.630000px;}
.xa5_c01291{left:404.355000px;}
.xf2_c01291{left:406.950000px;}
.x5_c01291{left:409.530000px;}
.x109_c01291{left:411.270000px;}
.x32_c01291{left:415.590000px;}
.x24_c01291{left:417.315000px;}
.x85_c01291{left:419.910000px;}
.xe_c01291{left:423.360000px;}
.x68_c01291{left:425.955000px;}
.x33_c01291{left:427.680000px;}
.xf9_c01291{left:432.000000px;}
.x110_c01291{left:434.595000px;}
.x9c_c01291{left:436.320000px;}
.x34_c01291{left:438.045000px;}
.xa8_c01291{left:439.770000px;}
.x48_c01291{left:442.365000px;}
.x8d_c01291{left:444.090000px;}
.x49_c01291{left:446.685000px;}
.xf_c01291{left:450.150000px;}
.x69_c01291{left:451.875000px;}
.x105_c01291{left:455.325000px;}
.x9d_c01291{left:458.790000px;}
.xfc_c01291{left:461.370000px;}
.x86_c01291{left:463.110000px;}
.xad_c01291{left:465.690000px;}
.x10_c01291{left:470.010000px;}
.x25_c01291{left:472.605000px;}
.x82_c01291{left:476.070000px;}
.x9e_c01291{left:477.795000px;}
.x4a_c01291{left:479.520000px;}
.x7a_c01291{left:482.115000px;}
.x11_c01291{left:483.840000px;}
.x87_c01291{left:485.565000px;}
.xbf_c01291{left:488.160000px;}
.x118_c01291{left:489.885000px;}
.x8e_c01291{left:491.610000px;}
.x1e_c01291{left:493.350000px;}
.x12_c01291{left:495.930000px;}
.x97_c01291{left:497.670000px;}
.xb2_c01291{left:500.250000px;}
.x6a_c01291{left:502.845000px;}
.x98_c01291{left:504.570000px;}
.x4b_c01291{left:508.035000px;}
.x13_c01291{left:513.210000px;}
.x6b_c01291{left:514.950000px;}
.xb3_c01291{left:516.675000px;}
.x101_c01291{left:519.270000px;}
.x10f_c01291{left:523.590000px;}
.x26_c01291{left:527.040000px;}
.xd5_c01291{left:529.635000px;}
.x7b_c01291{left:531.360000px;}
.xc3_c01291{left:533.085000px;}
.x8f_c01291{left:536.550000px;}
.x14_c01291{left:539.130000px;}
.x9f_c01291{left:540.870000px;}
.x88_c01291{left:546.045000px;}
.x72_c01291{left:547.770000px;}
.x58_c01291{left:549.510000px;}
.xfb_c01291{left:552.090000px;}
.x15_c01291{left:553.830000px;}
.x10b_c01291{left:555.555000px;}
.x59_c01291{left:557.280000px;}
.x1f_c01291{left:559.005000px;}
.xa2_c01291{left:561.600000px;}
.xc0_c01291{left:564.195000px;}
.xe2_c01291{left:565.920000px;}
.x64_c01291{left:567.645000px;}
.x102_c01291{left:569.370000px;}
.x65_c01291{left:572.835000px;}
.x83_c01291{left:574.560000px;}
.x4c_c01291{left:577.155000px;}
.xc1_c01291{left:579.750000px;}
.xc7_c01291{left:581.475000px;}
.xcf_c01291{left:583.200000px;}
.x7c_c01291{left:584.925000px;}
.x99_c01291{left:588.390000px;}
.xec_c01291{left:590.115000px;}
.x5a_c01291{left:591.840000px;}
.x3f_c01291{left:593.565000px;}
.x35_c01291{left:596.160000px;}
.xa9_c01291{left:598.755000px;}
.x6c_c01291{left:602.205000px;}
.xf3_c01291{left:603.930000px;}
.x7d_c01291{left:607.395000px;}
.xfa_c01291{left:612.570000px;}
.x40_c01291{left:615.165000px;}
.x11d_c01291{left:616.890000px;}
.x16_c01291{left:618.630000px;}
.xc8_c01291{left:622.080000px;}
.xdd_c01291{left:623.805000px;}
.x8_c01291{left:625.530000px;}
.xa3_c01291{left:628.125000px;}
.x9a_c01291{left:635.910000px;}
.xc2_c01291{left:641.955000px;}
.x36_c01291{left:645.405000px;}
.xe3_c01291{left:648.000000px;}
.xa0_c01291{left:649.725000px;}
.x37_c01291{left:653.190000px;}
.x89_c01291{left:655.770000px;}
.xce_c01291{left:657.510000px;}
.xff_c01291{left:660.960000px;}
.x73_c01291{left:662.685000px;}
.x107_c01291{left:664.410000px;}
.x4d_c01291{left:666.150000px;}
.x20_c01291{left:667.875000px;}
.x27_c01291{left:671.325000px;}
.xb4_c01291{left:673.050000px;}
.x6d_c01291{left:674.790000px;}
.x76_c01291{left:678.240000px;}
.xd0_c01291{left:679.965000px;}
.xbc_c01291{left:682.560000px;}
.x100_c01291{left:684.285000px;}
.xae_c01291{left:686.010000px;}
.x11f_c01291{left:687.750000px;}
.x111_c01291{left:690.330000px;}
.x7e_c01291{left:692.070000px;}
.x5b_c01291{left:694.650000px;}
.x41_c01291{left:699.840000px;}
.x77_c01291{left:702.435000px;}
.xdb_c01291{left:705.885000px;}
.xe4_c01291{left:708.480000px;}
.x90_c01291{left:712.800000px;}
.x106_c01291{left:714.525000px;}
.x91_c01291{left:716.250000px;}
.x28_c01291{left:721.440000px;}
.xf0_c01291{left:724.035000px;}
.x29_c01291{left:725.760000px;}
.xd9_c01291{left:727.485000px;}
.x42_c01291{left:730.080000px;}
.x4e_c01291{left:734.400000px;}
.x8a_c01291{left:736.995000px;}
.x6e_c01291{left:740.445000px;}
.xc6_c01291{left:745.635000px;}
.xd1_c01291{left:749.955000px;}
.xed_c01291{left:751.680000px;}
.x5c_c01291{left:753.405000px;}
.x92_c01291{left:756.000000px;}
.xe5_c01291{left:758.595000px;}
.x21_c01291{left:760.320000px;}
.x8b_c01291{left:762.045000px;}
.x78_c01291{left:764.640000px;}
.xd6_c01291{left:767.235000px;}
.xcc_c01291{left:768.960000px;}
.x74_c01291{left:770.685000px;}
.xbd_c01291{left:773.280000px;}
.xf4_c01291{left:775.005000px;}
.x119_c01291{left:776.730000px;}
.xc9_c01291{left:778.470000px;}
.xe9_c01291{left:781.050000px;}
.x79_c01291{left:782.790000px;}
.xb8_c01291{left:785.370000px;}
.xf5_c01291{left:787.110000px;}
.x17_c01291{left:788.835000px;}
.x22_c01291{left:790.560000px;}
.xf6_c01291{left:793.155000px;}
.x116_c01291{left:794.880000px;}
.xc4_c01291{left:797.475000px;}
.x38_c01291{left:800.070000px;}
.xe6_c01291{left:801.795000px;}
.xa6_c01291{left:804.390000px;}
.x43_c01291{left:806.970000px;}
.xb9_c01291{left:808.710000px;}
.x18_c01291{left:811.290000px;}
.x5d_c01291{left:815.610000px;}
.xaa_c01291{left:817.350000px;}
.xee_c01291{left:821.670000px;}
.x5e_c01291{left:825.120000px;}
.x2a_c01291{left:826.845000px;}
.x44_c01291{left:828.570000px;}
.x4f_c01291{left:830.310000px;}
.x120_c01291{left:832.890000px;}
.x19_c01291{left:835.485000px;}
.x10a_c01291{left:838.080000px;}
.xf7_c01291{left:841.530000px;}
.xdc_c01291{left:843.270000px;}
.x1a_c01291{left:844.995000px;}
.x5f_c01291{left:847.590000px;}
.xde_c01291{left:851.040000px;}
.x6_c01291{left:852.765000px;}
.x2b_c01291{left:857.085000px;}
.xd2_c01291{left:859.680000px;}
.x6f_c01291{left:866.595000px;}
.xe7_c01291{left:868.320000px;}
.xab_c01291{left:870.915000px;}
.x11a_c01291{left:873.510000px;}
.x121_c01291{left:876.090000px;}
.x103_c01291{left:877.830000px;}
.x50_c01291{left:879.555000px;}
.x108_c01291{left:881.280000px;}
.x60_c01291{left:886.470000px;}
.x66_c01291{left:889.050000px;}
.x10e_c01291{left:891.645000px;}
.x51_c01291{left:894.240000px;}
.xb5_c01291{left:895.965000px;}
.xcd_c01291{left:897.690000px;}
.xca_c01291{left:902.010000px;}
.x52_c01291{left:904.605000px;}
.x10c_c01291{left:910.650000px;}
.xea_c01291{left:916.710000px;}
.xe8_c01291{left:924.480000px;}
.x122_c01291{left:927.075000px;}
.xcb_c01291{left:928.800000px;}
.xeb_c01291{left:930.525000px;}
.xdf_c01291{left:941.760000px;}
@media print{
.v0_c01291{vertical-align:0.000000pt;}
.v1_c01291{vertical-align:9.226667pt;}
.ls0_c01291{letter-spacing:0.000000pt;}
.ws1_c01291{word-spacing:0.000000pt;}
.ws0_c01291{word-spacing:0.964800pt;}
.fs3_c01291{font-size:3.072000pt;}
.fs1a_c01291{font-size:5.333333pt;}
.fs0_c01291{font-size:6.133333pt;}
.fs17_c01291{font-size:9.226667pt;}
.fs12_c01291{font-size:12.266667pt;}
.fs1_c01291{font-size:15.360000pt;}
.fse_c01291{font-size:18.453333pt;}
.fs1b_c01291{font-size:21.493333pt;}
.fsf_c01291{font-size:24.586667pt;}
.fs1f_c01291{font-size:27.626667pt;}
.fs2_c01291{font-size:30.720000pt;}
.fs19_c01291{font-size:33.813333pt;}
.fs21_c01291{font-size:36.853333pt;}
.fs11_c01291{font-size:39.946667pt;}
.fs18_c01291{font-size:42.986667pt;}
.fs15_c01291{font-size:46.080000pt;}
.fs16_c01291{font-size:49.173333pt;}
.fs14_c01291{font-size:52.213333pt;}
.fs10_c01291{font-size:55.306667pt;}
.fs8_c01291{font-size:58.346667pt;}
.fs5_c01291{font-size:61.440000pt;}
.fsc_c01291{font-size:64.533333pt;}
.fs1c_c01291{font-size:67.573333pt;}
.fs13_c01291{font-size:70.666667pt;}
.fs4_c01291{font-size:73.706667pt;}
.fs7_c01291{font-size:76.800000pt;}
.fs9_c01291{font-size:79.893333pt;}
.fsb_c01291{font-size:82.933333pt;}
.fs6_c01291{font-size:86.026667pt;}
.fsd_c01291{font-size:89.066667pt;}
.fsa_c01291{font-size:92.160000pt;}
.fs1d_c01291{font-size:95.253333pt;}
.fs23_c01291{font-size:98.293333pt;}
.fs20_c01291{font-size:104.426667pt;}
.fs1e_c01291{font-size:110.613333pt;}
.fs22_c01291{font-size:125.973333pt;}
.y0_c01291{bottom:0.000000pt;}
.y224_c01291{bottom:149.760000pt;}
.y228_c01291{bottom:152.066667pt;}
.y226_c01291{bottom:154.373333pt;}
.y225_c01291{bottom:155.133333pt;}
.y21a_c01291{bottom:155.906667pt;}
.y21b_c01291{bottom:156.666667pt;}
.y221_c01291{bottom:157.440000pt;}
.y21d_c01291{bottom:158.213333pt;}
.y21c_c01291{bottom:158.973333pt;}
.y21f_c01291{bottom:159.746667pt;}
.y220_c01291{bottom:160.506667pt;}
.y21e_c01291{bottom:161.280000pt;}
.y223_c01291{bottom:165.893333pt;}
.y227_c01291{bottom:167.426667pt;}
.y210_c01291{bottom:168.186667pt;}
.y222_c01291{bottom:168.960000pt;}
.y211_c01291{bottom:169.733333pt;}
.y20f_c01291{bottom:170.493333pt;}
.y213_c01291{bottom:172.026667pt;}
.y212_c01291{bottom:172.800000pt;}
.y215_c01291{bottom:173.573333pt;}
.y218_c01291{bottom:175.106667pt;}
.y216_c01291{bottom:175.866667pt;}
.y214_c01291{bottom:176.640000pt;}
.y217_c01291{bottom:177.413333pt;}
.y20e_c01291{bottom:185.093333pt;}
.y219_c01291{bottom:186.626667pt;}
.y208_c01291{bottom:187.386667pt;}
.y20a_c01291{bottom:189.693333pt;}
.y20c_c01291{bottom:190.466667pt;}
.y209_c01291{bottom:191.226667pt;}
.y207_c01291{bottom:192.000000pt;}
.y206_c01291{bottom:192.773333pt;}
.y20b_c01291{bottom:193.533333pt;}
.y20d_c01291{bottom:195.840000pt;}
.y1fe_c01291{bottom:205.053333pt;}
.y1fd_c01291{bottom:205.826667pt;}
.y202_c01291{bottom:207.360000pt;}
.y200_c01291{bottom:208.133333pt;}
.y1ff_c01291{bottom:210.426667pt;}
.y201_c01291{bottom:211.200000pt;}
.y204_c01291{bottom:212.733333pt;}
.y1fc_c01291{bottom:213.506667pt;}
.y1fa_c01291{bottom:215.040000pt;}
.y203_c01291{bottom:215.813333pt;}
.y1fb_c01291{bottom:216.573333pt;}
.y205_c01291{bottom:218.106667pt;}
.y1f1_c01291{bottom:221.186667pt;}
.y1f0_c01291{bottom:223.493333pt;}
.y1f5_c01291{bottom:225.026667pt;}
.y1f4_c01291{bottom:225.786667pt;}
.y1f3_c01291{bottom:226.560000pt;}
.y1f8_c01291{bottom:227.333333pt;}
.y1f7_c01291{bottom:228.093333pt;}
.y1f6_c01291{bottom:235.773333pt;}
.y1f9_c01291{bottom:238.080000pt;}
.y1f2_c01291{bottom:239.613333pt;}
.y1e5_c01291{bottom:241.920000pt;}
.y1e7_c01291{bottom:242.693333pt;}
.y1e6_c01291{bottom:243.453333pt;}
.y1e4_c01291{bottom:244.226667pt;}
.y1e8_c01291{bottom:244.986667pt;}
.y1ec_c01291{bottom:245.760000pt;}
.y1ed_c01291{bottom:247.293333pt;}
.y1ef_c01291{bottom:248.066667pt;}
.y1ea_c01291{bottom:250.373333pt;}
.y1eb_c01291{bottom:251.906667pt;}
.y1ee_c01291{bottom:252.666667pt;}
.y1e9_c01291{bottom:258.813333pt;}
.y1de_c01291{bottom:260.346667pt;}
.y1db_c01291{bottom:261.120000pt;}
.y1e0_c01291{bottom:261.893333pt;}
.y1df_c01291{bottom:262.653333pt;}
.y1e1_c01291{bottom:263.426667pt;}
.y1dc_c01291{bottom:264.186667pt;}
.y1dd_c01291{bottom:265.733333pt;}
.y1e2_c01291{bottom:269.573333pt;}
.y1e3_c01291{bottom:270.333333pt;}
.y1d3_c01291{bottom:277.253333pt;}
.y1d5_c01291{bottom:278.786667pt;}
.y1d7_c01291{bottom:279.546667pt;}
.y1d4_c01291{bottom:281.093333pt;}
.y1d2_c01291{bottom:282.626667pt;}
.y1da_c01291{bottom:283.386667pt;}
.y1d6_c01291{bottom:284.160000pt;}
.y1d8_c01291{bottom:285.693333pt;}
.y1d9_c01291{bottom:287.226667pt;}
.y1cb_c01291{bottom:291.840000pt;}
.y1cf_c01291{bottom:292.613333pt;}
.y1cd_c01291{bottom:293.373333pt;}
.y1d1_c01291{bottom:295.680000pt;}
.y1ce_c01291{bottom:296.453333pt;}
.y1cc_c01291{bottom:297.213333pt;}
.y1d0_c01291{bottom:306.426667pt;}
.y1ca_c01291{bottom:307.973333pt;}
.y1c2_c01291{bottom:314.880000pt;}
.y1c1_c01291{bottom:316.413333pt;}
.y1c3_c01291{bottom:317.946667pt;}
.y1c6_c01291{bottom:318.720000pt;}
.y1c8_c01291{bottom:319.493333pt;}
.y1c4_c01291{bottom:320.253333pt;}
.y1c5_c01291{bottom:321.026667pt;}
.y1c9_c01291{bottom:322.560000pt;}
.y1c7_c01291{bottom:323.333333pt;}
.y1b7_c01291{bottom:326.400000pt;}
.y1b9_c01291{bottom:327.933333pt;}
.y1ba_c01291{bottom:331.013333pt;}
.y1bd_c01291{bottom:331.773333pt;}
.y1bc_c01291{bottom:332.546667pt;}
.y1b8_c01291{bottom:333.306667pt;}
.y1be_c01291{bottom:334.853333pt;}
.y1c0_c01291{bottom:337.146667pt;}
.y1bb_c01291{bottom:339.453333pt;}
.y1bf_c01291{bottom:342.533333pt;}
.y1b6_c01291{bottom:347.906667pt;}
.y1af_c01291{bottom:350.213333pt;}
.y1b0_c01291{bottom:350.973333pt;}
.y1ae_c01291{bottom:351.746667pt;}
.y1ad_c01291{bottom:352.506667pt;}
.y1b3_c01291{bottom:354.053333pt;}
.y1b1_c01291{bottom:354.813333pt;}
.y1b4_c01291{bottom:357.120000pt;}
.y1b5_c01291{bottom:358.653333pt;}
.y1b2_c01291{bottom:364.800000pt;}
.y1a2_c01291{bottom:367.866667pt;}
.y1a6_c01291{bottom:368.640000pt;}
.y1a9_c01291{bottom:370.173333pt;}
.y1a4_c01291{bottom:370.946667pt;}
.y1a5_c01291{bottom:371.706667pt;}
.y1a3_c01291{bottom:372.480000pt;}
.y1a7_c01291{bottom:373.253333pt;}
.y1aa_c01291{bottom:374.786667pt;}
.y1ab_c01291{bottom:377.853333pt;}
.y1ac_c01291{bottom:378.626667pt;}
.y1a8_c01291{bottom:385.533333pt;}
.y199_c01291{bottom:386.306667pt;}
.y19c_c01291{bottom:388.613333pt;}
.y19f_c01291{bottom:389.373333pt;}
.y19e_c01291{bottom:390.146667pt;}
.y19a_c01291{bottom:390.906667pt;}
.y198_c01291{bottom:392.453333pt;}
.y19d_c01291{bottom:393.213333pt;}
.y19b_c01291{bottom:393.986667pt;}
.y1a0_c01291{bottom:396.293333pt;}
.y197_c01291{bottom:397.053333pt;}
.y1a1_c01291{bottom:399.360000pt;}
.y194_c01291{bottom:404.733333pt;}
.y195_c01291{bottom:405.506667pt;}
.y196_c01291{bottom:407.040000pt;}
.y193_c01291{bottom:409.346667pt;}
.y18f_c01291{bottom:423.173333pt;}
.y18d_c01291{bottom:423.933333pt;}
.y190_c01291{bottom:424.706667pt;}
.y192_c01291{bottom:426.240000pt;}
.y18e_c01291{bottom:427.773333pt;}
.y191_c01291{bottom:429.306667pt;}
.y189_c01291{bottom:440.826667pt;}
.y188_c01291{bottom:442.373333pt;}
.y18c_c01291{bottom:443.906667pt;}
.y186_c01291{bottom:444.666667pt;}
.y187_c01291{bottom:445.440000pt;}
.y18a_c01291{bottom:446.973333pt;}
.y18b_c01291{bottom:447.746667pt;}
.y17f_c01291{bottom:458.493333pt;}
.y182_c01291{bottom:460.026667pt;}
.y183_c01291{bottom:460.800000pt;}
.y184_c01291{bottom:461.573333pt;}
.y180_c01291{bottom:462.333333pt;}
.y181_c01291{bottom:463.106667pt;}
.y185_c01291{bottom:465.413333pt;}
.y17e_c01291{bottom:466.173333pt;}
.y179_c01291{bottom:475.386667pt;}
.y176_c01291{bottom:476.160000pt;}
.y17c_c01291{bottom:478.466667pt;}
.y17d_c01291{bottom:479.226667pt;}
.y178_c01291{bottom:480.773333pt;}
.y177_c01291{bottom:481.533333pt;}
.y17a_c01291{bottom:483.066667pt;}
.y17b_c01291{bottom:483.840000pt;}
.y172_c01291{bottom:493.053333pt;}
.y171_c01291{bottom:496.893333pt;}
.y173_c01291{bottom:497.666667pt;}
.y175_c01291{bottom:500.733333pt;}
.y174_c01291{bottom:501.506667pt;}
.y16c_c01291{bottom:511.493333pt;}
.y16d_c01291{bottom:513.786667pt;}
.y16b_c01291{bottom:514.560000pt;}
.y16f_c01291{bottom:515.333333pt;}
.y16a_c01291{bottom:516.093333pt;}
.y170_c01291{bottom:516.866667pt;}
.y166_c01291{bottom:523.013333pt;}
.y16e_c01291{bottom:523.773333pt;}
.y164_c01291{bottom:524.546667pt;}
.y169_c01291{bottom:525.306667pt;}
.y165_c01291{bottom:526.080000pt;}
.y162_c01291{bottom:527.613333pt;}
.y163_c01291{bottom:528.386667pt;}
.y158_c01291{bottom:529.146667pt;}
.y168_c01291{bottom:529.920000pt;}
.y167_c01291{bottom:530.693333pt;}
.y15c_c01291{bottom:531.453333pt;}
.y159_c01291{bottom:532.226667pt;}
.y15d_c01291{bottom:533.760000pt;}
.y15b_c01291{bottom:534.533333pt;}
.y15a_c01291{bottom:535.293333pt;}
.y15e_c01291{bottom:536.066667pt;}
.y15f_c01291{bottom:539.133333pt;}
.y160_c01291{bottom:540.666667pt;}
.y161_c01291{bottom:542.973333pt;}
.y151_c01291{bottom:546.813333pt;}
.y152_c01291{bottom:547.586667pt;}
.y153_c01291{bottom:549.120000pt;}
.y150_c01291{bottom:549.893333pt;}
.y157_c01291{bottom:551.426667pt;}
.y155_c01291{bottom:552.960000pt;}
.y156_c01291{bottom:554.493333pt;}
.y14f_c01291{bottom:556.026667pt;}
.y154_c01291{bottom:560.640000pt;}
.y143_c01291{bottom:564.480000pt;}
.y146_c01291{bottom:565.253333pt;}
.y147_c01291{bottom:567.546667pt;}
.y144_c01291{bottom:569.093333pt;}
.y145_c01291{bottom:569.853333pt;}
.y14c_c01291{bottom:570.626667pt;}
.y148_c01291{bottom:571.386667pt;}
.y14b_c01291{bottom:572.160000pt;}
.y14a_c01291{bottom:572.933333pt;}
.y14e_c01291{bottom:575.226667pt;}
.y14d_c01291{bottom:576.000000pt;}
.y149_c01291{bottom:577.533333pt;}
.y142_c01291{bottom:579.066667pt;}
.y135_c01291{bottom:581.373333pt;}
.y134_c01291{bottom:582.146667pt;}
.y137_c01291{bottom:582.906667pt;}
.y138_c01291{bottom:583.680000pt;}
.y139_c01291{bottom:584.453333pt;}
.y136_c01291{bottom:585.213333pt;}
.y13a_c01291{bottom:585.986667pt;}
.y13d_c01291{bottom:586.746667pt;}
.y13c_c01291{bottom:587.520000pt;}
.y13f_c01291{bottom:588.293333pt;}
.y13b_c01291{bottom:589.826667pt;}
.y141_c01291{bottom:590.586667pt;}
.y140_c01291{bottom:591.360000pt;}
.y13e_c01291{bottom:593.666667pt;}
.y12d_c01291{bottom:595.973333pt;}
.y12e_c01291{bottom:599.040000pt;}
.y131_c01291{bottom:600.573333pt;}
.y12f_c01291{bottom:601.346667pt;}
.y130_c01291{bottom:602.106667pt;}
.y133_c01291{bottom:603.653333pt;}
.y12c_c01291{bottom:604.413333pt;}
.y132_c01291{bottom:606.720000pt;}
.y125_c01291{bottom:618.240000pt;}
.y124_c01291{bottom:621.306667pt;}
.y126_c01291{bottom:622.080000pt;}
.y12a_c01291{bottom:625.146667pt;}
.y128_c01291{bottom:625.920000pt;}
.y127_c01291{bottom:627.453333pt;}
.y129_c01291{bottom:628.226667pt;}
.y12b_c01291{bottom:629.760000pt;}
.y11e_c01291{bottom:636.666667pt;}
.y122_c01291{bottom:638.213333pt;}
.y11d_c01291{bottom:638.973333pt;}
.y113_c01291{bottom:639.746667pt;}
.y121_c01291{bottom:640.506667pt;}
.y11f_c01291{bottom:641.280000pt;}
.y123_c01291{bottom:642.053333pt;}
.y11b_c01291{bottom:643.586667pt;}
.y120_c01291{bottom:645.120000pt;}
.y11c_c01291{bottom:645.893333pt;}
.y114_c01291{bottom:649.733333pt;}
.y115_c01291{bottom:650.493333pt;}
.y116_c01291{bottom:652.800000pt;}
.y118_c01291{bottom:654.333333pt;}
.y112_c01291{bottom:655.866667pt;}
.y11a_c01291{bottom:656.640000pt;}
.y119_c01291{bottom:661.253333pt;}
.y117_c01291{bottom:665.093333pt;}
.y10b_c01291{bottom:675.066667pt;}
.y10c_c01291{bottom:675.840000pt;}
.y10e_c01291{bottom:676.613333pt;}
.y10d_c01291{bottom:678.146667pt;}
.y110_c01291{bottom:678.906667pt;}
.y10f_c01291{bottom:680.453333pt;}
.y111_c01291{bottom:681.986667pt;}
.y107_c01291{bottom:685.053333pt;}
.y105_c01291{bottom:685.826667pt;}
.y106_c01291{bottom:688.893333pt;}
.y104_c01291{bottom:690.426667pt;}
.y10a_c01291{bottom:691.200000pt;}
.y108_c01291{bottom:691.973333pt;}
.y109_c01291{bottom:694.266667pt;}
.y101_c01291{bottom:697.346667pt;}
.y102_c01291{bottom:698.106667pt;}
.y100_c01291{bottom:699.653333pt;}
.y103_c01291{bottom:700.413333pt;}
.yfb_c01291{bottom:712.706667pt;}
.yfc_c01291{bottom:714.240000pt;}
.yfd_c01291{bottom:715.013333pt;}
.yfe_c01291{bottom:715.773333pt;}
.yf7_c01291{bottom:718.853333pt;}
.yff_c01291{bottom:720.386667pt;}
.yf6_c01291{bottom:721.920000pt;}
.yf5_c01291{bottom:722.693333pt;}
.yf4_c01291{bottom:724.226667pt;}
.yfa_c01291{bottom:724.986667pt;}
.yf8_c01291{bottom:725.760000pt;}
.yf9_c01291{bottom:726.533333pt;}
.yf3_c01291{bottom:728.066667pt;}
.yed_c01291{bottom:729.600000pt;}
.yf0_c01291{bottom:730.373333pt;}
.yf2_c01291{bottom:731.906667pt;}
.yf1_c01291{bottom:732.666667pt;}
.yec_c01291{bottom:734.213333pt;}
.yee_c01291{bottom:735.746667pt;}
.yef_c01291{bottom:736.506667pt;}
.yea_c01291{bottom:744.186667pt;}
.yeb_c01291{bottom:744.960000pt;}
.ye4_c01291{bottom:745.733333pt;}
.ye5_c01291{bottom:746.493333pt;}
.ye6_c01291{bottom:748.026667pt;}
.ye7_c01291{bottom:748.800000pt;}
.ye8_c01291{bottom:751.106667pt;}
.ye9_c01291{bottom:755.706667pt;}
.ydc_c01291{bottom:763.386667pt;}
.ydd_c01291{bottom:764.933333pt;}
.yde_c01291{bottom:765.693333pt;}
.ye3_c01291{bottom:768.000000pt;}
.ydf_c01291{bottom:769.533333pt;}
.ye0_c01291{bottom:770.306667pt;}
.ye1_c01291{bottom:771.066667pt;}
.ye2_c01291{bottom:771.840000pt;}
.yd3_c01291{bottom:781.826667pt;}
.yd4_c01291{bottom:782.586667pt;}
.yd6_c01291{bottom:783.360000pt;}
.yd8_c01291{bottom:784.133333pt;}
.yd9_c01291{bottom:784.893333pt;}
.yd5_c01291{bottom:785.666667pt;}
.ydb_c01291{bottom:786.426667pt;}
.yd2_c01291{bottom:787.200000pt;}
.yd7_c01291{bottom:787.973333pt;}
.yda_c01291{bottom:788.733333pt;}
.yd1_c01291{bottom:800.253333pt;}
.yce_c01291{bottom:801.026667pt;}
.ycf_c01291{bottom:801.786667pt;}
.ycd_c01291{bottom:804.093333pt;}
.ycc_c01291{bottom:804.866667pt;}
.yd0_c01291{bottom:805.626667pt;}
.yc3_c01291{bottom:817.146667pt;}
.yc1_c01291{bottom:817.920000pt;}
.yc2_c01291{bottom:818.693333pt;}
.yc7_c01291{bottom:820.226667pt;}
.yca_c01291{bottom:821.760000pt;}
.yc9_c01291{bottom:822.533333pt;}
.yc4_c01291{bottom:823.293333pt;}
.yc8_c01291{bottom:824.066667pt;}
.yc0_c01291{bottom:826.373333pt;}
.yc5_c01291{bottom:827.133333pt;}
.yc6_c01291{bottom:831.746667pt;}
.ycb_c01291{bottom:834.053333pt;}
.yb6_c01291{bottom:835.586667pt;}
.yb7_c01291{bottom:836.346667pt;}
.yb9_c01291{bottom:837.120000pt;}
.yba_c01291{bottom:837.893333pt;}
.ybb_c01291{bottom:838.653333pt;}
.yb8_c01291{bottom:839.426667pt;}
.ybd_c01291{bottom:840.186667pt;}
.ybe_c01291{bottom:840.960000pt;}
.ybc_c01291{bottom:844.026667pt;}
.yb0_c01291{bottom:853.253333pt;}
.yb1_c01291{bottom:854.013333pt;}
.ybf_c01291{bottom:854.786667pt;}
.yb2_c01291{bottom:856.320000pt;}
.yaf_c01291{bottom:857.093333pt;}
.yb4_c01291{bottom:858.626667pt;}
.yb5_c01291{bottom:859.386667pt;}
.yb3_c01291{bottom:860.160000pt;}
.ya6_c01291{bottom:870.146667pt;}
.ya7_c01291{bottom:870.906667pt;}
.ya8_c01291{bottom:871.680000pt;}
.yab_c01291{bottom:873.213333pt;}
.yaa_c01291{bottom:873.986667pt;}
.yac_c01291{bottom:874.746667pt;}
.yad_c01291{bottom:875.520000pt;}
.yae_c01291{bottom:877.826667pt;}
.ya9_c01291{bottom:878.586667pt;}
.y9f_c01291{bottom:887.040000pt;}
.y9e_c01291{bottom:887.813333pt;}
.ya1_c01291{bottom:888.573333pt;}
.ya0_c01291{bottom:889.346667pt;}
.ya5_c01291{bottom:892.413333pt;}
.ya2_c01291{bottom:893.946667pt;}
.ya4_c01291{bottom:894.720000pt;}
.ya3_c01291{bottom:895.493333pt;}
.y95_c01291{bottom:907.013333pt;}
.y96_c01291{bottom:908.546667pt;}
.y99_c01291{bottom:909.306667pt;}
.y98_c01291{bottom:910.080000pt;}
.y9c_c01291{bottom:911.613333pt;}
.y9d_c01291{bottom:912.386667pt;}
.y97_c01291{bottom:913.146667pt;}
.y9b_c01291{bottom:913.920000pt;}
.y9a_c01291{bottom:915.453333pt;}
.y90_c01291{bottom:924.666667pt;}
.y8c_c01291{bottom:925.440000pt;}
.y8d_c01291{bottom:926.213333pt;}
.y92_c01291{bottom:928.506667pt;}
.y8f_c01291{bottom:929.280000pt;}
.y93_c01291{bottom:930.053333pt;}
.y8e_c01291{bottom:930.813333pt;}
.y91_c01291{bottom:931.586667pt;}
.y94_c01291{bottom:933.893333pt;}
.y85_c01291{bottom:942.333333pt;}
.y88_c01291{bottom:943.106667pt;}
.y86_c01291{bottom:943.866667pt;}
.y87_c01291{bottom:944.640000pt;}
.y8a_c01291{bottom:946.173333pt;}
.y8b_c01291{bottom:948.480000pt;}
.y89_c01291{bottom:952.320000pt;}
.y7b_c01291{bottom:960.000000pt;}
.y7f_c01291{bottom:960.773333pt;}
.y7e_c01291{bottom:961.533333pt;}
.y80_c01291{bottom:963.066667pt;}
.y83_c01291{bottom:963.840000pt;}
.y7d_c01291{bottom:964.613333pt;}
.y84_c01291{bottom:965.373333pt;}
.y7c_c01291{bottom:966.146667pt;}
.y81_c01291{bottom:966.906667pt;}
.y82_c01291{bottom:969.986667pt;}
.y79_c01291{bottom:974.586667pt;}
.y7a_c01291{bottom:975.360000pt;}
.y229_c01291{bottom:979.973333pt;}
.y73_c01291{bottom:993.786667pt;}
.y75_c01291{bottom:996.093333pt;}
.y77_c01291{bottom:997.626667pt;}
.y72_c01291{bottom:998.400000pt;}
.y76_c01291{bottom:999.173333pt;}
.y74_c01291{bottom:1001.466667pt;}
.y78_c01291{bottom:1002.240000pt;}
.y69_c01291{bottom:1015.293333pt;}
.y6a_c01291{bottom:1016.826667pt;}
.y6e_c01291{bottom:1018.373333pt;}
.y70_c01291{bottom:1020.666667pt;}
.y71_c01291{bottom:1021.440000pt;}
.y6b_c01291{bottom:1022.213333pt;}
.y6d_c01291{bottom:1022.973333pt;}
.y6f_c01291{bottom:1023.746667pt;}
.y62_c01291{bottom:1028.346667pt;}
.y6c_c01291{bottom:1029.893333pt;}
.y64_c01291{bottom:1031.426667pt;}
.y63_c01291{bottom:1032.960000pt;}
.y65_c01291{bottom:1033.733333pt;}
.y67_c01291{bottom:1038.333333pt;}
.y66_c01291{bottom:1039.106667pt;}
.y68_c01291{bottom:1039.866667pt;}
.y5b_c01291{bottom:1046.786667pt;}
.y5d_c01291{bottom:1048.320000pt;}
.y5c_c01291{bottom:1049.093333pt;}
.y5f_c01291{bottom:1051.386667pt;}
.y60_c01291{bottom:1052.160000pt;}
.y5a_c01291{bottom:1058.306667pt;}
.y5e_c01291{bottom:1065.986667pt;}
.y51_c01291{bottom:1066.746667pt;}
.y61_c01291{bottom:1067.520000pt;}
.y50_c01291{bottom:1068.293333pt;}
.y55_c01291{bottom:1069.053333pt;}
.y53_c01291{bottom:1069.826667pt;}
.y52_c01291{bottom:1070.586667pt;}
.y54_c01291{bottom:1071.360000pt;}
.y57_c01291{bottom:1072.893333pt;}
.y58_c01291{bottom:1074.426667pt;}
.y56_c01291{bottom:1076.733333pt;}
.y59_c01291{bottom:1082.106667pt;}
.y4a_c01291{bottom:1084.413333pt;}
.y4c_c01291{bottom:1085.186667pt;}
.y4e_c01291{bottom:1085.946667pt;}
.y4b_c01291{bottom:1088.253333pt;}
.y4d_c01291{bottom:1095.173333pt;}
.y4f_c01291{bottom:1099.013333pt;}
.y41_c01291{bottom:1100.546667pt;}
.y43_c01291{bottom:1101.306667pt;}
.y47_c01291{bottom:1102.080000pt;}
.y44_c01291{bottom:1103.613333pt;}
.y40_c01291{bottom:1104.386667pt;}
.y48_c01291{bottom:1105.146667pt;}
.y3f_c01291{bottom:1105.920000pt;}
.y42_c01291{bottom:1106.693333pt;}
.y3e_c01291{bottom:1108.226667pt;}
.y46_c01291{bottom:1109.760000pt;}
.y45_c01291{bottom:1111.293333pt;}
.y49_c01291{bottom:1117.440000pt;}
.y35_c01291{bottom:1119.746667pt;}
.y37_c01291{bottom:1121.280000pt;}
.y39_c01291{bottom:1123.586667pt;}
.y3a_c01291{bottom:1125.120000pt;}
.y3b_c01291{bottom:1125.893333pt;}
.y34_c01291{bottom:1126.653333pt;}
.y31_c01291{bottom:1127.426667pt;}
.y38_c01291{bottom:1128.960000pt;}
.y36_c01291{bottom:1129.733333pt;}
.y3c_c01291{bottom:1131.266667pt;}
.y32_c01291{bottom:1133.573333pt;}
.y3d_c01291{bottom:1134.333333pt;}
.y2d_c01291{bottom:1136.640000pt;}
.y2c_c01291{bottom:1137.413333pt;}
.y2e_c01291{bottom:1138.173333pt;}
.y2f_c01291{bottom:1138.946667pt;}
.y33_c01291{bottom:1139.706667pt;}
.y30_c01291{bottom:1140.480000pt;}
.y29_c01291{bottom:1141.253333pt;}
.y2a_c01291{bottom:1142.013333pt;}
.y2b_c01291{bottom:1143.546667pt;}
.y22_c01291{bottom:1144.320000pt;}
.y23_c01291{bottom:1145.093333pt;}
.y25_c01291{bottom:1146.626667pt;}
.y27_c01291{bottom:1147.386667pt;}
.y24_c01291{bottom:1149.693333pt;}
.y28_c01291{bottom:1150.466667pt;}
.y26_c01291{bottom:1151.226667pt;}
.y1b_c01291{bottom:1158.906667pt;}
.y1a_c01291{bottom:1161.213333pt;}
.y1e_c01291{bottom:1161.986667pt;}
.y1f_c01291{bottom:1162.746667pt;}
.y1c_c01291{bottom:1163.520000pt;}
.y20_c01291{bottom:1164.293333pt;}
.y21_c01291{bottom:1166.586667pt;}
.y1d_c01291{bottom:1169.666667pt;}
.y3_c01291{bottom:1172.733333pt;}
.y15_c01291{bottom:1174.266667pt;}
.y14_c01291{bottom:1175.813333pt;}
.y16_c01291{bottom:1176.573333pt;}
.y18_c01291{bottom:1178.880000pt;}
.y17_c01291{bottom:1184.253333pt;}
.y19_c01291{bottom:1185.026667pt;}
.y2_c01291{bottom:1189.626667pt;}
.y1_c01291{bottom:1191.173333pt;}
.y10_c01291{bottom:1201.146667pt;}
.y9_c01291{bottom:1201.920000pt;}
.yc_c01291{bottom:1202.693333pt;}
.yb_c01291{bottom:1203.453333pt;}
.yd_c01291{bottom:1204.986667pt;}
.y11_c01291{bottom:1205.760000pt;}
.yf_c01291{bottom:1206.533333pt;}
.y13_c01291{bottom:1207.293333pt;}
.ye_c01291{bottom:1208.826667pt;}
.ya_c01291{bottom:1209.600000pt;}
.y12_c01291{bottom:1210.373333pt;}
.y7_c01291{bottom:1228.800000pt;}
.y8_c01291{bottom:1231.106667pt;}
.y6_c01291{bottom:1233.413333pt;}
.y5_c01291{bottom:1245.693333pt;}
.y4_c01291{bottom:1252.613333pt;}
.h5_c01291{height:2.764500pt;}
.h1c_c01291{height:4.799479pt;}
.h2_c01291{height:5.519401pt;}
.h19_c01291{height:8.303099pt;}
.h14_c01291{height:11.038802pt;}
.h3_c01291{height:13.822500pt;}
.h10_c01291{height:16.606198pt;}
.h1d_c01291{height:19.341901pt;}
.h11_c01291{height:22.125599pt;}
.h21_c01291{height:24.861302pt;}
.h4_c01291{height:27.645000pt;}
.h1b_c01291{height:30.428698pt;}
.h23_c01291{height:33.164401pt;}
.h13_c01291{height:35.948099pt;}
.h1a_c01291{height:38.683802pt;}
.h17_c01291{height:41.467500pt;}
.h18_c01291{height:44.251198pt;}
.h16_c01291{height:46.986901pt;}
.h12_c01291{height:49.770599pt;}
.ha_c01291{height:52.506302pt;}
.h7_c01291{height:55.290000pt;}
.he_c01291{height:58.073698pt;}
.h1e_c01291{height:60.809401pt;}
.h15_c01291{height:63.593099pt;}
.h6_c01291{height:66.328802pt;}
.h9_c01291{height:69.112500pt;}
.hb_c01291{height:71.896198pt;}
.hd_c01291{height:74.631901pt;}
.h8_c01291{height:77.415599pt;}
.hf_c01291{height:80.151302pt;}
.hc_c01291{height:82.935000pt;}
.h1f_c01291{height:85.718698pt;}
.h25_c01291{height:88.454401pt;}
.h22_c01291{height:93.973802pt;}
.h20_c01291{height:99.541198pt;}
.h24_c01291{height:113.363698pt;}
.h0_c01291{height:1341.693333pt;}
.h1_c01291{height:1342.000000pt;}
.w0_c01291{width:967.680000pt;}
.w1_c01291{width:968.000000pt;}
.x0_c01291{left:0.000000pt;}
.x1_c01291{left:36.866667pt;}
.x2_c01291{left:57.600000pt;}
.x3_c01291{left:119.040000pt;}
.x117_c01291{left:158.213333pt;}
.xe0_c01291{left:160.506667pt;}
.x112_c01291{left:162.813333pt;}
.xb6_c01291{left:165.893333pt;}
.x53_c01291{left:167.426667pt;}
.xe1_c01291{left:168.960000pt;}
.x113_c01291{left:170.493333pt;}
.x45_c01291{left:172.800000pt;}
.xaf_c01291{left:175.106667pt;}
.xda_c01291{left:176.640000pt;}
.x54_c01291{left:186.626667pt;}
.x11b_c01291{left:188.933333pt;}
.x55_c01291{left:192.000000pt;}
.x114_c01291{left:194.306667pt;}
.x61_c01291{left:197.373333pt;}
.xac_c01291{left:200.453333pt;}
.x1b_c01291{left:201.986667pt;}
.x2c_c01291{left:203.520000pt;}
.x7f_c01291{left:205.053333pt;}
.xba_c01291{left:207.360000pt;}
.xd7_c01291{left:209.666667pt;}
.x39_c01291{left:211.973333pt;}
.x80_c01291{left:213.506667pt;}
.xd3_c01291{left:215.813333pt;}
.xb7_c01291{left:218.106667pt;}
.xa7_c01291{left:220.413333pt;}
.x70_c01291{left:221.946667pt;}
.x46_c01291{left:225.026667pt;}
.xd8_c01291{left:226.560000pt;}
.xf8_c01291{left:228.866667pt;}
.x1c_c01291{left:230.400000pt;}
.x2d_c01291{left:234.240000pt;}
.x11c_c01291{left:235.773333pt;}
.xf1_c01291{left:238.080000pt;}
.xb0_c01291{left:239.613333pt;}
.xc5_c01291{left:242.693333pt;}
.xd4_c01291{left:244.226667pt;}
.x93_c01291{left:245.760000pt;}
.x11e_c01291{left:248.066667pt;}
.x9b_c01291{left:249.600000pt;}
.xbb_c01291{left:251.133333pt;}
.x2e_c01291{left:253.440000pt;}
.x3a_c01291{left:255.746667pt;}
.x2f_c01291{left:258.813333pt;}
.x3b_c01291{left:261.893333pt;}
.xef_c01291{left:264.186667pt;}
.x81_c01291{left:266.493333pt;}
.x9_c01291{left:268.026667pt;}
.x71_c01291{left:270.333333pt;}
.x115_c01291{left:272.640000pt;}
.xfd_c01291{left:274.173333pt;}
.x84_c01291{left:276.480000pt;}
.x62_c01291{left:278.786667pt;}
.x94_c01291{left:280.320000pt;}
.x3c_c01291{left:281.852920pt;}
.xfe_c01291{left:284.160000pt;}
.x95_c01291{left:288.773333pt;}
.x30_c01291{left:291.840000pt;}
.x67_c01291{left:294.146667pt;}
.xa_c01291{left:295.680000pt;}
.x63_c01291{left:297.213333pt;}
.xb1_c01291{left:300.293333pt;}
.xb_c01291{left:302.586667pt;}
.x56_c01291{left:306.426667pt;}
.x23_c01291{left:309.506667pt;}
.x96_c01291{left:311.813333pt;}
.x57_c01291{left:314.106667pt;}
.x8c_c01291{left:315.653333pt;}
.x1d_c01291{left:317.946667pt;}
.x10d_c01291{left:320.253333pt;}
.x3d_c01291{left:325.626667pt;}
.xbe_c01291{left:327.933333pt;}
.x47_c01291{left:334.080000pt;}
.xa1_c01291{left:336.386667pt;}
.x7_c01291{left:337.920000pt;}
.x3e_c01291{left:340.226667pt;}
.x104_c01291{left:342.533333pt;}
.xc_c01291{left:345.600000pt;}
.x31_c01291{left:347.906667pt;}
.xa4_c01291{left:350.213333pt;}
.xd_c01291{left:353.280000pt;}
.x75_c01291{left:355.586667pt;}
.x4_c01291{left:357.893333pt;}
.xa5_c01291{left:359.426667pt;}
.xf2_c01291{left:361.733333pt;}
.x5_c01291{left:364.026667pt;}
.x109_c01291{left:365.573333pt;}
.x32_c01291{left:369.413333pt;}
.x24_c01291{left:370.946667pt;}
.x85_c01291{left:373.253333pt;}
.xe_c01291{left:376.320000pt;}
.x68_c01291{left:378.626667pt;}
.x33_c01291{left:380.160000pt;}
.xf9_c01291{left:384.000000pt;}
.x110_c01291{left:386.306667pt;}
.x9c_c01291{left:387.840000pt;}
.x34_c01291{left:389.373333pt;}
.xa8_c01291{left:390.906667pt;}
.x48_c01291{left:393.213333pt;}
.x8d_c01291{left:394.746667pt;}
.x49_c01291{left:397.053333pt;}
.xf_c01291{left:400.133333pt;}
.x69_c01291{left:401.666667pt;}
.x105_c01291{left:404.733333pt;}
.x9d_c01291{left:407.813333pt;}
.xfc_c01291{left:410.106667pt;}
.x86_c01291{left:411.653333pt;}
.xad_c01291{left:413.946667pt;}
.x10_c01291{left:417.786667pt;}
.x25_c01291{left:420.093333pt;}
.x82_c01291{left:423.173333pt;}
.x9e_c01291{left:424.706667pt;}
.x4a_c01291{left:426.240000pt;}
.x7a_c01291{left:428.546667pt;}
.x11_c01291{left:430.080000pt;}
.x87_c01291{left:431.613333pt;}
.xbf_c01291{left:433.920000pt;}
.x118_c01291{left:435.453333pt;}
.x8e_c01291{left:436.986667pt;}
.x1e_c01291{left:438.533333pt;}
.x12_c01291{left:440.826667pt;}
.x97_c01291{left:442.373333pt;}
.xb2_c01291{left:444.666667pt;}
.x6a_c01291{left:446.973333pt;}
.x98_c01291{left:448.506667pt;}
.x4b_c01291{left:451.586667pt;}
.x13_c01291{left:456.186667pt;}
.x6b_c01291{left:457.733333pt;}
.xb3_c01291{left:459.266667pt;}
.x101_c01291{left:461.573333pt;}
.x10f_c01291{left:465.413333pt;}
.x26_c01291{left:468.480000pt;}
.xd5_c01291{left:470.786667pt;}
.x7b_c01291{left:472.320000pt;}
.xc3_c01291{left:473.853333pt;}
.x8f_c01291{left:476.933333pt;}
.x14_c01291{left:479.226667pt;}
.x9f_c01291{left:480.773333pt;}
.x88_c01291{left:485.373333pt;}
.x72_c01291{left:486.906667pt;}
.x58_c01291{left:488.453333pt;}
.xfb_c01291{left:490.746667pt;}
.x15_c01291{left:492.293333pt;}
.x10b_c01291{left:493.826667pt;}
.x59_c01291{left:495.360000pt;}
.x1f_c01291{left:496.893333pt;}
.xa2_c01291{left:499.200000pt;}
.xc0_c01291{left:501.506667pt;}
.xe2_c01291{left:503.040000pt;}
.x64_c01291{left:504.573333pt;}
.x102_c01291{left:506.106667pt;}
.x65_c01291{left:509.186667pt;}
.x83_c01291{left:510.720000pt;}
.x4c_c01291{left:513.026667pt;}
.xc1_c01291{left:515.333333pt;}
.xc7_c01291{left:516.866667pt;}
.xcf_c01291{left:518.400000pt;}
.x7c_c01291{left:519.933333pt;}
.x99_c01291{left:523.013333pt;}
.xec_c01291{left:524.546667pt;}
.x5a_c01291{left:526.080000pt;}
.x3f_c01291{left:527.613333pt;}
.x35_c01291{left:529.920000pt;}
.xa9_c01291{left:532.226667pt;}
.x6c_c01291{left:535.293333pt;}
.xf3_c01291{left:536.826667pt;}
.x7d_c01291{left:539.906667pt;}
.xfa_c01291{left:544.506667pt;}
.x40_c01291{left:546.813333pt;}
.x11d_c01291{left:548.346667pt;}
.x16_c01291{left:549.893333pt;}
.xc8_c01291{left:552.960000pt;}
.xdd_c01291{left:554.493333pt;}
.x8_c01291{left:556.026667pt;}
.xa3_c01291{left:558.333333pt;}
.x9a_c01291{left:565.253333pt;}
.xc2_c01291{left:570.626667pt;}
.x36_c01291{left:573.693333pt;}
.xe3_c01291{left:576.000000pt;}
.xa0_c01291{left:577.533333pt;}
.x37_c01291{left:580.613333pt;}
.x89_c01291{left:582.906667pt;}
.xce_c01291{left:584.453333pt;}
.xff_c01291{left:587.520000pt;}
.x73_c01291{left:589.053333pt;}
.x107_c01291{left:590.586667pt;}
.x4d_c01291{left:592.133333pt;}
.x20_c01291{left:593.666667pt;}
.x27_c01291{left:596.733333pt;}
.xb4_c01291{left:598.266667pt;}
.x6d_c01291{left:599.813333pt;}
.x76_c01291{left:602.880000pt;}
.xd0_c01291{left:604.413333pt;}
.xbc_c01291{left:606.720000pt;}
.x100_c01291{left:608.253333pt;}
.xae_c01291{left:609.786667pt;}
.x11f_c01291{left:611.333333pt;}
.x111_c01291{left:613.626667pt;}
.x7e_c01291{left:615.173333pt;}
.x5b_c01291{left:617.466667pt;}
.x41_c01291{left:622.080000pt;}
.x77_c01291{left:624.386667pt;}
.xdb_c01291{left:627.453333pt;}
.xe4_c01291{left:629.760000pt;}
.x90_c01291{left:633.600000pt;}
.x106_c01291{left:635.133333pt;}
.x91_c01291{left:636.666667pt;}
.x28_c01291{left:641.280000pt;}
.xf0_c01291{left:643.586667pt;}
.x29_c01291{left:645.120000pt;}
.xd9_c01291{left:646.653333pt;}
.x42_c01291{left:648.960000pt;}
.x4e_c01291{left:652.800000pt;}
.x8a_c01291{left:655.106667pt;}
.x6e_c01291{left:658.173333pt;}
.xc6_c01291{left:662.786667pt;}
.xd1_c01291{left:666.626667pt;}
.xed_c01291{left:668.160000pt;}
.x5c_c01291{left:669.693333pt;}
.x92_c01291{left:672.000000pt;}
.xe5_c01291{left:674.306667pt;}
.x21_c01291{left:675.840000pt;}
.x8b_c01291{left:677.373333pt;}
.x78_c01291{left:679.680000pt;}
.xd6_c01291{left:681.986667pt;}
.xcc_c01291{left:683.520000pt;}
.x74_c01291{left:685.053333pt;}
.xbd_c01291{left:687.360000pt;}
.xf4_c01291{left:688.893333pt;}
.x119_c01291{left:690.426667pt;}
.xc9_c01291{left:691.973333pt;}
.xe9_c01291{left:694.266667pt;}
.x79_c01291{left:695.813333pt;}
.xb8_c01291{left:698.106667pt;}
.xf5_c01291{left:699.653333pt;}
.x17_c01291{left:701.186667pt;}
.x22_c01291{left:702.720000pt;}
.xf6_c01291{left:705.026667pt;}
.x116_c01291{left:706.560000pt;}
.xc4_c01291{left:708.866667pt;}
.x38_c01291{left:711.173333pt;}
.xe6_c01291{left:712.706667pt;}
.xa6_c01291{left:715.013333pt;}
.x43_c01291{left:717.306667pt;}
.xb9_c01291{left:718.853333pt;}
.x18_c01291{left:721.146667pt;}
.x5d_c01291{left:724.986667pt;}
.xaa_c01291{left:726.533333pt;}
.xee_c01291{left:730.373333pt;}
.x5e_c01291{left:733.440000pt;}
.x2a_c01291{left:734.973333pt;}
.x44_c01291{left:736.506667pt;}
.x4f_c01291{left:738.053333pt;}
.x120_c01291{left:740.346667pt;}
.x19_c01291{left:742.653333pt;}
.x10a_c01291{left:744.960000pt;}
.xf7_c01291{left:748.026667pt;}
.xdc_c01291{left:749.573333pt;}
.x1a_c01291{left:751.106667pt;}
.x5f_c01291{left:753.413333pt;}
.xde_c01291{left:756.480000pt;}
.x6_c01291{left:758.013333pt;}
.x2b_c01291{left:761.853333pt;}
.xd2_c01291{left:764.160000pt;}
.x6f_c01291{left:770.306667pt;}
.xe7_c01291{left:771.840000pt;}
.xab_c01291{left:774.146667pt;}
.x11a_c01291{left:776.453333pt;}
.x121_c01291{left:778.746667pt;}
.x103_c01291{left:780.293333pt;}
.x50_c01291{left:781.826667pt;}
.x108_c01291{left:783.360000pt;}
.x60_c01291{left:787.973333pt;}
.x66_c01291{left:790.266667pt;}
.x10e_c01291{left:792.573333pt;}
.x51_c01291{left:794.880000pt;}
.xb5_c01291{left:796.413333pt;}
.xcd_c01291{left:797.946667pt;}
.xca_c01291{left:801.786667pt;}
.x52_c01291{left:804.093333pt;}
.x10c_c01291{left:809.466667pt;}
.xea_c01291{left:814.853333pt;}
.xe8_c01291{left:821.760000pt;}
.x122_c01291{left:824.066667pt;}
.xcb_c01291{left:825.600000pt;}
.xeb_c01291{left:827.133333pt;}
.xdf_c01291{left:837.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_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;}
@font-face{font-family:ff1_c01292;src:url('chunks/assets/font_cf3609c9fe722bfc5cd44cf4.woff2')format("woff");}.ff1_c01292{font-family:ff1_c01292;line-height:1.109863;font-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_c01292{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m229_c01292{transform:matrix(0.032225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032225,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01292{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);}
.m108_c01292{transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);}
.m1ed_c01292{transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);}
.mf5_c01292{transform:matrix(0.066925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066925,0.000000,0.000000,0.250000,0,0);}
.mc2_c01292{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);}
.mc4_c01292{transform:matrix(0.082675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082675,0.000000,0.000000,0.250000,0,0);}
.maa_c01292{transform:matrix(0.083075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083075,0.000000,0.000000,0.250000,0,0);}
.m7f_c01292{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m69_c01292{transform:matrix(0.083400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083400,0.000000,0.000000,0.250000,0,0);}
.m21c_c01292{transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085750,0.000000,0.000000,0.250000,0,0);}
.m213_c01292{transform:matrix(0.086025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086025,0.000000,0.000000,0.250000,0,0);}
.m22_c01292{transform:matrix(0.086500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086500,0.000000,0.000000,0.250000,0,0);}
.m193_c01292{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.mbf_c01292{transform:matrix(0.090625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090625,0.000000,0.000000,0.250000,0,0);}
.mc3_c01292{transform:matrix(0.091975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091975,0.000000,0.000000,0.250000,0,0);}
.m180_c01292{transform:matrix(0.092600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092600,0.000000,0.000000,0.250000,0,0);}
.mc0_c01292{transform:matrix(0.097050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097050,0.000000,0.000000,0.250000,0,0);}
.m67_c01292{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.mb9_c01292{transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098225,0.000000,0.000000,0.250000,0,0);}
.m228_c01292{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);}
.m1a9_c01292{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m1fa_c01292{transform:matrix(0.101325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101325,0.000000,0.000000,0.250000,0,0);}
.ma9_c01292{transform:matrix(0.101475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101475,0.000000,0.000000,0.250000,0,0);}
.m140_c01292{transform:matrix(0.101650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101650,0.000000,0.000000,0.250000,0,0);}
.m7d_c01292{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);}
.me2_c01292{transform:matrix(0.102275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102275,0.000000,0.000000,0.250000,0,0);}
.m9d_c01292{transform:matrix(0.102575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102575,0.000000,0.000000,0.250000,0,0);}
.mb8_c01292{transform:matrix(0.105575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105575,0.000000,0.000000,0.250000,0,0);}
.m112_c01292{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m179_c01292{transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);}
.m21e_c01292{transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);}
.mb3_c01292{transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);}
.m182_c01292{transform:matrix(0.109975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109975,0.000000,0.000000,0.250000,0,0);}
.m88_c01292{transform:matrix(0.110550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110550,0.000000,0.000000,0.250000,0,0);}
.m117_c01292{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.m8c_c01292{transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01292{transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110825,0.000000,0.000000,0.250000,0,0);}
.m6d_c01292{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m1ee_c01292{transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);}
.m4d_c01292{transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);}
.m20a_c01292{transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01292{transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113150,0.000000,0.000000,0.250000,0,0);}
.m16c_c01292{transform:matrix(0.113450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113450,0.000000,0.000000,0.250000,0,0);}
.m5e_c01292{transform:matrix(0.113775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113775,0.000000,0.000000,0.250000,0,0);}
.m200_c01292{transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114500,0.000000,0.000000,0.250000,0,0);}
.m57_c01292{transform:matrix(0.115025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115025,0.000000,0.000000,0.250000,0,0);}
.m17f_c01292{transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);}
.mc_c01292{transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);}
.m1f2_c01292{transform:matrix(0.115750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115750,0.000000,0.000000,0.250000,0,0);}
.m93_c01292{transform:matrix(0.115900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115900,0.000000,0.000000,0.250000,0,0);}
.m11a_c01292{transform:matrix(0.116475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116475,0.000000,0.000000,0.250000,0,0);}
.m20f_c01292{transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);}
.m9f_c01292{transform:matrix(0.116925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116925,0.000000,0.000000,0.250000,0,0);}
.md8_c01292{transform:matrix(0.117075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117075,0.000000,0.000000,0.250000,0,0);}
.m63_c01292{transform:matrix(0.117125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117125,0.000000,0.000000,0.250000,0,0);}
.m19f_c01292{transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);}
.m9c_c01292{transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);}
.m1fe_c01292{transform:matrix(0.118300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118300,0.000000,0.000000,0.250000,0,0);}
.m121_c01292{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m157_c01292{transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);}
.m9a_c01292{transform:matrix(0.119525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119525,0.000000,0.000000,0.250000,0,0);}
.ma8_c01292{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01292{transform:matrix(0.120225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120225,0.000000,0.000000,0.250000,0,0);}
.ma7_c01292{transform:matrix(0.120300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120300,0.000000,0.000000,0.250000,0,0);}
.mb1_c01292{transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);}
.m13b_c01292{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01292{transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120875,0.000000,0.000000,0.250000,0,0);}
.mac_c01292{transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);}
.m5f_c01292{transform:matrix(0.121075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121075,0.000000,0.000000,0.250000,0,0);}
.ma4_c01292{transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);}
.ma6_c01292{transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);}
.mc6_c01292{transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122150,0.000000,0.000000,0.250000,0,0);}
.m85_c01292{transform:matrix(0.122375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122375,0.000000,0.000000,0.250000,0,0);}
.mbc_c01292{transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);}
.ma2_c01292{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m10c_c01292{transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);}
.m41_c01292{transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);}
.m110_c01292{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01292{transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);}
.mb2_c01292{transform:matrix(0.127125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127125,0.000000,0.000000,0.250000,0,0);}
.m15a_c01292{transform:matrix(0.127575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127575,0.000000,0.000000,0.250000,0,0);}
.m18f_c01292{transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);}
.m115_c01292{transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);}
.m118_c01292{transform:matrix(0.128025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128025,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01292{transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);}
.m45_c01292{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01292{transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);}
.m222_c01292{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m91_c01292{transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);}
.mc8_c01292{transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130900,0.000000,0.000000,0.250000,0,0);}
.m15d_c01292{transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);}
.m220_c01292{transform:matrix(0.131350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131350,0.000000,0.000000,0.250000,0,0);}
.m68_c01292{transform:matrix(0.131375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131375,0.000000,0.000000,0.250000,0,0);}
.mb0_c01292{transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);}
.m12_c01292{transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);}
.m7c_c01292{transform:matrix(0.131800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131800,0.000000,0.000000,0.250000,0,0);}
.m53_c01292{transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);}
.m14a_c01292{transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);}
.mb7_c01292{transform:matrix(0.132225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132225,0.000000,0.000000,0.250000,0,0);}
.m12c_c01292{transform:matrix(0.132275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132275,0.000000,0.000000,0.250000,0,0);}
.m65_c01292{transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);}
.m1f1_c01292{transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132750,0.000000,0.000000,0.250000,0,0);}
.maf_c01292{transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);}
.m150_c01292{transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);}
.m143_c01292{transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);}
.m101_c01292{transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);}
.m188_c01292{transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133525,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01292{transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);}
.m1fd_c01292{transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01292{transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);}
.ma_c01292{transform:matrix(0.133850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133850,0.000000,0.000000,0.250000,0,0);}
.m18b_c01292{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m190_c01292{transform:matrix(0.134550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134550,0.000000,0.000000,0.250000,0,0);}
.m164_c01292{transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);}
.m130_c01292{transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135625,0.000000,0.000000,0.250000,0,0);}
.m11c_c01292{transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);}
.m8f_c01292{transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);}
.m6a_c01292{transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);}
.m18e_c01292{transform:matrix(0.136025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136025,0.000000,0.000000,0.250000,0,0);}
.m11e_c01292{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m217_c01292{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m81_c01292{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.m21a_c01292{transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);}
.m1f0_c01292{transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);}
.m205_c01292{transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);}
.mbe_c01292{transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);}
.m214_c01292{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01292{transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);}
.m14f_c01292{transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);}
.m167_c01292{transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);}
.m25_c01292{transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01292{transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01292{transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);}
.me3_c01292{transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);}
.m95_c01292{transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);}
.m98_c01292{transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);}
.m94_c01292{transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01292{transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);}
.m107_c01292{transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01292{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m131_c01292{transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);}
.m71_c01292{transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);}
.m149_c01292{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.mba_c01292{transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140900,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01292{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);}
.m209_c01292{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01292{transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);}
.m1ea_c01292{transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01292{transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);}
.m14c_c01292{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.md7_c01292{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);}
.m15f_c01292{transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);}
.m49_c01292{transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142475,0.000000,0.000000,0.250000,0,0);}
.m148_c01292{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m8d_c01292{transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);}
.me9_c01292{transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);}
.mc1_c01292{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m211_c01292{transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);}
.m12e_c01292{transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);}
.mff_c01292{transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);}
.m51_c01292{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.m6_c01292{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01292{transform:matrix(0.144300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144300,0.000000,0.000000,0.250000,0,0);}
.m14b_c01292{transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);}
.m219_c01292{transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144525,0.000000,0.000000,0.250000,0,0);}
.m201_c01292{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);}
.m135_c01292{transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01292{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);}
.mae_c01292{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);}
.m89_c01292{transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01292{transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01292{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);}
.m125_c01292{transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);}
.m8e_c01292{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.mee_c01292{transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01292{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);}
.m172_c01292{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.m47_c01292{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);}
.m8a_c01292{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);}
.m17d_c01292{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.m111_c01292{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.mbb_c01292{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m54_c01292{transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01292{transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01292{transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);}
.m3b_c01292{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m187_c01292{transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150575,0.000000,0.000000,0.250000,0,0);}
.m1f3_c01292{transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);}
.m128_c01292{transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);}
.m13c_c01292{transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);}
.mf7_c01292{transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);}
.ma1_c01292{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.me8_c01292{transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01292{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);}
.m181_c01292{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.m119_c01292{transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153150,0.000000,0.000000,0.250000,0,0);}
.m1f7_c01292{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);}
.m15e_c01292{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m7e_c01292{transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);}
.m6b_c01292{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.m16a_c01292{transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01292{transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);}
.m16b_c01292{transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);}
.mb4_c01292{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01292{transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);}
.mda_c01292{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);}
.mec_c01292{transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);}
.m99_c01292{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.md_c01292{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);}
.m1a3_c01292{transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);}
.mf0_c01292{transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);}
.mcf_c01292{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);}
.mdb_c01292{transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);}
.mfe_c01292{transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);}
.m5c_c01292{transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01292{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.md3_c01292{transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);}
.m191_c01292{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);}
.m153_c01292{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m75_c01292{transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158075,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01292{transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);}
.med_c01292{transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);}
.m10b_c01292{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.mf_c01292{transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159300,0.000000,0.000000,0.250000,0,0);}
.m31_c01292{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);}
.mb6_c01292{transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);}
.mf4_c01292{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);}
.m1af_c01292{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m19b_c01292{transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);}
.me0_c01292{transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);}
.m195_c01292{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m19e_c01292{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.m1ff_c01292{transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);}
.meb_c01292{transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);}
.m159_c01292{transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01292{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01292{transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);}
.m12a_c01292{transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);}
.m92_c01292{transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);}
.m4b_c01292{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m12d_c01292{transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);}
.md0_c01292{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m4e_c01292{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.m9b_c01292{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);}
.m1de_c01292{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);}
.m221_c01292{transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01292{transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);}
.m198_c01292{transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165075,0.000000,0.000000,0.250000,0,0);}
.m197_c01292{transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);}
.m226_c01292{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.m132_c01292{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m161_c01292{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.mcb_c01292{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01292{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);}
.mcd_c01292{transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);}
.m20d_c01292{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);}
.m1fc_c01292{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);}
.mdf_c01292{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);}
.m1cb_c01292{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01292{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.mb5_c01292{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.me5_c01292{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);}
.m203_c01292{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m137_c01292{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);}
.m177_c01292{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);}
.m113_c01292{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.m12b_c01292{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.m210_c01292{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.me1_c01292{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);}
.md9_c01292{transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);}
.m122_c01292{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.mab_c01292{transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);}
.m196_c01292{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.mef_c01292{transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);}
.md1_c01292{transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01292{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m129_c01292{transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01292{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m16f_c01292{transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);}
.mc5_c01292{transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);}
.md6_c01292{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01292{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mca_c01292{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);}
.m1a7_c01292{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m145_c01292{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m87_c01292{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);}
.m19a_c01292{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.m11f_c01292{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01292{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01292{transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01292{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);}
.m156_c01292{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.m79_c01292{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);}
.m170_c01292{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.m20c_c01292{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);}
.m178_c01292{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);}
.m5b_c01292{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);}
.m1f8_c01292{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);}
.m1e6_c01292{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m100_c01292{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.me4_c01292{transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);}
.m10f_c01292{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.m102_c01292{transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);}
.mf2_c01292{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);}
.m1d4_c01292{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);}
.m13a_c01292{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01292{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m3e_c01292{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);}
.m90_c01292{transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);}
.m139_c01292{transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);}
.m1e8_c01292{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01292{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01292{transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);}
.m116_c01292{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);}
.m1c0_c01292{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);}
.m1c7_c01292{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.mad_c01292{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);}
.m1d6_c01292{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m14d_c01292{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m165_c01292{transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);}
.m78_c01292{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01292{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m1f6_c01292{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.ma0_c01292{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m17_c01292{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m141_c01292{transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01292{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);}
.m216_c01292{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);}
.m43_c01292{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);}
.me7_c01292{transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);}
.md5_c01292{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.m2_c01292{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m199_c01292{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m20b_c01292{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);}
.m106_c01292{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.m184_c01292{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m1db_c01292{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m173_c01292{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);}
.mfd_c01292{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m1ef_c01292{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m215_c01292{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);}
.m19d_c01292{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m124_c01292{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.md2_c01292{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);}
.m48_c01292{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mfc_c01292{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);}
.m154_c01292{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.m1da_c01292{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);}
.m4f_c01292{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);}
.m202_c01292{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);}
.m13_c01292{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m186_c01292{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m10d_c01292{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);}
.m162_c01292{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);}
.m5d_c01292{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);}
.m61_c01292{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m174_c01292{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m16e_c01292{transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);}
.m15b_c01292{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.m223_c01292{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m225_c01292{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);}
.md4_c01292{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.m127_c01292{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m7b_c01292{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);}
.m66_c01292{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m8b_c01292{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.m83_c01292{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m1df_c01292{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.mc7_c01292{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);}
.mcc_c01292{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);}
.m104_c01292{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.m1e_c01292{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m46_c01292{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);}
.m1d1_c01292{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01292{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);}
.m1c3_c01292{transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01292{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m212_c01292{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mdc_c01292{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m1eb_c01292{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m7a_c01292{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.m105_c01292{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);}
.m1fb_c01292{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m192_c01292{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);}
.m175_c01292{transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);}
.m185_c01292{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);}
.m1d2_c01292{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);}
.m166_c01292{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.m96_c01292{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m155_c01292{transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);}
.m1f5_c01292{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);}
.m52_c01292{transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);}
.m168_c01292{transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);}
.m21f_c01292{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);}
.m103_c01292{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.mbd_c01292{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);}
.m1f4_c01292{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);}
.m11_c01292{transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);}
.m9e_c01292{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.mc9_c01292{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.mdd_c01292{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);}
.m171_c01292{transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);}
.m151_c01292{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);}
.m12f_c01292{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m55_c01292{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.m163_c01292{transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);}
.me6_c01292{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);}
.m1c8_c01292{transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);}
.m160_c01292{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m76_c01292{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mf1_c01292{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);}
.mfb_c01292{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);}
.m183_c01292{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);}
.m18d_c01292{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);}
.m1a4_c01292{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);}
.m1e7_c01292{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m10e_c01292{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.m189_c01292{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m224_c01292{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);}
.m1b6_c01292{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);}
.m1be_c01292{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m5_c01292{transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);}
.m1_c01292{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);}
.m18_c01292{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);}
.m82_c01292{transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);}
.mf3_c01292{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);}
.m15_c01292{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);}
.m3d_c01292{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m17c_c01292{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);}
.m18a_c01292{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m204_c01292{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m144_c01292{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);}
.m114_c01292{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01292{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m109_c01292{transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01292{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m1f9_c01292{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);}
.m1d_c01292{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);}
.m142_c01292{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);}
.m19c_c01292{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m17a_c01292{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);}
.m36_c01292{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);}
.m126_c01292{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m136_c01292{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);}
.m80_c01292{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);}
.m29_c01292{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m74_c01292{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);}
.m1c_c01292{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);}
.m169_c01292{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);}
.m59_c01292{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);}
.mde_c01292{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m20_c01292{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01292{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01292{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);}
.m11b_c01292{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m60_c01292{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);}
.m32_c01292{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4_c01292{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m120_c01292{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m30_c01292{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);}
.m218_c01292{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m86_c01292{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);}
.m3c_c01292{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);}
.m3_c01292{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01292{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m158_c01292{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);}
.m16_c01292{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c01292{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01292{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);}
.m77_c01292{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01292{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m56_c01292{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m14e_c01292{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m13d_c01292{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m27_c01292{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01292{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m123_c01292{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);}
.m14_c01292{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m84_c01292{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf9_c01292{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mce_c01292{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);}
.m2f_c01292{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m146_c01292{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m39_c01292{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);}
.m35_c01292{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m58_c01292{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m8_c01292{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);}
.m1ab_c01292{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m16d_c01292{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m44_c01292{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);}
.m1a_c01292{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m176_c01292{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);}
.m2b_c01292{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m73_c01292{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m13e_c01292{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m147_c01292{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m97_c01292{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);}
.m23_c01292{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);}
.m19_c01292{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m18c_c01292{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m72_c01292{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m9_c01292{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m152_c01292{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m133_c01292{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01292{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m34_c01292{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c01292{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m20e_c01292{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m194_c01292{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m17e_c01292{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m11d_c01292{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01292{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);}
.m1c2_c01292{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);}
.m10_c01292{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m138_c01292{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m207_c01292{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m33_c01292{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);}
.m28_c01292{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m70_c01292{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m42_c01292{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m38_c01292{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m64_c01292{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m13f_c01292{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m227_c01292{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01292{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m62_c01292{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m21_c01292{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01292{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01292{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.m0_c01292{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.me_c01292{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m15c_c01292{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01292{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.mf8_c01292{transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01292{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);}
.m2c_c01292{transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01292{transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.835000,0.000000,0.000000,0.250000,0,0);}
.mfa_c01292{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.mea_c01292{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m37_c01292{transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01292{transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.895000,0.000000,0.000000,0.250000,0,0);}
.m134_c01292{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.mf6_c01292{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m10a_c01292{transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);}
.m206_c01292{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.m21b_c01292{transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);}
.m17b_c01292{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.m208_c01292{transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);}
.m7_c01292{transform:matrix(1.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.525000,0.000000,0.000000,0.250000,0,0);}
.m50_c01292{transform:matrix(1.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.535000,0.000000,0.000000,0.250000,0,0);}
.m21d_c01292{transform:matrix(1.907500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.907500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.907500,0.000000,0.000000,0.250000,0,0);}
.m40_c01292{transform:matrix(4.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.752500,0.000000,0.000000,0.250000,0,0);}
.v2_c01292{vertical-align:-3.480000px;}
.v0_c01292{vertical-align:0.000000px;}
.v1_c01292{vertical-align:3.480000px;}
.ls3_c01292{letter-spacing:0.000000px;}
.ls2_c01292{letter-spacing:25.177440px;}
.ls0_c01292{letter-spacing:33.639000px;}
.ls1_c01292{letter-spacing:36.299760px;}
.sc__c01292{text-shadow:none;}
.sc0_c01292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01292{-webkit-text-stroke:0px transparent;}
.sc0_c01292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01292{word-spacing:0.000000px;}
.fc0_c01292{color:transparent;}
.fs4_c01292{font-size:3.456000px;}
.fs7_c01292{font-size:6.000000px;}
.fs8_c01292{font-size:6.900000px;}
.fs16_c01292{font-size:10.380000px;}
.fs0_c01292{font-size:13.800000px;}
.fs13_c01292{font-size:17.280000px;}
.fs6_c01292{font-size:20.760000px;}
.fse_c01292{font-size:24.180000px;}
.fs5_c01292{font-size:27.660000px;}
.fs17_c01292{font-size:31.080000px;}
.fs15_c01292{font-size:34.560000px;}
.fsc_c01292{font-size:38.040000px;}
.fsd_c01292{font-size:41.460000px;}
.fsf_c01292{font-size:44.940000px;}
.fs14_c01292{font-size:48.360000px;}
.fsb_c01292{font-size:51.840000px;}
.fsa_c01292{font-size:55.320000px;}
.fs11_c01292{font-size:58.740000px;}
.fs1_c01292{font-size:62.220000px;}
.fs18_c01292{font-size:65.640000px;}
.fs12_c01292{font-size:69.120000px;}
.fs10_c01292{font-size:72.600000px;}
.fs19_c01292{font-size:76.020000px;}
.fs21_c01292{font-size:79.500000px;}
.fs1c_c01292{font-size:82.920000px;}
.fs1b_c01292{font-size:86.400000px;}
.fs1a_c01292{font-size:89.880000px;}
.fs3_c01292{font-size:93.300000px;}
.fs22_c01292{font-size:96.780000px;}
.fs1d_c01292{font-size:100.200000px;}
.fs9_c01292{font-size:103.680000px;}
.fs20_c01292{font-size:107.160000px;}
.fs1e_c01292{font-size:110.580000px;}
.fs23_c01292{font-size:114.060000px;}
.fs1f_c01292{font-size:117.480000px;}
.fs24_c01292{font-size:120.960000px;}
.fs2_c01292{font-size:138.240000px;}
.y0_c01292{bottom:0.000000px;}
.y22f_c01292{bottom:176.250000px;}
.y22e_c01292{bottom:184.890000px;}
.y22d_c01292{bottom:186.630000px;}
.y22b_c01292{bottom:187.485000px;}
.y22a_c01292{bottom:189.210000px;}
.y22c_c01292{bottom:190.950000px;}
.y228_c01292{bottom:193.530000px;}
.y229_c01292{bottom:196.995000px;}
.y227_c01292{bottom:198.720000px;}
.y225_c01292{bottom:203.040000px;}
.y226_c01292{bottom:204.765000px;}
.y224_c01292{bottom:207.360000px;}
.y222_c01292{bottom:208.230000px;}
.y220_c01292{bottom:209.085000px;}
.y223_c01292{bottom:211.680000px;}
.y221_c01292{bottom:212.550000px;}
.y21e_c01292{bottom:213.405000px;}
.y21c_c01292{bottom:215.130000px;}
.y21f_c01292{bottom:216.000000px;}
.y21d_c01292{bottom:226.365000px;}
.y21b_c01292{bottom:228.090000px;}
.y217_c01292{bottom:229.830000px;}
.y216_c01292{bottom:230.685000px;}
.y219_c01292{bottom:231.555000px;}
.y215_c01292{bottom:232.410000px;}
.y21a_c01292{bottom:233.280000px;}
.y218_c01292{bottom:234.150000px;}
.y214_c01292{bottom:247.110000px;}
.y212_c01292{bottom:248.835000px;}
.y211_c01292{bottom:249.690000px;}
.y20e_c01292{bottom:250.560000px;}
.y20d_c01292{bottom:252.285000px;}
.y210_c01292{bottom:254.010000px;}
.y20f_c01292{bottom:254.880000px;}
.y213_c01292{bottom:259.200000px;}
.y20a_c01292{bottom:260.070000px;}
.y208_c01292{bottom:261.795000px;}
.y20b_c01292{bottom:266.970000px;}
.y207_c01292{bottom:267.840000px;}
.y209_c01292{bottom:269.565000px;}
.y205_c01292{bottom:270.435000px;}
.y20c_c01292{bottom:271.290000px;}
.y204_c01292{bottom:272.160000px;}
.y203_c01292{bottom:273.030000px;}
.y206_c01292{bottom:273.885000px;}
.y202_c01292{bottom:274.755000px;}
.y200_c01292{bottom:275.610000px;}
.y201_c01292{bottom:279.930000px;}
.y1ff_c01292{bottom:281.670000px;}
.y1fe_c01292{bottom:282.525000px;}
.y1fd_c01292{bottom:288.570000px;}
.y1fc_c01292{bottom:292.035000px;}
.y1fb_c01292{bottom:292.890000px;}
.y1f8_c01292{bottom:295.485000px;}
.y1f9_c01292{bottom:300.675000px;}
.y1f7_c01292{bottom:301.530000px;}
.y1fa_c01292{bottom:304.995000px;}
.y1f6_c01292{bottom:307.590000px;}
.y1f4_c01292{bottom:309.315000px;}
.y1f5_c01292{bottom:311.910000px;}
.y1f1_c01292{bottom:312.765000px;}
.y1f3_c01292{bottom:316.230000px;}
.y1ef_c01292{bottom:317.085000px;}
.y1ee_c01292{bottom:317.955000px;}
.y1f2_c01292{bottom:319.680000px;}
.y1f0_c01292{bottom:321.405000px;}
.y1ed_c01292{bottom:324.870000px;}
.y1ea_c01292{bottom:332.640000px;}
.y1ec_c01292{bottom:333.510000px;}
.y1eb_c01292{bottom:334.365000px;}
.y1e9_c01292{bottom:335.235000px;}
.y1e6_c01292{bottom:337.830000px;}
.y1e7_c01292{bottom:338.685000px;}
.y1e8_c01292{bottom:339.555000px;}
.y1e5_c01292{bottom:342.150000px;}
.y1e4_c01292{bottom:343.875000px;}
.y1e1_c01292{bottom:350.790000px;}
.y1e0_c01292{bottom:351.645000px;}
.y1e3_c01292{bottom:354.240000px;}
.y1df_c01292{bottom:355.965000px;}
.y1e2_c01292{bottom:356.835000px;}
.y1dd_c01292{bottom:358.560000px;}
.y1de_c01292{bottom:359.430000px;}
.y1dc_c01292{bottom:361.155000px;}
.y1da_c01292{bottom:362.010000px;}
.y1db_c01292{bottom:365.475000px;}
.y1d9_c01292{bottom:369.795000px;}
.y1d7_c01292{bottom:372.390000px;}
.y1d8_c01292{bottom:374.115000px;}
.y1d5_c01292{bottom:377.565000px;}
.y1d4_c01292{bottom:378.435000px;}
.y1d1_c01292{bottom:379.290000px;}
.y1d3_c01292{bottom:381.885000px;}
.y1d2_c01292{bottom:383.610000px;}
.y1cf_c01292{bottom:384.480000px;}
.y1d0_c01292{bottom:385.350000px;}
.y1cd_c01292{bottom:390.525000px;}
.y1d6_c01292{bottom:391.395000px;}
.y1cc_c01292{bottom:393.990000px;}
.y1cb_c01292{bottom:394.845000px;}
.y1ca_c01292{bottom:397.440000px;}
.y1c9_c01292{bottom:398.310000px;}
.y1c7_c01292{bottom:400.035000px;}
.y1c6_c01292{bottom:401.760000px;}
.y1ce_c01292{bottom:406.950000px;}
.y1c4_c01292{bottom:410.400000px;}
.y1c3_c01292{bottom:412.125000px;}
.y1c2_c01292{bottom:413.850000px;}
.y1c5_c01292{bottom:414.720000px;}
.y1c1_c01292{bottom:415.590000px;}
.y1c8_c01292{bottom:416.445000px;}
.y1be_c01292{bottom:417.315000px;}
.y1c0_c01292{bottom:420.765000px;}
.y1bc_c01292{bottom:425.085000px;}
.y1bd_c01292{bottom:426.810000px;}
.y1ba_c01292{bottom:431.130000px;}
.y1bf_c01292{bottom:432.870000px;}
.y1b9_c01292{bottom:435.450000px;}
.y1b8_c01292{bottom:437.190000px;}
.y1b7_c01292{bottom:438.915000px;}
.y1b6_c01292{bottom:440.640000px;}
.y1bb_c01292{bottom:441.510000px;}
.y1b4_c01292{bottom:444.090000px;}
.y1b3_c01292{bottom:444.960000px;}
.y1b5_c01292{bottom:445.830000px;}
.y1b2_c01292{bottom:452.730000px;}
.y1b0_c01292{bottom:455.325000px;}
.y1af_c01292{bottom:456.195000px;}
.y1b1_c01292{bottom:457.050000px;}
.y1ae_c01292{bottom:457.920000px;}
.y1ac_c01292{bottom:458.790000px;}
.y1a6_c01292{bottom:461.370000px;}
.y1a4_c01292{bottom:463.965000px;}
.y1a9_c01292{bottom:465.690000px;}
.y1a7_c01292{bottom:466.560000px;}
.y1ab_c01292{bottom:469.155000px;}
.y1ad_c01292{bottom:471.750000px;}
.y1a5_c01292{bottom:472.605000px;}
.y1a2_c01292{bottom:473.475000px;}
.y1aa_c01292{bottom:474.330000px;}
.y1a3_c01292{bottom:475.200000px;}
.y1a0_c01292{bottom:476.070000px;}
.y1a8_c01292{bottom:476.925000px;}
.y1a1_c01292{bottom:478.650000px;}
.y19d_c01292{bottom:479.520000px;}
.y19f_c01292{bottom:480.390000px;}
.y19b_c01292{bottom:481.245000px;}
.y19c_c01292{bottom:482.115000px;}
.y19e_c01292{bottom:484.710000px;}
.y19a_c01292{bottom:487.290000px;}
.y199_c01292{bottom:490.755000px;}
.y198_c01292{bottom:494.205000px;}
.y197_c01292{bottom:495.075000px;}
.y196_c01292{bottom:497.670000px;}
.y195_c01292{bottom:499.395000px;}
.y194_c01292{bottom:500.250000px;}
.y193_c01292{bottom:501.120000px;}
.y18f_c01292{bottom:508.035000px;}
.y190_c01292{bottom:508.890000px;}
.y191_c01292{bottom:510.630000px;}
.y18e_c01292{bottom:513.210000px;}
.y18d_c01292{bottom:514.080000px;}
.y18c_c01292{bottom:515.805000px;}
.y192_c01292{bottom:516.675000px;}
.y187_c01292{bottom:517.530000px;}
.y189_c01292{bottom:518.400000px;}
.y18b_c01292{bottom:520.125000px;}
.y18a_c01292{bottom:522.720000px;}
.y188_c01292{bottom:528.765000px;}
.y184_c01292{bottom:529.635000px;}
.y180_c01292{bottom:532.230000px;}
.y183_c01292{bottom:534.810000px;}
.y17c_c01292{bottom:535.680000px;}
.y186_c01292{bottom:538.275000px;}
.y17d_c01292{bottom:539.130000px;}
.y17a_c01292{bottom:540.870000px;}
.y185_c01292{bottom:541.725000px;}
.y177_c01292{bottom:542.595000px;}
.y176_c01292{bottom:544.320000px;}
.y17b_c01292{bottom:545.190000px;}
.y174_c01292{bottom:546.045000px;}
.y179_c01292{bottom:546.915000px;}
.y178_c01292{bottom:547.770000px;}
.y17e_c01292{bottom:548.640000px;}
.y175_c01292{bottom:549.510000px;}
.y182_c01292{bottom:551.235000px;}
.y181_c01292{bottom:552.090000px;}
.y17f_c01292{bottom:554.685000px;}
.y173_c01292{bottom:555.555000px;}
.y170_c01292{bottom:556.410000px;}
.y172_c01292{bottom:559.005000px;}
.y171_c01292{bottom:559.875000px;}
.y16d_c01292{bottom:561.600000px;}
.y169_c01292{bottom:562.470000px;}
.y16c_c01292{bottom:563.325000px;}
.y16a_c01292{bottom:564.195000px;}
.y167_c01292{bottom:565.920000px;}
.y16b_c01292{bottom:566.790000px;}
.y168_c01292{bottom:567.645000px;}
.y166_c01292{bottom:574.560000px;}
.y16f_c01292{bottom:575.430000px;}
.y16e_c01292{bottom:576.285000px;}
.y163_c01292{bottom:578.010000px;}
.y162_c01292{bottom:579.750000px;}
.y165_c01292{bottom:580.605000px;}
.y15f_c01292{bottom:581.475000px;}
.y15e_c01292{bottom:582.330000px;}
.y164_c01292{bottom:583.200000px;}
.y160_c01292{bottom:584.070000px;}
.y161_c01292{bottom:586.650000px;}
.y15d_c01292{bottom:589.245000px;}
.y15c_c01292{bottom:594.435000px;}
.y15b_c01292{bottom:595.290000px;}
.y15a_c01292{bottom:598.755000px;}
.y158_c01292{bottom:599.610000px;}
.y156_c01292{bottom:602.205000px;}
.y155_c01292{bottom:604.800000px;}
.y159_c01292{bottom:605.670000px;}
.y157_c01292{bottom:606.525000px;}
.y153_c01292{bottom:615.165000px;}
.y152_c01292{bottom:616.035000px;}
.y150_c01292{bottom:617.760000px;}
.y151_c01292{bottom:619.485000px;}
.y154_c01292{bottom:620.355000px;}
.y14d_c01292{bottom:622.080000px;}
.y14e_c01292{bottom:622.950000px;}
.y14f_c01292{bottom:624.675000px;}
.y14c_c01292{bottom:626.400000px;}
.y14b_c01292{bottom:630.720000px;}
.y149_c01292{bottom:635.910000px;}
.y148_c01292{bottom:636.765000px;}
.y14a_c01292{bottom:638.490000px;}
.y146_c01292{bottom:640.230000px;}
.y147_c01292{bottom:641.085000px;}
.y143_c01292{bottom:642.810000px;}
.y144_c01292{bottom:643.680000px;}
.y145_c01292{bottom:646.275000px;}
.y142_c01292{bottom:647.130000px;}
.y141_c01292{bottom:652.320000px;}
.y140_c01292{bottom:653.190000px;}
.y13d_c01292{bottom:654.915000px;}
.y13e_c01292{bottom:655.770000px;}
.y13a_c01292{bottom:660.960000px;}
.y138_c01292{bottom:665.280000px;}
.y13b_c01292{bottom:667.005000px;}
.y139_c01292{bottom:667.875000px;}
.y13f_c01292{bottom:672.195000px;}
.y137_c01292{bottom:673.050000px;}
.y136_c01292{bottom:678.240000px;}
.y13c_c01292{bottom:679.110000px;}
.y135_c01292{bottom:681.690000px;}
.y134_c01292{bottom:686.880000px;}
.y133_c01292{bottom:693.795000px;}
.y132_c01292{bottom:697.245000px;}
.y131_c01292{bottom:698.115000px;}
.y12c_c01292{bottom:700.710000px;}
.y130_c01292{bottom:701.565000px;}
.y12d_c01292{bottom:702.435000px;}
.y12f_c01292{bottom:704.160000px;}
.y12e_c01292{bottom:705.030000px;}
.y12a_c01292{bottom:707.610000px;}
.y12b_c01292{bottom:709.350000px;}
.y129_c01292{bottom:713.670000px;}
.y124_c01292{bottom:715.395000px;}
.y123_c01292{bottom:716.250000px;}
.y122_c01292{bottom:717.990000px;}
.y126_c01292{bottom:719.715000px;}
.y127_c01292{bottom:720.570000px;}
.y125_c01292{bottom:721.440000px;}
.y11f_c01292{bottom:722.310000px;}
.y121_c01292{bottom:723.165000px;}
.y120_c01292{bottom:726.630000px;}
.y128_c01292{bottom:727.485000px;}
.y11d_c01292{bottom:734.400000px;}
.y119_c01292{bottom:739.590000px;}
.y116_c01292{bottom:741.315000px;}
.y118_c01292{bottom:742.170000px;}
.y11b_c01292{bottom:743.040000px;}
.y117_c01292{bottom:747.360000px;}
.y11a_c01292{bottom:748.230000px;}
.y11e_c01292{bottom:749.085000px;}
.y11c_c01292{bottom:749.955000px;}
.y115_c01292{bottom:756.000000px;}
.y114_c01292{bottom:757.725000px;}
.y111_c01292{bottom:758.595000px;}
.y112_c01292{bottom:759.450000px;}
.y110_c01292{bottom:761.190000px;}
.y113_c01292{bottom:762.915000px;}
.y10d_c01292{bottom:763.770000px;}
.y10e_c01292{bottom:768.090000px;}
.y10f_c01292{bottom:768.960000px;}
.y10c_c01292{bottom:770.685000px;}
.y109_c01292{bottom:776.730000px;}
.y10b_c01292{bottom:777.600000px;}
.y107_c01292{bottom:779.325000px;}
.y105_c01292{bottom:781.050000px;}
.y10a_c01292{bottom:781.920000px;}
.y108_c01292{bottom:782.790000px;}
.y104_c01292{bottom:783.645000px;}
.y106_c01292{bottom:793.155000px;}
.y102_c01292{bottom:797.475000px;}
.y101_c01292{bottom:798.330000px;}
.y103_c01292{bottom:800.070000px;}
.y100_c01292{bottom:801.795000px;}
.yff_c01292{bottom:805.245000px;}
.yfe_c01292{bottom:808.710000px;}
.yfd_c01292{bottom:817.350000px;}
.yfc_c01292{bottom:818.205000px;}
.yfa_c01292{bottom:819.075000px;}
.yf9_c01292{bottom:819.930000px;}
.yfb_c01292{bottom:823.395000px;}
.yf2_c01292{bottom:824.250000px;}
.yf3_c01292{bottom:825.120000px;}
.yf6_c01292{bottom:825.990000px;}
.yf1_c01292{bottom:827.715000px;}
.yf8_c01292{bottom:832.890000px;}
.yf5_c01292{bottom:833.760000px;}
.yf7_c01292{bottom:834.630000px;}
.yf4_c01292{bottom:835.485000px;}
.yf0_c01292{bottom:837.210000px;}
.yef_c01292{bottom:839.805000px;}
.yee_c01292{bottom:842.400000px;}
.yed_c01292{bottom:843.270000px;}
.yeb_c01292{bottom:844.995000px;}
.yea_c01292{bottom:848.445000px;}
.yec_c01292{bottom:851.040000px;}
.ye9_c01292{bottom:855.360000px;}
.ye8_c01292{bottom:857.085000px;}
.ye6_c01292{bottom:858.810000px;}
.ye7_c01292{bottom:859.680000px;}
.ye1_c01292{bottom:862.275000px;}
.ye5_c01292{bottom:864.870000px;}
.yde_c01292{bottom:870.045000px;}
.ye4_c01292{bottom:870.915000px;}
.ye0_c01292{bottom:871.770000px;}
.ydf_c01292{bottom:872.640000px;}
.ye3_c01292{bottom:874.365000px;}
.ye2_c01292{bottom:875.235000px;}
.ydd_c01292{bottom:876.960000px;}
.ydc_c01292{bottom:877.830000px;}
.yda_c01292{bottom:882.150000px;}
.ydb_c01292{bottom:883.875000px;}
.yd8_c01292{bottom:887.325000px;}
.yd9_c01292{bottom:891.645000px;}
.yd7_c01292{bottom:896.835000px;}
.yd4_c01292{bottom:899.430000px;}
.yd5_c01292{bottom:900.285000px;}
.yd2_c01292{bottom:901.155000px;}
.yd3_c01292{bottom:902.010000px;}
.yd6_c01292{bottom:902.880000px;}
.yd1_c01292{bottom:903.750000px;}
.yd0_c01292{bottom:905.475000px;}
.ycd_c01292{bottom:906.330000px;}
.ycf_c01292{bottom:908.925000px;}
.yce_c01292{bottom:911.520000px;}
.ycc_c01292{bottom:917.565000px;}
.yca_c01292{bottom:921.030000px;}
.yc9_c01292{bottom:921.885000px;}
.yc8_c01292{bottom:922.755000px;}
.ycb_c01292{bottom:923.610000px;}
.yc6_c01292{bottom:925.350000px;}
.yc5_c01292{bottom:927.930000px;}
.yc7_c01292{bottom:931.395000px;}
.yc4_c01292{bottom:936.570000px;}
.yc3_c01292{bottom:938.310000px;}
.yc2_c01292{bottom:941.760000px;}
.yc1_c01292{bottom:944.355000px;}
.ybc_c01292{bottom:946.080000px;}
.ybe_c01292{bottom:946.950000px;}
.yc0_c01292{bottom:948.675000px;}
.ybd_c01292{bottom:950.400000px;}
.ybf_c01292{bottom:951.270000px;}
.ybb_c01292{bottom:959.040000px;}
.yba_c01292{bottom:961.635000px;}
.yb7_c01292{bottom:964.230000px;}
.yb6_c01292{bottom:966.810000px;}
.yb9_c01292{bottom:967.680000px;}
.yb5_c01292{bottom:969.405000px;}
.yb4_c01292{bottom:972.870000px;}
.yb8_c01292{bottom:973.725000px;}
.yb3_c01292{bottom:975.450000px;}
.yb2_c01292{bottom:977.190000px;}
.yb0_c01292{bottom:978.915000px;}
.yaf_c01292{bottom:980.640000px;}
.yae_c01292{bottom:991.875000px;}
.yb1_c01292{bottom:994.470000px;}
.yac_c01292{bottom:997.050000px;}
.yad_c01292{bottom:1000.515000px;}
.yab_c01292{bottom:1004.835000px;}
.yaa_c01292{bottom:1005.690000px;}
.ya9_c01292{bottom:1009.155000px;}
.ya8_c01292{bottom:1019.520000px;}
.ya7_c01292{bottom:1020.390000px;}
.ya6_c01292{bottom:1021.245000px;}
.y234_c01292{bottom:1023.840000px;}
.ya5_c01292{bottom:1024.710000px;}
.ya1_c01292{bottom:1025.565000px;}
.ya3_c01292{bottom:1026.435000px;}
.ya2_c01292{bottom:1029.030000px;}
.y9f_c01292{bottom:1031.610000px;}
.ya4_c01292{bottom:1034.205000px;}
.ya0_c01292{bottom:1035.930000px;}
.y9d_c01292{bottom:1039.395000px;}
.y99_c01292{bottom:1043.715000px;}
.y9c_c01292{bottom:1045.440000px;}
.y9b_c01292{bottom:1046.310000px;}
.y9a_c01292{bottom:1048.035000px;}
.y9e_c01292{bottom:1049.760000px;}
.y98_c01292{bottom:1061.850000px;}
.y96_c01292{bottom:1062.720000px;}
.y97_c01292{bottom:1063.590000px;}
.y95_c01292{bottom:1065.315000px;}
.y94_c01292{bottom:1066.170000px;}
.y92_c01292{bottom:1067.040000px;}
.y93_c01292{bottom:1067.910000px;}
.y91_c01292{bottom:1072.230000px;}
.y90_c01292{bottom:1080.000000px;}
.y8f_c01292{bottom:1080.870000px;}
.y8e_c01292{bottom:1082.595000px;}
.y8c_c01292{bottom:1084.320000px;}
.y8d_c01292{bottom:1086.915000px;}
.y8b_c01292{bottom:1087.770000px;}
.y8a_c01292{bottom:1089.510000px;}
.y89_c01292{bottom:1095.555000px;}
.y87_c01292{bottom:1102.470000px;}
.y86_c01292{bottom:1104.195000px;}
.y88_c01292{bottom:1107.645000px;}
.y85_c01292{bottom:1109.370000px;}
.y84_c01292{bottom:1110.240000px;}
.y82_c01292{bottom:1111.965000px;}
.y83_c01292{bottom:1120.605000px;}
.y7f_c01292{bottom:1122.330000px;}
.y7e_c01292{bottom:1124.925000px;}
.y7d_c01292{bottom:1125.795000px;}
.y7c_c01292{bottom:1127.520000px;}
.y81_c01292{bottom:1131.840000px;}
.y80_c01292{bottom:1133.565000px;}
.y7b_c01292{bottom:1135.290000px;}
.y79_c01292{bottom:1136.160000px;}
.y7a_c01292{bottom:1138.755000px;}
.y77_c01292{bottom:1140.480000px;}
.y76_c01292{bottom:1143.930000px;}
.y75_c01292{bottom:1144.800000px;}
.y78_c01292{bottom:1145.670000px;}
.y74_c01292{bottom:1152.570000px;}
.y73_c01292{bottom:1154.310000px;}
.y70_c01292{bottom:1155.165000px;}
.y71_c01292{bottom:1158.630000px;}
.y6f_c01292{bottom:1159.485000px;}
.y72_c01292{bottom:1160.355000px;}
.y6d_c01292{bottom:1161.210000px;}
.y6c_c01292{bottom:1162.080000px;}
.y6e_c01292{bottom:1162.950000px;}
.y6b_c01292{bottom:1163.805000px;}
.y6a_c01292{bottom:1166.400000px;}
.y69_c01292{bottom:1168.125000px;}
.y68_c01292{bottom:1168.995000px;}
.y67_c01292{bottom:1171.590000px;}
.y66_c01292{bottom:1175.040000px;}
.y64_c01292{bottom:1175.910000px;}
.y65_c01292{bottom:1176.765000px;}
.y63_c01292{bottom:1178.490000px;}
.y62_c01292{bottom:1179.360000px;}
.y61_c01292{bottom:1180.230000px;}
.y60_c01292{bottom:1181.085000px;}
.y5e_c01292{bottom:1185.405000px;}
.y5c_c01292{bottom:1187.130000px;}
.y5f_c01292{bottom:1188.870000px;}
.y5d_c01292{bottom:1190.595000px;}
.y5b_c01292{bottom:1195.770000px;}
.y5a_c01292{bottom:1200.090000px;}
.y57_c01292{bottom:1202.685000px;}
.y56_c01292{bottom:1204.410000px;}
.y58_c01292{bottom:1205.280000px;}
.y55_c01292{bottom:1213.920000px;}
.y54_c01292{bottom:1215.645000px;}
.y53_c01292{bottom:1216.515000px;}
.y59_c01292{bottom:1221.690000px;}
.y4e_c01292{bottom:1222.560000px;}
.y51_c01292{bottom:1224.285000px;}
.y52_c01292{bottom:1225.155000px;}
.y50_c01292{bottom:1226.010000px;}
.y4b_c01292{bottom:1227.750000px;}
.y4d_c01292{bottom:1229.475000px;}
.y4c_c01292{bottom:1230.330000px;}
.y49_c01292{bottom:1231.200000px;}
.y4a_c01292{bottom:1232.070000px;}
.y4f_c01292{bottom:1236.390000px;}
.y46_c01292{bottom:1241.565000px;}
.y48_c01292{bottom:1243.290000px;}
.y45_c01292{bottom:1244.160000px;}
.y47_c01292{bottom:1245.030000px;}
.y43_c01292{bottom:1247.610000px;}
.y41_c01292{bottom:1249.350000px;}
.y3f_c01292{bottom:1250.205000px;}
.y40_c01292{bottom:1251.930000px;}
.y3e_c01292{bottom:1252.800000px;}
.y3d_c01292{bottom:1257.120000px;}
.y44_c01292{bottom:1257.990000px;}
.y42_c01292{bottom:1260.570000px;}
.y233_c01292{bottom:1263.165000px;}
.y3c_c01292{bottom:1266.630000px;}
.y36_c01292{bottom:1270.080000px;}
.y37_c01292{bottom:1270.950000px;}
.y3a_c01292{bottom:1272.675000px;}
.y3b_c01292{bottom:1275.270000px;}
.y38_c01292{bottom:1277.850000px;}
.y39_c01292{bottom:1280.445000px;}
.y35_c01292{bottom:1281.315000px;}
.y31_c01292{bottom:1283.040000px;}
.y32_c01292{bottom:1283.910000px;}
.y33_c01292{bottom:1284.765000px;}
.y34_c01292{bottom:1285.635000px;}
.y2f_c01292{bottom:1286.490000px;}
.y30_c01292{bottom:1288.230000px;}
.y2b_c01292{bottom:1289.085000px;}
.y2e_c01292{bottom:1289.955000px;}
.y2a_c01292{bottom:1290.810000px;}
.y25_c01292{bottom:1291.680000px;}
.y24_c01292{bottom:1292.550000px;}
.y2c_c01292{bottom:1293.405000px;}
.y29_c01292{bottom:1294.275000px;}
.y2d_c01292{bottom:1296.000000px;}
.y26_c01292{bottom:1297.725000px;}
.y23_c01292{bottom:1301.190000px;}
.y28_c01292{bottom:1302.045000px;}
.y27_c01292{bottom:1302.915000px;}
.y22_c01292{bottom:1303.770000px;}
.y21_c01292{bottom:1305.510000px;}
.y1f_c01292{bottom:1306.365000px;}
.y20_c01292{bottom:1307.235000px;}
.y1e_c01292{bottom:1308.960000px;}
.y1d_c01292{bottom:1310.685000px;}
.y17_c01292{bottom:1314.150000px;}
.y16_c01292{bottom:1315.005000px;}
.y1c_c01292{bottom:1315.875000px;}
.y15_c01292{bottom:1318.470000px;}
.y1a_c01292{bottom:1319.325000px;}
.y19_c01292{bottom:1320.195000px;}
.y18_c01292{bottom:1322.790000px;}
.y1b_c01292{bottom:1323.645000px;}
.y14_c01292{bottom:1327.110000px;}
.yb_c01292{bottom:1332.285000px;}
.y11_c01292{bottom:1334.010000px;}
.yd_c01292{bottom:1334.880000px;}
.y12_c01292{bottom:1335.750000px;}
.y13_c01292{bottom:1338.330000px;}
.yf_c01292{bottom:1339.200000px;}
.y10_c01292{bottom:1340.070000px;}
.ye_c01292{bottom:1340.925000px;}
.yc_c01292{bottom:1343.520000px;}
.ya_c01292{bottom:1348.710000px;}
.y6_c01292{bottom:1350.435000px;}
.y9_c01292{bottom:1351.290000px;}
.y8_c01292{bottom:1352.160000px;}
.y5_c01292{bottom:1353.030000px;}
.y3_c01292{bottom:1353.885000px;}
.y7_c01292{bottom:1354.755000px;}
.y4_c01292{bottom:1358.205000px;}
.y2_c01292{bottom:1361.670000px;}
.y1_c01292{bottom:1393.635000px;}
.y230_c01292{bottom:1435.965000px;}
.y231_c01292{bottom:1442.010000px;}
.y232_c01292{bottom:1442.880000px;}
.h6_c01292{height:3.110063px;}
.h9_c01292{height:5.399414px;}
.ha_c01292{height:6.209326px;}
.h18_c01292{height:6.590062px;}
.h19_c01292{height:9.340986px;}
.h2_c01292{height:12.418652px;}
.h15_c01292{height:15.550313px;}
.h8_c01292{height:18.681973px;}
.h10_c01292{height:21.759639px;}
.h7_c01292{height:24.891299px;}
.h1a_c01292{height:27.968965px;}
.h17_c01292{height:31.100625px;}
.he_c01292{height:34.232285px;}
.hf_c01292{height:37.309951px;}
.h11_c01292{height:40.441611px;}
.h16_c01292{height:43.519277px;}
.hd_c01292{height:46.650937px;}
.hc_c01292{height:49.782598px;}
.h13_c01292{height:52.860264px;}
.h3_c01292{height:55.991924px;}
.h1b_c01292{height:59.069590px;}
.h14_c01292{height:62.201250px;}
.h12_c01292{height:65.332910px;}
.h1c_c01292{height:68.410576px;}
.h24_c01292{height:71.542236px;}
.h1f_c01292{height:74.619902px;}
.h1e_c01292{height:77.751563px;}
.h1d_c01292{height:80.883223px;}
.h5_c01292{height:83.960889px;}
.h25_c01292{height:87.092549px;}
.h20_c01292{height:90.170215px;}
.hb_c01292{height:93.301875px;}
.h23_c01292{height:96.433535px;}
.h21_c01292{height:99.511201px;}
.h26_c01292{height:102.642861px;}
.h22_c01292{height:105.720527px;}
.h27_c01292{height:108.852188px;}
.h4_c01292{height:124.402500px;}
.h1_c01292{height:1518.750000px;}
.h0_c01292{height:1518.915000px;}
.w1_c01292{width:1086.750000px;}
.w0_c01292{width:1086.915000px;}
.x0_c01292{left:0.000000px;}
.x106_c01292{left:165.030000px;}
.x110_c01292{left:166.755000px;}
.x107_c01292{left:173.670000px;}
.xe9_c01292{left:181.440000px;}
.xd1_c01292{left:186.630000px;}
.x111_c01292{left:188.355000px;}
.x61_c01292{left:190.950000px;}
.x8a_c01292{left:193.530000px;}
.x6d_c01292{left:195.270000px;}
.x62_c01292{left:198.720000px;}
.x4e_c01292{left:201.315000px;}
.x63_c01292{left:203.040000px;}
.xea_c01292{left:204.765000px;}
.x10d_c01292{left:207.360000px;}
.x103_c01292{left:209.085000px;}
.xfc_c01292{left:211.680000px;}
.x8e_c01292{left:213.405000px;}
.xef_c01292{left:216.000000px;}
.x82_c01292{left:217.725000px;}
.x12b_c01292{left:219.450000px;}
.xe5_c01292{left:222.045000px;}
.x64_c01292{left:223.770000px;}
.xd2_c01292{left:226.365000px;}
.x10a_c01292{left:229.830000px;}
.x12e_c01292{left:231.555000px;}
.x83_c01292{left:233.280000px;}
.x59_c01292{left:235.875000px;}
.x112_c01292{left:237.600000px;}
.x2_c01292{left:239.325000px;}
.x9f_c01292{left:241.050000px;}
.x11_c01292{left:242.790000px;}
.x1d_c01292{left:244.515000px;}
.x4f_c01292{left:246.240000px;}
.xfd_c01292{left:247.965000px;}
.xc7_c01292{left:250.560000px;}
.x26_c01292{left:253.155000px;}
.x5a_c01292{left:259.200000px;}
.xd3_c01292{left:260.925000px;}
.xbc_c01292{left:264.390000px;}
.xa0_c01292{left:266.970000px;}
.x6e_c01292{left:271.290000px;}
.x94_c01292{left:273.885000px;}
.xa4_c01292{left:276.480000px;}
.x1_c01292{left:280.800000px;}
.xb9_c01292{left:284.250000px;}
.xa6_c01292{left:286.845000px;}
.x10b_c01292{left:288.570000px;}
.x8b_c01292{left:291.165000px;}
.x113_c01292{left:292.890000px;}
.xf3_c01292{left:297.210000px;}
.x1e_c01292{left:299.805000px;}
.x50_c01292{left:301.530000px;}
.x117_c01292{left:303.270000px;}
.xba_c01292{left:304.995000px;}
.x7b_c01292{left:306.720000px;}
.x127_c01292{left:313.635000px;}
.x65_c01292{left:316.230000px;}
.x11d_c01292{left:317.955000px;}
.x51_c01292{left:319.680000px;}
.xbd_c01292{left:322.275000px;}
.x124_c01292{left:326.595000px;}
.x1f_c01292{left:328.320000px;}
.x5_c01292{left:330.915000px;}
.xc8_c01292{left:334.365000px;}
.x3_c01292{left:337.830000px;}
.xf5_c01292{left:339.555000px;}
.xd4_c01292{left:342.150000px;}
.x36_c01292{left:345.600000px;}
.xb3_c01292{left:349.050000px;}
.x7c_c01292{left:353.370000px;}
.x5b_c01292{left:358.560000px;}
.x52_c01292{left:362.010000px;}
.x37_c01292{left:364.605000px;}
.x40_c01292{left:366.330000px;}
.x27_c01292{left:369.796050px;}
.x84_c01292{left:371.520000px;}
.xbe_c01292{left:373.245000px;}
.x7d_c01292{left:375.840000px;}
.xaa_c01292{left:378.435000px;}
.x28_c01292{left:381.030000px;}
.xb4_c01292{left:382.755000px;}
.x85_c01292{left:385.350000px;}
.x11f_c01292{left:387.075000px;}
.x6_c01292{left:390.525000px;}
.x108_c01292{left:392.250000px;}
.x38_c01292{left:393.990000px;}
.x29_c01292{left:395.715000px;}
.xaf_c01292{left:397.440000px;}
.x41_c01292{left:400.035000px;}
.xb0_c01292{left:401.760000px;}
.x42_c01292{left:404.355000px;}
.x118_c01292{left:406.080000px;}
.xcb_c01292{left:409.530000px;}
.x66_c01292{left:411.270000px;}
.x2a_c01292{left:412.995000px;}
.xf0_c01292{left:414.720000px;}
.x39_c01292{left:416.445000px;}
.xbf_c01292{left:420.765000px;}
.x43_c01292{left:422.490000px;}
.x44_c01292{left:427.680000px;}
.xc0_c01292{left:431.130000px;}
.xa3_c01292{left:434.595000px;}
.x2b_c01292{left:437.190000px;}
.xfe_c01292{left:438.915000px;}
.x86_c01292{left:443.235000px;}
.xd5_c01292{left:444.960000px;}
.x45_c01292{left:446.685000px;}
.x67_c01292{left:449.280000px;}
.x9a_c01292{left:451.005000px;}
.x2c_c01292{left:452.730000px;}
.xcc_c01292{left:454.470000px;}
.x87_c01292{left:456.195000px;}
.x3a_c01292{left:459.645000px;}
.x20_c01292{left:462.240000px;}
.xdf_c01292{left:464.835000px;}
.x2d_c01292{left:467.430000px;}
.xe6_c01292{left:470.010000px;}
.x2e_c01292{left:472.605000px;}
.x2f_c01292{left:474.330000px;}
.xd6_c01292{left:476.070000px;}
.xf7_c01292{left:477.795000px;}
.x10c_c01292{left:481.245000px;}
.xc1_c01292{left:483.840000px;}
.x114_c01292{left:488.160000px;}
.x7e_c01292{left:490.755000px;}
.xab_c01292{left:492.480000px;}
.xcd_c01292{left:495.075000px;}
.x7_c01292{left:496.800000px;}
.x119_c01292{left:498.525000px;}
.x8_c01292{left:501.120000px;}
.x88_c01292{left:503.715000px;}
.x53_c01292{left:506.310000px;}
.x46_c01292{left:508.890000px;}
.xce_c01292{left:510.630000px;}
.x8f_c01292{left:513.210000px;}
.x11a_c01292{left:514.950000px;}
.xeb_c01292{left:517.530360px;}
.x120_c01292{left:519.270000px;}
.xf8_c01292{left:520.995000px;}
.x30_c01292{left:522.720000px;}
.x12c_c01292{left:525.315000px;}
.xff_c01292{left:527.040000px;}
.xc9_c01292{left:528.765000px;}
.x104_c01292{left:533.955000px;}
.xf9_c01292{left:537.405000px;}
.x21_c01292{left:540.000000px;}
.x54_c01292{left:541.725000px;}
.x47_c01292{left:543.450000px;}
.x49_c01292{left:545.190000px;}
.x22_c01292{left:546.915000px;}
.x128_c01292{left:548.640000px;}
.xc2_c01292{left:551.235000px;}
.xa1_c01292{left:552.960000px;}
.xb5_c01292{left:554.685000px;}
.x11e_c01292{left:556.410000px;}
.x90_c01292{left:558.150000px;}
.x11b_c01292{left:559.875000px;}
.x95_c01292{left:561.600000px;}
.xc3_c01292{left:565.050000px;}
.xb1_c01292{left:566.790000px;}
.xbb_c01292{left:568.515000px;}
.xa5_c01292{left:570.240000px;}
.x68_c01292{left:572.835000px;}
.x8c_c01292{left:574.560000px;}
.x12_c01292{left:576.285000px;}
.x5c_c01292{left:578.010000px;}
.x105_c01292{left:579.750000px;}
.xdb_c01292{left:582.330000px;}
.xe7_c01292{left:585.795000px;}
.x13_c01292{left:590.115000px;}
.x10e_c01292{left:591.840000px;}
.x73_c01292{left:595.290000px;}
.x9_c01292{left:598.755000px;}
.x115_c01292{left:600.480000px;}
.x91_c01292{left:602.205000px;}
.xac_c01292{left:604.800000px;}
.x100_c01292{left:607.395000px;}
.x23_c01292{left:609.990000px;}
.x14_c01292{left:611.715000px;}
.xec_c01292{left:613.440000px;}
.x129_c01292{left:615.165000px;}
.x74_c01292{left:616.890000px;}
.x69_c01292{left:619.485000px;}
.xa_c01292{left:622.079544px;}
.xd7_c01292{left:623.805000px;}
.x109_c01292{left:625.530000px;}
.xb_c01292{left:627.270000px;}
.x15_c01292{left:628.995000px;}
.x6f_c01292{left:630.720000px;}
.xc4_c01292{left:633.315000px;}
.x89_c01292{left:636.765000px;}
.x75_c01292{left:639.360000px;}
.x96_c01292{left:641.955000px;}
.x55_c01292{left:644.550000px;}
.x16_c01292{left:646.275000px;}
.xb2_c01292{left:648.870000px;}
.x131_c01292{left:651.450000px;}
.x31_c01292{left:653.190000px;}
.xf4_c01292{left:654.915000px;}
.xc_c01292{left:657.510000px;}
.x125_c01292{left:659.235000px;}
.xca_c01292{left:660.960000px;}
.x48_c01292{left:663.555000px;}
.xa2_c01292{left:667.875000px;}
.xd_c01292{left:671.325000px;}
.x6a_c01292{left:674.790000px;}
.xf6_c01292{left:676.515000px;}
.x32_c01292{left:678.240000px;}
.x10f_c01292{left:679.965000px;}
.x4a_c01292{left:681.690000px;}
.xe_c01292{left:687.750000px;}
.xad_c01292{left:689.475000px;}
.xdc_c01292{left:691.200000px;}
.x9b_c01292{left:693.795000px;}
.x3b_c01292{left:696.390000px;}
.x76_c01292{left:698.115000px;}
.x5d_c01292{left:701.565000px;}
.xc5_c01292{left:703.290000px;}
.x11c_c01292{left:705.030000px;}
.xf_c01292{left:706.755000px;}
.x70_c01292{left:711.075000px;}
.x101_c01292{left:712.800000px;}
.x9e_c01292{left:714.525000px;}
.xe0_c01292{left:716.250000px;}
.xfa_c01292{left:718.845000px;}
.x5e_c01292{left:720.570000px;}
.xf1_c01292{left:724.035000px;}
.x17_c01292{left:725.760000px;}
.x6b_c01292{left:727.485000px;}
.x77_c01292{left:729.210000px;}
.x4_c01292{left:730.950000px;}
.x12f_c01292{left:732.675000px;}
.xa7_c01292{left:735.270000px;}
.x10_c01292{left:737.850000px;}
.x18_c01292{left:739.590000px;}
.x12a_c01292{left:741.315000px;}
.x19_c01292{left:743.040000px;}
.x4b_c01292{left:746.490000px;}
.xfb_c01292{left:748.230000px;}
.x7f_c01292{left:750.810000px;}
.x78_c01292{left:752.550000px;}
.x1a_c01292{left:756.000000px;}
.x121_c01292{left:758.595000px;}
.x56_c01292{left:760.320000px;}
.x130_c01292{left:762.045000px;}
.x97_c01292{left:764.640000px;}
.xe1_c01292{left:766.365000px;}
.x122_c01292{left:768.090000px;}
.xa8_c01292{left:769.830000px;}
.x33_c01292{left:771.555000px;}
.x92_c01292{left:773.280000px;}
.xdd_c01292{left:776.730000px;}
.xcf_c01292{left:781.050000px;}
.x12d_c01292{left:784.515000px;}
.x98_c01292{left:786.240000px;}
.x123_c01292{left:788.835000px;}
.xb6_c01292{left:790.560000px;}
.xf2_c01292{left:795.750000px;}
.xd0_c01292{left:797.475000px;}
.xe8_c01292{left:799.200000px;}
.x24_c01292{left:801.795000px;}
.xe2_c01292{left:803.520000px;}
.x79_c01292{left:805.245000px;}
.x116_c01292{left:806.970000px;}
.x3c_c01292{left:808.710000px;}
.x80_c01292{left:813.030000px;}
.x9c_c01292{left:815.610000px;}
.x3d_c01292{left:818.205000px;}
.xb7_c01292{left:820.800000px;}
.x1b_c01292{left:823.395000px;}
.x3e_c01292{left:825.120000px;}
.xed_c01292{left:827.715000px;}
.x71_c01292{left:829.440000px;}
.x34_c01292{left:832.035000px;}
.x1c_c01292{left:833.760000px;}
.xd8_c01292{left:836.355000px;}
.xa9_c01292{left:838.080000px;}
.x72_c01292{left:840.675000px;}
.x9d_c01292{left:842.400000px;}
.x126_c01292{left:844.995000px;}
.x25_c01292{left:851.910000px;}
.xae_c01292{left:854.490000px;}
.x3f_c01292{left:856.230000px;}
.x7a_c01292{left:860.550000px;}
.xe3_c01292{left:862.275000px;}
.x35_c01292{left:866.595000px;}
.xb8_c01292{left:869.190000px;}
.x93_c01292{left:870.915000px;}
.xda_c01292{left:873.510000px;}
.x57_c01292{left:881.280000px;}
.xde_c01292{left:883.005000px;}
.x5f_c01292{left:884.730000px;}
.x8d_c01292{left:886.470000px;}
.xd9_c01292{left:888.195000px;}
.x132_c01292{left:889.920000px;}
.xc6_c01292{left:892.515000px;}
.xee_c01292{left:897.690000px;}
.x4c_c01292{left:899.430000px;}
.x81_c01292{left:902.010000px;}
.x99_c01292{left:907.200000px;}
.x102_c01292{left:913.245000px;}
.x6c_c01292{left:915.840000px;}
.xe4_c01292{left:920.160000px;}
.x4d_c01292{left:922.755000px;}
.x60_c01292{left:925.350000px;}
.x58_c01292{left:930.525000px;}
.x135_c01292{left:981.510000px;}
.x136_c01292{left:990.150000px;}
.x134_c01292{left:1032.480000px;}
.x133_c01292{left:1055.805000px;}
@media print{
.v2_c01292{vertical-align:-3.093333pt;}
.v0_c01292{vertical-align:0.000000pt;}
.v1_c01292{vertical-align:3.093333pt;}
.ls3_c01292{letter-spacing:0.000000pt;}
.ls2_c01292{letter-spacing:22.379947pt;}
.ls0_c01292{letter-spacing:29.901333pt;}
.ls1_c01292{letter-spacing:32.266453pt;}
.ws0_c01292{word-spacing:0.000000pt;}
.fs4_c01292{font-size:3.072000pt;}
.fs7_c01292{font-size:5.333333pt;}
.fs8_c01292{font-size:6.133333pt;}
.fs16_c01292{font-size:9.226667pt;}
.fs0_c01292{font-size:12.266667pt;}
.fs13_c01292{font-size:15.360000pt;}
.fs6_c01292{font-size:18.453333pt;}
.fse_c01292{font-size:21.493333pt;}
.fs5_c01292{font-size:24.586667pt;}
.fs17_c01292{font-size:27.626667pt;}
.fs15_c01292{font-size:30.720000pt;}
.fsc_c01292{font-size:33.813333pt;}
.fsd_c01292{font-size:36.853333pt;}
.fsf_c01292{font-size:39.946667pt;}
.fs14_c01292{font-size:42.986667pt;}
.fsb_c01292{font-size:46.080000pt;}
.fsa_c01292{font-size:49.173333pt;}
.fs11_c01292{font-size:52.213333pt;}
.fs1_c01292{font-size:55.306667pt;}
.fs18_c01292{font-size:58.346667pt;}
.fs12_c01292{font-size:61.440000pt;}
.fs10_c01292{font-size:64.533333pt;}
.fs19_c01292{font-size:67.573333pt;}
.fs21_c01292{font-size:70.666667pt;}
.fs1c_c01292{font-size:73.706667pt;}
.fs1b_c01292{font-size:76.800000pt;}
.fs1a_c01292{font-size:79.893333pt;}
.fs3_c01292{font-size:82.933333pt;}
.fs22_c01292{font-size:86.026667pt;}
.fs1d_c01292{font-size:89.066667pt;}
.fs9_c01292{font-size:92.160000pt;}
.fs20_c01292{font-size:95.253333pt;}
.fs1e_c01292{font-size:98.293333pt;}
.fs23_c01292{font-size:101.386667pt;}
.fs1f_c01292{font-size:104.426667pt;}
.fs24_c01292{font-size:107.520000pt;}
.fs2_c01292{font-size:122.880000pt;}
.y0_c01292{bottom:0.000000pt;}
.y22f_c01292{bottom:156.666667pt;}
.y22e_c01292{bottom:164.346667pt;}
.y22d_c01292{bottom:165.893333pt;}
.y22b_c01292{bottom:166.653333pt;}
.y22a_c01292{bottom:168.186667pt;}
.y22c_c01292{bottom:169.733333pt;}
.y228_c01292{bottom:172.026667pt;}
.y229_c01292{bottom:175.106667pt;}
.y227_c01292{bottom:176.640000pt;}
.y225_c01292{bottom:180.480000pt;}
.y226_c01292{bottom:182.013333pt;}
.y224_c01292{bottom:184.320000pt;}
.y222_c01292{bottom:185.093333pt;}
.y220_c01292{bottom:185.853333pt;}
.y223_c01292{bottom:188.160000pt;}
.y221_c01292{bottom:188.933333pt;}
.y21e_c01292{bottom:189.693333pt;}
.y21c_c01292{bottom:191.226667pt;}
.y21f_c01292{bottom:192.000000pt;}
.y21d_c01292{bottom:201.213333pt;}
.y21b_c01292{bottom:202.746667pt;}
.y217_c01292{bottom:204.293333pt;}
.y216_c01292{bottom:205.053333pt;}
.y219_c01292{bottom:205.826667pt;}
.y215_c01292{bottom:206.586667pt;}
.y21a_c01292{bottom:207.360000pt;}
.y218_c01292{bottom:208.133333pt;}
.y214_c01292{bottom:219.653333pt;}
.y212_c01292{bottom:221.186667pt;}
.y211_c01292{bottom:221.946667pt;}
.y20e_c01292{bottom:222.720000pt;}
.y20d_c01292{bottom:224.253333pt;}
.y210_c01292{bottom:225.786667pt;}
.y20f_c01292{bottom:226.560000pt;}
.y213_c01292{bottom:230.400000pt;}
.y20a_c01292{bottom:231.173333pt;}
.y208_c01292{bottom:232.706667pt;}
.y20b_c01292{bottom:237.306667pt;}
.y207_c01292{bottom:238.080000pt;}
.y209_c01292{bottom:239.613333pt;}
.y205_c01292{bottom:240.386667pt;}
.y20c_c01292{bottom:241.146667pt;}
.y204_c01292{bottom:241.920000pt;}
.y203_c01292{bottom:242.693333pt;}
.y206_c01292{bottom:243.453333pt;}
.y202_c01292{bottom:244.226667pt;}
.y200_c01292{bottom:244.986667pt;}
.y201_c01292{bottom:248.826667pt;}
.y1ff_c01292{bottom:250.373333pt;}
.y1fe_c01292{bottom:251.133333pt;}
.y1fd_c01292{bottom:256.506667pt;}
.y1fc_c01292{bottom:259.586667pt;}
.y1fb_c01292{bottom:260.346667pt;}
.y1f8_c01292{bottom:262.653333pt;}
.y1f9_c01292{bottom:267.266667pt;}
.y1f7_c01292{bottom:268.026667pt;}
.y1fa_c01292{bottom:271.106667pt;}
.y1f6_c01292{bottom:273.413333pt;}
.y1f4_c01292{bottom:274.946667pt;}
.y1f5_c01292{bottom:277.253333pt;}
.y1f1_c01292{bottom:278.013333pt;}
.y1f3_c01292{bottom:281.093333pt;}
.y1ef_c01292{bottom:281.853333pt;}
.y1ee_c01292{bottom:282.626667pt;}
.y1f2_c01292{bottom:284.160000pt;}
.y1f0_c01292{bottom:285.693333pt;}
.y1ed_c01292{bottom:288.773333pt;}
.y1ea_c01292{bottom:295.680000pt;}
.y1ec_c01292{bottom:296.453333pt;}
.y1eb_c01292{bottom:297.213333pt;}
.y1e9_c01292{bottom:297.986667pt;}
.y1e6_c01292{bottom:300.293333pt;}
.y1e7_c01292{bottom:301.053333pt;}
.y1e8_c01292{bottom:301.826667pt;}
.y1e5_c01292{bottom:304.133333pt;}
.y1e4_c01292{bottom:305.666667pt;}
.y1e1_c01292{bottom:311.813333pt;}
.y1e0_c01292{bottom:312.573333pt;}
.y1e3_c01292{bottom:314.880000pt;}
.y1df_c01292{bottom:316.413333pt;}
.y1e2_c01292{bottom:317.186667pt;}
.y1dd_c01292{bottom:318.720000pt;}
.y1de_c01292{bottom:319.493333pt;}
.y1dc_c01292{bottom:321.026667pt;}
.y1da_c01292{bottom:321.786667pt;}
.y1db_c01292{bottom:324.866667pt;}
.y1d9_c01292{bottom:328.706667pt;}
.y1d7_c01292{bottom:331.013333pt;}
.y1d8_c01292{bottom:332.546667pt;}
.y1d5_c01292{bottom:335.613333pt;}
.y1d4_c01292{bottom:336.386667pt;}
.y1d1_c01292{bottom:337.146667pt;}
.y1d3_c01292{bottom:339.453333pt;}
.y1d2_c01292{bottom:340.986667pt;}
.y1cf_c01292{bottom:341.760000pt;}
.y1d0_c01292{bottom:342.533333pt;}
.y1cd_c01292{bottom:347.133333pt;}
.y1d6_c01292{bottom:347.906667pt;}
.y1cc_c01292{bottom:350.213333pt;}
.y1cb_c01292{bottom:350.973333pt;}
.y1ca_c01292{bottom:353.280000pt;}
.y1c9_c01292{bottom:354.053333pt;}
.y1c7_c01292{bottom:355.586667pt;}
.y1c6_c01292{bottom:357.120000pt;}
.y1ce_c01292{bottom:361.733333pt;}
.y1c4_c01292{bottom:364.800000pt;}
.y1c3_c01292{bottom:366.333333pt;}
.y1c2_c01292{bottom:367.866667pt;}
.y1c5_c01292{bottom:368.640000pt;}
.y1c1_c01292{bottom:369.413333pt;}
.y1c8_c01292{bottom:370.173333pt;}
.y1be_c01292{bottom:370.946667pt;}
.y1c0_c01292{bottom:374.013333pt;}
.y1bc_c01292{bottom:377.853333pt;}
.y1bd_c01292{bottom:379.386667pt;}
.y1ba_c01292{bottom:383.226667pt;}
.y1bf_c01292{bottom:384.773333pt;}
.y1b9_c01292{bottom:387.066667pt;}
.y1b8_c01292{bottom:388.613333pt;}
.y1b7_c01292{bottom:390.146667pt;}
.y1b6_c01292{bottom:391.680000pt;}
.y1bb_c01292{bottom:392.453333pt;}
.y1b4_c01292{bottom:394.746667pt;}
.y1b3_c01292{bottom:395.520000pt;}
.y1b5_c01292{bottom:396.293333pt;}
.y1b2_c01292{bottom:402.426667pt;}
.y1b0_c01292{bottom:404.733333pt;}
.y1af_c01292{bottom:405.506667pt;}
.y1b1_c01292{bottom:406.266667pt;}
.y1ae_c01292{bottom:407.040000pt;}
.y1ac_c01292{bottom:407.813333pt;}
.y1a6_c01292{bottom:410.106667pt;}
.y1a4_c01292{bottom:412.413333pt;}
.y1a9_c01292{bottom:413.946667pt;}
.y1a7_c01292{bottom:414.720000pt;}
.y1ab_c01292{bottom:417.026667pt;}
.y1ad_c01292{bottom:419.333333pt;}
.y1a5_c01292{bottom:420.093333pt;}
.y1a2_c01292{bottom:420.866667pt;}
.y1aa_c01292{bottom:421.626667pt;}
.y1a3_c01292{bottom:422.400000pt;}
.y1a0_c01292{bottom:423.173333pt;}
.y1a8_c01292{bottom:423.933333pt;}
.y1a1_c01292{bottom:425.466667pt;}
.y19d_c01292{bottom:426.240000pt;}
.y19f_c01292{bottom:427.013333pt;}
.y19b_c01292{bottom:427.773333pt;}
.y19c_c01292{bottom:428.546667pt;}
.y19e_c01292{bottom:430.853333pt;}
.y19a_c01292{bottom:433.146667pt;}
.y199_c01292{bottom:436.226667pt;}
.y198_c01292{bottom:439.293333pt;}
.y197_c01292{bottom:440.066667pt;}
.y196_c01292{bottom:442.373333pt;}
.y195_c01292{bottom:443.906667pt;}
.y194_c01292{bottom:444.666667pt;}
.y193_c01292{bottom:445.440000pt;}
.y18f_c01292{bottom:451.586667pt;}
.y190_c01292{bottom:452.346667pt;}
.y191_c01292{bottom:453.893333pt;}
.y18e_c01292{bottom:456.186667pt;}
.y18d_c01292{bottom:456.960000pt;}
.y18c_c01292{bottom:458.493333pt;}
.y192_c01292{bottom:459.266667pt;}
.y187_c01292{bottom:460.026667pt;}
.y189_c01292{bottom:460.800000pt;}
.y18b_c01292{bottom:462.333333pt;}
.y18a_c01292{bottom:464.640000pt;}
.y188_c01292{bottom:470.013333pt;}
.y184_c01292{bottom:470.786667pt;}
.y180_c01292{bottom:473.093333pt;}
.y183_c01292{bottom:475.386667pt;}
.y17c_c01292{bottom:476.160000pt;}
.y186_c01292{bottom:478.466667pt;}
.y17d_c01292{bottom:479.226667pt;}
.y17a_c01292{bottom:480.773333pt;}
.y185_c01292{bottom:481.533333pt;}
.y177_c01292{bottom:482.306667pt;}
.y176_c01292{bottom:483.840000pt;}
.y17b_c01292{bottom:484.613333pt;}
.y174_c01292{bottom:485.373333pt;}
.y179_c01292{bottom:486.146667pt;}
.y178_c01292{bottom:486.906667pt;}
.y17e_c01292{bottom:487.680000pt;}
.y175_c01292{bottom:488.453333pt;}
.y182_c01292{bottom:489.986667pt;}
.y181_c01292{bottom:490.746667pt;}
.y17f_c01292{bottom:493.053333pt;}
.y173_c01292{bottom:493.826667pt;}
.y170_c01292{bottom:494.586667pt;}
.y172_c01292{bottom:496.893333pt;}
.y171_c01292{bottom:497.666667pt;}
.y16d_c01292{bottom:499.200000pt;}
.y169_c01292{bottom:499.973333pt;}
.y16c_c01292{bottom:500.733333pt;}
.y16a_c01292{bottom:501.506667pt;}
.y167_c01292{bottom:503.040000pt;}
.y16b_c01292{bottom:503.813333pt;}
.y168_c01292{bottom:504.573333pt;}
.y166_c01292{bottom:510.720000pt;}
.y16f_c01292{bottom:511.493333pt;}
.y16e_c01292{bottom:512.253333pt;}
.y163_c01292{bottom:513.786667pt;}
.y162_c01292{bottom:515.333333pt;}
.y165_c01292{bottom:516.093333pt;}
.y15f_c01292{bottom:516.866667pt;}
.y15e_c01292{bottom:517.626667pt;}
.y164_c01292{bottom:518.400000pt;}
.y160_c01292{bottom:519.173333pt;}
.y161_c01292{bottom:521.466667pt;}
.y15d_c01292{bottom:523.773333pt;}
.y15c_c01292{bottom:528.386667pt;}
.y15b_c01292{bottom:529.146667pt;}
.y15a_c01292{bottom:532.226667pt;}
.y158_c01292{bottom:532.986667pt;}
.y156_c01292{bottom:535.293333pt;}
.y155_c01292{bottom:537.600000pt;}
.y159_c01292{bottom:538.373333pt;}
.y157_c01292{bottom:539.133333pt;}
.y153_c01292{bottom:546.813333pt;}
.y152_c01292{bottom:547.586667pt;}
.y150_c01292{bottom:549.120000pt;}
.y151_c01292{bottom:550.653333pt;}
.y154_c01292{bottom:551.426667pt;}
.y14d_c01292{bottom:552.960000pt;}
.y14e_c01292{bottom:553.733333pt;}
.y14f_c01292{bottom:555.266667pt;}
.y14c_c01292{bottom:556.800000pt;}
.y14b_c01292{bottom:560.640000pt;}
.y149_c01292{bottom:565.253333pt;}
.y148_c01292{bottom:566.013333pt;}
.y14a_c01292{bottom:567.546667pt;}
.y146_c01292{bottom:569.093333pt;}
.y147_c01292{bottom:569.853333pt;}
.y143_c01292{bottom:571.386667pt;}
.y144_c01292{bottom:572.160000pt;}
.y145_c01292{bottom:574.466667pt;}
.y142_c01292{bottom:575.226667pt;}
.y141_c01292{bottom:579.840000pt;}
.y140_c01292{bottom:580.613333pt;}
.y13d_c01292{bottom:582.146667pt;}
.y13e_c01292{bottom:582.906667pt;}
.y13a_c01292{bottom:587.520000pt;}
.y138_c01292{bottom:591.360000pt;}
.y13b_c01292{bottom:592.893333pt;}
.y139_c01292{bottom:593.666667pt;}
.y13f_c01292{bottom:597.506667pt;}
.y137_c01292{bottom:598.266667pt;}
.y136_c01292{bottom:602.880000pt;}
.y13c_c01292{bottom:603.653333pt;}
.y135_c01292{bottom:605.946667pt;}
.y134_c01292{bottom:610.560000pt;}
.y133_c01292{bottom:616.706667pt;}
.y132_c01292{bottom:619.773333pt;}
.y131_c01292{bottom:620.546667pt;}
.y12c_c01292{bottom:622.853333pt;}
.y130_c01292{bottom:623.613333pt;}
.y12d_c01292{bottom:624.386667pt;}
.y12f_c01292{bottom:625.920000pt;}
.y12e_c01292{bottom:626.693333pt;}
.y12a_c01292{bottom:628.986667pt;}
.y12b_c01292{bottom:630.533333pt;}
.y129_c01292{bottom:634.373333pt;}
.y124_c01292{bottom:635.906667pt;}
.y123_c01292{bottom:636.666667pt;}
.y122_c01292{bottom:638.213333pt;}
.y126_c01292{bottom:639.746667pt;}
.y127_c01292{bottom:640.506667pt;}
.y125_c01292{bottom:641.280000pt;}
.y11f_c01292{bottom:642.053333pt;}
.y121_c01292{bottom:642.813333pt;}
.y120_c01292{bottom:645.893333pt;}
.y128_c01292{bottom:646.653333pt;}
.y11d_c01292{bottom:652.800000pt;}
.y119_c01292{bottom:657.413333pt;}
.y116_c01292{bottom:658.946667pt;}
.y118_c01292{bottom:659.706667pt;}
.y11b_c01292{bottom:660.480000pt;}
.y117_c01292{bottom:664.320000pt;}
.y11a_c01292{bottom:665.093333pt;}
.y11e_c01292{bottom:665.853333pt;}
.y11c_c01292{bottom:666.626667pt;}
.y115_c01292{bottom:672.000000pt;}
.y114_c01292{bottom:673.533333pt;}
.y111_c01292{bottom:674.306667pt;}
.y112_c01292{bottom:675.066667pt;}
.y110_c01292{bottom:676.613333pt;}
.y113_c01292{bottom:678.146667pt;}
.y10d_c01292{bottom:678.906667pt;}
.y10e_c01292{bottom:682.746667pt;}
.y10f_c01292{bottom:683.520000pt;}
.y10c_c01292{bottom:685.053333pt;}
.y109_c01292{bottom:690.426667pt;}
.y10b_c01292{bottom:691.200000pt;}
.y107_c01292{bottom:692.733333pt;}
.y105_c01292{bottom:694.266667pt;}
.y10a_c01292{bottom:695.040000pt;}
.y108_c01292{bottom:695.813333pt;}
.y104_c01292{bottom:696.573333pt;}
.y106_c01292{bottom:705.026667pt;}
.y102_c01292{bottom:708.866667pt;}
.y101_c01292{bottom:709.626667pt;}
.y103_c01292{bottom:711.173333pt;}
.y100_c01292{bottom:712.706667pt;}
.yff_c01292{bottom:715.773333pt;}
.yfe_c01292{bottom:718.853333pt;}
.yfd_c01292{bottom:726.533333pt;}
.yfc_c01292{bottom:727.293333pt;}
.yfa_c01292{bottom:728.066667pt;}
.yf9_c01292{bottom:728.826667pt;}
.yfb_c01292{bottom:731.906667pt;}
.yf2_c01292{bottom:732.666667pt;}
.yf3_c01292{bottom:733.440000pt;}
.yf6_c01292{bottom:734.213333pt;}
.yf1_c01292{bottom:735.746667pt;}
.yf8_c01292{bottom:740.346667pt;}
.yf5_c01292{bottom:741.120000pt;}
.yf7_c01292{bottom:741.893333pt;}
.yf4_c01292{bottom:742.653333pt;}
.yf0_c01292{bottom:744.186667pt;}
.yef_c01292{bottom:746.493333pt;}
.yee_c01292{bottom:748.800000pt;}
.yed_c01292{bottom:749.573333pt;}
.yeb_c01292{bottom:751.106667pt;}
.yea_c01292{bottom:754.173333pt;}
.yec_c01292{bottom:756.480000pt;}
.ye9_c01292{bottom:760.320000pt;}
.ye8_c01292{bottom:761.853333pt;}
.ye6_c01292{bottom:763.386667pt;}
.ye7_c01292{bottom:764.160000pt;}
.ye1_c01292{bottom:766.466667pt;}
.ye5_c01292{bottom:768.773333pt;}
.yde_c01292{bottom:773.373333pt;}
.ye4_c01292{bottom:774.146667pt;}
.ye0_c01292{bottom:774.906667pt;}
.ydf_c01292{bottom:775.680000pt;}
.ye3_c01292{bottom:777.213333pt;}
.ye2_c01292{bottom:777.986667pt;}
.ydd_c01292{bottom:779.520000pt;}
.ydc_c01292{bottom:780.293333pt;}
.yda_c01292{bottom:784.133333pt;}
.ydb_c01292{bottom:785.666667pt;}
.yd8_c01292{bottom:788.733333pt;}
.yd9_c01292{bottom:792.573333pt;}
.yd7_c01292{bottom:797.186667pt;}
.yd4_c01292{bottom:799.493333pt;}
.yd5_c01292{bottom:800.253333pt;}
.yd2_c01292{bottom:801.026667pt;}
.yd3_c01292{bottom:801.786667pt;}
.yd6_c01292{bottom:802.560000pt;}
.yd1_c01292{bottom:803.333333pt;}
.yd0_c01292{bottom:804.866667pt;}
.ycd_c01292{bottom:805.626667pt;}
.ycf_c01292{bottom:807.933333pt;}
.yce_c01292{bottom:810.240000pt;}
.ycc_c01292{bottom:815.613333pt;}
.yca_c01292{bottom:818.693333pt;}
.yc9_c01292{bottom:819.453333pt;}
.yc8_c01292{bottom:820.226667pt;}
.ycb_c01292{bottom:820.986667pt;}
.yc6_c01292{bottom:822.533333pt;}
.yc5_c01292{bottom:824.826667pt;}
.yc7_c01292{bottom:827.906667pt;}
.yc4_c01292{bottom:832.506667pt;}
.yc3_c01292{bottom:834.053333pt;}
.yc2_c01292{bottom:837.120000pt;}
.yc1_c01292{bottom:839.426667pt;}
.ybc_c01292{bottom:840.960000pt;}
.ybe_c01292{bottom:841.733333pt;}
.yc0_c01292{bottom:843.266667pt;}
.ybd_c01292{bottom:844.800000pt;}
.ybf_c01292{bottom:845.573333pt;}
.ybb_c01292{bottom:852.480000pt;}
.yba_c01292{bottom:854.786667pt;}
.yb7_c01292{bottom:857.093333pt;}
.yb6_c01292{bottom:859.386667pt;}
.yb9_c01292{bottom:860.160000pt;}
.yb5_c01292{bottom:861.693333pt;}
.yb4_c01292{bottom:864.773333pt;}
.yb8_c01292{bottom:865.533333pt;}
.yb3_c01292{bottom:867.066667pt;}
.yb2_c01292{bottom:868.613333pt;}
.yb0_c01292{bottom:870.146667pt;}
.yaf_c01292{bottom:871.680000pt;}
.yae_c01292{bottom:881.666667pt;}
.yb1_c01292{bottom:883.973333pt;}
.yac_c01292{bottom:886.266667pt;}
.yad_c01292{bottom:889.346667pt;}
.yab_c01292{bottom:893.186667pt;}
.yaa_c01292{bottom:893.946667pt;}
.ya9_c01292{bottom:897.026667pt;}
.ya8_c01292{bottom:906.240000pt;}
.ya7_c01292{bottom:907.013333pt;}
.ya6_c01292{bottom:907.773333pt;}
.y234_c01292{bottom:910.080000pt;}
.ya5_c01292{bottom:910.853333pt;}
.ya1_c01292{bottom:911.613333pt;}
.ya3_c01292{bottom:912.386667pt;}
.ya2_c01292{bottom:914.693333pt;}
.y9f_c01292{bottom:916.986667pt;}
.ya4_c01292{bottom:919.293333pt;}
.ya0_c01292{bottom:920.826667pt;}
.y9d_c01292{bottom:923.906667pt;}
.y99_c01292{bottom:927.746667pt;}
.y9c_c01292{bottom:929.280000pt;}
.y9b_c01292{bottom:930.053333pt;}
.y9a_c01292{bottom:931.586667pt;}
.y9e_c01292{bottom:933.120000pt;}
.y98_c01292{bottom:943.866667pt;}
.y96_c01292{bottom:944.640000pt;}
.y97_c01292{bottom:945.413333pt;}
.y95_c01292{bottom:946.946667pt;}
.y94_c01292{bottom:947.706667pt;}
.y92_c01292{bottom:948.480000pt;}
.y93_c01292{bottom:949.253333pt;}
.y91_c01292{bottom:953.093333pt;}
.y90_c01292{bottom:960.000000pt;}
.y8f_c01292{bottom:960.773333pt;}
.y8e_c01292{bottom:962.306667pt;}
.y8c_c01292{bottom:963.840000pt;}
.y8d_c01292{bottom:966.146667pt;}
.y8b_c01292{bottom:966.906667pt;}
.y8a_c01292{bottom:968.453333pt;}
.y89_c01292{bottom:973.826667pt;}
.y87_c01292{bottom:979.973333pt;}
.y86_c01292{bottom:981.506667pt;}
.y88_c01292{bottom:984.573333pt;}
.y85_c01292{bottom:986.106667pt;}
.y84_c01292{bottom:986.880000pt;}
.y82_c01292{bottom:988.413333pt;}
.y83_c01292{bottom:996.093333pt;}
.y7f_c01292{bottom:997.626667pt;}
.y7e_c01292{bottom:999.933333pt;}
.y7d_c01292{bottom:1000.706667pt;}
.y7c_c01292{bottom:1002.240000pt;}
.y81_c01292{bottom:1006.080000pt;}
.y80_c01292{bottom:1007.613333pt;}
.y7b_c01292{bottom:1009.146667pt;}
.y79_c01292{bottom:1009.920000pt;}
.y7a_c01292{bottom:1012.226667pt;}
.y77_c01292{bottom:1013.760000pt;}
.y76_c01292{bottom:1016.826667pt;}
.y75_c01292{bottom:1017.600000pt;}
.y78_c01292{bottom:1018.373333pt;}
.y74_c01292{bottom:1024.506667pt;}
.y73_c01292{bottom:1026.053333pt;}
.y70_c01292{bottom:1026.813333pt;}
.y71_c01292{bottom:1029.893333pt;}
.y6f_c01292{bottom:1030.653333pt;}
.y72_c01292{bottom:1031.426667pt;}
.y6d_c01292{bottom:1032.186667pt;}
.y6c_c01292{bottom:1032.960000pt;}
.y6e_c01292{bottom:1033.733333pt;}
.y6b_c01292{bottom:1034.493333pt;}
.y6a_c01292{bottom:1036.800000pt;}
.y69_c01292{bottom:1038.333333pt;}
.y68_c01292{bottom:1039.106667pt;}
.y67_c01292{bottom:1041.413333pt;}
.y66_c01292{bottom:1044.480000pt;}
.y64_c01292{bottom:1045.253333pt;}
.y65_c01292{bottom:1046.013333pt;}
.y63_c01292{bottom:1047.546667pt;}
.y62_c01292{bottom:1048.320000pt;}
.y61_c01292{bottom:1049.093333pt;}
.y60_c01292{bottom:1049.853333pt;}
.y5e_c01292{bottom:1053.693333pt;}
.y5c_c01292{bottom:1055.226667pt;}
.y5f_c01292{bottom:1056.773333pt;}
.y5d_c01292{bottom:1058.306667pt;}
.y5b_c01292{bottom:1062.906667pt;}
.y5a_c01292{bottom:1066.746667pt;}
.y57_c01292{bottom:1069.053333pt;}
.y56_c01292{bottom:1070.586667pt;}
.y58_c01292{bottom:1071.360000pt;}
.y55_c01292{bottom:1079.040000pt;}
.y54_c01292{bottom:1080.573333pt;}
.y53_c01292{bottom:1081.346667pt;}
.y59_c01292{bottom:1085.946667pt;}
.y4e_c01292{bottom:1086.720000pt;}
.y51_c01292{bottom:1088.253333pt;}
.y52_c01292{bottom:1089.026667pt;}
.y50_c01292{bottom:1089.786667pt;}
.y4b_c01292{bottom:1091.333333pt;}
.y4d_c01292{bottom:1092.866667pt;}
.y4c_c01292{bottom:1093.626667pt;}
.y49_c01292{bottom:1094.400000pt;}
.y4a_c01292{bottom:1095.173333pt;}
.y4f_c01292{bottom:1099.013333pt;}
.y46_c01292{bottom:1103.613333pt;}
.y48_c01292{bottom:1105.146667pt;}
.y45_c01292{bottom:1105.920000pt;}
.y47_c01292{bottom:1106.693333pt;}
.y43_c01292{bottom:1108.986667pt;}
.y41_c01292{bottom:1110.533333pt;}
.y3f_c01292{bottom:1111.293333pt;}
.y40_c01292{bottom:1112.826667pt;}
.y3e_c01292{bottom:1113.600000pt;}
.y3d_c01292{bottom:1117.440000pt;}
.y44_c01292{bottom:1118.213333pt;}
.y42_c01292{bottom:1120.506667pt;}
.y233_c01292{bottom:1122.813333pt;}
.y3c_c01292{bottom:1125.893333pt;}
.y36_c01292{bottom:1128.960000pt;}
.y37_c01292{bottom:1129.733333pt;}
.y3a_c01292{bottom:1131.266667pt;}
.y3b_c01292{bottom:1133.573333pt;}
.y38_c01292{bottom:1135.866667pt;}
.y39_c01292{bottom:1138.173333pt;}
.y35_c01292{bottom:1138.946667pt;}
.y31_c01292{bottom:1140.480000pt;}
.y32_c01292{bottom:1141.253333pt;}
.y33_c01292{bottom:1142.013333pt;}
.y34_c01292{bottom:1142.786667pt;}
.y2f_c01292{bottom:1143.546667pt;}
.y30_c01292{bottom:1145.093333pt;}
.y2b_c01292{bottom:1145.853333pt;}
.y2e_c01292{bottom:1146.626667pt;}
.y2a_c01292{bottom:1147.386667pt;}
.y25_c01292{bottom:1148.160000pt;}
.y24_c01292{bottom:1148.933333pt;}
.y2c_c01292{bottom:1149.693333pt;}
.y29_c01292{bottom:1150.466667pt;}
.y2d_c01292{bottom:1152.000000pt;}
.y26_c01292{bottom:1153.533333pt;}
.y23_c01292{bottom:1156.613333pt;}
.y28_c01292{bottom:1157.373333pt;}
.y27_c01292{bottom:1158.146667pt;}
.y22_c01292{bottom:1158.906667pt;}
.y21_c01292{bottom:1160.453333pt;}
.y1f_c01292{bottom:1161.213333pt;}
.y20_c01292{bottom:1161.986667pt;}
.y1e_c01292{bottom:1163.520000pt;}
.y1d_c01292{bottom:1165.053333pt;}
.y17_c01292{bottom:1168.133333pt;}
.y16_c01292{bottom:1168.893333pt;}
.y1c_c01292{bottom:1169.666667pt;}
.y15_c01292{bottom:1171.973333pt;}
.y1a_c01292{bottom:1172.733333pt;}
.y19_c01292{bottom:1173.506667pt;}
.y18_c01292{bottom:1175.813333pt;}
.y1b_c01292{bottom:1176.573333pt;}
.y14_c01292{bottom:1179.653333pt;}
.yb_c01292{bottom:1184.253333pt;}
.y11_c01292{bottom:1185.786667pt;}
.yd_c01292{bottom:1186.560000pt;}
.y12_c01292{bottom:1187.333333pt;}
.y13_c01292{bottom:1189.626667pt;}
.yf_c01292{bottom:1190.400000pt;}
.y10_c01292{bottom:1191.173333pt;}
.ye_c01292{bottom:1191.933333pt;}
.yc_c01292{bottom:1194.240000pt;}
.ya_c01292{bottom:1198.853333pt;}
.y6_c01292{bottom:1200.386667pt;}
.y9_c01292{bottom:1201.146667pt;}
.y8_c01292{bottom:1201.920000pt;}
.y5_c01292{bottom:1202.693333pt;}
.y3_c01292{bottom:1203.453333pt;}
.y7_c01292{bottom:1204.226667pt;}
.y4_c01292{bottom:1207.293333pt;}
.y2_c01292{bottom:1210.373333pt;}
.y1_c01292{bottom:1238.786667pt;}
.y230_c01292{bottom:1276.413333pt;}
.y231_c01292{bottom:1281.786667pt;}
.y232_c01292{bottom:1282.560000pt;}
.h6_c01292{height:2.764500pt;}
.h9_c01292{height:4.799479pt;}
.ha_c01292{height:5.519401pt;}
.h18_c01292{height:5.857833pt;}
.h19_c01292{height:8.303099pt;}
.h2_c01292{height:11.038802pt;}
.h15_c01292{height:13.822500pt;}
.h8_c01292{height:16.606198pt;}
.h10_c01292{height:19.341901pt;}
.h7_c01292{height:22.125599pt;}
.h1a_c01292{height:24.861302pt;}
.h17_c01292{height:27.645000pt;}
.he_c01292{height:30.428698pt;}
.hf_c01292{height:33.164401pt;}
.h11_c01292{height:35.948099pt;}
.h16_c01292{height:38.683802pt;}
.hd_c01292{height:41.467500pt;}
.hc_c01292{height:44.251198pt;}
.h13_c01292{height:46.986901pt;}
.h3_c01292{height:49.770599pt;}
.h1b_c01292{height:52.506302pt;}
.h14_c01292{height:55.290000pt;}
.h12_c01292{height:58.073698pt;}
.h1c_c01292{height:60.809401pt;}
.h24_c01292{height:63.593099pt;}
.h1f_c01292{height:66.328802pt;}
.h1e_c01292{height:69.112500pt;}
.h1d_c01292{height:71.896198pt;}
.h5_c01292{height:74.631901pt;}
.h25_c01292{height:77.415599pt;}
.h20_c01292{height:80.151302pt;}
.hb_c01292{height:82.935000pt;}
.h23_c01292{height:85.718698pt;}
.h21_c01292{height:88.454401pt;}
.h26_c01292{height:91.238099pt;}
.h22_c01292{height:93.973802pt;}
.h27_c01292{height:96.757500pt;}
.h4_c01292{height:110.580000pt;}
.h1_c01292{height:1350.000000pt;}
.h0_c01292{height:1350.146667pt;}
.w1_c01292{width:966.000000pt;}
.w0_c01292{width:966.146667pt;}
.x0_c01292{left:0.000000pt;}
.x106_c01292{left:146.693333pt;}
.x110_c01292{left:148.226667pt;}
.x107_c01292{left:154.373333pt;}
.xe9_c01292{left:161.280000pt;}
.xd1_c01292{left:165.893333pt;}
.x111_c01292{left:167.426667pt;}
.x61_c01292{left:169.733333pt;}
.x8a_c01292{left:172.026667pt;}
.x6d_c01292{left:173.573333pt;}
.x62_c01292{left:176.640000pt;}
.x4e_c01292{left:178.946667pt;}
.x63_c01292{left:180.480000pt;}
.xea_c01292{left:182.013333pt;}
.x10d_c01292{left:184.320000pt;}
.x103_c01292{left:185.853333pt;}
.xfc_c01292{left:188.160000pt;}
.x8e_c01292{left:189.693333pt;}
.xef_c01292{left:192.000000pt;}
.x82_c01292{left:193.533333pt;}
.x12b_c01292{left:195.066667pt;}
.xe5_c01292{left:197.373333pt;}
.x64_c01292{left:198.906667pt;}
.xd2_c01292{left:201.213333pt;}
.x10a_c01292{left:204.293333pt;}
.x12e_c01292{left:205.826667pt;}
.x83_c01292{left:207.360000pt;}
.x59_c01292{left:209.666667pt;}
.x112_c01292{left:211.200000pt;}
.x2_c01292{left:212.733333pt;}
.x9f_c01292{left:214.266667pt;}
.x11_c01292{left:215.813333pt;}
.x1d_c01292{left:217.346667pt;}
.x4f_c01292{left:218.880000pt;}
.xfd_c01292{left:220.413333pt;}
.xc7_c01292{left:222.720000pt;}
.x26_c01292{left:225.026667pt;}
.x5a_c01292{left:230.400000pt;}
.xd3_c01292{left:231.933333pt;}
.xbc_c01292{left:235.013333pt;}
.xa0_c01292{left:237.306667pt;}
.x6e_c01292{left:241.146667pt;}
.x94_c01292{left:243.453333pt;}
.xa4_c01292{left:245.760000pt;}
.x1_c01292{left:249.600000pt;}
.xb9_c01292{left:252.666667pt;}
.xa6_c01292{left:254.973333pt;}
.x10b_c01292{left:256.506667pt;}
.x8b_c01292{left:258.813333pt;}
.x113_c01292{left:260.346667pt;}
.xf3_c01292{left:264.186667pt;}
.x1e_c01292{left:266.493333pt;}
.x50_c01292{left:268.026667pt;}
.x117_c01292{left:269.573333pt;}
.xba_c01292{left:271.106667pt;}
.x7b_c01292{left:272.640000pt;}
.x127_c01292{left:278.786667pt;}
.x65_c01292{left:281.093333pt;}
.x11d_c01292{left:282.626667pt;}
.x51_c01292{left:284.160000pt;}
.xbd_c01292{left:286.466667pt;}
.x124_c01292{left:290.306667pt;}
.x1f_c01292{left:291.840000pt;}
.x5_c01292{left:294.146667pt;}
.xc8_c01292{left:297.213333pt;}
.x3_c01292{left:300.293333pt;}
.xf5_c01292{left:301.826667pt;}
.xd4_c01292{left:304.133333pt;}
.x36_c01292{left:307.200000pt;}
.xb3_c01292{left:310.266667pt;}
.x7c_c01292{left:314.106667pt;}
.x5b_c01292{left:318.720000pt;}
.x52_c01292{left:321.786667pt;}
.x37_c01292{left:324.093333pt;}
.x40_c01292{left:325.626667pt;}
.x27_c01292{left:328.707600pt;}
.x84_c01292{left:330.240000pt;}
.xbe_c01292{left:331.773333pt;}
.x7d_c01292{left:334.080000pt;}
.xaa_c01292{left:336.386667pt;}
.x28_c01292{left:338.693333pt;}
.xb4_c01292{left:340.226667pt;}
.x85_c01292{left:342.533333pt;}
.x11f_c01292{left:344.066667pt;}
.x6_c01292{left:347.133333pt;}
.x108_c01292{left:348.666667pt;}
.x38_c01292{left:350.213333pt;}
.x29_c01292{left:351.746667pt;}
.xaf_c01292{left:353.280000pt;}
.x41_c01292{left:355.586667pt;}
.xb0_c01292{left:357.120000pt;}
.x42_c01292{left:359.426667pt;}
.x118_c01292{left:360.960000pt;}
.xcb_c01292{left:364.026667pt;}
.x66_c01292{left:365.573333pt;}
.x2a_c01292{left:367.106667pt;}
.xf0_c01292{left:368.640000pt;}
.x39_c01292{left:370.173333pt;}
.xbf_c01292{left:374.013333pt;}
.x43_c01292{left:375.546667pt;}
.x44_c01292{left:380.160000pt;}
.xc0_c01292{left:383.226667pt;}
.xa3_c01292{left:386.306667pt;}
.x2b_c01292{left:388.613333pt;}
.xfe_c01292{left:390.146667pt;}
.x86_c01292{left:393.986667pt;}
.xd5_c01292{left:395.520000pt;}
.x45_c01292{left:397.053333pt;}
.x67_c01292{left:399.360000pt;}
.x9a_c01292{left:400.893333pt;}
.x2c_c01292{left:402.426667pt;}
.xcc_c01292{left:403.973333pt;}
.x87_c01292{left:405.506667pt;}
.x3a_c01292{left:408.573333pt;}
.x20_c01292{left:410.880000pt;}
.xdf_c01292{left:413.186667pt;}
.x2d_c01292{left:415.493333pt;}
.xe6_c01292{left:417.786667pt;}
.x2e_c01292{left:420.093333pt;}
.x2f_c01292{left:421.626667pt;}
.xd6_c01292{left:423.173333pt;}
.xf7_c01292{left:424.706667pt;}
.x10c_c01292{left:427.773333pt;}
.xc1_c01292{left:430.080000pt;}
.x114_c01292{left:433.920000pt;}
.x7e_c01292{left:436.226667pt;}
.xab_c01292{left:437.760000pt;}
.xcd_c01292{left:440.066667pt;}
.x7_c01292{left:441.600000pt;}
.x119_c01292{left:443.133333pt;}
.x8_c01292{left:445.440000pt;}
.x88_c01292{left:447.746667pt;}
.x53_c01292{left:450.053333pt;}
.x46_c01292{left:452.346667pt;}
.xce_c01292{left:453.893333pt;}
.x8f_c01292{left:456.186667pt;}
.x11a_c01292{left:457.733333pt;}
.xeb_c01292{left:460.026987pt;}
.x120_c01292{left:461.573333pt;}
.xf8_c01292{left:463.106667pt;}
.x30_c01292{left:464.640000pt;}
.x12c_c01292{left:466.946667pt;}
.xff_c01292{left:468.480000pt;}
.xc9_c01292{left:470.013333pt;}
.x104_c01292{left:474.626667pt;}
.xf9_c01292{left:477.693333pt;}
.x21_c01292{left:480.000000pt;}
.x54_c01292{left:481.533333pt;}
.x47_c01292{left:483.066667pt;}
.x49_c01292{left:484.613333pt;}
.x22_c01292{left:486.146667pt;}
.x128_c01292{left:487.680000pt;}
.xc2_c01292{left:489.986667pt;}
.xa1_c01292{left:491.520000pt;}
.xb5_c01292{left:493.053333pt;}
.x11e_c01292{left:494.586667pt;}
.x90_c01292{left:496.133333pt;}
.x11b_c01292{left:497.666667pt;}
.x95_c01292{left:499.200000pt;}
.xc3_c01292{left:502.266667pt;}
.xb1_c01292{left:503.813333pt;}
.xbb_c01292{left:505.346667pt;}
.xa5_c01292{left:506.880000pt;}
.x68_c01292{left:509.186667pt;}
.x8c_c01292{left:510.720000pt;}
.x12_c01292{left:512.253333pt;}
.x5c_c01292{left:513.786667pt;}
.x105_c01292{left:515.333333pt;}
.xdb_c01292{left:517.626667pt;}
.xe7_c01292{left:520.706667pt;}
.x13_c01292{left:524.546667pt;}
.x10e_c01292{left:526.080000pt;}
.x73_c01292{left:529.146667pt;}
.x9_c01292{left:532.226667pt;}
.x115_c01292{left:533.760000pt;}
.x91_c01292{left:535.293333pt;}
.xac_c01292{left:537.600000pt;}
.x100_c01292{left:539.906667pt;}
.x23_c01292{left:542.213333pt;}
.x14_c01292{left:543.746667pt;}
.xec_c01292{left:545.280000pt;}
.x129_c01292{left:546.813333pt;}
.x74_c01292{left:548.346667pt;}
.x69_c01292{left:550.653333pt;}
.xa_c01292{left:552.959595pt;}
.xd7_c01292{left:554.493333pt;}
.x109_c01292{left:556.026667pt;}
.xb_c01292{left:557.573333pt;}
.x15_c01292{left:559.106667pt;}
.x6f_c01292{left:560.640000pt;}
.xc4_c01292{left:562.946667pt;}
.x89_c01292{left:566.013333pt;}
.x75_c01292{left:568.320000pt;}
.x96_c01292{left:570.626667pt;}
.x55_c01292{left:572.933333pt;}
.x16_c01292{left:574.466667pt;}
.xb2_c01292{left:576.773333pt;}
.x131_c01292{left:579.066667pt;}
.x31_c01292{left:580.613333pt;}
.xf4_c01292{left:582.146667pt;}
.xc_c01292{left:584.453333pt;}
.x125_c01292{left:585.986667pt;}
.xca_c01292{left:587.520000pt;}
.x48_c01292{left:589.826667pt;}
.xa2_c01292{left:593.666667pt;}
.xd_c01292{left:596.733333pt;}
.x6a_c01292{left:599.813333pt;}
.xf6_c01292{left:601.346667pt;}
.x32_c01292{left:602.880000pt;}
.x10f_c01292{left:604.413333pt;}
.x4a_c01292{left:605.946667pt;}
.xe_c01292{left:611.333333pt;}
.xad_c01292{left:612.866667pt;}
.xdc_c01292{left:614.400000pt;}
.x9b_c01292{left:616.706667pt;}
.x3b_c01292{left:619.013333pt;}
.x76_c01292{left:620.546667pt;}
.x5d_c01292{left:623.613333pt;}
.xc5_c01292{left:625.146667pt;}
.x11c_c01292{left:626.693333pt;}
.xf_c01292{left:628.226667pt;}
.x70_c01292{left:632.066667pt;}
.x101_c01292{left:633.600000pt;}
.x9e_c01292{left:635.133333pt;}
.xe0_c01292{left:636.666667pt;}
.xfa_c01292{left:638.973333pt;}
.x5e_c01292{left:640.506667pt;}
.xf1_c01292{left:643.586667pt;}
.x17_c01292{left:645.120000pt;}
.x6b_c01292{left:646.653333pt;}
.x77_c01292{left:648.186667pt;}
.x4_c01292{left:649.733333pt;}
.x12f_c01292{left:651.266667pt;}
.xa7_c01292{left:653.573333pt;}
.x10_c01292{left:655.866667pt;}
.x18_c01292{left:657.413333pt;}
.x12a_c01292{left:658.946667pt;}
.x19_c01292{left:660.480000pt;}
.x4b_c01292{left:663.546667pt;}
.xfb_c01292{left:665.093333pt;}
.x7f_c01292{left:667.386667pt;}
.x78_c01292{left:668.933333pt;}
.x1a_c01292{left:672.000000pt;}
.x121_c01292{left:674.306667pt;}
.x56_c01292{left:675.840000pt;}
.x130_c01292{left:677.373333pt;}
.x97_c01292{left:679.680000pt;}
.xe1_c01292{left:681.213333pt;}
.x122_c01292{left:682.746667pt;}
.xa8_c01292{left:684.293333pt;}
.x33_c01292{left:685.826667pt;}
.x92_c01292{left:687.360000pt;}
.xdd_c01292{left:690.426667pt;}
.xcf_c01292{left:694.266667pt;}
.x12d_c01292{left:697.346667pt;}
.x98_c01292{left:698.880000pt;}
.x123_c01292{left:701.186667pt;}
.xb6_c01292{left:702.720000pt;}
.xf2_c01292{left:707.333333pt;}
.xd0_c01292{left:708.866667pt;}
.xe8_c01292{left:710.400000pt;}
.x24_c01292{left:712.706667pt;}
.xe2_c01292{left:714.240000pt;}
.x79_c01292{left:715.773333pt;}
.x116_c01292{left:717.306667pt;}
.x3c_c01292{left:718.853333pt;}
.x80_c01292{left:722.693333pt;}
.x9c_c01292{left:724.986667pt;}
.x3d_c01292{left:727.293333pt;}
.xb7_c01292{left:729.600000pt;}
.x1b_c01292{left:731.906667pt;}
.x3e_c01292{left:733.440000pt;}
.xed_c01292{left:735.746667pt;}
.x71_c01292{left:737.280000pt;}
.x34_c01292{left:739.586667pt;}
.x1c_c01292{left:741.120000pt;}
.xd8_c01292{left:743.426667pt;}
.xa9_c01292{left:744.960000pt;}
.x72_c01292{left:747.266667pt;}
.x9d_c01292{left:748.800000pt;}
.x126_c01292{left:751.106667pt;}
.x25_c01292{left:757.253333pt;}
.xae_c01292{left:759.546667pt;}
.x3f_c01292{left:761.093333pt;}
.x7a_c01292{left:764.933333pt;}
.xe3_c01292{left:766.466667pt;}
.x35_c01292{left:770.306667pt;}
.xb8_c01292{left:772.613333pt;}
.x93_c01292{left:774.146667pt;}
.xda_c01292{left:776.453333pt;}
.x57_c01292{left:783.360000pt;}
.xde_c01292{left:784.893333pt;}
.x5f_c01292{left:786.426667pt;}
.x8d_c01292{left:787.973333pt;}
.xd9_c01292{left:789.506667pt;}
.x132_c01292{left:791.040000pt;}
.xc6_c01292{left:793.346667pt;}
.xee_c01292{left:797.946667pt;}
.x4c_c01292{left:799.493333pt;}
.x81_c01292{left:801.786667pt;}
.x99_c01292{left:806.400000pt;}
.x102_c01292{left:811.773333pt;}
.x6c_c01292{left:814.080000pt;}
.xe4_c01292{left:817.920000pt;}
.x4d_c01292{left:820.226667pt;}
.x60_c01292{left:822.533333pt;}
.x58_c01292{left:827.133333pt;}
.x135_c01292{left:872.453333pt;}
.x136_c01292{left:880.133333pt;}
.x134_c01292{left:917.760000pt;}
.x133_c01292{left:938.493333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01293;src:url('chunks/assets/font_8cd976346a18b81f77ecb736.woff2')format("woff");}.ff1_c01293{font-family:ff1_c01293;line-height:1.109863;font-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_c01293{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c01293{transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);}
.m119_c01293{transform:matrix(0.058625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058625,0.000000,0.000000,0.250000,0,0);}
.m20_c01293{transform:matrix(0.072600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.072600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.072600,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01293{transform:matrix(0.093025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093025,0.000000,0.000000,0.250000,0,0);}
.m1df_c01293{transform:matrix(0.093725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093725,0.000000,0.000000,0.250000,0,0);}
.m9_c01293{transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095000,0.000000,0.000000,0.250000,0,0);}
.m22_c01293{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.m126_c01293{transform:matrix(0.101150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101150,0.000000,0.000000,0.250000,0,0);}
.maf_c01293{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m25_c01293{transform:matrix(0.107375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107375,0.000000,0.000000,0.250000,0,0);}
.m75_c01293{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m152_c01293{transform:matrix(0.112325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112325,0.000000,0.000000,0.250000,0,0);}
.m170_c01293{transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);}
.m145_c01293{transform:matrix(0.117350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117350,0.000000,0.000000,0.250000,0,0);}
.m1f_c01293{transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01293{transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);}
.m11e_c01293{transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);}
.m28_c01293{transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);}
.m1f0_c01293{transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);}
.m198_c01293{transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);}
.mf_c01293{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m26_c01293{transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126150,0.000000,0.000000,0.250000,0,0);}
.m51_c01293{transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);}
.m1eb_c01293{transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126725,0.000000,0.000000,0.250000,0,0);}
.mdd_c01293{transform:matrix(0.127025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127025,0.000000,0.000000,0.250000,0,0);}
.m99_c01293{transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127550,0.000000,0.000000,0.250000,0,0);}
.m12f_c01293{transform:matrix(0.128575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128575,0.000000,0.000000,0.250000,0,0);}
.m52_c01293{transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);}
.m27_c01293{transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129250,0.000000,0.000000,0.250000,0,0);}
.m2e_c01293{transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);}
.m14e_c01293{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m196_c01293{transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);}
.m1ea_c01293{transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);}
.mee_c01293{transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);}
.m7c_c01293{transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);}
.m19d_c01293{transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);}
.mf4_c01293{transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);}
.m1be_c01293{transform:matrix(0.134925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134925,0.000000,0.000000,0.250000,0,0);}
.m74_c01293{transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);}
.m76_c01293{transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);}
.m50_c01293{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01293{transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01293{transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01293{transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);}
.m12c_c01293{transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139300,0.000000,0.000000,0.250000,0,0);}
.m1da_c01293{transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);}
.mf6_c01293{transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);}
.m9a_c01293{transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);}
.m139_c01293{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m18c_c01293{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);}
.m1ef_c01293{transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);}
.m13e_c01293{transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);}
.mec_c01293{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.m1db_c01293{transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);}
.me0_c01293{transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);}
.m19b_c01293{transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);}
.m155_c01293{transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143825,0.000000,0.000000,0.250000,0,0);}
.m5_c01293{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m137_c01293{transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);}
.m3b_c01293{transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);}
.m24_c01293{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);}
.m11d_c01293{transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01293{transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);}
.m96_c01293{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.md6_c01293{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);}
.m2_c01293{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);}
.m53_c01293{transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);}
.m61_c01293{transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);}
.m122_c01293{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mdb_c01293{transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01293{transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);}
.m4d_c01293{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);}
.m193_c01293{transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);}
.m58_c01293{transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);}
.m18e_c01293{transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);}
.m98_c01293{transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);}
.m86_c01293{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);}
.m1ac_c01293{transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);}
.m175_c01293{transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);}
.m39_c01293{transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01293{transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);}
.m38_c01293{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01293{transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);}
.m127_c01293{transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01293{transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);}
.m78_c01293{transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);}
.m9c_c01293{transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);}
.m1e7_c01293{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m2c_c01293{transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154350,0.000000,0.000000,0.250000,0,0);}
.m18d_c01293{transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01293{transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154675,0.000000,0.000000,0.250000,0,0);}
.md8_c01293{transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01293{transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);}
.m112_c01293{transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157200,0.000000,0.000000,0.250000,0,0);}
.m63_c01293{transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);}
.m153_c01293{transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);}
.m128_c01293{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.m7d_c01293{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.mde_c01293{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01293{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.m124_c01293{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.md5_c01293{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);}
.m1a6_c01293{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.m1ed_c01293{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.mc5_c01293{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m136_c01293{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.mf8_c01293{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m1f1_c01293{transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01293{transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);}
.m199_c01293{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01293{transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);}
.m1f2_c01293{transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);}
.mc1_c01293{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);}
.m15a_c01293{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.m19c_c01293{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);}
.m173_c01293{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);}
.m1bf_c01293{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m14a_c01293{transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01293{transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01293{transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);}
.m70_c01293{transform:matrix(0.164950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164950,0.000000,0.000000,0.250000,0,0);}
.m18f_c01293{transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);}
.m151_c01293{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01293{transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);}
.m1d_c01293{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.ma8_c01293{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.md3_c01293{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01293{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);}
.m16b_c01293{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.m6d_c01293{transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);}
.mfd_c01293{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);}
.m116_c01293{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.m12b_c01293{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01293{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);}
.m12a_c01293{transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01293{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m8c_c01293{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.mea_c01293{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m110_c01293{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m179_c01293{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m11a_c01293{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m64_c01293{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.m154_c01293{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.mc0_c01293{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);}
.m135_c01293{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);}
.m142_c01293{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01293{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);}
.m195_c01293{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m10f_c01293{transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);}
.m19a_c01293{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.m7b_c01293{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m93_c01293{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m134_c01293{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.m69_c01293{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m48_c01293{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);}
.m1a0_c01293{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01293{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.maa_c01293{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);}
.mb1_c01293{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m17c_c01293{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);}
.m143_c01293{transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);}
.mc7_c01293{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m161_c01293{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m18b_c01293{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m150_c01293{transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);}
.m2b_c01293{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m8f_c01293{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01293{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);}
.m37_c01293{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);}
.m1cd_c01293{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.md1_c01293{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01293{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);}
.m57_c01293{transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01293{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.mf5_c01293{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);}
.m176_c01293{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);}
.m121_c01293{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01293{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.m67_c01293{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);}
.m106_c01293{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.mac_c01293{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m1b_c01293{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.m66_c01293{transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);}
.m171_c01293{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.md9_c01293{transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186225,0.000000,0.000000,0.250000,0,0);}
.m7e_c01293{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);}
.m158_c01293{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m138_c01293{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);}
.m1ee_c01293{transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01293{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);}
.m105_c01293{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m16f_c01293{transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);}
.mcb_c01293{transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);}
.m125_c01293{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);}
.m11f_c01293{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.mdc_c01293{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01293{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);}
.mf1_c01293{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m18a_c01293{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);}
.m1d0_c01293{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);}
.me3_c01293{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);}
.m60_c01293{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.m5e_c01293{transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);}
.m156_c01293{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);}
.m95_c01293{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);}
.m77_c01293{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.m13d_c01293{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.m43_c01293{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01293{transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);}
.m172_c01293{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.me5_c01293{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);}
.m17f_c01293{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);}
.ma9_c01293{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.m8d_c01293{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.m14f_c01293{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m102_c01293{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);}
.ma5_c01293{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);}
.m79_c01293{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);}
.m11b_c01293{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.m181_c01293{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.me1_c01293{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);}
.m1a4_c01293{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);}
.me2_c01293{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.m1e8_c01293{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.m188_c01293{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.m54_c01293{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.mc8_c01293{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);}
.m88_c01293{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m29_c01293{transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);}
.m189_c01293{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);}
.mbe_c01293{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);}
.m71_c01293{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);}
.m148_c01293{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01293{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);}
.m13b_c01293{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m13c_c01293{transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);}
.m3c_c01293{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);}
.m147_c01293{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);}
.m90_c01293{transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);}
.m9b_c01293{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);}
.m1e3_c01293{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.mfc_c01293{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.ma7_c01293{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.m111_c01293{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.md2_c01293{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m16e_c01293{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01293{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);}
.ma3_c01293{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);}
.m168_c01293{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.m1f3_c01293{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m17b_c01293{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);}
.m1d4_c01293{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.m183_c01293{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);}
.m107_c01293{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);}
.m160_c01293{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.m21_c01293{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m132_c01293{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m16c_c01293{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);}
.m13a_c01293{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.mfb_c01293{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.mbd_c01293{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);}
.m108_c01293{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m117_c01293{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);}
.m16d_c01293{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m7_c01293{transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);}
.m6b_c01293{transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);}
.m163_c01293{transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);}
.m6f_c01293{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);}
.m178_c01293{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);}
.m146_c01293{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);}
.m103_c01293{transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);}
.m6e_c01293{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m16a_c01293{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);}
.m23_c01293{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m13f_c01293{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.mb9_c01293{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);}
.m1a5_c01293{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);}
.m45_c01293{transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01293{transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);}
.mab_c01293{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.mc2_c01293{transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01293{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);}
.m182_c01293{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);}
.m14c_c01293{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m85_c01293{transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);}
.m72_c01293{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);}
.m84_c01293{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);}
.m101_c01293{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);}
.mef_c01293{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);}
.m109_c01293{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.m19e_c01293{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);}
.mf9_c01293{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);}
.meb_c01293{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.ma6_c01293{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01293{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.m180_c01293{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);}
.m1c3_c01293{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.m83_c01293{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);}
.mb8_c01293{transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);}
.md4_c01293{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.ma4_c01293{transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);}
.mcc_c01293{transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217725,0.000000,0.000000,0.250000,0,0);}
.m197_c01293{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.m120_c01293{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m123_c01293{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m164_c01293{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);}
.ma2_c01293{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);}
.m131_c01293{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);}
.m10d_c01293{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m1f8_c01293{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);}
.mbc_c01293{transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);}
.m114_c01293{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01293{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.m5d_c01293{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);}
.m10c_c01293{transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);}
.med_c01293{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m4e_c01293{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);}
.mdf_c01293{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);}
.m59_c01293{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);}
.m1de_c01293{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);}
.m159_c01293{transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);}
.m16_c01293{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m15b_c01293{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.m7a_c01293{transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);}
.me4_c01293{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m100_c01293{transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);}
.mc6_c01293{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.m32_c01293{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m185_c01293{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m149_c01293{transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01293{transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);}
.mfa_c01293{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m144_c01293{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_c01293{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);}
.m1c2_c01293{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);}
.m17e_c01293{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);}
.m1c0_c01293{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);}
.m17_c01293{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m17d_c01293{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);}
.mbf_c01293{transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);}
.m65_c01293{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.m15f_c01293{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);}
.m6a_c01293{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);}
.mda_c01293{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);}
.m8a_c01293{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);}
.m1bc_c01293{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);}
.m40_c01293{transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232175,0.000000,0.000000,0.250000,0,0);}
.m174_c01293{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01293{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);}
.m15d_c01293{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);}
.m1c5_c01293{transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);}
.m167_c01293{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);}
.mc3_c01293{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m6c_c01293{transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);}
.m10a_c01293{transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);}
.md7_c01293{transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);}
.m55_c01293{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);}
.m157_c01293{transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);}
.m10b_c01293{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);}
.m94_c01293{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01293{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);}
.m1d5_c01293{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m5c_c01293{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);}
.m1b7_c01293{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);}
.m8e_c01293{transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);}
.m184_c01293{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);}
.mf0_c01293{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);}
.m141_c01293{transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);}
.m80_c01293{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);}
.m1e_c01293{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m104_c01293{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m87_c01293{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);}
.m1cc_c01293{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01293{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01293{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);}
.m1f4_c01293{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m1af_c01293{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);}
.m15e_c01293{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);}
.me7_c01293{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);}
.m165_c01293{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);}
.m19f_c01293{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m10e_c01293{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);}
.m3a_c01293{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);}
.m91_c01293{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m56_c01293{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);}
.md0_c01293{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);}
.m2a_c01293{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);}
.mc_c01293{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);}
.m31_c01293{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01293{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.me9_c01293{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);}
.mcd_c01293{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01293{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);}
.m3d_c01293{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);}
.m133_c01293{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m42_c01293{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);}
.m46_c01293{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mba_c01293{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m44_c01293{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);}
.m49_c01293{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m62_c01293{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);}
.m19_c01293{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);}
.m35_c01293{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m130_c01293{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mca_c01293{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);}
.mcf_c01293{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m140_c01293{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m41_c01293{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);}
.ma_c01293{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01293{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c01293{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01293{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m169_c01293{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mce_c01293{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01293{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m113_c01293{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m33_c01293{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);}
.m89_c01293{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01293{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01293{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me6_c01293{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m68_c01293{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);}
.m129_c01293{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);}
.m5f_c01293{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01293{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m10_c01293{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);}
.m3e_c01293{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m14_c01293{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m12d_c01293{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m30_c01293{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);}
.mb3_c01293{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01293{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m14b_c01293{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mb7_c01293{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m97_c01293{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01293{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m34_c01293{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);}
.m4_c01293{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);}
.mb5_c01293{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01293{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01293{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);}
.m162_c01293{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m194_c01293{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m12_c01293{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m166_c01293{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mad_c01293{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01293{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m15_c01293{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);}
.mff_c01293{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mb6_c01293{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m18_c01293{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m14d_c01293{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mb_c01293{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m1f6_c01293{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01293{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);}
.m1e0_c01293{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m15c_c01293{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m186_c01293{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);}
.m1b2_c01293{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m1f7_c01293{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m36_c01293{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1e6_c01293{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mf3_c01293{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01293{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1fb_c01293{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01293{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m3_c01293{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m82_c01293{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1f5_c01293{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.mf2_c01293{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m1fc_c01293{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.me8_c01293{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01293{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);}
.m1a1_c01293{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m115_c01293{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.ma0_c01293{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m47_c01293{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mf7_c01293{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.mc4_c01293{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.m191_c01293{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m81_c01293{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01293{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m1f9_c01293{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.m92_c01293{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m12e_c01293{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m192_c01293{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01293{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.mb4_c01293{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m187_c01293{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m9f_c01293{transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);}
.m0_c01293{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.mbb_c01293{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.md_c01293{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m118_c01293{transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.885000,0.000000,0.000000,0.250000,0,0);}
.m177_c01293{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m13_c01293{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.mb0_c01293{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.mae_c01293{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.m1fa_c01293{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1_c01293{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.m73_c01293{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m190_c01293{transform:matrix(1.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.227500,0.000000,0.000000,0.250000,0,0);}
.mfe_c01293{transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);}
.m17a_c01293{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.ma1_c01293{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01293{transform:matrix(3.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.367500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01293{transform:matrix(3.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.455000,0.000000,0.000000,0.250000,0,0);}
.m9d_c01293{transform:matrix(7.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.055000,0.000000,0.000000,0.250000,0,0);}
.v1_c01293{vertical-align:-10.380000px;}
.v2_c01293{vertical-align:-3.480000px;}
.v0_c01293{vertical-align:0.000000px;}
.v3_c01293{vertical-align:3.420000px;}
.ls4_c01293{letter-spacing:0.000000px;}
.ls1_c01293{letter-spacing:38.223480px;}
.ls3_c01293{letter-spacing:50.279400px;}
.ls2_c01293{letter-spacing:54.173760px;}
.ls0_c01293{letter-spacing:112.784640px;}
.sc__c01293{text-shadow:none;}
.sc0_c01293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01293{-webkit-text-stroke:0px transparent;}
.sc0_c01293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01293{word-spacing:-6.103560px;}
.ws1_c01293{word-spacing:0.000000px;}
.fc0_c01293{color:transparent;}
.fs11_c01293{font-size:3.456000px;}
.fs23_c01293{font-size:6.000000px;}
.fse_c01293{font-size:6.900000px;}
.fsa_c01293{font-size:10.380000px;}
.fs0_c01293{font-size:13.800000px;}
.fs1_c01293{font-size:17.280000px;}
.fs3_c01293{font-size:20.760000px;}
.fs20_c01293{font-size:24.180000px;}
.fs1f_c01293{font-size:27.660000px;}
.fsf_c01293{font-size:31.080000px;}
.fsc_c01293{font-size:34.560000px;}
.fs10_c01293{font-size:38.040000px;}
.fs9_c01293{font-size:41.460000px;}
.fs2_c01293{font-size:44.940000px;}
.fsb_c01293{font-size:48.360000px;}
.fsd_c01293{font-size:51.840000px;}
.fs1e_c01293{font-size:55.320000px;}
.fs19_c01293{font-size:58.740000px;}
.fs8_c01293{font-size:62.220000px;}
.fs1c_c01293{font-size:65.640000px;}
.fs4_c01293{font-size:69.120000px;}
.fs5_c01293{font-size:72.600000px;}
.fs12_c01293{font-size:76.020000px;}
.fs1d_c01293{font-size:79.500000px;}
.fs18_c01293{font-size:82.920000px;}
.fs1a_c01293{font-size:86.400000px;}
.fs21_c01293{font-size:89.880000px;}
.fs14_c01293{font-size:93.300000px;}
.fs22_c01293{font-size:96.780000px;}
.fs24_c01293{font-size:100.200000px;}
.fs16_c01293{font-size:103.680000px;}
.fs17_c01293{font-size:107.160000px;}
.fs1b_c01293{font-size:110.580000px;}
.fs13_c01293{font-size:114.060000px;}
.fs7_c01293{font-size:131.340000px;}
.fs15_c01293{font-size:134.760000px;}
.fs6_c01293{font-size:190.080000px;}
.y0_c01293{bottom:0.000000px;}
.y1f5_c01293{bottom:159.840000px;}
.y1ef_c01293{bottom:172.800000px;}
.y1f1_c01293{bottom:173.670000px;}
.y1f3_c01293{bottom:174.525000px;}
.y1f0_c01293{bottom:179.715000px;}
.y1ed_c01293{bottom:181.440000px;}
.y1ec_c01293{bottom:183.165000px;}
.y1ee_c01293{bottom:187.485000px;}
.y1f2_c01293{bottom:190.080000px;}
.y1eb_c01293{bottom:193.530000px;}
.y1e8_c01293{bottom:194.400000px;}
.y1e4_c01293{bottom:195.270000px;}
.y1ea_c01293{bottom:196.125000px;}
.y1e6_c01293{bottom:196.995000px;}
.y1e7_c01293{bottom:198.720000px;}
.y1e5_c01293{bottom:203.910000px;}
.y1e9_c01293{bottom:205.635000px;}
.y1e2_c01293{bottom:213.405000px;}
.y1de_c01293{bottom:215.130000px;}
.y1e3_c01293{bottom:216.000000px;}
.y1e0_c01293{bottom:218.595000px;}
.y1df_c01293{bottom:219.450000px;}
.y1e1_c01293{bottom:221.190000px;}
.y1d5_c01293{bottom:239.325000px;}
.y1dd_c01293{bottom:240.195000px;}
.y1d9_c01293{bottom:241.050000px;}
.y1db_c01293{bottom:241.920000px;}
.y1d7_c01293{bottom:242.790000px;}
.y1dc_c01293{bottom:243.645000px;}
.y1d8_c01293{bottom:244.515000px;}
.y1d6_c01293{bottom:245.370000px;}
.y1da_c01293{bottom:251.430000px;}
.y1d1_c01293{bottom:254.010000px;}
.y1d2_c01293{bottom:254.880000px;}
.y1cf_c01293{bottom:255.750000px;}
.y1cd_c01293{bottom:257.475000px;}
.y1d3_c01293{bottom:258.330000px;}
.y1d0_c01293{bottom:259.200000px;}
.y1cb_c01293{bottom:261.795000px;}
.y1ce_c01293{bottom:263.520000px;}
.y1cc_c01293{bottom:265.245000px;}
.y1d4_c01293{bottom:270.435000px;}
.y1c9_c01293{bottom:277.350000px;}
.y1c7_c01293{bottom:278.205000px;}
.y1ca_c01293{bottom:279.930000px;}
.y1c4_c01293{bottom:280.800000px;}
.y1c5_c01293{bottom:281.670000px;}
.y1c8_c01293{bottom:283.395000px;}
.y1c6_c01293{bottom:284.250000px;}
.y1c3_c01293{bottom:298.950000px;}
.y1c2_c01293{bottom:302.400000px;}
.y1bf_c01293{bottom:303.270000px;}
.y1c0_c01293{bottom:304.125000px;}
.y1be_c01293{bottom:304.995000px;}
.y1bd_c01293{bottom:305.850000px;}
.y1c1_c01293{bottom:315.360000px;}
.y1bc_c01293{bottom:317.085000px;}
.y1b5_c01293{bottom:317.955000px;}
.y1ba_c01293{bottom:318.810000px;}
.y1b3_c01293{bottom:319.680000px;}
.y1b4_c01293{bottom:320.550000px;}
.y1b2_c01293{bottom:321.405000px;}
.y1bb_c01293{bottom:322.275000px;}
.y1b9_c01293{bottom:323.130000px;}
.y1b7_c01293{bottom:324.000000px;}
.y1b8_c01293{bottom:324.870000px;}
.y1b6_c01293{bottom:327.450000px;}
.y1b0_c01293{bottom:336.960000px;}
.y1ad_c01293{bottom:338.685000px;}
.y1ae_c01293{bottom:340.410000px;}
.y1b1_c01293{bottom:341.280000px;}
.y1ac_c01293{bottom:342.150000px;}
.y1af_c01293{bottom:343.005000px;}
.y1ab_c01293{bottom:344.730000px;}
.y1aa_c01293{bottom:357.690000px;}
.y1a9_c01293{bottom:358.560000px;}
.y1a7_c01293{bottom:360.285000px;}
.y1a5_c01293{bottom:361.155000px;}
.y1a6_c01293{bottom:362.880000px;}
.y1a3_c01293{bottom:366.330000px;}
.y1a4_c01293{bottom:367.200000px;}
.y1a8_c01293{bottom:368.925000px;}
.y1a2_c01293{bottom:376.710000px;}
.y1a0_c01293{bottom:377.565000px;}
.y1a1_c01293{bottom:381.885000px;}
.y19e_c01293{bottom:383.610000px;}
.y19d_c01293{bottom:387.075000px;}
.y19f_c01293{bottom:395.715000px;}
.y19a_c01293{bottom:400.035000px;}
.y19b_c01293{bottom:400.890000px;}
.y199_c01293{bottom:401.760000px;}
.y194_c01293{bottom:402.630000px;}
.y197_c01293{bottom:404.355000px;}
.y19c_c01293{bottom:405.210000px;}
.y198_c01293{bottom:406.080000px;}
.y195_c01293{bottom:406.950000px;}
.y196_c01293{bottom:407.805000px;}
.y192_c01293{bottom:419.040000px;}
.y191_c01293{bottom:419.910000px;}
.y190_c01293{bottom:421.635000px;}
.y18f_c01293{bottom:422.490000px;}
.y193_c01293{bottom:424.230000px;}
.y18e_c01293{bottom:426.810000px;}
.y18d_c01293{bottom:433.725000px;}
.y18b_c01293{bottom:439.770000px;}
.y189_c01293{bottom:440.640000px;}
.y180_c01293{bottom:442.365000px;}
.y18a_c01293{bottom:443.235000px;}
.y188_c01293{bottom:444.090000px;}
.y183_c01293{bottom:447.555000px;}
.y186_c01293{bottom:448.410000px;}
.y182_c01293{bottom:450.150000px;}
.y181_c01293{bottom:451.875000px;}
.y185_c01293{bottom:453.600000px;}
.y187_c01293{bottom:454.470000px;}
.y184_c01293{bottom:455.325000px;}
.y18c_c01293{bottom:456.195000px;}
.y17d_c01293{bottom:457.920000px;}
.y17c_c01293{bottom:459.645000px;}
.y17e_c01293{bottom:460.515000px;}
.y17b_c01293{bottom:462.240000px;}
.y17f_c01293{bottom:463.965000px;}
.y178_c01293{bottom:465.690000px;}
.y17a_c01293{bottom:467.430000px;}
.y179_c01293{bottom:468.285000px;}
.y174_c01293{bottom:481.245000px;}
.y171_c01293{bottom:482.115000px;}
.y172_c01293{bottom:482.970000px;}
.y173_c01293{bottom:484.710000px;}
.y176_c01293{bottom:485.565000px;}
.y175_c01293{bottom:490.755000px;}
.y177_c01293{bottom:491.610000px;}
.y170_c01293{bottom:499.395000px;}
.y16e_c01293{bottom:501.120000px;}
.y16c_c01293{bottom:502.845000px;}
.y16f_c01293{bottom:504.570000px;}
.y16d_c01293{bottom:506.310000px;}
.y16a_c01293{bottom:519.270000px;}
.y167_c01293{bottom:520.995000px;}
.y169_c01293{bottom:521.850000px;}
.y164_c01293{bottom:523.590000px;}
.y165_c01293{bottom:524.445000px;}
.y16b_c01293{bottom:525.315000px;}
.y168_c01293{bottom:526.170000px;}
.y166_c01293{bottom:527.910000px;}
.y162_c01293{bottom:539.130000px;}
.y161_c01293{bottom:540.870000px;}
.y15f_c01293{bottom:541.725000px;}
.y15d_c01293{bottom:542.595000px;}
.y160_c01293{bottom:543.450000px;}
.y15e_c01293{bottom:546.915000px;}
.y15c_c01293{bottom:548.640000px;}
.y15b_c01293{bottom:549.510000px;}
.y163_c01293{bottom:552.090000px;}
.y15a_c01293{bottom:559.875000px;}
.y159_c01293{bottom:560.730000px;}
.y157_c01293{bottom:561.600000px;}
.y158_c01293{bottom:562.470000px;}
.y16_c01293{bottom:565.050000px;}
.y153_c01293{bottom:580.605000px;}
.y154_c01293{bottom:581.475000px;}
.y152_c01293{bottom:582.330000px;}
.y155_c01293{bottom:583.200000px;}
.y150_c01293{bottom:584.070000px;}
.y151_c01293{bottom:586.650000px;}
.y156_c01293{bottom:594.435000px;}
.y14c_c01293{bottom:601.350000px;}
.y147_c01293{bottom:602.205000px;}
.y14b_c01293{bottom:603.075000px;}
.y148_c01293{bottom:603.930000px;}
.y14e_c01293{bottom:604.800000px;}
.y14f_c01293{bottom:605.670000px;}
.y14d_c01293{bottom:606.525000px;}
.y146_c01293{bottom:607.395000px;}
.y149_c01293{bottom:608.250000px;}
.y14a_c01293{bottom:609.120000px;}
.y145_c01293{bottom:620.355000px;}
.y144_c01293{bottom:621.210000px;}
.y140_c01293{bottom:625.530000px;}
.y142_c01293{bottom:627.270000px;}
.y143_c01293{bottom:628.125000px;}
.y141_c01293{bottom:628.995000px;}
.y13f_c01293{bottom:641.955000px;}
.y13a_c01293{bottom:642.810000px;}
.y13c_c01293{bottom:643.680000px;}
.y13d_c01293{bottom:645.405000px;}
.y13e_c01293{bottom:647.130000px;}
.y13b_c01293{bottom:648.000000px;}
.y139_c01293{bottom:648.870000px;}
.y133_c01293{bottom:660.960000px;}
.y138_c01293{bottom:661.830000px;}
.y137_c01293{bottom:662.685000px;}
.y136_c01293{bottom:663.555000px;}
.y131_c01293{bottom:664.410000px;}
.y134_c01293{bottom:665.280000px;}
.y135_c01293{bottom:666.150000px;}
.y130_c01293{bottom:667.875000px;}
.y132_c01293{bottom:668.730000px;}
.y12f_c01293{bottom:680.835000px;}
.y12e_c01293{bottom:681.690000px;}
.y12c_c01293{bottom:682.560000px;}
.y125_c01293{bottom:683.430000px;}
.y129_c01293{bottom:684.285000px;}
.y12a_c01293{bottom:685.155000px;}
.y12b_c01293{bottom:686.010000px;}
.y127_c01293{bottom:686.880000px;}
.y12d_c01293{bottom:687.750000px;}
.y126_c01293{bottom:688.605000px;}
.y128_c01293{bottom:689.475000px;}
.y123_c01293{bottom:702.435000px;}
.y124_c01293{bottom:703.290000px;}
.y11f_c01293{bottom:704.160000px;}
.y122_c01293{bottom:705.030000px;}
.y11b_c01293{bottom:705.885000px;}
.y11d_c01293{bottom:706.755000px;}
.y11c_c01293{bottom:707.610000px;}
.y11e_c01293{bottom:708.480000px;}
.y121_c01293{bottom:709.350000px;}
.y15_c01293{bottom:713.670000px;}
.y14_c01293{bottom:714.525000px;}
.y120_c01293{bottom:715.395000px;}
.y119_c01293{bottom:721.440000px;}
.y118_c01293{bottom:722.310000px;}
.y115_c01293{bottom:724.035000px;}
.y116_c01293{bottom:724.890000px;}
.y114_c01293{bottom:725.760000px;}
.y11a_c01293{bottom:726.630000px;}
.y117_c01293{bottom:729.210000px;}
.y113_c01293{bottom:742.170000px;}
.y112_c01293{bottom:743.040000px;}
.y10f_c01293{bottom:743.910000px;}
.y111_c01293{bottom:744.765000px;}
.y110_c01293{bottom:745.635000px;}
.y10d_c01293{bottom:748.230000px;}
.y10e_c01293{bottom:749.085000px;}
.y10c_c01293{bottom:756.870000px;}
.y105_c01293{bottom:758.595000px;}
.y104_c01293{bottom:760.320000px;}
.y10b_c01293{bottom:762.045000px;}
.y109_c01293{bottom:763.770000px;}
.y107_c01293{bottom:765.510000px;}
.y10a_c01293{bottom:766.365000px;}
.y108_c01293{bottom:768.090000px;}
.y103_c01293{bottom:768.960000px;}
.y106_c01293{bottom:769.830000px;}
.y100_c01293{bottom:782.790000px;}
.yfe_c01293{bottom:783.645000px;}
.y102_c01293{bottom:784.515000px;}
.y101_c01293{bottom:786.240000px;}
.yff_c01293{bottom:787.965000px;}
.yfd_c01293{bottom:788.835000px;}
.yfc_c01293{bottom:800.925000px;}
.yf9_c01293{bottom:801.795000px;}
.yfb_c01293{bottom:802.650000px;}
.yf4_c01293{bottom:803.520000px;}
.yf8_c01293{bottom:804.390000px;}
.yfa_c01293{bottom:805.245000px;}
.yf3_c01293{bottom:807.840000px;}
.yf6_c01293{bottom:808.710000px;}
.yf5_c01293{bottom:812.160000px;}
.yf7_c01293{bottom:815.610000px;}
.y1fb_c01293{bottom:818.205000px;}
.yf2_c01293{bottom:821.670000px;}
.yf1_c01293{bottom:822.525000px;}
.yed_c01293{bottom:823.395000px;}
.yec_c01293{bottom:824.250000px;}
.yf0_c01293{bottom:825.120000px;}
.y12_c01293{bottom:825.990000px;}
.yeb_c01293{bottom:827.715000px;}
.y13_c01293{bottom:828.570000px;}
.yee_c01293{bottom:829.440000px;}
.yef_c01293{bottom:830.310000px;}
.y11_c01293{bottom:839.805000px;}
.yea_c01293{bottom:842.400000px;}
.ye6_c01293{bottom:843.270000px;}
.ye9_c01293{bottom:844.125000px;}
.ye4_c01293{bottom:844.995000px;}
.ye7_c01293{bottom:846.720000px;}
.ye8_c01293{bottom:848.445000px;}
.ye5_c01293{bottom:849.315000px;}
.y10_c01293{bottom:851.910000px;}
.ye3_c01293{bottom:862.275000px;}
.ye2_c01293{bottom:863.130000px;}
.ye1_c01293{bottom:864.000000px;}
.ydc_c01293{bottom:865.725000px;}
.yde_c01293{bottom:868.320000px;}
.ydf_c01293{bottom:870.045000px;}
.ye0_c01293{bottom:870.915000px;}
.ydd_c01293{bottom:873.510000px;}
.ydb_c01293{bottom:879.555000px;}
.yf_c01293{bottom:882.150000px;}
.yda_c01293{bottom:883.875000px;}
.yd5_c01293{bottom:884.730000px;}
.yd6_c01293{bottom:887.325000px;}
.yd7_c01293{bottom:890.790000px;}
.yd9_c01293{bottom:892.515000px;}
.yd8_c01293{bottom:894.240000px;}
.ye_c01293{bottom:902.880000px;}
.yd3_c01293{bottom:904.605000px;}
.yd1_c01293{bottom:905.475000px;}
.yb_c01293{bottom:907.200000px;}
.yd0_c01293{bottom:908.070000px;}
.yd_c01293{bottom:908.925000px;}
.yd2_c01293{bottom:910.650000px;}
.yc_c01293{bottom:913.245000px;}
.yd4_c01293{bottom:921.030000px;}
.y9_c01293{bottom:921.885000px;}
.yce_c01293{bottom:923.610000px;}
.yc7_c01293{bottom:925.350000px;}
.yc8_c01293{bottom:926.205000px;}
.ycc_c01293{bottom:927.075000px;}
.ycd_c01293{bottom:927.930000px;}
.yc9_c01293{bottom:929.670000px;}
.ya_c01293{bottom:931.395000px;}
.yca_c01293{bottom:932.250000px;}
.ycb_c01293{bottom:940.890000px;}
.ycf_c01293{bottom:942.630000px;}
.yc0_c01293{bottom:945.210000px;}
.yc6_c01293{bottom:946.080000px;}
.ybf_c01293{bottom:946.950000px;}
.yc1_c01293{bottom:947.805000px;}
.yc4_c01293{bottom:948.675000px;}
.yc3_c01293{bottom:949.530000px;}
.yc5_c01293{bottom:950.400000px;}
.yc2_c01293{bottom:951.270000px;}
.ybe_c01293{bottom:964.230000px;}
.yb8_c01293{bottom:965.085000px;}
.yba_c01293{bottom:965.955000px;}
.yb7_c01293{bottom:966.810000px;}
.ybd_c01293{bottom:968.550000px;}
.ybc_c01293{bottom:969.405000px;}
.yb9_c01293{bottom:970.275000px;}
.ybb_c01293{bottom:972.000000px;}
.y1f9_c01293{bottom:977.190000px;}
.y1fa_c01293{bottom:979.770000px;}
.yb5_c01293{bottom:984.960000px;}
.yb6_c01293{bottom:986.685000px;}
.yb3_c01293{bottom:990.150000px;}
.yb4_c01293{bottom:991.005000px;}
.yb2_c01293{bottom:1003.110000px;}
.yac_c01293{bottom:1004.835000px;}
.yb1_c01293{bottom:1006.560000px;}
.yb0_c01293{bottom:1007.430000px;}
.yad_c01293{bottom:1008.285000px;}
.yaf_c01293{bottom:1012.605000px;}
.yab_c01293{bottom:1019.520000px;}
.yaa_c01293{bottom:1020.390000px;}
.yae_c01293{bottom:1022.970000px;}
.ya9_c01293{bottom:1023.840000px;}
.ya7_c01293{bottom:1024.710000px;}
.ya3_c01293{bottom:1026.435000px;}
.ya2_c01293{bottom:1027.290000px;}
.ya6_c01293{bottom:1028.160000px;}
.ya4_c01293{bottom:1029.030000px;}
.ya8_c01293{bottom:1029.885000px;}
.ya5_c01293{bottom:1030.755000px;}
.ya1_c01293{bottom:1044.570000px;}
.y9e_c01293{bottom:1046.310000px;}
.y9f_c01293{bottom:1047.165000px;}
.ya0_c01293{bottom:1048.890000px;}
.y9c_c01293{bottom:1049.760000px;}
.y9d_c01293{bottom:1051.485000px;}
.y9b_c01293{bottom:1055.805000px;}
.y98_c01293{bottom:1056.675000px;}
.y9a_c01293{bottom:1057.530000px;}
.y96_c01293{bottom:1058.400000px;}
.y99_c01293{bottom:1059.270000px;}
.y95_c01293{bottom:1060.995000px;}
.y97_c01293{bottom:1061.850000px;}
.y93_c01293{bottom:1062.720000px;}
.y94_c01293{bottom:1065.315000px;}
.y90_c01293{bottom:1067.910000px;}
.y91_c01293{bottom:1068.765000px;}
.y92_c01293{bottom:1069.635000px;}
.y8d_c01293{bottom:1077.405000px;}
.y8f_c01293{bottom:1078.275000px;}
.y8e_c01293{bottom:1079.130000px;}
.y8a_c01293{bottom:1080.000000px;}
.y8b_c01293{bottom:1080.870000px;}
.y89_c01293{bottom:1081.725000px;}
.y8c_c01293{bottom:1082.595000px;}
.y88_c01293{bottom:1084.320000px;}
.y86_c01293{bottom:1085.190000px;}
.y83_c01293{bottom:1086.915000px;}
.y81_c01293{bottom:1087.770000px;}
.y80_c01293{bottom:1088.640000px;}
.y85_c01293{bottom:1089.510000px;}
.y84_c01293{bottom:1092.090000px;}
.y82_c01293{bottom:1093.830000px;}
.y87_c01293{bottom:1098.150000px;}
.y7f_c01293{bottom:1105.050000px;}
.y7e_c01293{bottom:1106.790000px;}
.y7b_c01293{bottom:1107.645000px;}
.y79_c01293{bottom:1110.240000px;}
.y7d_c01293{bottom:1111.965000px;}
.y7a_c01293{bottom:1112.835000px;}
.y7c_c01293{bottom:1118.010000px;}
.y77_c01293{bottom:1126.650000px;}
.y74_c01293{bottom:1127.520000px;}
.y75_c01293{bottom:1128.390000px;}
.y72_c01293{bottom:1130.115000px;}
.y78_c01293{bottom:1131.840000px;}
.y73_c01293{bottom:1132.710000px;}
.y76_c01293{bottom:1133.565000px;}
.y6f_c01293{bottom:1145.670000px;}
.y6e_c01293{bottom:1147.395000px;}
.y6d_c01293{bottom:1148.250000px;}
.y6c_c01293{bottom:1149.120000px;}
.y70_c01293{bottom:1151.715000px;}
.y71_c01293{bottom:1155.165000px;}
.y67_c01293{bottom:1168.125000px;}
.y66_c01293{bottom:1168.995000px;}
.y68_c01293{bottom:1169.850000px;}
.y69_c01293{bottom:1170.720000px;}
.y65_c01293{bottom:1171.590000px;}
.y6b_c01293{bottom:1172.445000px;}
.y6a_c01293{bottom:1174.170000px;}
.y1f8_c01293{bottom:1176.765000px;}
.y1f7_c01293{bottom:1185.405000px;}
.y63_c01293{bottom:1187.130000px;}
.y5f_c01293{bottom:1188.000000px;}
.y62_c01293{bottom:1188.870000px;}
.y61_c01293{bottom:1189.725000px;}
.y60_c01293{bottom:1192.320000px;}
.y64_c01293{bottom:1193.190000px;}
.y5e_c01293{bottom:1194.915000px;}
.y5d_c01293{bottom:1199.235000px;}
.y5c_c01293{bottom:1207.005000px;}
.y5a_c01293{bottom:1207.875000px;}
.y55_c01293{bottom:1208.730000px;}
.y54_c01293{bottom:1210.470000px;}
.y58_c01293{bottom:1211.325000px;}
.y59_c01293{bottom:1212.195000px;}
.y53_c01293{bottom:1213.050000px;}
.y56_c01293{bottom:1213.920000px;}
.y5b_c01293{bottom:1214.790000px;}
.y57_c01293{bottom:1215.645000px;}
.y52_c01293{bottom:1217.370000px;}
.y4b_c01293{bottom:1229.475000px;}
.y4d_c01293{bottom:1230.330000px;}
.y4e_c01293{bottom:1231.200000px;}
.y50_c01293{bottom:1232.925000px;}
.y51_c01293{bottom:1233.795000px;}
.y4a_c01293{bottom:1234.650000px;}
.y4f_c01293{bottom:1235.520000px;}
.y4c_c01293{bottom:1236.390000px;}
.y48_c01293{bottom:1238.970000px;}
.y7_c01293{bottom:1241.565000px;}
.y8_c01293{bottom:1242.435000px;}
.y49_c01293{bottom:1244.160000px;}
.y42_c01293{bottom:1245.885000px;}
.y3f_c01293{bottom:1246.755000px;}
.y41_c01293{bottom:1247.610000px;}
.y44_c01293{bottom:1248.480000px;}
.y46_c01293{bottom:1250.205000px;}
.y43_c01293{bottom:1251.930000px;}
.y47_c01293{bottom:1254.525000px;}
.y45_c01293{bottom:1255.395000px;}
.y40_c01293{bottom:1257.120000px;}
.y1f4_c01293{bottom:1259.715000px;}
.y6_c01293{bottom:1264.035000px;}
.y3c_c01293{bottom:1268.355000px;}
.y3d_c01293{bottom:1269.210000px;}
.y37_c01293{bottom:1270.080000px;}
.y36_c01293{bottom:1271.805000px;}
.y3a_c01293{bottom:1272.675000px;}
.y39_c01293{bottom:1273.530000px;}
.y3e_c01293{bottom:1275.270000px;}
.y38_c01293{bottom:1276.125000px;}
.y3b_c01293{bottom:1276.995000px;}
.y35_c01293{bottom:1277.850000px;}
.y34_c01293{bottom:1289.085000px;}
.y32_c01293{bottom:1290.810000px;}
.y2d_c01293{bottom:1293.405000px;}
.y33_c01293{bottom:1294.275000px;}
.y2c_c01293{bottom:1295.130000px;}
.y2e_c01293{bottom:1296.870000px;}
.y2f_c01293{bottom:1297.725000px;}
.y30_c01293{bottom:1298.595000px;}
.y31_c01293{bottom:1299.450000px;}
.y5_c01293{bottom:1308.960000px;}
.y3_c01293{bottom:1310.685000px;}
.y27_c01293{bottom:1312.410000px;}
.y24_c01293{bottom:1313.280000px;}
.y29_c01293{bottom:1314.150000px;}
.y26_c01293{bottom:1315.005000px;}
.y2b_c01293{bottom:1315.875000px;}
.y25_c01293{bottom:1316.730000px;}
.y2a_c01293{bottom:1317.600000px;}
.y28_c01293{bottom:1319.325000px;}
.y2_c01293{bottom:1323.645000px;}
.y1f_c01293{bottom:1327.110000px;}
.y23_c01293{bottom:1327.965000px;}
.y1e_c01293{bottom:1329.690000px;}
.y21_c01293{bottom:1332.285000px;}
.y1_c01293{bottom:1334.880000px;}
.y20_c01293{bottom:1338.330000px;}
.y22_c01293{bottom:1339.200000px;}
.y1c_c01293{bottom:1355.610000px;}
.y1d_c01293{bottom:1356.480000px;}
.y19_c01293{bottom:1357.350000px;}
.y1b_c01293{bottom:1361.670000px;}
.y1a_c01293{bottom:1365.120000px;}
.y4_c01293{bottom:1366.845000px;}
.y1f6_c01293{bottom:1389.315000px;}
.y17_c01293{bottom:1391.040000px;}
.y18_c01293{bottom:1391.910000px;}
.h13_c01293{height:3.110063px;}
.h25_c01293{height:5.399414px;}
.h10_c01293{height:6.209326px;}
.hc_c01293{height:9.340986px;}
.h2_c01293{height:12.418652px;}
.h3_c01293{height:15.550313px;}
.h5_c01293{height:18.681973px;}
.h26_c01293{height:18.970313px;}
.h22_c01293{height:21.759639px;}
.h21_c01293{height:24.891299px;}
.h11_c01293{height:27.968965px;}
.he_c01293{height:31.100625px;}
.h12_c01293{height:34.232285px;}
.hb_c01293{height:37.309951px;}
.h4_c01293{height:40.441611px;}
.hd_c01293{height:43.519277px;}
.hf_c01293{height:46.650937px;}
.h20_c01293{height:49.782598px;}
.h1b_c01293{height:52.860264px;}
.ha_c01293{height:55.991924px;}
.h1e_c01293{height:59.069590px;}
.h6_c01293{height:62.201250px;}
.h7_c01293{height:65.332910px;}
.h14_c01293{height:68.410576px;}
.h1f_c01293{height:71.542236px;}
.h1a_c01293{height:74.619902px;}
.h1c_c01293{height:77.751563px;}
.h23_c01293{height:80.883223px;}
.h16_c01293{height:83.960889px;}
.h24_c01293{height:87.092549px;}
.h27_c01293{height:90.170215px;}
.h18_c01293{height:93.301875px;}
.h19_c01293{height:96.433535px;}
.h1d_c01293{height:99.511201px;}
.h15_c01293{height:102.642861px;}
.h9_c01293{height:118.193174px;}
.h17_c01293{height:121.270840px;}
.h8_c01293{height:171.053437px;}
.h0_c01293{height:1509.405000px;}
.h1_c01293{height:1509.750000px;}
.w0_c01293{width:1088.640000px;}
.w1_c01293{width:1089.000000px;}
.x0_c01293{left:0.000000px;}
.x9_c01293{left:1.725000px;}
.x1_c01293{left:4.320000px;}
.x6_c01293{left:12.960000px;}
.x5_c01293{left:14.685000px;}
.x7_c01293{left:30.240000px;}
.x8_c01293{left:45.795000px;}
.x4_c01293{left:55.290000px;}
.x3_c01293{left:91.590000px;}
.xc_c01293{left:133.920000px;}
.x2_c01293{left:150.330000px;}
.xa_c01293{left:164.160000px;}
.xb_c01293{left:177.990000px;}
.x117_c01293{left:188.355000px;}
.xd7_c01293{left:192.675000px;}
.x102_c01293{left:194.400000px;}
.x103_c01293{left:204.765000px;}
.x106_c01293{left:206.490000px;}
.x104_c01293{left:221.190000px;}
.x5f_c01293{left:223.770000px;}
.x4a_c01293{left:226.365000px;}
.xe4_c01293{left:228.090000px;}
.x4b_c01293{left:230.685000px;}
.x7a_c01293{left:232.410000px;}
.x42_c01293{left:234.150000px;}
.x80_c01293{left:235.875000px;}
.x19_c01293{left:237.600000px;}
.xa9_c01293{left:239.325000px;}
.xfe_c01293{left:242.790000px;}
.xa6_c01293{left:247.965000px;}
.xc1_c01293{left:249.690000px;}
.x38_c01293{left:252.285000px;}
.x90_c01293{left:255.750000px;}
.x4c_c01293{left:257.475000px;}
.x52_c01293{left:259.200000px;}
.xed_c01293{left:261.795000px;}
.x63_c01293{left:265.245000px;}
.xac_c01293{left:268.710000px;}
.x99_c01293{left:271.290000px;}
.xc4_c01293{left:273.030000px;}
.x60_c01293{left:274.755000px;}
.xb0_c01293{left:276.480000px;}
.x72_c01293{left:280.800000px;}
.xff_c01293{left:282.525000px;}
.x7b_c01293{left:284.250000px;}
.x1a_c01293{left:287.715000px;}
.x2e_c01293{left:289.440000px;}
.x53_c01293{left:293.760000px;}
.xea_c01293{left:297.210000px;}
.xb5_c01293{left:299.805000px;}
.x1b_c01293{left:301.530000px;}
.xeb_c01293{left:304.125000px;}
.x39_c01293{left:307.590000px;}
.x73_c01293{left:311.040000px;}
.x101_c01293{left:312.765000px;}
.x91_c01293{left:315.360000px;}
.x1c_c01293{left:317.955000px;}
.x9a_c01293{left:319.680000px;}
.x10f_c01293{left:323.130000px;}
.x10_c01293{left:327.450000px;}
.x22_c01293{left:330.045000px;}
.x7c_c01293{left:331.770000px;}
.xe5_c01293{left:333.510000px;}
.x43_c01293{left:335.235000px;}
.x1d_c01293{left:338.685000px;}
.x3a_c01293{left:342.150000px;}
.x81_c01293{left:345.600000px;}
.x64_c01293{left:349.050000px;}
.x11_c01293{left:351.645000px;}
.xdf_c01293{left:354.240000px;}
.x23_c01293{left:357.690000px;}
.x44_c01293{left:359.430000px;}
.x9b_c01293{left:361.155000px;}
.xe6_c01293{left:363.750000px;}
.xec_c01293{left:367.200000px;}
.x9c_c01293{left:369.795000px;}
.xce_c01293{left:372.390000px;}
.x4d_c01293{left:374.115000px;}
.x54_c01293{left:375.840000px;}
.xc5_c01293{left:379.290000px;}
.x115_c01293{left:387.930000px;}
.x92_c01293{left:390.525000px;}
.x2f_c01293{left:393.120000px;}
.x55_c01293{left:394.845000px;}
.xbc_c01293{left:397.440000px;}
.xb6_c01293{left:400.035000px;}
.x3b_c01293{left:401.760000px;}
.xfb_c01293{left:403.485000px;}
.x9d_c01293{left:406.950000px;}
.x12_c01293{left:408.675000px;}
.x74_c01293{left:412.125000px;}
.x1e_c01293{left:417.315000px;}
.x65_c01293{left:419.910000px;}
.xe7_c01293{left:421.635000px;}
.xcb_c01293{left:424.230000px;}
.x45_c01293{left:425.955000px;}
.x13_c01293{left:427.680000px;}
.x9e_c01293{left:429.405000px;}
.x107_c01293{left:432.000000px;}
.x30_c01293{left:433.725000px;}
.xb1_c01293{left:435.450000px;}
.xa7_c01293{left:437.190000px;}
.x82_c01293{left:441.510000px;}
.xb7_c01293{left:443.235000px;}
.x14_c01293{left:444.960000px;}
.xe0_c01293{left:446.685000px;}
.x24_c01293{left:448.410000px;}
.xda_c01293{left:450.150000px;}
.x31_c01293{left:451.875000px;}
.xf5_c01293{left:453.600000px;}
.x9f_c01293{left:459.645000px;}
.x110_c01293{left:462.240000px;}
.xb2_c01293{left:463.965000px;}
.x32_c01293{left:465.690000px;}
.x56_c01293{left:470.010000px;}
.xc7_c01293{left:471.750000px;}
.xe1_c01293{left:475.200000px;}
.x25_c01293{left:477.795000px;}
.x10a_c01293{left:479.520000px;}
.x1f_c01293{left:481.245000px;}
.x3c_c01293{left:484.710000px;}
.x33_c01293{left:489.030000px;}
.xde_c01293{left:490.755000px;}
.xdb_c01293{left:494.205000px;}
.xb3_c01293{left:495.930000px;}
.xd3_c01293{left:498.525000px;}
.x4e_c01293{left:500.250000px;}
.x6d_c01293{left:503.715000px;}
.x3d_c01293{left:505.440000px;}
.xf0_c01293{left:507.165000px;}
.xbd_c01293{left:510.630000px;}
.xd_c01293{left:513.210000px;}
.xfc_c01293{left:514.950000px;}
.x66_c01293{left:518.400000px;}
.xa4_c01293{left:520.995000px;}
.x46_c01293{left:522.720000px;}
.xbe_c01293{left:525.315000px;}
.x34_c01293{left:527.910000px;}
.x93_c01293{left:529.635000px;}
.xae_c01293{left:531.360000px;}
.x83_c01293{left:533.085000px;}
.xa0_c01293{left:536.550000px;}
.xbf_c01293{left:540.000000px;}
.xaa_c01293{left:546.045000px;}
.x67_c01293{left:547.770000px;}
.x112_c01293{left:550.365000px;}
.xbb_c01293{left:552.960000px;}
.x10d_c01293{left:555.555000px;}
.x116_c01293{left:557.280000px;}
.x7d_c01293{left:559.005000px;}
.x15_c01293{left:560.730000px;}
.x57_c01293{left:563.325000px;}
.x75_c01293{left:565.920000px;}
.x20_c01293{left:567.645000px;}
.xf1_c01293{left:569.370000px;}
.x105_c01293{left:571.965000px;}
.xcc_c01293{left:573.690000px;}
.xc8_c01293{left:575.430000px;}
.x8a_c01293{left:577.155000px;}
.xf9_c01293{left:584.070000px;}
.x58_c01293{left:587.520000px;}
.x10b_c01293{left:589.245000px;}
.x3e_c01293{left:590.970000px;}
.x16_c01293{left:592.710000px;}
.x26_c01293{left:597.885000px;}
.xb8_c01293{left:603.930000px;}
.x3f_c01293{left:605.670000px;}
.x8b_c01293{left:609.120000px;}
.x68_c01293{left:611.715000px;}
.x27_c01293{left:613.440000px;}
.x59_c01293{left:616.035000px;}
.x76_c01293{left:617.760000px;}
.xcf_c01293{left:622.080000px;}
.x84_c01293{left:623.805000px;}
.x61_c01293{left:625.530000px;}
.xdc_c01293{left:628.995000px;}
.xc9_c01293{left:632.445000px;}
.xd4_c01293{left:635.040000px;}
.xe8_c01293{left:636.765000px;}
.xe_c01293{left:641.955000px;}
.x21_c01293{left:649.725000px;}
.x35_c01293{left:651.450000px;}
.xf4_c01293{left:653.190000px;}
.x5a_c01293{left:654.915000px;}
.x94_c01293{left:656.640000px;}
.x28_c01293{left:659.235000px;}
.xa1_c01293{left:660.960000px;}
.x108_c01293{left:664.410000px;}
.x85_c01293{left:666.150000px;}
.xc2_c01293{left:667.875000px;}
.x77_c01293{left:670.470000px;}
.x36_c01293{left:672.195000px;}
.x7e_c01293{left:675.645000px;}
.xfa_c01293{left:677.370000px;}
.xf_c01293{left:679.110000px;}
.xdd_c01293{left:680.835000px;}
.x113_c01293{left:682.560000px;}
.xa2_c01293{left:686.010000px;}
.x69_c01293{left:687.750000px;}
.x100_c01293{left:690.330000px;}
.xd5_c01293{left:692.925000px;}
.x29_c01293{left:694.650000px;}
.x4f_c01293{left:696.390000px;}
.x8c_c01293{left:698.970000px;}
.x6a_c01293{left:700.710000px;}
.xe2_c01293{left:704.160000px;}
.xc0_c01293{left:706.755000px;}
.x2a_c01293{left:711.930000px;}
.xd0_c01293{left:713.670000px;}
.xca_c01293{left:715.395000px;}
.x5b_c01293{left:717.120000px;}
.xc6_c01293{left:723.165000px;}
.x6e_c01293{left:726.630000px;}
.x2b_c01293{left:729.210000px;}
.x6b_c01293{left:730.950000px;}
.x47_c01293{left:732.675000px;}
.xd8_c01293{left:734.400000px;}
.x86_c01293{left:736.995000px;}
.xb9_c01293{left:738.720000px;}
.xee_c01293{left:743.040000px;}
.x8d_c01293{left:744.765000px;}
.x8e_c01293{left:750.810000px;}
.x40_c01293{left:753.405000px;}
.xaf_c01293{left:756.870000px;}
.x17_c01293{left:759.450000px;}
.x109_c01293{left:761.190000px;}
.x5c_c01293{left:763.770000px;}
.xf2_c01293{left:766.365000px;}
.xa3_c01293{left:768.960000px;}
.x37_c01293{left:773.280000px;}
.x95_c01293{left:777.600000px;}
.x10c_c01293{left:780.195000px;}
.xe3_c01293{left:781.920000px;}
.x5d_c01293{left:783.645000px;}
.xfd_c01293{left:787.110000px;}
.x78_c01293{left:788.835000px;}
.x6c_c01293{left:791.430000px;}
.x62_c01293{left:793.155000px;}
.x96_c01293{left:795.750000px;}
.xd9_c01293{left:797.475000px;}
.x6f_c01293{left:799.200000px;}
.x87_c01293{left:800.925000px;}
.xa5_c01293{left:803.520000px;}
.x2c_c01293{left:805.245000px;}
.x88_c01293{left:808.710000px;}
.x48_c01293{left:813.030000px;}
.xcd_c01293{left:815.610000px;}
.xd6_c01293{left:820.800000px;}
.x97_c01293{left:822.525000px;}
.x41_c01293{left:824.250000px;}
.xf6_c01293{left:825.990000px;}
.xa8_c01293{left:827.715000px;}
.xd1_c01293{left:831.165000px;}
.x49_c01293{left:833.760000px;}
.x50_c01293{left:839.805000px;}
.x79_c01293{left:841.530000px;}
.x18_c01293{left:844.125000px;}
.x2d_c01293{left:846.720000px;}
.x114_c01293{left:849.315000px;}
.xf3_c01293{left:851.040000px;}
.xe9_c01293{left:852.765000px;}
.x5e_c01293{left:856.230000px;}
.x51_c01293{left:858.810000px;}
.x98_c01293{left:862.275000px;}
.x8f_c01293{left:864.870000px;}
.x70_c01293{left:866.595000px;}
.x7f_c01293{left:870.045000px;}
.xc3_c01293{left:871.770000px;}
.x89_c01293{left:873.510000px;}
.x71_c01293{left:876.090000px;}
.xd2_c01293{left:878.685000px;}
.xab_c01293{left:881.280000px;}
.xad_c01293{left:883.005000px;}
.x111_c01293{left:886.470000px;}
.xef_c01293{left:888.195000px;}
.x10e_c01293{left:892.515000px;}
.xb4_c01293{left:895.965000px;}
.xba_c01293{left:898.560000px;}
.xf7_c01293{left:902.880000px;}
.x11b_c01293{left:911.520000px;}
.xf8_c01293{left:919.290000px;}
.x11e_c01293{left:922.755000px;}
.x11a_c01293{left:924.480000px;}
.x120_c01293{left:932.250000px;}
.x11f_c01293{left:939.165000px;}
.x118_c01293{left:944.358048px;}
.x119_c01293{left:952.125000px;}
.x11d_c01293{left:967.680000px;}
.x11c_c01293{left:970.275000px;}
@media print{
.v1_c01293{vertical-align:-9.226667pt;}
.v2_c01293{vertical-align:-3.093333pt;}
.v0_c01293{vertical-align:0.000000pt;}
.v3_c01293{vertical-align:3.040000pt;}
.ls4_c01293{letter-spacing:0.000000pt;}
.ls1_c01293{letter-spacing:33.976427pt;}
.ls3_c01293{letter-spacing:44.692800pt;}
.ls2_c01293{letter-spacing:48.154453pt;}
.ls0_c01293{letter-spacing:100.253013pt;}
.ws0_c01293{word-spacing:-5.425387pt;}
.ws1_c01293{word-spacing:0.000000pt;}
.fs11_c01293{font-size:3.072000pt;}
.fs23_c01293{font-size:5.333333pt;}
.fse_c01293{font-size:6.133333pt;}
.fsa_c01293{font-size:9.226667pt;}
.fs0_c01293{font-size:12.266667pt;}
.fs1_c01293{font-size:15.360000pt;}
.fs3_c01293{font-size:18.453333pt;}
.fs20_c01293{font-size:21.493333pt;}
.fs1f_c01293{font-size:24.586667pt;}
.fsf_c01293{font-size:27.626667pt;}
.fsc_c01293{font-size:30.720000pt;}
.fs10_c01293{font-size:33.813333pt;}
.fs9_c01293{font-size:36.853333pt;}
.fs2_c01293{font-size:39.946667pt;}
.fsb_c01293{font-size:42.986667pt;}
.fsd_c01293{font-size:46.080000pt;}
.fs1e_c01293{font-size:49.173333pt;}
.fs19_c01293{font-size:52.213333pt;}
.fs8_c01293{font-size:55.306667pt;}
.fs1c_c01293{font-size:58.346667pt;}
.fs4_c01293{font-size:61.440000pt;}
.fs5_c01293{font-size:64.533333pt;}
.fs12_c01293{font-size:67.573333pt;}
.fs1d_c01293{font-size:70.666667pt;}
.fs18_c01293{font-size:73.706667pt;}
.fs1a_c01293{font-size:76.800000pt;}
.fs21_c01293{font-size:79.893333pt;}
.fs14_c01293{font-size:82.933333pt;}
.fs22_c01293{font-size:86.026667pt;}
.fs24_c01293{font-size:89.066667pt;}
.fs16_c01293{font-size:92.160000pt;}
.fs17_c01293{font-size:95.253333pt;}
.fs1b_c01293{font-size:98.293333pt;}
.fs13_c01293{font-size:101.386667pt;}
.fs7_c01293{font-size:116.746667pt;}
.fs15_c01293{font-size:119.786667pt;}
.fs6_c01293{font-size:168.960000pt;}
.y0_c01293{bottom:0.000000pt;}
.y1f5_c01293{bottom:142.080000pt;}
.y1ef_c01293{bottom:153.600000pt;}
.y1f1_c01293{bottom:154.373333pt;}
.y1f3_c01293{bottom:155.133333pt;}
.y1f0_c01293{bottom:159.746667pt;}
.y1ed_c01293{bottom:161.280000pt;}
.y1ec_c01293{bottom:162.813333pt;}
.y1ee_c01293{bottom:166.653333pt;}
.y1f2_c01293{bottom:168.960000pt;}
.y1eb_c01293{bottom:172.026667pt;}
.y1e8_c01293{bottom:172.800000pt;}
.y1e4_c01293{bottom:173.573333pt;}
.y1ea_c01293{bottom:174.333333pt;}
.y1e6_c01293{bottom:175.106667pt;}
.y1e7_c01293{bottom:176.640000pt;}
.y1e5_c01293{bottom:181.253333pt;}
.y1e9_c01293{bottom:182.786667pt;}
.y1e2_c01293{bottom:189.693333pt;}
.y1de_c01293{bottom:191.226667pt;}
.y1e3_c01293{bottom:192.000000pt;}
.y1e0_c01293{bottom:194.306667pt;}
.y1df_c01293{bottom:195.066667pt;}
.y1e1_c01293{bottom:196.613333pt;}
.y1d5_c01293{bottom:212.733333pt;}
.y1dd_c01293{bottom:213.506667pt;}
.y1d9_c01293{bottom:214.266667pt;}
.y1db_c01293{bottom:215.040000pt;}
.y1d7_c01293{bottom:215.813333pt;}
.y1dc_c01293{bottom:216.573333pt;}
.y1d8_c01293{bottom:217.346667pt;}
.y1d6_c01293{bottom:218.106667pt;}
.y1da_c01293{bottom:223.493333pt;}
.y1d1_c01293{bottom:225.786667pt;}
.y1d2_c01293{bottom:226.560000pt;}
.y1cf_c01293{bottom:227.333333pt;}
.y1cd_c01293{bottom:228.866667pt;}
.y1d3_c01293{bottom:229.626667pt;}
.y1d0_c01293{bottom:230.400000pt;}
.y1cb_c01293{bottom:232.706667pt;}
.y1ce_c01293{bottom:234.240000pt;}
.y1cc_c01293{bottom:235.773333pt;}
.y1d4_c01293{bottom:240.386667pt;}
.y1c9_c01293{bottom:246.533333pt;}
.y1c7_c01293{bottom:247.293333pt;}
.y1ca_c01293{bottom:248.826667pt;}
.y1c4_c01293{bottom:249.600000pt;}
.y1c5_c01293{bottom:250.373333pt;}
.y1c8_c01293{bottom:251.906667pt;}
.y1c6_c01293{bottom:252.666667pt;}
.y1c3_c01293{bottom:265.733333pt;}
.y1c2_c01293{bottom:268.800000pt;}
.y1bf_c01293{bottom:269.573333pt;}
.y1c0_c01293{bottom:270.333333pt;}
.y1be_c01293{bottom:271.106667pt;}
.y1bd_c01293{bottom:271.866667pt;}
.y1c1_c01293{bottom:280.320000pt;}
.y1bc_c01293{bottom:281.853333pt;}
.y1b5_c01293{bottom:282.626667pt;}
.y1ba_c01293{bottom:283.386667pt;}
.y1b3_c01293{bottom:284.160000pt;}
.y1b4_c01293{bottom:284.933333pt;}
.y1b2_c01293{bottom:285.693333pt;}
.y1bb_c01293{bottom:286.466667pt;}
.y1b9_c01293{bottom:287.226667pt;}
.y1b7_c01293{bottom:288.000000pt;}
.y1b8_c01293{bottom:288.773333pt;}
.y1b6_c01293{bottom:291.066667pt;}
.y1b0_c01293{bottom:299.520000pt;}
.y1ad_c01293{bottom:301.053333pt;}
.y1ae_c01293{bottom:302.586667pt;}
.y1b1_c01293{bottom:303.360000pt;}
.y1ac_c01293{bottom:304.133333pt;}
.y1af_c01293{bottom:304.893333pt;}
.y1ab_c01293{bottom:306.426667pt;}
.y1aa_c01293{bottom:317.946667pt;}
.y1a9_c01293{bottom:318.720000pt;}
.y1a7_c01293{bottom:320.253333pt;}
.y1a5_c01293{bottom:321.026667pt;}
.y1a6_c01293{bottom:322.560000pt;}
.y1a3_c01293{bottom:325.626667pt;}
.y1a4_c01293{bottom:326.400000pt;}
.y1a8_c01293{bottom:327.933333pt;}
.y1a2_c01293{bottom:334.853333pt;}
.y1a0_c01293{bottom:335.613333pt;}
.y1a1_c01293{bottom:339.453333pt;}
.y19e_c01293{bottom:340.986667pt;}
.y19d_c01293{bottom:344.066667pt;}
.y19f_c01293{bottom:351.746667pt;}
.y19a_c01293{bottom:355.586667pt;}
.y19b_c01293{bottom:356.346667pt;}
.y199_c01293{bottom:357.120000pt;}
.y194_c01293{bottom:357.893333pt;}
.y197_c01293{bottom:359.426667pt;}
.y19c_c01293{bottom:360.186667pt;}
.y198_c01293{bottom:360.960000pt;}
.y195_c01293{bottom:361.733333pt;}
.y196_c01293{bottom:362.493333pt;}
.y192_c01293{bottom:372.480000pt;}
.y191_c01293{bottom:373.253333pt;}
.y190_c01293{bottom:374.786667pt;}
.y18f_c01293{bottom:375.546667pt;}
.y193_c01293{bottom:377.093333pt;}
.y18e_c01293{bottom:379.386667pt;}
.y18d_c01293{bottom:385.533333pt;}
.y18b_c01293{bottom:390.906667pt;}
.y189_c01293{bottom:391.680000pt;}
.y180_c01293{bottom:393.213333pt;}
.y18a_c01293{bottom:393.986667pt;}
.y188_c01293{bottom:394.746667pt;}
.y183_c01293{bottom:397.826667pt;}
.y186_c01293{bottom:398.586667pt;}
.y182_c01293{bottom:400.133333pt;}
.y181_c01293{bottom:401.666667pt;}
.y185_c01293{bottom:403.200000pt;}
.y187_c01293{bottom:403.973333pt;}
.y184_c01293{bottom:404.733333pt;}
.y18c_c01293{bottom:405.506667pt;}
.y17d_c01293{bottom:407.040000pt;}
.y17c_c01293{bottom:408.573333pt;}
.y17e_c01293{bottom:409.346667pt;}
.y17b_c01293{bottom:410.880000pt;}
.y17f_c01293{bottom:412.413333pt;}
.y178_c01293{bottom:413.946667pt;}
.y17a_c01293{bottom:415.493333pt;}
.y179_c01293{bottom:416.253333pt;}
.y174_c01293{bottom:427.773333pt;}
.y171_c01293{bottom:428.546667pt;}
.y172_c01293{bottom:429.306667pt;}
.y173_c01293{bottom:430.853333pt;}
.y176_c01293{bottom:431.613333pt;}
.y175_c01293{bottom:436.226667pt;}
.y177_c01293{bottom:436.986667pt;}
.y170_c01293{bottom:443.906667pt;}
.y16e_c01293{bottom:445.440000pt;}
.y16c_c01293{bottom:446.973333pt;}
.y16f_c01293{bottom:448.506667pt;}
.y16d_c01293{bottom:450.053333pt;}
.y16a_c01293{bottom:461.573333pt;}
.y167_c01293{bottom:463.106667pt;}
.y169_c01293{bottom:463.866667pt;}
.y164_c01293{bottom:465.413333pt;}
.y165_c01293{bottom:466.173333pt;}
.y16b_c01293{bottom:466.946667pt;}
.y168_c01293{bottom:467.706667pt;}
.y166_c01293{bottom:469.253333pt;}
.y162_c01293{bottom:479.226667pt;}
.y161_c01293{bottom:480.773333pt;}
.y15f_c01293{bottom:481.533333pt;}
.y15d_c01293{bottom:482.306667pt;}
.y160_c01293{bottom:483.066667pt;}
.y15e_c01293{bottom:486.146667pt;}
.y15c_c01293{bottom:487.680000pt;}
.y15b_c01293{bottom:488.453333pt;}
.y163_c01293{bottom:490.746667pt;}
.y15a_c01293{bottom:497.666667pt;}
.y159_c01293{bottom:498.426667pt;}
.y157_c01293{bottom:499.200000pt;}
.y158_c01293{bottom:499.973333pt;}
.y16_c01293{bottom:502.266667pt;}
.y153_c01293{bottom:516.093333pt;}
.y154_c01293{bottom:516.866667pt;}
.y152_c01293{bottom:517.626667pt;}
.y155_c01293{bottom:518.400000pt;}
.y150_c01293{bottom:519.173333pt;}
.y151_c01293{bottom:521.466667pt;}
.y156_c01293{bottom:528.386667pt;}
.y14c_c01293{bottom:534.533333pt;}
.y147_c01293{bottom:535.293333pt;}
.y14b_c01293{bottom:536.066667pt;}
.y148_c01293{bottom:536.826667pt;}
.y14e_c01293{bottom:537.600000pt;}
.y14f_c01293{bottom:538.373333pt;}
.y14d_c01293{bottom:539.133333pt;}
.y146_c01293{bottom:539.906667pt;}
.y149_c01293{bottom:540.666667pt;}
.y14a_c01293{bottom:541.440000pt;}
.y145_c01293{bottom:551.426667pt;}
.y144_c01293{bottom:552.186667pt;}
.y140_c01293{bottom:556.026667pt;}
.y142_c01293{bottom:557.573333pt;}
.y143_c01293{bottom:558.333333pt;}
.y141_c01293{bottom:559.106667pt;}
.y13f_c01293{bottom:570.626667pt;}
.y13a_c01293{bottom:571.386667pt;}
.y13c_c01293{bottom:572.160000pt;}
.y13d_c01293{bottom:573.693333pt;}
.y13e_c01293{bottom:575.226667pt;}
.y13b_c01293{bottom:576.000000pt;}
.y139_c01293{bottom:576.773333pt;}
.y133_c01293{bottom:587.520000pt;}
.y138_c01293{bottom:588.293333pt;}
.y137_c01293{bottom:589.053333pt;}
.y136_c01293{bottom:589.826667pt;}
.y131_c01293{bottom:590.586667pt;}
.y134_c01293{bottom:591.360000pt;}
.y135_c01293{bottom:592.133333pt;}
.y130_c01293{bottom:593.666667pt;}
.y132_c01293{bottom:594.426667pt;}
.y12f_c01293{bottom:605.186667pt;}
.y12e_c01293{bottom:605.946667pt;}
.y12c_c01293{bottom:606.720000pt;}
.y125_c01293{bottom:607.493333pt;}
.y129_c01293{bottom:608.253333pt;}
.y12a_c01293{bottom:609.026667pt;}
.y12b_c01293{bottom:609.786667pt;}
.y127_c01293{bottom:610.560000pt;}
.y12d_c01293{bottom:611.333333pt;}
.y126_c01293{bottom:612.093333pt;}
.y128_c01293{bottom:612.866667pt;}
.y123_c01293{bottom:624.386667pt;}
.y124_c01293{bottom:625.146667pt;}
.y11f_c01293{bottom:625.920000pt;}
.y122_c01293{bottom:626.693333pt;}
.y11b_c01293{bottom:627.453333pt;}
.y11d_c01293{bottom:628.226667pt;}
.y11c_c01293{bottom:628.986667pt;}
.y11e_c01293{bottom:629.760000pt;}
.y121_c01293{bottom:630.533333pt;}
.y15_c01293{bottom:634.373333pt;}
.y14_c01293{bottom:635.133333pt;}
.y120_c01293{bottom:635.906667pt;}
.y119_c01293{bottom:641.280000pt;}
.y118_c01293{bottom:642.053333pt;}
.y115_c01293{bottom:643.586667pt;}
.y116_c01293{bottom:644.346667pt;}
.y114_c01293{bottom:645.120000pt;}
.y11a_c01293{bottom:645.893333pt;}
.y117_c01293{bottom:648.186667pt;}
.y113_c01293{bottom:659.706667pt;}
.y112_c01293{bottom:660.480000pt;}
.y10f_c01293{bottom:661.253333pt;}
.y111_c01293{bottom:662.013333pt;}
.y110_c01293{bottom:662.786667pt;}
.y10d_c01293{bottom:665.093333pt;}
.y10e_c01293{bottom:665.853333pt;}
.y10c_c01293{bottom:672.773333pt;}
.y105_c01293{bottom:674.306667pt;}
.y104_c01293{bottom:675.840000pt;}
.y10b_c01293{bottom:677.373333pt;}
.y109_c01293{bottom:678.906667pt;}
.y107_c01293{bottom:680.453333pt;}
.y10a_c01293{bottom:681.213333pt;}
.y108_c01293{bottom:682.746667pt;}
.y103_c01293{bottom:683.520000pt;}
.y106_c01293{bottom:684.293333pt;}
.y100_c01293{bottom:695.813333pt;}
.yfe_c01293{bottom:696.573333pt;}
.y102_c01293{bottom:697.346667pt;}
.y101_c01293{bottom:698.880000pt;}
.yff_c01293{bottom:700.413333pt;}
.yfd_c01293{bottom:701.186667pt;}
.yfc_c01293{bottom:711.933333pt;}
.yf9_c01293{bottom:712.706667pt;}
.yfb_c01293{bottom:713.466667pt;}
.yf4_c01293{bottom:714.240000pt;}
.yf8_c01293{bottom:715.013333pt;}
.yfa_c01293{bottom:715.773333pt;}
.yf3_c01293{bottom:718.080000pt;}
.yf6_c01293{bottom:718.853333pt;}
.yf5_c01293{bottom:721.920000pt;}
.yf7_c01293{bottom:724.986667pt;}
.y1fb_c01293{bottom:727.293333pt;}
.yf2_c01293{bottom:730.373333pt;}
.yf1_c01293{bottom:731.133333pt;}
.yed_c01293{bottom:731.906667pt;}
.yec_c01293{bottom:732.666667pt;}
.yf0_c01293{bottom:733.440000pt;}
.y12_c01293{bottom:734.213333pt;}
.yeb_c01293{bottom:735.746667pt;}
.y13_c01293{bottom:736.506667pt;}
.yee_c01293{bottom:737.280000pt;}
.yef_c01293{bottom:738.053333pt;}
.y11_c01293{bottom:746.493333pt;}
.yea_c01293{bottom:748.800000pt;}
.ye6_c01293{bottom:749.573333pt;}
.ye9_c01293{bottom:750.333333pt;}
.ye4_c01293{bottom:751.106667pt;}
.ye7_c01293{bottom:752.640000pt;}
.ye8_c01293{bottom:754.173333pt;}
.ye5_c01293{bottom:754.946667pt;}
.y10_c01293{bottom:757.253333pt;}
.ye3_c01293{bottom:766.466667pt;}
.ye2_c01293{bottom:767.226667pt;}
.ye1_c01293{bottom:768.000000pt;}
.ydc_c01293{bottom:769.533333pt;}
.yde_c01293{bottom:771.840000pt;}
.ydf_c01293{bottom:773.373333pt;}
.ye0_c01293{bottom:774.146667pt;}
.ydd_c01293{bottom:776.453333pt;}
.ydb_c01293{bottom:781.826667pt;}
.yf_c01293{bottom:784.133333pt;}
.yda_c01293{bottom:785.666667pt;}
.yd5_c01293{bottom:786.426667pt;}
.yd6_c01293{bottom:788.733333pt;}
.yd7_c01293{bottom:791.813333pt;}
.yd9_c01293{bottom:793.346667pt;}
.yd8_c01293{bottom:794.880000pt;}
.ye_c01293{bottom:802.560000pt;}
.yd3_c01293{bottom:804.093333pt;}
.yd1_c01293{bottom:804.866667pt;}
.yb_c01293{bottom:806.400000pt;}
.yd0_c01293{bottom:807.173333pt;}
.yd_c01293{bottom:807.933333pt;}
.yd2_c01293{bottom:809.466667pt;}
.yc_c01293{bottom:811.773333pt;}
.yd4_c01293{bottom:818.693333pt;}
.y9_c01293{bottom:819.453333pt;}
.yce_c01293{bottom:820.986667pt;}
.yc7_c01293{bottom:822.533333pt;}
.yc8_c01293{bottom:823.293333pt;}
.ycc_c01293{bottom:824.066667pt;}
.ycd_c01293{bottom:824.826667pt;}
.yc9_c01293{bottom:826.373333pt;}
.ya_c01293{bottom:827.906667pt;}
.yca_c01293{bottom:828.666667pt;}
.ycb_c01293{bottom:836.346667pt;}
.ycf_c01293{bottom:837.893333pt;}
.yc0_c01293{bottom:840.186667pt;}
.yc6_c01293{bottom:840.960000pt;}
.ybf_c01293{bottom:841.733333pt;}
.yc1_c01293{bottom:842.493333pt;}
.yc4_c01293{bottom:843.266667pt;}
.yc3_c01293{bottom:844.026667pt;}
.yc5_c01293{bottom:844.800000pt;}
.yc2_c01293{bottom:845.573333pt;}
.ybe_c01293{bottom:857.093333pt;}
.yb8_c01293{bottom:857.853333pt;}
.yba_c01293{bottom:858.626667pt;}
.yb7_c01293{bottom:859.386667pt;}
.ybd_c01293{bottom:860.933333pt;}
.ybc_c01293{bottom:861.693333pt;}
.yb9_c01293{bottom:862.466667pt;}
.ybb_c01293{bottom:864.000000pt;}
.y1f9_c01293{bottom:868.613333pt;}
.y1fa_c01293{bottom:870.906667pt;}
.yb5_c01293{bottom:875.520000pt;}
.yb6_c01293{bottom:877.053333pt;}
.yb3_c01293{bottom:880.133333pt;}
.yb4_c01293{bottom:880.893333pt;}
.yb2_c01293{bottom:891.653333pt;}
.yac_c01293{bottom:893.186667pt;}
.yb1_c01293{bottom:894.720000pt;}
.yb0_c01293{bottom:895.493333pt;}
.yad_c01293{bottom:896.253333pt;}
.yaf_c01293{bottom:900.093333pt;}
.yab_c01293{bottom:906.240000pt;}
.yaa_c01293{bottom:907.013333pt;}
.yae_c01293{bottom:909.306667pt;}
.ya9_c01293{bottom:910.080000pt;}
.ya7_c01293{bottom:910.853333pt;}
.ya3_c01293{bottom:912.386667pt;}
.ya2_c01293{bottom:913.146667pt;}
.ya6_c01293{bottom:913.920000pt;}
.ya4_c01293{bottom:914.693333pt;}
.ya8_c01293{bottom:915.453333pt;}
.ya5_c01293{bottom:916.226667pt;}
.ya1_c01293{bottom:928.506667pt;}
.y9e_c01293{bottom:930.053333pt;}
.y9f_c01293{bottom:930.813333pt;}
.ya0_c01293{bottom:932.346667pt;}
.y9c_c01293{bottom:933.120000pt;}
.y9d_c01293{bottom:934.653333pt;}
.y9b_c01293{bottom:938.493333pt;}
.y98_c01293{bottom:939.266667pt;}
.y9a_c01293{bottom:940.026667pt;}
.y96_c01293{bottom:940.800000pt;}
.y99_c01293{bottom:941.573333pt;}
.y95_c01293{bottom:943.106667pt;}
.y97_c01293{bottom:943.866667pt;}
.y93_c01293{bottom:944.640000pt;}
.y94_c01293{bottom:946.946667pt;}
.y90_c01293{bottom:949.253333pt;}
.y91_c01293{bottom:950.013333pt;}
.y92_c01293{bottom:950.786667pt;}
.y8d_c01293{bottom:957.693333pt;}
.y8f_c01293{bottom:958.466667pt;}
.y8e_c01293{bottom:959.226667pt;}
.y8a_c01293{bottom:960.000000pt;}
.y8b_c01293{bottom:960.773333pt;}
.y89_c01293{bottom:961.533333pt;}
.y8c_c01293{bottom:962.306667pt;}
.y88_c01293{bottom:963.840000pt;}
.y86_c01293{bottom:964.613333pt;}
.y83_c01293{bottom:966.146667pt;}
.y81_c01293{bottom:966.906667pt;}
.y80_c01293{bottom:967.680000pt;}
.y85_c01293{bottom:968.453333pt;}
.y84_c01293{bottom:970.746667pt;}
.y82_c01293{bottom:972.293333pt;}
.y87_c01293{bottom:976.133333pt;}
.y7f_c01293{bottom:982.266667pt;}
.y7e_c01293{bottom:983.813333pt;}
.y7b_c01293{bottom:984.573333pt;}
.y79_c01293{bottom:986.880000pt;}
.y7d_c01293{bottom:988.413333pt;}
.y7a_c01293{bottom:989.186667pt;}
.y7c_c01293{bottom:993.786667pt;}
.y77_c01293{bottom:1001.466667pt;}
.y74_c01293{bottom:1002.240000pt;}
.y75_c01293{bottom:1003.013333pt;}
.y72_c01293{bottom:1004.546667pt;}
.y78_c01293{bottom:1006.080000pt;}
.y73_c01293{bottom:1006.853333pt;}
.y76_c01293{bottom:1007.613333pt;}
.y6f_c01293{bottom:1018.373333pt;}
.y6e_c01293{bottom:1019.906667pt;}
.y6d_c01293{bottom:1020.666667pt;}
.y6c_c01293{bottom:1021.440000pt;}
.y70_c01293{bottom:1023.746667pt;}
.y71_c01293{bottom:1026.813333pt;}
.y67_c01293{bottom:1038.333333pt;}
.y66_c01293{bottom:1039.106667pt;}
.y68_c01293{bottom:1039.866667pt;}
.y69_c01293{bottom:1040.640000pt;}
.y65_c01293{bottom:1041.413333pt;}
.y6b_c01293{bottom:1042.173333pt;}
.y6a_c01293{bottom:1043.706667pt;}
.y1f8_c01293{bottom:1046.013333pt;}
.y1f7_c01293{bottom:1053.693333pt;}
.y63_c01293{bottom:1055.226667pt;}
.y5f_c01293{bottom:1056.000000pt;}
.y62_c01293{bottom:1056.773333pt;}
.y61_c01293{bottom:1057.533333pt;}
.y60_c01293{bottom:1059.840000pt;}
.y64_c01293{bottom:1060.613333pt;}
.y5e_c01293{bottom:1062.146667pt;}
.y5d_c01293{bottom:1065.986667pt;}
.y5c_c01293{bottom:1072.893333pt;}
.y5a_c01293{bottom:1073.666667pt;}
.y55_c01293{bottom:1074.426667pt;}
.y54_c01293{bottom:1075.973333pt;}
.y58_c01293{bottom:1076.733333pt;}
.y59_c01293{bottom:1077.506667pt;}
.y53_c01293{bottom:1078.266667pt;}
.y56_c01293{bottom:1079.040000pt;}
.y5b_c01293{bottom:1079.813333pt;}
.y57_c01293{bottom:1080.573333pt;}
.y52_c01293{bottom:1082.106667pt;}
.y4b_c01293{bottom:1092.866667pt;}
.y4d_c01293{bottom:1093.626667pt;}
.y4e_c01293{bottom:1094.400000pt;}
.y50_c01293{bottom:1095.933333pt;}
.y51_c01293{bottom:1096.706667pt;}
.y4a_c01293{bottom:1097.466667pt;}
.y4f_c01293{bottom:1098.240000pt;}
.y4c_c01293{bottom:1099.013333pt;}
.y48_c01293{bottom:1101.306667pt;}
.y7_c01293{bottom:1103.613333pt;}
.y8_c01293{bottom:1104.386667pt;}
.y49_c01293{bottom:1105.920000pt;}
.y42_c01293{bottom:1107.453333pt;}
.y3f_c01293{bottom:1108.226667pt;}
.y41_c01293{bottom:1108.986667pt;}
.y44_c01293{bottom:1109.760000pt;}
.y46_c01293{bottom:1111.293333pt;}
.y43_c01293{bottom:1112.826667pt;}
.y47_c01293{bottom:1115.133333pt;}
.y45_c01293{bottom:1115.906667pt;}
.y40_c01293{bottom:1117.440000pt;}
.y1f4_c01293{bottom:1119.746667pt;}
.y6_c01293{bottom:1123.586667pt;}
.y3c_c01293{bottom:1127.426667pt;}
.y3d_c01293{bottom:1128.186667pt;}
.y37_c01293{bottom:1128.960000pt;}
.y36_c01293{bottom:1130.493333pt;}
.y3a_c01293{bottom:1131.266667pt;}
.y39_c01293{bottom:1132.026667pt;}
.y3e_c01293{bottom:1133.573333pt;}
.y38_c01293{bottom:1134.333333pt;}
.y3b_c01293{bottom:1135.106667pt;}
.y35_c01293{bottom:1135.866667pt;}
.y34_c01293{bottom:1145.853333pt;}
.y32_c01293{bottom:1147.386667pt;}
.y2d_c01293{bottom:1149.693333pt;}
.y33_c01293{bottom:1150.466667pt;}
.y2c_c01293{bottom:1151.226667pt;}
.y2e_c01293{bottom:1152.773333pt;}
.y2f_c01293{bottom:1153.533333pt;}
.y30_c01293{bottom:1154.306667pt;}
.y31_c01293{bottom:1155.066667pt;}
.y5_c01293{bottom:1163.520000pt;}
.y3_c01293{bottom:1165.053333pt;}
.y27_c01293{bottom:1166.586667pt;}
.y24_c01293{bottom:1167.360000pt;}
.y29_c01293{bottom:1168.133333pt;}
.y26_c01293{bottom:1168.893333pt;}
.y2b_c01293{bottom:1169.666667pt;}
.y25_c01293{bottom:1170.426667pt;}
.y2a_c01293{bottom:1171.200000pt;}
.y28_c01293{bottom:1172.733333pt;}
.y2_c01293{bottom:1176.573333pt;}
.y1f_c01293{bottom:1179.653333pt;}
.y23_c01293{bottom:1180.413333pt;}
.y1e_c01293{bottom:1181.946667pt;}
.y21_c01293{bottom:1184.253333pt;}
.y1_c01293{bottom:1186.560000pt;}
.y20_c01293{bottom:1189.626667pt;}
.y22_c01293{bottom:1190.400000pt;}
.y1c_c01293{bottom:1204.986667pt;}
.y1d_c01293{bottom:1205.760000pt;}
.y19_c01293{bottom:1206.533333pt;}
.y1b_c01293{bottom:1210.373333pt;}
.y1a_c01293{bottom:1213.440000pt;}
.y4_c01293{bottom:1214.973333pt;}
.y1f6_c01293{bottom:1234.946667pt;}
.y17_c01293{bottom:1236.480000pt;}
.y18_c01293{bottom:1237.253333pt;}
.h13_c01293{height:2.764500pt;}
.h25_c01293{height:4.799479pt;}
.h10_c01293{height:5.519401pt;}
.hc_c01293{height:8.303099pt;}
.h2_c01293{height:11.038802pt;}
.h3_c01293{height:13.822500pt;}
.h5_c01293{height:16.606198pt;}
.h26_c01293{height:16.862500pt;}
.h22_c01293{height:19.341901pt;}
.h21_c01293{height:22.125599pt;}
.h11_c01293{height:24.861302pt;}
.he_c01293{height:27.645000pt;}
.h12_c01293{height:30.428698pt;}
.hb_c01293{height:33.164401pt;}
.h4_c01293{height:35.948099pt;}
.hd_c01293{height:38.683802pt;}
.hf_c01293{height:41.467500pt;}
.h20_c01293{height:44.251198pt;}
.h1b_c01293{height:46.986901pt;}
.ha_c01293{height:49.770599pt;}
.h1e_c01293{height:52.506302pt;}
.h6_c01293{height:55.290000pt;}
.h7_c01293{height:58.073698pt;}
.h14_c01293{height:60.809401pt;}
.h1f_c01293{height:63.593099pt;}
.h1a_c01293{height:66.328802pt;}
.h1c_c01293{height:69.112500pt;}
.h23_c01293{height:71.896198pt;}
.h16_c01293{height:74.631901pt;}
.h24_c01293{height:77.415599pt;}
.h27_c01293{height:80.151302pt;}
.h18_c01293{height:82.935000pt;}
.h19_c01293{height:85.718698pt;}
.h1d_c01293{height:88.454401pt;}
.h15_c01293{height:91.238099pt;}
.h9_c01293{height:105.060599pt;}
.h17_c01293{height:107.796302pt;}
.h8_c01293{height:152.047500pt;}
.h0_c01293{height:1341.693333pt;}
.h1_c01293{height:1342.000000pt;}
.w0_c01293{width:967.680000pt;}
.w1_c01293{width:968.000000pt;}
.x0_c01293{left:0.000000pt;}
.x9_c01293{left:1.533333pt;}
.x1_c01293{left:3.840000pt;}
.x6_c01293{left:11.520000pt;}
.x5_c01293{left:13.053333pt;}
.x7_c01293{left:26.880000pt;}
.x8_c01293{left:40.706667pt;}
.x4_c01293{left:49.146667pt;}
.x3_c01293{left:81.413333pt;}
.xc_c01293{left:119.040000pt;}
.x2_c01293{left:133.626667pt;}
.xa_c01293{left:145.920000pt;}
.xb_c01293{left:158.213333pt;}
.x117_c01293{left:167.426667pt;}
.xd7_c01293{left:171.266667pt;}
.x102_c01293{left:172.800000pt;}
.x103_c01293{left:182.013333pt;}
.x106_c01293{left:183.546667pt;}
.x104_c01293{left:196.613333pt;}
.x5f_c01293{left:198.906667pt;}
.x4a_c01293{left:201.213333pt;}
.xe4_c01293{left:202.746667pt;}
.x4b_c01293{left:205.053333pt;}
.x7a_c01293{left:206.586667pt;}
.x42_c01293{left:208.133333pt;}
.x80_c01293{left:209.666667pt;}
.x19_c01293{left:211.200000pt;}
.xa9_c01293{left:212.733333pt;}
.xfe_c01293{left:215.813333pt;}
.xa6_c01293{left:220.413333pt;}
.xc1_c01293{left:221.946667pt;}
.x38_c01293{left:224.253333pt;}
.x90_c01293{left:227.333333pt;}
.x4c_c01293{left:228.866667pt;}
.x52_c01293{left:230.400000pt;}
.xed_c01293{left:232.706667pt;}
.x63_c01293{left:235.773333pt;}
.xac_c01293{left:238.853333pt;}
.x99_c01293{left:241.146667pt;}
.xc4_c01293{left:242.693333pt;}
.x60_c01293{left:244.226667pt;}
.xb0_c01293{left:245.760000pt;}
.x72_c01293{left:249.600000pt;}
.xff_c01293{left:251.133333pt;}
.x7b_c01293{left:252.666667pt;}
.x1a_c01293{left:255.746667pt;}
.x2e_c01293{left:257.280000pt;}
.x53_c01293{left:261.120000pt;}
.xea_c01293{left:264.186667pt;}
.xb5_c01293{left:266.493333pt;}
.x1b_c01293{left:268.026667pt;}
.xeb_c01293{left:270.333333pt;}
.x39_c01293{left:273.413333pt;}
.x73_c01293{left:276.480000pt;}
.x101_c01293{left:278.013333pt;}
.x91_c01293{left:280.320000pt;}
.x1c_c01293{left:282.626667pt;}
.x9a_c01293{left:284.160000pt;}
.x10f_c01293{left:287.226667pt;}
.x10_c01293{left:291.066667pt;}
.x22_c01293{left:293.373333pt;}
.x7c_c01293{left:294.906667pt;}
.xe5_c01293{left:296.453333pt;}
.x43_c01293{left:297.986667pt;}
.x1d_c01293{left:301.053333pt;}
.x3a_c01293{left:304.133333pt;}
.x81_c01293{left:307.200000pt;}
.x64_c01293{left:310.266667pt;}
.x11_c01293{left:312.573333pt;}
.xdf_c01293{left:314.880000pt;}
.x23_c01293{left:317.946667pt;}
.x44_c01293{left:319.493333pt;}
.x9b_c01293{left:321.026667pt;}
.xe6_c01293{left:323.333333pt;}
.xec_c01293{left:326.400000pt;}
.x9c_c01293{left:328.706667pt;}
.xce_c01293{left:331.013333pt;}
.x4d_c01293{left:332.546667pt;}
.x54_c01293{left:334.080000pt;}
.xc5_c01293{left:337.146667pt;}
.x115_c01293{left:344.826667pt;}
.x92_c01293{left:347.133333pt;}
.x2f_c01293{left:349.440000pt;}
.x55_c01293{left:350.973333pt;}
.xbc_c01293{left:353.280000pt;}
.xb6_c01293{left:355.586667pt;}
.x3b_c01293{left:357.120000pt;}
.xfb_c01293{left:358.653333pt;}
.x9d_c01293{left:361.733333pt;}
.x12_c01293{left:363.266667pt;}
.x74_c01293{left:366.333333pt;}
.x1e_c01293{left:370.946667pt;}
.x65_c01293{left:373.253333pt;}
.xe7_c01293{left:374.786667pt;}
.xcb_c01293{left:377.093333pt;}
.x45_c01293{left:378.626667pt;}
.x13_c01293{left:380.160000pt;}
.x9e_c01293{left:381.693333pt;}
.x107_c01293{left:384.000000pt;}
.x30_c01293{left:385.533333pt;}
.xb1_c01293{left:387.066667pt;}
.xa7_c01293{left:388.613333pt;}
.x82_c01293{left:392.453333pt;}
.xb7_c01293{left:393.986667pt;}
.x14_c01293{left:395.520000pt;}
.xe0_c01293{left:397.053333pt;}
.x24_c01293{left:398.586667pt;}
.xda_c01293{left:400.133333pt;}
.x31_c01293{left:401.666667pt;}
.xf5_c01293{left:403.200000pt;}
.x9f_c01293{left:408.573333pt;}
.x110_c01293{left:410.880000pt;}
.xb2_c01293{left:412.413333pt;}
.x32_c01293{left:413.946667pt;}
.x56_c01293{left:417.786667pt;}
.xc7_c01293{left:419.333333pt;}
.xe1_c01293{left:422.400000pt;}
.x25_c01293{left:424.706667pt;}
.x10a_c01293{left:426.240000pt;}
.x1f_c01293{left:427.773333pt;}
.x3c_c01293{left:430.853333pt;}
.x33_c01293{left:434.693333pt;}
.xde_c01293{left:436.226667pt;}
.xdb_c01293{left:439.293333pt;}
.xb3_c01293{left:440.826667pt;}
.xd3_c01293{left:443.133333pt;}
.x4e_c01293{left:444.666667pt;}
.x6d_c01293{left:447.746667pt;}
.x3d_c01293{left:449.280000pt;}
.xf0_c01293{left:450.813333pt;}
.xbd_c01293{left:453.893333pt;}
.xd_c01293{left:456.186667pt;}
.xfc_c01293{left:457.733333pt;}
.x66_c01293{left:460.800000pt;}
.xa4_c01293{left:463.106667pt;}
.x46_c01293{left:464.640000pt;}
.xbe_c01293{left:466.946667pt;}
.x34_c01293{left:469.253333pt;}
.x93_c01293{left:470.786667pt;}
.xae_c01293{left:472.320000pt;}
.x83_c01293{left:473.853333pt;}
.xa0_c01293{left:476.933333pt;}
.xbf_c01293{left:480.000000pt;}
.xaa_c01293{left:485.373333pt;}
.x67_c01293{left:486.906667pt;}
.x112_c01293{left:489.213333pt;}
.xbb_c01293{left:491.520000pt;}
.x10d_c01293{left:493.826667pt;}
.x116_c01293{left:495.360000pt;}
.x7d_c01293{left:496.893333pt;}
.x15_c01293{left:498.426667pt;}
.x57_c01293{left:500.733333pt;}
.x75_c01293{left:503.040000pt;}
.x20_c01293{left:504.573333pt;}
.xf1_c01293{left:506.106667pt;}
.x105_c01293{left:508.413333pt;}
.xcc_c01293{left:509.946667pt;}
.xc8_c01293{left:511.493333pt;}
.x8a_c01293{left:513.026667pt;}
.xf9_c01293{left:519.173333pt;}
.x58_c01293{left:522.240000pt;}
.x10b_c01293{left:523.773333pt;}
.x3e_c01293{left:525.306667pt;}
.x16_c01293{left:526.853333pt;}
.x26_c01293{left:531.453333pt;}
.xb8_c01293{left:536.826667pt;}
.x3f_c01293{left:538.373333pt;}
.x8b_c01293{left:541.440000pt;}
.x68_c01293{left:543.746667pt;}
.x27_c01293{left:545.280000pt;}
.x59_c01293{left:547.586667pt;}
.x76_c01293{left:549.120000pt;}
.xcf_c01293{left:552.960000pt;}
.x84_c01293{left:554.493333pt;}
.x61_c01293{left:556.026667pt;}
.xdc_c01293{left:559.106667pt;}
.xc9_c01293{left:562.173333pt;}
.xd4_c01293{left:564.480000pt;}
.xe8_c01293{left:566.013333pt;}
.xe_c01293{left:570.626667pt;}
.x21_c01293{left:577.533333pt;}
.x35_c01293{left:579.066667pt;}
.xf4_c01293{left:580.613333pt;}
.x5a_c01293{left:582.146667pt;}
.x94_c01293{left:583.680000pt;}
.x28_c01293{left:585.986667pt;}
.xa1_c01293{left:587.520000pt;}
.x108_c01293{left:590.586667pt;}
.x85_c01293{left:592.133333pt;}
.xc2_c01293{left:593.666667pt;}
.x77_c01293{left:595.973333pt;}
.x36_c01293{left:597.506667pt;}
.x7e_c01293{left:600.573333pt;}
.xfa_c01293{left:602.106667pt;}
.xf_c01293{left:603.653333pt;}
.xdd_c01293{left:605.186667pt;}
.x113_c01293{left:606.720000pt;}
.xa2_c01293{left:609.786667pt;}
.x69_c01293{left:611.333333pt;}
.x100_c01293{left:613.626667pt;}
.xd5_c01293{left:615.933333pt;}
.x29_c01293{left:617.466667pt;}
.x4f_c01293{left:619.013333pt;}
.x8c_c01293{left:621.306667pt;}
.x6a_c01293{left:622.853333pt;}
.xe2_c01293{left:625.920000pt;}
.xc0_c01293{left:628.226667pt;}
.x2a_c01293{left:632.826667pt;}
.xd0_c01293{left:634.373333pt;}
.xca_c01293{left:635.906667pt;}
.x5b_c01293{left:637.440000pt;}
.xc6_c01293{left:642.813333pt;}
.x6e_c01293{left:645.893333pt;}
.x2b_c01293{left:648.186667pt;}
.x6b_c01293{left:649.733333pt;}
.x47_c01293{left:651.266667pt;}
.xd8_c01293{left:652.800000pt;}
.x86_c01293{left:655.106667pt;}
.xb9_c01293{left:656.640000pt;}
.xee_c01293{left:660.480000pt;}
.x8d_c01293{left:662.013333pt;}
.x8e_c01293{left:667.386667pt;}
.x40_c01293{left:669.693333pt;}
.xaf_c01293{left:672.773333pt;}
.x17_c01293{left:675.066667pt;}
.x109_c01293{left:676.613333pt;}
.x5c_c01293{left:678.906667pt;}
.xf2_c01293{left:681.213333pt;}
.xa3_c01293{left:683.520000pt;}
.x37_c01293{left:687.360000pt;}
.x95_c01293{left:691.200000pt;}
.x10c_c01293{left:693.506667pt;}
.xe3_c01293{left:695.040000pt;}
.x5d_c01293{left:696.573333pt;}
.xfd_c01293{left:699.653333pt;}
.x78_c01293{left:701.186667pt;}
.x6c_c01293{left:703.493333pt;}
.x62_c01293{left:705.026667pt;}
.x96_c01293{left:707.333333pt;}
.xd9_c01293{left:708.866667pt;}
.x6f_c01293{left:710.400000pt;}
.x87_c01293{left:711.933333pt;}
.xa5_c01293{left:714.240000pt;}
.x2c_c01293{left:715.773333pt;}
.x88_c01293{left:718.853333pt;}
.x48_c01293{left:722.693333pt;}
.xcd_c01293{left:724.986667pt;}
.xd6_c01293{left:729.600000pt;}
.x97_c01293{left:731.133333pt;}
.x41_c01293{left:732.666667pt;}
.xf6_c01293{left:734.213333pt;}
.xa8_c01293{left:735.746667pt;}
.xd1_c01293{left:738.813333pt;}
.x49_c01293{left:741.120000pt;}
.x50_c01293{left:746.493333pt;}
.x79_c01293{left:748.026667pt;}
.x18_c01293{left:750.333333pt;}
.x2d_c01293{left:752.640000pt;}
.x114_c01293{left:754.946667pt;}
.xf3_c01293{left:756.480000pt;}
.xe9_c01293{left:758.013333pt;}
.x5e_c01293{left:761.093333pt;}
.x51_c01293{left:763.386667pt;}
.x98_c01293{left:766.466667pt;}
.x8f_c01293{left:768.773333pt;}
.x70_c01293{left:770.306667pt;}
.x7f_c01293{left:773.373333pt;}
.xc3_c01293{left:774.906667pt;}
.x89_c01293{left:776.453333pt;}
.x71_c01293{left:778.746667pt;}
.xd2_c01293{left:781.053333pt;}
.xab_c01293{left:783.360000pt;}
.xad_c01293{left:784.893333pt;}
.x111_c01293{left:787.973333pt;}
.xef_c01293{left:789.506667pt;}
.x10e_c01293{left:793.346667pt;}
.xb4_c01293{left:796.413333pt;}
.xba_c01293{left:798.720000pt;}
.xf7_c01293{left:802.560000pt;}
.x11b_c01293{left:810.240000pt;}
.xf8_c01293{left:817.146667pt;}
.x11e_c01293{left:820.226667pt;}
.x11a_c01293{left:821.760000pt;}
.x120_c01293{left:828.666667pt;}
.x11f_c01293{left:834.813333pt;}
.x118_c01293{left:839.429376pt;}
.x119_c01293{left:846.333333pt;}
.x11d_c01293{left:860.160000pt;}
.x11c_c01293{left:862.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_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_e1b5f5cd314afa0b8c7d181a.woff2')format("woff");}.ff1_c01294{font-family:ff1_c01294;line-height:1.109863;font-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_c01294{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m19d_c01294{transform:matrix(0.044025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044025,0.000000,0.000000,0.250000,0,0);}
.me0_c01294{transform:matrix(0.064225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064225,0.000000,0.000000,0.250000,0,0);}
.m19b_c01294{transform:matrix(0.065850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065850,0.000000,0.000000,0.250000,0,0);}
.m145_c01294{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.mb1_c01294{transform:matrix(0.098825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098825,0.000000,0.000000,0.250000,0,0);}
.m114_c01294{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);}
.m146_c01294{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m70_c01294{transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107200,0.000000,0.000000,0.250000,0,0);}
.mc4_c01294{transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108050,0.000000,0.000000,0.250000,0,0);}
.m172_c01294{transform:matrix(0.109925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109925,0.000000,0.000000,0.250000,0,0);}
.m182_c01294{transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);}
.m117_c01294{transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);}
.m195_c01294{transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);}
.m16_c01294{transform:matrix(0.120575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120575,0.000000,0.000000,0.250000,0,0);}
.m17f_c01294{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m3f_c01294{transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);}
.m18a_c01294{transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122350,0.000000,0.000000,0.250000,0,0);}
.m66_c01294{transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);}
.m48_c01294{transform:matrix(0.124625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124625,0.000000,0.000000,0.250000,0,0);}
.m8a_c01294{transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126500,0.000000,0.000000,0.250000,0,0);}
.m43_c01294{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m13a_c01294{transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);}
.m15f_c01294{transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);}
.mc1_c01294{transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);}
.m17c_c01294{transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);}
.m183_c01294{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.mba_c01294{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m180_c01294{transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);}
.m27_c01294{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.mcc_c01294{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.m46_c01294{transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);}
.mc5_c01294{transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);}
.m7c_c01294{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);}
.m2a_c01294{transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);}
.m11_c01294{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m25_c01294{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);}
.m170_c01294{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.mdf_c01294{transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);}
.m17e_c01294{transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);}
.mde_c01294{transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);}
.m16e_c01294{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);}
.m11d_c01294{transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);}
.m199_c01294{transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);}
.m163_c01294{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);}
.m196_c01294{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.mbb_c01294{transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147375,0.000000,0.000000,0.250000,0,0);}
.m186_c01294{transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);}
.m164_c01294{transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);}
.m40_c01294{transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);}
.m2b_c01294{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.m13b_c01294{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);}
.m155_c01294{transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150400,0.000000,0.000000,0.250000,0,0);}
.m88_c01294{transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);}
.mf4_c01294{transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150825,0.000000,0.000000,0.250000,0,0);}
.m42_c01294{transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);}
.m162_c01294{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.m108_c01294{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);}
.m4b_c01294{transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);}
.md6_c01294{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.mf2_c01294{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m19a_c01294{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);}
.m28_c01294{transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);}
.m111_c01294{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.mc9_c01294{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.m131_c01294{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.m15b_c01294{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.mcb_c01294{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m15a_c01294{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);}
.me_c01294{transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);}
.md3_c01294{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.m81_c01294{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.mdd_c01294{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.m18e_c01294{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);}
.m127_c01294{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.m113_c01294{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.m118_c01294{transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);}
.m7b_c01294{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m188_c01294{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m11b_c01294{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);}
.me3_c01294{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);}
.m89_c01294{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m138_c01294{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.mc8_c01294{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.md5_c01294{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);}
.m2f_c01294{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);}
.mf9_c01294{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.md4_c01294{transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177000,0.000000,0.000000,0.250000,0,0);}
.md0_c01294{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);}
.m12d_c01294{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m178_c01294{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m10c_c01294{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);}
.m160_c01294{transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);}
.m100_c01294{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m15e_c01294{transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);}
.m120_c01294{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m156_c01294{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);}
.m11e_c01294{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.mf3_c01294{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.me2_c01294{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);}
.m7d_c01294{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);}
.me9_c01294{transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);}
.md1_c01294{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);}
.m197_c01294{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m169_c01294{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m143_c01294{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);}
.m149_c01294{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);}
.m8d_c01294{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m125_c01294{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);}
.m12b_c01294{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m13_c01294{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);}
.m189_c01294{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m198_c01294{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.m176_c01294{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);}
.m137_c01294{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.m9e_c01294{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m136_c01294{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.m5f_c01294{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.m82_c01294{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m13c_c01294{transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);}
.m5e_c01294{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m10_c01294{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);}
.mfd_c01294{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m191_c01294{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);}
.mb8_c01294{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m24_c01294{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.m60_c01294{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);}
.m123_c01294{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m34_c01294{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);}
.m12c_c01294{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m4a_c01294{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.m14d_c01294{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);}
.m13f_c01294{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);}
.mdc_c01294{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.m92_c01294{transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);}
.mda_c01294{transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);}
.m139_c01294{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);}
.m154_c01294{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m112_c01294{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.mac_c01294{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);}
.m192_c01294{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);}
.m106_c01294{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m9f_c01294{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);}
.m18c_c01294{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);}
.m2_c01294{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);}
.mfe_c01294{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m14c_c01294{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);}
.m91_c01294{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.mec_c01294{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);}
.me4_c01294{transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);}
.m129_c01294{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);}
.m7_c01294{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);}
.m10d_c01294{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m68_c01294{transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);}
.mc6_c01294{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.m8e_c01294{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m16a_c01294{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m67_c01294{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.me6_c01294{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m181_c01294{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);}
.m16b_c01294{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);}
.m15_c01294{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.m104_c01294{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);}
.m17a_c01294{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);}
.m8b_c01294{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m17b_c01294{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);}
.m101_c01294{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.m11f_c01294{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.ma3_c01294{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m124_c01294{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.me5_c01294{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);}
.m14b_c01294{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);}
.m76_c01294{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);}
.meb_c01294{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m64_c01294{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);}
.m187_c01294{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.m174_c01294{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.mf5_c01294{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);}
.maa_c01294{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);}
.m30_c01294{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);}
.m47_c01294{transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);}
.m144_c01294{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);}
.m85_c01294{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);}
.m7e_c01294{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m29_c01294{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.m128_c01294{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);}
.mbe_c01294{transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);}
.m185_c01294{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);}
.m10a_c01294{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);}
.m148_c01294{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);}
.m16d_c01294{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.me1_c01294{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.m41_c01294{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m103_c01294{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.m95_c01294{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);}
.m63_c01294{transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);}
.m14e_c01294{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m17d_c01294{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.mf1_c01294{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01294{transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);}
.m59_c01294{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m12e_c01294{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);}
.m190_c01294{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);}
.m140_c01294{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);}
.m31_c01294{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m142_c01294{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.mcd_c01294{transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);}
.m16f_c01294{transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);}
.mc7_c01294{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.m2e_c01294{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.mf0_c01294{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m171_c01294{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);}
.mea_c01294{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);}
.m96_c01294{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);}
.m152_c01294{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.m166_c01294{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);}
.mca_c01294{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m151_c01294{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.m3a_c01294{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);}
.m71_c01294{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);}
.m5_c01294{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);}
.m98_c01294{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);}
.m161_c01294{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.m105_c01294{transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);}
.m102_c01294{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);}
.m2d_c01294{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);}
.m130_c01294{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m135_c01294{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);}
.m7f_c01294{transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);}
.m193_c01294{transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);}
.m109_c01294{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m1d_c01294{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m3b_c01294{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.m9a_c01294{transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);}
.maf_c01294{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m4d_c01294{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.m119_c01294{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);}
.m147_c01294{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m8f_c01294{transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);}
.m14f_c01294{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m1_c01294{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m57_c01294{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.mf8_c01294{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);}
.m158_c01294{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);}
.m21_c01294{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.m153_c01294{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);}
.mee_c01294{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);}
.m115_c01294{transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);}
.m6f_c01294{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);}
.m6c_c01294{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);}
.m194_c01294{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);}
.m18d_c01294{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m159_c01294{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);}
.m167_c01294{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.mbc_c01294{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);}
.mfb_c01294{transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);}
.mb9_c01294{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);}
.m65_c01294{transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);}
.m16c_c01294{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);}
.ma5_c01294{transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);}
.ma2_c01294{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m51_c01294{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m7a_c01294{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m12f_c01294{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m11a_c01294{transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);}
.m132_c01294{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);}
.m122_c01294{transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);}
.m6e_c01294{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m15c_c01294{transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237850,0.000000,0.000000,0.250000,0,0);}
.m165_c01294{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);}
.m80_c01294{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.mc2_c01294{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);}
.m12a_c01294{transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);}
.m10b_c01294{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.mdb_c01294{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);}
.m17_c01294{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);}
.m175_c01294{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);}
.m3_c01294{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);}
.m55_c01294{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);}
.md2_c01294{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);}
.m150_c01294{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.mc3_c01294{transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);}
.mb4_c01294{transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);}
.m8c_c01294{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.m18f_c01294{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);}
.m168_c01294{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m73_c01294{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);}
.m14a_c01294{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);}
.me8_c01294{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);}
.mb0_c01294{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);}
.m5a_c01294{transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);}
.m1e_c01294{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);}
.m5b_c01294{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.mab_c01294{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);}
.ma7_c01294{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);}
.m173_c01294{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);}
.m177_c01294{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);}
.m141_c01294{transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);}
.m72_c01294{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.mb6_c01294{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);}
.m9b_c01294{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m39_c01294{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);}
.m157_c01294{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);}
.mcf_c01294{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);}
.m116_c01294{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);}
.m10f_c01294{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);}
.m13d_c01294{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);}
.m110_c01294{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);}
.m44_c01294{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);}
.m45_c01294{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m49_c01294{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);}
.m4c_c01294{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);}
.mae_c01294{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);}
.m5d_c01294{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);}
.ma6_c01294{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m0_c01294{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c01294{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m62_c01294{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);}
.md_c01294{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m53_c01294{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);}
.m3c_c01294{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);}
.m3e_c01294{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01294{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);}
.m12_c01294{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m94_c01294{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma9_c01294{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);}
.mce_c01294{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m26_c01294{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);}
.m77_c01294{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);}
.m54_c01294{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01294{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m35_c01294{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);}
.mbf_c01294{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6_c01294{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma8_c01294{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);}
.m79_c01294{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m84_c01294{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m107_c01294{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01294{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m22_c01294{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mf7_c01294{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mf6_c01294{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma_c01294{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m19_c01294{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);}
.m9c_c01294{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c01294{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01294{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9_c01294{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c01294{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);}
.m4e_c01294{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);}
.ma0_c01294{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01294{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mad_c01294{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.ma4_c01294{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m56_c01294{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m78_c01294{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m58_c01294{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);}
.md9_c01294{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m9d_c01294{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m50_c01294{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);}
.m86_c01294{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mb5_c01294{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m184_c01294{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01294{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mc0_c01294{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m93_c01294{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m23_c01294{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);}
.m15d_c01294{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);}
.m52_c01294{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.me7_c01294{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01294{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mb3_c01294{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);}
.m5c_c01294{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m18b_c01294{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01294{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m74_c01294{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01294{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);}
.mb7_c01294{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m33_c01294{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m61_c01294{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m36_c01294{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m126_c01294{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m121_c01294{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.med_c01294{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);}
.m83_c01294{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mef_c01294{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mfc_c01294{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m19c_c01294{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m97_c01294{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01294{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);}
.md8_c01294{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mbd_c01294{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m18_c01294{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m13e_c01294{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m69_c01294{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m10e_c01294{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);}
.md7_c01294{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4_c01294{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m37_c01294{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01294{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m38_c01294{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m32_c01294{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01294{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m179_c01294{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.ma1_c01294{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m75_c01294{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m90_c01294{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mfa_c01294{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.mff_c01294{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m133_c01294{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.mf_c01294{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m19e_c01294{transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);}
.m99_c01294{transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);}
.m87_c01294{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.m134_c01294{transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.600000,0.000000,0.000000,0.250000,0,0);}
.v0_c01294{vertical-align:0.000000px;}
.v1_c01294{vertical-align:3.480000px;}
.v2_c01294{vertical-align:20.760000px;}
.v3_c01294{vertical-align:24.240000px;}
.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;}
}
.ws2_c01294{word-spacing:-18.797700px;}
.ws0_c01294{word-spacing:-16.630980px;}
.ws1_c01294{word-spacing:-12.094320px;}
.ws4_c01294{word-spacing:0.000000px;}
.ws3_c01294{word-spacing:60.916860px;}
.fc0_c01294{color:transparent;}
.fsb_c01294{font-size:3.456000px;}
.fsf_c01294{font-size:6.000000px;}
.fsd_c01294{font-size:6.900000px;}
.fs18_c01294{font-size:10.380000px;}
.fs1b_c01294{font-size:13.800000px;}
.fs15_c01294{font-size:17.280000px;}
.fs12_c01294{font-size:20.760000px;}
.fs4_c01294{font-size:24.180000px;}
.fs1c_c01294{font-size:27.660000px;}
.fs1a_c01294{font-size:31.080000px;}
.fs17_c01294{font-size:34.560000px;}
.fs16_c01294{font-size:38.040000px;}
.fs19_c01294{font-size:41.460000px;}
.fse_c01294{font-size:44.940000px;}
.fs9_c01294{font-size:48.360000px;}
.fs6_c01294{font-size:51.840000px;}
.fs3_c01294{font-size:55.320000px;}
.fs8_c01294{font-size:58.740000px;}
.fsa_c01294{font-size:62.220000px;}
.fs10_c01294{font-size:65.640000px;}
.fs5_c01294{font-size:69.120000px;}
.fs14_c01294{font-size:72.600000px;}
.fs13_c01294{font-size:76.020000px;}
.fs7_c01294{font-size:79.500000px;}
.fsc_c01294{font-size:82.920000px;}
.fs11_c01294{font-size:86.400000px;}
.fs1d_c01294{font-size:89.880000px;}
.fs0_c01294{font-size:93.300000px;}
.fs1f_c01294{font-size:100.200000px;}
.fs2_c01294{font-size:103.680000px;}
.fs1_c01294{font-size:110.580000px;}
.fs1e_c01294{font-size:138.240000px;}
.fs21_c01294{font-size:141.720000px;}
.fs20_c01294{font-size:196.980000px;}
.y0_c01294{bottom:0.000000px;}
.y1d8_c01294{bottom:190.080000px;}
.y1d9_c01294{bottom:194.400000px;}
.y1db_c01294{bottom:195.270000px;}
.y1da_c01294{bottom:196.995000px;}
.y1d7_c01294{bottom:201.315000px;}
.y1dc_c01294{bottom:204.765000px;}
.y1d0_c01294{bottom:216.000000px;}
.y1cf_c01294{bottom:216.870000px;}
.y1d2_c01294{bottom:217.725000px;}
.y1d3_c01294{bottom:218.595000px;}
.y1d1_c01294{bottom:219.450000px;}
.y1d5_c01294{bottom:221.190000px;}
.y1d6_c01294{bottom:222.045000px;}
.y1d4_c01294{bottom:224.640000px;}
.y1ca_c01294{bottom:238.470000px;}
.y1cb_c01294{bottom:239.325000px;}
.y1c8_c01294{bottom:240.195000px;}
.y1cc_c01294{bottom:241.050000px;}
.y1c9_c01294{bottom:241.920000px;}
.y1cd_c01294{bottom:242.790000px;}
.y1ce_c01294{bottom:244.515000px;}
.y1bf_c01294{bottom:251.430000px;}
.y1be_c01294{bottom:252.285000px;}
.y1c1_c01294{bottom:253.155000px;}
.y1c4_c01294{bottom:254.880000px;}
.y1c0_c01294{bottom:255.750000px;}
.y1c5_c01294{bottom:256.605000px;}
.y1c3_c01294{bottom:257.475000px;}
.y1c6_c01294{bottom:260.070000px;}
.y1c7_c01294{bottom:260.925000px;}
.y1c2_c01294{bottom:261.795000px;}
.y1b9_c01294{bottom:277.350000px;}
.y1b8_c01294{bottom:279.075000px;}
.y1ba_c01294{bottom:279.930000px;}
.y1b7_c01294{bottom:281.670000px;}
.y1b6_c01294{bottom:285.990000px;}
.y1bb_c01294{bottom:286.845000px;}
.y1bc_c01294{bottom:287.715000px;}
.y1bd_c01294{bottom:288.570000px;}
.y1af_c01294{bottom:299.805000px;}
.y1b0_c01294{bottom:300.675000px;}
.y1b2_c01294{bottom:301.530000px;}
.y1b3_c01294{bottom:302.400000px;}
.y1aa_c01294{bottom:304.995000px;}
.y1b4_c01294{bottom:307.590000px;}
.y1b5_c01294{bottom:309.315000px;}
.y1b1_c01294{bottom:311.910000px;}
.y1a9_c01294{bottom:318.810000px;}
.y1a8_c01294{bottom:319.680000px;}
.y1a6_c01294{bottom:321.405000px;}
.y1ab_c01294{bottom:322.275000px;}
.y1a7_c01294{bottom:323.130000px;}
.y1ae_c01294{bottom:326.595000px;}
.y1ac_c01294{bottom:327.450000px;}
.y1ad_c01294{bottom:328.320000px;}
.y19e_c01294{bottom:338.685000px;}
.y19d_c01294{bottom:339.555000px;}
.y19f_c01294{bottom:340.410000px;}
.y1a1_c01294{bottom:341.280000px;}
.y1a2_c01294{bottom:343.005000px;}
.y1a3_c01294{bottom:343.875000px;}
.y1a5_c01294{bottom:345.600000px;}
.y1a0_c01294{bottom:347.325000px;}
.y1a4_c01294{bottom:349.920000px;}
.y194_c01294{bottom:359.430000px;}
.y195_c01294{bottom:360.285000px;}
.y197_c01294{bottom:361.155000px;}
.y199_c01294{bottom:362.880000px;}
.y196_c01294{bottom:364.605000px;}
.y19a_c01294{bottom:366.330000px;}
.y198_c01294{bottom:368.070000px;}
.y19b_c01294{bottom:369.795000px;}
.y19c_c01294{bottom:370.650000px;}
.y18d_c01294{bottom:379.290000px;}
.y18e_c01294{bottom:380.160000px;}
.y18f_c01294{bottom:383.610000px;}
.y192_c01294{bottom:386.205000px;}
.y190_c01294{bottom:387.075000px;}
.y191_c01294{bottom:388.800000px;}
.y193_c01294{bottom:390.525000px;}
.y184_c01294{bottom:400.890000px;}
.y186_c01294{bottom:401.760000px;}
.y18a_c01294{bottom:402.630000px;}
.y188_c01294{bottom:403.485000px;}
.y183_c01294{bottom:404.355000px;}
.y187_c01294{bottom:405.210000px;}
.y185_c01294{bottom:406.080000px;}
.y189_c01294{bottom:408.675000px;}
.y18b_c01294{bottom:410.400000px;}
.y18c_c01294{bottom:411.270000px;}
.y182_c01294{bottom:412.995000px;}
.y17c_c01294{bottom:419.040000px;}
.y17d_c01294{bottom:420.765000px;}
.y17e_c01294{bottom:422.490000px;}
.y17f_c01294{bottom:423.360000px;}
.y180_c01294{bottom:424.230000px;}
.y181_c01294{bottom:425.955000px;}
.y17a_c01294{bottom:428.550000px;}
.y17b_c01294{bottom:432.870000px;}
.y172_c01294{bottom:439.770000px;}
.y173_c01294{bottom:442.365000px;}
.y174_c01294{bottom:443.235000px;}
.y176_c01294{bottom:444.090000px;}
.y177_c01294{bottom:445.830000px;}
.y170_c01294{bottom:446.685000px;}
.y171_c01294{bottom:447.555000px;}
.y179_c01294{bottom:448.410000px;}
.y175_c01294{bottom:450.150000px;}
.y178_c01294{bottom:451.005000px;}
.y16a_c01294{bottom:460.515000px;}
.y16c_c01294{bottom:465.690000px;}
.y16d_c01294{bottom:467.430000px;}
.y16e_c01294{bottom:469.155000px;}
.y16f_c01294{bottom:470.880000px;}
.y16b_c01294{bottom:472.605000px;}
.y163_c01294{bottom:480.390000px;}
.y166_c01294{bottom:482.970000px;}
.y165_c01294{bottom:483.840000px;}
.y167_c01294{bottom:485.565000px;}
.y164_c01294{bottom:486.435000px;}
.y168_c01294{bottom:491.610000px;}
.y15b_c01294{bottom:501.120000px;}
.y15c_c01294{bottom:502.845000px;}
.y15d_c01294{bottom:503.715000px;}
.y15e_c01294{bottom:504.570000px;}
.y169_c01294{bottom:505.440000px;}
.y15f_c01294{bottom:506.310000px;}
.y161_c01294{bottom:507.165000px;}
.y160_c01294{bottom:512.355000px;}
.y162_c01294{bottom:513.210000px;}
.y153_c01294{bottom:522.720000px;}
.y155_c01294{bottom:523.590000px;}
.y156_c01294{bottom:525.315000px;}
.y158_c01294{bottom:527.040000px;}
.y15a_c01294{bottom:527.910000px;}
.y159_c01294{bottom:532.230000px;}
.y157_c01294{bottom:533.955000px;}
.y154_c01294{bottom:540.000000px;}
.y14d_c01294{bottom:542.595000px;}
.y14e_c01294{bottom:543.450000px;}
.y14c_c01294{bottom:544.320000px;}
.y14f_c01294{bottom:546.045000px;}
.y150_c01294{bottom:551.235000px;}
.y151_c01294{bottom:552.960000px;}
.y152_c01294{bottom:553.830000px;}
.y143_c01294{bottom:562.470000px;}
.y144_c01294{bottom:564.195000px;}
.y146_c01294{bottom:565.050000px;}
.y145_c01294{bottom:565.920000px;}
.y148_c01294{bottom:567.645000px;}
.y149_c01294{bottom:568.515000px;}
.y147_c01294{bottom:571.110000px;}
.y14b_c01294{bottom:572.835000px;}
.y14a_c01294{bottom:573.690000px;}
.y13b_c01294{bottom:582.330000px;}
.y13d_c01294{bottom:584.925000px;}
.y141_c01294{bottom:587.520000px;}
.y13c_c01294{bottom:590.115000px;}
.y13f_c01294{bottom:590.970000px;}
.y13e_c01294{bottom:591.840000px;}
.y142_c01294{bottom:593.565000px;}
.y140_c01294{bottom:598.755000px;}
.y132_c01294{bottom:603.075000px;}
.y133_c01294{bottom:603.930000px;}
.y134_c01294{bottom:604.800000px;}
.y135_c01294{bottom:605.670000px;}
.y136_c01294{bottom:606.525000px;}
.y13a_c01294{bottom:607.395000px;}
.y139_c01294{bottom:608.250000px;}
.y138_c01294{bottom:609.120000px;}
.y137_c01294{bottom:611.715000px;}
.y12c_c01294{bottom:625.530000px;}
.y12d_c01294{bottom:626.400000px;}
.y12f_c01294{bottom:628.125000px;}
.y12b_c01294{bottom:628.995000px;}
.y12e_c01294{bottom:631.590000px;}
.y131_c01294{bottom:632.445000px;}
.y130_c01294{bottom:633.315000px;}
.y126_c01294{bottom:641.955000px;}
.y125_c01294{bottom:643.680000px;}
.y124_c01294{bottom:644.550000px;}
.y129_c01294{bottom:647.130000px;}
.y127_c01294{bottom:650.595000px;}
.y128_c01294{bottom:651.450000px;}
.y12a_c01294{bottom:653.190000px;}
.y11c_c01294{bottom:662.685000px;}
.y11a_c01294{bottom:663.555000px;}
.y11f_c01294{bottom:664.410000px;}
.y121_c01294{bottom:665.280000px;}
.y122_c01294{bottom:667.005000px;}
.y11b_c01294{bottom:667.875000px;}
.y11d_c01294{bottom:668.730000px;}
.y11e_c01294{bottom:669.600000px;}
.y120_c01294{bottom:671.325000px;}
.y123_c01294{bottom:672.195000px;}
.y114_c01294{bottom:682.560000px;}
.y115_c01294{bottom:684.285000px;}
.y119_c01294{bottom:687.750000px;}
.y116_c01294{bottom:689.475000px;}
.y117_c01294{bottom:690.330000px;}
.y112_c01294{bottom:691.200000px;}
.y118_c01294{bottom:692.070000px;}
.y113_c01294{bottom:697.245000px;}
.y10d_c01294{bottom:701.565000px;}
.y10e_c01294{bottom:705.030000px;}
.y10f_c01294{bottom:708.480000px;}
.y110_c01294{bottom:711.075000px;}
.y111_c01294{bottom:711.930000px;}
.y104_c01294{bottom:723.165000px;}
.y106_c01294{bottom:724.035000px;}
.y109_c01294{bottom:724.890000px;}
.y10b_c01294{bottom:726.630000px;}
.y105_c01294{bottom:727.485000px;}
.y107_c01294{bottom:728.355000px;}
.y10a_c01294{bottom:729.210000px;}
.y108_c01294{bottom:730.950000px;}
.y10c_c01294{bottom:733.530000px;}
.yfc_c01294{bottom:741.315000px;}
.yfd_c01294{bottom:743.910000px;}
.yfe_c01294{bottom:746.490000px;}
.y101_c01294{bottom:747.360000px;}
.y102_c01294{bottom:748.230000px;}
.yff_c01294{bottom:750.810000px;}
.y100_c01294{bottom:751.680000px;}
.y103_c01294{bottom:755.130000px;}
.yf5_c01294{bottom:764.640000px;}
.yf3_c01294{bottom:765.510000px;}
.yf6_c01294{bottom:767.235000px;}
.yf9_c01294{bottom:768.090000px;}
.yf4_c01294{bottom:769.830000px;}
.yfa_c01294{bottom:770.685000px;}
.yf7_c01294{bottom:771.555000px;}
.yfb_c01294{bottom:773.280000px;}
.yf8_c01294{bottom:775.005000px;}
.yec_c01294{bottom:785.370000px;}
.yee_c01294{bottom:786.240000px;}
.yef_c01294{bottom:787.110000px;}
.yf1_c01294{bottom:787.965000px;}
.yf2_c01294{bottom:788.835000px;}
.yed_c01294{bottom:792.285000px;}
.yf0_c01294{bottom:793.155000px;}
.ye8_c01294{bottom:805.245000px;}
.ye5_c01294{bottom:806.970000px;}
.ye4_c01294{bottom:807.840000px;}
.ye7_c01294{bottom:808.710000px;}
.ye3_c01294{bottom:809.565000px;}
.ye9_c01294{bottom:810.435000px;}
.ye6_c01294{bottom:812.160000px;}
.yea_c01294{bottom:813.030000px;}
.y1e3_c01294{bottom:813.885000px;}
.yeb_c01294{bottom:816.480000px;}
.y1e0_c01294{bottom:817.350000px;}
.y1e1_c01294{bottom:820.800000px;}
.y1e2_c01294{bottom:821.670000px;}
.ydd_c01294{bottom:825.120000px;}
.yde_c01294{bottom:826.845000px;}
.ye1_c01294{bottom:827.715000px;}
.y1df_c01294{bottom:828.570000px;}
.ydc_c01294{bottom:829.440000px;}
.ydb_c01294{bottom:830.310000px;}
.ydf_c01294{bottom:831.165000px;}
.ye0_c01294{bottom:832.035000px;}
.ye2_c01294{bottom:832.890000px;}
.yd2_c01294{bottom:845.850000px;}
.yd3_c01294{bottom:846.720000px;}
.yda_c01294{bottom:847.590000px;}
.yd9_c01294{bottom:848.445000px;}
.yd6_c01294{bottom:849.315000px;}
.yd4_c01294{bottom:850.170000px;}
.yd5_c01294{bottom:851.040000px;}
.yd8_c01294{bottom:851.910000px;}
.yd7_c01294{bottom:852.765000px;}
.yce_c01294{bottom:864.000000px;}
.ycc_c01294{bottom:866.595000px;}
.yd0_c01294{bottom:867.450000px;}
.ycd_c01294{bottom:868.320000px;}
.ycb_c01294{bottom:869.190000px;}
.yd1_c01294{bottom:870.045000px;}
.ycf_c01294{bottom:872.640000px;}
.yc1_c01294{bottom:884.730000px;}
.yc8_c01294{bottom:886.470000px;}
.yc4_c01294{bottom:887.325000px;}
.yc5_c01294{bottom:888.195000px;}
.yc3_c01294{bottom:889.920000px;}
.yc2_c01294{bottom:890.790000px;}
.yc6_c01294{bottom:891.645000px;}
.yc7_c01294{bottom:892.515000px;}
.yc9_c01294{bottom:893.370000px;}
.yca_c01294{bottom:895.110000px;}
.yb7_c01294{bottom:904.605000px;}
.yb8_c01294{bottom:906.330000px;}
.ybc_c01294{bottom:907.200000px;}
.yba_c01294{bottom:908.070000px;}
.ybb_c01294{bottom:909.795000px;}
.yb9_c01294{bottom:911.520000px;}
.ybd_c01294{bottom:913.245000px;}
.ybe_c01294{bottom:914.115000px;}
.ybf_c01294{bottom:914.970000px;}
.yc0_c01294{bottom:917.565000px;}
.yaf_c01294{bottom:924.480000px;}
.yb1_c01294{bottom:927.930000px;}
.yb2_c01294{bottom:928.800000px;}
.yb6_c01294{bottom:929.670000px;}
.yae_c01294{bottom:930.525000px;}
.yb0_c01294{bottom:931.395000px;}
.yb3_c01294{bottom:933.120000px;}
.yb4_c01294{bottom:933.990000px;}
.yb5_c01294{bottom:935.715000px;}
.ya9_c01294{bottom:946.950000px;}
.yac_c01294{bottom:948.675000px;}
.ya7_c01294{bottom:950.400000px;}
.ya8_c01294{bottom:951.270000px;}
.yaa_c01294{bottom:952.995000px;}
.yab_c01294{bottom:953.850000px;}
.yad_c01294{bottom:954.720000px;}
.ya6_c01294{bottom:959.040000px;}
.y9f_c01294{bottom:965.955000px;}
.ya0_c01294{bottom:966.810000px;}
.ya4_c01294{bottom:968.550000px;}
.ya5_c01294{bottom:969.405000px;}
.ya2_c01294{bottom:971.130000px;}
.y1de_c01294{bottom:972.000000px;}
.ya1_c01294{bottom:972.870000px;}
.ya3_c01294{bottom:974.595000px;}
.y9e_c01294{bottom:978.915000px;}
.y96_c01294{bottom:985.830000px;}
.y99_c01294{bottom:986.685000px;}
.y9b_c01294{bottom:989.280000px;}
.y9d_c01294{bottom:991.005000px;}
.y95_c01294{bottom:991.875000px;}
.y97_c01294{bottom:992.730000px;}
.y98_c01294{bottom:993.600000px;}
.y9a_c01294{bottom:994.470000px;}
.y9c_c01294{bottom:995.325000px;}
.y94_c01294{bottom:1003.965000px;}
.y8a_c01294{bottom:1005.690000px;}
.y8b_c01294{bottom:1007.430000px;}
.y8c_c01294{bottom:1008.285000px;}
.y91_c01294{bottom:1009.155000px;}
.y8f_c01294{bottom:1011.750000px;}
.y8e_c01294{bottom:1013.475000px;}
.y8d_c01294{bottom:1014.330000px;}
.y90_c01294{bottom:1015.200000px;}
.y92_c01294{bottom:1016.070000px;}
.y93_c01294{bottom:1023.840000px;}
.y84_c01294{bottom:1027.290000px;}
.y83_c01294{bottom:1028.160000px;}
.y86_c01294{bottom:1029.030000px;}
.y85_c01294{bottom:1029.885000px;}
.y88_c01294{bottom:1033.350000px;}
.y89_c01294{bottom:1034.205000px;}
.y87_c01294{bottom:1035.075000px;}
.y82_c01294{bottom:1036.800000px;}
.y81_c01294{bottom:1037.670000px;}
.y75_c01294{bottom:1046.310000px;}
.y78_c01294{bottom:1047.165000px;}
.y7c_c01294{bottom:1048.890000px;}
.y77_c01294{bottom:1049.760000px;}
.y7a_c01294{bottom:1050.630000px;}
.y7d_c01294{bottom:1051.485000px;}
.y76_c01294{bottom:1052.355000px;}
.y7f_c01294{bottom:1053.210000px;}
.y79_c01294{bottom:1054.080000px;}
.y7b_c01294{bottom:1055.805000px;}
.y7e_c01294{bottom:1056.675000px;}
.y80_c01294{bottom:1061.850000px;}
.y6e_c01294{bottom:1067.910000px;}
.y6f_c01294{bottom:1068.765000px;}
.y70_c01294{bottom:1069.635000px;}
.y73_c01294{bottom:1070.490000px;}
.y74_c01294{bottom:1072.230000px;}
.y71_c01294{bottom:1074.810000px;}
.y72_c01294{bottom:1075.680000px;}
.y68_c01294{bottom:1087.770000px;}
.y6b_c01294{bottom:1091.235000px;}
.y6d_c01294{bottom:1093.830000px;}
.y69_c01294{bottom:1094.685000px;}
.y6a_c01294{bottom:1095.555000px;}
.y6c_c01294{bottom:1097.280000px;}
.y67_c01294{bottom:1099.005000px;}
.y66_c01294{bottom:1101.600000px;}
.y5f_c01294{bottom:1108.515000px;}
.y63_c01294{bottom:1111.110000px;}
.y5e_c01294{bottom:1111.965000px;}
.y5d_c01294{bottom:1112.835000px;}
.y60_c01294{bottom:1114.560000px;}
.y61_c01294{bottom:1115.430000px;}
.y65_c01294{bottom:1117.155000px;}
.y64_c01294{bottom:1118.010000px;}
.y62_c01294{bottom:1124.070000px;}
.y56_c01294{bottom:1127.520000px;}
.y58_c01294{bottom:1128.390000px;}
.y5a_c01294{bottom:1130.115000px;}
.y57_c01294{bottom:1133.565000px;}
.y59_c01294{bottom:1134.435000px;}
.y5c_c01294{bottom:1135.290000px;}
.y5b_c01294{bottom:1136.160000px;}
.y53_c01294{bottom:1150.845000px;}
.y55_c01294{bottom:1152.570000px;}
.y52_c01294{bottom:1153.440000px;}
.y54_c01294{bottom:1154.310000px;}
.y4b_c01294{bottom:1166.400000px;}
.y4c_c01294{bottom:1167.270000px;}
.y4e_c01294{bottom:1168.995000px;}
.y4d_c01294{bottom:1169.850000px;}
.y50_c01294{bottom:1171.590000px;}
.y51_c01294{bottom:1172.445000px;}
.y4a_c01294{bottom:1173.315000px;}
.y4f_c01294{bottom:1175.910000px;}
.y40_c01294{bottom:1188.870000px;}
.y41_c01294{bottom:1190.595000px;}
.y44_c01294{bottom:1191.450000px;}
.y47_c01294{bottom:1192.320000px;}
.y42_c01294{bottom:1194.045000px;}
.y43_c01294{bottom:1195.770000px;}
.y45_c01294{bottom:1196.640000px;}
.y1dd_c01294{bottom:1197.510000px;}
.y48_c01294{bottom:1199.235000px;}
.y49_c01294{bottom:1204.410000px;}
.y46_c01294{bottom:1206.150000px;}
.y39_c01294{bottom:1208.730000px;}
.y3a_c01294{bottom:1210.470000px;}
.y3b_c01294{bottom:1211.325000px;}
.y3c_c01294{bottom:1212.195000px;}
.y38_c01294{bottom:1213.050000px;}
.y37_c01294{bottom:1213.920000px;}
.y3e_c01294{bottom:1216.515000px;}
.y3d_c01294{bottom:1217.370000px;}
.y30_c01294{bottom:1228.605000px;}
.y31_c01294{bottom:1229.475000px;}
.y3f_c01294{bottom:1231.200000px;}
.y32_c01294{bottom:1232.925000px;}
.y35_c01294{bottom:1233.795000px;}
.y34_c01294{bottom:1234.650000px;}
.y36_c01294{bottom:1235.520000px;}
.y33_c01294{bottom:1238.115000px;}
.y27_c01294{bottom:1248.480000px;}
.y28_c01294{bottom:1249.350000px;}
.y26_c01294{bottom:1250.205000px;}
.y29_c01294{bottom:1251.075000px;}
.y2c_c01294{bottom:1252.800000px;}
.y2d_c01294{bottom:1253.670000px;}
.y2a_c01294{bottom:1257.120000px;}
.y2b_c01294{bottom:1257.990000px;}
.y2f_c01294{bottom:1264.035000px;}
.y2e_c01294{bottom:1268.355000px;}
.y21_c01294{bottom:1269.210000px;}
.y22_c01294{bottom:1270.950000px;}
.y1e_c01294{bottom:1271.805000px;}
.y20_c01294{bottom:1272.675000px;}
.y24_c01294{bottom:1273.530000px;}
.y1f_c01294{bottom:1274.400000px;}
.y23_c01294{bottom:1276.995000px;}
.y25_c01294{bottom:1278.720000px;}
.y1a_c01294{bottom:1290.810000px;}
.y1d_c01294{bottom:1295.130000px;}
.y1b_c01294{bottom:1299.450000px;}
.y1c_c01294{bottom:1302.915000px;}
.ye_c01294{bottom:1304.640000px;}
.y12_c01294{bottom:1308.960000px;}
.y15_c01294{bottom:1309.830000px;}
.y13_c01294{bottom:1310.685000px;}
.yf_c01294{bottom:1311.555000px;}
.y11_c01294{bottom:1313.280000px;}
.y17_c01294{bottom:1315.005000px;}
.yd_c01294{bottom:1315.875000px;}
.y14_c01294{bottom:1318.470000px;}
.y18_c01294{bottom:1319.325000px;}
.y19_c01294{bottom:1320.195000px;}
.y16_c01294{bottom:1324.515000px;}
.y10_c01294{bottom:1329.690000px;}
.y7_c01294{bottom:1331.430000px;}
.y4_c01294{bottom:1332.285000px;}
.y6_c01294{bottom:1333.155000px;}
.y3_c01294{bottom:1334.880000px;}
.y5_c01294{bottom:1335.750000px;}
.yc_c01294{bottom:1336.605000px;}
.y8_c01294{bottom:1337.475000px;}
.ya_c01294{bottom:1339.200000px;}
.y9_c01294{bottom:1340.070000px;}
.yb_c01294{bottom:1354.755000px;}
.y1_c01294{bottom:1359.075000px;}
.y2_c01294{bottom:1359.930000px;}
.hd_c01294{height:3.110063px;}
.h11_c01294{height:5.399414px;}
.hf_c01294{height:6.209326px;}
.h1a_c01294{height:9.340986px;}
.h1d_c01294{height:12.418652px;}
.h17_c01294{height:15.550313px;}
.h14_c01294{height:18.681973px;}
.h6_c01294{height:21.759639px;}
.h1f_c01294{height:24.891299px;}
.h1c_c01294{height:27.968965px;}
.h19_c01294{height:31.100625px;}
.h18_c01294{height:34.232285px;}
.h1b_c01294{height:37.309951px;}
.h10_c01294{height:40.441611px;}
.hb_c01294{height:43.519277px;}
.h8_c01294{height:46.650937px;}
.h5_c01294{height:49.782598px;}
.ha_c01294{height:52.860264px;}
.h1e_c01294{height:53.262598px;}
.hc_c01294{height:55.991924px;}
.h12_c01294{height:59.069590px;}
.h7_c01294{height:62.201250px;}
.h16_c01294{height:65.332910px;}
.h15_c01294{height:68.410576px;}
.h21_c01294{height:70.542598px;}
.h22_c01294{height:70.890937px;}
.h9_c01294{height:71.542236px;}
.he_c01294{height:74.619902px;}
.h13_c01294{height:77.751563px;}
.h20_c01294{height:80.883223px;}
.h2_c01294{height:83.960889px;}
.h24_c01294{height:90.170215px;}
.h4_c01294{height:93.301875px;}
.h3_c01294{height:99.511201px;}
.h23_c01294{height:124.402500px;}
.h26_c01294{height:127.534160px;}
.h25_c01294{height:177.262764px;}
.h1_c01294{height:1518.750000px;}
.h0_c01294{height:1518.915000px;}
.w1_c01294{width:1076.250000px;}
.w0_c01294{width:1076.550000px;}
.x0_c01294{left:0.000000px;}
.xd1_c01294{left:166.755000px;}
.x24_c01294{left:169.350000px;}
.xd7_c01294{left:171.930000px;}
.x10_c01294{left:179.715000px;}
.x70_c01294{left:182.310000px;}
.x66_c01294{left:187.485000px;}
.x11_c01294{left:192.675000px;}
.x25_c01294{left:195.270000px;}
.x71_c01294{left:197.850000px;}
.x26_c01294{left:199.590000px;}
.xda_c01294{left:204.765000px;}
.x94_c01294{left:207.360000px;}
.x7f_c01294{left:209.085000px;}
.x43_c01294{left:210.810000px;}
.x30_c01294{left:214.275000px;}
.xf6_c01294{left:216.000000px;}
.x44_c01294{left:217.725000px;}
.x4_c01294{left:219.450000px;}
.x7a_c01294{left:222.045000px;}
.x12_c01294{left:224.640000px;}
.x27_c01294{left:226.365000px;}
.x13_c01294{left:229.830000px;}
.xf2_c01294{left:235.005000px;}
.xc2_c01294{left:240.195000px;}
.x78_c01294{left:241.920000px;}
.xf3_c01294{left:244.515000px;}
.x55_c01294{left:248.835000px;}
.x31_c01294{left:251.430000px;}
.x21_c01294{left:253.155000px;}
.xd2_c01294{left:255.750000px;}
.xa6_c01294{left:259.200000px;}
.x14_c01294{left:260.925000px;}
.xb5_c01294{left:263.520000px;}
.xe9_c01294{left:266.115000px;}
.x5_c01294{left:268.710000px;}
.xba_c01294{left:270.435000px;}
.x83_c01294{left:273.885000px;}
.x6_c01294{left:276.480000px;}
.x8e_c01294{left:278.205000px;}
.x5c_c01294{left:282.525000px;}
.x9e_c01294{left:284.250000px;}
.x80_c01294{left:285.990000px;}
.x15_c01294{left:289.440000px;}
.xf7_c01294{left:291.165000px;}
.xdd_c01294{left:293.760000px;}
.x3a_c01294{left:295.485000px;}
.xb2_c01294{left:297.210000px;}
.xf4_c01294{left:298.950000px;}
.x104_c01294{left:302.400000px;}
.x28_c01294{left:304.125000px;}
.xac_c01294{left:308.445000px;}
.xd3_c01294{left:311.040000px;}
.x56_c01294{left:313.635000px;}
.x16_c01294{left:316.230000px;}
.x9f_c01294{left:317.955000px;}
.xe2_c01294{left:319.680000px;}
.xdb_c01294{left:321.405000px;}
.x10e_c01294{left:324.000000px;}
.xe3_c01294{left:326.595000px;}
.x29_c01294{left:328.320000px;}
.x32_c01294{left:330.045000px;}
.x61_c01294{left:336.960000px;}
.x7b_c01294{left:338.685000px;}
.x95_c01294{left:340.410000px;}
.x1_c01294{left:342.150000px;}
.x5d_c01294{left:344.730000px;}
.x2a_c01294{left:348.195000px;}
.xe5_c01294{left:349.920000px;}
.xb3_c01294{left:351.645000px;}
.xad_c01294{left:353.370000px;}
.x45_c01294{left:356.835000px;}
.xbb_c01294{left:358.560000px;}
.x7_c01294{left:360.285000px;}
.xff_c01294{left:362.010000px;}
.x17_c01294{left:363.750000px;}
.xf8_c01294{left:365.475000px;}
.xde_c01294{left:367.200000px;}
.x111_c01294{left:369.795000px;}
.xa0_c01294{left:371.520000px;}
.xce_c01294{left:374.115000px;}
.x62_c01294{left:376.710000px;}
.x33_c01294{left:378.435000px;}
.xd4_c01294{left:380.160000px;}
.x84_c01294{left:381.885000px;}
.x67_c01294{left:385.350000px;}
.xa7_c01294{left:387.930000px;}
.x100_c01294{left:389.670000px;}
.x4c_c01294{left:393.990000px;}
.x8_c01294{left:396.570000px;}
.xdc_c01294{left:398.310000px;}
.xe6_c01294{left:400.890000px;}
.x5e_c01294{left:402.630000px;}
.x96_c01294{left:405.210000px;}
.x18_c01294{left:407.805000px;}
.xbc_c01294{left:411.270000px;}
.x4d_c01294{left:415.590000px;}
.x85_c01294{left:419.040000px;}
.xf0_c01294{left:421.635000px;}
.x105_c01294{left:423.360000px;}
.x81_c01294{left:425.085000px;}
.x110_c01294{left:427.680000px;}
.xcf_c01294{left:429.405000px;}
.xf5_c01294{left:431.130000px;}
.x46_c01294{left:432.870000px;}
.x68_c01294{left:436.320000px;}
.x3b_c01294{left:438.045000px;}
.x57_c01294{left:440.640000px;}
.xbd_c01294{left:444.090000px;}
.x63_c01294{left:446.685000px;}
.x9_c01294{left:448.410000px;}
.x19_c01294{left:451.005000px;}
.x64_c01294{left:452.730000px;}
.xe4_c01294{left:457.050000px;}
.x1a_c01294{left:458.790000px;}
.xea_c01294{left:461.370000px;}
.x2b_c01294{left:463.110000px;}
.xc3_c01294{left:466.560000px;}
.x4e_c01294{left:470.010000px;}
.x69_c01294{left:472.605000px;}
.x106_c01294{left:475.200000px;}
.x1b_c01294{left:477.795000px;}
.xdf_c01294{left:481.245000px;}
.xd8_c01294{left:482.970000px;}
.x5f_c01294{left:484.710000px;}
.x97_c01294{left:486.435000px;}
.x4f_c01294{left:488.160000px;}
.x2_c01294{left:490.755000px;}
.x22_c01294{left:492.480000px;}
.xd5_c01294{left:495.075000px;}
.x98_c01294{left:496.800000px;}
.x92_c01294{left:498.525000px;}
.x34_c01294{left:500.250000px;}
.xfc_c01294{left:502.845000px;}
.xa1_c01294{left:505.440000px;}
.x6a_c01294{left:507.165000px;}
.x86_c01294{left:513.210000px;}
.xb6_c01294{left:519.270000px;}
.x23_c01294{left:527.040000px;}
.xa_c01294{left:530.490000px;}
.x6b_c01294{left:534.810000px;}
.xca_c01294{left:536.550000px;}
.xc4_c01294{left:539.130000px;}
.x58_c01294{left:540.870000px;}
.xae_c01294{left:544.319925px;}
.x50_c01294{left:546.045000px;}
.xb_c01294{left:548.640000px;}
.x1c_c01294{left:550.365000px;}
.x2c_c01294{left:552.090000px;}
.x8f_c01294{left:554.685000px;}
.xa2_c01294{left:556.410000px;}
.x6c_c01294{left:563.325000px;}
.x35_c01294{left:570.240000px;}
.x3c_c01294{left:571.965000px;}
.x2d_c01294{left:574.560000px;}
.xd6_c01294{left:584.070000px;}
.x3d_c01294{left:586.650000px;}
.xa3_c01294{left:588.390000px;}
.x102_c01294{left:590.115000px;}
.xc_c01294{left:591.840000px;}
.x99_c01294{left:595.290000px;}
.xf1_c01294{left:597.030000px;}
.xaf_c01294{left:599.610000px;}
.x72_c01294{left:601.350000px;}
.x101_c01294{left:603.930000px;}
.xa8_c01294{left:606.525000px;}
.xfa_c01294{left:609.120000px;}
.x107_c01294{left:610.845000px;}
.x36_c01294{left:612.570000px;}
.xd9_c01294{left:614.310000px;}
.x87_c01294{left:616.035000px;}
.xe8_c01294{left:618.630000px;}
.x47_c01294{left:621.210000px;}
.x79_c01294{left:622.950000px;}
.x88_c01294{left:624.675000px;}
.xa9_c01294{left:626.400000px;}
.xf9_c01294{left:629.850000px;}
.x1d_c01294{left:631.590000px;}
.x51_c01294{left:633.315000px;}
.x2e_c01294{left:637.635000px;}
.xeb_c01294{left:640.230000px;}
.xfd_c01294{left:641.955000px;}
.x1e_c01294{left:644.550000px;}
.xb7_c01294{left:647.130000px;}
.xd_c01294{left:652.320000px;}
.x48_c01294{left:654.045000px;}
.xe_c01294{left:655.770000px;}
.x9a_c01294{left:657.510000px;}
.x89_c01294{left:661.830000px;}
.xbe_c01294{left:663.555000px;}
.x1f_c01294{left:665.280000px;}
.x3e_c01294{left:667.875000px;}
.xaa_c01294{left:672.195000px;}
.x8a_c01294{left:673.920000px;}
.xcb_c01294{left:679.110000px;}
.x10c_c01294{left:680.835000px;}
.x59_c01294{left:682.560000px;}
.xb8_c01294{left:686.880000px;}
.x73_c01294{left:689.475000px;}
.x6d_c01294{left:692.070000px;}
.x7c_c01294{left:694.650000px;}
.x90_c01294{left:696.390000px;}
.x74_c01294{left:698.970000px;}
.xbf_c01294{left:701.565000px;}
.x49_c01294{left:705.030000px;}
.x5a_c01294{left:707.610000px;}
.x37_c01294{left:711.075000px;}
.xfb_c01294{left:712.800000px;}
.x3f_c01294{left:715.395000px;}
.x3_c01294{left:717.120000px;}
.xa4_c01294{left:718.845000px;}
.xc5_c01294{left:720.570000px;}
.xe0_c01294{left:722.310000px;}
.x8b_c01294{left:724.890000px;}
.x52_c01294{left:726.630000px;}
.xb9_c01294{left:730.080000px;}
.x60_c01294{left:731.805000px;}
.xc0_c01294{left:734.400000px;}
.xc8_c01294{left:736.125000px;}
.xe1_c01294{left:737.850000px;}
.xb0_c01294{left:741.315000px;}
.xec_c01294{left:743.040000px;}
.xa5_c01294{left:744.765000px;}
.xe7_c01294{left:749.085000px;}
.xd0_c01294{left:752.550000px;}
.x6e_c01294{left:754.275000px;}
.xcc_c01294{left:756.000000px;}
.x108_c01294{left:760.320000px;}
.x9b_c01294{left:762.045000px;}
.x7d_c01294{left:766.365000px;}
.x10f_c01294{left:768.090000px;}
.x75_c01294{left:771.555000px;}
.x8c_c01294{left:774.150000px;}
.x109_c01294{left:776.730000px;}
.xf_c01294{left:778.470000px;}
.x103_c01294{left:781.920000px;}
.x40_c01294{left:784.515000px;}
.xee_c01294{left:786.240000px;}
.xcd_c01294{left:787.965000px;}
.x65_c01294{left:789.690000px;}
.x2f_c01294{left:791.430000px;}
.x10a_c01294{left:794.010000px;}
.x53_c01294{left:796.605000px;}
.xc1_c01294{left:799.200000px;}
.x5b_c01294{left:800.925000px;}
.xc6_c01294{left:804.390000px;}
.xb4_c01294{left:806.970000px;}
.x41_c01294{left:808.710000px;}
.x93_c01294{left:810.435000px;}
.x4a_c01294{left:812.160000px;}
.xc9_c01294{left:817.350000px;}
.x38_c01294{left:819.075000px;}
.x76_c01294{left:821.670000px;}
.xef_c01294{left:825.120000px;}
.xed_c01294{left:827.715000px;}
.x39_c01294{left:830.310000px;}
.x10d_c01294{left:832.035000px;}
.xab_c01294{left:833.760000px;}
.x9c_c01294{left:836.355000px;}
.x10b_c01294{left:838.080000px;}
.x20_c01294{left:840.675000px;}
.xfe_c01294{left:844.125000px;}
.x8d_c01294{left:845.850000px;}
.xb1_c01294{left:847.590000px;}
.x9d_c01294{left:856.230000px;}
.xc7_c01294{left:857.955000px;}
.x54_c01294{left:859.680000px;}
.x7e_c01294{left:861.405000px;}
.x6f_c01294{left:863.130000px;}
.x82_c01294{left:864.870000px;}
.x42_c01294{left:866.595000px;}
.x4b_c01294{left:868.320000px;}
.x77_c01294{left:870.045000px;}
.x91_c01294{left:876.960000px;}
.x114_c01294{left:955.590000px;}
.x112_c01294{left:966.810000px;}
.x115_c01294{left:971.130000px;}
.x116_c01294{left:986.685000px;}
.x117_c01294{left:1010.010000px;}
.x118_c01294{left:1013.475000px;}
.x119_c01294{left:1016.925000px;}
.x113_c01294{left:1022.115000px;}
@media print{
.v0_c01294{vertical-align:0.000000pt;}
.v1_c01294{vertical-align:3.093333pt;}
.v2_c01294{vertical-align:18.453333pt;}
.v3_c01294{vertical-align:21.546667pt;}
.ls0_c01294{letter-spacing:0.000000pt;}
.ws2_c01294{word-spacing:-16.709067pt;}
.ws0_c01294{word-spacing:-14.783093pt;}
.ws1_c01294{word-spacing:-10.750507pt;}
.ws4_c01294{word-spacing:0.000000pt;}
.ws3_c01294{word-spacing:54.148320pt;}
.fsb_c01294{font-size:3.072000pt;}
.fsf_c01294{font-size:5.333333pt;}
.fsd_c01294{font-size:6.133333pt;}
.fs18_c01294{font-size:9.226667pt;}
.fs1b_c01294{font-size:12.266667pt;}
.fs15_c01294{font-size:15.360000pt;}
.fs12_c01294{font-size:18.453333pt;}
.fs4_c01294{font-size:21.493333pt;}
.fs1c_c01294{font-size:24.586667pt;}
.fs1a_c01294{font-size:27.626667pt;}
.fs17_c01294{font-size:30.720000pt;}
.fs16_c01294{font-size:33.813333pt;}
.fs19_c01294{font-size:36.853333pt;}
.fse_c01294{font-size:39.946667pt;}
.fs9_c01294{font-size:42.986667pt;}
.fs6_c01294{font-size:46.080000pt;}
.fs3_c01294{font-size:49.173333pt;}
.fs8_c01294{font-size:52.213333pt;}
.fsa_c01294{font-size:55.306667pt;}
.fs10_c01294{font-size:58.346667pt;}
.fs5_c01294{font-size:61.440000pt;}
.fs14_c01294{font-size:64.533333pt;}
.fs13_c01294{font-size:67.573333pt;}
.fs7_c01294{font-size:70.666667pt;}
.fsc_c01294{font-size:73.706667pt;}
.fs11_c01294{font-size:76.800000pt;}
.fs1d_c01294{font-size:79.893333pt;}
.fs0_c01294{font-size:82.933333pt;}
.fs1f_c01294{font-size:89.066667pt;}
.fs2_c01294{font-size:92.160000pt;}
.fs1_c01294{font-size:98.293333pt;}
.fs1e_c01294{font-size:122.880000pt;}
.fs21_c01294{font-size:125.973333pt;}
.fs20_c01294{font-size:175.093333pt;}
.y0_c01294{bottom:0.000000pt;}
.y1d8_c01294{bottom:168.960000pt;}
.y1d9_c01294{bottom:172.800000pt;}
.y1db_c01294{bottom:173.573333pt;}
.y1da_c01294{bottom:175.106667pt;}
.y1d7_c01294{bottom:178.946667pt;}
.y1dc_c01294{bottom:182.013333pt;}
.y1d0_c01294{bottom:192.000000pt;}
.y1cf_c01294{bottom:192.773333pt;}
.y1d2_c01294{bottom:193.533333pt;}
.y1d3_c01294{bottom:194.306667pt;}
.y1d1_c01294{bottom:195.066667pt;}
.y1d5_c01294{bottom:196.613333pt;}
.y1d6_c01294{bottom:197.373333pt;}
.y1d4_c01294{bottom:199.680000pt;}
.y1ca_c01294{bottom:211.973333pt;}
.y1cb_c01294{bottom:212.733333pt;}
.y1c8_c01294{bottom:213.506667pt;}
.y1cc_c01294{bottom:214.266667pt;}
.y1c9_c01294{bottom:215.040000pt;}
.y1cd_c01294{bottom:215.813333pt;}
.y1ce_c01294{bottom:217.346667pt;}
.y1bf_c01294{bottom:223.493333pt;}
.y1be_c01294{bottom:224.253333pt;}
.y1c1_c01294{bottom:225.026667pt;}
.y1c4_c01294{bottom:226.560000pt;}
.y1c0_c01294{bottom:227.333333pt;}
.y1c5_c01294{bottom:228.093333pt;}
.y1c3_c01294{bottom:228.866667pt;}
.y1c6_c01294{bottom:231.173333pt;}
.y1c7_c01294{bottom:231.933333pt;}
.y1c2_c01294{bottom:232.706667pt;}
.y1b9_c01294{bottom:246.533333pt;}
.y1b8_c01294{bottom:248.066667pt;}
.y1ba_c01294{bottom:248.826667pt;}
.y1b7_c01294{bottom:250.373333pt;}
.y1b6_c01294{bottom:254.213333pt;}
.y1bb_c01294{bottom:254.973333pt;}
.y1bc_c01294{bottom:255.746667pt;}
.y1bd_c01294{bottom:256.506667pt;}
.y1af_c01294{bottom:266.493333pt;}
.y1b0_c01294{bottom:267.266667pt;}
.y1b2_c01294{bottom:268.026667pt;}
.y1b3_c01294{bottom:268.800000pt;}
.y1aa_c01294{bottom:271.106667pt;}
.y1b4_c01294{bottom:273.413333pt;}
.y1b5_c01294{bottom:274.946667pt;}
.y1b1_c01294{bottom:277.253333pt;}
.y1a9_c01294{bottom:283.386667pt;}
.y1a8_c01294{bottom:284.160000pt;}
.y1a6_c01294{bottom:285.693333pt;}
.y1ab_c01294{bottom:286.466667pt;}
.y1a7_c01294{bottom:287.226667pt;}
.y1ae_c01294{bottom:290.306667pt;}
.y1ac_c01294{bottom:291.066667pt;}
.y1ad_c01294{bottom:291.840000pt;}
.y19e_c01294{bottom:301.053333pt;}
.y19d_c01294{bottom:301.826667pt;}
.y19f_c01294{bottom:302.586667pt;}
.y1a1_c01294{bottom:303.360000pt;}
.y1a2_c01294{bottom:304.893333pt;}
.y1a3_c01294{bottom:305.666667pt;}
.y1a5_c01294{bottom:307.200000pt;}
.y1a0_c01294{bottom:308.733333pt;}
.y1a4_c01294{bottom:311.040000pt;}
.y194_c01294{bottom:319.493333pt;}
.y195_c01294{bottom:320.253333pt;}
.y197_c01294{bottom:321.026667pt;}
.y199_c01294{bottom:322.560000pt;}
.y196_c01294{bottom:324.093333pt;}
.y19a_c01294{bottom:325.626667pt;}
.y198_c01294{bottom:327.173333pt;}
.y19b_c01294{bottom:328.706667pt;}
.y19c_c01294{bottom:329.466667pt;}
.y18d_c01294{bottom:337.146667pt;}
.y18e_c01294{bottom:337.920000pt;}
.y18f_c01294{bottom:340.986667pt;}
.y192_c01294{bottom:343.293333pt;}
.y190_c01294{bottom:344.066667pt;}
.y191_c01294{bottom:345.600000pt;}
.y193_c01294{bottom:347.133333pt;}
.y184_c01294{bottom:356.346667pt;}
.y186_c01294{bottom:357.120000pt;}
.y18a_c01294{bottom:357.893333pt;}
.y188_c01294{bottom:358.653333pt;}
.y183_c01294{bottom:359.426667pt;}
.y187_c01294{bottom:360.186667pt;}
.y185_c01294{bottom:360.960000pt;}
.y189_c01294{bottom:363.266667pt;}
.y18b_c01294{bottom:364.800000pt;}
.y18c_c01294{bottom:365.573333pt;}
.y182_c01294{bottom:367.106667pt;}
.y17c_c01294{bottom:372.480000pt;}
.y17d_c01294{bottom:374.013333pt;}
.y17e_c01294{bottom:375.546667pt;}
.y17f_c01294{bottom:376.320000pt;}
.y180_c01294{bottom:377.093333pt;}
.y181_c01294{bottom:378.626667pt;}
.y17a_c01294{bottom:380.933333pt;}
.y17b_c01294{bottom:384.773333pt;}
.y172_c01294{bottom:390.906667pt;}
.y173_c01294{bottom:393.213333pt;}
.y174_c01294{bottom:393.986667pt;}
.y176_c01294{bottom:394.746667pt;}
.y177_c01294{bottom:396.293333pt;}
.y170_c01294{bottom:397.053333pt;}
.y171_c01294{bottom:397.826667pt;}
.y179_c01294{bottom:398.586667pt;}
.y175_c01294{bottom:400.133333pt;}
.y178_c01294{bottom:400.893333pt;}
.y16a_c01294{bottom:409.346667pt;}
.y16c_c01294{bottom:413.946667pt;}
.y16d_c01294{bottom:415.493333pt;}
.y16e_c01294{bottom:417.026667pt;}
.y16f_c01294{bottom:418.560000pt;}
.y16b_c01294{bottom:420.093333pt;}
.y163_c01294{bottom:427.013333pt;}
.y166_c01294{bottom:429.306667pt;}
.y165_c01294{bottom:430.080000pt;}
.y167_c01294{bottom:431.613333pt;}
.y164_c01294{bottom:432.386667pt;}
.y168_c01294{bottom:436.986667pt;}
.y15b_c01294{bottom:445.440000pt;}
.y15c_c01294{bottom:446.973333pt;}
.y15d_c01294{bottom:447.746667pt;}
.y15e_c01294{bottom:448.506667pt;}
.y169_c01294{bottom:449.280000pt;}
.y15f_c01294{bottom:450.053333pt;}
.y161_c01294{bottom:450.813333pt;}
.y160_c01294{bottom:455.426667pt;}
.y162_c01294{bottom:456.186667pt;}
.y153_c01294{bottom:464.640000pt;}
.y155_c01294{bottom:465.413333pt;}
.y156_c01294{bottom:466.946667pt;}
.y158_c01294{bottom:468.480000pt;}
.y15a_c01294{bottom:469.253333pt;}
.y159_c01294{bottom:473.093333pt;}
.y157_c01294{bottom:474.626667pt;}
.y154_c01294{bottom:480.000000pt;}
.y14d_c01294{bottom:482.306667pt;}
.y14e_c01294{bottom:483.066667pt;}
.y14c_c01294{bottom:483.840000pt;}
.y14f_c01294{bottom:485.373333pt;}
.y150_c01294{bottom:489.986667pt;}
.y151_c01294{bottom:491.520000pt;}
.y152_c01294{bottom:492.293333pt;}
.y143_c01294{bottom:499.973333pt;}
.y144_c01294{bottom:501.506667pt;}
.y146_c01294{bottom:502.266667pt;}
.y145_c01294{bottom:503.040000pt;}
.y148_c01294{bottom:504.573333pt;}
.y149_c01294{bottom:505.346667pt;}
.y147_c01294{bottom:507.653333pt;}
.y14b_c01294{bottom:509.186667pt;}
.y14a_c01294{bottom:509.946667pt;}
.y13b_c01294{bottom:517.626667pt;}
.y13d_c01294{bottom:519.933333pt;}
.y141_c01294{bottom:522.240000pt;}
.y13c_c01294{bottom:524.546667pt;}
.y13f_c01294{bottom:525.306667pt;}
.y13e_c01294{bottom:526.080000pt;}
.y142_c01294{bottom:527.613333pt;}
.y140_c01294{bottom:532.226667pt;}
.y132_c01294{bottom:536.066667pt;}
.y133_c01294{bottom:536.826667pt;}
.y134_c01294{bottom:537.600000pt;}
.y135_c01294{bottom:538.373333pt;}
.y136_c01294{bottom:539.133333pt;}
.y13a_c01294{bottom:539.906667pt;}
.y139_c01294{bottom:540.666667pt;}
.y138_c01294{bottom:541.440000pt;}
.y137_c01294{bottom:543.746667pt;}
.y12c_c01294{bottom:556.026667pt;}
.y12d_c01294{bottom:556.800000pt;}
.y12f_c01294{bottom:558.333333pt;}
.y12b_c01294{bottom:559.106667pt;}
.y12e_c01294{bottom:561.413333pt;}
.y131_c01294{bottom:562.173333pt;}
.y130_c01294{bottom:562.946667pt;}
.y126_c01294{bottom:570.626667pt;}
.y125_c01294{bottom:572.160000pt;}
.y124_c01294{bottom:572.933333pt;}
.y129_c01294{bottom:575.226667pt;}
.y127_c01294{bottom:578.306667pt;}
.y128_c01294{bottom:579.066667pt;}
.y12a_c01294{bottom:580.613333pt;}
.y11c_c01294{bottom:589.053333pt;}
.y11a_c01294{bottom:589.826667pt;}
.y11f_c01294{bottom:590.586667pt;}
.y121_c01294{bottom:591.360000pt;}
.y122_c01294{bottom:592.893333pt;}
.y11b_c01294{bottom:593.666667pt;}
.y11d_c01294{bottom:594.426667pt;}
.y11e_c01294{bottom:595.200000pt;}
.y120_c01294{bottom:596.733333pt;}
.y123_c01294{bottom:597.506667pt;}
.y114_c01294{bottom:606.720000pt;}
.y115_c01294{bottom:608.253333pt;}
.y119_c01294{bottom:611.333333pt;}
.y116_c01294{bottom:612.866667pt;}
.y117_c01294{bottom:613.626667pt;}
.y112_c01294{bottom:614.400000pt;}
.y118_c01294{bottom:615.173333pt;}
.y113_c01294{bottom:619.773333pt;}
.y10d_c01294{bottom:623.613333pt;}
.y10e_c01294{bottom:626.693333pt;}
.y10f_c01294{bottom:629.760000pt;}
.y110_c01294{bottom:632.066667pt;}
.y111_c01294{bottom:632.826667pt;}
.y104_c01294{bottom:642.813333pt;}
.y106_c01294{bottom:643.586667pt;}
.y109_c01294{bottom:644.346667pt;}
.y10b_c01294{bottom:645.893333pt;}
.y105_c01294{bottom:646.653333pt;}
.y107_c01294{bottom:647.426667pt;}
.y10a_c01294{bottom:648.186667pt;}
.y108_c01294{bottom:649.733333pt;}
.y10c_c01294{bottom:652.026667pt;}
.yfc_c01294{bottom:658.946667pt;}
.yfd_c01294{bottom:661.253333pt;}
.yfe_c01294{bottom:663.546667pt;}
.y101_c01294{bottom:664.320000pt;}
.y102_c01294{bottom:665.093333pt;}
.yff_c01294{bottom:667.386667pt;}
.y100_c01294{bottom:668.160000pt;}
.y103_c01294{bottom:671.226667pt;}
.yf5_c01294{bottom:679.680000pt;}
.yf3_c01294{bottom:680.453333pt;}
.yf6_c01294{bottom:681.986667pt;}
.yf9_c01294{bottom:682.746667pt;}
.yf4_c01294{bottom:684.293333pt;}
.yfa_c01294{bottom:685.053333pt;}
.yf7_c01294{bottom:685.826667pt;}
.yfb_c01294{bottom:687.360000pt;}
.yf8_c01294{bottom:688.893333pt;}
.yec_c01294{bottom:698.106667pt;}
.yee_c01294{bottom:698.880000pt;}
.yef_c01294{bottom:699.653333pt;}
.yf1_c01294{bottom:700.413333pt;}
.yf2_c01294{bottom:701.186667pt;}
.yed_c01294{bottom:704.253333pt;}
.yf0_c01294{bottom:705.026667pt;}
.ye8_c01294{bottom:715.773333pt;}
.ye5_c01294{bottom:717.306667pt;}
.ye4_c01294{bottom:718.080000pt;}
.ye7_c01294{bottom:718.853333pt;}
.ye3_c01294{bottom:719.613333pt;}
.ye9_c01294{bottom:720.386667pt;}
.ye6_c01294{bottom:721.920000pt;}
.yea_c01294{bottom:722.693333pt;}
.y1e3_c01294{bottom:723.453333pt;}
.yeb_c01294{bottom:725.760000pt;}
.y1e0_c01294{bottom:726.533333pt;}
.y1e1_c01294{bottom:729.600000pt;}
.y1e2_c01294{bottom:730.373333pt;}
.ydd_c01294{bottom:733.440000pt;}
.yde_c01294{bottom:734.973333pt;}
.ye1_c01294{bottom:735.746667pt;}
.y1df_c01294{bottom:736.506667pt;}
.ydc_c01294{bottom:737.280000pt;}
.ydb_c01294{bottom:738.053333pt;}
.ydf_c01294{bottom:738.813333pt;}
.ye0_c01294{bottom:739.586667pt;}
.ye2_c01294{bottom:740.346667pt;}
.yd2_c01294{bottom:751.866667pt;}
.yd3_c01294{bottom:752.640000pt;}
.yda_c01294{bottom:753.413333pt;}
.yd9_c01294{bottom:754.173333pt;}
.yd6_c01294{bottom:754.946667pt;}
.yd4_c01294{bottom:755.706667pt;}
.yd5_c01294{bottom:756.480000pt;}
.yd8_c01294{bottom:757.253333pt;}
.yd7_c01294{bottom:758.013333pt;}
.yce_c01294{bottom:768.000000pt;}
.ycc_c01294{bottom:770.306667pt;}
.yd0_c01294{bottom:771.066667pt;}
.ycd_c01294{bottom:771.840000pt;}
.ycb_c01294{bottom:772.613333pt;}
.yd1_c01294{bottom:773.373333pt;}
.ycf_c01294{bottom:775.680000pt;}
.yc1_c01294{bottom:786.426667pt;}
.yc8_c01294{bottom:787.973333pt;}
.yc4_c01294{bottom:788.733333pt;}
.yc5_c01294{bottom:789.506667pt;}
.yc3_c01294{bottom:791.040000pt;}
.yc2_c01294{bottom:791.813333pt;}
.yc6_c01294{bottom:792.573333pt;}
.yc7_c01294{bottom:793.346667pt;}
.yc9_c01294{bottom:794.106667pt;}
.yca_c01294{bottom:795.653333pt;}
.yb7_c01294{bottom:804.093333pt;}
.yb8_c01294{bottom:805.626667pt;}
.ybc_c01294{bottom:806.400000pt;}
.yba_c01294{bottom:807.173333pt;}
.ybb_c01294{bottom:808.706667pt;}
.yb9_c01294{bottom:810.240000pt;}
.ybd_c01294{bottom:811.773333pt;}
.ybe_c01294{bottom:812.546667pt;}
.ybf_c01294{bottom:813.306667pt;}
.yc0_c01294{bottom:815.613333pt;}
.yaf_c01294{bottom:821.760000pt;}
.yb1_c01294{bottom:824.826667pt;}
.yb2_c01294{bottom:825.600000pt;}
.yb6_c01294{bottom:826.373333pt;}
.yae_c01294{bottom:827.133333pt;}
.yb0_c01294{bottom:827.906667pt;}
.yb3_c01294{bottom:829.440000pt;}
.yb4_c01294{bottom:830.213333pt;}
.yb5_c01294{bottom:831.746667pt;}
.ya9_c01294{bottom:841.733333pt;}
.yac_c01294{bottom:843.266667pt;}
.ya7_c01294{bottom:844.800000pt;}
.ya8_c01294{bottom:845.573333pt;}
.yaa_c01294{bottom:847.106667pt;}
.yab_c01294{bottom:847.866667pt;}
.yad_c01294{bottom:848.640000pt;}
.ya6_c01294{bottom:852.480000pt;}
.y9f_c01294{bottom:858.626667pt;}
.ya0_c01294{bottom:859.386667pt;}
.ya4_c01294{bottom:860.933333pt;}
.ya5_c01294{bottom:861.693333pt;}
.ya2_c01294{bottom:863.226667pt;}
.y1de_c01294{bottom:864.000000pt;}
.ya1_c01294{bottom:864.773333pt;}
.ya3_c01294{bottom:866.306667pt;}
.y9e_c01294{bottom:870.146667pt;}
.y96_c01294{bottom:876.293333pt;}
.y99_c01294{bottom:877.053333pt;}
.y9b_c01294{bottom:879.360000pt;}
.y9d_c01294{bottom:880.893333pt;}
.y95_c01294{bottom:881.666667pt;}
.y97_c01294{bottom:882.426667pt;}
.y98_c01294{bottom:883.200000pt;}
.y9a_c01294{bottom:883.973333pt;}
.y9c_c01294{bottom:884.733333pt;}
.y94_c01294{bottom:892.413333pt;}
.y8a_c01294{bottom:893.946667pt;}
.y8b_c01294{bottom:895.493333pt;}
.y8c_c01294{bottom:896.253333pt;}
.y91_c01294{bottom:897.026667pt;}
.y8f_c01294{bottom:899.333333pt;}
.y8e_c01294{bottom:900.866667pt;}
.y8d_c01294{bottom:901.626667pt;}
.y90_c01294{bottom:902.400000pt;}
.y92_c01294{bottom:903.173333pt;}
.y93_c01294{bottom:910.080000pt;}
.y84_c01294{bottom:913.146667pt;}
.y83_c01294{bottom:913.920000pt;}
.y86_c01294{bottom:914.693333pt;}
.y85_c01294{bottom:915.453333pt;}
.y88_c01294{bottom:918.533333pt;}
.y89_c01294{bottom:919.293333pt;}
.y87_c01294{bottom:920.066667pt;}
.y82_c01294{bottom:921.600000pt;}
.y81_c01294{bottom:922.373333pt;}
.y75_c01294{bottom:930.053333pt;}
.y78_c01294{bottom:930.813333pt;}
.y7c_c01294{bottom:932.346667pt;}
.y77_c01294{bottom:933.120000pt;}
.y7a_c01294{bottom:933.893333pt;}
.y7d_c01294{bottom:934.653333pt;}
.y76_c01294{bottom:935.426667pt;}
.y7f_c01294{bottom:936.186667pt;}
.y79_c01294{bottom:936.960000pt;}
.y7b_c01294{bottom:938.493333pt;}
.y7e_c01294{bottom:939.266667pt;}
.y80_c01294{bottom:943.866667pt;}
.y6e_c01294{bottom:949.253333pt;}
.y6f_c01294{bottom:950.013333pt;}
.y70_c01294{bottom:950.786667pt;}
.y73_c01294{bottom:951.546667pt;}
.y74_c01294{bottom:953.093333pt;}
.y71_c01294{bottom:955.386667pt;}
.y72_c01294{bottom:956.160000pt;}
.y68_c01294{bottom:966.906667pt;}
.y6b_c01294{bottom:969.986667pt;}
.y6d_c01294{bottom:972.293333pt;}
.y69_c01294{bottom:973.053333pt;}
.y6a_c01294{bottom:973.826667pt;}
.y6c_c01294{bottom:975.360000pt;}
.y67_c01294{bottom:976.893333pt;}
.y66_c01294{bottom:979.200000pt;}
.y5f_c01294{bottom:985.346667pt;}
.y63_c01294{bottom:987.653333pt;}
.y5e_c01294{bottom:988.413333pt;}
.y5d_c01294{bottom:989.186667pt;}
.y60_c01294{bottom:990.720000pt;}
.y61_c01294{bottom:991.493333pt;}
.y65_c01294{bottom:993.026667pt;}
.y64_c01294{bottom:993.786667pt;}
.y62_c01294{bottom:999.173333pt;}
.y56_c01294{bottom:1002.240000pt;}
.y58_c01294{bottom:1003.013333pt;}
.y5a_c01294{bottom:1004.546667pt;}
.y57_c01294{bottom:1007.613333pt;}
.y59_c01294{bottom:1008.386667pt;}
.y5c_c01294{bottom:1009.146667pt;}
.y5b_c01294{bottom:1009.920000pt;}
.y53_c01294{bottom:1022.973333pt;}
.y55_c01294{bottom:1024.506667pt;}
.y52_c01294{bottom:1025.280000pt;}
.y54_c01294{bottom:1026.053333pt;}
.y4b_c01294{bottom:1036.800000pt;}
.y4c_c01294{bottom:1037.573333pt;}
.y4e_c01294{bottom:1039.106667pt;}
.y4d_c01294{bottom:1039.866667pt;}
.y50_c01294{bottom:1041.413333pt;}
.y51_c01294{bottom:1042.173333pt;}
.y4a_c01294{bottom:1042.946667pt;}
.y4f_c01294{bottom:1045.253333pt;}
.y40_c01294{bottom:1056.773333pt;}
.y41_c01294{bottom:1058.306667pt;}
.y44_c01294{bottom:1059.066667pt;}
.y47_c01294{bottom:1059.840000pt;}
.y42_c01294{bottom:1061.373333pt;}
.y43_c01294{bottom:1062.906667pt;}
.y45_c01294{bottom:1063.680000pt;}
.y1dd_c01294{bottom:1064.453333pt;}
.y48_c01294{bottom:1065.986667pt;}
.y49_c01294{bottom:1070.586667pt;}
.y46_c01294{bottom:1072.133333pt;}
.y39_c01294{bottom:1074.426667pt;}
.y3a_c01294{bottom:1075.973333pt;}
.y3b_c01294{bottom:1076.733333pt;}
.y3c_c01294{bottom:1077.506667pt;}
.y38_c01294{bottom:1078.266667pt;}
.y37_c01294{bottom:1079.040000pt;}
.y3e_c01294{bottom:1081.346667pt;}
.y3d_c01294{bottom:1082.106667pt;}
.y30_c01294{bottom:1092.093333pt;}
.y31_c01294{bottom:1092.866667pt;}
.y3f_c01294{bottom:1094.400000pt;}
.y32_c01294{bottom:1095.933333pt;}
.y35_c01294{bottom:1096.706667pt;}
.y34_c01294{bottom:1097.466667pt;}
.y36_c01294{bottom:1098.240000pt;}
.y33_c01294{bottom:1100.546667pt;}
.y27_c01294{bottom:1109.760000pt;}
.y28_c01294{bottom:1110.533333pt;}
.y26_c01294{bottom:1111.293333pt;}
.y29_c01294{bottom:1112.066667pt;}
.y2c_c01294{bottom:1113.600000pt;}
.y2d_c01294{bottom:1114.373333pt;}
.y2a_c01294{bottom:1117.440000pt;}
.y2b_c01294{bottom:1118.213333pt;}
.y2f_c01294{bottom:1123.586667pt;}
.y2e_c01294{bottom:1127.426667pt;}
.y21_c01294{bottom:1128.186667pt;}
.y22_c01294{bottom:1129.733333pt;}
.y1e_c01294{bottom:1130.493333pt;}
.y20_c01294{bottom:1131.266667pt;}
.y24_c01294{bottom:1132.026667pt;}
.y1f_c01294{bottom:1132.800000pt;}
.y23_c01294{bottom:1135.106667pt;}
.y25_c01294{bottom:1136.640000pt;}
.y1a_c01294{bottom:1147.386667pt;}
.y1d_c01294{bottom:1151.226667pt;}
.y1b_c01294{bottom:1155.066667pt;}
.y1c_c01294{bottom:1158.146667pt;}
.ye_c01294{bottom:1159.680000pt;}
.y12_c01294{bottom:1163.520000pt;}
.y15_c01294{bottom:1164.293333pt;}
.y13_c01294{bottom:1165.053333pt;}
.yf_c01294{bottom:1165.826667pt;}
.y11_c01294{bottom:1167.360000pt;}
.y17_c01294{bottom:1168.893333pt;}
.yd_c01294{bottom:1169.666667pt;}
.y14_c01294{bottom:1171.973333pt;}
.y18_c01294{bottom:1172.733333pt;}
.y19_c01294{bottom:1173.506667pt;}
.y16_c01294{bottom:1177.346667pt;}
.y10_c01294{bottom:1181.946667pt;}
.y7_c01294{bottom:1183.493333pt;}
.y4_c01294{bottom:1184.253333pt;}
.y6_c01294{bottom:1185.026667pt;}
.y3_c01294{bottom:1186.560000pt;}
.y5_c01294{bottom:1187.333333pt;}
.yc_c01294{bottom:1188.093333pt;}
.y8_c01294{bottom:1188.866667pt;}
.ya_c01294{bottom:1190.400000pt;}
.y9_c01294{bottom:1191.173333pt;}
.yb_c01294{bottom:1204.226667pt;}
.y1_c01294{bottom:1208.066667pt;}
.y2_c01294{bottom:1208.826667pt;}
.hd_c01294{height:2.764500pt;}
.h11_c01294{height:4.799479pt;}
.hf_c01294{height:5.519401pt;}
.h1a_c01294{height:8.303099pt;}
.h1d_c01294{height:11.038802pt;}
.h17_c01294{height:13.822500pt;}
.h14_c01294{height:16.606198pt;}
.h6_c01294{height:19.341901pt;}
.h1f_c01294{height:22.125599pt;}
.h1c_c01294{height:24.861302pt;}
.h19_c01294{height:27.645000pt;}
.h18_c01294{height:30.428698pt;}
.h1b_c01294{height:33.164401pt;}
.h10_c01294{height:35.948099pt;}
.hb_c01294{height:38.683802pt;}
.h8_c01294{height:41.467500pt;}
.h5_c01294{height:44.251198pt;}
.ha_c01294{height:46.986901pt;}
.h1e_c01294{height:47.344531pt;}
.hc_c01294{height:49.770599pt;}
.h12_c01294{height:52.506302pt;}
.h7_c01294{height:55.290000pt;}
.h16_c01294{height:58.073698pt;}
.h15_c01294{height:60.809401pt;}
.h21_c01294{height:62.704531pt;}
.h22_c01294{height:63.014167pt;}
.h9_c01294{height:63.593099pt;}
.he_c01294{height:66.328802pt;}
.h13_c01294{height:69.112500pt;}
.h20_c01294{height:71.896198pt;}
.h2_c01294{height:74.631901pt;}
.h24_c01294{height:80.151302pt;}
.h4_c01294{height:82.935000pt;}
.h3_c01294{height:88.454401pt;}
.h23_c01294{height:110.580000pt;}
.h26_c01294{height:113.363698pt;}
.h25_c01294{height:157.566901pt;}
.h1_c01294{height:1350.000000pt;}
.h0_c01294{height:1350.146667pt;}
.w1_c01294{width:956.666667pt;}
.w0_c01294{width:956.933333pt;}
.x0_c01294{left:0.000000pt;}
.xd1_c01294{left:148.226667pt;}
.x24_c01294{left:150.533333pt;}
.xd7_c01294{left:152.826667pt;}
.x10_c01294{left:159.746667pt;}
.x70_c01294{left:162.053333pt;}
.x66_c01294{left:166.653333pt;}
.x11_c01294{left:171.266667pt;}
.x25_c01294{left:173.573333pt;}
.x71_c01294{left:175.866667pt;}
.x26_c01294{left:177.413333pt;}
.xda_c01294{left:182.013333pt;}
.x94_c01294{left:184.320000pt;}
.x7f_c01294{left:185.853333pt;}
.x43_c01294{left:187.386667pt;}
.x30_c01294{left:190.466667pt;}
.xf6_c01294{left:192.000000pt;}
.x44_c01294{left:193.533333pt;}
.x4_c01294{left:195.066667pt;}
.x7a_c01294{left:197.373333pt;}
.x12_c01294{left:199.680000pt;}
.x27_c01294{left:201.213333pt;}
.x13_c01294{left:204.293333pt;}
.xf2_c01294{left:208.893333pt;}
.xc2_c01294{left:213.506667pt;}
.x78_c01294{left:215.040000pt;}
.xf3_c01294{left:217.346667pt;}
.x55_c01294{left:221.186667pt;}
.x31_c01294{left:223.493333pt;}
.x21_c01294{left:225.026667pt;}
.xd2_c01294{left:227.333333pt;}
.xa6_c01294{left:230.400000pt;}
.x14_c01294{left:231.933333pt;}
.xb5_c01294{left:234.240000pt;}
.xe9_c01294{left:236.546667pt;}
.x5_c01294{left:238.853333pt;}
.xba_c01294{left:240.386667pt;}
.x83_c01294{left:243.453333pt;}
.x6_c01294{left:245.760000pt;}
.x8e_c01294{left:247.293333pt;}
.x5c_c01294{left:251.133333pt;}
.x9e_c01294{left:252.666667pt;}
.x80_c01294{left:254.213333pt;}
.x15_c01294{left:257.280000pt;}
.xf7_c01294{left:258.813333pt;}
.xdd_c01294{left:261.120000pt;}
.x3a_c01294{left:262.653333pt;}
.xb2_c01294{left:264.186667pt;}
.xf4_c01294{left:265.733333pt;}
.x104_c01294{left:268.800000pt;}
.x28_c01294{left:270.333333pt;}
.xac_c01294{left:274.173333pt;}
.xd3_c01294{left:276.480000pt;}
.x56_c01294{left:278.786667pt;}
.x16_c01294{left:281.093333pt;}
.x9f_c01294{left:282.626667pt;}
.xe2_c01294{left:284.160000pt;}
.xdb_c01294{left:285.693333pt;}
.x10e_c01294{left:288.000000pt;}
.xe3_c01294{left:290.306667pt;}
.x29_c01294{left:291.840000pt;}
.x32_c01294{left:293.373333pt;}
.x61_c01294{left:299.520000pt;}
.x7b_c01294{left:301.053333pt;}
.x95_c01294{left:302.586667pt;}
.x1_c01294{left:304.133333pt;}
.x5d_c01294{left:306.426667pt;}
.x2a_c01294{left:309.506667pt;}
.xe5_c01294{left:311.040000pt;}
.xb3_c01294{left:312.573333pt;}
.xad_c01294{left:314.106667pt;}
.x45_c01294{left:317.186667pt;}
.xbb_c01294{left:318.720000pt;}
.x7_c01294{left:320.253333pt;}
.xff_c01294{left:321.786667pt;}
.x17_c01294{left:323.333333pt;}
.xf8_c01294{left:324.866667pt;}
.xde_c01294{left:326.400000pt;}
.x111_c01294{left:328.706667pt;}
.xa0_c01294{left:330.240000pt;}
.xce_c01294{left:332.546667pt;}
.x62_c01294{left:334.853333pt;}
.x33_c01294{left:336.386667pt;}
.xd4_c01294{left:337.920000pt;}
.x84_c01294{left:339.453333pt;}
.x67_c01294{left:342.533333pt;}
.xa7_c01294{left:344.826667pt;}
.x100_c01294{left:346.373333pt;}
.x4c_c01294{left:350.213333pt;}
.x8_c01294{left:352.506667pt;}
.xdc_c01294{left:354.053333pt;}
.xe6_c01294{left:356.346667pt;}
.x5e_c01294{left:357.893333pt;}
.x96_c01294{left:360.186667pt;}
.x18_c01294{left:362.493333pt;}
.xbc_c01294{left:365.573333pt;}
.x4d_c01294{left:369.413333pt;}
.x85_c01294{left:372.480000pt;}
.xf0_c01294{left:374.786667pt;}
.x105_c01294{left:376.320000pt;}
.x81_c01294{left:377.853333pt;}
.x110_c01294{left:380.160000pt;}
.xcf_c01294{left:381.693333pt;}
.xf5_c01294{left:383.226667pt;}
.x46_c01294{left:384.773333pt;}
.x68_c01294{left:387.840000pt;}
.x3b_c01294{left:389.373333pt;}
.x57_c01294{left:391.680000pt;}
.xbd_c01294{left:394.746667pt;}
.x63_c01294{left:397.053333pt;}
.x9_c01294{left:398.586667pt;}
.x19_c01294{left:400.893333pt;}
.x64_c01294{left:402.426667pt;}
.xe4_c01294{left:406.266667pt;}
.x1a_c01294{left:407.813333pt;}
.xea_c01294{left:410.106667pt;}
.x2b_c01294{left:411.653333pt;}
.xc3_c01294{left:414.720000pt;}
.x4e_c01294{left:417.786667pt;}
.x69_c01294{left:420.093333pt;}
.x106_c01294{left:422.400000pt;}
.x1b_c01294{left:424.706667pt;}
.xdf_c01294{left:427.773333pt;}
.xd8_c01294{left:429.306667pt;}
.x5f_c01294{left:430.853333pt;}
.x97_c01294{left:432.386667pt;}
.x4f_c01294{left:433.920000pt;}
.x2_c01294{left:436.226667pt;}
.x22_c01294{left:437.760000pt;}
.xd5_c01294{left:440.066667pt;}
.x98_c01294{left:441.600000pt;}
.x92_c01294{left:443.133333pt;}
.x34_c01294{left:444.666667pt;}
.xfc_c01294{left:446.973333pt;}
.xa1_c01294{left:449.280000pt;}
.x6a_c01294{left:450.813333pt;}
.x86_c01294{left:456.186667pt;}
.xb6_c01294{left:461.573333pt;}
.x23_c01294{left:468.480000pt;}
.xa_c01294{left:471.546667pt;}
.x6b_c01294{left:475.386667pt;}
.xca_c01294{left:476.933333pt;}
.xc4_c01294{left:479.226667pt;}
.x58_c01294{left:480.773333pt;}
.xae_c01294{left:483.839933pt;}
.x50_c01294{left:485.373333pt;}
.xb_c01294{left:487.680000pt;}
.x1c_c01294{left:489.213333pt;}
.x2c_c01294{left:490.746667pt;}
.x8f_c01294{left:493.053333pt;}
.xa2_c01294{left:494.586667pt;}
.x6c_c01294{left:500.733333pt;}
.x35_c01294{left:506.880000pt;}
.x3c_c01294{left:508.413333pt;}
.x2d_c01294{left:510.720000pt;}
.xd6_c01294{left:519.173333pt;}
.x3d_c01294{left:521.466667pt;}
.xa3_c01294{left:523.013333pt;}
.x102_c01294{left:524.546667pt;}
.xc_c01294{left:526.080000pt;}
.x99_c01294{left:529.146667pt;}
.xf1_c01294{left:530.693333pt;}
.xaf_c01294{left:532.986667pt;}
.x72_c01294{left:534.533333pt;}
.x101_c01294{left:536.826667pt;}
.xa8_c01294{left:539.133333pt;}
.xfa_c01294{left:541.440000pt;}
.x107_c01294{left:542.973333pt;}
.x36_c01294{left:544.506667pt;}
.xd9_c01294{left:546.053333pt;}
.x87_c01294{left:547.586667pt;}
.xe8_c01294{left:549.893333pt;}
.x47_c01294{left:552.186667pt;}
.x79_c01294{left:553.733333pt;}
.x88_c01294{left:555.266667pt;}
.xa9_c01294{left:556.800000pt;}
.xf9_c01294{left:559.866667pt;}
.x1d_c01294{left:561.413333pt;}
.x51_c01294{left:562.946667pt;}
.x2e_c01294{left:566.786667pt;}
.xeb_c01294{left:569.093333pt;}
.xfd_c01294{left:570.626667pt;}
.x1e_c01294{left:572.933333pt;}
.xb7_c01294{left:575.226667pt;}
.xd_c01294{left:579.840000pt;}
.x48_c01294{left:581.373333pt;}
.xe_c01294{left:582.906667pt;}
.x9a_c01294{left:584.453333pt;}
.x89_c01294{left:588.293333pt;}
.xbe_c01294{left:589.826667pt;}
.x1f_c01294{left:591.360000pt;}
.x3e_c01294{left:593.666667pt;}
.xaa_c01294{left:597.506667pt;}
.x8a_c01294{left:599.040000pt;}
.xcb_c01294{left:603.653333pt;}
.x10c_c01294{left:605.186667pt;}
.x59_c01294{left:606.720000pt;}
.xb8_c01294{left:610.560000pt;}
.x73_c01294{left:612.866667pt;}
.x6d_c01294{left:615.173333pt;}
.x7c_c01294{left:617.466667pt;}
.x90_c01294{left:619.013333pt;}
.x74_c01294{left:621.306667pt;}
.xbf_c01294{left:623.613333pt;}
.x49_c01294{left:626.693333pt;}
.x5a_c01294{left:628.986667pt;}
.x37_c01294{left:632.066667pt;}
.xfb_c01294{left:633.600000pt;}
.x3f_c01294{left:635.906667pt;}
.x3_c01294{left:637.440000pt;}
.xa4_c01294{left:638.973333pt;}
.xc5_c01294{left:640.506667pt;}
.xe0_c01294{left:642.053333pt;}
.x8b_c01294{left:644.346667pt;}
.x52_c01294{left:645.893333pt;}
.xb9_c01294{left:648.960000pt;}
.x60_c01294{left:650.493333pt;}
.xc0_c01294{left:652.800000pt;}
.xc8_c01294{left:654.333333pt;}
.xe1_c01294{left:655.866667pt;}
.xb0_c01294{left:658.946667pt;}
.xec_c01294{left:660.480000pt;}
.xa5_c01294{left:662.013333pt;}
.xe7_c01294{left:665.853333pt;}
.xd0_c01294{left:668.933333pt;}
.x6e_c01294{left:670.466667pt;}
.xcc_c01294{left:672.000000pt;}
.x108_c01294{left:675.840000pt;}
.x9b_c01294{left:677.373333pt;}
.x7d_c01294{left:681.213333pt;}
.x10f_c01294{left:682.746667pt;}
.x75_c01294{left:685.826667pt;}
.x8c_c01294{left:688.133333pt;}
.x109_c01294{left:690.426667pt;}
.xf_c01294{left:691.973333pt;}
.x103_c01294{left:695.040000pt;}
.x40_c01294{left:697.346667pt;}
.xee_c01294{left:698.880000pt;}
.xcd_c01294{left:700.413333pt;}
.x65_c01294{left:701.946667pt;}
.x2f_c01294{left:703.493333pt;}
.x10a_c01294{left:705.786667pt;}
.x53_c01294{left:708.093333pt;}
.xc1_c01294{left:710.400000pt;}
.x5b_c01294{left:711.933333pt;}
.xc6_c01294{left:715.013333pt;}
.xb4_c01294{left:717.306667pt;}
.x41_c01294{left:718.853333pt;}
.x93_c01294{left:720.386667pt;}
.x4a_c01294{left:721.920000pt;}
.xc9_c01294{left:726.533333pt;}
.x38_c01294{left:728.066667pt;}
.x76_c01294{left:730.373333pt;}
.xef_c01294{left:733.440000pt;}
.xed_c01294{left:735.746667pt;}
.x39_c01294{left:738.053333pt;}
.x10d_c01294{left:739.586667pt;}
.xab_c01294{left:741.120000pt;}
.x9c_c01294{left:743.426667pt;}
.x10b_c01294{left:744.960000pt;}
.x20_c01294{left:747.266667pt;}
.xfe_c01294{left:750.333333pt;}
.x8d_c01294{left:751.866667pt;}
.xb1_c01294{left:753.413333pt;}
.x9d_c01294{left:761.093333pt;}
.xc7_c01294{left:762.626667pt;}
.x54_c01294{left:764.160000pt;}
.x7e_c01294{left:765.693333pt;}
.x6f_c01294{left:767.226667pt;}
.x82_c01294{left:768.773333pt;}
.x42_c01294{left:770.306667pt;}
.x4b_c01294{left:771.840000pt;}
.x77_c01294{left:773.373333pt;}
.x91_c01294{left:779.520000pt;}
.x114_c01294{left:849.413333pt;}
.x112_c01294{left:859.386667pt;}
.x115_c01294{left:863.226667pt;}
.x116_c01294{left:877.053333pt;}
.x117_c01294{left:897.786667pt;}
.x118_c01294{left:900.866667pt;}
.x119_c01294{left:903.933333pt;}
.x113_c01294{left:908.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01295;src:url('chunks/assets/font_1f43340f3c896d15b9ad4f42.woff2')format("woff");}.ff1_c01295{font-family:ff1_c01295;line-height:1.109863;font-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_c01295{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c01295{transform:matrix(0.052900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052900,0.000000,0.000000,0.250000,0,0);}
.m15_c01295{transform:matrix(0.060600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060600,0.000000,0.000000,0.250000,0,0);}
.m67_c01295{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m12_c01295{transform:matrix(0.079700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079700,0.000000,0.000000,0.250000,0,0);}
.m10_c01295{transform:matrix(0.084075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084075,0.000000,0.000000,0.250000,0,0);}
.m43_c01295{transform:matrix(0.086625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086625,0.000000,0.000000,0.250000,0,0);}
.m37_c01295{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.mb_c01295{transform:matrix(0.096500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01295{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);}
.m50_c01295{transform:matrix(0.115400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115400,0.000000,0.000000,0.250000,0,0);}
.mc_c01295{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m56_c01295{transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);}
.m2d_c01295{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.m66_c01295{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m33_c01295{transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);}
.m1b_c01295{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);}
.m35_c01295{transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167925,0.000000,0.000000,0.250000,0,0);}
.m46_c01295{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.m5d_c01295{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);}
.m36_c01295{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.m68_c01295{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.md_c01295{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);}
.m22_c01295{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);}
.m57_c01295{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);}
.m39_c01295{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m4d_c01295{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m1c_c01295{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);}
.m63_c01295{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);}
.mf_c01295{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m20_c01295{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.m60_c01295{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m62_c01295{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);}
.m29_c01295{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.m4c_c01295{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);}
.m31_c01295{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m11_c01295{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m28_c01295{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);}
.m49_c01295{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m2_c01295{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);}
.m5c_c01295{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);}
.m51_c01295{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m53_c01295{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m55_c01295{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.m38_c01295{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m4_c01295{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);}
.m54_c01295{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);}
.m13_c01295{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);}
.m71_c01295{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);}
.m4a_c01295{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m16_c01295{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);}
.m25_c01295{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.m6e_c01295{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);}
.m47_c01295{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.m65_c01295{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m42_c01295{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);}
.m58_c01295{transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);}
.m5e_c01295{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.m26_c01295{transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);}
.m3b_c01295{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);}
.m69_c01295{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);}
.m40_c01295{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m5f_c01295{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);}
.m1_c01295{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);}
.m1f_c01295{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m30_c01295{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);}
.m9_c01295{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);}
.m1d_c01295{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);}
.m32_c01295{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01295{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m19_c01295{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01295{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);}
.m3d_c01295{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01295{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);}
.m70_c01295{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01295{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01295{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);}
.m3a_c01295{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);}
.m1e_c01295{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01295{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01295{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);}
.m6d_c01295{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);}
.m59_c01295{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m17_c01295{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m52_c01295{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01295{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m34_c01295{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me_c01295{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);}
.m27_c01295{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01295{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m24_c01295{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);}
.m4f_c01295{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m41_c01295{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m45_c01295{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m21_c01295{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01295{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);}
.m23_c01295{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01295{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m61_c01295{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m5_c01295{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);}
.m6_c01295{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m48_c01295{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01295{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01295{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.ma_c01295{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);}
.m18_c01295{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m14_c01295{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m6c_c01295{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m0_c01295{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m7_c01295{transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.847500,0.000000,0.000000,0.250000,0,0);}
.m64_c01295{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m44_c01295{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.m8_c01295{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01295{transform:matrix(2.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.937500,0.000000,0.000000,0.250000,0,0);}
.v0_c01295{vertical-align:0.000000px;}
.ls0_c01295{letter-spacing:0.000000px;}
.sc__c01295{text-shadow:none;}
.sc0_c01295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01295{-webkit-text-stroke:0px transparent;}
.sc0_c01295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01295{word-spacing:0.000000px;}
.fc0_c01295{color:transparent;}
.fs9_c01295{font-size:3.456000px;}
.fs1d_c01295{font-size:6.000000px;}
.fs6_c01295{font-size:6.900000px;}
.fs11_c01295{font-size:10.380000px;}
.fs1e_c01295{font-size:13.800000px;}
.fs0_c01295{font-size:17.280000px;}
.fs10_c01295{font-size:20.760000px;}
.fs7_c01295{font-size:24.180000px;}
.fs4_c01295{font-size:31.080000px;}
.fsa_c01295{font-size:34.560000px;}
.fs15_c01295{font-size:38.040000px;}
.fs5_c01295{font-size:41.460000px;}
.fs1c_c01295{font-size:44.940000px;}
.fs1a_c01295{font-size:48.360000px;}
.fsb_c01295{font-size:51.840000px;}
.fs3_c01295{font-size:55.320000px;}
.fsd_c01295{font-size:58.740000px;}
.fs1b_c01295{font-size:62.220000px;}
.fs8_c01295{font-size:65.640000px;}
.fs17_c01295{font-size:69.120000px;}
.fs1_c01295{font-size:72.600000px;}
.fs14_c01295{font-size:76.020000px;}
.fs13_c01295{font-size:79.500000px;}
.fs16_c01295{font-size:82.920000px;}
.fs18_c01295{font-size:86.400000px;}
.fs19_c01295{font-size:89.880000px;}
.fs12_c01295{font-size:93.300000px;}
.fsc_c01295{font-size:100.200000px;}
.fsf_c01295{font-size:114.060000px;}
.fs2_c01295{font-size:134.760000px;}
.fse_c01295{font-size:159.000000px;}
.y0_c01295{bottom:0.000000px;}
.y15_c01295{bottom:285.990000px;}
.y13_c01295{bottom:326.595000px;}
.y14_c01295{bottom:329.190000px;}
.y12_c01295{bottom:367.200000px;}
.y11_c01295{bottom:381.885000px;}
.y10_c01295{bottom:407.805000px;}
.yf_c01295{bottom:427.680000px;}
.ye_c01295{bottom:468.285000px;}
.yd_c01295{bottom:489.030000px;}
.yc_c01295{bottom:501.990000px;}
.yb_c01295{bottom:530.490000px;}
.ya_c01295{bottom:544.320000px;}
.y9_c01295{bottom:550.365000px;}
.y8_c01295{bottom:565.920000px;}
.y7_c01295{bottom:569.370000px;}
.y6_c01295{bottom:590.115000px;}
.y5_c01295{bottom:609.990000px;}
.y4_c01295{bottom:624.675000px;}
.y3_c01295{bottom:659.235000px;}
.y2_c01295{bottom:710.205000px;}
.y1_c01295{bottom:757.725000px;}
.y7c_c01295{bottom:878.685000px;}
.y7a_c01295{bottom:880.410000px;}
.y7b_c01295{bottom:881.280000px;}
.y78_c01295{bottom:896.835000px;}
.y79_c01295{bottom:899.430000px;}
.y76_c01295{bottom:943.485000px;}
.y75_c01295{bottom:946.080000px;}
.y77_c01295{bottom:947.805000px;}
.y73_c01295{bottom:960.765000px;}
.y74_c01295{bottom:963.360000px;}
.y71_c01295{bottom:964.230000px;}
.y70_c01295{bottom:965.955000px;}
.y44_c01295{bottom:968.550000px;}
.y72_c01295{bottom:970.275000px;}
.y6c_c01295{bottom:986.685000px;}
.y6d_c01295{bottom:988.410000px;}
.y6a_c01295{bottom:989.280000px;}
.y6b_c01295{bottom:990.150000px;}
.y6f_c01295{bottom:994.470000px;}
.y6e_c01295{bottom:1001.370000px;}
.y66_c01295{bottom:1006.560000px;}
.y69_c01295{bottom:1008.285000px;}
.y65_c01295{bottom:1009.155000px;}
.y68_c01295{bottom:1010.880000px;}
.y67_c01295{bottom:1011.750000px;}
.y64_c01295{bottom:1025.565000px;}
.y62_c01295{bottom:1026.435000px;}
.y63_c01295{bottom:1027.290000px;}
.y60_c01295{bottom:1029.885000px;}
.y61_c01295{bottom:1030.755000px;}
.y5c_c01295{bottom:1045.440000px;}
.y5e_c01295{bottom:1047.165000px;}
.y5d_c01295{bottom:1048.035000px;}
.y5b_c01295{bottom:1048.890000px;}
.y5f_c01295{bottom:1052.355000px;}
.y55_c01295{bottom:1064.445000px;}
.y58_c01295{bottom:1065.315000px;}
.y5a_c01295{bottom:1067.040000px;}
.y56_c01295{bottom:1070.490000px;}
.y57_c01295{bottom:1071.360000px;}
.y59_c01295{bottom:1072.230000px;}
.y50_c01295{bottom:1085.190000px;}
.y51_c01295{bottom:1086.045000px;}
.y52_c01295{bottom:1086.915000px;}
.y4f_c01295{bottom:1089.510000px;}
.y53_c01295{bottom:1092.090000px;}
.y54_c01295{bottom:1093.830000px;}
.y4d_c01295{bottom:1108.515000px;}
.y4b_c01295{bottom:1109.370000px;}
.y4e_c01295{bottom:1110.240000px;}
.y4c_c01295{bottom:1111.110000px;}
.y19_c01295{bottom:1113.690000px;}
.y18_c01295{bottom:1117.155000px;}
.y45_c01295{bottom:1124.070000px;}
.y46_c01295{bottom:1126.650000px;}
.y49_c01295{bottom:1127.520000px;}
.y47_c01295{bottom:1129.245000px;}
.y17_c01295{bottom:1131.840000px;}
.y48_c01295{bottom:1132.710000px;}
.y4a_c01295{bottom:1137.030000px;}
.y42_c01295{bottom:1188.870000px;}
.y3e_c01295{bottom:1189.725000px;}
.y41_c01295{bottom:1190.595000px;}
.y3f_c01295{bottom:1192.320000px;}
.y40_c01295{bottom:1193.190000px;}
.y16_c01295{bottom:1197.510000px;}
.y39_c01295{bottom:1205.280000px;}
.y3a_c01295{bottom:1206.150000px;}
.y3d_c01295{bottom:1207.005000px;}
.y3c_c01295{bottom:1207.875000px;}
.y3b_c01295{bottom:1208.730000px;}
.y35_c01295{bottom:1224.285000px;}
.y37_c01295{bottom:1226.010000px;}
.y38_c01295{bottom:1226.880000px;}
.y36_c01295{bottom:1233.795000px;}
.y33_c01295{bottom:1248.480000px;}
.y32_c01295{bottom:1249.350000px;}
.y30_c01295{bottom:1250.205000px;}
.y34_c01295{bottom:1251.075000px;}
.y31_c01295{bottom:1252.800000px;}
.y2a_c01295{bottom:1265.760000px;}
.y2d_c01295{bottom:1266.630000px;}
.y2f_c01295{bottom:1267.485000px;}
.y2b_c01295{bottom:1271.805000px;}
.y2c_c01295{bottom:1273.530000px;}
.y2e_c01295{bottom:1274.400000px;}
.y29_c01295{bottom:1276.995000px;}
.y26_c01295{bottom:1288.230000px;}
.y27_c01295{bottom:1289.085000px;}
.y25_c01295{bottom:1289.955000px;}
.y28_c01295{bottom:1294.275000px;}
.y43_c01295{bottom:1299.450000px;}
.y20_c01295{bottom:1307.235000px;}
.y24_c01295{bottom:1308.090000px;}
.y22_c01295{bottom:1308.960000px;}
.y1f_c01295{bottom:1311.555000px;}
.y21_c01295{bottom:1312.410000px;}
.y23_c01295{bottom:1317.600000px;}
.y1b_c01295{bottom:1327.110000px;}
.y1c_c01295{bottom:1328.835000px;}
.y1a_c01295{bottom:1330.560000px;}
.y1d_c01295{bottom:1335.750000px;}
.y1e_c01295{bottom:1336.605000px;}
.hb_c01295{height:3.110063px;}
.h1f_c01295{height:5.399414px;}
.h8_c01295{height:6.209326px;}
.h13_c01295{height:9.340986px;}
.h20_c01295{height:12.418652px;}
.h2_c01295{height:15.550313px;}
.h12_c01295{height:18.681973px;}
.h9_c01295{height:21.759639px;}
.h6_c01295{height:27.968965px;}
.hc_c01295{height:31.100625px;}
.h17_c01295{height:34.232285px;}
.h7_c01295{height:37.309951px;}
.h1e_c01295{height:40.441611px;}
.h1c_c01295{height:43.519277px;}
.hd_c01295{height:46.650937px;}
.h5_c01295{height:49.782598px;}
.hf_c01295{height:52.860264px;}
.h1d_c01295{height:55.991924px;}
.ha_c01295{height:59.069590px;}
.h19_c01295{height:62.201250px;}
.h3_c01295{height:65.332910px;}
.h16_c01295{height:68.410576px;}
.h15_c01295{height:71.542236px;}
.h18_c01295{height:74.619902px;}
.h1a_c01295{height:77.751563px;}
.h1b_c01295{height:80.883223px;}
.h14_c01295{height:83.960889px;}
.he_c01295{height:90.170215px;}
.h11_c01295{height:102.642861px;}
.h4_c01295{height:121.270840px;}
.h10_c01295{height:143.084473px;}
.h0_c01295{height:1509.405000px;}
.h1_c01295{height:1509.750000px;}
.w0_c01295{width:1088.640000px;}
.w1_c01295{width:1089.000000px;}
.x0_c01295{left:0.000000px;}
.x3_c01295{left:2.595000px;}
.x7_c01295{left:5.190000px;}
.x8_c01295{left:9.510000px;}
.x6_c01295{left:13.830000px;}
.x5_c01295{left:15.555000px;}
.x2_c01295{left:60.480000px;}
.x30_c01295{left:114.915000px;}
.x31_c01295{left:127.005000px;}
.x1_c01295{left:139.110000px;}
.x32_c01295{left:141.690000px;}
.x4_c01295{left:156.390000px;}
.x33_c01295{left:168.480000px;}
.x1a_c01295{left:222.915000px;}
.x1b_c01295{left:234.150000px;}
.x16_c01295{left:235.875000px;}
.x38_c01295{left:238.470000px;}
.x9_c01295{left:251.430000px;}
.x10_c01295{left:254.880000px;}
.x42_c01295{left:263.520000px;}
.xa_c01295{left:266.115000px;}
.x3c_c01295{left:270.435000px;}
.x52_c01295{left:276.480000px;}
.x39_c01295{left:281.670000px;}
.x27_c01295{left:292.035000px;}
.x46_c01295{left:295.485000px;}
.x3e_c01295{left:299.805000px;}
.x2b_c01295{left:304.995000px;}
.x11_c01295{left:306.720000px;}
.x17_c01295{left:311.040000px;}
.xb_c01295{left:312.765000px;}
.x43_c01295{left:315.360000px;}
.x47_c01295{left:321.405000px;}
.x2c_c01295{left:323.130000px;}
.x3f_c01295{left:326.595000px;}
.x56_c01295{left:328.320000px;}
.x4d_c01295{left:335.235000px;}
.x40_c01295{left:339.555000px;}
.x44_c01295{left:344.730000px;}
.x1c_c01295{left:349.920000px;}
.x4e_c01295{left:353.370000px;}
.x21_c01295{left:355.965000px;}
.x3a_c01295{left:358.560000px;}
.xc_c01295{left:363.750000px;}
.x12_c01295{left:368.925000px;}
.x53_c01295{left:374.115000px;}
.x13_c01295{left:375.840000px;}
.x41_c01295{left:378.435000px;}
.x24_c01295{left:380.160000px;}
.x1d_c01295{left:381.885000px;}
.x4f_c01295{left:383.610000px;}
.x34_c01295{left:387.930000px;}
.x18_c01295{left:390.525000px;}
.x35_c01295{left:400.035000px;}
.x1e_c01295{left:403.485000px;}
.x22_c01295{left:410.400000px;}
.x4a_c01295{left:412.125000px;}
.xd_c01295{left:414.720000px;}
.x1f_c01295{left:416.445000px;}
.x19_c01295{left:424.230000px;}
.x57_c01295{left:427.680000px;}
.x2d_c01295{left:429.405000px;}
.x28_c01295{left:437.190000px;}
.x36_c01295{left:441.510000px;}
.xe_c01295{left:445.830000px;}
.x25_c01295{left:448.410000px;}
.x14_c01295{left:455.325000px;}
.x48_c01295{left:457.920000px;}
.x20_c01295{left:462.240000px;}
.x2e_c01295{left:465.690000px;}
.x58_c01295{left:470.010000px;}
.x4b_c01295{left:472.605000px;}
.xf_c01295{left:474.330000px;}
.x29_c01295{left:477.795000px;}
.x59_c01295{left:479.520000px;}
.x23_c01295{left:481.245000px;}
.x5a_c01295{left:483.840000px;}
.x2f_c01295{left:485.565000px;}
.x50_c01295{left:487.290000px;}
.x15_c01295{left:491.610000px;}
.x45_c01295{left:497.670000px;}
.x3d_c01295{left:504.570000px;}
.x49_c01295{left:514.080000px;}
.x2a_c01295{left:516.675000px;}
.x3b_c01295{left:518.400000px;}
.x26_c01295{left:526.170000px;}
.x54_c01295{left:533.085000px;}
.x37_c01295{left:543.450000px;}
.x55_c01295{left:546.915000px;}
.x4c_c01295{left:550.365000px;}
.x51_c01295{left:565.050000px;}
@media print{
.v0_c01295{vertical-align:0.000000pt;}
.ls0_c01295{letter-spacing:0.000000pt;}
.ws0_c01295{word-spacing:0.000000pt;}
.fs9_c01295{font-size:3.072000pt;}
.fs1d_c01295{font-size:5.333333pt;}
.fs6_c01295{font-size:6.133333pt;}
.fs11_c01295{font-size:9.226667pt;}
.fs1e_c01295{font-size:12.266667pt;}
.fs0_c01295{font-size:15.360000pt;}
.fs10_c01295{font-size:18.453333pt;}
.fs7_c01295{font-size:21.493333pt;}
.fs4_c01295{font-size:27.626667pt;}
.fsa_c01295{font-size:30.720000pt;}
.fs15_c01295{font-size:33.813333pt;}
.fs5_c01295{font-size:36.853333pt;}
.fs1c_c01295{font-size:39.946667pt;}
.fs1a_c01295{font-size:42.986667pt;}
.fsb_c01295{font-size:46.080000pt;}
.fs3_c01295{font-size:49.173333pt;}
.fsd_c01295{font-size:52.213333pt;}
.fs1b_c01295{font-size:55.306667pt;}
.fs8_c01295{font-size:58.346667pt;}
.fs17_c01295{font-size:61.440000pt;}
.fs1_c01295{font-size:64.533333pt;}
.fs14_c01295{font-size:67.573333pt;}
.fs13_c01295{font-size:70.666667pt;}
.fs16_c01295{font-size:73.706667pt;}
.fs18_c01295{font-size:76.800000pt;}
.fs19_c01295{font-size:79.893333pt;}
.fs12_c01295{font-size:82.933333pt;}
.fsc_c01295{font-size:89.066667pt;}
.fsf_c01295{font-size:101.386667pt;}
.fs2_c01295{font-size:119.786667pt;}
.fse_c01295{font-size:141.333333pt;}
.y0_c01295{bottom:0.000000pt;}
.y15_c01295{bottom:254.213333pt;}
.y13_c01295{bottom:290.306667pt;}
.y14_c01295{bottom:292.613333pt;}
.y12_c01295{bottom:326.400000pt;}
.y11_c01295{bottom:339.453333pt;}
.y10_c01295{bottom:362.493333pt;}
.yf_c01295{bottom:380.160000pt;}
.ye_c01295{bottom:416.253333pt;}
.yd_c01295{bottom:434.693333pt;}
.yc_c01295{bottom:446.213333pt;}
.yb_c01295{bottom:471.546667pt;}
.ya_c01295{bottom:483.840000pt;}
.y9_c01295{bottom:489.213333pt;}
.y8_c01295{bottom:503.040000pt;}
.y7_c01295{bottom:506.106667pt;}
.y6_c01295{bottom:524.546667pt;}
.y5_c01295{bottom:542.213333pt;}
.y4_c01295{bottom:555.266667pt;}
.y3_c01295{bottom:585.986667pt;}
.y2_c01295{bottom:631.293333pt;}
.y1_c01295{bottom:673.533333pt;}
.y7c_c01295{bottom:781.053333pt;}
.y7a_c01295{bottom:782.586667pt;}
.y7b_c01295{bottom:783.360000pt;}
.y78_c01295{bottom:797.186667pt;}
.y79_c01295{bottom:799.493333pt;}
.y76_c01295{bottom:838.653333pt;}
.y75_c01295{bottom:840.960000pt;}
.y77_c01295{bottom:842.493333pt;}
.y73_c01295{bottom:854.013333pt;}
.y74_c01295{bottom:856.320000pt;}
.y71_c01295{bottom:857.093333pt;}
.y70_c01295{bottom:858.626667pt;}
.y44_c01295{bottom:860.933333pt;}
.y72_c01295{bottom:862.466667pt;}
.y6c_c01295{bottom:877.053333pt;}
.y6d_c01295{bottom:878.586667pt;}
.y6a_c01295{bottom:879.360000pt;}
.y6b_c01295{bottom:880.133333pt;}
.y6f_c01295{bottom:883.973333pt;}
.y6e_c01295{bottom:890.106667pt;}
.y66_c01295{bottom:894.720000pt;}
.y69_c01295{bottom:896.253333pt;}
.y65_c01295{bottom:897.026667pt;}
.y68_c01295{bottom:898.560000pt;}
.y67_c01295{bottom:899.333333pt;}
.y64_c01295{bottom:911.613333pt;}
.y62_c01295{bottom:912.386667pt;}
.y63_c01295{bottom:913.146667pt;}
.y60_c01295{bottom:915.453333pt;}
.y61_c01295{bottom:916.226667pt;}
.y5c_c01295{bottom:929.280000pt;}
.y5e_c01295{bottom:930.813333pt;}
.y5d_c01295{bottom:931.586667pt;}
.y5b_c01295{bottom:932.346667pt;}
.y5f_c01295{bottom:935.426667pt;}
.y55_c01295{bottom:946.173333pt;}
.y58_c01295{bottom:946.946667pt;}
.y5a_c01295{bottom:948.480000pt;}
.y56_c01295{bottom:951.546667pt;}
.y57_c01295{bottom:952.320000pt;}
.y59_c01295{bottom:953.093333pt;}
.y50_c01295{bottom:964.613333pt;}
.y51_c01295{bottom:965.373333pt;}
.y52_c01295{bottom:966.146667pt;}
.y4f_c01295{bottom:968.453333pt;}
.y53_c01295{bottom:970.746667pt;}
.y54_c01295{bottom:972.293333pt;}
.y4d_c01295{bottom:985.346667pt;}
.y4b_c01295{bottom:986.106667pt;}
.y4e_c01295{bottom:986.880000pt;}
.y4c_c01295{bottom:987.653333pt;}
.y19_c01295{bottom:989.946667pt;}
.y18_c01295{bottom:993.026667pt;}
.y45_c01295{bottom:999.173333pt;}
.y46_c01295{bottom:1001.466667pt;}
.y49_c01295{bottom:1002.240000pt;}
.y47_c01295{bottom:1003.773333pt;}
.y17_c01295{bottom:1006.080000pt;}
.y48_c01295{bottom:1006.853333pt;}
.y4a_c01295{bottom:1010.693333pt;}
.y42_c01295{bottom:1056.773333pt;}
.y3e_c01295{bottom:1057.533333pt;}
.y41_c01295{bottom:1058.306667pt;}
.y3f_c01295{bottom:1059.840000pt;}
.y40_c01295{bottom:1060.613333pt;}
.y16_c01295{bottom:1064.453333pt;}
.y39_c01295{bottom:1071.360000pt;}
.y3a_c01295{bottom:1072.133333pt;}
.y3d_c01295{bottom:1072.893333pt;}
.y3c_c01295{bottom:1073.666667pt;}
.y3b_c01295{bottom:1074.426667pt;}
.y35_c01295{bottom:1088.253333pt;}
.y37_c01295{bottom:1089.786667pt;}
.y38_c01295{bottom:1090.560000pt;}
.y36_c01295{bottom:1096.706667pt;}
.y33_c01295{bottom:1109.760000pt;}
.y32_c01295{bottom:1110.533333pt;}
.y30_c01295{bottom:1111.293333pt;}
.y34_c01295{bottom:1112.066667pt;}
.y31_c01295{bottom:1113.600000pt;}
.y2a_c01295{bottom:1125.120000pt;}
.y2d_c01295{bottom:1125.893333pt;}
.y2f_c01295{bottom:1126.653333pt;}
.y2b_c01295{bottom:1130.493333pt;}
.y2c_c01295{bottom:1132.026667pt;}
.y2e_c01295{bottom:1132.800000pt;}
.y29_c01295{bottom:1135.106667pt;}
.y26_c01295{bottom:1145.093333pt;}
.y27_c01295{bottom:1145.853333pt;}
.y25_c01295{bottom:1146.626667pt;}
.y28_c01295{bottom:1150.466667pt;}
.y43_c01295{bottom:1155.066667pt;}
.y20_c01295{bottom:1161.986667pt;}
.y24_c01295{bottom:1162.746667pt;}
.y22_c01295{bottom:1163.520000pt;}
.y1f_c01295{bottom:1165.826667pt;}
.y21_c01295{bottom:1166.586667pt;}
.y23_c01295{bottom:1171.200000pt;}
.y1b_c01295{bottom:1179.653333pt;}
.y1c_c01295{bottom:1181.186667pt;}
.y1a_c01295{bottom:1182.720000pt;}
.y1d_c01295{bottom:1187.333333pt;}
.y1e_c01295{bottom:1188.093333pt;}
.hb_c01295{height:2.764500pt;}
.h1f_c01295{height:4.799479pt;}
.h8_c01295{height:5.519401pt;}
.h13_c01295{height:8.303099pt;}
.h20_c01295{height:11.038802pt;}
.h2_c01295{height:13.822500pt;}
.h12_c01295{height:16.606198pt;}
.h9_c01295{height:19.341901pt;}
.h6_c01295{height:24.861302pt;}
.hc_c01295{height:27.645000pt;}
.h17_c01295{height:30.428698pt;}
.h7_c01295{height:33.164401pt;}
.h1e_c01295{height:35.948099pt;}
.h1c_c01295{height:38.683802pt;}
.hd_c01295{height:41.467500pt;}
.h5_c01295{height:44.251198pt;}
.hf_c01295{height:46.986901pt;}
.h1d_c01295{height:49.770599pt;}
.ha_c01295{height:52.506302pt;}
.h19_c01295{height:55.290000pt;}
.h3_c01295{height:58.073698pt;}
.h16_c01295{height:60.809401pt;}
.h15_c01295{height:63.593099pt;}
.h18_c01295{height:66.328802pt;}
.h1a_c01295{height:69.112500pt;}
.h1b_c01295{height:71.896198pt;}
.h14_c01295{height:74.631901pt;}
.he_c01295{height:80.151302pt;}
.h11_c01295{height:91.238099pt;}
.h4_c01295{height:107.796302pt;}
.h10_c01295{height:127.186198pt;}
.h0_c01295{height:1341.693333pt;}
.h1_c01295{height:1342.000000pt;}
.w0_c01295{width:967.680000pt;}
.w1_c01295{width:968.000000pt;}
.x0_c01295{left:0.000000pt;}
.x3_c01295{left:2.306667pt;}
.x7_c01295{left:4.613333pt;}
.x8_c01295{left:8.453333pt;}
.x6_c01295{left:12.293333pt;}
.x5_c01295{left:13.826667pt;}
.x2_c01295{left:53.760000pt;}
.x30_c01295{left:102.146667pt;}
.x31_c01295{left:112.893333pt;}
.x1_c01295{left:123.653333pt;}
.x32_c01295{left:125.946667pt;}
.x4_c01295{left:139.013333pt;}
.x33_c01295{left:149.760000pt;}
.x1a_c01295{left:198.146667pt;}
.x1b_c01295{left:208.133333pt;}
.x16_c01295{left:209.666667pt;}
.x38_c01295{left:211.973333pt;}
.x9_c01295{left:223.493333pt;}
.x10_c01295{left:226.560000pt;}
.x42_c01295{left:234.240000pt;}
.xa_c01295{left:236.546667pt;}
.x3c_c01295{left:240.386667pt;}
.x52_c01295{left:245.760000pt;}
.x39_c01295{left:250.373333pt;}
.x27_c01295{left:259.586667pt;}
.x46_c01295{left:262.653333pt;}
.x3e_c01295{left:266.493333pt;}
.x2b_c01295{left:271.106667pt;}
.x11_c01295{left:272.640000pt;}
.x17_c01295{left:276.480000pt;}
.xb_c01295{left:278.013333pt;}
.x43_c01295{left:280.320000pt;}
.x47_c01295{left:285.693333pt;}
.x2c_c01295{left:287.226667pt;}
.x3f_c01295{left:290.306667pt;}
.x56_c01295{left:291.840000pt;}
.x4d_c01295{left:297.986667pt;}
.x40_c01295{left:301.826667pt;}
.x44_c01295{left:306.426667pt;}
.x1c_c01295{left:311.040000pt;}
.x4e_c01295{left:314.106667pt;}
.x21_c01295{left:316.413333pt;}
.x3a_c01295{left:318.720000pt;}
.xc_c01295{left:323.333333pt;}
.x12_c01295{left:327.933333pt;}
.x53_c01295{left:332.546667pt;}
.x13_c01295{left:334.080000pt;}
.x41_c01295{left:336.386667pt;}
.x24_c01295{left:337.920000pt;}
.x1d_c01295{left:339.453333pt;}
.x4f_c01295{left:340.986667pt;}
.x34_c01295{left:344.826667pt;}
.x18_c01295{left:347.133333pt;}
.x35_c01295{left:355.586667pt;}
.x1e_c01295{left:358.653333pt;}
.x22_c01295{left:364.800000pt;}
.x4a_c01295{left:366.333333pt;}
.xd_c01295{left:368.640000pt;}
.x1f_c01295{left:370.173333pt;}
.x19_c01295{left:377.093333pt;}
.x57_c01295{left:380.160000pt;}
.x2d_c01295{left:381.693333pt;}
.x28_c01295{left:388.613333pt;}
.x36_c01295{left:392.453333pt;}
.xe_c01295{left:396.293333pt;}
.x25_c01295{left:398.586667pt;}
.x14_c01295{left:404.733333pt;}
.x48_c01295{left:407.040000pt;}
.x20_c01295{left:410.880000pt;}
.x2e_c01295{left:413.946667pt;}
.x58_c01295{left:417.786667pt;}
.x4b_c01295{left:420.093333pt;}
.xf_c01295{left:421.626667pt;}
.x29_c01295{left:424.706667pt;}
.x59_c01295{left:426.240000pt;}
.x23_c01295{left:427.773333pt;}
.x5a_c01295{left:430.080000pt;}
.x2f_c01295{left:431.613333pt;}
.x50_c01295{left:433.146667pt;}
.x15_c01295{left:436.986667pt;}
.x45_c01295{left:442.373333pt;}
.x3d_c01295{left:448.506667pt;}
.x49_c01295{left:456.960000pt;}
.x2a_c01295{left:459.266667pt;}
.x3b_c01295{left:460.800000pt;}
.x26_c01295{left:467.706667pt;}
.x54_c01295{left:473.853333pt;}
.x37_c01295{left:483.066667pt;}
.x55_c01295{left:486.146667pt;}
.x4c_c01295{left:489.213333pt;}
.x51_c01295{left:502.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b0716a50a6122ebad76ddb22.woff2')format("woff");}.ff1_c01296{font-family:ff1_c01296;line-height:1.109863;font-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_c01296{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01296{transform:matrix(0.015050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.015050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.015050,0.000000,0.000000,0.250000,0,0);}
.m19e_c01296{transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);}
.m1ed_c01296{transform:matrix(0.037600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037600,0.000000,0.000000,0.250000,0,0);}
.m80_c01296{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m48_c01296{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m125_c01296{transform:matrix(0.079525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079525,0.000000,0.000000,0.250000,0,0);}
.m1af_c01296{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);}
.m78_c01296{transform:matrix(0.082175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082175,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01296{transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);}
.m18e_c01296{transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);}
.m123_c01296{transform:matrix(0.085650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085650,0.000000,0.000000,0.250000,0,0);}
.m26_c01296{transform:matrix(0.089000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089000,0.000000,0.000000,0.250000,0,0);}
.m92_c01296{transform:matrix(0.092350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092350,0.000000,0.000000,0.250000,0,0);}
.m2b_c01296{transform:matrix(0.092550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092550,0.000000,0.000000,0.250000,0,0);}
.m28_c01296{transform:matrix(0.095600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095600,0.000000,0.000000,0.250000,0,0);}
.m158_c01296{transform:matrix(0.097825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097825,0.000000,0.000000,0.250000,0,0);}
.m52_c01296{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m188_c01296{transform:matrix(0.101675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101675,0.000000,0.000000,0.250000,0,0);}
.m115_c01296{transform:matrix(0.102075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102075,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01296{transform:matrix(0.102325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102325,0.000000,0.000000,0.250000,0,0);}
.m4e_c01296{transform:matrix(0.102350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102350,0.000000,0.000000,0.250000,0,0);}
.m14a_c01296{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m133_c01296{transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);}
.m7e_c01296{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m141_c01296{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m155_c01296{transform:matrix(0.107925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107925,0.000000,0.000000,0.250000,0,0);}
.ma6_c01296{transform:matrix(0.108100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108100,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01296{transform:matrix(0.109175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109175,0.000000,0.000000,0.250000,0,0);}
.m167_c01296{transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109400,0.000000,0.000000,0.250000,0,0);}
.m187_c01296{transform:matrix(0.109425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109425,0.000000,0.000000,0.250000,0,0);}
.m182_c01296{transform:matrix(0.111050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111050,0.000000,0.000000,0.250000,0,0);}
.m25_c01296{transform:matrix(0.111900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111900,0.000000,0.000000,0.250000,0,0);}
.m1ef_c01296{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m173_c01296{transform:matrix(0.112425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112425,0.000000,0.000000,0.250000,0,0);}
.m22_c01296{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m132_c01296{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);}
.m185_c01296{transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);}
.maf_c01296{transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);}
.m1c_c01296{transform:matrix(0.115350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115350,0.000000,0.000000,0.250000,0,0);}
.m93_c01296{transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);}
.me3_c01296{transform:matrix(0.116325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116325,0.000000,0.000000,0.250000,0,0);}
.m186_c01296{transform:matrix(0.117025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117025,0.000000,0.000000,0.250000,0,0);}
.m151_c01296{transform:matrix(0.117350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117350,0.000000,0.000000,0.250000,0,0);}
.m9e_c01296{transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);}
.m5a_c01296{transform:matrix(0.118075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118075,0.000000,0.000000,0.250000,0,0);}
.m109_c01296{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m9d_c01296{transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);}
.m15d_c01296{transform:matrix(0.120900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120900,0.000000,0.000000,0.250000,0,0);}
.mff_c01296{transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);}
.mcd_c01296{transform:matrix(0.121400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121400,0.000000,0.000000,0.250000,0,0);}
.m193_c01296{transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01296{transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01296{transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);}
.m62_c01296{transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);}
.m12d_c01296{transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);}
.mfe_c01296{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01296{transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);}
.m60_c01296{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m15f_c01296{transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);}
.m11a_c01296{transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);}
.m1de_c01296{transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);}
.m134_c01296{transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01296{transform:matrix(0.128725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128725,0.000000,0.000000,0.250000,0,0);}
.mdf_c01296{transform:matrix(0.129225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129225,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01296{transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);}
.m23_c01296{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);}
.m166_c01296{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m101_c01296{transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130675,0.000000,0.000000,0.250000,0,0);}
.m16c_c01296{transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);}
.mbc_c01296{transform:matrix(0.131775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131775,0.000000,0.000000,0.250000,0,0);}
.m2c_c01296{transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132625,0.000000,0.000000,0.250000,0,0);}
.m18f_c01296{transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);}
.mef_c01296{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m57_c01296{transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);}
.m7b_c01296{transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);}
.m160_c01296{transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);}
.m131_c01296{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m12e_c01296{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.m102_c01296{transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);}
.m15a_c01296{transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);}
.me7_c01296{transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);}
.m18d_c01296{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m82_c01296{transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);}
.m181_c01296{transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01296{transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);}
.m19c_c01296{transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139475,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01296{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01296{transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);}
.mad_c01296{transform:matrix(0.140975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140975,0.000000,0.000000,0.250000,0,0);}
.m148_c01296{transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);}
.m127_c01296{transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);}
.md5_c01296{transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142750,0.000000,0.000000,0.250000,0,0);}
.m191_c01296{transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);}
.m49_c01296{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m13f_c01296{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);}
.m1e8_c01296{transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);}
.ma1_c01296{transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);}
.m9f_c01296{transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);}
.m2_c01296{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m142_c01296{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.m172_c01296{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);}
.m36_c01296{transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01296{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);}
.m1df_c01296{transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);}
.m130_c01296{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);}
.m175_c01296{transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);}
.m106_c01296{transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01296{transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);}
.m68_c01296{transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);}
.m71_c01296{transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);}
.m5b_c01296{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.me1_c01296{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);}
.m117_c01296{transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);}
.md4_c01296{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.mb3_c01296{transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);}
.m8b_c01296{transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);}
.m6b_c01296{transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);}
.m81_c01296{transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01296{transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);}
.m135_c01296{transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);}
.m168_c01296{transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);}
.m13b_c01296{transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);}
.m9_c01296{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.m3e_c01296{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.m17a_c01296{transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);}
.ma7_c01296{transform:matrix(0.153350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153350,0.000000,0.000000,0.250000,0,0);}
.mee_c01296{transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);}
.m139_c01296{transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);}
.mcc_c01296{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.m5c_c01296{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.m1a_c01296{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m76_c01296{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);}
.m1e0_c01296{transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);}
.mac_c01296{transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);}
.m7_c01296{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.m138_c01296{transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);}
.m59_c01296{transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);}
.m153_c01296{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);}
.m159_c01296{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.mf1_c01296{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);}
.m11f_c01296{transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01296{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.m114_c01296{transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159725,0.000000,0.000000,0.250000,0,0);}
.m11e_c01296{transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);}
.mb6_c01296{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);}
.m1c2_c01296{transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);}
.mc6_c01296{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01296{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);}
.m17c_c01296{transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);}
.m192_c01296{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.m42_c01296{transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);}
.mc4_c01296{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.m17f_c01296{transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);}
.m124_c01296{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.m2e_c01296{transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01296{transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);}
.m196_c01296{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m69_c01296{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01296{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.m70_c01296{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.mc7_c01296{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);}
.m61_c01296{transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);}
.m177_c01296{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.m45_c01296{transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);}
.mda_c01296{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.mab_c01296{transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);}
.m63_c01296{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.m18c_c01296{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m1e7_c01296{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.m13e_c01296{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m12c_c01296{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.mdc_c01296{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m5_c01296{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m1e_c01296{transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);}
.m169_c01296{transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);}
.mfd_c01296{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);}
.m10e_c01296{transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);}
.m179_c01296{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01296{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.mc3_c01296{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01296{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);}
.m15b_c01296{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.me4_c01296{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);}
.m17e_c01296{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.mb5_c01296{transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);}
.ma5_c01296{transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);}
.m107_c01296{transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);}
.m74_c01296{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m157_c01296{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.mc5_c01296{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m10a_c01296{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);}
.m1be_c01296{transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);}
.me6_c01296{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.m72_c01296{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.m152_c01296{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.m17_c01296{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01296{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);}
.m10b_c01296{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);}
.m11c_c01296{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m13c_c01296{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);}
.m112_c01296{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.md6_c01296{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);}
.m137_c01296{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);}
.m12f_c01296{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);}
.mb1_c01296{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.mf_c01296{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m40_c01296{transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01296{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m190_c01296{transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);}
.m12a_c01296{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.m9c_c01296{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.m199_c01296{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);}
.m164_c01296{transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);}
.maa_c01296{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);}
.m108_c01296{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.m15c_c01296{transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);}
.mf6_c01296{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);}
.m113_c01296{transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);}
.mf8_c01296{transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);}
.m18a_c01296{transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01296{transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);}
.mb8_c01296{transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);}
.m17d_c01296{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);}
.mfb_c01296{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m194_c01296{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mf2_c01296{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.mcb_c01296{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01296{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);}
.m1c6_c01296{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);}
.m103_c01296{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);}
.m85_c01296{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);}
.m1d5_c01296{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01296{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m17b_c01296{transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);}
.m67_c01296{transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);}
.m184_c01296{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m9b_c01296{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m176_c01296{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m100_c01296{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);}
.m1da_c01296{transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);}
.m183_c01296{transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);}
.m165_c01296{transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01296{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m149_c01296{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.md8_c01296{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.mf5_c01296{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.m10c_c01296{transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);}
.m161_c01296{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);}
.m27_c01296{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.mde_c01296{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m156_c01296{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m1e6_c01296{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.m19d_c01296{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.m150_c01296{transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193150,0.000000,0.000000,0.250000,0,0);}
.m11d_c01296{transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);}
.mdd_c01296{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01296{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);}
.m14b_c01296{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m75_c01296{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.mf3_c01296{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.m12_c01296{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m11b_c01296{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);}
.m16e_c01296{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.m2d_c01296{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);}
.m1a6_c01296{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m174_c01296{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);}
.m32_c01296{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);}
.m14e_c01296{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01296{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m16_c01296{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);}
.md0_c01296{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);}
.m10f_c01296{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01296{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m88_c01296{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.md1_c01296{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);}
.m14_c01296{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01296{transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);}
.mce_c01296{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);}
.m11_c01296{transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);}
.mb9_c01296{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);}
.m19a_c01296{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01296{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.md9_c01296{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m8c_c01296{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m46_c01296{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);}
.mb2_c01296{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.mc9_c01296{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.m19f_c01296{transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);}
.m2f_c01296{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01296{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.m73_c01296{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);}
.m18_c01296{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m16b_c01296{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);}
.ma4_c01296{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m13d_c01296{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m10_c01296{transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);}
.mbf_c01296{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);}
.m1a5_c01296{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);}
.m104_c01296{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);}
.m58_c01296{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.med_c01296{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);}
.m140_c01296{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);}
.m1ee_c01296{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);}
.md3_c01296{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);}
.m1d6_c01296{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);}
.mba_c01296{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);}
.m8a_c01296{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);}
.m1c3_c01296{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);}
.m3b_c01296{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m195_c01296{transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01296{transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);}
.m39_c01296{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);}
.m79_c01296{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);}
.m189_c01296{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m120_c01296{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m8_c01296{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);}
.m105_c01296{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);}
.m1c1_c01296{transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);}
.m14d_c01296{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.m8e_c01296{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m197_c01296{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m8d_c01296{transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);}
.m3f_c01296{transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);}
.m6d_c01296{transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);}
.ma3_c01296{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);}
.m1ab_c01296{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m163_c01296{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m65_c01296{transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);}
.m37_c01296{transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01296{transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);}
.me2_c01296{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01296{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);}
.m1b6_c01296{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m14f_c01296{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);}
.m77_c01296{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);}
.m89_c01296{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.mfa_c01296{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01296{transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01296{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.me_c01296{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m35_c01296{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.m19b_c01296{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);}
.m24_c01296{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);}
.ma8_c01296{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);}
.m1b4_c01296{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.m16f_c01296{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);}
.m1b9_c01296{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);}
.m10d_c01296{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.mf0_c01296{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);}
.m143_c01296{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);}
.md7_c01296{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m16a_c01296{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m7a_c01296{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);}
.m7c_c01296{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);}
.m146_c01296{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);}
.m1d4_c01296{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);}
.m33_c01296{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);}
.m136_c01296{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);}
.mb0_c01296{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);}
.m4a_c01296{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);}
.m122_c01296{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);}
.m170_c01296{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m3c_c01296{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);}
.mb7_c01296{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.m110_c01296{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);}
.m162_c01296{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m15e_c01296{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);}
.m97_c01296{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.md_c01296{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);}
.mc8_c01296{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);}
.m5f_c01296{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.me5_c01296{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);}
.m118_c01296{transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);}
.m144_c01296{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01296{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m14c_c01296{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);}
.m18b_c01296{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m44_c01296{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);}
.ma9_c01296{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);}
.mdb_c01296{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);}
.m1c4_c01296{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.m41_c01296{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m1f_c01296{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m180_c01296{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);}
.m145_c01296{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);}
.m1bf_c01296{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.m4c_c01296{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);}
.m116_c01296{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01296{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);}
.m1bd_c01296{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);}
.m128_c01296{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);}
.m51_c01296{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m111_c01296{transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246850,0.000000,0.000000,0.250000,0,0);}
.m129_c01296{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m13a_c01296{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);}
.m1ac_c01296{transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247575,0.000000,0.000000,0.250000,0,0);}
.mf4_c01296{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m20_c01296{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m4f_c01296{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);}
.m50_c01296{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c01296{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_c01296{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);}
.m1b1_c01296{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);}
.md2_c01296{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);}
.m86_c01296{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m54_c01296{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01296{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7d_c01296{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);}
.m64_c01296{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01296{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);}
.m6f_c01296{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.me0_c01296{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);}
.m29_c01296{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m121_c01296{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m119_c01296{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);}
.m30_c01296{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01296{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);}
.m5e_c01296{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);}
.m34_c01296{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m47_c01296{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m95_c01296{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);}
.me8_c01296{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m147_c01296{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc1_c01296{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);}
.m19_c01296{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m38_c01296{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m53_c01296{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf7_c01296{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m154_c01296{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mbb_c01296{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc0_c01296{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m87_c01296{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);}
.mb4_c01296{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01296{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m66_c01296{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m171_c01296{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);}
.mb_c01296{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);}
.m1ea_c01296{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01296{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01296{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);}
.mfc_c01296{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m15_c01296{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.ma0_c01296{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01296{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mf9_c01296{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01296{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);}
.ma2_c01296{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);}
.mae_c01296{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mbe_c01296{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);}
.me9_c01296{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m90_c01296{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m198_c01296{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1db_c01296{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);}
.m5d_c01296{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);}
.ma_c01296{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mcf_c01296{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);}
.m1b_c01296{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m126_c01296{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4_c01296{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01296{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m96_c01296{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);}
.m94_c01296{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01296{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01296{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mbd_c01296{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m16d_c01296{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m3_c01296{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01296{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mca_c01296{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m6_c01296{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);}
.m21_c01296{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m91_c01296{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m83_c01296{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m12b_c01296{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01296{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m99_c01296{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m31_c01296{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.mc_c01296{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mc2_c01296{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01296{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m0_c01296{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m9a_c01296{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m178_c01296{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m56_c01296{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01296{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1eb_c01296{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01296{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);}
.m43_c01296{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mea_c01296{transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);}
.m98_c01296{transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01296{transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);}
.mec_c01296{transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);}
.meb_c01296{transform:matrix(1.847500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.847500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.847500,0.000000,0.000000,0.250000,0,0);}
.m55_c01296{transform:matrix(1.895000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.895000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.895000,0.000000,0.000000,0.250000,0,0);}
.m84_c01296{transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);}
.v1_c01296{vertical-align:-6.900000px;}
.v0_c01296{vertical-align:0.000000px;}
.v2_c01296{vertical-align:6.960000px;}
.ls1_c01296{letter-spacing:0.000000px;}
.ls0_c01296{letter-spacing:27.306720px;}
.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:-14.308080px;}
.ws1_c01296{word-spacing:0.000000px;}
.fc0_c01296{color:transparent;}
.fs2_c01296{font-size:3.456000px;}
.fs5_c01296{font-size:6.000000px;}
.fs3_c01296{font-size:6.900000px;}
.fs6_c01296{font-size:10.380000px;}
.fs20_c01296{font-size:13.800000px;}
.fs8_c01296{font-size:17.280000px;}
.fs1e_c01296{font-size:20.760000px;}
.fs18_c01296{font-size:24.180000px;}
.fs23_c01296{font-size:27.660000px;}
.fs1c_c01296{font-size:31.080000px;}
.fs14_c01296{font-size:34.560000px;}
.fs11_c01296{font-size:38.040000px;}
.fs19_c01296{font-size:41.460000px;}
.fs0_c01296{font-size:44.940000px;}
.fs21_c01296{font-size:48.360000px;}
.fs4_c01296{font-size:51.840000px;}
.fs1_c01296{font-size:55.320000px;}
.fs13_c01296{font-size:58.740000px;}
.fs16_c01296{font-size:62.220000px;}
.fs1d_c01296{font-size:65.640000px;}
.fsd_c01296{font-size:69.120000px;}
.fs17_c01296{font-size:72.600000px;}
.fs10_c01296{font-size:76.020000px;}
.fs1b_c01296{font-size:79.500000px;}
.fsf_c01296{font-size:82.920000px;}
.fsc_c01296{font-size:86.400000px;}
.fs15_c01296{font-size:89.880000px;}
.fsa_c01296{font-size:93.300000px;}
.fse_c01296{font-size:96.780000px;}
.fs1f_c01296{font-size:100.200000px;}
.fs12_c01296{font-size:103.680000px;}
.fs1a_c01296{font-size:107.160000px;}
.fs22_c01296{font-size:110.580000px;}
.fs7_c01296{font-size:117.480000px;}
.fsb_c01296{font-size:162.420000px;}
.fs9_c01296{font-size:172.800000px;}
.fs24_c01296{font-size:207.360000px;}
.y0_c01296{bottom:0.000000px;}
.y230_c01296{bottom:208.230000px;}
.y22e_c01296{bottom:209.085000px;}
.y22f_c01296{bottom:215.130000px;}
.y22c_c01296{bottom:228.090000px;}
.y22a_c01296{bottom:228.960000px;}
.y22b_c01296{bottom:231.555000px;}
.y228_c01296{bottom:232.410000px;}
.y22d_c01296{bottom:233.280000px;}
.y229_c01296{bottom:235.005000px;}
.y227_c01296{bottom:235.875000px;}
.y225_c01296{bottom:251.430000px;}
.y223_c01296{bottom:252.285000px;}
.y226_c01296{bottom:253.155000px;}
.y222_c01296{bottom:255.750000px;}
.y224_c01296{bottom:256.605000px;}
.y221_c01296{bottom:257.475000px;}
.y220_c01296{bottom:260.925000px;}
.y21e_c01296{bottom:273.030000px;}
.y21d_c01296{bottom:274.755000px;}
.y21c_c01296{bottom:277.350000px;}
.y21b_c01296{bottom:278.205000px;}
.y21a_c01296{bottom:279.075000px;}
.y21f_c01296{bottom:279.930000px;}
.y219_c01296{bottom:282.525000px;}
.y218_c01296{bottom:285.120000px;}
.y217_c01296{bottom:285.990000px;}
.y215_c01296{bottom:292.890000px;}
.y216_c01296{bottom:294.630000px;}
.y212_c01296{bottom:296.355000px;}
.y213_c01296{bottom:297.210000px;}
.y214_c01296{bottom:298.080000px;}
.y210_c01296{bottom:298.950000px;}
.y20f_c01296{bottom:300.675000px;}
.y20e_c01296{bottom:302.400000px;}
.y20d_c01296{bottom:303.270000px;}
.y20c_c01296{bottom:304.995000px;}
.y20b_c01296{bottom:305.850000px;}
.y211_c01296{bottom:307.590000px;}
.y20a_c01296{bottom:309.315000px;}
.y209_c01296{bottom:310.170000px;}
.y207_c01296{bottom:324.870000px;}
.y206_c01296{bottom:325.725000px;}
.y204_c01296{bottom:328.320000px;}
.y202_c01296{bottom:330.915000px;}
.y203_c01296{bottom:331.770000px;}
.y205_c01296{bottom:332.640000px;}
.y201_c01296{bottom:333.510000px;}
.y208_c01296{bottom:335.235000px;}
.y1ff_c01296{bottom:336.090000px;}
.y200_c01296{bottom:338.685000px;}
.y1fe_c01296{bottom:342.150000px;}
.y1fd_c01296{bottom:343.005000px;}
.y1f9_c01296{bottom:346.470000px;}
.y1fc_c01296{bottom:350.790000px;}
.y1f8_c01296{bottom:351.645000px;}
.y1fb_c01296{bottom:354.240000px;}
.y1fa_c01296{bottom:361.155000px;}
.y235_c01296{bottom:362.880000px;}
.y1f7_c01296{bottom:363.750000px;}
.y234_c01296{bottom:364.605000px;}
.y1f6_c01296{bottom:365.475000px;}
.y1f5_c01296{bottom:368.925000px;}
.y1f3_c01296{bottom:369.795000px;}
.y1f2_c01296{bottom:370.650000px;}
.y1f0_c01296{bottom:374.115000px;}
.y1f4_c01296{bottom:375.840000px;}
.y1f1_c01296{bottom:377.565000px;}
.y1ef_c01296{bottom:379.290000px;}
.y1ed_c01296{bottom:386.205000px;}
.y1eb_c01296{bottom:387.075000px;}
.y1ea_c01296{bottom:389.670000px;}
.y1ee_c01296{bottom:392.250000px;}
.y1e9_c01296{bottom:393.120000px;}
.y1e5_c01296{bottom:393.990000px;}
.y1e7_c01296{bottom:395.715000px;}
.y1e4_c01296{bottom:396.570000px;}
.y1e2_c01296{bottom:397.440000px;}
.y1e8_c01296{bottom:399.165000px;}
.y1e6_c01296{bottom:400.035000px;}
.y1ec_c01296{bottom:400.890000px;}
.y1e3_c01296{bottom:401.760000px;}
.y1df_c01296{bottom:408.675000px;}
.y1e1_c01296{bottom:410.400000px;}
.y1e0_c01296{bottom:411.270000px;}
.y1dc_c01296{bottom:416.445000px;}
.y1da_c01296{bottom:417.315000px;}
.y1de_c01296{bottom:418.170000px;}
.y1d9_c01296{bottom:419.040000px;}
.y1db_c01296{bottom:422.490000px;}
.y1d7_c01296{bottom:425.955000px;}
.y1d6_c01296{bottom:426.810000px;}
.y1dd_c01296{bottom:431.130000px;}
.y1d8_c01296{bottom:432.000000px;}
.y1d5_c01296{bottom:432.870000px;}
.y1d4_c01296{bottom:433.725000px;}
.y1d2_c01296{bottom:439.770000px;}
.y1d3_c01296{bottom:440.640000px;}
.y1d0_c01296{bottom:441.510000px;}
.y1d1_c01296{bottom:442.365000px;}
.y1cf_c01296{bottom:444.090000px;}
.y1cd_c01296{bottom:446.685000px;}
.y1cb_c01296{bottom:449.280000px;}
.y1ca_c01296{bottom:450.150000px;}
.y1ce_c01296{bottom:451.005000px;}
.y1cc_c01296{bottom:453.600000px;}
.y1c9_c01296{bottom:455.325000px;}
.y1c8_c01296{bottom:456.195000px;}
.y1c7_c01296{bottom:459.645000px;}
.y1c6_c01296{bottom:462.240000px;}
.y1c4_c01296{bottom:465.690000px;}
.y1c5_c01296{bottom:470.010000px;}
.y1c3_c01296{bottom:470.880000px;}
.y1c2_c01296{bottom:471.750000px;}
.y1c1_c01296{bottom:472.605000px;}
.y1bd_c01296{bottom:474.330000px;}
.y1bc_c01296{bottom:475.200000px;}
.y1be_c01296{bottom:476.070000px;}
.y1c0_c01296{bottom:488.160000px;}
.y1bb_c01296{bottom:489.030000px;}
.y1ba_c01296{bottom:489.885000px;}
.y1b7_c01296{bottom:492.480000px;}
.y1bf_c01296{bottom:493.350000px;}
.y1b8_c01296{bottom:494.205000px;}
.y1b6_c01296{bottom:495.075000px;}
.y1b9_c01296{bottom:495.930000px;}
.y1b2_c01296{bottom:499.395000px;}
.y1b4_c01296{bottom:501.120000px;}
.y1ac_c01296{bottom:502.845000px;}
.y1b3_c01296{bottom:503.715000px;}
.y1b1_c01296{bottom:504.570000px;}
.y1b0_c01296{bottom:505.440000px;}
.y1ab_c01296{bottom:506.310000px;}
.y1ae_c01296{bottom:507.165000px;}
.y1aa_c01296{bottom:508.035000px;}
.y1b5_c01296{bottom:508.890000px;}
.y1ad_c01296{bottom:509.760000px;}
.y1a9_c01296{bottom:512.355000px;}
.y1a8_c01296{bottom:513.210000px;}
.y1af_c01296{bottom:514.950000px;}
.y1a5_c01296{bottom:515.805000px;}
.y1a3_c01296{bottom:517.530000px;}
.y1a6_c01296{bottom:520.995000px;}
.y1a7_c01296{bottom:522.720000px;}
.y1a4_c01296{bottom:525.315000px;}
.y1a2_c01296{bottom:529.635000px;}
.y1a1_c01296{bottom:531.360000px;}
.y23e_c01296{bottom:532.230000px;}
.y1a0_c01296{bottom:533.085000px;}
.y23d_c01296{bottom:538.275000px;}
.y19e_c01296{bottom:539.130000px;}
.y19d_c01296{bottom:540.870000px;}
.y19f_c01296{bottom:543.450000px;}
.y199_c01296{bottom:550.365000px;}
.y198_c01296{bottom:552.090000px;}
.y19a_c01296{bottom:553.830000px;}
.y197_c01296{bottom:554.685000px;}
.y19b_c01296{bottom:555.555000px;}
.y194_c01296{bottom:558.150000px;}
.y19c_c01296{bottom:559.875000px;}
.y196_c01296{bottom:561.600000px;}
.y193_c01296{bottom:562.470000px;}
.y192_c01296{bottom:563.325000px;}
.y195_c01296{bottom:565.050000px;}
.y191_c01296{bottom:568.515000px;}
.y18d_c01296{bottom:572.835000px;}
.y18e_c01296{bottom:573.690000px;}
.y18b_c01296{bottom:575.430000px;}
.y190_c01296{bottom:576.285000px;}
.y18f_c01296{bottom:577.155000px;}
.y189_c01296{bottom:578.880000px;}
.y18c_c01296{bottom:579.750000px;}
.y186_c01296{bottom:581.475000px;}
.y18a_c01296{bottom:583.200000px;}
.y188_c01296{bottom:584.925000px;}
.y187_c01296{bottom:585.795000px;}
.y185_c01296{bottom:589.245000px;}
.y184_c01296{bottom:592.710000px;}
.y183_c01296{bottom:595.290000px;}
.y182_c01296{bottom:597.030000px;}
.y180_c01296{bottom:599.610000px;}
.y181_c01296{bottom:602.205000px;}
.y17e_c01296{bottom:604.800000px;}
.y17f_c01296{bottom:606.525000px;}
.y17d_c01296{bottom:610.845000px;}
.y17c_c01296{bottom:612.570000px;}
.y17a_c01296{bottom:615.165000px;}
.y179_c01296{bottom:618.630000px;}
.y17b_c01296{bottom:619.485000px;}
.y178_c01296{bottom:620.355000px;}
.y177_c01296{bottom:621.210000px;}
.y175_c01296{bottom:622.080000px;}
.y176_c01296{bottom:622.950000px;}
.y173_c01296{bottom:625.530000px;}
.y172_c01296{bottom:628.995000px;}
.y171_c01296{bottom:632.445000px;}
.y16e_c01296{bottom:635.910000px;}
.y16f_c01296{bottom:636.765000px;}
.y170_c01296{bottom:637.635000px;}
.y16d_c01296{bottom:640.230000px;}
.y174_c01296{bottom:641.955000px;}
.y16b_c01296{bottom:642.810000px;}
.y169_c01296{bottom:643.680000px;}
.y16a_c01296{bottom:644.550000px;}
.y16c_c01296{bottom:646.275000px;}
.y168_c01296{bottom:649.725000px;}
.y167_c01296{bottom:652.320000px;}
.y165_c01296{bottom:654.045000px;}
.y166_c01296{bottom:658.365000px;}
.y164_c01296{bottom:660.090000px;}
.y163_c01296{bottom:660.960000px;}
.y15f_c01296{bottom:662.685000px;}
.y160_c01296{bottom:665.280000px;}
.y161_c01296{bottom:666.150000px;}
.y15d_c01296{bottom:671.325000px;}
.y15e_c01296{bottom:674.790000px;}
.y162_c01296{bottom:675.645000px;}
.y15c_c01296{bottom:676.515000px;}
.y159_c01296{bottom:678.240000px;}
.y15a_c01296{bottom:679.110000px;}
.y15b_c01296{bottom:679.965000px;}
.y158_c01296{bottom:689.475000px;}
.y156_c01296{bottom:692.070000px;}
.y155_c01296{bottom:695.520000px;}
.y157_c01296{bottom:696.390000px;}
.y153_c01296{bottom:697.245000px;}
.y152_c01296{bottom:699.840000px;}
.y151_c01296{bottom:703.290000px;}
.y154_c01296{bottom:704.160000px;}
.y14f_c01296{bottom:710.205000px;}
.y14d_c01296{bottom:711.075000px;}
.y150_c01296{bottom:712.800000px;}
.y14e_c01296{bottom:713.670000px;}
.y14c_c01296{bottom:715.395000px;}
.y14b_c01296{bottom:717.120000px;}
.y14a_c01296{bottom:721.440000px;}
.y149_c01296{bottom:722.310000px;}
.y148_c01296{bottom:724.890000px;}
.y147_c01296{bottom:725.760000px;}
.y146_c01296{bottom:729.210000px;}
.y145_c01296{bottom:730.950000px;}
.y144_c01296{bottom:735.270000px;}
.y142_c01296{bottom:736.125000px;}
.y13f_c01296{bottom:743.040000px;}
.y140_c01296{bottom:744.765000px;}
.y143_c01296{bottom:745.635000px;}
.y141_c01296{bottom:748.230000px;}
.y13e_c01296{bottom:749.955000px;}
.y13b_c01296{bottom:751.680000px;}
.y13c_c01296{bottom:752.550000px;}
.y13d_c01296{bottom:755.130000px;}
.y13a_c01296{bottom:756.000000px;}
.y138_c01296{bottom:756.870000px;}
.y139_c01296{bottom:759.450000px;}
.y136_c01296{bottom:762.915000px;}
.y135_c01296{bottom:763.770000px;}
.y134_c01296{bottom:765.510000px;}
.y137_c01296{bottom:767.235000px;}
.y133_c01296{bottom:768.960000px;}
.y131_c01296{bottom:771.555000px;}
.y130_c01296{bottom:772.410000px;}
.y132_c01296{bottom:774.150000px;}
.y12f_c01296{bottom:778.470000px;}
.y12c_c01296{bottom:779.325000px;}
.y12e_c01296{bottom:780.195000px;}
.y12a_c01296{bottom:781.920000px;}
.y12b_c01296{bottom:783.645000px;}
.y129_c01296{bottom:784.515000px;}
.y128_c01296{bottom:786.240000px;}
.y12d_c01296{bottom:788.835000px;}
.y124_c01296{bottom:792.285000px;}
.y125_c01296{bottom:795.750000px;}
.y121_c01296{bottom:796.605000px;}
.y126_c01296{bottom:797.475000px;}
.y123_c01296{bottom:798.330000px;}
.y122_c01296{bottom:800.070000px;}
.y11f_c01296{bottom:800.925000px;}
.y11e_c01296{bottom:801.795000px;}
.y120_c01296{bottom:804.390000px;}
.y127_c01296{bottom:805.245000px;}
.y11d_c01296{bottom:806.970000px;}
.y11c_c01296{bottom:808.710000px;}
.y11a_c01296{bottom:809.565000px;}
.y11b_c01296{bottom:810.435000px;}
.y119_c01296{bottom:813.885000px;}
.y118_c01296{bottom:814.755000px;}
.y117_c01296{bottom:815.610000px;}
.y116_c01296{bottom:816.480000px;}
.y115_c01296{bottom:821.670000px;}
.y114_c01296{bottom:822.525000px;}
.y113_c01296{bottom:823.395000px;}
.y112_c01296{bottom:825.990000px;}
.y233_c01296{bottom:828.570000px;}
.y110_c01296{bottom:832.035000px;}
.y10f_c01296{bottom:832.890000px;}
.y111_c01296{bottom:836.355000px;}
.y10d_c01296{bottom:837.210000px;}
.y10e_c01296{bottom:839.805000px;}
.y10c_c01296{bottom:841.530000px;}
.y10a_c01296{bottom:843.270000px;}
.y10b_c01296{bottom:844.125000px;}
.y108_c01296{bottom:846.720000px;}
.y109_c01296{bottom:850.170000px;}
.y107_c01296{bottom:851.910000px;}
.y106_c01296{bottom:853.635000px;}
.y104_c01296{bottom:855.360000px;}
.y103_c01296{bottom:857.085000px;}
.y105_c01296{bottom:857.955000px;}
.y100_c01296{bottom:858.810000px;}
.yfd_c01296{bottom:859.680000px;}
.y102_c01296{bottom:860.550000px;}
.yff_c01296{bottom:861.405000px;}
.y101_c01296{bottom:863.130000px;}
.yfe_c01296{bottom:864.000000px;}
.yfb_c01296{bottom:865.725000px;}
.yf8_c01296{bottom:867.450000px;}
.yfa_c01296{bottom:868.320000px;}
.yfc_c01296{bottom:870.045000px;}
.yf5_c01296{bottom:870.915000px;}
.yf9_c01296{bottom:871.770000px;}
.yf3_c01296{bottom:873.510000px;}
.yf4_c01296{bottom:874.365000px;}
.yf1_c01296{bottom:875.235000px;}
.yf2_c01296{bottom:876.090000px;}
.yf7_c01296{bottom:877.830000px;}
.yf6_c01296{bottom:879.555000px;}
.yf0_c01296{bottom:880.410000px;}
.yef_c01296{bottom:881.280000px;}
.yed_c01296{bottom:882.150000px;}
.yee_c01296{bottom:883.005000px;}
.yeb_c01296{bottom:885.600000px;}
.ye9_c01296{bottom:886.470000px;}
.yec_c01296{bottom:888.195000px;}
.yea_c01296{bottom:889.920000px;}
.ye6_c01296{bottom:891.645000px;}
.ye8_c01296{bottom:893.370000px;}
.ye5_c01296{bottom:896.835000px;}
.ye7_c01296{bottom:899.430000px;}
.ye4_c01296{bottom:900.285000px;}
.ye3_c01296{bottom:901.155000px;}
.ye2_c01296{bottom:903.750000px;}
.yde_c01296{bottom:904.605000px;}
.ye1_c01296{bottom:905.475000px;}
.ydd_c01296{bottom:909.795000px;}
.ydf_c01296{bottom:910.650000px;}
.ye0_c01296{bottom:911.520000px;}
.yda_c01296{bottom:914.115000px;}
.yd9_c01296{bottom:916.710000px;}
.ydc_c01296{bottom:917.565000px;}
.ydb_c01296{bottom:918.435000px;}
.yd7_c01296{bottom:921.885000px;}
.yd6_c01296{bottom:923.610000px;}
.yd8_c01296{bottom:924.480000px;}
.yd5_c01296{bottom:925.350000px;}
.yd4_c01296{bottom:933.120000px;}
.yd0_c01296{bottom:933.990000px;}
.yd3_c01296{bottom:934.845000px;}
.yce_c01296{bottom:935.715000px;}
.ycf_c01296{bottom:938.310000px;}
.ycd_c01296{bottom:939.165000px;}
.ycc_c01296{bottom:940.035000px;}
.yd1_c01296{bottom:941.760000px;}
.ycb_c01296{bottom:942.630000px;}
.yca_c01296{bottom:944.355000px;}
.yd2_c01296{bottom:945.210000px;}
.yc9_c01296{bottom:946.950000px;}
.yc8_c01296{bottom:951.270000px;}
.yc6_c01296{bottom:952.995000px;}
.yc4_c01296{bottom:957.315000px;}
.yc2_c01296{bottom:959.040000px;}
.yc0_c01296{bottom:959.910000px;}
.yc5_c01296{bottom:960.765000px;}
.ybe_c01296{bottom:962.490000px;}
.yc3_c01296{bottom:963.360000px;}
.yc1_c01296{bottom:964.230000px;}
.ybb_c01296{bottom:965.955000px;}
.yc7_c01296{bottom:966.810000px;}
.yba_c01296{bottom:968.550000px;}
.ybd_c01296{bottom:970.275000px;}
.yb7_c01296{bottom:975.450000px;}
.ybc_c01296{bottom:976.320000px;}
.ybf_c01296{bottom:977.190000px;}
.yb6_c01296{bottom:978.045000px;}
.yb9_c01296{bottom:978.915000px;}
.yb8_c01296{bottom:980.640000px;}
.yb4_c01296{bottom:982.365000px;}
.yb2_c01296{bottom:983.235000px;}
.yb1_c01296{bottom:984.960000px;}
.yb5_c01296{bottom:987.555000px;}
.yb3_c01296{bottom:988.410000px;}
.yae_c01296{bottom:991.875000px;}
.yb0_c01296{bottom:997.920000px;}
.yaf_c01296{bottom:998.790000px;}
.yac_c01296{bottom:999.645000px;}
.yab_c01296{bottom:1000.515000px;}
.ya9_c01296{bottom:1002.240000px;}
.yad_c01296{bottom:1003.110000px;}
.yaa_c01296{bottom:1007.430000px;}
.ya8_c01296{bottom:1010.880000px;}
.ya7_c01296{bottom:1011.750000px;}
.ya4_c01296{bottom:1015.200000px;}
.ya5_c01296{bottom:1017.795000px;}
.ya2_c01296{bottom:1018.650000px;}
.ya3_c01296{bottom:1019.520000px;}
.ya6_c01296{bottom:1020.390000px;}
.ya0_c01296{bottom:1022.115000px;}
.y9c_c01296{bottom:1022.970000px;}
.y9d_c01296{bottom:1025.565000px;}
.y9f_c01296{bottom:1028.160000px;}
.ya1_c01296{bottom:1029.030000px;}
.y9e_c01296{bottom:1032.480000px;}
.y9a_c01296{bottom:1035.075000px;}
.y9b_c01296{bottom:1035.930000px;}
.y99_c01296{bottom:1038.525000px;}
.y98_c01296{bottom:1041.120000px;}
.y96_c01296{bottom:1042.845000px;}
.y97_c01296{bottom:1044.570000px;}
.y93_c01296{bottom:1045.440000px;}
.y95_c01296{bottom:1051.485000px;}
.y92_c01296{bottom:1054.950000px;}
.y90_c01296{bottom:1062.720000px;}
.y8f_c01296{bottom:1063.590000px;}
.y8e_c01296{bottom:1064.445000px;}
.y8d_c01296{bottom:1065.315000px;}
.y94_c01296{bottom:1066.170000px;}
.y91_c01296{bottom:1067.040000px;}
.y8c_c01296{bottom:1072.230000px;}
.y8b_c01296{bottom:1073.085000px;}
.y8a_c01296{bottom:1073.955000px;}
.y89_c01296{bottom:1075.680000px;}
.y85_c01296{bottom:1077.405000px;}
.y84_c01296{bottom:1078.275000px;}
.y86_c01296{bottom:1080.000000px;}
.y83_c01296{bottom:1080.870000px;}
.y88_c01296{bottom:1089.510000px;}
.y87_c01296{bottom:1090.365000px;}
.y81_c01296{bottom:1095.555000px;}
.y82_c01296{bottom:1096.410000px;}
.y80_c01296{bottom:1097.280000px;}
.y7d_c01296{bottom:1099.005000px;}
.y7e_c01296{bottom:1100.730000px;}
.y7f_c01296{bottom:1103.325000px;}
.y7c_c01296{bottom:1115.430000px;}
.y7a_c01296{bottom:1118.880000px;}
.y7b_c01296{bottom:1122.330000px;}
.y77_c01296{bottom:1132.710000px;}
.y76_c01296{bottom:1136.160000px;}
.y79_c01296{bottom:1141.350000px;}
.y75_c01296{bottom:1142.205000px;}
.y72_c01296{bottom:1143.075000px;}
.y78_c01296{bottom:1143.930000px;}
.y6f_c01296{bottom:1144.800000px;}
.y6e_c01296{bottom:1146.525000px;}
.y71_c01296{bottom:1148.250000px;}
.y70_c01296{bottom:1149.120000px;}
.y74_c01296{bottom:1149.990000px;}
.y6d_c01296{bottom:1153.440000px;}
.y73_c01296{bottom:1154.310000px;}
.y6c_c01296{bottom:1156.890000px;}
.y6b_c01296{bottom:1159.485000px;}
.y6a_c01296{bottom:1160.355000px;}
.y69_c01296{bottom:1168.995000px;}
.y68_c01296{bottom:1173.315000px;}
.y67_c01296{bottom:1175.040000px;}
.y65_c01296{bottom:1179.360000px;}
.y66_c01296{bottom:1180.230000px;}
.y64_c01296{bottom:1182.810000px;}
.y62_c01296{bottom:1185.405000px;}
.y63_c01296{bottom:1187.130000px;}
.y60_c01296{bottom:1188.000000px;}
.y61_c01296{bottom:1190.595000px;}
.y5e_c01296{bottom:1194.045000px;}
.y5f_c01296{bottom:1195.770000px;}
.y5d_c01296{bottom:1196.640000px;}
.y5c_c01296{bottom:1201.830000px;}
.y5a_c01296{bottom:1204.410000px;}
.y59_c01296{bottom:1206.150000px;}
.y58_c01296{bottom:1207.875000px;}
.y5b_c01296{bottom:1208.730000px;}
.y57_c01296{bottom:1213.050000px;}
.y56_c01296{bottom:1221.690000px;}
.y54_c01296{bottom:1224.285000px;}
.y52_c01296{bottom:1225.155000px;}
.y55_c01296{bottom:1226.010000px;}
.y50_c01296{bottom:1226.880000px;}
.y4f_c01296{bottom:1227.750000px;}
.y53_c01296{bottom:1228.605000px;}
.y51_c01296{bottom:1229.475000px;}
.y23c_c01296{bottom:1231.200000px;}
.y4e_c01296{bottom:1239.840000px;}
.y4d_c01296{bottom:1241.565000px;}
.y4b_c01296{bottom:1245.885000px;}
.y4a_c01296{bottom:1246.755000px;}
.y49_c01296{bottom:1247.610000px;}
.y4c_c01296{bottom:1249.350000px;}
.y47_c01296{bottom:1251.075000px;}
.y48_c01296{bottom:1251.930000px;}
.y238_c01296{bottom:1253.670000px;}
.y239_c01296{bottom:1255.395000px;}
.y43_c01296{bottom:1258.845000px;}
.y44_c01296{bottom:1259.715000px;}
.y46_c01296{bottom:1262.310000px;}
.y3f_c01296{bottom:1263.165000px;}
.y3d_c01296{bottom:1264.890000px;}
.y45_c01296{bottom:1265.760000px;}
.y42_c01296{bottom:1266.630000px;}
.y40_c01296{bottom:1268.355000px;}
.y3e_c01296{bottom:1270.080000px;}
.y41_c01296{bottom:1270.950000px;}
.y3c_c01296{bottom:1274.400000px;}
.y237_c01296{bottom:1275.270000px;}
.y39_c01296{bottom:1277.850000px;}
.y37_c01296{bottom:1278.720000px;}
.y3a_c01296{bottom:1279.590000px;}
.y38_c01296{bottom:1280.445000px;}
.y35_c01296{bottom:1281.315000px;}
.y3b_c01296{bottom:1282.170000px;}
.y36_c01296{bottom:1284.765000px;}
.y34_c01296{bottom:1285.635000px;}
.y31_c01296{bottom:1287.360000px;}
.y2f_c01296{bottom:1289.085000px;}
.y33_c01296{bottom:1290.810000px;}
.y32_c01296{bottom:1291.680000px;}
.y30_c01296{bottom:1293.405000px;}
.y2e_c01296{bottom:1296.000000px;}
.y2b_c01296{bottom:1300.320000px;}
.y2c_c01296{bottom:1302.915000px;}
.y29_c01296{bottom:1305.510000px;}
.y2d_c01296{bottom:1306.365000px;}
.y28_c01296{bottom:1307.235000px;}
.y2a_c01296{bottom:1309.830000px;}
.y27_c01296{bottom:1310.685000px;}
.y25_c01296{bottom:1313.280000px;}
.y23_c01296{bottom:1314.150000px;}
.y26_c01296{bottom:1315.875000px;}
.y22_c01296{bottom:1317.600000px;}
.y21_c01296{bottom:1319.325000px;}
.y20_c01296{bottom:1321.920000px;}
.y1d_c01296{bottom:1322.790000px;}
.y23a_c01296{bottom:1323.645000px;}
.y24_c01296{bottom:1324.515000px;}
.y23b_c01296{bottom:1325.370000px;}
.y1f_c01296{bottom:1327.110000px;}
.y1b_c01296{bottom:1327.965000px;}
.y1c_c01296{bottom:1329.690000px;}
.y1e_c01296{bottom:1330.560000px;}
.y19_c01296{bottom:1335.750000px;}
.y1a_c01296{bottom:1336.605000px;}
.y18_c01296{bottom:1337.475000px;}
.y17_c01296{bottom:1338.330000px;}
.y16_c01296{bottom:1344.390000px;}
.y13_c01296{bottom:1345.245000px;}
.y12_c01296{bottom:1346.115000px;}
.y15_c01296{bottom:1346.970000px;}
.y11_c01296{bottom:1347.840000px;}
.y10_c01296{bottom:1349.565000px;}
.y14_c01296{bottom:1350.435000px;}
.ye_c01296{bottom:1354.755000px;}
.yf_c01296{bottom:1355.610000px;}
.yd_c01296{bottom:1362.525000px;}
.y236_c01296{bottom:1365.120000px;}
.yb_c01296{bottom:1369.440000px;}
.yc_c01296{bottom:1372.890000px;}
.y8_c01296{bottom:1375.485000px;}
.y9_c01296{bottom:1377.210000px;}
.ya_c01296{bottom:1378.080000px;}
.y7_c01296{bottom:1403.130000px;}
.y232_c01296{bottom:1413.510000px;}
.y231_c01296{bottom:1414.365000px;}
.y6_c01296{bottom:1417.830000px;}
.y5_c01296{bottom:1418.685000px;}
.y4_c01296{bottom:1427.325000px;}
.y2_c01296{bottom:1430.790000px;}
.y3_c01296{bottom:1438.560000px;}
.y1_c01296{bottom:1448.925000px;}
.h4_c01296{height:3.110063px;}
.h7_c01296{height:5.399414px;}
.h5_c01296{height:6.209326px;}
.h8_c01296{height:9.340986px;}
.h22_c01296{height:12.418652px;}
.ha_c01296{height:15.550313px;}
.h20_c01296{height:18.681973px;}
.h28_c01296{height:19.378652px;}
.h1a_c01296{height:21.759639px;}
.h26_c01296{height:24.891299px;}
.h1e_c01296{height:27.968965px;}
.h16_c01296{height:31.100625px;}
.h13_c01296{height:34.232285px;}
.h1b_c01296{height:37.309951px;}
.h2_c01296{height:40.441611px;}
.h23_c01296{height:43.519277px;}
.h6_c01296{height:46.650937px;}
.h25_c01296{height:49.091924px;}
.h3_c01296{height:49.782598px;}
.h15_c01296{height:52.860264px;}
.h18_c01296{height:55.991924px;}
.h1f_c01296{height:59.069590px;}
.hf_c01296{height:62.201250px;}
.h19_c01296{height:65.332910px;}
.h12_c01296{height:68.410576px;}
.h1d_c01296{height:71.542236px;}
.h11_c01296{height:74.619902px;}
.he_c01296{height:77.751563px;}
.h17_c01296{height:80.883223px;}
.hc_c01296{height:83.960889px;}
.h10_c01296{height:87.092549px;}
.h21_c01296{height:90.170215px;}
.h14_c01296{height:93.301875px;}
.h1c_c01296{height:96.433535px;}
.h24_c01296{height:99.511201px;}
.h9_c01296{height:105.720527px;}
.hd_c01296{height:146.162139px;}
.hb_c01296{height:155.503125px;}
.h27_c01296{height:186.603750px;}
.h1_c01296{height:1513.500000px;}
.h0_c01296{height:1513.725000px;}
.w1_c01296{width:1076.250000px;}
.w0_c01296{width:1076.550000px;}
.x0_c01296{left:0.000000px;}
.x108_c01296{left:153.795000px;}
.xed_c01296{left:155.520000px;}
.xee_c01296{left:159.840000px;}
.xa8_c01296{left:165.030000px;}
.xad_c01296{left:170.205000px;}
.x92_c01296{left:171.930000px;}
.xa9_c01296{left:174.525000px;}
.xb6_c01296{left:179.715000px;}
.x9b_c01296{left:183.165000px;}
.x114_c01296{left:184.890000px;}
.xdc_c01296{left:189.210000px;}
.x6d_c01296{left:191.805000px;}
.x10f_c01296{left:193.530000px;}
.xa1_c01296{left:195.270000px;}
.x61_c01296{left:197.850000px;}
.xb1_c01296{left:199.590000px;}
.x103_c01296{left:201.315000px;}
.xeb_c01296{left:203.040000px;}
.xae_c01296{left:204.765000px;}
.x7_c01296{left:206.490000px;}
.xd0_c01296{left:208.230000px;}
.xaa_c01296{left:209.955000px;}
.xc2_c01296{left:211.680000px;}
.x76_c01296{left:213.405000px;}
.x6e_c01296{left:216.000000px;}
.x35_c01296{left:218.595000px;}
.x11_c01296{left:221.190000px;}
.x8_c01296{left:223.770000px;}
.x77_c01296{left:225.510000px;}
.xbd_c01296{left:228.960000px;}
.x56_c01296{left:231.555000px;}
.x71_c01296{left:234.150000px;}
.xd1_c01296{left:236.730000px;}
.x86_c01296{left:238.470000px;}
.x1f_c01296{left:241.920000px;}
.x106_c01296{left:244.515000px;}
.x42_c01296{left:247.110000px;}
.xaf_c01296{left:248.835000px;}
.x4a_c01296{left:252.285000px;}
.x93_c01296{left:254.880000px;}
.xf1_c01296{left:257.475000px;}
.xc3_c01296{left:261.795000px;}
.x68_c01296{left:264.390000px;}
.x10d_c01296{left:266.970000px;}
.xc9_c01296{left:268.710000px;}
.x78_c01296{left:270.435000px;}
.x62_c01296{left:272.160000px;}
.x87_c01296{left:273.885000px;}
.x12_c01296{left:276.480000px;}
.xef_c01296{left:279.075000px;}
.x20_c01296{left:283.395000px;}
.x9d_c01296{left:285.990000px;}
.x6f_c01296{left:291.165000px;}
.x80_c01296{left:292.890000px;}
.xc4_c01296{left:294.630000px;}
.xe5_c01296{left:297.210000px;}
.x94_c01296{left:298.950000px;}
.x36_c01296{left:301.530000px;}
.x88_c01296{left:304.125000px;}
.x13_c01296{left:305.850000px;}
.xa2_c01296{left:307.590000px;}
.xd7_c01296{left:310.170000px;}
.x57_c01296{left:311.910000px;}
.xce_c01296{left:313.635000px;}
.x9_c01296{left:317.085000px;}
.x37_c01296{left:321.405000px;}
.x100_c01296{left:323.130000px;}
.x4b_c01296{left:324.870000px;}
.x21_c01296{left:330.915000px;}
.x8d_c01296{left:332.640000px;}
.xa_c01296{left:335.235000px;}
.xbe_c01296{left:336.960000px;}
.xff_c01296{left:339.555000px;}
.xb2_c01296{left:341.280000px;}
.x58_c01296{left:343.005000px;}
.xf5_c01296{left:347.325000px;}
.xdd_c01296{left:349.050000px;}
.x14_c01296{left:350.790000px;}
.xb7_c01296{left:352.515000px;}
.x95_c01296{left:355.110000px;}
.xb_c01296{left:358.560000px;}
.xb3_c01296{left:367.200000px;}
.xb0_c01296{left:368.925000px;}
.xec_c01296{left:370.650000px;}
.x63_c01296{left:372.390000px;}
.xf4_c01296{left:374.970000px;}
.x69_c01296{left:376.710000px;}
.xca_c01296{left:379.290000px;}
.x9e_c01296{left:381.030000px;}
.x4c_c01296{left:382.755000px;}
.x113_c01296{left:385.350000px;}
.x22_c01296{left:387.075000px;}
.xcb_c01296{left:389.670000px;}
.x8e_c01296{left:391.395000px;}
.xe3_c01296{left:393.120000px;}
.x59_c01296{left:396.570000px;}
.x64_c01296{left:398.310000px;}
.x1_c01296{left:401.760000px;}
.x2f_c01296{left:404.355000px;}
.x4_c01296{left:406.950000px;}
.xb8_c01296{left:409.530000px;}
.x38_c01296{left:411.270000px;}
.x15_c01296{left:412.995000px;}
.xab_c01296{left:415.590000px;}
.x5_c01296{left:418.170000px;}
.x43_c01296{left:419.910000px;}
.x2_c01296{left:425.085000px;}
.x23_c01296{left:427.680000px;}
.x5a_c01296{left:430.275000px;}
.xbf_c01296{left:433.725000px;}
.x72_c01296{left:435.450000px;}
.x44_c01296{left:437.190000px;}
.x89_c01296{left:439.770000px;}
.x109_c01296{left:441.510000px;}
.x101_c01296{left:444.090000px;}
.x39_c01296{left:447.555000px;}
.xe0_c01296{left:449.280000px;}
.x6_c01296{left:451.005000px;}
.x3_c01296{left:452.730000px;}
.x6a_c01296{left:457.920000px;}
.x73_c01296{left:459.645000px;}
.x16_c01296{left:463.965000px;}
.x96_c01296{left:468.285000px;}
.xc5_c01296{left:471.750000px;}
.x10e_c01296{left:473.475000px;}
.x4d_c01296{left:475.200000px;}
.x45_c01296{left:478.650000px;}
.x24_c01296{left:483.840000px;}
.x97_c01296{left:485.565000px;}
.xf6_c01296{left:487.290000px;}
.x65_c01296{left:489.030000px;}
.x25_c01296{left:491.610000px;}
.xc_c01296{left:495.075000px;}
.xe6_c01296{left:498.525000px;}
.x4e_c01296{left:500.250450px;}
.xd2_c01296{left:501.990000px;}
.xa3_c01296{left:503.715000px;}
.x4f_c01296{left:507.165000px;}
.xd8_c01296{left:509.760000px;}
.x30_c01296{left:512.355000px;}
.xfa_c01296{left:514.080000px;}
.x50_c01296{left:515.805000px;}
.x104_c01296{left:519.270000px;}
.x5b_c01296{left:520.995000px;}
.x46_c01296{left:522.720000px;}
.xa4_c01296{left:527.910000px;}
.x47_c01296{left:529.635000px;}
.xfb_c01296{left:532.230000px;}
.xd_c01296{left:533.955000px;}
.x17_c01296{left:535.680000px;}
.x7b_c01296{left:537.405000px;}
.xd9_c01296{left:540.000000px;}
.xcf_c01296{left:542.595000px;}
.xc6_c01296{left:544.320000px;}
.x98_c01296{left:546.045000px;}
.x8a_c01296{left:548.640000px;}
.x18_c01296{left:551.235000px;}
.x26_c01296{left:553.830000px;}
.x10a_c01296{left:556.410000px;}
.x5c_c01296{left:559.005000px;}
.xd3_c01296{left:560.730000px;}
.x8f_c01296{left:565.050000px;}
.x51_c01296{left:570.240000px;}
.x5d_c01296{left:572.835000px;}
.x19_c01296{left:574.560000px;}
.xfc_c01296{left:577.155000px;}
.x27_c01296{left:578.880000px;}
.xf0_c01296{left:581.475000px;}
.xc7_c01296{left:583.200000px;}
.xda_c01296{left:584.925000px;}
.x99_c01296{left:586.650000px;}
.x102_c01296{left:590.970000px;}
.x5e_c01296{left:592.710000px;}
.xa5_c01296{left:595.290000px;}
.x1a_c01296{left:597.030000px;}
.x110_c01296{left:600.480000px;}
.x81_c01296{left:606.525000px;}
.x107_c01296{left:608.250000px;}
.x111_c01296{left:609.990000px;}
.x6b_c01296{left:611.715000px;}
.x3a_c01296{left:615.165000px;}
.xc0_c01296{left:617.760000px;}
.xcc_c01296{left:620.355000px;}
.x28_c01296{left:622.950000px;}
.xe8_c01296{left:625.530000px;}
.x8b_c01296{left:629.850000px;}
.xb9_c01296{left:632.445000px;}
.xde_c01296{left:634.170000px;}
.x7c_c01296{left:636.765000px;}
.x3b_c01296{left:639.360000px;}
.x1b_c01296{left:641.955000px;}
.x31_c01296{left:643.680000px;}
.xf7_c01296{left:645.405000px;}
.xa6_c01296{left:647.130000px;}
.x70_c01296{left:651.450000px;}
.x9c_c01296{left:654.045000px;}
.x5f_c01296{left:656.640000px;}
.xba_c01296{left:658.365000px;}
.xe_c01296{left:660.960000px;}
.xc1_c01296{left:663.555000px;}
.x29_c01296{left:666.150000px;}
.xf2_c01296{left:667.875000px;}
.x90_c01296{left:669.600000px;}
.x7d_c01296{left:672.195000px;}
.x82_c01296{left:675.645000px;}
.xb4_c01296{left:678.240000px;}
.x112_c01296{left:679.965000px;}
.x52_c01296{left:681.690000px;}
.xe1_c01296{left:684.285000px;}
.x2a_c01296{left:687.750000px;}
.xe7_c01296{left:692.070000px;}
.x79_c01296{left:693.795000px;}
.x60_c01296{left:697.245000px;}
.x3c_c01296{left:702.435000px;}
.x32_c01296{left:705.030000px;}
.x74_c01296{left:707.610000px;}
.x7e_c01296{left:711.930000px;}
.x48_c01296{left:716.250000px;}
.xe9_c01296{left:718.845000px;}
.xf_c01296{left:725.760000px;}
.xe4_c01296{left:727.485000px;}
.x33_c01296{left:729.210000px;}
.x9f_c01296{left:730.950000px;}
.xdb_c01296{left:732.675000px;}
.x91_c01296{left:735.270000px;}
.x6c_c01296{left:739.590000px;}
.x1c_c01296{left:743.910000px;}
.xf8_c01296{left:745.635000px;}
.xcd_c01296{left:749.085000px;}
.xd4_c01296{left:750.810000px;}
.x83_c01296{left:752.550000px;}
.x53_c01296{left:754.275000px;}
.x66_c01296{left:757.725000px;}
.x2b_c01296{left:762.045000px;}
.x49_c01296{left:763.770000px;}
.xa0_c01296{left:766.365000px;}
.x2c_c01296{left:768.090000px;}
.x34_c01296{left:769.830000px;}
.x10b_c01296{left:772.410000px;}
.x7f_c01296{left:774.150000px;}
.xf3_c01296{left:775.875000px;}
.x10_c01296{left:778.470000px;}
.x8c_c01296{left:780.195000px;}
.xa7_c01296{left:782.790000px;}
.x2d_c01296{left:785.370000px;}
.x3d_c01296{left:788.835000px;}
.x10c_c01296{left:793.155000px;}
.x54_c01296{left:794.880000px;}
.x7a_c01296{left:796.605000px;}
.xac_c01296{left:799.200000px;}
.x1d_c01296{left:801.795000px;}
.xbb_c01296{left:803.520000px;}
.xfd_c01296{left:806.115000px;}
.xdf_c01296{left:807.840000px;}
.x1e_c01296{left:809.565000px;}
.x84_c01296{left:812.160000px;}
.x9a_c01296{left:813.885000px;}
.xd5_c01296{left:816.480000px;}
.x105_c01296{left:819.930000px;}
.xea_c01296{left:822.525000px;}
.xc8_c01296{left:825.990000px;}
.x85_c01296{left:829.440000px;}
.x55_c01296{left:834.630000px;}
.xfe_c01296{left:837.210000px;}
.xd6_c01296{left:844.125000px;}
.x2e_c01296{left:846.720000px;}
.xe2_c01296{left:851.910000px;}
.x3e_c01296{left:854.490000px;}
.xb5_c01296{left:857.955000px;}
.xbc_c01296{left:859.680000px;}
.x3f_c01296{left:861.405000px;}
.xf9_c01296{left:864.000000px;}
.x75_c01296{left:866.595000px;}
.x67_c01296{left:870.045000px;}
.x40_c01296{left:872.640000px;}
.x41_c01296{left:878.685000px;}
.x116_c01296{left:887.325000px;}
.x115_c01296{left:889.920000px;}
.x123_c01296{left:908.070000px;}
.x122_c01296{left:910.650000px;}
.x124_c01296{left:918.435000px;}
.x125_c01296{left:940.890000px;}
.x126_c01296{left:952.995000px;}
.x118_c01296{left:970.275000px;}
.x119_c01296{left:986.685000px;}
.x121_c01296{left:1015.200000px;}
.x11f_c01296{left:1020.390000px;}
.x120_c01296{left:1024.710000px;}
.x117_c01296{left:1027.290000px;}
.x11a_c01296{left:1035.075000px;}
.x11c_c01296{left:1041.120000px;}
.x11b_c01296{left:1046.310000px;}
.x11e_c01296{left:1054.080000px;}
.x11d_c01296{left:1067.910000px;}
@media print{
.v1_c01296{vertical-align:-6.133333pt;}
.v0_c01296{vertical-align:0.000000pt;}
.v2_c01296{vertical-align:6.186667pt;}
.ls1_c01296{letter-spacing:0.000000pt;}
.ls0_c01296{letter-spacing:24.272640pt;}
.ws0_c01296{word-spacing:-12.718293pt;}
.ws1_c01296{word-spacing:0.000000pt;}
.fs2_c01296{font-size:3.072000pt;}
.fs5_c01296{font-size:5.333333pt;}
.fs3_c01296{font-size:6.133333pt;}
.fs6_c01296{font-size:9.226667pt;}
.fs20_c01296{font-size:12.266667pt;}
.fs8_c01296{font-size:15.360000pt;}
.fs1e_c01296{font-size:18.453333pt;}
.fs18_c01296{font-size:21.493333pt;}
.fs23_c01296{font-size:24.586667pt;}
.fs1c_c01296{font-size:27.626667pt;}
.fs14_c01296{font-size:30.720000pt;}
.fs11_c01296{font-size:33.813333pt;}
.fs19_c01296{font-size:36.853333pt;}
.fs0_c01296{font-size:39.946667pt;}
.fs21_c01296{font-size:42.986667pt;}
.fs4_c01296{font-size:46.080000pt;}
.fs1_c01296{font-size:49.173333pt;}
.fs13_c01296{font-size:52.213333pt;}
.fs16_c01296{font-size:55.306667pt;}
.fs1d_c01296{font-size:58.346667pt;}
.fsd_c01296{font-size:61.440000pt;}
.fs17_c01296{font-size:64.533333pt;}
.fs10_c01296{font-size:67.573333pt;}
.fs1b_c01296{font-size:70.666667pt;}
.fsf_c01296{font-size:73.706667pt;}
.fsc_c01296{font-size:76.800000pt;}
.fs15_c01296{font-size:79.893333pt;}
.fsa_c01296{font-size:82.933333pt;}
.fse_c01296{font-size:86.026667pt;}
.fs1f_c01296{font-size:89.066667pt;}
.fs12_c01296{font-size:92.160000pt;}
.fs1a_c01296{font-size:95.253333pt;}
.fs22_c01296{font-size:98.293333pt;}
.fs7_c01296{font-size:104.426667pt;}
.fsb_c01296{font-size:144.373333pt;}
.fs9_c01296{font-size:153.600000pt;}
.fs24_c01296{font-size:184.320000pt;}
.y0_c01296{bottom:0.000000pt;}
.y230_c01296{bottom:185.093333pt;}
.y22e_c01296{bottom:185.853333pt;}
.y22f_c01296{bottom:191.226667pt;}
.y22c_c01296{bottom:202.746667pt;}
.y22a_c01296{bottom:203.520000pt;}
.y22b_c01296{bottom:205.826667pt;}
.y228_c01296{bottom:206.586667pt;}
.y22d_c01296{bottom:207.360000pt;}
.y229_c01296{bottom:208.893333pt;}
.y227_c01296{bottom:209.666667pt;}
.y225_c01296{bottom:223.493333pt;}
.y223_c01296{bottom:224.253333pt;}
.y226_c01296{bottom:225.026667pt;}
.y222_c01296{bottom:227.333333pt;}
.y224_c01296{bottom:228.093333pt;}
.y221_c01296{bottom:228.866667pt;}
.y220_c01296{bottom:231.933333pt;}
.y21e_c01296{bottom:242.693333pt;}
.y21d_c01296{bottom:244.226667pt;}
.y21c_c01296{bottom:246.533333pt;}
.y21b_c01296{bottom:247.293333pt;}
.y21a_c01296{bottom:248.066667pt;}
.y21f_c01296{bottom:248.826667pt;}
.y219_c01296{bottom:251.133333pt;}
.y218_c01296{bottom:253.440000pt;}
.y217_c01296{bottom:254.213333pt;}
.y215_c01296{bottom:260.346667pt;}
.y216_c01296{bottom:261.893333pt;}
.y212_c01296{bottom:263.426667pt;}
.y213_c01296{bottom:264.186667pt;}
.y214_c01296{bottom:264.960000pt;}
.y210_c01296{bottom:265.733333pt;}
.y20f_c01296{bottom:267.266667pt;}
.y20e_c01296{bottom:268.800000pt;}
.y20d_c01296{bottom:269.573333pt;}
.y20c_c01296{bottom:271.106667pt;}
.y20b_c01296{bottom:271.866667pt;}
.y211_c01296{bottom:273.413333pt;}
.y20a_c01296{bottom:274.946667pt;}
.y209_c01296{bottom:275.706667pt;}
.y207_c01296{bottom:288.773333pt;}
.y206_c01296{bottom:289.533333pt;}
.y204_c01296{bottom:291.840000pt;}
.y202_c01296{bottom:294.146667pt;}
.y203_c01296{bottom:294.906667pt;}
.y205_c01296{bottom:295.680000pt;}
.y201_c01296{bottom:296.453333pt;}
.y208_c01296{bottom:297.986667pt;}
.y1ff_c01296{bottom:298.746667pt;}
.y200_c01296{bottom:301.053333pt;}
.y1fe_c01296{bottom:304.133333pt;}
.y1fd_c01296{bottom:304.893333pt;}
.y1f9_c01296{bottom:307.973333pt;}
.y1fc_c01296{bottom:311.813333pt;}
.y1f8_c01296{bottom:312.573333pt;}
.y1fb_c01296{bottom:314.880000pt;}
.y1fa_c01296{bottom:321.026667pt;}
.y235_c01296{bottom:322.560000pt;}
.y1f7_c01296{bottom:323.333333pt;}
.y234_c01296{bottom:324.093333pt;}
.y1f6_c01296{bottom:324.866667pt;}
.y1f5_c01296{bottom:327.933333pt;}
.y1f3_c01296{bottom:328.706667pt;}
.y1f2_c01296{bottom:329.466667pt;}
.y1f0_c01296{bottom:332.546667pt;}
.y1f4_c01296{bottom:334.080000pt;}
.y1f1_c01296{bottom:335.613333pt;}
.y1ef_c01296{bottom:337.146667pt;}
.y1ed_c01296{bottom:343.293333pt;}
.y1eb_c01296{bottom:344.066667pt;}
.y1ea_c01296{bottom:346.373333pt;}
.y1ee_c01296{bottom:348.666667pt;}
.y1e9_c01296{bottom:349.440000pt;}
.y1e5_c01296{bottom:350.213333pt;}
.y1e7_c01296{bottom:351.746667pt;}
.y1e4_c01296{bottom:352.506667pt;}
.y1e2_c01296{bottom:353.280000pt;}
.y1e8_c01296{bottom:354.813333pt;}
.y1e6_c01296{bottom:355.586667pt;}
.y1ec_c01296{bottom:356.346667pt;}
.y1e3_c01296{bottom:357.120000pt;}
.y1df_c01296{bottom:363.266667pt;}
.y1e1_c01296{bottom:364.800000pt;}
.y1e0_c01296{bottom:365.573333pt;}
.y1dc_c01296{bottom:370.173333pt;}
.y1da_c01296{bottom:370.946667pt;}
.y1de_c01296{bottom:371.706667pt;}
.y1d9_c01296{bottom:372.480000pt;}
.y1db_c01296{bottom:375.546667pt;}
.y1d7_c01296{bottom:378.626667pt;}
.y1d6_c01296{bottom:379.386667pt;}
.y1dd_c01296{bottom:383.226667pt;}
.y1d8_c01296{bottom:384.000000pt;}
.y1d5_c01296{bottom:384.773333pt;}
.y1d4_c01296{bottom:385.533333pt;}
.y1d2_c01296{bottom:390.906667pt;}
.y1d3_c01296{bottom:391.680000pt;}
.y1d0_c01296{bottom:392.453333pt;}
.y1d1_c01296{bottom:393.213333pt;}
.y1cf_c01296{bottom:394.746667pt;}
.y1cd_c01296{bottom:397.053333pt;}
.y1cb_c01296{bottom:399.360000pt;}
.y1ca_c01296{bottom:400.133333pt;}
.y1ce_c01296{bottom:400.893333pt;}
.y1cc_c01296{bottom:403.200000pt;}
.y1c9_c01296{bottom:404.733333pt;}
.y1c8_c01296{bottom:405.506667pt;}
.y1c7_c01296{bottom:408.573333pt;}
.y1c6_c01296{bottom:410.880000pt;}
.y1c4_c01296{bottom:413.946667pt;}
.y1c5_c01296{bottom:417.786667pt;}
.y1c3_c01296{bottom:418.560000pt;}
.y1c2_c01296{bottom:419.333333pt;}
.y1c1_c01296{bottom:420.093333pt;}
.y1bd_c01296{bottom:421.626667pt;}
.y1bc_c01296{bottom:422.400000pt;}
.y1be_c01296{bottom:423.173333pt;}
.y1c0_c01296{bottom:433.920000pt;}
.y1bb_c01296{bottom:434.693333pt;}
.y1ba_c01296{bottom:435.453333pt;}
.y1b7_c01296{bottom:437.760000pt;}
.y1bf_c01296{bottom:438.533333pt;}
.y1b8_c01296{bottom:439.293333pt;}
.y1b6_c01296{bottom:440.066667pt;}
.y1b9_c01296{bottom:440.826667pt;}
.y1b2_c01296{bottom:443.906667pt;}
.y1b4_c01296{bottom:445.440000pt;}
.y1ac_c01296{bottom:446.973333pt;}
.y1b3_c01296{bottom:447.746667pt;}
.y1b1_c01296{bottom:448.506667pt;}
.y1b0_c01296{bottom:449.280000pt;}
.y1ab_c01296{bottom:450.053333pt;}
.y1ae_c01296{bottom:450.813333pt;}
.y1aa_c01296{bottom:451.586667pt;}
.y1b5_c01296{bottom:452.346667pt;}
.y1ad_c01296{bottom:453.120000pt;}
.y1a9_c01296{bottom:455.426667pt;}
.y1a8_c01296{bottom:456.186667pt;}
.y1af_c01296{bottom:457.733333pt;}
.y1a5_c01296{bottom:458.493333pt;}
.y1a3_c01296{bottom:460.026667pt;}
.y1a6_c01296{bottom:463.106667pt;}
.y1a7_c01296{bottom:464.640000pt;}
.y1a4_c01296{bottom:466.946667pt;}
.y1a2_c01296{bottom:470.786667pt;}
.y1a1_c01296{bottom:472.320000pt;}
.y23e_c01296{bottom:473.093333pt;}
.y1a0_c01296{bottom:473.853333pt;}
.y23d_c01296{bottom:478.466667pt;}
.y19e_c01296{bottom:479.226667pt;}
.y19d_c01296{bottom:480.773333pt;}
.y19f_c01296{bottom:483.066667pt;}
.y199_c01296{bottom:489.213333pt;}
.y198_c01296{bottom:490.746667pt;}
.y19a_c01296{bottom:492.293333pt;}
.y197_c01296{bottom:493.053333pt;}
.y19b_c01296{bottom:493.826667pt;}
.y194_c01296{bottom:496.133333pt;}
.y19c_c01296{bottom:497.666667pt;}
.y196_c01296{bottom:499.200000pt;}
.y193_c01296{bottom:499.973333pt;}
.y192_c01296{bottom:500.733333pt;}
.y195_c01296{bottom:502.266667pt;}
.y191_c01296{bottom:505.346667pt;}
.y18d_c01296{bottom:509.186667pt;}
.y18e_c01296{bottom:509.946667pt;}
.y18b_c01296{bottom:511.493333pt;}
.y190_c01296{bottom:512.253333pt;}
.y18f_c01296{bottom:513.026667pt;}
.y189_c01296{bottom:514.560000pt;}
.y18c_c01296{bottom:515.333333pt;}
.y186_c01296{bottom:516.866667pt;}
.y18a_c01296{bottom:518.400000pt;}
.y188_c01296{bottom:519.933333pt;}
.y187_c01296{bottom:520.706667pt;}
.y185_c01296{bottom:523.773333pt;}
.y184_c01296{bottom:526.853333pt;}
.y183_c01296{bottom:529.146667pt;}
.y182_c01296{bottom:530.693333pt;}
.y180_c01296{bottom:532.986667pt;}
.y181_c01296{bottom:535.293333pt;}
.y17e_c01296{bottom:537.600000pt;}
.y17f_c01296{bottom:539.133333pt;}
.y17d_c01296{bottom:542.973333pt;}
.y17c_c01296{bottom:544.506667pt;}
.y17a_c01296{bottom:546.813333pt;}
.y179_c01296{bottom:549.893333pt;}
.y17b_c01296{bottom:550.653333pt;}
.y178_c01296{bottom:551.426667pt;}
.y177_c01296{bottom:552.186667pt;}
.y175_c01296{bottom:552.960000pt;}
.y176_c01296{bottom:553.733333pt;}
.y173_c01296{bottom:556.026667pt;}
.y172_c01296{bottom:559.106667pt;}
.y171_c01296{bottom:562.173333pt;}
.y16e_c01296{bottom:565.253333pt;}
.y16f_c01296{bottom:566.013333pt;}
.y170_c01296{bottom:566.786667pt;}
.y16d_c01296{bottom:569.093333pt;}
.y174_c01296{bottom:570.626667pt;}
.y16b_c01296{bottom:571.386667pt;}
.y169_c01296{bottom:572.160000pt;}
.y16a_c01296{bottom:572.933333pt;}
.y16c_c01296{bottom:574.466667pt;}
.y168_c01296{bottom:577.533333pt;}
.y167_c01296{bottom:579.840000pt;}
.y165_c01296{bottom:581.373333pt;}
.y166_c01296{bottom:585.213333pt;}
.y164_c01296{bottom:586.746667pt;}
.y163_c01296{bottom:587.520000pt;}
.y15f_c01296{bottom:589.053333pt;}
.y160_c01296{bottom:591.360000pt;}
.y161_c01296{bottom:592.133333pt;}
.y15d_c01296{bottom:596.733333pt;}
.y15e_c01296{bottom:599.813333pt;}
.y162_c01296{bottom:600.573333pt;}
.y15c_c01296{bottom:601.346667pt;}
.y159_c01296{bottom:602.880000pt;}
.y15a_c01296{bottom:603.653333pt;}
.y15b_c01296{bottom:604.413333pt;}
.y158_c01296{bottom:612.866667pt;}
.y156_c01296{bottom:615.173333pt;}
.y155_c01296{bottom:618.240000pt;}
.y157_c01296{bottom:619.013333pt;}
.y153_c01296{bottom:619.773333pt;}
.y152_c01296{bottom:622.080000pt;}
.y151_c01296{bottom:625.146667pt;}
.y154_c01296{bottom:625.920000pt;}
.y14f_c01296{bottom:631.293333pt;}
.y14d_c01296{bottom:632.066667pt;}
.y150_c01296{bottom:633.600000pt;}
.y14e_c01296{bottom:634.373333pt;}
.y14c_c01296{bottom:635.906667pt;}
.y14b_c01296{bottom:637.440000pt;}
.y14a_c01296{bottom:641.280000pt;}
.y149_c01296{bottom:642.053333pt;}
.y148_c01296{bottom:644.346667pt;}
.y147_c01296{bottom:645.120000pt;}
.y146_c01296{bottom:648.186667pt;}
.y145_c01296{bottom:649.733333pt;}
.y144_c01296{bottom:653.573333pt;}
.y142_c01296{bottom:654.333333pt;}
.y13f_c01296{bottom:660.480000pt;}
.y140_c01296{bottom:662.013333pt;}
.y143_c01296{bottom:662.786667pt;}
.y141_c01296{bottom:665.093333pt;}
.y13e_c01296{bottom:666.626667pt;}
.y13b_c01296{bottom:668.160000pt;}
.y13c_c01296{bottom:668.933333pt;}
.y13d_c01296{bottom:671.226667pt;}
.y13a_c01296{bottom:672.000000pt;}
.y138_c01296{bottom:672.773333pt;}
.y139_c01296{bottom:675.066667pt;}
.y136_c01296{bottom:678.146667pt;}
.y135_c01296{bottom:678.906667pt;}
.y134_c01296{bottom:680.453333pt;}
.y137_c01296{bottom:681.986667pt;}
.y133_c01296{bottom:683.520000pt;}
.y131_c01296{bottom:685.826667pt;}
.y130_c01296{bottom:686.586667pt;}
.y132_c01296{bottom:688.133333pt;}
.y12f_c01296{bottom:691.973333pt;}
.y12c_c01296{bottom:692.733333pt;}
.y12e_c01296{bottom:693.506667pt;}
.y12a_c01296{bottom:695.040000pt;}
.y12b_c01296{bottom:696.573333pt;}
.y129_c01296{bottom:697.346667pt;}
.y128_c01296{bottom:698.880000pt;}
.y12d_c01296{bottom:701.186667pt;}
.y124_c01296{bottom:704.253333pt;}
.y125_c01296{bottom:707.333333pt;}
.y121_c01296{bottom:708.093333pt;}
.y126_c01296{bottom:708.866667pt;}
.y123_c01296{bottom:709.626667pt;}
.y122_c01296{bottom:711.173333pt;}
.y11f_c01296{bottom:711.933333pt;}
.y11e_c01296{bottom:712.706667pt;}
.y120_c01296{bottom:715.013333pt;}
.y127_c01296{bottom:715.773333pt;}
.y11d_c01296{bottom:717.306667pt;}
.y11c_c01296{bottom:718.853333pt;}
.y11a_c01296{bottom:719.613333pt;}
.y11b_c01296{bottom:720.386667pt;}
.y119_c01296{bottom:723.453333pt;}
.y118_c01296{bottom:724.226667pt;}
.y117_c01296{bottom:724.986667pt;}
.y116_c01296{bottom:725.760000pt;}
.y115_c01296{bottom:730.373333pt;}
.y114_c01296{bottom:731.133333pt;}
.y113_c01296{bottom:731.906667pt;}
.y112_c01296{bottom:734.213333pt;}
.y233_c01296{bottom:736.506667pt;}
.y110_c01296{bottom:739.586667pt;}
.y10f_c01296{bottom:740.346667pt;}
.y111_c01296{bottom:743.426667pt;}
.y10d_c01296{bottom:744.186667pt;}
.y10e_c01296{bottom:746.493333pt;}
.y10c_c01296{bottom:748.026667pt;}
.y10a_c01296{bottom:749.573333pt;}
.y10b_c01296{bottom:750.333333pt;}
.y108_c01296{bottom:752.640000pt;}
.y109_c01296{bottom:755.706667pt;}
.y107_c01296{bottom:757.253333pt;}
.y106_c01296{bottom:758.786667pt;}
.y104_c01296{bottom:760.320000pt;}
.y103_c01296{bottom:761.853333pt;}
.y105_c01296{bottom:762.626667pt;}
.y100_c01296{bottom:763.386667pt;}
.yfd_c01296{bottom:764.160000pt;}
.y102_c01296{bottom:764.933333pt;}
.yff_c01296{bottom:765.693333pt;}
.y101_c01296{bottom:767.226667pt;}
.yfe_c01296{bottom:768.000000pt;}
.yfb_c01296{bottom:769.533333pt;}
.yf8_c01296{bottom:771.066667pt;}
.yfa_c01296{bottom:771.840000pt;}
.yfc_c01296{bottom:773.373333pt;}
.yf5_c01296{bottom:774.146667pt;}
.yf9_c01296{bottom:774.906667pt;}
.yf3_c01296{bottom:776.453333pt;}
.yf4_c01296{bottom:777.213333pt;}
.yf1_c01296{bottom:777.986667pt;}
.yf2_c01296{bottom:778.746667pt;}
.yf7_c01296{bottom:780.293333pt;}
.yf6_c01296{bottom:781.826667pt;}
.yf0_c01296{bottom:782.586667pt;}
.yef_c01296{bottom:783.360000pt;}
.yed_c01296{bottom:784.133333pt;}
.yee_c01296{bottom:784.893333pt;}
.yeb_c01296{bottom:787.200000pt;}
.ye9_c01296{bottom:787.973333pt;}
.yec_c01296{bottom:789.506667pt;}
.yea_c01296{bottom:791.040000pt;}
.ye6_c01296{bottom:792.573333pt;}
.ye8_c01296{bottom:794.106667pt;}
.ye5_c01296{bottom:797.186667pt;}
.ye7_c01296{bottom:799.493333pt;}
.ye4_c01296{bottom:800.253333pt;}
.ye3_c01296{bottom:801.026667pt;}
.ye2_c01296{bottom:803.333333pt;}
.yde_c01296{bottom:804.093333pt;}
.ye1_c01296{bottom:804.866667pt;}
.ydd_c01296{bottom:808.706667pt;}
.ydf_c01296{bottom:809.466667pt;}
.ye0_c01296{bottom:810.240000pt;}
.yda_c01296{bottom:812.546667pt;}
.yd9_c01296{bottom:814.853333pt;}
.ydc_c01296{bottom:815.613333pt;}
.ydb_c01296{bottom:816.386667pt;}
.yd7_c01296{bottom:819.453333pt;}
.yd6_c01296{bottom:820.986667pt;}
.yd8_c01296{bottom:821.760000pt;}
.yd5_c01296{bottom:822.533333pt;}
.yd4_c01296{bottom:829.440000pt;}
.yd0_c01296{bottom:830.213333pt;}
.yd3_c01296{bottom:830.973333pt;}
.yce_c01296{bottom:831.746667pt;}
.ycf_c01296{bottom:834.053333pt;}
.ycd_c01296{bottom:834.813333pt;}
.ycc_c01296{bottom:835.586667pt;}
.yd1_c01296{bottom:837.120000pt;}
.ycb_c01296{bottom:837.893333pt;}
.yca_c01296{bottom:839.426667pt;}
.yd2_c01296{bottom:840.186667pt;}
.yc9_c01296{bottom:841.733333pt;}
.yc8_c01296{bottom:845.573333pt;}
.yc6_c01296{bottom:847.106667pt;}
.yc4_c01296{bottom:850.946667pt;}
.yc2_c01296{bottom:852.480000pt;}
.yc0_c01296{bottom:853.253333pt;}
.yc5_c01296{bottom:854.013333pt;}
.ybe_c01296{bottom:855.546667pt;}
.yc3_c01296{bottom:856.320000pt;}
.yc1_c01296{bottom:857.093333pt;}
.ybb_c01296{bottom:858.626667pt;}
.yc7_c01296{bottom:859.386667pt;}
.yba_c01296{bottom:860.933333pt;}
.ybd_c01296{bottom:862.466667pt;}
.yb7_c01296{bottom:867.066667pt;}
.ybc_c01296{bottom:867.840000pt;}
.ybf_c01296{bottom:868.613333pt;}
.yb6_c01296{bottom:869.373333pt;}
.yb9_c01296{bottom:870.146667pt;}
.yb8_c01296{bottom:871.680000pt;}
.yb4_c01296{bottom:873.213333pt;}
.yb2_c01296{bottom:873.986667pt;}
.yb1_c01296{bottom:875.520000pt;}
.yb5_c01296{bottom:877.826667pt;}
.yb3_c01296{bottom:878.586667pt;}
.yae_c01296{bottom:881.666667pt;}
.yb0_c01296{bottom:887.040000pt;}
.yaf_c01296{bottom:887.813333pt;}
.yac_c01296{bottom:888.573333pt;}
.yab_c01296{bottom:889.346667pt;}
.ya9_c01296{bottom:890.880000pt;}
.yad_c01296{bottom:891.653333pt;}
.yaa_c01296{bottom:895.493333pt;}
.ya8_c01296{bottom:898.560000pt;}
.ya7_c01296{bottom:899.333333pt;}
.ya4_c01296{bottom:902.400000pt;}
.ya5_c01296{bottom:904.706667pt;}
.ya2_c01296{bottom:905.466667pt;}
.ya3_c01296{bottom:906.240000pt;}
.ya6_c01296{bottom:907.013333pt;}
.ya0_c01296{bottom:908.546667pt;}
.y9c_c01296{bottom:909.306667pt;}
.y9d_c01296{bottom:911.613333pt;}
.y9f_c01296{bottom:913.920000pt;}
.ya1_c01296{bottom:914.693333pt;}
.y9e_c01296{bottom:917.760000pt;}
.y9a_c01296{bottom:920.066667pt;}
.y9b_c01296{bottom:920.826667pt;}
.y99_c01296{bottom:923.133333pt;}
.y98_c01296{bottom:925.440000pt;}
.y96_c01296{bottom:926.973333pt;}
.y97_c01296{bottom:928.506667pt;}
.y93_c01296{bottom:929.280000pt;}
.y95_c01296{bottom:934.653333pt;}
.y92_c01296{bottom:937.733333pt;}
.y90_c01296{bottom:944.640000pt;}
.y8f_c01296{bottom:945.413333pt;}
.y8e_c01296{bottom:946.173333pt;}
.y8d_c01296{bottom:946.946667pt;}
.y94_c01296{bottom:947.706667pt;}
.y91_c01296{bottom:948.480000pt;}
.y8c_c01296{bottom:953.093333pt;}
.y8b_c01296{bottom:953.853333pt;}
.y8a_c01296{bottom:954.626667pt;}
.y89_c01296{bottom:956.160000pt;}
.y85_c01296{bottom:957.693333pt;}
.y84_c01296{bottom:958.466667pt;}
.y86_c01296{bottom:960.000000pt;}
.y83_c01296{bottom:960.773333pt;}
.y88_c01296{bottom:968.453333pt;}
.y87_c01296{bottom:969.213333pt;}
.y81_c01296{bottom:973.826667pt;}
.y82_c01296{bottom:974.586667pt;}
.y80_c01296{bottom:975.360000pt;}
.y7d_c01296{bottom:976.893333pt;}
.y7e_c01296{bottom:978.426667pt;}
.y7f_c01296{bottom:980.733333pt;}
.y7c_c01296{bottom:991.493333pt;}
.y7a_c01296{bottom:994.560000pt;}
.y7b_c01296{bottom:997.626667pt;}
.y77_c01296{bottom:1006.853333pt;}
.y76_c01296{bottom:1009.920000pt;}
.y79_c01296{bottom:1014.533333pt;}
.y75_c01296{bottom:1015.293333pt;}
.y72_c01296{bottom:1016.066667pt;}
.y78_c01296{bottom:1016.826667pt;}
.y6f_c01296{bottom:1017.600000pt;}
.y6e_c01296{bottom:1019.133333pt;}
.y71_c01296{bottom:1020.666667pt;}
.y70_c01296{bottom:1021.440000pt;}
.y74_c01296{bottom:1022.213333pt;}
.y6d_c01296{bottom:1025.280000pt;}
.y73_c01296{bottom:1026.053333pt;}
.y6c_c01296{bottom:1028.346667pt;}
.y6b_c01296{bottom:1030.653333pt;}
.y6a_c01296{bottom:1031.426667pt;}
.y69_c01296{bottom:1039.106667pt;}
.y68_c01296{bottom:1042.946667pt;}
.y67_c01296{bottom:1044.480000pt;}
.y65_c01296{bottom:1048.320000pt;}
.y66_c01296{bottom:1049.093333pt;}
.y64_c01296{bottom:1051.386667pt;}
.y62_c01296{bottom:1053.693333pt;}
.y63_c01296{bottom:1055.226667pt;}
.y60_c01296{bottom:1056.000000pt;}
.y61_c01296{bottom:1058.306667pt;}
.y5e_c01296{bottom:1061.373333pt;}
.y5f_c01296{bottom:1062.906667pt;}
.y5d_c01296{bottom:1063.680000pt;}
.y5c_c01296{bottom:1068.293333pt;}
.y5a_c01296{bottom:1070.586667pt;}
.y59_c01296{bottom:1072.133333pt;}
.y58_c01296{bottom:1073.666667pt;}
.y5b_c01296{bottom:1074.426667pt;}
.y57_c01296{bottom:1078.266667pt;}
.y56_c01296{bottom:1085.946667pt;}
.y54_c01296{bottom:1088.253333pt;}
.y52_c01296{bottom:1089.026667pt;}
.y55_c01296{bottom:1089.786667pt;}
.y50_c01296{bottom:1090.560000pt;}
.y4f_c01296{bottom:1091.333333pt;}
.y53_c01296{bottom:1092.093333pt;}
.y51_c01296{bottom:1092.866667pt;}
.y23c_c01296{bottom:1094.400000pt;}
.y4e_c01296{bottom:1102.080000pt;}
.y4d_c01296{bottom:1103.613333pt;}
.y4b_c01296{bottom:1107.453333pt;}
.y4a_c01296{bottom:1108.226667pt;}
.y49_c01296{bottom:1108.986667pt;}
.y4c_c01296{bottom:1110.533333pt;}
.y47_c01296{bottom:1112.066667pt;}
.y48_c01296{bottom:1112.826667pt;}
.y238_c01296{bottom:1114.373333pt;}
.y239_c01296{bottom:1115.906667pt;}
.y43_c01296{bottom:1118.973333pt;}
.y44_c01296{bottom:1119.746667pt;}
.y46_c01296{bottom:1122.053333pt;}
.y3f_c01296{bottom:1122.813333pt;}
.y3d_c01296{bottom:1124.346667pt;}
.y45_c01296{bottom:1125.120000pt;}
.y42_c01296{bottom:1125.893333pt;}
.y40_c01296{bottom:1127.426667pt;}
.y3e_c01296{bottom:1128.960000pt;}
.y41_c01296{bottom:1129.733333pt;}
.y3c_c01296{bottom:1132.800000pt;}
.y237_c01296{bottom:1133.573333pt;}
.y39_c01296{bottom:1135.866667pt;}
.y37_c01296{bottom:1136.640000pt;}
.y3a_c01296{bottom:1137.413333pt;}
.y38_c01296{bottom:1138.173333pt;}
.y35_c01296{bottom:1138.946667pt;}
.y3b_c01296{bottom:1139.706667pt;}
.y36_c01296{bottom:1142.013333pt;}
.y34_c01296{bottom:1142.786667pt;}
.y31_c01296{bottom:1144.320000pt;}
.y2f_c01296{bottom:1145.853333pt;}
.y33_c01296{bottom:1147.386667pt;}
.y32_c01296{bottom:1148.160000pt;}
.y30_c01296{bottom:1149.693333pt;}
.y2e_c01296{bottom:1152.000000pt;}
.y2b_c01296{bottom:1155.840000pt;}
.y2c_c01296{bottom:1158.146667pt;}
.y29_c01296{bottom:1160.453333pt;}
.y2d_c01296{bottom:1161.213333pt;}
.y28_c01296{bottom:1161.986667pt;}
.y2a_c01296{bottom:1164.293333pt;}
.y27_c01296{bottom:1165.053333pt;}
.y25_c01296{bottom:1167.360000pt;}
.y23_c01296{bottom:1168.133333pt;}
.y26_c01296{bottom:1169.666667pt;}
.y22_c01296{bottom:1171.200000pt;}
.y21_c01296{bottom:1172.733333pt;}
.y20_c01296{bottom:1175.040000pt;}
.y1d_c01296{bottom:1175.813333pt;}
.y23a_c01296{bottom:1176.573333pt;}
.y24_c01296{bottom:1177.346667pt;}
.y23b_c01296{bottom:1178.106667pt;}
.y1f_c01296{bottom:1179.653333pt;}
.y1b_c01296{bottom:1180.413333pt;}
.y1c_c01296{bottom:1181.946667pt;}
.y1e_c01296{bottom:1182.720000pt;}
.y19_c01296{bottom:1187.333333pt;}
.y1a_c01296{bottom:1188.093333pt;}
.y18_c01296{bottom:1188.866667pt;}
.y17_c01296{bottom:1189.626667pt;}
.y16_c01296{bottom:1195.013333pt;}
.y13_c01296{bottom:1195.773333pt;}
.y12_c01296{bottom:1196.546667pt;}
.y15_c01296{bottom:1197.306667pt;}
.y11_c01296{bottom:1198.080000pt;}
.y10_c01296{bottom:1199.613333pt;}
.y14_c01296{bottom:1200.386667pt;}
.ye_c01296{bottom:1204.226667pt;}
.yf_c01296{bottom:1204.986667pt;}
.yd_c01296{bottom:1211.133333pt;}
.y236_c01296{bottom:1213.440000pt;}
.yb_c01296{bottom:1217.280000pt;}
.yc_c01296{bottom:1220.346667pt;}
.y8_c01296{bottom:1222.653333pt;}
.y9_c01296{bottom:1224.186667pt;}
.ya_c01296{bottom:1224.960000pt;}
.y7_c01296{bottom:1247.226667pt;}
.y232_c01296{bottom:1256.453333pt;}
.y231_c01296{bottom:1257.213333pt;}
.y6_c01296{bottom:1260.293333pt;}
.y5_c01296{bottom:1261.053333pt;}
.y4_c01296{bottom:1268.733333pt;}
.y2_c01296{bottom:1271.813333pt;}
.y3_c01296{bottom:1278.720000pt;}
.y1_c01296{bottom:1287.933333pt;}
.h4_c01296{height:2.764500pt;}
.h7_c01296{height:4.799479pt;}
.h5_c01296{height:5.519401pt;}
.h8_c01296{height:8.303099pt;}
.h22_c01296{height:11.038802pt;}
.ha_c01296{height:13.822500pt;}
.h20_c01296{height:16.606198pt;}
.h28_c01296{height:17.225469pt;}
.h1a_c01296{height:19.341901pt;}
.h26_c01296{height:22.125599pt;}
.h1e_c01296{height:24.861302pt;}
.h16_c01296{height:27.645000pt;}
.h13_c01296{height:30.428698pt;}
.h1b_c01296{height:33.164401pt;}
.h2_c01296{height:35.948099pt;}
.h23_c01296{height:38.683802pt;}
.h6_c01296{height:41.467500pt;}
.h25_c01296{height:43.637266pt;}
.h3_c01296{height:44.251198pt;}
.h15_c01296{height:46.986901pt;}
.h18_c01296{height:49.770599pt;}
.h1f_c01296{height:52.506302pt;}
.hf_c01296{height:55.290000pt;}
.h19_c01296{height:58.073698pt;}
.h12_c01296{height:60.809401pt;}
.h1d_c01296{height:63.593099pt;}
.h11_c01296{height:66.328802pt;}
.he_c01296{height:69.112500pt;}
.h17_c01296{height:71.896198pt;}
.hc_c01296{height:74.631901pt;}
.h10_c01296{height:77.415599pt;}
.h21_c01296{height:80.151302pt;}
.h14_c01296{height:82.935000pt;}
.h1c_c01296{height:85.718698pt;}
.h24_c01296{height:88.454401pt;}
.h9_c01296{height:93.973802pt;}
.hd_c01296{height:129.921901pt;}
.hb_c01296{height:138.225000pt;}
.h27_c01296{height:165.870000pt;}
.h1_c01296{height:1345.333333pt;}
.h0_c01296{height:1345.533333pt;}
.w1_c01296{width:956.666667pt;}
.w0_c01296{width:956.933333pt;}
.x0_c01296{left:0.000000pt;}
.x108_c01296{left:136.706667pt;}
.xed_c01296{left:138.240000pt;}
.xee_c01296{left:142.080000pt;}
.xa8_c01296{left:146.693333pt;}
.xad_c01296{left:151.293333pt;}
.x92_c01296{left:152.826667pt;}
.xa9_c01296{left:155.133333pt;}
.xb6_c01296{left:159.746667pt;}
.x9b_c01296{left:162.813333pt;}
.x114_c01296{left:164.346667pt;}
.xdc_c01296{left:168.186667pt;}
.x6d_c01296{left:170.493333pt;}
.x10f_c01296{left:172.026667pt;}
.xa1_c01296{left:173.573333pt;}
.x61_c01296{left:175.866667pt;}
.xb1_c01296{left:177.413333pt;}
.x103_c01296{left:178.946667pt;}
.xeb_c01296{left:180.480000pt;}
.xae_c01296{left:182.013333pt;}
.x7_c01296{left:183.546667pt;}
.xd0_c01296{left:185.093333pt;}
.xaa_c01296{left:186.626667pt;}
.xc2_c01296{left:188.160000pt;}
.x76_c01296{left:189.693333pt;}
.x6e_c01296{left:192.000000pt;}
.x35_c01296{left:194.306667pt;}
.x11_c01296{left:196.613333pt;}
.x8_c01296{left:198.906667pt;}
.x77_c01296{left:200.453333pt;}
.xbd_c01296{left:203.520000pt;}
.x56_c01296{left:205.826667pt;}
.x71_c01296{left:208.133333pt;}
.xd1_c01296{left:210.426667pt;}
.x86_c01296{left:211.973333pt;}
.x1f_c01296{left:215.040000pt;}
.x106_c01296{left:217.346667pt;}
.x42_c01296{left:219.653333pt;}
.xaf_c01296{left:221.186667pt;}
.x4a_c01296{left:224.253333pt;}
.x93_c01296{left:226.560000pt;}
.xf1_c01296{left:228.866667pt;}
.xc3_c01296{left:232.706667pt;}
.x68_c01296{left:235.013333pt;}
.x10d_c01296{left:237.306667pt;}
.xc9_c01296{left:238.853333pt;}
.x78_c01296{left:240.386667pt;}
.x62_c01296{left:241.920000pt;}
.x87_c01296{left:243.453333pt;}
.x12_c01296{left:245.760000pt;}
.xef_c01296{left:248.066667pt;}
.x20_c01296{left:251.906667pt;}
.x9d_c01296{left:254.213333pt;}
.x6f_c01296{left:258.813333pt;}
.x80_c01296{left:260.346667pt;}
.xc4_c01296{left:261.893333pt;}
.xe5_c01296{left:264.186667pt;}
.x94_c01296{left:265.733333pt;}
.x36_c01296{left:268.026667pt;}
.x88_c01296{left:270.333333pt;}
.x13_c01296{left:271.866667pt;}
.xa2_c01296{left:273.413333pt;}
.xd7_c01296{left:275.706667pt;}
.x57_c01296{left:277.253333pt;}
.xce_c01296{left:278.786667pt;}
.x9_c01296{left:281.853333pt;}
.x37_c01296{left:285.693333pt;}
.x100_c01296{left:287.226667pt;}
.x4b_c01296{left:288.773333pt;}
.x21_c01296{left:294.146667pt;}
.x8d_c01296{left:295.680000pt;}
.xa_c01296{left:297.986667pt;}
.xbe_c01296{left:299.520000pt;}
.xff_c01296{left:301.826667pt;}
.xb2_c01296{left:303.360000pt;}
.x58_c01296{left:304.893333pt;}
.xf5_c01296{left:308.733333pt;}
.xdd_c01296{left:310.266667pt;}
.x14_c01296{left:311.813333pt;}
.xb7_c01296{left:313.346667pt;}
.x95_c01296{left:315.653333pt;}
.xb_c01296{left:318.720000pt;}
.xb3_c01296{left:326.400000pt;}
.xb0_c01296{left:327.933333pt;}
.xec_c01296{left:329.466667pt;}
.x63_c01296{left:331.013333pt;}
.xf4_c01296{left:333.306667pt;}
.x69_c01296{left:334.853333pt;}
.xca_c01296{left:337.146667pt;}
.x9e_c01296{left:338.693333pt;}
.x4c_c01296{left:340.226667pt;}
.x113_c01296{left:342.533333pt;}
.x22_c01296{left:344.066667pt;}
.xcb_c01296{left:346.373333pt;}
.x8e_c01296{left:347.906667pt;}
.xe3_c01296{left:349.440000pt;}
.x59_c01296{left:352.506667pt;}
.x64_c01296{left:354.053333pt;}
.x1_c01296{left:357.120000pt;}
.x2f_c01296{left:359.426667pt;}
.x4_c01296{left:361.733333pt;}
.xb8_c01296{left:364.026667pt;}
.x38_c01296{left:365.573333pt;}
.x15_c01296{left:367.106667pt;}
.xab_c01296{left:369.413333pt;}
.x5_c01296{left:371.706667pt;}
.x43_c01296{left:373.253333pt;}
.x2_c01296{left:377.853333pt;}
.x23_c01296{left:380.160000pt;}
.x5a_c01296{left:382.466667pt;}
.xbf_c01296{left:385.533333pt;}
.x72_c01296{left:387.066667pt;}
.x44_c01296{left:388.613333pt;}
.x89_c01296{left:390.906667pt;}
.x109_c01296{left:392.453333pt;}
.x101_c01296{left:394.746667pt;}
.x39_c01296{left:397.826667pt;}
.xe0_c01296{left:399.360000pt;}
.x6_c01296{left:400.893333pt;}
.x3_c01296{left:402.426667pt;}
.x6a_c01296{left:407.040000pt;}
.x73_c01296{left:408.573333pt;}
.x16_c01296{left:412.413333pt;}
.x96_c01296{left:416.253333pt;}
.xc5_c01296{left:419.333333pt;}
.x10e_c01296{left:420.866667pt;}
.x4d_c01296{left:422.400000pt;}
.x45_c01296{left:425.466667pt;}
.x24_c01296{left:430.080000pt;}
.x97_c01296{left:431.613333pt;}
.xf6_c01296{left:433.146667pt;}
.x65_c01296{left:434.693333pt;}
.x25_c01296{left:436.986667pt;}
.xc_c01296{left:440.066667pt;}
.xe6_c01296{left:443.133333pt;}
.x4e_c01296{left:444.667067pt;}
.xd2_c01296{left:446.213333pt;}
.xa3_c01296{left:447.746667pt;}
.x4f_c01296{left:450.813333pt;}
.xd8_c01296{left:453.120000pt;}
.x30_c01296{left:455.426667pt;}
.xfa_c01296{left:456.960000pt;}
.x50_c01296{left:458.493333pt;}
.x104_c01296{left:461.573333pt;}
.x5b_c01296{left:463.106667pt;}
.x46_c01296{left:464.640000pt;}
.xa4_c01296{left:469.253333pt;}
.x47_c01296{left:470.786667pt;}
.xfb_c01296{left:473.093333pt;}
.xd_c01296{left:474.626667pt;}
.x17_c01296{left:476.160000pt;}
.x7b_c01296{left:477.693333pt;}
.xd9_c01296{left:480.000000pt;}
.xcf_c01296{left:482.306667pt;}
.xc6_c01296{left:483.840000pt;}
.x98_c01296{left:485.373333pt;}
.x8a_c01296{left:487.680000pt;}
.x18_c01296{left:489.986667pt;}
.x26_c01296{left:492.293333pt;}
.x10a_c01296{left:494.586667pt;}
.x5c_c01296{left:496.893333pt;}
.xd3_c01296{left:498.426667pt;}
.x8f_c01296{left:502.266667pt;}
.x51_c01296{left:506.880000pt;}
.x5d_c01296{left:509.186667pt;}
.x19_c01296{left:510.720000pt;}
.xfc_c01296{left:513.026667pt;}
.x27_c01296{left:514.560000pt;}
.xf0_c01296{left:516.866667pt;}
.xc7_c01296{left:518.400000pt;}
.xda_c01296{left:519.933333pt;}
.x99_c01296{left:521.466667pt;}
.x102_c01296{left:525.306667pt;}
.x5e_c01296{left:526.853333pt;}
.xa5_c01296{left:529.146667pt;}
.x1a_c01296{left:530.693333pt;}
.x110_c01296{left:533.760000pt;}
.x81_c01296{left:539.133333pt;}
.x107_c01296{left:540.666667pt;}
.x111_c01296{left:542.213333pt;}
.x6b_c01296{left:543.746667pt;}
.x3a_c01296{left:546.813333pt;}
.xc0_c01296{left:549.120000pt;}
.xcc_c01296{left:551.426667pt;}
.x28_c01296{left:553.733333pt;}
.xe8_c01296{left:556.026667pt;}
.x8b_c01296{left:559.866667pt;}
.xb9_c01296{left:562.173333pt;}
.xde_c01296{left:563.706667pt;}
.x7c_c01296{left:566.013333pt;}
.x3b_c01296{left:568.320000pt;}
.x1b_c01296{left:570.626667pt;}
.x31_c01296{left:572.160000pt;}
.xf7_c01296{left:573.693333pt;}
.xa6_c01296{left:575.226667pt;}
.x70_c01296{left:579.066667pt;}
.x9c_c01296{left:581.373333pt;}
.x5f_c01296{left:583.680000pt;}
.xba_c01296{left:585.213333pt;}
.xe_c01296{left:587.520000pt;}
.xc1_c01296{left:589.826667pt;}
.x29_c01296{left:592.133333pt;}
.xf2_c01296{left:593.666667pt;}
.x90_c01296{left:595.200000pt;}
.x7d_c01296{left:597.506667pt;}
.x82_c01296{left:600.573333pt;}
.xb4_c01296{left:602.880000pt;}
.x112_c01296{left:604.413333pt;}
.x52_c01296{left:605.946667pt;}
.xe1_c01296{left:608.253333pt;}
.x2a_c01296{left:611.333333pt;}
.xe7_c01296{left:615.173333pt;}
.x79_c01296{left:616.706667pt;}
.x60_c01296{left:619.773333pt;}
.x3c_c01296{left:624.386667pt;}
.x32_c01296{left:626.693333pt;}
.x74_c01296{left:628.986667pt;}
.x7e_c01296{left:632.826667pt;}
.x48_c01296{left:636.666667pt;}
.xe9_c01296{left:638.973333pt;}
.xf_c01296{left:645.120000pt;}
.xe4_c01296{left:646.653333pt;}
.x33_c01296{left:648.186667pt;}
.x9f_c01296{left:649.733333pt;}
.xdb_c01296{left:651.266667pt;}
.x91_c01296{left:653.573333pt;}
.x6c_c01296{left:657.413333pt;}
.x1c_c01296{left:661.253333pt;}
.xf8_c01296{left:662.786667pt;}
.xcd_c01296{left:665.853333pt;}
.xd4_c01296{left:667.386667pt;}
.x83_c01296{left:668.933333pt;}
.x53_c01296{left:670.466667pt;}
.x66_c01296{left:673.533333pt;}
.x2b_c01296{left:677.373333pt;}
.x49_c01296{left:678.906667pt;}
.xa0_c01296{left:681.213333pt;}
.x2c_c01296{left:682.746667pt;}
.x34_c01296{left:684.293333pt;}
.x10b_c01296{left:686.586667pt;}
.x7f_c01296{left:688.133333pt;}
.xf3_c01296{left:689.666667pt;}
.x10_c01296{left:691.973333pt;}
.x8c_c01296{left:693.506667pt;}
.xa7_c01296{left:695.813333pt;}
.x2d_c01296{left:698.106667pt;}
.x3d_c01296{left:701.186667pt;}
.x10c_c01296{left:705.026667pt;}
.x54_c01296{left:706.560000pt;}
.x7a_c01296{left:708.093333pt;}
.xac_c01296{left:710.400000pt;}
.x1d_c01296{left:712.706667pt;}
.xbb_c01296{left:714.240000pt;}
.xfd_c01296{left:716.546667pt;}
.xdf_c01296{left:718.080000pt;}
.x1e_c01296{left:719.613333pt;}
.x84_c01296{left:721.920000pt;}
.x9a_c01296{left:723.453333pt;}
.xd5_c01296{left:725.760000pt;}
.x105_c01296{left:728.826667pt;}
.xea_c01296{left:731.133333pt;}
.xc8_c01296{left:734.213333pt;}
.x85_c01296{left:737.280000pt;}
.x55_c01296{left:741.893333pt;}
.xfe_c01296{left:744.186667pt;}
.xd6_c01296{left:750.333333pt;}
.x2e_c01296{left:752.640000pt;}
.xe2_c01296{left:757.253333pt;}
.x3e_c01296{left:759.546667pt;}
.xb5_c01296{left:762.626667pt;}
.xbc_c01296{left:764.160000pt;}
.x3f_c01296{left:765.693333pt;}
.xf9_c01296{left:768.000000pt;}
.x75_c01296{left:770.306667pt;}
.x67_c01296{left:773.373333pt;}
.x40_c01296{left:775.680000pt;}
.x41_c01296{left:781.053333pt;}
.x116_c01296{left:788.733333pt;}
.x115_c01296{left:791.040000pt;}
.x123_c01296{left:807.173333pt;}
.x122_c01296{left:809.466667pt;}
.x124_c01296{left:816.386667pt;}
.x125_c01296{left:836.346667pt;}
.x126_c01296{left:847.106667pt;}
.x118_c01296{left:862.466667pt;}
.x119_c01296{left:877.053333pt;}
.x121_c01296{left:902.400000pt;}
.x11f_c01296{left:907.013333pt;}
.x120_c01296{left:910.853333pt;}
.x117_c01296{left:913.146667pt;}
.x11a_c01296{left:920.066667pt;}
.x11c_c01296{left:925.440000pt;}
.x11b_c01296{left:930.053333pt;}
.x11e_c01296{left:936.960000pt;}
.x11d_c01296{left:949.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_77608f18f09f1433bf09d0df.woff2')format("woff");}.ff1_c01297{font-family:ff1_c01297;line-height:1.109863;font-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_c01297{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c01297{transform:matrix(0.032650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032650,0.000000,0.000000,0.250000,0,0);}
.m10_c01297{transform:matrix(0.041700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041700,0.000000,0.000000,0.250000,0,0);}
.mf_c01297{transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);}
.ma_c01297{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.me_c01297{transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);}
.mc_c01297{transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);}
.mb_c01297{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m11_c01297{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m2_c01297{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01297{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m9_c01297{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);}
.m5_c01297{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c01297{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m16_c01297{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);}
.m6_c01297{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);}
.md_c01297{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m12_c01297{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);}
.m14_c01297{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m7_c01297{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m15_c01297{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m8_c01297{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m4_c01297{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,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;}
.fs1_c01297{font-size:3.456000px;}
.fs5_c01297{font-size:6.000000px;}
.fs8_c01297{font-size:6.900000px;}
.fs4_c01297{font-size:10.380000px;}
.fs2_c01297{font-size:13.800000px;}
.fse_c01297{font-size:17.280000px;}
.fs0_c01297{font-size:24.180000px;}
.fs10_c01297{font-size:27.660000px;}
.fsa_c01297{font-size:31.080000px;}
.fs6_c01297{font-size:34.560000px;}
.fs7_c01297{font-size:38.040000px;}
.fsd_c01297{font-size:41.460000px;}
.fsf_c01297{font-size:48.360000px;}
.fs3_c01297{font-size:79.500000px;}
.fsc_c01297{font-size:93.300000px;}
.fs9_c01297{font-size:103.680000px;}
.fsb_c01297{font-size:176.280000px;}
.y0_c01297{bottom:0.000000px;}
.y20_c01297{bottom:527.910000px;}
.y1f_c01297{bottom:528.765000px;}
.y1e_c01297{bottom:571.110000px;}
.y1d_c01297{bottom:576.285000px;}
.y1c_c01297{bottom:823.395000px;}
.y1a_c01297{bottom:952.125000px;}
.y1b_c01297{bottom:957.315000px;}
.y18_c01297{bottom:1031.610000px;}
.y19_c01297{bottom:1033.350000px;}
.y17_c01297{bottom:1038.525000px;}
.y11_c01297{bottom:1097.280000px;}
.yf_c01297{bottom:1117.155000px;}
.y10_c01297{bottom:1122.330000px;}
.yd_c01297{bottom:1133.565000px;}
.ye_c01297{bottom:1135.290000px;}
.yc_c01297{bottom:1139.610000px;}
.yb_c01297{bottom:1178.490000px;}
.ya_c01297{bottom:1198.365000px;}
.y9_c01297{bottom:1200.090000px;}
.y8_c01297{bottom:1219.110000px;}
.y15_c01297{bottom:1243.290000px;}
.y16_c01297{bottom:1251.930000px;}
.y14_c01297{bottom:1254.525000px;}
.y7_c01297{bottom:1259.715000px;}
.y4_c01297{bottom:1268.355000px;}
.y6_c01297{bottom:1276.125000px;}
.y12_c01297{bottom:1278.720000px;}
.y5_c01297{bottom:1281.315000px;}
.y13_c01297{bottom:1311.555000px;}
.y2_c01297{bottom:1319.325000px;}
.y3_c01297{bottom:1321.050000px;}
.y1_c01297{bottom:1360.800000px;}
.h3_c01297{height:3.110063px;}
.h7_c01297{height:5.399414px;}
.ha_c01297{height:6.209326px;}
.h6_c01297{height:9.340986px;}
.h4_c01297{height:12.418652px;}
.h10_c01297{height:15.550313px;}
.h2_c01297{height:21.759639px;}
.h12_c01297{height:24.891299px;}
.hc_c01297{height:27.968965px;}
.h8_c01297{height:31.100625px;}
.h9_c01297{height:34.232285px;}
.hf_c01297{height:37.309951px;}
.h11_c01297{height:43.519277px;}
.h5_c01297{height:71.542236px;}
.he_c01297{height:83.960889px;}
.hb_c01297{height:93.301875px;}
.hd_c01297{height:158.634785px;}
.h0_c01297{height:1509.405000px;}
.h1_c01297{height:1509.750000px;}
.w0_c01297{width:1088.640000px;}
.w1_c01297{width:1089.000000px;}
.x0_c01297{left:0.000000px;}
.x5_c01297{left:5.190000px;}
.x4_c01297{left:6.915000px;}
.xe_c01297{left:10.365000px;}
.xd_c01297{left:38.010000px;}
.x6_c01297{left:51.840000px;}
.xf_c01297{left:54.435000px;}
.x10_c01297{left:64.800000px;}
.x7_c01297{left:115.770000px;}
.x8_c01297{left:131.325000px;}
.x9_c01297{left:133.050000px;}
.xb_c01297{left:161.565000px;}
.xa_c01297{left:165.885000px;}
.xc_c01297{left:171.075000px;}
.x1_c01297{left:173.670000px;}
.x2_c01297{left:185.760000px;}
.x3_c01297{left:192.675000px;}
@media print{
.v0_c01297{vertical-align:0.000000pt;}
.ls0_c01297{letter-spacing:0.000000pt;}
.ws0_c01297{word-spacing:0.000000pt;}
.fs1_c01297{font-size:3.072000pt;}
.fs5_c01297{font-size:5.333333pt;}
.fs8_c01297{font-size:6.133333pt;}
.fs4_c01297{font-size:9.226667pt;}
.fs2_c01297{font-size:12.266667pt;}
.fse_c01297{font-size:15.360000pt;}
.fs0_c01297{font-size:21.493333pt;}
.fs10_c01297{font-size:24.586667pt;}
.fsa_c01297{font-size:27.626667pt;}
.fs6_c01297{font-size:30.720000pt;}
.fs7_c01297{font-size:33.813333pt;}
.fsd_c01297{font-size:36.853333pt;}
.fsf_c01297{font-size:42.986667pt;}
.fs3_c01297{font-size:70.666667pt;}
.fsc_c01297{font-size:82.933333pt;}
.fs9_c01297{font-size:92.160000pt;}
.fsb_c01297{font-size:156.693333pt;}
.y0_c01297{bottom:0.000000pt;}
.y20_c01297{bottom:469.253333pt;}
.y1f_c01297{bottom:470.013333pt;}
.y1e_c01297{bottom:507.653333pt;}
.y1d_c01297{bottom:512.253333pt;}
.y1c_c01297{bottom:731.906667pt;}
.y1a_c01297{bottom:846.333333pt;}
.y1b_c01297{bottom:850.946667pt;}
.y18_c01297{bottom:916.986667pt;}
.y19_c01297{bottom:918.533333pt;}
.y17_c01297{bottom:923.133333pt;}
.y11_c01297{bottom:975.360000pt;}
.yf_c01297{bottom:993.026667pt;}
.y10_c01297{bottom:997.626667pt;}
.yd_c01297{bottom:1007.613333pt;}
.ye_c01297{bottom:1009.146667pt;}
.yc_c01297{bottom:1012.986667pt;}
.yb_c01297{bottom:1047.546667pt;}
.ya_c01297{bottom:1065.213333pt;}
.y9_c01297{bottom:1066.746667pt;}
.y8_c01297{bottom:1083.653333pt;}
.y15_c01297{bottom:1105.146667pt;}
.y16_c01297{bottom:1112.826667pt;}
.y14_c01297{bottom:1115.133333pt;}
.y7_c01297{bottom:1119.746667pt;}
.y4_c01297{bottom:1127.426667pt;}
.y6_c01297{bottom:1134.333333pt;}
.y12_c01297{bottom:1136.640000pt;}
.y5_c01297{bottom:1138.946667pt;}
.y13_c01297{bottom:1165.826667pt;}
.y2_c01297{bottom:1172.733333pt;}
.y3_c01297{bottom:1174.266667pt;}
.y1_c01297{bottom:1209.600000pt;}
.h3_c01297{height:2.764500pt;}
.h7_c01297{height:4.799479pt;}
.ha_c01297{height:5.519401pt;}
.h6_c01297{height:8.303099pt;}
.h4_c01297{height:11.038802pt;}
.h10_c01297{height:13.822500pt;}
.h2_c01297{height:19.341901pt;}
.h12_c01297{height:22.125599pt;}
.hc_c01297{height:24.861302pt;}
.h8_c01297{height:27.645000pt;}
.h9_c01297{height:30.428698pt;}
.hf_c01297{height:33.164401pt;}
.h11_c01297{height:38.683802pt;}
.h5_c01297{height:63.593099pt;}
.he_c01297{height:74.631901pt;}
.hb_c01297{height:82.935000pt;}
.hd_c01297{height:141.008698pt;}
.h0_c01297{height:1341.693333pt;}
.h1_c01297{height:1342.000000pt;}
.w0_c01297{width:967.680000pt;}
.w1_c01297{width:968.000000pt;}
.x0_c01297{left:0.000000pt;}
.x5_c01297{left:4.613333pt;}
.x4_c01297{left:6.146667pt;}
.xe_c01297{left:9.213333pt;}
.xd_c01297{left:33.786667pt;}
.x6_c01297{left:46.080000pt;}
.xf_c01297{left:48.386667pt;}
.x10_c01297{left:57.600000pt;}
.x7_c01297{left:102.906667pt;}
.x8_c01297{left:116.733333pt;}
.x9_c01297{left:118.266667pt;}
.xb_c01297{left:143.613333pt;}
.xa_c01297{left:147.453333pt;}
.xc_c01297{left:152.066667pt;}
.x1_c01297{left:154.373333pt;}
.x2_c01297{left:165.120000pt;}
.x3_c01297{left:171.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff5227ce2a04b6eb1d5f1701.woff2')format("woff");}.ff1_c01298{font-family:ff1_c01298;line-height:1.109863;font-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_c01298{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01298{transform:matrix(0.075600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075600,0.000000,0.000000,0.250000,0,0);}
.m13a_c01298{transform:matrix(0.081350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081350,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01298{transform:matrix(0.095300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095300,0.000000,0.000000,0.250000,0,0);}
.mf9_c01298{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);}
.m1a7_c01298{transform:matrix(0.100475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100475,0.000000,0.000000,0.250000,0,0);}
.m12a_c01298{transform:matrix(0.107600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107600,0.000000,0.000000,0.250000,0,0);}
.m16e_c01298{transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);}
.mbc_c01298{transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108025,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01298{transform:matrix(0.110275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110275,0.000000,0.000000,0.250000,0,0);}
.m12d_c01298{transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);}
.m26_c01298{transform:matrix(0.115750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115750,0.000000,0.000000,0.250000,0,0);}
.ma6_c01298{transform:matrix(0.115875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115875,0.000000,0.000000,0.250000,0,0);}
.m74_c01298{transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01298{transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01298{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01298{transform:matrix(0.119225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119225,0.000000,0.000000,0.250000,0,0);}
.m8c_c01298{transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);}
.m18c_c01298{transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01298{transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01298{transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);}
.m122_c01298{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01298{transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);}
.m193_c01298{transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);}
.m12e_c01298{transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01298{transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);}
.mf2_c01298{transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);}
.m1c_c01298{transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127800,0.000000,0.000000,0.250000,0,0);}
.m4c_c01298{transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);}
.m130_c01298{transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129075,0.000000,0.000000,0.250000,0,0);}
.m16_c01298{transform:matrix(0.130225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130225,0.000000,0.000000,0.250000,0,0);}
.m12f_c01298{transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);}
.m53_c01298{transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);}
.m191_c01298{transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);}
.m13f_c01298{transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);}
.m17_c01298{transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);}
.m13d_c01298{transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134475,0.000000,0.000000,0.250000,0,0);}
.ma7_c01298{transform:matrix(0.134725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134725,0.000000,0.000000,0.250000,0,0);}
.mb7_c01298{transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);}
.m128_c01298{transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);}
.m187_c01298{transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);}
.m32_c01298{transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);}
.mec_c01298{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m160_c01298{transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);}
.m170_c01298{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.m11c_c01298{transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01298{transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);}
.m182_c01298{transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);}
.m19d_c01298{transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);}
.m19c_c01298{transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);}
.m73_c01298{transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139400,0.000000,0.000000,0.250000,0,0);}
.m12b_c01298{transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139500,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01298{transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);}
.m16a_c01298{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);}
.mb1_c01298{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m116_c01298{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01298{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.m4_c01298{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m114_c01298{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);}
.m19e_c01298{transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);}
.m1be_c01298{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);}
.m171_c01298{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);}
.m2e_c01298{transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01298{transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);}
.m14_c01298{transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);}
.ma4_c01298{transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01298{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);}
.m1ce_c01298{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);}
.m14e_c01298{transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);}
.me9_c01298{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01298{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m143_c01298{transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);}
.m61_c01298{transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151475,0.000000,0.000000,0.250000,0,0);}
.mc2_c01298{transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);}
.m140_c01298{transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);}
.mc0_c01298{transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152650,0.000000,0.000000,0.250000,0,0);}
.m15d_c01298{transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);}
.m14f_c01298{transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);}
.m36_c01298{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m18f_c01298{transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01298{transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);}
.m24_c01298{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);}
.m15e_c01298{transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);}
.m1af_c01298{transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154900,0.000000,0.000000,0.250000,0,0);}
.m11d_c01298{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);}
.m157_c01298{transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01298{transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);}
.mc9_c01298{transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);}
.m19b_c01298{transform:matrix(0.157600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157600,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01298{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);}
.maf_c01298{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m192_c01298{transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);}
.m15f_c01298{transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);}
.me6_c01298{transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161525,0.000000,0.000000,0.250000,0,0);}
.m33_c01298{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.m59_c01298{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);}
.m181_c01298{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);}
.mc4_c01298{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m16f_c01298{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m4d_c01298{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01298{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.mfa_c01298{transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);}
.m10c_c01298{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);}
.m7a_c01298{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);}
.mff_c01298{transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);}
.m165_c01298{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.ma5_c01298{transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);}
.m138_c01298{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.m176_c01298{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_c01298{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m129_c01298{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01298{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01298{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m7d_c01298{transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);}
.m102_c01298{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);}
.m1bd_c01298{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m1d_c01298{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m21_c01298{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);}
.m1b5_c01298{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m155_c01298{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m17f_c01298{transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);}
.m117_c01298{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);}
.m158_c01298{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m123_c01298{transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);}
.m10b_c01298{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.m15b_c01298{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.m177_c01298{transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);}
.m90_c01298{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01298{transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);}
.m175_c01298{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);}
.m9e_c01298{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m159_c01298{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.m72_c01298{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m142_c01298{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01298{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.m88_c01298{transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);}
.m8d_c01298{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m14c_c01298{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m151_c01298{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);}
.m7b_c01298{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);}
.m81_c01298{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.m18_c01298{transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);}
.m144_c01298{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);}
.m6d_c01298{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m96_c01298{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m135_c01298{transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);}
.mb6_c01298{transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);}
.m75_c01298{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.m17b_c01298{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m107_c01298{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.m173_c01298{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m83_c01298{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m153_c01298{transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01298{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);}
.m70_c01298{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m168_c01298{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);}
.m172_c01298{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m22_c01298{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.m139_c01298{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m113_c01298{transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);}
.m3a_c01298{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m1a_c01298{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.mc3_c01298{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m179_c01298{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m126_c01298{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.m71_c01298{transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);}
.m69_c01298{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);}
.m92_c01298{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m2f_c01298{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m190_c01298{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);}
.m25_c01298{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.m103_c01298{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m127_c01298{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);}
.m65_c01298{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.mc5_c01298{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.mbb_c01298{transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);}
.m80_c01298{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m58_c01298{transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);}
.m18d_c01298{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);}
.m10d_c01298{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);}
.m186_c01298{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m5c_c01298{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.m124_c01298{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);}
.ma9_c01298{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m16c_c01298{transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193725,0.000000,0.000000,0.250000,0,0);}
.m167_c01298{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);}
.mb2_c01298{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);}
.mc1_c01298{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);}
.m1bb_c01298{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m154_c01298{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.mbe_c01298{transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);}
.m149_c01298{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m19_c01298{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.m38_c01298{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);}
.mdb_c01298{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.mc8_c01298{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.m97_c01298{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m198_c01298{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01298{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.me4_c01298{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);}
.m106_c01298{transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);}
.m141_c01298{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);}
.m11a_c01298{transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);}
.m2c_c01298{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);}
.m164_c01298{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);}
.me2_c01298{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);}
.m1b2_c01298{transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);}
.m110_c01298{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m3f_c01298{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);}
.mc7_c01298{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m29_c01298{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);}
.m6c_c01298{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);}
.m5_c01298{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.md4_c01298{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m156_c01298{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01298{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);}
.mfd_c01298{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m197_c01298{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m17e_c01298{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m76_c01298{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.m4e_c01298{transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);}
.m6b_c01298{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.m18e_c01298{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m111_c01298{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m105_c01298{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);}
.mda_c01298{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.mb3_c01298{transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01298{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.me0_c01298{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m180_c01298{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);}
.mf7_c01298{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);}
.ma3_c01298{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m115_c01298{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);}
.m0_c01298{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);}
.m18b_c01298{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.m125_c01298{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);}
.m189_c01298{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);}
.m45_c01298{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);}
.m1c3_c01298{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);}
.m196_c01298{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);}
.m183_c01298{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.m104_c01298{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);}
.mba_c01298{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m54_c01298{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m17d_c01298{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.m194_c01298{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);}
.me3_c01298{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m15a_c01298{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);}
.m1a2_c01298{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.m148_c01298{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);}
.md2_c01298{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);}
.m1aa_c01298{transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);}
.m9_c01298{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);}
.m37_c01298{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);}
.m9d_c01298{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);}
.m11f_c01298{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.m8e_c01298{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.m98_c01298{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m199_c01298{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);}
.m145_c01298{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.mca_c01298{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);}
.m185_c01298{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);}
.m35_c01298{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);}
.me7_c01298{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m2d_c01298{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);}
.m188_c01298{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);}
.mee_c01298{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.mfc_c01298{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.mfe_c01298{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);}
.m101_c01298{transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);}
.mf6_c01298{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m11b_c01298{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m95_c01298{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);}
.m12c_c01298{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.m11_c01298{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);}
.m44_c01298{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01298{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);}
.m15c_c01298{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.m41_c01298{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m9a_c01298{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);}
.m2_c01298{transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);}
.mde_c01298{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.md0_c01298{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);}
.m8f_c01298{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.m100_c01298{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);}
.md8_c01298{transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);}
.md1_c01298{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01298{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);}
.m68_c01298{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m55_c01298{transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);}
.m13e_c01298{transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);}
.m19a_c01298{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);}
.mb0_c01298{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);}
.m82_c01298{transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);}
.m23_c01298{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);}
.ma2_c01298{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m50_c01298{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);}
.m17a_c01298{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.mf8_c01298{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);}
.m52_c01298{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);}
.m12_c01298{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);}
.m152_c01298{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.mf3_c01298{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.m120_c01298{transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234700,0.000000,0.000000,0.250000,0,0);}
.m16d_c01298{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);}
.m94_c01298{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01298{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);}
.m3d_c01298{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);}
.m51_c01298{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);}
.m31_c01298{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m14a_c01298{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m5a_c01298{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01298{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m99_c01298{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);}
.m48_c01298{transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);}
.m60_c01298{transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);}
.m15_c01298{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);}
.m1c6_c01298{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);}
.m1cf_c01298{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);}
.m132_c01298{transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);}
.m13b_c01298{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m77_c01298{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.mef_c01298{transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);}
.m85_c01298{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.m10e_c01298{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m19f_c01298{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);}
.m184_c01298{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);}
.md9_c01298{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);}
.mdd_c01298{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);}
.m9c_c01298{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);}
.mcb_c01298{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);}
.m112_c01298{transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);}
.md6_c01298{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);}
.m14b_c01298{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.mcc_c01298{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m7e_c01298{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);}
.m133_c01298{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);}
.mfb_c01298{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);}
.med_c01298{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m178_c01298{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m5f_c01298{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);}
.m49_c01298{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01298{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);}
.mab_c01298{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);}
.m1f_c01298{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);}
.m3b_c01298{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);}
.m63_c01298{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m57_c01298{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md5_c01298{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m10_c01298{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);}
.mad_c01298{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m131_c01298{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);}
.m4f_c01298{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);}
.m2a_c01298{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md7_c01298{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);}
.m28_c01298{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf0_c01298{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mdc_c01298{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);}
.m84_c01298{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma8_c01298{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);}
.m46_c01298{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);}
.m6f_c01298{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01298{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m67_c01298{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);}
.m3e_c01298{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m42_c01298{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mae_c01298{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);}
.m5b_c01298{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m27_c01298{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m56_c01298{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01298{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.meb_c01298{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8_c01298{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m78_c01298{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m136_c01298{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);}
.m39_c01298{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8a_c01298{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me1_c01298{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma_c01298{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01298{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);}
.m10f_c01298{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);}
.m34_c01298{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c01298{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me8_c01298{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);}
.mdf_c01298{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.me5_c01298{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf4_c01298{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m64_c01298{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);}
.m18a_c01298{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m66_c01298{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m91_c01298{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);}
.mea_c01298{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m11e_c01298{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mf1_c01298{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);}
.m166_c01298{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m79_c01298{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m40_c01298{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01298{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m17c_c01298{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m174_c01298{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m195_c01298{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m162_c01298{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m47_c01298{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);}
.m89_c01298{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb4_c01298{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.md_c01298{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m16b_c01298{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01298{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m30_c01298{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01298{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m43_c01298{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);}
.mce_c01298{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m13_c01298{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mcd_c01298{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mac_c01298{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.md3_c01298{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mf5_c01298{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mb8_c01298{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01298{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mbd_c01298{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01298{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01298{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m62_c01298{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);}
.ma0_c01298{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01298{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m137_c01298{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);}
.mb5_c01298{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m147_c01298{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.ma1_c01298{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);}
.m1_c01298{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m146_c01298{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m93_c01298{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m7_c01298{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m118_c01298{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.mb9_c01298{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01298{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m150_c01298{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);}
.m13c_c01298{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.maa_c01298{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.mc_c01298{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.mcf_c01298{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01298{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m163_c01298{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);}
.mb_c01298{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m9b_c01298{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m119_c01298{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.mc6_c01298{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01298{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);}
.m169_c01298{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01298{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m108_c01298{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m121_c01298{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m14d_c01298{transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);}
.mf_c01298{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m20_c01298{transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);}
.m87_c01298{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01298{transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);}
.m86_c01298{transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.502500,0.000000,0.000000,0.250000,0,0);}
.m10a_c01298{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m3_c01298{transform:matrix(1.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.877500,0.000000,0.000000,0.250000,0,0);}
.m134_c01298{transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);}
.m109_c01298{transform:matrix(2.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.812500,0.000000,0.000000,0.250000,0,0);}
.m161_c01298{transform:matrix(3.977500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.977500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.977500,0.000000,0.000000,0.250000,0,0);}
.me_c01298{transform:matrix(6.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.267500,0.000000,0.000000,0.250000,0,0);}
.v1_c01298{vertical-align:-6.960000px;}
.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:-22.366980px;}
.ws3_c01298{word-spacing:-10.642080px;}
.ws1_c01298{word-spacing:-5.718480px;}
.ws2_c01298{word-spacing:-0.904260px;}
.ws4_c01298{word-spacing:0.000000px;}
.fc0_c01298{color:transparent;}
.fs4_c01298{font-size:3.456000px;}
.fs17_c01298{font-size:6.000000px;}
.fs1c_c01298{font-size:6.900000px;}
.fsc_c01298{font-size:10.380000px;}
.fse_c01298{font-size:13.800000px;}
.fs7_c01298{font-size:17.280000px;}
.fs1_c01298{font-size:20.760000px;}
.fs1a_c01298{font-size:24.180000px;}
.fsd_c01298{font-size:27.660000px;}
.fsf_c01298{font-size:31.080000px;}
.fs6_c01298{font-size:34.560000px;}
.fs1d_c01298{font-size:38.040000px;}
.fsb_c01298{font-size:41.460000px;}
.fs0_c01298{font-size:44.940000px;}
.fs16_c01298{font-size:48.360000px;}
.fs3_c01298{font-size:51.840000px;}
.fs15_c01298{font-size:55.320000px;}
.fs14_c01298{font-size:58.740000px;}
.fs13_c01298{font-size:62.220000px;}
.fs18_c01298{font-size:65.640000px;}
.fs1b_c01298{font-size:69.120000px;}
.fs8_c01298{font-size:72.600000px;}
.fs5_c01298{font-size:76.020000px;}
.fs11_c01298{font-size:79.500000px;}
.fs10_c01298{font-size:82.920000px;}
.fs19_c01298{font-size:86.400000px;}
.fsa_c01298{font-size:89.880000px;}
.fs1f_c01298{font-size:93.300000px;}
.fs12_c01298{font-size:96.780000px;}
.fs9_c01298{font-size:100.200000px;}
.fs1e_c01298{font-size:103.680000px;}
.fs2_c01298{font-size:259.200000px;}
.y0_c01298{bottom:0.000000px;}
.y1e4_c01298{bottom:179.715000px;}
.y1e9_c01298{bottom:181.440000px;}
.y1ea_c01298{bottom:184.035000px;}
.y1e7_c01298{bottom:185.760000px;}
.y1e8_c01298{bottom:186.630000px;}
.y1e6_c01298{bottom:187.485000px;}
.y1eb_c01298{bottom:189.210000px;}
.y1e5_c01298{bottom:190.950000px;}
.y1df_c01298{bottom:191.805000px;}
.y1e0_c01298{bottom:192.675000px;}
.y1e1_c01298{bottom:193.530000px;}
.y1de_c01298{bottom:194.400000px;}
.y1dd_c01298{bottom:196.995000px;}
.y1e3_c01298{bottom:205.635000px;}
.y1e2_c01298{bottom:208.230000px;}
.y1da_c01298{bottom:209.085000px;}
.y1d9_c01298{bottom:209.955000px;}
.y1d8_c01298{bottom:210.810000px;}
.y1dc_c01298{bottom:214.275000px;}
.y1db_c01298{bottom:215.130000px;}
.y1d3_c01298{bottom:223.770000px;}
.y1cf_c01298{bottom:224.640000px;}
.y1d2_c01298{bottom:226.365000px;}
.y1d1_c01298{bottom:227.235000px;}
.y1ce_c01298{bottom:228.090000px;}
.y1cd_c01298{bottom:228.960000px;}
.y1d0_c01298{bottom:230.685000px;}
.y1d7_c01298{bottom:231.555000px;}
.y1d4_c01298{bottom:233.280000px;}
.y1d6_c01298{bottom:234.150000px;}
.y1d5_c01298{bottom:235.005000px;}
.y1cb_c01298{bottom:247.110000px;}
.y1ca_c01298{bottom:250.560000px;}
.y1c8_c01298{bottom:251.430000px;}
.y1c6_c01298{bottom:253.155000px;}
.y1cc_c01298{bottom:254.880000px;}
.y1c9_c01298{bottom:256.605000px;}
.y1c5_c01298{bottom:263.520000px;}
.y1c7_c01298{bottom:264.390000px;}
.y1c2_c01298{bottom:269.565000px;}
.y1c1_c01298{bottom:270.435000px;}
.y1be_c01298{bottom:271.290000px;}
.y1bd_c01298{bottom:272.160000px;}
.y1ba_c01298{bottom:273.030000px;}
.y1bf_c01298{bottom:273.885000px;}
.y1c3_c01298{bottom:274.755000px;}
.y1c0_c01298{bottom:275.610000px;}
.y1bc_c01298{bottom:277.350000px;}
.y1c4_c01298{bottom:278.205000px;}
.y1bb_c01298{bottom:289.440000px;}
.y1b5_c01298{bottom:290.310000px;}
.y1b6_c01298{bottom:291.165000px;}
.y1b3_c01298{bottom:292.035000px;}
.y1b8_c01298{bottom:292.890000px;}
.y1b0_c01298{bottom:293.760000px;}
.y1b2_c01298{bottom:294.630000px;}
.y1b7_c01298{bottom:295.485000px;}
.y1b1_c01298{bottom:296.355000px;}
.y1b4_c01298{bottom:297.210000px;}
.y1b9_c01298{bottom:309.315000px;}
.y1ae_c01298{bottom:311.040000px;}
.y1af_c01298{bottom:311.910000px;}
.y1a6_c01298{bottom:313.635000px;}
.y1ab_c01298{bottom:314.490000px;}
.y1aa_c01298{bottom:315.360000px;}
.y1a7_c01298{bottom:316.230000px;}
.y1ad_c01298{bottom:317.085000px;}
.y1a9_c01298{bottom:317.955000px;}
.y1a8_c01298{bottom:318.810000px;}
.y1ac_c01298{bottom:327.450000px;}
.y1a3_c01298{bottom:331.770000px;}
.y1a4_c01298{bottom:332.640000px;}
.y1a0_c01298{bottom:333.510000px;}
.y19f_c01298{bottom:334.365000px;}
.y19e_c01298{bottom:335.235000px;}
.y1a2_c01298{bottom:337.830000px;}
.y1a1_c01298{bottom:338.685000px;}
.y19d_c01298{bottom:345.600000px;}
.y1a5_c01298{bottom:348.195000px;}
.y19c_c01298{bottom:351.645000px;}
.y19b_c01298{bottom:352.515000px;}
.y198_c01298{bottom:355.110000px;}
.y197_c01298{bottom:355.965000px;}
.y195_c01298{bottom:356.835000px;}
.y19a_c01298{bottom:357.690000px;}
.y196_c01298{bottom:358.560000px;}
.y199_c01298{bottom:368.070000px;}
.y194_c01298{bottom:370.650000px;}
.y193_c01298{bottom:372.390000px;}
.y190_c01298{bottom:373.245000px;}
.y18e_c01298{bottom:374.970000px;}
.y191_c01298{bottom:375.840000px;}
.y18f_c01298{bottom:378.435000px;}
.y192_c01298{bottom:379.290000px;}
.y18d_c01298{bottom:381.030000px;}
.y18c_c01298{bottom:391.395000px;}
.y187_c01298{bottom:393.990000px;}
.y185_c01298{bottom:394.845000px;}
.y184_c01298{bottom:395.715000px;}
.y18b_c01298{bottom:398.310000px;}
.y188_c01298{bottom:399.165000px;}
.y186_c01298{bottom:400.035000px;}
.y189_c01298{bottom:409.530000px;}
.y183_c01298{bottom:411.270000px;}
.y182_c01298{bottom:412.125000px;}
.y18a_c01298{bottom:413.850000px;}
.y17b_c01298{bottom:414.720000px;}
.y17d_c01298{bottom:415.590000px;}
.y17a_c01298{bottom:416.445000px;}
.y178_c01298{bottom:417.315000px;}
.y17f_c01298{bottom:418.170000px;}
.y179_c01298{bottom:419.040000px;}
.y17e_c01298{bottom:419.910000px;}
.y17c_c01298{bottom:420.765000px;}
.y180_c01298{bottom:421.635000px;}
.y177_c01298{bottom:423.360000px;}
.y181_c01298{bottom:429.405000px;}
.y173_c01298{bottom:435.450000px;}
.y176_c01298{bottom:436.320000px;}
.y175_c01298{bottom:437.190000px;}
.y172_c01298{bottom:438.045000px;}
.y174_c01298{bottom:440.640000px;}
.y16a_c01298{bottom:442.365000px;}
.y171_c01298{bottom:445.830000px;}
.y16c_c01298{bottom:446.685000px;}
.y16d_c01298{bottom:447.555000px;}
.y16e_c01298{bottom:448.410000px;}
.y170_c01298{bottom:449.280000px;}
.y16f_c01298{bottom:450.150000px;}
.y16b_c01298{bottom:451.005000px;}
.y169_c01298{bottom:451.875000px;}
.y164_c01298{bottom:457.050000px;}
.y166_c01298{bottom:462.240000px;}
.y168_c01298{bottom:463.965000px;}
.y167_c01298{bottom:464.835000px;}
.y165_c01298{bottom:470.880000px;}
.y15d_c01298{bottom:472.605000px;}
.y15e_c01298{bottom:473.475000px;}
.y15f_c01298{bottom:482.970000px;}
.y162_c01298{bottom:487.290000px;}
.y160_c01298{bottom:490.755000px;}
.y161_c01298{bottom:492.480000px;}
.y163_c01298{bottom:493.350000px;}
.y159_c01298{bottom:495.930000px;}
.y157_c01298{bottom:496.800000px;}
.y15b_c01298{bottom:497.670000px;}
.y154_c01298{bottom:498.525000px;}
.y156_c01298{bottom:500.250000px;}
.y158_c01298{bottom:501.990000px;}
.y155_c01298{bottom:502.845000px;}
.y15a_c01298{bottom:506.310000px;}
.y15c_c01298{bottom:512.355000px;}
.y153_c01298{bottom:514.950000px;}
.y14e_c01298{bottom:515.805000px;}
.y150_c01298{bottom:516.675000px;}
.y14a_c01298{bottom:517.530000px;}
.y14d_c01298{bottom:518.400000px;}
.y152_c01298{bottom:519.270000px;}
.y14c_c01298{bottom:520.125000px;}
.y151_c01298{bottom:520.995000px;}
.y14f_c01298{bottom:521.850000px;}
.y14b_c01298{bottom:522.720000px;}
.y149_c01298{bottom:534.810000px;}
.y147_c01298{bottom:536.550000px;}
.y146_c01298{bottom:537.405000px;}
.y148_c01298{bottom:538.275000px;}
.y145_c01298{bottom:547.770000px;}
.y144_c01298{bottom:549.510000px;}
.y13f_c01298{bottom:556.410000px;}
.y141_c01298{bottom:557.280000px;}
.y13e_c01298{bottom:558.150000px;}
.y13c_c01298{bottom:559.005000px;}
.y13d_c01298{bottom:560.730000px;}
.y143_c01298{bottom:561.600000px;}
.y142_c01298{bottom:562.470000px;}
.y13b_c01298{bottom:564.195000px;}
.y140_c01298{bottom:570.240000px;}
.y139_c01298{bottom:572.835000px;}
.y13a_c01298{bottom:575.430000px;}
.y134_c01298{bottom:576.285000px;}
.y132_c01298{bottom:577.155000px;}
.y135_c01298{bottom:578.010000px;}
.y133_c01298{bottom:578.880000px;}
.y138_c01298{bottom:579.750000px;}
.y12f_c01298{bottom:580.605000px;}
.y136_c01298{bottom:581.475000px;}
.y130_c01298{bottom:582.330000px;}
.y137_c01298{bottom:584.070000px;}
.y12d_c01298{bottom:590.970000px;}
.y12e_c01298{bottom:594.435000px;}
.y131_c01298{bottom:597.030000px;}
.y12c_c01298{bottom:597.885000px;}
.y12a_c01298{bottom:598.755000px;}
.y129_c01298{bottom:599.610000px;}
.y122_c01298{bottom:600.480000px;}
.y124_c01298{bottom:601.350000px;}
.y125_c01298{bottom:603.075000px;}
.y12b_c01298{bottom:603.930000px;}
.y127_c01298{bottom:605.670000px;}
.y126_c01298{bottom:606.525000px;}
.y123_c01298{bottom:609.990000px;}
.y128_c01298{bottom:611.715000px;}
.y11e_c01298{bottom:613.440000px;}
.y11a_c01298{bottom:614.310000px;}
.y11c_c01298{bottom:615.165000px;}
.y11f_c01298{bottom:616.035000px;}
.y11d_c01298{bottom:617.760000px;}
.y121_c01298{bottom:619.485000px;}
.y120_c01298{bottom:622.950000px;}
.y11b_c01298{bottom:625.530000px;}
.y116_c01298{bottom:637.635000px;}
.y114_c01298{bottom:638.490000px;}
.y112_c01298{bottom:639.360000px;}
.y111_c01298{bottom:641.955000px;}
.y117_c01298{bottom:642.810000px;}
.y115_c01298{bottom:643.680000px;}
.y113_c01298{bottom:644.550000px;}
.y10f_c01298{bottom:646.275000px;}
.y110_c01298{bottom:647.130000px;}
.y119_c01298{bottom:651.450000px;}
.y118_c01298{bottom:654.915000px;}
.y109_c01298{bottom:657.510000px;}
.y10e_c01298{bottom:658.365000px;}
.y107_c01298{bottom:659.235000px;}
.y108_c01298{bottom:660.090000px;}
.y10b_c01298{bottom:660.960000px;}
.y10d_c01298{bottom:662.685000px;}
.y10a_c01298{bottom:663.555000px;}
.y10c_c01298{bottom:671.325000px;}
.y101_c01298{bottom:678.240000px;}
.yfb_c01298{bottom:679.110000px;}
.yfd_c01298{bottom:679.965000px;}
.y106_c01298{bottom:680.835000px;}
.y102_c01298{bottom:681.690000px;}
.y100_c01298{bottom:682.560000px;}
.yfe_c01298{bottom:683.430000px;}
.yfa_c01298{bottom:684.285000px;}
.yf9_c01298{bottom:686.010000px;}
.y104_c01298{bottom:686.880000px;}
.yff_c01298{bottom:690.330000px;}
.y103_c01298{bottom:692.070000px;}
.yfc_c01298{bottom:692.925000px;}
.y105_c01298{bottom:693.795000px;}
.yf8_c01298{bottom:697.245000px;}
.yf6_c01298{bottom:698.115000px;}
.yf4_c01298{bottom:698.970000px;}
.yf3_c01298{bottom:700.710000px;}
.yf7_c01298{bottom:703.290000px;}
.yf5_c01298{bottom:705.885000px;}
.yf2_c01298{bottom:717.990000px;}
.yf0_c01298{bottom:719.715000px;}
.yf1_c01298{bottom:724.035000px;}
.yef_c01298{bottom:726.630000px;}
.yee_c01298{bottom:737.850000px;}
.ye6_c01298{bottom:739.590000px;}
.ye9_c01298{bottom:740.445000px;}
.ye7_c01298{bottom:741.315000px;}
.yec_c01298{bottom:745.635000px;}
.ye8_c01298{bottom:747.360000px;}
.yed_c01298{bottom:748.230000px;}
.yea_c01298{bottom:749.955000px;}
.yeb_c01298{bottom:752.550000px;}
.ye1_c01298{bottom:759.450000px;}
.ye3_c01298{bottom:760.320000px;}
.ye5_c01298{bottom:761.190000px;}
.ye2_c01298{bottom:764.640000px;}
.ye4_c01298{bottom:766.365000px;}
.yde_c01298{bottom:779.325000px;}
.ye0_c01298{bottom:780.195000px;}
.ydb_c01298{bottom:781.050000px;}
.ydc_c01298{bottom:781.920000px;}
.ydd_c01298{bottom:782.790000px;}
.ydf_c01298{bottom:785.370000px;}
.yd9_c01298{bottom:800.070000px;}
.yd6_c01298{bottom:801.795000px;}
.yd8_c01298{bottom:805.245000px;}
.yd7_c01298{bottom:806.115000px;}
.yda_c01298{bottom:809.565000px;}
.yd5_c01298{bottom:812.160000px;}
.yce_c01298{bottom:819.075000px;}
.yd1_c01298{bottom:819.930000px;}
.yd4_c01298{bottom:820.800000px;}
.ycf_c01298{bottom:821.670000px;}
.yd2_c01298{bottom:825.120000px;}
.yd3_c01298{bottom:825.990000px;}
.yd0_c01298{bottom:826.845000px;}
.ycd_c01298{bottom:832.035000px;}
.ycb_c01298{bottom:839.805000px;}
.yca_c01298{bottom:841.530000px;}
.yc8_c01298{bottom:842.400000px;}
.ycc_c01298{bottom:844.995000px;}
.yc9_c01298{bottom:845.850000px;}
.yc5_c01298{bottom:860.550000px;}
.yc6_c01298{bottom:863.130000px;}
.yc4_c01298{bottom:864.870000px;}
.yc1_c01298{bottom:865.725000px;}
.yc7_c01298{bottom:866.595000px;}
.yc3_c01298{bottom:867.450000px;}
.yc2_c01298{bottom:870.915000px;}
.ybf_c01298{bottom:878.685000px;}
.ybe_c01298{bottom:880.410000px;}
.ybc_c01298{bottom:881.280000px;}
.ybd_c01298{bottom:884.730000px;}
.ybb_c01298{bottom:885.600000px;}
.yba_c01298{bottom:886.470000px;}
.yc0_c01298{bottom:891.645000px;}
.yb9_c01298{bottom:901.155000px;}
.yb4_c01298{bottom:902.010000px;}
.yb7_c01298{bottom:903.750000px;}
.yb3_c01298{bottom:904.605000px;}
.yb5_c01298{bottom:905.475000px;}
.yb6_c01298{bottom:906.330000px;}
.yb8_c01298{bottom:907.200000px;}
.yb2_c01298{bottom:908.070000px;}
.yae_c01298{bottom:921.030000px;}
.yad_c01298{bottom:921.885000px;}
.yb0_c01298{bottom:924.480000px;}
.yaf_c01298{bottom:926.205000px;}
.yb1_c01298{bottom:927.075000px;}
.yac_c01298{bottom:939.165000px;}
.ya9_c01298{bottom:940.035000px;}
.ya7_c01298{bottom:941.760000px;}
.ya6_c01298{bottom:942.630000px;}
.ya5_c01298{bottom:944.355000px;}
.yaa_c01298{bottom:945.210000px;}
.ya8_c01298{bottom:946.950000px;}
.yab_c01298{bottom:947.805000px;}
.ya2_c01298{bottom:961.635000px;}
.ya0_c01298{bottom:963.360000px;}
.ya3_c01298{bottom:966.810000px;}
.ya4_c01298{bottom:967.680000px;}
.ya1_c01298{bottom:968.550000px;}
.y9f_c01298{bottom:974.595000px;}
.y9d_c01298{bottom:980.640000px;}
.y99_c01298{bottom:981.510000px;}
.y9c_c01298{bottom:983.235000px;}
.y98_c01298{bottom:984.090000px;}
.y97_c01298{bottom:984.960000px;}
.y9b_c01298{bottom:986.685000px;}
.y9a_c01298{bottom:987.555000px;}
.y9e_c01298{bottom:988.410000px;}
.y96_c01298{bottom:1002.240000px;}
.y8f_c01298{bottom:1003.110000px;}
.y94_c01298{bottom:1004.835000px;}
.y93_c01298{bottom:1007.430000px;}
.y95_c01298{bottom:1008.285000px;}
.y91_c01298{bottom:1010.010000px;}
.y8e_c01298{bottom:1016.070000px;}
.y90_c01298{bottom:1016.925000px;}
.y92_c01298{bottom:1018.650000px;}
.y84_c01298{bottom:1022.115000px;}
.y85_c01298{bottom:1022.970000px;}
.y8d_c01298{bottom:1023.840000px;}
.y83_c01298{bottom:1025.565000px;}
.y8b_c01298{bottom:1026.435000px;}
.y8c_c01298{bottom:1027.290000px;}
.y89_c01298{bottom:1028.160000px;}
.y88_c01298{bottom:1032.480000px;}
.y86_c01298{bottom:1033.350000px;}
.y87_c01298{bottom:1034.205000px;}
.y8a_c01298{bottom:1040.250000px;}
.y82_c01298{bottom:1041.120000px;}
.y80_c01298{bottom:1042.845000px;}
.y7e_c01298{bottom:1043.715000px;}
.y7f_c01298{bottom:1044.570000px;}
.y7c_c01298{bottom:1045.440000px;}
.y81_c01298{bottom:1048.035000px;}
.y7d_c01298{bottom:1049.760000px;}
.y79_c01298{bottom:1060.995000px;}
.y7a_c01298{bottom:1062.720000px;}
.y71_c01298{bottom:1063.590000px;}
.y74_c01298{bottom:1064.445000px;}
.y7b_c01298{bottom:1066.170000px;}
.y73_c01298{bottom:1067.910000px;}
.y77_c01298{bottom:1068.765000px;}
.y76_c01298{bottom:1070.490000px;}
.y78_c01298{bottom:1071.360000px;}
.y72_c01298{bottom:1074.810000px;}
.y75_c01298{bottom:1075.680000px;}
.y6c_c01298{bottom:1084.320000px;}
.y6a_c01298{bottom:1085.190000px;}
.y1f8_c01298{bottom:1086.045000px;}
.y6e_c01298{bottom:1086.915000px;}
.y6d_c01298{bottom:1087.770000px;}
.y6b_c01298{bottom:1089.510000px;}
.y6f_c01298{bottom:1091.235000px;}
.y70_c01298{bottom:1096.410000px;}
.y69_c01298{bottom:1102.470000px;}
.y66_c01298{bottom:1103.325000px;}
.y65_c01298{bottom:1104.195000px;}
.y68_c01298{bottom:1105.050000px;}
.y64_c01298{bottom:1109.370000px;}
.y67_c01298{bottom:1112.835000px;}
.y63_c01298{bottom:1121.475000px;}
.y1f6_c01298{bottom:1122.330000px;}
.y1f7_c01298{bottom:1123.200000px;}
.y5d_c01298{bottom:1124.925000px;}
.y5f_c01298{bottom:1125.795000px;}
.y61_c01298{bottom:1126.650000px;}
.y60_c01298{bottom:1130.115000px;}
.y5e_c01298{bottom:1130.970000px;}
.y62_c01298{bottom:1131.840000px;}
.y58_c01298{bottom:1145.670000px;}
.y5b_c01298{bottom:1147.395000px;}
.y5c_c01298{bottom:1148.250000px;}
.y5a_c01298{bottom:1149.120000px;}
.y59_c01298{bottom:1150.845000px;}
.y1f5_c01298{bottom:1153.440000px;}
.y53_c01298{bottom:1164.675000px;}
.y54_c01298{bottom:1165.530000px;}
.y52_c01298{bottom:1168.995000px;}
.y57_c01298{bottom:1169.850000px;}
.y56_c01298{bottom:1170.720000px;}
.y55_c01298{bottom:1177.635000px;}
.y4f_c01298{bottom:1184.550000px;}
.y4b_c01298{bottom:1185.405000px;}
.y4d_c01298{bottom:1188.000000px;}
.y4a_c01298{bottom:1188.870000px;}
.y4e_c01298{bottom:1189.725000px;}
.y4c_c01298{bottom:1190.595000px;}
.y50_c01298{bottom:1191.450000px;}
.y51_c01298{bottom:1192.320000px;}
.y49_c01298{bottom:1200.960000px;}
.y47_c01298{bottom:1205.280000px;}
.y43_c01298{bottom:1206.150000px;}
.y42_c01298{bottom:1208.730000px;}
.y45_c01298{bottom:1209.600000px;}
.y46_c01298{bottom:1210.470000px;}
.y48_c01298{bottom:1212.195000px;}
.y44_c01298{bottom:1213.050000px;}
.y3f_c01298{bottom:1226.010000px;}
.y3e_c01298{bottom:1227.750000px;}
.y3c_c01298{bottom:1228.605000px;}
.y40_c01298{bottom:1229.475000px;}
.y3d_c01298{bottom:1232.070000px;}
.y41_c01298{bottom:1236.390000px;}
.y36_c01298{bottom:1246.755000px;}
.y3a_c01298{bottom:1247.610000px;}
.y35_c01298{bottom:1248.480000px;}
.y37_c01298{bottom:1251.930000px;}
.y38_c01298{bottom:1252.800000px;}
.y34_c01298{bottom:1254.525000px;}
.y1ee_c01298{bottom:1256.250000px;}
.y39_c01298{bottom:1257.120000px;}
.y3b_c01298{bottom:1258.845000px;}
.y1ef_c01298{bottom:1259.715000px;}
.y32_c01298{bottom:1266.630000px;}
.y2d_c01298{bottom:1267.485000px;}
.y31_c01298{bottom:1268.355000px;}
.y2f_c01298{bottom:1270.950000px;}
.y33_c01298{bottom:1271.805000px;}
.y2e_c01298{bottom:1272.675000px;}
.y30_c01298{bottom:1273.530000px;}
.y2c_c01298{bottom:1286.490000px;}
.y2a_c01298{bottom:1287.360000px;}
.y27_c01298{bottom:1288.230000px;}
.y2b_c01298{bottom:1289.085000px;}
.y25_c01298{bottom:1289.955000px;}
.y26_c01298{bottom:1291.680000px;}
.y28_c01298{bottom:1292.550000px;}
.y29_c01298{bottom:1293.405000px;}
.y24_c01298{bottom:1307.235000px;}
.y21_c01298{bottom:1308.090000px;}
.y20_c01298{bottom:1308.960000px;}
.y1f_c01298{bottom:1309.830000px;}
.y22_c01298{bottom:1312.410000px;}
.y1d_c01298{bottom:1313.280000px;}
.y1e_c01298{bottom:1314.150000px;}
.y23_c01298{bottom:1315.005000px;}
.y1c_c01298{bottom:1325.370000px;}
.y1a_c01298{bottom:1327.110000px;}
.y17_c01298{bottom:1327.965000px;}
.y16_c01298{bottom:1328.835000px;}
.y14_c01298{bottom:1329.690000px;}
.y19_c01298{bottom:1333.155000px;}
.y15_c01298{bottom:1334.010000px;}
.y18_c01298{bottom:1337.475000px;}
.y13_c01298{bottom:1340.070000px;}
.y1b_c01298{bottom:1341.795000px;}
.y12_c01298{bottom:1351.290000px;}
.y11_c01298{bottom:1352.160000px;}
.yf_c01298{bottom:1353.030000px;}
.ye_c01298{bottom:1353.885000px;}
.y10_c01298{bottom:1354.755000px;}
.yc_c01298{bottom:1355.610000px;}
.ya_c01298{bottom:1356.480000px;}
.y6_c01298{bottom:1357.350000px;}
.y1f4_c01298{bottom:1359.075000px;}
.yd_c01298{bottom:1360.800000px;}
.y9_c01298{bottom:1362.525000px;}
.y1f3_c01298{bottom:1365.120000px;}
.y7_c01298{bottom:1369.440000px;}
.yb_c01298{bottom:1371.165000px;}
.y3_c01298{bottom:1377.210000px;}
.y8_c01298{bottom:1378.080000px;}
.y4_c01298{bottom:1381.530000px;}
.y5_c01298{bottom:1384.125000px;}
.y2_c01298{bottom:1385.850000px;}
.y1ec_c01298{bottom:1391.910000px;}
.y1ed_c01298{bottom:1393.635000px;}
.y1f2_c01298{bottom:1426.470000px;}
.y1f1_c01298{bottom:1435.110000px;}
.y1f0_c01298{bottom:1436.835000px;}
.y1_c01298{bottom:1446.330000px;}
.h6_c01298{height:3.110063px;}
.h19_c01298{height:5.399414px;}
.h1e_c01298{height:6.209326px;}
.he_c01298{height:9.340986px;}
.h10_c01298{height:12.418652px;}
.h9_c01298{height:15.550313px;}
.h3_c01298{height:18.681973px;}
.h1c_c01298{height:21.759639px;}
.hf_c01298{height:24.891299px;}
.h11_c01298{height:27.968965px;}
.h8_c01298{height:31.100625px;}
.h1f_c01298{height:34.232285px;}
.hd_c01298{height:37.309951px;}
.h2_c01298{height:40.441611px;}
.h18_c01298{height:43.519277px;}
.h5_c01298{height:46.650937px;}
.h17_c01298{height:49.782598px;}
.h16_c01298{height:52.860264px;}
.h15_c01298{height:55.991924px;}
.h1a_c01298{height:59.069590px;}
.h1d_c01298{height:62.201250px;}
.ha_c01298{height:65.332910px;}
.h7_c01298{height:68.410576px;}
.h13_c01298{height:71.542236px;}
.h12_c01298{height:74.619902px;}
.h1b_c01298{height:77.751563px;}
.hc_c01298{height:80.883223px;}
.h21_c01298{height:83.960889px;}
.h14_c01298{height:87.092549px;}
.hb_c01298{height:90.170215px;}
.h20_c01298{height:93.301875px;}
.h4_c01298{height:233.254688px;}
.h1_c01298{height:1513.500000px;}
.h0_c01298{height:1513.725000px;}
.w1_c01298{width:1076.250000px;}
.w0_c01298{width:1076.550000px;}
.x0_c01298{left:0.000000px;}
.xe8_c01298{left:96.765000px;}
.x11c_c01298{left:99.360000px;}
.xf0_c01298{left:103.680000px;}
.xe9_c01298{left:107.130000px;}
.xea_c01298{left:111.450000px;}
.xeb_c01298{left:115.770000px;}
.x9c_c01298{left:123.555000px;}
.xf1_c01298{left:128.730000px;}
.xec_c01298{left:138.240000px;}
.x9d_c01298{left:143.430000px;}
.xe5_c01298{left:146.010000px;}
.xed_c01298{left:158.970000px;}
.xde_c01298{left:164.160000px;}
.xa1_c01298{left:166.755000px;}
.x10c_c01298{left:172.800000px;}
.x94_c01298{left:178.845000px;}
.x10e_c01298{left:180.570000px;}
.xa5_c01298{left:184.890000px;}
.xfb_c01298{left:188.355000px;}
.x23_c01298{left:190.080000px;}
.x95_c01298{left:192.675000px;}
.xdf_c01298{left:194.400000px;}
.xee_c01298{left:196.995000px;}
.x10f_c01298{left:198.720000px;}
.xf7_c01298{left:201.315000px;}
.x53_c01298{left:203.040000px;}
.x2f_c01298{left:205.635000px;}
.x9e_c01298{left:208.230000px;}
.x54_c01298{left:210.810000px;}
.x87_c01298{left:212.550000px;}
.x24_c01298{left:215.130000px;}
.x6_c01298{left:216.870000px;}
.x9f_c01298{left:218.595000px;}
.x16_c01298{left:220.320000px;}
.xf8_c01298{left:222.045000px;}
.x96_c01298{left:226.365000px;}
.xd1_c01298{left:228.090000px;}
.x81_c01298{left:230.685000px;}
.xcc_c01298{left:235.005000px;}
.x17_c01298{left:236.730000px;}
.x8f_c01298{left:238.470000px;}
.xaa_c01298{left:241.050000px;}
.x55_c01298{left:242.790000px;}
.x25_c01298{left:246.240000px;}
.x88_c01298{left:248.835000px;}
.xf_c01298{left:250.560000px;}
.x30_c01298{left:254.010000px;}
.x11b_c01298{left:255.750000px;}
.xe0_c01298{left:258.330000px;}
.xf9_c01298{left:260.925000px;}
.x7_c01298{left:263.520000px;}
.x3e_c01298{left:266.970000px;}
.x47_c01298{left:272.160000px;}
.xf6_c01298{left:273.885000px;}
.xc5_c01298{left:276.480000px;}
.xc1_c01298{left:278.205000px;}
.xa2_c01298{left:279.930000px;}
.x26_c01298{left:283.395000px;}
.xcd_c01298{left:285.120000px;}
.x89_c01298{left:289.440000px;}
.xaf_c01298{left:293.760000px;}
.xe3_c01298{left:298.080000px;}
.x74_c01298{left:300.675000px;}
.x70_c01298{left:302.400000px;}
.x111_c01298{left:304.125000px;}
.x18_c01298{left:305.850000px;}
.x31_c01298{left:307.590000px;}
.xc2_c01298{left:311.910000px;}
.x27_c01298{left:315.360000px;}
.x5f_c01298{left:317.085000px;}
.x2_c01298{left:319.680000px;}
.xb0_c01298{left:323.130000px;}
.x108_c01298{left:324.870000px;}
.x101_c01298{left:327.450000px;}
.x8_c01298{left:329.190000px;}
.xa3_c01298{left:331.770000px;}
.x39_c01298{left:333.510000px;}
.x63_c01298{left:336.960000px;}
.x32_c01298{left:338.685000px;}
.x82_c01298{left:342.150000px;}
.x9_c01298{left:343.875000px;}
.x112_c01298{left:348.195000px;}
.x48_c01298{left:349.920000px;}
.xa4_c01298{left:351.645000px;}
.x6b_c01298{left:355.110000px;}
.x3_c01298{left:358.560000px;}
.x3f_c01298{left:360.285000px;}
.xc3_c01298{left:362.010000px;}
.xfa_c01298{left:365.475000px;}
.xba_c01298{left:368.070000px;}
.xab_c01298{left:369.795000px;}
.x8a_c01298{left:372.390000px;}
.x28_c01298{left:375.840000px;}
.xb1_c01298{left:377.565000px;}
.x6c_c01298{left:381.030000px;}
.xe4_c01298{left:382.755000px;}
.x1_c01298{left:384.480000px;}
.x109_c01298{left:386.205000px;}
.x19_c01298{left:391.395000px;}
.x79_c01298{left:393.120000px;}
.x64_c01298{left:394.845000px;}
.x3a_c01298{left:398.310000px;}
.xc6_c01298{left:400.890000px;}
.x33_c01298{left:403.485000px;}
.xd6_c01298{left:405.210000px;}
.x60_c01298{left:406.950000px;}
.x49_c01298{left:408.675000px;}
.xac_c01298{left:410.400000px;}
.xb5_c01298{left:415.590000px;}
.xfe_c01298{left:417.315000px;}
.x56_c01298{left:419.040000px;}
.x10_c01298{left:421.635000px;}
.x7a_c01298{left:423.360000px;}
.xc9_c01298{left:425.955000px;}
.x75_c01298{left:428.550000px;}
.xa6_c01298{left:432.000000px;}
.xce_c01298{left:433.725000px;}
.x40_c01298{left:435.450000px;}
.x7b_c01298{left:438.045000px;}
.x1a_c01298{left:441.510000px;}
.x90_c01298{left:444.090000px;}
.xbb_c01298{left:445.830000px;}
.x71_c01298{left:447.555000px;}
.x65_c01298{left:450.150000px;}
.x105_c01298{left:453.600000px;}
.x29_c01298{left:455.325000px;}
.x4a_c01298{left:457.050000px;}
.xcf_c01298{left:458.790000px;}
.x83_c01298{left:461.370000px;}
.x34_c01298{left:463.110000px;}
.x57_c01298{left:465.690000px;}
.xa_c01298{left:468.285000px;}
.x35_c01298{left:470.010000px;}
.x118_c01298{left:473.475000px;}
.xbc_c01298{left:475.200000px;}
.x41_c01298{left:480.390000px;}
.x72_c01298{left:484.710000px;}
.x36_c01298{left:486.435000px;}
.xd2_c01298{left:488.160000px;}
.xb2_c01298{left:489.885000px;}
.xad_c01298{left:491.610000px;}
.x7c_c01298{left:494.205000px;}
.xa7_c01298{left:496.800000px;}
.x2a_c01298{left:498.525000px;}
.x97_c01298{left:505.440000px;}
.xf4_c01298{left:510.630000px;}
.xa0_c01298{left:515.805000px;}
.x91_c01298{left:518.400000px;}
.xff_c01298{left:520.125000px;}
.xf5_c01298{left:521.850000px;}
.xc7_c01298{left:525.315000px;}
.x1b_c01298{left:527.040000px;}
.x58_c01298{left:528.765000px;}
.x106_c01298{left:531.360000px;}
.x6d_c01298{left:533.085000px;}
.xdc_c01298{left:534.810000px;}
.x98_c01298{left:536.550000px;}
.x4_c01298{left:539.130000px;}
.x11_c01298{left:541.725000px;}
.xd7_c01298{left:543.450000px;}
.x1c_c01298{left:545.190000px;}
.x42_c01298{left:547.770000px;}
.xd8_c01298{left:552.090000px;}
.x76_c01298{left:556.410000px;}
.x107_c01298{left:559.875000px;}
.xd0_c01298{left:562.470000px;}
.xc4_c01298{left:564.195000px;}
.x66_c01298{left:565.920000px;}
.x100_c01298{left:571.965000px;}
.xbd_c01298{left:573.690000px;}
.xc8_c01298{left:578.880000px;}
.x3b_c01298{left:581.475000px;}
.xca_c01298{left:583.200000px;}
.x43_c01298{left:584.925000px;}
.xfc_c01298{left:587.520000px;}
.x61_c01298{left:589.245000px;}
.x59_c01298{left:590.970000px;}
.x2b_c01298{left:592.710000px;}
.xfd_c01298{left:594.435000px;}
.x115_c01298{left:596.160000px;}
.x84_c01298{left:597.885000px;}
.x7d_c01298{left:600.480000px;}
.x2c_c01298{left:606.525000px;}
.x5a_c01298{left:609.120000px;}
.x92_c01298{left:611.715000px;}
.x37_c01298{left:614.310000px;}
.xb6_c01298{left:617.760000px;}
.xbe_c01298{left:619.485000px;}
.x44_c01298{left:624.675000px;}
.xd9_c01298{left:626.400000px;}
.x73_c01298{left:628.125000px;}
.xae_c01298{left:631.590000px;}
.x116_c01298{left:634.170000px;}
.xbf_c01298{left:635.910000px;}
.x1d_c01298{left:637.635000px;}
.x45_c01298{left:642.810000px;}
.xd3_c01298{left:645.405000px;}
.x8b_c01298{left:648.000000px;}
.x6e_c01298{left:649.725000px;}
.x113_c01298{left:651.450000px;}
.x102_c01298{left:653.190000px;}
.x12_c01298{left:656.640000px;}
.x5b_c01298{left:660.960000px;}
.x13_c01298{left:663.555000px;}
.xcb_c01298{left:666.150000px;}
.x67_c01298{left:668.730000px;}
.x10a_c01298{left:670.470000px;}
.x3c_c01298{left:673.920000px;}
.xb3_c01298{left:681.690000px;}
.x1e_c01298{left:683.430000px;}
.x4f_c01298{left:685.155000px;}
.xda_c01298{left:686.880000px;}
.x38_c01298{left:691.200000px;}
.x2d_c01298{left:693.795000px;}
.x77_c01298{left:697.245000px;}
.x5c_c01298{left:699.840000px;}
.xf3_c01298{left:701.565000px;}
.xb7_c01298{left:703.290000px;}
.x119_c01298{left:705.030000px;}
.x85_c01298{left:707.610000px;}
.xa8_c01298{left:711.075000px;}
.x2e_c01298{left:712.800000px;}
.x68_c01298{left:717.990000px;}
.xc0_c01298{left:719.715000px;}
.x104_c01298{left:722.310000px;}
.xb8_c01298{left:724.035000px;}
.x6f_c01298{left:729.210000px;}
.x117_c01298{left:730.950000px;}
.x7e_c01298{left:732.675000px;}
.xd4_c01298{left:734.400000px;}
.x10b_c01298{left:736.995000px;}
.x8c_c01298{left:738.720000px;}
.x110_c01298{left:740.445000px;}
.xdd_c01298{left:742.170000px;}
.x1f_c01298{left:743.910000px;}
.x99_c01298{left:746.490000px;}
.xe6_c01298{left:748.230000px;}
.x5d_c01298{left:750.810000px;}
.x62_c01298{left:752.550000px;}
.x93_c01298{left:754.275000px;}
.xe7_c01298{left:758.595000px;}
.x5_c01298{left:760.320000px;}
.xb4_c01298{left:762.915000px;}
.x50_c01298{left:765.510000px;}
.xb_c01298{left:768.960000px;}
.x4b_c01298{left:770.685000px;}
.xef_c01298{left:772.410000px;}
.x69_c01298{left:775.875000px;}
.x20_c01298{left:777.600000px;}
.xa9_c01298{left:779.325000px;}
.x3d_c01298{left:781.050000px;}
.x7f_c01298{left:785.370000px;}
.xd5_c01298{left:787.965000px;}
.x5e_c01298{left:791.430000px;}
.x78_c01298{left:794.010000px;}
.x8d_c01298{left:796.605000px;}
.xc_c01298{left:799.200000px;}
.xe1_c01298{left:801.795000px;}
.x86_c01298{left:803.520000px;}
.x14_c01298{left:806.970000px;}
.x11a_c01298{left:808.710000px;}
.x21_c01298{left:810.435000px;}
.x4c_c01298{left:813.030000px;}
.x9a_c01298{left:817.350000px;}
.x80_c01298{left:820.800000px;}
.xdb_c01298{left:823.395000px;}
.x6a_c01298{left:825.120000px;}
.xb9_c01298{left:828.570000px;}
.xf2_c01298{left:832.890000px;}
.x114_c01298{left:834.630000px;}
.x10d_c01298{left:838.080000px;}
.xd_c01298{left:847.590000px;}
.x103_c01298{left:851.040000px;}
.x9b_c01298{left:855.360000px;}
.x46_c01298{left:857.955000px;}
.x8e_c01298{left:862.275000px;}
.x4d_c01298{left:864.870000px;}
.x15_c01298{left:867.450000px;}
.xe_c01298{left:876.090000px;}
.x4e_c01298{left:877.830000px;}
.x22_c01298{left:882.150000px;}
.x51_c01298{left:892.515000px;}
.x52_c01298{left:897.690000px;}
.xe2_c01298{left:899.430456px;}
.x11f_c01298{left:901.155000px;}
.x11d_c01298{left:923.610000px;}
.x11e_c01298{left:933.990000px;}
.x122_c01298{left:940.890000px;}
.x123_c01298{left:942.630000px;}
.x124_c01298{left:946.080000px;}
.x127_c01298{left:1001.370000px;}
.x128_c01298{left:1012.605000px;}
.x121_c01298{left:1014.330000px;}
.x129_c01298{left:1025.565000px;}
.x120_c01298{left:1033.350000px;}
.x125_c01298{left:1046.310000px;}
.x126_c01298{left:1067.910000px;}
@media print{
.v1_c01298{vertical-align:-6.186667pt;}
.v0_c01298{vertical-align:0.000000pt;}
.ls0_c01298{letter-spacing:0.000000pt;}
.ws0_c01298{word-spacing:-19.881760pt;}
.ws3_c01298{word-spacing:-9.459627pt;}
.ws1_c01298{word-spacing:-5.083093pt;}
.ws2_c01298{word-spacing:-0.803787pt;}
.ws4_c01298{word-spacing:0.000000pt;}
.fs4_c01298{font-size:3.072000pt;}
.fs17_c01298{font-size:5.333333pt;}
.fs1c_c01298{font-size:6.133333pt;}
.fsc_c01298{font-size:9.226667pt;}
.fse_c01298{font-size:12.266667pt;}
.fs7_c01298{font-size:15.360000pt;}
.fs1_c01298{font-size:18.453333pt;}
.fs1a_c01298{font-size:21.493333pt;}
.fsd_c01298{font-size:24.586667pt;}
.fsf_c01298{font-size:27.626667pt;}
.fs6_c01298{font-size:30.720000pt;}
.fs1d_c01298{font-size:33.813333pt;}
.fsb_c01298{font-size:36.853333pt;}
.fs0_c01298{font-size:39.946667pt;}
.fs16_c01298{font-size:42.986667pt;}
.fs3_c01298{font-size:46.080000pt;}
.fs15_c01298{font-size:49.173333pt;}
.fs14_c01298{font-size:52.213333pt;}
.fs13_c01298{font-size:55.306667pt;}
.fs18_c01298{font-size:58.346667pt;}
.fs1b_c01298{font-size:61.440000pt;}
.fs8_c01298{font-size:64.533333pt;}
.fs5_c01298{font-size:67.573333pt;}
.fs11_c01298{font-size:70.666667pt;}
.fs10_c01298{font-size:73.706667pt;}
.fs19_c01298{font-size:76.800000pt;}
.fsa_c01298{font-size:79.893333pt;}
.fs1f_c01298{font-size:82.933333pt;}
.fs12_c01298{font-size:86.026667pt;}
.fs9_c01298{font-size:89.066667pt;}
.fs1e_c01298{font-size:92.160000pt;}
.fs2_c01298{font-size:230.400000pt;}
.y0_c01298{bottom:0.000000pt;}
.y1e4_c01298{bottom:159.746667pt;}
.y1e9_c01298{bottom:161.280000pt;}
.y1ea_c01298{bottom:163.586667pt;}
.y1e7_c01298{bottom:165.120000pt;}
.y1e8_c01298{bottom:165.893333pt;}
.y1e6_c01298{bottom:166.653333pt;}
.y1eb_c01298{bottom:168.186667pt;}
.y1e5_c01298{bottom:169.733333pt;}
.y1df_c01298{bottom:170.493333pt;}
.y1e0_c01298{bottom:171.266667pt;}
.y1e1_c01298{bottom:172.026667pt;}
.y1de_c01298{bottom:172.800000pt;}
.y1dd_c01298{bottom:175.106667pt;}
.y1e3_c01298{bottom:182.786667pt;}
.y1e2_c01298{bottom:185.093333pt;}
.y1da_c01298{bottom:185.853333pt;}
.y1d9_c01298{bottom:186.626667pt;}
.y1d8_c01298{bottom:187.386667pt;}
.y1dc_c01298{bottom:190.466667pt;}
.y1db_c01298{bottom:191.226667pt;}
.y1d3_c01298{bottom:198.906667pt;}
.y1cf_c01298{bottom:199.680000pt;}
.y1d2_c01298{bottom:201.213333pt;}
.y1d1_c01298{bottom:201.986667pt;}
.y1ce_c01298{bottom:202.746667pt;}
.y1cd_c01298{bottom:203.520000pt;}
.y1d0_c01298{bottom:205.053333pt;}
.y1d7_c01298{bottom:205.826667pt;}
.y1d4_c01298{bottom:207.360000pt;}
.y1d6_c01298{bottom:208.133333pt;}
.y1d5_c01298{bottom:208.893333pt;}
.y1cb_c01298{bottom:219.653333pt;}
.y1ca_c01298{bottom:222.720000pt;}
.y1c8_c01298{bottom:223.493333pt;}
.y1c6_c01298{bottom:225.026667pt;}
.y1cc_c01298{bottom:226.560000pt;}
.y1c9_c01298{bottom:228.093333pt;}
.y1c5_c01298{bottom:234.240000pt;}
.y1c7_c01298{bottom:235.013333pt;}
.y1c2_c01298{bottom:239.613333pt;}
.y1c1_c01298{bottom:240.386667pt;}
.y1be_c01298{bottom:241.146667pt;}
.y1bd_c01298{bottom:241.920000pt;}
.y1ba_c01298{bottom:242.693333pt;}
.y1bf_c01298{bottom:243.453333pt;}
.y1c3_c01298{bottom:244.226667pt;}
.y1c0_c01298{bottom:244.986667pt;}
.y1bc_c01298{bottom:246.533333pt;}
.y1c4_c01298{bottom:247.293333pt;}
.y1bb_c01298{bottom:257.280000pt;}
.y1b5_c01298{bottom:258.053333pt;}
.y1b6_c01298{bottom:258.813333pt;}
.y1b3_c01298{bottom:259.586667pt;}
.y1b8_c01298{bottom:260.346667pt;}
.y1b0_c01298{bottom:261.120000pt;}
.y1b2_c01298{bottom:261.893333pt;}
.y1b7_c01298{bottom:262.653333pt;}
.y1b1_c01298{bottom:263.426667pt;}
.y1b4_c01298{bottom:264.186667pt;}
.y1b9_c01298{bottom:274.946667pt;}
.y1ae_c01298{bottom:276.480000pt;}
.y1af_c01298{bottom:277.253333pt;}
.y1a6_c01298{bottom:278.786667pt;}
.y1ab_c01298{bottom:279.546667pt;}
.y1aa_c01298{bottom:280.320000pt;}
.y1a7_c01298{bottom:281.093333pt;}
.y1ad_c01298{bottom:281.853333pt;}
.y1a9_c01298{bottom:282.626667pt;}
.y1a8_c01298{bottom:283.386667pt;}
.y1ac_c01298{bottom:291.066667pt;}
.y1a3_c01298{bottom:294.906667pt;}
.y1a4_c01298{bottom:295.680000pt;}
.y1a0_c01298{bottom:296.453333pt;}
.y19f_c01298{bottom:297.213333pt;}
.y19e_c01298{bottom:297.986667pt;}
.y1a2_c01298{bottom:300.293333pt;}
.y1a1_c01298{bottom:301.053333pt;}
.y19d_c01298{bottom:307.200000pt;}
.y1a5_c01298{bottom:309.506667pt;}
.y19c_c01298{bottom:312.573333pt;}
.y19b_c01298{bottom:313.346667pt;}
.y198_c01298{bottom:315.653333pt;}
.y197_c01298{bottom:316.413333pt;}
.y195_c01298{bottom:317.186667pt;}
.y19a_c01298{bottom:317.946667pt;}
.y196_c01298{bottom:318.720000pt;}
.y199_c01298{bottom:327.173333pt;}
.y194_c01298{bottom:329.466667pt;}
.y193_c01298{bottom:331.013333pt;}
.y190_c01298{bottom:331.773333pt;}
.y18e_c01298{bottom:333.306667pt;}
.y191_c01298{bottom:334.080000pt;}
.y18f_c01298{bottom:336.386667pt;}
.y192_c01298{bottom:337.146667pt;}
.y18d_c01298{bottom:338.693333pt;}
.y18c_c01298{bottom:347.906667pt;}
.y187_c01298{bottom:350.213333pt;}
.y185_c01298{bottom:350.973333pt;}
.y184_c01298{bottom:351.746667pt;}
.y18b_c01298{bottom:354.053333pt;}
.y188_c01298{bottom:354.813333pt;}
.y186_c01298{bottom:355.586667pt;}
.y189_c01298{bottom:364.026667pt;}
.y183_c01298{bottom:365.573333pt;}
.y182_c01298{bottom:366.333333pt;}
.y18a_c01298{bottom:367.866667pt;}
.y17b_c01298{bottom:368.640000pt;}
.y17d_c01298{bottom:369.413333pt;}
.y17a_c01298{bottom:370.173333pt;}
.y178_c01298{bottom:370.946667pt;}
.y17f_c01298{bottom:371.706667pt;}
.y179_c01298{bottom:372.480000pt;}
.y17e_c01298{bottom:373.253333pt;}
.y17c_c01298{bottom:374.013333pt;}
.y180_c01298{bottom:374.786667pt;}
.y177_c01298{bottom:376.320000pt;}
.y181_c01298{bottom:381.693333pt;}
.y173_c01298{bottom:387.066667pt;}
.y176_c01298{bottom:387.840000pt;}
.y175_c01298{bottom:388.613333pt;}
.y172_c01298{bottom:389.373333pt;}
.y174_c01298{bottom:391.680000pt;}
.y16a_c01298{bottom:393.213333pt;}
.y171_c01298{bottom:396.293333pt;}
.y16c_c01298{bottom:397.053333pt;}
.y16d_c01298{bottom:397.826667pt;}
.y16e_c01298{bottom:398.586667pt;}
.y170_c01298{bottom:399.360000pt;}
.y16f_c01298{bottom:400.133333pt;}
.y16b_c01298{bottom:400.893333pt;}
.y169_c01298{bottom:401.666667pt;}
.y164_c01298{bottom:406.266667pt;}
.y166_c01298{bottom:410.880000pt;}
.y168_c01298{bottom:412.413333pt;}
.y167_c01298{bottom:413.186667pt;}
.y165_c01298{bottom:418.560000pt;}
.y15d_c01298{bottom:420.093333pt;}
.y15e_c01298{bottom:420.866667pt;}
.y15f_c01298{bottom:429.306667pt;}
.y162_c01298{bottom:433.146667pt;}
.y160_c01298{bottom:436.226667pt;}
.y161_c01298{bottom:437.760000pt;}
.y163_c01298{bottom:438.533333pt;}
.y159_c01298{bottom:440.826667pt;}
.y157_c01298{bottom:441.600000pt;}
.y15b_c01298{bottom:442.373333pt;}
.y154_c01298{bottom:443.133333pt;}
.y156_c01298{bottom:444.666667pt;}
.y158_c01298{bottom:446.213333pt;}
.y155_c01298{bottom:446.973333pt;}
.y15a_c01298{bottom:450.053333pt;}
.y15c_c01298{bottom:455.426667pt;}
.y153_c01298{bottom:457.733333pt;}
.y14e_c01298{bottom:458.493333pt;}
.y150_c01298{bottom:459.266667pt;}
.y14a_c01298{bottom:460.026667pt;}
.y14d_c01298{bottom:460.800000pt;}
.y152_c01298{bottom:461.573333pt;}
.y14c_c01298{bottom:462.333333pt;}
.y151_c01298{bottom:463.106667pt;}
.y14f_c01298{bottom:463.866667pt;}
.y14b_c01298{bottom:464.640000pt;}
.y149_c01298{bottom:475.386667pt;}
.y147_c01298{bottom:476.933333pt;}
.y146_c01298{bottom:477.693333pt;}
.y148_c01298{bottom:478.466667pt;}
.y145_c01298{bottom:486.906667pt;}
.y144_c01298{bottom:488.453333pt;}
.y13f_c01298{bottom:494.586667pt;}
.y141_c01298{bottom:495.360000pt;}
.y13e_c01298{bottom:496.133333pt;}
.y13c_c01298{bottom:496.893333pt;}
.y13d_c01298{bottom:498.426667pt;}
.y143_c01298{bottom:499.200000pt;}
.y142_c01298{bottom:499.973333pt;}
.y13b_c01298{bottom:501.506667pt;}
.y140_c01298{bottom:506.880000pt;}
.y139_c01298{bottom:509.186667pt;}
.y13a_c01298{bottom:511.493333pt;}
.y134_c01298{bottom:512.253333pt;}
.y132_c01298{bottom:513.026667pt;}
.y135_c01298{bottom:513.786667pt;}
.y133_c01298{bottom:514.560000pt;}
.y138_c01298{bottom:515.333333pt;}
.y12f_c01298{bottom:516.093333pt;}
.y136_c01298{bottom:516.866667pt;}
.y130_c01298{bottom:517.626667pt;}
.y137_c01298{bottom:519.173333pt;}
.y12d_c01298{bottom:525.306667pt;}
.y12e_c01298{bottom:528.386667pt;}
.y131_c01298{bottom:530.693333pt;}
.y12c_c01298{bottom:531.453333pt;}
.y12a_c01298{bottom:532.226667pt;}
.y129_c01298{bottom:532.986667pt;}
.y122_c01298{bottom:533.760000pt;}
.y124_c01298{bottom:534.533333pt;}
.y125_c01298{bottom:536.066667pt;}
.y12b_c01298{bottom:536.826667pt;}
.y127_c01298{bottom:538.373333pt;}
.y126_c01298{bottom:539.133333pt;}
.y123_c01298{bottom:542.213333pt;}
.y128_c01298{bottom:543.746667pt;}
.y11e_c01298{bottom:545.280000pt;}
.y11a_c01298{bottom:546.053333pt;}
.y11c_c01298{bottom:546.813333pt;}
.y11f_c01298{bottom:547.586667pt;}
.y11d_c01298{bottom:549.120000pt;}
.y121_c01298{bottom:550.653333pt;}
.y120_c01298{bottom:553.733333pt;}
.y11b_c01298{bottom:556.026667pt;}
.y116_c01298{bottom:566.786667pt;}
.y114_c01298{bottom:567.546667pt;}
.y112_c01298{bottom:568.320000pt;}
.y111_c01298{bottom:570.626667pt;}
.y117_c01298{bottom:571.386667pt;}
.y115_c01298{bottom:572.160000pt;}
.y113_c01298{bottom:572.933333pt;}
.y10f_c01298{bottom:574.466667pt;}
.y110_c01298{bottom:575.226667pt;}
.y119_c01298{bottom:579.066667pt;}
.y118_c01298{bottom:582.146667pt;}
.y109_c01298{bottom:584.453333pt;}
.y10e_c01298{bottom:585.213333pt;}
.y107_c01298{bottom:585.986667pt;}
.y108_c01298{bottom:586.746667pt;}
.y10b_c01298{bottom:587.520000pt;}
.y10d_c01298{bottom:589.053333pt;}
.y10a_c01298{bottom:589.826667pt;}
.y10c_c01298{bottom:596.733333pt;}
.y101_c01298{bottom:602.880000pt;}
.yfb_c01298{bottom:603.653333pt;}
.yfd_c01298{bottom:604.413333pt;}
.y106_c01298{bottom:605.186667pt;}
.y102_c01298{bottom:605.946667pt;}
.y100_c01298{bottom:606.720000pt;}
.yfe_c01298{bottom:607.493333pt;}
.yfa_c01298{bottom:608.253333pt;}
.yf9_c01298{bottom:609.786667pt;}
.y104_c01298{bottom:610.560000pt;}
.yff_c01298{bottom:613.626667pt;}
.y103_c01298{bottom:615.173333pt;}
.yfc_c01298{bottom:615.933333pt;}
.y105_c01298{bottom:616.706667pt;}
.yf8_c01298{bottom:619.773333pt;}
.yf6_c01298{bottom:620.546667pt;}
.yf4_c01298{bottom:621.306667pt;}
.yf3_c01298{bottom:622.853333pt;}
.yf7_c01298{bottom:625.146667pt;}
.yf5_c01298{bottom:627.453333pt;}
.yf2_c01298{bottom:638.213333pt;}
.yf0_c01298{bottom:639.746667pt;}
.yf1_c01298{bottom:643.586667pt;}
.yef_c01298{bottom:645.893333pt;}
.yee_c01298{bottom:655.866667pt;}
.ye6_c01298{bottom:657.413333pt;}
.ye9_c01298{bottom:658.173333pt;}
.ye7_c01298{bottom:658.946667pt;}
.yec_c01298{bottom:662.786667pt;}
.ye8_c01298{bottom:664.320000pt;}
.yed_c01298{bottom:665.093333pt;}
.yea_c01298{bottom:666.626667pt;}
.yeb_c01298{bottom:668.933333pt;}
.ye1_c01298{bottom:675.066667pt;}
.ye3_c01298{bottom:675.840000pt;}
.ye5_c01298{bottom:676.613333pt;}
.ye2_c01298{bottom:679.680000pt;}
.ye4_c01298{bottom:681.213333pt;}
.yde_c01298{bottom:692.733333pt;}
.ye0_c01298{bottom:693.506667pt;}
.ydb_c01298{bottom:694.266667pt;}
.ydc_c01298{bottom:695.040000pt;}
.ydd_c01298{bottom:695.813333pt;}
.ydf_c01298{bottom:698.106667pt;}
.yd9_c01298{bottom:711.173333pt;}
.yd6_c01298{bottom:712.706667pt;}
.yd8_c01298{bottom:715.773333pt;}
.yd7_c01298{bottom:716.546667pt;}
.yda_c01298{bottom:719.613333pt;}
.yd5_c01298{bottom:721.920000pt;}
.yce_c01298{bottom:728.066667pt;}
.yd1_c01298{bottom:728.826667pt;}
.yd4_c01298{bottom:729.600000pt;}
.ycf_c01298{bottom:730.373333pt;}
.yd2_c01298{bottom:733.440000pt;}
.yd3_c01298{bottom:734.213333pt;}
.yd0_c01298{bottom:734.973333pt;}
.ycd_c01298{bottom:739.586667pt;}
.ycb_c01298{bottom:746.493333pt;}
.yca_c01298{bottom:748.026667pt;}
.yc8_c01298{bottom:748.800000pt;}
.ycc_c01298{bottom:751.106667pt;}
.yc9_c01298{bottom:751.866667pt;}
.yc5_c01298{bottom:764.933333pt;}
.yc6_c01298{bottom:767.226667pt;}
.yc4_c01298{bottom:768.773333pt;}
.yc1_c01298{bottom:769.533333pt;}
.yc7_c01298{bottom:770.306667pt;}
.yc3_c01298{bottom:771.066667pt;}
.yc2_c01298{bottom:774.146667pt;}
.ybf_c01298{bottom:781.053333pt;}
.ybe_c01298{bottom:782.586667pt;}
.ybc_c01298{bottom:783.360000pt;}
.ybd_c01298{bottom:786.426667pt;}
.ybb_c01298{bottom:787.200000pt;}
.yba_c01298{bottom:787.973333pt;}
.yc0_c01298{bottom:792.573333pt;}
.yb9_c01298{bottom:801.026667pt;}
.yb4_c01298{bottom:801.786667pt;}
.yb7_c01298{bottom:803.333333pt;}
.yb3_c01298{bottom:804.093333pt;}
.yb5_c01298{bottom:804.866667pt;}
.yb6_c01298{bottom:805.626667pt;}
.yb8_c01298{bottom:806.400000pt;}
.yb2_c01298{bottom:807.173333pt;}
.yae_c01298{bottom:818.693333pt;}
.yad_c01298{bottom:819.453333pt;}
.yb0_c01298{bottom:821.760000pt;}
.yaf_c01298{bottom:823.293333pt;}
.yb1_c01298{bottom:824.066667pt;}
.yac_c01298{bottom:834.813333pt;}
.ya9_c01298{bottom:835.586667pt;}
.ya7_c01298{bottom:837.120000pt;}
.ya6_c01298{bottom:837.893333pt;}
.ya5_c01298{bottom:839.426667pt;}
.yaa_c01298{bottom:840.186667pt;}
.ya8_c01298{bottom:841.733333pt;}
.yab_c01298{bottom:842.493333pt;}
.ya2_c01298{bottom:854.786667pt;}
.ya0_c01298{bottom:856.320000pt;}
.ya3_c01298{bottom:859.386667pt;}
.ya4_c01298{bottom:860.160000pt;}
.ya1_c01298{bottom:860.933333pt;}
.y9f_c01298{bottom:866.306667pt;}
.y9d_c01298{bottom:871.680000pt;}
.y99_c01298{bottom:872.453333pt;}
.y9c_c01298{bottom:873.986667pt;}
.y98_c01298{bottom:874.746667pt;}
.y97_c01298{bottom:875.520000pt;}
.y9b_c01298{bottom:877.053333pt;}
.y9a_c01298{bottom:877.826667pt;}
.y9e_c01298{bottom:878.586667pt;}
.y96_c01298{bottom:890.880000pt;}
.y8f_c01298{bottom:891.653333pt;}
.y94_c01298{bottom:893.186667pt;}
.y93_c01298{bottom:895.493333pt;}
.y95_c01298{bottom:896.253333pt;}
.y91_c01298{bottom:897.786667pt;}
.y8e_c01298{bottom:903.173333pt;}
.y90_c01298{bottom:903.933333pt;}
.y92_c01298{bottom:905.466667pt;}
.y84_c01298{bottom:908.546667pt;}
.y85_c01298{bottom:909.306667pt;}
.y8d_c01298{bottom:910.080000pt;}
.y83_c01298{bottom:911.613333pt;}
.y8b_c01298{bottom:912.386667pt;}
.y8c_c01298{bottom:913.146667pt;}
.y89_c01298{bottom:913.920000pt;}
.y88_c01298{bottom:917.760000pt;}
.y86_c01298{bottom:918.533333pt;}
.y87_c01298{bottom:919.293333pt;}
.y8a_c01298{bottom:924.666667pt;}
.y82_c01298{bottom:925.440000pt;}
.y80_c01298{bottom:926.973333pt;}
.y7e_c01298{bottom:927.746667pt;}
.y7f_c01298{bottom:928.506667pt;}
.y7c_c01298{bottom:929.280000pt;}
.y81_c01298{bottom:931.586667pt;}
.y7d_c01298{bottom:933.120000pt;}
.y79_c01298{bottom:943.106667pt;}
.y7a_c01298{bottom:944.640000pt;}
.y71_c01298{bottom:945.413333pt;}
.y74_c01298{bottom:946.173333pt;}
.y7b_c01298{bottom:947.706667pt;}
.y73_c01298{bottom:949.253333pt;}
.y77_c01298{bottom:950.013333pt;}
.y76_c01298{bottom:951.546667pt;}
.y78_c01298{bottom:952.320000pt;}
.y72_c01298{bottom:955.386667pt;}
.y75_c01298{bottom:956.160000pt;}
.y6c_c01298{bottom:963.840000pt;}
.y6a_c01298{bottom:964.613333pt;}
.y1f8_c01298{bottom:965.373333pt;}
.y6e_c01298{bottom:966.146667pt;}
.y6d_c01298{bottom:966.906667pt;}
.y6b_c01298{bottom:968.453333pt;}
.y6f_c01298{bottom:969.986667pt;}
.y70_c01298{bottom:974.586667pt;}
.y69_c01298{bottom:979.973333pt;}
.y66_c01298{bottom:980.733333pt;}
.y65_c01298{bottom:981.506667pt;}
.y68_c01298{bottom:982.266667pt;}
.y64_c01298{bottom:986.106667pt;}
.y67_c01298{bottom:989.186667pt;}
.y63_c01298{bottom:996.866667pt;}
.y1f6_c01298{bottom:997.626667pt;}
.y1f7_c01298{bottom:998.400000pt;}
.y5d_c01298{bottom:999.933333pt;}
.y5f_c01298{bottom:1000.706667pt;}
.y61_c01298{bottom:1001.466667pt;}
.y60_c01298{bottom:1004.546667pt;}
.y5e_c01298{bottom:1005.306667pt;}
.y62_c01298{bottom:1006.080000pt;}
.y58_c01298{bottom:1018.373333pt;}
.y5b_c01298{bottom:1019.906667pt;}
.y5c_c01298{bottom:1020.666667pt;}
.y5a_c01298{bottom:1021.440000pt;}
.y59_c01298{bottom:1022.973333pt;}
.y1f5_c01298{bottom:1025.280000pt;}
.y53_c01298{bottom:1035.266667pt;}
.y54_c01298{bottom:1036.026667pt;}
.y52_c01298{bottom:1039.106667pt;}
.y57_c01298{bottom:1039.866667pt;}
.y56_c01298{bottom:1040.640000pt;}
.y55_c01298{bottom:1046.786667pt;}
.y4f_c01298{bottom:1052.933333pt;}
.y4b_c01298{bottom:1053.693333pt;}
.y4d_c01298{bottom:1056.000000pt;}
.y4a_c01298{bottom:1056.773333pt;}
.y4e_c01298{bottom:1057.533333pt;}
.y4c_c01298{bottom:1058.306667pt;}
.y50_c01298{bottom:1059.066667pt;}
.y51_c01298{bottom:1059.840000pt;}
.y49_c01298{bottom:1067.520000pt;}
.y47_c01298{bottom:1071.360000pt;}
.y43_c01298{bottom:1072.133333pt;}
.y42_c01298{bottom:1074.426667pt;}
.y45_c01298{bottom:1075.200000pt;}
.y46_c01298{bottom:1075.973333pt;}
.y48_c01298{bottom:1077.506667pt;}
.y44_c01298{bottom:1078.266667pt;}
.y3f_c01298{bottom:1089.786667pt;}
.y3e_c01298{bottom:1091.333333pt;}
.y3c_c01298{bottom:1092.093333pt;}
.y40_c01298{bottom:1092.866667pt;}
.y3d_c01298{bottom:1095.173333pt;}
.y41_c01298{bottom:1099.013333pt;}
.y36_c01298{bottom:1108.226667pt;}
.y3a_c01298{bottom:1108.986667pt;}
.y35_c01298{bottom:1109.760000pt;}
.y37_c01298{bottom:1112.826667pt;}
.y38_c01298{bottom:1113.600000pt;}
.y34_c01298{bottom:1115.133333pt;}
.y1ee_c01298{bottom:1116.666667pt;}
.y39_c01298{bottom:1117.440000pt;}
.y3b_c01298{bottom:1118.973333pt;}
.y1ef_c01298{bottom:1119.746667pt;}
.y32_c01298{bottom:1125.893333pt;}
.y2d_c01298{bottom:1126.653333pt;}
.y31_c01298{bottom:1127.426667pt;}
.y2f_c01298{bottom:1129.733333pt;}
.y33_c01298{bottom:1130.493333pt;}
.y2e_c01298{bottom:1131.266667pt;}
.y30_c01298{bottom:1132.026667pt;}
.y2c_c01298{bottom:1143.546667pt;}
.y2a_c01298{bottom:1144.320000pt;}
.y27_c01298{bottom:1145.093333pt;}
.y2b_c01298{bottom:1145.853333pt;}
.y25_c01298{bottom:1146.626667pt;}
.y26_c01298{bottom:1148.160000pt;}
.y28_c01298{bottom:1148.933333pt;}
.y29_c01298{bottom:1149.693333pt;}
.y24_c01298{bottom:1161.986667pt;}
.y21_c01298{bottom:1162.746667pt;}
.y20_c01298{bottom:1163.520000pt;}
.y1f_c01298{bottom:1164.293333pt;}
.y22_c01298{bottom:1166.586667pt;}
.y1d_c01298{bottom:1167.360000pt;}
.y1e_c01298{bottom:1168.133333pt;}
.y23_c01298{bottom:1168.893333pt;}
.y1c_c01298{bottom:1178.106667pt;}
.y1a_c01298{bottom:1179.653333pt;}
.y17_c01298{bottom:1180.413333pt;}
.y16_c01298{bottom:1181.186667pt;}
.y14_c01298{bottom:1181.946667pt;}
.y19_c01298{bottom:1185.026667pt;}
.y15_c01298{bottom:1185.786667pt;}
.y18_c01298{bottom:1188.866667pt;}
.y13_c01298{bottom:1191.173333pt;}
.y1b_c01298{bottom:1192.706667pt;}
.y12_c01298{bottom:1201.146667pt;}
.y11_c01298{bottom:1201.920000pt;}
.yf_c01298{bottom:1202.693333pt;}
.ye_c01298{bottom:1203.453333pt;}
.y10_c01298{bottom:1204.226667pt;}
.yc_c01298{bottom:1204.986667pt;}
.ya_c01298{bottom:1205.760000pt;}
.y6_c01298{bottom:1206.533333pt;}
.y1f4_c01298{bottom:1208.066667pt;}
.yd_c01298{bottom:1209.600000pt;}
.y9_c01298{bottom:1211.133333pt;}
.y1f3_c01298{bottom:1213.440000pt;}
.y7_c01298{bottom:1217.280000pt;}
.yb_c01298{bottom:1218.813333pt;}
.y3_c01298{bottom:1224.186667pt;}
.y8_c01298{bottom:1224.960000pt;}
.y4_c01298{bottom:1228.026667pt;}
.y5_c01298{bottom:1230.333333pt;}
.y2_c01298{bottom:1231.866667pt;}
.y1ec_c01298{bottom:1237.253333pt;}
.y1ed_c01298{bottom:1238.786667pt;}
.y1f2_c01298{bottom:1267.973333pt;}
.y1f1_c01298{bottom:1275.653333pt;}
.y1f0_c01298{bottom:1277.186667pt;}
.y1_c01298{bottom:1285.626667pt;}
.h6_c01298{height:2.764500pt;}
.h19_c01298{height:4.799479pt;}
.h1e_c01298{height:5.519401pt;}
.he_c01298{height:8.303099pt;}
.h10_c01298{height:11.038802pt;}
.h9_c01298{height:13.822500pt;}
.h3_c01298{height:16.606198pt;}
.h1c_c01298{height:19.341901pt;}
.hf_c01298{height:22.125599pt;}
.h11_c01298{height:24.861302pt;}
.h8_c01298{height:27.645000pt;}
.h1f_c01298{height:30.428698pt;}
.hd_c01298{height:33.164401pt;}
.h2_c01298{height:35.948099pt;}
.h18_c01298{height:38.683802pt;}
.h5_c01298{height:41.467500pt;}
.h17_c01298{height:44.251198pt;}
.h16_c01298{height:46.986901pt;}
.h15_c01298{height:49.770599pt;}
.h1a_c01298{height:52.506302pt;}
.h1d_c01298{height:55.290000pt;}
.ha_c01298{height:58.073698pt;}
.h7_c01298{height:60.809401pt;}
.h13_c01298{height:63.593099pt;}
.h12_c01298{height:66.328802pt;}
.h1b_c01298{height:69.112500pt;}
.hc_c01298{height:71.896198pt;}
.h21_c01298{height:74.631901pt;}
.h14_c01298{height:77.415599pt;}
.hb_c01298{height:80.151302pt;}
.h20_c01298{height:82.935000pt;}
.h4_c01298{height:207.337500pt;}
.h1_c01298{height:1345.333333pt;}
.h0_c01298{height:1345.533333pt;}
.w1_c01298{width:956.666667pt;}
.w0_c01298{width:956.933333pt;}
.x0_c01298{left:0.000000pt;}
.xe8_c01298{left:86.013333pt;}
.x11c_c01298{left:88.320000pt;}
.xf0_c01298{left:92.160000pt;}
.xe9_c01298{left:95.226667pt;}
.xea_c01298{left:99.066667pt;}
.xeb_c01298{left:102.906667pt;}
.x9c_c01298{left:109.826667pt;}
.xf1_c01298{left:114.426667pt;}
.xec_c01298{left:122.880000pt;}
.x9d_c01298{left:127.493333pt;}
.xe5_c01298{left:129.786667pt;}
.xed_c01298{left:141.306667pt;}
.xde_c01298{left:145.920000pt;}
.xa1_c01298{left:148.226667pt;}
.x10c_c01298{left:153.600000pt;}
.x94_c01298{left:158.973333pt;}
.x10e_c01298{left:160.506667pt;}
.xa5_c01298{left:164.346667pt;}
.xfb_c01298{left:167.426667pt;}
.x23_c01298{left:168.960000pt;}
.x95_c01298{left:171.266667pt;}
.xdf_c01298{left:172.800000pt;}
.xee_c01298{left:175.106667pt;}
.x10f_c01298{left:176.640000pt;}
.xf7_c01298{left:178.946667pt;}
.x53_c01298{left:180.480000pt;}
.x2f_c01298{left:182.786667pt;}
.x9e_c01298{left:185.093333pt;}
.x54_c01298{left:187.386667pt;}
.x87_c01298{left:188.933333pt;}
.x24_c01298{left:191.226667pt;}
.x6_c01298{left:192.773333pt;}
.x9f_c01298{left:194.306667pt;}
.x16_c01298{left:195.840000pt;}
.xf8_c01298{left:197.373333pt;}
.x96_c01298{left:201.213333pt;}
.xd1_c01298{left:202.746667pt;}
.x81_c01298{left:205.053333pt;}
.xcc_c01298{left:208.893333pt;}
.x17_c01298{left:210.426667pt;}
.x8f_c01298{left:211.973333pt;}
.xaa_c01298{left:214.266667pt;}
.x55_c01298{left:215.813333pt;}
.x25_c01298{left:218.880000pt;}
.x88_c01298{left:221.186667pt;}
.xf_c01298{left:222.720000pt;}
.x30_c01298{left:225.786667pt;}
.x11b_c01298{left:227.333333pt;}
.xe0_c01298{left:229.626667pt;}
.xf9_c01298{left:231.933333pt;}
.x7_c01298{left:234.240000pt;}
.x3e_c01298{left:237.306667pt;}
.x47_c01298{left:241.920000pt;}
.xf6_c01298{left:243.453333pt;}
.xc5_c01298{left:245.760000pt;}
.xc1_c01298{left:247.293333pt;}
.xa2_c01298{left:248.826667pt;}
.x26_c01298{left:251.906667pt;}
.xcd_c01298{left:253.440000pt;}
.x89_c01298{left:257.280000pt;}
.xaf_c01298{left:261.120000pt;}
.xe3_c01298{left:264.960000pt;}
.x74_c01298{left:267.266667pt;}
.x70_c01298{left:268.800000pt;}
.x111_c01298{left:270.333333pt;}
.x18_c01298{left:271.866667pt;}
.x31_c01298{left:273.413333pt;}
.xc2_c01298{left:277.253333pt;}
.x27_c01298{left:280.320000pt;}
.x5f_c01298{left:281.853333pt;}
.x2_c01298{left:284.160000pt;}
.xb0_c01298{left:287.226667pt;}
.x108_c01298{left:288.773333pt;}
.x101_c01298{left:291.066667pt;}
.x8_c01298{left:292.613333pt;}
.xa3_c01298{left:294.906667pt;}
.x39_c01298{left:296.453333pt;}
.x63_c01298{left:299.520000pt;}
.x32_c01298{left:301.053333pt;}
.x82_c01298{left:304.133333pt;}
.x9_c01298{left:305.666667pt;}
.x112_c01298{left:309.506667pt;}
.x48_c01298{left:311.040000pt;}
.xa4_c01298{left:312.573333pt;}
.x6b_c01298{left:315.653333pt;}
.x3_c01298{left:318.720000pt;}
.x3f_c01298{left:320.253333pt;}
.xc3_c01298{left:321.786667pt;}
.xfa_c01298{left:324.866667pt;}
.xba_c01298{left:327.173333pt;}
.xab_c01298{left:328.706667pt;}
.x8a_c01298{left:331.013333pt;}
.x28_c01298{left:334.080000pt;}
.xb1_c01298{left:335.613333pt;}
.x6c_c01298{left:338.693333pt;}
.xe4_c01298{left:340.226667pt;}
.x1_c01298{left:341.760000pt;}
.x109_c01298{left:343.293333pt;}
.x19_c01298{left:347.906667pt;}
.x79_c01298{left:349.440000pt;}
.x64_c01298{left:350.973333pt;}
.x3a_c01298{left:354.053333pt;}
.xc6_c01298{left:356.346667pt;}
.x33_c01298{left:358.653333pt;}
.xd6_c01298{left:360.186667pt;}
.x60_c01298{left:361.733333pt;}
.x49_c01298{left:363.266667pt;}
.xac_c01298{left:364.800000pt;}
.xb5_c01298{left:369.413333pt;}
.xfe_c01298{left:370.946667pt;}
.x56_c01298{left:372.480000pt;}
.x10_c01298{left:374.786667pt;}
.x7a_c01298{left:376.320000pt;}
.xc9_c01298{left:378.626667pt;}
.x75_c01298{left:380.933333pt;}
.xa6_c01298{left:384.000000pt;}
.xce_c01298{left:385.533333pt;}
.x40_c01298{left:387.066667pt;}
.x7b_c01298{left:389.373333pt;}
.x1a_c01298{left:392.453333pt;}
.x90_c01298{left:394.746667pt;}
.xbb_c01298{left:396.293333pt;}
.x71_c01298{left:397.826667pt;}
.x65_c01298{left:400.133333pt;}
.x105_c01298{left:403.200000pt;}
.x29_c01298{left:404.733333pt;}
.x4a_c01298{left:406.266667pt;}
.xcf_c01298{left:407.813333pt;}
.x83_c01298{left:410.106667pt;}
.x34_c01298{left:411.653333pt;}
.x57_c01298{left:413.946667pt;}
.xa_c01298{left:416.253333pt;}
.x35_c01298{left:417.786667pt;}
.x118_c01298{left:420.866667pt;}
.xbc_c01298{left:422.400000pt;}
.x41_c01298{left:427.013333pt;}
.x72_c01298{left:430.853333pt;}
.x36_c01298{left:432.386667pt;}
.xd2_c01298{left:433.920000pt;}
.xb2_c01298{left:435.453333pt;}
.xad_c01298{left:436.986667pt;}
.x7c_c01298{left:439.293333pt;}
.xa7_c01298{left:441.600000pt;}
.x2a_c01298{left:443.133333pt;}
.x97_c01298{left:449.280000pt;}
.xf4_c01298{left:453.893333pt;}
.xa0_c01298{left:458.493333pt;}
.x91_c01298{left:460.800000pt;}
.xff_c01298{left:462.333333pt;}
.xf5_c01298{left:463.866667pt;}
.xc7_c01298{left:466.946667pt;}
.x1b_c01298{left:468.480000pt;}
.x58_c01298{left:470.013333pt;}
.x106_c01298{left:472.320000pt;}
.x6d_c01298{left:473.853333pt;}
.xdc_c01298{left:475.386667pt;}
.x98_c01298{left:476.933333pt;}
.x4_c01298{left:479.226667pt;}
.x11_c01298{left:481.533333pt;}
.xd7_c01298{left:483.066667pt;}
.x1c_c01298{left:484.613333pt;}
.x42_c01298{left:486.906667pt;}
.xd8_c01298{left:490.746667pt;}
.x76_c01298{left:494.586667pt;}
.x107_c01298{left:497.666667pt;}
.xd0_c01298{left:499.973333pt;}
.xc4_c01298{left:501.506667pt;}
.x66_c01298{left:503.040000pt;}
.x100_c01298{left:508.413333pt;}
.xbd_c01298{left:509.946667pt;}
.xc8_c01298{left:514.560000pt;}
.x3b_c01298{left:516.866667pt;}
.xca_c01298{left:518.400000pt;}
.x43_c01298{left:519.933333pt;}
.xfc_c01298{left:522.240000pt;}
.x61_c01298{left:523.773333pt;}
.x59_c01298{left:525.306667pt;}
.x2b_c01298{left:526.853333pt;}
.xfd_c01298{left:528.386667pt;}
.x115_c01298{left:529.920000pt;}
.x84_c01298{left:531.453333pt;}
.x7d_c01298{left:533.760000pt;}
.x2c_c01298{left:539.133333pt;}
.x5a_c01298{left:541.440000pt;}
.x92_c01298{left:543.746667pt;}
.x37_c01298{left:546.053333pt;}
.xb6_c01298{left:549.120000pt;}
.xbe_c01298{left:550.653333pt;}
.x44_c01298{left:555.266667pt;}
.xd9_c01298{left:556.800000pt;}
.x73_c01298{left:558.333333pt;}
.xae_c01298{left:561.413333pt;}
.x116_c01298{left:563.706667pt;}
.xbf_c01298{left:565.253333pt;}
.x1d_c01298{left:566.786667pt;}
.x45_c01298{left:571.386667pt;}
.xd3_c01298{left:573.693333pt;}
.x8b_c01298{left:576.000000pt;}
.x6e_c01298{left:577.533333pt;}
.x113_c01298{left:579.066667pt;}
.x102_c01298{left:580.613333pt;}
.x12_c01298{left:583.680000pt;}
.x5b_c01298{left:587.520000pt;}
.x13_c01298{left:589.826667pt;}
.xcb_c01298{left:592.133333pt;}
.x67_c01298{left:594.426667pt;}
.x10a_c01298{left:595.973333pt;}
.x3c_c01298{left:599.040000pt;}
.xb3_c01298{left:605.946667pt;}
.x1e_c01298{left:607.493333pt;}
.x4f_c01298{left:609.026667pt;}
.xda_c01298{left:610.560000pt;}
.x38_c01298{left:614.400000pt;}
.x2d_c01298{left:616.706667pt;}
.x77_c01298{left:619.773333pt;}
.x5c_c01298{left:622.080000pt;}
.xf3_c01298{left:623.613333pt;}
.xb7_c01298{left:625.146667pt;}
.x119_c01298{left:626.693333pt;}
.x85_c01298{left:628.986667pt;}
.xa8_c01298{left:632.066667pt;}
.x2e_c01298{left:633.600000pt;}
.x68_c01298{left:638.213333pt;}
.xc0_c01298{left:639.746667pt;}
.x104_c01298{left:642.053333pt;}
.xb8_c01298{left:643.586667pt;}
.x6f_c01298{left:648.186667pt;}
.x117_c01298{left:649.733333pt;}
.x7e_c01298{left:651.266667pt;}
.xd4_c01298{left:652.800000pt;}
.x10b_c01298{left:655.106667pt;}
.x8c_c01298{left:656.640000pt;}
.x110_c01298{left:658.173333pt;}
.xdd_c01298{left:659.706667pt;}
.x1f_c01298{left:661.253333pt;}
.x99_c01298{left:663.546667pt;}
.xe6_c01298{left:665.093333pt;}
.x5d_c01298{left:667.386667pt;}
.x62_c01298{left:668.933333pt;}
.x93_c01298{left:670.466667pt;}
.xe7_c01298{left:674.306667pt;}
.x5_c01298{left:675.840000pt;}
.xb4_c01298{left:678.146667pt;}
.x50_c01298{left:680.453333pt;}
.xb_c01298{left:683.520000pt;}
.x4b_c01298{left:685.053333pt;}
.xef_c01298{left:686.586667pt;}
.x69_c01298{left:689.666667pt;}
.x20_c01298{left:691.200000pt;}
.xa9_c01298{left:692.733333pt;}
.x3d_c01298{left:694.266667pt;}
.x7f_c01298{left:698.106667pt;}
.xd5_c01298{left:700.413333pt;}
.x5e_c01298{left:703.493333pt;}
.x78_c01298{left:705.786667pt;}
.x8d_c01298{left:708.093333pt;}
.xc_c01298{left:710.400000pt;}
.xe1_c01298{left:712.706667pt;}
.x86_c01298{left:714.240000pt;}
.x14_c01298{left:717.306667pt;}
.x11a_c01298{left:718.853333pt;}
.x21_c01298{left:720.386667pt;}
.x4c_c01298{left:722.693333pt;}
.x9a_c01298{left:726.533333pt;}
.x80_c01298{left:729.600000pt;}
.xdb_c01298{left:731.906667pt;}
.x6a_c01298{left:733.440000pt;}
.xb9_c01298{left:736.506667pt;}
.xf2_c01298{left:740.346667pt;}
.x114_c01298{left:741.893333pt;}
.x10d_c01298{left:744.960000pt;}
.xd_c01298{left:753.413333pt;}
.x103_c01298{left:756.480000pt;}
.x9b_c01298{left:760.320000pt;}
.x46_c01298{left:762.626667pt;}
.x8e_c01298{left:766.466667pt;}
.x4d_c01298{left:768.773333pt;}
.x15_c01298{left:771.066667pt;}
.xe_c01298{left:778.746667pt;}
.x4e_c01298{left:780.293333pt;}
.x22_c01298{left:784.133333pt;}
.x51_c01298{left:793.346667pt;}
.x52_c01298{left:797.946667pt;}
.xe2_c01298{left:799.493739pt;}
.x11f_c01298{left:801.026667pt;}
.x11d_c01298{left:820.986667pt;}
.x11e_c01298{left:830.213333pt;}
.x122_c01298{left:836.346667pt;}
.x123_c01298{left:837.893333pt;}
.x124_c01298{left:840.960000pt;}
.x127_c01298{left:890.106667pt;}
.x128_c01298{left:900.093333pt;}
.x121_c01298{left:901.626667pt;}
.x129_c01298{left:911.613333pt;}
.x120_c01298{left:918.533333pt;}
.x125_c01298{left:930.053333pt;}
.x126_c01298{left:949.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01299;src:url('chunks/assets/font_ddbfa47350488f227fffcbaa.woff2')format("woff");}.ff1_c01299{font-family:ff1_c01299;line-height:1.109863;font-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_c01299{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m15_c01299{transform:matrix(0.038875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038875,0.000000,0.000000,0.250000,0,0);}
.mb5_c01299{transform:matrix(0.068525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068525,0.000000,0.000000,0.250000,0,0);}
.m1b_c01299{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m34_c01299{transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);}
.m182_c01299{transform:matrix(0.088850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088850,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01299{transform:matrix(0.090275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090275,0.000000,0.000000,0.250000,0,0);}
.mf3_c01299{transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092500,0.000000,0.000000,0.250000,0,0);}
.m8d_c01299{transform:matrix(0.093500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093500,0.000000,0.000000,0.250000,0,0);}
.m181_c01299{transform:matrix(0.096250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096250,0.000000,0.000000,0.250000,0,0);}
.m180_c01299{transform:matrix(0.096800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096800,0.000000,0.000000,0.250000,0,0);}
.m194_c01299{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);}
.m183_c01299{transform:matrix(0.101550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101550,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01299{transform:matrix(0.103300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103300,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01299{transform:matrix(0.103375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103375,0.000000,0.000000,0.250000,0,0);}
.m37_c01299{transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104150,0.000000,0.000000,0.250000,0,0);}
.m36_c01299{transform:matrix(0.106075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106075,0.000000,0.000000,0.250000,0,0);}
.me_c01299{transform:matrix(0.106500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01299{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);}
.md9_c01299{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.m1f1_c01299{transform:matrix(0.109475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109475,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01299{transform:matrix(0.110225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110225,0.000000,0.000000,0.250000,0,0);}
.m63_c01299{transform:matrix(0.111975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111975,0.000000,0.000000,0.250000,0,0);}
.m8f_c01299{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.me0_c01299{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m110_c01299{transform:matrix(0.113175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113175,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01299{transform:matrix(0.113300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113300,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01299{transform:matrix(0.113575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113575,0.000000,0.000000,0.250000,0,0);}
.m1be_c01299{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m188_c01299{transform:matrix(0.113950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113950,0.000000,0.000000,0.250000,0,0);}
.m46_c01299{transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);}
.m17a_c01299{transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);}
.m4c_c01299{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);}
.m193_c01299{transform:matrix(0.117575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117575,0.000000,0.000000,0.250000,0,0);}
.mcc_c01299{transform:matrix(0.117975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117975,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01299{transform:matrix(0.118575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118575,0.000000,0.000000,0.250000,0,0);}
.m60_c01299{transform:matrix(0.119375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119375,0.000000,0.000000,0.250000,0,0);}
.m22_c01299{transform:matrix(0.119700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119700,0.000000,0.000000,0.250000,0,0);}
.m186_c01299{transform:matrix(0.119850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119850,0.000000,0.000000,0.250000,0,0);}
.m6b_c01299{transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);}
.m136_c01299{transform:matrix(0.120475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120475,0.000000,0.000000,0.250000,0,0);}
.m91_c01299{transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);}
.m39_c01299{transform:matrix(0.122775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122775,0.000000,0.000000,0.250000,0,0);}
.m3b_c01299{transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);}
.m92_c01299{transform:matrix(0.123525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123525,0.000000,0.000000,0.250000,0,0);}
.m3f_c01299{transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);}
.m45_c01299{transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123600,0.000000,0.000000,0.250000,0,0);}
.m17f_c01299{transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);}
.m15a_c01299{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01299{transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);}
.m185_c01299{transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);}
.m94_c01299{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);}
.m172_c01299{transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);}
.m1f2_c01299{transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);}
.md5_c01299{transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01299{transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01299{transform:matrix(0.130025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130025,0.000000,0.000000,0.250000,0,0);}
.mbc_c01299{transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);}
.m35_c01299{transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);}
.mc4_c01299{transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);}
.m4e_c01299{transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);}
.mda_c01299{transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);}
.md2_c01299{transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);}
.m1ea_c01299{transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133750,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01299{transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);}
.md4_c01299{transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);}
.mdc_c01299{transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01299{transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);}
.m18a_c01299{transform:matrix(0.134725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134725,0.000000,0.000000,0.250000,0,0);}
.m9f_c01299{transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134950,0.000000,0.000000,0.250000,0,0);}
.m173_c01299{transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);}
.m3d_c01299{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);}
.m1eb_c01299{transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136250,0.000000,0.000000,0.250000,0,0);}
.m32_c01299{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m99_c01299{transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136800,0.000000,0.000000,0.250000,0,0);}
.m155_c01299{transform:matrix(0.137025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137025,0.000000,0.000000,0.250000,0,0);}
.mf1_c01299{transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);}
.me2_c01299{transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);}
.m5f_c01299{transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137725,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01299{transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);}
.med_c01299{transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);}
.m19c_c01299{transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);}
.m4f_c01299{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m154_c01299{transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);}
.m17e_c01299{transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);}
.m152_c01299{transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01299{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.m9b_c01299{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);}
.m126_c01299{transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01299{transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);}
.mc2_c01299{transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);}
.m2_c01299{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01299{transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);}
.m10e_c01299{transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);}
.m140_c01299{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.mc5_c01299{transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);}
.m18d_c01299{transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);}
.m44_c01299{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);}
.mf4_c01299{transform:matrix(0.146100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146100,0.000000,0.000000,0.250000,0,0);}
.m10d_c01299{transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);}
.mf0_c01299{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.mdd_c01299{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.m175_c01299{transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147200,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01299{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.m98_c01299{transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);}
.m31_c01299{transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148925,0.000000,0.000000,0.250000,0,0);}
.m141_c01299{transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148950,0.000000,0.000000,0.250000,0,0);}
.m62_c01299{transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);}
.m13e_c01299{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);}
.m184_c01299{transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);}
.m2f_c01299{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);}
.m195_c01299{transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);}
.m64_c01299{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.m84_c01299{transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);}
.mce_c01299{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.mbb_c01299{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.m20_c01299{transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151625,0.000000,0.000000,0.250000,0,0);}
.m176_c01299{transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01299{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);}
.mc7_c01299{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.m15c_c01299{transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);}
.m85_c01299{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.m189_c01299{transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);}
.m13b_c01299{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);}
.m1e9_c01299{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m19b_c01299{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m148_c01299{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.m129_c01299{transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01299{transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01299{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);}
.m13d_c01299{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.mcb_c01299{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01299{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);}
.mb9_c01299{transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);}
.m112_c01299{transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);}
.m8e_c01299{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m199_c01299{transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158200,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01299{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.mfb_c01299{transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01299{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m1db_c01299{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.m17d_c01299{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);}
.m43_c01299{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01299{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);}
.m82_c01299{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m162_c01299{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01299{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);}
.m106_c01299{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.mae_c01299{transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);}
.m83_c01299{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.m96_c01299{transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);}
.mb4_c01299{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.mbf_c01299{transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);}
.m105_c01299{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);}
.m18b_c01299{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.m76_c01299{transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);}
.md0_c01299{transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);}
.mef_c01299{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.m13a_c01299{transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);}
.md7_c01299{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.maf_c01299{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.ma6_c01299{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m1e_c01299{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);}
.m68_c01299{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m187_c01299{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.mb7_c01299{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m42_c01299{transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);}
.m12f_c01299{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01299{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.m1af_c01299{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01299{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.m4b_c01299{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);}
.m1a4_c01299{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01299{transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);}
.m174_c01299{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m1ee_c01299{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.m12a_c01299{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01299{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.m178_c01299{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m27_c01299{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.mf2_c01299{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.ma1_c01299{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m158_c01299{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.m5e_c01299{transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01299{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m15b_c01299{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m65_c01299{transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171825,0.000000,0.000000,0.250000,0,0);}
.m101_c01299{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);}
.m25_c01299{transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01299{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.m15d_c01299{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m30_c01299{transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01299{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m196_c01299{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m4a_c01299{transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);}
.mc3_c01299{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.m17c_c01299{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.m1ed_c01299{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.m5b_c01299{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01299{transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175575,0.000000,0.000000,0.250000,0,0);}
.mf5_c01299{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);}
.m73_c01299{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);}
.m151_c01299{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);}
.m11b_c01299{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);}
.m147_c01299{transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);}
.mdf_c01299{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);}
.m49_c01299{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01299{transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);}
.m16f_c01299{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m13c_c01299{transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01299{transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178025,0.000000,0.000000,0.250000,0,0);}
.m170_c01299{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);}
.m61_c01299{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m197_c01299{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01299{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);}
.md6_c01299{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);}
.m150_c01299{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);}
.m54_c01299{transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);}
.m10a_c01299{transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);}
.m192_c01299{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m90_c01299{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.ma2_c01299{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.m166_c01299{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);}
.m9d_c01299{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m179_c01299{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.m8a_c01299{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);}
.m19d_c01299{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01299{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.mf7_c01299{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);}
.m4d_c01299{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.me1_c01299{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);}
.m130_c01299{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);}
.m113_c01299{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);}
.m80_c01299{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);}
.m88_c01299{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);}
.m19e_c01299{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);}
.m1a0_c01299{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);}
.m1ca_c01299{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);}
.m57_c01299{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01299{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m167_c01299{transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186175,0.000000,0.000000,0.250000,0,0);}
.m7c_c01299{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);}
.mca_c01299{transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);}
.m157_c01299{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m145_c01299{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);}
.md3_c01299{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);}
.m11c_c01299{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);}
.m3_c01299{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.mad_c01299{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);}
.m191_c01299{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01299{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01299{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.m1ef_c01299{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m5a_c01299{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m16c_c01299{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m169_c01299{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);}
.m67_c01299{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.mee_c01299{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);}
.m14b_c01299{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);}
.mf8_c01299{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);}
.mbd_c01299{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);}
.m116_c01299{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);}
.m123_c01299{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.mb2_c01299{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.mab_c01299{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.m17b_c01299{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);}
.md1_c01299{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01299{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.me5_c01299{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);}
.m144_c01299{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.mfe_c01299{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);}
.m125_c01299{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.m12d_c01299{transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);}
.m137_c01299{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m51_c01299{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);}
.m163_c01299{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.m161_c01299{transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);}
.m6a_c01299{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);}
.mea_c01299{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);}
.m15f_c01299{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);}
.m8b_c01299{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m1e7_c01299{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);}
.m165_c01299{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);}
.m89_c01299{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);}
.m19f_c01299{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.mdb_c01299{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01299{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m14f_c01299{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m108_c01299{transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);}
.m47_c01299{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.m168_c01299{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.me7_c01299{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01299{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01299{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);}
.m138_c01299{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m134_c01299{transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);}
.md8_c01299{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.mac_c01299{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m10b_c01299{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);}
.mde_c01299{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);}
.m1e8_c01299{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.me8_c01299{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.m29_c01299{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);}
.m7a_c01299{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m127_c01299{transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);}
.m159_c01299{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);}
.mb3_c01299{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);}
.m12b_c01299{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m115_c01299{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m97_c01299{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.m19a_c01299{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m8c_c01299{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);}
.me6_c01299{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.mfd_c01299{transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);}
.m95_c01299{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m1e6_c01299{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);}
.mba_c01299{transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);}
.mc9_c01299{transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);}
.m14e_c01299{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01299{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);}
.m2a_c01299{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);}
.mfa_c01299{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01299{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01299{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);}
.m9e_c01299{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.mc1_c01299{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.m2c_c01299{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01299{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);}
.m190_c01299{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m69_c01299{transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01299{transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220200,0.000000,0.000000,0.250000,0,0);}
.m153_c01299{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.mbe_c01299{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.m132_c01299{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);}
.m16e_c01299{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.m18f_c01299{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.m18e_c01299{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);}
.m17_c01299{transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);}
.ma3_c01299{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);}
.m52_c01299{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);}
.m28_c01299{transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);}
.m149_c01299{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01299{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m2e_c01299{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);}
.m121_c01299{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);}
.m23_c01299{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);}
.m12c_c01299{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m156_c01299{transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);}
.m9a_c01299{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);}
.m164_c01299{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01299{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);}
.m171_c01299{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01299{transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);}
.m5d_c01299{transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);}
.m1de_c01299{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01299{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);}
.mf9_c01299{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m15e_c01299{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);}
.m3c_c01299{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);}
.m10f_c01299{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);}
.m7d_c01299{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.m11d_c01299{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m135_c01299{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);}
.m133_c01299{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.m12e_c01299{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);}
.m14c_c01299{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);}
.m14d_c01299{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);}
.m77_c01299{transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);}
.mfc_c01299{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m118_c01299{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);}
.m5c_c01299{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m7f_c01299{transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);}
.ma5_c01299{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m107_c01299{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);}
.m93_c01299{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);}
.m55_c01299{transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);}
.m87_c01299{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);}
.m11f_c01299{transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);}
.m16b_c01299{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);}
.m114_c01299{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);}
.m111_c01299{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);}
.m102_c01299{transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);}
.ma4_c01299{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);}
.m160_c01299{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);}
.m9_c01299{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);}
.m177_c01299{transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242000,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01299{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);}
.m1a8_c01299{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);}
.m26_c01299{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);}
.m11a_c01299{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);}
.m128_c01299{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);}
.m11e_c01299{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m1f0_c01299{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);}
.m10c_c01299{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m16_c01299{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);}
.m1c5_c01299{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);}
.m9c_c01299{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);}
.m21_c01299{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mc_c01299{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);}
.m7e_c01299{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);}
.m66_c01299{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);}
.m124_c01299{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);}
.m18_c01299{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m119_c01299{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma8_c01299{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m53_c01299{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);}
.mb1_c01299{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m81_c01299{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);}
.m14a_c01299{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);}
.m100_c01299{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8_c01299{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);}
.m14_c01299{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01299{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me9_c01299{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);}
.m19_c01299{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01299{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);}
.m50_c01299{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);}
.m131_c01299{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m139_c01299{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me4_c01299{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);}
.m6c_c01299{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c01299{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01299{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);}
.m120_c01299{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m109_c01299{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.ma_c01299{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01299{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m70_c01299{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc8_c01299{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma9_c01299{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mff_c01299{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);}
.m146_c01299{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01299{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m16d_c01299{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m142_c01299{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m198_c01299{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);}
.m122_c01299{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m59_c01299{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m38_c01299{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);}
.maa_c01299{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mc0_c01299{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1_c01299{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);}
.m103_c01299{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01299{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);}
.m5_c01299{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m48_c01299{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m12_c01299{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);}
.m75_c01299{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc6_c01299{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mcd_c01299{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1da_c01299{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m33_c01299{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m0_c01299{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);}
.m7b_c01299{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.me3_c01299{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);}
.m72_c01299{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mb_c01299{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mec_c01299{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01299{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);}
.m71_c01299{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m13_c01299{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m86_c01299{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m58_c01299{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m143_c01299{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);}
.mcf_c01299{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mb8_c01299{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m104_c01299{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m79_c01299{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);}
.m1dc_c01299{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mf6_c01299{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mb0_c01299{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m40_c01299{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);}
.m13f_c01299{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m18c_c01299{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.ma7_c01299{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01299{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01299{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);}
.m41_c01299{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m6_c01299{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m16a_c01299{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.m117_c01299{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m4_c01299{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m11_c01299{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);}
.m1df_c01299{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m10_c01299{transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);}
.m56_c01299{transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.757500,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01299{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.ma0_c01299{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m74_c01299{transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01299{transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);}
.meb_c01299{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01299{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01299{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01299{transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.175000,0.000000,0.000000,0.250000,0,0);}
.mf_c01299{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01299{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.md_c01299{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01299{transform:matrix(1.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.842500,0.000000,0.000000,0.250000,0,0);}
.m78_c01299{transform:matrix(7.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.055000,0.000000,0.000000,0.250000,0,0);}
.v1_c01299{vertical-align:-3.420000px;}
.v0_c01299{vertical-align:0.000000px;}
.ls2_c01299{letter-spacing:0.000000px;}
.ls0_c01299{letter-spacing:63.166740px;}
.ls1_c01299{letter-spacing:496.707000px;}
.sc__c01299{text-shadow:none;}
.sc0_c01299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01299{-webkit-text-stroke:0px transparent;}
.sc0_c01299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01299{word-spacing:0.000000px;}
.fc0_c01299{color:transparent;}
.fs2_c01299{font-size:3.456000px;}
.fs16_c01299{font-size:6.000000px;}
.fs6_c01299{font-size:6.900000px;}
.fs7_c01299{font-size:10.380000px;}
.fsa_c01299{font-size:13.800000px;}
.fs0_c01299{font-size:17.280000px;}
.fs4_c01299{font-size:20.760000px;}
.fs5_c01299{font-size:24.180000px;}
.fs3_c01299{font-size:27.660000px;}
.fs21_c01299{font-size:31.080000px;}
.fs1e_c01299{font-size:34.560000px;}
.fs20_c01299{font-size:38.040000px;}
.fs1_c01299{font-size:41.460000px;}
.fs17_c01299{font-size:44.940000px;}
.fs22_c01299{font-size:48.360000px;}
.fs18_c01299{font-size:51.840000px;}
.fse_c01299{font-size:55.320000px;}
.fs1c_c01299{font-size:58.740000px;}
.fs1d_c01299{font-size:62.220000px;}
.fs13_c01299{font-size:65.640000px;}
.fs1b_c01299{font-size:69.120000px;}
.fs11_c01299{font-size:72.600000px;}
.fs14_c01299{font-size:76.020000px;}
.fs19_c01299{font-size:79.500000px;}
.fsc_c01299{font-size:82.920000px;}
.fs1a_c01299{font-size:86.400000px;}
.fsf_c01299{font-size:89.880000px;}
.fs10_c01299{font-size:93.300000px;}
.fsb_c01299{font-size:96.780000px;}
.fs1f_c01299{font-size:100.200000px;}
.fs23_c01299{font-size:103.680000px;}
.fs9_c01299{font-size:107.160000px;}
.fs12_c01299{font-size:110.580000px;}
.fs24_c01299{font-size:114.060000px;}
.fsd_c01299{font-size:148.620000px;}
.fs15_c01299{font-size:152.040000px;}
.fs8_c01299{font-size:186.600000px;}
.y0_c01299{bottom:0.000000px;}
.y1c7_c01299{bottom:182.310000px;}
.y1c6_c01299{bottom:184.035000px;}
.y1c8_c01299{bottom:185.760000px;}
.y1c4_c01299{bottom:186.630000px;}
.y1c3_c01299{bottom:189.210000px;}
.y1c1_c01299{bottom:191.805000px;}
.y1c2_c01299{bottom:192.675000px;}
.y1c0_c01299{bottom:194.400000px;}
.y1c5_c01299{bottom:206.490000px;}
.y1bc_c01299{bottom:210.810000px;}
.y1be_c01299{bottom:212.550000px;}
.y1b7_c01299{bottom:213.405000px;}
.y1b9_c01299{bottom:214.275000px;}
.y1bb_c01299{bottom:215.130000px;}
.y1bd_c01299{bottom:216.000000px;}
.y1b8_c01299{bottom:219.450000px;}
.y1bf_c01299{bottom:222.915000px;}
.y1ba_c01299{bottom:228.960000px;}
.y1b1_c01299{bottom:233.280000px;}
.y1b5_c01299{bottom:234.150000px;}
.y1b6_c01299{bottom:235.005000px;}
.y1b4_c01299{bottom:237.600000px;}
.y1b3_c01299{bottom:238.470000px;}
.y1b2_c01299{bottom:239.325000px;}
.y1ab_c01299{bottom:252.285000px;}
.y1a8_c01299{bottom:253.155000px;}
.y1af_c01299{bottom:254.010000px;}
.y1ae_c01299{bottom:258.330000px;}
.y1a9_c01299{bottom:260.070000px;}
.y1aa_c01299{bottom:260.925000px;}
.y1ad_c01299{bottom:266.115000px;}
.y1ac_c01299{bottom:266.970000px;}
.y1b0_c01299{bottom:267.840000px;}
.y1a1_c01299{bottom:268.710000px;}
.y1a5_c01299{bottom:269.565000px;}
.y1a0_c01299{bottom:270.435000px;}
.y1a2_c01299{bottom:272.160000px;}
.y1a3_c01299{bottom:273.885000px;}
.y1a4_c01299{bottom:276.480000px;}
.y1a7_c01299{bottom:285.990000px;}
.y1a6_c01299{bottom:287.715000px;}
.y19b_c01299{bottom:292.890000px;}
.y19f_c01299{bottom:293.760000px;}
.y19e_c01299{bottom:294.630000px;}
.y19c_c01299{bottom:295.485000px;}
.y19d_c01299{bottom:297.210000px;}
.y19a_c01299{bottom:311.910000px;}
.y195_c01299{bottom:312.765000px;}
.y194_c01299{bottom:315.360000px;}
.y199_c01299{bottom:318.810000px;}
.y198_c01299{bottom:319.680000px;}
.y196_c01299{bottom:321.405000px;}
.y197_c01299{bottom:324.870000px;}
.y18f_c01299{bottom:333.510000px;}
.y18d_c01299{bottom:334.365000px;}
.y18e_c01299{bottom:335.235000px;}
.y18c_c01299{bottom:336.090000px;}
.y190_c01299{bottom:337.830000px;}
.y191_c01299{bottom:339.555000px;}
.y193_c01299{bottom:340.410000px;}
.y192_c01299{bottom:343.875000px;}
.y183_c01299{bottom:350.790000px;}
.y188_c01299{bottom:351.645000px;}
.y185_c01299{bottom:352.515000px;}
.y187_c01299{bottom:353.370000px;}
.y184_c01299{bottom:354.240000px;}
.y18b_c01299{bottom:355.965000px;}
.y189_c01299{bottom:360.285000px;}
.y18a_c01299{bottom:361.155000px;}
.y186_c01299{bottom:362.010000px;}
.y17e_c01299{bottom:371.520000px;}
.y17f_c01299{bottom:372.390000px;}
.y17c_c01299{bottom:373.245000px;}
.y17b_c01299{bottom:374.115000px;}
.y182_c01299{bottom:374.970000px;}
.y180_c01299{bottom:376.710000px;}
.y181_c01299{bottom:377.565000px;}
.y17d_c01299{bottom:381.030000px;}
.y177_c01299{bottom:394.845000px;}
.y176_c01299{bottom:395.715000px;}
.y179_c01299{bottom:396.570000px;}
.y17a_c01299{bottom:397.440000px;}
.y175_c01299{bottom:400.035000px;}
.y178_c01299{bottom:400.890000px;}
.y174_c01299{bottom:414.720000px;}
.y170_c01299{bottom:417.315000px;}
.y172_c01299{bottom:419.910000px;}
.y16f_c01299{bottom:420.765000px;}
.y171_c01299{bottom:421.635000px;}
.y16e_c01299{bottom:422.490000px;}
.y173_c01299{bottom:428.550000px;}
.y16a_c01299{bottom:429.405000px;}
.yf_c01299{bottom:434.595000px;}
.y16c_c01299{bottom:435.450000px;}
.y10_c01299{bottom:436.320000px;}
.y16d_c01299{bottom:437.190000px;}
.y16b_c01299{bottom:438.045000px;}
.y169_c01299{bottom:438.915000px;}
.y168_c01299{bottom:441.510000px;}
.y167_c01299{bottom:447.555000px;}
.ye_c01299{bottom:448.410000px;}
.y163_c01299{bottom:457.050000px;}
.y161_c01299{bottom:457.920000px;}
.y166_c01299{bottom:458.790000px;}
.y160_c01299{bottom:459.645000px;}
.y164_c01299{bottom:460.515000px;}
.y165_c01299{bottom:462.240000px;}
.y162_c01299{bottom:463.110000px;}
.y15b_c01299{bottom:470.880000px;}
.y15c_c01299{bottom:471.750000px;}
.y158_c01299{bottom:472.605000px;}
.y157_c01299{bottom:473.475000px;}
.y15d_c01299{bottom:475.200000px;}
.y15e_c01299{bottom:476.925000px;}
.y15a_c01299{bottom:477.795000px;}
.y159_c01299{bottom:482.115000px;}
.y15f_c01299{bottom:485.565000px;}
.y154_c01299{bottom:495.075000px;}
.y152_c01299{bottom:495.930000px;}
.y151_c01299{bottom:496.800000px;}
.y14f_c01299{bottom:497.670000px;}
.y153_c01299{bottom:498.525000px;}
.y14d_c01299{bottom:499.395000px;}
.y150_c01299{bottom:500.250000px;}
.y14e_c01299{bottom:503.715000px;}
.y156_c01299{bottom:512.355000px;}
.y155_c01299{bottom:513.210000px;}
.y14a_c01299{bottom:517.530000px;}
.y146_c01299{bottom:518.400000px;}
.y149_c01299{bottom:519.270000px;}
.y141_c01299{bottom:520.125000px;}
.y14b_c01299{bottom:520.995000px;}
.y144_c01299{bottom:521.850000px;}
.y145_c01299{bottom:522.720000px;}
.y142_c01299{bottom:523.590000px;}
.y143_c01299{bottom:524.445000px;}
.y148_c01299{bottom:525.315000px;}
.y14c_c01299{bottom:527.040000px;}
.y147_c01299{bottom:533.955000px;}
.y13d_c01299{bottom:537.405000px;}
.y13b_c01299{bottom:538.275000px;}
.y13f_c01299{bottom:541.725000px;}
.y13c_c01299{bottom:542.595000px;}
.y13e_c01299{bottom:546.045000px;}
.y140_c01299{bottom:550.365000px;}
.y136_c01299{bottom:556.410000px;}
.y135_c01299{bottom:557.280000px;}
.y139_c01299{bottom:558.150000px;}
.y137_c01299{bottom:559.005000px;}
.y138_c01299{bottom:559.875000px;}
.y13a_c01299{bottom:561.600000px;}
.y133_c01299{bottom:578.010000px;}
.y131_c01299{bottom:578.880000px;}
.y130_c01299{bottom:580.605000px;}
.y12f_c01299{bottom:583.200000px;}
.y134_c01299{bottom:584.070000px;}
.y132_c01299{bottom:592.710000px;}
.y128_c01299{bottom:598.755000px;}
.y127_c01299{bottom:599.610000px;}
.y12e_c01299{bottom:600.480000px;}
.y12d_c01299{bottom:601.350000px;}
.y12c_c01299{bottom:602.205000px;}
.y12a_c01299{bottom:603.930000px;}
.y12b_c01299{bottom:604.800000px;}
.y129_c01299{bottom:613.440000px;}
.y125_c01299{bottom:619.485000px;}
.y124_c01299{bottom:621.210000px;}
.y126_c01299{bottom:622.080000px;}
.y11f_c01299{bottom:638.490000px;}
.y11e_c01299{bottom:639.360000px;}
.y123_c01299{bottom:640.230000px;}
.y120_c01299{bottom:641.085000px;}
.y122_c01299{bottom:641.955000px;}
.y121_c01299{bottom:645.405000px;}
.y11b_c01299{bottom:660.090000px;}
.y117_c01299{bottom:660.960000px;}
.y11a_c01299{bottom:662.685000px;}
.y119_c01299{bottom:664.410000px;}
.y118_c01299{bottom:665.280000px;}
.y11c_c01299{bottom:666.150000px;}
.y11d_c01299{bottom:671.325000px;}
.y110_c01299{bottom:675.645000px;}
.y114_c01299{bottom:676.515000px;}
.y113_c01299{bottom:677.370000px;}
.y116_c01299{bottom:678.240000px;}
.y112_c01299{bottom:679.965000px;}
.y111_c01299{bottom:683.430000px;}
.y115_c01299{bottom:685.155000px;}
.y10b_c01299{bottom:699.840000px;}
.y10c_c01299{bottom:700.710000px;}
.y109_c01299{bottom:701.565000px;}
.y10a_c01299{bottom:704.160000px;}
.y10d_c01299{bottom:705.030000px;}
.y10e_c01299{bottom:705.885000px;}
.y10f_c01299{bottom:707.610000px;}
.y106_c01299{bottom:719.715000px;}
.y105_c01299{bottom:721.440000px;}
.y107_c01299{bottom:723.165000px;}
.y104_c01299{bottom:724.035000px;}
.y103_c01299{bottom:725.760000px;}
.y108_c01299{bottom:726.630000px;}
.yfe_c01299{bottom:738.720000px;}
.yff_c01299{bottom:739.590000px;}
.yfd_c01299{bottom:741.315000px;}
.y102_c01299{bottom:742.170000px;}
.y100_c01299{bottom:744.765000px;}
.y101_c01299{bottom:745.635000px;}
.yfc_c01299{bottom:756.870000px;}
.yfa_c01299{bottom:760.320000px;}
.yf5_c01299{bottom:761.190000px;}
.yf7_c01299{bottom:762.045000px;}
.yf6_c01299{bottom:765.510000px;}
.yf9_c01299{bottom:766.365000px;}
.yf8_c01299{bottom:769.830000px;}
.yfb_c01299{bottom:773.280000px;}
.yf0_c01299{bottom:779.325000px;}
.yed_c01299{bottom:780.195000px;}
.yef_c01299{bottom:781.050000px;}
.yee_c01299{bottom:785.370000px;}
.yf2_c01299{bottom:786.240000px;}
.yf4_c01299{bottom:787.965000px;}
.yf3_c01299{bottom:793.155000px;}
.yf1_c01299{bottom:795.750000px;}
.ye9_c01299{bottom:800.925000px;}
.yeb_c01299{bottom:801.795000px;}
.ye8_c01299{bottom:802.650000px;}
.yea_c01299{bottom:804.390000px;}
.ye7_c01299{bottom:805.245000px;}
.yec_c01299{bottom:816.480000px;}
.ye1_c01299{bottom:819.930000px;}
.ye6_c01299{bottom:820.800000px;}
.ye2_c01299{bottom:823.395000px;}
.ye4_c01299{bottom:824.250000px;}
.ye0_c01299{bottom:825.120000px;}
.ye3_c01299{bottom:825.990000px;}
.ye5_c01299{bottom:826.845000px;}
.ydc_c01299{bottom:839.805000px;}
.yda_c01299{bottom:840.675000px;}
.ydf_c01299{bottom:842.400000px;}
.ydb_c01299{bottom:845.850000px;}
.yde_c01299{bottom:846.720000px;}
.ydd_c01299{bottom:847.590000px;}
.yc_c01299{bottom:848.445000px;}
.yd_c01299{bottom:850.170000px;}
.yd5_c01299{bottom:860.550000px;}
.yd8_c01299{bottom:861.405000px;}
.yd6_c01299{bottom:862.275000px;}
.y7_c01299{bottom:863.130000px;}
.yd9_c01299{bottom:864.000000px;}
.yd3_c01299{bottom:864.870000px;}
.yd4_c01299{bottom:866.595000px;}
.yd7_c01299{bottom:867.450000px;}
.ycd_c01299{bottom:875.235000px;}
.yd0_c01299{bottom:876.090000px;}
.ycf_c01299{bottom:876.960000px;}
.ycb_c01299{bottom:877.830000px;}
.yca_c01299{bottom:878.685000px;}
.yce_c01299{bottom:882.150000px;}
.ycc_c01299{bottom:883.875000px;}
.yd1_c01299{bottom:887.325000px;}
.yd2_c01299{bottom:891.645000px;}
.yc9_c01299{bottom:900.285000px;}
.yc8_c01299{bottom:901.155000px;}
.yc7_c01299{bottom:902.010000px;}
.yc6_c01299{bottom:904.605000px;}
.yc5_c01299{bottom:906.330000px;}
.yc4_c01299{bottom:907.200000px;}
.yb_c01299{bottom:908.070000px;}
.yc3_c01299{bottom:908.925000px;}
.ybf_c01299{bottom:919.290000px;}
.yc1_c01299{bottom:920.160000px;}
.ybe_c01299{bottom:921.030000px;}
.ybc_c01299{bottom:921.885000px;}
.ybd_c01299{bottom:927.075000px;}
.yc2_c01299{bottom:927.930000px;}
.yc0_c01299{bottom:934.845000px;}
.yb7_c01299{bottom:939.165000px;}
.yb9_c01299{bottom:940.890000px;}
.yb8_c01299{bottom:941.760000px;}
.ybb_c01299{bottom:945.210000px;}
.yb6_c01299{bottom:946.080000px;}
.yba_c01299{bottom:957.315000px;}
.yaf_c01299{bottom:960.765000px;}
.yb0_c01299{bottom:961.635000px;}
.yb1_c01299{bottom:963.360000px;}
.yb3_c01299{bottom:964.230000px;}
.yae_c01299{bottom:966.810000px;}
.yb5_c01299{bottom:969.405000px;}
.yb2_c01299{bottom:973.725000px;}
.yb4_c01299{bottom:978.915000px;}
.yad_c01299{bottom:979.770000px;}
.yaa_c01299{bottom:980.640000px;}
.yac_c01299{bottom:981.510000px;}
.yab_c01299{bottom:982.365000px;}
.ya_c01299{bottom:984.090000px;}
.y9_c01299{bottom:984.960000px;}
.ya6_c01299{bottom:1000.515000px;}
.ya5_c01299{bottom:1001.370000px;}
.ya8_c01299{bottom:1002.240000px;}
.ya9_c01299{bottom:1007.430000px;}
.ya7_c01299{bottom:1014.330000px;}
.ya2_c01299{bottom:1019.520000px;}
.ya1_c01299{bottom:1020.390000px;}
.ya4_c01299{bottom:1025.565000px;}
.ya3_c01299{bottom:1032.480000px;}
.ya0_c01299{bottom:1039.395000px;}
.y99_c01299{bottom:1041.120000px;}
.y98_c01299{bottom:1041.990000px;}
.y9c_c01299{bottom:1042.845000px;}
.y97_c01299{bottom:1045.440000px;}
.y9b_c01299{bottom:1047.165000px;}
.y9a_c01299{bottom:1048.035000px;}
.y9e_c01299{bottom:1048.890000px;}
.y9d_c01299{bottom:1049.760000px;}
.y9f_c01299{bottom:1055.805000px;}
.y90_c01299{bottom:1062.720000px;}
.y96_c01299{bottom:1063.590000px;}
.y91_c01299{bottom:1064.445000px;}
.y95_c01299{bottom:1065.315000px;}
.y92_c01299{bottom:1067.910000px;}
.y93_c01299{bottom:1071.360000px;}
.y94_c01299{bottom:1075.680000px;}
.y8e_c01299{bottom:1081.725000px;}
.y87_c01299{bottom:1082.595000px;}
.y89_c01299{bottom:1083.450000px;}
.y8a_c01299{bottom:1084.320000px;}
.y88_c01299{bottom:1087.770000px;}
.y8_c01299{bottom:1088.640000px;}
.y8d_c01299{bottom:1089.510000px;}
.y8f_c01299{bottom:1091.235000px;}
.y8b_c01299{bottom:1092.090000px;}
.y8c_c01299{bottom:1096.410000px;}
.y83_c01299{bottom:1102.470000px;}
.y84_c01299{bottom:1104.195000px;}
.y86_c01299{bottom:1105.050000px;}
.y81_c01299{bottom:1106.790000px;}
.y82_c01299{bottom:1108.515000px;}
.y85_c01299{bottom:1112.835000px;}
.y6_c01299{bottom:1118.010000px;}
.y79_c01299{bottom:1123.200000px;}
.y7b_c01299{bottom:1124.925000px;}
.y7c_c01299{bottom:1125.795000px;}
.y7e_c01299{bottom:1126.650000px;}
.y7a_c01299{bottom:1127.520000px;}
.y80_c01299{bottom:1128.390000px;}
.y78_c01299{bottom:1130.115000px;}
.y7f_c01299{bottom:1130.970000px;}
.y7d_c01299{bottom:1132.710000px;}
.y73_c01299{bottom:1135.290000px;}
.y76_c01299{bottom:1137.885000px;}
.y71_c01299{bottom:1138.755000px;}
.y77_c01299{bottom:1139.610000px;}
.y74_c01299{bottom:1140.480000px;}
.y75_c01299{bottom:1141.350000px;}
.y72_c01299{bottom:1142.205000px;}
.y70_c01299{bottom:1143.075000px;}
.y6f_c01299{bottom:1143.930000px;}
.y66_c01299{bottom:1144.800000px;}
.y6a_c01299{bottom:1145.670000px;}
.y6c_c01299{bottom:1147.395000px;}
.y6d_c01299{bottom:1148.250000px;}
.y6e_c01299{bottom:1151.715000px;}
.y6b_c01299{bottom:1152.570000px;}
.y69_c01299{bottom:1153.440000px;}
.y67_c01299{bottom:1154.310000px;}
.y68_c01299{bottom:1155.165000px;}
.y65_c01299{bottom:1156.035000px;}
.y63_c01299{bottom:1158.630000px;}
.y64_c01299{bottom:1161.210000px;}
.y61_c01299{bottom:1162.080000px;}
.y5f_c01299{bottom:1162.950000px;}
.y62_c01299{bottom:1163.805000px;}
.y60_c01299{bottom:1165.530000px;}
.y5a_c01299{bottom:1166.400000px;}
.y5d_c01299{bottom:1168.995000px;}
.y59_c01299{bottom:1169.850000px;}
.y5e_c01299{bottom:1170.720000px;}
.y5_c01299{bottom:1171.590000px;}
.y5c_c01299{bottom:1179.360000px;}
.y5b_c01299{bottom:1181.085000px;}
.y58_c01299{bottom:1183.680000px;}
.y55_c01299{bottom:1184.550000px;}
.y57_c01299{bottom:1185.405000px;}
.y56_c01299{bottom:1186.275000px;}
.y54_c01299{bottom:1188.000000px;}
.y49_c01299{bottom:1206.150000px;}
.y4c_c01299{bottom:1207.005000px;}
.y50_c01299{bottom:1207.875000px;}
.y52_c01299{bottom:1208.730000px;}
.y4a_c01299{bottom:1209.600000px;}
.y51_c01299{bottom:1210.470000px;}
.y4e_c01299{bottom:1215.645000px;}
.y4b_c01299{bottom:1217.370000px;}
.y4d_c01299{bottom:1218.240000px;}
.y53_c01299{bottom:1222.560000px;}
.y41_c01299{bottom:1226.880000px;}
.y4f_c01299{bottom:1227.750000px;}
.y43_c01299{bottom:1229.475000px;}
.y47_c01299{bottom:1230.330000px;}
.y44_c01299{bottom:1231.200000px;}
.y48_c01299{bottom:1232.070000px;}
.y46_c01299{bottom:1232.925000px;}
.y42_c01299{bottom:1234.650000px;}
.y45_c01299{bottom:1236.390000px;}
.y40_c01299{bottom:1241.565000px;}
.y3f_c01299{bottom:1243.290000px;}
.y3d_c01299{bottom:1244.160000px;}
.y3c_c01299{bottom:1245.030000px;}
.y3b_c01299{bottom:1250.205000px;}
.y3e_c01299{bottom:1255.395000px;}
.y38_c01299{bottom:1264.035000px;}
.y36_c01299{bottom:1264.890000px;}
.y3a_c01299{bottom:1265.760000px;}
.y37_c01299{bottom:1271.805000px;}
.y39_c01299{bottom:1277.850000px;}
.y32_c01299{bottom:1281.315000px;}
.y34_c01299{bottom:1283.040000px;}
.y31_c01299{bottom:1284.765000px;}
.y3_c01299{bottom:1287.360000px;}
.y4_c01299{bottom:1288.230000px;}
.y33_c01299{bottom:1289.085000px;}
.y35_c01299{bottom:1293.405000px;}
.y2c_c01299{bottom:1302.915000px;}
.y2b_c01299{bottom:1303.770000px;}
.y2f_c01299{bottom:1304.640000px;}
.y30_c01299{bottom:1305.510000px;}
.y2e_c01299{bottom:1306.365000px;}
.y2a_c01299{bottom:1308.960000px;}
.y28_c01299{bottom:1309.830000px;}
.y27_c01299{bottom:1310.685000px;}
.y29_c01299{bottom:1311.555000px;}
.y2d_c01299{bottom:1314.150000px;}
.y23_c01299{bottom:1327.965000px;}
.y22_c01299{bottom:1328.835000px;}
.y24_c01299{bottom:1329.690000px;}
.y21_c01299{bottom:1331.430000px;}
.y25_c01299{bottom:1333.155000px;}
.y26_c01299{bottom:1334.880000px;}
.y1f_c01299{bottom:1335.750000px;}
.y2_c01299{bottom:1337.475000px;}
.y20_c01299{bottom:1340.925000px;}
.y1_c01299{bottom:1347.840000px;}
.y1cb_c01299{bottom:1352.160000px;}
.y1e_c01299{bottom:1353.885000px;}
.y1a_c01299{bottom:1356.480000px;}
.y1ca_c01299{bottom:1359.930000px;}
.y1b_c01299{bottom:1360.800000px;}
.y1c_c01299{bottom:1361.670000px;}
.y1d_c01299{bottom:1362.525000px;}
.y17_c01299{bottom:1379.805000px;}
.y19_c01299{bottom:1392.765000px;}
.y16_c01299{bottom:1393.635000px;}
.y14_c01299{bottom:1399.680000px;}
.y18_c01299{bottom:1400.550000px;}
.y15_c01299{bottom:1412.640000px;}
.y13_c01299{bottom:1416.960000px;}
.y1c9_c01299{bottom:1417.830000px;}
.y11_c01299{bottom:1463.610000px;}
.y12_c01299{bottom:1465.350000px;}
.h4_c01299{height:3.110063px;}
.h18_c01299{height:5.399414px;}
.h8_c01299{height:6.209326px;}
.h9_c01299{height:9.340986px;}
.hc_c01299{height:12.418652px;}
.h2_c01299{height:15.550313px;}
.h6_c01299{height:18.681973px;}
.h7_c01299{height:21.759639px;}
.h5_c01299{height:24.891299px;}
.h23_c01299{height:27.968965px;}
.h20_c01299{height:31.100625px;}
.h22_c01299{height:34.232285px;}
.h3_c01299{height:37.309951px;}
.h19_c01299{height:40.441611px;}
.h24_c01299{height:43.519277px;}
.h1a_c01299{height:46.650937px;}
.h10_c01299{height:49.782598px;}
.h1e_c01299{height:52.860264px;}
.h1f_c01299{height:55.991924px;}
.h15_c01299{height:59.069590px;}
.h1d_c01299{height:62.201250px;}
.h13_c01299{height:65.332910px;}
.h16_c01299{height:68.410576px;}
.h1b_c01299{height:71.542236px;}
.he_c01299{height:74.619902px;}
.h1c_c01299{height:77.751563px;}
.h11_c01299{height:80.883223px;}
.h12_c01299{height:83.960889px;}
.hd_c01299{height:87.092549px;}
.h21_c01299{height:90.170215px;}
.h25_c01299{height:93.301875px;}
.hb_c01299{height:96.433535px;}
.h14_c01299{height:99.511201px;}
.h26_c01299{height:102.642861px;}
.hf_c01299{height:133.743486px;}
.h17_c01299{height:136.821152px;}
.ha_c01299{height:167.921777px;}
.h0_c01299{height:1509.405000px;}
.h1_c01299{height:1509.750000px;}
.w0_c01299{width:1088.640000px;}
.w1_c01299{width:1089.000000px;}
.x0_c01299{left:0.000000px;}
.x1_c01299{left:13.830000px;}
.x2_c01299{left:28.515000px;}
.x5_c01299{left:70.845000px;}
.x3_c01299{left:82.080000px;}
.x4_c01299{left:89.850000px;}
.x6_c01299{left:92.445000px;}
.xc_c01299{left:133.050000px;}
.xd_c01299{left:144.285000px;}
.x8_c01299{left:158.970000px;}
.x7_c01299{left:164.160000px;}
.xa_c01299{left:169.350000px;}
.x9_c01299{left:171.930000px;}
.x123_c01299{left:178.845000px;}
.xb_c01299{left:184.035000px;}
.x5b_c01299{left:186.630000px;}
.xfe_c01299{left:189.210000px;}
.x99_c01299{left:203.910000px;}
.xa7_c01299{left:213.405000px;}
.xd8_c01299{left:219.450000px;}
.x106_c01299{left:222.045000px;}
.xa8_c01299{left:226.365000px;}
.x41_c01299{left:228.960000px;}
.x8a_c01299{left:230.685000px;}
.x80_c01299{left:232.410000px;}
.x22_c01299{left:234.150000px;}
.x11a_c01299{left:235.875000px;}
.x23_c01299{left:237.600000px;}
.x62_c01299{left:240.195000px;}
.x24_c01299{left:246.240000px;}
.x1f_c01299{left:248.835000px;}
.x111_c01299{left:251.430000px;}
.x49_c01299{left:254.880000px;}
.x32_c01299{left:259.200000px;}
.x25_c01299{left:260.925000px;}
.xb6_c01299{left:262.650000px;}
.x10a_c01299{left:267.840000px;}
.x4d_c01299{left:269.565000px;}
.xc4_c01299{left:276.480000px;}
.x33_c01299{left:278.205000px;}
.x81_c01299{left:281.670000px;}
.xd3_c01299{left:283.395000px;}
.x54_c01299{left:285.120000px;}
.x4e_c01299{left:289.440000px;}
.xae_c01299{left:293.760000px;}
.x8b_c01299{left:295.485000px;}
.xc5_c01299{left:300.675000px;}
.xfa_c01299{left:302.400000px;}
.x34_c01299{left:306.720000px;}
.x42_c01299{left:309.315000px;}
.x92_c01299{left:311.910000px;}
.xf4_c01299{left:314.490000px;}
.x9c_c01299{left:316.230000px;}
.x4a_c01299{left:318.810000px;}
.x8c_c01299{left:321.405000px;}
.xb7_c01299{left:324.870000px;}
.x76_c01299{left:327.450000px;}
.x26_c01299{left:330.045000px;}
.x35_c01299{left:332.640000px;}
.x10d_c01299{left:334.365000px;}
.xbe_c01299{left:336.090000px;}
.x36_c01299{left:337.830000px;}
.x112_c01299{left:340.410000px;}
.x18_c01299{left:342.150000px;}
.xbf_c01299{left:343.875000px;}
.x5e_c01299{left:345.600000px;}
.x46_c01299{left:347.325000px;}
.xfb_c01299{left:349.050000px;}
.xba_c01299{left:350.790000px;}
.x77_c01299{left:352.515000px;}
.x82_c01299{left:354.240000px;}
.x120_c01299{left:355.965000px;}
.x19_c01299{left:358.560000px;}
.x121_c01299{left:361.155000px;}
.x55_c01299{left:364.605000px;}
.xdc_c01299{left:366.330000px;}
.x91_c01299{left:368.070000px;}
.xd4_c01299{left:369.795000px;}
.x93_c01299{left:371.520000px;}
.x83_c01299{left:373.245000px;}
.x37_c01299{left:376.710000px;}
.xc6_c01299{left:379.290000px;}
.x27_c01299{left:381.030000px;}
.xdf_c01299{left:383.610000px;}
.x94_c01299{left:387.930000px;}
.x63_c01299{left:392.250000px;}
.xa1_c01299{left:393.990000px;}
.x109_c01299{left:395.715000px;}
.x28_c01299{left:399.165000px;}
.x1a_c01299{left:401.760000px;}
.x84_c01299{left:405.210000px;}
.xc0_c01299{left:410.400000px;}
.xe7_c01299{left:412.125000px;}
.x4f_c01299{left:414.720000px;}
.xf5_c01299{left:418.170000px;}
.x10b_c01299{left:420.765000px;}
.x6e_c01299{left:422.490000px;}
.x11e_c01299{left:424.230000px;}
.x50_c01299{left:425.955000px;}
.x29_c01299{left:432.000000px;}
.x6f_c01299{left:433.725000px;}
.x51_c01299{left:436.320000px;}
.x11_c01299{left:438.045000px;}
.xa3_c01299{left:439.770000px;}
.x67_c01299{left:441.510000px;}
.x107_c01299{left:446.685000px;}
.x1b_c01299{left:448.410000px;}
.xa9_c01299{left:451.875000px;}
.x12_c01299{left:456.195000px;}
.x68_c01299{left:458.790000px;}
.x95_c01299{left:465.690000px;}
.xc1_c01299{left:468.285000px;}
.x78_c01299{left:470.880000px;}
.xec_c01299{left:474.330000px;}
.xfc_c01299{left:476.070000px;}
.xca_c01299{left:478.650000px;}
.x38_c01299{left:482.115000px;}
.xd0_c01299{left:483.840000px;}
.xe2_c01299{left:486.435000px;}
.x70_c01299{left:488.160000px;}
.x56_c01299{left:493.350000px;}
.x2a_c01299{left:495.075000px;}
.x1c_c01299{left:496.800000px;}
.x8d_c01299{left:500.250000px;}
.x2b_c01299{left:503.715000px;}
.x43_c01299{left:505.440000px;}
.xd5_c01299{left:508.035000px;}
.x69_c01299{left:510.630000px;}
.x5f_c01299{left:514.080000px;}
.xd9_c01299{left:518.400000px;}
.xc7_c01299{left:520.995000px;}
.x39_c01299{left:522.720000px;}
.x6a_c01299{left:524.445000px;}
.xff_c01299{left:527.040000px;}
.x52_c01299{left:529.635000px;}
.x3a_c01299{left:532.230000px;}
.x4b_c01299{left:535.680000px;}
.x1d_c01299{left:538.275000px;}
.x9d_c01299{left:542.595000px;}
.x47_c01299{left:544.320000px;}
.x2c_c01299{left:546.045000px;}
.x13_c01299{left:547.770000px;}
.x9e_c01299{left:549.510000px;}
.xaf_c01299{left:552.090000px;}
.x1e_c01299{left:554.685000px;}
.x9a_c01299{left:556.410000px;}
.x108_c01299{left:558.150000px;}
.xcd_c01299{left:560.730000px;}
.x79_c01299{left:563.325000px;}
.x2d_c01299{left:565.050000px;}
.xe8_c01299{left:566.790000px;}
.xef_c01299{left:568.515000px;}
.x100_c01299{left:570.240000px;}
.x71_c01299{left:571.965000px;}
.x85_c01299{left:573.690000px;}
.x7a_c01299{left:576.285000px;}
.xaa_c01299{left:578.880000px;}
.x20_c01299{left:580.605000px;}
.x86_c01299{left:582.330000px;}
.x2e_c01299{left:585.795000px;}
.xcb_c01299{left:588.390000px;}
.xe3_c01299{left:590.970000px;}
.xb0_c01299{left:596.160000px;}
.x5c_c01299{left:600.480000px;}
.x101_c01299{left:602.205000px;}
.xd6_c01299{left:603.930000px;}
.x4c_c01299{left:605.670000px;}
.x6b_c01299{left:609.120000px;}
.x57_c01299{left:610.845000px;}
.xc8_c01299{left:614.310000px;}
.x72_c01299{left:616.035000px;}
.xda_c01299{left:617.760000px;}
.x7b_c01299{left:619.485000px;}
.xf1_c01299{left:621.210000px;}
.xe_c01299{left:622.950000px;}
.x14_c01299{left:625.530000px;}
.xab_c01299{left:628.125000px;}
.xd1_c01299{left:629.850000px;}
.xf6_c01299{left:632.445000px;}
.x3b_c01299{left:634.170000px;}
.xe4_c01299{left:636.765000px;}
.xc2_c01299{left:641.955000px;}
.x2f_c01299{left:644.550000px;}
.x15_c01299{left:646.275000px;}
.xc9_c01299{left:648.000000px;}
.xf_c01299{left:652.320000px;}
.x3c_c01299{left:657.510000px;}
.xe0_c01299{left:659.235000px;}
.xe9_c01299{left:662.685000px;}
.x10e_c01299{left:664.410000px;}
.x104_c01299{left:666.150000px;}
.xe5_c01299{left:667.875000px;}
.x64_c01299{left:669.600000px;}
.x10_c01299{left:673.050000px;}
.x8e_c01299{left:674.790000px;}
.x7c_c01299{left:676.515000px;}
.xf7_c01299{left:683.430000px;}
.xed_c01299{left:686.010000px;}
.x16_c01299{left:687.750000px;}
.x21_c01299{left:691.200000px;}
.x65_c01299{left:692.925000px;}
.xbb_c01299{left:695.520000px;}
.xf0_c01299{left:698.115000px;}
.x30_c01299{left:699.840000px;}
.x9f_c01299{left:701.565000px;}
.xf8_c01299{left:704.160000px;}
.x58_c01299{left:705.885000px;}
.x3d_c01299{left:708.480000px;}
.xac_c01299{left:710.205000px;}
.xea_c01299{left:712.800000px;}
.x87_c01299{left:714.525000px;}
.x17_c01299{left:717.120000px;}
.x10f_c01299{left:719.715000px;}
.x96_c01299{left:723.165000px;}
.x60_c01299{left:724.890000px;}
.x73_c01299{left:730.080000px;}
.xdb_c01299{left:733.530000px;}
.xfd_c01299{left:735.270000px;}
.xb1_c01299{left:736.995000px;}
.x88_c01299{left:741.315000px;}
.x7d_c01299{left:743.910000px;}
.x59_c01299{left:747.360000px;}
.x66_c01299{left:749.955000px;}
.xd2_c01299{left:751.680000px;}
.x5d_c01299{left:754.275000px;}
.xc3_c01299{left:760.320000px;}
.x6c_c01299{left:762.915000px;}
.x3e_c01299{left:765.510000px;}
.xb2_c01299{left:767.235000px;}
.xbc_c01299{left:768.960000px;}
.xd7_c01299{left:771.555000px;}
.xb3_c01299{left:773.280000px;}
.xce_c01299{left:775.005000px;}
.x31_c01299{left:777.600000px;}
.xb4_c01299{left:779.325000px;}
.x7e_c01299{left:782.790000px;}
.xee_c01299{left:785.370000px;}
.xa0_c01299{left:787.110000px;}
.x10c_c01299{left:788.835000px;}
.x53_c01299{left:790.560000px;}
.xa2_c01299{left:792.285000px;}
.xa4_c01299{left:794.880000px;}
.xad_c01299{left:798.330000px;}
.xf2_c01299{left:800.070000px;}
.x44_c01299{left:802.650000px;}
.x3f_c01299{left:805.245000px;}
.xb8_c01299{left:806.970000px;}
.x89_c01299{left:808.710000px;}
.x74_c01299{left:812.160000px;}
.xa5_c01299{left:813.885000px;}
.x122_c01299{left:815.609535px;}
.xb9_c01299{left:817.350000px;}
.x7f_c01299{left:819.930000px;}
.xe1_c01299{left:823.395000px;}
.xbd_c01299{left:826.845000px;}
.xdd_c01299{left:828.570000px;}
.x61_c01299{left:834.630000px;}
.xcc_c01299{left:836.355000px;}
.x48_c01299{left:838.080000px;}
.xeb_c01299{left:839.805000px;}
.x105_c01299{left:843.270000px;}
.xa6_c01299{left:844.995000px;}
.xf9_c01299{left:846.720000px;}
.x40_c01299{left:851.910000px;}
.xde_c01299{left:854.490000px;}
.x102_c01299{left:856.230000px;}
.x75_c01299{left:858.810000px;}
.x110_c01299{left:860.550000px;}
.x8f_c01299{left:862.275000px;}
.x6d_c01299{left:866.595000px;}
.x45_c01299{left:870.915000px;}
.x5a_c01299{left:876.960000px;}
.xb5_c01299{left:879.555000px;}
.x97_c01299{left:881.280000px;}
.xe6_c01299{left:884.730000px;}
.xcf_c01299{left:886.470000px;}
.x98_c01299{left:888.195000px;}
.xf3_c01299{left:889.920000px;}
.x11f_c01299{left:894.240000px;}
.x9b_c01299{left:896.835000px;}
.x103_c01299{left:899.430000px;}
.x90_c01299{left:906.330000px;}
.x116_c01299{left:935.715000px;}
.x113_c01299{left:939.165000px;}
.x11b_c01299{left:941.760000px;}
.x117_c01299{left:954.720000px;}
.x11c_c01299{left:964.230000px;}
.x118_c01299{left:967.680000px;}
.x11d_c01299{left:977.190000px;}
.x114_c01299{left:984.960000px;}
.x119_c01299{left:987.555000px;}
.x115_c01299{left:1001.370000px;}
@media print{
.v1_c01299{vertical-align:-3.040000pt;}
.v0_c01299{vertical-align:0.000000pt;}
.ls2_c01299{letter-spacing:0.000000pt;}
.ls0_c01299{letter-spacing:56.148213pt;}
.ls1_c01299{letter-spacing:441.517333pt;}
.ws0_c01299{word-spacing:0.000000pt;}
.fs2_c01299{font-size:3.072000pt;}
.fs16_c01299{font-size:5.333333pt;}
.fs6_c01299{font-size:6.133333pt;}
.fs7_c01299{font-size:9.226667pt;}
.fsa_c01299{font-size:12.266667pt;}
.fs0_c01299{font-size:15.360000pt;}
.fs4_c01299{font-size:18.453333pt;}
.fs5_c01299{font-size:21.493333pt;}
.fs3_c01299{font-size:24.586667pt;}
.fs21_c01299{font-size:27.626667pt;}
.fs1e_c01299{font-size:30.720000pt;}
.fs20_c01299{font-size:33.813333pt;}
.fs1_c01299{font-size:36.853333pt;}
.fs17_c01299{font-size:39.946667pt;}
.fs22_c01299{font-size:42.986667pt;}
.fs18_c01299{font-size:46.080000pt;}
.fse_c01299{font-size:49.173333pt;}
.fs1c_c01299{font-size:52.213333pt;}
.fs1d_c01299{font-size:55.306667pt;}
.fs13_c01299{font-size:58.346667pt;}
.fs1b_c01299{font-size:61.440000pt;}
.fs11_c01299{font-size:64.533333pt;}
.fs14_c01299{font-size:67.573333pt;}
.fs19_c01299{font-size:70.666667pt;}
.fsc_c01299{font-size:73.706667pt;}
.fs1a_c01299{font-size:76.800000pt;}
.fsf_c01299{font-size:79.893333pt;}
.fs10_c01299{font-size:82.933333pt;}
.fsb_c01299{font-size:86.026667pt;}
.fs1f_c01299{font-size:89.066667pt;}
.fs23_c01299{font-size:92.160000pt;}
.fs9_c01299{font-size:95.253333pt;}
.fs12_c01299{font-size:98.293333pt;}
.fs24_c01299{font-size:101.386667pt;}
.fsd_c01299{font-size:132.106667pt;}
.fs15_c01299{font-size:135.146667pt;}
.fs8_c01299{font-size:165.866667pt;}
.y0_c01299{bottom:0.000000pt;}
.y1c7_c01299{bottom:162.053333pt;}
.y1c6_c01299{bottom:163.586667pt;}
.y1c8_c01299{bottom:165.120000pt;}
.y1c4_c01299{bottom:165.893333pt;}
.y1c3_c01299{bottom:168.186667pt;}
.y1c1_c01299{bottom:170.493333pt;}
.y1c2_c01299{bottom:171.266667pt;}
.y1c0_c01299{bottom:172.800000pt;}
.y1c5_c01299{bottom:183.546667pt;}
.y1bc_c01299{bottom:187.386667pt;}
.y1be_c01299{bottom:188.933333pt;}
.y1b7_c01299{bottom:189.693333pt;}
.y1b9_c01299{bottom:190.466667pt;}
.y1bb_c01299{bottom:191.226667pt;}
.y1bd_c01299{bottom:192.000000pt;}
.y1b8_c01299{bottom:195.066667pt;}
.y1bf_c01299{bottom:198.146667pt;}
.y1ba_c01299{bottom:203.520000pt;}
.y1b1_c01299{bottom:207.360000pt;}
.y1b5_c01299{bottom:208.133333pt;}
.y1b6_c01299{bottom:208.893333pt;}
.y1b4_c01299{bottom:211.200000pt;}
.y1b3_c01299{bottom:211.973333pt;}
.y1b2_c01299{bottom:212.733333pt;}
.y1ab_c01299{bottom:224.253333pt;}
.y1a8_c01299{bottom:225.026667pt;}
.y1af_c01299{bottom:225.786667pt;}
.y1ae_c01299{bottom:229.626667pt;}
.y1a9_c01299{bottom:231.173333pt;}
.y1aa_c01299{bottom:231.933333pt;}
.y1ad_c01299{bottom:236.546667pt;}
.y1ac_c01299{bottom:237.306667pt;}
.y1b0_c01299{bottom:238.080000pt;}
.y1a1_c01299{bottom:238.853333pt;}
.y1a5_c01299{bottom:239.613333pt;}
.y1a0_c01299{bottom:240.386667pt;}
.y1a2_c01299{bottom:241.920000pt;}
.y1a3_c01299{bottom:243.453333pt;}
.y1a4_c01299{bottom:245.760000pt;}
.y1a7_c01299{bottom:254.213333pt;}
.y1a6_c01299{bottom:255.746667pt;}
.y19b_c01299{bottom:260.346667pt;}
.y19f_c01299{bottom:261.120000pt;}
.y19e_c01299{bottom:261.893333pt;}
.y19c_c01299{bottom:262.653333pt;}
.y19d_c01299{bottom:264.186667pt;}
.y19a_c01299{bottom:277.253333pt;}
.y195_c01299{bottom:278.013333pt;}
.y194_c01299{bottom:280.320000pt;}
.y199_c01299{bottom:283.386667pt;}
.y198_c01299{bottom:284.160000pt;}
.y196_c01299{bottom:285.693333pt;}
.y197_c01299{bottom:288.773333pt;}
.y18f_c01299{bottom:296.453333pt;}
.y18d_c01299{bottom:297.213333pt;}
.y18e_c01299{bottom:297.986667pt;}
.y18c_c01299{bottom:298.746667pt;}
.y190_c01299{bottom:300.293333pt;}
.y191_c01299{bottom:301.826667pt;}
.y193_c01299{bottom:302.586667pt;}
.y192_c01299{bottom:305.666667pt;}
.y183_c01299{bottom:311.813333pt;}
.y188_c01299{bottom:312.573333pt;}
.y185_c01299{bottom:313.346667pt;}
.y187_c01299{bottom:314.106667pt;}
.y184_c01299{bottom:314.880000pt;}
.y18b_c01299{bottom:316.413333pt;}
.y189_c01299{bottom:320.253333pt;}
.y18a_c01299{bottom:321.026667pt;}
.y186_c01299{bottom:321.786667pt;}
.y17e_c01299{bottom:330.240000pt;}
.y17f_c01299{bottom:331.013333pt;}
.y17c_c01299{bottom:331.773333pt;}
.y17b_c01299{bottom:332.546667pt;}
.y182_c01299{bottom:333.306667pt;}
.y180_c01299{bottom:334.853333pt;}
.y181_c01299{bottom:335.613333pt;}
.y17d_c01299{bottom:338.693333pt;}
.y177_c01299{bottom:350.973333pt;}
.y176_c01299{bottom:351.746667pt;}
.y179_c01299{bottom:352.506667pt;}
.y17a_c01299{bottom:353.280000pt;}
.y175_c01299{bottom:355.586667pt;}
.y178_c01299{bottom:356.346667pt;}
.y174_c01299{bottom:368.640000pt;}
.y170_c01299{bottom:370.946667pt;}
.y172_c01299{bottom:373.253333pt;}
.y16f_c01299{bottom:374.013333pt;}
.y171_c01299{bottom:374.786667pt;}
.y16e_c01299{bottom:375.546667pt;}
.y173_c01299{bottom:380.933333pt;}
.y16a_c01299{bottom:381.693333pt;}
.yf_c01299{bottom:386.306667pt;}
.y16c_c01299{bottom:387.066667pt;}
.y10_c01299{bottom:387.840000pt;}
.y16d_c01299{bottom:388.613333pt;}
.y16b_c01299{bottom:389.373333pt;}
.y169_c01299{bottom:390.146667pt;}
.y168_c01299{bottom:392.453333pt;}
.y167_c01299{bottom:397.826667pt;}
.ye_c01299{bottom:398.586667pt;}
.y163_c01299{bottom:406.266667pt;}
.y161_c01299{bottom:407.040000pt;}
.y166_c01299{bottom:407.813333pt;}
.y160_c01299{bottom:408.573333pt;}
.y164_c01299{bottom:409.346667pt;}
.y165_c01299{bottom:410.880000pt;}
.y162_c01299{bottom:411.653333pt;}
.y15b_c01299{bottom:418.560000pt;}
.y15c_c01299{bottom:419.333333pt;}
.y158_c01299{bottom:420.093333pt;}
.y157_c01299{bottom:420.866667pt;}
.y15d_c01299{bottom:422.400000pt;}
.y15e_c01299{bottom:423.933333pt;}
.y15a_c01299{bottom:424.706667pt;}
.y159_c01299{bottom:428.546667pt;}
.y15f_c01299{bottom:431.613333pt;}
.y154_c01299{bottom:440.066667pt;}
.y152_c01299{bottom:440.826667pt;}
.y151_c01299{bottom:441.600000pt;}
.y14f_c01299{bottom:442.373333pt;}
.y153_c01299{bottom:443.133333pt;}
.y14d_c01299{bottom:443.906667pt;}
.y150_c01299{bottom:444.666667pt;}
.y14e_c01299{bottom:447.746667pt;}
.y156_c01299{bottom:455.426667pt;}
.y155_c01299{bottom:456.186667pt;}
.y14a_c01299{bottom:460.026667pt;}
.y146_c01299{bottom:460.800000pt;}
.y149_c01299{bottom:461.573333pt;}
.y141_c01299{bottom:462.333333pt;}
.y14b_c01299{bottom:463.106667pt;}
.y144_c01299{bottom:463.866667pt;}
.y145_c01299{bottom:464.640000pt;}
.y142_c01299{bottom:465.413333pt;}
.y143_c01299{bottom:466.173333pt;}
.y148_c01299{bottom:466.946667pt;}
.y14c_c01299{bottom:468.480000pt;}
.y147_c01299{bottom:474.626667pt;}
.y13d_c01299{bottom:477.693333pt;}
.y13b_c01299{bottom:478.466667pt;}
.y13f_c01299{bottom:481.533333pt;}
.y13c_c01299{bottom:482.306667pt;}
.y13e_c01299{bottom:485.373333pt;}
.y140_c01299{bottom:489.213333pt;}
.y136_c01299{bottom:494.586667pt;}
.y135_c01299{bottom:495.360000pt;}
.y139_c01299{bottom:496.133333pt;}
.y137_c01299{bottom:496.893333pt;}
.y138_c01299{bottom:497.666667pt;}
.y13a_c01299{bottom:499.200000pt;}
.y133_c01299{bottom:513.786667pt;}
.y131_c01299{bottom:514.560000pt;}
.y130_c01299{bottom:516.093333pt;}
.y12f_c01299{bottom:518.400000pt;}
.y134_c01299{bottom:519.173333pt;}
.y132_c01299{bottom:526.853333pt;}
.y128_c01299{bottom:532.226667pt;}
.y127_c01299{bottom:532.986667pt;}
.y12e_c01299{bottom:533.760000pt;}
.y12d_c01299{bottom:534.533333pt;}
.y12c_c01299{bottom:535.293333pt;}
.y12a_c01299{bottom:536.826667pt;}
.y12b_c01299{bottom:537.600000pt;}
.y129_c01299{bottom:545.280000pt;}
.y125_c01299{bottom:550.653333pt;}
.y124_c01299{bottom:552.186667pt;}
.y126_c01299{bottom:552.960000pt;}
.y11f_c01299{bottom:567.546667pt;}
.y11e_c01299{bottom:568.320000pt;}
.y123_c01299{bottom:569.093333pt;}
.y120_c01299{bottom:569.853333pt;}
.y122_c01299{bottom:570.626667pt;}
.y121_c01299{bottom:573.693333pt;}
.y11b_c01299{bottom:586.746667pt;}
.y117_c01299{bottom:587.520000pt;}
.y11a_c01299{bottom:589.053333pt;}
.y119_c01299{bottom:590.586667pt;}
.y118_c01299{bottom:591.360000pt;}
.y11c_c01299{bottom:592.133333pt;}
.y11d_c01299{bottom:596.733333pt;}
.y110_c01299{bottom:600.573333pt;}
.y114_c01299{bottom:601.346667pt;}
.y113_c01299{bottom:602.106667pt;}
.y116_c01299{bottom:602.880000pt;}
.y112_c01299{bottom:604.413333pt;}
.y111_c01299{bottom:607.493333pt;}
.y115_c01299{bottom:609.026667pt;}
.y10b_c01299{bottom:622.080000pt;}
.y10c_c01299{bottom:622.853333pt;}
.y109_c01299{bottom:623.613333pt;}
.y10a_c01299{bottom:625.920000pt;}
.y10d_c01299{bottom:626.693333pt;}
.y10e_c01299{bottom:627.453333pt;}
.y10f_c01299{bottom:628.986667pt;}
.y106_c01299{bottom:639.746667pt;}
.y105_c01299{bottom:641.280000pt;}
.y107_c01299{bottom:642.813333pt;}
.y104_c01299{bottom:643.586667pt;}
.y103_c01299{bottom:645.120000pt;}
.y108_c01299{bottom:645.893333pt;}
.yfe_c01299{bottom:656.640000pt;}
.yff_c01299{bottom:657.413333pt;}
.yfd_c01299{bottom:658.946667pt;}
.y102_c01299{bottom:659.706667pt;}
.y100_c01299{bottom:662.013333pt;}
.y101_c01299{bottom:662.786667pt;}
.yfc_c01299{bottom:672.773333pt;}
.yfa_c01299{bottom:675.840000pt;}
.yf5_c01299{bottom:676.613333pt;}
.yf7_c01299{bottom:677.373333pt;}
.yf6_c01299{bottom:680.453333pt;}
.yf9_c01299{bottom:681.213333pt;}
.yf8_c01299{bottom:684.293333pt;}
.yfb_c01299{bottom:687.360000pt;}
.yf0_c01299{bottom:692.733333pt;}
.yed_c01299{bottom:693.506667pt;}
.yef_c01299{bottom:694.266667pt;}
.yee_c01299{bottom:698.106667pt;}
.yf2_c01299{bottom:698.880000pt;}
.yf4_c01299{bottom:700.413333pt;}
.yf3_c01299{bottom:705.026667pt;}
.yf1_c01299{bottom:707.333333pt;}
.ye9_c01299{bottom:711.933333pt;}
.yeb_c01299{bottom:712.706667pt;}
.ye8_c01299{bottom:713.466667pt;}
.yea_c01299{bottom:715.013333pt;}
.ye7_c01299{bottom:715.773333pt;}
.yec_c01299{bottom:725.760000pt;}
.ye1_c01299{bottom:728.826667pt;}
.ye6_c01299{bottom:729.600000pt;}
.ye2_c01299{bottom:731.906667pt;}
.ye4_c01299{bottom:732.666667pt;}
.ye0_c01299{bottom:733.440000pt;}
.ye3_c01299{bottom:734.213333pt;}
.ye5_c01299{bottom:734.973333pt;}
.ydc_c01299{bottom:746.493333pt;}
.yda_c01299{bottom:747.266667pt;}
.ydf_c01299{bottom:748.800000pt;}
.ydb_c01299{bottom:751.866667pt;}
.yde_c01299{bottom:752.640000pt;}
.ydd_c01299{bottom:753.413333pt;}
.yc_c01299{bottom:754.173333pt;}
.yd_c01299{bottom:755.706667pt;}
.yd5_c01299{bottom:764.933333pt;}
.yd8_c01299{bottom:765.693333pt;}
.yd6_c01299{bottom:766.466667pt;}
.y7_c01299{bottom:767.226667pt;}
.yd9_c01299{bottom:768.000000pt;}
.yd3_c01299{bottom:768.773333pt;}
.yd4_c01299{bottom:770.306667pt;}
.yd7_c01299{bottom:771.066667pt;}
.ycd_c01299{bottom:777.986667pt;}
.yd0_c01299{bottom:778.746667pt;}
.ycf_c01299{bottom:779.520000pt;}
.ycb_c01299{bottom:780.293333pt;}
.yca_c01299{bottom:781.053333pt;}
.yce_c01299{bottom:784.133333pt;}
.ycc_c01299{bottom:785.666667pt;}
.yd1_c01299{bottom:788.733333pt;}
.yd2_c01299{bottom:792.573333pt;}
.yc9_c01299{bottom:800.253333pt;}
.yc8_c01299{bottom:801.026667pt;}
.yc7_c01299{bottom:801.786667pt;}
.yc6_c01299{bottom:804.093333pt;}
.yc5_c01299{bottom:805.626667pt;}
.yc4_c01299{bottom:806.400000pt;}
.yb_c01299{bottom:807.173333pt;}
.yc3_c01299{bottom:807.933333pt;}
.ybf_c01299{bottom:817.146667pt;}
.yc1_c01299{bottom:817.920000pt;}
.ybe_c01299{bottom:818.693333pt;}
.ybc_c01299{bottom:819.453333pt;}
.ybd_c01299{bottom:824.066667pt;}
.yc2_c01299{bottom:824.826667pt;}
.yc0_c01299{bottom:830.973333pt;}
.yb7_c01299{bottom:834.813333pt;}
.yb9_c01299{bottom:836.346667pt;}
.yb8_c01299{bottom:837.120000pt;}
.ybb_c01299{bottom:840.186667pt;}
.yb6_c01299{bottom:840.960000pt;}
.yba_c01299{bottom:850.946667pt;}
.yaf_c01299{bottom:854.013333pt;}
.yb0_c01299{bottom:854.786667pt;}
.yb1_c01299{bottom:856.320000pt;}
.yb3_c01299{bottom:857.093333pt;}
.yae_c01299{bottom:859.386667pt;}
.yb5_c01299{bottom:861.693333pt;}
.yb2_c01299{bottom:865.533333pt;}
.yb4_c01299{bottom:870.146667pt;}
.yad_c01299{bottom:870.906667pt;}
.yaa_c01299{bottom:871.680000pt;}
.yac_c01299{bottom:872.453333pt;}
.yab_c01299{bottom:873.213333pt;}
.ya_c01299{bottom:874.746667pt;}
.y9_c01299{bottom:875.520000pt;}
.ya6_c01299{bottom:889.346667pt;}
.ya5_c01299{bottom:890.106667pt;}
.ya8_c01299{bottom:890.880000pt;}
.ya9_c01299{bottom:895.493333pt;}
.ya7_c01299{bottom:901.626667pt;}
.ya2_c01299{bottom:906.240000pt;}
.ya1_c01299{bottom:907.013333pt;}
.ya4_c01299{bottom:911.613333pt;}
.ya3_c01299{bottom:917.760000pt;}
.ya0_c01299{bottom:923.906667pt;}
.y99_c01299{bottom:925.440000pt;}
.y98_c01299{bottom:926.213333pt;}
.y9c_c01299{bottom:926.973333pt;}
.y97_c01299{bottom:929.280000pt;}
.y9b_c01299{bottom:930.813333pt;}
.y9a_c01299{bottom:931.586667pt;}
.y9e_c01299{bottom:932.346667pt;}
.y9d_c01299{bottom:933.120000pt;}
.y9f_c01299{bottom:938.493333pt;}
.y90_c01299{bottom:944.640000pt;}
.y96_c01299{bottom:945.413333pt;}
.y91_c01299{bottom:946.173333pt;}
.y95_c01299{bottom:946.946667pt;}
.y92_c01299{bottom:949.253333pt;}
.y93_c01299{bottom:952.320000pt;}
.y94_c01299{bottom:956.160000pt;}
.y8e_c01299{bottom:961.533333pt;}
.y87_c01299{bottom:962.306667pt;}
.y89_c01299{bottom:963.066667pt;}
.y8a_c01299{bottom:963.840000pt;}
.y88_c01299{bottom:966.906667pt;}
.y8_c01299{bottom:967.680000pt;}
.y8d_c01299{bottom:968.453333pt;}
.y8f_c01299{bottom:969.986667pt;}
.y8b_c01299{bottom:970.746667pt;}
.y8c_c01299{bottom:974.586667pt;}
.y83_c01299{bottom:979.973333pt;}
.y84_c01299{bottom:981.506667pt;}
.y86_c01299{bottom:982.266667pt;}
.y81_c01299{bottom:983.813333pt;}
.y82_c01299{bottom:985.346667pt;}
.y85_c01299{bottom:989.186667pt;}
.y6_c01299{bottom:993.786667pt;}
.y79_c01299{bottom:998.400000pt;}
.y7b_c01299{bottom:999.933333pt;}
.y7c_c01299{bottom:1000.706667pt;}
.y7e_c01299{bottom:1001.466667pt;}
.y7a_c01299{bottom:1002.240000pt;}
.y80_c01299{bottom:1003.013333pt;}
.y78_c01299{bottom:1004.546667pt;}
.y7f_c01299{bottom:1005.306667pt;}
.y7d_c01299{bottom:1006.853333pt;}
.y73_c01299{bottom:1009.146667pt;}
.y76_c01299{bottom:1011.453333pt;}
.y71_c01299{bottom:1012.226667pt;}
.y77_c01299{bottom:1012.986667pt;}
.y74_c01299{bottom:1013.760000pt;}
.y75_c01299{bottom:1014.533333pt;}
.y72_c01299{bottom:1015.293333pt;}
.y70_c01299{bottom:1016.066667pt;}
.y6f_c01299{bottom:1016.826667pt;}
.y66_c01299{bottom:1017.600000pt;}
.y6a_c01299{bottom:1018.373333pt;}
.y6c_c01299{bottom:1019.906667pt;}
.y6d_c01299{bottom:1020.666667pt;}
.y6e_c01299{bottom:1023.746667pt;}
.y6b_c01299{bottom:1024.506667pt;}
.y69_c01299{bottom:1025.280000pt;}
.y67_c01299{bottom:1026.053333pt;}
.y68_c01299{bottom:1026.813333pt;}
.y65_c01299{bottom:1027.586667pt;}
.y63_c01299{bottom:1029.893333pt;}
.y64_c01299{bottom:1032.186667pt;}
.y61_c01299{bottom:1032.960000pt;}
.y5f_c01299{bottom:1033.733333pt;}
.y62_c01299{bottom:1034.493333pt;}
.y60_c01299{bottom:1036.026667pt;}
.y5a_c01299{bottom:1036.800000pt;}
.y5d_c01299{bottom:1039.106667pt;}
.y59_c01299{bottom:1039.866667pt;}
.y5e_c01299{bottom:1040.640000pt;}
.y5_c01299{bottom:1041.413333pt;}
.y5c_c01299{bottom:1048.320000pt;}
.y5b_c01299{bottom:1049.853333pt;}
.y58_c01299{bottom:1052.160000pt;}
.y55_c01299{bottom:1052.933333pt;}
.y57_c01299{bottom:1053.693333pt;}
.y56_c01299{bottom:1054.466667pt;}
.y54_c01299{bottom:1056.000000pt;}
.y49_c01299{bottom:1072.133333pt;}
.y4c_c01299{bottom:1072.893333pt;}
.y50_c01299{bottom:1073.666667pt;}
.y52_c01299{bottom:1074.426667pt;}
.y4a_c01299{bottom:1075.200000pt;}
.y51_c01299{bottom:1075.973333pt;}
.y4e_c01299{bottom:1080.573333pt;}
.y4b_c01299{bottom:1082.106667pt;}
.y4d_c01299{bottom:1082.880000pt;}
.y53_c01299{bottom:1086.720000pt;}
.y41_c01299{bottom:1090.560000pt;}
.y4f_c01299{bottom:1091.333333pt;}
.y43_c01299{bottom:1092.866667pt;}
.y47_c01299{bottom:1093.626667pt;}
.y44_c01299{bottom:1094.400000pt;}
.y48_c01299{bottom:1095.173333pt;}
.y46_c01299{bottom:1095.933333pt;}
.y42_c01299{bottom:1097.466667pt;}
.y45_c01299{bottom:1099.013333pt;}
.y40_c01299{bottom:1103.613333pt;}
.y3f_c01299{bottom:1105.146667pt;}
.y3d_c01299{bottom:1105.920000pt;}
.y3c_c01299{bottom:1106.693333pt;}
.y3b_c01299{bottom:1111.293333pt;}
.y3e_c01299{bottom:1115.906667pt;}
.y38_c01299{bottom:1123.586667pt;}
.y36_c01299{bottom:1124.346667pt;}
.y3a_c01299{bottom:1125.120000pt;}
.y37_c01299{bottom:1130.493333pt;}
.y39_c01299{bottom:1135.866667pt;}
.y32_c01299{bottom:1138.946667pt;}
.y34_c01299{bottom:1140.480000pt;}
.y31_c01299{bottom:1142.013333pt;}
.y3_c01299{bottom:1144.320000pt;}
.y4_c01299{bottom:1145.093333pt;}
.y33_c01299{bottom:1145.853333pt;}
.y35_c01299{bottom:1149.693333pt;}
.y2c_c01299{bottom:1158.146667pt;}
.y2b_c01299{bottom:1158.906667pt;}
.y2f_c01299{bottom:1159.680000pt;}
.y30_c01299{bottom:1160.453333pt;}
.y2e_c01299{bottom:1161.213333pt;}
.y2a_c01299{bottom:1163.520000pt;}
.y28_c01299{bottom:1164.293333pt;}
.y27_c01299{bottom:1165.053333pt;}
.y29_c01299{bottom:1165.826667pt;}
.y2d_c01299{bottom:1168.133333pt;}
.y23_c01299{bottom:1180.413333pt;}
.y22_c01299{bottom:1181.186667pt;}
.y24_c01299{bottom:1181.946667pt;}
.y21_c01299{bottom:1183.493333pt;}
.y25_c01299{bottom:1185.026667pt;}
.y26_c01299{bottom:1186.560000pt;}
.y1f_c01299{bottom:1187.333333pt;}
.y2_c01299{bottom:1188.866667pt;}
.y20_c01299{bottom:1191.933333pt;}
.y1_c01299{bottom:1198.080000pt;}
.y1cb_c01299{bottom:1201.920000pt;}
.y1e_c01299{bottom:1203.453333pt;}
.y1a_c01299{bottom:1205.760000pt;}
.y1ca_c01299{bottom:1208.826667pt;}
.y1b_c01299{bottom:1209.600000pt;}
.y1c_c01299{bottom:1210.373333pt;}
.y1d_c01299{bottom:1211.133333pt;}
.y17_c01299{bottom:1226.493333pt;}
.y19_c01299{bottom:1238.013333pt;}
.y16_c01299{bottom:1238.786667pt;}
.y14_c01299{bottom:1244.160000pt;}
.y18_c01299{bottom:1244.933333pt;}
.y15_c01299{bottom:1255.680000pt;}
.y13_c01299{bottom:1259.520000pt;}
.y1c9_c01299{bottom:1260.293333pt;}
.y11_c01299{bottom:1300.986667pt;}
.y12_c01299{bottom:1302.533333pt;}
.h4_c01299{height:2.764500pt;}
.h18_c01299{height:4.799479pt;}
.h8_c01299{height:5.519401pt;}
.h9_c01299{height:8.303099pt;}
.hc_c01299{height:11.038802pt;}
.h2_c01299{height:13.822500pt;}
.h6_c01299{height:16.606198pt;}
.h7_c01299{height:19.341901pt;}
.h5_c01299{height:22.125599pt;}
.h23_c01299{height:24.861302pt;}
.h20_c01299{height:27.645000pt;}
.h22_c01299{height:30.428698pt;}
.h3_c01299{height:33.164401pt;}
.h19_c01299{height:35.948099pt;}
.h24_c01299{height:38.683802pt;}
.h1a_c01299{height:41.467500pt;}
.h10_c01299{height:44.251198pt;}
.h1e_c01299{height:46.986901pt;}
.h1f_c01299{height:49.770599pt;}
.h15_c01299{height:52.506302pt;}
.h1d_c01299{height:55.290000pt;}
.h13_c01299{height:58.073698pt;}
.h16_c01299{height:60.809401pt;}
.h1b_c01299{height:63.593099pt;}
.he_c01299{height:66.328802pt;}
.h1c_c01299{height:69.112500pt;}
.h11_c01299{height:71.896198pt;}
.h12_c01299{height:74.631901pt;}
.hd_c01299{height:77.415599pt;}
.h21_c01299{height:80.151302pt;}
.h25_c01299{height:82.935000pt;}
.hb_c01299{height:85.718698pt;}
.h14_c01299{height:88.454401pt;}
.h26_c01299{height:91.238099pt;}
.hf_c01299{height:118.883099pt;}
.h17_c01299{height:121.618802pt;}
.ha_c01299{height:149.263802pt;}
.h0_c01299{height:1341.693333pt;}
.h1_c01299{height:1342.000000pt;}
.w0_c01299{width:967.680000pt;}
.w1_c01299{width:968.000000pt;}
.x0_c01299{left:0.000000pt;}
.x1_c01299{left:12.293333pt;}
.x2_c01299{left:25.346667pt;}
.x5_c01299{left:62.973333pt;}
.x3_c01299{left:72.960000pt;}
.x4_c01299{left:79.866667pt;}
.x6_c01299{left:82.173333pt;}
.xc_c01299{left:118.266667pt;}
.xd_c01299{left:128.253333pt;}
.x8_c01299{left:141.306667pt;}
.x7_c01299{left:145.920000pt;}
.xa_c01299{left:150.533333pt;}
.x9_c01299{left:152.826667pt;}
.x123_c01299{left:158.973333pt;}
.xb_c01299{left:163.586667pt;}
.x5b_c01299{left:165.893333pt;}
.xfe_c01299{left:168.186667pt;}
.x99_c01299{left:181.253333pt;}
.xa7_c01299{left:189.693333pt;}
.xd8_c01299{left:195.066667pt;}
.x106_c01299{left:197.373333pt;}
.xa8_c01299{left:201.213333pt;}
.x41_c01299{left:203.520000pt;}
.x8a_c01299{left:205.053333pt;}
.x80_c01299{left:206.586667pt;}
.x22_c01299{left:208.133333pt;}
.x11a_c01299{left:209.666667pt;}
.x23_c01299{left:211.200000pt;}
.x62_c01299{left:213.506667pt;}
.x24_c01299{left:218.880000pt;}
.x1f_c01299{left:221.186667pt;}
.x111_c01299{left:223.493333pt;}
.x49_c01299{left:226.560000pt;}
.x32_c01299{left:230.400000pt;}
.x25_c01299{left:231.933333pt;}
.xb6_c01299{left:233.466667pt;}
.x10a_c01299{left:238.080000pt;}
.x4d_c01299{left:239.613333pt;}
.xc4_c01299{left:245.760000pt;}
.x33_c01299{left:247.293333pt;}
.x81_c01299{left:250.373333pt;}
.xd3_c01299{left:251.906667pt;}
.x54_c01299{left:253.440000pt;}
.x4e_c01299{left:257.280000pt;}
.xae_c01299{left:261.120000pt;}
.x8b_c01299{left:262.653333pt;}
.xc5_c01299{left:267.266667pt;}
.xfa_c01299{left:268.800000pt;}
.x34_c01299{left:272.640000pt;}
.x42_c01299{left:274.946667pt;}
.x92_c01299{left:277.253333pt;}
.xf4_c01299{left:279.546667pt;}
.x9c_c01299{left:281.093333pt;}
.x4a_c01299{left:283.386667pt;}
.x8c_c01299{left:285.693333pt;}
.xb7_c01299{left:288.773333pt;}
.x76_c01299{left:291.066667pt;}
.x26_c01299{left:293.373333pt;}
.x35_c01299{left:295.680000pt;}
.x10d_c01299{left:297.213333pt;}
.xbe_c01299{left:298.746667pt;}
.x36_c01299{left:300.293333pt;}
.x112_c01299{left:302.586667pt;}
.x18_c01299{left:304.133333pt;}
.xbf_c01299{left:305.666667pt;}
.x5e_c01299{left:307.200000pt;}
.x46_c01299{left:308.733333pt;}
.xfb_c01299{left:310.266667pt;}
.xba_c01299{left:311.813333pt;}
.x77_c01299{left:313.346667pt;}
.x82_c01299{left:314.880000pt;}
.x120_c01299{left:316.413333pt;}
.x19_c01299{left:318.720000pt;}
.x121_c01299{left:321.026667pt;}
.x55_c01299{left:324.093333pt;}
.xdc_c01299{left:325.626667pt;}
.x91_c01299{left:327.173333pt;}
.xd4_c01299{left:328.706667pt;}
.x93_c01299{left:330.240000pt;}
.x83_c01299{left:331.773333pt;}
.x37_c01299{left:334.853333pt;}
.xc6_c01299{left:337.146667pt;}
.x27_c01299{left:338.693333pt;}
.xdf_c01299{left:340.986667pt;}
.x94_c01299{left:344.826667pt;}
.x63_c01299{left:348.666667pt;}
.xa1_c01299{left:350.213333pt;}
.x109_c01299{left:351.746667pt;}
.x28_c01299{left:354.813333pt;}
.x1a_c01299{left:357.120000pt;}
.x84_c01299{left:360.186667pt;}
.xc0_c01299{left:364.800000pt;}
.xe7_c01299{left:366.333333pt;}
.x4f_c01299{left:368.640000pt;}
.xf5_c01299{left:371.706667pt;}
.x10b_c01299{left:374.013333pt;}
.x6e_c01299{left:375.546667pt;}
.x11e_c01299{left:377.093333pt;}
.x50_c01299{left:378.626667pt;}
.x29_c01299{left:384.000000pt;}
.x6f_c01299{left:385.533333pt;}
.x51_c01299{left:387.840000pt;}
.x11_c01299{left:389.373333pt;}
.xa3_c01299{left:390.906667pt;}
.x67_c01299{left:392.453333pt;}
.x107_c01299{left:397.053333pt;}
.x1b_c01299{left:398.586667pt;}
.xa9_c01299{left:401.666667pt;}
.x12_c01299{left:405.506667pt;}
.x68_c01299{left:407.813333pt;}
.x95_c01299{left:413.946667pt;}
.xc1_c01299{left:416.253333pt;}
.x78_c01299{left:418.560000pt;}
.xec_c01299{left:421.626667pt;}
.xfc_c01299{left:423.173333pt;}
.xca_c01299{left:425.466667pt;}
.x38_c01299{left:428.546667pt;}
.xd0_c01299{left:430.080000pt;}
.xe2_c01299{left:432.386667pt;}
.x70_c01299{left:433.920000pt;}
.x56_c01299{left:438.533333pt;}
.x2a_c01299{left:440.066667pt;}
.x1c_c01299{left:441.600000pt;}
.x8d_c01299{left:444.666667pt;}
.x2b_c01299{left:447.746667pt;}
.x43_c01299{left:449.280000pt;}
.xd5_c01299{left:451.586667pt;}
.x69_c01299{left:453.893333pt;}
.x5f_c01299{left:456.960000pt;}
.xd9_c01299{left:460.800000pt;}
.xc7_c01299{left:463.106667pt;}
.x39_c01299{left:464.640000pt;}
.x6a_c01299{left:466.173333pt;}
.xff_c01299{left:468.480000pt;}
.x52_c01299{left:470.786667pt;}
.x3a_c01299{left:473.093333pt;}
.x4b_c01299{left:476.160000pt;}
.x1d_c01299{left:478.466667pt;}
.x9d_c01299{left:482.306667pt;}
.x47_c01299{left:483.840000pt;}
.x2c_c01299{left:485.373333pt;}
.x13_c01299{left:486.906667pt;}
.x9e_c01299{left:488.453333pt;}
.xaf_c01299{left:490.746667pt;}
.x1e_c01299{left:493.053333pt;}
.x9a_c01299{left:494.586667pt;}
.x108_c01299{left:496.133333pt;}
.xcd_c01299{left:498.426667pt;}
.x79_c01299{left:500.733333pt;}
.x2d_c01299{left:502.266667pt;}
.xe8_c01299{left:503.813333pt;}
.xef_c01299{left:505.346667pt;}
.x100_c01299{left:506.880000pt;}
.x71_c01299{left:508.413333pt;}
.x85_c01299{left:509.946667pt;}
.x7a_c01299{left:512.253333pt;}
.xaa_c01299{left:514.560000pt;}
.x20_c01299{left:516.093333pt;}
.x86_c01299{left:517.626667pt;}
.x2e_c01299{left:520.706667pt;}
.xcb_c01299{left:523.013333pt;}
.xe3_c01299{left:525.306667pt;}
.xb0_c01299{left:529.920000pt;}
.x5c_c01299{left:533.760000pt;}
.x101_c01299{left:535.293333pt;}
.xd6_c01299{left:536.826667pt;}
.x4c_c01299{left:538.373333pt;}
.x6b_c01299{left:541.440000pt;}
.x57_c01299{left:542.973333pt;}
.xc8_c01299{left:546.053333pt;}
.x72_c01299{left:547.586667pt;}
.xda_c01299{left:549.120000pt;}
.x7b_c01299{left:550.653333pt;}
.xf1_c01299{left:552.186667pt;}
.xe_c01299{left:553.733333pt;}
.x14_c01299{left:556.026667pt;}
.xab_c01299{left:558.333333pt;}
.xd1_c01299{left:559.866667pt;}
.xf6_c01299{left:562.173333pt;}
.x3b_c01299{left:563.706667pt;}
.xe4_c01299{left:566.013333pt;}
.xc2_c01299{left:570.626667pt;}
.x2f_c01299{left:572.933333pt;}
.x15_c01299{left:574.466667pt;}
.xc9_c01299{left:576.000000pt;}
.xf_c01299{left:579.840000pt;}
.x3c_c01299{left:584.453333pt;}
.xe0_c01299{left:585.986667pt;}
.xe9_c01299{left:589.053333pt;}
.x10e_c01299{left:590.586667pt;}
.x104_c01299{left:592.133333pt;}
.xe5_c01299{left:593.666667pt;}
.x64_c01299{left:595.200000pt;}
.x10_c01299{left:598.266667pt;}
.x8e_c01299{left:599.813333pt;}
.x7c_c01299{left:601.346667pt;}
.xf7_c01299{left:607.493333pt;}
.xed_c01299{left:609.786667pt;}
.x16_c01299{left:611.333333pt;}
.x21_c01299{left:614.400000pt;}
.x65_c01299{left:615.933333pt;}
.xbb_c01299{left:618.240000pt;}
.xf0_c01299{left:620.546667pt;}
.x30_c01299{left:622.080000pt;}
.x9f_c01299{left:623.613333pt;}
.xf8_c01299{left:625.920000pt;}
.x58_c01299{left:627.453333pt;}
.x3d_c01299{left:629.760000pt;}
.xac_c01299{left:631.293333pt;}
.xea_c01299{left:633.600000pt;}
.x87_c01299{left:635.133333pt;}
.x17_c01299{left:637.440000pt;}
.x10f_c01299{left:639.746667pt;}
.x96_c01299{left:642.813333pt;}
.x60_c01299{left:644.346667pt;}
.x73_c01299{left:648.960000pt;}
.xdb_c01299{left:652.026667pt;}
.xfd_c01299{left:653.573333pt;}
.xb1_c01299{left:655.106667pt;}
.x88_c01299{left:658.946667pt;}
.x7d_c01299{left:661.253333pt;}
.x59_c01299{left:664.320000pt;}
.x66_c01299{left:666.626667pt;}
.xd2_c01299{left:668.160000pt;}
.x5d_c01299{left:670.466667pt;}
.xc3_c01299{left:675.840000pt;}
.x6c_c01299{left:678.146667pt;}
.x3e_c01299{left:680.453333pt;}
.xb2_c01299{left:681.986667pt;}
.xbc_c01299{left:683.520000pt;}
.xd7_c01299{left:685.826667pt;}
.xb3_c01299{left:687.360000pt;}
.xce_c01299{left:688.893333pt;}
.x31_c01299{left:691.200000pt;}
.xb4_c01299{left:692.733333pt;}
.x7e_c01299{left:695.813333pt;}
.xee_c01299{left:698.106667pt;}
.xa0_c01299{left:699.653333pt;}
.x10c_c01299{left:701.186667pt;}
.x53_c01299{left:702.720000pt;}
.xa2_c01299{left:704.253333pt;}
.xa4_c01299{left:706.560000pt;}
.xad_c01299{left:709.626667pt;}
.xf2_c01299{left:711.173333pt;}
.x44_c01299{left:713.466667pt;}
.x3f_c01299{left:715.773333pt;}
.xb8_c01299{left:717.306667pt;}
.x89_c01299{left:718.853333pt;}
.x74_c01299{left:721.920000pt;}
.xa5_c01299{left:723.453333pt;}
.x122_c01299{left:724.986253pt;}
.xb9_c01299{left:726.533333pt;}
.x7f_c01299{left:728.826667pt;}
.xe1_c01299{left:731.906667pt;}
.xbd_c01299{left:734.973333pt;}
.xdd_c01299{left:736.506667pt;}
.x61_c01299{left:741.893333pt;}
.xcc_c01299{left:743.426667pt;}
.x48_c01299{left:744.960000pt;}
.xeb_c01299{left:746.493333pt;}
.x105_c01299{left:749.573333pt;}
.xa6_c01299{left:751.106667pt;}
.xf9_c01299{left:752.640000pt;}
.x40_c01299{left:757.253333pt;}
.xde_c01299{left:759.546667pt;}
.x102_c01299{left:761.093333pt;}
.x75_c01299{left:763.386667pt;}
.x110_c01299{left:764.933333pt;}
.x8f_c01299{left:766.466667pt;}
.x6d_c01299{left:770.306667pt;}
.x45_c01299{left:774.146667pt;}
.x5a_c01299{left:779.520000pt;}
.xb5_c01299{left:781.826667pt;}
.x97_c01299{left:783.360000pt;}
.xe6_c01299{left:786.426667pt;}
.xcf_c01299{left:787.973333pt;}
.x98_c01299{left:789.506667pt;}
.xf3_c01299{left:791.040000pt;}
.x11f_c01299{left:794.880000pt;}
.x9b_c01299{left:797.186667pt;}
.x103_c01299{left:799.493333pt;}
.x90_c01299{left:805.626667pt;}
.x116_c01299{left:831.746667pt;}
.x113_c01299{left:834.813333pt;}
.x11b_c01299{left:837.120000pt;}
.x117_c01299{left:848.640000pt;}
.x11c_c01299{left:857.093333pt;}
.x118_c01299{left:860.160000pt;}
.x11d_c01299{left:868.613333pt;}
.x114_c01299{left:875.520000pt;}
.x119_c01299{left:877.826667pt;}
.x115_c01299{left:890.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bb18e89eae86e1f6ba29a22.woff2')format("woff");}.ff1_c01300{font-family:ff1_c01300;line-height:1.109863;font-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_c01300{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m174_c01300{transform:matrix(0.065800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065800,0.000000,0.000000,0.250000,0,0);}
.m133_c01300{transform:matrix(0.069950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069950,0.000000,0.000000,0.250000,0,0);}
.m1c_c01300{transform:matrix(0.070025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070025,0.000000,0.000000,0.250000,0,0);}
.m196_c01300{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m5f_c01300{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m96_c01300{transform:matrix(0.085250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085250,0.000000,0.000000,0.250000,0,0);}
.m62_c01300{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01300{transform:matrix(0.095025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095025,0.000000,0.000000,0.250000,0,0);}
.m110_c01300{transform:matrix(0.096200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096200,0.000000,0.000000,0.250000,0,0);}
.m90_c01300{transform:matrix(0.097825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097825,0.000000,0.000000,0.250000,0,0);}
.m179_c01300{transform:matrix(0.103400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103400,0.000000,0.000000,0.250000,0,0);}
.m95_c01300{transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);}
.m11_c01300{transform:matrix(0.105550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105550,0.000000,0.000000,0.250000,0,0);}
.m85_c01300{transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);}
.m192_c01300{transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110575,0.000000,0.000000,0.250000,0,0);}
.m176_c01300{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m9a_c01300{transform:matrix(0.112725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112725,0.000000,0.000000,0.250000,0,0);}
.m8f_c01300{transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112775,0.000000,0.000000,0.250000,0,0);}
.m82_c01300{transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);}
.m18a_c01300{transform:matrix(0.114275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114275,0.000000,0.000000,0.250000,0,0);}
.m11c_c01300{transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);}
.mae_c01300{transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116175,0.000000,0.000000,0.250000,0,0);}
.mb3_c01300{transform:matrix(0.116375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116375,0.000000,0.000000,0.250000,0,0);}
.m19b_c01300{transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);}
.m172_c01300{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);}
.me1_c01300{transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);}
.m1d_c01300{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m98_c01300{transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);}
.m19c_c01300{transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01300{transform:matrix(0.124225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124225,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01300{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m16d_c01300{transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);}
.m12c_c01300{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);}
.m1cc_c01300{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);}
.me4_c01300{transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);}
.m89_c01300{transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);}
.m71_c01300{transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01300{transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);}
.m14c_c01300{transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);}
.m1f_c01300{transform:matrix(0.129775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129775,0.000000,0.000000,0.250000,0,0);}
.m178_c01300{transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);}
.mfa_c01300{transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);}
.m10b_c01300{transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131450,0.000000,0.000000,0.250000,0,0);}
.m141_c01300{transform:matrix(0.132275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132275,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01300{transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);}
.m84_c01300{transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);}
.m143_c01300{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.m19a_c01300{transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);}
.m132_c01300{transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);}
.m13f_c01300{transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);}
.m199_c01300{transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139950,0.000000,0.000000,0.250000,0,0);}
.m10_c01300{transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);}
.m114_c01300{transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);}
.m142_c01300{transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);}
.ma1_c01300{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);}
.m19e_c01300{transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);}
.m165_c01300{transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);}
.m1be_c01300{transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);}
.m173_c01300{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);}
.m5_c01300{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mad_c01300{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.m190_c01300{transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);}
.mf2_c01300{transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);}
.m188_c01300{transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);}
.ma4_c01300{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);}
.m171_c01300{transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);}
.m145_c01300{transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);}
.mc_c01300{transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);}
.m134_c01300{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01300{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);}
.m8c_c01300{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.m160_c01300{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);}
.mab_c01300{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m15a_c01300{transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);}
.mc5_c01300{transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);}
.mc6_c01300{transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);}
.m163_c01300{transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01300{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.me3_c01300{transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152400,0.000000,0.000000,0.250000,0,0);}
.m198_c01300{transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01300{transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);}
.m12a_c01300{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.meb_c01300{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);}
.m74_c01300{transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);}
.m137_c01300{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.mba_c01300{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.m17f_c01300{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01300{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m181_c01300{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);}
.m3b_c01300{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.m1_c01300{transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);}
.m17e_c01300{transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);}
.m129_c01300{transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);}
.m64_c01300{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m14d_c01300{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);}
.m19_c01300{transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);}
.m8d_c01300{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m146_c01300{transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);}
.m11e_c01300{transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);}
.m60_c01300{transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);}
.m121_c01300{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.me5_c01300{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.m46_c01300{transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);}
.m7c_c01300{transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);}
.m175_c01300{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01300{transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);}
.m164_c01300{transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165375,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01300{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);}
.m13e_c01300{transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);}
.m73_c01300{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.me8_c01300{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.mc8_c01300{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);}
.m1ac_c01300{transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01300{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m16a_c01300{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);}
.m20_c01300{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m63_c01300{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.m161_c01300{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);}
.m40_c01300{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m97_c01300{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);}
.m12e_c01300{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.m6e_c01300{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);}
.m11b_c01300{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m26_c01300{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.m4a_c01300{transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);}
.m5d_c01300{transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);}
.m61_c01300{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m81_c01300{transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);}
.m10f_c01300{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m131_c01300{transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01300{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m19d_c01300{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m7_c01300{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);}
.m9e_c01300{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.m118_c01300{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01300{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.m168_c01300{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);}
.m29_c01300{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);}
.m5c_c01300{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);}
.m12f_c01300{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);}
.m108_c01300{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.mb5_c01300{transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176575,0.000000,0.000000,0.250000,0,0);}
.m109_c01300{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m92_c01300{transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01300{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.m38_c01300{transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01300{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m8a_c01300{transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);}
.m3c_c01300{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);}
.m70_c01300{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);}
.m0_c01300{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m169_c01300{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.m56_c01300{transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);}
.m183_c01300{transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);}
.mf_c01300{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01300{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);}
.m1ab_c01300{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01300{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);}
.m23_c01300{transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182050,0.000000,0.000000,0.250000,0,0);}
.m68_c01300{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.me0_c01300{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);}
.m12d_c01300{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);}
.m100_c01300{transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);}
.m1e_c01300{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.m6c_c01300{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);}
.m9c_c01300{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.m1df_c01300{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);}
.mb2_c01300{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);}
.m130_c01300{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);}
.m11f_c01300{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m6f_c01300{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);}
.m1a_c01300{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01300{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m180_c01300{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);}
.m94_c01300{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m126_c01300{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);}
.m16c_c01300{transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);}
.m17a_c01300{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);}
.m1d0_c01300{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m185_c01300{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.m36_c01300{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m140_c01300{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);}
.m16f_c01300{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01300{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m159_c01300{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);}
.m88_c01300{transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);}
.m1de_c01300{transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);}
.m1af_c01300{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);}
.m59_c01300{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.md9_c01300{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01300{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);}
.m2d_c01300{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);}
.m1da_c01300{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);}
.m1dc_c01300{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01300{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.mec_c01300{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01300{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m119_c01300{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);}
.m182_c01300{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);}
.m7b_c01300{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m136_c01300{transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195950,0.000000,0.000000,0.250000,0,0);}
.m99_c01300{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m13d_c01300{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);}
.m193_c01300{transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);}
.m18f_c01300{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m10c_c01300{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01300{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m11a_c01300{transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);}
.mb9_c01300{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.md6_c01300{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.mc4_c01300{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);}
.m2b_c01300{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);}
.m1cd_c01300{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.mc7_c01300{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.md8_c01300{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01300{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);}
.m7f_c01300{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01300{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.mdf_c01300{transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01300{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m158_c01300{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);}
.me9_c01300{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);}
.m1d1_c01300{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);}
.m5e_c01300{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m15e_c01300{transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);}
.m117_c01300{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m2c_c01300{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m66_c01300{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.m86_c01300{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m17d_c01300{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);}
.mdb_c01300{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.m16_c01300{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);}
.mbf_c01300{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m24_c01300{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);}
.m41_c01300{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);}
.mea_c01300{transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);}
.m44_c01300{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.ma0_c01300{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m189_c01300{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.mc3_c01300{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.m4f_c01300{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01300{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m14b_c01300{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);}
.m1b0_c01300{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);}
.m177_c01300{transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);}
.m194_c01300{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);}
.m18e_c01300{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);}
.m76_c01300{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);}
.mdc_c01300{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);}
.m77_c01300{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m122_c01300{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);}
.m3a_c01300{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m106_c01300{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);}
.m55_c01300{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.med_c01300{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);}
.m1bd_c01300{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.mf5_c01300{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m138_c01300{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.ma_c01300{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);}
.m184_c01300{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.ma5_c01300{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.mb0_c01300{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.m105_c01300{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);}
.ma7_c01300{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);}
.mf3_c01300{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);}
.m17b_c01300{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);}
.ma2_c01300{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.m167_c01300{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);}
.m1e6_c01300{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);}
.m18d_c01300{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);}
.m1e2_c01300{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m152_c01300{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m1e8_c01300{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);}
.m186_c01300{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);}
.m4c_c01300{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);}
.m83_c01300{transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);}
.m155_c01300{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m43_c01300{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.m127_c01300{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m15f_c01300{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.maf_c01300{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);}
.m18_c01300{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.mac_c01300{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);}
.m112_c01300{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m19f_c01300{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01300{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.m50_c01300{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);}
.m170_c01300{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);}
.mc0_c01300{transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);}
.mca_c01300{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);}
.m4e_c01300{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01300{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);}
.mc1_c01300{transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);}
.m67_c01300{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m107_c01300{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.m15d_c01300{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);}
.m10a_c01300{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01300{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);}
.mbc_c01300{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);}
.m1db_c01300{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01300{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);}
.m7e_c01300{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.m27_c01300{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);}
.m2e_c01300{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);}
.mb8_c01300{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m32_c01300{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01300{transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01300{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m162_c01300{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m10e_c01300{transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);}
.m14a_c01300{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.m157_c01300{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m80_c01300{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);}
.ma6_c01300{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m116_c01300{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01300{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);}
.m15c_c01300{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.mbb_c01300{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);}
.me6_c01300{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);}
.m153_c01300{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m13b_c01300{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);}
.m1d9_c01300{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);}
.m1c3_c01300{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m104_c01300{transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);}
.m6d_c01300{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.m14e_c01300{transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);}
.m125_c01300{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);}
.me7_c01300{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);}
.m156_c01300{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.mb7_c01300{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);}
.m191_c01300{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);}
.maa_c01300{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01300{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);}
.m9_c01300{transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01300{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);}
.m128_c01300{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m9b_c01300{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);}
.m120_c01300{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);}
.m25_c01300{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.m52_c01300{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01300{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);}
.m151_c01300{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m3d_c01300{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);}
.m87_c01300{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);}
.m33_c01300{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01300{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m187_c01300{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.mb1_c01300{transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248450,0.000000,0.000000,0.250000,0,0);}
.m113_c01300{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);}
.mbd_c01300{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m58_c01300{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);}
.me_c01300{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);}
.m51_c01300{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m21_c01300{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m4b_c01300{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m15_c01300{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);}
.mee_c01300{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m35_c01300{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);}
.m8b_c01300{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);}
.m69_c01300{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);}
.m30_c01300{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);}
.m34_c01300{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c01300{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mfe_c01300{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01300{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);}
.m31_c01300{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m22_c01300{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);}
.md_c01300{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);}
.m49_c01300{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m17c_c01300{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);}
.m4d_c01300{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m123_c01300{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m111_c01300{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);}
.me2_c01300{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m150_c01300{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);}
.m39_c01300{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);}
.mb_c01300{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01300{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m28_c01300{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);}
.m5a_c01300{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.md4_c01300{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m91_c01300{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);}
.m54_c01300{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb6_c01300{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10d_c01300{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mcc_c01300{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m18c_c01300{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01300{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mdd_c01300{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m154_c01300{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01300{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);}
.mf6_c01300{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mfb_c01300{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m16b_c01300{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc2_c01300{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6_c01300{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);}
.m47_c01300{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);}
.mf4_c01300{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m78_c01300{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m8_c01300{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);}
.m93_c01300{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m101_c01300{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m65_c01300{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m57_c01300{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);}
.md7_c01300{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13_c01300{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);}
.mf1_c01300{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.md0_c01300{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md5_c01300{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m166_c01300{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m53_c01300{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.ma8_c01300{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);}
.m11d_c01300{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);}
.m12b_c01300{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01300{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);}
.m3_c01300{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01300{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01300{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m102_c01300{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m124_c01300{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01300{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mff_c01300{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);}
.m1c6_c01300{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m48_c01300{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mf0_c01300{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mce_c01300{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4_c01300{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1e7_c01300{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.mcd_c01300{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m37_c01300{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mf7_c01300{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m14f_c01300{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);}
.m2_c01300{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);}
.m103_c01300{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m18b_c01300{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m135_c01300{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.mb4_c01300{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01300{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m13c_c01300{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01300{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.mda_c01300{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);}
.m9d_c01300{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.mcf_c01300{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01300{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m12_c01300{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);}
.ma3_c01300{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01300{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.md2_c01300{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01300{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);}
.ma9_c01300{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m13a_c01300{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m195_c01300{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01300{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m139_c01300{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.mde_c01300{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);}
.m147_c01300{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m75_c01300{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01300{transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.700000,0.000000,0.000000,0.250000,0,0);}
.mbe_c01300{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m149_c01300{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m45_c01300{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m42_c01300{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);}
.m197_c01300{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m79_c01300{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01300{transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.785000,0.000000,0.000000,0.250000,0,0);}
.mf9_c01300{transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);}
.m8e_c01300{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01300{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m17_c01300{transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);}
.m15b_c01300{transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.957500,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01300{transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01300{transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01300{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m115_c01300{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.m16e_c01300{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01300{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m144_c01300{transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);}
.mfc_c01300{transform:matrix(1.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.352500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01300{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.m72_c01300{transform:matrix(1.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.382500,0.000000,0.000000,0.250000,0,0);}
.md1_c01300{transform:matrix(1.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.395000,0.000000,0.000000,0.250000,0,0);}
.md3_c01300{transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);}
.m148_c01300{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01300{transform:matrix(1.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.567500,0.000000,0.000000,0.250000,0,0);}
.mef_c01300{transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.707500,0.000000,0.000000,0.250000,0,0);}
.mfd_c01300{transform:matrix(2.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.207500,0.000000,0.000000,0.250000,0,0);}
.mcb_c01300{transform:matrix(2.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.677500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01300{transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01300{transform:matrix(4.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.032500,0.000000,0.000000,0.250000,0,0);}
.v0_c01300{vertical-align:0.000000px;}
.v1_c01300{vertical-align:3.480000px;}
.ls4_c01300{letter-spacing:0.000000px;}
.ls1_c01300{letter-spacing:18.756000px;}
.ls3_c01300{letter-spacing:34.190700px;}
.ls2_c01300{letter-spacing:71.024688px;}
.ls0_c01300{letter-spacing:142.818333px;}
.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;}
.fs5_c01300{font-size:3.456000px;}
.fsf_c01300{font-size:6.000000px;}
.fs1a_c01300{font-size:6.900000px;}
.fs3_c01300{font-size:10.380000px;}
.fs22_c01300{font-size:13.800000px;}
.fs1c_c01300{font-size:17.280000px;}
.fs18_c01300{font-size:20.760000px;}
.fs10_c01300{font-size:24.180000px;}
.fs4_c01300{font-size:27.660000px;}
.fs1d_c01300{font-size:31.080000px;}
.fs13_c01300{font-size:34.560000px;}
.fs8_c01300{font-size:38.040000px;}
.fs0_c01300{font-size:41.460000px;}
.fs11_c01300{font-size:44.940000px;}
.fs12_c01300{font-size:48.360000px;}
.fs15_c01300{font-size:51.840000px;}
.fs1b_c01300{font-size:55.320000px;}
.fsd_c01300{font-size:58.740000px;}
.fs7_c01300{font-size:62.220000px;}
.fsb_c01300{font-size:65.640000px;}
.fs16_c01300{font-size:69.120000px;}
.fs17_c01300{font-size:72.600000px;}
.fs14_c01300{font-size:76.020000px;}
.fse_c01300{font-size:79.500000px;}
.fs9_c01300{font-size:82.920000px;}
.fs19_c01300{font-size:86.400000px;}
.fsc_c01300{font-size:89.880000px;}
.fs1f_c01300{font-size:93.300000px;}
.fsa_c01300{font-size:96.780000px;}
.fs1e_c01300{font-size:100.200000px;}
.fs24_c01300{font-size:103.680000px;}
.fs20_c01300{font-size:107.160000px;}
.fs23_c01300{font-size:110.580000px;}
.fs21_c01300{font-size:117.480000px;}
.fs1_c01300{font-size:148.620000px;}
.fs6_c01300{font-size:193.560000px;}
.fs2_c01300{font-size:290.280000px;}
.y0_c01300{bottom:0.000000px;}
.y1d1_c01300{bottom:176.250000px;}
.y1cf_c01300{bottom:179.715000px;}
.y1d0_c01300{bottom:190.950000px;}
.y1ce_c01300{bottom:193.530000px;}
.y1c8_c01300{bottom:194.400000px;}
.y1cb_c01300{bottom:195.270000px;}
.y1ca_c01300{bottom:196.125000px;}
.y1cd_c01300{bottom:196.995000px;}
.y1cc_c01300{bottom:198.720000px;}
.y1c9_c01300{bottom:200.445000px;}
.y1c5_c01300{bottom:214.275000px;}
.y1c4_c01300{bottom:216.000000px;}
.y1c3_c01300{bottom:216.870000px;}
.y1c6_c01300{bottom:217.725000px;}
.y1c2_c01300{bottom:218.595000px;}
.y1c1_c01300{bottom:219.450000px;}
.y1c7_c01300{bottom:221.190000px;}
.y1bf_c01300{bottom:234.150000px;}
.y1bb_c01300{bottom:235.005000px;}
.y1bc_c01300{bottom:235.875000px;}
.y1ba_c01300{bottom:236.730000px;}
.y1c0_c01300{bottom:238.470000px;}
.y1bd_c01300{bottom:241.050000px;}
.y1be_c01300{bottom:241.920000px;}
.y1b5_c01300{bottom:254.010000px;}
.y1b8_c01300{bottom:254.880000px;}
.y1b2_c01300{bottom:255.750000px;}
.y1b4_c01300{bottom:256.605000px;}
.y1b6_c01300{bottom:257.475000px;}
.y1b7_c01300{bottom:259.200000px;}
.y1b9_c01300{bottom:260.070000px;}
.y1ad_c01300{bottom:260.925000px;}
.y1ae_c01300{bottom:261.795000px;}
.y1af_c01300{bottom:262.650000px;}
.y1b0_c01300{bottom:269.565000px;}
.y1b1_c01300{bottom:270.435000px;}
.y1ac_c01300{bottom:271.290000px;}
.y1aa_c01300{bottom:272.160000px;}
.y1ab_c01300{bottom:273.030000px;}
.y1b3_c01300{bottom:273.885000px;}
.y1a2_c01300{bottom:276.480000px;}
.y1a3_c01300{bottom:277.350000px;}
.y1a0_c01300{bottom:278.205000px;}
.y1a7_c01300{bottom:279.930000px;}
.y1a1_c01300{bottom:280.800000px;}
.y1a4_c01300{bottom:281.670000px;}
.y1a5_c01300{bottom:282.525000px;}
.y1a8_c01300{bottom:284.250000px;}
.y1a9_c01300{bottom:285.120000px;}
.y199_c01300{bottom:295.485000px;}
.y1a6_c01300{bottom:296.355000px;}
.y19e_c01300{bottom:297.210000px;}
.y19b_c01300{bottom:298.080000px;}
.y19c_c01300{bottom:298.950000px;}
.y19a_c01300{bottom:302.400000px;}
.y198_c01300{bottom:304.125000px;}
.y19d_c01300{bottom:304.995000px;}
.y19f_c01300{bottom:317.955000px;}
.y192_c01300{bottom:320.550000px;}
.y194_c01300{bottom:321.405000px;}
.y190_c01300{bottom:322.275000px;}
.y191_c01300{bottom:323.130000px;}
.y193_c01300{bottom:324.000000px;}
.y195_c01300{bottom:324.870000px;}
.y196_c01300{bottom:325.725000px;}
.y197_c01300{bottom:326.595000px;}
.y18a_c01300{bottom:337.830000px;}
.y18b_c01300{bottom:338.685000px;}
.y18c_c01300{bottom:339.555000px;}
.y18f_c01300{bottom:340.410000px;}
.y18d_c01300{bottom:343.875000px;}
.y189_c01300{bottom:344.730000px;}
.y18e_c01300{bottom:349.920000px;}
.y183_c01300{bottom:361.155000px;}
.y182_c01300{bottom:362.010000px;}
.y181_c01300{bottom:362.880000px;}
.y188_c01300{bottom:363.750000px;}
.y180_c01300{bottom:364.605000px;}
.y184_c01300{bottom:365.475000px;}
.y17f_c01300{bottom:366.330000px;}
.y186_c01300{bottom:368.070000px;}
.y185_c01300{bottom:368.925000px;}
.y187_c01300{bottom:369.795000px;}
.y177_c01300{bottom:374.115000px;}
.y178_c01300{bottom:374.970000px;}
.y17c_c01300{bottom:375.840000px;}
.y17b_c01300{bottom:376.710000px;}
.y17d_c01300{bottom:381.030000px;}
.y17e_c01300{bottom:389.670000px;}
.y17a_c01300{bottom:390.525000px;}
.y179_c01300{bottom:392.250000px;}
.y16d_c01300{bottom:399.165000px;}
.y173_c01300{bottom:400.035000px;}
.y175_c01300{bottom:400.890000px;}
.y174_c01300{bottom:401.760000px;}
.y16f_c01300{bottom:403.485000px;}
.y16e_c01300{bottom:405.210000px;}
.y170_c01300{bottom:406.950000px;}
.y172_c01300{bottom:410.400000px;}
.y171_c01300{bottom:414.720000px;}
.y176_c01300{bottom:418.170000px;}
.y16b_c01300{bottom:420.765000px;}
.y169_c01300{bottom:421.635000px;}
.y167_c01300{bottom:422.490000px;}
.y16a_c01300{bottom:425.085000px;}
.y16c_c01300{bottom:425.955000px;}
.y168_c01300{bottom:427.680000px;}
.y163_c01300{bottom:441.510000px;}
.y162_c01300{bottom:442.365000px;}
.y160_c01300{bottom:443.235000px;}
.y161_c01300{bottom:444.960000px;}
.y165_c01300{bottom:445.830000px;}
.y164_c01300{bottom:448.410000px;}
.y166_c01300{bottom:457.920000px;}
.y159_c01300{bottom:460.515000px;}
.y15e_c01300{bottom:461.370000px;}
.y15b_c01300{bottom:463.110000px;}
.y157_c01300{bottom:463.965000px;}
.y15c_c01300{bottom:465.690000px;}
.y15a_c01300{bottom:466.560000px;}
.y158_c01300{bottom:467.430000px;}
.y15f_c01300{bottom:468.285000px;}
.y15d_c01300{bottom:480.390000px;}
.y156_c01300{bottom:481.245000px;}
.y14b_c01300{bottom:482.115000px;}
.y149_c01300{bottom:482.970000px;}
.y14f_c01300{bottom:483.840000px;}
.y153_c01300{bottom:486.435000px;}
.y14c_c01300{bottom:487.290000px;}
.y14e_c01300{bottom:488.160000px;}
.y14a_c01300{bottom:489.030000px;}
.y155_c01300{bottom:489.885000px;}
.y151_c01300{bottom:490.755000px;}
.y150_c01300{bottom:492.480000px;}
.y154_c01300{bottom:494.205000px;}
.y152_c01300{bottom:495.075000px;}
.y14d_c01300{bottom:496.800000px;}
.y148_c01300{bottom:500.250000px;}
.y145_c01300{bottom:501.120000px;}
.y144_c01300{bottom:502.845000px;}
.y147_c01300{bottom:504.570000px;}
.y146_c01300{bottom:508.890000px;}
.y13d_c01300{bottom:523.590000px;}
.y13c_c01300{bottom:524.445000px;}
.y140_c01300{bottom:527.910000px;}
.y13f_c01300{bottom:528.765000px;}
.y142_c01300{bottom:533.085000px;}
.y141_c01300{bottom:534.810000px;}
.y13e_c01300{bottom:539.130000px;}
.y143_c01300{bottom:541.725000px;}
.y133_c01300{bottom:544.320000px;}
.y13a_c01300{bottom:545.190000px;}
.y136_c01300{bottom:546.915000px;}
.y139_c01300{bottom:547.770000px;}
.y135_c01300{bottom:548.640000px;}
.y134_c01300{bottom:549.510000px;}
.y138_c01300{bottom:550.365000px;}
.y137_c01300{bottom:551.235000px;}
.y131_c01300{bottom:557.280000px;}
.y132_c01300{bottom:558.150000px;}
.y13b_c01300{bottom:560.730000px;}
.y130_c01300{bottom:564.195000px;}
.y12d_c01300{bottom:565.050000px;}
.y12f_c01300{bottom:565.920000px;}
.y12b_c01300{bottom:567.645000px;}
.y12c_c01300{bottom:569.370000px;}
.y12e_c01300{bottom:570.240000px;}
.y12a_c01300{bottom:574.560000px;}
.y121_c01300{bottom:578.010000px;}
.y128_c01300{bottom:578.880000px;}
.y124_c01300{bottom:579.750000px;}
.y126_c01300{bottom:580.605000px;}
.y120_c01300{bottom:585.795000px;}
.y123_c01300{bottom:588.390000px;}
.y122_c01300{bottom:589.245000px;}
.y127_c01300{bottom:590.970000px;}
.y129_c01300{bottom:592.710000px;}
.y125_c01300{bottom:597.030000px;}
.y118_c01300{bottom:604.800000px;}
.y11e_c01300{bottom:606.525000px;}
.y11b_c01300{bottom:607.395000px;}
.y11c_c01300{bottom:609.120000px;}
.y11d_c01300{bottom:609.990000px;}
.y11f_c01300{bottom:610.845000px;}
.y117_c01300{bottom:611.715000px;}
.y11a_c01300{bottom:612.570000px;}
.y119_c01300{bottom:615.165000px;}
.y116_c01300{bottom:622.080000px;}
.y111_c01300{bottom:622.950000px;}
.y110_c01300{bottom:624.675000px;}
.y114_c01300{bottom:625.530000px;}
.y115_c01300{bottom:627.270000px;}
.y113_c01300{bottom:628.125000px;}
.y112_c01300{bottom:629.850000px;}
.y10b_c01300{bottom:646.275000px;}
.y10f_c01300{bottom:647.130000px;}
.y10d_c01300{bottom:648.000000px;}
.y10e_c01300{bottom:650.595000px;}
.y10a_c01300{bottom:660.090000px;}
.y10c_c01300{bottom:667.005000px;}
.y109_c01300{bottom:667.875000px;}
.y106_c01300{bottom:672.195000px;}
.y107_c01300{bottom:674.790000px;}
.y105_c01300{bottom:675.645000px;}
.y108_c01300{bottom:677.370000px;}
.yfb_c01300{bottom:683.430000px;}
.yfc_c01300{bottom:684.285000px;}
.y104_c01300{bottom:685.155000px;}
.y100_c01300{bottom:686.010000px;}
.y103_c01300{bottom:687.750000px;}
.yff_c01300{bottom:689.475000px;}
.yfd_c01300{bottom:690.330000px;}
.y101_c01300{bottom:691.200000px;}
.y102_c01300{bottom:696.390000px;}
.yfe_c01300{bottom:699.840000px;}
.yf7_c01300{bottom:705.030000px;}
.yf6_c01300{bottom:705.885000px;}
.yf4_c01300{bottom:707.610000px;}
.yf8_c01300{bottom:708.480000px;}
.yf9_c01300{bottom:710.205000px;}
.yf5_c01300{bottom:711.075000px;}
.yfa_c01300{bottom:712.800000px;}
.yef_c01300{bottom:724.035000px;}
.yee_c01300{bottom:725.760000px;}
.yed_c01300{bottom:726.630000px;}
.yf3_c01300{bottom:727.485000px;}
.yf1_c01300{bottom:728.355000px;}
.yf0_c01300{bottom:730.080000px;}
.yf2_c01300{bottom:730.950000px;}
.yeb_c01300{bottom:746.490000px;}
.yea_c01300{bottom:747.360000px;}
.ye5_c01300{bottom:749.955000px;}
.ye9_c01300{bottom:750.810000px;}
.ye7_c01300{bottom:751.680000px;}
.ye8_c01300{bottom:752.550000px;}
.ye6_c01300{bottom:753.405000px;}
.yec_c01300{bottom:754.275000px;}
.ydf_c01300{bottom:766.365000px;}
.ye0_c01300{bottom:767.235000px;}
.ye2_c01300{bottom:768.090000px;}
.ye3_c01300{bottom:768.960000px;}
.yde_c01300{bottom:771.555000px;}
.ydd_c01300{bottom:772.410000px;}
.ye4_c01300{bottom:773.280000px;}
.ye1_c01300{bottom:774.150000px;}
.yda_c01300{bottom:786.240000px;}
.yd1_c01300{bottom:787.110000px;}
.ydb_c01300{bottom:788.835000px;}
.ydc_c01300{bottom:789.690000px;}
.yd2_c01300{bottom:791.430000px;}
.yd4_c01300{bottom:792.285000px;}
.yd3_c01300{bottom:793.155000px;}
.yd9_c01300{bottom:794.010000px;}
.ycd_c01300{bottom:796.605000px;}
.yd0_c01300{bottom:797.475000px;}
.ycf_c01300{bottom:800.925000px;}
.yce_c01300{bottom:801.795000px;}
.yd7_c01300{bottom:802.650000px;}
.yd8_c01300{bottom:803.520000px;}
.yd6_c01300{bottom:806.115000px;}
.yd5_c01300{bottom:806.970000px;}
.yca_c01300{bottom:807.840000px;}
.yc6_c01300{bottom:808.710000px;}
.ycb_c01300{bottom:811.290000px;}
.yc7_c01300{bottom:812.160000px;}
.yc8_c01300{bottom:813.030000px;}
.yc9_c01300{bottom:813.885000px;}
.ycc_c01300{bottom:814.755000px;}
.yc3_c01300{bottom:826.845000px;}
.yc2_c01300{bottom:828.570000px;}
.yc5_c01300{bottom:830.310000px;}
.yc4_c01300{bottom:832.890000px;}
.ybd_c01300{bottom:847.590000px;}
.ybf_c01300{bottom:848.445000px;}
.ybb_c01300{bottom:849.315000px;}
.yc0_c01300{bottom:850.170000px;}
.yc1_c01300{bottom:851.910000px;}
.ybe_c01300{bottom:853.635000px;}
.ybc_c01300{bottom:855.360000px;}
.yb5_c01300{bottom:867.450000px;}
.yb9_c01300{bottom:868.320000px;}
.yb7_c01300{bottom:869.190000px;}
.yb4_c01300{bottom:870.045000px;}
.yba_c01300{bottom:870.915000px;}
.yb6_c01300{bottom:871.770000px;}
.yb8_c01300{bottom:872.640000px;}
.ya9_c01300{bottom:873.510000px;}
.yae_c01300{bottom:874.365000px;}
.yaf_c01300{bottom:875.235000px;}
.yb3_c01300{bottom:879.555000px;}
.yac_c01300{bottom:880.410000px;}
.yb0_c01300{bottom:881.280000px;}
.yb2_c01300{bottom:882.150000px;}
.yb1_c01300{bottom:883.005000px;}
.yad_c01300{bottom:883.875000px;}
.yaa_c01300{bottom:884.730000px;}
.yab_c01300{bottom:885.600000px;}
.ya4_c01300{bottom:887.325000px;}
.ya3_c01300{bottom:888.195000px;}
.ya7_c01300{bottom:889.050000px;}
.ya5_c01300{bottom:890.790000px;}
.ya8_c01300{bottom:891.645000px;}
.ya6_c01300{bottom:894.240000px;}
.y9c_c01300{bottom:908.925000px;}
.y9f_c01300{bottom:909.795000px;}
.ya1_c01300{bottom:911.520000px;}
.y9d_c01300{bottom:912.390000px;}
.y9e_c01300{bottom:913.245000px;}
.ya0_c01300{bottom:914.115000px;}
.ya2_c01300{bottom:919.290000px;}
.y99_c01300{bottom:927.075000px;}
.y98_c01300{bottom:930.525000px;}
.y97_c01300{bottom:931.395000px;}
.y96_c01300{bottom:932.250000px;}
.y9a_c01300{bottom:933.120000px;}
.y95_c01300{bottom:933.990000px;}
.y9b_c01300{bottom:935.715000px;}
.y94_c01300{bottom:948.675000px;}
.y8d_c01300{bottom:949.530000px;}
.y92_c01300{bottom:950.400000px;}
.y91_c01300{bottom:952.125000px;}
.y8f_c01300{bottom:952.995000px;}
.y90_c01300{bottom:953.850000px;}
.y8e_c01300{bottom:954.720000px;}
.y93_c01300{bottom:956.445000px;}
.y89_c01300{bottom:964.230000px;}
.y87_c01300{bottom:965.085000px;}
.y88_c01300{bottom:968.550000px;}
.y8c_c01300{bottom:971.130000px;}
.y8a_c01300{bottom:973.725000px;}
.y8b_c01300{bottom:977.190000px;}
.y81_c01300{bottom:990.150000px;}
.y80_c01300{bottom:991.005000px;}
.y86_c01300{bottom:991.875000px;}
.y82_c01300{bottom:992.730000px;}
.y84_c01300{bottom:995.325000px;}
.y85_c01300{bottom:996.195000px;}
.y83_c01300{bottom:1006.560000px;}
.y7b_c01300{bottom:1010.010000px;}
.y7c_c01300{bottom:1010.880000px;}
.y7e_c01300{bottom:1011.750000px;}
.y7d_c01300{bottom:1014.330000px;}
.y7f_c01300{bottom:1020.390000px;}
.y76_c01300{bottom:1030.755000px;}
.y78_c01300{bottom:1031.610000px;}
.y74_c01300{bottom:1032.480000px;}
.y7a_c01300{bottom:1033.350000px;}
.y79_c01300{bottom:1034.205000px;}
.y75_c01300{bottom:1035.930000px;}
.y77_c01300{bottom:1036.800000px;}
.y71_c01300{bottom:1051.485000px;}
.y6c_c01300{bottom:1052.355000px;}
.y72_c01300{bottom:1054.080000px;}
.y6d_c01300{bottom:1054.950000px;}
.y6e_c01300{bottom:1055.805000px;}
.y6f_c01300{bottom:1056.675000px;}
.y73_c01300{bottom:1057.530000px;}
.y6b_c01300{bottom:1058.400000px;}
.y69_c01300{bottom:1060.125000px;}
.y6a_c01300{bottom:1060.995000px;}
.y63_c01300{bottom:1068.765000px;}
.y70_c01300{bottom:1069.635000px;}
.y62_c01300{bottom:1070.490000px;}
.y65_c01300{bottom:1071.360000px;}
.y64_c01300{bottom:1072.230000px;}
.y67_c01300{bottom:1073.955000px;}
.y66_c01300{bottom:1074.810000px;}
.y61_c01300{bottom:1078.275000px;}
.y58_c01300{bottom:1087.770000px;}
.y68_c01300{bottom:1088.640000px;}
.y5a_c01300{bottom:1091.235000px;}
.y59_c01300{bottom:1092.960000px;}
.y5e_c01300{bottom:1093.830000px;}
.y5f_c01300{bottom:1094.685000px;}
.y5b_c01300{bottom:1096.410000px;}
.y5c_c01300{bottom:1097.280000px;}
.y5d_c01300{bottom:1101.600000px;}
.y60_c01300{bottom:1103.325000px;}
.y57_c01300{bottom:1111.965000px;}
.y54_c01300{bottom:1132.710000px;}
.y55_c01300{bottom:1133.565000px;}
.y56_c01300{bottom:1141.350000px;}
.y4d_c01300{bottom:1153.440000px;}
.y52_c01300{bottom:1154.310000px;}
.y53_c01300{bottom:1156.035000px;}
.y4e_c01300{bottom:1156.890000px;}
.y50_c01300{bottom:1158.630000px;}
.y4f_c01300{bottom:1159.485000px;}
.y51_c01300{bottom:1165.530000px;}
.y44_c01300{bottom:1172.445000px;}
.y45_c01300{bottom:1173.315000px;}
.y49_c01300{bottom:1175.040000px;}
.y47_c01300{bottom:1175.910000px;}
.y4b_c01300{bottom:1176.765000px;}
.y46_c01300{bottom:1177.635000px;}
.y4a_c01300{bottom:1178.490000px;}
.y48_c01300{bottom:1179.360000px;}
.y1d9_c01300{bottom:1184.550000px;}
.y4c_c01300{bottom:1188.000000px;}
.y3c_c01300{bottom:1192.320000px;}
.y40_c01300{bottom:1194.045000px;}
.y3d_c01300{bottom:1195.770000px;}
.y3f_c01300{bottom:1198.365000px;}
.y3e_c01300{bottom:1199.235000px;}
.y42_c01300{bottom:1202.685000px;}
.y41_c01300{bottom:1203.555000px;}
.y43_c01300{bottom:1204.410000px;}
.y1d7_c01300{bottom:1209.600000px;}
.y35_c01300{bottom:1212.195000px;}
.y36_c01300{bottom:1213.050000px;}
.y3a_c01300{bottom:1213.920000px;}
.y37_c01300{bottom:1214.790000px;}
.y39_c01300{bottom:1216.515000px;}
.y38_c01300{bottom:1220.835000px;}
.y3b_c01300{bottom:1225.155000px;}
.y2f_c01300{bottom:1233.795000px;}
.y2d_c01300{bottom:1234.650000px;}
.y33_c01300{bottom:1236.390000px;}
.y32_c01300{bottom:1237.245000px;}
.y30_c01300{bottom:1238.970000px;}
.y2e_c01300{bottom:1239.840000px;}
.y31_c01300{bottom:1240.710000px;}
.y34_c01300{bottom:1241.565000px;}
.y1d8_c01300{bottom:1248.480000px;}
.y28_c01300{bottom:1253.670000px;}
.y25_c01300{bottom:1254.525000px;}
.y27_c01300{bottom:1255.395000px;}
.y26_c01300{bottom:1256.250000px;}
.y2c_c01300{bottom:1257.120000px;}
.y2b_c01300{bottom:1257.990000px;}
.y2a_c01300{bottom:1258.845000px;}
.y29_c01300{bottom:1259.715000px;}
.y24_c01300{bottom:1260.570000px;}
.y23_c01300{bottom:1264.035000px;}
.y20_c01300{bottom:1274.400000px;}
.y22_c01300{bottom:1275.270000px;}
.y21_c01300{bottom:1280.445000px;}
.y1c_c01300{bottom:1295.130000px;}
.y1f_c01300{bottom:1296.870000px;}
.y1e_c01300{bottom:1297.725000px;}
.y1d_c01300{bottom:1300.320000px;}
.y1b_c01300{bottom:1302.045000px;}
.y12_c01300{bottom:1315.875000px;}
.y18_c01300{bottom:1316.730000px;}
.y19_c01300{bottom:1317.600000px;}
.y17_c01300{bottom:1319.325000px;}
.y16_c01300{bottom:1320.195000px;}
.y15_c01300{bottom:1321.050000px;}
.y14_c01300{bottom:1321.920000px;}
.y1d6_c01300{bottom:1322.790000px;}
.y13_c01300{bottom:1327.965000px;}
.y1d5_c01300{bottom:1328.835000px;}
.y1a_c01300{bottom:1333.155000px;}
.yd_c01300{bottom:1335.750000px;}
.yf_c01300{bottom:1336.605000px;}
.y11_c01300{bottom:1337.475000px;}
.ye_c01300{bottom:1340.070000px;}
.y10_c01300{bottom:1351.290000px;}
.yc_c01300{bottom:1361.670000px;}
.ya_c01300{bottom:1362.525000px;}
.y7_c01300{bottom:1363.395000px;}
.y9_c01300{bottom:1365.990000px;}
.yb_c01300{bottom:1369.440000px;}
.y8_c01300{bottom:1372.890000px;}
.y3_c01300{bottom:1378.950000px;}
.y2_c01300{bottom:1386.720000px;}
.y4_c01300{bottom:1389.315000px;}
.y6_c01300{bottom:1390.170000px;}
.y1d3_c01300{bottom:1401.405000px;}
.y1d4_c01300{bottom:1402.275000px;}
.y1d2_c01300{bottom:1406.595000px;}
.y5_c01300{bottom:1413.510000px;}
.y1_c01300{bottom:1452.390000px;}
.h7_c01300{height:3.110063px;}
.h11_c01300{height:5.399414px;}
.h1c_c01300{height:6.209326px;}
.h2a_c01300{height:6.530063px;}
.h25_c01300{height:6.590063px;}
.h5_c01300{height:9.340986px;}
.h24_c01300{height:12.418652px;}
.h1e_c01300{height:15.550313px;}
.h29_c01300{height:15.838652px;}
.h1a_c01300{height:18.681973px;}
.h12_c01300{height:21.759639px;}
.h6_c01300{height:24.891299px;}
.h1f_c01300{height:27.968965px;}
.h15_c01300{height:31.100625px;}
.ha_c01300{height:34.232285px;}
.h2_c01300{height:37.309951px;}
.h13_c01300{height:40.441611px;}
.h14_c01300{height:43.519277px;}
.h17_c01300{height:46.650937px;}
.h1d_c01300{height:49.782598px;}
.hf_c01300{height:52.860264px;}
.h9_c01300{height:55.991924px;}
.h28_c01300{height:56.340264px;}
.hd_c01300{height:59.069590px;}
.h18_c01300{height:62.201250px;}
.h19_c01300{height:65.332910px;}
.h16_c01300{height:68.410576px;}
.h10_c01300{height:71.542236px;}
.hb_c01300{height:74.619902px;}
.h1b_c01300{height:77.751563px;}
.he_c01300{height:80.883223px;}
.h21_c01300{height:83.960889px;}
.hc_c01300{height:87.092549px;}
.h20_c01300{height:90.170215px;}
.h27_c01300{height:93.301875px;}
.h22_c01300{height:96.433535px;}
.h26_c01300{height:99.511201px;}
.h23_c01300{height:105.720527px;}
.h3_c01300{height:133.743486px;}
.h8_c01300{height:174.185098px;}
.h4_c01300{height:261.223652px;}
.h1_c01300{height:1513.500000px;}
.h0_c01300{height:1513.725000px;}
.w1_c01300{width:1076.250000px;}
.w0_c01300{width:1076.550000px;}
.x0_c01300{left:0.000000px;}
.x12a_c01300{left:2.595000px;}
.x108_c01300{left:104.550000px;}
.x10d_c01300{left:114.045000px;}
.x5e_c01300{left:116.640000px;}
.x126_c01300{left:118.365000px;}
.x109_c01300{left:124.410000px;}
.x62_c01300{left:126.150000px;}
.x102_c01300{left:129.600000px;}
.x10a_c01300{left:133.050000px;}
.x103_c01300{left:135.645000px;}
.x127_c01300{left:138.240000px;}
.xeb_c01300{left:144.285000px;}
.x63_c01300{left:146.880000px;}
.x128_c01300{left:151.199925px;}
.xbc_c01300{left:156.390000px;}
.x56_c01300{left:158.970000px;}
.x129_c01300{left:161.565000px;}
.xb6_c01300{left:165.030000px;}
.x57_c01300{left:167.610000px;}
.xbd_c01300{left:172.800000px;}
.x64_c01300{left:176.250000px;}
.x114_c01300{left:180.570000px;}
.x5f_c01300{left:182.310000px;}
.xe7_c01300{left:184.890000px;}
.x65_c01300{left:187.485000px;}
.xbe_c01300{left:191.805000px;}
.x104_c01300{left:194.400000px;}
.x66_c01300{left:196.125000px;}
.x110_c01300{left:198.720000px;}
.xcc_c01300{left:200.445000px;}
.x125_c01300{left:203.040000px;}
.x55_c01300{left:205.635000px;}
.x29_c01300{left:207.360000px;}
.xcd_c01300{left:209.085000px;}
.x32_c01300{left:210.810000px;}
.x8_c01300{left:214.275000px;}
.x1e_c01300{left:216.870000px;}
.xa9_c01300{left:219.450000px;}
.x9e_c01300{left:222.045000px;}
.x8d_c01300{left:224.640000px;}
.x73_c01300{left:226.365000px;}
.x1f_c01300{left:228.090000px;}
.x8e_c01300{left:229.830000px;}
.x2a_c01300{left:231.555000px;}
.xe8_c01300{left:233.280000px;}
.xdc_c01300{left:235.005000px;}
.xd4_c01300{left:236.730000px;}
.x124_c01300{left:242.790000px;}
.xde_c01300{left:244.515000px;}
.x121_c01300{left:247.110000px;}
.xe1_c01300{left:248.835000px;}
.xdd_c01300{left:250.560000px;}
.xe3_c01300{left:252.285000px;}
.x8f_c01300{left:256.605000px;}
.xc6_c01300{left:262.650000px;}
.xe2_c01300{left:265.245000px;}
.xd5_c01300{left:266.970000px;}
.xce_c01300{left:270.435000px;}
.xb7_c01300{left:273.030000px;}
.x93_c01300{left:274.755000px;}
.x9_c01300{left:278.205000px;}
.xec_c01300{left:280.800000px;}
.x94_c01300{left:283.395000px;}
.x90_c01300{left:285.120000px;}
.x13_c01300{left:286.845000px;}
.xb0_c01300{left:289.440000px;}
.xff_c01300{left:291.165000px;}
.x14_c01300{left:294.630000px;}
.x2b_c01300{left:297.210000px;}
.x80_c01300{left:299.805000px;}
.xd8_c01300{left:303.270000px;}
.x115_c01300{left:305.850000px;}
.x74_c01300{left:311.910000px;}
.x122_c01300{left:313.635000px;}
.x81_c01300{left:316.230000px;}
.x10b_c01300{left:317.955000px;}
.x7c_c01300{left:320.550000px;}
.x15_c01300{left:323.130000px;}
.xbf_c01300{left:328.320000px;}
.x113_c01300{left:330.045000px;}
.xa_c01300{left:331.770000px;}
.x16_c01300{left:333.510000px;}
.x9a_c01300{left:336.960000px;}
.x67_c01300{left:338.685000px;}
.x20_c01300{left:341.280000px;}
.x9f_c01300{left:343.005000px;}
.x2_c01300{left:345.600000px;}
.xc0_c01300{left:349.050000px;}
.x85_c01300{left:351.645000px;}
.x68_c01300{left:354.240000px;}
.x86_c01300{left:356.835000px;}
.x17_c01300{left:362.010000px;}
.x116_c01300{left:363.750000px;}
.x47_c01300{left:366.330000px;}
.x33_c01300{left:368.925000px;}
.x69_c01300{left:370.650000px;}
.x7a_c01300{left:373.245000px;}
.x3_c01300{left:375.840000px;}
.x100_c01300{left:377.565000px;}
.xaa_c01300{left:381.030000px;}
.x24_c01300{left:384.480000px;}
.xd2_c01300{left:386.205000px;}
.x6a_c01300{left:388.800000px;}
.x18_c01300{left:391.395000px;}
.x1_c01300{left:393.990000px;}
.x7d_c01300{left:395.715000px;}
.x95_c01300{left:398.310000px;}
.xfc_c01300{left:400.035000px;}
.xab_c01300{left:401.760000px;}
.x87_c01300{left:403.485000px;}
.x21_c01300{left:405.210000px;}
.x11c_c01300{left:407.805000px;}
.x4f_c01300{left:411.270000px;}
.xa0_c01300{left:412.995000px;}
.xe9_c01300{left:414.720000px;}
.x82_c01300{left:418.170000px;}
.x25_c01300{left:419.910000px;}
.xcf_c01300{left:424.230000px;}
.x6b_c01300{left:426.810000px;}
.x19_c01300{left:430.275000px;}
.x88_c01300{left:432.000000px;}
.x3f_c01300{left:433.725000px;}
.x96_c01300{left:437.190000px;}
.x6c_c01300{left:440.640000px;}
.x120_c01300{left:443.235000px;}
.xd6_c01300{left:445.830000px;}
.x22_c01300{left:450.150000px;}
.x89_c01300{left:452.730000px;}
.x9b_c01300{left:455.325000px;}
.xe_c01300{left:457.920000px;}
.xac_c01300{left:459.645000px;}
.x50_c01300{left:462.240000px;}
.xb_c01300{left:465.690000px;}
.xed_c01300{left:468.285000px;}
.xd9_c01300{left:471.750000px;}
.x9c_c01300{left:473.475000px;}
.xc7_c01300{left:476.070000px;}
.x6d_c01300{left:477.795000px;}
.x58_c01300{left:479.520000px;}
.x51_c01300{left:481.245000px;}
.x34_c01300{left:483.840000px;}
.x59_c01300{left:489.030000px;}
.x75_c01300{left:490.755000px;}
.x6e_c01300{left:493.350000px;}
.xf4_c01300{left:495.075000px;}
.x8a_c01300{left:496.800000px;}
.xb8_c01300{left:499.395000px;}
.x48_c01300{left:501.120000px;}
.x40_c01300{left:505.440000px;}
.x1a_c01300{left:507.165000px;}
.xc1_c01300{left:508.890000px;}
.x8b_c01300{left:513.210000px;}
.x4_c01300{left:514.950000px;}
.xf1_c01300{left:522.720000px;}
.xf_c01300{left:524.445000px;}
.x35_c01300{left:526.170000px;}
.x10e_c01300{left:529.635000px;}
.x5a_c01300{left:531.360000px;}
.x3b_c01300{left:533.085000px;}
.x83_c01300{left:535.680000px;}
.x10_c01300{left:537.405000px;}
.x111_c01300{left:539.130000px;}
.x7e_c01300{left:540.870000px;}
.x36_c01300{left:542.595000px;}
.x11_c01300{left:545.190000px;}
.xf5_c01300{left:546.915000px;}
.xad_c01300{left:548.640000px;}
.x11d_c01300{left:552.090000px;}
.xdf_c01300{left:554.685000px;}
.x117_c01300{left:556.410000px;}
.xa1_c01300{left:560.730000px;}
.x112_c01300{left:562.470000px;}
.x49_c01300{left:565.920000px;}
.x2c_c01300{left:568.515000px;}
.xc8_c01300{left:571.965000px;}
.xb9_c01300{left:574.560000px;}
.x5_c01300{left:576.285000px;}
.xd0_c01300{left:578.010000px;}
.x60_c01300{left:579.750000px;}
.xba_c01300{left:583.200000px;}
.xee_c01300{left:584.925000px;}
.x3c_c01300{left:586.650000px;}
.xc9_c01300{left:588.390000px;}
.x105_c01300{left:590.115000px;}
.x23_c01300{left:592.710000px;}
.x6f_c01300{left:594.435000px;}
.x4a_c01300{left:596.160000px;}
.x7b_c01300{left:599.610000px;}
.x5b_c01300{left:603.930000px;}
.x76_c01300{left:608.250000px;}
.x1b_c01300{left:610.845000px;}
.x2d_c01300{left:612.570000px;}
.x106_c01300{left:617.760000px;}
.xa2_c01300{left:619.485000px;}
.xca_c01300{left:622.950000px;}
.xd3_c01300{left:624.675000px;}
.xe6_c01300{left:628.995000px;}
.x26_c01300{left:631.590000px;}
.xfd_c01300{left:633.315000px;}
.xa3_c01300{left:635.910000px;}
.x61_c01300{left:638.490000px;}
.x6_c01300{left:640.230000px;}
.x91_c01300{left:641.955000px;}
.x5c_c01300{left:645.405000px;}
.x97_c01300{left:648.000000px;}
.xef_c01300{left:649.725000px;}
.xc_c01300{left:651.450000px;}
.x37_c01300{left:653.190000px;}
.xa4_c01300{left:658.365000px;}
.xf7_c01300{left:660.960000px;}
.x4b_c01300{left:662.685000px;}
.x38_c01300{left:665.280000px;}
.xbb_c01300{left:667.005000px;}
.xc2_c01300{left:671.325000px;}
.xb1_c01300{left:673.920000px;}
.x70_c01300{left:676.515000px;}
.x2e_c01300{left:678.240000px;}
.xe0_c01300{left:679.965000px;}
.xd1_c01300{left:683.430000px;}
.x39_c01300{left:685.155000px;}
.x8c_c01300{left:687.750000px;}
.xda_c01300{left:689.475000px;}
.xc3_c01300{left:691.200000px;}
.x54_c01300{left:692.925000px;}
.xb4_c01300{left:695.520000px;}
.xdb_c01300{left:698.970000px;}
.xf8_c01300{left:703.290000px;}
.x10c_c01300{left:705.885000px;}
.xea_c01300{left:711.930000px;}
.xa5_c01300{left:713.670000px;}
.x118_c01300{left:715.395000px;}
.x7_c01300{left:717.120000px;}
.x27_c01300{left:721.440000px;}
.x4c_c01300{left:724.890000px;}
.x119_c01300{left:729.210000px;}
.xf9_c01300{left:730.950000px;}
.x3d_c01300{left:734.400000px;}
.x77_c01300{left:736.125000px;}
.x12_c01300{left:738.720000px;}
.xf0_c01300{left:740.445000px;}
.x78_c01300{left:743.040000px;}
.xb5_c01300{left:745.635000px;}
.x1c_c01300{left:747.360000px;}
.xfe_c01300{left:749.085000px;}
.x41_c01300{left:752.550000px;}
.x11e_c01300{left:754.275000px;}
.x2f_c01300{left:758.595000px;}
.x107_c01300{left:760.320000px;}
.x10f_c01300{left:762.915000px;}
.x11f_c01300{left:764.640000px;}
.x79_c01300{left:766.365000px;}
.xc4_c01300{left:768.090000px;}
.x52_c01300{left:769.830000px;}
.x84_c01300{left:771.555000px;}
.x71_c01300{left:778.470000px;}
.xa6_c01300{left:781.920000px;}
.x30_c01300{left:783.645000px;}
.xf6_c01300{left:785.370000px;}
.xb2_c01300{left:787.965000px;}
.x98_c01300{left:789.690000px;}
.xa7_c01300{left:794.880000px;}
.xe4_c01300{left:796.605000px;}
.x7f_c01300{left:798.330000px;}
.x92_c01300{left:801.795000px;}
.x53_c01300{left:804.390000px;}
.x101_c01300{left:806.115000px;}
.xb3_c01300{left:807.840000px;}
.xfa_c01300{left:809.565000px;}
.xc5_c01300{left:811.290000px;}
.xae_c01300{left:813.885000px;}
.x72_c01300{left:817.350000px;}
.xd_c01300{left:820.800000px;}
.xcb_c01300{left:822.525000px;}
.x123_c01300{left:824.250000px;}
.x3a_c01300{left:825.990000px;}
.x9d_c01300{left:828.570000px;}
.x11a_c01300{left:831.165000px;}
.xe5_c01300{left:832.890000px;}
.x31_c01300{left:837.210000px;}
.xf2_c01300{left:838.950000px;}
.x11b_c01300{left:842.400000px;}
.x99_c01300{left:844.995000px;}
.x3e_c01300{left:846.720000px;}
.xd7_c01300{left:848.445000px;}
.x42_c01300{left:856.230000px;}
.x1d_c01300{left:858.810000px;}
.xf3_c01300{left:861.405000px;}
.x5d_c01300{left:864.000000px;}
.x28_c01300{left:871.770000px;}
.xfb_c01300{left:873.510000px;}
.x4d_c01300{left:876.960000px;}
.x43_c01300{left:878.684325px;}
.xaf_c01300{left:882.150000px;}
.x4e_c01300{left:883.875000px;}
.x44_c01300{left:885.600000px;}
.x45_c01300{left:894.240000px;}
.xa8_c01300{left:898.560000px;}
.x46_c01300{left:915.840000px;}
.x12d_c01300{left:943.485000px;}
.x12c_c01300{left:1043.715000px;}
.x12b_c01300{left:1048.890000px;}
@media print{
.v0_c01300{vertical-align:0.000000pt;}
.v1_c01300{vertical-align:3.093333pt;}
.ls4_c01300{letter-spacing:0.000000pt;}
.ls1_c01300{letter-spacing:16.672000pt;}
.ls3_c01300{letter-spacing:30.391733pt;}
.ls2_c01300{letter-spacing:63.133056pt;}
.ls0_c01300{letter-spacing:126.949630pt;}
.ws0_c01300{word-spacing:0.000000pt;}
.fs5_c01300{font-size:3.072000pt;}
.fsf_c01300{font-size:5.333333pt;}
.fs1a_c01300{font-size:6.133333pt;}
.fs3_c01300{font-size:9.226667pt;}
.fs22_c01300{font-size:12.266667pt;}
.fs1c_c01300{font-size:15.360000pt;}
.fs18_c01300{font-size:18.453333pt;}
.fs10_c01300{font-size:21.493333pt;}
.fs4_c01300{font-size:24.586667pt;}
.fs1d_c01300{font-size:27.626667pt;}
.fs13_c01300{font-size:30.720000pt;}
.fs8_c01300{font-size:33.813333pt;}
.fs0_c01300{font-size:36.853333pt;}
.fs11_c01300{font-size:39.946667pt;}
.fs12_c01300{font-size:42.986667pt;}
.fs15_c01300{font-size:46.080000pt;}
.fs1b_c01300{font-size:49.173333pt;}
.fsd_c01300{font-size:52.213333pt;}
.fs7_c01300{font-size:55.306667pt;}
.fsb_c01300{font-size:58.346667pt;}
.fs16_c01300{font-size:61.440000pt;}
.fs17_c01300{font-size:64.533333pt;}
.fs14_c01300{font-size:67.573333pt;}
.fse_c01300{font-size:70.666667pt;}
.fs9_c01300{font-size:73.706667pt;}
.fs19_c01300{font-size:76.800000pt;}
.fsc_c01300{font-size:79.893333pt;}
.fs1f_c01300{font-size:82.933333pt;}
.fsa_c01300{font-size:86.026667pt;}
.fs1e_c01300{font-size:89.066667pt;}
.fs24_c01300{font-size:92.160000pt;}
.fs20_c01300{font-size:95.253333pt;}
.fs23_c01300{font-size:98.293333pt;}
.fs21_c01300{font-size:104.426667pt;}
.fs1_c01300{font-size:132.106667pt;}
.fs6_c01300{font-size:172.053333pt;}
.fs2_c01300{font-size:258.026667pt;}
.y0_c01300{bottom:0.000000pt;}
.y1d1_c01300{bottom:156.666667pt;}
.y1cf_c01300{bottom:159.746667pt;}
.y1d0_c01300{bottom:169.733333pt;}
.y1ce_c01300{bottom:172.026667pt;}
.y1c8_c01300{bottom:172.800000pt;}
.y1cb_c01300{bottom:173.573333pt;}
.y1ca_c01300{bottom:174.333333pt;}
.y1cd_c01300{bottom:175.106667pt;}
.y1cc_c01300{bottom:176.640000pt;}
.y1c9_c01300{bottom:178.173333pt;}
.y1c5_c01300{bottom:190.466667pt;}
.y1c4_c01300{bottom:192.000000pt;}
.y1c3_c01300{bottom:192.773333pt;}
.y1c6_c01300{bottom:193.533333pt;}
.y1c2_c01300{bottom:194.306667pt;}
.y1c1_c01300{bottom:195.066667pt;}
.y1c7_c01300{bottom:196.613333pt;}
.y1bf_c01300{bottom:208.133333pt;}
.y1bb_c01300{bottom:208.893333pt;}
.y1bc_c01300{bottom:209.666667pt;}
.y1ba_c01300{bottom:210.426667pt;}
.y1c0_c01300{bottom:211.973333pt;}
.y1bd_c01300{bottom:214.266667pt;}
.y1be_c01300{bottom:215.040000pt;}
.y1b5_c01300{bottom:225.786667pt;}
.y1b8_c01300{bottom:226.560000pt;}
.y1b2_c01300{bottom:227.333333pt;}
.y1b4_c01300{bottom:228.093333pt;}
.y1b6_c01300{bottom:228.866667pt;}
.y1b7_c01300{bottom:230.400000pt;}
.y1b9_c01300{bottom:231.173333pt;}
.y1ad_c01300{bottom:231.933333pt;}
.y1ae_c01300{bottom:232.706667pt;}
.y1af_c01300{bottom:233.466667pt;}
.y1b0_c01300{bottom:239.613333pt;}
.y1b1_c01300{bottom:240.386667pt;}
.y1ac_c01300{bottom:241.146667pt;}
.y1aa_c01300{bottom:241.920000pt;}
.y1ab_c01300{bottom:242.693333pt;}
.y1b3_c01300{bottom:243.453333pt;}
.y1a2_c01300{bottom:245.760000pt;}
.y1a3_c01300{bottom:246.533333pt;}
.y1a0_c01300{bottom:247.293333pt;}
.y1a7_c01300{bottom:248.826667pt;}
.y1a1_c01300{bottom:249.600000pt;}
.y1a4_c01300{bottom:250.373333pt;}
.y1a5_c01300{bottom:251.133333pt;}
.y1a8_c01300{bottom:252.666667pt;}
.y1a9_c01300{bottom:253.440000pt;}
.y199_c01300{bottom:262.653333pt;}
.y1a6_c01300{bottom:263.426667pt;}
.y19e_c01300{bottom:264.186667pt;}
.y19b_c01300{bottom:264.960000pt;}
.y19c_c01300{bottom:265.733333pt;}
.y19a_c01300{bottom:268.800000pt;}
.y198_c01300{bottom:270.333333pt;}
.y19d_c01300{bottom:271.106667pt;}
.y19f_c01300{bottom:282.626667pt;}
.y192_c01300{bottom:284.933333pt;}
.y194_c01300{bottom:285.693333pt;}
.y190_c01300{bottom:286.466667pt;}
.y191_c01300{bottom:287.226667pt;}
.y193_c01300{bottom:288.000000pt;}
.y195_c01300{bottom:288.773333pt;}
.y196_c01300{bottom:289.533333pt;}
.y197_c01300{bottom:290.306667pt;}
.y18a_c01300{bottom:300.293333pt;}
.y18b_c01300{bottom:301.053333pt;}
.y18c_c01300{bottom:301.826667pt;}
.y18f_c01300{bottom:302.586667pt;}
.y18d_c01300{bottom:305.666667pt;}
.y189_c01300{bottom:306.426667pt;}
.y18e_c01300{bottom:311.040000pt;}
.y183_c01300{bottom:321.026667pt;}
.y182_c01300{bottom:321.786667pt;}
.y181_c01300{bottom:322.560000pt;}
.y188_c01300{bottom:323.333333pt;}
.y180_c01300{bottom:324.093333pt;}
.y184_c01300{bottom:324.866667pt;}
.y17f_c01300{bottom:325.626667pt;}
.y186_c01300{bottom:327.173333pt;}
.y185_c01300{bottom:327.933333pt;}
.y187_c01300{bottom:328.706667pt;}
.y177_c01300{bottom:332.546667pt;}
.y178_c01300{bottom:333.306667pt;}
.y17c_c01300{bottom:334.080000pt;}
.y17b_c01300{bottom:334.853333pt;}
.y17d_c01300{bottom:338.693333pt;}
.y17e_c01300{bottom:346.373333pt;}
.y17a_c01300{bottom:347.133333pt;}
.y179_c01300{bottom:348.666667pt;}
.y16d_c01300{bottom:354.813333pt;}
.y173_c01300{bottom:355.586667pt;}
.y175_c01300{bottom:356.346667pt;}
.y174_c01300{bottom:357.120000pt;}
.y16f_c01300{bottom:358.653333pt;}
.y16e_c01300{bottom:360.186667pt;}
.y170_c01300{bottom:361.733333pt;}
.y172_c01300{bottom:364.800000pt;}
.y171_c01300{bottom:368.640000pt;}
.y176_c01300{bottom:371.706667pt;}
.y16b_c01300{bottom:374.013333pt;}
.y169_c01300{bottom:374.786667pt;}
.y167_c01300{bottom:375.546667pt;}
.y16a_c01300{bottom:377.853333pt;}
.y16c_c01300{bottom:378.626667pt;}
.y168_c01300{bottom:380.160000pt;}
.y163_c01300{bottom:392.453333pt;}
.y162_c01300{bottom:393.213333pt;}
.y160_c01300{bottom:393.986667pt;}
.y161_c01300{bottom:395.520000pt;}
.y165_c01300{bottom:396.293333pt;}
.y164_c01300{bottom:398.586667pt;}
.y166_c01300{bottom:407.040000pt;}
.y159_c01300{bottom:409.346667pt;}
.y15e_c01300{bottom:410.106667pt;}
.y15b_c01300{bottom:411.653333pt;}
.y157_c01300{bottom:412.413333pt;}
.y15c_c01300{bottom:413.946667pt;}
.y15a_c01300{bottom:414.720000pt;}
.y158_c01300{bottom:415.493333pt;}
.y15f_c01300{bottom:416.253333pt;}
.y15d_c01300{bottom:427.013333pt;}
.y156_c01300{bottom:427.773333pt;}
.y14b_c01300{bottom:428.546667pt;}
.y149_c01300{bottom:429.306667pt;}
.y14f_c01300{bottom:430.080000pt;}
.y153_c01300{bottom:432.386667pt;}
.y14c_c01300{bottom:433.146667pt;}
.y14e_c01300{bottom:433.920000pt;}
.y14a_c01300{bottom:434.693333pt;}
.y155_c01300{bottom:435.453333pt;}
.y151_c01300{bottom:436.226667pt;}
.y150_c01300{bottom:437.760000pt;}
.y154_c01300{bottom:439.293333pt;}
.y152_c01300{bottom:440.066667pt;}
.y14d_c01300{bottom:441.600000pt;}
.y148_c01300{bottom:444.666667pt;}
.y145_c01300{bottom:445.440000pt;}
.y144_c01300{bottom:446.973333pt;}
.y147_c01300{bottom:448.506667pt;}
.y146_c01300{bottom:452.346667pt;}
.y13d_c01300{bottom:465.413333pt;}
.y13c_c01300{bottom:466.173333pt;}
.y140_c01300{bottom:469.253333pt;}
.y13f_c01300{bottom:470.013333pt;}
.y142_c01300{bottom:473.853333pt;}
.y141_c01300{bottom:475.386667pt;}
.y13e_c01300{bottom:479.226667pt;}
.y143_c01300{bottom:481.533333pt;}
.y133_c01300{bottom:483.840000pt;}
.y13a_c01300{bottom:484.613333pt;}
.y136_c01300{bottom:486.146667pt;}
.y139_c01300{bottom:486.906667pt;}
.y135_c01300{bottom:487.680000pt;}
.y134_c01300{bottom:488.453333pt;}
.y138_c01300{bottom:489.213333pt;}
.y137_c01300{bottom:489.986667pt;}
.y131_c01300{bottom:495.360000pt;}
.y132_c01300{bottom:496.133333pt;}
.y13b_c01300{bottom:498.426667pt;}
.y130_c01300{bottom:501.506667pt;}
.y12d_c01300{bottom:502.266667pt;}
.y12f_c01300{bottom:503.040000pt;}
.y12b_c01300{bottom:504.573333pt;}
.y12c_c01300{bottom:506.106667pt;}
.y12e_c01300{bottom:506.880000pt;}
.y12a_c01300{bottom:510.720000pt;}
.y121_c01300{bottom:513.786667pt;}
.y128_c01300{bottom:514.560000pt;}
.y124_c01300{bottom:515.333333pt;}
.y126_c01300{bottom:516.093333pt;}
.y120_c01300{bottom:520.706667pt;}
.y123_c01300{bottom:523.013333pt;}
.y122_c01300{bottom:523.773333pt;}
.y127_c01300{bottom:525.306667pt;}
.y129_c01300{bottom:526.853333pt;}
.y125_c01300{bottom:530.693333pt;}
.y118_c01300{bottom:537.600000pt;}
.y11e_c01300{bottom:539.133333pt;}
.y11b_c01300{bottom:539.906667pt;}
.y11c_c01300{bottom:541.440000pt;}
.y11d_c01300{bottom:542.213333pt;}
.y11f_c01300{bottom:542.973333pt;}
.y117_c01300{bottom:543.746667pt;}
.y11a_c01300{bottom:544.506667pt;}
.y119_c01300{bottom:546.813333pt;}
.y116_c01300{bottom:552.960000pt;}
.y111_c01300{bottom:553.733333pt;}
.y110_c01300{bottom:555.266667pt;}
.y114_c01300{bottom:556.026667pt;}
.y115_c01300{bottom:557.573333pt;}
.y113_c01300{bottom:558.333333pt;}
.y112_c01300{bottom:559.866667pt;}
.y10b_c01300{bottom:574.466667pt;}
.y10f_c01300{bottom:575.226667pt;}
.y10d_c01300{bottom:576.000000pt;}
.y10e_c01300{bottom:578.306667pt;}
.y10a_c01300{bottom:586.746667pt;}
.y10c_c01300{bottom:592.893333pt;}
.y109_c01300{bottom:593.666667pt;}
.y106_c01300{bottom:597.506667pt;}
.y107_c01300{bottom:599.813333pt;}
.y105_c01300{bottom:600.573333pt;}
.y108_c01300{bottom:602.106667pt;}
.yfb_c01300{bottom:607.493333pt;}
.yfc_c01300{bottom:608.253333pt;}
.y104_c01300{bottom:609.026667pt;}
.y100_c01300{bottom:609.786667pt;}
.y103_c01300{bottom:611.333333pt;}
.yff_c01300{bottom:612.866667pt;}
.yfd_c01300{bottom:613.626667pt;}
.y101_c01300{bottom:614.400000pt;}
.y102_c01300{bottom:619.013333pt;}
.yfe_c01300{bottom:622.080000pt;}
.yf7_c01300{bottom:626.693333pt;}
.yf6_c01300{bottom:627.453333pt;}
.yf4_c01300{bottom:628.986667pt;}
.yf8_c01300{bottom:629.760000pt;}
.yf9_c01300{bottom:631.293333pt;}
.yf5_c01300{bottom:632.066667pt;}
.yfa_c01300{bottom:633.600000pt;}
.yef_c01300{bottom:643.586667pt;}
.yee_c01300{bottom:645.120000pt;}
.yed_c01300{bottom:645.893333pt;}
.yf3_c01300{bottom:646.653333pt;}
.yf1_c01300{bottom:647.426667pt;}
.yf0_c01300{bottom:648.960000pt;}
.yf2_c01300{bottom:649.733333pt;}
.yeb_c01300{bottom:663.546667pt;}
.yea_c01300{bottom:664.320000pt;}
.ye5_c01300{bottom:666.626667pt;}
.ye9_c01300{bottom:667.386667pt;}
.ye7_c01300{bottom:668.160000pt;}
.ye8_c01300{bottom:668.933333pt;}
.ye6_c01300{bottom:669.693333pt;}
.yec_c01300{bottom:670.466667pt;}
.ydf_c01300{bottom:681.213333pt;}
.ye0_c01300{bottom:681.986667pt;}
.ye2_c01300{bottom:682.746667pt;}
.ye3_c01300{bottom:683.520000pt;}
.yde_c01300{bottom:685.826667pt;}
.ydd_c01300{bottom:686.586667pt;}
.ye4_c01300{bottom:687.360000pt;}
.ye1_c01300{bottom:688.133333pt;}
.yda_c01300{bottom:698.880000pt;}
.yd1_c01300{bottom:699.653333pt;}
.ydb_c01300{bottom:701.186667pt;}
.ydc_c01300{bottom:701.946667pt;}
.yd2_c01300{bottom:703.493333pt;}
.yd4_c01300{bottom:704.253333pt;}
.yd3_c01300{bottom:705.026667pt;}
.yd9_c01300{bottom:705.786667pt;}
.ycd_c01300{bottom:708.093333pt;}
.yd0_c01300{bottom:708.866667pt;}
.ycf_c01300{bottom:711.933333pt;}
.yce_c01300{bottom:712.706667pt;}
.yd7_c01300{bottom:713.466667pt;}
.yd8_c01300{bottom:714.240000pt;}
.yd6_c01300{bottom:716.546667pt;}
.yd5_c01300{bottom:717.306667pt;}
.yca_c01300{bottom:718.080000pt;}
.yc6_c01300{bottom:718.853333pt;}
.ycb_c01300{bottom:721.146667pt;}
.yc7_c01300{bottom:721.920000pt;}
.yc8_c01300{bottom:722.693333pt;}
.yc9_c01300{bottom:723.453333pt;}
.ycc_c01300{bottom:724.226667pt;}
.yc3_c01300{bottom:734.973333pt;}
.yc2_c01300{bottom:736.506667pt;}
.yc5_c01300{bottom:738.053333pt;}
.yc4_c01300{bottom:740.346667pt;}
.ybd_c01300{bottom:753.413333pt;}
.ybf_c01300{bottom:754.173333pt;}
.ybb_c01300{bottom:754.946667pt;}
.yc0_c01300{bottom:755.706667pt;}
.yc1_c01300{bottom:757.253333pt;}
.ybe_c01300{bottom:758.786667pt;}
.ybc_c01300{bottom:760.320000pt;}
.yb5_c01300{bottom:771.066667pt;}
.yb9_c01300{bottom:771.840000pt;}
.yb7_c01300{bottom:772.613333pt;}
.yb4_c01300{bottom:773.373333pt;}
.yba_c01300{bottom:774.146667pt;}
.yb6_c01300{bottom:774.906667pt;}
.yb8_c01300{bottom:775.680000pt;}
.ya9_c01300{bottom:776.453333pt;}
.yae_c01300{bottom:777.213333pt;}
.yaf_c01300{bottom:777.986667pt;}
.yb3_c01300{bottom:781.826667pt;}
.yac_c01300{bottom:782.586667pt;}
.yb0_c01300{bottom:783.360000pt;}
.yb2_c01300{bottom:784.133333pt;}
.yb1_c01300{bottom:784.893333pt;}
.yad_c01300{bottom:785.666667pt;}
.yaa_c01300{bottom:786.426667pt;}
.yab_c01300{bottom:787.200000pt;}
.ya4_c01300{bottom:788.733333pt;}
.ya3_c01300{bottom:789.506667pt;}
.ya7_c01300{bottom:790.266667pt;}
.ya5_c01300{bottom:791.813333pt;}
.ya8_c01300{bottom:792.573333pt;}
.ya6_c01300{bottom:794.880000pt;}
.y9c_c01300{bottom:807.933333pt;}
.y9f_c01300{bottom:808.706667pt;}
.ya1_c01300{bottom:810.240000pt;}
.y9d_c01300{bottom:811.013333pt;}
.y9e_c01300{bottom:811.773333pt;}
.ya0_c01300{bottom:812.546667pt;}
.ya2_c01300{bottom:817.146667pt;}
.y99_c01300{bottom:824.066667pt;}
.y98_c01300{bottom:827.133333pt;}
.y97_c01300{bottom:827.906667pt;}
.y96_c01300{bottom:828.666667pt;}
.y9a_c01300{bottom:829.440000pt;}
.y95_c01300{bottom:830.213333pt;}
.y9b_c01300{bottom:831.746667pt;}
.y94_c01300{bottom:843.266667pt;}
.y8d_c01300{bottom:844.026667pt;}
.y92_c01300{bottom:844.800000pt;}
.y91_c01300{bottom:846.333333pt;}
.y8f_c01300{bottom:847.106667pt;}
.y90_c01300{bottom:847.866667pt;}
.y8e_c01300{bottom:848.640000pt;}
.y93_c01300{bottom:850.173333pt;}
.y89_c01300{bottom:857.093333pt;}
.y87_c01300{bottom:857.853333pt;}
.y88_c01300{bottom:860.933333pt;}
.y8c_c01300{bottom:863.226667pt;}
.y8a_c01300{bottom:865.533333pt;}
.y8b_c01300{bottom:868.613333pt;}
.y81_c01300{bottom:880.133333pt;}
.y80_c01300{bottom:880.893333pt;}
.y86_c01300{bottom:881.666667pt;}
.y82_c01300{bottom:882.426667pt;}
.y84_c01300{bottom:884.733333pt;}
.y85_c01300{bottom:885.506667pt;}
.y83_c01300{bottom:894.720000pt;}
.y7b_c01300{bottom:897.786667pt;}
.y7c_c01300{bottom:898.560000pt;}
.y7e_c01300{bottom:899.333333pt;}
.y7d_c01300{bottom:901.626667pt;}
.y7f_c01300{bottom:907.013333pt;}
.y76_c01300{bottom:916.226667pt;}
.y78_c01300{bottom:916.986667pt;}
.y74_c01300{bottom:917.760000pt;}
.y7a_c01300{bottom:918.533333pt;}
.y79_c01300{bottom:919.293333pt;}
.y75_c01300{bottom:920.826667pt;}
.y77_c01300{bottom:921.600000pt;}
.y71_c01300{bottom:934.653333pt;}
.y6c_c01300{bottom:935.426667pt;}
.y72_c01300{bottom:936.960000pt;}
.y6d_c01300{bottom:937.733333pt;}
.y6e_c01300{bottom:938.493333pt;}
.y6f_c01300{bottom:939.266667pt;}
.y73_c01300{bottom:940.026667pt;}
.y6b_c01300{bottom:940.800000pt;}
.y69_c01300{bottom:942.333333pt;}
.y6a_c01300{bottom:943.106667pt;}
.y63_c01300{bottom:950.013333pt;}
.y70_c01300{bottom:950.786667pt;}
.y62_c01300{bottom:951.546667pt;}
.y65_c01300{bottom:952.320000pt;}
.y64_c01300{bottom:953.093333pt;}
.y67_c01300{bottom:954.626667pt;}
.y66_c01300{bottom:955.386667pt;}
.y61_c01300{bottom:958.466667pt;}
.y58_c01300{bottom:966.906667pt;}
.y68_c01300{bottom:967.680000pt;}
.y5a_c01300{bottom:969.986667pt;}
.y59_c01300{bottom:971.520000pt;}
.y5e_c01300{bottom:972.293333pt;}
.y5f_c01300{bottom:973.053333pt;}
.y5b_c01300{bottom:974.586667pt;}
.y5c_c01300{bottom:975.360000pt;}
.y5d_c01300{bottom:979.200000pt;}
.y60_c01300{bottom:980.733333pt;}
.y57_c01300{bottom:988.413333pt;}
.y54_c01300{bottom:1006.853333pt;}
.y55_c01300{bottom:1007.613333pt;}
.y56_c01300{bottom:1014.533333pt;}
.y4d_c01300{bottom:1025.280000pt;}
.y52_c01300{bottom:1026.053333pt;}
.y53_c01300{bottom:1027.586667pt;}
.y4e_c01300{bottom:1028.346667pt;}
.y50_c01300{bottom:1029.893333pt;}
.y4f_c01300{bottom:1030.653333pt;}
.y51_c01300{bottom:1036.026667pt;}
.y44_c01300{bottom:1042.173333pt;}
.y45_c01300{bottom:1042.946667pt;}
.y49_c01300{bottom:1044.480000pt;}
.y47_c01300{bottom:1045.253333pt;}
.y4b_c01300{bottom:1046.013333pt;}
.y46_c01300{bottom:1046.786667pt;}
.y4a_c01300{bottom:1047.546667pt;}
.y48_c01300{bottom:1048.320000pt;}
.y1d9_c01300{bottom:1052.933333pt;}
.y4c_c01300{bottom:1056.000000pt;}
.y3c_c01300{bottom:1059.840000pt;}
.y40_c01300{bottom:1061.373333pt;}
.y3d_c01300{bottom:1062.906667pt;}
.y3f_c01300{bottom:1065.213333pt;}
.y3e_c01300{bottom:1065.986667pt;}
.y42_c01300{bottom:1069.053333pt;}
.y41_c01300{bottom:1069.826667pt;}
.y43_c01300{bottom:1070.586667pt;}
.y1d7_c01300{bottom:1075.200000pt;}
.y35_c01300{bottom:1077.506667pt;}
.y36_c01300{bottom:1078.266667pt;}
.y3a_c01300{bottom:1079.040000pt;}
.y37_c01300{bottom:1079.813333pt;}
.y39_c01300{bottom:1081.346667pt;}
.y38_c01300{bottom:1085.186667pt;}
.y3b_c01300{bottom:1089.026667pt;}
.y2f_c01300{bottom:1096.706667pt;}
.y2d_c01300{bottom:1097.466667pt;}
.y33_c01300{bottom:1099.013333pt;}
.y32_c01300{bottom:1099.773333pt;}
.y30_c01300{bottom:1101.306667pt;}
.y2e_c01300{bottom:1102.080000pt;}
.y31_c01300{bottom:1102.853333pt;}
.y34_c01300{bottom:1103.613333pt;}
.y1d8_c01300{bottom:1109.760000pt;}
.y28_c01300{bottom:1114.373333pt;}
.y25_c01300{bottom:1115.133333pt;}
.y27_c01300{bottom:1115.906667pt;}
.y26_c01300{bottom:1116.666667pt;}
.y2c_c01300{bottom:1117.440000pt;}
.y2b_c01300{bottom:1118.213333pt;}
.y2a_c01300{bottom:1118.973333pt;}
.y29_c01300{bottom:1119.746667pt;}
.y24_c01300{bottom:1120.506667pt;}
.y23_c01300{bottom:1123.586667pt;}
.y20_c01300{bottom:1132.800000pt;}
.y22_c01300{bottom:1133.573333pt;}
.y21_c01300{bottom:1138.173333pt;}
.y1c_c01300{bottom:1151.226667pt;}
.y1f_c01300{bottom:1152.773333pt;}
.y1e_c01300{bottom:1153.533333pt;}
.y1d_c01300{bottom:1155.840000pt;}
.y1b_c01300{bottom:1157.373333pt;}
.y12_c01300{bottom:1169.666667pt;}
.y18_c01300{bottom:1170.426667pt;}
.y19_c01300{bottom:1171.200000pt;}
.y17_c01300{bottom:1172.733333pt;}
.y16_c01300{bottom:1173.506667pt;}
.y15_c01300{bottom:1174.266667pt;}
.y14_c01300{bottom:1175.040000pt;}
.y1d6_c01300{bottom:1175.813333pt;}
.y13_c01300{bottom:1180.413333pt;}
.y1d5_c01300{bottom:1181.186667pt;}
.y1a_c01300{bottom:1185.026667pt;}
.yd_c01300{bottom:1187.333333pt;}
.yf_c01300{bottom:1188.093333pt;}
.y11_c01300{bottom:1188.866667pt;}
.ye_c01300{bottom:1191.173333pt;}
.y10_c01300{bottom:1201.146667pt;}
.yc_c01300{bottom:1210.373333pt;}
.ya_c01300{bottom:1211.133333pt;}
.y7_c01300{bottom:1211.906667pt;}
.y9_c01300{bottom:1214.213333pt;}
.yb_c01300{bottom:1217.280000pt;}
.y8_c01300{bottom:1220.346667pt;}
.y3_c01300{bottom:1225.733333pt;}
.y2_c01300{bottom:1232.640000pt;}
.y4_c01300{bottom:1234.946667pt;}
.y6_c01300{bottom:1235.706667pt;}
.y1d3_c01300{bottom:1245.693333pt;}
.y1d4_c01300{bottom:1246.466667pt;}
.y1d2_c01300{bottom:1250.306667pt;}
.y5_c01300{bottom:1256.453333pt;}
.y1_c01300{bottom:1291.013333pt;}
.h7_c01300{height:2.764500pt;}
.h11_c01300{height:4.799479pt;}
.h1c_c01300{height:5.519401pt;}
.h2a_c01300{height:5.804500pt;}
.h25_c01300{height:5.857833pt;}
.h5_c01300{height:8.303099pt;}
.h24_c01300{height:11.038802pt;}
.h1e_c01300{height:13.822500pt;}
.h29_c01300{height:14.078802pt;}
.h1a_c01300{height:16.606198pt;}
.h12_c01300{height:19.341901pt;}
.h6_c01300{height:22.125599pt;}
.h1f_c01300{height:24.861302pt;}
.h15_c01300{height:27.645000pt;}
.ha_c01300{height:30.428698pt;}
.h2_c01300{height:33.164401pt;}
.h13_c01300{height:35.948099pt;}
.h14_c01300{height:38.683802pt;}
.h17_c01300{height:41.467500pt;}
.h1d_c01300{height:44.251198pt;}
.hf_c01300{height:46.986901pt;}
.h9_c01300{height:49.770599pt;}
.h28_c01300{height:50.080234pt;}
.hd_c01300{height:52.506302pt;}
.h18_c01300{height:55.290000pt;}
.h19_c01300{height:58.073698pt;}
.h16_c01300{height:60.809401pt;}
.h10_c01300{height:63.593099pt;}
.hb_c01300{height:66.328802pt;}
.h1b_c01300{height:69.112500pt;}
.he_c01300{height:71.896198pt;}
.h21_c01300{height:74.631901pt;}
.hc_c01300{height:77.415599pt;}
.h20_c01300{height:80.151302pt;}
.h27_c01300{height:82.935000pt;}
.h22_c01300{height:85.718698pt;}
.h26_c01300{height:88.454401pt;}
.h23_c01300{height:93.973802pt;}
.h3_c01300{height:118.883099pt;}
.h8_c01300{height:154.831198pt;}
.h4_c01300{height:232.198802pt;}
.h1_c01300{height:1345.333333pt;}
.h0_c01300{height:1345.533333pt;}
.w1_c01300{width:956.666667pt;}
.w0_c01300{width:956.933333pt;}
.x0_c01300{left:0.000000pt;}
.x12a_c01300{left:2.306667pt;}
.x108_c01300{left:92.933333pt;}
.x10d_c01300{left:101.373333pt;}
.x5e_c01300{left:103.680000pt;}
.x126_c01300{left:105.213333pt;}
.x109_c01300{left:110.586667pt;}
.x62_c01300{left:112.133333pt;}
.x102_c01300{left:115.200000pt;}
.x10a_c01300{left:118.266667pt;}
.x103_c01300{left:120.573333pt;}
.x127_c01300{left:122.880000pt;}
.xeb_c01300{left:128.253333pt;}
.x63_c01300{left:130.560000pt;}
.x128_c01300{left:134.399933pt;}
.xbc_c01300{left:139.013333pt;}
.x56_c01300{left:141.306667pt;}
.x129_c01300{left:143.613333pt;}
.xb6_c01300{left:146.693333pt;}
.x57_c01300{left:148.986667pt;}
.xbd_c01300{left:153.600000pt;}
.x64_c01300{left:156.666667pt;}
.x114_c01300{left:160.506667pt;}
.x5f_c01300{left:162.053333pt;}
.xe7_c01300{left:164.346667pt;}
.x65_c01300{left:166.653333pt;}
.xbe_c01300{left:170.493333pt;}
.x104_c01300{left:172.800000pt;}
.x66_c01300{left:174.333333pt;}
.x110_c01300{left:176.640000pt;}
.xcc_c01300{left:178.173333pt;}
.x125_c01300{left:180.480000pt;}
.x55_c01300{left:182.786667pt;}
.x29_c01300{left:184.320000pt;}
.xcd_c01300{left:185.853333pt;}
.x32_c01300{left:187.386667pt;}
.x8_c01300{left:190.466667pt;}
.x1e_c01300{left:192.773333pt;}
.xa9_c01300{left:195.066667pt;}
.x9e_c01300{left:197.373333pt;}
.x8d_c01300{left:199.680000pt;}
.x73_c01300{left:201.213333pt;}
.x1f_c01300{left:202.746667pt;}
.x8e_c01300{left:204.293333pt;}
.x2a_c01300{left:205.826667pt;}
.xe8_c01300{left:207.360000pt;}
.xdc_c01300{left:208.893333pt;}
.xd4_c01300{left:210.426667pt;}
.x124_c01300{left:215.813333pt;}
.xde_c01300{left:217.346667pt;}
.x121_c01300{left:219.653333pt;}
.xe1_c01300{left:221.186667pt;}
.xdd_c01300{left:222.720000pt;}
.xe3_c01300{left:224.253333pt;}
.x8f_c01300{left:228.093333pt;}
.xc6_c01300{left:233.466667pt;}
.xe2_c01300{left:235.773333pt;}
.xd5_c01300{left:237.306667pt;}
.xce_c01300{left:240.386667pt;}
.xb7_c01300{left:242.693333pt;}
.x93_c01300{left:244.226667pt;}
.x9_c01300{left:247.293333pt;}
.xec_c01300{left:249.600000pt;}
.x94_c01300{left:251.906667pt;}
.x90_c01300{left:253.440000pt;}
.x13_c01300{left:254.973333pt;}
.xb0_c01300{left:257.280000pt;}
.xff_c01300{left:258.813333pt;}
.x14_c01300{left:261.893333pt;}
.x2b_c01300{left:264.186667pt;}
.x80_c01300{left:266.493333pt;}
.xd8_c01300{left:269.573333pt;}
.x115_c01300{left:271.866667pt;}
.x74_c01300{left:277.253333pt;}
.x122_c01300{left:278.786667pt;}
.x81_c01300{left:281.093333pt;}
.x10b_c01300{left:282.626667pt;}
.x7c_c01300{left:284.933333pt;}
.x15_c01300{left:287.226667pt;}
.xbf_c01300{left:291.840000pt;}
.x113_c01300{left:293.373333pt;}
.xa_c01300{left:294.906667pt;}
.x16_c01300{left:296.453333pt;}
.x9a_c01300{left:299.520000pt;}
.x67_c01300{left:301.053333pt;}
.x20_c01300{left:303.360000pt;}
.x9f_c01300{left:304.893333pt;}
.x2_c01300{left:307.200000pt;}
.xc0_c01300{left:310.266667pt;}
.x85_c01300{left:312.573333pt;}
.x68_c01300{left:314.880000pt;}
.x86_c01300{left:317.186667pt;}
.x17_c01300{left:321.786667pt;}
.x116_c01300{left:323.333333pt;}
.x47_c01300{left:325.626667pt;}
.x33_c01300{left:327.933333pt;}
.x69_c01300{left:329.466667pt;}
.x7a_c01300{left:331.773333pt;}
.x3_c01300{left:334.080000pt;}
.x100_c01300{left:335.613333pt;}
.xaa_c01300{left:338.693333pt;}
.x24_c01300{left:341.760000pt;}
.xd2_c01300{left:343.293333pt;}
.x6a_c01300{left:345.600000pt;}
.x18_c01300{left:347.906667pt;}
.x1_c01300{left:350.213333pt;}
.x7d_c01300{left:351.746667pt;}
.x95_c01300{left:354.053333pt;}
.xfc_c01300{left:355.586667pt;}
.xab_c01300{left:357.120000pt;}
.x87_c01300{left:358.653333pt;}
.x21_c01300{left:360.186667pt;}
.x11c_c01300{left:362.493333pt;}
.x4f_c01300{left:365.573333pt;}
.xa0_c01300{left:367.106667pt;}
.xe9_c01300{left:368.640000pt;}
.x82_c01300{left:371.706667pt;}
.x25_c01300{left:373.253333pt;}
.xcf_c01300{left:377.093333pt;}
.x6b_c01300{left:379.386667pt;}
.x19_c01300{left:382.466667pt;}
.x88_c01300{left:384.000000pt;}
.x3f_c01300{left:385.533333pt;}
.x96_c01300{left:388.613333pt;}
.x6c_c01300{left:391.680000pt;}
.x120_c01300{left:393.986667pt;}
.xd6_c01300{left:396.293333pt;}
.x22_c01300{left:400.133333pt;}
.x89_c01300{left:402.426667pt;}
.x9b_c01300{left:404.733333pt;}
.xe_c01300{left:407.040000pt;}
.xac_c01300{left:408.573333pt;}
.x50_c01300{left:410.880000pt;}
.xb_c01300{left:413.946667pt;}
.xed_c01300{left:416.253333pt;}
.xd9_c01300{left:419.333333pt;}
.x9c_c01300{left:420.866667pt;}
.xc7_c01300{left:423.173333pt;}
.x6d_c01300{left:424.706667pt;}
.x58_c01300{left:426.240000pt;}
.x51_c01300{left:427.773333pt;}
.x34_c01300{left:430.080000pt;}
.x59_c01300{left:434.693333pt;}
.x75_c01300{left:436.226667pt;}
.x6e_c01300{left:438.533333pt;}
.xf4_c01300{left:440.066667pt;}
.x8a_c01300{left:441.600000pt;}
.xb8_c01300{left:443.906667pt;}
.x48_c01300{left:445.440000pt;}
.x40_c01300{left:449.280000pt;}
.x1a_c01300{left:450.813333pt;}
.xc1_c01300{left:452.346667pt;}
.x8b_c01300{left:456.186667pt;}
.x4_c01300{left:457.733333pt;}
.xf1_c01300{left:464.640000pt;}
.xf_c01300{left:466.173333pt;}
.x35_c01300{left:467.706667pt;}
.x10e_c01300{left:470.786667pt;}
.x5a_c01300{left:472.320000pt;}
.x3b_c01300{left:473.853333pt;}
.x83_c01300{left:476.160000pt;}
.x10_c01300{left:477.693333pt;}
.x111_c01300{left:479.226667pt;}
.x7e_c01300{left:480.773333pt;}
.x36_c01300{left:482.306667pt;}
.x11_c01300{left:484.613333pt;}
.xf5_c01300{left:486.146667pt;}
.xad_c01300{left:487.680000pt;}
.x11d_c01300{left:490.746667pt;}
.xdf_c01300{left:493.053333pt;}
.x117_c01300{left:494.586667pt;}
.xa1_c01300{left:498.426667pt;}
.x112_c01300{left:499.973333pt;}
.x49_c01300{left:503.040000pt;}
.x2c_c01300{left:505.346667pt;}
.xc8_c01300{left:508.413333pt;}
.xb9_c01300{left:510.720000pt;}
.x5_c01300{left:512.253333pt;}
.xd0_c01300{left:513.786667pt;}
.x60_c01300{left:515.333333pt;}
.xba_c01300{left:518.400000pt;}
.xee_c01300{left:519.933333pt;}
.x3c_c01300{left:521.466667pt;}
.xc9_c01300{left:523.013333pt;}
.x105_c01300{left:524.546667pt;}
.x23_c01300{left:526.853333pt;}
.x6f_c01300{left:528.386667pt;}
.x4a_c01300{left:529.920000pt;}
.x7b_c01300{left:532.986667pt;}
.x5b_c01300{left:536.826667pt;}
.x76_c01300{left:540.666667pt;}
.x1b_c01300{left:542.973333pt;}
.x2d_c01300{left:544.506667pt;}
.x106_c01300{left:549.120000pt;}
.xa2_c01300{left:550.653333pt;}
.xca_c01300{left:553.733333pt;}
.xd3_c01300{left:555.266667pt;}
.xe6_c01300{left:559.106667pt;}
.x26_c01300{left:561.413333pt;}
.xfd_c01300{left:562.946667pt;}
.xa3_c01300{left:565.253333pt;}
.x61_c01300{left:567.546667pt;}
.x6_c01300{left:569.093333pt;}
.x91_c01300{left:570.626667pt;}
.x5c_c01300{left:573.693333pt;}
.x97_c01300{left:576.000000pt;}
.xef_c01300{left:577.533333pt;}
.xc_c01300{left:579.066667pt;}
.x37_c01300{left:580.613333pt;}
.xa4_c01300{left:585.213333pt;}
.xf7_c01300{left:587.520000pt;}
.x4b_c01300{left:589.053333pt;}
.x38_c01300{left:591.360000pt;}
.xbb_c01300{left:592.893333pt;}
.xc2_c01300{left:596.733333pt;}
.xb1_c01300{left:599.040000pt;}
.x70_c01300{left:601.346667pt;}
.x2e_c01300{left:602.880000pt;}
.xe0_c01300{left:604.413333pt;}
.xd1_c01300{left:607.493333pt;}
.x39_c01300{left:609.026667pt;}
.x8c_c01300{left:611.333333pt;}
.xda_c01300{left:612.866667pt;}
.xc3_c01300{left:614.400000pt;}
.x54_c01300{left:615.933333pt;}
.xb4_c01300{left:618.240000pt;}
.xdb_c01300{left:621.306667pt;}
.xf8_c01300{left:625.146667pt;}
.x10c_c01300{left:627.453333pt;}
.xea_c01300{left:632.826667pt;}
.xa5_c01300{left:634.373333pt;}
.x118_c01300{left:635.906667pt;}
.x7_c01300{left:637.440000pt;}
.x27_c01300{left:641.280000pt;}
.x4c_c01300{left:644.346667pt;}
.x119_c01300{left:648.186667pt;}
.xf9_c01300{left:649.733333pt;}
.x3d_c01300{left:652.800000pt;}
.x77_c01300{left:654.333333pt;}
.x12_c01300{left:656.640000pt;}
.xf0_c01300{left:658.173333pt;}
.x78_c01300{left:660.480000pt;}
.xb5_c01300{left:662.786667pt;}
.x1c_c01300{left:664.320000pt;}
.xfe_c01300{left:665.853333pt;}
.x41_c01300{left:668.933333pt;}
.x11e_c01300{left:670.466667pt;}
.x2f_c01300{left:674.306667pt;}
.x107_c01300{left:675.840000pt;}
.x10f_c01300{left:678.146667pt;}
.x11f_c01300{left:679.680000pt;}
.x79_c01300{left:681.213333pt;}
.xc4_c01300{left:682.746667pt;}
.x52_c01300{left:684.293333pt;}
.x84_c01300{left:685.826667pt;}
.x71_c01300{left:691.973333pt;}
.xa6_c01300{left:695.040000pt;}
.x30_c01300{left:696.573333pt;}
.xf6_c01300{left:698.106667pt;}
.xb2_c01300{left:700.413333pt;}
.x98_c01300{left:701.946667pt;}
.xa7_c01300{left:706.560000pt;}
.xe4_c01300{left:708.093333pt;}
.x7f_c01300{left:709.626667pt;}
.x92_c01300{left:712.706667pt;}
.x53_c01300{left:715.013333pt;}
.x101_c01300{left:716.546667pt;}
.xb3_c01300{left:718.080000pt;}
.xfa_c01300{left:719.613333pt;}
.xc5_c01300{left:721.146667pt;}
.xae_c01300{left:723.453333pt;}
.x72_c01300{left:726.533333pt;}
.xd_c01300{left:729.600000pt;}
.xcb_c01300{left:731.133333pt;}
.x123_c01300{left:732.666667pt;}
.x3a_c01300{left:734.213333pt;}
.x9d_c01300{left:736.506667pt;}
.x11a_c01300{left:738.813333pt;}
.xe5_c01300{left:740.346667pt;}
.x31_c01300{left:744.186667pt;}
.xf2_c01300{left:745.733333pt;}
.x11b_c01300{left:748.800000pt;}
.x99_c01300{left:751.106667pt;}
.x3e_c01300{left:752.640000pt;}
.xd7_c01300{left:754.173333pt;}
.x42_c01300{left:761.093333pt;}
.x1d_c01300{left:763.386667pt;}
.xf3_c01300{left:765.693333pt;}
.x5d_c01300{left:768.000000pt;}
.x28_c01300{left:774.906667pt;}
.xfb_c01300{left:776.453333pt;}
.x4d_c01300{left:779.520000pt;}
.x43_c01300{left:781.052733pt;}
.xaf_c01300{left:784.133333pt;}
.x4e_c01300{left:785.666667pt;}
.x44_c01300{left:787.200000pt;}
.x45_c01300{left:794.880000pt;}
.xa8_c01300{left:798.720000pt;}
.x46_c01300{left:814.080000pt;}
.x12d_c01300{left:838.653333pt;}
.x12c_c01300{left:927.746667pt;}
.x12b_c01300{left:932.346667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01301;src:url('chunks/assets/font_bfe1eccc1bc9893a6256cde2.woff2')format("woff");}.ff1_c01301{font-family:ff1_c01301;line-height:1.109863;font-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_c01301{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m116_c01301{transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.044125,0.000000,0.000000,0.250000,0,0);}
.m127_c01301{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.mf1_c01301{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);}
.mf2_c01301{transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);}
.m13b_c01301{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.me6_c01301{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.mc2_c01301{transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115625,0.000000,0.000000,0.250000,0,0);}
.mcf_c01301{transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);}
.ma4_c01301{transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);}
.m112_c01301{transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);}
.m11a_c01301{transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);}
.mde_c01301{transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);}
.m12b_c01301{transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);}
.m15b_c01301{transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);}
.me1_c01301{transform:matrix(0.132600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132600,0.000000,0.000000,0.250000,0,0);}
.m13a_c01301{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);}
.m11d_c01301{transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132975,0.000000,0.000000,0.250000,0,0);}
.m65_c01301{transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);}
.mb_c01301{transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);}
.m133_c01301{transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);}
.m179_c01301{transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);}
.m8e_c01301{transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137200,0.000000,0.000000,0.250000,0,0);}
.m144_c01301{transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141000,0.000000,0.000000,0.250000,0,0);}
.mc7_c01301{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01301{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9a_c01301{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);}
.m174_c01301{transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);}
.m34_c01301{transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);}
.m6b_c01301{transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148275,0.000000,0.000000,0.250000,0,0);}
.mfc_c01301{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);}
.m147_c01301{transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149975,0.000000,0.000000,0.250000,0,0);}
.m16d_c01301{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);}
.m98_c01301{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.mab_c01301{transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);}
.m2d_c01301{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01301{transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);}
.m108_c01301{transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);}
.mc3_c01301{transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);}
.m16c_c01301{transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153600,0.000000,0.000000,0.250000,0,0);}
.mea_c01301{transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);}
.mc1_c01301{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.me4_c01301{transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);}
.m2f_c01301{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m173_c01301{transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);}
.m175_c01301{transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);}
.md7_c01301{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m9b_c01301{transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);}
.m101_c01301{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);}
.m30_c01301{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);}
.mac_c01301{transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);}
.md8_c01301{transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);}
.m126_c01301{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m172_c01301{transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);}
.m130_c01301{transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);}
.mff_c01301{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m16e_c01301{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m145_c01301{transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);}
.m120_c01301{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m58_c01301{transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);}
.m149_c01301{transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);}
.m162_c01301{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m13e_c01301{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m12c_c01301{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.mf0_c01301{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m102_c01301{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m82_c01301{transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);}
.m131_c01301{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);}
.m107_c01301{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);}
.m137_c01301{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);}
.m59_c01301{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.me7_c01301{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);}
.mb4_c01301{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.mdb_c01301{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);}
.m7a_c01301{transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170925,0.000000,0.000000,0.250000,0,0);}
.m165_c01301{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.ma0_c01301{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m81_c01301{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m103_c01301{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);}
.m62_c01301{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);}
.md6_c01301{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.m29_c01301{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m13c_c01301{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m35_c01301{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m5d_c01301{transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);}
.md0_c01301{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m125_c01301{transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);}
.m139_c01301{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m16b_c01301{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.mf9_c01301{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m138_c01301{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.m12d_c01301{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.md3_c01301{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);}
.m97_c01301{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);}
.mdd_c01301{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);}
.m71_c01301{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m164_c01301{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);}
.m104_c01301{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);}
.m124_c01301{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m44_c01301{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m105_c01301{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m15f_c01301{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.mf8_c01301{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);}
.maa_c01301{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.ma2_c01301{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m134_c01301{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m99_c01301{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.mbf_c01301{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);}
.m141_c01301{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.mad_c01301{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m10c_c01301{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);}
.mfa_c01301{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);}
.m16f_c01301{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);}
.m11b_c01301{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m3d_c01301{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.mc6_c01301{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m10a_c01301{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.mfe_c01301{transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);}
.m2e_c01301{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.ma5_c01301{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.me9_c01301{transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191300,0.000000,0.000000,0.250000,0,0);}
.m12e_c01301{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.m106_c01301{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.mdf_c01301{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);}
.m15d_c01301{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m3c_c01301{transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194650,0.000000,0.000000,0.250000,0,0);}
.m15c_c01301{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);}
.m13f_c01301{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m111_c01301{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);}
.me0_c01301{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);}
.m4d_c01301{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);}
.m152_c01301{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);}
.mc4_c01301{transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);}
.m123_c01301{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m55_c01301{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);}
.m178_c01301{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m122_c01301{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.md5_c01301{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);}
.m14d_c01301{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);}
.m153_c01301{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);}
.m6a_c01301{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01301{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m8a_c01301{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.mb2_c01301{transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);}
.m113_c01301{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.m94_c01301{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.mcc_c01301{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);}
.mb1_c01301{transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);}
.m11_c01301{transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);}
.m129_c01301{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);}
.m118_c01301{transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);}
.m38_c01301{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.meb_c01301{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.me2_c01301{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m14c_c01301{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m17a_c01301{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.m8f_c01301{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);}
.mf3_c01301{transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);}
.m1a_c01301{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);}
.m43_c01301{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m74_c01301{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m3f_c01301{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);}
.m25_c01301{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);}
.ma_c01301{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);}
.m7e_c01301{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);}
.m4c_c01301{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);}
.mdc_c01301{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);}
.m36_c01301{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);}
.m3e_c01301{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);}
.mb7_c01301{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m56_c01301{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m128_c01301{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);}
.m1e_c01301{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m143_c01301{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m69_c01301{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);}
.m75_c01301{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);}
.m168_c01301{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);}
.m10d_c01301{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.me5_c01301{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);}
.m26_c01301{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);}
.m12a_c01301{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);}
.m167_c01301{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m117_c01301{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.m5e_c01301{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);}
.m114_c01301{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.m24_c01301{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.m31_c01301{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);}
.mfb_c01301{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.m146_c01301{transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217750,0.000000,0.000000,0.250000,0,0);}
.m64_c01301{transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);}
.m10f_c01301{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m7c_c01301{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);}
.m119_c01301{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.m63_c01301{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.mcb_c01301{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.mb3_c01301{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.mb8_c01301{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m136_c01301{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m14b_c01301{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);}
.m61_c01301{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);}
.mb9_c01301{transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);}
.m49_c01301{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);}
.m110_c01301{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m40_c01301{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);}
.m21_c01301{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);}
.mb5_c01301{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);}
.m12f_c01301{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m155_c01301{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);}
.m15e_c01301{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);}
.m154_c01301{transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);}
.m7d_c01301{transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);}
.mae_c01301{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);}
.m3b_c01301{transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);}
.m16a_c01301{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.m135_c01301{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);}
.m109_c01301{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.mcd_c01301{transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227650,0.000000,0.000000,0.250000,0,0);}
.m4b_c01301{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);}
.m19_c01301{transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);}
.m157_c01301{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);}
.m169_c01301{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);}
.mce_c01301{transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);}
.ma8_c01301{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.m91_c01301{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);}
.m140_c01301{transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);}
.md1_c01301{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_c01301{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);}
.m9f_c01301{transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);}
.m9d_c01301{transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);}
.m79_c01301{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);}
.mb0_c01301{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);}
.m121_c01301{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.ma3_c01301{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);}
.m10e_c01301{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);}
.md4_c01301{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);}
.m150_c01301{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.mbc_c01301{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);}
.m8c_c01301{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);}
.m5f_c01301{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m14e_c01301{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.m72_c01301{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m14f_c01301{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);}
.mda_c01301{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);}
.mec_c01301{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m148_c01301{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);}
.m177_c01301{transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);}
.me8_c01301{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m47_c01301{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);}
.m80_c01301{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.mc9_c01301{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);}
.m7f_c01301{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);}
.m76_c01301{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);}
.m14a_c01301{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);}
.m6e_c01301{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.mfd_c01301{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.me3_c01301{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.m156_c01301{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);}
.ma9_c01301{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);}
.md2_c01301{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m37_c01301{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);}
.m28_c01301{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m77_c01301{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);}
.m33_c01301{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);}
.m5_c01301{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);}
.m8b_c01301{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);}
.m1f_c01301{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m45_c01301{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c01301{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m17_c01301{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);}
.m9_c01301{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m18_c01301{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);}
.m8_c01301{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);}
.m10_c01301{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m39_c01301{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);}
.m2_c01301{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7_c01301{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m14_c01301{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);}
.m4a_c01301{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mef_c01301{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);}
.m15_c01301{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);}
.m13_c01301{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c01301{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01301{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);}
.m48_c01301{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01301{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m12_c01301{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);}
.m50_c01301{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m70_c01301{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1_c01301{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c01301{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01301{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01301{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m84_c01301{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01301{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01301{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);}
.m67_c01301{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m16_c01301{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01301{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m66_c01301{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);}
.md9_c01301{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);}
.mbb_c01301{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01301{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m78_c01301{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);}
.m13d_c01301{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m60_c01301{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m85_c01301{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7b_c01301{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m57_c01301{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01301{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);}
.m20_c01301{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);}
.m2a_c01301{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m17b_c01301{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.maf_c01301{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);}
.mc8_c01301{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m23_c01301{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.me_c01301{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01301{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m176_c01301{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m8d_c01301{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);}
.mc5_c01301{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m90_c01301{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);}
.m142_c01301{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m100_c01301{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m42_c01301{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m10b_c01301{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.md_c01301{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01301{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);}
.m68_c01301{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01301{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m73_c01301{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01301{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m88_c01301{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01301{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m89_c01301{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.ma7_c01301{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);}
.m51_c01301{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.ma1_c01301{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m93_c01301{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);}
.m41_c01301{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m166_c01301{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m6_c01301{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m132_c01301{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mc0_c01301{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m27_c01301{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m159_c01301{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.mbe_c01301{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);}
.m0_c01301{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m3_c01301{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m171_c01301{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m163_c01301{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m46_c01301{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m11e_c01301{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m87_c01301{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m151_c01301{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m4_c01301{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mf6_c01301{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.m160_c01301{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01301{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mf4_c01301{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.mf5_c01301{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m95_c01301{transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);}
.mf7_c01301{transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.947500,0.000000,0.000000,0.250000,0,0);}
.m17c_c01301{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m158_c01301{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m54_c01301{transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.042500,0.000000,0.000000,0.250000,0,0);}
.mee_c01301{transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);}
.m9c_c01301{transform:matrix(1.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.150000,0.000000,0.000000,0.250000,0,0);}
.m86_c01301{transform:matrix(1.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.187500,0.000000,0.000000,0.250000,0,0);}
.m15a_c01301{transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);}
.m52_c01301{transform:matrix(1.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.282500,0.000000,0.000000,0.250000,0,0);}
.med_c01301{transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);}
.mca_c01301{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.m161_c01301{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.mba_c01301{transform:matrix(1.847500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.847500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.847500,0.000000,0.000000,0.250000,0,0);}
.m11f_c01301{transform:matrix(1.927500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.927500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.927500,0.000000,0.000000,0.250000,0,0);}
.m115_c01301{transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);}
.m170_c01301{transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.082500,0.000000,0.000000,0.250000,0,0);}
.m53_c01301{transform:matrix(3.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.030000,0.000000,0.000000,0.250000,0,0);}
.mbd_c01301{transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);}
.m96_c01301{transform:matrix(3.907500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.907500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.907500,0.000000,0.000000,0.250000,0,0);}
.m92_c01301{transform:matrix(6.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.192500,0.000000,0.000000,0.250000,0,0);}
.v3_c01301{vertical-align:-20.700000px;}
.v4_c01301{vertical-align:-10.380000px;}
.v1_c01301{vertical-align:-6.900000px;}
.v5_c01301{vertical-align:-3.480000px;}
.v0_c01301{vertical-align:0.000000px;}
.v2_c01301{vertical-align:3.480000px;}
.ls7_c01301{letter-spacing:0.000000px;}
.ls6_c01301{letter-spacing:25.078740px;}
.ls3_c01301{letter-spacing:34.190700px;}
.ls1_c01301{letter-spacing:36.670800px;}
.ls4_c01301{letter-spacing:43.839480px;}
.ls5_c01301{letter-spacing:72.143760px;}
.ls0_c01301{letter-spacing:156.231480px;}
.ls2_c01301{letter-spacing:238.002000px;}
.sc__c01301{text-shadow:none;}
.sc0_c01301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01301{-webkit-text-stroke:0px transparent;}
.sc0_c01301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01301{word-spacing:-17.411760px;}
.ws0_c01301{word-spacing:-17.266260px;}
.ws2_c01301{word-spacing:0.000000px;}
.fc0_c01301{color:transparent;}
.fs3_c01301{font-size:3.456000px;}
.fs14_c01301{font-size:6.000000px;}
.fs1_c01301{font-size:6.900000px;}
.fs6_c01301{font-size:10.380000px;}
.fs17_c01301{font-size:13.800000px;}
.fs0_c01301{font-size:17.280000px;}
.fs13_c01301{font-size:20.760000px;}
.fs5_c01301{font-size:24.180000px;}
.fs18_c01301{font-size:27.660000px;}
.fsf_c01301{font-size:31.080000px;}
.fs2_c01301{font-size:34.560000px;}
.fsd_c01301{font-size:38.040000px;}
.fs4_c01301{font-size:41.460000px;}
.fs19_c01301{font-size:44.940000px;}
.fs16_c01301{font-size:48.360000px;}
.fsc_c01301{font-size:51.840000px;}
.fse_c01301{font-size:55.320000px;}
.fs7_c01301{font-size:58.740000px;}
.fs8_c01301{font-size:62.220000px;}
.fs9_c01301{font-size:65.640000px;}
.fs10_c01301{font-size:69.120000px;}
.fs12_c01301{font-size:72.600000px;}
.fsa_c01301{font-size:76.020000px;}
.fs11_c01301{font-size:79.500000px;}
.fs15_c01301{font-size:82.920000px;}
.fsb_c01301{font-size:86.400000px;}
.fs1e_c01301{font-size:89.880000px;}
.fs1a_c01301{font-size:93.300000px;}
.fs1b_c01301{font-size:100.200000px;}
.fs1d_c01301{font-size:103.680000px;}
.fs1c_c01301{font-size:107.160000px;}
.y0_c01301{bottom:0.000000px;}
.y1f6_c01301{bottom:171.930000px;}
.y1f5_c01301{bottom:172.800000px;}
.y1f4_c01301{bottom:174.525000px;}
.y1f3_c01301{bottom:181.440000px;}
.y1f2_c01301{bottom:188.355000px;}
.y1f1_c01301{bottom:190.950000px;}
.y1f0_c01301{bottom:191.805000px;}
.y1ef_c01301{bottom:193.530000px;}
.y1ee_c01301{bottom:196.125000px;}
.y1ed_c01301{bottom:196.995000px;}
.y1ec_c01301{bottom:202.170000px;}
.y1ea_c01301{bottom:215.130000px;}
.y1eb_c01301{bottom:216.000000px;}
.y1e8_c01301{bottom:219.450000px;}
.y1e7_c01301{bottom:220.320000px;}
.y1e9_c01301{bottom:222.045000px;}
.y1e0_c01301{bottom:225.510000px;}
.y1e6_c01301{bottom:226.365000px;}
.y1e4_c01301{bottom:227.235000px;}
.y1e5_c01301{bottom:228.960000px;}
.y1df_c01301{bottom:231.555000px;}
.y1e3_c01301{bottom:233.280000px;}
.y1e2_c01301{bottom:234.150000px;}
.y1e1_c01301{bottom:235.005000px;}
.y1de_c01301{bottom:235.875000px;}
.y1dd_c01301{bottom:236.730000px;}
.y1dc_c01301{bottom:237.600000px;}
.y1db_c01301{bottom:239.325000px;}
.y1da_c01301{bottom:241.050000px;}
.y1d5_c01301{bottom:243.645000px;}
.y1d9_c01301{bottom:244.515000px;}
.y1d6_c01301{bottom:246.240000px;}
.y1d8_c01301{bottom:247.110000px;}
.y1d7_c01301{bottom:247.965000px;}
.y1d4_c01301{bottom:248.835000px;}
.y1d1_c01301{bottom:254.010000px;}
.y1d2_c01301{bottom:254.880000px;}
.y1d3_c01301{bottom:255.750000px;}
.y1d0_c01301{bottom:259.200000px;}
.y1cf_c01301{bottom:260.925000px;}
.y1cb_c01301{bottom:261.795000px;}
.y1ce_c01301{bottom:264.390000px;}
.y1cc_c01301{bottom:267.840000px;}
.y1cd_c01301{bottom:270.435000px;}
.y1c7_c01301{bottom:271.290000px;}
.y1ca_c01301{bottom:272.160000px;}
.y1c9_c01301{bottom:273.030000px;}
.y1c6_c01301{bottom:275.610000px;}
.y1c5_c01301{bottom:276.480000px;}
.y1c8_c01301{bottom:278.205000px;}
.y1c4_c01301{bottom:279.075000px;}
.y1c3_c01301{bottom:282.525000px;}
.y1c0_c01301{bottom:285.120000px;}
.y1c1_c01301{bottom:287.715000px;}
.y1c2_c01301{bottom:288.570000px;}
.y1bd_c01301{bottom:291.165000px;}
.y1be_c01301{bottom:292.890000px;}
.y1bf_c01301{bottom:293.760000px;}
.y1bc_c01301{bottom:294.630000px;}
.y1ba_c01301{bottom:297.210000px;}
.y1bb_c01301{bottom:299.805000px;}
.y1b7_c01301{bottom:300.675000px;}
.y1b9_c01301{bottom:303.270000px;}
.y1b8_c01301{bottom:304.125000px;}
.y1b6_c01301{bottom:306.720000px;}
.y1b5_c01301{bottom:318.810000px;}
.y1b4_c01301{bottom:320.550000px;}
.y1b3_c01301{bottom:324.870000px;}
.y1b2_c01301{bottom:330.045000px;}
.y1b1_c01301{bottom:335.235000px;}
.y1b0_c01301{bottom:337.830000px;}
.y1af_c01301{bottom:341.280000px;}
.y1ae_c01301{bottom:342.150000px;}
.y1ad_c01301{bottom:354.240000px;}
.y1ac_c01301{bottom:357.690000px;}
.y1ab_c01301{bottom:358.560000px;}
.y1a9_c01301{bottom:361.155000px;}
.y1aa_c01301{bottom:363.750000px;}
.y1a7_c01301{bottom:376.710000px;}
.y1a6_c01301{bottom:379.290000px;}
.y1a8_c01301{bottom:380.160000px;}
.y1a5_c01301{bottom:381.885000px;}
.y1a4_c01301{bottom:387.075000px;}
.y1a3_c01301{bottom:394.845000px;}
.y1a0_c01301{bottom:399.165000px;}
.y1a1_c01301{bottom:400.035000px;}
.y1a2_c01301{bottom:401.760000px;}
.y19d_c01301{bottom:416.445000px;}
.y19e_c01301{bottom:418.170000px;}
.y199_c01301{bottom:420.765000px;}
.y19c_c01301{bottom:421.635000px;}
.y198_c01301{bottom:423.360000px;}
.y19b_c01301{bottom:424.230000px;}
.y19a_c01301{bottom:425.085000px;}
.y19f_c01301{bottom:426.810000px;}
.y195_c01301{bottom:444.090000px;}
.y193_c01301{bottom:445.830000px;}
.y197_c01301{bottom:446.685000px;}
.y192_c01301{bottom:448.410000px;}
.y196_c01301{bottom:449.280000px;}
.y194_c01301{bottom:453.600000px;}
.y191_c01301{bottom:457.920000px;}
.y18d_c01301{bottom:458.790000px;}
.y18f_c01301{bottom:461.370000px;}
.y18c_c01301{bottom:462.240000px;}
.y190_c01301{bottom:463.110000px;}
.y18e_c01301{bottom:463.965000px;}
.y18b_c01301{bottom:464.835000px;}
.y18a_c01301{bottom:473.475000px;}
.y189_c01301{bottom:481.245000px;}
.y186_c01301{bottom:482.115000px;}
.y185_c01301{bottom:482.970000px;}
.y188_c01301{bottom:483.840000px;}
.y187_c01301{bottom:484.710000px;}
.y183_c01301{bottom:486.435000px;}
.y184_c01301{bottom:488.160000px;}
.y182_c01301{bottom:489.885000px;}
.y17e_c01301{bottom:501.120000px;}
.y17d_c01301{bottom:502.845000px;}
.y17c_c01301{bottom:503.715000px;}
.y180_c01301{bottom:504.570000px;}
.y17f_c01301{bottom:508.035000px;}
.y181_c01301{bottom:517.530000px;}
.y178_c01301{bottom:518.400000px;}
.y17a_c01301{bottom:520.995000px;}
.y17b_c01301{bottom:521.850000px;}
.y176_c01301{bottom:524.445000px;}
.y177_c01301{bottom:527.040000px;}
.y175_c01301{bottom:527.910000px;}
.y174_c01301{bottom:528.765000px;}
.y179_c01301{bottom:536.550000px;}
.y171_c01301{bottom:540.870000px;}
.y173_c01301{bottom:541.725000px;}
.y170_c01301{bottom:543.450000px;}
.y16e_c01301{bottom:544.320000px;}
.y16f_c01301{bottom:545.190000px;}
.y16b_c01301{bottom:548.640000px;}
.y16d_c01301{bottom:549.510000px;}
.y20b_c01301{bottom:551.235000px;}
.y20a_c01301{bottom:553.830000px;}
.y16c_c01301{bottom:557.280000px;}
.y172_c01301{bottom:559.005000px;}
.y169_c01301{bottom:559.875000px;}
.y168_c01301{bottom:560.730000px;}
.y166_c01301{bottom:562.470000px;}
.y165_c01301{bottom:564.195000px;}
.y167_c01301{bottom:565.050000px;}
.y163_c01301{bottom:566.790000px;}
.y164_c01301{bottom:570.240000px;}
.y16a_c01301{bottom:571.965000px;}
.y161_c01301{bottom:572.835000px;}
.y162_c01301{bottom:573.690000px;}
.y160_c01301{bottom:574.560000px;}
.y15e_c01301{bottom:576.285000px;}
.y15b_c01301{bottom:579.750000px;}
.y15f_c01301{bottom:586.650000px;}
.y159_c01301{bottom:587.520000px;}
.y15d_c01301{bottom:589.245000px;}
.y15c_c01301{bottom:590.115000px;}
.y15a_c01301{bottom:591.840000px;}
.y157_c01301{bottom:594.435000px;}
.y158_c01301{bottom:595.290000px;}
.y156_c01301{bottom:603.075000px;}
.y155_c01301{bottom:603.930000px;}
.y154_c01301{bottom:605.670000px;}
.y153_c01301{bottom:608.250000px;}
.y152_c01301{bottom:609.120000px;}
.y150_c01301{bottom:612.570000px;}
.y151_c01301{bottom:613.440000px;}
.y14f_c01301{bottom:616.890000px;}
.y14e_c01301{bottom:617.760000px;}
.y14c_c01301{bottom:622.080000px;}
.y14b_c01301{bottom:623.805000px;}
.y14a_c01301{bottom:624.675000px;}
.y14d_c01301{bottom:625.530000px;}
.y147_c01301{bottom:628.125000px;}
.y148_c01301{bottom:628.995000px;}
.y149_c01301{bottom:632.445000px;}
.y145_c01301{bottom:635.040000px;}
.y146_c01301{bottom:635.910000px;}
.y144_c01301{bottom:641.955000px;}
.y143_c01301{bottom:644.550000px;}
.y142_c01301{bottom:645.405000px;}
.y141_c01301{bottom:648.870000px;}
.y140_c01301{bottom:649.725000px;}
.y13f_c01301{bottom:651.450000px;}
.y13e_c01301{bottom:653.190000px;}
.y13d_c01301{bottom:656.640000px;}
.y13b_c01301{bottom:664.410000px;}
.y13c_c01301{bottom:665.280000px;}
.y138_c01301{bottom:666.150000px;}
.y13a_c01301{bottom:667.005000px;}
.y135_c01301{bottom:668.730000px;}
.y139_c01301{bottom:669.600000px;}
.y134_c01301{bottom:670.470000px;}
.y133_c01301{bottom:672.195000px;}
.y132_c01301{bottom:677.370000px;}
.y131_c01301{bottom:678.240000px;}
.y136_c01301{bottom:679.110000px;}
.y130_c01301{bottom:679.965000px;}
.y12f_c01301{bottom:683.430000px;}
.y137_c01301{bottom:685.155000px;}
.y12d_c01301{bottom:686.010000px;}
.y12e_c01301{bottom:689.475000px;}
.y12b_c01301{bottom:690.330000px;}
.y12a_c01301{bottom:692.070000px;}
.y12c_c01301{bottom:692.925000px;}
.y128_c01301{bottom:693.795000px;}
.y127_c01301{bottom:696.390000px;}
.y129_c01301{bottom:698.115000px;}
.y125_c01301{bottom:699.840000px;}
.y122_c01301{bottom:701.565000px;}
.y11f_c01301{bottom:705.030000px;}
.y11e_c01301{bottom:707.610000px;}
.y120_c01301{bottom:708.480000px;}
.y126_c01301{bottom:711.075000px;}
.y11d_c01301{bottom:711.930000px;}
.y124_c01301{bottom:712.800000px;}
.y123_c01301{bottom:713.670000px;}
.y121_c01301{bottom:717.990000px;}
.y11a_c01301{bottom:722.310000px;}
.y118_c01301{bottom:727.485000px;}
.y116_c01301{bottom:728.355000px;}
.y119_c01301{bottom:729.210000px;}
.y115_c01301{bottom:730.950000px;}
.y117_c01301{bottom:731.805000px;}
.y11c_c01301{bottom:733.530000px;}
.y114_c01301{bottom:736.125000px;}
.y11b_c01301{bottom:737.850000px;}
.y113_c01301{bottom:741.315000px;}
.y112_c01301{bottom:743.910000px;}
.y111_c01301{bottom:744.765000px;}
.y110_c01301{bottom:748.230000px;}
.y10e_c01301{bottom:749.955000px;}
.y10f_c01301{bottom:753.405000px;}
.y10d_c01301{bottom:754.275000px;}
.y10c_c01301{bottom:755.130000px;}
.y10b_c01301{bottom:760.320000px;}
.y10a_c01301{bottom:765.510000px;}
.y107_c01301{bottom:767.235000px;}
.y109_c01301{bottom:768.090000px;}
.y106_c01301{bottom:770.685000px;}
.y105_c01301{bottom:771.555000px;}
.y108_c01301{bottom:774.150000px;}
.y104_c01301{bottom:783.645000px;}
.y103_c01301{bottom:785.370000px;}
.y100_c01301{bottom:788.835000px;}
.y102_c01301{bottom:789.690000px;}
.yff_c01301{bottom:791.430000px;}
.y101_c01301{bottom:793.155000px;}
.yfe_c01301{bottom:797.475000px;}
.yfd_c01301{bottom:798.330000px;}
.yfc_c01301{bottom:806.115000px;}
.yfb_c01301{bottom:807.840000px;}
.yfa_c01301{bottom:808.710000px;}
.yf9_c01301{bottom:809.565000px;}
.yf8_c01301{bottom:814.755000px;}
.yf4_c01301{bottom:825.120000px;}
.yf7_c01301{bottom:825.990000px;}
.yf6_c01301{bottom:826.845000px;}
.yf5_c01301{bottom:827.715000px;}
.yf2_c01301{bottom:828.570000px;}
.yf0_c01301{bottom:830.310000px;}
.yf1_c01301{bottom:832.035000px;}
.yf3_c01301{bottom:832.890000px;}
.yef_c01301{bottom:834.630000px;}
.yee_c01301{bottom:838.080000px;}
.yed_c01301{bottom:840.675000px;}
.yeb_c01301{bottom:843.270000px;}
.yec_c01301{bottom:846.720000px;}
.yea_c01301{bottom:849.315000px;}
.ye7_c01301{bottom:850.170000px;}
.ye9_c01301{bottom:851.040000px;}
.ye4_c01301{bottom:851.910000px;}
.ye8_c01301{bottom:852.765000px;}
.ye3_c01301{bottom:859.680000px;}
.ye2_c01301{bottom:860.550000px;}
.ye5_c01301{bottom:861.405000px;}
.ye6_c01301{bottom:864.000000px;}
.ye1_c01301{bottom:864.870000px;}
.ydf_c01301{bottom:867.450000px;}
.ydd_c01301{bottom:870.045000px;}
.ye0_c01301{bottom:870.915000px;}
.yde_c01301{bottom:872.640000px;}
.yda_c01301{bottom:874.365000px;}
.ydc_c01301{bottom:875.235000px;}
.ydb_c01301{bottom:877.830000px;}
.yd8_c01301{bottom:886.470000px;}
.yd7_c01301{bottom:887.325000px;}
.yd9_c01301{bottom:889.050000px;}
.yd6_c01301{bottom:889.920000px;}
.yd5_c01301{bottom:891.645000px;}
.yd3_c01301{bottom:892.515000px;}
.yd4_c01301{bottom:895.110000px;}
.yd2_c01301{bottom:897.690000px;}
.yd1_c01301{bottom:903.750000px;}
.yd0_c01301{bottom:906.330000px;}
.ycf_c01301{bottom:907.200000px;}
.ycb_c01301{bottom:908.925000px;}
.yce_c01301{bottom:909.795000px;}
.yc8_c01301{bottom:911.520000px;}
.yc7_c01301{bottom:912.390000px;}
.ycd_c01301{bottom:913.245000px;}
.ycc_c01301{bottom:914.115000px;}
.yca_c01301{bottom:914.970000px;}
.yc9_c01301{bottom:915.840000px;}
.yc5_c01301{bottom:916.710000px;}
.yc6_c01301{bottom:917.565000px;}
.yc4_c01301{bottom:920.160000px;}
.yc2_c01301{bottom:925.350000px;}
.yc1_c01301{bottom:926.205000px;}
.ybe_c01301{bottom:928.800000px;}
.ybc_c01301{bottom:930.525000px;}
.y205_c01301{bottom:932.250000px;}
.yc0_c01301{bottom:933.120000px;}
.ybf_c01301{bottom:933.990000px;}
.y204_c01301{bottom:934.845000px;}
.ybd_c01301{bottom:935.715000px;}
.yba_c01301{bottom:937.440000px;}
.ybb_c01301{bottom:938.310000px;}
.yc3_c01301{bottom:940.890000px;}
.yb4_c01301{bottom:944.355000px;}
.yb8_c01301{bottom:946.080000px;}
.yb9_c01301{bottom:948.675000px;}
.yb3_c01301{bottom:949.530000px;}
.yb7_c01301{bottom:950.400000px;}
.yb0_c01301{bottom:951.270000px;}
.yb6_c01301{bottom:952.125000px;}
.yb5_c01301{bottom:952.995000px;}
.yb1_c01301{bottom:953.850000px;}
.yac_c01301{bottom:954.720000px;}
.yae_c01301{bottom:956.445000px;}
.yaf_c01301{bottom:957.315000px;}
.yad_c01301{bottom:960.765000px;}
.yab_c01301{bottom:962.490000px;}
.yb2_c01301{bottom:963.360000px;}
.yaa_c01301{bottom:964.230000px;}
.ya9_c01301{bottom:965.085000px;}
.ya7_c01301{bottom:969.405000px;}
.ya8_c01301{bottom:971.130000px;}
.ya5_c01301{bottom:972.000000px;}
.ya4_c01301{bottom:973.725000px;}
.ya3_c01301{bottom:974.595000px;}
.ya6_c01301{bottom:978.045000px;}
.y209_c01301{bottom:983.235000px;}
.ya1_c01301{bottom:984.960000px;}
.ya0_c01301{bottom:988.410000px;}
.y9f_c01301{bottom:990.150000px;}
.y9d_c01301{bottom:991.875000px;}
.ya2_c01301{bottom:994.470000px;}
.y9e_c01301{bottom:996.195000px;}
.y9c_c01301{bottom:999.645000px;}
.y9b_c01301{bottom:1000.515000px;}
.y98_c01301{bottom:1002.240000px;}
.y96_c01301{bottom:1005.690000px;}
.y99_c01301{bottom:1008.285000px;}
.y91_c01301{bottom:1009.155000px;}
.y97_c01301{bottom:1010.010000px;}
.y94_c01301{bottom:1011.750000px;}
.y95_c01301{bottom:1012.605000px;}
.y93_c01301{bottom:1013.475000px;}
.y92_c01301{bottom:1014.330000px;}
.y90_c01301{bottom:1015.200000px;}
.y9a_c01301{bottom:1017.795000px;}
.y207_c01301{bottom:1022.115000px;}
.y208_c01301{bottom:1023.840000px;}
.y8e_c01301{bottom:1026.435000px;}
.y8a_c01301{bottom:1027.290000px;}
.y8c_c01301{bottom:1028.160000px;}
.y8b_c01301{bottom:1029.030000px;}
.y8f_c01301{bottom:1029.885000px;}
.y87_c01301{bottom:1030.755000px;}
.y8d_c01301{bottom:1031.610000px;}
.y86_c01301{bottom:1033.350000px;}
.y84_c01301{bottom:1034.205000px;}
.y88_c01301{bottom:1035.075000px;}
.y89_c01301{bottom:1036.800000px;}
.y85_c01301{bottom:1037.670000px;}
.y82_c01301{bottom:1048.890000px;}
.y83_c01301{bottom:1050.630000px;}
.y81_c01301{bottom:1051.485000px;}
.y80_c01301{bottom:1053.210000px;}
.y7f_c01301{bottom:1054.950000px;}
.y7d_c01301{bottom:1063.590000px;}
.y79_c01301{bottom:1070.490000px;}
.y7c_c01301{bottom:1071.360000px;}
.y7b_c01301{bottom:1072.230000px;}
.y78_c01301{bottom:1073.955000px;}
.y7e_c01301{bottom:1076.550000px;}
.y76_c01301{bottom:1077.405000px;}
.y77_c01301{bottom:1079.130000px;}
.y7a_c01301{bottom:1084.320000px;}
.y74_c01301{bottom:1086.045000px;}
.y73_c01301{bottom:1087.770000px;}
.y75_c01301{bottom:1089.510000px;}
.y6f_c01301{bottom:1092.090000px;}
.y72_c01301{bottom:1092.960000px;}
.y70_c01301{bottom:1093.830000px;}
.y71_c01301{bottom:1094.685000px;}
.y6e_c01301{bottom:1099.875000px;}
.y6c_c01301{bottom:1106.790000px;}
.y6b_c01301{bottom:1110.240000px;}
.y69_c01301{bottom:1111.965000px;}
.y67_c01301{bottom:1112.835000px;}
.y6d_c01301{bottom:1113.690000px;}
.y6a_c01301{bottom:1114.560000px;}
.y68_c01301{bottom:1118.010000px;}
.y66_c01301{bottom:1119.750000px;}
.y65_c01301{bottom:1125.795000px;}
.y64_c01301{bottom:1126.650000px;}
.y63_c01301{bottom:1127.520000px;}
.y62_c01301{bottom:1128.390000px;}
.y61_c01301{bottom:1129.245000px;}
.y60_c01301{bottom:1130.115000px;}
.y5f_c01301{bottom:1130.970000px;}
.y5e_c01301{bottom:1132.710000px;}
.y5d_c01301{bottom:1134.435000px;}
.y5c_c01301{bottom:1136.160000px;}
.y5a_c01301{bottom:1145.670000px;}
.y59_c01301{bottom:1148.250000px;}
.y58_c01301{bottom:1149.990000px;}
.y5b_c01301{bottom:1152.570000px;}
.y56_c01301{bottom:1154.310000px;}
.y57_c01301{bottom:1155.165000px;}
.y54_c01301{bottom:1156.035000px;}
.y52_c01301{bottom:1157.760000px;}
.y55_c01301{bottom:1158.630000px;}
.y53_c01301{bottom:1159.485000px;}
.y50_c01301{bottom:1161.210000px;}
.y51_c01301{bottom:1162.080000px;}
.y4e_c01301{bottom:1162.950000px;}
.y4f_c01301{bottom:1163.805000px;}
.y4d_c01301{bottom:1164.675000px;}
.y4b_c01301{bottom:1167.270000px;}
.y4c_c01301{bottom:1168.125000px;}
.y49_c01301{bottom:1168.995000px;}
.y48_c01301{bottom:1170.720000px;}
.y4a_c01301{bottom:1173.315000px;}
.y45_c01301{bottom:1174.170000px;}
.y46_c01301{bottom:1175.910000px;}
.y47_c01301{bottom:1177.635000px;}
.y7_c01301{bottom:1180.230000px;}
.y44_c01301{bottom:1181.085000px;}
.y206_c01301{bottom:1183.680000px;}
.y42_c01301{bottom:1186.275000px;}
.y41_c01301{bottom:1188.000000px;}
.y43_c01301{bottom:1190.595000px;}
.y3f_c01301{bottom:1192.320000px;}
.y3d_c01301{bottom:1193.190000px;}
.y4_c01301{bottom:1194.915000px;}
.y40_c01301{bottom:1195.770000px;}
.y3e_c01301{bottom:1196.640000px;}
.y203_c01301{bottom:1197.510000px;}
.y3_c01301{bottom:1199.235000px;}
.y5_c01301{bottom:1200.090000px;}
.y39_c01301{bottom:1208.730000px;}
.y38_c01301{bottom:1209.600000px;}
.y3b_c01301{bottom:1210.470000px;}
.y3a_c01301{bottom:1211.325000px;}
.y37_c01301{bottom:1212.195000px;}
.y36_c01301{bottom:1213.920000px;}
.y35_c01301{bottom:1215.645000px;}
.y3c_c01301{bottom:1220.835000px;}
.y34_c01301{bottom:1221.690000px;}
.y33_c01301{bottom:1227.750000px;}
.y32_c01301{bottom:1228.605000px;}
.y30_c01301{bottom:1230.330000px;}
.y31_c01301{bottom:1231.200000px;}
.y2e_c01301{bottom:1232.925000px;}
.y2d_c01301{bottom:1233.795000px;}
.y2b_c01301{bottom:1234.650000px;}
.y2f_c01301{bottom:1237.245000px;}
.y2c_c01301{bottom:1240.710000px;}
.y6_c01301{bottom:1244.160000px;}
.y28_c01301{bottom:1249.350000px;}
.y2a_c01301{bottom:1251.075000px;}
.y26_c01301{bottom:1251.930000px;}
.y29_c01301{bottom:1253.670000px;}
.y27_c01301{bottom:1254.525000px;}
.y23_c01301{bottom:1255.395000px;}
.y24_c01301{bottom:1256.250000px;}
.y25_c01301{bottom:1260.570000px;}
.y22_c01301{bottom:1267.485000px;}
.y1f_c01301{bottom:1269.210000px;}
.y21_c01301{bottom:1271.805000px;}
.y1c_c01301{bottom:1272.675000px;}
.y20_c01301{bottom:1273.530000px;}
.y1e_c01301{bottom:1276.125000px;}
.y1d_c01301{bottom:1277.850000px;}
.y1b_c01301{bottom:1281.315000px;}
.y19_c01301{bottom:1287.360000px;}
.y18_c01301{bottom:1289.085000px;}
.y1a_c01301{bottom:1291.680000px;}
.y17_c01301{bottom:1295.130000px;}
.y16_c01301{bottom:1296.000000px;}
.y15_c01301{bottom:1297.725000px;}
.y14_c01301{bottom:1298.595000px;}
.y13_c01301{bottom:1299.450000px;}
.y12_c01301{bottom:1300.320000px;}
.y11_c01301{bottom:1301.190000px;}
.y10_c01301{bottom:1305.510000px;}
.yf_c01301{bottom:1313.280000px;}
.yb_c01301{bottom:1315.005000px;}
.ye_c01301{bottom:1315.875000px;}
.y9_c01301{bottom:1316.730000px;}
.yc_c01301{bottom:1317.600000px;}
.yd_c01301{bottom:1318.470000px;}
.y8_c01301{bottom:1320.195000px;}
.ya_c01301{bottom:1321.050000px;}
.y1fd_c01301{bottom:1337.475000px;}
.y200_c01301{bottom:1338.330000px;}
.y1fa_c01301{bottom:1343.520000px;}
.y1ff_c01301{bottom:1344.390000px;}
.y1fe_c01301{bottom:1345.245000px;}
.y1fb_c01301{bottom:1346.115000px;}
.y1fc_c01301{bottom:1346.970000px;}
.y1f8_c01301{bottom:1347.840000px;}
.y1f7_c01301{bottom:1349.565000px;}
.y201_c01301{bottom:1356.480000px;}
.y1f9_c01301{bottom:1357.350000px;}
.y202_c01301{bottom:1359.930000px;}
.y2_c01301{bottom:1389.315000px;}
.y1_c01301{bottom:1401.405000px;}
.h5_c01301{height:3.110063px;}
.h19_c01301{height:5.399414px;}
.h3_c01301{height:6.209326px;}
.h8_c01301{height:9.340986px;}
.h18_c01301{height:12.418652px;}
.h2_c01301{height:15.550313px;}
.h1b_c01301{height:15.898652px;}
.h15_c01301{height:18.681973px;}
.h7_c01301{height:21.759639px;}
.h1a_c01301{height:24.891299px;}
.h11_c01301{height:27.968965px;}
.h4_c01301{height:31.100625px;}
.hf_c01301{height:34.232285px;}
.h6_c01301{height:37.309951px;}
.h1c_c01301{height:40.441611px;}
.h17_c01301{height:43.519277px;}
.he_c01301{height:46.650937px;}
.h10_c01301{height:49.782598px;}
.h9_c01301{height:52.860264px;}
.ha_c01301{height:55.991924px;}
.hb_c01301{height:59.069590px;}
.h12_c01301{height:62.201250px;}
.h14_c01301{height:65.332910px;}
.hc_c01301{height:68.410576px;}
.h13_c01301{height:71.542236px;}
.h16_c01301{height:74.619902px;}
.hd_c01301{height:77.751563px;}
.h21_c01301{height:80.883223px;}
.h1d_c01301{height:83.960889px;}
.h1e_c01301{height:90.170215px;}
.h20_c01301{height:93.301875px;}
.h1f_c01301{height:96.433535px;}
.h0_c01301{height:1509.405000px;}
.h1_c01301{height:1509.750000px;}
.w0_c01301{width:1088.640000px;}
.w1_c01301{width:1089.000000px;}
.x0_c01301{left:0.000000px;}
.x107_c01301{left:21.600000px;}
.x2_c01301{left:25.050000px;}
.x3_c01301{left:32.835000px;}
.x108_c01301{left:40.605000px;}
.x10e_c01301{left:56.160000px;}
.x4_c01301{left:62.205000px;}
.x10f_c01301{left:69.990000px;}
.x10c_c01301{left:170.205000px;}
.x10d_c01301{left:176.250000px;}
.x6_c01301{left:189.210000px;}
.xbc_c01301{left:190.950000px;}
.x5_c01301{left:194.400000px;}
.xc8_c01301{left:222.915000px;}
.x77_c01301{left:226.365000px;}
.x7e_c01301{left:228.090000px;}
.x7_c01301{left:229.830000px;}
.xac_c01301{left:232.410000px;}
.x78_c01301{left:235.005000px;}
.x3e_c01301{left:237.600000px;}
.x8_c01301{left:239.325000px;}
.xe1_c01301{left:241.050000px;}
.xcf_c01301{left:243.645000px;}
.xd2_c01301{left:246.240000px;}
.xbd_c01301{left:247.965000px;}
.xa6_c01301{left:251.430000px;}
.x97_c01301{left:253.155000px;}
.x68_c01301{left:256.605000px;}
.xd3_c01301{left:259.200000px;}
.x1e_c01301{left:263.520000px;}
.xa9_c01301{left:266.115000px;}
.xb6_c01301{left:267.840000px;}
.xa0_c01301{left:269.565000px;}
.x9_c01301{left:273.885000px;}
.xdb_c01301{left:276.480000px;}
.xc3_c01301{left:279.075000px;}
.x9b_c01301{left:285.990000px;}
.x56_c01301{left:289.440000px;}
.x4f_c01301{left:291.165000px;}
.xa1_c01301{left:293.760000px;}
.x84_c01301{left:295.485000px;}
.x7f_c01301{left:297.210000px;}
.x5e_c01301{left:300.675000px;}
.xbe_c01301{left:302.400000px;}
.x1f_c01301{left:304.125000px;}
.xc9_c01301{left:305.850000px;}
.x27_c01301{left:309.315000px;}
.x69_c01301{left:311.910000px;}
.xa_c01301{left:316.230000px;}
.xd4_c01301{left:317.955000px;}
.x50_c01301{left:320.550000px;}
.x5f_c01301{left:324.870000px;}
.xad_c01301{left:327.450000px;}
.x9c_c01301{left:329.190000px;}
.xd7_c01301{left:331.770000px;}
.x89_c01301{left:335.235000px;}
.x31_c01301{left:337.830000px;}
.x13_c01301{left:339.555000px;}
.x46_c01301{left:342.150000px;}
.x57_c01301{left:347.325000px;}
.xb3_c01301{left:349.050000px;}
.x32_c01301{left:357.690000px;}
.x71_c01301{left:360.285000px;}
.x80_c01301{left:362.880000px;}
.xde_c01301{left:367.200000px;}
.xb_c01301{left:371.520000px;}
.xe2_c01301{left:376.710000px;}
.x51_c01301{left:378.435000px;}
.x28_c01301{left:382.755000px;}
.xb7_c01301{left:384.480000px;}
.x20_c01301{left:386.205000px;}
.xbf_c01301{left:393.120000px;}
.x60_c01301{left:394.845000px;}
.x91_c01301{left:397.440000px;}
.x72_c01301{left:400.035000px;}
.xa2_c01301{left:401.760000px;}
.x58_c01301{left:406.080000px;}
.x98_c01301{left:409.530000px;}
.xd8_c01301{left:411.270000px;}
.xdf_c01301{left:414.720000px;}
.x61_c01301{left:416.445000px;}
.x14_c01301{left:418.170000px;}
.xc_c01301{left:419.910000px;}
.x33_c01301{left:421.635000px;}
.xae_c01301{left:425.085000px;}
.x99_c01301{left:429.405000px;}
.x62_c01301{left:435.450000px;}
.x3f_c01301{left:438.045000px;}
.xca_c01301{left:441.510000px;}
.xa7_c01301{left:443.235000px;}
.x59_c01301{left:446.685000px;}
.x8a_c01301{left:449.280000px;}
.xaf_c01301{left:451.005000px;}
.xaa_c01301{left:453.600000px;}
.x52_c01301{left:457.920000px;}
.xa3_c01301{left:462.240000px;}
.x79_c01301{left:464.835000px;}
.xb4_c01301{left:466.560000px;}
.x81_c01301{left:469.155000px;}
.x73_c01301{left:470.880000px;}
.x6a_c01301{left:472.605000px;}
.xdc_c01301{left:475.200000px;}
.x9d_c01301{left:478.650000px;}
.x40_c01301{left:480.390000px;}
.x29_c01301{left:482.970000px;}
.x6b_c01301{left:484.710000px;}
.x15_c01301{left:488.160000px;}
.xa8_c01301{left:490.755000px;}
.xc5_c01301{left:492.480000px;}
.x16_c01301{left:495.075000px;}
.x53_c01301{left:497.670000px;}
.x34_c01301{left:501.120000px;}
.x21_c01301{left:505.440000px;}
.xb0_c01301{left:508.035000px;}
.x8b_c01301{left:509.760000px;}
.x63_c01301{left:513.210000px;}
.x47_c01301{left:514.950000px;}
.xd5_c01301{left:516.675000px;}
.xe0_c01301{left:520.995000px;}
.x92_c01301{left:522.720000px;}
.xd6_c01301{left:530.490000px;}
.x8c_c01301{left:533.955000px;}
.x17_c01301{left:535.680000px;}
.x7a_c01301{left:544.320000px;}
.xd_c01301{left:546.045000px;}
.x2a_c01301{left:548.640000px;}
.xe3_c01301{left:552.959400px;}
.x100_c01301{left:554.685000px;}
.x35_c01301{left:556.410000px;}
.x41_c01301{left:558.150000px;}
.x48_c01301{left:561.600000px;}
.xc6_c01301{left:563.325000px;}
.x74_c01301{left:565.050000px;}
.xe_c01301{left:566.790000px;}
.x36_c01301{left:571.110000px;}
.xed_c01301{left:574.560000px;}
.xd0_c01301{left:577.155000px;}
.x101_c01301{left:578.880000px;}
.x37_c01301{left:581.475000px;}
.x18_c01301{left:584.070000px;}
.x64_c01301{left:585.795000px;}
.xcd_c01301{left:590.115000px;}
.xf9_c01301{left:591.840000px;}
.x104_c01301{left:593.565000px;}
.x75_c01301{left:595.290000px;}
.xf2_c01301{left:597.030000px;}
.xf_c01301{left:598.755000px;}
.xb8_c01301{left:601.350000px;}
.xf4_c01301{left:604.800000px;}
.x93_c01301{left:606.525000px;}
.x5a_c01301{left:609.990000px;}
.x102_c01301{left:612.570000px;}
.x49_c01301{left:614.310000px;}
.xe9_c01301{left:616.035000px;}
.x85_c01301{left:618.630000px;}
.x8d_c01301{left:620.355000px;}
.x42_c01301{left:622.080000px;}
.x19_c01301{left:623.805000px;}
.xc0_c01301{left:625.530000px;}
.xa4_c01301{left:627.270000px;}
.xf5_c01301{left:629.850000px;}
.xb5_c01301{left:631.590000px;}
.xf0_c01301{left:633.315000px;}
.xab_c01301{left:635.040000px;}
.x65_c01301{left:638.490000px;}
.x2b_c01301{left:642.810000px;}
.xfe_c01301{left:644.550000px;}
.x86_c01301{left:647.130000px;}
.x103_c01301{left:648.870000px;}
.x4a_c01301{left:651.450000px;}
.xfc_c01301{left:653.190000px;}
.x22_c01301{left:654.915000px;}
.x38_c01301{left:656.640000px;}
.xf8_c01301{left:658.365000px;}
.x10_c01301{left:660.090000px;}
.x7b_c01301{left:662.685000px;}
.x8e_c01301{left:665.280000px;}
.xb9_c01301{left:667.875000px;}
.x2c_c01301{left:670.470000px;}
.xce_c01301{left:672.195000px;}
.xf6_c01301{left:673.920000px;}
.x4b_c01301{left:676.515000px;}
.x54_c01301{left:679.110000px;}
.x23_c01301{left:680.835000px;}
.x1a_c01301{left:684.285000px;}
.x6c_c01301{left:686.010000px;}
.xa5_c01301{left:687.750000px;}
.xc1_c01301{left:689.475000px;}
.x2d_c01301{left:692.925000px;}
.xfd_c01301{left:694.650000px;}
.xc4_c01301{left:696.390000px;}
.x5b_c01301{left:699.840000px;}
.xef_c01301{left:702.435000px;}
.x11_c01301{left:704.160000px;}
.xc7_c01301{left:705.885000px;}
.xea_c01301{left:708.480000px;}
.x9e_c01301{left:710.205000px;}
.x8f_c01301{left:713.670000px;}
.x105_c01301{left:715.395000px;}
.xf7_c01301{left:717.120000px;}
.xe4_c01301{left:718.845000px;}
.xba_c01301{left:720.570000px;}
.x1b_c01301{left:724.890000px;}
.xff_c01301{left:727.485000px;}
.x7c_c01301{left:732.675000px;}
.x87_c01301{left:734.400000px;}
.xdd_c01301{left:736.125000px;}
.x43_c01301{left:737.850000px;}
.xc2_c01301{left:739.590000px;}
.x24_c01301{left:743.040000px;}
.x2e_c01301{left:745.635000px;}
.xe5_c01301{left:747.360000px;}
.x39_c01301{left:749.085000px;}
.x88_c01301{left:750.810000px;}
.xfa_c01301{left:752.550000px;}
.xe6_c01301{left:755.130000px;}
.x66_c01301{left:756.870000px;}
.x94_c01301{left:758.595000px;}
.x25_c01301{left:760.320000px;}
.x4c_c01301{left:763.770000px;}
.x3a_c01301{left:768.090000px;}
.xbb_c01301{left:769.830000px;}
.xcb_c01301{left:771.555000px;}
.x6d_c01301{left:773.280000px;}
.xb1_c01301{left:775.875000px;}
.x1c_c01301{left:781.050000px;}
.x2f_c01301{left:784.515000px;}
.x12_c01301{left:786.240000px;}
.x55_c01301{left:789.690000px;}
.xd1_c01301{left:791.430000px;}
.x95_c01301{left:793.155000px;}
.xfb_c01301{left:795.750000px;}
.x3b_c01301{left:797.475000px;}
.x1_c01301{left:800.070000px;}
.x9f_c01301{left:802.650000px;}
.xe7_c01301{left:805.245000px;}
.x5c_c01301{left:807.840000px;}
.x30_c01301{left:809.565000px;}
.x76_c01301{left:811.290000px;}
.x3c_c01301{left:816.480000px;}
.xf3_c01301{left:819.075000px;}
.xd9_c01301{left:820.800000px;}
.xf1_c01301{left:823.397184px;}
.x6e_c01301{left:825.990000px;}
.x4d_c01301{left:829.440000px;}
.x82_c01301{left:831.165000px;}
.x1d_c01301{left:834.630000px;}
.x90_c01301{left:837.210000px;}
.x44_c01301{left:839.805000px;}
.xec_c01301{left:841.530000px;}
.xcc_c01301{left:846.720000px;}
.x6f_c01301{left:848.445000px;}
.xee_c01301{left:850.170000px;}
.x26_c01301{left:851.910000px;}
.x7d_c01301{left:855.360000px;}
.xda_c01301{left:857.955000px;}
.x3d_c01301{left:859.680000px;}
.x70_c01301{left:864.000000px;}
.xb2_c01301{left:866.595000px;}
.xeb_c01301{left:869.190000px;}
.x45_c01301{left:871.770000px;}
.x83_c01301{left:873.510000px;}
.xe8_c01301{left:876.090000px;}
.x5d_c01301{left:877.830000px;}
.x4e_c01301{left:879.555000px;}
.x67_c01301{left:883.005000px;}
.x9a_c01301{left:885.600000px;}
.x96_c01301{left:894.240000px;}
.x106_c01301{left:916.710000px;}
.x10a_c01301{left:950.400000px;}
.x10b_c01301{left:958.170000px;}
.x109_c01301{left:965.085000px;}
@media print{
.v3_c01301{vertical-align:-18.400000pt;}
.v4_c01301{vertical-align:-9.226667pt;}
.v1_c01301{vertical-align:-6.133333pt;}
.v5_c01301{vertical-align:-3.093333pt;}
.v0_c01301{vertical-align:0.000000pt;}
.v2_c01301{vertical-align:3.093333pt;}
.ls7_c01301{letter-spacing:0.000000pt;}
.ls6_c01301{letter-spacing:22.292213pt;}
.ls3_c01301{letter-spacing:30.391733pt;}
.ls1_c01301{letter-spacing:32.596267pt;}
.ls4_c01301{letter-spacing:38.968427pt;}
.ls5_c01301{letter-spacing:64.127787pt;}
.ls0_c01301{letter-spacing:138.872427pt;}
.ls2_c01301{letter-spacing:211.557333pt;}
.ws1_c01301{word-spacing:-15.477120pt;}
.ws0_c01301{word-spacing:-15.347787pt;}
.ws2_c01301{word-spacing:0.000000pt;}
.fs3_c01301{font-size:3.072000pt;}
.fs14_c01301{font-size:5.333333pt;}
.fs1_c01301{font-size:6.133333pt;}
.fs6_c01301{font-size:9.226667pt;}
.fs17_c01301{font-size:12.266667pt;}
.fs0_c01301{font-size:15.360000pt;}
.fs13_c01301{font-size:18.453333pt;}
.fs5_c01301{font-size:21.493333pt;}
.fs18_c01301{font-size:24.586667pt;}
.fsf_c01301{font-size:27.626667pt;}
.fs2_c01301{font-size:30.720000pt;}
.fsd_c01301{font-size:33.813333pt;}
.fs4_c01301{font-size:36.853333pt;}
.fs19_c01301{font-size:39.946667pt;}
.fs16_c01301{font-size:42.986667pt;}
.fsc_c01301{font-size:46.080000pt;}
.fse_c01301{font-size:49.173333pt;}
.fs7_c01301{font-size:52.213333pt;}
.fs8_c01301{font-size:55.306667pt;}
.fs9_c01301{font-size:58.346667pt;}
.fs10_c01301{font-size:61.440000pt;}
.fs12_c01301{font-size:64.533333pt;}
.fsa_c01301{font-size:67.573333pt;}
.fs11_c01301{font-size:70.666667pt;}
.fs15_c01301{font-size:73.706667pt;}
.fsb_c01301{font-size:76.800000pt;}
.fs1e_c01301{font-size:79.893333pt;}
.fs1a_c01301{font-size:82.933333pt;}
.fs1b_c01301{font-size:89.066667pt;}
.fs1d_c01301{font-size:92.160000pt;}
.fs1c_c01301{font-size:95.253333pt;}
.y0_c01301{bottom:0.000000pt;}
.y1f6_c01301{bottom:152.826667pt;}
.y1f5_c01301{bottom:153.600000pt;}
.y1f4_c01301{bottom:155.133333pt;}
.y1f3_c01301{bottom:161.280000pt;}
.y1f2_c01301{bottom:167.426667pt;}
.y1f1_c01301{bottom:169.733333pt;}
.y1f0_c01301{bottom:170.493333pt;}
.y1ef_c01301{bottom:172.026667pt;}
.y1ee_c01301{bottom:174.333333pt;}
.y1ed_c01301{bottom:175.106667pt;}
.y1ec_c01301{bottom:179.706667pt;}
.y1ea_c01301{bottom:191.226667pt;}
.y1eb_c01301{bottom:192.000000pt;}
.y1e8_c01301{bottom:195.066667pt;}
.y1e7_c01301{bottom:195.840000pt;}
.y1e9_c01301{bottom:197.373333pt;}
.y1e0_c01301{bottom:200.453333pt;}
.y1e6_c01301{bottom:201.213333pt;}
.y1e4_c01301{bottom:201.986667pt;}
.y1e5_c01301{bottom:203.520000pt;}
.y1df_c01301{bottom:205.826667pt;}
.y1e3_c01301{bottom:207.360000pt;}
.y1e2_c01301{bottom:208.133333pt;}
.y1e1_c01301{bottom:208.893333pt;}
.y1de_c01301{bottom:209.666667pt;}
.y1dd_c01301{bottom:210.426667pt;}
.y1dc_c01301{bottom:211.200000pt;}
.y1db_c01301{bottom:212.733333pt;}
.y1da_c01301{bottom:214.266667pt;}
.y1d5_c01301{bottom:216.573333pt;}
.y1d9_c01301{bottom:217.346667pt;}
.y1d6_c01301{bottom:218.880000pt;}
.y1d8_c01301{bottom:219.653333pt;}
.y1d7_c01301{bottom:220.413333pt;}
.y1d4_c01301{bottom:221.186667pt;}
.y1d1_c01301{bottom:225.786667pt;}
.y1d2_c01301{bottom:226.560000pt;}
.y1d3_c01301{bottom:227.333333pt;}
.y1d0_c01301{bottom:230.400000pt;}
.y1cf_c01301{bottom:231.933333pt;}
.y1cb_c01301{bottom:232.706667pt;}
.y1ce_c01301{bottom:235.013333pt;}
.y1cc_c01301{bottom:238.080000pt;}
.y1cd_c01301{bottom:240.386667pt;}
.y1c7_c01301{bottom:241.146667pt;}
.y1ca_c01301{bottom:241.920000pt;}
.y1c9_c01301{bottom:242.693333pt;}
.y1c6_c01301{bottom:244.986667pt;}
.y1c5_c01301{bottom:245.760000pt;}
.y1c8_c01301{bottom:247.293333pt;}
.y1c4_c01301{bottom:248.066667pt;}
.y1c3_c01301{bottom:251.133333pt;}
.y1c0_c01301{bottom:253.440000pt;}
.y1c1_c01301{bottom:255.746667pt;}
.y1c2_c01301{bottom:256.506667pt;}
.y1bd_c01301{bottom:258.813333pt;}
.y1be_c01301{bottom:260.346667pt;}
.y1bf_c01301{bottom:261.120000pt;}
.y1bc_c01301{bottom:261.893333pt;}
.y1ba_c01301{bottom:264.186667pt;}
.y1bb_c01301{bottom:266.493333pt;}
.y1b7_c01301{bottom:267.266667pt;}
.y1b9_c01301{bottom:269.573333pt;}
.y1b8_c01301{bottom:270.333333pt;}
.y1b6_c01301{bottom:272.640000pt;}
.y1b5_c01301{bottom:283.386667pt;}
.y1b4_c01301{bottom:284.933333pt;}
.y1b3_c01301{bottom:288.773333pt;}
.y1b2_c01301{bottom:293.373333pt;}
.y1b1_c01301{bottom:297.986667pt;}
.y1b0_c01301{bottom:300.293333pt;}
.y1af_c01301{bottom:303.360000pt;}
.y1ae_c01301{bottom:304.133333pt;}
.y1ad_c01301{bottom:314.880000pt;}
.y1ac_c01301{bottom:317.946667pt;}
.y1ab_c01301{bottom:318.720000pt;}
.y1a9_c01301{bottom:321.026667pt;}
.y1aa_c01301{bottom:323.333333pt;}
.y1a7_c01301{bottom:334.853333pt;}
.y1a6_c01301{bottom:337.146667pt;}
.y1a8_c01301{bottom:337.920000pt;}
.y1a5_c01301{bottom:339.453333pt;}
.y1a4_c01301{bottom:344.066667pt;}
.y1a3_c01301{bottom:350.973333pt;}
.y1a0_c01301{bottom:354.813333pt;}
.y1a1_c01301{bottom:355.586667pt;}
.y1a2_c01301{bottom:357.120000pt;}
.y19d_c01301{bottom:370.173333pt;}
.y19e_c01301{bottom:371.706667pt;}
.y199_c01301{bottom:374.013333pt;}
.y19c_c01301{bottom:374.786667pt;}
.y198_c01301{bottom:376.320000pt;}
.y19b_c01301{bottom:377.093333pt;}
.y19a_c01301{bottom:377.853333pt;}
.y19f_c01301{bottom:379.386667pt;}
.y195_c01301{bottom:394.746667pt;}
.y193_c01301{bottom:396.293333pt;}
.y197_c01301{bottom:397.053333pt;}
.y192_c01301{bottom:398.586667pt;}
.y196_c01301{bottom:399.360000pt;}
.y194_c01301{bottom:403.200000pt;}
.y191_c01301{bottom:407.040000pt;}
.y18d_c01301{bottom:407.813333pt;}
.y18f_c01301{bottom:410.106667pt;}
.y18c_c01301{bottom:410.880000pt;}
.y190_c01301{bottom:411.653333pt;}
.y18e_c01301{bottom:412.413333pt;}
.y18b_c01301{bottom:413.186667pt;}
.y18a_c01301{bottom:420.866667pt;}
.y189_c01301{bottom:427.773333pt;}
.y186_c01301{bottom:428.546667pt;}
.y185_c01301{bottom:429.306667pt;}
.y188_c01301{bottom:430.080000pt;}
.y187_c01301{bottom:430.853333pt;}
.y183_c01301{bottom:432.386667pt;}
.y184_c01301{bottom:433.920000pt;}
.y182_c01301{bottom:435.453333pt;}
.y17e_c01301{bottom:445.440000pt;}
.y17d_c01301{bottom:446.973333pt;}
.y17c_c01301{bottom:447.746667pt;}
.y180_c01301{bottom:448.506667pt;}
.y17f_c01301{bottom:451.586667pt;}
.y181_c01301{bottom:460.026667pt;}
.y178_c01301{bottom:460.800000pt;}
.y17a_c01301{bottom:463.106667pt;}
.y17b_c01301{bottom:463.866667pt;}
.y176_c01301{bottom:466.173333pt;}
.y177_c01301{bottom:468.480000pt;}
.y175_c01301{bottom:469.253333pt;}
.y174_c01301{bottom:470.013333pt;}
.y179_c01301{bottom:476.933333pt;}
.y171_c01301{bottom:480.773333pt;}
.y173_c01301{bottom:481.533333pt;}
.y170_c01301{bottom:483.066667pt;}
.y16e_c01301{bottom:483.840000pt;}
.y16f_c01301{bottom:484.613333pt;}
.y16b_c01301{bottom:487.680000pt;}
.y16d_c01301{bottom:488.453333pt;}
.y20b_c01301{bottom:489.986667pt;}
.y20a_c01301{bottom:492.293333pt;}
.y16c_c01301{bottom:495.360000pt;}
.y172_c01301{bottom:496.893333pt;}
.y169_c01301{bottom:497.666667pt;}
.y168_c01301{bottom:498.426667pt;}
.y166_c01301{bottom:499.973333pt;}
.y165_c01301{bottom:501.506667pt;}
.y167_c01301{bottom:502.266667pt;}
.y163_c01301{bottom:503.813333pt;}
.y164_c01301{bottom:506.880000pt;}
.y16a_c01301{bottom:508.413333pt;}
.y161_c01301{bottom:509.186667pt;}
.y162_c01301{bottom:509.946667pt;}
.y160_c01301{bottom:510.720000pt;}
.y15e_c01301{bottom:512.253333pt;}
.y15b_c01301{bottom:515.333333pt;}
.y15f_c01301{bottom:521.466667pt;}
.y159_c01301{bottom:522.240000pt;}
.y15d_c01301{bottom:523.773333pt;}
.y15c_c01301{bottom:524.546667pt;}
.y15a_c01301{bottom:526.080000pt;}
.y157_c01301{bottom:528.386667pt;}
.y158_c01301{bottom:529.146667pt;}
.y156_c01301{bottom:536.066667pt;}
.y155_c01301{bottom:536.826667pt;}
.y154_c01301{bottom:538.373333pt;}
.y153_c01301{bottom:540.666667pt;}
.y152_c01301{bottom:541.440000pt;}
.y150_c01301{bottom:544.506667pt;}
.y151_c01301{bottom:545.280000pt;}
.y14f_c01301{bottom:548.346667pt;}
.y14e_c01301{bottom:549.120000pt;}
.y14c_c01301{bottom:552.960000pt;}
.y14b_c01301{bottom:554.493333pt;}
.y14a_c01301{bottom:555.266667pt;}
.y14d_c01301{bottom:556.026667pt;}
.y147_c01301{bottom:558.333333pt;}
.y148_c01301{bottom:559.106667pt;}
.y149_c01301{bottom:562.173333pt;}
.y145_c01301{bottom:564.480000pt;}
.y146_c01301{bottom:565.253333pt;}
.y144_c01301{bottom:570.626667pt;}
.y143_c01301{bottom:572.933333pt;}
.y142_c01301{bottom:573.693333pt;}
.y141_c01301{bottom:576.773333pt;}
.y140_c01301{bottom:577.533333pt;}
.y13f_c01301{bottom:579.066667pt;}
.y13e_c01301{bottom:580.613333pt;}
.y13d_c01301{bottom:583.680000pt;}
.y13b_c01301{bottom:590.586667pt;}
.y13c_c01301{bottom:591.360000pt;}
.y138_c01301{bottom:592.133333pt;}
.y13a_c01301{bottom:592.893333pt;}
.y135_c01301{bottom:594.426667pt;}
.y139_c01301{bottom:595.200000pt;}
.y134_c01301{bottom:595.973333pt;}
.y133_c01301{bottom:597.506667pt;}
.y132_c01301{bottom:602.106667pt;}
.y131_c01301{bottom:602.880000pt;}
.y136_c01301{bottom:603.653333pt;}
.y130_c01301{bottom:604.413333pt;}
.y12f_c01301{bottom:607.493333pt;}
.y137_c01301{bottom:609.026667pt;}
.y12d_c01301{bottom:609.786667pt;}
.y12e_c01301{bottom:612.866667pt;}
.y12b_c01301{bottom:613.626667pt;}
.y12a_c01301{bottom:615.173333pt;}
.y12c_c01301{bottom:615.933333pt;}
.y128_c01301{bottom:616.706667pt;}
.y127_c01301{bottom:619.013333pt;}
.y129_c01301{bottom:620.546667pt;}
.y125_c01301{bottom:622.080000pt;}
.y122_c01301{bottom:623.613333pt;}
.y11f_c01301{bottom:626.693333pt;}
.y11e_c01301{bottom:628.986667pt;}
.y120_c01301{bottom:629.760000pt;}
.y126_c01301{bottom:632.066667pt;}
.y11d_c01301{bottom:632.826667pt;}
.y124_c01301{bottom:633.600000pt;}
.y123_c01301{bottom:634.373333pt;}
.y121_c01301{bottom:638.213333pt;}
.y11a_c01301{bottom:642.053333pt;}
.y118_c01301{bottom:646.653333pt;}
.y116_c01301{bottom:647.426667pt;}
.y119_c01301{bottom:648.186667pt;}
.y115_c01301{bottom:649.733333pt;}
.y117_c01301{bottom:650.493333pt;}
.y11c_c01301{bottom:652.026667pt;}
.y114_c01301{bottom:654.333333pt;}
.y11b_c01301{bottom:655.866667pt;}
.y113_c01301{bottom:658.946667pt;}
.y112_c01301{bottom:661.253333pt;}
.y111_c01301{bottom:662.013333pt;}
.y110_c01301{bottom:665.093333pt;}
.y10e_c01301{bottom:666.626667pt;}
.y10f_c01301{bottom:669.693333pt;}
.y10d_c01301{bottom:670.466667pt;}
.y10c_c01301{bottom:671.226667pt;}
.y10b_c01301{bottom:675.840000pt;}
.y10a_c01301{bottom:680.453333pt;}
.y107_c01301{bottom:681.986667pt;}
.y109_c01301{bottom:682.746667pt;}
.y106_c01301{bottom:685.053333pt;}
.y105_c01301{bottom:685.826667pt;}
.y108_c01301{bottom:688.133333pt;}
.y104_c01301{bottom:696.573333pt;}
.y103_c01301{bottom:698.106667pt;}
.y100_c01301{bottom:701.186667pt;}
.y102_c01301{bottom:701.946667pt;}
.yff_c01301{bottom:703.493333pt;}
.y101_c01301{bottom:705.026667pt;}
.yfe_c01301{bottom:708.866667pt;}
.yfd_c01301{bottom:709.626667pt;}
.yfc_c01301{bottom:716.546667pt;}
.yfb_c01301{bottom:718.080000pt;}
.yfa_c01301{bottom:718.853333pt;}
.yf9_c01301{bottom:719.613333pt;}
.yf8_c01301{bottom:724.226667pt;}
.yf4_c01301{bottom:733.440000pt;}
.yf7_c01301{bottom:734.213333pt;}
.yf6_c01301{bottom:734.973333pt;}
.yf5_c01301{bottom:735.746667pt;}
.yf2_c01301{bottom:736.506667pt;}
.yf0_c01301{bottom:738.053333pt;}
.yf1_c01301{bottom:739.586667pt;}
.yf3_c01301{bottom:740.346667pt;}
.yef_c01301{bottom:741.893333pt;}
.yee_c01301{bottom:744.960000pt;}
.yed_c01301{bottom:747.266667pt;}
.yeb_c01301{bottom:749.573333pt;}
.yec_c01301{bottom:752.640000pt;}
.yea_c01301{bottom:754.946667pt;}
.ye7_c01301{bottom:755.706667pt;}
.ye9_c01301{bottom:756.480000pt;}
.ye4_c01301{bottom:757.253333pt;}
.ye8_c01301{bottom:758.013333pt;}
.ye3_c01301{bottom:764.160000pt;}
.ye2_c01301{bottom:764.933333pt;}
.ye5_c01301{bottom:765.693333pt;}
.ye6_c01301{bottom:768.000000pt;}
.ye1_c01301{bottom:768.773333pt;}
.ydf_c01301{bottom:771.066667pt;}
.ydd_c01301{bottom:773.373333pt;}
.ye0_c01301{bottom:774.146667pt;}
.yde_c01301{bottom:775.680000pt;}
.yda_c01301{bottom:777.213333pt;}
.ydc_c01301{bottom:777.986667pt;}
.ydb_c01301{bottom:780.293333pt;}
.yd8_c01301{bottom:787.973333pt;}
.yd7_c01301{bottom:788.733333pt;}
.yd9_c01301{bottom:790.266667pt;}
.yd6_c01301{bottom:791.040000pt;}
.yd5_c01301{bottom:792.573333pt;}
.yd3_c01301{bottom:793.346667pt;}
.yd4_c01301{bottom:795.653333pt;}
.yd2_c01301{bottom:797.946667pt;}
.yd1_c01301{bottom:803.333333pt;}
.yd0_c01301{bottom:805.626667pt;}
.ycf_c01301{bottom:806.400000pt;}
.ycb_c01301{bottom:807.933333pt;}
.yce_c01301{bottom:808.706667pt;}
.yc8_c01301{bottom:810.240000pt;}
.yc7_c01301{bottom:811.013333pt;}
.ycd_c01301{bottom:811.773333pt;}
.ycc_c01301{bottom:812.546667pt;}
.yca_c01301{bottom:813.306667pt;}
.yc9_c01301{bottom:814.080000pt;}
.yc5_c01301{bottom:814.853333pt;}
.yc6_c01301{bottom:815.613333pt;}
.yc4_c01301{bottom:817.920000pt;}
.yc2_c01301{bottom:822.533333pt;}
.yc1_c01301{bottom:823.293333pt;}
.ybe_c01301{bottom:825.600000pt;}
.ybc_c01301{bottom:827.133333pt;}
.y205_c01301{bottom:828.666667pt;}
.yc0_c01301{bottom:829.440000pt;}
.ybf_c01301{bottom:830.213333pt;}
.y204_c01301{bottom:830.973333pt;}
.ybd_c01301{bottom:831.746667pt;}
.yba_c01301{bottom:833.280000pt;}
.ybb_c01301{bottom:834.053333pt;}
.yc3_c01301{bottom:836.346667pt;}
.yb4_c01301{bottom:839.426667pt;}
.yb8_c01301{bottom:840.960000pt;}
.yb9_c01301{bottom:843.266667pt;}
.yb3_c01301{bottom:844.026667pt;}
.yb7_c01301{bottom:844.800000pt;}
.yb0_c01301{bottom:845.573333pt;}
.yb6_c01301{bottom:846.333333pt;}
.yb5_c01301{bottom:847.106667pt;}
.yb1_c01301{bottom:847.866667pt;}
.yac_c01301{bottom:848.640000pt;}
.yae_c01301{bottom:850.173333pt;}
.yaf_c01301{bottom:850.946667pt;}
.yad_c01301{bottom:854.013333pt;}
.yab_c01301{bottom:855.546667pt;}
.yb2_c01301{bottom:856.320000pt;}
.yaa_c01301{bottom:857.093333pt;}
.ya9_c01301{bottom:857.853333pt;}
.ya7_c01301{bottom:861.693333pt;}
.ya8_c01301{bottom:863.226667pt;}
.ya5_c01301{bottom:864.000000pt;}
.ya4_c01301{bottom:865.533333pt;}
.ya3_c01301{bottom:866.306667pt;}
.ya6_c01301{bottom:869.373333pt;}
.y209_c01301{bottom:873.986667pt;}
.ya1_c01301{bottom:875.520000pt;}
.ya0_c01301{bottom:878.586667pt;}
.y9f_c01301{bottom:880.133333pt;}
.y9d_c01301{bottom:881.666667pt;}
.ya2_c01301{bottom:883.973333pt;}
.y9e_c01301{bottom:885.506667pt;}
.y9c_c01301{bottom:888.573333pt;}
.y9b_c01301{bottom:889.346667pt;}
.y98_c01301{bottom:890.880000pt;}
.y96_c01301{bottom:893.946667pt;}
.y99_c01301{bottom:896.253333pt;}
.y91_c01301{bottom:897.026667pt;}
.y97_c01301{bottom:897.786667pt;}
.y94_c01301{bottom:899.333333pt;}
.y95_c01301{bottom:900.093333pt;}
.y93_c01301{bottom:900.866667pt;}
.y92_c01301{bottom:901.626667pt;}
.y90_c01301{bottom:902.400000pt;}
.y9a_c01301{bottom:904.706667pt;}
.y207_c01301{bottom:908.546667pt;}
.y208_c01301{bottom:910.080000pt;}
.y8e_c01301{bottom:912.386667pt;}
.y8a_c01301{bottom:913.146667pt;}
.y8c_c01301{bottom:913.920000pt;}
.y8b_c01301{bottom:914.693333pt;}
.y8f_c01301{bottom:915.453333pt;}
.y87_c01301{bottom:916.226667pt;}
.y8d_c01301{bottom:916.986667pt;}
.y86_c01301{bottom:918.533333pt;}
.y84_c01301{bottom:919.293333pt;}
.y88_c01301{bottom:920.066667pt;}
.y89_c01301{bottom:921.600000pt;}
.y85_c01301{bottom:922.373333pt;}
.y82_c01301{bottom:932.346667pt;}
.y83_c01301{bottom:933.893333pt;}
.y81_c01301{bottom:934.653333pt;}
.y80_c01301{bottom:936.186667pt;}
.y7f_c01301{bottom:937.733333pt;}
.y7d_c01301{bottom:945.413333pt;}
.y79_c01301{bottom:951.546667pt;}
.y7c_c01301{bottom:952.320000pt;}
.y7b_c01301{bottom:953.093333pt;}
.y78_c01301{bottom:954.626667pt;}
.y7e_c01301{bottom:956.933333pt;}
.y76_c01301{bottom:957.693333pt;}
.y77_c01301{bottom:959.226667pt;}
.y7a_c01301{bottom:963.840000pt;}
.y74_c01301{bottom:965.373333pt;}
.y73_c01301{bottom:966.906667pt;}
.y75_c01301{bottom:968.453333pt;}
.y6f_c01301{bottom:970.746667pt;}
.y72_c01301{bottom:971.520000pt;}
.y70_c01301{bottom:972.293333pt;}
.y71_c01301{bottom:973.053333pt;}
.y6e_c01301{bottom:977.666667pt;}
.y6c_c01301{bottom:983.813333pt;}
.y6b_c01301{bottom:986.880000pt;}
.y69_c01301{bottom:988.413333pt;}
.y67_c01301{bottom:989.186667pt;}
.y6d_c01301{bottom:989.946667pt;}
.y6a_c01301{bottom:990.720000pt;}
.y68_c01301{bottom:993.786667pt;}
.y66_c01301{bottom:995.333333pt;}
.y65_c01301{bottom:1000.706667pt;}
.y64_c01301{bottom:1001.466667pt;}
.y63_c01301{bottom:1002.240000pt;}
.y62_c01301{bottom:1003.013333pt;}
.y61_c01301{bottom:1003.773333pt;}
.y60_c01301{bottom:1004.546667pt;}
.y5f_c01301{bottom:1005.306667pt;}
.y5e_c01301{bottom:1006.853333pt;}
.y5d_c01301{bottom:1008.386667pt;}
.y5c_c01301{bottom:1009.920000pt;}
.y5a_c01301{bottom:1018.373333pt;}
.y59_c01301{bottom:1020.666667pt;}
.y58_c01301{bottom:1022.213333pt;}
.y5b_c01301{bottom:1024.506667pt;}
.y56_c01301{bottom:1026.053333pt;}
.y57_c01301{bottom:1026.813333pt;}
.y54_c01301{bottom:1027.586667pt;}
.y52_c01301{bottom:1029.120000pt;}
.y55_c01301{bottom:1029.893333pt;}
.y53_c01301{bottom:1030.653333pt;}
.y50_c01301{bottom:1032.186667pt;}
.y51_c01301{bottom:1032.960000pt;}
.y4e_c01301{bottom:1033.733333pt;}
.y4f_c01301{bottom:1034.493333pt;}
.y4d_c01301{bottom:1035.266667pt;}
.y4b_c01301{bottom:1037.573333pt;}
.y4c_c01301{bottom:1038.333333pt;}
.y49_c01301{bottom:1039.106667pt;}
.y48_c01301{bottom:1040.640000pt;}
.y4a_c01301{bottom:1042.946667pt;}
.y45_c01301{bottom:1043.706667pt;}
.y46_c01301{bottom:1045.253333pt;}
.y47_c01301{bottom:1046.786667pt;}
.y7_c01301{bottom:1049.093333pt;}
.y44_c01301{bottom:1049.853333pt;}
.y206_c01301{bottom:1052.160000pt;}
.y42_c01301{bottom:1054.466667pt;}
.y41_c01301{bottom:1056.000000pt;}
.y43_c01301{bottom:1058.306667pt;}
.y3f_c01301{bottom:1059.840000pt;}
.y3d_c01301{bottom:1060.613333pt;}
.y4_c01301{bottom:1062.146667pt;}
.y40_c01301{bottom:1062.906667pt;}
.y3e_c01301{bottom:1063.680000pt;}
.y203_c01301{bottom:1064.453333pt;}
.y3_c01301{bottom:1065.986667pt;}
.y5_c01301{bottom:1066.746667pt;}
.y39_c01301{bottom:1074.426667pt;}
.y38_c01301{bottom:1075.200000pt;}
.y3b_c01301{bottom:1075.973333pt;}
.y3a_c01301{bottom:1076.733333pt;}
.y37_c01301{bottom:1077.506667pt;}
.y36_c01301{bottom:1079.040000pt;}
.y35_c01301{bottom:1080.573333pt;}
.y3c_c01301{bottom:1085.186667pt;}
.y34_c01301{bottom:1085.946667pt;}
.y33_c01301{bottom:1091.333333pt;}
.y32_c01301{bottom:1092.093333pt;}
.y30_c01301{bottom:1093.626667pt;}
.y31_c01301{bottom:1094.400000pt;}
.y2e_c01301{bottom:1095.933333pt;}
.y2d_c01301{bottom:1096.706667pt;}
.y2b_c01301{bottom:1097.466667pt;}
.y2f_c01301{bottom:1099.773333pt;}
.y2c_c01301{bottom:1102.853333pt;}
.y6_c01301{bottom:1105.920000pt;}
.y28_c01301{bottom:1110.533333pt;}
.y2a_c01301{bottom:1112.066667pt;}
.y26_c01301{bottom:1112.826667pt;}
.y29_c01301{bottom:1114.373333pt;}
.y27_c01301{bottom:1115.133333pt;}
.y23_c01301{bottom:1115.906667pt;}
.y24_c01301{bottom:1116.666667pt;}
.y25_c01301{bottom:1120.506667pt;}
.y22_c01301{bottom:1126.653333pt;}
.y1f_c01301{bottom:1128.186667pt;}
.y21_c01301{bottom:1130.493333pt;}
.y1c_c01301{bottom:1131.266667pt;}
.y20_c01301{bottom:1132.026667pt;}
.y1e_c01301{bottom:1134.333333pt;}
.y1d_c01301{bottom:1135.866667pt;}
.y1b_c01301{bottom:1138.946667pt;}
.y19_c01301{bottom:1144.320000pt;}
.y18_c01301{bottom:1145.853333pt;}
.y1a_c01301{bottom:1148.160000pt;}
.y17_c01301{bottom:1151.226667pt;}
.y16_c01301{bottom:1152.000000pt;}
.y15_c01301{bottom:1153.533333pt;}
.y14_c01301{bottom:1154.306667pt;}
.y13_c01301{bottom:1155.066667pt;}
.y12_c01301{bottom:1155.840000pt;}
.y11_c01301{bottom:1156.613333pt;}
.y10_c01301{bottom:1160.453333pt;}
.yf_c01301{bottom:1167.360000pt;}
.yb_c01301{bottom:1168.893333pt;}
.ye_c01301{bottom:1169.666667pt;}
.y9_c01301{bottom:1170.426667pt;}
.yc_c01301{bottom:1171.200000pt;}
.yd_c01301{bottom:1171.973333pt;}
.y8_c01301{bottom:1173.506667pt;}
.ya_c01301{bottom:1174.266667pt;}
.y1fd_c01301{bottom:1188.866667pt;}
.y200_c01301{bottom:1189.626667pt;}
.y1fa_c01301{bottom:1194.240000pt;}
.y1ff_c01301{bottom:1195.013333pt;}
.y1fe_c01301{bottom:1195.773333pt;}
.y1fb_c01301{bottom:1196.546667pt;}
.y1fc_c01301{bottom:1197.306667pt;}
.y1f8_c01301{bottom:1198.080000pt;}
.y1f7_c01301{bottom:1199.613333pt;}
.y201_c01301{bottom:1205.760000pt;}
.y1f9_c01301{bottom:1206.533333pt;}
.y202_c01301{bottom:1208.826667pt;}
.y2_c01301{bottom:1234.946667pt;}
.y1_c01301{bottom:1245.693333pt;}
.h5_c01301{height:2.764500pt;}
.h19_c01301{height:4.799479pt;}
.h3_c01301{height:5.519401pt;}
.h8_c01301{height:8.303099pt;}
.h18_c01301{height:11.038802pt;}
.h2_c01301{height:13.822500pt;}
.h1b_c01301{height:14.132135pt;}
.h15_c01301{height:16.606198pt;}
.h7_c01301{height:19.341901pt;}
.h1a_c01301{height:22.125599pt;}
.h11_c01301{height:24.861302pt;}
.h4_c01301{height:27.645000pt;}
.hf_c01301{height:30.428698pt;}
.h6_c01301{height:33.164401pt;}
.h1c_c01301{height:35.948099pt;}
.h17_c01301{height:38.683802pt;}
.he_c01301{height:41.467500pt;}
.h10_c01301{height:44.251198pt;}
.h9_c01301{height:46.986901pt;}
.ha_c01301{height:49.770599pt;}
.hb_c01301{height:52.506302pt;}
.h12_c01301{height:55.290000pt;}
.h14_c01301{height:58.073698pt;}
.hc_c01301{height:60.809401pt;}
.h13_c01301{height:63.593099pt;}
.h16_c01301{height:66.328802pt;}
.hd_c01301{height:69.112500pt;}
.h21_c01301{height:71.896198pt;}
.h1d_c01301{height:74.631901pt;}
.h1e_c01301{height:80.151302pt;}
.h20_c01301{height:82.935000pt;}
.h1f_c01301{height:85.718698pt;}
.h0_c01301{height:1341.693333pt;}
.h1_c01301{height:1342.000000pt;}
.w0_c01301{width:967.680000pt;}
.w1_c01301{width:968.000000pt;}
.x0_c01301{left:0.000000pt;}
.x107_c01301{left:19.200000pt;}
.x2_c01301{left:22.266667pt;}
.x3_c01301{left:29.186667pt;}
.x108_c01301{left:36.093333pt;}
.x10e_c01301{left:49.920000pt;}
.x4_c01301{left:55.293333pt;}
.x10f_c01301{left:62.213333pt;}
.x10c_c01301{left:151.293333pt;}
.x10d_c01301{left:156.666667pt;}
.x6_c01301{left:168.186667pt;}
.xbc_c01301{left:169.733333pt;}
.x5_c01301{left:172.800000pt;}
.xc8_c01301{left:198.146667pt;}
.x77_c01301{left:201.213333pt;}
.x7e_c01301{left:202.746667pt;}
.x7_c01301{left:204.293333pt;}
.xac_c01301{left:206.586667pt;}
.x78_c01301{left:208.893333pt;}
.x3e_c01301{left:211.200000pt;}
.x8_c01301{left:212.733333pt;}
.xe1_c01301{left:214.266667pt;}
.xcf_c01301{left:216.573333pt;}
.xd2_c01301{left:218.880000pt;}
.xbd_c01301{left:220.413333pt;}
.xa6_c01301{left:223.493333pt;}
.x97_c01301{left:225.026667pt;}
.x68_c01301{left:228.093333pt;}
.xd3_c01301{left:230.400000pt;}
.x1e_c01301{left:234.240000pt;}
.xa9_c01301{left:236.546667pt;}
.xb6_c01301{left:238.080000pt;}
.xa0_c01301{left:239.613333pt;}
.x9_c01301{left:243.453333pt;}
.xdb_c01301{left:245.760000pt;}
.xc3_c01301{left:248.066667pt;}
.x9b_c01301{left:254.213333pt;}
.x56_c01301{left:257.280000pt;}
.x4f_c01301{left:258.813333pt;}
.xa1_c01301{left:261.120000pt;}
.x84_c01301{left:262.653333pt;}
.x7f_c01301{left:264.186667pt;}
.x5e_c01301{left:267.266667pt;}
.xbe_c01301{left:268.800000pt;}
.x1f_c01301{left:270.333333pt;}
.xc9_c01301{left:271.866667pt;}
.x27_c01301{left:274.946667pt;}
.x69_c01301{left:277.253333pt;}
.xa_c01301{left:281.093333pt;}
.xd4_c01301{left:282.626667pt;}
.x50_c01301{left:284.933333pt;}
.x5f_c01301{left:288.773333pt;}
.xad_c01301{left:291.066667pt;}
.x9c_c01301{left:292.613333pt;}
.xd7_c01301{left:294.906667pt;}
.x89_c01301{left:297.986667pt;}
.x31_c01301{left:300.293333pt;}
.x13_c01301{left:301.826667pt;}
.x46_c01301{left:304.133333pt;}
.x57_c01301{left:308.733333pt;}
.xb3_c01301{left:310.266667pt;}
.x32_c01301{left:317.946667pt;}
.x71_c01301{left:320.253333pt;}
.x80_c01301{left:322.560000pt;}
.xde_c01301{left:326.400000pt;}
.xb_c01301{left:330.240000pt;}
.xe2_c01301{left:334.853333pt;}
.x51_c01301{left:336.386667pt;}
.x28_c01301{left:340.226667pt;}
.xb7_c01301{left:341.760000pt;}
.x20_c01301{left:343.293333pt;}
.xbf_c01301{left:349.440000pt;}
.x60_c01301{left:350.973333pt;}
.x91_c01301{left:353.280000pt;}
.x72_c01301{left:355.586667pt;}
.xa2_c01301{left:357.120000pt;}
.x58_c01301{left:360.960000pt;}
.x98_c01301{left:364.026667pt;}
.xd8_c01301{left:365.573333pt;}
.xdf_c01301{left:368.640000pt;}
.x61_c01301{left:370.173333pt;}
.x14_c01301{left:371.706667pt;}
.xc_c01301{left:373.253333pt;}
.x33_c01301{left:374.786667pt;}
.xae_c01301{left:377.853333pt;}
.x99_c01301{left:381.693333pt;}
.x62_c01301{left:387.066667pt;}
.x3f_c01301{left:389.373333pt;}
.xca_c01301{left:392.453333pt;}
.xa7_c01301{left:393.986667pt;}
.x59_c01301{left:397.053333pt;}
.x8a_c01301{left:399.360000pt;}
.xaf_c01301{left:400.893333pt;}
.xaa_c01301{left:403.200000pt;}
.x52_c01301{left:407.040000pt;}
.xa3_c01301{left:410.880000pt;}
.x79_c01301{left:413.186667pt;}
.xb4_c01301{left:414.720000pt;}
.x81_c01301{left:417.026667pt;}
.x73_c01301{left:418.560000pt;}
.x6a_c01301{left:420.093333pt;}
.xdc_c01301{left:422.400000pt;}
.x9d_c01301{left:425.466667pt;}
.x40_c01301{left:427.013333pt;}
.x29_c01301{left:429.306667pt;}
.x6b_c01301{left:430.853333pt;}
.x15_c01301{left:433.920000pt;}
.xa8_c01301{left:436.226667pt;}
.xc5_c01301{left:437.760000pt;}
.x16_c01301{left:440.066667pt;}
.x53_c01301{left:442.373333pt;}
.x34_c01301{left:445.440000pt;}
.x21_c01301{left:449.280000pt;}
.xb0_c01301{left:451.586667pt;}
.x8b_c01301{left:453.120000pt;}
.x63_c01301{left:456.186667pt;}
.x47_c01301{left:457.733333pt;}
.xd5_c01301{left:459.266667pt;}
.xe0_c01301{left:463.106667pt;}
.x92_c01301{left:464.640000pt;}
.xd6_c01301{left:471.546667pt;}
.x8c_c01301{left:474.626667pt;}
.x17_c01301{left:476.160000pt;}
.x7a_c01301{left:483.840000pt;}
.xd_c01301{left:485.373333pt;}
.x2a_c01301{left:487.680000pt;}
.xe3_c01301{left:491.519467pt;}
.x100_c01301{left:493.053333pt;}
.x35_c01301{left:494.586667pt;}
.x41_c01301{left:496.133333pt;}
.x48_c01301{left:499.200000pt;}
.xc6_c01301{left:500.733333pt;}
.x74_c01301{left:502.266667pt;}
.xe_c01301{left:503.813333pt;}
.x36_c01301{left:507.653333pt;}
.xed_c01301{left:510.720000pt;}
.xd0_c01301{left:513.026667pt;}
.x101_c01301{left:514.560000pt;}
.x37_c01301{left:516.866667pt;}
.x18_c01301{left:519.173333pt;}
.x64_c01301{left:520.706667pt;}
.xcd_c01301{left:524.546667pt;}
.xf9_c01301{left:526.080000pt;}
.x104_c01301{left:527.613333pt;}
.x75_c01301{left:529.146667pt;}
.xf2_c01301{left:530.693333pt;}
.xf_c01301{left:532.226667pt;}
.xb8_c01301{left:534.533333pt;}
.xf4_c01301{left:537.600000pt;}
.x93_c01301{left:539.133333pt;}
.x5a_c01301{left:542.213333pt;}
.x102_c01301{left:544.506667pt;}
.x49_c01301{left:546.053333pt;}
.xe9_c01301{left:547.586667pt;}
.x85_c01301{left:549.893333pt;}
.x8d_c01301{left:551.426667pt;}
.x42_c01301{left:552.960000pt;}
.x19_c01301{left:554.493333pt;}
.xc0_c01301{left:556.026667pt;}
.xa4_c01301{left:557.573333pt;}
.xf5_c01301{left:559.866667pt;}
.xb5_c01301{left:561.413333pt;}
.xf0_c01301{left:562.946667pt;}
.xab_c01301{left:564.480000pt;}
.x65_c01301{left:567.546667pt;}
.x2b_c01301{left:571.386667pt;}
.xfe_c01301{left:572.933333pt;}
.x86_c01301{left:575.226667pt;}
.x103_c01301{left:576.773333pt;}
.x4a_c01301{left:579.066667pt;}
.xfc_c01301{left:580.613333pt;}
.x22_c01301{left:582.146667pt;}
.x38_c01301{left:583.680000pt;}
.xf8_c01301{left:585.213333pt;}
.x10_c01301{left:586.746667pt;}
.x7b_c01301{left:589.053333pt;}
.x8e_c01301{left:591.360000pt;}
.xb9_c01301{left:593.666667pt;}
.x2c_c01301{left:595.973333pt;}
.xce_c01301{left:597.506667pt;}
.xf6_c01301{left:599.040000pt;}
.x4b_c01301{left:601.346667pt;}
.x54_c01301{left:603.653333pt;}
.x23_c01301{left:605.186667pt;}
.x1a_c01301{left:608.253333pt;}
.x6c_c01301{left:609.786667pt;}
.xa5_c01301{left:611.333333pt;}
.xc1_c01301{left:612.866667pt;}
.x2d_c01301{left:615.933333pt;}
.xfd_c01301{left:617.466667pt;}
.xc4_c01301{left:619.013333pt;}
.x5b_c01301{left:622.080000pt;}
.xef_c01301{left:624.386667pt;}
.x11_c01301{left:625.920000pt;}
.xc7_c01301{left:627.453333pt;}
.xea_c01301{left:629.760000pt;}
.x9e_c01301{left:631.293333pt;}
.x8f_c01301{left:634.373333pt;}
.x105_c01301{left:635.906667pt;}
.xf7_c01301{left:637.440000pt;}
.xe4_c01301{left:638.973333pt;}
.xba_c01301{left:640.506667pt;}
.x1b_c01301{left:644.346667pt;}
.xff_c01301{left:646.653333pt;}
.x7c_c01301{left:651.266667pt;}
.x87_c01301{left:652.800000pt;}
.xdd_c01301{left:654.333333pt;}
.x43_c01301{left:655.866667pt;}
.xc2_c01301{left:657.413333pt;}
.x24_c01301{left:660.480000pt;}
.x2e_c01301{left:662.786667pt;}
.xe5_c01301{left:664.320000pt;}
.x39_c01301{left:665.853333pt;}
.x88_c01301{left:667.386667pt;}
.xfa_c01301{left:668.933333pt;}
.xe6_c01301{left:671.226667pt;}
.x66_c01301{left:672.773333pt;}
.x94_c01301{left:674.306667pt;}
.x25_c01301{left:675.840000pt;}
.x4c_c01301{left:678.906667pt;}
.x3a_c01301{left:682.746667pt;}
.xbb_c01301{left:684.293333pt;}
.xcb_c01301{left:685.826667pt;}
.x6d_c01301{left:687.360000pt;}
.xb1_c01301{left:689.666667pt;}
.x1c_c01301{left:694.266667pt;}
.x2f_c01301{left:697.346667pt;}
.x12_c01301{left:698.880000pt;}
.x55_c01301{left:701.946667pt;}
.xd1_c01301{left:703.493333pt;}
.x95_c01301{left:705.026667pt;}
.xfb_c01301{left:707.333333pt;}
.x3b_c01301{left:708.866667pt;}
.x1_c01301{left:711.173333pt;}
.x9f_c01301{left:713.466667pt;}
.xe7_c01301{left:715.773333pt;}
.x5c_c01301{left:718.080000pt;}
.x30_c01301{left:719.613333pt;}
.x76_c01301{left:721.146667pt;}
.x3c_c01301{left:725.760000pt;}
.xf3_c01301{left:728.066667pt;}
.xd9_c01301{left:729.600000pt;}
.xf1_c01301{left:731.908608pt;}
.x6e_c01301{left:734.213333pt;}
.x4d_c01301{left:737.280000pt;}
.x82_c01301{left:738.813333pt;}
.x1d_c01301{left:741.893333pt;}
.x90_c01301{left:744.186667pt;}
.x44_c01301{left:746.493333pt;}
.xec_c01301{left:748.026667pt;}
.xcc_c01301{left:752.640000pt;}
.x6f_c01301{left:754.173333pt;}
.xee_c01301{left:755.706667pt;}
.x26_c01301{left:757.253333pt;}
.x7d_c01301{left:760.320000pt;}
.xda_c01301{left:762.626667pt;}
.x3d_c01301{left:764.160000pt;}
.x70_c01301{left:768.000000pt;}
.xb2_c01301{left:770.306667pt;}
.xeb_c01301{left:772.613333pt;}
.x45_c01301{left:774.906667pt;}
.x83_c01301{left:776.453333pt;}
.xe8_c01301{left:778.746667pt;}
.x5d_c01301{left:780.293333pt;}
.x4e_c01301{left:781.826667pt;}
.x67_c01301{left:784.893333pt;}
.x9a_c01301{left:787.200000pt;}
.x96_c01301{left:794.880000pt;}
.x106_c01301{left:814.853333pt;}
.x10a_c01301{left:844.800000pt;}
.x10b_c01301{left:851.706667pt;}
.x109_c01301{left:857.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_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_789d5d93fc3a21cc61b66db9.woff2')format("woff");}.ff1_c01302{font-family:ff1_c01302;line-height:1.109863;font-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_c01302{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01302{transform:matrix(0.028650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.028650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.028650,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01302{transform:matrix(0.034125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034125,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01302{transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01302{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);}
.m1a5_c01302{transform:matrix(0.050050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050050,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01302{transform:matrix(0.068250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068250,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01302{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.m9e_c01302{transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076925,0.000000,0.000000,0.250000,0,0);}
.m11b_c01302{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m1_c01302{transform:matrix(0.084025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084025,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01302{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.m19f_c01302{transform:matrix(0.090100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090100,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01302{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m37_c01302{transform:matrix(0.098075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098075,0.000000,0.000000,0.250000,0,0);}
.m19d_c01302{transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);}
.m137_c01302{transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107100,0.000000,0.000000,0.250000,0,0);}
.mbd_c01302{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m154_c01302{transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);}
.m17f_c01302{transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);}
.m36_c01302{transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);}
.m164_c01302{transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);}
.m194_c01302{transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);}
.m53_c01302{transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121375,0.000000,0.000000,0.250000,0,0);}
.m184_c01302{transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);}
.ma6_c01302{transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);}
.m181_c01302{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m18f_c01302{transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);}
.me2_c01302{transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);}
.mee_c01302{transform:matrix(0.126325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126325,0.000000,0.000000,0.250000,0,0);}
.mcb_c01302{transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126425,0.000000,0.000000,0.250000,0,0);}
.m81_c01302{transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);}
.m119_c01302{transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);}
.m15c_c01302{transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);}
.m5c_c01302{transform:matrix(0.130400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130400,0.000000,0.000000,0.250000,0,0);}
.m133_c01302{transform:matrix(0.131850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131850,0.000000,0.000000,0.250000,0,0);}
.m158_c01302{transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);}
.m95_c01302{transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);}
.maa_c01302{transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);}
.m101_c01302{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);}
.m17_c01302{transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);}
.m159_c01302{transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);}
.m3c_c01302{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);}
.m3a_c01302{transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);}
.m30_c01302{transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138425,0.000000,0.000000,0.250000,0,0);}
.m135_c01302{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m152_c01302{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01302{transform:matrix(0.139175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139175,0.000000,0.000000,0.250000,0,0);}
.m3b_c01302{transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);}
.m6a_c01302{transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);}
.m134_c01302{transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);}
.m38_c01302{transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);}
.m8d_c01302{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.ma7_c01302{transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);}
.m177_c01302{transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);}
.m98_c01302{transform:matrix(0.143050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143050,0.000000,0.000000,0.250000,0,0);}
.m2a_c01302{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01302{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.m3f_c01302{transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);}
.md3_c01302{transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145275,0.000000,0.000000,0.250000,0,0);}
.m88_c01302{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);}
.m178_c01302{transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);}
.mea_c01302{transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148750,0.000000,0.000000,0.250000,0,0);}
.m196_c01302{transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);}
.m26_c01302{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);}
.m92_c01302{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);}
.m156_c01302{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);}
.m9_c01302{transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);}
.m19e_c01302{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m52_c01302{transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150850,0.000000,0.000000,0.250000,0,0);}
.m9c_c01302{transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);}
.m166_c01302{transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152300,0.000000,0.000000,0.250000,0,0);}
.m195_c01302{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.m14f_c01302{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);}
.mb9_c01302{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m50_c01302{transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);}
.m8_c01302{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.ma0_c01302{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);}
.m4f_c01302{transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155925,0.000000,0.000000,0.250000,0,0);}
.m8e_c01302{transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);}
.m190_c01302{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.m58_c01302{transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);}
.m47_c01302{transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);}
.m14d_c01302{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.m186_c01302{transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);}
.m117_c01302{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.m14b_c01302{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);}
.m56_c01302{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.m7b_c01302{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.m182_c01302{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.mef_c01302{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m157_c01302{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m17d_c01302{transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);}
.mb8_c01302{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.m197_c01302{transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);}
.m162_c01302{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.m170_c01302{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m179_c01302{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.me3_c01302{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);}
.m28_c01302{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);}
.m13d_c01302{transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);}
.m173_c01302{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.m7c_c01302{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m18c_c01302{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m6e_c01302{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.m148_c01302{transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);}
.mcc_c01302{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m187_c01302{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.m11f_c01302{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m151_c01302{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.m175_c01302{transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);}
.m7f_c01302{transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172425,0.000000,0.000000,0.250000,0,0);}
.m167_c01302{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m128_c01302{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);}
.m80_c01302{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.m7e_c01302{transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);}
.m172_c01302{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m19a_c01302{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m176_c01302{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m15d_c01302{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);}
.m76_c01302{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m146_c01302{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);}
.m9d_c01302{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);}
.m87_c01302{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m61_c01302{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);}
.m89_c01302{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m189_c01302{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.me9_c01302{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.m140_c01302{transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);}
.ma4_c01302{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);}
.m94_c01302{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);}
.m39_c01302{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m160_c01302{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.me1_c01302{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);}
.m14_c01302{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m60_c01302{transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);}
.m17a_c01302{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m112_c01302{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m150_c01302{transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);}
.m14c_c01302{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);}
.m12c_c01302{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);}
.mcd_c01302{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.mc9_c01302{transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);}
.md8_c01302{transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);}
.m103_c01302{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.mff_c01302{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);}
.m96_c01302{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);}
.m143_c01302{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m109_c01302{transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);}
.m83_c01302{transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185550,0.000000,0.000000,0.250000,0,0);}
.ma1_c01302{transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);}
.m183_c01302{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m1e_c01302{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m161_c01302{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);}
.m74_c01302{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);}
.m168_c01302{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);}
.m84_c01302{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m198_c01302{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);}
.m16f_c01302{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.m113_c01302{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);}
.m77_c01302{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);}
.m13a_c01302{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.m8b_c01302{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);}
.m10a_c01302{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m4a_c01302{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);}
.m118_c01302{transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);}
.m10c_c01302{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);}
.m120_c01302{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);}
.m1b_c01302{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.m17b_c01302{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m18b_c01302{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.m45_c01302{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m72_c01302{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mc6_c01302{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);}
.m163_c01302{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);}
.med_c01302{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);}
.m15f_c01302{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);}
.m11d_c01302{transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196600,0.000000,0.000000,0.250000,0,0);}
.ma5_c01302{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m18e_c01302{transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);}
.m11e_c01302{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);}
.m13c_c01302{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);}
.m97_c01302{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.me0_c01302{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m65_c01302{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.m136_c01302{transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);}
.mb4_c01302{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);}
.m191_c01302{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);}
.m12b_c01302{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);}
.mf2_c01302{transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);}
.m138_c01302{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);}
.m111_c01302{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.md7_c01302{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);}
.md9_c01302{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.mb7_c01302{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);}
.m62_c01302{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mf9_c01302{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);}
.mdf_c01302{transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);}
.m32_c01302{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.mde_c01302{transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);}
.md0_c01302{transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);}
.m8f_c01302{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);}
.m139_c01302{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);}
.m129_c01302{transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);}
.m149_c01302{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);}
.mf1_c01302{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);}
.m10d_c01302{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);}
.m69_c01302{transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);}
.me4_c01302{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m121_c01302{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);}
.m2f_c01302{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);}
.m54_c01302{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m115_c01302{transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);}
.me8_c01302{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m105_c01302{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.md4_c01302{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m16c_c01302{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);}
.m15b_c01302{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01302{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m11a_c01302{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);}
.m110_c01302{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);}
.m145_c01302{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);}
.mc7_c01302{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.mf6_c01302{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);}
.m106_c01302{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.mfd_c01302{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mf3_c01302{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.ma8_c01302{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.md6_c01302{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.mdb_c01302{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.md5_c01302{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);}
.m93_c01302{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m125_c01302{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);}
.maf_c01302{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);}
.mf4_c01302{transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);}
.m46_c01302{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.m10e_c01302{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);}
.mf7_c01302{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.mf8_c01302{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);}
.m6b_c01302{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);}
.m19c_c01302{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);}
.mf0_c01302{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);}
.mc5_c01302{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m75_c01302{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);}
.m13e_c01302{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.m14a_c01302{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);}
.m70_c01302{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.m153_c01302{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.m40_c01302{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);}
.m4e_c01302{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.m124_c01302{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);}
.m44_c01302{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.m192_c01302{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);}
.m41_c01302{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);}
.m16_c01302{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m123_c01302{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);}
.mac_c01302{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);}
.m15e_c01302{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);}
.mdd_c01302{transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);}
.m171_c01302{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);}
.m15_c01302{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);}
.m155_c01302{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m108_c01302{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m10b_c01302{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.m1c_c01302{transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);}
.m141_c01302{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m10f_c01302{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);}
.m132_c01302{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);}
.m180_c01302{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);}
.me5_c01302{transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);}
.m107_c01302{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);}
.me7_c01302{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.mf5_c01302{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);}
.mb5_c01302{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.mfb_c01302{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);}
.m7d_c01302{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);}
.m185_c01302{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);}
.m169_c01302{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);}
.m73_c01302{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);}
.mc1_c01302{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);}
.mdc_c01302{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);}
.m193_c01302{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);}
.m11c_c01302{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);}
.m15a_c01302{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.m6c_c01302{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m64_c01302{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);}
.mbb_c01302{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m13f_c01302{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);}
.mcf_c01302{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m127_c01302{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.m59_c01302{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m78_c01302{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);}
.m79_c01302{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);}
.m67_c01302{transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);}
.mb0_c01302{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.ma3_c01302{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m3d_c01302{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);}
.m165_c01302{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);}
.m99_c01302{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);}
.m7_c01302{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m126_c01302{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);}
.mce_c01302{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);}
.m6d_c01302{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);}
.m7a_c01302{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m13b_c01302{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);}
.meb_c01302{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);}
.m102_c01302{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m18d_c01302{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);}
.mad_c01302{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);}
.m55_c01302{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);}
.md1_c01302{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);}
.m174_c01302{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.mca_c01302{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);}
.m116_c01302{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);}
.m3_c01302{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);}
.m14e_c01302{transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);}
.m144_c01302{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m100_c01302{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);}
.m12a_c01302{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);}
.m18a_c01302{transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249475,0.000000,0.000000,0.250000,0,0);}
.m188_c01302{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);}
.m66_c01302{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_c01302{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m63_c01302{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);}
.m4b_c01302{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);}
.m3e_c01302{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);}
.mc3_c01302{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);}
.mec_c01302{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m51_c01302{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01302{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01302{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);}
.m2e_c01302{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m12d_c01302{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);}
.mf_c01302{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);}
.m5f_c01302{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m9a_c01302{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);}
.m0_c01302{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01302{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8a_c01302{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);}
.m5b_c01302{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m86_c01302{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);}
.m49_c01302{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);}
.m10_c01302{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c01302{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01302{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);}
.m19_c01302{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c01302{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01302{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);}
.m5_c01302{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m42_c01302{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m85_c01302{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m31_c01302{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.me_c01302{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc_c01302{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb3_c01302{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01302{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mae_c01302{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);}
.mda_c01302{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c01302{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01302{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mfa_c01302{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9b_c01302{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);}
.ma9_c01302{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c01302{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m13_c01302{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m82_c01302{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m91_c01302{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);}
.mb_c01302{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01302{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.md2_c01302{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);}
.m104_c01302{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m12_c01302{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m4_c01302{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);}
.m71_c01302{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m131_c01302{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m147_c01302{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m33_c01302{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m68_c01302{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);}
.mc8_c01302{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);}
.ma2_c01302{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mc4_c01302{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);}
.mb2_c01302{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m48_c01302{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01302{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mc2_c01302{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m142_c01302{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01302{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);}
.m1ab_c01302{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mfc_c01302{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mfe_c01302{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01302{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mc0_c01302{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01302{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);}
.m57_c01302{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mb1_c01302{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m114_c01302{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01302{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);}
.m122_c01302{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.me6_c01302{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m20_c01302{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m11_c01302{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m16d_c01302{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m29_c01302{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);}
.m43_c01302{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m130_c01302{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mbe_c01302{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m19b_c01302{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01302{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.m17c_c01302{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);}
.m5a_c01302{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m16b_c01302{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.mba_c01302{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m12e_c01302{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.mbc_c01302{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);}
.m17e_c01302{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m27_c01302{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m12f_c01302{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01302{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.m34_c01302{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.m23_c01302{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m25_c01302{transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);}
.m22_c01302{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m16e_c01302{transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);}
.m21_c01302{transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.365000,0.000000,0.000000,0.250000,0,0);}
.m90_c01302{transform:matrix(1.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.632500,0.000000,0.000000,0.250000,0,0);}
.m35_c01302{transform:matrix(1.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.835000,0.000000,0.000000,0.250000,0,0);}
.m16a_c01302{transform:matrix(2.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.840000,0.000000,0.000000,0.250000,0,0);}
.mab_c01302{transform:matrix(5.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.327500,0.000000,0.000000,0.250000,0,0);}
.m199_c01302{transform:matrix(12.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(12.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(12.385000,0.000000,0.000000,0.250000,0,0);}
.v3_c01302{vertical-align:-6.900000px;}
.v1_c01302{vertical-align:-3.420000px;}
.v0_c01302{vertical-align:0.000000px;}
.v2_c01302{vertical-align:3.480000px;}
.v4_c01302{vertical-align:13.800000px;}
.ls2_c01302{letter-spacing:0.000000px;}
.ls0_c01302{letter-spacing:16.291440px;}
.ls1_c01302{letter-spacing:68.174688px;}
.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;}
}
.ws1_c01302{word-spacing:-19.621980px;}
.ws2_c01302{word-spacing:-15.404160px;}
.ws0_c01302{word-spacing:-15.299400px;}
.ws3_c01302{word-spacing:0.000000px;}
.fc0_c01302{color:transparent;}
.fse_c01302{font-size:3.456000px;}
.fs2_c01302{font-size:6.000000px;}
.fs11_c01302{font-size:6.900000px;}
.fs0_c01302{font-size:10.380000px;}
.fs1a_c01302{font-size:13.800000px;}
.fs1_c01302{font-size:17.280000px;}
.fs13_c01302{font-size:20.760000px;}
.fs1f_c01302{font-size:24.180000px;}
.fs15_c01302{font-size:27.660000px;}
.fs16_c01302{font-size:31.080000px;}
.fs12_c01302{font-size:34.560000px;}
.fs17_c01302{font-size:38.040000px;}
.fsf_c01302{font-size:41.460000px;}
.fs14_c01302{font-size:44.940000px;}
.fs6_c01302{font-size:48.360000px;}
.fsa_c01302{font-size:51.840000px;}
.fsb_c01302{font-size:55.320000px;}
.fsd_c01302{font-size:58.740000px;}
.fsc_c01302{font-size:62.220000px;}
.fs7_c01302{font-size:65.640000px;}
.fs3_c01302{font-size:69.120000px;}
.fs9_c01302{font-size:72.600000px;}
.fs4_c01302{font-size:76.020000px;}
.fs8_c01302{font-size:79.500000px;}
.fs10_c01302{font-size:82.920000px;}
.fs5_c01302{font-size:86.400000px;}
.fs18_c01302{font-size:89.880000px;}
.fs19_c01302{font-size:93.300000px;}
.fs1d_c01302{font-size:96.780000px;}
.fs1b_c01302{font-size:100.200000px;}
.fs20_c01302{font-size:103.680000px;}
.fs1c_c01302{font-size:107.160000px;}
.fs21_c01302{font-size:124.440000px;}
.fs1e_c01302{font-size:148.620000px;}
.fs22_c01302{font-size:217.740000px;}
.y0_c01302{bottom:0.000000px;}
.y1ca_c01302{bottom:182.310000px;}
.y1cb_c01302{bottom:184.890000px;}
.y1c9_c01302{bottom:186.630000px;}
.y1c7_c01302{bottom:187.485000px;}
.y1c6_c01302{bottom:188.355000px;}
.y1c4_c01302{bottom:190.950000px;}
.y1c8_c01302{bottom:192.675000px;}
.y1c5_c01302{bottom:195.270000px;}
.y1c3_c01302{bottom:203.910000px;}
.y1bf_c01302{bottom:207.360000px;}
.y1c2_c01302{bottom:208.230000px;}
.y1be_c01302{bottom:209.085000px;}
.y1c0_c01302{bottom:210.810000px;}
.y1c1_c01302{bottom:213.405000px;}
.y1bc_c01302{bottom:215.130000px;}
.y1bd_c01302{bottom:218.595000px;}
.y1bb_c01302{bottom:233.280000px;}
.y1b6_c01302{bottom:234.150000px;}
.y1b7_c01302{bottom:235.875000px;}
.y1b5_c01302{bottom:238.470000px;}
.y1b8_c01302{bottom:245.370000px;}
.y1b9_c01302{bottom:246.240000px;}
.y1ba_c01302{bottom:247.110000px;}
.y1b2_c01302{bottom:247.965000px;}
.y1b1_c01302{bottom:248.835000px;}
.y1ae_c01302{bottom:250.560000px;}
.y1af_c01302{bottom:251.430000px;}
.y1b4_c01302{bottom:252.285000px;}
.y1b3_c01302{bottom:253.155000px;}
.y1b0_c01302{bottom:254.010000px;}
.y1ab_c01302{bottom:268.710000px;}
.y1a7_c01302{bottom:269.565000px;}
.y1a9_c01302{bottom:270.435000px;}
.y1df_c01302{bottom:271.290000px;}
.y1ac_c01302{bottom:272.160000px;}
.y1a8_c01302{bottom:273.885000px;}
.y1ad_c01302{bottom:274.755000px;}
.y1aa_c01302{bottom:275.610000px;}
.y1a6_c01302{bottom:276.480000px;}
.y1a5_c01302{bottom:283.395000px;}
.y1a4_c01302{bottom:288.570000px;}
.y19d_c01302{bottom:289.440000px;}
.y1a3_c01302{bottom:290.310000px;}
.y1a0_c01302{bottom:293.760000px;}
.y1a1_c01302{bottom:300.675000px;}
.y1a2_c01302{bottom:305.850000px;}
.y19e_c01302{bottom:307.590000px;}
.y19f_c01302{bottom:309.315000px;}
.y19a_c01302{bottom:310.170000px;}
.y193_c01302{bottom:311.040000px;}
.y195_c01302{bottom:311.910000px;}
.y194_c01302{bottom:312.765000px;}
.y197_c01302{bottom:313.635000px;}
.y19c_c01302{bottom:314.490000px;}
.y19b_c01302{bottom:315.360000px;}
.y198_c01302{bottom:316.230000px;}
.y196_c01302{bottom:317.085000px;}
.y192_c01302{bottom:319.680000px;}
.y190_c01302{bottom:320.550000px;}
.y199_c01302{bottom:322.275000px;}
.y191_c01302{bottom:323.130000px;}
.y18d_c01302{bottom:324.000000px;}
.y18a_c01302{bottom:324.870000px;}
.y189_c01302{bottom:325.725000px;}
.y18b_c01302{bottom:326.595000px;}
.y18f_c01302{bottom:327.450000px;}
.y18c_c01302{bottom:328.320000px;}
.y18e_c01302{bottom:329.190000px;}
.y182_c01302{bottom:331.770000px;}
.y185_c01302{bottom:333.510000px;}
.y181_c01302{bottom:336.090000px;}
.y183_c01302{bottom:336.960000px;}
.y184_c01302{bottom:337.830000px;}
.y186_c01302{bottom:338.685000px;}
.y187_c01302{bottom:342.150000px;}
.y188_c01302{bottom:349.050000px;}
.y17b_c01302{bottom:351.645000px;}
.y17c_c01302{bottom:352.515000px;}
.y17a_c01302{bottom:354.240000px;}
.y17e_c01302{bottom:355.110000px;}
.y179_c01302{bottom:355.965000px;}
.y180_c01302{bottom:356.835000px;}
.y17d_c01302{bottom:358.560000px;}
.y17f_c01302{bottom:359.430000px;}
.y174_c01302{bottom:370.650000px;}
.y172_c01302{bottom:372.390000px;}
.y171_c01302{bottom:373.245000px;}
.y170_c01302{bottom:374.115000px;}
.y175_c01302{bottom:375.840000px;}
.y16f_c01302{bottom:377.565000px;}
.y173_c01302{bottom:378.435000px;}
.y177_c01302{bottom:380.160000px;}
.y178_c01302{bottom:381.885000px;}
.y176_c01302{bottom:385.350000px;}
.y16e_c01302{bottom:386.205000px;}
.y168_c01302{bottom:387.930000px;}
.y16a_c01302{bottom:388.800000px;}
.y16d_c01302{bottom:389.670000px;}
.y16c_c01302{bottom:393.990000px;}
.y16b_c01302{bottom:394.845000px;}
.y169_c01302{bottom:397.440000px;}
.y162_c01302{bottom:412.125000px;}
.y163_c01302{bottom:413.850000px;}
.y164_c01302{bottom:414.720000px;}
.y165_c01302{bottom:419.910000px;}
.y167_c01302{bottom:420.765000px;}
.y166_c01302{bottom:427.680000px;}
.y160_c01302{bottom:432.870000px;}
.y15e_c01302{bottom:433.725000px;}
.y15b_c01302{bottom:435.450000px;}
.y161_c01302{bottom:438.045000px;}
.y15d_c01302{bottom:439.770000px;}
.y15c_c01302{bottom:440.640000px;}
.y15f_c01302{bottom:451.005000px;}
.y15a_c01302{bottom:451.875000px;}
.y159_c01302{bottom:454.470000px;}
.y158_c01302{bottom:456.195000px;}
.y157_c01302{bottom:457.050000px;}
.y155_c01302{bottom:459.645000px;}
.y156_c01302{bottom:460.515000px;}
.y154_c01302{bottom:473.475000px;}
.y151_c01302{bottom:476.070000px;}
.y14e_c01302{bottom:476.925000px;}
.y152_c01302{bottom:478.650000px;}
.y153_c01302{bottom:479.520000px;}
.y14d_c01302{bottom:480.390000px;}
.y14f_c01302{bottom:482.970000px;}
.y150_c01302{bottom:489.030000px;}
.y14c_c01302{bottom:493.350000px;}
.y149_c01302{bottom:494.205000px;}
.y14b_c01302{bottom:495.930000px;}
.y146_c01302{bottom:496.800000px;}
.y147_c01302{bottom:499.395000px;}
.y145_c01302{bottom:500.250000px;}
.y14a_c01302{bottom:501.120000px;}
.y148_c01302{bottom:501.990000px;}
.y140_c01302{bottom:514.080000px;}
.y13f_c01302{bottom:514.950000px;}
.y13e_c01302{bottom:516.675000px;}
.y144_c01302{bottom:518.400000px;}
.y141_c01302{bottom:519.270000px;}
.y13d_c01302{bottom:520.125000px;}
.y142_c01302{bottom:525.315000px;}
.y143_c01302{bottom:527.910000px;}
.y13c_c01302{bottom:533.955000px;}
.y138_c01302{bottom:535.680000px;}
.y13b_c01302{bottom:536.550000px;}
.y139_c01302{bottom:540.870000px;}
.y13a_c01302{bottom:541.725000px;}
.y134_c01302{bottom:554.685000px;}
.y132_c01302{bottom:555.555000px;}
.y136_c01302{bottom:556.410000px;}
.y131_c01302{bottom:559.005000px;}
.y137_c01302{bottom:559.875000px;}
.y133_c01302{bottom:560.730000px;}
.y135_c01302{bottom:562.470000px;}
.y12f_c01302{bottom:574.560000px;}
.y12e_c01302{bottom:576.285000px;}
.y12b_c01302{bottom:577.155000px;}
.y130_c01302{bottom:579.750000px;}
.y12d_c01302{bottom:581.475000px;}
.y12c_c01302{bottom:582.330000px;}
.y128_c01302{bottom:595.290000px;}
.y122_c01302{bottom:597.030000px;}
.y126_c01302{bottom:599.610000px;}
.y129_c01302{bottom:600.480000px;}
.y127_c01302{bottom:601.350000px;}
.y124_c01302{bottom:603.075000px;}
.y125_c01302{bottom:605.670000px;}
.y12a_c01302{bottom:606.525000px;}
.y123_c01302{bottom:608.250000px;}
.y1de_c01302{bottom:610.845000px;}
.y121_c01302{bottom:614.310000px;}
.y120_c01302{bottom:615.165000px;}
.y11f_c01302{bottom:616.890000px;}
.y11d_c01302{bottom:617.760000px;}
.y11c_c01302{bottom:620.355000px;}
.y11e_c01302{bottom:622.950000px;}
.y11b_c01302{bottom:635.040000px;}
.y118_c01302{bottom:637.635000px;}
.y117_c01302{bottom:638.490000px;}
.y115_c01302{bottom:639.360000px;}
.y11a_c01302{bottom:640.230000px;}
.y119_c01302{bottom:641.085000px;}
.y114_c01302{bottom:641.955000px;}
.y116_c01302{bottom:642.810000px;}
.y113_c01302{bottom:655.770000px;}
.y10d_c01302{bottom:657.510000px;}
.y10e_c01302{bottom:658.365000px;}
.y10f_c01302{bottom:659.235000px;}
.y112_c01302{bottom:660.090000px;}
.y111_c01302{bottom:660.960000px;}
.y110_c01302{bottom:662.685000px;}
.y10b_c01302{bottom:673.050000px;}
.y10c_c01302{bottom:673.920000px;}
.y107_c01302{bottom:675.645000px;}
.y10a_c01302{bottom:676.515000px;}
.y106_c01302{bottom:679.110000px;}
.y104_c01302{bottom:679.965000px;}
.y108_c01302{bottom:682.560000px;}
.y105_c01302{bottom:683.430000px;}
.y109_c01302{bottom:690.330000px;}
.y103_c01302{bottom:696.390000px;}
.yfd_c01302{bottom:697.245000px;}
.yfe_c01302{bottom:698.115000px;}
.y102_c01302{bottom:698.970000px;}
.y100_c01302{bottom:699.840000px;}
.y101_c01302{bottom:700.710000px;}
.yff_c01302{bottom:701.565000px;}
.yfc_c01302{bottom:703.290000px;}
.yfb_c01302{bottom:714.525000px;}
.yfa_c01302{bottom:715.395000px;}
.yf6_c01302{bottom:717.120000px;}
.yf7_c01302{bottom:717.990000px;}
.yf5_c01302{bottom:718.845000px;}
.yf9_c01302{bottom:719.715000px;}
.yf8_c01302{bottom:720.570000px;}
.yf4_c01302{bottom:734.400000px;}
.yf1_c01302{bottom:735.270000px;}
.yef_c01302{bottom:737.850000px;}
.yf0_c01302{bottom:738.720000px;}
.yf3_c01302{bottom:739.590000px;}
.yf2_c01302{bottom:740.445000px;}
.y1dd_c01302{bottom:744.765000px;}
.yee_c01302{bottom:754.275000px;}
.yec_c01302{bottom:756.000000px;}
.y1dc_c01302{bottom:756.870000px;}
.yeb_c01302{bottom:757.725000px;}
.ye9_c01302{bottom:758.595000px;}
.ye7_c01302{bottom:760.320000px;}
.yed_c01302{bottom:761.190000px;}
.yea_c01302{bottom:763.770000px;}
.ye8_c01302{bottom:764.640000px;}
.ye5_c01302{bottom:775.875000px;}
.ye6_c01302{bottom:776.730000px;}
.ye2_c01302{bottom:777.600000px;}
.ye0_c01302{bottom:778.470000px;}
.ye3_c01302{bottom:780.195000px;}
.ye4_c01302{bottom:781.050000px;}
.ydf_c01302{bottom:783.645000px;}
.ye1_c01302{bottom:784.515000px;}
.ydc_c01302{bottom:795.750000px;}
.yde_c01302{bottom:796.605000px;}
.ydd_c01302{bottom:797.475000px;}
.yd7_c01302{bottom:799.200000px;}
.yda_c01302{bottom:800.070000px;}
.ydb_c01302{bottom:802.650000px;}
.yd8_c01302{bottom:803.520000px;}
.yd9_c01302{bottom:805.245000px;}
.y1db_c01302{bottom:813.885000px;}
.yd4_c01302{bottom:816.480000px;}
.yd3_c01302{bottom:819.075000px;}
.yd0_c01302{bottom:819.930000px;}
.yd6_c01302{bottom:820.800000px;}
.yd5_c01302{bottom:821.670000px;}
.yd1_c01302{bottom:822.525000px;}
.yd2_c01302{bottom:824.250000px;}
.ycd_c01302{bottom:835.485000px;}
.yce_c01302{bottom:836.355000px;}
.yca_c01302{bottom:841.530000px;}
.ycf_c01302{bottom:842.400000px;}
.ycc_c01302{bottom:843.270000px;}
.yc9_c01302{bottom:844.995000px;}
.ycb_c01302{bottom:845.850000px;}
.y1da_c01302{bottom:848.445000px;}
.yc8_c01302{bottom:851.910000px;}
.yc7_c01302{bottom:854.490000px;}
.yc6_c01302{bottom:855.360000px;}
.yc5_c01302{bottom:858.810000px;}
.yc1_c01302{bottom:859.680000px;}
.yc4_c01302{bottom:860.550000px;}
.yc3_c01302{bottom:862.275000px;}
.yc2_c01302{bottom:864.000000px;}
.y1d9_c01302{bottom:866.595000px;}
.y1d8_c01302{bottom:871.770000px;}
.yc0_c01302{bottom:877.830000px;}
.yb5_c01302{bottom:879.555000px;}
.ybd_c01302{bottom:881.280000px;}
.ybf_c01302{bottom:882.150000px;}
.yb0_c01302{bottom:883.005000px;}
.ybe_c01302{bottom:883.875000px;}
.yb6_c01302{bottom:885.600000px;}
.yba_c01302{bottom:886.470000px;}
.ybb_c01302{bottom:889.920000px;}
.yb9_c01302{bottom:890.790000px;}
.yb8_c01302{bottom:891.645000px;}
.yb7_c01302{bottom:893.370000px;}
.ybc_c01302{bottom:894.240000px;}
.y1d7_c01302{bottom:897.690000px;}
.yb1_c01302{bottom:900.285000px;}
.yb2_c01302{bottom:901.155000px;}
.yb4_c01302{bottom:902.880000px;}
.yb3_c01302{bottom:903.750000px;}
.yaf_c01302{bottom:905.475000px;}
.y1d6_c01302{bottom:908.925000px;}
.yae_c01302{bottom:914.970000px;}
.ya7_c01302{bottom:921.030000px;}
.yab_c01302{bottom:921.885000px;}
.yac_c01302{bottom:922.755000px;}
.ya9_c01302{bottom:923.610000px;}
.yaa_c01302{bottom:924.480000px;}
.ya8_c01302{bottom:925.350000px;}
.yad_c01302{bottom:927.075000px;}
.y1d5_c01302{bottom:928.800000px;}
.ya5_c01302{bottom:939.165000px;}
.ya6_c01302{bottom:940.890000px;}
.y1d4_c01302{bottom:943.485000px;}
.ya4_c01302{bottom:944.355000px;}
.ya2_c01302{bottom:948.675000px;}
.ya3_c01302{bottom:949.530000px;}
.y1d3_c01302{bottom:952.995000px;}
.y1d2_c01302{bottom:954.720000px;}
.y9e_c01302{bottom:959.040000px;}
.ya1_c01302{bottom:962.490000px;}
.ya0_c01302{bottom:964.230000px;}
.y9f_c01302{bottom:965.085000px;}
.y9d_c01302{bottom:969.405000px;}
.y9b_c01302{bottom:978.915000px;}
.y98_c01302{bottom:979.770000px;}
.y9a_c01302{bottom:981.510000px;}
.y99_c01302{bottom:984.090000px;}
.y9c_c01302{bottom:984.960000px;}
.y1d0_c01302{bottom:991.005000px;}
.y97_c01302{bottom:993.600000px;}
.y92_c01302{bottom:994.470000px;}
.y95_c01302{bottom:995.325000px;}
.y96_c01302{bottom:996.195000px;}
.y1d1_c01302{bottom:998.790000px;}
.y91_c01302{bottom:1000.515000px;}
.y94_c01302{bottom:1002.240000px;}
.y93_c01302{bottom:1004.835000px;}
.y1cf_c01302{bottom:1005.690000px;}
.y1ce_c01302{bottom:1010.880000px;}
.y8f_c01302{bottom:1018.650000px;}
.y90_c01302{bottom:1019.520000px;}
.y8d_c01302{bottom:1021.245000px;}
.y8b_c01302{bottom:1022.115000px;}
.y8c_c01302{bottom:1022.970000px;}
.y8e_c01302{bottom:1024.710000px;}
.y8a_c01302{bottom:1036.800000px;}
.y85_c01302{bottom:1037.670000px;}
.y88_c01302{bottom:1039.395000px;}
.y83_c01302{bottom:1041.990000px;}
.y84_c01302{bottom:1042.845000px;}
.y86_c01302{bottom:1043.715000px;}
.y87_c01302{bottom:1044.570000px;}
.y89_c01302{bottom:1045.440000px;}
.y7d_c01302{bottom:1058.400000px;}
.y80_c01302{bottom:1060.125000px;}
.y7e_c01302{bottom:1060.995000px;}
.y82_c01302{bottom:1061.850000px;}
.y7b_c01302{bottom:1062.720000px;}
.y7c_c01302{bottom:1063.590000px;}
.y81_c01302{bottom:1065.315000px;}
.y7a_c01302{bottom:1066.170000px;}
.y79_c01302{bottom:1067.910000px;}
.y7f_c01302{bottom:1068.765000px;}
.y71_c01302{bottom:1078.275000px;}
.y73_c01302{bottom:1079.130000px;}
.y75_c01302{bottom:1080.000000px;}
.y76_c01302{bottom:1080.870000px;}
.y78_c01302{bottom:1081.725000px;}
.y70_c01302{bottom:1082.595000px;}
.y74_c01302{bottom:1083.450000px;}
.y72_c01302{bottom:1084.320000px;}
.y6f_c01302{bottom:1085.190000px;}
.y77_c01302{bottom:1086.045000px;}
.y6c_c01302{bottom:1099.875000px;}
.y6b_c01302{bottom:1100.730000px;}
.y69_c01302{bottom:1104.195000px;}
.y6a_c01302{bottom:1105.050000px;}
.y6e_c01302{bottom:1105.920000px;}
.y6d_c01302{bottom:1106.790000px;}
.y67_c01302{bottom:1115.430000px;}
.y65_c01302{bottom:1117.155000px;}
.y68_c01302{bottom:1118.880000px;}
.y60_c01302{bottom:1119.750000px;}
.y62_c01302{bottom:1121.475000px;}
.y66_c01302{bottom:1122.330000px;}
.y61_c01302{bottom:1124.925000px;}
.y63_c01302{bottom:1125.795000px;}
.y64_c01302{bottom:1126.650000px;}
.y58_c01302{bottom:1139.610000px;}
.y5c_c01302{bottom:1140.480000px;}
.y5e_c01302{bottom:1141.350000px;}
.y5d_c01302{bottom:1143.075000px;}
.y5a_c01302{bottom:1143.930000px;}
.y5f_c01302{bottom:1144.800000px;}
.y59_c01302{bottom:1145.670000px;}
.y5b_c01302{bottom:1146.525000px;}
.y53_c01302{bottom:1158.630000px;}
.y52_c01302{bottom:1159.485000px;}
.y51_c01302{bottom:1160.355000px;}
.y57_c01302{bottom:1161.210000px;}
.y55_c01302{bottom:1164.675000px;}
.y54_c01302{bottom:1165.530000px;}
.y56_c01302{bottom:1167.270000px;}
.y4e_c01302{bottom:1178.490000px;}
.y4f_c01302{bottom:1179.360000px;}
.y48_c01302{bottom:1180.230000px;}
.y4d_c01302{bottom:1181.955000px;}
.y49_c01302{bottom:1183.680000px;}
.y46_c01302{bottom:1184.550000px;}
.y47_c01302{bottom:1185.405000px;}
.y4c_c01302{bottom:1186.275000px;}
.y4a_c01302{bottom:1187.130000px;}
.y50_c01302{bottom:1189.725000px;}
.y4b_c01302{bottom:1195.770000px;}
.y44_c01302{bottom:1198.365000px;}
.y3e_c01302{bottom:1199.235000px;}
.y3c_c01302{bottom:1200.090000px;}
.y3f_c01302{bottom:1200.960000px;}
.y43_c01302{bottom:1202.685000px;}
.y3d_c01302{bottom:1204.410000px;}
.y40_c01302{bottom:1207.005000px;}
.y41_c01302{bottom:1207.875000px;}
.y45_c01302{bottom:1210.470000px;}
.y1cd_c01302{bottom:1211.325000px;}
.y42_c01302{bottom:1214.790000px;}
.y39_c01302{bottom:1221.690000px;}
.y3a_c01302{bottom:1223.430000px;}
.y3b_c01302{bottom:1224.285000px;}
.y35_c01302{bottom:1225.155000px;}
.y38_c01302{bottom:1226.880000px;}
.y37_c01302{bottom:1228.605000px;}
.y36_c01302{bottom:1230.330000px;}
.y32_c01302{bottom:1241.565000px;}
.y33_c01302{bottom:1243.290000px;}
.y30_c01302{bottom:1244.160000px;}
.y2f_c01302{bottom:1245.885000px;}
.y31_c01302{bottom:1246.755000px;}
.y34_c01302{bottom:1248.480000px;}
.y29_c01302{bottom:1261.440000px;}
.y28_c01302{bottom:1262.310000px;}
.y2a_c01302{bottom:1263.165000px;}
.y2c_c01302{bottom:1264.035000px;}
.y27_c01302{bottom:1264.890000px;}
.y2b_c01302{bottom:1265.760000px;}
.y2e_c01302{bottom:1267.485000px;}
.y2d_c01302{bottom:1276.995000px;}
.y24_c01302{bottom:1280.445000px;}
.y25_c01302{bottom:1281.315000px;}
.y22_c01302{bottom:1282.170000px;}
.y20_c01302{bottom:1283.040000px;}
.y23_c01302{bottom:1283.910000px;}
.y26_c01302{bottom:1285.635000px;}
.y21_c01302{bottom:1286.490000px;}
.y1d_c01302{bottom:1288.230000px;}
.y1b_c01302{bottom:1290.810000px;}
.y15_c01302{bottom:1291.680000px;}
.y16_c01302{bottom:1292.550000px;}
.y1e_c01302{bottom:1294.275000px;}
.y18_c01302{bottom:1296.000000px;}
.y17_c01302{bottom:1296.870000px;}
.y1a_c01302{bottom:1297.725000px;}
.y1c_c01302{bottom:1298.595000px;}
.y19_c01302{bottom:1299.450000px;}
.y1f_c01302{bottom:1300.320000px;}
.yf_c01302{bottom:1301.190000px;}
.y14_c01302{bottom:1302.045000px;}
.y10_c01302{bottom:1302.915000px;}
.y13_c01302{bottom:1303.770000px;}
.y11_c01302{bottom:1304.640000px;}
.ye_c01302{bottom:1306.365000px;}
.y12_c01302{bottom:1307.235000px;}
.yd_c01302{bottom:1308.090000px;}
.yc_c01302{bottom:1313.280000px;}
.y1cc_c01302{bottom:1314.150000px;}
.y9_c01302{bottom:1321.920000px;}
.y7_c01302{bottom:1322.790000px;}
.y8_c01302{bottom:1325.370000px;}
.yb_c01302{bottom:1327.110000px;}
.ya_c01302{bottom:1327.965000px;}
.y4_c01302{bottom:1349.565000px;}
.y6_c01302{bottom:1350.435000px;}
.y5_c01302{bottom:1355.610000px;}
.y3_c01302{bottom:1378.950000px;}
.y2_c01302{bottom:1379.805000px;}
.y1_c01302{bottom:1381.530000px;}
.h10_c01302{height:3.110063px;}
.h4_c01302{height:5.399414px;}
.h13_c01302{height:6.209326px;}
.h2_c01302{height:9.340986px;}
.h25_c01302{height:12.070313px;}
.h1c_c01302{height:12.418652px;}
.h3_c01302{height:15.550313px;}
.h15_c01302{height:18.681973px;}
.h21_c01302{height:21.759639px;}
.h24_c01302{height:23.140986px;}
.h17_c01302{height:24.891299px;}
.h18_c01302{height:27.968965px;}
.h14_c01302{height:31.100625px;}
.h19_c01302{height:34.232285px;}
.h11_c01302{height:37.309951px;}
.h16_c01302{height:40.441611px;}
.h8_c01302{height:43.519277px;}
.hc_c01302{height:46.650937px;}
.hd_c01302{height:49.782598px;}
.hf_c01302{height:52.860264px;}
.h22_c01302{height:53.262598px;}
.he_c01302{height:55.991924px;}
.h9_c01302{height:59.069590px;}
.h5_c01302{height:62.201250px;}
.hb_c01302{height:65.332910px;}
.h6_c01302{height:68.410576px;}
.ha_c01302{height:71.542236px;}
.h12_c01302{height:74.619902px;}
.h7_c01302{height:77.751563px;}
.h1a_c01302{height:80.883223px;}
.h1b_c01302{height:83.960889px;}
.h1f_c01302{height:87.092549px;}
.h1d_c01302{height:90.170215px;}
.h23_c01302{height:93.301875px;}
.h1e_c01302{height:96.433535px;}
.h26_c01302{height:111.983848px;}
.h20_c01302{height:133.743486px;}
.h27_c01302{height:195.944736px;}
.h1_c01302{height:1513.500000px;}
.h0_c01302{height:1513.725000px;}
.w1_c01302{width:1076.250000px;}
.w0_c01302{width:1076.550000px;}
.x0_c01302{left:0.000000px;}
.xe5_c01302{left:168.480000px;}
.x9f_c01302{left:174.525000px;}
.x80_c01302{left:177.120000px;}
.x101_c01302{left:178.845000px;}
.x7c_c01302{left:181.440000px;}
.x9_c01302{left:183.165000px;}
.x81_c01302{left:190.080000px;}
.x103_c01302{left:191.805000px;}
.x104_c01302{left:193.530000px;}
.x13_c01302{left:200.445000px;}
.x14_c01302{left:215.131650px;}
.xf8_c01302{left:218.595000px;}
.xaf_c01302{left:222.045000px;}
.x1f_c01302{left:223.770000px;}
.x38_c01302{left:225.510000px;}
.xbc_c01302{left:227.235000px;}
.x5_c01302{left:228.960000px;}
.xfc_c01302{left:230.685000px;}
.x102_c01302{left:232.410000px;}
.xa7_c01302{left:234.150000px;}
.xf0_c01302{left:237.600000px;}
.x52_c01302{left:241.050000px;}
.xdd_c01302{left:243.645000px;}
.xcb_c01302{left:246.240000px;}
.xa_c01302{left:247.965000px;}
.x39_c01302{left:253.155000px;}
.x20_c01302{left:255.750000px;}
.xd9_c01302{left:259.200000px;}
.x15_c01302{left:260.925000px;}
.xfd_c01302{left:265.245000px;}
.x2e_c01302{left:268.710000px;}
.x43_c01302{left:271.290000px;}
.x5c_c01302{left:273.885000px;}
.xf1_c01302{left:276.480000px;}
.xc1_c01302{left:278.205000px;}
.x4c_c01302{left:279.930000px;}
.x3a_c01302{left:282.525000px;}
.xb_c01302{left:285.120000px;}
.xc3_c01302{left:287.715000px;}
.x21_c01302{left:289.440000px;}
.x99_c01302{left:292.035000px;}
.xef_c01302{left:293.760000px;}
.x5d_c01302{left:295.485000px;}
.x6f_c01302{left:297.210000px;}
.xb0_c01302{left:299.805000px;}
.x69_c01302{left:301.530000px;}
.x75_c01302{left:304.125000px;}
.xe6_c01302{left:306.720000px;}
.x22_c01302{left:308.445000px;}
.x16_c01302{left:311.040000px;}
.xde_c01302{left:312.765000px;}
.x9a_c01302{left:317.085000px;}
.x2f_c01302{left:318.810000px;}
.x3b_c01302{left:322.275000px;}
.x64_c01302{left:324.000000px;}
.xd1_c01302{left:325.725000px;}
.xf2_c01302{left:327.450000px;}
.x44_c01302{left:330.045000px;}
.x23_c01302{left:332.640000px;}
.xb7_c01302{left:335.235000px;}
.xf3_c01302{left:336.960000px;}
.x6_c01302{left:339.555000px;}
.x76_c01302{left:341.280000px;}
.x30_c01302{left:343.005000px;}
.xf9_c01302{left:344.730000px;}
.x95_c01302{left:348.195000px;}
.xda_c01302{left:349.920000px;}
.xa8_c01302{left:352.515000px;}
.xc_c01302{left:355.110000px;}
.x5e_c01302{left:358.560000px;}
.x45_c01302{left:361.155000px;}
.x31_c01302{left:363.750000px;}
.x53_c01302{left:368.925000px;}
.x24_c01302{left:374.115000px;}
.x70_c01302{left:377.565000px;}
.xee_c01302{left:380.160000px;}
.x3c_c01302{left:381.885000px;}
.xfa_c01302{left:383.610000px;}
.x32_c01302{left:385.350000px;}
.x25_c01302{left:393.120000px;}
.xb2_c01302{left:395.715000px;}
.x4d_c01302{left:397.440000px;}
.x82_c01302{left:402.630000px;}
.x65_c01302{left:405.210000px;}
.x33_c01302{left:406.950000px;}
.x71_c01302{left:408.675000px;}
.x6a_c01302{left:410.400000px;}
.xa9_c01302{left:413.850000px;}
.xb3_c01302{left:416.445000px;}
.xa0_c01302{left:419.040000px;}
.xa1_c01302{left:420.765000px;}
.xf4_c01302{left:422.490000px;}
.xd2_c01302{left:424.229400px;}
.x85_c01302{left:428.550000px;}
.xa2_c01302{left:431.130000px;}
.x26_c01302{left:433.725000px;}
.xc4_c01302{left:436.320000px;}
.x27_c01302{left:438.915000px;}
.xdf_c01302{left:440.640000px;}
.x46_c01302{left:442.365000px;}
.x17_c01302{left:444.090000px;}
.x86_c01302{left:445.830000px;}
.xcf_c01302{left:447.555000px;}
.xe2_c01302{left:449.280000px;}
.xb8_c01302{left:452.730000px;}
.xd4_c01302{left:454.470000px;}
.x72_c01302{left:458.790000px;}
.xe9_c01302{left:464.835000px;}
.x3d_c01302{left:467.430000px;}
.x5f_c01302{left:470.880000px;}
.xd6_c01302{left:472.605000px;}
.x7_c01302{left:475.200000px;}
.xcc_c01302{left:478.650000px;}
.x54_c01302{left:482.115000px;}
.x18_c01302{left:483.840000px;}
.xfb_c01302{left:486.435000px;}
.x34_c01302{left:488.160000px;}
.x28_c01302{left:489.885000px;}
.xaa_c01302{left:491.610000px;}
.x6b_c01302{left:493.350000px;}
.xd0_c01302{left:496.800000px;}
.x90_c01302{left:500.250000px;}
.x19_c01302{left:503.715000px;}
.xf5_c01302{left:505.440000px;}
.xba_c01302{left:507.165000px;}
.xa3_c01302{left:508.890000px;}
.x100_c01302{left:512.355000px;}
.x55_c01302{left:514.080000px;}
.xff_c01302{left:515.805000px;}
.xe7_c01302{left:519.270000px;}
.x29_c01302{left:521.850000px;}
.xc5_c01302{left:524.445000px;}
.xe0_c01302{left:527.040000px;}
.x8c_c01302{left:529.635000px;}
.xc6_c01302{left:532.230000px;}
.x56_c01302{left:536.550000px;}
.xd_c01302{left:538.275000px;}
.x8d_c01302{left:540.000000px;}
.x60_c01302{left:549.510000px;}
.x6c_c01302{left:552.090000px;}
.xe4_c01302{left:553.830000px;}
.x1a_c01302{left:555.555000px;}
.x77_c01302{left:557.280000px;}
.x87_c01302{left:559.005000px;}
.xe8_c01302{left:562.470000px;}
.x3e_c01302{left:565.050000px;}
.x7d_c01302{left:567.645000px;}
.x3f_c01302{left:570.240000px;}
.xe_c01302{left:573.690000px;}
.x83_c01302{left:578.010000px;}
.x35_c01302{left:580.605000px;}
.x47_c01302{left:583.200000px;}
.xcd_c01302{left:585.795000px;}
.x2a_c01302{left:588.390000px;}
.x40_c01302{left:590.970000px;}
.x2b_c01302{left:594.435000px;}
.xa4_c01302{left:597.885000px;}
.x57_c01302{left:599.610000px;}
.x4e_c01302{left:601.350000px;}
.xec_c01302{left:603.075000px;}
.xc7_c01302{left:604.800000px;}
.xf_c01302{left:606.525000px;}
.x2c_c01302{left:608.250000px;}
.xf6_c01302{left:611.715000px;}
.x61_c01302{left:613.440000px;}
.xab_c01302{left:616.035000px;}
.xe3_c01302{left:617.760000px;}
.x73_c01302{left:619.485000px;}
.xc9_c01302{left:621.210000px;}
.xbd_c01302{left:623.805000px;}
.x10_c01302{left:625.530000px;}
.x6d_c01302{left:628.125000px;}
.x8e_c01302{left:630.720000px;}
.xc0_c01302{left:632.445000px;}
.x96_c01302{left:634.170000px;}
.x78_c01302{left:637.635000px;}
.x88_c01302{left:642.810000px;}
.x66_c01302{left:645.405000px;}
.x84_c01302{left:647.130000px;}
.x8_c01302{left:649.725000px;}
.xc2_c01302{left:653.190000px;}
.x8a_c01302{left:654.915000px;}
.x91_c01302{left:659.235000px;}
.x7e_c01302{left:660.960000px;}
.x97_c01302{left:663.555000px;}
.x58_c01302{left:667.875000px;}
.x41_c01302{left:669.600000px;}
.x11_c01302{left:673.920000px;}
.x4f_c01302{left:676.515000px;}
.x67_c01302{left:679.110000px;}
.x48_c01302{left:680.835000px;}
.xb4_c01302{left:683.430000px;}
.x89_c01302{left:689.475000px;}
.x1b_c01302{left:693.795000px;}
.x92_c01302{left:696.390000px;}
.x8b_c01302{left:698.970000px;}
.x9d_c01302{left:701.565000px;}
.x50_c01302{left:706.755000px;}
.xb5_c01302{left:710.205000px;}
.xca_c01302{left:711.930000px;}
.xac_c01302{left:714.525000px;}
.x1c_c01302{left:716.250000px;}
.xbe_c01302{left:717.990000px;}
.x62_c01302{left:719.715000px;}
.x9b_c01302{left:726.630000px;}
.xce_c01302{left:729.210000px;}
.xae_c01302{left:732.675000px;}
.x74_c01302{left:734.400000px;}
.xb6_c01302{left:736.125000px;}
.xa5_c01302{left:738.720000px;}
.xd5_c01302{left:741.315000px;}
.x79_c01302{left:743.040000px;}
.xdb_c01302{left:744.765000px;}
.x59_c01302{left:746.490000px;}
.x36_c01302{left:749.955000px;}
.x1d_c01302{left:755.130000px;}
.xea_c01302{left:757.725000px;}
.x6e_c01302{left:760.320000px;}
.xe1_c01302{left:762.045000px;}
.x63_c01302{left:764.640000px;}
.x2d_c01302{left:768.090000px;}
.x93_c01302{left:770.685000px;}
.x12_c01302{left:772.410000px;}
.xbf_c01302{left:779.325000px;}
.xfe_c01302{left:781.050000px;}
.x49_c01302{left:783.645000px;}
.x42_c01302{left:786.240000px;}
.xeb_c01302{left:788.835000px;}
.x94_c01302{left:791.430000px;}
.xed_c01302{left:793.155912px;}
.x68_c01302{left:795.750000px;}
.x7a_c01302{left:797.475000px;}
.xc8_c01302{left:800.070000px;}
.xbb_c01302{left:802.650000px;}
.x37_c01302{left:804.390000px;}
.xf7_c01302{left:806.115000px;}
.xb1_c01302{left:807.840000px;}
.xb9_c01302{left:810.435000px;}
.x1e_c01302{left:812.160000px;}
.x8f_c01302{left:813.885000px;}
.x9c_c01302{left:816.480000px;}
.x98_c01302{left:819.075000px;}
.x4a_c01302{left:822.525000px;}
.x5a_c01302{left:825.120000px;}
.x4b_c01302{left:832.890000px;}
.x51_c01302{left:834.630000px;}
.x7b_c01302{left:838.950000px;}
.xad_c01302{left:845.850000px;}
.xd7_c01302{left:848.445000px;}
.x5b_c01302{left:851.040000px;}
.x9e_c01302{left:852.765000px;}
.xa6_c01302{left:854.490000px;}
.xdc_c01302{left:865.725000px;}
.xd3_c01302{left:867.450000px;}
.xd8_c01302{left:882.150000px;}
.x1_c01302{left:902.010000px;}
.x7f_c01302{left:903.750000px;}
.x2_c01302{left:907.200000px;}
.x3_c01302{left:909.795000px;}
.x4_c01302{left:913.245000px;}
.x10b_c01302{left:961.635000px;}
.x10a_c01302{left:963.360000px;}
.x107_c01302{left:968.550000px;}
.x108_c01302{left:976.320000px;}
.x109_c01302{left:978.915000px;}
.x10c_c01302{left:1023.840000px;}
.x105_c01302{left:1031.610000px;}
.x106_c01302{left:1043.715000px;}
.x10d_c01302{left:1062.720000px;}
@media print{
.v3_c01302{vertical-align:-6.133333pt;}
.v1_c01302{vertical-align:-3.040000pt;}
.v0_c01302{vertical-align:0.000000pt;}
.v2_c01302{vertical-align:3.093333pt;}
.v4_c01302{vertical-align:12.266667pt;}
.ls2_c01302{letter-spacing:0.000000pt;}
.ls0_c01302{letter-spacing:14.481280pt;}
.ls1_c01302{letter-spacing:60.599723pt;}
.ws1_c01302{word-spacing:-17.441760pt;}
.ws2_c01302{word-spacing:-13.692587pt;}
.ws0_c01302{word-spacing:-13.599467pt;}
.ws3_c01302{word-spacing:0.000000pt;}
.fse_c01302{font-size:3.072000pt;}
.fs2_c01302{font-size:5.333333pt;}
.fs11_c01302{font-size:6.133333pt;}
.fs0_c01302{font-size:9.226667pt;}
.fs1a_c01302{font-size:12.266667pt;}
.fs1_c01302{font-size:15.360000pt;}
.fs13_c01302{font-size:18.453333pt;}
.fs1f_c01302{font-size:21.493333pt;}
.fs15_c01302{font-size:24.586667pt;}
.fs16_c01302{font-size:27.626667pt;}
.fs12_c01302{font-size:30.720000pt;}
.fs17_c01302{font-size:33.813333pt;}
.fsf_c01302{font-size:36.853333pt;}
.fs14_c01302{font-size:39.946667pt;}
.fs6_c01302{font-size:42.986667pt;}
.fsa_c01302{font-size:46.080000pt;}
.fsb_c01302{font-size:49.173333pt;}
.fsd_c01302{font-size:52.213333pt;}
.fsc_c01302{font-size:55.306667pt;}
.fs7_c01302{font-size:58.346667pt;}
.fs3_c01302{font-size:61.440000pt;}
.fs9_c01302{font-size:64.533333pt;}
.fs4_c01302{font-size:67.573333pt;}
.fs8_c01302{font-size:70.666667pt;}
.fs10_c01302{font-size:73.706667pt;}
.fs5_c01302{font-size:76.800000pt;}
.fs18_c01302{font-size:79.893333pt;}
.fs19_c01302{font-size:82.933333pt;}
.fs1d_c01302{font-size:86.026667pt;}
.fs1b_c01302{font-size:89.066667pt;}
.fs20_c01302{font-size:92.160000pt;}
.fs1c_c01302{font-size:95.253333pt;}
.fs21_c01302{font-size:110.613333pt;}
.fs1e_c01302{font-size:132.106667pt;}
.fs22_c01302{font-size:193.546667pt;}
.y0_c01302{bottom:0.000000pt;}
.y1ca_c01302{bottom:162.053333pt;}
.y1cb_c01302{bottom:164.346667pt;}
.y1c9_c01302{bottom:165.893333pt;}
.y1c7_c01302{bottom:166.653333pt;}
.y1c6_c01302{bottom:167.426667pt;}
.y1c4_c01302{bottom:169.733333pt;}
.y1c8_c01302{bottom:171.266667pt;}
.y1c5_c01302{bottom:173.573333pt;}
.y1c3_c01302{bottom:181.253333pt;}
.y1bf_c01302{bottom:184.320000pt;}
.y1c2_c01302{bottom:185.093333pt;}
.y1be_c01302{bottom:185.853333pt;}
.y1c0_c01302{bottom:187.386667pt;}
.y1c1_c01302{bottom:189.693333pt;}
.y1bc_c01302{bottom:191.226667pt;}
.y1bd_c01302{bottom:194.306667pt;}
.y1bb_c01302{bottom:207.360000pt;}
.y1b6_c01302{bottom:208.133333pt;}
.y1b7_c01302{bottom:209.666667pt;}
.y1b5_c01302{bottom:211.973333pt;}
.y1b8_c01302{bottom:218.106667pt;}
.y1b9_c01302{bottom:218.880000pt;}
.y1ba_c01302{bottom:219.653333pt;}
.y1b2_c01302{bottom:220.413333pt;}
.y1b1_c01302{bottom:221.186667pt;}
.y1ae_c01302{bottom:222.720000pt;}
.y1af_c01302{bottom:223.493333pt;}
.y1b4_c01302{bottom:224.253333pt;}
.y1b3_c01302{bottom:225.026667pt;}
.y1b0_c01302{bottom:225.786667pt;}
.y1ab_c01302{bottom:238.853333pt;}
.y1a7_c01302{bottom:239.613333pt;}
.y1a9_c01302{bottom:240.386667pt;}
.y1df_c01302{bottom:241.146667pt;}
.y1ac_c01302{bottom:241.920000pt;}
.y1a8_c01302{bottom:243.453333pt;}
.y1ad_c01302{bottom:244.226667pt;}
.y1aa_c01302{bottom:244.986667pt;}
.y1a6_c01302{bottom:245.760000pt;}
.y1a5_c01302{bottom:251.906667pt;}
.y1a4_c01302{bottom:256.506667pt;}
.y19d_c01302{bottom:257.280000pt;}
.y1a3_c01302{bottom:258.053333pt;}
.y1a0_c01302{bottom:261.120000pt;}
.y1a1_c01302{bottom:267.266667pt;}
.y1a2_c01302{bottom:271.866667pt;}
.y19e_c01302{bottom:273.413333pt;}
.y19f_c01302{bottom:274.946667pt;}
.y19a_c01302{bottom:275.706667pt;}
.y193_c01302{bottom:276.480000pt;}
.y195_c01302{bottom:277.253333pt;}
.y194_c01302{bottom:278.013333pt;}
.y197_c01302{bottom:278.786667pt;}
.y19c_c01302{bottom:279.546667pt;}
.y19b_c01302{bottom:280.320000pt;}
.y198_c01302{bottom:281.093333pt;}
.y196_c01302{bottom:281.853333pt;}
.y192_c01302{bottom:284.160000pt;}
.y190_c01302{bottom:284.933333pt;}
.y199_c01302{bottom:286.466667pt;}
.y191_c01302{bottom:287.226667pt;}
.y18d_c01302{bottom:288.000000pt;}
.y18a_c01302{bottom:288.773333pt;}
.y189_c01302{bottom:289.533333pt;}
.y18b_c01302{bottom:290.306667pt;}
.y18f_c01302{bottom:291.066667pt;}
.y18c_c01302{bottom:291.840000pt;}
.y18e_c01302{bottom:292.613333pt;}
.y182_c01302{bottom:294.906667pt;}
.y185_c01302{bottom:296.453333pt;}
.y181_c01302{bottom:298.746667pt;}
.y183_c01302{bottom:299.520000pt;}
.y184_c01302{bottom:300.293333pt;}
.y186_c01302{bottom:301.053333pt;}
.y187_c01302{bottom:304.133333pt;}
.y188_c01302{bottom:310.266667pt;}
.y17b_c01302{bottom:312.573333pt;}
.y17c_c01302{bottom:313.346667pt;}
.y17a_c01302{bottom:314.880000pt;}
.y17e_c01302{bottom:315.653333pt;}
.y179_c01302{bottom:316.413333pt;}
.y180_c01302{bottom:317.186667pt;}
.y17d_c01302{bottom:318.720000pt;}
.y17f_c01302{bottom:319.493333pt;}
.y174_c01302{bottom:329.466667pt;}
.y172_c01302{bottom:331.013333pt;}
.y171_c01302{bottom:331.773333pt;}
.y170_c01302{bottom:332.546667pt;}
.y175_c01302{bottom:334.080000pt;}
.y16f_c01302{bottom:335.613333pt;}
.y173_c01302{bottom:336.386667pt;}
.y177_c01302{bottom:337.920000pt;}
.y178_c01302{bottom:339.453333pt;}
.y176_c01302{bottom:342.533333pt;}
.y16e_c01302{bottom:343.293333pt;}
.y168_c01302{bottom:344.826667pt;}
.y16a_c01302{bottom:345.600000pt;}
.y16d_c01302{bottom:346.373333pt;}
.y16c_c01302{bottom:350.213333pt;}
.y16b_c01302{bottom:350.973333pt;}
.y169_c01302{bottom:353.280000pt;}
.y162_c01302{bottom:366.333333pt;}
.y163_c01302{bottom:367.866667pt;}
.y164_c01302{bottom:368.640000pt;}
.y165_c01302{bottom:373.253333pt;}
.y167_c01302{bottom:374.013333pt;}
.y166_c01302{bottom:380.160000pt;}
.y160_c01302{bottom:384.773333pt;}
.y15e_c01302{bottom:385.533333pt;}
.y15b_c01302{bottom:387.066667pt;}
.y161_c01302{bottom:389.373333pt;}
.y15d_c01302{bottom:390.906667pt;}
.y15c_c01302{bottom:391.680000pt;}
.y15f_c01302{bottom:400.893333pt;}
.y15a_c01302{bottom:401.666667pt;}
.y159_c01302{bottom:403.973333pt;}
.y158_c01302{bottom:405.506667pt;}
.y157_c01302{bottom:406.266667pt;}
.y155_c01302{bottom:408.573333pt;}
.y156_c01302{bottom:409.346667pt;}
.y154_c01302{bottom:420.866667pt;}
.y151_c01302{bottom:423.173333pt;}
.y14e_c01302{bottom:423.933333pt;}
.y152_c01302{bottom:425.466667pt;}
.y153_c01302{bottom:426.240000pt;}
.y14d_c01302{bottom:427.013333pt;}
.y14f_c01302{bottom:429.306667pt;}
.y150_c01302{bottom:434.693333pt;}
.y14c_c01302{bottom:438.533333pt;}
.y149_c01302{bottom:439.293333pt;}
.y14b_c01302{bottom:440.826667pt;}
.y146_c01302{bottom:441.600000pt;}
.y147_c01302{bottom:443.906667pt;}
.y145_c01302{bottom:444.666667pt;}
.y14a_c01302{bottom:445.440000pt;}
.y148_c01302{bottom:446.213333pt;}
.y140_c01302{bottom:456.960000pt;}
.y13f_c01302{bottom:457.733333pt;}
.y13e_c01302{bottom:459.266667pt;}
.y144_c01302{bottom:460.800000pt;}
.y141_c01302{bottom:461.573333pt;}
.y13d_c01302{bottom:462.333333pt;}
.y142_c01302{bottom:466.946667pt;}
.y143_c01302{bottom:469.253333pt;}
.y13c_c01302{bottom:474.626667pt;}
.y138_c01302{bottom:476.160000pt;}
.y13b_c01302{bottom:476.933333pt;}
.y139_c01302{bottom:480.773333pt;}
.y13a_c01302{bottom:481.533333pt;}
.y134_c01302{bottom:493.053333pt;}
.y132_c01302{bottom:493.826667pt;}
.y136_c01302{bottom:494.586667pt;}
.y131_c01302{bottom:496.893333pt;}
.y137_c01302{bottom:497.666667pt;}
.y133_c01302{bottom:498.426667pt;}
.y135_c01302{bottom:499.973333pt;}
.y12f_c01302{bottom:510.720000pt;}
.y12e_c01302{bottom:512.253333pt;}
.y12b_c01302{bottom:513.026667pt;}
.y130_c01302{bottom:515.333333pt;}
.y12d_c01302{bottom:516.866667pt;}
.y12c_c01302{bottom:517.626667pt;}
.y128_c01302{bottom:529.146667pt;}
.y122_c01302{bottom:530.693333pt;}
.y126_c01302{bottom:532.986667pt;}
.y129_c01302{bottom:533.760000pt;}
.y127_c01302{bottom:534.533333pt;}
.y124_c01302{bottom:536.066667pt;}
.y125_c01302{bottom:538.373333pt;}
.y12a_c01302{bottom:539.133333pt;}
.y123_c01302{bottom:540.666667pt;}
.y1de_c01302{bottom:542.973333pt;}
.y121_c01302{bottom:546.053333pt;}
.y120_c01302{bottom:546.813333pt;}
.y11f_c01302{bottom:548.346667pt;}
.y11d_c01302{bottom:549.120000pt;}
.y11c_c01302{bottom:551.426667pt;}
.y11e_c01302{bottom:553.733333pt;}
.y11b_c01302{bottom:564.480000pt;}
.y118_c01302{bottom:566.786667pt;}
.y117_c01302{bottom:567.546667pt;}
.y115_c01302{bottom:568.320000pt;}
.y11a_c01302{bottom:569.093333pt;}
.y119_c01302{bottom:569.853333pt;}
.y114_c01302{bottom:570.626667pt;}
.y116_c01302{bottom:571.386667pt;}
.y113_c01302{bottom:582.906667pt;}
.y10d_c01302{bottom:584.453333pt;}
.y10e_c01302{bottom:585.213333pt;}
.y10f_c01302{bottom:585.986667pt;}
.y112_c01302{bottom:586.746667pt;}
.y111_c01302{bottom:587.520000pt;}
.y110_c01302{bottom:589.053333pt;}
.y10b_c01302{bottom:598.266667pt;}
.y10c_c01302{bottom:599.040000pt;}
.y107_c01302{bottom:600.573333pt;}
.y10a_c01302{bottom:601.346667pt;}
.y106_c01302{bottom:603.653333pt;}
.y104_c01302{bottom:604.413333pt;}
.y108_c01302{bottom:606.720000pt;}
.y105_c01302{bottom:607.493333pt;}
.y109_c01302{bottom:613.626667pt;}
.y103_c01302{bottom:619.013333pt;}
.yfd_c01302{bottom:619.773333pt;}
.yfe_c01302{bottom:620.546667pt;}
.y102_c01302{bottom:621.306667pt;}
.y100_c01302{bottom:622.080000pt;}
.y101_c01302{bottom:622.853333pt;}
.yff_c01302{bottom:623.613333pt;}
.yfc_c01302{bottom:625.146667pt;}
.yfb_c01302{bottom:635.133333pt;}
.yfa_c01302{bottom:635.906667pt;}
.yf6_c01302{bottom:637.440000pt;}
.yf7_c01302{bottom:638.213333pt;}
.yf5_c01302{bottom:638.973333pt;}
.yf9_c01302{bottom:639.746667pt;}
.yf8_c01302{bottom:640.506667pt;}
.yf4_c01302{bottom:652.800000pt;}
.yf1_c01302{bottom:653.573333pt;}
.yef_c01302{bottom:655.866667pt;}
.yf0_c01302{bottom:656.640000pt;}
.yf3_c01302{bottom:657.413333pt;}
.yf2_c01302{bottom:658.173333pt;}
.y1dd_c01302{bottom:662.013333pt;}
.yee_c01302{bottom:670.466667pt;}
.yec_c01302{bottom:672.000000pt;}
.y1dc_c01302{bottom:672.773333pt;}
.yeb_c01302{bottom:673.533333pt;}
.ye9_c01302{bottom:674.306667pt;}
.ye7_c01302{bottom:675.840000pt;}
.yed_c01302{bottom:676.613333pt;}
.yea_c01302{bottom:678.906667pt;}
.ye8_c01302{bottom:679.680000pt;}
.ye5_c01302{bottom:689.666667pt;}
.ye6_c01302{bottom:690.426667pt;}
.ye2_c01302{bottom:691.200000pt;}
.ye0_c01302{bottom:691.973333pt;}
.ye3_c01302{bottom:693.506667pt;}
.ye4_c01302{bottom:694.266667pt;}
.ydf_c01302{bottom:696.573333pt;}
.ye1_c01302{bottom:697.346667pt;}
.ydc_c01302{bottom:707.333333pt;}
.yde_c01302{bottom:708.093333pt;}
.ydd_c01302{bottom:708.866667pt;}
.yd7_c01302{bottom:710.400000pt;}
.yda_c01302{bottom:711.173333pt;}
.ydb_c01302{bottom:713.466667pt;}
.yd8_c01302{bottom:714.240000pt;}
.yd9_c01302{bottom:715.773333pt;}
.y1db_c01302{bottom:723.453333pt;}
.yd4_c01302{bottom:725.760000pt;}
.yd3_c01302{bottom:728.066667pt;}
.yd0_c01302{bottom:728.826667pt;}
.yd6_c01302{bottom:729.600000pt;}
.yd5_c01302{bottom:730.373333pt;}
.yd1_c01302{bottom:731.133333pt;}
.yd2_c01302{bottom:732.666667pt;}
.ycd_c01302{bottom:742.653333pt;}
.yce_c01302{bottom:743.426667pt;}
.yca_c01302{bottom:748.026667pt;}
.ycf_c01302{bottom:748.800000pt;}
.ycc_c01302{bottom:749.573333pt;}
.yc9_c01302{bottom:751.106667pt;}
.ycb_c01302{bottom:751.866667pt;}
.y1da_c01302{bottom:754.173333pt;}
.yc8_c01302{bottom:757.253333pt;}
.yc7_c01302{bottom:759.546667pt;}
.yc6_c01302{bottom:760.320000pt;}
.yc5_c01302{bottom:763.386667pt;}
.yc1_c01302{bottom:764.160000pt;}
.yc4_c01302{bottom:764.933333pt;}
.yc3_c01302{bottom:766.466667pt;}
.yc2_c01302{bottom:768.000000pt;}
.y1d9_c01302{bottom:770.306667pt;}
.y1d8_c01302{bottom:774.906667pt;}
.yc0_c01302{bottom:780.293333pt;}
.yb5_c01302{bottom:781.826667pt;}
.ybd_c01302{bottom:783.360000pt;}
.ybf_c01302{bottom:784.133333pt;}
.yb0_c01302{bottom:784.893333pt;}
.ybe_c01302{bottom:785.666667pt;}
.yb6_c01302{bottom:787.200000pt;}
.yba_c01302{bottom:787.973333pt;}
.ybb_c01302{bottom:791.040000pt;}
.yb9_c01302{bottom:791.813333pt;}
.yb8_c01302{bottom:792.573333pt;}
.yb7_c01302{bottom:794.106667pt;}
.ybc_c01302{bottom:794.880000pt;}
.y1d7_c01302{bottom:797.946667pt;}
.yb1_c01302{bottom:800.253333pt;}
.yb2_c01302{bottom:801.026667pt;}
.yb4_c01302{bottom:802.560000pt;}
.yb3_c01302{bottom:803.333333pt;}
.yaf_c01302{bottom:804.866667pt;}
.y1d6_c01302{bottom:807.933333pt;}
.yae_c01302{bottom:813.306667pt;}
.ya7_c01302{bottom:818.693333pt;}
.yab_c01302{bottom:819.453333pt;}
.yac_c01302{bottom:820.226667pt;}
.ya9_c01302{bottom:820.986667pt;}
.yaa_c01302{bottom:821.760000pt;}
.ya8_c01302{bottom:822.533333pt;}
.yad_c01302{bottom:824.066667pt;}
.y1d5_c01302{bottom:825.600000pt;}
.ya5_c01302{bottom:834.813333pt;}
.ya6_c01302{bottom:836.346667pt;}
.y1d4_c01302{bottom:838.653333pt;}
.ya4_c01302{bottom:839.426667pt;}
.ya2_c01302{bottom:843.266667pt;}
.ya3_c01302{bottom:844.026667pt;}
.y1d3_c01302{bottom:847.106667pt;}
.y1d2_c01302{bottom:848.640000pt;}
.y9e_c01302{bottom:852.480000pt;}
.ya1_c01302{bottom:855.546667pt;}
.ya0_c01302{bottom:857.093333pt;}
.y9f_c01302{bottom:857.853333pt;}
.y9d_c01302{bottom:861.693333pt;}
.y9b_c01302{bottom:870.146667pt;}
.y98_c01302{bottom:870.906667pt;}
.y9a_c01302{bottom:872.453333pt;}
.y99_c01302{bottom:874.746667pt;}
.y9c_c01302{bottom:875.520000pt;}
.y1d0_c01302{bottom:880.893333pt;}
.y97_c01302{bottom:883.200000pt;}
.y92_c01302{bottom:883.973333pt;}
.y95_c01302{bottom:884.733333pt;}
.y96_c01302{bottom:885.506667pt;}
.y1d1_c01302{bottom:887.813333pt;}
.y91_c01302{bottom:889.346667pt;}
.y94_c01302{bottom:890.880000pt;}
.y93_c01302{bottom:893.186667pt;}
.y1cf_c01302{bottom:893.946667pt;}
.y1ce_c01302{bottom:898.560000pt;}
.y8f_c01302{bottom:905.466667pt;}
.y90_c01302{bottom:906.240000pt;}
.y8d_c01302{bottom:907.773333pt;}
.y8b_c01302{bottom:908.546667pt;}
.y8c_c01302{bottom:909.306667pt;}
.y8e_c01302{bottom:910.853333pt;}
.y8a_c01302{bottom:921.600000pt;}
.y85_c01302{bottom:922.373333pt;}
.y88_c01302{bottom:923.906667pt;}
.y83_c01302{bottom:926.213333pt;}
.y84_c01302{bottom:926.973333pt;}
.y86_c01302{bottom:927.746667pt;}
.y87_c01302{bottom:928.506667pt;}
.y89_c01302{bottom:929.280000pt;}
.y7d_c01302{bottom:940.800000pt;}
.y80_c01302{bottom:942.333333pt;}
.y7e_c01302{bottom:943.106667pt;}
.y82_c01302{bottom:943.866667pt;}
.y7b_c01302{bottom:944.640000pt;}
.y7c_c01302{bottom:945.413333pt;}
.y81_c01302{bottom:946.946667pt;}
.y7a_c01302{bottom:947.706667pt;}
.y79_c01302{bottom:949.253333pt;}
.y7f_c01302{bottom:950.013333pt;}
.y71_c01302{bottom:958.466667pt;}
.y73_c01302{bottom:959.226667pt;}
.y75_c01302{bottom:960.000000pt;}
.y76_c01302{bottom:960.773333pt;}
.y78_c01302{bottom:961.533333pt;}
.y70_c01302{bottom:962.306667pt;}
.y74_c01302{bottom:963.066667pt;}
.y72_c01302{bottom:963.840000pt;}
.y6f_c01302{bottom:964.613333pt;}
.y77_c01302{bottom:965.373333pt;}
.y6c_c01302{bottom:977.666667pt;}
.y6b_c01302{bottom:978.426667pt;}
.y69_c01302{bottom:981.506667pt;}
.y6a_c01302{bottom:982.266667pt;}
.y6e_c01302{bottom:983.040000pt;}
.y6d_c01302{bottom:983.813333pt;}
.y67_c01302{bottom:991.493333pt;}
.y65_c01302{bottom:993.026667pt;}
.y68_c01302{bottom:994.560000pt;}
.y60_c01302{bottom:995.333333pt;}
.y62_c01302{bottom:996.866667pt;}
.y66_c01302{bottom:997.626667pt;}
.y61_c01302{bottom:999.933333pt;}
.y63_c01302{bottom:1000.706667pt;}
.y64_c01302{bottom:1001.466667pt;}
.y58_c01302{bottom:1012.986667pt;}
.y5c_c01302{bottom:1013.760000pt;}
.y5e_c01302{bottom:1014.533333pt;}
.y5d_c01302{bottom:1016.066667pt;}
.y5a_c01302{bottom:1016.826667pt;}
.y5f_c01302{bottom:1017.600000pt;}
.y59_c01302{bottom:1018.373333pt;}
.y5b_c01302{bottom:1019.133333pt;}
.y53_c01302{bottom:1029.893333pt;}
.y52_c01302{bottom:1030.653333pt;}
.y51_c01302{bottom:1031.426667pt;}
.y57_c01302{bottom:1032.186667pt;}
.y55_c01302{bottom:1035.266667pt;}
.y54_c01302{bottom:1036.026667pt;}
.y56_c01302{bottom:1037.573333pt;}
.y4e_c01302{bottom:1047.546667pt;}
.y4f_c01302{bottom:1048.320000pt;}
.y48_c01302{bottom:1049.093333pt;}
.y4d_c01302{bottom:1050.626667pt;}
.y49_c01302{bottom:1052.160000pt;}
.y46_c01302{bottom:1052.933333pt;}
.y47_c01302{bottom:1053.693333pt;}
.y4c_c01302{bottom:1054.466667pt;}
.y4a_c01302{bottom:1055.226667pt;}
.y50_c01302{bottom:1057.533333pt;}
.y4b_c01302{bottom:1062.906667pt;}
.y44_c01302{bottom:1065.213333pt;}
.y3e_c01302{bottom:1065.986667pt;}
.y3c_c01302{bottom:1066.746667pt;}
.y3f_c01302{bottom:1067.520000pt;}
.y43_c01302{bottom:1069.053333pt;}
.y3d_c01302{bottom:1070.586667pt;}
.y40_c01302{bottom:1072.893333pt;}
.y41_c01302{bottom:1073.666667pt;}
.y45_c01302{bottom:1075.973333pt;}
.y1cd_c01302{bottom:1076.733333pt;}
.y42_c01302{bottom:1079.813333pt;}
.y39_c01302{bottom:1085.946667pt;}
.y3a_c01302{bottom:1087.493333pt;}
.y3b_c01302{bottom:1088.253333pt;}
.y35_c01302{bottom:1089.026667pt;}
.y38_c01302{bottom:1090.560000pt;}
.y37_c01302{bottom:1092.093333pt;}
.y36_c01302{bottom:1093.626667pt;}
.y32_c01302{bottom:1103.613333pt;}
.y33_c01302{bottom:1105.146667pt;}
.y30_c01302{bottom:1105.920000pt;}
.y2f_c01302{bottom:1107.453333pt;}
.y31_c01302{bottom:1108.226667pt;}
.y34_c01302{bottom:1109.760000pt;}
.y29_c01302{bottom:1121.280000pt;}
.y28_c01302{bottom:1122.053333pt;}
.y2a_c01302{bottom:1122.813333pt;}
.y2c_c01302{bottom:1123.586667pt;}
.y27_c01302{bottom:1124.346667pt;}
.y2b_c01302{bottom:1125.120000pt;}
.y2e_c01302{bottom:1126.653333pt;}
.y2d_c01302{bottom:1135.106667pt;}
.y24_c01302{bottom:1138.173333pt;}
.y25_c01302{bottom:1138.946667pt;}
.y22_c01302{bottom:1139.706667pt;}
.y20_c01302{bottom:1140.480000pt;}
.y23_c01302{bottom:1141.253333pt;}
.y26_c01302{bottom:1142.786667pt;}
.y21_c01302{bottom:1143.546667pt;}
.y1d_c01302{bottom:1145.093333pt;}
.y1b_c01302{bottom:1147.386667pt;}
.y15_c01302{bottom:1148.160000pt;}
.y16_c01302{bottom:1148.933333pt;}
.y1e_c01302{bottom:1150.466667pt;}
.y18_c01302{bottom:1152.000000pt;}
.y17_c01302{bottom:1152.773333pt;}
.y1a_c01302{bottom:1153.533333pt;}
.y1c_c01302{bottom:1154.306667pt;}
.y19_c01302{bottom:1155.066667pt;}
.y1f_c01302{bottom:1155.840000pt;}
.yf_c01302{bottom:1156.613333pt;}
.y14_c01302{bottom:1157.373333pt;}
.y10_c01302{bottom:1158.146667pt;}
.y13_c01302{bottom:1158.906667pt;}
.y11_c01302{bottom:1159.680000pt;}
.ye_c01302{bottom:1161.213333pt;}
.y12_c01302{bottom:1161.986667pt;}
.yd_c01302{bottom:1162.746667pt;}
.yc_c01302{bottom:1167.360000pt;}
.y1cc_c01302{bottom:1168.133333pt;}
.y9_c01302{bottom:1175.040000pt;}
.y7_c01302{bottom:1175.813333pt;}
.y8_c01302{bottom:1178.106667pt;}
.yb_c01302{bottom:1179.653333pt;}
.ya_c01302{bottom:1180.413333pt;}
.y4_c01302{bottom:1199.613333pt;}
.y6_c01302{bottom:1200.386667pt;}
.y5_c01302{bottom:1204.986667pt;}
.y3_c01302{bottom:1225.733333pt;}
.y2_c01302{bottom:1226.493333pt;}
.y1_c01302{bottom:1228.026667pt;}
.h10_c01302{height:2.764500pt;}
.h4_c01302{height:4.799479pt;}
.h13_c01302{height:5.519401pt;}
.h2_c01302{height:8.303099pt;}
.h25_c01302{height:10.729167pt;}
.h1c_c01302{height:11.038802pt;}
.h3_c01302{height:13.822500pt;}
.h15_c01302{height:16.606198pt;}
.h21_c01302{height:19.341901pt;}
.h24_c01302{height:20.569766pt;}
.h17_c01302{height:22.125599pt;}
.h18_c01302{height:24.861302pt;}
.h14_c01302{height:27.645000pt;}
.h19_c01302{height:30.428698pt;}
.h11_c01302{height:33.164401pt;}
.h16_c01302{height:35.948099pt;}
.h8_c01302{height:38.683802pt;}
.hc_c01302{height:41.467500pt;}
.hd_c01302{height:44.251198pt;}
.hf_c01302{height:46.986901pt;}
.h22_c01302{height:47.344531pt;}
.he_c01302{height:49.770599pt;}
.h9_c01302{height:52.506302pt;}
.h5_c01302{height:55.290000pt;}
.hb_c01302{height:58.073698pt;}
.h6_c01302{height:60.809401pt;}
.ha_c01302{height:63.593099pt;}
.h12_c01302{height:66.328802pt;}
.h7_c01302{height:69.112500pt;}
.h1a_c01302{height:71.896198pt;}
.h1b_c01302{height:74.631901pt;}
.h1f_c01302{height:77.415599pt;}
.h1d_c01302{height:80.151302pt;}
.h23_c01302{height:82.935000pt;}
.h1e_c01302{height:85.718698pt;}
.h26_c01302{height:99.541198pt;}
.h20_c01302{height:118.883099pt;}
.h27_c01302{height:174.173099pt;}
.h1_c01302{height:1345.333333pt;}
.h0_c01302{height:1345.533333pt;}
.w1_c01302{width:956.666667pt;}
.w0_c01302{width:956.933333pt;}
.x0_c01302{left:0.000000pt;}
.xe5_c01302{left:149.760000pt;}
.x9f_c01302{left:155.133333pt;}
.x80_c01302{left:157.440000pt;}
.x101_c01302{left:158.973333pt;}
.x7c_c01302{left:161.280000pt;}
.x9_c01302{left:162.813333pt;}
.x81_c01302{left:168.960000pt;}
.x103_c01302{left:170.493333pt;}
.x104_c01302{left:172.026667pt;}
.x13_c01302{left:178.173333pt;}
.x14_c01302{left:191.228133pt;}
.xf8_c01302{left:194.306667pt;}
.xaf_c01302{left:197.373333pt;}
.x1f_c01302{left:198.906667pt;}
.x38_c01302{left:200.453333pt;}
.xbc_c01302{left:201.986667pt;}
.x5_c01302{left:203.520000pt;}
.xfc_c01302{left:205.053333pt;}
.x102_c01302{left:206.586667pt;}
.xa7_c01302{left:208.133333pt;}
.xf0_c01302{left:211.200000pt;}
.x52_c01302{left:214.266667pt;}
.xdd_c01302{left:216.573333pt;}
.xcb_c01302{left:218.880000pt;}
.xa_c01302{left:220.413333pt;}
.x39_c01302{left:225.026667pt;}
.x20_c01302{left:227.333333pt;}
.xd9_c01302{left:230.400000pt;}
.x15_c01302{left:231.933333pt;}
.xfd_c01302{left:235.773333pt;}
.x2e_c01302{left:238.853333pt;}
.x43_c01302{left:241.146667pt;}
.x5c_c01302{left:243.453333pt;}
.xf1_c01302{left:245.760000pt;}
.xc1_c01302{left:247.293333pt;}
.x4c_c01302{left:248.826667pt;}
.x3a_c01302{left:251.133333pt;}
.xb_c01302{left:253.440000pt;}
.xc3_c01302{left:255.746667pt;}
.x21_c01302{left:257.280000pt;}
.x99_c01302{left:259.586667pt;}
.xef_c01302{left:261.120000pt;}
.x5d_c01302{left:262.653333pt;}
.x6f_c01302{left:264.186667pt;}
.xb0_c01302{left:266.493333pt;}
.x69_c01302{left:268.026667pt;}
.x75_c01302{left:270.333333pt;}
.xe6_c01302{left:272.640000pt;}
.x22_c01302{left:274.173333pt;}
.x16_c01302{left:276.480000pt;}
.xde_c01302{left:278.013333pt;}
.x9a_c01302{left:281.853333pt;}
.x2f_c01302{left:283.386667pt;}
.x3b_c01302{left:286.466667pt;}
.x64_c01302{left:288.000000pt;}
.xd1_c01302{left:289.533333pt;}
.xf2_c01302{left:291.066667pt;}
.x44_c01302{left:293.373333pt;}
.x23_c01302{left:295.680000pt;}
.xb7_c01302{left:297.986667pt;}
.xf3_c01302{left:299.520000pt;}
.x6_c01302{left:301.826667pt;}
.x76_c01302{left:303.360000pt;}
.x30_c01302{left:304.893333pt;}
.xf9_c01302{left:306.426667pt;}
.x95_c01302{left:309.506667pt;}
.xda_c01302{left:311.040000pt;}
.xa8_c01302{left:313.346667pt;}
.xc_c01302{left:315.653333pt;}
.x5e_c01302{left:318.720000pt;}
.x45_c01302{left:321.026667pt;}
.x31_c01302{left:323.333333pt;}
.x53_c01302{left:327.933333pt;}
.x24_c01302{left:332.546667pt;}
.x70_c01302{left:335.613333pt;}
.xee_c01302{left:337.920000pt;}
.x3c_c01302{left:339.453333pt;}
.xfa_c01302{left:340.986667pt;}
.x32_c01302{left:342.533333pt;}
.x25_c01302{left:349.440000pt;}
.xb2_c01302{left:351.746667pt;}
.x4d_c01302{left:353.280000pt;}
.x82_c01302{left:357.893333pt;}
.x65_c01302{left:360.186667pt;}
.x33_c01302{left:361.733333pt;}
.x71_c01302{left:363.266667pt;}
.x6a_c01302{left:364.800000pt;}
.xa9_c01302{left:367.866667pt;}
.xb3_c01302{left:370.173333pt;}
.xa0_c01302{left:372.480000pt;}
.xa1_c01302{left:374.013333pt;}
.xf4_c01302{left:375.546667pt;}
.xd2_c01302{left:377.092800pt;}
.x85_c01302{left:380.933333pt;}
.xa2_c01302{left:383.226667pt;}
.x26_c01302{left:385.533333pt;}
.xc4_c01302{left:387.840000pt;}
.x27_c01302{left:390.146667pt;}
.xdf_c01302{left:391.680000pt;}
.x46_c01302{left:393.213333pt;}
.x17_c01302{left:394.746667pt;}
.x86_c01302{left:396.293333pt;}
.xcf_c01302{left:397.826667pt;}
.xe2_c01302{left:399.360000pt;}
.xb8_c01302{left:402.426667pt;}
.xd4_c01302{left:403.973333pt;}
.x72_c01302{left:407.813333pt;}
.xe9_c01302{left:413.186667pt;}
.x3d_c01302{left:415.493333pt;}
.x5f_c01302{left:418.560000pt;}
.xd6_c01302{left:420.093333pt;}
.x7_c01302{left:422.400000pt;}
.xcc_c01302{left:425.466667pt;}
.x54_c01302{left:428.546667pt;}
.x18_c01302{left:430.080000pt;}
.xfb_c01302{left:432.386667pt;}
.x34_c01302{left:433.920000pt;}
.x28_c01302{left:435.453333pt;}
.xaa_c01302{left:436.986667pt;}
.x6b_c01302{left:438.533333pt;}
.xd0_c01302{left:441.600000pt;}
.x90_c01302{left:444.666667pt;}
.x19_c01302{left:447.746667pt;}
.xf5_c01302{left:449.280000pt;}
.xba_c01302{left:450.813333pt;}
.xa3_c01302{left:452.346667pt;}
.x100_c01302{left:455.426667pt;}
.x55_c01302{left:456.960000pt;}
.xff_c01302{left:458.493333pt;}
.xe7_c01302{left:461.573333pt;}
.x29_c01302{left:463.866667pt;}
.xc5_c01302{left:466.173333pt;}
.xe0_c01302{left:468.480000pt;}
.x8c_c01302{left:470.786667pt;}
.xc6_c01302{left:473.093333pt;}
.x56_c01302{left:476.933333pt;}
.xd_c01302{left:478.466667pt;}
.x8d_c01302{left:480.000000pt;}
.x60_c01302{left:488.453333pt;}
.x6c_c01302{left:490.746667pt;}
.xe4_c01302{left:492.293333pt;}
.x1a_c01302{left:493.826667pt;}
.x77_c01302{left:495.360000pt;}
.x87_c01302{left:496.893333pt;}
.xe8_c01302{left:499.973333pt;}
.x3e_c01302{left:502.266667pt;}
.x7d_c01302{left:504.573333pt;}
.x3f_c01302{left:506.880000pt;}
.xe_c01302{left:509.946667pt;}
.x83_c01302{left:513.786667pt;}
.x35_c01302{left:516.093333pt;}
.x47_c01302{left:518.400000pt;}
.xcd_c01302{left:520.706667pt;}
.x2a_c01302{left:523.013333pt;}
.x40_c01302{left:525.306667pt;}
.x2b_c01302{left:528.386667pt;}
.xa4_c01302{left:531.453333pt;}
.x57_c01302{left:532.986667pt;}
.x4e_c01302{left:534.533333pt;}
.xec_c01302{left:536.066667pt;}
.xc7_c01302{left:537.600000pt;}
.xf_c01302{left:539.133333pt;}
.x2c_c01302{left:540.666667pt;}
.xf6_c01302{left:543.746667pt;}
.x61_c01302{left:545.280000pt;}
.xab_c01302{left:547.586667pt;}
.xe3_c01302{left:549.120000pt;}
.x73_c01302{left:550.653333pt;}
.xc9_c01302{left:552.186667pt;}
.xbd_c01302{left:554.493333pt;}
.x10_c01302{left:556.026667pt;}
.x6d_c01302{left:558.333333pt;}
.x8e_c01302{left:560.640000pt;}
.xc0_c01302{left:562.173333pt;}
.x96_c01302{left:563.706667pt;}
.x78_c01302{left:566.786667pt;}
.x88_c01302{left:571.386667pt;}
.x66_c01302{left:573.693333pt;}
.x84_c01302{left:575.226667pt;}
.x8_c01302{left:577.533333pt;}
.xc2_c01302{left:580.613333pt;}
.x8a_c01302{left:582.146667pt;}
.x91_c01302{left:585.986667pt;}
.x7e_c01302{left:587.520000pt;}
.x97_c01302{left:589.826667pt;}
.x58_c01302{left:593.666667pt;}
.x41_c01302{left:595.200000pt;}
.x11_c01302{left:599.040000pt;}
.x4f_c01302{left:601.346667pt;}
.x67_c01302{left:603.653333pt;}
.x48_c01302{left:605.186667pt;}
.xb4_c01302{left:607.493333pt;}
.x89_c01302{left:612.866667pt;}
.x1b_c01302{left:616.706667pt;}
.x92_c01302{left:619.013333pt;}
.x8b_c01302{left:621.306667pt;}
.x9d_c01302{left:623.613333pt;}
.x50_c01302{left:628.226667pt;}
.xb5_c01302{left:631.293333pt;}
.xca_c01302{left:632.826667pt;}
.xac_c01302{left:635.133333pt;}
.x1c_c01302{left:636.666667pt;}
.xbe_c01302{left:638.213333pt;}
.x62_c01302{left:639.746667pt;}
.x9b_c01302{left:645.893333pt;}
.xce_c01302{left:648.186667pt;}
.xae_c01302{left:651.266667pt;}
.x74_c01302{left:652.800000pt;}
.xb6_c01302{left:654.333333pt;}
.xa5_c01302{left:656.640000pt;}
.xd5_c01302{left:658.946667pt;}
.x79_c01302{left:660.480000pt;}
.xdb_c01302{left:662.013333pt;}
.x59_c01302{left:663.546667pt;}
.x36_c01302{left:666.626667pt;}
.x1d_c01302{left:671.226667pt;}
.xea_c01302{left:673.533333pt;}
.x6e_c01302{left:675.840000pt;}
.xe1_c01302{left:677.373333pt;}
.x63_c01302{left:679.680000pt;}
.x2d_c01302{left:682.746667pt;}
.x93_c01302{left:685.053333pt;}
.x12_c01302{left:686.586667pt;}
.xbf_c01302{left:692.733333pt;}
.xfe_c01302{left:694.266667pt;}
.x49_c01302{left:696.573333pt;}
.x42_c01302{left:698.880000pt;}
.xeb_c01302{left:701.186667pt;}
.x94_c01302{left:703.493333pt;}
.xed_c01302{left:705.027477pt;}
.x68_c01302{left:707.333333pt;}
.x7a_c01302{left:708.866667pt;}
.xc8_c01302{left:711.173333pt;}
.xbb_c01302{left:713.466667pt;}
.x37_c01302{left:715.013333pt;}
.xf7_c01302{left:716.546667pt;}
.xb1_c01302{left:718.080000pt;}
.xb9_c01302{left:720.386667pt;}
.x1e_c01302{left:721.920000pt;}
.x8f_c01302{left:723.453333pt;}
.x9c_c01302{left:725.760000pt;}
.x98_c01302{left:728.066667pt;}
.x4a_c01302{left:731.133333pt;}
.x5a_c01302{left:733.440000pt;}
.x4b_c01302{left:740.346667pt;}
.x51_c01302{left:741.893333pt;}
.x7b_c01302{left:745.733333pt;}
.xad_c01302{left:751.866667pt;}
.xd7_c01302{left:754.173333pt;}
.x5b_c01302{left:756.480000pt;}
.x9e_c01302{left:758.013333pt;}
.xa6_c01302{left:759.546667pt;}
.xdc_c01302{left:769.533333pt;}
.xd3_c01302{left:771.066667pt;}
.xd8_c01302{left:784.133333pt;}
.x1_c01302{left:801.786667pt;}
.x7f_c01302{left:803.333333pt;}
.x2_c01302{left:806.400000pt;}
.x3_c01302{left:808.706667pt;}
.x4_c01302{left:811.773333pt;}
.x10b_c01302{left:854.786667pt;}
.x10a_c01302{left:856.320000pt;}
.x107_c01302{left:860.933333pt;}
.x108_c01302{left:867.840000pt;}
.x109_c01302{left:870.146667pt;}
.x10c_c01302{left:910.080000pt;}
.x105_c01302{left:916.986667pt;}
.x106_c01302{left:927.746667pt;}
.x10d_c01302{left:944.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_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_2c573d967fe2a655cc6df23e.woff2')format("woff");}.ff1_c01303{font-family:ff1_c01303;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m53_c01303{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01303{transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01303{transform:matrix(0.039100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039100,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01303{transform:matrix(0.040100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040100,0.000000,0.000000,0.250000,0,0);}
.m1be_c01303{transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);}
.m22_c01303{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);}
.m1b6_c01303{transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.050150,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01303{transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055550,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01303{transform:matrix(0.060025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060025,0.000000,0.000000,0.250000,0,0);}
.me_c01303{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.mf6_c01303{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01303{transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);}
.m91_c01303{transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);}
.mf5_c01303{transform:matrix(0.096900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096900,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01303{transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);}
.m183_c01303{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);}
.m1b8_c01303{transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099925,0.000000,0.000000,0.250000,0,0);}
.m104_c01303{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);}
.m1bf_c01303{transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01303{transform:matrix(0.103775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103775,0.000000,0.000000,0.250000,0,0);}
.mad_c01303{transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104425,0.000000,0.000000,0.250000,0,0);}
.m188_c01303{transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112250,0.000000,0.000000,0.250000,0,0);}
.m12a_c01303{transform:matrix(0.114175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114175,0.000000,0.000000,0.250000,0,0);}
.m12b_c01303{transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114250,0.000000,0.000000,0.250000,0,0);}
.m181_c01303{transform:matrix(0.115475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115475,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01303{transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116900,0.000000,0.000000,0.250000,0,0);}
.m2e_c01303{transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);}
.m182_c01303{transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);}
.ma4_c01303{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01303{transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);}
.m6d_c01303{transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);}
.m13e_c01303{transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124800,0.000000,0.000000,0.250000,0,0);}
.m68_c01303{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m194_c01303{transform:matrix(0.125850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125850,0.000000,0.000000,0.250000,0,0);}
.m140_c01303{transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);}
.m155_c01303{transform:matrix(0.127425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127425,0.000000,0.000000,0.250000,0,0);}
.ma2_c01303{transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);}
.m190_c01303{transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128800,0.000000,0.000000,0.250000,0,0);}
.m165_c01303{transform:matrix(0.129475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129475,0.000000,0.000000,0.250000,0,0);}
.mf3_c01303{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m105_c01303{transform:matrix(0.130100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130100,0.000000,0.000000,0.250000,0,0);}
.m147_c01303{transform:matrix(0.130725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130725,0.000000,0.000000,0.250000,0,0);}
.m13a_c01303{transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);}
.m20_c01303{transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);}
.ma5_c01303{transform:matrix(0.134650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134650,0.000000,0.000000,0.250000,0,0);}
.m16b_c01303{transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);}
.m11e_c01303{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m61_c01303{transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);}
.m74_c01303{transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);}
.m67_c01303{transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);}
.ma0_c01303{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m5c_c01303{transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);}
.m11b_c01303{transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);}
.m31_c01303{transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);}
.mbe_c01303{transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);}
.m13d_c01303{transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);}
.m18f_c01303{transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139025,0.000000,0.000000,0.250000,0,0);}
.m8d_c01303{transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);}
.m77_c01303{transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);}
.m1af_c01303{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01303{transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);}
.m171_c01303{transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140725,0.000000,0.000000,0.250000,0,0);}
.m8b_c01303{transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);}
.mc0_c01303{transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);}
.m18d_c01303{transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141875,0.000000,0.000000,0.250000,0,0);}
.m45_c01303{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.ma7_c01303{transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);}
.m63_c01303{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mdf_c01303{transform:matrix(0.144300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144300,0.000000,0.000000,0.250000,0,0);}
.m109_c01303{transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);}
.m8f_c01303{transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);}
.m7a_c01303{transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);}
.m185_c01303{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.mec_c01303{transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147725,0.000000,0.000000,0.250000,0,0);}
.m133_c01303{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);}
.m14c_c01303{transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);}
.m115_c01303{transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);}
.m119_c01303{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.mc4_c01303{transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152075,0.000000,0.000000,0.250000,0,0);}
.ma1_c01303{transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);}
.m186_c01303{transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152925,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01303{transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01303{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.md_c01303{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);}
.mb0_c01303{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);}
.m17b_c01303{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);}
.m10e_c01303{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);}
.m12f_c01303{transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01303{transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);}
.m173_c01303{transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01303{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.m10b_c01303{transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);}
.mb8_c01303{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);}
.m141_c01303{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.m164_c01303{transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);}
.m79_c01303{transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);}
.mfa_c01303{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);}
.mb9_c01303{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m16d_c01303{transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);}
.m17e_c01303{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.ma9_c01303{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.ma8_c01303{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m17a_c01303{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);}
.m15e_c01303{transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);}
.m8c_c01303{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);}
.m16_c01303{transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);}
.m126_c01303{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);}
.m13b_c01303{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);}
.m99_c01303{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01303{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.m15f_c01303{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01303{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m15c_c01303{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.m174_c01303{transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);}
.mea_c01303{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);}
.mb5_c01303{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);}
.mf4_c01303{transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);}
.m167_c01303{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m56_c01303{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);}
.m11a_c01303{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.m128_c01303{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01303{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.m58_c01303{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m12_c01303{transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);}
.m120_c01303{transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);}
.md6_c01303{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);}
.m1ae_c01303{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m12e_c01303{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m95_c01303{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m10c_c01303{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);}
.mbf_c01303{transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);}
.m94_c01303{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);}
.m1e_c01303{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m2_c01303{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.md9_c01303{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m90_c01303{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);}
.m2c_c01303{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.m162_c01303{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m6a_c01303{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.m21_c01303{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);}
.m10d_c01303{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);}
.m161_c01303{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);}
.maf_c01303{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m112_c01303{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.m176_c01303{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m44_c01303{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m3b_c01303{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);}
.m15d_c01303{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.m114_c01303{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);}
.m103_c01303{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);}
.m16c_c01303{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);}
.m170_c01303{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);}
.m1a5_c01303{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.mba_c01303{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.me5_c01303{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m193_c01303{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);}
.m4_c01303{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.me8_c01303{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);}
.mb2_c01303{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);}
.m2b_c01303{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m49_c01303{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.m180_c01303{transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);}
.m27_c01303{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);}
.m18e_c01303{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m17_c01303{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m34_c01303{transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);}
.mf2_c01303{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);}
.m15a_c01303{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.m6b_c01303{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.m137_c01303{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m1f_c01303{transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);}
.md2_c01303{transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);}
.m9f_c01303{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m28_c01303{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.md1_c01303{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);}
.me1_c01303{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m51_c01303{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m178_c01303{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m17f_c01303{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.m59_c01303{transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);}
.m13c_c01303{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m154_c01303{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.m149_c01303{transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);}
.ma6_c01303{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);}
.mac_c01303{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m179_c01303{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);}
.m15_c01303{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m148_c01303{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.md3_c01303{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);}
.mb1_c01303{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);}
.md0_c01303{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m107_c01303{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.m9d_c01303{transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);}
.m142_c01303{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01303{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);}
.m156_c01303{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.mf1_c01303{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m1_c01303{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.m113_c01303{transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);}
.mb6_c01303{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.me9_c01303{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.m145_c01303{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.mae_c01303{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.mf0_c01303{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.m17d_c01303{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);}
.mb4_c01303{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.m172_c01303{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m46_c01303{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);}
.mf_c01303{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);}
.m3_c01303{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);}
.m175_c01303{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.m168_c01303{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);}
.m135_c01303{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.m8e_c01303{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.md7_c01303{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m9e_c01303{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.m55_c01303{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mc1_c01303{transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);}
.m122_c01303{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);}
.mda_c01303{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.m13f_c01303{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01303{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);}
.m48_c01303{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.m4a_c01303{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);}
.m19e_c01303{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m3d_c01303{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);}
.m64_c01303{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m111_c01303{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);}
.m23_c01303{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);}
.mb7_c01303{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m4c_c01303{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);}
.m4f_c01303{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.m191_c01303{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.m37_c01303{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);}
.m14f_c01303{transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);}
.mb3_c01303{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);}
.m150_c01303{transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01303{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.m143_c01303{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);}
.ma_c01303{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);}
.m4d_c01303{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);}
.mc9_c01303{transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);}
.m32_c01303{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);}
.mc3_c01303{transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);}
.m124_c01303{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);}
.mcd_c01303{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m131_c01303{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.m196_c01303{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01303{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);}
.m18b_c01303{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);}
.m116_c01303{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);}
.m16f_c01303{transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);}
.m1d_c01303{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);}
.m2d_c01303{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);}
.mbb_c01303{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);}
.m132_c01303{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.m69_c01303{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);}
.m4b_c01303{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);}
.m42_c01303{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.m108_c01303{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m24_c01303{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);}
.m129_c01303{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);}
.m14e_c01303{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.m157_c01303{transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);}
.m199_c01303{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.m11f_c01303{transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);}
.m14a_c01303{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m177_c01303{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.m5e_c01303{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m7e_c01303{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);}
.m1c8_c01303{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);}
.m123_c01303{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);}
.m14b_c01303{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);}
.m11c_c01303{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.mab_c01303{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);}
.me7_c01303{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);}
.mbd_c01303{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01303{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);}
.mdb_c01303{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m197_c01303{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);}
.m5d_c01303{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m93_c01303{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m29_c01303{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);}
.m1a0_c01303{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.m5f_c01303{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);}
.m92_c01303{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);}
.m6c_c01303{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.mbc_c01303{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.md4_c01303{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.m18c_c01303{transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);}
.m195_c01303{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);}
.m1ad_c01303{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);}
.m127_c01303{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);}
.m117_c01303{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);}
.mef_c01303{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);}
.m5a_c01303{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);}
.m6_c01303{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);}
.mcb_c01303{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m25_c01303{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);}
.m19b_c01303{transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);}
.m121_c01303{transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);}
.m198_c01303{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m160_c01303{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.mff_c01303{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m97_c01303{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01303{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);}
.m1a8_c01303{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);}
.m100_c01303{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);}
.m1a2_c01303{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);}
.m14_c01303{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_c01303{transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);}
.m80_c01303{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);}
.m2a_c01303{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);}
.mde_c01303{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m159_c01303{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m40_c01303{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m66_c01303{transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);}
.m10a_c01303{transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);}
.m192_c01303{transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);}
.m7c_c01303{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);}
.mc2_c01303{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m6e_c01303{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);}
.m110_c01303{transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);}
.m7d_c01303{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m83_c01303{transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);}
.m19a_c01303{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);}
.m10f_c01303{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);}
.m163_c01303{transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241800,0.000000,0.000000,0.250000,0,0);}
.m19c_c01303{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01303{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);}
.meb_c01303{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m166_c01303{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m169_c01303{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);}
.m118_c01303{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);}
.m106_c01303{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m12c_c01303{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);}
.m72_c01303{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);}
.mdc_c01303{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);}
.m1b9_c01303{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01303{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m146_c01303{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m19_c01303{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);}
.m7b_c01303{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01303{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);}
.md8_c01303{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);}
.m47_c01303{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);}
.m17c_c01303{transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247525,0.000000,0.000000,0.250000,0,0);}
.m16a_c01303{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.m130_c01303{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m62_c01303{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);}
.m7_c01303{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);}
.mdd_c01303{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);}
.mc6_c01303{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m57_c01303{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);}
.m33_c01303{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01303{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);}
.m16e_c01303{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);}
.m9_c01303{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);}
.m6f_c01303{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);}
.m50_c01303{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m18_c01303{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m98_c01303{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m35_c01303{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);}
.m36_c01303{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m41_c01303{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);}
.mc7_c01303{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);}
.m81_c01303{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01303{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);}
.m54_c01303{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.maa_c01303{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m88_c01303{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);}
.m65_c01303{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m9c_c01303{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);}
.m26_c01303{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);}
.m8_c01303{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01303{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m38_c01303{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);}
.m82_c01303{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb_c01303{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01303{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);}
.m0_c01303{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me3_c01303{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01303{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m89_c01303{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mee_c01303{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9a_c01303{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m52_c01303{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01303{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01303{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);}
.mc8_c01303{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8a_c01303{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m86_c01303{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01303{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.me0_c01303{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);}
.ma3_c01303{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);}
.m3c_c01303{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m125_c01303{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);}
.med_c01303{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m75_c01303{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m134_c01303{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m78_c01303{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m84_c01303{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m30_c01303{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);}
.m1b_c01303{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mcc_c01303{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01303{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);}
.m151_c01303{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m187_c01303{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m19d_c01303{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);}
.m2f_c01303{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mce_c01303{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mc_c01303{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m73_c01303{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.md5_c01303{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m10_c01303{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);}
.m1c1_c01303{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m85_c01303{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m71_c01303{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);}
.me4_c01303{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.me2_c01303{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mf9_c01303{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m14d_c01303{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m70_c01303{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);}
.m76_c01303{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01303{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m102_c01303{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m43_c01303{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m96_c01303{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m11_c01303{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m158_c01303{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mfd_c01303{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m87_c01303{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mfc_c01303{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);}
.m9b_c01303{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m13_c01303{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mca_c01303{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mc5_c01303{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01303{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);}
.m39_c01303{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m136_c01303{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);}
.m189_c01303{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m153_c01303{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m101_c01303{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.mcf_c01303{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.me6_c01303{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m19f_c01303{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);}
.m138_c01303{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01303{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01303{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.mfe_c01303{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.m60_c01303{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m139_c01303{transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);}
.mfb_c01303{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01303{transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.147500,0.000000,0.000000,0.250000,0,0);}
.m18a_c01303{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m12d_c01303{transform:matrix(1.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.232500,0.000000,0.000000,0.250000,0,0);}
.m144_c01303{transform:matrix(1.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.242500,0.000000,0.000000,0.250000,0,0);}
.m5_c01303{transform:matrix(1.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.425000,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01303{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.mf7_c01303{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m15b_c01303{transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.312500,0.000000,0.000000,0.250000,0,0);}
.m184_c01303{transform:matrix(3.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.660000,0.000000,0.000000,0.250000,0,0);}
.m152_c01303{transform:matrix(13.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(13.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(13.967500,0.000000,0.000000,0.250000,0,0);}
.v2_c01303{vertical-align:-6.900000px;}
.v0_c01303{vertical-align:0.000000px;}
.v1_c01303{vertical-align:3.420000px;}
.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;}
}
.ws3_c01303{word-spacing:-34.245420px;}
.ws4_c01303{word-spacing:-13.091040px;}
.ws0_c01303{word-spacing:-10.973807px;}
.ws1_c01303{word-spacing:-8.108400px;}
.ws5_c01303{word-spacing:0.000000px;}
.ws2_c01303{word-spacing:62.967840px;}
._0_c01303{width:7.491900px;}
.fc0_c01303{color:transparent;}
.fs16_c01303{font-size:3.456000px;}
.fs19_c01303{font-size:6.000000px;}
.fs18_c01303{font-size:6.900000px;}
.fs1d_c01303{font-size:10.380000px;}
.fs1c_c01303{font-size:13.800000px;}
.fs4_c01303{font-size:17.280000px;}
.fs13_c01303{font-size:20.760000px;}
.fsa_c01303{font-size:24.180000px;}
.fs11_c01303{font-size:27.660000px;}
.fs9_c01303{font-size:31.080000px;}
.fs10_c01303{font-size:34.560000px;}
.fs8_c01303{font-size:38.040000px;}
.fs7_c01303{font-size:41.460000px;}
.fs0_c01303{font-size:44.940000px;}
.fs14_c01303{font-size:48.360000px;}
.fsd_c01303{font-size:51.840000px;}
.fs5_c01303{font-size:55.320000px;}
.fsb_c01303{font-size:58.740000px;}
.fs15_c01303{font-size:62.220000px;}
.fse_c01303{font-size:65.640000px;}
.fs2_c01303{font-size:69.120000px;}
.fs6_c01303{font-size:72.600000px;}
.fs3_c01303{font-size:76.020000px;}
.fs1_c01303{font-size:79.500000px;}
.fs1a_c01303{font-size:82.920000px;}
.fsf_c01303{font-size:86.400000px;}
.fs17_c01303{font-size:89.880000px;}
.fs12_c01303{font-size:93.300000px;}
.fs1b_c01303{font-size:96.780000px;}
.fs21_c01303{font-size:100.200000px;}
.fs20_c01303{font-size:103.680000px;}
.fs1e_c01303{font-size:107.160000px;}
.fs22_c01303{font-size:110.580000px;}
.fs24_c01303{font-size:138.240000px;}
.fs1f_c01303{font-size:141.720000px;}
.fsc_c01303{font-size:155.520000px;}
.fs23_c01303{font-size:162.420000px;}
.y0_c01303{bottom:0.000000px;}
.y1bf_c01303{bottom:126.150000px;}
.y1be_c01303{bottom:128.730000px;}
.y1bd_c01303{bottom:132.195000px;}
.y1bb_c01303{bottom:146.880000px;}
.y1bc_c01303{bottom:148.605000px;}
.y1ba_c01303{bottom:149.475000px;}
.y1b8_c01303{bottom:151.200000px;}
.y1b7_c01303{bottom:156.390000px;}
.y1b6_c01303{bottom:157.245000px;}
.y1b9_c01303{bottom:159.840000px;}
.y1b4_c01303{bottom:165.885000px;}
.y1b2_c01303{bottom:167.610000px;}
.y1b3_c01303{bottom:168.480000px;}
.y1b5_c01303{bottom:169.350000px;}
.y1b1_c01303{bottom:170.205000px;}
.y1b0_c01303{bottom:171.930000px;}
.y1ae_c01303{bottom:172.800000px;}
.y1ad_c01303{bottom:173.670000px;}
.y1ac_c01303{bottom:174.525000px;}
.y1af_c01303{bottom:178.845000px;}
.y1ab_c01303{bottom:179.715000px;}
.y1aa_c01303{bottom:186.630000px;}
.y1a8_c01303{bottom:190.950000px;}
.y1a6_c01303{bottom:192.675000px;}
.y1a4_c01303{bottom:194.400000px;}
.y1a9_c01303{bottom:196.125000px;}
.y1a7_c01303{bottom:198.720000px;}
.y1a5_c01303{bottom:199.590000px;}
.y1a3_c01303{bottom:200.445000px;}
.y1a2_c01303{bottom:209.955000px;}
.y1a1_c01303{bottom:211.680000px;}
.y1a0_c01303{bottom:212.550000px;}
.y19e_c01303{bottom:214.275000px;}
.y19f_c01303{bottom:217.725000px;}
.y19b_c01303{bottom:218.595000px;}
.y19a_c01303{bottom:219.450000px;}
.y199_c01303{bottom:220.320000px;}
.y19c_c01303{bottom:226.365000px;}
.y19d_c01303{bottom:228.090000px;}
.y195_c01303{bottom:235.005000px;}
.y196_c01303{bottom:235.875000px;}
.y190_c01303{bottom:236.730000px;}
.y198_c01303{bottom:237.600000px;}
.y193_c01303{bottom:238.470000px;}
.y197_c01303{bottom:239.325000px;}
.y194_c01303{bottom:240.195000px;}
.y192_c01303{bottom:241.050000px;}
.y191_c01303{bottom:241.920000px;}
.y18e_c01303{bottom:252.285000px;}
.y18f_c01303{bottom:254.880000px;}
.y189_c01303{bottom:256.605000px;}
.y18c_c01303{bottom:257.475000px;}
.y18b_c01303{bottom:258.330000px;}
.y18d_c01303{bottom:259.200000px;}
.y187_c01303{bottom:260.070000px;}
.y188_c01303{bottom:261.795000px;}
.y18a_c01303{bottom:262.650000px;}
.y184_c01303{bottom:268.710000px;}
.y185_c01303{bottom:269.565000px;}
.y183_c01303{bottom:270.435000px;}
.y182_c01303{bottom:271.290000px;}
.y180_c01303{bottom:272.160000px;}
.y17f_c01303{bottom:273.030000px;}
.y186_c01303{bottom:274.755000px;}
.y181_c01303{bottom:286.845000px;}
.y17e_c01303{bottom:291.165000px;}
.y17d_c01303{bottom:296.355000px;}
.y179_c01303{bottom:297.210000px;}
.y178_c01303{bottom:299.805000px;}
.y17b_c01303{bottom:301.530000px;}
.y17c_c01303{bottom:302.400000px;}
.y17a_c01303{bottom:303.270000px;}
.y177_c01303{bottom:315.360000px;}
.y175_c01303{bottom:316.230000px;}
.y171_c01303{bottom:317.955000px;}
.y176_c01303{bottom:319.680000px;}
.y174_c01303{bottom:320.550000px;}
.y173_c01303{bottom:321.405000px;}
.y172_c01303{bottom:323.130000px;}
.y16e_c01303{bottom:335.235000px;}
.y16f_c01303{bottom:336.090000px;}
.y16a_c01303{bottom:337.830000px;}
.y16d_c01303{bottom:340.410000px;}
.y16b_c01303{bottom:341.280000px;}
.y16c_c01303{bottom:343.005000px;}
.y170_c01303{bottom:352.515000px;}
.y166_c01303{bottom:355.110000px;}
.y168_c01303{bottom:355.965000px;}
.y167_c01303{bottom:356.835000px;}
.y163_c01303{bottom:357.690000px;}
.y165_c01303{bottom:359.430000px;}
.y15e_c01303{bottom:360.285000px;}
.y169_c01303{bottom:362.010000px;}
.y164_c01303{bottom:363.750000px;}
.y162_c01303{bottom:374.115000px;}
.y15f_c01303{bottom:374.970000px;}
.y160_c01303{bottom:375.840000px;}
.y15d_c01303{bottom:377.565000px;}
.y161_c01303{bottom:379.290000px;}
.y15a_c01303{bottom:399.165000px;}
.y158_c01303{bottom:400.035000px;}
.y15c_c01303{bottom:400.890000px;}
.y159_c01303{bottom:404.355000px;}
.y15b_c01303{bottom:405.210000px;}
.y1da_c01303{bottom:415.590000px;}
.y152_c01303{bottom:416.445000px;}
.y157_c01303{bottom:418.170000px;}
.y151_c01303{bottom:419.040000px;}
.y154_c01303{bottom:419.910000px;}
.y155_c01303{bottom:420.765000px;}
.y150_c01303{bottom:423.360000px;}
.y156_c01303{bottom:427.680000px;}
.y153_c01303{bottom:436.320000px;}
.y14c_c01303{bottom:438.915000px;}
.y14d_c01303{bottom:439.770000px;}
.y14b_c01303{bottom:444.090000px;}
.y14e_c01303{bottom:447.555000px;}
.y14f_c01303{bottom:448.410000px;}
.y14a_c01303{bottom:449.280000px;}
.y149_c01303{bottom:452.730000px;}
.y147_c01303{bottom:453.600000px;}
.y146_c01303{bottom:454.470000px;}
.y148_c01303{bottom:457.050000px;}
.y145_c01303{bottom:461.370000px;}
.y143_c01303{bottom:464.835000px;}
.y144_c01303{bottom:476.925000px;}
.y142_c01303{bottom:477.795000px;}
.y13b_c01303{bottom:478.650000px;}
.y140_c01303{bottom:480.390000px;}
.y13d_c01303{bottom:481.245000px;}
.y13c_c01303{bottom:482.970000px;}
.y1d9_c01303{bottom:483.840000px;}
.y13a_c01303{bottom:487.290000px;}
.y141_c01303{bottom:489.030000px;}
.y13f_c01303{bottom:489.885000px;}
.y13e_c01303{bottom:491.610000px;}
.y138_c01303{bottom:494.205000px;}
.y137_c01303{bottom:495.075000px;}
.y133_c01303{bottom:495.930000px;}
.y139_c01303{bottom:499.395000px;}
.y136_c01303{bottom:500.250000px;}
.y134_c01303{bottom:504.570000px;}
.y135_c01303{bottom:508.890000px;}
.y132_c01303{bottom:514.950000px;}
.y12e_c01303{bottom:517.530000px;}
.y131_c01303{bottom:518.400000px;}
.y12d_c01303{bottom:519.270000px;}
.y12c_c01303{bottom:520.125000px;}
.y12b_c01303{bottom:522.720000px;}
.y12f_c01303{bottom:530.490000px;}
.y130_c01303{bottom:532.230000px;}
.y129_c01303{bottom:535.680000px;}
.y12a_c01303{bottom:536.550000px;}
.y125_c01303{bottom:538.275000px;}
.y123_c01303{bottom:539.130000px;}
.y122_c01303{bottom:540.000000px;}
.y128_c01303{bottom:541.725000px;}
.y127_c01303{bottom:544.320000px;}
.y121_c01303{bottom:545.190000px;}
.y124_c01303{bottom:548.640000px;}
.y126_c01303{bottom:551.235000px;}
.y11e_c01303{bottom:556.410000px;}
.y11c_c01303{bottom:557.280000px;}
.y11a_c01303{bottom:559.005000px;}
.y118_c01303{bottom:559.875000px;}
.y11f_c01303{bottom:560.730000px;}
.y119_c01303{bottom:561.600000px;}
.y11d_c01303{bottom:562.470000px;}
.y11b_c01303{bottom:563.325000px;}
.y117_c01303{bottom:565.050000px;}
.y120_c01303{bottom:571.110000px;}
.y116_c01303{bottom:574.560000px;}
.y115_c01303{bottom:576.285000px;}
.y112_c01303{bottom:577.155000px;}
.y111_c01303{bottom:578.010000px;}
.y114_c01303{bottom:578.880000px;}
.y113_c01303{bottom:579.750000px;}
.y10f_c01303{bottom:584.070000px;}
.y10e_c01303{bottom:584.925000px;}
.y110_c01303{bottom:587.520000px;}
.y10d_c01303{bottom:597.030000px;}
.y10c_c01303{bottom:597.885000px;}
.y109_c01303{bottom:598.755000px;}
.y108_c01303{bottom:599.610000px;}
.y1d8_c01303{bottom:602.205000px;}
.y10b_c01303{bottom:603.075000px;}
.y107_c01303{bottom:604.800000px;}
.y10a_c01303{bottom:605.670000px;}
.y1d7_c01303{bottom:612.570000px;}
.y1d6_c01303{bottom:618.630000px;}
.y105_c01303{bottom:620.355000px;}
.y101_c01303{bottom:622.080000px;}
.y106_c01303{bottom:622.950000px;}
.y102_c01303{bottom:623.805000px;}
.y104_c01303{bottom:624.675000px;}
.y100_c01303{bottom:625.530000px;}
.y103_c01303{bottom:626.400000px;}
.y1d5_c01303{bottom:627.270000px;}
.y1d3_c01303{bottom:636.765000px;}
.yfe_c01303{bottom:637.635000px;}
.y1d4_c01303{bottom:639.360000px;}
.yff_c01303{bottom:641.085000px;}
.yfd_c01303{bottom:641.955000px;}
.yfb_c01303{bottom:642.810000px;}
.yfc_c01303{bottom:643.680000px;}
.yfa_c01303{bottom:644.550000px;}
.y1d2_c01303{bottom:655.770000px;}
.yf8_c01303{bottom:659.235000px;}
.yf6_c01303{bottom:660.090000px;}
.yf7_c01303{bottom:661.830000px;}
.yf4_c01303{bottom:662.685000px;}
.yf1_c01303{bottom:663.555000px;}
.y1d1_c01303{bottom:664.410000px;}
.yf2_c01303{bottom:665.280000px;}
.yf3_c01303{bottom:666.150000px;}
.yf5_c01303{bottom:667.005000px;}
.yf9_c01303{bottom:670.470000px;}
.y1d0_c01303{bottom:675.645000px;}
.yf0_c01303{bottom:679.110000px;}
.yee_c01303{bottom:679.965000px;}
.yeb_c01303{bottom:680.835000px;}
.yea_c01303{bottom:681.690000px;}
.yef_c01303{bottom:682.560000px;}
.ye9_c01303{bottom:683.430000px;}
.yed_c01303{bottom:684.285000px;}
.yec_c01303{bottom:688.605000px;}
.ye5_c01303{bottom:691.200000px;}
.ye6_c01303{bottom:692.070000px;}
.ye8_c01303{bottom:692.925000px;}
.ye7_c01303{bottom:693.795000px;}
.ye2_c01303{bottom:694.650000px;}
.ye3_c01303{bottom:695.520000px;}
.ye4_c01303{bottom:696.390000px;}
.ye1_c01303{bottom:699.840000px;}
.ydc_c01303{bottom:702.435000px;}
.ydb_c01303{bottom:703.290000px;}
.ydf_c01303{bottom:704.160000px;}
.yde_c01303{bottom:705.030000px;}
.yda_c01303{bottom:705.885000px;}
.yd9_c01303{bottom:706.755000px;}
.ydd_c01303{bottom:707.610000px;}
.y1cf_c01303{bottom:716.250000px;}
.ye0_c01303{bottom:717.990000px;}
.yd6_c01303{bottom:718.845000px;}
.yd4_c01303{bottom:719.715000px;}
.yd1_c01303{bottom:720.570000px;}
.ycf_c01303{bottom:721.440000px;}
.yd5_c01303{bottom:722.310000px;}
.yd8_c01303{bottom:723.165000px;}
.yd7_c01303{bottom:724.035000px;}
.yd3_c01303{bottom:725.760000px;}
.yd0_c01303{bottom:726.630000px;}
.yd2_c01303{bottom:727.485000px;}
.yce_c01303{bottom:729.210000px;}
.y1ce_c01303{bottom:736.995000px;}
.yca_c01303{bottom:738.720000px;}
.ycb_c01303{bottom:742.170000px;}
.yc8_c01303{bottom:743.040000px;}
.ycc_c01303{bottom:743.910000px;}
.yc9_c01303{bottom:745.635000px;}
.yc5_c01303{bottom:746.490000px;}
.yc6_c01303{bottom:747.360000px;}
.yc7_c01303{bottom:748.230000px;}
.ycd_c01303{bottom:756.870000px;}
.yc3_c01303{bottom:760.320000px;}
.ybf_c01303{bottom:761.190000px;}
.yc1_c01303{bottom:762.915000px;}
.yc0_c01303{bottom:763.770000px;}
.yc4_c01303{bottom:764.640000px;}
.yc2_c01303{bottom:766.365000px;}
.ybe_c01303{bottom:767.235000px;}
.ybc_c01303{bottom:779.325000px;}
.ybd_c01303{bottom:780.195000px;}
.yb9_c01303{bottom:781.050000px;}
.yb7_c01303{bottom:784.515000px;}
.yb8_c01303{bottom:786.240000px;}
.yba_c01303{bottom:787.965000px;}
.ybb_c01303{bottom:788.835000px;}
.yb4_c01303{bottom:800.070000px;}
.yb3_c01303{bottom:800.925000px;}
.yb1_c01303{bottom:802.650000px;}
.yb5_c01303{bottom:804.390000px;}
.yae_c01303{bottom:806.115000px;}
.yaf_c01303{bottom:806.970000px;}
.yb0_c01303{bottom:807.840000px;}
.yb2_c01303{bottom:812.160000px;}
.yb6_c01303{bottom:816.480000px;}
.yad_c01303{bottom:819.930000px;}
.ya8_c01303{bottom:820.800000px;}
.yab_c01303{bottom:822.525000px;}
.ya7_c01303{bottom:823.395000px;}
.ya6_c01303{bottom:824.250000px;}
.ya9_c01303{bottom:825.120000px;}
.ya5_c01303{bottom:825.990000px;}
.yac_c01303{bottom:826.845000px;}
.yaa_c01303{bottom:828.570000px;}
.ya4_c01303{bottom:838.950000px;}
.ya3_c01303{bottom:839.805000px;}
.ya2_c01303{bottom:840.675000px;}
.ya0_c01303{bottom:841.530000px;}
.y9f_c01303{bottom:842.400000px;}
.y9a_c01303{bottom:843.270000px;}
.y9b_c01303{bottom:845.850000px;}
.ya1_c01303{bottom:846.720000px;}
.y9c_c01303{bottom:847.590000px;}
.y9d_c01303{bottom:848.445000px;}
.y9e_c01303{bottom:849.315000px;}
.y98_c01303{bottom:861.405000px;}
.y95_c01303{bottom:862.275000px;}
.y93_c01303{bottom:863.130000px;}
.y96_c01303{bottom:864.870000px;}
.y97_c01303{bottom:865.725000px;}
.y94_c01303{bottom:867.450000px;}
.y99_c01303{bottom:878.685000px;}
.y90_c01303{bottom:880.410000px;}
.y8e_c01303{bottom:882.150000px;}
.y1cd_c01303{bottom:883.005000px;}
.y8d_c01303{bottom:883.875000px;}
.y8f_c01303{bottom:884.730000px;}
.y92_c01303{bottom:885.600000px;}
.y8c_c01303{bottom:887.325000px;}
.y8b_c01303{bottom:888.195000px;}
.y91_c01303{bottom:889.920000px;}
.y1cc_c01303{bottom:893.370000px;}
.y87_c01303{bottom:902.010000px;}
.y88_c01303{bottom:902.880000px;}
.y89_c01303{bottom:903.750000px;}
.y84_c01303{bottom:904.605000px;}
.y8a_c01303{bottom:905.475000px;}
.y86_c01303{bottom:906.330000px;}
.y83_c01303{bottom:907.200000px;}
.y82_c01303{bottom:908.070000px;}
.y85_c01303{bottom:909.795000px;}
.y81_c01303{bottom:921.030000px;}
.y1cb_c01303{bottom:923.610000px;}
.y80_c01303{bottom:925.350000px;}
.y7f_c01303{bottom:927.930000px;}
.y7e_c01303{bottom:928.800000px;}
.y7d_c01303{bottom:942.630000px;}
.y7a_c01303{bottom:943.485000px;}
.y7c_c01303{bottom:944.355000px;}
.y77_c01303{bottom:945.210000px;}
.y79_c01303{bottom:946.080000px;}
.y78_c01303{bottom:947.805000px;}
.y7b_c01303{bottom:948.675000px;}
.y1ca_c01303{bottom:951.270000px;}
.y1c9_c01303{bottom:960.765000px;}
.y76_c01303{bottom:961.635000px;}
.y70_c01303{bottom:962.490000px;}
.y75_c01303{bottom:963.360000px;}
.y6f_c01303{bottom:964.230000px;}
.y74_c01303{bottom:965.085000px;}
.y73_c01303{bottom:966.810000px;}
.y72_c01303{bottom:967.680000px;}
.y71_c01303{bottom:968.550000px;}
.y1c8_c01303{bottom:977.190000px;}
.y1c7_c01303{bottom:980.640000px;}
.y6c_c01303{bottom:981.510000px;}
.y6d_c01303{bottom:982.365000px;}
.y6e_c01303{bottom:983.235000px;}
.y67_c01303{bottom:984.960000px;}
.y69_c01303{bottom:987.555000px;}
.y68_c01303{bottom:988.410000px;}
.y6a_c01303{bottom:989.280000px;}
.y6b_c01303{bottom:990.150000px;}
.y1c6_c01303{bottom:997.050000px;}
.y62_c01303{bottom:1003.110000px;}
.y61_c01303{bottom:1004.835000px;}
.y1c5_c01303{bottom:1006.560000px;}
.y63_c01303{bottom:1007.430000px;}
.y65_c01303{bottom:1008.285000px;}
.y66_c01303{bottom:1009.155000px;}
.y64_c01303{bottom:1010.010000px;}
.y1c4_c01303{bottom:1015.200000px;}
.y5f_c01303{bottom:1022.115000px;}
.y60_c01303{bottom:1022.970000px;}
.y5e_c01303{bottom:1023.840000px;}
.y5b_c01303{bottom:1026.435000px;}
.y5d_c01303{bottom:1027.290000px;}
.y5a_c01303{bottom:1028.160000px;}
.y5c_c01303{bottom:1029.885000px;}
.y1c1_c01303{bottom:1031.610000px;}
.y1c3_c01303{bottom:1032.480000px;}
.y59_c01303{bottom:1041.990000px;}
.y57_c01303{bottom:1043.715000px;}
.y53_c01303{bottom:1044.570000px;}
.y52_c01303{bottom:1045.440000px;}
.y54_c01303{bottom:1047.165000px;}
.y58_c01303{bottom:1048.035000px;}
.y56_c01303{bottom:1049.760000px;}
.y55_c01303{bottom:1050.630000px;}
.y51_c01303{bottom:1062.720000px;}
.y4c_c01303{bottom:1063.590000px;}
.y4a_c01303{bottom:1064.445000px;}
.y50_c01303{bottom:1065.315000px;}
.y4f_c01303{bottom:1067.040000px;}
.y4e_c01303{bottom:1067.910000px;}
.y1c2_c01303{bottom:1068.765000px;}
.y4b_c01303{bottom:1069.635000px;}
.y4d_c01303{bottom:1076.550000px;}
.y1c0_c01303{bottom:1078.275000px;}
.y43_c01303{bottom:1080.870000px;}
.y44_c01303{bottom:1081.725000px;}
.y42_c01303{bottom:1082.595000px;}
.y48_c01303{bottom:1083.450000px;}
.y46_c01303{bottom:1086.915000px;}
.y47_c01303{bottom:1087.770000px;}
.y45_c01303{bottom:1088.640000px;}
.y49_c01303{bottom:1093.830000px;}
.y41_c01303{bottom:1101.600000px;}
.y40_c01303{bottom:1104.195000px;}
.y3f_c01303{bottom:1105.920000px;}
.y3a_c01303{bottom:1108.515000px;}
.y3b_c01303{bottom:1109.370000px;}
.y3c_c01303{bottom:1110.240000px;}
.y3e_c01303{bottom:1111.965000px;}
.y3d_c01303{bottom:1122.330000px;}
.y39_c01303{bottom:1124.925000px;}
.y35_c01303{bottom:1125.795000px;}
.y37_c01303{bottom:1126.650000px;}
.y34_c01303{bottom:1129.245000px;}
.y36_c01303{bottom:1130.115000px;}
.y38_c01303{bottom:1130.970000px;}
.y33_c01303{bottom:1144.800000px;}
.y32_c01303{bottom:1145.670000px;}
.y2f_c01303{bottom:1146.525000px;}
.y31_c01303{bottom:1148.250000px;}
.y2d_c01303{bottom:1149.120000px;}
.y30_c01303{bottom:1149.990000px;}
.y2e_c01303{bottom:1150.845000px;}
.y27_c01303{bottom:1165.530000px;}
.y2c_c01303{bottom:1166.400000px;}
.y29_c01303{bottom:1168.995000px;}
.y2a_c01303{bottom:1170.720000px;}
.y28_c01303{bottom:1171.590000px;}
.y2b_c01303{bottom:1173.315000px;}
.y23_c01303{bottom:1184.550000px;}
.y1e_c01303{bottom:1186.275000px;}
.y26_c01303{bottom:1187.130000px;}
.y1f_c01303{bottom:1188.000000px;}
.y15_c01303{bottom:1188.870000px;}
.y25_c01303{bottom:1191.450000px;}
.y20_c01303{bottom:1192.320000px;}
.y21_c01303{bottom:1193.190000px;}
.y22_c01303{bottom:1194.045000px;}
.y24_c01303{bottom:1195.770000px;}
.y14_c01303{bottom:1206.150000px;}
.y1b_c01303{bottom:1207.005000px;}
.y1d_c01303{bottom:1207.875000px;}
.y18_c01303{bottom:1208.730000px;}
.y1a_c01303{bottom:1209.600000px;}
.y17_c01303{bottom:1210.470000px;}
.y16_c01303{bottom:1211.325000px;}
.y1c_c01303{bottom:1212.195000px;}
.y19_c01303{bottom:1213.050000px;}
.y13_c01303{bottom:1225.155000px;}
.y12_c01303{bottom:1226.880000px;}
.y11_c01303{bottom:1227.750000px;}
.y10_c01303{bottom:1231.200000px;}
.ye_c01303{bottom:1248.480000px;}
.yf_c01303{bottom:1253.670000px;}
.y1e4_c01303{bottom:1257.990000px;}
.y1e5_c01303{bottom:1259.715000px;}
.y9_c01303{bottom:1268.355000px;}
.yc_c01303{bottom:1270.080000px;}
.yd_c01303{bottom:1270.950000px;}
.yb_c01303{bottom:1271.805000px;}
.ya_c01303{bottom:1272.675000px;}
.y8_c01303{bottom:1273.530000px;}
.y7_c01303{bottom:1289.955000px;}
.y6_c01303{bottom:1305.510000px;}
.y5_c01303{bottom:1308.090000px;}
.y4_c01303{bottom:1308.960000px;}
.y2_c01303{bottom:1309.830000px;}
.y3_c01303{bottom:1310.685000px;}
.y1_c01303{bottom:1316.730000px;}
.y1e0_c01303{bottom:1340.070000px;}
.y1e1_c01303{bottom:1340.925000px;}
.y1e3_c01303{bottom:1341.795000px;}
.y1e2_c01303{bottom:1342.650000px;}
.y1df_c01303{bottom:1366.845000px;}
.y1de_c01303{bottom:1371.165000px;}
.y1dd_c01303{bottom:1372.890000px;}
.y1db_c01303{bottom:1410.045000px;}
.y1dc_c01303{bottom:1411.770000px;}
.h18_c01303{height:3.110063px;}
.h1b_c01303{height:5.399414px;}
.h1a_c01303{height:6.209326px;}
.h20_c01303{height:9.340986px;}
.h1e_c01303{height:12.418652px;}
.h6_c01303{height:15.550313px;}
.h15_c01303{height:18.681973px;}
.hc_c01303{height:21.759639px;}
.h13_c01303{height:24.891299px;}
.hb_c01303{height:27.968965px;}
.h12_c01303{height:31.100625px;}
.ha_c01303{height:34.232285px;}
.h9_c01303{height:37.309951px;}
.h2_c01303{height:40.441611px;}
.h16_c01303{height:43.519277px;}
.hf_c01303{height:46.650937px;}
.h7_c01303{height:49.782598px;}
.h1f_c01303{height:50.070938px;}
.hd_c01303{height:52.860264px;}
.h23_c01303{height:53.262598px;}
.h17_c01303{height:55.991924px;}
.h10_c01303{height:59.069590px;}
.h4_c01303{height:62.201250px;}
.h8_c01303{height:65.332910px;}
.h5_c01303{height:68.410576px;}
.h3_c01303{height:71.542236px;}
.h1c_c01303{height:74.619902px;}
.h11_c01303{height:77.751563px;}
.h19_c01303{height:80.883223px;}
.h14_c01303{height:83.960889px;}
.h1d_c01303{height:87.092549px;}
.h25_c01303{height:90.170215px;}
.h24_c01303{height:93.301875px;}
.h21_c01303{height:96.433535px;}
.h26_c01303{height:99.511201px;}
.h28_c01303{height:124.402500px;}
.h22_c01303{height:127.534160px;}
.he_c01303{height:139.952812px;}
.h27_c01303{height:146.162139px;}
.h0_c01303{height:1509.405000px;}
.h1_c01303{height:1509.750000px;}
.w0_c01303{width:1088.640000px;}
.w1_c01303{width:1089.000000px;}
.x0_c01303{left:0.000000px;}
.x11a_c01303{left:1.725000px;}
.x114_c01303{left:9.510000px;}
.x116_c01303{left:11.235000px;}
.x119_c01303{left:13.830000px;}
.x112_c01303{left:35.430000px;}
.x10f_c01303{left:59.610000px;}
.x113_c01303{left:109.725000px;}
.x110_c01303{left:114.045000px;}
.x111_c01303{left:141.690000px;}
.x117_c01303{left:170.205000px;}
.x118_c01303{left:177.120000px;}
.x16_c01303{left:190.080000px;}
.x115_c01303{left:200.445000px;}
.xfd_c01303{left:204.765000px;}
.x106_c01303{left:221.190000px;}
.xfc_c01303{left:225.510000px;}
.xb9_c01303{left:228.960000px;}
.xa8_c01303{left:231.555000px;}
.x94_c01303{left:233.280000px;}
.x35_c01303{left:235.005000px;}
.x17_c01303{left:237.600000px;}
.xe3_c01303{left:240.195000px;}
.xc0_c01303{left:247.110000px;}
.x62_c01303{left:248.835000px;}
.x41_c01303{left:250.560000px;}
.xb4_c01303{left:254.880000px;}
.x8c_c01303{left:257.475000px;}
.xea_c01303{left:260.070000px;}
.xc6_c01303{left:262.650000px;}
.x3d_c01303{left:264.390000px;}
.x54_c01303{left:266.115000px;}
.x85_c01303{left:271.290000px;}
.xdb_c01303{left:273.030000px;}
.xaf_c01303{left:274.755000px;}
.x18_c01303{left:277.350000px;}
.x67_c01303{left:279.930000px;}
.x95_c01303{left:284.250000px;}
.xe8_c01303{left:286.845000px;}
.x86_c01303{left:289.440000px;}
.x108_c01303{left:291.165000px;}
.x19_c01303{left:293.760000px;}
.x48_c01303{left:297.210000px;}
.xd5_c01303{left:299.805000px;}
.x3e_c01303{left:302.400000px;}
.xa9_c01303{left:304.995000px;}
.xba_c01303{left:306.720000px;}
.x1a_c01303{left:309.315000px;}
.xde_c01303{left:311.040000px;}
.x55_c01303{left:312.765000px;}
.x8d_c01303{left:315.360000px;}
.x4f_c01303{left:317.085000px;}
.xfa_c01303{left:319.680000px;}
.xbb_c01303{left:321.405000px;}
.xb5_c01303{left:324.000000px;}
.x1b_c01303{left:325.725000px;}
.xf1_c01303{left:328.320000px;}
.x28_c01303{left:330.045000px;}
.xa2_c01303{left:331.770000px;}
.x56_c01303{left:333.510000px;}
.x10c_c01303{left:335.235000px;}
.x63_c01303{left:336.960000px;}
.xfe_c01303{left:338.685000px;}
.x1c_c01303{left:343.875000px;}
.xa3_c01303{left:350.790000px;}
.xce_c01303{left:353.370000px;}
.x36_c01303{left:356.835000px;}
.x68_c01303{left:358.560000px;}
.x9b_c01303{left:361.155000px;}
.xf2_c01303{left:363.750000px;}
.x7b_c01303{left:367.200000px;}
.xdf_c01303{left:368.925000px;}
.x82_c01303{left:370.650000px;}
.x100_c01303{left:372.390000px;}
.x42_c01303{left:375.840000px;}
.xf3_c01303{left:379.290000px;}
.x8e_c01303{left:381.030000px;}
.x1d_c01303{left:382.755000px;}
.x49_c01303{left:385.350000px;}
.x101_c01303{left:387.075000px;}
.x87_c01303{left:389.670000px;}
.x69_c01303{left:393.120000px;}
.x74_c01303{left:395.715000px;}
.x9c_c01303{left:398.310000px;}
.x43_c01303{left:400.890000px;}
.x37_c01303{left:402.630000px;}
.xa4_c01303{left:404.355000px;}
.x11c_c01303{left:407.805000px;}
.x1e_c01303{left:411.270000px;}
.x4a_c01303{left:412.995000px;}
.xeb_c01303{left:414.719325px;}
.x88_c01303{left:416.445000px;}
.x9d_c01303{left:419.040000px;}
.x102_c01303{left:420.765000px;}
.xaa_c01303{left:423.360000px;}
.x64_c01303{left:425.085000px;}
.x8f_c01303{left:426.810000px;}
.xe9_c01303{left:428.550000px;}
.x29_c01303{left:430.275000px;}
.x10d_c01303{left:432.870000px;}
.x75_c01303{left:434.595000px;}
.x1f_c01303{left:437.190000px;}
.x109_c01303{left:438.915000px;}
.xc1_c01303{left:440.640000px;}
.x57_c01303{left:442.365000px;}
.xf6_c01303{left:445.830000px;}
.x7c_c01303{left:447.555000px;}
.x2a_c01303{left:451.005000px;}
.x38_c01303{left:453.600000px;}
.xcf_c01303{left:456.195000px;}
.x58_c01303{left:458.790000px;}
.x2b_c01303{left:460.515000px;}
.xf4_c01303{left:462.240000px;}
.x9e_c01303{left:465.690000px;}
.x2c_c01303{left:469.155000px;}
.x44_c01303{left:471.750000px;}
.xb1_c01303{left:475.200000px;}
.x89_c01303{left:477.795000px;}
.xab_c01303{left:480.390000px;}
.xc7_c01303{left:482.115000px;}
.x2d_c01303{left:483.840000px;}
.x6a_c01303{left:485.565000px;}
.x103_c01303{left:489.885000px;}
.x20_c01303{left:491.610000px;}
.x6b_c01303{left:493.350000px;}
.xee_c01303{left:495.930000px;}
.x2e_c01303{left:498.525000px;}
.x21_c01303{left:501.120000px;}
.xa5_c01303{left:502.845000px;}
.xe1_c01303{left:505.440000px;}
.xec_c01303{left:508.035000px;}
.x6_c01303{left:510.630000px;}
.x6c_c01303{left:515.805000px;}
.xd8_c01303{left:518.400000px;}
.x59_c01303{left:520.995000px;}
.xef_c01303{left:523.590000px;}
.xc9_c01303{left:526.170000px;}
.xc2_c01303{left:527.910000px;}
.xc3_c01303{left:532.230000px;}
.xa6_c01303{left:536.550000px;}
.xed_c01303{left:543.450000px;}
.xbc_c01303{left:546.915000px;}
.x7d_c01303{left:548.640000px;}
.x1_c01303{left:550.365000px;}
.x104_c01303{left:552.090000px;}
.x4b_c01303{left:557.280000px;}
.x6d_c01303{left:560.730000px;}
.x50_c01303{left:563.325000px;}
.x2f_c01303{left:565.050000px;}
.x5a_c01303{left:566.790000px;}
.x90_c01303{left:568.515000px;}
.xd0_c01303{left:570.240000px;}
.xf0_c01303{left:572.835000px;}
.x30_c01303{left:577.155000px;}
.x5b_c01303{left:579.750000px;}
.xb6_c01303{left:581.475000px;}
.xca_c01303{left:584.925000px;}
.x22_c01303{left:586.650000px;}
.x2_c01303{left:588.390000px;}
.xe2_c01303{left:591.840000px;}
.x45_c01303{left:593.565000px;}
.x6e_c01303{left:595.290000px;}
.x4c_c01303{left:597.885000px;}
.x83_c01303{left:600.480000px;}
.xe4_c01303{left:603.075000px;}
.x39_c01303{left:605.670000px;}
.xe5_c01303{left:607.395000px;}
.x5c_c01303{left:609.120000px;}
.xf7_c01303{left:611.715000px;}
.x9f_c01303{left:613.440000px;}
.x7_c01303{left:616.890000px;}
.x84_c01303{left:619.485000px;}
.xe_c01303{left:621.210000px;}
.x6f_c01303{left:622.950000px;}
.xf8_c01303{left:624.675000px;}
.xcb_c01303{left:626.400000px;}
.x3_c01303{left:628.125000px;}
.x8a_c01303{left:629.850000px;}
.x5d_c01303{left:632.445000px;}
.x23_c01303{left:635.040000px;}
.x76_c01303{left:636.765000px;}
.x4d_c01303{left:638.490000px;}
.x51_c01303{left:641.955000px;}
.x96_c01303{left:643.680000px;}
.x11b_c01303{left:646.275000px;}
.x91_c01303{left:648.870000px;}
.x4_c01303{left:650.595000px;}
.x31_c01303{left:654.915000px;}
.xcc_c01303{left:656.640000px;}
.xf_c01303{left:660.090000px;}
.x107_c01303{left:661.830000px;}
.x7e_c01303{left:664.410000px;}
.xdc_c01303{left:667.875000px;}
.x24_c01303{left:669.600000px;}
.x13_c01303{left:671.325000px;}
.x8_c01303{left:673.050000px;}
.x32_c01303{left:675.645000px;}
.x10_c01303{left:678.240000px;}
.xb7_c01303{left:679.965000px;}
.xd9_c01303{left:685.155000px;}
.x3a_c01303{left:686.880000px;}
.xac_c01303{left:688.605000px;}
.x52_c01303{left:691.200000px;}
.x5e_c01303{left:692.925000px;}
.xff_c01303{left:697.245000px;}
.x46_c01303{left:700.710000px;}
.x25_c01303{left:702.435000px;}
.xe0_c01303{left:705.885000px;}
.x65_c01303{left:707.610000px;}
.x77_c01303{left:710.205000px;}
.x11_c01303{left:712.800000px;}
.x9_c01303{left:716.250000px;}
.xa7_c01303{left:717.990000px;}
.x70_c01303{left:719.715000px;}
.xe6_c01303{left:721.440000px;}
.xf9_c01303{left:723.165000px;}
.xa0_c01303{left:724.890000px;}
.xd1_c01303{left:726.630000px;}
.x8b_c01303{left:728.355000px;}
.x5f_c01303{left:730.950000px;}
.xe7_c01303{left:732.673755px;}
.x14_c01303{left:735.270000px;}
.x7f_c01303{left:738.720000px;}
.x60_c01303{left:740.445000px;}
.x26_c01303{left:744.765000px;}
.x105_c01303{left:748.230000px;}
.x12_c01303{left:749.955000px;}
.xa_c01303{left:751.680000px;}
.x97_c01303{left:753.405000px;}
.xb8_c01303{left:755.130000px;}
.xc4_c01303{left:756.870000px;}
.x66_c01303{left:760.320000px;}
.x78_c01303{left:762.045000px;}
.x33_c01303{left:764.640000px;}
.x80_c01303{left:767.235000px;}
.x71_c01303{left:769.830000px;}
.xbd_c01303{left:772.410000px;}
.xd6_c01303{left:774.150000px;}
.xfb_c01303{left:778.470000px;}
.xda_c01303{left:780.195000px;}
.x61_c01303{left:781.920000px;}
.x79_c01303{left:784.515000px;}
.xb_c01303{left:786.240000px;}
.x3f_c01303{left:790.560000px;}
.x10a_c01303{left:792.285000px;}
.x10e_c01303{left:794.010000px;}
.xb2_c01303{left:795.750000px;}
.x4e_c01303{left:799.200000px;}
.x15_c01303{left:802.650000px;}
.x27_c01303{left:805.245000px;}
.xbe_c01303{left:806.970000px;}
.x53_c01303{left:809.565000px;}
.x5_c01303{left:812.160000px;}
.x3b_c01303{left:813.885000px;}
.x72_c01303{left:817.350000px;}
.x92_c01303{left:819.930000px;}
.x34_c01303{left:823.395000px;}
.xc5_c01303{left:825.990000px;}
.xc_c01303{left:827.715000px;}
.x47_c01303{left:830.310000px;}
.x40_c01303{left:832.035000px;}
.xd2_c01303{left:833.760000px;}
.xbf_c01303{left:835.485000px;}
.x93_c01303{left:838.080000px;}
.xd3_c01303{left:839.805000px;}
.x98_c01303{left:841.530000px;}
.x10b_c01303{left:844.125000px;}
.x3c_c01303{left:845.850000px;}
.xd7_c01303{left:847.590000px;}
.x81_c01303{left:849.315000px;}
.x7a_c01303{left:851.910000px;}
.xdd_c01303{left:853.635000px;}
.x99_c01303{left:855.360000px;}
.x9a_c01303{left:858.810000px;}
.xc8_c01303{left:864.870000px;}
.xb3_c01303{left:867.450000px;}
.xd4_c01303{left:870.915000px;}
.xd_c01303{left:873.510000px;}
.x73_c01303{left:875.235000px;}
.xad_c01303{left:878.685000px;}
.xa1_c01303{left:880.410000px;}
.xcd_c01303{left:883.005000px;}
.xb0_c01303{left:887.325000px;}
.xae_c01303{left:889.920000px;}
.xf5_c01303{left:905.475000px;}
@media print{
.v2_c01303{vertical-align:-6.133333pt;}
.v0_c01303{vertical-align:0.000000pt;}
.v1_c01303{vertical-align:3.040000pt;}
.ls0_c01303{letter-spacing:0.000000pt;}
.ws3_c01303{word-spacing:-30.440373pt;}
.ws4_c01303{word-spacing:-11.636480pt;}
.ws0_c01303{word-spacing:-9.754495pt;}
.ws1_c01303{word-spacing:-7.207467pt;}
.ws5_c01303{word-spacing:0.000000pt;}
.ws2_c01303{word-spacing:55.971413pt;}
._0_c01303{width:6.659467pt;}
.fs16_c01303{font-size:3.072000pt;}
.fs19_c01303{font-size:5.333333pt;}
.fs18_c01303{font-size:6.133333pt;}
.fs1d_c01303{font-size:9.226667pt;}
.fs1c_c01303{font-size:12.266667pt;}
.fs4_c01303{font-size:15.360000pt;}
.fs13_c01303{font-size:18.453333pt;}
.fsa_c01303{font-size:21.493333pt;}
.fs11_c01303{font-size:24.586667pt;}
.fs9_c01303{font-size:27.626667pt;}
.fs10_c01303{font-size:30.720000pt;}
.fs8_c01303{font-size:33.813333pt;}
.fs7_c01303{font-size:36.853333pt;}
.fs0_c01303{font-size:39.946667pt;}
.fs14_c01303{font-size:42.986667pt;}
.fsd_c01303{font-size:46.080000pt;}
.fs5_c01303{font-size:49.173333pt;}
.fsb_c01303{font-size:52.213333pt;}
.fs15_c01303{font-size:55.306667pt;}
.fse_c01303{font-size:58.346667pt;}
.fs2_c01303{font-size:61.440000pt;}
.fs6_c01303{font-size:64.533333pt;}
.fs3_c01303{font-size:67.573333pt;}
.fs1_c01303{font-size:70.666667pt;}
.fs1a_c01303{font-size:73.706667pt;}
.fsf_c01303{font-size:76.800000pt;}
.fs17_c01303{font-size:79.893333pt;}
.fs12_c01303{font-size:82.933333pt;}
.fs1b_c01303{font-size:86.026667pt;}
.fs21_c01303{font-size:89.066667pt;}
.fs20_c01303{font-size:92.160000pt;}
.fs1e_c01303{font-size:95.253333pt;}
.fs22_c01303{font-size:98.293333pt;}
.fs24_c01303{font-size:122.880000pt;}
.fs1f_c01303{font-size:125.973333pt;}
.fsc_c01303{font-size:138.240000pt;}
.fs23_c01303{font-size:144.373333pt;}
.y0_c01303{bottom:0.000000pt;}
.y1bf_c01303{bottom:112.133333pt;}
.y1be_c01303{bottom:114.426667pt;}
.y1bd_c01303{bottom:117.506667pt;}
.y1bb_c01303{bottom:130.560000pt;}
.y1bc_c01303{bottom:132.093333pt;}
.y1ba_c01303{bottom:132.866667pt;}
.y1b8_c01303{bottom:134.400000pt;}
.y1b7_c01303{bottom:139.013333pt;}
.y1b6_c01303{bottom:139.773333pt;}
.y1b9_c01303{bottom:142.080000pt;}
.y1b4_c01303{bottom:147.453333pt;}
.y1b2_c01303{bottom:148.986667pt;}
.y1b3_c01303{bottom:149.760000pt;}
.y1b5_c01303{bottom:150.533333pt;}
.y1b1_c01303{bottom:151.293333pt;}
.y1b0_c01303{bottom:152.826667pt;}
.y1ae_c01303{bottom:153.600000pt;}
.y1ad_c01303{bottom:154.373333pt;}
.y1ac_c01303{bottom:155.133333pt;}
.y1af_c01303{bottom:158.973333pt;}
.y1ab_c01303{bottom:159.746667pt;}
.y1aa_c01303{bottom:165.893333pt;}
.y1a8_c01303{bottom:169.733333pt;}
.y1a6_c01303{bottom:171.266667pt;}
.y1a4_c01303{bottom:172.800000pt;}
.y1a9_c01303{bottom:174.333333pt;}
.y1a7_c01303{bottom:176.640000pt;}
.y1a5_c01303{bottom:177.413333pt;}
.y1a3_c01303{bottom:178.173333pt;}
.y1a2_c01303{bottom:186.626667pt;}
.y1a1_c01303{bottom:188.160000pt;}
.y1a0_c01303{bottom:188.933333pt;}
.y19e_c01303{bottom:190.466667pt;}
.y19f_c01303{bottom:193.533333pt;}
.y19b_c01303{bottom:194.306667pt;}
.y19a_c01303{bottom:195.066667pt;}
.y199_c01303{bottom:195.840000pt;}
.y19c_c01303{bottom:201.213333pt;}
.y19d_c01303{bottom:202.746667pt;}
.y195_c01303{bottom:208.893333pt;}
.y196_c01303{bottom:209.666667pt;}
.y190_c01303{bottom:210.426667pt;}
.y198_c01303{bottom:211.200000pt;}
.y193_c01303{bottom:211.973333pt;}
.y197_c01303{bottom:212.733333pt;}
.y194_c01303{bottom:213.506667pt;}
.y192_c01303{bottom:214.266667pt;}
.y191_c01303{bottom:215.040000pt;}
.y18e_c01303{bottom:224.253333pt;}
.y18f_c01303{bottom:226.560000pt;}
.y189_c01303{bottom:228.093333pt;}
.y18c_c01303{bottom:228.866667pt;}
.y18b_c01303{bottom:229.626667pt;}
.y18d_c01303{bottom:230.400000pt;}
.y187_c01303{bottom:231.173333pt;}
.y188_c01303{bottom:232.706667pt;}
.y18a_c01303{bottom:233.466667pt;}
.y184_c01303{bottom:238.853333pt;}
.y185_c01303{bottom:239.613333pt;}
.y183_c01303{bottom:240.386667pt;}
.y182_c01303{bottom:241.146667pt;}
.y180_c01303{bottom:241.920000pt;}
.y17f_c01303{bottom:242.693333pt;}
.y186_c01303{bottom:244.226667pt;}
.y181_c01303{bottom:254.973333pt;}
.y17e_c01303{bottom:258.813333pt;}
.y17d_c01303{bottom:263.426667pt;}
.y179_c01303{bottom:264.186667pt;}
.y178_c01303{bottom:266.493333pt;}
.y17b_c01303{bottom:268.026667pt;}
.y17c_c01303{bottom:268.800000pt;}
.y17a_c01303{bottom:269.573333pt;}
.y177_c01303{bottom:280.320000pt;}
.y175_c01303{bottom:281.093333pt;}
.y171_c01303{bottom:282.626667pt;}
.y176_c01303{bottom:284.160000pt;}
.y174_c01303{bottom:284.933333pt;}
.y173_c01303{bottom:285.693333pt;}
.y172_c01303{bottom:287.226667pt;}
.y16e_c01303{bottom:297.986667pt;}
.y16f_c01303{bottom:298.746667pt;}
.y16a_c01303{bottom:300.293333pt;}
.y16d_c01303{bottom:302.586667pt;}
.y16b_c01303{bottom:303.360000pt;}
.y16c_c01303{bottom:304.893333pt;}
.y170_c01303{bottom:313.346667pt;}
.y166_c01303{bottom:315.653333pt;}
.y168_c01303{bottom:316.413333pt;}
.y167_c01303{bottom:317.186667pt;}
.y163_c01303{bottom:317.946667pt;}
.y165_c01303{bottom:319.493333pt;}
.y15e_c01303{bottom:320.253333pt;}
.y169_c01303{bottom:321.786667pt;}
.y164_c01303{bottom:323.333333pt;}
.y162_c01303{bottom:332.546667pt;}
.y15f_c01303{bottom:333.306667pt;}
.y160_c01303{bottom:334.080000pt;}
.y15d_c01303{bottom:335.613333pt;}
.y161_c01303{bottom:337.146667pt;}
.y15a_c01303{bottom:354.813333pt;}
.y158_c01303{bottom:355.586667pt;}
.y15c_c01303{bottom:356.346667pt;}
.y159_c01303{bottom:359.426667pt;}
.y15b_c01303{bottom:360.186667pt;}
.y1da_c01303{bottom:369.413333pt;}
.y152_c01303{bottom:370.173333pt;}
.y157_c01303{bottom:371.706667pt;}
.y151_c01303{bottom:372.480000pt;}
.y154_c01303{bottom:373.253333pt;}
.y155_c01303{bottom:374.013333pt;}
.y150_c01303{bottom:376.320000pt;}
.y156_c01303{bottom:380.160000pt;}
.y153_c01303{bottom:387.840000pt;}
.y14c_c01303{bottom:390.146667pt;}
.y14d_c01303{bottom:390.906667pt;}
.y14b_c01303{bottom:394.746667pt;}
.y14e_c01303{bottom:397.826667pt;}
.y14f_c01303{bottom:398.586667pt;}
.y14a_c01303{bottom:399.360000pt;}
.y149_c01303{bottom:402.426667pt;}
.y147_c01303{bottom:403.200000pt;}
.y146_c01303{bottom:403.973333pt;}
.y148_c01303{bottom:406.266667pt;}
.y145_c01303{bottom:410.106667pt;}
.y143_c01303{bottom:413.186667pt;}
.y144_c01303{bottom:423.933333pt;}
.y142_c01303{bottom:424.706667pt;}
.y13b_c01303{bottom:425.466667pt;}
.y140_c01303{bottom:427.013333pt;}
.y13d_c01303{bottom:427.773333pt;}
.y13c_c01303{bottom:429.306667pt;}
.y1d9_c01303{bottom:430.080000pt;}
.y13a_c01303{bottom:433.146667pt;}
.y141_c01303{bottom:434.693333pt;}
.y13f_c01303{bottom:435.453333pt;}
.y13e_c01303{bottom:436.986667pt;}
.y138_c01303{bottom:439.293333pt;}
.y137_c01303{bottom:440.066667pt;}
.y133_c01303{bottom:440.826667pt;}
.y139_c01303{bottom:443.906667pt;}
.y136_c01303{bottom:444.666667pt;}
.y134_c01303{bottom:448.506667pt;}
.y135_c01303{bottom:452.346667pt;}
.y132_c01303{bottom:457.733333pt;}
.y12e_c01303{bottom:460.026667pt;}
.y131_c01303{bottom:460.800000pt;}
.y12d_c01303{bottom:461.573333pt;}
.y12c_c01303{bottom:462.333333pt;}
.y12b_c01303{bottom:464.640000pt;}
.y12f_c01303{bottom:471.546667pt;}
.y130_c01303{bottom:473.093333pt;}
.y129_c01303{bottom:476.160000pt;}
.y12a_c01303{bottom:476.933333pt;}
.y125_c01303{bottom:478.466667pt;}
.y123_c01303{bottom:479.226667pt;}
.y122_c01303{bottom:480.000000pt;}
.y128_c01303{bottom:481.533333pt;}
.y127_c01303{bottom:483.840000pt;}
.y121_c01303{bottom:484.613333pt;}
.y124_c01303{bottom:487.680000pt;}
.y126_c01303{bottom:489.986667pt;}
.y11e_c01303{bottom:494.586667pt;}
.y11c_c01303{bottom:495.360000pt;}
.y11a_c01303{bottom:496.893333pt;}
.y118_c01303{bottom:497.666667pt;}
.y11f_c01303{bottom:498.426667pt;}
.y119_c01303{bottom:499.200000pt;}
.y11d_c01303{bottom:499.973333pt;}
.y11b_c01303{bottom:500.733333pt;}
.y117_c01303{bottom:502.266667pt;}
.y120_c01303{bottom:507.653333pt;}
.y116_c01303{bottom:510.720000pt;}
.y115_c01303{bottom:512.253333pt;}
.y112_c01303{bottom:513.026667pt;}
.y111_c01303{bottom:513.786667pt;}
.y114_c01303{bottom:514.560000pt;}
.y113_c01303{bottom:515.333333pt;}
.y10f_c01303{bottom:519.173333pt;}
.y10e_c01303{bottom:519.933333pt;}
.y110_c01303{bottom:522.240000pt;}
.y10d_c01303{bottom:530.693333pt;}
.y10c_c01303{bottom:531.453333pt;}
.y109_c01303{bottom:532.226667pt;}
.y108_c01303{bottom:532.986667pt;}
.y1d8_c01303{bottom:535.293333pt;}
.y10b_c01303{bottom:536.066667pt;}
.y107_c01303{bottom:537.600000pt;}
.y10a_c01303{bottom:538.373333pt;}
.y1d7_c01303{bottom:544.506667pt;}
.y1d6_c01303{bottom:549.893333pt;}
.y105_c01303{bottom:551.426667pt;}
.y101_c01303{bottom:552.960000pt;}
.y106_c01303{bottom:553.733333pt;}
.y102_c01303{bottom:554.493333pt;}
.y104_c01303{bottom:555.266667pt;}
.y100_c01303{bottom:556.026667pt;}
.y103_c01303{bottom:556.800000pt;}
.y1d5_c01303{bottom:557.573333pt;}
.y1d3_c01303{bottom:566.013333pt;}
.yfe_c01303{bottom:566.786667pt;}
.y1d4_c01303{bottom:568.320000pt;}
.yff_c01303{bottom:569.853333pt;}
.yfd_c01303{bottom:570.626667pt;}
.yfb_c01303{bottom:571.386667pt;}
.yfc_c01303{bottom:572.160000pt;}
.yfa_c01303{bottom:572.933333pt;}
.y1d2_c01303{bottom:582.906667pt;}
.yf8_c01303{bottom:585.986667pt;}
.yf6_c01303{bottom:586.746667pt;}
.yf7_c01303{bottom:588.293333pt;}
.yf4_c01303{bottom:589.053333pt;}
.yf1_c01303{bottom:589.826667pt;}
.y1d1_c01303{bottom:590.586667pt;}
.yf2_c01303{bottom:591.360000pt;}
.yf3_c01303{bottom:592.133333pt;}
.yf5_c01303{bottom:592.893333pt;}
.yf9_c01303{bottom:595.973333pt;}
.y1d0_c01303{bottom:600.573333pt;}
.yf0_c01303{bottom:603.653333pt;}
.yee_c01303{bottom:604.413333pt;}
.yeb_c01303{bottom:605.186667pt;}
.yea_c01303{bottom:605.946667pt;}
.yef_c01303{bottom:606.720000pt;}
.ye9_c01303{bottom:607.493333pt;}
.yed_c01303{bottom:608.253333pt;}
.yec_c01303{bottom:612.093333pt;}
.ye5_c01303{bottom:614.400000pt;}
.ye6_c01303{bottom:615.173333pt;}
.ye8_c01303{bottom:615.933333pt;}
.ye7_c01303{bottom:616.706667pt;}
.ye2_c01303{bottom:617.466667pt;}
.ye3_c01303{bottom:618.240000pt;}
.ye4_c01303{bottom:619.013333pt;}
.ye1_c01303{bottom:622.080000pt;}
.ydc_c01303{bottom:624.386667pt;}
.ydb_c01303{bottom:625.146667pt;}
.ydf_c01303{bottom:625.920000pt;}
.yde_c01303{bottom:626.693333pt;}
.yda_c01303{bottom:627.453333pt;}
.yd9_c01303{bottom:628.226667pt;}
.ydd_c01303{bottom:628.986667pt;}
.y1cf_c01303{bottom:636.666667pt;}
.ye0_c01303{bottom:638.213333pt;}
.yd6_c01303{bottom:638.973333pt;}
.yd4_c01303{bottom:639.746667pt;}
.yd1_c01303{bottom:640.506667pt;}
.ycf_c01303{bottom:641.280000pt;}
.yd5_c01303{bottom:642.053333pt;}
.yd8_c01303{bottom:642.813333pt;}
.yd7_c01303{bottom:643.586667pt;}
.yd3_c01303{bottom:645.120000pt;}
.yd0_c01303{bottom:645.893333pt;}
.yd2_c01303{bottom:646.653333pt;}
.yce_c01303{bottom:648.186667pt;}
.y1ce_c01303{bottom:655.106667pt;}
.yca_c01303{bottom:656.640000pt;}
.ycb_c01303{bottom:659.706667pt;}
.yc8_c01303{bottom:660.480000pt;}
.ycc_c01303{bottom:661.253333pt;}
.yc9_c01303{bottom:662.786667pt;}
.yc5_c01303{bottom:663.546667pt;}
.yc6_c01303{bottom:664.320000pt;}
.yc7_c01303{bottom:665.093333pt;}
.ycd_c01303{bottom:672.773333pt;}
.yc3_c01303{bottom:675.840000pt;}
.ybf_c01303{bottom:676.613333pt;}
.yc1_c01303{bottom:678.146667pt;}
.yc0_c01303{bottom:678.906667pt;}
.yc4_c01303{bottom:679.680000pt;}
.yc2_c01303{bottom:681.213333pt;}
.ybe_c01303{bottom:681.986667pt;}
.ybc_c01303{bottom:692.733333pt;}
.ybd_c01303{bottom:693.506667pt;}
.yb9_c01303{bottom:694.266667pt;}
.yb7_c01303{bottom:697.346667pt;}
.yb8_c01303{bottom:698.880000pt;}
.yba_c01303{bottom:700.413333pt;}
.ybb_c01303{bottom:701.186667pt;}
.yb4_c01303{bottom:711.173333pt;}
.yb3_c01303{bottom:711.933333pt;}
.yb1_c01303{bottom:713.466667pt;}
.yb5_c01303{bottom:715.013333pt;}
.yae_c01303{bottom:716.546667pt;}
.yaf_c01303{bottom:717.306667pt;}
.yb0_c01303{bottom:718.080000pt;}
.yb2_c01303{bottom:721.920000pt;}
.yb6_c01303{bottom:725.760000pt;}
.yad_c01303{bottom:728.826667pt;}
.ya8_c01303{bottom:729.600000pt;}
.yab_c01303{bottom:731.133333pt;}
.ya7_c01303{bottom:731.906667pt;}
.ya6_c01303{bottom:732.666667pt;}
.ya9_c01303{bottom:733.440000pt;}
.ya5_c01303{bottom:734.213333pt;}
.yac_c01303{bottom:734.973333pt;}
.yaa_c01303{bottom:736.506667pt;}
.ya4_c01303{bottom:745.733333pt;}
.ya3_c01303{bottom:746.493333pt;}
.ya2_c01303{bottom:747.266667pt;}
.ya0_c01303{bottom:748.026667pt;}
.y9f_c01303{bottom:748.800000pt;}
.y9a_c01303{bottom:749.573333pt;}
.y9b_c01303{bottom:751.866667pt;}
.ya1_c01303{bottom:752.640000pt;}
.y9c_c01303{bottom:753.413333pt;}
.y9d_c01303{bottom:754.173333pt;}
.y9e_c01303{bottom:754.946667pt;}
.y98_c01303{bottom:765.693333pt;}
.y95_c01303{bottom:766.466667pt;}
.y93_c01303{bottom:767.226667pt;}
.y96_c01303{bottom:768.773333pt;}
.y97_c01303{bottom:769.533333pt;}
.y94_c01303{bottom:771.066667pt;}
.y99_c01303{bottom:781.053333pt;}
.y90_c01303{bottom:782.586667pt;}
.y8e_c01303{bottom:784.133333pt;}
.y1cd_c01303{bottom:784.893333pt;}
.y8d_c01303{bottom:785.666667pt;}
.y8f_c01303{bottom:786.426667pt;}
.y92_c01303{bottom:787.200000pt;}
.y8c_c01303{bottom:788.733333pt;}
.y8b_c01303{bottom:789.506667pt;}
.y91_c01303{bottom:791.040000pt;}
.y1cc_c01303{bottom:794.106667pt;}
.y87_c01303{bottom:801.786667pt;}
.y88_c01303{bottom:802.560000pt;}
.y89_c01303{bottom:803.333333pt;}
.y84_c01303{bottom:804.093333pt;}
.y8a_c01303{bottom:804.866667pt;}
.y86_c01303{bottom:805.626667pt;}
.y83_c01303{bottom:806.400000pt;}
.y82_c01303{bottom:807.173333pt;}
.y85_c01303{bottom:808.706667pt;}
.y81_c01303{bottom:818.693333pt;}
.y1cb_c01303{bottom:820.986667pt;}
.y80_c01303{bottom:822.533333pt;}
.y7f_c01303{bottom:824.826667pt;}
.y7e_c01303{bottom:825.600000pt;}
.y7d_c01303{bottom:837.893333pt;}
.y7a_c01303{bottom:838.653333pt;}
.y7c_c01303{bottom:839.426667pt;}
.y77_c01303{bottom:840.186667pt;}
.y79_c01303{bottom:840.960000pt;}
.y78_c01303{bottom:842.493333pt;}
.y7b_c01303{bottom:843.266667pt;}
.y1ca_c01303{bottom:845.573333pt;}
.y1c9_c01303{bottom:854.013333pt;}
.y76_c01303{bottom:854.786667pt;}
.y70_c01303{bottom:855.546667pt;}
.y75_c01303{bottom:856.320000pt;}
.y6f_c01303{bottom:857.093333pt;}
.y74_c01303{bottom:857.853333pt;}
.y73_c01303{bottom:859.386667pt;}
.y72_c01303{bottom:860.160000pt;}
.y71_c01303{bottom:860.933333pt;}
.y1c8_c01303{bottom:868.613333pt;}
.y1c7_c01303{bottom:871.680000pt;}
.y6c_c01303{bottom:872.453333pt;}
.y6d_c01303{bottom:873.213333pt;}
.y6e_c01303{bottom:873.986667pt;}
.y67_c01303{bottom:875.520000pt;}
.y69_c01303{bottom:877.826667pt;}
.y68_c01303{bottom:878.586667pt;}
.y6a_c01303{bottom:879.360000pt;}
.y6b_c01303{bottom:880.133333pt;}
.y1c6_c01303{bottom:886.266667pt;}
.y62_c01303{bottom:891.653333pt;}
.y61_c01303{bottom:893.186667pt;}
.y1c5_c01303{bottom:894.720000pt;}
.y63_c01303{bottom:895.493333pt;}
.y65_c01303{bottom:896.253333pt;}
.y66_c01303{bottom:897.026667pt;}
.y64_c01303{bottom:897.786667pt;}
.y1c4_c01303{bottom:902.400000pt;}
.y5f_c01303{bottom:908.546667pt;}
.y60_c01303{bottom:909.306667pt;}
.y5e_c01303{bottom:910.080000pt;}
.y5b_c01303{bottom:912.386667pt;}
.y5d_c01303{bottom:913.146667pt;}
.y5a_c01303{bottom:913.920000pt;}
.y5c_c01303{bottom:915.453333pt;}
.y1c1_c01303{bottom:916.986667pt;}
.y1c3_c01303{bottom:917.760000pt;}
.y59_c01303{bottom:926.213333pt;}
.y57_c01303{bottom:927.746667pt;}
.y53_c01303{bottom:928.506667pt;}
.y52_c01303{bottom:929.280000pt;}
.y54_c01303{bottom:930.813333pt;}
.y58_c01303{bottom:931.586667pt;}
.y56_c01303{bottom:933.120000pt;}
.y55_c01303{bottom:933.893333pt;}
.y51_c01303{bottom:944.640000pt;}
.y4c_c01303{bottom:945.413333pt;}
.y4a_c01303{bottom:946.173333pt;}
.y50_c01303{bottom:946.946667pt;}
.y4f_c01303{bottom:948.480000pt;}
.y4e_c01303{bottom:949.253333pt;}
.y1c2_c01303{bottom:950.013333pt;}
.y4b_c01303{bottom:950.786667pt;}
.y4d_c01303{bottom:956.933333pt;}
.y1c0_c01303{bottom:958.466667pt;}
.y43_c01303{bottom:960.773333pt;}
.y44_c01303{bottom:961.533333pt;}
.y42_c01303{bottom:962.306667pt;}
.y48_c01303{bottom:963.066667pt;}
.y46_c01303{bottom:966.146667pt;}
.y47_c01303{bottom:966.906667pt;}
.y45_c01303{bottom:967.680000pt;}
.y49_c01303{bottom:972.293333pt;}
.y41_c01303{bottom:979.200000pt;}
.y40_c01303{bottom:981.506667pt;}
.y3f_c01303{bottom:983.040000pt;}
.y3a_c01303{bottom:985.346667pt;}
.y3b_c01303{bottom:986.106667pt;}
.y3c_c01303{bottom:986.880000pt;}
.y3e_c01303{bottom:988.413333pt;}
.y3d_c01303{bottom:997.626667pt;}
.y39_c01303{bottom:999.933333pt;}
.y35_c01303{bottom:1000.706667pt;}
.y37_c01303{bottom:1001.466667pt;}
.y34_c01303{bottom:1003.773333pt;}
.y36_c01303{bottom:1004.546667pt;}
.y38_c01303{bottom:1005.306667pt;}
.y33_c01303{bottom:1017.600000pt;}
.y32_c01303{bottom:1018.373333pt;}
.y2f_c01303{bottom:1019.133333pt;}
.y31_c01303{bottom:1020.666667pt;}
.y2d_c01303{bottom:1021.440000pt;}
.y30_c01303{bottom:1022.213333pt;}
.y2e_c01303{bottom:1022.973333pt;}
.y27_c01303{bottom:1036.026667pt;}
.y2c_c01303{bottom:1036.800000pt;}
.y29_c01303{bottom:1039.106667pt;}
.y2a_c01303{bottom:1040.640000pt;}
.y28_c01303{bottom:1041.413333pt;}
.y2b_c01303{bottom:1042.946667pt;}
.y23_c01303{bottom:1052.933333pt;}
.y1e_c01303{bottom:1054.466667pt;}
.y26_c01303{bottom:1055.226667pt;}
.y1f_c01303{bottom:1056.000000pt;}
.y15_c01303{bottom:1056.773333pt;}
.y25_c01303{bottom:1059.066667pt;}
.y20_c01303{bottom:1059.840000pt;}
.y21_c01303{bottom:1060.613333pt;}
.y22_c01303{bottom:1061.373333pt;}
.y24_c01303{bottom:1062.906667pt;}
.y14_c01303{bottom:1072.133333pt;}
.y1b_c01303{bottom:1072.893333pt;}
.y1d_c01303{bottom:1073.666667pt;}
.y18_c01303{bottom:1074.426667pt;}
.y1a_c01303{bottom:1075.200000pt;}
.y17_c01303{bottom:1075.973333pt;}
.y16_c01303{bottom:1076.733333pt;}
.y1c_c01303{bottom:1077.506667pt;}
.y19_c01303{bottom:1078.266667pt;}
.y13_c01303{bottom:1089.026667pt;}
.y12_c01303{bottom:1090.560000pt;}
.y11_c01303{bottom:1091.333333pt;}
.y10_c01303{bottom:1094.400000pt;}
.ye_c01303{bottom:1109.760000pt;}
.yf_c01303{bottom:1114.373333pt;}
.y1e4_c01303{bottom:1118.213333pt;}
.y1e5_c01303{bottom:1119.746667pt;}
.y9_c01303{bottom:1127.426667pt;}
.yc_c01303{bottom:1128.960000pt;}
.yd_c01303{bottom:1129.733333pt;}
.yb_c01303{bottom:1130.493333pt;}
.ya_c01303{bottom:1131.266667pt;}
.y8_c01303{bottom:1132.026667pt;}
.y7_c01303{bottom:1146.626667pt;}
.y6_c01303{bottom:1160.453333pt;}
.y5_c01303{bottom:1162.746667pt;}
.y4_c01303{bottom:1163.520000pt;}
.y2_c01303{bottom:1164.293333pt;}
.y3_c01303{bottom:1165.053333pt;}
.y1_c01303{bottom:1170.426667pt;}
.y1e0_c01303{bottom:1191.173333pt;}
.y1e1_c01303{bottom:1191.933333pt;}
.y1e3_c01303{bottom:1192.706667pt;}
.y1e2_c01303{bottom:1193.466667pt;}
.y1df_c01303{bottom:1214.973333pt;}
.y1de_c01303{bottom:1218.813333pt;}
.y1dd_c01303{bottom:1220.346667pt;}
.y1db_c01303{bottom:1253.373333pt;}
.y1dc_c01303{bottom:1254.906667pt;}
.h18_c01303{height:2.764500pt;}
.h1b_c01303{height:4.799479pt;}
.h1a_c01303{height:5.519401pt;}
.h20_c01303{height:8.303099pt;}
.h1e_c01303{height:11.038802pt;}
.h6_c01303{height:13.822500pt;}
.h15_c01303{height:16.606198pt;}
.hc_c01303{height:19.341901pt;}
.h13_c01303{height:22.125599pt;}
.hb_c01303{height:24.861302pt;}
.h12_c01303{height:27.645000pt;}
.ha_c01303{height:30.428698pt;}
.h9_c01303{height:33.164401pt;}
.h2_c01303{height:35.948099pt;}
.h16_c01303{height:38.683802pt;}
.hf_c01303{height:41.467500pt;}
.h7_c01303{height:44.251198pt;}
.h1f_c01303{height:44.507500pt;}
.hd_c01303{height:46.986901pt;}
.h23_c01303{height:47.344531pt;}
.h17_c01303{height:49.770599pt;}
.h10_c01303{height:52.506302pt;}
.h4_c01303{height:55.290000pt;}
.h8_c01303{height:58.073698pt;}
.h5_c01303{height:60.809401pt;}
.h3_c01303{height:63.593099pt;}
.h1c_c01303{height:66.328802pt;}
.h11_c01303{height:69.112500pt;}
.h19_c01303{height:71.896198pt;}
.h14_c01303{height:74.631901pt;}
.h1d_c01303{height:77.415599pt;}
.h25_c01303{height:80.151302pt;}
.h24_c01303{height:82.935000pt;}
.h21_c01303{height:85.718698pt;}
.h26_c01303{height:88.454401pt;}
.h28_c01303{height:110.580000pt;}
.h22_c01303{height:113.363698pt;}
.he_c01303{height:124.402500pt;}
.h27_c01303{height:129.921901pt;}
.h0_c01303{height:1341.693333pt;}
.h1_c01303{height:1342.000000pt;}
.w0_c01303{width:967.680000pt;}
.w1_c01303{width:968.000000pt;}
.x0_c01303{left:0.000000pt;}
.x11a_c01303{left:1.533333pt;}
.x114_c01303{left:8.453333pt;}
.x116_c01303{left:9.986667pt;}
.x119_c01303{left:12.293333pt;}
.x112_c01303{left:31.493333pt;}
.x10f_c01303{left:52.986667pt;}
.x113_c01303{left:97.533333pt;}
.x110_c01303{left:101.373333pt;}
.x111_c01303{left:125.946667pt;}
.x117_c01303{left:151.293333pt;}
.x118_c01303{left:157.440000pt;}
.x16_c01303{left:168.960000pt;}
.x115_c01303{left:178.173333pt;}
.xfd_c01303{left:182.013333pt;}
.x106_c01303{left:196.613333pt;}
.xfc_c01303{left:200.453333pt;}
.xb9_c01303{left:203.520000pt;}
.xa8_c01303{left:205.826667pt;}
.x94_c01303{left:207.360000pt;}
.x35_c01303{left:208.893333pt;}
.x17_c01303{left:211.200000pt;}
.xe3_c01303{left:213.506667pt;}
.xc0_c01303{left:219.653333pt;}
.x62_c01303{left:221.186667pt;}
.x41_c01303{left:222.720000pt;}
.xb4_c01303{left:226.560000pt;}
.x8c_c01303{left:228.866667pt;}
.xea_c01303{left:231.173333pt;}
.xc6_c01303{left:233.466667pt;}
.x3d_c01303{left:235.013333pt;}
.x54_c01303{left:236.546667pt;}
.x85_c01303{left:241.146667pt;}
.xdb_c01303{left:242.693333pt;}
.xaf_c01303{left:244.226667pt;}
.x18_c01303{left:246.533333pt;}
.x67_c01303{left:248.826667pt;}
.x95_c01303{left:252.666667pt;}
.xe8_c01303{left:254.973333pt;}
.x86_c01303{left:257.280000pt;}
.x108_c01303{left:258.813333pt;}
.x19_c01303{left:261.120000pt;}
.x48_c01303{left:264.186667pt;}
.xd5_c01303{left:266.493333pt;}
.x3e_c01303{left:268.800000pt;}
.xa9_c01303{left:271.106667pt;}
.xba_c01303{left:272.640000pt;}
.x1a_c01303{left:274.946667pt;}
.xde_c01303{left:276.480000pt;}
.x55_c01303{left:278.013333pt;}
.x8d_c01303{left:280.320000pt;}
.x4f_c01303{left:281.853333pt;}
.xfa_c01303{left:284.160000pt;}
.xbb_c01303{left:285.693333pt;}
.xb5_c01303{left:288.000000pt;}
.x1b_c01303{left:289.533333pt;}
.xf1_c01303{left:291.840000pt;}
.x28_c01303{left:293.373333pt;}
.xa2_c01303{left:294.906667pt;}
.x56_c01303{left:296.453333pt;}
.x10c_c01303{left:297.986667pt;}
.x63_c01303{left:299.520000pt;}
.xfe_c01303{left:301.053333pt;}
.x1c_c01303{left:305.666667pt;}
.xa3_c01303{left:311.813333pt;}
.xce_c01303{left:314.106667pt;}
.x36_c01303{left:317.186667pt;}
.x68_c01303{left:318.720000pt;}
.x9b_c01303{left:321.026667pt;}
.xf2_c01303{left:323.333333pt;}
.x7b_c01303{left:326.400000pt;}
.xdf_c01303{left:327.933333pt;}
.x82_c01303{left:329.466667pt;}
.x100_c01303{left:331.013333pt;}
.x42_c01303{left:334.080000pt;}
.xf3_c01303{left:337.146667pt;}
.x8e_c01303{left:338.693333pt;}
.x1d_c01303{left:340.226667pt;}
.x49_c01303{left:342.533333pt;}
.x101_c01303{left:344.066667pt;}
.x87_c01303{left:346.373333pt;}
.x69_c01303{left:349.440000pt;}
.x74_c01303{left:351.746667pt;}
.x9c_c01303{left:354.053333pt;}
.x43_c01303{left:356.346667pt;}
.x37_c01303{left:357.893333pt;}
.xa4_c01303{left:359.426667pt;}
.x11c_c01303{left:362.493333pt;}
.x1e_c01303{left:365.573333pt;}
.x4a_c01303{left:367.106667pt;}
.xeb_c01303{left:368.639400pt;}
.x88_c01303{left:370.173333pt;}
.x9d_c01303{left:372.480000pt;}
.x102_c01303{left:374.013333pt;}
.xaa_c01303{left:376.320000pt;}
.x64_c01303{left:377.853333pt;}
.x8f_c01303{left:379.386667pt;}
.xe9_c01303{left:380.933333pt;}
.x29_c01303{left:382.466667pt;}
.x10d_c01303{left:384.773333pt;}
.x75_c01303{left:386.306667pt;}
.x1f_c01303{left:388.613333pt;}
.x109_c01303{left:390.146667pt;}
.xc1_c01303{left:391.680000pt;}
.x57_c01303{left:393.213333pt;}
.xf6_c01303{left:396.293333pt;}
.x7c_c01303{left:397.826667pt;}
.x2a_c01303{left:400.893333pt;}
.x38_c01303{left:403.200000pt;}
.xcf_c01303{left:405.506667pt;}
.x58_c01303{left:407.813333pt;}
.x2b_c01303{left:409.346667pt;}
.xf4_c01303{left:410.880000pt;}
.x9e_c01303{left:413.946667pt;}
.x2c_c01303{left:417.026667pt;}
.x44_c01303{left:419.333333pt;}
.xb1_c01303{left:422.400000pt;}
.x89_c01303{left:424.706667pt;}
.xab_c01303{left:427.013333pt;}
.xc7_c01303{left:428.546667pt;}
.x2d_c01303{left:430.080000pt;}
.x6a_c01303{left:431.613333pt;}
.x103_c01303{left:435.453333pt;}
.x20_c01303{left:436.986667pt;}
.x6b_c01303{left:438.533333pt;}
.xee_c01303{left:440.826667pt;}
.x2e_c01303{left:443.133333pt;}
.x21_c01303{left:445.440000pt;}
.xa5_c01303{left:446.973333pt;}
.xe1_c01303{left:449.280000pt;}
.xec_c01303{left:451.586667pt;}
.x6_c01303{left:453.893333pt;}
.x6c_c01303{left:458.493333pt;}
.xd8_c01303{left:460.800000pt;}
.x59_c01303{left:463.106667pt;}
.xef_c01303{left:465.413333pt;}
.xc9_c01303{left:467.706667pt;}
.xc2_c01303{left:469.253333pt;}
.xc3_c01303{left:473.093333pt;}
.xa6_c01303{left:476.933333pt;}
.xed_c01303{left:483.066667pt;}
.xbc_c01303{left:486.146667pt;}
.x7d_c01303{left:487.680000pt;}
.x1_c01303{left:489.213333pt;}
.x104_c01303{left:490.746667pt;}
.x4b_c01303{left:495.360000pt;}
.x6d_c01303{left:498.426667pt;}
.x50_c01303{left:500.733333pt;}
.x2f_c01303{left:502.266667pt;}
.x5a_c01303{left:503.813333pt;}
.x90_c01303{left:505.346667pt;}
.xd0_c01303{left:506.880000pt;}
.xf0_c01303{left:509.186667pt;}
.x30_c01303{left:513.026667pt;}
.x5b_c01303{left:515.333333pt;}
.xb6_c01303{left:516.866667pt;}
.xca_c01303{left:519.933333pt;}
.x22_c01303{left:521.466667pt;}
.x2_c01303{left:523.013333pt;}
.xe2_c01303{left:526.080000pt;}
.x45_c01303{left:527.613333pt;}
.x6e_c01303{left:529.146667pt;}
.x4c_c01303{left:531.453333pt;}
.x83_c01303{left:533.760000pt;}
.xe4_c01303{left:536.066667pt;}
.x39_c01303{left:538.373333pt;}
.xe5_c01303{left:539.906667pt;}
.x5c_c01303{left:541.440000pt;}
.xf7_c01303{left:543.746667pt;}
.x9f_c01303{left:545.280000pt;}
.x7_c01303{left:548.346667pt;}
.x84_c01303{left:550.653333pt;}
.xe_c01303{left:552.186667pt;}
.x6f_c01303{left:553.733333pt;}
.xf8_c01303{left:555.266667pt;}
.xcb_c01303{left:556.800000pt;}
.x3_c01303{left:558.333333pt;}
.x8a_c01303{left:559.866667pt;}
.x5d_c01303{left:562.173333pt;}
.x23_c01303{left:564.480000pt;}
.x76_c01303{left:566.013333pt;}
.x4d_c01303{left:567.546667pt;}
.x51_c01303{left:570.626667pt;}
.x96_c01303{left:572.160000pt;}
.x11b_c01303{left:574.466667pt;}
.x91_c01303{left:576.773333pt;}
.x4_c01303{left:578.306667pt;}
.x31_c01303{left:582.146667pt;}
.xcc_c01303{left:583.680000pt;}
.xf_c01303{left:586.746667pt;}
.x107_c01303{left:588.293333pt;}
.x7e_c01303{left:590.586667pt;}
.xdc_c01303{left:593.666667pt;}
.x24_c01303{left:595.200000pt;}
.x13_c01303{left:596.733333pt;}
.x8_c01303{left:598.266667pt;}
.x32_c01303{left:600.573333pt;}
.x10_c01303{left:602.880000pt;}
.xb7_c01303{left:604.413333pt;}
.xd9_c01303{left:609.026667pt;}
.x3a_c01303{left:610.560000pt;}
.xac_c01303{left:612.093333pt;}
.x52_c01303{left:614.400000pt;}
.x5e_c01303{left:615.933333pt;}
.xff_c01303{left:619.773333pt;}
.x46_c01303{left:622.853333pt;}
.x25_c01303{left:624.386667pt;}
.xe0_c01303{left:627.453333pt;}
.x65_c01303{left:628.986667pt;}
.x77_c01303{left:631.293333pt;}
.x11_c01303{left:633.600000pt;}
.x9_c01303{left:636.666667pt;}
.xa7_c01303{left:638.213333pt;}
.x70_c01303{left:639.746667pt;}
.xe6_c01303{left:641.280000pt;}
.xf9_c01303{left:642.813333pt;}
.xa0_c01303{left:644.346667pt;}
.xd1_c01303{left:645.893333pt;}
.x8b_c01303{left:647.426667pt;}
.x5f_c01303{left:649.733333pt;}
.xe7_c01303{left:651.265560pt;}
.x14_c01303{left:653.573333pt;}
.x7f_c01303{left:656.640000pt;}
.x60_c01303{left:658.173333pt;}
.x26_c01303{left:662.013333pt;}
.x105_c01303{left:665.093333pt;}
.x12_c01303{left:666.626667pt;}
.xa_c01303{left:668.160000pt;}
.x97_c01303{left:669.693333pt;}
.xb8_c01303{left:671.226667pt;}
.xc4_c01303{left:672.773333pt;}
.x66_c01303{left:675.840000pt;}
.x78_c01303{left:677.373333pt;}
.x33_c01303{left:679.680000pt;}
.x80_c01303{left:681.986667pt;}
.x71_c01303{left:684.293333pt;}
.xbd_c01303{left:686.586667pt;}
.xd6_c01303{left:688.133333pt;}
.xfb_c01303{left:691.973333pt;}
.xda_c01303{left:693.506667pt;}
.x61_c01303{left:695.040000pt;}
.x79_c01303{left:697.346667pt;}
.xb_c01303{left:698.880000pt;}
.x3f_c01303{left:702.720000pt;}
.x10a_c01303{left:704.253333pt;}
.x10e_c01303{left:705.786667pt;}
.xb2_c01303{left:707.333333pt;}
.x4e_c01303{left:710.400000pt;}
.x15_c01303{left:713.466667pt;}
.x27_c01303{left:715.773333pt;}
.xbe_c01303{left:717.306667pt;}
.x53_c01303{left:719.613333pt;}
.x5_c01303{left:721.920000pt;}
.x3b_c01303{left:723.453333pt;}
.x72_c01303{left:726.533333pt;}
.x92_c01303{left:728.826667pt;}
.x34_c01303{left:731.906667pt;}
.xc5_c01303{left:734.213333pt;}
.xc_c01303{left:735.746667pt;}
.x47_c01303{left:738.053333pt;}
.x40_c01303{left:739.586667pt;}
.xd2_c01303{left:741.120000pt;}
.xbf_c01303{left:742.653333pt;}
.x93_c01303{left:744.960000pt;}
.xd3_c01303{left:746.493333pt;}
.x98_c01303{left:748.026667pt;}
.x10b_c01303{left:750.333333pt;}
.x3c_c01303{left:751.866667pt;}
.xd7_c01303{left:753.413333pt;}
.x81_c01303{left:754.946667pt;}
.x7a_c01303{left:757.253333pt;}
.xdd_c01303{left:758.786667pt;}
.x99_c01303{left:760.320000pt;}
.x9a_c01303{left:763.386667pt;}
.xc8_c01303{left:768.773333pt;}
.xb3_c01303{left:771.066667pt;}
.xd4_c01303{left:774.146667pt;}
.xd_c01303{left:776.453333pt;}
.x73_c01303{left:777.986667pt;}
.xad_c01303{left:781.053333pt;}
.xa1_c01303{left:782.586667pt;}
.xcd_c01303{left:784.893333pt;}
.xb0_c01303{left:788.733333pt;}
.xae_c01303{left:791.040000pt;}
.xf5_c01303{left:804.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_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_fac0d985f3d944404f1880e5.woff2')format("woff");}.ff1_c01304{font-family:ff1_c01304;line-height:1.109863;font-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_c01304{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m130_c01304{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.mf7_c01304{transform:matrix(0.088275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088275,0.000000,0.000000,0.250000,0,0);}
.me8_c01304{transform:matrix(0.098550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098550,0.000000,0.000000,0.250000,0,0);}
.m19b_c01304{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m63_c01304{transform:matrix(0.104950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104950,0.000000,0.000000,0.250000,0,0);}
.mee_c01304{transform:matrix(0.106200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106200,0.000000,0.000000,0.250000,0,0);}
.m157_c01304{transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107175,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01304{transform:matrix(0.109625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109625,0.000000,0.000000,0.250000,0,0);}
.me7_c01304{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01304{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m11b_c01304{transform:matrix(0.112650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112650,0.000000,0.000000,0.250000,0,0);}
.m16a_c01304{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m1be_c01304{transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114575,0.000000,0.000000,0.250000,0,0);}
.m147_c01304{transform:matrix(0.114950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114950,0.000000,0.000000,0.250000,0,0);}
.m78_c01304{transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115550,0.000000,0.000000,0.250000,0,0);}
.mf_c01304{transform:matrix(0.119475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119475,0.000000,0.000000,0.250000,0,0);}
.m163_c01304{transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01304{transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01304{transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);}
.m12_c01304{transform:matrix(0.122225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122225,0.000000,0.000000,0.250000,0,0);}
.m13f_c01304{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m79_c01304{transform:matrix(0.123450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123450,0.000000,0.000000,0.250000,0,0);}
.m127_c01304{transform:matrix(0.123875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123875,0.000000,0.000000,0.250000,0,0);}
.m186_c01304{transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);}
.m95_c01304{transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);}
.m149_c01304{transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);}
.m148_c01304{transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128250,0.000000,0.000000,0.250000,0,0);}
.m99_c01304{transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);}
.mb4_c01304{transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);}
.mec_c01304{transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129525,0.000000,0.000000,0.250000,0,0);}
.m13a_c01304{transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);}
.m126_c01304{transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130250,0.000000,0.000000,0.250000,0,0);}
.m8b_c01304{transform:matrix(0.130300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130300,0.000000,0.000000,0.250000,0,0);}
.m139_c01304{transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);}
.m155_c01304{transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);}
.m33_c01304{transform:matrix(0.131925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131925,0.000000,0.000000,0.250000,0,0);}
.m14d_c01304{transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);}
.md5_c01304{transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);}
.mac_c01304{transform:matrix(0.134100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134100,0.000000,0.000000,0.250000,0,0);}
.md7_c01304{transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134450,0.000000,0.000000,0.250000,0,0);}
.m19d_c01304{transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);}
.m16c_c01304{transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);}
.m182_c01304{transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);}
.m88_c01304{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01304{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.m187_c01304{transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);}
.mb0_c01304{transform:matrix(0.136950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136950,0.000000,0.000000,0.250000,0,0);}
.m19c_c01304{transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137850,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01304{transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);}
.m14_c01304{transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);}
.mf0_c01304{transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);}
.m169_c01304{transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);}
.md_c01304{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m170_c01304{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m13e_c01304{transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);}
.m140_c01304{transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01304{transform:matrix(0.140400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140400,0.000000,0.000000,0.250000,0,0);}
.m125_c01304{transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140575,0.000000,0.000000,0.250000,0,0);}
.m138_c01304{transform:matrix(0.141775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141775,0.000000,0.000000,0.250000,0,0);}
.m13c_c01304{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);}
.m80_c01304{transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);}
.m15e_c01304{transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);}
.m7c_c01304{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m3_c01304{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10d_c01304{transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144650,0.000000,0.000000,0.250000,0,0);}
.m94_c01304{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.m13b_c01304{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m105_c01304{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);}
.m16b_c01304{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.m166_c01304{transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);}
.m6d_c01304{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m82_c01304{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);}
.m10e_c01304{transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);}
.mf3_c01304{transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);}
.m9e_c01304{transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148075,0.000000,0.000000,0.250000,0,0);}
.m190_c01304{transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);}
.m9_c01304{transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);}
.mc_c01304{transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);}
.m158_c01304{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);}
.m16d_c01304{transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);}
.m2f_c01304{transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);}
.m11_c01304{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m6a_c01304{transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);}
.m67_c01304{transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);}
.m17b_c01304{transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);}
.m10f_c01304{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);}
.me5_c01304{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m178_c01304{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);}
.m184_c01304{transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);}
.m18f_c01304{transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);}
.m81_c01304{transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);}
.m13d_c01304{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);}
.m150_c01304{transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);}
.mf6_c01304{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.m154_c01304{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m137_c01304{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.m85_c01304{transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157550,0.000000,0.000000,0.250000,0,0);}
.m9f_c01304{transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);}
.m12e_c01304{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.mb3_c01304{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);}
.m62_c01304{transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);}
.ma6_c01304{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.mc7_c01304{transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);}
.m37_c01304{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m10_c01304{transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);}
.m2e_c01304{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);}
.m104_c01304{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.m12c_c01304{transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162075,0.000000,0.000000,0.250000,0,0);}
.mdc_c01304{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01304{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01304{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01304{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m156_c01304{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);}
.m1a3_c01304{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.m9b_c01304{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01304{transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);}
.m69_c01304{transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163775,0.000000,0.000000,0.250000,0,0);}
.m3d_c01304{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m19e_c01304{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.mc6_c01304{transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);}
.m14f_c01304{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m6c_c01304{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.m172_c01304{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.m115_c01304{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.mfd_c01304{transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);}
.m30_c01304{transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);}
.m19f_c01304{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);}
.m1c6_c01304{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.m34_c01304{transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);}
.m14a_c01304{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m9d_c01304{transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);}
.m100_c01304{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.m3b_c01304{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01304{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.m6f_c01304{transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);}
.m143_c01304{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.m53_c01304{transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);}
.m11c_c01304{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m15c_c01304{transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01304{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.mf5_c01304{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.m134_c01304{transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);}
.m16f_c01304{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.m12b_c01304{transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172550,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01304{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01304{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m17d_c01304{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.m15_c01304{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.m17e_c01304{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.m162_c01304{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m191_c01304{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m43_c01304{transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);}
.m4f_c01304{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m168_c01304{transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);}
.m183_c01304{transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);}
.m18a_c01304{transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);}
.m142_c01304{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);}
.m13_c01304{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m167_c01304{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m197_c01304{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);}
.ma9_c01304{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m4e_c01304{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.ma1_c01304{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m66_c01304{transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);}
.m136_c01304{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.mfe_c01304{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m83_c01304{transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);}
.m11d_c01304{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m179_c01304{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.m14e_c01304{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m49_c01304{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);}
.m135_c01304{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.m141_c01304{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);}
.m91_c01304{transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);}
.ma8_c01304{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.ma5_c01304{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);}
.m98_c01304{transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185725,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01304{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m84_c01304{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.m189_c01304{transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186500,0.000000,0.000000,0.250000,0,0);}
.ma3_c01304{transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01304{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m45_c01304{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mfc_c01304{transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187900,0.000000,0.000000,0.250000,0,0);}
.ma0_c01304{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);}
.m145_c01304{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01304{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);}
.m11a_c01304{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01304{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);}
.m193_c01304{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);}
.me3_c01304{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);}
.m8e_c01304{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);}
.mea_c01304{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.m102_c01304{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.m9a_c01304{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01304{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01304{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m75_c01304{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.m77_c01304{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01304{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);}
.m7b_c01304{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);}
.m1a8_c01304{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);}
.m70_c01304{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m52_c01304{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);}
.m180_c01304{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);}
.ma7_c01304{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.m50_c01304{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);}
.m1b0_c01304{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.mc3_c01304{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);}
.m101_c01304{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m199_c01304{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m153_c01304{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01304{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01304{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m16e_c01304{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);}
.m97_c01304{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.me_c01304{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m7d_c01304{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m15f_c01304{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m174_c01304{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);}
.m11f_c01304{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.me4_c01304{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);}
.m132_c01304{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.m133_c01304{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m96_c01304{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.m109_c01304{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);}
.mc2_c01304{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.m6b_c01304{transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199750,0.000000,0.000000,0.250000,0,0);}
.mb_c01304{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.mc8_c01304{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);}
.m12d_c01304{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);}
.m1ab_c01304{transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);}
.m146_c01304{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);}
.me6_c01304{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.m188_c01304{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);}
.mde_c01304{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);}
.mf9_c01304{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.mbd_c01304{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.m21_c01304{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m54_c01304{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);}
.m177_c01304{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01304{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);}
.m5b_c01304{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.m123_c01304{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);}
.md1_c01304{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);}
.m1a_c01304{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.m74_c01304{transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);}
.m106_c01304{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.m26_c01304{transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);}
.m112_c01304{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);}
.m17a_c01304{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.m161_c01304{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);}
.mc5_c01304{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);}
.m19a_c01304{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.m38_c01304{transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01304{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.me0_c01304{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);}
.mbb_c01304{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);}
.m1ae_c01304{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);}
.m10a_c01304{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.m12a_c01304{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m160_c01304{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.m10b_c01304{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01304{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.md4_c01304{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);}
.m17f_c01304{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.mfa_c01304{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);}
.mef_c01304{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m55_c01304{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m18e_c01304{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.mc4_c01304{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.m17_c01304{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.mff_c01304{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);}
.mb9_c01304{transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);}
.mf1_c01304{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);}
.m51_c01304{transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);}
.m128_c01304{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);}
.mcd_c01304{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.m14c_c01304{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);}
.m120_c01304{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.m58_c01304{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m152_c01304{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.m15d_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);}
.mfb_c01304{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);}
.m171_c01304{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);}
.mcf_c01304{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.mf2_c01304{transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);}
.m5e_c01304{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);}
.m181_c01304{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);}
.md6_c01304{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m119_c01304{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);}
.mb5_c01304{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m164_c01304{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.m4c_c01304{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m15b_c01304{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);}
.m175_c01304{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_c01304{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);}
.m7a_c01304{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m60_c01304{transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);}
.mbe_c01304{transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);}
.m192_c01304{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m8a_c01304{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m195_c01304{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m1af_c01304{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);}
.m131_c01304{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);}
.md8_c01304{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);}
.m110_c01304{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);}
.m122_c01304{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m14b_c01304{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.m103_c01304{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m39_c01304{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.mc9_c01304{transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);}
.m18c_c01304{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);}
.mf4_c01304{transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);}
.m92_c01304{transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);}
.me2_c01304{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);}
.mca_c01304{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.mba_c01304{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.m1c_c01304{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);}
.m4b_c01304{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m8d_c01304{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);}
.m87_c01304{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.me9_c01304{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m196_c01304{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);}
.ma2_c01304{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);}
.m35_c01304{transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);}
.me1_c01304{transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236625,0.000000,0.000000,0.250000,0,0);}
.m4d_c01304{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);}
.mb6_c01304{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);}
.m10c_c01304{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);}
.m118_c01304{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m2b_c01304{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);}
.m117_c01304{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);}
.mdd_c01304{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);}
.med_c01304{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);}
.m124_c01304{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);}
.mb7_c01304{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);}
.m1ad_c01304{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);}
.m18_c01304{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);}
.m114_c01304{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);}
.m1ba_c01304{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.mcc_c01304{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);}
.m65_c01304{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);}
.m113_c01304{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);}
.m18b_c01304{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);}
.mc1_c01304{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);}
.md2_c01304{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.m176_c01304{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);}
.m7e_c01304{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.mdf_c01304{transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);}
.m59_c01304{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m17c_c01304{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);}
.m71_c01304{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.m173_c01304{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m116_c01304{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);}
.m5_c01304{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m25_c01304{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m165_c01304{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);}
.mad_c01304{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);}
.m1c7_c01304{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.m22_c01304{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);}
.m46_c01304{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m44_c01304{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);}
.mdb_c01304{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8f_c01304{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);}
.m32_c01304{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);}
.m42_c01304{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);}
.m41_c01304{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);}
.m2c_c01304{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01304{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m28_c01304{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01304{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);}
.m5c_c01304{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m159_c01304{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);}
.m24_c01304{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);}
.m3f_c01304{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7_c01304{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);}
.m4_c01304{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01304{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m57_c01304{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);}
.m40_c01304{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m47_c01304{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);}
.m20_c01304{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);}
.m29_c01304{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m23_c01304{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01304{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);}
.md0_c01304{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c01304{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01304{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);}
.m15a_c01304{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01304{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01304{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md9_c01304{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.meb_c01304{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m8c_c01304{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m89_c01304{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01304{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m76_c01304{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);}
.m111_c01304{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m48_c01304{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01304{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mae_c01304{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);}
.m12f_c01304{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);}
.m121_c01304{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01304{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m16_c01304{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);}
.ma4_c01304{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mbc_c01304{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);}
.m36_c01304{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.ma_c01304{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m144_c01304{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);}
.m1aa_c01304{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mb8_c01304{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m61_c01304{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01304{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);}
.m18d_c01304{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);}
.mc0_c01304{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01304{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);}
.m6_c01304{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m86_c01304{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m27_c01304{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md3_c01304{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m11e_c01304{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mab_c01304{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m72_c01304{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01304{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m198_c01304{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m108_c01304{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m56_c01304{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01304{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);}
.maf_c01304{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m129_c01304{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m194_c01304{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);}
.m1_c01304{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);}
.mce_c01304{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.maa_c01304{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01304{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m19_c01304{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01304{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m68_c01304{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01304{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01304{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m31_c01304{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);}
.m90_c01304{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mcb_c01304{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m64_c01304{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01304{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01304{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m2_c01304{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m93_c01304{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);}
.m0_c01304{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m185_c01304{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);}
.m9c_c01304{transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);}
.m107_c01304{transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);}
.m151_c01304{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01304{transform:matrix(1.835000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.835000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.835000,0.000000,0.000000,0.250000,0,0);}
.v0_c01304{vertical-align:0.000000px;}
.ls1_c01304{letter-spacing:0.000000px;}
.ls0_c01304{letter-spacing:222.267480px;}
.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:-16.886520px;}
.ws1_c01304{word-spacing:0.000000px;}
.fc0_c01304{color:transparent;}
.fs0_c01304{font-size:3.456000px;}
.fs3_c01304{font-size:6.000000px;}
.fs2_c01304{font-size:6.900000px;}
.fs5_c01304{font-size:10.380000px;}
.fs20_c01304{font-size:13.800000px;}
.fs4_c01304{font-size:17.280000px;}
.fs1a_c01304{font-size:20.760000px;}
.fs1f_c01304{font-size:24.180000px;}
.fs1b_c01304{font-size:27.660000px;}
.fs1_c01304{font-size:31.080000px;}
.fsb_c01304{font-size:34.560000px;}
.fs1d_c01304{font-size:38.040000px;}
.fs1c_c01304{font-size:41.460000px;}
.fs1e_c01304{font-size:44.940000px;}
.fs19_c01304{font-size:48.360000px;}
.fs18_c01304{font-size:51.840000px;}
.fs16_c01304{font-size:55.320000px;}
.fs11_c01304{font-size:58.740000px;}
.fs12_c01304{font-size:62.220000px;}
.fsf_c01304{font-size:65.640000px;}
.fs7_c01304{font-size:69.120000px;}
.fs9_c01304{font-size:72.600000px;}
.fs15_c01304{font-size:76.020000px;}
.fs17_c01304{font-size:79.500000px;}
.fsc_c01304{font-size:82.920000px;}
.fs8_c01304{font-size:86.400000px;}
.fs6_c01304{font-size:89.880000px;}
.fs13_c01304{font-size:93.300000px;}
.fs14_c01304{font-size:96.780000px;}
.fsa_c01304{font-size:100.200000px;}
.fse_c01304{font-size:103.680000px;}
.fs10_c01304{font-size:107.160000px;}
.fsd_c01304{font-size:110.580000px;}
.fs21_c01304{font-size:114.060000px;}
.y0_c01304{bottom:0.000000px;}
.y1cb_c01304{bottom:118.365000px;}
.y1ca_c01304{bottom:123.555000px;}
.y1c9_c01304{bottom:167.610000px;}
.y1b6_c01304{bottom:175.395000px;}
.y1be_c01304{bottom:177.120000px;}
.y1ba_c01304{bottom:177.990000px;}
.y1bd_c01304{bottom:178.845000px;}
.y1bb_c01304{bottom:179.715000px;}
.y1bc_c01304{bottom:180.570000px;}
.y1b9_c01304{bottom:184.035000px;}
.y1b8_c01304{bottom:184.890000px;}
.y1b7_c01304{bottom:185.760000px;}
.y1b1_c01304{bottom:200.445000px;}
.y1b0_c01304{bottom:201.315000px;}
.y1ae_c01304{bottom:202.170000px;}
.y1af_c01304{bottom:203.910000px;}
.y1b2_c01304{bottom:204.765000px;}
.y1b4_c01304{bottom:206.490000px;}
.y1b3_c01304{bottom:207.360000px;}
.y1b5_c01304{bottom:208.230000px;}
.y1ad_c01304{bottom:219.450000px;}
.y1ac_c01304{bottom:220.320000px;}
.y1a9_c01304{bottom:221.190000px;}
.y1a6_c01304{bottom:222.045000px;}
.y1a5_c01304{bottom:222.915000px;}
.y1a8_c01304{bottom:223.770000px;}
.y1a7_c01304{bottom:225.510000px;}
.y1aa_c01304{bottom:226.365000px;}
.y1ab_c01304{bottom:232.410000px;}
.y1a0_c01304{bottom:241.050000px;}
.y19d_c01304{bottom:241.920000px;}
.y1a4_c01304{bottom:242.790000px;}
.y1a1_c01304{bottom:243.645000px;}
.y19e_c01304{bottom:244.515000px;}
.y1a3_c01304{bottom:245.370000px;}
.y1a2_c01304{bottom:246.240000px;}
.y19f_c01304{bottom:247.110000px;}
.y19c_c01304{bottom:260.070000px;}
.y198_c01304{bottom:260.925000px;}
.y19a_c01304{bottom:261.795000px;}
.y19b_c01304{bottom:266.115000px;}
.y199_c01304{bottom:267.840000px;}
.y191_c01304{bottom:276.480000px;}
.y193_c01304{bottom:277.350000px;}
.y192_c01304{bottom:278.205000px;}
.y194_c01304{bottom:281.670000px;}
.y195_c01304{bottom:285.990000px;}
.y190_c01304{bottom:287.715000px;}
.y18f_c01304{bottom:288.570000px;}
.y196_c01304{bottom:291.165000px;}
.y197_c01304{bottom:294.630000px;}
.y18e_c01304{bottom:301.530000px;}
.y18a_c01304{bottom:304.125000px;}
.y18b_c01304{bottom:304.995000px;}
.y18d_c01304{bottom:307.590000px;}
.y18c_c01304{bottom:308.445000px;}
.y184_c01304{bottom:323.130000px;}
.y183_c01304{bottom:324.870000px;}
.y188_c01304{bottom:328.320000px;}
.y187_c01304{bottom:329.190000px;}
.y185_c01304{bottom:330.045000px;}
.y189_c01304{bottom:330.915000px;}
.y182_c01304{bottom:333.510000px;}
.y181_c01304{bottom:334.365000px;}
.y186_c01304{bottom:335.235000px;}
.y17d_c01304{bottom:343.005000px;}
.y17b_c01304{bottom:343.875000px;}
.y17a_c01304{bottom:344.730000px;}
.y17f_c01304{bottom:345.600000px;}
.y17c_c01304{bottom:346.470000px;}
.y17e_c01304{bottom:348.195000px;}
.y180_c01304{bottom:349.050000px;}
.y176_c01304{bottom:363.750000px;}
.y174_c01304{bottom:364.605000px;}
.y173_c01304{bottom:365.475000px;}
.y172_c01304{bottom:366.330000px;}
.y178_c01304{bottom:367.200000px;}
.y177_c01304{bottom:369.795000px;}
.y175_c01304{bottom:370.650000px;}
.y179_c01304{bottom:371.520000px;}
.y16d_c01304{bottom:383.610000px;}
.y16e_c01304{bottom:384.480000px;}
.y16f_c01304{bottom:389.670000px;}
.y171_c01304{bottom:390.525000px;}
.y170_c01304{bottom:400.035000px;}
.y16b_c01304{bottom:404.355000px;}
.y167_c01304{bottom:405.210000px;}
.y169_c01304{bottom:406.080000px;}
.y168_c01304{bottom:406.950000px;}
.y166_c01304{bottom:409.530000px;}
.y16a_c01304{bottom:410.400000px;}
.y16c_c01304{bottom:412.125000px;}
.y164_c01304{bottom:424.230000px;}
.y162_c01304{bottom:425.085000px;}
.y163_c01304{bottom:427.680000px;}
.y161_c01304{bottom:429.405000px;}
.y165_c01304{bottom:431.130000px;}
.y160_c01304{bottom:438.915000px;}
.y15e_c01304{bottom:444.090000px;}
.y15f_c01304{bottom:444.960000px;}
.y15a_c01304{bottom:446.685000px;}
.y15d_c01304{bottom:447.555000px;}
.y15c_c01304{bottom:448.410000px;}
.y15b_c01304{bottom:449.280000px;}
.y159_c01304{bottom:450.150000px;}
.y150_c01304{bottom:464.835000px;}
.y156_c01304{bottom:465.690000px;}
.y152_c01304{bottom:466.560000px;}
.y153_c01304{bottom:467.430000px;}
.y157_c01304{bottom:470.010000px;}
.y158_c01304{bottom:470.880000px;}
.y151_c01304{bottom:471.750000px;}
.y155_c01304{bottom:476.070000px;}
.y14f_c01304{bottom:481.245000px;}
.y154_c01304{bottom:485.565000px;}
.y149_c01304{bottom:486.435000px;}
.y14a_c01304{bottom:488.160000px;}
.y148_c01304{bottom:489.030000px;}
.y14b_c01304{bottom:489.885000px;}
.y14e_c01304{bottom:490.755000px;}
.y14c_c01304{bottom:491.610000px;}
.y14d_c01304{bottom:492.480000px;}
.y145_c01304{bottom:505.440000px;}
.y141_c01304{bottom:506.310000px;}
.y143_c01304{bottom:507.165000px;}
.y146_c01304{bottom:511.485000px;}
.y144_c01304{bottom:512.355000px;}
.y142_c01304{bottom:513.210000px;}
.y147_c01304{bottom:516.675000px;}
.y13a_c01304{bottom:527.040000px;}
.y13d_c01304{bottom:528.765000px;}
.y13c_c01304{bottom:529.635000px;}
.y13f_c01304{bottom:530.490000px;}
.y13e_c01304{bottom:532.230000px;}
.y13b_c01304{bottom:533.955000px;}
.y140_c01304{bottom:545.190000px;}
.y139_c01304{bottom:546.915000px;}
.y136_c01304{bottom:548.640000px;}
.y138_c01304{bottom:550.365000px;}
.y137_c01304{bottom:552.960000px;}
.y130_c01304{bottom:561.600000px;}
.y132_c01304{bottom:562.470000px;}
.y131_c01304{bottom:563.325000px;}
.y133_c01304{bottom:564.195000px;}
.y12e_c01304{bottom:565.050000px;}
.y12f_c01304{bottom:569.370000px;}
.y12d_c01304{bottom:573.690000px;}
.y135_c01304{bottom:576.285000px;}
.y134_c01304{bottom:584.070000px;}
.y12a_c01304{bottom:586.650000px;}
.y129_c01304{bottom:587.520000px;}
.y123_c01304{bottom:588.390000px;}
.y125_c01304{bottom:589.245000px;}
.y122_c01304{bottom:590.115000px;}
.y127_c01304{bottom:590.970000px;}
.y12b_c01304{bottom:591.840000px;}
.y126_c01304{bottom:592.710000px;}
.y124_c01304{bottom:594.435000px;}
.y128_c01304{bottom:595.290000px;}
.y12c_c01304{bottom:597.885000px;}
.y121_c01304{bottom:607.395000px;}
.y11e_c01304{bottom:608.250000px;}
.y11b_c01304{bottom:609.120000px;}
.y11f_c01304{bottom:609.990000px;}
.y120_c01304{bottom:612.570000px;}
.y11c_c01304{bottom:613.440000px;}
.y11d_c01304{bottom:614.310000px;}
.y11a_c01304{bottom:620.355000px;}
.y118_c01304{bottom:627.270000px;}
.y117_c01304{bottom:628.125000px;}
.y114_c01304{bottom:628.995000px;}
.y119_c01304{bottom:630.720000px;}
.y115_c01304{bottom:631.590000px;}
.y113_c01304{bottom:632.445000px;}
.y116_c01304{bottom:634.170000px;}
.y10f_c01304{bottom:647.130000px;}
.y110_c01304{bottom:648.000000px;}
.y10a_c01304{bottom:648.870000px;}
.y10e_c01304{bottom:649.725000px;}
.y10c_c01304{bottom:650.595000px;}
.y10b_c01304{bottom:651.450000px;}
.y111_c01304{bottom:653.190000px;}
.y10d_c01304{bottom:654.045000px;}
.y112_c01304{bottom:660.090000px;}
.y109_c01304{bottom:662.685000px;}
.y104_c01304{bottom:667.005000px;}
.y107_c01304{bottom:667.875000px;}
.y106_c01304{bottom:668.730000px;}
.y100_c01304{bottom:669.600000px;}
.y102_c01304{bottom:670.470000px;}
.y103_c01304{bottom:671.325000px;}
.y105_c01304{bottom:672.195000px;}
.y101_c01304{bottom:673.050000px;}
.yff_c01304{bottom:679.965000px;}
.y108_c01304{bottom:686.010000px;}
.yf9_c01304{bottom:688.605000px;}
.yfb_c01304{bottom:689.475000px;}
.yfa_c01304{bottom:693.795000px;}
.yfc_c01304{bottom:694.650000px;}
.yfd_c01304{bottom:696.390000px;}
.yfe_c01304{bottom:705.030000px;}
.yf7_c01304{bottom:706.755000px;}
.yf8_c01304{bottom:707.610000px;}
.yf2_c01304{bottom:708.480000px;}
.yf1_c01304{bottom:709.350000px;}
.yf3_c01304{bottom:710.205000px;}
.yf0_c01304{bottom:711.075000px;}
.yf6_c01304{bottom:712.800000px;}
.yf5_c01304{bottom:713.670000px;}
.yf4_c01304{bottom:714.525000px;}
.yef_c01304{bottom:727.485000px;}
.yec_c01304{bottom:728.355000px;}
.ye9_c01304{bottom:729.210000px;}
.yeb_c01304{bottom:732.675000px;}
.yee_c01304{bottom:734.400000px;}
.yed_c01304{bottom:737.850000px;}
.yea_c01304{bottom:741.315000px;}
.ye5_c01304{bottom:749.085000px;}
.ye6_c01304{bottom:751.680000px;}
.ye7_c01304{bottom:753.405000px;}
.ye8_c01304{bottom:754.275000px;}
.ye4_c01304{bottom:755.130000px;}
.ydc_c01304{bottom:768.960000px;}
.ydd_c01304{bottom:770.685000px;}
.ye0_c01304{bottom:771.555000px;}
.ydf_c01304{bottom:772.410000px;}
.ye3_c01304{bottom:773.280000px;}
.ye2_c01304{bottom:774.150000px;}
.ye1_c01304{bottom:775.005000px;}
.yde_c01304{bottom:776.730000px;}
.ydb_c01304{bottom:788.835000px;}
.yd7_c01304{bottom:790.560000px;}
.yd6_c01304{bottom:791.430000px;}
.yd3_c01304{bottom:792.285000px;}
.yd9_c01304{bottom:793.155000px;}
.yda_c01304{bottom:794.010000px;}
.yd8_c01304{bottom:794.880000px;}
.yd5_c01304{bottom:795.750000px;}
.yd4_c01304{bottom:796.605000px;}
.yd1_c01304{bottom:808.710000px;}
.yd2_c01304{bottom:809.565000px;}
.ycd_c01304{bottom:810.435000px;}
.yd0_c01304{bottom:814.755000px;}
.ycf_c01304{bottom:815.610000px;}
.yce_c01304{bottom:816.480000px;}
.ycb_c01304{bottom:817.350000px;}
.ycc_c01304{bottom:820.800000px;}
.yca_c01304{bottom:829.440000px;}
.yc5_c01304{bottom:830.310000px;}
.yc8_c01304{bottom:832.890000px;}
.yc3_c01304{bottom:834.630000px;}
.yc6_c01304{bottom:835.485000px;}
.yc7_c01304{bottom:836.355000px;}
.yc9_c01304{bottom:838.080000px;}
.yc4_c01304{bottom:846.720000px;}
.yc1_c01304{bottom:849.315000px;}
.ybe_c01304{bottom:850.170000px;}
.yc0_c01304{bottom:851.040000px;}
.ybc_c01304{bottom:851.910000px;}
.ybd_c01304{bottom:853.635000px;}
.ybb_c01304{bottom:855.360000px;}
.ybf_c01304{bottom:856.230000px;}
.yc2_c01304{bottom:869.190000px;}
.yb5_c01304{bottom:870.045000px;}
.yba_c01304{bottom:870.915000px;}
.yb7_c01304{bottom:871.770000px;}
.yb6_c01304{bottom:872.640000px;}
.yb8_c01304{bottom:873.510000px;}
.yb4_c01304{bottom:875.235000px;}
.yb9_c01304{bottom:876.960000px;}
.yb1_c01304{bottom:882.150000px;}
.yb3_c01304{bottom:884.730000px;}
.yb2_c01304{bottom:889.920000px;}
.yae_c01304{bottom:890.790000px;}
.yac_c01304{bottom:892.515000px;}
.yaf_c01304{bottom:893.370000px;}
.yb0_c01304{bottom:894.240000px;}
.yad_c01304{bottom:895.110000px;}
.yab_c01304{bottom:895.965000px;}
.ya4_c01304{bottom:909.795000px;}
.ya3_c01304{bottom:910.650000px;}
.ya6_c01304{bottom:913.245000px;}
.ya9_c01304{bottom:915.840000px;}
.ya5_c01304{bottom:916.710000px;}
.ya7_c01304{bottom:924.480000px;}
.ya8_c01304{bottom:927.930000px;}
.yaa_c01304{bottom:928.800000px;}
.y9b_c01304{bottom:930.525000px;}
.y9c_c01304{bottom:931.395000px;}
.y9e_c01304{bottom:932.250000px;}
.y9d_c01304{bottom:933.120000px;}
.ya2_c01304{bottom:935.715000px;}
.ya1_c01304{bottom:936.570000px;}
.y9f_c01304{bottom:937.440000px;}
.ya0_c01304{bottom:946.950000px;}
.y92_c01304{bottom:951.270000px;}
.y9a_c01304{bottom:952.125000px;}
.y98_c01304{bottom:952.995000px;}
.y94_c01304{bottom:954.720000px;}
.y99_c01304{bottom:955.590000px;}
.y93_c01304{bottom:956.445000px;}
.y91_c01304{bottom:957.315000px;}
.y97_c01304{bottom:959.910000px;}
.y95_c01304{bottom:960.765000px;}
.y96_c01304{bottom:970.275000px;}
.y8e_c01304{bottom:972.000000px;}
.y90_c01304{bottom:972.870000px;}
.y8f_c01304{bottom:973.725000px;}
.y8c_c01304{bottom:977.190000px;}
.y8d_c01304{bottom:980.640000px;}
.y1c8_c01304{bottom:988.410000px;}
.y88_c01304{bottom:990.150000px;}
.y8b_c01304{bottom:991.005000px;}
.y1c7_c01304{bottom:991.875000px;}
.y89_c01304{bottom:992.730000px;}
.y86_c01304{bottom:993.600000px;}
.y87_c01304{bottom:994.470000px;}
.y85_c01304{bottom:995.325000px;}
.y84_c01304{bottom:996.195000px;}
.y8a_c01304{bottom:997.050000px;}
.y83_c01304{bottom:1008.285000px;}
.y82_c01304{bottom:1010.010000px;}
.y81_c01304{bottom:1011.750000px;}
.y7e_c01304{bottom:1012.605000px;}
.y7b_c01304{bottom:1013.475000px;}
.y7c_c01304{bottom:1014.330000px;}
.y80_c01304{bottom:1016.925000px;}
.y7d_c01304{bottom:1017.795000px;}
.y7f_c01304{bottom:1020.390000px;}
.y7a_c01304{bottom:1024.710000px;}
.y77_c01304{bottom:1032.480000px;}
.y74_c01304{bottom:1035.075000px;}
.y79_c01304{bottom:1036.800000px;}
.y76_c01304{bottom:1037.670000px;}
.y75_c01304{bottom:1038.525000px;}
.y78_c01304{bottom:1041.120000px;}
.y70_c01304{bottom:1051.485000px;}
.y6d_c01304{bottom:1052.355000px;}
.y6e_c01304{bottom:1053.210000px;}
.y73_c01304{bottom:1054.080000px;}
.y72_c01304{bottom:1054.950000px;}
.y71_c01304{bottom:1057.530000px;}
.y6c_c01304{bottom:1058.400000px;}
.y6b_c01304{bottom:1059.270000px;}
.y6f_c01304{bottom:1060.125000px;}
.y6a_c01304{bottom:1072.230000px;}
.y64_c01304{bottom:1073.085000px;}
.y63_c01304{bottom:1073.955000px;}
.y68_c01304{bottom:1075.680000px;}
.y66_c01304{bottom:1076.550000px;}
.y67_c01304{bottom:1077.405000px;}
.y65_c01304{bottom:1078.275000px;}
.y69_c01304{bottom:1079.130000px;}
.y1c6_c01304{bottom:1085.190000px;}
.y1c5_c01304{bottom:1087.770000px;}
.y61_c01304{bottom:1092.090000px;}
.y60_c01304{bottom:1092.960000px;}
.y62_c01304{bottom:1094.685000px;}
.y5f_c01304{bottom:1095.555000px;}
.y5d_c01304{bottom:1112.835000px;}
.y5a_c01304{bottom:1113.690000px;}
.y5b_c01304{bottom:1114.560000px;}
.y58_c01304{bottom:1116.285000px;}
.y59_c01304{bottom:1118.880000px;}
.y5c_c01304{bottom:1119.750000px;}
.y5e_c01304{bottom:1125.795000px;}
.y53_c01304{bottom:1132.710000px;}
.y51_c01304{bottom:1135.290000px;}
.y52_c01304{bottom:1137.030000px;}
.y57_c01304{bottom:1137.885000px;}
.y56_c01304{bottom:1138.755000px;}
.y55_c01304{bottom:1139.610000px;}
.y54_c01304{bottom:1140.480000px;}
.y50_c01304{bottom:1145.670000px;}
.y4f_c01304{bottom:1147.395000px;}
.y4b_c01304{bottom:1153.440000px;}
.y4a_c01304{bottom:1154.310000px;}
.y4e_c01304{bottom:1158.630000px;}
.y48_c01304{bottom:1159.485000px;}
.y49_c01304{bottom:1160.355000px;}
.y47_c01304{bottom:1163.805000px;}
.y46_c01304{bottom:1168.125000px;}
.y4d_c01304{bottom:1168.995000px;}
.y4c_c01304{bottom:1169.850000px;}
.y44_c01304{bottom:1173.315000px;}
.y45_c01304{bottom:1174.170000px;}
.y40_c01304{bottom:1175.040000px;}
.y3e_c01304{bottom:1175.910000px;}
.y42_c01304{bottom:1176.765000px;}
.y41_c01304{bottom:1179.360000px;}
.y3f_c01304{bottom:1180.230000px;}
.y43_c01304{bottom:1181.085000px;}
.y3d_c01304{bottom:1193.190000px;}
.y35_c01304{bottom:1194.045000px;}
.y36_c01304{bottom:1194.915000px;}
.y3a_c01304{bottom:1195.770000px;}
.y38_c01304{bottom:1196.640000px;}
.y34_c01304{bottom:1197.510000px;}
.y3c_c01304{bottom:1198.365000px;}
.y37_c01304{bottom:1199.235000px;}
.y3b_c01304{bottom:1200.090000px;}
.y39_c01304{bottom:1200.960000px;}
.y33_c01304{bottom:1213.920000px;}
.y2e_c01304{bottom:1214.790000px;}
.y31_c01304{bottom:1215.645000px;}
.y30_c01304{bottom:1217.370000px;}
.y2d_c01304{bottom:1218.240000px;}
.y32_c01304{bottom:1219.110000px;}
.y2f_c01304{bottom:1219.965000px;}
.y29_c01304{bottom:1234.650000px;}
.y28_c01304{bottom:1235.520000px;}
.y2a_c01304{bottom:1236.390000px;}
.y2b_c01304{bottom:1239.840000px;}
.y2c_c01304{bottom:1240.710000px;}
.y26_c01304{bottom:1253.670000px;}
.y23_c01304{bottom:1255.395000px;}
.y20_c01304{bottom:1256.250000px;}
.y21_c01304{bottom:1257.120000px;}
.y22_c01304{bottom:1257.990000px;}
.y27_c01304{bottom:1259.715000px;}
.y25_c01304{bottom:1260.570000px;}
.y24_c01304{bottom:1264.890000px;}
.y1d_c01304{bottom:1275.270000px;}
.y1c_c01304{bottom:1276.125000px;}
.y1e_c01304{bottom:1276.995000px;}
.y1a_c01304{bottom:1278.720000px;}
.y1f_c01304{bottom:1280.445000px;}
.y1b_c01304{bottom:1281.315000px;}
.y13_c01304{bottom:1295.130000px;}
.y15_c01304{bottom:1296.000000px;}
.y18_c01304{bottom:1296.870000px;}
.y16_c01304{bottom:1297.725000px;}
.y19_c01304{bottom:1300.320000px;}
.y17_c01304{bottom:1301.190000px;}
.y14_c01304{bottom:1302.045000px;}
.y10_c01304{bottom:1314.150000px;}
.y9_c01304{bottom:1315.875000px;}
.yb_c01304{bottom:1316.730000px;}
.yc_c01304{bottom:1317.600000px;}
.ye_c01304{bottom:1318.470000px;}
.y12_c01304{bottom:1319.325000px;}
.yf_c01304{bottom:1320.195000px;}
.y11_c01304{bottom:1321.050000px;}
.yd_c01304{bottom:1321.920000px;}
.ya_c01304{bottom:1322.790000px;}
.y6_c01304{bottom:1345.245000px;}
.y8_c01304{bottom:1347.840000px;}
.y7_c01304{bottom:1349.565000px;}
.y5_c01304{bottom:1355.610000px;}
.y3_c01304{bottom:1369.440000px;}
.y4_c01304{bottom:1371.165000px;}
.y2_c01304{bottom:1372.035000px;}
.y1_c01304{bottom:1378.950000px;}
.y1c4_c01304{bottom:1384.995000px;}
.y1c2_c01304{bottom:1392.765000px;}
.y1c3_c01304{bottom:1395.360000px;}
.y1c1_c01304{bottom:1396.230000px;}
.y1bf_c01304{bottom:1399.680000px;}
.y1c0_c01304{bottom:1402.275000px;}
.h2_c01304{height:3.110063px;}
.h5_c01304{height:5.399414px;}
.h4_c01304{height:6.209326px;}
.h7_c01304{height:9.340986px;}
.h22_c01304{height:12.418652px;}
.h6_c01304{height:15.550313px;}
.h1c_c01304{height:18.681973px;}
.h21_c01304{height:21.759639px;}
.h1d_c01304{height:24.891299px;}
.h3_c01304{height:27.968965px;}
.hd_c01304{height:31.100625px;}
.h1f_c01304{height:34.232285px;}
.h1e_c01304{height:37.309951px;}
.h20_c01304{height:40.441611px;}
.h1b_c01304{height:43.519277px;}
.h1a_c01304{height:46.650937px;}
.h18_c01304{height:49.782598px;}
.h13_c01304{height:52.860264px;}
.h14_c01304{height:55.991924px;}
.h11_c01304{height:59.069590px;}
.h9_c01304{height:62.201250px;}
.hb_c01304{height:65.332910px;}
.h17_c01304{height:68.410576px;}
.h19_c01304{height:71.542236px;}
.he_c01304{height:74.619902px;}
.ha_c01304{height:77.751563px;}
.h8_c01304{height:80.883223px;}
.h15_c01304{height:83.960889px;}
.h16_c01304{height:87.092549px;}
.hc_c01304{height:90.170215px;}
.h10_c01304{height:93.301875px;}
.h12_c01304{height:96.433535px;}
.hf_c01304{height:99.511201px;}
.h23_c01304{height:102.642861px;}
.h1_c01304{height:1513.500000px;}
.h0_c01304{height:1513.725000px;}
.w1_c01304{width:1076.250000px;}
.w0_c01304{width:1076.550000px;}
.x0_c01304{left:0.000000px;}
.x111_c01304{left:167.610000px;}
.x114_c01304{left:171.930000px;}
.x115_c01304{left:186.630000px;}
.xb7_c01304{left:189.210000px;}
.x118_c01304{left:190.950000px;}
.x9d_c01304{left:195.270000px;}
.xc2_c01304{left:199.590000px;}
.xb8_c01304{left:201.315000px;}
.x90_c01304{left:203.910000px;}
.x99_c01304{left:205.635000px;}
.x2c_c01304{left:207.360000px;}
.x9e_c01304{left:209.085000px;}
.xd7_c01304{left:210.810000px;}
.xc8_c01304{left:214.275000px;}
.x6_c01304{left:216.000000px;}
.x9f_c01304{left:218.595000px;}
.x9a_c01304{left:222.045000px;}
.x54_c01304{left:224.640000px;}
.x2d_c01304{left:227.235000px;}
.xb_c01304{left:229.830000px;}
.x17_c01304{left:232.410000px;}
.x7_c01304{left:235.005000px;}
.x66_c01304{left:238.470000px;}
.xe8_c01304{left:240.195000px;}
.x100_c01304{left:241.920000px;}
.xd2_c01304{left:243.645000px;}
.x5c_c01304{left:245.370000px;}
.xb3_c01304{left:248.835000px;}
.x67_c01304{left:250.560000px;}
.xa3_c01304{left:253.155000px;}
.xb9_c01304{left:255.750000px;}
.x23_c01304{left:261.795000px;}
.x106_c01304{left:264.390000px;}
.x79_c01304{left:266.115000px;}
.x24_c01304{left:268.710000px;}
.xa0_c01304{left:270.435000px;}
.x121_c01304{left:273.030000px;}
.xbb_c01304{left:274.755000px;}
.xc3_c01304{left:276.480000px;}
.xdd_c01304{left:279.075000px;}
.x9b_c01304{left:280.800000px;}
.xbc_c01304{left:283.395000px;}
.x89_c01304{left:285.120000px;}
.xf8_c01304{left:286.845000px;}
.xba_c01304{left:289.440000px;}
.x2e_c01304{left:292.035000px;}
.x5d_c01304{left:297.210000px;}
.x18_c01304{left:300.675000px;}
.x91_c01304{left:302.400000px;}
.x70_c01304{left:305.850000px;}
.xbd_c01304{left:308.445000px;}
.x55_c01304{left:310.170000px;}
.xf6_c01304{left:312.765000px;}
.xc_c01304{left:315.360000px;}
.x2f_c01304{left:317.085000px;}
.x77_c01304{left:319.680000px;}
.x102_c01304{left:322.275000px;}
.x71_c01304{left:324.000000px;}
.xc4_c01304{left:326.595000px;}
.x7a_c01304{left:328.320000px;}
.xd9_c01304{left:330.045000px;}
.x42_c01304{left:331.770000px;}
.xd_c01304{left:334.365000px;}
.xbe_c01304{left:336.960000px;}
.x7b_c01304{left:339.555000px;}
.x25_c01304{left:341.280000px;}
.x8_c01304{left:343.875000px;}
.xd4_c01304{left:345.600000px;}
.x19_c01304{left:347.325000px;}
.x10e_c01304{left:349.050000px;}
.xcd_c01304{left:351.645000px;}
.x83_c01304{left:354.240000px;}
.x3a_c01304{left:355.965000px;}
.xd5_c01304{left:361.155000px;}
.x9c_c01304{left:362.880000px;}
.xc9_c01304{left:364.605000px;}
.x30_c01304{left:368.070000px;}
.xd3_c01304{left:369.795000px;}
.x56_c01304{left:371.520000px;}
.x5e_c01304{left:375.840000px;}
.xe_c01304{left:377.565000px;}
.x112_c01304{left:380.160000px;}
.x43_c01304{left:381.885000px;}
.xaf_c01304{left:383.610000px;}
.xce_c01304{left:385.350000px;}
.x4b_c01304{left:387.075000px;}
.x107_c01304{left:388.800000px;}
.xcb_c01304{left:392.250000px;}
.x26_c01304{left:393.990000px;}
.x8a_c01304{left:395.715000px;}
.x4c_c01304{left:403.485000px;}
.xd6_c01304{left:405.210000px;}
.x10f_c01304{left:408.675000px;}
.x3b_c01304{left:410.400000px;}
.xbf_c01304{left:413.850000px;}
.x1a_c01304{left:415.590000px;}
.x84_c01304{left:417.315000px;}
.x11c_c01304{left:419.040000px;}
.x31_c01304{left:420.765000px;}
.x7c_c01304{left:422.490000px;}
.x44_c01304{left:424.230000px;}
.x57_c01304{left:426.810000px;}
.xfd_c01304{left:428.550000px;}
.xcf_c01304{left:432.000000px;}
.xf1_c01304{left:435.450000px;}
.x8b_c01304{left:439.770000px;}
.x68_c01304{left:444.090000px;}
.x1_c01304{left:445.830000px;}
.x72_c01304{left:447.555000px;}
.xa4_c01304{left:449.280000px;}
.x5f_c01304{left:451.005000px;}
.x4d_c01304{left:454.470000px;}
.x2_c01304{left:456.195000px;}
.x27_c01304{left:458.790000px;}
.xde_c01304{left:460.515000px;}
.x11a_c01304{left:462.240000px;}
.xa5_c01304{left:463.965000px;}
.x103_c01304{left:465.690000px;}
.xca_c01304{left:469.155000px;}
.x9_c01304{left:470.880000px;}
.x108_c01304{left:473.475000px;}
.xf_c01304{left:476.070000px;}
.xa6_c01304{left:478.650000px;}
.x7d_c01304{left:481.245000px;}
.xf7_c01304{left:483.840000px;}
.x85_c01304{left:486.435000px;}
.xac_c01304{left:488.160000px;}
.x45_c01304{left:489.885000px;}
.x69_c01304{left:493.350000px;}
.x73_c01304{left:495.930000px;}
.xfe_c01304{left:497.670000px;}
.xe9_c01304{left:499.395000px;}
.xe1_c01304{left:501.120000px;}
.x1b_c01304{left:502.845000px;}
.x92_c01304{left:504.570000px;}
.x4e_c01304{left:508.890000px;}
.x101_c01304{left:511.485000px;}
.x32_c01304{left:513.210000px;}
.xad_c01304{left:514.950000px;}
.xd8_c01304{left:517.530000px;}
.x60_c01304{left:521.850000px;}
.x3_c01304{left:524.445000px;}
.x93_c01304{left:526.170000px;}
.x11d_c01304{left:529.635000px;}
.x94_c01304{left:531.360000px;}
.xda_c01304{left:533.955000px;}
.xb0_c01304{left:535.680000px;}
.x11e_c01304{left:537.405000px;}
.x10_c01304{left:539.130000px;}
.x10b_c01304{left:540.870000px;}
.x33_c01304{left:542.595000px;}
.x8c_c01304{left:545.190000px;}
.x3c_c01304{left:546.915000px;}
.xff_c01304{left:548.640000px;}
.x61_c01304{left:550.365000px;}
.xe2_c01304{left:552.090000px;}
.x74_c01304{left:553.830000px;}
.x8d_c01304{left:555.555000px;}
.x4f_c01304{left:557.280000px;}
.x1c_c01304{left:559.005000px;}
.x11_c01304{left:560.730000px;}
.x4_c01304{left:565.050000px;}
.x123_c01304{left:566.790000px;}
.xdf_c01304{left:570.240000px;}
.x5_c01304{left:571.965000px;}
.x86_c01304{left:574.560000px;}
.x7e_c01304{left:577.155000px;}
.x34_c01304{left:578.880000px;}
.xe6_c01304{left:580.605000px;}
.xea_c01304{left:582.330000px;}
.xa7_c01304{left:584.924952px;}
.x46_c01304{left:586.650000px;}
.x28_c01304{left:589.245000px;}
.x6a_c01304{left:590.970000px;}
.x35_c01304{left:592.710000px;}
.x7f_c01304{left:595.290000px;}
.xa8_c01304{left:597.885000px;}
.x95_c01304{left:601.350000px;}
.x50_c01304{left:604.800000px;}
.xae_c01304{left:607.395000px;}
.xee_c01304{left:609.990000px;}
.x62_c01304{left:611.715000px;}
.x12_c01304{left:613.440000px;}
.x1d_c01304{left:616.035000px;}
.x36_c01304{left:617.760000px;}
.x58_c01304{left:619.485000px;}
.xa9_c01304{left:622.080000px;}
.x47_c01304{left:624.675000px;}
.x6b_c01304{left:626.400000px;}
.xf2_c01304{left:628.995000px;}
.x13_c01304{left:631.590000px;}
.x96_c01304{left:634.170000px;}
.xc0_c01304{left:635.910000px;}
.x8e_c01304{left:637.635000px;}
.x10c_c01304{left:639.360000px;}
.xc5_c01304{left:641.085000px;}
.x75_c01304{left:645.405000px;}
.x6c_c01304{left:647.130000px;}
.x1e_c01304{left:651.450000px;}
.xa_c01304{left:653.190000px;}
.xe0_c01304{left:654.915000px;}
.x48_c01304{left:657.510000px;}
.xe3_c01304{left:660.090000px;}
.x14_c01304{left:661.830000px;}
.x63_c01304{left:665.280000px;}
.x59_c01304{left:669.600000px;}
.x80_c01304{left:673.050000px;}
.xb4_c01304{left:675.645000px;}
.x119_c01304{left:677.370000px;}
.xf3_c01304{left:679.110000px;}
.x49_c01304{left:683.430000px;}
.x29_c01304{left:686.010000px;}
.xfb_c01304{left:688.605000px;}
.x97_c01304{left:690.330000px;}
.x2a_c01304{left:692.925000px;}
.xb1_c01304{left:695.520000px;}
.x1f_c01304{left:698.115000px;}
.x76_c01304{left:699.840000px;}
.x3d_c01304{left:702.435000px;}
.xaa_c01304{left:705.885000px;}
.x87_c01304{left:711.930000px;}
.xa1_c01304{left:714.525000px;}
.x117_c01304{left:717.120000px;}
.x51_c01304{left:718.845000px;}
.x37_c01304{left:721.440000px;}
.xb5_c01304{left:723.165000px;}
.x3e_c01304{left:725.760000px;}
.x10d_c01304{left:727.485000px;}
.xdb_c01304{left:730.080000px;}
.xd0_c01304{left:731.805000px;}
.x116_c01304{left:733.530000px;}
.x81_c01304{left:736.125000px;}
.x52_c01304{left:738.720000px;}
.xd1_c01304{left:742.170000px;}
.xeb_c01304{left:743.910000px;}
.x3f_c01304{left:745.635000px;}
.xe4_c01304{left:748.230000px;}
.x98_c01304{left:749.955000px;}
.x88_c01304{left:751.680000px;}
.x64_c01304{left:756.870000px;}
.x122_c01304{left:760.320000px;}
.x109_c01304{left:762.045000px;}
.x15_c01304{left:763.770000px;}
.x6d_c01304{left:767.235000px;}
.x5a_c01304{left:768.960000px;}
.x2b_c01304{left:770.685000px;}
.x20_c01304{left:772.410000px;}
.x78_c01304{left:775.005000px;}
.x11f_c01304{left:776.730000px;}
.xec_c01304{left:778.470000px;}
.x104_c01304{left:781.050000px;}
.x5b_c01304{left:782.790000px;}
.x8f_c01304{left:785.370000px;}
.x40_c01304{left:787.965000px;}
.x6e_c01304{left:789.690000px;}
.x4a_c01304{left:793.155000px;}
.xa2_c01304{left:794.880000px;}
.x82_c01304{left:800.925000px;}
.x105_c01304{left:803.520000px;}
.xab_c01304{left:805.245000px;}
.x113_c01304{left:807.840000px;}
.x16_c01304{left:809.565000px;}
.x21_c01304{left:813.030000px;}
.x11b_c01304{left:814.755000px;}
.x53_c01304{left:816.480000px;}
.xc6_c01304{left:819.075000px;}
.xb6_c01304{left:820.800000px;}
.x65_c01304{left:822.525000px;}
.xcc_c01304{left:824.250000px;}
.xe7_c01304{left:827.715000px;}
.x22_c01304{left:830.310000px;}
.xf9_c01304{left:832.035000px;}
.xc1_c01304{left:835.485000px;}
.xed_c01304{left:838.080000px;}
.xfa_c01304{left:840.675000px;}
.x10a_c01304{left:843.270000px;}
.xf4_c01304{left:851.040000px;}
.xc7_c01304{left:853.635000px;}
.xdc_c01304{left:855.360000px;}
.x120_c01304{left:858.810000px;}
.xfc_c01304{left:860.550000px;}
.xef_c01304{left:862.275000px;}
.xb2_c01304{left:864.000000px;}
.x38_c01304{left:865.725000px;}
.x6f_c01304{left:869.190000px;}
.xf5_c01304{left:870.915048px;}
.xe5_c01304{left:879.555000px;}
.x41_c01304{left:896.835000px;}
.x39_c01304{left:902.010000px;}
.xf0_c01304{left:911.520000px;}
.x110_c01304{left:928.800000px;}
.x126_c01304{left:1032.480000px;}
.x124_c01304{left:1041.990000px;}
.x12a_c01304{left:1045.440000px;}
.x129_c01304{left:1050.630000px;}
.x125_c01304{left:1056.675000px;}
.x128_c01304{left:1060.995000px;}
.x127_c01304{left:1063.590000px;}
@media print{
.v0_c01304{vertical-align:0.000000pt;}
.ls1_c01304{letter-spacing:0.000000pt;}
.ls0_c01304{letter-spacing:197.571093pt;}
.ws0_c01304{word-spacing:-15.010240pt;}
.ws1_c01304{word-spacing:0.000000pt;}
.fs0_c01304{font-size:3.072000pt;}
.fs3_c01304{font-size:5.333333pt;}
.fs2_c01304{font-size:6.133333pt;}
.fs5_c01304{font-size:9.226667pt;}
.fs20_c01304{font-size:12.266667pt;}
.fs4_c01304{font-size:15.360000pt;}
.fs1a_c01304{font-size:18.453333pt;}
.fs1f_c01304{font-size:21.493333pt;}
.fs1b_c01304{font-size:24.586667pt;}
.fs1_c01304{font-size:27.626667pt;}
.fsb_c01304{font-size:30.720000pt;}
.fs1d_c01304{font-size:33.813333pt;}
.fs1c_c01304{font-size:36.853333pt;}
.fs1e_c01304{font-size:39.946667pt;}
.fs19_c01304{font-size:42.986667pt;}
.fs18_c01304{font-size:46.080000pt;}
.fs16_c01304{font-size:49.173333pt;}
.fs11_c01304{font-size:52.213333pt;}
.fs12_c01304{font-size:55.306667pt;}
.fsf_c01304{font-size:58.346667pt;}
.fs7_c01304{font-size:61.440000pt;}
.fs9_c01304{font-size:64.533333pt;}
.fs15_c01304{font-size:67.573333pt;}
.fs17_c01304{font-size:70.666667pt;}
.fsc_c01304{font-size:73.706667pt;}
.fs8_c01304{font-size:76.800000pt;}
.fs6_c01304{font-size:79.893333pt;}
.fs13_c01304{font-size:82.933333pt;}
.fs14_c01304{font-size:86.026667pt;}
.fsa_c01304{font-size:89.066667pt;}
.fse_c01304{font-size:92.160000pt;}
.fs10_c01304{font-size:95.253333pt;}
.fsd_c01304{font-size:98.293333pt;}
.fs21_c01304{font-size:101.386667pt;}
.y0_c01304{bottom:0.000000pt;}
.y1cb_c01304{bottom:105.213333pt;}
.y1ca_c01304{bottom:109.826667pt;}
.y1c9_c01304{bottom:148.986667pt;}
.y1b6_c01304{bottom:155.906667pt;}
.y1be_c01304{bottom:157.440000pt;}
.y1ba_c01304{bottom:158.213333pt;}
.y1bd_c01304{bottom:158.973333pt;}
.y1bb_c01304{bottom:159.746667pt;}
.y1bc_c01304{bottom:160.506667pt;}
.y1b9_c01304{bottom:163.586667pt;}
.y1b8_c01304{bottom:164.346667pt;}
.y1b7_c01304{bottom:165.120000pt;}
.y1b1_c01304{bottom:178.173333pt;}
.y1b0_c01304{bottom:178.946667pt;}
.y1ae_c01304{bottom:179.706667pt;}
.y1af_c01304{bottom:181.253333pt;}
.y1b2_c01304{bottom:182.013333pt;}
.y1b4_c01304{bottom:183.546667pt;}
.y1b3_c01304{bottom:184.320000pt;}
.y1b5_c01304{bottom:185.093333pt;}
.y1ad_c01304{bottom:195.066667pt;}
.y1ac_c01304{bottom:195.840000pt;}
.y1a9_c01304{bottom:196.613333pt;}
.y1a6_c01304{bottom:197.373333pt;}
.y1a5_c01304{bottom:198.146667pt;}
.y1a8_c01304{bottom:198.906667pt;}
.y1a7_c01304{bottom:200.453333pt;}
.y1aa_c01304{bottom:201.213333pt;}
.y1ab_c01304{bottom:206.586667pt;}
.y1a0_c01304{bottom:214.266667pt;}
.y19d_c01304{bottom:215.040000pt;}
.y1a4_c01304{bottom:215.813333pt;}
.y1a1_c01304{bottom:216.573333pt;}
.y19e_c01304{bottom:217.346667pt;}
.y1a3_c01304{bottom:218.106667pt;}
.y1a2_c01304{bottom:218.880000pt;}
.y19f_c01304{bottom:219.653333pt;}
.y19c_c01304{bottom:231.173333pt;}
.y198_c01304{bottom:231.933333pt;}
.y19a_c01304{bottom:232.706667pt;}
.y19b_c01304{bottom:236.546667pt;}
.y199_c01304{bottom:238.080000pt;}
.y191_c01304{bottom:245.760000pt;}
.y193_c01304{bottom:246.533333pt;}
.y192_c01304{bottom:247.293333pt;}
.y194_c01304{bottom:250.373333pt;}
.y195_c01304{bottom:254.213333pt;}
.y190_c01304{bottom:255.746667pt;}
.y18f_c01304{bottom:256.506667pt;}
.y196_c01304{bottom:258.813333pt;}
.y197_c01304{bottom:261.893333pt;}
.y18e_c01304{bottom:268.026667pt;}
.y18a_c01304{bottom:270.333333pt;}
.y18b_c01304{bottom:271.106667pt;}
.y18d_c01304{bottom:273.413333pt;}
.y18c_c01304{bottom:274.173333pt;}
.y184_c01304{bottom:287.226667pt;}
.y183_c01304{bottom:288.773333pt;}
.y188_c01304{bottom:291.840000pt;}
.y187_c01304{bottom:292.613333pt;}
.y185_c01304{bottom:293.373333pt;}
.y189_c01304{bottom:294.146667pt;}
.y182_c01304{bottom:296.453333pt;}
.y181_c01304{bottom:297.213333pt;}
.y186_c01304{bottom:297.986667pt;}
.y17d_c01304{bottom:304.893333pt;}
.y17b_c01304{bottom:305.666667pt;}
.y17a_c01304{bottom:306.426667pt;}
.y17f_c01304{bottom:307.200000pt;}
.y17c_c01304{bottom:307.973333pt;}
.y17e_c01304{bottom:309.506667pt;}
.y180_c01304{bottom:310.266667pt;}
.y176_c01304{bottom:323.333333pt;}
.y174_c01304{bottom:324.093333pt;}
.y173_c01304{bottom:324.866667pt;}
.y172_c01304{bottom:325.626667pt;}
.y178_c01304{bottom:326.400000pt;}
.y177_c01304{bottom:328.706667pt;}
.y175_c01304{bottom:329.466667pt;}
.y179_c01304{bottom:330.240000pt;}
.y16d_c01304{bottom:340.986667pt;}
.y16e_c01304{bottom:341.760000pt;}
.y16f_c01304{bottom:346.373333pt;}
.y171_c01304{bottom:347.133333pt;}
.y170_c01304{bottom:355.586667pt;}
.y16b_c01304{bottom:359.426667pt;}
.y167_c01304{bottom:360.186667pt;}
.y169_c01304{bottom:360.960000pt;}
.y168_c01304{bottom:361.733333pt;}
.y166_c01304{bottom:364.026667pt;}
.y16a_c01304{bottom:364.800000pt;}
.y16c_c01304{bottom:366.333333pt;}
.y164_c01304{bottom:377.093333pt;}
.y162_c01304{bottom:377.853333pt;}
.y163_c01304{bottom:380.160000pt;}
.y161_c01304{bottom:381.693333pt;}
.y165_c01304{bottom:383.226667pt;}
.y160_c01304{bottom:390.146667pt;}
.y15e_c01304{bottom:394.746667pt;}
.y15f_c01304{bottom:395.520000pt;}
.y15a_c01304{bottom:397.053333pt;}
.y15d_c01304{bottom:397.826667pt;}
.y15c_c01304{bottom:398.586667pt;}
.y15b_c01304{bottom:399.360000pt;}
.y159_c01304{bottom:400.133333pt;}
.y150_c01304{bottom:413.186667pt;}
.y156_c01304{bottom:413.946667pt;}
.y152_c01304{bottom:414.720000pt;}
.y153_c01304{bottom:415.493333pt;}
.y157_c01304{bottom:417.786667pt;}
.y158_c01304{bottom:418.560000pt;}
.y151_c01304{bottom:419.333333pt;}
.y155_c01304{bottom:423.173333pt;}
.y14f_c01304{bottom:427.773333pt;}
.y154_c01304{bottom:431.613333pt;}
.y149_c01304{bottom:432.386667pt;}
.y14a_c01304{bottom:433.920000pt;}
.y148_c01304{bottom:434.693333pt;}
.y14b_c01304{bottom:435.453333pt;}
.y14e_c01304{bottom:436.226667pt;}
.y14c_c01304{bottom:436.986667pt;}
.y14d_c01304{bottom:437.760000pt;}
.y145_c01304{bottom:449.280000pt;}
.y141_c01304{bottom:450.053333pt;}
.y143_c01304{bottom:450.813333pt;}
.y146_c01304{bottom:454.653333pt;}
.y144_c01304{bottom:455.426667pt;}
.y142_c01304{bottom:456.186667pt;}
.y147_c01304{bottom:459.266667pt;}
.y13a_c01304{bottom:468.480000pt;}
.y13d_c01304{bottom:470.013333pt;}
.y13c_c01304{bottom:470.786667pt;}
.y13f_c01304{bottom:471.546667pt;}
.y13e_c01304{bottom:473.093333pt;}
.y13b_c01304{bottom:474.626667pt;}
.y140_c01304{bottom:484.613333pt;}
.y139_c01304{bottom:486.146667pt;}
.y136_c01304{bottom:487.680000pt;}
.y138_c01304{bottom:489.213333pt;}
.y137_c01304{bottom:491.520000pt;}
.y130_c01304{bottom:499.200000pt;}
.y132_c01304{bottom:499.973333pt;}
.y131_c01304{bottom:500.733333pt;}
.y133_c01304{bottom:501.506667pt;}
.y12e_c01304{bottom:502.266667pt;}
.y12f_c01304{bottom:506.106667pt;}
.y12d_c01304{bottom:509.946667pt;}
.y135_c01304{bottom:512.253333pt;}
.y134_c01304{bottom:519.173333pt;}
.y12a_c01304{bottom:521.466667pt;}
.y129_c01304{bottom:522.240000pt;}
.y123_c01304{bottom:523.013333pt;}
.y125_c01304{bottom:523.773333pt;}
.y122_c01304{bottom:524.546667pt;}
.y127_c01304{bottom:525.306667pt;}
.y12b_c01304{bottom:526.080000pt;}
.y126_c01304{bottom:526.853333pt;}
.y124_c01304{bottom:528.386667pt;}
.y128_c01304{bottom:529.146667pt;}
.y12c_c01304{bottom:531.453333pt;}
.y121_c01304{bottom:539.906667pt;}
.y11e_c01304{bottom:540.666667pt;}
.y11b_c01304{bottom:541.440000pt;}
.y11f_c01304{bottom:542.213333pt;}
.y120_c01304{bottom:544.506667pt;}
.y11c_c01304{bottom:545.280000pt;}
.y11d_c01304{bottom:546.053333pt;}
.y11a_c01304{bottom:551.426667pt;}
.y118_c01304{bottom:557.573333pt;}
.y117_c01304{bottom:558.333333pt;}
.y114_c01304{bottom:559.106667pt;}
.y119_c01304{bottom:560.640000pt;}
.y115_c01304{bottom:561.413333pt;}
.y113_c01304{bottom:562.173333pt;}
.y116_c01304{bottom:563.706667pt;}
.y10f_c01304{bottom:575.226667pt;}
.y110_c01304{bottom:576.000000pt;}
.y10a_c01304{bottom:576.773333pt;}
.y10e_c01304{bottom:577.533333pt;}
.y10c_c01304{bottom:578.306667pt;}
.y10b_c01304{bottom:579.066667pt;}
.y111_c01304{bottom:580.613333pt;}
.y10d_c01304{bottom:581.373333pt;}
.y112_c01304{bottom:586.746667pt;}
.y109_c01304{bottom:589.053333pt;}
.y104_c01304{bottom:592.893333pt;}
.y107_c01304{bottom:593.666667pt;}
.y106_c01304{bottom:594.426667pt;}
.y100_c01304{bottom:595.200000pt;}
.y102_c01304{bottom:595.973333pt;}
.y103_c01304{bottom:596.733333pt;}
.y105_c01304{bottom:597.506667pt;}
.y101_c01304{bottom:598.266667pt;}
.yff_c01304{bottom:604.413333pt;}
.y108_c01304{bottom:609.786667pt;}
.yf9_c01304{bottom:612.093333pt;}
.yfb_c01304{bottom:612.866667pt;}
.yfa_c01304{bottom:616.706667pt;}
.yfc_c01304{bottom:617.466667pt;}
.yfd_c01304{bottom:619.013333pt;}
.yfe_c01304{bottom:626.693333pt;}
.yf7_c01304{bottom:628.226667pt;}
.yf8_c01304{bottom:628.986667pt;}
.yf2_c01304{bottom:629.760000pt;}
.yf1_c01304{bottom:630.533333pt;}
.yf3_c01304{bottom:631.293333pt;}
.yf0_c01304{bottom:632.066667pt;}
.yf6_c01304{bottom:633.600000pt;}
.yf5_c01304{bottom:634.373333pt;}
.yf4_c01304{bottom:635.133333pt;}
.yef_c01304{bottom:646.653333pt;}
.yec_c01304{bottom:647.426667pt;}
.ye9_c01304{bottom:648.186667pt;}
.yeb_c01304{bottom:651.266667pt;}
.yee_c01304{bottom:652.800000pt;}
.yed_c01304{bottom:655.866667pt;}
.yea_c01304{bottom:658.946667pt;}
.ye5_c01304{bottom:665.853333pt;}
.ye6_c01304{bottom:668.160000pt;}
.ye7_c01304{bottom:669.693333pt;}
.ye8_c01304{bottom:670.466667pt;}
.ye4_c01304{bottom:671.226667pt;}
.ydc_c01304{bottom:683.520000pt;}
.ydd_c01304{bottom:685.053333pt;}
.ye0_c01304{bottom:685.826667pt;}
.ydf_c01304{bottom:686.586667pt;}
.ye3_c01304{bottom:687.360000pt;}
.ye2_c01304{bottom:688.133333pt;}
.ye1_c01304{bottom:688.893333pt;}
.yde_c01304{bottom:690.426667pt;}
.ydb_c01304{bottom:701.186667pt;}
.yd7_c01304{bottom:702.720000pt;}
.yd6_c01304{bottom:703.493333pt;}
.yd3_c01304{bottom:704.253333pt;}
.yd9_c01304{bottom:705.026667pt;}
.yda_c01304{bottom:705.786667pt;}
.yd8_c01304{bottom:706.560000pt;}
.yd5_c01304{bottom:707.333333pt;}
.yd4_c01304{bottom:708.093333pt;}
.yd1_c01304{bottom:718.853333pt;}
.yd2_c01304{bottom:719.613333pt;}
.ycd_c01304{bottom:720.386667pt;}
.yd0_c01304{bottom:724.226667pt;}
.ycf_c01304{bottom:724.986667pt;}
.yce_c01304{bottom:725.760000pt;}
.ycb_c01304{bottom:726.533333pt;}
.ycc_c01304{bottom:729.600000pt;}
.yca_c01304{bottom:737.280000pt;}
.yc5_c01304{bottom:738.053333pt;}
.yc8_c01304{bottom:740.346667pt;}
.yc3_c01304{bottom:741.893333pt;}
.yc6_c01304{bottom:742.653333pt;}
.yc7_c01304{bottom:743.426667pt;}
.yc9_c01304{bottom:744.960000pt;}
.yc4_c01304{bottom:752.640000pt;}
.yc1_c01304{bottom:754.946667pt;}
.ybe_c01304{bottom:755.706667pt;}
.yc0_c01304{bottom:756.480000pt;}
.ybc_c01304{bottom:757.253333pt;}
.ybd_c01304{bottom:758.786667pt;}
.ybb_c01304{bottom:760.320000pt;}
.ybf_c01304{bottom:761.093333pt;}
.yc2_c01304{bottom:772.613333pt;}
.yb5_c01304{bottom:773.373333pt;}
.yba_c01304{bottom:774.146667pt;}
.yb7_c01304{bottom:774.906667pt;}
.yb6_c01304{bottom:775.680000pt;}
.yb8_c01304{bottom:776.453333pt;}
.yb4_c01304{bottom:777.986667pt;}
.yb9_c01304{bottom:779.520000pt;}
.yb1_c01304{bottom:784.133333pt;}
.yb3_c01304{bottom:786.426667pt;}
.yb2_c01304{bottom:791.040000pt;}
.yae_c01304{bottom:791.813333pt;}
.yac_c01304{bottom:793.346667pt;}
.yaf_c01304{bottom:794.106667pt;}
.yb0_c01304{bottom:794.880000pt;}
.yad_c01304{bottom:795.653333pt;}
.yab_c01304{bottom:796.413333pt;}
.ya4_c01304{bottom:808.706667pt;}
.ya3_c01304{bottom:809.466667pt;}
.ya6_c01304{bottom:811.773333pt;}
.ya9_c01304{bottom:814.080000pt;}
.ya5_c01304{bottom:814.853333pt;}
.ya7_c01304{bottom:821.760000pt;}
.ya8_c01304{bottom:824.826667pt;}
.yaa_c01304{bottom:825.600000pt;}
.y9b_c01304{bottom:827.133333pt;}
.y9c_c01304{bottom:827.906667pt;}
.y9e_c01304{bottom:828.666667pt;}
.y9d_c01304{bottom:829.440000pt;}
.ya2_c01304{bottom:831.746667pt;}
.ya1_c01304{bottom:832.506667pt;}
.y9f_c01304{bottom:833.280000pt;}
.ya0_c01304{bottom:841.733333pt;}
.y92_c01304{bottom:845.573333pt;}
.y9a_c01304{bottom:846.333333pt;}
.y98_c01304{bottom:847.106667pt;}
.y94_c01304{bottom:848.640000pt;}
.y99_c01304{bottom:849.413333pt;}
.y93_c01304{bottom:850.173333pt;}
.y91_c01304{bottom:850.946667pt;}
.y97_c01304{bottom:853.253333pt;}
.y95_c01304{bottom:854.013333pt;}
.y96_c01304{bottom:862.466667pt;}
.y8e_c01304{bottom:864.000000pt;}
.y90_c01304{bottom:864.773333pt;}
.y8f_c01304{bottom:865.533333pt;}
.y8c_c01304{bottom:868.613333pt;}
.y8d_c01304{bottom:871.680000pt;}
.y1c8_c01304{bottom:878.586667pt;}
.y88_c01304{bottom:880.133333pt;}
.y8b_c01304{bottom:880.893333pt;}
.y1c7_c01304{bottom:881.666667pt;}
.y89_c01304{bottom:882.426667pt;}
.y86_c01304{bottom:883.200000pt;}
.y87_c01304{bottom:883.973333pt;}
.y85_c01304{bottom:884.733333pt;}
.y84_c01304{bottom:885.506667pt;}
.y8a_c01304{bottom:886.266667pt;}
.y83_c01304{bottom:896.253333pt;}
.y82_c01304{bottom:897.786667pt;}
.y81_c01304{bottom:899.333333pt;}
.y7e_c01304{bottom:900.093333pt;}
.y7b_c01304{bottom:900.866667pt;}
.y7c_c01304{bottom:901.626667pt;}
.y80_c01304{bottom:903.933333pt;}
.y7d_c01304{bottom:904.706667pt;}
.y7f_c01304{bottom:907.013333pt;}
.y7a_c01304{bottom:910.853333pt;}
.y77_c01304{bottom:917.760000pt;}
.y74_c01304{bottom:920.066667pt;}
.y79_c01304{bottom:921.600000pt;}
.y76_c01304{bottom:922.373333pt;}
.y75_c01304{bottom:923.133333pt;}
.y78_c01304{bottom:925.440000pt;}
.y70_c01304{bottom:934.653333pt;}
.y6d_c01304{bottom:935.426667pt;}
.y6e_c01304{bottom:936.186667pt;}
.y73_c01304{bottom:936.960000pt;}
.y72_c01304{bottom:937.733333pt;}
.y71_c01304{bottom:940.026667pt;}
.y6c_c01304{bottom:940.800000pt;}
.y6b_c01304{bottom:941.573333pt;}
.y6f_c01304{bottom:942.333333pt;}
.y6a_c01304{bottom:953.093333pt;}
.y64_c01304{bottom:953.853333pt;}
.y63_c01304{bottom:954.626667pt;}
.y68_c01304{bottom:956.160000pt;}
.y66_c01304{bottom:956.933333pt;}
.y67_c01304{bottom:957.693333pt;}
.y65_c01304{bottom:958.466667pt;}
.y69_c01304{bottom:959.226667pt;}
.y1c6_c01304{bottom:964.613333pt;}
.y1c5_c01304{bottom:966.906667pt;}
.y61_c01304{bottom:970.746667pt;}
.y60_c01304{bottom:971.520000pt;}
.y62_c01304{bottom:973.053333pt;}
.y5f_c01304{bottom:973.826667pt;}
.y5d_c01304{bottom:989.186667pt;}
.y5a_c01304{bottom:989.946667pt;}
.y5b_c01304{bottom:990.720000pt;}
.y58_c01304{bottom:992.253333pt;}
.y59_c01304{bottom:994.560000pt;}
.y5c_c01304{bottom:995.333333pt;}
.y5e_c01304{bottom:1000.706667pt;}
.y53_c01304{bottom:1006.853333pt;}
.y51_c01304{bottom:1009.146667pt;}
.y52_c01304{bottom:1010.693333pt;}
.y57_c01304{bottom:1011.453333pt;}
.y56_c01304{bottom:1012.226667pt;}
.y55_c01304{bottom:1012.986667pt;}
.y54_c01304{bottom:1013.760000pt;}
.y50_c01304{bottom:1018.373333pt;}
.y4f_c01304{bottom:1019.906667pt;}
.y4b_c01304{bottom:1025.280000pt;}
.y4a_c01304{bottom:1026.053333pt;}
.y4e_c01304{bottom:1029.893333pt;}
.y48_c01304{bottom:1030.653333pt;}
.y49_c01304{bottom:1031.426667pt;}
.y47_c01304{bottom:1034.493333pt;}
.y46_c01304{bottom:1038.333333pt;}
.y4d_c01304{bottom:1039.106667pt;}
.y4c_c01304{bottom:1039.866667pt;}
.y44_c01304{bottom:1042.946667pt;}
.y45_c01304{bottom:1043.706667pt;}
.y40_c01304{bottom:1044.480000pt;}
.y3e_c01304{bottom:1045.253333pt;}
.y42_c01304{bottom:1046.013333pt;}
.y41_c01304{bottom:1048.320000pt;}
.y3f_c01304{bottom:1049.093333pt;}
.y43_c01304{bottom:1049.853333pt;}
.y3d_c01304{bottom:1060.613333pt;}
.y35_c01304{bottom:1061.373333pt;}
.y36_c01304{bottom:1062.146667pt;}
.y3a_c01304{bottom:1062.906667pt;}
.y38_c01304{bottom:1063.680000pt;}
.y34_c01304{bottom:1064.453333pt;}
.y3c_c01304{bottom:1065.213333pt;}
.y37_c01304{bottom:1065.986667pt;}
.y3b_c01304{bottom:1066.746667pt;}
.y39_c01304{bottom:1067.520000pt;}
.y33_c01304{bottom:1079.040000pt;}
.y2e_c01304{bottom:1079.813333pt;}
.y31_c01304{bottom:1080.573333pt;}
.y30_c01304{bottom:1082.106667pt;}
.y2d_c01304{bottom:1082.880000pt;}
.y32_c01304{bottom:1083.653333pt;}
.y2f_c01304{bottom:1084.413333pt;}
.y29_c01304{bottom:1097.466667pt;}
.y28_c01304{bottom:1098.240000pt;}
.y2a_c01304{bottom:1099.013333pt;}
.y2b_c01304{bottom:1102.080000pt;}
.y2c_c01304{bottom:1102.853333pt;}
.y26_c01304{bottom:1114.373333pt;}
.y23_c01304{bottom:1115.906667pt;}
.y20_c01304{bottom:1116.666667pt;}
.y21_c01304{bottom:1117.440000pt;}
.y22_c01304{bottom:1118.213333pt;}
.y27_c01304{bottom:1119.746667pt;}
.y25_c01304{bottom:1120.506667pt;}
.y24_c01304{bottom:1124.346667pt;}
.y1d_c01304{bottom:1133.573333pt;}
.y1c_c01304{bottom:1134.333333pt;}
.y1e_c01304{bottom:1135.106667pt;}
.y1a_c01304{bottom:1136.640000pt;}
.y1f_c01304{bottom:1138.173333pt;}
.y1b_c01304{bottom:1138.946667pt;}
.y13_c01304{bottom:1151.226667pt;}
.y15_c01304{bottom:1152.000000pt;}
.y18_c01304{bottom:1152.773333pt;}
.y16_c01304{bottom:1153.533333pt;}
.y19_c01304{bottom:1155.840000pt;}
.y17_c01304{bottom:1156.613333pt;}
.y14_c01304{bottom:1157.373333pt;}
.y10_c01304{bottom:1168.133333pt;}
.y9_c01304{bottom:1169.666667pt;}
.yb_c01304{bottom:1170.426667pt;}
.yc_c01304{bottom:1171.200000pt;}
.ye_c01304{bottom:1171.973333pt;}
.y12_c01304{bottom:1172.733333pt;}
.yf_c01304{bottom:1173.506667pt;}
.y11_c01304{bottom:1174.266667pt;}
.yd_c01304{bottom:1175.040000pt;}
.ya_c01304{bottom:1175.813333pt;}
.y6_c01304{bottom:1195.773333pt;}
.y8_c01304{bottom:1198.080000pt;}
.y7_c01304{bottom:1199.613333pt;}
.y5_c01304{bottom:1204.986667pt;}
.y3_c01304{bottom:1217.280000pt;}
.y4_c01304{bottom:1218.813333pt;}
.y2_c01304{bottom:1219.586667pt;}
.y1_c01304{bottom:1225.733333pt;}
.y1c4_c01304{bottom:1231.106667pt;}
.y1c2_c01304{bottom:1238.013333pt;}
.y1c3_c01304{bottom:1240.320000pt;}
.y1c1_c01304{bottom:1241.093333pt;}
.y1bf_c01304{bottom:1244.160000pt;}
.y1c0_c01304{bottom:1246.466667pt;}
.h2_c01304{height:2.764500pt;}
.h5_c01304{height:4.799479pt;}
.h4_c01304{height:5.519401pt;}
.h7_c01304{height:8.303099pt;}
.h22_c01304{height:11.038802pt;}
.h6_c01304{height:13.822500pt;}
.h1c_c01304{height:16.606198pt;}
.h21_c01304{height:19.341901pt;}
.h1d_c01304{height:22.125599pt;}
.h3_c01304{height:24.861302pt;}
.hd_c01304{height:27.645000pt;}
.h1f_c01304{height:30.428698pt;}
.h1e_c01304{height:33.164401pt;}
.h20_c01304{height:35.948099pt;}
.h1b_c01304{height:38.683802pt;}
.h1a_c01304{height:41.467500pt;}
.h18_c01304{height:44.251198pt;}
.h13_c01304{height:46.986901pt;}
.h14_c01304{height:49.770599pt;}
.h11_c01304{height:52.506302pt;}
.h9_c01304{height:55.290000pt;}
.hb_c01304{height:58.073698pt;}
.h17_c01304{height:60.809401pt;}
.h19_c01304{height:63.593099pt;}
.he_c01304{height:66.328802pt;}
.ha_c01304{height:69.112500pt;}
.h8_c01304{height:71.896198pt;}
.h15_c01304{height:74.631901pt;}
.h16_c01304{height:77.415599pt;}
.hc_c01304{height:80.151302pt;}
.h10_c01304{height:82.935000pt;}
.h12_c01304{height:85.718698pt;}
.hf_c01304{height:88.454401pt;}
.h23_c01304{height:91.238099pt;}
.h1_c01304{height:1345.333333pt;}
.h0_c01304{height:1345.533333pt;}
.w1_c01304{width:956.666667pt;}
.w0_c01304{width:956.933333pt;}
.x0_c01304{left:0.000000pt;}
.x111_c01304{left:148.986667pt;}
.x114_c01304{left:152.826667pt;}
.x115_c01304{left:165.893333pt;}
.xb7_c01304{left:168.186667pt;}
.x118_c01304{left:169.733333pt;}
.x9d_c01304{left:173.573333pt;}
.xc2_c01304{left:177.413333pt;}
.xb8_c01304{left:178.946667pt;}
.x90_c01304{left:181.253333pt;}
.x99_c01304{left:182.786667pt;}
.x2c_c01304{left:184.320000pt;}
.x9e_c01304{left:185.853333pt;}
.xd7_c01304{left:187.386667pt;}
.xc8_c01304{left:190.466667pt;}
.x6_c01304{left:192.000000pt;}
.x9f_c01304{left:194.306667pt;}
.x9a_c01304{left:197.373333pt;}
.x54_c01304{left:199.680000pt;}
.x2d_c01304{left:201.986667pt;}
.xb_c01304{left:204.293333pt;}
.x17_c01304{left:206.586667pt;}
.x7_c01304{left:208.893333pt;}
.x66_c01304{left:211.973333pt;}
.xe8_c01304{left:213.506667pt;}
.x100_c01304{left:215.040000pt;}
.xd2_c01304{left:216.573333pt;}
.x5c_c01304{left:218.106667pt;}
.xb3_c01304{left:221.186667pt;}
.x67_c01304{left:222.720000pt;}
.xa3_c01304{left:225.026667pt;}
.xb9_c01304{left:227.333333pt;}
.x23_c01304{left:232.706667pt;}
.x106_c01304{left:235.013333pt;}
.x79_c01304{left:236.546667pt;}
.x24_c01304{left:238.853333pt;}
.xa0_c01304{left:240.386667pt;}
.x121_c01304{left:242.693333pt;}
.xbb_c01304{left:244.226667pt;}
.xc3_c01304{left:245.760000pt;}
.xdd_c01304{left:248.066667pt;}
.x9b_c01304{left:249.600000pt;}
.xbc_c01304{left:251.906667pt;}
.x89_c01304{left:253.440000pt;}
.xf8_c01304{left:254.973333pt;}
.xba_c01304{left:257.280000pt;}
.x2e_c01304{left:259.586667pt;}
.x5d_c01304{left:264.186667pt;}
.x18_c01304{left:267.266667pt;}
.x91_c01304{left:268.800000pt;}
.x70_c01304{left:271.866667pt;}
.xbd_c01304{left:274.173333pt;}
.x55_c01304{left:275.706667pt;}
.xf6_c01304{left:278.013333pt;}
.xc_c01304{left:280.320000pt;}
.x2f_c01304{left:281.853333pt;}
.x77_c01304{left:284.160000pt;}
.x102_c01304{left:286.466667pt;}
.x71_c01304{left:288.000000pt;}
.xc4_c01304{left:290.306667pt;}
.x7a_c01304{left:291.840000pt;}
.xd9_c01304{left:293.373333pt;}
.x42_c01304{left:294.906667pt;}
.xd_c01304{left:297.213333pt;}
.xbe_c01304{left:299.520000pt;}
.x7b_c01304{left:301.826667pt;}
.x25_c01304{left:303.360000pt;}
.x8_c01304{left:305.666667pt;}
.xd4_c01304{left:307.200000pt;}
.x19_c01304{left:308.733333pt;}
.x10e_c01304{left:310.266667pt;}
.xcd_c01304{left:312.573333pt;}
.x83_c01304{left:314.880000pt;}
.x3a_c01304{left:316.413333pt;}
.xd5_c01304{left:321.026667pt;}
.x9c_c01304{left:322.560000pt;}
.xc9_c01304{left:324.093333pt;}
.x30_c01304{left:327.173333pt;}
.xd3_c01304{left:328.706667pt;}
.x56_c01304{left:330.240000pt;}
.x5e_c01304{left:334.080000pt;}
.xe_c01304{left:335.613333pt;}
.x112_c01304{left:337.920000pt;}
.x43_c01304{left:339.453333pt;}
.xaf_c01304{left:340.986667pt;}
.xce_c01304{left:342.533333pt;}
.x4b_c01304{left:344.066667pt;}
.x107_c01304{left:345.600000pt;}
.xcb_c01304{left:348.666667pt;}
.x26_c01304{left:350.213333pt;}
.x8a_c01304{left:351.746667pt;}
.x4c_c01304{left:358.653333pt;}
.xd6_c01304{left:360.186667pt;}
.x10f_c01304{left:363.266667pt;}
.x3b_c01304{left:364.800000pt;}
.xbf_c01304{left:367.866667pt;}
.x1a_c01304{left:369.413333pt;}
.x84_c01304{left:370.946667pt;}
.x11c_c01304{left:372.480000pt;}
.x31_c01304{left:374.013333pt;}
.x7c_c01304{left:375.546667pt;}
.x44_c01304{left:377.093333pt;}
.x57_c01304{left:379.386667pt;}
.xfd_c01304{left:380.933333pt;}
.xcf_c01304{left:384.000000pt;}
.xf1_c01304{left:387.066667pt;}
.x8b_c01304{left:390.906667pt;}
.x68_c01304{left:394.746667pt;}
.x1_c01304{left:396.293333pt;}
.x72_c01304{left:397.826667pt;}
.xa4_c01304{left:399.360000pt;}
.x5f_c01304{left:400.893333pt;}
.x4d_c01304{left:403.973333pt;}
.x2_c01304{left:405.506667pt;}
.x27_c01304{left:407.813333pt;}
.xde_c01304{left:409.346667pt;}
.x11a_c01304{left:410.880000pt;}
.xa5_c01304{left:412.413333pt;}
.x103_c01304{left:413.946667pt;}
.xca_c01304{left:417.026667pt;}
.x9_c01304{left:418.560000pt;}
.x108_c01304{left:420.866667pt;}
.xf_c01304{left:423.173333pt;}
.xa6_c01304{left:425.466667pt;}
.x7d_c01304{left:427.773333pt;}
.xf7_c01304{left:430.080000pt;}
.x85_c01304{left:432.386667pt;}
.xac_c01304{left:433.920000pt;}
.x45_c01304{left:435.453333pt;}
.x69_c01304{left:438.533333pt;}
.x73_c01304{left:440.826667pt;}
.xfe_c01304{left:442.373333pt;}
.xe9_c01304{left:443.906667pt;}
.xe1_c01304{left:445.440000pt;}
.x1b_c01304{left:446.973333pt;}
.x92_c01304{left:448.506667pt;}
.x4e_c01304{left:452.346667pt;}
.x101_c01304{left:454.653333pt;}
.x32_c01304{left:456.186667pt;}
.xad_c01304{left:457.733333pt;}
.xd8_c01304{left:460.026667pt;}
.x60_c01304{left:463.866667pt;}
.x3_c01304{left:466.173333pt;}
.x93_c01304{left:467.706667pt;}
.x11d_c01304{left:470.786667pt;}
.x94_c01304{left:472.320000pt;}
.xda_c01304{left:474.626667pt;}
.xb0_c01304{left:476.160000pt;}
.x11e_c01304{left:477.693333pt;}
.x10_c01304{left:479.226667pt;}
.x10b_c01304{left:480.773333pt;}
.x33_c01304{left:482.306667pt;}
.x8c_c01304{left:484.613333pt;}
.x3c_c01304{left:486.146667pt;}
.xff_c01304{left:487.680000pt;}
.x61_c01304{left:489.213333pt;}
.xe2_c01304{left:490.746667pt;}
.x74_c01304{left:492.293333pt;}
.x8d_c01304{left:493.826667pt;}
.x4f_c01304{left:495.360000pt;}
.x1c_c01304{left:496.893333pt;}
.x11_c01304{left:498.426667pt;}
.x4_c01304{left:502.266667pt;}
.x123_c01304{left:503.813333pt;}
.xdf_c01304{left:506.880000pt;}
.x5_c01304{left:508.413333pt;}
.x86_c01304{left:510.720000pt;}
.x7e_c01304{left:513.026667pt;}
.x34_c01304{left:514.560000pt;}
.xe6_c01304{left:516.093333pt;}
.xea_c01304{left:517.626667pt;}
.xa7_c01304{left:519.933291pt;}
.x46_c01304{left:521.466667pt;}
.x28_c01304{left:523.773333pt;}
.x6a_c01304{left:525.306667pt;}
.x35_c01304{left:526.853333pt;}
.x7f_c01304{left:529.146667pt;}
.xa8_c01304{left:531.453333pt;}
.x95_c01304{left:534.533333pt;}
.x50_c01304{left:537.600000pt;}
.xae_c01304{left:539.906667pt;}
.xee_c01304{left:542.213333pt;}
.x62_c01304{left:543.746667pt;}
.x12_c01304{left:545.280000pt;}
.x1d_c01304{left:547.586667pt;}
.x36_c01304{left:549.120000pt;}
.x58_c01304{left:550.653333pt;}
.xa9_c01304{left:552.960000pt;}
.x47_c01304{left:555.266667pt;}
.x6b_c01304{left:556.800000pt;}
.xf2_c01304{left:559.106667pt;}
.x13_c01304{left:561.413333pt;}
.x96_c01304{left:563.706667pt;}
.xc0_c01304{left:565.253333pt;}
.x8e_c01304{left:566.786667pt;}
.x10c_c01304{left:568.320000pt;}
.xc5_c01304{left:569.853333pt;}
.x75_c01304{left:573.693333pt;}
.x6c_c01304{left:575.226667pt;}
.x1e_c01304{left:579.066667pt;}
.xa_c01304{left:580.613333pt;}
.xe0_c01304{left:582.146667pt;}
.x48_c01304{left:584.453333pt;}
.xe3_c01304{left:586.746667pt;}
.x14_c01304{left:588.293333pt;}
.x63_c01304{left:591.360000pt;}
.x59_c01304{left:595.200000pt;}
.x80_c01304{left:598.266667pt;}
.xb4_c01304{left:600.573333pt;}
.x119_c01304{left:602.106667pt;}
.xf3_c01304{left:603.653333pt;}
.x49_c01304{left:607.493333pt;}
.x29_c01304{left:609.786667pt;}
.xfb_c01304{left:612.093333pt;}
.x97_c01304{left:613.626667pt;}
.x2a_c01304{left:615.933333pt;}
.xb1_c01304{left:618.240000pt;}
.x1f_c01304{left:620.546667pt;}
.x76_c01304{left:622.080000pt;}
.x3d_c01304{left:624.386667pt;}
.xaa_c01304{left:627.453333pt;}
.x87_c01304{left:632.826667pt;}
.xa1_c01304{left:635.133333pt;}
.x117_c01304{left:637.440000pt;}
.x51_c01304{left:638.973333pt;}
.x37_c01304{left:641.280000pt;}
.xb5_c01304{left:642.813333pt;}
.x3e_c01304{left:645.120000pt;}
.x10d_c01304{left:646.653333pt;}
.xdb_c01304{left:648.960000pt;}
.xd0_c01304{left:650.493333pt;}
.x116_c01304{left:652.026667pt;}
.x81_c01304{left:654.333333pt;}
.x52_c01304{left:656.640000pt;}
.xd1_c01304{left:659.706667pt;}
.xeb_c01304{left:661.253333pt;}
.x3f_c01304{left:662.786667pt;}
.xe4_c01304{left:665.093333pt;}
.x98_c01304{left:666.626667pt;}
.x88_c01304{left:668.160000pt;}
.x64_c01304{left:672.773333pt;}
.x122_c01304{left:675.840000pt;}
.x109_c01304{left:677.373333pt;}
.x15_c01304{left:678.906667pt;}
.x6d_c01304{left:681.986667pt;}
.x5a_c01304{left:683.520000pt;}
.x2b_c01304{left:685.053333pt;}
.x20_c01304{left:686.586667pt;}
.x78_c01304{left:688.893333pt;}
.x11f_c01304{left:690.426667pt;}
.xec_c01304{left:691.973333pt;}
.x104_c01304{left:694.266667pt;}
.x5b_c01304{left:695.813333pt;}
.x8f_c01304{left:698.106667pt;}
.x40_c01304{left:700.413333pt;}
.x6e_c01304{left:701.946667pt;}
.x4a_c01304{left:705.026667pt;}
.xa2_c01304{left:706.560000pt;}
.x82_c01304{left:711.933333pt;}
.x105_c01304{left:714.240000pt;}
.xab_c01304{left:715.773333pt;}
.x113_c01304{left:718.080000pt;}
.x16_c01304{left:719.613333pt;}
.x21_c01304{left:722.693333pt;}
.x11b_c01304{left:724.226667pt;}
.x53_c01304{left:725.760000pt;}
.xc6_c01304{left:728.066667pt;}
.xb6_c01304{left:729.600000pt;}
.x65_c01304{left:731.133333pt;}
.xcc_c01304{left:732.666667pt;}
.xe7_c01304{left:735.746667pt;}
.x22_c01304{left:738.053333pt;}
.xf9_c01304{left:739.586667pt;}
.xc1_c01304{left:742.653333pt;}
.xed_c01304{left:744.960000pt;}
.xfa_c01304{left:747.266667pt;}
.x10a_c01304{left:749.573333pt;}
.xf4_c01304{left:756.480000pt;}
.xc7_c01304{left:758.786667pt;}
.xdc_c01304{left:760.320000pt;}
.x120_c01304{left:763.386667pt;}
.xfc_c01304{left:764.933333pt;}
.xef_c01304{left:766.466667pt;}
.xb2_c01304{left:768.000000pt;}
.x38_c01304{left:769.533333pt;}
.x6f_c01304{left:772.613333pt;}
.xf5_c01304{left:774.146709pt;}
.xe5_c01304{left:781.826667pt;}
.x41_c01304{left:797.186667pt;}
.x39_c01304{left:801.786667pt;}
.xf0_c01304{left:810.240000pt;}
.x110_c01304{left:825.600000pt;}
.x126_c01304{left:917.760000pt;}
.x124_c01304{left:926.213333pt;}
.x12a_c01304{left:929.280000pt;}
.x129_c01304{left:933.893333pt;}
.x125_c01304{left:939.266667pt;}
.x128_c01304{left:943.106667pt;}
.x127_c01304{left:945.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_99f85b3d9fa8805ad5b6254a.woff2')format("woff");}.ff1_c01305{font-family:ff1_c01305;line-height:1.109863;font-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_c01305{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01305{transform:matrix(0.034300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034300,0.000000,0.000000,0.250000,0,0);}
.m173_c01305{transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045450,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01305{transform:matrix(0.051225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051225,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01305{transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01305{transform:matrix(0.068200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068200,0.000000,0.000000,0.250000,0,0);}
.m192_c01305{transform:matrix(0.070025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070025,0.000000,0.000000,0.250000,0,0);}
.m163_c01305{transform:matrix(0.079050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079050,0.000000,0.000000,0.250000,0,0);}
.m22_c01305{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m191_c01305{transform:matrix(0.084800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084800,0.000000,0.000000,0.250000,0,0);}
.m89_c01305{transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);}
.m150_c01305{transform:matrix(0.088300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088300,0.000000,0.000000,0.250000,0,0);}
.m18c_c01305{transform:matrix(0.089325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089325,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01305{transform:matrix(0.091350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091350,0.000000,0.000000,0.250000,0,0);}
.m185_c01305{transform:matrix(0.094550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094550,0.000000,0.000000,0.250000,0,0);}
.m134_c01305{transform:matrix(0.096250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096250,0.000000,0.000000,0.250000,0,0);}
.m164_c01305{transform:matrix(0.100700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100700,0.000000,0.000000,0.250000,0,0);}
.m151_c01305{transform:matrix(0.102200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102200,0.000000,0.000000,0.250000,0,0);}
.m18b_c01305{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);}
.m190_c01305{transform:matrix(0.103400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103400,0.000000,0.000000,0.250000,0,0);}
.m10a_c01305{transform:matrix(0.105575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105575,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01305{transform:matrix(0.106650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106650,0.000000,0.000000,0.250000,0,0);}
.m1a_c01305{transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);}
.mf7_c01305{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m135_c01305{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01305{transform:matrix(0.110375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110375,0.000000,0.000000,0.250000,0,0);}
.mae_c01305{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01305{transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);}
.m1c_c01305{transform:matrix(0.113900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113900,0.000000,0.000000,0.250000,0,0);}
.m187_c01305{transform:matrix(0.115650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115650,0.000000,0.000000,0.250000,0,0);}
.mc4_c01305{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.ma0_c01305{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);}
.m46_c01305{transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);}
.m21_c01305{transform:matrix(0.120475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120475,0.000000,0.000000,0.250000,0,0);}
.mc5_c01305{transform:matrix(0.120925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120925,0.000000,0.000000,0.250000,0,0);}
.m109_c01305{transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);}
.m158_c01305{transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);}
.m15c_c01305{transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01305{transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122825,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01305{transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);}
.m146_c01305{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m102_c01305{transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);}
.mde_c01305{transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);}
.mc7_c01305{transform:matrix(0.128325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128325,0.000000,0.000000,0.250000,0,0);}
.m58_c01305{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.me3_c01305{transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129500,0.000000,0.000000,0.250000,0,0);}
.m118_c01305{transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129675,0.000000,0.000000,0.250000,0,0);}
.mfd_c01305{transform:matrix(0.130325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130325,0.000000,0.000000,0.250000,0,0);}
.m193_c01305{transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130800,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01305{transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01305{transform:matrix(0.132025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132025,0.000000,0.000000,0.250000,0,0);}
.m43_c01305{transform:matrix(0.132300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132300,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01305{transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);}
.mb3_c01305{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.m10c_c01305{transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);}
.m180_c01305{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);}
.m139_c01305{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);}
.mad_c01305{transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);}
.mcb_c01305{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);}
.m5a_c01305{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m6_c01305{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m4_c01305{transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);}
.mc6_c01305{transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136675,0.000000,0.000000,0.250000,0,0);}
.m106_c01305{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.me6_c01305{transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);}
.m100_c01305{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01305{transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);}
.m197_c01305{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.mb7_c01305{transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138950,0.000000,0.000000,0.250000,0,0);}
.m11b_c01305{transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139575,0.000000,0.000000,0.250000,0,0);}
.m10e_c01305{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01305{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);}
.me2_c01305{transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);}
.m18a_c01305{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m165_c01305{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m14c_c01305{transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);}
.m13f_c01305{transform:matrix(0.140975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140975,0.000000,0.000000,0.250000,0,0);}
.m18d_c01305{transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141175,0.000000,0.000000,0.250000,0,0);}
.m111_c01305{transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);}
.m6e_c01305{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.m80_c01305{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m88_c01305{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.mac_c01305{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);}
.md4_c01305{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);}
.m14a_c01305{transform:matrix(0.143600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143600,0.000000,0.000000,0.250000,0,0);}
.m7_c01305{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc3_c01305{transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);}
.m138_c01305{transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);}
.m14f_c01305{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);}
.m13d_c01305{transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);}
.ma8_c01305{transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);}
.m3d_c01305{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);}
.m114_c01305{transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);}
.m110_c01305{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01305{transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147325,0.000000,0.000000,0.250000,0,0);}
.m103_c01305{transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);}
.mc1_c01305{transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);}
.m132_c01305{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01305{transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);}
.m74_c01305{transform:matrix(0.149125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149125,0.000000,0.000000,0.250000,0,0);}
.mb8_c01305{transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);}
.m161_c01305{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);}
.m1ac_c01305{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);}
.mf2_c01305{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.me4_c01305{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m18_c01305{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m144_c01305{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.md0_c01305{transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);}
.m7e_c01305{transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);}
.me5_c01305{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.mff_c01305{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.m162_c01305{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.m13e_c01305{transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);}
.m85_c01305{transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);}
.m129_c01305{transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154375,0.000000,0.000000,0.250000,0,0);}
.md6_c01305{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);}
.m143_c01305{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.mbb_c01305{transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155700,0.000000,0.000000,0.250000,0,0);}
.mdf_c01305{transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155900,0.000000,0.000000,0.250000,0,0);}
.mf6_c01305{transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);}
.m107_c01305{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.m104_c01305{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.m123_c01305{transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);}
.m166_c01305{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m33_c01305{transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);}
.m48_c01305{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m182_c01305{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01305{transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);}
.m9a_c01305{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);}
.m133_c01305{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);}
.mdd_c01305{transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);}
.m14d_c01305{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.m10d_c01305{transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01305{transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);}
.m142_c01305{transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);}
.m195_c01305{transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);}
.m4d_c01305{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m9b_c01305{transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161100,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01305{transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);}
.mc2_c01305{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);}
.mf1_c01305{transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);}
.m14b_c01305{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.m6d_c01305{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.m199_c01305{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01305{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01305{transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);}
.m19c_c01305{transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163825,0.000000,0.000000,0.250000,0,0);}
.m178_c01305{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.mdb_c01305{transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01305{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m11a_c01305{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m4e_c01305{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.ma4_c01305{transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);}
.m186_c01305{transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166100,0.000000,0.000000,0.250000,0,0);}
.mcd_c01305{transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);}
.mef_c01305{transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);}
.m16a_c01305{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01305{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);}
.m194_c01305{transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);}
.m4c_c01305{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);}
.m154_c01305{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m155_c01305{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m84_c01305{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m99_c01305{transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);}
.m38_c01305{transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);}
.m12_c01305{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m42_c01305{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.me8_c01305{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);}
.m116_c01305{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m17a_c01305{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01305{transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);}
.m167_c01305{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.m16f_c01305{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);}
.mc8_c01305{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m113_c01305{transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);}
.m101_c01305{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m13a_c01305{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01305{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.m15b_c01305{transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);}
.m7f_c01305{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.m76_c01305{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);}
.m170_c01305{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m157_c01305{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);}
.m105_c01305{transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);}
.mda_c01305{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.mec_c01305{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.mf4_c01305{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);}
.mca_c01305{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m5b_c01305{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m19e_c01305{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01305{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.mfe_c01305{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.m19f_c01305{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);}
.mee_c01305{transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);}
.mb4_c01305{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01305{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);}
.md8_c01305{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.ma3_c01305{transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);}
.m5c_c01305{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m126_c01305{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.m153_c01305{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m16d_c01305{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m140_c01305{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.mb6_c01305{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);}
.m1d0_c01305{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);}
.m7d_c01305{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.maa_c01305{transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);}
.m11c_c01305{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);}
.m9d_c01305{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.m1_c01305{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);}
.m15a_c01305{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m198_c01305{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.mb2_c01305{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m141_c01305{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01305{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m174_c01305{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);}
.m183_c01305{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m15_c01305{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m92_c01305{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);}
.m1b2_c01305{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_c01305{transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01305{transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);}
.mb0_c01305{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);}
.m86_c01305{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);}
.me7_c01305{transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188725,0.000000,0.000000,0.250000,0,0);}
.m75_c01305{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);}
.mce_c01305{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);}
.m18f_c01305{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);}
.md1_c01305{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01305{transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);}
.m168_c01305{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);}
.m14e_c01305{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.m189_c01305{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m47_c01305{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m83_c01305{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m60_c01305{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);}
.m16e_c01305{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);}
.m27_c01305{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.m19d_c01305{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);}
.m17d_c01305{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);}
.m66_c01305{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.m96_c01305{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.mf_c01305{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);}
.md3_c01305{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);}
.m17e_c01305{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);}
.m125_c01305{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);}
.m12e_c01305{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);}
.m13c_c01305{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m179_c01305{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);}
.md2_c01305{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m124_c01305{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.md5_c01305{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.m121_c01305{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.m10_c01305{transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);}
.m97_c01305{transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);}
.m81_c01305{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);}
.m177_c01305{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);}
.m19a_c01305{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);}
.m95_c01305{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.m108_c01305{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m196_c01305{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.m137_c01305{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m16c_c01305{transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);}
.m28_c01305{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01305{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.m32_c01305{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m149_c01305{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);}
.me0_c01305{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);}
.m119_c01305{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.m55_c01305{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m8e_c01305{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m52_c01305{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m69_c01305{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);}
.m98_c01305{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);}
.m49_c01305{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);}
.mcf_c01305{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m17c_c01305{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);}
.m70_c01305{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m26_c01305{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);}
.m30_c01305{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m12b_c01305{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m3a_c01305{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01305{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.m115_c01305{transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);}
.mea_c01305{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m50_c01305{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);}
.m10b_c01305{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);}
.m1cc_c01305{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01305{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);}
.m4f_c01305{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m15d_c01305{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.mfc_c01305{transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);}
.mc0_c01305{transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);}
.m171_c01305{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m9c_c01305{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.mbe_c01305{transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);}
.m67_c01305{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m159_c01305{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);}
.m15e_c01305{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);}
.m12a_c01305{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01305{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.m6f_c01305{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);}
.mdc_c01305{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01305{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);}
.m145_c01305{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);}
.m11f_c01305{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01305{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.m16b_c01305{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);}
.m1c7_c01305{transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01305{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);}
.mfa_c01305{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m65_c01305{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m130_c01305{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m10f_c01305{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);}
.m5d_c01305{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);}
.mfb_c01305{transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);}
.m131_c01305{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m19_c01305{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01305{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);}
.m112_c01305{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);}
.ma6_c01305{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);}
.m68_c01305{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m169_c01305{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);}
.m12c_c01305{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);}
.m57_c01305{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m127_c01305{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.mb1_c01305{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);}
.m6a_c01305{transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);}
.ma7_c01305{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);}
.m1a4_c01305{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);}
.m25_c01305{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);}
.m4b_c01305{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);}
.m31_c01305{transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233050,0.000000,0.000000,0.250000,0,0);}
.m8d_c01305{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);}
.m82_c01305{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m39_c01305{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m2d_c01305{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01305{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);}
.mcc_c01305{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m1d_c01305{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);}
.m59_c01305{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);}
.m91_c01305{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);}
.mc9_c01305{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m1e_c01305{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);}
.m152_c01305{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);}
.m1a6_c01305{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);}
.m8a_c01305{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);}
.me9_c01305{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);}
.m78_c01305{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);}
.m19b_c01305{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);}
.mf5_c01305{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);}
.m1d1_c01305{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m175_c01305{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);}
.m29_c01305{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);}
.m2e_c01305{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);}
.mf0_c01305{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m51_c01305{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);}
.ma9_c01305{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_c01305{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);}
.m5f_c01305{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);}
.m4a_c01305{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m34_c01305{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m53_c01305{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb5_c01305{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);}
.m1af_c01305{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mf3_c01305{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);}
.mbd_c01305{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);}
.ma_c01305{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2a_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);}
.m20_c01305{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma1_c01305{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01305{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);}
.md9_c01305{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m87_c01305{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);}
.m36_c01305{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);}
.m56_c01305{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m11d_c01305{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01305{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);}
.m3c_c01305{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m62_c01305{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5_c01305{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);}
.mbc_c01305{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m14_c01305{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01305{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m12f_c01305{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.meb_c01305{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.maf_c01305{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.md_c01305{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01305{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c01305{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);}
.mb9_c01305{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01305{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01305{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m44_c01305{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);}
.m3f_c01305{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m77_c01305{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);}
.m12d_c01305{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01305{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8b_c01305{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01305{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m41_c01305{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);}
.m1c6_c01305{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m79_c01305{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mc_c01305{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m117_c01305{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);}
.med_c01305{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01305{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m73_c01305{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m93_c01305{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);}
.m7b_c01305{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);}
.m16_c01305{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);}
.md7_c01305{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m8_c01305{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m176_c01305{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m40_c01305{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mba_c01305{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m17_c01305{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);}
.m3b_c01305{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m188_c01305{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01305{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m18e_c01305{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m184_c01305{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01305{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m9_c01305{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m45_c01305{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m23_c01305{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m35_c01305{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);}
.m37_c01305{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m54_c01305{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);}
.me1_c01305{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m128_c01305{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01305{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m63_c01305{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m94_c01305{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m160_c01305{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m64_c01305{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01305{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01305{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mab_c01305{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m17b_c01305{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m148_c01305{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);}
.m1cd_c01305{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01305{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01305{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m0_c01305{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m90_c01305{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m11_c01305{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01305{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m61_c01305{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01305{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);}
.m1f_c01305{transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);}
.m17f_c01305{transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.810000,0.000000,0.000000,0.250000,0,0);}
.m11e_c01305{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m24_c01305{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m15f_c01305{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m172_c01305{transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);}
.m136_c01305{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01305{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1be_c01305{transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);}
.m122_c01305{transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);}
.mb_c01305{transform:matrix(1.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.162500,0.000000,0.000000,0.250000,0,0);}
.mf9_c01305{transform:matrix(1.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.367500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01305{transform:matrix(1.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.377500,0.000000,0.000000,0.250000,0,0);}
.m72_c01305{transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);}
.m156_c01305{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m147_c01305{transform:matrix(1.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.665000,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01305{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m13b_c01305{transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.015000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01305{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.m71_c01305{transform:matrix(2.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.185000,0.000000,0.000000,0.250000,0,0);}
.m181_c01305{transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);}
.m120_c01305{transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.707500,0.000000,0.000000,0.250000,0,0);}
.me_c01305{transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01305{transform:matrix(6.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.912500,0.000000,0.000000,0.250000,0,0);}
.v3_c01305{vertical-align:-3.480000px;}
.v0_c01305{vertical-align:0.000000px;}
.v1_c01305{vertical-align:3.420000px;}
.v2_c01305{vertical-align:6.900000px;}
.ls2_c01305{letter-spacing:0.000000px;}
.ls1_c01305{letter-spacing:22.740576px;}
.ls0_c01305{letter-spacing:39.106740px;}
.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;}
}
.ws1_c01305{word-spacing:-38.268120px;}
.ws3_c01305{word-spacing:0.000000px;}
.ws2_c01305{word-spacing:120.261840px;}
.ws0_c01305{word-spacing:188.674080px;}
._0_c01305{width:8.199618px;}
.fc0_c01305{color:transparent;}
.fs12_c01305{font-size:3.456000px;}
.fs8_c01305{font-size:6.000000px;}
.fs13_c01305{font-size:6.900000px;}
.fs6_c01305{font-size:10.380000px;}
.fs16_c01305{font-size:13.800000px;}
.fs9_c01305{font-size:17.280000px;}
.fs7_c01305{font-size:20.760000px;}
.fsa_c01305{font-size:24.180000px;}
.fs19_c01305{font-size:27.660000px;}
.fs0_c01305{font-size:31.080000px;}
.fs3_c01305{font-size:34.560000px;}
.fs5_c01305{font-size:38.040000px;}
.fsd_c01305{font-size:41.460000px;}
.fs2_c01305{font-size:44.940000px;}
.fsb_c01305{font-size:48.360000px;}
.fsc_c01305{font-size:51.840000px;}
.fs11_c01305{font-size:55.320000px;}
.fs1_c01305{font-size:58.740000px;}
.fs17_c01305{font-size:62.220000px;}
.fs14_c01305{font-size:65.640000px;}
.fs15_c01305{font-size:69.120000px;}
.fs4_c01305{font-size:72.600000px;}
.fs1a_c01305{font-size:76.020000px;}
.fsf_c01305{font-size:79.500000px;}
.fs10_c01305{font-size:82.920000px;}
.fs18_c01305{font-size:86.400000px;}
.fse_c01305{font-size:89.880000px;}
.fs1e_c01305{font-size:93.300000px;}
.fs1c_c01305{font-size:96.780000px;}
.fs1d_c01305{font-size:100.200000px;}
.fs23_c01305{font-size:103.680000px;}
.fs22_c01305{font-size:107.160000px;}
.fs1f_c01305{font-size:114.060000px;}
.fs21_c01305{font-size:127.860000px;}
.fs1b_c01305{font-size:138.240000px;}
.fs20_c01305{font-size:145.140000px;}
.fs24_c01305{font-size:165.900000px;}
.fs25_c01305{font-size:193.560000px;}
.y0_c01305{bottom:0.000000px;}
.y1d2_c01305{bottom:156.390000px;}
.y1d3_c01305{bottom:158.970000px;}
.y1d1_c01305{bottom:159.840000px;}
.y1d0_c01305{bottom:160.710000px;}
.y1cf_c01305{bottom:161.565000px;}
.y1cd_c01305{bottom:176.250000px;}
.y1ce_c01305{bottom:179.715000px;}
.y1cb_c01305{bottom:184.035000px;}
.y1c7_c01305{bottom:184.890000px;}
.y1ca_c01305{bottom:185.760000px;}
.y1c6_c01305{bottom:186.630000px;}
.y1c4_c01305{bottom:187.485000px;}
.y1c8_c01305{bottom:191.805000px;}
.y1c5_c01305{bottom:192.675000px;}
.y1c9_c01305{bottom:193.530000px;}
.y1cc_c01305{bottom:201.315000px;}
.y1c2_c01305{bottom:203.040000px;}
.y1c1_c01305{bottom:204.765000px;}
.y1c3_c01305{bottom:206.490000px;}
.y1bd_c01305{bottom:208.230000px;}
.y1bf_c01305{bottom:209.085000px;}
.y1c0_c01305{bottom:209.955000px;}
.y1bc_c01305{bottom:212.550000px;}
.y1be_c01305{bottom:214.275000px;}
.y1ba_c01305{bottom:217.725000px;}
.y1b4_c01305{bottom:222.045000px;}
.y1bb_c01305{bottom:222.915000px;}
.y1b6_c01305{bottom:225.510000px;}
.y1b5_c01305{bottom:228.960000px;}
.y1b7_c01305{bottom:229.830000px;}
.y1b8_c01305{bottom:230.685000px;}
.y1b9_c01305{bottom:231.555000px;}
.y1b3_c01305{bottom:234.150000px;}
.y1b2_c01305{bottom:243.645000px;}
.y1b1_c01305{bottom:245.370000px;}
.y1b0_c01305{bottom:247.965000px;}
.y1af_c01305{bottom:249.690000px;}
.y1ad_c01305{bottom:262.650000px;}
.y1ae_c01305{bottom:265.245000px;}
.y1ac_c01305{bottom:266.115000px;}
.y1ab_c01305{bottom:267.840000px;}
.y1a8_c01305{bottom:270.435000px;}
.y1a7_c01305{bottom:271.290000px;}
.y1a9_c01305{bottom:272.160000px;}
.y1aa_c01305{bottom:273.885000px;}
.y1a6_c01305{bottom:274.755000px;}
.y1a5_c01305{bottom:285.990000px;}
.y1a4_c01305{bottom:287.715000px;}
.y1a2_c01305{bottom:288.570000px;}
.y19f_c01305{bottom:290.310000px;}
.y1a0_c01305{bottom:291.165000px;}
.y1a3_c01305{bottom:292.035000px;}
.y1a1_c01305{bottom:292.890000px;}
.y19e_c01305{bottom:294.630000px;}
.y19c_c01305{bottom:304.995000px;}
.y19b_c01305{bottom:307.590000px;}
.y195_c01305{bottom:308.445000px;}
.y199_c01305{bottom:310.170000px;}
.y198_c01305{bottom:311.040000px;}
.y197_c01305{bottom:311.910000px;}
.y19a_c01305{bottom:314.490000px;}
.y196_c01305{bottom:315.360000px;}
.y19d_c01305{bottom:319.680000px;}
.y194_c01305{bottom:324.000000px;}
.y193_c01305{bottom:326.595000px;}
.y192_c01305{bottom:331.770000px;}
.y18b_c01305{bottom:333.510000px;}
.y18a_c01305{bottom:334.365000px;}
.y191_c01305{bottom:336.960000px;}
.y190_c01305{bottom:337.830000px;}
.y18f_c01305{bottom:340.410000px;}
.y18d_c01305{bottom:341.280000px;}
.y189_c01305{bottom:343.005000px;}
.y18e_c01305{bottom:344.730000px;}
.y18c_c01305{bottom:347.325000px;}
.y188_c01305{bottom:352.515000px;}
.y186_c01305{bottom:365.475000px;}
.y184_c01305{bottom:367.200000px;}
.y183_c01305{bottom:368.925000px;}
.y185_c01305{bottom:369.795000px;}
.y187_c01305{bottom:370.650000px;}
.y182_c01305{bottom:371.520000px;}
.y17d_c01305{bottom:386.205000px;}
.y17e_c01305{bottom:387.075000px;}
.y17c_c01305{bottom:388.800000px;}
.y180_c01305{bottom:389.670000px;}
.y179_c01305{bottom:392.250000px;}
.y17b_c01305{bottom:393.120000px;}
.y178_c01305{bottom:395.715000px;}
.y17f_c01305{bottom:396.570000px;}
.y17a_c01305{bottom:397.440000px;}
.y181_c01305{bottom:400.035000px;}
.y177_c01305{bottom:407.805000px;}
.y176_c01305{bottom:408.675000px;}
.y175_c01305{bottom:411.270000px;}
.y174_c01305{bottom:412.125000px;}
.y171_c01305{bottom:412.995000px;}
.y172_c01305{bottom:415.590000px;}
.y173_c01305{bottom:416.445000px;}
.y170_c01305{bottom:426.810000px;}
.y16e_c01305{bottom:427.680000px;}
.y16a_c01305{bottom:429.405000px;}
.y16f_c01305{bottom:430.275000px;}
.y16d_c01305{bottom:431.130000px;}
.y169_c01305{bottom:432.000000px;}
.y16b_c01305{bottom:432.870000px;}
.y167_c01305{bottom:436.320000px;}
.y168_c01305{bottom:437.190000px;}
.y16c_c01305{bottom:438.915000px;}
.y165_c01305{bottom:445.830000px;}
.y163_c01305{bottom:450.150000px;}
.y166_c01305{bottom:451.005000px;}
.y15f_c01305{bottom:451.875000px;}
.y161_c01305{bottom:452.730000px;}
.y162_c01305{bottom:453.600000px;}
.y160_c01305{bottom:454.470000px;}
.y15d_c01305{bottom:462.240000px;}
.y164_c01305{bottom:464.835000px;}
.y15c_c01305{bottom:465.690000px;}
.y15a_c01305{bottom:466.560000px;}
.y159_c01305{bottom:467.430000px;}
.y158_c01305{bottom:469.155000px;}
.y15b_c01305{bottom:472.605000px;}
.y15e_c01305{bottom:484.710000px;}
.y157_c01305{bottom:489.030000px;}
.y156_c01305{bottom:489.885000px;}
.y155_c01305{bottom:490.755000px;}
.y154_c01305{bottom:491.610000px;}
.y152_c01305{bottom:492.480000px;}
.y151_c01305{bottom:493.350000px;}
.y153_c01305{bottom:495.930000px;}
.y14e_c01305{bottom:504.570000px;}
.y150_c01305{bottom:505.440000px;}
.y14c_c01305{bottom:506.310000px;}
.y148_c01305{bottom:508.035000px;}
.y146_c01305{bottom:508.890000px;}
.y14f_c01305{bottom:510.630000px;}
.y14b_c01305{bottom:511.485000px;}
.y14d_c01305{bottom:513.210000px;}
.y149_c01305{bottom:514.080000px;}
.y14a_c01305{bottom:514.950000px;}
.y147_c01305{bottom:518.400000px;}
.y143_c01305{bottom:523.590000px;}
.y145_c01305{bottom:525.315000px;}
.y142_c01305{bottom:526.170000px;}
.y144_c01305{bottom:527.040000px;}
.y13e_c01305{bottom:528.765000px;}
.y13f_c01305{bottom:530.490000px;}
.y141_c01305{bottom:532.230000px;}
.y140_c01305{bottom:533.085000px;}
.y13d_c01305{bottom:533.955000px;}
.y139_c01305{bottom:546.915000px;}
.y135_c01305{bottom:547.770000px;}
.y136_c01305{bottom:548.640000px;}
.y133_c01305{bottom:550.365000px;}
.y132_c01305{bottom:552.090000px;}
.y131_c01305{bottom:552.960000px;}
.y134_c01305{bottom:553.830000px;}
.y138_c01305{bottom:555.555000px;}
.y13a_c01305{bottom:556.410000px;}
.y13c_c01305{bottom:559.875000px;}
.y13b_c01305{bottom:562.470000px;}
.y137_c01305{bottom:565.050000px;}
.y130_c01305{bottom:565.920000px;}
.y12f_c01305{bottom:567.645000px;}
.y12d_c01305{bottom:569.370000px;}
.y12c_c01305{bottom:570.240000px;}
.y12b_c01305{bottom:571.110000px;}
.y12e_c01305{bottom:573.690000px;}
.y127_c01305{bottom:588.390000px;}
.y126_c01305{bottom:590.970000px;}
.y124_c01305{bottom:592.710000px;}
.y125_c01305{bottom:593.565000px;}
.y129_c01305{bottom:597.030000px;}
.y123_c01305{bottom:597.885000px;}
.y12a_c01305{bottom:600.480000px;}
.y128_c01305{bottom:606.525000px;}
.y121_c01305{bottom:607.395000px;}
.y120_c01305{bottom:609.120000px;}
.y11f_c01305{bottom:609.990000px;}
.y11e_c01305{bottom:611.715000px;}
.y11c_c01305{bottom:612.570000px;}
.y122_c01305{bottom:614.310000px;}
.y11b_c01305{bottom:615.165000px;}
.y11d_c01305{bottom:618.630000px;}
.y11a_c01305{bottom:627.270000px;}
.y119_c01305{bottom:628.125000px;}
.y118_c01305{bottom:628.995000px;}
.y117_c01305{bottom:631.590000px;}
.y116_c01305{bottom:632.445000px;}
.y110_c01305{bottom:634.170000px;}
.y113_c01305{bottom:635.040000px;}
.y114_c01305{bottom:635.910000px;}
.y112_c01305{bottom:637.635000px;}
.y10f_c01305{bottom:640.230000px;}
.y115_c01305{bottom:641.085000px;}
.y111_c01305{bottom:645.405000px;}
.y10e_c01305{bottom:648.870000px;}
.y10c_c01305{bottom:653.190000px;}
.y10d_c01305{bottom:656.640000px;}
.y10b_c01305{bottom:667.005000px;}
.y109_c01305{bottom:668.730000px;}
.y107_c01305{bottom:669.600000px;}
.y106_c01305{bottom:670.470000px;}
.y105_c01305{bottom:671.325000px;}
.y103_c01305{bottom:672.195000px;}
.y108_c01305{bottom:673.050000px;}
.y102_c01305{bottom:673.920000px;}
.y104_c01305{bottom:674.790000px;}
.y10a_c01305{bottom:676.515000px;}
.yfb_c01305{bottom:687.750000px;}
.yff_c01305{bottom:688.605000px;}
.yfe_c01305{bottom:689.475000px;}
.yfd_c01305{bottom:692.070000px;}
.yfa_c01305{bottom:692.925000px;}
.y100_c01305{bottom:693.795000px;}
.yfc_c01305{bottom:695.520000px;}
.yf8_c01305{bottom:698.115000px;}
.yf9_c01305{bottom:698.970000px;}
.y101_c01305{bottom:700.710000px;}
.yf7_c01305{bottom:709.350000px;}
.yf5_c01305{bottom:710.205000px;}
.yf4_c01305{bottom:711.075000px;}
.yf3_c01305{bottom:711.930000px;}
.yf2_c01305{bottom:712.800000px;}
.yf0_c01305{bottom:713.670000px;}
.yf6_c01305{bottom:714.525000px;}
.yf1_c01305{bottom:717.120000px;}
.y8_c01305{bottom:717.990000px;}
.yee_c01305{bottom:727.485000px;}
.yed_c01305{bottom:730.080000px;}
.yeb_c01305{bottom:731.805000px;}
.yef_c01305{bottom:732.675000px;}
.yea_c01305{bottom:733.530000px;}
.ye9_c01305{bottom:734.400000px;}
.ye8_c01305{bottom:735.270000px;}
.yec_c01305{bottom:736.125000px;}
.ye6_c01305{bottom:750.810000px;}
.ye5_c01305{bottom:751.680000px;}
.ye2_c01305{bottom:752.550000px;}
.ye7_c01305{bottom:753.405000px;}
.ydd_c01305{bottom:754.275000px;}
.ye0_c01305{bottom:756.000000px;}
.yde_c01305{bottom:756.870000px;}
.ydf_c01305{bottom:757.725000px;}
.ye1_c01305{bottom:758.595000px;}
.ye4_c01305{bottom:762.045000px;}
.ye3_c01305{bottom:762.915000px;}
.y7_c01305{bottom:768.960000px;}
.ydb_c01305{bottom:770.685000px;}
.ydc_c01305{bottom:773.280000px;}
.yda_c01305{bottom:774.150000px;}
.yd5_c01305{bottom:775.005000px;}
.yd7_c01305{bottom:775.875000px;}
.yd6_c01305{bottom:776.730000px;}
.yd8_c01305{bottom:777.600000px;}
.yd9_c01305{bottom:779.325000px;}
.yd4_c01305{bottom:789.690000px;}
.yd3_c01305{bottom:790.560000px;}
.yd2_c01305{bottom:791.430000px;}
.yd0_c01305{bottom:794.010000px;}
.yce_c01305{bottom:794.880000px;}
.ycd_c01305{bottom:795.750000px;}
.yd1_c01305{bottom:799.200000px;}
.ycf_c01305{bottom:800.070000px;}
.ycc_c01305{bottom:806.115000px;}
.ycb_c01305{bottom:808.710000px;}
.y6_c01305{bottom:809.565000px;}
.yc9_c01305{bottom:810.435000px;}
.yc8_c01305{bottom:811.290000px;}
.yca_c01305{bottom:812.160000px;}
.yc7_c01305{bottom:816.480000px;}
.y5_c01305{bottom:817.350000px;}
.yc6_c01305{bottom:820.800000px;}
.yc4_c01305{bottom:828.570000px;}
.yc5_c01305{bottom:830.310000px;}
.yc3_c01305{bottom:832.035000px;}
.yc2_c01305{bottom:832.890000px;}
.yc1_c01305{bottom:838.950000px;}
.yc0_c01305{bottom:839.805000px;}
.ybf_c01305{bottom:851.040000px;}
.ybc_c01305{bottom:851.910000px;}
.ybd_c01305{bottom:852.765000px;}
.ybe_c01305{bottom:853.635000px;}
.ybb_c01305{bottom:854.490000px;}
.yba_c01305{bottom:855.360000px;}
.yb9_c01305{bottom:859.680000px;}
.y4_c01305{bottom:870.045000px;}
.yb8_c01305{bottom:870.915000px;}
.yb6_c01305{bottom:872.640000px;}
.yb4_c01305{bottom:875.235000px;}
.yb3_c01305{bottom:876.090000px;}
.yb7_c01305{bottom:876.960000px;}
.yb5_c01305{bottom:877.830000px;}
.y3_c01305{bottom:879.555000px;}
.y2_c01305{bottom:889.920000px;}
.yb2_c01305{bottom:891.645000px;}
.yb1_c01305{bottom:892.515000px;}
.yaf_c01305{bottom:894.240000px;}
.yad_c01305{bottom:896.835000px;}
.yb0_c01305{bottom:897.690000px;}
.yae_c01305{bottom:900.285000px;}
.yac_c01305{bottom:901.155000px;}
.yab_c01305{bottom:911.520000px;}
.yaa_c01305{bottom:914.970000px;}
.ya9_c01305{bottom:917.565000px;}
.ya8_c01305{bottom:920.160000px;}
.ya6_c01305{bottom:931.395000px;}
.ya3_c01305{bottom:934.845000px;}
.ya5_c01305{bottom:936.570000px;}
.ya7_c01305{bottom:939.165000px;}
.ya2_c01305{bottom:941.760000px;}
.ya1_c01305{bottom:942.630000px;}
.ya4_c01305{bottom:943.485000px;}
.y9f_c01305{bottom:948.675000px;}
.y9d_c01305{bottom:952.125000px;}
.y9b_c01305{bottom:953.850000px;}
.y9a_c01305{bottom:956.445000px;}
.ya0_c01305{bottom:959.040000px;}
.y9e_c01305{bottom:960.765000px;}
.y9c_c01305{bottom:963.360000px;}
.y99_c01305{bottom:972.000000px;}
.y97_c01305{bottom:975.450000px;}
.y98_c01305{bottom:976.320000px;}
.y95_c01305{bottom:978.045000px;}
.y96_c01305{bottom:979.770000px;}
.y94_c01305{bottom:980.640000px;}
.y93_c01305{bottom:984.090000px;}
.y92_c01305{bottom:991.875000px;}
.y8f_c01305{bottom:994.470000px;}
.y89_c01305{bottom:996.195000px;}
.y8a_c01305{bottom:998.790000px;}
.y90_c01305{bottom:999.645000px;}
.y8c_c01305{bottom:1000.515000px;}
.y1de_c01305{bottom:1001.370000px;}
.y91_c01305{bottom:1005.690000px;}
.y1dd_c01305{bottom:1007.430000px;}
.y8d_c01305{bottom:1008.285000px;}
.y8b_c01305{bottom:1010.880000px;}
.y8e_c01305{bottom:1012.605000px;}
.y86_c01305{bottom:1013.475000px;}
.y84_c01305{bottom:1014.330000px;}
.y87_c01305{bottom:1015.200000px;}
.y83_c01305{bottom:1016.070000px;}
.y85_c01305{bottom:1017.795000px;}
.y88_c01305{bottom:1019.520000px;}
.y1dc_c01305{bottom:1028.160000px;}
.y7f_c01305{bottom:1032.480000px;}
.y7e_c01305{bottom:1033.350000px;}
.y7b_c01305{bottom:1034.205000px;}
.y79_c01305{bottom:1035.075000px;}
.y81_c01305{bottom:1035.930000px;}
.y76_c01305{bottom:1037.670000px;}
.y7a_c01305{bottom:1038.525000px;}
.y7c_c01305{bottom:1039.395000px;}
.y78_c01305{bottom:1040.250000px;}
.y77_c01305{bottom:1041.120000px;}
.y75_c01305{bottom:1041.990000px;}
.y7d_c01305{bottom:1044.570000px;}
.y82_c01305{bottom:1045.440000px;}
.y80_c01305{bottom:1048.035000px;}
.y72_c01305{bottom:1054.080000px;}
.y73_c01305{bottom:1054.950000px;}
.y70_c01305{bottom:1055.805000px;}
.y6f_c01305{bottom:1056.675000px;}
.y71_c01305{bottom:1058.400000px;}
.y74_c01305{bottom:1060.125000px;}
.y6a_c01305{bottom:1060.995000px;}
.y6e_c01305{bottom:1073.085000px;}
.y6d_c01305{bottom:1075.680000px;}
.y69_c01305{bottom:1080.870000px;}
.y6c_c01305{bottom:1081.725000px;}
.y6b_c01305{bottom:1082.595000px;}
.y1db_c01305{bottom:1087.770000px;}
.y67_c01305{bottom:1091.235000px;}
.y65_c01305{bottom:1093.830000px;}
.y64_c01305{bottom:1095.555000px;}
.y68_c01305{bottom:1097.280000px;}
.y66_c01305{bottom:1098.150000px;}
.y62_c01305{bottom:1101.600000px;}
.y1da_c01305{bottom:1103.325000px;}
.y60_c01305{bottom:1104.195000px;}
.y61_c01305{bottom:1105.050000px;}
.y63_c01305{bottom:1105.920000px;}
.y5f_c01305{bottom:1113.690000px;}
.y5b_c01305{bottom:1114.560000px;}
.y5c_c01305{bottom:1115.430000px;}
.y5e_c01305{bottom:1116.285000px;}
.y5a_c01305{bottom:1117.155000px;}
.y5d_c01305{bottom:1122.330000px;}
.y57_c01305{bottom:1133.565000px;}
.y1d9_c01305{bottom:1134.435000px;}
.y58_c01305{bottom:1135.290000px;}
.y59_c01305{bottom:1136.160000px;}
.y56_c01305{bottom:1137.885000px;}
.y54_c01305{bottom:1138.755000px;}
.y52_c01305{bottom:1140.480000px;}
.y1d8_c01305{bottom:1142.205000px;}
.y53_c01305{bottom:1143.075000px;}
.y55_c01305{bottom:1146.525000px;}
.y50_c01305{bottom:1156.035000px;}
.y4d_c01305{bottom:1158.630000px;}
.y4f_c01305{bottom:1159.485000px;}
.y4e_c01305{bottom:1161.210000px;}
.y51_c01305{bottom:1162.950000px;}
.y4c_c01305{bottom:1171.590000px;}
.y4b_c01305{bottom:1175.040000px;}
.y4a_c01305{bottom:1176.765000px;}
.y49_c01305{bottom:1180.230000px;}
.y47_c01305{bottom:1181.085000px;}
.y48_c01305{bottom:1194.045000px;}
.y42_c01305{bottom:1195.770000px;}
.y41_c01305{bottom:1197.510000px;}
.y43_c01305{bottom:1198.365000px;}
.y46_c01305{bottom:1199.235000px;}
.y45_c01305{bottom:1200.960000px;}
.y40_c01305{bottom:1201.830000px;}
.y44_c01305{bottom:1202.685000px;}
.y1d7_c01305{bottom:1203.555000px;}
.y3b_c01305{bottom:1216.515000px;}
.y3f_c01305{bottom:1217.370000px;}
.y3a_c01305{bottom:1218.240000px;}
.y3d_c01305{bottom:1219.965000px;}
.y39_c01305{bottom:1220.835000px;}
.y3e_c01305{bottom:1221.690000px;}
.y3c_c01305{bottom:1223.430000px;}
.y1d6_c01305{bottom:1224.285000px;}
.y30_c01305{bottom:1235.520000px;}
.y32_c01305{bottom:1236.390000px;}
.y31_c01305{bottom:1237.245000px;}
.y2f_c01305{bottom:1238.970000px;}
.y35_c01305{bottom:1239.840000px;}
.y36_c01305{bottom:1241.565000px;}
.y34_c01305{bottom:1242.435000px;}
.y33_c01305{bottom:1243.290000px;}
.y37_c01305{bottom:1245.030000px;}
.y1d5_c01305{bottom:1248.480000px;}
.y1d4_c01305{bottom:1253.670000px;}
.y38_c01305{bottom:1255.395000px;}
.y29_c01305{bottom:1257.120000px;}
.y28_c01305{bottom:1257.990000px;}
.y26_c01305{bottom:1258.845000px;}
.y27_c01305{bottom:1262.310000px;}
.y2d_c01305{bottom:1264.035000px;}
.y2e_c01305{bottom:1264.890000px;}
.y2a_c01305{bottom:1265.760000px;}
.y2b_c01305{bottom:1266.630000px;}
.y2c_c01305{bottom:1270.950000px;}
.y21_c01305{bottom:1281.315000px;}
.y22_c01305{bottom:1283.040000px;}
.y23_c01305{bottom:1283.910000px;}
.y25_c01305{bottom:1289.085000px;}
.y24_c01305{bottom:1290.810000px;}
.y1a_c01305{bottom:1295.130000px;}
.y15_c01305{bottom:1296.870000px;}
.y18_c01305{bottom:1297.725000px;}
.y1c_c01305{bottom:1298.595000px;}
.y17_c01305{bottom:1300.320000px;}
.y20_c01305{bottom:1301.190000px;}
.y1f_c01305{bottom:1302.045000px;}
.y16_c01305{bottom:1302.915000px;}
.y19_c01305{bottom:1303.770000px;}
.y1d_c01305{bottom:1304.640000px;}
.y1e_c01305{bottom:1308.090000px;}
.y1b_c01305{bottom:1310.685000px;}
.y14_c01305{bottom:1314.150000px;}
.y11_c01305{bottom:1318.470000px;}
.y10_c01305{bottom:1319.325000px;}
.y13_c01305{bottom:1321.920000px;}
.y12_c01305{bottom:1323.645000px;}
.ye_c01305{bottom:1324.515000px;}
.yf_c01305{bottom:1328.835000px;}
.yc_c01305{bottom:1329.690000px;}
.ya_c01305{bottom:1330.560000px;}
.y9_c01305{bottom:1332.285000px;}
.yd_c01305{bottom:1333.155000px;}
.yb_c01305{bottom:1337.475000px;}
.y1_c01305{bottom:1436.835000px;}
.h15_c01305{height:3.110063px;}
.ha_c01305{height:5.399414px;}
.h16_c01305{height:6.209326px;}
.he_c01305{height:9.340986px;}
.h1a_c01305{height:12.418652px;}
.h8_c01305{height:12.760986px;}
.hb_c01305{height:15.550313px;}
.h9_c01305{height:18.681973px;}
.hc_c01305{height:21.759639px;}
.h1d_c01305{height:24.891299px;}
.h2_c01305{height:27.968965px;}
.h5_c01305{height:31.100625px;}
.h7_c01305{height:34.232285px;}
.h10_c01305{height:37.309951px;}
.h4_c01305{height:40.441611px;}
.hd_c01305{height:43.519277px;}
.hf_c01305{height:46.650937px;}
.h14_c01305{height:49.782598px;}
.h3_c01305{height:52.860264px;}
.h1b_c01305{height:55.991924px;}
.h17_c01305{height:59.069590px;}
.h19_c01305{height:62.201250px;}
.h6_c01305{height:65.332910px;}
.h18_c01305{height:65.969590px;}
.h1e_c01305{height:68.410576px;}
.h12_c01305{height:71.542236px;}
.h13_c01305{height:74.619902px;}
.h1c_c01305{height:77.751563px;}
.h11_c01305{height:80.883223px;}
.h22_c01305{height:83.960889px;}
.h20_c01305{height:87.092549px;}
.h21_c01305{height:90.170215px;}
.h27_c01305{height:93.301875px;}
.h26_c01305{height:96.433535px;}
.h23_c01305{height:102.642861px;}
.h25_c01305{height:115.061514px;}
.h1f_c01305{height:124.402500px;}
.h24_c01305{height:130.611826px;}
.h28_c01305{height:149.293799px;}
.h29_c01305{height:174.185098px;}
.h0_c01305{height:1509.405000px;}
.h1_c01305{height:1509.750000px;}
.w0_c01305{width:1088.640000px;}
.w1_c01305{width:1089.000000px;}
.x0_c01305{left:0.000000px;}
.x112_c01305{left:10.365000px;}
.x111_c01305{left:12.090000px;}
.x1_c01305{left:51.840000px;}
.x2_c01305{left:145.155000px;}
.x97_c01305{left:178.845000px;}
.xa8_c01305{left:183.165000px;}
.x74_c01305{left:188.355000px;}
.x10b_c01305{left:190.080000px;}
.xc2_c01305{left:209.955000px;}
.x108_c01305{left:211.680000px;}
.x102_c01305{left:213.405000px;}
.xde_c01305{left:215.987952px;}
.x4a_c01305{left:218.595000px;}
.x3d_c01305{left:220.320000px;}
.xda_c01305{left:224.640000px;}
.xa6_c01305{left:226.365000px;}
.x3e_c01305{left:228.090000px;}
.x26_c01305{left:230.685000px;}
.xd_c01305{left:232.410000px;}
.x5b_c01305{left:234.150000px;}
.x75_c01305{left:236.730000px;}
.xf9_c01305{left:243.645000px;}
.xdf_c01305{left:246.240000px;}
.x98_c01305{left:249.690000px;}
.x99_c01305{left:254.880000px;}
.x4b_c01305{left:256.605000px;}
.x105_c01305{left:259.200000px;}
.x50_c01305{left:261.795000px;}
.x81_c01305{left:263.520000px;}
.x9a_c01305{left:266.970000px;}
.x6e_c01305{left:269.565000px;}
.x7c_c01305{left:272.160000px;}
.x62_c01305{left:275.610000px;}
.xe9_c01305{left:277.350000px;}
.x27_c01305{left:279.075000px;}
.x3_c01305{left:280.800000px;}
.xa0_c01305{left:283.395000px;}
.xca_c01305{left:285.120000px;}
.x32_c01305{left:292.035000px;}
.xe_c01305{left:295.485000px;}
.x51_c01305{left:298.950000px;}
.xbd_c01305{left:300.675000px;}
.x16_c01305{left:304.125000px;}
.x4_c01305{left:305.850000px;}
.xfa_c01305{left:311.040000px;}
.x4c_c01305{left:312.765000px;}
.x76_c01305{left:314.490000px;}
.x28_c01305{left:317.085000px;}
.x106_c01305{left:320.550000px;}
.x82_c01305{left:322.275000px;}
.xff_c01305{left:324.870000px;}
.xb9_c01305{left:326.595000px;}
.x77_c01305{left:330.915000px;}
.x10c_c01305{left:333.510000px;}
.xa9_c01305{left:336.090000px;}
.x33_c01305{left:338.685000px;}
.x78_c01305{left:340.410000px;}
.xd4_c01305{left:343.875000px;}
.xab_c01305{left:348.195000px;}
.xcc_c01305{left:349.920000px;}
.xf7_c01305{left:351.645990px;}
.x17_c01305{left:356.835000px;}
.x9b_c01305{left:358.560000px;}
.x4d_c01305{left:362.010000px;}
.x5_c01305{left:363.750000px;}
.xb4_c01305{left:365.475000px;}
.xf_c01305{left:367.200000px;}
.x6_c01305{left:369.795000px;}
.x79_c01305{left:372.390000px;}
.xbe_c01305{left:374.115000px;}
.x63_c01305{left:376.710000px;}
.x107_c01305{left:382.755000px;}
.x10_c01305{left:384.480000px;}
.x52_c01305{left:387.075000px;}
.x3f_c01305{left:389.670000px;}
.x18_c01305{left:391.395000px;}
.xbf_c01305{left:393.990000px;}
.x34_c01305{left:396.570000px;}
.x4e_c01305{left:398.310000px;}
.x29_c01305{left:400.890000px;}
.x7_c01305{left:402.630000px;}
.xae_c01305{left:404.355000px;}
.xce_c01305{left:406.950000px;}
.x6f_c01305{left:408.675000px;}
.x64_c01305{left:411.270000px;}
.x7a_c01305{left:412.995000px;}
.x103_c01305{left:417.315000px;}
.x9c_c01305{left:420.765000px;}
.x70_c01305{left:425.085000px;}
.x35_c01305{left:426.810000px;}
.x40_c01305{left:429.405000px;}
.xac_c01305{left:432.000000px;}
.x11_c01305{left:436.320000px;}
.x101_c01305{left:438.045000px;}
.xaa_c01305{left:439.770000px;}
.x7b_c01305{left:441.510000px;}
.xba_c01305{left:444.090000px;}
.x53_c01305{left:447.555000px;}
.x8_c01305{left:449.280000px;}
.x7d_c01305{left:451.875000px;}
.x65_c01305{left:456.195000px;}
.xe6_c01305{left:458.790000px;}
.xaf_c01305{left:461.370000px;}
.x12_c01305{left:465.690000px;}
.x109_c01305{left:467.430000px;}
.x83_c01305{left:469.155000px;}
.x9d_c01305{left:470.880000px;}
.x54_c01305{left:473.475000px;}
.x2a_c01305{left:477.795000px;}
.x19_c01305{left:480.390000px;}
.x36_c01305{left:482.970000px;}
.x13_c01305{left:485.565000px;}
.x41_c01305{left:487.290000px;}
.xef_c01305{left:489.030000px;}
.xf0_c01305{left:494.205000px;}
.x55_c01305{left:495.930000px;}
.x9_c01305{left:498.525000px;}
.x71_c01305{left:501.990000px;}
.x69_c01305{left:508.035000px;}
.xc0_c01305{left:511.485000px;}
.x66_c01305{left:514.080000px;}
.x6a_c01305{left:519.270000px;}
.x14_c01305{left:521.850000px;}
.x42_c01305{left:523.590000px;}
.xa_c01305{left:527.040000px;}
.x6b_c01305{left:530.490000px;}
.xa1_c01305{left:532.230000px;}
.xc3_c01305{left:533.955000px;}
.xdb_c01305{left:537.405000px;}
.xa2_c01305{left:540.000000px;}
.x37_c01305{left:541.725000px;}
.xb_c01305{left:543.450000px;}
.x5c_c01305{left:546.045000px;}
.xf1_c01305{left:547.770000px;}
.xe7_c01305{left:550.365000px;}
.x5e_c01305{left:553.830000px;}
.xd7_c01305{left:556.410000px;}
.x93_c01305{left:559.005000px;}
.x9e_c01305{left:561.600000px;}
.x56_c01305{left:563.325000px;}
.x15_c01305{left:565.050000px;}
.x43_c01305{left:566.790000px;}
.xcf_c01305{left:568.515000px;}
.x1a_c01305{left:571.110000px;}
.x94_c01305{left:572.835000px;}
.xcb_c01305{left:577.155000px;}
.xb5_c01305{left:578.880000px;}
.x100_c01305{left:581.475000px;}
.x8e_c01305{left:583.200000px;}
.x84_c01305{left:584.925000px;}
.xe8_c01305{left:587.520000px;}
.x5f_c01305{left:590.970000px;}
.xf2_c01305{left:595.290000px;}
.x57_c01305{left:598.755000px;}
.x10f_c01305{left:603.930000px;}
.xad_c01305{left:607.395000px;}
.x44_c01305{left:609.990000px;}
.x9f_c01305{left:612.570000px;}
.xe0_c01305{left:616.035000px;}
.xc5_c01305{left:617.760000px;}
.xea_c01305{left:619.485000px;}
.xfb_c01305{left:622.080000px;}
.x8f_c01305{left:624.675000px;}
.xf6_c01305{left:626.400000px;}
.x2b_c01305{left:629.850000px;}
.xc_c01305{left:631.590000px;}
.xf8_c01305{left:634.170000px;}
.x1b_c01305{left:635.910000px;}
.xf4_c01305{left:638.490000px;}
.xc6_c01305{left:640.230000px;}
.x1c_c01305{left:641.954400px;}
.xd5_c01305{left:643.680000px;}
.xeb_c01305{left:647.130000px;}
.xd0_c01305{left:650.595000px;}
.xc7_c01305{left:653.190000px;}
.x58_c01305{left:660.090000px;}
.x1d_c01305{left:662.685000px;}
.x45_c01305{left:665.280000px;}
.x72_c01305{left:669.600000px;}
.xb3_c01305{left:672.195000px;}
.x1e_c01305{left:673.920000px;}
.x67_c01305{left:677.370000px;}
.x46_c01305{left:679.965000px;}
.xc8_c01305{left:682.560000px;}
.x90_c01305{left:686.010000px;}
.xc9_c01305{left:688.605000px;}
.x1f_c01305{left:697.245000px;}
.x59_c01305{left:699.840000px;}
.xf3_c01305{left:701.565000px;}
.x60_c01305{left:703.290000px;}
.xb0_c01305{left:705.030000px;}
.xee_c01305{left:709.350000px;}
.x85_c01305{left:711.930000px;}
.x20_c01305{left:713.670000px;}
.x86_c01305{left:717.120000px;}
.xd6_c01305{left:718.845000px;}
.x4f_c01305{left:720.570000px;}
.x2c_c01305{left:723.165000px;}
.x21_c01305{left:725.760000px;}
.xec_c01305{left:729.210000px;}
.xa3_c01305{left:730.950000px;}
.x22_c01305{left:732.675000px;}
.xb6_c01305{left:735.270000px;}
.x38_c01305{left:736.995000px;}
.x5d_c01305{left:738.720000px;}
.x23_c01305{left:741.315000px;}
.x110_c01305{left:743.040000px;}
.x104_c01305{left:746.490000px;}
.x91_c01305{left:749.085000px;}
.xf5_c01305{left:750.810000px;}
.x39_c01305{left:752.550000px;}
.x47_c01305{left:756.000000px;}
.xbb_c01305{left:759.450000px;}
.xe1_c01305{left:762.915000px;}
.x87_c01305{left:764.640000px;}
.xa4_c01305{left:768.090000px;}
.x10d_c01305{left:769.830000px;}
.x88_c01305{left:771.555000px;}
.xd8_c01305{left:773.280000px;}
.x2d_c01305{left:775.005000px;}
.xb7_c01305{left:776.730000px;}
.x61_c01305{left:778.470000px;}
.x68_c01305{left:780.195000px;}
.x24_c01305{left:781.920000px;}
.x7e_c01305{left:783.645000px;}
.xed_c01305{left:785.370000px;}
.xe4_c01305{left:787.110000px;}
.x25_c01305{left:790.560000px;}
.x89_c01305{left:792.285000px;}
.x6c_c01305{left:794.010000px;}
.x2e_c01305{left:796.605000px;}
.xb1_c01305{left:798.330000px;}
.x73_c01305{left:800.070000px;}
.x8a_c01305{left:803.520000px;}
.xb2_c01305{left:806.115000px;}
.x92_c01305{left:810.435000px;}
.x3a_c01305{left:812.160000px;}
.xe2_c01305{left:814.755000px;}
.xc4_c01305{left:817.350000px;}
.xe5_c01305{left:820.800000px;}
.x95_c01305{left:823.395000px;}
.x8b_c01305{left:825.990000px;}
.xc1_c01305{left:828.570000px;}
.x3b_c01305{left:831.165000px;}
.xd1_c01305{left:832.890000px;}
.xbc_c01305{left:834.630000px;}
.x3c_c01305{left:837.210000px;}
.x2f_c01305{left:838.950000px;}
.xb8_c01305{left:840.675000px;}
.x8c_c01305{left:843.270000px;}
.x30_c01305{left:845.850000px;}
.x96_c01305{left:848.445000px;}
.x31_c01305{left:851.910000px;}
.x8d_c01305{left:855.360000px;}
.xfc_c01305{left:858.810000px;}
.x7f_c01305{left:860.550000px;}
.xcd_c01305{left:862.275000px;}
.xa7_c01305{left:864.870000px;}
.xd9_c01305{left:866.595000px;}
.x80_c01305{left:869.190000px;}
.x48_c01305{left:870.915000px;}
.x5a_c01305{left:872.640000px;}
.x10e_c01305{left:874.365000px;}
.xa5_c01305{left:876.090000px;}
.x10a_c01305{left:879.555000px;}
.xdc_c01305{left:882.150000px;}
.xe3_c01305{left:887.325000px;}
.x6d_c01305{left:889.050000px;}
.xd2_c01305{left:891.645000px;}
.xdd_c01305{left:893.370000px;}
.x49_c01305{left:909.795000px;}
.xd3_c01305{left:911.520000px;}
.xfd_c01305{left:915.840000px;}
.xfe_c01305{left:931.395000px;}
@media print{
.v3_c01305{vertical-align:-3.093333pt;}
.v0_c01305{vertical-align:0.000000pt;}
.v1_c01305{vertical-align:3.040000pt;}
.v2_c01305{vertical-align:6.133333pt;}
.ls2_c01305{letter-spacing:0.000000pt;}
.ls1_c01305{letter-spacing:20.213845pt;}
.ls0_c01305{letter-spacing:34.761547pt;}
.ws1_c01305{word-spacing:-34.016107pt;}
.ws3_c01305{word-spacing:0.000000pt;}
.ws2_c01305{word-spacing:106.899413pt;}
.ws0_c01305{word-spacing:167.710293pt;}
._0_c01305{width:7.288549pt;}
.fs12_c01305{font-size:3.072000pt;}
.fs8_c01305{font-size:5.333333pt;}
.fs13_c01305{font-size:6.133333pt;}
.fs6_c01305{font-size:9.226667pt;}
.fs16_c01305{font-size:12.266667pt;}
.fs9_c01305{font-size:15.360000pt;}
.fs7_c01305{font-size:18.453333pt;}
.fsa_c01305{font-size:21.493333pt;}
.fs19_c01305{font-size:24.586667pt;}
.fs0_c01305{font-size:27.626667pt;}
.fs3_c01305{font-size:30.720000pt;}
.fs5_c01305{font-size:33.813333pt;}
.fsd_c01305{font-size:36.853333pt;}
.fs2_c01305{font-size:39.946667pt;}
.fsb_c01305{font-size:42.986667pt;}
.fsc_c01305{font-size:46.080000pt;}
.fs11_c01305{font-size:49.173333pt;}
.fs1_c01305{font-size:52.213333pt;}
.fs17_c01305{font-size:55.306667pt;}
.fs14_c01305{font-size:58.346667pt;}
.fs15_c01305{font-size:61.440000pt;}
.fs4_c01305{font-size:64.533333pt;}
.fs1a_c01305{font-size:67.573333pt;}
.fsf_c01305{font-size:70.666667pt;}
.fs10_c01305{font-size:73.706667pt;}
.fs18_c01305{font-size:76.800000pt;}
.fse_c01305{font-size:79.893333pt;}
.fs1e_c01305{font-size:82.933333pt;}
.fs1c_c01305{font-size:86.026667pt;}
.fs1d_c01305{font-size:89.066667pt;}
.fs23_c01305{font-size:92.160000pt;}
.fs22_c01305{font-size:95.253333pt;}
.fs1f_c01305{font-size:101.386667pt;}
.fs21_c01305{font-size:113.653333pt;}
.fs1b_c01305{font-size:122.880000pt;}
.fs20_c01305{font-size:129.013333pt;}
.fs24_c01305{font-size:147.466667pt;}
.fs25_c01305{font-size:172.053333pt;}
.y0_c01305{bottom:0.000000pt;}
.y1d2_c01305{bottom:139.013333pt;}
.y1d3_c01305{bottom:141.306667pt;}
.y1d1_c01305{bottom:142.080000pt;}
.y1d0_c01305{bottom:142.853333pt;}
.y1cf_c01305{bottom:143.613333pt;}
.y1cd_c01305{bottom:156.666667pt;}
.y1ce_c01305{bottom:159.746667pt;}
.y1cb_c01305{bottom:163.586667pt;}
.y1c7_c01305{bottom:164.346667pt;}
.y1ca_c01305{bottom:165.120000pt;}
.y1c6_c01305{bottom:165.893333pt;}
.y1c4_c01305{bottom:166.653333pt;}
.y1c8_c01305{bottom:170.493333pt;}
.y1c5_c01305{bottom:171.266667pt;}
.y1c9_c01305{bottom:172.026667pt;}
.y1cc_c01305{bottom:178.946667pt;}
.y1c2_c01305{bottom:180.480000pt;}
.y1c1_c01305{bottom:182.013333pt;}
.y1c3_c01305{bottom:183.546667pt;}
.y1bd_c01305{bottom:185.093333pt;}
.y1bf_c01305{bottom:185.853333pt;}
.y1c0_c01305{bottom:186.626667pt;}
.y1bc_c01305{bottom:188.933333pt;}
.y1be_c01305{bottom:190.466667pt;}
.y1ba_c01305{bottom:193.533333pt;}
.y1b4_c01305{bottom:197.373333pt;}
.y1bb_c01305{bottom:198.146667pt;}
.y1b6_c01305{bottom:200.453333pt;}
.y1b5_c01305{bottom:203.520000pt;}
.y1b7_c01305{bottom:204.293333pt;}
.y1b8_c01305{bottom:205.053333pt;}
.y1b9_c01305{bottom:205.826667pt;}
.y1b3_c01305{bottom:208.133333pt;}
.y1b2_c01305{bottom:216.573333pt;}
.y1b1_c01305{bottom:218.106667pt;}
.y1b0_c01305{bottom:220.413333pt;}
.y1af_c01305{bottom:221.946667pt;}
.y1ad_c01305{bottom:233.466667pt;}
.y1ae_c01305{bottom:235.773333pt;}
.y1ac_c01305{bottom:236.546667pt;}
.y1ab_c01305{bottom:238.080000pt;}
.y1a8_c01305{bottom:240.386667pt;}
.y1a7_c01305{bottom:241.146667pt;}
.y1a9_c01305{bottom:241.920000pt;}
.y1aa_c01305{bottom:243.453333pt;}
.y1a6_c01305{bottom:244.226667pt;}
.y1a5_c01305{bottom:254.213333pt;}
.y1a4_c01305{bottom:255.746667pt;}
.y1a2_c01305{bottom:256.506667pt;}
.y19f_c01305{bottom:258.053333pt;}
.y1a0_c01305{bottom:258.813333pt;}
.y1a3_c01305{bottom:259.586667pt;}
.y1a1_c01305{bottom:260.346667pt;}
.y19e_c01305{bottom:261.893333pt;}
.y19c_c01305{bottom:271.106667pt;}
.y19b_c01305{bottom:273.413333pt;}
.y195_c01305{bottom:274.173333pt;}
.y199_c01305{bottom:275.706667pt;}
.y198_c01305{bottom:276.480000pt;}
.y197_c01305{bottom:277.253333pt;}
.y19a_c01305{bottom:279.546667pt;}
.y196_c01305{bottom:280.320000pt;}
.y19d_c01305{bottom:284.160000pt;}
.y194_c01305{bottom:288.000000pt;}
.y193_c01305{bottom:290.306667pt;}
.y192_c01305{bottom:294.906667pt;}
.y18b_c01305{bottom:296.453333pt;}
.y18a_c01305{bottom:297.213333pt;}
.y191_c01305{bottom:299.520000pt;}
.y190_c01305{bottom:300.293333pt;}
.y18f_c01305{bottom:302.586667pt;}
.y18d_c01305{bottom:303.360000pt;}
.y189_c01305{bottom:304.893333pt;}
.y18e_c01305{bottom:306.426667pt;}
.y18c_c01305{bottom:308.733333pt;}
.y188_c01305{bottom:313.346667pt;}
.y186_c01305{bottom:324.866667pt;}
.y184_c01305{bottom:326.400000pt;}
.y183_c01305{bottom:327.933333pt;}
.y185_c01305{bottom:328.706667pt;}
.y187_c01305{bottom:329.466667pt;}
.y182_c01305{bottom:330.240000pt;}
.y17d_c01305{bottom:343.293333pt;}
.y17e_c01305{bottom:344.066667pt;}
.y17c_c01305{bottom:345.600000pt;}
.y180_c01305{bottom:346.373333pt;}
.y179_c01305{bottom:348.666667pt;}
.y17b_c01305{bottom:349.440000pt;}
.y178_c01305{bottom:351.746667pt;}
.y17f_c01305{bottom:352.506667pt;}
.y17a_c01305{bottom:353.280000pt;}
.y181_c01305{bottom:355.586667pt;}
.y177_c01305{bottom:362.493333pt;}
.y176_c01305{bottom:363.266667pt;}
.y175_c01305{bottom:365.573333pt;}
.y174_c01305{bottom:366.333333pt;}
.y171_c01305{bottom:367.106667pt;}
.y172_c01305{bottom:369.413333pt;}
.y173_c01305{bottom:370.173333pt;}
.y170_c01305{bottom:379.386667pt;}
.y16e_c01305{bottom:380.160000pt;}
.y16a_c01305{bottom:381.693333pt;}
.y16f_c01305{bottom:382.466667pt;}
.y16d_c01305{bottom:383.226667pt;}
.y169_c01305{bottom:384.000000pt;}
.y16b_c01305{bottom:384.773333pt;}
.y167_c01305{bottom:387.840000pt;}
.y168_c01305{bottom:388.613333pt;}
.y16c_c01305{bottom:390.146667pt;}
.y165_c01305{bottom:396.293333pt;}
.y163_c01305{bottom:400.133333pt;}
.y166_c01305{bottom:400.893333pt;}
.y15f_c01305{bottom:401.666667pt;}
.y161_c01305{bottom:402.426667pt;}
.y162_c01305{bottom:403.200000pt;}
.y160_c01305{bottom:403.973333pt;}
.y15d_c01305{bottom:410.880000pt;}
.y164_c01305{bottom:413.186667pt;}
.y15c_c01305{bottom:413.946667pt;}
.y15a_c01305{bottom:414.720000pt;}
.y159_c01305{bottom:415.493333pt;}
.y158_c01305{bottom:417.026667pt;}
.y15b_c01305{bottom:420.093333pt;}
.y15e_c01305{bottom:430.853333pt;}
.y157_c01305{bottom:434.693333pt;}
.y156_c01305{bottom:435.453333pt;}
.y155_c01305{bottom:436.226667pt;}
.y154_c01305{bottom:436.986667pt;}
.y152_c01305{bottom:437.760000pt;}
.y151_c01305{bottom:438.533333pt;}
.y153_c01305{bottom:440.826667pt;}
.y14e_c01305{bottom:448.506667pt;}
.y150_c01305{bottom:449.280000pt;}
.y14c_c01305{bottom:450.053333pt;}
.y148_c01305{bottom:451.586667pt;}
.y146_c01305{bottom:452.346667pt;}
.y14f_c01305{bottom:453.893333pt;}
.y14b_c01305{bottom:454.653333pt;}
.y14d_c01305{bottom:456.186667pt;}
.y149_c01305{bottom:456.960000pt;}
.y14a_c01305{bottom:457.733333pt;}
.y147_c01305{bottom:460.800000pt;}
.y143_c01305{bottom:465.413333pt;}
.y145_c01305{bottom:466.946667pt;}
.y142_c01305{bottom:467.706667pt;}
.y144_c01305{bottom:468.480000pt;}
.y13e_c01305{bottom:470.013333pt;}
.y13f_c01305{bottom:471.546667pt;}
.y141_c01305{bottom:473.093333pt;}
.y140_c01305{bottom:473.853333pt;}
.y13d_c01305{bottom:474.626667pt;}
.y139_c01305{bottom:486.146667pt;}
.y135_c01305{bottom:486.906667pt;}
.y136_c01305{bottom:487.680000pt;}
.y133_c01305{bottom:489.213333pt;}
.y132_c01305{bottom:490.746667pt;}
.y131_c01305{bottom:491.520000pt;}
.y134_c01305{bottom:492.293333pt;}
.y138_c01305{bottom:493.826667pt;}
.y13a_c01305{bottom:494.586667pt;}
.y13c_c01305{bottom:497.666667pt;}
.y13b_c01305{bottom:499.973333pt;}
.y137_c01305{bottom:502.266667pt;}
.y130_c01305{bottom:503.040000pt;}
.y12f_c01305{bottom:504.573333pt;}
.y12d_c01305{bottom:506.106667pt;}
.y12c_c01305{bottom:506.880000pt;}
.y12b_c01305{bottom:507.653333pt;}
.y12e_c01305{bottom:509.946667pt;}
.y127_c01305{bottom:523.013333pt;}
.y126_c01305{bottom:525.306667pt;}
.y124_c01305{bottom:526.853333pt;}
.y125_c01305{bottom:527.613333pt;}
.y129_c01305{bottom:530.693333pt;}
.y123_c01305{bottom:531.453333pt;}
.y12a_c01305{bottom:533.760000pt;}
.y128_c01305{bottom:539.133333pt;}
.y121_c01305{bottom:539.906667pt;}
.y120_c01305{bottom:541.440000pt;}
.y11f_c01305{bottom:542.213333pt;}
.y11e_c01305{bottom:543.746667pt;}
.y11c_c01305{bottom:544.506667pt;}
.y122_c01305{bottom:546.053333pt;}
.y11b_c01305{bottom:546.813333pt;}
.y11d_c01305{bottom:549.893333pt;}
.y11a_c01305{bottom:557.573333pt;}
.y119_c01305{bottom:558.333333pt;}
.y118_c01305{bottom:559.106667pt;}
.y117_c01305{bottom:561.413333pt;}
.y116_c01305{bottom:562.173333pt;}
.y110_c01305{bottom:563.706667pt;}
.y113_c01305{bottom:564.480000pt;}
.y114_c01305{bottom:565.253333pt;}
.y112_c01305{bottom:566.786667pt;}
.y10f_c01305{bottom:569.093333pt;}
.y115_c01305{bottom:569.853333pt;}
.y111_c01305{bottom:573.693333pt;}
.y10e_c01305{bottom:576.773333pt;}
.y10c_c01305{bottom:580.613333pt;}
.y10d_c01305{bottom:583.680000pt;}
.y10b_c01305{bottom:592.893333pt;}
.y109_c01305{bottom:594.426667pt;}
.y107_c01305{bottom:595.200000pt;}
.y106_c01305{bottom:595.973333pt;}
.y105_c01305{bottom:596.733333pt;}
.y103_c01305{bottom:597.506667pt;}
.y108_c01305{bottom:598.266667pt;}
.y102_c01305{bottom:599.040000pt;}
.y104_c01305{bottom:599.813333pt;}
.y10a_c01305{bottom:601.346667pt;}
.yfb_c01305{bottom:611.333333pt;}
.yff_c01305{bottom:612.093333pt;}
.yfe_c01305{bottom:612.866667pt;}
.yfd_c01305{bottom:615.173333pt;}
.yfa_c01305{bottom:615.933333pt;}
.y100_c01305{bottom:616.706667pt;}
.yfc_c01305{bottom:618.240000pt;}
.yf8_c01305{bottom:620.546667pt;}
.yf9_c01305{bottom:621.306667pt;}
.y101_c01305{bottom:622.853333pt;}
.yf7_c01305{bottom:630.533333pt;}
.yf5_c01305{bottom:631.293333pt;}
.yf4_c01305{bottom:632.066667pt;}
.yf3_c01305{bottom:632.826667pt;}
.yf2_c01305{bottom:633.600000pt;}
.yf0_c01305{bottom:634.373333pt;}
.yf6_c01305{bottom:635.133333pt;}
.yf1_c01305{bottom:637.440000pt;}
.y8_c01305{bottom:638.213333pt;}
.yee_c01305{bottom:646.653333pt;}
.yed_c01305{bottom:648.960000pt;}
.yeb_c01305{bottom:650.493333pt;}
.yef_c01305{bottom:651.266667pt;}
.yea_c01305{bottom:652.026667pt;}
.ye9_c01305{bottom:652.800000pt;}
.ye8_c01305{bottom:653.573333pt;}
.yec_c01305{bottom:654.333333pt;}
.ye6_c01305{bottom:667.386667pt;}
.ye5_c01305{bottom:668.160000pt;}
.ye2_c01305{bottom:668.933333pt;}
.ye7_c01305{bottom:669.693333pt;}
.ydd_c01305{bottom:670.466667pt;}
.ye0_c01305{bottom:672.000000pt;}
.yde_c01305{bottom:672.773333pt;}
.ydf_c01305{bottom:673.533333pt;}
.ye1_c01305{bottom:674.306667pt;}
.ye4_c01305{bottom:677.373333pt;}
.ye3_c01305{bottom:678.146667pt;}
.y7_c01305{bottom:683.520000pt;}
.ydb_c01305{bottom:685.053333pt;}
.ydc_c01305{bottom:687.360000pt;}
.yda_c01305{bottom:688.133333pt;}
.yd5_c01305{bottom:688.893333pt;}
.yd7_c01305{bottom:689.666667pt;}
.yd6_c01305{bottom:690.426667pt;}
.yd8_c01305{bottom:691.200000pt;}
.yd9_c01305{bottom:692.733333pt;}
.yd4_c01305{bottom:701.946667pt;}
.yd3_c01305{bottom:702.720000pt;}
.yd2_c01305{bottom:703.493333pt;}
.yd0_c01305{bottom:705.786667pt;}
.yce_c01305{bottom:706.560000pt;}
.ycd_c01305{bottom:707.333333pt;}
.yd1_c01305{bottom:710.400000pt;}
.ycf_c01305{bottom:711.173333pt;}
.ycc_c01305{bottom:716.546667pt;}
.ycb_c01305{bottom:718.853333pt;}
.y6_c01305{bottom:719.613333pt;}
.yc9_c01305{bottom:720.386667pt;}
.yc8_c01305{bottom:721.146667pt;}
.yca_c01305{bottom:721.920000pt;}
.yc7_c01305{bottom:725.760000pt;}
.y5_c01305{bottom:726.533333pt;}
.yc6_c01305{bottom:729.600000pt;}
.yc4_c01305{bottom:736.506667pt;}
.yc5_c01305{bottom:738.053333pt;}
.yc3_c01305{bottom:739.586667pt;}
.yc2_c01305{bottom:740.346667pt;}
.yc1_c01305{bottom:745.733333pt;}
.yc0_c01305{bottom:746.493333pt;}
.ybf_c01305{bottom:756.480000pt;}
.ybc_c01305{bottom:757.253333pt;}
.ybd_c01305{bottom:758.013333pt;}
.ybe_c01305{bottom:758.786667pt;}
.ybb_c01305{bottom:759.546667pt;}
.yba_c01305{bottom:760.320000pt;}
.yb9_c01305{bottom:764.160000pt;}
.y4_c01305{bottom:773.373333pt;}
.yb8_c01305{bottom:774.146667pt;}
.yb6_c01305{bottom:775.680000pt;}
.yb4_c01305{bottom:777.986667pt;}
.yb3_c01305{bottom:778.746667pt;}
.yb7_c01305{bottom:779.520000pt;}
.yb5_c01305{bottom:780.293333pt;}
.y3_c01305{bottom:781.826667pt;}
.y2_c01305{bottom:791.040000pt;}
.yb2_c01305{bottom:792.573333pt;}
.yb1_c01305{bottom:793.346667pt;}
.yaf_c01305{bottom:794.880000pt;}
.yad_c01305{bottom:797.186667pt;}
.yb0_c01305{bottom:797.946667pt;}
.yae_c01305{bottom:800.253333pt;}
.yac_c01305{bottom:801.026667pt;}
.yab_c01305{bottom:810.240000pt;}
.yaa_c01305{bottom:813.306667pt;}
.ya9_c01305{bottom:815.613333pt;}
.ya8_c01305{bottom:817.920000pt;}
.ya6_c01305{bottom:827.906667pt;}
.ya3_c01305{bottom:830.973333pt;}
.ya5_c01305{bottom:832.506667pt;}
.ya7_c01305{bottom:834.813333pt;}
.ya2_c01305{bottom:837.120000pt;}
.ya1_c01305{bottom:837.893333pt;}
.ya4_c01305{bottom:838.653333pt;}
.y9f_c01305{bottom:843.266667pt;}
.y9d_c01305{bottom:846.333333pt;}
.y9b_c01305{bottom:847.866667pt;}
.y9a_c01305{bottom:850.173333pt;}
.ya0_c01305{bottom:852.480000pt;}
.y9e_c01305{bottom:854.013333pt;}
.y9c_c01305{bottom:856.320000pt;}
.y99_c01305{bottom:864.000000pt;}
.y97_c01305{bottom:867.066667pt;}
.y98_c01305{bottom:867.840000pt;}
.y95_c01305{bottom:869.373333pt;}
.y96_c01305{bottom:870.906667pt;}
.y94_c01305{bottom:871.680000pt;}
.y93_c01305{bottom:874.746667pt;}
.y92_c01305{bottom:881.666667pt;}
.y8f_c01305{bottom:883.973333pt;}
.y89_c01305{bottom:885.506667pt;}
.y8a_c01305{bottom:887.813333pt;}
.y90_c01305{bottom:888.573333pt;}
.y8c_c01305{bottom:889.346667pt;}
.y1de_c01305{bottom:890.106667pt;}
.y91_c01305{bottom:893.946667pt;}
.y1dd_c01305{bottom:895.493333pt;}
.y8d_c01305{bottom:896.253333pt;}
.y8b_c01305{bottom:898.560000pt;}
.y8e_c01305{bottom:900.093333pt;}
.y86_c01305{bottom:900.866667pt;}
.y84_c01305{bottom:901.626667pt;}
.y87_c01305{bottom:902.400000pt;}
.y83_c01305{bottom:903.173333pt;}
.y85_c01305{bottom:904.706667pt;}
.y88_c01305{bottom:906.240000pt;}
.y1dc_c01305{bottom:913.920000pt;}
.y7f_c01305{bottom:917.760000pt;}
.y7e_c01305{bottom:918.533333pt;}
.y7b_c01305{bottom:919.293333pt;}
.y79_c01305{bottom:920.066667pt;}
.y81_c01305{bottom:920.826667pt;}
.y76_c01305{bottom:922.373333pt;}
.y7a_c01305{bottom:923.133333pt;}
.y7c_c01305{bottom:923.906667pt;}
.y78_c01305{bottom:924.666667pt;}
.y77_c01305{bottom:925.440000pt;}
.y75_c01305{bottom:926.213333pt;}
.y7d_c01305{bottom:928.506667pt;}
.y82_c01305{bottom:929.280000pt;}
.y80_c01305{bottom:931.586667pt;}
.y72_c01305{bottom:936.960000pt;}
.y73_c01305{bottom:937.733333pt;}
.y70_c01305{bottom:938.493333pt;}
.y6f_c01305{bottom:939.266667pt;}
.y71_c01305{bottom:940.800000pt;}
.y74_c01305{bottom:942.333333pt;}
.y6a_c01305{bottom:943.106667pt;}
.y6e_c01305{bottom:953.853333pt;}
.y6d_c01305{bottom:956.160000pt;}
.y69_c01305{bottom:960.773333pt;}
.y6c_c01305{bottom:961.533333pt;}
.y6b_c01305{bottom:962.306667pt;}
.y1db_c01305{bottom:966.906667pt;}
.y67_c01305{bottom:969.986667pt;}
.y65_c01305{bottom:972.293333pt;}
.y64_c01305{bottom:973.826667pt;}
.y68_c01305{bottom:975.360000pt;}
.y66_c01305{bottom:976.133333pt;}
.y62_c01305{bottom:979.200000pt;}
.y1da_c01305{bottom:980.733333pt;}
.y60_c01305{bottom:981.506667pt;}
.y61_c01305{bottom:982.266667pt;}
.y63_c01305{bottom:983.040000pt;}
.y5f_c01305{bottom:989.946667pt;}
.y5b_c01305{bottom:990.720000pt;}
.y5c_c01305{bottom:991.493333pt;}
.y5e_c01305{bottom:992.253333pt;}
.y5a_c01305{bottom:993.026667pt;}
.y5d_c01305{bottom:997.626667pt;}
.y57_c01305{bottom:1007.613333pt;}
.y1d9_c01305{bottom:1008.386667pt;}
.y58_c01305{bottom:1009.146667pt;}
.y59_c01305{bottom:1009.920000pt;}
.y56_c01305{bottom:1011.453333pt;}
.y54_c01305{bottom:1012.226667pt;}
.y52_c01305{bottom:1013.760000pt;}
.y1d8_c01305{bottom:1015.293333pt;}
.y53_c01305{bottom:1016.066667pt;}
.y55_c01305{bottom:1019.133333pt;}
.y50_c01305{bottom:1027.586667pt;}
.y4d_c01305{bottom:1029.893333pt;}
.y4f_c01305{bottom:1030.653333pt;}
.y4e_c01305{bottom:1032.186667pt;}
.y51_c01305{bottom:1033.733333pt;}
.y4c_c01305{bottom:1041.413333pt;}
.y4b_c01305{bottom:1044.480000pt;}
.y4a_c01305{bottom:1046.013333pt;}
.y49_c01305{bottom:1049.093333pt;}
.y47_c01305{bottom:1049.853333pt;}
.y48_c01305{bottom:1061.373333pt;}
.y42_c01305{bottom:1062.906667pt;}
.y41_c01305{bottom:1064.453333pt;}
.y43_c01305{bottom:1065.213333pt;}
.y46_c01305{bottom:1065.986667pt;}
.y45_c01305{bottom:1067.520000pt;}
.y40_c01305{bottom:1068.293333pt;}
.y44_c01305{bottom:1069.053333pt;}
.y1d7_c01305{bottom:1069.826667pt;}
.y3b_c01305{bottom:1081.346667pt;}
.y3f_c01305{bottom:1082.106667pt;}
.y3a_c01305{bottom:1082.880000pt;}
.y3d_c01305{bottom:1084.413333pt;}
.y39_c01305{bottom:1085.186667pt;}
.y3e_c01305{bottom:1085.946667pt;}
.y3c_c01305{bottom:1087.493333pt;}
.y1d6_c01305{bottom:1088.253333pt;}
.y30_c01305{bottom:1098.240000pt;}
.y32_c01305{bottom:1099.013333pt;}
.y31_c01305{bottom:1099.773333pt;}
.y2f_c01305{bottom:1101.306667pt;}
.y35_c01305{bottom:1102.080000pt;}
.y36_c01305{bottom:1103.613333pt;}
.y34_c01305{bottom:1104.386667pt;}
.y33_c01305{bottom:1105.146667pt;}
.y37_c01305{bottom:1106.693333pt;}
.y1d5_c01305{bottom:1109.760000pt;}
.y1d4_c01305{bottom:1114.373333pt;}
.y38_c01305{bottom:1115.906667pt;}
.y29_c01305{bottom:1117.440000pt;}
.y28_c01305{bottom:1118.213333pt;}
.y26_c01305{bottom:1118.973333pt;}
.y27_c01305{bottom:1122.053333pt;}
.y2d_c01305{bottom:1123.586667pt;}
.y2e_c01305{bottom:1124.346667pt;}
.y2a_c01305{bottom:1125.120000pt;}
.y2b_c01305{bottom:1125.893333pt;}
.y2c_c01305{bottom:1129.733333pt;}
.y21_c01305{bottom:1138.946667pt;}
.y22_c01305{bottom:1140.480000pt;}
.y23_c01305{bottom:1141.253333pt;}
.y25_c01305{bottom:1145.853333pt;}
.y24_c01305{bottom:1147.386667pt;}
.y1a_c01305{bottom:1151.226667pt;}
.y15_c01305{bottom:1152.773333pt;}
.y18_c01305{bottom:1153.533333pt;}
.y1c_c01305{bottom:1154.306667pt;}
.y17_c01305{bottom:1155.840000pt;}
.y20_c01305{bottom:1156.613333pt;}
.y1f_c01305{bottom:1157.373333pt;}
.y16_c01305{bottom:1158.146667pt;}
.y19_c01305{bottom:1158.906667pt;}
.y1d_c01305{bottom:1159.680000pt;}
.y1e_c01305{bottom:1162.746667pt;}
.y1b_c01305{bottom:1165.053333pt;}
.y14_c01305{bottom:1168.133333pt;}
.y11_c01305{bottom:1171.973333pt;}
.y10_c01305{bottom:1172.733333pt;}
.y13_c01305{bottom:1175.040000pt;}
.y12_c01305{bottom:1176.573333pt;}
.ye_c01305{bottom:1177.346667pt;}
.yf_c01305{bottom:1181.186667pt;}
.yc_c01305{bottom:1181.946667pt;}
.ya_c01305{bottom:1182.720000pt;}
.y9_c01305{bottom:1184.253333pt;}
.yd_c01305{bottom:1185.026667pt;}
.yb_c01305{bottom:1188.866667pt;}
.y1_c01305{bottom:1277.186667pt;}
.h15_c01305{height:2.764500pt;}
.ha_c01305{height:4.799479pt;}
.h16_c01305{height:5.519401pt;}
.he_c01305{height:8.303099pt;}
.h1a_c01305{height:11.038802pt;}
.h8_c01305{height:11.343099pt;}
.hb_c01305{height:13.822500pt;}
.h9_c01305{height:16.606198pt;}
.hc_c01305{height:19.341901pt;}
.h1d_c01305{height:22.125599pt;}
.h2_c01305{height:24.861302pt;}
.h5_c01305{height:27.645000pt;}
.h7_c01305{height:30.428698pt;}
.h10_c01305{height:33.164401pt;}
.h4_c01305{height:35.948099pt;}
.hd_c01305{height:38.683802pt;}
.hf_c01305{height:41.467500pt;}
.h14_c01305{height:44.251198pt;}
.h3_c01305{height:46.986901pt;}
.h1b_c01305{height:49.770599pt;}
.h17_c01305{height:52.506302pt;}
.h19_c01305{height:55.290000pt;}
.h6_c01305{height:58.073698pt;}
.h18_c01305{height:58.639635pt;}
.h1e_c01305{height:60.809401pt;}
.h12_c01305{height:63.593099pt;}
.h13_c01305{height:66.328802pt;}
.h1c_c01305{height:69.112500pt;}
.h11_c01305{height:71.896198pt;}
.h22_c01305{height:74.631901pt;}
.h20_c01305{height:77.415599pt;}
.h21_c01305{height:80.151302pt;}
.h27_c01305{height:82.935000pt;}
.h26_c01305{height:85.718698pt;}
.h23_c01305{height:91.238099pt;}
.h25_c01305{height:102.276901pt;}
.h1f_c01305{height:110.580000pt;}
.h24_c01305{height:116.099401pt;}
.h28_c01305{height:132.705599pt;}
.h29_c01305{height:154.831198pt;}
.h0_c01305{height:1341.693333pt;}
.h1_c01305{height:1342.000000pt;}
.w0_c01305{width:967.680000pt;}
.w1_c01305{width:968.000000pt;}
.x0_c01305{left:0.000000pt;}
.x112_c01305{left:9.213333pt;}
.x111_c01305{left:10.746667pt;}
.x1_c01305{left:46.080000pt;}
.x2_c01305{left:129.026667pt;}
.x97_c01305{left:158.973333pt;}
.xa8_c01305{left:162.813333pt;}
.x74_c01305{left:167.426667pt;}
.x10b_c01305{left:168.960000pt;}
.xc2_c01305{left:186.626667pt;}
.x108_c01305{left:188.160000pt;}
.x102_c01305{left:189.693333pt;}
.xde_c01305{left:191.989291pt;}
.x4a_c01305{left:194.306667pt;}
.x3d_c01305{left:195.840000pt;}
.xda_c01305{left:199.680000pt;}
.xa6_c01305{left:201.213333pt;}
.x3e_c01305{left:202.746667pt;}
.x26_c01305{left:205.053333pt;}
.xd_c01305{left:206.586667pt;}
.x5b_c01305{left:208.133333pt;}
.x75_c01305{left:210.426667pt;}
.xf9_c01305{left:216.573333pt;}
.xdf_c01305{left:218.880000pt;}
.x98_c01305{left:221.946667pt;}
.x99_c01305{left:226.560000pt;}
.x4b_c01305{left:228.093333pt;}
.x105_c01305{left:230.400000pt;}
.x50_c01305{left:232.706667pt;}
.x81_c01305{left:234.240000pt;}
.x9a_c01305{left:237.306667pt;}
.x6e_c01305{left:239.613333pt;}
.x7c_c01305{left:241.920000pt;}
.x62_c01305{left:244.986667pt;}
.xe9_c01305{left:246.533333pt;}
.x27_c01305{left:248.066667pt;}
.x3_c01305{left:249.600000pt;}
.xa0_c01305{left:251.906667pt;}
.xca_c01305{left:253.440000pt;}
.x32_c01305{left:259.586667pt;}
.xe_c01305{left:262.653333pt;}
.x51_c01305{left:265.733333pt;}
.xbd_c01305{left:267.266667pt;}
.x16_c01305{left:270.333333pt;}
.x4_c01305{left:271.866667pt;}
.xfa_c01305{left:276.480000pt;}
.x4c_c01305{left:278.013333pt;}
.x76_c01305{left:279.546667pt;}
.x28_c01305{left:281.853333pt;}
.x106_c01305{left:284.933333pt;}
.x82_c01305{left:286.466667pt;}
.xff_c01305{left:288.773333pt;}
.xb9_c01305{left:290.306667pt;}
.x77_c01305{left:294.146667pt;}
.x10c_c01305{left:296.453333pt;}
.xa9_c01305{left:298.746667pt;}
.x33_c01305{left:301.053333pt;}
.x78_c01305{left:302.586667pt;}
.xd4_c01305{left:305.666667pt;}
.xab_c01305{left:309.506667pt;}
.xcc_c01305{left:311.040000pt;}
.xf7_c01305{left:312.574213pt;}
.x17_c01305{left:317.186667pt;}
.x9b_c01305{left:318.720000pt;}
.x4d_c01305{left:321.786667pt;}
.x5_c01305{left:323.333333pt;}
.xb4_c01305{left:324.866667pt;}
.xf_c01305{left:326.400000pt;}
.x6_c01305{left:328.706667pt;}
.x79_c01305{left:331.013333pt;}
.xbe_c01305{left:332.546667pt;}
.x63_c01305{left:334.853333pt;}
.x107_c01305{left:340.226667pt;}
.x10_c01305{left:341.760000pt;}
.x52_c01305{left:344.066667pt;}
.x3f_c01305{left:346.373333pt;}
.x18_c01305{left:347.906667pt;}
.xbf_c01305{left:350.213333pt;}
.x34_c01305{left:352.506667pt;}
.x4e_c01305{left:354.053333pt;}
.x29_c01305{left:356.346667pt;}
.x7_c01305{left:357.893333pt;}
.xae_c01305{left:359.426667pt;}
.xce_c01305{left:361.733333pt;}
.x6f_c01305{left:363.266667pt;}
.x64_c01305{left:365.573333pt;}
.x7a_c01305{left:367.106667pt;}
.x103_c01305{left:370.946667pt;}
.x9c_c01305{left:374.013333pt;}
.x70_c01305{left:377.853333pt;}
.x35_c01305{left:379.386667pt;}
.x40_c01305{left:381.693333pt;}
.xac_c01305{left:384.000000pt;}
.x11_c01305{left:387.840000pt;}
.x101_c01305{left:389.373333pt;}
.xaa_c01305{left:390.906667pt;}
.x7b_c01305{left:392.453333pt;}
.xba_c01305{left:394.746667pt;}
.x53_c01305{left:397.826667pt;}
.x8_c01305{left:399.360000pt;}
.x7d_c01305{left:401.666667pt;}
.x65_c01305{left:405.506667pt;}
.xe6_c01305{left:407.813333pt;}
.xaf_c01305{left:410.106667pt;}
.x12_c01305{left:413.946667pt;}
.x109_c01305{left:415.493333pt;}
.x83_c01305{left:417.026667pt;}
.x9d_c01305{left:418.560000pt;}
.x54_c01305{left:420.866667pt;}
.x2a_c01305{left:424.706667pt;}
.x19_c01305{left:427.013333pt;}
.x36_c01305{left:429.306667pt;}
.x13_c01305{left:431.613333pt;}
.x41_c01305{left:433.146667pt;}
.xef_c01305{left:434.693333pt;}
.xf0_c01305{left:439.293333pt;}
.x55_c01305{left:440.826667pt;}
.x9_c01305{left:443.133333pt;}
.x71_c01305{left:446.213333pt;}
.x69_c01305{left:451.586667pt;}
.xc0_c01305{left:454.653333pt;}
.x66_c01305{left:456.960000pt;}
.x6a_c01305{left:461.573333pt;}
.x14_c01305{left:463.866667pt;}
.x42_c01305{left:465.413333pt;}
.xa_c01305{left:468.480000pt;}
.x6b_c01305{left:471.546667pt;}
.xa1_c01305{left:473.093333pt;}
.xc3_c01305{left:474.626667pt;}
.xdb_c01305{left:477.693333pt;}
.xa2_c01305{left:480.000000pt;}
.x37_c01305{left:481.533333pt;}
.xb_c01305{left:483.066667pt;}
.x5c_c01305{left:485.373333pt;}
.xf1_c01305{left:486.906667pt;}
.xe7_c01305{left:489.213333pt;}
.x5e_c01305{left:492.293333pt;}
.xd7_c01305{left:494.586667pt;}
.x93_c01305{left:496.893333pt;}
.x9e_c01305{left:499.200000pt;}
.x56_c01305{left:500.733333pt;}
.x15_c01305{left:502.266667pt;}
.x43_c01305{left:503.813333pt;}
.xcf_c01305{left:505.346667pt;}
.x1a_c01305{left:507.653333pt;}
.x94_c01305{left:509.186667pt;}
.xcb_c01305{left:513.026667pt;}
.xb5_c01305{left:514.560000pt;}
.x100_c01305{left:516.866667pt;}
.x8e_c01305{left:518.400000pt;}
.x84_c01305{left:519.933333pt;}
.xe8_c01305{left:522.240000pt;}
.x5f_c01305{left:525.306667pt;}
.xf2_c01305{left:529.146667pt;}
.x57_c01305{left:532.226667pt;}
.x10f_c01305{left:536.826667pt;}
.xad_c01305{left:539.906667pt;}
.x44_c01305{left:542.213333pt;}
.x9f_c01305{left:544.506667pt;}
.xe0_c01305{left:547.586667pt;}
.xc5_c01305{left:549.120000pt;}
.xea_c01305{left:550.653333pt;}
.xfb_c01305{left:552.960000pt;}
.x8f_c01305{left:555.266667pt;}
.xf6_c01305{left:556.800000pt;}
.x2b_c01305{left:559.866667pt;}
.xc_c01305{left:561.413333pt;}
.xf8_c01305{left:563.706667pt;}
.x1b_c01305{left:565.253333pt;}
.xf4_c01305{left:567.546667pt;}
.xc6_c01305{left:569.093333pt;}
.x1c_c01305{left:570.626133pt;}
.xd5_c01305{left:572.160000pt;}
.xeb_c01305{left:575.226667pt;}
.xd0_c01305{left:578.306667pt;}
.xc7_c01305{left:580.613333pt;}
.x58_c01305{left:586.746667pt;}
.x1d_c01305{left:589.053333pt;}
.x45_c01305{left:591.360000pt;}
.x72_c01305{left:595.200000pt;}
.xb3_c01305{left:597.506667pt;}
.x1e_c01305{left:599.040000pt;}
.x67_c01305{left:602.106667pt;}
.x46_c01305{left:604.413333pt;}
.xc8_c01305{left:606.720000pt;}
.x90_c01305{left:609.786667pt;}
.xc9_c01305{left:612.093333pt;}
.x1f_c01305{left:619.773333pt;}
.x59_c01305{left:622.080000pt;}
.xf3_c01305{left:623.613333pt;}
.x60_c01305{left:625.146667pt;}
.xb0_c01305{left:626.693333pt;}
.xee_c01305{left:630.533333pt;}
.x85_c01305{left:632.826667pt;}
.x20_c01305{left:634.373333pt;}
.x86_c01305{left:637.440000pt;}
.xd6_c01305{left:638.973333pt;}
.x4f_c01305{left:640.506667pt;}
.x2c_c01305{left:642.813333pt;}
.x21_c01305{left:645.120000pt;}
.xec_c01305{left:648.186667pt;}
.xa3_c01305{left:649.733333pt;}
.x22_c01305{left:651.266667pt;}
.xb6_c01305{left:653.573333pt;}
.x38_c01305{left:655.106667pt;}
.x5d_c01305{left:656.640000pt;}
.x23_c01305{left:658.946667pt;}
.x110_c01305{left:660.480000pt;}
.x104_c01305{left:663.546667pt;}
.x91_c01305{left:665.853333pt;}
.xf5_c01305{left:667.386667pt;}
.x39_c01305{left:668.933333pt;}
.x47_c01305{left:672.000000pt;}
.xbb_c01305{left:675.066667pt;}
.xe1_c01305{left:678.146667pt;}
.x87_c01305{left:679.680000pt;}
.xa4_c01305{left:682.746667pt;}
.x10d_c01305{left:684.293333pt;}
.x88_c01305{left:685.826667pt;}
.xd8_c01305{left:687.360000pt;}
.x2d_c01305{left:688.893333pt;}
.xb7_c01305{left:690.426667pt;}
.x61_c01305{left:691.973333pt;}
.x68_c01305{left:693.506667pt;}
.x24_c01305{left:695.040000pt;}
.x7e_c01305{left:696.573333pt;}
.xed_c01305{left:698.106667pt;}
.xe4_c01305{left:699.653333pt;}
.x25_c01305{left:702.720000pt;}
.x89_c01305{left:704.253333pt;}
.x6c_c01305{left:705.786667pt;}
.x2e_c01305{left:708.093333pt;}
.xb1_c01305{left:709.626667pt;}
.x73_c01305{left:711.173333pt;}
.x8a_c01305{left:714.240000pt;}
.xb2_c01305{left:716.546667pt;}
.x92_c01305{left:720.386667pt;}
.x3a_c01305{left:721.920000pt;}
.xe2_c01305{left:724.226667pt;}
.xc4_c01305{left:726.533333pt;}
.xe5_c01305{left:729.600000pt;}
.x95_c01305{left:731.906667pt;}
.x8b_c01305{left:734.213333pt;}
.xc1_c01305{left:736.506667pt;}
.x3b_c01305{left:738.813333pt;}
.xd1_c01305{left:740.346667pt;}
.xbc_c01305{left:741.893333pt;}
.x3c_c01305{left:744.186667pt;}
.x2f_c01305{left:745.733333pt;}
.xb8_c01305{left:747.266667pt;}
.x8c_c01305{left:749.573333pt;}
.x30_c01305{left:751.866667pt;}
.x96_c01305{left:754.173333pt;}
.x31_c01305{left:757.253333pt;}
.x8d_c01305{left:760.320000pt;}
.xfc_c01305{left:763.386667pt;}
.x7f_c01305{left:764.933333pt;}
.xcd_c01305{left:766.466667pt;}
.xa7_c01305{left:768.773333pt;}
.xd9_c01305{left:770.306667pt;}
.x80_c01305{left:772.613333pt;}
.x48_c01305{left:774.146667pt;}
.x5a_c01305{left:775.680000pt;}
.x10e_c01305{left:777.213333pt;}
.xa5_c01305{left:778.746667pt;}
.x10a_c01305{left:781.826667pt;}
.xdc_c01305{left:784.133333pt;}
.xe3_c01305{left:788.733333pt;}
.x6d_c01305{left:790.266667pt;}
.xd2_c01305{left:792.573333pt;}
.xdd_c01305{left:794.106667pt;}
.x49_c01305{left:808.706667pt;}
.xd3_c01305{left:810.240000pt;}
.xfd_c01305{left:814.080000pt;}
.xfe_c01305{left:827.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_008d7700c87aa95fd72d354d.woff2')format("woff");}.ff1_c01306{font-family:ff1_c01306;line-height:1.109863;font-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_c01306{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01306{transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);}
.m1e6_c01306{transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045125,0.000000,0.000000,0.250000,0,0);}
.m171_c01306{transform:matrix(0.065800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065800,0.000000,0.000000,0.250000,0,0);}
.m97_c01306{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);}
.m1de_c01306{transform:matrix(0.086150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086150,0.000000,0.000000,0.250000,0,0);}
.m137_c01306{transform:matrix(0.093800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093800,0.000000,0.000000,0.250000,0,0);}
.mb8_c01306{transform:matrix(0.095700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095700,0.000000,0.000000,0.250000,0,0);}
.m142_c01306{transform:matrix(0.102275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102275,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01306{transform:matrix(0.102425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102425,0.000000,0.000000,0.250000,0,0);}
.m168_c01306{transform:matrix(0.107075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107075,0.000000,0.000000,0.250000,0,0);}
.m106_c01306{transform:matrix(0.107675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107675,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01306{transform:matrix(0.111700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111700,0.000000,0.000000,0.250000,0,0);}
.m66_c01306{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.ma8_c01306{transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01306{transform:matrix(0.117375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117375,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01306{transform:matrix(0.117625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117625,0.000000,0.000000,0.250000,0,0);}
.m7_c01306{transform:matrix(0.118675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118675,0.000000,0.000000,0.250000,0,0);}
.m174_c01306{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m179_c01306{transform:matrix(0.119275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119275,0.000000,0.000000,0.250000,0,0);}
.m120_c01306{transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);}
.m13b_c01306{transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01306{transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120800,0.000000,0.000000,0.250000,0,0);}
.m72_c01306{transform:matrix(0.121825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121825,0.000000,0.000000,0.250000,0,0);}
.m6d_c01306{transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123375,0.000000,0.000000,0.250000,0,0);}
.m147_c01306{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m117_c01306{transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);}
.m10d_c01306{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mbb_c01306{transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126375,0.000000,0.000000,0.250000,0,0);}
.m4b_c01306{transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126675,0.000000,0.000000,0.250000,0,0);}
.m13a_c01306{transform:matrix(0.128350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128350,0.000000,0.000000,0.250000,0,0);}
.m4e_c01306{transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128500,0.000000,0.000000,0.250000,0,0);}
.m173_c01306{transform:matrix(0.131025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131025,0.000000,0.000000,0.250000,0,0);}
.mb7_c01306{transform:matrix(0.131475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131475,0.000000,0.000000,0.250000,0,0);}
.m128_c01306{transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131725,0.000000,0.000000,0.250000,0,0);}
.m18b_c01306{transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);}
.m52_c01306{transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01306{transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01306{transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);}
.m92_c01306{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m18d_c01306{transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);}
.m19c_c01306{transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);}
.m154_c01306{transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);}
.m10f_c01306{transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);}
.ma5_c01306{transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);}
.m150_c01306{transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);}
.m1b_c01306{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.m17e_c01306{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m17f_c01306{transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141275,0.000000,0.000000,0.250000,0,0);}
.mcf_c01306{transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);}
.mc2_c01306{transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141400,0.000000,0.000000,0.250000,0,0);}
.mac_c01306{transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01306{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m16a_c01306{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01306{transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143775,0.000000,0.000000,0.250000,0,0);}
.m51_c01306{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m12c_c01306{transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);}
.me5_c01306{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.m0_c01306{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.m17a_c01306{transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);}
.m104_c01306{transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);}
.m15f_c01306{transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);}
.m18a_c01306{transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);}
.m107_c01306{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);}
.m94_c01306{transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);}
.m10c_c01306{transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);}
.m161_c01306{transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);}
.m49_c01306{transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149475,0.000000,0.000000,0.250000,0,0);}
.m9d_c01306{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);}
.m1b0_c01306{transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);}
.m182_c01306{transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);}
.mae_c01306{transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);}
.m176_c01306{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);}
.mc9_c01306{transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);}
.m19d_c01306{transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);}
.m12a_c01306{transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);}
.m5d_c01306{transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);}
.m18e_c01306{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01306{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);}
.m18c_c01306{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01306{transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);}
.m14a_c01306{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.m12b_c01306{transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155200,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01306{transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);}
.m9c_c01306{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.mb3_c01306{transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);}
.m112_c01306{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m12d_c01306{transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);}
.m175_c01306{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m149_c01306{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);}
.m158_c01306{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.m91_c01306{transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);}
.m13e_c01306{transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);}
.m181_c01306{transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);}
.m96_c01306{transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01306{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);}
.m180_c01306{transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01306{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.mf0_c01306{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);}
.meb_c01306{transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01306{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.m18f_c01306{transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01306{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);}
.m79_c01306{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.m74_c01306{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m193_c01306{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);}
.m44_c01306{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);}
.m1c3_c01306{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.m3e_c01306{transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164650,0.000000,0.000000,0.250000,0,0);}
.m1df_c01306{transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164875,0.000000,0.000000,0.250000,0,0);}
.m1db_c01306{transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);}
.m6e_c01306{transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166650,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01306{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m105_c01306{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m31_c01306{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.m10b_c01306{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01306{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m1af_c01306{transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);}
.m35_c01306{transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);}
.mb2_c01306{transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01306{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);}
.me8_c01306{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.md0_c01306{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.m77_c01306{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);}
.m151_c01306{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01306{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.m136_c01306{transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);}
.m4f_c01306{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);}
.m170_c01306{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);}
.m17b_c01306{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.mcc_c01306{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.md3_c01306{transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174775,0.000000,0.000000,0.250000,0,0);}
.m8a_c01306{transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);}
.mc_c01306{transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176475,0.000000,0.000000,0.250000,0,0);}
.m71_c01306{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01306{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m48_c01306{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);}
.me6_c01306{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);}
.m1c7_c01306{transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);}
.mbc_c01306{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m43_c01306{transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);}
.m14f_c01306{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m1f_c01306{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.m114_c01306{transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);}
.md1_c01306{transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);}
.md4_c01306{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);}
.m146_c01306{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.m139_c01306{transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);}
.m144_c01306{transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);}
.m34_c01306{transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);}
.m192_c01306{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m6_c01306{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);}
.m1d7_c01306{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);}
.m1b3_c01306{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);}
.m6f_c01306{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m11e_c01306{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m148_c01306{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);}
.m1a7_c01306{transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01306{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m1da_c01306{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);}
.m156_c01306{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);}
.m8_c01306{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);}
.ma4_c01306{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);}
.m134_c01306{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);}
.mb9_c01306{transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);}
.m15b_c01306{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m109_c01306{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.mc7_c01306{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m14c_c01306{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);}
.m169_c01306{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);}
.m124_c01306{transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);}
.m110_c01306{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.ma9_c01306{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);}
.m122_c01306{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);}
.m18_c01306{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.mfc_c01306{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m8f_c01306{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m56_c01306{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);}
.mef_c01306{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);}
.mad_c01306{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.m8b_c01306{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);}
.m10a_c01306{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);}
.m1b8_c01306{transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);}
.mff_c01306{transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01306{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m165_c01306{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.m126_c01306{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);}
.m115_c01306{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);}
.mab_c01306{transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);}
.mc1_c01306{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m36_c01306{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m93_c01306{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01306{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m186_c01306{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.m100_c01306{transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);}
.m11b_c01306{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);}
.m15_c01306{transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);}
.m19e_c01306{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);}
.m152_c01306{transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01306{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.mba_c01306{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.ma7_c01306{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m133_c01306{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);}
.m185_c01306{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);}
.m172_c01306{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m119_c01306{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);}
.m20_c01306{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.m7c_c01306{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);}
.m1bd_c01306{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);}
.m1be_c01306{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.mea_c01306{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);}
.m1ac_c01306{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);}
.m16_c01306{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);}
.m1c9_c01306{transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202875,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01306{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m8c_c01306{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m75_c01306{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01306{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);}
.m45_c01306{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m54_c01306{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);}
.m15e_c01306{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.maf_c01306{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01306{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);}
.m13c_c01306{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m98_c01306{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);}
.m159_c01306{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01306{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);}
.m153_c01306{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01306{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);}
.m189_c01306{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mce_c01306{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);}
.m8d_c01306{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.m11f_c01306{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);}
.m19a_c01306{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m16c_c01306{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m14e_c01306{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);}
.me2_c01306{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);}
.mb5_c01306{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m5_c01306{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.mb6_c01306{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m125_c01306{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);}
.mfe_c01306{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.mbd_c01306{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.md2_c01306{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);}
.m12e_c01306{transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213800,0.000000,0.000000,0.250000,0,0);}
.ma1_c01306{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);}
.m70_c01306{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);}
.mbe_c01306{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);}
.m127_c01306{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);}
.m15a_c01306{transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);}
.m5a_c01306{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.mcd_c01306{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.me3_c01306{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.m76_c01306{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m1d_c01306{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);}
.m3f_c01306{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);}
.m19f_c01306{transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);}
.m6c_c01306{transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);}
.m10e_c01306{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);}
.m88_c01306{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);}
.m162_c01306{transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);}
.m13f_c01306{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);}
.m1cc_c01306{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.m12f_c01306{transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);}
.m38_c01306{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01306{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);}
.m13d_c01306{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);}
.m90_c01306{transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);}
.mf1_c01306{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m155_c01306{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m166_c01306{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.mfd_c01306{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01306{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);}
.m17d_c01306{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.me9_c01306{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m138_c01306{transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224375,0.000000,0.000000,0.250000,0,0);}
.m41_c01306{transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);}
.mca_c01306{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);}
.m11c_c01306{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);}
.m32_c01306{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);}
.m46_c01306{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.mc4_c01306{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);}
.m108_c01306{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);}
.m78_c01306{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);}
.m157_c01306{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.m141_c01306{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);}
.m183_c01306{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);}
.m23_c01306{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m184_c01306{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.m3a_c01306{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);}
.m1a8_c01306{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);}
.m1d3_c01306{transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);}
.m187_c01306{transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);}
.m131_c01306{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m85_c01306{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.mde_c01306{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);}
.m102_c01306{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);}
.m1d2_c01306{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);}
.m116_c01306{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);}
.m3c_c01306{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);}
.m14d_c01306{transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);}
.m11a_c01306{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);}
.m195_c01306{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);}
.m16b_c01306{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);}
.ma3_c01306{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m123_c01306{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);}
.m22_c01306{transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);}
.mc8_c01306{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);}
.m111_c01306{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);}
.m1c1_c01306{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);}
.m57_c01306{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);}
.m1ab_c01306{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m129_c01306{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);}
.m121_c01306{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);}
.m143_c01306{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);}
.m12_c01306{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);}
.m5b_c01306{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.mb_c01306{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.mbf_c01306{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);}
.m101_c01306{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);}
.m1d4_c01306{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.mfb_c01306{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);}
.m4_c01306{transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01306{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);}
.m53_c01306{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m50_c01306{transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);}
.m132_c01306{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);}
.m1bc_c01306{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);}
.mb4_c01306{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);}
.m73_c01306{transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);}
.mf6_c01306{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);}
.m9b_c01306{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);}
.md6_c01306{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);}
.m1b4_c01306{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);}
.m55_c01306{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m194_c01306{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);}
.md7_c01306{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);}
.m1c4_c01306{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);}
.m1d8_c01306{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);}
.m86_c01306{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m87_c01306{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);}
.m83_c01306{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);}
.m135_c01306{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);}
.m67_c01306{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.mee_c01306{transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248350,0.000000,0.000000,0.250000,0,0);}
.m15d_c01306{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.med_c01306{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);}
.ma0_c01306{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m60_c01306{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);}
.m10_c01306{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m140_c01306{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);}
.m24_c01306{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);}
.mc3_c01306{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);}
.m29_c01306{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m30_c01306{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m58_c01306{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c01306{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);}
.mc6_c01306{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01306{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);}
.m42_c01306{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);}
.m39_c01306{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01306{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);}
.m1a_c01306{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01306{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m27_c01306{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);}
.m40_c01306{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c01306{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);}
.m3_c01306{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);}
.md5_c01306{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01306{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c01306{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);}
.m2f_c01306{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01306{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01306{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);}
.m8e_c01306{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m28_c01306{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01306{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c01306{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01306{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c01306{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m47_c01306{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2_c01306{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01306{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);}
.m21_c01306{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m95_c01306{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m25_c01306{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m37_c01306{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01306{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);}
.m118_c01306{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mfa_c01306{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01306{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);}
.m130_c01306{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m26_c01306{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.maa_c01306{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m81_c01306{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m190_c01306{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);}
.m1aa_c01306{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);}
.m160_c01306{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m82_c01306{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m14_c01306{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);}
.mc5_c01306{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01306{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m17_c01306{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m113_c01306{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m14b_c01306{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01306{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mb0_c01306{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);}
.m11_c01306{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);}
.m197_c01306{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m33_c01306{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01306{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m9a_c01306{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);}
.m15c_c01306{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m69_c01306{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma2_c01306{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m99_c01306{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01306{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mf4_c01306{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.ma_c01306{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);}
.mec_c01306{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01306{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01306{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m68_c01306{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m19b_c01306{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m59_c01306{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);}
.m7b_c01306{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mdc_c01306{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m1_c01306{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m11d_c01306{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mc0_c01306{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);}
.m3b_c01306{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);}
.mcb_c01306{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m103_c01306{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.me_c01306{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m80_c01306{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mf7_c01306{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01306{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01306{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01306{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m177_c01306{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m196_c01306{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01306{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.mdf_c01306{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);}
.m2c_c01306{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m63_c01306{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m16f_c01306{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01306{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m17c_c01306{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m188_c01306{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.md9_c01306{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01306{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.me4_c01306{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.mf2_c01306{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01306{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.me7_c01306{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01306{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01306{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01306{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);}
.m163_c01306{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.mf9_c01306{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m64_c01306{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.md8_c01306{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m145_c01306{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m199_c01306{transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.882500,0.000000,0.000000,0.250000,0,0);}
.mda_c01306{transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.005000,0.000000,0.000000,0.250000,0,0);}
.mf5_c01306{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m16e_c01306{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.m167_c01306{transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);}
.m198_c01306{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m178_c01306{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m191_c01306{transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);}
.mdd_c01306{transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);}
.me0_c01306{transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01306{transform:matrix(1.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.357500,0.000000,0.000000,0.250000,0,0);}
.m84_c01306{transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);}
.m16d_c01306{transform:matrix(1.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.437500,0.000000,0.000000,0.250000,0,0);}
.m9e_c01306{transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);}
.m89_c01306{transform:matrix(1.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.512500,0.000000,0.000000,0.250000,0,0);}
.m61_c01306{transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);}
.m7e_c01306{transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);}
.m65_c01306{transform:matrix(1.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.682500,0.000000,0.000000,0.250000,0,0);}
.mf3_c01306{transform:matrix(1.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.757500,0.000000,0.000000,0.250000,0,0);}
.me1_c01306{transform:matrix(1.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.832500,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01306{transform:matrix(2.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.115000,0.000000,0.000000,0.250000,0,0);}
.mdb_c01306{transform:matrix(2.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.355000,0.000000,0.000000,0.250000,0,0);}
.m164_c01306{transform:matrix(3.745000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.745000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.745000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01306{transform:matrix(10.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(10.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(10.512500,0.000000,0.000000,0.250000,0,0);}
.v2_c01306{vertical-align:-13.800000px;}
.v3_c01306{vertical-align:-3.420000px;}
.v0_c01306{vertical-align:0.000000px;}
.v1_c01306{vertical-align:3.480000px;}
.ls2_c01306{letter-spacing:0.000000px;}
.ls1_c01306{letter-spacing:30.793152px;}
.ls0_c01306{letter-spacing:69.106740px;}
.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;}
}
.ws2_c01306{word-spacing:0.000000px;}
.ws0_c01306{word-spacing:3.336240px;}
.ws1_c01306{word-spacing:48.804246px;}
.fc0_c01306{color:transparent;}
.fs13_c01306{font-size:3.456000px;}
.fsf_c01306{font-size:6.000000px;}
.fs15_c01306{font-size:6.900000px;}
.fs16_c01306{font-size:10.380000px;}
.fs19_c01306{font-size:13.800000px;}
.fs17_c01306{font-size:17.280000px;}
.fs11_c01306{font-size:20.760000px;}
.fsa_c01306{font-size:24.180000px;}
.fs18_c01306{font-size:27.660000px;}
.fs14_c01306{font-size:31.080000px;}
.fs7_c01306{font-size:34.560000px;}
.fs1b_c01306{font-size:38.040000px;}
.fsd_c01306{font-size:41.460000px;}
.fs1c_c01306{font-size:44.940000px;}
.fs12_c01306{font-size:48.360000px;}
.fs6_c01306{font-size:51.840000px;}
.fse_c01306{font-size:55.320000px;}
.fs9_c01306{font-size:58.740000px;}
.fsb_c01306{font-size:62.220000px;}
.fs2_c01306{font-size:65.640000px;}
.fs10_c01306{font-size:69.120000px;}
.fsc_c01306{font-size:72.600000px;}
.fs0_c01306{font-size:76.020000px;}
.fs8_c01306{font-size:79.500000px;}
.fs5_c01306{font-size:82.920000px;}
.fs1a_c01306{font-size:86.400000px;}
.fs3_c01306{font-size:89.880000px;}
.fs1_c01306{font-size:93.300000px;}
.fs1d_c01306{font-size:96.780000px;}
.fs1e_c01306{font-size:100.200000px;}
.fs4_c01306{font-size:103.680000px;}
.fs20_c01306{font-size:117.480000px;}
.fs1f_c01306{font-size:141.720000px;}
.fs21_c01306{font-size:169.320000px;}
.fs22_c01306{font-size:172.800000px;}
.y0_c01306{bottom:0.000000px;}
.y1c4_c01306{bottom:182.310000px;}
.y1c2_c01306{bottom:184.035000px;}
.y1c3_c01306{bottom:184.890000px;}
.y1c7_c01306{bottom:187.485000px;}
.y1c1_c01306{bottom:189.210000px;}
.y1c5_c01306{bottom:190.080000px;}
.y1c9_c01306{bottom:194.400000px;}
.y1c6_c01306{bottom:196.125000px;}
.y1c8_c01306{bottom:200.445000px;}
.y1bd_c01306{bottom:204.765000px;}
.y1be_c01306{bottom:205.635000px;}
.y1bb_c01306{bottom:206.490000px;}
.y1ba_c01306{bottom:207.360000px;}
.y1bf_c01306{bottom:210.810000px;}
.y1bc_c01306{bottom:212.550000px;}
.y1c0_c01306{bottom:213.405000px;}
.y1b9_c01306{bottom:214.275000px;}
.y1b7_c01306{bottom:225.510000px;}
.y1b5_c01306{bottom:226.365000px;}
.y1b8_c01306{bottom:228.960000px;}
.y1b6_c01306{bottom:230.685000px;}
.y1b4_c01306{bottom:231.555000px;}
.y1b3_c01306{bottom:232.410000px;}
.y1b2_c01306{bottom:233.280000px;}
.y1cb_c01306{bottom:243.645000px;}
.y1af_c01306{bottom:246.240000px;}
.y1ab_c01306{bottom:247.110000px;}
.y1b1_c01306{bottom:248.835000px;}
.y1ae_c01306{bottom:251.430000px;}
.y1ac_c01306{bottom:252.285000px;}
.y1aa_c01306{bottom:253.155000px;}
.y1b0_c01306{bottom:255.750000px;}
.y1ad_c01306{bottom:262.650000px;}
.y1a6_c01306{bottom:265.245000px;}
.y1a8_c01306{bottom:266.115000px;}
.y1a3_c01306{bottom:267.840000px;}
.y1a4_c01306{bottom:270.435000px;}
.y1a5_c01306{bottom:271.290000px;}
.y1a9_c01306{bottom:273.885000px;}
.y1a7_c01306{bottom:275.610000px;}
.y19a_c01306{bottom:288.570000px;}
.y19b_c01306{bottom:289.440000px;}
.y19c_c01306{bottom:290.310000px;}
.y198_c01306{bottom:291.165000px;}
.y19d_c01306{bottom:292.035000px;}
.y19e_c01306{bottom:292.890000px;}
.y199_c01306{bottom:293.760000px;}
.y1a1_c01306{bottom:295.485000px;}
.y1a2_c01306{bottom:297.210000px;}
.y1a0_c01306{bottom:299.805000px;}
.y19f_c01306{bottom:304.125000px;}
.y192_c01306{bottom:308.445000px;}
.y197_c01306{bottom:309.315000px;}
.y193_c01306{bottom:310.170000px;}
.y194_c01306{bottom:312.765000px;}
.y191_c01306{bottom:313.635000px;}
.y196_c01306{bottom:314.490000px;}
.y190_c01306{bottom:316.230000px;}
.y195_c01306{bottom:322.275000px;}
.y18d_c01306{bottom:328.320000px;}
.y18c_c01306{bottom:329.190000px;}
.y18e_c01306{bottom:330.045000px;}
.y17c_c01306{bottom:333.510000px;}
.y18a_c01306{bottom:334.365000px;}
.y188_c01306{bottom:335.235000px;}
.y189_c01306{bottom:336.090000px;}
.y1ca_c01306{bottom:336.960000px;}
.y18b_c01306{bottom:338.685000px;}
.y18f_c01306{bottom:339.555000px;}
.y187_c01306{bottom:348.195000px;}
.y17b_c01306{bottom:349.050000px;}
.y185_c01306{bottom:349.920000px;}
.y186_c01306{bottom:350.790000px;}
.y181_c01306{bottom:352.515000px;}
.y17d_c01306{bottom:353.370000px;}
.y184_c01306{bottom:354.240000px;}
.y182_c01306{bottom:355.110000px;}
.y17f_c01306{bottom:355.965000px;}
.y17e_c01306{bottom:356.835000px;}
.y180_c01306{bottom:357.690000px;}
.y183_c01306{bottom:360.285000px;}
.y17a_c01306{bottom:371.520000px;}
.y179_c01306{bottom:372.390000px;}
.y174_c01306{bottom:374.970000px;}
.y178_c01306{bottom:375.840000px;}
.y177_c01306{bottom:377.565000px;}
.y176_c01306{bottom:382.755000px;}
.y175_c01306{bottom:385.350000px;}
.y16f_c01306{bottom:387.930000px;}
.y172_c01306{bottom:388.800000px;}
.y16e_c01306{bottom:390.525000px;}
.y170_c01306{bottom:391.395000px;}
.y168_c01306{bottom:392.250000px;}
.y165_c01306{bottom:393.990000px;}
.y171_c01306{bottom:396.570000px;}
.y173_c01306{bottom:400.890000px;}
.y16d_c01306{bottom:401.760000px;}
.y164_c01306{bottom:402.630000px;}
.y169_c01306{bottom:403.485000px;}
.y16a_c01306{bottom:404.355000px;}
.y16b_c01306{bottom:405.210000px;}
.y16c_c01306{bottom:406.080000px;}
.y167_c01306{bottom:407.805000px;}
.y166_c01306{bottom:409.530000px;}
.y161_c01306{bottom:412.125000px;}
.y162_c01306{bottom:412.995000px;}
.y160_c01306{bottom:416.445000px;}
.y15f_c01306{bottom:424.230000px;}
.y163_c01306{bottom:428.550000px;}
.y15d_c01306{bottom:431.130000px;}
.y15b_c01306{bottom:432.870000px;}
.y159_c01306{bottom:433.725000px;}
.y15c_c01306{bottom:434.595000px;}
.y15e_c01306{bottom:435.450000px;}
.y158_c01306{bottom:436.320000px;}
.y15a_c01306{bottom:437.190000px;}
.y156_c01306{bottom:440.640000px;}
.y157_c01306{bottom:443.235000px;}
.y152_c01306{bottom:451.875000px;}
.y155_c01306{bottom:452.730000px;}
.y153_c01306{bottom:464.835000px;}
.y154_c01306{bottom:465.690000px;}
.y14f_c01306{bottom:473.475000px;}
.y151_c01306{bottom:475.200000px;}
.y14c_c01306{bottom:476.925000px;}
.y14d_c01306{bottom:478.650000px;}
.y14e_c01306{bottom:479.520000px;}
.y150_c01306{bottom:483.840000px;}
.y147_c01306{bottom:493.350000px;}
.y14b_c01306{bottom:494.205000px;}
.y148_c01306{bottom:495.075000px;}
.y143_c01306{bottom:497.670000px;}
.y14a_c01306{bottom:498.525000px;}
.y149_c01306{bottom:501.990000px;}
.y141_c01306{bottom:514.950000px;}
.y140_c01306{bottom:515.805000px;}
.y13e_c01306{bottom:516.675000px;}
.y13f_c01306{bottom:518.400000px;}
.y144_c01306{bottom:519.270000px;}
.y13d_c01306{bottom:520.125000px;}
.y145_c01306{bottom:520.995000px;}
.y146_c01306{bottom:531.360000px;}
.y142_c01306{bottom:532.230000px;}
.y137_c01306{bottom:533.085000px;}
.y136_c01306{bottom:535.680000px;}
.y138_c01306{bottom:536.550000px;}
.y135_c01306{bottom:537.405000px;}
.y139_c01306{bottom:538.275000px;}
.y13c_c01306{bottom:539.130000px;}
.y13b_c01306{bottom:544.320000px;}
.y13a_c01306{bottom:545.190000px;}
.y133_c01306{bottom:552.090000px;}
.y130_c01306{bottom:553.830000px;}
.y134_c01306{bottom:555.555000px;}
.y131_c01306{bottom:556.410000px;}
.y132_c01306{bottom:559.005000px;}
.y129_c01306{bottom:575.430000px;}
.y12b_c01306{bottom:576.285000px;}
.y12a_c01306{bottom:577.155000px;}
.y12c_c01306{bottom:578.010000px;}
.y12d_c01306{bottom:578.880000px;}
.y12e_c01306{bottom:584.070000px;}
.y12f_c01306{bottom:590.115000px;}
.y125_c01306{bottom:595.290000px;}
.y126_c01306{bottom:596.160000px;}
.y127_c01306{bottom:597.030000px;}
.y128_c01306{bottom:602.205000px;}
.y124_c01306{bottom:610.845000px;}
.y121_c01306{bottom:614.310000px;}
.y11f_c01306{bottom:615.165000px;}
.y120_c01306{bottom:620.355000px;}
.y11e_c01306{bottom:622.080000px;}
.y122_c01306{bottom:628.995000px;}
.y11d_c01306{bottom:629.850000px;}
.y123_c01306{bottom:631.590000px;}
.y11c_c01306{bottom:634.170000px;}
.y11a_c01306{bottom:635.040000px;}
.y116_c01306{bottom:635.910000px;}
.y118_c01306{bottom:636.765000px;}
.y117_c01306{bottom:638.490000px;}
.y115_c01306{bottom:639.360000px;}
.y119_c01306{bottom:640.230000px;}
.y11b_c01306{bottom:641.085000px;}
.y110_c01306{bottom:655.770000px;}
.y10e_c01306{bottom:656.640000px;}
.y112_c01306{bottom:657.510000px;}
.y10f_c01306{bottom:658.365000px;}
.y113_c01306{bottom:659.235000px;}
.y114_c01306{bottom:660.090000px;}
.y10d_c01306{bottom:661.830000px;}
.y111_c01306{bottom:672.195000px;}
.y107_c01306{bottom:673.920000px;}
.y106_c01306{bottom:674.790000px;}
.y10a_c01306{bottom:675.645000px;}
.y105_c01306{bottom:676.515000px;}
.y10b_c01306{bottom:677.370000px;}
.y109_c01306{bottom:679.110000px;}
.y108_c01306{bottom:679.965000px;}
.y10c_c01306{bottom:681.690000px;}
.y103_c01306{bottom:694.650000px;}
.y101_c01306{bottom:695.520000px;}
.yff_c01306{bottom:697.245000px;}
.y100_c01306{bottom:698.115000px;}
.y102_c01306{bottom:698.970000px;}
.yfe_c01306{bottom:699.840000px;}
.y104_c01306{bottom:700.710000px;}
.yfd_c01306{bottom:701.565000px;}
.yf6_c01306{bottom:710.205000px;}
.yfb_c01306{bottom:714.525000px;}
.yf4_c01306{bottom:715.395000px;}
.yfa_c01306{bottom:716.250000px;}
.yf9_c01306{bottom:717.120000px;}
.yfc_c01306{bottom:717.990000px;}
.yf5_c01306{bottom:718.845000px;}
.yf8_c01306{bottom:720.570000px;}
.yf7_c01306{bottom:721.440000px;}
.yf2_c01306{bottom:729.210000px;}
.yf1_c01306{bottom:730.080000px;}
.yef_c01306{bottom:732.675000px;}
.yf0_c01306{bottom:736.125000px;}
.yf3_c01306{bottom:740.445000px;}
.yee_c01306{bottom:755.130000px;}
.yed_c01306{bottom:756.000000px;}
.yec_c01306{bottom:761.190000px;}
.ye6_c01306{bottom:775.875000px;}
.ye5_c01306{bottom:776.730000px;}
.yea_c01306{bottom:777.600000px;}
.yeb_c01306{bottom:778.470000px;}
.ye8_c01306{bottom:781.050000px;}
.ye7_c01306{bottom:781.920000px;}
.ye9_c01306{bottom:790.560000px;}
.ye4_c01306{bottom:797.475000px;}
.ye0_c01306{bottom:799.200000px;}
.ye2_c01306{bottom:800.070000px;}
.ye3_c01306{bottom:801.795000px;}
.ydf_c01306{bottom:802.650000px;}
.ye1_c01306{bottom:803.520000px;}
.yde_c01306{bottom:815.610000px;}
.ydd_c01306{bottom:817.350000px;}
.yd8_c01306{bottom:818.205000px;}
.yd9_c01306{bottom:819.075000px;}
.yda_c01306{bottom:821.670000px;}
.ydc_c01306{bottom:822.525000px;}
.ydb_c01306{bottom:823.395000px;}
.yd4_c01306{bottom:837.210000px;}
.yd2_c01306{bottom:838.080000px;}
.yd0_c01306{bottom:838.950000px;}
.yd1_c01306{bottom:839.805000px;}
.yd3_c01306{bottom:842.400000px;}
.yd6_c01306{bottom:843.270000px;}
.yd7_c01306{bottom:849.315000px;}
.yd5_c01306{bottom:853.635000px;}
.ycb_c01306{bottom:857.085000px;}
.ycc_c01306{bottom:857.955000px;}
.yca_c01306{bottom:858.810000px;}
.ycd_c01306{bottom:859.680000px;}
.yce_c01306{bottom:860.550000px;}
.ycf_c01306{bottom:861.405000px;}
.yc9_c01306{bottom:862.275000px;}
.yc2_c01306{bottom:863.130000px;}
.yc3_c01306{bottom:869.190000px;}
.yc1_c01306{bottom:870.045000px;}
.yc5_c01306{bottom:870.915000px;}
.yc8_c01306{bottom:871.770000px;}
.yc4_c01306{bottom:872.640000px;}
.yc7_c01306{bottom:874.365000px;}
.yc6_c01306{bottom:875.235000px;}
.ybe_c01306{bottom:877.830000px;}
.ybd_c01306{bottom:879.555000px;}
.ybc_c01306{bottom:880.410000px;}
.ybb_c01306{bottom:882.150000px;}
.ybf_c01306{bottom:883.875000px;}
.yc0_c01306{bottom:885.600000px;}
.yb9_c01306{bottom:898.560000px;}
.yb5_c01306{bottom:899.430000px;}
.yb7_c01306{bottom:900.285000px;}
.yb8_c01306{bottom:902.010000px;}
.yb6_c01306{bottom:902.880000px;}
.yba_c01306{bottom:903.750000px;}
.yb4_c01306{bottom:908.925000px;}
.yae_c01306{bottom:909.795000px;}
.yb3_c01306{bottom:910.650000px;}
.yb1_c01306{bottom:911.520000px;}
.yb0_c01306{bottom:912.390000px;}
.yb2_c01306{bottom:913.245000px;}
.yaf_c01306{bottom:914.115000px;}
.ya8_c01306{bottom:917.565000px;}
.yaa_c01306{bottom:919.290000px;}
.ya6_c01306{bottom:920.160000px;}
.ya7_c01306{bottom:922.755000px;}
.yac_c01306{bottom:923.610000px;}
.ya9_c01306{bottom:924.480000px;}
.yab_c01306{bottom:925.350000px;}
.yad_c01306{bottom:931.395000px;}
.ya2_c01306{bottom:938.310000px;}
.ya3_c01306{bottom:939.165000px;}
.ya4_c01306{bottom:943.485000px;}
.ya5_c01306{bottom:945.210000px;}
.y9d_c01306{bottom:958.170000px;}
.y9f_c01306{bottom:959.040000px;}
.y99_c01306{bottom:959.910000px;}
.y9c_c01306{bottom:960.765000px;}
.ya0_c01306{bottom:961.635000px;}
.y98_c01306{bottom:962.490000px;}
.y9b_c01306{bottom:963.360000px;}
.ya1_c01306{bottom:964.230000px;}
.y9a_c01306{bottom:965.085000px;}
.y9e_c01306{bottom:972.870000px;}
.y97_c01306{bottom:977.190000px;}
.y96_c01306{bottom:978.045000px;}
.y91_c01306{bottom:978.915000px;}
.y92_c01306{bottom:979.770000px;}
.y93_c01306{bottom:983.235000px;}
.y90_c01306{bottom:984.090000px;}
.y94_c01306{bottom:984.960000px;}
.y95_c01306{bottom:985.830000px;}
.y8d_c01306{bottom:993.600000px;}
.y84_c01306{bottom:994.470000px;}
.y89_c01306{bottom:995.325000px;}
.y86_c01306{bottom:996.195000px;}
.y8f_c01306{bottom:997.050000px;}
.y8b_c01306{bottom:997.920000px;}
.y87_c01306{bottom:998.790000px;}
.y88_c01306{bottom:1000.515000px;}
.y8c_c01306{bottom:1002.240000px;}
.y85_c01306{bottom:1004.835000px;}
.y8a_c01306{bottom:1005.690000px;}
.y8e_c01306{bottom:1015.200000px;}
.y7e_c01306{bottom:1020.390000px;}
.y7f_c01306{bottom:1021.245000px;}
.y82_c01306{bottom:1022.115000px;}
.y83_c01306{bottom:1022.970000px;}
.y80_c01306{bottom:1023.840000px;}
.y81_c01306{bottom:1024.710000px;}
.y7d_c01306{bottom:1025.565000px;}
.y7c_c01306{bottom:1039.395000px;}
.y78_c01306{bottom:1040.250000px;}
.y76_c01306{bottom:1043.715000px;}
.y77_c01306{bottom:1044.570000px;}
.y79_c01306{bottom:1045.440000px;}
.y7a_c01306{bottom:1046.310000px;}
.y7b_c01306{bottom:1047.165000px;}
.y6f_c01306{bottom:1060.125000px;}
.y70_c01306{bottom:1060.995000px;}
.y72_c01306{bottom:1063.590000px;}
.y71_c01306{bottom:1064.445000px;}
.y74_c01306{bottom:1065.315000px;}
.y75_c01306{bottom:1066.170000px;}
.y73_c01306{bottom:1071.360000px;}
.y69_c01306{bottom:1078.275000px;}
.y67_c01306{bottom:1079.130000px;}
.y66_c01306{bottom:1080.000000px;}
.y6b_c01306{bottom:1080.870000px;}
.y6a_c01306{bottom:1085.190000px;}
.y6d_c01306{bottom:1086.045000px;}
.y6c_c01306{bottom:1086.915000px;}
.y68_c01306{bottom:1087.770000px;}
.y6e_c01306{bottom:1088.640000px;}
.y65_c01306{bottom:1101.600000px;}
.y5e_c01306{bottom:1103.325000px;}
.y64_c01306{bottom:1104.195000px;}
.y5f_c01306{bottom:1105.050000px;}
.y60_c01306{bottom:1105.920000px;}
.y62_c01306{bottom:1106.790000px;}
.y63_c01306{bottom:1107.645000px;}
.y61_c01306{bottom:1110.240000px;}
.y5d_c01306{bottom:1112.835000px;}
.y5c_c01306{bottom:1113.690000px;}
.y5a_c01306{bottom:1115.430000px;}
.y59_c01306{bottom:1116.285000px;}
.y5b_c01306{bottom:1117.155000px;}
.y55_c01306{bottom:1120.605000px;}
.y54_c01306{bottom:1121.475000px;}
.y58_c01306{bottom:1123.200000px;}
.y53_c01306{bottom:1124.070000px;}
.y51_c01306{bottom:1124.925000px;}
.y57_c01306{bottom:1125.795000px;}
.y56_c01306{bottom:1126.650000px;}
.y52_c01306{bottom:1130.115000px;}
.y50_c01306{bottom:1139.610000px;}
.y4c_c01306{bottom:1142.205000px;}
.y4e_c01306{bottom:1143.075000px;}
.y4b_c01306{bottom:1143.930000px;}
.y4f_c01306{bottom:1147.395000px;}
.y43_c01306{bottom:1148.250000px;}
.y4d_c01306{bottom:1150.845000px;}
.y47_c01306{bottom:1153.440000px;}
.y49_c01306{bottom:1154.310000px;}
.y46_c01306{bottom:1155.165000px;}
.y41_c01306{bottom:1156.035000px;}
.y48_c01306{bottom:1156.890000px;}
.y40_c01306{bottom:1157.760000px;}
.y44_c01306{bottom:1158.630000px;}
.y42_c01306{bottom:1159.485000px;}
.y45_c01306{bottom:1160.355000px;}
.y4a_c01306{bottom:1161.210000px;}
.y39_c01306{bottom:1162.080000px;}
.y3d_c01306{bottom:1162.950000px;}
.y3b_c01306{bottom:1163.805000px;}
.y3f_c01306{bottom:1165.530000px;}
.y3e_c01306{bottom:1167.270000px;}
.y3a_c01306{bottom:1168.125000px;}
.y3c_c01306{bottom:1168.995000px;}
.y32_c01306{bottom:1181.085000px;}
.y35_c01306{bottom:1182.810000px;}
.y37_c01306{bottom:1183.680000px;}
.y34_c01306{bottom:1184.550000px;}
.y36_c01306{bottom:1186.275000px;}
.y33_c01306{bottom:1188.000000px;}
.y38_c01306{bottom:1193.190000px;}
.y2d_c01306{bottom:1201.830000px;}
.y31_c01306{bottom:1202.685000px;}
.y2c_c01306{bottom:1203.555000px;}
.y2e_c01306{bottom:1204.410000px;}
.y2f_c01306{bottom:1205.280000px;}
.y30_c01306{bottom:1208.730000px;}
.y26_c01306{bottom:1223.430000px;}
.y29_c01306{bottom:1225.155000px;}
.y25_c01306{bottom:1226.010000px;}
.y27_c01306{bottom:1226.880000px;}
.y28_c01306{bottom:1227.750000px;}
.y2b_c01306{bottom:1228.605000px;}
.y2a_c01306{bottom:1229.475000px;}
.y24_c01306{bottom:1242.435000px;}
.y21_c01306{bottom:1243.290000px;}
.y23_c01306{bottom:1245.030000px;}
.y1f_c01306{bottom:1245.885000px;}
.y22_c01306{bottom:1247.610000px;}
.y20_c01306{bottom:1248.480000px;}
.y1e_c01306{bottom:1264.890000px;}
.y1d_c01306{bottom:1266.630000px;}
.y1b_c01306{bottom:1269.210000px;}
.y1c_c01306{bottom:1270.080000px;}
.y14_c01306{bottom:1283.910000px;}
.y15_c01306{bottom:1284.765000px;}
.y19_c01306{bottom:1285.635000px;}
.y18_c01306{bottom:1287.360000px;}
.y16_c01306{bottom:1288.230000px;}
.y17_c01306{bottom:1289.085000px;}
.y1a_c01306{bottom:1290.810000px;}
.yd_c01306{bottom:1303.770000px;}
.y10_c01306{bottom:1304.640000px;}
.y12_c01306{bottom:1307.235000px;}
.y13_c01306{bottom:1308.090000px;}
.ye_c01306{bottom:1308.960000px;}
.yc_c01306{bottom:1309.830000px;}
.y11_c01306{bottom:1310.685000px;}
.yf_c01306{bottom:1323.645000px;}
.y7_c01306{bottom:1324.515000px;}
.y6_c01306{bottom:1325.370000px;}
.yb_c01306{bottom:1326.240000px;}
.ya_c01306{bottom:1327.110000px;}
.y9_c01306{bottom:1327.965000px;}
.y8_c01306{bottom:1329.690000px;}
.y5_c01306{bottom:1330.560000px;}
.y2_c01306{bottom:1351.290000px;}
.y1_c01306{bottom:1352.160000px;}
.y4_c01306{bottom:1353.885000px;}
.y3_c01306{bottom:1357.350000px;}
.h15_c01306{height:3.110063px;}
.h11_c01306{height:5.399414px;}
.h17_c01306{height:6.209326px;}
.h18_c01306{height:9.340986px;}
.h1b_c01306{height:12.418652px;}
.h19_c01306{height:15.550313px;}
.h13_c01306{height:18.681973px;}
.hc_c01306{height:21.759639px;}
.h1a_c01306{height:24.891299px;}
.h16_c01306{height:27.968965px;}
.h9_c01306{height:31.100625px;}
.h1d_c01306{height:34.232285px;}
.hf_c01306{height:37.309951px;}
.h1e_c01306{height:40.441611px;}
.h14_c01306{height:43.519277px;}
.h8_c01306{height:46.650937px;}
.h10_c01306{height:49.782598px;}
.hb_c01306{height:52.860264px;}
.hd_c01306{height:55.991924px;}
.h4_c01306{height:59.069590px;}
.h12_c01306{height:62.201250px;}
.he_c01306{height:65.332910px;}
.h2_c01306{height:68.410576px;}
.ha_c01306{height:71.542236px;}
.h7_c01306{height:74.619902px;}
.h1c_c01306{height:77.751563px;}
.h5_c01306{height:80.883223px;}
.h3_c01306{height:83.960889px;}
.h1f_c01306{height:87.092549px;}
.h20_c01306{height:90.170215px;}
.h6_c01306{height:93.301875px;}
.h22_c01306{height:105.720527px;}
.h21_c01306{height:127.534160px;}
.h23_c01306{height:152.371465px;}
.h24_c01306{height:155.503125px;}
.h1_c01306{height:1513.500000px;}
.h0_c01306{height:1513.725000px;}
.w1_c01306{width:1076.250000px;}
.w0_c01306{width:1076.550000px;}
.x0_c01306{left:0.000000px;}
.x6c_c01306{left:164.160000px;}
.xe7_c01306{left:166.755000px;}
.x116_c01306{left:170.205000px;}
.x10f_c01306{left:172.800000px;}
.x6d_c01306{left:174.525000px;}
.xe8_c01306{left:176.250000px;}
.x55_c01306{left:190.950000px;}
.x4d_c01306{left:192.675000px;}
.x5e_c01306{left:194.400000px;}
.x67_c01306{left:198.720000px;}
.xf2_c01306{left:208.230525px;}
.x3a_c01306{left:211.680000px;}
.x46_c01306{left:213.405000px;}
.x30_c01306{left:217.725000px;}
.x15_c01306{left:219.450000px;}
.x1_c01306{left:222.915000px;}
.xf7_c01306{left:224.640000px;}
.xe9_c01306{left:228.090000px;}
.x7_c01306{left:230.685000px;}
.x74_c01306{left:233.280000px;}
.x96_c01306{left:235.005000px;}
.xf8_c01306{left:236.730000px;}
.x89_c01306{left:238.470000px;}
.x5f_c01306{left:241.050000px;}
.x16_c01306{left:242.790000px;}
.xfc_c01306{left:244.515000px;}
.xcf_c01306{left:246.240000px;}
.x4e_c01306{left:248.835000px;}
.xfa_c01306{left:251.430000px;}
.xe4_c01306{left:253.155000px;}
.xae_c01306{left:254.880000px;}
.x114_c01306{left:257.475000px;}
.x31_c01306{left:259.200000px;}
.x7f_c01306{left:262.650000px;}
.xc9_c01306{left:266.115000px;}
.x26_c01306{left:267.840000px;}
.x8_c01306{left:269.565000px;}
.xfe_c01306{left:271.290000px;}
.x3b_c01306{left:273.030000px;}
.x60_c01306{left:275.610000px;}
.x32_c01306{left:278.205000px;}
.x11c_c01306{left:281.670000px;}
.x110_c01306{left:283.395000px;}
.x75_c01306{left:285.120000px;}
.xf4_c01306{left:288.570000px;}
.xa3_c01306{left:290.310000px;}
.xff_c01306{left:292.035000px;}
.x9b_c01306{left:293.760000px;}
.xb4_c01306{left:297.210000px;}
.x97_c01306{left:298.950000px;}
.xaf_c01306{left:301.530000px;}
.xe2_c01306{left:303.270000px;}
.x115_c01306{left:304.995000px;}
.xd0_c01306{left:306.720000px;}
.xf1_c01306{left:308.445000px;}
.x80_c01306{left:311.040000px;}
.x111_c01306{left:312.765000px;}
.xba_c01306{left:314.490000px;}
.x76_c01306{left:316.230000px;}
.x8a_c01306{left:318.810000px;}
.x4f_c01306{left:320.550000px;}
.x6e_c01306{left:322.275000px;}
.xd1_c01306{left:324.000000px;}
.x17_c01306{left:326.595000px;}
.x9_c01306{left:328.320000px;}
.x33_c01306{left:332.640000px;}
.xcc_c01306{left:334.365000px;}
.xdb_c01306{left:336.090000px;}
.x68_c01306{left:337.830000px;}
.xca_c01306{left:339.555000px;}
.x27_c01306{left:341.280000px;}
.x11d_c01306{left:343.005000px;}
.x21_c01306{left:344.730000px;}
.x3c_c01306{left:347.325000px;}
.x56_c01306{left:349.050000px;}
.x9c_c01306{left:352.515000px;}
.xc6_c01306{left:355.110000px;}
.x3d_c01306{left:357.690000px;}
.xb0_c01306{left:360.285000px;}
.xdc_c01306{left:364.605000px;}
.x81_c01306{left:367.200000px;}
.xf9_c01306{left:368.925000px;}
.x77_c01306{left:373.245000px;}
.x9d_c01306{left:375.840000px;}
.x8b_c01306{left:377.565000px;}
.x28_c01306{left:381.030000px;}
.x50_c01306{left:385.350000px;}
.xa4_c01306{left:387.075000px;}
.x82_c01306{left:388.800000px;}
.x34_c01306{left:392.250000px;}
.x78_c01306{left:394.845000px;}
.x92_c01306{left:396.570000px;}
.xd2_c01306{left:398.310000px;}
.x29_c01306{left:401.760000px;}
.x18_c01306{left:404.355000px;}
.xb1_c01306{left:406.080000px;}
.x35_c01306{left:408.675000px;}
.x57_c01306{left:411.270000px;}
.x51_c01306{left:413.850000px;}
.x98_c01306{left:415.590000px;}
.xe0_c01306{left:417.315000px;}
.x108_c01306{left:419.910000px;}
.x69_c01306{left:421.635000px;}
.x19_c01306{left:425.085000px;}
.xbb_c01306{left:426.810000px;}
.x2_c01306{left:429.405000px;}
.x6a_c01306{left:431.130000px;}
.xa_c01306{left:433.725000px;}
.xc7_c01306{left:436.320000px;}
.x6b_c01306{left:441.510000px;}
.x9e_c01306{left:445.830000px;}
.x83_c01306{left:447.555000px;}
.xb2_c01306{left:449.280000px;}
.xf5_c01306{left:451.875000px;}
.x58_c01306{left:453.600000px;}
.x84_c01306{left:456.195000px;}
.xb_c01306{left:457.920000px;}
.xa5_c01306{left:460.515000px;}
.x36_c01306{left:467.430000px;}
.xdd_c01306{left:469.155000px;}
.xbe_c01306{left:470.880000px;}
.x22_c01306{left:474.330000px;}
.x9f_c01306{left:476.070000px;}
.x47_c01306{left:480.390000px;}
.xc_c01306{left:483.840000px;}
.x99_c01306{left:486.435000px;}
.x79_c01306{left:489.030000px;}
.xea_c01306{left:490.755000px;}
.xc3_c01306{left:493.350000px;}
.xb5_c01306{left:495.075000px;}
.x6f_c01306{left:496.800000px;}
.x1a_c01306{left:501.120000px;}
.x85_c01306{left:504.570000px;}
.x3e_c01306{left:508.890000px;}
.xa0_c01306{left:512.355000px;}
.x100_c01306{left:514.950000px;}
.xf6_c01306{left:520.125000px;}
.x93_c01306{left:522.720000px;}
.x3_c01306{left:525.315000px;}
.x104_c01306{left:527.910000px;}
.xeb_c01306{left:529.635000px;}
.xd_c01306{left:532.230000px;}
.x1b_c01306{left:533.955000px;}
.x109_c01306{left:535.680000px;}
.x7a_c01306{left:539.130000px;}
.x52_c01306{left:540.870000px;}
.xd3_c01306{left:543.450000px;}
.x3f_c01306{left:546.045000px;}
.x4_c01306{left:547.770000px;}
.xe1_c01306{left:549.510000px;}
.xe_c01306{left:551.235000px;}
.x8c_c01306{left:552.960000px;}
.xc8_c01306{left:554.685000px;}
.xec_c01306{left:556.410000px;}
.xe5_c01306{left:558.150000px;}
.x61_c01306{left:560.730000px;}
.x113_c01306{left:563.325000px;}
.xa6_c01306{left:565.920000px;}
.xcb_c01306{left:569.370000px;}
.xa7_c01306{left:572.835525px;}
.x59_c01306{left:576.285000px;}
.x53_c01306{left:578.880000px;}
.xd4_c01306{left:581.475000px;}
.xd8_c01306{left:583.200000px;}
.x94_c01306{left:585.795000px;}
.x23_c01306{left:587.520000px;}
.x5a_c01306{left:593.565000px;}
.x40_c01306{left:596.160000px;}
.x8d_c01306{left:597.885000px;}
.xa8_c01306{left:600.480000px;}
.x86_c01306{left:603.075000px;}
.x1c_c01306{left:604.800000px;}
.xde_c01306{left:606.525000px;}
.x10c_c01306{left:609.990000px;}
.x5b_c01306{left:612.570000px;}
.x10a_c01306{left:614.310000px;}
.xd5_c01306{left:616.035000px;}
.xa1_c01306{left:618.630000px;}
.xbf_c01306{left:621.210000px;}
.x1d_c01306{left:622.950000px;}
.x2a_c01306{left:624.675000px;}
.x101_c01306{left:627.270000px;}
.x5c_c01306{left:630.720000px;}
.x37_c01306{left:634.170000px;}
.x8e_c01306{left:636.765000px;}
.xc4_c01306{left:639.360000px;}
.x70_c01306{left:641.955000px;}
.xf_c01306{left:643.680000px;}
.x8f_c01306{left:647.130000px;}
.xe3_c01306{left:649.725000px;}
.x10_c01306{left:651.450000px;}
.x112_c01306{left:653.190000px;}
.x7b_c01306{left:656.640000px;}
.x5_c01306{left:660.090000px;}
.xe6_c01306{left:663.555000px;}
.x71_c01306{left:665.280000px;}
.x2b_c01306{left:667.005000px;}
.x48_c01306{left:668.730000px;}
.x62_c01306{left:671.325000px;}
.x41_c01306{left:673.050000px;}
.xd9_c01306{left:674.790000px;}
.xbc_c01306{left:679.965000px;}
.x63_c01306{left:681.690000px;}
.x24_c01306{left:685.155000px;}
.xcd_c01306{left:686.880000px;}
.xed_c01306{left:688.605000px;}
.x42_c01306{left:690.330000px;}
.x7c_c01306{left:692.925000px;}
.xef_c01306{left:694.650000px;}
.x1e_c01306{left:696.390000px;}
.x102_c01306{left:698.115000px;}
.xb6_c01306{left:700.710000px;}
.x11_c01306{left:702.435000px;}
.x95_c01306{left:705.030000px;}
.x119_c01306{left:707.610000px;}
.x49_c01306{left:709.350000px;}
.xd6_c01306{left:711.075000px;}
.xa9_c01306{left:712.800000px;}
.xc0_c01306{left:714.525000px;}
.xda_c01306{left:717.120000px;}
.x90_c01306{left:719.715000px;}
.x6_c01306{left:721.440000px;}
.x38_c01306{left:723.165000px;}
.x117_c01306{left:724.890000px;}
.x1f_c01306{left:726.630000px;}
.x2c_c01306{left:730.080000px;}
.x10d_c01306{left:731.805000px;}
.xc1_c01306{left:735.270000px;}
.x2d_c01306{left:736.995000px;}
.x7d_c01306{left:738.720000px;}
.x25_c01306{left:740.445000px;}
.x43_c01306{left:743.040000px;}
.x72_c01306{left:746.490000px;}
.x64_c01306{left:749.085000px;}
.xa2_c01306{left:751.680000px;}
.x12_c01306{left:755.130000px;}
.xb7_c01306{left:757.725000px;}
.xce_c01306{left:759.450000px;}
.x4a_c01306{left:762.045000px;}
.x54_c01306{left:764.640000px;}
.xfb_c01306{left:766.365000px;}
.x87_c01306{left:768.960000px;}
.x10b_c01306{left:770.685000px;}
.x39_c01306{left:773.280000px;}
.x2e_c01306{left:775.875000px;}
.xf0_c01306{left:777.600000px;}
.x88_c01306{left:779.325000px;}
.xaa_c01306{left:781.050000px;}
.x5d_c01306{left:782.790000px;}
.xbd_c01306{left:787.965000px;}
.x13_c01306{left:790.560000px;}
.x2f_c01306{left:793.155000px;}
.xab_c01306{left:794.880000px;}
.x10e_c01306{left:796.605000px;}
.xee_c01306{left:799.200000px;}
.xb3_c01306{left:800.925000px;}
.x91_c01306{left:803.520000px;}
.xb8_c01306{left:807.840000px;}
.x7e_c01306{left:811.290000px;}
.x73_c01306{left:813.885000px;}
.xc5_c01306{left:817.350000px;}
.xc2_c01306{left:819.075000px;}
.x4b_c01306{left:820.800000px;}
.x14_c01306{left:822.525000px;}
.x118_c01306{left:824.250000px;}
.x20_c01306{left:827.715000px;}
.xdf_c01306{left:829.440000px;}
.x106_c01306{left:833.760000px;}
.x44_c01306{left:835.485000px;}
.x65_c01306{left:838.080000px;}
.x105_c01306{left:839.805000px;}
.xf3_c01306{left:841.530000px;}
.xac_c01306{left:844.995000px;}
.x107_c01306{left:846.720000px;}
.x45_c01306{left:851.910000px;}
.x9a_c01306{left:854.490000px;}
.x11a_c01306{left:856.230000px;}
.x103_c01306{left:860.550000px;}
.xd7_c01306{left:862.275000px;}
.xad_c01306{left:864.000000px;}
.xfd_c01306{left:866.595000px;}
.x11b_c01306{left:868.320000px;}
.x4c_c01306{left:871.770000px;}
.xb9_c01306{left:873.510000px;}
.x66_c01306{left:876.090000px;}
.x11e_c01306{left:892.515000px;}
.x11f_c01306{left:902.880000px;}
.x123_c01306{left:968.550000px;}
.x120_c01306{left:971.130000px;}
.x121_c01306{left:984.090000px;}
.x122_c01306{left:1048.890000px;}
@media print{
.v2_c01306{vertical-align:-12.266667pt;}
.v3_c01306{vertical-align:-3.040000pt;}
.v0_c01306{vertical-align:0.000000pt;}
.v1_c01306{vertical-align:3.093333pt;}
.ls2_c01306{letter-spacing:0.000000pt;}
.ls1_c01306{letter-spacing:27.371691pt;}
.ls0_c01306{letter-spacing:61.428213pt;}
.ws2_c01306{word-spacing:0.000000pt;}
.ws0_c01306{word-spacing:2.965547pt;}
.ws1_c01306{word-spacing:43.381552pt;}
.fs13_c01306{font-size:3.072000pt;}
.fsf_c01306{font-size:5.333333pt;}
.fs15_c01306{font-size:6.133333pt;}
.fs16_c01306{font-size:9.226667pt;}
.fs19_c01306{font-size:12.266667pt;}
.fs17_c01306{font-size:15.360000pt;}
.fs11_c01306{font-size:18.453333pt;}
.fsa_c01306{font-size:21.493333pt;}
.fs18_c01306{font-size:24.586667pt;}
.fs14_c01306{font-size:27.626667pt;}
.fs7_c01306{font-size:30.720000pt;}
.fs1b_c01306{font-size:33.813333pt;}
.fsd_c01306{font-size:36.853333pt;}
.fs1c_c01306{font-size:39.946667pt;}
.fs12_c01306{font-size:42.986667pt;}
.fs6_c01306{font-size:46.080000pt;}
.fse_c01306{font-size:49.173333pt;}
.fs9_c01306{font-size:52.213333pt;}
.fsb_c01306{font-size:55.306667pt;}
.fs2_c01306{font-size:58.346667pt;}
.fs10_c01306{font-size:61.440000pt;}
.fsc_c01306{font-size:64.533333pt;}
.fs0_c01306{font-size:67.573333pt;}
.fs8_c01306{font-size:70.666667pt;}
.fs5_c01306{font-size:73.706667pt;}
.fs1a_c01306{font-size:76.800000pt;}
.fs3_c01306{font-size:79.893333pt;}
.fs1_c01306{font-size:82.933333pt;}
.fs1d_c01306{font-size:86.026667pt;}
.fs1e_c01306{font-size:89.066667pt;}
.fs4_c01306{font-size:92.160000pt;}
.fs20_c01306{font-size:104.426667pt;}
.fs1f_c01306{font-size:125.973333pt;}
.fs21_c01306{font-size:150.506667pt;}
.fs22_c01306{font-size:153.600000pt;}
.y0_c01306{bottom:0.000000pt;}
.y1c4_c01306{bottom:162.053333pt;}
.y1c2_c01306{bottom:163.586667pt;}
.y1c3_c01306{bottom:164.346667pt;}
.y1c7_c01306{bottom:166.653333pt;}
.y1c1_c01306{bottom:168.186667pt;}
.y1c5_c01306{bottom:168.960000pt;}
.y1c9_c01306{bottom:172.800000pt;}
.y1c6_c01306{bottom:174.333333pt;}
.y1c8_c01306{bottom:178.173333pt;}
.y1bd_c01306{bottom:182.013333pt;}
.y1be_c01306{bottom:182.786667pt;}
.y1bb_c01306{bottom:183.546667pt;}
.y1ba_c01306{bottom:184.320000pt;}
.y1bf_c01306{bottom:187.386667pt;}
.y1bc_c01306{bottom:188.933333pt;}
.y1c0_c01306{bottom:189.693333pt;}
.y1b9_c01306{bottom:190.466667pt;}
.y1b7_c01306{bottom:200.453333pt;}
.y1b5_c01306{bottom:201.213333pt;}
.y1b8_c01306{bottom:203.520000pt;}
.y1b6_c01306{bottom:205.053333pt;}
.y1b4_c01306{bottom:205.826667pt;}
.y1b3_c01306{bottom:206.586667pt;}
.y1b2_c01306{bottom:207.360000pt;}
.y1cb_c01306{bottom:216.573333pt;}
.y1af_c01306{bottom:218.880000pt;}
.y1ab_c01306{bottom:219.653333pt;}
.y1b1_c01306{bottom:221.186667pt;}
.y1ae_c01306{bottom:223.493333pt;}
.y1ac_c01306{bottom:224.253333pt;}
.y1aa_c01306{bottom:225.026667pt;}
.y1b0_c01306{bottom:227.333333pt;}
.y1ad_c01306{bottom:233.466667pt;}
.y1a6_c01306{bottom:235.773333pt;}
.y1a8_c01306{bottom:236.546667pt;}
.y1a3_c01306{bottom:238.080000pt;}
.y1a4_c01306{bottom:240.386667pt;}
.y1a5_c01306{bottom:241.146667pt;}
.y1a9_c01306{bottom:243.453333pt;}
.y1a7_c01306{bottom:244.986667pt;}
.y19a_c01306{bottom:256.506667pt;}
.y19b_c01306{bottom:257.280000pt;}
.y19c_c01306{bottom:258.053333pt;}
.y198_c01306{bottom:258.813333pt;}
.y19d_c01306{bottom:259.586667pt;}
.y19e_c01306{bottom:260.346667pt;}
.y199_c01306{bottom:261.120000pt;}
.y1a1_c01306{bottom:262.653333pt;}
.y1a2_c01306{bottom:264.186667pt;}
.y1a0_c01306{bottom:266.493333pt;}
.y19f_c01306{bottom:270.333333pt;}
.y192_c01306{bottom:274.173333pt;}
.y197_c01306{bottom:274.946667pt;}
.y193_c01306{bottom:275.706667pt;}
.y194_c01306{bottom:278.013333pt;}
.y191_c01306{bottom:278.786667pt;}
.y196_c01306{bottom:279.546667pt;}
.y190_c01306{bottom:281.093333pt;}
.y195_c01306{bottom:286.466667pt;}
.y18d_c01306{bottom:291.840000pt;}
.y18c_c01306{bottom:292.613333pt;}
.y18e_c01306{bottom:293.373333pt;}
.y17c_c01306{bottom:296.453333pt;}
.y18a_c01306{bottom:297.213333pt;}
.y188_c01306{bottom:297.986667pt;}
.y189_c01306{bottom:298.746667pt;}
.y1ca_c01306{bottom:299.520000pt;}
.y18b_c01306{bottom:301.053333pt;}
.y18f_c01306{bottom:301.826667pt;}
.y187_c01306{bottom:309.506667pt;}
.y17b_c01306{bottom:310.266667pt;}
.y185_c01306{bottom:311.040000pt;}
.y186_c01306{bottom:311.813333pt;}
.y181_c01306{bottom:313.346667pt;}
.y17d_c01306{bottom:314.106667pt;}
.y184_c01306{bottom:314.880000pt;}
.y182_c01306{bottom:315.653333pt;}
.y17f_c01306{bottom:316.413333pt;}
.y17e_c01306{bottom:317.186667pt;}
.y180_c01306{bottom:317.946667pt;}
.y183_c01306{bottom:320.253333pt;}
.y17a_c01306{bottom:330.240000pt;}
.y179_c01306{bottom:331.013333pt;}
.y174_c01306{bottom:333.306667pt;}
.y178_c01306{bottom:334.080000pt;}
.y177_c01306{bottom:335.613333pt;}
.y176_c01306{bottom:340.226667pt;}
.y175_c01306{bottom:342.533333pt;}
.y16f_c01306{bottom:344.826667pt;}
.y172_c01306{bottom:345.600000pt;}
.y16e_c01306{bottom:347.133333pt;}
.y170_c01306{bottom:347.906667pt;}
.y168_c01306{bottom:348.666667pt;}
.y165_c01306{bottom:350.213333pt;}
.y171_c01306{bottom:352.506667pt;}
.y173_c01306{bottom:356.346667pt;}
.y16d_c01306{bottom:357.120000pt;}
.y164_c01306{bottom:357.893333pt;}
.y169_c01306{bottom:358.653333pt;}
.y16a_c01306{bottom:359.426667pt;}
.y16b_c01306{bottom:360.186667pt;}
.y16c_c01306{bottom:360.960000pt;}
.y167_c01306{bottom:362.493333pt;}
.y166_c01306{bottom:364.026667pt;}
.y161_c01306{bottom:366.333333pt;}
.y162_c01306{bottom:367.106667pt;}
.y160_c01306{bottom:370.173333pt;}
.y15f_c01306{bottom:377.093333pt;}
.y163_c01306{bottom:380.933333pt;}
.y15d_c01306{bottom:383.226667pt;}
.y15b_c01306{bottom:384.773333pt;}
.y159_c01306{bottom:385.533333pt;}
.y15c_c01306{bottom:386.306667pt;}
.y15e_c01306{bottom:387.066667pt;}
.y158_c01306{bottom:387.840000pt;}
.y15a_c01306{bottom:388.613333pt;}
.y156_c01306{bottom:391.680000pt;}
.y157_c01306{bottom:393.986667pt;}
.y152_c01306{bottom:401.666667pt;}
.y155_c01306{bottom:402.426667pt;}
.y153_c01306{bottom:413.186667pt;}
.y154_c01306{bottom:413.946667pt;}
.y14f_c01306{bottom:420.866667pt;}
.y151_c01306{bottom:422.400000pt;}
.y14c_c01306{bottom:423.933333pt;}
.y14d_c01306{bottom:425.466667pt;}
.y14e_c01306{bottom:426.240000pt;}
.y150_c01306{bottom:430.080000pt;}
.y147_c01306{bottom:438.533333pt;}
.y14b_c01306{bottom:439.293333pt;}
.y148_c01306{bottom:440.066667pt;}
.y143_c01306{bottom:442.373333pt;}
.y14a_c01306{bottom:443.133333pt;}
.y149_c01306{bottom:446.213333pt;}
.y141_c01306{bottom:457.733333pt;}
.y140_c01306{bottom:458.493333pt;}
.y13e_c01306{bottom:459.266667pt;}
.y13f_c01306{bottom:460.800000pt;}
.y144_c01306{bottom:461.573333pt;}
.y13d_c01306{bottom:462.333333pt;}
.y145_c01306{bottom:463.106667pt;}
.y146_c01306{bottom:472.320000pt;}
.y142_c01306{bottom:473.093333pt;}
.y137_c01306{bottom:473.853333pt;}
.y136_c01306{bottom:476.160000pt;}
.y138_c01306{bottom:476.933333pt;}
.y135_c01306{bottom:477.693333pt;}
.y139_c01306{bottom:478.466667pt;}
.y13c_c01306{bottom:479.226667pt;}
.y13b_c01306{bottom:483.840000pt;}
.y13a_c01306{bottom:484.613333pt;}
.y133_c01306{bottom:490.746667pt;}
.y130_c01306{bottom:492.293333pt;}
.y134_c01306{bottom:493.826667pt;}
.y131_c01306{bottom:494.586667pt;}
.y132_c01306{bottom:496.893333pt;}
.y129_c01306{bottom:511.493333pt;}
.y12b_c01306{bottom:512.253333pt;}
.y12a_c01306{bottom:513.026667pt;}
.y12c_c01306{bottom:513.786667pt;}
.y12d_c01306{bottom:514.560000pt;}
.y12e_c01306{bottom:519.173333pt;}
.y12f_c01306{bottom:524.546667pt;}
.y125_c01306{bottom:529.146667pt;}
.y126_c01306{bottom:529.920000pt;}
.y127_c01306{bottom:530.693333pt;}
.y128_c01306{bottom:535.293333pt;}
.y124_c01306{bottom:542.973333pt;}
.y121_c01306{bottom:546.053333pt;}
.y11f_c01306{bottom:546.813333pt;}
.y120_c01306{bottom:551.426667pt;}
.y11e_c01306{bottom:552.960000pt;}
.y122_c01306{bottom:559.106667pt;}
.y11d_c01306{bottom:559.866667pt;}
.y123_c01306{bottom:561.413333pt;}
.y11c_c01306{bottom:563.706667pt;}
.y11a_c01306{bottom:564.480000pt;}
.y116_c01306{bottom:565.253333pt;}
.y118_c01306{bottom:566.013333pt;}
.y117_c01306{bottom:567.546667pt;}
.y115_c01306{bottom:568.320000pt;}
.y119_c01306{bottom:569.093333pt;}
.y11b_c01306{bottom:569.853333pt;}
.y110_c01306{bottom:582.906667pt;}
.y10e_c01306{bottom:583.680000pt;}
.y112_c01306{bottom:584.453333pt;}
.y10f_c01306{bottom:585.213333pt;}
.y113_c01306{bottom:585.986667pt;}
.y114_c01306{bottom:586.746667pt;}
.y10d_c01306{bottom:588.293333pt;}
.y111_c01306{bottom:597.506667pt;}
.y107_c01306{bottom:599.040000pt;}
.y106_c01306{bottom:599.813333pt;}
.y10a_c01306{bottom:600.573333pt;}
.y105_c01306{bottom:601.346667pt;}
.y10b_c01306{bottom:602.106667pt;}
.y109_c01306{bottom:603.653333pt;}
.y108_c01306{bottom:604.413333pt;}
.y10c_c01306{bottom:605.946667pt;}
.y103_c01306{bottom:617.466667pt;}
.y101_c01306{bottom:618.240000pt;}
.yff_c01306{bottom:619.773333pt;}
.y100_c01306{bottom:620.546667pt;}
.y102_c01306{bottom:621.306667pt;}
.yfe_c01306{bottom:622.080000pt;}
.y104_c01306{bottom:622.853333pt;}
.yfd_c01306{bottom:623.613333pt;}
.yf6_c01306{bottom:631.293333pt;}
.yfb_c01306{bottom:635.133333pt;}
.yf4_c01306{bottom:635.906667pt;}
.yfa_c01306{bottom:636.666667pt;}
.yf9_c01306{bottom:637.440000pt;}
.yfc_c01306{bottom:638.213333pt;}
.yf5_c01306{bottom:638.973333pt;}
.yf8_c01306{bottom:640.506667pt;}
.yf7_c01306{bottom:641.280000pt;}
.yf2_c01306{bottom:648.186667pt;}
.yf1_c01306{bottom:648.960000pt;}
.yef_c01306{bottom:651.266667pt;}
.yf0_c01306{bottom:654.333333pt;}
.yf3_c01306{bottom:658.173333pt;}
.yee_c01306{bottom:671.226667pt;}
.yed_c01306{bottom:672.000000pt;}
.yec_c01306{bottom:676.613333pt;}
.ye6_c01306{bottom:689.666667pt;}
.ye5_c01306{bottom:690.426667pt;}
.yea_c01306{bottom:691.200000pt;}
.yeb_c01306{bottom:691.973333pt;}
.ye8_c01306{bottom:694.266667pt;}
.ye7_c01306{bottom:695.040000pt;}
.ye9_c01306{bottom:702.720000pt;}
.ye4_c01306{bottom:708.866667pt;}
.ye0_c01306{bottom:710.400000pt;}
.ye2_c01306{bottom:711.173333pt;}
.ye3_c01306{bottom:712.706667pt;}
.ydf_c01306{bottom:713.466667pt;}
.ye1_c01306{bottom:714.240000pt;}
.yde_c01306{bottom:724.986667pt;}
.ydd_c01306{bottom:726.533333pt;}
.yd8_c01306{bottom:727.293333pt;}
.yd9_c01306{bottom:728.066667pt;}
.yda_c01306{bottom:730.373333pt;}
.ydc_c01306{bottom:731.133333pt;}
.ydb_c01306{bottom:731.906667pt;}
.yd4_c01306{bottom:744.186667pt;}
.yd2_c01306{bottom:744.960000pt;}
.yd0_c01306{bottom:745.733333pt;}
.yd1_c01306{bottom:746.493333pt;}
.yd3_c01306{bottom:748.800000pt;}
.yd6_c01306{bottom:749.573333pt;}
.yd7_c01306{bottom:754.946667pt;}
.yd5_c01306{bottom:758.786667pt;}
.ycb_c01306{bottom:761.853333pt;}
.ycc_c01306{bottom:762.626667pt;}
.yca_c01306{bottom:763.386667pt;}
.ycd_c01306{bottom:764.160000pt;}
.yce_c01306{bottom:764.933333pt;}
.ycf_c01306{bottom:765.693333pt;}
.yc9_c01306{bottom:766.466667pt;}
.yc2_c01306{bottom:767.226667pt;}
.yc3_c01306{bottom:772.613333pt;}
.yc1_c01306{bottom:773.373333pt;}
.yc5_c01306{bottom:774.146667pt;}
.yc8_c01306{bottom:774.906667pt;}
.yc4_c01306{bottom:775.680000pt;}
.yc7_c01306{bottom:777.213333pt;}
.yc6_c01306{bottom:777.986667pt;}
.ybe_c01306{bottom:780.293333pt;}
.ybd_c01306{bottom:781.826667pt;}
.ybc_c01306{bottom:782.586667pt;}
.ybb_c01306{bottom:784.133333pt;}
.ybf_c01306{bottom:785.666667pt;}
.yc0_c01306{bottom:787.200000pt;}
.yb9_c01306{bottom:798.720000pt;}
.yb5_c01306{bottom:799.493333pt;}
.yb7_c01306{bottom:800.253333pt;}
.yb8_c01306{bottom:801.786667pt;}
.yb6_c01306{bottom:802.560000pt;}
.yba_c01306{bottom:803.333333pt;}
.yb4_c01306{bottom:807.933333pt;}
.yae_c01306{bottom:808.706667pt;}
.yb3_c01306{bottom:809.466667pt;}
.yb1_c01306{bottom:810.240000pt;}
.yb0_c01306{bottom:811.013333pt;}
.yb2_c01306{bottom:811.773333pt;}
.yaf_c01306{bottom:812.546667pt;}
.ya8_c01306{bottom:815.613333pt;}
.yaa_c01306{bottom:817.146667pt;}
.ya6_c01306{bottom:817.920000pt;}
.ya7_c01306{bottom:820.226667pt;}
.yac_c01306{bottom:820.986667pt;}
.ya9_c01306{bottom:821.760000pt;}
.yab_c01306{bottom:822.533333pt;}
.yad_c01306{bottom:827.906667pt;}
.ya2_c01306{bottom:834.053333pt;}
.ya3_c01306{bottom:834.813333pt;}
.ya4_c01306{bottom:838.653333pt;}
.ya5_c01306{bottom:840.186667pt;}
.y9d_c01306{bottom:851.706667pt;}
.y9f_c01306{bottom:852.480000pt;}
.y99_c01306{bottom:853.253333pt;}
.y9c_c01306{bottom:854.013333pt;}
.ya0_c01306{bottom:854.786667pt;}
.y98_c01306{bottom:855.546667pt;}
.y9b_c01306{bottom:856.320000pt;}
.ya1_c01306{bottom:857.093333pt;}
.y9a_c01306{bottom:857.853333pt;}
.y9e_c01306{bottom:864.773333pt;}
.y97_c01306{bottom:868.613333pt;}
.y96_c01306{bottom:869.373333pt;}
.y91_c01306{bottom:870.146667pt;}
.y92_c01306{bottom:870.906667pt;}
.y93_c01306{bottom:873.986667pt;}
.y90_c01306{bottom:874.746667pt;}
.y94_c01306{bottom:875.520000pt;}
.y95_c01306{bottom:876.293333pt;}
.y8d_c01306{bottom:883.200000pt;}
.y84_c01306{bottom:883.973333pt;}
.y89_c01306{bottom:884.733333pt;}
.y86_c01306{bottom:885.506667pt;}
.y8f_c01306{bottom:886.266667pt;}
.y8b_c01306{bottom:887.040000pt;}
.y87_c01306{bottom:887.813333pt;}
.y88_c01306{bottom:889.346667pt;}
.y8c_c01306{bottom:890.880000pt;}
.y85_c01306{bottom:893.186667pt;}
.y8a_c01306{bottom:893.946667pt;}
.y8e_c01306{bottom:902.400000pt;}
.y7e_c01306{bottom:907.013333pt;}
.y7f_c01306{bottom:907.773333pt;}
.y82_c01306{bottom:908.546667pt;}
.y83_c01306{bottom:909.306667pt;}
.y80_c01306{bottom:910.080000pt;}
.y81_c01306{bottom:910.853333pt;}
.y7d_c01306{bottom:911.613333pt;}
.y7c_c01306{bottom:923.906667pt;}
.y78_c01306{bottom:924.666667pt;}
.y76_c01306{bottom:927.746667pt;}
.y77_c01306{bottom:928.506667pt;}
.y79_c01306{bottom:929.280000pt;}
.y7a_c01306{bottom:930.053333pt;}
.y7b_c01306{bottom:930.813333pt;}
.y6f_c01306{bottom:942.333333pt;}
.y70_c01306{bottom:943.106667pt;}
.y72_c01306{bottom:945.413333pt;}
.y71_c01306{bottom:946.173333pt;}
.y74_c01306{bottom:946.946667pt;}
.y75_c01306{bottom:947.706667pt;}
.y73_c01306{bottom:952.320000pt;}
.y69_c01306{bottom:958.466667pt;}
.y67_c01306{bottom:959.226667pt;}
.y66_c01306{bottom:960.000000pt;}
.y6b_c01306{bottom:960.773333pt;}
.y6a_c01306{bottom:964.613333pt;}
.y6d_c01306{bottom:965.373333pt;}
.y6c_c01306{bottom:966.146667pt;}
.y68_c01306{bottom:966.906667pt;}
.y6e_c01306{bottom:967.680000pt;}
.y65_c01306{bottom:979.200000pt;}
.y5e_c01306{bottom:980.733333pt;}
.y64_c01306{bottom:981.506667pt;}
.y5f_c01306{bottom:982.266667pt;}
.y60_c01306{bottom:983.040000pt;}
.y62_c01306{bottom:983.813333pt;}
.y63_c01306{bottom:984.573333pt;}
.y61_c01306{bottom:986.880000pt;}
.y5d_c01306{bottom:989.186667pt;}
.y5c_c01306{bottom:989.946667pt;}
.y5a_c01306{bottom:991.493333pt;}
.y59_c01306{bottom:992.253333pt;}
.y5b_c01306{bottom:993.026667pt;}
.y55_c01306{bottom:996.093333pt;}
.y54_c01306{bottom:996.866667pt;}
.y58_c01306{bottom:998.400000pt;}
.y53_c01306{bottom:999.173333pt;}
.y51_c01306{bottom:999.933333pt;}
.y57_c01306{bottom:1000.706667pt;}
.y56_c01306{bottom:1001.466667pt;}
.y52_c01306{bottom:1004.546667pt;}
.y50_c01306{bottom:1012.986667pt;}
.y4c_c01306{bottom:1015.293333pt;}
.y4e_c01306{bottom:1016.066667pt;}
.y4b_c01306{bottom:1016.826667pt;}
.y4f_c01306{bottom:1019.906667pt;}
.y43_c01306{bottom:1020.666667pt;}
.y4d_c01306{bottom:1022.973333pt;}
.y47_c01306{bottom:1025.280000pt;}
.y49_c01306{bottom:1026.053333pt;}
.y46_c01306{bottom:1026.813333pt;}
.y41_c01306{bottom:1027.586667pt;}
.y48_c01306{bottom:1028.346667pt;}
.y40_c01306{bottom:1029.120000pt;}
.y44_c01306{bottom:1029.893333pt;}
.y42_c01306{bottom:1030.653333pt;}
.y45_c01306{bottom:1031.426667pt;}
.y4a_c01306{bottom:1032.186667pt;}
.y39_c01306{bottom:1032.960000pt;}
.y3d_c01306{bottom:1033.733333pt;}
.y3b_c01306{bottom:1034.493333pt;}
.y3f_c01306{bottom:1036.026667pt;}
.y3e_c01306{bottom:1037.573333pt;}
.y3a_c01306{bottom:1038.333333pt;}
.y3c_c01306{bottom:1039.106667pt;}
.y32_c01306{bottom:1049.853333pt;}
.y35_c01306{bottom:1051.386667pt;}
.y37_c01306{bottom:1052.160000pt;}
.y34_c01306{bottom:1052.933333pt;}
.y36_c01306{bottom:1054.466667pt;}
.y33_c01306{bottom:1056.000000pt;}
.y38_c01306{bottom:1060.613333pt;}
.y2d_c01306{bottom:1068.293333pt;}
.y31_c01306{bottom:1069.053333pt;}
.y2c_c01306{bottom:1069.826667pt;}
.y2e_c01306{bottom:1070.586667pt;}
.y2f_c01306{bottom:1071.360000pt;}
.y30_c01306{bottom:1074.426667pt;}
.y26_c01306{bottom:1087.493333pt;}
.y29_c01306{bottom:1089.026667pt;}
.y25_c01306{bottom:1089.786667pt;}
.y27_c01306{bottom:1090.560000pt;}
.y28_c01306{bottom:1091.333333pt;}
.y2b_c01306{bottom:1092.093333pt;}
.y2a_c01306{bottom:1092.866667pt;}
.y24_c01306{bottom:1104.386667pt;}
.y21_c01306{bottom:1105.146667pt;}
.y23_c01306{bottom:1106.693333pt;}
.y1f_c01306{bottom:1107.453333pt;}
.y22_c01306{bottom:1108.986667pt;}
.y20_c01306{bottom:1109.760000pt;}
.y1e_c01306{bottom:1124.346667pt;}
.y1d_c01306{bottom:1125.893333pt;}
.y1b_c01306{bottom:1128.186667pt;}
.y1c_c01306{bottom:1128.960000pt;}
.y14_c01306{bottom:1141.253333pt;}
.y15_c01306{bottom:1142.013333pt;}
.y19_c01306{bottom:1142.786667pt;}
.y18_c01306{bottom:1144.320000pt;}
.y16_c01306{bottom:1145.093333pt;}
.y17_c01306{bottom:1145.853333pt;}
.y1a_c01306{bottom:1147.386667pt;}
.yd_c01306{bottom:1158.906667pt;}
.y10_c01306{bottom:1159.680000pt;}
.y12_c01306{bottom:1161.986667pt;}
.y13_c01306{bottom:1162.746667pt;}
.ye_c01306{bottom:1163.520000pt;}
.yc_c01306{bottom:1164.293333pt;}
.y11_c01306{bottom:1165.053333pt;}
.yf_c01306{bottom:1176.573333pt;}
.y7_c01306{bottom:1177.346667pt;}
.y6_c01306{bottom:1178.106667pt;}
.yb_c01306{bottom:1178.880000pt;}
.ya_c01306{bottom:1179.653333pt;}
.y9_c01306{bottom:1180.413333pt;}
.y8_c01306{bottom:1181.946667pt;}
.y5_c01306{bottom:1182.720000pt;}
.y2_c01306{bottom:1201.146667pt;}
.y1_c01306{bottom:1201.920000pt;}
.y4_c01306{bottom:1203.453333pt;}
.y3_c01306{bottom:1206.533333pt;}
.h15_c01306{height:2.764500pt;}
.h11_c01306{height:4.799479pt;}
.h17_c01306{height:5.519401pt;}
.h18_c01306{height:8.303099pt;}
.h1b_c01306{height:11.038802pt;}
.h19_c01306{height:13.822500pt;}
.h13_c01306{height:16.606198pt;}
.hc_c01306{height:19.341901pt;}
.h1a_c01306{height:22.125599pt;}
.h16_c01306{height:24.861302pt;}
.h9_c01306{height:27.645000pt;}
.h1d_c01306{height:30.428698pt;}
.hf_c01306{height:33.164401pt;}
.h1e_c01306{height:35.948099pt;}
.h14_c01306{height:38.683802pt;}
.h8_c01306{height:41.467500pt;}
.h10_c01306{height:44.251198pt;}
.hb_c01306{height:46.986901pt;}
.hd_c01306{height:49.770599pt;}
.h4_c01306{height:52.506302pt;}
.h12_c01306{height:55.290000pt;}
.he_c01306{height:58.073698pt;}
.h2_c01306{height:60.809401pt;}
.ha_c01306{height:63.593099pt;}
.h7_c01306{height:66.328802pt;}
.h1c_c01306{height:69.112500pt;}
.h5_c01306{height:71.896198pt;}
.h3_c01306{height:74.631901pt;}
.h1f_c01306{height:77.415599pt;}
.h20_c01306{height:80.151302pt;}
.h6_c01306{height:82.935000pt;}
.h22_c01306{height:93.973802pt;}
.h21_c01306{height:113.363698pt;}
.h23_c01306{height:135.441302pt;}
.h24_c01306{height:138.225000pt;}
.h1_c01306{height:1345.333333pt;}
.h0_c01306{height:1345.533333pt;}
.w1_c01306{width:956.666667pt;}
.w0_c01306{width:956.933333pt;}
.x0_c01306{left:0.000000pt;}
.x6c_c01306{left:145.920000pt;}
.xe7_c01306{left:148.226667pt;}
.x116_c01306{left:151.293333pt;}
.x10f_c01306{left:153.600000pt;}
.x6d_c01306{left:155.133333pt;}
.xe8_c01306{left:156.666667pt;}
.x55_c01306{left:169.733333pt;}
.x4d_c01306{left:171.266667pt;}
.x5e_c01306{left:172.800000pt;}
.x67_c01306{left:176.640000pt;}
.xf2_c01306{left:185.093800pt;}
.x3a_c01306{left:188.160000pt;}
.x46_c01306{left:189.693333pt;}
.x30_c01306{left:193.533333pt;}
.x15_c01306{left:195.066667pt;}
.x1_c01306{left:198.146667pt;}
.xf7_c01306{left:199.680000pt;}
.xe9_c01306{left:202.746667pt;}
.x7_c01306{left:205.053333pt;}
.x74_c01306{left:207.360000pt;}
.x96_c01306{left:208.893333pt;}
.xf8_c01306{left:210.426667pt;}
.x89_c01306{left:211.973333pt;}
.x5f_c01306{left:214.266667pt;}
.x16_c01306{left:215.813333pt;}
.xfc_c01306{left:217.346667pt;}
.xcf_c01306{left:218.880000pt;}
.x4e_c01306{left:221.186667pt;}
.xfa_c01306{left:223.493333pt;}
.xe4_c01306{left:225.026667pt;}
.xae_c01306{left:226.560000pt;}
.x114_c01306{left:228.866667pt;}
.x31_c01306{left:230.400000pt;}
.x7f_c01306{left:233.466667pt;}
.xc9_c01306{left:236.546667pt;}
.x26_c01306{left:238.080000pt;}
.x8_c01306{left:239.613333pt;}
.xfe_c01306{left:241.146667pt;}
.x3b_c01306{left:242.693333pt;}
.x60_c01306{left:244.986667pt;}
.x32_c01306{left:247.293333pt;}
.x11c_c01306{left:250.373333pt;}
.x110_c01306{left:251.906667pt;}
.x75_c01306{left:253.440000pt;}
.xf4_c01306{left:256.506667pt;}
.xa3_c01306{left:258.053333pt;}
.xff_c01306{left:259.586667pt;}
.x9b_c01306{left:261.120000pt;}
.xb4_c01306{left:264.186667pt;}
.x97_c01306{left:265.733333pt;}
.xaf_c01306{left:268.026667pt;}
.xe2_c01306{left:269.573333pt;}
.x115_c01306{left:271.106667pt;}
.xd0_c01306{left:272.640000pt;}
.xf1_c01306{left:274.173333pt;}
.x80_c01306{left:276.480000pt;}
.x111_c01306{left:278.013333pt;}
.xba_c01306{left:279.546667pt;}
.x76_c01306{left:281.093333pt;}
.x8a_c01306{left:283.386667pt;}
.x4f_c01306{left:284.933333pt;}
.x6e_c01306{left:286.466667pt;}
.xd1_c01306{left:288.000000pt;}
.x17_c01306{left:290.306667pt;}
.x9_c01306{left:291.840000pt;}
.x33_c01306{left:295.680000pt;}
.xcc_c01306{left:297.213333pt;}
.xdb_c01306{left:298.746667pt;}
.x68_c01306{left:300.293333pt;}
.xca_c01306{left:301.826667pt;}
.x27_c01306{left:303.360000pt;}
.x11d_c01306{left:304.893333pt;}
.x21_c01306{left:306.426667pt;}
.x3c_c01306{left:308.733333pt;}
.x56_c01306{left:310.266667pt;}
.x9c_c01306{left:313.346667pt;}
.xc6_c01306{left:315.653333pt;}
.x3d_c01306{left:317.946667pt;}
.xb0_c01306{left:320.253333pt;}
.xdc_c01306{left:324.093333pt;}
.x81_c01306{left:326.400000pt;}
.xf9_c01306{left:327.933333pt;}
.x77_c01306{left:331.773333pt;}
.x9d_c01306{left:334.080000pt;}
.x8b_c01306{left:335.613333pt;}
.x28_c01306{left:338.693333pt;}
.x50_c01306{left:342.533333pt;}
.xa4_c01306{left:344.066667pt;}
.x82_c01306{left:345.600000pt;}
.x34_c01306{left:348.666667pt;}
.x78_c01306{left:350.973333pt;}
.x92_c01306{left:352.506667pt;}
.xd2_c01306{left:354.053333pt;}
.x29_c01306{left:357.120000pt;}
.x18_c01306{left:359.426667pt;}
.xb1_c01306{left:360.960000pt;}
.x35_c01306{left:363.266667pt;}
.x57_c01306{left:365.573333pt;}
.x51_c01306{left:367.866667pt;}
.x98_c01306{left:369.413333pt;}
.xe0_c01306{left:370.946667pt;}
.x108_c01306{left:373.253333pt;}
.x69_c01306{left:374.786667pt;}
.x19_c01306{left:377.853333pt;}
.xbb_c01306{left:379.386667pt;}
.x2_c01306{left:381.693333pt;}
.x6a_c01306{left:383.226667pt;}
.xa_c01306{left:385.533333pt;}
.xc7_c01306{left:387.840000pt;}
.x6b_c01306{left:392.453333pt;}
.x9e_c01306{left:396.293333pt;}
.x83_c01306{left:397.826667pt;}
.xb2_c01306{left:399.360000pt;}
.xf5_c01306{left:401.666667pt;}
.x58_c01306{left:403.200000pt;}
.x84_c01306{left:405.506667pt;}
.xb_c01306{left:407.040000pt;}
.xa5_c01306{left:409.346667pt;}
.x36_c01306{left:415.493333pt;}
.xdd_c01306{left:417.026667pt;}
.xbe_c01306{left:418.560000pt;}
.x22_c01306{left:421.626667pt;}
.x9f_c01306{left:423.173333pt;}
.x47_c01306{left:427.013333pt;}
.xc_c01306{left:430.080000pt;}
.x99_c01306{left:432.386667pt;}
.x79_c01306{left:434.693333pt;}
.xea_c01306{left:436.226667pt;}
.xc3_c01306{left:438.533333pt;}
.xb5_c01306{left:440.066667pt;}
.x6f_c01306{left:441.600000pt;}
.x1a_c01306{left:445.440000pt;}
.x85_c01306{left:448.506667pt;}
.x3e_c01306{left:452.346667pt;}
.xa0_c01306{left:455.426667pt;}
.x100_c01306{left:457.733333pt;}
.xf6_c01306{left:462.333333pt;}
.x93_c01306{left:464.640000pt;}
.x3_c01306{left:466.946667pt;}
.x104_c01306{left:469.253333pt;}
.xeb_c01306{left:470.786667pt;}
.xd_c01306{left:473.093333pt;}
.x1b_c01306{left:474.626667pt;}
.x109_c01306{left:476.160000pt;}
.x7a_c01306{left:479.226667pt;}
.x52_c01306{left:480.773333pt;}
.xd3_c01306{left:483.066667pt;}
.x3f_c01306{left:485.373333pt;}
.x4_c01306{left:486.906667pt;}
.xe1_c01306{left:488.453333pt;}
.xe_c01306{left:489.986667pt;}
.x8c_c01306{left:491.520000pt;}
.xc8_c01306{left:493.053333pt;}
.xec_c01306{left:494.586667pt;}
.xe5_c01306{left:496.133333pt;}
.x61_c01306{left:498.426667pt;}
.x113_c01306{left:500.733333pt;}
.xa6_c01306{left:503.040000pt;}
.xcb_c01306{left:506.106667pt;}
.xa7_c01306{left:509.187133pt;}
.x59_c01306{left:512.253333pt;}
.x53_c01306{left:514.560000pt;}
.xd4_c01306{left:516.866667pt;}
.xd8_c01306{left:518.400000pt;}
.x94_c01306{left:520.706667pt;}
.x23_c01306{left:522.240000pt;}
.x5a_c01306{left:527.613333pt;}
.x40_c01306{left:529.920000pt;}
.x8d_c01306{left:531.453333pt;}
.xa8_c01306{left:533.760000pt;}
.x86_c01306{left:536.066667pt;}
.x1c_c01306{left:537.600000pt;}
.xde_c01306{left:539.133333pt;}
.x10c_c01306{left:542.213333pt;}
.x5b_c01306{left:544.506667pt;}
.x10a_c01306{left:546.053333pt;}
.xd5_c01306{left:547.586667pt;}
.xa1_c01306{left:549.893333pt;}
.xbf_c01306{left:552.186667pt;}
.x1d_c01306{left:553.733333pt;}
.x2a_c01306{left:555.266667pt;}
.x101_c01306{left:557.573333pt;}
.x5c_c01306{left:560.640000pt;}
.x37_c01306{left:563.706667pt;}
.x8e_c01306{left:566.013333pt;}
.xc4_c01306{left:568.320000pt;}
.x70_c01306{left:570.626667pt;}
.xf_c01306{left:572.160000pt;}
.x8f_c01306{left:575.226667pt;}
.xe3_c01306{left:577.533333pt;}
.x10_c01306{left:579.066667pt;}
.x112_c01306{left:580.613333pt;}
.x7b_c01306{left:583.680000pt;}
.x5_c01306{left:586.746667pt;}
.xe6_c01306{left:589.826667pt;}
.x71_c01306{left:591.360000pt;}
.x2b_c01306{left:592.893333pt;}
.x48_c01306{left:594.426667pt;}
.x62_c01306{left:596.733333pt;}
.x41_c01306{left:598.266667pt;}
.xd9_c01306{left:599.813333pt;}
.xbc_c01306{left:604.413333pt;}
.x63_c01306{left:605.946667pt;}
.x24_c01306{left:609.026667pt;}
.xcd_c01306{left:610.560000pt;}
.xed_c01306{left:612.093333pt;}
.x42_c01306{left:613.626667pt;}
.x7c_c01306{left:615.933333pt;}
.xef_c01306{left:617.466667pt;}
.x1e_c01306{left:619.013333pt;}
.x102_c01306{left:620.546667pt;}
.xb6_c01306{left:622.853333pt;}
.x11_c01306{left:624.386667pt;}
.x95_c01306{left:626.693333pt;}
.x119_c01306{left:628.986667pt;}
.x49_c01306{left:630.533333pt;}
.xd6_c01306{left:632.066667pt;}
.xa9_c01306{left:633.600000pt;}
.xc0_c01306{left:635.133333pt;}
.xda_c01306{left:637.440000pt;}
.x90_c01306{left:639.746667pt;}
.x6_c01306{left:641.280000pt;}
.x38_c01306{left:642.813333pt;}
.x117_c01306{left:644.346667pt;}
.x1f_c01306{left:645.893333pt;}
.x2c_c01306{left:648.960000pt;}
.x10d_c01306{left:650.493333pt;}
.xc1_c01306{left:653.573333pt;}
.x2d_c01306{left:655.106667pt;}
.x7d_c01306{left:656.640000pt;}
.x25_c01306{left:658.173333pt;}
.x43_c01306{left:660.480000pt;}
.x72_c01306{left:663.546667pt;}
.x64_c01306{left:665.853333pt;}
.xa2_c01306{left:668.160000pt;}
.x12_c01306{left:671.226667pt;}
.xb7_c01306{left:673.533333pt;}
.xce_c01306{left:675.066667pt;}
.x4a_c01306{left:677.373333pt;}
.x54_c01306{left:679.680000pt;}
.xfb_c01306{left:681.213333pt;}
.x87_c01306{left:683.520000pt;}
.x10b_c01306{left:685.053333pt;}
.x39_c01306{left:687.360000pt;}
.x2e_c01306{left:689.666667pt;}
.xf0_c01306{left:691.200000pt;}
.x88_c01306{left:692.733333pt;}
.xaa_c01306{left:694.266667pt;}
.x5d_c01306{left:695.813333pt;}
.xbd_c01306{left:700.413333pt;}
.x13_c01306{left:702.720000pt;}
.x2f_c01306{left:705.026667pt;}
.xab_c01306{left:706.560000pt;}
.x10e_c01306{left:708.093333pt;}
.xee_c01306{left:710.400000pt;}
.xb3_c01306{left:711.933333pt;}
.x91_c01306{left:714.240000pt;}
.xb8_c01306{left:718.080000pt;}
.x7e_c01306{left:721.146667pt;}
.x73_c01306{left:723.453333pt;}
.xc5_c01306{left:726.533333pt;}
.xc2_c01306{left:728.066667pt;}
.x4b_c01306{left:729.600000pt;}
.x14_c01306{left:731.133333pt;}
.x118_c01306{left:732.666667pt;}
.x20_c01306{left:735.746667pt;}
.xdf_c01306{left:737.280000pt;}
.x106_c01306{left:741.120000pt;}
.x44_c01306{left:742.653333pt;}
.x65_c01306{left:744.960000pt;}
.x105_c01306{left:746.493333pt;}
.xf3_c01306{left:748.026667pt;}
.xac_c01306{left:751.106667pt;}
.x107_c01306{left:752.640000pt;}
.x45_c01306{left:757.253333pt;}
.x9a_c01306{left:759.546667pt;}
.x11a_c01306{left:761.093333pt;}
.x103_c01306{left:764.933333pt;}
.xd7_c01306{left:766.466667pt;}
.xad_c01306{left:768.000000pt;}
.xfd_c01306{left:770.306667pt;}
.x11b_c01306{left:771.840000pt;}
.x4c_c01306{left:774.906667pt;}
.xb9_c01306{left:776.453333pt;}
.x66_c01306{left:778.746667pt;}
.x11e_c01306{left:793.346667pt;}
.x11f_c01306{left:802.560000pt;}
.x123_c01306{left:860.933333pt;}
.x120_c01306{left:863.226667pt;}
.x121_c01306{left:874.746667pt;}
.x122_c01306{left:932.346667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_491f1fff3e06cb6b1b9746d9.woff2')format("woff");}.ff1_c01307{font-family:ff1_c01307;line-height:1.109863;font-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_c01307{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m14b_c01307{transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);}
.ma5_c01307{transform:matrix(0.077700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077700,0.000000,0.000000,0.250000,0,0);}
.m13b_c01307{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m2e_c01307{transform:matrix(0.083900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083900,0.000000,0.000000,0.250000,0,0);}
.mdf_c01307{transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);}
.m7e_c01307{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.ma4_c01307{transform:matrix(0.095875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095875,0.000000,0.000000,0.250000,0,0);}
.m65_c01307{transform:matrix(0.099200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099200,0.000000,0.000000,0.250000,0,0);}
.m106_c01307{transform:matrix(0.106025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106025,0.000000,0.000000,0.250000,0,0);}
.m61_c01307{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01307{transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01307{transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);}
.m135_c01307{transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);}
.mae_c01307{transform:matrix(0.110900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110900,0.000000,0.000000,0.250000,0,0);}
.m79_c01307{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m14a_c01307{transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112450,0.000000,0.000000,0.250000,0,0);}
.me2_c01307{transform:matrix(0.112725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112725,0.000000,0.000000,0.250000,0,0);}
.ma8_c01307{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);}
.m96_c01307{transform:matrix(0.116150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116150,0.000000,0.000000,0.250000,0,0);}
.m66_c01307{transform:matrix(0.116475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116475,0.000000,0.000000,0.250000,0,0);}
.m152_c01307{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);}
.m107_c01307{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);}
.m45_c01307{transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);}
.med_c01307{transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119450,0.000000,0.000000,0.250000,0,0);}
.m32_c01307{transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);}
.m9c_c01307{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);}
.ma3_c01307{transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);}
.m9e_c01307{transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);}
.ma7_c01307{transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01307{transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);}
.mfa_c01307{transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);}
.m52_c01307{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01307{transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);}
.me9_c01307{transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01307{transform:matrix(0.126625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126625,0.000000,0.000000,0.250000,0,0);}
.m12c_c01307{transform:matrix(0.127050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127050,0.000000,0.000000,0.250000,0,0);}
.m2a_c01307{transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);}
.m173_c01307{transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127975,0.000000,0.000000,0.250000,0,0);}
.mdd_c01307{transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);}
.mfb_c01307{transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);}
.m19_c01307{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);}
.md7_c01307{transform:matrix(0.131475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131475,0.000000,0.000000,0.250000,0,0);}
.m3a_c01307{transform:matrix(0.131925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131925,0.000000,0.000000,0.250000,0,0);}
.ma2_c01307{transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);}
.m150_c01307{transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);}
.m74_c01307{transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);}
.m3d_c01307{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);}
.m162_c01307{transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01307{transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);}
.m14f_c01307{transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);}
.m142_c01307{transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);}
.ma9_c01307{transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134500,0.000000,0.000000,0.250000,0,0);}
.m112_c01307{transform:matrix(0.134575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134575,0.000000,0.000000,0.250000,0,0);}
.m172_c01307{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);}
.m105_c01307{transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);}
.m9f_c01307{transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);}
.m193_c01307{transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);}
.m80_c01307{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.m136_c01307{transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);}
.m4b_c01307{transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);}
.m11d_c01307{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);}
.mb8_c01307{transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);}
.m20_c01307{transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);}
.m17a_c01307{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.mbc_c01307{transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);}
.md1_c01307{transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);}
.mb0_c01307{transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);}
.m15c_c01307{transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);}
.m9d_c01307{transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);}
.me0_c01307{transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);}
.m8a_c01307{transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);}
.md0_c01307{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);}
.m163_c01307{transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);}
.m10b_c01307{transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);}
.m11e_c01307{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.m53_c01307{transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);}
.ma1_c01307{transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143075,0.000000,0.000000,0.250000,0,0);}
.m17d_c01307{transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);}
.m2_c01307{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01307{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);}
.m97_c01307{transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);}
.m118_c01307{transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);}
.m15a_c01307{transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);}
.m13a_c01307{transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);}
.mc5_c01307{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);}
.mb9_c01307{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);}
.ma6_c01307{transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);}
.m154_c01307{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);}
.m15d_c01307{transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);}
.m169_c01307{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);}
.m143_c01307{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);}
.m1a1_c01307{transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);}
.m190_c01307{transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);}
.m29_c01307{transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);}
.m4c_c01307{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.m151_c01307{transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);}
.m3c_c01307{transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153475,0.000000,0.000000,0.250000,0,0);}
.m94_c01307{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m156_c01307{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);}
.m51_c01307{transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);}
.ma0_c01307{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.m108_c01307{transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01307{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m17_c01307{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);}
.m160_c01307{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m8c_c01307{transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);}
.m14d_c01307{transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01307{transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158375,0.000000,0.000000,0.250000,0,0);}
.mab_c01307{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.m196_c01307{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.m149_c01307{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m197_c01307{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);}
.m189_c01307{transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);}
.m89_c01307{transform:matrix(0.160275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160275,0.000000,0.000000,0.250000,0,0);}
.m167_c01307{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);}
.maf_c01307{transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161875,0.000000,0.000000,0.250000,0,0);}
.m18c_c01307{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.md5_c01307{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.m92_c01307{transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01307{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.m27_c01307{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m6d_c01307{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m17e_c01307{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m42_c01307{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.m120_c01307{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.mb7_c01307{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m23_c01307{transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);}
.mc4_c01307{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.mea_c01307{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m55_c01307{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m102_c01307{transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);}
.m36_c01307{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.m176_c01307{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);}
.m3e_c01307{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m182_c01307{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);}
.m16b_c01307{transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);}
.m113_c01307{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.m33_c01307{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.m17f_c01307{transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);}
.m0_c01307{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m17b_c01307{transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);}
.m127_c01307{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.m13c_c01307{transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);}
.m187_c01307{transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169325,0.000000,0.000000,0.250000,0,0);}
.m18b_c01307{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);}
.m10a_c01307{transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);}
.mdb_c01307{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.m28_c01307{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);}
.m68_c01307{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.m24_c01307{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01307{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.m16c_c01307{transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170850,0.000000,0.000000,0.250000,0,0);}
.m139_c01307{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m186_c01307{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);}
.mbb_c01307{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m161_c01307{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);}
.m35_c01307{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.m16a_c01307{transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173225,0.000000,0.000000,0.250000,0,0);}
.m8e_c01307{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m11b_c01307{transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173975,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01307{transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);}
.m10f_c01307{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);}
.md9_c01307{transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01307{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);}
.m40_c01307{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);}
.m18d_c01307{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m8f_c01307{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m91_c01307{transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);}
.m104_c01307{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m54_c01307{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01307{transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);}
.m134_c01307{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.m48_c01307{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m130_c01307{transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01307{transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);}
.m1e_c01307{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.mf8_c01307{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);}
.mbd_c01307{transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01307{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.m198_c01307{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.m12e_c01307{transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);}
.m192_c01307{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.mdc_c01307{transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181600,0.000000,0.000000,0.250000,0,0);}
.m183_c01307{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);}
.m15f_c01307{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.m158_c01307{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.m164_c01307{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m30_c01307{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);}
.m138_c01307{transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);}
.m63_c01307{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m126_c01307{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);}
.m17c_c01307{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.mac_c01307{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);}
.m194_c01307{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);}
.md4_c01307{transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184700,0.000000,0.000000,0.250000,0,0);}
.m165_c01307{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.mff_c01307{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);}
.mec_c01307{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.mf4_c01307{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m159_c01307{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01307{transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);}
.m157_c01307{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);}
.m86_c01307{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);}
.m121_c01307{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_c01307{transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187750,0.000000,0.000000,0.250000,0,0);}
.mbf_c01307{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);}
.mde_c01307{transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188075,0.000000,0.000000,0.250000,0,0);}
.m62_c01307{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m148_c01307{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m191_c01307{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m5b_c01307{transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);}
.m12b_c01307{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);}
.me5_c01307{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.m147_c01307{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.m1be_c01307{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);}
.m25_c01307{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.m188_c01307{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);}
.m8_c01307{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);}
.m98_c01307{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.m119_c01307{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m114_c01307{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.ma_c01307{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m2c_c01307{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);}
.mf7_c01307{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.m10d_c01307{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01307{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);}
.m1a0_c01307{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m4f_c01307{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m58_c01307{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01307{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);}
.m153_c01307{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.m18f_c01307{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);}
.me7_c01307{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);}
.m41_c01307{transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);}
.mfc_c01307{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.mcf_c01307{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.mf6_c01307{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m195_c01307{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m21_c01307{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.m125_c01307{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);}
.m71_c01307{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.mcc_c01307{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m177_c01307{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);}
.m50_c01307{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);}
.m12a_c01307{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);}
.m185_c01307{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.m73_c01307{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01307{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m43_c01307{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);}
.m179_c01307{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m15b_c01307{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);}
.md6_c01307{transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);}
.m2d_c01307{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m129_c01307{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);}
.m103_c01307{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m137_c01307{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m47_c01307{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);}
.m100_c01307{transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);}
.m67_c01307{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m1af_c01307{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);}
.m72_c01307{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01307{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);}
.m1c3_c01307{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);}
.m1ad_c01307{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.mc8_c01307{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.mba_c01307{transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);}
.me3_c01307{transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212650,0.000000,0.000000,0.250000,0,0);}
.mf2_c01307{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);}
.m16f_c01307{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01307{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.m1a_c01307{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.m109_c01307{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.m9b_c01307{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);}
.md3_c01307{transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);}
.m145_c01307{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.m101_c01307{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.m141_c01307{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);}
.mf3_c01307{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.m180_c01307{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);}
.m18e_c01307{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);}
.m171_c01307{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mc2_c01307{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.m11c_c01307{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);}
.m44_c01307{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);}
.m46_c01307{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);}
.mef_c01307{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.mf0_c01307{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);}
.m131_c01307{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.m6e_c01307{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m116_c01307{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);}
.m9a_c01307{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01307{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01307{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m174_c01307{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.m8d_c01307{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);}
.mda_c01307{transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);}
.m175_c01307{transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);}
.m76_c01307{transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224650,0.000000,0.000000,0.250000,0,0);}
.m178_c01307{transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224675,0.000000,0.000000,0.250000,0,0);}
.m4_c01307{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m16_c01307{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m146_c01307{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);}
.m16e_c01307{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);}
.m13f_c01307{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.m11a_c01307{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.m170_c01307{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);}
.m166_c01307{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m84_c01307{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01307{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);}
.m39_c01307{transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01307{transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);}
.mbe_c01307{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);}
.m1ae_c01307{transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);}
.m124_c01307{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);}
.m122_c01307{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);}
.m34_c01307{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);}
.m12d_c01307{transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);}
.m6a_c01307{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.mf1_c01307{transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);}
.m3_c01307{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);}
.m133_c01307{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);}
.mca_c01307{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01307{transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);}
.m19f_c01307{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01307{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);}
.mc1_c01307{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.m3b_c01307{transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);}
.mad_c01307{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.me8_c01307{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);}
.m95_c01307{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);}
.m6c_c01307{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m1b_c01307{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);}
.m16d_c01307{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);}
.m199_c01307{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.m6f_c01307{transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);}
.m140_c01307{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m11f_c01307{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m56_c01307{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);}
.m99_c01307{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);}
.m19d_c01307{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);}
.mf9_c01307{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m31_c01307{transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);}
.m110_c01307{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);}
.m93_c01307{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);}
.m184_c01307{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);}
.m1aa_c01307{transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);}
.mf5_c01307{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.me1_c01307{transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);}
.mc7_c01307{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);}
.m19a_c01307{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);}
.m87_c01307{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);}
.mb4_c01307{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);}
.mee_c01307{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);}
.m1a5_c01307{transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244675,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01307{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);}
.m1bd_c01307{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);}
.m10e_c01307{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m181_c01307{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m13d_c01307{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m14_c01307{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);}
.m4d_c01307{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m128_c01307{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);}
.m1c_c01307{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);}
.m2b_c01307{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);}
.m5_c01307{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);}
.m37_c01307{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m132_c01307{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m75_c01307{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m59_c01307{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);}
.m64_c01307{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01307{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);}
.m78_c01307{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);}
.m90_c01307{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m22_c01307{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);}
.me_c01307{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mcb_c01307{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.meb_c01307{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);}
.mb2_c01307{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.me4_c01307{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);}
.m5c_c01307{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);}
.m18_c01307{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m13_c01307{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m38_c01307{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);}
.mcd_c01307{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m81_c01307{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m77_c01307{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);}
.m19b_c01307{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m10c_c01307{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.md_c01307{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m49_c01307{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m19e_c01307{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m15_c01307{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01307{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12f_c01307{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7_c01307{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);}
.mc9_c01307{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mce_c01307{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01307{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc3_c01307{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);}
.m3f_c01307{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m88_c01307{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01307{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);}
.m12_c01307{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m111_c01307{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01307{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m155_c01307{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m26_c01307{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);}
.mc6_c01307{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01307{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m11_c01307{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);}
.m5e_c01307{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m9_c01307{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m70_c01307{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m85_c01307{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m6_c01307{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);}
.m1bc_c01307{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);}
.m144_c01307{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mb3_c01307{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1_c01307{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01307{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mf_c01307{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mc_c01307{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01307{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m115_c01307{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m168_c01307{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m15e_c01307{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m123_c01307{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);}
.m14c_c01307{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m13e_c01307{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);}
.mc0_c01307{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.maa_c01307{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01307{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mb_c01307{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m19c_c01307{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.md2_c01307{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m57_c01307{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01307{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m18a_c01307{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01307{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01307{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m14e_c01307{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.mb5_c01307{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mfe_c01307{transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01307{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01307{transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);}
.mfd_c01307{transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);}
.m60_c01307{transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.995000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01307{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.mb1_c01307{transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01307{transform:matrix(1.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.357500,0.000000,0.000000,0.250000,0,0);}
.m7b_c01307{transform:matrix(1.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.455000,0.000000,0.000000,0.250000,0,0);}
.md8_c01307{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01307{transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01307{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m117_c01307{transform:matrix(2.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.702500,0.000000,0.000000,0.250000,0,0);}
.m82_c01307{transform:matrix(3.005000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.005000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.005000,0.000000,0.000000,0.250000,0,0);}
.m83_c01307{transform:matrix(3.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.655000,0.000000,0.000000,0.250000,0,0);}
.me6_c01307{transform:matrix(3.757500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.757500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.757500,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;}
.fs2_c01307{font-size:3.456000px;}
.fsa_c01307{font-size:6.000000px;}
.fs9_c01307{font-size:6.900000px;}
.fs1_c01307{font-size:10.380000px;}
.fs7_c01307{font-size:13.800000px;}
.fs6_c01307{font-size:17.280000px;}
.fs8_c01307{font-size:20.760000px;}
.fs5_c01307{font-size:24.180000px;}
.fs20_c01307{font-size:27.660000px;}
.fs1f_c01307{font-size:31.080000px;}
.fs3_c01307{font-size:34.560000px;}
.fs4_c01307{font-size:38.040000px;}
.fs18_c01307{font-size:41.460000px;}
.fs1c_c01307{font-size:44.940000px;}
.fsc_c01307{font-size:48.360000px;}
.fs15_c01307{font-size:51.840000px;}
.fs0_c01307{font-size:55.320000px;}
.fs14_c01307{font-size:58.740000px;}
.fse_c01307{font-size:62.220000px;}
.fs1a_c01307{font-size:65.640000px;}
.fs10_c01307{font-size:69.120000px;}
.fsf_c01307{font-size:72.600000px;}
.fs11_c01307{font-size:76.020000px;}
.fs13_c01307{font-size:79.500000px;}
.fs16_c01307{font-size:82.920000px;}
.fs17_c01307{font-size:86.400000px;}
.fs1b_c01307{font-size:89.880000px;}
.fs1e_c01307{font-size:93.300000px;}
.fs1d_c01307{font-size:96.780000px;}
.fs12_c01307{font-size:100.200000px;}
.fs19_c01307{font-size:103.680000px;}
.fsb_c01307{font-size:114.060000px;}
.fsd_c01307{font-size:131.340000px;}
.fs21_c01307{font-size:145.140000px;}
.y0_c01307{bottom:0.000000px;}
.y1fb_c01307{bottom:153.795000px;}
.y1fd_c01307{bottom:158.970000px;}
.y1fc_c01307{bottom:159.840000px;}
.y1fa_c01307{bottom:164.160000px;}
.y1f8_c01307{bottom:174.525000px;}
.y1f4_c01307{bottom:177.120000px;}
.y1f6_c01307{bottom:177.990000px;}
.y1f3_c01307{bottom:178.845000px;}
.y1f5_c01307{bottom:180.570000px;}
.y1f7_c01307{bottom:181.440000px;}
.y1f2_c01307{bottom:185.760000px;}
.y1f9_c01307{bottom:189.210000px;}
.y1f1_c01307{bottom:193.530000px;}
.y1f0_c01307{bottom:195.270000px;}
.y1ee_c01307{bottom:196.125000px;}
.y1ef_c01307{bottom:197.850000px;}
.y1ed_c01307{bottom:199.590000px;}
.y1ec_c01307{bottom:200.445000px;}
.y1eb_c01307{bottom:203.040000px;}
.y1e9_c01307{bottom:216.000000px;}
.y1e5_c01307{bottom:217.725000px;}
.y1ea_c01307{bottom:218.595000px;}
.y1e4_c01307{bottom:219.450000px;}
.y1e1_c01307{bottom:222.045000px;}
.y1e8_c01307{bottom:222.915000px;}
.y1e7_c01307{bottom:223.770000px;}
.y1e6_c01307{bottom:224.640000px;}
.y1e3_c01307{bottom:228.090000px;}
.y1df_c01307{bottom:235.005000px;}
.y1e0_c01307{bottom:237.600000px;}
.y1de_c01307{bottom:238.470000px;}
.y1e2_c01307{bottom:239.325000px;}
.y1d9_c01307{bottom:241.920000px;}
.y1da_c01307{bottom:243.645000px;}
.y1db_c01307{bottom:244.515000px;}
.y1dd_c01307{bottom:245.370000px;}
.y1dc_c01307{bottom:247.965000px;}
.y1d8_c01307{bottom:251.430000px;}
.y1d7_c01307{bottom:253.155000px;}
.y1d5_c01307{bottom:257.475000px;}
.y1d6_c01307{bottom:260.925000px;}
.y1d1_c01307{bottom:261.795000px;}
.y1cf_c01307{bottom:262.650000px;}
.y1d4_c01307{bottom:263.520000px;}
.y1d0_c01307{bottom:264.390000px;}
.y1d2_c01307{bottom:266.115000px;}
.y1d3_c01307{bottom:272.160000px;}
.y1ce_c01307{bottom:277.350000px;}
.y1cc_c01307{bottom:279.930000px;}
.y1cd_c01307{bottom:280.800000px;}
.y1c9_c01307{bottom:282.525000px;}
.y1cb_c01307{bottom:283.395000px;}
.y1ca_c01307{bottom:285.990000px;}
.y1c8_c01307{bottom:286.845000px;}
.y16_c01307{bottom:292.035000px;}
.y1c6_c01307{bottom:295.485000px;}
.y1c5_c01307{bottom:298.080000px;}
.y14_c01307{bottom:298.950000px;}
.y1c3_c01307{bottom:299.805000px;}
.y1c7_c01307{bottom:302.400000px;}
.y1c4_c01307{bottom:303.270000px;}
.y1bf_c01307{bottom:304.995000px;}
.y15_c01307{bottom:305.850000px;}
.y1c0_c01307{bottom:306.720000px;}
.y1c2_c01307{bottom:307.590000px;}
.y1c1_c01307{bottom:308.445000px;}
.y12_c01307{bottom:310.170000px;}
.y13_c01307{bottom:315.360000px;}
.y1be_c01307{bottom:316.230000px;}
.y1bd_c01307{bottom:318.810000px;}
.y1bc_c01307{bottom:319.680000px;}
.y1b8_c01307{bottom:320.550000px;}
.y1b9_c01307{bottom:323.130000px;}
.y1b6_c01307{bottom:324.000000px;}
.y1ba_c01307{bottom:326.595000px;}
.y1b7_c01307{bottom:329.190000px;}
.y1bb_c01307{bottom:331.770000px;}
.y1b5_c01307{bottom:335.235000px;}
.y1b3_c01307{bottom:336.960000px;}
.y1b1_c01307{bottom:338.685000px;}
.y1b0_c01307{bottom:339.555000px;}
.y1b2_c01307{bottom:340.410000px;}
.y1b4_c01307{bottom:343.875000px;}
.y1ad_c01307{bottom:344.730000px;}
.y1ae_c01307{bottom:348.195000px;}
.y1af_c01307{bottom:349.050000px;}
.y1ac_c01307{bottom:349.920000px;}
.y1ab_c01307{bottom:353.370000px;}
.y1aa_c01307{bottom:355.965000px;}
.y1a9_c01307{bottom:360.285000px;}
.y1a8_c01307{bottom:361.155000px;}
.y1a7_c01307{bottom:364.605000px;}
.y1a6_c01307{bottom:366.330000px;}
.y1a5_c01307{bottom:375.840000px;}
.y1a4_c01307{bottom:378.435000px;}
.y1a3_c01307{bottom:379.290000px;}
.y1a0_c01307{bottom:381.030000px;}
.y1a1_c01307{bottom:381.885000px;}
.y1a2_c01307{bottom:383.610000px;}
.y19e_c01307{bottom:397.440000px;}
.y19d_c01307{bottom:399.165000px;}
.y19c_c01307{bottom:400.035000px;}
.y19f_c01307{bottom:401.760000px;}
.y198_c01307{bottom:402.630000px;}
.y19a_c01307{bottom:403.485000px;}
.y195_c01307{bottom:405.210000px;}
.y196_c01307{bottom:406.080000px;}
.y197_c01307{bottom:406.950000px;}
.y199_c01307{bottom:409.530000px;}
.y19b_c01307{bottom:411.270000px;}
.y193_c01307{bottom:418.170000px;}
.y191_c01307{bottom:419.910000px;}
.y190_c01307{bottom:421.635000px;}
.y18f_c01307{bottom:422.490000px;}
.y194_c01307{bottom:423.360000px;}
.y192_c01307{bottom:424.230000px;}
.y18d_c01307{bottom:425.085000px;}
.y18e_c01307{bottom:429.405000px;}
.y18b_c01307{bottom:436.320000px;}
.y189_c01307{bottom:437.190000px;}
.y10_c01307{bottom:438.915000px;}
.y188_c01307{bottom:439.770000px;}
.y11_c01307{bottom:441.510000px;}
.y18a_c01307{bottom:443.235000px;}
.y187_c01307{bottom:444.090000px;}
.y186_c01307{bottom:447.555000px;}
.y18c_c01307{bottom:449.280000px;}
.y185_c01307{bottom:451.005000px;}
.y184_c01307{bottom:457.050000px;}
.y183_c01307{bottom:458.790000px;}
.y182_c01307{bottom:459.645000px;}
.y180_c01307{bottom:463.110000px;}
.y17f_c01307{bottom:465.690000px;}
.y17d_c01307{bottom:466.560000px;}
.yf_c01307{bottom:468.285000px;}
.y181_c01307{bottom:470.010000px;}
.y17e_c01307{bottom:471.750000px;}
.y17c_c01307{bottom:472.605000px;}
.y17b_c01307{bottom:477.795000px;}
.y179_c01307{bottom:478.650000px;}
.y17a_c01307{bottom:479.520000px;}
.y177_c01307{bottom:480.390000px;}
.y178_c01307{bottom:481.245000px;}
.y174_c01307{bottom:483.840000px;}
.y171_c01307{bottom:484.710000px;}
.y176_c01307{bottom:485.565000px;}
.y173_c01307{bottom:488.160000px;}
.y172_c01307{bottom:489.030000px;}
.y175_c01307{bottom:489.885000px;}
.y16f_c01307{bottom:496.800000px;}
.y16d_c01307{bottom:501.120000px;}
.y170_c01307{bottom:501.990000px;}
.y169_c01307{bottom:502.845000px;}
.y16a_c01307{bottom:503.715000px;}
.y16e_c01307{bottom:505.440000px;}
.y16c_c01307{bottom:506.310000px;}
.y167_c01307{bottom:516.675000px;}
.y166_c01307{bottom:518.400000px;}
.y165_c01307{bottom:519.270000px;}
.y16b_c01307{bottom:520.125000px;}
.y164_c01307{bottom:520.995000px;}
.y163_c01307{bottom:525.315000px;}
.y161_c01307{bottom:527.040000px;}
.y160_c01307{bottom:527.910000px;}
.y162_c01307{bottom:530.490000px;}
.y168_c01307{bottom:534.810000px;}
.y15e_c01307{bottom:539.130000px;}
.y15d_c01307{bottom:540.870000px;}
.y15f_c01307{bottom:542.595000px;}
.y159_c01307{bottom:544.320000px;}
.y15c_c01307{bottom:546.045000px;}
.y156_c01307{bottom:546.915000px;}
.y158_c01307{bottom:547.770000px;}
.y15a_c01307{bottom:549.510000px;}
.y157_c01307{bottom:551.235000px;}
.y15b_c01307{bottom:553.830000px;}
.y155_c01307{bottom:556.410000px;}
.y152_c01307{bottom:560.730000px;}
.y151_c01307{bottom:561.600000px;}
.y150_c01307{bottom:565.050000px;}
.y154_c01307{bottom:566.790000px;}
.y153_c01307{bottom:568.515000px;}
.y14d_c01307{bottom:579.750000px;}
.y14e_c01307{bottom:582.330000px;}
.y14a_c01307{bottom:584.925000px;}
.y14c_c01307{bottom:585.795000px;}
.y148_c01307{bottom:588.390000px;}
.y14b_c01307{bottom:590.115000px;}
.y149_c01307{bottom:590.970000px;}
.y14f_c01307{bottom:591.840000px;}
.y146_c01307{bottom:597.030000px;}
.y145_c01307{bottom:601.350000px;}
.y143_c01307{bottom:603.930000px;}
.y142_c01307{bottom:604.800000px;}
.y147_c01307{bottom:615.165000px;}
.y140_c01307{bottom:619.485000px;}
.y13f_c01307{bottom:621.210000px;}
.y144_c01307{bottom:622.080000px;}
.y141_c01307{bottom:623.805000px;}
.y13b_c01307{bottom:627.270000px;}
.y13e_c01307{bottom:628.125000px;}
.y13c_c01307{bottom:630.720000px;}
.y13d_c01307{bottom:632.445000px;}
.y139_c01307{bottom:640.230000px;}
.y138_c01307{bottom:641.955000px;}
.y137_c01307{bottom:642.810000px;}
.y136_c01307{bottom:646.275000px;}
.y134_c01307{bottom:647.130000px;}
.y13a_c01307{bottom:648.000000px;}
.y135_c01307{bottom:648.870000px;}
.y132_c01307{bottom:649.725000px;}
.y131_c01307{bottom:650.595000px;}
.y133_c01307{bottom:653.190000px;}
.y130_c01307{bottom:658.365000px;}
.y12e_c01307{bottom:659.235000px;}
.y12d_c01307{bottom:662.685000px;}
.y12f_c01307{bottom:663.555000px;}
.y12c_c01307{bottom:666.150000px;}
.y12b_c01307{bottom:667.875000px;}
.y12a_c01307{bottom:669.600000px;}
.y129_c01307{bottom:673.050000px;}
.y128_c01307{bottom:679.110000px;}
.y126_c01307{bottom:686.010000px;}
.y127_c01307{bottom:687.750000px;}
.y125_c01307{bottom:688.605000px;}
.y124_c01307{bottom:689.475000px;}
.y122_c01307{bottom:691.200000px;}
.y123_c01307{bottom:692.070000px;}
.y120_c01307{bottom:703.290000px;}
.y11f_c01307{bottom:705.030000px;}
.y121_c01307{bottom:705.885000px;}
.y11e_c01307{bottom:706.755000px;}
.y11d_c01307{bottom:707.610000px;}
.y11b_c01307{bottom:708.480000px;}
.y119_c01307{bottom:710.205000px;}
.y11c_c01307{bottom:711.075000px;}
.y118_c01307{bottom:712.800000px;}
.y11a_c01307{bottom:713.670000px;}
.y117_c01307{bottom:717.120000px;}
.y116_c01307{bottom:719.715000px;}
.y115_c01307{bottom:721.440000px;}
.y114_c01307{bottom:723.165000px;}
.y113_c01307{bottom:724.035000px;}
.y110_c01307{bottom:728.355000px;}
.y112_c01307{bottom:729.210000px;}
.y111_c01307{bottom:731.805000px;}
.y10f_c01307{bottom:734.400000px;}
.y10e_c01307{bottom:740.445000px;}
.y10c_c01307{bottom:742.170000px;}
.y10d_c01307{bottom:745.635000px;}
.y10b_c01307{bottom:746.490000px;}
.y10a_c01307{bottom:747.360000px;}
.y108_c01307{bottom:749.085000px;}
.y107_c01307{bottom:751.680000px;}
.y106_c01307{bottom:753.405000px;}
.y109_c01307{bottom:754.275000px;}
.y105_c01307{bottom:756.000000px;}
.y103_c01307{bottom:760.320000px;}
.y102_c01307{bottom:763.770000px;}
.y100_c01307{bottom:765.510000px;}
.yff_c01307{bottom:766.365000px;}
.yfe_c01307{bottom:767.235000px;}
.yf4_c01307{bottom:768.090000px;}
.yfb_c01307{bottom:769.830000px;}
.yfc_c01307{bottom:770.685000px;}
.y101_c01307{bottom:772.410000px;}
.yfd_c01307{bottom:773.280000px;}
.y104_c01307{bottom:776.730000px;}
.yfa_c01307{bottom:778.470000px;}
.yf9_c01307{bottom:781.050000px;}
.yf7_c01307{bottom:783.645000px;}
.yf6_c01307{bottom:784.515000px;}
.yf8_c01307{bottom:785.370000px;}
.yf3_c01307{bottom:787.110000px;}
.yf0_c01307{bottom:788.835000px;}
.yf5_c01307{bottom:789.690000px;}
.yef_c01307{bottom:790.560000px;}
.yf1_c01307{bottom:793.155000px;}
.yf2_c01307{bottom:794.010000px;}
.yee_c01307{bottom:802.650000px;}
.yed_c01307{bottom:805.245000px;}
.y201_c01307{bottom:822.525000px;}
.yea_c01307{bottom:827.715000px;}
.ye9_c01307{bottom:828.570000px;}
.ye8_c01307{bottom:829.440000px;}
.yec_c01307{bottom:832.035000px;}
.yeb_c01307{bottom:832.890000px;}
.ye3_c01307{bottom:849.315000px;}
.ye5_c01307{bottom:850.170000px;}
.ye7_c01307{bottom:851.910000px;}
.ye6_c01307{bottom:852.765000px;}
.ye4_c01307{bottom:854.490000px;}
.ye2_c01307{bottom:862.275000px;}
.ye0_c01307{bottom:867.450000px;}
.yde_c01307{bottom:868.320000px;}
.ye1_c01307{bottom:869.190000px;}
.ydc_c01307{bottom:870.915000px;}
.ydf_c01307{bottom:872.640000px;}
.ydd_c01307{bottom:874.365000px;}
.ydb_c01307{bottom:875.235000px;}
.yd9_c01307{bottom:887.325000px;}
.yda_c01307{bottom:888.195000px;}
.yd7_c01307{bottom:889.050000px;}
.yd8_c01307{bottom:889.920000px;}
.yd6_c01307{bottom:890.790000px;}
.yd4_c01307{bottom:904.605000px;}
.yd2_c01307{bottom:908.070000px;}
.yd0_c01307{bottom:909.795000px;}
.yce_c01307{bottom:910.650000px;}
.yd3_c01307{bottom:912.390000px;}
.yd1_c01307{bottom:914.115000px;}
.yd5_c01307{bottom:914.970000px;}
.ycf_c01307{bottom:915.840000px;}
.ycc_c01307{bottom:923.610000px;}
.ycb_c01307{bottom:927.930000px;}
.yc6_c01307{bottom:929.670000px;}
.ycd_c01307{bottom:930.525000px;}
.yca_c01307{bottom:931.395000px;}
.yc9_c01307{bottom:933.120000px;}
.yc8_c01307{bottom:933.990000px;}
.yc7_c01307{bottom:934.845000px;}
.yc5_c01307{bottom:936.570000px;}
.yc4_c01307{bottom:944.355000px;}
.yc2_c01307{bottom:946.080000px;}
.yc1_c01307{bottom:947.805000px;}
.ybe_c01307{bottom:948.675000px;}
.ybf_c01307{bottom:950.400000px;}
.yc3_c01307{bottom:951.270000px;}
.yc0_c01307{bottom:952.995000px;}
.y7_c01307{bottom:954.720000px;}
.ybd_c01307{bottom:955.590000px;}
.ybc_c01307{bottom:956.445000px;}
.y6_c01307{bottom:957.315000px;}
.y5_c01307{bottom:959.040000px;}
.ybb_c01307{bottom:964.230000px;}
.yba_c01307{bottom:965.955000px;}
.yb9_c01307{bottom:967.680000px;}
.yb7_c01307{bottom:969.405000px;}
.yb6_c01307{bottom:970.275000px;}
.yb8_c01307{bottom:971.130000px;}
.y3_c01307{bottom:972.000000px;}
.y4_c01307{bottom:972.870000px;}
.yb5_c01307{bottom:973.725000px;}
.yb4_c01307{bottom:984.090000px;}
.yb3_c01307{bottom:986.685000px;}
.yb1_c01307{bottom:987.555000px;}
.y2_c01307{bottom:991.005000px;}
.yb2_c01307{bottom:991.875000px;}
.y1_c01307{bottom:992.730000px;}
.yb0_c01307{bottom:998.790000px;}
.yaf_c01307{bottom:1004.835000px;}
.yae_c01307{bottom:1006.560000px;}
.yac_c01307{bottom:1009.155000px;}
.ya8_c01307{bottom:1010.010000px;}
.yab_c01307{bottom:1010.880000px;}
.yad_c01307{bottom:1012.605000px;}
.yaa_c01307{bottom:1013.475000px;}
.ya9_c01307{bottom:1016.070000px;}
.ya7_c01307{bottom:1018.650000px;}
.ya5_c01307{bottom:1022.115000px;}
.ya3_c01307{bottom:1024.710000px;}
.ya2_c01307{bottom:1025.565000px;}
.ya4_c01307{bottom:1026.435000px;}
.y9f_c01307{bottom:1029.030000px;}
.ya1_c01307{bottom:1029.885000px;}
.ya6_c01307{bottom:1031.610000px;}
.ya0_c01307{bottom:1035.930000px;}
.y9e_c01307{bottom:1044.570000px;}
.y9d_c01307{bottom:1046.310000px;}
.y9c_c01307{bottom:1047.165000px;}
.y9b_c01307{bottom:1048.890000px;}
.y9a_c01307{bottom:1049.760000px;}
.y98_c01307{bottom:1050.630000px;}
.y99_c01307{bottom:1055.805000px;}
.y96_c01307{bottom:1065.315000px;}
.y94_c01307{bottom:1067.910000px;}
.y97_c01307{bottom:1068.765000px;}
.y91_c01307{bottom:1069.635000px;}
.y95_c01307{bottom:1070.490000px;}
.y93_c01307{bottom:1073.085000px;}
.y90_c01307{bottom:1073.955000px;}
.y92_c01307{bottom:1075.680000px;}
.y8f_c01307{bottom:1077.405000px;}
.y8c_c01307{bottom:1087.770000px;}
.y8b_c01307{bottom:1088.640000px;}
.y8e_c01307{bottom:1089.510000px;}
.y8d_c01307{bottom:1092.960000px;}
.y8a_c01307{bottom:1093.830000px;}
.y88_c01307{bottom:1106.790000px;}
.y89_c01307{bottom:1107.645000px;}
.y87_c01307{bottom:1110.240000px;}
.y83_c01307{bottom:1111.110000px;}
.y85_c01307{bottom:1111.965000px;}
.y82_c01307{bottom:1112.835000px;}
.y86_c01307{bottom:1115.430000px;}
.y84_c01307{bottom:1116.285000px;}
.y7c_c01307{bottom:1118.010000px;}
.y7d_c01307{bottom:1118.880000px;}
.y80_c01307{bottom:1120.605000px;}
.y81_c01307{bottom:1121.475000px;}
.y7e_c01307{bottom:1122.330000px;}
.y7f_c01307{bottom:1123.200000px;}
.y7a_c01307{bottom:1124.070000px;}
.y79_c01307{bottom:1129.245000px;}
.y78_c01307{bottom:1130.115000px;}
.y7b_c01307{bottom:1130.970000px;}
.y77_c01307{bottom:1132.710000px;}
.y76_c01307{bottom:1133.565000px;}
.y75_c01307{bottom:1137.885000px;}
.y74_c01307{bottom:1143.930000px;}
.y72_c01307{bottom:1149.120000px;}
.y71_c01307{bottom:1149.990000px;}
.y6f_c01307{bottom:1150.845000px;}
.y70_c01307{bottom:1153.440000px;}
.y73_c01307{bottom:1154.310000px;}
.y1ff_c01307{bottom:1156.890000px;}
.y200_c01307{bottom:1158.630000px;}
.y6e_c01307{bottom:1164.675000px;}
.y6d_c01307{bottom:1165.530000px;}
.y6b_c01307{bottom:1168.125000px;}
.y6a_c01307{bottom:1168.995000px;}
.y6c_c01307{bottom:1172.445000px;}
.y68_c01307{bottom:1173.315000px;}
.y63_c01307{bottom:1174.170000px;}
.y65_c01307{bottom:1175.910000px;}
.y61_c01307{bottom:1177.635000px;}
.y66_c01307{bottom:1178.490000px;}
.y69_c01307{bottom:1179.360000px;}
.y62_c01307{bottom:1181.085000px;}
.y67_c01307{bottom:1182.810000px;}
.y64_c01307{bottom:1183.680000px;}
.y5f_c01307{bottom:1188.000000px;}
.y60_c01307{bottom:1192.320000px;}
.y59_c01307{bottom:1194.045000px;}
.y58_c01307{bottom:1194.915000px;}
.y5c_c01307{bottom:1196.640000px;}
.y5e_c01307{bottom:1197.510000px;}
.y5a_c01307{bottom:1198.365000px;}
.y5b_c01307{bottom:1199.235000px;}
.y1fe_c01307{bottom:1202.685000px;}
.y55_c01307{bottom:1207.005000px;}
.y54_c01307{bottom:1207.875000px;}
.y5d_c01307{bottom:1210.470000px;}
.y50_c01307{bottom:1213.050000px;}
.y57_c01307{bottom:1214.790000px;}
.y52_c01307{bottom:1215.645000px;}
.y53_c01307{bottom:1217.370000px;}
.y51_c01307{bottom:1219.965000px;}
.y56_c01307{bottom:1220.835000px;}
.y4f_c01307{bottom:1227.750000px;}
.y4c_c01307{bottom:1232.070000px;}
.y4d_c01307{bottom:1233.795000px;}
.y4b_c01307{bottom:1234.650000px;}
.y4e_c01307{bottom:1235.520000px;}
.y49_c01307{bottom:1238.115000px;}
.y48_c01307{bottom:1240.710000px;}
.y4a_c01307{bottom:1241.565000px;}
.y47_c01307{bottom:1248.480000px;}
.y45_c01307{bottom:1250.205000px;}
.y46_c01307{bottom:1251.075000px;}
.y44_c01307{bottom:1251.930000px;}
.y43_c01307{bottom:1252.800000px;}
.y42_c01307{bottom:1254.525000px;}
.y41_c01307{bottom:1258.845000px;}
.y40_c01307{bottom:1259.715000px;}
.y3f_c01307{bottom:1262.310000px;}
.y3e_c01307{bottom:1269.210000px;}
.y3d_c01307{bottom:1271.805000px;}
.y3c_c01307{bottom:1272.675000px;}
.y3b_c01307{bottom:1273.530000px;}
.y38_c01307{bottom:1274.400000px;}
.y37_c01307{bottom:1276.125000px;}
.y39_c01307{bottom:1277.850000px;}
.y3a_c01307{bottom:1278.720000px;}
.y36_c01307{bottom:1279.590000px;}
.y34_c01307{bottom:1288.230000px;}
.y33_c01307{bottom:1289.085000px;}
.y35_c01307{bottom:1289.955000px;}
.y2c_c01307{bottom:1290.810000px;}
.y31_c01307{bottom:1291.680000px;}
.y2d_c01307{bottom:1292.550000px;}
.y2e_c01307{bottom:1293.405000px;}
.y32_c01307{bottom:1296.000000px;}
.y30_c01307{bottom:1299.450000px;}
.y2b_c01307{bottom:1300.320000px;}
.y2f_c01307{bottom:1304.640000px;}
.y2a_c01307{bottom:1308.090000px;}
.y28_c01307{bottom:1311.555000px;}
.y29_c01307{bottom:1312.410000px;}
.y26_c01307{bottom:1314.150000px;}
.y27_c01307{bottom:1315.005000px;}
.y24_c01307{bottom:1315.875000px;}
.y25_c01307{bottom:1316.730000px;}
.y23_c01307{bottom:1320.195000px;}
.y22_c01307{bottom:1325.370000px;}
.y21_c01307{bottom:1338.330000px;}
.y1f_c01307{bottom:1339.200000px;}
.y20_c01307{bottom:1340.925000px;}
.y1d_c01307{bottom:1344.390000px;}
.y1e_c01307{bottom:1345.245000px;}
.y1c_c01307{bottom:1346.115000px;}
.y1b_c01307{bottom:1348.710000px;}
.y1a_c01307{bottom:1349.565000px;}
.y19_c01307{bottom:1370.310000px;}
.ye_c01307{bottom:1372.035000px;}
.yc_c01307{bottom:1384.125000px;}
.yd_c01307{bottom:1386.720000px;}
.ya_c01307{bottom:1391.910000px;}
.yb_c01307{bottom:1393.635000px;}
.y18_c01307{bottom:1397.085000px;}
.y8_c01307{bottom:1398.810000px;}
.y9_c01307{bottom:1399.680000px;}
.y17_c01307{bottom:1408.320000px;}
.h4_c01307{height:3.110063px;}
.hc_c01307{height:5.399414px;}
.hb_c01307{height:6.209326px;}
.h3_c01307{height:9.340986px;}
.h9_c01307{height:12.418652px;}
.h8_c01307{height:15.550313px;}
.ha_c01307{height:18.681973px;}
.h7_c01307{height:21.759639px;}
.h22_c01307{height:24.891299px;}
.h21_c01307{height:27.968965px;}
.h5_c01307{height:31.100625px;}
.h6_c01307{height:34.232285px;}
.h1a_c01307{height:37.309951px;}
.h1e_c01307{height:40.441611px;}
.he_c01307{height:43.519277px;}
.h17_c01307{height:46.650937px;}
.h2_c01307{height:49.782598px;}
.h16_c01307{height:52.860264px;}
.h10_c01307{height:55.991924px;}
.h1c_c01307{height:59.069590px;}
.h12_c01307{height:62.201250px;}
.h11_c01307{height:65.332910px;}
.h13_c01307{height:68.410576px;}
.h15_c01307{height:71.542236px;}
.h18_c01307{height:74.619902px;}
.h19_c01307{height:77.751563px;}
.h1d_c01307{height:80.883223px;}
.h20_c01307{height:83.960889px;}
.h1f_c01307{height:87.092549px;}
.h14_c01307{height:90.170215px;}
.h1b_c01307{height:93.301875px;}
.hd_c01307{height:102.642861px;}
.hf_c01307{height:118.193174px;}
.h23_c01307{height:130.611826px;}
.h0_c01307{height:1509.405000px;}
.h1_c01307{height:1509.750000px;}
.w0_c01307{width:1088.640000px;}
.w1_c01307{width:1089.000000px;}
.x0_c01307{left:0.000000px;}
.x1_c01307{left:11.235000px;}
.x3_c01307{left:19.875000px;}
.x2_c01307{left:47.520000px;}
.x4_c01307{left:50.115000px;}
.x6_c01307{left:58.755000px;}
.x5_c01307{left:63.930000px;}
.x7_c01307{left:93.315000px;}
.x8_c01307{left:108.000000px;}
.xd_c01307{left:118.365000px;}
.xe_c01307{left:132.195000px;}
.x9_c01307{left:170.205000px;}
.xb_c01307{left:172.800000px;}
.xc_c01307{left:177.990000px;}
.xd6_c01307{left:183.165000px;}
.xa_c01307{left:191.805000px;}
.x86_c01307{left:193.530000px;}
.xce_c01307{left:195.270000px;}
.x4c_c01307{left:209.955000px;}
.x73_c01307{left:214.275000px;}
.x4d_c01307{left:218.595000px;}
.xb1_c01307{left:224.640000px;}
.x52_c01307{left:227.235000px;}
.x4e_c01307{left:228.960000px;}
.x43_c01307{left:230.685000px;}
.xc6_c01307{left:233.280000px;}
.x59_c01307{left:235.005000px;}
.x8a_c01307{left:237.600000px;}
.x4f_c01307{left:240.195000px;}
.x95_c01307{left:242.790000px;}
.x53_c01307{left:244.515000px;}
.x2e_c01307{left:246.240000px;}
.x6a_c01307{left:249.690000px;}
.x20_c01307{left:253.155000px;}
.x1c_c01307{left:254.880000px;}
.x87_c01307{left:257.475000px;}
.xed_c01307{left:259.200000px;}
.xd7_c01307{left:260.925000px;}
.x96_c01307{left:262.650000px;}
.x21_c01307{left:264.390000px;}
.x39_c01307{left:266.115000px;}
.xbd_c01307{left:268.710000px;}
.xf2_c01307{left:271.290000px;}
.x1d_c01307{left:275.610000px;}
.x6c_c01307{left:278.205000px;}
.x2f_c01307{left:279.930000px;}
.xb7_c01307{left:282.525000px;}
.xd3_c01307{left:285.120000px;}
.x74_c01307{left:286.845000px;}
.xcf_c01307{left:289.440000px;}
.xa7_c01307{left:292.035000px;}
.x7b_c01307{left:297.210000px;}
.x3a_c01307{left:298.950000px;}
.x22_c01307{left:301.530000px;}
.xc2_c01307{left:303.270000px;}
.xf7_c01307{left:306.720000px;}
.xee_c01307{left:308.445000px;}
.x44_c01307{left:310.170000px;}
.x5a_c01307{left:311.910000px;}
.x75_c01307{left:313.635000px;}
.xc7_c01307{left:315.360000px;}
.x7c_c01307{left:318.810000px;}
.xd0_c01307{left:320.550000px;}
.x23_c01307{left:324.000000px;}
.xa2_c01307{left:326.595000px;}
.x9a_c01307{left:329.190000px;}
.xb6_c01307{left:334.365000px;}
.xd8_c01307{left:336.960000px;}
.x104_c01307{left:338.685000px;}
.xbe_c01307{left:340.410000px;}
.x5b_c01307{left:343.875000px;}
.x54_c01307{left:346.470000px;}
.xbf_c01307{left:349.050000px;}
.xbb_c01307{left:352.515000px;}
.xd9_c01307{left:354.240000px;}
.xb2_c01307{left:355.965000px;}
.x45_c01307{left:359.430000px;}
.xfd_c01307{left:362.010000px;}
.x6d_c01307{left:367.200000px;}
.xa0_c01307{left:368.925000px;}
.x12_c01307{left:370.650000px;}
.xf3_c01307{left:372.390000px;}
.x9b_c01307{left:374.970000px;}
.x3b_c01307{left:379.290000px;}
.xa3_c01307{left:382.755000px;}
.x7d_c01307{left:386.205000px;}
.x13_c01307{left:388.800000px;}
.xa8_c01307{left:391.395000px;}
.x108_c01307{left:393.120000px;}
.x24_c01307{left:395.715000px;}
.x61_c01307{left:400.035000px;}
.x91_c01307{left:401.760000px;}
.x10d_c01307{left:403.485000px;}
.x62_c01307{left:405.210000px;}
.xb3_c01307{left:407.805000px;}
.x46_c01307{left:411.270000px;}
.x30_c01307{left:414.720000px;}
.xda_c01307{left:416.445000px;}
.x25_c01307{left:419.040000px;}
.xa9_c01307{left:420.765000px;}
.x14_c01307{left:423.360000px;}
.x31_c01307{left:428.550000px;}
.xdf_c01307{left:432.000000px;}
.xc8_c01307{left:434.595000px;}
.x63_c01307{left:438.045000px;}
.x5c_c01307{left:439.770000px;}
.x26_c01307{left:441.510000px;}
.x6e_c01307{left:444.960000px;}
.x8b_c01307{left:446.685000px;}
.xd4_c01307{left:448.410000px;}
.x5d_c01307{left:450.150000px;}
.xd1_c01307{left:451.875000px;}
.x3c_c01307{left:454.470000px;}
.xe8_c01307{left:456.195000px;}
.x6b_c01307{left:457.920000px;}
.xfa_c01307{left:459.645000px;}
.x10a_c01307{left:461.370000px;}
.x15_c01307{left:463.965000px;}
.xb8_c01307{left:467.430000px;}
.x64_c01307{left:472.605000px;}
.x109_c01307{left:476.070000px;}
.xe0_c01307{left:477.795000px;}
.xb4_c01307{left:479.520000px;}
.x16_c01307{left:482.115000px;}
.xdb_c01307{left:484.710000px;}
.xfe_c01307{left:487.290000px;}
.xcc_c01307{left:490.755000px;}
.x7e_c01307{left:492.480000px;}
.xd2_c01307{left:494.205000px;}
.xb9_c01307{left:495.930000px;}
.x55_c01307{left:499.395000px;}
.x1e_c01307{left:501.120000px;}
.x102_c01307{left:504.570000px;}
.x32_c01307{left:506.310000px;}
.xa4_c01307{left:509.760000px;}
.x65_c01307{left:514.080000px;}
.x6f_c01307{left:516.675000px;}
.x7f_c01307{left:518.400000px;}
.xbc_c01307{left:521.850000px;}
.xf4_c01307{left:523.590000px;}
.x17_c01307{left:525.315000px;}
.xe4_c01307{left:528.765000px;}
.x27_c01307{left:530.490000px;}
.x33_c01307{left:534.810000px;}
.xac_c01307{left:537.405000px;}
.x34_c01307{left:539.130000px;}
.x66_c01307{left:541.725000px;}
.x1f_c01307{left:544.320000px;}
.xba_c01307{left:548.640000px;}
.xc3_c01307{left:556.410000px;}
.x97_c01307{left:559.005000px;}
.xa1_c01307{left:561.600000px;}
.xa5_c01307{left:563.325000px;}
.x5e_c01307{left:565.050000px;}
.xec_c01307{left:566.790000px;}
.x3d_c01307{left:568.515000px;}
.x70_c01307{left:571.110000px;}
.xe9_c01307{left:573.690000px;}
.x5f_c01307{left:575.430000px;}
.x47_c01307{left:577.155000px;}
.x28_c01307{left:578.880000px;}
.xe2_c01307{left:590.115000px;}
.x56_c01307{left:592.710000px;}
.x48_c01307{left:596.160000px;}
.x29_c01307{left:598.755000px;}
.x50_c01307{left:601.350000px;}
.x18_c01307{left:604.800000px;}
.x8c_c01307{left:607.395000px;}
.xea_c01307{left:609.120000px;}
.x76_c01307{left:610.845000px;}
.xad_c01307{left:612.570000px;}
.x51_c01307{left:616.035000px;}
.x80_c01307{left:618.630000px;}
.x10b_c01307{left:623.805000px;}
.xff_c01307{left:625.530000px;}
.x11_c01307{left:627.270000px;}
.x105_c01307{left:630.720000px;}
.xc0_c01307{left:632.445000px;}
.x106_c01307{left:634.170000px;}
.x2a_c01307{left:635.910000px;}
.xfc_c01307{left:638.490000px;}
.xc9_c01307{left:641.085000px;}
.xef_c01307{left:643.680000px;}
.x9c_c01307{left:645.405000px;}
.x71_c01307{left:647.130000px;}
.xaa_c01307{left:653.190000px;}
.xf8_c01307{left:655.770000px;}
.x3e_c01307{left:657.510000px;}
.x49_c01307{left:662.685000px;}
.xf5_c01307{left:664.410000px;}
.xcd_c01307{left:667.005000px;}
.x110_c01307{left:672.195000px;}
.x81_c01307{left:674.790000px;}
.x10_c01307{left:678.240000px;}
.x92_c01307{left:679.965000px;}
.x35_c01307{left:683.430000px;}
.x10e_c01307{left:685.155000px;}
.x88_c01307{left:692.070000px;}
.x100_c01307{left:698.115000px;}
.x2b_c01307{left:699.840000px;}
.x3f_c01307{left:704.160000px;}
.x4a_c01307{left:705.885000px;}
.xe6_c01307{left:707.610000px;}
.x10f_c01307{left:709.350000px;}
.xc1_c01307{left:711.075000px;}
.x57_c01307{left:714.525000px;}
.x19_c01307{left:717.120000px;}
.x82_c01307{left:719.715000px;}
.x98_c01307{left:721.440000px;}
.xf_c01307{left:725.760000px;}
.x2c_c01307{left:728.355000px;}
.xae_c01307{left:730.950000px;}
.xe3_c01307{left:732.675000px;}
.x36_c01307{left:735.270000px;}
.xe5_c01307{left:736.995000px;}
.xca_c01307{left:738.720000px;}
.x89_c01307{left:741.315000px;}
.x99_c01307{left:743.910000px;}
.x107_c01307{left:745.635000px;}
.x9d_c01307{left:752.550000px;}
.xaf_c01307{left:754.275000px;}
.xc4_c01307{left:756.870000px;}
.xe1_c01307{left:758.595000px;}
.xf6_c01307{left:760.320000px;}
.x40_c01307{left:763.770000px;}
.x4b_c01307{left:768.090000px;}
.xf0_c01307{left:771.555000px;}
.xb0_c01307{left:773.280000px;}
.x2d_c01307{left:775.005000px;}
.xab_c01307{left:778.470000px;}
.xa6_c01307{left:781.920000px;}
.x8d_c01307{left:783.645000px;}
.xdc_c01307{left:785.370000px;}
.x77_c01307{left:787.110000px;}
.xfb_c01307{left:791.430000px;}
.x67_c01307{left:793.155000px;}
.x37_c01307{left:795.750000px;}
.x9e_c01307{left:798.330000px;}
.x93_c01307{left:803.520000px;}
.xe7_c01307{left:806.970000px;}
.x113_c01307{left:808.710000px;}
.x68_c01307{left:811.290000px;}
.xf9_c01307{left:813.030000px;}
.x8e_c01307{left:814.755000px;}
.xcb_c01307{left:816.480000px;}
.x83_c01307{left:821.670000px;}
.xb5_c01307{left:823.395000px;}
.x103_c01307{left:825.120000px;}
.x72_c01307{left:826.845000px;}
.x60_c01307{left:830.310000px;}
.x94_c01307{left:832.890000px;}
.xeb_c01307{left:834.630000px;}
.x78_c01307{left:837.210000px;}
.x111_c01307{left:838.950000px;}
.x38_c01307{left:841.530000px;}
.x41_c01307{left:844.125000px;}
.x84_c01307{left:845.850000px;}
.xdd_c01307{left:851.910000px;}
.x79_c01307{left:853.635000px;}
.x1a_c01307{left:855.360000px;}
.x8f_c01307{left:857.955000px;}
.xd5_c01307{left:859.680000px;}
.x101_c01307{left:861.405000px;}
.xf1_c01307{left:865.725000px;}
.x10c_c01307{left:868.320000px;}
.x7a_c01307{left:871.770000px;}
.x42_c01307{left:875.235000px;}
.x112_c01307{left:881.280000px;}
.x58_c01307{left:886.470000px;}
.x9f_c01307{left:889.050000px;}
.x90_c01307{left:891.645000px;}
.x85_c01307{left:893.370000px;}
.x1b_c01307{left:903.750000px;}
.x69_c01307{left:908.070000px;}
.xde_c01307{left:910.650000px;}
.xc5_c01307{left:916.710000px;}
.x114_c01307{left:941.760000px;}
.x115_c01307{left:949.530000px;}
.x116_c01307{left:959.040000px;}
@media print{
.v0_c01307{vertical-align:0.000000pt;}
.ls0_c01307{letter-spacing:0.000000pt;}
.ws0_c01307{word-spacing:0.000000pt;}
.fs2_c01307{font-size:3.072000pt;}
.fsa_c01307{font-size:5.333333pt;}
.fs9_c01307{font-size:6.133333pt;}
.fs1_c01307{font-size:9.226667pt;}
.fs7_c01307{font-size:12.266667pt;}
.fs6_c01307{font-size:15.360000pt;}
.fs8_c01307{font-size:18.453333pt;}
.fs5_c01307{font-size:21.493333pt;}
.fs20_c01307{font-size:24.586667pt;}
.fs1f_c01307{font-size:27.626667pt;}
.fs3_c01307{font-size:30.720000pt;}
.fs4_c01307{font-size:33.813333pt;}
.fs18_c01307{font-size:36.853333pt;}
.fs1c_c01307{font-size:39.946667pt;}
.fsc_c01307{font-size:42.986667pt;}
.fs15_c01307{font-size:46.080000pt;}
.fs0_c01307{font-size:49.173333pt;}
.fs14_c01307{font-size:52.213333pt;}
.fse_c01307{font-size:55.306667pt;}
.fs1a_c01307{font-size:58.346667pt;}
.fs10_c01307{font-size:61.440000pt;}
.fsf_c01307{font-size:64.533333pt;}
.fs11_c01307{font-size:67.573333pt;}
.fs13_c01307{font-size:70.666667pt;}
.fs16_c01307{font-size:73.706667pt;}
.fs17_c01307{font-size:76.800000pt;}
.fs1b_c01307{font-size:79.893333pt;}
.fs1e_c01307{font-size:82.933333pt;}
.fs1d_c01307{font-size:86.026667pt;}
.fs12_c01307{font-size:89.066667pt;}
.fs19_c01307{font-size:92.160000pt;}
.fsb_c01307{font-size:101.386667pt;}
.fsd_c01307{font-size:116.746667pt;}
.fs21_c01307{font-size:129.013333pt;}
.y0_c01307{bottom:0.000000pt;}
.y1fb_c01307{bottom:136.706667pt;}
.y1fd_c01307{bottom:141.306667pt;}
.y1fc_c01307{bottom:142.080000pt;}
.y1fa_c01307{bottom:145.920000pt;}
.y1f8_c01307{bottom:155.133333pt;}
.y1f4_c01307{bottom:157.440000pt;}
.y1f6_c01307{bottom:158.213333pt;}
.y1f3_c01307{bottom:158.973333pt;}
.y1f5_c01307{bottom:160.506667pt;}
.y1f7_c01307{bottom:161.280000pt;}
.y1f2_c01307{bottom:165.120000pt;}
.y1f9_c01307{bottom:168.186667pt;}
.y1f1_c01307{bottom:172.026667pt;}
.y1f0_c01307{bottom:173.573333pt;}
.y1ee_c01307{bottom:174.333333pt;}
.y1ef_c01307{bottom:175.866667pt;}
.y1ed_c01307{bottom:177.413333pt;}
.y1ec_c01307{bottom:178.173333pt;}
.y1eb_c01307{bottom:180.480000pt;}
.y1e9_c01307{bottom:192.000000pt;}
.y1e5_c01307{bottom:193.533333pt;}
.y1ea_c01307{bottom:194.306667pt;}
.y1e4_c01307{bottom:195.066667pt;}
.y1e1_c01307{bottom:197.373333pt;}
.y1e8_c01307{bottom:198.146667pt;}
.y1e7_c01307{bottom:198.906667pt;}
.y1e6_c01307{bottom:199.680000pt;}
.y1e3_c01307{bottom:202.746667pt;}
.y1df_c01307{bottom:208.893333pt;}
.y1e0_c01307{bottom:211.200000pt;}
.y1de_c01307{bottom:211.973333pt;}
.y1e2_c01307{bottom:212.733333pt;}
.y1d9_c01307{bottom:215.040000pt;}
.y1da_c01307{bottom:216.573333pt;}
.y1db_c01307{bottom:217.346667pt;}
.y1dd_c01307{bottom:218.106667pt;}
.y1dc_c01307{bottom:220.413333pt;}
.y1d8_c01307{bottom:223.493333pt;}
.y1d7_c01307{bottom:225.026667pt;}
.y1d5_c01307{bottom:228.866667pt;}
.y1d6_c01307{bottom:231.933333pt;}
.y1d1_c01307{bottom:232.706667pt;}
.y1cf_c01307{bottom:233.466667pt;}
.y1d4_c01307{bottom:234.240000pt;}
.y1d0_c01307{bottom:235.013333pt;}
.y1d2_c01307{bottom:236.546667pt;}
.y1d3_c01307{bottom:241.920000pt;}
.y1ce_c01307{bottom:246.533333pt;}
.y1cc_c01307{bottom:248.826667pt;}
.y1cd_c01307{bottom:249.600000pt;}
.y1c9_c01307{bottom:251.133333pt;}
.y1cb_c01307{bottom:251.906667pt;}
.y1ca_c01307{bottom:254.213333pt;}
.y1c8_c01307{bottom:254.973333pt;}
.y16_c01307{bottom:259.586667pt;}
.y1c6_c01307{bottom:262.653333pt;}
.y1c5_c01307{bottom:264.960000pt;}
.y14_c01307{bottom:265.733333pt;}
.y1c3_c01307{bottom:266.493333pt;}
.y1c7_c01307{bottom:268.800000pt;}
.y1c4_c01307{bottom:269.573333pt;}
.y1bf_c01307{bottom:271.106667pt;}
.y15_c01307{bottom:271.866667pt;}
.y1c0_c01307{bottom:272.640000pt;}
.y1c2_c01307{bottom:273.413333pt;}
.y1c1_c01307{bottom:274.173333pt;}
.y12_c01307{bottom:275.706667pt;}
.y13_c01307{bottom:280.320000pt;}
.y1be_c01307{bottom:281.093333pt;}
.y1bd_c01307{bottom:283.386667pt;}
.y1bc_c01307{bottom:284.160000pt;}
.y1b8_c01307{bottom:284.933333pt;}
.y1b9_c01307{bottom:287.226667pt;}
.y1b6_c01307{bottom:288.000000pt;}
.y1ba_c01307{bottom:290.306667pt;}
.y1b7_c01307{bottom:292.613333pt;}
.y1bb_c01307{bottom:294.906667pt;}
.y1b5_c01307{bottom:297.986667pt;}
.y1b3_c01307{bottom:299.520000pt;}
.y1b1_c01307{bottom:301.053333pt;}
.y1b0_c01307{bottom:301.826667pt;}
.y1b2_c01307{bottom:302.586667pt;}
.y1b4_c01307{bottom:305.666667pt;}
.y1ad_c01307{bottom:306.426667pt;}
.y1ae_c01307{bottom:309.506667pt;}
.y1af_c01307{bottom:310.266667pt;}
.y1ac_c01307{bottom:311.040000pt;}
.y1ab_c01307{bottom:314.106667pt;}
.y1aa_c01307{bottom:316.413333pt;}
.y1a9_c01307{bottom:320.253333pt;}
.y1a8_c01307{bottom:321.026667pt;}
.y1a7_c01307{bottom:324.093333pt;}
.y1a6_c01307{bottom:325.626667pt;}
.y1a5_c01307{bottom:334.080000pt;}
.y1a4_c01307{bottom:336.386667pt;}
.y1a3_c01307{bottom:337.146667pt;}
.y1a0_c01307{bottom:338.693333pt;}
.y1a1_c01307{bottom:339.453333pt;}
.y1a2_c01307{bottom:340.986667pt;}
.y19e_c01307{bottom:353.280000pt;}
.y19d_c01307{bottom:354.813333pt;}
.y19c_c01307{bottom:355.586667pt;}
.y19f_c01307{bottom:357.120000pt;}
.y198_c01307{bottom:357.893333pt;}
.y19a_c01307{bottom:358.653333pt;}
.y195_c01307{bottom:360.186667pt;}
.y196_c01307{bottom:360.960000pt;}
.y197_c01307{bottom:361.733333pt;}
.y199_c01307{bottom:364.026667pt;}
.y19b_c01307{bottom:365.573333pt;}
.y193_c01307{bottom:371.706667pt;}
.y191_c01307{bottom:373.253333pt;}
.y190_c01307{bottom:374.786667pt;}
.y18f_c01307{bottom:375.546667pt;}
.y194_c01307{bottom:376.320000pt;}
.y192_c01307{bottom:377.093333pt;}
.y18d_c01307{bottom:377.853333pt;}
.y18e_c01307{bottom:381.693333pt;}
.y18b_c01307{bottom:387.840000pt;}
.y189_c01307{bottom:388.613333pt;}
.y10_c01307{bottom:390.146667pt;}
.y188_c01307{bottom:390.906667pt;}
.y11_c01307{bottom:392.453333pt;}
.y18a_c01307{bottom:393.986667pt;}
.y187_c01307{bottom:394.746667pt;}
.y186_c01307{bottom:397.826667pt;}
.y18c_c01307{bottom:399.360000pt;}
.y185_c01307{bottom:400.893333pt;}
.y184_c01307{bottom:406.266667pt;}
.y183_c01307{bottom:407.813333pt;}
.y182_c01307{bottom:408.573333pt;}
.y180_c01307{bottom:411.653333pt;}
.y17f_c01307{bottom:413.946667pt;}
.y17d_c01307{bottom:414.720000pt;}
.yf_c01307{bottom:416.253333pt;}
.y181_c01307{bottom:417.786667pt;}
.y17e_c01307{bottom:419.333333pt;}
.y17c_c01307{bottom:420.093333pt;}
.y17b_c01307{bottom:424.706667pt;}
.y179_c01307{bottom:425.466667pt;}
.y17a_c01307{bottom:426.240000pt;}
.y177_c01307{bottom:427.013333pt;}
.y178_c01307{bottom:427.773333pt;}
.y174_c01307{bottom:430.080000pt;}
.y171_c01307{bottom:430.853333pt;}
.y176_c01307{bottom:431.613333pt;}
.y173_c01307{bottom:433.920000pt;}
.y172_c01307{bottom:434.693333pt;}
.y175_c01307{bottom:435.453333pt;}
.y16f_c01307{bottom:441.600000pt;}
.y16d_c01307{bottom:445.440000pt;}
.y170_c01307{bottom:446.213333pt;}
.y169_c01307{bottom:446.973333pt;}
.y16a_c01307{bottom:447.746667pt;}
.y16e_c01307{bottom:449.280000pt;}
.y16c_c01307{bottom:450.053333pt;}
.y167_c01307{bottom:459.266667pt;}
.y166_c01307{bottom:460.800000pt;}
.y165_c01307{bottom:461.573333pt;}
.y16b_c01307{bottom:462.333333pt;}
.y164_c01307{bottom:463.106667pt;}
.y163_c01307{bottom:466.946667pt;}
.y161_c01307{bottom:468.480000pt;}
.y160_c01307{bottom:469.253333pt;}
.y162_c01307{bottom:471.546667pt;}
.y168_c01307{bottom:475.386667pt;}
.y15e_c01307{bottom:479.226667pt;}
.y15d_c01307{bottom:480.773333pt;}
.y15f_c01307{bottom:482.306667pt;}
.y159_c01307{bottom:483.840000pt;}
.y15c_c01307{bottom:485.373333pt;}
.y156_c01307{bottom:486.146667pt;}
.y158_c01307{bottom:486.906667pt;}
.y15a_c01307{bottom:488.453333pt;}
.y157_c01307{bottom:489.986667pt;}
.y15b_c01307{bottom:492.293333pt;}
.y155_c01307{bottom:494.586667pt;}
.y152_c01307{bottom:498.426667pt;}
.y151_c01307{bottom:499.200000pt;}
.y150_c01307{bottom:502.266667pt;}
.y154_c01307{bottom:503.813333pt;}
.y153_c01307{bottom:505.346667pt;}
.y14d_c01307{bottom:515.333333pt;}
.y14e_c01307{bottom:517.626667pt;}
.y14a_c01307{bottom:519.933333pt;}
.y14c_c01307{bottom:520.706667pt;}
.y148_c01307{bottom:523.013333pt;}
.y14b_c01307{bottom:524.546667pt;}
.y149_c01307{bottom:525.306667pt;}
.y14f_c01307{bottom:526.080000pt;}
.y146_c01307{bottom:530.693333pt;}
.y145_c01307{bottom:534.533333pt;}
.y143_c01307{bottom:536.826667pt;}
.y142_c01307{bottom:537.600000pt;}
.y147_c01307{bottom:546.813333pt;}
.y140_c01307{bottom:550.653333pt;}
.y13f_c01307{bottom:552.186667pt;}
.y144_c01307{bottom:552.960000pt;}
.y141_c01307{bottom:554.493333pt;}
.y13b_c01307{bottom:557.573333pt;}
.y13e_c01307{bottom:558.333333pt;}
.y13c_c01307{bottom:560.640000pt;}
.y13d_c01307{bottom:562.173333pt;}
.y139_c01307{bottom:569.093333pt;}
.y138_c01307{bottom:570.626667pt;}
.y137_c01307{bottom:571.386667pt;}
.y136_c01307{bottom:574.466667pt;}
.y134_c01307{bottom:575.226667pt;}
.y13a_c01307{bottom:576.000000pt;}
.y135_c01307{bottom:576.773333pt;}
.y132_c01307{bottom:577.533333pt;}
.y131_c01307{bottom:578.306667pt;}
.y133_c01307{bottom:580.613333pt;}
.y130_c01307{bottom:585.213333pt;}
.y12e_c01307{bottom:585.986667pt;}
.y12d_c01307{bottom:589.053333pt;}
.y12f_c01307{bottom:589.826667pt;}
.y12c_c01307{bottom:592.133333pt;}
.y12b_c01307{bottom:593.666667pt;}
.y12a_c01307{bottom:595.200000pt;}
.y129_c01307{bottom:598.266667pt;}
.y128_c01307{bottom:603.653333pt;}
.y126_c01307{bottom:609.786667pt;}
.y127_c01307{bottom:611.333333pt;}
.y125_c01307{bottom:612.093333pt;}
.y124_c01307{bottom:612.866667pt;}
.y122_c01307{bottom:614.400000pt;}
.y123_c01307{bottom:615.173333pt;}
.y120_c01307{bottom:625.146667pt;}
.y11f_c01307{bottom:626.693333pt;}
.y121_c01307{bottom:627.453333pt;}
.y11e_c01307{bottom:628.226667pt;}
.y11d_c01307{bottom:628.986667pt;}
.y11b_c01307{bottom:629.760000pt;}
.y119_c01307{bottom:631.293333pt;}
.y11c_c01307{bottom:632.066667pt;}
.y118_c01307{bottom:633.600000pt;}
.y11a_c01307{bottom:634.373333pt;}
.y117_c01307{bottom:637.440000pt;}
.y116_c01307{bottom:639.746667pt;}
.y115_c01307{bottom:641.280000pt;}
.y114_c01307{bottom:642.813333pt;}
.y113_c01307{bottom:643.586667pt;}
.y110_c01307{bottom:647.426667pt;}
.y112_c01307{bottom:648.186667pt;}
.y111_c01307{bottom:650.493333pt;}
.y10f_c01307{bottom:652.800000pt;}
.y10e_c01307{bottom:658.173333pt;}
.y10c_c01307{bottom:659.706667pt;}
.y10d_c01307{bottom:662.786667pt;}
.y10b_c01307{bottom:663.546667pt;}
.y10a_c01307{bottom:664.320000pt;}
.y108_c01307{bottom:665.853333pt;}
.y107_c01307{bottom:668.160000pt;}
.y106_c01307{bottom:669.693333pt;}
.y109_c01307{bottom:670.466667pt;}
.y105_c01307{bottom:672.000000pt;}
.y103_c01307{bottom:675.840000pt;}
.y102_c01307{bottom:678.906667pt;}
.y100_c01307{bottom:680.453333pt;}
.yff_c01307{bottom:681.213333pt;}
.yfe_c01307{bottom:681.986667pt;}
.yf4_c01307{bottom:682.746667pt;}
.yfb_c01307{bottom:684.293333pt;}
.yfc_c01307{bottom:685.053333pt;}
.y101_c01307{bottom:686.586667pt;}
.yfd_c01307{bottom:687.360000pt;}
.y104_c01307{bottom:690.426667pt;}
.yfa_c01307{bottom:691.973333pt;}
.yf9_c01307{bottom:694.266667pt;}
.yf7_c01307{bottom:696.573333pt;}
.yf6_c01307{bottom:697.346667pt;}
.yf8_c01307{bottom:698.106667pt;}
.yf3_c01307{bottom:699.653333pt;}
.yf0_c01307{bottom:701.186667pt;}
.yf5_c01307{bottom:701.946667pt;}
.yef_c01307{bottom:702.720000pt;}
.yf1_c01307{bottom:705.026667pt;}
.yf2_c01307{bottom:705.786667pt;}
.yee_c01307{bottom:713.466667pt;}
.yed_c01307{bottom:715.773333pt;}
.y201_c01307{bottom:731.133333pt;}
.yea_c01307{bottom:735.746667pt;}
.ye9_c01307{bottom:736.506667pt;}
.ye8_c01307{bottom:737.280000pt;}
.yec_c01307{bottom:739.586667pt;}
.yeb_c01307{bottom:740.346667pt;}
.ye3_c01307{bottom:754.946667pt;}
.ye5_c01307{bottom:755.706667pt;}
.ye7_c01307{bottom:757.253333pt;}
.ye6_c01307{bottom:758.013333pt;}
.ye4_c01307{bottom:759.546667pt;}
.ye2_c01307{bottom:766.466667pt;}
.ye0_c01307{bottom:771.066667pt;}
.yde_c01307{bottom:771.840000pt;}
.ye1_c01307{bottom:772.613333pt;}
.ydc_c01307{bottom:774.146667pt;}
.ydf_c01307{bottom:775.680000pt;}
.ydd_c01307{bottom:777.213333pt;}
.ydb_c01307{bottom:777.986667pt;}
.yd9_c01307{bottom:788.733333pt;}
.yda_c01307{bottom:789.506667pt;}
.yd7_c01307{bottom:790.266667pt;}
.yd8_c01307{bottom:791.040000pt;}
.yd6_c01307{bottom:791.813333pt;}
.yd4_c01307{bottom:804.093333pt;}
.yd2_c01307{bottom:807.173333pt;}
.yd0_c01307{bottom:808.706667pt;}
.yce_c01307{bottom:809.466667pt;}
.yd3_c01307{bottom:811.013333pt;}
.yd1_c01307{bottom:812.546667pt;}
.yd5_c01307{bottom:813.306667pt;}
.ycf_c01307{bottom:814.080000pt;}
.ycc_c01307{bottom:820.986667pt;}
.ycb_c01307{bottom:824.826667pt;}
.yc6_c01307{bottom:826.373333pt;}
.ycd_c01307{bottom:827.133333pt;}
.yca_c01307{bottom:827.906667pt;}
.yc9_c01307{bottom:829.440000pt;}
.yc8_c01307{bottom:830.213333pt;}
.yc7_c01307{bottom:830.973333pt;}
.yc5_c01307{bottom:832.506667pt;}
.yc4_c01307{bottom:839.426667pt;}
.yc2_c01307{bottom:840.960000pt;}
.yc1_c01307{bottom:842.493333pt;}
.ybe_c01307{bottom:843.266667pt;}
.ybf_c01307{bottom:844.800000pt;}
.yc3_c01307{bottom:845.573333pt;}
.yc0_c01307{bottom:847.106667pt;}
.y7_c01307{bottom:848.640000pt;}
.ybd_c01307{bottom:849.413333pt;}
.ybc_c01307{bottom:850.173333pt;}
.y6_c01307{bottom:850.946667pt;}
.y5_c01307{bottom:852.480000pt;}
.ybb_c01307{bottom:857.093333pt;}
.yba_c01307{bottom:858.626667pt;}
.yb9_c01307{bottom:860.160000pt;}
.yb7_c01307{bottom:861.693333pt;}
.yb6_c01307{bottom:862.466667pt;}
.yb8_c01307{bottom:863.226667pt;}
.y3_c01307{bottom:864.000000pt;}
.y4_c01307{bottom:864.773333pt;}
.yb5_c01307{bottom:865.533333pt;}
.yb4_c01307{bottom:874.746667pt;}
.yb3_c01307{bottom:877.053333pt;}
.yb1_c01307{bottom:877.826667pt;}
.y2_c01307{bottom:880.893333pt;}
.yb2_c01307{bottom:881.666667pt;}
.y1_c01307{bottom:882.426667pt;}
.yb0_c01307{bottom:887.813333pt;}
.yaf_c01307{bottom:893.186667pt;}
.yae_c01307{bottom:894.720000pt;}
.yac_c01307{bottom:897.026667pt;}
.ya8_c01307{bottom:897.786667pt;}
.yab_c01307{bottom:898.560000pt;}
.yad_c01307{bottom:900.093333pt;}
.yaa_c01307{bottom:900.866667pt;}
.ya9_c01307{bottom:903.173333pt;}
.ya7_c01307{bottom:905.466667pt;}
.ya5_c01307{bottom:908.546667pt;}
.ya3_c01307{bottom:910.853333pt;}
.ya2_c01307{bottom:911.613333pt;}
.ya4_c01307{bottom:912.386667pt;}
.y9f_c01307{bottom:914.693333pt;}
.ya1_c01307{bottom:915.453333pt;}
.ya6_c01307{bottom:916.986667pt;}
.ya0_c01307{bottom:920.826667pt;}
.y9e_c01307{bottom:928.506667pt;}
.y9d_c01307{bottom:930.053333pt;}
.y9c_c01307{bottom:930.813333pt;}
.y9b_c01307{bottom:932.346667pt;}
.y9a_c01307{bottom:933.120000pt;}
.y98_c01307{bottom:933.893333pt;}
.y99_c01307{bottom:938.493333pt;}
.y96_c01307{bottom:946.946667pt;}
.y94_c01307{bottom:949.253333pt;}
.y97_c01307{bottom:950.013333pt;}
.y91_c01307{bottom:950.786667pt;}
.y95_c01307{bottom:951.546667pt;}
.y93_c01307{bottom:953.853333pt;}
.y90_c01307{bottom:954.626667pt;}
.y92_c01307{bottom:956.160000pt;}
.y8f_c01307{bottom:957.693333pt;}
.y8c_c01307{bottom:966.906667pt;}
.y8b_c01307{bottom:967.680000pt;}
.y8e_c01307{bottom:968.453333pt;}
.y8d_c01307{bottom:971.520000pt;}
.y8a_c01307{bottom:972.293333pt;}
.y88_c01307{bottom:983.813333pt;}
.y89_c01307{bottom:984.573333pt;}
.y87_c01307{bottom:986.880000pt;}
.y83_c01307{bottom:987.653333pt;}
.y85_c01307{bottom:988.413333pt;}
.y82_c01307{bottom:989.186667pt;}
.y86_c01307{bottom:991.493333pt;}
.y84_c01307{bottom:992.253333pt;}
.y7c_c01307{bottom:993.786667pt;}
.y7d_c01307{bottom:994.560000pt;}
.y80_c01307{bottom:996.093333pt;}
.y81_c01307{bottom:996.866667pt;}
.y7e_c01307{bottom:997.626667pt;}
.y7f_c01307{bottom:998.400000pt;}
.y7a_c01307{bottom:999.173333pt;}
.y79_c01307{bottom:1003.773333pt;}
.y78_c01307{bottom:1004.546667pt;}
.y7b_c01307{bottom:1005.306667pt;}
.y77_c01307{bottom:1006.853333pt;}
.y76_c01307{bottom:1007.613333pt;}
.y75_c01307{bottom:1011.453333pt;}
.y74_c01307{bottom:1016.826667pt;}
.y72_c01307{bottom:1021.440000pt;}
.y71_c01307{bottom:1022.213333pt;}
.y6f_c01307{bottom:1022.973333pt;}
.y70_c01307{bottom:1025.280000pt;}
.y73_c01307{bottom:1026.053333pt;}
.y1ff_c01307{bottom:1028.346667pt;}
.y200_c01307{bottom:1029.893333pt;}
.y6e_c01307{bottom:1035.266667pt;}
.y6d_c01307{bottom:1036.026667pt;}
.y6b_c01307{bottom:1038.333333pt;}
.y6a_c01307{bottom:1039.106667pt;}
.y6c_c01307{bottom:1042.173333pt;}
.y68_c01307{bottom:1042.946667pt;}
.y63_c01307{bottom:1043.706667pt;}
.y65_c01307{bottom:1045.253333pt;}
.y61_c01307{bottom:1046.786667pt;}
.y66_c01307{bottom:1047.546667pt;}
.y69_c01307{bottom:1048.320000pt;}
.y62_c01307{bottom:1049.853333pt;}
.y67_c01307{bottom:1051.386667pt;}
.y64_c01307{bottom:1052.160000pt;}
.y5f_c01307{bottom:1056.000000pt;}
.y60_c01307{bottom:1059.840000pt;}
.y59_c01307{bottom:1061.373333pt;}
.y58_c01307{bottom:1062.146667pt;}
.y5c_c01307{bottom:1063.680000pt;}
.y5e_c01307{bottom:1064.453333pt;}
.y5a_c01307{bottom:1065.213333pt;}
.y5b_c01307{bottom:1065.986667pt;}
.y1fe_c01307{bottom:1069.053333pt;}
.y55_c01307{bottom:1072.893333pt;}
.y54_c01307{bottom:1073.666667pt;}
.y5d_c01307{bottom:1075.973333pt;}
.y50_c01307{bottom:1078.266667pt;}
.y57_c01307{bottom:1079.813333pt;}
.y52_c01307{bottom:1080.573333pt;}
.y53_c01307{bottom:1082.106667pt;}
.y51_c01307{bottom:1084.413333pt;}
.y56_c01307{bottom:1085.186667pt;}
.y4f_c01307{bottom:1091.333333pt;}
.y4c_c01307{bottom:1095.173333pt;}
.y4d_c01307{bottom:1096.706667pt;}
.y4b_c01307{bottom:1097.466667pt;}
.y4e_c01307{bottom:1098.240000pt;}
.y49_c01307{bottom:1100.546667pt;}
.y48_c01307{bottom:1102.853333pt;}
.y4a_c01307{bottom:1103.613333pt;}
.y47_c01307{bottom:1109.760000pt;}
.y45_c01307{bottom:1111.293333pt;}
.y46_c01307{bottom:1112.066667pt;}
.y44_c01307{bottom:1112.826667pt;}
.y43_c01307{bottom:1113.600000pt;}
.y42_c01307{bottom:1115.133333pt;}
.y41_c01307{bottom:1118.973333pt;}
.y40_c01307{bottom:1119.746667pt;}
.y3f_c01307{bottom:1122.053333pt;}
.y3e_c01307{bottom:1128.186667pt;}
.y3d_c01307{bottom:1130.493333pt;}
.y3c_c01307{bottom:1131.266667pt;}
.y3b_c01307{bottom:1132.026667pt;}
.y38_c01307{bottom:1132.800000pt;}
.y37_c01307{bottom:1134.333333pt;}
.y39_c01307{bottom:1135.866667pt;}
.y3a_c01307{bottom:1136.640000pt;}
.y36_c01307{bottom:1137.413333pt;}
.y34_c01307{bottom:1145.093333pt;}
.y33_c01307{bottom:1145.853333pt;}
.y35_c01307{bottom:1146.626667pt;}
.y2c_c01307{bottom:1147.386667pt;}
.y31_c01307{bottom:1148.160000pt;}
.y2d_c01307{bottom:1148.933333pt;}
.y2e_c01307{bottom:1149.693333pt;}
.y32_c01307{bottom:1152.000000pt;}
.y30_c01307{bottom:1155.066667pt;}
.y2b_c01307{bottom:1155.840000pt;}
.y2f_c01307{bottom:1159.680000pt;}
.y2a_c01307{bottom:1162.746667pt;}
.y28_c01307{bottom:1165.826667pt;}
.y29_c01307{bottom:1166.586667pt;}
.y26_c01307{bottom:1168.133333pt;}
.y27_c01307{bottom:1168.893333pt;}
.y24_c01307{bottom:1169.666667pt;}
.y25_c01307{bottom:1170.426667pt;}
.y23_c01307{bottom:1173.506667pt;}
.y22_c01307{bottom:1178.106667pt;}
.y21_c01307{bottom:1189.626667pt;}
.y1f_c01307{bottom:1190.400000pt;}
.y20_c01307{bottom:1191.933333pt;}
.y1d_c01307{bottom:1195.013333pt;}
.y1e_c01307{bottom:1195.773333pt;}
.y1c_c01307{bottom:1196.546667pt;}
.y1b_c01307{bottom:1198.853333pt;}
.y1a_c01307{bottom:1199.613333pt;}
.y19_c01307{bottom:1218.053333pt;}
.ye_c01307{bottom:1219.586667pt;}
.yc_c01307{bottom:1230.333333pt;}
.yd_c01307{bottom:1232.640000pt;}
.ya_c01307{bottom:1237.253333pt;}
.yb_c01307{bottom:1238.786667pt;}
.y18_c01307{bottom:1241.853333pt;}
.y8_c01307{bottom:1243.386667pt;}
.y9_c01307{bottom:1244.160000pt;}
.y17_c01307{bottom:1251.840000pt;}
.h4_c01307{height:2.764500pt;}
.hc_c01307{height:4.799479pt;}
.hb_c01307{height:5.519401pt;}
.h3_c01307{height:8.303099pt;}
.h9_c01307{height:11.038802pt;}
.h8_c01307{height:13.822500pt;}
.ha_c01307{height:16.606198pt;}
.h7_c01307{height:19.341901pt;}
.h22_c01307{height:22.125599pt;}
.h21_c01307{height:24.861302pt;}
.h5_c01307{height:27.645000pt;}
.h6_c01307{height:30.428698pt;}
.h1a_c01307{height:33.164401pt;}
.h1e_c01307{height:35.948099pt;}
.he_c01307{height:38.683802pt;}
.h17_c01307{height:41.467500pt;}
.h2_c01307{height:44.251198pt;}
.h16_c01307{height:46.986901pt;}
.h10_c01307{height:49.770599pt;}
.h1c_c01307{height:52.506302pt;}
.h12_c01307{height:55.290000pt;}
.h11_c01307{height:58.073698pt;}
.h13_c01307{height:60.809401pt;}
.h15_c01307{height:63.593099pt;}
.h18_c01307{height:66.328802pt;}
.h19_c01307{height:69.112500pt;}
.h1d_c01307{height:71.896198pt;}
.h20_c01307{height:74.631901pt;}
.h1f_c01307{height:77.415599pt;}
.h14_c01307{height:80.151302pt;}
.h1b_c01307{height:82.935000pt;}
.hd_c01307{height:91.238099pt;}
.hf_c01307{height:105.060599pt;}
.h23_c01307{height:116.099401pt;}
.h0_c01307{height:1341.693333pt;}
.h1_c01307{height:1342.000000pt;}
.w0_c01307{width:967.680000pt;}
.w1_c01307{width:968.000000pt;}
.x0_c01307{left:0.000000pt;}
.x1_c01307{left:9.986667pt;}
.x3_c01307{left:17.666667pt;}
.x2_c01307{left:42.240000pt;}
.x4_c01307{left:44.546667pt;}
.x6_c01307{left:52.226667pt;}
.x5_c01307{left:56.826667pt;}
.x7_c01307{left:82.946667pt;}
.x8_c01307{left:96.000000pt;}
.xd_c01307{left:105.213333pt;}
.xe_c01307{left:117.506667pt;}
.x9_c01307{left:151.293333pt;}
.xb_c01307{left:153.600000pt;}
.xc_c01307{left:158.213333pt;}
.xd6_c01307{left:162.813333pt;}
.xa_c01307{left:170.493333pt;}
.x86_c01307{left:172.026667pt;}
.xce_c01307{left:173.573333pt;}
.x4c_c01307{left:186.626667pt;}
.x73_c01307{left:190.466667pt;}
.x4d_c01307{left:194.306667pt;}
.xb1_c01307{left:199.680000pt;}
.x52_c01307{left:201.986667pt;}
.x4e_c01307{left:203.520000pt;}
.x43_c01307{left:205.053333pt;}
.xc6_c01307{left:207.360000pt;}
.x59_c01307{left:208.893333pt;}
.x8a_c01307{left:211.200000pt;}
.x4f_c01307{left:213.506667pt;}
.x95_c01307{left:215.813333pt;}
.x53_c01307{left:217.346667pt;}
.x2e_c01307{left:218.880000pt;}
.x6a_c01307{left:221.946667pt;}
.x20_c01307{left:225.026667pt;}
.x1c_c01307{left:226.560000pt;}
.x87_c01307{left:228.866667pt;}
.xed_c01307{left:230.400000pt;}
.xd7_c01307{left:231.933333pt;}
.x96_c01307{left:233.466667pt;}
.x21_c01307{left:235.013333pt;}
.x39_c01307{left:236.546667pt;}
.xbd_c01307{left:238.853333pt;}
.xf2_c01307{left:241.146667pt;}
.x1d_c01307{left:244.986667pt;}
.x6c_c01307{left:247.293333pt;}
.x2f_c01307{left:248.826667pt;}
.xb7_c01307{left:251.133333pt;}
.xd3_c01307{left:253.440000pt;}
.x74_c01307{left:254.973333pt;}
.xcf_c01307{left:257.280000pt;}
.xa7_c01307{left:259.586667pt;}
.x7b_c01307{left:264.186667pt;}
.x3a_c01307{left:265.733333pt;}
.x22_c01307{left:268.026667pt;}
.xc2_c01307{left:269.573333pt;}
.xf7_c01307{left:272.640000pt;}
.xee_c01307{left:274.173333pt;}
.x44_c01307{left:275.706667pt;}
.x5a_c01307{left:277.253333pt;}
.x75_c01307{left:278.786667pt;}
.xc7_c01307{left:280.320000pt;}
.x7c_c01307{left:283.386667pt;}
.xd0_c01307{left:284.933333pt;}
.x23_c01307{left:288.000000pt;}
.xa2_c01307{left:290.306667pt;}
.x9a_c01307{left:292.613333pt;}
.xb6_c01307{left:297.213333pt;}
.xd8_c01307{left:299.520000pt;}
.x104_c01307{left:301.053333pt;}
.xbe_c01307{left:302.586667pt;}
.x5b_c01307{left:305.666667pt;}
.x54_c01307{left:307.973333pt;}
.xbf_c01307{left:310.266667pt;}
.xbb_c01307{left:313.346667pt;}
.xd9_c01307{left:314.880000pt;}
.xb2_c01307{left:316.413333pt;}
.x45_c01307{left:319.493333pt;}
.xfd_c01307{left:321.786667pt;}
.x6d_c01307{left:326.400000pt;}
.xa0_c01307{left:327.933333pt;}
.x12_c01307{left:329.466667pt;}
.xf3_c01307{left:331.013333pt;}
.x9b_c01307{left:333.306667pt;}
.x3b_c01307{left:337.146667pt;}
.xa3_c01307{left:340.226667pt;}
.x7d_c01307{left:343.293333pt;}
.x13_c01307{left:345.600000pt;}
.xa8_c01307{left:347.906667pt;}
.x108_c01307{left:349.440000pt;}
.x24_c01307{left:351.746667pt;}
.x61_c01307{left:355.586667pt;}
.x91_c01307{left:357.120000pt;}
.x10d_c01307{left:358.653333pt;}
.x62_c01307{left:360.186667pt;}
.xb3_c01307{left:362.493333pt;}
.x46_c01307{left:365.573333pt;}
.x30_c01307{left:368.640000pt;}
.xda_c01307{left:370.173333pt;}
.x25_c01307{left:372.480000pt;}
.xa9_c01307{left:374.013333pt;}
.x14_c01307{left:376.320000pt;}
.x31_c01307{left:380.933333pt;}
.xdf_c01307{left:384.000000pt;}
.xc8_c01307{left:386.306667pt;}
.x63_c01307{left:389.373333pt;}
.x5c_c01307{left:390.906667pt;}
.x26_c01307{left:392.453333pt;}
.x6e_c01307{left:395.520000pt;}
.x8b_c01307{left:397.053333pt;}
.xd4_c01307{left:398.586667pt;}
.x5d_c01307{left:400.133333pt;}
.xd1_c01307{left:401.666667pt;}
.x3c_c01307{left:403.973333pt;}
.xe8_c01307{left:405.506667pt;}
.x6b_c01307{left:407.040000pt;}
.xfa_c01307{left:408.573333pt;}
.x10a_c01307{left:410.106667pt;}
.x15_c01307{left:412.413333pt;}
.xb8_c01307{left:415.493333pt;}
.x64_c01307{left:420.093333pt;}
.x109_c01307{left:423.173333pt;}
.xe0_c01307{left:424.706667pt;}
.xb4_c01307{left:426.240000pt;}
.x16_c01307{left:428.546667pt;}
.xdb_c01307{left:430.853333pt;}
.xfe_c01307{left:433.146667pt;}
.xcc_c01307{left:436.226667pt;}
.x7e_c01307{left:437.760000pt;}
.xd2_c01307{left:439.293333pt;}
.xb9_c01307{left:440.826667pt;}
.x55_c01307{left:443.906667pt;}
.x1e_c01307{left:445.440000pt;}
.x102_c01307{left:448.506667pt;}
.x32_c01307{left:450.053333pt;}
.xa4_c01307{left:453.120000pt;}
.x65_c01307{left:456.960000pt;}
.x6f_c01307{left:459.266667pt;}
.x7f_c01307{left:460.800000pt;}
.xbc_c01307{left:463.866667pt;}
.xf4_c01307{left:465.413333pt;}
.x17_c01307{left:466.946667pt;}
.xe4_c01307{left:470.013333pt;}
.x27_c01307{left:471.546667pt;}
.x33_c01307{left:475.386667pt;}
.xac_c01307{left:477.693333pt;}
.x34_c01307{left:479.226667pt;}
.x66_c01307{left:481.533333pt;}
.x1f_c01307{left:483.840000pt;}
.xba_c01307{left:487.680000pt;}
.xc3_c01307{left:494.586667pt;}
.x97_c01307{left:496.893333pt;}
.xa1_c01307{left:499.200000pt;}
.xa5_c01307{left:500.733333pt;}
.x5e_c01307{left:502.266667pt;}
.xec_c01307{left:503.813333pt;}
.x3d_c01307{left:505.346667pt;}
.x70_c01307{left:507.653333pt;}
.xe9_c01307{left:509.946667pt;}
.x5f_c01307{left:511.493333pt;}
.x47_c01307{left:513.026667pt;}
.x28_c01307{left:514.560000pt;}
.xe2_c01307{left:524.546667pt;}
.x56_c01307{left:526.853333pt;}
.x48_c01307{left:529.920000pt;}
.x29_c01307{left:532.226667pt;}
.x50_c01307{left:534.533333pt;}
.x18_c01307{left:537.600000pt;}
.x8c_c01307{left:539.906667pt;}
.xea_c01307{left:541.440000pt;}
.x76_c01307{left:542.973333pt;}
.xad_c01307{left:544.506667pt;}
.x51_c01307{left:547.586667pt;}
.x80_c01307{left:549.893333pt;}
.x10b_c01307{left:554.493333pt;}
.xff_c01307{left:556.026667pt;}
.x11_c01307{left:557.573333pt;}
.x105_c01307{left:560.640000pt;}
.xc0_c01307{left:562.173333pt;}
.x106_c01307{left:563.706667pt;}
.x2a_c01307{left:565.253333pt;}
.xfc_c01307{left:567.546667pt;}
.xc9_c01307{left:569.853333pt;}
.xef_c01307{left:572.160000pt;}
.x9c_c01307{left:573.693333pt;}
.x71_c01307{left:575.226667pt;}
.xaa_c01307{left:580.613333pt;}
.xf8_c01307{left:582.906667pt;}
.x3e_c01307{left:584.453333pt;}
.x49_c01307{left:589.053333pt;}
.xf5_c01307{left:590.586667pt;}
.xcd_c01307{left:592.893333pt;}
.x110_c01307{left:597.506667pt;}
.x81_c01307{left:599.813333pt;}
.x10_c01307{left:602.880000pt;}
.x92_c01307{left:604.413333pt;}
.x35_c01307{left:607.493333pt;}
.x10e_c01307{left:609.026667pt;}
.x88_c01307{left:615.173333pt;}
.x100_c01307{left:620.546667pt;}
.x2b_c01307{left:622.080000pt;}
.x3f_c01307{left:625.920000pt;}
.x4a_c01307{left:627.453333pt;}
.xe6_c01307{left:628.986667pt;}
.x10f_c01307{left:630.533333pt;}
.xc1_c01307{left:632.066667pt;}
.x57_c01307{left:635.133333pt;}
.x19_c01307{left:637.440000pt;}
.x82_c01307{left:639.746667pt;}
.x98_c01307{left:641.280000pt;}
.xf_c01307{left:645.120000pt;}
.x2c_c01307{left:647.426667pt;}
.xae_c01307{left:649.733333pt;}
.xe3_c01307{left:651.266667pt;}
.x36_c01307{left:653.573333pt;}
.xe5_c01307{left:655.106667pt;}
.xca_c01307{left:656.640000pt;}
.x89_c01307{left:658.946667pt;}
.x99_c01307{left:661.253333pt;}
.x107_c01307{left:662.786667pt;}
.x9d_c01307{left:668.933333pt;}
.xaf_c01307{left:670.466667pt;}
.xc4_c01307{left:672.773333pt;}
.xe1_c01307{left:674.306667pt;}
.xf6_c01307{left:675.840000pt;}
.x40_c01307{left:678.906667pt;}
.x4b_c01307{left:682.746667pt;}
.xf0_c01307{left:685.826667pt;}
.xb0_c01307{left:687.360000pt;}
.x2d_c01307{left:688.893333pt;}
.xab_c01307{left:691.973333pt;}
.xa6_c01307{left:695.040000pt;}
.x8d_c01307{left:696.573333pt;}
.xdc_c01307{left:698.106667pt;}
.x77_c01307{left:699.653333pt;}
.xfb_c01307{left:703.493333pt;}
.x67_c01307{left:705.026667pt;}
.x37_c01307{left:707.333333pt;}
.x9e_c01307{left:709.626667pt;}
.x93_c01307{left:714.240000pt;}
.xe7_c01307{left:717.306667pt;}
.x113_c01307{left:718.853333pt;}
.x68_c01307{left:721.146667pt;}
.xf9_c01307{left:722.693333pt;}
.x8e_c01307{left:724.226667pt;}
.xcb_c01307{left:725.760000pt;}
.x83_c01307{left:730.373333pt;}
.xb5_c01307{left:731.906667pt;}
.x103_c01307{left:733.440000pt;}
.x72_c01307{left:734.973333pt;}
.x60_c01307{left:738.053333pt;}
.x94_c01307{left:740.346667pt;}
.xeb_c01307{left:741.893333pt;}
.x78_c01307{left:744.186667pt;}
.x111_c01307{left:745.733333pt;}
.x38_c01307{left:748.026667pt;}
.x41_c01307{left:750.333333pt;}
.x84_c01307{left:751.866667pt;}
.xdd_c01307{left:757.253333pt;}
.x79_c01307{left:758.786667pt;}
.x1a_c01307{left:760.320000pt;}
.x8f_c01307{left:762.626667pt;}
.xd5_c01307{left:764.160000pt;}
.x101_c01307{left:765.693333pt;}
.xf1_c01307{left:769.533333pt;}
.x10c_c01307{left:771.840000pt;}
.x7a_c01307{left:774.906667pt;}
.x42_c01307{left:777.986667pt;}
.x112_c01307{left:783.360000pt;}
.x58_c01307{left:787.973333pt;}
.x9f_c01307{left:790.266667pt;}
.x90_c01307{left:792.573333pt;}
.x85_c01307{left:794.106667pt;}
.x1b_c01307{left:803.333333pt;}
.x69_c01307{left:807.173333pt;}
.xde_c01307{left:809.466667pt;}
.xc5_c01307{left:814.853333pt;}
.x114_c01307{left:837.120000pt;}
.x115_c01307{left:844.026667pt;}
.x116_c01307{left:852.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_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_c1aef177584f21c400578628.woff2')format("woff");}.ff1_c01308{font-family:ff1_c01308;line-height:1.109863;font-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_c01308{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m19f_c01308{transform:matrix(0.032600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032600,0.000000,0.000000,0.250000,0,0);}
.m6c_c01308{transform:matrix(0.051075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051075,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01308{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m139_c01308{transform:matrix(0.069025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069025,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01308{transform:matrix(0.079175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.079175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.079175,0.000000,0.000000,0.250000,0,0);}
.mf5_c01308{transform:matrix(0.082575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082575,0.000000,0.000000,0.250000,0,0);}
.m91_c01308{transform:matrix(0.105025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105025,0.000000,0.000000,0.250000,0,0);}
.m181_c01308{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);}
.m135_c01308{transform:matrix(0.109800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109800,0.000000,0.000000,0.250000,0,0);}
.m99_c01308{transform:matrix(0.110050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110050,0.000000,0.000000,0.250000,0,0);}
.m8f_c01308{transform:matrix(0.110700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110700,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01308{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.meb_c01308{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);}
.m1ac_c01308{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.ma8_c01308{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);}
.m9b_c01308{transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);}
.m11d_c01308{transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124975,0.000000,0.000000,0.250000,0,0);}
.m20_c01308{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m145_c01308{transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);}
.mf4_c01308{transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);}
.m149_c01308{transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);}
.mef_c01308{transform:matrix(0.127050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127050,0.000000,0.000000,0.250000,0,0);}
.m182_c01308{transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130625,0.000000,0.000000,0.250000,0,0);}
.m3b_c01308{transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);}
.m18d_c01308{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);}
.m11c_c01308{transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136925,0.000000,0.000000,0.250000,0,0);}
.m143_c01308{transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);}
.m19b_c01308{transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);}
.m39_c01308{transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);}
.m108_c01308{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);}
.m19a_c01308{transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143425,0.000000,0.000000,0.250000,0,0);}
.m9a_c01308{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m2a_c01308{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me8_c01308{transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);}
.m192_c01308{transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);}
.me1_c01308{transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);}
.mf3_c01308{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);}
.m130_c01308{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m15c_c01308{transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);}
.m161_c01308{transform:matrix(0.146100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146100,0.000000,0.000000,0.250000,0,0);}
.mdc_c01308{transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);}
.m12e_c01308{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);}
.m12a_c01308{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.mf2_c01308{transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);}
.m77_c01308{transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);}
.m16d_c01308{transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);}
.m19_c01308{transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);}
.m3a_c01308{transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);}
.m83_c01308{transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149600,0.000000,0.000000,0.250000,0,0);}
.m35_c01308{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);}
.m190_c01308{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);}
.m184_c01308{transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153625,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01308{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m15f_c01308{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);}
.mf6_c01308{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m3d_c01308{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m140_c01308{transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);}
.m6d_c01308{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);}
.m126_c01308{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m14e_c01308{transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156725,0.000000,0.000000,0.250000,0,0);}
.m136_c01308{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m42_c01308{transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);}
.m12f_c01308{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01308{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.m11a_c01308{transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161025,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01308{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.mb0_c01308{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);}
.me4_c01308{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m3f_c01308{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01308{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m14b_c01308{transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163425,0.000000,0.000000,0.250000,0,0);}
.m16f_c01308{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);}
.mc_c01308{transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);}
.mee_c01308{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.m82_c01308{transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167675,0.000000,0.000000,0.250000,0,0);}
.me3_c01308{transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);}
.m152_c01308{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);}
.m148_c01308{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m162_c01308{transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);}
.m3e_c01308{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.m98_c01308{transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169650,0.000000,0.000000,0.250000,0,0);}
.m173_c01308{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.mf1_c01308{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.mdf_c01308{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.md2_c01308{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m165_c01308{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m157_c01308{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.m142_c01308{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m14a_c01308{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.md3_c01308{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m109_c01308{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.mab_c01308{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m172_c01308{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m61_c01308{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);}
.m147_c01308{transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);}
.m164_c01308{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.m13c_c01308{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);}
.m1a5_c01308{transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);}
.m186_c01308{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m198_c01308{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.m151_c01308{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.m12_c01308{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.m2c_c01308{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);}
.m180_c01308{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.m133_c01308{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m4b_c01308{transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);}
.m18f_c01308{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);}
.m64_c01308{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m13a_c01308{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m171_c01308{transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);}
.m150_c01308{transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);}
.m7d_c01308{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.m188_c01308{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.m114_c01308{transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);}
.m168_c01308{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.mb8_c01308{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.m117_c01308{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);}
.m193_c01308{transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);}
.md1_c01308{transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);}
.med_c01308{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);}
.mfd_c01308{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);}
.m11e_c01308{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m10_c01308{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m179_c01308{transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);}
.m7a_c01308{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);}
.mb7_c01308{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m1a_c01308{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.m129_c01308{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m15d_c01308{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.md4_c01308{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m125_c01308{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);}
.m62_c01308{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);}
.m12b_c01308{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.m132_c01308{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m45_c01308{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.m154_c01308{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);}
.md0_c01308{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.m78_c01308{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);}
.mf9_c01308{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);}
.m9d_c01308{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m13b_c01308{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.m32_c01308{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);}
.mec_c01308{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m19d_c01308{transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);}
.m103_c01308{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);}
.ma9_c01308{transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);}
.m85_c01308{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);}
.m104_c01308{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);}
.ma7_c01308{transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195450,0.000000,0.000000,0.250000,0,0);}
.m119_c01308{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);}
.m199_c01308{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m196_c01308{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);}
.m37_c01308{transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196700,0.000000,0.000000,0.250000,0,0);}
.m71_c01308{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);}
.m15b_c01308{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);}
.mea_c01308{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);}
.m163_c01308{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m134_c01308{transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);}
.me5_c01308{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);}
.m11b_c01308{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.m65_c01308{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.m101_c01308{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);}
.mfe_c01308{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);}
.m15_c01308{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m4a_c01308{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m27_c01308{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);}
.m131_c01308{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m13f_c01308{transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201850,0.000000,0.000000,0.250000,0,0);}
.m14_c01308{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);}
.mb4_c01308{transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);}
.m121_c01308{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);}
.mc8_c01308{transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203500,0.000000,0.000000,0.250000,0,0);}
.m52_c01308{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.md8_c01308{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m194_c01308{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m187_c01308{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m197_c01308{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);}
.m127_c01308{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);}
.m5d_c01308{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.m12c_c01308{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);}
.mb1_c01308{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.md9_c01308{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m66_c01308{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);}
.m4_c01308{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);}
.mf7_c01308{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);}
.m189_c01308{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m3c_c01308{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m81_c01308{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);}
.mfb_c01308{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m146_c01308{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.me_c01308{transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);}
.m92_c01308{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m4d_c01308{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.m30_c01308{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m16a_c01308{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m97_c01308{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.mb5_c01308{transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210225,0.000000,0.000000,0.250000,0,0);}
.m8c_c01308{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.m4c_c01308{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.mc4_c01308{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);}
.m6e_c01308{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m9c_c01308{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m113_c01308{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);}
.m10e_c01308{transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212775,0.000000,0.000000,0.250000,0,0);}
.m195_c01308{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);}
.m2b_c01308{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m16e_c01308{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m56_c01308{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01308{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.m120_c01308{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.m7c_c01308{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.mdb_c01308{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m16c_c01308{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);}
.m13e_c01308{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);}
.m155_c01308{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m122_c01308{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);}
.m111_c01308{transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);}
.mfc_c01308{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);}
.m1a7_c01308{transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);}
.m73_c01308{transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);}
.mc9_c01308{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.mb9_c01308{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);}
.m15a_c01308{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);}
.m169_c01308{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);}
.m95_c01308{transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);}
.m141_c01308{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);}
.m1a4_c01308{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);}
.m70_c01308{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m158_c01308{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);}
.mf8_c01308{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);}
.mc0_c01308{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);}
.mc5_c01308{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.m14d_c01308{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);}
.m69_c01308{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);}
.m94_c01308{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m53_c01308{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.mb6_c01308{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);}
.m124_c01308{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);}
.m19e_c01308{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);}
.m4e_c01308{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);}
.m14c_c01308{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);}
.maa_c01308{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m160_c01308{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.md6_c01308{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m6b_c01308{transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);}
.mb2_c01308{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);}
.m128_c01308{transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);}
.m8a_c01308{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);}
.m89_c01308{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m7_c01308{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m86_c01308{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m48_c01308{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);}
.m11f_c01308{transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);}
.m17d_c01308{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);}
.m58_c01308{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.m18c_c01308{transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);}
.mb_c01308{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);}
.ma2_c01308{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.m17a_c01308{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);}
.m46_c01308{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.mc3_c01308{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);}
.me2_c01308{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.me0_c01308{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mfa_c01308{transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);}
.m13d_c01308{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.mba_c01308{transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228825,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01308{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);}
.m110_c01308{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);}
.m74_c01308{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);}
.me7_c01308{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);}
.m166_c01308{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);}
.mb3_c01308{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.m112_c01308{transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);}
.m51_c01308{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);}
.m183_c01308{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.m118_c01308{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);}
.m144_c01308{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);}
.m106_c01308{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);}
.me6_c01308{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m7e_c01308{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);}
.m100_c01308{transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);}
.m10c_c01308{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.mbe_c01308{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);}
.m116_c01308{transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);}
.me9_c01308{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);}
.m55_c01308{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m5f_c01308{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m18_c01308{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);}
.m63_c01308{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);}
.m21_c01308{transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);}
.m2e_c01308{transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241175,0.000000,0.000000,0.250000,0,0);}
.m123_c01308{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);}
.m36_c01308{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.m10d_c01308{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);}
.m2f_c01308{transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);}
.m115_c01308{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.m19c_c01308{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);}
.ma_c01308{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);}
.m16b_c01308{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);}
.m87_c01308{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m10b_c01308{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);}
.m18e_c01308{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.maf_c01308{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);}
.m7b_c01308{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);}
.m18a_c01308{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);}
.m10f_c01308{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m5e_c01308{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m10a_c01308{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);}
.m8e_c01308{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);}
.m15e_c01308{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m167_c01308{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m17f_c01308{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);}
.mae_c01308{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);}
.m6f_c01308{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md_c01308{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);}
.mda_c01308{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);}
.mc7_c01308{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);}
.mf_c01308{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);}
.m13_c01308{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m67_c01308{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m44_c01308{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01308{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);}
.mad_c01308{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01308{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);}
.m49_c01308{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);}
.m79_c01308{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m38_c01308{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);}
.m43_c01308{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma0_c01308{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m54_c01308{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);}
.m59_c01308{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c01308{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);}
.m75_c01308{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);}
.mcd_c01308{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5_c01308{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11_c01308{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);}
.m47_c01308{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01308{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m34_c01308{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);}
.m33_c01308{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc6_c01308{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c01308{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m40_c01308{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m8_c01308{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m41_c01308{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m50_c01308{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m23_c01308{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c01308{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);}
.m88_c01308{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mca_c01308{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m80_c01308{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m22_c01308{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);}
.mff_c01308{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);}
.mdd_c01308{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m84_c01308{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);}
.mbc_c01308{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mde_c01308{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m159_c01308{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01308{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);}
.mf0_c01308{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.md7_c01308{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m18b_c01308{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m24_c01308{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01308{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m57_c01308{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01308{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m137_c01308{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);}
.ma1_c01308{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01308{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mac_c01308{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);}
.m107_c01308{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01308{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m72_c01308{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mce_c01308{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m14f_c01308{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m76_c01308{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m177_c01308{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8b_c01308{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);}
.m1e_c01308{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m153_c01308{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m12d_c01308{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mbb_c01308{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m156_c01308{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m105_c01308{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mcb_c01308{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);}
.mbd_c01308{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m90_c01308{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mcc_c01308{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.ma4_c01308{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m17c_c01308{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m25_c01308{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m31_c01308{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01308{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);}
.ma5_c01308{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01308{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01308{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m68_c01308{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);}
.m1_c01308{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c01308{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m170_c01308{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m2_c01308{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m96_c01308{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);}
.m102_c01308{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01308{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01308{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.mcf_c01308{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m178_c01308{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01308{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m185_c01308{transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.815000,0.000000,0.000000,0.250000,0,0);}
.m93_c01308{transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);}
.m138_c01308{transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);}
.m17b_c01308{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.m26_c01308{transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);}
.m9e_c01308{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.md5_c01308{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01308{transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.035000,0.000000,0.000000,0.250000,0,0);}
.m8d_c01308{transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.087500,0.000000,0.000000,0.250000,0,0);}
.m17e_c01308{transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.100000,0.000000,0.000000,0.250000,0,0);}
.m60_c01308{transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);}
.m191_c01308{transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);}
.m176_c01308{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m28_c01308{transform:matrix(1.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.640000,0.000000,0.000000,0.250000,0,0);}
.m175_c01308{transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);}
.m29_c01308{transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.805000,0.000000,0.000000,0.250000,0,0);}
.mc2_c01308{transform:matrix(1.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.875000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01308{transform:matrix(2.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.242500,0.000000,0.000000,0.250000,0,0);}
.m17_c01308{transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.025000,0.000000,0.000000,0.250000,0,0);}
.mc1_c01308{transform:matrix(3.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.127500,0.000000,0.000000,0.250000,0,0);}
.m174_c01308{transform:matrix(3.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.640000,0.000000,0.000000,0.250000,0,0);}
.v0_c01308{vertical-align:0.000000px;}
.v1_c01308{vertical-align:3.480000px;}
.ls1_c01308{letter-spacing:0.000000px;}
.ls0_c01308{letter-spacing:44.208000px;}
.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:-22.803420px;}
.ws1_c01308{word-spacing:0.000000px;}
.fc0_c01308{color:transparent;}
.fs5_c01308{font-size:3.456000px;}
.fs10_c01308{font-size:6.000000px;}
.fs16_c01308{font-size:6.900000px;}
.fs1_c01308{font-size:10.380000px;}
.fs15_c01308{font-size:13.800000px;}
.fs0_c01308{font-size:17.280000px;}
.fs13_c01308{font-size:20.760000px;}
.fs14_c01308{font-size:24.180000px;}
.fs11_c01308{font-size:27.660000px;}
.fs12_c01308{font-size:31.080000px;}
.fs19_c01308{font-size:34.560000px;}
.fs1b_c01308{font-size:38.040000px;}
.fs18_c01308{font-size:41.460000px;}
.fs17_c01308{font-size:44.940000px;}
.fsc_c01308{font-size:48.360000px;}
.fs8_c01308{font-size:51.840000px;}
.fs7_c01308{font-size:55.320000px;}
.fse_c01308{font-size:58.740000px;}
.fs9_c01308{font-size:62.220000px;}
.fs1a_c01308{font-size:65.640000px;}
.fs6_c01308{font-size:69.120000px;}
.fsa_c01308{font-size:72.600000px;}
.fsf_c01308{font-size:76.020000px;}
.fs2_c01308{font-size:79.500000px;}
.fsd_c01308{font-size:82.920000px;}
.fs4_c01308{font-size:86.400000px;}
.fs3_c01308{font-size:89.880000px;}
.fs1d_c01308{font-size:93.300000px;}
.fs1f_c01308{font-size:96.780000px;}
.fs1c_c01308{font-size:100.200000px;}
.fs1e_c01308{font-size:103.680000px;}
.fsb_c01308{font-size:107.160000px;}
.fs20_c01308{font-size:196.980000px;}
.y0_c01308{bottom:0.000000px;}
.y1f0_c01308{bottom:201.315000px;}
.y1ee_c01308{bottom:202.170000px;}
.y1ef_c01308{bottom:203.040000px;}
.y1f1_c01308{bottom:209.085000px;}
.y1f2_c01308{bottom:209.955000px;}
.y1f3_c01308{bottom:210.810000px;}
.y1f4_c01308{bottom:215.130000px;}
.y1e5_c01308{bottom:220.320000px;}
.y1e4_c01308{bottom:223.770000px;}
.y1ea_c01308{bottom:224.640000px;}
.y1ec_c01308{bottom:225.510000px;}
.y1e7_c01308{bottom:226.365000px;}
.y1e6_c01308{bottom:227.235000px;}
.y1eb_c01308{bottom:228.960000px;}
.y1e8_c01308{bottom:229.830000px;}
.y1ed_c01308{bottom:230.685000px;}
.y1de_c01308{bottom:242.790000px;}
.y1e9_c01308{bottom:243.645000px;}
.y1e0_c01308{bottom:244.515000px;}
.y1df_c01308{bottom:246.240000px;}
.y1e2_c01308{bottom:247.110000px;}
.y1e1_c01308{bottom:249.690000px;}
.y1e3_c01308{bottom:251.430000px;}
.y1d6_c01308{bottom:263.520000px;}
.y1d8_c01308{bottom:264.390000px;}
.y1d7_c01308{bottom:266.115000px;}
.y1da_c01308{bottom:266.970000px;}
.y1db_c01308{bottom:267.840000px;}
.y1d9_c01308{bottom:268.710000px;}
.y1dd_c01308{bottom:269.565000px;}
.y1dc_c01308{bottom:271.290000px;}
.y1cb_c01308{bottom:283.395000px;}
.y1cd_c01308{bottom:284.250000px;}
.y1cc_c01308{bottom:285.120000px;}
.y1d0_c01308{bottom:285.990000px;}
.y1d1_c01308{bottom:286.845000px;}
.y1d3_c01308{bottom:287.715000px;}
.y1d5_c01308{bottom:288.570000px;}
.y1d2_c01308{bottom:289.440000px;}
.y1ce_c01308{bottom:291.165000px;}
.y1cf_c01308{bottom:292.035000px;}
.y1d4_c01308{bottom:293.760000px;}
.y1c5_c01308{bottom:298.950000px;}
.y1c4_c01308{bottom:300.675000px;}
.y1c7_c01308{bottom:301.530000px;}
.y1c8_c01308{bottom:303.270000px;}
.y1c9_c01308{bottom:306.720000px;}
.y1c3_c01308{bottom:307.590000px;}
.y1c0_c01308{bottom:308.445000px;}
.y1ca_c01308{bottom:309.315000px;}
.y1c6_c01308{bottom:310.170000px;}
.y1ba_c01308{bottom:311.040000px;}
.y1bf_c01308{bottom:311.910000px;}
.y1c1_c01308{bottom:312.765000px;}
.y1b8_c01308{bottom:313.635000px;}
.y1be_c01308{bottom:316.230000px;}
.y1b6_c01308{bottom:317.955000px;}
.y1b9_c01308{bottom:318.810000px;}
.y1b7_c01308{bottom:319.680000px;}
.y1bb_c01308{bottom:320.550000px;}
.y1bc_c01308{bottom:321.405000px;}
.y1c2_c01308{bottom:322.275000px;}
.y1bd_c01308{bottom:324.870000px;}
.y1ac_c01308{bottom:328.320000px;}
.y1b0_c01308{bottom:329.190000px;}
.y1b1_c01308{bottom:330.045000px;}
.y1ae_c01308{bottom:330.915000px;}
.y1ad_c01308{bottom:331.770000px;}
.y1af_c01308{bottom:332.640000px;}
.y1b3_c01308{bottom:335.235000px;}
.y1b5_c01308{bottom:336.090000px;}
.y1ab_c01308{bottom:337.830000px;}
.y1b4_c01308{bottom:339.555000px;}
.y1b2_c01308{bottom:344.730000px;}
.y1a3_c01308{bottom:347.325000px;}
.y1a5_c01308{bottom:348.195000px;}
.y1a4_c01308{bottom:349.050000px;}
.y1a7_c01308{bottom:350.790000px;}
.y1a8_c01308{bottom:351.645000px;}
.y1a9_c01308{bottom:352.515000px;}
.y1a6_c01308{bottom:354.240000px;}
.y1aa_c01308{bottom:356.835000px;}
.y19c_c01308{bottom:366.330000px;}
.y19d_c01308{bottom:369.795000px;}
.y19f_c01308{bottom:370.650000px;}
.y19e_c01308{bottom:372.390000px;}
.y1a0_c01308{bottom:374.115000px;}
.y1a2_c01308{bottom:374.970000px;}
.y1a1_c01308{bottom:375.840000px;}
.y196_c01308{bottom:386.205000px;}
.y199_c01308{bottom:387.930000px;}
.y19a_c01308{bottom:388.800000px;}
.y197_c01308{bottom:389.670000px;}
.y198_c01308{bottom:391.395000px;}
.y19b_c01308{bottom:394.845000px;}
.y18c_c01308{bottom:405.210000px;}
.y18d_c01308{bottom:408.675000px;}
.y193_c01308{bottom:409.530000px;}
.y194_c01308{bottom:410.400000px;}
.y190_c01308{bottom:412.995000px;}
.y192_c01308{bottom:415.590000px;}
.y18f_c01308{bottom:420.765000px;}
.y191_c01308{bottom:422.490000px;}
.y18e_c01308{bottom:425.955000px;}
.y195_c01308{bottom:426.810000px;}
.y183_c01308{bottom:427.680000px;}
.y185_c01308{bottom:428.550000px;}
.y188_c01308{bottom:429.405000px;}
.y18a_c01308{bottom:431.130000px;}
.y184_c01308{bottom:433.725000px;}
.y186_c01308{bottom:434.595000px;}
.y189_c01308{bottom:435.450000px;}
.y18b_c01308{bottom:436.320000px;}
.y17d_c01308{bottom:445.830000px;}
.y17e_c01308{bottom:446.685000px;}
.y187_c01308{bottom:447.555000px;}
.y17f_c01308{bottom:450.150000px;}
.y180_c01308{bottom:451.005000px;}
.y181_c01308{bottom:451.875000px;}
.y182_c01308{bottom:456.195000px;}
.y174_c01308{bottom:459.645000px;}
.y177_c01308{bottom:464.835000px;}
.y17b_c01308{bottom:466.560000px;}
.y175_c01308{bottom:468.285000px;}
.y179_c01308{bottom:470.010000px;}
.y178_c01308{bottom:470.880000px;}
.y176_c01308{bottom:471.750000px;}
.y17c_c01308{bottom:473.475000px;}
.y17a_c01308{bottom:476.925000px;}
.y16e_c01308{bottom:487.290000px;}
.y171_c01308{bottom:489.885000px;}
.y16f_c01308{bottom:490.755000px;}
.y173_c01308{bottom:491.610000px;}
.y16d_c01308{bottom:492.480000px;}
.y172_c01308{bottom:493.350000px;}
.y170_c01308{bottom:495.930000px;}
.y165_c01308{bottom:508.890000px;}
.y164_c01308{bottom:509.760000px;}
.y166_c01308{bottom:510.630000px;}
.y163_c01308{bottom:511.485000px;}
.y167_c01308{bottom:512.355000px;}
.y168_c01308{bottom:514.080000px;}
.y16b_c01308{bottom:514.950000px;}
.y16c_c01308{bottom:521.850000px;}
.y16a_c01308{bottom:527.040000px;}
.y15a_c01308{bottom:528.765000px;}
.y169_c01308{bottom:529.635000px;}
.y159_c01308{bottom:530.490000px;}
.y15b_c01308{bottom:531.360000px;}
.y15d_c01308{bottom:532.230000px;}
.y15c_c01308{bottom:533.085000px;}
.y162_c01308{bottom:533.955000px;}
.y15f_c01308{bottom:534.810000px;}
.y160_c01308{bottom:535.680000px;}
.y15e_c01308{bottom:537.405000px;}
.y161_c01308{bottom:540.870000px;}
.y1fc_c01308{bottom:545.190000px;}
.y153_c01308{bottom:549.510000px;}
.y155_c01308{bottom:551.235000px;}
.y152_c01308{bottom:552.960000px;}
.y157_c01308{bottom:553.830000px;}
.y156_c01308{bottom:556.410000px;}
.y158_c01308{bottom:557.280000px;}
.y154_c01308{bottom:560.730000px;}
.y1fb_c01308{bottom:567.645000px;}
.y14c_c01308{bottom:569.370000px;}
.y14a_c01308{bottom:571.110000px;}
.y14e_c01308{bottom:571.965000px;}
.y1fa_c01308{bottom:572.835000px;}
.y150_c01308{bottom:573.690000px;}
.y14b_c01308{bottom:575.430000px;}
.y14d_c01308{bottom:577.155000px;}
.y151_c01308{bottom:578.010000px;}
.y14f_c01308{bottom:587.520000px;}
.y143_c01308{bottom:589.245000px;}
.y144_c01308{bottom:590.970000px;}
.y146_c01308{bottom:593.565000px;}
.y149_c01308{bottom:595.290000px;}
.y148_c01308{bottom:596.160000px;}
.y145_c01308{bottom:597.030000px;}
.y147_c01308{bottom:598.755000px;}
.y13b_c01308{bottom:609.990000px;}
.y13e_c01308{bottom:612.570000px;}
.y13c_c01308{bottom:613.440000px;}
.y142_c01308{bottom:615.165000px;}
.y13f_c01308{bottom:616.035000px;}
.y13d_c01308{bottom:616.890000px;}
.y140_c01308{bottom:618.630000px;}
.y141_c01308{bottom:619.485000px;}
.y135_c01308{bottom:629.850000px;}
.y138_c01308{bottom:631.590000px;}
.y137_c01308{bottom:633.315000px;}
.y134_c01308{bottom:634.170000px;}
.y13a_c01308{bottom:635.040000px;}
.y136_c01308{bottom:635.910000px;}
.y139_c01308{bottom:638.490000px;}
.y129_c01308{bottom:648.870000px;}
.y12a_c01308{bottom:649.725000px;}
.y12c_c01308{bottom:651.450000px;}
.y12f_c01308{bottom:652.320000px;}
.y12d_c01308{bottom:653.190000px;}
.y133_c01308{bottom:654.045000px;}
.y12b_c01308{bottom:655.770000px;}
.y131_c01308{bottom:656.640000px;}
.y12e_c01308{bottom:658.365000px;}
.y130_c01308{bottom:659.235000px;}
.y132_c01308{bottom:660.090000px;}
.y121_c01308{bottom:669.600000px;}
.y123_c01308{bottom:670.470000px;}
.y124_c01308{bottom:671.325000px;}
.y122_c01308{bottom:674.790000px;}
.y125_c01308{bottom:678.240000px;}
.y126_c01308{bottom:679.110000px;}
.y127_c01308{bottom:679.965000px;}
.y128_c01308{bottom:681.690000px;}
.y118_c01308{bottom:688.605000px;}
.y11b_c01308{bottom:689.475000px;}
.y119_c01308{bottom:690.330000px;}
.y11c_c01308{bottom:692.070000px;}
.y11d_c01308{bottom:692.925000px;}
.y11e_c01308{bottom:693.795000px;}
.y11a_c01308{bottom:695.520000px;}
.y11f_c01308{bottom:698.970000px;}
.y120_c01308{bottom:699.840000px;}
.y113_c01308{bottom:707.610000px;}
.y115_c01308{bottom:708.480000px;}
.y117_c01308{bottom:710.205000px;}
.y110_c01308{bottom:711.075000px;}
.y116_c01308{bottom:711.930000px;}
.y10f_c01308{bottom:713.670000px;}
.y111_c01308{bottom:714.525000px;}
.y112_c01308{bottom:716.250000px;}
.y114_c01308{bottom:717.120000px;}
.y109_c01308{bottom:731.805000px;}
.y10b_c01308{bottom:732.675000px;}
.y108_c01308{bottom:733.530000px;}
.y10a_c01308{bottom:735.270000px;}
.y10c_c01308{bottom:736.125000px;}
.y10d_c01308{bottom:738.720000px;}
.y10e_c01308{bottom:739.590000px;}
.y101_c01308{bottom:750.810000px;}
.y102_c01308{bottom:751.680000px;}
.y100_c01308{bottom:752.550000px;}
.y103_c01308{bottom:753.405000px;}
.yfe_c01308{bottom:754.275000px;}
.yff_c01308{bottom:755.130000px;}
.y104_c01308{bottom:756.000000px;}
.y107_c01308{bottom:758.595000px;}
.y105_c01308{bottom:759.450000px;}
.y106_c01308{bottom:760.320000px;}
.yf5_c01308{bottom:770.685000px;}
.yf7_c01308{bottom:771.555000px;}
.yf8_c01308{bottom:774.150000px;}
.yf6_c01308{bottom:775.875000px;}
.yf9_c01308{bottom:777.600000px;}
.yfd_c01308{bottom:778.470000px;}
.yfa_c01308{bottom:779.325000px;}
.yfb_c01308{bottom:780.195000px;}
.yfc_c01308{bottom:781.050000px;}
.yf4_c01308{bottom:785.370000px;}
.yf3_c01308{bottom:787.110000px;}
.yeb_c01308{bottom:787.965000px;}
.yec_c01308{bottom:788.835000px;}
.yee_c01308{bottom:790.560000px;}
.yef_c01308{bottom:791.430000px;}
.yf1_c01308{bottom:794.010000px;}
.yed_c01308{bottom:795.750000px;}
.yf2_c01308{bottom:796.605000px;}
.yf0_c01308{bottom:798.330000px;}
.ye9_c01308{bottom:799.200000px;}
.yea_c01308{bottom:800.925000px;}
.ye3_c01308{bottom:812.160000px;}
.ye4_c01308{bottom:813.030000px;}
.ye5_c01308{bottom:813.885000px;}
.ye2_c01308{bottom:814.755000px;}
.ye6_c01308{bottom:815.610000px;}
.ye8_c01308{bottom:818.205000px;}
.ye7_c01308{bottom:821.670000px;}
.ydb_c01308{bottom:834.630000px;}
.ydc_c01308{bottom:835.485000px;}
.ydd_c01308{bottom:839.805000px;}
.yde_c01308{bottom:840.675000px;}
.ydf_c01308{bottom:841.530000px;}
.ye0_c01308{bottom:842.400000px;}
.ye1_c01308{bottom:843.270000px;}
.yd1_c01308{bottom:850.170000px;}
.yd3_c01308{bottom:851.040000px;}
.yd5_c01308{bottom:851.910000px;}
.yd7_c01308{bottom:854.490000px;}
.yd4_c01308{bottom:855.360000px;}
.yd9_c01308{bottom:856.230000px;}
.yd2_c01308{bottom:857.955000px;}
.yd6_c01308{bottom:858.810000px;}
.yd8_c01308{bottom:859.680000px;}
.yda_c01308{bottom:861.405000px;}
.y1f9_c01308{bottom:864.000000px;}
.yc9_c01308{bottom:871.770000px;}
.yca_c01308{bottom:874.365000px;}
.yce_c01308{bottom:875.235000px;}
.ycb_c01308{bottom:876.960000px;}
.ycc_c01308{bottom:880.410000px;}
.ycf_c01308{bottom:881.280000px;}
.yd0_c01308{bottom:882.150000px;}
.ycd_c01308{bottom:888.195000px;}
.yc4_c01308{bottom:893.370000px;}
.yc3_c01308{bottom:895.110000px;}
.yc6_c01308{bottom:896.835000px;}
.yc7_c01308{bottom:900.285000px;}
.yc8_c01308{bottom:901.155000px;}
.yc5_c01308{bottom:908.925000px;}
.ybf_c01308{bottom:912.390000px;}
.yc2_c01308{bottom:914.970000px;}
.ybd_c01308{bottom:915.840000px;}
.ybe_c01308{bottom:917.565000px;}
.yc1_c01308{bottom:918.435000px;}
.yc0_c01308{bottom:921.885000px;}
.yb5_c01308{bottom:932.250000px;}
.yb4_c01308{bottom:934.845000px;}
.yb2_c01308{bottom:935.715000px;}
.yb6_c01308{bottom:936.570000px;}
.ybb_c01308{bottom:937.440000px;}
.yb7_c01308{bottom:938.310000px;}
.yb3_c01308{bottom:939.165000px;}
.yb8_c01308{bottom:940.035000px;}
.yb9_c01308{bottom:940.890000px;}
.yba_c01308{bottom:941.760000px;}
.ybc_c01308{bottom:942.630000px;}
.yab_c01308{bottom:951.270000px;}
.yac_c01308{bottom:952.125000px;}
.yad_c01308{bottom:953.850000px;}
.yaa_c01308{bottom:954.720000px;}
.yb0_c01308{bottom:956.445000px;}
.yaf_c01308{bottom:960.765000px;}
.yb1_c01308{bottom:961.635000px;}
.yae_c01308{bottom:962.490000px;}
.ya1_c01308{bottom:970.275000px;}
.ya4_c01308{bottom:972.870000px;}
.ya5_c01308{bottom:973.725000px;}
.ya7_c01308{bottom:975.450000px;}
.ya2_c01308{bottom:976.320000px;}
.ya3_c01308{bottom:977.190000px;}
.ya6_c01308{bottom:978.045000px;}
.ya9_c01308{bottom:981.510000px;}
.ya8_c01308{bottom:982.365000px;}
.y97_c01308{bottom:992.730000px;}
.y9b_c01308{bottom:995.325000px;}
.y9c_c01308{bottom:996.195000px;}
.y98_c01308{bottom:997.050000px;}
.y9a_c01308{bottom:998.790000px;}
.y9d_c01308{bottom:1000.515000px;}
.y99_c01308{bottom:1001.370000px;}
.y9e_c01308{bottom:1002.240000px;}
.y9f_c01308{bottom:1003.110000px;}
.ya0_c01308{bottom:1005.690000px;}
.y8f_c01308{bottom:1012.605000px;}
.y91_c01308{bottom:1013.475000px;}
.y90_c01308{bottom:1014.330000px;}
.y92_c01308{bottom:1015.200000px;}
.y94_c01308{bottom:1016.925000px;}
.y96_c01308{bottom:1017.795000px;}
.y8e_c01308{bottom:1018.650000px;}
.y93_c01308{bottom:1021.245000px;}
.y95_c01308{bottom:1022.115000px;}
.y87_c01308{bottom:1034.205000px;}
.y8a_c01308{bottom:1036.800000px;}
.y88_c01308{bottom:1037.670000px;}
.y89_c01308{bottom:1038.525000px;}
.y8b_c01308{bottom:1041.120000px;}
.y8c_c01308{bottom:1045.440000px;}
.y8d_c01308{bottom:1047.165000px;}
.y81_c01308{bottom:1053.210000px;}
.y7f_c01308{bottom:1054.080000px;}
.y7e_c01308{bottom:1057.530000px;}
.y83_c01308{bottom:1058.400000px;}
.y80_c01308{bottom:1059.270000px;}
.y82_c01308{bottom:1060.125000px;}
.y84_c01308{bottom:1060.995000px;}
.y85_c01308{bottom:1062.720000px;}
.y86_c01308{bottom:1064.445000px;}
.y77_c01308{bottom:1074.810000px;}
.y7a_c01308{bottom:1076.550000px;}
.y78_c01308{bottom:1077.405000px;}
.y7c_c01308{bottom:1078.275000px;}
.y7b_c01308{bottom:1080.000000px;}
.y7d_c01308{bottom:1084.320000px;}
.y79_c01308{bottom:1086.045000px;}
.y6c_c01308{bottom:1093.830000px;}
.y6b_c01308{bottom:1094.685000px;}
.y6d_c01308{bottom:1095.555000px;}
.y6f_c01308{bottom:1098.150000px;}
.y75_c01308{bottom:1099.005000px;}
.y76_c01308{bottom:1099.875000px;}
.y74_c01308{bottom:1100.730000px;}
.y70_c01308{bottom:1101.600000px;}
.y71_c01308{bottom:1102.470000px;}
.y72_c01308{bottom:1103.325000px;}
.y73_c01308{bottom:1107.645000px;}
.y6e_c01308{bottom:1111.965000px;}
.y61_c01308{bottom:1112.835000px;}
.y64_c01308{bottom:1114.560000px;}
.y65_c01308{bottom:1116.285000px;}
.y60_c01308{bottom:1117.155000px;}
.y69_c01308{bottom:1118.880000px;}
.y62_c01308{bottom:1119.750000px;}
.y63_c01308{bottom:1120.605000px;}
.y68_c01308{bottom:1121.475000px;}
.y67_c01308{bottom:1122.330000px;}
.y66_c01308{bottom:1123.200000px;}
.y6a_c01308{bottom:1124.925000px;}
.y58_c01308{bottom:1137.885000px;}
.y59_c01308{bottom:1138.755000px;}
.y5a_c01308{bottom:1139.610000px;}
.y5c_c01308{bottom:1140.480000px;}
.y5f_c01308{bottom:1143.930000px;}
.y5b_c01308{bottom:1145.670000px;}
.y5e_c01308{bottom:1147.395000px;}
.y53_c01308{bottom:1153.440000px;}
.y5d_c01308{bottom:1154.310000px;}
.y52_c01308{bottom:1155.165000px;}
.y55_c01308{bottom:1156.035000px;}
.y56_c01308{bottom:1158.630000px;}
.y57_c01308{bottom:1159.485000px;}
.y54_c01308{bottom:1161.210000px;}
.y51_c01308{bottom:1162.950000px;}
.y4a_c01308{bottom:1176.765000px;}
.y4d_c01308{bottom:1178.490000px;}
.y4b_c01308{bottom:1179.360000px;}
.y4c_c01308{bottom:1180.230000px;}
.y4e_c01308{bottom:1183.680000px;}
.y4f_c01308{bottom:1184.550000px;}
.y50_c01308{bottom:1185.405000px;}
.y43_c01308{bottom:1194.915000px;}
.y46_c01308{bottom:1199.235000px;}
.y48_c01308{bottom:1200.090000px;}
.y45_c01308{bottom:1203.555000px;}
.y47_c01308{bottom:1204.410000px;}
.y49_c01308{bottom:1206.150000px;}
.y44_c01308{bottom:1207.005000px;}
.y3d_c01308{bottom:1214.790000px;}
.y3c_c01308{bottom:1215.645000px;}
.y3b_c01308{bottom:1217.370000px;}
.y3e_c01308{bottom:1219.110000px;}
.y42_c01308{bottom:1220.835000px;}
.y40_c01308{bottom:1223.430000px;}
.y3f_c01308{bottom:1224.285000px;}
.y41_c01308{bottom:1226.010000px;}
.y33_c01308{bottom:1235.520000px;}
.y39_c01308{bottom:1239.840000px;}
.y34_c01308{bottom:1240.710000px;}
.y35_c01308{bottom:1241.565000px;}
.y3a_c01308{bottom:1242.435000px;}
.y36_c01308{bottom:1245.030000px;}
.y37_c01308{bottom:1245.885000px;}
.y38_c01308{bottom:1246.755000px;}
.y2d_c01308{bottom:1256.250000px;}
.y2a_c01308{bottom:1257.120000px;}
.y30_c01308{bottom:1258.845000px;}
.y2b_c01308{bottom:1259.715000px;}
.y2f_c01308{bottom:1260.570000px;}
.y2c_c01308{bottom:1261.440000px;}
.y2e_c01308{bottom:1264.035000px;}
.y31_c01308{bottom:1266.630000px;}
.y32_c01308{bottom:1267.485000px;}
.y1_c01308{bottom:1268.355000px;}
.y24_c01308{bottom:1276.995000px;}
.y25_c01308{bottom:1277.850000px;}
.y23_c01308{bottom:1278.720000px;}
.y27_c01308{bottom:1280.445000px;}
.y18_c01308{bottom:1281.315000px;}
.y26_c01308{bottom:1283.040000px;}
.y29_c01308{bottom:1283.910000px;}
.y28_c01308{bottom:1285.635000px;}
.y1d_c01308{bottom:1286.490000px;}
.y22_c01308{bottom:1287.360000px;}
.y19_c01308{bottom:1288.230000px;}
.y17_c01308{bottom:1289.955000px;}
.y1b_c01308{bottom:1290.810000px;}
.y1a_c01308{bottom:1291.680000px;}
.y1c_c01308{bottom:1292.550000px;}
.y1f_c01308{bottom:1293.405000px;}
.y1e_c01308{bottom:1294.275000px;}
.y21_c01308{bottom:1296.000000px;}
.y20_c01308{bottom:1296.870000px;}
.y12_c01308{bottom:1297.725000px;}
.y11_c01308{bottom:1298.595000px;}
.y10_c01308{bottom:1299.450000px;}
.y15_c01308{bottom:1300.320000px;}
.yf_c01308{bottom:1301.190000px;}
.y14_c01308{bottom:1302.045000px;}
.y13_c01308{bottom:1302.915000px;}
.y16_c01308{bottom:1303.770000px;}
.ya_c01308{bottom:1318.470000px;}
.y7_c01308{bottom:1319.325000px;}
.yc_c01308{bottom:1320.195000px;}
.y9_c01308{bottom:1321.920000px;}
.y8_c01308{bottom:1322.790000px;}
.yb_c01308{bottom:1325.370000px;}
.ye_c01308{bottom:1326.240000px;}
.yd_c01308{bottom:1327.110000px;}
.y1f7_c01308{bottom:1328.835000px;}
.y1f8_c01308{bottom:1329.690000px;}
.y1f6_c01308{bottom:1330.560000px;}
.y1f5_c01308{bottom:1341.795000px;}
.y5_c01308{bottom:1346.115000px;}
.y4_c01308{bottom:1348.710000px;}
.y6_c01308{bottom:1350.435000px;}
.y2_c01308{bottom:1402.275000px;}
.y3_c01308{bottom:1404.000000px;}
.h7_c01308{height:3.110063px;}
.h12_c01308{height:5.399414px;}
.h18_c01308{height:6.209326px;}
.h3_c01308{height:9.340986px;}
.h17_c01308{height:12.418652px;}
.h24_c01308{height:12.760986px;}
.h2_c01308{height:15.550313px;}
.h15_c01308{height:18.681973px;}
.h16_c01308{height:21.759639px;}
.h13_c01308{height:24.891299px;}
.h14_c01308{height:27.968965px;}
.h1b_c01308{height:31.100625px;}
.h1d_c01308{height:34.232285px;}
.h1a_c01308{height:37.309951px;}
.h19_c01308{height:40.441611px;}
.he_c01308{height:43.519277px;}
.ha_c01308{height:46.650937px;}
.h9_c01308{height:49.782598px;}
.h10_c01308{height:52.860264px;}
.h1e_c01308{height:53.262598px;}
.hb_c01308{height:55.991924px;}
.h1c_c01308{height:59.069590px;}
.h8_c01308{height:62.201250px;}
.hc_c01308{height:65.332910px;}
.h11_c01308{height:68.410576px;}
.h4_c01308{height:71.542236px;}
.hf_c01308{height:74.619902px;}
.h6_c01308{height:77.751563px;}
.h5_c01308{height:80.883223px;}
.h20_c01308{height:83.960889px;}
.h22_c01308{height:87.092549px;}
.h1f_c01308{height:90.170215px;}
.h21_c01308{height:93.301875px;}
.hd_c01308{height:96.433535px;}
.h23_c01308{height:177.262764px;}
.h1_c01308{height:1513.500000px;}
.h0_c01308{height:1513.725000px;}
.w1_c01308{width:1076.250000px;}
.w0_c01308{width:1076.550000px;}
.x0_c01308{left:0.000000px;}
.x1_c01308{left:139.110000px;}
.xa7_c01308{left:168.480000px;}
.xaf_c01308{left:171.930000px;}
.xb0_c01308{left:175.395000px;}
.x93_c01308{left:177.990000px;}
.xa8_c01308{left:180.570000px;}
.x1b_c01308{left:184.035000px;}
.x87_c01308{left:192.675000px;}
.xa9_c01308{left:199.590000px;}
.x105_c01308{left:203.910000px;}
.xdd_c01308{left:207.360000px;}
.x57_c01308{left:209.085000px;}
.x8_c01308{left:211.680000px;}
.x38_c01308{left:214.275000px;}
.xf2_c01308{left:217.725000px;}
.x8d_c01308{left:220.320000px;}
.xbc_c01308{left:224.640000px;}
.x39_c01308{left:228.960000px;}
.xe3_c01308{left:230.685000px;}
.x1c_c01308{left:232.410000px;}
.x83_c01308{left:234.150000px;}
.x12_c01308{left:236.730000px;}
.xc2_c01308{left:239.325000px;}
.x9_c01308{left:241.050000px;}
.xf3_c01308{left:242.790000px;}
.x1d_c01308{left:247.110000px;}
.xc5_c01308{left:249.690000px;}
.x5c_c01308{left:252.285000px;}
.xcf_c01308{left:254.010000px;}
.x3a_c01308{left:255.750000px;}
.xfa_c01308{left:258.330000px;}
.xe6_c01308{left:260.925000px;}
.xec_c01308{left:262.650000px;}
.xb6_c01308{left:265.245000px;}
.x5d_c01308{left:266.970000px;}
.xbd_c01308{left:268.710000px;}
.xb1_c01308{left:273.030000px;}
.xcb_c01308{left:275.610000px;}
.xf4_c01308{left:279.075000px;}
.xa_c01308{left:280.800000px;}
.x9d_c01308{left:282.525000px;}
.x13_c01308{left:284.250000px;}
.x7d_c01308{left:286.845000px;}
.x44_c01308{left:291.165000px;}
.x73_c01308{left:293.760000px;}
.x1e_c01308{left:297.210000px;}
.xb_c01308{left:300.675000px;}
.xd5_c01308{left:303.270000px;}
.xc6_c01308{left:305.850000px;}
.x84_c01308{left:308.445000px;}
.x7e_c01308{left:311.910000px;}
.x74_c01308{left:319.680000px;}
.xaa_c01308{left:321.405000px;}
.x2c_c01308{left:324.000000px;}
.xc7_c01308{left:326.595000px;}
.x1f_c01308{left:329.190000px;}
.xbe_c01308{left:332.640000px;}
.x98_c01308{left:335.235000px;}
.x88_c01308{left:336.960000px;}
.x4d_c01308{left:338.685000px;}
.x2d_c01308{left:341.280000px;}
.xab_c01308{left:343.005000px;}
.xe1_c01308{left:344.730000px;}
.x8e_c01308{left:347.325000px;}
.xb7_c01308{left:349.050000px;}
.x3b_c01308{left:352.515000px;}
.x14_c01308{left:355.110000px;}
.x7a_c01308{left:357.690000px;}
.x5e_c01308{left:359.430000px;}
.x64_c01308{left:361.155000px;}
.x2e_c01308{left:363.750000px;}
.x20_c01308{left:367.200000px;}
.xed_c01308{left:368.925000px;}
.x45_c01308{left:370.650000px;}
.x3c_c01308{left:374.970000px;}
.x102_c01308{left:376.710000px;}
.x7f_c01308{left:380.160000px;}
.x21_c01308{left:382.755000px;}
.xb8_c01308{left:384.480000px;}
.x62_c01308{left:386.205000px;}
.x4e_c01308{left:388.800000px;}
.xc8_c01308{left:392.250000px;}
.x8f_c01308{left:396.570000px;}
.xc9_c01308{left:398.310000px;}
.x75_c01308{left:400.890000px;}
.xa0_c01308{left:402.630000px;}
.x15_c01308{left:404.355000px;}
.xd1_c01308{left:406.080000px;}
.xb2_c01308{left:407.805000px;}
.x46_c01308{left:411.270000px;}
.x2f_c01308{left:413.850000px;}
.x58_c01308{left:416.445000px;}
.x6a_c01308{left:418.169250px;}
.x3d_c01308{left:421.635000px;}
.x65_c01308{left:425.085000px;}
.x80_c01308{left:427.680000px;}
.xc_c01308{left:429.405000px;}
.xbf_c01308{left:431.130000px;}
.xd7_c01308{left:432.870000px;}
.xfb_c01308{left:435.450000px;}
.x9f_c01308{left:437.190000px;}
.xf9_c01308{left:438.915000px;}
.x90_c01308{left:440.640000px;}
.xea_c01308{left:444.090000px;}
.x22_c01308{left:445.830000px;}
.x47_c01308{left:449.280000px;}
.x70_c01308{left:451.005000px;}
.xa5_c01308{left:452.730000px;}
.x16_c01308{left:454.470000px;}
.x54_c01308{left:458.790000px;}
.x48_c01308{left:460.515000px;}
.x4f_c01308{left:463.110000px;}
.xd8_c01308{left:465.690000px;}
.xd_c01308{left:468.285000px;}
.x5f_c01308{left:470.010000px;}
.xd0_c01308{left:471.750000px;}
.x4_c01308{left:477.795000px;}
.x71_c01308{left:479.520000px;}
.x76_c01308{left:483.840000px;}
.xe4_c01308{left:485.565000px;}
.x91_c01308{left:488.160000px;}
.xcc_c01308{left:489.885000px;}
.xf5_c01308{left:493.350000px;}
.xa1_c01308{left:495.930000px;}
.x23_c01308{left:502.845000px;}
.xfd_c01308{left:505.440000px;}
.xe7_c01308{left:508.035000px;}
.x99_c01308{left:511.485000px;}
.x17_c01308{left:517.530000px;}
.xe_c01308{left:519.270000px;}
.x85_c01308{left:522.720000px;}
.x103_c01308{left:527.040000px;}
.xd9_c01308{left:529.635000px;}
.xdc_c01308{left:533.085000px;}
.xc0_c01308{left:535.680000px;}
.x5_c01308{left:538.275000px;}
.x3e_c01308{left:540.000000px;}
.x6b_c01308{left:542.595000px;}
.xd2_c01308{left:544.320000px;}
.x24_c01308{left:549.510000px;}
.xfe_c01308{left:555.555000px;}
.xfc_c01308{left:557.280000px;}
.x2_c01308{left:559.005000px;}
.x66_c01308{left:561.600000px;}
.x9a_c01308{left:565.920000px;}
.x3_c01308{left:567.645000px;}
.x67_c01308{left:569.370000px;}
.xe8_c01308{left:571.110000px;}
.x6c_c01308{left:574.560000px;}
.x94_c01308{left:576.285000px;}
.xb3_c01308{left:578.880000px;}
.xd3_c01308{left:580.605000px;}
.x9e_c01308{left:582.330000px;}
.xf1_c01308{left:584.925000px;}
.x55_c01308{left:586.650000px;}
.xe5_c01308{left:588.390000px;}
.x81_c01308{left:590.970000px;}
.x18_c01308{left:592.710000px;}
.x77_c01308{left:594.435000px;}
.xc3_c01308{left:596.160000px;}
.x6d_c01308{left:597.885000px;}
.x63_c01308{left:599.610000px;}
.x49_c01308{left:603.075000px;}
.x60_c01308{left:605.670000px;}
.x78_c01308{left:607.395000px;}
.x25_c01308{left:609.120000px;}
.x3f_c01308{left:610.845000px;}
.xc1_c01308{left:615.165000px;}
.x68_c01308{left:616.890000px;}
.x7b_c01308{left:618.630000px;}
.x6e_c01308{left:621.210000px;}
.xf_c01308{left:622.950000px;}
.x50_c01308{left:625.530000px;}
.xb9_c01308{left:627.270000px;}
.x59_c01308{left:630.720000px;}
.xda_c01308{left:632.445000px;}
.x30_c01308{left:635.910000px;}
.x40_c01308{left:638.490000px;}
.x95_c01308{left:641.955000px;}
.x92_c01308{left:643.680000px;}
.x26_c01308{left:645.405000px;}
.x4a_c01308{left:648.870000px;}
.x6_c01308{left:650.595000px;}
.xef_c01308{left:652.320000px;}
.xf6_c01308{left:654.045000px;}
.xd6_c01308{left:655.770000px;}
.x27_c01308{left:658.365000px;}
.xff_c01308{left:660.960000px;}
.x51_c01308{left:662.685000px;}
.x5a_c01308{left:664.410000px;}
.xe2_c01308{left:666.150000px;}
.x31_c01308{left:667.875000px;}
.xc4_c01308{left:671.325000px;}
.x61_c01308{left:673.920000px;}
.x89_c01308{left:677.370000px;}
.x28_c01308{left:679.965000px;}
.xb4_c01308{left:682.560000px;}
.xde_c01308{left:685.155000px;}
.x41_c01308{left:688.605000px;}
.xd4_c01308{left:690.330000px;}
.xa6_c01308{left:692.070000px;}
.x19_c01308{left:693.795000px;}
.xa2_c01308{left:696.390000px;}
.x8a_c01308{left:698.970000px;}
.x82_c01308{left:702.435000px;}
.x32_c01308{left:705.030000px;}
.x104_c01308{left:709.350000px;}
.x4b_c01308{left:711.930000px;}
.xac_c01308{left:713.670000px;}
.x56_c01308{left:717.990000px;}
.xb5_c01308{left:720.570000px;}
.x8b_c01308{left:723.165000px;}
.xad_c01308{left:724.890000px;}
.x52_c01308{left:729.210000px;}
.xcd_c01308{left:730.950000px;}
.x106_c01308{left:732.675000px;}
.x10_c01308{left:734.400000px;}
.x29_c01308{left:738.720000px;}
.xee_c01308{left:740.445000px;}
.xf7_c01308{left:742.170000px;}
.xca_c01308{left:745.635000px;}
.x69_c01308{left:747.360000px;}
.x33_c01308{left:749.085000px;}
.x96_c01308{left:751.680000px;}
.xba_c01308{left:754.275000px;}
.x11_c01308{left:756.000000px;}
.x72_c01308{left:758.595000px;}
.x97_c01308{left:762.915000px;}
.xdf_c01308{left:764.640000px;}
.x34_c01308{left:766.365000px;}
.x2a_c01308{left:768.960000px;}
.x9b_c01308{left:772.410000px;}
.xa3_c01308{left:774.150000px;}
.x35_c01308{left:776.730000px;}
.x8c_c01308{left:778.470000px;}
.xae_c01308{left:780.195000px;}
.xa4_c01308{left:785.370000px;}
.x42_c01308{left:787.110000px;}
.xce_c01308{left:788.835000px;}
.x53_c01308{left:790.560000px;}
.x5b_c01308{left:793.155000px;}
.x7c_c01308{left:796.605000px;}
.x9c_c01308{left:800.070000px;}
.xdb_c01308{left:804.390000px;}
.x86_c01308{left:806.970000px;}
.x79_c01308{left:808.710000px;}
.x4c_c01308{left:812.160000px;}
.xe0_c01308{left:815.610000px;}
.x36_c01308{left:817.350000px;}
.x100_c01308{left:819.075000px;}
.xf8_c01308{left:820.800000px;}
.x2b_c01308{left:823.395000px;}
.x37_c01308{left:825.990000px;}
.x43_c01308{left:827.715000px;}
.xbb_c01308{left:833.760000px;}
.xf0_c01308{left:836.355000px;}
.x1a_c01308{left:840.675000px;}
.x7_c01308{left:843.270000px;}
.xe9_c01308{left:849.315000px;}
.x6f_c01308{left:853.635000px;}
.xeb_c01308{left:859.680000px;}
.x101_c01308{left:864.000000px;}
.x10f_c01308{left:903.750000px;}
.x110_c01308{left:914.115000px;}
.x10d_c01308{left:963.360000px;}
.x10b_c01308{left:966.810000px;}
.x10c_c01308{left:969.405000px;}
.x10e_c01308{left:984.090000px;}
.x108_c01308{left:1010.010000px;}
.x109_c01308{left:1030.755000px;}
.x10a_c01308{left:1037.670000px;}
.x107_c01308{left:1049.760000px;}
@media print{
.v0_c01308{vertical-align:0.000000pt;}
.v1_c01308{vertical-align:3.093333pt;}
.ls1_c01308{letter-spacing:0.000000pt;}
.ls0_c01308{letter-spacing:39.296000pt;}
.ws0_c01308{word-spacing:-20.269707pt;}
.ws1_c01308{word-spacing:0.000000pt;}
.fs5_c01308{font-size:3.072000pt;}
.fs10_c01308{font-size:5.333333pt;}
.fs16_c01308{font-size:6.133333pt;}
.fs1_c01308{font-size:9.226667pt;}
.fs15_c01308{font-size:12.266667pt;}
.fs0_c01308{font-size:15.360000pt;}
.fs13_c01308{font-size:18.453333pt;}
.fs14_c01308{font-size:21.493333pt;}
.fs11_c01308{font-size:24.586667pt;}
.fs12_c01308{font-size:27.626667pt;}
.fs19_c01308{font-size:30.720000pt;}
.fs1b_c01308{font-size:33.813333pt;}
.fs18_c01308{font-size:36.853333pt;}
.fs17_c01308{font-size:39.946667pt;}
.fsc_c01308{font-size:42.986667pt;}
.fs8_c01308{font-size:46.080000pt;}
.fs7_c01308{font-size:49.173333pt;}
.fse_c01308{font-size:52.213333pt;}
.fs9_c01308{font-size:55.306667pt;}
.fs1a_c01308{font-size:58.346667pt;}
.fs6_c01308{font-size:61.440000pt;}
.fsa_c01308{font-size:64.533333pt;}
.fsf_c01308{font-size:67.573333pt;}
.fs2_c01308{font-size:70.666667pt;}
.fsd_c01308{font-size:73.706667pt;}
.fs4_c01308{font-size:76.800000pt;}
.fs3_c01308{font-size:79.893333pt;}
.fs1d_c01308{font-size:82.933333pt;}
.fs1f_c01308{font-size:86.026667pt;}
.fs1c_c01308{font-size:89.066667pt;}
.fs1e_c01308{font-size:92.160000pt;}
.fsb_c01308{font-size:95.253333pt;}
.fs20_c01308{font-size:175.093333pt;}
.y0_c01308{bottom:0.000000pt;}
.y1f0_c01308{bottom:178.946667pt;}
.y1ee_c01308{bottom:179.706667pt;}
.y1ef_c01308{bottom:180.480000pt;}
.y1f1_c01308{bottom:185.853333pt;}
.y1f2_c01308{bottom:186.626667pt;}
.y1f3_c01308{bottom:187.386667pt;}
.y1f4_c01308{bottom:191.226667pt;}
.y1e5_c01308{bottom:195.840000pt;}
.y1e4_c01308{bottom:198.906667pt;}
.y1ea_c01308{bottom:199.680000pt;}
.y1ec_c01308{bottom:200.453333pt;}
.y1e7_c01308{bottom:201.213333pt;}
.y1e6_c01308{bottom:201.986667pt;}
.y1eb_c01308{bottom:203.520000pt;}
.y1e8_c01308{bottom:204.293333pt;}
.y1ed_c01308{bottom:205.053333pt;}
.y1de_c01308{bottom:215.813333pt;}
.y1e9_c01308{bottom:216.573333pt;}
.y1e0_c01308{bottom:217.346667pt;}
.y1df_c01308{bottom:218.880000pt;}
.y1e2_c01308{bottom:219.653333pt;}
.y1e1_c01308{bottom:221.946667pt;}
.y1e3_c01308{bottom:223.493333pt;}
.y1d6_c01308{bottom:234.240000pt;}
.y1d8_c01308{bottom:235.013333pt;}
.y1d7_c01308{bottom:236.546667pt;}
.y1da_c01308{bottom:237.306667pt;}
.y1db_c01308{bottom:238.080000pt;}
.y1d9_c01308{bottom:238.853333pt;}
.y1dd_c01308{bottom:239.613333pt;}
.y1dc_c01308{bottom:241.146667pt;}
.y1cb_c01308{bottom:251.906667pt;}
.y1cd_c01308{bottom:252.666667pt;}
.y1cc_c01308{bottom:253.440000pt;}
.y1d0_c01308{bottom:254.213333pt;}
.y1d1_c01308{bottom:254.973333pt;}
.y1d3_c01308{bottom:255.746667pt;}
.y1d5_c01308{bottom:256.506667pt;}
.y1d2_c01308{bottom:257.280000pt;}
.y1ce_c01308{bottom:258.813333pt;}
.y1cf_c01308{bottom:259.586667pt;}
.y1d4_c01308{bottom:261.120000pt;}
.y1c5_c01308{bottom:265.733333pt;}
.y1c4_c01308{bottom:267.266667pt;}
.y1c7_c01308{bottom:268.026667pt;}
.y1c8_c01308{bottom:269.573333pt;}
.y1c9_c01308{bottom:272.640000pt;}
.y1c3_c01308{bottom:273.413333pt;}
.y1c0_c01308{bottom:274.173333pt;}
.y1ca_c01308{bottom:274.946667pt;}
.y1c6_c01308{bottom:275.706667pt;}
.y1ba_c01308{bottom:276.480000pt;}
.y1bf_c01308{bottom:277.253333pt;}
.y1c1_c01308{bottom:278.013333pt;}
.y1b8_c01308{bottom:278.786667pt;}
.y1be_c01308{bottom:281.093333pt;}
.y1b6_c01308{bottom:282.626667pt;}
.y1b9_c01308{bottom:283.386667pt;}
.y1b7_c01308{bottom:284.160000pt;}
.y1bb_c01308{bottom:284.933333pt;}
.y1bc_c01308{bottom:285.693333pt;}
.y1c2_c01308{bottom:286.466667pt;}
.y1bd_c01308{bottom:288.773333pt;}
.y1ac_c01308{bottom:291.840000pt;}
.y1b0_c01308{bottom:292.613333pt;}
.y1b1_c01308{bottom:293.373333pt;}
.y1ae_c01308{bottom:294.146667pt;}
.y1ad_c01308{bottom:294.906667pt;}
.y1af_c01308{bottom:295.680000pt;}
.y1b3_c01308{bottom:297.986667pt;}
.y1b5_c01308{bottom:298.746667pt;}
.y1ab_c01308{bottom:300.293333pt;}
.y1b4_c01308{bottom:301.826667pt;}
.y1b2_c01308{bottom:306.426667pt;}
.y1a3_c01308{bottom:308.733333pt;}
.y1a5_c01308{bottom:309.506667pt;}
.y1a4_c01308{bottom:310.266667pt;}
.y1a7_c01308{bottom:311.813333pt;}
.y1a8_c01308{bottom:312.573333pt;}
.y1a9_c01308{bottom:313.346667pt;}
.y1a6_c01308{bottom:314.880000pt;}
.y1aa_c01308{bottom:317.186667pt;}
.y19c_c01308{bottom:325.626667pt;}
.y19d_c01308{bottom:328.706667pt;}
.y19f_c01308{bottom:329.466667pt;}
.y19e_c01308{bottom:331.013333pt;}
.y1a0_c01308{bottom:332.546667pt;}
.y1a2_c01308{bottom:333.306667pt;}
.y1a1_c01308{bottom:334.080000pt;}
.y196_c01308{bottom:343.293333pt;}
.y199_c01308{bottom:344.826667pt;}
.y19a_c01308{bottom:345.600000pt;}
.y197_c01308{bottom:346.373333pt;}
.y198_c01308{bottom:347.906667pt;}
.y19b_c01308{bottom:350.973333pt;}
.y18c_c01308{bottom:360.186667pt;}
.y18d_c01308{bottom:363.266667pt;}
.y193_c01308{bottom:364.026667pt;}
.y194_c01308{bottom:364.800000pt;}
.y190_c01308{bottom:367.106667pt;}
.y192_c01308{bottom:369.413333pt;}
.y18f_c01308{bottom:374.013333pt;}
.y191_c01308{bottom:375.546667pt;}
.y18e_c01308{bottom:378.626667pt;}
.y195_c01308{bottom:379.386667pt;}
.y183_c01308{bottom:380.160000pt;}
.y185_c01308{bottom:380.933333pt;}
.y188_c01308{bottom:381.693333pt;}
.y18a_c01308{bottom:383.226667pt;}
.y184_c01308{bottom:385.533333pt;}
.y186_c01308{bottom:386.306667pt;}
.y189_c01308{bottom:387.066667pt;}
.y18b_c01308{bottom:387.840000pt;}
.y17d_c01308{bottom:396.293333pt;}
.y17e_c01308{bottom:397.053333pt;}
.y187_c01308{bottom:397.826667pt;}
.y17f_c01308{bottom:400.133333pt;}
.y180_c01308{bottom:400.893333pt;}
.y181_c01308{bottom:401.666667pt;}
.y182_c01308{bottom:405.506667pt;}
.y174_c01308{bottom:408.573333pt;}
.y177_c01308{bottom:413.186667pt;}
.y17b_c01308{bottom:414.720000pt;}
.y175_c01308{bottom:416.253333pt;}
.y179_c01308{bottom:417.786667pt;}
.y178_c01308{bottom:418.560000pt;}
.y176_c01308{bottom:419.333333pt;}
.y17c_c01308{bottom:420.866667pt;}
.y17a_c01308{bottom:423.933333pt;}
.y16e_c01308{bottom:433.146667pt;}
.y171_c01308{bottom:435.453333pt;}
.y16f_c01308{bottom:436.226667pt;}
.y173_c01308{bottom:436.986667pt;}
.y16d_c01308{bottom:437.760000pt;}
.y172_c01308{bottom:438.533333pt;}
.y170_c01308{bottom:440.826667pt;}
.y165_c01308{bottom:452.346667pt;}
.y164_c01308{bottom:453.120000pt;}
.y166_c01308{bottom:453.893333pt;}
.y163_c01308{bottom:454.653333pt;}
.y167_c01308{bottom:455.426667pt;}
.y168_c01308{bottom:456.960000pt;}
.y16b_c01308{bottom:457.733333pt;}
.y16c_c01308{bottom:463.866667pt;}
.y16a_c01308{bottom:468.480000pt;}
.y15a_c01308{bottom:470.013333pt;}
.y169_c01308{bottom:470.786667pt;}
.y159_c01308{bottom:471.546667pt;}
.y15b_c01308{bottom:472.320000pt;}
.y15d_c01308{bottom:473.093333pt;}
.y15c_c01308{bottom:473.853333pt;}
.y162_c01308{bottom:474.626667pt;}
.y15f_c01308{bottom:475.386667pt;}
.y160_c01308{bottom:476.160000pt;}
.y15e_c01308{bottom:477.693333pt;}
.y161_c01308{bottom:480.773333pt;}
.y1fc_c01308{bottom:484.613333pt;}
.y153_c01308{bottom:488.453333pt;}
.y155_c01308{bottom:489.986667pt;}
.y152_c01308{bottom:491.520000pt;}
.y157_c01308{bottom:492.293333pt;}
.y156_c01308{bottom:494.586667pt;}
.y158_c01308{bottom:495.360000pt;}
.y154_c01308{bottom:498.426667pt;}
.y1fb_c01308{bottom:504.573333pt;}
.y14c_c01308{bottom:506.106667pt;}
.y14a_c01308{bottom:507.653333pt;}
.y14e_c01308{bottom:508.413333pt;}
.y1fa_c01308{bottom:509.186667pt;}
.y150_c01308{bottom:509.946667pt;}
.y14b_c01308{bottom:511.493333pt;}
.y14d_c01308{bottom:513.026667pt;}
.y151_c01308{bottom:513.786667pt;}
.y14f_c01308{bottom:522.240000pt;}
.y143_c01308{bottom:523.773333pt;}
.y144_c01308{bottom:525.306667pt;}
.y146_c01308{bottom:527.613333pt;}
.y149_c01308{bottom:529.146667pt;}
.y148_c01308{bottom:529.920000pt;}
.y145_c01308{bottom:530.693333pt;}
.y147_c01308{bottom:532.226667pt;}
.y13b_c01308{bottom:542.213333pt;}
.y13e_c01308{bottom:544.506667pt;}
.y13c_c01308{bottom:545.280000pt;}
.y142_c01308{bottom:546.813333pt;}
.y13f_c01308{bottom:547.586667pt;}
.y13d_c01308{bottom:548.346667pt;}
.y140_c01308{bottom:549.893333pt;}
.y141_c01308{bottom:550.653333pt;}
.y135_c01308{bottom:559.866667pt;}
.y138_c01308{bottom:561.413333pt;}
.y137_c01308{bottom:562.946667pt;}
.y134_c01308{bottom:563.706667pt;}
.y13a_c01308{bottom:564.480000pt;}
.y136_c01308{bottom:565.253333pt;}
.y139_c01308{bottom:567.546667pt;}
.y129_c01308{bottom:576.773333pt;}
.y12a_c01308{bottom:577.533333pt;}
.y12c_c01308{bottom:579.066667pt;}
.y12f_c01308{bottom:579.840000pt;}
.y12d_c01308{bottom:580.613333pt;}
.y133_c01308{bottom:581.373333pt;}
.y12b_c01308{bottom:582.906667pt;}
.y131_c01308{bottom:583.680000pt;}
.y12e_c01308{bottom:585.213333pt;}
.y130_c01308{bottom:585.986667pt;}
.y132_c01308{bottom:586.746667pt;}
.y121_c01308{bottom:595.200000pt;}
.y123_c01308{bottom:595.973333pt;}
.y124_c01308{bottom:596.733333pt;}
.y122_c01308{bottom:599.813333pt;}
.y125_c01308{bottom:602.880000pt;}
.y126_c01308{bottom:603.653333pt;}
.y127_c01308{bottom:604.413333pt;}
.y128_c01308{bottom:605.946667pt;}
.y118_c01308{bottom:612.093333pt;}
.y11b_c01308{bottom:612.866667pt;}
.y119_c01308{bottom:613.626667pt;}
.y11c_c01308{bottom:615.173333pt;}
.y11d_c01308{bottom:615.933333pt;}
.y11e_c01308{bottom:616.706667pt;}
.y11a_c01308{bottom:618.240000pt;}
.y11f_c01308{bottom:621.306667pt;}
.y120_c01308{bottom:622.080000pt;}
.y113_c01308{bottom:628.986667pt;}
.y115_c01308{bottom:629.760000pt;}
.y117_c01308{bottom:631.293333pt;}
.y110_c01308{bottom:632.066667pt;}
.y116_c01308{bottom:632.826667pt;}
.y10f_c01308{bottom:634.373333pt;}
.y111_c01308{bottom:635.133333pt;}
.y112_c01308{bottom:636.666667pt;}
.y114_c01308{bottom:637.440000pt;}
.y109_c01308{bottom:650.493333pt;}
.y10b_c01308{bottom:651.266667pt;}
.y108_c01308{bottom:652.026667pt;}
.y10a_c01308{bottom:653.573333pt;}
.y10c_c01308{bottom:654.333333pt;}
.y10d_c01308{bottom:656.640000pt;}
.y10e_c01308{bottom:657.413333pt;}
.y101_c01308{bottom:667.386667pt;}
.y102_c01308{bottom:668.160000pt;}
.y100_c01308{bottom:668.933333pt;}
.y103_c01308{bottom:669.693333pt;}
.yfe_c01308{bottom:670.466667pt;}
.yff_c01308{bottom:671.226667pt;}
.y104_c01308{bottom:672.000000pt;}
.y107_c01308{bottom:674.306667pt;}
.y105_c01308{bottom:675.066667pt;}
.y106_c01308{bottom:675.840000pt;}
.yf5_c01308{bottom:685.053333pt;}
.yf7_c01308{bottom:685.826667pt;}
.yf8_c01308{bottom:688.133333pt;}
.yf6_c01308{bottom:689.666667pt;}
.yf9_c01308{bottom:691.200000pt;}
.yfd_c01308{bottom:691.973333pt;}
.yfa_c01308{bottom:692.733333pt;}
.yfb_c01308{bottom:693.506667pt;}
.yfc_c01308{bottom:694.266667pt;}
.yf4_c01308{bottom:698.106667pt;}
.yf3_c01308{bottom:699.653333pt;}
.yeb_c01308{bottom:700.413333pt;}
.yec_c01308{bottom:701.186667pt;}
.yee_c01308{bottom:702.720000pt;}
.yef_c01308{bottom:703.493333pt;}
.yf1_c01308{bottom:705.786667pt;}
.yed_c01308{bottom:707.333333pt;}
.yf2_c01308{bottom:708.093333pt;}
.yf0_c01308{bottom:709.626667pt;}
.ye9_c01308{bottom:710.400000pt;}
.yea_c01308{bottom:711.933333pt;}
.ye3_c01308{bottom:721.920000pt;}
.ye4_c01308{bottom:722.693333pt;}
.ye5_c01308{bottom:723.453333pt;}
.ye2_c01308{bottom:724.226667pt;}
.ye6_c01308{bottom:724.986667pt;}
.ye8_c01308{bottom:727.293333pt;}
.ye7_c01308{bottom:730.373333pt;}
.ydb_c01308{bottom:741.893333pt;}
.ydc_c01308{bottom:742.653333pt;}
.ydd_c01308{bottom:746.493333pt;}
.yde_c01308{bottom:747.266667pt;}
.ydf_c01308{bottom:748.026667pt;}
.ye0_c01308{bottom:748.800000pt;}
.ye1_c01308{bottom:749.573333pt;}
.yd1_c01308{bottom:755.706667pt;}
.yd3_c01308{bottom:756.480000pt;}
.yd5_c01308{bottom:757.253333pt;}
.yd7_c01308{bottom:759.546667pt;}
.yd4_c01308{bottom:760.320000pt;}
.yd9_c01308{bottom:761.093333pt;}
.yd2_c01308{bottom:762.626667pt;}
.yd6_c01308{bottom:763.386667pt;}
.yd8_c01308{bottom:764.160000pt;}
.yda_c01308{bottom:765.693333pt;}
.y1f9_c01308{bottom:768.000000pt;}
.yc9_c01308{bottom:774.906667pt;}
.yca_c01308{bottom:777.213333pt;}
.yce_c01308{bottom:777.986667pt;}
.ycb_c01308{bottom:779.520000pt;}
.ycc_c01308{bottom:782.586667pt;}
.ycf_c01308{bottom:783.360000pt;}
.yd0_c01308{bottom:784.133333pt;}
.ycd_c01308{bottom:789.506667pt;}
.yc4_c01308{bottom:794.106667pt;}
.yc3_c01308{bottom:795.653333pt;}
.yc6_c01308{bottom:797.186667pt;}
.yc7_c01308{bottom:800.253333pt;}
.yc8_c01308{bottom:801.026667pt;}
.yc5_c01308{bottom:807.933333pt;}
.ybf_c01308{bottom:811.013333pt;}
.yc2_c01308{bottom:813.306667pt;}
.ybd_c01308{bottom:814.080000pt;}
.ybe_c01308{bottom:815.613333pt;}
.yc1_c01308{bottom:816.386667pt;}
.yc0_c01308{bottom:819.453333pt;}
.yb5_c01308{bottom:828.666667pt;}
.yb4_c01308{bottom:830.973333pt;}
.yb2_c01308{bottom:831.746667pt;}
.yb6_c01308{bottom:832.506667pt;}
.ybb_c01308{bottom:833.280000pt;}
.yb7_c01308{bottom:834.053333pt;}
.yb3_c01308{bottom:834.813333pt;}
.yb8_c01308{bottom:835.586667pt;}
.yb9_c01308{bottom:836.346667pt;}
.yba_c01308{bottom:837.120000pt;}
.ybc_c01308{bottom:837.893333pt;}
.yab_c01308{bottom:845.573333pt;}
.yac_c01308{bottom:846.333333pt;}
.yad_c01308{bottom:847.866667pt;}
.yaa_c01308{bottom:848.640000pt;}
.yb0_c01308{bottom:850.173333pt;}
.yaf_c01308{bottom:854.013333pt;}
.yb1_c01308{bottom:854.786667pt;}
.yae_c01308{bottom:855.546667pt;}
.ya1_c01308{bottom:862.466667pt;}
.ya4_c01308{bottom:864.773333pt;}
.ya5_c01308{bottom:865.533333pt;}
.ya7_c01308{bottom:867.066667pt;}
.ya2_c01308{bottom:867.840000pt;}
.ya3_c01308{bottom:868.613333pt;}
.ya6_c01308{bottom:869.373333pt;}
.ya9_c01308{bottom:872.453333pt;}
.ya8_c01308{bottom:873.213333pt;}
.y97_c01308{bottom:882.426667pt;}
.y9b_c01308{bottom:884.733333pt;}
.y9c_c01308{bottom:885.506667pt;}
.y98_c01308{bottom:886.266667pt;}
.y9a_c01308{bottom:887.813333pt;}
.y9d_c01308{bottom:889.346667pt;}
.y99_c01308{bottom:890.106667pt;}
.y9e_c01308{bottom:890.880000pt;}
.y9f_c01308{bottom:891.653333pt;}
.ya0_c01308{bottom:893.946667pt;}
.y8f_c01308{bottom:900.093333pt;}
.y91_c01308{bottom:900.866667pt;}
.y90_c01308{bottom:901.626667pt;}
.y92_c01308{bottom:902.400000pt;}
.y94_c01308{bottom:903.933333pt;}
.y96_c01308{bottom:904.706667pt;}
.y8e_c01308{bottom:905.466667pt;}
.y93_c01308{bottom:907.773333pt;}
.y95_c01308{bottom:908.546667pt;}
.y87_c01308{bottom:919.293333pt;}
.y8a_c01308{bottom:921.600000pt;}
.y88_c01308{bottom:922.373333pt;}
.y89_c01308{bottom:923.133333pt;}
.y8b_c01308{bottom:925.440000pt;}
.y8c_c01308{bottom:929.280000pt;}
.y8d_c01308{bottom:930.813333pt;}
.y81_c01308{bottom:936.186667pt;}
.y7f_c01308{bottom:936.960000pt;}
.y7e_c01308{bottom:940.026667pt;}
.y83_c01308{bottom:940.800000pt;}
.y80_c01308{bottom:941.573333pt;}
.y82_c01308{bottom:942.333333pt;}
.y84_c01308{bottom:943.106667pt;}
.y85_c01308{bottom:944.640000pt;}
.y86_c01308{bottom:946.173333pt;}
.y77_c01308{bottom:955.386667pt;}
.y7a_c01308{bottom:956.933333pt;}
.y78_c01308{bottom:957.693333pt;}
.y7c_c01308{bottom:958.466667pt;}
.y7b_c01308{bottom:960.000000pt;}
.y7d_c01308{bottom:963.840000pt;}
.y79_c01308{bottom:965.373333pt;}
.y6c_c01308{bottom:972.293333pt;}
.y6b_c01308{bottom:973.053333pt;}
.y6d_c01308{bottom:973.826667pt;}
.y6f_c01308{bottom:976.133333pt;}
.y75_c01308{bottom:976.893333pt;}
.y76_c01308{bottom:977.666667pt;}
.y74_c01308{bottom:978.426667pt;}
.y70_c01308{bottom:979.200000pt;}
.y71_c01308{bottom:979.973333pt;}
.y72_c01308{bottom:980.733333pt;}
.y73_c01308{bottom:984.573333pt;}
.y6e_c01308{bottom:988.413333pt;}
.y61_c01308{bottom:989.186667pt;}
.y64_c01308{bottom:990.720000pt;}
.y65_c01308{bottom:992.253333pt;}
.y60_c01308{bottom:993.026667pt;}
.y69_c01308{bottom:994.560000pt;}
.y62_c01308{bottom:995.333333pt;}
.y63_c01308{bottom:996.093333pt;}
.y68_c01308{bottom:996.866667pt;}
.y67_c01308{bottom:997.626667pt;}
.y66_c01308{bottom:998.400000pt;}
.y6a_c01308{bottom:999.933333pt;}
.y58_c01308{bottom:1011.453333pt;}
.y59_c01308{bottom:1012.226667pt;}
.y5a_c01308{bottom:1012.986667pt;}
.y5c_c01308{bottom:1013.760000pt;}
.y5f_c01308{bottom:1016.826667pt;}
.y5b_c01308{bottom:1018.373333pt;}
.y5e_c01308{bottom:1019.906667pt;}
.y53_c01308{bottom:1025.280000pt;}
.y5d_c01308{bottom:1026.053333pt;}
.y52_c01308{bottom:1026.813333pt;}
.y55_c01308{bottom:1027.586667pt;}
.y56_c01308{bottom:1029.893333pt;}
.y57_c01308{bottom:1030.653333pt;}
.y54_c01308{bottom:1032.186667pt;}
.y51_c01308{bottom:1033.733333pt;}
.y4a_c01308{bottom:1046.013333pt;}
.y4d_c01308{bottom:1047.546667pt;}
.y4b_c01308{bottom:1048.320000pt;}
.y4c_c01308{bottom:1049.093333pt;}
.y4e_c01308{bottom:1052.160000pt;}
.y4f_c01308{bottom:1052.933333pt;}
.y50_c01308{bottom:1053.693333pt;}
.y43_c01308{bottom:1062.146667pt;}
.y46_c01308{bottom:1065.986667pt;}
.y48_c01308{bottom:1066.746667pt;}
.y45_c01308{bottom:1069.826667pt;}
.y47_c01308{bottom:1070.586667pt;}
.y49_c01308{bottom:1072.133333pt;}
.y44_c01308{bottom:1072.893333pt;}
.y3d_c01308{bottom:1079.813333pt;}
.y3c_c01308{bottom:1080.573333pt;}
.y3b_c01308{bottom:1082.106667pt;}
.y3e_c01308{bottom:1083.653333pt;}
.y42_c01308{bottom:1085.186667pt;}
.y40_c01308{bottom:1087.493333pt;}
.y3f_c01308{bottom:1088.253333pt;}
.y41_c01308{bottom:1089.786667pt;}
.y33_c01308{bottom:1098.240000pt;}
.y39_c01308{bottom:1102.080000pt;}
.y34_c01308{bottom:1102.853333pt;}
.y35_c01308{bottom:1103.613333pt;}
.y3a_c01308{bottom:1104.386667pt;}
.y36_c01308{bottom:1106.693333pt;}
.y37_c01308{bottom:1107.453333pt;}
.y38_c01308{bottom:1108.226667pt;}
.y2d_c01308{bottom:1116.666667pt;}
.y2a_c01308{bottom:1117.440000pt;}
.y30_c01308{bottom:1118.973333pt;}
.y2b_c01308{bottom:1119.746667pt;}
.y2f_c01308{bottom:1120.506667pt;}
.y2c_c01308{bottom:1121.280000pt;}
.y2e_c01308{bottom:1123.586667pt;}
.y31_c01308{bottom:1125.893333pt;}
.y32_c01308{bottom:1126.653333pt;}
.y1_c01308{bottom:1127.426667pt;}
.y24_c01308{bottom:1135.106667pt;}
.y25_c01308{bottom:1135.866667pt;}
.y23_c01308{bottom:1136.640000pt;}
.y27_c01308{bottom:1138.173333pt;}
.y18_c01308{bottom:1138.946667pt;}
.y26_c01308{bottom:1140.480000pt;}
.y29_c01308{bottom:1141.253333pt;}
.y28_c01308{bottom:1142.786667pt;}
.y1d_c01308{bottom:1143.546667pt;}
.y22_c01308{bottom:1144.320000pt;}
.y19_c01308{bottom:1145.093333pt;}
.y17_c01308{bottom:1146.626667pt;}
.y1b_c01308{bottom:1147.386667pt;}
.y1a_c01308{bottom:1148.160000pt;}
.y1c_c01308{bottom:1148.933333pt;}
.y1f_c01308{bottom:1149.693333pt;}
.y1e_c01308{bottom:1150.466667pt;}
.y21_c01308{bottom:1152.000000pt;}
.y20_c01308{bottom:1152.773333pt;}
.y12_c01308{bottom:1153.533333pt;}
.y11_c01308{bottom:1154.306667pt;}
.y10_c01308{bottom:1155.066667pt;}
.y15_c01308{bottom:1155.840000pt;}
.yf_c01308{bottom:1156.613333pt;}
.y14_c01308{bottom:1157.373333pt;}
.y13_c01308{bottom:1158.146667pt;}
.y16_c01308{bottom:1158.906667pt;}
.ya_c01308{bottom:1171.973333pt;}
.y7_c01308{bottom:1172.733333pt;}
.yc_c01308{bottom:1173.506667pt;}
.y9_c01308{bottom:1175.040000pt;}
.y8_c01308{bottom:1175.813333pt;}
.yb_c01308{bottom:1178.106667pt;}
.ye_c01308{bottom:1178.880000pt;}
.yd_c01308{bottom:1179.653333pt;}
.y1f7_c01308{bottom:1181.186667pt;}
.y1f8_c01308{bottom:1181.946667pt;}
.y1f6_c01308{bottom:1182.720000pt;}
.y1f5_c01308{bottom:1192.706667pt;}
.y5_c01308{bottom:1196.546667pt;}
.y4_c01308{bottom:1198.853333pt;}
.y6_c01308{bottom:1200.386667pt;}
.y2_c01308{bottom:1246.466667pt;}
.y3_c01308{bottom:1248.000000pt;}
.h7_c01308{height:2.764500pt;}
.h12_c01308{height:4.799479pt;}
.h18_c01308{height:5.519401pt;}
.h3_c01308{height:8.303099pt;}
.h17_c01308{height:11.038802pt;}
.h24_c01308{height:11.343099pt;}
.h2_c01308{height:13.822500pt;}
.h15_c01308{height:16.606198pt;}
.h16_c01308{height:19.341901pt;}
.h13_c01308{height:22.125599pt;}
.h14_c01308{height:24.861302pt;}
.h1b_c01308{height:27.645000pt;}
.h1d_c01308{height:30.428698pt;}
.h1a_c01308{height:33.164401pt;}
.h19_c01308{height:35.948099pt;}
.he_c01308{height:38.683802pt;}
.ha_c01308{height:41.467500pt;}
.h9_c01308{height:44.251198pt;}
.h10_c01308{height:46.986901pt;}
.h1e_c01308{height:47.344531pt;}
.hb_c01308{height:49.770599pt;}
.h1c_c01308{height:52.506302pt;}
.h8_c01308{height:55.290000pt;}
.hc_c01308{height:58.073698pt;}
.h11_c01308{height:60.809401pt;}
.h4_c01308{height:63.593099pt;}
.hf_c01308{height:66.328802pt;}
.h6_c01308{height:69.112500pt;}
.h5_c01308{height:71.896198pt;}
.h20_c01308{height:74.631901pt;}
.h22_c01308{height:77.415599pt;}
.h1f_c01308{height:80.151302pt;}
.h21_c01308{height:82.935000pt;}
.hd_c01308{height:85.718698pt;}
.h23_c01308{height:157.566901pt;}
.h1_c01308{height:1345.333333pt;}
.h0_c01308{height:1345.533333pt;}
.w1_c01308{width:956.666667pt;}
.w0_c01308{width:956.933333pt;}
.x0_c01308{left:0.000000pt;}
.x1_c01308{left:123.653333pt;}
.xa7_c01308{left:149.760000pt;}
.xaf_c01308{left:152.826667pt;}
.xb0_c01308{left:155.906667pt;}
.x93_c01308{left:158.213333pt;}
.xa8_c01308{left:160.506667pt;}
.x1b_c01308{left:163.586667pt;}
.x87_c01308{left:171.266667pt;}
.xa9_c01308{left:177.413333pt;}
.x105_c01308{left:181.253333pt;}
.xdd_c01308{left:184.320000pt;}
.x57_c01308{left:185.853333pt;}
.x8_c01308{left:188.160000pt;}
.x38_c01308{left:190.466667pt;}
.xf2_c01308{left:193.533333pt;}
.x8d_c01308{left:195.840000pt;}
.xbc_c01308{left:199.680000pt;}
.x39_c01308{left:203.520000pt;}
.xe3_c01308{left:205.053333pt;}
.x1c_c01308{left:206.586667pt;}
.x83_c01308{left:208.133333pt;}
.x12_c01308{left:210.426667pt;}
.xc2_c01308{left:212.733333pt;}
.x9_c01308{left:214.266667pt;}
.xf3_c01308{left:215.813333pt;}
.x1d_c01308{left:219.653333pt;}
.xc5_c01308{left:221.946667pt;}
.x5c_c01308{left:224.253333pt;}
.xcf_c01308{left:225.786667pt;}
.x3a_c01308{left:227.333333pt;}
.xfa_c01308{left:229.626667pt;}
.xe6_c01308{left:231.933333pt;}
.xec_c01308{left:233.466667pt;}
.xb6_c01308{left:235.773333pt;}
.x5d_c01308{left:237.306667pt;}
.xbd_c01308{left:238.853333pt;}
.xb1_c01308{left:242.693333pt;}
.xcb_c01308{left:244.986667pt;}
.xf4_c01308{left:248.066667pt;}
.xa_c01308{left:249.600000pt;}
.x9d_c01308{left:251.133333pt;}
.x13_c01308{left:252.666667pt;}
.x7d_c01308{left:254.973333pt;}
.x44_c01308{left:258.813333pt;}
.x73_c01308{left:261.120000pt;}
.x1e_c01308{left:264.186667pt;}
.xb_c01308{left:267.266667pt;}
.xd5_c01308{left:269.573333pt;}
.xc6_c01308{left:271.866667pt;}
.x84_c01308{left:274.173333pt;}
.x7e_c01308{left:277.253333pt;}
.x74_c01308{left:284.160000pt;}
.xaa_c01308{left:285.693333pt;}
.x2c_c01308{left:288.000000pt;}
.xc7_c01308{left:290.306667pt;}
.x1f_c01308{left:292.613333pt;}
.xbe_c01308{left:295.680000pt;}
.x98_c01308{left:297.986667pt;}
.x88_c01308{left:299.520000pt;}
.x4d_c01308{left:301.053333pt;}
.x2d_c01308{left:303.360000pt;}
.xab_c01308{left:304.893333pt;}
.xe1_c01308{left:306.426667pt;}
.x8e_c01308{left:308.733333pt;}
.xb7_c01308{left:310.266667pt;}
.x3b_c01308{left:313.346667pt;}
.x14_c01308{left:315.653333pt;}
.x7a_c01308{left:317.946667pt;}
.x5e_c01308{left:319.493333pt;}
.x64_c01308{left:321.026667pt;}
.x2e_c01308{left:323.333333pt;}
.x20_c01308{left:326.400000pt;}
.xed_c01308{left:327.933333pt;}
.x45_c01308{left:329.466667pt;}
.x3c_c01308{left:333.306667pt;}
.x102_c01308{left:334.853333pt;}
.x7f_c01308{left:337.920000pt;}
.x21_c01308{left:340.226667pt;}
.xb8_c01308{left:341.760000pt;}
.x62_c01308{left:343.293333pt;}
.x4e_c01308{left:345.600000pt;}
.xc8_c01308{left:348.666667pt;}
.x8f_c01308{left:352.506667pt;}
.xc9_c01308{left:354.053333pt;}
.x75_c01308{left:356.346667pt;}
.xa0_c01308{left:357.893333pt;}
.x15_c01308{left:359.426667pt;}
.xd1_c01308{left:360.960000pt;}
.xb2_c01308{left:362.493333pt;}
.x46_c01308{left:365.573333pt;}
.x2f_c01308{left:367.866667pt;}
.x58_c01308{left:370.173333pt;}
.x6a_c01308{left:371.706000pt;}
.x3d_c01308{left:374.786667pt;}
.x65_c01308{left:377.853333pt;}
.x80_c01308{left:380.160000pt;}
.xc_c01308{left:381.693333pt;}
.xbf_c01308{left:383.226667pt;}
.xd7_c01308{left:384.773333pt;}
.xfb_c01308{left:387.066667pt;}
.x9f_c01308{left:388.613333pt;}
.xf9_c01308{left:390.146667pt;}
.x90_c01308{left:391.680000pt;}
.xea_c01308{left:394.746667pt;}
.x22_c01308{left:396.293333pt;}
.x47_c01308{left:399.360000pt;}
.x70_c01308{left:400.893333pt;}
.xa5_c01308{left:402.426667pt;}
.x16_c01308{left:403.973333pt;}
.x54_c01308{left:407.813333pt;}
.x48_c01308{left:409.346667pt;}
.x4f_c01308{left:411.653333pt;}
.xd8_c01308{left:413.946667pt;}
.xd_c01308{left:416.253333pt;}
.x5f_c01308{left:417.786667pt;}
.xd0_c01308{left:419.333333pt;}
.x4_c01308{left:424.706667pt;}
.x71_c01308{left:426.240000pt;}
.x76_c01308{left:430.080000pt;}
.xe4_c01308{left:431.613333pt;}
.x91_c01308{left:433.920000pt;}
.xcc_c01308{left:435.453333pt;}
.xf5_c01308{left:438.533333pt;}
.xa1_c01308{left:440.826667pt;}
.x23_c01308{left:446.973333pt;}
.xfd_c01308{left:449.280000pt;}
.xe7_c01308{left:451.586667pt;}
.x99_c01308{left:454.653333pt;}
.x17_c01308{left:460.026667pt;}
.xe_c01308{left:461.573333pt;}
.x85_c01308{left:464.640000pt;}
.x103_c01308{left:468.480000pt;}
.xd9_c01308{left:470.786667pt;}
.xdc_c01308{left:473.853333pt;}
.xc0_c01308{left:476.160000pt;}
.x5_c01308{left:478.466667pt;}
.x3e_c01308{left:480.000000pt;}
.x6b_c01308{left:482.306667pt;}
.xd2_c01308{left:483.840000pt;}
.x24_c01308{left:488.453333pt;}
.xfe_c01308{left:493.826667pt;}
.xfc_c01308{left:495.360000pt;}
.x2_c01308{left:496.893333pt;}
.x66_c01308{left:499.200000pt;}
.x9a_c01308{left:503.040000pt;}
.x3_c01308{left:504.573333pt;}
.x67_c01308{left:506.106667pt;}
.xe8_c01308{left:507.653333pt;}
.x6c_c01308{left:510.720000pt;}
.x94_c01308{left:512.253333pt;}
.xb3_c01308{left:514.560000pt;}
.xd3_c01308{left:516.093333pt;}
.x9e_c01308{left:517.626667pt;}
.xf1_c01308{left:519.933333pt;}
.x55_c01308{left:521.466667pt;}
.xe5_c01308{left:523.013333pt;}
.x81_c01308{left:525.306667pt;}
.x18_c01308{left:526.853333pt;}
.x77_c01308{left:528.386667pt;}
.xc3_c01308{left:529.920000pt;}
.x6d_c01308{left:531.453333pt;}
.x63_c01308{left:532.986667pt;}
.x49_c01308{left:536.066667pt;}
.x60_c01308{left:538.373333pt;}
.x78_c01308{left:539.906667pt;}
.x25_c01308{left:541.440000pt;}
.x3f_c01308{left:542.973333pt;}
.xc1_c01308{left:546.813333pt;}
.x68_c01308{left:548.346667pt;}
.x7b_c01308{left:549.893333pt;}
.x6e_c01308{left:552.186667pt;}
.xf_c01308{left:553.733333pt;}
.x50_c01308{left:556.026667pt;}
.xb9_c01308{left:557.573333pt;}
.x59_c01308{left:560.640000pt;}
.xda_c01308{left:562.173333pt;}
.x30_c01308{left:565.253333pt;}
.x40_c01308{left:567.546667pt;}
.x95_c01308{left:570.626667pt;}
.x92_c01308{left:572.160000pt;}
.x26_c01308{left:573.693333pt;}
.x4a_c01308{left:576.773333pt;}
.x6_c01308{left:578.306667pt;}
.xef_c01308{left:579.840000pt;}
.xf6_c01308{left:581.373333pt;}
.xd6_c01308{left:582.906667pt;}
.x27_c01308{left:585.213333pt;}
.xff_c01308{left:587.520000pt;}
.x51_c01308{left:589.053333pt;}
.x5a_c01308{left:590.586667pt;}
.xe2_c01308{left:592.133333pt;}
.x31_c01308{left:593.666667pt;}
.xc4_c01308{left:596.733333pt;}
.x61_c01308{left:599.040000pt;}
.x89_c01308{left:602.106667pt;}
.x28_c01308{left:604.413333pt;}
.xb4_c01308{left:606.720000pt;}
.xde_c01308{left:609.026667pt;}
.x41_c01308{left:612.093333pt;}
.xd4_c01308{left:613.626667pt;}
.xa6_c01308{left:615.173333pt;}
.x19_c01308{left:616.706667pt;}
.xa2_c01308{left:619.013333pt;}
.x8a_c01308{left:621.306667pt;}
.x82_c01308{left:624.386667pt;}
.x32_c01308{left:626.693333pt;}
.x104_c01308{left:630.533333pt;}
.x4b_c01308{left:632.826667pt;}
.xac_c01308{left:634.373333pt;}
.x56_c01308{left:638.213333pt;}
.xb5_c01308{left:640.506667pt;}
.x8b_c01308{left:642.813333pt;}
.xad_c01308{left:644.346667pt;}
.x52_c01308{left:648.186667pt;}
.xcd_c01308{left:649.733333pt;}
.x106_c01308{left:651.266667pt;}
.x10_c01308{left:652.800000pt;}
.x29_c01308{left:656.640000pt;}
.xee_c01308{left:658.173333pt;}
.xf7_c01308{left:659.706667pt;}
.xca_c01308{left:662.786667pt;}
.x69_c01308{left:664.320000pt;}
.x33_c01308{left:665.853333pt;}
.x96_c01308{left:668.160000pt;}
.xba_c01308{left:670.466667pt;}
.x11_c01308{left:672.000000pt;}
.x72_c01308{left:674.306667pt;}
.x97_c01308{left:678.146667pt;}
.xdf_c01308{left:679.680000pt;}
.x34_c01308{left:681.213333pt;}
.x2a_c01308{left:683.520000pt;}
.x9b_c01308{left:686.586667pt;}
.xa3_c01308{left:688.133333pt;}
.x35_c01308{left:690.426667pt;}
.x8c_c01308{left:691.973333pt;}
.xae_c01308{left:693.506667pt;}
.xa4_c01308{left:698.106667pt;}
.x42_c01308{left:699.653333pt;}
.xce_c01308{left:701.186667pt;}
.x53_c01308{left:702.720000pt;}
.x5b_c01308{left:705.026667pt;}
.x7c_c01308{left:708.093333pt;}
.x9c_c01308{left:711.173333pt;}
.xdb_c01308{left:715.013333pt;}
.x86_c01308{left:717.306667pt;}
.x79_c01308{left:718.853333pt;}
.x4c_c01308{left:721.920000pt;}
.xe0_c01308{left:724.986667pt;}
.x36_c01308{left:726.533333pt;}
.x100_c01308{left:728.066667pt;}
.xf8_c01308{left:729.600000pt;}
.x2b_c01308{left:731.906667pt;}
.x37_c01308{left:734.213333pt;}
.x43_c01308{left:735.746667pt;}
.xbb_c01308{left:741.120000pt;}
.xf0_c01308{left:743.426667pt;}
.x1a_c01308{left:747.266667pt;}
.x7_c01308{left:749.573333pt;}
.xe9_c01308{left:754.946667pt;}
.x6f_c01308{left:758.786667pt;}
.xeb_c01308{left:764.160000pt;}
.x101_c01308{left:768.000000pt;}
.x10f_c01308{left:803.333333pt;}
.x110_c01308{left:812.546667pt;}
.x10d_c01308{left:856.320000pt;}
.x10b_c01308{left:859.386667pt;}
.x10c_c01308{left:861.693333pt;}
.x10e_c01308{left:874.746667pt;}
.x108_c01308{left:897.786667pt;}
.x109_c01308{left:916.226667pt;}
.x10a_c01308{left:922.373333pt;}
.x107_c01308{left:933.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_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;}
@font-face{font-family:ff1_c01309;src:url('chunks/assets/font_a137fe32812cfb87c7c9cc7e.woff2')format("woff");}.ff1_c01309{font-family:ff1_c01309;line-height:1.109863;font-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_c01309{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c01309{transform:matrix(0.023675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023675,0.000000,0.000000,0.250000,0,0);}
.m15_c01309{transform:matrix(0.032250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.032250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.032250,0.000000,0.000000,0.250000,0,0);}
.mf7_c01309{transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);}
.m10b_c01309{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);}
.m1ad_c01309{transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);}
.me4_c01309{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m5_c01309{transform:matrix(0.070025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.070025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.070025,0.000000,0.000000,0.250000,0,0);}
.m1b_c01309{transform:matrix(0.076475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076475,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01309{transform:matrix(0.078425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078425,0.000000,0.000000,0.250000,0,0);}
.m1c_c01309{transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078950,0.000000,0.000000,0.250000,0,0);}
.m19_c01309{transform:matrix(0.084325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084325,0.000000,0.000000,0.250000,0,0);}
.m29_c01309{transform:matrix(0.085400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085400,0.000000,0.000000,0.250000,0,0);}
.m148_c01309{transform:matrix(0.089550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089550,0.000000,0.000000,0.250000,0,0);}
.m165_c01309{transform:matrix(0.090125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090125,0.000000,0.000000,0.250000,0,0);}
.m9_c01309{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.mbd_c01309{transform:matrix(0.105200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105200,0.000000,0.000000,0.250000,0,0);}
.m198_c01309{transform:matrix(0.105825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105825,0.000000,0.000000,0.250000,0,0);}
.mb4_c01309{transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);}
.m4c_c01309{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m76_c01309{transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);}
.mbb_c01309{transform:matrix(0.114300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114300,0.000000,0.000000,0.250000,0,0);}
.md4_c01309{transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114475,0.000000,0.000000,0.250000,0,0);}
.m19a_c01309{transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);}
.md7_c01309{transform:matrix(0.115325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115325,0.000000,0.000000,0.250000,0,0);}
.m12f_c01309{transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);}
.m105_c01309{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);}
.m1b3_c01309{transform:matrix(0.117275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117275,0.000000,0.000000,0.250000,0,0);}
.m101_c01309{transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117700,0.000000,0.000000,0.250000,0,0);}
.m184_c01309{transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119250,0.000000,0.000000,0.250000,0,0);}
.md0_c01309{transform:matrix(0.120025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120025,0.000000,0.000000,0.250000,0,0);}
.m15f_c01309{transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);}
.m55_c01309{transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121550,0.000000,0.000000,0.250000,0,0);}
.m18e_c01309{transform:matrix(0.121600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121600,0.000000,0.000000,0.250000,0,0);}
.mca_c01309{transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122550,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01309{transform:matrix(0.122650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122650,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01309{transform:matrix(0.123500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123500,0.000000,0.000000,0.250000,0,0);}
.m145_c01309{transform:matrix(0.124750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124750,0.000000,0.000000,0.250000,0,0);}
.m135_c01309{transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);}
.m15a_c01309{transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);}
.me1_c01309{transform:matrix(0.126200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126200,0.000000,0.000000,0.250000,0,0);}
.me6_c01309{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m166_c01309{transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);}
.m170_c01309{transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128425,0.000000,0.000000,0.250000,0,0);}
.m195_c01309{transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);}
.mbf_c01309{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);}
.m2d_c01309{transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);}
.m171_c01309{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m19c_c01309{transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);}
.mcd_c01309{transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133000,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01309{transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);}
.m173_c01309{transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);}
.mfe_c01309{transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134000,0.000000,0.000000,0.250000,0,0);}
.m25_c01309{transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);}
.m178_c01309{transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);}
.m78_c01309{transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);}
.m169_c01309{transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);}
.m17d_c01309{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.m168_c01309{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.m66_c01309{transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);}
.m180_c01309{transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);}
.m49_c01309{transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);}
.m14b_c01309{transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);}
.maa_c01309{transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);}
.m120_c01309{transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);}
.m34_c01309{transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);}
.m177_c01309{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m48_c01309{transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);}
.m6c_c01309{transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);}
.m81_c01309{transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);}
.m99_c01309{transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);}
.m15e_c01309{transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);}
.m6d_c01309{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m41_c01309{transform:matrix(0.142775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142775,0.000000,0.000000,0.250000,0,0);}
.md5_c01309{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.m4e_c01309{transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);}
.m0_c01309{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m61_c01309{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.m13d_c01309{transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);}
.m16a_c01309{transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);}
.m153_c01309{transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);}
.mba_c01309{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.m192_c01309{transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);}
.m15d_c01309{transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144975,0.000000,0.000000,0.250000,0,0);}
.m8a_c01309{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);}
.m1ba_c01309{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);}
.m53_c01309{transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);}
.m54_c01309{transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01309{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);}
.m113_c01309{transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145900,0.000000,0.000000,0.250000,0,0);}
.mb1_c01309{transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);}
.m13b_c01309{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m45_c01309{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.m5b_c01309{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);}
.m69_c01309{transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);}
.m10d_c01309{transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);}
.m57_c01309{transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);}
.m12b_c01309{transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);}
.m50_c01309{transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);}
.m108_c01309{transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148550,0.000000,0.000000,0.250000,0,0);}
.m162_c01309{transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);}
.m141_c01309{transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);}
.m100_c01309{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);}
.m77_c01309{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);}
.mc0_c01309{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);}
.m8_c01309{transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150950,0.000000,0.000000,0.250000,0,0);}
.mbe_c01309{transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);}
.m12c_c01309{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m199_c01309{transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01309{transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);}
.mf9_c01309{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);}
.m79_c01309{transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);}
.m6e_c01309{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m58_c01309{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01309{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.mcc_c01309{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m62_c01309{transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155775,0.000000,0.000000,0.250000,0,0);}
.m14c_c01309{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m4d_c01309{transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);}
.m160_c01309{transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);}
.m9b_c01309{transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);}
.me5_c01309{transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157350,0.000000,0.000000,0.250000,0,0);}
.m19f_c01309{transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);}
.m115_c01309{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01309{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.m133_c01309{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);}
.m142_c01309{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);}
.m182_c01309{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01309{transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159750,0.000000,0.000000,0.250000,0,0);}
.m33_c01309{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m27_c01309{transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);}
.m17c_c01309{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01309{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m17a_c01309{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.m134_c01309{transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);}
.m32_c01309{transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);}
.m112_c01309{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);}
.m9a_c01309{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);}
.mb5_c01309{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.m5f_c01309{transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163950,0.000000,0.000000,0.250000,0,0);}
.m65_c01309{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.m8b_c01309{transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);}
.m11b_c01309{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m1af_c01309{transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);}
.m80_c01309{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.m14d_c01309{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.m13f_c01309{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.mce_c01309{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);}
.me2_c01309{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.ma9_c01309{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.mc2_c01309{transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);}
.m56_c01309{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m185_c01309{transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);}
.m197_c01309{transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);}
.m8c_c01309{transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169025,0.000000,0.000000,0.250000,0,0);}
.mbc_c01309{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.mb3_c01309{transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);}
.m18a_c01309{transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);}
.m131_c01309{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01309{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);}
.m172_c01309{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m190_c01309{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);}
.m64_c01309{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);}
.m3b_c01309{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m6b_c01309{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);}
.m15b_c01309{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.mfd_c01309{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01309{transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);}
.me0_c01309{transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177025,0.000000,0.000000,0.250000,0,0);}
.m124_c01309{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);}
.m98_c01309{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);}
.me8_c01309{transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);}
.m154_c01309{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);}
.m19b_c01309{transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);}
.mc3_c01309{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m127_c01309{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);}
.me3_c01309{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m89_c01309{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);}
.m123_c01309{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.m19d_c01309{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m30_c01309{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m1e_c01309{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m72_c01309{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.m16b_c01309{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.m93_c01309{transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01309{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.m118_c01309{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);}
.m126_c01309{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m71_c01309{transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);}
.m128_c01309{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.m16f_c01309{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);}
.m176_c01309{transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);}
.mc1_c01309{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m179_c01309{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m156_c01309{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.mb0_c01309{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.m60_c01309{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);}
.m9c_c01309{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m143_c01309{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);}
.m181_c01309{transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);}
.m87_c01309{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);}
.m188_c01309{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.mf4_c01309{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.m150_c01309{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);}
.m6f_c01309{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);}
.m175_c01309{transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);}
.m14f_c01309{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.m10f_c01309{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);}
.m5c_c01309{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);}
.mff_c01309{transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);}
.m146_c01309{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);}
.m5e_c01309{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.mf1_c01309{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);}
.ma4_c01309{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.m3c_c01309{transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);}
.m21_c01309{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.m2b_c01309{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m85_c01309{transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);}
.m4f_c01309{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01309{transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195500,0.000000,0.000000,0.250000,0,0);}
.m16e_c01309{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.m139_c01309{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);}
.m194_c01309{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);}
.mea_c01309{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);}
.m1a8_c01309{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);}
.m137_c01309{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.m23_c01309{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.m74_c01309{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);}
.m144_c01309{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m155_c01309{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);}
.m15c_c01309{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m19e_c01309{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);}
.m1a3_c01309{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);}
.m18c_c01309{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);}
.mf0_c01309{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);}
.m20_c01309{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.m59_c01309{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.m136_c01309{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01309{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.m14a_c01309{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m82_c01309{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);}
.mda_c01309{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.mdd_c01309{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);}
.m9f_c01309{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.m193_c01309{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m11_c01309{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01309{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.m119_c01309{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m17f_c01309{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m2f_c01309{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01309{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);}
.m107_c01309{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.mdb_c01309{transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);}
.mdf_c01309{transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);}
.m12a_c01309{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);}
.mf2_c01309{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);}
.m10c_c01309{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m26_c01309{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m96_c01309{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);}
.ma7_c01309{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);}
.m7b_c01309{transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206475,0.000000,0.000000,0.250000,0,0);}
.med_c01309{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m117_c01309{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);}
.m102_c01309{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01309{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m13e_c01309{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);}
.m191_c01309{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mc6_c01309{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);}
.m138_c01309{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);}
.m70_c01309{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.mec_c01309{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);}
.m152_c01309{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.m7e_c01309{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);}
.m116_c01309{transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);}
.m18_c01309{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);}
.mf3_c01309{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);}
.m186_c01309{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m1f_c01309{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);}
.m104_c01309{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);}
.md6_c01309{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m7a_c01309{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m11c_c01309{transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);}
.mee_c01309{transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);}
.m16_c01309{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);}
.mef_c01309{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.ma2_c01309{transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);}
.m68_c01309{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m187_c01309{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);}
.m10e_c01309{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m8f_c01309{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.m11a_c01309{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);}
.m37_c01309{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);}
.m91_c01309{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);}
.md3_c01309{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);}
.mac_c01309{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.ma8_c01309{transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);}
.m63_c01309{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m106_c01309{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m122_c01309{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);}
.m3e_c01309{transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223375,0.000000,0.000000,0.250000,0,0);}
.m125_c01309{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.m189_c01309{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);}
.m130_c01309{transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);}
.m90_c01309{transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);}
.m5d_c01309{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m11d_c01309{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.mc_c01309{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);}
.m75_c01309{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);}
.m16d_c01309{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);}
.m140_c01309{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);}
.ma1_c01309{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);}
.mad_c01309{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.mb9_c01309{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);}
.mb8_c01309{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);}
.m13c_c01309{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);}
.m28_c01309{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.mb6_c01309{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);}
.m161_c01309{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);}
.m1be_c01309{transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232950,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01309{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);}
.m174_c01309{transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);}
.m129_c01309{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);}
.m17e_c01309{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.m97_c01309{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.ma3_c01309{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m67_c01309{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m109_c01309{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);}
.m43_c01309{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.md_c01309{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01309{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m24_c01309{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);}
.m12e_c01309{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);}
.mcf_c01309{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);}
.m183_c01309{transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240825,0.000000,0.000000,0.250000,0,0);}
.m2c_c01309{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);}
.mab_c01309{transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);}
.mc9_c01309{transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);}
.m13a_c01309{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);}
.m16c_c01309{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);}
.m1b5_c01309{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);}
.m1a4_c01309{transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243875,0.000000,0.000000,0.250000,0,0);}
.m18b_c01309{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);}
.md1_c01309{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m14e_c01309{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);}
.mde_c01309{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);}
.m10a_c01309{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);}
.m35_c01309{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);}
.m94_c01309{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01309{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);}
.m10_c01309{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);}
.me9_c01309{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m73_c01309{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_c01309{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);}
.m17_c01309{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);}
.m5a_c01309{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);}
.m7d_c01309{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01309{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m42_c01309{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m36_c01309{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);}
.m52_c01309{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me7_c01309{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);}
.mae_c01309{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);}
.mb2_c01309{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mfc_c01309{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);}
.m1_c01309{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01309{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m40_c01309{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);}
.m7f_c01309{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m11e_c01309{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);}
.m12_c01309{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);}
.m31_c01309{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma6_c01309{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m39_c01309{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);}
.m2e_c01309{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01309{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf5_c01309{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);}
.m14_c01309{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01309{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01309{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01309{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c01309{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m111_c01309{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb7_c01309{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m44_c01309{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);}
.meb_c01309{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m86_c01309{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.me_c01309{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc8_c01309{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);}
.md9_c01309{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);}
.ma0_c01309{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6_c01309{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m114_c01309{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);}
.mdc_c01309{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m149_c01309{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01309{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.ma_c01309{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);}
.m51_c01309{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md2_c01309{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc7_c01309{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);}
.mfb_c01309{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m12d_c01309{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m38_c01309{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);}
.m84_c01309{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01309{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m83_c01309{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m151_c01309{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m110_c01309{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01309{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);}
.m92_c01309{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);}
.mf6_c01309{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.maf_c01309{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m88_c01309{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);}
.m8d_c01309{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2_c01309{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mfa_c01309{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m163_c01309{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m159_c01309{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m17b_c01309{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);}
.m132_c01309{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m196_c01309{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mc5_c01309{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mc4_c01309{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);}
.m3_c01309{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);}
.m95_c01309{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01309{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.mcb_c01309{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01309{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m47_c01309{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01309{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m18d_c01309{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m147_c01309{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m167_c01309{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m164_c01309{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01309{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01309{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m103_c01309{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);}
.m157_c01309{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01309{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m46_c01309{transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);}
.mb_c01309{transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);}
.m121_c01309{transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);}
.m18f_c01309{transform:matrix(1.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.157500,0.000000,0.000000,0.250000,0,0);}
.md8_c01309{transform:matrix(1.162500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.162500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.162500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01309{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m158_c01309{transform:matrix(1.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.517500,0.000000,0.000000,0.250000,0,0);}
.m9d_c01309{transform:matrix(1.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.662500,0.000000,0.000000,0.250000,0,0);}
.m11f_c01309{transform:matrix(2.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.200000,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01309{transform:matrix(2.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.960000,0.000000,0.000000,0.250000,0,0);}
.v4_c01309{vertical-align:-13.800000px;}
.v2_c01309{vertical-align:-10.380000px;}
.v3_c01309{vertical-align:-6.900000px;}
.v0_c01309{vertical-align:0.000000px;}
.v1_c01309{vertical-align:3.420000px;}
.ls2_c01309{letter-spacing:0.000000px;}
.ls1_c01309{letter-spacing:48.207813px;}
.ls0_c01309{letter-spacing:107.060688px;}
.sc__c01309{text-shadow:none;}
.sc0_c01309{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01309{-webkit-text-stroke:0px transparent;}
.sc0_c01309{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5_c01309{word-spacing:-22.454400px;}
.ws1_c01309{word-spacing:-16.269120px;}
.ws2_c01309{word-spacing:-12.328380px;}
.ws6_c01309{word-spacing:0.000000px;}
.ws0_c01309{word-spacing:21.908640px;}
.ws3_c01309{word-spacing:57.860160px;}
.ws4_c01309{word-spacing:73.309740px;}
.fc0_c01309{color:transparent;}
.fs0_c01309{font-size:3.456000px;}
.fs5_c01309{font-size:6.000000px;}
.fs2_c01309{font-size:6.900000px;}
.fs1_c01309{font-size:10.380000px;}
.fs6_c01309{font-size:13.800000px;}
.fs20_c01309{font-size:17.280000px;}
.fs3_c01309{font-size:20.760000px;}
.fs16_c01309{font-size:24.180000px;}
.fsc_c01309{font-size:27.660000px;}
.fsa_c01309{font-size:31.080000px;}
.fs22_c01309{font-size:34.560000px;}
.fs8_c01309{font-size:38.040000px;}
.fs21_c01309{font-size:41.460000px;}
.fsb_c01309{font-size:44.940000px;}
.fs15_c01309{font-size:48.360000px;}
.fs1e_c01309{font-size:51.840000px;}
.fs18_c01309{font-size:55.320000px;}
.fsf_c01309{font-size:58.740000px;}
.fse_c01309{font-size:62.220000px;}
.fsd_c01309{font-size:65.640000px;}
.fs9_c01309{font-size:69.120000px;}
.fs17_c01309{font-size:72.600000px;}
.fs7_c01309{font-size:76.020000px;}
.fs13_c01309{font-size:79.500000px;}
.fs1f_c01309{font-size:82.920000px;}
.fs19_c01309{font-size:86.400000px;}
.fs1b_c01309{font-size:89.880000px;}
.fs12_c01309{font-size:93.300000px;}
.fs1a_c01309{font-size:96.780000px;}
.fs1c_c01309{font-size:100.200000px;}
.fs1d_c01309{font-size:103.680000px;}
.fs10_c01309{font-size:107.160000px;}
.fs14_c01309{font-size:110.580000px;}
.fs23_c01309{font-size:114.060000px;}
.fs25_c01309{font-size:117.480000px;}
.fs24_c01309{font-size:120.960000px;}
.fs11_c01309{font-size:127.860000px;}
.fs4_c01309{font-size:196.980000px;}
.y0_c01309{bottom:0.000000px;}
.y220_c01309{bottom:169.350000px;}
.y21d_c01309{bottom:171.075000px;}
.y21f_c01309{bottom:172.800000px;}
.y21e_c01309{bottom:178.845000px;}
.y221_c01309{bottom:181.440000px;}
.y21a_c01309{bottom:183.165000px;}
.y219_c01309{bottom:184.890000px;}
.y218_c01309{bottom:185.760000px;}
.y21c_c01309{bottom:190.080000px;}
.y21b_c01309{bottom:191.805000px;}
.y216_c01309{bottom:192.675000px;}
.y217_c01309{bottom:196.995000px;}
.y215_c01309{bottom:202.170000px;}
.y212_c01309{bottom:211.680000px;}
.y211_c01309{bottom:212.550000px;}
.y210_c01309{bottom:214.275000px;}
.y20d_c01309{bottom:217.725000px;}
.y20f_c01309{bottom:218.595000px;}
.y20e_c01309{bottom:222.045000px;}
.y214_c01309{bottom:222.915000px;}
.y20c_c01309{bottom:224.640000px;}
.y213_c01309{bottom:226.365000px;}
.y20a_c01309{bottom:227.235000px;}
.y209_c01309{bottom:228.960000px;}
.y20b_c01309{bottom:230.685000px;}
.y208_c01309{bottom:231.555000px;}
.y207_c01309{bottom:232.410000px;}
.y203_c01309{bottom:235.875000px;}
.y206_c01309{bottom:237.600000px;}
.y205_c01309{bottom:239.325000px;}
.y204_c01309{bottom:240.195000px;}
.y202_c01309{bottom:241.050000px;}
.y201_c01309{bottom:248.835000px;}
.y1fe_c01309{bottom:249.690000px;}
.y1fd_c01309{bottom:250.560000px;}
.y1ff_c01309{bottom:252.285000px;}
.y1fc_c01309{bottom:253.155000px;}
.y1f9_c01309{bottom:255.750000px;}
.y1f7_c01309{bottom:259.200000px;}
.y1fb_c01309{bottom:260.070000px;}
.y1fa_c01309{bottom:260.925000px;}
.y1f8_c01309{bottom:262.650000px;}
.y200_c01309{bottom:263.520000px;}
.y1f6_c01309{bottom:264.390000px;}
.y1f4_c01309{bottom:266.115000px;}
.y1f5_c01309{bottom:266.970000px;}
.y1f3_c01309{bottom:267.840000px;}
.y1f0_c01309{bottom:268.710000px;}
.y1f2_c01309{bottom:269.565000px;}
.y1f1_c01309{bottom:273.885000px;}
.y1ee_c01309{bottom:274.755000px;}
.y1ec_c01309{bottom:277.350000px;}
.y1ed_c01309{bottom:279.075000px;}
.y1ef_c01309{bottom:279.930000px;}
.y1eb_c01309{bottom:280.800000px;}
.y1ea_c01309{bottom:287.715000px;}
.y1e9_c01309{bottom:289.440000px;}
.y1e8_c01309{bottom:292.890000px;}
.y1e7_c01309{bottom:293.760000px;}
.y1e6_c01309{bottom:296.355000px;}
.y1e5_c01309{bottom:297.210000px;}
.y1e3_c01309{bottom:298.950000px;}
.y1e2_c01309{bottom:302.400000px;}
.y1e4_c01309{bottom:303.270000px;}
.y1e1_c01309{bottom:304.995000px;}
.y1e0_c01309{bottom:307.590000px;}
.y1de_c01309{bottom:309.315000px;}
.y1df_c01309{bottom:310.170000px;}
.y1db_c01309{bottom:311.910000px;}
.y1d9_c01309{bottom:312.765000px;}
.y1da_c01309{bottom:313.635000px;}
.y1dc_c01309{bottom:317.085000px;}
.y1dd_c01309{bottom:324.000000px;}
.y1d8_c01309{bottom:332.640000px;}
.y1d7_c01309{bottom:335.235000px;}
.y1d6_c01309{bottom:336.090000px;}
.y1d4_c01309{bottom:336.960000px;}
.y1d2_c01309{bottom:337.830000px;}
.y1d5_c01309{bottom:341.280000px;}
.y1d1_c01309{bottom:343.005000px;}
.y1d3_c01309{bottom:344.730000px;}
.y1cc_c01309{bottom:349.050000px;}
.y1d0_c01309{bottom:349.920000px;}
.y1ce_c01309{bottom:351.645000px;}
.y1ca_c01309{bottom:352.515000px;}
.y1cf_c01309{bottom:353.370000px;}
.y1c9_c01309{bottom:355.965000px;}
.y1cb_c01309{bottom:356.835000px;}
.y1c8_c01309{bottom:358.560000px;}
.y1cd_c01309{bottom:359.430000px;}
.y1c7_c01309{bottom:366.330000px;}
.y1c5_c01309{bottom:367.200000px;}
.y1c6_c01309{bottom:368.070000px;}
.y1c4_c01309{bottom:371.520000px;}
.y1c1_c01309{bottom:373.245000px;}
.y1be_c01309{bottom:374.115000px;}
.y1c2_c01309{bottom:376.710000px;}
.y1c0_c01309{bottom:377.565000px;}
.y1c3_c01309{bottom:381.030000px;}
.y1bf_c01309{bottom:381.885000px;}
.y1bd_c01309{bottom:386.205000px;}
.y1bc_c01309{bottom:387.075000px;}
.y1bb_c01309{bottom:389.670000px;}
.y1ba_c01309{bottom:392.250000px;}
.y1b7_c01309{bottom:394.845000px;}
.y1b8_c01309{bottom:395.715000px;}
.y1b6_c01309{bottom:400.035000px;}
.y1b5_c01309{bottom:405.210000px;}
.y1b9_c01309{bottom:407.805000px;}
.y1b4_c01309{bottom:410.400000px;}
.y1b3_c01309{bottom:412.995000px;}
.y1b1_c01309{bottom:413.850000px;}
.y1b0_c01309{bottom:414.720000px;}
.y1af_c01309{bottom:416.445000px;}
.y1b2_c01309{bottom:424.230000px;}
.y1ae_c01309{bottom:429.405000px;}
.y1ad_c01309{bottom:431.130000px;}
.y1ac_c01309{bottom:433.725000px;}
.y1aa_c01309{bottom:435.450000px;}
.y1ab_c01309{bottom:436.320000px;}
.y1a9_c01309{bottom:439.770000px;}
.y1a4_c01309{bottom:441.510000px;}
.y1a7_c01309{bottom:443.235000px;}
.y1a8_c01309{bottom:444.090000px;}
.y1a3_c01309{bottom:444.960000px;}
.y1a6_c01309{bottom:445.830000px;}
.y1a2_c01309{bottom:448.410000px;}
.y19f_c01309{bottom:450.150000px;}
.y1a5_c01309{bottom:451.005000px;}
.y19e_c01309{bottom:452.730000px;}
.y19c_c01309{bottom:453.600000px;}
.y1a1_c01309{bottom:454.470000px;}
.y19b_c01309{bottom:456.195000px;}
.y19d_c01309{bottom:457.920000px;}
.y1a0_c01309{bottom:463.965000px;}
.y199_c01309{bottom:466.560000px;}
.y198_c01309{bottom:468.285000px;}
.y19a_c01309{bottom:470.010000px;}
.y197_c01309{bottom:470.880000px;}
.y196_c01309{bottom:471.750000px;}
.y194_c01309{bottom:473.475000px;}
.y193_c01309{bottom:475.200000px;}
.y195_c01309{bottom:477.795000px;}
.y192_c01309{bottom:479.520000px;}
.y190_c01309{bottom:489.030000px;}
.y18f_c01309{bottom:490.755000px;}
.y18d_c01309{bottom:491.610000px;}
.y18c_c01309{bottom:492.480000px;}
.y18b_c01309{bottom:495.930000px;}
.y18a_c01309{bottom:498.525000px;}
.y191_c01309{bottom:500.250000px;}
.y18e_c01309{bottom:503.715000px;}
.y187_c01309{bottom:508.035000px;}
.y189_c01309{bottom:508.890000px;}
.y188_c01309{bottom:509.760000px;}
.y185_c01309{bottom:510.630000px;}
.y186_c01309{bottom:515.805000px;}
.y181_c01309{bottom:516.675000px;}
.y180_c01309{bottom:518.400000px;}
.y183_c01309{bottom:520.995000px;}
.y182_c01309{bottom:521.850000px;}
.y17f_c01309{bottom:523.590000px;}
.y184_c01309{bottom:524.445000px;}
.y17c_c01309{bottom:526.170000px;}
.y17d_c01309{bottom:527.040000px;}
.y17a_c01309{bottom:528.765000px;}
.y17e_c01309{bottom:529.635000px;}
.y17b_c01309{bottom:533.085000px;}
.y178_c01309{bottom:535.680000px;}
.y177_c01309{bottom:538.275000px;}
.y179_c01309{bottom:540.000000px;}
.y176_c01309{bottom:541.725000px;}
.y174_c01309{bottom:545.190000px;}
.y175_c01309{bottom:549.510000px;}
.y171_c01309{bottom:551.235000px;}
.y173_c01309{bottom:553.830000px;}
.y172_c01309{bottom:554.685000px;}
.y170_c01309{bottom:555.555000px;}
.y16f_c01309{bottom:556.410000px;}
.y16e_c01309{bottom:559.005000px;}
.y16d_c01309{bottom:560.730000px;}
.yf_c01309{bottom:563.325000px;}
.y16c_c01309{bottom:567.645000px;}
.y167_c01309{bottom:568.515000px;}
.ye_c01309{bottom:569.370000px;}
.y16a_c01309{bottom:570.240000px;}
.y166_c01309{bottom:571.110000px;}
.y169_c01309{bottom:572.835000px;}
.y168_c01309{bottom:573.690000px;}
.y164_c01309{bottom:576.285000px;}
.y163_c01309{bottom:578.880000px;}
.y165_c01309{bottom:580.605000px;}
.y16b_c01309{bottom:581.475000px;}
.y162_c01309{bottom:584.070000px;}
.y161_c01309{bottom:585.795000px;}
.y15f_c01309{bottom:587.520000px;}
.y160_c01309{bottom:590.970000px;}
.y156_c01309{bottom:591.840000px;}
.y15c_c01309{bottom:593.565000px;}
.y15e_c01309{bottom:594.435000px;}
.y15d_c01309{bottom:595.290000px;}
.y15a_c01309{bottom:597.030000px;}
.y15b_c01309{bottom:601.350000px;}
.y159_c01309{bottom:603.075000px;}
.y158_c01309{bottom:604.800000px;}
.y157_c01309{bottom:605.670000px;}
.y154_c01309{bottom:606.525000px;}
.y153_c01309{bottom:612.570000px;}
.y155_c01309{bottom:620.355000px;}
.y151_c01309{bottom:625.530000px;}
.yd_c01309{bottom:629.850000px;}
.y152_c01309{bottom:631.590000px;}
.y150_c01309{bottom:633.315000px;}
.y14f_c01309{bottom:634.170000px;}
.y14e_c01309{bottom:635.910000px;}
.y14b_c01309{bottom:636.765000px;}
.y14d_c01309{bottom:637.635000px;}
.y14c_c01309{bottom:638.490000px;}
.y14a_c01309{bottom:648.000000px;}
.yb_c01309{bottom:650.595000px;}
.y146_c01309{bottom:651.450000px;}
.y149_c01309{bottom:653.190000px;}
.y148_c01309{bottom:654.045000px;}
.y147_c01309{bottom:654.915000px;}
.yc_c01309{bottom:656.640000px;}
.y145_c01309{bottom:657.510000px;}
.y143_c01309{bottom:671.325000px;}
.y142_c01309{bottom:673.050000px;}
.y144_c01309{bottom:673.920000px;}
.y13f_c01309{bottom:677.370000px;}
.ya_c01309{bottom:682.560000px;}
.y140_c01309{bottom:683.430000px;}
.y13c_c01309{bottom:687.750000px;}
.y13a_c01309{bottom:691.200000px;}
.y13d_c01309{bottom:692.070000px;}
.y13b_c01309{bottom:693.795000px;}
.y141_c01309{bottom:694.650000px;}
.y13e_c01309{bottom:695.520000px;}
.y139_c01309{bottom:703.290000px;}
.y9_c01309{bottom:705.030000px;}
.y137_c01309{bottom:709.350000px;}
.y136_c01309{bottom:711.075000px;}
.y135_c01309{bottom:711.930000px;}
.y8_c01309{bottom:719.715000px;}
.y138_c01309{bottom:723.165000px;}
.y133_c01309{bottom:728.355000px;}
.y132_c01309{bottom:730.950000px;}
.y134_c01309{bottom:731.805000px;}
.y131_c01309{bottom:737.850000px;}
.y130_c01309{bottom:740.445000px;}
.y12e_c01309{bottom:742.170000px;}
.y12f_c01309{bottom:743.910000px;}
.y12c_c01309{bottom:750.810000px;}
.y12d_c01309{bottom:754.275000px;}
.y12b_c01309{bottom:755.130000px;}
.y12a_c01309{bottom:756.000000px;}
.y129_c01309{bottom:756.870000px;}
.y127_c01309{bottom:760.320000px;}
.y128_c01309{bottom:761.190000px;}
.y126_c01309{bottom:763.770000px;}
.y121_c01309{bottom:769.830000px;}
.y123_c01309{bottom:770.685000px;}
.y120_c01309{bottom:771.555000px;}
.y122_c01309{bottom:772.410000px;}
.y7_c01309{bottom:773.280000px;}
.y125_c01309{bottom:775.875000px;}
.y11c_c01309{bottom:777.600000px;}
.y124_c01309{bottom:779.325000px;}
.y11f_c01309{bottom:780.195000px;}
.y11a_c01309{bottom:781.050000px;}
.y6_c01309{bottom:781.920000px;}
.y11d_c01309{bottom:782.790000px;}
.y11e_c01309{bottom:783.645000px;}
.y11b_c01309{bottom:784.515000px;}
.y119_c01309{bottom:794.880000px;}
.y118_c01309{bottom:795.750000px;}
.y116_c01309{bottom:797.475000px;}
.y115_c01309{bottom:798.330000px;}
.y117_c01309{bottom:799.200000px;}
.y114_c01309{bottom:800.070000px;}
.y112_c01309{bottom:801.795000px;}
.y110_c01309{bottom:802.650000px;}
.y113_c01309{bottom:803.520000px;}
.y111_c01309{bottom:804.390000px;}
.y10f_c01309{bottom:805.245000px;}
.y10e_c01309{bottom:806.115000px;}
.y10c_c01309{bottom:808.710000px;}
.y10d_c01309{bottom:809.565000px;}
.y109_c01309{bottom:812.160000px;}
.y10a_c01309{bottom:813.030000px;}
.y10b_c01309{bottom:814.755000px;}
.y106_c01309{bottom:821.670000px;}
.y108_c01309{bottom:823.395000px;}
.y107_c01309{bottom:825.120000px;}
.y105_c01309{bottom:826.845000px;}
.y104_c01309{bottom:828.570000px;}
.y101_c01309{bottom:835.485000px;}
.y103_c01309{bottom:836.355000px;}
.y102_c01309{bottom:837.210000px;}
.yff_c01309{bottom:838.950000px;}
.yfe_c01309{bottom:843.270000px;}
.y100_c01309{bottom:844.125000px;}
.yfd_c01309{bottom:847.590000px;}
.yfc_c01309{bottom:849.315000px;}
.yfb_c01309{bottom:852.765000px;}
.yfa_c01309{bottom:856.230000px;}
.yf8_c01309{bottom:859.680000px;}
.yf7_c01309{bottom:860.550000px;}
.y5_c01309{bottom:861.405000px;}
.yf9_c01309{bottom:864.000000px;}
.yf5_c01309{bottom:869.190000px;}
.yf4_c01309{bottom:870.915000px;}
.yf2_c01309{bottom:873.510000px;}
.yf6_c01309{bottom:874.365000px;}
.yf3_c01309{bottom:877.830000px;}
.yef_c01309{bottom:878.685000px;}
.yed_c01309{bottom:880.410000px;}
.yf1_c01309{bottom:881.280000px;}
.yee_c01309{bottom:882.150000px;}
.yf0_c01309{bottom:883.875000px;}
.yec_c01309{bottom:889.050000px;}
.yea_c01309{bottom:889.920000px;}
.yeb_c01309{bottom:890.790000px;}
.ye9_c01309{bottom:892.515000px;}
.ye8_c01309{bottom:894.240000px;}
.ye7_c01309{bottom:895.110000px;}
.ye5_c01309{bottom:895.965000px;}
.ye6_c01309{bottom:898.560000px;}
.ye1_c01309{bottom:901.155000px;}
.ye2_c01309{bottom:902.010000px;}
.yde_c01309{bottom:902.880000px;}
.ydd_c01309{bottom:903.750000px;}
.ye4_c01309{bottom:904.605000px;}
.ye3_c01309{bottom:905.475000px;}
.ye0_c01309{bottom:906.330000px;}
.ydf_c01309{bottom:908.070000px;}
.ydb_c01309{bottom:909.795000px;}
.yda_c01309{bottom:912.390000px;}
.ydc_c01309{bottom:914.115000px;}
.yd7_c01309{bottom:914.970000px;}
.yd4_c01309{bottom:915.840000px;}
.yd5_c01309{bottom:916.710000px;}
.yd3_c01309{bottom:918.435000px;}
.yd6_c01309{bottom:922.755000px;}
.yd9_c01309{bottom:923.610000px;}
.yd8_c01309{bottom:924.480000px;}
.yd0_c01309{bottom:930.525000px;}
.yd1_c01309{bottom:931.395000px;}
.yce_c01309{bottom:933.120000px;}
.yd2_c01309{bottom:933.990000px;}
.ycf_c01309{bottom:934.845000px;}
.ycc_c01309{bottom:936.570000px;}
.ycd_c01309{bottom:940.890000px;}
.yc7_c01309{bottom:942.630000px;}
.ycb_c01309{bottom:943.485000px;}
.yca_c01309{bottom:944.355000px;}
.yc8_c01309{bottom:945.210000px;}
.yc9_c01309{bottom:946.080000px;}
.yc5_c01309{bottom:948.675000px;}
.yc6_c01309{bottom:949.530000px;}
.yc4_c01309{bottom:950.400000px;}
.yc2_c01309{bottom:952.995000px;}
.yc1_c01309{bottom:954.720000px;}
.yc3_c01309{bottom:957.315000px;}
.yc0_c01309{bottom:960.765000px;}
.ybd_c01309{bottom:973.725000px;}
.ybe_c01309{bottom:974.595000px;}
.ybb_c01309{bottom:976.320000px;}
.ybf_c01309{bottom:977.190000px;}
.yb9_c01309{bottom:978.915000px;}
.yb8_c01309{bottom:980.640000px;}
.ybc_c01309{bottom:982.365000px;}
.yb7_c01309{bottom:983.235000px;}
.yba_c01309{bottom:984.090000px;}
.yb4_c01309{bottom:991.875000px;}
.yb3_c01309{bottom:993.600000px;}
.yb6_c01309{bottom:994.470000px;}
.yb5_c01309{bottom:996.195000px;}
.yb0_c01309{bottom:997.050000px;}
.yae_c01309{bottom:998.790000px;}
.yb2_c01309{bottom:1001.370000px;}
.yb1_c01309{bottom:1002.240000px;}
.yaf_c01309{bottom:1003.110000px;}
.yad_c01309{bottom:1004.835000px;}
.yac_c01309{bottom:1006.560000px;}
.yab_c01309{bottom:1009.155000px;}
.yaa_c01309{bottom:1010.880000px;}
.ya8_c01309{bottom:1014.330000px;}
.ya4_c01309{bottom:1017.795000px;}
.ya1_c01309{bottom:1018.650000px;}
.ya0_c01309{bottom:1020.390000px;}
.ya9_c01309{bottom:1021.245000px;}
.ya5_c01309{bottom:1022.115000px;}
.ya6_c01309{bottom:1022.970000px;}
.ya3_c01309{bottom:1023.840000px;}
.ya2_c01309{bottom:1024.710000px;}
.y9f_c01309{bottom:1026.435000px;}
.y9e_c01309{bottom:1029.030000px;}
.ya7_c01309{bottom:1029.885000px;}
.y9d_c01309{bottom:1031.610000px;}
.y9a_c01309{bottom:1032.480000px;}
.y99_c01309{bottom:1034.205000px;}
.y9b_c01309{bottom:1035.930000px;}
.y9c_c01309{bottom:1036.800000px;}
.y95_c01309{bottom:1041.120000px;}
.y97_c01309{bottom:1042.845000px;}
.y96_c01309{bottom:1045.440000px;}
.y93_c01309{bottom:1048.890000px;}
.y92_c01309{bottom:1053.210000px;}
.y98_c01309{bottom:1054.080000px;}
.y91_c01309{bottom:1054.950000px;}
.y90_c01309{bottom:1057.530000px;}
.y94_c01309{bottom:1059.270000px;}
.y8e_c01309{bottom:1060.995000px;}
.y8b_c01309{bottom:1061.850000px;}
.y8d_c01309{bottom:1063.590000px;}
.y8f_c01309{bottom:1064.445000px;}
.y8c_c01309{bottom:1067.040000px;}
.y8a_c01309{bottom:1071.360000px;}
.y88_c01309{bottom:1073.955000px;}
.y89_c01309{bottom:1075.680000px;}
.y85_c01309{bottom:1078.275000px;}
.y84_c01309{bottom:1080.000000px;}
.y83_c01309{bottom:1080.870000px;}
.y87_c01309{bottom:1081.725000px;}
.y86_c01309{bottom:1082.595000px;}
.y81_c01309{bottom:1083.450000px;}
.y82_c01309{bottom:1086.915000px;}
.y7f_c01309{bottom:1091.235000px;}
.y80_c01309{bottom:1092.090000px;}
.y7e_c01309{bottom:1093.830000px;}
.y7c_c01309{bottom:1097.280000px;}
.y7b_c01309{bottom:1100.730000px;}
.y7d_c01309{bottom:1102.470000px;}
.y79_c01309{bottom:1105.920000px;}
.y7a_c01309{bottom:1106.790000px;}
.y78_c01309{bottom:1111.965000px;}
.y76_c01309{bottom:1116.285000px;}
.y74_c01309{bottom:1118.880000px;}
.y71_c01309{bottom:1121.475000px;}
.y77_c01309{bottom:1122.330000px;}
.y75_c01309{bottom:1123.200000px;}
.y73_c01309{bottom:1125.795000px;}
.y72_c01309{bottom:1126.650000px;}
.y70_c01309{bottom:1132.710000px;}
.y6e_c01309{bottom:1133.565000px;}
.y6f_c01309{bottom:1134.435000px;}
.y6d_c01309{bottom:1137.030000px;}
.y6c_c01309{bottom:1137.885000px;}
.y69_c01309{bottom:1142.205000px;}
.y6b_c01309{bottom:1145.670000px;}
.y6a_c01309{bottom:1146.525000px;}
.y68_c01309{bottom:1152.570000px;}
.y67_c01309{bottom:1154.310000px;}
.y66_c01309{bottom:1155.165000px;}
.y64_c01309{bottom:1156.035000px;}
.y63_c01309{bottom:1157.760000px;}
.y62_c01309{bottom:1159.485000px;}
.y61_c01309{bottom:1160.355000px;}
.y65_c01309{bottom:1161.210000px;}
.y5f_c01309{bottom:1162.080000px;}
.y60_c01309{bottom:1165.530000px;}
.y5e_c01309{bottom:1167.270000px;}
.y5b_c01309{bottom:1175.040000px;}
.y5a_c01309{bottom:1175.910000px;}
.y5d_c01309{bottom:1176.765000px;}
.y5c_c01309{bottom:1177.635000px;}
.y58_c01309{bottom:1179.360000px;}
.y57_c01309{bottom:1181.955000px;}
.y59_c01309{bottom:1182.810000px;}
.y56_c01309{bottom:1193.190000px;}
.y54_c01309{bottom:1194.045000px;}
.y55_c01309{bottom:1196.640000px;}
.y51_c01309{bottom:1200.960000px;}
.y53_c01309{bottom:1201.830000px;}
.y50_c01309{bottom:1202.685000px;}
.y52_c01309{bottom:1203.555000px;}
.y4e_c01309{bottom:1215.645000px;}
.y4b_c01309{bottom:1217.370000px;}
.y4a_c01309{bottom:1218.240000px;}
.y4c_c01309{bottom:1219.110000px;}
.y46_c01309{bottom:1219.965000px;}
.y4d_c01309{bottom:1220.835000px;}
.y49_c01309{bottom:1222.560000px;}
.y48_c01309{bottom:1223.430000px;}
.y45_c01309{bottom:1224.285000px;}
.y4f_c01309{bottom:1225.155000px;}
.y43_c01309{bottom:1232.070000px;}
.y42_c01309{bottom:1232.925000px;}
.y47_c01309{bottom:1233.795000px;}
.y3e_c01309{bottom:1238.115000px;}
.y44_c01309{bottom:1239.840000px;}
.y41_c01309{bottom:1240.710000px;}
.y40_c01309{bottom:1241.565000px;}
.y3f_c01309{bottom:1244.160000px;}
.y3a_c01309{bottom:1245.885000px;}
.y3c_c01309{bottom:1247.610000px;}
.y3b_c01309{bottom:1249.350000px;}
.y39_c01309{bottom:1251.075000px;}
.y38_c01309{bottom:1252.800000px;}
.y37_c01309{bottom:1255.395000px;}
.y35_c01309{bottom:1257.120000px;}
.y3d_c01309{bottom:1258.845000px;}
.y32_c01309{bottom:1261.440000px;}
.y34_c01309{bottom:1262.310000px;}
.y36_c01309{bottom:1263.165000px;}
.y31_c01309{bottom:1264.035000px;}
.y33_c01309{bottom:1266.630000px;}
.y30_c01309{bottom:1267.485000px;}
.y2f_c01309{bottom:1269.210000px;}
.y2e_c01309{bottom:1270.950000px;}
.y2d_c01309{bottom:1273.530000px;}
.y2c_c01309{bottom:1278.720000px;}
.y2b_c01309{bottom:1282.170000px;}
.y2a_c01309{bottom:1283.040000px;}
.y29_c01309{bottom:1284.765000px;}
.y26_c01309{bottom:1291.680000px;}
.y24_c01309{bottom:1296.000000px;}
.y28_c01309{bottom:1298.595000px;}
.y27_c01309{bottom:1299.450000px;}
.y25_c01309{bottom:1300.320000px;}
.y22_c01309{bottom:1301.190000px;}
.y21_c01309{bottom:1302.045000px;}
.y1f_c01309{bottom:1302.915000px;}
.y20_c01309{bottom:1303.770000px;}
.y23_c01309{bottom:1307.235000px;}
.y1e_c01309{bottom:1316.730000px;}
.y1b_c01309{bottom:1317.600000px;}
.y17_c01309{bottom:1319.325000px;}
.y1a_c01309{bottom:1320.195000px;}
.y1d_c01309{bottom:1322.790000px;}
.y16_c01309{bottom:1323.645000px;}
.y3_c01309{bottom:1324.515000px;}
.y4_c01309{bottom:1325.370000px;}
.y2_c01309{bottom:1326.240000px;}
.y19_c01309{bottom:1329.690000px;}
.y18_c01309{bottom:1330.560000px;}
.y15_c01309{bottom:1334.010000px;}
.y14_c01309{bottom:1334.880000px;}
.y12_c01309{bottom:1336.605000px;}
.y1c_c01309{bottom:1344.390000px;}
.y13_c01309{bottom:1346.970000px;}
.y10_c01309{bottom:1363.395000px;}
.y11_c01309{bottom:1365.120000px;}
.y1_c01309{bottom:1406.595000px;}
.h9_c01309{height:3.110063px;}
.h6_c01309{height:5.399414px;}
.h3_c01309{height:6.209326px;}
.h7_c01309{height:9.340986px;}
.h8_c01309{height:12.418652px;}
.h2_c01309{height:12.760986px;}
.h24_c01309{height:15.550313px;}
.h4_c01309{height:18.681973px;}
.h19_c01309{height:21.759639px;}
.hf_c01309{height:24.891299px;}
.hd_c01309{height:27.968965px;}
.h26_c01309{height:31.100625px;}
.hb_c01309{height:34.232285px;}
.h25_c01309{height:37.309951px;}
.he_c01309{height:40.441611px;}
.h18_c01309{height:43.519277px;}
.h23_c01309{height:45.611924px;}
.h28_c01309{height:45.960264px;}
.h21_c01309{height:46.650937px;}
.h1b_c01309{height:49.782598px;}
.h12_c01309{height:52.860264px;}
.h2b_c01309{height:53.202598px;}
.h11_c01309{height:55.991924px;}
.h10_c01309{height:59.069590px;}
.hc_c01309{height:62.201250px;}
.h1a_c01309{height:65.332910px;}
.ha_c01309{height:68.410576px;}
.h16_c01309{height:71.542236px;}
.h22_c01309{height:74.619902px;}
.h1c_c01309{height:77.751563px;}
.h1e_c01309{height:80.883223px;}
.h15_c01309{height:83.960889px;}
.h1d_c01309{height:87.092549px;}
.h1f_c01309{height:90.170215px;}
.h20_c01309{height:93.301875px;}
.h13_c01309{height:96.433535px;}
.h17_c01309{height:99.511201px;}
.h27_c01309{height:102.642861px;}
.h2a_c01309{height:105.720527px;}
.h29_c01309{height:108.852188px;}
.h14_c01309{height:115.061514px;}
.h5_c01309{height:177.262764px;}
.h0_c01309{height:1509.405000px;}
.h1_c01309{height:1509.750000px;}
.w0_c01309{width:1088.640000px;}
.w1_c01309{width:1089.000000px;}
.x0_c01309{left:0.000000px;}
.x1_c01309{left:1.725000px;}
.xc_c01309{left:108.870000px;}
.x5_c01309{left:114.045000px;}
.xa_c01309{left:115.770000px;}
.x6_c01309{left:117.510000px;}
.x7_c01309{left:122.685000px;}
.xb_c01309{left:133.920000px;}
.x8_c01309{left:137.369952px;}
.x2_c01309{left:156.390000px;}
.x3_c01309{left:177.120000px;}
.x9_c01309{left:182.310000px;}
.x4_c01309{left:184.035000px;}
.x64_c01309{left:194.400000px;}
.x7f_c01309{left:218.595000px;}
.x115_c01309{left:224.640000px;}
.x51_c01309{left:232.410000px;}
.xda_c01309{left:234.150000px;}
.xbb_c01309{left:235.875000px;}
.xf8_c01309{left:237.600000px;}
.x34_c01309{left:239.325000px;}
.x6d_c01309{left:241.050000px;}
.x46_c01309{left:242.790000px;}
.x3d_c01309{left:244.515000px;}
.xe7_c01309{left:246.240000px;}
.xf9_c01309{left:248.835000px;}
.x119_c01309{left:250.560000px;}
.xf4_c01309{left:253.155000px;}
.xa1_c01309{left:255.750000px;}
.x65_c01309{left:258.330000px;}
.x94_c01309{left:260.070000px;}
.x25_c01309{left:262.650000px;}
.x35_c01309{left:265.245000px;}
.xdb_c01309{left:267.840000px;}
.xcc_c01309{left:269.565000px;}
.xb3_c01309{left:271.290000px;}
.x9b_c01309{left:273.885000px;}
.xc9_c01309{left:276.480000px;}
.x105_c01309{left:279.075000px;}
.x91_c01309{left:280.800000px;}
.xc5_c01309{left:283.395000px;}
.xf1_c01309{left:285.120000px;}
.x80_c01309{left:286.845000px;}
.x47_c01309{left:289.440000px;}
.x36_c01309{left:293.760000px;}
.x8c_c01309{left:295.485000px;}
.x26_c01309{left:297.210000px;}
.x10d_c01309{left:298.950000px;}
.x100_c01309{left:301.530000px;}
.xf_c01309{left:303.270000px;}
.xbc_c01309{left:304.995000px;}
.x85_c01309{left:306.720000px;}
.xa2_c01309{left:309.315000px;}
.x6e_c01309{left:312.765000px;}
.x48_c01309{left:314.490000px;}
.xfa_c01309{left:317.955000px;}
.x78_c01309{left:320.550000px;}
.x27_c01309{left:323.130000px;}
.x52_c01309{left:325.725000px;}
.x86_c01309{left:328.320000px;}
.xe8_c01309{left:332.640000px;}
.x3e_c01309{left:335.235000px;}
.x116_c01309{left:336.960000px;}
.x66_c01309{left:338.685000px;}
.xbd_c01309{left:341.280000px;}
.xc6_c01309{left:343.005000px;}
.x11a_c01309{left:345.600000px;}
.x28_c01309{left:349.920000px;}
.x10_c01309{left:353.370000px;}
.xa3_c01309{left:355.110000px;}
.xd1_c01309{left:360.285000px;}
.xf2_c01309{left:362.010000px;}
.x6f_c01309{left:363.750000px;}
.x9c_c01309{left:367.200000px;}
.xdc_c01309{left:369.795000px;}
.x11_c01309{left:371.520000px;}
.x10f_c01309{left:373.245000px;}
.xac_c01309{left:374.970000px;}
.xcd_c01309{left:376.710000px;}
.xb4_c01309{left:380.160000px;}
.xe9_c01309{left:382.755000px;}
.x12_c01309{left:387.930000px;}
.xd2_c01309{left:389.670000px;}
.x81_c01309{left:392.250000px;}
.x87_c01309{left:393.990000px;}
.x3f_c01309{left:397.440000px;}
.x5f_c01309{left:400.035000px;}
.x37_c01309{left:401.760000px;}
.xf5_c01309{left:406.080000px;}
.xad_c01309{left:407.805000px;}
.x82_c01309{left:410.400000px;}
.xb5_c01309{left:412.125000px;}
.x79_c01309{left:417.315000px;}
.x8d_c01309{left:420.765000px;}
.x70_c01309{left:423.360000px;}
.x13_c01309{left:425.085000px;}
.xc7_c01309{left:427.680000px;}
.xd3_c01309{left:431.130000px;}
.xa4_c01309{left:432.870000px;}
.x106_c01309{left:434.595000px;}
.x101_c01309{left:436.320000px;}
.x58_c01309{left:440.640000px;}
.x95_c01309{left:442.365000px;}
.x71_c01309{left:444.090000px;}
.x109_c01309{left:446.685000px;}
.x10b_c01309{left:449.280000px;}
.x113_c01309{left:451.005000px;}
.xb6_c01309{left:452.730000px;}
.xa8_c01309{left:455.325000px;}
.xb7_c01309{left:459.645000px;}
.x14_c01309{left:463.110000px;}
.xc3_c01309{left:464.835000px;}
.x9d_c01309{left:467.430000px;}
.xbe_c01309{left:472.605000px;}
.x40_c01309{left:475.200000px;}
.x15_c01309{left:477.795000px;}
.x102_c01309{left:479.520000px;}
.x7a_c01309{left:482.970000px;}
.xf7_c01309{left:486.435000px;}
.x67_c01309{left:488.160000px;}
.xd6_c01309{left:490.755000px;}
.x41_c01309{left:492.480000px;}
.x8e_c01309{left:495.075000px;}
.xbf_c01309{left:497.670000px;}
.x29_c01309{left:501.120000px;}
.xdf_c01309{left:502.845000px;}
.x53_c01309{left:504.570000px;}
.x9e_c01309{left:507.165000px;}
.xb8_c01309{left:509.760000px;}
.x16_c01309{left:511.485000px;}
.x88_c01309{left:513.210000px;}
.xce_c01309{left:517.530000px;}
.x103_c01309{left:519.270000px;}
.x38_c01309{left:521.850000px;}
.x17_c01309{left:523.590000px;}
.x7b_c01309{left:525.315000px;}
.xd4_c01309{left:527.040000px;}
.x117_c01309{left:529.635000px;}
.x49_c01309{left:532.230000px;}
.xc4_c01309{left:539.130000px;}
.x18_c01309{left:541.725000px;}
.x104_c01309{left:546.045000px;}
.xc0_c01309{left:547.770000px;}
.x96_c01309{left:550.365000px;}
.x19_c01309{left:552.960000px;}
.xff_c01309{left:555.555000px;}
.xf0_c01309{left:558.150000px;}
.x97_c01309{left:562.470000px;}
.x1a_c01309{left:564.195000px;}
.x89_c01309{left:565.920000px;}
.xe2_c01309{left:567.645000px;}
.x92_c01309{left:569.370000px;}
.x68_c01309{left:571.110000px;}
.x39_c01309{left:572.835000px;}
.x10c_c01309{left:576.285000px;}
.x1b_c01309{left:578.010000px;}
.x11b_c01309{left:580.605000px;}
.x2a_c01309{left:582.330000px;}
.x83_c01309{left:584.925000px;}
.xdd_c01309{left:587.520000px;}
.x59_c01309{left:590.970000px;}
.x2b_c01309{left:593.565000px;}
.x110_c01309{left:595.290000px;}
.xa5_c01309{left:597.885000px;}
.x9f_c01309{left:600.480000px;}
.x5a_c01309{left:603.075000px;}
.x7c_c01309{left:604.800000px;}
.x8a_c01309{left:607.395000px;}
.x72_c01309{left:610.845000px;}
.x42_c01309{left:613.440000px;}
.xed_c01309{left:618.630000px;}
.x4a_c01309{left:620.355000px;}
.x54_c01309{left:622.080000px;}
.xfb_c01309{left:624.675000px;}
.x7d_c01309{left:627.270000px;}
.xe5_c01309{left:628.995000px;}
.xae_c01309{left:630.720000px;}
.x69_c01309{left:632.445000px;}
.x3a_c01309{left:635.910000px;}
.x114_c01309{left:637.635000px;}
.xca_c01309{left:639.360000px;}
.x5b_c01309{left:641.955000px;}
.xb9_c01309{left:643.680000px;}
.xa9_c01309{left:645.405000px;}
.xc8_c01309{left:648.000000px;}
.x107_c01309{left:651.450000px;}
.x4b_c01309{left:653.190000px;}
.x43_c01309{left:655.770000px;}
.x55_c01309{left:659.235000px;}
.xe0_c01309{left:660.960000px;}
.xaa_c01309{left:663.555000px;}
.xde_c01309{left:666.150000px;}
.x1c_c01309{left:667.875000px;}
.x5c_c01309{left:669.600000px;}
.xfc_c01309{left:673.050000px;}
.xee_c01309{left:674.790000px;}
.x73_c01309{left:677.370000px;}
.x2c_c01309{left:679.110000px;}
.xeb_c01309{left:681.690000px;}
.x6a_c01309{left:684.285000px;}
.x60_c01309{left:687.750000px;}
.x74_c01309{left:692.070000px;}
.x44_c01309{left:695.520000px;}
.xcf_c01309{left:698.115000px;}
.x2d_c01309{left:699.840000px;}
.xa6_c01309{left:701.565000px;}
.xcb_c01309{left:704.160000px;}
.x8f_c01309{left:706.755000px;}
.x1d_c01309{left:711.075000px;}
.x3b_c01309{left:713.670000px;}
.x7e_c01309{left:715.395000px;}
.x56_c01309{left:717.120000px;}
.x98_c01309{left:718.845000px;}
.x8b_c01309{left:721.440000px;}
.x61_c01309{left:724.890000px;}
.x1e_c01309{left:727.485000px;}
.x2e_c01309{left:729.210000px;}
.xef_c01309{left:731.805000px;}
.x6b_c01309{left:733.530000px;}
.x4c_c01309{left:736.125000px;}
.x75_c01309{left:738.720000px;}
.x108_c01309{left:740.445000px;}
.xfd_c01309{left:743.040000px;}
.xd7_c01309{left:744.765000px;}
.x10e_c01309{left:746.490000px;}
.x2f_c01309{left:748.230000px;}
.xe1_c01309{left:749.955000px;}
.xab_c01309{left:752.550000px;}
.x1f_c01309{left:755.130000px;}
.x62_c01309{left:756.870000px;}
.x4d_c01309{left:758.595000px;}
.x10a_c01309{left:761.190000px;}
.x4e_c01309{left:765.510000px;}
.xe3_c01309{left:767.235000px;}
.x93_c01309{left:771.555000px;}
.x3c_c01309{left:773.280000px;}
.xd0_c01309{left:777.600000px;}
.xa7_c01309{left:780.195000px;}
.xea_c01309{left:781.920000px;}
.x5d_c01309{left:786.240000px;}
.x76_c01309{left:789.690000px;}
.x45_c01309{left:792.285000px;}
.xec_c01309{left:797.475000px;}
.xd5_c01309{left:800.925000px;}
.xaf_c01309{left:803.520000px;}
.x4f_c01309{left:806.115000px;}
.x20_c01309{left:807.840000px;}
.x99_c01309{left:809.565000px;}
.xa0_c01309{left:812.160000px;}
.xd8_c01309{left:813.885000px;}
.x30_c01309{left:815.610000px;}
.x6c_c01309{left:818.205000px;}
.x111_c01309{left:819.930000px;}
.xd9_c01309{left:821.670000px;}
.xf6_c01309{left:823.395000px;}
.xc1_c01309{left:825.120000px;}
.x50_c01309{left:828.570000px;}
.x21_c01309{left:830.310000px;}
.x84_c01309{left:832.890000px;}
.x31_c01309{left:834.630000px;}
.xb0_c01309{left:836.355000px;}
.x5e_c01309{left:838.080000px;}
.xf3_c01309{left:842.400000px;}
.x77_c01309{left:844.995000px;}
.xb1_c01309{left:847.590000px;}
.x22_c01309{left:849.315000px;}
.xe6_c01309{left:851.910000px;}
.x63_c01309{left:853.635000px;}
.xb2_c01309{left:855.360000px;}
.x23_c01309{left:858.810000px;}
.x57_c01309{left:863.124816px;}
.x112_c01309{left:867.450000px;}
.xba_c01309{left:869.190000px;}
.x118_c01309{left:871.770000px;}
.x9a_c01309{left:875.235000px;}
.xc2_c01309{left:877.830000px;}
.x32_c01309{left:880.410000px;}
.xfe_c01309{left:886.470000px;}
.xe4_c01309{left:888.195000px;}
.x33_c01309{left:892.515000px;}
.x90_c01309{left:896.835000px;}
.xd_c01309{left:904.605000px;}
.x24_c01309{left:910.650000px;}
.xe_c01309{left:921.885000px;}
.x11c_c01309{left:951.270000px;}
@media print{
.v4_c01309{vertical-align:-12.266667pt;}
.v2_c01309{vertical-align:-9.226667pt;}
.v3_c01309{vertical-align:-6.133333pt;}
.v0_c01309{vertical-align:0.000000pt;}
.v1_c01309{vertical-align:3.040000pt;}
.ls2_c01309{letter-spacing:0.000000pt;}
.ls1_c01309{letter-spacing:42.851390pt;}
.ls0_c01309{letter-spacing:95.165056pt;}
.ws5_c01309{word-spacing:-19.959467pt;}
.ws1_c01309{word-spacing:-14.461440pt;}
.ws2_c01309{word-spacing:-10.958560pt;}
.ws6_c01309{word-spacing:0.000000pt;}
.ws0_c01309{word-spacing:19.474347pt;}
.ws3_c01309{word-spacing:51.431253pt;}
.ws4_c01309{word-spacing:65.164213pt;}
.fs0_c01309{font-size:3.072000pt;}
.fs5_c01309{font-size:5.333333pt;}
.fs2_c01309{font-size:6.133333pt;}
.fs1_c01309{font-size:9.226667pt;}
.fs6_c01309{font-size:12.266667pt;}
.fs20_c01309{font-size:15.360000pt;}
.fs3_c01309{font-size:18.453333pt;}
.fs16_c01309{font-size:21.493333pt;}
.fsc_c01309{font-size:24.586667pt;}
.fsa_c01309{font-size:27.626667pt;}
.fs22_c01309{font-size:30.720000pt;}
.fs8_c01309{font-size:33.813333pt;}
.fs21_c01309{font-size:36.853333pt;}
.fsb_c01309{font-size:39.946667pt;}
.fs15_c01309{font-size:42.986667pt;}
.fs1e_c01309{font-size:46.080000pt;}
.fs18_c01309{font-size:49.173333pt;}
.fsf_c01309{font-size:52.213333pt;}
.fse_c01309{font-size:55.306667pt;}
.fsd_c01309{font-size:58.346667pt;}
.fs9_c01309{font-size:61.440000pt;}
.fs17_c01309{font-size:64.533333pt;}
.fs7_c01309{font-size:67.573333pt;}
.fs13_c01309{font-size:70.666667pt;}
.fs1f_c01309{font-size:73.706667pt;}
.fs19_c01309{font-size:76.800000pt;}
.fs1b_c01309{font-size:79.893333pt;}
.fs12_c01309{font-size:82.933333pt;}
.fs1a_c01309{font-size:86.026667pt;}
.fs1c_c01309{font-size:89.066667pt;}
.fs1d_c01309{font-size:92.160000pt;}
.fs10_c01309{font-size:95.253333pt;}
.fs14_c01309{font-size:98.293333pt;}
.fs23_c01309{font-size:101.386667pt;}
.fs25_c01309{font-size:104.426667pt;}
.fs24_c01309{font-size:107.520000pt;}
.fs11_c01309{font-size:113.653333pt;}
.fs4_c01309{font-size:175.093333pt;}
.y0_c01309{bottom:0.000000pt;}
.y220_c01309{bottom:150.533333pt;}
.y21d_c01309{bottom:152.066667pt;}
.y21f_c01309{bottom:153.600000pt;}
.y21e_c01309{bottom:158.973333pt;}
.y221_c01309{bottom:161.280000pt;}
.y21a_c01309{bottom:162.813333pt;}
.y219_c01309{bottom:164.346667pt;}
.y218_c01309{bottom:165.120000pt;}
.y21c_c01309{bottom:168.960000pt;}
.y21b_c01309{bottom:170.493333pt;}
.y216_c01309{bottom:171.266667pt;}
.y217_c01309{bottom:175.106667pt;}
.y215_c01309{bottom:179.706667pt;}
.y212_c01309{bottom:188.160000pt;}
.y211_c01309{bottom:188.933333pt;}
.y210_c01309{bottom:190.466667pt;}
.y20d_c01309{bottom:193.533333pt;}
.y20f_c01309{bottom:194.306667pt;}
.y20e_c01309{bottom:197.373333pt;}
.y214_c01309{bottom:198.146667pt;}
.y20c_c01309{bottom:199.680000pt;}
.y213_c01309{bottom:201.213333pt;}
.y20a_c01309{bottom:201.986667pt;}
.y209_c01309{bottom:203.520000pt;}
.y20b_c01309{bottom:205.053333pt;}
.y208_c01309{bottom:205.826667pt;}
.y207_c01309{bottom:206.586667pt;}
.y203_c01309{bottom:209.666667pt;}
.y206_c01309{bottom:211.200000pt;}
.y205_c01309{bottom:212.733333pt;}
.y204_c01309{bottom:213.506667pt;}
.y202_c01309{bottom:214.266667pt;}
.y201_c01309{bottom:221.186667pt;}
.y1fe_c01309{bottom:221.946667pt;}
.y1fd_c01309{bottom:222.720000pt;}
.y1ff_c01309{bottom:224.253333pt;}
.y1fc_c01309{bottom:225.026667pt;}
.y1f9_c01309{bottom:227.333333pt;}
.y1f7_c01309{bottom:230.400000pt;}
.y1fb_c01309{bottom:231.173333pt;}
.y1fa_c01309{bottom:231.933333pt;}
.y1f8_c01309{bottom:233.466667pt;}
.y200_c01309{bottom:234.240000pt;}
.y1f6_c01309{bottom:235.013333pt;}
.y1f4_c01309{bottom:236.546667pt;}
.y1f5_c01309{bottom:237.306667pt;}
.y1f3_c01309{bottom:238.080000pt;}
.y1f0_c01309{bottom:238.853333pt;}
.y1f2_c01309{bottom:239.613333pt;}
.y1f1_c01309{bottom:243.453333pt;}
.y1ee_c01309{bottom:244.226667pt;}
.y1ec_c01309{bottom:246.533333pt;}
.y1ed_c01309{bottom:248.066667pt;}
.y1ef_c01309{bottom:248.826667pt;}
.y1eb_c01309{bottom:249.600000pt;}
.y1ea_c01309{bottom:255.746667pt;}
.y1e9_c01309{bottom:257.280000pt;}
.y1e8_c01309{bottom:260.346667pt;}
.y1e7_c01309{bottom:261.120000pt;}
.y1e6_c01309{bottom:263.426667pt;}
.y1e5_c01309{bottom:264.186667pt;}
.y1e3_c01309{bottom:265.733333pt;}
.y1e2_c01309{bottom:268.800000pt;}
.y1e4_c01309{bottom:269.573333pt;}
.y1e1_c01309{bottom:271.106667pt;}
.y1e0_c01309{bottom:273.413333pt;}
.y1de_c01309{bottom:274.946667pt;}
.y1df_c01309{bottom:275.706667pt;}
.y1db_c01309{bottom:277.253333pt;}
.y1d9_c01309{bottom:278.013333pt;}
.y1da_c01309{bottom:278.786667pt;}
.y1dc_c01309{bottom:281.853333pt;}
.y1dd_c01309{bottom:288.000000pt;}
.y1d8_c01309{bottom:295.680000pt;}
.y1d7_c01309{bottom:297.986667pt;}
.y1d6_c01309{bottom:298.746667pt;}
.y1d4_c01309{bottom:299.520000pt;}
.y1d2_c01309{bottom:300.293333pt;}
.y1d5_c01309{bottom:303.360000pt;}
.y1d1_c01309{bottom:304.893333pt;}
.y1d3_c01309{bottom:306.426667pt;}
.y1cc_c01309{bottom:310.266667pt;}
.y1d0_c01309{bottom:311.040000pt;}
.y1ce_c01309{bottom:312.573333pt;}
.y1ca_c01309{bottom:313.346667pt;}
.y1cf_c01309{bottom:314.106667pt;}
.y1c9_c01309{bottom:316.413333pt;}
.y1cb_c01309{bottom:317.186667pt;}
.y1c8_c01309{bottom:318.720000pt;}
.y1cd_c01309{bottom:319.493333pt;}
.y1c7_c01309{bottom:325.626667pt;}
.y1c5_c01309{bottom:326.400000pt;}
.y1c6_c01309{bottom:327.173333pt;}
.y1c4_c01309{bottom:330.240000pt;}
.y1c1_c01309{bottom:331.773333pt;}
.y1be_c01309{bottom:332.546667pt;}
.y1c2_c01309{bottom:334.853333pt;}
.y1c0_c01309{bottom:335.613333pt;}
.y1c3_c01309{bottom:338.693333pt;}
.y1bf_c01309{bottom:339.453333pt;}
.y1bd_c01309{bottom:343.293333pt;}
.y1bc_c01309{bottom:344.066667pt;}
.y1bb_c01309{bottom:346.373333pt;}
.y1ba_c01309{bottom:348.666667pt;}
.y1b7_c01309{bottom:350.973333pt;}
.y1b8_c01309{bottom:351.746667pt;}
.y1b6_c01309{bottom:355.586667pt;}
.y1b5_c01309{bottom:360.186667pt;}
.y1b9_c01309{bottom:362.493333pt;}
.y1b4_c01309{bottom:364.800000pt;}
.y1b3_c01309{bottom:367.106667pt;}
.y1b1_c01309{bottom:367.866667pt;}
.y1b0_c01309{bottom:368.640000pt;}
.y1af_c01309{bottom:370.173333pt;}
.y1b2_c01309{bottom:377.093333pt;}
.y1ae_c01309{bottom:381.693333pt;}
.y1ad_c01309{bottom:383.226667pt;}
.y1ac_c01309{bottom:385.533333pt;}
.y1aa_c01309{bottom:387.066667pt;}
.y1ab_c01309{bottom:387.840000pt;}
.y1a9_c01309{bottom:390.906667pt;}
.y1a4_c01309{bottom:392.453333pt;}
.y1a7_c01309{bottom:393.986667pt;}
.y1a8_c01309{bottom:394.746667pt;}
.y1a3_c01309{bottom:395.520000pt;}
.y1a6_c01309{bottom:396.293333pt;}
.y1a2_c01309{bottom:398.586667pt;}
.y19f_c01309{bottom:400.133333pt;}
.y1a5_c01309{bottom:400.893333pt;}
.y19e_c01309{bottom:402.426667pt;}
.y19c_c01309{bottom:403.200000pt;}
.y1a1_c01309{bottom:403.973333pt;}
.y19b_c01309{bottom:405.506667pt;}
.y19d_c01309{bottom:407.040000pt;}
.y1a0_c01309{bottom:412.413333pt;}
.y199_c01309{bottom:414.720000pt;}
.y198_c01309{bottom:416.253333pt;}
.y19a_c01309{bottom:417.786667pt;}
.y197_c01309{bottom:418.560000pt;}
.y196_c01309{bottom:419.333333pt;}
.y194_c01309{bottom:420.866667pt;}
.y193_c01309{bottom:422.400000pt;}
.y195_c01309{bottom:424.706667pt;}
.y192_c01309{bottom:426.240000pt;}
.y190_c01309{bottom:434.693333pt;}
.y18f_c01309{bottom:436.226667pt;}
.y18d_c01309{bottom:436.986667pt;}
.y18c_c01309{bottom:437.760000pt;}
.y18b_c01309{bottom:440.826667pt;}
.y18a_c01309{bottom:443.133333pt;}
.y191_c01309{bottom:444.666667pt;}
.y18e_c01309{bottom:447.746667pt;}
.y187_c01309{bottom:451.586667pt;}
.y189_c01309{bottom:452.346667pt;}
.y188_c01309{bottom:453.120000pt;}
.y185_c01309{bottom:453.893333pt;}
.y186_c01309{bottom:458.493333pt;}
.y181_c01309{bottom:459.266667pt;}
.y180_c01309{bottom:460.800000pt;}
.y183_c01309{bottom:463.106667pt;}
.y182_c01309{bottom:463.866667pt;}
.y17f_c01309{bottom:465.413333pt;}
.y184_c01309{bottom:466.173333pt;}
.y17c_c01309{bottom:467.706667pt;}
.y17d_c01309{bottom:468.480000pt;}
.y17a_c01309{bottom:470.013333pt;}
.y17e_c01309{bottom:470.786667pt;}
.y17b_c01309{bottom:473.853333pt;}
.y178_c01309{bottom:476.160000pt;}
.y177_c01309{bottom:478.466667pt;}
.y179_c01309{bottom:480.000000pt;}
.y176_c01309{bottom:481.533333pt;}
.y174_c01309{bottom:484.613333pt;}
.y175_c01309{bottom:488.453333pt;}
.y171_c01309{bottom:489.986667pt;}
.y173_c01309{bottom:492.293333pt;}
.y172_c01309{bottom:493.053333pt;}
.y170_c01309{bottom:493.826667pt;}
.y16f_c01309{bottom:494.586667pt;}
.y16e_c01309{bottom:496.893333pt;}
.y16d_c01309{bottom:498.426667pt;}
.yf_c01309{bottom:500.733333pt;}
.y16c_c01309{bottom:504.573333pt;}
.y167_c01309{bottom:505.346667pt;}
.ye_c01309{bottom:506.106667pt;}
.y16a_c01309{bottom:506.880000pt;}
.y166_c01309{bottom:507.653333pt;}
.y169_c01309{bottom:509.186667pt;}
.y168_c01309{bottom:509.946667pt;}
.y164_c01309{bottom:512.253333pt;}
.y163_c01309{bottom:514.560000pt;}
.y165_c01309{bottom:516.093333pt;}
.y16b_c01309{bottom:516.866667pt;}
.y162_c01309{bottom:519.173333pt;}
.y161_c01309{bottom:520.706667pt;}
.y15f_c01309{bottom:522.240000pt;}
.y160_c01309{bottom:525.306667pt;}
.y156_c01309{bottom:526.080000pt;}
.y15c_c01309{bottom:527.613333pt;}
.y15e_c01309{bottom:528.386667pt;}
.y15d_c01309{bottom:529.146667pt;}
.y15a_c01309{bottom:530.693333pt;}
.y15b_c01309{bottom:534.533333pt;}
.y159_c01309{bottom:536.066667pt;}
.y158_c01309{bottom:537.600000pt;}
.y157_c01309{bottom:538.373333pt;}
.y154_c01309{bottom:539.133333pt;}
.y153_c01309{bottom:544.506667pt;}
.y155_c01309{bottom:551.426667pt;}
.y151_c01309{bottom:556.026667pt;}
.yd_c01309{bottom:559.866667pt;}
.y152_c01309{bottom:561.413333pt;}
.y150_c01309{bottom:562.946667pt;}
.y14f_c01309{bottom:563.706667pt;}
.y14e_c01309{bottom:565.253333pt;}
.y14b_c01309{bottom:566.013333pt;}
.y14d_c01309{bottom:566.786667pt;}
.y14c_c01309{bottom:567.546667pt;}
.y14a_c01309{bottom:576.000000pt;}
.yb_c01309{bottom:578.306667pt;}
.y146_c01309{bottom:579.066667pt;}
.y149_c01309{bottom:580.613333pt;}
.y148_c01309{bottom:581.373333pt;}
.y147_c01309{bottom:582.146667pt;}
.yc_c01309{bottom:583.680000pt;}
.y145_c01309{bottom:584.453333pt;}
.y143_c01309{bottom:596.733333pt;}
.y142_c01309{bottom:598.266667pt;}
.y144_c01309{bottom:599.040000pt;}
.y13f_c01309{bottom:602.106667pt;}
.ya_c01309{bottom:606.720000pt;}
.y140_c01309{bottom:607.493333pt;}
.y13c_c01309{bottom:611.333333pt;}
.y13a_c01309{bottom:614.400000pt;}
.y13d_c01309{bottom:615.173333pt;}
.y13b_c01309{bottom:616.706667pt;}
.y141_c01309{bottom:617.466667pt;}
.y13e_c01309{bottom:618.240000pt;}
.y139_c01309{bottom:625.146667pt;}
.y9_c01309{bottom:626.693333pt;}
.y137_c01309{bottom:630.533333pt;}
.y136_c01309{bottom:632.066667pt;}
.y135_c01309{bottom:632.826667pt;}
.y8_c01309{bottom:639.746667pt;}
.y138_c01309{bottom:642.813333pt;}
.y133_c01309{bottom:647.426667pt;}
.y132_c01309{bottom:649.733333pt;}
.y134_c01309{bottom:650.493333pt;}
.y131_c01309{bottom:655.866667pt;}
.y130_c01309{bottom:658.173333pt;}
.y12e_c01309{bottom:659.706667pt;}
.y12f_c01309{bottom:661.253333pt;}
.y12c_c01309{bottom:667.386667pt;}
.y12d_c01309{bottom:670.466667pt;}
.y12b_c01309{bottom:671.226667pt;}
.y12a_c01309{bottom:672.000000pt;}
.y129_c01309{bottom:672.773333pt;}
.y127_c01309{bottom:675.840000pt;}
.y128_c01309{bottom:676.613333pt;}
.y126_c01309{bottom:678.906667pt;}
.y121_c01309{bottom:684.293333pt;}
.y123_c01309{bottom:685.053333pt;}
.y120_c01309{bottom:685.826667pt;}
.y122_c01309{bottom:686.586667pt;}
.y7_c01309{bottom:687.360000pt;}
.y125_c01309{bottom:689.666667pt;}
.y11c_c01309{bottom:691.200000pt;}
.y124_c01309{bottom:692.733333pt;}
.y11f_c01309{bottom:693.506667pt;}
.y11a_c01309{bottom:694.266667pt;}
.y6_c01309{bottom:695.040000pt;}
.y11d_c01309{bottom:695.813333pt;}
.y11e_c01309{bottom:696.573333pt;}
.y11b_c01309{bottom:697.346667pt;}
.y119_c01309{bottom:706.560000pt;}
.y118_c01309{bottom:707.333333pt;}
.y116_c01309{bottom:708.866667pt;}
.y115_c01309{bottom:709.626667pt;}
.y117_c01309{bottom:710.400000pt;}
.y114_c01309{bottom:711.173333pt;}
.y112_c01309{bottom:712.706667pt;}
.y110_c01309{bottom:713.466667pt;}
.y113_c01309{bottom:714.240000pt;}
.y111_c01309{bottom:715.013333pt;}
.y10f_c01309{bottom:715.773333pt;}
.y10e_c01309{bottom:716.546667pt;}
.y10c_c01309{bottom:718.853333pt;}
.y10d_c01309{bottom:719.613333pt;}
.y109_c01309{bottom:721.920000pt;}
.y10a_c01309{bottom:722.693333pt;}
.y10b_c01309{bottom:724.226667pt;}
.y106_c01309{bottom:730.373333pt;}
.y108_c01309{bottom:731.906667pt;}
.y107_c01309{bottom:733.440000pt;}
.y105_c01309{bottom:734.973333pt;}
.y104_c01309{bottom:736.506667pt;}
.y101_c01309{bottom:742.653333pt;}
.y103_c01309{bottom:743.426667pt;}
.y102_c01309{bottom:744.186667pt;}
.yff_c01309{bottom:745.733333pt;}
.yfe_c01309{bottom:749.573333pt;}
.y100_c01309{bottom:750.333333pt;}
.yfd_c01309{bottom:753.413333pt;}
.yfc_c01309{bottom:754.946667pt;}
.yfb_c01309{bottom:758.013333pt;}
.yfa_c01309{bottom:761.093333pt;}
.yf8_c01309{bottom:764.160000pt;}
.yf7_c01309{bottom:764.933333pt;}
.y5_c01309{bottom:765.693333pt;}
.yf9_c01309{bottom:768.000000pt;}
.yf5_c01309{bottom:772.613333pt;}
.yf4_c01309{bottom:774.146667pt;}
.yf2_c01309{bottom:776.453333pt;}
.yf6_c01309{bottom:777.213333pt;}
.yf3_c01309{bottom:780.293333pt;}
.yef_c01309{bottom:781.053333pt;}
.yed_c01309{bottom:782.586667pt;}
.yf1_c01309{bottom:783.360000pt;}
.yee_c01309{bottom:784.133333pt;}
.yf0_c01309{bottom:785.666667pt;}
.yec_c01309{bottom:790.266667pt;}
.yea_c01309{bottom:791.040000pt;}
.yeb_c01309{bottom:791.813333pt;}
.ye9_c01309{bottom:793.346667pt;}
.ye8_c01309{bottom:794.880000pt;}
.ye7_c01309{bottom:795.653333pt;}
.ye5_c01309{bottom:796.413333pt;}
.ye6_c01309{bottom:798.720000pt;}
.ye1_c01309{bottom:801.026667pt;}
.ye2_c01309{bottom:801.786667pt;}
.yde_c01309{bottom:802.560000pt;}
.ydd_c01309{bottom:803.333333pt;}
.ye4_c01309{bottom:804.093333pt;}
.ye3_c01309{bottom:804.866667pt;}
.ye0_c01309{bottom:805.626667pt;}
.ydf_c01309{bottom:807.173333pt;}
.ydb_c01309{bottom:808.706667pt;}
.yda_c01309{bottom:811.013333pt;}
.ydc_c01309{bottom:812.546667pt;}
.yd7_c01309{bottom:813.306667pt;}
.yd4_c01309{bottom:814.080000pt;}
.yd5_c01309{bottom:814.853333pt;}
.yd3_c01309{bottom:816.386667pt;}
.yd6_c01309{bottom:820.226667pt;}
.yd9_c01309{bottom:820.986667pt;}
.yd8_c01309{bottom:821.760000pt;}
.yd0_c01309{bottom:827.133333pt;}
.yd1_c01309{bottom:827.906667pt;}
.yce_c01309{bottom:829.440000pt;}
.yd2_c01309{bottom:830.213333pt;}
.ycf_c01309{bottom:830.973333pt;}
.ycc_c01309{bottom:832.506667pt;}
.ycd_c01309{bottom:836.346667pt;}
.yc7_c01309{bottom:837.893333pt;}
.ycb_c01309{bottom:838.653333pt;}
.yca_c01309{bottom:839.426667pt;}
.yc8_c01309{bottom:840.186667pt;}
.yc9_c01309{bottom:840.960000pt;}
.yc5_c01309{bottom:843.266667pt;}
.yc6_c01309{bottom:844.026667pt;}
.yc4_c01309{bottom:844.800000pt;}
.yc2_c01309{bottom:847.106667pt;}
.yc1_c01309{bottom:848.640000pt;}
.yc3_c01309{bottom:850.946667pt;}
.yc0_c01309{bottom:854.013333pt;}
.ybd_c01309{bottom:865.533333pt;}
.ybe_c01309{bottom:866.306667pt;}
.ybb_c01309{bottom:867.840000pt;}
.ybf_c01309{bottom:868.613333pt;}
.yb9_c01309{bottom:870.146667pt;}
.yb8_c01309{bottom:871.680000pt;}
.ybc_c01309{bottom:873.213333pt;}
.yb7_c01309{bottom:873.986667pt;}
.yba_c01309{bottom:874.746667pt;}
.yb4_c01309{bottom:881.666667pt;}
.yb3_c01309{bottom:883.200000pt;}
.yb6_c01309{bottom:883.973333pt;}
.yb5_c01309{bottom:885.506667pt;}
.yb0_c01309{bottom:886.266667pt;}
.yae_c01309{bottom:887.813333pt;}
.yb2_c01309{bottom:890.106667pt;}
.yb1_c01309{bottom:890.880000pt;}
.yaf_c01309{bottom:891.653333pt;}
.yad_c01309{bottom:893.186667pt;}
.yac_c01309{bottom:894.720000pt;}
.yab_c01309{bottom:897.026667pt;}
.yaa_c01309{bottom:898.560000pt;}
.ya8_c01309{bottom:901.626667pt;}
.ya4_c01309{bottom:904.706667pt;}
.ya1_c01309{bottom:905.466667pt;}
.ya0_c01309{bottom:907.013333pt;}
.ya9_c01309{bottom:907.773333pt;}
.ya5_c01309{bottom:908.546667pt;}
.ya6_c01309{bottom:909.306667pt;}
.ya3_c01309{bottom:910.080000pt;}
.ya2_c01309{bottom:910.853333pt;}
.y9f_c01309{bottom:912.386667pt;}
.y9e_c01309{bottom:914.693333pt;}
.ya7_c01309{bottom:915.453333pt;}
.y9d_c01309{bottom:916.986667pt;}
.y9a_c01309{bottom:917.760000pt;}
.y99_c01309{bottom:919.293333pt;}
.y9b_c01309{bottom:920.826667pt;}
.y9c_c01309{bottom:921.600000pt;}
.y95_c01309{bottom:925.440000pt;}
.y97_c01309{bottom:926.973333pt;}
.y96_c01309{bottom:929.280000pt;}
.y93_c01309{bottom:932.346667pt;}
.y92_c01309{bottom:936.186667pt;}
.y98_c01309{bottom:936.960000pt;}
.y91_c01309{bottom:937.733333pt;}
.y90_c01309{bottom:940.026667pt;}
.y94_c01309{bottom:941.573333pt;}
.y8e_c01309{bottom:943.106667pt;}
.y8b_c01309{bottom:943.866667pt;}
.y8d_c01309{bottom:945.413333pt;}
.y8f_c01309{bottom:946.173333pt;}
.y8c_c01309{bottom:948.480000pt;}
.y8a_c01309{bottom:952.320000pt;}
.y88_c01309{bottom:954.626667pt;}
.y89_c01309{bottom:956.160000pt;}
.y85_c01309{bottom:958.466667pt;}
.y84_c01309{bottom:960.000000pt;}
.y83_c01309{bottom:960.773333pt;}
.y87_c01309{bottom:961.533333pt;}
.y86_c01309{bottom:962.306667pt;}
.y81_c01309{bottom:963.066667pt;}
.y82_c01309{bottom:966.146667pt;}
.y7f_c01309{bottom:969.986667pt;}
.y80_c01309{bottom:970.746667pt;}
.y7e_c01309{bottom:972.293333pt;}
.y7c_c01309{bottom:975.360000pt;}
.y7b_c01309{bottom:978.426667pt;}
.y7d_c01309{bottom:979.973333pt;}
.y79_c01309{bottom:983.040000pt;}
.y7a_c01309{bottom:983.813333pt;}
.y78_c01309{bottom:988.413333pt;}
.y76_c01309{bottom:992.253333pt;}
.y74_c01309{bottom:994.560000pt;}
.y71_c01309{bottom:996.866667pt;}
.y77_c01309{bottom:997.626667pt;}
.y75_c01309{bottom:998.400000pt;}
.y73_c01309{bottom:1000.706667pt;}
.y72_c01309{bottom:1001.466667pt;}
.y70_c01309{bottom:1006.853333pt;}
.y6e_c01309{bottom:1007.613333pt;}
.y6f_c01309{bottom:1008.386667pt;}
.y6d_c01309{bottom:1010.693333pt;}
.y6c_c01309{bottom:1011.453333pt;}
.y69_c01309{bottom:1015.293333pt;}
.y6b_c01309{bottom:1018.373333pt;}
.y6a_c01309{bottom:1019.133333pt;}
.y68_c01309{bottom:1024.506667pt;}
.y67_c01309{bottom:1026.053333pt;}
.y66_c01309{bottom:1026.813333pt;}
.y64_c01309{bottom:1027.586667pt;}
.y63_c01309{bottom:1029.120000pt;}
.y62_c01309{bottom:1030.653333pt;}
.y61_c01309{bottom:1031.426667pt;}
.y65_c01309{bottom:1032.186667pt;}
.y5f_c01309{bottom:1032.960000pt;}
.y60_c01309{bottom:1036.026667pt;}
.y5e_c01309{bottom:1037.573333pt;}
.y5b_c01309{bottom:1044.480000pt;}
.y5a_c01309{bottom:1045.253333pt;}
.y5d_c01309{bottom:1046.013333pt;}
.y5c_c01309{bottom:1046.786667pt;}
.y58_c01309{bottom:1048.320000pt;}
.y57_c01309{bottom:1050.626667pt;}
.y59_c01309{bottom:1051.386667pt;}
.y56_c01309{bottom:1060.613333pt;}
.y54_c01309{bottom:1061.373333pt;}
.y55_c01309{bottom:1063.680000pt;}
.y51_c01309{bottom:1067.520000pt;}
.y53_c01309{bottom:1068.293333pt;}
.y50_c01309{bottom:1069.053333pt;}
.y52_c01309{bottom:1069.826667pt;}
.y4e_c01309{bottom:1080.573333pt;}
.y4b_c01309{bottom:1082.106667pt;}
.y4a_c01309{bottom:1082.880000pt;}
.y4c_c01309{bottom:1083.653333pt;}
.y46_c01309{bottom:1084.413333pt;}
.y4d_c01309{bottom:1085.186667pt;}
.y49_c01309{bottom:1086.720000pt;}
.y48_c01309{bottom:1087.493333pt;}
.y45_c01309{bottom:1088.253333pt;}
.y4f_c01309{bottom:1089.026667pt;}
.y43_c01309{bottom:1095.173333pt;}
.y42_c01309{bottom:1095.933333pt;}
.y47_c01309{bottom:1096.706667pt;}
.y3e_c01309{bottom:1100.546667pt;}
.y44_c01309{bottom:1102.080000pt;}
.y41_c01309{bottom:1102.853333pt;}
.y40_c01309{bottom:1103.613333pt;}
.y3f_c01309{bottom:1105.920000pt;}
.y3a_c01309{bottom:1107.453333pt;}
.y3c_c01309{bottom:1108.986667pt;}
.y3b_c01309{bottom:1110.533333pt;}
.y39_c01309{bottom:1112.066667pt;}
.y38_c01309{bottom:1113.600000pt;}
.y37_c01309{bottom:1115.906667pt;}
.y35_c01309{bottom:1117.440000pt;}
.y3d_c01309{bottom:1118.973333pt;}
.y32_c01309{bottom:1121.280000pt;}
.y34_c01309{bottom:1122.053333pt;}
.y36_c01309{bottom:1122.813333pt;}
.y31_c01309{bottom:1123.586667pt;}
.y33_c01309{bottom:1125.893333pt;}
.y30_c01309{bottom:1126.653333pt;}
.y2f_c01309{bottom:1128.186667pt;}
.y2e_c01309{bottom:1129.733333pt;}
.y2d_c01309{bottom:1132.026667pt;}
.y2c_c01309{bottom:1136.640000pt;}
.y2b_c01309{bottom:1139.706667pt;}
.y2a_c01309{bottom:1140.480000pt;}
.y29_c01309{bottom:1142.013333pt;}
.y26_c01309{bottom:1148.160000pt;}
.y24_c01309{bottom:1152.000000pt;}
.y28_c01309{bottom:1154.306667pt;}
.y27_c01309{bottom:1155.066667pt;}
.y25_c01309{bottom:1155.840000pt;}
.y22_c01309{bottom:1156.613333pt;}
.y21_c01309{bottom:1157.373333pt;}
.y1f_c01309{bottom:1158.146667pt;}
.y20_c01309{bottom:1158.906667pt;}
.y23_c01309{bottom:1161.986667pt;}
.y1e_c01309{bottom:1170.426667pt;}
.y1b_c01309{bottom:1171.200000pt;}
.y17_c01309{bottom:1172.733333pt;}
.y1a_c01309{bottom:1173.506667pt;}
.y1d_c01309{bottom:1175.813333pt;}
.y16_c01309{bottom:1176.573333pt;}
.y3_c01309{bottom:1177.346667pt;}
.y4_c01309{bottom:1178.106667pt;}
.y2_c01309{bottom:1178.880000pt;}
.y19_c01309{bottom:1181.946667pt;}
.y18_c01309{bottom:1182.720000pt;}
.y15_c01309{bottom:1185.786667pt;}
.y14_c01309{bottom:1186.560000pt;}
.y12_c01309{bottom:1188.093333pt;}
.y1c_c01309{bottom:1195.013333pt;}
.y13_c01309{bottom:1197.306667pt;}
.y10_c01309{bottom:1211.906667pt;}
.y11_c01309{bottom:1213.440000pt;}
.y1_c01309{bottom:1250.306667pt;}
.h9_c01309{height:2.764500pt;}
.h6_c01309{height:4.799479pt;}
.h3_c01309{height:5.519401pt;}
.h7_c01309{height:8.303099pt;}
.h8_c01309{height:11.038802pt;}
.h2_c01309{height:11.343099pt;}
.h24_c01309{height:13.822500pt;}
.h4_c01309{height:16.606198pt;}
.h19_c01309{height:19.341901pt;}
.hf_c01309{height:22.125599pt;}
.hd_c01309{height:24.861302pt;}
.h26_c01309{height:27.645000pt;}
.hb_c01309{height:30.428698pt;}
.h25_c01309{height:33.164401pt;}
.he_c01309{height:35.948099pt;}
.h18_c01309{height:38.683802pt;}
.h23_c01309{height:40.543932pt;}
.h28_c01309{height:40.853568pt;}
.h21_c01309{height:41.467500pt;}
.h1b_c01309{height:44.251198pt;}
.h12_c01309{height:46.986901pt;}
.h2b_c01309{height:47.291198pt;}
.h11_c01309{height:49.770599pt;}
.h10_c01309{height:52.506302pt;}
.hc_c01309{height:55.290000pt;}
.h1a_c01309{height:58.073698pt;}
.ha_c01309{height:60.809401pt;}
.h16_c01309{height:63.593099pt;}
.h22_c01309{height:66.328802pt;}
.h1c_c01309{height:69.112500pt;}
.h1e_c01309{height:71.896198pt;}
.h15_c01309{height:74.631901pt;}
.h1d_c01309{height:77.415599pt;}
.h1f_c01309{height:80.151302pt;}
.h20_c01309{height:82.935000pt;}
.h13_c01309{height:85.718698pt;}
.h17_c01309{height:88.454401pt;}
.h27_c01309{height:91.238099pt;}
.h2a_c01309{height:93.973802pt;}
.h29_c01309{height:96.757500pt;}
.h14_c01309{height:102.276901pt;}
.h5_c01309{height:157.566901pt;}
.h0_c01309{height:1341.693333pt;}
.h1_c01309{height:1342.000000pt;}
.w0_c01309{width:967.680000pt;}
.w1_c01309{width:968.000000pt;}
.x0_c01309{left:0.000000pt;}
.x1_c01309{left:1.533333pt;}
.xc_c01309{left:96.773333pt;}
.x5_c01309{left:101.373333pt;}
.xa_c01309{left:102.906667pt;}
.x6_c01309{left:104.453333pt;}
.x7_c01309{left:109.053333pt;}
.xb_c01309{left:119.040000pt;}
.x8_c01309{left:122.106624pt;}
.x2_c01309{left:139.013333pt;}
.x3_c01309{left:157.440000pt;}
.x9_c01309{left:162.053333pt;}
.x4_c01309{left:163.586667pt;}
.x64_c01309{left:172.800000pt;}
.x7f_c01309{left:194.306667pt;}
.x115_c01309{left:199.680000pt;}
.x51_c01309{left:206.586667pt;}
.xda_c01309{left:208.133333pt;}
.xbb_c01309{left:209.666667pt;}
.xf8_c01309{left:211.200000pt;}
.x34_c01309{left:212.733333pt;}
.x6d_c01309{left:214.266667pt;}
.x46_c01309{left:215.813333pt;}
.x3d_c01309{left:217.346667pt;}
.xe7_c01309{left:218.880000pt;}
.xf9_c01309{left:221.186667pt;}
.x119_c01309{left:222.720000pt;}
.xf4_c01309{left:225.026667pt;}
.xa1_c01309{left:227.333333pt;}
.x65_c01309{left:229.626667pt;}
.x94_c01309{left:231.173333pt;}
.x25_c01309{left:233.466667pt;}
.x35_c01309{left:235.773333pt;}
.xdb_c01309{left:238.080000pt;}
.xcc_c01309{left:239.613333pt;}
.xb3_c01309{left:241.146667pt;}
.x9b_c01309{left:243.453333pt;}
.xc9_c01309{left:245.760000pt;}
.x105_c01309{left:248.066667pt;}
.x91_c01309{left:249.600000pt;}
.xc5_c01309{left:251.906667pt;}
.xf1_c01309{left:253.440000pt;}
.x80_c01309{left:254.973333pt;}
.x47_c01309{left:257.280000pt;}
.x36_c01309{left:261.120000pt;}
.x8c_c01309{left:262.653333pt;}
.x26_c01309{left:264.186667pt;}
.x10d_c01309{left:265.733333pt;}
.x100_c01309{left:268.026667pt;}
.xf_c01309{left:269.573333pt;}
.xbc_c01309{left:271.106667pt;}
.x85_c01309{left:272.640000pt;}
.xa2_c01309{left:274.946667pt;}
.x6e_c01309{left:278.013333pt;}
.x48_c01309{left:279.546667pt;}
.xfa_c01309{left:282.626667pt;}
.x78_c01309{left:284.933333pt;}
.x27_c01309{left:287.226667pt;}
.x52_c01309{left:289.533333pt;}
.x86_c01309{left:291.840000pt;}
.xe8_c01309{left:295.680000pt;}
.x3e_c01309{left:297.986667pt;}
.x116_c01309{left:299.520000pt;}
.x66_c01309{left:301.053333pt;}
.xbd_c01309{left:303.360000pt;}
.xc6_c01309{left:304.893333pt;}
.x11a_c01309{left:307.200000pt;}
.x28_c01309{left:311.040000pt;}
.x10_c01309{left:314.106667pt;}
.xa3_c01309{left:315.653333pt;}
.xd1_c01309{left:320.253333pt;}
.xf2_c01309{left:321.786667pt;}
.x6f_c01309{left:323.333333pt;}
.x9c_c01309{left:326.400000pt;}
.xdc_c01309{left:328.706667pt;}
.x11_c01309{left:330.240000pt;}
.x10f_c01309{left:331.773333pt;}
.xac_c01309{left:333.306667pt;}
.xcd_c01309{left:334.853333pt;}
.xb4_c01309{left:337.920000pt;}
.xe9_c01309{left:340.226667pt;}
.x12_c01309{left:344.826667pt;}
.xd2_c01309{left:346.373333pt;}
.x81_c01309{left:348.666667pt;}
.x87_c01309{left:350.213333pt;}
.x3f_c01309{left:353.280000pt;}
.x5f_c01309{left:355.586667pt;}
.x37_c01309{left:357.120000pt;}
.xf5_c01309{left:360.960000pt;}
.xad_c01309{left:362.493333pt;}
.x82_c01309{left:364.800000pt;}
.xb5_c01309{left:366.333333pt;}
.x79_c01309{left:370.946667pt;}
.x8d_c01309{left:374.013333pt;}
.x70_c01309{left:376.320000pt;}
.x13_c01309{left:377.853333pt;}
.xc7_c01309{left:380.160000pt;}
.xd3_c01309{left:383.226667pt;}
.xa4_c01309{left:384.773333pt;}
.x106_c01309{left:386.306667pt;}
.x101_c01309{left:387.840000pt;}
.x58_c01309{left:391.680000pt;}
.x95_c01309{left:393.213333pt;}
.x71_c01309{left:394.746667pt;}
.x109_c01309{left:397.053333pt;}
.x10b_c01309{left:399.360000pt;}
.x113_c01309{left:400.893333pt;}
.xb6_c01309{left:402.426667pt;}
.xa8_c01309{left:404.733333pt;}
.xb7_c01309{left:408.573333pt;}
.x14_c01309{left:411.653333pt;}
.xc3_c01309{left:413.186667pt;}
.x9d_c01309{left:415.493333pt;}
.xbe_c01309{left:420.093333pt;}
.x40_c01309{left:422.400000pt;}
.x15_c01309{left:424.706667pt;}
.x102_c01309{left:426.240000pt;}
.x7a_c01309{left:429.306667pt;}
.xf7_c01309{left:432.386667pt;}
.x67_c01309{left:433.920000pt;}
.xd6_c01309{left:436.226667pt;}
.x41_c01309{left:437.760000pt;}
.x8e_c01309{left:440.066667pt;}
.xbf_c01309{left:442.373333pt;}
.x29_c01309{left:445.440000pt;}
.xdf_c01309{left:446.973333pt;}
.x53_c01309{left:448.506667pt;}
.x9e_c01309{left:450.813333pt;}
.xb8_c01309{left:453.120000pt;}
.x16_c01309{left:454.653333pt;}
.x88_c01309{left:456.186667pt;}
.xce_c01309{left:460.026667pt;}
.x103_c01309{left:461.573333pt;}
.x38_c01309{left:463.866667pt;}
.x17_c01309{left:465.413333pt;}
.x7b_c01309{left:466.946667pt;}
.xd4_c01309{left:468.480000pt;}
.x117_c01309{left:470.786667pt;}
.x49_c01309{left:473.093333pt;}
.xc4_c01309{left:479.226667pt;}
.x18_c01309{left:481.533333pt;}
.x104_c01309{left:485.373333pt;}
.xc0_c01309{left:486.906667pt;}
.x96_c01309{left:489.213333pt;}
.x19_c01309{left:491.520000pt;}
.xff_c01309{left:493.826667pt;}
.xf0_c01309{left:496.133333pt;}
.x97_c01309{left:499.973333pt;}
.x1a_c01309{left:501.506667pt;}
.x89_c01309{left:503.040000pt;}
.xe2_c01309{left:504.573333pt;}
.x92_c01309{left:506.106667pt;}
.x68_c01309{left:507.653333pt;}
.x39_c01309{left:509.186667pt;}
.x10c_c01309{left:512.253333pt;}
.x1b_c01309{left:513.786667pt;}
.x11b_c01309{left:516.093333pt;}
.x2a_c01309{left:517.626667pt;}
.x83_c01309{left:519.933333pt;}
.xdd_c01309{left:522.240000pt;}
.x59_c01309{left:525.306667pt;}
.x2b_c01309{left:527.613333pt;}
.x110_c01309{left:529.146667pt;}
.xa5_c01309{left:531.453333pt;}
.x9f_c01309{left:533.760000pt;}
.x5a_c01309{left:536.066667pt;}
.x7c_c01309{left:537.600000pt;}
.x8a_c01309{left:539.906667pt;}
.x72_c01309{left:542.973333pt;}
.x42_c01309{left:545.280000pt;}
.xed_c01309{left:549.893333pt;}
.x4a_c01309{left:551.426667pt;}
.x54_c01309{left:552.960000pt;}
.xfb_c01309{left:555.266667pt;}
.x7d_c01309{left:557.573333pt;}
.xe5_c01309{left:559.106667pt;}
.xae_c01309{left:560.640000pt;}
.x69_c01309{left:562.173333pt;}
.x3a_c01309{left:565.253333pt;}
.x114_c01309{left:566.786667pt;}
.xca_c01309{left:568.320000pt;}
.x5b_c01309{left:570.626667pt;}
.xb9_c01309{left:572.160000pt;}
.xa9_c01309{left:573.693333pt;}
.xc8_c01309{left:576.000000pt;}
.x107_c01309{left:579.066667pt;}
.x4b_c01309{left:580.613333pt;}
.x43_c01309{left:582.906667pt;}
.x55_c01309{left:585.986667pt;}
.xe0_c01309{left:587.520000pt;}
.xaa_c01309{left:589.826667pt;}
.xde_c01309{left:592.133333pt;}
.x1c_c01309{left:593.666667pt;}
.x5c_c01309{left:595.200000pt;}
.xfc_c01309{left:598.266667pt;}
.xee_c01309{left:599.813333pt;}
.x73_c01309{left:602.106667pt;}
.x2c_c01309{left:603.653333pt;}
.xeb_c01309{left:605.946667pt;}
.x6a_c01309{left:608.253333pt;}
.x60_c01309{left:611.333333pt;}
.x74_c01309{left:615.173333pt;}
.x44_c01309{left:618.240000pt;}
.xcf_c01309{left:620.546667pt;}
.x2d_c01309{left:622.080000pt;}
.xa6_c01309{left:623.613333pt;}
.xcb_c01309{left:625.920000pt;}
.x8f_c01309{left:628.226667pt;}
.x1d_c01309{left:632.066667pt;}
.x3b_c01309{left:634.373333pt;}
.x7e_c01309{left:635.906667pt;}
.x56_c01309{left:637.440000pt;}
.x98_c01309{left:638.973333pt;}
.x8b_c01309{left:641.280000pt;}
.x61_c01309{left:644.346667pt;}
.x1e_c01309{left:646.653333pt;}
.x2e_c01309{left:648.186667pt;}
.xef_c01309{left:650.493333pt;}
.x6b_c01309{left:652.026667pt;}
.x4c_c01309{left:654.333333pt;}
.x75_c01309{left:656.640000pt;}
.x108_c01309{left:658.173333pt;}
.xfd_c01309{left:660.480000pt;}
.xd7_c01309{left:662.013333pt;}
.x10e_c01309{left:663.546667pt;}
.x2f_c01309{left:665.093333pt;}
.xe1_c01309{left:666.626667pt;}
.xab_c01309{left:668.933333pt;}
.x1f_c01309{left:671.226667pt;}
.x62_c01309{left:672.773333pt;}
.x4d_c01309{left:674.306667pt;}
.x10a_c01309{left:676.613333pt;}
.x4e_c01309{left:680.453333pt;}
.xe3_c01309{left:681.986667pt;}
.x93_c01309{left:685.826667pt;}
.x3c_c01309{left:687.360000pt;}
.xd0_c01309{left:691.200000pt;}
.xa7_c01309{left:693.506667pt;}
.xea_c01309{left:695.040000pt;}
.x5d_c01309{left:698.880000pt;}
.x76_c01309{left:701.946667pt;}
.x45_c01309{left:704.253333pt;}
.xec_c01309{left:708.866667pt;}
.xd5_c01309{left:711.933333pt;}
.xaf_c01309{left:714.240000pt;}
.x4f_c01309{left:716.546667pt;}
.x20_c01309{left:718.080000pt;}
.x99_c01309{left:719.613333pt;}
.xa0_c01309{left:721.920000pt;}
.xd8_c01309{left:723.453333pt;}
.x30_c01309{left:724.986667pt;}
.x6c_c01309{left:727.293333pt;}
.x111_c01309{left:728.826667pt;}
.xd9_c01309{left:730.373333pt;}
.xf6_c01309{left:731.906667pt;}
.xc1_c01309{left:733.440000pt;}
.x50_c01309{left:736.506667pt;}
.x21_c01309{left:738.053333pt;}
.x84_c01309{left:740.346667pt;}
.x31_c01309{left:741.893333pt;}
.xb0_c01309{left:743.426667pt;}
.x5e_c01309{left:744.960000pt;}
.xf3_c01309{left:748.800000pt;}
.x77_c01309{left:751.106667pt;}
.xb1_c01309{left:753.413333pt;}
.x22_c01309{left:754.946667pt;}
.xe6_c01309{left:757.253333pt;}
.x63_c01309{left:758.786667pt;}
.xb2_c01309{left:760.320000pt;}
.x23_c01309{left:763.386667pt;}
.x57_c01309{left:767.222059pt;}
.x112_c01309{left:771.066667pt;}
.xba_c01309{left:772.613333pt;}
.x118_c01309{left:774.906667pt;}
.x9a_c01309{left:777.986667pt;}
.xc2_c01309{left:780.293333pt;}
.x32_c01309{left:782.586667pt;}
.xfe_c01309{left:787.973333pt;}
.xe4_c01309{left:789.506667pt;}
.x33_c01309{left:793.346667pt;}
.x90_c01309{left:797.186667pt;}
.xd_c01309{left:804.093333pt;}
.x24_c01309{left:809.466667pt;}
.xe_c01309{left:819.453333pt;}
.x11c_c01309{left:845.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_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_b68b54709d1ad4a118d57c85.woff2')format("woff");}.ff1_c01310{font-family:ff1_c01310;line-height:1.109863;font-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_c01310{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m16b_c01310{transform:matrix(0.048950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048950,0.000000,0.000000,0.250000,0,0);}
.me8_c01310{transform:matrix(0.086775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086775,0.000000,0.000000,0.250000,0,0);}
.m14d_c01310{transform:matrix(0.088600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088600,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01310{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.m9b_c01310{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m194_c01310{transform:matrix(0.096400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096400,0.000000,0.000000,0.250000,0,0);}
.m14e_c01310{transform:matrix(0.100850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100850,0.000000,0.000000,0.250000,0,0);}
.m155_c01310{transform:matrix(0.103550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103550,0.000000,0.000000,0.250000,0,0);}
.m90_c01310{transform:matrix(0.105775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105775,0.000000,0.000000,0.250000,0,0);}
.m4_c01310{transform:matrix(0.108800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108800,0.000000,0.000000,0.250000,0,0);}
.m19e_c01310{transform:matrix(0.113750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113750,0.000000,0.000000,0.250000,0,0);}
.m28_c01310{transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);}
.m183_c01310{transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);}
.m154_c01310{transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116875,0.000000,0.000000,0.250000,0,0);}
.mb4_c01310{transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);}
.m142_c01310{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);}
.m16e_c01310{transform:matrix(0.118225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118225,0.000000,0.000000,0.250000,0,0);}
.m166_c01310{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m167_c01310{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m128_c01310{transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);}
.m19f_c01310{transform:matrix(0.122725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122725,0.000000,0.000000,0.250000,0,0);}
.m157_c01310{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m2_c01310{transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123025,0.000000,0.000000,0.250000,0,0);}
.m1_c01310{transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123175,0.000000,0.000000,0.250000,0,0);}
.m15f_c01310{transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);}
.m13f_c01310{transform:matrix(0.123350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123350,0.000000,0.000000,0.250000,0,0);}
.m19d_c01310{transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124725,0.000000,0.000000,0.250000,0,0);}
.mba_c01310{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m6_c01310{transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125900,0.000000,0.000000,0.250000,0,0);}
.m126_c01310{transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);}
.m6d_c01310{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);}
.m3d_c01310{transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);}
.m18a_c01310{transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);}
.m19_c01310{transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);}
.m10f_c01310{transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);}
.mb3_c01310{transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);}
.mbd_c01310{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m136_c01310{transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);}
.mcc_c01310{transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);}
.m11a_c01310{transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);}
.m165_c01310{transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);}
.ma7_c01310{transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);}
.m11f_c01310{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);}
.md0_c01310{transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139450,0.000000,0.000000,0.250000,0,0);}
.m18c_c01310{transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140275,0.000000,0.000000,0.250000,0,0);}
.m164_c01310{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m184_c01310{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.m8b_c01310{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);}
.md5_c01310{transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);}
.mbb_c01310{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.mf_c01310{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m13d_c01310{transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);}
.m147_c01310{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);}
.m129_c01310{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);}
.md4_c01310{transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);}
.m83_c01310{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);}
.m1e_c01310{transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);}
.m3f_c01310{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m23_c01310{transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152850,0.000000,0.000000,0.250000,0,0);}
.m5f_c01310{transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);}
.m123_c01310{transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);}
.m7f_c01310{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m196_c01310{transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);}
.m108_c01310{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.m127_c01310{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.m18e_c01310{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.m197_c01310{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);}
.m12a_c01310{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);}
.m9c_c01310{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m144_c01310{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.m120_c01310{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.m74_c01310{transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160900,0.000000,0.000000,0.250000,0,0);}
.m17e_c01310{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);}
.m145_c01310{transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);}
.m17d_c01310{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);}
.m93_c01310{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.m1b_c01310{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.mb9_c01310{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.m117_c01310{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m12d_c01310{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.m10e_c01310{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);}
.m14c_c01310{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);}
.m57_c01310{transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01310{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.mfc_c01310{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);}
.mbc_c01310{transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165775,0.000000,0.000000,0.250000,0,0);}
.m1a_c01310{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m0_c01310{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m109_c01310{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);}
.mcf_c01310{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01310{transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168375,0.000000,0.000000,0.250000,0,0);}
.m121_c01310{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.m13a_c01310{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);}
.m18d_c01310{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.m15a_c01310{transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);}
.m10c_c01310{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m15c_c01310{transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);}
.m131_c01310{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m17c_c01310{transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);}
.mb8_c01310{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.med_c01310{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);}
.m172_c01310{transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);}
.m124_c01310{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.m10a_c01310{transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);}
.m45_c01310{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m195_c01310{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m56_c01310{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m76_c01310{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m143_c01310{transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);}
.m13e_c01310{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.m104_c01310{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.m35_c01310{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mb2_c01310{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);}
.m163_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);}
.m156_c01310{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01310{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m115_c01310{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.m1d_c01310{transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);}
.m158_c01310{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.m169_c01310{transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178425,0.000000,0.000000,0.250000,0,0);}
.m11_c01310{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);}
.m1a3_c01310{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);}
.m152_c01310{transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178600,0.000000,0.000000,0.250000,0,0);}
.mfb_c01310{transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178925,0.000000,0.000000,0.250000,0,0);}
.m75_c01310{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01310{transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);}
.mec_c01310{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);}
.m153_c01310{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m12e_c01310{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);}
.m182_c01310{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.m5a_c01310{transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);}
.mf8_c01310{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.me2_c01310{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m137_c01310{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.mac_c01310{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.m189_c01310{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);}
.m9_c01310{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m11e_c01310{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m14b_c01310{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);}
.m3_c01310{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m16f_c01310{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);}
.mf3_c01310{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m77_c01310{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);}
.m48_c01310{transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188250,0.000000,0.000000,0.250000,0,0);}
.mf9_c01310{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);}
.m19a_c01310{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m168_c01310{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.m19c_c01310{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);}
.m10d_c01310{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);}
.mf4_c01310{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.m3a_c01310{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m159_c01310{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m65_c01310{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);}
.m199_c01310{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);}
.m5d_c01310{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);}
.m134_c01310{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m12b_c01310{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m188_c01310{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m8e_c01310{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.m151_c01310{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.m29_c01310{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.m175_c01310{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);}
.m139_c01310{transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);}
.m160_c01310{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.mfd_c01310{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m94_c01310{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.m140_c01310{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);}
.m191_c01310{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.m5c_c01310{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m6f_c01310{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);}
.m7_c01310{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);}
.mf0_c01310{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);}
.m141_c01310{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m3e_c01310{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m19b_c01310{transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);}
.m49_c01310{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);}
.m99_c01310{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);}
.m180_c01310{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.m59_c01310{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);}
.mc4_c01310{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);}
.m181_c01310{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m12f_c01310{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.m4f_c01310{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m103_c01310{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);}
.m171_c01310{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.md3_c01310{transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201550,0.000000,0.000000,0.250000,0,0);}
.m111_c01310{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.mc6_c01310{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.m91_c01310{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);}
.mf2_c01310{transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);}
.m16a_c01310{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m58_c01310{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);}
.m170_c01310{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);}
.mce_c01310{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);}
.m14a_c01310{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.mc7_c01310{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01310{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);}
.m132_c01310{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m18f_c01310{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);}
.mde_c01310{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);}
.m2c_c01310{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);}
.m10b_c01310{transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);}
.m6c_c01310{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);}
.m4b_c01310{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);}
.m174_c01310{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);}
.m15d_c01310{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);}
.mb_c01310{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);}
.m8c_c01310{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m150_c01310{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.m17f_c01310{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.mea_c01310{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.ma2_c01310{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m6b_c01310{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);}
.m133_c01310{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);}
.m116_c01310{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m13c_c01310{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.m6e_c01310{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.m11d_c01310{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m113_c01310{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.md1_c01310{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m17b_c01310{transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212125,0.000000,0.000000,0.250000,0,0);}
.m5b_c01310{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);}
.m10_c01310{transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);}
.md2_c01310{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.me6_c01310{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m185_c01310{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m161_c01310{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.md7_c01310{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);}
.m2b_c01310{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m16d_c01310{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);}
.m79_c01310{transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);}
.mdf_c01310{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.me9_c01310{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);}
.mb7_c01310{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);}
.m18b_c01310{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m4a_c01310{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m177_c01310{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);}
.me0_c01310{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);}
.mc_c01310{transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);}
.m16c_c01310{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.m138_c01310{transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);}
.m135_c01310{transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221475,0.000000,0.000000,0.250000,0,0);}
.m149_c01310{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);}
.mca_c01310{transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);}
.m14f_c01310{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m2d_c01310{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.m110_c01310{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m14_c01310{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m15_c01310{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.mef_c01310{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);}
.mee_c01310{transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);}
.m101_c01310{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);}
.m87_c01310{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mfe_c01310{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m60_c01310{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.mfa_c01310{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);}
.m114_c01310{transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225275,0.000000,0.000000,0.250000,0,0);}
.m33_c01310{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.ma0_c01310{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);}
.mf1_c01310{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);}
.m15b_c01310{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.mc2_c01310{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);}
.mb6_c01310{transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);}
.mc8_c01310{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.mcb_c01310{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.mb5_c01310{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.m9a_c01310{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m9d_c01310{transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);}
.m3b_c01310{transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);}
.mdd_c01310{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);}
.m187_c01310{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);}
.m12c_c01310{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);}
.m198_c01310{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);}
.m70_c01310{transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);}
.mdb_c01310{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.me7_c01310{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);}
.m186_c01310{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);}
.me1_c01310{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);}
.m112_c01310{transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);}
.m89_c01310{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);}
.m13b_c01310{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);}
.m148_c01310{transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);}
.mff_c01310{transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233925,0.000000,0.000000,0.250000,0,0);}
.mae_c01310{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);}
.m146_c01310{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);}
.m30_c01310{transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);}
.m24_c01310{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.m178_c01310{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);}
.maa_c01310{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.m1f_c01310{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.me5_c01310{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);}
.m176_c01310{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);}
.m40_c01310{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);}
.mcd_c01310{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m7a_c01310{transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);}
.m192_c01310{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);}
.m21_c01310{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.m102_c01310{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);}
.md9_c01310{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m97_c01310{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);}
.m17a_c01310{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.m85_c01310{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);}
.m98_c01310{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);}
.m20_c01310{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);}
.mc1_c01310{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.mb0_c01310{transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);}
.m4e_c01310{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m95_c01310{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m100_c01310{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);}
.md6_c01310{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.m50_c01310{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);}
.m190_c01310{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);}
.ma3_c01310{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m122_c01310{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);}
.me4_c01310{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);}
.m64_c01310{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);}
.m78_c01310{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.ma9_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);}
.m55_c01310{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);}
.meb_c01310{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);}
.m53_c01310{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);}
.m92_c01310{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m193_c01310{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.mf7_c01310{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);}
.m6a_c01310{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);}
.m18_c01310{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m69_c01310{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);}
.m80_c01310{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);}
.m16_c01310{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);}
.m71_c01310{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);}
.m52_c01310{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m47_c01310{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01310{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01310{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);}
.m17_c01310{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m67_c01310{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);}
.m7c_c01310{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);}
.m22_c01310{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.maf_c01310{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);}
.m39_c01310{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mda_c01310{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma4_c01310{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);}
.m8a_c01310{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m43_c01310{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);}
.m42_c01310{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);}
.m9f_c01310{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c01310{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01310{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);}
.md_c01310{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma1_c01310{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m31_c01310{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);}
.ma6_c01310{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc3_c01310{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m34_c01310{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01310{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m73_c01310{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m27_c01310{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma5_c01310{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m37_c01310{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m32_c01310{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);}
.m12_c01310{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m44_c01310{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c01310{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m38_c01310{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);}
.m96_c01310{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);}
.ma_c01310{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m84_c01310{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);}
.mad_c01310{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.me_c01310{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m66_c01310{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01310{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mc5_c01310{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);}
.m107_c01310{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01310{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);}
.m51_c01310{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mbe_c01310{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);}
.m82_c01310{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m5_c01310{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m68_c01310{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.md8_c01310{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m88_c01310{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);}
.ma8_c01310{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m54_c01310{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m46_c01310{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mbf_c01310{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);}
.mdc_c01310{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc0_c01310{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m7e_c01310{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m179_c01310{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m173_c01310{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m26_c01310{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m130_c01310{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m8d_c01310{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m86_c01310{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);}
.m1a6_c01310{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mf5_c01310{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7b_c01310{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m162_c01310{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01310{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01310{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m9e_c01310{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01310{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mab_c01310{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);}
.m63_c01310{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01310{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m15e_c01310{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01310{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01310{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m36_c01310{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01310{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01310{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.me3_c01310{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m125_c01310{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m61_c01310{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m72_c01310{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m105_c01310{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);}
.m11b_c01310{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m118_c01310{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m106_c01310{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m81_c01310{transform:matrix(1.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.297500,0.000000,0.000000,0.250000,0,0);}
.m119_c01310{transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01310{transform:matrix(1.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.467500,0.000000,0.000000,0.250000,0,0);}
.m62_c01310{transform:matrix(2.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.595000,0.000000,0.000000,0.250000,0,0);}
.mf6_c01310{transform:matrix(3.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.455000,0.000000,0.000000,0.250000,0,0);}
.v0_c01310{vertical-align:0.000000px;}
.v1_c01310{vertical-align:3.480000px;}
.ls2_c01310{letter-spacing:0.000000px;}
.ls0_c01310{letter-spacing:152.276688px;}
.ls1_c01310{letter-spacing:394.908000px;}
.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;}
}
.ws1_c01310{word-spacing:-14.178000px;}
.ws2_c01310{word-spacing:0.000000px;}
.ws0_c01310{word-spacing:327.027840px;}
.fc0_c01310{color:transparent;}
.fsa_c01310{font-size:3.456000px;}
.fse_c01310{font-size:6.000000px;}
.fs10_c01310{font-size:6.900000px;}
.fsf_c01310{font-size:10.380000px;}
.fs16_c01310{font-size:13.800000px;}
.fs17_c01310{font-size:17.280000px;}
.fs12_c01310{font-size:20.760000px;}
.fs14_c01310{font-size:24.180000px;}
.fs1a_c01310{font-size:27.660000px;}
.fs4_c01310{font-size:31.080000px;}
.fs13_c01310{font-size:34.560000px;}
.fs9_c01310{font-size:38.040000px;}
.fs15_c01310{font-size:41.460000px;}
.fs1c_c01310{font-size:44.940000px;}
.fs11_c01310{font-size:48.360000px;}
.fsb_c01310{font-size:51.840000px;}
.fs6_c01310{font-size:55.320000px;}
.fsd_c01310{font-size:58.740000px;}
.fs8_c01310{font-size:62.220000px;}
.fs0_c01310{font-size:65.640000px;}
.fs7_c01310{font-size:69.120000px;}
.fs3_c01310{font-size:72.600000px;}
.fs5_c01310{font-size:76.020000px;}
.fsc_c01310{font-size:79.500000px;}
.fs2_c01310{font-size:82.920000px;}
.fs1_c01310{font-size:86.400000px;}
.fs18_c01310{font-size:89.880000px;}
.fs1e_c01310{font-size:93.300000px;}
.fs1b_c01310{font-size:96.780000px;}
.fs1d_c01310{font-size:100.200000px;}
.fs19_c01310{font-size:145.140000px;}
.y0_c01310{bottom:0.000000px;}
.y1ee_c01310{bottom:156.390000px;}
.y1ef_c01310{bottom:159.840000px;}
.y1ed_c01310{bottom:163.290000px;}
.y1e6_c01310{bottom:167.610000px;}
.y1e8_c01310{bottom:169.350000px;}
.y1ea_c01310{bottom:170.205000px;}
.y1eb_c01310{bottom:171.075000px;}
.y1e9_c01310{bottom:171.930000px;}
.y1e7_c01310{bottom:174.525000px;}
.y1e1_c01310{bottom:190.080000px;}
.y1ec_c01310{bottom:190.950000px;}
.y1e2_c01310{bottom:191.805000px;}
.y1e4_c01310{bottom:196.125000px;}
.y1e5_c01310{bottom:196.995000px;}
.y1e3_c01310{bottom:197.850000px;}
.y1d8_c01310{bottom:209.955000px;}
.y1d9_c01310{bottom:210.810000px;}
.y1da_c01310{bottom:211.680000px;}
.y1df_c01310{bottom:212.550000px;}
.y1db_c01310{bottom:213.405000px;}
.y1de_c01310{bottom:214.275000px;}
.y1dd_c01310{bottom:216.000000px;}
.y1dc_c01310{bottom:216.870000px;}
.y1e0_c01310{bottom:219.450000px;}
.y1cf_c01310{bottom:230.685000px;}
.y1d0_c01310{bottom:231.555000px;}
.y1d1_c01310{bottom:233.280000px;}
.y1d2_c01310{bottom:234.150000px;}
.y1d3_c01310{bottom:235.005000px;}
.y1d7_c01310{bottom:236.730000px;}
.y1d4_c01310{bottom:238.470000px;}
.y1d6_c01310{bottom:239.325000px;}
.y1d5_c01310{bottom:240.195000px;}
.y1c7_c01310{bottom:251.430000px;}
.y1c8_c01310{bottom:252.285000px;}
.y1c9_c01310{bottom:253.155000px;}
.y1ca_c01310{bottom:254.880000px;}
.y1cb_c01310{bottom:255.750000px;}
.y1cc_c01310{bottom:257.475000px;}
.y1cd_c01310{bottom:259.200000px;}
.y1ce_c01310{bottom:260.070000px;}
.y1be_c01310{bottom:268.710000px;}
.y1bf_c01310{bottom:270.435000px;}
.y1c1_c01310{bottom:273.030000px;}
.y1bd_c01310{bottom:273.885000px;}
.y1c0_c01310{bottom:274.755000px;}
.y1c4_c01310{bottom:275.610000px;}
.y1c2_c01310{bottom:279.075000px;}
.y1c3_c01310{bottom:280.800000px;}
.y1c5_c01310{bottom:282.525000px;}
.y1c6_c01310{bottom:284.250000px;}
.y1b3_c01310{bottom:290.310000px;}
.y1b2_c01310{bottom:291.165000px;}
.y1b4_c01310{bottom:292.890000px;}
.y1b9_c01310{bottom:295.485000px;}
.y1b7_c01310{bottom:297.210000px;}
.y1b5_c01310{bottom:298.950000px;}
.y1b6_c01310{bottom:299.805000px;}
.y1b8_c01310{bottom:300.675000px;}
.y1ba_c01310{bottom:302.400000px;}
.y1bb_c01310{bottom:303.270000px;}
.y1bc_c01310{bottom:304.125000px;}
.y1b1_c01310{bottom:305.850000px;}
.y1a8_c01310{bottom:311.040000px;}
.y1ab_c01310{bottom:311.910000px;}
.y1a9_c01310{bottom:313.635000px;}
.y1ae_c01310{bottom:315.360000px;}
.y1ad_c01310{bottom:316.230000px;}
.y1aa_c01310{bottom:317.085000px;}
.y1ac_c01310{bottom:319.680000px;}
.y1b0_c01310{bottom:320.550000px;}
.y1af_c01310{bottom:322.275000px;}
.y1a0_c01310{bottom:331.770000px;}
.y1a2_c01310{bottom:334.365000px;}
.y19f_c01310{bottom:335.235000px;}
.y19e_c01310{bottom:336.960000px;}
.y1a1_c01310{bottom:337.830000px;}
.y1a6_c01310{bottom:338.685000px;}
.y1a4_c01310{bottom:339.555000px;}
.y1a3_c01310{bottom:340.410000px;}
.y1a5_c01310{bottom:342.150000px;}
.y1a7_c01310{bottom:344.730000px;}
.y199_c01310{bottom:353.370000px;}
.y19a_c01310{bottom:354.240000px;}
.y197_c01310{bottom:355.965000px;}
.y196_c01310{bottom:356.835000px;}
.y19c_c01310{bottom:357.690000px;}
.y198_c01310{bottom:358.560000px;}
.y19b_c01310{bottom:360.285000px;}
.y19d_c01310{bottom:365.475000px;}
.y18c_c01310{bottom:373.245000px;}
.y18d_c01310{bottom:374.115000px;}
.y18f_c01310{bottom:374.970000px;}
.y191_c01310{bottom:376.710000px;}
.y18b_c01310{bottom:377.565000px;}
.y194_c01310{bottom:379.290000px;}
.y18e_c01310{bottom:381.885000px;}
.y192_c01310{bottom:383.610000px;}
.y193_c01310{bottom:384.480000px;}
.y190_c01310{bottom:386.205000px;}
.y195_c01310{bottom:388.800000px;}
.y185_c01310{bottom:393.990000px;}
.y186_c01310{bottom:395.715000px;}
.y187_c01310{bottom:398.310000px;}
.y189_c01310{bottom:399.165000px;}
.y18a_c01310{bottom:400.035000px;}
.y188_c01310{bottom:405.210000px;}
.y17e_c01310{bottom:412.995000px;}
.y180_c01310{bottom:415.590000px;}
.y17f_c01310{bottom:417.315000px;}
.y182_c01310{bottom:421.635000px;}
.y181_c01310{bottom:422.490000px;}
.y183_c01310{bottom:423.360000px;}
.y184_c01310{bottom:424.230000px;}
.y176_c01310{bottom:434.595000px;}
.y175_c01310{bottom:438.915000px;}
.y177_c01310{bottom:440.640000px;}
.y178_c01310{bottom:441.510000px;}
.y179_c01310{bottom:443.235000px;}
.y17a_c01310{bottom:444.090000px;}
.y17b_c01310{bottom:444.960000px;}
.y17d_c01310{bottom:445.830000px;}
.y17c_c01310{bottom:446.685000px;}
.y16f_c01310{bottom:456.195000px;}
.y16d_c01310{bottom:458.790000px;}
.y171_c01310{bottom:459.645000px;}
.y16e_c01310{bottom:460.515000px;}
.y172_c01310{bottom:461.370000px;}
.y170_c01310{bottom:463.965000px;}
.y173_c01310{bottom:464.835000px;}
.y174_c01310{bottom:466.560000px;}
.y163_c01310{bottom:473.475000px;}
.y166_c01310{bottom:478.650000px;}
.y169_c01310{bottom:480.390000px;}
.y165_c01310{bottom:481.245000px;}
.y164_c01310{bottom:482.115000px;}
.y167_c01310{bottom:483.840000px;}
.y168_c01310{bottom:484.710000px;}
.y16c_c01310{bottom:485.565000px;}
.y16a_c01310{bottom:486.435000px;}
.y16b_c01310{bottom:487.290000px;}
.y158_c01310{bottom:495.930000px;}
.y159_c01310{bottom:496.800000px;}
.y15a_c01310{bottom:499.395000px;}
.y15e_c01310{bottom:500.250000px;}
.y15b_c01310{bottom:501.120000px;}
.y160_c01310{bottom:502.845000px;}
.y15c_c01310{bottom:503.715000px;}
.y15d_c01310{bottom:504.570000px;}
.y15f_c01310{bottom:505.440000px;}
.y162_c01310{bottom:506.310000px;}
.y161_c01310{bottom:507.165000px;}
.y157_c01310{bottom:513.210000px;}
.y14e_c01310{bottom:515.805000px;}
.y153_c01310{bottom:518.400000px;}
.y14d_c01310{bottom:519.270000px;}
.y150_c01310{bottom:520.125000px;}
.y151_c01310{bottom:520.995000px;}
.y156_c01310{bottom:521.850000px;}
.y152_c01310{bottom:522.720000px;}
.y155_c01310{bottom:525.315000px;}
.y14f_c01310{bottom:527.040000px;}
.y154_c01310{bottom:529.635000px;}
.y14c_c01310{bottom:531.360000px;}
.y145_c01310{bottom:541.725000px;}
.y147_c01310{bottom:545.190000px;}
.y14a_c01310{bottom:546.915000px;}
.y148_c01310{bottom:547.770000px;}
.y144_c01310{bottom:552.090000px;}
.y146_c01310{bottom:553.830000px;}
.y149_c01310{bottom:554.685000px;}
.y13b_c01310{bottom:555.555000px;}
.y13c_c01310{bottom:556.410000px;}
.y14b_c01310{bottom:559.005000px;}
.y13e_c01310{bottom:559.875000px;}
.y141_c01310{bottom:560.730000px;}
.y140_c01310{bottom:561.600000px;}
.y13d_c01310{bottom:562.470000px;}
.y13f_c01310{bottom:565.050000px;}
.y142_c01310{bottom:567.645000px;}
.y143_c01310{bottom:568.515000px;}
.y132_c01310{bottom:578.010000px;}
.y133_c01310{bottom:578.880000px;}
.y134_c01310{bottom:580.605000px;}
.y131_c01310{bottom:581.475000px;}
.y137_c01310{bottom:582.330000px;}
.y139_c01310{bottom:584.070000px;}
.y13a_c01310{bottom:584.925000px;}
.y130_c01310{bottom:585.795000px;}
.y135_c01310{bottom:586.650000px;}
.y136_c01310{bottom:587.520000px;}
.y138_c01310{bottom:588.390000px;}
.y125_c01310{bottom:600.480000px;}
.y127_c01310{bottom:601.350000px;}
.y126_c01310{bottom:603.075000px;}
.y12c_c01310{bottom:603.930000px;}
.y12e_c01310{bottom:604.800000px;}
.y128_c01310{bottom:605.670000px;}
.y129_c01310{bottom:607.395000px;}
.y12f_c01310{bottom:608.250000px;}
.y12d_c01310{bottom:610.845000px;}
.y12b_c01310{bottom:613.440000px;}
.y11e_c01310{bottom:616.890000px;}
.y12a_c01310{bottom:617.760000px;}
.y11f_c01310{bottom:618.630000px;}
.y123_c01310{bottom:622.950000px;}
.y120_c01310{bottom:624.675000px;}
.y124_c01310{bottom:625.530000px;}
.y121_c01310{bottom:626.400000px;}
.y122_c01310{bottom:627.270000px;}
.y119_c01310{bottom:637.635000px;}
.y11a_c01310{bottom:639.360000px;}
.y118_c01310{bottom:641.085000px;}
.y11b_c01310{bottom:644.550000px;}
.y11c_c01310{bottom:645.405000px;}
.y110_c01310{bottom:658.365000px;}
.y113_c01310{bottom:659.235000px;}
.y11d_c01310{bottom:661.830000px;}
.y111_c01310{bottom:662.685000px;}
.y112_c01310{bottom:663.555000px;}
.y117_c01310{bottom:664.410000px;}
.y114_c01310{bottom:666.150000px;}
.y116_c01310{bottom:667.005000px;}
.y115_c01310{bottom:674.790000px;}
.y10a_c01310{bottom:678.240000px;}
.y109_c01310{bottom:679.110000px;}
.y10c_c01310{bottom:679.965000px;}
.y10f_c01310{bottom:681.690000px;}
.y10b_c01310{bottom:684.285000px;}
.y10d_c01310{bottom:685.155000px;}
.y10e_c01310{bottom:686.880000px;}
.y1fa_c01310{bottom:692.925000px;}
.yfe_c01310{bottom:696.390000px;}
.y100_c01310{bottom:698.970000px;}
.y104_c01310{bottom:699.840000px;}
.y105_c01310{bottom:700.710000px;}
.y102_c01310{bottom:701.565000px;}
.yff_c01310{bottom:702.435000px;}
.y101_c01310{bottom:704.160000px;}
.y103_c01310{bottom:705.030000px;}
.y107_c01310{bottom:705.885000px;}
.y106_c01310{bottom:707.610000px;}
.y108_c01310{bottom:709.350000px;}
.yf5_c01310{bottom:717.990000px;}
.yf8_c01310{bottom:719.715000px;}
.yf7_c01310{bottom:721.440000px;}
.yf6_c01310{bottom:722.310000px;}
.yfd_c01310{bottom:724.035000px;}
.yfa_c01310{bottom:724.890000px;}
.yf9_c01310{bottom:727.485000px;}
.yfc_c01310{bottom:728.355000px;}
.yfb_c01310{bottom:729.210000px;}
.yf4_c01310{bottom:735.270000px;}
.yeb_c01310{bottom:737.850000px;}
.yec_c01310{bottom:740.445000px;}
.yef_c01310{bottom:742.170000px;}
.yea_c01310{bottom:743.040000px;}
.yed_c01310{bottom:743.910000px;}
.yee_c01310{bottom:744.765000px;}
.yf1_c01310{bottom:745.635000px;}
.yf0_c01310{bottom:746.490000px;}
.yf2_c01310{bottom:748.230000px;}
.yf3_c01310{bottom:749.085000px;}
.ye9_c01310{bottom:749.955000px;}
.ye1_c01310{bottom:758.595000px;}
.ye2_c01310{bottom:759.450000px;}
.ye4_c01310{bottom:762.045000px;}
.ye0_c01310{bottom:763.770000px;}
.ye3_c01310{bottom:764.640000px;}
.ye6_c01310{bottom:765.510000px;}
.ye5_c01310{bottom:766.365000px;}
.ye7_c01310{bottom:768.960000px;}
.ye8_c01310{bottom:769.830000px;}
.yd6_c01310{bottom:778.470000px;}
.yd7_c01310{bottom:781.050000px;}
.yd9_c01310{bottom:783.645000px;}
.yd8_c01310{bottom:784.515000px;}
.ydc_c01310{bottom:785.370000px;}
.ydf_c01310{bottom:786.240000px;}
.yda_c01310{bottom:787.110000px;}
.ydd_c01310{bottom:788.835000px;}
.yde_c01310{bottom:789.690000px;}
.ydb_c01310{bottom:798.330000px;}
.yd0_c01310{bottom:800.070000px;}
.yd3_c01310{bottom:801.795000px;}
.yce_c01310{bottom:802.650000px;}
.yd1_c01310{bottom:803.520000px;}
.ycf_c01310{bottom:804.390000px;}
.yd2_c01310{bottom:806.115000px;}
.yd4_c01310{bottom:808.710000px;}
.yd5_c01310{bottom:809.565000px;}
.yc6_c01310{bottom:819.930000px;}
.yc7_c01310{bottom:820.800000px;}
.yc8_c01310{bottom:821.670000px;}
.yc5_c01310{bottom:824.250000px;}
.ycd_c01310{bottom:825.120000px;}
.ycc_c01310{bottom:826.845000px;}
.yc9_c01310{bottom:828.570000px;}
.yca_c01310{bottom:829.440000px;}
.ycb_c01310{bottom:830.310000px;}
.ybd_c01310{bottom:839.805000px;}
.ybe_c01310{bottom:840.675000px;}
.ybc_c01310{bottom:841.530000px;}
.yc0_c01310{bottom:842.400000px;}
.ybb_c01310{bottom:843.270000px;}
.yc4_c01310{bottom:845.850000px;}
.yc1_c01310{bottom:849.315000px;}
.yc2_c01310{bottom:850.170000px;}
.yc3_c01310{bottom:851.040000px;}
.yb3_c01310{bottom:858.810000px;}
.ybf_c01310{bottom:860.550000px;}
.yb6_c01310{bottom:861.405000px;}
.yb5_c01310{bottom:862.275000px;}
.yb7_c01310{bottom:863.130000px;}
.yb9_c01310{bottom:864.000000px;}
.yb4_c01310{bottom:864.870000px;}
.yb8_c01310{bottom:867.450000px;}
.yba_c01310{bottom:870.045000px;}
.yac_c01310{bottom:880.410000px;}
.yaf_c01310{bottom:883.005000px;}
.yad_c01310{bottom:885.600000px;}
.yae_c01310{bottom:886.470000px;}
.yb0_c01310{bottom:889.050000px;}
.yb1_c01310{bottom:890.790000px;}
.yb2_c01310{bottom:892.515000px;}
.ya3_c01310{bottom:900.285000px;}
.ya4_c01310{bottom:902.010000px;}
.ya7_c01310{bottom:902.880000px;}
.ya8_c01310{bottom:903.750000px;}
.ya1_c01310{bottom:905.475000px;}
.ya5_c01310{bottom:907.200000px;}
.ya6_c01310{bottom:908.070000px;}
.ya9_c01310{bottom:909.795000px;}
.yab_c01310{bottom:910.650000px;}
.yaa_c01310{bottom:911.520000px;}
.ya2_c01310{bottom:916.710000px;}
.y9a_c01310{bottom:924.480000px;}
.y9d_c01310{bottom:925.350000px;}
.y9b_c01310{bottom:926.205000px;}
.y9c_c01310{bottom:927.930000px;}
.y9e_c01310{bottom:929.670000px;}
.y9f_c01310{bottom:930.525000px;}
.ya0_c01310{bottom:933.120000px;}
.y92_c01310{bottom:940.890000px;}
.y94_c01310{bottom:941.760000px;}
.y97_c01310{bottom:942.630000px;}
.y95_c01310{bottom:944.355000px;}
.y93_c01310{bottom:946.080000px;}
.y99_c01310{bottom:947.805000px;}
.y96_c01310{bottom:948.675000px;}
.y98_c01310{bottom:950.400000px;}
.y8b_c01310{bottom:959.040000px;}
.y8d_c01310{bottom:961.635000px;}
.y8e_c01310{bottom:963.360000px;}
.y8f_c01310{bottom:964.230000px;}
.y8c_c01310{bottom:965.955000px;}
.y90_c01310{bottom:966.810000px;}
.y91_c01310{bottom:973.725000px;}
.y84_c01310{bottom:979.770000px;}
.y85_c01310{bottom:980.640000px;}
.y88_c01310{bottom:981.510000px;}
.y87_c01310{bottom:983.235000px;}
.y86_c01310{bottom:984.090000px;}
.y83_c01310{bottom:986.685000px;}
.y7d_c01310{bottom:987.555000px;}
.y7e_c01310{bottom:988.410000px;}
.y7f_c01310{bottom:989.280000px;}
.y89_c01310{bottom:990.150000px;}
.y8a_c01310{bottom:991.005000px;}
.y7a_c01310{bottom:993.600000px;}
.y81_c01310{bottom:996.195000px;}
.y80_c01310{bottom:997.050000px;}
.y7b_c01310{bottom:997.920000px;}
.y7c_c01310{bottom:998.790000px;}
.y73_c01310{bottom:999.645000px;}
.y82_c01310{bottom:1000.515000px;}
.y74_c01310{bottom:1001.370000px;}
.y72_c01310{bottom:1003.110000px;}
.y75_c01310{bottom:1003.965000px;}
.y77_c01310{bottom:1005.690000px;}
.y78_c01310{bottom:1007.430000px;}
.y6c_c01310{bottom:1008.285000px;}
.y76_c01310{bottom:1010.880000px;}
.y79_c01310{bottom:1012.605000px;}
.y67_c01310{bottom:1021.245000px;}
.y68_c01310{bottom:1022.970000px;}
.y69_c01310{bottom:1024.710000px;}
.y6e_c01310{bottom:1025.565000px;}
.y6f_c01310{bottom:1028.160000px;}
.y6d_c01310{bottom:1029.030000px;}
.y6b_c01310{bottom:1029.885000px;}
.y6a_c01310{bottom:1031.610000px;}
.y70_c01310{bottom:1033.350000px;}
.y71_c01310{bottom:1034.205000px;}
.y64_c01310{bottom:1041.990000px;}
.y63_c01310{bottom:1042.845000px;}
.y65_c01310{bottom:1043.715000px;}
.y66_c01310{bottom:1049.760000px;}
.y5e_c01310{bottom:1060.995000px;}
.y5f_c01310{bottom:1062.720000px;}
.y60_c01310{bottom:1068.765000px;}
.y61_c01310{bottom:1069.635000px;}
.y62_c01310{bottom:1070.490000px;}
.y5d_c01310{bottom:1077.405000px;}
.y1f7_c01310{bottom:1079.130000px;}
.y1f9_c01310{bottom:1080.000000px;}
.y1f8_c01310{bottom:1080.870000px;}
.y5a_c01310{bottom:1086.915000px;}
.y5b_c01310{bottom:1087.770000px;}
.y53_c01310{bottom:1101.600000px;}
.y5c_c01310{bottom:1102.470000px;}
.y54_c01310{bottom:1103.325000px;}
.y56_c01310{bottom:1104.195000px;}
.y55_c01310{bottom:1108.515000px;}
.y57_c01310{bottom:1111.110000px;}
.y58_c01310{bottom:1115.430000px;}
.y59_c01310{bottom:1119.750000px;}
.y4f_c01310{bottom:1121.475000px;}
.y50_c01310{bottom:1122.330000px;}
.y52_c01310{bottom:1124.070000px;}
.y51_c01310{bottom:1130.115000px;}
.y44_c01310{bottom:1142.205000px;}
.y45_c01310{bottom:1143.075000px;}
.y48_c01310{bottom:1144.800000px;}
.y49_c01310{bottom:1145.670000px;}
.y47_c01310{bottom:1146.525000px;}
.y4c_c01310{bottom:1149.120000px;}
.y46_c01310{bottom:1149.990000px;}
.y4d_c01310{bottom:1150.845000px;}
.y4e_c01310{bottom:1151.715000px;}
.y4a_c01310{bottom:1152.570000px;}
.y4b_c01310{bottom:1162.080000px;}
.y3f_c01310{bottom:1165.530000px;}
.y3c_c01310{bottom:1167.270000px;}
.y42_c01310{bottom:1168.125000px;}
.y3b_c01310{bottom:1168.995000px;}
.y3d_c01310{bottom:1169.850000px;}
.y3e_c01310{bottom:1170.720000px;}
.y41_c01310{bottom:1171.590000px;}
.y43_c01310{bottom:1175.040000px;}
.y40_c01310{bottom:1181.085000px;}
.y32_c01310{bottom:1182.810000px;}
.y30_c01310{bottom:1184.550000px;}
.y33_c01310{bottom:1185.405000px;}
.y38_c01310{bottom:1186.275000px;}
.y39_c01310{bottom:1187.130000px;}
.y31_c01310{bottom:1188.870000px;}
.y37_c01310{bottom:1190.595000px;}
.y34_c01310{bottom:1191.450000px;}
.y3a_c01310{bottom:1193.190000px;}
.y35_c01310{bottom:1194.045000px;}
.y36_c01310{bottom:1194.915000px;}
.y29_c01310{bottom:1203.555000px;}
.y2c_c01310{bottom:1206.150000px;}
.y2e_c01310{bottom:1208.730000px;}
.y2a_c01310{bottom:1209.600000px;}
.y2f_c01310{bottom:1210.470000px;}
.y2b_c01310{bottom:1211.325000px;}
.y2d_c01310{bottom:1213.920000px;}
.y20_c01310{bottom:1222.560000px;}
.y22_c01310{bottom:1225.155000px;}
.y25_c01310{bottom:1226.010000px;}
.y24_c01310{bottom:1226.880000px;}
.y21_c01310{bottom:1227.750000px;}
.y26_c01310{bottom:1229.475000px;}
.y23_c01310{bottom:1232.070000px;}
.y27_c01310{bottom:1232.925000px;}
.y28_c01310{bottom:1234.650000px;}
.y1f6_c01310{bottom:1238.115000px;}
.y18_c01310{bottom:1245.030000px;}
.y19_c01310{bottom:1245.885000px;}
.y1b_c01310{bottom:1247.610000px;}
.y1a_c01310{bottom:1251.075000px;}
.y1c_c01310{bottom:1252.800000px;}
.y1d_c01310{bottom:1253.670000px;}
.y1e_c01310{bottom:1255.395000px;}
.y1f_c01310{bottom:1256.250000px;}
.y10_c01310{bottom:1264.035000px;}
.y11_c01310{bottom:1267.485000px;}
.y14_c01310{bottom:1268.355000px;}
.y15_c01310{bottom:1269.210000px;}
.y12_c01310{bottom:1270.080000px;}
.y17_c01310{bottom:1270.950000px;}
.y13_c01310{bottom:1271.805000px;}
.y16_c01310{bottom:1274.400000px;}
.y9_c01310{bottom:1286.490000px;}
.yb_c01310{bottom:1287.360000px;}
.y8_c01310{bottom:1289.085000px;}
.ya_c01310{bottom:1289.955000px;}
.ye_c01310{bottom:1290.810000px;}
.yc_c01310{bottom:1292.550000px;}
.yd_c01310{bottom:1294.275000px;}
.yf_c01310{bottom:1296.000000px;}
.y2_c01310{bottom:1304.640000px;}
.y3_c01310{bottom:1307.235000px;}
.y1_c01310{bottom:1308.090000px;}
.y4_c01310{bottom:1309.830000px;}
.y6_c01310{bottom:1312.410000px;}
.y7_c01310{bottom:1313.280000px;}
.y5_c01310{bottom:1314.150000px;}
.y1f3_c01310{bottom:1332.285000px;}
.y1f5_c01310{bottom:1339.200000px;}
.y1f4_c01310{bottom:1340.070000px;}
.y1f2_c01310{bottom:1346.970000px;}
.y1f0_c01310{bottom:1383.270000px;}
.y1f1_c01310{bottom:1387.590000px;}
.hc_c01310{height:3.110063px;}
.h10_c01310{height:5.399414px;}
.h12_c01310{height:6.209326px;}
.h1d_c01310{height:6.590063px;}
.h21_c01310{height:8.879414px;}
.h11_c01310{height:9.340986px;}
.h18_c01310{height:12.418652px;}
.h19_c01310{height:15.550313px;}
.h14_c01310{height:18.681973px;}
.h16_c01310{height:21.759639px;}
.h1c_c01310{height:24.891299px;}
.h6_c01310{height:27.968965px;}
.h15_c01310{height:31.100625px;}
.hb_c01310{height:34.232285px;}
.h17_c01310{height:37.309951px;}
.h20_c01310{height:40.441611px;}
.h13_c01310{height:43.519277px;}
.hd_c01310{height:46.650937px;}
.h8_c01310{height:49.782598px;}
.hf_c01310{height:52.860264px;}
.h1e_c01310{height:53.262598px;}
.ha_c01310{height:55.991924px;}
.h2_c01310{height:59.069590px;}
.h9_c01310{height:62.201250px;}
.h5_c01310{height:65.332910px;}
.h7_c01310{height:68.410576px;}
.he_c01310{height:71.542236px;}
.h4_c01310{height:74.619902px;}
.h3_c01310{height:77.751563px;}
.h1a_c01310{height:80.883223px;}
.h23_c01310{height:83.960889px;}
.h1f_c01310{height:87.092549px;}
.h22_c01310{height:90.170215px;}
.h1b_c01310{height:130.611826px;}
.h1_c01310{height:1513.500000px;}
.h0_c01310{height:1513.725000px;}
.w1_c01310{width:1076.250000px;}
.w0_c01310{width:1076.550000px;}
.x0_c01310{left:0.000000px;}
.xe6_c01310{left:121.830000px;}
.xe7_c01310{left:135.645000px;}
.xe8_c01310{left:168.480000px;}
.xae_c01310{left:186.630000px;}
.x59_c01310{left:192.675000px;}
.x8f_c01310{left:196.995000px;}
.xef_c01310{left:202.170000px;}
.xc1_c01310{left:203.910000px;}
.xb4_c01310{left:206.490000px;}
.x3b_c01310{left:208.230000px;}
.x68_c01310{left:210.810000px;}
.x24_c01310{left:213.405000px;}
.x9_c01310{left:216.000000px;}
.x2a_c01310{left:217.725000px;}
.x9b_c01310{left:219.450000px;}
.xd9_c01310{left:221.190000px;}
.xe9_c01310{left:230.685000px;}
.x1_c01310{left:234.150000px;}
.xaa_c01310{left:237.600000px;}
.x79_c01310{left:240.195000px;}
.xde_c01310{left:243.645000px;}
.x101_c01310{left:247.965000px;}
.x30_c01310{left:249.690000px;}
.x104_c01310{left:252.285000px;}
.xd2_c01310{left:255.750000px;}
.x6f_c01310{left:257.475000px;}
.x44_c01310{left:260.925000px;}
.x3c_c01310{left:262.650000px;}
.x56_c01310{left:266.115000px;}
.xab_c01310{left:268.710000px;}
.xa_c01310{left:272.160000px;}
.x2_c01310{left:275.610000px;}
.x16_c01310{left:279.075000px;}
.x4e_c01310{left:280.800000px;}
.x85_c01310{left:283.395000px;}
.x8a_c01310{left:285.120000px;}
.xc6_c01310{left:290.310000px;}
.x69_c01310{left:292.890000px;}
.x1d_c01310{left:294.630000px;}
.x9f_c01310{left:298.080000px;}
.xc2_c01310{left:301.530000px;}
.x82_c01310{left:303.270000px;}
.x5d_c01310{left:304.995000px;}
.xb5_c01310{left:306.720000px;}
.xaf_c01310{left:308.445000px;}
.x2b_c01310{left:310.170000px;}
.x57_c01310{left:313.635000px;}
.x9c_c01310{left:317.085000px;}
.xb0_c01310{left:318.810000px;}
.xff_c01310{left:321.405000px;}
.x45_c01310{left:324.870000px;}
.xe2_c01310{left:326.595000px;}
.xb_c01310{left:328.320000px;}
.x58_c01310{left:330.915000px;}
.xd3_c01310{left:332.640000px;}
.xf4_c01310{left:334.365000px;}
.x4f_c01310{left:337.830000px;}
.xb1_c01310{left:341.280000px;}
.xbb_c01310{left:344.730000px;}
.xc_c01310{left:346.470000px;}
.xac_c01310{left:348.195000px;}
.x51_c01310{left:349.920000px;}
.x31_c01310{left:353.370000px;}
.xb6_c01310{left:356.835000px;}
.x52_c01310{left:358.560000px;}
.xfc_c01310{left:360.285000px;}
.xc7_c01310{left:362.010000px;}
.xa6_c01310{left:368.925000px;}
.x3_c01310{left:371.520000px;}
.x46_c01310{left:374.115000px;}
.xea_c01310{left:375.840000px;}
.x97_c01310{left:377.565000px;}
.x2c_c01310{left:380.160000px;}
.x25_c01310{left:381.885000px;}
.x90_c01310{left:384.480000px;}
.xbc_c01310{left:387.930000px;}
.x5e_c01310{left:389.670000px;}
.x3d_c01310{left:391.395000px;}
.xe3_c01310{left:393.120000px;}
.x5a_c01310{left:395.715000px;}
.xd4_c01310{left:401.760000px;}
.x70_c01310{left:405.210000px;}
.x3e_c01310{left:408.675000px;}
.x47_c01310{left:410.400000px;}
.xcb_c01310{left:412.125000px;}
.x32_c01310{left:413.850000px;}
.xf0_c01310{left:416.445000px;}
.xd_c01310{left:418.170000px;}
.x105_c01310{left:419.910000px;}
.xa7_c01310{left:421.635000px;}
.x6a_c01310{left:423.360000px;}
.x7a_c01310{left:425.085000px;}
.x1e_c01310{left:426.810000px;}
.x8b_c01310{left:429.405000px;}
.x50_c01310{left:431.130000px;}
.x5b_c01310{left:432.870000px;}
.xa0_c01310{left:436.320000px;}
.x7b_c01310{left:438.915000px;}
.x3f_c01310{left:440.640000px;}
.xc8_c01310{left:443.235000px;}
.xcc_c01310{left:444.960000px;}
.x17_c01310{left:448.410000px;}
.x9d_c01310{left:451.005000px;}
.xa1_c01310{left:452.730000px;}
.x26_c01310{left:455.325000px;}
.x4_c01310{left:457.050000px;}
.xbd_c01310{left:458.790000px;}
.x2d_c01310{left:461.370000px;}
.x48_c01310{left:464.835000px;}
.x53_c01310{left:466.560000px;}
.x98_c01310{left:468.285000px;}
.x1f_c01310{left:470.880000px;}
.xe_c01310{left:476.070000px;}
.x83_c01310{left:478.650000px;}
.x27_c01310{left:481.245000px;}
.xf5_c01310{left:483.840000px;}
.xf1_c01310{left:485.565000px;}
.x40_c01310{left:493.350000px;}
.x33_c01310{left:495.930000px;}
.xf_c01310{left:497.670000px;}
.xbe_c01310{left:501.120000px;}
.x49_c01310{left:504.570000px;}
.x7c_c01310{left:506.310000px;}
.x109_c01310{left:509.760000px;}
.xe4_c01310{left:513.210000px;}
.x34_c01310{left:515.805000px;}
.x102_c01310{left:518.400000px;}
.x35_c01310{left:524.445000px;}
.x54_c01310{left:526.170000px;}
.x5f_c01310{left:528.765000px;}
.xf9_c01310{left:531.360000px;}
.xd0_c01310{left:533.085000px;}
.x41_c01310{left:535.680000px;}
.xeb_c01310{left:537.405000px;}
.x10_c01310{left:539.130000px;}
.x20_c01310{left:541.725000px;}
.xdf_c01310{left:543.450000px;}
.x11_c01310{left:545.190000px;}
.xec_c01310{left:546.915000px;}
.x36_c01310{left:548.640000px;}
.xd5_c01310{left:551.235000px;}
.x37_c01310{left:559.005000px;}
.xa2_c01310{left:560.730000px;}
.x10a_c01310{left:562.470000px;}
.x71_c01310{left:567.645000px;}
.x4a_c01310{left:569.370000px;}
.xb7_c01310{left:571.965000px;}
.xda_c01310{left:573.690000px;}
.x12_c01310{left:578.010000px;}
.xcd_c01310{left:580.605000px;}
.x86_c01310{left:582.330000px;}
.xf6_c01310{left:586.650000px;}
.x100_c01310{left:588.390000px;}
.x99_c01310{left:590.970000px;}
.x60_c01310{left:595.290000px;}
.x8c_c01310{left:597.030000px;}
.x4b_c01310{left:598.755000px;}
.x42_c01310{left:600.480000px;}
.x55_c01310{left:604.800000px;}
.x7d_c01310{left:606.525000px;}
.x21_c01310{left:609.120000px;}
.x91_c01310{left:610.845000px;}
.x61_c01310{left:612.570000px;}
.xed_c01310{left:614.310000px;}
.xe0_c01310{left:616.035000px;}
.x4c_c01310{left:617.760000px;}
.x5_c01310{left:621.210000px;}
.x18_c01310{left:623.805000px;}
.x87_c01310{left:627.270000px;}
.x103_c01310{left:630.720000px;}
.x6b_c01310{left:634.170000px;}
.xad_c01310{left:637.635000px;}
.x62_c01310{left:639.360000px;}
.x38_c01310{left:641.085000px;}
.x2e_c01310{left:642.810000px;}
.x108_c01310{left:645.405000px;}
.xa3_c01310{left:647.130000px;}
.x9e_c01310{left:649.725000px;}
.xd1_c01310{left:651.450000px;}
.x4d_c01310{left:654.045000px;}
.x5c_c01310{left:656.640000px;}
.xe5_c01310{left:658.365000px;}
.x6_c01310{left:661.830000px;}
.x7e_c01310{left:664.410000px;}
.x72_c01310{left:667.875000px;}
.xee_c01310{left:669.600000px;}
.x13_c01310{left:672.195000px;}
.x7f_c01310{left:673.920000px;}
.xd6_c01310{left:675.645000px;}
.x19_c01310{left:678.240000px;}
.xce_c01310{left:679.965000px;}
.x7_c01310{left:681.690000px;}
.xdb_c01310{left:683.430000px;}
.x92_c01310{left:685.155000px;}
.xfa_c01310{left:688.605000px;}
.x1a_c01310{left:690.330000px;}
.x93_c01310{left:692.925000px;}
.x43_c01310{left:697.245000px;}
.x63_c01310{left:699.840000px;}
.x80_c01310{left:701.565000px;}
.x73_c01310{left:703.290000px;}
.xc3_c01310{left:705.030000px;}
.x6c_c01310{left:706.755000px;}
.x81_c01310{left:709.350000px;}
.xc4_c01310{left:713.670000px;}
.x8d_c01310{left:715.395000px;}
.x88_c01310{left:720.570000px;}
.x9a_c01310{left:723.165000px;}
.x107_c01310{left:724.890000px;}
.x74_c01310{left:727.485000px;}
.x14_c01310{left:730.080000px;}
.x94_c01310{left:731.805000px;}
.xb8_c01310{left:734.400000px;}
.x28_c01310{left:737.850000px;}
.x1b_c01310{left:743.910000px;}
.xf2_c01310{left:746.490000px;}
.xc9_c01310{left:748.230000px;}
.xa8_c01310{left:749.955000px;}
.x39_c01310{left:751.680000px;}
.xbf_c01310{left:755.130000px;}
.xf7_c01310{left:757.725000px;}
.x89_c01310{left:759.450000px;}
.x22_c01310{left:761.190000px;}
.xa4_c01310{left:762.915000px;}
.xf3_c01310{left:764.640000px;}
.xc5_c01310{left:766.365000px;}
.x8_c01310{left:769.830000px;}
.x64_c01310{left:773.280000px;}
.xfd_c01310{left:775.875000px;}
.xc0_c01310{left:777.600000px;}
.x95_c01310{left:779.325000px;}
.xfb_c01310{left:781.920000px;}
.x15_c01310{left:783.645000px;}
.x65_c01310{left:786.240000px;}
.xcf_c01310{left:789.690000px;}
.x29_c01310{left:792.285000px;}
.xb2_c01310{left:794.880000px;}
.x75_c01310{left:796.605000px;}
.xca_c01310{left:798.330000px;}
.xb9_c01310{left:800.925000px;}
.x23_c01310{left:802.650000px;}
.xd7_c01310{left:805.245000px;}
.x10c_c01310{left:806.970000px;}
.xa5_c01310{left:808.710000px;}
.x6d_c01310{left:810.435000px;}
.x1c_c01310{left:814.755000px;}
.xe1_c01310{left:816.480000px;}
.xa9_c01310{left:818.205000px;}
.x84_c01310{left:819.930000px;}
.x76_c01310{left:822.525000px;}
.x106_c01310{left:824.250000px;}
.xf8_c01310{left:827.715000px;}
.x3a_c01310{left:829.440000px;}
.x8e_c01310{left:832.890000px;}
.x96_c01310{left:838.080000px;}
.x2f_c01310{left:844.125000px;}
.xdc_c01310{left:846.720000px;}
.x6e_c01310{left:851.910000px;}
.x66_c01310{left:857.955000px;}
.x77_c01310{left:859.680000px;}
.xd8_c01310{left:861.405000px;}
.xfe_c01310{left:873.510000px;}
.xb3_c01310{left:876.090000px;}
.x78_c01310{left:888.195000px;}
.xba_c01310{left:893.370000px;}
.xdd_c01310{left:896.835000px;}
.x67_c01310{left:902.880000px;}
.x10f_c01310{left:905.475000px;}
.x10e_c01310{left:908.070000px;}
.x10b_c01310{left:975.450000px;}
.x10d_c01310{left:1038.525000px;}
@media print{
.v0_c01310{vertical-align:0.000000pt;}
.v1_c01310{vertical-align:3.093333pt;}
.ls2_c01310{letter-spacing:0.000000pt;}
.ls0_c01310{letter-spacing:135.357056pt;}
.ls1_c01310{letter-spacing:351.029333pt;}
.ws1_c01310{word-spacing:-12.602667pt;}
.ws2_c01310{word-spacing:0.000000pt;}
.ws0_c01310{word-spacing:290.691413pt;}
.fsa_c01310{font-size:3.072000pt;}
.fse_c01310{font-size:5.333333pt;}
.fs10_c01310{font-size:6.133333pt;}
.fsf_c01310{font-size:9.226667pt;}
.fs16_c01310{font-size:12.266667pt;}
.fs17_c01310{font-size:15.360000pt;}
.fs12_c01310{font-size:18.453333pt;}
.fs14_c01310{font-size:21.493333pt;}
.fs1a_c01310{font-size:24.586667pt;}
.fs4_c01310{font-size:27.626667pt;}
.fs13_c01310{font-size:30.720000pt;}
.fs9_c01310{font-size:33.813333pt;}
.fs15_c01310{font-size:36.853333pt;}
.fs1c_c01310{font-size:39.946667pt;}
.fs11_c01310{font-size:42.986667pt;}
.fsb_c01310{font-size:46.080000pt;}
.fs6_c01310{font-size:49.173333pt;}
.fsd_c01310{font-size:52.213333pt;}
.fs8_c01310{font-size:55.306667pt;}
.fs0_c01310{font-size:58.346667pt;}
.fs7_c01310{font-size:61.440000pt;}
.fs3_c01310{font-size:64.533333pt;}
.fs5_c01310{font-size:67.573333pt;}
.fsc_c01310{font-size:70.666667pt;}
.fs2_c01310{font-size:73.706667pt;}
.fs1_c01310{font-size:76.800000pt;}
.fs18_c01310{font-size:79.893333pt;}
.fs1e_c01310{font-size:82.933333pt;}
.fs1b_c01310{font-size:86.026667pt;}
.fs1d_c01310{font-size:89.066667pt;}
.fs19_c01310{font-size:129.013333pt;}
.y0_c01310{bottom:0.000000pt;}
.y1ee_c01310{bottom:139.013333pt;}
.y1ef_c01310{bottom:142.080000pt;}
.y1ed_c01310{bottom:145.146667pt;}
.y1e6_c01310{bottom:148.986667pt;}
.y1e8_c01310{bottom:150.533333pt;}
.y1ea_c01310{bottom:151.293333pt;}
.y1eb_c01310{bottom:152.066667pt;}
.y1e9_c01310{bottom:152.826667pt;}
.y1e7_c01310{bottom:155.133333pt;}
.y1e1_c01310{bottom:168.960000pt;}
.y1ec_c01310{bottom:169.733333pt;}
.y1e2_c01310{bottom:170.493333pt;}
.y1e4_c01310{bottom:174.333333pt;}
.y1e5_c01310{bottom:175.106667pt;}
.y1e3_c01310{bottom:175.866667pt;}
.y1d8_c01310{bottom:186.626667pt;}
.y1d9_c01310{bottom:187.386667pt;}
.y1da_c01310{bottom:188.160000pt;}
.y1df_c01310{bottom:188.933333pt;}
.y1db_c01310{bottom:189.693333pt;}
.y1de_c01310{bottom:190.466667pt;}
.y1dd_c01310{bottom:192.000000pt;}
.y1dc_c01310{bottom:192.773333pt;}
.y1e0_c01310{bottom:195.066667pt;}
.y1cf_c01310{bottom:205.053333pt;}
.y1d0_c01310{bottom:205.826667pt;}
.y1d1_c01310{bottom:207.360000pt;}
.y1d2_c01310{bottom:208.133333pt;}
.y1d3_c01310{bottom:208.893333pt;}
.y1d7_c01310{bottom:210.426667pt;}
.y1d4_c01310{bottom:211.973333pt;}
.y1d6_c01310{bottom:212.733333pt;}
.y1d5_c01310{bottom:213.506667pt;}
.y1c7_c01310{bottom:223.493333pt;}
.y1c8_c01310{bottom:224.253333pt;}
.y1c9_c01310{bottom:225.026667pt;}
.y1ca_c01310{bottom:226.560000pt;}
.y1cb_c01310{bottom:227.333333pt;}
.y1cc_c01310{bottom:228.866667pt;}
.y1cd_c01310{bottom:230.400000pt;}
.y1ce_c01310{bottom:231.173333pt;}
.y1be_c01310{bottom:238.853333pt;}
.y1bf_c01310{bottom:240.386667pt;}
.y1c1_c01310{bottom:242.693333pt;}
.y1bd_c01310{bottom:243.453333pt;}
.y1c0_c01310{bottom:244.226667pt;}
.y1c4_c01310{bottom:244.986667pt;}
.y1c2_c01310{bottom:248.066667pt;}
.y1c3_c01310{bottom:249.600000pt;}
.y1c5_c01310{bottom:251.133333pt;}
.y1c6_c01310{bottom:252.666667pt;}
.y1b3_c01310{bottom:258.053333pt;}
.y1b2_c01310{bottom:258.813333pt;}
.y1b4_c01310{bottom:260.346667pt;}
.y1b9_c01310{bottom:262.653333pt;}
.y1b7_c01310{bottom:264.186667pt;}
.y1b5_c01310{bottom:265.733333pt;}
.y1b6_c01310{bottom:266.493333pt;}
.y1b8_c01310{bottom:267.266667pt;}
.y1ba_c01310{bottom:268.800000pt;}
.y1bb_c01310{bottom:269.573333pt;}
.y1bc_c01310{bottom:270.333333pt;}
.y1b1_c01310{bottom:271.866667pt;}
.y1a8_c01310{bottom:276.480000pt;}
.y1ab_c01310{bottom:277.253333pt;}
.y1a9_c01310{bottom:278.786667pt;}
.y1ae_c01310{bottom:280.320000pt;}
.y1ad_c01310{bottom:281.093333pt;}
.y1aa_c01310{bottom:281.853333pt;}
.y1ac_c01310{bottom:284.160000pt;}
.y1b0_c01310{bottom:284.933333pt;}
.y1af_c01310{bottom:286.466667pt;}
.y1a0_c01310{bottom:294.906667pt;}
.y1a2_c01310{bottom:297.213333pt;}
.y19f_c01310{bottom:297.986667pt;}
.y19e_c01310{bottom:299.520000pt;}
.y1a1_c01310{bottom:300.293333pt;}
.y1a6_c01310{bottom:301.053333pt;}
.y1a4_c01310{bottom:301.826667pt;}
.y1a3_c01310{bottom:302.586667pt;}
.y1a5_c01310{bottom:304.133333pt;}
.y1a7_c01310{bottom:306.426667pt;}
.y199_c01310{bottom:314.106667pt;}
.y19a_c01310{bottom:314.880000pt;}
.y197_c01310{bottom:316.413333pt;}
.y196_c01310{bottom:317.186667pt;}
.y19c_c01310{bottom:317.946667pt;}
.y198_c01310{bottom:318.720000pt;}
.y19b_c01310{bottom:320.253333pt;}
.y19d_c01310{bottom:324.866667pt;}
.y18c_c01310{bottom:331.773333pt;}
.y18d_c01310{bottom:332.546667pt;}
.y18f_c01310{bottom:333.306667pt;}
.y191_c01310{bottom:334.853333pt;}
.y18b_c01310{bottom:335.613333pt;}
.y194_c01310{bottom:337.146667pt;}
.y18e_c01310{bottom:339.453333pt;}
.y192_c01310{bottom:340.986667pt;}
.y193_c01310{bottom:341.760000pt;}
.y190_c01310{bottom:343.293333pt;}
.y195_c01310{bottom:345.600000pt;}
.y185_c01310{bottom:350.213333pt;}
.y186_c01310{bottom:351.746667pt;}
.y187_c01310{bottom:354.053333pt;}
.y189_c01310{bottom:354.813333pt;}
.y18a_c01310{bottom:355.586667pt;}
.y188_c01310{bottom:360.186667pt;}
.y17e_c01310{bottom:367.106667pt;}
.y180_c01310{bottom:369.413333pt;}
.y17f_c01310{bottom:370.946667pt;}
.y182_c01310{bottom:374.786667pt;}
.y181_c01310{bottom:375.546667pt;}
.y183_c01310{bottom:376.320000pt;}
.y184_c01310{bottom:377.093333pt;}
.y176_c01310{bottom:386.306667pt;}
.y175_c01310{bottom:390.146667pt;}
.y177_c01310{bottom:391.680000pt;}
.y178_c01310{bottom:392.453333pt;}
.y179_c01310{bottom:393.986667pt;}
.y17a_c01310{bottom:394.746667pt;}
.y17b_c01310{bottom:395.520000pt;}
.y17d_c01310{bottom:396.293333pt;}
.y17c_c01310{bottom:397.053333pt;}
.y16f_c01310{bottom:405.506667pt;}
.y16d_c01310{bottom:407.813333pt;}
.y171_c01310{bottom:408.573333pt;}
.y16e_c01310{bottom:409.346667pt;}
.y172_c01310{bottom:410.106667pt;}
.y170_c01310{bottom:412.413333pt;}
.y173_c01310{bottom:413.186667pt;}
.y174_c01310{bottom:414.720000pt;}
.y163_c01310{bottom:420.866667pt;}
.y166_c01310{bottom:425.466667pt;}
.y169_c01310{bottom:427.013333pt;}
.y165_c01310{bottom:427.773333pt;}
.y164_c01310{bottom:428.546667pt;}
.y167_c01310{bottom:430.080000pt;}
.y168_c01310{bottom:430.853333pt;}
.y16c_c01310{bottom:431.613333pt;}
.y16a_c01310{bottom:432.386667pt;}
.y16b_c01310{bottom:433.146667pt;}
.y158_c01310{bottom:440.826667pt;}
.y159_c01310{bottom:441.600000pt;}
.y15a_c01310{bottom:443.906667pt;}
.y15e_c01310{bottom:444.666667pt;}
.y15b_c01310{bottom:445.440000pt;}
.y160_c01310{bottom:446.973333pt;}
.y15c_c01310{bottom:447.746667pt;}
.y15d_c01310{bottom:448.506667pt;}
.y15f_c01310{bottom:449.280000pt;}
.y162_c01310{bottom:450.053333pt;}
.y161_c01310{bottom:450.813333pt;}
.y157_c01310{bottom:456.186667pt;}
.y14e_c01310{bottom:458.493333pt;}
.y153_c01310{bottom:460.800000pt;}
.y14d_c01310{bottom:461.573333pt;}
.y150_c01310{bottom:462.333333pt;}
.y151_c01310{bottom:463.106667pt;}
.y156_c01310{bottom:463.866667pt;}
.y152_c01310{bottom:464.640000pt;}
.y155_c01310{bottom:466.946667pt;}
.y14f_c01310{bottom:468.480000pt;}
.y154_c01310{bottom:470.786667pt;}
.y14c_c01310{bottom:472.320000pt;}
.y145_c01310{bottom:481.533333pt;}
.y147_c01310{bottom:484.613333pt;}
.y14a_c01310{bottom:486.146667pt;}
.y148_c01310{bottom:486.906667pt;}
.y144_c01310{bottom:490.746667pt;}
.y146_c01310{bottom:492.293333pt;}
.y149_c01310{bottom:493.053333pt;}
.y13b_c01310{bottom:493.826667pt;}
.y13c_c01310{bottom:494.586667pt;}
.y14b_c01310{bottom:496.893333pt;}
.y13e_c01310{bottom:497.666667pt;}
.y141_c01310{bottom:498.426667pt;}
.y140_c01310{bottom:499.200000pt;}
.y13d_c01310{bottom:499.973333pt;}
.y13f_c01310{bottom:502.266667pt;}
.y142_c01310{bottom:504.573333pt;}
.y143_c01310{bottom:505.346667pt;}
.y132_c01310{bottom:513.786667pt;}
.y133_c01310{bottom:514.560000pt;}
.y134_c01310{bottom:516.093333pt;}
.y131_c01310{bottom:516.866667pt;}
.y137_c01310{bottom:517.626667pt;}
.y139_c01310{bottom:519.173333pt;}
.y13a_c01310{bottom:519.933333pt;}
.y130_c01310{bottom:520.706667pt;}
.y135_c01310{bottom:521.466667pt;}
.y136_c01310{bottom:522.240000pt;}
.y138_c01310{bottom:523.013333pt;}
.y125_c01310{bottom:533.760000pt;}
.y127_c01310{bottom:534.533333pt;}
.y126_c01310{bottom:536.066667pt;}
.y12c_c01310{bottom:536.826667pt;}
.y12e_c01310{bottom:537.600000pt;}
.y128_c01310{bottom:538.373333pt;}
.y129_c01310{bottom:539.906667pt;}
.y12f_c01310{bottom:540.666667pt;}
.y12d_c01310{bottom:542.973333pt;}
.y12b_c01310{bottom:545.280000pt;}
.y11e_c01310{bottom:548.346667pt;}
.y12a_c01310{bottom:549.120000pt;}
.y11f_c01310{bottom:549.893333pt;}
.y123_c01310{bottom:553.733333pt;}
.y120_c01310{bottom:555.266667pt;}
.y124_c01310{bottom:556.026667pt;}
.y121_c01310{bottom:556.800000pt;}
.y122_c01310{bottom:557.573333pt;}
.y119_c01310{bottom:566.786667pt;}
.y11a_c01310{bottom:568.320000pt;}
.y118_c01310{bottom:569.853333pt;}
.y11b_c01310{bottom:572.933333pt;}
.y11c_c01310{bottom:573.693333pt;}
.y110_c01310{bottom:585.213333pt;}
.y113_c01310{bottom:585.986667pt;}
.y11d_c01310{bottom:588.293333pt;}
.y111_c01310{bottom:589.053333pt;}
.y112_c01310{bottom:589.826667pt;}
.y117_c01310{bottom:590.586667pt;}
.y114_c01310{bottom:592.133333pt;}
.y116_c01310{bottom:592.893333pt;}
.y115_c01310{bottom:599.813333pt;}
.y10a_c01310{bottom:602.880000pt;}
.y109_c01310{bottom:603.653333pt;}
.y10c_c01310{bottom:604.413333pt;}
.y10f_c01310{bottom:605.946667pt;}
.y10b_c01310{bottom:608.253333pt;}
.y10d_c01310{bottom:609.026667pt;}
.y10e_c01310{bottom:610.560000pt;}
.y1fa_c01310{bottom:615.933333pt;}
.yfe_c01310{bottom:619.013333pt;}
.y100_c01310{bottom:621.306667pt;}
.y104_c01310{bottom:622.080000pt;}
.y105_c01310{bottom:622.853333pt;}
.y102_c01310{bottom:623.613333pt;}
.yff_c01310{bottom:624.386667pt;}
.y101_c01310{bottom:625.920000pt;}
.y103_c01310{bottom:626.693333pt;}
.y107_c01310{bottom:627.453333pt;}
.y106_c01310{bottom:628.986667pt;}
.y108_c01310{bottom:630.533333pt;}
.yf5_c01310{bottom:638.213333pt;}
.yf8_c01310{bottom:639.746667pt;}
.yf7_c01310{bottom:641.280000pt;}
.yf6_c01310{bottom:642.053333pt;}
.yfd_c01310{bottom:643.586667pt;}
.yfa_c01310{bottom:644.346667pt;}
.yf9_c01310{bottom:646.653333pt;}
.yfc_c01310{bottom:647.426667pt;}
.yfb_c01310{bottom:648.186667pt;}
.yf4_c01310{bottom:653.573333pt;}
.yeb_c01310{bottom:655.866667pt;}
.yec_c01310{bottom:658.173333pt;}
.yef_c01310{bottom:659.706667pt;}
.yea_c01310{bottom:660.480000pt;}
.yed_c01310{bottom:661.253333pt;}
.yee_c01310{bottom:662.013333pt;}
.yf1_c01310{bottom:662.786667pt;}
.yf0_c01310{bottom:663.546667pt;}
.yf2_c01310{bottom:665.093333pt;}
.yf3_c01310{bottom:665.853333pt;}
.ye9_c01310{bottom:666.626667pt;}
.ye1_c01310{bottom:674.306667pt;}
.ye2_c01310{bottom:675.066667pt;}
.ye4_c01310{bottom:677.373333pt;}
.ye0_c01310{bottom:678.906667pt;}
.ye3_c01310{bottom:679.680000pt;}
.ye6_c01310{bottom:680.453333pt;}
.ye5_c01310{bottom:681.213333pt;}
.ye7_c01310{bottom:683.520000pt;}
.ye8_c01310{bottom:684.293333pt;}
.yd6_c01310{bottom:691.973333pt;}
.yd7_c01310{bottom:694.266667pt;}
.yd9_c01310{bottom:696.573333pt;}
.yd8_c01310{bottom:697.346667pt;}
.ydc_c01310{bottom:698.106667pt;}
.ydf_c01310{bottom:698.880000pt;}
.yda_c01310{bottom:699.653333pt;}
.ydd_c01310{bottom:701.186667pt;}
.yde_c01310{bottom:701.946667pt;}
.ydb_c01310{bottom:709.626667pt;}
.yd0_c01310{bottom:711.173333pt;}
.yd3_c01310{bottom:712.706667pt;}
.yce_c01310{bottom:713.466667pt;}
.yd1_c01310{bottom:714.240000pt;}
.ycf_c01310{bottom:715.013333pt;}
.yd2_c01310{bottom:716.546667pt;}
.yd4_c01310{bottom:718.853333pt;}
.yd5_c01310{bottom:719.613333pt;}
.yc6_c01310{bottom:728.826667pt;}
.yc7_c01310{bottom:729.600000pt;}
.yc8_c01310{bottom:730.373333pt;}
.yc5_c01310{bottom:732.666667pt;}
.ycd_c01310{bottom:733.440000pt;}
.ycc_c01310{bottom:734.973333pt;}
.yc9_c01310{bottom:736.506667pt;}
.yca_c01310{bottom:737.280000pt;}
.ycb_c01310{bottom:738.053333pt;}
.ybd_c01310{bottom:746.493333pt;}
.ybe_c01310{bottom:747.266667pt;}
.ybc_c01310{bottom:748.026667pt;}
.yc0_c01310{bottom:748.800000pt;}
.ybb_c01310{bottom:749.573333pt;}
.yc4_c01310{bottom:751.866667pt;}
.yc1_c01310{bottom:754.946667pt;}
.yc2_c01310{bottom:755.706667pt;}
.yc3_c01310{bottom:756.480000pt;}
.yb3_c01310{bottom:763.386667pt;}
.ybf_c01310{bottom:764.933333pt;}
.yb6_c01310{bottom:765.693333pt;}
.yb5_c01310{bottom:766.466667pt;}
.yb7_c01310{bottom:767.226667pt;}
.yb9_c01310{bottom:768.000000pt;}
.yb4_c01310{bottom:768.773333pt;}
.yb8_c01310{bottom:771.066667pt;}
.yba_c01310{bottom:773.373333pt;}
.yac_c01310{bottom:782.586667pt;}
.yaf_c01310{bottom:784.893333pt;}
.yad_c01310{bottom:787.200000pt;}
.yae_c01310{bottom:787.973333pt;}
.yb0_c01310{bottom:790.266667pt;}
.yb1_c01310{bottom:791.813333pt;}
.yb2_c01310{bottom:793.346667pt;}
.ya3_c01310{bottom:800.253333pt;}
.ya4_c01310{bottom:801.786667pt;}
.ya7_c01310{bottom:802.560000pt;}
.ya8_c01310{bottom:803.333333pt;}
.ya1_c01310{bottom:804.866667pt;}
.ya5_c01310{bottom:806.400000pt;}
.ya6_c01310{bottom:807.173333pt;}
.ya9_c01310{bottom:808.706667pt;}
.yab_c01310{bottom:809.466667pt;}
.yaa_c01310{bottom:810.240000pt;}
.ya2_c01310{bottom:814.853333pt;}
.y9a_c01310{bottom:821.760000pt;}
.y9d_c01310{bottom:822.533333pt;}
.y9b_c01310{bottom:823.293333pt;}
.y9c_c01310{bottom:824.826667pt;}
.y9e_c01310{bottom:826.373333pt;}
.y9f_c01310{bottom:827.133333pt;}
.ya0_c01310{bottom:829.440000pt;}
.y92_c01310{bottom:836.346667pt;}
.y94_c01310{bottom:837.120000pt;}
.y97_c01310{bottom:837.893333pt;}
.y95_c01310{bottom:839.426667pt;}
.y93_c01310{bottom:840.960000pt;}
.y99_c01310{bottom:842.493333pt;}
.y96_c01310{bottom:843.266667pt;}
.y98_c01310{bottom:844.800000pt;}
.y8b_c01310{bottom:852.480000pt;}
.y8d_c01310{bottom:854.786667pt;}
.y8e_c01310{bottom:856.320000pt;}
.y8f_c01310{bottom:857.093333pt;}
.y8c_c01310{bottom:858.626667pt;}
.y90_c01310{bottom:859.386667pt;}
.y91_c01310{bottom:865.533333pt;}
.y84_c01310{bottom:870.906667pt;}
.y85_c01310{bottom:871.680000pt;}
.y88_c01310{bottom:872.453333pt;}
.y87_c01310{bottom:873.986667pt;}
.y86_c01310{bottom:874.746667pt;}
.y83_c01310{bottom:877.053333pt;}
.y7d_c01310{bottom:877.826667pt;}
.y7e_c01310{bottom:878.586667pt;}
.y7f_c01310{bottom:879.360000pt;}
.y89_c01310{bottom:880.133333pt;}
.y8a_c01310{bottom:880.893333pt;}
.y7a_c01310{bottom:883.200000pt;}
.y81_c01310{bottom:885.506667pt;}
.y80_c01310{bottom:886.266667pt;}
.y7b_c01310{bottom:887.040000pt;}
.y7c_c01310{bottom:887.813333pt;}
.y73_c01310{bottom:888.573333pt;}
.y82_c01310{bottom:889.346667pt;}
.y74_c01310{bottom:890.106667pt;}
.y72_c01310{bottom:891.653333pt;}
.y75_c01310{bottom:892.413333pt;}
.y77_c01310{bottom:893.946667pt;}
.y78_c01310{bottom:895.493333pt;}
.y6c_c01310{bottom:896.253333pt;}
.y76_c01310{bottom:898.560000pt;}
.y79_c01310{bottom:900.093333pt;}
.y67_c01310{bottom:907.773333pt;}
.y68_c01310{bottom:909.306667pt;}
.y69_c01310{bottom:910.853333pt;}
.y6e_c01310{bottom:911.613333pt;}
.y6f_c01310{bottom:913.920000pt;}
.y6d_c01310{bottom:914.693333pt;}
.y6b_c01310{bottom:915.453333pt;}
.y6a_c01310{bottom:916.986667pt;}
.y70_c01310{bottom:918.533333pt;}
.y71_c01310{bottom:919.293333pt;}
.y64_c01310{bottom:926.213333pt;}
.y63_c01310{bottom:926.973333pt;}
.y65_c01310{bottom:927.746667pt;}
.y66_c01310{bottom:933.120000pt;}
.y5e_c01310{bottom:943.106667pt;}
.y5f_c01310{bottom:944.640000pt;}
.y60_c01310{bottom:950.013333pt;}
.y61_c01310{bottom:950.786667pt;}
.y62_c01310{bottom:951.546667pt;}
.y5d_c01310{bottom:957.693333pt;}
.y1f7_c01310{bottom:959.226667pt;}
.y1f9_c01310{bottom:960.000000pt;}
.y1f8_c01310{bottom:960.773333pt;}
.y5a_c01310{bottom:966.146667pt;}
.y5b_c01310{bottom:966.906667pt;}
.y53_c01310{bottom:979.200000pt;}
.y5c_c01310{bottom:979.973333pt;}
.y54_c01310{bottom:980.733333pt;}
.y56_c01310{bottom:981.506667pt;}
.y55_c01310{bottom:985.346667pt;}
.y57_c01310{bottom:987.653333pt;}
.y58_c01310{bottom:991.493333pt;}
.y59_c01310{bottom:995.333333pt;}
.y4f_c01310{bottom:996.866667pt;}
.y50_c01310{bottom:997.626667pt;}
.y52_c01310{bottom:999.173333pt;}
.y51_c01310{bottom:1004.546667pt;}
.y44_c01310{bottom:1015.293333pt;}
.y45_c01310{bottom:1016.066667pt;}
.y48_c01310{bottom:1017.600000pt;}
.y49_c01310{bottom:1018.373333pt;}
.y47_c01310{bottom:1019.133333pt;}
.y4c_c01310{bottom:1021.440000pt;}
.y46_c01310{bottom:1022.213333pt;}
.y4d_c01310{bottom:1022.973333pt;}
.y4e_c01310{bottom:1023.746667pt;}
.y4a_c01310{bottom:1024.506667pt;}
.y4b_c01310{bottom:1032.960000pt;}
.y3f_c01310{bottom:1036.026667pt;}
.y3c_c01310{bottom:1037.573333pt;}
.y42_c01310{bottom:1038.333333pt;}
.y3b_c01310{bottom:1039.106667pt;}
.y3d_c01310{bottom:1039.866667pt;}
.y3e_c01310{bottom:1040.640000pt;}
.y41_c01310{bottom:1041.413333pt;}
.y43_c01310{bottom:1044.480000pt;}
.y40_c01310{bottom:1049.853333pt;}
.y32_c01310{bottom:1051.386667pt;}
.y30_c01310{bottom:1052.933333pt;}
.y33_c01310{bottom:1053.693333pt;}
.y38_c01310{bottom:1054.466667pt;}
.y39_c01310{bottom:1055.226667pt;}
.y31_c01310{bottom:1056.773333pt;}
.y37_c01310{bottom:1058.306667pt;}
.y34_c01310{bottom:1059.066667pt;}
.y3a_c01310{bottom:1060.613333pt;}
.y35_c01310{bottom:1061.373333pt;}
.y36_c01310{bottom:1062.146667pt;}
.y29_c01310{bottom:1069.826667pt;}
.y2c_c01310{bottom:1072.133333pt;}
.y2e_c01310{bottom:1074.426667pt;}
.y2a_c01310{bottom:1075.200000pt;}
.y2f_c01310{bottom:1075.973333pt;}
.y2b_c01310{bottom:1076.733333pt;}
.y2d_c01310{bottom:1079.040000pt;}
.y20_c01310{bottom:1086.720000pt;}
.y22_c01310{bottom:1089.026667pt;}
.y25_c01310{bottom:1089.786667pt;}
.y24_c01310{bottom:1090.560000pt;}
.y21_c01310{bottom:1091.333333pt;}
.y26_c01310{bottom:1092.866667pt;}
.y23_c01310{bottom:1095.173333pt;}
.y27_c01310{bottom:1095.933333pt;}
.y28_c01310{bottom:1097.466667pt;}
.y1f6_c01310{bottom:1100.546667pt;}
.y18_c01310{bottom:1106.693333pt;}
.y19_c01310{bottom:1107.453333pt;}
.y1b_c01310{bottom:1108.986667pt;}
.y1a_c01310{bottom:1112.066667pt;}
.y1c_c01310{bottom:1113.600000pt;}
.y1d_c01310{bottom:1114.373333pt;}
.y1e_c01310{bottom:1115.906667pt;}
.y1f_c01310{bottom:1116.666667pt;}
.y10_c01310{bottom:1123.586667pt;}
.y11_c01310{bottom:1126.653333pt;}
.y14_c01310{bottom:1127.426667pt;}
.y15_c01310{bottom:1128.186667pt;}
.y12_c01310{bottom:1128.960000pt;}
.y17_c01310{bottom:1129.733333pt;}
.y13_c01310{bottom:1130.493333pt;}
.y16_c01310{bottom:1132.800000pt;}
.y9_c01310{bottom:1143.546667pt;}
.yb_c01310{bottom:1144.320000pt;}
.y8_c01310{bottom:1145.853333pt;}
.ya_c01310{bottom:1146.626667pt;}
.ye_c01310{bottom:1147.386667pt;}
.yc_c01310{bottom:1148.933333pt;}
.yd_c01310{bottom:1150.466667pt;}
.yf_c01310{bottom:1152.000000pt;}
.y2_c01310{bottom:1159.680000pt;}
.y3_c01310{bottom:1161.986667pt;}
.y1_c01310{bottom:1162.746667pt;}
.y4_c01310{bottom:1164.293333pt;}
.y6_c01310{bottom:1166.586667pt;}
.y7_c01310{bottom:1167.360000pt;}
.y5_c01310{bottom:1168.133333pt;}
.y1f3_c01310{bottom:1184.253333pt;}
.y1f5_c01310{bottom:1190.400000pt;}
.y1f4_c01310{bottom:1191.173333pt;}
.y1f2_c01310{bottom:1197.306667pt;}
.y1f0_c01310{bottom:1229.573333pt;}
.y1f1_c01310{bottom:1233.413333pt;}
.hc_c01310{height:2.764500pt;}
.h10_c01310{height:4.799479pt;}
.h12_c01310{height:5.519401pt;}
.h1d_c01310{height:5.857833pt;}
.h21_c01310{height:7.892813pt;}
.h11_c01310{height:8.303099pt;}
.h18_c01310{height:11.038802pt;}
.h19_c01310{height:13.822500pt;}
.h14_c01310{height:16.606198pt;}
.h16_c01310{height:19.341901pt;}
.h1c_c01310{height:22.125599pt;}
.h6_c01310{height:24.861302pt;}
.h15_c01310{height:27.645000pt;}
.hb_c01310{height:30.428698pt;}
.h17_c01310{height:33.164401pt;}
.h20_c01310{height:35.948099pt;}
.h13_c01310{height:38.683802pt;}
.hd_c01310{height:41.467500pt;}
.h8_c01310{height:44.251198pt;}
.hf_c01310{height:46.986901pt;}
.h1e_c01310{height:47.344531pt;}
.ha_c01310{height:49.770599pt;}
.h2_c01310{height:52.506302pt;}
.h9_c01310{height:55.290000pt;}
.h5_c01310{height:58.073698pt;}
.h7_c01310{height:60.809401pt;}
.he_c01310{height:63.593099pt;}
.h4_c01310{height:66.328802pt;}
.h3_c01310{height:69.112500pt;}
.h1a_c01310{height:71.896198pt;}
.h23_c01310{height:74.631901pt;}
.h1f_c01310{height:77.415599pt;}
.h22_c01310{height:80.151302pt;}
.h1b_c01310{height:116.099401pt;}
.h1_c01310{height:1345.333333pt;}
.h0_c01310{height:1345.533333pt;}
.w1_c01310{width:956.666667pt;}
.w0_c01310{width:956.933333pt;}
.x0_c01310{left:0.000000pt;}
.xe6_c01310{left:108.293333pt;}
.xe7_c01310{left:120.573333pt;}
.xe8_c01310{left:149.760000pt;}
.xae_c01310{left:165.893333pt;}
.x59_c01310{left:171.266667pt;}
.x8f_c01310{left:175.106667pt;}
.xef_c01310{left:179.706667pt;}
.xc1_c01310{left:181.253333pt;}
.xb4_c01310{left:183.546667pt;}
.x3b_c01310{left:185.093333pt;}
.x68_c01310{left:187.386667pt;}
.x24_c01310{left:189.693333pt;}
.x9_c01310{left:192.000000pt;}
.x2a_c01310{left:193.533333pt;}
.x9b_c01310{left:195.066667pt;}
.xd9_c01310{left:196.613333pt;}
.xe9_c01310{left:205.053333pt;}
.x1_c01310{left:208.133333pt;}
.xaa_c01310{left:211.200000pt;}
.x79_c01310{left:213.506667pt;}
.xde_c01310{left:216.573333pt;}
.x101_c01310{left:220.413333pt;}
.x30_c01310{left:221.946667pt;}
.x104_c01310{left:224.253333pt;}
.xd2_c01310{left:227.333333pt;}
.x6f_c01310{left:228.866667pt;}
.x44_c01310{left:231.933333pt;}
.x3c_c01310{left:233.466667pt;}
.x56_c01310{left:236.546667pt;}
.xab_c01310{left:238.853333pt;}
.xa_c01310{left:241.920000pt;}
.x2_c01310{left:244.986667pt;}
.x16_c01310{left:248.066667pt;}
.x4e_c01310{left:249.600000pt;}
.x85_c01310{left:251.906667pt;}
.x8a_c01310{left:253.440000pt;}
.xc6_c01310{left:258.053333pt;}
.x69_c01310{left:260.346667pt;}
.x1d_c01310{left:261.893333pt;}
.x9f_c01310{left:264.960000pt;}
.xc2_c01310{left:268.026667pt;}
.x82_c01310{left:269.573333pt;}
.x5d_c01310{left:271.106667pt;}
.xb5_c01310{left:272.640000pt;}
.xaf_c01310{left:274.173333pt;}
.x2b_c01310{left:275.706667pt;}
.x57_c01310{left:278.786667pt;}
.x9c_c01310{left:281.853333pt;}
.xb0_c01310{left:283.386667pt;}
.xff_c01310{left:285.693333pt;}
.x45_c01310{left:288.773333pt;}
.xe2_c01310{left:290.306667pt;}
.xb_c01310{left:291.840000pt;}
.x58_c01310{left:294.146667pt;}
.xd3_c01310{left:295.680000pt;}
.xf4_c01310{left:297.213333pt;}
.x4f_c01310{left:300.293333pt;}
.xb1_c01310{left:303.360000pt;}
.xbb_c01310{left:306.426667pt;}
.xc_c01310{left:307.973333pt;}
.xac_c01310{left:309.506667pt;}
.x51_c01310{left:311.040000pt;}
.x31_c01310{left:314.106667pt;}
.xb6_c01310{left:317.186667pt;}
.x52_c01310{left:318.720000pt;}
.xfc_c01310{left:320.253333pt;}
.xc7_c01310{left:321.786667pt;}
.xa6_c01310{left:327.933333pt;}
.x3_c01310{left:330.240000pt;}
.x46_c01310{left:332.546667pt;}
.xea_c01310{left:334.080000pt;}
.x97_c01310{left:335.613333pt;}
.x2c_c01310{left:337.920000pt;}
.x25_c01310{left:339.453333pt;}
.x90_c01310{left:341.760000pt;}
.xbc_c01310{left:344.826667pt;}
.x5e_c01310{left:346.373333pt;}
.x3d_c01310{left:347.906667pt;}
.xe3_c01310{left:349.440000pt;}
.x5a_c01310{left:351.746667pt;}
.xd4_c01310{left:357.120000pt;}
.x70_c01310{left:360.186667pt;}
.x3e_c01310{left:363.266667pt;}
.x47_c01310{left:364.800000pt;}
.xcb_c01310{left:366.333333pt;}
.x32_c01310{left:367.866667pt;}
.xf0_c01310{left:370.173333pt;}
.xd_c01310{left:371.706667pt;}
.x105_c01310{left:373.253333pt;}
.xa7_c01310{left:374.786667pt;}
.x6a_c01310{left:376.320000pt;}
.x7a_c01310{left:377.853333pt;}
.x1e_c01310{left:379.386667pt;}
.x8b_c01310{left:381.693333pt;}
.x50_c01310{left:383.226667pt;}
.x5b_c01310{left:384.773333pt;}
.xa0_c01310{left:387.840000pt;}
.x7b_c01310{left:390.146667pt;}
.x3f_c01310{left:391.680000pt;}
.xc8_c01310{left:393.986667pt;}
.xcc_c01310{left:395.520000pt;}
.x17_c01310{left:398.586667pt;}
.x9d_c01310{left:400.893333pt;}
.xa1_c01310{left:402.426667pt;}
.x26_c01310{left:404.733333pt;}
.x4_c01310{left:406.266667pt;}
.xbd_c01310{left:407.813333pt;}
.x2d_c01310{left:410.106667pt;}
.x48_c01310{left:413.186667pt;}
.x53_c01310{left:414.720000pt;}
.x98_c01310{left:416.253333pt;}
.x1f_c01310{left:418.560000pt;}
.xe_c01310{left:423.173333pt;}
.x83_c01310{left:425.466667pt;}
.x27_c01310{left:427.773333pt;}
.xf5_c01310{left:430.080000pt;}
.xf1_c01310{left:431.613333pt;}
.x40_c01310{left:438.533333pt;}
.x33_c01310{left:440.826667pt;}
.xf_c01310{left:442.373333pt;}
.xbe_c01310{left:445.440000pt;}
.x49_c01310{left:448.506667pt;}
.x7c_c01310{left:450.053333pt;}
.x109_c01310{left:453.120000pt;}
.xe4_c01310{left:456.186667pt;}
.x34_c01310{left:458.493333pt;}
.x102_c01310{left:460.800000pt;}
.x35_c01310{left:466.173333pt;}
.x54_c01310{left:467.706667pt;}
.x5f_c01310{left:470.013333pt;}
.xf9_c01310{left:472.320000pt;}
.xd0_c01310{left:473.853333pt;}
.x41_c01310{left:476.160000pt;}
.xeb_c01310{left:477.693333pt;}
.x10_c01310{left:479.226667pt;}
.x20_c01310{left:481.533333pt;}
.xdf_c01310{left:483.066667pt;}
.x11_c01310{left:484.613333pt;}
.xec_c01310{left:486.146667pt;}
.x36_c01310{left:487.680000pt;}
.xd5_c01310{left:489.986667pt;}
.x37_c01310{left:496.893333pt;}
.xa2_c01310{left:498.426667pt;}
.x10a_c01310{left:499.973333pt;}
.x71_c01310{left:504.573333pt;}
.x4a_c01310{left:506.106667pt;}
.xb7_c01310{left:508.413333pt;}
.xda_c01310{left:509.946667pt;}
.x12_c01310{left:513.786667pt;}
.xcd_c01310{left:516.093333pt;}
.x86_c01310{left:517.626667pt;}
.xf6_c01310{left:521.466667pt;}
.x100_c01310{left:523.013333pt;}
.x99_c01310{left:525.306667pt;}
.x60_c01310{left:529.146667pt;}
.x8c_c01310{left:530.693333pt;}
.x4b_c01310{left:532.226667pt;}
.x42_c01310{left:533.760000pt;}
.x55_c01310{left:537.600000pt;}
.x7d_c01310{left:539.133333pt;}
.x21_c01310{left:541.440000pt;}
.x91_c01310{left:542.973333pt;}
.x61_c01310{left:544.506667pt;}
.xed_c01310{left:546.053333pt;}
.xe0_c01310{left:547.586667pt;}
.x4c_c01310{left:549.120000pt;}
.x5_c01310{left:552.186667pt;}
.x18_c01310{left:554.493333pt;}
.x87_c01310{left:557.573333pt;}
.x103_c01310{left:560.640000pt;}
.x6b_c01310{left:563.706667pt;}
.xad_c01310{left:566.786667pt;}
.x62_c01310{left:568.320000pt;}
.x38_c01310{left:569.853333pt;}
.x2e_c01310{left:571.386667pt;}
.x108_c01310{left:573.693333pt;}
.xa3_c01310{left:575.226667pt;}
.x9e_c01310{left:577.533333pt;}
.xd1_c01310{left:579.066667pt;}
.x4d_c01310{left:581.373333pt;}
.x5c_c01310{left:583.680000pt;}
.xe5_c01310{left:585.213333pt;}
.x6_c01310{left:588.293333pt;}
.x7e_c01310{left:590.586667pt;}
.x72_c01310{left:593.666667pt;}
.xee_c01310{left:595.200000pt;}
.x13_c01310{left:597.506667pt;}
.x7f_c01310{left:599.040000pt;}
.xd6_c01310{left:600.573333pt;}
.x19_c01310{left:602.880000pt;}
.xce_c01310{left:604.413333pt;}
.x7_c01310{left:605.946667pt;}
.xdb_c01310{left:607.493333pt;}
.x92_c01310{left:609.026667pt;}
.xfa_c01310{left:612.093333pt;}
.x1a_c01310{left:613.626667pt;}
.x93_c01310{left:615.933333pt;}
.x43_c01310{left:619.773333pt;}
.x63_c01310{left:622.080000pt;}
.x80_c01310{left:623.613333pt;}
.x73_c01310{left:625.146667pt;}
.xc3_c01310{left:626.693333pt;}
.x6c_c01310{left:628.226667pt;}
.x81_c01310{left:630.533333pt;}
.xc4_c01310{left:634.373333pt;}
.x8d_c01310{left:635.906667pt;}
.x88_c01310{left:640.506667pt;}
.x9a_c01310{left:642.813333pt;}
.x107_c01310{left:644.346667pt;}
.x74_c01310{left:646.653333pt;}
.x14_c01310{left:648.960000pt;}
.x94_c01310{left:650.493333pt;}
.xb8_c01310{left:652.800000pt;}
.x28_c01310{left:655.866667pt;}
.x1b_c01310{left:661.253333pt;}
.xf2_c01310{left:663.546667pt;}
.xc9_c01310{left:665.093333pt;}
.xa8_c01310{left:666.626667pt;}
.x39_c01310{left:668.160000pt;}
.xbf_c01310{left:671.226667pt;}
.xf7_c01310{left:673.533333pt;}
.x89_c01310{left:675.066667pt;}
.x22_c01310{left:676.613333pt;}
.xa4_c01310{left:678.146667pt;}
.xf3_c01310{left:679.680000pt;}
.xc5_c01310{left:681.213333pt;}
.x8_c01310{left:684.293333pt;}
.x64_c01310{left:687.360000pt;}
.xfd_c01310{left:689.666667pt;}
.xc0_c01310{left:691.200000pt;}
.x95_c01310{left:692.733333pt;}
.xfb_c01310{left:695.040000pt;}
.x15_c01310{left:696.573333pt;}
.x65_c01310{left:698.880000pt;}
.xcf_c01310{left:701.946667pt;}
.x29_c01310{left:704.253333pt;}
.xb2_c01310{left:706.560000pt;}
.x75_c01310{left:708.093333pt;}
.xca_c01310{left:709.626667pt;}
.xb9_c01310{left:711.933333pt;}
.x23_c01310{left:713.466667pt;}
.xd7_c01310{left:715.773333pt;}
.x10c_c01310{left:717.306667pt;}
.xa5_c01310{left:718.853333pt;}
.x6d_c01310{left:720.386667pt;}
.x1c_c01310{left:724.226667pt;}
.xe1_c01310{left:725.760000pt;}
.xa9_c01310{left:727.293333pt;}
.x84_c01310{left:728.826667pt;}
.x76_c01310{left:731.133333pt;}
.x106_c01310{left:732.666667pt;}
.xf8_c01310{left:735.746667pt;}
.x3a_c01310{left:737.280000pt;}
.x8e_c01310{left:740.346667pt;}
.x96_c01310{left:744.960000pt;}
.x2f_c01310{left:750.333333pt;}
.xdc_c01310{left:752.640000pt;}
.x6e_c01310{left:757.253333pt;}
.x66_c01310{left:762.626667pt;}
.x77_c01310{left:764.160000pt;}
.xd8_c01310{left:765.693333pt;}
.xfe_c01310{left:776.453333pt;}
.xb3_c01310{left:778.746667pt;}
.x78_c01310{left:789.506667pt;}
.xba_c01310{left:794.106667pt;}
.xdd_c01310{left:797.186667pt;}
.x67_c01310{left:802.560000pt;}
.x10f_c01310{left:804.866667pt;}
.x10e_c01310{left:807.173333pt;}
.x10b_c01310{left:867.066667pt;}
.x10d_c01310{left:923.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01311;src:url('chunks/assets/font_63f19e113cab0d5310a3c5de.woff2')format("woff");}.ff1_c01311{font-family:ff1_c01311;line-height:1.109863;font-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_c01311{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c01311{transform:matrix(0.061075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061075,0.000000,0.000000,0.250000,0,0);}
.m112_c01311{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01311{transform:matrix(0.077150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077150,0.000000,0.000000,0.250000,0,0);}
.m162_c01311{transform:matrix(0.080025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080025,0.000000,0.000000,0.250000,0,0);}
.m17d_c01311{transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);}
.m173_c01311{transform:matrix(0.087000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087000,0.000000,0.000000,0.250000,0,0);}
.m184_c01311{transform:matrix(0.097400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097400,0.000000,0.000000,0.250000,0,0);}
.m116_c01311{transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);}
.m165_c01311{transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);}
.m12e_c01311{transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105425,0.000000,0.000000,0.250000,0,0);}
.meb_c01311{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m2_c01311{transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);}
.m71_c01311{transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110750,0.000000,0.000000,0.250000,0,0);}
.m6f_c01311{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m1d_c01311{transform:matrix(0.112700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112700,0.000000,0.000000,0.250000,0,0);}
.m14a_c01311{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m133_c01311{transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);}
.m107_c01311{transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01311{transform:matrix(0.114125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114125,0.000000,0.000000,0.250000,0,0);}
.m136_c01311{transform:matrix(0.115200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115200,0.000000,0.000000,0.250000,0,0);}
.m80_c01311{transform:matrix(0.116150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116150,0.000000,0.000000,0.250000,0,0);}
.m13d_c01311{transform:matrix(0.117075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117075,0.000000,0.000000,0.250000,0,0);}
.m101_c01311{transform:matrix(0.117225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117225,0.000000,0.000000,0.250000,0,0);}
.m36_c01311{transform:matrix(0.117725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117725,0.000000,0.000000,0.250000,0,0);}
.m12a_c01311{transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);}
.m13b_c01311{transform:matrix(0.118600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118600,0.000000,0.000000,0.250000,0,0);}
.m190_c01311{transform:matrix(0.118625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118625,0.000000,0.000000,0.250000,0,0);}
.m130_c01311{transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119575,0.000000,0.000000,0.250000,0,0);}
.m17e_c01311{transform:matrix(0.119700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119700,0.000000,0.000000,0.250000,0,0);}
.m155_c01311{transform:matrix(0.121800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121800,0.000000,0.000000,0.250000,0,0);}
.m182_c01311{transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123325,0.000000,0.000000,0.250000,0,0);}
.m125_c01311{transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);}
.m156_c01311{transform:matrix(0.124425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124425,0.000000,0.000000,0.250000,0,0);}
.m191_c01311{transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);}
.m16_c01311{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m14d_c01311{transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);}
.m183_c01311{transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);}
.mf1_c01311{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m170_c01311{transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);}
.m55_c01311{transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);}
.mf5_c01311{transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);}
.m7e_c01311{transform:matrix(0.131400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131400,0.000000,0.000000,0.250000,0,0);}
.m157_c01311{transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132250,0.000000,0.000000,0.250000,0,0);}
.mfc_c01311{transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);}
.mba_c01311{transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);}
.mb8_c01311{transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);}
.mca_c01311{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.m10f_c01311{transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);}
.m131_c01311{transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);}
.m14f_c01311{transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135475,0.000000,0.000000,0.250000,0,0);}
.m177_c01311{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.m186_c01311{transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136750,0.000000,0.000000,0.250000,0,0);}
.m168_c01311{transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);}
.m52_c01311{transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);}
.m106_c01311{transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01311{transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143000,0.000000,0.000000,0.250000,0,0);}
.m18d_c01311{transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);}
.ma4_c01311{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.m9_c01311{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m193_c01311{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.m3d_c01311{transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);}
.m180_c01311{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.m188_c01311{transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);}
.m10_c01311{transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);}
.m87_c01311{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);}
.m12f_c01311{transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);}
.m159_c01311{transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146475,0.000000,0.000000,0.250000,0,0);}
.mc0_c01311{transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);}
.m175_c01311{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.mf3_c01311{transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);}
.m181_c01311{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.m5c_c01311{transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);}
.ma6_c01311{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);}
.m0_c01311{transform:matrix(0.150350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150350,0.000000,0.000000,0.250000,0,0);}
.m20_c01311{transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);}
.m18a_c01311{transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);}
.mb_c01311{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);}
.m178_c01311{transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);}
.md7_c01311{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.m7b_c01311{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.m79_c01311{transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01311{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m74_c01311{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.m18f_c01311{transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);}
.md0_c01311{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);}
.m4b_c01311{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.m89_c01311{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);}
.mb0_c01311{transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156075,0.000000,0.000000,0.250000,0,0);}
.ma3_c01311{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m8f_c01311{transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);}
.mfe_c01311{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.m174_c01311{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m128_c01311{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m49_c01311{transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157775,0.000000,0.000000,0.250000,0,0);}
.m164_c01311{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.m199_c01311{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m39_c01311{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);}
.m22_c01311{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);}
.m15a_c01311{transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);}
.m45_c01311{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);}
.m23_c01311{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m13e_c01311{transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);}
.m14b_c01311{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.ma5_c01311{transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162475,0.000000,0.000000,0.250000,0,0);}
.mf_c01311{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01311{transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162825,0.000000,0.000000,0.250000,0,0);}
.m154_c01311{transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);}
.m160_c01311{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.mbd_c01311{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m149_c01311{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.m113_c01311{transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);}
.m197_c01311{transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167525,0.000000,0.000000,0.250000,0,0);}
.m10a_c01311{transform:matrix(0.167825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167825,0.000000,0.000000,0.250000,0,0);}
.md8_c01311{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m51_c01311{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m15_c01311{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.mb4_c01311{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);}
.mb6_c01311{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.m195_c01311{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m3f_c01311{transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01311{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);}
.m1a1_c01311{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);}
.m1ab_c01311{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01311{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);}
.m4f_c01311{transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);}
.ma7_c01311{transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);}
.mcd_c01311{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);}
.m1a3_c01311{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);}
.mfa_c01311{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.mbe_c01311{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.mc_c01311{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.m144_c01311{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);}
.m146_c01311{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m1b_c01311{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);}
.m15f_c01311{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.mbb_c01311{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);}
.mda_c01311{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);}
.m6d_c01311{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m143_c01311{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.m85_c01311{transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);}
.m16e_c01311{transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);}
.m122_c01311{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m13a_c01311{transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177700,0.000000,0.000000,0.250000,0,0);}
.md1_c01311{transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);}
.m109_c01311{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);}
.m13c_c01311{transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180325,0.000000,0.000000,0.250000,0,0);}
.m4a_c01311{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.mfd_c01311{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m14c_c01311{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);}
.mc7_c01311{transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182175,0.000000,0.000000,0.250000,0,0);}
.m69_c01311{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.m15b_c01311{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.m18c_c01311{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.mc4_c01311{transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183575,0.000000,0.000000,0.250000,0,0);}
.m15e_c01311{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m8c_c01311{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);}
.m1a_c01311{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);}
.md5_c01311{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);}
.mcf_c01311{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.mec_c01311{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.m54_c01311{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);}
.m1a0_c01311{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.mb5_c01311{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);}
.m5e_c01311{transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);}
.m148_c01311{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);}
.m18_c01311{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);}
.m32_c01311{transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190725,0.000000,0.000000,0.250000,0,0);}
.m7c_c01311{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);}
.m163_c01311{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);}
.m194_c01311{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.mac_c01311{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);}
.m167_c01311{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m19b_c01311{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m16a_c01311{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);}
.m3b_c01311{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.m3e_c01311{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.mc5_c01311{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);}
.m73_c01311{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);}
.mb9_c01311{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);}
.m70_c01311{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m120_c01311{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);}
.mbc_c01311{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);}
.m47_c01311{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);}
.m92_c01311{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);}
.m98_c01311{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);}
.m46_c01311{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);}
.m83_c01311{transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);}
.m110_c01311{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.mff_c01311{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);}
.m111_c01311{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.m129_c01311{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m166_c01311{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);}
.mb3_c01311{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);}
.m1a5_c01311{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);}
.ma0_c01311{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m16c_c01311{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);}
.md4_c01311{transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198950,0.000000,0.000000,0.250000,0,0);}
.m9f_c01311{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);}
.m105_c01311{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01311{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01311{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);}
.m7d_c01311{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.mb7_c01311{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m137_c01311{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.m25_c01311{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);}
.m6e_c01311{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);}
.m127_c01311{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m35_c01311{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.m15d_c01311{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m158_c01311{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m61_c01311{transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);}
.m102_c01311{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);}
.mb2_c01311{transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);}
.m18b_c01311{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);}
.m10e_c01311{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01311{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m161_c01311{transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);}
.m19f_c01311{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.m12d_c01311{transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);}
.md6_c01311{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m67_c01311{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m151_c01311{transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208825,0.000000,0.000000,0.250000,0,0);}
.m17_c01311{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m8a_c01311{transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);}
.ma2_c01311{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m44_c01311{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);}
.m2c_c01311{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);}
.m17f_c01311{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m108_c01311{transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);}
.m192_c01311{transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);}
.m17a_c01311{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.mdc_c01311{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);}
.m28_c01311{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);}
.m9c_c01311{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);}
.md3_c01311{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);}
.mcb_c01311{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);}
.m114_c01311{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.mee_c01311{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);}
.m37_c01311{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);}
.m9b_c01311{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.m76_c01311{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);}
.m16d_c01311{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);}
.m48_c01311{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);}
.m19e_c01311{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m59_c01311{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m150_c01311{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.ma9_c01311{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);}
.m62_c01311{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);}
.m21_c01311{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m10c_c01311{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m19c_c01311{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);}
.m91_c01311{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m12b_c01311{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.m1c_c01311{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.mfb_c01311{transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);}
.mdf_c01311{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);}
.m4d_c01311{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);}
.m132_c01311{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);}
.m99_c01311{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);}
.m97_c01311{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);}
.m16f_c01311{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);}
.mcc_c01311{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.m34_c01311{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.m57_c01311{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);}
.m179_c01311{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);}
.m68_c01311{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);}
.m126_c01311{transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);}
.m8d_c01311{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m19a_c01311{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m2f_c01311{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);}
.m17b_c01311{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);}
.me9_c01311{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);}
.md_c01311{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.maa_c01311{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m86_c01311{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m145_c01311{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01311{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m96_c01311{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);}
.m147_c01311{transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230225,0.000000,0.000000,0.250000,0,0);}
.m9a_c01311{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.mf0_c01311{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);}
.m196_c01311{transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);}
.m90_c01311{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);}
.m169_c01311{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m185_c01311{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);}
.m84_c01311{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);}
.mc9_c01311{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m93_c01311{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);}
.m7a_c01311{transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);}
.me0_c01311{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);}
.m6b_c01311{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.mce_c01311{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);}
.ma1_c01311{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);}
.m140_c01311{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);}
.m27_c01311{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);}
.m11d_c01311{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m10d_c01311{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);}
.m16b_c01311{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m198_c01311{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);}
.mde_c01311{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);}
.ma8_c01311{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);}
.m9d_c01311{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);}
.mab_c01311{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);}
.m8b_c01311{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);}
.m1_c01311{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.m138_c01311{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);}
.m12c_c01311{transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);}
.med_c01311{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);}
.mf9_c01311{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.m14e_c01311{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);}
.me1_c01311{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);}
.m38_c01311{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.m187_c01311{transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243325,0.000000,0.000000,0.250000,0,0);}
.md2_c01311{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m2e_c01311{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);}
.m142_c01311{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);}
.m29_c01311{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);}
.m95_c01311{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);}
.m103_c01311{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);}
.m1e_c01311{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m5b_c01311{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);}
.m15c_c01311{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);}
.m19_c01311{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_c01311{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m66_c01311{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);}
.m88_c01311{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);}
.m4c_c01311{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);}
.m33_c01311{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);}
.m53_c01311{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m13_c01311{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01311{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c01311{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);}
.m6_c01311{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.md9_c01311{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);}
.m2a_c01311{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);}
.m5_c01311{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m19d_c01311{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);}
.m4_c01311{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m26_c01311{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01311{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);}
.m94_c01311{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m81_c01311{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);}
.m14_c01311{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);}
.m60_c01311{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c01311{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m58_c01311{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);}
.m75_c01311{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m31_c01311{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m50_c01311{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);}
.m6c_c01311{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m7_c01311{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mae_c01311{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01311{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m141_c01311{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01311{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me4_c01311{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m64_c01311{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);}
.m65_c01311{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1af_c01311{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c01311{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m24_c01311{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mc2_c01311{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);}
.m7f_c01311{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);}
.m2d_c01311{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m78_c01311{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mc6_c01311{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);}
.m124_c01311{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m18e_c01311{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01311{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);}
.mc8_c01311{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m63_c01311{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);}
.m82_c01311{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m119_c01311{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m104_c01311{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);}
.m135_c01311{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.maf_c01311{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m72_c01311{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01311{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01311{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m176_c01311{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);}
.m189_c01311{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mef_c01311{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01311{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);}
.mea_c01311{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m40_c01311{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me5_c01311{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m153_c01311{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m139_c01311{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01311{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01311{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m10b_c01311{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);}
.m1a9_c01311{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m152_c01311{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m123_c01311{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01311{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.me6_c01311{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m121_c01311{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mdb_c01311{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mc1_c01311{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01311{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m134_c01311{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m56_c01311{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);}
.m118_c01311{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m42_c01311{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01311{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);}
.m43_c01311{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01311{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);}
.m77_c01311{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01311{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m171_c01311{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m100_c01311{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mf7_c01311{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m115_c01311{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.me_c01311{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.me2_c01311{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.me3_c01311{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m13f_c01311{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.mf6_c01311{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.mdd_c01311{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m11f_c01311{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.mf4_c01311{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m172_c01311{transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.825000,0.000000,0.000000,0.250000,0,0);}
.m117_c01311{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m11b_c01311{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m11a_c01311{transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.892500,0.000000,0.000000,0.250000,0,0);}
.mf2_c01311{transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);}
.m17c_c01311{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01311{transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);}
.me7_c01311{transform:matrix(1.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.270000,0.000000,0.000000,0.250000,0,0);}
.m11e_c01311{transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);}
.m41_c01311{transform:matrix(1.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.452500,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01311{transform:matrix(1.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.670000,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01311{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.me8_c01311{transform:matrix(2.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.167500,0.000000,0.000000,0.250000,0,0);}
.mc3_c01311{transform:matrix(2.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.380000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01311{transform:matrix(2.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.410000,0.000000,0.000000,0.250000,0,0);}
.mad_c01311{transform:matrix(7.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.047500,0.000000,0.000000,0.250000,0,0);}
.v3_c01311{vertical-align:-13.860000px;}
.v1_c01311{vertical-align:-3.480000px;}
.v0_c01311{vertical-align:0.000000px;}
.v2_c01311{vertical-align:3.480000px;}
.ls3_c01311{letter-spacing:0.000000px;}
.ls0_c01311{letter-spacing:35.084355px;}
.ls2_c01311{letter-spacing:52.878576px;}
.ls1_c01311{letter-spacing:100.828319px;}
.sc__c01311{text-shadow:none;}
.sc0_c01311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01311{-webkit-text-stroke:0px transparent;}
.sc0_c01311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01311{word-spacing:-18.419280px;}
.ws2_c01311{word-spacing:0.000000px;}
.ws1_c01311{word-spacing:2.162700px;}
.fc0_c01311{color:transparent;}
.fs8_c01311{font-size:3.456000px;}
.fs4_c01311{font-size:6.000000px;}
.fs14_c01311{font-size:6.900000px;}
.fs12_c01311{font-size:10.380000px;}
.fs1b_c01311{font-size:13.800000px;}
.fs15_c01311{font-size:17.280000px;}
.fsa_c01311{font-size:20.760000px;}
.fs16_c01311{font-size:24.180000px;}
.fs1e_c01311{font-size:27.660000px;}
.fs21_c01311{font-size:31.080000px;}
.fs11_c01311{font-size:34.560000px;}
.fs17_c01311{font-size:38.040000px;}
.fs22_c01311{font-size:41.460000px;}
.fse_c01311{font-size:44.940000px;}
.fs18_c01311{font-size:48.360000px;}
.fs3_c01311{font-size:51.840000px;}
.fs5_c01311{font-size:55.320000px;}
.fs6_c01311{font-size:58.740000px;}
.fs7_c01311{font-size:62.220000px;}
.fsb_c01311{font-size:65.640000px;}
.fsc_c01311{font-size:69.120000px;}
.fs9_c01311{font-size:72.600000px;}
.fs1_c01311{font-size:76.020000px;}
.fs10_c01311{font-size:79.500000px;}
.fsf_c01311{font-size:82.920000px;}
.fsd_c01311{font-size:86.400000px;}
.fs0_c01311{font-size:89.880000px;}
.fs13_c01311{font-size:93.300000px;}
.fs19_c01311{font-size:96.780000px;}
.fs1a_c01311{font-size:100.200000px;}
.fs25_c01311{font-size:103.680000px;}
.fs1c_c01311{font-size:107.160000px;}
.fs2_c01311{font-size:114.060000px;}
.fs20_c01311{font-size:117.480000px;}
.fs1d_c01311{font-size:134.760000px;}
.fs23_c01311{font-size:148.620000px;}
.fs24_c01311{font-size:155.520000px;}
.fs1f_c01311{font-size:159.000000px;}
.fs26_c01311{font-size:172.800000px;}
.y0_c01311{bottom:0.000000px;}
.y1ac_c01311{bottom:183.165000px;}
.y1a9_c01311{bottom:184.890000px;}
.y1a2_c01311{bottom:186.630000px;}
.y1ab_c01311{bottom:189.210000px;}
.y1a8_c01311{bottom:190.080000px;}
.y1a5_c01311{bottom:192.675000px;}
.y1a3_c01311{bottom:193.530000px;}
.y1a4_c01311{bottom:194.400000px;}
.y1a6_c01311{bottom:195.270000px;}
.y1a7_c01311{bottom:196.125000px;}
.y1ad_c01311{bottom:201.315000px;}
.y1aa_c01311{bottom:204.765000px;}
.y19f_c01311{bottom:209.085000px;}
.y1a1_c01311{bottom:209.955000px;}
.y19d_c01311{bottom:211.680000px;}
.y19c_c01311{bottom:213.405000px;}
.y19b_c01311{bottom:214.275000px;}
.y1a0_c01311{bottom:215.130000px;}
.y19e_c01311{bottom:217.725000px;}
.y19a_c01311{bottom:228.090000px;}
.y199_c01311{bottom:228.960000px;}
.y197_c01311{bottom:229.830000px;}
.y198_c01311{bottom:230.685000px;}
.y195_c01311{bottom:231.555000px;}
.y193_c01311{bottom:234.150000px;}
.y196_c01311{bottom:235.005000px;}
.y194_c01311{bottom:235.875000px;}
.y18f_c01311{bottom:247.110000px;}
.y18d_c01311{bottom:248.835000px;}
.y18a_c01311{bottom:249.690000px;}
.y18b_c01311{bottom:252.285000px;}
.y18c_c01311{bottom:253.155000px;}
.y191_c01311{bottom:254.010000px;}
.y190_c01311{bottom:254.880000px;}
.y18e_c01311{bottom:257.475000px;}
.y192_c01311{bottom:267.840000px;}
.y187_c01311{bottom:270.435000px;}
.y188_c01311{bottom:271.290000px;}
.y186_c01311{bottom:273.030000px;}
.y184_c01311{bottom:274.755000px;}
.y189_c01311{bottom:275.610000px;}
.y185_c01311{bottom:278.205000px;}
.y181_c01311{bottom:282.525000px;}
.y17f_c01311{bottom:283.395000px;}
.y180_c01311{bottom:285.120000px;}
.y17a_c01311{bottom:285.990000px;}
.y179_c01311{bottom:286.845000px;}
.y17c_c01311{bottom:287.715000px;}
.y178_c01311{bottom:288.570000px;}
.y17d_c01311{bottom:289.440000px;}
.y17e_c01311{bottom:290.310000px;}
.y17b_c01311{bottom:295.485000px;}
.y183_c01311{bottom:296.355000px;}
.y182_c01311{bottom:300.675000px;}
.y174_c01311{bottom:310.170000px;}
.y175_c01311{bottom:311.910000px;}
.y172_c01311{bottom:312.765000px;}
.y176_c01311{bottom:315.360000px;}
.y173_c01311{bottom:317.085000px;}
.y177_c01311{bottom:321.405000px;}
.y16f_c01311{bottom:327.450000px;}
.y171_c01311{bottom:328.320000px;}
.y16e_c01311{bottom:330.915000px;}
.y170_c01311{bottom:336.090000px;}
.y16d_c01311{bottom:350.790000px;}
.y167_c01311{bottom:351.645000px;}
.y16b_c01311{bottom:352.515000px;}
.y169_c01311{bottom:353.370000px;}
.y16c_c01311{bottom:354.240000px;}
.y166_c01311{bottom:355.965000px;}
.y168_c01311{bottom:356.835000px;}
.y16a_c01311{bottom:358.560000px;}
.y163_c01311{bottom:369.795000px;}
.y15e_c01311{bottom:370.650000px;}
.y160_c01311{bottom:371.520000px;}
.y164_c01311{bottom:372.390000px;}
.y161_c01311{bottom:373.245000px;}
.y15f_c01311{bottom:379.290000px;}
.y162_c01311{bottom:384.480000px;}
.y165_c01311{bottom:387.930000px;}
.y15d_c01311{bottom:388.800000px;}
.y15c_c01311{bottom:389.670000px;}
.y158_c01311{bottom:391.395000px;}
.y15a_c01311{bottom:394.845000px;}
.y157_c01311{bottom:396.570000px;}
.y159_c01311{bottom:398.310000px;}
.y15b_c01311{bottom:406.950000px;}
.y153_c01311{bottom:408.675000px;}
.y152_c01311{bottom:409.530000px;}
.y151_c01311{bottom:410.400000px;}
.y156_c01311{bottom:411.270000px;}
.y150_c01311{bottom:412.995000px;}
.y154_c01311{bottom:414.720000px;}
.y155_c01311{bottom:415.590000px;}
.y14f_c01311{bottom:417.315000px;}
.y14e_c01311{bottom:420.765000px;}
.y14a_c01311{bottom:430.275000px;}
.y148_c01311{bottom:431.130000px;}
.y149_c01311{bottom:432.000000px;}
.y14b_c01311{bottom:432.870000px;}
.y14c_c01311{bottom:434.595000px;}
.y14d_c01311{bottom:435.450000px;}
.y147_c01311{bottom:436.320000px;}
.y146_c01311{bottom:450.150000px;}
.y145_c01311{bottom:451.005000px;}
.y142_c01311{bottom:451.875000px;}
.y140_c01311{bottom:452.730000px;}
.y141_c01311{bottom:454.470000px;}
.y144_c01311{bottom:456.195000px;}
.y13f_c01311{bottom:458.790000px;}
.y143_c01311{bottom:468.285000px;}
.y13d_c01311{bottom:470.880000px;}
.y13b_c01311{bottom:471.750000px;}
.y136_c01311{bottom:473.475000px;}
.y138_c01311{bottom:474.330000px;}
.y137_c01311{bottom:475.200000px;}
.y13c_c01311{bottom:476.070000px;}
.y13a_c01311{bottom:476.925000px;}
.y135_c01311{bottom:478.650000px;}
.y139_c01311{bottom:480.390000px;}
.y13e_c01311{bottom:482.970000px;}
.y132_c01311{bottom:484.710000px;}
.y133_c01311{bottom:485.565000px;}
.y134_c01311{bottom:501.120000px;}
.y12f_c01311{bottom:512.355000px;}
.y130_c01311{bottom:513.210000px;}
.y12c_c01311{bottom:514.080000px;}
.y12e_c01311{bottom:514.950000px;}
.y131_c01311{bottom:516.675000px;}
.y12d_c01311{bottom:519.270000px;}
.y12a_c01311{bottom:532.230000px;}
.y125_c01311{bottom:533.085000px;}
.y129_c01311{bottom:533.955000px;}
.y124_c01311{bottom:534.810000px;}
.y117_c01311{bottom:535.680000px;}
.y127_c01311{bottom:536.550000px;}
.y11f_c01311{bottom:537.405000px;}
.y128_c01311{bottom:538.275000px;}
.y122_c01311{bottom:539.130000px;}
.y123_c01311{bottom:540.000000px;}
.y126_c01311{bottom:541.725000px;}
.y12b_c01311{bottom:544.320000px;}
.y121_c01311{bottom:545.190000px;}
.y118_c01311{bottom:546.045000px;}
.y11c_c01311{bottom:546.915000px;}
.y11b_c01311{bottom:547.770000px;}
.y11d_c01311{bottom:548.640000px;}
.y11a_c01311{bottom:549.510000px;}
.y119_c01311{bottom:550.365000px;}
.y120_c01311{bottom:551.235000px;}
.y11e_c01311{bottom:552.090000px;}
.y113_c01311{bottom:552.960000px;}
.y10f_c01311{bottom:553.830000px;}
.y112_c01311{bottom:554.685000px;}
.y110_c01311{bottom:556.410000px;}
.y111_c01311{bottom:558.150000px;}
.y10e_c01311{bottom:559.005000px;}
.y10d_c01311{bottom:559.875000px;}
.y116_c01311{bottom:561.600000px;}
.y114_c01311{bottom:564.195000px;}
.y115_c01311{bottom:569.370000px;}
.y10b_c01311{bottom:571.965000px;}
.y108_c01311{bottom:573.690000px;}
.y106_c01311{bottom:574.560000px;}
.y107_c01311{bottom:575.430000px;}
.y102_c01311{bottom:576.285000px;}
.y10a_c01311{bottom:578.010000px;}
.y109_c01311{bottom:579.750000px;}
.y10c_c01311{bottom:584.925000px;}
.y105_c01311{bottom:592.710000px;}
.y101_c01311{bottom:593.565000px;}
.yfd_c01311{bottom:595.290000px;}
.y100_c01311{bottom:596.160000px;}
.y103_c01311{bottom:597.030000px;}
.y104_c01311{bottom:597.885000px;}
.yfc_c01311{bottom:598.755000px;}
.yfe_c01311{bottom:599.610000px;}
.yff_c01311{bottom:600.480000px;}
.yf9_c01311{bottom:607.395000px;}
.yf7_c01311{bottom:608.250000px;}
.yf8_c01311{bottom:609.120000px;}
.yf4_c01311{bottom:610.845000px;}
.yf6_c01311{bottom:611.715000px;}
.yf5_c01311{bottom:612.570000px;}
.yee_c01311{bottom:614.310000px;}
.yf2_c01311{bottom:615.165000px;}
.yf1_c01311{bottom:616.035000px;}
.yf3_c01311{bottom:618.630000px;}
.yf0_c01311{bottom:620.355000px;}
.yef_c01311{bottom:621.210000px;}
.yfb_c01311{bottom:622.080000px;}
.yfa_c01311{bottom:623.805000px;}
.ye8_c01311{bottom:635.040000px;}
.ye9_c01311{bottom:636.765000px;}
.ye5_c01311{bottom:637.635000px;}
.ye7_c01311{bottom:638.490000px;}
.yeb_c01311{bottom:639.360000px;}
.yea_c01311{bottom:640.230000px;}
.ye6_c01311{bottom:641.085000px;}
.yed_c01311{bottom:642.810000px;}
.yec_c01311{bottom:646.275000px;}
.yde_c01311{bottom:656.640000px;}
.ye1_c01311{bottom:657.510000px;}
.ydd_c01311{bottom:659.235000px;}
.ydf_c01311{bottom:660.090000px;}
.ye0_c01311{bottom:660.960000px;}
.ye4_c01311{bottom:661.830000px;}
.ye3_c01311{bottom:667.005000px;}
.ye2_c01311{bottom:667.875000px;}
.ydc_c01311{bottom:670.470000px;}
.ydb_c01311{bottom:672.195000px;}
.yd6_c01311{bottom:673.920000px;}
.yd8_c01311{bottom:674.790000px;}
.yd9_c01311{bottom:679.965000px;}
.yd7_c01311{bottom:680.835000px;}
.yda_c01311{bottom:687.750000px;}
.yd2_c01311{bottom:696.390000px;}
.yd0_c01311{bottom:697.245000px;}
.yd1_c01311{bottom:699.840000px;}
.yd3_c01311{bottom:700.710000px;}
.yd5_c01311{bottom:711.075000px;}
.yd4_c01311{bottom:711.930000px;}
.ycb_c01311{bottom:714.525000px;}
.ycc_c01311{bottom:715.395000px;}
.yca_c01311{bottom:717.120000px;}
.ycd_c01311{bottom:717.990000px;}
.yce_c01311{bottom:718.845000px;}
.yc9_c01311{bottom:721.440000px;}
.ycf_c01311{bottom:724.035000px;}
.yc8_c01311{bottom:731.805000px;}
.yc7_c01311{bottom:733.530000px;}
.yc5_c01311{bottom:735.270000px;}
.yc3_c01311{bottom:736.125000px;}
.yc4_c01311{bottom:737.850000px;}
.ybe_c01311{bottom:738.720000px;}
.yc6_c01311{bottom:753.405000px;}
.yb9_c01311{bottom:755.130000px;}
.yc2_c01311{bottom:756.000000px;}
.yba_c01311{bottom:756.870000px;}
.ybf_c01311{bottom:757.725000px;}
.yc0_c01311{bottom:759.450000px;}
.yc1_c01311{bottom:760.320000px;}
.ybc_c01311{bottom:761.190000px;}
.ybb_c01311{bottom:762.045000px;}
.ybd_c01311{bottom:762.915000px;}
.yb8_c01311{bottom:775.005000px;}
.yb5_c01311{bottom:775.875000px;}
.yb2_c01311{bottom:776.730000px;}
.yb3_c01311{bottom:779.325000px;}
.yb6_c01311{bottom:781.050000px;}
.yb4_c01311{bottom:781.920000px;}
.yb7_c01311{bottom:792.285000px;}
.yb0_c01311{bottom:794.880000px;}
.yac_c01311{bottom:795.750000px;}
.yb1_c01311{bottom:796.605000px;}
.yae_c01311{bottom:797.475000px;}
.yaa_c01311{bottom:799.200000px;}
.yad_c01311{bottom:800.070000px;}
.yaf_c01311{bottom:800.925000px;}
.yab_c01311{bottom:805.245000px;}
.ya5_c01311{bottom:816.480000px;}
.ya7_c01311{bottom:817.350000px;}
.ya9_c01311{bottom:818.205000px;}
.y1c2_c01311{bottom:819.930000px;}
.ya6_c01311{bottom:820.800000px;}
.ya8_c01311{bottom:821.670000px;}
.ya3_c01311{bottom:837.210000px;}
.ya1_c01311{bottom:838.950000px;}
.ya2_c01311{bottom:840.675000px;}
.ya4_c01311{bottom:841.530000px;}
.y1c0_c01311{bottom:851.910000px;}
.y1c1_c01311{bottom:853.635000px;}
.y9e_c01311{bottom:860.550000px;}
.y9f_c01311{bottom:862.275000px;}
.ya0_c01311{bottom:864.000000px;}
.y9c_c01311{bottom:872.640000px;}
.y99_c01311{bottom:875.235000px;}
.y9b_c01311{bottom:876.090000px;}
.y98_c01311{bottom:877.830000px;}
.y9a_c01311{bottom:878.685000px;}
.y97_c01311{bottom:881.280000px;}
.y9d_c01311{bottom:890.790000px;}
.y96_c01311{bottom:893.370000px;}
.y95_c01311{bottom:894.240000px;}
.y94_c01311{bottom:896.835000px;}
.y93_c01311{bottom:897.690000px;}
.y91_c01311{bottom:898.560000px;}
.y92_c01311{bottom:899.430000px;}
.y90_c01311{bottom:914.970000px;}
.y8a_c01311{bottom:915.840000px;}
.y87_c01311{bottom:916.710000px;}
.y88_c01311{bottom:917.565000px;}
.y8b_c01311{bottom:920.160000px;}
.y8d_c01311{bottom:923.610000px;}
.y8c_c01311{bottom:925.350000px;}
.y89_c01311{bottom:926.205000px;}
.y8e_c01311{bottom:927.075000px;}
.y8f_c01311{bottom:927.930000px;}
.y80_c01311{bottom:936.570000px;}
.y85_c01311{bottom:937.440000px;}
.y82_c01311{bottom:938.310000px;}
.y86_c01311{bottom:940.035000px;}
.y84_c01311{bottom:940.890000px;}
.y83_c01311{bottom:941.760000px;}
.y81_c01311{bottom:942.630000px;}
.y7f_c01311{bottom:955.590000px;}
.y7b_c01311{bottom:956.445000px;}
.y7c_c01311{bottom:957.315000px;}
.y7a_c01311{bottom:959.040000px;}
.y7e_c01311{bottom:961.635000px;}
.y7d_c01311{bottom:962.490000px;}
.y79_c01311{bottom:975.450000px;}
.y76_c01311{bottom:976.320000px;}
.y77_c01311{bottom:977.190000px;}
.y75_c01311{bottom:978.045000px;}
.y78_c01311{bottom:979.770000px;}
.y6f_c01311{bottom:996.195000px;}
.y72_c01311{bottom:997.920000px;}
.y73_c01311{bottom:998.790000px;}
.y70_c01311{bottom:1000.515000px;}
.y74_c01311{bottom:1001.370000px;}
.y71_c01311{bottom:1002.240000px;}
.y6c_c01311{bottom:1016.070000px;}
.y6a_c01311{bottom:1016.925000px;}
.y6b_c01311{bottom:1018.650000px;}
.y6e_c01311{bottom:1020.390000px;}
.y6d_c01311{bottom:1021.245000px;}
.y69_c01311{bottom:1039.395000px;}
.y59_c01311{bottom:1041.120000px;}
.y66_c01311{bottom:1041.990000px;}
.y68_c01311{bottom:1042.845000px;}
.y65_c01311{bottom:1048.035000px;}
.y67_c01311{bottom:1048.890000px;}
.y61_c01311{bottom:1050.630000px;}
.y60_c01311{bottom:1052.355000px;}
.y1c4_c01311{bottom:1053.210000px;}
.y64_c01311{bottom:1055.805000px;}
.y63_c01311{bottom:1056.675000px;}
.y5f_c01311{bottom:1057.530000px;}
.y5d_c01311{bottom:1058.400000px;}
.y62_c01311{bottom:1059.270000px;}
.y5e_c01311{bottom:1060.125000px;}
.y5c_c01311{bottom:1061.850000px;}
.y5b_c01311{bottom:1062.720000px;}
.y58_c01311{bottom:1065.315000px;}
.y5a_c01311{bottom:1075.680000px;}
.y53_c01311{bottom:1076.550000px;}
.y56_c01311{bottom:1079.130000px;}
.y54_c01311{bottom:1082.595000px;}
.y52_c01311{bottom:1083.450000px;}
.y55_c01311{bottom:1084.320000px;}
.y4b_c01311{bottom:1092.960000px;}
.y57_c01311{bottom:1095.555000px;}
.y51_c01311{bottom:1097.280000px;}
.y4f_c01311{bottom:1098.150000px;}
.y4e_c01311{bottom:1099.005000px;}
.y1c3_c01311{bottom:1099.875000px;}
.y4a_c01311{bottom:1101.600000px;}
.y4d_c01311{bottom:1102.470000px;}
.y50_c01311{bottom:1103.325000px;}
.y4c_c01311{bottom:1110.240000px;}
.y44_c01311{bottom:1111.110000px;}
.y48_c01311{bottom:1118.010000px;}
.y46_c01311{bottom:1119.750000px;}
.y49_c01311{bottom:1122.330000px;}
.y47_c01311{bottom:1124.070000px;}
.y45_c01311{bottom:1128.390000px;}
.y43_c01311{bottom:1130.970000px;}
.y3f_c01311{bottom:1138.755000px;}
.y42_c01311{bottom:1142.205000px;}
.y41_c01311{bottom:1143.075000px;}
.y40_c01311{bottom:1143.930000px;}
.y1bf_c01311{bottom:1149.120000px;}
.y3e_c01311{bottom:1157.760000px;}
.y38_c01311{bottom:1158.630000px;}
.y3d_c01311{bottom:1159.485000px;}
.y3a_c01311{bottom:1160.355000px;}
.y3c_c01311{bottom:1162.950000px;}
.y39_c01311{bottom:1163.805000px;}
.y3b_c01311{bottom:1171.590000px;}
.y37_c01311{bottom:1175.910000px;}
.y36_c01311{bottom:1177.635000px;}
.y34_c01311{bottom:1200.090000px;}
.y35_c01311{bottom:1200.960000px;}
.y33_c01311{bottom:1201.830000px;}
.y32_c01311{bottom:1204.410000px;}
.y31_c01311{bottom:1210.470000px;}
.y30_c01311{bottom:1213.920000px;}
.y2f_c01311{bottom:1214.790000px;}
.y2e_c01311{bottom:1215.645000px;}
.y28_c01311{bottom:1217.370000px;}
.y29_c01311{bottom:1219.965000px;}
.y2b_c01311{bottom:1223.430000px;}
.y27_c01311{bottom:1224.285000px;}
.y2a_c01311{bottom:1225.155000px;}
.y2d_c01311{bottom:1226.010000px;}
.y2c_c01311{bottom:1235.520000px;}
.y24_c01311{bottom:1239.840000px;}
.y26_c01311{bottom:1240.710000px;}
.y22_c01311{bottom:1245.030000px;}
.y25_c01311{bottom:1245.885000px;}
.y23_c01311{bottom:1255.395000px;}
.y1a_c01311{bottom:1259.715000px;}
.y1b_c01311{bottom:1260.570000px;}
.y1c_c01311{bottom:1261.440000px;}
.y21_c01311{bottom:1262.310000px;}
.y20_c01311{bottom:1264.890000px;}
.y1f_c01311{bottom:1265.760000px;}
.y1d_c01311{bottom:1266.630000px;}
.y1e_c01311{bottom:1275.270000px;}
.y19_c01311{bottom:1278.720000px;}
.y11_c01311{bottom:1280.445000px;}
.y17_c01311{bottom:1281.315000px;}
.y12_c01311{bottom:1282.170000px;}
.y15_c01311{bottom:1283.040000px;}
.y14_c01311{bottom:1283.910000px;}
.y13_c01311{bottom:1285.635000px;}
.y16_c01311{bottom:1286.490000px;}
.y18_c01311{bottom:1288.230000px;}
.y10_c01311{bottom:1300.320000px;}
.yb_c01311{bottom:1301.190000px;}
.ya_c01311{bottom:1302.045000px;}
.yf_c01311{bottom:1302.915000px;}
.yc_c01311{bottom:1303.770000px;}
.y9_c01311{bottom:1304.640000px;}
.ye_c01311{bottom:1305.510000px;}
.yd_c01311{bottom:1307.235000px;}
.y8_c01311{bottom:1316.730000px;}
.y3_c01311{bottom:1317.600000px;}
.y1_c01311{bottom:1318.470000px;}
.y4_c01311{bottom:1319.325000px;}
.y2_c01311{bottom:1321.050000px;}
.y1be_c01311{bottom:1321.920000px;}
.y6_c01311{bottom:1327.110000px;}
.y7_c01311{bottom:1327.965000px;}
.y5_c01311{bottom:1328.835000px;}
.y1bd_c01311{bottom:1336.605000px;}
.y1bc_c01311{bottom:1352.160000px;}
.y1bb_c01311{bottom:1353.885000px;}
.y1b0_c01311{bottom:1354.755000px;}
.y1ae_c01311{bottom:1358.205000px;}
.y1af_c01311{bottom:1359.930000px;}
.y1b7_c01311{bottom:1371.165000px;}
.y1ba_c01311{bottom:1372.035000px;}
.y1b8_c01311{bottom:1372.890000px;}
.y1b9_c01311{bottom:1373.760000px;}
.y1b5_c01311{bottom:1378.950000px;}
.y1b6_c01311{bottom:1379.805000px;}
.y1b4_c01311{bottom:1387.590000px;}
.y1b3_c01311{bottom:1396.230000px;}
.y1b1_c01311{bottom:1407.450000px;}
.y1b2_c01311{bottom:1411.770000px;}
.h9_c01311{height:3.110063px;}
.h28_c01311{height:4.821973px;}
.h6_c01311{height:5.399414px;}
.h16_c01311{height:6.209326px;}
.h27_c01311{height:6.590062px;}
.h14_c01311{height:9.340986px;}
.h1d_c01311{height:12.418652px;}
.h17_c01311{height:15.550313px;}
.hb_c01311{height:18.681973px;}
.h18_c01311{height:21.759639px;}
.h20_c01311{height:24.891299px;}
.h23_c01311{height:27.968965px;}
.h13_c01311{height:31.100625px;}
.h19_c01311{height:34.232285px;}
.h24_c01311{height:37.309951px;}
.h2a_c01311{height:37.712285px;}
.h10_c01311{height:40.441611px;}
.h1a_c01311{height:43.519277px;}
.h5_c01311{height:46.650937px;}
.h7_c01311{height:49.782598px;}
.h8_c01311{height:52.860264px;}
.hd_c01311{height:55.991924px;}
.hc_c01311{height:59.069590px;}
.he_c01311{height:62.201250px;}
.ha_c01311{height:65.332910px;}
.h3_c01311{height:68.410576px;}
.h12_c01311{height:71.542236px;}
.h11_c01311{height:74.619902px;}
.hf_c01311{height:77.751563px;}
.h2_c01311{height:80.883223px;}
.h15_c01311{height:83.960889px;}
.h1b_c01311{height:87.092549px;}
.h1c_c01311{height:90.170215px;}
.h29_c01311{height:93.301875px;}
.h1e_c01311{height:96.433535px;}
.h4_c01311{height:102.642861px;}
.h22_c01311{height:105.720527px;}
.h1f_c01311{height:121.270840px;}
.h25_c01311{height:133.743486px;}
.h26_c01311{height:139.952812px;}
.h21_c01311{height:143.084473px;}
.h2b_c01311{height:155.503125px;}
.h0_c01311{height:1509.405000px;}
.h1_c01311{height:1509.750000px;}
.w0_c01311{width:1088.640000px;}
.w1_c01311{width:1089.000000px;}
.x0_c01311{left:0.000000px;}
.x113_c01311{left:109.725000px;}
.x114_c01311{left:116.640000px;}
.x117_c01311{left:141.690000px;}
.x119_c01311{left:155.520000px;}
.x115_c01311{left:183.165000px;}
.x63_c01311{left:185.760000px;}
.xf5_c01311{left:209.955000px;}
.x9d_c01311{left:214.275000px;}
.xf3_c01311{left:216.870000px;}
.x9e_c01311{left:222.915000px;}
.x28_c01311{left:224.640000px;}
.xdd_c01311{left:226.365000px;}
.x1e_c01311{left:228.960000px;}
.x43_c01311{left:230.685000px;}
.xf6_c01311{left:232.410000px;}
.x64_c01311{left:235.875000px;}
.xc_c01311{left:237.600000px;}
.xe2_c01311{left:241.050000px;}
.x1_c01311{left:244.515000px;}
.x48_c01311{left:247.110000px;}
.xd_c01311{left:248.835000px;}
.xde_c01311{left:250.560000px;}
.x7c_c01311{left:252.285000px;}
.x36_c01311{left:254.010000px;}
.xf1_c01311{left:256.605000px;}
.x93_c01311{left:259.200000px;}
.x65_c01311{left:261.795000px;}
.x1f_c01311{left:265.245000px;}
.x56_c01311{left:266.970000px;}
.x84_c01311{left:268.710000px;}
.x66_c01311{left:270.435000px;}
.xe_c01311{left:273.030000px;}
.xe3_c01311{left:275.610000px;}
.x67_c01311{left:281.670000px;}
.x37_c01311{left:287.715000px;}
.xed_c01311{left:290.310000px;}
.x99_c01311{left:292.035000px;}
.xa4_c01311{left:293.760000px;}
.x68_c01311{left:296.355000px;}
.x94_c01311{left:298.080000px;}
.x20_c01311{left:300.675000px;}
.x116_c01311{left:302.400000px;}
.x57_c01311{left:304.125000px;}
.xb5_c01311{left:309.315000px;}
.xfe_c01311{left:311.040000px;}
.x69_c01311{left:313.635000px;}
.x104_c01311{left:315.360000px;}
.xbc_c01311{left:317.085000px;}
.x29_c01311{left:319.680000px;}
.x90_c01311{left:322.275000px;}
.x2_c01311{left:324.000000px;}
.x9a_c01311{left:325.725000px;}
.x6a_c01311{left:327.450000px;}
.xb2_c01311{left:330.045000px;}
.x9f_c01311{left:332.640000px;}
.x21_c01311{left:337.830000px;}
.x95_c01311{left:341.280000px;}
.x106_c01311{left:343.005000px;}
.x9b_c01311{left:344.730000px;}
.x85_c01311{left:347.325000px;}
.xab_c01311{left:349.050000px;}
.x7d_c01311{left:350.790000px;}
.xa8_c01311{left:352.515000px;}
.xae_c01311{left:355.110000px;}
.x73_c01311{left:361.155000px;}
.xa5_c01311{left:362.880000px;}
.xf_c01311{left:364.605000px;}
.x80_c01311{left:366.330000px;}
.x10b_c01311{left:368.925000px;}
.x86_c01311{left:373.245000px;}
.x7e_c01311{left:375.840000px;}
.x8a_c01311{left:378.435000px;}
.x9c_c01311{left:380.160000px;}
.xa0_c01311{left:384.480000px;}
.x2a_c01311{left:387.075000px;}
.x38_c01311{left:389.670000px;}
.x100_c01311{left:391.395000px;}
.x3_c01311{left:393.990000px;}
.x51_c01311{left:395.715000px;}
.xac_c01311{left:398.310000px;}
.x77_c01311{left:400.890000px;}
.x10_c01311{left:403.485000px;}
.x91_c01311{left:405.210000px;}
.xcc_c01311{left:410.400000px;}
.xb6_c01311{left:412.125000px;}
.xb4_c01311{left:414.720000px;}
.x6b_c01311{left:416.445000px;}
.xf7_c01311{left:419.040000px;}
.xbd_c01311{left:420.765000px;}
.x58_c01311{left:422.490000px;}
.xa6_c01311{left:426.810000px;}
.x74_c01311{left:429.405000px;}
.x10d_c01311{left:431.130000px;}
.xee_c01311{left:432.870000px;}
.x6c_c01311{left:434.595000px;}
.xaf_c01311{left:437.190000px;}
.x11_c01311{left:438.915000px;}
.xc4_c01311{left:440.640000px;}
.x87_c01311{left:442.365000px;}
.xb7_c01311{left:444.090000px;}
.x5e_c01311{left:445.830000px;}
.x12_c01311{left:447.555000px;}
.x98_c01311{left:449.280000px;}
.x96_c01311{left:452.730000px;}
.xfc_c01311{left:457.050000px;}
.xe7_c01311{left:460.515000px;}
.x13_c01311{left:462.240000px;}
.x4_c01311{left:464.835000px;}
.x2b_c01311{left:468.285000px;}
.x81_c01311{left:470.010000px;}
.xcd_c01311{left:472.605000px;}
.x22_c01311{left:475.200000px;}
.x92_c01311{left:477.795000px;}
.xb8_c01311{left:480.390000px;}
.xfa_c01311{left:482.115000px;}
.xbe_c01311{left:484.710000px;}
.x6d_c01311{left:486.435000px;}
.xe8_c01311{left:488.160000px;}
.x10e_c01311{left:491.610000px;}
.x107_c01311{left:493.350000px;}
.xa1_c01311{left:495.075000px;}
.xb0_c01311{left:497.670000px;}
.xdf_c01311{left:501.120000px;}
.xbf_c01311{left:504.570000px;}
.x44_c01311{left:508.890000px;}
.x101_c01311{left:510.630000px;}
.xd2_c01311{left:513.210000px;}
.xa7_c01311{left:518.400000px;}
.x88_c01311{left:520.995000px;}
.x59_c01311{left:522.720000px;}
.x6e_c01311{left:527.040000px;}
.xd5_c01311{left:529.635000px;}
.x5_c01311{left:533.085000px;}
.xf4_c01311{left:538.275000px;}
.x6_c01311{left:540.000000px;}
.xce_c01311{left:541.725000px;}
.x6f_c01311{left:544.320000px;}
.xe0_c01311{left:546.915000px;}
.x52_c01311{left:548.640000px;}
.x14_c01311{left:550.365000px;}
.x49_c01311{left:552.960000px;}
.x53_c01311{left:554.685000px;}
.x7_c01311{left:556.410000px;}
.x15_c01311{left:559.005000px;}
.x39_c01311{left:560.730000px;}
.x5a_c01311{left:562.470000px;}
.x10f_c01311{left:564.195000px;}
.xc0_c01311{left:566.790000px;}
.x102_c01311{left:568.515000px;}
.xb9_c01311{left:571.110000px;}
.x4a_c01311{left:572.835000px;}
.x75_c01311{left:574.560000px;}
.x105_c01311{left:577.155000px;}
.x2c_c01311{left:578.880000px;}
.x4d_c01311{left:581.475000px;}
.xfd_c01311{left:583.200000px;}
.xba_c01311{left:585.795000px;}
.x3f_c01311{left:588.390000px;}
.xf2_c01311{left:592.710000px;}
.xd6_c01311{left:597.885000px;}
.x45_c01311{left:602.205000px;}
.x16_c01311{left:604.800000px;}
.xc1_c01311{left:606.525000px;}
.x5b_c01311{left:608.250000px;}
.x3a_c01311{left:609.990000px;}
.x82_c01311{left:611.715000px;}
.x2d_c01311{left:613.440000px;}
.x40_c01311{left:615.165000px;}
.x23_c01311{left:616.890000px;}
.xc5_c01311{left:618.630000px;}
.x109_c01311{left:621.210000px;}
.x31_c01311{left:627.270000px;}
.x17_c01311{left:629.850000px;}
.x78_c01311{left:631.590000px;}
.x2e_c01311{left:634.170000px;}
.x3b_c01311{left:636.765000px;}
.x41_c01311{left:641.085000px;}
.x32_c01311{left:642.810000px;}
.xe4_c01311{left:644.550000px;}
.x4e_c01311{left:646.275000px;}
.xfb_c01311{left:648.000000px;}
.xa9_c01311{left:651.450000px;}
.x5f_c01311{left:653.190000px;}
.x72_c01311{left:655.770000px;}
.x54_c01311{left:658.365000px;}
.xc6_c01311{left:660.960000px;}
.x79_c01311{left:664.410000px;}
.x8_c01311{left:667.005000px;}
.xaa_c01311{left:668.730000px;}
.xd7_c01311{left:670.470000px;}
.x2f_c01311{left:672.195000px;}
.xcf_c01311{left:675.645000px;}
.x110_c01311{left:680.835000px;}
.x83_c01311{left:682.560000px;}
.x24_c01311{left:684.285000px;}
.x18_c01311{left:687.750000px;}
.x70_c01311{left:689.475000px;}
.x4f_c01311{left:692.925000px;}
.xbb_c01311{left:695.520000px;}
.xe1_c01311{left:699.840000px;}
.xe9_c01311{left:701.565000px;}
.xad_c01311{left:704.160000px;}
.x3c_c01311{left:705.885000px;}
.x5c_c01311{left:707.610000px;}
.x33_c01311{left:712.800000px;}
.xf8_c01311{left:714.525000px;}
.x60_c01311{left:716.250000px;}
.x111_c01311{left:717.990000px;}
.xc7_c01311{left:723.165000px;}
.x19_c01311{left:725.760000px;}
.x118_c01311{left:727.485000px;}
.x34_c01311{left:730.080000px;}
.xd0_c01311{left:732.675000px;}
.x71_c01311{left:735.270000px;}
.x112_c01311{left:736.995000px;}
.x7a_c01311{left:738.720000px;}
.x1a_c01311{left:741.315000px;}
.x5d_c01311{left:744.765000px;}
.x76_c01311{left:746.490000px;}
.xc2_c01311{left:751.680000px;}
.xb1_c01311{left:753.405000px;}
.x8b_c01311{left:756.000000px;}
.x3d_c01311{left:759.450000px;}
.x1b_c01311{left:762.045000px;}
.x9_c01311{left:764.640000px;}
.x46_c01311{left:766.365000px;}
.x55_c01311{left:768.960000px;}
.xd8_c01311{left:773.280000px;}
.x25_c01311{left:775.875000px;}
.x8c_c01311{left:777.600000px;}
.x61_c01311{left:781.050000px;}
.x30_c01311{left:782.790000px;}
.x35_c01311{left:785.370000px;}
.xf9_c01311{left:787.110000px;}
.x7b_c01311{left:790.560000px;}
.xd9_c01311{left:793.155000px;}
.xa_c01311{left:794.880000px;}
.xa2_c01311{left:796.605000px;}
.x89_c01311{left:800.070000px;}
.xc3_c01311{left:802.650000px;}
.x7f_c01311{left:805.245000px;}
.xe5_c01311{left:806.970000px;}
.x1c_c01311{left:808.710000px;}
.x4b_c01311{left:812.160000px;}
.xc8_c01311{left:813.885000px;}
.xd3_c01311{left:815.610000px;}
.x47_c01311{left:817.350000px;}
.xc9_c01311{left:819.930000px;}
.x10a_c01311{left:821.670000px;}
.x3e_c01311{left:823.395000px;}
.x62_c01311{left:825.990000px;}
.xb_c01311{left:827.715000px;}
.xa3_c01311{left:829.440000px;}
.x10c_c01311{left:832.035000px;}
.x26_c01311{left:833.760000px;}
.x8d_c01311{left:835.485000px;}
.x42_c01311{left:838.080000px;}
.x1d_c01311{left:840.675000px;}
.xda_c01311{left:842.400000px;}
.x97_c01311{left:844.125000px;}
.xb3_c01311{left:846.720000px;}
.x8e_c01311{left:849.315000px;}
.xff_c01311{left:852.765000px;}
.x4c_c01311{left:854.490000px;}
.xca_c01311{left:857.085000px;}
.xe6_c01311{left:859.680000px;}
.x50_c01311{left:870.045000px;}
.x27_c01311{left:871.770000px;}
.xd1_c01311{left:874.365000px;}
.xef_c01311{left:876.960000px;}
.xdb_c01311{left:883.005000px;}
.x108_c01311{left:889.050000px;}
.x103_c01311{left:891.645000px;}
.xcb_c01311{left:894.240000px;}
.x8f_c01311{left:898.560000px;}
.xd4_c01311{left:910.650000px;}
.xea_c01311{left:916.710000px;}
.xdc_c01311{left:918.435000px;}
.xeb_c01311{left:924.480000px;}
.x11a_c01311{left:940.035000px;}
.xec_c01311{left:969.405000px;}
.xf0_c01311{left:981.510000px;}
@media print{
.v3_c01311{vertical-align:-12.320000pt;}
.v1_c01311{vertical-align:-3.093333pt;}
.v0_c01311{vertical-align:0.000000pt;}
.v2_c01311{vertical-align:3.093333pt;}
.ls3_c01311{letter-spacing:0.000000pt;}
.ls0_c01311{letter-spacing:31.186093pt;}
.ls2_c01311{letter-spacing:47.003179pt;}
.ls1_c01311{letter-spacing:89.625172pt;}
.ws0_c01311{word-spacing:-16.372693pt;}
.ws2_c01311{word-spacing:0.000000pt;}
.ws1_c01311{word-spacing:1.922400pt;}
.fs8_c01311{font-size:3.072000pt;}
.fs4_c01311{font-size:5.333333pt;}
.fs14_c01311{font-size:6.133333pt;}
.fs12_c01311{font-size:9.226667pt;}
.fs1b_c01311{font-size:12.266667pt;}
.fs15_c01311{font-size:15.360000pt;}
.fsa_c01311{font-size:18.453333pt;}
.fs16_c01311{font-size:21.493333pt;}
.fs1e_c01311{font-size:24.586667pt;}
.fs21_c01311{font-size:27.626667pt;}
.fs11_c01311{font-size:30.720000pt;}
.fs17_c01311{font-size:33.813333pt;}
.fs22_c01311{font-size:36.853333pt;}
.fse_c01311{font-size:39.946667pt;}
.fs18_c01311{font-size:42.986667pt;}
.fs3_c01311{font-size:46.080000pt;}
.fs5_c01311{font-size:49.173333pt;}
.fs6_c01311{font-size:52.213333pt;}
.fs7_c01311{font-size:55.306667pt;}
.fsb_c01311{font-size:58.346667pt;}
.fsc_c01311{font-size:61.440000pt;}
.fs9_c01311{font-size:64.533333pt;}
.fs1_c01311{font-size:67.573333pt;}
.fs10_c01311{font-size:70.666667pt;}
.fsf_c01311{font-size:73.706667pt;}
.fsd_c01311{font-size:76.800000pt;}
.fs0_c01311{font-size:79.893333pt;}
.fs13_c01311{font-size:82.933333pt;}
.fs19_c01311{font-size:86.026667pt;}
.fs1a_c01311{font-size:89.066667pt;}
.fs25_c01311{font-size:92.160000pt;}
.fs1c_c01311{font-size:95.253333pt;}
.fs2_c01311{font-size:101.386667pt;}
.fs20_c01311{font-size:104.426667pt;}
.fs1d_c01311{font-size:119.786667pt;}
.fs23_c01311{font-size:132.106667pt;}
.fs24_c01311{font-size:138.240000pt;}
.fs1f_c01311{font-size:141.333333pt;}
.fs26_c01311{font-size:153.600000pt;}
.y0_c01311{bottom:0.000000pt;}
.y1ac_c01311{bottom:162.813333pt;}
.y1a9_c01311{bottom:164.346667pt;}
.y1a2_c01311{bottom:165.893333pt;}
.y1ab_c01311{bottom:168.186667pt;}
.y1a8_c01311{bottom:168.960000pt;}
.y1a5_c01311{bottom:171.266667pt;}
.y1a3_c01311{bottom:172.026667pt;}
.y1a4_c01311{bottom:172.800000pt;}
.y1a6_c01311{bottom:173.573333pt;}
.y1a7_c01311{bottom:174.333333pt;}
.y1ad_c01311{bottom:178.946667pt;}
.y1aa_c01311{bottom:182.013333pt;}
.y19f_c01311{bottom:185.853333pt;}
.y1a1_c01311{bottom:186.626667pt;}
.y19d_c01311{bottom:188.160000pt;}
.y19c_c01311{bottom:189.693333pt;}
.y19b_c01311{bottom:190.466667pt;}
.y1a0_c01311{bottom:191.226667pt;}
.y19e_c01311{bottom:193.533333pt;}
.y19a_c01311{bottom:202.746667pt;}
.y199_c01311{bottom:203.520000pt;}
.y197_c01311{bottom:204.293333pt;}
.y198_c01311{bottom:205.053333pt;}
.y195_c01311{bottom:205.826667pt;}
.y193_c01311{bottom:208.133333pt;}
.y196_c01311{bottom:208.893333pt;}
.y194_c01311{bottom:209.666667pt;}
.y18f_c01311{bottom:219.653333pt;}
.y18d_c01311{bottom:221.186667pt;}
.y18a_c01311{bottom:221.946667pt;}
.y18b_c01311{bottom:224.253333pt;}
.y18c_c01311{bottom:225.026667pt;}
.y191_c01311{bottom:225.786667pt;}
.y190_c01311{bottom:226.560000pt;}
.y18e_c01311{bottom:228.866667pt;}
.y192_c01311{bottom:238.080000pt;}
.y187_c01311{bottom:240.386667pt;}
.y188_c01311{bottom:241.146667pt;}
.y186_c01311{bottom:242.693333pt;}
.y184_c01311{bottom:244.226667pt;}
.y189_c01311{bottom:244.986667pt;}
.y185_c01311{bottom:247.293333pt;}
.y181_c01311{bottom:251.133333pt;}
.y17f_c01311{bottom:251.906667pt;}
.y180_c01311{bottom:253.440000pt;}
.y17a_c01311{bottom:254.213333pt;}
.y179_c01311{bottom:254.973333pt;}
.y17c_c01311{bottom:255.746667pt;}
.y178_c01311{bottom:256.506667pt;}
.y17d_c01311{bottom:257.280000pt;}
.y17e_c01311{bottom:258.053333pt;}
.y17b_c01311{bottom:262.653333pt;}
.y183_c01311{bottom:263.426667pt;}
.y182_c01311{bottom:267.266667pt;}
.y174_c01311{bottom:275.706667pt;}
.y175_c01311{bottom:277.253333pt;}
.y172_c01311{bottom:278.013333pt;}
.y176_c01311{bottom:280.320000pt;}
.y173_c01311{bottom:281.853333pt;}
.y177_c01311{bottom:285.693333pt;}
.y16f_c01311{bottom:291.066667pt;}
.y171_c01311{bottom:291.840000pt;}
.y16e_c01311{bottom:294.146667pt;}
.y170_c01311{bottom:298.746667pt;}
.y16d_c01311{bottom:311.813333pt;}
.y167_c01311{bottom:312.573333pt;}
.y16b_c01311{bottom:313.346667pt;}
.y169_c01311{bottom:314.106667pt;}
.y16c_c01311{bottom:314.880000pt;}
.y166_c01311{bottom:316.413333pt;}
.y168_c01311{bottom:317.186667pt;}
.y16a_c01311{bottom:318.720000pt;}
.y163_c01311{bottom:328.706667pt;}
.y15e_c01311{bottom:329.466667pt;}
.y160_c01311{bottom:330.240000pt;}
.y164_c01311{bottom:331.013333pt;}
.y161_c01311{bottom:331.773333pt;}
.y15f_c01311{bottom:337.146667pt;}
.y162_c01311{bottom:341.760000pt;}
.y165_c01311{bottom:344.826667pt;}
.y15d_c01311{bottom:345.600000pt;}
.y15c_c01311{bottom:346.373333pt;}
.y158_c01311{bottom:347.906667pt;}
.y15a_c01311{bottom:350.973333pt;}
.y157_c01311{bottom:352.506667pt;}
.y159_c01311{bottom:354.053333pt;}
.y15b_c01311{bottom:361.733333pt;}
.y153_c01311{bottom:363.266667pt;}
.y152_c01311{bottom:364.026667pt;}
.y151_c01311{bottom:364.800000pt;}
.y156_c01311{bottom:365.573333pt;}
.y150_c01311{bottom:367.106667pt;}
.y154_c01311{bottom:368.640000pt;}
.y155_c01311{bottom:369.413333pt;}
.y14f_c01311{bottom:370.946667pt;}
.y14e_c01311{bottom:374.013333pt;}
.y14a_c01311{bottom:382.466667pt;}
.y148_c01311{bottom:383.226667pt;}
.y149_c01311{bottom:384.000000pt;}
.y14b_c01311{bottom:384.773333pt;}
.y14c_c01311{bottom:386.306667pt;}
.y14d_c01311{bottom:387.066667pt;}
.y147_c01311{bottom:387.840000pt;}
.y146_c01311{bottom:400.133333pt;}
.y145_c01311{bottom:400.893333pt;}
.y142_c01311{bottom:401.666667pt;}
.y140_c01311{bottom:402.426667pt;}
.y141_c01311{bottom:403.973333pt;}
.y144_c01311{bottom:405.506667pt;}
.y13f_c01311{bottom:407.813333pt;}
.y143_c01311{bottom:416.253333pt;}
.y13d_c01311{bottom:418.560000pt;}
.y13b_c01311{bottom:419.333333pt;}
.y136_c01311{bottom:420.866667pt;}
.y138_c01311{bottom:421.626667pt;}
.y137_c01311{bottom:422.400000pt;}
.y13c_c01311{bottom:423.173333pt;}
.y13a_c01311{bottom:423.933333pt;}
.y135_c01311{bottom:425.466667pt;}
.y139_c01311{bottom:427.013333pt;}
.y13e_c01311{bottom:429.306667pt;}
.y132_c01311{bottom:430.853333pt;}
.y133_c01311{bottom:431.613333pt;}
.y134_c01311{bottom:445.440000pt;}
.y12f_c01311{bottom:455.426667pt;}
.y130_c01311{bottom:456.186667pt;}
.y12c_c01311{bottom:456.960000pt;}
.y12e_c01311{bottom:457.733333pt;}
.y131_c01311{bottom:459.266667pt;}
.y12d_c01311{bottom:461.573333pt;}
.y12a_c01311{bottom:473.093333pt;}
.y125_c01311{bottom:473.853333pt;}
.y129_c01311{bottom:474.626667pt;}
.y124_c01311{bottom:475.386667pt;}
.y117_c01311{bottom:476.160000pt;}
.y127_c01311{bottom:476.933333pt;}
.y11f_c01311{bottom:477.693333pt;}
.y128_c01311{bottom:478.466667pt;}
.y122_c01311{bottom:479.226667pt;}
.y123_c01311{bottom:480.000000pt;}
.y126_c01311{bottom:481.533333pt;}
.y12b_c01311{bottom:483.840000pt;}
.y121_c01311{bottom:484.613333pt;}
.y118_c01311{bottom:485.373333pt;}
.y11c_c01311{bottom:486.146667pt;}
.y11b_c01311{bottom:486.906667pt;}
.y11d_c01311{bottom:487.680000pt;}
.y11a_c01311{bottom:488.453333pt;}
.y119_c01311{bottom:489.213333pt;}
.y120_c01311{bottom:489.986667pt;}
.y11e_c01311{bottom:490.746667pt;}
.y113_c01311{bottom:491.520000pt;}
.y10f_c01311{bottom:492.293333pt;}
.y112_c01311{bottom:493.053333pt;}
.y110_c01311{bottom:494.586667pt;}
.y111_c01311{bottom:496.133333pt;}
.y10e_c01311{bottom:496.893333pt;}
.y10d_c01311{bottom:497.666667pt;}
.y116_c01311{bottom:499.200000pt;}
.y114_c01311{bottom:501.506667pt;}
.y115_c01311{bottom:506.106667pt;}
.y10b_c01311{bottom:508.413333pt;}
.y108_c01311{bottom:509.946667pt;}
.y106_c01311{bottom:510.720000pt;}
.y107_c01311{bottom:511.493333pt;}
.y102_c01311{bottom:512.253333pt;}
.y10a_c01311{bottom:513.786667pt;}
.y109_c01311{bottom:515.333333pt;}
.y10c_c01311{bottom:519.933333pt;}
.y105_c01311{bottom:526.853333pt;}
.y101_c01311{bottom:527.613333pt;}
.yfd_c01311{bottom:529.146667pt;}
.y100_c01311{bottom:529.920000pt;}
.y103_c01311{bottom:530.693333pt;}
.y104_c01311{bottom:531.453333pt;}
.yfc_c01311{bottom:532.226667pt;}
.yfe_c01311{bottom:532.986667pt;}
.yff_c01311{bottom:533.760000pt;}
.yf9_c01311{bottom:539.906667pt;}
.yf7_c01311{bottom:540.666667pt;}
.yf8_c01311{bottom:541.440000pt;}
.yf4_c01311{bottom:542.973333pt;}
.yf6_c01311{bottom:543.746667pt;}
.yf5_c01311{bottom:544.506667pt;}
.yee_c01311{bottom:546.053333pt;}
.yf2_c01311{bottom:546.813333pt;}
.yf1_c01311{bottom:547.586667pt;}
.yf3_c01311{bottom:549.893333pt;}
.yf0_c01311{bottom:551.426667pt;}
.yef_c01311{bottom:552.186667pt;}
.yfb_c01311{bottom:552.960000pt;}
.yfa_c01311{bottom:554.493333pt;}
.ye8_c01311{bottom:564.480000pt;}
.ye9_c01311{bottom:566.013333pt;}
.ye5_c01311{bottom:566.786667pt;}
.ye7_c01311{bottom:567.546667pt;}
.yeb_c01311{bottom:568.320000pt;}
.yea_c01311{bottom:569.093333pt;}
.ye6_c01311{bottom:569.853333pt;}
.yed_c01311{bottom:571.386667pt;}
.yec_c01311{bottom:574.466667pt;}
.yde_c01311{bottom:583.680000pt;}
.ye1_c01311{bottom:584.453333pt;}
.ydd_c01311{bottom:585.986667pt;}
.ydf_c01311{bottom:586.746667pt;}
.ye0_c01311{bottom:587.520000pt;}
.ye4_c01311{bottom:588.293333pt;}
.ye3_c01311{bottom:592.893333pt;}
.ye2_c01311{bottom:593.666667pt;}
.ydc_c01311{bottom:595.973333pt;}
.ydb_c01311{bottom:597.506667pt;}
.yd6_c01311{bottom:599.040000pt;}
.yd8_c01311{bottom:599.813333pt;}
.yd9_c01311{bottom:604.413333pt;}
.yd7_c01311{bottom:605.186667pt;}
.yda_c01311{bottom:611.333333pt;}
.yd2_c01311{bottom:619.013333pt;}
.yd0_c01311{bottom:619.773333pt;}
.yd1_c01311{bottom:622.080000pt;}
.yd3_c01311{bottom:622.853333pt;}
.yd5_c01311{bottom:632.066667pt;}
.yd4_c01311{bottom:632.826667pt;}
.ycb_c01311{bottom:635.133333pt;}
.ycc_c01311{bottom:635.906667pt;}
.yca_c01311{bottom:637.440000pt;}
.ycd_c01311{bottom:638.213333pt;}
.yce_c01311{bottom:638.973333pt;}
.yc9_c01311{bottom:641.280000pt;}
.ycf_c01311{bottom:643.586667pt;}
.yc8_c01311{bottom:650.493333pt;}
.yc7_c01311{bottom:652.026667pt;}
.yc5_c01311{bottom:653.573333pt;}
.yc3_c01311{bottom:654.333333pt;}
.yc4_c01311{bottom:655.866667pt;}
.ybe_c01311{bottom:656.640000pt;}
.yc6_c01311{bottom:669.693333pt;}
.yb9_c01311{bottom:671.226667pt;}
.yc2_c01311{bottom:672.000000pt;}
.yba_c01311{bottom:672.773333pt;}
.ybf_c01311{bottom:673.533333pt;}
.yc0_c01311{bottom:675.066667pt;}
.yc1_c01311{bottom:675.840000pt;}
.ybc_c01311{bottom:676.613333pt;}
.ybb_c01311{bottom:677.373333pt;}
.ybd_c01311{bottom:678.146667pt;}
.yb8_c01311{bottom:688.893333pt;}
.yb5_c01311{bottom:689.666667pt;}
.yb2_c01311{bottom:690.426667pt;}
.yb3_c01311{bottom:692.733333pt;}
.yb6_c01311{bottom:694.266667pt;}
.yb4_c01311{bottom:695.040000pt;}
.yb7_c01311{bottom:704.253333pt;}
.yb0_c01311{bottom:706.560000pt;}
.yac_c01311{bottom:707.333333pt;}
.yb1_c01311{bottom:708.093333pt;}
.yae_c01311{bottom:708.866667pt;}
.yaa_c01311{bottom:710.400000pt;}
.yad_c01311{bottom:711.173333pt;}
.yaf_c01311{bottom:711.933333pt;}
.yab_c01311{bottom:715.773333pt;}
.ya5_c01311{bottom:725.760000pt;}
.ya7_c01311{bottom:726.533333pt;}
.ya9_c01311{bottom:727.293333pt;}
.y1c2_c01311{bottom:728.826667pt;}
.ya6_c01311{bottom:729.600000pt;}
.ya8_c01311{bottom:730.373333pt;}
.ya3_c01311{bottom:744.186667pt;}
.ya1_c01311{bottom:745.733333pt;}
.ya2_c01311{bottom:747.266667pt;}
.ya4_c01311{bottom:748.026667pt;}
.y1c0_c01311{bottom:757.253333pt;}
.y1c1_c01311{bottom:758.786667pt;}
.y9e_c01311{bottom:764.933333pt;}
.y9f_c01311{bottom:766.466667pt;}
.ya0_c01311{bottom:768.000000pt;}
.y9c_c01311{bottom:775.680000pt;}
.y99_c01311{bottom:777.986667pt;}
.y9b_c01311{bottom:778.746667pt;}
.y98_c01311{bottom:780.293333pt;}
.y9a_c01311{bottom:781.053333pt;}
.y97_c01311{bottom:783.360000pt;}
.y9d_c01311{bottom:791.813333pt;}
.y96_c01311{bottom:794.106667pt;}
.y95_c01311{bottom:794.880000pt;}
.y94_c01311{bottom:797.186667pt;}
.y93_c01311{bottom:797.946667pt;}
.y91_c01311{bottom:798.720000pt;}
.y92_c01311{bottom:799.493333pt;}
.y90_c01311{bottom:813.306667pt;}
.y8a_c01311{bottom:814.080000pt;}
.y87_c01311{bottom:814.853333pt;}
.y88_c01311{bottom:815.613333pt;}
.y8b_c01311{bottom:817.920000pt;}
.y8d_c01311{bottom:820.986667pt;}
.y8c_c01311{bottom:822.533333pt;}
.y89_c01311{bottom:823.293333pt;}
.y8e_c01311{bottom:824.066667pt;}
.y8f_c01311{bottom:824.826667pt;}
.y80_c01311{bottom:832.506667pt;}
.y85_c01311{bottom:833.280000pt;}
.y82_c01311{bottom:834.053333pt;}
.y86_c01311{bottom:835.586667pt;}
.y84_c01311{bottom:836.346667pt;}
.y83_c01311{bottom:837.120000pt;}
.y81_c01311{bottom:837.893333pt;}
.y7f_c01311{bottom:849.413333pt;}
.y7b_c01311{bottom:850.173333pt;}
.y7c_c01311{bottom:850.946667pt;}
.y7a_c01311{bottom:852.480000pt;}
.y7e_c01311{bottom:854.786667pt;}
.y7d_c01311{bottom:855.546667pt;}
.y79_c01311{bottom:867.066667pt;}
.y76_c01311{bottom:867.840000pt;}
.y77_c01311{bottom:868.613333pt;}
.y75_c01311{bottom:869.373333pt;}
.y78_c01311{bottom:870.906667pt;}
.y6f_c01311{bottom:885.506667pt;}
.y72_c01311{bottom:887.040000pt;}
.y73_c01311{bottom:887.813333pt;}
.y70_c01311{bottom:889.346667pt;}
.y74_c01311{bottom:890.106667pt;}
.y71_c01311{bottom:890.880000pt;}
.y6c_c01311{bottom:903.173333pt;}
.y6a_c01311{bottom:903.933333pt;}
.y6b_c01311{bottom:905.466667pt;}
.y6e_c01311{bottom:907.013333pt;}
.y6d_c01311{bottom:907.773333pt;}
.y69_c01311{bottom:923.906667pt;}
.y59_c01311{bottom:925.440000pt;}
.y66_c01311{bottom:926.213333pt;}
.y68_c01311{bottom:926.973333pt;}
.y65_c01311{bottom:931.586667pt;}
.y67_c01311{bottom:932.346667pt;}
.y61_c01311{bottom:933.893333pt;}
.y60_c01311{bottom:935.426667pt;}
.y1c4_c01311{bottom:936.186667pt;}
.y64_c01311{bottom:938.493333pt;}
.y63_c01311{bottom:939.266667pt;}
.y5f_c01311{bottom:940.026667pt;}
.y5d_c01311{bottom:940.800000pt;}
.y62_c01311{bottom:941.573333pt;}
.y5e_c01311{bottom:942.333333pt;}
.y5c_c01311{bottom:943.866667pt;}
.y5b_c01311{bottom:944.640000pt;}
.y58_c01311{bottom:946.946667pt;}
.y5a_c01311{bottom:956.160000pt;}
.y53_c01311{bottom:956.933333pt;}
.y56_c01311{bottom:959.226667pt;}
.y54_c01311{bottom:962.306667pt;}
.y52_c01311{bottom:963.066667pt;}
.y55_c01311{bottom:963.840000pt;}
.y4b_c01311{bottom:971.520000pt;}
.y57_c01311{bottom:973.826667pt;}
.y51_c01311{bottom:975.360000pt;}
.y4f_c01311{bottom:976.133333pt;}
.y4e_c01311{bottom:976.893333pt;}
.y1c3_c01311{bottom:977.666667pt;}
.y4a_c01311{bottom:979.200000pt;}
.y4d_c01311{bottom:979.973333pt;}
.y50_c01311{bottom:980.733333pt;}
.y4c_c01311{bottom:986.880000pt;}
.y44_c01311{bottom:987.653333pt;}
.y48_c01311{bottom:993.786667pt;}
.y46_c01311{bottom:995.333333pt;}
.y49_c01311{bottom:997.626667pt;}
.y47_c01311{bottom:999.173333pt;}
.y45_c01311{bottom:1003.013333pt;}
.y43_c01311{bottom:1005.306667pt;}
.y3f_c01311{bottom:1012.226667pt;}
.y42_c01311{bottom:1015.293333pt;}
.y41_c01311{bottom:1016.066667pt;}
.y40_c01311{bottom:1016.826667pt;}
.y1bf_c01311{bottom:1021.440000pt;}
.y3e_c01311{bottom:1029.120000pt;}
.y38_c01311{bottom:1029.893333pt;}
.y3d_c01311{bottom:1030.653333pt;}
.y3a_c01311{bottom:1031.426667pt;}
.y3c_c01311{bottom:1033.733333pt;}
.y39_c01311{bottom:1034.493333pt;}
.y3b_c01311{bottom:1041.413333pt;}
.y37_c01311{bottom:1045.253333pt;}
.y36_c01311{bottom:1046.786667pt;}
.y34_c01311{bottom:1066.746667pt;}
.y35_c01311{bottom:1067.520000pt;}
.y33_c01311{bottom:1068.293333pt;}
.y32_c01311{bottom:1070.586667pt;}
.y31_c01311{bottom:1075.973333pt;}
.y30_c01311{bottom:1079.040000pt;}
.y2f_c01311{bottom:1079.813333pt;}
.y2e_c01311{bottom:1080.573333pt;}
.y28_c01311{bottom:1082.106667pt;}
.y29_c01311{bottom:1084.413333pt;}
.y2b_c01311{bottom:1087.493333pt;}
.y27_c01311{bottom:1088.253333pt;}
.y2a_c01311{bottom:1089.026667pt;}
.y2d_c01311{bottom:1089.786667pt;}
.y2c_c01311{bottom:1098.240000pt;}
.y24_c01311{bottom:1102.080000pt;}
.y26_c01311{bottom:1102.853333pt;}
.y22_c01311{bottom:1106.693333pt;}
.y25_c01311{bottom:1107.453333pt;}
.y23_c01311{bottom:1115.906667pt;}
.y1a_c01311{bottom:1119.746667pt;}
.y1b_c01311{bottom:1120.506667pt;}
.y1c_c01311{bottom:1121.280000pt;}
.y21_c01311{bottom:1122.053333pt;}
.y20_c01311{bottom:1124.346667pt;}
.y1f_c01311{bottom:1125.120000pt;}
.y1d_c01311{bottom:1125.893333pt;}
.y1e_c01311{bottom:1133.573333pt;}
.y19_c01311{bottom:1136.640000pt;}
.y11_c01311{bottom:1138.173333pt;}
.y17_c01311{bottom:1138.946667pt;}
.y12_c01311{bottom:1139.706667pt;}
.y15_c01311{bottom:1140.480000pt;}
.y14_c01311{bottom:1141.253333pt;}
.y13_c01311{bottom:1142.786667pt;}
.y16_c01311{bottom:1143.546667pt;}
.y18_c01311{bottom:1145.093333pt;}
.y10_c01311{bottom:1155.840000pt;}
.yb_c01311{bottom:1156.613333pt;}
.ya_c01311{bottom:1157.373333pt;}
.yf_c01311{bottom:1158.146667pt;}
.yc_c01311{bottom:1158.906667pt;}
.y9_c01311{bottom:1159.680000pt;}
.ye_c01311{bottom:1160.453333pt;}
.yd_c01311{bottom:1161.986667pt;}
.y8_c01311{bottom:1170.426667pt;}
.y3_c01311{bottom:1171.200000pt;}
.y1_c01311{bottom:1171.973333pt;}
.y4_c01311{bottom:1172.733333pt;}
.y2_c01311{bottom:1174.266667pt;}
.y1be_c01311{bottom:1175.040000pt;}
.y6_c01311{bottom:1179.653333pt;}
.y7_c01311{bottom:1180.413333pt;}
.y5_c01311{bottom:1181.186667pt;}
.y1bd_c01311{bottom:1188.093333pt;}
.y1bc_c01311{bottom:1201.920000pt;}
.y1bb_c01311{bottom:1203.453333pt;}
.y1b0_c01311{bottom:1204.226667pt;}
.y1ae_c01311{bottom:1207.293333pt;}
.y1af_c01311{bottom:1208.826667pt;}
.y1b7_c01311{bottom:1218.813333pt;}
.y1ba_c01311{bottom:1219.586667pt;}
.y1b8_c01311{bottom:1220.346667pt;}
.y1b9_c01311{bottom:1221.120000pt;}
.y1b5_c01311{bottom:1225.733333pt;}
.y1b6_c01311{bottom:1226.493333pt;}
.y1b4_c01311{bottom:1233.413333pt;}
.y1b3_c01311{bottom:1241.093333pt;}
.y1b1_c01311{bottom:1251.066667pt;}
.y1b2_c01311{bottom:1254.906667pt;}
.h9_c01311{height:2.764500pt;}
.h28_c01311{height:4.286198pt;}
.h6_c01311{height:4.799479pt;}
.h16_c01311{height:5.519401pt;}
.h27_c01311{height:5.857833pt;}
.h14_c01311{height:8.303099pt;}
.h1d_c01311{height:11.038802pt;}
.h17_c01311{height:13.822500pt;}
.hb_c01311{height:16.606198pt;}
.h18_c01311{height:19.341901pt;}
.h20_c01311{height:22.125599pt;}
.h23_c01311{height:24.861302pt;}
.h13_c01311{height:27.645000pt;}
.h19_c01311{height:30.428698pt;}
.h24_c01311{height:33.164401pt;}
.h2a_c01311{height:33.522031pt;}
.h10_c01311{height:35.948099pt;}
.h1a_c01311{height:38.683802pt;}
.h5_c01311{height:41.467500pt;}
.h7_c01311{height:44.251198pt;}
.h8_c01311{height:46.986901pt;}
.hd_c01311{height:49.770599pt;}
.hc_c01311{height:52.506302pt;}
.he_c01311{height:55.290000pt;}
.ha_c01311{height:58.073698pt;}
.h3_c01311{height:60.809401pt;}
.h12_c01311{height:63.593099pt;}
.h11_c01311{height:66.328802pt;}
.hf_c01311{height:69.112500pt;}
.h2_c01311{height:71.896198pt;}
.h15_c01311{height:74.631901pt;}
.h1b_c01311{height:77.415599pt;}
.h1c_c01311{height:80.151302pt;}
.h29_c01311{height:82.935000pt;}
.h1e_c01311{height:85.718698pt;}
.h4_c01311{height:91.238099pt;}
.h22_c01311{height:93.973802pt;}
.h1f_c01311{height:107.796302pt;}
.h25_c01311{height:118.883099pt;}
.h26_c01311{height:124.402500pt;}
.h21_c01311{height:127.186198pt;}
.h2b_c01311{height:138.225000pt;}
.h0_c01311{height:1341.693333pt;}
.h1_c01311{height:1342.000000pt;}
.w0_c01311{width:967.680000pt;}
.w1_c01311{width:968.000000pt;}
.x0_c01311{left:0.000000pt;}
.x113_c01311{left:97.533333pt;}
.x114_c01311{left:103.680000pt;}
.x117_c01311{left:125.946667pt;}
.x119_c01311{left:138.240000pt;}
.x115_c01311{left:162.813333pt;}
.x63_c01311{left:165.120000pt;}
.xf5_c01311{left:186.626667pt;}
.x9d_c01311{left:190.466667pt;}
.xf3_c01311{left:192.773333pt;}
.x9e_c01311{left:198.146667pt;}
.x28_c01311{left:199.680000pt;}
.xdd_c01311{left:201.213333pt;}
.x1e_c01311{left:203.520000pt;}
.x43_c01311{left:205.053333pt;}
.xf6_c01311{left:206.586667pt;}
.x64_c01311{left:209.666667pt;}
.xc_c01311{left:211.200000pt;}
.xe2_c01311{left:214.266667pt;}
.x1_c01311{left:217.346667pt;}
.x48_c01311{left:219.653333pt;}
.xd_c01311{left:221.186667pt;}
.xde_c01311{left:222.720000pt;}
.x7c_c01311{left:224.253333pt;}
.x36_c01311{left:225.786667pt;}
.xf1_c01311{left:228.093333pt;}
.x93_c01311{left:230.400000pt;}
.x65_c01311{left:232.706667pt;}
.x1f_c01311{left:235.773333pt;}
.x56_c01311{left:237.306667pt;}
.x84_c01311{left:238.853333pt;}
.x66_c01311{left:240.386667pt;}
.xe_c01311{left:242.693333pt;}
.xe3_c01311{left:244.986667pt;}
.x67_c01311{left:250.373333pt;}
.x37_c01311{left:255.746667pt;}
.xed_c01311{left:258.053333pt;}
.x99_c01311{left:259.586667pt;}
.xa4_c01311{left:261.120000pt;}
.x68_c01311{left:263.426667pt;}
.x94_c01311{left:264.960000pt;}
.x20_c01311{left:267.266667pt;}
.x116_c01311{left:268.800000pt;}
.x57_c01311{left:270.333333pt;}
.xb5_c01311{left:274.946667pt;}
.xfe_c01311{left:276.480000pt;}
.x69_c01311{left:278.786667pt;}
.x104_c01311{left:280.320000pt;}
.xbc_c01311{left:281.853333pt;}
.x29_c01311{left:284.160000pt;}
.x90_c01311{left:286.466667pt;}
.x2_c01311{left:288.000000pt;}
.x9a_c01311{left:289.533333pt;}
.x6a_c01311{left:291.066667pt;}
.xb2_c01311{left:293.373333pt;}
.x9f_c01311{left:295.680000pt;}
.x21_c01311{left:300.293333pt;}
.x95_c01311{left:303.360000pt;}
.x106_c01311{left:304.893333pt;}
.x9b_c01311{left:306.426667pt;}
.x85_c01311{left:308.733333pt;}
.xab_c01311{left:310.266667pt;}
.x7d_c01311{left:311.813333pt;}
.xa8_c01311{left:313.346667pt;}
.xae_c01311{left:315.653333pt;}
.x73_c01311{left:321.026667pt;}
.xa5_c01311{left:322.560000pt;}
.xf_c01311{left:324.093333pt;}
.x80_c01311{left:325.626667pt;}
.x10b_c01311{left:327.933333pt;}
.x86_c01311{left:331.773333pt;}
.x7e_c01311{left:334.080000pt;}
.x8a_c01311{left:336.386667pt;}
.x9c_c01311{left:337.920000pt;}
.xa0_c01311{left:341.760000pt;}
.x2a_c01311{left:344.066667pt;}
.x38_c01311{left:346.373333pt;}
.x100_c01311{left:347.906667pt;}
.x3_c01311{left:350.213333pt;}
.x51_c01311{left:351.746667pt;}
.xac_c01311{left:354.053333pt;}
.x77_c01311{left:356.346667pt;}
.x10_c01311{left:358.653333pt;}
.x91_c01311{left:360.186667pt;}
.xcc_c01311{left:364.800000pt;}
.xb6_c01311{left:366.333333pt;}
.xb4_c01311{left:368.640000pt;}
.x6b_c01311{left:370.173333pt;}
.xf7_c01311{left:372.480000pt;}
.xbd_c01311{left:374.013333pt;}
.x58_c01311{left:375.546667pt;}
.xa6_c01311{left:379.386667pt;}
.x74_c01311{left:381.693333pt;}
.x10d_c01311{left:383.226667pt;}
.xee_c01311{left:384.773333pt;}
.x6c_c01311{left:386.306667pt;}
.xaf_c01311{left:388.613333pt;}
.x11_c01311{left:390.146667pt;}
.xc4_c01311{left:391.680000pt;}
.x87_c01311{left:393.213333pt;}
.xb7_c01311{left:394.746667pt;}
.x5e_c01311{left:396.293333pt;}
.x12_c01311{left:397.826667pt;}
.x98_c01311{left:399.360000pt;}
.x96_c01311{left:402.426667pt;}
.xfc_c01311{left:406.266667pt;}
.xe7_c01311{left:409.346667pt;}
.x13_c01311{left:410.880000pt;}
.x4_c01311{left:413.186667pt;}
.x2b_c01311{left:416.253333pt;}
.x81_c01311{left:417.786667pt;}
.xcd_c01311{left:420.093333pt;}
.x22_c01311{left:422.400000pt;}
.x92_c01311{left:424.706667pt;}
.xb8_c01311{left:427.013333pt;}
.xfa_c01311{left:428.546667pt;}
.xbe_c01311{left:430.853333pt;}
.x6d_c01311{left:432.386667pt;}
.xe8_c01311{left:433.920000pt;}
.x10e_c01311{left:436.986667pt;}
.x107_c01311{left:438.533333pt;}
.xa1_c01311{left:440.066667pt;}
.xb0_c01311{left:442.373333pt;}
.xdf_c01311{left:445.440000pt;}
.xbf_c01311{left:448.506667pt;}
.x44_c01311{left:452.346667pt;}
.x101_c01311{left:453.893333pt;}
.xd2_c01311{left:456.186667pt;}
.xa7_c01311{left:460.800000pt;}
.x88_c01311{left:463.106667pt;}
.x59_c01311{left:464.640000pt;}
.x6e_c01311{left:468.480000pt;}
.xd5_c01311{left:470.786667pt;}
.x5_c01311{left:473.853333pt;}
.xf4_c01311{left:478.466667pt;}
.x6_c01311{left:480.000000pt;}
.xce_c01311{left:481.533333pt;}
.x6f_c01311{left:483.840000pt;}
.xe0_c01311{left:486.146667pt;}
.x52_c01311{left:487.680000pt;}
.x14_c01311{left:489.213333pt;}
.x49_c01311{left:491.520000pt;}
.x53_c01311{left:493.053333pt;}
.x7_c01311{left:494.586667pt;}
.x15_c01311{left:496.893333pt;}
.x39_c01311{left:498.426667pt;}
.x5a_c01311{left:499.973333pt;}
.x10f_c01311{left:501.506667pt;}
.xc0_c01311{left:503.813333pt;}
.x102_c01311{left:505.346667pt;}
.xb9_c01311{left:507.653333pt;}
.x4a_c01311{left:509.186667pt;}
.x75_c01311{left:510.720000pt;}
.x105_c01311{left:513.026667pt;}
.x2c_c01311{left:514.560000pt;}
.x4d_c01311{left:516.866667pt;}
.xfd_c01311{left:518.400000pt;}
.xba_c01311{left:520.706667pt;}
.x3f_c01311{left:523.013333pt;}
.xf2_c01311{left:526.853333pt;}
.xd6_c01311{left:531.453333pt;}
.x45_c01311{left:535.293333pt;}
.x16_c01311{left:537.600000pt;}
.xc1_c01311{left:539.133333pt;}
.x5b_c01311{left:540.666667pt;}
.x3a_c01311{left:542.213333pt;}
.x82_c01311{left:543.746667pt;}
.x2d_c01311{left:545.280000pt;}
.x40_c01311{left:546.813333pt;}
.x23_c01311{left:548.346667pt;}
.xc5_c01311{left:549.893333pt;}
.x109_c01311{left:552.186667pt;}
.x31_c01311{left:557.573333pt;}
.x17_c01311{left:559.866667pt;}
.x78_c01311{left:561.413333pt;}
.x2e_c01311{left:563.706667pt;}
.x3b_c01311{left:566.013333pt;}
.x41_c01311{left:569.853333pt;}
.x32_c01311{left:571.386667pt;}
.xe4_c01311{left:572.933333pt;}
.x4e_c01311{left:574.466667pt;}
.xfb_c01311{left:576.000000pt;}
.xa9_c01311{left:579.066667pt;}
.x5f_c01311{left:580.613333pt;}
.x72_c01311{left:582.906667pt;}
.x54_c01311{left:585.213333pt;}
.xc6_c01311{left:587.520000pt;}
.x79_c01311{left:590.586667pt;}
.x8_c01311{left:592.893333pt;}
.xaa_c01311{left:594.426667pt;}
.xd7_c01311{left:595.973333pt;}
.x2f_c01311{left:597.506667pt;}
.xcf_c01311{left:600.573333pt;}
.x110_c01311{left:605.186667pt;}
.x83_c01311{left:606.720000pt;}
.x24_c01311{left:608.253333pt;}
.x18_c01311{left:611.333333pt;}
.x70_c01311{left:612.866667pt;}
.x4f_c01311{left:615.933333pt;}
.xbb_c01311{left:618.240000pt;}
.xe1_c01311{left:622.080000pt;}
.xe9_c01311{left:623.613333pt;}
.xad_c01311{left:625.920000pt;}
.x3c_c01311{left:627.453333pt;}
.x5c_c01311{left:628.986667pt;}
.x33_c01311{left:633.600000pt;}
.xf8_c01311{left:635.133333pt;}
.x60_c01311{left:636.666667pt;}
.x111_c01311{left:638.213333pt;}
.xc7_c01311{left:642.813333pt;}
.x19_c01311{left:645.120000pt;}
.x118_c01311{left:646.653333pt;}
.x34_c01311{left:648.960000pt;}
.xd0_c01311{left:651.266667pt;}
.x71_c01311{left:653.573333pt;}
.x112_c01311{left:655.106667pt;}
.x7a_c01311{left:656.640000pt;}
.x1a_c01311{left:658.946667pt;}
.x5d_c01311{left:662.013333pt;}
.x76_c01311{left:663.546667pt;}
.xc2_c01311{left:668.160000pt;}
.xb1_c01311{left:669.693333pt;}
.x8b_c01311{left:672.000000pt;}
.x3d_c01311{left:675.066667pt;}
.x1b_c01311{left:677.373333pt;}
.x9_c01311{left:679.680000pt;}
.x46_c01311{left:681.213333pt;}
.x55_c01311{left:683.520000pt;}
.xd8_c01311{left:687.360000pt;}
.x25_c01311{left:689.666667pt;}
.x8c_c01311{left:691.200000pt;}
.x61_c01311{left:694.266667pt;}
.x30_c01311{left:695.813333pt;}
.x35_c01311{left:698.106667pt;}
.xf9_c01311{left:699.653333pt;}
.x7b_c01311{left:702.720000pt;}
.xd9_c01311{left:705.026667pt;}
.xa_c01311{left:706.560000pt;}
.xa2_c01311{left:708.093333pt;}
.x89_c01311{left:711.173333pt;}
.xc3_c01311{left:713.466667pt;}
.x7f_c01311{left:715.773333pt;}
.xe5_c01311{left:717.306667pt;}
.x1c_c01311{left:718.853333pt;}
.x4b_c01311{left:721.920000pt;}
.xc8_c01311{left:723.453333pt;}
.xd3_c01311{left:724.986667pt;}
.x47_c01311{left:726.533333pt;}
.xc9_c01311{left:728.826667pt;}
.x10a_c01311{left:730.373333pt;}
.x3e_c01311{left:731.906667pt;}
.x62_c01311{left:734.213333pt;}
.xb_c01311{left:735.746667pt;}
.xa3_c01311{left:737.280000pt;}
.x10c_c01311{left:739.586667pt;}
.x26_c01311{left:741.120000pt;}
.x8d_c01311{left:742.653333pt;}
.x42_c01311{left:744.960000pt;}
.x1d_c01311{left:747.266667pt;}
.xda_c01311{left:748.800000pt;}
.x97_c01311{left:750.333333pt;}
.xb3_c01311{left:752.640000pt;}
.x8e_c01311{left:754.946667pt;}
.xff_c01311{left:758.013333pt;}
.x4c_c01311{left:759.546667pt;}
.xca_c01311{left:761.853333pt;}
.xe6_c01311{left:764.160000pt;}
.x50_c01311{left:773.373333pt;}
.x27_c01311{left:774.906667pt;}
.xd1_c01311{left:777.213333pt;}
.xef_c01311{left:779.520000pt;}
.xdb_c01311{left:784.893333pt;}
.x108_c01311{left:790.266667pt;}
.x103_c01311{left:792.573333pt;}
.xcb_c01311{left:794.880000pt;}
.x8f_c01311{left:798.720000pt;}
.xd4_c01311{left:809.466667pt;}
.xea_c01311{left:814.853333pt;}
.xdc_c01311{left:816.386667pt;}
.xeb_c01311{left:821.760000pt;}
.x11a_c01311{left:835.586667pt;}
.xec_c01311{left:861.693333pt;}
.xf0_c01311{left:872.453333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2be627b786a3c21c3c22ae8c.woff2')format("woff");}.ff1_c01312{font-family:ff1_c01312;line-height:1.109863;font-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_c01312{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01312{transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01312{transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);}
.mac_c01312{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);}
.m12a_c01312{transform:matrix(0.076400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076400,0.000000,0.000000,0.250000,0,0);}
.m19f_c01312{transform:matrix(0.078700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078700,0.000000,0.000000,0.250000,0,0);}
.m8a_c01312{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.mef_c01312{transform:matrix(0.082450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082450,0.000000,0.000000,0.250000,0,0);}
.m81_c01312{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.m163_c01312{transform:matrix(0.103400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103400,0.000000,0.000000,0.250000,0,0);}
.m116_c01312{transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);}
.m90_c01312{transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);}
.m97_c01312{transform:matrix(0.108925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108925,0.000000,0.000000,0.250000,0,0);}
.m15b_c01312{transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);}
.m133_c01312{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.ma8_c01312{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m161_c01312{transform:matrix(0.116150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116150,0.000000,0.000000,0.250000,0,0);}
.mbc_c01312{transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116450,0.000000,0.000000,0.250000,0,0);}
.m9f_c01312{transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118475,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01312{transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);}
.me9_c01312{transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123950,0.000000,0.000000,0.250000,0,0);}
.m86_c01312{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01312{transform:matrix(0.125425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125425,0.000000,0.000000,0.250000,0,0);}
.m169_c01312{transform:matrix(0.125700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125700,0.000000,0.000000,0.250000,0,0);}
.m5a_c01312{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01312{transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);}
.mbb_c01312{transform:matrix(0.129775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129775,0.000000,0.000000,0.250000,0,0);}
.m7b_c01312{transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);}
.m130_c01312{transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);}
.m88_c01312{transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131600,0.000000,0.000000,0.250000,0,0);}
.mb9_c01312{transform:matrix(0.132125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132125,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01312{transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);}
.m5b_c01312{transform:matrix(0.132225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132225,0.000000,0.000000,0.250000,0,0);}
.m112_c01312{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.mc3_c01312{transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132550,0.000000,0.000000,0.250000,0,0);}
.m78_c01312{transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);}
.m69_c01312{transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01312{transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133575,0.000000,0.000000,0.250000,0,0);}
.m12b_c01312{transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);}
.m7c_c01312{transform:matrix(0.134725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134725,0.000000,0.000000,0.250000,0,0);}
.m34_c01312{transform:matrix(0.134825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134825,0.000000,0.000000,0.250000,0,0);}
.md2_c01312{transform:matrix(0.135600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135600,0.000000,0.000000,0.250000,0,0);}
.m194_c01312{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m9c_c01312{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.me5_c01312{transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);}
.mc0_c01312{transform:matrix(0.138400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138400,0.000000,0.000000,0.250000,0,0);}
.m77_c01312{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01312{transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);}
.me1_c01312{transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);}
.m10e_c01312{transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139550,0.000000,0.000000,0.250000,0,0);}
.m191_c01312{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m113_c01312{transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);}
.ma3_c01312{transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140425,0.000000,0.000000,0.250000,0,0);}
.m9d_c01312{transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);}
.m111_c01312{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);}
.m3e_c01312{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m1_c01312{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01312{transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);}
.m7e_c01312{transform:matrix(0.145050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145050,0.000000,0.000000,0.250000,0,0);}
.m40_c01312{transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);}
.m100_c01312{transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);}
.m84_c01312{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.mc6_c01312{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);}
.m10f_c01312{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01312{transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);}
.m174_c01312{transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);}
.me0_c01312{transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01312{transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);}
.m18f_c01312{transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);}
.m48_c01312{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m94_c01312{transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);}
.m8d_c01312{transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151300,0.000000,0.000000,0.250000,0,0);}
.m80_c01312{transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);}
.m10c_c01312{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m121_c01312{transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152125,0.000000,0.000000,0.250000,0,0);}
.m19b_c01312{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);}
.m172_c01312{transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152525,0.000000,0.000000,0.250000,0,0);}
.m155_c01312{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.m96_c01312{transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152975,0.000000,0.000000,0.250000,0,0);}
.mf5_c01312{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m110_c01312{transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154525,0.000000,0.000000,0.250000,0,0);}
.m16a_c01312{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m126_c01312{transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);}
.m36_c01312{transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);}
.m14_c01312{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.m114_c01312{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.m16_c01312{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01312{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);}
.m47_c01312{transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);}
.mf3_c01312{transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);}
.m28_c01312{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);}
.m1a4_c01312{transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157425,0.000000,0.000000,0.250000,0,0);}
.m102_c01312{transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);}
.m120_c01312{transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);}
.m4c_c01312{transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);}
.m135_c01312{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.m12f_c01312{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.mfc_c01312{transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);}
.m2f_c01312{transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);}
.mc8_c01312{transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);}
.m17a_c01312{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);}
.m46_c01312{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m156_c01312{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.m11c_c01312{transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01312{transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);}
.m18_c01312{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.m165_c01312{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);}
.md9_c01312{transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);}
.m75_c01312{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);}
.m79_c01312{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m95_c01312{transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164125,0.000000,0.000000,0.250000,0,0);}
.m199_c01312{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.mae_c01312{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.m13d_c01312{transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);}
.me2_c01312{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.m177_c01312{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.m12c_c01312{transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01312{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.m181_c01312{transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);}
.me_c01312{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m27_c01312{transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);}
.m82_c01312{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);}
.me4_c01312{transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01312{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.m18d_c01312{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.m152_c01312{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m125_c01312{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.mf2_c01312{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);}
.m158_c01312{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);}
.mea_c01312{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.m12_c01312{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m14c_c01312{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m10b_c01312{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.m160_c01312{transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);}
.m25_c01312{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);}
.m146_c01312{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);}
.m184_c01312{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);}
.m128_c01312{transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);}
.m70_c01312{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);}
.m118_c01312{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.mb2_c01312{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);}
.m8f_c01312{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.mc1_c01312{transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);}
.m26_c01312{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.m141_c01312{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);}
.mc9_c01312{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);}
.m182_c01312{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);}
.m115_c01312{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);}
.m117_c01312{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m193_c01312{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m37_c01312{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01312{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);}
.m71_c01312{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);}
.m1ba_c01312{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m186_c01312{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);}
.m1b6_c01312{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);}
.mca_c01312{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);}
.m14b_c01312{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);}
.m17e_c01312{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m52_c01312{transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);}
.m17_c01312{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);}
.mcd_c01312{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m11e_c01312{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m18e_c01312{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.m12d_c01312{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);}
.m44_c01312{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.m3f_c01312{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m173_c01312{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m159_c01312{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.m123_c01312{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m8e_c01312{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);}
.m153_c01312{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);}
.m63_c01312{transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);}
.m11b_c01312{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m14e_c01312{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m119_c01312{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.m12e_c01312{transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193650,0.000000,0.000000,0.250000,0,0);}
.m5_c01312{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m7f_c01312{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);}
.m143_c01312{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.m17d_c01312{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.m189_c01312{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.m4b_c01312{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01312{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);}
.m1ab_c01312{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);}
.m19d_c01312{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);}
.m14a_c01312{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);}
.m10d_c01312{transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);}
.m164_c01312{transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);}
.ma9_c01312{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);}
.m134_c01312{transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);}
.m9a_c01312{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01312{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);}
.m57_c01312{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.m190_c01312{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);}
.md_c01312{transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);}
.m18c_c01312{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);}
.mce_c01312{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.med_c01312{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);}
.m53_c01312{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m179_c01312{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);}
.m1ae_c01312{transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);}
.m19e_c01312{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m72_c01312{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);}
.md7_c01312{transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);}
.m1a_c01312{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);}
.m101_c01312{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);}
.m1b3_c01312{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.md4_c01312{transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);}
.m15f_c01312{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.m67_c01312{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);}
.m19a_c01312{transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);}
.m185_c01312{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m30_c01312{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.me3_c01312{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);}
.m9e_c01312{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);}
.m56_c01312{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);}
.m196_c01312{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);}
.m11_c01312{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);}
.m21_c01312{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);}
.ma0_c01312{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.md5_c01312{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);}
.mbe_c01312{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.m9b_c01312{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m92_c01312{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.m60_c01312{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.mba_c01312{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);}
.m6d_c01312{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.mab_c01312{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m13b_c01312{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.md3_c01312{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);}
.m1b7_c01312{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);}
.m1d_c01312{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);}
.mf8_c01312{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.mfd_c01312{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);}
.m6c_c01312{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.mdf_c01312{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);}
.m195_c01312{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);}
.m1b8_c01312{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.m180_c01312{transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);}
.m13c_c01312{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.m41_c01312{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);}
.m18a_c01312{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);}
.m5e_c01312{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);}
.m139_c01312{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);}
.m74_c01312{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.mf6_c01312{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m8b_c01312{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.m127_c01312{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.mf0_c01312{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);}
.me8_c01312{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.mee_c01312{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);}
.m87_c01312{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);}
.m11f_c01312{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);}
.m122_c01312{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);}
.m18b_c01312{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);}
.m192_c01312{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);}
.m1a7_c01312{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m176_c01312{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.mdd_c01312{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);}
.m166_c01312{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);}
.m107_c01312{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);}
.md8_c01312{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);}
.mbd_c01312{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);}
.m183_c01312{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);}
.m3a_c01312{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);}
.mdb_c01312{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);}
.m138_c01312{transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);}
.mb0_c01312{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);}
.m73_c01312{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.mdc_c01312{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.m131_c01312{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.mcc_c01312{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);}
.m35_c01312{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);}
.meb_c01312{transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);}
.m11a_c01312{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m5c_c01312{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);}
.me6_c01312{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);}
.m23_c01312{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);}
.m7d_c01312{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m59_c01312{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);}
.m98_c01312{transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227675,0.000000,0.000000,0.250000,0,0);}
.ma4_c01312{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.m1f_c01312{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m91_c01312{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.mde_c01312{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);}
.m1aa_c01312{transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);}
.m147_c01312{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);}
.m1ad_c01312{transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230250,0.000000,0.000000,0.250000,0,0);}
.mf7_c01312{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m157_c01312{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);}
.me7_c01312{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.mc2_c01312{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m3b_c01312{transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);}
.m68_c01312{transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);}
.mf4_c01312{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);}
.m129_c01312{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m4a_c01312{transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);}
.mda_c01312{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);}
.m13f_c01312{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);}
.m66_c01312{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);}
.m150_c01312{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);}
.m31_c01312{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);}
.m15_c01312{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);}
.m178_c01312{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.m104_c01312{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m16b_c01312{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);}
.m1a6_c01312{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);}
.ma1_c01312{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.md0_c01312{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);}
.ma2_c01312{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);}
.m162_c01312{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);}
.m49_c01312{transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238200,0.000000,0.000000,0.250000,0,0);}
.mad_c01312{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);}
.m17f_c01312{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);}
.m5f_c01312{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);}
.mc7_c01312{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);}
.m142_c01312{transform:matrix(0.241400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241400,0.000000,0.000000,0.250000,0,0);}
.m136_c01312{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.m6e_c01312{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);}
.m45_c01312{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01312{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);}
.m154_c01312{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);}
.m14f_c01312{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);}
.mf1_c01312{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.m124_c01312{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);}
.m10a_c01312{transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);}
.m5d_c01312{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);}
.m93_c01312{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);}
.m140_c01312{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);}
.mb8_c01312{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);}
.m109_c01312{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m188_c01312{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.ma5_c01312{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.m4d_c01312{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m55_c01312{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);}
.m38_c01312{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);}
.mb1_c01312{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);}
.ma_c01312{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);}
.m1e_c01312{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m148_c01312{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c01312{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m198_c01312{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);}
.m8_c01312{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m33_c01312{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);}
.m42_c01312{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);}
.m13_c01312{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m50_c01312{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);}
.m4_c01312{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m54_c01312{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01312{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_c01312{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mb_c01312{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);}
.m6_c01312{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);}
.m10_c01312{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c01312{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m103_c01312{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);}
.m22_c01312{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m89_c01312{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mc_c01312{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_c01312{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01312{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mcf_c01312{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m62_c01312{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01312{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c01312{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01312{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m137_c01312{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);}
.m151_c01312{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m39_c01312{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m83_c01312{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c01312{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mec_c01312{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);}
.mb4_c01312{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);}
.mb6_c01312{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);}
.m145_c01312{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m108_c01312{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m168_c01312{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m11d_c01312{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m99_c01312{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);}
.m170_c01312{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);}
.m32_c01312{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m51_c01312{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m8c_c01312{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);}
.mb5_c01312{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m13e_c01312{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m13a_c01312{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m17b_c01312{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mff_c01312{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mc5_c01312{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);}
.m61_c01312{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);}
.maa_c01312{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);}
.md6_c01312{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1af_c01312{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m105_c01312{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);}
.m58_c01312{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m76_c01312{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m106_c01312{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mfe_c01312{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);}
.m43_c01312{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01312{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m171_c01312{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mfb_c01312{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m24_c01312{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01312{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01312{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m1be_c01312{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01312{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);}
.m167_c01312{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m19c_c01312{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01312{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m64_c01312{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);}
.mfa_c01312{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m20_c01312{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m15a_c01312{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);}
.m85_c01312{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mf9_c01312{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mb3_c01312{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);}
.m15d_c01312{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.maf_c01312{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m16c_c01312{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01312{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01312{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.mc4_c01312{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m197_c01312{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m149_c01312{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m17c_c01312{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);}
.m187_c01312{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.md1_c01312{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m14d_c01312{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.ma7_c01312{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m132_c01312{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01312{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m15c_c01312{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);}
.m175_c01312{transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01312{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.mb7_c01312{transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.860000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01312{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m16e_c01312{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01312{transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);}
.m15e_c01312{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);}
.ma6_c01312{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.m16d_c01312{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.m16f_c01312{transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);}
.m29_c01312{transform:matrix(1.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.310000,0.000000,0.000000,0.250000,0,0);}
.mcb_c01312{transform:matrix(1.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.462500,0.000000,0.000000,0.250000,0,0);}
.m65_c01312{transform:matrix(1.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.650000,0.000000,0.000000,0.250000,0,0);}
.m144_c01312{transform:matrix(2.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.170000,0.000000,0.000000,0.250000,0,0);}
.v2_c01312{vertical-align:-6.900000px;}
.v1_c01312{vertical-align:-3.480000px;}
.v0_c01312{vertical-align:0.000000px;}
.ls2_c01312{letter-spacing:0.000000px;}
.ls0_c01312{letter-spacing:93.420000px;}
.ls1_c01312{letter-spacing:133.506000px;}
.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:-11.206800px;}
.ws1_c01312{word-spacing:0.000000px;}
.fc0_c01312{color:transparent;}
.fs2_c01312{font-size:3.456000px;}
.fs4_c01312{font-size:6.000000px;}
.fs1b_c01312{font-size:6.900000px;}
.fs0_c01312{font-size:10.380000px;}
.fs5_c01312{font-size:13.800000px;}
.fs1_c01312{font-size:17.280000px;}
.fs1c_c01312{font-size:20.760000px;}
.fs18_c01312{font-size:24.180000px;}
.fs1a_c01312{font-size:27.660000px;}
.fs19_c01312{font-size:31.080000px;}
.fs13_c01312{font-size:34.560000px;}
.fs14_c01312{font-size:38.040000px;}
.fs17_c01312{font-size:41.460000px;}
.fs3_c01312{font-size:44.940000px;}
.fsc_c01312{font-size:48.360000px;}
.fs15_c01312{font-size:51.840000px;}
.fs10_c01312{font-size:55.320000px;}
.fsb_c01312{font-size:58.740000px;}
.fsa_c01312{font-size:62.220000px;}
.fs16_c01312{font-size:65.640000px;}
.fs9_c01312{font-size:69.120000px;}
.fs8_c01312{font-size:72.600000px;}
.fs11_c01312{font-size:76.020000px;}
.fs12_c01312{font-size:79.500000px;}
.fse_c01312{font-size:82.920000px;}
.fsf_c01312{font-size:86.400000px;}
.fsd_c01312{font-size:89.880000px;}
.fs6_c01312{font-size:93.300000px;}
.fs1d_c01312{font-size:96.780000px;}
.fs20_c01312{font-size:100.200000px;}
.fs21_c01312{font-size:103.680000px;}
.fs1e_c01312{font-size:110.580000px;}
.fs7_c01312{font-size:117.480000px;}
.fs1f_c01312{font-size:148.620000px;}
.y0_c01312{bottom:0.000000px;}
.y1b9_c01312{bottom:174.525000px;}
.y1b8_c01312{bottom:184.035000px;}
.y1b3_c01312{bottom:186.630000px;}
.y1b5_c01312{bottom:187.485000px;}
.y1b6_c01312{bottom:188.355000px;}
.y1b1_c01312{bottom:190.950000px;}
.y1b2_c01312{bottom:191.805000px;}
.y1b0_c01312{bottom:193.530000px;}
.y1b4_c01312{bottom:194.400000px;}
.y1b7_c01312{bottom:195.270000px;}
.y1ae_c01312{bottom:209.955000px;}
.y1ad_c01312{bottom:210.810000px;}
.y1ac_c01312{bottom:213.405000px;}
.y1af_c01312{bottom:214.275000px;}
.y1ab_c01312{bottom:216.000000px;}
.y1a9_c01312{bottom:216.870000px;}
.y1aa_c01312{bottom:217.725000px;}
.y1a8_c01312{bottom:228.960000px;}
.y1a3_c01312{bottom:233.280000px;}
.y1a7_c01312{bottom:234.150000px;}
.y1a5_c01312{bottom:235.005000px;}
.y1a6_c01312{bottom:235.875000px;}
.y1a4_c01312{bottom:238.470000px;}
.y1a1_c01312{bottom:249.690000px;}
.y1a0_c01312{bottom:251.430000px;}
.y19e_c01312{bottom:254.010000px;}
.y1a2_c01312{bottom:254.880000px;}
.y19d_c01312{bottom:256.605000px;}
.y19f_c01312{bottom:257.475000px;}
.y19c_c01312{bottom:266.115000px;}
.y198_c01312{bottom:266.970000px;}
.y197_c01312{bottom:268.710000px;}
.y19b_c01312{bottom:269.565000px;}
.y199_c01312{bottom:274.755000px;}
.y19a_c01312{bottom:277.350000px;}
.y196_c01312{bottom:289.440000px;}
.y190_c01312{bottom:291.165000px;}
.y18f_c01312{bottom:292.035000px;}
.y193_c01312{bottom:293.760000px;}
.y18d_c01312{bottom:294.630000px;}
.y195_c01312{bottom:295.485000px;}
.y194_c01312{bottom:297.210000px;}
.y191_c01312{bottom:298.080000px;}
.y18e_c01312{bottom:298.950000px;}
.y18c_c01312{bottom:299.805000px;}
.y192_c01312{bottom:305.850000px;}
.y189_c01312{bottom:311.040000px;}
.y18a_c01312{bottom:312.765000px;}
.y183_c01312{bottom:313.635000px;}
.y184_c01312{bottom:314.490000px;}
.y181_c01312{bottom:315.360000px;}
.y182_c01312{bottom:316.230000px;}
.y188_c01312{bottom:317.085000px;}
.y185_c01312{bottom:318.810000px;}
.y187_c01312{bottom:320.550000px;}
.y18b_c01312{bottom:321.405000px;}
.y186_c01312{bottom:323.130000px;}
.y180_c01312{bottom:330.045000px;}
.y17f_c01312{bottom:330.915000px;}
.y17b_c01312{bottom:335.235000px;}
.y17c_c01312{bottom:336.090000px;}
.y178_c01312{bottom:336.960000px;}
.y17e_c01312{bottom:337.830000px;}
.y179_c01312{bottom:339.555000px;}
.y17a_c01312{bottom:340.410000px;}
.y17d_c01312{bottom:350.790000px;}
.y176_c01312{bottom:352.515000px;}
.y171_c01312{bottom:354.240000px;}
.y170_c01312{bottom:355.110000px;}
.y177_c01312{bottom:355.965000px;}
.y16d_c01312{bottom:356.835000px;}
.y175_c01312{bottom:358.560000px;}
.y172_c01312{bottom:359.430000px;}
.y173_c01312{bottom:360.285000px;}
.y174_c01312{bottom:361.155000px;}
.y16f_c01312{bottom:371.520000px;}
.y16b_c01312{bottom:374.970000px;}
.y168_c01312{bottom:376.710000px;}
.y16e_c01312{bottom:377.565000px;}
.y167_c01312{bottom:378.435000px;}
.y16a_c01312{bottom:380.160000px;}
.y169_c01312{bottom:381.030000px;}
.y16c_c01312{bottom:392.250000px;}
.y166_c01312{bottom:393.120000px;}
.y160_c01312{bottom:394.845000px;}
.y165_c01312{bottom:395.715000px;}
.y15f_c01312{bottom:396.570000px;}
.y162_c01312{bottom:397.440000px;}
.y163_c01312{bottom:398.310000px;}
.y161_c01312{bottom:399.165000px;}
.y15e_c01312{bottom:400.890000px;}
.y164_c01312{bottom:406.950000px;}
.y15d_c01312{bottom:414.720000px;}
.y15b_c01312{bottom:415.590000px;}
.y15a_c01312{bottom:418.170000px;}
.y1bf_c01312{bottom:420.765000px;}
.y158_c01312{bottom:422.490000px;}
.y159_c01312{bottom:425.955000px;}
.y1be_c01312{bottom:426.810000px;}
.y1bd_c01312{bottom:427.680000px;}
.y1bc_c01312{bottom:428.550000px;}
.y1bb_c01312{bottom:430.275000px;}
.y15c_c01312{bottom:433.725000px;}
.y156_c01312{bottom:436.320000px;}
.y155_c01312{bottom:438.045000px;}
.y1ba_c01312{bottom:441.510000px;}
.y154_c01312{bottom:443.235000px;}
.y157_c01312{bottom:444.960000px;}
.y153_c01312{bottom:459.645000px;}
.y14f_c01312{bottom:461.370000px;}
.y152_c01312{bottom:462.240000px;}
.y150_c01312{bottom:467.430000px;}
.y151_c01312{bottom:469.155000px;}
.y14e_c01312{bottom:474.330000px;}
.y14b_c01312{bottom:476.070000px;}
.y14a_c01312{bottom:477.795000px;}
.y147_c01312{bottom:479.520000px;}
.y14c_c01312{bottom:480.390000px;}
.y149_c01312{bottom:482.115000px;}
.y148_c01312{bottom:482.970000px;}
.y14d_c01312{bottom:495.075000px;}
.y141_c01312{bottom:498.525000px;}
.y145_c01312{bottom:499.395000px;}
.y143_c01312{bottom:501.120000px;}
.y146_c01312{bottom:501.990000px;}
.y144_c01312{bottom:503.715000px;}
.y142_c01312{bottom:504.570000px;}
.y13f_c01312{bottom:510.630000px;}
.y13a_c01312{bottom:514.950000px;}
.y13c_c01312{bottom:515.805000px;}
.y139_c01312{bottom:516.675000px;}
.y13d_c01312{bottom:518.400000px;}
.y140_c01312{bottom:520.995000px;}
.y13b_c01312{bottom:521.850000px;}
.y13e_c01312{bottom:522.720000px;}
.y138_c01312{bottom:538.275000px;}
.y131_c01312{bottom:539.130000px;}
.y135_c01312{bottom:541.725000px;}
.y130_c01312{bottom:542.595000px;}
.y132_c01312{bottom:543.450000px;}
.y133_c01312{bottom:544.320000px;}
.y136_c01312{bottom:545.190000px;}
.y134_c01312{bottom:546.915000px;}
.y137_c01312{bottom:552.090000px;}
.y12f_c01312{bottom:556.410000px;}
.y12e_c01312{bottom:558.150000px;}
.y12a_c01312{bottom:559.005000px;}
.y127_c01312{bottom:559.875000px;}
.y128_c01312{bottom:562.470000px;}
.y12d_c01312{bottom:563.325000px;}
.y126_c01312{bottom:564.195000px;}
.y129_c01312{bottom:565.050000px;}
.y12c_c01312{bottom:565.920000px;}
.y12b_c01312{bottom:575.430000px;}
.y123_c01312{bottom:578.880000px;}
.y11e_c01312{bottom:579.750000px;}
.y11f_c01312{bottom:580.605000px;}
.y11d_c01312{bottom:581.475000px;}
.y124_c01312{bottom:582.330000px;}
.y125_c01312{bottom:583.200000px;}
.y121_c01312{bottom:584.070000px;}
.y120_c01312{bottom:584.925000px;}
.y122_c01312{bottom:586.650000px;}
.y118_c01312{bottom:599.610000px;}
.y117_c01312{bottom:600.480000px;}
.y116_c01312{bottom:601.350000px;}
.y119_c01312{bottom:602.205000px;}
.y115_c01312{bottom:605.670000px;}
.y11b_c01312{bottom:610.845000px;}
.y11c_c01312{bottom:613.440000px;}
.y11a_c01312{bottom:616.890000px;}
.y112_c01312{bottom:618.630000px;}
.y111_c01312{bottom:619.485000px;}
.y113_c01312{bottom:620.355000px;}
.y10e_c01312{bottom:622.080000px;}
.y10f_c01312{bottom:623.805000px;}
.y110_c01312{bottom:624.675000px;}
.y114_c01312{bottom:625.530000px;}
.y10d_c01312{bottom:633.315000px;}
.y107_c01312{bottom:638.490000px;}
.y10b_c01312{bottom:639.360000px;}
.y106_c01312{bottom:640.230000px;}
.y108_c01312{bottom:641.085000px;}
.y109_c01312{bottom:643.680000px;}
.y104_c01312{bottom:644.550000px;}
.y105_c01312{bottom:645.405000px;}
.y10a_c01312{bottom:646.275000px;}
.y10c_c01312{bottom:652.320000px;}
.y100_c01312{bottom:659.235000px;}
.yfd_c01312{bottom:660.090000px;}
.y101_c01312{bottom:660.960000px;}
.yff_c01312{bottom:661.830000px;}
.yfc_c01312{bottom:662.685000px;}
.y103_c01312{bottom:663.555000px;}
.y102_c01312{bottom:664.410000px;}
.yfe_c01312{bottom:665.280000px;}
.yf6_c01312{bottom:679.965000px;}
.yf7_c01312{bottom:681.690000px;}
.yf8_c01312{bottom:682.560000px;}
.yfa_c01312{bottom:683.430000px;}
.yf5_c01312{bottom:685.155000px;}
.yf4_c01312{bottom:686.010000px;}
.yf9_c01312{bottom:695.520000px;}
.yfb_c01312{bottom:696.390000px;}
.yf3_c01312{bottom:698.115000px;}
.yf1_c01312{bottom:698.970000px;}
.yef_c01312{bottom:699.840000px;}
.yee_c01312{bottom:700.710000px;}
.yec_c01312{bottom:701.565000px;}
.yf0_c01312{bottom:702.435000px;}
.yf2_c01312{bottom:703.290000px;}
.yea_c01312{bottom:704.160000px;}
.yed_c01312{bottom:705.030000px;}
.yeb_c01312{bottom:706.755000px;}
.ye8_c01312{bottom:718.845000px;}
.ye7_c01312{bottom:719.715000px;}
.ye3_c01312{bottom:722.310000px;}
.ye5_c01312{bottom:724.035000px;}
.ye6_c01312{bottom:724.890000px;}
.ye4_c01312{bottom:725.760000px;}
.ye2_c01312{bottom:726.630000px;}
.ye1_c01312{bottom:727.485000px;}
.ye9_c01312{bottom:732.675000px;}
.ye0_c01312{bottom:739.590000px;}
.ydb_c01312{bottom:741.315000px;}
.yda_c01312{bottom:743.910000px;}
.yde_c01312{bottom:744.765000px;}
.ydf_c01312{bottom:745.635000px;}
.ydd_c01312{bottom:746.490000px;}
.ydc_c01312{bottom:747.360000px;}
.yd9_c01312{bottom:759.450000px;}
.yd6_c01312{bottom:761.190000px;}
.yd4_c01312{bottom:762.915000px;}
.yd3_c01312{bottom:763.770000px;}
.yd7_c01312{bottom:764.640000px;}
.yd8_c01312{bottom:765.510000px;}
.yd5_c01312{bottom:766.365000px;}
.yce_c01312{bottom:781.050000px;}
.ycf_c01312{bottom:781.920000px;}
.yd0_c01312{bottom:782.790000px;}
.yd2_c01312{bottom:784.515000px;}
.yd1_c01312{bottom:785.370000px;}
.ycd_c01312{bottom:787.965000px;}
.ycc_c01312{bottom:799.200000px;}
.yca_c01312{bottom:800.925000px;}
.yc8_c01312{bottom:801.795000px;}
.ycb_c01312{bottom:802.650000px;}
.yc9_c01312{bottom:803.520000px;}
.yc7_c01312{bottom:805.245000px;}
.yc6_c01312{bottom:806.115000px;}
.yc5_c01312{bottom:816.480000px;}
.yc4_c01312{bottom:819.075000px;}
.yc3_c01312{bottom:819.930000px;}
.ybf_c01312{bottom:821.670000px;}
.ybd_c01312{bottom:822.525000px;}
.yc2_c01312{bottom:823.395000px;}
.ybe_c01312{bottom:824.250000px;}
.yc0_c01312{bottom:825.120000px;}
.yc1_c01312{bottom:825.990000px;}
.ybc_c01312{bottom:827.715000px;}
.ybb_c01312{bottom:839.805000px;}
.yb8_c01312{bottom:841.530000px;}
.yb9_c01312{bottom:843.270000px;}
.yb7_c01312{bottom:845.850000px;}
.yba_c01312{bottom:846.720000px;}
.yb6_c01312{bottom:861.405000px;}
.yb5_c01312{bottom:862.275000px;}
.yb4_c01312{bottom:866.595000px;}
.yb3_c01312{bottom:867.450000px;}
.yb2_c01312{bottom:868.320000px;}
.yb1_c01312{bottom:879.555000px;}
.yaf_c01312{bottom:882.150000px;}
.yac_c01312{bottom:883.005000px;}
.yab_c01312{bottom:883.875000px;}
.yaa_c01312{bottom:884.730000px;}
.yb0_c01312{bottom:886.470000px;}
.yae_c01312{bottom:887.325000px;}
.yad_c01312{bottom:888.195000px;}
.ya6_c01312{bottom:902.010000px;}
.ya8_c01312{bottom:902.880000px;}
.ya9_c01312{bottom:904.605000px;}
.ya7_c01312{bottom:905.475000px;}
.ya1_c01312{bottom:921.885000px;}
.ya4_c01312{bottom:922.755000px;}
.ya0_c01312{bottom:923.610000px;}
.ya3_c01312{bottom:924.480000px;}
.ya5_c01312{bottom:926.205000px;}
.ya2_c01312{bottom:927.930000px;}
.y9f_c01312{bottom:928.800000px;}
.y9d_c01312{bottom:941.760000px;}
.y9c_c01312{bottom:942.630000px;}
.y97_c01312{bottom:943.485000px;}
.y9b_c01312{bottom:944.355000px;}
.y9e_c01312{bottom:945.210000px;}
.y95_c01312{bottom:946.080000px;}
.y99_c01312{bottom:946.950000px;}
.y98_c01312{bottom:947.805000px;}
.y9a_c01312{bottom:948.675000px;}
.y96_c01312{bottom:949.530000px;}
.y92_c01312{bottom:964.230000px;}
.y91_c01312{bottom:965.955000px;}
.y94_c01312{bottom:966.810000px;}
.y90_c01312{bottom:967.680000px;}
.y93_c01312{bottom:968.550000px;}
.y8d_c01312{bottom:969.405000px;}
.y8c_c01312{bottom:973.725000px;}
.y8e_c01312{bottom:974.595000px;}
.y8b_c01312{bottom:975.450000px;}
.y87_c01312{bottom:976.320000px;}
.y8a_c01312{bottom:977.190000px;}
.y89_c01312{bottom:978.045000px;}
.y88_c01312{bottom:978.915000px;}
.y8f_c01312{bottom:979.770000px;}
.y82_c01312{bottom:984.090000px;}
.y86_c01312{bottom:985.830000px;}
.y84_c01312{bottom:986.685000px;}
.y83_c01312{bottom:987.555000px;}
.y85_c01312{bottom:988.410000px;}
.y80_c01312{bottom:989.280000px;}
.y81_c01312{bottom:990.150000px;}
.y7d_c01312{bottom:1003.110000px;}
.y7a_c01312{bottom:1003.965000px;}
.y7c_c01312{bottom:1005.690000px;}
.y78_c01312{bottom:1006.560000px;}
.y7e_c01312{bottom:1007.430000px;}
.y7b_c01312{bottom:1008.285000px;}
.y79_c01312{bottom:1009.155000px;}
.y7f_c01312{bottom:1019.520000px;}
.y76_c01312{bottom:1022.115000px;}
.y72_c01312{bottom:1023.840000px;}
.y71_c01312{bottom:1024.710000px;}
.y75_c01312{bottom:1026.435000px;}
.y77_c01312{bottom:1027.290000px;}
.y74_c01312{bottom:1029.030000px;}
.y73_c01312{bottom:1029.885000px;}
.y70_c01312{bottom:1030.755000px;}
.y4_c01312{bottom:1034.205000px;}
.y6e_c01312{bottom:1042.845000px;}
.y6f_c01312{bottom:1043.715000px;}
.y6d_c01312{bottom:1044.570000px;}
.y6a_c01312{bottom:1047.165000px;}
.y6b_c01312{bottom:1048.890000px;}
.y68_c01312{bottom:1049.760000px;}
.y69_c01312{bottom:1050.630000px;}
.y6c_c01312{bottom:1053.210000px;}
.y66_c01312{bottom:1064.445000px;}
.y67_c01312{bottom:1065.315000px;}
.y62_c01312{bottom:1066.170000px;}
.y63_c01312{bottom:1067.910000px;}
.y65_c01312{bottom:1068.765000px;}
.y64_c01312{bottom:1069.635000px;}
.y5f_c01312{bottom:1083.450000px;}
.y5c_c01312{bottom:1084.320000px;}
.y5a_c01312{bottom:1085.190000px;}
.y5e_c01312{bottom:1086.045000px;}
.y5b_c01312{bottom:1086.915000px;}
.y5d_c01312{bottom:1089.510000px;}
.y60_c01312{bottom:1091.235000px;}
.y61_c01312{bottom:1096.410000px;}
.y55_c01312{bottom:1105.050000px;}
.y53_c01312{bottom:1105.920000px;}
.y56_c01312{bottom:1106.790000px;}
.y58_c01312{bottom:1109.370000px;}
.y54_c01312{bottom:1110.240000px;}
.y57_c01312{bottom:1111.110000px;}
.y59_c01312{bottom:1118.880000px;}
.y50_c01312{bottom:1124.925000px;}
.y4e_c01312{bottom:1125.795000px;}
.y4f_c01312{bottom:1128.390000px;}
.y52_c01312{bottom:1129.245000px;}
.y51_c01312{bottom:1130.115000px;}
.y4c_c01312{bottom:1130.970000px;}
.y4d_c01312{bottom:1137.030000px;}
.y4a_c01312{bottom:1144.800000px;}
.y45_c01312{bottom:1145.670000px;}
.y46_c01312{bottom:1146.525000px;}
.y48_c01312{bottom:1147.395000px;}
.y4b_c01312{bottom:1149.120000px;}
.y49_c01312{bottom:1149.990000px;}
.y44_c01312{bottom:1150.845000px;}
.y47_c01312{bottom:1151.715000px;}
.y43_c01312{bottom:1164.675000px;}
.y3f_c01312{bottom:1165.530000px;}
.y40_c01312{bottom:1166.400000px;}
.y41_c01312{bottom:1167.270000px;}
.y42_c01312{bottom:1168.125000px;}
.y3e_c01312{bottom:1170.720000px;}
.y3d_c01312{bottom:1171.590000px;}
.y3b_c01312{bottom:1186.275000px;}
.y3a_c01312{bottom:1188.000000px;}
.y39_c01312{bottom:1190.595000px;}
.y3c_c01312{bottom:1192.320000px;}
.y36_c01312{bottom:1204.410000px;}
.y37_c01312{bottom:1205.280000px;}
.y33_c01312{bottom:1207.005000px;}
.y32_c01312{bottom:1207.875000px;}
.y38_c01312{bottom:1209.600000px;}
.y35_c01312{bottom:1210.470000px;}
.y34_c01312{bottom:1211.325000px;}
.y30_c01312{bottom:1225.155000px;}
.y2e_c01312{bottom:1226.880000px;}
.y2f_c01312{bottom:1228.605000px;}
.y2a_c01312{bottom:1230.330000px;}
.y2c_c01312{bottom:1231.200000px;}
.y2d_c01312{bottom:1232.070000px;}
.y2b_c01312{bottom:1232.925000px;}
.y31_c01312{bottom:1241.565000px;}
.y23_c01312{bottom:1245.885000px;}
.y24_c01312{bottom:1246.755000px;}
.y29_c01312{bottom:1251.075000px;}
.y28_c01312{bottom:1251.930000px;}
.y22_c01312{bottom:1252.800000px;}
.y25_c01312{bottom:1253.670000px;}
.y26_c01312{bottom:1254.525000px;}
.y27_c01312{bottom:1257.120000px;}
.y21_c01312{bottom:1265.760000px;}
.y20_c01312{bottom:1266.630000px;}
.y1d_c01312{bottom:1267.485000px;}
.y1e_c01312{bottom:1272.675000px;}
.y1f_c01312{bottom:1273.530000px;}
.y1b_c01312{bottom:1286.490000px;}
.y19_c01312{bottom:1287.360000px;}
.y17_c01312{bottom:1288.230000px;}
.y15_c01312{bottom:1289.085000px;}
.y1c_c01312{bottom:1290.810000px;}
.y18_c01312{bottom:1291.680000px;}
.y16_c01312{bottom:1292.550000px;}
.y1a_c01312{bottom:1293.405000px;}
.y14_c01312{bottom:1301.190000px;}
.y10_c01312{bottom:1307.235000px;}
.yf_c01312{bottom:1308.090000px;}
.y13_c01312{bottom:1311.555000px;}
.y11_c01312{bottom:1312.410000px;}
.y12_c01312{bottom:1313.280000px;}
.ye_c01312{bottom:1327.110000px;}
.yc_c01312{bottom:1333.155000px;}
.yb_c01312{bottom:1334.010000px;}
.yd_c01312{bottom:1335.750000px;}
.y9_c01312{bottom:1355.610000px;}
.y7_c01312{bottom:1356.480000px;}
.ya_c01312{bottom:1360.800000px;}
.y8_c01312{bottom:1379.805000px;}
.y6_c01312{bottom:1384.125000px;}
.y5_c01312{bottom:1385.850000px;}
.y1_c01312{bottom:1416.090000px;}
.y3_c01312{bottom:1417.830000px;}
.y2_c01312{bottom:1420.410000px;}
.h4_c01312{height:3.110063px;}
.h6_c01312{height:5.399414px;}
.h1d_c01312{height:6.209326px;}
.h2_c01312{height:9.340986px;}
.h7_c01312{height:12.418652px;}
.h3_c01312{height:15.550313px;}
.h1e_c01312{height:18.681973px;}
.h1a_c01312{height:21.759639px;}
.h1c_c01312{height:24.891299px;}
.h1b_c01312{height:27.968965px;}
.h15_c01312{height:31.100625px;}
.h16_c01312{height:34.232285px;}
.h19_c01312{height:37.309951px;}
.h5_c01312{height:40.441611px;}
.he_c01312{height:43.519277px;}
.h17_c01312{height:46.650937px;}
.h12_c01312{height:49.782598px;}
.hd_c01312{height:52.860264px;}
.hc_c01312{height:55.991924px;}
.h18_c01312{height:59.069590px;}
.hb_c01312{height:62.201250px;}
.ha_c01312{height:65.332910px;}
.h13_c01312{height:68.410576px;}
.h14_c01312{height:71.542236px;}
.h10_c01312{height:74.619902px;}
.h11_c01312{height:77.751563px;}
.hf_c01312{height:80.883223px;}
.h8_c01312{height:83.960889px;}
.h1f_c01312{height:87.092549px;}
.h22_c01312{height:90.170215px;}
.h23_c01312{height:93.301875px;}
.h20_c01312{height:99.511201px;}
.h9_c01312{height:105.720527px;}
.h21_c01312{height:133.743486px;}
.h1_c01312{height:1513.500000px;}
.h0_c01312{height:1513.725000px;}
.w1_c01312{width:1076.250000px;}
.w0_c01312{width:1076.550000px;}
.x0_c01312{left:0.000000px;}
.x4_c01312{left:126.150000px;}
.xef_c01312{left:185.760000px;}
.xf2_c01312{left:191.805000px;}
.xf4_c01312{left:196.125000px;}
.xf3_c01312{left:200.445000px;}
.xf7_c01312{left:204.765000px;}
.x10c_c01312{left:209.085000px;}
.xf5_c01312{left:215.130000px;}
.xf8_c01312{left:218.595000px;}
.xc7_c01312{left:221.190000px;}
.x8f_c01312{left:225.499272px;}
.x2d_c01312{left:228.960000px;}
.xbe_c01312{left:230.685000px;}
.x18_c01312{left:232.410000px;}
.x9d_c01312{left:234.150000px;}
.x7_c01312{left:235.875000px;}
.x19_c01312{left:238.470000px;}
.xc_c01312{left:240.194880px;}
.xf0_c01312{left:241.920000px;}
.xb7_c01312{left:245.370000px;}
.xae_c01312{left:247.965000px;}
.x6e_c01312{left:250.560000px;}
.xb8_c01312{left:253.155000px;}
.x58_c01312{left:254.880000px;}
.x49_c01312{left:258.330000px;}
.x63_c01312{left:260.070000px;}
.x103_c01312{left:262.650000px;}
.x94_c01312{left:264.390000px;}
.x3a_c01312{left:268.710000px;}
.xa5_c01312{left:273.030000px;}
.x90_c01312{left:275.610000px;}
.x51_c01312{left:277.350000px;}
.xb6_c01312{left:279.075000px;}
.x80_c01312{left:280.800000px;}
.x1a_c01312{left:282.525000px;}
.xdc_c01312{left:285.120000px;}
.xbf_c01312{left:288.570000px;}
.x9e_c01312{left:291.165000px;}
.xd0_c01312{left:292.890000px;}
.x67_c01312{left:297.210000px;}
.x1b_c01312{left:298.950000px;}
.x5b_c01312{left:300.675000px;}
.x41_c01312{left:303.270000px;}
.x78_c01312{left:305.850000px;}
.x87_c01312{left:307.590000px;}
.x2e_c01312{left:311.040000px;}
.xd6_c01312{left:312.765000px;}
.xd_c01312{left:315.360000px;}
.x95_c01312{left:317.085000px;}
.xd4_c01312{left:318.810000px;}
.x6f_c01312{left:320.550000px;}
.xc8_c01312{left:323.130000px;}
.x88_c01312{left:324.870000px;}
.xb9_c01312{left:328.320000px;}
.x104_c01312{left:330.045000px;}
.x8_c01312{left:331.770000px;}
.x1c_c01312{left:333.510000px;}
.x52_c01312{left:336.960000px;}
.xf1_c01312{left:341.280000px;}
.x27_c01312{left:343.005000px;}
.x4a_c01312{left:346.470000px;}
.x42_c01312{left:349.920000px;}
.xa9_c01312{left:351.645000px;}
.xb0_c01312{left:354.240000px;}
.xbc_c01312{left:357.690000px;}
.x1d_c01312{left:359.430000px;}
.x2f_c01312{left:362.010000px;}
.x10f_c01312{left:363.750000px;}
.x9f_c01312{left:365.475000px;}
.x96_c01312{left:368.925000px;}
.xdd_c01312{left:372.390000px;}
.xe_c01312{left:374.970000px;}
.xb5_c01312{left:378.435000px;}
.x53_c01312{left:380.160000px;}
.x3b_c01312{left:383.610000px;}
.x91_c01312{left:386.205000px;}
.x28_c01312{left:388.800000px;}
.x30_c01312{left:391.395000px;}
.x64_c01312{left:393.120000px;}
.xc9_c01312{left:394.845000px;}
.x70_c01312{left:396.570000px;}
.x105_c01312{left:398.310000px;}
.xc0_c01312{left:400.035000px;}
.x5c_c01312{left:402.630000px;}
.xe5_c01312{left:405.210000px;}
.xa6_c01312{left:406.950000px;}
.x68_c01312{left:412.125000px;}
.x97_c01312{left:416.445000px;}
.xcb_c01312{left:419.040000px;}
.x54_c01312{left:423.360000px;}
.xb1_c01312{left:425.085000px;}
.xa0_c01312{left:427.680000px;}
.xe6_c01312{left:429.405000px;}
.x1e_c01312{left:434.595000px;}
.xf_c01312{left:440.640000px;}
.x4b_c01312{left:443.235000px;}
.xf9_c01312{left:447.555000px;}
.x29_c01312{left:450.150000px;}
.xa1_c01312{left:453.600000px;}
.x108_c01312{left:457.920000px;}
.xba_c01312{left:459.645000px;}
.x31_c01312{left:461.370000px;}
.x98_c01312{left:463.110000px;}
.xb4_c01312{left:464.835000px;}
.xcc_c01312{left:468.285000px;}
.x2a_c01312{left:470.010000px;}
.x1f_c01312{left:471.750000px;}
.xc4_c01312{left:473.475000px;}
.x79_c01312{left:476.070000px;}
.x89_c01312{left:477.795000px;}
.x59_c01312{left:479.520000px;}
.x71_c01312{left:482.970000px;}
.x9_c01312{left:486.435000px;}
.xa7_c01312{left:489.885000px;}
.x72_c01312{left:491.610000px;}
.x32_c01312{left:493.350000px;}
.x3c_c01312{left:496.800000px;}
.xd7_c01312{left:499.395000px;}
.xfd_c01312{left:501.120000px;}
.xca_c01312{left:502.845000px;}
.xb2_c01312{left:505.440000px;}
.x10_c01312{left:507.165000px;}
.x92_c01312{left:510.630000px;}
.x2b_c01312{left:512.355000px;}
.x13_c01312{left:515.805000px;}
.x20_c01312{left:518.400000px;}
.x69_c01312{left:520.125000px;}
.x81_c01312{left:522.720000px;}
.x99_c01312{left:524.445000px;}
.x5d_c01312{left:531.360000px;}
.x73_c01312{left:533.085000px;}
.x33_c01312{left:536.550000px;}
.xff_c01312{left:539.130000px;}
.xe7_c01312{left:540.870000px;}
.x34_c01312{left:542.595000px;}
.xfe_c01312{left:544.320000px;}
.xfa_c01312{left:546.045000px;}
.x7a_c01312{left:547.770000px;}
.x11_c01312{left:550.365000px;}
.xf6_c01312{left:552.090000px;}
.x35_c01312{left:553.829925px;}
.xcd_c01312{left:555.555000px;}
.x5e_c01312{left:558.150000px;}
.x82_c01312{left:560.730000px;}
.xaf_c01312{left:562.470000px;}
.xaa_c01312{left:564.195000px;}
.x12_c01312{left:565.920000px;}
.x21_c01312{left:567.645000px;}
.xfc_c01312{left:569.370000px;}
.x6a_c01312{left:571.965000px;}
.xa2_c01312{left:574.560000px;}
.x100_c01312{left:576.285000px;}
.xe2_c01312{left:578.880000px;}
.xeb_c01312{left:582.330000px;}
.x8a_c01312{left:585.795000px;}
.x36_c01312{left:587.520000px;}
.x3d_c01312{left:590.970000px;}
.x7b_c01312{left:594.435000px;}
.xda_c01312{left:600.480000px;}
.xa3_c01312{left:604.800000px;}
.x22_c01312{left:606.525000px;}
.xfb_c01312{left:609.120000px;}
.xa8_c01312{left:610.845000px;}
.xc1_c01312{left:614.310000px;}
.x43_c01312{left:616.035000px;}
.x5f_c01312{left:617.760000px;}
.x9a_c01312{left:621.210000px;}
.x14_c01312{left:623.805000px;}
.xc5_c01312{left:625.530000px;}
.xd8_c01312{left:627.270000px;}
.x83_c01312{left:628.995000px;}
.xec_c01312{left:634.170000px;}
.x23_c01312{left:637.635000px;}
.x44_c01312{left:639.360000px;}
.x5a_c01312{left:641.085000px;}
.x9b_c01312{left:643.680000px;}
.x2c_c01312{left:645.405000px;}
.x101_c01312{left:648.000000px;}
.xa4_c01312{left:649.725000px;}
.x37_c01312{left:652.320000px;}
.xa_c01312{left:655.770000px;}
.x74_c01312{left:659.235000px;}
.x5_c01312{left:660.960000px;}
.x45_c01312{left:662.685000px;}
.xed_c01312{left:664.410000px;}
.x3e_c01312{left:667.875000px;}
.xce_c01312{left:670.470000px;}
.x6_c01312{left:672.195000px;}
.x75_c01312{left:673.920000px;}
.x4c_c01312{left:677.370000px;}
.xe3_c01312{left:679.110000px;}
.xde_c01312{left:682.560000px;}
.x8b_c01312{left:686.010000px;}
.x1_c01312{left:691.200000px;}
.xb3_c01312{left:693.795000px;}
.x109_c01312{left:695.520000px;}
.x60_c01312{left:698.115000px;}
.x2_c01312{left:699.840000px;}
.x7c_c01312{left:702.435000px;}
.x3_c01312{left:704.160000px;}
.x15_c01312{left:708.480000px;}
.x6b_c01312{left:710.205000px;}
.x9c_c01312{left:712.800000px;}
.x10d_c01312{left:716.250000px;}
.x55_c01312{left:718.845000px;}
.xab_c01312{left:721.440000px;}
.xb_c01312{left:724.035000px;}
.x24_c01312{left:726.630000px;}
.x7d_c01312{left:733.530000px;}
.xbd_c01312{left:735.270000px;}
.x84_c01312{left:737.850000px;}
.xd1_c01312{left:740.445000px;}
.xc6_c01312{left:743.910000px;}
.x76_c01312{left:745.635000px;}
.xdf_c01312{left:747.360000px;}
.xc2_c01312{left:749.085000px;}
.x4d_c01312{left:750.810000px;}
.xcf_c01312{left:753.405000px;}
.x16_c01312{left:755.130000px;}
.xbb_c01312{left:757.725000px;}
.x6c_c01312{left:761.190000px;}
.x3f_c01312{left:765.510000px;}
.x106_c01312{left:770.685000px;}
.x38_c01312{left:773.280000px;}
.x46_c01312{left:775.875000px;}
.x85_c01312{left:777.600000px;}
.x25_c01312{left:779.325000px;}
.x4e_c01312{left:782.790000px;}
.xe8_c01312{left:791.430000px;}
.x61_c01312{left:795.750000px;}
.xd9_c01312{left:797.475000px;}
.xd5_c01312{left:800.925000px;}
.x47_c01312{left:802.650000px;}
.x10a_c01312{left:805.245000px;}
.x56_c01312{left:806.970000px;}
.x7e_c01312{left:809.565000px;}
.x62_c01312{left:813.030000px;}
.x77_c01312{left:814.755000px;}
.x57_c01312{left:817.350000px;}
.x39_c01312{left:820.800000px;}
.x107_c01312{left:822.525000px;}
.x17_c01312{left:824.250000px;}
.x7f_c01312{left:825.990000px;}
.xd2_c01312{left:829.440000px;}
.x40_c01312{left:831.165000px;}
.x4f_c01312{left:833.760000px;}
.x86_c01312{left:836.355000px;}
.x10b_c01312{left:838.080000px;}
.xe9_c01312{left:839.805000px;}
.x65_c01312{left:842.400000px;}
.x26_c01312{left:844.125000px;}
.x66_c01312{left:848.445408px;}
.xee_c01312{left:851.040000px;}
.x8c_c01312{left:852.765000px;}
.x48_c01312{left:855.360000px;}
.x6d_c01312{left:857.085000px;}
.x110_c01312{left:859.680000px;}
.xdb_c01312{left:862.275000px;}
.x50_c01312{left:864.000000px;}
.xc3_c01312{left:866.595000px;}
.x102_c01312{left:869.190000px;}
.x93_c01312{left:873.510000px;}
.x10e_c01312{left:876.090000px;}
.x8d_c01312{left:877.830504px;}
.xea_c01312{left:881.280000px;}
.xac_c01312{left:884.730000px;}
.xd3_c01312{left:887.325000px;}
.xad_c01312{left:895.110000px;}
.x8e_c01312{left:900.285864px;}
.xe0_c01312{left:905.475000px;}
.xe1_c01312{left:918.435000px;}
.xe4_c01312{left:923.610000px;}
.x111_c01312{left:933.120000px;}
@media print{
.v2_c01312{vertical-align:-6.133333pt;}
.v1_c01312{vertical-align:-3.093333pt;}
.v0_c01312{vertical-align:0.000000pt;}
.ls2_c01312{letter-spacing:0.000000pt;}
.ls0_c01312{letter-spacing:83.040000pt;}
.ls1_c01312{letter-spacing:118.672000pt;}
.ws0_c01312{word-spacing:-9.961600pt;}
.ws1_c01312{word-spacing:0.000000pt;}
.fs2_c01312{font-size:3.072000pt;}
.fs4_c01312{font-size:5.333333pt;}
.fs1b_c01312{font-size:6.133333pt;}
.fs0_c01312{font-size:9.226667pt;}
.fs5_c01312{font-size:12.266667pt;}
.fs1_c01312{font-size:15.360000pt;}
.fs1c_c01312{font-size:18.453333pt;}
.fs18_c01312{font-size:21.493333pt;}
.fs1a_c01312{font-size:24.586667pt;}
.fs19_c01312{font-size:27.626667pt;}
.fs13_c01312{font-size:30.720000pt;}
.fs14_c01312{font-size:33.813333pt;}
.fs17_c01312{font-size:36.853333pt;}
.fs3_c01312{font-size:39.946667pt;}
.fsc_c01312{font-size:42.986667pt;}
.fs15_c01312{font-size:46.080000pt;}
.fs10_c01312{font-size:49.173333pt;}
.fsb_c01312{font-size:52.213333pt;}
.fsa_c01312{font-size:55.306667pt;}
.fs16_c01312{font-size:58.346667pt;}
.fs9_c01312{font-size:61.440000pt;}
.fs8_c01312{font-size:64.533333pt;}
.fs11_c01312{font-size:67.573333pt;}
.fs12_c01312{font-size:70.666667pt;}
.fse_c01312{font-size:73.706667pt;}
.fsf_c01312{font-size:76.800000pt;}
.fsd_c01312{font-size:79.893333pt;}
.fs6_c01312{font-size:82.933333pt;}
.fs1d_c01312{font-size:86.026667pt;}
.fs20_c01312{font-size:89.066667pt;}
.fs21_c01312{font-size:92.160000pt;}
.fs1e_c01312{font-size:98.293333pt;}
.fs7_c01312{font-size:104.426667pt;}
.fs1f_c01312{font-size:132.106667pt;}
.y0_c01312{bottom:0.000000pt;}
.y1b9_c01312{bottom:155.133333pt;}
.y1b8_c01312{bottom:163.586667pt;}
.y1b3_c01312{bottom:165.893333pt;}
.y1b5_c01312{bottom:166.653333pt;}
.y1b6_c01312{bottom:167.426667pt;}
.y1b1_c01312{bottom:169.733333pt;}
.y1b2_c01312{bottom:170.493333pt;}
.y1b0_c01312{bottom:172.026667pt;}
.y1b4_c01312{bottom:172.800000pt;}
.y1b7_c01312{bottom:173.573333pt;}
.y1ae_c01312{bottom:186.626667pt;}
.y1ad_c01312{bottom:187.386667pt;}
.y1ac_c01312{bottom:189.693333pt;}
.y1af_c01312{bottom:190.466667pt;}
.y1ab_c01312{bottom:192.000000pt;}
.y1a9_c01312{bottom:192.773333pt;}
.y1aa_c01312{bottom:193.533333pt;}
.y1a8_c01312{bottom:203.520000pt;}
.y1a3_c01312{bottom:207.360000pt;}
.y1a7_c01312{bottom:208.133333pt;}
.y1a5_c01312{bottom:208.893333pt;}
.y1a6_c01312{bottom:209.666667pt;}
.y1a4_c01312{bottom:211.973333pt;}
.y1a1_c01312{bottom:221.946667pt;}
.y1a0_c01312{bottom:223.493333pt;}
.y19e_c01312{bottom:225.786667pt;}
.y1a2_c01312{bottom:226.560000pt;}
.y19d_c01312{bottom:228.093333pt;}
.y19f_c01312{bottom:228.866667pt;}
.y19c_c01312{bottom:236.546667pt;}
.y198_c01312{bottom:237.306667pt;}
.y197_c01312{bottom:238.853333pt;}
.y19b_c01312{bottom:239.613333pt;}
.y199_c01312{bottom:244.226667pt;}
.y19a_c01312{bottom:246.533333pt;}
.y196_c01312{bottom:257.280000pt;}
.y190_c01312{bottom:258.813333pt;}
.y18f_c01312{bottom:259.586667pt;}
.y193_c01312{bottom:261.120000pt;}
.y18d_c01312{bottom:261.893333pt;}
.y195_c01312{bottom:262.653333pt;}
.y194_c01312{bottom:264.186667pt;}
.y191_c01312{bottom:264.960000pt;}
.y18e_c01312{bottom:265.733333pt;}
.y18c_c01312{bottom:266.493333pt;}
.y192_c01312{bottom:271.866667pt;}
.y189_c01312{bottom:276.480000pt;}
.y18a_c01312{bottom:278.013333pt;}
.y183_c01312{bottom:278.786667pt;}
.y184_c01312{bottom:279.546667pt;}
.y181_c01312{bottom:280.320000pt;}
.y182_c01312{bottom:281.093333pt;}
.y188_c01312{bottom:281.853333pt;}
.y185_c01312{bottom:283.386667pt;}
.y187_c01312{bottom:284.933333pt;}
.y18b_c01312{bottom:285.693333pt;}
.y186_c01312{bottom:287.226667pt;}
.y180_c01312{bottom:293.373333pt;}
.y17f_c01312{bottom:294.146667pt;}
.y17b_c01312{bottom:297.986667pt;}
.y17c_c01312{bottom:298.746667pt;}
.y178_c01312{bottom:299.520000pt;}
.y17e_c01312{bottom:300.293333pt;}
.y179_c01312{bottom:301.826667pt;}
.y17a_c01312{bottom:302.586667pt;}
.y17d_c01312{bottom:311.813333pt;}
.y176_c01312{bottom:313.346667pt;}
.y171_c01312{bottom:314.880000pt;}
.y170_c01312{bottom:315.653333pt;}
.y177_c01312{bottom:316.413333pt;}
.y16d_c01312{bottom:317.186667pt;}
.y175_c01312{bottom:318.720000pt;}
.y172_c01312{bottom:319.493333pt;}
.y173_c01312{bottom:320.253333pt;}
.y174_c01312{bottom:321.026667pt;}
.y16f_c01312{bottom:330.240000pt;}
.y16b_c01312{bottom:333.306667pt;}
.y168_c01312{bottom:334.853333pt;}
.y16e_c01312{bottom:335.613333pt;}
.y167_c01312{bottom:336.386667pt;}
.y16a_c01312{bottom:337.920000pt;}
.y169_c01312{bottom:338.693333pt;}
.y16c_c01312{bottom:348.666667pt;}
.y166_c01312{bottom:349.440000pt;}
.y160_c01312{bottom:350.973333pt;}
.y165_c01312{bottom:351.746667pt;}
.y15f_c01312{bottom:352.506667pt;}
.y162_c01312{bottom:353.280000pt;}
.y163_c01312{bottom:354.053333pt;}
.y161_c01312{bottom:354.813333pt;}
.y15e_c01312{bottom:356.346667pt;}
.y164_c01312{bottom:361.733333pt;}
.y15d_c01312{bottom:368.640000pt;}
.y15b_c01312{bottom:369.413333pt;}
.y15a_c01312{bottom:371.706667pt;}
.y1bf_c01312{bottom:374.013333pt;}
.y158_c01312{bottom:375.546667pt;}
.y159_c01312{bottom:378.626667pt;}
.y1be_c01312{bottom:379.386667pt;}
.y1bd_c01312{bottom:380.160000pt;}
.y1bc_c01312{bottom:380.933333pt;}
.y1bb_c01312{bottom:382.466667pt;}
.y15c_c01312{bottom:385.533333pt;}
.y156_c01312{bottom:387.840000pt;}
.y155_c01312{bottom:389.373333pt;}
.y1ba_c01312{bottom:392.453333pt;}
.y154_c01312{bottom:393.986667pt;}
.y157_c01312{bottom:395.520000pt;}
.y153_c01312{bottom:408.573333pt;}
.y14f_c01312{bottom:410.106667pt;}
.y152_c01312{bottom:410.880000pt;}
.y150_c01312{bottom:415.493333pt;}
.y151_c01312{bottom:417.026667pt;}
.y14e_c01312{bottom:421.626667pt;}
.y14b_c01312{bottom:423.173333pt;}
.y14a_c01312{bottom:424.706667pt;}
.y147_c01312{bottom:426.240000pt;}
.y14c_c01312{bottom:427.013333pt;}
.y149_c01312{bottom:428.546667pt;}
.y148_c01312{bottom:429.306667pt;}
.y14d_c01312{bottom:440.066667pt;}
.y141_c01312{bottom:443.133333pt;}
.y145_c01312{bottom:443.906667pt;}
.y143_c01312{bottom:445.440000pt;}
.y146_c01312{bottom:446.213333pt;}
.y144_c01312{bottom:447.746667pt;}
.y142_c01312{bottom:448.506667pt;}
.y13f_c01312{bottom:453.893333pt;}
.y13a_c01312{bottom:457.733333pt;}
.y13c_c01312{bottom:458.493333pt;}
.y139_c01312{bottom:459.266667pt;}
.y13d_c01312{bottom:460.800000pt;}
.y140_c01312{bottom:463.106667pt;}
.y13b_c01312{bottom:463.866667pt;}
.y13e_c01312{bottom:464.640000pt;}
.y138_c01312{bottom:478.466667pt;}
.y131_c01312{bottom:479.226667pt;}
.y135_c01312{bottom:481.533333pt;}
.y130_c01312{bottom:482.306667pt;}
.y132_c01312{bottom:483.066667pt;}
.y133_c01312{bottom:483.840000pt;}
.y136_c01312{bottom:484.613333pt;}
.y134_c01312{bottom:486.146667pt;}
.y137_c01312{bottom:490.746667pt;}
.y12f_c01312{bottom:494.586667pt;}
.y12e_c01312{bottom:496.133333pt;}
.y12a_c01312{bottom:496.893333pt;}
.y127_c01312{bottom:497.666667pt;}
.y128_c01312{bottom:499.973333pt;}
.y12d_c01312{bottom:500.733333pt;}
.y126_c01312{bottom:501.506667pt;}
.y129_c01312{bottom:502.266667pt;}
.y12c_c01312{bottom:503.040000pt;}
.y12b_c01312{bottom:511.493333pt;}
.y123_c01312{bottom:514.560000pt;}
.y11e_c01312{bottom:515.333333pt;}
.y11f_c01312{bottom:516.093333pt;}
.y11d_c01312{bottom:516.866667pt;}
.y124_c01312{bottom:517.626667pt;}
.y125_c01312{bottom:518.400000pt;}
.y121_c01312{bottom:519.173333pt;}
.y120_c01312{bottom:519.933333pt;}
.y122_c01312{bottom:521.466667pt;}
.y118_c01312{bottom:532.986667pt;}
.y117_c01312{bottom:533.760000pt;}
.y116_c01312{bottom:534.533333pt;}
.y119_c01312{bottom:535.293333pt;}
.y115_c01312{bottom:538.373333pt;}
.y11b_c01312{bottom:542.973333pt;}
.y11c_c01312{bottom:545.280000pt;}
.y11a_c01312{bottom:548.346667pt;}
.y112_c01312{bottom:549.893333pt;}
.y111_c01312{bottom:550.653333pt;}
.y113_c01312{bottom:551.426667pt;}
.y10e_c01312{bottom:552.960000pt;}
.y10f_c01312{bottom:554.493333pt;}
.y110_c01312{bottom:555.266667pt;}
.y114_c01312{bottom:556.026667pt;}
.y10d_c01312{bottom:562.946667pt;}
.y107_c01312{bottom:567.546667pt;}
.y10b_c01312{bottom:568.320000pt;}
.y106_c01312{bottom:569.093333pt;}
.y108_c01312{bottom:569.853333pt;}
.y109_c01312{bottom:572.160000pt;}
.y104_c01312{bottom:572.933333pt;}
.y105_c01312{bottom:573.693333pt;}
.y10a_c01312{bottom:574.466667pt;}
.y10c_c01312{bottom:579.840000pt;}
.y100_c01312{bottom:585.986667pt;}
.yfd_c01312{bottom:586.746667pt;}
.y101_c01312{bottom:587.520000pt;}
.yff_c01312{bottom:588.293333pt;}
.yfc_c01312{bottom:589.053333pt;}
.y103_c01312{bottom:589.826667pt;}
.y102_c01312{bottom:590.586667pt;}
.yfe_c01312{bottom:591.360000pt;}
.yf6_c01312{bottom:604.413333pt;}
.yf7_c01312{bottom:605.946667pt;}
.yf8_c01312{bottom:606.720000pt;}
.yfa_c01312{bottom:607.493333pt;}
.yf5_c01312{bottom:609.026667pt;}
.yf4_c01312{bottom:609.786667pt;}
.yf9_c01312{bottom:618.240000pt;}
.yfb_c01312{bottom:619.013333pt;}
.yf3_c01312{bottom:620.546667pt;}
.yf1_c01312{bottom:621.306667pt;}
.yef_c01312{bottom:622.080000pt;}
.yee_c01312{bottom:622.853333pt;}
.yec_c01312{bottom:623.613333pt;}
.yf0_c01312{bottom:624.386667pt;}
.yf2_c01312{bottom:625.146667pt;}
.yea_c01312{bottom:625.920000pt;}
.yed_c01312{bottom:626.693333pt;}
.yeb_c01312{bottom:628.226667pt;}
.ye8_c01312{bottom:638.973333pt;}
.ye7_c01312{bottom:639.746667pt;}
.ye3_c01312{bottom:642.053333pt;}
.ye5_c01312{bottom:643.586667pt;}
.ye6_c01312{bottom:644.346667pt;}
.ye4_c01312{bottom:645.120000pt;}
.ye2_c01312{bottom:645.893333pt;}
.ye1_c01312{bottom:646.653333pt;}
.ye9_c01312{bottom:651.266667pt;}
.ye0_c01312{bottom:657.413333pt;}
.ydb_c01312{bottom:658.946667pt;}
.yda_c01312{bottom:661.253333pt;}
.yde_c01312{bottom:662.013333pt;}
.ydf_c01312{bottom:662.786667pt;}
.ydd_c01312{bottom:663.546667pt;}
.ydc_c01312{bottom:664.320000pt;}
.yd9_c01312{bottom:675.066667pt;}
.yd6_c01312{bottom:676.613333pt;}
.yd4_c01312{bottom:678.146667pt;}
.yd3_c01312{bottom:678.906667pt;}
.yd7_c01312{bottom:679.680000pt;}
.yd8_c01312{bottom:680.453333pt;}
.yd5_c01312{bottom:681.213333pt;}
.yce_c01312{bottom:694.266667pt;}
.ycf_c01312{bottom:695.040000pt;}
.yd0_c01312{bottom:695.813333pt;}
.yd2_c01312{bottom:697.346667pt;}
.yd1_c01312{bottom:698.106667pt;}
.ycd_c01312{bottom:700.413333pt;}
.ycc_c01312{bottom:710.400000pt;}
.yca_c01312{bottom:711.933333pt;}
.yc8_c01312{bottom:712.706667pt;}
.ycb_c01312{bottom:713.466667pt;}
.yc9_c01312{bottom:714.240000pt;}
.yc7_c01312{bottom:715.773333pt;}
.yc6_c01312{bottom:716.546667pt;}
.yc5_c01312{bottom:725.760000pt;}
.yc4_c01312{bottom:728.066667pt;}
.yc3_c01312{bottom:728.826667pt;}
.ybf_c01312{bottom:730.373333pt;}
.ybd_c01312{bottom:731.133333pt;}
.yc2_c01312{bottom:731.906667pt;}
.ybe_c01312{bottom:732.666667pt;}
.yc0_c01312{bottom:733.440000pt;}
.yc1_c01312{bottom:734.213333pt;}
.ybc_c01312{bottom:735.746667pt;}
.ybb_c01312{bottom:746.493333pt;}
.yb8_c01312{bottom:748.026667pt;}
.yb9_c01312{bottom:749.573333pt;}
.yb7_c01312{bottom:751.866667pt;}
.yba_c01312{bottom:752.640000pt;}
.yb6_c01312{bottom:765.693333pt;}
.yb5_c01312{bottom:766.466667pt;}
.yb4_c01312{bottom:770.306667pt;}
.yb3_c01312{bottom:771.066667pt;}
.yb2_c01312{bottom:771.840000pt;}
.yb1_c01312{bottom:781.826667pt;}
.yaf_c01312{bottom:784.133333pt;}
.yac_c01312{bottom:784.893333pt;}
.yab_c01312{bottom:785.666667pt;}
.yaa_c01312{bottom:786.426667pt;}
.yb0_c01312{bottom:787.973333pt;}
.yae_c01312{bottom:788.733333pt;}
.yad_c01312{bottom:789.506667pt;}
.ya6_c01312{bottom:801.786667pt;}
.ya8_c01312{bottom:802.560000pt;}
.ya9_c01312{bottom:804.093333pt;}
.ya7_c01312{bottom:804.866667pt;}
.ya1_c01312{bottom:819.453333pt;}
.ya4_c01312{bottom:820.226667pt;}
.ya0_c01312{bottom:820.986667pt;}
.ya3_c01312{bottom:821.760000pt;}
.ya5_c01312{bottom:823.293333pt;}
.ya2_c01312{bottom:824.826667pt;}
.y9f_c01312{bottom:825.600000pt;}
.y9d_c01312{bottom:837.120000pt;}
.y9c_c01312{bottom:837.893333pt;}
.y97_c01312{bottom:838.653333pt;}
.y9b_c01312{bottom:839.426667pt;}
.y9e_c01312{bottom:840.186667pt;}
.y95_c01312{bottom:840.960000pt;}
.y99_c01312{bottom:841.733333pt;}
.y98_c01312{bottom:842.493333pt;}
.y9a_c01312{bottom:843.266667pt;}
.y96_c01312{bottom:844.026667pt;}
.y92_c01312{bottom:857.093333pt;}
.y91_c01312{bottom:858.626667pt;}
.y94_c01312{bottom:859.386667pt;}
.y90_c01312{bottom:860.160000pt;}
.y93_c01312{bottom:860.933333pt;}
.y8d_c01312{bottom:861.693333pt;}
.y8c_c01312{bottom:865.533333pt;}
.y8e_c01312{bottom:866.306667pt;}
.y8b_c01312{bottom:867.066667pt;}
.y87_c01312{bottom:867.840000pt;}
.y8a_c01312{bottom:868.613333pt;}
.y89_c01312{bottom:869.373333pt;}
.y88_c01312{bottom:870.146667pt;}
.y8f_c01312{bottom:870.906667pt;}
.y82_c01312{bottom:874.746667pt;}
.y86_c01312{bottom:876.293333pt;}
.y84_c01312{bottom:877.053333pt;}
.y83_c01312{bottom:877.826667pt;}
.y85_c01312{bottom:878.586667pt;}
.y80_c01312{bottom:879.360000pt;}
.y81_c01312{bottom:880.133333pt;}
.y7d_c01312{bottom:891.653333pt;}
.y7a_c01312{bottom:892.413333pt;}
.y7c_c01312{bottom:893.946667pt;}
.y78_c01312{bottom:894.720000pt;}
.y7e_c01312{bottom:895.493333pt;}
.y7b_c01312{bottom:896.253333pt;}
.y79_c01312{bottom:897.026667pt;}
.y7f_c01312{bottom:906.240000pt;}
.y76_c01312{bottom:908.546667pt;}
.y72_c01312{bottom:910.080000pt;}
.y71_c01312{bottom:910.853333pt;}
.y75_c01312{bottom:912.386667pt;}
.y77_c01312{bottom:913.146667pt;}
.y74_c01312{bottom:914.693333pt;}
.y73_c01312{bottom:915.453333pt;}
.y70_c01312{bottom:916.226667pt;}
.y4_c01312{bottom:919.293333pt;}
.y6e_c01312{bottom:926.973333pt;}
.y6f_c01312{bottom:927.746667pt;}
.y6d_c01312{bottom:928.506667pt;}
.y6a_c01312{bottom:930.813333pt;}
.y6b_c01312{bottom:932.346667pt;}
.y68_c01312{bottom:933.120000pt;}
.y69_c01312{bottom:933.893333pt;}
.y6c_c01312{bottom:936.186667pt;}
.y66_c01312{bottom:946.173333pt;}
.y67_c01312{bottom:946.946667pt;}
.y62_c01312{bottom:947.706667pt;}
.y63_c01312{bottom:949.253333pt;}
.y65_c01312{bottom:950.013333pt;}
.y64_c01312{bottom:950.786667pt;}
.y5f_c01312{bottom:963.066667pt;}
.y5c_c01312{bottom:963.840000pt;}
.y5a_c01312{bottom:964.613333pt;}
.y5e_c01312{bottom:965.373333pt;}
.y5b_c01312{bottom:966.146667pt;}
.y5d_c01312{bottom:968.453333pt;}
.y60_c01312{bottom:969.986667pt;}
.y61_c01312{bottom:974.586667pt;}
.y55_c01312{bottom:982.266667pt;}
.y53_c01312{bottom:983.040000pt;}
.y56_c01312{bottom:983.813333pt;}
.y58_c01312{bottom:986.106667pt;}
.y54_c01312{bottom:986.880000pt;}
.y57_c01312{bottom:987.653333pt;}
.y59_c01312{bottom:994.560000pt;}
.y50_c01312{bottom:999.933333pt;}
.y4e_c01312{bottom:1000.706667pt;}
.y4f_c01312{bottom:1003.013333pt;}
.y52_c01312{bottom:1003.773333pt;}
.y51_c01312{bottom:1004.546667pt;}
.y4c_c01312{bottom:1005.306667pt;}
.y4d_c01312{bottom:1010.693333pt;}
.y4a_c01312{bottom:1017.600000pt;}
.y45_c01312{bottom:1018.373333pt;}
.y46_c01312{bottom:1019.133333pt;}
.y48_c01312{bottom:1019.906667pt;}
.y4b_c01312{bottom:1021.440000pt;}
.y49_c01312{bottom:1022.213333pt;}
.y44_c01312{bottom:1022.973333pt;}
.y47_c01312{bottom:1023.746667pt;}
.y43_c01312{bottom:1035.266667pt;}
.y3f_c01312{bottom:1036.026667pt;}
.y40_c01312{bottom:1036.800000pt;}
.y41_c01312{bottom:1037.573333pt;}
.y42_c01312{bottom:1038.333333pt;}
.y3e_c01312{bottom:1040.640000pt;}
.y3d_c01312{bottom:1041.413333pt;}
.y3b_c01312{bottom:1054.466667pt;}
.y3a_c01312{bottom:1056.000000pt;}
.y39_c01312{bottom:1058.306667pt;}
.y3c_c01312{bottom:1059.840000pt;}
.y36_c01312{bottom:1070.586667pt;}
.y37_c01312{bottom:1071.360000pt;}
.y33_c01312{bottom:1072.893333pt;}
.y32_c01312{bottom:1073.666667pt;}
.y38_c01312{bottom:1075.200000pt;}
.y35_c01312{bottom:1075.973333pt;}
.y34_c01312{bottom:1076.733333pt;}
.y30_c01312{bottom:1089.026667pt;}
.y2e_c01312{bottom:1090.560000pt;}
.y2f_c01312{bottom:1092.093333pt;}
.y2a_c01312{bottom:1093.626667pt;}
.y2c_c01312{bottom:1094.400000pt;}
.y2d_c01312{bottom:1095.173333pt;}
.y2b_c01312{bottom:1095.933333pt;}
.y31_c01312{bottom:1103.613333pt;}
.y23_c01312{bottom:1107.453333pt;}
.y24_c01312{bottom:1108.226667pt;}
.y29_c01312{bottom:1112.066667pt;}
.y28_c01312{bottom:1112.826667pt;}
.y22_c01312{bottom:1113.600000pt;}
.y25_c01312{bottom:1114.373333pt;}
.y26_c01312{bottom:1115.133333pt;}
.y27_c01312{bottom:1117.440000pt;}
.y21_c01312{bottom:1125.120000pt;}
.y20_c01312{bottom:1125.893333pt;}
.y1d_c01312{bottom:1126.653333pt;}
.y1e_c01312{bottom:1131.266667pt;}
.y1f_c01312{bottom:1132.026667pt;}
.y1b_c01312{bottom:1143.546667pt;}
.y19_c01312{bottom:1144.320000pt;}
.y17_c01312{bottom:1145.093333pt;}
.y15_c01312{bottom:1145.853333pt;}
.y1c_c01312{bottom:1147.386667pt;}
.y18_c01312{bottom:1148.160000pt;}
.y16_c01312{bottom:1148.933333pt;}
.y1a_c01312{bottom:1149.693333pt;}
.y14_c01312{bottom:1156.613333pt;}
.y10_c01312{bottom:1161.986667pt;}
.yf_c01312{bottom:1162.746667pt;}
.y13_c01312{bottom:1165.826667pt;}
.y11_c01312{bottom:1166.586667pt;}
.y12_c01312{bottom:1167.360000pt;}
.ye_c01312{bottom:1179.653333pt;}
.yc_c01312{bottom:1185.026667pt;}
.yb_c01312{bottom:1185.786667pt;}
.yd_c01312{bottom:1187.333333pt;}
.y9_c01312{bottom:1204.986667pt;}
.y7_c01312{bottom:1205.760000pt;}
.ya_c01312{bottom:1209.600000pt;}
.y8_c01312{bottom:1226.493333pt;}
.y6_c01312{bottom:1230.333333pt;}
.y5_c01312{bottom:1231.866667pt;}
.y1_c01312{bottom:1258.746667pt;}
.y3_c01312{bottom:1260.293333pt;}
.y2_c01312{bottom:1262.586667pt;}
.h4_c01312{height:2.764500pt;}
.h6_c01312{height:4.799479pt;}
.h1d_c01312{height:5.519401pt;}
.h2_c01312{height:8.303099pt;}
.h7_c01312{height:11.038802pt;}
.h3_c01312{height:13.822500pt;}
.h1e_c01312{height:16.606198pt;}
.h1a_c01312{height:19.341901pt;}
.h1c_c01312{height:22.125599pt;}
.h1b_c01312{height:24.861302pt;}
.h15_c01312{height:27.645000pt;}
.h16_c01312{height:30.428698pt;}
.h19_c01312{height:33.164401pt;}
.h5_c01312{height:35.948099pt;}
.he_c01312{height:38.683802pt;}
.h17_c01312{height:41.467500pt;}
.h12_c01312{height:44.251198pt;}
.hd_c01312{height:46.986901pt;}
.hc_c01312{height:49.770599pt;}
.h18_c01312{height:52.506302pt;}
.hb_c01312{height:55.290000pt;}
.ha_c01312{height:58.073698pt;}
.h13_c01312{height:60.809401pt;}
.h14_c01312{height:63.593099pt;}
.h10_c01312{height:66.328802pt;}
.h11_c01312{height:69.112500pt;}
.hf_c01312{height:71.896198pt;}
.h8_c01312{height:74.631901pt;}
.h1f_c01312{height:77.415599pt;}
.h22_c01312{height:80.151302pt;}
.h23_c01312{height:82.935000pt;}
.h20_c01312{height:88.454401pt;}
.h9_c01312{height:93.973802pt;}
.h21_c01312{height:118.883099pt;}
.h1_c01312{height:1345.333333pt;}
.h0_c01312{height:1345.533333pt;}
.w1_c01312{width:956.666667pt;}
.w0_c01312{width:956.933333pt;}
.x0_c01312{left:0.000000pt;}
.x4_c01312{left:112.133333pt;}
.xef_c01312{left:165.120000pt;}
.xf2_c01312{left:170.493333pt;}
.xf4_c01312{left:174.333333pt;}
.xf3_c01312{left:178.173333pt;}
.xf7_c01312{left:182.013333pt;}
.x10c_c01312{left:185.853333pt;}
.xf5_c01312{left:191.226667pt;}
.xf8_c01312{left:194.306667pt;}
.xc7_c01312{left:196.613333pt;}
.x8f_c01312{left:200.443797pt;}
.x2d_c01312{left:203.520000pt;}
.xbe_c01312{left:205.053333pt;}
.x18_c01312{left:206.586667pt;}
.x9d_c01312{left:208.133333pt;}
.x7_c01312{left:209.666667pt;}
.x19_c01312{left:211.973333pt;}
.xc_c01312{left:213.506560pt;}
.xf0_c01312{left:215.040000pt;}
.xb7_c01312{left:218.106667pt;}
.xae_c01312{left:220.413333pt;}
.x6e_c01312{left:222.720000pt;}
.xb8_c01312{left:225.026667pt;}
.x58_c01312{left:226.560000pt;}
.x49_c01312{left:229.626667pt;}
.x63_c01312{left:231.173333pt;}
.x103_c01312{left:233.466667pt;}
.x94_c01312{left:235.013333pt;}
.x3a_c01312{left:238.853333pt;}
.xa5_c01312{left:242.693333pt;}
.x90_c01312{left:244.986667pt;}
.x51_c01312{left:246.533333pt;}
.xb6_c01312{left:248.066667pt;}
.x80_c01312{left:249.600000pt;}
.x1a_c01312{left:251.133333pt;}
.xdc_c01312{left:253.440000pt;}
.xbf_c01312{left:256.506667pt;}
.x9e_c01312{left:258.813333pt;}
.xd0_c01312{left:260.346667pt;}
.x67_c01312{left:264.186667pt;}
.x1b_c01312{left:265.733333pt;}
.x5b_c01312{left:267.266667pt;}
.x41_c01312{left:269.573333pt;}
.x78_c01312{left:271.866667pt;}
.x87_c01312{left:273.413333pt;}
.x2e_c01312{left:276.480000pt;}
.xd6_c01312{left:278.013333pt;}
.xd_c01312{left:280.320000pt;}
.x95_c01312{left:281.853333pt;}
.xd4_c01312{left:283.386667pt;}
.x6f_c01312{left:284.933333pt;}
.xc8_c01312{left:287.226667pt;}
.x88_c01312{left:288.773333pt;}
.xb9_c01312{left:291.840000pt;}
.x104_c01312{left:293.373333pt;}
.x8_c01312{left:294.906667pt;}
.x1c_c01312{left:296.453333pt;}
.x52_c01312{left:299.520000pt;}
.xf1_c01312{left:303.360000pt;}
.x27_c01312{left:304.893333pt;}
.x4a_c01312{left:307.973333pt;}
.x42_c01312{left:311.040000pt;}
.xa9_c01312{left:312.573333pt;}
.xb0_c01312{left:314.880000pt;}
.xbc_c01312{left:317.946667pt;}
.x1d_c01312{left:319.493333pt;}
.x2f_c01312{left:321.786667pt;}
.x10f_c01312{left:323.333333pt;}
.x9f_c01312{left:324.866667pt;}
.x96_c01312{left:327.933333pt;}
.xdd_c01312{left:331.013333pt;}
.xe_c01312{left:333.306667pt;}
.xb5_c01312{left:336.386667pt;}
.x53_c01312{left:337.920000pt;}
.x3b_c01312{left:340.986667pt;}
.x91_c01312{left:343.293333pt;}
.x28_c01312{left:345.600000pt;}
.x30_c01312{left:347.906667pt;}
.x64_c01312{left:349.440000pt;}
.xc9_c01312{left:350.973333pt;}
.x70_c01312{left:352.506667pt;}
.x105_c01312{left:354.053333pt;}
.xc0_c01312{left:355.586667pt;}
.x5c_c01312{left:357.893333pt;}
.xe5_c01312{left:360.186667pt;}
.xa6_c01312{left:361.733333pt;}
.x68_c01312{left:366.333333pt;}
.x97_c01312{left:370.173333pt;}
.xcb_c01312{left:372.480000pt;}
.x54_c01312{left:376.320000pt;}
.xb1_c01312{left:377.853333pt;}
.xa0_c01312{left:380.160000pt;}
.xe6_c01312{left:381.693333pt;}
.x1e_c01312{left:386.306667pt;}
.xf_c01312{left:391.680000pt;}
.x4b_c01312{left:393.986667pt;}
.xf9_c01312{left:397.826667pt;}
.x29_c01312{left:400.133333pt;}
.xa1_c01312{left:403.200000pt;}
.x108_c01312{left:407.040000pt;}
.xba_c01312{left:408.573333pt;}
.x31_c01312{left:410.106667pt;}
.x98_c01312{left:411.653333pt;}
.xb4_c01312{left:413.186667pt;}
.xcc_c01312{left:416.253333pt;}
.x2a_c01312{left:417.786667pt;}
.x1f_c01312{left:419.333333pt;}
.xc4_c01312{left:420.866667pt;}
.x79_c01312{left:423.173333pt;}
.x89_c01312{left:424.706667pt;}
.x59_c01312{left:426.240000pt;}
.x71_c01312{left:429.306667pt;}
.x9_c01312{left:432.386667pt;}
.xa7_c01312{left:435.453333pt;}
.x72_c01312{left:436.986667pt;}
.x32_c01312{left:438.533333pt;}
.x3c_c01312{left:441.600000pt;}
.xd7_c01312{left:443.906667pt;}
.xfd_c01312{left:445.440000pt;}
.xca_c01312{left:446.973333pt;}
.xb2_c01312{left:449.280000pt;}
.x10_c01312{left:450.813333pt;}
.x92_c01312{left:453.893333pt;}
.x2b_c01312{left:455.426667pt;}
.x13_c01312{left:458.493333pt;}
.x20_c01312{left:460.800000pt;}
.x69_c01312{left:462.333333pt;}
.x81_c01312{left:464.640000pt;}
.x99_c01312{left:466.173333pt;}
.x5d_c01312{left:472.320000pt;}
.x73_c01312{left:473.853333pt;}
.x33_c01312{left:476.933333pt;}
.xff_c01312{left:479.226667pt;}
.xe7_c01312{left:480.773333pt;}
.x34_c01312{left:482.306667pt;}
.xfe_c01312{left:483.840000pt;}
.xfa_c01312{left:485.373333pt;}
.x7a_c01312{left:486.906667pt;}
.x11_c01312{left:489.213333pt;}
.xf6_c01312{left:490.746667pt;}
.x35_c01312{left:492.293267pt;}
.xcd_c01312{left:493.826667pt;}
.x5e_c01312{left:496.133333pt;}
.x82_c01312{left:498.426667pt;}
.xaf_c01312{left:499.973333pt;}
.xaa_c01312{left:501.506667pt;}
.x12_c01312{left:503.040000pt;}
.x21_c01312{left:504.573333pt;}
.xfc_c01312{left:506.106667pt;}
.x6a_c01312{left:508.413333pt;}
.xa2_c01312{left:510.720000pt;}
.x100_c01312{left:512.253333pt;}
.xe2_c01312{left:514.560000pt;}
.xeb_c01312{left:517.626667pt;}
.x8a_c01312{left:520.706667pt;}
.x36_c01312{left:522.240000pt;}
.x3d_c01312{left:525.306667pt;}
.x7b_c01312{left:528.386667pt;}
.xda_c01312{left:533.760000pt;}
.xa3_c01312{left:537.600000pt;}
.x22_c01312{left:539.133333pt;}
.xfb_c01312{left:541.440000pt;}
.xa8_c01312{left:542.973333pt;}
.xc1_c01312{left:546.053333pt;}
.x43_c01312{left:547.586667pt;}
.x5f_c01312{left:549.120000pt;}
.x9a_c01312{left:552.186667pt;}
.x14_c01312{left:554.493333pt;}
.xc5_c01312{left:556.026667pt;}
.xd8_c01312{left:557.573333pt;}
.x83_c01312{left:559.106667pt;}
.xec_c01312{left:563.706667pt;}
.x23_c01312{left:566.786667pt;}
.x44_c01312{left:568.320000pt;}
.x5a_c01312{left:569.853333pt;}
.x9b_c01312{left:572.160000pt;}
.x2c_c01312{left:573.693333pt;}
.x101_c01312{left:576.000000pt;}
.xa4_c01312{left:577.533333pt;}
.x37_c01312{left:579.840000pt;}
.xa_c01312{left:582.906667pt;}
.x74_c01312{left:585.986667pt;}
.x5_c01312{left:587.520000pt;}
.x45_c01312{left:589.053333pt;}
.xed_c01312{left:590.586667pt;}
.x3e_c01312{left:593.666667pt;}
.xce_c01312{left:595.973333pt;}
.x6_c01312{left:597.506667pt;}
.x75_c01312{left:599.040000pt;}
.x4c_c01312{left:602.106667pt;}
.xe3_c01312{left:603.653333pt;}
.xde_c01312{left:606.720000pt;}
.x8b_c01312{left:609.786667pt;}
.x1_c01312{left:614.400000pt;}
.xb3_c01312{left:616.706667pt;}
.x109_c01312{left:618.240000pt;}
.x60_c01312{left:620.546667pt;}
.x2_c01312{left:622.080000pt;}
.x7c_c01312{left:624.386667pt;}
.x3_c01312{left:625.920000pt;}
.x15_c01312{left:629.760000pt;}
.x6b_c01312{left:631.293333pt;}
.x9c_c01312{left:633.600000pt;}
.x10d_c01312{left:636.666667pt;}
.x55_c01312{left:638.973333pt;}
.xab_c01312{left:641.280000pt;}
.xb_c01312{left:643.586667pt;}
.x24_c01312{left:645.893333pt;}
.x7d_c01312{left:652.026667pt;}
.xbd_c01312{left:653.573333pt;}
.x84_c01312{left:655.866667pt;}
.xd1_c01312{left:658.173333pt;}
.xc6_c01312{left:661.253333pt;}
.x76_c01312{left:662.786667pt;}
.xdf_c01312{left:664.320000pt;}
.xc2_c01312{left:665.853333pt;}
.x4d_c01312{left:667.386667pt;}
.xcf_c01312{left:669.693333pt;}
.x16_c01312{left:671.226667pt;}
.xbb_c01312{left:673.533333pt;}
.x6c_c01312{left:676.613333pt;}
.x3f_c01312{left:680.453333pt;}
.x106_c01312{left:685.053333pt;}
.x38_c01312{left:687.360000pt;}
.x46_c01312{left:689.666667pt;}
.x85_c01312{left:691.200000pt;}
.x25_c01312{left:692.733333pt;}
.x4e_c01312{left:695.813333pt;}
.xe8_c01312{left:703.493333pt;}
.x61_c01312{left:707.333333pt;}
.xd9_c01312{left:708.866667pt;}
.xd5_c01312{left:711.933333pt;}
.x47_c01312{left:713.466667pt;}
.x10a_c01312{left:715.773333pt;}
.x56_c01312{left:717.306667pt;}
.x7e_c01312{left:719.613333pt;}
.x62_c01312{left:722.693333pt;}
.x77_c01312{left:724.226667pt;}
.x57_c01312{left:726.533333pt;}
.x39_c01312{left:729.600000pt;}
.x107_c01312{left:731.133333pt;}
.x17_c01312{left:732.666667pt;}
.x7f_c01312{left:734.213333pt;}
.xd2_c01312{left:737.280000pt;}
.x40_c01312{left:738.813333pt;}
.x4f_c01312{left:741.120000pt;}
.x86_c01312{left:743.426667pt;}
.x10b_c01312{left:744.960000pt;}
.xe9_c01312{left:746.493333pt;}
.x65_c01312{left:748.800000pt;}
.x26_c01312{left:750.333333pt;}
.x66_c01312{left:754.173696pt;}
.xee_c01312{left:756.480000pt;}
.x8c_c01312{left:758.013333pt;}
.x48_c01312{left:760.320000pt;}
.x6d_c01312{left:761.853333pt;}
.x110_c01312{left:764.160000pt;}
.xdb_c01312{left:766.466667pt;}
.x50_c01312{left:768.000000pt;}
.xc3_c01312{left:770.306667pt;}
.x102_c01312{left:772.613333pt;}
.x93_c01312{left:776.453333pt;}
.x10e_c01312{left:778.746667pt;}
.x8d_c01312{left:780.293781pt;}
.xea_c01312{left:783.360000pt;}
.xac_c01312{left:786.426667pt;}
.xd3_c01312{left:788.733333pt;}
.xad_c01312{left:795.653333pt;}
.x8e_c01312{left:800.254101pt;}
.xe0_c01312{left:804.866667pt;}
.xe1_c01312{left:816.386667pt;}
.xe4_c01312{left:820.986667pt;}
.x111_c01312{left:829.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_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_5ac7bbb278f88e4c519ff145.woff2')format("woff");}.ff1_c01313{font-family:ff1_c01313;line-height:1.109863;font-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_c01313{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m47_c01313{transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053575,0.000000,0.000000,0.250000,0,0);}
.ma_c01313{transform:matrix(0.053625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053625,0.000000,0.000000,0.250000,0,0);}
.mc_c01313{transform:matrix(0.066700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066700,0.000000,0.000000,0.250000,0,0);}
.m108_c01313{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m113_c01313{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m198_c01313{transform:matrix(0.095750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095750,0.000000,0.000000,0.250000,0,0);}
.m44_c01313{transform:matrix(0.095875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095875,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01313{transform:matrix(0.101325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101325,0.000000,0.000000,0.250000,0,0);}
.m2f_c01313{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.mcc_c01313{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);}
.mf2_c01313{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m131_c01313{transform:matrix(0.113300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113300,0.000000,0.000000,0.250000,0,0);}
.m28_c01313{transform:matrix(0.115275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115275,0.000000,0.000000,0.250000,0,0);}
.mcb_c01313{transform:matrix(0.116525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116525,0.000000,0.000000,0.250000,0,0);}
.m191_c01313{transform:matrix(0.117900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117900,0.000000,0.000000,0.250000,0,0);}
.m109_c01313{transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);}
.m3c_c01313{transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);}
.m84_c01313{transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);}
.m6_c01313{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m14f_c01313{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m46_c01313{transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125875,0.000000,0.000000,0.250000,0,0);}
.m160_c01313{transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01313{transform:matrix(0.128550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128550,0.000000,0.000000,0.250000,0,0);}
.m120_c01313{transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);}
.m13b_c01313{transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129450,0.000000,0.000000,0.250000,0,0);}
.m18d_c01313{transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129850,0.000000,0.000000,0.250000,0,0);}
.m16c_c01313{transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133075,0.000000,0.000000,0.250000,0,0);}
.m162_c01313{transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);}
.m24_c01313{transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135175,0.000000,0.000000,0.250000,0,0);}
.m183_c01313{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m16a_c01313{transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01313{transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);}
.me0_c01313{transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);}
.m11c_c01313{transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139825,0.000000,0.000000,0.250000,0,0);}
.mb1_c01313{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.m3f_c01313{transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);}
.mfc_c01313{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.m9c_c01313{transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);}
.m3e_c01313{transform:matrix(0.141700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141700,0.000000,0.000000,0.250000,0,0);}
.m192_c01313{transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);}
.m172_c01313{transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143325,0.000000,0.000000,0.250000,0,0);}
.m140_c01313{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.mb_c01313{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m132_c01313{transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);}
.mee_c01313{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m94_c01313{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);}
.m116_c01313{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.m7b_c01313{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.md3_c01313{transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);}
.m105_c01313{transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);}
.m16d_c01313{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);}
.m13_c01313{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m164_c01313{transform:matrix(0.150200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150200,0.000000,0.000000,0.250000,0,0);}
.mfb_c01313{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.mca_c01313{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m173_c01313{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.m123_c01313{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m3b_c01313{transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);}
.m7c_c01313{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);}
.m17c_c01313{transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152950,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01313{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.m1a_c01313{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);}
.m49_c01313{transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);}
.m11f_c01313{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.mae_c01313{transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);}
.ma3_c01313{transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);}
.me6_c01313{transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);}
.m151_c01313{transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155600,0.000000,0.000000,0.250000,0,0);}
.mc9_c01313{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.m182_c01313{transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);}
.m2a_c01313{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.m17d_c01313{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.m10a_c01313{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01313{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);}
.m165_c01313{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.m170_c01313{transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159075,0.000000,0.000000,0.250000,0,0);}
.me8_c01313{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m125_c01313{transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);}
.m11d_c01313{transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161000,0.000000,0.000000,0.250000,0,0);}
.m19d_c01313{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.m148_c01313{transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);}
.m93_c01313{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.m52_c01313{transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);}
.m96_c01313{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m122_c01313{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.m8e_c01313{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m5f_c01313{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.m8d_c01313{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);}
.m157_c01313{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.mce_c01313{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m107_c01313{transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164600,0.000000,0.000000,0.250000,0,0);}
.m15d_c01313{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01313{transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);}
.m27_c01313{transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);}
.m12b_c01313{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m18e_c01313{transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);}
.m103_c01313{transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);}
.m115_c01313{transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);}
.m117_c01313{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);}
.m91_c01313{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.m5d_c01313{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.m102_c01313{transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);}
.m144_c01313{transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171000,0.000000,0.000000,0.250000,0,0);}
.m138_c01313{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.mbb_c01313{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.md0_c01313{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);}
.mb4_c01313{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m111_c01313{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.me7_c01313{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m10b_c01313{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.ma0_c01313{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m133_c01313{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.mc3_c01313{transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);}
.m16b_c01313{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m16e_c01313{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m13a_c01313{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.m16f_c01313{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.mff_c01313{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);}
.m15c_c01313{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m9d_c01313{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.m56_c01313{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);}
.m135_c01313{transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);}
.m193_c01313{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.m161_c01313{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.m19a_c01313{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m2c_c01313{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.m14_c01313{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m19b_c01313{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);}
.md8_c01313{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.m146_c01313{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.m4b_c01313{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);}
.m10c_c01313{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m69_c01313{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);}
.m185_c01313{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m17e_c01313{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);}
.m136_c01313{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.m6c_c01313{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.mf9_c01313{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01313{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.mdf_c01313{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);}
.m101_c01313{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);}
.m195_c01313{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.m194_c01313{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.mcd_c01313{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);}
.m15f_c01313{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);}
.m29_c01313{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);}
.m9a_c01313{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.m167_c01313{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m97_c01313{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m6d_c01313{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);}
.m187_c01313{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);}
.m58_c01313{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m110_c01313{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);}
.m12c_c01313{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.m166_c01313{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.m7f_c01313{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);}
.m150_c01313{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m45_c01313{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.mc7_c01313{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m15e_c01313{transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01313{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.mf5_c01313{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);}
.m1b_c01313{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m184_c01313{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m86_c01313{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m147_c01313{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m64_c01313{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);}
.m1a4_c01313{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);}
.m15a_c01313{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m1af_c01313{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);}
.m19f_c01313{transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);}
.m196_c01313{transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194875,0.000000,0.000000,0.250000,0,0);}
.m154_c01313{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);}
.m14a_c01313{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);}
.m11e_c01313{transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);}
.m19e_c01313{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);}
.m129_c01313{transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);}
.m25_c01313{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);}
.m26_c01313{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);}
.m14d_c01313{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m19c_c01313{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.m178_c01313{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.mc2_c01313{transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);}
.m95_c01313{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);}
.m13e_c01313{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m104_c01313{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);}
.m126_c01313{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);}
.mb9_c01313{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.m100_c01313{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);}
.ma9_c01313{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);}
.m179_c01313{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m85_c01313{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.m142_c01313{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);}
.m14e_c01313{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);}
.m12e_c01313{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);}
.md9_c01313{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m4a_c01313{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);}
.m177_c01313{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);}
.m9e_c01313{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);}
.m76_c01313{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);}
.m112_c01313{transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);}
.md1_c01313{transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);}
.m40_c01313{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m175_c01313{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m8c_c01313{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.m121_c01313{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);}
.m11b_c01313{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);}
.m12a_c01313{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.maa_c01313{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m67_c01313{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);}
.mdc_c01313{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.mbe_c01313{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);}
.mb6_c01313{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);}
.mea_c01313{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m159_c01313{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);}
.m137_c01313{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);}
.m13f_c01313{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);}
.m7_c01313{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m15b_c01313{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);}
.m130_c01313{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);}
.m149_c01313{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);}
.m128_c01313{transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);}
.mc5_c01313{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.m90_c01313{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);}
.mac_c01313{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m10_c01313{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);}
.ma2_c01313{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);}
.m171_c01313{transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);}
.m36_c01313{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);}
.m134_c01313{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);}
.m11a_c01313{transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);}
.mc8_c01313{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.m190_c01313{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);}
.m1a3_c01313{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.m66_c01313{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.m6f_c01313{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m18a_c01313{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.m127_c01313{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.m78_c01313{transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219025,0.000000,0.000000,0.250000,0,0);}
.m6e_c01313{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m5b_c01313{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m6a_c01313{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);}
.m186_c01313{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m176_c01313{transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);}
.m141_c01313{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.mba_c01313{transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);}
.mdb_c01313{transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);}
.m59_c01313{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m143_c01313{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);}
.m6b_c01313{transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);}
.m80_c01313{transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);}
.mc0_c01313{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);}
.m10d_c01313{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);}
.m98_c01313{transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);}
.m8_c01313{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mf6_c01313{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m5e_c01313{transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225450,0.000000,0.000000,0.250000,0,0);}
.m124_c01313{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);}
.m4e_c01313{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);}
.mbf_c01313{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);}
.m114_c01313{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m199_c01313{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);}
.m10e_c01313{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.m152_c01313{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.m17a_c01313{transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);}
.m145_c01313{transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);}
.m153_c01313{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);}
.m50_c01313{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);}
.mfa_c01313{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);}
.mbd_c01313{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m4c_c01313{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m189_c01313{transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);}
.mcf_c01313{transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);}
.mf3_c01313{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);}
.m17f_c01313{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);}
.m7d_c01313{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);}
.m87_c01313{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.mf0_c01313{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.mc6_c01313{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);}
.m188_c01313{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);}
.mdd_c01313{transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);}
.m61_c01313{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.md4_c01313{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);}
.m18f_c01313{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);}
.m181_c01313{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);}
.m8b_c01313{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);}
.m163_c01313{transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);}
.m35_c01313{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);}
.m83_c01313{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);}
.m7e_c01313{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m14c_c01313{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);}
.mb0_c01313{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.m53_c01313{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.mc4_c01313{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.m8a_c01313{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);}
.m139_c01313{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);}
.ma6_c01313{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);}
.m5c_c01313{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);}
.m155_c01313{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);}
.m12f_c01313{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);}
.ma1_c01313{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_c01313{transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);}
.m75_c01313{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m4d_c01313{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);}
.mf4_c01313{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);}
.m10f_c01313{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);}
.mf8_c01313{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m13c_c01313{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);}
.mde_c01313{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);}
.m8f_c01313{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.mb3_c01313{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m48_c01313{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);}
.m1a6_c01313{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);}
.m9f_c01313{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.mf1_c01313{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m92_c01313{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);}
.m88_c01313{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m82_c01313{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);}
.m12_c01313{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m51_c01313{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);}
.m17_c01313{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);}
.m68_c01313{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);}
.m39_c01313{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);}
.m38_c01313{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2_c01313{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01313{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01313{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);}
.m55_c01313{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c01313{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);}
.m37_c01313{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);}
.m3d_c01313{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01313{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);}
.mf_c01313{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c01313{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c01313{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);}
.m2b_c01313{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma7_c01313{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);}
.m4_c01313{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);}
.m5a_c01313{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m57_c01313{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m54_c01313{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);}
.md_c01313{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m74_c01313{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mb7_c01313{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);}
.m30_c01313{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m77_c01313{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m41_c01313{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m62_c01313{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m70_c01313{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01313{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.maf_c01313{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01313{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m99_c01313{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);}
.mda_c01313{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01313{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m65_c01313{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me1_c01313{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m16_c01313{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);}
.m23_c01313{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);}
.m1_c01313{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m31_c01313{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c01313{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);}
.ma4_c01313{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mf7_c01313{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m118_c01313{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3_c01313{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);}
.m20_c01313{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m32_c01313{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);}
.m106_c01313{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01313{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md6_c01313{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);}
.m13d_c01313{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mbc_c01313{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m73_c01313{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m71_c01313{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m156_c01313{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mc1_c01313{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);}
.mfd_c01313{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);}
.me2_c01313{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01313{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);}
.mb8_c01313{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m18_c01313{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01313{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.md7_c01313{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);}
.m1b0_c01313{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md5_c01313{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.me9_c01313{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m119_c01313{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.me5_c01313{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m14b_c01313{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m18c_c01313{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.me_c01313{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);}
.m12d_c01313{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01313{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);}
.m18b_c01313{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m0_c01313{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m89_c01313{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);}
.md2_c01313{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m72_c01313{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mef_c01313{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m63_c01313{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);}
.m34_c01313{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.me4_c01313{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m79_c01313{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m33_c01313{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);}
.m19_c01313{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m21_c01313{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mab_c01313{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01313{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.med_c01313{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m9b_c01313{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01313{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m42_c01313{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.ma8_c01313{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mad_c01313{transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.747500,0.000000,0.000000,0.250000,0,0);}
.m22_c01313{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01313{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.meb_c01313{transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);}
.mfe_c01313{transform:matrix(1.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.067500,0.000000,0.000000,0.250000,0,0);}
.m43_c01313{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);}
.m17b_c01313{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m169_c01313{transform:matrix(1.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.322500,0.000000,0.000000,0.250000,0,0);}
.m174_c01313{transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.332500,0.000000,0.000000,0.250000,0,0);}
.m168_c01313{transform:matrix(1.712500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.712500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.712500,0.000000,0.000000,0.250000,0,0);}
.m197_c01313{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m158_c01313{transform:matrix(1.877500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.877500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.877500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01313{transform:matrix(1.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.912500,0.000000,0.000000,0.250000,0,0);}
.me3_c01313{transform:matrix(2.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.217500,0.000000,0.000000,0.250000,0,0);}
.m180_c01313{transform:matrix(3.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.282500,0.000000,0.000000,0.250000,0,0);}
.mec_c01313{transform:matrix(4.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.447500,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01313{transform:matrix(4.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.595000,0.000000,0.000000,0.250000,0,0);}
.mb5_c01313{transform:matrix(5.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.620000,0.000000,0.000000,0.250000,0,0);}
.v2_c01313{vertical-align:-6.960000px;}
.v0_c01313{vertical-align:0.000000px;}
.v1_c01313{vertical-align:3.480000px;}
.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;}
}
.ws1_c01313{word-spacing:-16.679280px;}
.ws4_c01313{word-spacing:-14.772300px;}
.ws3_c01313{word-spacing:-4.968600px;}
.ws5_c01313{word-spacing:0.000000px;}
.ws0_c01313{word-spacing:28.376304px;}
.ws2_c01313{word-spacing:39.262320px;}
._0_c01313{width:33.415152px;}
.fc0_c01313{color:transparent;}
.fs9_c01313{font-size:3.456000px;}
.fs15_c01313{font-size:6.000000px;}
.fsa_c01313{font-size:6.900000px;}
.fsd_c01313{font-size:10.380000px;}
.fse_c01313{font-size:13.800000px;}
.fs3_c01313{font-size:17.280000px;}
.fs2_c01313{font-size:20.760000px;}
.fs11_c01313{font-size:24.180000px;}
.fs1d_c01313{font-size:27.660000px;}
.fs7_c01313{font-size:31.080000px;}
.fs0_c01313{font-size:34.560000px;}
.fs4_c01313{font-size:38.040000px;}
.fs1_c01313{font-size:41.460000px;}
.fs5_c01313{font-size:44.940000px;}
.fs8_c01313{font-size:48.360000px;}
.fsc_c01313{font-size:51.840000px;}
.fs6_c01313{font-size:55.320000px;}
.fs18_c01313{font-size:58.740000px;}
.fs1b_c01313{font-size:62.220000px;}
.fs14_c01313{font-size:65.640000px;}
.fs13_c01313{font-size:69.120000px;}
.fs12_c01313{font-size:72.600000px;}
.fs16_c01313{font-size:76.020000px;}
.fs1a_c01313{font-size:79.500000px;}
.fs1c_c01313{font-size:82.920000px;}
.fs19_c01313{font-size:86.400000px;}
.fs1f_c01313{font-size:89.880000px;}
.fs20_c01313{font-size:93.300000px;}
.fs17_c01313{font-size:96.780000px;}
.fs1e_c01313{font-size:100.200000px;}
.fsf_c01313{font-size:124.440000px;}
.fs10_c01313{font-size:138.240000px;}
.fsb_c01313{font-size:162.420000px;}
.y0_c01313{bottom:0.000000px;}
.y203_c01313{bottom:142.560000px;}
.y1fe_c01313{bottom:149.475000px;}
.y202_c01313{bottom:150.330000px;}
.y1fd_c01313{bottom:152.925000px;}
.y1fc_c01313{bottom:157.245000px;}
.y200_c01313{bottom:159.840000px;}
.y201_c01313{bottom:160.710000px;}
.y1ff_c01313{bottom:163.290000px;}
.y1fa_c01313{bottom:166.755000px;}
.y1fb_c01313{bottom:167.610000px;}
.y1f9_c01313{bottom:170.205000px;}
.y1f4_c01313{bottom:171.075000px;}
.y1f8_c01313{bottom:171.930000px;}
.y1f5_c01313{bottom:172.800000px;}
.y1f7_c01313{bottom:175.395000px;}
.y1f3_c01313{bottom:176.250000px;}
.y1f6_c01313{bottom:177.120000px;}
.y1f1_c01313{bottom:188.355000px;}
.y1ef_c01313{bottom:190.080000px;}
.y1eb_c01313{bottom:191.805000px;}
.y1f0_c01313{bottom:192.675000px;}
.y1f2_c01313{bottom:194.400000px;}
.y1ee_c01313{bottom:195.270000px;}
.y1ea_c01313{bottom:196.125000px;}
.y1ed_c01313{bottom:196.995000px;}
.y1ec_c01313{bottom:197.850000px;}
.y1e8_c01313{bottom:207.360000px;}
.y1e6_c01313{bottom:210.810000px;}
.y1e4_c01313{bottom:212.550000px;}
.y1e2_c01313{bottom:213.405000px;}
.y1e9_c01313{bottom:214.275000px;}
.y1e5_c01313{bottom:215.130000px;}
.y1e7_c01313{bottom:216.000000px;}
.y1e3_c01313{bottom:216.870000px;}
.y1e0_c01313{bottom:231.555000px;}
.y1df_c01313{bottom:232.410000px;}
.y1dd_c01313{bottom:233.280000px;}
.y1dc_c01313{bottom:234.150000px;}
.y1e1_c01313{bottom:235.005000px;}
.y1db_c01313{bottom:235.875000px;}
.y1de_c01313{bottom:237.600000px;}
.y1da_c01313{bottom:248.835000px;}
.y1d6_c01313{bottom:251.430000px;}
.y1d9_c01313{bottom:252.285000px;}
.y1d8_c01313{bottom:254.880000px;}
.y1d4_c01313{bottom:255.750000px;}
.y1d7_c01313{bottom:256.605000px;}
.y1d5_c01313{bottom:258.330000px;}
.y1d2_c01313{bottom:260.925000px;}
.y1d3_c01313{bottom:269.565000px;}
.y1d1_c01313{bottom:270.435000px;}
.y1d0_c01313{bottom:271.290000px;}
.y1cf_c01313{bottom:274.755000px;}
.y1ce_c01313{bottom:277.350000px;}
.y1cd_c01313{bottom:290.310000px;}
.y1cc_c01313{bottom:291.165000px;}
.y1cb_c01313{bottom:292.890000px;}
.y1c9_c01313{bottom:293.760000px;}
.y1c5_c01313{bottom:296.355000px;}
.y1c7_c01313{bottom:297.210000px;}
.y1ca_c01313{bottom:298.080000px;}
.y1c8_c01313{bottom:301.530000px;}
.y1c6_c01313{bottom:302.400000px;}
.y1c4_c01313{bottom:312.765000px;}
.y1c2_c01313{bottom:313.635000px;}
.y1c1_c01313{bottom:314.490000px;}
.y1bf_c01313{bottom:315.360000px;}
.y1be_c01313{bottom:316.230000px;}
.y1c0_c01313{bottom:319.680000px;}
.y1bd_c01313{bottom:322.275000px;}
.y1bc_c01313{bottom:323.130000px;}
.y1c3_c01313{bottom:324.000000px;}
.y1bb_c01313{bottom:330.915000px;}
.y1b7_c01313{bottom:335.235000px;}
.y1b9_c01313{bottom:336.960000px;}
.y1ba_c01313{bottom:337.830000px;}
.y1b6_c01313{bottom:341.280000px;}
.y1b5_c01313{bottom:343.005000px;}
.y1b8_c01313{bottom:343.875000px;}
.y1b4_c01313{bottom:354.240000px;}
.y1b1_c01313{bottom:356.835000px;}
.y1b2_c01313{bottom:360.285000px;}
.y1b0_c01313{bottom:362.010000px;}
.y1b3_c01313{bottom:363.750000px;}
.y1af_c01313{bottom:370.650000px;}
.y1ae_c01313{bottom:375.840000px;}
.y1ad_c01313{bottom:376.710000px;}
.y1ab_c01313{bottom:377.565000px;}
.y1ac_c01313{bottom:381.885000px;}
.y1aa_c01313{bottom:390.525000px;}
.y1a9_c01313{bottom:391.395000px;}
.y1a6_c01313{bottom:393.120000px;}
.y1a4_c01313{bottom:394.845000px;}
.y1a2_c01313{bottom:395.715000px;}
.y1a3_c01313{bottom:398.310000px;}
.y1a8_c01313{bottom:400.035000px;}
.y1a5_c01313{bottom:401.760000px;}
.y1a7_c01313{bottom:405.210000px;}
.y1a1_c01313{bottom:412.995000px;}
.y19f_c01313{bottom:415.590000px;}
.y1a0_c01313{bottom:418.170000px;}
.y19c_c01313{bottom:419.910000px;}
.y19e_c01313{bottom:423.360000px;}
.y19b_c01313{bottom:424.230000px;}
.y19d_c01313{bottom:432.000000px;}
.y19a_c01313{bottom:433.725000px;}
.y197_c01313{bottom:434.595000px;}
.y195_c01313{bottom:438.045000px;}
.y199_c01313{bottom:438.915000px;}
.y198_c01313{bottom:439.770000px;}
.y196_c01313{bottom:440.640000px;}
.y193_c01313{bottom:441.510000px;}
.y194_c01313{bottom:444.960000px;}
.y191_c01313{bottom:453.600000px;}
.y192_c01313{bottom:454.470000px;}
.y190_c01313{bottom:457.050000px;}
.y18c_c01313{bottom:457.920000px;}
.y18d_c01313{bottom:458.790000px;}
.y18f_c01313{bottom:460.515000px;}
.y18b_c01313{bottom:461.370000px;}
.y18e_c01313{bottom:463.110000px;}
.y188_c01313{bottom:473.475000px;}
.y187_c01313{bottom:475.200000px;}
.y186_c01313{bottom:476.070000px;}
.y189_c01313{bottom:478.650000px;}
.y185_c01313{bottom:480.390000px;}
.y18a_c01313{bottom:490.755000px;}
.y184_c01313{bottom:494.205000px;}
.y182_c01313{bottom:495.075000px;}
.y183_c01313{bottom:495.930000px;}
.y180_c01313{bottom:497.670000px;}
.y181_c01313{bottom:499.395000px;}
.y17d_c01313{bottom:500.250000px;}
.y17f_c01313{bottom:501.990000px;}
.y17e_c01313{bottom:502.845000px;}
.y17c_c01313{bottom:514.080000px;}
.y179_c01313{bottom:517.530000px;}
.y17a_c01313{bottom:519.270000px;}
.y176_c01313{bottom:520.125000px;}
.y178_c01313{bottom:520.995000px;}
.y17b_c01313{bottom:521.850000px;}
.y177_c01313{bottom:525.315000px;}
.y174_c01313{bottom:533.085000px;}
.y175_c01313{bottom:533.955000px;}
.y173_c01313{bottom:534.810000px;}
.y16c_c01313{bottom:538.275000px;}
.y16a_c01313{bottom:539.130000px;}
.y16d_c01313{bottom:543.450000px;}
.y171_c01313{bottom:545.190000px;}
.y16f_c01313{bottom:546.045000px;}
.y16e_c01313{bottom:546.915000px;}
.y16b_c01313{bottom:549.510000px;}
.y1d_c01313{bottom:552.960000px;}
.y170_c01313{bottom:553.830000px;}
.y168_c01313{bottom:554.685000px;}
.y167_c01313{bottom:555.555000px;}
.y172_c01313{bottom:556.410000px;}
.y169_c01313{bottom:557.280000px;}
.y162_c01313{bottom:558.150000px;}
.y166_c01313{bottom:559.005000px;}
.y1c_c01313{bottom:559.875000px;}
.y163_c01313{bottom:560.730000px;}
.y164_c01313{bottom:561.600000px;}
.y165_c01313{bottom:563.325000px;}
.y161_c01313{bottom:565.050000px;}
.y160_c01313{bottom:565.920000px;}
.y15d_c01313{bottom:573.690000px;}
.y15c_c01313{bottom:574.560000px;}
.y1b_c01313{bottom:575.430000px;}
.y15b_c01313{bottom:576.285000px;}
.y1a_c01313{bottom:578.010000px;}
.y159_c01313{bottom:578.880000px;}
.y157_c01313{bottom:580.605000px;}
.y158_c01313{bottom:582.330000px;}
.y15a_c01313{bottom:584.070000px;}
.y15f_c01313{bottom:584.925000px;}
.y15e_c01313{bottom:585.795000px;}
.y156_c01313{bottom:588.390000px;}
.y155_c01313{bottom:594.435000px;}
.y152_c01313{bottom:597.030000px;}
.y154_c01313{bottom:597.885000px;}
.y150_c01313{bottom:599.610000px;}
.y153_c01313{bottom:602.205000px;}
.y151_c01313{bottom:603.075000px;}
.y14e_c01313{bottom:603.930000px;}
.y14f_c01313{bottom:605.670000px;}
.y14b_c01313{bottom:611.715000px;}
.y14a_c01313{bottom:614.310000px;}
.y146_c01313{bottom:615.165000px;}
.y14d_c01313{bottom:616.035000px;}
.y147_c01313{bottom:616.890000px;}
.y149_c01313{bottom:617.760000px;}
.y148_c01313{bottom:619.485000px;}
.y145_c01313{bottom:621.210000px;}
.y14c_c01313{bottom:622.080000px;}
.y144_c01313{bottom:635.040000px;}
.y141_c01313{bottom:637.635000px;}
.y140_c01313{bottom:638.490000px;}
.y13d_c01313{bottom:640.230000px;}
.y13f_c01313{bottom:641.085000px;}
.y143_c01313{bottom:641.955000px;}
.y142_c01313{bottom:642.810000px;}
.y13e_c01313{bottom:643.680000px;}
.y13c_c01313{bottom:644.550000px;}
.y13a_c01313{bottom:645.405000px;}
.y139_c01313{bottom:647.130000px;}
.y13b_c01313{bottom:651.450000px;}
.y138_c01313{bottom:654.915000px;}
.y136_c01313{bottom:658.365000px;}
.y135_c01313{bottom:660.090000px;}
.y12f_c01313{bottom:660.960000px;}
.y130_c01313{bottom:661.830000px;}
.y132_c01313{bottom:664.410000px;}
.y137_c01313{bottom:667.875000px;}
.y133_c01313{bottom:672.195000px;}
.y131_c01313{bottom:673.050000px;}
.y12e_c01313{bottom:676.515000px;}
.y134_c01313{bottom:677.370000px;}
.y12c_c01313{bottom:679.110000px;}
.y12a_c01313{bottom:679.965000px;}
.y12b_c01313{bottom:681.690000px;}
.y129_c01313{bottom:682.560000px;}
.y12d_c01313{bottom:683.430000px;}
.y128_c01313{bottom:692.925000px;}
.y124_c01313{bottom:693.795000px;}
.y127_c01313{bottom:694.650000px;}
.y123_c01313{bottom:695.520000px;}
.y121_c01313{bottom:696.390000px;}
.y208_c01313{bottom:697.245000px;}
.y120_c01313{bottom:698.115000px;}
.y122_c01313{bottom:699.840000px;}
.y126_c01313{bottom:702.435000px;}
.y125_c01313{bottom:704.160000px;}
.y11e_c01313{bottom:715.395000px;}
.y11f_c01313{bottom:716.250000px;}
.y11b_c01313{bottom:718.845000px;}
.y11a_c01313{bottom:721.440000px;}
.y119_c01313{bottom:722.310000px;}
.y11d_c01313{bottom:724.035000px;}
.y118_c01313{bottom:727.485000px;}
.y117_c01313{bottom:729.210000px;}
.y11c_c01313{bottom:732.675000px;}
.y10d_c01313{bottom:738.720000px;}
.y115_c01313{bottom:739.590000px;}
.y114_c01313{bottom:740.445000px;}
.y113_c01313{bottom:741.315000px;}
.y112_c01313{bottom:742.170000px;}
.y10f_c01313{bottom:743.040000px;}
.y10e_c01313{bottom:743.910000px;}
.y10b_c01313{bottom:744.765000px;}
.y111_c01313{bottom:746.490000px;}
.y116_c01313{bottom:747.360000px;}
.y110_c01313{bottom:749.955000px;}
.y10c_c01313{bottom:752.550000px;}
.y10a_c01313{bottom:753.405000px;}
.y109_c01313{bottom:754.275000px;}
.y108_c01313{bottom:755.130000px;}
.y106_c01313{bottom:756.870000px;}
.y107_c01313{bottom:757.725000px;}
.y105_c01313{bottom:758.595000px;}
.y102_c01313{bottom:761.190000px;}
.y104_c01313{bottom:764.640000px;}
.y101_c01313{bottom:765.510000px;}
.y103_c01313{bottom:766.365000px;}
.yfd_c01313{bottom:772.410000px;}
.yff_c01313{bottom:773.280000px;}
.y100_c01313{bottom:775.005000px;}
.yfe_c01313{bottom:775.875000px;}
.yfb_c01313{bottom:776.730000px;}
.yfc_c01313{bottom:777.600000px;}
.yf8_c01313{bottom:779.325000px;}
.y17_c01313{bottom:780.195000px;}
.yf7_c01313{bottom:781.920000px;}
.yfa_c01313{bottom:783.645000px;}
.yf6_c01313{bottom:784.515000px;}
.yf9_c01313{bottom:785.370000px;}
.yf4_c01313{bottom:798.330000px;}
.y16_c01313{bottom:800.070000px;}
.yf5_c01313{bottom:800.925000px;}
.yf3_c01313{bottom:804.390000px;}
.yf2_c01313{bottom:805.245000px;}
.yf1_c01313{bottom:806.115000px;}
.yef_c01313{bottom:806.970000px;}
.yf0_c01313{bottom:807.840000px;}
.y15_c01313{bottom:814.755000px;}
.yee_c01313{bottom:817.350000px;}
.yed_c01313{bottom:819.075000px;}
.y18_c01313{bottom:819.930000px;}
.yea_c01313{bottom:821.670000px;}
.y19_c01313{bottom:822.525000px;}
.ye7_c01313{bottom:823.395000px;}
.ye9_c01313{bottom:824.250000px;}
.yec_c01313{bottom:825.120000px;}
.yeb_c01313{bottom:825.990000px;}
.ye8_c01313{bottom:827.715000px;}
.ye5_c01313{bottom:837.210000px;}
.ye6_c01313{bottom:838.080000px;}
.ye3_c01313{bottom:838.950000px;}
.ye1_c01313{bottom:839.805000px;}
.ye0_c01313{bottom:842.400000px;}
.ydd_c01313{bottom:843.270000px;}
.ye4_c01313{bottom:844.125000px;}
.ye2_c01313{bottom:844.995000px;}
.ydf_c01313{bottom:845.850000px;}
.yde_c01313{bottom:846.720000px;}
.ydc_c01313{bottom:847.590000px;}
.y14_c01313{bottom:849.315000px;}
.ydb_c01313{bottom:854.490000px;}
.yda_c01313{bottom:856.230000px;}
.yd9_c01313{bottom:857.955000px;}
.yd7_c01313{bottom:862.275000px;}
.yd8_c01313{bottom:868.320000px;}
.y207_c01313{bottom:877.830000px;}
.yd5_c01313{bottom:879.555000px;}
.y13_c01313{bottom:881.280000px;}
.yd6_c01313{bottom:882.150000px;}
.yd2_c01313{bottom:883.005000px;}
.yd3_c01313{bottom:884.730000px;}
.yd4_c01313{bottom:885.600000px;}
.ycf_c01313{bottom:886.470000px;}
.yd1_c01313{bottom:887.325000px;}
.yd0_c01313{bottom:888.195000px;}
.yce_c01313{bottom:889.050000px;}
.ycd_c01313{bottom:896.835000px;}
.ycc_c01313{bottom:899.430000px;}
.y12_c01313{bottom:900.285000px;}
.yc9_c01313{bottom:902.880000px;}
.yc7_c01313{bottom:904.605000px;}
.ycb_c01313{bottom:905.475000px;}
.yca_c01313{bottom:906.330000px;}
.yc8_c01313{bottom:908.070000px;}
.yc5_c01313{bottom:917.565000px;}
.yc4_c01313{bottom:921.030000px;}
.y10_c01313{bottom:921.885000px;}
.yc2_c01313{bottom:922.755000px;}
.y11_c01313{bottom:924.480000px;}
.yc0_c01313{bottom:925.350000px;}
.yc3_c01313{bottom:926.205000px;}
.yc6_c01313{bottom:927.075000px;}
.yc1_c01313{bottom:927.930000px;}
.ybf_c01313{bottom:929.670000px;}
.ybe_c01313{bottom:940.890000px;}
.ybc_c01313{bottom:941.760000px;}
.yf_c01313{bottom:943.485000px;}
.yb7_c01313{bottom:944.355000px;}
.yb9_c01313{bottom:945.210000px;}
.ybd_c01313{bottom:946.080000px;}
.yba_c01313{bottom:946.950000px;}
.ybb_c01313{bottom:947.805000px;}
.yb8_c01313{bottom:948.675000px;}
.yd_c01313{bottom:952.125000px;}
.yb6_c01313{bottom:959.040000px;}
.yb5_c01313{bottom:960.765000px;}
.yb4_c01313{bottom:961.635000px;}
.yb0_c01313{bottom:963.360000px;}
.yaf_c01313{bottom:965.085000px;}
.yb2_c01313{bottom:965.955000px;}
.yb3_c01313{bottom:966.810000px;}
.yb1_c01313{bottom:967.680000px;}
.yae_c01313{bottom:969.405000px;}
.yad_c01313{bottom:980.640000px;}
.ye_c01313{bottom:981.510000px;}
.yab_c01313{bottom:982.365000px;}
.ya8_c01313{bottom:983.235000px;}
.yac_c01313{bottom:984.090000px;}
.ya7_c01313{bottom:984.960000px;}
.yaa_c01313{bottom:985.830000px;}
.ya9_c01313{bottom:986.685000px;}
.ya6_c01313{bottom:988.410000px;}
.ya5_c01313{bottom:989.280000px;}
.yc_c01313{bottom:992.730000px;}
.ya_c01313{bottom:993.600000px;}
.ya4_c01313{bottom:998.790000px;}
.ya3_c01313{bottom:1000.515000px;}
.yb_c01313{bottom:1001.370000px;}
.ya0_c01313{bottom:1002.240000px;}
.ya2_c01313{bottom:1003.110000px;}
.y9d_c01313{bottom:1003.965000px;}
.ya1_c01313{bottom:1006.560000px;}
.y9f_c01313{bottom:1007.430000px;}
.y9e_c01313{bottom:1009.155000px;}
.y9c_c01313{bottom:1014.330000px;}
.y9b_c01313{bottom:1019.520000px;}
.y9a_c01313{bottom:1020.390000px;}
.y99_c01313{bottom:1022.115000px;}
.y97_c01313{bottom:1022.970000px;}
.y95_c01313{bottom:1024.710000px;}
.y96_c01313{bottom:1025.565000px;}
.y98_c01313{bottom:1026.435000px;}
.y93_c01313{bottom:1039.395000px;}
.y92_c01313{bottom:1040.250000px;}
.y8f_c01313{bottom:1041.120000px;}
.y94_c01313{bottom:1042.845000px;}
.y91_c01313{bottom:1043.715000px;}
.y9_c01313{bottom:1044.570000px;}
.y8e_c01313{bottom:1045.440000px;}
.y90_c01313{bottom:1046.310000px;}
.y8d_c01313{bottom:1047.165000px;}
.y8c_c01313{bottom:1059.270000px;}
.y8b_c01313{bottom:1062.720000px;}
.y8_c01313{bottom:1065.315000px;}
.y89_c01313{bottom:1066.170000px;}
.y8a_c01313{bottom:1067.040000px;}
.y87_c01313{bottom:1069.635000px;}
.y88_c01313{bottom:1072.230000px;}
.y86_c01313{bottom:1079.130000px;}
.y84_c01313{bottom:1080.870000px;}
.y7_c01313{bottom:1081.725000px;}
.y82_c01313{bottom:1082.595000px;}
.y80_c01313{bottom:1084.320000px;}
.y85_c01313{bottom:1085.190000px;}
.y7d_c01313{bottom:1086.045000px;}
.y83_c01313{bottom:1086.915000px;}
.y81_c01313{bottom:1088.640000px;}
.y7f_c01313{bottom:1090.365000px;}
.y7e_c01313{bottom:1091.235000px;}
.y6_c01313{bottom:1093.830000px;}
.y7c_c01313{bottom:1100.730000px;}
.y7b_c01313{bottom:1101.600000px;}
.y78_c01313{bottom:1102.470000px;}
.y79_c01313{bottom:1104.195000px;}
.y76_c01313{bottom:1105.050000px;}
.y75_c01313{bottom:1105.920000px;}
.y7a_c01313{bottom:1106.790000px;}
.y73_c01313{bottom:1107.645000px;}
.y77_c01313{bottom:1108.515000px;}
.y74_c01313{bottom:1110.240000px;}
.y71_c01313{bottom:1122.330000px;}
.y70_c01313{bottom:1123.200000px;}
.y5_c01313{bottom:1124.925000px;}
.y6d_c01313{bottom:1125.795000px;}
.y6f_c01313{bottom:1126.650000px;}
.y72_c01313{bottom:1127.520000px;}
.y6e_c01313{bottom:1130.970000px;}
.y6c_c01313{bottom:1131.840000px;}
.y4_c01313{bottom:1137.030000px;}
.y205_c01313{bottom:1137.885000px;}
.y206_c01313{bottom:1139.610000px;}
.y68_c01313{bottom:1144.800000px;}
.y3_c01313{bottom:1145.670000px;}
.y67_c01313{bottom:1146.525000px;}
.y204_c01313{bottom:1147.395000px;}
.y6b_c01313{bottom:1148.250000px;}
.y6a_c01313{bottom:1149.120000px;}
.y69_c01313{bottom:1149.990000px;}
.y65_c01313{bottom:1163.805000px;}
.y61_c01313{bottom:1165.530000px;}
.y2_c01313{bottom:1166.400000px;}
.y5f_c01313{bottom:1167.270000px;}
.y64_c01313{bottom:1168.125000px;}
.y63_c01313{bottom:1168.995000px;}
.y62_c01313{bottom:1169.850000px;}
.y60_c01313{bottom:1171.590000px;}
.y66_c01313{bottom:1178.490000px;}
.y5e_c01313{bottom:1181.955000px;}
.y5c_c01313{bottom:1184.550000px;}
.y57_c01313{bottom:1185.405000px;}
.y5b_c01313{bottom:1186.275000px;}
.y5a_c01313{bottom:1187.130000px;}
.y5d_c01313{bottom:1189.725000px;}
.y59_c01313{bottom:1191.450000px;}
.y56_c01313{bottom:1192.320000px;}
.y58_c01313{bottom:1193.190000px;}
.y54_c01313{bottom:1204.410000px;}
.y51_c01313{bottom:1205.280000px;}
.y4f_c01313{bottom:1206.150000px;}
.y50_c01313{bottom:1207.005000px;}
.y53_c01313{bottom:1208.730000px;}
.y55_c01313{bottom:1209.600000px;}
.y52_c01313{bottom:1210.470000px;}
.y4e_c01313{bottom:1212.195000px;}
.y4d_c01313{bottom:1213.050000px;}
.y4a_c01313{bottom:1226.010000px;}
.y47_c01313{bottom:1226.880000px;}
.y46_c01313{bottom:1227.750000px;}
.y48_c01313{bottom:1228.605000px;}
.y4b_c01313{bottom:1229.475000px;}
.y49_c01313{bottom:1232.070000px;}
.y45_c01313{bottom:1232.925000px;}
.y4c_c01313{bottom:1233.795000px;}
.y44_c01313{bottom:1244.160000px;}
.y43_c01313{bottom:1245.885000px;}
.y40_c01313{bottom:1247.610000px;}
.y3e_c01313{bottom:1248.480000px;}
.y3f_c01313{bottom:1249.350000px;}
.y42_c01313{bottom:1251.930000px;}
.y41_c01313{bottom:1252.800000px;}
.y3d_c01313{bottom:1267.485000px;}
.y3a_c01313{bottom:1269.210000px;}
.y3c_c01313{bottom:1270.080000px;}
.y38_c01313{bottom:1270.950000px;}
.y3b_c01313{bottom:1271.805000px;}
.y39_c01313{bottom:1272.675000px;}
.y37_c01313{bottom:1273.530000px;}
.y34_c01313{bottom:1286.490000px;}
.y1_c01313{bottom:1287.360000px;}
.y36_c01313{bottom:1288.230000px;}
.y35_c01313{bottom:1289.955000px;}
.y31_c01313{bottom:1293.405000px;}
.y32_c01313{bottom:1294.275000px;}
.y33_c01313{bottom:1302.915000px;}
.y30_c01313{bottom:1304.640000px;}
.y2f_c01313{bottom:1307.235000px;}
.y2d_c01313{bottom:1308.090000px;}
.y2c_c01313{bottom:1308.960000px;}
.y2e_c01313{bottom:1309.830000px;}
.y2b_c01313{bottom:1310.685000px;}
.y2a_c01313{bottom:1311.555000px;}
.y28_c01313{bottom:1312.410000px;}
.y27_c01313{bottom:1313.280000px;}
.y29_c01313{bottom:1314.150000px;}
.y26_c01313{bottom:1329.690000px;}
.y25_c01313{bottom:1330.560000px;}
.y23_c01313{bottom:1337.475000px;}
.y22_c01313{bottom:1339.200000px;}
.y24_c01313{bottom:1340.925000px;}
.y21_c01313{bottom:1341.795000px;}
.y1f_c01313{bottom:1342.650000px;}
.y20_c01313{bottom:1354.755000px;}
.y1e_c01313{bottom:1416.090000px;}
.hb_c01313{height:3.110063px;}
.h17_c01313{height:5.399414px;}
.hc_c01313{height:6.209326px;}
.hf_c01313{height:9.340986px;}
.h10_c01313{height:12.418652px;}
.h5_c01313{height:15.550313px;}
.h4_c01313{height:18.681973px;}
.h13_c01313{height:21.759639px;}
.h1f_c01313{height:24.891299px;}
.h9_c01313{height:27.968965px;}
.h2_c01313{height:31.100625px;}
.h6_c01313{height:34.232285px;}
.h3_c01313{height:37.309951px;}
.h7_c01313{height:40.441611px;}
.ha_c01313{height:43.519277px;}
.he_c01313{height:46.650937px;}
.h8_c01313{height:49.782598px;}
.h1a_c01313{height:52.860264px;}
.h20_c01313{height:53.262598px;}
.h24_c01313{height:55.241250px;}
.h1d_c01313{height:55.991924px;}
.h25_c01313{height:56.280264px;}
.h16_c01313{height:59.069590px;}
.h15_c01313{height:62.201250px;}
.h14_c01313{height:65.332910px;}
.h18_c01313{height:68.410576px;}
.h1c_c01313{height:71.542236px;}
.h1e_c01313{height:74.619902px;}
.h1b_c01313{height:77.751563px;}
.h22_c01313{height:80.883223px;}
.h23_c01313{height:83.960889px;}
.h19_c01313{height:87.092549px;}
.h21_c01313{height:90.170215px;}
.h11_c01313{height:111.983848px;}
.h12_c01313{height:124.402500px;}
.hd_c01313{height:146.162139px;}
.h0_c01313{height:1509.405000px;}
.h1_c01313{height:1509.750000px;}
.w0_c01313{width:1088.640000px;}
.w1_c01313{width:1089.000000px;}
.x0_c01313{left:0.000000px;}
.x2_c01313{left:4.320000px;}
.x3_c01313{left:8.640000px;}
.x6_c01313{left:19.875000px;}
.x7_c01313{left:31.110000px;}
.x8_c01313{left:41.475000px;}
.x4_c01313{left:46.650000px;}
.x5_c01313{left:51.840000px;}
.x1_c01313{left:76.890000px;}
.x9_c01313{left:187.485000px;}
.xa_c01313{left:202.170000px;}
.xf6_c01313{left:225.510000px;}
.x10d_c01313{left:228.090000px;}
.x7d_c01313{left:229.830000px;}
.xee_c01313{left:231.555000px;}
.xde_c01313{left:233.280000px;}
.xb2_c01313{left:235.875000px;}
.x5e_c01313{left:237.600000px;}
.x4d_c01313{left:240.195000px;}
.x30_c01313{left:241.920000px;}
.x23_c01313{left:243.645000px;}
.x70_c01313{left:245.370000px;}
.x8f_c01313{left:248.835000px;}
.xcc_c01313{left:251.430000px;}
.xf9_c01313{left:255.750000px;}
.xbb_c01313{left:258.330000px;}
.x16_c01313{left:260.070000px;}
.x71_c01313{left:262.650000px;}
.x10a_c01313{left:264.390000px;}
.x31_c01313{left:266.115000px;}
.x95_c01313{left:267.840000px;}
.x6a_c01313{left:273.030000px;}
.x66_c01313{left:276.480000px;}
.x3b_c01313{left:278.205000px;}
.xab_c01313{left:280.800000px;}
.x58_c01313{left:282.525000px;}
.xeb_c01313{left:284.250000px;}
.x24_c01313{left:285.990000px;}
.xb5_c01313{left:287.715000px;}
.xe3_c01313{left:290.310000px;}
.xbc_c01313{left:292.035000px;}
.xe8_c01313{left:293.760000px;}
.xb6_c01313{left:295.485000px;}
.x43_c01313{left:298.080000px;}
.x89_c01313{left:303.270000px;}
.xf3_c01313{left:304.995000px;}
.xc2_c01313{left:307.590000px;}
.x17_c01313{left:311.910000px;}
.x72_c01313{left:314.490000px;}
.x32_c01313{left:317.085000px;}
.x9f_c01313{left:318.810000px;}
.x106_c01313{left:320.550000px;}
.xa5_c01313{left:323.130000px;}
.x90_c01313{left:326.595000px;}
.x96_c01313{left:330.915000px;}
.x3c_c01313{left:334.365000px;}
.x44_c01313{left:336.090000px;}
.x25_c01313{left:338.685000px;}
.x5f_c01313{left:341.280000px;}
.xb9_c01313{left:343.875000px;}
.x82_c01313{left:346.470000px;}
.x97_c01313{left:349.050000px;}
.x59_c01313{left:351.645000px;}
.xd2_c01313{left:355.965000px;}
.xc_c01313{left:358.560000px;}
.xdf_c01313{left:362.880000px;}
.x33_c01313{left:365.475000px;}
.xac_c01313{left:368.070000px;}
.xef_c01313{left:369.795000px;}
.x18_c01313{left:371.520000px;}
.x4e_c01313{left:373.245000px;}
.xd8_c01313{left:375.840000px;}
.xf7_c01313{left:377.565000px;}
.xfa_c01313{left:379.290000px;}
.x10_c01313{left:381.030000px;}
.xa6_c01313{left:384.480000px;}
.x8a_c01313{left:387.075000px;}
.x83_c01313{left:388.800000px;}
.xbd_c01313{left:390.525000px;}
.xcf_c01313{left:392.250000px;}
.x60_c01313{left:394.845000px;}
.x7e_c01313{left:399.165000px;}
.xd_c01313{left:401.760000px;}
.x19_c01313{left:404.355000px;}
.x110_c01313{left:406.080000px;}
.x5a_c01313{left:408.675000px;}
.x26_c01313{left:411.270000px;}
.xe4_c01313{left:412.995000px;}
.xe_c01313{left:414.720000px;}
.x91_c01313{left:419.040000px;}
.xa0_c01313{left:420.765000px;}
.x3d_c01313{left:424.230000px;}
.xc3_c01313{left:426.810000px;}
.xb7_c01313{left:428.550000px;}
.x8b_c01313{left:430.275000px;}
.x98_c01313{left:432.000000px;}
.xf8_c01313{left:433.725000px;}
.xfb_c01313{left:435.450000px;}
.x27_c01313{left:437.190000px;}
.x34_c01313{left:440.640000px;}
.xf0_c01313{left:443.235000px;}
.x11_c01313{left:444.960000px;}
.xad_c01313{left:446.685000px;}
.xe1_c01313{left:449.280000px;}
.xf_c01313{left:451.005000px;}
.x3e_c01313{left:453.600000px;}
.xd0_c01313{left:455.325000px;}
.x1a_c01313{left:457.050000px;}
.xb_c01313{left:463.965000px;}
.xcd_c01313{left:467.430000px;}
.xff_c01313{left:469.155000px;}
.xbe_c01313{left:471.750000px;}
.xd3_c01313{left:473.475000px;}
.xc7_c01313{left:476.070000px;}
.x67_c01313{left:479.520000px;}
.x111_c01313{left:482.970000px;}
.xb8_c01313{left:484.710000px;}
.xc4_c01313{left:486.435000px;}
.x79_c01313{left:490.755000px;}
.x35_c01313{left:493.350000px;}
.x12_c01313{left:496.800000px;}
.x6b_c01313{left:498.525000px;}
.x28_c01313{left:501.120000px;}
.xae_c01313{left:502.845000px;}
.x73_c01313{left:505.440000px;}
.x99_c01313{left:508.035000px;}
.x10e_c01313{left:509.760000px;}
.x92_c01313{left:513.210000px;}
.xa1_c01313{left:515.805000px;}
.x68_c01313{left:518.400000px;}
.x10b_c01313{left:520.995000px;}
.x29_c01313{left:522.720000px;}
.x103_c01313{left:524.445000px;}
.xb3_c01313{left:526.170000px;}
.x74_c01313{left:527.910000px;}
.x61_c01313{left:531.360000px;}
.x3f_c01313{left:535.680000px;}
.x36_c01313{left:539.130000px;}
.x45_c01313{left:540.870000px;}
.x2a_c01313{left:542.595000px;}
.xe5_c01313{left:544.319475px;}
.xd9_c01313{left:546.045000px;}
.xdc_c01313{left:547.770000px;}
.xc8_c01313{left:549.510000px;}
.x4f_c01313{left:551.235000px;}
.xf4_c01313{left:552.960000px;}
.x1b_c01313{left:554.685000px;}
.x7f_c01313{left:556.410000px;}
.x84_c01313{left:559.005000px;}
.x40_c01313{left:561.600000px;}
.x104_c01313{left:565.050000px;}
.x7a_c01313{left:566.790000px;}
.x1c_c01313{left:569.370000px;}
.x2b_c01313{left:571.965000px;}
.x13_c01313{left:574.560000px;}
.x107_c01313{left:582.330000px;}
.x6c_c01313{left:584.925000px;}
.x41_c01313{left:587.520000px;}
.xda_c01313{left:589.245000px;}
.x46_c01313{left:591.840000px;}
.xc9_c01313{left:593.565000px;}
.xa2_c01313{left:595.290000px;}
.x93_c01313{left:597.030000px;}
.x10c_c01313{left:598.755000px;}
.x112_c01313{left:600.480000px;}
.x100_c01313{left:603.930000px;}
.x50_c01313{left:605.670000px;}
.x8c_c01313{left:608.250000px;}
.x5b_c01313{left:609.990000px;}
.xd4_c01313{left:611.715000px;}
.x62_c01313{left:613.440000px;}
.xfc_c01313{left:617.760000px;}
.xfd_c01313{left:619.485000px;}
.x113_c01313{left:621.210000px;}
.x37_c01313{left:622.950000px;}
.xce_c01313{left:624.675000px;}
.xa3_c01313{left:626.400000px;}
.xec_c01313{left:628.125000px;}
.x2c_c01313{left:630.720000px;}
.x85_c01313{left:632.445000px;}
.xdd_c01313{left:635.040000px;}
.x47_c01313{left:636.765000px;}
.x9a_c01313{left:638.490000px;}
.x69_c01313{left:640.230000px;}
.xd1_c01313{left:641.955000px;}
.x102_c01313{left:643.680000px;}
.x101_c01313{left:646.275000px;}
.x51_c01313{left:648.000000px;}
.x1d_c01313{left:652.320000px;}
.xc5_c01313{left:654.045000px;}
.x108_c01313{left:655.770000px;}
.x38_c01313{left:657.510000px;}
.x75_c01313{left:659.235000px;}
.x114_c01313{left:660.960000px;}
.x6d_c01313{left:665.280000px;}
.xb4_c01313{left:668.730000px;}
.xfe_c01313{left:670.470000px;}
.xbf_c01313{left:672.195000px;}
.xa7_c01313{left:674.790000px;}
.xd5_c01313{left:676.515000px;}
.xca_c01313{left:678.240000px;}
.x52_c01313{left:680.835000px;}
.x48_c01313{left:682.560000px;}
.xa4_c01313{left:686.880000px;}
.x76_c01313{left:688.605000px;}
.x53_c01313{left:690.330000px;}
.xaf_c01313{left:693.795000px;}
.x63_c01313{left:696.390000px;}
.x80_c01313{left:698.970000px;}
.x9b_c01313{left:701.565000px;}
.x1e_c01313{left:704.160000px;}
.x64_c01313{left:708.480000px;}
.xe0_c01313{left:710.205000px;}
.xcb_c01313{left:712.800000px;}
.x81_c01313{left:715.395000px;}
.x5c_c01313{left:717.120000px;}
.x86_c01313{left:718.845000px;}
.xc0_c01313{left:720.570000px;}
.x105_c01313{left:726.630000px;}
.x49_c01313{left:728.355000px;}
.x39_c01313{left:731.805000px;}
.xf5_c01313{left:734.400000px;}
.x54_c01313{left:736.125000px;}
.x116_c01313{left:738.720000px;}
.x5d_c01313{left:740.445000px;}
.x1f_c01313{left:743.040000px;}
.x9c_c01313{left:745.635000px;}
.xa8_c01313{left:747.360000px;}
.xba_c01313{left:749.955000px;}
.xd6_c01313{left:753.405000px;}
.xed_c01313{left:757.725000px;}
.x10f_c01313{left:760.320000px;}
.x77_c01313{left:763.770000px;}
.x109_c01313{left:765.510000px;}
.x6e_c01313{left:767.235000px;}
.x9d_c01313{left:772.410000px;}
.x94_c01313{left:776.730000px;}
.x4a_c01313{left:779.325000px;}
.xe9_c01313{left:781.050000px;}
.x7b_c01313{left:783.645000px;}
.x14_c01313{left:786.240000px;}
.x55_c01313{left:787.965000px;}
.xa9_c01313{left:789.690000px;}
.x87_c01313{left:793.155000px;}
.xc6_c01313{left:796.605000px;}
.xc1_c01313{left:799.200000px;}
.x56_c01313{left:800.925000px;}
.x8d_c01313{left:804.390000px;}
.x20_c01313{left:806.115000px;}
.xea_c01313{left:808.710000px;}
.xe6_c01313{left:810.435000px;}
.x78_c01313{left:813.030000px;}
.xb0_c01313{left:814.755000px;}
.x21_c01313{left:817.350000px;}
.x2d_c01313{left:819.930000px;}
.x57_c01313{left:821.670000px;}
.xaa_c01313{left:823.395000px;}
.x6f_c01313{left:825.120000px;}
.x65_c01313{left:827.715000px;}
.xe2_c01313{left:829.440000px;}
.x9e_c01313{left:831.165000px;}
.x4b_c01313{left:832.890000px;}
.x8e_c01313{left:837.210000px;}
.x2e_c01313{left:839.805000px;}
.x3a_c01313{left:842.400000px;}
.x15_c01313{left:844.125000px;}
.x7c_c01313{left:846.720000px;}
.x22_c01313{left:851.040000px;}
.xe7_c01313{left:853.635000px;}
.x115_c01313{left:864.870000px;}
.x88_c01313{left:868.320000px;}
.xb1_c01313{left:872.640000px;}
.xdb_c01313{left:876.090000px;}
.x42_c01313{left:879.555000px;}
.x2f_c01313{left:881.280000px;}
.x4c_c01313{left:883.875000px;}
.xd7_c01313{left:886.470000px;}
.xf1_c01313{left:889.920000px;}
.xf2_c01313{left:898.560000px;}
.x11a_c01313{left:914.970000px;}
.x118_c01313{left:946.950000px;}
.x11b_c01313{left:949.530000px;}
.x117_c01313{left:951.270000px;}
.x119_c01313{left:965.955000px;}
@media print{
.v2_c01313{vertical-align:-6.186667pt;}
.v0_c01313{vertical-align:0.000000pt;}
.v1_c01313{vertical-align:3.093333pt;}
.ls0_c01313{letter-spacing:0.000000pt;}
.ws1_c01313{word-spacing:-14.826027pt;}
.ws4_c01313{word-spacing:-13.130933pt;}
.ws3_c01313{word-spacing:-4.416533pt;}
.ws5_c01313{word-spacing:0.000000pt;}
.ws0_c01313{word-spacing:25.223381pt;}
.ws2_c01313{word-spacing:34.899840pt;}
._0_c01313{width:29.702357pt;}
.fs9_c01313{font-size:3.072000pt;}
.fs15_c01313{font-size:5.333333pt;}
.fsa_c01313{font-size:6.133333pt;}
.fsd_c01313{font-size:9.226667pt;}
.fse_c01313{font-size:12.266667pt;}
.fs3_c01313{font-size:15.360000pt;}
.fs2_c01313{font-size:18.453333pt;}
.fs11_c01313{font-size:21.493333pt;}
.fs1d_c01313{font-size:24.586667pt;}
.fs7_c01313{font-size:27.626667pt;}
.fs0_c01313{font-size:30.720000pt;}
.fs4_c01313{font-size:33.813333pt;}
.fs1_c01313{font-size:36.853333pt;}
.fs5_c01313{font-size:39.946667pt;}
.fs8_c01313{font-size:42.986667pt;}
.fsc_c01313{font-size:46.080000pt;}
.fs6_c01313{font-size:49.173333pt;}
.fs18_c01313{font-size:52.213333pt;}
.fs1b_c01313{font-size:55.306667pt;}
.fs14_c01313{font-size:58.346667pt;}
.fs13_c01313{font-size:61.440000pt;}
.fs12_c01313{font-size:64.533333pt;}
.fs16_c01313{font-size:67.573333pt;}
.fs1a_c01313{font-size:70.666667pt;}
.fs1c_c01313{font-size:73.706667pt;}
.fs19_c01313{font-size:76.800000pt;}
.fs1f_c01313{font-size:79.893333pt;}
.fs20_c01313{font-size:82.933333pt;}
.fs17_c01313{font-size:86.026667pt;}
.fs1e_c01313{font-size:89.066667pt;}
.fsf_c01313{font-size:110.613333pt;}
.fs10_c01313{font-size:122.880000pt;}
.fsb_c01313{font-size:144.373333pt;}
.y0_c01313{bottom:0.000000pt;}
.y203_c01313{bottom:126.720000pt;}
.y1fe_c01313{bottom:132.866667pt;}
.y202_c01313{bottom:133.626667pt;}
.y1fd_c01313{bottom:135.933333pt;}
.y1fc_c01313{bottom:139.773333pt;}
.y200_c01313{bottom:142.080000pt;}
.y201_c01313{bottom:142.853333pt;}
.y1ff_c01313{bottom:145.146667pt;}
.y1fa_c01313{bottom:148.226667pt;}
.y1fb_c01313{bottom:148.986667pt;}
.y1f9_c01313{bottom:151.293333pt;}
.y1f4_c01313{bottom:152.066667pt;}
.y1f8_c01313{bottom:152.826667pt;}
.y1f5_c01313{bottom:153.600000pt;}
.y1f7_c01313{bottom:155.906667pt;}
.y1f3_c01313{bottom:156.666667pt;}
.y1f6_c01313{bottom:157.440000pt;}
.y1f1_c01313{bottom:167.426667pt;}
.y1ef_c01313{bottom:168.960000pt;}
.y1eb_c01313{bottom:170.493333pt;}
.y1f0_c01313{bottom:171.266667pt;}
.y1f2_c01313{bottom:172.800000pt;}
.y1ee_c01313{bottom:173.573333pt;}
.y1ea_c01313{bottom:174.333333pt;}
.y1ed_c01313{bottom:175.106667pt;}
.y1ec_c01313{bottom:175.866667pt;}
.y1e8_c01313{bottom:184.320000pt;}
.y1e6_c01313{bottom:187.386667pt;}
.y1e4_c01313{bottom:188.933333pt;}
.y1e2_c01313{bottom:189.693333pt;}
.y1e9_c01313{bottom:190.466667pt;}
.y1e5_c01313{bottom:191.226667pt;}
.y1e7_c01313{bottom:192.000000pt;}
.y1e3_c01313{bottom:192.773333pt;}
.y1e0_c01313{bottom:205.826667pt;}
.y1df_c01313{bottom:206.586667pt;}
.y1dd_c01313{bottom:207.360000pt;}
.y1dc_c01313{bottom:208.133333pt;}
.y1e1_c01313{bottom:208.893333pt;}
.y1db_c01313{bottom:209.666667pt;}
.y1de_c01313{bottom:211.200000pt;}
.y1da_c01313{bottom:221.186667pt;}
.y1d6_c01313{bottom:223.493333pt;}
.y1d9_c01313{bottom:224.253333pt;}
.y1d8_c01313{bottom:226.560000pt;}
.y1d4_c01313{bottom:227.333333pt;}
.y1d7_c01313{bottom:228.093333pt;}
.y1d5_c01313{bottom:229.626667pt;}
.y1d2_c01313{bottom:231.933333pt;}
.y1d3_c01313{bottom:239.613333pt;}
.y1d1_c01313{bottom:240.386667pt;}
.y1d0_c01313{bottom:241.146667pt;}
.y1cf_c01313{bottom:244.226667pt;}
.y1ce_c01313{bottom:246.533333pt;}
.y1cd_c01313{bottom:258.053333pt;}
.y1cc_c01313{bottom:258.813333pt;}
.y1cb_c01313{bottom:260.346667pt;}
.y1c9_c01313{bottom:261.120000pt;}
.y1c5_c01313{bottom:263.426667pt;}
.y1c7_c01313{bottom:264.186667pt;}
.y1ca_c01313{bottom:264.960000pt;}
.y1c8_c01313{bottom:268.026667pt;}
.y1c6_c01313{bottom:268.800000pt;}
.y1c4_c01313{bottom:278.013333pt;}
.y1c2_c01313{bottom:278.786667pt;}
.y1c1_c01313{bottom:279.546667pt;}
.y1bf_c01313{bottom:280.320000pt;}
.y1be_c01313{bottom:281.093333pt;}
.y1c0_c01313{bottom:284.160000pt;}
.y1bd_c01313{bottom:286.466667pt;}
.y1bc_c01313{bottom:287.226667pt;}
.y1c3_c01313{bottom:288.000000pt;}
.y1bb_c01313{bottom:294.146667pt;}
.y1b7_c01313{bottom:297.986667pt;}
.y1b9_c01313{bottom:299.520000pt;}
.y1ba_c01313{bottom:300.293333pt;}
.y1b6_c01313{bottom:303.360000pt;}
.y1b5_c01313{bottom:304.893333pt;}
.y1b8_c01313{bottom:305.666667pt;}
.y1b4_c01313{bottom:314.880000pt;}
.y1b1_c01313{bottom:317.186667pt;}
.y1b2_c01313{bottom:320.253333pt;}
.y1b0_c01313{bottom:321.786667pt;}
.y1b3_c01313{bottom:323.333333pt;}
.y1af_c01313{bottom:329.466667pt;}
.y1ae_c01313{bottom:334.080000pt;}
.y1ad_c01313{bottom:334.853333pt;}
.y1ab_c01313{bottom:335.613333pt;}
.y1ac_c01313{bottom:339.453333pt;}
.y1aa_c01313{bottom:347.133333pt;}
.y1a9_c01313{bottom:347.906667pt;}
.y1a6_c01313{bottom:349.440000pt;}
.y1a4_c01313{bottom:350.973333pt;}
.y1a2_c01313{bottom:351.746667pt;}
.y1a3_c01313{bottom:354.053333pt;}
.y1a8_c01313{bottom:355.586667pt;}
.y1a5_c01313{bottom:357.120000pt;}
.y1a7_c01313{bottom:360.186667pt;}
.y1a1_c01313{bottom:367.106667pt;}
.y19f_c01313{bottom:369.413333pt;}
.y1a0_c01313{bottom:371.706667pt;}
.y19c_c01313{bottom:373.253333pt;}
.y19e_c01313{bottom:376.320000pt;}
.y19b_c01313{bottom:377.093333pt;}
.y19d_c01313{bottom:384.000000pt;}
.y19a_c01313{bottom:385.533333pt;}
.y197_c01313{bottom:386.306667pt;}
.y195_c01313{bottom:389.373333pt;}
.y199_c01313{bottom:390.146667pt;}
.y198_c01313{bottom:390.906667pt;}
.y196_c01313{bottom:391.680000pt;}
.y193_c01313{bottom:392.453333pt;}
.y194_c01313{bottom:395.520000pt;}
.y191_c01313{bottom:403.200000pt;}
.y192_c01313{bottom:403.973333pt;}
.y190_c01313{bottom:406.266667pt;}
.y18c_c01313{bottom:407.040000pt;}
.y18d_c01313{bottom:407.813333pt;}
.y18f_c01313{bottom:409.346667pt;}
.y18b_c01313{bottom:410.106667pt;}
.y18e_c01313{bottom:411.653333pt;}
.y188_c01313{bottom:420.866667pt;}
.y187_c01313{bottom:422.400000pt;}
.y186_c01313{bottom:423.173333pt;}
.y189_c01313{bottom:425.466667pt;}
.y185_c01313{bottom:427.013333pt;}
.y18a_c01313{bottom:436.226667pt;}
.y184_c01313{bottom:439.293333pt;}
.y182_c01313{bottom:440.066667pt;}
.y183_c01313{bottom:440.826667pt;}
.y180_c01313{bottom:442.373333pt;}
.y181_c01313{bottom:443.906667pt;}
.y17d_c01313{bottom:444.666667pt;}
.y17f_c01313{bottom:446.213333pt;}
.y17e_c01313{bottom:446.973333pt;}
.y17c_c01313{bottom:456.960000pt;}
.y179_c01313{bottom:460.026667pt;}
.y17a_c01313{bottom:461.573333pt;}
.y176_c01313{bottom:462.333333pt;}
.y178_c01313{bottom:463.106667pt;}
.y17b_c01313{bottom:463.866667pt;}
.y177_c01313{bottom:466.946667pt;}
.y174_c01313{bottom:473.853333pt;}
.y175_c01313{bottom:474.626667pt;}
.y173_c01313{bottom:475.386667pt;}
.y16c_c01313{bottom:478.466667pt;}
.y16a_c01313{bottom:479.226667pt;}
.y16d_c01313{bottom:483.066667pt;}
.y171_c01313{bottom:484.613333pt;}
.y16f_c01313{bottom:485.373333pt;}
.y16e_c01313{bottom:486.146667pt;}
.y16b_c01313{bottom:488.453333pt;}
.y1d_c01313{bottom:491.520000pt;}
.y170_c01313{bottom:492.293333pt;}
.y168_c01313{bottom:493.053333pt;}
.y167_c01313{bottom:493.826667pt;}
.y172_c01313{bottom:494.586667pt;}
.y169_c01313{bottom:495.360000pt;}
.y162_c01313{bottom:496.133333pt;}
.y166_c01313{bottom:496.893333pt;}
.y1c_c01313{bottom:497.666667pt;}
.y163_c01313{bottom:498.426667pt;}
.y164_c01313{bottom:499.200000pt;}
.y165_c01313{bottom:500.733333pt;}
.y161_c01313{bottom:502.266667pt;}
.y160_c01313{bottom:503.040000pt;}
.y15d_c01313{bottom:509.946667pt;}
.y15c_c01313{bottom:510.720000pt;}
.y1b_c01313{bottom:511.493333pt;}
.y15b_c01313{bottom:512.253333pt;}
.y1a_c01313{bottom:513.786667pt;}
.y159_c01313{bottom:514.560000pt;}
.y157_c01313{bottom:516.093333pt;}
.y158_c01313{bottom:517.626667pt;}
.y15a_c01313{bottom:519.173333pt;}
.y15f_c01313{bottom:519.933333pt;}
.y15e_c01313{bottom:520.706667pt;}
.y156_c01313{bottom:523.013333pt;}
.y155_c01313{bottom:528.386667pt;}
.y152_c01313{bottom:530.693333pt;}
.y154_c01313{bottom:531.453333pt;}
.y150_c01313{bottom:532.986667pt;}
.y153_c01313{bottom:535.293333pt;}
.y151_c01313{bottom:536.066667pt;}
.y14e_c01313{bottom:536.826667pt;}
.y14f_c01313{bottom:538.373333pt;}
.y14b_c01313{bottom:543.746667pt;}
.y14a_c01313{bottom:546.053333pt;}
.y146_c01313{bottom:546.813333pt;}
.y14d_c01313{bottom:547.586667pt;}
.y147_c01313{bottom:548.346667pt;}
.y149_c01313{bottom:549.120000pt;}
.y148_c01313{bottom:550.653333pt;}
.y145_c01313{bottom:552.186667pt;}
.y14c_c01313{bottom:552.960000pt;}
.y144_c01313{bottom:564.480000pt;}
.y141_c01313{bottom:566.786667pt;}
.y140_c01313{bottom:567.546667pt;}
.y13d_c01313{bottom:569.093333pt;}
.y13f_c01313{bottom:569.853333pt;}
.y143_c01313{bottom:570.626667pt;}
.y142_c01313{bottom:571.386667pt;}
.y13e_c01313{bottom:572.160000pt;}
.y13c_c01313{bottom:572.933333pt;}
.y13a_c01313{bottom:573.693333pt;}
.y139_c01313{bottom:575.226667pt;}
.y13b_c01313{bottom:579.066667pt;}
.y138_c01313{bottom:582.146667pt;}
.y136_c01313{bottom:585.213333pt;}
.y135_c01313{bottom:586.746667pt;}
.y12f_c01313{bottom:587.520000pt;}
.y130_c01313{bottom:588.293333pt;}
.y132_c01313{bottom:590.586667pt;}
.y137_c01313{bottom:593.666667pt;}
.y133_c01313{bottom:597.506667pt;}
.y131_c01313{bottom:598.266667pt;}
.y12e_c01313{bottom:601.346667pt;}
.y134_c01313{bottom:602.106667pt;}
.y12c_c01313{bottom:603.653333pt;}
.y12a_c01313{bottom:604.413333pt;}
.y12b_c01313{bottom:605.946667pt;}
.y129_c01313{bottom:606.720000pt;}
.y12d_c01313{bottom:607.493333pt;}
.y128_c01313{bottom:615.933333pt;}
.y124_c01313{bottom:616.706667pt;}
.y127_c01313{bottom:617.466667pt;}
.y123_c01313{bottom:618.240000pt;}
.y121_c01313{bottom:619.013333pt;}
.y208_c01313{bottom:619.773333pt;}
.y120_c01313{bottom:620.546667pt;}
.y122_c01313{bottom:622.080000pt;}
.y126_c01313{bottom:624.386667pt;}
.y125_c01313{bottom:625.920000pt;}
.y11e_c01313{bottom:635.906667pt;}
.y11f_c01313{bottom:636.666667pt;}
.y11b_c01313{bottom:638.973333pt;}
.y11a_c01313{bottom:641.280000pt;}
.y119_c01313{bottom:642.053333pt;}
.y11d_c01313{bottom:643.586667pt;}
.y118_c01313{bottom:646.653333pt;}
.y117_c01313{bottom:648.186667pt;}
.y11c_c01313{bottom:651.266667pt;}
.y10d_c01313{bottom:656.640000pt;}
.y115_c01313{bottom:657.413333pt;}
.y114_c01313{bottom:658.173333pt;}
.y113_c01313{bottom:658.946667pt;}
.y112_c01313{bottom:659.706667pt;}
.y10f_c01313{bottom:660.480000pt;}
.y10e_c01313{bottom:661.253333pt;}
.y10b_c01313{bottom:662.013333pt;}
.y111_c01313{bottom:663.546667pt;}
.y116_c01313{bottom:664.320000pt;}
.y110_c01313{bottom:666.626667pt;}
.y10c_c01313{bottom:668.933333pt;}
.y10a_c01313{bottom:669.693333pt;}
.y109_c01313{bottom:670.466667pt;}
.y108_c01313{bottom:671.226667pt;}
.y106_c01313{bottom:672.773333pt;}
.y107_c01313{bottom:673.533333pt;}
.y105_c01313{bottom:674.306667pt;}
.y102_c01313{bottom:676.613333pt;}
.y104_c01313{bottom:679.680000pt;}
.y101_c01313{bottom:680.453333pt;}
.y103_c01313{bottom:681.213333pt;}
.yfd_c01313{bottom:686.586667pt;}
.yff_c01313{bottom:687.360000pt;}
.y100_c01313{bottom:688.893333pt;}
.yfe_c01313{bottom:689.666667pt;}
.yfb_c01313{bottom:690.426667pt;}
.yfc_c01313{bottom:691.200000pt;}
.yf8_c01313{bottom:692.733333pt;}
.y17_c01313{bottom:693.506667pt;}
.yf7_c01313{bottom:695.040000pt;}
.yfa_c01313{bottom:696.573333pt;}
.yf6_c01313{bottom:697.346667pt;}
.yf9_c01313{bottom:698.106667pt;}
.yf4_c01313{bottom:709.626667pt;}
.y16_c01313{bottom:711.173333pt;}
.yf5_c01313{bottom:711.933333pt;}
.yf3_c01313{bottom:715.013333pt;}
.yf2_c01313{bottom:715.773333pt;}
.yf1_c01313{bottom:716.546667pt;}
.yef_c01313{bottom:717.306667pt;}
.yf0_c01313{bottom:718.080000pt;}
.y15_c01313{bottom:724.226667pt;}
.yee_c01313{bottom:726.533333pt;}
.yed_c01313{bottom:728.066667pt;}
.y18_c01313{bottom:728.826667pt;}
.yea_c01313{bottom:730.373333pt;}
.y19_c01313{bottom:731.133333pt;}
.ye7_c01313{bottom:731.906667pt;}
.ye9_c01313{bottom:732.666667pt;}
.yec_c01313{bottom:733.440000pt;}
.yeb_c01313{bottom:734.213333pt;}
.ye8_c01313{bottom:735.746667pt;}
.ye5_c01313{bottom:744.186667pt;}
.ye6_c01313{bottom:744.960000pt;}
.ye3_c01313{bottom:745.733333pt;}
.ye1_c01313{bottom:746.493333pt;}
.ye0_c01313{bottom:748.800000pt;}
.ydd_c01313{bottom:749.573333pt;}
.ye4_c01313{bottom:750.333333pt;}
.ye2_c01313{bottom:751.106667pt;}
.ydf_c01313{bottom:751.866667pt;}
.yde_c01313{bottom:752.640000pt;}
.ydc_c01313{bottom:753.413333pt;}
.y14_c01313{bottom:754.946667pt;}
.ydb_c01313{bottom:759.546667pt;}
.yda_c01313{bottom:761.093333pt;}
.yd9_c01313{bottom:762.626667pt;}
.yd7_c01313{bottom:766.466667pt;}
.yd8_c01313{bottom:771.840000pt;}
.y207_c01313{bottom:780.293333pt;}
.yd5_c01313{bottom:781.826667pt;}
.y13_c01313{bottom:783.360000pt;}
.yd6_c01313{bottom:784.133333pt;}
.yd2_c01313{bottom:784.893333pt;}
.yd3_c01313{bottom:786.426667pt;}
.yd4_c01313{bottom:787.200000pt;}
.ycf_c01313{bottom:787.973333pt;}
.yd1_c01313{bottom:788.733333pt;}
.yd0_c01313{bottom:789.506667pt;}
.yce_c01313{bottom:790.266667pt;}
.ycd_c01313{bottom:797.186667pt;}
.ycc_c01313{bottom:799.493333pt;}
.y12_c01313{bottom:800.253333pt;}
.yc9_c01313{bottom:802.560000pt;}
.yc7_c01313{bottom:804.093333pt;}
.ycb_c01313{bottom:804.866667pt;}
.yca_c01313{bottom:805.626667pt;}
.yc8_c01313{bottom:807.173333pt;}
.yc5_c01313{bottom:815.613333pt;}
.yc4_c01313{bottom:818.693333pt;}
.y10_c01313{bottom:819.453333pt;}
.yc2_c01313{bottom:820.226667pt;}
.y11_c01313{bottom:821.760000pt;}
.yc0_c01313{bottom:822.533333pt;}
.yc3_c01313{bottom:823.293333pt;}
.yc6_c01313{bottom:824.066667pt;}
.yc1_c01313{bottom:824.826667pt;}
.ybf_c01313{bottom:826.373333pt;}
.ybe_c01313{bottom:836.346667pt;}
.ybc_c01313{bottom:837.120000pt;}
.yf_c01313{bottom:838.653333pt;}
.yb7_c01313{bottom:839.426667pt;}
.yb9_c01313{bottom:840.186667pt;}
.ybd_c01313{bottom:840.960000pt;}
.yba_c01313{bottom:841.733333pt;}
.ybb_c01313{bottom:842.493333pt;}
.yb8_c01313{bottom:843.266667pt;}
.yd_c01313{bottom:846.333333pt;}
.yb6_c01313{bottom:852.480000pt;}
.yb5_c01313{bottom:854.013333pt;}
.yb4_c01313{bottom:854.786667pt;}
.yb0_c01313{bottom:856.320000pt;}
.yaf_c01313{bottom:857.853333pt;}
.yb2_c01313{bottom:858.626667pt;}
.yb3_c01313{bottom:859.386667pt;}
.yb1_c01313{bottom:860.160000pt;}
.yae_c01313{bottom:861.693333pt;}
.yad_c01313{bottom:871.680000pt;}
.ye_c01313{bottom:872.453333pt;}
.yab_c01313{bottom:873.213333pt;}
.ya8_c01313{bottom:873.986667pt;}
.yac_c01313{bottom:874.746667pt;}
.ya7_c01313{bottom:875.520000pt;}
.yaa_c01313{bottom:876.293333pt;}
.ya9_c01313{bottom:877.053333pt;}
.ya6_c01313{bottom:878.586667pt;}
.ya5_c01313{bottom:879.360000pt;}
.yc_c01313{bottom:882.426667pt;}
.ya_c01313{bottom:883.200000pt;}
.ya4_c01313{bottom:887.813333pt;}
.ya3_c01313{bottom:889.346667pt;}
.yb_c01313{bottom:890.106667pt;}
.ya0_c01313{bottom:890.880000pt;}
.ya2_c01313{bottom:891.653333pt;}
.y9d_c01313{bottom:892.413333pt;}
.ya1_c01313{bottom:894.720000pt;}
.y9f_c01313{bottom:895.493333pt;}
.y9e_c01313{bottom:897.026667pt;}
.y9c_c01313{bottom:901.626667pt;}
.y9b_c01313{bottom:906.240000pt;}
.y9a_c01313{bottom:907.013333pt;}
.y99_c01313{bottom:908.546667pt;}
.y97_c01313{bottom:909.306667pt;}
.y95_c01313{bottom:910.853333pt;}
.y96_c01313{bottom:911.613333pt;}
.y98_c01313{bottom:912.386667pt;}
.y93_c01313{bottom:923.906667pt;}
.y92_c01313{bottom:924.666667pt;}
.y8f_c01313{bottom:925.440000pt;}
.y94_c01313{bottom:926.973333pt;}
.y91_c01313{bottom:927.746667pt;}
.y9_c01313{bottom:928.506667pt;}
.y8e_c01313{bottom:929.280000pt;}
.y90_c01313{bottom:930.053333pt;}
.y8d_c01313{bottom:930.813333pt;}
.y8c_c01313{bottom:941.573333pt;}
.y8b_c01313{bottom:944.640000pt;}
.y8_c01313{bottom:946.946667pt;}
.y89_c01313{bottom:947.706667pt;}
.y8a_c01313{bottom:948.480000pt;}
.y87_c01313{bottom:950.786667pt;}
.y88_c01313{bottom:953.093333pt;}
.y86_c01313{bottom:959.226667pt;}
.y84_c01313{bottom:960.773333pt;}
.y7_c01313{bottom:961.533333pt;}
.y82_c01313{bottom:962.306667pt;}
.y80_c01313{bottom:963.840000pt;}
.y85_c01313{bottom:964.613333pt;}
.y7d_c01313{bottom:965.373333pt;}
.y83_c01313{bottom:966.146667pt;}
.y81_c01313{bottom:967.680000pt;}
.y7f_c01313{bottom:969.213333pt;}
.y7e_c01313{bottom:969.986667pt;}
.y6_c01313{bottom:972.293333pt;}
.y7c_c01313{bottom:978.426667pt;}
.y7b_c01313{bottom:979.200000pt;}
.y78_c01313{bottom:979.973333pt;}
.y79_c01313{bottom:981.506667pt;}
.y76_c01313{bottom:982.266667pt;}
.y75_c01313{bottom:983.040000pt;}
.y7a_c01313{bottom:983.813333pt;}
.y73_c01313{bottom:984.573333pt;}
.y77_c01313{bottom:985.346667pt;}
.y74_c01313{bottom:986.880000pt;}
.y71_c01313{bottom:997.626667pt;}
.y70_c01313{bottom:998.400000pt;}
.y5_c01313{bottom:999.933333pt;}
.y6d_c01313{bottom:1000.706667pt;}
.y6f_c01313{bottom:1001.466667pt;}
.y72_c01313{bottom:1002.240000pt;}
.y6e_c01313{bottom:1005.306667pt;}
.y6c_c01313{bottom:1006.080000pt;}
.y4_c01313{bottom:1010.693333pt;}
.y205_c01313{bottom:1011.453333pt;}
.y206_c01313{bottom:1012.986667pt;}
.y68_c01313{bottom:1017.600000pt;}
.y3_c01313{bottom:1018.373333pt;}
.y67_c01313{bottom:1019.133333pt;}
.y204_c01313{bottom:1019.906667pt;}
.y6b_c01313{bottom:1020.666667pt;}
.y6a_c01313{bottom:1021.440000pt;}
.y69_c01313{bottom:1022.213333pt;}
.y65_c01313{bottom:1034.493333pt;}
.y61_c01313{bottom:1036.026667pt;}
.y2_c01313{bottom:1036.800000pt;}
.y5f_c01313{bottom:1037.573333pt;}
.y64_c01313{bottom:1038.333333pt;}
.y63_c01313{bottom:1039.106667pt;}
.y62_c01313{bottom:1039.866667pt;}
.y60_c01313{bottom:1041.413333pt;}
.y66_c01313{bottom:1047.546667pt;}
.y5e_c01313{bottom:1050.626667pt;}
.y5c_c01313{bottom:1052.933333pt;}
.y57_c01313{bottom:1053.693333pt;}
.y5b_c01313{bottom:1054.466667pt;}
.y5a_c01313{bottom:1055.226667pt;}
.y5d_c01313{bottom:1057.533333pt;}
.y59_c01313{bottom:1059.066667pt;}
.y56_c01313{bottom:1059.840000pt;}
.y58_c01313{bottom:1060.613333pt;}
.y54_c01313{bottom:1070.586667pt;}
.y51_c01313{bottom:1071.360000pt;}
.y4f_c01313{bottom:1072.133333pt;}
.y50_c01313{bottom:1072.893333pt;}
.y53_c01313{bottom:1074.426667pt;}
.y55_c01313{bottom:1075.200000pt;}
.y52_c01313{bottom:1075.973333pt;}
.y4e_c01313{bottom:1077.506667pt;}
.y4d_c01313{bottom:1078.266667pt;}
.y4a_c01313{bottom:1089.786667pt;}
.y47_c01313{bottom:1090.560000pt;}
.y46_c01313{bottom:1091.333333pt;}
.y48_c01313{bottom:1092.093333pt;}
.y4b_c01313{bottom:1092.866667pt;}
.y49_c01313{bottom:1095.173333pt;}
.y45_c01313{bottom:1095.933333pt;}
.y4c_c01313{bottom:1096.706667pt;}
.y44_c01313{bottom:1105.920000pt;}
.y43_c01313{bottom:1107.453333pt;}
.y40_c01313{bottom:1108.986667pt;}
.y3e_c01313{bottom:1109.760000pt;}
.y3f_c01313{bottom:1110.533333pt;}
.y42_c01313{bottom:1112.826667pt;}
.y41_c01313{bottom:1113.600000pt;}
.y3d_c01313{bottom:1126.653333pt;}
.y3a_c01313{bottom:1128.186667pt;}
.y3c_c01313{bottom:1128.960000pt;}
.y38_c01313{bottom:1129.733333pt;}
.y3b_c01313{bottom:1130.493333pt;}
.y39_c01313{bottom:1131.266667pt;}
.y37_c01313{bottom:1132.026667pt;}
.y34_c01313{bottom:1143.546667pt;}
.y1_c01313{bottom:1144.320000pt;}
.y36_c01313{bottom:1145.093333pt;}
.y35_c01313{bottom:1146.626667pt;}
.y31_c01313{bottom:1149.693333pt;}
.y32_c01313{bottom:1150.466667pt;}
.y33_c01313{bottom:1158.146667pt;}
.y30_c01313{bottom:1159.680000pt;}
.y2f_c01313{bottom:1161.986667pt;}
.y2d_c01313{bottom:1162.746667pt;}
.y2c_c01313{bottom:1163.520000pt;}
.y2e_c01313{bottom:1164.293333pt;}
.y2b_c01313{bottom:1165.053333pt;}
.y2a_c01313{bottom:1165.826667pt;}
.y28_c01313{bottom:1166.586667pt;}
.y27_c01313{bottom:1167.360000pt;}
.y29_c01313{bottom:1168.133333pt;}
.y26_c01313{bottom:1181.946667pt;}
.y25_c01313{bottom:1182.720000pt;}
.y23_c01313{bottom:1188.866667pt;}
.y22_c01313{bottom:1190.400000pt;}
.y24_c01313{bottom:1191.933333pt;}
.y21_c01313{bottom:1192.706667pt;}
.y1f_c01313{bottom:1193.466667pt;}
.y20_c01313{bottom:1204.226667pt;}
.y1e_c01313{bottom:1258.746667pt;}
.hb_c01313{height:2.764500pt;}
.h17_c01313{height:4.799479pt;}
.hc_c01313{height:5.519401pt;}
.hf_c01313{height:8.303099pt;}
.h10_c01313{height:11.038802pt;}
.h5_c01313{height:13.822500pt;}
.h4_c01313{height:16.606198pt;}
.h13_c01313{height:19.341901pt;}
.h1f_c01313{height:22.125599pt;}
.h9_c01313{height:24.861302pt;}
.h2_c01313{height:27.645000pt;}
.h6_c01313{height:30.428698pt;}
.h3_c01313{height:33.164401pt;}
.h7_c01313{height:35.948099pt;}
.ha_c01313{height:38.683802pt;}
.he_c01313{height:41.467500pt;}
.h8_c01313{height:44.251198pt;}
.h1a_c01313{height:46.986901pt;}
.h20_c01313{height:47.344531pt;}
.h24_c01313{height:49.103333pt;}
.h1d_c01313{height:49.770599pt;}
.h25_c01313{height:50.026901pt;}
.h16_c01313{height:52.506302pt;}
.h15_c01313{height:55.290000pt;}
.h14_c01313{height:58.073698pt;}
.h18_c01313{height:60.809401pt;}
.h1c_c01313{height:63.593099pt;}
.h1e_c01313{height:66.328802pt;}
.h1b_c01313{height:69.112500pt;}
.h22_c01313{height:71.896198pt;}
.h23_c01313{height:74.631901pt;}
.h19_c01313{height:77.415599pt;}
.h21_c01313{height:80.151302pt;}
.h11_c01313{height:99.541198pt;}
.h12_c01313{height:110.580000pt;}
.hd_c01313{height:129.921901pt;}
.h0_c01313{height:1341.693333pt;}
.h1_c01313{height:1342.000000pt;}
.w0_c01313{width:967.680000pt;}
.w1_c01313{width:968.000000pt;}
.x0_c01313{left:0.000000pt;}
.x2_c01313{left:3.840000pt;}
.x3_c01313{left:7.680000pt;}
.x6_c01313{left:17.666667pt;}
.x7_c01313{left:27.653333pt;}
.x8_c01313{left:36.866667pt;}
.x4_c01313{left:41.466667pt;}
.x5_c01313{left:46.080000pt;}
.x1_c01313{left:68.346667pt;}
.x9_c01313{left:166.653333pt;}
.xa_c01313{left:179.706667pt;}
.xf6_c01313{left:200.453333pt;}
.x10d_c01313{left:202.746667pt;}
.x7d_c01313{left:204.293333pt;}
.xee_c01313{left:205.826667pt;}
.xde_c01313{left:207.360000pt;}
.xb2_c01313{left:209.666667pt;}
.x5e_c01313{left:211.200000pt;}
.x4d_c01313{left:213.506667pt;}
.x30_c01313{left:215.040000pt;}
.x23_c01313{left:216.573333pt;}
.x70_c01313{left:218.106667pt;}
.x8f_c01313{left:221.186667pt;}
.xcc_c01313{left:223.493333pt;}
.xf9_c01313{left:227.333333pt;}
.xbb_c01313{left:229.626667pt;}
.x16_c01313{left:231.173333pt;}
.x71_c01313{left:233.466667pt;}
.x10a_c01313{left:235.013333pt;}
.x31_c01313{left:236.546667pt;}
.x95_c01313{left:238.080000pt;}
.x6a_c01313{left:242.693333pt;}
.x66_c01313{left:245.760000pt;}
.x3b_c01313{left:247.293333pt;}
.xab_c01313{left:249.600000pt;}
.x58_c01313{left:251.133333pt;}
.xeb_c01313{left:252.666667pt;}
.x24_c01313{left:254.213333pt;}
.xb5_c01313{left:255.746667pt;}
.xe3_c01313{left:258.053333pt;}
.xbc_c01313{left:259.586667pt;}
.xe8_c01313{left:261.120000pt;}
.xb6_c01313{left:262.653333pt;}
.x43_c01313{left:264.960000pt;}
.x89_c01313{left:269.573333pt;}
.xf3_c01313{left:271.106667pt;}
.xc2_c01313{left:273.413333pt;}
.x17_c01313{left:277.253333pt;}
.x72_c01313{left:279.546667pt;}
.x32_c01313{left:281.853333pt;}
.x9f_c01313{left:283.386667pt;}
.x106_c01313{left:284.933333pt;}
.xa5_c01313{left:287.226667pt;}
.x90_c01313{left:290.306667pt;}
.x96_c01313{left:294.146667pt;}
.x3c_c01313{left:297.213333pt;}
.x44_c01313{left:298.746667pt;}
.x25_c01313{left:301.053333pt;}
.x5f_c01313{left:303.360000pt;}
.xb9_c01313{left:305.666667pt;}
.x82_c01313{left:307.973333pt;}
.x97_c01313{left:310.266667pt;}
.x59_c01313{left:312.573333pt;}
.xd2_c01313{left:316.413333pt;}
.xc_c01313{left:318.720000pt;}
.xdf_c01313{left:322.560000pt;}
.x33_c01313{left:324.866667pt;}
.xac_c01313{left:327.173333pt;}
.xef_c01313{left:328.706667pt;}
.x18_c01313{left:330.240000pt;}
.x4e_c01313{left:331.773333pt;}
.xd8_c01313{left:334.080000pt;}
.xf7_c01313{left:335.613333pt;}
.xfa_c01313{left:337.146667pt;}
.x10_c01313{left:338.693333pt;}
.xa6_c01313{left:341.760000pt;}
.x8a_c01313{left:344.066667pt;}
.x83_c01313{left:345.600000pt;}
.xbd_c01313{left:347.133333pt;}
.xcf_c01313{left:348.666667pt;}
.x60_c01313{left:350.973333pt;}
.x7e_c01313{left:354.813333pt;}
.xd_c01313{left:357.120000pt;}
.x19_c01313{left:359.426667pt;}
.x110_c01313{left:360.960000pt;}
.x5a_c01313{left:363.266667pt;}
.x26_c01313{left:365.573333pt;}
.xe4_c01313{left:367.106667pt;}
.xe_c01313{left:368.640000pt;}
.x91_c01313{left:372.480000pt;}
.xa0_c01313{left:374.013333pt;}
.x3d_c01313{left:377.093333pt;}
.xc3_c01313{left:379.386667pt;}
.xb7_c01313{left:380.933333pt;}
.x8b_c01313{left:382.466667pt;}
.x98_c01313{left:384.000000pt;}
.xf8_c01313{left:385.533333pt;}
.xfb_c01313{left:387.066667pt;}
.x27_c01313{left:388.613333pt;}
.x34_c01313{left:391.680000pt;}
.xf0_c01313{left:393.986667pt;}
.x11_c01313{left:395.520000pt;}
.xad_c01313{left:397.053333pt;}
.xe1_c01313{left:399.360000pt;}
.xf_c01313{left:400.893333pt;}
.x3e_c01313{left:403.200000pt;}
.xd0_c01313{left:404.733333pt;}
.x1a_c01313{left:406.266667pt;}
.xb_c01313{left:412.413333pt;}
.xcd_c01313{left:415.493333pt;}
.xff_c01313{left:417.026667pt;}
.xbe_c01313{left:419.333333pt;}
.xd3_c01313{left:420.866667pt;}
.xc7_c01313{left:423.173333pt;}
.x67_c01313{left:426.240000pt;}
.x111_c01313{left:429.306667pt;}
.xb8_c01313{left:430.853333pt;}
.xc4_c01313{left:432.386667pt;}
.x79_c01313{left:436.226667pt;}
.x35_c01313{left:438.533333pt;}
.x12_c01313{left:441.600000pt;}
.x6b_c01313{left:443.133333pt;}
.x28_c01313{left:445.440000pt;}
.xae_c01313{left:446.973333pt;}
.x73_c01313{left:449.280000pt;}
.x99_c01313{left:451.586667pt;}
.x10e_c01313{left:453.120000pt;}
.x92_c01313{left:456.186667pt;}
.xa1_c01313{left:458.493333pt;}
.x68_c01313{left:460.800000pt;}
.x10b_c01313{left:463.106667pt;}
.x29_c01313{left:464.640000pt;}
.x103_c01313{left:466.173333pt;}
.xb3_c01313{left:467.706667pt;}
.x74_c01313{left:469.253333pt;}
.x61_c01313{left:472.320000pt;}
.x3f_c01313{left:476.160000pt;}
.x36_c01313{left:479.226667pt;}
.x45_c01313{left:480.773333pt;}
.x2a_c01313{left:482.306667pt;}
.xe5_c01313{left:483.839533pt;}
.xd9_c01313{left:485.373333pt;}
.xdc_c01313{left:486.906667pt;}
.xc8_c01313{left:488.453333pt;}
.x4f_c01313{left:489.986667pt;}
.xf4_c01313{left:491.520000pt;}
.x1b_c01313{left:493.053333pt;}
.x7f_c01313{left:494.586667pt;}
.x84_c01313{left:496.893333pt;}
.x40_c01313{left:499.200000pt;}
.x104_c01313{left:502.266667pt;}
.x7a_c01313{left:503.813333pt;}
.x1c_c01313{left:506.106667pt;}
.x2b_c01313{left:508.413333pt;}
.x13_c01313{left:510.720000pt;}
.x107_c01313{left:517.626667pt;}
.x6c_c01313{left:519.933333pt;}
.x41_c01313{left:522.240000pt;}
.xda_c01313{left:523.773333pt;}
.x46_c01313{left:526.080000pt;}
.xc9_c01313{left:527.613333pt;}
.xa2_c01313{left:529.146667pt;}
.x93_c01313{left:530.693333pt;}
.x10c_c01313{left:532.226667pt;}
.x112_c01313{left:533.760000pt;}
.x100_c01313{left:536.826667pt;}
.x50_c01313{left:538.373333pt;}
.x8c_c01313{left:540.666667pt;}
.x5b_c01313{left:542.213333pt;}
.xd4_c01313{left:543.746667pt;}
.x62_c01313{left:545.280000pt;}
.xfc_c01313{left:549.120000pt;}
.xfd_c01313{left:550.653333pt;}
.x113_c01313{left:552.186667pt;}
.x37_c01313{left:553.733333pt;}
.xce_c01313{left:555.266667pt;}
.xa3_c01313{left:556.800000pt;}
.xec_c01313{left:558.333333pt;}
.x2c_c01313{left:560.640000pt;}
.x85_c01313{left:562.173333pt;}
.xdd_c01313{left:564.480000pt;}
.x47_c01313{left:566.013333pt;}
.x9a_c01313{left:567.546667pt;}
.x69_c01313{left:569.093333pt;}
.xd1_c01313{left:570.626667pt;}
.x102_c01313{left:572.160000pt;}
.x101_c01313{left:574.466667pt;}
.x51_c01313{left:576.000000pt;}
.x1d_c01313{left:579.840000pt;}
.xc5_c01313{left:581.373333pt;}
.x108_c01313{left:582.906667pt;}
.x38_c01313{left:584.453333pt;}
.x75_c01313{left:585.986667pt;}
.x114_c01313{left:587.520000pt;}
.x6d_c01313{left:591.360000pt;}
.xb4_c01313{left:594.426667pt;}
.xfe_c01313{left:595.973333pt;}
.xbf_c01313{left:597.506667pt;}
.xa7_c01313{left:599.813333pt;}
.xd5_c01313{left:601.346667pt;}
.xca_c01313{left:602.880000pt;}
.x52_c01313{left:605.186667pt;}
.x48_c01313{left:606.720000pt;}
.xa4_c01313{left:610.560000pt;}
.x76_c01313{left:612.093333pt;}
.x53_c01313{left:613.626667pt;}
.xaf_c01313{left:616.706667pt;}
.x63_c01313{left:619.013333pt;}
.x80_c01313{left:621.306667pt;}
.x9b_c01313{left:623.613333pt;}
.x1e_c01313{left:625.920000pt;}
.x64_c01313{left:629.760000pt;}
.xe0_c01313{left:631.293333pt;}
.xcb_c01313{left:633.600000pt;}
.x81_c01313{left:635.906667pt;}
.x5c_c01313{left:637.440000pt;}
.x86_c01313{left:638.973333pt;}
.xc0_c01313{left:640.506667pt;}
.x105_c01313{left:645.893333pt;}
.x49_c01313{left:647.426667pt;}
.x39_c01313{left:650.493333pt;}
.xf5_c01313{left:652.800000pt;}
.x54_c01313{left:654.333333pt;}
.x116_c01313{left:656.640000pt;}
.x5d_c01313{left:658.173333pt;}
.x1f_c01313{left:660.480000pt;}
.x9c_c01313{left:662.786667pt;}
.xa8_c01313{left:664.320000pt;}
.xba_c01313{left:666.626667pt;}
.xd6_c01313{left:669.693333pt;}
.xed_c01313{left:673.533333pt;}
.x10f_c01313{left:675.840000pt;}
.x77_c01313{left:678.906667pt;}
.x109_c01313{left:680.453333pt;}
.x6e_c01313{left:681.986667pt;}
.x9d_c01313{left:686.586667pt;}
.x94_c01313{left:690.426667pt;}
.x4a_c01313{left:692.733333pt;}
.xe9_c01313{left:694.266667pt;}
.x7b_c01313{left:696.573333pt;}
.x14_c01313{left:698.880000pt;}
.x55_c01313{left:700.413333pt;}
.xa9_c01313{left:701.946667pt;}
.x87_c01313{left:705.026667pt;}
.xc6_c01313{left:708.093333pt;}
.xc1_c01313{left:710.400000pt;}
.x56_c01313{left:711.933333pt;}
.x8d_c01313{left:715.013333pt;}
.x20_c01313{left:716.546667pt;}
.xea_c01313{left:718.853333pt;}
.xe6_c01313{left:720.386667pt;}
.x78_c01313{left:722.693333pt;}
.xb0_c01313{left:724.226667pt;}
.x21_c01313{left:726.533333pt;}
.x2d_c01313{left:728.826667pt;}
.x57_c01313{left:730.373333pt;}
.xaa_c01313{left:731.906667pt;}
.x6f_c01313{left:733.440000pt;}
.x65_c01313{left:735.746667pt;}
.xe2_c01313{left:737.280000pt;}
.x9e_c01313{left:738.813333pt;}
.x4b_c01313{left:740.346667pt;}
.x8e_c01313{left:744.186667pt;}
.x2e_c01313{left:746.493333pt;}
.x3a_c01313{left:748.800000pt;}
.x15_c01313{left:750.333333pt;}
.x7c_c01313{left:752.640000pt;}
.x22_c01313{left:756.480000pt;}
.xe7_c01313{left:758.786667pt;}
.x115_c01313{left:768.773333pt;}
.x88_c01313{left:771.840000pt;}
.xb1_c01313{left:775.680000pt;}
.xdb_c01313{left:778.746667pt;}
.x42_c01313{left:781.826667pt;}
.x2f_c01313{left:783.360000pt;}
.x4c_c01313{left:785.666667pt;}
.xd7_c01313{left:787.973333pt;}
.xf1_c01313{left:791.040000pt;}
.xf2_c01313{left:798.720000pt;}
.x11a_c01313{left:813.306667pt;}
.x118_c01313{left:841.733333pt;}
.x11b_c01313{left:844.026667pt;}
.x117_c01313{left:845.573333pt;}
.x119_c01313{left:858.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_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_00ad8058e719d42b67521bf7.woff2')format("woff");}.ff1_c01314{font-family:ff1_c01314;line-height:1.109863;font-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_c01314{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m36_c01314{transform:matrix(0.034050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034050,0.000000,0.000000,0.250000,0,0);}
.m117_c01314{transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);}
.m118_c01314{transform:matrix(0.115475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115475,0.000000,0.000000,0.250000,0,0);}
.me3_c01314{transform:matrix(0.116550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116550,0.000000,0.000000,0.250000,0,0);}
.m96_c01314{transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);}
.m2e_c01314{transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120600,0.000000,0.000000,0.250000,0,0);}
.md6_c01314{transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);}
.m127_c01314{transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);}
.m158_c01314{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m23_c01314{transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);}
.m9b_c01314{transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123925,0.000000,0.000000,0.250000,0,0);}
.m128_c01314{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m112_c01314{transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126025,0.000000,0.000000,0.250000,0,0);}
.m34_c01314{transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);}
.mf8_c01314{transform:matrix(0.128325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128325,0.000000,0.000000,0.250000,0,0);}
.mf1_c01314{transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132375,0.000000,0.000000,0.250000,0,0);}
.m62_c01314{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);}
.m115_c01314{transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);}
.mef_c01314{transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138075,0.000000,0.000000,0.250000,0,0);}
.mc1_c01314{transform:matrix(0.138800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138800,0.000000,0.000000,0.250000,0,0);}
.me1_c01314{transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);}
.ma0_c01314{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m12f_c01314{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m33_c01314{transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);}
.m15_c01314{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me2_c01314{transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);}
.me4_c01314{transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);}
.mf0_c01314{transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146525,0.000000,0.000000,0.250000,0,0);}
.mc4_c01314{transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);}
.mcb_c01314{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.mae_c01314{transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);}
.m51_c01314{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);}
.m3f_c01314{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m129_c01314{transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);}
.m4d_c01314{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.maa_c01314{transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);}
.m91_c01314{transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);}
.m159_c01314{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.ma3_c01314{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.m155_c01314{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.m2d_c01314{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.mfa_c01314{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);}
.m8d_c01314{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);}
.m4e_c01314{transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);}
.m77_c01314{transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);}
.m119_c01314{transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);}
.med_c01314{transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);}
.md0_c01314{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.md7_c01314{transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);}
.m126_c01314{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);}
.m113_c01314{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);}
.m89_c01314{transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);}
.m10e_c01314{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m152_c01314{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.m38_c01314{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.m14e_c01314{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.mf2_c01314{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.mec_c01314{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m72_c01314{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);}
.ma5_c01314{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.m93_c01314{transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165875,0.000000,0.000000,0.250000,0,0);}
.m163_c01314{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.mf9_c01314{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);}
.m95_c01314{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.m64_c01314{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);}
.m156_c01314{transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169300,0.000000,0.000000,0.250000,0,0);}
.m15a_c01314{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);}
.m32_c01314{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.m9_c01314{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.maf_c01314{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m15f_c01314{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.m14d_c01314{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.mf5_c01314{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);}
.m9f_c01314{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.m121_c01314{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.mf7_c01314{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);}
.m150_c01314{transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);}
.m134_c01314{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m9d_c01314{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m148_c01314{transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);}
.m54_c01314{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.m103_c01314{transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174525,0.000000,0.000000,0.250000,0,0);}
.md1_c01314{transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);}
.m35_c01314{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m4c_c01314{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m97_c01314{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.mcc_c01314{transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);}
.mad_c01314{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);}
.m50_c01314{transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178875,0.000000,0.000000,0.250000,0,0);}
.m65_c01314{transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);}
.ma2_c01314{transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179300,0.000000,0.000000,0.250000,0,0);}
.m11f_c01314{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.ma1_c01314{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);}
.m37_c01314{transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180225,0.000000,0.000000,0.250000,0,0);}
.md3_c01314{transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180425,0.000000,0.000000,0.250000,0,0);}
.m75_c01314{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.me0_c01314{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);}
.mf6_c01314{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.mfe_c01314{transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);}
.m59_c01314{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.mfc_c01314{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.m7b_c01314{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.m151_c01314{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.m8f_c01314{transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186525,0.000000,0.000000,0.250000,0,0);}
.m67_c01314{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m10c_c01314{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);}
.me8_c01314{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);}
.m8a_c01314{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m116_c01314{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m137_c01314{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.m63_c01314{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);}
.ma9_c01314{transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);}
.m10f_c01314{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m110_c01314{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m8e_c01314{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.m10d_c01314{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);}
.ma4_c01314{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.m70_c01314{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.mcf_c01314{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m53_c01314{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.m55_c01314{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);}
.m104_c01314{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.m12c_c01314{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.mfb_c01314{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);}
.mc5_c01314{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.m15e_c01314{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);}
.mfd_c01314{transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);}
.m11a_c01314{transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);}
.m141_c01314{transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);}
.mcd_c01314{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);}
.m136_c01314{transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);}
.md5_c01314{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m122_c01314{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.m5b_c01314{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m102_c01314{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.mde_c01314{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.ma6_c01314{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);}
.m6e_c01314{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m132_c01314{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m74_c01314{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.m12e_c01314{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m140_c01314{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);}
.mdb_c01314{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);}
.mb2_c01314{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);}
.mbd_c01314{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);}
.ma_c01314{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m11c_c01314{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.m7a_c01314{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.mb9_c01314{transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);}
.m11d_c01314{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);}
.m142_c01314{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);}
.m1e_c01314{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);}
.mee_c01314{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.m4f_c01314{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.m138_c01314{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);}
.mff_c01314{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);}
.m92_c01314{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);}
.mc2_c01314{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.m78_c01314{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m5d_c01314{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.m84_c01314{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.m124_c01314{transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223700,0.000000,0.000000,0.250000,0,0);}
.m76_c01314{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.mac_c01314{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);}
.mc6_c01314{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);}
.mda_c01314{transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224775,0.000000,0.000000,0.250000,0,0);}
.m13f_c01314{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);}
.m9a_c01314{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);}
.me7_c01314{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);}
.m15b_c01314{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);}
.mce_c01314{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.m9e_c01314{transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);}
.m15d_c01314{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m5e_c01314{transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227425,0.000000,0.000000,0.250000,0,0);}
.m7d_c01314{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);}
.m3b_c01314{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.m123_c01314{transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);}
.m11b_c01314{transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);}
.m12a_c01314{transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228875,0.000000,0.000000,0.250000,0,0);}
.m125_c01314{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);}
.me9_c01314{transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);}
.m157_c01314{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);}
.m99_c01314{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);}
.mba_c01314{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);}
.m146_c01314{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.m1b_c01314{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);}
.mc7_c01314{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);}
.mea_c01314{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_c01314{transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);}
.m4_c01314{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);}
.mab_c01314{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);}
.m48_c01314{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);}
.md8_c01314{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);}
.m85_c01314{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);}
.m109_c01314{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.mbf_c01314{transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);}
.m81_c01314{transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);}
.m131_c01314{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);}
.mf3_c01314{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m13c_c01314{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);}
.m133_c01314{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.m1c_c01314{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);}
.m130_c01314{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m7_c01314{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);}
.me5_c01314{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.mdc_c01314{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);}
.mb6_c01314{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);}
.m90_c01314{transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);}
.m143_c01314{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m8c_c01314{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);}
.m94_c01314{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);}
.mbb_c01314{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);}
.m5a_c01314{transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);}
.mb_c01314{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);}
.mb0_c01314{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);}
.m6b_c01314{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.mb8_c01314{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);}
.m14c_c01314{transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);}
.m39_c01314{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);}
.m7f_c01314{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m88_c01314{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);}
.md2_c01314{transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);}
.m135_c01314{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.m100_c01314{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);}
.ma7_c01314{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m147_c01314{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m61_c01314{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);}
.m144_c01314{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m98_c01314{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);}
.mb4_c01314{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);}
.m2c_c01314{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);}
.m6c_c01314{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m25_c01314{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);}
.m5c_c01314{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);}
.m82_c01314{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);}
.m31_c01314{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);}
.me_c01314{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m83_c01314{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc0_c01314{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m154_c01314{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);}
.m4a_c01314{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01314{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);}
.m1f_c01314{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);}
.mb5_c01314{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m47_c01314{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);}
.m0_c01314{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c01314{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m13_c01314{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);}
.md_c01314{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8b_c01314{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);}
.m3d_c01314{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);}
.m11_c01314{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01314{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m13b_c01314{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);}
.m3e_c01314{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01314{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m26_c01314{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);}
.m52_c01314{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c01314{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01314{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m73_c01314{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m87_c01314{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m24_c01314{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m27_c01314{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m57_c01314{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m60_c01314{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);}
.m41_c01314{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb7_c01314{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m58_c01314{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10_c01314{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mbe_c01314{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);}
.m12_c01314{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);}
.m3a_c01314{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m12d_c01314{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01314{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);}
.m68_c01314{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8_c01314{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c01314{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m46_c01314{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m6_c01314{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01314{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);}
.m3_c01314{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m42_c01314{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);}
.mc3_c01314{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m56_c01314{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m22_c01314{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m149_c01314{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01314{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01314{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m2_c01314{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);}
.m114_c01314{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);}
.m80_c01314{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);}
.m5f_c01314{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mbc_c01314{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m49_c01314{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);}
.m40_c01314{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m71_c01314{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1_c01314{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m86_c01314{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m28_c01314{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01314{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m120_c01314{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01314{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);}
.m7c_c01314{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc8_c01314{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m13a_c01314{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m15c_c01314{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m145_c01314{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m12b_c01314{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m13e_c01314{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m153_c01314{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m30_c01314{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.md4_c01314{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.meb_c01314{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m7e_c01314{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5_c01314{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);}
.mdd_c01314{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.ma8_c01314{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m14a_c01314{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);}
.m107_c01314{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m11e_c01314{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m101_c01314{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m69_c01314{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m20_c01314{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m17_c01314{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01314{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m66_c01314{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m21_c01314{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);}
.mca_c01314{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m43_c01314{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m14f_c01314{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m45_c01314{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m13d_c01314{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.me6_c01314{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m14_c01314{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m79_c01314{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mf4_c01314{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);}
.mdf_c01314{transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.777500,0.000000,0.000000,0.250000,0,0);}
.m162_c01314{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m111_c01314{transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.822500,0.000000,0.000000,0.250000,0,0);}
.m139_c01314{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m10b_c01314{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01314{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mf_c01314{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m44_c01314{transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.032500,0.000000,0.000000,0.250000,0,0);}
.m108_c01314{transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.082500,0.000000,0.000000,0.250000,0,0);}
.md9_c01314{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m106_c01314{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m105_c01314{transform:matrix(2.145000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.145000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.145000,0.000000,0.000000,0.250000,0,0);}
.m10a_c01314{transform:matrix(2.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.312500,0.000000,0.000000,0.250000,0,0);}
.m16_c01314{transform:matrix(3.082500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.082500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.082500,0.000000,0.000000,0.250000,0,0);}
.m161_c01314{transform:matrix(3.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.302500,0.000000,0.000000,0.250000,0,0);}
.m18_c01314{transform:matrix(4.005000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.005000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.005000,0.000000,0.000000,0.250000,0,0);}
.m14b_c01314{transform:matrix(4.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.650000,0.000000,0.000000,0.250000,0,0);}
.m160_c01314{transform:matrix(11.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(11.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(11.520000,0.000000,0.000000,0.250000,0,0);}
.v1_c01314{vertical-align:-6.900000px;}
.v0_c01314{vertical-align:0.000000px;}
.v3_c01314{vertical-align:3.420000px;}
.v2_c01314{vertical-align:20.700000px;}
.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;}
}
.ws1_c01314{word-spacing:-29.130000px;}
.ws2_c01314{word-spacing:-5.859120px;}
.ws4_c01314{word-spacing:0.000000px;}
.ws3_c01314{word-spacing:21.221940px;}
.ws0_c01314{word-spacing:63.610080px;}
.fc0_c01314{color:transparent;}
.fsc_c01314{font-size:3.456000px;}
.fsf_c01314{font-size:6.000000px;}
.fs5_c01314{font-size:6.900000px;}
.fs0_c01314{font-size:10.380000px;}
.fs10_c01314{font-size:13.800000px;}
.fs1b_c01314{font-size:17.280000px;}
.fs1_c01314{font-size:20.760000px;}
.fs1e_c01314{font-size:24.180000px;}
.fs1d_c01314{font-size:27.660000px;}
.fs1c_c01314{font-size:31.080000px;}
.fs1a_c01314{font-size:34.560000px;}
.fs14_c01314{font-size:38.040000px;}
.fs17_c01314{font-size:41.460000px;}
.fs16_c01314{font-size:44.940000px;}
.fsd_c01314{font-size:48.360000px;}
.fsa_c01314{font-size:51.840000px;}
.fse_c01314{font-size:55.320000px;}
.fsb_c01314{font-size:58.740000px;}
.fs12_c01314{font-size:62.220000px;}
.fs8_c01314{font-size:65.640000px;}
.fs3_c01314{font-size:69.120000px;}
.fs13_c01314{font-size:72.600000px;}
.fs6_c01314{font-size:76.020000px;}
.fs11_c01314{font-size:79.500000px;}
.fs18_c01314{font-size:82.920000px;}
.fs2_c01314{font-size:86.400000px;}
.fs7_c01314{font-size:89.880000px;}
.fs9_c01314{font-size:93.300000px;}
.fs19_c01314{font-size:96.780000px;}
.fs4_c01314{font-size:100.200000px;}
.fs1f_c01314{font-size:103.680000px;}
.fs15_c01314{font-size:145.140000px;}
.y0_c01314{bottom:0.000000px;}
.y1f5_c01314{bottom:175.395000px;}
.y1f4_c01314{bottom:176.250000px;}
.y1f0_c01314{bottom:179.715000px;}
.y1f3_c01314{bottom:184.890000px;}
.y1f2_c01314{bottom:186.630000px;}
.y1f1_c01314{bottom:188.355000px;}
.y1e9_c01314{bottom:202.170000px;}
.y1eb_c01314{bottom:203.040000px;}
.y1ea_c01314{bottom:204.765000px;}
.y1e8_c01314{bottom:205.635000px;}
.y1ee_c01314{bottom:208.230000px;}
.y1ed_c01314{bottom:209.085000px;}
.y1ef_c01314{bottom:215.130000px;}
.y1ec_c01314{bottom:216.000000px;}
.y1e2_c01314{bottom:222.045000px;}
.y1e3_c01314{bottom:224.640000px;}
.y1e4_c01314{bottom:226.365000px;}
.y1e5_c01314{bottom:227.235000px;}
.y1e6_c01314{bottom:229.830000px;}
.y1e7_c01314{bottom:230.685000px;}
.y1e1_c01314{bottom:237.600000px;}
.y1dd_c01314{bottom:241.920000px;}
.y1dc_c01314{bottom:245.370000px;}
.y1df_c01314{bottom:247.110000px;}
.y1de_c01314{bottom:248.835000px;}
.y1e0_c01314{bottom:250.560000px;}
.y1d1_c01314{bottom:256.605000px;}
.y1d4_c01314{bottom:259.200000px;}
.y1d2_c01314{bottom:260.070000px;}
.y1d3_c01314{bottom:262.650000px;}
.y1d7_c01314{bottom:264.390000px;}
.y1d6_c01314{bottom:266.115000px;}
.y1da_c01314{bottom:266.970000px;}
.y1d0_c01314{bottom:267.840000px;}
.y1d8_c01314{bottom:268.710000px;}
.y1d9_c01314{bottom:269.565000px;}
.y1db_c01314{bottom:275.610000px;}
.y1d5_c01314{bottom:278.205000px;}
.y1c8_c01314{bottom:281.670000px;}
.y1c9_c01314{bottom:282.525000px;}
.y1ca_c01314{bottom:283.395000px;}
.y1cb_c01314{bottom:284.250000px;}
.y1cc_c01314{bottom:285.990000px;}
.y1cd_c01314{bottom:286.845000px;}
.y1ce_c01314{bottom:292.035000px;}
.y1cf_c01314{bottom:293.760000px;}
.y1c0_c01314{bottom:298.950000px;}
.y1bf_c01314{bottom:299.805000px;}
.y1c1_c01314{bottom:300.675000px;}
.y1c3_c01314{bottom:304.995000px;}
.y1c5_c01314{bottom:305.850000px;}
.y1c7_c01314{bottom:306.720000px;}
.y1c2_c01314{bottom:307.590000px;}
.y1c4_c01314{bottom:309.315000px;}
.y1c6_c01314{bottom:311.040000px;}
.y1b7_c01314{bottom:317.955000px;}
.y1bb_c01314{bottom:318.810000px;}
.y1b8_c01314{bottom:322.275000px;}
.y1ba_c01314{bottom:323.130000px;}
.y1b9_c01314{bottom:324.000000px;}
.y1bc_c01314{bottom:326.595000px;}
.y1bd_c01314{bottom:332.640000px;}
.y1be_c01314{bottom:334.365000px;}
.y1ac_c01314{bottom:339.555000px;}
.y1ae_c01314{bottom:341.280000px;}
.y1a9_c01314{bottom:342.150000px;}
.y1aa_c01314{bottom:343.005000px;}
.y1ab_c01314{bottom:343.875000px;}
.y1ad_c01314{bottom:344.730000px;}
.y1b2_c01314{bottom:346.470000px;}
.y1af_c01314{bottom:348.195000px;}
.y1a8_c01314{bottom:349.050000px;}
.y1b0_c01314{bottom:349.920000px;}
.y1b1_c01314{bottom:350.790000px;}
.y1b3_c01314{bottom:352.515000px;}
.y1b4_c01314{bottom:353.370000px;}
.y1b5_c01314{bottom:354.240000px;}
.y1a0_c01314{bottom:360.285000px;}
.y1b6_c01314{bottom:363.750000px;}
.y1a2_c01314{bottom:364.605000px;}
.y1a3_c01314{bottom:365.475000px;}
.y1a1_c01314{bottom:366.330000px;}
.y1a6_c01314{bottom:368.070000px;}
.y1a7_c01314{bottom:369.795000px;}
.y1a5_c01314{bottom:371.520000px;}
.y1a4_c01314{bottom:372.390000px;}
.y197_c01314{bottom:381.885000px;}
.y195_c01314{bottom:384.480000px;}
.y196_c01314{bottom:385.350000px;}
.y198_c01314{bottom:387.075000px;}
.y199_c01314{bottom:387.930000px;}
.y19b_c01314{bottom:389.670000px;}
.y19a_c01314{bottom:390.525000px;}
.y19c_c01314{bottom:391.395000px;}
.y19f_c01314{bottom:392.250000px;}
.y19d_c01314{bottom:393.120000px;}
.y19e_c01314{bottom:394.845000px;}
.y18d_c01314{bottom:400.890000px;}
.y190_c01314{bottom:402.630000px;}
.y18f_c01314{bottom:404.355000px;}
.y193_c01314{bottom:406.080000px;}
.y18e_c01314{bottom:407.805000px;}
.y191_c01314{bottom:408.675000px;}
.y194_c01314{bottom:409.530000px;}
.y192_c01314{bottom:410.400000px;}
.y184_c01314{bottom:418.170000px;}
.y185_c01314{bottom:419.910000px;}
.y187_c01314{bottom:421.635000px;}
.y189_c01314{bottom:424.230000px;}
.y186_c01314{bottom:425.085000px;}
.y188_c01314{bottom:426.810000px;}
.y18a_c01314{bottom:427.680000px;}
.y18b_c01314{bottom:429.405000px;}
.y18c_c01314{bottom:430.275000px;}
.y17b_c01314{bottom:440.640000px;}
.y17e_c01314{bottom:442.365000px;}
.y17f_c01314{bottom:444.090000px;}
.y17d_c01314{bottom:445.830000px;}
.y181_c01314{bottom:448.410000px;}
.y17c_c01314{bottom:449.280000px;}
.y180_c01314{bottom:450.150000px;}
.y182_c01314{bottom:452.730000px;}
.y183_c01314{bottom:456.195000px;}
.y170_c01314{bottom:457.920000px;}
.y172_c01314{bottom:458.790000px;}
.y175_c01314{bottom:464.835000px;}
.y171_c01314{bottom:465.690000px;}
.y179_c01314{bottom:467.430000px;}
.y173_c01314{bottom:468.285000px;}
.y174_c01314{bottom:469.155000px;}
.y17a_c01314{bottom:470.010000px;}
.y177_c01314{bottom:470.880000px;}
.y176_c01314{bottom:472.605000px;}
.y165_c01314{bottom:474.330000px;}
.y178_c01314{bottom:475.200000px;}
.y166_c01314{bottom:476.070000px;}
.y168_c01314{bottom:477.795000px;}
.y167_c01314{bottom:478.650000px;}
.y164_c01314{bottom:479.520000px;}
.y16a_c01314{bottom:483.840000px;}
.y169_c01314{bottom:484.710000px;}
.y16c_c01314{bottom:485.565000px;}
.y16b_c01314{bottom:486.435000px;}
.y16d_c01314{bottom:488.160000px;}
.y16f_c01314{bottom:490.755000px;}
.y15e_c01314{bottom:492.480000px;}
.y16e_c01314{bottom:494.205000px;}
.y15f_c01314{bottom:501.120000px;}
.y163_c01314{bottom:506.310000px;}
.y162_c01314{bottom:507.165000px;}
.y161_c01314{bottom:508.035000px;}
.y160_c01314{bottom:509.760000px;}
.y157_c01314{bottom:520.995000px;}
.y158_c01314{bottom:523.590000px;}
.y15b_c01314{bottom:525.315000px;}
.y159_c01314{bottom:527.910000px;}
.y15d_c01314{bottom:528.765000px;}
.y15a_c01314{bottom:531.360000px;}
.y14f_c01314{bottom:541.725000px;}
.y15c_c01314{bottom:543.450000px;}
.y150_c01314{bottom:544.320000px;}
.y151_c01314{bottom:546.045000px;}
.y152_c01314{bottom:546.915000px;}
.y154_c01314{bottom:553.830000px;}
.y155_c01314{bottom:554.685000px;}
.y153_c01314{bottom:555.555000px;}
.y144_c01314{bottom:558.150000px;}
.y148_c01314{bottom:559.875000px;}
.y145_c01314{bottom:561.600000px;}
.y156_c01314{bottom:563.325000px;}
.y147_c01314{bottom:565.920000px;}
.y14a_c01314{bottom:566.790000px;}
.y14b_c01314{bottom:567.645000px;}
.y146_c01314{bottom:568.515000px;}
.y14d_c01314{bottom:569.370000px;}
.y14c_c01314{bottom:573.690000px;}
.y14e_c01314{bottom:576.285000px;}
.y149_c01314{bottom:577.155000px;}
.y13c_c01314{bottom:583.200000px;}
.y13b_c01314{bottom:584.070000px;}
.y13d_c01314{bottom:585.795000px;}
.y13e_c01314{bottom:589.245000px;}
.y141_c01314{bottom:590.115000px;}
.y13f_c01314{bottom:590.970000px;}
.y142_c01314{bottom:593.565000px;}
.y140_c01314{bottom:594.435000px;}
.y136_c01314{bottom:602.205000px;}
.y135_c01314{bottom:603.075000px;}
.y138_c01314{bottom:609.120000px;}
.y137_c01314{bottom:609.990000px;}
.y143_c01314{bottom:611.715000px;}
.y13a_c01314{bottom:612.570000px;}
.y139_c01314{bottom:614.310000px;}
.y12d_c01314{bottom:621.210000px;}
.y12c_c01314{bottom:625.530000px;}
.y12e_c01314{bottom:628.125000px;}
.y133_c01314{bottom:628.995000px;}
.y134_c01314{bottom:629.850000px;}
.y12b_c01314{bottom:631.590000px;}
.y132_c01314{bottom:634.170000px;}
.y12a_c01314{bottom:636.765000px;}
.y130_c01314{bottom:643.680000px;}
.y124_c01314{bottom:644.550000px;}
.y125_c01314{bottom:645.405000px;}
.y12f_c01314{bottom:647.130000px;}
.y131_c01314{bottom:648.000000px;}
.y123_c01314{bottom:648.870000px;}
.y127_c01314{bottom:649.725000px;}
.y126_c01314{bottom:650.595000px;}
.y128_c01314{bottom:655.770000px;}
.y129_c01314{bottom:656.640000px;}
.y11e_c01314{bottom:667.005000px;}
.y11f_c01314{bottom:668.730000px;}
.y120_c01314{bottom:674.790000px;}
.y121_c01314{bottom:675.645000px;}
.y114_c01314{bottom:683.430000px;}
.y116_c01314{bottom:684.285000px;}
.y117_c01314{bottom:685.155000px;}
.y122_c01314{bottom:686.010000px;}
.y115_c01314{bottom:688.605000px;}
.y11a_c01314{bottom:689.475000px;}
.y118_c01314{bottom:691.200000px;}
.y11b_c01314{bottom:693.795000px;}
.y119_c01314{bottom:702.435000px;}
.y10c_c01314{bottom:703.290000px;}
.y10d_c01314{bottom:704.160000px;}
.y11c_c01314{bottom:706.755000px;}
.y110_c01314{bottom:707.610000px;}
.y111_c01314{bottom:708.480000px;}
.y11d_c01314{bottom:709.350000px;}
.y10e_c01314{bottom:710.205000px;}
.y10f_c01314{bottom:711.075000px;}
.y113_c01314{bottom:714.525000px;}
.y112_c01314{bottom:716.250000px;}
.y104_c01314{bottom:724.035000px;}
.y106_c01314{bottom:724.890000px;}
.y105_c01314{bottom:727.485000px;}
.y102_c01314{bottom:728.355000px;}
.y103_c01314{bottom:729.210000px;}
.y107_c01314{bottom:730.950000px;}
.y108_c01314{bottom:731.805000px;}
.y10a_c01314{bottom:732.675000px;}
.y109_c01314{bottom:734.400000px;}
.y10b_c01314{bottom:735.270000px;}
.yf9_c01314{bottom:740.445000px;}
.yfa_c01314{bottom:744.765000px;}
.yfb_c01314{bottom:746.490000px;}
.yfe_c01314{bottom:749.085000px;}
.yfd_c01314{bottom:749.955000px;}
.y100_c01314{bottom:752.550000px;}
.yff_c01314{bottom:754.275000px;}
.yfc_c01314{bottom:755.130000px;}
.y101_c01314{bottom:757.725000px;}
.yf2_c01314{bottom:765.510000px;}
.yf0_c01314{bottom:769.830000px;}
.yf1_c01314{bottom:770.685000px;}
.yf5_c01314{bottom:771.555000px;}
.yf3_c01314{bottom:772.410000px;}
.yf4_c01314{bottom:775.875000px;}
.yf8_c01314{bottom:776.730000px;}
.yf6_c01314{bottom:777.600000px;}
.yf7_c01314{bottom:778.470000px;}
.ye8_c01314{bottom:784.515000px;}
.yea_c01314{bottom:785.370000px;}
.yeb_c01314{bottom:787.110000px;}
.ye9_c01314{bottom:789.690000px;}
.yed_c01314{bottom:792.285000px;}
.yef_c01314{bottom:794.010000px;}
.yee_c01314{bottom:796.605000px;}
.yec_c01314{bottom:803.520000px;}
.ye2_c01314{bottom:806.115000px;}
.ye1_c01314{bottom:806.970000px;}
.y1f8_c01314{bottom:807.840000px;}
.ye0_c01314{bottom:809.565000px;}
.ye5_c01314{bottom:811.290000px;}
.ye3_c01314{bottom:812.160000px;}
.ye6_c01314{bottom:813.885000px;}
.ye4_c01314{bottom:814.755000px;}
.ydf_c01314{bottom:817.350000px;}
.ye7_c01314{bottom:818.205000px;}
.yd7_c01314{bottom:825.120000px;}
.yd6_c01314{bottom:827.715000px;}
.yd5_c01314{bottom:829.440000px;}
.yd8_c01314{bottom:830.310000px;}
.yd9_c01314{bottom:831.165000px;}
.yda_c01314{bottom:832.035000px;}
.ydb_c01314{bottom:832.890000px;}
.ydc_c01314{bottom:835.485000px;}
.ydd_c01314{bottom:837.210000px;}
.yde_c01314{bottom:838.950000px;}
.ycd_c01314{bottom:844.995000px;}
.ycf_c01314{bottom:846.720000px;}
.yd0_c01314{bottom:848.445000px;}
.ycc_c01314{bottom:849.315000px;}
.yce_c01314{bottom:850.170000px;}
.yd1_c01314{bottom:852.765000px;}
.yd2_c01314{bottom:854.490000px;}
.yd4_c01314{bottom:857.955000px;}
.yd3_c01314{bottom:858.810000px;}
.yc7_c01314{bottom:864.870000px;}
.yc6_c01314{bottom:867.450000px;}
.yc8_c01314{bottom:870.045000px;}
.yc9_c01314{bottom:870.915000px;}
.yca_c01314{bottom:874.365000px;}
.ycb_c01314{bottom:878.685000px;}
.yc0_c01314{bottom:889.050000px;}
.ybe_c01314{bottom:890.790000px;}
.ybf_c01314{bottom:891.645000px;}
.yc1_c01314{bottom:892.515000px;}
.yc3_c01314{bottom:894.240000px;}
.yc5_c01314{bottom:895.965000px;}
.yc2_c01314{bottom:896.835000px;}
.yc4_c01314{bottom:898.560000px;}
.yb6_c01314{bottom:905.475000px;}
.yb7_c01314{bottom:907.200000px;}
.yb8_c01314{bottom:908.070000px;}
.yba_c01314{bottom:913.245000px;}
.ybc_c01314{bottom:914.970000px;}
.ybb_c01314{bottom:915.840000px;}
.yb9_c01314{bottom:917.565000px;}
.ybd_c01314{bottom:920.160000px;}
.yae_c01314{bottom:926.205000px;}
.yb0_c01314{bottom:927.930000px;}
.yaf_c01314{bottom:931.395000px;}
.yb2_c01314{bottom:932.250000px;}
.yb1_c01314{bottom:933.120000px;}
.yb3_c01314{bottom:933.990000px;}
.yb4_c01314{bottom:940.035000px;}
.yb5_c01314{bottom:940.890000px;}
.ya5_c01314{bottom:946.950000px;}
.ya6_c01314{bottom:947.805000px;}
.ya3_c01314{bottom:950.400000px;}
.ya4_c01314{bottom:951.270000px;}
.ya8_c01314{bottom:952.125000px;}
.ya9_c01314{bottom:952.995000px;}
.ya7_c01314{bottom:953.850000px;}
.yab_c01314{bottom:954.720000px;}
.yad_c01314{bottom:955.590000px;}
.yaa_c01314{bottom:958.170000px;}
.yac_c01314{bottom:959.040000px;}
.y9c_c01314{bottom:966.810000px;}
.y9d_c01314{bottom:969.405000px;}
.y9e_c01314{bottom:972.870000px;}
.y9f_c01314{bottom:973.725000px;}
.ya2_c01314{bottom:977.190000px;}
.ya0_c01314{bottom:979.770000px;}
.ya1_c01314{bottom:981.510000px;}
.y95_c01314{bottom:986.685000px;}
.y94_c01314{bottom:988.410000px;}
.y93_c01314{bottom:991.005000px;}
.y99_c01314{bottom:991.875000px;}
.y96_c01314{bottom:992.730000px;}
.y97_c01314{bottom:993.600000px;}
.y98_c01314{bottom:994.470000px;}
.y9a_c01314{bottom:997.050000px;}
.y92_c01314{bottom:997.920000px;}
.y9b_c01314{bottom:998.790000px;}
.y8b_c01314{bottom:1010.010000px;}
.y8c_c01314{bottom:1011.750000px;}
.y8d_c01314{bottom:1012.605000px;}
.y8f_c01314{bottom:1015.200000px;}
.y90_c01314{bottom:1017.795000px;}
.y8e_c01314{bottom:1019.520000px;}
.y91_c01314{bottom:1021.245000px;}
.y87_c01314{bottom:1029.885000px;}
.y86_c01314{bottom:1031.610000px;}
.y8a_c01314{bottom:1033.350000px;}
.y88_c01314{bottom:1035.930000px;}
.y89_c01314{bottom:1036.800000px;}
.y7d_c01314{bottom:1048.035000px;}
.y7c_c01314{bottom:1048.890000px;}
.y7e_c01314{bottom:1049.760000px;}
.y81_c01314{bottom:1052.355000px;}
.y7f_c01314{bottom:1054.950000px;}
.y83_c01314{bottom:1056.675000px;}
.y80_c01314{bottom:1058.400000px;}
.y82_c01314{bottom:1059.270000px;}
.y84_c01314{bottom:1060.125000px;}
.y85_c01314{bottom:1060.995000px;}
.y7b_c01314{bottom:1063.590000px;}
.y74_c01314{bottom:1067.910000px;}
.y75_c01314{bottom:1070.490000px;}
.y77_c01314{bottom:1073.955000px;}
.y76_c01314{bottom:1074.810000px;}
.y78_c01314{bottom:1075.680000px;}
.y7a_c01314{bottom:1076.550000px;}
.y79_c01314{bottom:1078.275000px;}
.y71_c01314{bottom:1089.510000px;}
.y73_c01314{bottom:1095.555000px;}
.y72_c01314{bottom:1099.005000px;}
.y67_c01314{bottom:1107.645000px;}
.y65_c01314{bottom:1109.370000px;}
.y6a_c01314{bottom:1111.965000px;}
.y6c_c01314{bottom:1113.690000px;}
.y68_c01314{bottom:1114.560000px;}
.y69_c01314{bottom:1115.430000px;}
.y6b_c01314{bottom:1116.285000px;}
.y6d_c01314{bottom:1117.155000px;}
.y66_c01314{bottom:1118.010000px;}
.y1f7_c01314{bottom:1118.880000px;}
.y6e_c01314{bottom:1121.475000px;}
.y6f_c01314{bottom:1123.200000px;}
.y70_c01314{bottom:1124.070000px;}
.y5c_c01314{bottom:1129.245000px;}
.y5b_c01314{bottom:1133.565000px;}
.y5d_c01314{bottom:1134.435000px;}
.y5e_c01314{bottom:1135.290000px;}
.y5f_c01314{bottom:1136.160000px;}
.y62_c01314{bottom:1137.030000px;}
.y63_c01314{bottom:1137.885000px;}
.y61_c01314{bottom:1139.610000px;}
.y64_c01314{bottom:1143.930000px;}
.y60_c01314{bottom:1145.670000px;}
.y53_c01314{bottom:1148.250000px;}
.y54_c01314{bottom:1149.120000px;}
.y57_c01314{bottom:1154.310000px;}
.y55_c01314{bottom:1155.165000px;}
.y56_c01314{bottom:1156.035000px;}
.y59_c01314{bottom:1160.355000px;}
.y5a_c01314{bottom:1166.400000px;}
.y4c_c01314{bottom:1168.125000px;}
.y58_c01314{bottom:1168.995000px;}
.y4d_c01314{bottom:1169.850000px;}
.y4f_c01314{bottom:1172.445000px;}
.y4e_c01314{bottom:1175.910000px;}
.y50_c01314{bottom:1179.360000px;}
.y51_c01314{bottom:1180.230000px;}
.y52_c01314{bottom:1181.085000px;}
.y4b_c01314{bottom:1189.725000px;}
.y43_c01314{bottom:1192.320000px;}
.y45_c01314{bottom:1194.045000px;}
.y44_c01314{bottom:1194.915000px;}
.y46_c01314{bottom:1195.770000px;}
.y42_c01314{bottom:1196.640000px;}
.y41_c01314{bottom:1197.510000px;}
.y47_c01314{bottom:1198.365000px;}
.y48_c01314{bottom:1200.960000px;}
.y49_c01314{bottom:1201.830000px;}
.y4a_c01314{bottom:1202.685000px;}
.y36_c01314{bottom:1206.150000px;}
.y37_c01314{bottom:1207.005000px;}
.y38_c01314{bottom:1210.470000px;}
.y3b_c01314{bottom:1212.195000px;}
.y39_c01314{bottom:1213.050000px;}
.y3a_c01314{bottom:1216.515000px;}
.y2f_c01314{bottom:1219.110000px;}
.y3d_c01314{bottom:1219.965000px;}
.y3c_c01314{bottom:1220.835000px;}
.y3e_c01314{bottom:1221.690000px;}
.y3f_c01314{bottom:1222.560000px;}
.y40_c01314{bottom:1225.155000px;}
.y2b_c01314{bottom:1227.750000px;}
.y2c_c01314{bottom:1231.200000px;}
.y2e_c01314{bottom:1233.795000px;}
.y2d_c01314{bottom:1237.245000px;}
.y34_c01314{bottom:1238.970000px;}
.y33_c01314{bottom:1239.840000px;}
.y30_c01314{bottom:1240.710000px;}
.y31_c01314{bottom:1241.565000px;}
.y32_c01314{bottom:1243.290000px;}
.y35_c01314{bottom:1245.030000px;}
.y25_c01314{bottom:1250.205000px;}
.y24_c01314{bottom:1254.525000px;}
.y26_c01314{bottom:1255.395000px;}
.y27_c01314{bottom:1257.120000px;}
.y28_c01314{bottom:1257.990000px;}
.y2a_c01314{bottom:1259.715000px;}
.y29_c01314{bottom:1260.570000px;}
.y23_c01314{bottom:1265.760000px;}
.y1c_c01314{bottom:1269.210000px;}
.y1e_c01314{bottom:1272.675000px;}
.y1b_c01314{bottom:1274.400000px;}
.y19_c01314{bottom:1275.270000px;}
.y1d_c01314{bottom:1276.125000px;}
.y20_c01314{bottom:1276.995000px;}
.y1f_c01314{bottom:1277.850000px;}
.y21_c01314{bottom:1278.720000px;}
.y22_c01314{bottom:1280.445000px;}
.y1a_c01314{bottom:1285.635000px;}
.y11_c01314{bottom:1295.130000px;}
.y12_c01314{bottom:1296.000000px;}
.y14_c01314{bottom:1296.870000px;}
.y13_c01314{bottom:1297.725000px;}
.y16_c01314{bottom:1299.450000px;}
.y15_c01314{bottom:1302.045000px;}
.yb_c01314{bottom:1308.960000px;}
.yc_c01314{bottom:1311.555000px;}
.y17_c01314{bottom:1312.410000px;}
.y18_c01314{bottom:1313.280000px;}
.yf_c01314{bottom:1314.150000px;}
.ye_c01314{bottom:1315.875000px;}
.yd_c01314{bottom:1318.470000px;}
.y10_c01314{bottom:1320.195000px;}
.y1f6_c01314{bottom:1331.430000px;}
.y5_c01314{bottom:1338.330000px;}
.y8_c01314{bottom:1340.925000px;}
.ya_c01314{bottom:1342.650000px;}
.y4_c01314{bottom:1344.390000px;}
.y3_c01314{bottom:1345.245000px;}
.y7_c01314{bottom:1346.115000px;}
.y9_c01314{bottom:1349.565000px;}
.y6_c01314{bottom:1361.670000px;}
.y2_c01314{bottom:1445.475000px;}
.y1_c01314{bottom:1449.795000px;}
.he_c01314{height:3.110063px;}
.h11_c01314{height:5.399414px;}
.h7_c01314{height:6.209326px;}
.h2_c01314{height:9.340986px;}
.h12_c01314{height:12.418652px;}
.h1e_c01314{height:15.550313px;}
.h3_c01314{height:18.681973px;}
.h22_c01314{height:21.759639px;}
.h21_c01314{height:24.891299px;}
.h1f_c01314{height:27.968965px;}
.h1c_c01314{height:31.100625px;}
.h16_c01314{height:34.232285px;}
.h19_c01314{height:37.309951px;}
.h18_c01314{height:40.441611px;}
.hf_c01314{height:43.519277px;}
.hc_c01314{height:46.650937px;}
.h10_c01314{height:49.782598px;}
.hd_c01314{height:52.860264px;}
.h1d_c01314{height:55.301250px;}
.h14_c01314{height:55.991924px;}
.ha_c01314{height:59.069590px;}
.h5_c01314{height:62.201250px;}
.h15_c01314{height:65.332910px;}
.h8_c01314{height:68.410576px;}
.h20_c01314{height:70.482598px;}
.h13_c01314{height:71.542236px;}
.h1a_c01314{height:74.619902px;}
.h4_c01314{height:77.751563px;}
.h9_c01314{height:80.883223px;}
.hb_c01314{height:83.960889px;}
.h1b_c01314{height:87.092549px;}
.h6_c01314{height:90.170215px;}
.h23_c01314{height:93.301875px;}
.h17_c01314{height:130.611826px;}
.h1_c01314{height:1513.500000px;}
.h0_c01314{height:1513.725000px;}
.w1_c01314{width:1076.250000px;}
.w0_c01314{width:1076.550000px;}
.x0_c01314{left:0.000000px;}
.xec_c01314{left:96.765000px;}
.x3b_c01314{left:149.475000px;}
.x48_c01314{left:158.970000px;}
.x49_c01314{left:160.710000px;}
.x10e_c01314{left:163.290000px;}
.x19_c01314{left:174.525000px;}
.x4a_c01314{left:179.715000px;}
.xf0_c01314{left:182.310000px;}
.x1_c01314{left:185.760000px;}
.xed_c01314{left:196.995000px;}
.x2_c01314{left:200.445000px;}
.x3c_c01314{left:202.170000px;}
.x1a_c01314{left:205.635000px;}
.x2b_c01314{left:207.360000px;}
.x24_c01314{left:211.680000px;}
.x3d_c01314{left:214.275000px;}
.xf1_c01314{left:216.000000px;}
.x59_c01314{left:217.725000px;}
.xb_c01314{left:220.320000px;}
.x11_c01314{left:222.044550px;}
.x80_c01314{left:223.770000px;}
.xa8_c01314{left:225.510000px;}
.x79_c01314{left:227.235000px;}
.xd5_c01314{left:228.960000px;}
.xd7_c01314{left:231.555000px;}
.x7a_c01314{left:235.875000px;}
.x69_c01314{left:237.600000px;}
.x1b_c01314{left:241.920000px;}
.x89_c01314{left:244.515000px;}
.x5a_c01314{left:246.240000px;}
.xe2_c01314{left:249.690000px;}
.xa3_c01314{left:251.430000px;}
.x25_c01314{left:255.750000px;}
.xc_c01314{left:259.200000px;}
.x84_c01314{left:263.520000px;}
.x5b_c01314{left:265.245000px;}
.xcc_c01314{left:268.710000px;}
.xf5_c01314{left:270.435000px;}
.xe5_c01314{left:272.160000px;}
.xd8_c01314{left:274.755000px;}
.x26_c01314{left:277.350000px;}
.x8a_c01314{left:279.930000px;}
.x61_c01314{left:282.525000px;}
.x12_c01314{left:285.120000px;}
.xc4_c01314{left:288.570000px;}
.xd6_c01314{left:291.165000px;}
.x4b_c01314{left:292.890000px;}
.xf8_c01314{left:296.355000px;}
.x62_c01314{left:299.805000px;}
.x1c_c01314{left:301.530000px;}
.x8b_c01314{left:303.270000px;}
.x98_c01314{left:306.720000px;}
.xbf_c01314{left:312.765000px;}
.x4c_c01314{left:315.360000px;}
.xc5_c01314{left:317.085000px;}
.xa9_c01314{left:318.810000px;}
.x63_c01314{left:320.550000px;}
.x6a_c01314{left:324.000000px;}
.x103_c01314{left:326.595000px;}
.xb3_c01314{left:328.320000px;}
.xbb_c01314{left:330.915000px;}
.xcf_c01314{left:332.640000px;}
.xb4_c01314{left:334.365000px;}
.x74_c01314{left:338.685000px;}
.xb6_c01314{left:341.280000px;}
.xf9_c01314{left:343.005000px;}
.x27_c01314{left:346.470000px;}
.x54_c01314{left:349.920000px;}
.x13_c01314{left:351.645000px;}
.x4d_c01314{left:353.370000px;}
.xdf_c01314{left:355.110000px;}
.x3_c01314{left:358.560000px;}
.x4e_c01314{left:362.880000px;}
.xc6_c01314{left:364.605000px;}
.x3e_c01314{left:368.070000px;}
.x1d_c01314{left:370.650000px;}
.x6b_c01314{left:374.115000px;}
.xe0_c01314{left:376.710000px;}
.xc0_c01314{left:379.290000px;}
.xc9_c01314{left:381.030000px;}
.x8c_c01314{left:387.075000px;}
.x28_c01314{left:388.800000px;}
.x2c_c01314{left:393.120000px;}
.xfe_c01314{left:394.845000px;}
.x9f_c01314{left:403.485000px;}
.x75_c01314{left:405.210000px;}
.x1e_c01314{left:406.950000px;}
.x55_c01314{left:408.675000px;}
.x4_c01314{left:412.995000px;}
.xb0_c01314{left:414.720000px;}
.xe7_c01314{left:417.315000px;}
.xf3_c01314{left:419.910000px;}
.x7b_c01314{left:423.360000px;}
.x99_c01314{left:425.955000px;}
.xd9_c01314{left:427.680000px;}
.xcd_c01314{left:429.405000px;}
.x6c_c01314{left:432.870000px;}
.xea_c01314{left:436.320000px;}
.xaa_c01314{left:438.915000px;}
.x5c_c01314{left:447.555000px;}
.x8d_c01314{left:450.150000px;}
.x2d_c01314{left:452.730000px;}
.x5_c01314{left:455.325000px;}
.x3f_c01314{left:459.645000px;}
.x14_c01314{left:461.370000px;}
.xb7_c01314{left:463.965000px;}
.x85_c01314{left:466.560000px;}
.xd_c01314{left:469.155000px;}
.x5d_c01314{left:470.880000px;}
.xc1_c01314{left:472.605000px;}
.x56_c01314{left:475.200000px;}
.x6_c01314{left:478.650000px;}
.xe8_c01314{left:480.390000px;}
.x86_c01314{left:482.970000px;}
.x7c_c01314{left:490.755000px;}
.x7_c01314{left:492.480000px;}
.xff_c01314{left:495.930000px;}
.xd3_c01314{left:497.670000px;}
.x6d_c01314{left:503.715000px;}
.xe_c01314{left:506.310000px;}
.x7d_c01314{left:508.035000px;}
.x4f_c01314{left:510.630000px;}
.xd0_c01314{left:512.355000px;}
.x5e_c01314{left:514.950000px;}
.x15_c01314{left:518.400000px;}
.xf_c01314{left:525.315000px;}
.x16_c01314{left:527.910000px;}
.x10_c01314{left:532.230000px;}
.x81_c01314{left:534.810000px;}
.xca_c01314{left:537.405000px;}
.x40_c01314{left:540.870000px;}
.xc2_c01314{left:544.320000px;}
.x64_c01314{left:546.045000px;}
.xab_c01314{left:549.510000px;}
.x2e_c01314{left:551.235000px;}
.x8_c01314{left:552.960000px;}
.x9a_c01314{left:554.685000px;}
.xa4_c01314{left:556.410000px;}
.x29_c01314{left:558.150000px;}
.xda_c01314{left:560.729400px;}
.x8e_c01314{left:564.195000px;}
.x10c_c01314{left:567.645000px;}
.x76_c01314{left:569.370000px;}
.x2a_c01314{left:571.965000px;}
.x65_c01314{left:574.560000px;}
.x104_c01314{left:577.155000px;}
.xdb_c01314{left:578.880000px;}
.xb8_c01314{left:581.475000px;}
.x41_c01314{left:587.520000px;}
.xce_c01314{left:589.245000px;}
.x6e_c01314{left:591.840000px;}
.x1f_c01314{left:595.290000px;}
.x50_c01314{left:597.030000px;}
.x2f_c01314{left:598.755000px;}
.xb1_c01314{left:600.480000px;}
.x9b_c01314{left:603.075000px;}
.xc7_c01314{left:605.670000px;}
.xa5_c01314{left:609.990000px;}
.x30_c01314{left:615.165000px;}
.x42_c01314{left:618.630000px;}
.x20_c01314{left:620.355000px;}
.x92_c01314{left:622.080000px;}
.xac_c01314{left:624.675000px;}
.xdc_c01314{left:628.995000px;}
.x31_c01314{left:631.590000px;}
.xbc_c01314{left:634.170000px;}
.xa0_c01314{left:635.910000px;}
.x51_c01314{left:637.635000px;}
.xf4_c01314{left:640.230000px;}
.xdd_c01314{left:641.955000px;}
.x57_c01314{left:643.680000px;}
.xd1_c01314{left:645.405000px;}
.x32_c01314{left:648.000000px;}
.x66_c01314{left:649.725000px;}
.x100_c01314{left:651.450000px;}
.x8f_c01314{left:654.915000px;}
.xfb_c01314{left:656.640000px;}
.x33_c01314{left:658.365000px;}
.x43_c01314{left:660.960000px;}
.x9_c01314{left:663.555000px;}
.x7e_c01314{left:665.280000px;}
.x52_c01314{left:668.730000px;}
.x44_c01314{left:671.325000px;}
.x10d_c01314{left:674.790000px;}
.x6f_c01314{left:676.515000px;}
.xc3_c01314{left:679.965000px;}
.x77_c01314{left:681.690000px;}
.x101_c01314{left:683.430000px;}
.xa_c01314{left:686.010000px;}
.x53_c01314{left:687.750000px;}
.x93_c01314{left:689.475000px;}
.x45_c01314{left:691.200000px;}
.xad_c01314{left:694.650000px;}
.x34_c01314{left:697.245000px;}
.x70_c01314{left:699.840000px;}
.xa6_c01314{left:702.435000px;}
.x109_c01314{left:704.160000px;}
.x105_c01314{left:705.885000px;}
.x9c_c01314{left:708.480000px;}
.x21_c01314{left:711.075000px;}
.x35_c01314{left:712.800000px;}
.xb2_c01314{left:715.395000px;}
.x67_c01314{left:720.570000px;}
.x7f_c01314{left:722.310000px;}
.x9d_c01314{left:724.890000px;}
.xeb_c01314{left:730.080000px;}
.x36_c01314{left:731.805000px;}
.xbd_c01314{left:733.530000px;}
.x22_c01314{left:736.125000px;}
.x94_c01314{left:739.590000px;}
.xb9_c01314{left:741.315000px;}
.xe6_c01314{left:743.910000px;}
.xf6_c01314{left:747.360000px;}
.xc8_c01314{left:749.085000px;}
.xae_c01314{left:751.680000px;}
.x37_c01314{left:753.405000px;}
.x10a_c01314{left:755.130000px;}
.xfc_c01314{left:756.870000px;}
.x17_c01314{left:760.320000px;}
.x58_c01314{left:762.045000px;}
.x87_c01314{left:764.640000px;}
.x82_c01314{left:767.235000px;}
.xe9_c01314{left:769.830000px;}
.x18_c01314{left:771.555000px;}
.x71_c01314{left:774.150000px;}
.x95_c01314{left:777.600000px;}
.x106_c01314{left:781.050000px;}
.xa7_c01314{left:782.790000px;}
.xaf_c01314{left:784.515000px;}
.x102_c01314{left:786.240000px;}
.x46_c01314{left:787.965000px;}
.x5f_c01314{left:790.560000px;}
.xd2_c01314{left:796.605000px;}
.xcb_c01314{left:798.330000px;}
.x9e_c01314{left:800.925000px;}
.x78_c01314{left:802.650000px;}
.x38_c01314{left:804.390000px;}
.xf7_c01314{left:806.970000px;}
.x60_c01314{left:809.565000px;}
.x39_c01314{left:813.030000px;}
.xb5_c01314{left:814.755000px;}
.xa1_c01314{left:819.075000px;}
.xf2_c01314{left:820.800000px;}
.xba_c01314{left:822.525000px;}
.xee_c01314{left:824.250000px;}
.xbe_c01314{left:826.845000px;}
.x68_c01314{left:829.440000px;}
.x96_c01314{left:832.035000px;}
.x23_c01314{left:834.630000px;}
.x72_c01314{left:836.355000px;}
.xa2_c01314{left:838.080000px;}
.x10b_c01314{left:840.675000px;}
.x83_c01314{left:842.400000px;}
.x47_c01314{left:847.590000px;}
.x73_c01314{left:854.490000px;}
.xfa_c01314{left:856.230000px;}
.x3a_c01314{left:860.550000px;}
.xfd_c01314{left:864.000000px;}
.x90_c01314{left:865.725000px;}
.xd4_c01314{left:867.450000px;}
.xe3_c01314{left:876.090000px;}
.x91_c01314{left:879.555000px;}
.x107_c01314{left:883.005000px;}
.x88_c01314{left:886.470000px;}
.xef_c01314{left:897.690000px;}
.xe4_c01314{left:902.010000px;}
.xde_c01314{left:906.330000px;}
.xe1_c01314{left:908.925000px;}
.x108_c01314{left:910.650000px;}
.x97_c01314{left:914.115000px;}
.x111_c01314{left:1028.160000px;}
.x10f_c01314{left:1054.950000px;}
.x110_c01314{left:1068.765000px;}
@media print{
.v1_c01314{vertical-align:-6.133333pt;}
.v0_c01314{vertical-align:0.000000pt;}
.v3_c01314{vertical-align:3.040000pt;}
.v2_c01314{vertical-align:18.400000pt;}
.ls0_c01314{letter-spacing:0.000000pt;}
.ws1_c01314{word-spacing:-25.893333pt;}
.ws2_c01314{word-spacing:-5.208107pt;}
.ws4_c01314{word-spacing:0.000000pt;}
.ws3_c01314{word-spacing:18.863947pt;}
.ws0_c01314{word-spacing:56.542293pt;}
.fsc_c01314{font-size:3.072000pt;}
.fsf_c01314{font-size:5.333333pt;}
.fs5_c01314{font-size:6.133333pt;}
.fs0_c01314{font-size:9.226667pt;}
.fs10_c01314{font-size:12.266667pt;}
.fs1b_c01314{font-size:15.360000pt;}
.fs1_c01314{font-size:18.453333pt;}
.fs1e_c01314{font-size:21.493333pt;}
.fs1d_c01314{font-size:24.586667pt;}
.fs1c_c01314{font-size:27.626667pt;}
.fs1a_c01314{font-size:30.720000pt;}
.fs14_c01314{font-size:33.813333pt;}
.fs17_c01314{font-size:36.853333pt;}
.fs16_c01314{font-size:39.946667pt;}
.fsd_c01314{font-size:42.986667pt;}
.fsa_c01314{font-size:46.080000pt;}
.fse_c01314{font-size:49.173333pt;}
.fsb_c01314{font-size:52.213333pt;}
.fs12_c01314{font-size:55.306667pt;}
.fs8_c01314{font-size:58.346667pt;}
.fs3_c01314{font-size:61.440000pt;}
.fs13_c01314{font-size:64.533333pt;}
.fs6_c01314{font-size:67.573333pt;}
.fs11_c01314{font-size:70.666667pt;}
.fs18_c01314{font-size:73.706667pt;}
.fs2_c01314{font-size:76.800000pt;}
.fs7_c01314{font-size:79.893333pt;}
.fs9_c01314{font-size:82.933333pt;}
.fs19_c01314{font-size:86.026667pt;}
.fs4_c01314{font-size:89.066667pt;}
.fs1f_c01314{font-size:92.160000pt;}
.fs15_c01314{font-size:129.013333pt;}
.y0_c01314{bottom:0.000000pt;}
.y1f5_c01314{bottom:155.906667pt;}
.y1f4_c01314{bottom:156.666667pt;}
.y1f0_c01314{bottom:159.746667pt;}
.y1f3_c01314{bottom:164.346667pt;}
.y1f2_c01314{bottom:165.893333pt;}
.y1f1_c01314{bottom:167.426667pt;}
.y1e9_c01314{bottom:179.706667pt;}
.y1eb_c01314{bottom:180.480000pt;}
.y1ea_c01314{bottom:182.013333pt;}
.y1e8_c01314{bottom:182.786667pt;}
.y1ee_c01314{bottom:185.093333pt;}
.y1ed_c01314{bottom:185.853333pt;}
.y1ef_c01314{bottom:191.226667pt;}
.y1ec_c01314{bottom:192.000000pt;}
.y1e2_c01314{bottom:197.373333pt;}
.y1e3_c01314{bottom:199.680000pt;}
.y1e4_c01314{bottom:201.213333pt;}
.y1e5_c01314{bottom:201.986667pt;}
.y1e6_c01314{bottom:204.293333pt;}
.y1e7_c01314{bottom:205.053333pt;}
.y1e1_c01314{bottom:211.200000pt;}
.y1dd_c01314{bottom:215.040000pt;}
.y1dc_c01314{bottom:218.106667pt;}
.y1df_c01314{bottom:219.653333pt;}
.y1de_c01314{bottom:221.186667pt;}
.y1e0_c01314{bottom:222.720000pt;}
.y1d1_c01314{bottom:228.093333pt;}
.y1d4_c01314{bottom:230.400000pt;}
.y1d2_c01314{bottom:231.173333pt;}
.y1d3_c01314{bottom:233.466667pt;}
.y1d7_c01314{bottom:235.013333pt;}
.y1d6_c01314{bottom:236.546667pt;}
.y1da_c01314{bottom:237.306667pt;}
.y1d0_c01314{bottom:238.080000pt;}
.y1d8_c01314{bottom:238.853333pt;}
.y1d9_c01314{bottom:239.613333pt;}
.y1db_c01314{bottom:244.986667pt;}
.y1d5_c01314{bottom:247.293333pt;}
.y1c8_c01314{bottom:250.373333pt;}
.y1c9_c01314{bottom:251.133333pt;}
.y1ca_c01314{bottom:251.906667pt;}
.y1cb_c01314{bottom:252.666667pt;}
.y1cc_c01314{bottom:254.213333pt;}
.y1cd_c01314{bottom:254.973333pt;}
.y1ce_c01314{bottom:259.586667pt;}
.y1cf_c01314{bottom:261.120000pt;}
.y1c0_c01314{bottom:265.733333pt;}
.y1bf_c01314{bottom:266.493333pt;}
.y1c1_c01314{bottom:267.266667pt;}
.y1c3_c01314{bottom:271.106667pt;}
.y1c5_c01314{bottom:271.866667pt;}
.y1c7_c01314{bottom:272.640000pt;}
.y1c2_c01314{bottom:273.413333pt;}
.y1c4_c01314{bottom:274.946667pt;}
.y1c6_c01314{bottom:276.480000pt;}
.y1b7_c01314{bottom:282.626667pt;}
.y1bb_c01314{bottom:283.386667pt;}
.y1b8_c01314{bottom:286.466667pt;}
.y1ba_c01314{bottom:287.226667pt;}
.y1b9_c01314{bottom:288.000000pt;}
.y1bc_c01314{bottom:290.306667pt;}
.y1bd_c01314{bottom:295.680000pt;}
.y1be_c01314{bottom:297.213333pt;}
.y1ac_c01314{bottom:301.826667pt;}
.y1ae_c01314{bottom:303.360000pt;}
.y1a9_c01314{bottom:304.133333pt;}
.y1aa_c01314{bottom:304.893333pt;}
.y1ab_c01314{bottom:305.666667pt;}
.y1ad_c01314{bottom:306.426667pt;}
.y1b2_c01314{bottom:307.973333pt;}
.y1af_c01314{bottom:309.506667pt;}
.y1a8_c01314{bottom:310.266667pt;}
.y1b0_c01314{bottom:311.040000pt;}
.y1b1_c01314{bottom:311.813333pt;}
.y1b3_c01314{bottom:313.346667pt;}
.y1b4_c01314{bottom:314.106667pt;}
.y1b5_c01314{bottom:314.880000pt;}
.y1a0_c01314{bottom:320.253333pt;}
.y1b6_c01314{bottom:323.333333pt;}
.y1a2_c01314{bottom:324.093333pt;}
.y1a3_c01314{bottom:324.866667pt;}
.y1a1_c01314{bottom:325.626667pt;}
.y1a6_c01314{bottom:327.173333pt;}
.y1a7_c01314{bottom:328.706667pt;}
.y1a5_c01314{bottom:330.240000pt;}
.y1a4_c01314{bottom:331.013333pt;}
.y197_c01314{bottom:339.453333pt;}
.y195_c01314{bottom:341.760000pt;}
.y196_c01314{bottom:342.533333pt;}
.y198_c01314{bottom:344.066667pt;}
.y199_c01314{bottom:344.826667pt;}
.y19b_c01314{bottom:346.373333pt;}
.y19a_c01314{bottom:347.133333pt;}
.y19c_c01314{bottom:347.906667pt;}
.y19f_c01314{bottom:348.666667pt;}
.y19d_c01314{bottom:349.440000pt;}
.y19e_c01314{bottom:350.973333pt;}
.y18d_c01314{bottom:356.346667pt;}
.y190_c01314{bottom:357.893333pt;}
.y18f_c01314{bottom:359.426667pt;}
.y193_c01314{bottom:360.960000pt;}
.y18e_c01314{bottom:362.493333pt;}
.y191_c01314{bottom:363.266667pt;}
.y194_c01314{bottom:364.026667pt;}
.y192_c01314{bottom:364.800000pt;}
.y184_c01314{bottom:371.706667pt;}
.y185_c01314{bottom:373.253333pt;}
.y187_c01314{bottom:374.786667pt;}
.y189_c01314{bottom:377.093333pt;}
.y186_c01314{bottom:377.853333pt;}
.y188_c01314{bottom:379.386667pt;}
.y18a_c01314{bottom:380.160000pt;}
.y18b_c01314{bottom:381.693333pt;}
.y18c_c01314{bottom:382.466667pt;}
.y17b_c01314{bottom:391.680000pt;}
.y17e_c01314{bottom:393.213333pt;}
.y17f_c01314{bottom:394.746667pt;}
.y17d_c01314{bottom:396.293333pt;}
.y181_c01314{bottom:398.586667pt;}
.y17c_c01314{bottom:399.360000pt;}
.y180_c01314{bottom:400.133333pt;}
.y182_c01314{bottom:402.426667pt;}
.y183_c01314{bottom:405.506667pt;}
.y170_c01314{bottom:407.040000pt;}
.y172_c01314{bottom:407.813333pt;}
.y175_c01314{bottom:413.186667pt;}
.y171_c01314{bottom:413.946667pt;}
.y179_c01314{bottom:415.493333pt;}
.y173_c01314{bottom:416.253333pt;}
.y174_c01314{bottom:417.026667pt;}
.y17a_c01314{bottom:417.786667pt;}
.y177_c01314{bottom:418.560000pt;}
.y176_c01314{bottom:420.093333pt;}
.y165_c01314{bottom:421.626667pt;}
.y178_c01314{bottom:422.400000pt;}
.y166_c01314{bottom:423.173333pt;}
.y168_c01314{bottom:424.706667pt;}
.y167_c01314{bottom:425.466667pt;}
.y164_c01314{bottom:426.240000pt;}
.y16a_c01314{bottom:430.080000pt;}
.y169_c01314{bottom:430.853333pt;}
.y16c_c01314{bottom:431.613333pt;}
.y16b_c01314{bottom:432.386667pt;}
.y16d_c01314{bottom:433.920000pt;}
.y16f_c01314{bottom:436.226667pt;}
.y15e_c01314{bottom:437.760000pt;}
.y16e_c01314{bottom:439.293333pt;}
.y15f_c01314{bottom:445.440000pt;}
.y163_c01314{bottom:450.053333pt;}
.y162_c01314{bottom:450.813333pt;}
.y161_c01314{bottom:451.586667pt;}
.y160_c01314{bottom:453.120000pt;}
.y157_c01314{bottom:463.106667pt;}
.y158_c01314{bottom:465.413333pt;}
.y15b_c01314{bottom:466.946667pt;}
.y159_c01314{bottom:469.253333pt;}
.y15d_c01314{bottom:470.013333pt;}
.y15a_c01314{bottom:472.320000pt;}
.y14f_c01314{bottom:481.533333pt;}
.y15c_c01314{bottom:483.066667pt;}
.y150_c01314{bottom:483.840000pt;}
.y151_c01314{bottom:485.373333pt;}
.y152_c01314{bottom:486.146667pt;}
.y154_c01314{bottom:492.293333pt;}
.y155_c01314{bottom:493.053333pt;}
.y153_c01314{bottom:493.826667pt;}
.y144_c01314{bottom:496.133333pt;}
.y148_c01314{bottom:497.666667pt;}
.y145_c01314{bottom:499.200000pt;}
.y156_c01314{bottom:500.733333pt;}
.y147_c01314{bottom:503.040000pt;}
.y14a_c01314{bottom:503.813333pt;}
.y14b_c01314{bottom:504.573333pt;}
.y146_c01314{bottom:505.346667pt;}
.y14d_c01314{bottom:506.106667pt;}
.y14c_c01314{bottom:509.946667pt;}
.y14e_c01314{bottom:512.253333pt;}
.y149_c01314{bottom:513.026667pt;}
.y13c_c01314{bottom:518.400000pt;}
.y13b_c01314{bottom:519.173333pt;}
.y13d_c01314{bottom:520.706667pt;}
.y13e_c01314{bottom:523.773333pt;}
.y141_c01314{bottom:524.546667pt;}
.y13f_c01314{bottom:525.306667pt;}
.y142_c01314{bottom:527.613333pt;}
.y140_c01314{bottom:528.386667pt;}
.y136_c01314{bottom:535.293333pt;}
.y135_c01314{bottom:536.066667pt;}
.y138_c01314{bottom:541.440000pt;}
.y137_c01314{bottom:542.213333pt;}
.y143_c01314{bottom:543.746667pt;}
.y13a_c01314{bottom:544.506667pt;}
.y139_c01314{bottom:546.053333pt;}
.y12d_c01314{bottom:552.186667pt;}
.y12c_c01314{bottom:556.026667pt;}
.y12e_c01314{bottom:558.333333pt;}
.y133_c01314{bottom:559.106667pt;}
.y134_c01314{bottom:559.866667pt;}
.y12b_c01314{bottom:561.413333pt;}
.y132_c01314{bottom:563.706667pt;}
.y12a_c01314{bottom:566.013333pt;}
.y130_c01314{bottom:572.160000pt;}
.y124_c01314{bottom:572.933333pt;}
.y125_c01314{bottom:573.693333pt;}
.y12f_c01314{bottom:575.226667pt;}
.y131_c01314{bottom:576.000000pt;}
.y123_c01314{bottom:576.773333pt;}
.y127_c01314{bottom:577.533333pt;}
.y126_c01314{bottom:578.306667pt;}
.y128_c01314{bottom:582.906667pt;}
.y129_c01314{bottom:583.680000pt;}
.y11e_c01314{bottom:592.893333pt;}
.y11f_c01314{bottom:594.426667pt;}
.y120_c01314{bottom:599.813333pt;}
.y121_c01314{bottom:600.573333pt;}
.y114_c01314{bottom:607.493333pt;}
.y116_c01314{bottom:608.253333pt;}
.y117_c01314{bottom:609.026667pt;}
.y122_c01314{bottom:609.786667pt;}
.y115_c01314{bottom:612.093333pt;}
.y11a_c01314{bottom:612.866667pt;}
.y118_c01314{bottom:614.400000pt;}
.y11b_c01314{bottom:616.706667pt;}
.y119_c01314{bottom:624.386667pt;}
.y10c_c01314{bottom:625.146667pt;}
.y10d_c01314{bottom:625.920000pt;}
.y11c_c01314{bottom:628.226667pt;}
.y110_c01314{bottom:628.986667pt;}
.y111_c01314{bottom:629.760000pt;}
.y11d_c01314{bottom:630.533333pt;}
.y10e_c01314{bottom:631.293333pt;}
.y10f_c01314{bottom:632.066667pt;}
.y113_c01314{bottom:635.133333pt;}
.y112_c01314{bottom:636.666667pt;}
.y104_c01314{bottom:643.586667pt;}
.y106_c01314{bottom:644.346667pt;}
.y105_c01314{bottom:646.653333pt;}
.y102_c01314{bottom:647.426667pt;}
.y103_c01314{bottom:648.186667pt;}
.y107_c01314{bottom:649.733333pt;}
.y108_c01314{bottom:650.493333pt;}
.y10a_c01314{bottom:651.266667pt;}
.y109_c01314{bottom:652.800000pt;}
.y10b_c01314{bottom:653.573333pt;}
.yf9_c01314{bottom:658.173333pt;}
.yfa_c01314{bottom:662.013333pt;}
.yfb_c01314{bottom:663.546667pt;}
.yfe_c01314{bottom:665.853333pt;}
.yfd_c01314{bottom:666.626667pt;}
.y100_c01314{bottom:668.933333pt;}
.yff_c01314{bottom:670.466667pt;}
.yfc_c01314{bottom:671.226667pt;}
.y101_c01314{bottom:673.533333pt;}
.yf2_c01314{bottom:680.453333pt;}
.yf0_c01314{bottom:684.293333pt;}
.yf1_c01314{bottom:685.053333pt;}
.yf5_c01314{bottom:685.826667pt;}
.yf3_c01314{bottom:686.586667pt;}
.yf4_c01314{bottom:689.666667pt;}
.yf8_c01314{bottom:690.426667pt;}
.yf6_c01314{bottom:691.200000pt;}
.yf7_c01314{bottom:691.973333pt;}
.ye8_c01314{bottom:697.346667pt;}
.yea_c01314{bottom:698.106667pt;}
.yeb_c01314{bottom:699.653333pt;}
.ye9_c01314{bottom:701.946667pt;}
.yed_c01314{bottom:704.253333pt;}
.yef_c01314{bottom:705.786667pt;}
.yee_c01314{bottom:708.093333pt;}
.yec_c01314{bottom:714.240000pt;}
.ye2_c01314{bottom:716.546667pt;}
.ye1_c01314{bottom:717.306667pt;}
.y1f8_c01314{bottom:718.080000pt;}
.ye0_c01314{bottom:719.613333pt;}
.ye5_c01314{bottom:721.146667pt;}
.ye3_c01314{bottom:721.920000pt;}
.ye6_c01314{bottom:723.453333pt;}
.ye4_c01314{bottom:724.226667pt;}
.ydf_c01314{bottom:726.533333pt;}
.ye7_c01314{bottom:727.293333pt;}
.yd7_c01314{bottom:733.440000pt;}
.yd6_c01314{bottom:735.746667pt;}
.yd5_c01314{bottom:737.280000pt;}
.yd8_c01314{bottom:738.053333pt;}
.yd9_c01314{bottom:738.813333pt;}
.yda_c01314{bottom:739.586667pt;}
.ydb_c01314{bottom:740.346667pt;}
.ydc_c01314{bottom:742.653333pt;}
.ydd_c01314{bottom:744.186667pt;}
.yde_c01314{bottom:745.733333pt;}
.ycd_c01314{bottom:751.106667pt;}
.ycf_c01314{bottom:752.640000pt;}
.yd0_c01314{bottom:754.173333pt;}
.ycc_c01314{bottom:754.946667pt;}
.yce_c01314{bottom:755.706667pt;}
.yd1_c01314{bottom:758.013333pt;}
.yd2_c01314{bottom:759.546667pt;}
.yd4_c01314{bottom:762.626667pt;}
.yd3_c01314{bottom:763.386667pt;}
.yc7_c01314{bottom:768.773333pt;}
.yc6_c01314{bottom:771.066667pt;}
.yc8_c01314{bottom:773.373333pt;}
.yc9_c01314{bottom:774.146667pt;}
.yca_c01314{bottom:777.213333pt;}
.ycb_c01314{bottom:781.053333pt;}
.yc0_c01314{bottom:790.266667pt;}
.ybe_c01314{bottom:791.813333pt;}
.ybf_c01314{bottom:792.573333pt;}
.yc1_c01314{bottom:793.346667pt;}
.yc3_c01314{bottom:794.880000pt;}
.yc5_c01314{bottom:796.413333pt;}
.yc2_c01314{bottom:797.186667pt;}
.yc4_c01314{bottom:798.720000pt;}
.yb6_c01314{bottom:804.866667pt;}
.yb7_c01314{bottom:806.400000pt;}
.yb8_c01314{bottom:807.173333pt;}
.yba_c01314{bottom:811.773333pt;}
.ybc_c01314{bottom:813.306667pt;}
.ybb_c01314{bottom:814.080000pt;}
.yb9_c01314{bottom:815.613333pt;}
.ybd_c01314{bottom:817.920000pt;}
.yae_c01314{bottom:823.293333pt;}
.yb0_c01314{bottom:824.826667pt;}
.yaf_c01314{bottom:827.906667pt;}
.yb2_c01314{bottom:828.666667pt;}
.yb1_c01314{bottom:829.440000pt;}
.yb3_c01314{bottom:830.213333pt;}
.yb4_c01314{bottom:835.586667pt;}
.yb5_c01314{bottom:836.346667pt;}
.ya5_c01314{bottom:841.733333pt;}
.ya6_c01314{bottom:842.493333pt;}
.ya3_c01314{bottom:844.800000pt;}
.ya4_c01314{bottom:845.573333pt;}
.ya8_c01314{bottom:846.333333pt;}
.ya9_c01314{bottom:847.106667pt;}
.ya7_c01314{bottom:847.866667pt;}
.yab_c01314{bottom:848.640000pt;}
.yad_c01314{bottom:849.413333pt;}
.yaa_c01314{bottom:851.706667pt;}
.yac_c01314{bottom:852.480000pt;}
.y9c_c01314{bottom:859.386667pt;}
.y9d_c01314{bottom:861.693333pt;}
.y9e_c01314{bottom:864.773333pt;}
.y9f_c01314{bottom:865.533333pt;}
.ya2_c01314{bottom:868.613333pt;}
.ya0_c01314{bottom:870.906667pt;}
.ya1_c01314{bottom:872.453333pt;}
.y95_c01314{bottom:877.053333pt;}
.y94_c01314{bottom:878.586667pt;}
.y93_c01314{bottom:880.893333pt;}
.y99_c01314{bottom:881.666667pt;}
.y96_c01314{bottom:882.426667pt;}
.y97_c01314{bottom:883.200000pt;}
.y98_c01314{bottom:883.973333pt;}
.y9a_c01314{bottom:886.266667pt;}
.y92_c01314{bottom:887.040000pt;}
.y9b_c01314{bottom:887.813333pt;}
.y8b_c01314{bottom:897.786667pt;}
.y8c_c01314{bottom:899.333333pt;}
.y8d_c01314{bottom:900.093333pt;}
.y8f_c01314{bottom:902.400000pt;}
.y90_c01314{bottom:904.706667pt;}
.y8e_c01314{bottom:906.240000pt;}
.y91_c01314{bottom:907.773333pt;}
.y87_c01314{bottom:915.453333pt;}
.y86_c01314{bottom:916.986667pt;}
.y8a_c01314{bottom:918.533333pt;}
.y88_c01314{bottom:920.826667pt;}
.y89_c01314{bottom:921.600000pt;}
.y7d_c01314{bottom:931.586667pt;}
.y7c_c01314{bottom:932.346667pt;}
.y7e_c01314{bottom:933.120000pt;}
.y81_c01314{bottom:935.426667pt;}
.y7f_c01314{bottom:937.733333pt;}
.y83_c01314{bottom:939.266667pt;}
.y80_c01314{bottom:940.800000pt;}
.y82_c01314{bottom:941.573333pt;}
.y84_c01314{bottom:942.333333pt;}
.y85_c01314{bottom:943.106667pt;}
.y7b_c01314{bottom:945.413333pt;}
.y74_c01314{bottom:949.253333pt;}
.y75_c01314{bottom:951.546667pt;}
.y77_c01314{bottom:954.626667pt;}
.y76_c01314{bottom:955.386667pt;}
.y78_c01314{bottom:956.160000pt;}
.y7a_c01314{bottom:956.933333pt;}
.y79_c01314{bottom:958.466667pt;}
.y71_c01314{bottom:968.453333pt;}
.y73_c01314{bottom:973.826667pt;}
.y72_c01314{bottom:976.893333pt;}
.y67_c01314{bottom:984.573333pt;}
.y65_c01314{bottom:986.106667pt;}
.y6a_c01314{bottom:988.413333pt;}
.y6c_c01314{bottom:989.946667pt;}
.y68_c01314{bottom:990.720000pt;}
.y69_c01314{bottom:991.493333pt;}
.y6b_c01314{bottom:992.253333pt;}
.y6d_c01314{bottom:993.026667pt;}
.y66_c01314{bottom:993.786667pt;}
.y1f7_c01314{bottom:994.560000pt;}
.y6e_c01314{bottom:996.866667pt;}
.y6f_c01314{bottom:998.400000pt;}
.y70_c01314{bottom:999.173333pt;}
.y5c_c01314{bottom:1003.773333pt;}
.y5b_c01314{bottom:1007.613333pt;}
.y5d_c01314{bottom:1008.386667pt;}
.y5e_c01314{bottom:1009.146667pt;}
.y5f_c01314{bottom:1009.920000pt;}
.y62_c01314{bottom:1010.693333pt;}
.y63_c01314{bottom:1011.453333pt;}
.y61_c01314{bottom:1012.986667pt;}
.y64_c01314{bottom:1016.826667pt;}
.y60_c01314{bottom:1018.373333pt;}
.y53_c01314{bottom:1020.666667pt;}
.y54_c01314{bottom:1021.440000pt;}
.y57_c01314{bottom:1026.053333pt;}
.y55_c01314{bottom:1026.813333pt;}
.y56_c01314{bottom:1027.586667pt;}
.y59_c01314{bottom:1031.426667pt;}
.y5a_c01314{bottom:1036.800000pt;}
.y4c_c01314{bottom:1038.333333pt;}
.y58_c01314{bottom:1039.106667pt;}
.y4d_c01314{bottom:1039.866667pt;}
.y4f_c01314{bottom:1042.173333pt;}
.y4e_c01314{bottom:1045.253333pt;}
.y50_c01314{bottom:1048.320000pt;}
.y51_c01314{bottom:1049.093333pt;}
.y52_c01314{bottom:1049.853333pt;}
.y4b_c01314{bottom:1057.533333pt;}
.y43_c01314{bottom:1059.840000pt;}
.y45_c01314{bottom:1061.373333pt;}
.y44_c01314{bottom:1062.146667pt;}
.y46_c01314{bottom:1062.906667pt;}
.y42_c01314{bottom:1063.680000pt;}
.y41_c01314{bottom:1064.453333pt;}
.y47_c01314{bottom:1065.213333pt;}
.y48_c01314{bottom:1067.520000pt;}
.y49_c01314{bottom:1068.293333pt;}
.y4a_c01314{bottom:1069.053333pt;}
.y36_c01314{bottom:1072.133333pt;}
.y37_c01314{bottom:1072.893333pt;}
.y38_c01314{bottom:1075.973333pt;}
.y3b_c01314{bottom:1077.506667pt;}
.y39_c01314{bottom:1078.266667pt;}
.y3a_c01314{bottom:1081.346667pt;}
.y2f_c01314{bottom:1083.653333pt;}
.y3d_c01314{bottom:1084.413333pt;}
.y3c_c01314{bottom:1085.186667pt;}
.y3e_c01314{bottom:1085.946667pt;}
.y3f_c01314{bottom:1086.720000pt;}
.y40_c01314{bottom:1089.026667pt;}
.y2b_c01314{bottom:1091.333333pt;}
.y2c_c01314{bottom:1094.400000pt;}
.y2e_c01314{bottom:1096.706667pt;}
.y2d_c01314{bottom:1099.773333pt;}
.y34_c01314{bottom:1101.306667pt;}
.y33_c01314{bottom:1102.080000pt;}
.y30_c01314{bottom:1102.853333pt;}
.y31_c01314{bottom:1103.613333pt;}
.y32_c01314{bottom:1105.146667pt;}
.y35_c01314{bottom:1106.693333pt;}
.y25_c01314{bottom:1111.293333pt;}
.y24_c01314{bottom:1115.133333pt;}
.y26_c01314{bottom:1115.906667pt;}
.y27_c01314{bottom:1117.440000pt;}
.y28_c01314{bottom:1118.213333pt;}
.y2a_c01314{bottom:1119.746667pt;}
.y29_c01314{bottom:1120.506667pt;}
.y23_c01314{bottom:1125.120000pt;}
.y1c_c01314{bottom:1128.186667pt;}
.y1e_c01314{bottom:1131.266667pt;}
.y1b_c01314{bottom:1132.800000pt;}
.y19_c01314{bottom:1133.573333pt;}
.y1d_c01314{bottom:1134.333333pt;}
.y20_c01314{bottom:1135.106667pt;}
.y1f_c01314{bottom:1135.866667pt;}
.y21_c01314{bottom:1136.640000pt;}
.y22_c01314{bottom:1138.173333pt;}
.y1a_c01314{bottom:1142.786667pt;}
.y11_c01314{bottom:1151.226667pt;}
.y12_c01314{bottom:1152.000000pt;}
.y14_c01314{bottom:1152.773333pt;}
.y13_c01314{bottom:1153.533333pt;}
.y16_c01314{bottom:1155.066667pt;}
.y15_c01314{bottom:1157.373333pt;}
.yb_c01314{bottom:1163.520000pt;}
.yc_c01314{bottom:1165.826667pt;}
.y17_c01314{bottom:1166.586667pt;}
.y18_c01314{bottom:1167.360000pt;}
.yf_c01314{bottom:1168.133333pt;}
.ye_c01314{bottom:1169.666667pt;}
.yd_c01314{bottom:1171.973333pt;}
.y10_c01314{bottom:1173.506667pt;}
.y1f6_c01314{bottom:1183.493333pt;}
.y5_c01314{bottom:1189.626667pt;}
.y8_c01314{bottom:1191.933333pt;}
.ya_c01314{bottom:1193.466667pt;}
.y4_c01314{bottom:1195.013333pt;}
.y3_c01314{bottom:1195.773333pt;}
.y7_c01314{bottom:1196.546667pt;}
.y9_c01314{bottom:1199.613333pt;}
.y6_c01314{bottom:1210.373333pt;}
.y2_c01314{bottom:1284.866667pt;}
.y1_c01314{bottom:1288.706667pt;}
.he_c01314{height:2.764500pt;}
.h11_c01314{height:4.799479pt;}
.h7_c01314{height:5.519401pt;}
.h2_c01314{height:8.303099pt;}
.h12_c01314{height:11.038802pt;}
.h1e_c01314{height:13.822500pt;}
.h3_c01314{height:16.606198pt;}
.h22_c01314{height:19.341901pt;}
.h21_c01314{height:22.125599pt;}
.h1f_c01314{height:24.861302pt;}
.h1c_c01314{height:27.645000pt;}
.h16_c01314{height:30.428698pt;}
.h19_c01314{height:33.164401pt;}
.h18_c01314{height:35.948099pt;}
.hf_c01314{height:38.683802pt;}
.hc_c01314{height:41.467500pt;}
.h10_c01314{height:44.251198pt;}
.hd_c01314{height:46.986901pt;}
.h1d_c01314{height:49.156667pt;}
.h14_c01314{height:49.770599pt;}
.ha_c01314{height:52.506302pt;}
.h5_c01314{height:55.290000pt;}
.h15_c01314{height:58.073698pt;}
.h8_c01314{height:60.809401pt;}
.h20_c01314{height:62.651198pt;}
.h13_c01314{height:63.593099pt;}
.h1a_c01314{height:66.328802pt;}
.h4_c01314{height:69.112500pt;}
.h9_c01314{height:71.896198pt;}
.hb_c01314{height:74.631901pt;}
.h1b_c01314{height:77.415599pt;}
.h6_c01314{height:80.151302pt;}
.h23_c01314{height:82.935000pt;}
.h17_c01314{height:116.099401pt;}
.h1_c01314{height:1345.333333pt;}
.h0_c01314{height:1345.533333pt;}
.w1_c01314{width:956.666667pt;}
.w0_c01314{width:956.933333pt;}
.x0_c01314{left:0.000000pt;}
.xec_c01314{left:86.013333pt;}
.x3b_c01314{left:132.866667pt;}
.x48_c01314{left:141.306667pt;}
.x49_c01314{left:142.853333pt;}
.x10e_c01314{left:145.146667pt;}
.x19_c01314{left:155.133333pt;}
.x4a_c01314{left:159.746667pt;}
.xf0_c01314{left:162.053333pt;}
.x1_c01314{left:165.120000pt;}
.xed_c01314{left:175.106667pt;}
.x2_c01314{left:178.173333pt;}
.x3c_c01314{left:179.706667pt;}
.x1a_c01314{left:182.786667pt;}
.x2b_c01314{left:184.320000pt;}
.x24_c01314{left:188.160000pt;}
.x3d_c01314{left:190.466667pt;}
.xf1_c01314{left:192.000000pt;}
.x59_c01314{left:193.533333pt;}
.xb_c01314{left:195.840000pt;}
.x11_c01314{left:197.372933pt;}
.x80_c01314{left:198.906667pt;}
.xa8_c01314{left:200.453333pt;}
.x79_c01314{left:201.986667pt;}
.xd5_c01314{left:203.520000pt;}
.xd7_c01314{left:205.826667pt;}
.x7a_c01314{left:209.666667pt;}
.x69_c01314{left:211.200000pt;}
.x1b_c01314{left:215.040000pt;}
.x89_c01314{left:217.346667pt;}
.x5a_c01314{left:218.880000pt;}
.xe2_c01314{left:221.946667pt;}
.xa3_c01314{left:223.493333pt;}
.x25_c01314{left:227.333333pt;}
.xc_c01314{left:230.400000pt;}
.x84_c01314{left:234.240000pt;}
.x5b_c01314{left:235.773333pt;}
.xcc_c01314{left:238.853333pt;}
.xf5_c01314{left:240.386667pt;}
.xe5_c01314{left:241.920000pt;}
.xd8_c01314{left:244.226667pt;}
.x26_c01314{left:246.533333pt;}
.x8a_c01314{left:248.826667pt;}
.x61_c01314{left:251.133333pt;}
.x12_c01314{left:253.440000pt;}
.xc4_c01314{left:256.506667pt;}
.xd6_c01314{left:258.813333pt;}
.x4b_c01314{left:260.346667pt;}
.xf8_c01314{left:263.426667pt;}
.x62_c01314{left:266.493333pt;}
.x1c_c01314{left:268.026667pt;}
.x8b_c01314{left:269.573333pt;}
.x98_c01314{left:272.640000pt;}
.xbf_c01314{left:278.013333pt;}
.x4c_c01314{left:280.320000pt;}
.xc5_c01314{left:281.853333pt;}
.xa9_c01314{left:283.386667pt;}
.x63_c01314{left:284.933333pt;}
.x6a_c01314{left:288.000000pt;}
.x103_c01314{left:290.306667pt;}
.xb3_c01314{left:291.840000pt;}
.xbb_c01314{left:294.146667pt;}
.xcf_c01314{left:295.680000pt;}
.xb4_c01314{left:297.213333pt;}
.x74_c01314{left:301.053333pt;}
.xb6_c01314{left:303.360000pt;}
.xf9_c01314{left:304.893333pt;}
.x27_c01314{left:307.973333pt;}
.x54_c01314{left:311.040000pt;}
.x13_c01314{left:312.573333pt;}
.x4d_c01314{left:314.106667pt;}
.xdf_c01314{left:315.653333pt;}
.x3_c01314{left:318.720000pt;}
.x4e_c01314{left:322.560000pt;}
.xc6_c01314{left:324.093333pt;}
.x3e_c01314{left:327.173333pt;}
.x1d_c01314{left:329.466667pt;}
.x6b_c01314{left:332.546667pt;}
.xe0_c01314{left:334.853333pt;}
.xc0_c01314{left:337.146667pt;}
.xc9_c01314{left:338.693333pt;}
.x8c_c01314{left:344.066667pt;}
.x28_c01314{left:345.600000pt;}
.x2c_c01314{left:349.440000pt;}
.xfe_c01314{left:350.973333pt;}
.x9f_c01314{left:358.653333pt;}
.x75_c01314{left:360.186667pt;}
.x1e_c01314{left:361.733333pt;}
.x55_c01314{left:363.266667pt;}
.x4_c01314{left:367.106667pt;}
.xb0_c01314{left:368.640000pt;}
.xe7_c01314{left:370.946667pt;}
.xf3_c01314{left:373.253333pt;}
.x7b_c01314{left:376.320000pt;}
.x99_c01314{left:378.626667pt;}
.xd9_c01314{left:380.160000pt;}
.xcd_c01314{left:381.693333pt;}
.x6c_c01314{left:384.773333pt;}
.xea_c01314{left:387.840000pt;}
.xaa_c01314{left:390.146667pt;}
.x5c_c01314{left:397.826667pt;}
.x8d_c01314{left:400.133333pt;}
.x2d_c01314{left:402.426667pt;}
.x5_c01314{left:404.733333pt;}
.x3f_c01314{left:408.573333pt;}
.x14_c01314{left:410.106667pt;}
.xb7_c01314{left:412.413333pt;}
.x85_c01314{left:414.720000pt;}
.xd_c01314{left:417.026667pt;}
.x5d_c01314{left:418.560000pt;}
.xc1_c01314{left:420.093333pt;}
.x56_c01314{left:422.400000pt;}
.x6_c01314{left:425.466667pt;}
.xe8_c01314{left:427.013333pt;}
.x86_c01314{left:429.306667pt;}
.x7c_c01314{left:436.226667pt;}
.x7_c01314{left:437.760000pt;}
.xff_c01314{left:440.826667pt;}
.xd3_c01314{left:442.373333pt;}
.x6d_c01314{left:447.746667pt;}
.xe_c01314{left:450.053333pt;}
.x7d_c01314{left:451.586667pt;}
.x4f_c01314{left:453.893333pt;}
.xd0_c01314{left:455.426667pt;}
.x5e_c01314{left:457.733333pt;}
.x15_c01314{left:460.800000pt;}
.xf_c01314{left:466.946667pt;}
.x16_c01314{left:469.253333pt;}
.x10_c01314{left:473.093333pt;}
.x81_c01314{left:475.386667pt;}
.xca_c01314{left:477.693333pt;}
.x40_c01314{left:480.773333pt;}
.xc2_c01314{left:483.840000pt;}
.x64_c01314{left:485.373333pt;}
.xab_c01314{left:488.453333pt;}
.x2e_c01314{left:489.986667pt;}
.x8_c01314{left:491.520000pt;}
.x9a_c01314{left:493.053333pt;}
.xa4_c01314{left:494.586667pt;}
.x29_c01314{left:496.133333pt;}
.xda_c01314{left:498.426133pt;}
.x8e_c01314{left:501.506667pt;}
.x10c_c01314{left:504.573333pt;}
.x76_c01314{left:506.106667pt;}
.x2a_c01314{left:508.413333pt;}
.x65_c01314{left:510.720000pt;}
.x104_c01314{left:513.026667pt;}
.xdb_c01314{left:514.560000pt;}
.xb8_c01314{left:516.866667pt;}
.x41_c01314{left:522.240000pt;}
.xce_c01314{left:523.773333pt;}
.x6e_c01314{left:526.080000pt;}
.x1f_c01314{left:529.146667pt;}
.x50_c01314{left:530.693333pt;}
.x2f_c01314{left:532.226667pt;}
.xb1_c01314{left:533.760000pt;}
.x9b_c01314{left:536.066667pt;}
.xc7_c01314{left:538.373333pt;}
.xa5_c01314{left:542.213333pt;}
.x30_c01314{left:546.813333pt;}
.x42_c01314{left:549.893333pt;}
.x20_c01314{left:551.426667pt;}
.x92_c01314{left:552.960000pt;}
.xac_c01314{left:555.266667pt;}
.xdc_c01314{left:559.106667pt;}
.x31_c01314{left:561.413333pt;}
.xbc_c01314{left:563.706667pt;}
.xa0_c01314{left:565.253333pt;}
.x51_c01314{left:566.786667pt;}
.xf4_c01314{left:569.093333pt;}
.xdd_c01314{left:570.626667pt;}
.x57_c01314{left:572.160000pt;}
.xd1_c01314{left:573.693333pt;}
.x32_c01314{left:576.000000pt;}
.x66_c01314{left:577.533333pt;}
.x100_c01314{left:579.066667pt;}
.x8f_c01314{left:582.146667pt;}
.xfb_c01314{left:583.680000pt;}
.x33_c01314{left:585.213333pt;}
.x43_c01314{left:587.520000pt;}
.x9_c01314{left:589.826667pt;}
.x7e_c01314{left:591.360000pt;}
.x52_c01314{left:594.426667pt;}
.x44_c01314{left:596.733333pt;}
.x10d_c01314{left:599.813333pt;}
.x6f_c01314{left:601.346667pt;}
.xc3_c01314{left:604.413333pt;}
.x77_c01314{left:605.946667pt;}
.x101_c01314{left:607.493333pt;}
.xa_c01314{left:609.786667pt;}
.x53_c01314{left:611.333333pt;}
.x93_c01314{left:612.866667pt;}
.x45_c01314{left:614.400000pt;}
.xad_c01314{left:617.466667pt;}
.x34_c01314{left:619.773333pt;}
.x70_c01314{left:622.080000pt;}
.xa6_c01314{left:624.386667pt;}
.x109_c01314{left:625.920000pt;}
.x105_c01314{left:627.453333pt;}
.x9c_c01314{left:629.760000pt;}
.x21_c01314{left:632.066667pt;}
.x35_c01314{left:633.600000pt;}
.xb2_c01314{left:635.906667pt;}
.x67_c01314{left:640.506667pt;}
.x7f_c01314{left:642.053333pt;}
.x9d_c01314{left:644.346667pt;}
.xeb_c01314{left:648.960000pt;}
.x36_c01314{left:650.493333pt;}
.xbd_c01314{left:652.026667pt;}
.x22_c01314{left:654.333333pt;}
.x94_c01314{left:657.413333pt;}
.xb9_c01314{left:658.946667pt;}
.xe6_c01314{left:661.253333pt;}
.xf6_c01314{left:664.320000pt;}
.xc8_c01314{left:665.853333pt;}
.xae_c01314{left:668.160000pt;}
.x37_c01314{left:669.693333pt;}
.x10a_c01314{left:671.226667pt;}
.xfc_c01314{left:672.773333pt;}
.x17_c01314{left:675.840000pt;}
.x58_c01314{left:677.373333pt;}
.x87_c01314{left:679.680000pt;}
.x82_c01314{left:681.986667pt;}
.xe9_c01314{left:684.293333pt;}
.x18_c01314{left:685.826667pt;}
.x71_c01314{left:688.133333pt;}
.x95_c01314{left:691.200000pt;}
.x106_c01314{left:694.266667pt;}
.xa7_c01314{left:695.813333pt;}
.xaf_c01314{left:697.346667pt;}
.x102_c01314{left:698.880000pt;}
.x46_c01314{left:700.413333pt;}
.x5f_c01314{left:702.720000pt;}
.xd2_c01314{left:708.093333pt;}
.xcb_c01314{left:709.626667pt;}
.x9e_c01314{left:711.933333pt;}
.x78_c01314{left:713.466667pt;}
.x38_c01314{left:715.013333pt;}
.xf7_c01314{left:717.306667pt;}
.x60_c01314{left:719.613333pt;}
.x39_c01314{left:722.693333pt;}
.xb5_c01314{left:724.226667pt;}
.xa1_c01314{left:728.066667pt;}
.xf2_c01314{left:729.600000pt;}
.xba_c01314{left:731.133333pt;}
.xee_c01314{left:732.666667pt;}
.xbe_c01314{left:734.973333pt;}
.x68_c01314{left:737.280000pt;}
.x96_c01314{left:739.586667pt;}
.x23_c01314{left:741.893333pt;}
.x72_c01314{left:743.426667pt;}
.xa2_c01314{left:744.960000pt;}
.x10b_c01314{left:747.266667pt;}
.x83_c01314{left:748.800000pt;}
.x47_c01314{left:753.413333pt;}
.x73_c01314{left:759.546667pt;}
.xfa_c01314{left:761.093333pt;}
.x3a_c01314{left:764.933333pt;}
.xfd_c01314{left:768.000000pt;}
.x90_c01314{left:769.533333pt;}
.xd4_c01314{left:771.066667pt;}
.xe3_c01314{left:778.746667pt;}
.x91_c01314{left:781.826667pt;}
.x107_c01314{left:784.893333pt;}
.x88_c01314{left:787.973333pt;}
.xef_c01314{left:797.946667pt;}
.xe4_c01314{left:801.786667pt;}
.xde_c01314{left:805.626667pt;}
.xe1_c01314{left:807.933333pt;}
.x108_c01314{left:809.466667pt;}
.x97_c01314{left:812.546667pt;}
.x111_c01314{left:913.920000pt;}
.x10f_c01314{left:937.733333pt;}
.x110_c01314{left:950.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_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;}
@font-face{font-family:ff1_c01315;src:url('chunks/assets/font_3018c9731feb07935d6a1a24.woff2')format("woff");}.ff1_c01315{font-family:ff1_c01315;line-height:1.109863;font-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_c01315{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m183_c01315{transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01315{transform:matrix(0.053625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053625,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01315{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m173_c01315{transform:matrix(0.074650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074650,0.000000,0.000000,0.250000,0,0);}
.mb4_c01315{transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083350,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01315{transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);}
.m16a_c01315{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.mb2_c01315{transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);}
.m161_c01315{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);}
.mb0_c01315{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);}
.mb8_c01315{transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);}
.m145_c01315{transform:matrix(0.102300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102300,0.000000,0.000000,0.250000,0,0);}
.m190_c01315{transform:matrix(0.104725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104725,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01315{transform:matrix(0.105150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105150,0.000000,0.000000,0.250000,0,0);}
.m2b_c01315{transform:matrix(0.105800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105800,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01315{transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);}
.m1e5_c01315{transform:matrix(0.108575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108575,0.000000,0.000000,0.250000,0,0);}
.m143_c01315{transform:matrix(0.109225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109225,0.000000,0.000000,0.250000,0,0);}
.mce_c01315{transform:matrix(0.109250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109250,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01315{transform:matrix(0.110350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110350,0.000000,0.000000,0.250000,0,0);}
.m14_c01315{transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);}
.m35_c01315{transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110775,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01315{transform:matrix(0.111050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111050,0.000000,0.000000,0.250000,0,0);}
.mbd_c01315{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m194_c01315{transform:matrix(0.113425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113425,0.000000,0.000000,0.250000,0,0);}
.m119_c01315{transform:matrix(0.113775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113775,0.000000,0.000000,0.250000,0,0);}
.m34_c01315{transform:matrix(0.114450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114450,0.000000,0.000000,0.250000,0,0);}
.m1e7_c01315{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m182_c01315{transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115775,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01315{transform:matrix(0.116600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116600,0.000000,0.000000,0.250000,0,0);}
.m180_c01315{transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);}
.m16d_c01315{transform:matrix(0.118350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118350,0.000000,0.000000,0.250000,0,0);}
.m13a_c01315{transform:matrix(0.118825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118825,0.000000,0.000000,0.250000,0,0);}
.m29_c01315{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m1ea_c01315{transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);}
.mbc_c01315{transform:matrix(0.120825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120825,0.000000,0.000000,0.250000,0,0);}
.m9f_c01315{transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);}
.m11d_c01315{transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);}
.md4_c01315{transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122100,0.000000,0.000000,0.250000,0,0);}
.m17_c01315{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);}
.m1fc_c01315{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.m16f_c01315{transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);}
.m168_c01315{transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123475,0.000000,0.000000,0.250000,0,0);}
.m1af_c01315{transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);}
.md8_c01315{transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01315{transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);}
.m38_c01315{transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);}
.m79_c01315{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mf3_c01315{transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126100,0.000000,0.000000,0.250000,0,0);}
.mb7_c01315{transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);}
.m167_c01315{transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);}
.m1ed_c01315{transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01315{transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129625,0.000000,0.000000,0.250000,0,0);}
.mda_c01315{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);}
.m82_c01315{transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);}
.ma9_c01315{transform:matrix(0.130725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130725,0.000000,0.000000,0.250000,0,0);}
.me8_c01315{transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);}
.md_c01315{transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01315{transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01315{transform:matrix(0.132125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132125,0.000000,0.000000,0.250000,0,0);}
.m196_c01315{transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);}
.m10e_c01315{transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);}
.m1f2_c01315{transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);}
.m13_c01315{transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);}
.m86_c01315{transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133125,0.000000,0.000000,0.250000,0,0);}
.m1f4_c01315{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.m19b_c01315{transform:matrix(0.134300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134300,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01315{transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134975,0.000000,0.000000,0.250000,0,0);}
.m175_c01315{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);}
.m65_c01315{transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135100,0.000000,0.000000,0.250000,0,0);}
.m177_c01315{transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);}
.m11a_c01315{transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135300,0.000000,0.000000,0.250000,0,0);}
.mc3_c01315{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);}
.md6_c01315{transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);}
.m19d_c01315{transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);}
.mae_c01315{transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137450,0.000000,0.000000,0.250000,0,0);}
.mbb_c01315{transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137475,0.000000,0.000000,0.250000,0,0);}
.mec_c01315{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m14b_c01315{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);}
.m13c_c01315{transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);}
.m1f5_c01315{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.mc5_c01315{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.m16c_c01315{transform:matrix(0.140325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140325,0.000000,0.000000,0.250000,0,0);}
.mf9_c01315{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m170_c01315{transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);}
.m28_c01315{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);}
.m141_c01315{transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);}
.m96_c01315{transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);}
.m13f_c01315{transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141675,0.000000,0.000000,0.250000,0,0);}
.m30_c01315{transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141750,0.000000,0.000000,0.250000,0,0);}
.m132_c01315{transform:matrix(0.141850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141850,0.000000,0.000000,0.250000,0,0);}
.m10a_c01315{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.mfe_c01315{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m12e_c01315{transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);}
.m18f_c01315{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);}
.m76_c01315{transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143850,0.000000,0.000000,0.250000,0,0);}
.m5_c01315{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m18e_c01315{transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);}
.m142_c01315{transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01315{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);}
.mc4_c01315{transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);}
.m12f_c01315{transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);}
.m16b_c01315{transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);}
.m112_c01315{transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145300,0.000000,0.000000,0.250000,0,0);}
.m16_c01315{transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145325,0.000000,0.000000,0.250000,0,0);}
.m9b_c01315{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);}
.mcd_c01315{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);}
.mb3_c01315{transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);}
.m1f6_c01315{transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);}
.mf1_c01315{transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146825,0.000000,0.000000,0.250000,0,0);}
.m77_c01315{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);}
.m123_c01315{transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);}
.m172_c01315{transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147225,0.000000,0.000000,0.250000,0,0);}
.m4b_c01315{transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);}
.m139_c01315{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);}
.m1ee_c01315{transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);}
.m144_c01315{transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01315{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.m3d_c01315{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m12d_c01315{transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);}
.maf_c01315{transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149225,0.000000,0.000000,0.250000,0,0);}
.m197_c01315{transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);}
.m3f_c01315{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.m15a_c01315{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.mca_c01315{transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);}
.m101_c01315{transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);}
.me0_c01315{transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153025,0.000000,0.000000,0.250000,0,0);}
.mad_c01315{transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153100,0.000000,0.000000,0.250000,0,0);}
.m1f_c01315{transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01315{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.m10b_c01315{transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01315{transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);}
.m147_c01315{transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153750,0.000000,0.000000,0.250000,0,0);}
.m2a_c01315{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);}
.m15e_c01315{transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);}
.mf2_c01315{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.m135_c01315{transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01315{transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154875,0.000000,0.000000,0.250000,0,0);}
.m137_c01315{transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155500,0.000000,0.000000,0.250000,0,0);}
.m16e_c01315{transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);}
.m11c_c01315{transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);}
.m13e_c01315{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);}
.m1b9_c01315{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);}
.m1eb_c01315{transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157300,0.000000,0.000000,0.250000,0,0);}
.m68_c01315{transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);}
.mc8_c01315{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.m133_c01315{transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);}
.m39_c01315{transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);}
.md5_c01315{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m98_c01315{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.m126_c01315{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m74_c01315{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01315{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.m164_c01315{transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);}
.m85_c01315{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m19f_c01315{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m107_c01315{transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);}
.mab_c01315{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);}
.m81_c01315{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01315{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m66_c01315{transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);}
.md9_c01315{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01315{transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162675,0.000000,0.000000,0.250000,0,0);}
.m195_c01315{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01315{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01315{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.m111_c01315{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);}
.m110_c01315{transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);}
.m1e6_c01315{transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);}
.m49_c01315{transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164900,0.000000,0.000000,0.250000,0,0);}
.m149_c01315{transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);}
.m46_c01315{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01315{transform:matrix(0.166150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166150,0.000000,0.000000,0.250000,0,0);}
.me9_c01315{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m91_c01315{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);}
.m6_c01315{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m130_c01315{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);}
.m162_c01315{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01315{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);}
.m1c9_c01315{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m181_c01315{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);}
.m1f7_c01315{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.m18d_c01315{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.mc9_c01315{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);}
.mdc_c01315{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.m15f_c01315{transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);}
.m191_c01315{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);}
.m1a8_c01315{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);}
.m122_c01315{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01315{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.m148_c01315{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m104_c01315{transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);}
.m1fb_c01315{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);}
.mba_c01315{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m193_c01315{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);}
.mcf_c01315{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m95_c01315{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m1e8_c01315{transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);}
.mcb_c01315{transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);}
.m47_c01315{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);}
.m10c_c01315{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.me7_c01315{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m8b_c01315{transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);}
.me3_c01315{transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01315{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.m1be_c01315{transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);}
.mf8_c01315{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m166_c01315{transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);}
.m19c_c01315{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m1db_c01315{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);}
.m10_c01315{transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);}
.m48_c01315{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.m25_c01315{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);}
.m1f3_c01315{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01315{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m61_c01315{transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179600,0.000000,0.000000,0.250000,0,0);}
.m1fd_c01315{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);}
.maa_c01315{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.m75_c01315{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m114_c01315{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m1ff_c01315{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.me6_c01315{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m1_c01315{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);}
.m1a3_c01315{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);}
.m192_c01315{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m37_c01315{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m11_c01315{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);}
.m90_c01315{transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);}
.m1e_c01315{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01315{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.m185_c01315{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m17f_c01315{transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);}
.m146_c01315{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);}
.me5_c01315{transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186150,0.000000,0.000000,0.250000,0,0);}
.m171_c01315{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01315{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);}
.mac_c01315{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);}
.m1e1_c01315{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m43_c01315{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.mb9_c01315{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);}
.med_c01315{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m83_c01315{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);}
.m5a_c01315{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);}
.m14a_c01315{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m42_c01315{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);}
.m131_c01315{transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189725,0.000000,0.000000,0.250000,0,0);}
.m121_c01315{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.m156_c01315{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);}
.m1a6_c01315{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);}
.m200_c01315{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m4a_c01315{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.mfb_c01315{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);}
.m1c4_c01315{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.m2c_c01315{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);}
.m1a4_c01315{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.m4c_c01315{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);}
.m41_c01315{transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);}
.ma4_c01315{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m106_c01315{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m187_c01315{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);}
.m2d_c01315{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m1f1_c01315{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);}
.m1a7_c01315{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);}
.m1ef_c01315{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);}
.m45_c01315{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m8_c01315{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01315{transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);}
.m105_c01315{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m1f9_c01315{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.m17c_c01315{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);}
.mbe_c01315{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);}
.m178_c01315{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.m22_c01315{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m169_c01315{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.m18c_c01315{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);}
.m157_c01315{transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);}
.m7b_c01315{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m113_c01315{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.m165_c01315{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);}
.mc2_c01315{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);}
.m116_c01315{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.m1e2_c01315{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.mc6_c01315{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m92_c01315{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m5e_c01315{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);}
.m7d_c01315{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.mf4_c01315{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.mef_c01315{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);}
.m1fe_c01315{transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203125,0.000000,0.000000,0.250000,0,0);}
.m134_c01315{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);}
.ma2_c01315{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);}
.mc_c01315{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);}
.m18a_c01315{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);}
.mfa_c01315{transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);}
.m7a_c01315{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.ma_c01315{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m4d_c01315{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01315{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01315{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.m17a_c01315{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m1f0_c01315{transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);}
.m102_c01315{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.md2_c01315{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);}
.m15_c01315{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);}
.m1fa_c01315{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m78_c01315{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.mde_c01315{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m163_c01315{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01315{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m10f_c01315{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.m94_c01315{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);}
.me1_c01315{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01315{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);}
.m1cd_c01315{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01315{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);}
.m1c0_c01315{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);}
.m8a_c01315{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);}
.m59_c01315{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m19e_c01315{transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);}
.me2_c01315{transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);}
.m198_c01315{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);}
.m1c1_c01315{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.mf7_c01315{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m58_c01315{transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);}
.m12b_c01315{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.mf5_c01315{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.m87_c01315{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.md1_c01315{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.m21_c01315{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);}
.m1c_c01315{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.ma0_c01315{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);}
.m179_c01315{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);}
.m24_c01315{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m1f8_c01315{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);}
.mfc_c01315{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.m129_c01315{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.m8d_c01315{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);}
.m13b_c01315{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m128_c01315{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.ma5_c01315{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.m12a_c01315{transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);}
.mb6_c01315{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);}
.m69_c01315{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m136_c01315{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);}
.m158_c01315{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);}
.m17b_c01315{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mcc_c01315{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);}
.m160_c01315{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);}
.m124_c01315{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);}
.m12c_c01315{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);}
.m1c3_c01315{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m199_c01315{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);}
.m11b_c01315{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m17d_c01315{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);}
.m115_c01315{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m11e_c01315{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.mea_c01315{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);}
.mbf_c01315{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);}
.m14d_c01315{transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);}
.m10d_c01315{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);}
.m84_c01315{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);}
.m1a5_c01315{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);}
.m159_c01315{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);}
.m1b2_c01315{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);}
.m19a_c01315{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);}
.m1cf_c01315{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);}
.meb_c01315{transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01315{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);}
.m1a2_c01315{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);}
.m2_c01315{transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235500,0.000000,0.000000,0.250000,0,0);}
.m67_c01315{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);}
.m176_c01315{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);}
.m18_c01315{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);}
.m1cc_c01315{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.me_c01315{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);}
.m15c_c01315{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);}
.m100_c01315{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.mdf_c01315{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);}
.m8c_c01315{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01315{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);}
.mf6_c01315{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);}
.m118_c01315{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m14e_c01315{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);}
.m174_c01315{transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);}
.md0_c01315{transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);}
.m27_c01315{transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);}
.m140_c01315{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.m15d_c01315{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m23_c01315{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);}
.m57_c01315{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);}
.m103_c01315{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);}
.m26_c01315{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);}
.m5c_c01315{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);}
.m1c8_c01315{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);}
.m1a9_c01315{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);}
.m14f_c01315{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);}
.mc1_c01315{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);}
.m189_c01315{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);}
.m88_c01315{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m120_c01315{transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247700,0.000000,0.000000,0.250000,0,0);}
.m8f_c01315{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m188_c01315{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);}
.m40_c01315{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);}
.ma8_c01315{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8e_c01315{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);}
.m13d_c01315{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);}
.m89_c01315{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);}
.m7_c01315{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);}
.m5b_c01315{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c01315{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mff_c01315{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01315{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);}
.m9d_c01315{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m93_c01315{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);}
.m9a_c01315{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);}
.ma1_c01315{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m62_c01315{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);}
.m1a_c01315{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c01315{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m127_c01315{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);}
.ma6_c01315{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01315{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);}
.m12_c01315{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);}
.m19_c01315{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf_c01315{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m63_c01315{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);}
.m99_c01315{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m56_c01315{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9e_c01315{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);}
.m1d_c01315{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01315{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c01315{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m55_c01315{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m108_c01315{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01315{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m71_c01315{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.md3_c01315{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m53_c01315{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);}
.m73_c01315{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01315{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma3_c01315{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01315{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m184_c01315{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);}
.mfd_c01315{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);}
.mee_c01315{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m125_c01315{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);}
.mdd_c01315{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m14c_c01315{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m109_c01315{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m97_c01315{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mc7_c01315{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m31_c01315{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);}
.m7e_c01315{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m11f_c01315{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01315{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);}
.m52_c01315{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01315{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01315{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);}
.m186_c01315{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m15b_c01315{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc0_c01315{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.md7_c01315{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m36_c01315{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mb_c01315{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m50_c01315{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);}
.m1d1_c01315{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);}
.m60_c01315{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me4_c01315{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);}
.m1d8_c01315{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01315{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma7_c01315{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m70_c01315{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01315{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1da_c01315{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m44_c01315{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m33_c01315{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m117_c01315{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m80_c01315{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m54_c01315{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m138_c01315{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mf0_c01315{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);}
.mb1_c01315{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m72_c01315{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);}
.m7f_c01315{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01315{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m18b_c01315{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m1de_c01315{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);}
.m51_c01315{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m150_c01315{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m17e_c01315{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01315{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01315{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m152_c01315{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.mb5_c01315{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m155_c01315{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01315{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01315{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.m154_c01315{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.m1df_c01315{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01315{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m3_c01315{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m4_c01315{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01315{transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.025000,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01315{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m151_c01315{transform:matrix(1.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.530000,0.000000,0.000000,0.250000,0,0);}
.m153_c01315{transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01315{transform:matrix(1.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.632500,0.000000,0.000000,0.250000,0,0);}
.m64_c01315{transform:matrix(1.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.857500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01315{transform:matrix(1.927500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.927500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.927500,0.000000,0.000000,0.250000,0,0);}
.mdb_c01315{transform:matrix(2.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.380000,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01315{transform:matrix(3.297500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.297500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.297500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01315{transform:matrix(6.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.340000,0.000000,0.000000,0.250000,0,0);}
.v1_c01315{vertical-align:-3.420000px;}
.v0_c01315{vertical-align:0.000000px;}
.v2_c01315{vertical-align:10.320000px;}
.ls3_c01315{letter-spacing:0.000000px;}
.ls0_c01315{letter-spacing:57.121440px;}
.ls1_c01315{letter-spacing:80.157480px;}
.ls2_c01315{letter-spacing:100.172700px;}
.sc__c01315{text-shadow:none;}
.sc0_c01315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01315{-webkit-text-stroke:0px transparent;}
.sc0_c01315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01315{word-spacing:-22.626000px;}
.ws0_c01315{word-spacing:-12.225388px;}
.ws2_c01315{word-spacing:0.000000px;}
.fc0_c01315{color:transparent;}
.fsa_c01315{font-size:3.456000px;}
.fs1b_c01315{font-size:6.000000px;}
.fs4_c01315{font-size:6.900000px;}
.fs23_c01315{font-size:10.380000px;}
.fs19_c01315{font-size:13.800000px;}
.fs1f_c01315{font-size:17.280000px;}
.fs1a_c01315{font-size:20.760000px;}
.fs2_c01315{font-size:24.180000px;}
.fs3_c01315{font-size:27.660000px;}
.fs1e_c01315{font-size:31.080000px;}
.fsb_c01315{font-size:34.560000px;}
.fs0_c01315{font-size:38.040000px;}
.fs20_c01315{font-size:41.460000px;}
.fs1d_c01315{font-size:44.940000px;}
.fs1_c01315{font-size:48.360000px;}
.fs10_c01315{font-size:51.840000px;}
.fs17_c01315{font-size:55.320000px;}
.fs16_c01315{font-size:58.740000px;}
.fse_c01315{font-size:62.220000px;}
.fs15_c01315{font-size:65.640000px;}
.fs6_c01315{font-size:69.120000px;}
.fs18_c01315{font-size:72.600000px;}
.fs9_c01315{font-size:76.020000px;}
.fsf_c01315{font-size:79.500000px;}
.fsd_c01315{font-size:82.920000px;}
.fs8_c01315{font-size:86.400000px;}
.fs5_c01315{font-size:89.880000px;}
.fs24_c01315{font-size:93.300000px;}
.fs7_c01315{font-size:96.780000px;}
.fs22_c01315{font-size:100.200000px;}
.fs1c_c01315{font-size:103.680000px;}
.fs11_c01315{font-size:107.160000px;}
.fs13_c01315{font-size:110.580000px;}
.fsc_c01315{font-size:114.060000px;}
.fs14_c01315{font-size:117.480000px;}
.fs12_c01315{font-size:127.860000px;}
.fs21_c01315{font-size:169.320000px;}
.y0_c01315{bottom:0.000000px;}
.y20f_c01315{bottom:152.070000px;}
.y20e_c01315{bottom:155.520000px;}
.y20d_c01315{bottom:164.160000px;}
.y210_c01315{bottom:169.350000px;}
.y211_c01315{bottom:170.205000px;}
.y20a_c01315{bottom:173.670000px;}
.y20c_c01315{bottom:174.525000px;}
.y20b_c01315{bottom:176.250000px;}
.y206_c01315{bottom:177.120000px;}
.y209_c01315{bottom:177.990000px;}
.y208_c01315{bottom:178.845000px;}
.y204_c01315{bottom:181.440000px;}
.y207_c01315{bottom:182.310000px;}
.y205_c01315{bottom:183.165000px;}
.y202_c01315{bottom:188.355000px;}
.y203_c01315{bottom:189.210000px;}
.y201_c01315{bottom:190.080000px;}
.y1ff_c01315{bottom:191.805000px;}
.y1fd_c01315{bottom:196.125000px;}
.y200_c01315{bottom:202.170000px;}
.y1fe_c01315{bottom:203.910000px;}
.y1fc_c01315{bottom:209.955000px;}
.y1fa_c01315{bottom:215.130000px;}
.y1f9_c01315{bottom:216.000000px;}
.y1fb_c01315{bottom:220.320000px;}
.y1f7_c01315{bottom:221.190000px;}
.y1f8_c01315{bottom:224.640000px;}
.y1f6_c01315{bottom:228.090000px;}
.y1f5_c01315{bottom:231.555000px;}
.y1f1_c01315{bottom:233.280000px;}
.y1f2_c01315{bottom:235.875000px;}
.y1f4_c01315{bottom:241.050000px;}
.y1f3_c01315{bottom:242.790000px;}
.y1f0_c01315{bottom:252.285000px;}
.y1ef_c01315{bottom:254.010000px;}
.y1ee_c01315{bottom:255.750000px;}
.y1ed_c01315{bottom:256.605000px;}
.y1ec_c01315{bottom:258.330000px;}
.y1ea_c01315{bottom:260.070000px;}
.y1e4_c01315{bottom:260.925000px;}
.y1eb_c01315{bottom:261.795000px;}
.y1e8_c01315{bottom:264.390000px;}
.y1e9_c01315{bottom:265.245000px;}
.y1e6_c01315{bottom:266.115000px;}
.y1e7_c01315{bottom:268.710000px;}
.y1e5_c01315{bottom:269.565000px;}
.y1e2_c01315{bottom:271.290000px;}
.y1e0_c01315{bottom:272.160000px;}
.y1e3_c01315{bottom:273.885000px;}
.y1e1_c01315{bottom:274.755000px;}
.y1df_c01315{bottom:275.610000px;}
.y1dc_c01315{bottom:276.480000px;}
.y1da_c01315{bottom:277.350000px;}
.y1dd_c01315{bottom:278.205000px;}
.y1d8_c01315{bottom:279.930000px;}
.y1db_c01315{bottom:280.800000px;}
.y1de_c01315{bottom:281.670000px;}
.y1d9_c01315{bottom:285.990000px;}
.y1d7_c01315{bottom:286.845000px;}
.y1d6_c01315{bottom:293.760000px;}
.y1d4_c01315{bottom:295.485000px;}
.y1d3_c01315{bottom:296.355000px;}
.y1d5_c01315{bottom:297.210000px;}
.y1d2_c01315{bottom:298.080000px;}
.y1d1_c01315{bottom:299.805000px;}
.y1cf_c01315{bottom:300.675000px;}
.y1cc_c01315{bottom:303.270000px;}
.y1d0_c01315{bottom:304.125000px;}
.y1cd_c01315{bottom:304.995000px;}
.y1ce_c01315{bottom:305.850000px;}
.y1ca_c01315{bottom:310.170000px;}
.y1cb_c01315{bottom:311.040000px;}
.y1c8_c01315{bottom:312.765000px;}
.y1c7_c01315{bottom:313.635000px;}
.y1c9_c01315{bottom:314.490000px;}
.y1c4_c01315{bottom:317.085000px;}
.y1c2_c01315{bottom:317.955000px;}
.y1c3_c01315{bottom:318.810000px;}
.y1c6_c01315{bottom:322.275000px;}
.y1c5_c01315{bottom:324.870000px;}
.y1c0_c01315{bottom:330.915000px;}
.y1bd_c01315{bottom:333.510000px;}
.y1ba_c01315{bottom:334.365000px;}
.y1b9_c01315{bottom:336.090000px;}
.y1be_c01315{bottom:336.960000px;}
.y1c1_c01315{bottom:337.830000px;}
.y1b8_c01315{bottom:338.685000px;}
.y1bc_c01315{bottom:339.555000px;}
.y1bf_c01315{bottom:340.410000px;}
.y1bb_c01315{bottom:344.730000px;}
.y1b7_c01315{bottom:347.325000px;}
.y1b5_c01315{bottom:354.240000px;}
.y1b6_c01315{bottom:355.110000px;}
.y1b3_c01315{bottom:356.835000px;}
.y1b0_c01315{bottom:358.560000px;}
.y1b4_c01315{bottom:360.285000px;}
.y1af_c01315{bottom:361.155000px;}
.y1ad_c01315{bottom:362.010000px;}
.y1b2_c01315{bottom:362.880000px;}
.y1b1_c01315{bottom:365.475000px;}
.y1ae_c01315{bottom:367.200000px;}
.y1ac_c01315{bottom:377.565000px;}
.y1ab_c01315{bottom:378.435000px;}
.y1aa_c01315{bottom:380.160000px;}
.y1a7_c01315{bottom:381.885000px;}
.y1a9_c01315{bottom:382.755000px;}
.y1a6_c01315{bottom:384.480000px;}
.y1a8_c01315{bottom:387.075000px;}
.y1a3_c01315{bottom:393.990000px;}
.y1a2_c01315{bottom:395.715000px;}
.y1a1_c01315{bottom:396.570000px;}
.y19f_c01315{bottom:397.440000px;}
.y1a5_c01315{bottom:399.165000px;}
.y1a4_c01315{bottom:400.035000px;}
.y19e_c01315{bottom:402.630000px;}
.y1a0_c01315{bottom:404.355000px;}
.y212_c01315{bottom:408.675000px;}
.y19a_c01315{bottom:413.850000px;}
.y19c_c01315{bottom:416.445000px;}
.y199_c01315{bottom:417.315000px;}
.y198_c01315{bottom:419.040000px;}
.y19b_c01315{bottom:419.910000px;}
.y19d_c01315{bottom:421.635000px;}
.y197_c01315{bottom:422.490000px;}
.y196_c01315{bottom:423.360000px;}
.y195_c01315{bottom:426.810000px;}
.y194_c01315{bottom:427.680000px;}
.y193_c01315{bottom:434.595000px;}
.y192_c01315{bottom:435.450000px;}
.y191_c01315{bottom:437.190000px;}
.y18d_c01315{bottom:439.770000px;}
.y18f_c01315{bottom:443.235000px;}
.y189_c01315{bottom:444.090000px;}
.y190_c01315{bottom:444.960000px;}
.y18e_c01315{bottom:445.830000px;}
.y18c_c01315{bottom:446.685000px;}
.y18b_c01315{bottom:447.555000px;}
.y18a_c01315{bottom:448.410000px;}
.y186_c01315{bottom:457.050000px;}
.y187_c01315{bottom:458.790000px;}
.y188_c01315{bottom:459.645000px;}
.y183_c01315{bottom:461.370000px;}
.y184_c01315{bottom:467.430000px;}
.y17f_c01315{bottom:474.330000px;}
.y185_c01315{bottom:476.070000px;}
.y17d_c01315{bottom:476.925000px;}
.y180_c01315{bottom:477.795000px;}
.y17b_c01315{bottom:478.650000px;}
.y181_c01315{bottom:479.520000px;}
.y17e_c01315{bottom:480.390000px;}
.y182_c01315{bottom:482.115000px;}
.y179_c01315{bottom:482.970000px;}
.y17a_c01315{bottom:483.840000px;}
.y17c_c01315{bottom:485.565000px;}
.y178_c01315{bottom:486.435000px;}
.y177_c01315{bottom:487.290000px;}
.y175_c01315{bottom:496.800000px;}
.y176_c01315{bottom:500.250000px;}
.y170_c01315{bottom:501.120000px;}
.y174_c01315{bottom:501.990000px;}
.y173_c01315{bottom:502.845000px;}
.y172_c01315{bottom:503.715000px;}
.y171_c01315{bottom:505.440000px;}
.y16f_c01315{bottom:508.035000px;}
.y16d_c01315{bottom:512.355000px;}
.y16e_c01315{bottom:513.210000px;}
.y16b_c01315{bottom:514.080000px;}
.y168_c01315{bottom:514.950000px;}
.y166_c01315{bottom:518.400000px;}
.y16a_c01315{bottom:520.995000px;}
.y16c_c01315{bottom:521.850000px;}
.y167_c01315{bottom:524.445000px;}
.y169_c01315{bottom:527.910000px;}
.y165_c01315{bottom:530.490000px;}
.y164_c01315{bottom:531.360000px;}
.y161_c01315{bottom:533.085000px;}
.y160_c01315{bottom:533.955000px;}
.y163_c01315{bottom:534.810000px;}
.y15e_c01315{bottom:536.550000px;}
.y15f_c01315{bottom:537.405000px;}
.y162_c01315{bottom:551.235000px;}
.y15b_c01315{bottom:557.280000px;}
.y15a_c01315{bottom:558.150000px;}
.y159_c01315{bottom:559.005000px;}
.y15d_c01315{bottom:559.875000px;}
.y15c_c01315{bottom:560.730000px;}
.y158_c01315{bottom:562.470000px;}
.y157_c01315{bottom:563.325000px;}
.y154_c01315{bottom:564.195000px;}
.y156_c01315{bottom:566.790000px;}
.y155_c01315{bottom:567.645000px;}
.y151_c01315{bottom:577.155000px;}
.y153_c01315{bottom:578.880000px;}
.y152_c01315{bottom:581.475000px;}
.y14d_c01315{bottom:582.330000px;}
.y150_c01315{bottom:583.200000px;}
.y14f_c01315{bottom:586.650000px;}
.y14e_c01315{bottom:587.520000px;}
.y14c_c01315{bottom:599.610000px;}
.y14a_c01315{bottom:601.350000px;}
.y14b_c01315{bottom:602.205000px;}
.y149_c01315{bottom:603.075000px;}
.y145_c01315{bottom:604.800000px;}
.y148_c01315{bottom:608.250000px;}
.y147_c01315{bottom:610.845000px;}
.y143_c01315{bottom:611.715000px;}
.y144_c01315{bottom:613.440000px;}
.y146_c01315{bottom:614.310000px;}
.y141_c01315{bottom:615.165000px;}
.y142_c01315{bottom:616.035000px;}
.y140_c01315{bottom:616.890000px;}
.y13e_c01315{bottom:617.760000px;}
.y13d_c01315{bottom:619.485000px;}
.y13c_c01315{bottom:621.210000px;}
.y13f_c01315{bottom:622.080000px;}
.y13b_c01315{bottom:622.950000px;}
.y139_c01315{bottom:623.805000px;}
.y13a_c01315{bottom:627.270000px;}
.y138_c01315{bottom:632.445000px;}
.y136_c01315{bottom:639.360000px;}
.y133_c01315{bottom:640.230000px;}
.y134_c01315{bottom:641.085000px;}
.y137_c01315{bottom:641.955000px;}
.y135_c01315{bottom:642.810000px;}
.y131_c01315{bottom:643.680000px;}
.y130_c01315{bottom:648.000000px;}
.y132_c01315{bottom:658.365000px;}
.y12f_c01315{bottom:659.235000px;}
.y12e_c01315{bottom:660.090000px;}
.y12a_c01315{bottom:660.960000px;}
.y12d_c01315{bottom:661.830000px;}
.y129_c01315{bottom:663.555000px;}
.y12c_c01315{bottom:666.150000px;}
.y12b_c01315{bottom:667.875000px;}
.y128_c01315{bottom:668.730000px;}
.y125_c01315{bottom:679.110000px;}
.y124_c01315{bottom:679.965000px;}
.y127_c01315{bottom:681.690000px;}
.y121_c01315{bottom:682.560000px;}
.y126_c01315{bottom:683.430000px;}
.y11e_c01315{bottom:684.285000px;}
.y120_c01315{bottom:685.155000px;}
.y122_c01315{bottom:686.880000px;}
.y123_c01315{bottom:687.750000px;}
.y11f_c01315{bottom:688.605000px;}
.y11d_c01315{bottom:698.115000px;}
.y11c_c01315{bottom:698.970000px;}
.y117_c01315{bottom:703.290000px;}
.y115_c01315{bottom:704.160000px;}
.y119_c01315{bottom:705.030000px;}
.y11a_c01315{bottom:708.480000px;}
.y116_c01315{bottom:709.350000px;}
.y118_c01315{bottom:710.205000px;}
.y11b_c01315{bottom:711.930000px;}
.y111_c01315{bottom:717.990000px;}
.y113_c01315{bottom:720.570000px;}
.y110_c01315{bottom:721.440000px;}
.y114_c01315{bottom:722.310000px;}
.y112_c01315{bottom:724.035000px;}
.y10f_c01315{bottom:724.890000px;}
.y10e_c01315{bottom:725.760000px;}
.y10d_c01315{bottom:727.485000px;}
.y10c_c01315{bottom:728.355000px;}
.y10b_c01315{bottom:729.210000px;}
.y10a_c01315{bottom:730.080000px;}
.y109_c01315{bottom:736.995000px;}
.y108_c01315{bottom:739.590000px;}
.y106_c01315{bottom:740.445000px;}
.y103_c01315{bottom:743.910000px;}
.y102_c01315{bottom:744.765000px;}
.y107_c01315{bottom:745.635000px;}
.y104_c01315{bottom:748.230000px;}
.y105_c01315{bottom:749.085000px;}
.yff_c01315{bottom:759.450000px;}
.y100_c01315{bottom:760.320000px;}
.yfd_c01315{bottom:762.045000px;}
.y101_c01315{bottom:762.915000px;}
.yfe_c01315{bottom:763.770000px;}
.yfb_c01315{bottom:765.510000px;}
.yfc_c01315{bottom:768.960000px;}
.yf9_c01315{bottom:781.920000px;}
.yfa_c01315{bottom:782.790000px;}
.yf5_c01315{bottom:783.645000px;}
.yf6_c01315{bottom:784.515000px;}
.yf8_c01315{bottom:785.370000px;}
.yf4_c01315{bottom:786.240000px;}
.yf7_c01315{bottom:787.965000px;}
.yf2_c01315{bottom:790.560000px;}
.yf0_c01315{bottom:798.330000px;}
.yf3_c01315{bottom:800.070000px;}
.yef_c01315{bottom:802.650000px;}
.yeb_c01315{bottom:803.520000px;}
.yf1_c01315{bottom:804.390000px;}
.yee_c01315{bottom:805.245000px;}
.yed_c01315{bottom:808.710000px;}
.yec_c01315{bottom:809.565000px;}
.yea_c01315{bottom:810.435000px;}
.ye9_c01315{bottom:819.930000px;}
.ye7_c01315{bottom:820.800000px;}
.ye8_c01315{bottom:821.670000px;}
.ye3_c01315{bottom:823.395000px;}
.ye4_c01315{bottom:824.250000px;}
.ye2_c01315{bottom:825.120000px;}
.ye6_c01315{bottom:825.990000px;}
.ye5_c01315{bottom:828.570000px;}
.ye1_c01315{bottom:839.805000px;}
.ydf_c01315{bottom:841.530000px;}
.yde_c01315{bottom:842.400000px;}
.ydc_c01315{bottom:843.270000px;}
.ye0_c01315{bottom:844.995000px;}
.ydd_c01315{bottom:846.720000px;}
.yda_c01315{bottom:848.445000px;}
.ydb_c01315{bottom:849.315000px;}
.yd9_c01315{bottom:857.955000px;}
.yd8_c01315{bottom:862.275000px;}
.yd6_c01315{bottom:863.130000px;}
.yd5_c01315{bottom:864.000000px;}
.yd7_c01315{bottom:865.725000px;}
.yd3_c01315{bottom:879.555000px;}
.yd4_c01315{bottom:882.150000px;}
.yd2_c01315{bottom:883.005000px;}
.yd0_c01315{bottom:883.875000px;}
.ycf_c01315{bottom:884.730000px;}
.yce_c01315{bottom:886.470000px;}
.yd1_c01315{bottom:889.050000px;}
.ycc_c01315{bottom:900.285000px;}
.ycd_c01315{bottom:903.750000px;}
.yca_c01315{bottom:905.475000px;}
.ycb_c01315{bottom:906.330000px;}
.yc9_c01315{bottom:907.200000px;}
.yc8_c01315{bottom:909.795000px;}
.yc7_c01315{bottom:910.650000px;}
.yc6_c01315{bottom:914.115000px;}
.yc4_c01315{bottom:921.885000px;}
.yc2_c01315{bottom:922.755000px;}
.yc3_c01315{bottom:923.610000px;}
.ybe_c01315{bottom:924.480000px;}
.yc5_c01315{bottom:925.350000px;}
.yc1_c01315{bottom:928.800000px;}
.yc0_c01315{bottom:929.670000px;}
.ybf_c01315{bottom:930.525000px;}
.ybb_c01315{bottom:942.630000px;}
.ybc_c01315{bottom:943.485000px;}
.yb8_c01315{bottom:944.355000px;}
.yb9_c01315{bottom:945.210000px;}
.ybd_c01315{bottom:946.080000px;}
.yba_c01315{bottom:946.950000px;}
.yb7_c01315{bottom:949.530000px;}
.yb6_c01315{bottom:950.400000px;}
.yb5_c01315{bottom:962.490000px;}
.yb3_c01315{bottom:963.360000px;}
.yae_c01315{bottom:964.230000px;}
.yb0_c01315{bottom:965.085000px;}
.yb4_c01315{bottom:965.955000px;}
.yb2_c01315{bottom:966.810000px;}
.yb1_c01315{bottom:968.550000px;}
.yaf_c01315{bottom:969.405000px;}
.yad_c01315{bottom:970.275000px;}
.y3_c01315{bottom:975.450000px;}
.yab_c01315{bottom:976.320000px;}
.ya8_c01315{bottom:977.190000px;}
.ya7_c01315{bottom:979.770000px;}
.ya6_c01315{bottom:980.640000px;}
.ya5_c01315{bottom:981.510000px;}
.yac_c01315{bottom:982.365000px;}
.ya2_c01315{bottom:984.960000px;}
.ya4_c01315{bottom:985.830000px;}
.yaa_c01315{bottom:986.685000px;}
.ya3_c01315{bottom:988.410000px;}
.y2_c01315{bottom:991.875000px;}
.ya9_c01315{bottom:992.730000px;}
.y1_c01315{bottom:993.600000px;}
.ya1_c01315{bottom:1001.370000px;}
.ya0_c01315{bottom:1003.110000px;}
.y9c_c01315{bottom:1003.965000px;}
.y99_c01315{bottom:1004.835000px;}
.y9e_c01315{bottom:1005.690000px;}
.y9d_c01315{bottom:1009.155000px;}
.y9b_c01315{bottom:1010.010000px;}
.y9a_c01315{bottom:1010.880000px;}
.y9f_c01315{bottom:1017.795000px;}
.y98_c01315{bottom:1021.245000px;}
.y96_c01315{bottom:1022.115000px;}
.y94_c01315{bottom:1022.970000px;}
.y93_c01315{bottom:1024.710000px;}
.y97_c01315{bottom:1027.290000px;}
.y95_c01315{bottom:1028.160000px;}
.y92_c01315{bottom:1029.885000px;}
.y91_c01315{bottom:1030.755000px;}
.y90_c01315{bottom:1041.990000px;}
.y8b_c01315{bottom:1045.440000px;}
.y89_c01315{bottom:1046.310000px;}
.y8f_c01315{bottom:1047.165000px;}
.y8a_c01315{bottom:1048.035000px;}
.y8e_c01315{bottom:1048.890000px;}
.y8c_c01315{bottom:1049.760000px;}
.y88_c01315{bottom:1050.630000px;}
.y8d_c01315{bottom:1051.485000px;}
.y87_c01315{bottom:1060.125000px;}
.y85_c01315{bottom:1062.720000px;}
.y84_c01315{bottom:1063.590000px;}
.y86_c01315{bottom:1066.170000px;}
.y81_c01315{bottom:1067.040000px;}
.y80_c01315{bottom:1067.910000px;}
.y7e_c01315{bottom:1068.765000px;}
.y7f_c01315{bottom:1070.490000px;}
.y82_c01315{bottom:1074.810000px;}
.y83_c01315{bottom:1080.870000px;}
.y7b_c01315{bottom:1082.595000px;}
.y7a_c01315{bottom:1085.190000px;}
.y78_c01315{bottom:1086.045000px;}
.y77_c01315{bottom:1086.915000px;}
.y7c_c01315{bottom:1087.770000px;}
.y75_c01315{bottom:1088.640000px;}
.y6a_c01315{bottom:1089.510000px;}
.y79_c01315{bottom:1090.365000px;}
.y7d_c01315{bottom:1092.960000px;}
.y76_c01315{bottom:1094.685000px;}
.y71_c01315{bottom:1099.005000px;}
.y70_c01315{bottom:1099.875000px;}
.y72_c01315{bottom:1101.600000px;}
.y73_c01315{bottom:1103.325000px;}
.y6f_c01315{bottom:1105.050000px;}
.y6e_c01315{bottom:1105.920000px;}
.y6d_c01315{bottom:1106.790000px;}
.y6c_c01315{bottom:1110.240000px;}
.y6b_c01315{bottom:1111.110000px;}
.y69_c01315{bottom:1113.690000px;}
.y68_c01315{bottom:1114.560000px;}
.y74_c01315{bottom:1118.010000px;}
.y63_c01315{bottom:1124.070000px;}
.y65_c01315{bottom:1124.925000px;}
.y67_c01315{bottom:1127.520000px;}
.y66_c01315{bottom:1128.390000px;}
.y64_c01315{bottom:1129.245000px;}
.y62_c01315{bottom:1141.350000px;}
.y61_c01315{bottom:1142.205000px;}
.y60_c01315{bottom:1144.800000px;}
.y5f_c01315{bottom:1146.525000px;}
.y5d_c01315{bottom:1147.395000px;}
.y5e_c01315{bottom:1148.250000px;}
.y57_c01315{bottom:1155.165000px;}
.y59_c01315{bottom:1156.035000px;}
.y5c_c01315{bottom:1156.890000px;}
.y5a_c01315{bottom:1157.760000px;}
.y56_c01315{bottom:1158.630000px;}
.y55_c01315{bottom:1159.485000px;}
.y58_c01315{bottom:1160.355000px;}
.y5b_c01315{bottom:1162.950000px;}
.y51_c01315{bottom:1163.805000px;}
.y54_c01315{bottom:1166.400000px;}
.y52_c01315{bottom:1167.270000px;}
.y53_c01315{bottom:1168.995000px;}
.y4f_c01315{bottom:1178.490000px;}
.y50_c01315{bottom:1180.230000px;}
.y4d_c01315{bottom:1182.810000px;}
.y4b_c01315{bottom:1184.550000px;}
.y49_c01315{bottom:1186.275000px;}
.y4a_c01315{bottom:1187.130000px;}
.y4e_c01315{bottom:1188.000000px;}
.y4c_c01315{bottom:1188.870000px;}
.y48_c01315{bottom:1189.725000px;}
.y47_c01315{bottom:1190.595000px;}
.y45_c01315{bottom:1193.190000px;}
.y42_c01315{bottom:1196.640000px;}
.y44_c01315{bottom:1197.510000px;}
.y41_c01315{bottom:1199.235000px;}
.y43_c01315{bottom:1200.090000px;}
.y40_c01315{bottom:1200.960000px;}
.y46_c01315{bottom:1201.830000px;}
.y3e_c01315{bottom:1202.685000px;}
.y3f_c01315{bottom:1204.410000px;}
.y38_c01315{bottom:1205.280000px;}
.y3d_c01315{bottom:1206.150000px;}
.y3b_c01315{bottom:1207.005000px;}
.y3c_c01315{bottom:1208.730000px;}
.y37_c01315{bottom:1209.600000px;}
.y3a_c01315{bottom:1210.470000px;}
.y39_c01315{bottom:1211.325000px;}
.y36_c01315{bottom:1222.560000px;}
.y34_c01315{bottom:1224.285000px;}
.y31_c01315{bottom:1226.010000px;}
.y2e_c01315{bottom:1226.880000px;}
.y32_c01315{bottom:1227.750000px;}
.y2d_c01315{bottom:1228.605000px;}
.y35_c01315{bottom:1229.475000px;}
.y33_c01315{bottom:1230.330000px;}
.y2f_c01315{bottom:1231.200000px;}
.y2c_c01315{bottom:1232.070000px;}
.y30_c01315{bottom:1233.795000px;}
.y2b_c01315{bottom:1235.520000px;}
.y2a_c01315{bottom:1237.245000px;}
.y29_c01315{bottom:1238.970000px;}
.y27_c01315{bottom:1240.710000px;}
.y28_c01315{bottom:1242.435000px;}
.y26_c01315{bottom:1243.290000px;}
.y24_c01315{bottom:1244.160000px;}
.y25_c01315{bottom:1260.570000px;}
.y21_c01315{bottom:1265.760000px;}
.y1f_c01315{bottom:1267.485000px;}
.y20_c01315{bottom:1268.355000px;}
.y1e_c01315{bottom:1270.080000px;}
.y22_c01315{bottom:1271.805000px;}
.y23_c01315{bottom:1272.675000px;}
.y1d_c01315{bottom:1286.490000px;}
.y1a_c01315{bottom:1287.360000px;}
.y1b_c01315{bottom:1288.230000px;}
.y19_c01315{bottom:1289.955000px;}
.y1c_c01315{bottom:1292.550000px;}
.y18_c01315{bottom:1298.595000px;}
.y17_c01315{bottom:1300.320000px;}
.y16_c01315{bottom:1301.190000px;}
.y15_c01315{bottom:1302.045000px;}
.yf_c01315{bottom:1304.640000px;}
.yd_c01315{bottom:1305.510000px;}
.y10_c01315{bottom:1307.235000px;}
.y12_c01315{bottom:1308.960000px;}
.ye_c01315{bottom:1309.830000px;}
.y13_c01315{bottom:1310.685000px;}
.y14_c01315{bottom:1313.280000px;}
.y11_c01315{bottom:1314.150000px;}
.yb_c01315{bottom:1334.880000px;}
.ya_c01315{bottom:1337.475000px;}
.y7_c01315{bottom:1338.330000px;}
.y9_c01315{bottom:1340.070000px;}
.y8_c01315{bottom:1347.840000px;}
.yc_c01315{bottom:1357.350000px;}
.y6_c01315{bottom:1359.930000px;}
.y5_c01315{bottom:1364.250000px;}
.y4_c01315{bottom:1411.770000px;}
.hc_c01315{height:3.110063px;}
.h1d_c01315{height:5.399414px;}
.h6_c01315{height:6.209326px;}
.h25_c01315{height:9.340986px;}
.h1b_c01315{height:12.418652px;}
.h21_c01315{height:15.550313px;}
.h1c_c01315{height:18.681973px;}
.h4_c01315{height:21.759639px;}
.h5_c01315{height:24.891299px;}
.h20_c01315{height:27.968965px;}
.hd_c01315{height:31.100625px;}
.h2_c01315{height:34.232285px;}
.h22_c01315{height:37.309951px;}
.h1f_c01315{height:40.441611px;}
.h3_c01315{height:43.519277px;}
.h12_c01315{height:46.650937px;}
.h19_c01315{height:49.782598px;}
.h18_c01315{height:52.860264px;}
.h10_c01315{height:55.991924px;}
.h17_c01315{height:59.069590px;}
.h8_c01315{height:62.201250px;}
.h1a_c01315{height:65.332910px;}
.hb_c01315{height:68.410576px;}
.h11_c01315{height:71.542236px;}
.hf_c01315{height:74.619902px;}
.ha_c01315{height:77.751563px;}
.h7_c01315{height:80.883223px;}
.h26_c01315{height:83.960889px;}
.h9_c01315{height:87.092549px;}
.h24_c01315{height:90.170215px;}
.h1e_c01315{height:93.301875px;}
.h13_c01315{height:96.433535px;}
.h15_c01315{height:99.511201px;}
.he_c01315{height:102.642861px;}
.h16_c01315{height:105.720527px;}
.h14_c01315{height:115.061514px;}
.h23_c01315{height:152.371465px;}
.h0_c01315{height:1509.405000px;}
.h1_c01315{height:1509.750000px;}
.w0_c01315{width:1079.130000px;}
.w1_c01315{width:1079.250000px;}
.x0_c01315{left:0.000000px;}
.x1_c01315{left:2.595000px;}
.x2_c01315{left:17.280000px;}
.x119_c01315{left:167.610000px;}
.x109_c01315{left:189.210000px;}
.x70_c01315{left:191.805000px;}
.x6_c01315{left:202.170000px;}
.x71_c01315{left:205.635000px;}
.x34_c01315{left:216.870000px;}
.x7_c01315{left:220.320000px;}
.x40_c01315{left:223.770000px;}
.x5b_c01315{left:226.365000px;}
.x89_c01315{left:228.960000px;}
.xbf_c01315{left:231.555000px;}
.xe_c01315{left:233.280000px;}
.x7b_c01315{left:235.005000px;}
.x30_c01315{left:236.730000px;}
.x1b_c01315{left:238.470000px;}
.xe1_c01315{left:240.195000px;}
.x7c_c01315{left:245.370000px;}
.x5c_c01315{left:247.965000px;}
.xb3_c01315{left:250.560000px;}
.x35_c01315{left:252.285000px;}
.xf_c01315{left:254.010000px;}
.xb9_c01315{left:259.200000px;}
.xf9_c01315{left:261.795000px;}
.x1c_c01315{left:264.390000px;}
.x103_c01315{left:266.970000px;}
.xa4_c01315{left:268.710000px;}
.x41_c01315{left:271.290000px;}
.xe8_c01315{left:273.885000px;}
.x6a_c01315{left:276.480000px;}
.xec_c01315{left:278.205000px;}
.x10d_c01315{left:281.670000px;}
.x72_c01315{left:285.990000px;}
.x92_c01315{left:289.440000px;}
.x8a_c01315{left:293.760000px;}
.x9c_c01315{left:295.485000px;}
.x73_c01315{left:298.080000px;}
.x6b_c01315{left:302.400000px;}
.x7d_c01315{left:304.995000px;}
.xc0_c01315{left:306.720000px;}
.x114_c01315{left:308.445000px;}
.xc9_c01315{left:311.040000px;}
.xda_c01315{left:312.765000px;}
.x36_c01315{left:314.490000px;}
.x10_c01315{left:317.085000px;}
.x1d_c01315{left:320.550000px;}
.x8b_c01315{left:322.275000px;}
.xc7_c01315{left:324.000000px;}
.xf1_c01315{left:326.595000px;}
.xba_c01315{left:328.320000px;}
.xdb_c01315{left:330.045000px;}
.x9d_c01315{left:335.235000px;}
.x74_c01315{left:336.960000px;}
.xca_c01315{left:339.555000px;}
.x8c_c01315{left:341.280000px;}
.x104_c01315{left:343.875000px;}
.x11_c01315{left:345.600000px;}
.xe2_c01315{left:349.920000px;}
.x8_c01315{left:351.645000px;}
.x26_c01315{left:353.370000px;}
.xff_c01315{left:355.965000px;}
.x93_c01315{left:358.560000px;}
.x1e_c01315{left:365.475000px;}
.xe4_c01315{left:367.200000px;}
.x9e_c01315{left:369.795000px;}
.x46_c01315{left:372.390000px;}
.xe9_c01315{left:376.710000px;}
.x37_c01315{left:378.435000px;}
.x83_c01315{left:381.030000px;}
.x7e_c01315{left:383.610000px;}
.xd4_c01315{left:386.205000px;}
.xb0_c01315{left:388.800000px;}
.xa8_c01315{left:391.395000px;}
.xa5_c01315{left:393.990000px;}
.x31_c01315{left:396.570000px;}
.x6c_c01315{left:399.165000px;}
.x1f_c01315{left:400.890000px;}
.x27_c01315{left:402.630000px;}
.x9f_c01315{left:404.355000px;}
.x9_c01315{left:406.950000px;}
.x42_c01315{left:408.675000px;}
.xfa_c01315{left:410.400000px;}
.x3_c01315{left:412.125000px;}
.x94_c01315{left:414.720000px;}
.x12_c01315{left:417.315000px;}
.x98_c01315{left:419.040000px;}
.x117_c01315{left:420.765000px;}
.x110_c01315{left:422.490000px;}
.x100_c01315{left:427.680000px;}
.x32_c01315{left:429.405000px;}
.xef_c01315{left:431.130000px;}
.xea_c01315{left:433.725000px;}
.x84_c01315{left:435.450000px;}
.x10e_c01315{left:438.045000px;}
.x13_c01315{left:440.640000px;}
.xa_c01315{left:442.365000px;}
.xbb_c01315{left:444.090000px;}
.xe3_c01315{left:445.830000px;}
.xfd_c01315{left:447.555000px;}
.x38_c01315{left:449.280000px;}
.x105_c01315{left:451.005000px;}
.x99_c01315{left:452.730000px;}
.x85_c01315{left:455.325000px;}
.x75_c01315{left:457.050000px;}
.xa9_c01315{left:460.515000px;}
.x28_c01315{left:462.240000px;}
.xcd_c01315{left:463.965000px;}
.x7f_c01315{left:466.560000px;}
.xc1_c01315{left:468.285000px;}
.xa6_c01315{left:470.880000px;}
.xed_c01315{left:472.605000px;}
.x14_c01315{left:474.330000px;}
.xd5_c01315{left:476.925000px;}
.xb4_c01315{left:480.390000px;}
.x80_c01315{left:482.970000px;}
.x39_c01315{left:485.565000px;}
.x33_c01315{left:488.160000px;}
.xaa_c01315{left:490.755000px;}
.xfb_c01315{left:493.350000px;}
.xbc_c01315{left:495.075000px;}
.x9a_c01315{left:497.670000px;}
.x20_c01315{left:501.120000px;}
.x8d_c01315{left:505.440000px;}
.x111_c01315{left:508.035000px;}
.xf2_c01315{left:509.760000px;}
.xcb_c01315{left:511.485000px;}
.x113_c01315{left:514.080000px;}
.xa0_c01315{left:515.805000px;}
.xf0_c01315{left:518.400000px;}
.x116_c01315{left:521.850000px;}
.xc3_c01315{left:523.590000px;}
.xf7_c01315{left:530.490000px;}
.xdd_c01315{left:533.085000px;}
.x101_c01315{left:539.130000px;}
.xee_c01315{left:542.595000px;}
.x8e_c01315{left:544.320000px;}
.x15_c01315{left:546.045000px;}
.xb5_c01315{left:548.640000px;}
.x4_c01315{left:550.365000px;}
.x3a_c01315{left:552.090000px;}
.x9b_c01315{left:554.685000px;}
.x47_c01315{left:558.150000px;}
.x76_c01315{left:559.875000px;}
.x51_c01315{left:561.600000px;}
.x16_c01315{left:563.325000px;}
.xb_c01315{left:565.050000px;}
.xfc_c01315{left:568.515000px;}
.x48_c01315{left:571.965780px;}
.xf3_c01315{left:574.560000px;}
.x86_c01315{left:577.155000px;}
.x3b_c01315{left:578.880000px;}
.x61_c01315{left:580.605000px;}
.x95_c01315{left:584.070000px;}
.xa1_c01315{left:585.795000px;}
.xa2_c01315{left:588.390000px;}
.x49_c01315{left:590.115000px;}
.x52_c01315{left:592.710000px;}
.x43_c01315{left:595.290000px;}
.xd6_c01315{left:598.755000px;}
.x108_c01315{left:600.480000px;}
.xde_c01315{left:603.930000px;}
.x10a_c01315{left:605.670000px;}
.x102_c01315{left:607.395000px;}
.xab_c01315{left:609.120000px;}
.x53_c01315{left:611.715000px;}
.x4a_c01315{left:614.310000px;}
.xdf_c01315{left:617.760000px;}
.x62_c01315{left:621.210000px;}
.x106_c01315{left:624.675000px;}
.xc4_c01315{left:626.400000px;}
.xdc_c01315{left:628.125000px;}
.x29_c01315{left:630.720000px;}
.x4b_c01315{left:633.315000px;}
.x17_c01315{left:637.635000px;}
.x8f_c01315{left:640.230000px;}
.x10f_c01315{left:641.955000px;}
.x21_c01315{left:644.550000px;}
.xc5_c01315{left:647.130000px;}
.x96_c01315{left:649.725000px;}
.xd1_c01315{left:653.190000px;}
.xa7_c01315{left:654.915000px;}
.xb6_c01315{left:657.510000px;}
.x63_c01315{left:659.235000px;}
.xce_c01315{left:662.685000px;}
.xc2_c01315{left:664.410000px;}
.x54_c01315{left:667.005000px;}
.x107_c01315{left:669.600000px;}
.xe0_c01315{left:672.195000px;}
.x18_c01315{left:673.920000px;}
.x4c_c01315{left:676.515000px;}
.xbd_c01315{left:678.240000px;}
.xf8_c01315{left:680.835000px;}
.x5d_c01315{left:683.430000px;}
.xb1_c01315{left:686.880000px;}
.x6d_c01315{left:689.475000px;}
.x115_c01315{left:691.200000px;}
.x44_c01315{left:692.925000px;}
.x2a_c01315{left:695.520000px;}
.x3c_c01315{left:698.115000px;}
.x64_c01315{left:699.840000px;}
.xfe_c01315{left:701.565000px;}
.xac_c01315{left:703.290000px;}
.x45_c01315{left:705.885000px;}
.x5_c01315{left:708.480000px;}
.x118_c01315{left:711.075000px;}
.x3d_c01315{left:712.800000px;}
.x77_c01315{left:714.525000px;}
.x65_c01315{left:717.120000px;}
.x22_c01315{left:720.570000px;}
.xad_c01315{left:722.310000px;}
.x6e_c01315{left:724.890000px;}
.x55_c01315{left:726.630000px;}
.xc8_c01315{left:728.355000px;}
.x10b_c01315{left:730.080000px;}
.xcf_c01315{left:733.530000px;}
.xd7_c01315{left:735.270000px;}
.xb7_c01315{left:736.995000px;}
.x5e_c01315{left:738.720000px;}
.x23_c01315{left:740.445000px;}
.xd8_c01315{left:742.170000px;}
.x19_c01315{left:743.910000px;}
.x56_c01315{left:745.635000px;}
.x4d_c01315{left:747.360000px;}
.x78_c01315{left:749.085000px;}
.xd2_c01315{left:750.810000px;}
.xf5_c01315{left:754.275000px;}
.x81_c01315{left:756.000000px;}
.xc6_c01315{left:758.595000px;}
.x57_c01315{left:761.190000px;}
.x3e_c01315{left:762.915000px;}
.x2b_c01315{left:764.640000px;}
.x58_c01315{left:766.365000px;}
.x2c_c01315{left:768.960000px;}
.x66_c01315{left:771.555000px;}
.x90_c01315{left:774.150000px;}
.x5f_c01315{left:777.600000px;}
.x24_c01315{left:779.325000px;}
.x1a_c01315{left:786.240000px;}
.x4e_c01315{left:789.690000px;}
.x87_c01315{left:791.430000px;}
.x2d_c01315{left:793.155000px;}
.xb8_c01315{left:794.880000px;}
.x97_c01315{left:797.475000px;}
.x59_c01315{left:799.200000px;}
.x79_c01315{left:800.925000px;}
.xd3_c01315{left:803.520000px;}
.xb2_c01315{left:805.245000px;}
.x3f_c01315{left:806.970000px;}
.x6f_c01315{left:808.710000px;}
.x112_c01315{left:810.435000px;}
.x5a_c01315{left:814.755000px;}
.x67_c01315{left:816.480000px;}
.xcc_c01315{left:818.205000px;}
.x2e_c01315{left:819.930000px;}
.xae_c01315{left:821.670000px;}
.x25_c01315{left:823.395000px;}
.x68_c01315{left:826.845525px;}
.x88_c01315{left:828.570000px;}
.x4f_c01315{left:830.310000px;}
.xe5_c01315{left:832.035000px;}
.xa3_c01315{left:835.485000px;}
.xc_c01315{left:838.080000px;}
.x91_c01315{left:842.400000px;}
.x82_c01315{left:844.995000px;}
.xd0_c01315{left:846.720000px;}
.xaf_c01315{left:848.445000px;}
.xd9_c01315{left:850.170000px;}
.x60_c01315{left:851.910000px;}
.xeb_c01315{left:855.360000px;}
.x2f_c01315{left:857.085000px;}
.x50_c01315{left:858.810000px;}
.x69_c01315{left:862.275000px;}
.xf6_c01315{left:864.870000px;}
.xd_c01315{left:874.365000px;}
.xf4_c01315{left:878.685000px;}
.x7a_c01315{left:880.410000px;}
.xbe_c01315{left:883.005000px;}
.xe7_c01315{left:889.050000px;}
.xe6_c01315{left:897.690000px;}
.x10c_c01315{left:899.430000px;}
@media print{
.v1_c01315{vertical-align:-3.040000pt;}
.v0_c01315{vertical-align:0.000000pt;}
.v2_c01315{vertical-align:9.173333pt;}
.ls3_c01315{letter-spacing:0.000000pt;}
.ls0_c01315{letter-spacing:50.774613pt;}
.ls1_c01315{letter-spacing:71.251093pt;}
.ls2_c01315{letter-spacing:89.042400pt;}
.ws1_c01315{word-spacing:-20.112000pt;}
.ws0_c01315{word-spacing:-10.867012pt;}
.ws2_c01315{word-spacing:0.000000pt;}
.fsa_c01315{font-size:3.072000pt;}
.fs1b_c01315{font-size:5.333333pt;}
.fs4_c01315{font-size:6.133333pt;}
.fs23_c01315{font-size:9.226667pt;}
.fs19_c01315{font-size:12.266667pt;}
.fs1f_c01315{font-size:15.360000pt;}
.fs1a_c01315{font-size:18.453333pt;}
.fs2_c01315{font-size:21.493333pt;}
.fs3_c01315{font-size:24.586667pt;}
.fs1e_c01315{font-size:27.626667pt;}
.fsb_c01315{font-size:30.720000pt;}
.fs0_c01315{font-size:33.813333pt;}
.fs20_c01315{font-size:36.853333pt;}
.fs1d_c01315{font-size:39.946667pt;}
.fs1_c01315{font-size:42.986667pt;}
.fs10_c01315{font-size:46.080000pt;}
.fs17_c01315{font-size:49.173333pt;}
.fs16_c01315{font-size:52.213333pt;}
.fse_c01315{font-size:55.306667pt;}
.fs15_c01315{font-size:58.346667pt;}
.fs6_c01315{font-size:61.440000pt;}
.fs18_c01315{font-size:64.533333pt;}
.fs9_c01315{font-size:67.573333pt;}
.fsf_c01315{font-size:70.666667pt;}
.fsd_c01315{font-size:73.706667pt;}
.fs8_c01315{font-size:76.800000pt;}
.fs5_c01315{font-size:79.893333pt;}
.fs24_c01315{font-size:82.933333pt;}
.fs7_c01315{font-size:86.026667pt;}
.fs22_c01315{font-size:89.066667pt;}
.fs1c_c01315{font-size:92.160000pt;}
.fs11_c01315{font-size:95.253333pt;}
.fs13_c01315{font-size:98.293333pt;}
.fsc_c01315{font-size:101.386667pt;}
.fs14_c01315{font-size:104.426667pt;}
.fs12_c01315{font-size:113.653333pt;}
.fs21_c01315{font-size:150.506667pt;}
.y0_c01315{bottom:0.000000pt;}
.y20f_c01315{bottom:135.173333pt;}
.y20e_c01315{bottom:138.240000pt;}
.y20d_c01315{bottom:145.920000pt;}
.y210_c01315{bottom:150.533333pt;}
.y211_c01315{bottom:151.293333pt;}
.y20a_c01315{bottom:154.373333pt;}
.y20c_c01315{bottom:155.133333pt;}
.y20b_c01315{bottom:156.666667pt;}
.y206_c01315{bottom:157.440000pt;}
.y209_c01315{bottom:158.213333pt;}
.y208_c01315{bottom:158.973333pt;}
.y204_c01315{bottom:161.280000pt;}
.y207_c01315{bottom:162.053333pt;}
.y205_c01315{bottom:162.813333pt;}
.y202_c01315{bottom:167.426667pt;}
.y203_c01315{bottom:168.186667pt;}
.y201_c01315{bottom:168.960000pt;}
.y1ff_c01315{bottom:170.493333pt;}
.y1fd_c01315{bottom:174.333333pt;}
.y200_c01315{bottom:179.706667pt;}
.y1fe_c01315{bottom:181.253333pt;}
.y1fc_c01315{bottom:186.626667pt;}
.y1fa_c01315{bottom:191.226667pt;}
.y1f9_c01315{bottom:192.000000pt;}
.y1fb_c01315{bottom:195.840000pt;}
.y1f7_c01315{bottom:196.613333pt;}
.y1f8_c01315{bottom:199.680000pt;}
.y1f6_c01315{bottom:202.746667pt;}
.y1f5_c01315{bottom:205.826667pt;}
.y1f1_c01315{bottom:207.360000pt;}
.y1f2_c01315{bottom:209.666667pt;}
.y1f4_c01315{bottom:214.266667pt;}
.y1f3_c01315{bottom:215.813333pt;}
.y1f0_c01315{bottom:224.253333pt;}
.y1ef_c01315{bottom:225.786667pt;}
.y1ee_c01315{bottom:227.333333pt;}
.y1ed_c01315{bottom:228.093333pt;}
.y1ec_c01315{bottom:229.626667pt;}
.y1ea_c01315{bottom:231.173333pt;}
.y1e4_c01315{bottom:231.933333pt;}
.y1eb_c01315{bottom:232.706667pt;}
.y1e8_c01315{bottom:235.013333pt;}
.y1e9_c01315{bottom:235.773333pt;}
.y1e6_c01315{bottom:236.546667pt;}
.y1e7_c01315{bottom:238.853333pt;}
.y1e5_c01315{bottom:239.613333pt;}
.y1e2_c01315{bottom:241.146667pt;}
.y1e0_c01315{bottom:241.920000pt;}
.y1e3_c01315{bottom:243.453333pt;}
.y1e1_c01315{bottom:244.226667pt;}
.y1df_c01315{bottom:244.986667pt;}
.y1dc_c01315{bottom:245.760000pt;}
.y1da_c01315{bottom:246.533333pt;}
.y1dd_c01315{bottom:247.293333pt;}
.y1d8_c01315{bottom:248.826667pt;}
.y1db_c01315{bottom:249.600000pt;}
.y1de_c01315{bottom:250.373333pt;}
.y1d9_c01315{bottom:254.213333pt;}
.y1d7_c01315{bottom:254.973333pt;}
.y1d6_c01315{bottom:261.120000pt;}
.y1d4_c01315{bottom:262.653333pt;}
.y1d3_c01315{bottom:263.426667pt;}
.y1d5_c01315{bottom:264.186667pt;}
.y1d2_c01315{bottom:264.960000pt;}
.y1d1_c01315{bottom:266.493333pt;}
.y1cf_c01315{bottom:267.266667pt;}
.y1cc_c01315{bottom:269.573333pt;}
.y1d0_c01315{bottom:270.333333pt;}
.y1cd_c01315{bottom:271.106667pt;}
.y1ce_c01315{bottom:271.866667pt;}
.y1ca_c01315{bottom:275.706667pt;}
.y1cb_c01315{bottom:276.480000pt;}
.y1c8_c01315{bottom:278.013333pt;}
.y1c7_c01315{bottom:278.786667pt;}
.y1c9_c01315{bottom:279.546667pt;}
.y1c4_c01315{bottom:281.853333pt;}
.y1c2_c01315{bottom:282.626667pt;}
.y1c3_c01315{bottom:283.386667pt;}
.y1c6_c01315{bottom:286.466667pt;}
.y1c5_c01315{bottom:288.773333pt;}
.y1c0_c01315{bottom:294.146667pt;}
.y1bd_c01315{bottom:296.453333pt;}
.y1ba_c01315{bottom:297.213333pt;}
.y1b9_c01315{bottom:298.746667pt;}
.y1be_c01315{bottom:299.520000pt;}
.y1c1_c01315{bottom:300.293333pt;}
.y1b8_c01315{bottom:301.053333pt;}
.y1bc_c01315{bottom:301.826667pt;}
.y1bf_c01315{bottom:302.586667pt;}
.y1bb_c01315{bottom:306.426667pt;}
.y1b7_c01315{bottom:308.733333pt;}
.y1b5_c01315{bottom:314.880000pt;}
.y1b6_c01315{bottom:315.653333pt;}
.y1b3_c01315{bottom:317.186667pt;}
.y1b0_c01315{bottom:318.720000pt;}
.y1b4_c01315{bottom:320.253333pt;}
.y1af_c01315{bottom:321.026667pt;}
.y1ad_c01315{bottom:321.786667pt;}
.y1b2_c01315{bottom:322.560000pt;}
.y1b1_c01315{bottom:324.866667pt;}
.y1ae_c01315{bottom:326.400000pt;}
.y1ac_c01315{bottom:335.613333pt;}
.y1ab_c01315{bottom:336.386667pt;}
.y1aa_c01315{bottom:337.920000pt;}
.y1a7_c01315{bottom:339.453333pt;}
.y1a9_c01315{bottom:340.226667pt;}
.y1a6_c01315{bottom:341.760000pt;}
.y1a8_c01315{bottom:344.066667pt;}
.y1a3_c01315{bottom:350.213333pt;}
.y1a2_c01315{bottom:351.746667pt;}
.y1a1_c01315{bottom:352.506667pt;}
.y19f_c01315{bottom:353.280000pt;}
.y1a5_c01315{bottom:354.813333pt;}
.y1a4_c01315{bottom:355.586667pt;}
.y19e_c01315{bottom:357.893333pt;}
.y1a0_c01315{bottom:359.426667pt;}
.y212_c01315{bottom:363.266667pt;}
.y19a_c01315{bottom:367.866667pt;}
.y19c_c01315{bottom:370.173333pt;}
.y199_c01315{bottom:370.946667pt;}
.y198_c01315{bottom:372.480000pt;}
.y19b_c01315{bottom:373.253333pt;}
.y19d_c01315{bottom:374.786667pt;}
.y197_c01315{bottom:375.546667pt;}
.y196_c01315{bottom:376.320000pt;}
.y195_c01315{bottom:379.386667pt;}
.y194_c01315{bottom:380.160000pt;}
.y193_c01315{bottom:386.306667pt;}
.y192_c01315{bottom:387.066667pt;}
.y191_c01315{bottom:388.613333pt;}
.y18d_c01315{bottom:390.906667pt;}
.y18f_c01315{bottom:393.986667pt;}
.y189_c01315{bottom:394.746667pt;}
.y190_c01315{bottom:395.520000pt;}
.y18e_c01315{bottom:396.293333pt;}
.y18c_c01315{bottom:397.053333pt;}
.y18b_c01315{bottom:397.826667pt;}
.y18a_c01315{bottom:398.586667pt;}
.y186_c01315{bottom:406.266667pt;}
.y187_c01315{bottom:407.813333pt;}
.y188_c01315{bottom:408.573333pt;}
.y183_c01315{bottom:410.106667pt;}
.y184_c01315{bottom:415.493333pt;}
.y17f_c01315{bottom:421.626667pt;}
.y185_c01315{bottom:423.173333pt;}
.y17d_c01315{bottom:423.933333pt;}
.y180_c01315{bottom:424.706667pt;}
.y17b_c01315{bottom:425.466667pt;}
.y181_c01315{bottom:426.240000pt;}
.y17e_c01315{bottom:427.013333pt;}
.y182_c01315{bottom:428.546667pt;}
.y179_c01315{bottom:429.306667pt;}
.y17a_c01315{bottom:430.080000pt;}
.y17c_c01315{bottom:431.613333pt;}
.y178_c01315{bottom:432.386667pt;}
.y177_c01315{bottom:433.146667pt;}
.y175_c01315{bottom:441.600000pt;}
.y176_c01315{bottom:444.666667pt;}
.y170_c01315{bottom:445.440000pt;}
.y174_c01315{bottom:446.213333pt;}
.y173_c01315{bottom:446.973333pt;}
.y172_c01315{bottom:447.746667pt;}
.y171_c01315{bottom:449.280000pt;}
.y16f_c01315{bottom:451.586667pt;}
.y16d_c01315{bottom:455.426667pt;}
.y16e_c01315{bottom:456.186667pt;}
.y16b_c01315{bottom:456.960000pt;}
.y168_c01315{bottom:457.733333pt;}
.y166_c01315{bottom:460.800000pt;}
.y16a_c01315{bottom:463.106667pt;}
.y16c_c01315{bottom:463.866667pt;}
.y167_c01315{bottom:466.173333pt;}
.y169_c01315{bottom:469.253333pt;}
.y165_c01315{bottom:471.546667pt;}
.y164_c01315{bottom:472.320000pt;}
.y161_c01315{bottom:473.853333pt;}
.y160_c01315{bottom:474.626667pt;}
.y163_c01315{bottom:475.386667pt;}
.y15e_c01315{bottom:476.933333pt;}
.y15f_c01315{bottom:477.693333pt;}
.y162_c01315{bottom:489.986667pt;}
.y15b_c01315{bottom:495.360000pt;}
.y15a_c01315{bottom:496.133333pt;}
.y159_c01315{bottom:496.893333pt;}
.y15d_c01315{bottom:497.666667pt;}
.y15c_c01315{bottom:498.426667pt;}
.y158_c01315{bottom:499.973333pt;}
.y157_c01315{bottom:500.733333pt;}
.y154_c01315{bottom:501.506667pt;}
.y156_c01315{bottom:503.813333pt;}
.y155_c01315{bottom:504.573333pt;}
.y151_c01315{bottom:513.026667pt;}
.y153_c01315{bottom:514.560000pt;}
.y152_c01315{bottom:516.866667pt;}
.y14d_c01315{bottom:517.626667pt;}
.y150_c01315{bottom:518.400000pt;}
.y14f_c01315{bottom:521.466667pt;}
.y14e_c01315{bottom:522.240000pt;}
.y14c_c01315{bottom:532.986667pt;}
.y14a_c01315{bottom:534.533333pt;}
.y14b_c01315{bottom:535.293333pt;}
.y149_c01315{bottom:536.066667pt;}
.y145_c01315{bottom:537.600000pt;}
.y148_c01315{bottom:540.666667pt;}
.y147_c01315{bottom:542.973333pt;}
.y143_c01315{bottom:543.746667pt;}
.y144_c01315{bottom:545.280000pt;}
.y146_c01315{bottom:546.053333pt;}
.y141_c01315{bottom:546.813333pt;}
.y142_c01315{bottom:547.586667pt;}
.y140_c01315{bottom:548.346667pt;}
.y13e_c01315{bottom:549.120000pt;}
.y13d_c01315{bottom:550.653333pt;}
.y13c_c01315{bottom:552.186667pt;}
.y13f_c01315{bottom:552.960000pt;}
.y13b_c01315{bottom:553.733333pt;}
.y139_c01315{bottom:554.493333pt;}
.y13a_c01315{bottom:557.573333pt;}
.y138_c01315{bottom:562.173333pt;}
.y136_c01315{bottom:568.320000pt;}
.y133_c01315{bottom:569.093333pt;}
.y134_c01315{bottom:569.853333pt;}
.y137_c01315{bottom:570.626667pt;}
.y135_c01315{bottom:571.386667pt;}
.y131_c01315{bottom:572.160000pt;}
.y130_c01315{bottom:576.000000pt;}
.y132_c01315{bottom:585.213333pt;}
.y12f_c01315{bottom:585.986667pt;}
.y12e_c01315{bottom:586.746667pt;}
.y12a_c01315{bottom:587.520000pt;}
.y12d_c01315{bottom:588.293333pt;}
.y129_c01315{bottom:589.826667pt;}
.y12c_c01315{bottom:592.133333pt;}
.y12b_c01315{bottom:593.666667pt;}
.y128_c01315{bottom:594.426667pt;}
.y125_c01315{bottom:603.653333pt;}
.y124_c01315{bottom:604.413333pt;}
.y127_c01315{bottom:605.946667pt;}
.y121_c01315{bottom:606.720000pt;}
.y126_c01315{bottom:607.493333pt;}
.y11e_c01315{bottom:608.253333pt;}
.y120_c01315{bottom:609.026667pt;}
.y122_c01315{bottom:610.560000pt;}
.y123_c01315{bottom:611.333333pt;}
.y11f_c01315{bottom:612.093333pt;}
.y11d_c01315{bottom:620.546667pt;}
.y11c_c01315{bottom:621.306667pt;}
.y117_c01315{bottom:625.146667pt;}
.y115_c01315{bottom:625.920000pt;}
.y119_c01315{bottom:626.693333pt;}
.y11a_c01315{bottom:629.760000pt;}
.y116_c01315{bottom:630.533333pt;}
.y118_c01315{bottom:631.293333pt;}
.y11b_c01315{bottom:632.826667pt;}
.y111_c01315{bottom:638.213333pt;}
.y113_c01315{bottom:640.506667pt;}
.y110_c01315{bottom:641.280000pt;}
.y114_c01315{bottom:642.053333pt;}
.y112_c01315{bottom:643.586667pt;}
.y10f_c01315{bottom:644.346667pt;}
.y10e_c01315{bottom:645.120000pt;}
.y10d_c01315{bottom:646.653333pt;}
.y10c_c01315{bottom:647.426667pt;}
.y10b_c01315{bottom:648.186667pt;}
.y10a_c01315{bottom:648.960000pt;}
.y109_c01315{bottom:655.106667pt;}
.y108_c01315{bottom:657.413333pt;}
.y106_c01315{bottom:658.173333pt;}
.y103_c01315{bottom:661.253333pt;}
.y102_c01315{bottom:662.013333pt;}
.y107_c01315{bottom:662.786667pt;}
.y104_c01315{bottom:665.093333pt;}
.y105_c01315{bottom:665.853333pt;}
.yff_c01315{bottom:675.066667pt;}
.y100_c01315{bottom:675.840000pt;}
.yfd_c01315{bottom:677.373333pt;}
.y101_c01315{bottom:678.146667pt;}
.yfe_c01315{bottom:678.906667pt;}
.yfb_c01315{bottom:680.453333pt;}
.yfc_c01315{bottom:683.520000pt;}
.yf9_c01315{bottom:695.040000pt;}
.yfa_c01315{bottom:695.813333pt;}
.yf5_c01315{bottom:696.573333pt;}
.yf6_c01315{bottom:697.346667pt;}
.yf8_c01315{bottom:698.106667pt;}
.yf4_c01315{bottom:698.880000pt;}
.yf7_c01315{bottom:700.413333pt;}
.yf2_c01315{bottom:702.720000pt;}
.yf0_c01315{bottom:709.626667pt;}
.yf3_c01315{bottom:711.173333pt;}
.yef_c01315{bottom:713.466667pt;}
.yeb_c01315{bottom:714.240000pt;}
.yf1_c01315{bottom:715.013333pt;}
.yee_c01315{bottom:715.773333pt;}
.yed_c01315{bottom:718.853333pt;}
.yec_c01315{bottom:719.613333pt;}
.yea_c01315{bottom:720.386667pt;}
.ye9_c01315{bottom:728.826667pt;}
.ye7_c01315{bottom:729.600000pt;}
.ye8_c01315{bottom:730.373333pt;}
.ye3_c01315{bottom:731.906667pt;}
.ye4_c01315{bottom:732.666667pt;}
.ye2_c01315{bottom:733.440000pt;}
.ye6_c01315{bottom:734.213333pt;}
.ye5_c01315{bottom:736.506667pt;}
.ye1_c01315{bottom:746.493333pt;}
.ydf_c01315{bottom:748.026667pt;}
.yde_c01315{bottom:748.800000pt;}
.ydc_c01315{bottom:749.573333pt;}
.ye0_c01315{bottom:751.106667pt;}
.ydd_c01315{bottom:752.640000pt;}
.yda_c01315{bottom:754.173333pt;}
.ydb_c01315{bottom:754.946667pt;}
.yd9_c01315{bottom:762.626667pt;}
.yd8_c01315{bottom:766.466667pt;}
.yd6_c01315{bottom:767.226667pt;}
.yd5_c01315{bottom:768.000000pt;}
.yd7_c01315{bottom:769.533333pt;}
.yd3_c01315{bottom:781.826667pt;}
.yd4_c01315{bottom:784.133333pt;}
.yd2_c01315{bottom:784.893333pt;}
.yd0_c01315{bottom:785.666667pt;}
.ycf_c01315{bottom:786.426667pt;}
.yce_c01315{bottom:787.973333pt;}
.yd1_c01315{bottom:790.266667pt;}
.ycc_c01315{bottom:800.253333pt;}
.ycd_c01315{bottom:803.333333pt;}
.yca_c01315{bottom:804.866667pt;}
.ycb_c01315{bottom:805.626667pt;}
.yc9_c01315{bottom:806.400000pt;}
.yc8_c01315{bottom:808.706667pt;}
.yc7_c01315{bottom:809.466667pt;}
.yc6_c01315{bottom:812.546667pt;}
.yc4_c01315{bottom:819.453333pt;}
.yc2_c01315{bottom:820.226667pt;}
.yc3_c01315{bottom:820.986667pt;}
.ybe_c01315{bottom:821.760000pt;}
.yc5_c01315{bottom:822.533333pt;}
.yc1_c01315{bottom:825.600000pt;}
.yc0_c01315{bottom:826.373333pt;}
.ybf_c01315{bottom:827.133333pt;}
.ybb_c01315{bottom:837.893333pt;}
.ybc_c01315{bottom:838.653333pt;}
.yb8_c01315{bottom:839.426667pt;}
.yb9_c01315{bottom:840.186667pt;}
.ybd_c01315{bottom:840.960000pt;}
.yba_c01315{bottom:841.733333pt;}
.yb7_c01315{bottom:844.026667pt;}
.yb6_c01315{bottom:844.800000pt;}
.yb5_c01315{bottom:855.546667pt;}
.yb3_c01315{bottom:856.320000pt;}
.yae_c01315{bottom:857.093333pt;}
.yb0_c01315{bottom:857.853333pt;}
.yb4_c01315{bottom:858.626667pt;}
.yb2_c01315{bottom:859.386667pt;}
.yb1_c01315{bottom:860.933333pt;}
.yaf_c01315{bottom:861.693333pt;}
.yad_c01315{bottom:862.466667pt;}
.y3_c01315{bottom:867.066667pt;}
.yab_c01315{bottom:867.840000pt;}
.ya8_c01315{bottom:868.613333pt;}
.ya7_c01315{bottom:870.906667pt;}
.ya6_c01315{bottom:871.680000pt;}
.ya5_c01315{bottom:872.453333pt;}
.yac_c01315{bottom:873.213333pt;}
.ya2_c01315{bottom:875.520000pt;}
.ya4_c01315{bottom:876.293333pt;}
.yaa_c01315{bottom:877.053333pt;}
.ya3_c01315{bottom:878.586667pt;}
.y2_c01315{bottom:881.666667pt;}
.ya9_c01315{bottom:882.426667pt;}
.y1_c01315{bottom:883.200000pt;}
.ya1_c01315{bottom:890.106667pt;}
.ya0_c01315{bottom:891.653333pt;}
.y9c_c01315{bottom:892.413333pt;}
.y99_c01315{bottom:893.186667pt;}
.y9e_c01315{bottom:893.946667pt;}
.y9d_c01315{bottom:897.026667pt;}
.y9b_c01315{bottom:897.786667pt;}
.y9a_c01315{bottom:898.560000pt;}
.y9f_c01315{bottom:904.706667pt;}
.y98_c01315{bottom:907.773333pt;}
.y96_c01315{bottom:908.546667pt;}
.y94_c01315{bottom:909.306667pt;}
.y93_c01315{bottom:910.853333pt;}
.y97_c01315{bottom:913.146667pt;}
.y95_c01315{bottom:913.920000pt;}
.y92_c01315{bottom:915.453333pt;}
.y91_c01315{bottom:916.226667pt;}
.y90_c01315{bottom:926.213333pt;}
.y8b_c01315{bottom:929.280000pt;}
.y89_c01315{bottom:930.053333pt;}
.y8f_c01315{bottom:930.813333pt;}
.y8a_c01315{bottom:931.586667pt;}
.y8e_c01315{bottom:932.346667pt;}
.y8c_c01315{bottom:933.120000pt;}
.y88_c01315{bottom:933.893333pt;}
.y8d_c01315{bottom:934.653333pt;}
.y87_c01315{bottom:942.333333pt;}
.y85_c01315{bottom:944.640000pt;}
.y84_c01315{bottom:945.413333pt;}
.y86_c01315{bottom:947.706667pt;}
.y81_c01315{bottom:948.480000pt;}
.y80_c01315{bottom:949.253333pt;}
.y7e_c01315{bottom:950.013333pt;}
.y7f_c01315{bottom:951.546667pt;}
.y82_c01315{bottom:955.386667pt;}
.y83_c01315{bottom:960.773333pt;}
.y7b_c01315{bottom:962.306667pt;}
.y7a_c01315{bottom:964.613333pt;}
.y78_c01315{bottom:965.373333pt;}
.y77_c01315{bottom:966.146667pt;}
.y7c_c01315{bottom:966.906667pt;}
.y75_c01315{bottom:967.680000pt;}
.y6a_c01315{bottom:968.453333pt;}
.y79_c01315{bottom:969.213333pt;}
.y7d_c01315{bottom:971.520000pt;}
.y76_c01315{bottom:973.053333pt;}
.y71_c01315{bottom:976.893333pt;}
.y70_c01315{bottom:977.666667pt;}
.y72_c01315{bottom:979.200000pt;}
.y73_c01315{bottom:980.733333pt;}
.y6f_c01315{bottom:982.266667pt;}
.y6e_c01315{bottom:983.040000pt;}
.y6d_c01315{bottom:983.813333pt;}
.y6c_c01315{bottom:986.880000pt;}
.y6b_c01315{bottom:987.653333pt;}
.y69_c01315{bottom:989.946667pt;}
.y68_c01315{bottom:990.720000pt;}
.y74_c01315{bottom:993.786667pt;}
.y63_c01315{bottom:999.173333pt;}
.y65_c01315{bottom:999.933333pt;}
.y67_c01315{bottom:1002.240000pt;}
.y66_c01315{bottom:1003.013333pt;}
.y64_c01315{bottom:1003.773333pt;}
.y62_c01315{bottom:1014.533333pt;}
.y61_c01315{bottom:1015.293333pt;}
.y60_c01315{bottom:1017.600000pt;}
.y5f_c01315{bottom:1019.133333pt;}
.y5d_c01315{bottom:1019.906667pt;}
.y5e_c01315{bottom:1020.666667pt;}
.y57_c01315{bottom:1026.813333pt;}
.y59_c01315{bottom:1027.586667pt;}
.y5c_c01315{bottom:1028.346667pt;}
.y5a_c01315{bottom:1029.120000pt;}
.y56_c01315{bottom:1029.893333pt;}
.y55_c01315{bottom:1030.653333pt;}
.y58_c01315{bottom:1031.426667pt;}
.y5b_c01315{bottom:1033.733333pt;}
.y51_c01315{bottom:1034.493333pt;}
.y54_c01315{bottom:1036.800000pt;}
.y52_c01315{bottom:1037.573333pt;}
.y53_c01315{bottom:1039.106667pt;}
.y4f_c01315{bottom:1047.546667pt;}
.y50_c01315{bottom:1049.093333pt;}
.y4d_c01315{bottom:1051.386667pt;}
.y4b_c01315{bottom:1052.933333pt;}
.y49_c01315{bottom:1054.466667pt;}
.y4a_c01315{bottom:1055.226667pt;}
.y4e_c01315{bottom:1056.000000pt;}
.y4c_c01315{bottom:1056.773333pt;}
.y48_c01315{bottom:1057.533333pt;}
.y47_c01315{bottom:1058.306667pt;}
.y45_c01315{bottom:1060.613333pt;}
.y42_c01315{bottom:1063.680000pt;}
.y44_c01315{bottom:1064.453333pt;}
.y41_c01315{bottom:1065.986667pt;}
.y43_c01315{bottom:1066.746667pt;}
.y40_c01315{bottom:1067.520000pt;}
.y46_c01315{bottom:1068.293333pt;}
.y3e_c01315{bottom:1069.053333pt;}
.y3f_c01315{bottom:1070.586667pt;}
.y38_c01315{bottom:1071.360000pt;}
.y3d_c01315{bottom:1072.133333pt;}
.y3b_c01315{bottom:1072.893333pt;}
.y3c_c01315{bottom:1074.426667pt;}
.y37_c01315{bottom:1075.200000pt;}
.y3a_c01315{bottom:1075.973333pt;}
.y39_c01315{bottom:1076.733333pt;}
.y36_c01315{bottom:1086.720000pt;}
.y34_c01315{bottom:1088.253333pt;}
.y31_c01315{bottom:1089.786667pt;}
.y2e_c01315{bottom:1090.560000pt;}
.y32_c01315{bottom:1091.333333pt;}
.y2d_c01315{bottom:1092.093333pt;}
.y35_c01315{bottom:1092.866667pt;}
.y33_c01315{bottom:1093.626667pt;}
.y2f_c01315{bottom:1094.400000pt;}
.y2c_c01315{bottom:1095.173333pt;}
.y30_c01315{bottom:1096.706667pt;}
.y2b_c01315{bottom:1098.240000pt;}
.y2a_c01315{bottom:1099.773333pt;}
.y29_c01315{bottom:1101.306667pt;}
.y27_c01315{bottom:1102.853333pt;}
.y28_c01315{bottom:1104.386667pt;}
.y26_c01315{bottom:1105.146667pt;}
.y24_c01315{bottom:1105.920000pt;}
.y25_c01315{bottom:1120.506667pt;}
.y21_c01315{bottom:1125.120000pt;}
.y1f_c01315{bottom:1126.653333pt;}
.y20_c01315{bottom:1127.426667pt;}
.y1e_c01315{bottom:1128.960000pt;}
.y22_c01315{bottom:1130.493333pt;}
.y23_c01315{bottom:1131.266667pt;}
.y1d_c01315{bottom:1143.546667pt;}
.y1a_c01315{bottom:1144.320000pt;}
.y1b_c01315{bottom:1145.093333pt;}
.y19_c01315{bottom:1146.626667pt;}
.y1c_c01315{bottom:1148.933333pt;}
.y18_c01315{bottom:1154.306667pt;}
.y17_c01315{bottom:1155.840000pt;}
.y16_c01315{bottom:1156.613333pt;}
.y15_c01315{bottom:1157.373333pt;}
.yf_c01315{bottom:1159.680000pt;}
.yd_c01315{bottom:1160.453333pt;}
.y10_c01315{bottom:1161.986667pt;}
.y12_c01315{bottom:1163.520000pt;}
.ye_c01315{bottom:1164.293333pt;}
.y13_c01315{bottom:1165.053333pt;}
.y14_c01315{bottom:1167.360000pt;}
.y11_c01315{bottom:1168.133333pt;}
.yb_c01315{bottom:1186.560000pt;}
.ya_c01315{bottom:1188.866667pt;}
.y7_c01315{bottom:1189.626667pt;}
.y9_c01315{bottom:1191.173333pt;}
.y8_c01315{bottom:1198.080000pt;}
.yc_c01315{bottom:1206.533333pt;}
.y6_c01315{bottom:1208.826667pt;}
.y5_c01315{bottom:1212.666667pt;}
.y4_c01315{bottom:1254.906667pt;}
.hc_c01315{height:2.764500pt;}
.h1d_c01315{height:4.799479pt;}
.h6_c01315{height:5.519401pt;}
.h25_c01315{height:8.303099pt;}
.h1b_c01315{height:11.038802pt;}
.h21_c01315{height:13.822500pt;}
.h1c_c01315{height:16.606198pt;}
.h4_c01315{height:19.341901pt;}
.h5_c01315{height:22.125599pt;}
.h20_c01315{height:24.861302pt;}
.hd_c01315{height:27.645000pt;}
.h2_c01315{height:30.428698pt;}
.h22_c01315{height:33.164401pt;}
.h1f_c01315{height:35.948099pt;}
.h3_c01315{height:38.683802pt;}
.h12_c01315{height:41.467500pt;}
.h19_c01315{height:44.251198pt;}
.h18_c01315{height:46.986901pt;}
.h10_c01315{height:49.770599pt;}
.h17_c01315{height:52.506302pt;}
.h8_c01315{height:55.290000pt;}
.h1a_c01315{height:58.073698pt;}
.hb_c01315{height:60.809401pt;}
.h11_c01315{height:63.593099pt;}
.hf_c01315{height:66.328802pt;}
.ha_c01315{height:69.112500pt;}
.h7_c01315{height:71.896198pt;}
.h26_c01315{height:74.631901pt;}
.h9_c01315{height:77.415599pt;}
.h24_c01315{height:80.151302pt;}
.h1e_c01315{height:82.935000pt;}
.h13_c01315{height:85.718698pt;}
.h15_c01315{height:88.454401pt;}
.he_c01315{height:91.238099pt;}
.h16_c01315{height:93.973802pt;}
.h14_c01315{height:102.276901pt;}
.h23_c01315{height:135.441302pt;}
.h0_c01315{height:1341.693333pt;}
.h1_c01315{height:1342.000000pt;}
.w0_c01315{width:959.226667pt;}
.w1_c01315{width:959.333333pt;}
.x0_c01315{left:0.000000pt;}
.x1_c01315{left:2.306667pt;}
.x2_c01315{left:15.360000pt;}
.x119_c01315{left:148.986667pt;}
.x109_c01315{left:168.186667pt;}
.x70_c01315{left:170.493333pt;}
.x6_c01315{left:179.706667pt;}
.x71_c01315{left:182.786667pt;}
.x34_c01315{left:192.773333pt;}
.x7_c01315{left:195.840000pt;}
.x40_c01315{left:198.906667pt;}
.x5b_c01315{left:201.213333pt;}
.x89_c01315{left:203.520000pt;}
.xbf_c01315{left:205.826667pt;}
.xe_c01315{left:207.360000pt;}
.x7b_c01315{left:208.893333pt;}
.x30_c01315{left:210.426667pt;}
.x1b_c01315{left:211.973333pt;}
.xe1_c01315{left:213.506667pt;}
.x7c_c01315{left:218.106667pt;}
.x5c_c01315{left:220.413333pt;}
.xb3_c01315{left:222.720000pt;}
.x35_c01315{left:224.253333pt;}
.xf_c01315{left:225.786667pt;}
.xb9_c01315{left:230.400000pt;}
.xf9_c01315{left:232.706667pt;}
.x1c_c01315{left:235.013333pt;}
.x103_c01315{left:237.306667pt;}
.xa4_c01315{left:238.853333pt;}
.x41_c01315{left:241.146667pt;}
.xe8_c01315{left:243.453333pt;}
.x6a_c01315{left:245.760000pt;}
.xec_c01315{left:247.293333pt;}
.x10d_c01315{left:250.373333pt;}
.x72_c01315{left:254.213333pt;}
.x92_c01315{left:257.280000pt;}
.x8a_c01315{left:261.120000pt;}
.x9c_c01315{left:262.653333pt;}
.x73_c01315{left:264.960000pt;}
.x6b_c01315{left:268.800000pt;}
.x7d_c01315{left:271.106667pt;}
.xc0_c01315{left:272.640000pt;}
.x114_c01315{left:274.173333pt;}
.xc9_c01315{left:276.480000pt;}
.xda_c01315{left:278.013333pt;}
.x36_c01315{left:279.546667pt;}
.x10_c01315{left:281.853333pt;}
.x1d_c01315{left:284.933333pt;}
.x8b_c01315{left:286.466667pt;}
.xc7_c01315{left:288.000000pt;}
.xf1_c01315{left:290.306667pt;}
.xba_c01315{left:291.840000pt;}
.xdb_c01315{left:293.373333pt;}
.x9d_c01315{left:297.986667pt;}
.x74_c01315{left:299.520000pt;}
.xca_c01315{left:301.826667pt;}
.x8c_c01315{left:303.360000pt;}
.x104_c01315{left:305.666667pt;}
.x11_c01315{left:307.200000pt;}
.xe2_c01315{left:311.040000pt;}
.x8_c01315{left:312.573333pt;}
.x26_c01315{left:314.106667pt;}
.xff_c01315{left:316.413333pt;}
.x93_c01315{left:318.720000pt;}
.x1e_c01315{left:324.866667pt;}
.xe4_c01315{left:326.400000pt;}
.x9e_c01315{left:328.706667pt;}
.x46_c01315{left:331.013333pt;}
.xe9_c01315{left:334.853333pt;}
.x37_c01315{left:336.386667pt;}
.x83_c01315{left:338.693333pt;}
.x7e_c01315{left:340.986667pt;}
.xd4_c01315{left:343.293333pt;}
.xb0_c01315{left:345.600000pt;}
.xa8_c01315{left:347.906667pt;}
.xa5_c01315{left:350.213333pt;}
.x31_c01315{left:352.506667pt;}
.x6c_c01315{left:354.813333pt;}
.x1f_c01315{left:356.346667pt;}
.x27_c01315{left:357.893333pt;}
.x9f_c01315{left:359.426667pt;}
.x9_c01315{left:361.733333pt;}
.x42_c01315{left:363.266667pt;}
.xfa_c01315{left:364.800000pt;}
.x3_c01315{left:366.333333pt;}
.x94_c01315{left:368.640000pt;}
.x12_c01315{left:370.946667pt;}
.x98_c01315{left:372.480000pt;}
.x117_c01315{left:374.013333pt;}
.x110_c01315{left:375.546667pt;}
.x100_c01315{left:380.160000pt;}
.x32_c01315{left:381.693333pt;}
.xef_c01315{left:383.226667pt;}
.xea_c01315{left:385.533333pt;}
.x84_c01315{left:387.066667pt;}
.x10e_c01315{left:389.373333pt;}
.x13_c01315{left:391.680000pt;}
.xa_c01315{left:393.213333pt;}
.xbb_c01315{left:394.746667pt;}
.xe3_c01315{left:396.293333pt;}
.xfd_c01315{left:397.826667pt;}
.x38_c01315{left:399.360000pt;}
.x105_c01315{left:400.893333pt;}
.x99_c01315{left:402.426667pt;}
.x85_c01315{left:404.733333pt;}
.x75_c01315{left:406.266667pt;}
.xa9_c01315{left:409.346667pt;}
.x28_c01315{left:410.880000pt;}
.xcd_c01315{left:412.413333pt;}
.x7f_c01315{left:414.720000pt;}
.xc1_c01315{left:416.253333pt;}
.xa6_c01315{left:418.560000pt;}
.xed_c01315{left:420.093333pt;}
.x14_c01315{left:421.626667pt;}
.xd5_c01315{left:423.933333pt;}
.xb4_c01315{left:427.013333pt;}
.x80_c01315{left:429.306667pt;}
.x39_c01315{left:431.613333pt;}
.x33_c01315{left:433.920000pt;}
.xaa_c01315{left:436.226667pt;}
.xfb_c01315{left:438.533333pt;}
.xbc_c01315{left:440.066667pt;}
.x9a_c01315{left:442.373333pt;}
.x20_c01315{left:445.440000pt;}
.x8d_c01315{left:449.280000pt;}
.x111_c01315{left:451.586667pt;}
.xf2_c01315{left:453.120000pt;}
.xcb_c01315{left:454.653333pt;}
.x113_c01315{left:456.960000pt;}
.xa0_c01315{left:458.493333pt;}
.xf0_c01315{left:460.800000pt;}
.x116_c01315{left:463.866667pt;}
.xc3_c01315{left:465.413333pt;}
.xf7_c01315{left:471.546667pt;}
.xdd_c01315{left:473.853333pt;}
.x101_c01315{left:479.226667pt;}
.xee_c01315{left:482.306667pt;}
.x8e_c01315{left:483.840000pt;}
.x15_c01315{left:485.373333pt;}
.xb5_c01315{left:487.680000pt;}
.x4_c01315{left:489.213333pt;}
.x3a_c01315{left:490.746667pt;}
.x9b_c01315{left:493.053333pt;}
.x47_c01315{left:496.133333pt;}
.x76_c01315{left:497.666667pt;}
.x51_c01315{left:499.200000pt;}
.x16_c01315{left:500.733333pt;}
.xb_c01315{left:502.266667pt;}
.xfc_c01315{left:505.346667pt;}
.x48_c01315{left:508.414027pt;}
.xf3_c01315{left:510.720000pt;}
.x86_c01315{left:513.026667pt;}
.x3b_c01315{left:514.560000pt;}
.x61_c01315{left:516.093333pt;}
.x95_c01315{left:519.173333pt;}
.xa1_c01315{left:520.706667pt;}
.xa2_c01315{left:523.013333pt;}
.x49_c01315{left:524.546667pt;}
.x52_c01315{left:526.853333pt;}
.x43_c01315{left:529.146667pt;}
.xd6_c01315{left:532.226667pt;}
.x108_c01315{left:533.760000pt;}
.xde_c01315{left:536.826667pt;}
.x10a_c01315{left:538.373333pt;}
.x102_c01315{left:539.906667pt;}
.xab_c01315{left:541.440000pt;}
.x53_c01315{left:543.746667pt;}
.x4a_c01315{left:546.053333pt;}
.xdf_c01315{left:549.120000pt;}
.x62_c01315{left:552.186667pt;}
.x106_c01315{left:555.266667pt;}
.xc4_c01315{left:556.800000pt;}
.xdc_c01315{left:558.333333pt;}
.x29_c01315{left:560.640000pt;}
.x4b_c01315{left:562.946667pt;}
.x17_c01315{left:566.786667pt;}
.x8f_c01315{left:569.093333pt;}
.x10f_c01315{left:570.626667pt;}
.x21_c01315{left:572.933333pt;}
.xc5_c01315{left:575.226667pt;}
.x96_c01315{left:577.533333pt;}
.xd1_c01315{left:580.613333pt;}
.xa7_c01315{left:582.146667pt;}
.xb6_c01315{left:584.453333pt;}
.x63_c01315{left:585.986667pt;}
.xce_c01315{left:589.053333pt;}
.xc2_c01315{left:590.586667pt;}
.x54_c01315{left:592.893333pt;}
.x107_c01315{left:595.200000pt;}
.xe0_c01315{left:597.506667pt;}
.x18_c01315{left:599.040000pt;}
.x4c_c01315{left:601.346667pt;}
.xbd_c01315{left:602.880000pt;}
.xf8_c01315{left:605.186667pt;}
.x5d_c01315{left:607.493333pt;}
.xb1_c01315{left:610.560000pt;}
.x6d_c01315{left:612.866667pt;}
.x115_c01315{left:614.400000pt;}
.x44_c01315{left:615.933333pt;}
.x2a_c01315{left:618.240000pt;}
.x3c_c01315{left:620.546667pt;}
.x64_c01315{left:622.080000pt;}
.xfe_c01315{left:623.613333pt;}
.xac_c01315{left:625.146667pt;}
.x45_c01315{left:627.453333pt;}
.x5_c01315{left:629.760000pt;}
.x118_c01315{left:632.066667pt;}
.x3d_c01315{left:633.600000pt;}
.x77_c01315{left:635.133333pt;}
.x65_c01315{left:637.440000pt;}
.x22_c01315{left:640.506667pt;}
.xad_c01315{left:642.053333pt;}
.x6e_c01315{left:644.346667pt;}
.x55_c01315{left:645.893333pt;}
.xc8_c01315{left:647.426667pt;}
.x10b_c01315{left:648.960000pt;}
.xcf_c01315{left:652.026667pt;}
.xd7_c01315{left:653.573333pt;}
.xb7_c01315{left:655.106667pt;}
.x5e_c01315{left:656.640000pt;}
.x23_c01315{left:658.173333pt;}
.xd8_c01315{left:659.706667pt;}
.x19_c01315{left:661.253333pt;}
.x56_c01315{left:662.786667pt;}
.x4d_c01315{left:664.320000pt;}
.x78_c01315{left:665.853333pt;}
.xd2_c01315{left:667.386667pt;}
.xf5_c01315{left:670.466667pt;}
.x81_c01315{left:672.000000pt;}
.xc6_c01315{left:674.306667pt;}
.x57_c01315{left:676.613333pt;}
.x3e_c01315{left:678.146667pt;}
.x2b_c01315{left:679.680000pt;}
.x58_c01315{left:681.213333pt;}
.x2c_c01315{left:683.520000pt;}
.x66_c01315{left:685.826667pt;}
.x90_c01315{left:688.133333pt;}
.x5f_c01315{left:691.200000pt;}
.x24_c01315{left:692.733333pt;}
.x1a_c01315{left:698.880000pt;}
.x4e_c01315{left:701.946667pt;}
.x87_c01315{left:703.493333pt;}
.x2d_c01315{left:705.026667pt;}
.xb8_c01315{left:706.560000pt;}
.x97_c01315{left:708.866667pt;}
.x59_c01315{left:710.400000pt;}
.x79_c01315{left:711.933333pt;}
.xd3_c01315{left:714.240000pt;}
.xb2_c01315{left:715.773333pt;}
.x3f_c01315{left:717.306667pt;}
.x6f_c01315{left:718.853333pt;}
.x112_c01315{left:720.386667pt;}
.x5a_c01315{left:724.226667pt;}
.x67_c01315{left:725.760000pt;}
.xcc_c01315{left:727.293333pt;}
.x2e_c01315{left:728.826667pt;}
.xae_c01315{left:730.373333pt;}
.x25_c01315{left:731.906667pt;}
.x68_c01315{left:734.973800pt;}
.x88_c01315{left:736.506667pt;}
.x4f_c01315{left:738.053333pt;}
.xe5_c01315{left:739.586667pt;}
.xa3_c01315{left:742.653333pt;}
.xc_c01315{left:744.960000pt;}
.x91_c01315{left:748.800000pt;}
.x82_c01315{left:751.106667pt;}
.xd0_c01315{left:752.640000pt;}
.xaf_c01315{left:754.173333pt;}
.xd9_c01315{left:755.706667pt;}
.x60_c01315{left:757.253333pt;}
.xeb_c01315{left:760.320000pt;}
.x2f_c01315{left:761.853333pt;}
.x50_c01315{left:763.386667pt;}
.x69_c01315{left:766.466667pt;}
.xf6_c01315{left:768.773333pt;}
.xd_c01315{left:777.213333pt;}
.xf4_c01315{left:781.053333pt;}
.x7a_c01315{left:782.586667pt;}
.xbe_c01315{left:784.893333pt;}
.xe7_c01315{left:790.266667pt;}
.xe6_c01315{left:797.946667pt;}
.x10c_c01315{left:799.493333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ab4fd5c419cd2bad937d04e9.woff2')format("woff");}.ff1_c01316{font-family:ff1_c01316;line-height:1.109863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m57_c01316{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m16c_c01316{transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);}
.m19_c01316{transform:matrix(0.105150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105150,0.000000,0.000000,0.250000,0,0);}
.m1b_c01316{transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105900,0.000000,0.000000,0.250000,0,0);}
.m11b_c01316{transform:matrix(0.106800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106800,0.000000,0.000000,0.250000,0,0);}
.m15f_c01316{transform:matrix(0.112900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112900,0.000000,0.000000,0.250000,0,0);}
.m141_c01316{transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117425,0.000000,0.000000,0.250000,0,0);}
.m15a_c01316{transform:matrix(0.117575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117575,0.000000,0.000000,0.250000,0,0);}
.m1c_c01316{transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117950,0.000000,0.000000,0.250000,0,0);}
.m9e_c01316{transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118275,0.000000,0.000000,0.250000,0,0);}
.mb5_c01316{transform:matrix(0.120750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120750,0.000000,0.000000,0.250000,0,0);}
.m5c_c01316{transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);}
.m9a_c01316{transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124600,0.000000,0.000000,0.250000,0,0);}
.m5d_c01316{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m172_c01316{transform:matrix(0.125400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125400,0.000000,0.000000,0.250000,0,0);}
.m17d_c01316{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);}
.maf_c01316{transform:matrix(0.128450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128450,0.000000,0.000000,0.250000,0,0);}
.mba_c01316{transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128750,0.000000,0.000000,0.250000,0,0);}
.m107_c01316{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m17f_c01316{transform:matrix(0.130550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130550,0.000000,0.000000,0.250000,0,0);}
.mcd_c01316{transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);}
.mf1_c01316{transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132850,0.000000,0.000000,0.250000,0,0);}
.m42_c01316{transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133900,0.000000,0.000000,0.250000,0,0);}
.m14f_c01316{transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);}
.m10c_c01316{transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135525,0.000000,0.000000,0.250000,0,0);}
.m13e_c01316{transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);}
.m17e_c01316{transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);}
.m11d_c01316{transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);}
.mb8_c01316{transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138450,0.000000,0.000000,0.250000,0,0);}
.m117_c01316{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m18_c01316{transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140175,0.000000,0.000000,0.250000,0,0);}
.m10d_c01316{transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);}
.m184_c01316{transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142225,0.000000,0.000000,0.250000,0,0);}
.m10e_c01316{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);}
.m20_c01316{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.m0_c01316{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m92_c01316{transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);}
.m11c_c01316{transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);}
.m188_c01316{transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);}
.m60_c01316{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);}
.m93_c01316{transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);}
.mbb_c01316{transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);}
.m115_c01316{transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);}
.m96_c01316{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);}
.mb3_c01316{transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);}
.m123_c01316{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m7b_c01316{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m17c_c01316{transform:matrix(0.150525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150525,0.000000,0.000000,0.250000,0,0);}
.m152_c01316{transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);}
.mb9_c01316{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m168_c01316{transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);}
.m124_c01316{transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151200,0.000000,0.000000,0.250000,0,0);}
.mf2_c01316{transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);}
.md6_c01316{transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);}
.mf4_c01316{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m15c_c01316{transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);}
.m105_c01316{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);}
.m11_c01316{transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);}
.mf5_c01316{transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);}
.m99_c01316{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.m10_c01316{transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155625,0.000000,0.000000,0.250000,0,0);}
.m175_c01316{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m136_c01316{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.mb0_c01316{transform:matrix(0.157600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157600,0.000000,0.000000,0.250000,0,0);}
.m61_c01316{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);}
.m162_c01316{transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);}
.m16e_c01316{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);}
.m63_c01316{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.m135_c01316{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);}
.mf6_c01316{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m87_c01316{transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161175,0.000000,0.000000,0.250000,0,0);}
.mc8_c01316{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m13_c01316{transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161975,0.000000,0.000000,0.250000,0,0);}
.m155_c01316{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.m16a_c01316{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.mf9_c01316{transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162875,0.000000,0.000000,0.250000,0,0);}
.m133_c01316{transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162975,0.000000,0.000000,0.250000,0,0);}
.m7c_c01316{transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);}
.m145_c01316{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m150_c01316{transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);}
.m1e_c01316{transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);}
.m101_c01316{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);}
.m9c_c01316{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.mec_c01316{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m189_c01316{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.m134_c01316{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.mef_c01316{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);}
.m10b_c01316{transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);}
.m177_c01316{transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);}
.m29_c01316{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.m9d_c01316{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m18d_c01316{transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170725,0.000000,0.000000,0.250000,0,0);}
.m13d_c01316{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m118_c01316{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.mda_c01316{transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172825,0.000000,0.000000,0.250000,0,0);}
.m121_c01316{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m143_c01316{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);}
.m14d_c01316{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);}
.m3d_c01316{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m109_c01316{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);}
.mf3_c01316{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m6e_c01316{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);}
.m173_c01316{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);}
.mad_c01316{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m119_c01316{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);}
.m2b_c01316{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m11a_c01316{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m14a_c01316{transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);}
.m8a_c01316{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);}
.ma8_c01316{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.mc_c01316{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.mbf_c01316{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m6d_c01316{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m167_c01316{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m170_c01316{transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181025,0.000000,0.000000,0.250000,0,0);}
.m112_c01316{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m4c_c01316{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);}
.mf7_c01316{transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);}
.m80_c01316{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.m171_c01316{transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182575,0.000000,0.000000,0.250000,0,0);}
.m138_c01316{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m97_c01316{transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183600,0.000000,0.000000,0.250000,0,0);}
.m106_c01316{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);}
.m161_c01316{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01316{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m181_c01316{transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);}
.m62_c01316{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);}
.mab_c01316{transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);}
.m28_c01316{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.mc7_c01316{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);}
.m140_c01316{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m10f_c01316{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);}
.m5b_c01316{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);}
.m113_c01316{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m9f_c01316{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m166_c01316{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);}
.mcf_c01316{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);}
.m114_c01316{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);}
.m31_c01316{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);}
.m16b_c01316{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m51_c01316{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.m45_c01316{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);}
.m156_c01316{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);}
.md0_c01316{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);}
.me7_c01316{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.md7_c01316{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m12d_c01316{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m139_c01316{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);}
.m2d_c01316{transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);}
.m169_c01316{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);}
.m5e_c01316{transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);}
.m18c_c01316{transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);}
.m187_c01316{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);}
.mf_c01316{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);}
.m15b_c01316{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.m159_c01316{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);}
.m8f_c01316{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m116_c01316{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);}
.m98_c01316{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m94_c01316{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.mce_c01316{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.m8c_c01316{transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202450,0.000000,0.000000,0.250000,0,0);}
.m50_c01316{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.m186_c01316{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);}
.mcc_c01316{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);}
.m125_c01316{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m43_c01316{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);}
.m9_c01316{transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);}
.m8e_c01316{transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);}
.m3b_c01316{transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);}
.m110_c01316{transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);}
.m185_c01316{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.m3f_c01316{transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);}
.m48_c01316{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m30_c01316{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);}
.me2_c01316{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);}
.m127_c01316{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.md8_c01316{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.md5_c01316{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);}
.mc2_c01316{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.m2c_c01316{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.mee_c01316{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);}
.mc5_c01316{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);}
.m77_c01316{transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);}
.m2e_c01316{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);}
.m129_c01316{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m90_c01316{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);}
.m4d_c01316{transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);}
.m34_c01316{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m183_c01316{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);}
.md2_c01316{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);}
.m111_c01316{transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);}
.mf8_c01316{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.m142_c01316{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.me4_c01316{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);}
.m151_c01316{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m7d_c01316{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);}
.m4b_c01316{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);}
.m11f_c01316{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);}
.m179_c01316{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);}
.m108_c01316{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);}
.mc6_c01316{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);}
.m75_c01316{transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);}
.m122_c01316{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);}
.m14e_c01316{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m126_c01316{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);}
.m160_c01316{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);}
.m12c_c01316{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);}
.m5a_c01316{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);}
.mdc_c01316{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.m37_c01316{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.mdd_c01316{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);}
.m16d_c01316{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m120_c01316{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m137_c01316{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);}
.m157_c01316{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);}
.m7e_c01316{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);}
.me0_c01316{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);}
.mcb_c01316{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m26_c01316{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);}
.m6a_c01316{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.mb4_c01316{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.mae_c01316{transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);}
.m40_c01316{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.md9_c01316{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);}
.m59_c01316{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.m154_c01316{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m82_c01316{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);}
.m190_c01316{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);}
.me8_c01316{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);}
.mf0_c01316{transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);}
.m15d_c01316{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);}
.m74_c01316{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.m49_c01316{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);}
.m174_c01316{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.mfa_c01316{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);}
.m12b_c01316{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);}
.m153_c01316{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);}
.m12_c01316{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);}
.m18e_c01316{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.mc9_c01316{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.m73_c01316{transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);}
.m8d_c01316{transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);}
.ma_c01316{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m7f_c01316{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.m65_c01316{transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);}
.m25_c01316{transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233750,0.000000,0.000000,0.250000,0,0);}
.m13f_c01316{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_c01316{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);}
.m13a_c01316{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);}
.m12f_c01316{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.mbe_c01316{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);}
.m146_c01316{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.maa_c01316{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);}
.m56_c01316{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);}
.m1f_c01316{transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);}
.m6f_c01316{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);}
.mc3_c01316{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m100_c01316{transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);}
.mb7_c01316{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);}
.mdb_c01316{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);}
.m191_c01316{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.m68_c01316{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);}
.mff_c01316{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);}
.m163_c01316{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);}
.m9b_c01316{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.m13c_c01316{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m91_c01316{transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);}
.med_c01316{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);}
.md3_c01316{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);}
.me3_c01316{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);}
.me6_c01316{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m58_c01316{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m12a_c01316{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m14c_c01316{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);}
.mbd_c01316{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);}
.md4_c01316{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);}
.mdf_c01316{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.m180_c01316{transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);}
.m36_c01316{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m89_c01316{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);}
.me5_c01316{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);}
.m165_c01316{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m176_c01316{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);}
.ma7_c01316{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m15e_c01316{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);}
.m71_c01316{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);}
.m7a_c01316{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m86_c01316{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);}
.m4f_c01316{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);}
.m78_c01316{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);}
.m3e_c01316{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);}
.m3c_c01316{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m41_c01316{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01316{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m79_c01316{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);}
.m44_c01316{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m38_c01316{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);}
.m8_c01316{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);}
.m1d_c01316{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m55_c01316{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);}
.m2_c01316{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m27_c01316{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m54_c01316{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);}
.mfb_c01316{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m52_c01316{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);}
.m81_c01316{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);}
.m4a_c01316{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc4_c01316{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md_c01316{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);}
.m6c_c01316{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m21_c01316{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m24_c01316{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);}
.m14_c01316{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m32_c01316{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c01316{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c01316{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m17_c01316{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c01316{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m64_c01316{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb6_c01316{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m66_c01316{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);}
.mbc_c01316{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.meb_c01316{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mb_c01316{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m131_c01316{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);}
.m22_c01316{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mde_c01316{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma2_c01316{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);}
.m16f_c01316{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m46_c01316{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m11e_c01316{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m128_c01316{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m102_c01316{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);}
.m10a_c01316{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mc0_c01316{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mb1_c01316{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);}
.md1_c01316{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m47_c01316{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mc1_c01316{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.me1_c01316{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m95_c01316{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m39_c01316{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m67_c01316{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m88_c01316{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01316{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);}
.m178_c01316{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);}
.mfc_c01316{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01316{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);}
.m6b_c01316{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m7_c01316{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m164_c01316{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);}
.m33_c01316{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m132_c01316{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4_c01316{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mac_c01316{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m16_c01316{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01316{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);}
.m4e_c01316{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m83_c01316{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01316{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m69_c01316{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m76_c01316{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);}
.m103_c01316{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.ma9_c01316{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mfe_c01316{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m147_c01316{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m84_c01316{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);}
.m6_c01316{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);}
.m53_c01316{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m70_c01316{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01316{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m17a_c01316{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01316{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m104_c01316{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m158_c01316{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m1_c01316{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.me9_c01316{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.me_c01316{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m149_c01316{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);}
.m18b_c01316{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m182_c01316{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m14b_c01316{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m12e_c01316{transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.647500,0.000000,0.000000,0.250000,0,0);}
.ma0_c01316{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m144_c01316{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m72_c01316{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);}
.mfd_c01316{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m148_c01316{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.ma1_c01316{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.ma5_c01316{transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);}
.m13b_c01316{transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);}
.m15_c01316{transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.092500,0.000000,0.000000,0.250000,0,0);}
.m18a_c01316{transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.097500,0.000000,0.000000,0.250000,0,0);}
.m85_c01316{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.mca_c01316{transform:matrix(1.187500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.187500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.187500,0.000000,0.000000,0.250000,0,0);}
.ma4_c01316{transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);}
.m17b_c01316{transform:matrix(2.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.120000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01316{transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);}
.m130_c01316{transform:matrix(2.975000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.975000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.975000,0.000000,0.000000,0.250000,0,0);}
.m3_c01316{transform:matrix(10.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(10.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(10.800000,0.000000,0.000000,0.250000,0,0);}
.m18f_c01316{transform:matrix(11.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(11.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(11.952500,0.000000,0.000000,0.250000,0,0);}
.v1_c01316{vertical-align:-3.480000px;}
.v0_c01316{vertical-align:0.000000px;}
.v3_c01316{vertical-align:3.480000px;}
.v2_c01316{vertical-align:6.900000px;}
.ls3_c01316{letter-spacing:0.000000px;}
.ls2_c01316{letter-spacing:145.322700px;}
.ls0_c01316{letter-spacing:703.234273px;}
.ls1_c01316{letter-spacing:814.043667px;}
.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:-14.395620px;}
.ws1_c01316{word-spacing:0.000000px;}
.fc0_c01316{color:transparent;}
.fs1_c01316{font-size:3.456000px;}
.fs0_c01316{font-size:6.000000px;}
.fs18_c01316{font-size:6.900000px;}
.fs10_c01316{font-size:10.380000px;}
.fs1e_c01316{font-size:13.800000px;}
.fs2_c01316{font-size:17.280000px;}
.fs5_c01316{font-size:20.760000px;}
.fs1b_c01316{font-size:24.180000px;}
.fs11_c01316{font-size:27.660000px;}
.fsc_c01316{font-size:31.080000px;}
.fs6_c01316{font-size:34.560000px;}
.fs1d_c01316{font-size:38.040000px;}
.fs1f_c01316{font-size:41.460000px;}
.fs12_c01316{font-size:44.940000px;}
.fsa_c01316{font-size:48.360000px;}
.fse_c01316{font-size:51.840000px;}
.fs13_c01316{font-size:55.320000px;}
.fs1a_c01316{font-size:58.740000px;}
.fs7_c01316{font-size:62.220000px;}
.fsf_c01316{font-size:65.640000px;}
.fs19_c01316{font-size:69.120000px;}
.fs8_c01316{font-size:72.600000px;}
.fs9_c01316{font-size:76.020000px;}
.fsd_c01316{font-size:79.500000px;}
.fs17_c01316{font-size:82.920000px;}
.fs15_c01316{font-size:86.400000px;}
.fs16_c01316{font-size:89.880000px;}
.fs3_c01316{font-size:93.300000px;}
.fsb_c01316{font-size:96.780000px;}
.fs4_c01316{font-size:100.200000px;}
.fs14_c01316{font-size:103.680000px;}
.fs20_c01316{font-size:107.160000px;}
.fs1c_c01316{font-size:152.040000px;}
.y0_c01316{bottom:0.000000px;}
.y1b3_c01316{bottom:190.080000px;}
.y1b4_c01316{bottom:193.530000px;}
.y1b5_c01316{bottom:195.270000px;}
.y1b2_c01316{bottom:197.850000px;}
.y1b1_c01316{bottom:198.720000px;}
.y1af_c01316{bottom:202.170000px;}
.y1b0_c01316{bottom:203.910000px;}
.y1ae_c01316{bottom:207.360000px;}
.y1a9_c01316{bottom:218.595000px;}
.y1a8_c01316{bottom:219.450000px;}
.y1ad_c01316{bottom:220.320000px;}
.y1ac_c01316{bottom:222.045000px;}
.y1aa_c01316{bottom:225.510000px;}
.y1ab_c01316{bottom:227.235000px;}
.y1a3_c01316{bottom:237.600000px;}
.y1a4_c01316{bottom:239.325000px;}
.y1a1_c01316{bottom:242.790000px;}
.y1a2_c01316{bottom:244.515000px;}
.y1a5_c01316{bottom:245.370000px;}
.y1a7_c01316{bottom:246.240000px;}
.y1a6_c01316{bottom:254.880000px;}
.y19d_c01316{bottom:255.750000px;}
.y19c_c01316{bottom:258.330000px;}
.y19b_c01316{bottom:260.070000px;}
.y19f_c01316{bottom:261.795000px;}
.y19e_c01316{bottom:266.115000px;}
.y1a0_c01316{bottom:267.840000px;}
.y193_c01316{bottom:279.930000px;}
.y194_c01316{bottom:280.800000px;}
.y195_c01316{bottom:281.670000px;}
.y196_c01316{bottom:282.525000px;}
.y19a_c01316{bottom:284.250000px;}
.y197_c01316{bottom:285.120000px;}
.y198_c01316{bottom:286.845000px;}
.y199_c01316{bottom:289.440000px;}
.y18b_c01316{bottom:299.805000px;}
.y18d_c01316{bottom:300.675000px;}
.y18c_c01316{bottom:301.530000px;}
.y190_c01316{bottom:302.400000px;}
.y18f_c01316{bottom:303.270000px;}
.y18e_c01316{bottom:306.720000px;}
.y191_c01316{bottom:307.590000px;}
.y192_c01316{bottom:308.445000px;}
.y183_c01316{bottom:321.405000px;}
.y189_c01316{bottom:322.275000px;}
.y188_c01316{bottom:323.130000px;}
.y18a_c01316{bottom:324.000000px;}
.y182_c01316{bottom:324.870000px;}
.y184_c01316{bottom:325.725000px;}
.y187_c01316{bottom:326.595000px;}
.y186_c01316{bottom:327.450000px;}
.y185_c01316{bottom:328.320000px;}
.y17c_c01316{bottom:339.555000px;}
.y17e_c01316{bottom:343.005000px;}
.y17d_c01316{bottom:343.875000px;}
.y17b_c01316{bottom:345.600000px;}
.y180_c01316{bottom:346.470000px;}
.y17f_c01316{bottom:347.325000px;}
.y181_c01316{bottom:348.195000px;}
.y17a_c01316{bottom:349.050000px;}
.y174_c01316{bottom:363.750000px;}
.y176_c01316{bottom:364.605000px;}
.y175_c01316{bottom:367.200000px;}
.y178_c01316{bottom:368.070000px;}
.y179_c01316{bottom:369.795000px;}
.y173_c01316{bottom:372.390000px;}
.y172_c01316{bottom:374.115000px;}
.y177_c01316{bottom:381.030000px;}
.y16d_c01316{bottom:381.885000px;}
.y16c_c01316{bottom:382.755000px;}
.y16b_c01316{bottom:383.610000px;}
.y170_c01316{bottom:384.480000px;}
.y16e_c01316{bottom:387.075000px;}
.y16f_c01316{bottom:388.800000px;}
.y171_c01316{bottom:389.670000px;}
.y167_c01316{bottom:402.630000px;}
.y169_c01316{bottom:404.355000px;}
.y168_c01316{bottom:405.210000px;}
.y166_c01316{bottom:407.805000px;}
.y16a_c01316{bottom:408.675000px;}
.y160_c01316{bottom:409.530000px;}
.y164_c01316{bottom:410.400000px;}
.y165_c01316{bottom:411.270000px;}
.y15d_c01316{bottom:412.995000px;}
.y161_c01316{bottom:416.445000px;}
.y15c_c01316{bottom:417.315000px;}
.y15f_c01316{bottom:418.170000px;}
.y15e_c01316{bottom:419.040000px;}
.y163_c01316{bottom:420.765000px;}
.y162_c01316{bottom:421.635000px;}
.y154_c01316{bottom:423.360000px;}
.y156_c01316{bottom:424.230000px;}
.y158_c01316{bottom:425.085000px;}
.y15a_c01316{bottom:425.955000px;}
.y157_c01316{bottom:426.810000px;}
.y153_c01316{bottom:427.680000px;}
.y155_c01316{bottom:428.550000px;}
.y152_c01316{bottom:429.405000px;}
.y15b_c01316{bottom:430.275000px;}
.y159_c01316{bottom:431.130000px;}
.y14d_c01316{bottom:444.090000px;}
.y150_c01316{bottom:444.960000px;}
.y14c_c01316{bottom:445.830000px;}
.y14f_c01316{bottom:446.685000px;}
.y14b_c01316{bottom:448.410000px;}
.y147_c01316{bottom:449.280000px;}
.y14a_c01316{bottom:451.005000px;}
.y14e_c01316{bottom:451.875000px;}
.y151_c01316{bottom:453.600000px;}
.y145_c01316{bottom:454.470000px;}
.y144_c01316{bottom:455.325000px;}
.y143_c01316{bottom:456.195000px;}
.y141_c01316{bottom:457.050000px;}
.y146_c01316{bottom:457.920000px;}
.y148_c01316{bottom:458.790000px;}
.y149_c01316{bottom:459.645000px;}
.y140_c01316{bottom:460.515000px;}
.y142_c01316{bottom:461.370000px;}
.y13d_c01316{bottom:464.835000px;}
.y13f_c01316{bottom:465.690000px;}
.y13c_c01316{bottom:469.155000px;}
.y13e_c01316{bottom:470.010000px;}
.y137_c01316{bottom:484.710000px;}
.y13b_c01316{bottom:485.565000px;}
.y136_c01316{bottom:486.435000px;}
.y139_c01316{bottom:487.290000px;}
.y13a_c01316{bottom:488.160000px;}
.y134_c01316{bottom:489.030000px;}
.y138_c01316{bottom:489.885000px;}
.y135_c01316{bottom:490.755000px;}
.y133_c01316{bottom:491.610000px;}
.y131_c01316{bottom:493.350000px;}
.y132_c01316{bottom:494.205000px;}
.y12d_c01316{bottom:505.440000px;}
.y12b_c01316{bottom:506.310000px;}
.y12a_c01316{bottom:507.165000px;}
.y12c_c01316{bottom:509.760000px;}
.y12f_c01316{bottom:510.630000px;}
.y130_c01316{bottom:511.485000px;}
.y12e_c01316{bottom:518.400000px;}
.y122_c01316{bottom:524.445000px;}
.y125_c01316{bottom:527.040000px;}
.y127_c01316{bottom:527.910000px;}
.y123_c01316{bottom:529.635000px;}
.y126_c01316{bottom:530.490000px;}
.y124_c01316{bottom:531.360000px;}
.y128_c01316{bottom:532.230000px;}
.y129_c01316{bottom:535.680000px;}
.y11c_c01316{bottom:545.190000px;}
.y121_c01316{bottom:546.045000px;}
.y11e_c01316{bottom:547.770000px;}
.y11b_c01316{bottom:548.640000px;}
.y120_c01316{bottom:549.510000px;}
.y11a_c01316{bottom:550.365000px;}
.y11d_c01316{bottom:551.235000px;}
.y11f_c01316{bottom:552.090000px;}
.y113_c01316{bottom:565.920000px;}
.y114_c01316{bottom:568.515000px;}
.y116_c01316{bottom:569.370000px;}
.y119_c01316{bottom:570.240000px;}
.y112_c01316{bottom:571.110000px;}
.y111_c01316{bottom:571.965000px;}
.y118_c01316{bottom:572.835000px;}
.y115_c01316{bottom:576.285000px;}
.y117_c01316{bottom:579.750000px;}
.y10b_c01316{bottom:585.795000px;}
.y10f_c01316{bottom:588.390000px;}
.y110_c01316{bottom:589.245000px;}
.y109_c01316{bottom:590.115000px;}
.y10d_c01316{bottom:590.970000px;}
.y10a_c01316{bottom:591.840000px;}
.y10c_c01316{bottom:592.710000px;}
.y10e_c01316{bottom:593.565000px;}
.y103_c01316{bottom:607.395000px;}
.y106_c01316{bottom:608.250000px;}
.y104_c01316{bottom:609.120000px;}
.y102_c01316{bottom:612.570000px;}
.y107_c01316{bottom:613.440000px;}
.y105_c01316{bottom:616.035000px;}
.y108_c01316{bottom:617.760000px;}
.yfc_c01316{bottom:625.530000px;}
.yfd_c01316{bottom:627.270000px;}
.yfb_c01316{bottom:628.125000px;}
.yff_c01316{bottom:628.995000px;}
.yfe_c01316{bottom:629.850000px;}
.y100_c01316{bottom:632.445000px;}
.y101_c01316{bottom:633.315000px;}
.yf8_c01316{bottom:647.130000px;}
.yfa_c01316{bottom:649.725000px;}
.yf9_c01316{bottom:651.450000px;}
.yf7_c01316{bottom:653.190000px;}
.yf4_c01316{bottom:661.830000px;}
.yf0_c01316{bottom:664.410000px;}
.yf3_c01316{bottom:665.280000px;}
.yf1_c01316{bottom:667.005000px;}
.yf2_c01316{bottom:667.875000px;}
.yf6_c01316{bottom:672.195000px;}
.yf5_c01316{bottom:673.920000px;}
.ye9_c01316{bottom:686.010000px;}
.ye7_c01316{bottom:686.880000px;}
.yee_c01316{bottom:688.605000px;}
.yec_c01316{bottom:689.475000px;}
.yed_c01316{bottom:690.330000px;}
.ye8_c01316{bottom:691.200000px;}
.yeb_c01316{bottom:692.070000px;}
.yef_c01316{bottom:692.925000px;}
.yea_c01316{bottom:693.795000px;}
.ye0_c01316{bottom:706.755000px;}
.ye5_c01316{bottom:708.480000px;}
.ye6_c01316{bottom:710.205000px;}
.ye3_c01316{bottom:711.075000px;}
.ye1_c01316{bottom:711.930000px;}
.ye2_c01316{bottom:712.800000px;}
.ye4_c01316{bottom:713.670000px;}
.ydc_c01316{bottom:725.760000px;}
.ydd_c01316{bottom:727.485000px;}
.yde_c01316{bottom:730.080000px;}
.yda_c01316{bottom:731.805000px;}
.ydb_c01316{bottom:732.675000px;}
.ydf_c01316{bottom:733.530000px;}
.yd2_c01316{bottom:746.490000px;}
.yd4_c01316{bottom:748.230000px;}
.yd3_c01316{bottom:749.085000px;}
.yd5_c01316{bottom:750.810000px;}
.yd1_c01316{bottom:752.550000px;}
.yd6_c01316{bottom:753.405000px;}
.yd7_c01316{bottom:756.000000px;}
.yd0_c01316{bottom:756.870000px;}
.yd8_c01316{bottom:763.770000px;}
.yd9_c01316{bottom:766.365000px;}
.yc9_c01316{bottom:767.235000px;}
.yce_c01316{bottom:768.090000px;}
.ycb_c01316{bottom:768.960000px;}
.ycd_c01316{bottom:769.830000px;}
.ycc_c01316{bottom:770.685000px;}
.yca_c01316{bottom:773.280000px;}
.ycf_c01316{bottom:774.150000px;}
.yc3_c01316{bottom:787.965000px;}
.yc4_c01316{bottom:788.835000px;}
.yc8_c01316{bottom:789.690000px;}
.yc5_c01316{bottom:790.560000px;}
.yc6_c01316{bottom:794.010000px;}
.yc7_c01316{bottom:794.880000px;}
.ybe_c01316{bottom:806.970000px;}
.ybd_c01316{bottom:808.710000px;}
.ybb_c01316{bottom:809.565000px;}
.ybf_c01316{bottom:811.290000px;}
.yc0_c01316{bottom:812.160000px;}
.ybc_c01316{bottom:813.885000px;}
.yc1_c01316{bottom:814.755000px;}
.yc2_c01316{bottom:816.480000px;}
.yba_c01316{bottom:824.250000px;}
.yb3_c01316{bottom:828.570000px;}
.yb7_c01316{bottom:829.440000px;}
.yb9_c01316{bottom:830.310000px;}
.yb8_c01316{bottom:831.165000px;}
.yb5_c01316{bottom:832.035000px;}
.yb2_c01316{bottom:832.890000px;}
.yb4_c01316{bottom:833.760000px;}
.yb6_c01316{bottom:834.630000px;}
.yaa_c01316{bottom:847.590000px;}
.yad_c01316{bottom:848.445000px;}
.yac_c01316{bottom:849.315000px;}
.yb1_c01316{bottom:850.170000px;}
.yae_c01316{bottom:851.040000px;}
.yab_c01316{bottom:852.765000px;}
.yb0_c01316{bottom:854.490000px;}
.yaf_c01316{bottom:855.360000px;}
.ya5_c01316{bottom:867.450000px;}
.ya4_c01316{bottom:870.045000px;}
.ya8_c01316{bottom:870.915000px;}
.ya9_c01316{bottom:871.770000px;}
.ya6_c01316{bottom:874.365000px;}
.ya7_c01316{bottom:875.235000px;}
.y9f_c01316{bottom:888.195000px;}
.ya0_c01316{bottom:889.920000px;}
.y9d_c01316{bottom:890.790000px;}
.ya2_c01316{bottom:891.645000px;}
.ya1_c01316{bottom:892.515000px;}
.y97_c01316{bottom:893.370000px;}
.ya3_c01316{bottom:895.110000px;}
.y98_c01316{bottom:898.560000px;}
.y99_c01316{bottom:899.430000px;}
.y9b_c01316{bottom:901.155000px;}
.y9a_c01316{bottom:902.880000px;}
.y9c_c01316{bottom:903.750000px;}
.y9e_c01316{bottom:905.475000px;}
.y91_c01316{bottom:907.200000px;}
.y92_c01316{bottom:909.795000px;}
.y90_c01316{bottom:911.520000px;}
.y94_c01316{bottom:913.245000px;}
.y93_c01316{bottom:914.115000px;}
.y95_c01316{bottom:914.970000px;}
.y96_c01316{bottom:917.565000px;}
.y8d_c01316{bottom:929.670000px;}
.y8a_c01316{bottom:930.525000px;}
.y8b_c01316{bottom:933.990000px;}
.y8e_c01316{bottom:934.845000px;}
.y8f_c01316{bottom:935.715000px;}
.y8c_c01316{bottom:936.570000px;}
.y87_c01316{bottom:947.805000px;}
.y85_c01316{bottom:949.530000px;}
.y86_c01316{bottom:950.400000px;}
.y89_c01316{bottom:952.125000px;}
.y82_c01316{bottom:952.995000px;}
.y79_c01316{bottom:953.850000px;}
.y88_c01316{bottom:955.590000px;}
.y80_c01316{bottom:956.445000px;}
.y7b_c01316{bottom:957.315000px;}
.y7c_c01316{bottom:958.170000px;}
.y7d_c01316{bottom:959.040000px;}
.y7e_c01316{bottom:960.765000px;}
.y81_c01316{bottom:961.635000px;}
.y84_c01316{bottom:962.490000px;}
.y7f_c01316{bottom:964.230000px;}
.y7a_c01316{bottom:965.085000px;}
.y83_c01316{bottom:966.810000px;}
.y71_c01316{bottom:968.550000px;}
.y72_c01316{bottom:970.275000px;}
.y77_c01316{bottom:971.130000px;}
.y75_c01316{bottom:973.725000px;}
.y74_c01316{bottom:974.595000px;}
.y73_c01316{bottom:975.450000px;}
.y76_c01316{bottom:976.320000px;}
.y78_c01316{bottom:983.235000px;}
.y6c_c01316{bottom:988.410000px;}
.y6b_c01316{bottom:989.280000px;}
.y6e_c01316{bottom:991.005000px;}
.y70_c01316{bottom:993.600000px;}
.y6d_c01316{bottom:994.470000px;}
.y6f_c01316{bottom:996.195000px;}
.y66_c01316{bottom:1010.010000px;}
.y6a_c01316{bottom:1011.750000px;}
.y65_c01316{bottom:1012.605000px;}
.y64_c01316{bottom:1013.475000px;}
.y62_c01316{bottom:1014.330000px;}
.y63_c01316{bottom:1015.200000px;}
.y68_c01316{bottom:1016.070000px;}
.y69_c01316{bottom:1016.925000px;}
.y67_c01316{bottom:1024.710000px;}
.y61_c01316{bottom:1029.030000px;}
.y5b_c01316{bottom:1029.885000px;}
.y5f_c01316{bottom:1030.755000px;}
.y60_c01316{bottom:1031.610000px;}
.y5d_c01316{bottom:1032.480000px;}
.y5c_c01316{bottom:1033.350000px;}
.y5a_c01316{bottom:1035.075000px;}
.y5e_c01316{bottom:1036.800000px;}
.y55_c01316{bottom:1050.630000px;}
.y58_c01316{bottom:1052.355000px;}
.y57_c01316{bottom:1053.210000px;}
.y56_c01316{bottom:1054.950000px;}
.y54_c01316{bottom:1055.805000px;}
.y59_c01316{bottom:1066.170000px;}
.y4c_c01316{bottom:1070.490000px;}
.y52_c01316{bottom:1071.360000px;}
.y4d_c01316{bottom:1072.230000px;}
.y50_c01316{bottom:1073.955000px;}
.y4f_c01316{bottom:1074.810000px;}
.y4e_c01316{bottom:1075.680000px;}
.y53_c01316{bottom:1078.275000px;}
.y51_c01316{bottom:1091.235000px;}
.y4a_c01316{bottom:1092.090000px;}
.y4b_c01316{bottom:1092.960000px;}
.y49_c01316{bottom:1094.685000px;}
.y47_c01316{bottom:1096.410000px;}
.y1b6_c01316{bottom:1098.150000px;}
.y1b7_c01316{bottom:1099.875000px;}
.y48_c01316{bottom:1109.370000px;}
.y42_c01316{bottom:1111.110000px;}
.y41_c01316{bottom:1112.835000px;}
.y43_c01316{bottom:1116.285000px;}
.y45_c01316{bottom:1117.155000px;}
.y44_c01316{bottom:1118.010000px;}
.y46_c01316{bottom:1123.200000px;}
.y3d_c01316{bottom:1130.970000px;}
.y3b_c01316{bottom:1131.840000px;}
.y3f_c01316{bottom:1132.710000px;}
.y3a_c01316{bottom:1134.435000px;}
.y36_c01316{bottom:1135.290000px;}
.y3c_c01316{bottom:1137.030000px;}
.y3e_c01316{bottom:1137.885000px;}
.y40_c01316{bottom:1140.480000px;}
.y32_c01316{bottom:1150.845000px;}
.y34_c01316{bottom:1151.715000px;}
.y38_c01316{bottom:1154.310000px;}
.y33_c01316{bottom:1156.035000px;}
.y35_c01316{bottom:1156.890000px;}
.y37_c01316{bottom:1157.760000px;}
.y39_c01316{bottom:1160.355000px;}
.y2d_c01316{bottom:1170.720000px;}
.y30_c01316{bottom:1173.315000px;}
.y2e_c01316{bottom:1175.910000px;}
.y2f_c01316{bottom:1176.765000px;}
.y31_c01316{bottom:1177.635000px;}
.y29_c01316{bottom:1190.595000px;}
.y2c_c01316{bottom:1194.045000px;}
.y1b9_c01316{bottom:1194.915000px;}
.y2b_c01316{bottom:1195.770000px;}
.y2a_c01316{bottom:1196.640000px;}
.y26_c01316{bottom:1211.325000px;}
.y25_c01316{bottom:1212.195000px;}
.y27_c01316{bottom:1216.515000px;}
.y28_c01316{bottom:1217.370000px;}
.y22_c01316{bottom:1231.200000px;}
.y21_c01316{bottom:1232.070000px;}
.y20_c01316{bottom:1232.925000px;}
.y23_c01316{bottom:1233.795000px;}
.y24_c01316{bottom:1249.350000px;}
.y1c_c01316{bottom:1251.930000px;}
.y1d_c01316{bottom:1253.670000px;}
.y1a_c01316{bottom:1257.120000px;}
.y1b_c01316{bottom:1257.990000px;}
.y1e_c01316{bottom:1260.570000px;}
.y1f_c01316{bottom:1261.440000px;}
.y14_c01316{bottom:1267.485000px;}
.y12_c01316{bottom:1268.355000px;}
.y11_c01316{bottom:1269.210000px;}
.y16_c01316{bottom:1270.080000px;}
.y15_c01316{bottom:1271.805000px;}
.y18_c01316{bottom:1273.530000px;}
.y19_c01316{bottom:1274.400000px;}
.y10_c01316{bottom:1276.995000px;}
.y13_c01316{bottom:1277.850000px;}
.y17_c01316{bottom:1278.720000px;}
.yb_c01316{bottom:1293.405000px;}
.yd_c01316{bottom:1294.275000px;}
.ye_c01316{bottom:1295.130000px;}
.yc_c01316{bottom:1296.870000px;}
.yf_c01316{bottom:1303.770000px;}
.y8_c01316{bottom:1313.280000px;}
.y5_c01316{bottom:1314.150000px;}
.ya_c01316{bottom:1316.730000px;}
.y6_c01316{bottom:1317.600000px;}
.y7_c01316{bottom:1318.470000px;}
.y9_c01316{bottom:1320.195000px;}
.y4_c01316{bottom:1337.475000px;}
.y1_c01316{bottom:1362.525000px;}
.y2_c01316{bottom:1363.395000px;}
.y3_c01316{bottom:1364.250000px;}
.y1b8_c01316{bottom:1387.590000px;}
.h3_c01316{height:3.110063px;}
.h2_c01316{height:5.399414px;}
.h1a_c01316{height:6.209326px;}
.h12_c01316{height:9.340986px;}
.h23_c01316{height:9.689326px;}
.h20_c01316{height:12.418652px;}
.h4_c01316{height:15.550313px;}
.h7_c01316{height:18.681973px;}
.h22_c01316{height:19.318652px;}
.h1d_c01316{height:21.759639px;}
.h13_c01316{height:24.891299px;}
.he_c01316{height:27.968965px;}
.h8_c01316{height:31.100625px;}
.h1f_c01316{height:34.232285px;}
.h21_c01316{height:37.309951px;}
.h14_c01316{height:40.441611px;}
.hc_c01316{height:43.519277px;}
.h10_c01316{height:46.650937px;}
.h15_c01316{height:49.782598px;}
.h1c_c01316{height:52.860264px;}
.h9_c01316{height:55.991924px;}
.h24_c01316{height:56.280264px;}
.h11_c01316{height:59.069590px;}
.h1b_c01316{height:62.201250px;}
.ha_c01316{height:65.332910px;}
.hb_c01316{height:68.410576px;}
.hf_c01316{height:71.542236px;}
.h19_c01316{height:74.619902px;}
.h17_c01316{height:77.751563px;}
.h18_c01316{height:80.883223px;}
.h5_c01316{height:83.960889px;}
.hd_c01316{height:87.092549px;}
.h6_c01316{height:90.170215px;}
.h16_c01316{height:93.301875px;}
.h25_c01316{height:96.433535px;}
.h1e_c01316{height:136.821152px;}
.h1_c01316{height:1513.500000px;}
.h0_c01316{height:1513.725000px;}
.w1_c01316{width:1076.250000px;}
.w0_c01316{width:1076.550000px;}
.x0_c01316{left:0.000000px;}
.xdd_c01316{left:40.605000px;}
.x108_c01316{left:136.515000px;}
.xde_c01316{left:140.835000px;}
.x109_c01316{left:145.155000px;}
.xdf_c01316{left:160.710000px;}
.x105_c01316{left:170.205000px;}
.x106_c01316{left:178.845000px;}
.xdb_c01316{left:182.310000px;}
.xee_c01316{left:203.040000px;}
.x6_c01316{left:210.810000px;}
.x6a_c01316{left:212.550000px;}
.x8_c01316{left:214.275000px;}
.xf3_c01316{left:216.000000px;}
.x102_c01316{left:218.595000px;}
.x49_c01316{left:220.320000px;}
.xef_c01316{left:222.045000px;}
.x18_c01316{left:223.770000px;}
.x9_c01316{left:225.510000px;}
.x33_c01316{left:227.235000px;}
.xa3_c01316{left:228.960000px;}
.xe0_c01316{left:235.875000px;}
.xad_c01316{left:238.470000px;}
.xf4_c01316{left:240.195000px;}
.xf7_c01316{left:242.790000px;}
.x8d_c01316{left:244.515000px;}
.xa_c01316{left:246.240000px;}
.x5c_c01316{left:249.690000px;}
.x6b_c01316{left:254.880000px;}
.x19_c01316{left:257.475000px;}
.x22_c01316{left:259.200000px;}
.x34_c01316{left:261.795000px;}
.x2d_c01316{left:266.115000px;}
.xca_c01316{left:268.710000px;}
.xb0_c01316{left:270.435000px;}
.xf0_c01316{left:272.160000px;}
.xa4_c01316{left:274.755000px;}
.xd0_c01316{left:277.350000px;}
.xe8_c01316{left:281.670000px;}
.x84_c01316{left:285.120000px;}
.xf5_c01316{left:286.845000px;}
.xbd_c01316{left:289.440000px;}
.x52_c01316{left:291.165000px;}
.x4a_c01316{left:292.890000px;}
.x23_c01316{left:295.485000px;}
.x6c_c01316{left:297.210000px;}
.x32_c01316{left:298.950000px;}
.xfd_c01316{left:300.675000px;}
.x29_c01316{left:303.270000px;}
.x5d_c01316{left:304.995000px;}
.xd6_c01316{left:307.590000px;}
.x75_c01316{left:309.315000px;}
.x24_c01316{left:311.910000px;}
.x35_c01316{left:315.360000px;}
.x7e_c01316{left:317.085000px;}
.x2e_c01316{left:319.680000px;}
.x45_c01316{left:321.405000px;}
.x1a_c01316{left:324.000000px;}
.x53_c01316{left:325.725000px;}
.xf8_c01316{left:327.450000px;}
.xf6_c01316{left:329.190000px;}
.x3a_c01316{left:330.915000px;}
.x107_c01316{left:332.640000px;}
.xbb_c01316{left:334.365000px;}
.x57_c01316{left:336.090000px;}
.x7_c01316{left:337.830000px;}
.x72_c01316{left:342.150000px;}
.x76_c01316{left:345.600000px;}
.xc0_c01316{left:347.325000px;}
.x94_c01316{left:349.920000px;}
.x36_c01316{left:354.240000px;}
.x3b_c01316{left:355.965000px;}
.xb6_c01316{left:362.010000px;}
.x6d_c01316{left:364.605000px;}
.x1_c01316{left:368.070000px;}
.x90_c01316{left:370.650000px;}
.x25_c01316{left:374.115000px;}
.x5e_c01316{left:376.710000px;}
.x2f_c01316{left:378.435000px;}
.xae_c01316{left:380.160000px;}
.xc7_c01316{left:381.885000px;}
.xeb_c01316{left:384.480000px;}
.x77_c01316{left:386.205000px;}
.x2a_c01316{left:388.800000px;}
.x95_c01316{left:391.395000px;}
.xb_c01316{left:393.120000px;}
.x2_c01316{left:395.715000px;}
.xd3_c01316{left:397.440000px;}
.x3c_c01316{left:399.165000px;}
.x6e_c01316{left:400.890000px;}
.xd7_c01316{left:403.485000px;}
.x9c_c01316{left:406.080000px;}
.x37_c01316{left:411.270000px;}
.x85_c01316{left:414.720000px;}
.xec_c01316{left:416.445000px;}
.x1b_c01316{left:418.170000px;}
.xe1_c01316{left:419.910000px;}
.xe3_c01316{left:421.635000px;}
.xfe_c01316{left:424.230000px;}
.x62_c01316{left:425.955000px;}
.x91_c01316{left:427.680000px;}
.x3d_c01316{left:429.405000px;}
.x46_c01316{left:431.130000px;}
.x3_c01316{left:432.870000px;}
.xfb_c01316{left:435.450000px;}
.x38_c01316{left:438.045000px;}
.x86_c01316{left:440.640000px;}
.x92_c01316{left:442.365000px;}
.xf9_c01316{left:444.090000px;}
.x63_c01316{left:445.830000px;}
.x26_c01316{left:447.555000px;}
.xdc_c01316{left:449.280816px;}
.x4b_c01316{left:451.005000px;}
.x9d_c01316{left:452.730000px;}
.x96_c01316{left:455.325000px;}
.x30_c01316{left:457.050000px;}
.x104_c01316{left:458.790000px;}
.xd8_c01316{left:461.370000px;}
.x1c_c01316{left:463.110000px;}
.xe9_c01316{left:464.835000px;}
.xf1_c01316{left:469.155000px;}
.xc_c01316{left:470.880000px;}
.x58_c01316{left:473.475000px;}
.x5f_c01316{left:475.200000px;}
.xcf_c01316{left:476.925000px;}
.x99_c01316{left:479.520000px;}
.xa5_c01316{left:483.840000px;}
.x87_c01316{left:486.435000px;}
.x7f_c01316{left:489.030000px;}
.xc1_c01316{left:492.480000px;}
.xb1_c01316{left:494.205000px;}
.x39_c01316{left:495.930000px;}
.x47_c01316{left:497.670000px;}
.x73_c01316{left:501.120000px;}
.x4c_c01316{left:502.845000px;}
.x80_c01316{left:505.440000px;}
.x2b_c01316{left:507.165000px;}
.xe2_c01316{left:508.890000px;}
.x31_c01316{left:511.485000px;}
.xe4_c01316{left:520.125000px;}
.xd1_c01316{left:522.720000px;}
.x78_c01316{left:525.315000px;}
.xd_c01316{left:531.360000px;}
.x6f_c01316{left:533.085000px;}
.x74_c01316{left:534.810000px;}
.x64_c01316{left:536.550000px;}
.x103_c01316{left:540.000000px;}
.xaa_c01316{left:545.190000px;}
.xe_c01316{left:551.235000px;}
.x3e_c01316{left:552.960000px;}
.x79_c01316{left:554.685000px;}
.x48_c01316{left:556.410000px;}
.xbc_c01316{left:559.005000px;}
.x1d_c01316{left:565.050000px;}
.x65_c01316{left:570.240000px;}
.x11_c01316{left:571.965000px;}
.xa6_c01316{left:573.690000px;}
.x4_c01316{left:578.010000px;}
.x88_c01316{left:580.605000px;}
.x4d_c01316{left:583.200000px;}
.xc2_c01316{left:585.795000px;}
.xa7_c01316{left:587.520000px;}
.x7a_c01316{left:590.115000px;}
.x60_c01316{left:593.565000px;}
.x7b_c01316{left:596.160000px;}
.xff_c01316{left:599.610000px;}
.x1e_c01316{left:601.350000px;}
.x12_c01316{left:603.075000px;}
.x3f_c01316{left:605.670000px;}
.xcc_c01316{left:609.120000px;}
.x10b_c01316{left:611.715000px;}
.x70_c01316{left:613.440000px;}
.x1f_c01316{left:615.165000px;}
.xb4_c01316{left:619.485000px;}
.xd9_c01316{left:622.080000px;}
.x2c_c01316{left:623.805000px;}
.x27_c01316{left:626.400000px;}
.xe5_c01316{left:628.125000px;}
.xc3_c01316{left:632.445000px;}
.x4e_c01316{left:635.040000px;}
.x54_c01316{left:637.635000px;}
.x40_c01316{left:641.955000px;}
.xb5_c01316{left:643.680000px;}
.x59_c01316{left:645.405000px;}
.xa8_c01316{left:649.725000px;}
.xb7_c01316{left:652.320000px;}
.x101_c01316{left:654.045000px;}
.x9e_c01316{left:655.770000px;}
.xda_c01316{left:658.365000px;}
.x41_c01316{left:660.960000px;}
.x89_c01316{left:664.410000px;}
.x71_c01316{left:669.600000px;}
.x7c_c01316{left:671.325000px;}
.x55_c01316{left:673.920000px;}
.x81_c01316{left:677.370000px;}
.x97_c01316{left:683.430000px;}
.x13_c01316{left:686.880000px;}
.xc8_c01316{left:690.330000px;}
.x100_c01316{left:692.070000px;}
.xe6_c01316{left:693.795000px;}
.x9f_c01316{left:695.520000px;}
.xb2_c01316{left:698.970000px;}
.x8e_c01316{left:701.565000px;}
.x66_c01316{left:704.160000px;}
.x20_c01316{left:705.885000px;}
.x14_c01316{left:708.480000px;}
.x61_c01316{left:710.205000px;}
.xd4_c01316{left:712.800000px;}
.x9a_c01316{left:716.250000px;}
.xb8_c01316{left:717.990000px;}
.x42_c01316{left:721.440000px;}
.xcd_c01316{left:723.165000px;}
.x15_c01316{left:725.760000px;}
.xd2_c01316{left:728.355000px;}
.x93_c01316{left:731.805000px;}
.xfa_c01316{left:733.530000px;}
.xf_c01316{left:735.270000px;}
.xce_c01316{left:736.995000px;}
.xa0_c01316{left:738.720000px;}
.x8a_c01316{left:742.170000px;}
.x56_c01316{left:743.910000px;}
.xab_c01316{left:745.635000px;}
.x5_c01316{left:748.230000px;}
.xcb_c01316{left:749.955000px;}
.xa1_c01316{left:756.870000px;}
.x8b_c01316{left:758.595000px;}
.x5a_c01316{left:760.320000px;}
.xed_c01316{left:762.045000px;}
.x28_c01316{left:764.640000px;}
.x67_c01316{left:768.090000px;}
.xc4_c01316{left:769.830000px;}
.x4f_c01316{left:772.410000px;}
.xa9_c01316{left:774.150000px;}
.x9b_c01316{left:781.050000px;}
.xc9_c01316{left:783.645000px;}
.xbe_c01316{left:789.690000px;}
.x21_c01316{left:794.010000px;}
.x98_c01316{left:795.750000px;}
.xc5_c01316{left:798.330000px;}
.x82_c01316{left:801.795000px;}
.x68_c01316{left:803.520000px;}
.xa2_c01316{left:806.115000px;}
.x43_c01316{left:808.710000px;}
.x8f_c01316{left:810.435000px;}
.x69_c01316{left:812.160000px;}
.x7d_c01316{left:814.755000px;}
.xac_c01316{left:816.480000px;}
.xc6_c01316{left:819.075000px;}
.x50_c01316{left:821.670000px;}
.xfc_c01316{left:823.395000px;}
.x16_c01316{left:825.120000px;}
.xb9_c01316{left:826.845000px;}
.x83_c01316{left:828.570000px;}
.xd5_c01316{left:831.165000px;}
.x5b_c01316{left:833.760000px;}
.xe7_c01316{left:837.210000px;}
.xb3_c01316{left:840.675000px;}
.xea_c01316{left:845.850000px;}
.x17_c01316{left:848.445000px;}
.x10_c01316{left:850.170000px;}
.xaf_c01316{left:851.910000px;}
.xf2_c01316{left:853.635000px;}
.xba_c01316{left:855.360000px;}
.x8c_c01316{left:858.810000px;}
.x44_c01316{left:860.550000px;}
.xbf_c01316{left:865.725000px;}
.x51_c01316{left:876.090000px;}
.x10c_c01316{left:972.000000px;}
.x10d_c01316{left:980.640000px;}
.x10a_c01316{left:1044.570000px;}
@media print{
.v1_c01316{vertical-align:-3.093333pt;}
.v0_c01316{vertical-align:0.000000pt;}
.v3_c01316{vertical-align:3.093333pt;}
.v2_c01316{vertical-align:6.133333pt;}
.ls3_c01316{letter-spacing:0.000000pt;}
.ls2_c01316{letter-spacing:129.175733pt;}
.ls0_c01316{letter-spacing:625.097132pt;}
.ls1_c01316{letter-spacing:723.594370pt;}
.ws0_c01316{word-spacing:-12.796107pt;}
.ws1_c01316{word-spacing:0.000000pt;}
.fs1_c01316{font-size:3.072000pt;}
.fs0_c01316{font-size:5.333333pt;}
.fs18_c01316{font-size:6.133333pt;}
.fs10_c01316{font-size:9.226667pt;}
.fs1e_c01316{font-size:12.266667pt;}
.fs2_c01316{font-size:15.360000pt;}
.fs5_c01316{font-size:18.453333pt;}
.fs1b_c01316{font-size:21.493333pt;}
.fs11_c01316{font-size:24.586667pt;}
.fsc_c01316{font-size:27.626667pt;}
.fs6_c01316{font-size:30.720000pt;}
.fs1d_c01316{font-size:33.813333pt;}
.fs1f_c01316{font-size:36.853333pt;}
.fs12_c01316{font-size:39.946667pt;}
.fsa_c01316{font-size:42.986667pt;}
.fse_c01316{font-size:46.080000pt;}
.fs13_c01316{font-size:49.173333pt;}
.fs1a_c01316{font-size:52.213333pt;}
.fs7_c01316{font-size:55.306667pt;}
.fsf_c01316{font-size:58.346667pt;}
.fs19_c01316{font-size:61.440000pt;}
.fs8_c01316{font-size:64.533333pt;}
.fs9_c01316{font-size:67.573333pt;}
.fsd_c01316{font-size:70.666667pt;}
.fs17_c01316{font-size:73.706667pt;}
.fs15_c01316{font-size:76.800000pt;}
.fs16_c01316{font-size:79.893333pt;}
.fs3_c01316{font-size:82.933333pt;}
.fsb_c01316{font-size:86.026667pt;}
.fs4_c01316{font-size:89.066667pt;}
.fs14_c01316{font-size:92.160000pt;}
.fs20_c01316{font-size:95.253333pt;}
.fs1c_c01316{font-size:135.146667pt;}
.y0_c01316{bottom:0.000000pt;}
.y1b3_c01316{bottom:168.960000pt;}
.y1b4_c01316{bottom:172.026667pt;}
.y1b5_c01316{bottom:173.573333pt;}
.y1b2_c01316{bottom:175.866667pt;}
.y1b1_c01316{bottom:176.640000pt;}
.y1af_c01316{bottom:179.706667pt;}
.y1b0_c01316{bottom:181.253333pt;}
.y1ae_c01316{bottom:184.320000pt;}
.y1a9_c01316{bottom:194.306667pt;}
.y1a8_c01316{bottom:195.066667pt;}
.y1ad_c01316{bottom:195.840000pt;}
.y1ac_c01316{bottom:197.373333pt;}
.y1aa_c01316{bottom:200.453333pt;}
.y1ab_c01316{bottom:201.986667pt;}
.y1a3_c01316{bottom:211.200000pt;}
.y1a4_c01316{bottom:212.733333pt;}
.y1a1_c01316{bottom:215.813333pt;}
.y1a2_c01316{bottom:217.346667pt;}
.y1a5_c01316{bottom:218.106667pt;}
.y1a7_c01316{bottom:218.880000pt;}
.y1a6_c01316{bottom:226.560000pt;}
.y19d_c01316{bottom:227.333333pt;}
.y19c_c01316{bottom:229.626667pt;}
.y19b_c01316{bottom:231.173333pt;}
.y19f_c01316{bottom:232.706667pt;}
.y19e_c01316{bottom:236.546667pt;}
.y1a0_c01316{bottom:238.080000pt;}
.y193_c01316{bottom:248.826667pt;}
.y194_c01316{bottom:249.600000pt;}
.y195_c01316{bottom:250.373333pt;}
.y196_c01316{bottom:251.133333pt;}
.y19a_c01316{bottom:252.666667pt;}
.y197_c01316{bottom:253.440000pt;}
.y198_c01316{bottom:254.973333pt;}
.y199_c01316{bottom:257.280000pt;}
.y18b_c01316{bottom:266.493333pt;}
.y18d_c01316{bottom:267.266667pt;}
.y18c_c01316{bottom:268.026667pt;}
.y190_c01316{bottom:268.800000pt;}
.y18f_c01316{bottom:269.573333pt;}
.y18e_c01316{bottom:272.640000pt;}
.y191_c01316{bottom:273.413333pt;}
.y192_c01316{bottom:274.173333pt;}
.y183_c01316{bottom:285.693333pt;}
.y189_c01316{bottom:286.466667pt;}
.y188_c01316{bottom:287.226667pt;}
.y18a_c01316{bottom:288.000000pt;}
.y182_c01316{bottom:288.773333pt;}
.y184_c01316{bottom:289.533333pt;}
.y187_c01316{bottom:290.306667pt;}
.y186_c01316{bottom:291.066667pt;}
.y185_c01316{bottom:291.840000pt;}
.y17c_c01316{bottom:301.826667pt;}
.y17e_c01316{bottom:304.893333pt;}
.y17d_c01316{bottom:305.666667pt;}
.y17b_c01316{bottom:307.200000pt;}
.y180_c01316{bottom:307.973333pt;}
.y17f_c01316{bottom:308.733333pt;}
.y181_c01316{bottom:309.506667pt;}
.y17a_c01316{bottom:310.266667pt;}
.y174_c01316{bottom:323.333333pt;}
.y176_c01316{bottom:324.093333pt;}
.y175_c01316{bottom:326.400000pt;}
.y178_c01316{bottom:327.173333pt;}
.y179_c01316{bottom:328.706667pt;}
.y173_c01316{bottom:331.013333pt;}
.y172_c01316{bottom:332.546667pt;}
.y177_c01316{bottom:338.693333pt;}
.y16d_c01316{bottom:339.453333pt;}
.y16c_c01316{bottom:340.226667pt;}
.y16b_c01316{bottom:340.986667pt;}
.y170_c01316{bottom:341.760000pt;}
.y16e_c01316{bottom:344.066667pt;}
.y16f_c01316{bottom:345.600000pt;}
.y171_c01316{bottom:346.373333pt;}
.y167_c01316{bottom:357.893333pt;}
.y169_c01316{bottom:359.426667pt;}
.y168_c01316{bottom:360.186667pt;}
.y166_c01316{bottom:362.493333pt;}
.y16a_c01316{bottom:363.266667pt;}
.y160_c01316{bottom:364.026667pt;}
.y164_c01316{bottom:364.800000pt;}
.y165_c01316{bottom:365.573333pt;}
.y15d_c01316{bottom:367.106667pt;}
.y161_c01316{bottom:370.173333pt;}
.y15c_c01316{bottom:370.946667pt;}
.y15f_c01316{bottom:371.706667pt;}
.y15e_c01316{bottom:372.480000pt;}
.y163_c01316{bottom:374.013333pt;}
.y162_c01316{bottom:374.786667pt;}
.y154_c01316{bottom:376.320000pt;}
.y156_c01316{bottom:377.093333pt;}
.y158_c01316{bottom:377.853333pt;}
.y15a_c01316{bottom:378.626667pt;}
.y157_c01316{bottom:379.386667pt;}
.y153_c01316{bottom:380.160000pt;}
.y155_c01316{bottom:380.933333pt;}
.y152_c01316{bottom:381.693333pt;}
.y15b_c01316{bottom:382.466667pt;}
.y159_c01316{bottom:383.226667pt;}
.y14d_c01316{bottom:394.746667pt;}
.y150_c01316{bottom:395.520000pt;}
.y14c_c01316{bottom:396.293333pt;}
.y14f_c01316{bottom:397.053333pt;}
.y14b_c01316{bottom:398.586667pt;}
.y147_c01316{bottom:399.360000pt;}
.y14a_c01316{bottom:400.893333pt;}
.y14e_c01316{bottom:401.666667pt;}
.y151_c01316{bottom:403.200000pt;}
.y145_c01316{bottom:403.973333pt;}
.y144_c01316{bottom:404.733333pt;}
.y143_c01316{bottom:405.506667pt;}
.y141_c01316{bottom:406.266667pt;}
.y146_c01316{bottom:407.040000pt;}
.y148_c01316{bottom:407.813333pt;}
.y149_c01316{bottom:408.573333pt;}
.y140_c01316{bottom:409.346667pt;}
.y142_c01316{bottom:410.106667pt;}
.y13d_c01316{bottom:413.186667pt;}
.y13f_c01316{bottom:413.946667pt;}
.y13c_c01316{bottom:417.026667pt;}
.y13e_c01316{bottom:417.786667pt;}
.y137_c01316{bottom:430.853333pt;}
.y13b_c01316{bottom:431.613333pt;}
.y136_c01316{bottom:432.386667pt;}
.y139_c01316{bottom:433.146667pt;}
.y13a_c01316{bottom:433.920000pt;}
.y134_c01316{bottom:434.693333pt;}
.y138_c01316{bottom:435.453333pt;}
.y135_c01316{bottom:436.226667pt;}
.y133_c01316{bottom:436.986667pt;}
.y131_c01316{bottom:438.533333pt;}
.y132_c01316{bottom:439.293333pt;}
.y12d_c01316{bottom:449.280000pt;}
.y12b_c01316{bottom:450.053333pt;}
.y12a_c01316{bottom:450.813333pt;}
.y12c_c01316{bottom:453.120000pt;}
.y12f_c01316{bottom:453.893333pt;}
.y130_c01316{bottom:454.653333pt;}
.y12e_c01316{bottom:460.800000pt;}
.y122_c01316{bottom:466.173333pt;}
.y125_c01316{bottom:468.480000pt;}
.y127_c01316{bottom:469.253333pt;}
.y123_c01316{bottom:470.786667pt;}
.y126_c01316{bottom:471.546667pt;}
.y124_c01316{bottom:472.320000pt;}
.y128_c01316{bottom:473.093333pt;}
.y129_c01316{bottom:476.160000pt;}
.y11c_c01316{bottom:484.613333pt;}
.y121_c01316{bottom:485.373333pt;}
.y11e_c01316{bottom:486.906667pt;}
.y11b_c01316{bottom:487.680000pt;}
.y120_c01316{bottom:488.453333pt;}
.y11a_c01316{bottom:489.213333pt;}
.y11d_c01316{bottom:489.986667pt;}
.y11f_c01316{bottom:490.746667pt;}
.y113_c01316{bottom:503.040000pt;}
.y114_c01316{bottom:505.346667pt;}
.y116_c01316{bottom:506.106667pt;}
.y119_c01316{bottom:506.880000pt;}
.y112_c01316{bottom:507.653333pt;}
.y111_c01316{bottom:508.413333pt;}
.y118_c01316{bottom:509.186667pt;}
.y115_c01316{bottom:512.253333pt;}
.y117_c01316{bottom:515.333333pt;}
.y10b_c01316{bottom:520.706667pt;}
.y10f_c01316{bottom:523.013333pt;}
.y110_c01316{bottom:523.773333pt;}
.y109_c01316{bottom:524.546667pt;}
.y10d_c01316{bottom:525.306667pt;}
.y10a_c01316{bottom:526.080000pt;}
.y10c_c01316{bottom:526.853333pt;}
.y10e_c01316{bottom:527.613333pt;}
.y103_c01316{bottom:539.906667pt;}
.y106_c01316{bottom:540.666667pt;}
.y104_c01316{bottom:541.440000pt;}
.y102_c01316{bottom:544.506667pt;}
.y107_c01316{bottom:545.280000pt;}
.y105_c01316{bottom:547.586667pt;}
.y108_c01316{bottom:549.120000pt;}
.yfc_c01316{bottom:556.026667pt;}
.yfd_c01316{bottom:557.573333pt;}
.yfb_c01316{bottom:558.333333pt;}
.yff_c01316{bottom:559.106667pt;}
.yfe_c01316{bottom:559.866667pt;}
.y100_c01316{bottom:562.173333pt;}
.y101_c01316{bottom:562.946667pt;}
.yf8_c01316{bottom:575.226667pt;}
.yfa_c01316{bottom:577.533333pt;}
.yf9_c01316{bottom:579.066667pt;}
.yf7_c01316{bottom:580.613333pt;}
.yf4_c01316{bottom:588.293333pt;}
.yf0_c01316{bottom:590.586667pt;}
.yf3_c01316{bottom:591.360000pt;}
.yf1_c01316{bottom:592.893333pt;}
.yf2_c01316{bottom:593.666667pt;}
.yf6_c01316{bottom:597.506667pt;}
.yf5_c01316{bottom:599.040000pt;}
.ye9_c01316{bottom:609.786667pt;}
.ye7_c01316{bottom:610.560000pt;}
.yee_c01316{bottom:612.093333pt;}
.yec_c01316{bottom:612.866667pt;}
.yed_c01316{bottom:613.626667pt;}
.ye8_c01316{bottom:614.400000pt;}
.yeb_c01316{bottom:615.173333pt;}
.yef_c01316{bottom:615.933333pt;}
.yea_c01316{bottom:616.706667pt;}
.ye0_c01316{bottom:628.226667pt;}
.ye5_c01316{bottom:629.760000pt;}
.ye6_c01316{bottom:631.293333pt;}
.ye3_c01316{bottom:632.066667pt;}
.ye1_c01316{bottom:632.826667pt;}
.ye2_c01316{bottom:633.600000pt;}
.ye4_c01316{bottom:634.373333pt;}
.ydc_c01316{bottom:645.120000pt;}
.ydd_c01316{bottom:646.653333pt;}
.yde_c01316{bottom:648.960000pt;}
.yda_c01316{bottom:650.493333pt;}
.ydb_c01316{bottom:651.266667pt;}
.ydf_c01316{bottom:652.026667pt;}
.yd2_c01316{bottom:663.546667pt;}
.yd4_c01316{bottom:665.093333pt;}
.yd3_c01316{bottom:665.853333pt;}
.yd5_c01316{bottom:667.386667pt;}
.yd1_c01316{bottom:668.933333pt;}
.yd6_c01316{bottom:669.693333pt;}
.yd7_c01316{bottom:672.000000pt;}
.yd0_c01316{bottom:672.773333pt;}
.yd8_c01316{bottom:678.906667pt;}
.yd9_c01316{bottom:681.213333pt;}
.yc9_c01316{bottom:681.986667pt;}
.yce_c01316{bottom:682.746667pt;}
.ycb_c01316{bottom:683.520000pt;}
.ycd_c01316{bottom:684.293333pt;}
.ycc_c01316{bottom:685.053333pt;}
.yca_c01316{bottom:687.360000pt;}
.ycf_c01316{bottom:688.133333pt;}
.yc3_c01316{bottom:700.413333pt;}
.yc4_c01316{bottom:701.186667pt;}
.yc8_c01316{bottom:701.946667pt;}
.yc5_c01316{bottom:702.720000pt;}
.yc6_c01316{bottom:705.786667pt;}
.yc7_c01316{bottom:706.560000pt;}
.ybe_c01316{bottom:717.306667pt;}
.ybd_c01316{bottom:718.853333pt;}
.ybb_c01316{bottom:719.613333pt;}
.ybf_c01316{bottom:721.146667pt;}
.yc0_c01316{bottom:721.920000pt;}
.ybc_c01316{bottom:723.453333pt;}
.yc1_c01316{bottom:724.226667pt;}
.yc2_c01316{bottom:725.760000pt;}
.yba_c01316{bottom:732.666667pt;}
.yb3_c01316{bottom:736.506667pt;}
.yb7_c01316{bottom:737.280000pt;}
.yb9_c01316{bottom:738.053333pt;}
.yb8_c01316{bottom:738.813333pt;}
.yb5_c01316{bottom:739.586667pt;}
.yb2_c01316{bottom:740.346667pt;}
.yb4_c01316{bottom:741.120000pt;}
.yb6_c01316{bottom:741.893333pt;}
.yaa_c01316{bottom:753.413333pt;}
.yad_c01316{bottom:754.173333pt;}
.yac_c01316{bottom:754.946667pt;}
.yb1_c01316{bottom:755.706667pt;}
.yae_c01316{bottom:756.480000pt;}
.yab_c01316{bottom:758.013333pt;}
.yb0_c01316{bottom:759.546667pt;}
.yaf_c01316{bottom:760.320000pt;}
.ya5_c01316{bottom:771.066667pt;}
.ya4_c01316{bottom:773.373333pt;}
.ya8_c01316{bottom:774.146667pt;}
.ya9_c01316{bottom:774.906667pt;}
.ya6_c01316{bottom:777.213333pt;}
.ya7_c01316{bottom:777.986667pt;}
.y9f_c01316{bottom:789.506667pt;}
.ya0_c01316{bottom:791.040000pt;}
.y9d_c01316{bottom:791.813333pt;}
.ya2_c01316{bottom:792.573333pt;}
.ya1_c01316{bottom:793.346667pt;}
.y97_c01316{bottom:794.106667pt;}
.ya3_c01316{bottom:795.653333pt;}
.y98_c01316{bottom:798.720000pt;}
.y99_c01316{bottom:799.493333pt;}
.y9b_c01316{bottom:801.026667pt;}
.y9a_c01316{bottom:802.560000pt;}
.y9c_c01316{bottom:803.333333pt;}
.y9e_c01316{bottom:804.866667pt;}
.y91_c01316{bottom:806.400000pt;}
.y92_c01316{bottom:808.706667pt;}
.y90_c01316{bottom:810.240000pt;}
.y94_c01316{bottom:811.773333pt;}
.y93_c01316{bottom:812.546667pt;}
.y95_c01316{bottom:813.306667pt;}
.y96_c01316{bottom:815.613333pt;}
.y8d_c01316{bottom:826.373333pt;}
.y8a_c01316{bottom:827.133333pt;}
.y8b_c01316{bottom:830.213333pt;}
.y8e_c01316{bottom:830.973333pt;}
.y8f_c01316{bottom:831.746667pt;}
.y8c_c01316{bottom:832.506667pt;}
.y87_c01316{bottom:842.493333pt;}
.y85_c01316{bottom:844.026667pt;}
.y86_c01316{bottom:844.800000pt;}
.y89_c01316{bottom:846.333333pt;}
.y82_c01316{bottom:847.106667pt;}
.y79_c01316{bottom:847.866667pt;}
.y88_c01316{bottom:849.413333pt;}
.y80_c01316{bottom:850.173333pt;}
.y7b_c01316{bottom:850.946667pt;}
.y7c_c01316{bottom:851.706667pt;}
.y7d_c01316{bottom:852.480000pt;}
.y7e_c01316{bottom:854.013333pt;}
.y81_c01316{bottom:854.786667pt;}
.y84_c01316{bottom:855.546667pt;}
.y7f_c01316{bottom:857.093333pt;}
.y7a_c01316{bottom:857.853333pt;}
.y83_c01316{bottom:859.386667pt;}
.y71_c01316{bottom:860.933333pt;}
.y72_c01316{bottom:862.466667pt;}
.y77_c01316{bottom:863.226667pt;}
.y75_c01316{bottom:865.533333pt;}
.y74_c01316{bottom:866.306667pt;}
.y73_c01316{bottom:867.066667pt;}
.y76_c01316{bottom:867.840000pt;}
.y78_c01316{bottom:873.986667pt;}
.y6c_c01316{bottom:878.586667pt;}
.y6b_c01316{bottom:879.360000pt;}
.y6e_c01316{bottom:880.893333pt;}
.y70_c01316{bottom:883.200000pt;}
.y6d_c01316{bottom:883.973333pt;}
.y6f_c01316{bottom:885.506667pt;}
.y66_c01316{bottom:897.786667pt;}
.y6a_c01316{bottom:899.333333pt;}
.y65_c01316{bottom:900.093333pt;}
.y64_c01316{bottom:900.866667pt;}
.y62_c01316{bottom:901.626667pt;}
.y63_c01316{bottom:902.400000pt;}
.y68_c01316{bottom:903.173333pt;}
.y69_c01316{bottom:903.933333pt;}
.y67_c01316{bottom:910.853333pt;}
.y61_c01316{bottom:914.693333pt;}
.y5b_c01316{bottom:915.453333pt;}
.y5f_c01316{bottom:916.226667pt;}
.y60_c01316{bottom:916.986667pt;}
.y5d_c01316{bottom:917.760000pt;}
.y5c_c01316{bottom:918.533333pt;}
.y5a_c01316{bottom:920.066667pt;}
.y5e_c01316{bottom:921.600000pt;}
.y55_c01316{bottom:933.893333pt;}
.y58_c01316{bottom:935.426667pt;}
.y57_c01316{bottom:936.186667pt;}
.y56_c01316{bottom:937.733333pt;}
.y54_c01316{bottom:938.493333pt;}
.y59_c01316{bottom:947.706667pt;}
.y4c_c01316{bottom:951.546667pt;}
.y52_c01316{bottom:952.320000pt;}
.y4d_c01316{bottom:953.093333pt;}
.y50_c01316{bottom:954.626667pt;}
.y4f_c01316{bottom:955.386667pt;}
.y4e_c01316{bottom:956.160000pt;}
.y53_c01316{bottom:958.466667pt;}
.y51_c01316{bottom:969.986667pt;}
.y4a_c01316{bottom:970.746667pt;}
.y4b_c01316{bottom:971.520000pt;}
.y49_c01316{bottom:973.053333pt;}
.y47_c01316{bottom:974.586667pt;}
.y1b6_c01316{bottom:976.133333pt;}
.y1b7_c01316{bottom:977.666667pt;}
.y48_c01316{bottom:986.106667pt;}
.y42_c01316{bottom:987.653333pt;}
.y41_c01316{bottom:989.186667pt;}
.y43_c01316{bottom:992.253333pt;}
.y45_c01316{bottom:993.026667pt;}
.y44_c01316{bottom:993.786667pt;}
.y46_c01316{bottom:998.400000pt;}
.y3d_c01316{bottom:1005.306667pt;}
.y3b_c01316{bottom:1006.080000pt;}
.y3f_c01316{bottom:1006.853333pt;}
.y3a_c01316{bottom:1008.386667pt;}
.y36_c01316{bottom:1009.146667pt;}
.y3c_c01316{bottom:1010.693333pt;}
.y3e_c01316{bottom:1011.453333pt;}
.y40_c01316{bottom:1013.760000pt;}
.y32_c01316{bottom:1022.973333pt;}
.y34_c01316{bottom:1023.746667pt;}
.y38_c01316{bottom:1026.053333pt;}
.y33_c01316{bottom:1027.586667pt;}
.y35_c01316{bottom:1028.346667pt;}
.y37_c01316{bottom:1029.120000pt;}
.y39_c01316{bottom:1031.426667pt;}
.y2d_c01316{bottom:1040.640000pt;}
.y30_c01316{bottom:1042.946667pt;}
.y2e_c01316{bottom:1045.253333pt;}
.y2f_c01316{bottom:1046.013333pt;}
.y31_c01316{bottom:1046.786667pt;}
.y29_c01316{bottom:1058.306667pt;}
.y2c_c01316{bottom:1061.373333pt;}
.y1b9_c01316{bottom:1062.146667pt;}
.y2b_c01316{bottom:1062.906667pt;}
.y2a_c01316{bottom:1063.680000pt;}
.y26_c01316{bottom:1076.733333pt;}
.y25_c01316{bottom:1077.506667pt;}
.y27_c01316{bottom:1081.346667pt;}
.y28_c01316{bottom:1082.106667pt;}
.y22_c01316{bottom:1094.400000pt;}
.y21_c01316{bottom:1095.173333pt;}
.y20_c01316{bottom:1095.933333pt;}
.y23_c01316{bottom:1096.706667pt;}
.y24_c01316{bottom:1110.533333pt;}
.y1c_c01316{bottom:1112.826667pt;}
.y1d_c01316{bottom:1114.373333pt;}
.y1a_c01316{bottom:1117.440000pt;}
.y1b_c01316{bottom:1118.213333pt;}
.y1e_c01316{bottom:1120.506667pt;}
.y1f_c01316{bottom:1121.280000pt;}
.y14_c01316{bottom:1126.653333pt;}
.y12_c01316{bottom:1127.426667pt;}
.y11_c01316{bottom:1128.186667pt;}
.y16_c01316{bottom:1128.960000pt;}
.y15_c01316{bottom:1130.493333pt;}
.y18_c01316{bottom:1132.026667pt;}
.y19_c01316{bottom:1132.800000pt;}
.y10_c01316{bottom:1135.106667pt;}
.y13_c01316{bottom:1135.866667pt;}
.y17_c01316{bottom:1136.640000pt;}
.yb_c01316{bottom:1149.693333pt;}
.yd_c01316{bottom:1150.466667pt;}
.ye_c01316{bottom:1151.226667pt;}
.yc_c01316{bottom:1152.773333pt;}
.yf_c01316{bottom:1158.906667pt;}
.y8_c01316{bottom:1167.360000pt;}
.y5_c01316{bottom:1168.133333pt;}
.ya_c01316{bottom:1170.426667pt;}
.y6_c01316{bottom:1171.200000pt;}
.y7_c01316{bottom:1171.973333pt;}
.y9_c01316{bottom:1173.506667pt;}
.y4_c01316{bottom:1188.866667pt;}
.y1_c01316{bottom:1211.133333pt;}
.y2_c01316{bottom:1211.906667pt;}
.y3_c01316{bottom:1212.666667pt;}
.y1b8_c01316{bottom:1233.413333pt;}
.h3_c01316{height:2.764500pt;}
.h2_c01316{height:4.799479pt;}
.h1a_c01316{height:5.519401pt;}
.h12_c01316{height:8.303099pt;}
.h23_c01316{height:8.612734pt;}
.h20_c01316{height:11.038802pt;}
.h4_c01316{height:13.822500pt;}
.h7_c01316{height:16.606198pt;}
.h22_c01316{height:17.172135pt;}
.h1d_c01316{height:19.341901pt;}
.h13_c01316{height:22.125599pt;}
.he_c01316{height:24.861302pt;}
.h8_c01316{height:27.645000pt;}
.h1f_c01316{height:30.428698pt;}
.h21_c01316{height:33.164401pt;}
.h14_c01316{height:35.948099pt;}
.hc_c01316{height:38.683802pt;}
.h10_c01316{height:41.467500pt;}
.h15_c01316{height:44.251198pt;}
.h1c_c01316{height:46.986901pt;}
.h9_c01316{height:49.770599pt;}
.h24_c01316{height:50.026901pt;}
.h11_c01316{height:52.506302pt;}
.h1b_c01316{height:55.290000pt;}
.ha_c01316{height:58.073698pt;}
.hb_c01316{height:60.809401pt;}
.hf_c01316{height:63.593099pt;}
.h19_c01316{height:66.328802pt;}
.h17_c01316{height:69.112500pt;}
.h18_c01316{height:71.896198pt;}
.h5_c01316{height:74.631901pt;}
.hd_c01316{height:77.415599pt;}
.h6_c01316{height:80.151302pt;}
.h16_c01316{height:82.935000pt;}
.h25_c01316{height:85.718698pt;}
.h1e_c01316{height:121.618802pt;}
.h1_c01316{height:1345.333333pt;}
.h0_c01316{height:1345.533333pt;}
.w1_c01316{width:956.666667pt;}
.w0_c01316{width:956.933333pt;}
.x0_c01316{left:0.000000pt;}
.xdd_c01316{left:36.093333pt;}
.x108_c01316{left:121.346667pt;}
.xde_c01316{left:125.186667pt;}
.x109_c01316{left:129.026667pt;}
.xdf_c01316{left:142.853333pt;}
.x105_c01316{left:151.293333pt;}
.x106_c01316{left:158.973333pt;}
.xdb_c01316{left:162.053333pt;}
.xee_c01316{left:180.480000pt;}
.x6_c01316{left:187.386667pt;}
.x6a_c01316{left:188.933333pt;}
.x8_c01316{left:190.466667pt;}
.xf3_c01316{left:192.000000pt;}
.x102_c01316{left:194.306667pt;}
.x49_c01316{left:195.840000pt;}
.xef_c01316{left:197.373333pt;}
.x18_c01316{left:198.906667pt;}
.x9_c01316{left:200.453333pt;}
.x33_c01316{left:201.986667pt;}
.xa3_c01316{left:203.520000pt;}
.xe0_c01316{left:209.666667pt;}
.xad_c01316{left:211.973333pt;}
.xf4_c01316{left:213.506667pt;}
.xf7_c01316{left:215.813333pt;}
.x8d_c01316{left:217.346667pt;}
.xa_c01316{left:218.880000pt;}
.x5c_c01316{left:221.946667pt;}
.x6b_c01316{left:226.560000pt;}
.x19_c01316{left:228.866667pt;}
.x22_c01316{left:230.400000pt;}
.x34_c01316{left:232.706667pt;}
.x2d_c01316{left:236.546667pt;}
.xca_c01316{left:238.853333pt;}
.xb0_c01316{left:240.386667pt;}
.xf0_c01316{left:241.920000pt;}
.xa4_c01316{left:244.226667pt;}
.xd0_c01316{left:246.533333pt;}
.xe8_c01316{left:250.373333pt;}
.x84_c01316{left:253.440000pt;}
.xf5_c01316{left:254.973333pt;}
.xbd_c01316{left:257.280000pt;}
.x52_c01316{left:258.813333pt;}
.x4a_c01316{left:260.346667pt;}
.x23_c01316{left:262.653333pt;}
.x6c_c01316{left:264.186667pt;}
.x32_c01316{left:265.733333pt;}
.xfd_c01316{left:267.266667pt;}
.x29_c01316{left:269.573333pt;}
.x5d_c01316{left:271.106667pt;}
.xd6_c01316{left:273.413333pt;}
.x75_c01316{left:274.946667pt;}
.x24_c01316{left:277.253333pt;}
.x35_c01316{left:280.320000pt;}
.x7e_c01316{left:281.853333pt;}
.x2e_c01316{left:284.160000pt;}
.x45_c01316{left:285.693333pt;}
.x1a_c01316{left:288.000000pt;}
.x53_c01316{left:289.533333pt;}
.xf8_c01316{left:291.066667pt;}
.xf6_c01316{left:292.613333pt;}
.x3a_c01316{left:294.146667pt;}
.x107_c01316{left:295.680000pt;}
.xbb_c01316{left:297.213333pt;}
.x57_c01316{left:298.746667pt;}
.x7_c01316{left:300.293333pt;}
.x72_c01316{left:304.133333pt;}
.x76_c01316{left:307.200000pt;}
.xc0_c01316{left:308.733333pt;}
.x94_c01316{left:311.040000pt;}
.x36_c01316{left:314.880000pt;}
.x3b_c01316{left:316.413333pt;}
.xb6_c01316{left:321.786667pt;}
.x6d_c01316{left:324.093333pt;}
.x1_c01316{left:327.173333pt;}
.x90_c01316{left:329.466667pt;}
.x25_c01316{left:332.546667pt;}
.x5e_c01316{left:334.853333pt;}
.x2f_c01316{left:336.386667pt;}
.xae_c01316{left:337.920000pt;}
.xc7_c01316{left:339.453333pt;}
.xeb_c01316{left:341.760000pt;}
.x77_c01316{left:343.293333pt;}
.x2a_c01316{left:345.600000pt;}
.x95_c01316{left:347.906667pt;}
.xb_c01316{left:349.440000pt;}
.x2_c01316{left:351.746667pt;}
.xd3_c01316{left:353.280000pt;}
.x3c_c01316{left:354.813333pt;}
.x6e_c01316{left:356.346667pt;}
.xd7_c01316{left:358.653333pt;}
.x9c_c01316{left:360.960000pt;}
.x37_c01316{left:365.573333pt;}
.x85_c01316{left:368.640000pt;}
.xec_c01316{left:370.173333pt;}
.x1b_c01316{left:371.706667pt;}
.xe1_c01316{left:373.253333pt;}
.xe3_c01316{left:374.786667pt;}
.xfe_c01316{left:377.093333pt;}
.x62_c01316{left:378.626667pt;}
.x91_c01316{left:380.160000pt;}
.x3d_c01316{left:381.693333pt;}
.x46_c01316{left:383.226667pt;}
.x3_c01316{left:384.773333pt;}
.xfb_c01316{left:387.066667pt;}
.x38_c01316{left:389.373333pt;}
.x86_c01316{left:391.680000pt;}
.x92_c01316{left:393.213333pt;}
.xf9_c01316{left:394.746667pt;}
.x63_c01316{left:396.293333pt;}
.x26_c01316{left:397.826667pt;}
.xdc_c01316{left:399.360725pt;}
.x4b_c01316{left:400.893333pt;}
.x9d_c01316{left:402.426667pt;}
.x96_c01316{left:404.733333pt;}
.x30_c01316{left:406.266667pt;}
.x104_c01316{left:407.813333pt;}
.xd8_c01316{left:410.106667pt;}
.x1c_c01316{left:411.653333pt;}
.xe9_c01316{left:413.186667pt;}
.xf1_c01316{left:417.026667pt;}
.xc_c01316{left:418.560000pt;}
.x58_c01316{left:420.866667pt;}
.x5f_c01316{left:422.400000pt;}
.xcf_c01316{left:423.933333pt;}
.x99_c01316{left:426.240000pt;}
.xa5_c01316{left:430.080000pt;}
.x87_c01316{left:432.386667pt;}
.x7f_c01316{left:434.693333pt;}
.xc1_c01316{left:437.760000pt;}
.xb1_c01316{left:439.293333pt;}
.x39_c01316{left:440.826667pt;}
.x47_c01316{left:442.373333pt;}
.x73_c01316{left:445.440000pt;}
.x4c_c01316{left:446.973333pt;}
.x80_c01316{left:449.280000pt;}
.x2b_c01316{left:450.813333pt;}
.xe2_c01316{left:452.346667pt;}
.x31_c01316{left:454.653333pt;}
.xe4_c01316{left:462.333333pt;}
.xd1_c01316{left:464.640000pt;}
.x78_c01316{left:466.946667pt;}
.xd_c01316{left:472.320000pt;}
.x6f_c01316{left:473.853333pt;}
.x74_c01316{left:475.386667pt;}
.x64_c01316{left:476.933333pt;}
.x103_c01316{left:480.000000pt;}
.xaa_c01316{left:484.613333pt;}
.xe_c01316{left:489.986667pt;}
.x3e_c01316{left:491.520000pt;}
.x79_c01316{left:493.053333pt;}
.x48_c01316{left:494.586667pt;}
.xbc_c01316{left:496.893333pt;}
.x1d_c01316{left:502.266667pt;}
.x65_c01316{left:506.880000pt;}
.x11_c01316{left:508.413333pt;}
.xa6_c01316{left:509.946667pt;}
.x4_c01316{left:513.786667pt;}
.x88_c01316{left:516.093333pt;}
.x4d_c01316{left:518.400000pt;}
.xc2_c01316{left:520.706667pt;}
.xa7_c01316{left:522.240000pt;}
.x7a_c01316{left:524.546667pt;}
.x60_c01316{left:527.613333pt;}
.x7b_c01316{left:529.920000pt;}
.xff_c01316{left:532.986667pt;}
.x1e_c01316{left:534.533333pt;}
.x12_c01316{left:536.066667pt;}
.x3f_c01316{left:538.373333pt;}
.xcc_c01316{left:541.440000pt;}
.x10b_c01316{left:543.746667pt;}
.x70_c01316{left:545.280000pt;}
.x1f_c01316{left:546.813333pt;}
.xb4_c01316{left:550.653333pt;}
.xd9_c01316{left:552.960000pt;}
.x2c_c01316{left:554.493333pt;}
.x27_c01316{left:556.800000pt;}
.xe5_c01316{left:558.333333pt;}
.xc3_c01316{left:562.173333pt;}
.x4e_c01316{left:564.480000pt;}
.x54_c01316{left:566.786667pt;}
.x40_c01316{left:570.626667pt;}
.xb5_c01316{left:572.160000pt;}
.x59_c01316{left:573.693333pt;}
.xa8_c01316{left:577.533333pt;}
.xb7_c01316{left:579.840000pt;}
.x101_c01316{left:581.373333pt;}
.x9e_c01316{left:582.906667pt;}
.xda_c01316{left:585.213333pt;}
.x41_c01316{left:587.520000pt;}
.x89_c01316{left:590.586667pt;}
.x71_c01316{left:595.200000pt;}
.x7c_c01316{left:596.733333pt;}
.x55_c01316{left:599.040000pt;}
.x81_c01316{left:602.106667pt;}
.x97_c01316{left:607.493333pt;}
.x13_c01316{left:610.560000pt;}
.xc8_c01316{left:613.626667pt;}
.x100_c01316{left:615.173333pt;}
.xe6_c01316{left:616.706667pt;}
.x9f_c01316{left:618.240000pt;}
.xb2_c01316{left:621.306667pt;}
.x8e_c01316{left:623.613333pt;}
.x66_c01316{left:625.920000pt;}
.x20_c01316{left:627.453333pt;}
.x14_c01316{left:629.760000pt;}
.x61_c01316{left:631.293333pt;}
.xd4_c01316{left:633.600000pt;}
.x9a_c01316{left:636.666667pt;}
.xb8_c01316{left:638.213333pt;}
.x42_c01316{left:641.280000pt;}
.xcd_c01316{left:642.813333pt;}
.x15_c01316{left:645.120000pt;}
.xd2_c01316{left:647.426667pt;}
.x93_c01316{left:650.493333pt;}
.xfa_c01316{left:652.026667pt;}
.xf_c01316{left:653.573333pt;}
.xce_c01316{left:655.106667pt;}
.xa0_c01316{left:656.640000pt;}
.x8a_c01316{left:659.706667pt;}
.x56_c01316{left:661.253333pt;}
.xab_c01316{left:662.786667pt;}
.x5_c01316{left:665.093333pt;}
.xcb_c01316{left:666.626667pt;}
.xa1_c01316{left:672.773333pt;}
.x8b_c01316{left:674.306667pt;}
.x5a_c01316{left:675.840000pt;}
.xed_c01316{left:677.373333pt;}
.x28_c01316{left:679.680000pt;}
.x67_c01316{left:682.746667pt;}
.xc4_c01316{left:684.293333pt;}
.x4f_c01316{left:686.586667pt;}
.xa9_c01316{left:688.133333pt;}
.x9b_c01316{left:694.266667pt;}
.xc9_c01316{left:696.573333pt;}
.xbe_c01316{left:701.946667pt;}
.x21_c01316{left:705.786667pt;}
.x98_c01316{left:707.333333pt;}
.xc5_c01316{left:709.626667pt;}
.x82_c01316{left:712.706667pt;}
.x68_c01316{left:714.240000pt;}
.xa2_c01316{left:716.546667pt;}
.x43_c01316{left:718.853333pt;}
.x8f_c01316{left:720.386667pt;}
.x69_c01316{left:721.920000pt;}
.x7d_c01316{left:724.226667pt;}
.xac_c01316{left:725.760000pt;}
.xc6_c01316{left:728.066667pt;}
.x50_c01316{left:730.373333pt;}
.xfc_c01316{left:731.906667pt;}
.x16_c01316{left:733.440000pt;}
.xb9_c01316{left:734.973333pt;}
.x83_c01316{left:736.506667pt;}
.xd5_c01316{left:738.813333pt;}
.x5b_c01316{left:741.120000pt;}
.xe7_c01316{left:744.186667pt;}
.xb3_c01316{left:747.266667pt;}
.xea_c01316{left:751.866667pt;}
.x17_c01316{left:754.173333pt;}
.x10_c01316{left:755.706667pt;}
.xaf_c01316{left:757.253333pt;}
.xf2_c01316{left:758.786667pt;}
.xba_c01316{left:760.320000pt;}
.x8c_c01316{left:763.386667pt;}
.x44_c01316{left:764.933333pt;}
.xbf_c01316{left:769.533333pt;}
.x51_c01316{left:778.746667pt;}
.x10c_c01316{left:864.000000pt;}
.x10d_c01316{left:871.680000pt;}
.x10a_c01316{left:928.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_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;}
@font-face{font-family:ff1_c01317;src:url('chunks/assets/font_67210bdfc9b38cecfbaf5360.woff2')format("woff");}.ff1_c01317{font-family:ff1_c01317;line-height:1.109863;font-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_c01317{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01317{transform:matrix(0.078200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078200,0.000000,0.000000,0.250000,0,0);}
.m18d_c01317{transform:matrix(0.080850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080850,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01317{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m183_c01317{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.mc9_c01317{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01317{transform:matrix(0.095750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095750,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01317{transform:matrix(0.096850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096850,0.000000,0.000000,0.250000,0,0);}
.m199_c01317{transform:matrix(0.104525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104525,0.000000,0.000000,0.250000,0,0);}
.mf4_c01317{transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105050,0.000000,0.000000,0.250000,0,0);}
.m144_c01317{transform:matrix(0.107475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107475,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01317{transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109875,0.000000,0.000000,0.250000,0,0);}
.m143_c01317{transform:matrix(0.110500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110500,0.000000,0.000000,0.250000,0,0);}
.mef_c01317{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m18c_c01317{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01317{transform:matrix(0.115575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115575,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01317{transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);}
.m2f_c01317{transform:matrix(0.118575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118575,0.000000,0.000000,0.250000,0,0);}
.m19f_c01317{transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119775,0.000000,0.000000,0.250000,0,0);}
.m54_c01317{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m11c_c01317{transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01317{transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123550,0.000000,0.000000,0.250000,0,0);}
.m50_c01317{transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);}
.m51_c01317{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01317{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m10f_c01317{transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);}
.m168_c01317{transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);}
.m45_c01317{transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126850,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01317{transform:matrix(0.127375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127375,0.000000,0.000000,0.250000,0,0);}
.m8f_c01317{transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);}
.m4f_c01317{transform:matrix(0.128400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128400,0.000000,0.000000,0.250000,0,0);}
.m145_c01317{transform:matrix(0.129100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129100,0.000000,0.000000,0.250000,0,0);}
.m19a_c01317{transform:matrix(0.129325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129325,0.000000,0.000000,0.250000,0,0);}
.m19c_c01317{transform:matrix(0.129700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129700,0.000000,0.000000,0.250000,0,0);}
.m169_c01317{transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);}
.me1_c01317{transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);}
.mb8_c01317{transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);}
.m178_c01317{transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);}
.m15e_c01317{transform:matrix(0.133150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133150,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01317{transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133625,0.000000,0.000000,0.250000,0,0);}
.m177_c01317{transform:matrix(0.133675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133675,0.000000,0.000000,0.250000,0,0);}
.md_c01317{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.m9b_c01317{transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);}
.m148_c01317{transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134125,0.000000,0.000000,0.250000,0,0);}
.m13f_c01317{transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);}
.m105_c01317{transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);}
.m149_c01317{transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);}
.m184_c01317{transform:matrix(0.134725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134725,0.000000,0.000000,0.250000,0,0);}
.m74_c01317{transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);}
.m19e_c01317{transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);}
.m42_c01317{transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);}
.m167_c01317{transform:matrix(0.135400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135400,0.000000,0.000000,0.250000,0,0);}
.m162_c01317{transform:matrix(0.135850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135850,0.000000,0.000000,0.250000,0,0);}
.m179_c01317{transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136225,0.000000,0.000000,0.250000,0,0);}
.m174_c01317{transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);}
.m4_c01317{transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01317{transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);}
.mc5_c01317{transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);}
.m68_c01317{transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139875,0.000000,0.000000,0.250000,0,0);}
.m160_c01317{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);}
.m172_c01317{transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);}
.m18e_c01317{transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143100,0.000000,0.000000,0.250000,0,0);}
.md2_c01317{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.m22_c01317{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m12a_c01317{transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);}
.m14a_c01317{transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);}
.m175_c01317{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);}
.mab_c01317{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.m17c_c01317{transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);}
.m109_c01317{transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);}
.mb4_c01317{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);}
.m1ac_c01317{transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);}
.mb3_c01317{transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);}
.m159_c01317{transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146975,0.000000,0.000000,0.250000,0,0);}
.m53_c01317{transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);}
.m52_c01317{transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);}
.m113_c01317{transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147675,0.000000,0.000000,0.250000,0,0);}
.mf8_c01317{transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147750,0.000000,0.000000,0.250000,0,0);}
.m146_c01317{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);}
.m10c_c01317{transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);}
.m118_c01317{transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);}
.m6b_c01317{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);}
.m14b_c01317{transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149050,0.000000,0.000000,0.250000,0,0);}
.m18b_c01317{transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);}
.m16c_c01317{transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);}
.m176_c01317{transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149400,0.000000,0.000000,0.250000,0,0);}
.m102_c01317{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);}
.m71_c01317{transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);}
.m158_c01317{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.md1_c01317{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m13d_c01317{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01317{transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);}
.mbd_c01317{transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);}
.mf1_c01317{transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);}
.m147_c01317{transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);}
.m92_c01317{transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);}
.m91_c01317{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);}
.m15f_c01317{transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155550,0.000000,0.000000,0.250000,0,0);}
.m5b_c01317{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);}
.m125_c01317{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01317{transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);}
.m47_c01317{transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156950,0.000000,0.000000,0.250000,0,0);}
.m129_c01317{transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157450,0.000000,0.000000,0.250000,0,0);}
.m152_c01317{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m40_c01317{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m28_c01317{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);}
.m15b_c01317{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);}
.m6d_c01317{transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);}
.m154_c01317{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.m2e_c01317{transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159275,0.000000,0.000000,0.250000,0,0);}
.m156_c01317{transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159500,0.000000,0.000000,0.250000,0,0);}
.m188_c01317{transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);}
.m63_c01317{transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);}
.m17e_c01317{transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);}
.m128_c01317{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m18f_c01317{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m163_c01317{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);}
.m16a_c01317{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);}
.m6f_c01317{transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);}
.m3d_c01317{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.m10a_c01317{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.m75_c01317{transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162175,0.000000,0.000000,0.250000,0,0);}
.m12_c01317{transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162300,0.000000,0.000000,0.250000,0,0);}
.m86_c01317{transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162650,0.000000,0.000000,0.250000,0,0);}
.m161_c01317{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m166_c01317{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);}
.m16_c01317{transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164400,0.000000,0.000000,0.250000,0,0);}
.m189_c01317{transform:matrix(0.164675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164675,0.000000,0.000000,0.250000,0,0);}
.maa_c01317{transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);}
.m81_c01317{transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);}
.m80_c01317{transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);}
.m17d_c01317{transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);}
.m190_c01317{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m186_c01317{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m41_c01317{transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);}
.m93_c01317{transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);}
.m164_c01317{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);}
.m1bb_c01317{transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);}
.mbc_c01317{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);}
.m64_c01317{transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);}
.ma7_c01317{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);}
.m78_c01317{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.me0_c01317{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m8e_c01317{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);}
.m1a9_c01317{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.me7_c01317{transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170500,0.000000,0.000000,0.250000,0,0);}
.m185_c01317{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m192_c01317{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m117_c01317{transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171575,0.000000,0.000000,0.250000,0,0);}
.mf3_c01317{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m2_c01317{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.mb9_c01317{transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);}
.m197_c01317{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01317{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m15c_c01317{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.m1be_c01317{transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173500,0.000000,0.000000,0.250000,0,0);}
.m198_c01317{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m12b_c01317{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mce_c01317{transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175200,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01317{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01317{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.m11b_c01317{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m46_c01317{transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);}
.ma4_c01317{transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);}
.m121_c01317{transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177575,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01317{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.m151_c01317{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.m11a_c01317{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);}
.m124_c01317{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);}
.m4e_c01317{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01317{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m119_c01317{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m111_c01317{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.m157_c01317{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.mfe_c01317{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m14c_c01317{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m16b_c01317{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.me2_c01317{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m44_c01317{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m39_c01317{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m173_c01317{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);}
.med_c01317{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);}
.mf5_c01317{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);}
.mbe_c01317{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);}
.m11f_c01317{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.m70_c01317{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m142_c01317{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m69_c01317{transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01317{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m19b_c01317{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m13c_c01317{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m66_c01317{transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186675,0.000000,0.000000,0.250000,0,0);}
.m108_c01317{transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);}
.m135_c01317{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m10d_c01317{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);}
.m122_c01317{transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187200,0.000000,0.000000,0.250000,0,0);}
.m13a_c01317{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m13_c01317{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.mc6_c01317{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);}
.m6a_c01317{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);}
.m94_c01317{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);}
.mb6_c01317{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);}
.m13b_c01317{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.m3_c01317{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.mcc_c01317{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m103_c01317{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m126_c01317{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);}
.m76_c01317{transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194075,0.000000,0.000000,0.250000,0,0);}
.m16e_c01317{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m17f_c01317{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);}
.m4a_c01317{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);}
.m195_c01317{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m127_c01317{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);}
.mec_c01317{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);}
.m120_c01317{transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);}
.m187_c01317{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mc4_c01317{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.m133_c01317{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m3e_c01317{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);}
.m165_c01317{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.m38_c01317{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);}
.m171_c01317{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);}
.m56_c01317{transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);}
.m8d_c01317{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);}
.m194_c01317{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);}
.mde_c01317{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);}
.mfa_c01317{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_c01317{transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);}
.mc3_c01317{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m5_c01317{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m7d_c01317{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);}
.m4d_c01317{transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);}
.m141_c01317{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.ma3_c01317{transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01317{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01317{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.m180_c01317{transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);}
.m89_c01317{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.mff_c01317{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.m77_c01317{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.ma5_c01317{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m14_c01317{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.me8_c01317{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);}
.mdd_c01317{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.md5_c01317{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.meb_c01317{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m7f_c01317{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.mda_c01317{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m3a_c01317{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.me6_c01317{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.ma8_c01317{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m107_c01317{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);}
.m196_c01317{transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);}
.m16d_c01317{transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212575,0.000000,0.000000,0.250000,0,0);}
.me5_c01317{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);}
.m5e_c01317{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m153_c01317{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.mb2_c01317{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.mf7_c01317{transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);}
.mca_c01317{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);}
.m13e_c01317{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.me9_c01317{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.md3_c01317{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.m8_c01317{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.mbb_c01317{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.m1c_c01317{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);}
.mf0_c01317{transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216650,0.000000,0.000000,0.250000,0,0);}
.mac_c01317{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);}
.mb5_c01317{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m139_c01317{transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);}
.m9a_c01317{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.mfb_c01317{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.mf_c01317{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.mf2_c01317{transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220150,0.000000,0.000000,0.250000,0,0);}
.m18a_c01317{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);}
.m87_c01317{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.m137_c01317{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);}
.m5c_c01317{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);}
.m1a7_c01317{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.me3_c01317{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.mb1_c01317{transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);}
.m3b_c01317{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01317{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);}
.mf9_c01317{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);}
.m110_c01317{transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);}
.m104_c01317{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m16f_c01317{transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);}
.m88_c01317{transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229075,0.000000,0.000000,0.250000,0,0);}
.m14d_c01317{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);}
.m100_c01317{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);}
.m9e_c01317{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.m1e_c01317{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);}
.m181_c01317{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);}
.m193_c01317{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);}
.md9_c01317{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);}
.m138_c01317{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);}
.m123_c01317{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);}
.mc1_c01317{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);}
.m9f_c01317{transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);}
.me4_c01317{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);}
.m140_c01317{transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);}
.maf_c01317{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);}
.m58_c01317{transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);}
.m11d_c01317{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);}
.mfd_c01317{transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);}
.mba_c01317{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m7b_c01317{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);}
.mc2_c01317{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);}
.m4c_c01317{transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);}
.m90_c01317{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);}
.m11_c01317{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.m43_c01317{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);}
.m98_c01317{transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237375,0.000000,0.000000,0.250000,0,0);}
.m30_c01317{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);}
.md8_c01317{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);}
.md4_c01317{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m95_c01317{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01317{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);}
.m34_c01317{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.ma6_c01317{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m5d_c01317{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);}
.m15d_c01317{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);}
.m29_c01317{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m72_c01317{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m60_c01317{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.m182_c01317{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);}
.m5a_c01317{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.m57_c01317{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);}
.m2c_c01317{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);}
.mcd_c01317{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);}
.ma2_c01317{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.m106_c01317{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);}
.m1b2_c01317{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);}
.m85_c01317{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);}
.m116_c01317{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m150_c01317{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.mfc_c01317{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);}
.mf6_c01317{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);}
.m96_c01317{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m11e_c01317{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);}
.m65_c01317{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);}
.m136_c01317{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.mb0_c01317{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);}
.me_c01317{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m33_c01317{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);}
.m2d_c01317{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);}
.m9d_c01317{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);}
.m9c_c01317{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_c01317{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01317{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m99_c01317{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7e_c01317{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);}
.m1f_c01317{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01317{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);}
.m7_c01317{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);}
.m59_c01317{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m82_c01317{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);}
.m3f_c01317{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma9_c01317{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1_c01317{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);}
.md7_c01317{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01317{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);}
.m15_c01317{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);}
.m18_c01317{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma1_c01317{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.md6_c01317{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);}
.m32_c01317{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m73_c01317{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17_c01317{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);}
.m8b_c01317{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01317{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m10_c01317{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01317{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m35_c01317{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m83_c01317{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m21_c01317{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb7_c01317{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m36_c01317{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);}
.m1a_c01317{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mea_c01317{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m0_c01317{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m27_c01317{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);}
.md0_c01317{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);}
.m10e_c01317{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mcb_c01317{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m101_c01317{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m12d_c01317{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01317{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c01317{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m8c_c01317{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);}
.m10b_c01317{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m97_c01317{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mee_c01317{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m14f_c01317{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m26_c01317{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m114_c01317{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m55_c01317{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);}
.m6c_c01317{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m19d_c01317{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);}
.mb_c01317{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m20_c01317{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);}
.m1a1_c01317{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m84_c01317{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m62_c01317{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma0_c01317{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m17a_c01317{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mc_c01317{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m8a_c01317{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);}
.m131_c01317{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.mc0_c01317{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m61_c01317{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m14e_c01317{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m115_c01317{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m170_c01317{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m132_c01317{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);}
.mad_c01317{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m112_c01317{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);}
.m134_c01317{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);}
.mc8_c01317{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01317{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m25_c01317{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m19_c01317{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);}
.m12e_c01317{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mcf_c01317{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01317{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01317{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01317{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m12f_c01317{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m49_c01317{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m12c_c01317{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);}
.m155_c01317{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01317{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.mdb_c01317{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);}
.m1bc_c01317{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m17b_c01317{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m130_c01317{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m1af_c01317{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.mdc_c01317{transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01317{transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01317{transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.137500,0.000000,0.000000,0.250000,0,0);}
.m15a_c01317{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m67_c01317{transform:matrix(1.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.207500,0.000000,0.000000,0.250000,0,0);}
.mc7_c01317{transform:matrix(1.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.422500,0.000000,0.000000,0.250000,0,0);}
.m48_c01317{transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);}
.mdf_c01317{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m24_c01317{transform:matrix(1.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.472500,0.000000,0.000000,0.250000,0,0);}
.mae_c01317{transform:matrix(1.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.517500,0.000000,0.000000,0.250000,0,0);}
.ma_c01317{transform:matrix(1.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.687500,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01317{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01317{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m191_c01317{transform:matrix(2.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.177500,0.000000,0.000000,0.250000,0,0);}
.m23_c01317{transform:matrix(2.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.625000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01317{transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.880000,0.000000,0.000000,0.250000,0,0);}
.v2_c01317{vertical-align:-17.280000px;}
.v3_c01317{vertical-align:-3.420000px;}
.v0_c01317{vertical-align:0.000000px;}
.v1_c01317{vertical-align:3.420000px;}
.ls4_c01317{letter-spacing:0.000000px;}
.ls0_c01317{letter-spacing:0.052080px;}
.ls3_c01317{letter-spacing:116.177400px;}
.ls2_c01317{letter-spacing:189.984000px;}
.ls1_c01317{letter-spacing:201.938500px;}
.sc__c01317{text-shadow:none;}
.sc0_c01317{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01317{-webkit-text-stroke:0px transparent;}
.sc0_c01317{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01317{word-spacing:-34.245420px;}
.ws1_c01317{word-spacing:-19.215381px;}
.ws2_c01317{word-spacing:0.000000px;}
._0_c01317{width:2.640180px;}
.fc0_c01317{color:transparent;}
.fs12_c01317{font-size:3.456000px;}
.fs7_c01317{font-size:6.000000px;}
.fs13_c01317{font-size:6.900000px;}
.fs1d_c01317{font-size:10.380000px;}
.fs11_c01317{font-size:13.800000px;}
.fs9_c01317{font-size:17.280000px;}
.fs8_c01317{font-size:20.760000px;}
.fs1_c01317{font-size:24.180000px;}
.fs1b_c01317{font-size:27.660000px;}
.fs19_c01317{font-size:31.080000px;}
.fs10_c01317{font-size:34.560000px;}
.fsd_c01317{font-size:38.040000px;}
.fsa_c01317{font-size:41.460000px;}
.fs15_c01317{font-size:44.940000px;}
.fs0_c01317{font-size:48.360000px;}
.fsc_c01317{font-size:51.840000px;}
.fs5_c01317{font-size:55.320000px;}
.fs3_c01317{font-size:58.740000px;}
.fsf_c01317{font-size:62.220000px;}
.fs6_c01317{font-size:65.640000px;}
.fse_c01317{font-size:69.120000px;}
.fs4_c01317{font-size:72.600000px;}
.fsb_c01317{font-size:76.020000px;}
.fs2_c01317{font-size:79.500000px;}
.fs18_c01317{font-size:82.920000px;}
.fs17_c01317{font-size:86.400000px;}
.fs1f_c01317{font-size:89.880000px;}
.fs1e_c01317{font-size:93.300000px;}
.fs1a_c01317{font-size:96.780000px;}
.fs16_c01317{font-size:100.200000px;}
.fs1c_c01317{font-size:103.680000px;}
.fs20_c01317{font-size:107.160000px;}
.fs21_c01317{font-size:110.580000px;}
.fs14_c01317{font-size:155.520000px;}
.y0_c01317{bottom:0.000000px;}
.y1c2_c01317{bottom:139.110000px;}
.y1c3_c01317{bottom:140.835000px;}
.y1c0_c01317{bottom:144.285000px;}
.y1bf_c01317{bottom:146.010000px;}
.y1c1_c01317{bottom:147.750000px;}
.y1bc_c01317{bottom:152.070000px;}
.y1bb_c01317{bottom:152.925000px;}
.y1bd_c01317{bottom:155.520000px;}
.y1be_c01317{bottom:156.390000px;}
.y1ba_c01317{bottom:158.970000px;}
.y1b9_c01317{bottom:171.930000px;}
.y1ab_c01317{bottom:174.525000px;}
.y1aa_c01317{bottom:175.395000px;}
.y1ad_c01317{bottom:176.250000px;}
.y1b2_c01317{bottom:177.990000px;}
.y1ae_c01317{bottom:178.845000px;}
.y1ac_c01317{bottom:179.715000px;}
.y1b0_c01317{bottom:180.570000px;}
.y1b3_c01317{bottom:182.310000px;}
.y1b8_c01317{bottom:184.035000px;}
.y1b4_c01317{bottom:185.760000px;}
.y1b5_c01317{bottom:186.630000px;}
.y1b6_c01317{bottom:188.355000px;}
.y1b1_c01317{bottom:189.210000px;}
.y1b7_c01317{bottom:190.080000px;}
.y1af_c01317{bottom:190.950000px;}
.y1a8_c01317{bottom:192.675000px;}
.y1a2_c01317{bottom:193.530000px;}
.y1a1_c01317{bottom:194.400000px;}
.y1a5_c01317{bottom:196.125000px;}
.y1a9_c01317{bottom:196.995000px;}
.y1a3_c01317{bottom:197.850000px;}
.y1a7_c01317{bottom:199.590000px;}
.y1a4_c01317{bottom:203.040000px;}
.y1a6_c01317{bottom:209.085000px;}
.y19f_c01317{bottom:220.320000px;}
.y1a0_c01317{bottom:222.045000px;}
.y19e_c01317{bottom:222.915000px;}
.y19c_c01317{bottom:227.235000px;}
.y19b_c01317{bottom:228.960000px;}
.y192_c01317{bottom:231.555000px;}
.y19d_c01317{bottom:233.280000px;}
.y19a_c01317{bottom:235.005000px;}
.y199_c01317{bottom:238.470000px;}
.y194_c01317{bottom:239.325000px;}
.y195_c01317{bottom:240.195000px;}
.y198_c01317{bottom:242.790000px;}
.y193_c01317{bottom:243.645000px;}
.y196_c01317{bottom:244.515000px;}
.y197_c01317{bottom:245.370000px;}
.y18c_c01317{bottom:251.430000px;}
.y190_c01317{bottom:252.285000px;}
.y188_c01317{bottom:253.155000px;}
.y189_c01317{bottom:254.010000px;}
.y18a_c01317{bottom:254.880000px;}
.y18d_c01317{bottom:255.750000px;}
.y191_c01317{bottom:258.330000px;}
.y18f_c01317{bottom:259.200000px;}
.y18b_c01317{bottom:265.245000px;}
.y18e_c01317{bottom:269.565000px;}
.y182_c01317{bottom:272.160000px;}
.y17f_c01317{bottom:273.030000px;}
.y17e_c01317{bottom:273.885000px;}
.y180_c01317{bottom:274.755000px;}
.y186_c01317{bottom:275.610000px;}
.y183_c01317{bottom:276.480000px;}
.y181_c01317{bottom:277.350000px;}
.y184_c01317{bottom:278.205000px;}
.y185_c01317{bottom:284.250000px;}
.y187_c01317{bottom:290.310000px;}
.y17d_c01317{bottom:294.630000px;}
.y178_c01317{bottom:295.485000px;}
.y176_c01317{bottom:296.355000px;}
.y17b_c01317{bottom:297.210000px;}
.y17c_c01317{bottom:298.080000px;}
.y177_c01317{bottom:298.950000px;}
.y179_c01317{bottom:299.805000px;}
.y17a_c01317{bottom:309.315000px;}
.y174_c01317{bottom:319.680000px;}
.y172_c01317{bottom:320.550000px;}
.y170_c01317{bottom:321.405000px;}
.y175_c01317{bottom:322.275000px;}
.y173_c01317{bottom:324.000000px;}
.y171_c01317{bottom:326.595000px;}
.y16d_c01317{bottom:336.960000px;}
.y16b_c01317{bottom:337.830000px;}
.y169_c01317{bottom:338.685000px;}
.y16e_c01317{bottom:339.555000px;}
.y16f_c01317{bottom:342.150000px;}
.y16c_c01317{bottom:345.600000px;}
.y16a_c01317{bottom:346.470000px;}
.y167_c01317{bottom:357.690000px;}
.y166_c01317{bottom:358.560000px;}
.y164_c01317{bottom:360.285000px;}
.y165_c01317{bottom:362.010000px;}
.y168_c01317{bottom:365.475000px;}
.y1c6_c01317{bottom:374.970000px;}
.y161_c01317{bottom:380.160000px;}
.y15e_c01317{bottom:381.030000px;}
.y15a_c01317{bottom:381.885000px;}
.y15c_c01317{bottom:383.610000px;}
.y160_c01317{bottom:384.480000px;}
.y15d_c01317{bottom:385.350000px;}
.y15b_c01317{bottom:387.075000px;}
.y15f_c01317{bottom:387.930000px;}
.y162_c01317{bottom:388.800000px;}
.y163_c01317{bottom:389.670000px;}
.y158_c01317{bottom:394.845000px;}
.y157_c01317{bottom:395.715000px;}
.y159_c01317{bottom:396.570000px;}
.y156_c01317{bottom:416.445000px;}
.y151_c01317{bottom:417.315000px;}
.y150_c01317{bottom:418.170000px;}
.y154_c01317{bottom:419.040000px;}
.y14f_c01317{bottom:420.765000px;}
.y155_c01317{bottom:422.490000px;}
.y14d_c01317{bottom:423.360000px;}
.y152_c01317{bottom:424.230000px;}
.y153_c01317{bottom:425.085000px;}
.y14e_c01317{bottom:428.550000px;}
.y14b_c01317{bottom:434.595000px;}
.y148_c01317{bottom:435.450000px;}
.y144_c01317{bottom:436.320000px;}
.y146_c01317{bottom:438.045000px;}
.y145_c01317{bottom:439.770000px;}
.y149_c01317{bottom:441.510000px;}
.y14c_c01317{bottom:442.365000px;}
.y14a_c01317{bottom:444.090000px;}
.y147_c01317{bottom:457.050000px;}
.y140_c01317{bottom:458.790000px;}
.y141_c01317{bottom:459.645000px;}
.y142_c01317{bottom:464.835000px;}
.y143_c01317{bottom:476.070000px;}
.y13e_c01317{bottom:478.650000px;}
.y13a_c01317{bottom:479.520000px;}
.y13b_c01317{bottom:482.115000px;}
.y13f_c01317{bottom:482.970000px;}
.y13d_c01317{bottom:484.710000px;}
.y13c_c01317{bottom:485.565000px;}
.y138_c01317{bottom:488.160000px;}
.y139_c01317{bottom:489.030000px;}
.y135_c01317{bottom:492.480000px;}
.y136_c01317{bottom:493.350000px;}
.y133_c01317{bottom:494.205000px;}
.y134_c01317{bottom:495.075000px;}
.y131_c01317{bottom:496.800000px;}
.y137_c01317{bottom:497.670000px;}
.y132_c01317{bottom:499.395000px;}
.y12f_c01317{bottom:500.250000px;}
.y12e_c01317{bottom:507.165000px;}
.y130_c01317{bottom:508.890000px;}
.y12a_c01317{bottom:520.125000px;}
.y12c_c01317{bottom:520.995000px;}
.y129_c01317{bottom:521.850000px;}
.y128_c01317{bottom:522.720000px;}
.y12d_c01317{bottom:523.590000px;}
.y12b_c01317{bottom:524.445000px;}
.y127_c01317{bottom:525.315000px;}
.y126_c01317{bottom:539.130000px;}
.y125_c01317{bottom:540.000000px;}
.y122_c01317{bottom:540.870000px;}
.y123_c01317{bottom:541.725000px;}
.y121_c01317{bottom:542.595000px;}
.y124_c01317{bottom:544.320000px;}
.y11c_c01317{bottom:546.045000px;}
.y11b_c01317{bottom:546.915000px;}
.y119_c01317{bottom:547.770000px;}
.y11e_c01317{bottom:551.235000px;}
.y11f_c01317{bottom:552.960000px;}
.y11a_c01317{bottom:554.685000px;}
.y11d_c01317{bottom:555.555000px;}
.y120_c01317{bottom:556.410000px;}
.y118_c01317{bottom:557.280000px;}
.y116_c01317{bottom:559.875000px;}
.y114_c01317{bottom:560.730000px;}
.y112_c01317{bottom:561.600000px;}
.y113_c01317{bottom:562.470000px;}
.y117_c01317{bottom:565.920000px;}
.y115_c01317{bottom:569.370000px;}
.y10e_c01317{bottom:580.605000px;}
.y10f_c01317{bottom:581.475000px;}
.y110_c01317{bottom:583.200000px;}
.y10a_c01317{bottom:584.070000px;}
.y10d_c01317{bottom:586.650000px;}
.y10c_c01317{bottom:588.390000px;}
.y10b_c01317{bottom:589.245000px;}
.y111_c01317{bottom:595.290000px;}
.y109_c01317{bottom:599.610000px;}
.y106_c01317{bottom:601.350000px;}
.y104_c01317{bottom:602.205000px;}
.y108_c01317{bottom:603.075000px;}
.y107_c01317{bottom:603.930000px;}
.y105_c01317{bottom:604.800000px;}
.y103_c01317{bottom:606.525000px;}
.y102_c01317{bottom:622.080000px;}
.yfe_c01317{bottom:622.950000px;}
.yfc_c01317{bottom:623.805000px;}
.yff_c01317{bottom:624.675000px;}
.y101_c01317{bottom:625.530000px;}
.y100_c01317{bottom:626.400000px;}
.yfd_c01317{bottom:627.270000px;}
.yfb_c01317{bottom:635.910000px;}
.yf2_c01317{bottom:636.765000px;}
.yf8_c01317{bottom:637.635000px;}
.yfa_c01317{bottom:639.360000px;}
.yf4_c01317{bottom:642.810000px;}
.yf6_c01317{bottom:644.550000px;}
.yf7_c01317{bottom:646.275000px;}
.yf9_c01317{bottom:647.130000px;}
.yf3_c01317{bottom:648.000000px;}
.yf5_c01317{bottom:648.870000px;}
.yf0_c01317{bottom:660.090000px;}
.yeb_c01317{bottom:661.830000px;}
.yef_c01317{bottom:662.685000px;}
.yea_c01317{bottom:663.555000px;}
.yee_c01317{bottom:666.150000px;}
.yec_c01317{bottom:667.005000px;}
.yed_c01317{bottom:669.600000px;}
.yf1_c01317{bottom:672.195000px;}
.ye8_c01317{bottom:681.690000px;}
.ye6_c01317{bottom:683.430000px;}
.ye7_c01317{bottom:686.880000px;}
.ye9_c01317{bottom:694.650000px;}
.ye5_c01317{bottom:700.710000px;}
.ye2_c01317{bottom:701.565000px;}
.ye0_c01317{bottom:702.435000px;}
.ye1_c01317{bottom:703.290000px;}
.ye3_c01317{bottom:705.885000px;}
.ye4_c01317{bottom:706.755000px;}
.ydf_c01317{bottom:708.480000px;}
.yde_c01317{bottom:721.440000px;}
.ydd_c01317{bottom:722.310000px;}
.yda_c01317{bottom:723.165000px;}
.yd9_c01317{bottom:724.035000px;}
.ydb_c01317{bottom:725.760000px;}
.ydc_c01317{bottom:727.485000px;}
.yd8_c01317{bottom:735.270000px;}
.yd5_c01317{bottom:741.315000px;}
.yd3_c01317{bottom:742.170000px;}
.yd1_c01317{bottom:743.040000px;}
.yd2_c01317{bottom:746.490000px;}
.yd4_c01317{bottom:747.360000px;}
.yd6_c01317{bottom:749.955000px;}
.yd7_c01317{bottom:754.275000px;}
.ycc_c01317{bottom:762.045000px;}
.yc9_c01317{bottom:762.915000px;}
.ycb_c01317{bottom:763.770000px;}
.yd0_c01317{bottom:764.640000px;}
.ycf_c01317{bottom:766.365000px;}
.yce_c01317{bottom:767.235000px;}
.ycd_c01317{bottom:768.090000px;}
.yca_c01317{bottom:768.960000px;}
.yc2_c01317{bottom:782.790000px;}
.ybf_c01317{bottom:783.645000px;}
.yc6_c01317{bottom:784.515000px;}
.yc7_c01317{bottom:785.370000px;}
.yc1_c01317{bottom:786.240000px;}
.yc8_c01317{bottom:787.110000px;}
.yc5_c01317{bottom:787.965000px;}
.yc0_c01317{bottom:788.835000px;}
.yc3_c01317{bottom:789.690000px;}
.yc4_c01317{bottom:793.155000px;}
.ybe_c01317{bottom:800.070000px;}
.yb9_c01317{bottom:801.795000px;}
.yba_c01317{bottom:803.520000px;}
.ybc_c01317{bottom:807.840000px;}
.ybb_c01317{bottom:808.710000px;}
.ybd_c01317{bottom:816.480000px;}
.yb7_c01317{bottom:821.670000px;}
.yb2_c01317{bottom:822.525000px;}
.yb3_c01317{bottom:823.395000px;}
.yb6_c01317{bottom:824.250000px;}
.yaf_c01317{bottom:825.990000px;}
.yb8_c01317{bottom:826.845000px;}
.yb0_c01317{bottom:827.715000px;}
.yb1_c01317{bottom:828.570000px;}
.yb5_c01317{bottom:831.165000px;}
.yb4_c01317{bottom:839.805000px;}
.ya8_c01317{bottom:843.270000px;}
.ya7_c01317{bottom:844.125000px;}
.ya9_c01317{bottom:845.850000px;}
.yaa_c01317{bottom:848.445000px;}
.yab_c01317{bottom:849.315000px;}
.yad_c01317{bottom:855.360000px;}
.y1c5_c01317{bottom:856.230000px;}
.yac_c01317{bottom:857.085000px;}
.ya6_c01317{bottom:863.130000px;}
.yae_c01317{bottom:864.000000px;}
.ya5_c01317{bottom:865.725000px;}
.ya3_c01317{bottom:867.450000px;}
.ya4_c01317{bottom:868.320000px;}
.ya2_c01317{bottom:869.190000px;}
.ya0_c01317{bottom:883.005000px;}
.y9c_c01317{bottom:883.875000px;}
.y9d_c01317{bottom:885.600000px;}
.y9f_c01317{bottom:887.325000px;}
.y9e_c01317{bottom:889.050000px;}
.ya1_c01317{bottom:890.790000px;}
.y9b_c01317{bottom:903.750000px;}
.y98_c01317{bottom:904.605000px;}
.y97_c01317{bottom:905.475000px;}
.y99_c01317{bottom:908.925000px;}
.y9a_c01317{bottom:910.650000px;}
.y94_c01317{bottom:922.755000px;}
.y92_c01317{bottom:923.610000px;}
.y91_c01317{bottom:924.480000px;}
.y95_c01317{bottom:925.350000px;}
.y96_c01317{bottom:926.205000px;}
.y8e_c01317{bottom:927.075000px;}
.y8f_c01317{bottom:927.930000px;}
.y8d_c01317{bottom:929.670000px;}
.y90_c01317{bottom:933.990000px;}
.y93_c01317{bottom:940.035000px;}
.y86_c01317{bottom:942.630000px;}
.y87_c01317{bottom:943.485000px;}
.y89_c01317{bottom:944.355000px;}
.y8a_c01317{bottom:946.080000px;}
.y8b_c01317{bottom:947.805000px;}
.y88_c01317{bottom:949.530000px;}
.y8c_c01317{bottom:950.400000px;}
.y1c4_c01317{bottom:959.040000px;}
.y7f_c01317{bottom:962.490000px;}
.y81_c01317{bottom:964.230000px;}
.y80_c01317{bottom:965.085000px;}
.y84_c01317{bottom:965.955000px;}
.y85_c01317{bottom:966.810000px;}
.y7e_c01317{bottom:968.550000px;}
.y82_c01317{bottom:969.405000px;}
.y83_c01317{bottom:974.595000px;}
.y78_c01317{bottom:983.235000px;}
.y79_c01317{bottom:984.090000px;}
.y7c_c01317{bottom:984.960000px;}
.y7a_c01317{bottom:988.410000px;}
.y7b_c01317{bottom:989.280000px;}
.y7d_c01317{bottom:990.150000px;}
.y71_c01317{bottom:1002.240000px;}
.y74_c01317{bottom:1003.965000px;}
.y77_c01317{bottom:1004.835000px;}
.y76_c01317{bottom:1005.690000px;}
.y72_c01317{bottom:1008.285000px;}
.y73_c01317{bottom:1009.155000px;}
.y75_c01317{bottom:1010.010000px;}
.y6f_c01317{bottom:1023.840000px;}
.y70_c01317{bottom:1024.710000px;}
.y6d_c01317{bottom:1027.290000px;}
.y6b_c01317{bottom:1028.160000px;}
.y6e_c01317{bottom:1029.030000px;}
.y6c_c01317{bottom:1029.885000px;}
.y69_c01317{bottom:1043.715000px;}
.y64_c01317{bottom:1044.570000px;}
.y68_c01317{bottom:1045.440000px;}
.y63_c01317{bottom:1046.310000px;}
.y6a_c01317{bottom:1047.165000px;}
.y67_c01317{bottom:1048.890000px;}
.y66_c01317{bottom:1049.760000px;}
.y65_c01317{bottom:1050.630000px;}
.y62_c01317{bottom:1062.720000px;}
.y5b_c01317{bottom:1063.590000px;}
.y5a_c01317{bottom:1064.445000px;}
.y61_c01317{bottom:1066.170000px;}
.y5f_c01317{bottom:1067.040000px;}
.y5e_c01317{bottom:1067.910000px;}
.y5c_c01317{bottom:1068.765000px;}
.y5d_c01317{bottom:1071.360000px;}
.y60_c01317{bottom:1072.230000px;}
.y54_c01317{bottom:1085.190000px;}
.y53_c01317{bottom:1086.045000px;}
.y57_c01317{bottom:1086.915000px;}
.y59_c01317{bottom:1088.640000px;}
.y56_c01317{bottom:1090.365000px;}
.y58_c01317{bottom:1091.235000px;}
.y55_c01317{bottom:1093.830000px;}
.y4d_c01317{bottom:1104.195000px;}
.y52_c01317{bottom:1105.920000px;}
.y4e_c01317{bottom:1107.645000px;}
.y51_c01317{bottom:1108.515000px;}
.y50_c01317{bottom:1109.370000px;}
.y4f_c01317{bottom:1111.110000px;}
.y49_c01317{bottom:1124.925000px;}
.y4b_c01317{bottom:1125.795000px;}
.y46_c01317{bottom:1127.520000px;}
.y47_c01317{bottom:1129.245000px;}
.y48_c01317{bottom:1130.115000px;}
.y4a_c01317{bottom:1130.970000px;}
.y4c_c01317{bottom:1131.840000px;}
.y44_c01317{bottom:1141.350000px;}
.y43_c01317{bottom:1142.205000px;}
.y40_c01317{bottom:1143.930000px;}
.y3f_c01317{bottom:1144.800000px;}
.y42_c01317{bottom:1145.670000px;}
.y41_c01317{bottom:1146.525000px;}
.y3d_c01317{bottom:1147.395000px;}
.y3e_c01317{bottom:1149.990000px;}
.y45_c01317{bottom:1151.715000px;}
.y35_c01317{bottom:1163.805000px;}
.y36_c01317{bottom:1166.400000px;}
.y37_c01317{bottom:1167.270000px;}
.y39_c01317{bottom:1168.125000px;}
.y3c_c01317{bottom:1168.995000px;}
.y38_c01317{bottom:1171.590000px;}
.y3b_c01317{bottom:1172.445000px;}
.y3a_c01317{bottom:1174.170000px;}
.y34_c01317{bottom:1185.405000px;}
.y2e_c01317{bottom:1186.275000px;}
.y2f_c01317{bottom:1187.130000px;}
.y2d_c01317{bottom:1188.000000px;}
.y31_c01317{bottom:1188.870000px;}
.y32_c01317{bottom:1190.595000px;}
.y30_c01317{bottom:1191.450000px;}
.y33_c01317{bottom:1192.320000px;}
.y2b_c01317{bottom:1206.150000px;}
.y2a_c01317{bottom:1207.005000px;}
.y21_c01317{bottom:1207.875000px;}
.y2c_c01317{bottom:1209.600000px;}
.y29_c01317{bottom:1223.430000px;}
.y25_c01317{bottom:1224.285000px;}
.y20_c01317{bottom:1226.010000px;}
.y24_c01317{bottom:1226.880000px;}
.y26_c01317{bottom:1228.605000px;}
.y1f_c01317{bottom:1229.475000px;}
.y22_c01317{bottom:1231.200000px;}
.y23_c01317{bottom:1232.070000px;}
.y28_c01317{bottom:1232.925000px;}
.y27_c01317{bottom:1233.795000px;}
.y1b_c01317{bottom:1248.480000px;}
.y1c_c01317{bottom:1249.350000px;}
.y1a_c01317{bottom:1251.930000px;}
.y1d_c01317{bottom:1253.670000px;}
.y1e_c01317{bottom:1254.525000px;}
.y15_c01317{bottom:1256.250000px;}
.y17_c01317{bottom:1258.845000px;}
.y18_c01317{bottom:1260.570000px;}
.y19_c01317{bottom:1262.310000px;}
.y16_c01317{bottom:1264.890000px;}
.yf_c01317{bottom:1267.485000px;}
.y10_c01317{bottom:1268.355000px;}
.y11_c01317{bottom:1269.210000px;}
.y12_c01317{bottom:1270.080000px;}
.y13_c01317{bottom:1272.675000px;}
.y14_c01317{bottom:1273.530000px;}
.yc_c01317{bottom:1287.360000px;}
.y9_c01317{bottom:1288.230000px;}
.yb_c01317{bottom:1289.085000px;}
.ya_c01317{bottom:1290.810000px;}
.yd_c01317{bottom:1292.550000px;}
.ye_c01317{bottom:1293.405000px;}
.y8_c01317{bottom:1300.320000px;}
.y4_c01317{bottom:1308.090000px;}
.y6_c01317{bottom:1308.960000px;}
.y3_c01317{bottom:1312.410000px;}
.y1_c01317{bottom:1313.280000px;}
.y5_c01317{bottom:1314.150000px;}
.y2_c01317{bottom:1320.195000px;}
.y7_c01317{bottom:1334.880000px;}
.y1ca_c01317{bottom:1377.210000px;}
.y1c9_c01317{bottom:1381.530000px;}
.y1c7_c01317{bottom:1396.230000px;}
.y1c8_c01317{bottom:1402.275000px;}
.h15_c01317{height:3.110063px;}
.h9_c01317{height:5.399414px;}
.h16_c01317{height:6.209326px;}
.h20_c01317{height:9.340986px;}
.h14_c01317{height:12.418652px;}
.h25_c01317{height:12.820986px;}
.hb_c01317{height:15.550313px;}
.ha_c01317{height:18.681973px;}
.h3_c01317{height:21.759639px;}
.h1e_c01317{height:24.891299px;}
.h1c_c01317{height:27.968965px;}
.h13_c01317{height:31.100625px;}
.hf_c01317{height:34.232285px;}
.hc_c01317{height:37.309951px;}
.h18_c01317{height:40.441611px;}
.h2_c01317{height:43.519277px;}
.he_c01317{height:46.650937px;}
.h7_c01317{height:49.782598px;}
.h5_c01317{height:52.860264px;}
.h11_c01317{height:55.991924px;}
.h8_c01317{height:59.069590px;}
.h10_c01317{height:62.201250px;}
.h6_c01317{height:65.332910px;}
.h12_c01317{height:65.621250px;}
.hd_c01317{height:68.410576px;}
.h4_c01317{height:71.542236px;}
.h1b_c01317{height:74.619902px;}
.h1a_c01317{height:77.751563px;}
.h22_c01317{height:80.883223px;}
.h21_c01317{height:83.960889px;}
.h1d_c01317{height:87.092549px;}
.h19_c01317{height:90.170215px;}
.h1f_c01317{height:93.301875px;}
.h23_c01317{height:96.433535px;}
.h24_c01317{height:99.511201px;}
.h17_c01317{height:139.952812px;}
.h0_c01317{height:1509.405000px;}
.h1_c01317{height:1509.750000px;}
.w0_c01317{width:1079.130000px;}
.w1_c01317{width:1079.250000px;}
.x0_c01317{left:0.000000px;}
.x111_c01317{left:108.870000px;}
.x110_c01317{left:116.640000px;}
.x10e_c01317{left:135.645000px;}
.x2e_c01317{left:181.440000px;}
.x69_c01317{left:183.165000px;}
.x2f_c01317{left:195.270000px;}
.x3b_c01317{left:196.995000px;}
.x10f_c01317{left:203.040000px;}
.x91_c01317{left:211.680000px;}
.x25_c01317{left:217.725000px;}
.xae_c01317{left:220.320000px;}
.x30_c01317{left:222.915000px;}
.xc3_c01317{left:224.640000px;}
.x3f_c01317{left:226.365000px;}
.xb_c01317{left:228.960000px;}
.xca_c01317{left:231.555000px;}
.xf7_c01317{left:233.280000px;}
.x109_c01317{left:235.875000px;}
.xd6_c01317{left:237.600000px;}
.xaf_c01317{left:241.920000px;}
.x6a_c01317{left:247.965000px;}
.x8c_c01317{left:250.560000px;}
.x56_c01317{left:256.605000px;}
.x81_c01317{left:260.925000px;}
.x71_c01317{left:262.650000px;}
.x18_c01317{left:268.710000px;}
.xe9_c01317{left:270.435000px;}
.x26_c01317{left:272.160000px;}
.xf8_c01317{left:274.755000px;}
.x3c_c01317{left:276.480000px;}
.x31_c01317{left:279.075000px;}
.xf2_c01317{left:280.800000px;}
.xa6_c01317{left:282.525000px;}
.x4f_c01317{left:284.250000px;}
.x8d_c01317{left:285.990000px;}
.x5e_c01317{left:287.715000px;}
.xd2_c01317{left:289.440000px;}
.x19_c01317{left:292.035000px;}
.xcc_c01317{left:296.355000px;}
.x7b_c01317{left:298.080000px;}
.x64_c01317{left:299.805000px;}
.xeb_c01317{left:302.400000px;}
.xdd_c01317{left:304.995000px;}
.x72_c01317{left:306.720000px;}
.x32_c01317{left:308.445000px;}
.xcb_c01317{left:311.040000px;}
.x57_c01317{left:312.765000px;}
.xec_c01317{left:317.085000px;}
.x87_c01317{left:320.550000px;}
.x9c_c01317{left:324.000000px;}
.x33_c01317{left:325.725000px;}
.x73_c01317{left:328.320000px;}
.x104_c01317{left:330.915000px;}
.xdf_c01317{left:332.640000px;}
.x105_c01317{left:334.365000px;}
.x92_c01317{left:336.960000px;}
.x10d_c01317{left:338.685000px;}
.x97_c01317{left:340.410000px;}
.x9f_c01317{left:343.005000px;}
.x27_c01317{left:344.730000px;}
.xa7_c01317{left:348.195000px;}
.x82_c01317{left:350.790000px;}
.xa0_c01317{left:352.515000px;}
.xd3_c01317{left:354.240000px;}
.xc_c01317{left:359.430000px;}
.x58_c01317{left:363.750000px;}
.xfc_c01317{left:365.475000px;}
.xd_c01317{left:367.200000px;}
.x40_c01317{left:369.795000px;}
.x7c_c01317{left:372.390000px;}
.x50_c01317{left:374.970000px;}
.xb0_c01317{left:377.565000px;}
.x93_c01317{left:379.290000px;}
.x7d_c01317{left:382.755000px;}
.xf3_c01317{left:384.480000px;}
.xc4_c01317{left:386.205000px;}
.x83_c01317{left:387.930000px;}
.xed_c01317{left:390.525000px;}
.x8e_c01317{left:392.250000px;}
.x88_c01317{left:393.990000px;}
.x5f_c01317{left:396.570000px;}
.x6b_c01317{left:399.165000px;}
.x49_c01317{left:401.760000px;}
.xb8_c01317{left:403.485000px;}
.xa1_c01317{left:406.080000px;}
.x1a_c01317{left:407.805000px;}
.xab_c01317{left:410.400000px;}
.x41_c01317{left:412.125000px;}
.xd7_c01317{left:415.590000px;}
.x74_c01317{left:418.170000px;}
.xce_c01317{left:425.085000px;}
.x28_c01317{left:427.680000px;}
.x94_c01317{left:432.870000px;}
.x101_c01317{left:435.450000px;}
.x65_c01317{left:439.770000px;}
.xb1_c01317{left:441.510000px;}
.x42_c01317{left:443.235000px;}
.x75_c01317{left:445.830000px;}
.xb5_c01317{left:447.555000px;}
.x98_c01317{left:449.280000px;}
.xa2_c01317{left:451.005000px;}
.x60_c01317{left:453.600000px;}
.x8f_c01317{left:457.050000px;}
.x1b_c01317{left:458.790000px;}
.x106_c01317{left:460.515000px;}
.x59_c01317{left:463.110000px;}
.x102_c01317{left:471.750000px;}
.x61_c01317{left:473.475000px;}
.x84_c01317{left:476.925000px;}
.x1c_c01317{left:478.650000px;}
.x43_c01317{left:481.245000px;}
.xb9_c01317{left:485.565000px;}
.x99_c01317{left:487.290000px;}
.x1d_c01317{left:489.885000px;}
.xcf_c01317{left:491.610000px;}
.x9d_c01317{left:493.350000px;}
.x89_c01317{left:495.075000px;}
.x29_c01317{left:501.120000px;}
.x76_c01317{left:503.715000px;}
.x62_c01317{left:505.440000px;}
.xf5_c01317{left:507.165000px;}
.xbb_c01317{left:513.210000px;}
.x100_c01317{left:517.530000px;}
.xfd_c01317{left:520.995000px;}
.x10a_c01317{left:526.170000px;}
.xd9_c01317{left:527.910000px;}
.x63_c01317{left:531.360000px;}
.xda_c01317{left:534.810000px;}
.x1_c01317{left:537.405000px;}
.x9a_c01317{left:540.000000px;}
.xbc_c01317{left:542.595000px;}
.x3d_c01317{left:544.320000px;}
.xee_c01317{left:546.045000px;}
.xe_c01317{left:548.640000px;}
.x2_c01317{left:551.235000px;}
.xf_c01317{left:553.830000px;}
.x1e_c01317{left:556.410000px;}
.xd0_c01317{left:558.150000px;}
.xb2_c01317{left:560.730000px;}
.x51_c01317{left:562.470000px;}
.x103_c01317{left:565.050000px;}
.x2a_c01317{left:569.370000px;}
.xb3_c01317{left:571.110000px;}
.x3_c01317{left:572.835000px;}
.xc0_c01317{left:574.560000px;}
.x4a_c01317{left:576.285000px;}
.x34_c01317{left:578.880000px;}
.xb6_c01317{left:581.475000px;}
.xa3_c01317{left:583.200000px;}
.x6c_c01317{left:585.795000px;}
.x107_c01317{left:587.520000px;}
.x5a_c01317{left:589.245000px;}
.xd4_c01317{left:590.970000px;}
.x10_c01317{left:592.710000px;}
.xb4_c01317{left:596.160000px;}
.x66_c01317{left:597.885000px;}
.x35_c01317{left:599.610000px;}
.x2b_c01317{left:603.075000px;}
.x4_c01317{left:605.670000px;}
.xef_c01317{left:609.990000px;}
.x2c_c01317{left:611.715000px;}
.xc5_c01317{left:613.440000px;}
.x44_c01317{left:616.035000px;}
.xc8_c01317{left:617.760000px;}
.x77_c01317{left:619.485000px;}
.x5b_c01317{left:622.080000px;}
.x52_c01317{left:625.530000px;}
.xe7_c01317{left:628.995000px;}
.x7e_c01317{left:630.720000px;}
.x5_c01317{left:633.315000px;}
.x6d_c01317{left:635.040000px;}
.xea_c01317{left:637.635000px;}
.xfe_c01317{left:639.360000px;}
.x7f_c01317{left:641.085000px;}
.x1f_c01317{left:642.810000px;}
.x85_c01317{left:646.275000px;}
.xc9_c01317{left:648.000000px;}
.x45_c01317{left:649.725000px;}
.x11_c01317{left:651.450000px;}
.x46_c01317{left:653.190000px;}
.x108_c01317{left:655.770000px;}
.x20_c01317{left:660.090000px;}
.x47_c01317{left:664.410000px;}
.xe4_c01317{left:666.150000px;}
.xfa_c01317{left:667.875000px;}
.x12_c01317{left:669.600000px;}
.x86_c01317{left:671.325000px;}
.x78_c01317{left:673.920000px;}
.xff_c01317{left:675.645000px;}
.x36_c01317{left:678.240000px;}
.xe0_c01317{left:680.835000px;}
.x6_c01317{left:682.560000px;}
.x4b_c01317{left:685.155000px;}
.x8a_c01317{left:688.605000px;}
.xe5_c01317{left:691.200000px;}
.xcd_c01317{left:692.925000px;}
.xf0_c01317{left:694.650000px;}
.xf9_c01317{left:698.115000px;}
.x6e_c01317{left:700.710000px;}
.x21_c01317{left:702.435000px;}
.xe1_c01317{left:704.160000px;}
.x37_c01317{left:706.755000px;}
.xf6_c01317{left:708.480000px;}
.x53_c01317{left:710.205000px;}
.x5c_c01317{left:711.930000px;}
.xc6_c01317{left:715.395000px;}
.x13_c01317{left:717.990000px;}
.x10b_c01317{left:721.440000px;}
.x79_c01317{left:724.035000px;}
.xa8_c01317{left:726.630000px;}
.x7_c01317{left:728.355000px;}
.xe6_c01317{left:730.080000px;}
.xba_c01317{left:732.675000px;}
.xd1_c01317{left:736.995000px;}
.xbd_c01317{left:743.040000px;}
.x48_c01317{left:744.765000px;}
.x22_c01317{left:748.230000px;}
.xac_c01317{left:750.810000px;}
.x8_c01317{left:752.550000px;}
.xc1_c01317{left:755.130000px;}
.xfb_c01317{left:756.870000px;}
.x4c_c01317{left:758.595000px;}
.xe8_c01317{left:760.320000px;}
.x14_c01317{left:762.045000px;}
.xc7_c01317{left:764.640000px;}
.x23_c01317{left:767.235000px;}
.xe2_c01317{left:769.830000px;}
.xa4_c01317{left:771.555000px;}
.xa9_c01317{left:775.875000px;}
.x95_c01317{left:778.470000px;}
.xd8_c01317{left:780.195000px;}
.x7a_c01317{left:781.920000px;}
.x15_c01317{left:783.645000px;}
.x3e_c01317{left:787.110000px;}
.x38_c01317{left:788.835000px;}
.x16_c01317{left:791.430000px;}
.xd5_c01317{left:794.010000px;}
.x96_c01317{left:795.750000px;}
.xde_c01317{left:797.475000px;}
.xdb_c01317{left:800.070000px;}
.x6f_c01317{left:801.795000px;}
.x54_c01317{left:803.520000px;}
.xaa_c01317{left:806.115000px;}
.x9_c01317{left:807.840000px;}
.x70_c01317{left:809.565000px;}
.x10c_c01317{left:811.290000px;}
.x4d_c01317{left:813.030000px;}
.x24_c01317{left:814.755000px;}
.x90_c01317{left:817.350000px;}
.x39_c01317{left:819.075000px;}
.x17_c01317{left:820.800000px;}
.xad_c01317{left:822.525000px;}
.x67_c01317{left:825.120000px;}
.xe3_c01317{left:826.845000px;}
.xf1_c01317{left:830.310000px;}
.x5d_c01317{left:833.760000px;}
.x8b_c01317{left:836.355000px;}
.x9e_c01317{left:838.950000px;}
.xf4_c01317{left:844.125000px;}
.x9b_c01317{left:846.720000px;}
.x4e_c01317{left:848.445000px;}
.x80_c01317{left:852.765000px;}
.xa5_c01317{left:855.360000px;}
.xbe_c01317{left:857.955000px;}
.x3a_c01317{left:863.130000px;}
.xa_c01317{left:868.320000px;}
.xbf_c01317{left:873.510000px;}
.xc2_c01317{left:875.235000px;}
.x55_c01317{left:876.960000px;}
.x2d_c01317{left:880.410000px;}
.xdc_c01317{left:882.150000px;}
.x68_c01317{left:889.920000px;}
.xb7_c01317{left:895.965000px;}
@media print{
.v2_c01317{vertical-align:-15.360000pt;}
.v3_c01317{vertical-align:-3.040000pt;}
.v0_c01317{vertical-align:0.000000pt;}
.v1_c01317{vertical-align:3.040000pt;}
.ls4_c01317{letter-spacing:0.000000pt;}
.ls0_c01317{letter-spacing:0.046293pt;}
.ls3_c01317{letter-spacing:103.268800pt;}
.ls2_c01317{letter-spacing:168.874667pt;}
.ls1_c01317{letter-spacing:179.500889pt;}
.ws0_c01317{word-spacing:-30.440373pt;}
.ws1_c01317{word-spacing:-17.080339pt;}
.ws2_c01317{word-spacing:0.000000pt;}
._0_c01317{width:2.346827pt;}
.fs12_c01317{font-size:3.072000pt;}
.fs7_c01317{font-size:5.333333pt;}
.fs13_c01317{font-size:6.133333pt;}
.fs1d_c01317{font-size:9.226667pt;}
.fs11_c01317{font-size:12.266667pt;}
.fs9_c01317{font-size:15.360000pt;}
.fs8_c01317{font-size:18.453333pt;}
.fs1_c01317{font-size:21.493333pt;}
.fs1b_c01317{font-size:24.586667pt;}
.fs19_c01317{font-size:27.626667pt;}
.fs10_c01317{font-size:30.720000pt;}
.fsd_c01317{font-size:33.813333pt;}
.fsa_c01317{font-size:36.853333pt;}
.fs15_c01317{font-size:39.946667pt;}
.fs0_c01317{font-size:42.986667pt;}
.fsc_c01317{font-size:46.080000pt;}
.fs5_c01317{font-size:49.173333pt;}
.fs3_c01317{font-size:52.213333pt;}
.fsf_c01317{font-size:55.306667pt;}
.fs6_c01317{font-size:58.346667pt;}
.fse_c01317{font-size:61.440000pt;}
.fs4_c01317{font-size:64.533333pt;}
.fsb_c01317{font-size:67.573333pt;}
.fs2_c01317{font-size:70.666667pt;}
.fs18_c01317{font-size:73.706667pt;}
.fs17_c01317{font-size:76.800000pt;}
.fs1f_c01317{font-size:79.893333pt;}
.fs1e_c01317{font-size:82.933333pt;}
.fs1a_c01317{font-size:86.026667pt;}
.fs16_c01317{font-size:89.066667pt;}
.fs1c_c01317{font-size:92.160000pt;}
.fs20_c01317{font-size:95.253333pt;}
.fs21_c01317{font-size:98.293333pt;}
.fs14_c01317{font-size:138.240000pt;}
.y0_c01317{bottom:0.000000pt;}
.y1c2_c01317{bottom:123.653333pt;}
.y1c3_c01317{bottom:125.186667pt;}
.y1c0_c01317{bottom:128.253333pt;}
.y1bf_c01317{bottom:129.786667pt;}
.y1c1_c01317{bottom:131.333333pt;}
.y1bc_c01317{bottom:135.173333pt;}
.y1bb_c01317{bottom:135.933333pt;}
.y1bd_c01317{bottom:138.240000pt;}
.y1be_c01317{bottom:139.013333pt;}
.y1ba_c01317{bottom:141.306667pt;}
.y1b9_c01317{bottom:152.826667pt;}
.y1ab_c01317{bottom:155.133333pt;}
.y1aa_c01317{bottom:155.906667pt;}
.y1ad_c01317{bottom:156.666667pt;}
.y1b2_c01317{bottom:158.213333pt;}
.y1ae_c01317{bottom:158.973333pt;}
.y1ac_c01317{bottom:159.746667pt;}
.y1b0_c01317{bottom:160.506667pt;}
.y1b3_c01317{bottom:162.053333pt;}
.y1b8_c01317{bottom:163.586667pt;}
.y1b4_c01317{bottom:165.120000pt;}
.y1b5_c01317{bottom:165.893333pt;}
.y1b6_c01317{bottom:167.426667pt;}
.y1b1_c01317{bottom:168.186667pt;}
.y1b7_c01317{bottom:168.960000pt;}
.y1af_c01317{bottom:169.733333pt;}
.y1a8_c01317{bottom:171.266667pt;}
.y1a2_c01317{bottom:172.026667pt;}
.y1a1_c01317{bottom:172.800000pt;}
.y1a5_c01317{bottom:174.333333pt;}
.y1a9_c01317{bottom:175.106667pt;}
.y1a3_c01317{bottom:175.866667pt;}
.y1a7_c01317{bottom:177.413333pt;}
.y1a4_c01317{bottom:180.480000pt;}
.y1a6_c01317{bottom:185.853333pt;}
.y19f_c01317{bottom:195.840000pt;}
.y1a0_c01317{bottom:197.373333pt;}
.y19e_c01317{bottom:198.146667pt;}
.y19c_c01317{bottom:201.986667pt;}
.y19b_c01317{bottom:203.520000pt;}
.y192_c01317{bottom:205.826667pt;}
.y19d_c01317{bottom:207.360000pt;}
.y19a_c01317{bottom:208.893333pt;}
.y199_c01317{bottom:211.973333pt;}
.y194_c01317{bottom:212.733333pt;}
.y195_c01317{bottom:213.506667pt;}
.y198_c01317{bottom:215.813333pt;}
.y193_c01317{bottom:216.573333pt;}
.y196_c01317{bottom:217.346667pt;}
.y197_c01317{bottom:218.106667pt;}
.y18c_c01317{bottom:223.493333pt;}
.y190_c01317{bottom:224.253333pt;}
.y188_c01317{bottom:225.026667pt;}
.y189_c01317{bottom:225.786667pt;}
.y18a_c01317{bottom:226.560000pt;}
.y18d_c01317{bottom:227.333333pt;}
.y191_c01317{bottom:229.626667pt;}
.y18f_c01317{bottom:230.400000pt;}
.y18b_c01317{bottom:235.773333pt;}
.y18e_c01317{bottom:239.613333pt;}
.y182_c01317{bottom:241.920000pt;}
.y17f_c01317{bottom:242.693333pt;}
.y17e_c01317{bottom:243.453333pt;}
.y180_c01317{bottom:244.226667pt;}
.y186_c01317{bottom:244.986667pt;}
.y183_c01317{bottom:245.760000pt;}
.y181_c01317{bottom:246.533333pt;}
.y184_c01317{bottom:247.293333pt;}
.y185_c01317{bottom:252.666667pt;}
.y187_c01317{bottom:258.053333pt;}
.y17d_c01317{bottom:261.893333pt;}
.y178_c01317{bottom:262.653333pt;}
.y176_c01317{bottom:263.426667pt;}
.y17b_c01317{bottom:264.186667pt;}
.y17c_c01317{bottom:264.960000pt;}
.y177_c01317{bottom:265.733333pt;}
.y179_c01317{bottom:266.493333pt;}
.y17a_c01317{bottom:274.946667pt;}
.y174_c01317{bottom:284.160000pt;}
.y172_c01317{bottom:284.933333pt;}
.y170_c01317{bottom:285.693333pt;}
.y175_c01317{bottom:286.466667pt;}
.y173_c01317{bottom:288.000000pt;}
.y171_c01317{bottom:290.306667pt;}
.y16d_c01317{bottom:299.520000pt;}
.y16b_c01317{bottom:300.293333pt;}
.y169_c01317{bottom:301.053333pt;}
.y16e_c01317{bottom:301.826667pt;}
.y16f_c01317{bottom:304.133333pt;}
.y16c_c01317{bottom:307.200000pt;}
.y16a_c01317{bottom:307.973333pt;}
.y167_c01317{bottom:317.946667pt;}
.y166_c01317{bottom:318.720000pt;}
.y164_c01317{bottom:320.253333pt;}
.y165_c01317{bottom:321.786667pt;}
.y168_c01317{bottom:324.866667pt;}
.y1c6_c01317{bottom:333.306667pt;}
.y161_c01317{bottom:337.920000pt;}
.y15e_c01317{bottom:338.693333pt;}
.y15a_c01317{bottom:339.453333pt;}
.y15c_c01317{bottom:340.986667pt;}
.y160_c01317{bottom:341.760000pt;}
.y15d_c01317{bottom:342.533333pt;}
.y15b_c01317{bottom:344.066667pt;}
.y15f_c01317{bottom:344.826667pt;}
.y162_c01317{bottom:345.600000pt;}
.y163_c01317{bottom:346.373333pt;}
.y158_c01317{bottom:350.973333pt;}
.y157_c01317{bottom:351.746667pt;}
.y159_c01317{bottom:352.506667pt;}
.y156_c01317{bottom:370.173333pt;}
.y151_c01317{bottom:370.946667pt;}
.y150_c01317{bottom:371.706667pt;}
.y154_c01317{bottom:372.480000pt;}
.y14f_c01317{bottom:374.013333pt;}
.y155_c01317{bottom:375.546667pt;}
.y14d_c01317{bottom:376.320000pt;}
.y152_c01317{bottom:377.093333pt;}
.y153_c01317{bottom:377.853333pt;}
.y14e_c01317{bottom:380.933333pt;}
.y14b_c01317{bottom:386.306667pt;}
.y148_c01317{bottom:387.066667pt;}
.y144_c01317{bottom:387.840000pt;}
.y146_c01317{bottom:389.373333pt;}
.y145_c01317{bottom:390.906667pt;}
.y149_c01317{bottom:392.453333pt;}
.y14c_c01317{bottom:393.213333pt;}
.y14a_c01317{bottom:394.746667pt;}
.y147_c01317{bottom:406.266667pt;}
.y140_c01317{bottom:407.813333pt;}
.y141_c01317{bottom:408.573333pt;}
.y142_c01317{bottom:413.186667pt;}
.y143_c01317{bottom:423.173333pt;}
.y13e_c01317{bottom:425.466667pt;}
.y13a_c01317{bottom:426.240000pt;}
.y13b_c01317{bottom:428.546667pt;}
.y13f_c01317{bottom:429.306667pt;}
.y13d_c01317{bottom:430.853333pt;}
.y13c_c01317{bottom:431.613333pt;}
.y138_c01317{bottom:433.920000pt;}
.y139_c01317{bottom:434.693333pt;}
.y135_c01317{bottom:437.760000pt;}
.y136_c01317{bottom:438.533333pt;}
.y133_c01317{bottom:439.293333pt;}
.y134_c01317{bottom:440.066667pt;}
.y131_c01317{bottom:441.600000pt;}
.y137_c01317{bottom:442.373333pt;}
.y132_c01317{bottom:443.906667pt;}
.y12f_c01317{bottom:444.666667pt;}
.y12e_c01317{bottom:450.813333pt;}
.y130_c01317{bottom:452.346667pt;}
.y12a_c01317{bottom:462.333333pt;}
.y12c_c01317{bottom:463.106667pt;}
.y129_c01317{bottom:463.866667pt;}
.y128_c01317{bottom:464.640000pt;}
.y12d_c01317{bottom:465.413333pt;}
.y12b_c01317{bottom:466.173333pt;}
.y127_c01317{bottom:466.946667pt;}
.y126_c01317{bottom:479.226667pt;}
.y125_c01317{bottom:480.000000pt;}
.y122_c01317{bottom:480.773333pt;}
.y123_c01317{bottom:481.533333pt;}
.y121_c01317{bottom:482.306667pt;}
.y124_c01317{bottom:483.840000pt;}
.y11c_c01317{bottom:485.373333pt;}
.y11b_c01317{bottom:486.146667pt;}
.y119_c01317{bottom:486.906667pt;}
.y11e_c01317{bottom:489.986667pt;}
.y11f_c01317{bottom:491.520000pt;}
.y11a_c01317{bottom:493.053333pt;}
.y11d_c01317{bottom:493.826667pt;}
.y120_c01317{bottom:494.586667pt;}
.y118_c01317{bottom:495.360000pt;}
.y116_c01317{bottom:497.666667pt;}
.y114_c01317{bottom:498.426667pt;}
.y112_c01317{bottom:499.200000pt;}
.y113_c01317{bottom:499.973333pt;}
.y117_c01317{bottom:503.040000pt;}
.y115_c01317{bottom:506.106667pt;}
.y10e_c01317{bottom:516.093333pt;}
.y10f_c01317{bottom:516.866667pt;}
.y110_c01317{bottom:518.400000pt;}
.y10a_c01317{bottom:519.173333pt;}
.y10d_c01317{bottom:521.466667pt;}
.y10c_c01317{bottom:523.013333pt;}
.y10b_c01317{bottom:523.773333pt;}
.y111_c01317{bottom:529.146667pt;}
.y109_c01317{bottom:532.986667pt;}
.y106_c01317{bottom:534.533333pt;}
.y104_c01317{bottom:535.293333pt;}
.y108_c01317{bottom:536.066667pt;}
.y107_c01317{bottom:536.826667pt;}
.y105_c01317{bottom:537.600000pt;}
.y103_c01317{bottom:539.133333pt;}
.y102_c01317{bottom:552.960000pt;}
.yfe_c01317{bottom:553.733333pt;}
.yfc_c01317{bottom:554.493333pt;}
.yff_c01317{bottom:555.266667pt;}
.y101_c01317{bottom:556.026667pt;}
.y100_c01317{bottom:556.800000pt;}
.yfd_c01317{bottom:557.573333pt;}
.yfb_c01317{bottom:565.253333pt;}
.yf2_c01317{bottom:566.013333pt;}
.yf8_c01317{bottom:566.786667pt;}
.yfa_c01317{bottom:568.320000pt;}
.yf4_c01317{bottom:571.386667pt;}
.yf6_c01317{bottom:572.933333pt;}
.yf7_c01317{bottom:574.466667pt;}
.yf9_c01317{bottom:575.226667pt;}
.yf3_c01317{bottom:576.000000pt;}
.yf5_c01317{bottom:576.773333pt;}
.yf0_c01317{bottom:586.746667pt;}
.yeb_c01317{bottom:588.293333pt;}
.yef_c01317{bottom:589.053333pt;}
.yea_c01317{bottom:589.826667pt;}
.yee_c01317{bottom:592.133333pt;}
.yec_c01317{bottom:592.893333pt;}
.yed_c01317{bottom:595.200000pt;}
.yf1_c01317{bottom:597.506667pt;}
.ye8_c01317{bottom:605.946667pt;}
.ye6_c01317{bottom:607.493333pt;}
.ye7_c01317{bottom:610.560000pt;}
.ye9_c01317{bottom:617.466667pt;}
.ye5_c01317{bottom:622.853333pt;}
.ye2_c01317{bottom:623.613333pt;}
.ye0_c01317{bottom:624.386667pt;}
.ye1_c01317{bottom:625.146667pt;}
.ye3_c01317{bottom:627.453333pt;}
.ye4_c01317{bottom:628.226667pt;}
.ydf_c01317{bottom:629.760000pt;}
.yde_c01317{bottom:641.280000pt;}
.ydd_c01317{bottom:642.053333pt;}
.yda_c01317{bottom:642.813333pt;}
.yd9_c01317{bottom:643.586667pt;}
.ydb_c01317{bottom:645.120000pt;}
.ydc_c01317{bottom:646.653333pt;}
.yd8_c01317{bottom:653.573333pt;}
.yd5_c01317{bottom:658.946667pt;}
.yd3_c01317{bottom:659.706667pt;}
.yd1_c01317{bottom:660.480000pt;}
.yd2_c01317{bottom:663.546667pt;}
.yd4_c01317{bottom:664.320000pt;}
.yd6_c01317{bottom:666.626667pt;}
.yd7_c01317{bottom:670.466667pt;}
.ycc_c01317{bottom:677.373333pt;}
.yc9_c01317{bottom:678.146667pt;}
.ycb_c01317{bottom:678.906667pt;}
.yd0_c01317{bottom:679.680000pt;}
.ycf_c01317{bottom:681.213333pt;}
.yce_c01317{bottom:681.986667pt;}
.ycd_c01317{bottom:682.746667pt;}
.yca_c01317{bottom:683.520000pt;}
.yc2_c01317{bottom:695.813333pt;}
.ybf_c01317{bottom:696.573333pt;}
.yc6_c01317{bottom:697.346667pt;}
.yc7_c01317{bottom:698.106667pt;}
.yc1_c01317{bottom:698.880000pt;}
.yc8_c01317{bottom:699.653333pt;}
.yc5_c01317{bottom:700.413333pt;}
.yc0_c01317{bottom:701.186667pt;}
.yc3_c01317{bottom:701.946667pt;}
.yc4_c01317{bottom:705.026667pt;}
.ybe_c01317{bottom:711.173333pt;}
.yb9_c01317{bottom:712.706667pt;}
.yba_c01317{bottom:714.240000pt;}
.ybc_c01317{bottom:718.080000pt;}
.ybb_c01317{bottom:718.853333pt;}
.ybd_c01317{bottom:725.760000pt;}
.yb7_c01317{bottom:730.373333pt;}
.yb2_c01317{bottom:731.133333pt;}
.yb3_c01317{bottom:731.906667pt;}
.yb6_c01317{bottom:732.666667pt;}
.yaf_c01317{bottom:734.213333pt;}
.yb8_c01317{bottom:734.973333pt;}
.yb0_c01317{bottom:735.746667pt;}
.yb1_c01317{bottom:736.506667pt;}
.yb5_c01317{bottom:738.813333pt;}
.yb4_c01317{bottom:746.493333pt;}
.ya8_c01317{bottom:749.573333pt;}
.ya7_c01317{bottom:750.333333pt;}
.ya9_c01317{bottom:751.866667pt;}
.yaa_c01317{bottom:754.173333pt;}
.yab_c01317{bottom:754.946667pt;}
.yad_c01317{bottom:760.320000pt;}
.y1c5_c01317{bottom:761.093333pt;}
.yac_c01317{bottom:761.853333pt;}
.ya6_c01317{bottom:767.226667pt;}
.yae_c01317{bottom:768.000000pt;}
.ya5_c01317{bottom:769.533333pt;}
.ya3_c01317{bottom:771.066667pt;}
.ya4_c01317{bottom:771.840000pt;}
.ya2_c01317{bottom:772.613333pt;}
.ya0_c01317{bottom:784.893333pt;}
.y9c_c01317{bottom:785.666667pt;}
.y9d_c01317{bottom:787.200000pt;}
.y9f_c01317{bottom:788.733333pt;}
.y9e_c01317{bottom:790.266667pt;}
.ya1_c01317{bottom:791.813333pt;}
.y9b_c01317{bottom:803.333333pt;}
.y98_c01317{bottom:804.093333pt;}
.y97_c01317{bottom:804.866667pt;}
.y99_c01317{bottom:807.933333pt;}
.y9a_c01317{bottom:809.466667pt;}
.y94_c01317{bottom:820.226667pt;}
.y92_c01317{bottom:820.986667pt;}
.y91_c01317{bottom:821.760000pt;}
.y95_c01317{bottom:822.533333pt;}
.y96_c01317{bottom:823.293333pt;}
.y8e_c01317{bottom:824.066667pt;}
.y8f_c01317{bottom:824.826667pt;}
.y8d_c01317{bottom:826.373333pt;}
.y90_c01317{bottom:830.213333pt;}
.y93_c01317{bottom:835.586667pt;}
.y86_c01317{bottom:837.893333pt;}
.y87_c01317{bottom:838.653333pt;}
.y89_c01317{bottom:839.426667pt;}
.y8a_c01317{bottom:840.960000pt;}
.y8b_c01317{bottom:842.493333pt;}
.y88_c01317{bottom:844.026667pt;}
.y8c_c01317{bottom:844.800000pt;}
.y1c4_c01317{bottom:852.480000pt;}
.y7f_c01317{bottom:855.546667pt;}
.y81_c01317{bottom:857.093333pt;}
.y80_c01317{bottom:857.853333pt;}
.y84_c01317{bottom:858.626667pt;}
.y85_c01317{bottom:859.386667pt;}
.y7e_c01317{bottom:860.933333pt;}
.y82_c01317{bottom:861.693333pt;}
.y83_c01317{bottom:866.306667pt;}
.y78_c01317{bottom:873.986667pt;}
.y79_c01317{bottom:874.746667pt;}
.y7c_c01317{bottom:875.520000pt;}
.y7a_c01317{bottom:878.586667pt;}
.y7b_c01317{bottom:879.360000pt;}
.y7d_c01317{bottom:880.133333pt;}
.y71_c01317{bottom:890.880000pt;}
.y74_c01317{bottom:892.413333pt;}
.y77_c01317{bottom:893.186667pt;}
.y76_c01317{bottom:893.946667pt;}
.y72_c01317{bottom:896.253333pt;}
.y73_c01317{bottom:897.026667pt;}
.y75_c01317{bottom:897.786667pt;}
.y6f_c01317{bottom:910.080000pt;}
.y70_c01317{bottom:910.853333pt;}
.y6d_c01317{bottom:913.146667pt;}
.y6b_c01317{bottom:913.920000pt;}
.y6e_c01317{bottom:914.693333pt;}
.y6c_c01317{bottom:915.453333pt;}
.y69_c01317{bottom:927.746667pt;}
.y64_c01317{bottom:928.506667pt;}
.y68_c01317{bottom:929.280000pt;}
.y63_c01317{bottom:930.053333pt;}
.y6a_c01317{bottom:930.813333pt;}
.y67_c01317{bottom:932.346667pt;}
.y66_c01317{bottom:933.120000pt;}
.y65_c01317{bottom:933.893333pt;}
.y62_c01317{bottom:944.640000pt;}
.y5b_c01317{bottom:945.413333pt;}
.y5a_c01317{bottom:946.173333pt;}
.y61_c01317{bottom:947.706667pt;}
.y5f_c01317{bottom:948.480000pt;}
.y5e_c01317{bottom:949.253333pt;}
.y5c_c01317{bottom:950.013333pt;}
.y5d_c01317{bottom:952.320000pt;}
.y60_c01317{bottom:953.093333pt;}
.y54_c01317{bottom:964.613333pt;}
.y53_c01317{bottom:965.373333pt;}
.y57_c01317{bottom:966.146667pt;}
.y59_c01317{bottom:967.680000pt;}
.y56_c01317{bottom:969.213333pt;}
.y58_c01317{bottom:969.986667pt;}
.y55_c01317{bottom:972.293333pt;}
.y4d_c01317{bottom:981.506667pt;}
.y52_c01317{bottom:983.040000pt;}
.y4e_c01317{bottom:984.573333pt;}
.y51_c01317{bottom:985.346667pt;}
.y50_c01317{bottom:986.106667pt;}
.y4f_c01317{bottom:987.653333pt;}
.y49_c01317{bottom:999.933333pt;}
.y4b_c01317{bottom:1000.706667pt;}
.y46_c01317{bottom:1002.240000pt;}
.y47_c01317{bottom:1003.773333pt;}
.y48_c01317{bottom:1004.546667pt;}
.y4a_c01317{bottom:1005.306667pt;}
.y4c_c01317{bottom:1006.080000pt;}
.y44_c01317{bottom:1014.533333pt;}
.y43_c01317{bottom:1015.293333pt;}
.y40_c01317{bottom:1016.826667pt;}
.y3f_c01317{bottom:1017.600000pt;}
.y42_c01317{bottom:1018.373333pt;}
.y41_c01317{bottom:1019.133333pt;}
.y3d_c01317{bottom:1019.906667pt;}
.y3e_c01317{bottom:1022.213333pt;}
.y45_c01317{bottom:1023.746667pt;}
.y35_c01317{bottom:1034.493333pt;}
.y36_c01317{bottom:1036.800000pt;}
.y37_c01317{bottom:1037.573333pt;}
.y39_c01317{bottom:1038.333333pt;}
.y3c_c01317{bottom:1039.106667pt;}
.y38_c01317{bottom:1041.413333pt;}
.y3b_c01317{bottom:1042.173333pt;}
.y3a_c01317{bottom:1043.706667pt;}
.y34_c01317{bottom:1053.693333pt;}
.y2e_c01317{bottom:1054.466667pt;}
.y2f_c01317{bottom:1055.226667pt;}
.y2d_c01317{bottom:1056.000000pt;}
.y31_c01317{bottom:1056.773333pt;}
.y32_c01317{bottom:1058.306667pt;}
.y30_c01317{bottom:1059.066667pt;}
.y33_c01317{bottom:1059.840000pt;}
.y2b_c01317{bottom:1072.133333pt;}
.y2a_c01317{bottom:1072.893333pt;}
.y21_c01317{bottom:1073.666667pt;}
.y2c_c01317{bottom:1075.200000pt;}
.y29_c01317{bottom:1087.493333pt;}
.y25_c01317{bottom:1088.253333pt;}
.y20_c01317{bottom:1089.786667pt;}
.y24_c01317{bottom:1090.560000pt;}
.y26_c01317{bottom:1092.093333pt;}
.y1f_c01317{bottom:1092.866667pt;}
.y22_c01317{bottom:1094.400000pt;}
.y23_c01317{bottom:1095.173333pt;}
.y28_c01317{bottom:1095.933333pt;}
.y27_c01317{bottom:1096.706667pt;}
.y1b_c01317{bottom:1109.760000pt;}
.y1c_c01317{bottom:1110.533333pt;}
.y1a_c01317{bottom:1112.826667pt;}
.y1d_c01317{bottom:1114.373333pt;}
.y1e_c01317{bottom:1115.133333pt;}
.y15_c01317{bottom:1116.666667pt;}
.y17_c01317{bottom:1118.973333pt;}
.y18_c01317{bottom:1120.506667pt;}
.y19_c01317{bottom:1122.053333pt;}
.y16_c01317{bottom:1124.346667pt;}
.yf_c01317{bottom:1126.653333pt;}
.y10_c01317{bottom:1127.426667pt;}
.y11_c01317{bottom:1128.186667pt;}
.y12_c01317{bottom:1128.960000pt;}
.y13_c01317{bottom:1131.266667pt;}
.y14_c01317{bottom:1132.026667pt;}
.yc_c01317{bottom:1144.320000pt;}
.y9_c01317{bottom:1145.093333pt;}
.yb_c01317{bottom:1145.853333pt;}
.ya_c01317{bottom:1147.386667pt;}
.yd_c01317{bottom:1148.933333pt;}
.ye_c01317{bottom:1149.693333pt;}
.y8_c01317{bottom:1155.840000pt;}
.y4_c01317{bottom:1162.746667pt;}
.y6_c01317{bottom:1163.520000pt;}
.y3_c01317{bottom:1166.586667pt;}
.y1_c01317{bottom:1167.360000pt;}
.y5_c01317{bottom:1168.133333pt;}
.y2_c01317{bottom:1173.506667pt;}
.y7_c01317{bottom:1186.560000pt;}
.y1ca_c01317{bottom:1224.186667pt;}
.y1c9_c01317{bottom:1228.026667pt;}
.y1c7_c01317{bottom:1241.093333pt;}
.y1c8_c01317{bottom:1246.466667pt;}
.h15_c01317{height:2.764500pt;}
.h9_c01317{height:4.799479pt;}
.h16_c01317{height:5.519401pt;}
.h20_c01317{height:8.303099pt;}
.h14_c01317{height:11.038802pt;}
.h25_c01317{height:11.396432pt;}
.hb_c01317{height:13.822500pt;}
.ha_c01317{height:16.606198pt;}
.h3_c01317{height:19.341901pt;}
.h1e_c01317{height:22.125599pt;}
.h1c_c01317{height:24.861302pt;}
.h13_c01317{height:27.645000pt;}
.hf_c01317{height:30.428698pt;}
.hc_c01317{height:33.164401pt;}
.h18_c01317{height:35.948099pt;}
.h2_c01317{height:38.683802pt;}
.he_c01317{height:41.467500pt;}
.h7_c01317{height:44.251198pt;}
.h5_c01317{height:46.986901pt;}
.h11_c01317{height:49.770599pt;}
.h8_c01317{height:52.506302pt;}
.h10_c01317{height:55.290000pt;}
.h6_c01317{height:58.073698pt;}
.h12_c01317{height:58.330000pt;}
.hd_c01317{height:60.809401pt;}
.h4_c01317{height:63.593099pt;}
.h1b_c01317{height:66.328802pt;}
.h1a_c01317{height:69.112500pt;}
.h22_c01317{height:71.896198pt;}
.h21_c01317{height:74.631901pt;}
.h1d_c01317{height:77.415599pt;}
.h19_c01317{height:80.151302pt;}
.h1f_c01317{height:82.935000pt;}
.h23_c01317{height:85.718698pt;}
.h24_c01317{height:88.454401pt;}
.h17_c01317{height:124.402500pt;}
.h0_c01317{height:1341.693333pt;}
.h1_c01317{height:1342.000000pt;}
.w0_c01317{width:959.226667pt;}
.w1_c01317{width:959.333333pt;}
.x0_c01317{left:0.000000pt;}
.x111_c01317{left:96.773333pt;}
.x110_c01317{left:103.680000pt;}
.x10e_c01317{left:120.573333pt;}
.x2e_c01317{left:161.280000pt;}
.x69_c01317{left:162.813333pt;}
.x2f_c01317{left:173.573333pt;}
.x3b_c01317{left:175.106667pt;}
.x10f_c01317{left:180.480000pt;}
.x91_c01317{left:188.160000pt;}
.x25_c01317{left:193.533333pt;}
.xae_c01317{left:195.840000pt;}
.x30_c01317{left:198.146667pt;}
.xc3_c01317{left:199.680000pt;}
.x3f_c01317{left:201.213333pt;}
.xb_c01317{left:203.520000pt;}
.xca_c01317{left:205.826667pt;}
.xf7_c01317{left:207.360000pt;}
.x109_c01317{left:209.666667pt;}
.xd6_c01317{left:211.200000pt;}
.xaf_c01317{left:215.040000pt;}
.x6a_c01317{left:220.413333pt;}
.x8c_c01317{left:222.720000pt;}
.x56_c01317{left:228.093333pt;}
.x81_c01317{left:231.933333pt;}
.x71_c01317{left:233.466667pt;}
.x18_c01317{left:238.853333pt;}
.xe9_c01317{left:240.386667pt;}
.x26_c01317{left:241.920000pt;}
.xf8_c01317{left:244.226667pt;}
.x3c_c01317{left:245.760000pt;}
.x31_c01317{left:248.066667pt;}
.xf2_c01317{left:249.600000pt;}
.xa6_c01317{left:251.133333pt;}
.x4f_c01317{left:252.666667pt;}
.x8d_c01317{left:254.213333pt;}
.x5e_c01317{left:255.746667pt;}
.xd2_c01317{left:257.280000pt;}
.x19_c01317{left:259.586667pt;}
.xcc_c01317{left:263.426667pt;}
.x7b_c01317{left:264.960000pt;}
.x64_c01317{left:266.493333pt;}
.xeb_c01317{left:268.800000pt;}
.xdd_c01317{left:271.106667pt;}
.x72_c01317{left:272.640000pt;}
.x32_c01317{left:274.173333pt;}
.xcb_c01317{left:276.480000pt;}
.x57_c01317{left:278.013333pt;}
.xec_c01317{left:281.853333pt;}
.x87_c01317{left:284.933333pt;}
.x9c_c01317{left:288.000000pt;}
.x33_c01317{left:289.533333pt;}
.x73_c01317{left:291.840000pt;}
.x104_c01317{left:294.146667pt;}
.xdf_c01317{left:295.680000pt;}
.x105_c01317{left:297.213333pt;}
.x92_c01317{left:299.520000pt;}
.x10d_c01317{left:301.053333pt;}
.x97_c01317{left:302.586667pt;}
.x9f_c01317{left:304.893333pt;}
.x27_c01317{left:306.426667pt;}
.xa7_c01317{left:309.506667pt;}
.x82_c01317{left:311.813333pt;}
.xa0_c01317{left:313.346667pt;}
.xd3_c01317{left:314.880000pt;}
.xc_c01317{left:319.493333pt;}
.x58_c01317{left:323.333333pt;}
.xfc_c01317{left:324.866667pt;}
.xd_c01317{left:326.400000pt;}
.x40_c01317{left:328.706667pt;}
.x7c_c01317{left:331.013333pt;}
.x50_c01317{left:333.306667pt;}
.xb0_c01317{left:335.613333pt;}
.x93_c01317{left:337.146667pt;}
.x7d_c01317{left:340.226667pt;}
.xf3_c01317{left:341.760000pt;}
.xc4_c01317{left:343.293333pt;}
.x83_c01317{left:344.826667pt;}
.xed_c01317{left:347.133333pt;}
.x8e_c01317{left:348.666667pt;}
.x88_c01317{left:350.213333pt;}
.x5f_c01317{left:352.506667pt;}
.x6b_c01317{left:354.813333pt;}
.x49_c01317{left:357.120000pt;}
.xb8_c01317{left:358.653333pt;}
.xa1_c01317{left:360.960000pt;}
.x1a_c01317{left:362.493333pt;}
.xab_c01317{left:364.800000pt;}
.x41_c01317{left:366.333333pt;}
.xd7_c01317{left:369.413333pt;}
.x74_c01317{left:371.706667pt;}
.xce_c01317{left:377.853333pt;}
.x28_c01317{left:380.160000pt;}
.x94_c01317{left:384.773333pt;}
.x101_c01317{left:387.066667pt;}
.x65_c01317{left:390.906667pt;}
.xb1_c01317{left:392.453333pt;}
.x42_c01317{left:393.986667pt;}
.x75_c01317{left:396.293333pt;}
.xb5_c01317{left:397.826667pt;}
.x98_c01317{left:399.360000pt;}
.xa2_c01317{left:400.893333pt;}
.x60_c01317{left:403.200000pt;}
.x8f_c01317{left:406.266667pt;}
.x1b_c01317{left:407.813333pt;}
.x106_c01317{left:409.346667pt;}
.x59_c01317{left:411.653333pt;}
.x102_c01317{left:419.333333pt;}
.x61_c01317{left:420.866667pt;}
.x84_c01317{left:423.933333pt;}
.x1c_c01317{left:425.466667pt;}
.x43_c01317{left:427.773333pt;}
.xb9_c01317{left:431.613333pt;}
.x99_c01317{left:433.146667pt;}
.x1d_c01317{left:435.453333pt;}
.xcf_c01317{left:436.986667pt;}
.x9d_c01317{left:438.533333pt;}
.x89_c01317{left:440.066667pt;}
.x29_c01317{left:445.440000pt;}
.x76_c01317{left:447.746667pt;}
.x62_c01317{left:449.280000pt;}
.xf5_c01317{left:450.813333pt;}
.xbb_c01317{left:456.186667pt;}
.x100_c01317{left:460.026667pt;}
.xfd_c01317{left:463.106667pt;}
.x10a_c01317{left:467.706667pt;}
.xd9_c01317{left:469.253333pt;}
.x63_c01317{left:472.320000pt;}
.xda_c01317{left:475.386667pt;}
.x1_c01317{left:477.693333pt;}
.x9a_c01317{left:480.000000pt;}
.xbc_c01317{left:482.306667pt;}
.x3d_c01317{left:483.840000pt;}
.xee_c01317{left:485.373333pt;}
.xe_c01317{left:487.680000pt;}
.x2_c01317{left:489.986667pt;}
.xf_c01317{left:492.293333pt;}
.x1e_c01317{left:494.586667pt;}
.xd0_c01317{left:496.133333pt;}
.xb2_c01317{left:498.426667pt;}
.x51_c01317{left:499.973333pt;}
.x103_c01317{left:502.266667pt;}
.x2a_c01317{left:506.106667pt;}
.xb3_c01317{left:507.653333pt;}
.x3_c01317{left:509.186667pt;}
.xc0_c01317{left:510.720000pt;}
.x4a_c01317{left:512.253333pt;}
.x34_c01317{left:514.560000pt;}
.xb6_c01317{left:516.866667pt;}
.xa3_c01317{left:518.400000pt;}
.x6c_c01317{left:520.706667pt;}
.x107_c01317{left:522.240000pt;}
.x5a_c01317{left:523.773333pt;}
.xd4_c01317{left:525.306667pt;}
.x10_c01317{left:526.853333pt;}
.xb4_c01317{left:529.920000pt;}
.x66_c01317{left:531.453333pt;}
.x35_c01317{left:532.986667pt;}
.x2b_c01317{left:536.066667pt;}
.x4_c01317{left:538.373333pt;}
.xef_c01317{left:542.213333pt;}
.x2c_c01317{left:543.746667pt;}
.xc5_c01317{left:545.280000pt;}
.x44_c01317{left:547.586667pt;}
.xc8_c01317{left:549.120000pt;}
.x77_c01317{left:550.653333pt;}
.x5b_c01317{left:552.960000pt;}
.x52_c01317{left:556.026667pt;}
.xe7_c01317{left:559.106667pt;}
.x7e_c01317{left:560.640000pt;}
.x5_c01317{left:562.946667pt;}
.x6d_c01317{left:564.480000pt;}
.xea_c01317{left:566.786667pt;}
.xfe_c01317{left:568.320000pt;}
.x7f_c01317{left:569.853333pt;}
.x1f_c01317{left:571.386667pt;}
.x85_c01317{left:574.466667pt;}
.xc9_c01317{left:576.000000pt;}
.x45_c01317{left:577.533333pt;}
.x11_c01317{left:579.066667pt;}
.x46_c01317{left:580.613333pt;}
.x108_c01317{left:582.906667pt;}
.x20_c01317{left:586.746667pt;}
.x47_c01317{left:590.586667pt;}
.xe4_c01317{left:592.133333pt;}
.xfa_c01317{left:593.666667pt;}
.x12_c01317{left:595.200000pt;}
.x86_c01317{left:596.733333pt;}
.x78_c01317{left:599.040000pt;}
.xff_c01317{left:600.573333pt;}
.x36_c01317{left:602.880000pt;}
.xe0_c01317{left:605.186667pt;}
.x6_c01317{left:606.720000pt;}
.x4b_c01317{left:609.026667pt;}
.x8a_c01317{left:612.093333pt;}
.xe5_c01317{left:614.400000pt;}
.xcd_c01317{left:615.933333pt;}
.xf0_c01317{left:617.466667pt;}
.xf9_c01317{left:620.546667pt;}
.x6e_c01317{left:622.853333pt;}
.x21_c01317{left:624.386667pt;}
.xe1_c01317{left:625.920000pt;}
.x37_c01317{left:628.226667pt;}
.xf6_c01317{left:629.760000pt;}
.x53_c01317{left:631.293333pt;}
.x5c_c01317{left:632.826667pt;}
.xc6_c01317{left:635.906667pt;}
.x13_c01317{left:638.213333pt;}
.x10b_c01317{left:641.280000pt;}
.x79_c01317{left:643.586667pt;}
.xa8_c01317{left:645.893333pt;}
.x7_c01317{left:647.426667pt;}
.xe6_c01317{left:648.960000pt;}
.xba_c01317{left:651.266667pt;}
.xd1_c01317{left:655.106667pt;}
.xbd_c01317{left:660.480000pt;}
.x48_c01317{left:662.013333pt;}
.x22_c01317{left:665.093333pt;}
.xac_c01317{left:667.386667pt;}
.x8_c01317{left:668.933333pt;}
.xc1_c01317{left:671.226667pt;}
.xfb_c01317{left:672.773333pt;}
.x4c_c01317{left:674.306667pt;}
.xe8_c01317{left:675.840000pt;}
.x14_c01317{left:677.373333pt;}
.xc7_c01317{left:679.680000pt;}
.x23_c01317{left:681.986667pt;}
.xe2_c01317{left:684.293333pt;}
.xa4_c01317{left:685.826667pt;}
.xa9_c01317{left:689.666667pt;}
.x95_c01317{left:691.973333pt;}
.xd8_c01317{left:693.506667pt;}
.x7a_c01317{left:695.040000pt;}
.x15_c01317{left:696.573333pt;}
.x3e_c01317{left:699.653333pt;}
.x38_c01317{left:701.186667pt;}
.x16_c01317{left:703.493333pt;}
.xd5_c01317{left:705.786667pt;}
.x96_c01317{left:707.333333pt;}
.xde_c01317{left:708.866667pt;}
.xdb_c01317{left:711.173333pt;}
.x6f_c01317{left:712.706667pt;}
.x54_c01317{left:714.240000pt;}
.xaa_c01317{left:716.546667pt;}
.x9_c01317{left:718.080000pt;}
.x70_c01317{left:719.613333pt;}
.x10c_c01317{left:721.146667pt;}
.x4d_c01317{left:722.693333pt;}
.x24_c01317{left:724.226667pt;}
.x90_c01317{left:726.533333pt;}
.x39_c01317{left:728.066667pt;}
.x17_c01317{left:729.600000pt;}
.xad_c01317{left:731.133333pt;}
.x67_c01317{left:733.440000pt;}
.xe3_c01317{left:734.973333pt;}
.xf1_c01317{left:738.053333pt;}
.x5d_c01317{left:741.120000pt;}
.x8b_c01317{left:743.426667pt;}
.x9e_c01317{left:745.733333pt;}
.xf4_c01317{left:750.333333pt;}
.x9b_c01317{left:752.640000pt;}
.x4e_c01317{left:754.173333pt;}
.x80_c01317{left:758.013333pt;}
.xa5_c01317{left:760.320000pt;}
.xbe_c01317{left:762.626667pt;}
.x3a_c01317{left:767.226667pt;}
.xa_c01317{left:771.840000pt;}
.xbf_c01317{left:776.453333pt;}
.xc2_c01317{left:777.986667pt;}
.x55_c01317{left:779.520000pt;}
.x2d_c01317{left:782.586667pt;}
.xdc_c01317{left:784.133333pt;}
.x68_c01317{left:791.040000pt;}
.xb7_c01317{left:796.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28138d874db3ccdc8596eaa9.woff2')format("woff");}.ff1_c01318{font-family:ff1_c01318;line-height:1.109863;font-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_c01318{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m156_c01318{transform:matrix(0.048375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048375,0.000000,0.000000,0.250000,0,0);}
.m173_c01318{transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078300,0.000000,0.000000,0.250000,0,0);}
.m10_c01318{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m13e_c01318{transform:matrix(0.086150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086150,0.000000,0.000000,0.250000,0,0);}
.m16c_c01318{transform:matrix(0.091825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091825,0.000000,0.000000,0.250000,0,0);}
.m109_c01318{transform:matrix(0.093525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093525,0.000000,0.000000,0.250000,0,0);}
.m51_c01318{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m64_c01318{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.m176_c01318{transform:matrix(0.096400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096400,0.000000,0.000000,0.250000,0,0);}
.m10b_c01318{transform:matrix(0.099300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099300,0.000000,0.000000,0.250000,0,0);}
.m144_c01318{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);}
.m12a_c01318{transform:matrix(0.103200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103200,0.000000,0.000000,0.250000,0,0);}
.m15f_c01318{transform:matrix(0.104075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104075,0.000000,0.000000,0.250000,0,0);}
.m67_c01318{transform:matrix(0.110025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110025,0.000000,0.000000,0.250000,0,0);}
.m167_c01318{transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111500,0.000000,0.000000,0.250000,0,0);}
.m15b_c01318{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);}
.m107_c01318{transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115100,0.000000,0.000000,0.250000,0,0);}
.m15c_c01318{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m15d_c01318{transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);}
.m175_c01318{transform:matrix(0.116300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116300,0.000000,0.000000,0.250000,0,0);}
.m193_c01318{transform:matrix(0.116350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116350,0.000000,0.000000,0.250000,0,0);}
.m103_c01318{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m181_c01318{transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);}
.m130_c01318{transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119825,0.000000,0.000000,0.250000,0,0);}
.m106_c01318{transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120850,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01318{transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);}
.m65_c01318{transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);}
.m155_c01318{transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);}
.m10a_c01318{transform:matrix(0.123350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123350,0.000000,0.000000,0.250000,0,0);}
.m169_c01318{transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01318{transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124875,0.000000,0.000000,0.250000,0,0);}
.mab_c01318{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m18f_c01318{transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);}
.m18e_c01318{transform:matrix(0.126525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126525,0.000000,0.000000,0.250000,0,0);}
.m125_c01318{transform:matrix(0.127400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127400,0.000000,0.000000,0.250000,0,0);}
.mb8_c01318{transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127750,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01318{transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);}
.m113_c01318{transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);}
.med_c01318{transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129125,0.000000,0.000000,0.250000,0,0);}
.md1_c01318{transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129400,0.000000,0.000000,0.250000,0,0);}
.mcb_c01318{transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);}
.m62_c01318{transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01318{transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);}
.m11c_c01318{transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);}
.m124_c01318{transform:matrix(0.131475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131475,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01318{transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132075,0.000000,0.000000,0.250000,0,0);}
.m110_c01318{transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132700,0.000000,0.000000,0.250000,0,0);}
.m1be_c01318{transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);}
.m82_c01318{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.m5d_c01318{transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);}
.m0_c01318{transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133950,0.000000,0.000000,0.250000,0,0);}
.mff_c01318{transform:matrix(0.134575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134575,0.000000,0.000000,0.250000,0,0);}
.m140_c01318{transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136425,0.000000,0.000000,0.250000,0,0);}
.m60_c01318{transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);}
.m196_c01318{transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);}
.m6c_c01318{transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);}
.mbf_c01318{transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);}
.m158_c01318{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);}
.m13f_c01318{transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);}
.m123_c01318{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01318{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m19b_c01318{transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139275,0.000000,0.000000,0.250000,0,0);}
.m13b_c01318{transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139350,0.000000,0.000000,0.250000,0,0);}
.m69_c01318{transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140150,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01318{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01318{transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140700,0.000000,0.000000,0.250000,0,0);}
.m15a_c01318{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);}
.m39_c01318{transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);}
.m143_c01318{transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141200,0.000000,0.000000,0.250000,0,0);}
.m117_c01318{transform:matrix(0.141800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141800,0.000000,0.000000,0.250000,0,0);}
.m7b_c01318{transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);}
.m10e_c01318{transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01318{transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);}
.mfe_c01318{transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142875,0.000000,0.000000,0.250000,0,0);}
.m1af_c01318{transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142975,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01318{transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);}
.m3_c01318{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m12f_c01318{transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144100,0.000000,0.000000,0.250000,0,0);}
.m13a_c01318{transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);}
.m18b_c01318{transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);}
.m3d_c01318{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);}
.m157_c01318{transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);}
.m92_c01318{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);}
.mca_c01318{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.m66_c01318{transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);}
.m12b_c01318{transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);}
.m63_c01318{transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);}
.m31_c01318{transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);}
.m13d_c01318{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);}
.m1bc_c01318{transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);}
.mb4_c01318{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);}
.m19c_c01318{transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);}
.ma2_c01318{transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);}
.mf2_c01318{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);}
.mf4_c01318{transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);}
.m178_c01318{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01318{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.m100_c01318{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m12d_c01318{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);}
.m87_c01318{transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152475,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01318{transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);}
.m16b_c01318{transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);}
.m18c_c01318{transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);}
.m172_c01318{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m91_c01318{transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);}
.m79_c01318{transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);}
.m159_c01318{transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154850,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01318{transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155100,0.000000,0.000000,0.250000,0,0);}
.m68_c01318{transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155175,0.000000,0.000000,0.250000,0,0);}
.m9e_c01318{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01318{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);}
.m5e_c01318{transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);}
.md3_c01318{transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01318{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m93_c01318{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.me6_c01318{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01318{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);}
.m1bb_c01318{transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);}
.m138_c01318{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m70_c01318{transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160375,0.000000,0.000000,0.250000,0,0);}
.m8e_c01318{transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160625,0.000000,0.000000,0.250000,0,0);}
.m128_c01318{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.mb5_c01318{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);}
.m2e_c01318{transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);}
.md5_c01318{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.m10d_c01318{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);}
.m1cb_c01318{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m18d_c01318{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.mf7_c01318{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m102_c01318{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.m58_c01318{transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);}
.m5f_c01318{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m190_c01318{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m6a_c01318{transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);}
.m126_c01318{transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01318{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m199_c01318{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01318{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01318{transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167275,0.000000,0.000000,0.250000,0,0);}
.me4_c01318{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.m83_c01318{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m78_c01318{transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01318{transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);}
.m195_c01318{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m9d_c01318{transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);}
.m13c_c01318{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf8_c01318{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);}
.m49_c01318{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.m84_c01318{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.m129_c01318{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);}
.m132_c01318{transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);}
.m187_c01318{transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);}
.mc1_c01318{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);}
.mb0_c01318{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);}
.m197_c01318{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.mc0_c01318{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);}
.m11d_c01318{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m54_c01318{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01318{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);}
.m174_c01318{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m38_c01318{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.mdb_c01318{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);}
.m14e_c01318{transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);}
.m104_c01318{transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);}
.m119_c01318{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.m34_c01318{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01318{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);}
.mcf_c01318{transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01318{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m137_c01318{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.mf6_c01318{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m179_c01318{transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178825,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01318{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m19d_c01318{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.mcd_c01318{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);}
.m133_c01318{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.mbe_c01318{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);}
.mf1_c01318{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01318{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m57_c01318{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.m152_c01318{transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01318{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);}
.m40_c01318{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);}
.m11a_c01318{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.mf3_c01318{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);}
.mf0_c01318{transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184500,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01318{transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);}
.m33_c01318{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);}
.md2_c01318{transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185450,0.000000,0.000000,0.250000,0,0);}
.mfd_c01318{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);}
.m150_c01318{transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);}
.m191_c01318{transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);}
.mba_c01318{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m17d_c01318{transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);}
.mc8_c01318{transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187975,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01318{transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188275,0.000000,0.000000,0.250000,0,0);}
.m76_c01318{transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);}
.m94_c01318{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01318{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);}
.m75_c01318{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.m99_c01318{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);}
.mb3_c01318{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.mdc_c01318{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);}
.m177_c01318{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);}
.m8b_c01318{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.mc9_c01318{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m101_c01318{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.m136_c01318{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.m5c_c01318{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);}
.m120_c01318{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m17f_c01318{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m53_c01318{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.mef_c01318{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);}
.m118_c01318{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);}
.m71_c01318{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);}
.m1a6_c01318{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);}
.m112_c01318{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);}
.m108_c01318{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);}
.m35_c01318{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m16a_c01318{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01318{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m192_c01318{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);}
.mb6_c01318{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.mec_c01318{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.m111_c01318{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);}
.m1b3_c01318{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);}
.mb7_c01318{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01318{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);}
.mc3_c01318{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);}
.m8a_c01318{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);}
.m142_c01318{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m4e_c01318{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01318{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m14b_c01318{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01318{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m10c_c01318{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01318{transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201125,0.000000,0.000000,0.250000,0,0);}
.m11e_c01318{transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);}
.mde_c01318{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mfb_c01318{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);}
.m17c_c01318{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);}
.m98_c01318{transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);}
.maa_c01318{transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203750,0.000000,0.000000,0.250000,0,0);}
.m188_c01318{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);}
.m16_c01318{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m2_c01318{transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);}
.m171_c01318{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m14d_c01318{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);}
.m59_c01318{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);}
.md7_c01318{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);}
.m2a_c01318{transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);}
.m48_c01318{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m6f_c01318{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m80_c01318{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);}
.m9b_c01318{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.meb_c01318{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m42_c01318{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.m131_c01318{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m56_c01318{transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);}
.m194_c01318{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);}
.mdd_c01318{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);}
.m116_c01318{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);}
.m36_c01318{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);}
.m73_c01318{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);}
.m46_c01318{transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01318{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.m22_c01318{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);}
.m9c_c01318{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);}
.m4_c01318{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);}
.m1c8_c01318{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.me1_c01318{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);}
.mb2_c01318{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);}
.m1b9_c01318{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m1b_c01318{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_c01318{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m12c_c01318{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);}
.ma1_c01318{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m1c_c01318{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);}
.m168_c01318{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01318{transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01318{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);}
.m14_c01318{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.mda_c01318{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01318{transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);}
.m147_c01318{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);}
.m183_c01318{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.m61_c01318{transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);}
.m1e_c01318{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.m8_c01318{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m148_c01318{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.mb1_c01318{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.mc_c01318{transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);}
.m16e_c01318{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);}
.m182_c01318{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.m134_c01318{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);}
.md6_c01318{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);}
.m164_c01318{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);}
.mfc_c01318{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.md4_c01318{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m185_c01318{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.m7c_c01318{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m11b_c01318{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);}
.mcc_c01318{transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);}
.mac_c01318{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);}
.mae_c01318{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);}
.m14c_c01318{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.m114_c01318{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);}
.m10f_c01318{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.mf5_c01318{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.mdf_c01318{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);}
.m23_c01318{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);}
.m1a3_c01318{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);}
.m16d_c01318{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.m4d_c01318{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);}
.m7a_c01318{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);}
.mfa_c01318{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);}
.me0_c01318{transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228225,0.000000,0.000000,0.250000,0,0);}
.me3_c01318{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);}
.m186_c01318{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m85_c01318{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);}
.m27_c01318{transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232450,0.000000,0.000000,0.250000,0,0);}
.mf9_c01318{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);}
.m15e_c01318{transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);}
.m13_c01318{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);}
.m74_c01318{transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);}
.me8_c01318{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);}
.m6d_c01318{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);}
.m160_c01318{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);}
.ma5_c01318{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01318{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.me5_c01318{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01318{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);}
.m122_c01318{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);}
.m96_c01318{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.m153_c01318{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m5b_c01318{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.me9_c01318{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m198_c01318{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m3e_c01318{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.md0_c01318{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01318{transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);}
.m30_c01318{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);}
.m18a_c01318{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);}
.m9_c01318{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m19a_c01318{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);}
.m189_c01318{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);}
.ma0_c01318{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);}
.mc7_c01318{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);}
.m1_c01318{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);}
.m184_c01318{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);}
.me2_c01318{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);}
.m162_c01318{transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245050,0.000000,0.000000,0.250000,0,0);}
.m4b_c01318{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc6_c01318{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m11f_c01318{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);}
.m45_c01318{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.md9_c01318{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);}
.m1c2_c01318{transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);}
.mee_c01318{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m17b_c01318{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);}
.m1cc_c01318{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);}
.m4f_c01318{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);}
.md_c01318{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01318{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);}
.m25_c01318{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);}
.m95_c01318{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);}
.ma_c01318{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);}
.m8c_c01318{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01318{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c01318{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf_c01318{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);}
.m24_c01318{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01318{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);}
.m15_c01318{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);}
.m32_c01318{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01318{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);}
.m1f_c01318{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9f_c01318{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01318{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);}
.m115_c01318{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m20_c01318{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);}
.m3a_c01318{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);}
.me_c01318{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01318{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m37_c01318{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);}
.m47_c01318{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01318{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m17a_c01318{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);}
.ma6_c01318{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01318{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m17_c01318{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8d_c01318{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m81_c01318{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c01318{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mea_c01318{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc5_c01318{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01318{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);}
.mbc_c01318{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m11_c01318{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mbb_c01318{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01318{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m121_c01318{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);}
.m86_c01318{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);}
.m8f_c01318{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01318{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me7_c01318{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);}
.ma3_c01318{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01318{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m19e_c01318{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m127_c01318{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);}
.ma9_c01318{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);}
.m28_c01318{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md8_c01318{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);}
.mad_c01318{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc4_c01318{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m12_c01318{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01318{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m41_c01318{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);}
.m77_c01318{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m50_c01318{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);}
.m7d_c01318{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);}
.m139_c01318{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m90_c01318{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m7_c01318{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m97_c01318{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01318{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m7e_c01318{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);}
.m3b_c01318{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m170_c01318{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mbd_c01318{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m19f_c01318{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01318{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01318{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m163_c01318{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m72_c01318{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);}
.m151_c01318{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m18_c01318{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.maf_c01318{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);}
.m180_c01318{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m21_c01318{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m89_c01318{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mb9_c01318{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m105_c01318{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m16f_c01318{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01318{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m1da_c01318{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m6_c01318{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);}
.m9a_c01318{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.ma7_c01318{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m44_c01318{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.mc2_c01318{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m1db_c01318{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01318{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m141_c01318{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m29_c01318{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m88_c01318{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m14a_c01318{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m19_c01318{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);}
.m149_c01318{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m26_c01318{transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);}
.m14f_c01318{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m154_c01318{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m17e_c01318{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m43_c01318{transform:matrix(1.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.120000,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01318{transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);}
.m135_c01318{transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);}
.m52_c01318{transform:matrix(1.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.217500,0.000000,0.000000,0.250000,0,0);}
.m55_c01318{transform:matrix(1.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.370000,0.000000,0.000000,0.250000,0,0);}
.mce_c01318{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m146_c01318{transform:matrix(1.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.520000,0.000000,0.000000,0.250000,0,0);}
.m145_c01318{transform:matrix(2.005000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.005000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.005000,0.000000,0.000000,0.250000,0,0);}
.m161_c01318{transform:matrix(2.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.200000,0.000000,0.000000,0.250000,0,0);}
.m165_c01318{transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);}
.ma8_c01318{transform:matrix(2.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.385000,0.000000,0.000000,0.250000,0,0);}
.m166_c01318{transform:matrix(2.970000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.970000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.970000,0.000000,0.000000,0.250000,0,0);}
.ma4_c01318{transform:matrix(3.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.467500,0.000000,0.000000,0.250000,0,0);}
.v0_c01318{vertical-align:0.000000px;}
.ls2_c01318{letter-spacing:0.000000px;}
.ls0_c01318{letter-spacing:28.142700px;}
.ls1_c01318{letter-spacing:362.343000px;}
.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;}
.fc0_c01318{color:transparent;}
.fs3_c01318{font-size:3.456000px;}
.fs7_c01318{font-size:6.000000px;}
.fs10_c01318{font-size:6.900000px;}
.fs1e_c01318{font-size:10.380000px;}
.fsf_c01318{font-size:13.800000px;}
.fs6_c01318{font-size:17.280000px;}
.fs16_c01318{font-size:20.760000px;}
.fsd_c01318{font-size:24.180000px;}
.fs17_c01318{font-size:27.660000px;}
.fsc_c01318{font-size:31.080000px;}
.fse_c01318{font-size:34.560000px;}
.fs15_c01318{font-size:38.040000px;}
.fs1c_c01318{font-size:41.460000px;}
.fs13_c01318{font-size:44.940000px;}
.fs1b_c01318{font-size:48.360000px;}
.fs11_c01318{font-size:51.840000px;}
.fs5_c01318{font-size:55.320000px;}
.fsb_c01318{font-size:58.740000px;}
.fsa_c01318{font-size:62.220000px;}
.fs0_c01318{font-size:65.640000px;}
.fs9_c01318{font-size:69.120000px;}
.fs12_c01318{font-size:72.600000px;}
.fs8_c01318{font-size:76.020000px;}
.fs4_c01318{font-size:79.500000px;}
.fs1_c01318{font-size:82.920000px;}
.fs1d_c01318{font-size:86.400000px;}
.fs1f_c01318{font-size:89.880000px;}
.fs19_c01318{font-size:93.300000px;}
.fs14_c01318{font-size:96.780000px;}
.fs1a_c01318{font-size:100.200000px;}
.fs18_c01318{font-size:103.680000px;}
.fs21_c01318{font-size:107.160000px;}
.fs22_c01318{font-size:110.580000px;}
.fs20_c01318{font-size:114.060000px;}
.fs2_c01318{font-size:138.240000px;}
.fs23_c01318{font-size:155.520000px;}
.y0_c01318{bottom:0.000000px;}
.y1d4_c01318{bottom:175.395000px;}
.y1d3_c01318{bottom:176.250000px;}
.y1d2_c01318{bottom:180.570000px;}
.y1d0_c01318{bottom:181.440000px;}
.y1d1_c01318{bottom:184.890000px;}
.y1cf_c01318{bottom:187.485000px;}
.y1ce_c01318{bottom:188.355000px;}
.y1d9_c01318{bottom:196.995000px;}
.y1cc_c01318{bottom:200.445000px;}
.y1ca_c01318{bottom:201.315000px;}
.y1c8_c01318{bottom:202.170000px;}
.y1cd_c01318{bottom:203.040000px;}
.y1cb_c01318{bottom:205.635000px;}
.y1c9_c01318{bottom:206.490000px;}
.y1c4_c01318{bottom:220.320000px;}
.y1c1_c01318{bottom:222.045000px;}
.y1c3_c01318{bottom:222.915000px;}
.y1c6_c01318{bottom:223.770000px;}
.y1c2_c01318{bottom:224.640000px;}
.y1c7_c01318{bottom:227.235000px;}
.y1c5_c01318{bottom:228.090000px;}
.y1c0_c01318{bottom:232.410000px;}
.y1bf_c01318{bottom:235.005000px;}
.y1be_c01318{bottom:243.645000px;}
.y1ba_c01318{bottom:244.515000px;}
.y1bc_c01318{bottom:246.240000px;}
.y1bd_c01318{bottom:247.110000px;}
.y1bb_c01318{bottom:247.965000px;}
.y1b4_c01318{bottom:260.925000px;}
.y1b9_c01318{bottom:262.650000px;}
.y1b6_c01318{bottom:263.520000px;}
.y1b3_c01318{bottom:264.390000px;}
.y1b5_c01318{bottom:267.840000px;}
.y1b8_c01318{bottom:268.710000px;}
.y1b7_c01318{bottom:269.565000px;}
.y1ae_c01318{bottom:284.250000px;}
.y1b2_c01318{bottom:285.120000px;}
.y1ac_c01318{bottom:285.990000px;}
.y1af_c01318{bottom:286.845000px;}
.y1b1_c01318{bottom:287.715000px;}
.y1ad_c01318{bottom:288.570000px;}
.y1b0_c01318{bottom:289.440000px;}
.y1aa_c01318{bottom:303.270000px;}
.y1a9_c01318{bottom:304.125000px;}
.y1a3_c01318{bottom:304.995000px;}
.y1a7_c01318{bottom:305.850000px;}
.y1ab_c01318{bottom:306.720000px;}
.y1a8_c01318{bottom:307.590000px;}
.y1a4_c01318{bottom:308.445000px;}
.y1a2_c01318{bottom:310.170000px;}
.y1a6_c01318{bottom:312.765000px;}
.y1a5_c01318{bottom:315.360000px;}
.y19f_c01318{bottom:324.000000px;}
.y1a0_c01318{bottom:324.870000px;}
.y19b_c01318{bottom:326.595000px;}
.y19a_c01318{bottom:327.450000px;}
.y19d_c01318{bottom:328.320000px;}
.y19c_c01318{bottom:329.190000px;}
.y1a1_c01318{bottom:330.045000px;}
.y19e_c01318{bottom:341.280000px;}
.y199_c01318{bottom:343.005000px;}
.y194_c01318{bottom:343.875000px;}
.y191_c01318{bottom:344.730000px;}
.y193_c01318{bottom:345.600000px;}
.y198_c01318{bottom:346.470000px;}
.y192_c01318{bottom:347.325000px;}
.y197_c01318{bottom:348.195000px;}
.y195_c01318{bottom:349.050000px;}
.y196_c01318{bottom:352.515000px;}
.y190_c01318{bottom:362.880000px;}
.y189_c01318{bottom:364.605000px;}
.y18d_c01318{bottom:365.475000px;}
.y18e_c01318{bottom:366.330000px;}
.y18b_c01318{bottom:368.070000px;}
.y18f_c01318{bottom:369.795000px;}
.y18a_c01318{bottom:370.650000px;}
.y18c_c01318{bottom:371.520000px;}
.y187_c01318{bottom:382.755000px;}
.y183_c01318{bottom:385.350000px;}
.y181_c01318{bottom:386.205000px;}
.y184_c01318{bottom:387.075000px;}
.y182_c01318{bottom:387.930000px;}
.y188_c01318{bottom:389.670000px;}
.y180_c01318{bottom:390.525000px;}
.y186_c01318{bottom:391.395000px;}
.y185_c01318{bottom:392.250000px;}
.y178_c01318{bottom:400.035000px;}
.y172_c01318{bottom:400.890000px;}
.y17c_c01318{bottom:401.760000px;}
.y173_c01318{bottom:402.630000px;}
.y176_c01318{bottom:403.485000px;}
.y175_c01318{bottom:404.355000px;}
.y174_c01318{bottom:406.080000px;}
.y17e_c01318{bottom:409.530000px;}
.y17b_c01318{bottom:410.400000px;}
.y17f_c01318{bottom:411.270000px;}
.y17d_c01318{bottom:412.125000px;}
.y17a_c01318{bottom:416.445000px;}
.y179_c01318{bottom:417.315000px;}
.y177_c01318{bottom:423.360000px;}
.y16c_c01318{bottom:425.085000px;}
.y16e_c01318{bottom:425.955000px;}
.y171_c01318{bottom:426.810000px;}
.y16d_c01318{bottom:428.550000px;}
.y16f_c01318{bottom:429.405000px;}
.y170_c01318{bottom:431.130000px;}
.y16a_c01318{bottom:443.235000px;}
.y16b_c01318{bottom:444.960000px;}
.y162_c01318{bottom:446.685000px;}
.y167_c01318{bottom:448.410000px;}
.y166_c01318{bottom:449.280000px;}
.y169_c01318{bottom:450.150000px;}
.y168_c01318{bottom:451.005000px;}
.y15c_c01318{bottom:451.875000px;}
.y165_c01318{bottom:452.730000px;}
.y163_c01318{bottom:453.600000px;}
.y164_c01318{bottom:457.050000px;}
.y15f_c01318{bottom:461.370000px;}
.y159_c01318{bottom:462.240000px;}
.y158_c01318{bottom:463.110000px;}
.y15b_c01318{bottom:463.965000px;}
.y15d_c01318{bottom:466.560000px;}
.y160_c01318{bottom:470.010000px;}
.y15e_c01318{bottom:471.750000px;}
.y161_c01318{bottom:472.605000px;}
.y15a_c01318{bottom:476.925000px;}
.y157_c01318{bottom:487.290000px;}
.y151_c01318{bottom:489.030000px;}
.y156_c01318{bottom:490.755000px;}
.y155_c01318{bottom:492.480000px;}
.y150_c01318{bottom:494.205000px;}
.y152_c01318{bottom:495.075000px;}
.y14f_c01318{bottom:496.800000px;}
.y153_c01318{bottom:501.120000px;}
.y154_c01318{bottom:501.990000px;}
.y14e_c01318{bottom:507.165000px;}
.y145_c01318{bottom:508.890000px;}
.y146_c01318{bottom:509.760000px;}
.y14c_c01318{bottom:510.630000px;}
.y14b_c01318{bottom:513.210000px;}
.y144_c01318{bottom:514.080000px;}
.y149_c01318{bottom:514.950000px;}
.y14d_c01318{bottom:515.805000px;}
.y14a_c01318{bottom:516.675000px;}
.y148_c01318{bottom:519.270000px;}
.y1d8_c01318{bottom:520.125000px;}
.y147_c01318{bottom:521.850000px;}
.y142_c01318{bottom:529.635000px;}
.y143_c01318{bottom:531.360000px;}
.y141_c01318{bottom:535.680000px;}
.y13f_c01318{bottom:539.130000px;}
.y140_c01318{bottom:540.000000px;}
.y13d_c01318{bottom:543.450000px;}
.y13c_c01318{bottom:545.190000px;}
.y13b_c01318{bottom:546.915000px;}
.y13e_c01318{bottom:548.640000px;}
.y136_c01318{bottom:549.510000px;}
.y134_c01318{bottom:552.090000px;}
.y137_c01318{bottom:552.960000px;}
.y138_c01318{bottom:553.830000px;}
.y135_c01318{bottom:555.555000px;}
.y139_c01318{bottom:556.410000px;}
.y13a_c01318{bottom:567.645000px;}
.y131_c01318{bottom:569.370000px;}
.y12d_c01318{bottom:570.240000px;}
.y130_c01318{bottom:571.965000px;}
.y133_c01318{bottom:573.690000px;}
.y132_c01318{bottom:574.560000px;}
.y12e_c01318{bottom:575.430000px;}
.y12f_c01318{bottom:576.285000px;}
.y12b_c01318{bottom:589.245000px;}
.y129_c01318{bottom:590.115000px;}
.y127_c01318{bottom:590.970000px;}
.y12a_c01318{bottom:591.840000px;}
.y126_c01318{bottom:592.710000px;}
.y125_c01318{bottom:593.565000px;}
.y128_c01318{bottom:595.290000px;}
.y124_c01318{bottom:597.885000px;}
.y12c_c01318{bottom:600.480000px;}
.y123_c01318{bottom:608.250000px;}
.y122_c01318{bottom:610.845000px;}
.y11f_c01318{bottom:611.715000px;}
.y11b_c01318{bottom:612.570000px;}
.y11e_c01318{bottom:613.440000px;}
.y11c_c01318{bottom:614.310000px;}
.y11d_c01318{bottom:616.890000px;}
.y121_c01318{bottom:619.485000px;}
.y11a_c01318{bottom:624.675000px;}
.y120_c01318{bottom:627.270000px;}
.y119_c01318{bottom:628.995000px;}
.y118_c01318{bottom:629.850000px;}
.y116_c01318{bottom:632.445000px;}
.y113_c01318{bottom:633.315000px;}
.y114_c01318{bottom:635.040000px;}
.y115_c01318{bottom:635.910000px;}
.y117_c01318{bottom:636.765000px;}
.y112_c01318{bottom:648.870000px;}
.y10d_c01318{bottom:650.595000px;}
.y110_c01318{bottom:651.450000px;}
.y10c_c01318{bottom:652.320000px;}
.y10e_c01318{bottom:653.190000px;}
.y10f_c01318{bottom:655.770000px;}
.y111_c01318{bottom:656.640000px;}
.y10a_c01318{bottom:668.730000px;}
.y105_c01318{bottom:670.470000px;}
.y108_c01318{bottom:671.325000px;}
.y103_c01318{bottom:672.195000px;}
.y106_c01318{bottom:673.050000px;}
.y10b_c01318{bottom:673.920000px;}
.y107_c01318{bottom:674.790000px;}
.y109_c01318{bottom:675.645000px;}
.y104_c01318{bottom:676.515000px;}
.y101_c01318{bottom:688.605000px;}
.yfc_c01318{bottom:689.475000px;}
.yfd_c01318{bottom:690.330000px;}
.yfe_c01318{bottom:692.070000px;}
.yff_c01318{bottom:693.795000px;}
.y102_c01318{bottom:694.650000px;}
.yfb_c01318{bottom:695.520000px;}
.y100_c01318{bottom:696.390000px;}
.yfa_c01318{bottom:708.480000px;}
.yf8_c01318{bottom:710.205000px;}
.yf6_c01318{bottom:711.075000px;}
.yf9_c01318{bottom:711.930000px;}
.yf7_c01318{bottom:713.670000px;}
.yef_c01318{bottom:729.210000px;}
.yf4_c01318{bottom:730.080000px;}
.yf0_c01318{bottom:730.950000px;}
.yf2_c01318{bottom:732.675000px;}
.yf5_c01318{bottom:733.530000px;}
.yed_c01318{bottom:734.400000px;}
.yee_c01318{bottom:735.270000px;}
.yf3_c01318{bottom:736.125000px;}
.yf1_c01318{bottom:738.720000px;}
.yec_c01318{bottom:745.635000px;}
.yeb_c01318{bottom:749.955000px;}
.ye6_c01318{bottom:750.810000px;}
.yea_c01318{bottom:751.680000px;}
.ye7_c01318{bottom:753.405000px;}
.ye5_c01318{bottom:754.275000px;}
.ye9_c01318{bottom:755.130000px;}
.ye8_c01318{bottom:756.000000px;}
.ye4_c01318{bottom:756.870000px;}
.ydf_c01318{bottom:769.830000px;}
.ydc_c01318{bottom:771.555000px;}
.ye1_c01318{bottom:772.410000px;}
.ydd_c01318{bottom:773.280000px;}
.ye0_c01318{bottom:774.150000px;}
.ye3_c01318{bottom:775.005000px;}
.ye2_c01318{bottom:775.875000px;}
.yde_c01318{bottom:776.730000px;}
.ydb_c01318{bottom:779.325000px;}
.yd5_c01318{bottom:789.690000px;}
.yd8_c01318{bottom:790.560000px;}
.yd3_c01318{bottom:792.285000px;}
.yd2_c01318{bottom:793.155000px;}
.yda_c01318{bottom:794.010000px;}
.yd9_c01318{bottom:794.880000px;}
.yd4_c01318{bottom:795.750000px;}
.yd7_c01318{bottom:797.475000px;}
.yd6_c01318{bottom:804.390000px;}
.yd1_c01318{bottom:809.565000px;}
.ycd_c01318{bottom:810.435000px;}
.ycc_c01318{bottom:811.290000px;}
.ycb_c01318{bottom:812.160000px;}
.yce_c01318{bottom:813.030000px;}
.yd0_c01318{bottom:813.885000px;}
.ycf_c01318{bottom:815.610000px;}
.yca_c01318{bottom:829.440000px;}
.yc8_c01318{bottom:830.310000px;}
.yc7_c01318{bottom:831.165000px;}
.yc4_c01318{bottom:832.035000px;}
.yc2_c01318{bottom:833.760000px;}
.yc9_c01318{bottom:834.630000px;}
.yc1_c01318{bottom:835.485000px;}
.yc5_c01318{bottom:836.355000px;}
.yc3_c01318{bottom:837.210000px;}
.yc6_c01318{bottom:848.445000px;}
.ybf_c01318{bottom:850.170000px;}
.yc0_c01318{bottom:851.040000px;}
.ybd_c01318{bottom:852.765000px;}
.ybe_c01318{bottom:853.635000px;}
.ybc_c01318{bottom:856.230000px;}
.yba_c01318{bottom:857.085000px;}
.ybb_c01318{bottom:857.955000px;}
.yb9_c01318{bottom:862.275000px;}
.yb5_c01318{bottom:873.510000px;}
.yb4_c01318{bottom:874.365000px;}
.yb3_c01318{bottom:875.235000px;}
.yb8_c01318{bottom:876.090000px;}
.yb7_c01318{bottom:876.960000px;}
.yb6_c01318{bottom:877.830000px;}
.yb2_c01318{bottom:889.920000px;}
.yb0_c01318{bottom:890.790000px;}
.yb1_c01318{bottom:891.645000px;}
.yad_c01318{bottom:892.515000px;}
.yaf_c01318{bottom:893.370000px;}
.ya9_c01318{bottom:894.240000px;}
.yae_c01318{bottom:895.110000px;}
.yab_c01318{bottom:895.965000px;}
.yac_c01318{bottom:896.835000px;}
.yaa_c01318{bottom:897.690000px;}
.ya8_c01318{bottom:899.430000px;}
.ya3_c01318{bottom:911.520000px;}
.ya0_c01318{bottom:912.390000px;}
.ya1_c01318{bottom:913.245000px;}
.ya6_c01318{bottom:914.115000px;}
.ya7_c01318{bottom:914.970000px;}
.ya4_c01318{bottom:915.840000px;}
.ya2_c01318{bottom:918.435000px;}
.ya5_c01318{bottom:930.525000px;}
.y9f_c01318{bottom:932.250000px;}
.y9e_c01318{bottom:933.120000px;}
.y99_c01318{bottom:934.845000px;}
.y9d_c01318{bottom:935.715000px;}
.y9b_c01318{bottom:936.570000px;}
.y98_c01318{bottom:939.165000px;}
.y93_c01318{bottom:940.035000px;}
.y9c_c01318{bottom:940.890000px;}
.y97_c01318{bottom:942.630000px;}
.y96_c01318{bottom:944.355000px;}
.y94_c01318{bottom:945.210000px;}
.y95_c01318{bottom:946.080000px;}
.y9a_c01318{bottom:946.950000px;}
.y92_c01318{bottom:950.400000px;}
.y8d_c01318{bottom:952.125000px;}
.y8f_c01318{bottom:952.995000px;}
.y8e_c01318{bottom:953.850000px;}
.y90_c01318{bottom:955.590000px;}
.y91_c01318{bottom:956.445000px;}
.y89_c01318{bottom:972.000000px;}
.y8a_c01318{bottom:972.870000px;}
.y86_c01318{bottom:973.725000px;}
.y8c_c01318{bottom:975.450000px;}
.y8b_c01318{bottom:976.320000px;}
.y87_c01318{bottom:977.190000px;}
.y85_c01318{bottom:981.510000px;}
.y82_c01318{bottom:991.005000px;}
.y84_c01318{bottom:991.875000px;}
.y88_c01318{bottom:992.730000px;}
.y7d_c01318{bottom:993.600000px;}
.y80_c01318{bottom:994.470000px;}
.y83_c01318{bottom:996.195000px;}
.y7f_c01318{bottom:997.050000px;}
.y7e_c01318{bottom:997.920000px;}
.y81_c01318{bottom:998.790000px;}
.y7c_c01318{bottom:1012.605000px;}
.y7b_c01318{bottom:1013.475000px;}
.y7a_c01318{bottom:1014.330000px;}
.y78_c01318{bottom:1015.200000px;}
.y76_c01318{bottom:1016.070000px;}
.y77_c01318{bottom:1016.925000px;}
.y79_c01318{bottom:1017.795000px;}
.y74_c01318{bottom:1025.565000px;}
.y73_c01318{bottom:1026.435000px;}
.y70_c01318{bottom:1027.290000px;}
.y72_c01318{bottom:1028.160000px;}
.y6f_c01318{bottom:1029.885000px;}
.y6e_c01318{bottom:1031.610000px;}
.y71_c01318{bottom:1034.205000px;}
.y75_c01318{bottom:1044.570000px;}
.y6b_c01318{bottom:1052.355000px;}
.y69_c01318{bottom:1053.210000px;}
.y68_c01318{bottom:1054.080000px;}
.y6d_c01318{bottom:1055.805000px;}
.y6c_c01318{bottom:1057.530000px;}
.y6a_c01318{bottom:1058.400000px;}
.y67_c01318{bottom:1072.230000px;}
.y66_c01318{bottom:1073.085000px;}
.y65_c01318{bottom:1073.955000px;}
.y60_c01318{bottom:1074.810000px;}
.y5f_c01318{bottom:1075.680000px;}
.y64_c01318{bottom:1076.550000px;}
.y63_c01318{bottom:1077.405000px;}
.y62_c01318{bottom:1078.275000px;}
.y61_c01318{bottom:1080.870000px;}
.y5e_c01318{bottom:1092.090000px;}
.y5c_c01318{bottom:1092.960000px;}
.y5a_c01318{bottom:1093.830000px;}
.y5b_c01318{bottom:1094.685000px;}
.y59_c01318{bottom:1096.410000px;}
.y5d_c01318{bottom:1099.005000px;}
.y58_c01318{bottom:1107.645000px;}
.y56_c01318{bottom:1108.515000px;}
.y55_c01318{bottom:1109.370000px;}
.y51_c01318{bottom:1110.240000px;}
.y52_c01318{bottom:1111.110000px;}
.y53_c01318{bottom:1111.965000px;}
.y54_c01318{bottom:1112.835000px;}
.y57_c01318{bottom:1118.880000px;}
.y50_c01318{bottom:1133.565000px;}
.y4f_c01318{bottom:1134.435000px;}
.y4c_c01318{bottom:1135.290000px;}
.y4e_c01318{bottom:1137.030000px;}
.y4b_c01318{bottom:1137.885000px;}
.y4d_c01318{bottom:1138.755000px;}
.y4a_c01318{bottom:1139.610000px;}
.y49_c01318{bottom:1140.480000px;}
.y46_c01318{bottom:1154.310000px;}
.y48_c01318{bottom:1155.165000px;}
.y41_c01318{bottom:1156.035000px;}
.y47_c01318{bottom:1157.760000px;}
.y42_c01318{bottom:1161.210000px;}
.y44_c01318{bottom:1162.950000px;}
.y45_c01318{bottom:1164.675000px;}
.y43_c01318{bottom:1172.445000px;}
.y3e_c01318{bottom:1174.170000px;}
.y3c_c01318{bottom:1175.040000px;}
.y3d_c01318{bottom:1178.490000px;}
.y3b_c01318{bottom:1179.360000px;}
.y40_c01318{bottom:1180.230000px;}
.y3f_c01318{bottom:1181.085000px;}
.y39_c01318{bottom:1194.045000px;}
.y37_c01318{bottom:1194.915000px;}
.y33_c01318{bottom:1195.770000px;}
.y38_c01318{bottom:1196.640000px;}
.y34_c01318{bottom:1199.235000px;}
.y3a_c01318{bottom:1200.090000px;}
.y35_c01318{bottom:1202.685000px;}
.y36_c01318{bottom:1209.600000px;}
.y32_c01318{bottom:1213.920000px;}
.y2e_c01318{bottom:1214.790000px;}
.y2d_c01318{bottom:1216.515000px;}
.y2c_c01318{bottom:1218.240000px;}
.y31_c01318{bottom:1219.110000px;}
.y2f_c01318{bottom:1222.560000px;}
.y30_c01318{bottom:1225.155000px;}
.y28_c01318{bottom:1233.795000px;}
.y2b_c01318{bottom:1234.650000px;}
.y27_c01318{bottom:1235.520000px;}
.y26_c01318{bottom:1236.390000px;}
.y2a_c01318{bottom:1237.245000px;}
.y29_c01318{bottom:1238.115000px;}
.y25_c01318{bottom:1239.840000px;}
.y24_c01318{bottom:1240.710000px;}
.y23_c01318{bottom:1254.525000px;}
.y1f_c01318{bottom:1256.250000px;}
.y20_c01318{bottom:1257.990000px;}
.y22_c01318{bottom:1259.715000px;}
.y21_c01318{bottom:1264.035000px;}
.y1d_c01318{bottom:1274.400000px;}
.y18_c01318{bottom:1275.270000px;}
.y1e_c01318{bottom:1276.125000px;}
.y1c_c01318{bottom:1276.995000px;}
.y19_c01318{bottom:1278.720000px;}
.y16_c01318{bottom:1279.590000px;}
.y1a_c01318{bottom:1280.445000px;}
.y17_c01318{bottom:1281.315000px;}
.y1b_c01318{bottom:1284.765000px;}
.y15_c01318{bottom:1291.680000px;}
.y14_c01318{bottom:1294.275000px;}
.y13_c01318{bottom:1295.130000px;}
.yd_c01318{bottom:1298.595000px;}
.y10_c01318{bottom:1300.320000px;}
.yf_c01318{bottom:1301.190000px;}
.ye_c01318{bottom:1302.045000px;}
.y12_c01318{bottom:1314.150000px;}
.y11_c01318{bottom:1315.005000px;}
.ya_c01318{bottom:1315.875000px;}
.y5_c01318{bottom:1317.600000px;}
.yc_c01318{bottom:1319.325000px;}
.yb_c01318{bottom:1320.195000px;}
.y6_c01318{bottom:1321.050000px;}
.y7_c01318{bottom:1325.370000px;}
.y9_c01318{bottom:1332.285000px;}
.y8_c01318{bottom:1339.200000px;}
.y4_c01318{bottom:1340.070000px;}
.y3_c01318{bottom:1340.925000px;}
.y2_c01318{bottom:1341.795000px;}
.y1d7_c01318{bottom:1372.035000px;}
.y1d6_c01318{bottom:1383.270000px;}
.y1d5_c01318{bottom:1384.125000px;}
.y1_c01318{bottom:1384.995000px;}
.h5_c01318{height:3.110063px;}
.h9_c01318{height:5.399414px;}
.h12_c01318{height:6.209326px;}
.h20_c01318{height:9.340986px;}
.h11_c01318{height:12.418652px;}
.h8_c01318{height:15.550313px;}
.h18_c01318{height:18.681973px;}
.hf_c01318{height:21.759639px;}
.h19_c01318{height:24.891299px;}
.he_c01318{height:27.968965px;}
.h10_c01318{height:31.100625px;}
.h17_c01318{height:34.232285px;}
.h1e_c01318{height:37.309951px;}
.h15_c01318{height:40.441611px;}
.h1d_c01318{height:43.519277px;}
.h13_c01318{height:46.650937px;}
.h7_c01318{height:49.782598px;}
.hd_c01318{height:52.860264px;}
.hc_c01318{height:55.991924px;}
.h2_c01318{height:59.069590px;}
.hb_c01318{height:62.201250px;}
.h14_c01318{height:65.332910px;}
.ha_c01318{height:68.410576px;}
.h6_c01318{height:71.542236px;}
.h3_c01318{height:74.619902px;}
.h1f_c01318{height:77.751563px;}
.h21_c01318{height:80.883223px;}
.h1b_c01318{height:83.960889px;}
.h16_c01318{height:87.092549px;}
.h1c_c01318{height:90.170215px;}
.h1a_c01318{height:93.301875px;}
.h23_c01318{height:96.433535px;}
.h24_c01318{height:99.511201px;}
.h22_c01318{height:102.642861px;}
.h4_c01318{height:124.402500px;}
.h25_c01318{height:139.952812px;}
.h1_c01318{height:1513.500000px;}
.h0_c01318{height:1513.725000px;}
.w1_c01318{width:1076.250000px;}
.w0_c01318{width:1076.550000px;}
.x0_c01318{left:0.000000px;}
.xe7_c01318{left:121.830000px;}
.xe8_c01318{left:129.600000px;}
.xed_c01318{left:133.920000px;}
.xf2_c01318{left:139.965000px;}
.xe9_c01318{left:142.560000px;}
.xf6_c01318{left:146.010000px;}
.xf3_c01318{left:149.475000px;}
.x11c_c01318{left:165.885000px;}
.xee_c01318{left:172.800000px;}
.xef_c01318{left:181.440000px;}
.x43_c01318{left:184.890000px;}
.x3b_c01318{left:190.080000px;}
.xea_c01318{left:196.995000px;}
.xd4_c01318{left:203.040000px;}
.xa5_c01318{left:204.765000px;}
.xb8_c01318{left:211.680000px;}
.xa6_c01318{left:215.130000px;}
.xc5_c01318{left:217.725000px;}
.x35_c01318{left:219.450000px;}
.x9c_c01318{left:221.190000px;}
.x1a_c01318{left:223.770000px;}
.x83_c01318{left:225.510000px;}
.x61_c01318{left:228.090000px;}
.x5a_c01318{left:230.685000px;}
.xd_c01318{left:233.280000px;}
.x2_c01318{left:235.005000px;}
.x1b_c01318{left:237.600000px;}
.x85_c01318{left:240.195000px;}
.x114_c01318{left:242.790000px;}
.x5_c01318{left:244.515000px;}
.x6e_c01318{left:247.965000px;}
.x90_c01318{left:249.690000px;}
.x27_c01318{left:252.285000px;}
.x8a_c01318{left:254.880000px;}
.x5b_c01318{left:257.475000px;}
.x1c_c01318{left:260.925000px;}
.xf4_c01318{left:263.520000px;}
.x8d_c01318{left:265.245000px;}
.x108_c01318{left:266.970000px;}
.x62_c01318{left:268.710000px;}
.x49_c01318{left:272.160000px;}
.xeb_c01318{left:278.205000px;}
.xa0_c01318{left:279.930000px;}
.x3c_c01318{left:281.670000px;}
.xe_c01318{left:290.310000px;}
.x73_c01318{left:294.630000px;}
.xc6_c01318{left:297.210000px;}
.x44_c01318{left:298.950000px;}
.xa1_c01318{left:300.675000px;}
.x50_c01318{left:302.400000px;}
.x7b_c01318{left:304.125000px;}
.xbd_c01318{left:306.720000px;}
.xc1_c01318{left:309.315000px;}
.xa7_c01318{left:311.040000px;}
.xf_c01318{left:313.635000px;}
.x4a_c01318{left:315.360000px;}
.xc7_c01318{left:317.955000px;}
.x91_c01318{left:320.550000px;}
.xfc_c01318{left:322.275000px;}
.x68_c01318{left:324.000000px;}
.x36_c01318{left:328.320000px;}
.x118_c01318{left:332.640000px;}
.xfd_c01318{left:334.365000px;}
.xf5_c01318{left:336.960000px;}
.x4b_c01318{left:342.150000px;}
.x2a_c01318{left:344.730000px;}
.x8b_c01318{left:347.325000px;}
.x63_c01318{left:349.920000px;}
.x51_c01318{left:352.515000px;}
.x74_c01318{left:355.965000px;}
.x64_c01318{left:358.560000px;}
.xcc_c01318{left:360.285000px;}
.x3d_c01318{left:362.880000px;}
.x7c_c01318{left:364.605000px;}
.x92_c01318{left:368.070000px;}
.xbe_c01318{left:369.795000px;}
.x3e_c01318{left:371.520000px;}
.x45_c01318{left:374.115000px;}
.x3_c01318{left:378.435000px;}
.x10_c01318{left:381.030000px;}
.x7d_c01318{left:382.755000px;}
.xa2_c01318{left:387.075000px;}
.x5c_c01318{left:389.670000px;}
.x4c_c01318{left:391.395000px;}
.xb5_c01318{left:393.990000px;}
.xe2_c01318{left:396.570000px;}
.xc2_c01318{left:399.165000px;}
.x69_c01318{left:403.485000px;}
.xc8_c01318{left:405.210000px;}
.xe5_c01318{left:408.675000px;}
.x65_c01318{left:410.400000px;}
.x110_c01318{left:412.995000px;}
.xa3_c01318{left:415.590000px;}
.x10a_c01318{left:417.315000px;}
.x2b_c01318{left:419.910000px;}
.x3f_c01318{left:421.635000px;}
.xcd_c01318{left:423.360000px;}
.x6f_c01318{left:425.955000px;}
.xf0_c01318{left:427.680000px;}
.xdc_c01318{left:430.275000px;}
.xb1_c01318{left:432.870000px;}
.x75_c01318{left:434.595000px;}
.x1d_c01318{left:436.320000px;}
.x11_c01318{left:438.045000px;}
.x4d_c01318{left:441.510000px;}
.xbf_c01318{left:443.235000px;}
.x52_c01318{left:445.830000px;}
.x70_c01318{left:449.280000px;}
.xd9_c01318{left:451.005000px;}
.xdd_c01318{left:452.730000px;}
.x6_c01318{left:454.470000px;}
.x1_c01318{left:456.195000px;}
.x1e_c01318{left:457.920000px;}
.x109_c01318{left:459.645000px;}
.x46_c01318{left:461.370000px;}
.xb9_c01318{left:463.110000px;}
.x81_c01318{left:466.560000px;}
.x102_c01318{left:470.880000px;}
.x12_c01318{left:475.200000px;}
.x28_c01318{left:477.795000px;}
.x10b_c01318{left:479.520000px;}
.xa4_c01318{left:482.115000px;}
.x13_c01318{left:484.710000px;}
.x82_c01318{left:486.435000px;}
.x1f_c01318{left:489.030000px;}
.x11a_c01318{left:490.755000px;}
.x76_c01318{left:492.480000px;}
.x2c_c01318{left:494.205000px;}
.x7e_c01318{left:496.800000px;}
.xc3_c01318{left:498.525000px;}
.xba_c01318{left:501.990000px;}
.x53_c01318{left:505.440000px;}
.x97_c01318{left:508.035000px;}
.x29_c01318{left:509.760000px;}
.x5d_c01318{left:512.355000px;}
.x7_c01318{left:514.950000px;}
.xac_c01318{left:517.530000px;}
.x113_c01318{left:522.720000px;}
.xfe_c01318{left:525.315000px;}
.x14_c01318{left:527.040000px;}
.x8_c01318{left:528.765000px;}
.x103_c01318{left:533.085000px;}
.xb2_c01318{left:537.405000px;}
.x8e_c01318{left:539.130000px;}
.x9_c01318{left:540.870000px;}
.x10d_c01318{left:542.595000px;}
.x9d_c01318{left:545.190000px;}
.x20_c01318{left:546.915000px;}
.x93_c01318{left:548.640000px;}
.x6a_c01318{left:551.235675px;}
.x111_c01318{left:552.960000px;}
.x77_c01318{left:554.685000px;}
.x15_c01318{left:557.280000px;}
.x2d_c01318{left:559.005000px;}
.x21_c01318{left:560.730000px;}
.xcb_c01318{left:564.195000px;}
.xf7_c01318{left:565.920000px;}
.x115_c01318{left:569.370000px;}
.x98_c01318{left:571.110000px;}
.xa8_c01318{left:572.835000px;}
.x10c_c01318{left:575.430000px;}
.x10e_c01318{left:577.155000px;}
.x54_c01318{left:578.880000px;}
.x2e_c01318{left:581.475000px;}
.x4e_c01318{left:583.200000px;}
.x94_c01318{left:584.925000px;}
.xce_c01318{left:586.650000px;}
.xff_c01318{left:590.115000px;}
.x86_c01318{left:591.840000px;}
.xde_c01318{left:594.435000px;}
.x9e_c01318{left:596.160000px;}
.x47_c01318{left:601.350000px;}
.x55_c01318{left:603.075000px;}
.xe3_c01318{left:604.800000px;}
.xbb_c01318{left:606.525000px;}
.xf8_c01318{left:610.845000px;}
.xad_c01318{left:613.440000px;}
.x2f_c01318{left:615.165000px;}
.x112_c01318{left:617.760000px;}
.x9f_c01318{left:621.210000px;}
.x22_c01318{left:625.530000px;}
.x5e_c01318{left:628.125000px;}
.x6b_c01318{left:629.850000px;}
.xd5_c01318{left:631.590000px;}
.x16_c01318{left:634.170000px;}
.xb6_c01318{left:635.910000px;}
.xae_c01318{left:637.635000px;}
.x116_c01318{left:640.230000px;}
.x66_c01318{left:646.275000px;}
.xe6_c01318{left:648.000000px;}
.x5f_c01318{left:649.725000px;}
.x99_c01318{left:653.190000px;}
.xda_c01318{left:654.915000px;}
.xa9_c01318{left:657.510000px;}
.xaf_c01318{left:659.235000px;}
.xd2_c01318{left:660.960000px;}
.xa_c01318{left:663.555000px;}
.x48_c01318{left:666.150000px;}
.x37_c01318{left:668.730000px;}
.x7f_c01318{left:672.195000px;}
.x23_c01318{left:674.790000px;}
.x71_c01318{left:677.370000px;}
.xb3_c01318{left:680.835000px;}
.x4f_c01318{left:682.560000px;}
.x95_c01318{left:685.155000px;}
.x60_c01318{left:687.750000px;}
.xe4_c01318{left:689.475000px;}
.x104_c01318{left:692.925000px;}
.xdf_c01318{left:694.650000px;}
.x30_c01318{left:696.390000px;}
.xbc_c01318{left:699.840000px;}
.xaa_c01318{left:701.565000px;}
.x38_c01318{left:705.885000px;}
.xf1_c01318{left:708.480000px;}
.xcf_c01318{left:711.075000px;}
.x78_c01318{left:712.800000px;}
.x67_c01318{left:716.250000px;}
.x17_c01318{left:718.845000px;}
.x56_c01318{left:720.570000px;}
.x6c_c01318{left:723.165000px;}
.x72_c01318{left:727.485000px;}
.xc4_c01318{left:729.210000px;}
.x40_c01318{left:732.675000px;}
.xd6_c01318{left:736.125000px;}
.x39_c01318{left:737.850000px;}
.x80_c01318{left:743.040000px;}
.x8c_c01318{left:744.765000px;}
.x24_c01318{left:746.490000px;}
.x57_c01318{left:748.230000px;}
.x100_c01318{left:749.955000px;}
.x84_c01318{left:751.680000px;}
.x105_c01318{left:754.275000px;}
.xb_c01318{left:756.000000px;}
.x31_c01318{left:759.450000px;}
.x9a_c01318{left:761.190000px;}
.xdb_c01318{left:765.510000px;}
.xe0_c01318{left:768.960000px;}
.xc9_c01318{left:770.685000px;}
.x25_c01318{left:772.410000px;}
.xb7_c01318{left:775.005000px;}
.x11b_c01318{left:777.600000px;}
.x32_c01318{left:780.195000px;}
.x87_c01318{left:782.790000px;}
.xb4_c01318{left:786.240000px;}
.x79_c01318{left:791.430000px;}
.xf9_c01318{left:794.010000px;}
.x18_c01318{left:795.750000px;}
.x88_c01318{left:797.475000px;}
.x7a_c01318{left:799.200000px;}
.xb0_c01318{left:800.925000px;}
.x10f_c01318{left:802.650000px;}
.x3a_c01318{left:804.390000px;}
.xab_c01318{left:806.115000px;}
.x41_c01318{left:808.710000px;}
.x58_c01318{left:810.435000px;}
.x96_c01318{left:812.160000px;}
.xc_c01318{left:813.885000px;}
.x42_c01318{left:816.480000px;}
.x106_c01318{left:818.205000px;}
.x6d_c01318{left:820.800000px;}
.xfa_c01318{left:822.525000px;}
.x4_c01318{left:825.120000px;}
.x119_c01318{left:826.845000px;}
.x59_c01318{left:829.440000px;}
.xc0_c01318{left:831.165000px;}
.x19_c01318{left:833.760000px;}
.xd7_c01318{left:835.485000px;}
.x33_c01318{left:837.210000px;}
.x89_c01318{left:839.805000px;}
.x8f_c01318{left:841.530000px;}
.xca_c01318{left:844.125000px;}
.x117_c01318{left:850.170000px;}
.x101_c01318{left:851.910000px;}
.xe1_c01318{left:853.635000px;}
.xec_c01318{left:855.360000px;}
.x9b_c01318{left:857.085000px;}
.xfb_c01318{left:862.275000px;}
.xd3_c01318{left:866.595000px;}
.x34_c01318{left:871.770000px;}
.x26_c01318{left:877.830000px;}
.x107_c01318{left:880.410000px;}
.xd0_c01318{left:884.730000px;}
.xd8_c01318{left:890.790000px;}
.xd1_c01318{left:910.650000px;}
.x11e_c01318{left:921.885000px;}
.x11f_c01318{left:932.250000px;}
.x11d_c01318{left:982.365000px;}
.x120_c01318{left:1044.570000px;}
@media print{
.v0_c01318{vertical-align:0.000000pt;}
.ls2_c01318{letter-spacing:0.000000pt;}
.ls0_c01318{letter-spacing:25.015733pt;}
.ls1_c01318{letter-spacing:322.082667pt;}
.ws0_c01318{word-spacing:0.000000pt;}
.fs3_c01318{font-size:3.072000pt;}
.fs7_c01318{font-size:5.333333pt;}
.fs10_c01318{font-size:6.133333pt;}
.fs1e_c01318{font-size:9.226667pt;}
.fsf_c01318{font-size:12.266667pt;}
.fs6_c01318{font-size:15.360000pt;}
.fs16_c01318{font-size:18.453333pt;}
.fsd_c01318{font-size:21.493333pt;}
.fs17_c01318{font-size:24.586667pt;}
.fsc_c01318{font-size:27.626667pt;}
.fse_c01318{font-size:30.720000pt;}
.fs15_c01318{font-size:33.813333pt;}
.fs1c_c01318{font-size:36.853333pt;}
.fs13_c01318{font-size:39.946667pt;}
.fs1b_c01318{font-size:42.986667pt;}
.fs11_c01318{font-size:46.080000pt;}
.fs5_c01318{font-size:49.173333pt;}
.fsb_c01318{font-size:52.213333pt;}
.fsa_c01318{font-size:55.306667pt;}
.fs0_c01318{font-size:58.346667pt;}
.fs9_c01318{font-size:61.440000pt;}
.fs12_c01318{font-size:64.533333pt;}
.fs8_c01318{font-size:67.573333pt;}
.fs4_c01318{font-size:70.666667pt;}
.fs1_c01318{font-size:73.706667pt;}
.fs1d_c01318{font-size:76.800000pt;}
.fs1f_c01318{font-size:79.893333pt;}
.fs19_c01318{font-size:82.933333pt;}
.fs14_c01318{font-size:86.026667pt;}
.fs1a_c01318{font-size:89.066667pt;}
.fs18_c01318{font-size:92.160000pt;}
.fs21_c01318{font-size:95.253333pt;}
.fs22_c01318{font-size:98.293333pt;}
.fs20_c01318{font-size:101.386667pt;}
.fs2_c01318{font-size:122.880000pt;}
.fs23_c01318{font-size:138.240000pt;}
.y0_c01318{bottom:0.000000pt;}
.y1d4_c01318{bottom:155.906667pt;}
.y1d3_c01318{bottom:156.666667pt;}
.y1d2_c01318{bottom:160.506667pt;}
.y1d0_c01318{bottom:161.280000pt;}
.y1d1_c01318{bottom:164.346667pt;}
.y1cf_c01318{bottom:166.653333pt;}
.y1ce_c01318{bottom:167.426667pt;}
.y1d9_c01318{bottom:175.106667pt;}
.y1cc_c01318{bottom:178.173333pt;}
.y1ca_c01318{bottom:178.946667pt;}
.y1c8_c01318{bottom:179.706667pt;}
.y1cd_c01318{bottom:180.480000pt;}
.y1cb_c01318{bottom:182.786667pt;}
.y1c9_c01318{bottom:183.546667pt;}
.y1c4_c01318{bottom:195.840000pt;}
.y1c1_c01318{bottom:197.373333pt;}
.y1c3_c01318{bottom:198.146667pt;}
.y1c6_c01318{bottom:198.906667pt;}
.y1c2_c01318{bottom:199.680000pt;}
.y1c7_c01318{bottom:201.986667pt;}
.y1c5_c01318{bottom:202.746667pt;}
.y1c0_c01318{bottom:206.586667pt;}
.y1bf_c01318{bottom:208.893333pt;}
.y1be_c01318{bottom:216.573333pt;}
.y1ba_c01318{bottom:217.346667pt;}
.y1bc_c01318{bottom:218.880000pt;}
.y1bd_c01318{bottom:219.653333pt;}
.y1bb_c01318{bottom:220.413333pt;}
.y1b4_c01318{bottom:231.933333pt;}
.y1b9_c01318{bottom:233.466667pt;}
.y1b6_c01318{bottom:234.240000pt;}
.y1b3_c01318{bottom:235.013333pt;}
.y1b5_c01318{bottom:238.080000pt;}
.y1b8_c01318{bottom:238.853333pt;}
.y1b7_c01318{bottom:239.613333pt;}
.y1ae_c01318{bottom:252.666667pt;}
.y1b2_c01318{bottom:253.440000pt;}
.y1ac_c01318{bottom:254.213333pt;}
.y1af_c01318{bottom:254.973333pt;}
.y1b1_c01318{bottom:255.746667pt;}
.y1ad_c01318{bottom:256.506667pt;}
.y1b0_c01318{bottom:257.280000pt;}
.y1aa_c01318{bottom:269.573333pt;}
.y1a9_c01318{bottom:270.333333pt;}
.y1a3_c01318{bottom:271.106667pt;}
.y1a7_c01318{bottom:271.866667pt;}
.y1ab_c01318{bottom:272.640000pt;}
.y1a8_c01318{bottom:273.413333pt;}
.y1a4_c01318{bottom:274.173333pt;}
.y1a2_c01318{bottom:275.706667pt;}
.y1a6_c01318{bottom:278.013333pt;}
.y1a5_c01318{bottom:280.320000pt;}
.y19f_c01318{bottom:288.000000pt;}
.y1a0_c01318{bottom:288.773333pt;}
.y19b_c01318{bottom:290.306667pt;}
.y19a_c01318{bottom:291.066667pt;}
.y19d_c01318{bottom:291.840000pt;}
.y19c_c01318{bottom:292.613333pt;}
.y1a1_c01318{bottom:293.373333pt;}
.y19e_c01318{bottom:303.360000pt;}
.y199_c01318{bottom:304.893333pt;}
.y194_c01318{bottom:305.666667pt;}
.y191_c01318{bottom:306.426667pt;}
.y193_c01318{bottom:307.200000pt;}
.y198_c01318{bottom:307.973333pt;}
.y192_c01318{bottom:308.733333pt;}
.y197_c01318{bottom:309.506667pt;}
.y195_c01318{bottom:310.266667pt;}
.y196_c01318{bottom:313.346667pt;}
.y190_c01318{bottom:322.560000pt;}
.y189_c01318{bottom:324.093333pt;}
.y18d_c01318{bottom:324.866667pt;}
.y18e_c01318{bottom:325.626667pt;}
.y18b_c01318{bottom:327.173333pt;}
.y18f_c01318{bottom:328.706667pt;}
.y18a_c01318{bottom:329.466667pt;}
.y18c_c01318{bottom:330.240000pt;}
.y187_c01318{bottom:340.226667pt;}
.y183_c01318{bottom:342.533333pt;}
.y181_c01318{bottom:343.293333pt;}
.y184_c01318{bottom:344.066667pt;}
.y182_c01318{bottom:344.826667pt;}
.y188_c01318{bottom:346.373333pt;}
.y180_c01318{bottom:347.133333pt;}
.y186_c01318{bottom:347.906667pt;}
.y185_c01318{bottom:348.666667pt;}
.y178_c01318{bottom:355.586667pt;}
.y172_c01318{bottom:356.346667pt;}
.y17c_c01318{bottom:357.120000pt;}
.y173_c01318{bottom:357.893333pt;}
.y176_c01318{bottom:358.653333pt;}
.y175_c01318{bottom:359.426667pt;}
.y174_c01318{bottom:360.960000pt;}
.y17e_c01318{bottom:364.026667pt;}
.y17b_c01318{bottom:364.800000pt;}
.y17f_c01318{bottom:365.573333pt;}
.y17d_c01318{bottom:366.333333pt;}
.y17a_c01318{bottom:370.173333pt;}
.y179_c01318{bottom:370.946667pt;}
.y177_c01318{bottom:376.320000pt;}
.y16c_c01318{bottom:377.853333pt;}
.y16e_c01318{bottom:378.626667pt;}
.y171_c01318{bottom:379.386667pt;}
.y16d_c01318{bottom:380.933333pt;}
.y16f_c01318{bottom:381.693333pt;}
.y170_c01318{bottom:383.226667pt;}
.y16a_c01318{bottom:393.986667pt;}
.y16b_c01318{bottom:395.520000pt;}
.y162_c01318{bottom:397.053333pt;}
.y167_c01318{bottom:398.586667pt;}
.y166_c01318{bottom:399.360000pt;}
.y169_c01318{bottom:400.133333pt;}
.y168_c01318{bottom:400.893333pt;}
.y15c_c01318{bottom:401.666667pt;}
.y165_c01318{bottom:402.426667pt;}
.y163_c01318{bottom:403.200000pt;}
.y164_c01318{bottom:406.266667pt;}
.y15f_c01318{bottom:410.106667pt;}
.y159_c01318{bottom:410.880000pt;}
.y158_c01318{bottom:411.653333pt;}
.y15b_c01318{bottom:412.413333pt;}
.y15d_c01318{bottom:414.720000pt;}
.y160_c01318{bottom:417.786667pt;}
.y15e_c01318{bottom:419.333333pt;}
.y161_c01318{bottom:420.093333pt;}
.y15a_c01318{bottom:423.933333pt;}
.y157_c01318{bottom:433.146667pt;}
.y151_c01318{bottom:434.693333pt;}
.y156_c01318{bottom:436.226667pt;}
.y155_c01318{bottom:437.760000pt;}
.y150_c01318{bottom:439.293333pt;}
.y152_c01318{bottom:440.066667pt;}
.y14f_c01318{bottom:441.600000pt;}
.y153_c01318{bottom:445.440000pt;}
.y154_c01318{bottom:446.213333pt;}
.y14e_c01318{bottom:450.813333pt;}
.y145_c01318{bottom:452.346667pt;}
.y146_c01318{bottom:453.120000pt;}
.y14c_c01318{bottom:453.893333pt;}
.y14b_c01318{bottom:456.186667pt;}
.y144_c01318{bottom:456.960000pt;}
.y149_c01318{bottom:457.733333pt;}
.y14d_c01318{bottom:458.493333pt;}
.y14a_c01318{bottom:459.266667pt;}
.y148_c01318{bottom:461.573333pt;}
.y1d8_c01318{bottom:462.333333pt;}
.y147_c01318{bottom:463.866667pt;}
.y142_c01318{bottom:470.786667pt;}
.y143_c01318{bottom:472.320000pt;}
.y141_c01318{bottom:476.160000pt;}
.y13f_c01318{bottom:479.226667pt;}
.y140_c01318{bottom:480.000000pt;}
.y13d_c01318{bottom:483.066667pt;}
.y13c_c01318{bottom:484.613333pt;}
.y13b_c01318{bottom:486.146667pt;}
.y13e_c01318{bottom:487.680000pt;}
.y136_c01318{bottom:488.453333pt;}
.y134_c01318{bottom:490.746667pt;}
.y137_c01318{bottom:491.520000pt;}
.y138_c01318{bottom:492.293333pt;}
.y135_c01318{bottom:493.826667pt;}
.y139_c01318{bottom:494.586667pt;}
.y13a_c01318{bottom:504.573333pt;}
.y131_c01318{bottom:506.106667pt;}
.y12d_c01318{bottom:506.880000pt;}
.y130_c01318{bottom:508.413333pt;}
.y133_c01318{bottom:509.946667pt;}
.y132_c01318{bottom:510.720000pt;}
.y12e_c01318{bottom:511.493333pt;}
.y12f_c01318{bottom:512.253333pt;}
.y12b_c01318{bottom:523.773333pt;}
.y129_c01318{bottom:524.546667pt;}
.y127_c01318{bottom:525.306667pt;}
.y12a_c01318{bottom:526.080000pt;}
.y126_c01318{bottom:526.853333pt;}
.y125_c01318{bottom:527.613333pt;}
.y128_c01318{bottom:529.146667pt;}
.y124_c01318{bottom:531.453333pt;}
.y12c_c01318{bottom:533.760000pt;}
.y123_c01318{bottom:540.666667pt;}
.y122_c01318{bottom:542.973333pt;}
.y11f_c01318{bottom:543.746667pt;}
.y11b_c01318{bottom:544.506667pt;}
.y11e_c01318{bottom:545.280000pt;}
.y11c_c01318{bottom:546.053333pt;}
.y11d_c01318{bottom:548.346667pt;}
.y121_c01318{bottom:550.653333pt;}
.y11a_c01318{bottom:555.266667pt;}
.y120_c01318{bottom:557.573333pt;}
.y119_c01318{bottom:559.106667pt;}
.y118_c01318{bottom:559.866667pt;}
.y116_c01318{bottom:562.173333pt;}
.y113_c01318{bottom:562.946667pt;}
.y114_c01318{bottom:564.480000pt;}
.y115_c01318{bottom:565.253333pt;}
.y117_c01318{bottom:566.013333pt;}
.y112_c01318{bottom:576.773333pt;}
.y10d_c01318{bottom:578.306667pt;}
.y110_c01318{bottom:579.066667pt;}
.y10c_c01318{bottom:579.840000pt;}
.y10e_c01318{bottom:580.613333pt;}
.y10f_c01318{bottom:582.906667pt;}
.y111_c01318{bottom:583.680000pt;}
.y10a_c01318{bottom:594.426667pt;}
.y105_c01318{bottom:595.973333pt;}
.y108_c01318{bottom:596.733333pt;}
.y103_c01318{bottom:597.506667pt;}
.y106_c01318{bottom:598.266667pt;}
.y10b_c01318{bottom:599.040000pt;}
.y107_c01318{bottom:599.813333pt;}
.y109_c01318{bottom:600.573333pt;}
.y104_c01318{bottom:601.346667pt;}
.y101_c01318{bottom:612.093333pt;}
.yfc_c01318{bottom:612.866667pt;}
.yfd_c01318{bottom:613.626667pt;}
.yfe_c01318{bottom:615.173333pt;}
.yff_c01318{bottom:616.706667pt;}
.y102_c01318{bottom:617.466667pt;}
.yfb_c01318{bottom:618.240000pt;}
.y100_c01318{bottom:619.013333pt;}
.yfa_c01318{bottom:629.760000pt;}
.yf8_c01318{bottom:631.293333pt;}
.yf6_c01318{bottom:632.066667pt;}
.yf9_c01318{bottom:632.826667pt;}
.yf7_c01318{bottom:634.373333pt;}
.yef_c01318{bottom:648.186667pt;}
.yf4_c01318{bottom:648.960000pt;}
.yf0_c01318{bottom:649.733333pt;}
.yf2_c01318{bottom:651.266667pt;}
.yf5_c01318{bottom:652.026667pt;}
.yed_c01318{bottom:652.800000pt;}
.yee_c01318{bottom:653.573333pt;}
.yf3_c01318{bottom:654.333333pt;}
.yf1_c01318{bottom:656.640000pt;}
.yec_c01318{bottom:662.786667pt;}
.yeb_c01318{bottom:666.626667pt;}
.ye6_c01318{bottom:667.386667pt;}
.yea_c01318{bottom:668.160000pt;}
.ye7_c01318{bottom:669.693333pt;}
.ye5_c01318{bottom:670.466667pt;}
.ye9_c01318{bottom:671.226667pt;}
.ye8_c01318{bottom:672.000000pt;}
.ye4_c01318{bottom:672.773333pt;}
.ydf_c01318{bottom:684.293333pt;}
.ydc_c01318{bottom:685.826667pt;}
.ye1_c01318{bottom:686.586667pt;}
.ydd_c01318{bottom:687.360000pt;}
.ye0_c01318{bottom:688.133333pt;}
.ye3_c01318{bottom:688.893333pt;}
.ye2_c01318{bottom:689.666667pt;}
.yde_c01318{bottom:690.426667pt;}
.ydb_c01318{bottom:692.733333pt;}
.yd5_c01318{bottom:701.946667pt;}
.yd8_c01318{bottom:702.720000pt;}
.yd3_c01318{bottom:704.253333pt;}
.yd2_c01318{bottom:705.026667pt;}
.yda_c01318{bottom:705.786667pt;}
.yd9_c01318{bottom:706.560000pt;}
.yd4_c01318{bottom:707.333333pt;}
.yd7_c01318{bottom:708.866667pt;}
.yd6_c01318{bottom:715.013333pt;}
.yd1_c01318{bottom:719.613333pt;}
.ycd_c01318{bottom:720.386667pt;}
.ycc_c01318{bottom:721.146667pt;}
.ycb_c01318{bottom:721.920000pt;}
.yce_c01318{bottom:722.693333pt;}
.yd0_c01318{bottom:723.453333pt;}
.ycf_c01318{bottom:724.986667pt;}
.yca_c01318{bottom:737.280000pt;}
.yc8_c01318{bottom:738.053333pt;}
.yc7_c01318{bottom:738.813333pt;}
.yc4_c01318{bottom:739.586667pt;}
.yc2_c01318{bottom:741.120000pt;}
.yc9_c01318{bottom:741.893333pt;}
.yc1_c01318{bottom:742.653333pt;}
.yc5_c01318{bottom:743.426667pt;}
.yc3_c01318{bottom:744.186667pt;}
.yc6_c01318{bottom:754.173333pt;}
.ybf_c01318{bottom:755.706667pt;}
.yc0_c01318{bottom:756.480000pt;}
.ybd_c01318{bottom:758.013333pt;}
.ybe_c01318{bottom:758.786667pt;}
.ybc_c01318{bottom:761.093333pt;}
.yba_c01318{bottom:761.853333pt;}
.ybb_c01318{bottom:762.626667pt;}
.yb9_c01318{bottom:766.466667pt;}
.yb5_c01318{bottom:776.453333pt;}
.yb4_c01318{bottom:777.213333pt;}
.yb3_c01318{bottom:777.986667pt;}
.yb8_c01318{bottom:778.746667pt;}
.yb7_c01318{bottom:779.520000pt;}
.yb6_c01318{bottom:780.293333pt;}
.yb2_c01318{bottom:791.040000pt;}
.yb0_c01318{bottom:791.813333pt;}
.yb1_c01318{bottom:792.573333pt;}
.yad_c01318{bottom:793.346667pt;}
.yaf_c01318{bottom:794.106667pt;}
.ya9_c01318{bottom:794.880000pt;}
.yae_c01318{bottom:795.653333pt;}
.yab_c01318{bottom:796.413333pt;}
.yac_c01318{bottom:797.186667pt;}
.yaa_c01318{bottom:797.946667pt;}
.ya8_c01318{bottom:799.493333pt;}
.ya3_c01318{bottom:810.240000pt;}
.ya0_c01318{bottom:811.013333pt;}
.ya1_c01318{bottom:811.773333pt;}
.ya6_c01318{bottom:812.546667pt;}
.ya7_c01318{bottom:813.306667pt;}
.ya4_c01318{bottom:814.080000pt;}
.ya2_c01318{bottom:816.386667pt;}
.ya5_c01318{bottom:827.133333pt;}
.y9f_c01318{bottom:828.666667pt;}
.y9e_c01318{bottom:829.440000pt;}
.y99_c01318{bottom:830.973333pt;}
.y9d_c01318{bottom:831.746667pt;}
.y9b_c01318{bottom:832.506667pt;}
.y98_c01318{bottom:834.813333pt;}
.y93_c01318{bottom:835.586667pt;}
.y9c_c01318{bottom:836.346667pt;}
.y97_c01318{bottom:837.893333pt;}
.y96_c01318{bottom:839.426667pt;}
.y94_c01318{bottom:840.186667pt;}
.y95_c01318{bottom:840.960000pt;}
.y9a_c01318{bottom:841.733333pt;}
.y92_c01318{bottom:844.800000pt;}
.y8d_c01318{bottom:846.333333pt;}
.y8f_c01318{bottom:847.106667pt;}
.y8e_c01318{bottom:847.866667pt;}
.y90_c01318{bottom:849.413333pt;}
.y91_c01318{bottom:850.173333pt;}
.y89_c01318{bottom:864.000000pt;}
.y8a_c01318{bottom:864.773333pt;}
.y86_c01318{bottom:865.533333pt;}
.y8c_c01318{bottom:867.066667pt;}
.y8b_c01318{bottom:867.840000pt;}
.y87_c01318{bottom:868.613333pt;}
.y85_c01318{bottom:872.453333pt;}
.y82_c01318{bottom:880.893333pt;}
.y84_c01318{bottom:881.666667pt;}
.y88_c01318{bottom:882.426667pt;}
.y7d_c01318{bottom:883.200000pt;}
.y80_c01318{bottom:883.973333pt;}
.y83_c01318{bottom:885.506667pt;}
.y7f_c01318{bottom:886.266667pt;}
.y7e_c01318{bottom:887.040000pt;}
.y81_c01318{bottom:887.813333pt;}
.y7c_c01318{bottom:900.093333pt;}
.y7b_c01318{bottom:900.866667pt;}
.y7a_c01318{bottom:901.626667pt;}
.y78_c01318{bottom:902.400000pt;}
.y76_c01318{bottom:903.173333pt;}
.y77_c01318{bottom:903.933333pt;}
.y79_c01318{bottom:904.706667pt;}
.y74_c01318{bottom:911.613333pt;}
.y73_c01318{bottom:912.386667pt;}
.y70_c01318{bottom:913.146667pt;}
.y72_c01318{bottom:913.920000pt;}
.y6f_c01318{bottom:915.453333pt;}
.y6e_c01318{bottom:916.986667pt;}
.y71_c01318{bottom:919.293333pt;}
.y75_c01318{bottom:928.506667pt;}
.y6b_c01318{bottom:935.426667pt;}
.y69_c01318{bottom:936.186667pt;}
.y68_c01318{bottom:936.960000pt;}
.y6d_c01318{bottom:938.493333pt;}
.y6c_c01318{bottom:940.026667pt;}
.y6a_c01318{bottom:940.800000pt;}
.y67_c01318{bottom:953.093333pt;}
.y66_c01318{bottom:953.853333pt;}
.y65_c01318{bottom:954.626667pt;}
.y60_c01318{bottom:955.386667pt;}
.y5f_c01318{bottom:956.160000pt;}
.y64_c01318{bottom:956.933333pt;}
.y63_c01318{bottom:957.693333pt;}
.y62_c01318{bottom:958.466667pt;}
.y61_c01318{bottom:960.773333pt;}
.y5e_c01318{bottom:970.746667pt;}
.y5c_c01318{bottom:971.520000pt;}
.y5a_c01318{bottom:972.293333pt;}
.y5b_c01318{bottom:973.053333pt;}
.y59_c01318{bottom:974.586667pt;}
.y5d_c01318{bottom:976.893333pt;}
.y58_c01318{bottom:984.573333pt;}
.y56_c01318{bottom:985.346667pt;}
.y55_c01318{bottom:986.106667pt;}
.y51_c01318{bottom:986.880000pt;}
.y52_c01318{bottom:987.653333pt;}
.y53_c01318{bottom:988.413333pt;}
.y54_c01318{bottom:989.186667pt;}
.y57_c01318{bottom:994.560000pt;}
.y50_c01318{bottom:1007.613333pt;}
.y4f_c01318{bottom:1008.386667pt;}
.y4c_c01318{bottom:1009.146667pt;}
.y4e_c01318{bottom:1010.693333pt;}
.y4b_c01318{bottom:1011.453333pt;}
.y4d_c01318{bottom:1012.226667pt;}
.y4a_c01318{bottom:1012.986667pt;}
.y49_c01318{bottom:1013.760000pt;}
.y46_c01318{bottom:1026.053333pt;}
.y48_c01318{bottom:1026.813333pt;}
.y41_c01318{bottom:1027.586667pt;}
.y47_c01318{bottom:1029.120000pt;}
.y42_c01318{bottom:1032.186667pt;}
.y44_c01318{bottom:1033.733333pt;}
.y45_c01318{bottom:1035.266667pt;}
.y43_c01318{bottom:1042.173333pt;}
.y3e_c01318{bottom:1043.706667pt;}
.y3c_c01318{bottom:1044.480000pt;}
.y3d_c01318{bottom:1047.546667pt;}
.y3b_c01318{bottom:1048.320000pt;}
.y40_c01318{bottom:1049.093333pt;}
.y3f_c01318{bottom:1049.853333pt;}
.y39_c01318{bottom:1061.373333pt;}
.y37_c01318{bottom:1062.146667pt;}
.y33_c01318{bottom:1062.906667pt;}
.y38_c01318{bottom:1063.680000pt;}
.y34_c01318{bottom:1065.986667pt;}
.y3a_c01318{bottom:1066.746667pt;}
.y35_c01318{bottom:1069.053333pt;}
.y36_c01318{bottom:1075.200000pt;}
.y32_c01318{bottom:1079.040000pt;}
.y2e_c01318{bottom:1079.813333pt;}
.y2d_c01318{bottom:1081.346667pt;}
.y2c_c01318{bottom:1082.880000pt;}
.y31_c01318{bottom:1083.653333pt;}
.y2f_c01318{bottom:1086.720000pt;}
.y30_c01318{bottom:1089.026667pt;}
.y28_c01318{bottom:1096.706667pt;}
.y2b_c01318{bottom:1097.466667pt;}
.y27_c01318{bottom:1098.240000pt;}
.y26_c01318{bottom:1099.013333pt;}
.y2a_c01318{bottom:1099.773333pt;}
.y29_c01318{bottom:1100.546667pt;}
.y25_c01318{bottom:1102.080000pt;}
.y24_c01318{bottom:1102.853333pt;}
.y23_c01318{bottom:1115.133333pt;}
.y1f_c01318{bottom:1116.666667pt;}
.y20_c01318{bottom:1118.213333pt;}
.y22_c01318{bottom:1119.746667pt;}
.y21_c01318{bottom:1123.586667pt;}
.y1d_c01318{bottom:1132.800000pt;}
.y18_c01318{bottom:1133.573333pt;}
.y1e_c01318{bottom:1134.333333pt;}
.y1c_c01318{bottom:1135.106667pt;}
.y19_c01318{bottom:1136.640000pt;}
.y16_c01318{bottom:1137.413333pt;}
.y1a_c01318{bottom:1138.173333pt;}
.y17_c01318{bottom:1138.946667pt;}
.y1b_c01318{bottom:1142.013333pt;}
.y15_c01318{bottom:1148.160000pt;}
.y14_c01318{bottom:1150.466667pt;}
.y13_c01318{bottom:1151.226667pt;}
.yd_c01318{bottom:1154.306667pt;}
.y10_c01318{bottom:1155.840000pt;}
.yf_c01318{bottom:1156.613333pt;}
.ye_c01318{bottom:1157.373333pt;}
.y12_c01318{bottom:1168.133333pt;}
.y11_c01318{bottom:1168.893333pt;}
.ya_c01318{bottom:1169.666667pt;}
.y5_c01318{bottom:1171.200000pt;}
.yc_c01318{bottom:1172.733333pt;}
.yb_c01318{bottom:1173.506667pt;}
.y6_c01318{bottom:1174.266667pt;}
.y7_c01318{bottom:1178.106667pt;}
.y9_c01318{bottom:1184.253333pt;}
.y8_c01318{bottom:1190.400000pt;}
.y4_c01318{bottom:1191.173333pt;}
.y3_c01318{bottom:1191.933333pt;}
.y2_c01318{bottom:1192.706667pt;}
.y1d7_c01318{bottom:1219.586667pt;}
.y1d6_c01318{bottom:1229.573333pt;}
.y1d5_c01318{bottom:1230.333333pt;}
.y1_c01318{bottom:1231.106667pt;}
.h5_c01318{height:2.764500pt;}
.h9_c01318{height:4.799479pt;}
.h12_c01318{height:5.519401pt;}
.h20_c01318{height:8.303099pt;}
.h11_c01318{height:11.038802pt;}
.h8_c01318{height:13.822500pt;}
.h18_c01318{height:16.606198pt;}
.hf_c01318{height:19.341901pt;}
.h19_c01318{height:22.125599pt;}
.he_c01318{height:24.861302pt;}
.h10_c01318{height:27.645000pt;}
.h17_c01318{height:30.428698pt;}
.h1e_c01318{height:33.164401pt;}
.h15_c01318{height:35.948099pt;}
.h1d_c01318{height:38.683802pt;}
.h13_c01318{height:41.467500pt;}
.h7_c01318{height:44.251198pt;}
.hd_c01318{height:46.986901pt;}
.hc_c01318{height:49.770599pt;}
.h2_c01318{height:52.506302pt;}
.hb_c01318{height:55.290000pt;}
.h14_c01318{height:58.073698pt;}
.ha_c01318{height:60.809401pt;}
.h6_c01318{height:63.593099pt;}
.h3_c01318{height:66.328802pt;}
.h1f_c01318{height:69.112500pt;}
.h21_c01318{height:71.896198pt;}
.h1b_c01318{height:74.631901pt;}
.h16_c01318{height:77.415599pt;}
.h1c_c01318{height:80.151302pt;}
.h1a_c01318{height:82.935000pt;}
.h23_c01318{height:85.718698pt;}
.h24_c01318{height:88.454401pt;}
.h22_c01318{height:91.238099pt;}
.h4_c01318{height:110.580000pt;}
.h25_c01318{height:124.402500pt;}
.h1_c01318{height:1345.333333pt;}
.h0_c01318{height:1345.533333pt;}
.w1_c01318{width:956.666667pt;}
.w0_c01318{width:956.933333pt;}
.x0_c01318{left:0.000000pt;}
.xe7_c01318{left:108.293333pt;}
.xe8_c01318{left:115.200000pt;}
.xed_c01318{left:119.040000pt;}
.xf2_c01318{left:124.413333pt;}
.xe9_c01318{left:126.720000pt;}
.xf6_c01318{left:129.786667pt;}
.xf3_c01318{left:132.866667pt;}
.x11c_c01318{left:147.453333pt;}
.xee_c01318{left:153.600000pt;}
.xef_c01318{left:161.280000pt;}
.x43_c01318{left:164.346667pt;}
.x3b_c01318{left:168.960000pt;}
.xea_c01318{left:175.106667pt;}
.xd4_c01318{left:180.480000pt;}
.xa5_c01318{left:182.013333pt;}
.xb8_c01318{left:188.160000pt;}
.xa6_c01318{left:191.226667pt;}
.xc5_c01318{left:193.533333pt;}
.x35_c01318{left:195.066667pt;}
.x9c_c01318{left:196.613333pt;}
.x1a_c01318{left:198.906667pt;}
.x83_c01318{left:200.453333pt;}
.x61_c01318{left:202.746667pt;}
.x5a_c01318{left:205.053333pt;}
.xd_c01318{left:207.360000pt;}
.x2_c01318{left:208.893333pt;}
.x1b_c01318{left:211.200000pt;}
.x85_c01318{left:213.506667pt;}
.x114_c01318{left:215.813333pt;}
.x5_c01318{left:217.346667pt;}
.x6e_c01318{left:220.413333pt;}
.x90_c01318{left:221.946667pt;}
.x27_c01318{left:224.253333pt;}
.x8a_c01318{left:226.560000pt;}
.x5b_c01318{left:228.866667pt;}
.x1c_c01318{left:231.933333pt;}
.xf4_c01318{left:234.240000pt;}
.x8d_c01318{left:235.773333pt;}
.x108_c01318{left:237.306667pt;}
.x62_c01318{left:238.853333pt;}
.x49_c01318{left:241.920000pt;}
.xeb_c01318{left:247.293333pt;}
.xa0_c01318{left:248.826667pt;}
.x3c_c01318{left:250.373333pt;}
.xe_c01318{left:258.053333pt;}
.x73_c01318{left:261.893333pt;}
.xc6_c01318{left:264.186667pt;}
.x44_c01318{left:265.733333pt;}
.xa1_c01318{left:267.266667pt;}
.x50_c01318{left:268.800000pt;}
.x7b_c01318{left:270.333333pt;}
.xbd_c01318{left:272.640000pt;}
.xc1_c01318{left:274.946667pt;}
.xa7_c01318{left:276.480000pt;}
.xf_c01318{left:278.786667pt;}
.x4a_c01318{left:280.320000pt;}
.xc7_c01318{left:282.626667pt;}
.x91_c01318{left:284.933333pt;}
.xfc_c01318{left:286.466667pt;}
.x68_c01318{left:288.000000pt;}
.x36_c01318{left:291.840000pt;}
.x118_c01318{left:295.680000pt;}
.xfd_c01318{left:297.213333pt;}
.xf5_c01318{left:299.520000pt;}
.x4b_c01318{left:304.133333pt;}
.x2a_c01318{left:306.426667pt;}
.x8b_c01318{left:308.733333pt;}
.x63_c01318{left:311.040000pt;}
.x51_c01318{left:313.346667pt;}
.x74_c01318{left:316.413333pt;}
.x64_c01318{left:318.720000pt;}
.xcc_c01318{left:320.253333pt;}
.x3d_c01318{left:322.560000pt;}
.x7c_c01318{left:324.093333pt;}
.x92_c01318{left:327.173333pt;}
.xbe_c01318{left:328.706667pt;}
.x3e_c01318{left:330.240000pt;}
.x45_c01318{left:332.546667pt;}
.x3_c01318{left:336.386667pt;}
.x10_c01318{left:338.693333pt;}
.x7d_c01318{left:340.226667pt;}
.xa2_c01318{left:344.066667pt;}
.x5c_c01318{left:346.373333pt;}
.x4c_c01318{left:347.906667pt;}
.xb5_c01318{left:350.213333pt;}
.xe2_c01318{left:352.506667pt;}
.xc2_c01318{left:354.813333pt;}
.x69_c01318{left:358.653333pt;}
.xc8_c01318{left:360.186667pt;}
.xe5_c01318{left:363.266667pt;}
.x65_c01318{left:364.800000pt;}
.x110_c01318{left:367.106667pt;}
.xa3_c01318{left:369.413333pt;}
.x10a_c01318{left:370.946667pt;}
.x2b_c01318{left:373.253333pt;}
.x3f_c01318{left:374.786667pt;}
.xcd_c01318{left:376.320000pt;}
.x6f_c01318{left:378.626667pt;}
.xf0_c01318{left:380.160000pt;}
.xdc_c01318{left:382.466667pt;}
.xb1_c01318{left:384.773333pt;}
.x75_c01318{left:386.306667pt;}
.x1d_c01318{left:387.840000pt;}
.x11_c01318{left:389.373333pt;}
.x4d_c01318{left:392.453333pt;}
.xbf_c01318{left:393.986667pt;}
.x52_c01318{left:396.293333pt;}
.x70_c01318{left:399.360000pt;}
.xd9_c01318{left:400.893333pt;}
.xdd_c01318{left:402.426667pt;}
.x6_c01318{left:403.973333pt;}
.x1_c01318{left:405.506667pt;}
.x1e_c01318{left:407.040000pt;}
.x109_c01318{left:408.573333pt;}
.x46_c01318{left:410.106667pt;}
.xb9_c01318{left:411.653333pt;}
.x81_c01318{left:414.720000pt;}
.x102_c01318{left:418.560000pt;}
.x12_c01318{left:422.400000pt;}
.x28_c01318{left:424.706667pt;}
.x10b_c01318{left:426.240000pt;}
.xa4_c01318{left:428.546667pt;}
.x13_c01318{left:430.853333pt;}
.x82_c01318{left:432.386667pt;}
.x1f_c01318{left:434.693333pt;}
.x11a_c01318{left:436.226667pt;}
.x76_c01318{left:437.760000pt;}
.x2c_c01318{left:439.293333pt;}
.x7e_c01318{left:441.600000pt;}
.xc3_c01318{left:443.133333pt;}
.xba_c01318{left:446.213333pt;}
.x53_c01318{left:449.280000pt;}
.x97_c01318{left:451.586667pt;}
.x29_c01318{left:453.120000pt;}
.x5d_c01318{left:455.426667pt;}
.x7_c01318{left:457.733333pt;}
.xac_c01318{left:460.026667pt;}
.x113_c01318{left:464.640000pt;}
.xfe_c01318{left:466.946667pt;}
.x14_c01318{left:468.480000pt;}
.x8_c01318{left:470.013333pt;}
.x103_c01318{left:473.853333pt;}
.xb2_c01318{left:477.693333pt;}
.x8e_c01318{left:479.226667pt;}
.x9_c01318{left:480.773333pt;}
.x10d_c01318{left:482.306667pt;}
.x9d_c01318{left:484.613333pt;}
.x20_c01318{left:486.146667pt;}
.x93_c01318{left:487.680000pt;}
.x6a_c01318{left:489.987267pt;}
.x111_c01318{left:491.520000pt;}
.x77_c01318{left:493.053333pt;}
.x15_c01318{left:495.360000pt;}
.x2d_c01318{left:496.893333pt;}
.x21_c01318{left:498.426667pt;}
.xcb_c01318{left:501.506667pt;}
.xf7_c01318{left:503.040000pt;}
.x115_c01318{left:506.106667pt;}
.x98_c01318{left:507.653333pt;}
.xa8_c01318{left:509.186667pt;}
.x10c_c01318{left:511.493333pt;}
.x10e_c01318{left:513.026667pt;}
.x54_c01318{left:514.560000pt;}
.x2e_c01318{left:516.866667pt;}
.x4e_c01318{left:518.400000pt;}
.x94_c01318{left:519.933333pt;}
.xce_c01318{left:521.466667pt;}
.xff_c01318{left:524.546667pt;}
.x86_c01318{left:526.080000pt;}
.xde_c01318{left:528.386667pt;}
.x9e_c01318{left:529.920000pt;}
.x47_c01318{left:534.533333pt;}
.x55_c01318{left:536.066667pt;}
.xe3_c01318{left:537.600000pt;}
.xbb_c01318{left:539.133333pt;}
.xf8_c01318{left:542.973333pt;}
.xad_c01318{left:545.280000pt;}
.x2f_c01318{left:546.813333pt;}
.x112_c01318{left:549.120000pt;}
.x9f_c01318{left:552.186667pt;}
.x22_c01318{left:556.026667pt;}
.x5e_c01318{left:558.333333pt;}
.x6b_c01318{left:559.866667pt;}
.xd5_c01318{left:561.413333pt;}
.x16_c01318{left:563.706667pt;}
.xb6_c01318{left:565.253333pt;}
.xae_c01318{left:566.786667pt;}
.x116_c01318{left:569.093333pt;}
.x66_c01318{left:574.466667pt;}
.xe6_c01318{left:576.000000pt;}
.x5f_c01318{left:577.533333pt;}
.x99_c01318{left:580.613333pt;}
.xda_c01318{left:582.146667pt;}
.xa9_c01318{left:584.453333pt;}
.xaf_c01318{left:585.986667pt;}
.xd2_c01318{left:587.520000pt;}
.xa_c01318{left:589.826667pt;}
.x48_c01318{left:592.133333pt;}
.x37_c01318{left:594.426667pt;}
.x7f_c01318{left:597.506667pt;}
.x23_c01318{left:599.813333pt;}
.x71_c01318{left:602.106667pt;}
.xb3_c01318{left:605.186667pt;}
.x4f_c01318{left:606.720000pt;}
.x95_c01318{left:609.026667pt;}
.x60_c01318{left:611.333333pt;}
.xe4_c01318{left:612.866667pt;}
.x104_c01318{left:615.933333pt;}
.xdf_c01318{left:617.466667pt;}
.x30_c01318{left:619.013333pt;}
.xbc_c01318{left:622.080000pt;}
.xaa_c01318{left:623.613333pt;}
.x38_c01318{left:627.453333pt;}
.xf1_c01318{left:629.760000pt;}
.xcf_c01318{left:632.066667pt;}
.x78_c01318{left:633.600000pt;}
.x67_c01318{left:636.666667pt;}
.x17_c01318{left:638.973333pt;}
.x56_c01318{left:640.506667pt;}
.x6c_c01318{left:642.813333pt;}
.x72_c01318{left:646.653333pt;}
.xc4_c01318{left:648.186667pt;}
.x40_c01318{left:651.266667pt;}
.xd6_c01318{left:654.333333pt;}
.x39_c01318{left:655.866667pt;}
.x80_c01318{left:660.480000pt;}
.x8c_c01318{left:662.013333pt;}
.x24_c01318{left:663.546667pt;}
.x57_c01318{left:665.093333pt;}
.x100_c01318{left:666.626667pt;}
.x84_c01318{left:668.160000pt;}
.x105_c01318{left:670.466667pt;}
.xb_c01318{left:672.000000pt;}
.x31_c01318{left:675.066667pt;}
.x9a_c01318{left:676.613333pt;}
.xdb_c01318{left:680.453333pt;}
.xe0_c01318{left:683.520000pt;}
.xc9_c01318{left:685.053333pt;}
.x25_c01318{left:686.586667pt;}
.xb7_c01318{left:688.893333pt;}
.x11b_c01318{left:691.200000pt;}
.x32_c01318{left:693.506667pt;}
.x87_c01318{left:695.813333pt;}
.xb4_c01318{left:698.880000pt;}
.x79_c01318{left:703.493333pt;}
.xf9_c01318{left:705.786667pt;}
.x18_c01318{left:707.333333pt;}
.x88_c01318{left:708.866667pt;}
.x7a_c01318{left:710.400000pt;}
.xb0_c01318{left:711.933333pt;}
.x10f_c01318{left:713.466667pt;}
.x3a_c01318{left:715.013333pt;}
.xab_c01318{left:716.546667pt;}
.x41_c01318{left:718.853333pt;}
.x58_c01318{left:720.386667pt;}
.x96_c01318{left:721.920000pt;}
.xc_c01318{left:723.453333pt;}
.x42_c01318{left:725.760000pt;}
.x106_c01318{left:727.293333pt;}
.x6d_c01318{left:729.600000pt;}
.xfa_c01318{left:731.133333pt;}
.x4_c01318{left:733.440000pt;}
.x119_c01318{left:734.973333pt;}
.x59_c01318{left:737.280000pt;}
.xc0_c01318{left:738.813333pt;}
.x19_c01318{left:741.120000pt;}
.xd7_c01318{left:742.653333pt;}
.x33_c01318{left:744.186667pt;}
.x89_c01318{left:746.493333pt;}
.x8f_c01318{left:748.026667pt;}
.xca_c01318{left:750.333333pt;}
.x117_c01318{left:755.706667pt;}
.x101_c01318{left:757.253333pt;}
.xe1_c01318{left:758.786667pt;}
.xec_c01318{left:760.320000pt;}
.x9b_c01318{left:761.853333pt;}
.xfb_c01318{left:766.466667pt;}
.xd3_c01318{left:770.306667pt;}
.x34_c01318{left:774.906667pt;}
.x26_c01318{left:780.293333pt;}
.x107_c01318{left:782.586667pt;}
.xd0_c01318{left:786.426667pt;}
.xd8_c01318{left:791.813333pt;}
.xd1_c01318{left:809.466667pt;}
.x11e_c01318{left:819.453333pt;}
.x11f_c01318{left:828.666667pt;}
.x11d_c01318{left:873.213333pt;}
.x120_c01318{left:928.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_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;}
@font-face{font-family:ff1_c01319;src:url('chunks/assets/font_77c9cbb2e182c5fb71b1b797.woff2')format("woff");}.ff1_c01319{font-family:ff1_c01319;line-height:1.109863;font-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_c01319{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1df_c01319{transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047625,0.000000,0.000000,0.250000,0,0);}
.m11e_c01319{transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);}
.m121_c01319{transform:matrix(0.062300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062300,0.000000,0.000000,0.250000,0,0);}
.m7e_c01319{transform:matrix(0.073275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073275,0.000000,0.000000,0.250000,0,0);}
.me2_c01319{transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01319{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);}
.m1d9_c01319{transform:matrix(0.077375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077375,0.000000,0.000000,0.250000,0,0);}
.m3_c01319{transform:matrix(0.087000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087000,0.000000,0.000000,0.250000,0,0);}
.m1ef_c01319{transform:matrix(0.087275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087275,0.000000,0.000000,0.250000,0,0);}
.m176_c01319{transform:matrix(0.088925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088925,0.000000,0.000000,0.250000,0,0);}
.m10c_c01319{transform:matrix(0.097650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097650,0.000000,0.000000,0.250000,0,0);}
.m1e3_c01319{transform:matrix(0.098400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098400,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01319{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);}
.m45_c01319{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);}
.m11f_c01319{transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102450,0.000000,0.000000,0.250000,0,0);}
.m86_c01319{transform:matrix(0.103575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103575,0.000000,0.000000,0.250000,0,0);}
.mfd_c01319{transform:matrix(0.104350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104350,0.000000,0.000000,0.250000,0,0);}
.m165_c01319{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m18e_c01319{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m16b_c01319{transform:matrix(0.116325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116325,0.000000,0.000000,0.250000,0,0);}
.m19c_c01319{transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01319{transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118025,0.000000,0.000000,0.250000,0,0);}
.m19_c01319{transform:matrix(0.118175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118175,0.000000,0.000000,0.250000,0,0);}
.mf6_c01319{transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);}
.m150_c01319{transform:matrix(0.118650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118650,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01319{transform:matrix(0.118700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118700,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01319{transform:matrix(0.118850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118850,0.000000,0.000000,0.250000,0,0);}
.m1f4_c01319{transform:matrix(0.118975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118975,0.000000,0.000000,0.250000,0,0);}
.m64_c01319{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m1f1_c01319{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01319{transform:matrix(0.122050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122050,0.000000,0.000000,0.250000,0,0);}
.m82_c01319{transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122975,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01319{transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123000,0.000000,0.000000,0.250000,0,0);}
.ma5_c01319{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m67_c01319{transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);}
.m61_c01319{transform:matrix(0.125475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125475,0.000000,0.000000,0.250000,0,0);}
.m92_c01319{transform:matrix(0.125850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125850,0.000000,0.000000,0.250000,0,0);}
.m4d_c01319{transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01319{transform:matrix(0.127825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127825,0.000000,0.000000,0.250000,0,0);}
.m111_c01319{transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);}
.m2_c01319{transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128200,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01319{transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128225,0.000000,0.000000,0.250000,0,0);}
.m15b_c01319{transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);}
.m160_c01319{transform:matrix(0.130125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130125,0.000000,0.000000,0.250000,0,0);}
.m18b_c01319{transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130450,0.000000,0.000000,0.250000,0,0);}
.mfe_c01319{transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130475,0.000000,0.000000,0.250000,0,0);}
.m5b_c01319{transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);}
.m97_c01319{transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);}
.m179_c01319{transform:matrix(0.132050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132050,0.000000,0.000000,0.250000,0,0);}
.m19f_c01319{transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133025,0.000000,0.000000,0.250000,0,0);}
.m1de_c01319{transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133650,0.000000,0.000000,0.250000,0,0);}
.m1be_c01319{transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);}
.m19a_c01319{transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);}
.m199_c01319{transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);}
.m164_c01319{transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);}
.ma3_c01319{transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01319{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m1f9_c01319{transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);}
.m1e8_c01319{transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);}
.m16_c01319{transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137225,0.000000,0.000000,0.250000,0,0);}
.m3b_c01319{transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);}
.m9c_c01319{transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);}
.m151_c01319{transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139150,0.000000,0.000000,0.250000,0,0);}
.m187_c01319{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01319{transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);}
.m6e_c01319{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m88_c01319{transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);}
.m78_c01319{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01319{transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01319{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01319{transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141550,0.000000,0.000000,0.250000,0,0);}
.m13a_c01319{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);}
.m13e_c01319{transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);}
.m19d_c01319{transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);}
.m4_c01319{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m15c_c01319{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.m19b_c01319{transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);}
.m1da_c01319{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.m76_c01319{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.m81_c01319{transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);}
.mae_c01319{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01319{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);}
.m1c2_c01319{transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);}
.m18_c01319{transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147825,0.000000,0.000000,0.250000,0,0);}
.m1f5_c01319{transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148050,0.000000,0.000000,0.250000,0,0);}
.m11_c01319{transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);}
.mfb_c01319{transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148475,0.000000,0.000000,0.250000,0,0);}
.m1e1_c01319{transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);}
.m1a_c01319{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);}
.m18d_c01319{transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01319{transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);}
.m99_c01319{transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);}
.m3e_c01319{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01319{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01319{transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151050,0.000000,0.000000,0.250000,0,0);}
.m101_c01319{transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);}
.md2_c01319{transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);}
.m17_c01319{transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151600,0.000000,0.000000,0.250000,0,0);}
.mde_c01319{transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);}
.m4c_c01319{transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);}
.m32_c01319{transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152700,0.000000,0.000000,0.250000,0,0);}
.m1f0_c01319{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);}
.m1f6_c01319{transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);}
.m124_c01319{transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);}
.m10d_c01319{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.m14d_c01319{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m13c_c01319{transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01319{transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156500,0.000000,0.000000,0.250000,0,0);}
.m16c_c01319{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01319{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.m8b_c01319{transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01319{transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);}
.m9a_c01319{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);}
.m1dd_c01319{transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);}
.m19e_c01319{transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01319{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);}
.m1d5_c01319{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);}
.mda_c01319{transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158225,0.000000,0.000000,0.250000,0,0);}
.m18c_c01319{transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158350,0.000000,0.000000,0.250000,0,0);}
.m98_c01319{transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);}
.m11a_c01319{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.m133_c01319{transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159200,0.000000,0.000000,0.250000,0,0);}
.m5d_c01319{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m8f_c01319{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.m138_c01319{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.mf1_c01319{transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160650,0.000000,0.000000,0.250000,0,0);}
.me0_c01319{transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);}
.mc1_c01319{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.m68_c01319{transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);}
.mc6_c01319{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);}
.mb4_c01319{transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163400,0.000000,0.000000,0.250000,0,0);}
.mbc_c01319{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.m9e_c01319{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.m137_c01319{transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);}
.mbf_c01319{transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);}
.me8_c01319{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m192_c01319{transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);}
.m14b_c01319{transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164825,0.000000,0.000000,0.250000,0,0);}
.mf5_c01319{transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165025,0.000000,0.000000,0.250000,0,0);}
.m102_c01319{transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);}
.m15a_c01319{transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);}
.m128_c01319{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m1ed_c01319{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.mca_c01319{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m85_c01319{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);}
.mf4_c01319{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);}
.m89_c01319{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m15f_c01319{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.m2d_c01319{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.m2b_c01319{transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01319{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);}
.ma7_c01319{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);}
.m108_c01319{transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);}
.m1f2_c01319{transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01319{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.m63_c01319{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);}
.m189_c01319{transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);}
.m100_c01319{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.m145_c01319{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.ma9_c01319{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);}
.mac_c01319{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);}
.m1f7_c01319{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.m14a_c01319{transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171300,0.000000,0.000000,0.250000,0,0);}
.m7a_c01319{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01319{transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171700,0.000000,0.000000,0.250000,0,0);}
.m79_c01319{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01319{transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172125,0.000000,0.000000,0.250000,0,0);}
.m6c_c01319{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);}
.m1a4_c01319{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m17c_c01319{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01319{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);}
.mff_c01319{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.m8d_c01319{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.m56_c01319{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);}
.m149_c01319{transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);}
.m1ee_c01319{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);}
.m169_c01319{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m8a_c01319{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);}
.m1e5_c01319{transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175475,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01319{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m37_c01319{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);}
.me4_c01319{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);}
.m17f_c01319{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m10e_c01319{transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176775,0.000000,0.000000,0.250000,0,0);}
.m4b_c01319{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.md4_c01319{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m42_c01319{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01319{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m122_c01319{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.m18a_c01319{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.m5a_c01319{transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177875,0.000000,0.000000,0.250000,0,0);}
.m12a_c01319{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);}
.m13d_c01319{transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177950,0.000000,0.000000,0.250000,0,0);}
.m1b_c01319{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.m194_c01319{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);}
.m1c3_c01319{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);}
.m1cf_c01319{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01319{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m188_c01319{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);}
.m157_c01319{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.m47_c01319{transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);}
.m109_c01319{transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179025,0.000000,0.000000,0.250000,0,0);}
.m91_c01319{transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179725,0.000000,0.000000,0.250000,0,0);}
.m118_c01319{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m182_c01319{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mfc_c01319{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m110_c01319{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);}
.mc8_c01319{transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180950,0.000000,0.000000,0.250000,0,0);}
.m16f_c01319{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.me3_c01319{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.m65_c01319{transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);}
.m5_c01319{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);}
.m185_c01319{transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);}
.m38_c01319{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.m70_c01319{transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182450,0.000000,0.000000,0.250000,0,0);}
.m31_c01319{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);}
.m7d_c01319{transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182725,0.000000,0.000000,0.250000,0,0);}
.m116_c01319{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.med_c01319{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m10_c01319{transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);}
.m181_c01319{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m5f_c01319{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);}
.m15e_c01319{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);}
.mec_c01319{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m23_c01319{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m114_c01319{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m167_c01319{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);}
.m2e_c01319{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);}
.m22_c01319{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);}
.m40_c01319{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);}
.m1d2_c01319{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.mf8_c01319{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m17e_c01319{transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01319{transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01319{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);}
.m7f_c01319{transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);}
.m1db_c01319{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m11c_c01319{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);}
.m3d_c01319{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m94_c01319{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);}
.mdc_c01319{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01319{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m93_c01319{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);}
.m60_c01319{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.mdb_c01319{transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191000,0.000000,0.000000,0.250000,0,0);}
.m168_c01319{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.m191_c01319{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);}
.m174_c01319{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.m77_c01319{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m131_c01319{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.m13b_c01319{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mb1_c01319{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01319{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);}
.mc9_c01319{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);}
.mbe_c01319{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);}
.mf3_c01319{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);}
.m139_c01319{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);}
.mdf_c01319{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.md1_c01319{transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196450,0.000000,0.000000,0.250000,0,0);}
.m11b_c01319{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);}
.me6_c01319{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m1f3_c01319{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.md5_c01319{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m24_c01319{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);}
.md3_c01319{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);}
.m13f_c01319{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m186_c01319{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.m127_c01319{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);}
.mc3_c01319{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m123_c01319{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);}
.m4a_c01319{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01319{transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);}
.m175_c01319{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.mb_c01319{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01319{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.m1c_c01319{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);}
.m10b_c01319{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.mcf_c01319{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);}
.mad_c01319{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);}
.mc2_c01319{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);}
.mf2_c01319{transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);}
.m134_c01319{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01319{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01319{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.mb7_c01319{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01319{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);}
.mb8_c01319{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.m3c_c01319{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m72_c01319{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);}
.m41_c01319{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m95_c01319{transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);}
.m9d_c01319{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);}
.m14f_c01319{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);}
.m49_c01319{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);}
.mea_c01319{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);}
.m1af_c01319{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);}
.m1e_c01319{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);}
.m1a1_c01319{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);}
.m1b2_c01319{transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);}
.m132_c01319{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);}
.m1ea_c01319{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m104_c01319{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);}
.m58_c01319{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m140_c01319{transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);}
.m156_c01319{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01319{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);}
.m141_c01319{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m4f_c01319{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.ma0_c01319{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.mab_c01319{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.m18f_c01319{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m106_c01319{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01319{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m197_c01319{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);}
.m184_c01319{transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);}
.mcb_c01319{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01319{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.ma6_c01319{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m52_c01319{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m154_c01319{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m115_c01319{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m83_c01319{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.m148_c01319{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);}
.m196_c01319{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m163_c01319{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m1e7_c01319{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.m15d_c01319{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);}
.m73_c01319{transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);}
.md7_c01319{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m193_c01319{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);}
.mc4_c01319{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);}
.m183_c01319{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);}
.m105_c01319{transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01319{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);}
.m159_c01319{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);}
.m1b7_c01319{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m12d_c01319{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);}
.m6a_c01319{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);}
.m1ca_c01319{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m161_c01319{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);}
.m43_c01319{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.m75_c01319{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);}
.mf0_c01319{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);}
.m12e_c01319{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m12b_c01319{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m172_c01319{transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01319{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.mb6_c01319{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);}
.m17a_c01319{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.m48_c01319{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.m2f_c01319{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);}
.m1e6_c01319{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m69_c01319{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.m158_c01319{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m10f_c01319{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m16e_c01319{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m144_c01319{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);}
.m90_c01319{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);}
.m16a_c01319{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);}
.m33_c01319{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.me5_c01319{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);}
.m125_c01319{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m4e_c01319{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);}
.md6_c01319{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);}
.m153_c01319{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01319{transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);}
.mfa_c01319{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m155_c01319{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);}
.m84_c01319{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m173_c01319{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.m10a_c01319{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.maf_c01319{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.m198_c01319{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);}
.m195_c01319{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m129_c01319{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);}
.m180_c01319{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);}
.m6d_c01319{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);}
.m9b_c01319{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);}
.m1e2_c01319{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);}
.mb9_c01319{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);}
.m51_c01319{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);}
.mc0_c01319{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.me9_c01319{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01319{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m190_c01319{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01319{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);}
.m36_c01319{transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);}
.me7_c01319{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m5c_c01319{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_c01319{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);}
.maa_c01319{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);}
.m119_c01319{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);}
.m1b5_c01319{transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);}
.m54_c01319{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m16d_c01319{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);}
.md0_c01319{transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);}
.mcc_c01319{transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01319{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);}
.me1_c01319{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);}
.m143_c01319{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);}
.mc5_c01319{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.m57_c01319{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);}
.m130_c01319{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);}
.mef_c01319{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);}
.m162_c01319{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);}
.m103_c01319{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m178_c01319{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);}
.m1c7_c01319{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);}
.m7c_c01319{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m17b_c01319{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);}
.mdd_c01319{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);}
.md_c01319{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01319{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);}
.m62_c01319{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);}
.m80_c01319{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);}
.m7_c01319{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);}
.ma2_c01319{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m44_c01319{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7b_c01319{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c01319{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);}
.mba_c01319{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me_c01319{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);}
.m6b_c01319{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);}
.m8e_c01319{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m53_c01319{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);}
.m15_c01319{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m12c_c01319{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m20_c01319{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);}
.m12_c01319{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c01319{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);}
.m21_c01319{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);}
.m26_c01319{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m17d_c01319{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m170_c01319{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);}
.m50_c01319{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.ma_c01319{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01319{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);}
.m66_c01319{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m46_c01319{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m14_c01319{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mce_c01319{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01319{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m71_c01319{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01319{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mee_c01319{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);}
.ma1_c01319{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m87_c01319{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m107_c01319{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m152_c01319{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);}
.m74_c01319{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);}
.m6_c01319{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mcd_c01319{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);}
.m136_c01319{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.ma4_c01319{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m34_c01319{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m113_c01319{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);}
.m3f_c01319{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mc_c01319{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m177_c01319{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);}
.m5e_c01319{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01319{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mb0_c01319{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m12f_c01319{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01319{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m0_c01319{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);}
.ma8_c01319{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);}
.mb5_c01319{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.md9_c01319{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);}
.m35_c01319{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m27_c01319{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m14e_c01319{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c01319{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1_c01319{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9f_c01319{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m96_c01319{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);}
.m142_c01319{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mc7_c01319{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.md8_c01319{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m126_c01319{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mbd_c01319{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m55_c01319{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mf7_c01319{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);}
.mbb_c01319{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);}
.mb3_c01319{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m8_c01319{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m112_c01319{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m29_c01319{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mf9_c01319{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m1fa_c01319{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m117_c01319{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01319{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m59_c01319{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m14c_c01319{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.meb_c01319{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m120_c01319{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m135_c01319{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m9_c01319{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);}
.m146_c01319{transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);}
.m1eb_c01319{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01319{transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.015000,0.000000,0.000000,0.250000,0,0);}
.m171_c01319{transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.030000,0.000000,0.000000,0.250000,0,0);}
.m166_c01319{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m11d_c01319{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m28_c01319{transform:matrix(1.785000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.785000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.785000,0.000000,0.000000,0.250000,0,0);}
.m147_c01319{transform:matrix(2.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.575000,0.000000,0.000000,0.250000,0,0);}
.m1f8_c01319{transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.185000,0.000000,0.000000,0.250000,0,0);}
.v3_c01319{vertical-align:-6.900000px;}
.v2_c01319{vertical-align:-3.480000px;}
.v0_c01319{vertical-align:0.000000px;}
.v1_c01319{vertical-align:3.480000px;}
.ls3_c01319{letter-spacing:0.000000px;}
.ls2_c01319{letter-spacing:14.980560px;}
.ls1_c01319{letter-spacing:57.000000px;}
.ls0_c01319{letter-spacing:526.358833px;}
.sc__c01319{text-shadow:none;}
.sc0_c01319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01319{-webkit-text-stroke:0px transparent;}
.sc0_c01319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01319{word-spacing:-19.084680px;}
.ws1_c01319{word-spacing:-7.663140px;}
.ws2_c01319{word-spacing:0.000000px;}
.fc0_c01319{color:transparent;}
.fs4_c01319{font-size:3.456000px;}
.fs20_c01319{font-size:6.000000px;}
.fse_c01319{font-size:6.900000px;}
.fs1e_c01319{font-size:10.380000px;}
.fs1a_c01319{font-size:13.800000px;}
.fs1_c01319{font-size:17.280000px;}
.fs15_c01319{font-size:20.760000px;}
.fs23_c01319{font-size:24.180000px;}
.fs21_c01319{font-size:27.660000px;}
.fs19_c01319{font-size:31.080000px;}
.fs1b_c01319{font-size:34.560000px;}
.fs0_c01319{font-size:38.040000px;}
.fs14_c01319{font-size:41.460000px;}
.fs8_c01319{font-size:44.940000px;}
.fs5_c01319{font-size:48.360000px;}
.fs6_c01319{font-size:51.840000px;}
.fs17_c01319{font-size:55.320000px;}
.fs13_c01319{font-size:58.740000px;}
.fs18_c01319{font-size:62.220000px;}
.fs12_c01319{font-size:65.640000px;}
.fs9_c01319{font-size:69.120000px;}
.fs7_c01319{font-size:72.600000px;}
.fsb_c01319{font-size:76.020000px;}
.fsf_c01319{font-size:79.500000px;}
.fs16_c01319{font-size:82.920000px;}
.fsc_c01319{font-size:86.400000px;}
.fs11_c01319{font-size:89.880000px;}
.fs1f_c01319{font-size:93.300000px;}
.fs1d_c01319{font-size:96.780000px;}
.fsa_c01319{font-size:100.200000px;}
.fs1c_c01319{font-size:103.680000px;}
.fs22_c01319{font-size:110.580000px;}
.fs10_c01319{font-size:124.440000px;}
.fsd_c01319{font-size:131.340000px;}
.fs3_c01319{font-size:155.520000px;}
.fs2_c01319{font-size:324.840000px;}
.y0_c01319{bottom:0.000000px;}
.y1fb_c01319{bottom:164.160000px;}
.y1f9_c01319{bottom:169.350000px;}
.y1fa_c01319{bottom:170.205000px;}
.y1f6_c01319{bottom:180.570000px;}
.y1f8_c01319{bottom:181.440000px;}
.y1f7_c01319{bottom:182.310000px;}
.y1f0_c01319{bottom:183.165000px;}
.y1f1_c01319{bottom:184.035000px;}
.y1f2_c01319{bottom:184.890000px;}
.y1ef_c01319{bottom:185.760000px;}
.y1f3_c01319{bottom:186.630000px;}
.y1f4_c01319{bottom:187.485000px;}
.y1f5_c01319{bottom:194.400000px;}
.y1e6_c01319{bottom:203.040000px;}
.y1ea_c01319{bottom:203.910000px;}
.y1e5_c01319{bottom:205.635000px;}
.y1eb_c01319{bottom:206.490000px;}
.y1ec_c01319{bottom:207.360000px;}
.y1ee_c01319{bottom:209.085000px;}
.y1ed_c01319{bottom:210.810000px;}
.y1e9_c01319{bottom:211.680000px;}
.y1e8_c01319{bottom:212.550000px;}
.y1e7_c01319{bottom:213.405000px;}
.y1de_c01319{bottom:223.770000px;}
.y1dd_c01319{bottom:224.640000px;}
.y1e3_c01319{bottom:226.365000px;}
.y1e4_c01319{bottom:227.235000px;}
.y1e0_c01319{bottom:228.090000px;}
.y1e1_c01319{bottom:228.960000px;}
.y1df_c01319{bottom:229.830000px;}
.y1e2_c01319{bottom:230.685000px;}
.y1d4_c01319{bottom:243.645000px;}
.y1d6_c01319{bottom:245.370000px;}
.y1d8_c01319{bottom:246.240000px;}
.y1db_c01319{bottom:247.110000px;}
.y1d5_c01319{bottom:247.965000px;}
.y1da_c01319{bottom:248.835000px;}
.y1d7_c01319{bottom:249.690000px;}
.y1d9_c01319{bottom:250.560000px;}
.y1dc_c01319{bottom:251.430000px;}
.y1ce_c01319{bottom:263.520000px;}
.y1d1_c01319{bottom:264.390000px;}
.y1d3_c01319{bottom:265.245000px;}
.y1cd_c01319{bottom:266.115000px;}
.y1d0_c01319{bottom:266.970000px;}
.y1d2_c01319{bottom:267.840000px;}
.y1cf_c01319{bottom:269.565000px;}
.y1c4_c01319{bottom:282.525000px;}
.y1c8_c01319{bottom:285.990000px;}
.y1cc_c01319{bottom:286.845000px;}
.y1ca_c01319{bottom:287.715000px;}
.y1cb_c01319{bottom:288.570000px;}
.y1c5_c01319{bottom:289.440000px;}
.y1c7_c01319{bottom:290.310000px;}
.y1c6_c01319{bottom:291.165000px;}
.y1c9_c01319{bottom:302.400000px;}
.y1bb_c01319{bottom:304.995000px;}
.y1c0_c01319{bottom:305.850000px;}
.y1be_c01319{bottom:306.720000px;}
.y1bc_c01319{bottom:307.590000px;}
.y1c1_c01319{bottom:308.445000px;}
.y1c3_c01319{bottom:309.315000px;}
.y1bd_c01319{bottom:310.170000px;}
.y1c2_c01319{bottom:312.765000px;}
.y1bf_c01319{bottom:321.405000px;}
.y1b5_c01319{bottom:327.450000px;}
.y1b9_c01319{bottom:328.320000px;}
.y1b6_c01319{bottom:329.190000px;}
.y1b7_c01319{bottom:330.045000px;}
.y1ba_c01319{bottom:331.770000px;}
.y1b8_c01319{bottom:336.960000px;}
.y1ad_c01319{bottom:345.600000px;}
.y1b0_c01319{bottom:346.470000px;}
.y1ae_c01319{bottom:347.325000px;}
.y1b4_c01319{bottom:348.195000px;}
.y1b2_c01319{bottom:349.050000px;}
.y1af_c01319{bottom:349.920000px;}
.y1b1_c01319{bottom:353.370000px;}
.y1b3_c01319{bottom:355.110000px;}
.y1a5_c01319{bottom:365.475000px;}
.y1a7_c01319{bottom:366.330000px;}
.y1a8_c01319{bottom:368.070000px;}
.y1a9_c01319{bottom:368.925000px;}
.y1a4_c01319{bottom:369.795000px;}
.y1aa_c01319{bottom:370.650000px;}
.y1ab_c01319{bottom:371.520000px;}
.y1a6_c01319{bottom:372.390000px;}
.y1ac_c01319{bottom:374.115000px;}
.y19f_c01319{bottom:380.160000px;}
.y19a_c01319{bottom:381.030000px;}
.y1a3_c01319{bottom:381.885000px;}
.y19e_c01319{bottom:382.755000px;}
.y1a1_c01319{bottom:383.610000px;}
.y19c_c01319{bottom:384.480000px;}
.y1a0_c01319{bottom:385.350000px;}
.y1a2_c01319{bottom:387.075000px;}
.y19b_c01319{bottom:391.395000px;}
.y19d_c01319{bottom:392.250000px;}
.y194_c01319{bottom:404.355000px;}
.y196_c01319{bottom:406.080000px;}
.y193_c01319{bottom:406.950000px;}
.y191_c01319{bottom:407.805000px;}
.y198_c01319{bottom:408.675000px;}
.y197_c01319{bottom:409.530000px;}
.y195_c01319{bottom:410.400000px;}
.y192_c01319{bottom:411.270000px;}
.y199_c01319{bottom:412.125000px;}
.y18b_c01319{bottom:426.810000px;}
.y189_c01319{bottom:427.680000px;}
.y18f_c01319{bottom:428.550000px;}
.y18a_c01319{bottom:429.405000px;}
.y190_c01319{bottom:431.130000px;}
.y18e_c01319{bottom:432.000000px;}
.y18d_c01319{bottom:435.450000px;}
.y18c_c01319{bottom:443.235000px;}
.y181_c01319{bottom:444.960000px;}
.y184_c01319{bottom:447.555000px;}
.y183_c01319{bottom:448.410000px;}
.y182_c01319{bottom:449.280000px;}
.y187_c01319{bottom:450.150000px;}
.y186_c01319{bottom:451.005000px;}
.y180_c01319{bottom:451.875000px;}
.y185_c01319{bottom:455.325000px;}
.y188_c01319{bottom:464.835000px;}
.y176_c01319{bottom:466.560000px;}
.y177_c01319{bottom:467.430000px;}
.y17d_c01319{bottom:468.285000px;}
.y178_c01319{bottom:469.155000px;}
.y17a_c01319{bottom:470.010000px;}
.y17c_c01319{bottom:470.880000px;}
.y17b_c01319{bottom:471.750000px;}
.y179_c01319{bottom:472.605000px;}
.y17e_c01319{bottom:476.070000px;}
.y17f_c01319{bottom:478.650000px;}
.y173_c01319{bottom:481.245000px;}
.y175_c01319{bottom:482.115000px;}
.y174_c01319{bottom:482.970000px;}
.y16e_c01319{bottom:486.435000px;}
.y172_c01319{bottom:487.290000px;}
.y16f_c01319{bottom:489.030000px;}
.y16c_c01319{bottom:489.885000px;}
.y171_c01319{bottom:490.755000px;}
.y16d_c01319{bottom:491.610000px;}
.y170_c01319{bottom:492.480000px;}
.y167_c01319{bottom:505.440000px;}
.y165_c01319{bottom:506.310000px;}
.y162_c01319{bottom:507.165000px;}
.y160_c01319{bottom:508.035000px;}
.y168_c01319{bottom:508.890000px;}
.y169_c01319{bottom:510.630000px;}
.y163_c01319{bottom:511.485000px;}
.y164_c01319{bottom:512.355000px;}
.y16a_c01319{bottom:513.210000px;}
.y16b_c01319{bottom:514.080000px;}
.y161_c01319{bottom:515.805000px;}
.y166_c01319{bottom:516.675000px;}
.y15b_c01319{bottom:525.315000px;}
.y15c_c01319{bottom:526.170000px;}
.y15f_c01319{bottom:527.040000px;}
.y15d_c01319{bottom:528.765000px;}
.y15e_c01319{bottom:529.635000px;}
.y15a_c01319{bottom:543.450000px;}
.y153_c01319{bottom:544.320000px;}
.y154_c01319{bottom:545.190000px;}
.y155_c01319{bottom:546.045000px;}
.y152_c01319{bottom:546.915000px;}
.y157_c01319{bottom:547.770000px;}
.y156_c01319{bottom:549.510000px;}
.y158_c01319{bottom:552.960000px;}
.y159_c01319{bottom:553.830000px;}
.y14d_c01319{bottom:565.920000px;}
.y14f_c01319{bottom:566.790000px;}
.y150_c01319{bottom:569.370000px;}
.y14c_c01319{bottom:571.110000px;}
.y151_c01319{bottom:571.965000px;}
.y14e_c01319{bottom:573.690000px;}
.y142_c01319{bottom:584.925000px;}
.y144_c01319{bottom:585.795000px;}
.y143_c01319{bottom:586.650000px;}
.y145_c01319{bottom:587.520000px;}
.y14a_c01319{bottom:589.245000px;}
.y146_c01319{bottom:590.970000px;}
.y147_c01319{bottom:592.710000px;}
.y148_c01319{bottom:593.565000px;}
.y149_c01319{bottom:594.435000px;}
.y14b_c01319{bottom:597.885000px;}
.y13f_c01319{bottom:606.525000px;}
.y13b_c01319{bottom:607.395000px;}
.y139_c01319{bottom:608.250000px;}
.y140_c01319{bottom:609.120000px;}
.y13a_c01319{bottom:610.845000px;}
.y13e_c01319{bottom:613.440000px;}
.y141_c01319{bottom:615.165000px;}
.y13c_c01319{bottom:616.890000px;}
.y13d_c01319{bottom:620.355000px;}
.y202_c01319{bottom:622.080000px;}
.y201_c01319{bottom:623.805000px;}
.y130_c01319{bottom:625.530000px;}
.y131_c01319{bottom:627.270000px;}
.y137_c01319{bottom:628.125000px;}
.y135_c01319{bottom:628.995000px;}
.y132_c01319{bottom:629.850000px;}
.y136_c01319{bottom:632.445000px;}
.y133_c01319{bottom:633.315000px;}
.y138_c01319{bottom:638.490000px;}
.y134_c01319{bottom:644.550000px;}
.y127_c01319{bottom:646.275000px;}
.y12a_c01319{bottom:647.130000px;}
.y129_c01319{bottom:648.000000px;}
.y12f_c01319{bottom:648.870000px;}
.y12c_c01319{bottom:649.725000px;}
.y12d_c01319{bottom:650.595000px;}
.y126_c01319{bottom:651.450000px;}
.y128_c01319{bottom:652.320000px;}
.y12e_c01319{bottom:654.045000px;}
.y12b_c01319{bottom:663.555000px;}
.y121_c01319{bottom:667.875000px;}
.y120_c01319{bottom:668.730000px;}
.y11d_c01319{bottom:669.600000px;}
.y123_c01319{bottom:670.470000px;}
.y11e_c01319{bottom:671.325000px;}
.y11f_c01319{bottom:672.195000px;}
.y122_c01319{bottom:673.920000px;}
.y125_c01319{bottom:677.370000px;}
.y124_c01319{bottom:679.965000px;}
.y115_c01319{bottom:685.155000px;}
.y116_c01319{bottom:686.010000px;}
.y11b_c01319{bottom:687.750000px;}
.y119_c01319{bottom:688.605000px;}
.y11a_c01319{bottom:690.330000px;}
.y117_c01319{bottom:691.200000px;}
.y118_c01319{bottom:692.070000px;}
.y11c_c01319{bottom:693.795000px;}
.y10f_c01319{bottom:705.885000px;}
.y10e_c01319{bottom:706.755000px;}
.y114_c01319{bottom:708.480000px;}
.y110_c01319{bottom:709.350000px;}
.y112_c01319{bottom:711.075000px;}
.y113_c01319{bottom:712.800000px;}
.y111_c01319{bottom:713.670000px;}
.y10d_c01319{bottom:717.120000px;}
.y102_c01319{bottom:724.035000px;}
.y103_c01319{bottom:725.760000px;}
.y106_c01319{bottom:727.485000px;}
.y104_c01319{bottom:728.355000px;}
.y109_c01319{bottom:730.080000px;}
.y107_c01319{bottom:730.950000px;}
.y105_c01319{bottom:732.675000px;}
.y108_c01319{bottom:734.400000px;}
.y10b_c01319{bottom:735.270000px;}
.y10a_c01319{bottom:738.720000px;}
.y10c_c01319{bottom:744.765000px;}
.yfb_c01319{bottom:746.490000px;}
.y100_c01319{bottom:748.230000px;}
.y101_c01319{bottom:749.085000px;}
.yfd_c01319{bottom:750.810000px;}
.yfc_c01319{bottom:751.680000px;}
.yfe_c01319{bottom:752.550000px;}
.yff_c01319{bottom:753.405000px;}
.yf5_c01319{bottom:766.365000px;}
.yf6_c01319{bottom:767.235000px;}
.yfa_c01319{bottom:768.960000px;}
.yf8_c01319{bottom:769.830000px;}
.yf7_c01319{bottom:771.555000px;}
.yf9_c01319{bottom:782.790000px;}
.y1_c01319{bottom:785.370000px;}
.yf2_c01319{bottom:787.110000px;}
.yf3_c01319{bottom:787.965000px;}
.yef_c01319{bottom:788.835000px;}
.yf0_c01319{bottom:789.690000px;}
.yf1_c01319{bottom:790.560000px;}
.yf4_c01319{bottom:793.155000px;}
.ye8_c01319{bottom:800.070000px;}
.ye7_c01319{bottom:800.925000px;}
.yeb_c01319{bottom:803.520000px;}
.yed_c01319{bottom:804.390000px;}
.ye6_c01319{bottom:806.115000px;}
.yee_c01319{bottom:806.970000px;}
.ye9_c01319{bottom:807.840000px;}
.yea_c01319{bottom:813.885000px;}
.yec_c01319{bottom:825.120000px;}
.ydf_c01319{bottom:825.990000px;}
.yde_c01319{bottom:826.845000px;}
.ydd_c01319{bottom:827.715000px;}
.ye0_c01319{bottom:828.570000px;}
.ye2_c01319{bottom:830.310000px;}
.ye3_c01319{bottom:832.035000px;}
.ye1_c01319{bottom:832.890000px;}
.ye4_c01319{bottom:833.760000px;}
.ye5_c01319{bottom:834.630000px;}
.ydb_c01319{bottom:848.445000px;}
.yd7_c01319{bottom:850.170000px;}
.yd8_c01319{bottom:851.040000px;}
.yd9_c01319{bottom:851.910000px;}
.yda_c01319{bottom:853.635000px;}
.ydc_c01319{bottom:858.810000px;}
.ycc_c01319{bottom:865.725000px;}
.yd1_c01319{bottom:867.450000px;}
.ycf_c01319{bottom:868.320000px;}
.ycd_c01319{bottom:869.190000px;}
.ycb_c01319{bottom:870.045000px;}
.yce_c01319{bottom:870.915000px;}
.yd0_c01319{bottom:871.770000px;}
.yd3_c01319{bottom:872.640000px;}
.yd4_c01319{bottom:873.510000px;}
.yca_c01319{bottom:874.365000px;}
.yd5_c01319{bottom:875.235000px;}
.yd6_c01319{bottom:878.685000px;}
.yd2_c01319{bottom:884.730000px;}
.yc3_c01319{bottom:886.470000px;}
.yc2_c01319{bottom:888.195000px;}
.yc5_c01319{bottom:889.050000px;}
.yc7_c01319{bottom:889.920000px;}
.yc8_c01319{bottom:890.790000px;}
.yc9_c01319{bottom:892.515000px;}
.yc4_c01319{bottom:893.370000px;}
.yc6_c01319{bottom:894.240000px;}
.yb8_c01319{bottom:905.475000px;}
.ybb_c01319{bottom:907.200000px;}
.yb9_c01319{bottom:908.070000px;}
.yba_c01319{bottom:908.925000px;}
.ybd_c01319{bottom:909.795000px;}
.yc0_c01319{bottom:910.650000px;}
.ybf_c01319{bottom:912.390000px;}
.ybc_c01319{bottom:913.245000px;}
.ybe_c01319{bottom:915.840000px;}
.yc1_c01319{bottom:918.435000px;}
.yb2_c01319{bottom:927.930000px;}
.yb3_c01319{bottom:930.525000px;}
.yb0_c01319{bottom:931.395000px;}
.yb1_c01319{bottom:932.250000px;}
.yb4_c01319{bottom:933.120000px;}
.yb5_c01319{bottom:933.990000px;}
.yb6_c01319{bottom:935.715000px;}
.yb7_c01319{bottom:936.570000px;}
.ya8_c01319{bottom:948.675000px;}
.yae_c01319{bottom:949.530000px;}
.ya9_c01319{bottom:950.400000px;}
.yaa_c01319{bottom:951.270000px;}
.yab_c01319{bottom:952.995000px;}
.yad_c01319{bottom:953.850000px;}
.yaf_c01319{bottom:955.590000px;}
.yac_c01319{bottom:956.445000px;}
.ya1_c01319{bottom:967.680000px;}
.ya2_c01319{bottom:968.550000px;}
.ya6_c01319{bottom:969.405000px;}
.ya5_c01319{bottom:970.275000px;}
.ya3_c01319{bottom:973.725000px;}
.ya4_c01319{bottom:980.640000px;}
.ya7_c01319{bottom:981.510000px;}
.y9a_c01319{bottom:984.960000px;}
.y99_c01319{bottom:987.555000px;}
.y9e_c01319{bottom:988.410000px;}
.y9d_c01319{bottom:989.280000px;}
.y9f_c01319{bottom:991.005000px;}
.y9b_c01319{bottom:991.875000px;}
.y9c_c01319{bottom:992.730000px;}
.ya0_c01319{bottom:994.470000px;}
.y92_c01319{bottom:1003.965000px;}
.y95_c01319{bottom:1005.690000px;}
.y97_c01319{bottom:1006.560000px;}
.y98_c01319{bottom:1007.430000px;}
.y96_c01319{bottom:1008.285000px;}
.y93_c01319{bottom:1010.880000px;}
.y94_c01319{bottom:1011.750000px;}
.y8a_c01319{bottom:1024.710000px;}
.y8c_c01319{bottom:1026.435000px;}
.y8e_c01319{bottom:1028.160000px;}
.y8f_c01319{bottom:1029.885000px;}
.y91_c01319{bottom:1030.755000px;}
.y8b_c01319{bottom:1031.610000px;}
.y90_c01319{bottom:1032.480000px;}
.y8d_c01319{bottom:1033.350000px;}
.y83_c01319{bottom:1041.990000px;}
.y84_c01319{bottom:1042.845000px;}
.y86_c01319{bottom:1044.570000px;}
.y87_c01319{bottom:1045.440000px;}
.y88_c01319{bottom:1050.630000px;}
.y85_c01319{bottom:1051.485000px;}
.y89_c01319{bottom:1061.850000px;}
.y7d_c01319{bottom:1066.170000px;}
.y7e_c01319{bottom:1067.040000px;}
.y7c_c01319{bottom:1067.910000px;}
.y80_c01319{bottom:1068.765000px;}
.y7b_c01319{bottom:1070.490000px;}
.y7f_c01319{bottom:1072.230000px;}
.y81_c01319{bottom:1073.955000px;}
.y82_c01319{bottom:1075.680000px;}
.y74_c01319{bottom:1086.915000px;}
.y75_c01319{bottom:1087.770000px;}
.y73_c01319{bottom:1088.640000px;}
.y78_c01319{bottom:1089.510000px;}
.y72_c01319{bottom:1090.365000px;}
.y76_c01319{bottom:1092.090000px;}
.y77_c01319{bottom:1092.960000px;}
.y79_c01319{bottom:1093.830000px;}
.y7a_c01319{bottom:1095.555000px;}
.y71_c01319{bottom:1105.050000px;}
.y6c_c01319{bottom:1106.790000px;}
.y6e_c01319{bottom:1107.645000px;}
.y6b_c01319{bottom:1108.515000px;}
.y6f_c01319{bottom:1111.965000px;}
.y70_c01319{bottom:1112.835000px;}
.y6d_c01319{bottom:1113.690000px;}
.y66_c01319{bottom:1126.650000px;}
.y65_c01319{bottom:1128.390000px;}
.y6a_c01319{bottom:1130.115000px;}
.y67_c01319{bottom:1131.840000px;}
.y64_c01319{bottom:1132.710000px;}
.y68_c01319{bottom:1135.290000px;}
.y69_c01319{bottom:1136.160000px;}
.y5c_c01319{bottom:1146.525000px;}
.y5b_c01319{bottom:1147.395000px;}
.y5a_c01319{bottom:1148.250000px;}
.y5d_c01319{bottom:1149.120000px;}
.y5f_c01319{bottom:1149.990000px;}
.y5e_c01319{bottom:1150.845000px;}
.y61_c01319{bottom:1152.570000px;}
.y60_c01319{bottom:1153.440000px;}
.y62_c01319{bottom:1154.310000px;}
.y63_c01319{bottom:1155.165000px;}
.y55_c01319{bottom:1166.400000px;}
.y53_c01319{bottom:1168.125000px;}
.y54_c01319{bottom:1168.995000px;}
.y52_c01319{bottom:1171.590000px;}
.y56_c01319{bottom:1172.445000px;}
.y57_c01319{bottom:1174.170000px;}
.y59_c01319{bottom:1175.040000px;}
.y58_c01319{bottom:1175.910000px;}
.y4a_c01319{bottom:1188.000000px;}
.y4d_c01319{bottom:1188.870000px;}
.y4f_c01319{bottom:1189.725000px;}
.y50_c01319{bottom:1190.595000px;}
.y49_c01319{bottom:1192.320000px;}
.y4c_c01319{bottom:1193.190000px;}
.y4b_c01319{bottom:1194.045000px;}
.y4e_c01319{bottom:1194.915000px;}
.y51_c01319{bottom:1199.235000px;}
.y200_c01319{bottom:1200.960000px;}
.y40_c01319{bottom:1207.875000px;}
.y45_c01319{bottom:1209.600000px;}
.y43_c01319{bottom:1210.470000px;}
.y44_c01319{bottom:1211.325000px;}
.y41_c01319{bottom:1213.050000px;}
.y42_c01319{bottom:1213.920000px;}
.y46_c01319{bottom:1215.645000px;}
.y48_c01319{bottom:1218.240000px;}
.y47_c01319{bottom:1219.110000px;}
.y39_c01319{bottom:1226.880000px;}
.y38_c01319{bottom:1228.605000px;}
.y3a_c01319{bottom:1229.475000px;}
.y3f_c01319{bottom:1230.330000px;}
.y3b_c01319{bottom:1231.200000px;}
.y37_c01319{bottom:1232.070000px;}
.y3d_c01319{bottom:1232.925000px;}
.y3e_c01319{bottom:1234.650000px;}
.y3c_c01319{bottom:1235.520000px;}
.y2c_c01319{bottom:1242.435000px;}
.y35_c01319{bottom:1245.885000px;}
.y36_c01319{bottom:1246.755000px;}
.y30_c01319{bottom:1247.610000px;}
.y31_c01319{bottom:1249.350000px;}
.y33_c01319{bottom:1250.205000px;}
.y2d_c01319{bottom:1251.930000px;}
.y2e_c01319{bottom:1252.800000px;}
.y2f_c01319{bottom:1253.670000px;}
.y32_c01319{bottom:1255.395000px;}
.y34_c01319{bottom:1258.845000px;}
.y2a_c01319{bottom:1269.210000px;}
.y24_c01319{bottom:1270.080000px;}
.y25_c01319{bottom:1270.950000px;}
.y26_c01319{bottom:1273.530000px;}
.y27_c01319{bottom:1274.400000px;}
.y2b_c01319{bottom:1275.270000px;}
.y28_c01319{bottom:1276.125000px;}
.y29_c01319{bottom:1284.765000px;}
.y1f_c01319{bottom:1287.360000px;}
.y1d_c01319{bottom:1289.085000px;}
.y1b_c01319{bottom:1289.955000px;}
.y1c_c01319{bottom:1292.550000px;}
.y1e_c01319{bottom:1293.405000px;}
.y22_c01319{bottom:1294.275000px;}
.y20_c01319{bottom:1295.130000px;}
.y21_c01319{bottom:1296.000000px;}
.y23_c01319{bottom:1305.510000px;}
.y12_c01319{bottom:1308.960000px;}
.y11_c01319{bottom:1309.830000px;}
.y18_c01319{bottom:1310.685000px;}
.y19_c01319{bottom:1311.555000px;}
.y15_c01319{bottom:1312.410000px;}
.y13_c01319{bottom:1315.005000px;}
.y14_c01319{bottom:1315.875000px;}
.y16_c01319{bottom:1316.730000px;}
.y1a_c01319{bottom:1321.920000px;}
.y10_c01319{bottom:1324.515000px;}
.y17_c01319{bottom:1327.965000px;}
.ye_c01319{bottom:1340.925000px;}
.yf_c01319{bottom:1342.650000px;}
.yd_c01319{bottom:1372.890000px;}
.yb_c01319{bottom:1382.400000px;}
.ya_c01319{bottom:1383.270000px;}
.y3_c01319{bottom:1385.850000px;}
.y1ff_c01319{bottom:1391.910000px;}
.yc_c01319{bottom:1395.360000px;}
.y8_c01319{bottom:1397.085000px;}
.y7_c01319{bottom:1399.680000px;}
.y9_c01319{bottom:1400.550000px;}
.y1fe_c01319{bottom:1408.320000px;}
.y1fd_c01319{bottom:1410.915000px;}
.y6_c01319{bottom:1423.875000px;}
.y5_c01319{bottom:1424.730000px;}
.y4_c01319{bottom:1426.470000px;}
.y1fc_c01319{bottom:1439.430000px;}
.y2_c01319{bottom:1462.755000px;}
.h6_c01319{height:3.110063px;}
.h22_c01319{height:5.399414px;}
.h10_c01319{height:6.209326px;}
.h20_c01319{height:9.340986px;}
.h1c_c01319{height:12.418652px;}
.h3_c01319{height:15.550313px;}
.h17_c01319{height:18.681973px;}
.h26_c01319{height:21.759639px;}
.h23_c01319{height:24.891299px;}
.h1b_c01319{height:27.968965px;}
.h1d_c01319{height:31.100625px;}
.h2_c01319{height:34.232285px;}
.h16_c01319{height:37.309951px;}
.ha_c01319{height:40.441611px;}
.h7_c01319{height:43.519277px;}
.h8_c01319{height:46.650937px;}
.h19_c01319{height:49.782598px;}
.h24_c01319{height:50.130938px;}
.h15_c01319{height:52.860264px;}
.h27_c01319{height:55.301250px;}
.h1a_c01319{height:55.991924px;}
.h28_c01319{height:56.280264px;}
.h14_c01319{height:59.069590px;}
.hb_c01319{height:62.201250px;}
.h9_c01319{height:65.332910px;}
.hd_c01319{height:68.410576px;}
.h11_c01319{height:71.542236px;}
.h18_c01319{height:74.619902px;}
.he_c01319{height:77.751563px;}
.h13_c01319{height:80.883223px;}
.h21_c01319{height:83.960889px;}
.h1f_c01319{height:87.092549px;}
.hc_c01319{height:90.170215px;}
.h1e_c01319{height:93.301875px;}
.h25_c01319{height:99.511201px;}
.h12_c01319{height:111.983848px;}
.hf_c01319{height:118.193174px;}
.h5_c01319{height:139.952812px;}
.h4_c01319{height:292.324277px;}
.h0_c01319{height:1509.405000px;}
.h1_c01319{height:1509.750000px;}
.w0_c01319{width:1079.130000px;}
.w1_c01319{width:1079.250000px;}
.x0_c01319{left:0.000000px;}
.x124_c01319{left:119.235000px;}
.x125_c01319{left:127.875000px;}
.x126_c01319{left:190.950000px;}
.x1_c01319{left:195.270000px;}
.x127_c01319{left:209.085000px;}
.xfc_c01319{left:213.405000px;}
.x102_c01319{left:218.595000px;}
.xf8_c01319{left:220.320000px;}
.xfd_c01319{left:228.960000px;}
.xcd_c01319{left:232.410000px;}
.x8e_c01319{left:234.150000px;}
.x10_c01319{left:236.730000px;}
.x66_c01319{left:239.325000px;}
.x54_c01319{left:242.790000px;}
.x11_c01319{left:244.515000px;}
.xd1_c01319{left:247.110000px;}
.xf1_c01319{left:249.690000px;}
.x10f_c01319{left:251.430000px;}
.xd5_c01319{left:254.010000px;}
.xb2_c01319{left:261.795000px;}
.xc7_c01319{left:264.390000px;}
.x86_c01319{left:268.710000px;}
.xd6_c01319{left:270.435000px;}
.xa2_c01319{left:272.160000px;}
.x55_c01319{left:274.755000px;}
.x73_c01319{left:276.480000px;}
.xe6_c01319{left:279.075000px;}
.x4d_c01319{left:280.800000px;}
.xd9_c01319{left:283.395000px;}
.xc4_c01319{left:285.990000px;}
.x40_c01319{left:287.715000px;}
.x9b_c01319{left:290.310000px;}
.xb8_c01319{left:292.035000px;}
.x117_c01319{left:293.760000px;}
.xbc_c01319{left:295.485000px;}
.x33_c01319{left:298.080000px;}
.x5d_c01319{left:302.400000px;}
.x29_c01319{left:304.125000px;}
.x34_c01319{left:306.720000px;}
.x1f_c01319{left:308.445000px;}
.x41_c01319{left:311.040000px;}
.x121_c01319{left:313.635000px;}
.x5e_c01319{left:315.360000px;}
.x2a_c01319{left:317.085000px;}
.x12_c01319{left:318.810000px;}
.x11a_c01319{left:320.550000px;}
.x35_c01319{left:322.275000px;}
.x56_c01319{left:325.725000px;}
.x11b_c01319{left:327.450000px;}
.x9c_c01319{left:329.190000px;}
.xca_c01319{left:332.640000px;}
.x10b_c01319{left:335.235000px;}
.x7d_c01319{left:336.960000px;}
.xbd_c01319{left:338.685000px;}
.x36_c01319{left:340.410000px;}
.x57_c01319{left:342.150000px;}
.x20_c01319{left:343.875000px;}
.x10c_c01319{left:345.600000px;}
.x42_c01319{left:347.325000px;}
.xa3_c01319{left:349.050000px;}
.x87_c01319{left:350.790000px;}
.x74_c01319{left:354.240000px;}
.x47_c01319{left:356.835000px;}
.x6c_c01319{left:358.560000px;}
.x21_c01319{left:361.155000px;}
.xf9_c01319{left:362.880000px;}
.x11c_c01319{left:365.475000px;}
.xd_c01319{left:367.200000px;}
.xfe_c01319{left:368.925000px;}
.x4e_c01319{left:371.520000px;}
.xa4_c01319{left:374.115000px;}
.xb9_c01319{left:375.840000px;}
.x37_c01319{left:379.290000px;}
.x107_c01319{left:383.610000px;}
.x58_c01319{left:385.350000px;}
.x88_c01319{left:387.930000px;}
.x6d_c01319{left:390.525000px;}
.x108_c01319{left:392.250000px;}
.xbe_c01319{left:393.990000px;}
.xdc_c01319{left:395.715000px;}
.x118_c01319{left:399.165000px;}
.x67_c01319{left:401.760000px;}
.xaf_c01319{left:404.355000px;}
.x13_c01319{left:406.950000px;}
.x43_c01319{left:408.675000px;}
.x5f_c01319{left:412.995000px;}
.x7e_c01319{left:414.720000px;}
.xf4_c01319{left:418.170000px;}
.x103_c01319{left:420.765000px;}
.x106_c01319{left:422.490000px;}
.x2b_c01319{left:424.230000px;}
.x38_c01319{left:429.405000px;}
.x48_c01319{left:432.000000px;}
.x75_c01319{left:433.725000px;}
.xd7_c01319{left:435.450000px;}
.xe3_c01319{left:437.190000px;}
.x22_c01319{left:438.915000px;}
.x60_c01319{left:444.090000px;}
.xb3_c01319{left:445.830000px;}
.x7f_c01319{left:447.555000px;}
.xe_c01319{left:449.280000px;}
.xb4_c01319{left:451.875000px;}
.xe4_c01319{left:453.600000px;}
.x91_c01319{left:455.325000px;}
.xce_c01319{left:457.050000px;}
.x10a_c01319{left:458.790000px;}
.x59_c01319{left:461.370000px;}
.xa5_c01319{left:463.110000px;}
.x14_c01319{left:470.880000px;}
.x39_c01319{left:474.330000px;}
.xfb_c01319{left:476.070000px;}
.xe7_c01319{left:477.795000px;}
.xa6_c01319{left:479.520000px;}
.x2c_c01319{left:482.115000px;}
.xf5_c01319{left:483.840000px;}
.x76_c01319{left:485.565000px;}
.xe8_c01319{left:487.290000px;}
.x4f_c01319{left:489.885000px;}
.x23_c01319{left:491.610000px;}
.x2d_c01319{left:493.350000px;}
.xcf_c01319{left:495.930000px;}
.x61_c01319{left:497.670000px;}
.xba_c01319{left:499.395000px;}
.x6e_c01319{left:501.120000px;}
.x115_c01319{left:505.440000px;}
.x92_c01319{left:508.035000px;}
.xa7_c01319{left:510.630000px;}
.x15_c01319{left:512.355000px;}
.x24_c01319{left:514.950000px;}
.x77_c01319{left:518.400000px;}
.x89_c01319{left:521.850000px;}
.x3a_c01319{left:523.590000px;}
.x6f_c01319{left:526.170000px;}
.x10d_c01319{left:528.765000px;}
.x93_c01319{left:532.230000px;}
.x70_c01319{left:535.680000px;}
.x119_c01319{left:537.405000px;}
.x50_c01319{left:540.870000px;}
.xc5_c01319{left:544.320000px;}
.x110_c01319{left:547.770000px;}
.x16_c01319{left:552.090000px;}
.xcb_c01319{left:554.685000px;}
.x2e_c01319{left:556.410000px;}
.xf2_c01319{left:559.005000px;}
.x3b_c01319{left:560.730000px;}
.x116_c01319{left:564.195000px;}
.xc8_c01319{left:566.790000px;}
.xdd_c01319{left:568.515000px;}
.x17_c01319{left:570.240000px;}
.x25_c01319{left:571.965000px;}
.x3c_c01319{left:573.690000px;}
.xde_c01319{left:575.430000px;}
.xe9_c01319{left:577.155000px;}
.x9d_c01319{left:578.880000px;}
.x11d_c01319{left:580.605000px;}
.xd8_c01319{left:582.330000px;}
.x2f_c01319{left:584.070000px;}
.xb0_c01319{left:589.245000px;}
.x68_c01319{left:590.970000px;}
.x18_c01319{left:593.565000px;}
.x78_c01319{left:596.160000px;}
.xa8_c01319{left:600.480000px;}
.x3d_c01319{left:602.205000px;}
.x26_c01319{left:604.800000px;}
.x109_c01319{left:609.990000px;}
.x2_c01319{left:612.570000px;}
.x97_c01319{left:615.165000px;}
.xee_c01319{left:618.630000px;}
.x11e_c01319{left:620.355000px;}
.x94_c01319{left:622.080000px;}
.xa_c01319{left:626.400000px;}
.x5a_c01319{left:629.850000px;}
.xa9_c01319{left:631.590000px;}
.x69_c01319{left:633.315000px;}
.x3_c01319{left:635.910000px;}
.x8c_c01319{left:637.635000px;}
.x62_c01319{left:639.360000px;}
.xb5_c01319{left:641.085000px;}
.x51_c01319{left:642.810000px;}
.x80_c01319{left:644.550000px;}
.x9e_c01319{left:648.000000px;}
.x8f_c01319{left:649.725000px;}
.xb_c01319{left:652.320000px;}
.xea_c01319{left:658.365000px;}
.x49_c01319{left:660.960000px;}
.xf6_c01319{left:662.685000px;}
.x7_c01319{left:665.280000px;}
.x111_c01319{left:667.875000px;}
.x5_c01319{left:669.600000px;}
.xff_c01319{left:671.325000px;}
.xd0_c01319{left:673.050000px;}
.x19_c01319{left:675.645000px;}
.x63_c01319{left:678.240000px;}
.xbb_c01319{left:679.965000px;}
.x71_c01319{left:682.560000px;}
.x104_c01319{left:686.010000px;}
.x3e_c01319{left:687.750000px;}
.xaa_c01319{left:689.475000px;}
.x8_c01319{left:692.070000px;}
.xe5_c01319{left:693.795000px;}
.x79_c01319{left:695.520000px;}
.x52_c01319{left:699.840000px;}
.x11f_c01319{left:701.565000px;}
.x81_c01319{left:705.030000px;}
.x113_c01319{left:708.480000px;}
.x9_c01319{left:710.205000px;}
.x6a_c01319{left:712.800000px;}
.x112_c01319{left:714.525000px;}
.x4_c01319{left:717.120000px;}
.x6_c01319{left:719.715000px;}
.xcc_c01319{left:721.440000px;}
.x30_c01319{left:724.035000px;}
.x1a_c01319{left:725.760000px;}
.x120_c01319{left:727.485000px;}
.x82_c01319{left:729.210000px;}
.x98_c01319{left:731.805000px;}
.xc_c01319{left:735.270000px;}
.xc9_c01319{left:737.850000px;}
.xab_c01319{left:743.040000px;}
.xd2_c01319{left:744.765000px;}
.x114_c01319{left:746.490000px;}
.xda_c01319{left:748.230000px;}
.x27_c01319{left:749.955000px;}
.xbf_c01319{left:751.680000px;}
.x9f_c01319{left:753.405000px;}
.x7a_c01319{left:756.000000px;}
.x99_c01319{left:757.725000px;}
.xac_c01319{left:759.450000px;}
.x123_c01319{left:761.190000px;}
.x4a_c01319{left:762.915000px;}
.x3f_c01319{left:767.235000px;}
.xb6_c01319{left:768.960000px;}
.xeb_c01319{left:772.410000px;}
.xa0_c01319{left:774.150000px;}
.x10e_c01319{left:775.875000px;}
.x5b_c01319{left:777.600000px;}
.x83_c01319{left:780.195000px;}
.x1b_c01319{left:782.790000px;}
.x64_c01319{left:784.515000px;}
.xc0_c01319{left:787.965000px;}
.x90_c01319{left:790.560000px;}
.xec_c01319{left:794.880000px;}
.xf3_c01319{left:796.605000px;}
.xc1_c01319{left:798.330000px;}
.xef_c01319{left:800.925000px;}
.xad_c01319{left:803.520000px;}
.x31_c01319{left:805.245000px;}
.x95_c01319{left:807.840000px;}
.xc6_c01319{left:809.565000px;}
.xc2_c01319{left:811.290000px;}
.x28_c01319{left:813.030000px;}
.x32_c01319{left:814.755000px;}
.x8d_c01319{left:817.350000px;}
.xf0_c01319{left:819.075000px;}
.xc3_c01319{left:820.800000px;}
.xdf_c01319{left:822.525000px;}
.x6b_c01319{left:824.250000px;}
.x44_c01319{left:826.845000px;}
.xf7_c01319{left:829.440000px;}
.xd3_c01319{left:832.035000px;}
.x8a_c01319{left:833.760000px;}
.xe0_c01319{left:836.355000px;}
.x65_c01319{left:838.080000px;}
.x5c_c01319{left:841.530000px;}
.xb1_c01319{left:843.270048px;}
.xf_c01319{left:845.850000px;}
.x100_c01319{left:847.590000px;}
.x1c_c01319{left:850.170000px;}
.x84_c01319{left:852.765000px;}
.xdb_c01319{left:856.230000px;}
.x72_c01319{left:858.810000px;}
.x7b_c01319{left:860.550000px;}
.x122_c01319{left:862.275000px;}
.xfa_c01319{left:864.000000px;}
.x45_c01319{left:865.725000px;}
.xe1_c01319{left:868.320000px;}
.xd4_c01319{left:870.915000px;}
.xb7_c01319{left:872.640000px;}
.xae_c01319{left:874.365000px;}
.x4b_c01319{left:876.960000px;}
.x1d_c01319{left:880.410000px;}
.xe2_c01319{left:883.875000px;}
.x7c_c01319{left:887.325000px;}
.x85_c01319{left:889.920000px;}
.x4c_c01319{left:892.515000px;}
.xed_c01319{left:895.110000px;}
.x96_c01319{left:896.835000px;}
.x8b_c01319{left:901.155000px;}
.x53_c01319{left:903.750000px;}
.x101_c01319{left:906.330000px;}
.x46_c01319{left:909.795000px;}
.x9a_c01319{left:920.160000px;}
.xa1_c01319{left:924.480000px;}
.x1e_c01319{left:929.670000px;}
.x105_c01319{left:942.630000px;}
@media print{
.v3_c01319{vertical-align:-6.133333pt;}
.v2_c01319{vertical-align:-3.093333pt;}
.v0_c01319{vertical-align:0.000000pt;}
.v1_c01319{vertical-align:3.093333pt;}
.ls3_c01319{letter-spacing:0.000000pt;}
.ls2_c01319{letter-spacing:13.316053pt;}
.ls1_c01319{letter-spacing:50.666667pt;}
.ls0_c01319{letter-spacing:467.874519pt;}
.ws0_c01319{word-spacing:-16.964160pt;}
.ws1_c01319{word-spacing:-6.811680pt;}
.ws2_c01319{word-spacing:0.000000pt;}
.fs4_c01319{font-size:3.072000pt;}
.fs20_c01319{font-size:5.333333pt;}
.fse_c01319{font-size:6.133333pt;}
.fs1e_c01319{font-size:9.226667pt;}
.fs1a_c01319{font-size:12.266667pt;}
.fs1_c01319{font-size:15.360000pt;}
.fs15_c01319{font-size:18.453333pt;}
.fs23_c01319{font-size:21.493333pt;}
.fs21_c01319{font-size:24.586667pt;}
.fs19_c01319{font-size:27.626667pt;}
.fs1b_c01319{font-size:30.720000pt;}
.fs0_c01319{font-size:33.813333pt;}
.fs14_c01319{font-size:36.853333pt;}
.fs8_c01319{font-size:39.946667pt;}
.fs5_c01319{font-size:42.986667pt;}
.fs6_c01319{font-size:46.080000pt;}
.fs17_c01319{font-size:49.173333pt;}
.fs13_c01319{font-size:52.213333pt;}
.fs18_c01319{font-size:55.306667pt;}
.fs12_c01319{font-size:58.346667pt;}
.fs9_c01319{font-size:61.440000pt;}
.fs7_c01319{font-size:64.533333pt;}
.fsb_c01319{font-size:67.573333pt;}
.fsf_c01319{font-size:70.666667pt;}
.fs16_c01319{font-size:73.706667pt;}
.fsc_c01319{font-size:76.800000pt;}
.fs11_c01319{font-size:79.893333pt;}
.fs1f_c01319{font-size:82.933333pt;}
.fs1d_c01319{font-size:86.026667pt;}
.fsa_c01319{font-size:89.066667pt;}
.fs1c_c01319{font-size:92.160000pt;}
.fs22_c01319{font-size:98.293333pt;}
.fs10_c01319{font-size:110.613333pt;}
.fsd_c01319{font-size:116.746667pt;}
.fs3_c01319{font-size:138.240000pt;}
.fs2_c01319{font-size:288.746667pt;}
.y0_c01319{bottom:0.000000pt;}
.y1fb_c01319{bottom:145.920000pt;}
.y1f9_c01319{bottom:150.533333pt;}
.y1fa_c01319{bottom:151.293333pt;}
.y1f6_c01319{bottom:160.506667pt;}
.y1f8_c01319{bottom:161.280000pt;}
.y1f7_c01319{bottom:162.053333pt;}
.y1f0_c01319{bottom:162.813333pt;}
.y1f1_c01319{bottom:163.586667pt;}
.y1f2_c01319{bottom:164.346667pt;}
.y1ef_c01319{bottom:165.120000pt;}
.y1f3_c01319{bottom:165.893333pt;}
.y1f4_c01319{bottom:166.653333pt;}
.y1f5_c01319{bottom:172.800000pt;}
.y1e6_c01319{bottom:180.480000pt;}
.y1ea_c01319{bottom:181.253333pt;}
.y1e5_c01319{bottom:182.786667pt;}
.y1eb_c01319{bottom:183.546667pt;}
.y1ec_c01319{bottom:184.320000pt;}
.y1ee_c01319{bottom:185.853333pt;}
.y1ed_c01319{bottom:187.386667pt;}
.y1e9_c01319{bottom:188.160000pt;}
.y1e8_c01319{bottom:188.933333pt;}
.y1e7_c01319{bottom:189.693333pt;}
.y1de_c01319{bottom:198.906667pt;}
.y1dd_c01319{bottom:199.680000pt;}
.y1e3_c01319{bottom:201.213333pt;}
.y1e4_c01319{bottom:201.986667pt;}
.y1e0_c01319{bottom:202.746667pt;}
.y1e1_c01319{bottom:203.520000pt;}
.y1df_c01319{bottom:204.293333pt;}
.y1e2_c01319{bottom:205.053333pt;}
.y1d4_c01319{bottom:216.573333pt;}
.y1d6_c01319{bottom:218.106667pt;}
.y1d8_c01319{bottom:218.880000pt;}
.y1db_c01319{bottom:219.653333pt;}
.y1d5_c01319{bottom:220.413333pt;}
.y1da_c01319{bottom:221.186667pt;}
.y1d7_c01319{bottom:221.946667pt;}
.y1d9_c01319{bottom:222.720000pt;}
.y1dc_c01319{bottom:223.493333pt;}
.y1ce_c01319{bottom:234.240000pt;}
.y1d1_c01319{bottom:235.013333pt;}
.y1d3_c01319{bottom:235.773333pt;}
.y1cd_c01319{bottom:236.546667pt;}
.y1d0_c01319{bottom:237.306667pt;}
.y1d2_c01319{bottom:238.080000pt;}
.y1cf_c01319{bottom:239.613333pt;}
.y1c4_c01319{bottom:251.133333pt;}
.y1c8_c01319{bottom:254.213333pt;}
.y1cc_c01319{bottom:254.973333pt;}
.y1ca_c01319{bottom:255.746667pt;}
.y1cb_c01319{bottom:256.506667pt;}
.y1c5_c01319{bottom:257.280000pt;}
.y1c7_c01319{bottom:258.053333pt;}
.y1c6_c01319{bottom:258.813333pt;}
.y1c9_c01319{bottom:268.800000pt;}
.y1bb_c01319{bottom:271.106667pt;}
.y1c0_c01319{bottom:271.866667pt;}
.y1be_c01319{bottom:272.640000pt;}
.y1bc_c01319{bottom:273.413333pt;}
.y1c1_c01319{bottom:274.173333pt;}
.y1c3_c01319{bottom:274.946667pt;}
.y1bd_c01319{bottom:275.706667pt;}
.y1c2_c01319{bottom:278.013333pt;}
.y1bf_c01319{bottom:285.693333pt;}
.y1b5_c01319{bottom:291.066667pt;}
.y1b9_c01319{bottom:291.840000pt;}
.y1b6_c01319{bottom:292.613333pt;}
.y1b7_c01319{bottom:293.373333pt;}
.y1ba_c01319{bottom:294.906667pt;}
.y1b8_c01319{bottom:299.520000pt;}
.y1ad_c01319{bottom:307.200000pt;}
.y1b0_c01319{bottom:307.973333pt;}
.y1ae_c01319{bottom:308.733333pt;}
.y1b4_c01319{bottom:309.506667pt;}
.y1b2_c01319{bottom:310.266667pt;}
.y1af_c01319{bottom:311.040000pt;}
.y1b1_c01319{bottom:314.106667pt;}
.y1b3_c01319{bottom:315.653333pt;}
.y1a5_c01319{bottom:324.866667pt;}
.y1a7_c01319{bottom:325.626667pt;}
.y1a8_c01319{bottom:327.173333pt;}
.y1a9_c01319{bottom:327.933333pt;}
.y1a4_c01319{bottom:328.706667pt;}
.y1aa_c01319{bottom:329.466667pt;}
.y1ab_c01319{bottom:330.240000pt;}
.y1a6_c01319{bottom:331.013333pt;}
.y1ac_c01319{bottom:332.546667pt;}
.y19f_c01319{bottom:337.920000pt;}
.y19a_c01319{bottom:338.693333pt;}
.y1a3_c01319{bottom:339.453333pt;}
.y19e_c01319{bottom:340.226667pt;}
.y1a1_c01319{bottom:340.986667pt;}
.y19c_c01319{bottom:341.760000pt;}
.y1a0_c01319{bottom:342.533333pt;}
.y1a2_c01319{bottom:344.066667pt;}
.y19b_c01319{bottom:347.906667pt;}
.y19d_c01319{bottom:348.666667pt;}
.y194_c01319{bottom:359.426667pt;}
.y196_c01319{bottom:360.960000pt;}
.y193_c01319{bottom:361.733333pt;}
.y191_c01319{bottom:362.493333pt;}
.y198_c01319{bottom:363.266667pt;}
.y197_c01319{bottom:364.026667pt;}
.y195_c01319{bottom:364.800000pt;}
.y192_c01319{bottom:365.573333pt;}
.y199_c01319{bottom:366.333333pt;}
.y18b_c01319{bottom:379.386667pt;}
.y189_c01319{bottom:380.160000pt;}
.y18f_c01319{bottom:380.933333pt;}
.y18a_c01319{bottom:381.693333pt;}
.y190_c01319{bottom:383.226667pt;}
.y18e_c01319{bottom:384.000000pt;}
.y18d_c01319{bottom:387.066667pt;}
.y18c_c01319{bottom:393.986667pt;}
.y181_c01319{bottom:395.520000pt;}
.y184_c01319{bottom:397.826667pt;}
.y183_c01319{bottom:398.586667pt;}
.y182_c01319{bottom:399.360000pt;}
.y187_c01319{bottom:400.133333pt;}
.y186_c01319{bottom:400.893333pt;}
.y180_c01319{bottom:401.666667pt;}
.y185_c01319{bottom:404.733333pt;}
.y188_c01319{bottom:413.186667pt;}
.y176_c01319{bottom:414.720000pt;}
.y177_c01319{bottom:415.493333pt;}
.y17d_c01319{bottom:416.253333pt;}
.y178_c01319{bottom:417.026667pt;}
.y17a_c01319{bottom:417.786667pt;}
.y17c_c01319{bottom:418.560000pt;}
.y17b_c01319{bottom:419.333333pt;}
.y179_c01319{bottom:420.093333pt;}
.y17e_c01319{bottom:423.173333pt;}
.y17f_c01319{bottom:425.466667pt;}
.y173_c01319{bottom:427.773333pt;}
.y175_c01319{bottom:428.546667pt;}
.y174_c01319{bottom:429.306667pt;}
.y16e_c01319{bottom:432.386667pt;}
.y172_c01319{bottom:433.146667pt;}
.y16f_c01319{bottom:434.693333pt;}
.y16c_c01319{bottom:435.453333pt;}
.y171_c01319{bottom:436.226667pt;}
.y16d_c01319{bottom:436.986667pt;}
.y170_c01319{bottom:437.760000pt;}
.y167_c01319{bottom:449.280000pt;}
.y165_c01319{bottom:450.053333pt;}
.y162_c01319{bottom:450.813333pt;}
.y160_c01319{bottom:451.586667pt;}
.y168_c01319{bottom:452.346667pt;}
.y169_c01319{bottom:453.893333pt;}
.y163_c01319{bottom:454.653333pt;}
.y164_c01319{bottom:455.426667pt;}
.y16a_c01319{bottom:456.186667pt;}
.y16b_c01319{bottom:456.960000pt;}
.y161_c01319{bottom:458.493333pt;}
.y166_c01319{bottom:459.266667pt;}
.y15b_c01319{bottom:466.946667pt;}
.y15c_c01319{bottom:467.706667pt;}
.y15f_c01319{bottom:468.480000pt;}
.y15d_c01319{bottom:470.013333pt;}
.y15e_c01319{bottom:470.786667pt;}
.y15a_c01319{bottom:483.066667pt;}
.y153_c01319{bottom:483.840000pt;}
.y154_c01319{bottom:484.613333pt;}
.y155_c01319{bottom:485.373333pt;}
.y152_c01319{bottom:486.146667pt;}
.y157_c01319{bottom:486.906667pt;}
.y156_c01319{bottom:488.453333pt;}
.y158_c01319{bottom:491.520000pt;}
.y159_c01319{bottom:492.293333pt;}
.y14d_c01319{bottom:503.040000pt;}
.y14f_c01319{bottom:503.813333pt;}
.y150_c01319{bottom:506.106667pt;}
.y14c_c01319{bottom:507.653333pt;}
.y151_c01319{bottom:508.413333pt;}
.y14e_c01319{bottom:509.946667pt;}
.y142_c01319{bottom:519.933333pt;}
.y144_c01319{bottom:520.706667pt;}
.y143_c01319{bottom:521.466667pt;}
.y145_c01319{bottom:522.240000pt;}
.y14a_c01319{bottom:523.773333pt;}
.y146_c01319{bottom:525.306667pt;}
.y147_c01319{bottom:526.853333pt;}
.y148_c01319{bottom:527.613333pt;}
.y149_c01319{bottom:528.386667pt;}
.y14b_c01319{bottom:531.453333pt;}
.y13f_c01319{bottom:539.133333pt;}
.y13b_c01319{bottom:539.906667pt;}
.y139_c01319{bottom:540.666667pt;}
.y140_c01319{bottom:541.440000pt;}
.y13a_c01319{bottom:542.973333pt;}
.y13e_c01319{bottom:545.280000pt;}
.y141_c01319{bottom:546.813333pt;}
.y13c_c01319{bottom:548.346667pt;}
.y13d_c01319{bottom:551.426667pt;}
.y202_c01319{bottom:552.960000pt;}
.y201_c01319{bottom:554.493333pt;}
.y130_c01319{bottom:556.026667pt;}
.y131_c01319{bottom:557.573333pt;}
.y137_c01319{bottom:558.333333pt;}
.y135_c01319{bottom:559.106667pt;}
.y132_c01319{bottom:559.866667pt;}
.y136_c01319{bottom:562.173333pt;}
.y133_c01319{bottom:562.946667pt;}
.y138_c01319{bottom:567.546667pt;}
.y134_c01319{bottom:572.933333pt;}
.y127_c01319{bottom:574.466667pt;}
.y12a_c01319{bottom:575.226667pt;}
.y129_c01319{bottom:576.000000pt;}
.y12f_c01319{bottom:576.773333pt;}
.y12c_c01319{bottom:577.533333pt;}
.y12d_c01319{bottom:578.306667pt;}
.y126_c01319{bottom:579.066667pt;}
.y128_c01319{bottom:579.840000pt;}
.y12e_c01319{bottom:581.373333pt;}
.y12b_c01319{bottom:589.826667pt;}
.y121_c01319{bottom:593.666667pt;}
.y120_c01319{bottom:594.426667pt;}
.y11d_c01319{bottom:595.200000pt;}
.y123_c01319{bottom:595.973333pt;}
.y11e_c01319{bottom:596.733333pt;}
.y11f_c01319{bottom:597.506667pt;}
.y122_c01319{bottom:599.040000pt;}
.y125_c01319{bottom:602.106667pt;}
.y124_c01319{bottom:604.413333pt;}
.y115_c01319{bottom:609.026667pt;}
.y116_c01319{bottom:609.786667pt;}
.y11b_c01319{bottom:611.333333pt;}
.y119_c01319{bottom:612.093333pt;}
.y11a_c01319{bottom:613.626667pt;}
.y117_c01319{bottom:614.400000pt;}
.y118_c01319{bottom:615.173333pt;}
.y11c_c01319{bottom:616.706667pt;}
.y10f_c01319{bottom:627.453333pt;}
.y10e_c01319{bottom:628.226667pt;}
.y114_c01319{bottom:629.760000pt;}
.y110_c01319{bottom:630.533333pt;}
.y112_c01319{bottom:632.066667pt;}
.y113_c01319{bottom:633.600000pt;}
.y111_c01319{bottom:634.373333pt;}
.y10d_c01319{bottom:637.440000pt;}
.y102_c01319{bottom:643.586667pt;}
.y103_c01319{bottom:645.120000pt;}
.y106_c01319{bottom:646.653333pt;}
.y104_c01319{bottom:647.426667pt;}
.y109_c01319{bottom:648.960000pt;}
.y107_c01319{bottom:649.733333pt;}
.y105_c01319{bottom:651.266667pt;}
.y108_c01319{bottom:652.800000pt;}
.y10b_c01319{bottom:653.573333pt;}
.y10a_c01319{bottom:656.640000pt;}
.y10c_c01319{bottom:662.013333pt;}
.yfb_c01319{bottom:663.546667pt;}
.y100_c01319{bottom:665.093333pt;}
.y101_c01319{bottom:665.853333pt;}
.yfd_c01319{bottom:667.386667pt;}
.yfc_c01319{bottom:668.160000pt;}
.yfe_c01319{bottom:668.933333pt;}
.yff_c01319{bottom:669.693333pt;}
.yf5_c01319{bottom:681.213333pt;}
.yf6_c01319{bottom:681.986667pt;}
.yfa_c01319{bottom:683.520000pt;}
.yf8_c01319{bottom:684.293333pt;}
.yf7_c01319{bottom:685.826667pt;}
.yf9_c01319{bottom:695.813333pt;}
.y1_c01319{bottom:698.106667pt;}
.yf2_c01319{bottom:699.653333pt;}
.yf3_c01319{bottom:700.413333pt;}
.yef_c01319{bottom:701.186667pt;}
.yf0_c01319{bottom:701.946667pt;}
.yf1_c01319{bottom:702.720000pt;}
.yf4_c01319{bottom:705.026667pt;}
.ye8_c01319{bottom:711.173333pt;}
.ye7_c01319{bottom:711.933333pt;}
.yeb_c01319{bottom:714.240000pt;}
.yed_c01319{bottom:715.013333pt;}
.ye6_c01319{bottom:716.546667pt;}
.yee_c01319{bottom:717.306667pt;}
.ye9_c01319{bottom:718.080000pt;}
.yea_c01319{bottom:723.453333pt;}
.yec_c01319{bottom:733.440000pt;}
.ydf_c01319{bottom:734.213333pt;}
.yde_c01319{bottom:734.973333pt;}
.ydd_c01319{bottom:735.746667pt;}
.ye0_c01319{bottom:736.506667pt;}
.ye2_c01319{bottom:738.053333pt;}
.ye3_c01319{bottom:739.586667pt;}
.ye1_c01319{bottom:740.346667pt;}
.ye4_c01319{bottom:741.120000pt;}
.ye5_c01319{bottom:741.893333pt;}
.ydb_c01319{bottom:754.173333pt;}
.yd7_c01319{bottom:755.706667pt;}
.yd8_c01319{bottom:756.480000pt;}
.yd9_c01319{bottom:757.253333pt;}
.yda_c01319{bottom:758.786667pt;}
.ydc_c01319{bottom:763.386667pt;}
.ycc_c01319{bottom:769.533333pt;}
.yd1_c01319{bottom:771.066667pt;}
.ycf_c01319{bottom:771.840000pt;}
.ycd_c01319{bottom:772.613333pt;}
.ycb_c01319{bottom:773.373333pt;}
.yce_c01319{bottom:774.146667pt;}
.yd0_c01319{bottom:774.906667pt;}
.yd3_c01319{bottom:775.680000pt;}
.yd4_c01319{bottom:776.453333pt;}
.yca_c01319{bottom:777.213333pt;}
.yd5_c01319{bottom:777.986667pt;}
.yd6_c01319{bottom:781.053333pt;}
.yd2_c01319{bottom:786.426667pt;}
.yc3_c01319{bottom:787.973333pt;}
.yc2_c01319{bottom:789.506667pt;}
.yc5_c01319{bottom:790.266667pt;}
.yc7_c01319{bottom:791.040000pt;}
.yc8_c01319{bottom:791.813333pt;}
.yc9_c01319{bottom:793.346667pt;}
.yc4_c01319{bottom:794.106667pt;}
.yc6_c01319{bottom:794.880000pt;}
.yb8_c01319{bottom:804.866667pt;}
.ybb_c01319{bottom:806.400000pt;}
.yb9_c01319{bottom:807.173333pt;}
.yba_c01319{bottom:807.933333pt;}
.ybd_c01319{bottom:808.706667pt;}
.yc0_c01319{bottom:809.466667pt;}
.ybf_c01319{bottom:811.013333pt;}
.ybc_c01319{bottom:811.773333pt;}
.ybe_c01319{bottom:814.080000pt;}
.yc1_c01319{bottom:816.386667pt;}
.yb2_c01319{bottom:824.826667pt;}
.yb3_c01319{bottom:827.133333pt;}
.yb0_c01319{bottom:827.906667pt;}
.yb1_c01319{bottom:828.666667pt;}
.yb4_c01319{bottom:829.440000pt;}
.yb5_c01319{bottom:830.213333pt;}
.yb6_c01319{bottom:831.746667pt;}
.yb7_c01319{bottom:832.506667pt;}
.ya8_c01319{bottom:843.266667pt;}
.yae_c01319{bottom:844.026667pt;}
.ya9_c01319{bottom:844.800000pt;}
.yaa_c01319{bottom:845.573333pt;}
.yab_c01319{bottom:847.106667pt;}
.yad_c01319{bottom:847.866667pt;}
.yaf_c01319{bottom:849.413333pt;}
.yac_c01319{bottom:850.173333pt;}
.ya1_c01319{bottom:860.160000pt;}
.ya2_c01319{bottom:860.933333pt;}
.ya6_c01319{bottom:861.693333pt;}
.ya5_c01319{bottom:862.466667pt;}
.ya3_c01319{bottom:865.533333pt;}
.ya4_c01319{bottom:871.680000pt;}
.ya7_c01319{bottom:872.453333pt;}
.y9a_c01319{bottom:875.520000pt;}
.y99_c01319{bottom:877.826667pt;}
.y9e_c01319{bottom:878.586667pt;}
.y9d_c01319{bottom:879.360000pt;}
.y9f_c01319{bottom:880.893333pt;}
.y9b_c01319{bottom:881.666667pt;}
.y9c_c01319{bottom:882.426667pt;}
.ya0_c01319{bottom:883.973333pt;}
.y92_c01319{bottom:892.413333pt;}
.y95_c01319{bottom:893.946667pt;}
.y97_c01319{bottom:894.720000pt;}
.y98_c01319{bottom:895.493333pt;}
.y96_c01319{bottom:896.253333pt;}
.y93_c01319{bottom:898.560000pt;}
.y94_c01319{bottom:899.333333pt;}
.y8a_c01319{bottom:910.853333pt;}
.y8c_c01319{bottom:912.386667pt;}
.y8e_c01319{bottom:913.920000pt;}
.y8f_c01319{bottom:915.453333pt;}
.y91_c01319{bottom:916.226667pt;}
.y8b_c01319{bottom:916.986667pt;}
.y90_c01319{bottom:917.760000pt;}
.y8d_c01319{bottom:918.533333pt;}
.y83_c01319{bottom:926.213333pt;}
.y84_c01319{bottom:926.973333pt;}
.y86_c01319{bottom:928.506667pt;}
.y87_c01319{bottom:929.280000pt;}
.y88_c01319{bottom:933.893333pt;}
.y85_c01319{bottom:934.653333pt;}
.y89_c01319{bottom:943.866667pt;}
.y7d_c01319{bottom:947.706667pt;}
.y7e_c01319{bottom:948.480000pt;}
.y7c_c01319{bottom:949.253333pt;}
.y80_c01319{bottom:950.013333pt;}
.y7b_c01319{bottom:951.546667pt;}
.y7f_c01319{bottom:953.093333pt;}
.y81_c01319{bottom:954.626667pt;}
.y82_c01319{bottom:956.160000pt;}
.y74_c01319{bottom:966.146667pt;}
.y75_c01319{bottom:966.906667pt;}
.y73_c01319{bottom:967.680000pt;}
.y78_c01319{bottom:968.453333pt;}
.y72_c01319{bottom:969.213333pt;}
.y76_c01319{bottom:970.746667pt;}
.y77_c01319{bottom:971.520000pt;}
.y79_c01319{bottom:972.293333pt;}
.y7a_c01319{bottom:973.826667pt;}
.y71_c01319{bottom:982.266667pt;}
.y6c_c01319{bottom:983.813333pt;}
.y6e_c01319{bottom:984.573333pt;}
.y6b_c01319{bottom:985.346667pt;}
.y6f_c01319{bottom:988.413333pt;}
.y70_c01319{bottom:989.186667pt;}
.y6d_c01319{bottom:989.946667pt;}
.y66_c01319{bottom:1001.466667pt;}
.y65_c01319{bottom:1003.013333pt;}
.y6a_c01319{bottom:1004.546667pt;}
.y67_c01319{bottom:1006.080000pt;}
.y64_c01319{bottom:1006.853333pt;}
.y68_c01319{bottom:1009.146667pt;}
.y69_c01319{bottom:1009.920000pt;}
.y5c_c01319{bottom:1019.133333pt;}
.y5b_c01319{bottom:1019.906667pt;}
.y5a_c01319{bottom:1020.666667pt;}
.y5d_c01319{bottom:1021.440000pt;}
.y5f_c01319{bottom:1022.213333pt;}
.y5e_c01319{bottom:1022.973333pt;}
.y61_c01319{bottom:1024.506667pt;}
.y60_c01319{bottom:1025.280000pt;}
.y62_c01319{bottom:1026.053333pt;}
.y63_c01319{bottom:1026.813333pt;}
.y55_c01319{bottom:1036.800000pt;}
.y53_c01319{bottom:1038.333333pt;}
.y54_c01319{bottom:1039.106667pt;}
.y52_c01319{bottom:1041.413333pt;}
.y56_c01319{bottom:1042.173333pt;}
.y57_c01319{bottom:1043.706667pt;}
.y59_c01319{bottom:1044.480000pt;}
.y58_c01319{bottom:1045.253333pt;}
.y4a_c01319{bottom:1056.000000pt;}
.y4d_c01319{bottom:1056.773333pt;}
.y4f_c01319{bottom:1057.533333pt;}
.y50_c01319{bottom:1058.306667pt;}
.y49_c01319{bottom:1059.840000pt;}
.y4c_c01319{bottom:1060.613333pt;}
.y4b_c01319{bottom:1061.373333pt;}
.y4e_c01319{bottom:1062.146667pt;}
.y51_c01319{bottom:1065.986667pt;}
.y200_c01319{bottom:1067.520000pt;}
.y40_c01319{bottom:1073.666667pt;}
.y45_c01319{bottom:1075.200000pt;}
.y43_c01319{bottom:1075.973333pt;}
.y44_c01319{bottom:1076.733333pt;}
.y41_c01319{bottom:1078.266667pt;}
.y42_c01319{bottom:1079.040000pt;}
.y46_c01319{bottom:1080.573333pt;}
.y48_c01319{bottom:1082.880000pt;}
.y47_c01319{bottom:1083.653333pt;}
.y39_c01319{bottom:1090.560000pt;}
.y38_c01319{bottom:1092.093333pt;}
.y3a_c01319{bottom:1092.866667pt;}
.y3f_c01319{bottom:1093.626667pt;}
.y3b_c01319{bottom:1094.400000pt;}
.y37_c01319{bottom:1095.173333pt;}
.y3d_c01319{bottom:1095.933333pt;}
.y3e_c01319{bottom:1097.466667pt;}
.y3c_c01319{bottom:1098.240000pt;}
.y2c_c01319{bottom:1104.386667pt;}
.y35_c01319{bottom:1107.453333pt;}
.y36_c01319{bottom:1108.226667pt;}
.y30_c01319{bottom:1108.986667pt;}
.y31_c01319{bottom:1110.533333pt;}
.y33_c01319{bottom:1111.293333pt;}
.y2d_c01319{bottom:1112.826667pt;}
.y2e_c01319{bottom:1113.600000pt;}
.y2f_c01319{bottom:1114.373333pt;}
.y32_c01319{bottom:1115.906667pt;}
.y34_c01319{bottom:1118.973333pt;}
.y2a_c01319{bottom:1128.186667pt;}
.y24_c01319{bottom:1128.960000pt;}
.y25_c01319{bottom:1129.733333pt;}
.y26_c01319{bottom:1132.026667pt;}
.y27_c01319{bottom:1132.800000pt;}
.y2b_c01319{bottom:1133.573333pt;}
.y28_c01319{bottom:1134.333333pt;}
.y29_c01319{bottom:1142.013333pt;}
.y1f_c01319{bottom:1144.320000pt;}
.y1d_c01319{bottom:1145.853333pt;}
.y1b_c01319{bottom:1146.626667pt;}
.y1c_c01319{bottom:1148.933333pt;}
.y1e_c01319{bottom:1149.693333pt;}
.y22_c01319{bottom:1150.466667pt;}
.y20_c01319{bottom:1151.226667pt;}
.y21_c01319{bottom:1152.000000pt;}
.y23_c01319{bottom:1160.453333pt;}
.y12_c01319{bottom:1163.520000pt;}
.y11_c01319{bottom:1164.293333pt;}
.y18_c01319{bottom:1165.053333pt;}
.y19_c01319{bottom:1165.826667pt;}
.y15_c01319{bottom:1166.586667pt;}
.y13_c01319{bottom:1168.893333pt;}
.y14_c01319{bottom:1169.666667pt;}
.y16_c01319{bottom:1170.426667pt;}
.y1a_c01319{bottom:1175.040000pt;}
.y10_c01319{bottom:1177.346667pt;}
.y17_c01319{bottom:1180.413333pt;}
.ye_c01319{bottom:1191.933333pt;}
.yf_c01319{bottom:1193.466667pt;}
.yd_c01319{bottom:1220.346667pt;}
.yb_c01319{bottom:1228.800000pt;}
.ya_c01319{bottom:1229.573333pt;}
.y3_c01319{bottom:1231.866667pt;}
.y1ff_c01319{bottom:1237.253333pt;}
.yc_c01319{bottom:1240.320000pt;}
.y8_c01319{bottom:1241.853333pt;}
.y7_c01319{bottom:1244.160000pt;}
.y9_c01319{bottom:1244.933333pt;}
.y1fe_c01319{bottom:1251.840000pt;}
.y1fd_c01319{bottom:1254.146667pt;}
.y6_c01319{bottom:1265.666667pt;}
.y5_c01319{bottom:1266.426667pt;}
.y4_c01319{bottom:1267.973333pt;}
.y1fc_c01319{bottom:1279.493333pt;}
.y2_c01319{bottom:1300.226667pt;}
.h6_c01319{height:2.764500pt;}
.h22_c01319{height:4.799479pt;}
.h10_c01319{height:5.519401pt;}
.h20_c01319{height:8.303099pt;}
.h1c_c01319{height:11.038802pt;}
.h3_c01319{height:13.822500pt;}
.h17_c01319{height:16.606198pt;}
.h26_c01319{height:19.341901pt;}
.h23_c01319{height:22.125599pt;}
.h1b_c01319{height:24.861302pt;}
.h1d_c01319{height:27.645000pt;}
.h2_c01319{height:30.428698pt;}
.h16_c01319{height:33.164401pt;}
.ha_c01319{height:35.948099pt;}
.h7_c01319{height:38.683802pt;}
.h8_c01319{height:41.467500pt;}
.h19_c01319{height:44.251198pt;}
.h24_c01319{height:44.560833pt;}
.h15_c01319{height:46.986901pt;}
.h27_c01319{height:49.156667pt;}
.h1a_c01319{height:49.770599pt;}
.h28_c01319{height:50.026901pt;}
.h14_c01319{height:52.506302pt;}
.hb_c01319{height:55.290000pt;}
.h9_c01319{height:58.073698pt;}
.hd_c01319{height:60.809401pt;}
.h11_c01319{height:63.593099pt;}
.h18_c01319{height:66.328802pt;}
.he_c01319{height:69.112500pt;}
.h13_c01319{height:71.896198pt;}
.h21_c01319{height:74.631901pt;}
.h1f_c01319{height:77.415599pt;}
.hc_c01319{height:80.151302pt;}
.h1e_c01319{height:82.935000pt;}
.h25_c01319{height:88.454401pt;}
.h12_c01319{height:99.541198pt;}
.hf_c01319{height:105.060599pt;}
.h5_c01319{height:124.402500pt;}
.h4_c01319{height:259.843802pt;}
.h0_c01319{height:1341.693333pt;}
.h1_c01319{height:1342.000000pt;}
.w0_c01319{width:959.226667pt;}
.w1_c01319{width:959.333333pt;}
.x0_c01319{left:0.000000pt;}
.x124_c01319{left:105.986667pt;}
.x125_c01319{left:113.666667pt;}
.x126_c01319{left:169.733333pt;}
.x1_c01319{left:173.573333pt;}
.x127_c01319{left:185.853333pt;}
.xfc_c01319{left:189.693333pt;}
.x102_c01319{left:194.306667pt;}
.xf8_c01319{left:195.840000pt;}
.xfd_c01319{left:203.520000pt;}
.xcd_c01319{left:206.586667pt;}
.x8e_c01319{left:208.133333pt;}
.x10_c01319{left:210.426667pt;}
.x66_c01319{left:212.733333pt;}
.x54_c01319{left:215.813333pt;}
.x11_c01319{left:217.346667pt;}
.xd1_c01319{left:219.653333pt;}
.xf1_c01319{left:221.946667pt;}
.x10f_c01319{left:223.493333pt;}
.xd5_c01319{left:225.786667pt;}
.xb2_c01319{left:232.706667pt;}
.xc7_c01319{left:235.013333pt;}
.x86_c01319{left:238.853333pt;}
.xd6_c01319{left:240.386667pt;}
.xa2_c01319{left:241.920000pt;}
.x55_c01319{left:244.226667pt;}
.x73_c01319{left:245.760000pt;}
.xe6_c01319{left:248.066667pt;}
.x4d_c01319{left:249.600000pt;}
.xd9_c01319{left:251.906667pt;}
.xc4_c01319{left:254.213333pt;}
.x40_c01319{left:255.746667pt;}
.x9b_c01319{left:258.053333pt;}
.xb8_c01319{left:259.586667pt;}
.x117_c01319{left:261.120000pt;}
.xbc_c01319{left:262.653333pt;}
.x33_c01319{left:264.960000pt;}
.x5d_c01319{left:268.800000pt;}
.x29_c01319{left:270.333333pt;}
.x34_c01319{left:272.640000pt;}
.x1f_c01319{left:274.173333pt;}
.x41_c01319{left:276.480000pt;}
.x121_c01319{left:278.786667pt;}
.x5e_c01319{left:280.320000pt;}
.x2a_c01319{left:281.853333pt;}
.x12_c01319{left:283.386667pt;}
.x11a_c01319{left:284.933333pt;}
.x35_c01319{left:286.466667pt;}
.x56_c01319{left:289.533333pt;}
.x11b_c01319{left:291.066667pt;}
.x9c_c01319{left:292.613333pt;}
.xca_c01319{left:295.680000pt;}
.x10b_c01319{left:297.986667pt;}
.x7d_c01319{left:299.520000pt;}
.xbd_c01319{left:301.053333pt;}
.x36_c01319{left:302.586667pt;}
.x57_c01319{left:304.133333pt;}
.x20_c01319{left:305.666667pt;}
.x10c_c01319{left:307.200000pt;}
.x42_c01319{left:308.733333pt;}
.xa3_c01319{left:310.266667pt;}
.x87_c01319{left:311.813333pt;}
.x74_c01319{left:314.880000pt;}
.x47_c01319{left:317.186667pt;}
.x6c_c01319{left:318.720000pt;}
.x21_c01319{left:321.026667pt;}
.xf9_c01319{left:322.560000pt;}
.x11c_c01319{left:324.866667pt;}
.xd_c01319{left:326.400000pt;}
.xfe_c01319{left:327.933333pt;}
.x4e_c01319{left:330.240000pt;}
.xa4_c01319{left:332.546667pt;}
.xb9_c01319{left:334.080000pt;}
.x37_c01319{left:337.146667pt;}
.x107_c01319{left:340.986667pt;}
.x58_c01319{left:342.533333pt;}
.x88_c01319{left:344.826667pt;}
.x6d_c01319{left:347.133333pt;}
.x108_c01319{left:348.666667pt;}
.xbe_c01319{left:350.213333pt;}
.xdc_c01319{left:351.746667pt;}
.x118_c01319{left:354.813333pt;}
.x67_c01319{left:357.120000pt;}
.xaf_c01319{left:359.426667pt;}
.x13_c01319{left:361.733333pt;}
.x43_c01319{left:363.266667pt;}
.x5f_c01319{left:367.106667pt;}
.x7e_c01319{left:368.640000pt;}
.xf4_c01319{left:371.706667pt;}
.x103_c01319{left:374.013333pt;}
.x106_c01319{left:375.546667pt;}
.x2b_c01319{left:377.093333pt;}
.x38_c01319{left:381.693333pt;}
.x48_c01319{left:384.000000pt;}
.x75_c01319{left:385.533333pt;}
.xd7_c01319{left:387.066667pt;}
.xe3_c01319{left:388.613333pt;}
.x22_c01319{left:390.146667pt;}
.x60_c01319{left:394.746667pt;}
.xb3_c01319{left:396.293333pt;}
.x7f_c01319{left:397.826667pt;}
.xe_c01319{left:399.360000pt;}
.xb4_c01319{left:401.666667pt;}
.xe4_c01319{left:403.200000pt;}
.x91_c01319{left:404.733333pt;}
.xce_c01319{left:406.266667pt;}
.x10a_c01319{left:407.813333pt;}
.x59_c01319{left:410.106667pt;}
.xa5_c01319{left:411.653333pt;}
.x14_c01319{left:418.560000pt;}
.x39_c01319{left:421.626667pt;}
.xfb_c01319{left:423.173333pt;}
.xe7_c01319{left:424.706667pt;}
.xa6_c01319{left:426.240000pt;}
.x2c_c01319{left:428.546667pt;}
.xf5_c01319{left:430.080000pt;}
.x76_c01319{left:431.613333pt;}
.xe8_c01319{left:433.146667pt;}
.x4f_c01319{left:435.453333pt;}
.x23_c01319{left:436.986667pt;}
.x2d_c01319{left:438.533333pt;}
.xcf_c01319{left:440.826667pt;}
.x61_c01319{left:442.373333pt;}
.xba_c01319{left:443.906667pt;}
.x6e_c01319{left:445.440000pt;}
.x115_c01319{left:449.280000pt;}
.x92_c01319{left:451.586667pt;}
.xa7_c01319{left:453.893333pt;}
.x15_c01319{left:455.426667pt;}
.x24_c01319{left:457.733333pt;}
.x77_c01319{left:460.800000pt;}
.x89_c01319{left:463.866667pt;}
.x3a_c01319{left:465.413333pt;}
.x6f_c01319{left:467.706667pt;}
.x10d_c01319{left:470.013333pt;}
.x93_c01319{left:473.093333pt;}
.x70_c01319{left:476.160000pt;}
.x119_c01319{left:477.693333pt;}
.x50_c01319{left:480.773333pt;}
.xc5_c01319{left:483.840000pt;}
.x110_c01319{left:486.906667pt;}
.x16_c01319{left:490.746667pt;}
.xcb_c01319{left:493.053333pt;}
.x2e_c01319{left:494.586667pt;}
.xf2_c01319{left:496.893333pt;}
.x3b_c01319{left:498.426667pt;}
.x116_c01319{left:501.506667pt;}
.xc8_c01319{left:503.813333pt;}
.xdd_c01319{left:505.346667pt;}
.x17_c01319{left:506.880000pt;}
.x25_c01319{left:508.413333pt;}
.x3c_c01319{left:509.946667pt;}
.xde_c01319{left:511.493333pt;}
.xe9_c01319{left:513.026667pt;}
.x9d_c01319{left:514.560000pt;}
.x11d_c01319{left:516.093333pt;}
.xd8_c01319{left:517.626667pt;}
.x2f_c01319{left:519.173333pt;}
.xb0_c01319{left:523.773333pt;}
.x68_c01319{left:525.306667pt;}
.x18_c01319{left:527.613333pt;}
.x78_c01319{left:529.920000pt;}
.xa8_c01319{left:533.760000pt;}
.x3d_c01319{left:535.293333pt;}
.x26_c01319{left:537.600000pt;}
.x109_c01319{left:542.213333pt;}
.x2_c01319{left:544.506667pt;}
.x97_c01319{left:546.813333pt;}
.xee_c01319{left:549.893333pt;}
.x11e_c01319{left:551.426667pt;}
.x94_c01319{left:552.960000pt;}
.xa_c01319{left:556.800000pt;}
.x5a_c01319{left:559.866667pt;}
.xa9_c01319{left:561.413333pt;}
.x69_c01319{left:562.946667pt;}
.x3_c01319{left:565.253333pt;}
.x8c_c01319{left:566.786667pt;}
.x62_c01319{left:568.320000pt;}
.xb5_c01319{left:569.853333pt;}
.x51_c01319{left:571.386667pt;}
.x80_c01319{left:572.933333pt;}
.x9e_c01319{left:576.000000pt;}
.x8f_c01319{left:577.533333pt;}
.xb_c01319{left:579.840000pt;}
.xea_c01319{left:585.213333pt;}
.x49_c01319{left:587.520000pt;}
.xf6_c01319{left:589.053333pt;}
.x7_c01319{left:591.360000pt;}
.x111_c01319{left:593.666667pt;}
.x5_c01319{left:595.200000pt;}
.xff_c01319{left:596.733333pt;}
.xd0_c01319{left:598.266667pt;}
.x19_c01319{left:600.573333pt;}
.x63_c01319{left:602.880000pt;}
.xbb_c01319{left:604.413333pt;}
.x71_c01319{left:606.720000pt;}
.x104_c01319{left:609.786667pt;}
.x3e_c01319{left:611.333333pt;}
.xaa_c01319{left:612.866667pt;}
.x8_c01319{left:615.173333pt;}
.xe5_c01319{left:616.706667pt;}
.x79_c01319{left:618.240000pt;}
.x52_c01319{left:622.080000pt;}
.x11f_c01319{left:623.613333pt;}
.x81_c01319{left:626.693333pt;}
.x113_c01319{left:629.760000pt;}
.x9_c01319{left:631.293333pt;}
.x6a_c01319{left:633.600000pt;}
.x112_c01319{left:635.133333pt;}
.x4_c01319{left:637.440000pt;}
.x6_c01319{left:639.746667pt;}
.xcc_c01319{left:641.280000pt;}
.x30_c01319{left:643.586667pt;}
.x1a_c01319{left:645.120000pt;}
.x120_c01319{left:646.653333pt;}
.x82_c01319{left:648.186667pt;}
.x98_c01319{left:650.493333pt;}
.xc_c01319{left:653.573333pt;}
.xc9_c01319{left:655.866667pt;}
.xab_c01319{left:660.480000pt;}
.xd2_c01319{left:662.013333pt;}
.x114_c01319{left:663.546667pt;}
.xda_c01319{left:665.093333pt;}
.x27_c01319{left:666.626667pt;}
.xbf_c01319{left:668.160000pt;}
.x9f_c01319{left:669.693333pt;}
.x7a_c01319{left:672.000000pt;}
.x99_c01319{left:673.533333pt;}
.xac_c01319{left:675.066667pt;}
.x123_c01319{left:676.613333pt;}
.x4a_c01319{left:678.146667pt;}
.x3f_c01319{left:681.986667pt;}
.xb6_c01319{left:683.520000pt;}
.xeb_c01319{left:686.586667pt;}
.xa0_c01319{left:688.133333pt;}
.x10e_c01319{left:689.666667pt;}
.x5b_c01319{left:691.200000pt;}
.x83_c01319{left:693.506667pt;}
.x1b_c01319{left:695.813333pt;}
.x64_c01319{left:697.346667pt;}
.xc0_c01319{left:700.413333pt;}
.x90_c01319{left:702.720000pt;}
.xec_c01319{left:706.560000pt;}
.xf3_c01319{left:708.093333pt;}
.xc1_c01319{left:709.626667pt;}
.xef_c01319{left:711.933333pt;}
.xad_c01319{left:714.240000pt;}
.x31_c01319{left:715.773333pt;}
.x95_c01319{left:718.080000pt;}
.xc6_c01319{left:719.613333pt;}
.xc2_c01319{left:721.146667pt;}
.x28_c01319{left:722.693333pt;}
.x32_c01319{left:724.226667pt;}
.x8d_c01319{left:726.533333pt;}
.xf0_c01319{left:728.066667pt;}
.xc3_c01319{left:729.600000pt;}
.xdf_c01319{left:731.133333pt;}
.x6b_c01319{left:732.666667pt;}
.x44_c01319{left:734.973333pt;}
.xf7_c01319{left:737.280000pt;}
.xd3_c01319{left:739.586667pt;}
.x8a_c01319{left:741.120000pt;}
.xe0_c01319{left:743.426667pt;}
.x65_c01319{left:744.960000pt;}
.x5c_c01319{left:748.026667pt;}
.xb1_c01319{left:749.573376pt;}
.xf_c01319{left:751.866667pt;}
.x100_c01319{left:753.413333pt;}
.x1c_c01319{left:755.706667pt;}
.x84_c01319{left:758.013333pt;}
.xdb_c01319{left:761.093333pt;}
.x72_c01319{left:763.386667pt;}
.x7b_c01319{left:764.933333pt;}
.x122_c01319{left:766.466667pt;}
.xfa_c01319{left:768.000000pt;}
.x45_c01319{left:769.533333pt;}
.xe1_c01319{left:771.840000pt;}
.xd4_c01319{left:774.146667pt;}
.xb7_c01319{left:775.680000pt;}
.xae_c01319{left:777.213333pt;}
.x4b_c01319{left:779.520000pt;}
.x1d_c01319{left:782.586667pt;}
.xe2_c01319{left:785.666667pt;}
.x7c_c01319{left:788.733333pt;}
.x85_c01319{left:791.040000pt;}
.x4c_c01319{left:793.346667pt;}
.xed_c01319{left:795.653333pt;}
.x96_c01319{left:797.186667pt;}
.x8b_c01319{left:801.026667pt;}
.x53_c01319{left:803.333333pt;}
.x101_c01319{left:805.626667pt;}
.x46_c01319{left:808.706667pt;}
.x9a_c01319{left:817.920000pt;}
.xa1_c01319{left:821.760000pt;}
.x1e_c01319{left:826.373333pt;}
.x105_c01319{left:837.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54b74fd4e25fa3d194c5e063.woff2')format("woff");}.ff1_c01320{font-family:ff1_c01320;line-height:1.109863;font-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_c01320{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma5_c01320{transform:matrix(0.043525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043525,0.000000,0.000000,0.250000,0,0);}
.m2a_c01320{transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);}
.m5d_c01320{transform:matrix(0.075300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075300,0.000000,0.000000,0.250000,0,0);}
.m119_c01320{transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);}
.m1be_c01320{transform:matrix(0.088775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088775,0.000000,0.000000,0.250000,0,0);}
.m150_c01320{transform:matrix(0.094175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094175,0.000000,0.000000,0.250000,0,0);}
.m93_c01320{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);}
.m166_c01320{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.mc1_c01320{transform:matrix(0.101100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101100,0.000000,0.000000,0.250000,0,0);}
.mc9_c01320{transform:matrix(0.103300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103300,0.000000,0.000000,0.250000,0,0);}
.m181_c01320{transform:matrix(0.103700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103700,0.000000,0.000000,0.250000,0,0);}
.m8b_c01320{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m4d_c01320{transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107625,0.000000,0.000000,0.250000,0,0);}
.m187_c01320{transform:matrix(0.107825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107825,0.000000,0.000000,0.250000,0,0);}
.m72_c01320{transform:matrix(0.110725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110725,0.000000,0.000000,0.250000,0,0);}
.m6b_c01320{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.md8_c01320{transform:matrix(0.114900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114900,0.000000,0.000000,0.250000,0,0);}
.me8_c01320{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m81_c01320{transform:matrix(0.115850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115850,0.000000,0.000000,0.250000,0,0);}
.mf_c01320{transform:matrix(0.116275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116275,0.000000,0.000000,0.250000,0,0);}
.m180_c01320{transform:matrix(0.117475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117475,0.000000,0.000000,0.250000,0,0);}
.m14_c01320{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);}
.m92_c01320{transform:matrix(0.118050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118050,0.000000,0.000000,0.250000,0,0);}
.md_c01320{transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118450,0.000000,0.000000,0.250000,0,0);}
.ma6_c01320{transform:matrix(0.118775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118775,0.000000,0.000000,0.250000,0,0);}
.m70_c01320{transform:matrix(0.118850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118850,0.000000,0.000000,0.250000,0,0);}
.m69_c01320{transform:matrix(0.118925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118925,0.000000,0.000000,0.250000,0,0);}
.m190_c01320{transform:matrix(0.119375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119375,0.000000,0.000000,0.250000,0,0);}
.m11a_c01320{transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);}
.m5b_c01320{transform:matrix(0.122050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122050,0.000000,0.000000,0.250000,0,0);}
.mcf_c01320{transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122700,0.000000,0.000000,0.250000,0,0);}
.m192_c01320{transform:matrix(0.124625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124625,0.000000,0.000000,0.250000,0,0);}
.m71_c01320{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m18f_c01320{transform:matrix(0.126050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126050,0.000000,0.000000,0.250000,0,0);}
.m18a_c01320{transform:matrix(0.127150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127150,0.000000,0.000000,0.250000,0,0);}
.m23_c01320{transform:matrix(0.127375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127375,0.000000,0.000000,0.250000,0,0);}
.m191_c01320{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);}
.m49_c01320{transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128075,0.000000,0.000000,0.250000,0,0);}
.m60_c01320{transform:matrix(0.128175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128175,0.000000,0.000000,0.250000,0,0);}
.mfd_c01320{transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);}
.m176_c01320{transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);}
.m61_c01320{transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);}
.m1d_c01320{transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131325,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01320{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);}
.m189_c01320{transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);}
.m188_c01320{transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);}
.m18b_c01320{transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);}
.m5c_c01320{transform:matrix(0.135600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135600,0.000000,0.000000,0.250000,0,0);}
.mb_c01320{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);}
.mdd_c01320{transform:matrix(0.135725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135725,0.000000,0.000000,0.250000,0,0);}
.mc_c01320{transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01320{transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);}
.m52_c01320{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01320{transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137400,0.000000,0.000000,0.250000,0,0);}
.mbf_c01320{transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138000,0.000000,0.000000,0.250000,0,0);}
.me6_c01320{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m18c_c01320{transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);}
.m16d_c01320{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.mb2_c01320{transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141050,0.000000,0.000000,0.250000,0,0);}
.m55_c01320{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);}
.mb1_c01320{transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);}
.m184_c01320{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);}
.m50_c01320{transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142600,0.000000,0.000000,0.250000,0,0);}
.m2_c01320{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m100_c01320{transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01320{transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143725,0.000000,0.000000,0.250000,0,0);}
.m18e_c01320{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);}
.m1_c01320{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m9a_c01320{transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);}
.m106_c01320{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);}
.m185_c01320{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);}
.m88_c01320{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.m16f_c01320{transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146750,0.000000,0.000000,0.250000,0,0);}
.m152_c01320{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);}
.m8e_c01320{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m99_c01320{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);}
.m13d_c01320{transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147150,0.000000,0.000000,0.250000,0,0);}
.m91_c01320{transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147900,0.000000,0.000000,0.250000,0,0);}
.mbe_c01320{transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148200,0.000000,0.000000,0.250000,0,0);}
.m8c_c01320{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.m73_c01320{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);}
.md1_c01320{transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149425,0.000000,0.000000,0.250000,0,0);}
.m64_c01320{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);}
.mce_c01320{transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);}
.m186_c01320{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);}
.mae_c01320{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m17a_c01320{transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152050,0.000000,0.000000,0.250000,0,0);}
.m24_c01320{transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152900,0.000000,0.000000,0.250000,0,0);}
.m170_c01320{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.m13e_c01320{transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);}
.m6c_c01320{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.mf2_c01320{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.m116_c01320{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);}
.m14f_c01320{transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);}
.me3_c01320{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.m56_c01320{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);}
.m13f_c01320{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);}
.m1c_c01320{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);}
.m174_c01320{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.m133_c01320{transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158925,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01320{transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159650,0.000000,0.000000,0.250000,0,0);}
.mdb_c01320{transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159950,0.000000,0.000000,0.250000,0,0);}
.md9_c01320{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.mf1_c01320{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.mee_c01320{transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);}
.m126_c01320{transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);}
.m33_c01320{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.mf0_c01320{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);}
.m47_c01320{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.md7_c01320{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.mc2_c01320{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m4e_c01320{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m9e_c01320{transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);}
.m51_c01320{transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);}
.m145_c01320{transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165400,0.000000,0.000000,0.250000,0,0);}
.m14a_c01320{transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165825,0.000000,0.000000,0.250000,0,0);}
.md6_c01320{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);}
.mc8_c01320{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);}
.m4f_c01320{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m151_c01320{transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);}
.mfe_c01320{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m15_c01320{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m175_c01320{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);}
.m146_c01320{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);}
.m1a7_c01320{transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169900,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01320{transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170375,0.000000,0.000000,0.250000,0,0);}
.mcc_c01320{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.mf3_c01320{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.mc7_c01320{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m153_c01320{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);}
.m159_c01320{transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);}
.md2_c01320{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m157_c01320{transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);}
.m134_c01320{transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);}
.m3e_c01320{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m18d_c01320{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m9b_c01320{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);}
.m13c_c01320{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m15b_c01320{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);}
.m17e_c01320{transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);}
.m171_c01320{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m7e_c01320{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.m94_c01320{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01320{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.m4c_c01320{transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);}
.mcd_c01320{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);}
.mda_c01320{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);}
.m128_c01320{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m82_c01320{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.m13_c01320{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);}
.m1b6_c01320{transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);}
.m160_c01320{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m97_c01320{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);}
.m17f_c01320{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mc0_c01320{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m19e_c01320{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);}
.m19b_c01320{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);}
.maa_c01320{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.me4_c01320{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.m127_c01320{transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183350,0.000000,0.000000,0.250000,0,0);}
.m19a_c01320{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);}
.m155_c01320{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);}
.m15c_c01320{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m1e_c01320{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);}
.m21_c01320{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m129_c01320{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.me1_c01320{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m167_c01320{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);}
.m79_c01320{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m147_c01320{transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186250,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01320{transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186275,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01320{transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186325,0.000000,0.000000,0.250000,0,0);}
.m117_c01320{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01320{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);}
.mf4_c01320{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);}
.m199_c01320{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);}
.m149_c01320{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);}
.m89_c01320{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.m6a_c01320{transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);}
.m14c_c01320{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);}
.m5f_c01320{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m98_c01320{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.m144_c01320{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);}
.m135_c01320{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);}
.m1bb_c01320{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);}
.m13a_c01320{transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);}
.m17b_c01320{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);}
.m9d_c01320{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.m197_c01320{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m14b_c01320{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m15d_c01320{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.m90_c01320{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);}
.m11_c01320{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m183_c01320{transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194225,0.000000,0.000000,0.250000,0,0);}
.m30_c01320{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);}
.mf7_c01320{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.m115_c01320{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);}
.m19c_c01320{transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01320{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.m1af_c01320{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);}
.mc3_c01320{transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);}
.m6e_c01320{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);}
.m7d_c01320{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.ma3_c01320{transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);}
.m196_c01320{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);}
.m121_c01320{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01320{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m3_c01320{transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);}
.m154_c01320{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.m59_c01320{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);}
.m39_c01320{transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);}
.m16b_c01320{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.m7f_c01320{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.m1a_c01320{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);}
.m80_c01320{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);}
.m198_c01320{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);}
.m96_c01320{transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201600,0.000000,0.000000,0.250000,0,0);}
.m105_c01320{transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201650,0.000000,0.000000,0.250000,0,0);}
.m158_c01320{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01320{transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);}
.m108_c01320{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.mec_c01320{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);}
.m19d_c01320{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.m4a_c01320{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);}
.m41_c01320{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);}
.mad_c01320{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);}
.ma9_c01320{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);}
.m12_c01320{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.m86_c01320{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);}
.m7a_c01320{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);}
.mb9_c01320{transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);}
.m13b_c01320{transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205950,0.000000,0.000000,0.250000,0,0);}
.m139_c01320{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.m124_c01320{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m161_c01320{transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01320{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m14d_c01320{transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);}
.md3_c01320{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01320{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.m11b_c01320{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);}
.m17d_c01320{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m2d_c01320{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);}
.m193_c01320{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m5e_c01320{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);}
.mb7_c01320{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);}
.m10d_c01320{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.m16e_c01320{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);}
.m138_c01320{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);}
.m162_c01320{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m14e_c01320{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);}
.m46_c01320{transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210425,0.000000,0.000000,0.250000,0,0);}
.m172_c01320{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);}
.m3b_c01320{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);}
.m118_c01320{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);}
.m58_c01320{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m148_c01320{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.mb4_c01320{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m163_c01320{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.mf9_c01320{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.mfa_c01320{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);}
.m2e_c01320{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);}
.mc6_c01320{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.ma8_c01320{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.md4_c01320{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01320{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.md5_c01320{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m173_c01320{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.m2f_c01320{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);}
.med_c01320{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);}
.m1a5_c01320{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m12c_c01320{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);}
.m11c_c01320{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);}
.mbc_c01320{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);}
.m63_c01320{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);}
.m3d_c01320{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m36_c01320{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m12a_c01320{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);}
.m15f_c01320{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.m10c_c01320{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);}
.m57_c01320{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);}
.mf6_c01320{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m27_c01320{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);}
.m140_c01320{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_c01320{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m131_c01320{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);}
.mc4_c01320{transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);}
.m19_c01320{transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);}
.m104_c01320{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);}
.mbd_c01320{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mab_c01320{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m4b_c01320{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01320{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);}
.m11f_c01320{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);}
.mde_c01320{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.m10_c01320{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);}
.m75_c01320{transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);}
.m34_c01320{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);}
.m77_c01320{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.m16a_c01320{transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);}
.m10e_c01320{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);}
.m84_c01320{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);}
.m102_c01320{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);}
.m16_c01320{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);}
.m143_c01320{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);}
.m1b5_c01320{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m164_c01320{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.mf5_c01320{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);}
.m35_c01320{transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);}
.m107_c01320{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);}
.m8a_c01320{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.mc5_c01320{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);}
.maf_c01320{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);}
.m12d_c01320{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);}
.m182_c01320{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m136_c01320{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);}
.me5_c01320{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01320{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);}
.m120_c01320{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m109_c01320{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);}
.m45_c01320{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.me2_c01320{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);}
.m53_c01320{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m101_c01320{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);}
.m17c_c01320{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);}
.mb3_c01320{transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01320{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m7b_c01320{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.m11e_c01320{transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239150,0.000000,0.000000,0.250000,0,0);}
.m179_c01320{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);}
.ma7_c01320{transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01320{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);}
.m16c_c01320{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);}
.m125_c01320{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.m9f_c01320{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);}
.m15a_c01320{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m130_c01320{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);}
.m12e_c01320{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.ma4_c01320{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.m122_c01320{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);}
.m29_c01320{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.mff_c01320{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);}
.m169_c01320{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);}
.m156_c01320{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m168_c01320{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01320{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m44_c01320{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01320{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);}
.m113_c01320{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);}
.mac_c01320{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);}
.m103_c01320{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);}
.mbb_c01320{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);}
.m1b3_c01320{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.m15e_c01320{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);}
.m141_c01320{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);}
.m8d_c01320{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);}
.m87_c01320{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m78_c01320{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);}
.m32_c01320{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);}
.m7_c01320{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);}
.m9_c01320{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);}
.m31_c01320{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m20_c01320{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m22_c01320{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb0_c01320{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);}
.m17_c01320{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma_c01320{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);}
.m26_c01320{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);}
.m3f_c01320{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6_c01320{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);}
.m1b_c01320{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01320{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m37_c01320{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);}
.m2b_c01320{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m48_c01320{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);}
.m74_c01320{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);}
.m66_c01320{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mca_c01320{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb8_c01320{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);}
.mf8_c01320{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01320{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md0_c01320{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);}
.m42_c01320{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01320{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m95_c01320{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.me_c01320{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m38_c01320{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m18_c01320{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01320{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m178_c01320{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m76_c01320{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);}
.m25_c01320{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m137_c01320{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mdc_c01320{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m10f_c01320{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);}
.m83_c01320{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m10b_c01320{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mea_c01320{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);}
.m10a_c01320{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m11d_c01320{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.meb_c01320{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01320{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);}
.m5_c01320{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me0_c01320{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c01320{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01320{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m8_c01320{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);}
.m1a8_c01320{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mfb_c01320{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m165_c01320{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m110_c01320{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m65_c01320{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);}
.m85_c01320{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);}
.mba_c01320{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);}
.m67_c01320{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m28_c01320{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);}
.m123_c01320{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m40_c01320{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m12b_c01320{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01320{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m114_c01320{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);}
.ma2_c01320{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m12f_c01320{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01320{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m195_c01320{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.me7_c01320{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mfc_c01320{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);}
.mcb_c01320{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m142_c01320{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mdf_c01320{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);}
.m1b4_c01320{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m111_c01320{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01320{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);}
.m7c_c01320{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m62_c01320{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m112_c01320{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m177_c01320{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.mef_c01320{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m132_c01320{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m43_c01320{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m68_c01320{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.ma0_c01320{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01320{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m19f_c01320{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m0_c01320{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.me9_c01320{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01320{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01320{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m194_c01320{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.ma1_c01320{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01320{transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);}
.m54_c01320{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01320{transform:matrix(2.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.400000,0.000000,0.000000,0.250000,0,0);}
.v2_c01320{vertical-align:-17.280000px;}
.v1_c01320{vertical-align:-3.480000px;}
.v0_c01320{vertical-align:0.000000px;}
.ls2_c01320{letter-spacing:0.000000px;}
.ls0_c01320{letter-spacing:71.024688px;}
.ls1_c01320{letter-spacing:93.166740px;}
.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;}
.fs1a_c01320{font-size:3.456000px;}
.fsd_c01320{font-size:6.000000px;}
.fs1_c01320{font-size:6.900000px;}
.fs19_c01320{font-size:10.380000px;}
.fs14_c01320{font-size:13.800000px;}
.fs1d_c01320{font-size:17.280000px;}
.fs0_c01320{font-size:20.760000px;}
.fs2_c01320{font-size:24.180000px;}
.fs20_c01320{font-size:27.660000px;}
.fs1f_c01320{font-size:31.080000px;}
.fs15_c01320{font-size:34.560000px;}
.fs17_c01320{font-size:38.040000px;}
.fs1e_c01320{font-size:41.460000px;}
.fs16_c01320{font-size:44.940000px;}
.fs18_c01320{font-size:48.360000px;}
.fsc_c01320{font-size:51.840000px;}
.fs13_c01320{font-size:55.320000px;}
.fs8_c01320{font-size:58.740000px;}
.fsf_c01320{font-size:62.220000px;}
.fs3_c01320{font-size:65.640000px;}
.fs5_c01320{font-size:69.120000px;}
.fs11_c01320{font-size:72.600000px;}
.fs7_c01320{font-size:76.020000px;}
.fs4_c01320{font-size:79.500000px;}
.fs10_c01320{font-size:82.920000px;}
.fs12_c01320{font-size:86.400000px;}
.fs9_c01320{font-size:89.880000px;}
.fsa_c01320{font-size:93.300000px;}
.fs6_c01320{font-size:100.200000px;}
.fs1c_c01320{font-size:103.680000px;}
.fs1b_c01320{font-size:107.160000px;}
.fsb_c01320{font-size:110.580000px;}
.fse_c01320{font-size:120.960000px;}
.y0_c01320{bottom:0.000000px;}
.y1e3_c01320{bottom:167.610000px;}
.y1e2_c01320{bottom:168.480000px;}
.y1e4_c01320{bottom:171.930000px;}
.y1e1_c01320{bottom:172.800000px;}
.y1df_c01320{bottom:176.250000px;}
.y1db_c01320{bottom:180.570000px;}
.y1e0_c01320{bottom:182.310000px;}
.y1de_c01320{bottom:184.890000px;}
.y1d8_c01320{bottom:185.760000px;}
.y1da_c01320{bottom:186.630000px;}
.y1d9_c01320{bottom:187.485000px;}
.y1dd_c01320{bottom:191.805000px;}
.y1dc_c01320{bottom:195.270000px;}
.y1d6_c01320{bottom:198.720000px;}
.y1d7_c01320{bottom:199.590000px;}
.y1d3_c01320{bottom:200.445000px;}
.y1d5_c01320{bottom:202.170000px;}
.y1d4_c01320{bottom:203.910000px;}
.y1d1_c01320{bottom:204.765000px;}
.y1d2_c01320{bottom:207.360000px;}
.y1d0_c01320{bottom:209.085000px;}
.y1ce_c01320{bottom:218.595000px;}
.y1c8_c01320{bottom:222.915000px;}
.y1cd_c01320{bottom:223.770000px;}
.y1c7_c01320{bottom:224.640000px;}
.y1cc_c01320{bottom:225.510000px;}
.y1ca_c01320{bottom:226.365000px;}
.y1c9_c01320{bottom:227.235000px;}
.y1cf_c01320{bottom:228.090000px;}
.y1c6_c01320{bottom:230.685000px;}
.y1c5_c01320{bottom:238.470000px;}
.y1cb_c01320{bottom:240.195000px;}
.y1c4_c01320{bottom:241.920000px;}
.y1c2_c01320{bottom:242.790000px;}
.y1c3_c01320{bottom:244.515000px;}
.y1c1_c01320{bottom:249.690000px;}
.y1c0_c01320{bottom:250.560000px;}
.y1bd_c01320{bottom:259.200000px;}
.y1be_c01320{bottom:260.070000px;}
.y1bf_c01320{bottom:260.925000px;}
.y1bb_c01320{bottom:261.795000px;}
.y1ba_c01320{bottom:263.520000px;}
.y1b9_c01320{bottom:265.245000px;}
.y1bc_c01320{bottom:266.115000px;}
.y1b5_c01320{bottom:279.930000px;}
.y1b6_c01320{bottom:280.800000px;}
.y1b4_c01320{bottom:282.525000px;}
.y1b0_c01320{bottom:283.395000px;}
.y1b3_c01320{bottom:284.250000px;}
.y1b7_c01320{bottom:285.990000px;}
.y1b2_c01320{bottom:286.845000px;}
.y1b1_c01320{bottom:289.440000px;}
.y1b8_c01320{bottom:298.950000px;}
.y1ad_c01320{bottom:300.675000px;}
.y1af_c01320{bottom:302.400000px;}
.y1ac_c01320{bottom:303.270000px;}
.y1ab_c01320{bottom:304.995000px;}
.y1aa_c01320{bottom:305.850000px;}
.y1ae_c01320{bottom:307.590000px;}
.y1a9_c01320{bottom:320.550000px;}
.y1a8_c01320{bottom:321.405000px;}
.y1a7_c01320{bottom:324.000000px;}
.y1a1_c01320{bottom:324.870000px;}
.y1a6_c01320{bottom:325.725000px;}
.y1a4_c01320{bottom:326.595000px;}
.y1a2_c01320{bottom:330.045000px;}
.y19f_c01320{bottom:330.915000px;}
.y1a0_c01320{bottom:331.770000px;}
.y1a3_c01320{bottom:334.365000px;}
.y1a5_c01320{bottom:335.235000px;}
.y19b_c01320{bottom:336.960000px;}
.y19a_c01320{bottom:337.830000px;}
.y19c_c01320{bottom:338.685000px;}
.y19e_c01320{bottom:339.555000px;}
.y198_c01320{bottom:341.280000px;}
.y196_c01320{bottom:342.150000px;}
.y194_c01320{bottom:343.005000px;}
.y19d_c01320{bottom:343.875000px;}
.y197_c01320{bottom:344.730000px;}
.y195_c01320{bottom:345.600000px;}
.y193_c01320{bottom:347.325000px;}
.y199_c01320{bottom:349.050000px;}
.y192_c01320{bottom:358.560000px;}
.y18d_c01320{bottom:360.285000px;}
.y18b_c01320{bottom:361.155000px;}
.y18c_c01320{bottom:362.010000px;}
.y18f_c01320{bottom:362.880000px;}
.y18a_c01320{bottom:363.750000px;}
.y18e_c01320{bottom:366.330000px;}
.y190_c01320{bottom:368.925000px;}
.y191_c01320{bottom:369.795000px;}
.y188_c01320{bottom:382.755000px;}
.y185_c01320{bottom:384.480000px;}
.y184_c01320{bottom:385.350000px;}
.y189_c01320{bottom:387.075000px;}
.y186_c01320{bottom:387.930000px;}
.y187_c01320{bottom:388.800000px;}
.y183_c01320{bottom:390.525000px;}
.y182_c01320{bottom:391.395000px;}
.y181_c01320{bottom:392.250000px;}
.y180_c01320{bottom:403.485000px;}
.y17f_c01320{bottom:404.355000px;}
.y17d_c01320{bottom:406.080000px;}
.y179_c01320{bottom:407.805000px;}
.y17c_c01320{bottom:408.675000px;}
.y17b_c01320{bottom:410.400000px;}
.y17e_c01320{bottom:411.270000px;}
.y17a_c01320{bottom:412.125000px;}
.y178_c01320{bottom:425.085000px;}
.y177_c01320{bottom:425.955000px;}
.y174_c01320{bottom:426.810000px;}
.y172_c01320{bottom:428.550000px;}
.y175_c01320{bottom:429.405000px;}
.y176_c01320{bottom:430.275000px;}
.y173_c01320{bottom:433.725000px;}
.y16e_c01320{bottom:446.685000px;}
.y16c_c01320{bottom:448.410000px;}
.y16d_c01320{bottom:449.280000px;}
.y170_c01320{bottom:451.005000px;}
.y16f_c01320{bottom:451.875000px;}
.y171_c01320{bottom:463.110000px;}
.y16a_c01320{bottom:464.835000px;}
.y169_c01320{bottom:465.690000px;}
.y168_c01320{bottom:468.285000px;}
.y163_c01320{bottom:470.010000px;}
.y16b_c01320{bottom:470.880000px;}
.y166_c01320{bottom:471.750000px;}
.y167_c01320{bottom:473.475000px;}
.y164_c01320{bottom:474.330000px;}
.y165_c01320{bottom:475.200000px;}
.y162_c01320{bottom:482.115000px;}
.y161_c01320{bottom:484.710000px;}
.y160_c01320{bottom:486.435000px;}
.y15f_c01320{bottom:487.290000px;}
.y15d_c01320{bottom:488.160000px;}
.y15e_c01320{bottom:489.030000px;}
.y15b_c01320{bottom:489.885000px;}
.y15c_c01320{bottom:495.075000px;}
.y158_c01320{bottom:507.165000px;}
.y157_c01320{bottom:508.035000px;}
.y159_c01320{bottom:508.890000px;}
.y15a_c01320{bottom:510.630000px;}
.y156_c01320{bottom:511.485000px;}
.y155_c01320{bottom:526.170000px;}
.y154_c01320{bottom:527.040000px;}
.y152_c01320{bottom:527.910000px;}
.y14b_c01320{bottom:528.765000px;}
.y14c_c01320{bottom:529.635000px;}
.y153_c01320{bottom:530.490000px;}
.y14f_c01320{bottom:531.360000px;}
.y151_c01320{bottom:533.085000px;}
.y14e_c01320{bottom:534.810000px;}
.y14d_c01320{bottom:542.595000px;}
.y149_c01320{bottom:546.045000px;}
.y150_c01320{bottom:547.770000px;}
.y146_c01320{bottom:548.640000px;}
.y144_c01320{bottom:549.510000px;}
.y145_c01320{bottom:550.365000px;}
.y147_c01320{bottom:551.235000px;}
.y148_c01320{bottom:552.090000px;}
.y142_c01320{bottom:555.555000px;}
.y143_c01320{bottom:556.410000px;}
.y14a_c01320{bottom:566.790000px;}
.y141_c01320{bottom:568.515000px;}
.y13f_c01320{bottom:569.370000px;}
.y140_c01320{bottom:571.110000px;}
.y13c_c01320{bottom:571.965000px;}
.y139_c01320{bottom:572.835000px;}
.y13e_c01320{bottom:573.690000px;}
.y13d_c01320{bottom:574.560000px;}
.y13a_c01320{bottom:575.430000px;}
.y138_c01320{bottom:576.285000px;}
.y13b_c01320{bottom:577.155000px;}
.y136_c01320{bottom:589.245000px;}
.y131_c01320{bottom:590.970000px;}
.y137_c01320{bottom:591.840000px;}
.y135_c01320{bottom:594.435000px;}
.y133_c01320{bottom:595.290000px;}
.y134_c01320{bottom:596.160000px;}
.y132_c01320{bottom:597.030000px;}
.y130_c01320{bottom:599.610000px;}
.y12c_c01320{bottom:608.250000px;}
.y12a_c01320{bottom:609.990000px;}
.y12f_c01320{bottom:610.845000px;}
.y12d_c01320{bottom:611.715000px;}
.y12e_c01320{bottom:612.570000px;}
.y128_c01320{bottom:613.440000px;}
.y12b_c01320{bottom:614.310000px;}
.y129_c01320{bottom:615.165000px;}
.y127_c01320{bottom:625.530000px;}
.y124_c01320{bottom:628.125000px;}
.y121_c01320{bottom:628.995000px;}
.y122_c01320{bottom:629.850000px;}
.y11d_c01320{bottom:630.720000px;}
.y126_c01320{bottom:631.590000px;}
.y11f_c01320{bottom:632.445000px;}
.y125_c01320{bottom:633.315000px;}
.y123_c01320{bottom:635.040000px;}
.y120_c01320{bottom:635.910000px;}
.y11e_c01320{bottom:636.765000px;}
.y11c_c01320{bottom:647.130000px;}
.y11a_c01320{bottom:648.870000px;}
.y117_c01320{bottom:649.725000px;}
.y116_c01320{bottom:650.595000px;}
.y11b_c01320{bottom:652.320000px;}
.y118_c01320{bottom:653.190000px;}
.y119_c01320{bottom:654.045000px;}
.y115_c01320{bottom:654.915000px;}
.y114_c01320{bottom:666.150000px;}
.y113_c01320{bottom:668.730000px;}
.y111_c01320{bottom:673.050000px;}
.y112_c01320{bottom:673.920000px;}
.y110_c01320{bottom:674.790000px;}
.y10f_c01320{bottom:675.645000px;}
.y10e_c01320{bottom:676.515000px;}
.y1e6_c01320{bottom:681.690000px;}
.y10d_c01320{bottom:687.750000px;}
.y109_c01320{bottom:689.475000px;}
.y10a_c01320{bottom:690.330000px;}
.y10c_c01320{bottom:692.925000px;}
.y10b_c01320{bottom:693.795000px;}
.y108_c01320{bottom:696.390000px;}
.y107_c01320{bottom:697.245000px;}
.y104_c01320{bottom:706.755000px;}
.y103_c01320{bottom:708.480000px;}
.y101_c01320{bottom:709.350000px;}
.y105_c01320{bottom:711.075000px;}
.y106_c01320{bottom:713.670000px;}
.y102_c01320{bottom:715.395000px;}
.y100_c01320{bottom:716.250000px;}
.yff_c01320{bottom:726.630000px;}
.yfc_c01320{bottom:728.355000px;}
.yfa_c01320{bottom:730.080000px;}
.yfb_c01320{bottom:730.950000px;}
.yf7_c01320{bottom:731.805000px;}
.yfe_c01320{bottom:732.675000px;}
.yfd_c01320{bottom:733.530000px;}
.yf9_c01320{bottom:735.270000px;}
.yf8_c01320{bottom:736.125000px;}
.yf6_c01320{bottom:736.995000px;}
.yf3_c01320{bottom:749.955000px;}
.yf5_c01320{bottom:751.680000px;}
.yf4_c01320{bottom:753.405000px;}
.yf0_c01320{bottom:754.275000px;}
.yf2_c01320{bottom:755.130000px;}
.yef_c01320{bottom:756.000000px;}
.yf1_c01320{bottom:756.870000px;}
.yee_c01320{bottom:768.090000px;}
.yec_c01320{bottom:769.830000px;}
.yea_c01320{bottom:771.555000px;}
.yeb_c01320{bottom:772.410000px;}
.ye7_c01320{bottom:773.280000px;}
.yed_c01320{bottom:774.150000px;}
.ye6_c01320{bottom:775.875000px;}
.ye9_c01320{bottom:776.730000px;}
.ye8_c01320{bottom:777.600000px;}
.ye5_c01320{bottom:778.470000px;}
.ye3_c01320{bottom:789.690000px;}
.ye1_c01320{bottom:790.560000px;}
.yde_c01320{bottom:791.430000px;}
.ydd_c01320{bottom:792.285000px;}
.ydf_c01320{bottom:793.155000px;}
.yda_c01320{bottom:794.010000px;}
.ye2_c01320{bottom:794.880000px;}
.ye0_c01320{bottom:796.605000px;}
.ydc_c01320{bottom:797.475000px;}
.ydb_c01320{bottom:798.330000px;}
.ye4_c01320{bottom:806.115000px;}
.yd8_c01320{bottom:808.710000px;}
.yd6_c01320{bottom:810.435000px;}
.yd5_c01320{bottom:811.290000px;}
.yd4_c01320{bottom:812.160000px;}
.yd7_c01320{bottom:814.755000px;}
.yd9_c01320{bottom:815.610000px;}
.yd3_c01320{bottom:818.205000px;}
.yd1_c01320{bottom:827.715000px;}
.yce_c01320{bottom:830.310000px;}
.yd0_c01320{bottom:831.165000px;}
.ycc_c01320{bottom:832.035000px;}
.yca_c01320{bottom:833.760000px;}
.ycf_c01320{bottom:834.630000px;}
.ycd_c01320{bottom:836.355000px;}
.ycb_c01320{bottom:837.210000px;}
.yd2_c01320{bottom:843.270000px;}
.yc6_c01320{bottom:850.170000px;}
.yc5_c01320{bottom:851.910000px;}
.yc4_c01320{bottom:852.765000px;}
.yc8_c01320{bottom:853.635000px;}
.yc9_c01320{bottom:854.490000px;}
.yc7_c01320{bottom:855.360000px;}
.yc3_c01320{bottom:858.810000px;}
.yc1_c01320{bottom:870.045000px;}
.ybf_c01320{bottom:873.510000px;}
.yc2_c01320{bottom:874.365000px;}
.yc0_c01320{bottom:876.090000px;}
.ybe_c01320{bottom:889.050000px;}
.ybd_c01320{bottom:889.920000px;}
.ybc_c01320{bottom:890.790000px;}
.yb9_c01320{bottom:891.645000px;}
.yba_c01320{bottom:892.515000px;}
.yb6_c01320{bottom:894.240000px;}
.ybb_c01320{bottom:895.110000px;}
.yb8_c01320{bottom:895.965000px;}
.yb7_c01320{bottom:898.560000px;}
.y1e5_c01320{bottom:910.650000px;}
.yb3_c01320{bottom:911.520000px;}
.yb5_c01320{bottom:912.390000px;}
.yb1_c01320{bottom:914.115000px;}
.yb4_c01320{bottom:915.840000px;}
.yb2_c01320{bottom:917.565000px;}
.yb0_c01320{bottom:918.435000px;}
.yae_c01320{bottom:928.800000px;}
.yab_c01320{bottom:930.525000px;}
.yaa_c01320{bottom:932.250000px;}
.yaf_c01320{bottom:933.120000px;}
.yad_c01320{bottom:933.990000px;}
.yac_c01320{bottom:935.715000px;}
.ya9_c01320{bottom:936.570000px;}
.ya8_c01320{bottom:937.440000px;}
.ya7_c01320{bottom:949.530000px;}
.ya5_c01320{bottom:950.400000px;}
.ya6_c01320{bottom:951.270000px;}
.ya3_c01320{bottom:952.125000px;}
.ya1_c01320{bottom:952.995000px;}
.y9d_c01320{bottom:953.850000px;}
.ya4_c01320{bottom:955.590000px;}
.y9e_c01320{bottom:956.445000px;}
.ya2_c01320{bottom:957.315000px;}
.ya0_c01320{bottom:958.170000px;}
.y9f_c01320{bottom:959.040000px;}
.y9c_c01320{bottom:970.275000px;}
.y9b_c01320{bottom:971.130000px;}
.y99_c01320{bottom:972.000000px;}
.y95_c01320{bottom:972.870000px;}
.y98_c01320{bottom:973.725000px;}
.y96_c01320{bottom:974.595000px;}
.y9a_c01320{bottom:976.320000px;}
.y97_c01320{bottom:978.045000px;}
.y8e_c01320{bottom:991.005000px;}
.y8d_c01320{bottom:991.875000px;}
.y8f_c01320{bottom:992.730000px;}
.y8b_c01320{bottom:993.600000px;}
.y8c_c01320{bottom:997.050000px;}
.y90_c01320{bottom:997.920000px;}
.y91_c01320{bottom:998.790000px;}
.y93_c01320{bottom:999.645000px;}
.y94_c01320{bottom:1001.370000px;}
.y92_c01320{bottom:1003.110000px;}
.y8a_c01320{bottom:1010.880000px;}
.y87_c01320{bottom:1012.605000px;}
.y86_c01320{bottom:1013.475000px;}
.y85_c01320{bottom:1014.330000px;}
.y83_c01320{bottom:1015.200000px;}
.y89_c01320{bottom:1017.795000px;}
.y84_c01320{bottom:1019.520000px;}
.y88_c01320{bottom:1024.710000px;}
.y82_c01320{bottom:1029.885000px;}
.y7c_c01320{bottom:1031.610000px;}
.y7a_c01320{bottom:1032.480000px;}
.y7e_c01320{bottom:1033.350000px;}
.y79_c01320{bottom:1034.205000px;}
.y7f_c01320{bottom:1035.075000px;}
.y81_c01320{bottom:1035.930000px;}
.y77_c01320{bottom:1036.800000px;}
.y80_c01320{bottom:1037.670000px;}
.y7b_c01320{bottom:1038.525000px;}
.y7d_c01320{bottom:1040.250000px;}
.y78_c01320{bottom:1041.120000px;}
.y74_c01320{bottom:1051.485000px;}
.y75_c01320{bottom:1052.355000px;}
.y71_c01320{bottom:1053.210000px;}
.y72_c01320{bottom:1054.950000px;}
.y73_c01320{bottom:1058.400000px;}
.y70_c01320{bottom:1060.995000px;}
.y76_c01320{bottom:1069.635000px;}
.y6f_c01320{bottom:1072.230000px;}
.y6e_c01320{bottom:1073.085000px;}
.y6b_c01320{bottom:1073.955000px;}
.y68_c01320{bottom:1075.680000px;}
.y67_c01320{bottom:1076.550000px;}
.y6a_c01320{bottom:1077.405000px;}
.y6d_c01320{bottom:1078.275000px;}
.y6c_c01320{bottom:1079.130000px;}
.y69_c01320{bottom:1080.000000px;}
.y66_c01320{bottom:1091.235000px;}
.y64_c01320{bottom:1092.090000px;}
.y65_c01320{bottom:1093.830000px;}
.y60_c01320{bottom:1096.410000px;}
.y61_c01320{bottom:1098.150000px;}
.y63_c01320{bottom:1099.005000px;}
.y5f_c01320{bottom:1099.875000px;}
.y62_c01320{bottom:1100.730000px;}
.y5d_c01320{bottom:1111.965000px;}
.y5c_c01320{bottom:1113.690000px;}
.y5e_c01320{bottom:1115.430000px;}
.y5b_c01320{bottom:1116.285000px;}
.y5a_c01320{bottom:1118.880000px;}
.y59_c01320{bottom:1119.750000px;}
.y58_c01320{bottom:1120.605000px;}
.y55_c01320{bottom:1126.650000px;}
.y54_c01320{bottom:1127.520000px;}
.y51_c01320{bottom:1130.970000px;}
.y52_c01320{bottom:1131.840000px;}
.y4f_c01320{bottom:1132.710000px;}
.y4e_c01320{bottom:1133.565000px;}
.y50_c01320{bottom:1137.030000px;}
.y57_c01320{bottom:1139.610000px;}
.y56_c01320{bottom:1149.120000px;}
.y53_c01320{bottom:1151.715000px;}
.y4d_c01320{bottom:1152.570000px;}
.y4c_c01320{bottom:1155.165000px;}
.y49_c01320{bottom:1156.035000px;}
.y48_c01320{bottom:1156.890000px;}
.y47_c01320{bottom:1157.760000px;}
.y45_c01320{bottom:1158.630000px;}
.y4a_c01320{bottom:1159.485000px;}
.y46_c01320{bottom:1160.355000px;}
.y4b_c01320{bottom:1168.995000px;}
.y42_c01320{bottom:1174.170000px;}
.y44_c01320{bottom:1175.040000px;}
.y3f_c01320{bottom:1175.910000px;}
.y40_c01320{bottom:1177.635000px;}
.y3e_c01320{bottom:1178.490000px;}
.y41_c01320{bottom:1179.360000px;}
.y3c_c01320{bottom:1181.085000px;}
.y3d_c01320{bottom:1181.955000px;}
.y43_c01320{bottom:1190.595000px;}
.y3a_c01320{bottom:1193.190000px;}
.y3b_c01320{bottom:1194.045000px;}
.y39_c01320{bottom:1194.915000px;}
.y36_c01320{bottom:1198.365000px;}
.y37_c01320{bottom:1199.235000px;}
.y38_c01320{bottom:1200.960000px;}
.y35_c01320{bottom:1201.830000px;}
.y34_c01320{bottom:1213.920000px;}
.y33_c01320{bottom:1214.790000px;}
.y30_c01320{bottom:1216.515000px;}
.y31_c01320{bottom:1217.370000px;}
.y2d_c01320{bottom:1218.240000px;}
.y32_c01320{bottom:1220.835000px;}
.y2f_c01320{bottom:1221.690000px;}
.y2e_c01320{bottom:1222.560000px;}
.y2c_c01320{bottom:1233.795000px;}
.y2b_c01320{bottom:1234.650000px;}
.y27_c01320{bottom:1235.520000px;}
.y2a_c01320{bottom:1237.245000px;}
.y29_c01320{bottom:1238.115000px;}
.y28_c01320{bottom:1240.710000px;}
.y26_c01320{bottom:1241.565000px;}
.y25_c01320{bottom:1252.800000px;}
.y23_c01320{bottom:1253.670000px;}
.y22_c01320{bottom:1255.395000px;}
.y1f_c01320{bottom:1256.250000px;}
.y24_c01320{bottom:1259.715000px;}
.y21_c01320{bottom:1260.570000px;}
.y20_c01320{bottom:1261.440000px;}
.y1e_c01320{bottom:1262.310000px;}
.y1d_c01320{bottom:1263.165000px;}
.y1b_c01320{bottom:1273.530000px;}
.y1c_c01320{bottom:1274.400000px;}
.y17_c01320{bottom:1276.125000px;}
.y16_c01320{bottom:1276.995000px;}
.y15_c01320{bottom:1277.850000px;}
.y1a_c01320{bottom:1279.590000px;}
.y18_c01320{bottom:1280.445000px;}
.y19_c01320{bottom:1284.765000px;}
.y14_c01320{bottom:1295.130000px;}
.y12_c01320{bottom:1296.000000px;}
.y11_c01320{bottom:1296.870000px;}
.ye_c01320{bottom:1298.595000px;}
.y13_c01320{bottom:1300.320000px;}
.y10_c01320{bottom:1302.045000px;}
.yf_c01320{bottom:1302.915000px;}
.yd_c01320{bottom:1314.150000px;}
.yb_c01320{bottom:1317.600000px;}
.yc_c01320{bottom:1323.645000px;}
.ya_c01320{bottom:1324.515000px;}
.y8_c01320{bottom:1342.650000px;}
.y4_c01320{bottom:1345.245000px;}
.y9_c01320{bottom:1347.840000px;}
.y6_c01320{bottom:1348.710000px;}
.y5_c01320{bottom:1349.565000px;}
.y7_c01320{bottom:1350.435000px;}
.y3_c01320{bottom:1423.875000px;}
.y1_c01320{bottom:1430.790000px;}
.y2_c01320{bottom:1434.240000px;}
.h1c_c01320{height:3.110063px;}
.hf_c01320{height:5.399414px;}
.h3_c01320{height:6.209326px;}
.h1b_c01320{height:9.340986px;}
.h16_c01320{height:12.418652px;}
.h1f_c01320{height:15.550313px;}
.h2_c01320{height:18.681973px;}
.h4_c01320{height:21.759639px;}
.h22_c01320{height:24.891299px;}
.h21_c01320{height:27.968965px;}
.h17_c01320{height:31.100625px;}
.h19_c01320{height:34.232285px;}
.h20_c01320{height:37.309951px;}
.h18_c01320{height:40.441611px;}
.h1a_c01320{height:43.519277px;}
.he_c01320{height:46.650937px;}
.h15_c01320{height:49.782598px;}
.ha_c01320{height:52.860264px;}
.h11_c01320{height:55.991924px;}
.h5_c01320{height:59.069590px;}
.h7_c01320{height:62.201250px;}
.h13_c01320{height:65.332910px;}
.h9_c01320{height:68.410576px;}
.h6_c01320{height:71.542236px;}
.h12_c01320{height:74.619902px;}
.h14_c01320{height:77.751563px;}
.hb_c01320{height:80.883223px;}
.hc_c01320{height:83.960889px;}
.h8_c01320{height:90.170215px;}
.h1e_c01320{height:93.301875px;}
.h1d_c01320{height:96.433535px;}
.hd_c01320{height:99.511201px;}
.h10_c01320{height:108.852188px;}
.h1_c01320{height:1513.500000px;}
.h0_c01320{height:1513.725000px;}
.w1_c01320{width:1076.250000px;}
.w0_c01320{width:1076.550000px;}
.x0_c01320{left:0.000000px;}
.xfa_c01320{left:54.435000px;}
.x107_c01320{left:183.165000px;}
.xcb_c01320{left:185.760000px;}
.xd3_c01320{left:188.355000px;}
.xc4_c01320{left:190.080000px;}
.xf9_c01320{left:192.675000px;}
.xe5_c01320{left:198.720000px;}
.xab_c01320{left:200.445000px;}
.xd4_c01320{left:203.040000px;}
.xa7_c01320{left:208.230000px;}
.x1c_c01320{left:209.955000px;}
.x7b_c01320{left:212.550000px;}
.x58_c01320{left:215.130000px;}
.xac_c01320{left:216.870000px;}
.x40_c01320{left:218.595000px;}
.x25_c01320{left:220.320000px;}
.x4_c01320{left:222.915000px;}
.xcc_c01320{left:227.235000px;}
.xef_c01320{left:230.685000px;}
.xdc_c01320{left:233.280000px;}
.x10a_c01320{left:235.005000px;}
.xb_c01320{left:237.600000px;}
.x73_c01320{left:243.645000px;}
.xdd_c01320{left:245.370000px;}
.x8c_c01320{left:247.110000px;}
.x35_c01320{left:249.690000px;}
.x50_c01320{left:251.430000px;}
.xf4_c01320{left:253.155000px;}
.x26_c01320{left:255.750000px;}
.xc5_c01320{left:257.475000px;}
.xc_c01320{left:260.925000px;}
.x12_c01320{left:262.650000px;}
.x59_c01320{left:264.390000px;}
.x7c_c01320{left:266.970000px;}
.x41_c01320{left:269.565000px;}
.xf0_c01320{left:272.160000px;}
.x2f_c01320{left:274.755000px;}
.xe9_c01320{left:277.350000px;}
.x51_c01320{left:280.800000px;}
.x36_c01320{left:283.395000px;}
.xcd_c01320{left:286.845000px;}
.x48_c01320{left:289.440000px;}
.xa8_c01320{left:292.035000px;}
.x62_c01320{left:293.760000px;}
.x10b_c01320{left:295.485000px;}
.xb6_c01320{left:298.080000px;}
.x49_c01320{left:300.675000px;}
.xf5_c01320{left:303.270000px;}
.xd_c01320{left:304.995000px;}
.x37_c01320{left:309.315000px;}
.x13_c01320{left:311.910000px;}
.x74_c01320{left:317.955000px;}
.x82_c01320{left:319.680000px;}
.x8d_c01320{left:322.275000px;}
.x4a_c01320{left:324.870000px;}
.x101_c01320{left:327.450000px;}
.xfb_c01320{left:329.190000px;}
.x5_c01320{left:331.770000px;}
.xf8_c01320{left:336.090000px;}
.x9c_c01320{left:337.830000px;}
.x42_c01320{left:340.410000px;}
.x75_c01320{left:343.005000px;}
.x27_c01320{left:346.470000px;}
.xea_c01320{left:348.195000px;}
.x14_c01320{left:351.645000px;}
.x6c_c01320{left:355.965000px;}
.xeb_c01320{left:357.690000px;}
.x38_c01320{left:359.430000px;}
.x100_c01320{left:362.010000px;}
.x5a_c01320{left:363.750000px;}
.x4b_c01320{left:365.475000px;}
.x63_c01320{left:368.070000px;}
.xe4_c01320{left:369.795000px;}
.x83_c01320{left:372.390000px;}
.xf1_c01320{left:374.970000px;}
.xd5_c01320{left:376.710000px;}
.xb7_c01320{left:380.160000px;}
.xad_c01320{left:381.885000px;}
.xe1_c01320{left:384.480000px;}
.x6_c01320{left:386.205000px;}
.x52_c01320{left:388.800000px;}
.x64_c01320{left:394.845000px;}
.x43_c01320{left:397.440000px;}
.x30_c01320{left:399.165000px;}
.xf2_c01320{left:405.210000px;}
.x44_c01320{left:406.950000px;}
.x39_c01320{left:409.530000px;}
.xde_c01320{left:411.270000px;}
.xbc_c01320{left:414.720000px;}
.xc6_c01320{left:416.445000px;}
.x10f_c01320{left:418.170000px;}
.x31_c01320{left:419.910000px;}
.x76_c01320{left:422.490000px;}
.x15_c01320{left:425.955000px;}
.x5b_c01320{left:427.680000px;}
.x7_c01320{left:429.405000px;}
.x3a_c01320{left:431.130000px;}
.x1d_c01320{left:432.870000px;}
.xc7_c01320{left:436.320000px;}
.xae_c01320{left:438.045000px;}
.x5c_c01320{left:440.640000px;}
.x28_c01320{left:442.365000px;}
.x7d_c01320{left:445.830000px;}
.x97_c01320{left:447.555000px;}
.x4c_c01320{left:451.005000px;}
.x6d_c01320{left:452.730000px;}
.xdf_c01320{left:454.470000px;}
.x6e_c01320{left:458.790000px;}
.x29_c01320{left:461.370000px;}
.x16_c01320{left:463.965000px;}
.x8_c01320{left:466.560000px;}
.xa9_c01320{left:468.285000px;}
.x98_c01320{left:470.010000px;}
.xa1_c01320{left:471.750000px;}
.xe2_c01320{left:473.475000px;}
.xbd_c01320{left:475.200000px;}
.x53_c01320{left:476.925000px;}
.x84_c01320{left:479.520000px;}
.xe_c01320{left:482.115000px;}
.x1e_c01320{left:483.840000px;}
.xce_c01320{left:485.565000px;}
.x6f_c01320{left:487.290000px;}
.x104_c01320{left:489.885000px;}
.xec_c01320{left:491.610000px;}
.x4d_c01320{left:493.350000px;}
.x115_c01320{left:495.930000px;}
.x90_c01320{left:497.670000px;}
.xe6_c01320{left:500.250000px;}
.x54_c01320{left:501.990000px;}
.x77_c01320{left:503.715000px;}
.xc8_c01320{left:505.440000px;}
.x65_c01320{left:508.035000px;}
.x45_c01320{left:511.485000px;}
.x116_c01320{left:514.080000px;}
.xc1_c01320{left:517.530000px;}
.x111_c01320{left:519.270000px;}
.xfe_c01320{left:521.850000px;}
.xc9_c01320{left:524.445000px;}
.x85_c01320{left:527.040000px;}
.xf_c01320{left:529.635000px;}
.x5d_c01320{left:533.085000px;}
.x7e_c01320{left:534.810000px;}
.x113_c01320{left:537.405000px;}
.x2a_c01320{left:539.130000px;}
.xf6_c01320{left:540.870000px;}
.x1f_c01320{left:542.595000px;}
.x17_c01320{left:544.320000px;}
.x10_c01320{left:546.915000px;}
.x20_c01320{left:548.640000px;}
.x46_c01320{left:550.365000px;}
.x102_c01320{left:555.555000px;}
.x66_c01320{left:557.280000px;}
.x9d_c01320{left:565.050000px;}
.x11_c01320{left:566.790000px;}
.xe3_c01320{left:568.515000px;}
.x10c_c01320{left:570.240000px;}
.x18_c01320{left:572.835000px;}
.xcf_c01320{left:575.430000px;}
.x2b_c01320{left:577.155000px;}
.xb3_c01320{left:578.880000px;}
.x86_c01320{left:580.605000px;}
.x91_c01320{left:584.070000px;}
.xd7_c01320{left:585.795000px;}
.x32_c01320{left:589.245000px;}
.x67_c01320{left:591.840000px;}
.xa2_c01320{left:595.290000px;}
.xff_c01320{left:597.030000px;}
.xb4_c01320{left:598.755000px;}
.xed_c01320{left:605.670000px;}
.x3b_c01320{left:608.250000px;}
.xd0_c01320{left:610.845000px;}
.x99_c01320{left:613.440000px;}
.x108_c01320{left:615.165000px;}
.x5e_c01320{left:616.890000px;}
.x68_c01320{left:618.630000px;}
.x21_c01320{left:622.080000px;}
.xaa_c01320{left:623.805000px;}
.x2c_c01320{left:625.530000px;}
.xe7_c01320{left:629.850000px;}
.xe0_c01320{left:633.315000px;}
.x3c_c01320{left:635.040000px;}
.x33_c01320{left:637.635000px;}
.x9a_c01320{left:639.360000px;}
.x9_c01320{left:641.085000px;}
.x55_c01320{left:642.810000px;}
.x109_c01320{left:646.275000px;}
.x87_c01320{left:648.870000px;}
.x70_c01320{left:650.595000px;}
.xc2_c01320{left:653.190000px;}
.x8e_c01320{left:655.770000px;}
.x9e_c01320{left:657.510000px;}
.xb8_c01320{left:660.960000px;}
.xd1_c01320{left:662.685000px;}
.x105_c01320{left:665.280000px;}
.x88_c01320{left:667.005000px;}
.xb9_c01320{left:670.470000px;}
.xd8_c01320{left:673.920000px;}
.x19_c01320{left:675.645000px;}
.x69_c01320{left:678.240000px;}
.xd6_c01320{left:681.690000px;}
.x10d_c01320{left:683.430000px;}
.xaf_c01320{left:685.155000px;}
.x22_c01320{left:687.750000px;}
.x3d_c01320{left:691.200000px;}
.x7f_c01320{left:695.520000px;}
.xa3_c01320{left:697.245000px;}
.x9f_c01320{left:701.565000px;}
.xa_c01320{left:704.160000px;}
.xb0_c01320{left:705.885000px;}
.x3_c01320{left:707.610000px;}
.x47_c01320{left:711.075000px;}
.xb5_c01320{left:713.670000px;}
.x1a_c01320{left:715.395000px;}
.x2d_c01320{left:717.120000px;}
.x78_c01320{left:718.845000px;}
.x23_c01320{left:720.570000px;}
.x71_c01320{left:722.310000px;}
.x117_c01320{left:724.035000px;}
.xa4_c01320{left:725.760000px;}
.x110_c01320{left:727.485000px;}
.x1_c01320{left:730.080000px;}
.xba_c01320{left:731.805000px;}
.x4e_c01320{left:733.530000px;}
.xfc_c01320{left:735.270000px;}
.xa0_c01320{left:736.995000px;}
.xf3_c01320{left:738.720000px;}
.x114_c01320{left:741.315000px;}
.x72_c01320{left:743.910000px;}
.x2_c01320{left:745.635000px;}
.xbe_c01320{left:749.085000px;}
.x89_c01320{left:750.810000px;}
.xca_c01320{left:752.550000px;}
.xe8_c01320{left:756.000000px;}
.x92_c01320{left:760.320000px;}
.xbf_c01320{left:762.045000px;}
.x8a_c01320{left:763.770000px;}
.x93_c01320{left:767.235000px;}
.x6a_c01320{left:768.960000px;}
.xd2_c01320{left:770.685000px;}
.xf7_c01320{left:772.410000px;}
.xa5_c01320{left:774.150000px;}
.x5f_c01320{left:778.470000px;}
.x2e_c01320{left:780.195000px;}
.x56_c01320{left:781.920000px;}
.x24_c01320{left:784.515000px;}
.x8f_c01320{left:786.240000px;}
.x34_c01320{left:787.965000px;}
.xd9_c01320{left:793.155000px;}
.x3e_c01320{left:795.750000px;}
.x1b_c01320{left:797.475000px;}
.x80_c01320{left:800.070000px;}
.xda_c01320{left:803.520000px;}
.x9b_c01320{left:806.115000px;}
.xc3_c01320{left:808.710000px;}
.x79_c01320{left:811.290000px;}
.x81_c01320{left:813.885000px;}
.x60_c01320{left:815.610000px;}
.xb1_c01320{left:817.350000px;}
.x7a_c01320{left:819.075000px;}
.xfd_c01320{left:820.800000px;}
.x94_c01320{left:823.395000px;}
.x106_c01320{left:825.990000px;}
.xb2_c01320{left:828.570000px;}
.x6b_c01320{left:835.485000px;}
.x61_c01320{left:837.210000px;}
.xee_c01320{left:840.675000px;}
.xdb_c01320{left:842.400000px;}
.x8b_c01320{left:844.995000px;}
.x10e_c01320{left:846.720000px;}
.x3f_c01320{left:848.445000px;}
.x112_c01320{left:850.170000px;}
.x103_c01320{left:851.910000px;}
.xc0_c01320{left:854.490000px;}
.x57_c01320{left:857.085000px;}
.x95_c01320{left:858.810000px;}
.xbb_c01320{left:860.550000px;}
.x96_c01320{left:866.595000px;}
.xa6_c01320{left:869.190000px;}
.x4f_c01320{left:892.518096px;}
.x118_c01320{left:940.890000px;}
.x11a_c01320{left:965.955000px;}
.x11b_c01320{left:972.870000px;}
.x119_c01320{left:1011.750000px;}
@media print{
.v2_c01320{vertical-align:-15.360000pt;}
.v1_c01320{vertical-align:-3.093333pt;}
.v0_c01320{vertical-align:0.000000pt;}
.ls2_c01320{letter-spacing:0.000000pt;}
.ls0_c01320{letter-spacing:63.133056pt;}
.ls1_c01320{letter-spacing:82.814880pt;}
.ws0_c01320{word-spacing:0.000000pt;}
.fs1a_c01320{font-size:3.072000pt;}
.fsd_c01320{font-size:5.333333pt;}
.fs1_c01320{font-size:6.133333pt;}
.fs19_c01320{font-size:9.226667pt;}
.fs14_c01320{font-size:12.266667pt;}
.fs1d_c01320{font-size:15.360000pt;}
.fs0_c01320{font-size:18.453333pt;}
.fs2_c01320{font-size:21.493333pt;}
.fs20_c01320{font-size:24.586667pt;}
.fs1f_c01320{font-size:27.626667pt;}
.fs15_c01320{font-size:30.720000pt;}
.fs17_c01320{font-size:33.813333pt;}
.fs1e_c01320{font-size:36.853333pt;}
.fs16_c01320{font-size:39.946667pt;}
.fs18_c01320{font-size:42.986667pt;}
.fsc_c01320{font-size:46.080000pt;}
.fs13_c01320{font-size:49.173333pt;}
.fs8_c01320{font-size:52.213333pt;}
.fsf_c01320{font-size:55.306667pt;}
.fs3_c01320{font-size:58.346667pt;}
.fs5_c01320{font-size:61.440000pt;}
.fs11_c01320{font-size:64.533333pt;}
.fs7_c01320{font-size:67.573333pt;}
.fs4_c01320{font-size:70.666667pt;}
.fs10_c01320{font-size:73.706667pt;}
.fs12_c01320{font-size:76.800000pt;}
.fs9_c01320{font-size:79.893333pt;}
.fsa_c01320{font-size:82.933333pt;}
.fs6_c01320{font-size:89.066667pt;}
.fs1c_c01320{font-size:92.160000pt;}
.fs1b_c01320{font-size:95.253333pt;}
.fsb_c01320{font-size:98.293333pt;}
.fse_c01320{font-size:107.520000pt;}
.y0_c01320{bottom:0.000000pt;}
.y1e3_c01320{bottom:148.986667pt;}
.y1e2_c01320{bottom:149.760000pt;}
.y1e4_c01320{bottom:152.826667pt;}
.y1e1_c01320{bottom:153.600000pt;}
.y1df_c01320{bottom:156.666667pt;}
.y1db_c01320{bottom:160.506667pt;}
.y1e0_c01320{bottom:162.053333pt;}
.y1de_c01320{bottom:164.346667pt;}
.y1d8_c01320{bottom:165.120000pt;}
.y1da_c01320{bottom:165.893333pt;}
.y1d9_c01320{bottom:166.653333pt;}
.y1dd_c01320{bottom:170.493333pt;}
.y1dc_c01320{bottom:173.573333pt;}
.y1d6_c01320{bottom:176.640000pt;}
.y1d7_c01320{bottom:177.413333pt;}
.y1d3_c01320{bottom:178.173333pt;}
.y1d5_c01320{bottom:179.706667pt;}
.y1d4_c01320{bottom:181.253333pt;}
.y1d1_c01320{bottom:182.013333pt;}
.y1d2_c01320{bottom:184.320000pt;}
.y1d0_c01320{bottom:185.853333pt;}
.y1ce_c01320{bottom:194.306667pt;}
.y1c8_c01320{bottom:198.146667pt;}
.y1cd_c01320{bottom:198.906667pt;}
.y1c7_c01320{bottom:199.680000pt;}
.y1cc_c01320{bottom:200.453333pt;}
.y1ca_c01320{bottom:201.213333pt;}
.y1c9_c01320{bottom:201.986667pt;}
.y1cf_c01320{bottom:202.746667pt;}
.y1c6_c01320{bottom:205.053333pt;}
.y1c5_c01320{bottom:211.973333pt;}
.y1cb_c01320{bottom:213.506667pt;}
.y1c4_c01320{bottom:215.040000pt;}
.y1c2_c01320{bottom:215.813333pt;}
.y1c3_c01320{bottom:217.346667pt;}
.y1c1_c01320{bottom:221.946667pt;}
.y1c0_c01320{bottom:222.720000pt;}
.y1bd_c01320{bottom:230.400000pt;}
.y1be_c01320{bottom:231.173333pt;}
.y1bf_c01320{bottom:231.933333pt;}
.y1bb_c01320{bottom:232.706667pt;}
.y1ba_c01320{bottom:234.240000pt;}
.y1b9_c01320{bottom:235.773333pt;}
.y1bc_c01320{bottom:236.546667pt;}
.y1b5_c01320{bottom:248.826667pt;}
.y1b6_c01320{bottom:249.600000pt;}
.y1b4_c01320{bottom:251.133333pt;}
.y1b0_c01320{bottom:251.906667pt;}
.y1b3_c01320{bottom:252.666667pt;}
.y1b7_c01320{bottom:254.213333pt;}
.y1b2_c01320{bottom:254.973333pt;}
.y1b1_c01320{bottom:257.280000pt;}
.y1b8_c01320{bottom:265.733333pt;}
.y1ad_c01320{bottom:267.266667pt;}
.y1af_c01320{bottom:268.800000pt;}
.y1ac_c01320{bottom:269.573333pt;}
.y1ab_c01320{bottom:271.106667pt;}
.y1aa_c01320{bottom:271.866667pt;}
.y1ae_c01320{bottom:273.413333pt;}
.y1a9_c01320{bottom:284.933333pt;}
.y1a8_c01320{bottom:285.693333pt;}
.y1a7_c01320{bottom:288.000000pt;}
.y1a1_c01320{bottom:288.773333pt;}
.y1a6_c01320{bottom:289.533333pt;}
.y1a4_c01320{bottom:290.306667pt;}
.y1a2_c01320{bottom:293.373333pt;}
.y19f_c01320{bottom:294.146667pt;}
.y1a0_c01320{bottom:294.906667pt;}
.y1a3_c01320{bottom:297.213333pt;}
.y1a5_c01320{bottom:297.986667pt;}
.y19b_c01320{bottom:299.520000pt;}
.y19a_c01320{bottom:300.293333pt;}
.y19c_c01320{bottom:301.053333pt;}
.y19e_c01320{bottom:301.826667pt;}
.y198_c01320{bottom:303.360000pt;}
.y196_c01320{bottom:304.133333pt;}
.y194_c01320{bottom:304.893333pt;}
.y19d_c01320{bottom:305.666667pt;}
.y197_c01320{bottom:306.426667pt;}
.y195_c01320{bottom:307.200000pt;}
.y193_c01320{bottom:308.733333pt;}
.y199_c01320{bottom:310.266667pt;}
.y192_c01320{bottom:318.720000pt;}
.y18d_c01320{bottom:320.253333pt;}
.y18b_c01320{bottom:321.026667pt;}
.y18c_c01320{bottom:321.786667pt;}
.y18f_c01320{bottom:322.560000pt;}
.y18a_c01320{bottom:323.333333pt;}
.y18e_c01320{bottom:325.626667pt;}
.y190_c01320{bottom:327.933333pt;}
.y191_c01320{bottom:328.706667pt;}
.y188_c01320{bottom:340.226667pt;}
.y185_c01320{bottom:341.760000pt;}
.y184_c01320{bottom:342.533333pt;}
.y189_c01320{bottom:344.066667pt;}
.y186_c01320{bottom:344.826667pt;}
.y187_c01320{bottom:345.600000pt;}
.y183_c01320{bottom:347.133333pt;}
.y182_c01320{bottom:347.906667pt;}
.y181_c01320{bottom:348.666667pt;}
.y180_c01320{bottom:358.653333pt;}
.y17f_c01320{bottom:359.426667pt;}
.y17d_c01320{bottom:360.960000pt;}
.y179_c01320{bottom:362.493333pt;}
.y17c_c01320{bottom:363.266667pt;}
.y17b_c01320{bottom:364.800000pt;}
.y17e_c01320{bottom:365.573333pt;}
.y17a_c01320{bottom:366.333333pt;}
.y178_c01320{bottom:377.853333pt;}
.y177_c01320{bottom:378.626667pt;}
.y174_c01320{bottom:379.386667pt;}
.y172_c01320{bottom:380.933333pt;}
.y175_c01320{bottom:381.693333pt;}
.y176_c01320{bottom:382.466667pt;}
.y173_c01320{bottom:385.533333pt;}
.y16e_c01320{bottom:397.053333pt;}
.y16c_c01320{bottom:398.586667pt;}
.y16d_c01320{bottom:399.360000pt;}
.y170_c01320{bottom:400.893333pt;}
.y16f_c01320{bottom:401.666667pt;}
.y171_c01320{bottom:411.653333pt;}
.y16a_c01320{bottom:413.186667pt;}
.y169_c01320{bottom:413.946667pt;}
.y168_c01320{bottom:416.253333pt;}
.y163_c01320{bottom:417.786667pt;}
.y16b_c01320{bottom:418.560000pt;}
.y166_c01320{bottom:419.333333pt;}
.y167_c01320{bottom:420.866667pt;}
.y164_c01320{bottom:421.626667pt;}
.y165_c01320{bottom:422.400000pt;}
.y162_c01320{bottom:428.546667pt;}
.y161_c01320{bottom:430.853333pt;}
.y160_c01320{bottom:432.386667pt;}
.y15f_c01320{bottom:433.146667pt;}
.y15d_c01320{bottom:433.920000pt;}
.y15e_c01320{bottom:434.693333pt;}
.y15b_c01320{bottom:435.453333pt;}
.y15c_c01320{bottom:440.066667pt;}
.y158_c01320{bottom:450.813333pt;}
.y157_c01320{bottom:451.586667pt;}
.y159_c01320{bottom:452.346667pt;}
.y15a_c01320{bottom:453.893333pt;}
.y156_c01320{bottom:454.653333pt;}
.y155_c01320{bottom:467.706667pt;}
.y154_c01320{bottom:468.480000pt;}
.y152_c01320{bottom:469.253333pt;}
.y14b_c01320{bottom:470.013333pt;}
.y14c_c01320{bottom:470.786667pt;}
.y153_c01320{bottom:471.546667pt;}
.y14f_c01320{bottom:472.320000pt;}
.y151_c01320{bottom:473.853333pt;}
.y14e_c01320{bottom:475.386667pt;}
.y14d_c01320{bottom:482.306667pt;}
.y149_c01320{bottom:485.373333pt;}
.y150_c01320{bottom:486.906667pt;}
.y146_c01320{bottom:487.680000pt;}
.y144_c01320{bottom:488.453333pt;}
.y145_c01320{bottom:489.213333pt;}
.y147_c01320{bottom:489.986667pt;}
.y148_c01320{bottom:490.746667pt;}
.y142_c01320{bottom:493.826667pt;}
.y143_c01320{bottom:494.586667pt;}
.y14a_c01320{bottom:503.813333pt;}
.y141_c01320{bottom:505.346667pt;}
.y13f_c01320{bottom:506.106667pt;}
.y140_c01320{bottom:507.653333pt;}
.y13c_c01320{bottom:508.413333pt;}
.y139_c01320{bottom:509.186667pt;}
.y13e_c01320{bottom:509.946667pt;}
.y13d_c01320{bottom:510.720000pt;}
.y13a_c01320{bottom:511.493333pt;}
.y138_c01320{bottom:512.253333pt;}
.y13b_c01320{bottom:513.026667pt;}
.y136_c01320{bottom:523.773333pt;}
.y131_c01320{bottom:525.306667pt;}
.y137_c01320{bottom:526.080000pt;}
.y135_c01320{bottom:528.386667pt;}
.y133_c01320{bottom:529.146667pt;}
.y134_c01320{bottom:529.920000pt;}
.y132_c01320{bottom:530.693333pt;}
.y130_c01320{bottom:532.986667pt;}
.y12c_c01320{bottom:540.666667pt;}
.y12a_c01320{bottom:542.213333pt;}
.y12f_c01320{bottom:542.973333pt;}
.y12d_c01320{bottom:543.746667pt;}
.y12e_c01320{bottom:544.506667pt;}
.y128_c01320{bottom:545.280000pt;}
.y12b_c01320{bottom:546.053333pt;}
.y129_c01320{bottom:546.813333pt;}
.y127_c01320{bottom:556.026667pt;}
.y124_c01320{bottom:558.333333pt;}
.y121_c01320{bottom:559.106667pt;}
.y122_c01320{bottom:559.866667pt;}
.y11d_c01320{bottom:560.640000pt;}
.y126_c01320{bottom:561.413333pt;}
.y11f_c01320{bottom:562.173333pt;}
.y125_c01320{bottom:562.946667pt;}
.y123_c01320{bottom:564.480000pt;}
.y120_c01320{bottom:565.253333pt;}
.y11e_c01320{bottom:566.013333pt;}
.y11c_c01320{bottom:575.226667pt;}
.y11a_c01320{bottom:576.773333pt;}
.y117_c01320{bottom:577.533333pt;}
.y116_c01320{bottom:578.306667pt;}
.y11b_c01320{bottom:579.840000pt;}
.y118_c01320{bottom:580.613333pt;}
.y119_c01320{bottom:581.373333pt;}
.y115_c01320{bottom:582.146667pt;}
.y114_c01320{bottom:592.133333pt;}
.y113_c01320{bottom:594.426667pt;}
.y111_c01320{bottom:598.266667pt;}
.y112_c01320{bottom:599.040000pt;}
.y110_c01320{bottom:599.813333pt;}
.y10f_c01320{bottom:600.573333pt;}
.y10e_c01320{bottom:601.346667pt;}
.y1e6_c01320{bottom:605.946667pt;}
.y10d_c01320{bottom:611.333333pt;}
.y109_c01320{bottom:612.866667pt;}
.y10a_c01320{bottom:613.626667pt;}
.y10c_c01320{bottom:615.933333pt;}
.y10b_c01320{bottom:616.706667pt;}
.y108_c01320{bottom:619.013333pt;}
.y107_c01320{bottom:619.773333pt;}
.y104_c01320{bottom:628.226667pt;}
.y103_c01320{bottom:629.760000pt;}
.y101_c01320{bottom:630.533333pt;}
.y105_c01320{bottom:632.066667pt;}
.y106_c01320{bottom:634.373333pt;}
.y102_c01320{bottom:635.906667pt;}
.y100_c01320{bottom:636.666667pt;}
.yff_c01320{bottom:645.893333pt;}
.yfc_c01320{bottom:647.426667pt;}
.yfa_c01320{bottom:648.960000pt;}
.yfb_c01320{bottom:649.733333pt;}
.yf7_c01320{bottom:650.493333pt;}
.yfe_c01320{bottom:651.266667pt;}
.yfd_c01320{bottom:652.026667pt;}
.yf9_c01320{bottom:653.573333pt;}
.yf8_c01320{bottom:654.333333pt;}
.yf6_c01320{bottom:655.106667pt;}
.yf3_c01320{bottom:666.626667pt;}
.yf5_c01320{bottom:668.160000pt;}
.yf4_c01320{bottom:669.693333pt;}
.yf0_c01320{bottom:670.466667pt;}
.yf2_c01320{bottom:671.226667pt;}
.yef_c01320{bottom:672.000000pt;}
.yf1_c01320{bottom:672.773333pt;}
.yee_c01320{bottom:682.746667pt;}
.yec_c01320{bottom:684.293333pt;}
.yea_c01320{bottom:685.826667pt;}
.yeb_c01320{bottom:686.586667pt;}
.ye7_c01320{bottom:687.360000pt;}
.yed_c01320{bottom:688.133333pt;}
.ye6_c01320{bottom:689.666667pt;}
.ye9_c01320{bottom:690.426667pt;}
.ye8_c01320{bottom:691.200000pt;}
.ye5_c01320{bottom:691.973333pt;}
.ye3_c01320{bottom:701.946667pt;}
.ye1_c01320{bottom:702.720000pt;}
.yde_c01320{bottom:703.493333pt;}
.ydd_c01320{bottom:704.253333pt;}
.ydf_c01320{bottom:705.026667pt;}
.yda_c01320{bottom:705.786667pt;}
.ye2_c01320{bottom:706.560000pt;}
.ye0_c01320{bottom:708.093333pt;}
.ydc_c01320{bottom:708.866667pt;}
.ydb_c01320{bottom:709.626667pt;}
.ye4_c01320{bottom:716.546667pt;}
.yd8_c01320{bottom:718.853333pt;}
.yd6_c01320{bottom:720.386667pt;}
.yd5_c01320{bottom:721.146667pt;}
.yd4_c01320{bottom:721.920000pt;}
.yd7_c01320{bottom:724.226667pt;}
.yd9_c01320{bottom:724.986667pt;}
.yd3_c01320{bottom:727.293333pt;}
.yd1_c01320{bottom:735.746667pt;}
.yce_c01320{bottom:738.053333pt;}
.yd0_c01320{bottom:738.813333pt;}
.ycc_c01320{bottom:739.586667pt;}
.yca_c01320{bottom:741.120000pt;}
.ycf_c01320{bottom:741.893333pt;}
.ycd_c01320{bottom:743.426667pt;}
.ycb_c01320{bottom:744.186667pt;}
.yd2_c01320{bottom:749.573333pt;}
.yc6_c01320{bottom:755.706667pt;}
.yc5_c01320{bottom:757.253333pt;}
.yc4_c01320{bottom:758.013333pt;}
.yc8_c01320{bottom:758.786667pt;}
.yc9_c01320{bottom:759.546667pt;}
.yc7_c01320{bottom:760.320000pt;}
.yc3_c01320{bottom:763.386667pt;}
.yc1_c01320{bottom:773.373333pt;}
.ybf_c01320{bottom:776.453333pt;}
.yc2_c01320{bottom:777.213333pt;}
.yc0_c01320{bottom:778.746667pt;}
.ybe_c01320{bottom:790.266667pt;}
.ybd_c01320{bottom:791.040000pt;}
.ybc_c01320{bottom:791.813333pt;}
.yb9_c01320{bottom:792.573333pt;}
.yba_c01320{bottom:793.346667pt;}
.yb6_c01320{bottom:794.880000pt;}
.ybb_c01320{bottom:795.653333pt;}
.yb8_c01320{bottom:796.413333pt;}
.yb7_c01320{bottom:798.720000pt;}
.y1e5_c01320{bottom:809.466667pt;}
.yb3_c01320{bottom:810.240000pt;}
.yb5_c01320{bottom:811.013333pt;}
.yb1_c01320{bottom:812.546667pt;}
.yb4_c01320{bottom:814.080000pt;}
.yb2_c01320{bottom:815.613333pt;}
.yb0_c01320{bottom:816.386667pt;}
.yae_c01320{bottom:825.600000pt;}
.yab_c01320{bottom:827.133333pt;}
.yaa_c01320{bottom:828.666667pt;}
.yaf_c01320{bottom:829.440000pt;}
.yad_c01320{bottom:830.213333pt;}
.yac_c01320{bottom:831.746667pt;}
.ya9_c01320{bottom:832.506667pt;}
.ya8_c01320{bottom:833.280000pt;}
.ya7_c01320{bottom:844.026667pt;}
.ya5_c01320{bottom:844.800000pt;}
.ya6_c01320{bottom:845.573333pt;}
.ya3_c01320{bottom:846.333333pt;}
.ya1_c01320{bottom:847.106667pt;}
.y9d_c01320{bottom:847.866667pt;}
.ya4_c01320{bottom:849.413333pt;}
.y9e_c01320{bottom:850.173333pt;}
.ya2_c01320{bottom:850.946667pt;}
.ya0_c01320{bottom:851.706667pt;}
.y9f_c01320{bottom:852.480000pt;}
.y9c_c01320{bottom:862.466667pt;}
.y9b_c01320{bottom:863.226667pt;}
.y99_c01320{bottom:864.000000pt;}
.y95_c01320{bottom:864.773333pt;}
.y98_c01320{bottom:865.533333pt;}
.y96_c01320{bottom:866.306667pt;}
.y9a_c01320{bottom:867.840000pt;}
.y97_c01320{bottom:869.373333pt;}
.y8e_c01320{bottom:880.893333pt;}
.y8d_c01320{bottom:881.666667pt;}
.y8f_c01320{bottom:882.426667pt;}
.y8b_c01320{bottom:883.200000pt;}
.y8c_c01320{bottom:886.266667pt;}
.y90_c01320{bottom:887.040000pt;}
.y91_c01320{bottom:887.813333pt;}
.y93_c01320{bottom:888.573333pt;}
.y94_c01320{bottom:890.106667pt;}
.y92_c01320{bottom:891.653333pt;}
.y8a_c01320{bottom:898.560000pt;}
.y87_c01320{bottom:900.093333pt;}
.y86_c01320{bottom:900.866667pt;}
.y85_c01320{bottom:901.626667pt;}
.y83_c01320{bottom:902.400000pt;}
.y89_c01320{bottom:904.706667pt;}
.y84_c01320{bottom:906.240000pt;}
.y88_c01320{bottom:910.853333pt;}
.y82_c01320{bottom:915.453333pt;}
.y7c_c01320{bottom:916.986667pt;}
.y7a_c01320{bottom:917.760000pt;}
.y7e_c01320{bottom:918.533333pt;}
.y79_c01320{bottom:919.293333pt;}
.y7f_c01320{bottom:920.066667pt;}
.y81_c01320{bottom:920.826667pt;}
.y77_c01320{bottom:921.600000pt;}
.y80_c01320{bottom:922.373333pt;}
.y7b_c01320{bottom:923.133333pt;}
.y7d_c01320{bottom:924.666667pt;}
.y78_c01320{bottom:925.440000pt;}
.y74_c01320{bottom:934.653333pt;}
.y75_c01320{bottom:935.426667pt;}
.y71_c01320{bottom:936.186667pt;}
.y72_c01320{bottom:937.733333pt;}
.y73_c01320{bottom:940.800000pt;}
.y70_c01320{bottom:943.106667pt;}
.y76_c01320{bottom:950.786667pt;}
.y6f_c01320{bottom:953.093333pt;}
.y6e_c01320{bottom:953.853333pt;}
.y6b_c01320{bottom:954.626667pt;}
.y68_c01320{bottom:956.160000pt;}
.y67_c01320{bottom:956.933333pt;}
.y6a_c01320{bottom:957.693333pt;}
.y6d_c01320{bottom:958.466667pt;}
.y6c_c01320{bottom:959.226667pt;}
.y69_c01320{bottom:960.000000pt;}
.y66_c01320{bottom:969.986667pt;}
.y64_c01320{bottom:970.746667pt;}
.y65_c01320{bottom:972.293333pt;}
.y60_c01320{bottom:974.586667pt;}
.y61_c01320{bottom:976.133333pt;}
.y63_c01320{bottom:976.893333pt;}
.y5f_c01320{bottom:977.666667pt;}
.y62_c01320{bottom:978.426667pt;}
.y5d_c01320{bottom:988.413333pt;}
.y5c_c01320{bottom:989.946667pt;}
.y5e_c01320{bottom:991.493333pt;}
.y5b_c01320{bottom:992.253333pt;}
.y5a_c01320{bottom:994.560000pt;}
.y59_c01320{bottom:995.333333pt;}
.y58_c01320{bottom:996.093333pt;}
.y55_c01320{bottom:1001.466667pt;}
.y54_c01320{bottom:1002.240000pt;}
.y51_c01320{bottom:1005.306667pt;}
.y52_c01320{bottom:1006.080000pt;}
.y4f_c01320{bottom:1006.853333pt;}
.y4e_c01320{bottom:1007.613333pt;}
.y50_c01320{bottom:1010.693333pt;}
.y57_c01320{bottom:1012.986667pt;}
.y56_c01320{bottom:1021.440000pt;}
.y53_c01320{bottom:1023.746667pt;}
.y4d_c01320{bottom:1024.506667pt;}
.y4c_c01320{bottom:1026.813333pt;}
.y49_c01320{bottom:1027.586667pt;}
.y48_c01320{bottom:1028.346667pt;}
.y47_c01320{bottom:1029.120000pt;}
.y45_c01320{bottom:1029.893333pt;}
.y4a_c01320{bottom:1030.653333pt;}
.y46_c01320{bottom:1031.426667pt;}
.y4b_c01320{bottom:1039.106667pt;}
.y42_c01320{bottom:1043.706667pt;}
.y44_c01320{bottom:1044.480000pt;}
.y3f_c01320{bottom:1045.253333pt;}
.y40_c01320{bottom:1046.786667pt;}
.y3e_c01320{bottom:1047.546667pt;}
.y41_c01320{bottom:1048.320000pt;}
.y3c_c01320{bottom:1049.853333pt;}
.y3d_c01320{bottom:1050.626667pt;}
.y43_c01320{bottom:1058.306667pt;}
.y3a_c01320{bottom:1060.613333pt;}
.y3b_c01320{bottom:1061.373333pt;}
.y39_c01320{bottom:1062.146667pt;}
.y36_c01320{bottom:1065.213333pt;}
.y37_c01320{bottom:1065.986667pt;}
.y38_c01320{bottom:1067.520000pt;}
.y35_c01320{bottom:1068.293333pt;}
.y34_c01320{bottom:1079.040000pt;}
.y33_c01320{bottom:1079.813333pt;}
.y30_c01320{bottom:1081.346667pt;}
.y31_c01320{bottom:1082.106667pt;}
.y2d_c01320{bottom:1082.880000pt;}
.y32_c01320{bottom:1085.186667pt;}
.y2f_c01320{bottom:1085.946667pt;}
.y2e_c01320{bottom:1086.720000pt;}
.y2c_c01320{bottom:1096.706667pt;}
.y2b_c01320{bottom:1097.466667pt;}
.y27_c01320{bottom:1098.240000pt;}
.y2a_c01320{bottom:1099.773333pt;}
.y29_c01320{bottom:1100.546667pt;}
.y28_c01320{bottom:1102.853333pt;}
.y26_c01320{bottom:1103.613333pt;}
.y25_c01320{bottom:1113.600000pt;}
.y23_c01320{bottom:1114.373333pt;}
.y22_c01320{bottom:1115.906667pt;}
.y1f_c01320{bottom:1116.666667pt;}
.y24_c01320{bottom:1119.746667pt;}
.y21_c01320{bottom:1120.506667pt;}
.y20_c01320{bottom:1121.280000pt;}
.y1e_c01320{bottom:1122.053333pt;}
.y1d_c01320{bottom:1122.813333pt;}
.y1b_c01320{bottom:1132.026667pt;}
.y1c_c01320{bottom:1132.800000pt;}
.y17_c01320{bottom:1134.333333pt;}
.y16_c01320{bottom:1135.106667pt;}
.y15_c01320{bottom:1135.866667pt;}
.y1a_c01320{bottom:1137.413333pt;}
.y18_c01320{bottom:1138.173333pt;}
.y19_c01320{bottom:1142.013333pt;}
.y14_c01320{bottom:1151.226667pt;}
.y12_c01320{bottom:1152.000000pt;}
.y11_c01320{bottom:1152.773333pt;}
.ye_c01320{bottom:1154.306667pt;}
.y13_c01320{bottom:1155.840000pt;}
.y10_c01320{bottom:1157.373333pt;}
.yf_c01320{bottom:1158.146667pt;}
.yd_c01320{bottom:1168.133333pt;}
.yb_c01320{bottom:1171.200000pt;}
.yc_c01320{bottom:1176.573333pt;}
.ya_c01320{bottom:1177.346667pt;}
.y8_c01320{bottom:1193.466667pt;}
.y4_c01320{bottom:1195.773333pt;}
.y9_c01320{bottom:1198.080000pt;}
.y6_c01320{bottom:1198.853333pt;}
.y5_c01320{bottom:1199.613333pt;}
.y7_c01320{bottom:1200.386667pt;}
.y3_c01320{bottom:1265.666667pt;}
.y1_c01320{bottom:1271.813333pt;}
.y2_c01320{bottom:1274.880000pt;}
.h1c_c01320{height:2.764500pt;}
.hf_c01320{height:4.799479pt;}
.h3_c01320{height:5.519401pt;}
.h1b_c01320{height:8.303099pt;}
.h16_c01320{height:11.038802pt;}
.h1f_c01320{height:13.822500pt;}
.h2_c01320{height:16.606198pt;}
.h4_c01320{height:19.341901pt;}
.h22_c01320{height:22.125599pt;}
.h21_c01320{height:24.861302pt;}
.h17_c01320{height:27.645000pt;}
.h19_c01320{height:30.428698pt;}
.h20_c01320{height:33.164401pt;}
.h18_c01320{height:35.948099pt;}
.h1a_c01320{height:38.683802pt;}
.he_c01320{height:41.467500pt;}
.h15_c01320{height:44.251198pt;}
.ha_c01320{height:46.986901pt;}
.h11_c01320{height:49.770599pt;}
.h5_c01320{height:52.506302pt;}
.h7_c01320{height:55.290000pt;}
.h13_c01320{height:58.073698pt;}
.h9_c01320{height:60.809401pt;}
.h6_c01320{height:63.593099pt;}
.h12_c01320{height:66.328802pt;}
.h14_c01320{height:69.112500pt;}
.hb_c01320{height:71.896198pt;}
.hc_c01320{height:74.631901pt;}
.h8_c01320{height:80.151302pt;}
.h1e_c01320{height:82.935000pt;}
.h1d_c01320{height:85.718698pt;}
.hd_c01320{height:88.454401pt;}
.h10_c01320{height:96.757500pt;}
.h1_c01320{height:1345.333333pt;}
.h0_c01320{height:1345.533333pt;}
.w1_c01320{width:956.666667pt;}
.w0_c01320{width:956.933333pt;}
.x0_c01320{left:0.000000pt;}
.xfa_c01320{left:48.386667pt;}
.x107_c01320{left:162.813333pt;}
.xcb_c01320{left:165.120000pt;}
.xd3_c01320{left:167.426667pt;}
.xc4_c01320{left:168.960000pt;}
.xf9_c01320{left:171.266667pt;}
.xe5_c01320{left:176.640000pt;}
.xab_c01320{left:178.173333pt;}
.xd4_c01320{left:180.480000pt;}
.xa7_c01320{left:185.093333pt;}
.x1c_c01320{left:186.626667pt;}
.x7b_c01320{left:188.933333pt;}
.x58_c01320{left:191.226667pt;}
.xac_c01320{left:192.773333pt;}
.x40_c01320{left:194.306667pt;}
.x25_c01320{left:195.840000pt;}
.x4_c01320{left:198.146667pt;}
.xcc_c01320{left:201.986667pt;}
.xef_c01320{left:205.053333pt;}
.xdc_c01320{left:207.360000pt;}
.x10a_c01320{left:208.893333pt;}
.xb_c01320{left:211.200000pt;}
.x73_c01320{left:216.573333pt;}
.xdd_c01320{left:218.106667pt;}
.x8c_c01320{left:219.653333pt;}
.x35_c01320{left:221.946667pt;}
.x50_c01320{left:223.493333pt;}
.xf4_c01320{left:225.026667pt;}
.x26_c01320{left:227.333333pt;}
.xc5_c01320{left:228.866667pt;}
.xc_c01320{left:231.933333pt;}
.x12_c01320{left:233.466667pt;}
.x59_c01320{left:235.013333pt;}
.x7c_c01320{left:237.306667pt;}
.x41_c01320{left:239.613333pt;}
.xf0_c01320{left:241.920000pt;}
.x2f_c01320{left:244.226667pt;}
.xe9_c01320{left:246.533333pt;}
.x51_c01320{left:249.600000pt;}
.x36_c01320{left:251.906667pt;}
.xcd_c01320{left:254.973333pt;}
.x48_c01320{left:257.280000pt;}
.xa8_c01320{left:259.586667pt;}
.x62_c01320{left:261.120000pt;}
.x10b_c01320{left:262.653333pt;}
.xb6_c01320{left:264.960000pt;}
.x49_c01320{left:267.266667pt;}
.xf5_c01320{left:269.573333pt;}
.xd_c01320{left:271.106667pt;}
.x37_c01320{left:274.946667pt;}
.x13_c01320{left:277.253333pt;}
.x74_c01320{left:282.626667pt;}
.x82_c01320{left:284.160000pt;}
.x8d_c01320{left:286.466667pt;}
.x4a_c01320{left:288.773333pt;}
.x101_c01320{left:291.066667pt;}
.xfb_c01320{left:292.613333pt;}
.x5_c01320{left:294.906667pt;}
.xf8_c01320{left:298.746667pt;}
.x9c_c01320{left:300.293333pt;}
.x42_c01320{left:302.586667pt;}
.x75_c01320{left:304.893333pt;}
.x27_c01320{left:307.973333pt;}
.xea_c01320{left:309.506667pt;}
.x14_c01320{left:312.573333pt;}
.x6c_c01320{left:316.413333pt;}
.xeb_c01320{left:317.946667pt;}
.x38_c01320{left:319.493333pt;}
.x100_c01320{left:321.786667pt;}
.x5a_c01320{left:323.333333pt;}
.x4b_c01320{left:324.866667pt;}
.x63_c01320{left:327.173333pt;}
.xe4_c01320{left:328.706667pt;}
.x83_c01320{left:331.013333pt;}
.xf1_c01320{left:333.306667pt;}
.xd5_c01320{left:334.853333pt;}
.xb7_c01320{left:337.920000pt;}
.xad_c01320{left:339.453333pt;}
.xe1_c01320{left:341.760000pt;}
.x6_c01320{left:343.293333pt;}
.x52_c01320{left:345.600000pt;}
.x64_c01320{left:350.973333pt;}
.x43_c01320{left:353.280000pt;}
.x30_c01320{left:354.813333pt;}
.xf2_c01320{left:360.186667pt;}
.x44_c01320{left:361.733333pt;}
.x39_c01320{left:364.026667pt;}
.xde_c01320{left:365.573333pt;}
.xbc_c01320{left:368.640000pt;}
.xc6_c01320{left:370.173333pt;}
.x10f_c01320{left:371.706667pt;}
.x31_c01320{left:373.253333pt;}
.x76_c01320{left:375.546667pt;}
.x15_c01320{left:378.626667pt;}
.x5b_c01320{left:380.160000pt;}
.x7_c01320{left:381.693333pt;}
.x3a_c01320{left:383.226667pt;}
.x1d_c01320{left:384.773333pt;}
.xc7_c01320{left:387.840000pt;}
.xae_c01320{left:389.373333pt;}
.x5c_c01320{left:391.680000pt;}
.x28_c01320{left:393.213333pt;}
.x7d_c01320{left:396.293333pt;}
.x97_c01320{left:397.826667pt;}
.x4c_c01320{left:400.893333pt;}
.x6d_c01320{left:402.426667pt;}
.xdf_c01320{left:403.973333pt;}
.x6e_c01320{left:407.813333pt;}
.x29_c01320{left:410.106667pt;}
.x16_c01320{left:412.413333pt;}
.x8_c01320{left:414.720000pt;}
.xa9_c01320{left:416.253333pt;}
.x98_c01320{left:417.786667pt;}
.xa1_c01320{left:419.333333pt;}
.xe2_c01320{left:420.866667pt;}
.xbd_c01320{left:422.400000pt;}
.x53_c01320{left:423.933333pt;}
.x84_c01320{left:426.240000pt;}
.xe_c01320{left:428.546667pt;}
.x1e_c01320{left:430.080000pt;}
.xce_c01320{left:431.613333pt;}
.x6f_c01320{left:433.146667pt;}
.x104_c01320{left:435.453333pt;}
.xec_c01320{left:436.986667pt;}
.x4d_c01320{left:438.533333pt;}
.x115_c01320{left:440.826667pt;}
.x90_c01320{left:442.373333pt;}
.xe6_c01320{left:444.666667pt;}
.x54_c01320{left:446.213333pt;}
.x77_c01320{left:447.746667pt;}
.xc8_c01320{left:449.280000pt;}
.x65_c01320{left:451.586667pt;}
.x45_c01320{left:454.653333pt;}
.x116_c01320{left:456.960000pt;}
.xc1_c01320{left:460.026667pt;}
.x111_c01320{left:461.573333pt;}
.xfe_c01320{left:463.866667pt;}
.xc9_c01320{left:466.173333pt;}
.x85_c01320{left:468.480000pt;}
.xf_c01320{left:470.786667pt;}
.x5d_c01320{left:473.853333pt;}
.x7e_c01320{left:475.386667pt;}
.x113_c01320{left:477.693333pt;}
.x2a_c01320{left:479.226667pt;}
.xf6_c01320{left:480.773333pt;}
.x1f_c01320{left:482.306667pt;}
.x17_c01320{left:483.840000pt;}
.x10_c01320{left:486.146667pt;}
.x20_c01320{left:487.680000pt;}
.x46_c01320{left:489.213333pt;}
.x102_c01320{left:493.826667pt;}
.x66_c01320{left:495.360000pt;}
.x9d_c01320{left:502.266667pt;}
.x11_c01320{left:503.813333pt;}
.xe3_c01320{left:505.346667pt;}
.x10c_c01320{left:506.880000pt;}
.x18_c01320{left:509.186667pt;}
.xcf_c01320{left:511.493333pt;}
.x2b_c01320{left:513.026667pt;}
.xb3_c01320{left:514.560000pt;}
.x86_c01320{left:516.093333pt;}
.x91_c01320{left:519.173333pt;}
.xd7_c01320{left:520.706667pt;}
.x32_c01320{left:523.773333pt;}
.x67_c01320{left:526.080000pt;}
.xa2_c01320{left:529.146667pt;}
.xff_c01320{left:530.693333pt;}
.xb4_c01320{left:532.226667pt;}
.xed_c01320{left:538.373333pt;}
.x3b_c01320{left:540.666667pt;}
.xd0_c01320{left:542.973333pt;}
.x99_c01320{left:545.280000pt;}
.x108_c01320{left:546.813333pt;}
.x5e_c01320{left:548.346667pt;}
.x68_c01320{left:549.893333pt;}
.x21_c01320{left:552.960000pt;}
.xaa_c01320{left:554.493333pt;}
.x2c_c01320{left:556.026667pt;}
.xe7_c01320{left:559.866667pt;}
.xe0_c01320{left:562.946667pt;}
.x3c_c01320{left:564.480000pt;}
.x33_c01320{left:566.786667pt;}
.x9a_c01320{left:568.320000pt;}
.x9_c01320{left:569.853333pt;}
.x55_c01320{left:571.386667pt;}
.x109_c01320{left:574.466667pt;}
.x87_c01320{left:576.773333pt;}
.x70_c01320{left:578.306667pt;}
.xc2_c01320{left:580.613333pt;}
.x8e_c01320{left:582.906667pt;}
.x9e_c01320{left:584.453333pt;}
.xb8_c01320{left:587.520000pt;}
.xd1_c01320{left:589.053333pt;}
.x105_c01320{left:591.360000pt;}
.x88_c01320{left:592.893333pt;}
.xb9_c01320{left:595.973333pt;}
.xd8_c01320{left:599.040000pt;}
.x19_c01320{left:600.573333pt;}
.x69_c01320{left:602.880000pt;}
.xd6_c01320{left:605.946667pt;}
.x10d_c01320{left:607.493333pt;}
.xaf_c01320{left:609.026667pt;}
.x22_c01320{left:611.333333pt;}
.x3d_c01320{left:614.400000pt;}
.x7f_c01320{left:618.240000pt;}
.xa3_c01320{left:619.773333pt;}
.x9f_c01320{left:623.613333pt;}
.xa_c01320{left:625.920000pt;}
.xb0_c01320{left:627.453333pt;}
.x3_c01320{left:628.986667pt;}
.x47_c01320{left:632.066667pt;}
.xb5_c01320{left:634.373333pt;}
.x1a_c01320{left:635.906667pt;}
.x2d_c01320{left:637.440000pt;}
.x78_c01320{left:638.973333pt;}
.x23_c01320{left:640.506667pt;}
.x71_c01320{left:642.053333pt;}
.x117_c01320{left:643.586667pt;}
.xa4_c01320{left:645.120000pt;}
.x110_c01320{left:646.653333pt;}
.x1_c01320{left:648.960000pt;}
.xba_c01320{left:650.493333pt;}
.x4e_c01320{left:652.026667pt;}
.xfc_c01320{left:653.573333pt;}
.xa0_c01320{left:655.106667pt;}
.xf3_c01320{left:656.640000pt;}
.x114_c01320{left:658.946667pt;}
.x72_c01320{left:661.253333pt;}
.x2_c01320{left:662.786667pt;}
.xbe_c01320{left:665.853333pt;}
.x89_c01320{left:667.386667pt;}
.xca_c01320{left:668.933333pt;}
.xe8_c01320{left:672.000000pt;}
.x92_c01320{left:675.840000pt;}
.xbf_c01320{left:677.373333pt;}
.x8a_c01320{left:678.906667pt;}
.x93_c01320{left:681.986667pt;}
.x6a_c01320{left:683.520000pt;}
.xd2_c01320{left:685.053333pt;}
.xf7_c01320{left:686.586667pt;}
.xa5_c01320{left:688.133333pt;}
.x5f_c01320{left:691.973333pt;}
.x2e_c01320{left:693.506667pt;}
.x56_c01320{left:695.040000pt;}
.x24_c01320{left:697.346667pt;}
.x8f_c01320{left:698.880000pt;}
.x34_c01320{left:700.413333pt;}
.xd9_c01320{left:705.026667pt;}
.x3e_c01320{left:707.333333pt;}
.x1b_c01320{left:708.866667pt;}
.x80_c01320{left:711.173333pt;}
.xda_c01320{left:714.240000pt;}
.x9b_c01320{left:716.546667pt;}
.xc3_c01320{left:718.853333pt;}
.x79_c01320{left:721.146667pt;}
.x81_c01320{left:723.453333pt;}
.x60_c01320{left:724.986667pt;}
.xb1_c01320{left:726.533333pt;}
.x7a_c01320{left:728.066667pt;}
.xfd_c01320{left:729.600000pt;}
.x94_c01320{left:731.906667pt;}
.x106_c01320{left:734.213333pt;}
.xb2_c01320{left:736.506667pt;}
.x6b_c01320{left:742.653333pt;}
.x61_c01320{left:744.186667pt;}
.xee_c01320{left:747.266667pt;}
.xdb_c01320{left:748.800000pt;}
.x8b_c01320{left:751.106667pt;}
.x10e_c01320{left:752.640000pt;}
.x3f_c01320{left:754.173333pt;}
.x112_c01320{left:755.706667pt;}
.x103_c01320{left:757.253333pt;}
.xc0_c01320{left:759.546667pt;}
.x57_c01320{left:761.853333pt;}
.x95_c01320{left:763.386667pt;}
.xbb_c01320{left:764.933333pt;}
.x96_c01320{left:770.306667pt;}
.xa6_c01320{left:772.613333pt;}
.x4f_c01320{left:793.349419pt;}
.x118_c01320{left:836.346667pt;}
.x11a_c01320{left:858.626667pt;}
.x11b_c01320{left:864.773333pt;}
.x119_c01320{left:899.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1a2b55ab67786fac9928910f.woff2')format("woff");}.ff1_c01321{font-family:ff1_c01321;line-height:1.109863;font-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_c01321{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m108_c01321{transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092125,0.000000,0.000000,0.250000,0,0);}
.mf1_c01321{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m81_c01321{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m127_c01321{transform:matrix(0.105825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105825,0.000000,0.000000,0.250000,0,0);}
.m2f_c01321{transform:matrix(0.107675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107675,0.000000,0.000000,0.250000,0,0);}
.m192_c01321{transform:matrix(0.107725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107725,0.000000,0.000000,0.250000,0,0);}
.m14b_c01321{transform:matrix(0.108125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108125,0.000000,0.000000,0.250000,0,0);}
.m134_c01321{transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108300,0.000000,0.000000,0.250000,0,0);}
.mab_c01321{transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108600,0.000000,0.000000,0.250000,0,0);}
.m2e_c01321{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m129_c01321{transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);}
.m178_c01321{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.mc_c01321{transform:matrix(0.113025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113025,0.000000,0.000000,0.250000,0,0);}
.mf3_c01321{transform:matrix(0.113875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113875,0.000000,0.000000,0.250000,0,0);}
.m181_c01321{transform:matrix(0.119550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119550,0.000000,0.000000,0.250000,0,0);}
.mb8_c01321{transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119900,0.000000,0.000000,0.250000,0,0);}
.mdd_c01321{transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120100,0.000000,0.000000,0.250000,0,0);}
.m25_c01321{transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);}
.m132_c01321{transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124125,0.000000,0.000000,0.250000,0,0);}
.m15c_c01321{transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124575,0.000000,0.000000,0.250000,0,0);}
.m122_c01321{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m160_c01321{transform:matrix(0.125575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125575,0.000000,0.000000,0.250000,0,0);}
.m54_c01321{transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126225,0.000000,0.000000,0.250000,0,0);}
.m187_c01321{transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);}
.m53_c01321{transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);}
.mbd_c01321{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m101_c01321{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);}
.m14a_c01321{transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130575,0.000000,0.000000,0.250000,0,0);}
.m180_c01321{transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131650,0.000000,0.000000,0.250000,0,0);}
.m198_c01321{transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);}
.m18f_c01321{transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133600,0.000000,0.000000,0.250000,0,0);}
.m15f_c01321{transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133725,0.000000,0.000000,0.250000,0,0);}
.m114_c01321{transform:matrix(0.134400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134400,0.000000,0.000000,0.250000,0,0);}
.m13c_c01321{transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);}
.mdc_c01321{transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);}
.m96_c01321{transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135275,0.000000,0.000000,0.250000,0,0);}
.m121_c01321{transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);}
.m8_c01321{transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137950,0.000000,0.000000,0.250000,0,0);}
.me6_c01321{transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);}
.m196_c01321{transform:matrix(0.138300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138300,0.000000,0.000000,0.250000,0,0);}
.m89_c01321{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m107_c01321{transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140375,0.000000,0.000000,0.250000,0,0);}
.m186_c01321{transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);}
.m18b_c01321{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);}
.m149_c01321{transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142350,0.000000,0.000000,0.250000,0,0);}
.m162_c01321{transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143375,0.000000,0.000000,0.250000,0,0);}
.m102_c01321{transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);}
.m7c_c01321{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m128_c01321{transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);}
.m30_c01321{transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144450,0.000000,0.000000,0.250000,0,0);}
.m37_c01321{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);}
.mae_c01321{transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);}
.m12a_c01321{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);}
.me8_c01321{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);}
.m118_c01321{transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147175,0.000000,0.000000,0.250000,0,0);}
.mef_c01321{transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);}
.m4b_c01321{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);}
.m19a_c01321{transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);}
.mf2_c01321{transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);}
.m194_c01321{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m3_c01321{transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);}
.m10a_c01321{transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);}
.m97_c01321{transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);}
.m99_c01321{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);}
.m171_c01321{transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);}
.mad_c01321{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.ma6_c01321{transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);}
.m197_c01321{transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);}
.mfe_c01321{transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153850,0.000000,0.000000,0.250000,0,0);}
.m12b_c01321{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.me9_c01321{transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154500,0.000000,0.000000,0.250000,0,0);}
.m151_c01321{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.md3_c01321{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.m85_c01321{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);}
.md2_c01321{transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157975,0.000000,0.000000,0.250000,0,0);}
.m103_c01321{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);}
.m190_c01321{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.m18d_c01321{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.mac_c01321{transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);}
.mb5_c01321{transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159575,0.000000,0.000000,0.250000,0,0);}
.m14e_c01321{transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160475,0.000000,0.000000,0.250000,0,0);}
.m179_c01321{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.m174_c01321{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m147_c01321{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);}
.m16e_c01321{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m10c_c01321{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.m32_c01321{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.ma8_c01321{transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);}
.m12d_c01321{transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166175,0.000000,0.000000,0.250000,0,0);}
.m87_c01321{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m9_c01321{transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167250,0.000000,0.000000,0.250000,0,0);}
.m185_c01321{transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);}
.mb2_c01321{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m17c_c01321{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);}
.maa_c01321{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.m18e_c01321{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);}
.mea_c01321{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.m176_c01321{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.m158_c01321{transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);}
.me_c01321{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);}
.m144_c01321{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.md5_c01321{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m153_c01321{transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);}
.m16a_c01321{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m8f_c01321{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m10f_c01321{transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172775,0.000000,0.000000,0.250000,0,0);}
.m90_c01321{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m119_c01321{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.mb3_c01321{transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);}
.m126_c01321{transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);}
.m145_c01321{transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);}
.m155_c01321{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m86_c01321{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m92_c01321{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m50_c01321{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);}
.m2d_c01321{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.m159_c01321{transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177500,0.000000,0.000000,0.250000,0,0);}
.m150_c01321{transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);}
.m166_c01321{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);}
.me7_c01321{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m120_c01321{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);}
.me4_c01321{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.m136_c01321{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);}
.mcf_c01321{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);}
.mb1_c01321{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);}
.m13a_c01321{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);}
.m138_c01321{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);}
.m10d_c01321{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.mf0_c01321{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.mfd_c01321{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);}
.ma5_c01321{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m135_c01321{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);}
.m165_c01321{transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);}
.m13b_c01321{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m105_c01321{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);}
.med_c01321{transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181675,0.000000,0.000000,0.250000,0,0);}
.ma7_c01321{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.m164_c01321{transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182350,0.000000,0.000000,0.250000,0,0);}
.mb0_c01321{transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);}
.m41_c01321{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m17d_c01321{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.mb_c01321{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m183_c01321{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.m152_c01321{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.m130_c01321{transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185350,0.000000,0.000000,0.250000,0,0);}
.m15b_c01321{transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);}
.m11e_c01321{transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186000,0.000000,0.000000,0.250000,0,0);}
.m40_c01321{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);}
.m13d_c01321{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m83_c01321{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);}
.mb6_c01321{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);}
.m104_c01321{transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187800,0.000000,0.000000,0.250000,0,0);}
.mcc_c01321{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m137_c01321{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.m167_c01321{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);}
.mfb_c01321{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);}
.md_c01321{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m123_c01321{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);}
.m109_c01321{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m11c_c01321{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.m11a_c01321{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.mf4_c01321{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.m15_c01321{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.md1_c01321{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m8d_c01321{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.m74_c01321{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);}
.m7b_c01321{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);}
.m13e_c01321{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.m113_c01321{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);}
.m195_c01321{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);}
.m170_c01321{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);}
.m16b_c01321{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.m13f_c01321{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.mb4_c01321{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);}
.m156_c01321{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m124_c01321{transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);}
.m17f_c01321{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);}
.m146_c01321{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);}
.m175_c01321{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m140_c01321{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);}
.mc9_c01321{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);}
.m62_c01321{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.mda_c01321{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.m115_c01321{transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);}
.m9d_c01321{transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);}
.m172_c01321{transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);}
.m70_c01321{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);}
.m173_c01321{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);}
.mdf_c01321{transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);}
.mf9_c01321{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.m14c_c01321{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.mf8_c01321{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);}
.me3_c01321{transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205825,0.000000,0.000000,0.250000,0,0);}
.m154_c01321{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);}
.m18_c01321{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m157_c01321{transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);}
.m67_c01321{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.m163_c01321{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m1b_c01321{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);}
.m182_c01321{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.md0_c01321{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m16f_c01321{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);}
.m6b_c01321{transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);}
.m3d_c01321{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m117_c01321{transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);}
.m23_c01321{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01321{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);}
.m14f_c01321{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.mf7_c01321{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);}
.m4e_c01321{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);}
.md7_c01321{transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);}
.m3c_c01321{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.mff_c01321{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m1f_c01321{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m8b_c01321{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.m168_c01321{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);}
.m16c_c01321{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);}
.m143_c01321{transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213425,0.000000,0.000000,0.250000,0,0);}
.m42_c01321{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m100_c01321{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.m6_c01321{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);}
.m15d_c01321{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);}
.m112_c01321{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m94_c01321{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);}
.m33_c01321{transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);}
.md6_c01321{transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);}
.m4d_c01321{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);}
.m148_c01321{transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);}
.m5e_c01321{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);}
.m12f_c01321{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.m9a_c01321{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);}
.m35_c01321{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mec_c01321{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m34_c01321{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);}
.mfa_c01321{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.me5_c01321{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);}
.m84_c01321{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m189_c01321{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);}
.ma2_c01321{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);}
.mf6_c01321{transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221675,0.000000,0.000000,0.250000,0,0);}
.m7d_c01321{transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);}
.m10_c01321{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.me2_c01321{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.ma1_c01321{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);}
.mcb_c01321{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);}
.m10b_c01321{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m184_c01321{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);}
.m4a_c01321{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);}
.m17_c01321{transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);}
.m6c_c01321{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);}
.m61_c01321{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m188_c01321{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m141_c01321{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m13_c01321{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);}
.m142_c01321{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);}
.m46_c01321{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);}
.m18a_c01321{transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);}
.m11f_c01321{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);}
.m15a_c01321{transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);}
.mbf_c01321{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m18c_c01321{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m4f_c01321{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.m29_c01321{transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);}
.m16d_c01321{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.mc8_c01321{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m106_c01321{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);}
.m6f_c01321{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m12c_c01321{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);}
.m125_c01321{transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);}
.m110_c01321{transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);}
.meb_c01321{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);}
.mde_c01321{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);}
.m56_c01321{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);}
.m4c_c01321{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.md4_c01321{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.mf5_c01321{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.m7a_c01321{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);}
.mcd_c01321{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);}
.m2b_c01321{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);}
.mce_c01321{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);}
.m191_c01321{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.m161_c01321{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);}
.m48_c01321{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);}
.ma9_c01321{transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);}
.m8a_c01321{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);}
.md8_c01321{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);}
.m139_c01321{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);}
.m75_c01321{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);}
.m193_c01321{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.me1_c01321{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m133_c01321{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);}
.m9f_c01321{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.me0_c01321{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);}
.m111_c01321{transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);}
.m199_c01321{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);}
.m5_c01321{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);}
.m11b_c01321{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);}
.mee_c01321{transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241825,0.000000,0.000000,0.250000,0,0);}
.m88_c01321{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m177_c01321{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);}
.m14d_c01321{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.mc3_c01321{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);}
.m28_c01321{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.mc0_c01321{transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);}
.m17e_c01321{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);}
.m36_c01321{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);}
.m116_c01321{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);}
.m73_c01321{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);}
.md9_c01321{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m80_c01321{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m47_c01321{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);}
.m15e_c01321{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m7_c01321{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);}
.m2_c01321{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m95_c01321{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);}
.m9e_c01321{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);}
.m69_c01321{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);}
.m38_c01321{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);}
.m1c_c01321{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mca_c01321{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01321{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c01321{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);}
.m4_c01321{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01321{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);}
.m1_c01321{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);}
.ma_c01321{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m8c_c01321{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);}
.m1a_c01321{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m31_c01321{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01321{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);}
.m21_c01321{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01321{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);}
.m22_c01321{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);}
.m26_c01321{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01321{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m65_c01321{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);}
.m3f_c01321{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c01321{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m91_c01321{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);}
.m55_c01321{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m43_c01321{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01321{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m19_c01321{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m71_c01321{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m44_c01321{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01321{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m45_c01321{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m24_c01321{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);}
.m76_c01321{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m77_c01321{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c01321{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11d_c01321{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01321{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);}
.m63_c01321{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);}
.m57_c01321{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m78_c01321{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);}
.mfc_c01321{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m59_c01321{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m8e_c01321{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mdb_c01321{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m68_c01321{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_c01321{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m51_c01321{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);}
.m14_c01321{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m52_c01321{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m169_c01321{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);}
.m9b_c01321{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m98_c01321{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01321{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m58_c01321{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.ma4_c01321{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m10e_c01321{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m82_c01321{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);}
.m0_c01321{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);}
.mc4_c01321{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);}
.m3a_c01321{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.maf_c01321{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m16_c01321{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mc1_c01321{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m39_c01321{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01321{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m131_c01321{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01321{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m93_c01321{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);}
.mc2_c01321{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m60_c01321{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m9c_c01321{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01321{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.ma0_c01321{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mc5_c01321{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m72_c01321{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01321{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);}
.m79_c01321{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01321{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m49_c01321{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m66_c01321{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m19b_c01321{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m27_c01321{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m17b_c01321{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.mba_c01321{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.mb7_c01321{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mbb_c01321{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m12e_c01321{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m17a_c01321{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.mbc_c01321{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01321{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m19c_c01321{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.mc6_c01321{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mf_c01321{transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);}
.mc7_c01321{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m19d_c01321{transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);}
.mbe_c01321{transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.277500,0.000000,0.000000,0.250000,0,0);}
.mb9_c01321{transform:matrix(2.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.792500,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;}
}
.ws1_c01321{word-spacing:0.000000px;}
.ws0_c01321{word-spacing:21.655200px;}
.fc0_c01321{color:transparent;}
.fs1c_c01321{font-size:3.456000px;}
.fs1d_c01321{font-size:6.000000px;}
.fs1a_c01321{font-size:6.900000px;}
.fs1b_c01321{font-size:10.380000px;}
.fs13_c01321{font-size:13.800000px;}
.fsa_c01321{font-size:17.280000px;}
.fs12_c01321{font-size:20.760000px;}
.fs18_c01321{font-size:24.180000px;}
.fs10_c01321{font-size:27.660000px;}
.fs16_c01321{font-size:31.080000px;}
.fse_c01321{font-size:34.560000px;}
.fs15_c01321{font-size:38.040000px;}
.fsd_c01321{font-size:41.460000px;}
.fs14_c01321{font-size:44.940000px;}
.fsf_c01321{font-size:48.360000px;}
.fsb_c01321{font-size:51.840000px;}
.fs4_c01321{font-size:55.320000px;}
.fs7_c01321{font-size:58.740000px;}
.fs6_c01321{font-size:62.220000px;}
.fs2_c01321{font-size:65.640000px;}
.fs0_c01321{font-size:69.120000px;}
.fs17_c01321{font-size:72.600000px;}
.fs1_c01321{font-size:76.020000px;}
.fs5_c01321{font-size:79.500000px;}
.fsc_c01321{font-size:82.920000px;}
.fs9_c01321{font-size:86.400000px;}
.fs11_c01321{font-size:89.880000px;}
.fs19_c01321{font-size:93.300000px;}
.fs1e_c01321{font-size:96.780000px;}
.fs8_c01321{font-size:103.680000px;}
.fs3_c01321{font-size:114.060000px;}
.y0_c01321{bottom:0.000000px;}
.y1c0_c01321{bottom:189.210000px;}
.y1b9_c01321{bottom:190.080000px;}
.y1ba_c01321{bottom:190.950000px;}
.y1bf_c01321{bottom:191.805000px;}
.y1bd_c01321{bottom:192.675000px;}
.y1bb_c01321{bottom:193.530000px;}
.y1be_c01321{bottom:194.400000px;}
.y1bc_c01321{bottom:196.995000px;}
.y1c1_c01321{bottom:210.810000px;}
.y1b5_c01321{bottom:212.550000px;}
.y1b0_c01321{bottom:213.405000px;}
.y1b8_c01321{bottom:214.275000px;}
.y1b6_c01321{bottom:215.130000px;}
.y1b3_c01321{bottom:216.000000px;}
.y1b1_c01321{bottom:217.725000px;}
.y1b2_c01321{bottom:218.595000px;}
.y1b7_c01321{bottom:219.450000px;}
.y1b4_c01321{bottom:220.320000px;}
.y1aa_c01321{bottom:232.410000px;}
.y1ac_c01321{bottom:233.280000px;}
.y1ae_c01321{bottom:234.150000px;}
.y1af_c01321{bottom:235.005000px;}
.y1ab_c01321{bottom:235.875000px;}
.y1a9_c01321{bottom:236.730000px;}
.y1ad_c01321{bottom:238.470000px;}
.y1a2_c01321{bottom:251.430000px;}
.y1a4_c01321{bottom:254.010000px;}
.y1a8_c01321{bottom:255.750000px;}
.y1a6_c01321{bottom:256.605000px;}
.y1a3_c01321{bottom:257.475000px;}
.y1a5_c01321{bottom:259.200000px;}
.y1a7_c01321{bottom:260.925000px;}
.y1a1_c01321{bottom:267.840000px;}
.y197_c01321{bottom:273.030000px;}
.y198_c01321{bottom:273.885000px;}
.y199_c01321{bottom:275.610000px;}
.y19e_c01321{bottom:276.480000px;}
.y1a0_c01321{bottom:277.350000px;}
.y19b_c01321{bottom:278.205000px;}
.y19a_c01321{bottom:279.075000px;}
.y19c_c01321{bottom:279.930000px;}
.y19d_c01321{bottom:280.800000px;}
.y19f_c01321{bottom:285.120000px;}
.y193_c01321{bottom:291.165000px;}
.y194_c01321{bottom:292.035000px;}
.y195_c01321{bottom:292.890000px;}
.y196_c01321{bottom:294.630000px;}
.y1c8_c01321{bottom:296.355000px;}
.y18f_c01321{bottom:314.490000px;}
.y192_c01321{bottom:315.360000px;}
.y18d_c01321{bottom:316.230000px;}
.y18c_c01321{bottom:317.955000px;}
.y18e_c01321{bottom:318.810000px;}
.y191_c01321{bottom:319.680000px;}
.y190_c01321{bottom:320.550000px;}
.y186_c01321{bottom:333.510000px;}
.y187_c01321{bottom:334.365000px;}
.y188_c01321{bottom:336.090000px;}
.y18a_c01321{bottom:337.830000px;}
.y189_c01321{bottom:338.685000px;}
.y18b_c01321{bottom:340.410000px;}
.y181_c01321{bottom:352.515000px;}
.y184_c01321{bottom:353.370000px;}
.y182_c01321{bottom:355.965000px;}
.y183_c01321{bottom:356.835000px;}
.y185_c01321{bottom:360.285000px;}
.y17b_c01321{bottom:374.115000px;}
.y17f_c01321{bottom:374.970000px;}
.y17e_c01321{bottom:376.710000px;}
.y180_c01321{bottom:377.565000px;}
.y17c_c01321{bottom:379.290000px;}
.y17d_c01321{bottom:380.160000px;}
.y177_c01321{bottom:392.250000px;}
.y175_c01321{bottom:393.990000px;}
.y173_c01321{bottom:394.845000px;}
.y171_c01321{bottom:395.715000px;}
.y174_c01321{bottom:396.570000px;}
.y17a_c01321{bottom:397.440000px;}
.y178_c01321{bottom:398.310000px;}
.y179_c01321{bottom:399.165000px;}
.y176_c01321{bottom:400.035000px;}
.y172_c01321{bottom:403.485000px;}
.y16f_c01321{bottom:412.995000px;}
.y16d_c01321{bottom:414.720000px;}
.y16c_c01321{bottom:416.445000px;}
.y170_c01321{bottom:417.315000px;}
.y16b_c01321{bottom:419.040000px;}
.y16e_c01321{bottom:419.910000px;}
.y168_c01321{bottom:432.870000px;}
.y169_c01321{bottom:433.725000px;}
.y163_c01321{bottom:434.595000px;}
.y16a_c01321{bottom:435.450000px;}
.y164_c01321{bottom:436.320000px;}
.y167_c01321{bottom:438.045000px;}
.y162_c01321{bottom:438.915000px;}
.y166_c01321{bottom:439.770000px;}
.y165_c01321{bottom:440.640000px;}
.y15f_c01321{bottom:453.600000px;}
.y15d_c01321{bottom:454.470000px;}
.y160_c01321{bottom:455.325000px;}
.y161_c01321{bottom:459.645000px;}
.y15e_c01321{bottom:460.515000px;}
.y158_c01321{bottom:471.750000px;}
.y15a_c01321{bottom:474.330000px;}
.y159_c01321{bottom:475.200000px;}
.y15c_c01321{bottom:476.070000px;}
.y15b_c01321{bottom:477.795000px;}
.y156_c01321{bottom:494.205000px;}
.y152_c01321{bottom:495.075000px;}
.y157_c01321{bottom:495.930000px;}
.y153_c01321{bottom:496.800000px;}
.y155_c01321{bottom:498.525000px;}
.y154_c01321{bottom:500.250000px;}
.y14a_c01321{bottom:508.890000px;}
.y14d_c01321{bottom:510.630000px;}
.y14b_c01321{bottom:511.485000px;}
.y14c_c01321{bottom:512.355000px;}
.y14e_c01321{bottom:513.210000px;}
.y14f_c01321{bottom:514.080000px;}
.y151_c01321{bottom:518.400000px;}
.y150_c01321{bottom:519.270000px;}
.y145_c01321{bottom:533.085000px;}
.y142_c01321{bottom:533.955000px;}
.y143_c01321{bottom:534.810000px;}
.y144_c01321{bottom:535.680000px;}
.y149_c01321{bottom:537.405000px;}
.y147_c01321{bottom:538.275000px;}
.y146_c01321{bottom:539.130000px;}
.y148_c01321{bottom:540.000000px;}
.y13d_c01321{bottom:554.685000px;}
.y140_c01321{bottom:555.555000px;}
.y13e_c01321{bottom:559.005000px;}
.y13f_c01321{bottom:559.875000px;}
.y141_c01321{bottom:560.730000px;}
.y135_c01321{bottom:573.690000px;}
.y137_c01321{bottom:574.560000px;}
.y138_c01321{bottom:575.430000px;}
.y136_c01321{bottom:576.285000px;}
.y13a_c01321{bottom:578.010000px;}
.y134_c01321{bottom:578.880000px;}
.y13c_c01321{bottom:584.070000px;}
.y13b_c01321{bottom:585.795000px;}
.y139_c01321{bottom:591.840000px;}
.y12f_c01321{bottom:594.435000px;}
.y132_c01321{bottom:596.160000px;}
.y12d_c01321{bottom:597.030000px;}
.y133_c01321{bottom:597.885000px;}
.y12e_c01321{bottom:598.755000px;}
.y131_c01321{bottom:599.610000px;}
.y130_c01321{bottom:600.480000px;}
.y129_c01321{bottom:614.310000px;}
.y126_c01321{bottom:616.035000px;}
.y125_c01321{bottom:617.760000px;}
.y124_c01321{bottom:618.630000px;}
.y128_c01321{bottom:619.485000px;}
.y127_c01321{bottom:620.355000px;}
.y12a_c01321{bottom:621.210000px;}
.y12b_c01321{bottom:622.080000px;}
.y12c_c01321{bottom:630.720000px;}
.y11c_c01321{bottom:633.315000px;}
.y11d_c01321{bottom:634.170000px;}
.y123_c01321{bottom:635.910000px;}
.y122_c01321{bottom:636.765000px;}
.y11f_c01321{bottom:638.490000px;}
.y120_c01321{bottom:639.360000px;}
.y121_c01321{bottom:641.085000px;}
.y11e_c01321{bottom:642.810000px;}
.y117_c01321{bottom:654.915000px;}
.y11a_c01321{bottom:656.640000px;}
.y116_c01321{bottom:657.510000px;}
.y115_c01321{bottom:658.365000px;}
.y118_c01321{bottom:660.090000px;}
.y11b_c01321{bottom:661.830000px;}
.y119_c01321{bottom:667.005000px;}
.y111_c01321{bottom:673.920000px;}
.y10d_c01321{bottom:674.790000px;}
.y10e_c01321{bottom:675.645000px;}
.y113_c01321{bottom:676.515000px;}
.y1c7_c01321{bottom:677.370000px;}
.y10c_c01321{bottom:678.240000px;}
.y10f_c01321{bottom:679.110000px;}
.y110_c01321{bottom:679.965000px;}
.y112_c01321{bottom:680.835000px;}
.y114_c01321{bottom:681.690000px;}
.y1c6_c01321{bottom:690.330000px;}
.y105_c01321{bottom:693.795000px;}
.y109_c01321{bottom:694.650000px;}
.y106_c01321{bottom:695.520000px;}
.y10a_c01321{bottom:696.390000px;}
.y108_c01321{bottom:697.245000px;}
.y107_c01321{bottom:699.840000px;}
.y10b_c01321{bottom:700.710000px;}
.y100_c01321{bottom:713.670000px;}
.yfd_c01321{bottom:714.525000px;}
.yfe_c01321{bottom:715.395000px;}
.y102_c01321{bottom:716.250000px;}
.y101_c01321{bottom:717.120000px;}
.y103_c01321{bottom:717.990000px;}
.yfb_c01321{bottom:718.845000px;}
.yfc_c01321{bottom:719.715000px;}
.yff_c01321{bottom:720.570000px;}
.y104_c01321{bottom:721.440000px;}
.yf2_c01321{bottom:733.530000px;}
.yf5_c01321{bottom:735.270000px;}
.yf3_c01321{bottom:736.995000px;}
.yf8_c01321{bottom:737.850000px;}
.yf7_c01321{bottom:738.720000px;}
.yf6_c01321{bottom:739.590000px;}
.yf4_c01321{bottom:740.445000px;}
.yf9_c01321{bottom:745.635000px;}
.yfa_c01321{bottom:749.085000px;}
.yef_c01321{bottom:754.275000px;}
.yee_c01321{bottom:755.130000px;}
.yf1_c01321{bottom:759.450000px;}
.yf0_c01321{bottom:761.190000px;}
.ye9_c01321{bottom:774.150000px;}
.yeb_c01321{bottom:775.875000px;}
.ye8_c01321{bottom:777.600000px;}
.ye7_c01321{bottom:779.325000px;}
.yea_c01321{bottom:780.195000px;}
.yec_c01321{bottom:781.050000px;}
.yed_c01321{bottom:781.920000px;}
.ye2_c01321{bottom:793.155000px;}
.ye6_c01321{bottom:796.605000px;}
.ye5_c01321{bottom:798.330000px;}
.ye4_c01321{bottom:799.200000px;}
.ye3_c01321{bottom:800.070000px;}
.ye1_c01321{bottom:811.290000px;}
.ydb_c01321{bottom:818.205000px;}
.ydc_c01321{bottom:819.075000px;}
.ydd_c01321{bottom:819.930000px;}
.ydf_c01321{bottom:820.800000px;}
.ye0_c01321{bottom:821.670000px;}
.yde_c01321{bottom:825.990000px;}
.yd4_c01321{bottom:832.890000px;}
.yd6_c01321{bottom:833.760000px;}
.yd2_c01321{bottom:834.630000px;}
.yd8_c01321{bottom:835.485000px;}
.yd9_c01321{bottom:836.355000px;}
.yd3_c01321{bottom:837.210000px;}
.yd5_c01321{bottom:838.080000px;}
.ycb_c01321{bottom:838.950000px;}
.yc9_c01321{bottom:839.805000px;}
.ycd_c01321{bottom:840.675000px;}
.yd7_c01321{bottom:842.400000px;}
.yda_c01321{bottom:844.125000px;}
.yc8_c01321{bottom:844.995000px;}
.yca_c01321{bottom:846.720000px;}
.ycc_c01321{bottom:847.590000px;}
.yce_c01321{bottom:848.445000px;}
.yd0_c01321{bottom:849.315000px;}
.ycf_c01321{bottom:850.170000px;}
.yd1_c01321{bottom:851.040000px;}
.yc2_c01321{bottom:852.765000px;}
.yc1_c01321{bottom:854.490000px;}
.yc3_c01321{bottom:855.360000px;}
.yc6_c01321{bottom:856.230000px;}
.yc4_c01321{bottom:857.085000px;}
.yc5_c01321{bottom:857.955000px;}
.yc0_c01321{bottom:858.810000px;}
.yc7_c01321{bottom:864.000000px;}
.yba_c01321{bottom:874.365000px;}
.ybb_c01321{bottom:875.235000px;}
.ybe_c01321{bottom:876.960000px;}
.yb6_c01321{bottom:877.830000px;}
.yb7_c01321{bottom:878.685000px;}
.yb8_c01321{bottom:879.555000px;}
.ybd_c01321{bottom:881.280000px;}
.yb9_c01321{bottom:886.470000px;}
.ybc_c01321{bottom:890.790000px;}
.ybf_c01321{bottom:896.835000px;}
.yb2_c01321{bottom:897.690000px;}
.yb0_c01321{bottom:898.560000px;}
.yb1_c01321{bottom:900.285000px;}
.yb3_c01321{bottom:901.155000px;}
.yb5_c01321{bottom:902.010000px;}
.yb4_c01321{bottom:902.880000px;}
.yaa_c01321{bottom:914.115000px;}
.ya8_c01321{bottom:914.970000px;}
.ya9_c01321{bottom:915.840000px;}
.yad_c01321{bottom:917.565000px;}
.yae_c01321{bottom:918.435000px;}
.yab_c01321{bottom:920.160000px;}
.yac_c01321{bottom:921.030000px;}
.yaf_c01321{bottom:922.755000px;}
.ya2_c01321{bottom:934.845000px;}
.ya4_c01321{bottom:935.715000px;}
.ya1_c01321{bottom:938.310000px;}
.ya7_c01321{bottom:939.165000px;}
.ya3_c01321{bottom:940.035000px;}
.ya5_c01321{bottom:941.760000px;}
.ya6_c01321{bottom:944.355000px;}
.y9c_c01321{bottom:955.590000px;}
.y98_c01321{bottom:957.315000px;}
.y99_c01321{bottom:958.170000px;}
.y9a_c01321{bottom:959.040000px;}
.y9b_c01321{bottom:959.910000px;}
.y9d_c01321{bottom:961.635000px;}
.y9e_c01321{bottom:962.490000px;}
.y9f_c01321{bottom:963.360000px;}
.ya0_c01321{bottom:964.230000px;}
.y91_c01321{bottom:972.000000px;}
.y96_c01321{bottom:973.725000px;}
.y93_c01321{bottom:974.595000px;}
.y95_c01321{bottom:975.450000px;}
.y90_c01321{bottom:978.045000px;}
.y92_c01321{bottom:979.770000px;}
.y97_c01321{bottom:983.235000px;}
.y94_c01321{bottom:987.555000px;}
.y8a_c01321{bottom:992.730000px;}
.y88_c01321{bottom:993.600000px;}
.y89_c01321{bottom:997.920000px;}
.y8b_c01321{bottom:998.790000px;}
.y8f_c01321{bottom:999.645000px;}
.y8c_c01321{bottom:1000.515000px;}
.y8e_c01321{bottom:1002.240000px;}
.y8d_c01321{bottom:1003.110000px;}
.y1c9_c01321{bottom:1006.560000px;}
.y84_c01321{bottom:1012.605000px;}
.y82_c01321{bottom:1015.200000px;}
.y85_c01321{bottom:1016.070000px;}
.y80_c01321{bottom:1016.925000px;}
.y81_c01321{bottom:1017.795000px;}
.y83_c01321{bottom:1018.650000px;}
.y86_c01321{bottom:1021.245000px;}
.y87_c01321{bottom:1022.115000px;}
.y1c5_c01321{bottom:1029.885000px;}
.y77_c01321{bottom:1032.480000px;}
.y1c4_c01321{bottom:1034.205000px;}
.y7c_c01321{bottom:1038.525000px;}
.y79_c01321{bottom:1039.395000px;}
.y78_c01321{bottom:1040.250000px;}
.y7b_c01321{bottom:1041.120000px;}
.y7e_c01321{bottom:1041.990000px;}
.y7d_c01321{bottom:1042.845000px;}
.y7f_c01321{bottom:1045.440000px;}
.y7a_c01321{bottom:1054.080000px;}
.y74_c01321{bottom:1054.950000px;}
.y71_c01321{bottom:1056.675000px;}
.y6f_c01321{bottom:1057.530000px;}
.y70_c01321{bottom:1058.400000px;}
.y72_c01321{bottom:1059.270000px;}
.y73_c01321{bottom:1060.125000px;}
.y75_c01321{bottom:1061.850000px;}
.y76_c01321{bottom:1062.720000px;}
.y6b_c01321{bottom:1073.955000px;}
.y67_c01321{bottom:1076.550000px;}
.y68_c01321{bottom:1077.405000px;}
.y6a_c01321{bottom:1078.275000px;}
.y69_c01321{bottom:1079.130000px;}
.y6d_c01321{bottom:1080.870000px;}
.y6c_c01321{bottom:1081.725000px;}
.y6e_c01321{bottom:1082.595000px;}
.y60_c01321{bottom:1093.830000px;}
.y61_c01321{bottom:1098.150000px;}
.y62_c01321{bottom:1099.875000px;}
.y63_c01321{bottom:1100.730000px;}
.y64_c01321{bottom:1101.600000px;}
.y65_c01321{bottom:1103.325000px;}
.y66_c01321{bottom:1105.920000px;}
.y56_c01321{bottom:1113.690000px;}
.y59_c01321{bottom:1114.560000px;}
.y5b_c01321{bottom:1116.285000px;}
.y58_c01321{bottom:1117.155000px;}
.y57_c01321{bottom:1118.010000px;}
.y5f_c01321{bottom:1118.880000px;}
.y5a_c01321{bottom:1119.750000px;}
.y5c_c01321{bottom:1121.475000px;}
.y5d_c01321{bottom:1122.330000px;}
.y5e_c01321{bottom:1123.200000px;}
.y50_c01321{bottom:1133.565000px;}
.y4e_c01321{bottom:1137.030000px;}
.y4f_c01321{bottom:1138.755000px;}
.y51_c01321{bottom:1139.610000px;}
.y53_c01321{bottom:1140.480000px;}
.y52_c01321{bottom:1141.350000px;}
.y1c3_c01321{bottom:1143.075000px;}
.y54_c01321{bottom:1143.930000px;}
.y55_c01321{bottom:1147.395000px;}
.y46_c01321{bottom:1154.310000px;}
.y4d_c01321{bottom:1156.890000px;}
.y45_c01321{bottom:1157.760000px;}
.y47_c01321{bottom:1159.485000px;}
.y48_c01321{bottom:1160.355000px;}
.y49_c01321{bottom:1161.210000px;}
.y4a_c01321{bottom:1162.950000px;}
.y4b_c01321{bottom:1163.805000px;}
.y4c_c01321{bottom:1165.530000px;}
.y3f_c01321{bottom:1172.445000px;}
.y40_c01321{bottom:1173.315000px;}
.y42_c01321{bottom:1175.040000px;}
.y41_c01321{bottom:1175.910000px;}
.y43_c01321{bottom:1181.085000px;}
.y44_c01321{bottom:1183.680000px;}
.y3e_c01321{bottom:1195.770000px;}
.y3c_c01321{bottom:1196.640000px;}
.y3a_c01321{bottom:1198.365000px;}
.y3b_c01321{bottom:1199.235000px;}
.y3d_c01321{bottom:1200.960000px;}
.y32_c01321{bottom:1212.195000px;}
.y33_c01321{bottom:1213.920000px;}
.y37_c01321{bottom:1214.790000px;}
.y38_c01321{bottom:1216.515000px;}
.y39_c01321{bottom:1217.370000px;}
.y34_c01321{bottom:1218.240000px;}
.y35_c01321{bottom:1219.965000px;}
.y36_c01321{bottom:1220.835000px;}
.y27_c01321{bottom:1232.925000px;}
.y29_c01321{bottom:1233.795000px;}
.y28_c01321{bottom:1235.520000px;}
.y31_c01321{bottom:1237.245000px;}
.y2c_c01321{bottom:1238.115000px;}
.y2d_c01321{bottom:1239.840000px;}
.y2a_c01321{bottom:1240.710000px;}
.y2e_c01321{bottom:1242.435000px;}
.y2f_c01321{bottom:1243.290000px;}
.y30_c01321{bottom:1244.160000px;}
.y2b_c01321{bottom:1245.885000px;}
.y1c2_c01321{bottom:1246.755000px;}
.y1e_c01321{bottom:1255.395000px;}
.y1d_c01321{bottom:1257.120000px;}
.y23_c01321{bottom:1257.990000px;}
.y1f_c01321{bottom:1258.845000px;}
.y26_c01321{bottom:1259.715000px;}
.y20_c01321{bottom:1260.570000px;}
.y22_c01321{bottom:1262.310000px;}
.y24_c01321{bottom:1263.165000px;}
.y25_c01321{bottom:1264.035000px;}
.y14_c01321{bottom:1272.675000px;}
.y21_c01321{bottom:1274.400000px;}
.y1c_c01321{bottom:1277.850000px;}
.y13_c01321{bottom:1278.720000px;}
.y15_c01321{bottom:1279.590000px;}
.y16_c01321{bottom:1280.445000px;}
.y17_c01321{bottom:1281.315000px;}
.y18_c01321{bottom:1282.170000px;}
.y19_c01321{bottom:1283.040000px;}
.y1a_c01321{bottom:1283.910000px;}
.y1b_c01321{bottom:1284.765000px;}
.yc_c01321{bottom:1295.130000px;}
.yb_c01321{bottom:1296.000000px;}
.yf_c01321{bottom:1297.725000px;}
.y11_c01321{bottom:1298.595000px;}
.y12_c01321{bottom:1299.450000px;}
.yd_c01321{bottom:1300.320000px;}
.ye_c01321{bottom:1302.915000px;}
.y10_c01321{bottom:1304.640000px;}
.y4_c01321{bottom:1313.280000px;}
.y6_c01321{bottom:1316.730000px;}
.y3_c01321{bottom:1318.470000px;}
.y5_c01321{bottom:1319.325000px;}
.y8_c01321{bottom:1321.050000px;}
.y7_c01321{bottom:1321.920000px;}
.y9_c01321{bottom:1322.790000px;}
.ya_c01321{bottom:1324.515000px;}
.y1_c01321{bottom:1346.970000px;}
.y2_c01321{bottom:1347.840000px;}
.h1e_c01321{height:3.110063px;}
.h1f_c01321{height:5.399414px;}
.h1c_c01321{height:6.209326px;}
.h1d_c01321{height:9.340986px;}
.h15_c01321{height:12.418652px;}
.hc_c01321{height:15.550313px;}
.h14_c01321{height:18.681973px;}
.h1a_c01321{height:21.759639px;}
.h12_c01321{height:24.891299px;}
.h18_c01321{height:27.968965px;}
.h10_c01321{height:31.100625px;}
.h17_c01321{height:34.232285px;}
.hf_c01321{height:37.309951px;}
.h16_c01321{height:40.441611px;}
.h11_c01321{height:43.519277px;}
.hd_c01321{height:46.650937px;}
.h6_c01321{height:49.782598px;}
.h9_c01321{height:52.860264px;}
.h8_c01321{height:55.991924px;}
.h4_c01321{height:59.069590px;}
.h2_c01321{height:62.201250px;}
.h19_c01321{height:65.332910px;}
.h3_c01321{height:68.410576px;}
.h7_c01321{height:71.542236px;}
.he_c01321{height:74.619902px;}
.hb_c01321{height:77.751563px;}
.h13_c01321{height:80.883223px;}
.h1b_c01321{height:83.960889px;}
.h20_c01321{height:87.092549px;}
.ha_c01321{height:93.301875px;}
.h5_c01321{height:102.642861px;}
.h0_c01321{height:1509.405000px;}
.h1_c01321{height:1509.750000px;}
.w0_c01321{width:1079.130000px;}
.w1_c01321{width:1079.250000px;}
.x0_c01321{left:0.000000px;}
.x108_c01321{left:22.470000px;}
.x109_c01321{left:44.925000px;}
.x10a_c01321{left:56.160000px;}
.x10b_c01321{left:76.890000px;}
.x10c_c01321{left:91.590000px;}
.x10d_c01321{left:109.725000px;}
.x10e_c01321{left:156.390000px;}
.x101_c01321{left:210.810000px;}
.xc0_c01321{left:220.320000px;}
.x12_c01321{left:222.915000px;}
.x3_c01321{left:224.640000px;}
.xc1_c01321{left:226.365000px;}
.xe1_c01321{left:228.090000px;}
.xe8_c01321{left:230.685000px;}
.xed_c01321{left:233.280000px;}
.xf6_c01321{left:235.875000px;}
.x8d_c01321{left:241.920000px;}
.x4_c01321{left:244.515000px;}
.x94_c01321{left:247.965000px;}
.x6b_c01321{left:249.690000px;}
.x71_c01321{left:252.285000px;}
.xdc_c01321{left:254.880000px;}
.x7e_c01321{left:256.605000px;}
.xaa_c01321{left:258.330000px;}
.x8e_c01321{left:262.650000px;}
.x48_c01321{left:264.390000px;}
.x7f_c01321{left:266.970000px;}
.xbd_c01321{left:269.565000px;}
.xfb_c01321{left:271.290000px;}
.xbe_c01321{left:277.350000px;}
.x102_c01321{left:279.075000px;}
.xe2_c01321{left:280.800000px;}
.x1a_c01321{left:282.525000px;}
.x80_c01321{left:285.990000px;}
.xa4_c01321{left:289.440000px;}
.x33_c01321{left:291.165000px;}
.x72_c01321{left:295.485000px;}
.xb9_c01321{left:298.080000px;}
.x25_c01321{left:301.530000px;}
.x4e_c01321{left:304.995000px;}
.x6c_c01321{left:306.720000px;}
.xba_c01321{left:308.445000px;}
.x26_c01321{left:310.170000px;}
.x5_c01321{left:313.635000px;}
.x9f_c01321{left:315.360000px;}
.xd7_c01321{left:317.955000px;}
.x39_c01321{left:319.680000px;}
.x3f_c01321{left:321.405000px;}
.xf7_c01321{left:324.000000px;}
.x34_c01321{left:325.725000px;}
.xf8_c01321{left:328.320000px;}
.x40_c01321{left:330.915000px;}
.xab_c01321{left:333.510000px;}
.x99_c01321{left:335.235000px;}
.x95_c01321{left:337.830000px;}
.xcf_c01321{left:341.280000px;}
.xb4_c01321{left:343.875000px;}
.x3a_c01321{left:347.325000px;}
.x1_c01321{left:349.050000px;}
.x13_c01321{left:350.790000px;}
.xc5_c01321{left:354.240000px;}
.x1b_c01321{left:356.835000px;}
.x73_c01321{left:358.560000px;}
.x49_c01321{left:360.285000px;}
.x88_c01321{left:362.880000px;}
.x57_c01321{left:365.475000px;}
.xeb_c01321{left:367.200000px;}
.x74_c01321{left:368.925000px;}
.x27_c01321{left:370.650000px;}
.x41_c01321{left:372.390000px;}
.x58_c01321{left:374.970000px;}
.x78_c01321{left:381.885000px;}
.x81_c01321{left:386.205000px;}
.x14_c01321{left:388.800000px;}
.x2_c01321{left:390.525000px;}
.xbb_c01321{left:392.250000px;}
.xa0_c01321{left:394.845000px;}
.x6d_c01321{left:396.570000px;}
.x6_c01321{left:400.890000px;}
.x8f_c01321{left:402.630000px;}
.x61_c01321{left:404.355000px;}
.x9a_c01321{left:406.080000px;}
.x4f_c01321{left:407.805000px;}
.x65_c01321{left:410.400000px;}
.x3b_c01321{left:412.995000px;}
.xe9_c01321{left:414.720000px;}
.x82_c01321{left:416.445000px;}
.xcc_c01321{left:419.040000px;}
.x7_c01321{left:420.765000px;}
.x59_c01321{left:422.490000px;}
.xc6_c01321{left:424.230000px;}
.x15_c01321{left:425.955000px;}
.x28_c01321{left:435.450000px;}
.x50_c01321{left:438.045000px;}
.xd0_c01321{left:442.365000px;}
.xee_c01321{left:444.090000px;}
.xa1_c01321{left:445.830000px;}
.x1c_c01321{left:450.150000px;}
.xca_c01321{left:454.470000px;}
.x29_c01321{left:456.195000px;}
.x51_c01321{left:457.920000px;}
.xe3_c01321{left:459.645000px;}
.xc3_c01321{left:461.370000px;}
.x42_c01321{left:463.110000px;}
.x90_c01321{left:464.835000px;}
.x1d_c01321{left:467.430000px;}
.x5a_c01321{left:470.880000px;}
.x4a_c01321{left:472.605000px;}
.x43_c01321{left:474.330000px;}
.x66_c01321{left:476.070000px;}
.x8_c01321{left:478.650000px;}
.x75_c01321{left:482.115000px;}
.x96_c01321{left:483.840000px;}
.xdd_c01321{left:487.290000px;}
.x105_c01321{left:490.755000px;}
.x62_c01321{left:492.480000px;}
.xc7_c01321{left:494.205000px;}
.x1e_c01321{left:496.800000px;}
.xb0_c01321{left:499.395000px;}
.x103_c01321{left:501.990000px;}
.xa5_c01321{left:503.715000px;}
.x83_c01321{left:505.440000px;}
.xd5_c01321{left:508.890000px;}
.xf4_c01321{left:511.485000px;}
.xb5_c01321{left:514.080000px;}
.xbc_c01321{left:520.125000px;}
.xd8_c01321{left:525.315000px;}
.x2a_c01321{left:528.765000px;}
.x9_c01321{left:531.360000px;}
.x89_c01321{left:533.955000px;}
.xac_c01321{left:535.680000px;}
.x35_c01321{left:539.130000px;}
.x79_c01321{left:541.725000px;}
.x44_c01321{left:544.320000px;}
.x2b_c01321{left:546.915000px;}
.xa_c01321{left:549.510000px;}
.x63_c01321{left:551.235000px;}
.xad_c01321{left:552.960000px;}
.xb1_c01321{left:554.685000px;}
.xd1_c01321{left:556.410000px;}
.xde_c01321{left:558.150000px;}
.xe4_c01321{left:559.875000px;}
.xcd_c01321{left:562.470000px;}
.xb_c01321{left:565.920000px;}
.xb2_c01321{left:572.835000px;}
.xdf_c01321{left:575.430000px;}
.xf0_c01321{left:578.010000px;}
.xc_c01321{left:579.750000px;}
.xc8_c01321{left:581.475000px;}
.x2c_c01321{left:583.200000px;}
.x67_c01321{left:585.795000px;}
.x76_c01321{left:587.520000px;}
.xa2_c01321{left:590.970000px;}
.x2d_c01321{left:594.435000px;}
.x91_c01321{left:596.160000px;}
.xd_c01321{left:597.885000px;}
.x97_c01321{left:599.610000px;}
.x3c_c01321{left:601.350000px;}
.x52_c01321{left:603.075000px;}
.xd6_c01321{left:604.800000px;}
.x5b_c01321{left:606.525000px;}
.x36_c01321{left:608.250000px;}
.x2e_c01321{left:610.845000px;}
.x16_c01321{left:613.440000px;}
.xc2_c01321{left:616.035000px;}
.xf5_c01321{left:619.485000px;}
.x1f_c01321{left:621.210000px;}
.xf9_c01321{left:623.805000px;}
.xf1_c01321{left:626.400000px;}
.x6e_c01321{left:628.995000px;}
.x45_c01321{left:631.590000px;}
.x84_c01321{left:634.170000px;}
.xe5_c01321{left:635.910000px;}
.xa6_c01321{left:637.635000px;}
.x4b_c01321{left:639.360000px;}
.x46_c01321{left:641.085000px;}
.x5c_c01321{left:643.680000px;}
.x8a_c01321{left:646.275000px;}
.xf2_c01321{left:648.000000px;}
.xe_c01321{left:651.450000px;}
.xd9_c01321{left:653.190000px;}
.xae_c01321{left:655.770000px;}
.xfa_c01321{left:657.510000px;}
.x20_c01321{left:659.235000px;}
.x37_c01321{left:663.555000px;}
.x85_c01321{left:665.280000px;}
.x17_c01321{left:668.730000px;}
.x53_c01321{left:670.470000px;}
.x7a_c01321{left:673.920000px;}
.xfe_c01321{left:676.515000px;}
.xec_c01321{left:678.240000px;}
.x21_c01321{left:679.965000px;}
.xef_c01321{left:684.285000px;}
.x77_c01321{left:686.880000px;}
.xf_c01321{left:688.605000px;}
.x3d_c01321{left:690.330000px;}
.x6f_c01321{left:692.070000px;}
.x92_c01321{left:693.795000px;}
.x9b_c01321{left:699.840000px;}
.x2f_c01321{left:701.565000px;}
.xd2_c01321{left:704.160000px;}
.xe0_c01321{left:706.755000px;}
.xaf_c01321{left:712.800000px;}
.xd3_c01321{left:714.525000px;}
.x93_c01321{left:716.250000px;}
.xda_c01321{left:717.990000px;}
.x22_c01321{left:721.440000px;}
.xbf_c01321{left:723.165000px;}
.x64_c01321{left:727.485000px;}
.xb6_c01321{left:730.950000px;}
.xe6_c01321{left:733.530000px;}
.x4c_c01321{left:735.270000px;}
.x70_c01321{left:738.720000px;}
.x7b_c01321{left:740.445000px;}
.x18_c01321{left:743.040000px;}
.xc9_c01321{left:744.765000px;}
.x5d_c01321{left:746.490000px;}
.x30_c01321{left:748.230000px;}
.x54_c01321{left:750.810000px;}
.x5e_c01321{left:752.550000px;}
.xcb_c01321{left:754.275000px;}
.x8b_c01321{left:760.320000px;}
.x7c_c01321{left:762.915000px;}
.xea_c01321{left:764.640000px;}
.x9c_c01321{left:767.235000px;}
.x31_c01321{left:769.830000px;}
.x38_c01321{left:772.410000px;}
.x68_c01321{left:775.005000px;}
.xa7_c01321{left:777.600000px;}
.x32_c01321{left:780.195000px;}
.xff_c01321{left:781.920000px;}
.x5f_c01321{left:783.645000px;}
.x23_c01321{left:786.240000px;}
.xb7_c01321{left:788.835000px;}
.x10_c01321{left:791.430000px;}
.x24_c01321{left:793.155000px;}
.xb8_c01321{left:796.605000px;}
.xe7_c01321{left:798.330000px;}
.x106_c01321{left:800.070000px;}
.x11_c01321{left:801.795000px;}
.x3e_c01321{left:803.520000px;}
.x4d_c01321{left:805.245000px;}
.xf3_c01321{left:806.970000px;}
.x69_c01321{left:808.710000px;}
.x86_c01321{left:813.030000px;}
.xfc_c01321{left:814.755000px;}
.x47_c01321{left:816.480000px;}
.x8c_c01321{left:818.205000px;}
.x100_c01321{left:819.930000px;}
.x19_c01321{left:821.670000px;}
.x55_c01321{left:824.250000px;}
.xdb_c01321{left:826.845000px;}
.x87_c01321{left:829.440000px;}
.xc4_c01321{left:832.035000px;}
.xce_c01321{left:836.355000px;}
.x98_c01321{left:838.080000px;}
.xa8_c01321{left:840.675000px;}
.x104_c01321{left:844.125000px;}
.x60_c01321{left:846.720000px;}
.x6a_c01321{left:848.445000px;}
.xb3_c01321{left:851.040000px;}
.x7d_c01321{left:855.360000px;}
.x56_c01321{left:857.955000px;}
.xa3_c01321{left:864.000000px;}
.xd4_c01321{left:866.595000px;}
.x9d_c01321{left:868.320000px;}
.xa9_c01321{left:870.915000px;}
.x107_c01321{left:875.235000px;}
.xfd_c01321{left:876.960000px;}
.x9e_c01321{left:880.410000px;}
.x110_c01321{left:915.840000px;}
.x10f_c01321{left:954.720000px;}
@media print{
.v0_c01321{vertical-align:0.000000pt;}
.ls0_c01321{letter-spacing:0.000000pt;}
.ws1_c01321{word-spacing:0.000000pt;}
.ws0_c01321{word-spacing:19.249067pt;}
.fs1c_c01321{font-size:3.072000pt;}
.fs1d_c01321{font-size:5.333333pt;}
.fs1a_c01321{font-size:6.133333pt;}
.fs1b_c01321{font-size:9.226667pt;}
.fs13_c01321{font-size:12.266667pt;}
.fsa_c01321{font-size:15.360000pt;}
.fs12_c01321{font-size:18.453333pt;}
.fs18_c01321{font-size:21.493333pt;}
.fs10_c01321{font-size:24.586667pt;}
.fs16_c01321{font-size:27.626667pt;}
.fse_c01321{font-size:30.720000pt;}
.fs15_c01321{font-size:33.813333pt;}
.fsd_c01321{font-size:36.853333pt;}
.fs14_c01321{font-size:39.946667pt;}
.fsf_c01321{font-size:42.986667pt;}
.fsb_c01321{font-size:46.080000pt;}
.fs4_c01321{font-size:49.173333pt;}
.fs7_c01321{font-size:52.213333pt;}
.fs6_c01321{font-size:55.306667pt;}
.fs2_c01321{font-size:58.346667pt;}
.fs0_c01321{font-size:61.440000pt;}
.fs17_c01321{font-size:64.533333pt;}
.fs1_c01321{font-size:67.573333pt;}
.fs5_c01321{font-size:70.666667pt;}
.fsc_c01321{font-size:73.706667pt;}
.fs9_c01321{font-size:76.800000pt;}
.fs11_c01321{font-size:79.893333pt;}
.fs19_c01321{font-size:82.933333pt;}
.fs1e_c01321{font-size:86.026667pt;}
.fs8_c01321{font-size:92.160000pt;}
.fs3_c01321{font-size:101.386667pt;}
.y0_c01321{bottom:0.000000pt;}
.y1c0_c01321{bottom:168.186667pt;}
.y1b9_c01321{bottom:168.960000pt;}
.y1ba_c01321{bottom:169.733333pt;}
.y1bf_c01321{bottom:170.493333pt;}
.y1bd_c01321{bottom:171.266667pt;}
.y1bb_c01321{bottom:172.026667pt;}
.y1be_c01321{bottom:172.800000pt;}
.y1bc_c01321{bottom:175.106667pt;}
.y1c1_c01321{bottom:187.386667pt;}
.y1b5_c01321{bottom:188.933333pt;}
.y1b0_c01321{bottom:189.693333pt;}
.y1b8_c01321{bottom:190.466667pt;}
.y1b6_c01321{bottom:191.226667pt;}
.y1b3_c01321{bottom:192.000000pt;}
.y1b1_c01321{bottom:193.533333pt;}
.y1b2_c01321{bottom:194.306667pt;}
.y1b7_c01321{bottom:195.066667pt;}
.y1b4_c01321{bottom:195.840000pt;}
.y1aa_c01321{bottom:206.586667pt;}
.y1ac_c01321{bottom:207.360000pt;}
.y1ae_c01321{bottom:208.133333pt;}
.y1af_c01321{bottom:208.893333pt;}
.y1ab_c01321{bottom:209.666667pt;}
.y1a9_c01321{bottom:210.426667pt;}
.y1ad_c01321{bottom:211.973333pt;}
.y1a2_c01321{bottom:223.493333pt;}
.y1a4_c01321{bottom:225.786667pt;}
.y1a8_c01321{bottom:227.333333pt;}
.y1a6_c01321{bottom:228.093333pt;}
.y1a3_c01321{bottom:228.866667pt;}
.y1a5_c01321{bottom:230.400000pt;}
.y1a7_c01321{bottom:231.933333pt;}
.y1a1_c01321{bottom:238.080000pt;}
.y197_c01321{bottom:242.693333pt;}
.y198_c01321{bottom:243.453333pt;}
.y199_c01321{bottom:244.986667pt;}
.y19e_c01321{bottom:245.760000pt;}
.y1a0_c01321{bottom:246.533333pt;}
.y19b_c01321{bottom:247.293333pt;}
.y19a_c01321{bottom:248.066667pt;}
.y19c_c01321{bottom:248.826667pt;}
.y19d_c01321{bottom:249.600000pt;}
.y19f_c01321{bottom:253.440000pt;}
.y193_c01321{bottom:258.813333pt;}
.y194_c01321{bottom:259.586667pt;}
.y195_c01321{bottom:260.346667pt;}
.y196_c01321{bottom:261.893333pt;}
.y1c8_c01321{bottom:263.426667pt;}
.y18f_c01321{bottom:279.546667pt;}
.y192_c01321{bottom:280.320000pt;}
.y18d_c01321{bottom:281.093333pt;}
.y18c_c01321{bottom:282.626667pt;}
.y18e_c01321{bottom:283.386667pt;}
.y191_c01321{bottom:284.160000pt;}
.y190_c01321{bottom:284.933333pt;}
.y186_c01321{bottom:296.453333pt;}
.y187_c01321{bottom:297.213333pt;}
.y188_c01321{bottom:298.746667pt;}
.y18a_c01321{bottom:300.293333pt;}
.y189_c01321{bottom:301.053333pt;}
.y18b_c01321{bottom:302.586667pt;}
.y181_c01321{bottom:313.346667pt;}
.y184_c01321{bottom:314.106667pt;}
.y182_c01321{bottom:316.413333pt;}
.y183_c01321{bottom:317.186667pt;}
.y185_c01321{bottom:320.253333pt;}
.y17b_c01321{bottom:332.546667pt;}
.y17f_c01321{bottom:333.306667pt;}
.y17e_c01321{bottom:334.853333pt;}
.y180_c01321{bottom:335.613333pt;}
.y17c_c01321{bottom:337.146667pt;}
.y17d_c01321{bottom:337.920000pt;}
.y177_c01321{bottom:348.666667pt;}
.y175_c01321{bottom:350.213333pt;}
.y173_c01321{bottom:350.973333pt;}
.y171_c01321{bottom:351.746667pt;}
.y174_c01321{bottom:352.506667pt;}
.y17a_c01321{bottom:353.280000pt;}
.y178_c01321{bottom:354.053333pt;}
.y179_c01321{bottom:354.813333pt;}
.y176_c01321{bottom:355.586667pt;}
.y172_c01321{bottom:358.653333pt;}
.y16f_c01321{bottom:367.106667pt;}
.y16d_c01321{bottom:368.640000pt;}
.y16c_c01321{bottom:370.173333pt;}
.y170_c01321{bottom:370.946667pt;}
.y16b_c01321{bottom:372.480000pt;}
.y16e_c01321{bottom:373.253333pt;}
.y168_c01321{bottom:384.773333pt;}
.y169_c01321{bottom:385.533333pt;}
.y163_c01321{bottom:386.306667pt;}
.y16a_c01321{bottom:387.066667pt;}
.y164_c01321{bottom:387.840000pt;}
.y167_c01321{bottom:389.373333pt;}
.y162_c01321{bottom:390.146667pt;}
.y166_c01321{bottom:390.906667pt;}
.y165_c01321{bottom:391.680000pt;}
.y15f_c01321{bottom:403.200000pt;}
.y15d_c01321{bottom:403.973333pt;}
.y160_c01321{bottom:404.733333pt;}
.y161_c01321{bottom:408.573333pt;}
.y15e_c01321{bottom:409.346667pt;}
.y158_c01321{bottom:419.333333pt;}
.y15a_c01321{bottom:421.626667pt;}
.y159_c01321{bottom:422.400000pt;}
.y15c_c01321{bottom:423.173333pt;}
.y15b_c01321{bottom:424.706667pt;}
.y156_c01321{bottom:439.293333pt;}
.y152_c01321{bottom:440.066667pt;}
.y157_c01321{bottom:440.826667pt;}
.y153_c01321{bottom:441.600000pt;}
.y155_c01321{bottom:443.133333pt;}
.y154_c01321{bottom:444.666667pt;}
.y14a_c01321{bottom:452.346667pt;}
.y14d_c01321{bottom:453.893333pt;}
.y14b_c01321{bottom:454.653333pt;}
.y14c_c01321{bottom:455.426667pt;}
.y14e_c01321{bottom:456.186667pt;}
.y14f_c01321{bottom:456.960000pt;}
.y151_c01321{bottom:460.800000pt;}
.y150_c01321{bottom:461.573333pt;}
.y145_c01321{bottom:473.853333pt;}
.y142_c01321{bottom:474.626667pt;}
.y143_c01321{bottom:475.386667pt;}
.y144_c01321{bottom:476.160000pt;}
.y149_c01321{bottom:477.693333pt;}
.y147_c01321{bottom:478.466667pt;}
.y146_c01321{bottom:479.226667pt;}
.y148_c01321{bottom:480.000000pt;}
.y13d_c01321{bottom:493.053333pt;}
.y140_c01321{bottom:493.826667pt;}
.y13e_c01321{bottom:496.893333pt;}
.y13f_c01321{bottom:497.666667pt;}
.y141_c01321{bottom:498.426667pt;}
.y135_c01321{bottom:509.946667pt;}
.y137_c01321{bottom:510.720000pt;}
.y138_c01321{bottom:511.493333pt;}
.y136_c01321{bottom:512.253333pt;}
.y13a_c01321{bottom:513.786667pt;}
.y134_c01321{bottom:514.560000pt;}
.y13c_c01321{bottom:519.173333pt;}
.y13b_c01321{bottom:520.706667pt;}
.y139_c01321{bottom:526.080000pt;}
.y12f_c01321{bottom:528.386667pt;}
.y132_c01321{bottom:529.920000pt;}
.y12d_c01321{bottom:530.693333pt;}
.y133_c01321{bottom:531.453333pt;}
.y12e_c01321{bottom:532.226667pt;}
.y131_c01321{bottom:532.986667pt;}
.y130_c01321{bottom:533.760000pt;}
.y129_c01321{bottom:546.053333pt;}
.y126_c01321{bottom:547.586667pt;}
.y125_c01321{bottom:549.120000pt;}
.y124_c01321{bottom:549.893333pt;}
.y128_c01321{bottom:550.653333pt;}
.y127_c01321{bottom:551.426667pt;}
.y12a_c01321{bottom:552.186667pt;}
.y12b_c01321{bottom:552.960000pt;}
.y12c_c01321{bottom:560.640000pt;}
.y11c_c01321{bottom:562.946667pt;}
.y11d_c01321{bottom:563.706667pt;}
.y123_c01321{bottom:565.253333pt;}
.y122_c01321{bottom:566.013333pt;}
.y11f_c01321{bottom:567.546667pt;}
.y120_c01321{bottom:568.320000pt;}
.y121_c01321{bottom:569.853333pt;}
.y11e_c01321{bottom:571.386667pt;}
.y117_c01321{bottom:582.146667pt;}
.y11a_c01321{bottom:583.680000pt;}
.y116_c01321{bottom:584.453333pt;}
.y115_c01321{bottom:585.213333pt;}
.y118_c01321{bottom:586.746667pt;}
.y11b_c01321{bottom:588.293333pt;}
.y119_c01321{bottom:592.893333pt;}
.y111_c01321{bottom:599.040000pt;}
.y10d_c01321{bottom:599.813333pt;}
.y10e_c01321{bottom:600.573333pt;}
.y113_c01321{bottom:601.346667pt;}
.y1c7_c01321{bottom:602.106667pt;}
.y10c_c01321{bottom:602.880000pt;}
.y10f_c01321{bottom:603.653333pt;}
.y110_c01321{bottom:604.413333pt;}
.y112_c01321{bottom:605.186667pt;}
.y114_c01321{bottom:605.946667pt;}
.y1c6_c01321{bottom:613.626667pt;}
.y105_c01321{bottom:616.706667pt;}
.y109_c01321{bottom:617.466667pt;}
.y106_c01321{bottom:618.240000pt;}
.y10a_c01321{bottom:619.013333pt;}
.y108_c01321{bottom:619.773333pt;}
.y107_c01321{bottom:622.080000pt;}
.y10b_c01321{bottom:622.853333pt;}
.y100_c01321{bottom:634.373333pt;}
.yfd_c01321{bottom:635.133333pt;}
.yfe_c01321{bottom:635.906667pt;}
.y102_c01321{bottom:636.666667pt;}
.y101_c01321{bottom:637.440000pt;}
.y103_c01321{bottom:638.213333pt;}
.yfb_c01321{bottom:638.973333pt;}
.yfc_c01321{bottom:639.746667pt;}
.yff_c01321{bottom:640.506667pt;}
.y104_c01321{bottom:641.280000pt;}
.yf2_c01321{bottom:652.026667pt;}
.yf5_c01321{bottom:653.573333pt;}
.yf3_c01321{bottom:655.106667pt;}
.yf8_c01321{bottom:655.866667pt;}
.yf7_c01321{bottom:656.640000pt;}
.yf6_c01321{bottom:657.413333pt;}
.yf4_c01321{bottom:658.173333pt;}
.yf9_c01321{bottom:662.786667pt;}
.yfa_c01321{bottom:665.853333pt;}
.yef_c01321{bottom:670.466667pt;}
.yee_c01321{bottom:671.226667pt;}
.yf1_c01321{bottom:675.066667pt;}
.yf0_c01321{bottom:676.613333pt;}
.ye9_c01321{bottom:688.133333pt;}
.yeb_c01321{bottom:689.666667pt;}
.ye8_c01321{bottom:691.200000pt;}
.ye7_c01321{bottom:692.733333pt;}
.yea_c01321{bottom:693.506667pt;}
.yec_c01321{bottom:694.266667pt;}
.yed_c01321{bottom:695.040000pt;}
.ye2_c01321{bottom:705.026667pt;}
.ye6_c01321{bottom:708.093333pt;}
.ye5_c01321{bottom:709.626667pt;}
.ye4_c01321{bottom:710.400000pt;}
.ye3_c01321{bottom:711.173333pt;}
.ye1_c01321{bottom:721.146667pt;}
.ydb_c01321{bottom:727.293333pt;}
.ydc_c01321{bottom:728.066667pt;}
.ydd_c01321{bottom:728.826667pt;}
.ydf_c01321{bottom:729.600000pt;}
.ye0_c01321{bottom:730.373333pt;}
.yde_c01321{bottom:734.213333pt;}
.yd4_c01321{bottom:740.346667pt;}
.yd6_c01321{bottom:741.120000pt;}
.yd2_c01321{bottom:741.893333pt;}
.yd8_c01321{bottom:742.653333pt;}
.yd9_c01321{bottom:743.426667pt;}
.yd3_c01321{bottom:744.186667pt;}
.yd5_c01321{bottom:744.960000pt;}
.ycb_c01321{bottom:745.733333pt;}
.yc9_c01321{bottom:746.493333pt;}
.ycd_c01321{bottom:747.266667pt;}
.yd7_c01321{bottom:748.800000pt;}
.yda_c01321{bottom:750.333333pt;}
.yc8_c01321{bottom:751.106667pt;}
.yca_c01321{bottom:752.640000pt;}
.ycc_c01321{bottom:753.413333pt;}
.yce_c01321{bottom:754.173333pt;}
.yd0_c01321{bottom:754.946667pt;}
.ycf_c01321{bottom:755.706667pt;}
.yd1_c01321{bottom:756.480000pt;}
.yc2_c01321{bottom:758.013333pt;}
.yc1_c01321{bottom:759.546667pt;}
.yc3_c01321{bottom:760.320000pt;}
.yc6_c01321{bottom:761.093333pt;}
.yc4_c01321{bottom:761.853333pt;}
.yc5_c01321{bottom:762.626667pt;}
.yc0_c01321{bottom:763.386667pt;}
.yc7_c01321{bottom:768.000000pt;}
.yba_c01321{bottom:777.213333pt;}
.ybb_c01321{bottom:777.986667pt;}
.ybe_c01321{bottom:779.520000pt;}
.yb6_c01321{bottom:780.293333pt;}
.yb7_c01321{bottom:781.053333pt;}
.yb8_c01321{bottom:781.826667pt;}
.ybd_c01321{bottom:783.360000pt;}
.yb9_c01321{bottom:787.973333pt;}
.ybc_c01321{bottom:791.813333pt;}
.ybf_c01321{bottom:797.186667pt;}
.yb2_c01321{bottom:797.946667pt;}
.yb0_c01321{bottom:798.720000pt;}
.yb1_c01321{bottom:800.253333pt;}
.yb3_c01321{bottom:801.026667pt;}
.yb5_c01321{bottom:801.786667pt;}
.yb4_c01321{bottom:802.560000pt;}
.yaa_c01321{bottom:812.546667pt;}
.ya8_c01321{bottom:813.306667pt;}
.ya9_c01321{bottom:814.080000pt;}
.yad_c01321{bottom:815.613333pt;}
.yae_c01321{bottom:816.386667pt;}
.yab_c01321{bottom:817.920000pt;}
.yac_c01321{bottom:818.693333pt;}
.yaf_c01321{bottom:820.226667pt;}
.ya2_c01321{bottom:830.973333pt;}
.ya4_c01321{bottom:831.746667pt;}
.ya1_c01321{bottom:834.053333pt;}
.ya7_c01321{bottom:834.813333pt;}
.ya3_c01321{bottom:835.586667pt;}
.ya5_c01321{bottom:837.120000pt;}
.ya6_c01321{bottom:839.426667pt;}
.y9c_c01321{bottom:849.413333pt;}
.y98_c01321{bottom:850.946667pt;}
.y99_c01321{bottom:851.706667pt;}
.y9a_c01321{bottom:852.480000pt;}
.y9b_c01321{bottom:853.253333pt;}
.y9d_c01321{bottom:854.786667pt;}
.y9e_c01321{bottom:855.546667pt;}
.y9f_c01321{bottom:856.320000pt;}
.ya0_c01321{bottom:857.093333pt;}
.y91_c01321{bottom:864.000000pt;}
.y96_c01321{bottom:865.533333pt;}
.y93_c01321{bottom:866.306667pt;}
.y95_c01321{bottom:867.066667pt;}
.y90_c01321{bottom:869.373333pt;}
.y92_c01321{bottom:870.906667pt;}
.y97_c01321{bottom:873.986667pt;}
.y94_c01321{bottom:877.826667pt;}
.y8a_c01321{bottom:882.426667pt;}
.y88_c01321{bottom:883.200000pt;}
.y89_c01321{bottom:887.040000pt;}
.y8b_c01321{bottom:887.813333pt;}
.y8f_c01321{bottom:888.573333pt;}
.y8c_c01321{bottom:889.346667pt;}
.y8e_c01321{bottom:890.880000pt;}
.y8d_c01321{bottom:891.653333pt;}
.y1c9_c01321{bottom:894.720000pt;}
.y84_c01321{bottom:900.093333pt;}
.y82_c01321{bottom:902.400000pt;}
.y85_c01321{bottom:903.173333pt;}
.y80_c01321{bottom:903.933333pt;}
.y81_c01321{bottom:904.706667pt;}
.y83_c01321{bottom:905.466667pt;}
.y86_c01321{bottom:907.773333pt;}
.y87_c01321{bottom:908.546667pt;}
.y1c5_c01321{bottom:915.453333pt;}
.y77_c01321{bottom:917.760000pt;}
.y1c4_c01321{bottom:919.293333pt;}
.y7c_c01321{bottom:923.133333pt;}
.y79_c01321{bottom:923.906667pt;}
.y78_c01321{bottom:924.666667pt;}
.y7b_c01321{bottom:925.440000pt;}
.y7e_c01321{bottom:926.213333pt;}
.y7d_c01321{bottom:926.973333pt;}
.y7f_c01321{bottom:929.280000pt;}
.y7a_c01321{bottom:936.960000pt;}
.y74_c01321{bottom:937.733333pt;}
.y71_c01321{bottom:939.266667pt;}
.y6f_c01321{bottom:940.026667pt;}
.y70_c01321{bottom:940.800000pt;}
.y72_c01321{bottom:941.573333pt;}
.y73_c01321{bottom:942.333333pt;}
.y75_c01321{bottom:943.866667pt;}
.y76_c01321{bottom:944.640000pt;}
.y6b_c01321{bottom:954.626667pt;}
.y67_c01321{bottom:956.933333pt;}
.y68_c01321{bottom:957.693333pt;}
.y6a_c01321{bottom:958.466667pt;}
.y69_c01321{bottom:959.226667pt;}
.y6d_c01321{bottom:960.773333pt;}
.y6c_c01321{bottom:961.533333pt;}
.y6e_c01321{bottom:962.306667pt;}
.y60_c01321{bottom:972.293333pt;}
.y61_c01321{bottom:976.133333pt;}
.y62_c01321{bottom:977.666667pt;}
.y63_c01321{bottom:978.426667pt;}
.y64_c01321{bottom:979.200000pt;}
.y65_c01321{bottom:980.733333pt;}
.y66_c01321{bottom:983.040000pt;}
.y56_c01321{bottom:989.946667pt;}
.y59_c01321{bottom:990.720000pt;}
.y5b_c01321{bottom:992.253333pt;}
.y58_c01321{bottom:993.026667pt;}
.y57_c01321{bottom:993.786667pt;}
.y5f_c01321{bottom:994.560000pt;}
.y5a_c01321{bottom:995.333333pt;}
.y5c_c01321{bottom:996.866667pt;}
.y5d_c01321{bottom:997.626667pt;}
.y5e_c01321{bottom:998.400000pt;}
.y50_c01321{bottom:1007.613333pt;}
.y4e_c01321{bottom:1010.693333pt;}
.y4f_c01321{bottom:1012.226667pt;}
.y51_c01321{bottom:1012.986667pt;}
.y53_c01321{bottom:1013.760000pt;}
.y52_c01321{bottom:1014.533333pt;}
.y1c3_c01321{bottom:1016.066667pt;}
.y54_c01321{bottom:1016.826667pt;}
.y55_c01321{bottom:1019.906667pt;}
.y46_c01321{bottom:1026.053333pt;}
.y4d_c01321{bottom:1028.346667pt;}
.y45_c01321{bottom:1029.120000pt;}
.y47_c01321{bottom:1030.653333pt;}
.y48_c01321{bottom:1031.426667pt;}
.y49_c01321{bottom:1032.186667pt;}
.y4a_c01321{bottom:1033.733333pt;}
.y4b_c01321{bottom:1034.493333pt;}
.y4c_c01321{bottom:1036.026667pt;}
.y3f_c01321{bottom:1042.173333pt;}
.y40_c01321{bottom:1042.946667pt;}
.y42_c01321{bottom:1044.480000pt;}
.y41_c01321{bottom:1045.253333pt;}
.y43_c01321{bottom:1049.853333pt;}
.y44_c01321{bottom:1052.160000pt;}
.y3e_c01321{bottom:1062.906667pt;}
.y3c_c01321{bottom:1063.680000pt;}
.y3a_c01321{bottom:1065.213333pt;}
.y3b_c01321{bottom:1065.986667pt;}
.y3d_c01321{bottom:1067.520000pt;}
.y32_c01321{bottom:1077.506667pt;}
.y33_c01321{bottom:1079.040000pt;}
.y37_c01321{bottom:1079.813333pt;}
.y38_c01321{bottom:1081.346667pt;}
.y39_c01321{bottom:1082.106667pt;}
.y34_c01321{bottom:1082.880000pt;}
.y35_c01321{bottom:1084.413333pt;}
.y36_c01321{bottom:1085.186667pt;}
.y27_c01321{bottom:1095.933333pt;}
.y29_c01321{bottom:1096.706667pt;}
.y28_c01321{bottom:1098.240000pt;}
.y31_c01321{bottom:1099.773333pt;}
.y2c_c01321{bottom:1100.546667pt;}
.y2d_c01321{bottom:1102.080000pt;}
.y2a_c01321{bottom:1102.853333pt;}
.y2e_c01321{bottom:1104.386667pt;}
.y2f_c01321{bottom:1105.146667pt;}
.y30_c01321{bottom:1105.920000pt;}
.y2b_c01321{bottom:1107.453333pt;}
.y1c2_c01321{bottom:1108.226667pt;}
.y1e_c01321{bottom:1115.906667pt;}
.y1d_c01321{bottom:1117.440000pt;}
.y23_c01321{bottom:1118.213333pt;}
.y1f_c01321{bottom:1118.973333pt;}
.y26_c01321{bottom:1119.746667pt;}
.y20_c01321{bottom:1120.506667pt;}
.y22_c01321{bottom:1122.053333pt;}
.y24_c01321{bottom:1122.813333pt;}
.y25_c01321{bottom:1123.586667pt;}
.y14_c01321{bottom:1131.266667pt;}
.y21_c01321{bottom:1132.800000pt;}
.y1c_c01321{bottom:1135.866667pt;}
.y13_c01321{bottom:1136.640000pt;}
.y15_c01321{bottom:1137.413333pt;}
.y16_c01321{bottom:1138.173333pt;}
.y17_c01321{bottom:1138.946667pt;}
.y18_c01321{bottom:1139.706667pt;}
.y19_c01321{bottom:1140.480000pt;}
.y1a_c01321{bottom:1141.253333pt;}
.y1b_c01321{bottom:1142.013333pt;}
.yc_c01321{bottom:1151.226667pt;}
.yb_c01321{bottom:1152.000000pt;}
.yf_c01321{bottom:1153.533333pt;}
.y11_c01321{bottom:1154.306667pt;}
.y12_c01321{bottom:1155.066667pt;}
.yd_c01321{bottom:1155.840000pt;}
.ye_c01321{bottom:1158.146667pt;}
.y10_c01321{bottom:1159.680000pt;}
.y4_c01321{bottom:1167.360000pt;}
.y6_c01321{bottom:1170.426667pt;}
.y3_c01321{bottom:1171.973333pt;}
.y5_c01321{bottom:1172.733333pt;}
.y8_c01321{bottom:1174.266667pt;}
.y7_c01321{bottom:1175.040000pt;}
.y9_c01321{bottom:1175.813333pt;}
.ya_c01321{bottom:1177.346667pt;}
.y1_c01321{bottom:1197.306667pt;}
.y2_c01321{bottom:1198.080000pt;}
.h1e_c01321{height:2.764500pt;}
.h1f_c01321{height:4.799479pt;}
.h1c_c01321{height:5.519401pt;}
.h1d_c01321{height:8.303099pt;}
.h15_c01321{height:11.038802pt;}
.hc_c01321{height:13.822500pt;}
.h14_c01321{height:16.606198pt;}
.h1a_c01321{height:19.341901pt;}
.h12_c01321{height:22.125599pt;}
.h18_c01321{height:24.861302pt;}
.h10_c01321{height:27.645000pt;}
.h17_c01321{height:30.428698pt;}
.hf_c01321{height:33.164401pt;}
.h16_c01321{height:35.948099pt;}
.h11_c01321{height:38.683802pt;}
.hd_c01321{height:41.467500pt;}
.h6_c01321{height:44.251198pt;}
.h9_c01321{height:46.986901pt;}
.h8_c01321{height:49.770599pt;}
.h4_c01321{height:52.506302pt;}
.h2_c01321{height:55.290000pt;}
.h19_c01321{height:58.073698pt;}
.h3_c01321{height:60.809401pt;}
.h7_c01321{height:63.593099pt;}
.he_c01321{height:66.328802pt;}
.hb_c01321{height:69.112500pt;}
.h13_c01321{height:71.896198pt;}
.h1b_c01321{height:74.631901pt;}
.h20_c01321{height:77.415599pt;}
.ha_c01321{height:82.935000pt;}
.h5_c01321{height:91.238099pt;}
.h0_c01321{height:1341.693333pt;}
.h1_c01321{height:1342.000000pt;}
.w0_c01321{width:959.226667pt;}
.w1_c01321{width:959.333333pt;}
.x0_c01321{left:0.000000pt;}
.x108_c01321{left:19.973333pt;}
.x109_c01321{left:39.933333pt;}
.x10a_c01321{left:49.920000pt;}
.x10b_c01321{left:68.346667pt;}
.x10c_c01321{left:81.413333pt;}
.x10d_c01321{left:97.533333pt;}
.x10e_c01321{left:139.013333pt;}
.x101_c01321{left:187.386667pt;}
.xc0_c01321{left:195.840000pt;}
.x12_c01321{left:198.146667pt;}
.x3_c01321{left:199.680000pt;}
.xc1_c01321{left:201.213333pt;}
.xe1_c01321{left:202.746667pt;}
.xe8_c01321{left:205.053333pt;}
.xed_c01321{left:207.360000pt;}
.xf6_c01321{left:209.666667pt;}
.x8d_c01321{left:215.040000pt;}
.x4_c01321{left:217.346667pt;}
.x94_c01321{left:220.413333pt;}
.x6b_c01321{left:221.946667pt;}
.x71_c01321{left:224.253333pt;}
.xdc_c01321{left:226.560000pt;}
.x7e_c01321{left:228.093333pt;}
.xaa_c01321{left:229.626667pt;}
.x8e_c01321{left:233.466667pt;}
.x48_c01321{left:235.013333pt;}
.x7f_c01321{left:237.306667pt;}
.xbd_c01321{left:239.613333pt;}
.xfb_c01321{left:241.146667pt;}
.xbe_c01321{left:246.533333pt;}
.x102_c01321{left:248.066667pt;}
.xe2_c01321{left:249.600000pt;}
.x1a_c01321{left:251.133333pt;}
.x80_c01321{left:254.213333pt;}
.xa4_c01321{left:257.280000pt;}
.x33_c01321{left:258.813333pt;}
.x72_c01321{left:262.653333pt;}
.xb9_c01321{left:264.960000pt;}
.x25_c01321{left:268.026667pt;}
.x4e_c01321{left:271.106667pt;}
.x6c_c01321{left:272.640000pt;}
.xba_c01321{left:274.173333pt;}
.x26_c01321{left:275.706667pt;}
.x5_c01321{left:278.786667pt;}
.x9f_c01321{left:280.320000pt;}
.xd7_c01321{left:282.626667pt;}
.x39_c01321{left:284.160000pt;}
.x3f_c01321{left:285.693333pt;}
.xf7_c01321{left:288.000000pt;}
.x34_c01321{left:289.533333pt;}
.xf8_c01321{left:291.840000pt;}
.x40_c01321{left:294.146667pt;}
.xab_c01321{left:296.453333pt;}
.x99_c01321{left:297.986667pt;}
.x95_c01321{left:300.293333pt;}
.xcf_c01321{left:303.360000pt;}
.xb4_c01321{left:305.666667pt;}
.x3a_c01321{left:308.733333pt;}
.x1_c01321{left:310.266667pt;}
.x13_c01321{left:311.813333pt;}
.xc5_c01321{left:314.880000pt;}
.x1b_c01321{left:317.186667pt;}
.x73_c01321{left:318.720000pt;}
.x49_c01321{left:320.253333pt;}
.x88_c01321{left:322.560000pt;}
.x57_c01321{left:324.866667pt;}
.xeb_c01321{left:326.400000pt;}
.x74_c01321{left:327.933333pt;}
.x27_c01321{left:329.466667pt;}
.x41_c01321{left:331.013333pt;}
.x58_c01321{left:333.306667pt;}
.x78_c01321{left:339.453333pt;}
.x81_c01321{left:343.293333pt;}
.x14_c01321{left:345.600000pt;}
.x2_c01321{left:347.133333pt;}
.xbb_c01321{left:348.666667pt;}
.xa0_c01321{left:350.973333pt;}
.x6d_c01321{left:352.506667pt;}
.x6_c01321{left:356.346667pt;}
.x8f_c01321{left:357.893333pt;}
.x61_c01321{left:359.426667pt;}
.x9a_c01321{left:360.960000pt;}
.x4f_c01321{left:362.493333pt;}
.x65_c01321{left:364.800000pt;}
.x3b_c01321{left:367.106667pt;}
.xe9_c01321{left:368.640000pt;}
.x82_c01321{left:370.173333pt;}
.xcc_c01321{left:372.480000pt;}
.x7_c01321{left:374.013333pt;}
.x59_c01321{left:375.546667pt;}
.xc6_c01321{left:377.093333pt;}
.x15_c01321{left:378.626667pt;}
.x28_c01321{left:387.066667pt;}
.x50_c01321{left:389.373333pt;}
.xd0_c01321{left:393.213333pt;}
.xee_c01321{left:394.746667pt;}
.xa1_c01321{left:396.293333pt;}
.x1c_c01321{left:400.133333pt;}
.xca_c01321{left:403.973333pt;}
.x29_c01321{left:405.506667pt;}
.x51_c01321{left:407.040000pt;}
.xe3_c01321{left:408.573333pt;}
.xc3_c01321{left:410.106667pt;}
.x42_c01321{left:411.653333pt;}
.x90_c01321{left:413.186667pt;}
.x1d_c01321{left:415.493333pt;}
.x5a_c01321{left:418.560000pt;}
.x4a_c01321{left:420.093333pt;}
.x43_c01321{left:421.626667pt;}
.x66_c01321{left:423.173333pt;}
.x8_c01321{left:425.466667pt;}
.x75_c01321{left:428.546667pt;}
.x96_c01321{left:430.080000pt;}
.xdd_c01321{left:433.146667pt;}
.x105_c01321{left:436.226667pt;}
.x62_c01321{left:437.760000pt;}
.xc7_c01321{left:439.293333pt;}
.x1e_c01321{left:441.600000pt;}
.xb0_c01321{left:443.906667pt;}
.x103_c01321{left:446.213333pt;}
.xa5_c01321{left:447.746667pt;}
.x83_c01321{left:449.280000pt;}
.xd5_c01321{left:452.346667pt;}
.xf4_c01321{left:454.653333pt;}
.xb5_c01321{left:456.960000pt;}
.xbc_c01321{left:462.333333pt;}
.xd8_c01321{left:466.946667pt;}
.x2a_c01321{left:470.013333pt;}
.x9_c01321{left:472.320000pt;}
.x89_c01321{left:474.626667pt;}
.xac_c01321{left:476.160000pt;}
.x35_c01321{left:479.226667pt;}
.x79_c01321{left:481.533333pt;}
.x44_c01321{left:483.840000pt;}
.x2b_c01321{left:486.146667pt;}
.xa_c01321{left:488.453333pt;}
.x63_c01321{left:489.986667pt;}
.xad_c01321{left:491.520000pt;}
.xb1_c01321{left:493.053333pt;}
.xd1_c01321{left:494.586667pt;}
.xde_c01321{left:496.133333pt;}
.xe4_c01321{left:497.666667pt;}
.xcd_c01321{left:499.973333pt;}
.xb_c01321{left:503.040000pt;}
.xb2_c01321{left:509.186667pt;}
.xdf_c01321{left:511.493333pt;}
.xf0_c01321{left:513.786667pt;}
.xc_c01321{left:515.333333pt;}
.xc8_c01321{left:516.866667pt;}
.x2c_c01321{left:518.400000pt;}
.x67_c01321{left:520.706667pt;}
.x76_c01321{left:522.240000pt;}
.xa2_c01321{left:525.306667pt;}
.x2d_c01321{left:528.386667pt;}
.x91_c01321{left:529.920000pt;}
.xd_c01321{left:531.453333pt;}
.x97_c01321{left:532.986667pt;}
.x3c_c01321{left:534.533333pt;}
.x52_c01321{left:536.066667pt;}
.xd6_c01321{left:537.600000pt;}
.x5b_c01321{left:539.133333pt;}
.x36_c01321{left:540.666667pt;}
.x2e_c01321{left:542.973333pt;}
.x16_c01321{left:545.280000pt;}
.xc2_c01321{left:547.586667pt;}
.xf5_c01321{left:550.653333pt;}
.x1f_c01321{left:552.186667pt;}
.xf9_c01321{left:554.493333pt;}
.xf1_c01321{left:556.800000pt;}
.x6e_c01321{left:559.106667pt;}
.x45_c01321{left:561.413333pt;}
.x84_c01321{left:563.706667pt;}
.xe5_c01321{left:565.253333pt;}
.xa6_c01321{left:566.786667pt;}
.x4b_c01321{left:568.320000pt;}
.x46_c01321{left:569.853333pt;}
.x5c_c01321{left:572.160000pt;}
.x8a_c01321{left:574.466667pt;}
.xf2_c01321{left:576.000000pt;}
.xe_c01321{left:579.066667pt;}
.xd9_c01321{left:580.613333pt;}
.xae_c01321{left:582.906667pt;}
.xfa_c01321{left:584.453333pt;}
.x20_c01321{left:585.986667pt;}
.x37_c01321{left:589.826667pt;}
.x85_c01321{left:591.360000pt;}
.x17_c01321{left:594.426667pt;}
.x53_c01321{left:595.973333pt;}
.x7a_c01321{left:599.040000pt;}
.xfe_c01321{left:601.346667pt;}
.xec_c01321{left:602.880000pt;}
.x21_c01321{left:604.413333pt;}
.xef_c01321{left:608.253333pt;}
.x77_c01321{left:610.560000pt;}
.xf_c01321{left:612.093333pt;}
.x3d_c01321{left:613.626667pt;}
.x6f_c01321{left:615.173333pt;}
.x92_c01321{left:616.706667pt;}
.x9b_c01321{left:622.080000pt;}
.x2f_c01321{left:623.613333pt;}
.xd2_c01321{left:625.920000pt;}
.xe0_c01321{left:628.226667pt;}
.xaf_c01321{left:633.600000pt;}
.xd3_c01321{left:635.133333pt;}
.x93_c01321{left:636.666667pt;}
.xda_c01321{left:638.213333pt;}
.x22_c01321{left:641.280000pt;}
.xbf_c01321{left:642.813333pt;}
.x64_c01321{left:646.653333pt;}
.xb6_c01321{left:649.733333pt;}
.xe6_c01321{left:652.026667pt;}
.x4c_c01321{left:653.573333pt;}
.x70_c01321{left:656.640000pt;}
.x7b_c01321{left:658.173333pt;}
.x18_c01321{left:660.480000pt;}
.xc9_c01321{left:662.013333pt;}
.x5d_c01321{left:663.546667pt;}
.x30_c01321{left:665.093333pt;}
.x54_c01321{left:667.386667pt;}
.x5e_c01321{left:668.933333pt;}
.xcb_c01321{left:670.466667pt;}
.x8b_c01321{left:675.840000pt;}
.x7c_c01321{left:678.146667pt;}
.xea_c01321{left:679.680000pt;}
.x9c_c01321{left:681.986667pt;}
.x31_c01321{left:684.293333pt;}
.x38_c01321{left:686.586667pt;}
.x68_c01321{left:688.893333pt;}
.xa7_c01321{left:691.200000pt;}
.x32_c01321{left:693.506667pt;}
.xff_c01321{left:695.040000pt;}
.x5f_c01321{left:696.573333pt;}
.x23_c01321{left:698.880000pt;}
.xb7_c01321{left:701.186667pt;}
.x10_c01321{left:703.493333pt;}
.x24_c01321{left:705.026667pt;}
.xb8_c01321{left:708.093333pt;}
.xe7_c01321{left:709.626667pt;}
.x106_c01321{left:711.173333pt;}
.x11_c01321{left:712.706667pt;}
.x3e_c01321{left:714.240000pt;}
.x4d_c01321{left:715.773333pt;}
.xf3_c01321{left:717.306667pt;}
.x69_c01321{left:718.853333pt;}
.x86_c01321{left:722.693333pt;}
.xfc_c01321{left:724.226667pt;}
.x47_c01321{left:725.760000pt;}
.x8c_c01321{left:727.293333pt;}
.x100_c01321{left:728.826667pt;}
.x19_c01321{left:730.373333pt;}
.x55_c01321{left:732.666667pt;}
.xdb_c01321{left:734.973333pt;}
.x87_c01321{left:737.280000pt;}
.xc4_c01321{left:739.586667pt;}
.xce_c01321{left:743.426667pt;}
.x98_c01321{left:744.960000pt;}
.xa8_c01321{left:747.266667pt;}
.x104_c01321{left:750.333333pt;}
.x60_c01321{left:752.640000pt;}
.x6a_c01321{left:754.173333pt;}
.xb3_c01321{left:756.480000pt;}
.x7d_c01321{left:760.320000pt;}
.x56_c01321{left:762.626667pt;}
.xa3_c01321{left:768.000000pt;}
.xd4_c01321{left:770.306667pt;}
.x9d_c01321{left:771.840000pt;}
.xa9_c01321{left:774.146667pt;}
.x107_c01321{left:777.986667pt;}
.xfd_c01321{left:779.520000pt;}
.x9e_c01321{left:782.586667pt;}
.x110_c01321{left:814.080000pt;}
.x10f_c01321{left:848.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_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_1e26647995f63844a3824d6f.woff2')format("woff");}.ff1_c01322{font-family:ff1_c01322;line-height:1.109863;font-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_c01322{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01322{transform:matrix(0.014500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.014500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.014500,0.000000,0.000000,0.250000,0,0);}
.mb3_c01322{transform:matrix(0.022725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022725,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01322{transform:matrix(0.023750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023750,0.000000,0.000000,0.250000,0,0);}
.m1be_c01322{transform:matrix(0.069250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069250,0.000000,0.000000,0.250000,0,0);}
.m16c_c01322{transform:matrix(0.084400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084400,0.000000,0.000000,0.250000,0,0);}
.m172_c01322{transform:matrix(0.085650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085650,0.000000,0.000000,0.250000,0,0);}
.m167_c01322{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.m100_c01322{transform:matrix(0.102725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102725,0.000000,0.000000,0.250000,0,0);}
.mc1_c01322{transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01322{transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);}
.m18f_c01322{transform:matrix(0.108575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108575,0.000000,0.000000,0.250000,0,0);}
.m70_c01322{transform:matrix(0.110900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110900,0.000000,0.000000,0.250000,0,0);}
.m8f_c01322{transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112550,0.000000,0.000000,0.250000,0,0);}
.m153_c01322{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m4f_c01322{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);}
.m1a2_c01322{transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01322{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m19a_c01322{transform:matrix(0.114350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114350,0.000000,0.000000,0.250000,0,0);}
.m183_c01322{transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);}
.mf6_c01322{transform:matrix(0.116325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116325,0.000000,0.000000,0.250000,0,0);}
.m6b_c01322{transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117775,0.000000,0.000000,0.250000,0,0);}
.m3c_c01322{transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);}
.m53_c01322{transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121125,0.000000,0.000000,0.250000,0,0);}
.m144_c01322{transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121150,0.000000,0.000000,0.250000,0,0);}
.m166_c01322{transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);}
.ma0_c01322{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);}
.m170_c01322{transform:matrix(0.122375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122375,0.000000,0.000000,0.250000,0,0);}
.mc2_c01322{transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122750,0.000000,0.000000,0.250000,0,0);}
.m16b_c01322{transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123125,0.000000,0.000000,0.250000,0,0);}
.m4b_c01322{transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123675,0.000000,0.000000,0.250000,0,0);}
.m16_c01322{transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124400,0.000000,0.000000,0.250000,0,0);}
.mbd_c01322{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m9b_c01322{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m142_c01322{transform:matrix(0.125775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125775,0.000000,0.000000,0.250000,0,0);}
.m11a_c01322{transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126575,0.000000,0.000000,0.250000,0,0);}
.m10b_c01322{transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127625,0.000000,0.000000,0.250000,0,0);}
.m51_c01322{transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128275,0.000000,0.000000,0.250000,0,0);}
.m123_c01322{transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);}
.m19c_c01322{transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128650,0.000000,0.000000,0.250000,0,0);}
.md3_c01322{transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128700,0.000000,0.000000,0.250000,0,0);}
.m13a_c01322{transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128975,0.000000,0.000000,0.250000,0,0);}
.m148_c01322{transform:matrix(0.129175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129175,0.000000,0.000000,0.250000,0,0);}
.me9_c01322{transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);}
.md2_c01322{transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);}
.mc9_c01322{transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130000,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01322{transform:matrix(0.131025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131025,0.000000,0.000000,0.250000,0,0);}
.m3f_c01322{transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);}
.m8d_c01322{transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131250,0.000000,0.000000,0.250000,0,0);}
.mbf_c01322{transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131425,0.000000,0.000000,0.250000,0,0);}
.m17d_c01322{transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131575,0.000000,0.000000,0.250000,0,0);}
.mdb_c01322{transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131750,0.000000,0.000000,0.250000,0,0);}
.m27_c01322{transform:matrix(0.131800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131800,0.000000,0.000000,0.250000,0,0);}
.m102_c01322{transform:matrix(0.132925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132925,0.000000,0.000000,0.250000,0,0);}
.m147_c01322{transform:matrix(0.133675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133675,0.000000,0.000000,0.250000,0,0);}
.m67_c01322{transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01322{transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);}
.m63_c01322{transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134325,0.000000,0.000000,0.250000,0,0);}
.m19b_c01322{transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);}
.m146_c01322{transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135125,0.000000,0.000000,0.250000,0,0);}
.md8_c01322{transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135325,0.000000,0.000000,0.250000,0,0);}
.mb8_c01322{transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135700,0.000000,0.000000,0.250000,0,0);}
.me0_c01322{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);}
.mc6_c01322{transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);}
.mfc_c01322{transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);}
.mec_c01322{transform:matrix(0.136300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136300,0.000000,0.000000,0.250000,0,0);}
.m16f_c01322{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m19d_c01322{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.m37_c01322{transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136725,0.000000,0.000000,0.250000,0,0);}
.m120_c01322{transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);}
.m28_c01322{transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137000,0.000000,0.000000,0.250000,0,0);}
.m19f_c01322{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.m10c_c01322{transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);}
.m1f_c01322{transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137775,0.000000,0.000000,0.250000,0,0);}
.m26_c01322{transform:matrix(0.138100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138100,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01322{transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138700,0.000000,0.000000,0.250000,0,0);}
.m8e_c01322{transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139225,0.000000,0.000000,0.250000,0,0);}
.m16e_c01322{transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139800,0.000000,0.000000,0.250000,0,0);}
.m1d_c01322{transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);}
.m1e_c01322{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m17_c01322{transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);}
.m186_c01322{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m8a_c01322{transform:matrix(0.140800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140800,0.000000,0.000000,0.250000,0,0);}
.m32_c01322{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m194_c01322{transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);}
.m69_c01322{transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);}
.mcf_c01322{transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);}
.m58_c01322{transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);}
.m17a_c01322{transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);}
.md9_c01322{transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01322{transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);}
.me1_c01322{transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147575,0.000000,0.000000,0.250000,0,0);}
.mc5_c01322{transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);}
.m12b_c01322{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);}
.m126_c01322{transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148125,0.000000,0.000000,0.250000,0,0);}
.md0_c01322{transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);}
.m160_c01322{transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);}
.m149_c01322{transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);}
.m3d_c01322{transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149300,0.000000,0.000000,0.250000,0,0);}
.m30_c01322{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);}
.m190_c01322{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.me6_c01322{transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);}
.m40_c01322{transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);}
.m1c_c01322{transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);}
.m62_c01322{transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);}
.mf4_c01322{transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);}
.m188_c01322{transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151100,0.000000,0.000000,0.250000,0,0);}
.m122_c01322{transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);}
.m42_c01322{transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152600,0.000000,0.000000,0.250000,0,0);}
.m4a_c01322{transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);}
.m9_c01322{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);}
.m16d_c01322{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.mce_c01322{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01322{transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157175,0.000000,0.000000,0.250000,0,0);}
.mc7_c01322{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);}
.m176_c01322{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);}
.m12c_c01322{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m4_c01322{transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);}
.m16a_c01322{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);}
.m128_c01322{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m18b_c01322{transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);}
.m106_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);}
.m114_c01322{transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);}
.m187_c01322{transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161825,0.000000,0.000000,0.250000,0,0);}
.m61_c01322{transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);}
.m9f_c01322{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.me8_c01322{transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);}
.m7f_c01322{transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163725,0.000000,0.000000,0.250000,0,0);}
.m18e_c01322{transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);}
.m14e_c01322{transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);}
.m196_c01322{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m109_c01322{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.m20_c01322{transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165325,0.000000,0.000000,0.250000,0,0);}
.mc0_c01322{transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165525,0.000000,0.000000,0.250000,0,0);}
.m92_c01322{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);}
.med_c01322{transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01322{transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166450,0.000000,0.000000,0.250000,0,0);}
.mda_c01322{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m121_c01322{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.m11f_c01322{transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);}
.m1b_c01322{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);}
.m14f_c01322{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m125_c01322{transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168475,0.000000,0.000000,0.250000,0,0);}
.m18c_c01322{transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168600,0.000000,0.000000,0.250000,0,0);}
.ma2_c01322{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01322{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);}
.m197_c01322{transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01322{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.m103_c01322{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.m127_c01322{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);}
.mc8_c01322{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);}
.m17b_c01322{transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);}
.m79_c01322{transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171425,0.000000,0.000000,0.250000,0,0);}
.m95_c01322{transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);}
.m117_c01322{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m83_c01322{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01322{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.m191_c01322{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m11e_c01322{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m15d_c01322{transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173375,0.000000,0.000000,0.250000,0,0);}
.m10a_c01322{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);}
.m8_c01322{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.m9e_c01322{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m84_c01322{transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174275,0.000000,0.000000,0.250000,0,0);}
.m180_c01322{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.m15e_c01322{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);}
.m105_c01322{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);}
.m14a_c01322{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m168_c01322{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01322{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.md1_c01322{transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176825,0.000000,0.000000,0.250000,0,0);}
.m108_c01322{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.m143_c01322{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);}
.m1aa_c01322{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.ma7_c01322{transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);}
.me7_c01322{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);}
.m41_c01322{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);}
.m1a4_c01322{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m6_c01322{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.m101_c01322{transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);}
.m18a_c01322{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01322{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);}
.m177_c01322{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.mdf_c01322{transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183650,0.000000,0.000000,0.250000,0,0);}
.m13d_c01322{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.m12d_c01322{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.ma6_c01322{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);}
.m104_c01322{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);}
.m17f_c01322{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.m189_c01322{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);}
.m157_c01322{transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);}
.m10e_c01322{transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185075,0.000000,0.000000,0.250000,0,0);}
.m64_c01322{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);}
.m68_c01322{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m39_c01322{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.mb9_c01322{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);}
.m7c_c01322{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);}
.m1a9_c01322{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m35_c01322{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m145_c01322{transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);}
.m116_c01322{transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189100,0.000000,0.000000,0.250000,0,0);}
.m112_c01322{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01322{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.m174_c01322{transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);}
.m13b_c01322{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m178_c01322{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01322{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);}
.m164_c01322{transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190700,0.000000,0.000000,0.250000,0,0);}
.m163_c01322{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01322{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);}
.md_c01322{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.m3_c01322{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.m54_c01322{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.mde_c01322{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);}
.ma8_c01322{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.m82_c01322{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.m5_c01322{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m136_c01322{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);}
.m1a0_c01322{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m15a_c01322{transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);}
.m15c_c01322{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);}
.meb_c01322{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);}
.mae_c01322{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m85_c01322{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.m24_c01322{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.mf8_c01322{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m12f_c01322{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.m131_c01322{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);}
.ma3_c01322{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);}
.m13e_c01322{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.m182_c01322{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m13_c01322{transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198800,0.000000,0.000000,0.250000,0,0);}
.m192_c01322{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.m19e_c01322{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);}
.m195_c01322{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);}
.m13f_c01322{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);}
.m11_c01322{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);}
.m185_c01322{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);}
.mdc_c01322{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.m119_c01322{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);}
.m31_c01322{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);}
.mbe_c01322{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);}
.m66_c01322{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m135_c01322{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01322{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);}
.m179_c01322{transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);}
.m12a_c01322{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);}
.m107_c01322{transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01322{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);}
.m1a7_c01322{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);}
.m6d_c01322{transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);}
.mb7_c01322{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);}
.m22_c01322{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);}
.m150_c01322{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.mca_c01322{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);}
.m17e_c01322{transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206250,0.000000,0.000000,0.250000,0,0);}
.mf1_c01322{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m6c_c01322{transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206500,0.000000,0.000000,0.250000,0,0);}
.m162_c01322{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.m97_c01322{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.mf3_c01322{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);}
.mac_c01322{transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);}
.mfd_c01322{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.mcd_c01322{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);}
.m198_c01322{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m1a_c01322{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);}
.m3e_c01322{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mcc_c01322{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);}
.m175_c01322{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);}
.m15f_c01322{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m133_c01322{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.ma4_c01322{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);}
.m1ab_c01322{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.m158_c01322{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);}
.m96_c01322{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.mab_c01322{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.m111_c01322{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);}
.m5d_c01322{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m34_c01322{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m184_c01322{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);}
.m78_c01322{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m129_c01322{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);}
.mfa_c01322{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.mff_c01322{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.maa_c01322{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);}
.mf7_c01322{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);}
.me_c01322{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);}
.mad_c01322{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);}
.mef_c01322{transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);}
.m52_c01322{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);}
.m5c_c01322{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.m132_c01322{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01322{transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);}
.m14d_c01322{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.mcb_c01322{transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218325,0.000000,0.000000,0.250000,0,0);}
.m139_c01322{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.mb4_c01322{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);}
.m7e_c01322{transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);}
.m15_c01322{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m118_c01322{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);}
.mee_c01322{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.m193_c01322{transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);}
.m21_c01322{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.maf_c01322{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);}
.m50_c01322{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.m47_c01322{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);}
.m173_c01322{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m140_c01322{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m113_c01322{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);}
.m89_c01322{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);}
.mf_c01322{transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226750,0.000000,0.000000,0.250000,0,0);}
.mbb_c01322{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);}
.md7_c01322{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m11b_c01322{transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);}
.m75_c01322{transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);}
.m49_c01322{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m130_c01322{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);}
.m4e_c01322{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.m18_c01322{transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);}
.m6a_c01322{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.m72_c01322{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);}
.mdd_c01322{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);}
.m87_c01322{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);}
.m17c_c01322{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);}
.m77_c01322{transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233250,0.000000,0.000000,0.250000,0,0);}
.ma9_c01322{transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);}
.m99_c01322{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);}
.m14c_c01322{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.mfb_c01322{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m55_c01322{transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);}
.ma1_c01322{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m0_c01322{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);}
.ma5_c01322{transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);}
.m18d_c01322{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m165_c01322{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);}
.m199_c01322{transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);}
.m43_c01322{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m2_c01322{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m181_c01322{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);}
.m91_c01322{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);}
.m98_c01322{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);}
.m1a6_c01322{transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);}
.m14b_c01322{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m115_c01322{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);}
.m15b_c01322{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);}
.m74_c01322{transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242350,0.000000,0.000000,0.250000,0,0);}
.m2f_c01322{transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);}
.m9c_c01322{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);}
.m151_c01322{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m169_c01322{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);}
.m11c_c01322{transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244050,0.000000,0.000000,0.250000,0,0);}
.m161_c01322{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);}
.m1af_c01322{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);}
.mc3_c01322{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.mea_c01322{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);}
.m10_c01322{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);}
.mf9_c01322{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.md6_c01322{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);}
.m141_c01322{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);}
.m12e_c01322{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m7b_c01322{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.mba_c01322{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);}
.m23_c01322{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);}
.m6f_c01322{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m57_c01322{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);}
.m29_c01322{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);}
.m5e_c01322{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);}
.m71_c01322{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);}
.m7_c01322{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c01322{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01322{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m81_c01322{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);}
.ma_c01322{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01322{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);}
.m1_c01322{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);}
.mb_c01322{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01322{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);}
.m25_c01322{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c01322{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01322{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);}
.m4d_c01322{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m45_c01322{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);}
.m10d_c01322{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);}
.m8b_c01322{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01322{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m46_c01322{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);}
.m2e_c01322{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01322{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m14_c01322{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);}
.mb5_c01322{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m93_c01322{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01322{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m86_c01322{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md4_c01322{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m110_c01322{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.me5_c01322{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m154_c01322{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01322{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);}
.m5f_c01322{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10f_c01322{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m9d_c01322{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mf0_c01322{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);}
.m36_c01322{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.me2_c01322{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m60_c01322{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);}
.m80_c01322{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01322{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf2_c01322{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m134_c01322{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mfe_c01322{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);}
.m90_c01322{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01322{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);}
.m33_c01322{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m38_c01322{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m56_c01322{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m156_c01322{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m94_c01322{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);}
.m138_c01322{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);}
.m124_c01322{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);}
.m1ae_c01322{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mc4_c01322{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);}
.m44_c01322{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01322{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01322{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m73_c01322{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.me4_c01322{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mb0_c01322{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01322{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m48_c01322{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m137_c01322{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m159_c01322{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m13c_c01322{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.md5_c01322{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);}
.m59_c01322{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m88_c01322{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mbc_c01322{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);}
.m76_c01322{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01322{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01322{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m155_c01322{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m171_c01322{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01322{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m9a_c01322{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01322{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.me3_c01322{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m65_c01322{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m11d_c01322{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mf5_c01322{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01322{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m152_c01322{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01322{transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);}
.v3_c01322{vertical-align:-6.960000px;}
.v2_c01322{vertical-align:-3.420000px;}
.v0_c01322{vertical-align:0.000000px;}
.v1_c01322{vertical-align:3.480000px;}
.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;}
}
.ws1_c01322{word-spacing:-17.663100px;}
.ws2_c01322{word-spacing:-8.871000px;}
.ws0_c01322{word-spacing:-6.212580px;}
.ws3_c01322{word-spacing:0.000000px;}
.fc0_c01322{color:transparent;}
.fsc_c01322{font-size:3.456000px;}
.fs1a_c01322{font-size:6.000000px;}
.fs12_c01322{font-size:6.900000px;}
.fs15_c01322{font-size:10.380000px;}
.fs1b_c01322{font-size:13.800000px;}
.fs14_c01322{font-size:17.280000px;}
.fsf_c01322{font-size:20.760000px;}
.fs19_c01322{font-size:24.180000px;}
.fs17_c01322{font-size:27.660000px;}
.fs1c_c01322{font-size:31.080000px;}
.fs18_c01322{font-size:34.560000px;}
.fs10_c01322{font-size:38.040000px;}
.fs11_c01322{font-size:41.460000px;}
.fs16_c01322{font-size:44.940000px;}
.fs6_c01322{font-size:48.360000px;}
.fs7_c01322{font-size:51.840000px;}
.fs2_c01322{font-size:55.320000px;}
.fs1_c01322{font-size:58.740000px;}
.fs0_c01322{font-size:62.220000px;}
.fs3_c01322{font-size:65.640000px;}
.fs9_c01322{font-size:69.120000px;}
.fsa_c01322{font-size:72.600000px;}
.fs5_c01322{font-size:76.020000px;}
.fsb_c01322{font-size:79.500000px;}
.fs4_c01322{font-size:82.920000px;}
.fsd_c01322{font-size:86.400000px;}
.fs13_c01322{font-size:89.880000px;}
.fse_c01322{font-size:93.300000px;}
.fs8_c01322{font-size:96.780000px;}
.fs1e_c01322{font-size:100.200000px;}
.fs1d_c01322{font-size:103.680000px;}
.fs22_c01322{font-size:107.160000px;}
.fs1f_c01322{font-size:114.060000px;}
.fs24_c01322{font-size:131.340000px;}
.fs23_c01322{font-size:134.760000px;}
.fs20_c01322{font-size:138.240000px;}
.fs21_c01322{font-size:141.720000px;}
.y0_c01322{bottom:0.000000px;}
.y1fd_c01322{bottom:179.715000px;}
.y1fc_c01322{bottom:180.570000px;}
.y1fb_c01322{bottom:185.760000px;}
.y1fa_c01322{bottom:188.355000px;}
.y1f9_c01322{bottom:190.950000px;}
.y1f8_c01322{bottom:192.675000px;}
.y1f5_c01322{bottom:205.635000px;}
.y1f6_c01322{bottom:206.490000px;}
.y1f3_c01322{bottom:209.085000px;}
.y1f7_c01322{bottom:209.955000px;}
.y1f4_c01322{bottom:210.810000px;}
.y1f2_c01322{bottom:212.550000px;}
.y20d_c01322{bottom:213.405000px;}
.y1f1_c01322{bottom:215.130000px;}
.y1f0_c01322{bottom:216.870000px;}
.y1ef_c01322{bottom:219.450000px;}
.y1ed_c01322{bottom:224.640000px;}
.y1ea_c01322{bottom:228.960000px;}
.y1ee_c01322{bottom:230.685000px;}
.y1e8_c01322{bottom:232.410000px;}
.y1ec_c01322{bottom:233.280000px;}
.y1eb_c01322{bottom:234.150000px;}
.y1e9_c01322{bottom:235.005000px;}
.y1e6_c01322{bottom:244.515000px;}
.y1e5_c01322{bottom:246.240000px;}
.y1e4_c01322{bottom:247.110000px;}
.y1e2_c01322{bottom:250.560000px;}
.y1e1_c01322{bottom:251.430000px;}
.y1e3_c01322{bottom:253.155000px;}
.y1df_c01322{bottom:254.010000px;}
.y1de_c01322{bottom:254.880000px;}
.y1e0_c01322{bottom:256.605000px;}
.y1e7_c01322{bottom:259.200000px;}
.y20c_c01322{bottom:264.390000px;}
.y1dd_c01322{bottom:265.245000px;}
.y1db_c01322{bottom:266.115000px;}
.y1dc_c01322{bottom:267.840000px;}
.y1da_c01322{bottom:268.710000px;}
.y1d9_c01322{bottom:270.435000px;}
.y1d8_c01322{bottom:273.885000px;}
.y1d7_c01322{bottom:277.350000px;}
.y1d6_c01322{bottom:279.075000px;}
.y1d5_c01322{bottom:287.715000px;}
.y1d4_c01322{bottom:291.165000px;}
.y1d2_c01322{bottom:292.890000px;}
.y1d1_c01322{bottom:293.760000px;}
.y1d3_c01322{bottom:298.080000px;}
.y1cf_c01322{bottom:306.720000px;}
.y1ce_c01322{bottom:308.445000px;}
.y1cd_c01322{bottom:309.315000px;}
.y1cb_c01322{bottom:310.170000px;}
.y1d0_c01322{bottom:311.040000px;}
.y1c8_c01322{bottom:312.765000px;}
.y1c7_c01322{bottom:313.635000px;}
.y1ca_c01322{bottom:316.230000px;}
.y1c9_c01322{bottom:317.955000px;}
.y1cc_c01322{bottom:326.595000px;}
.y1c6_c01322{bottom:327.450000px;}
.y1c4_c01322{bottom:328.320000px;}
.y1c3_c01322{bottom:330.915000px;}
.y1c1_c01322{bottom:331.770000px;}
.y1c5_c01322{bottom:332.640000px;}
.y1c0_c01322{bottom:335.235000px;}
.y1be_c01322{bottom:336.090000px;}
.y1c2_c01322{bottom:337.830000px;}
.y1bf_c01322{bottom:338.685000px;}
.y1bd_c01322{bottom:345.600000px;}
.y1bc_c01322{bottom:349.920000px;}
.y1b8_c01322{bottom:353.370000px;}
.y1b9_c01322{bottom:354.240000px;}
.y1bb_c01322{bottom:355.965000px;}
.y1ba_c01322{bottom:356.835000px;}
.y1b7_c01322{bottom:359.430000px;}
.y1b6_c01322{bottom:360.285000px;}
.y1b3_c01322{bottom:368.070000px;}
.y1b1_c01322{bottom:369.795000px;}
.y1b5_c01322{bottom:371.520000px;}
.y1ad_c01322{bottom:372.390000px;}
.y1b4_c01322{bottom:373.245000px;}
.y1b2_c01322{bottom:374.115000px;}
.y1ae_c01322{bottom:374.970000px;}
.y1b0_c01322{bottom:377.565000px;}
.y1af_c01322{bottom:378.435000px;}
.y1ac_c01322{bottom:381.030000px;}
.y1ab_c01322{bottom:387.075000px;}
.y1aa_c01322{bottom:387.930000px;}
.y1a4_c01322{bottom:393.120000px;}
.y1a7_c01322{bottom:393.990000px;}
.y1a9_c01322{bottom:397.440000px;}
.y1a8_c01322{bottom:398.310000px;}
.y19f_c01322{bottom:399.165000px;}
.y1a3_c01322{bottom:403.485000px;}
.y1a6_c01322{bottom:406.950000px;}
.y19e_c01322{bottom:407.805000px;}
.y1a0_c01322{bottom:408.675000px;}
.y1a1_c01322{bottom:410.400000px;}
.y1a5_c01322{bottom:412.125000px;}
.y1a2_c01322{bottom:415.590000px;}
.y19d_c01322{bottom:427.680000px;}
.y19c_c01322{bottom:429.405000px;}
.y19b_c01322{bottom:431.130000px;}
.y198_c01322{bottom:432.870000px;}
.y196_c01322{bottom:433.725000px;}
.y197_c01322{bottom:434.595000px;}
.y193_c01322{bottom:435.450000px;}
.y19a_c01322{bottom:436.320000px;}
.y199_c01322{bottom:437.190000px;}
.y194_c01322{bottom:439.770000px;}
.y195_c01322{bottom:440.640000px;}
.y192_c01322{bottom:441.510000px;}
.y191_c01322{bottom:450.150000px;}
.y18f_c01322{bottom:451.005000px;}
.y190_c01322{bottom:451.875000px;}
.y18d_c01322{bottom:452.730000px;}
.y18b_c01322{bottom:455.325000px;}
.y18e_c01322{bottom:457.920000px;}
.y18c_c01322{bottom:458.790000px;}
.y18a_c01322{bottom:462.240000px;}
.y188_c01322{bottom:468.285000px;}
.y186_c01322{bottom:471.750000px;}
.y183_c01322{bottom:473.475000px;}
.y187_c01322{bottom:474.330000px;}
.y181_c01322{bottom:476.070000px;}
.y185_c01322{bottom:476.925000px;}
.y184_c01322{bottom:478.650000px;}
.y182_c01322{bottom:481.245000px;}
.y189_c01322{bottom:482.115000px;}
.y180_c01322{bottom:482.970000px;}
.y17e_c01322{bottom:488.160000px;}
.y17a_c01322{bottom:490.755000px;}
.y17f_c01322{bottom:491.610000px;}
.y17b_c01322{bottom:492.480000px;}
.y178_c01322{bottom:493.350000px;}
.y17c_c01322{bottom:494.205000px;}
.y17d_c01322{bottom:495.075000px;}
.y179_c01322{bottom:495.930000px;}
.y176_c01322{bottom:496.800000px;}
.y177_c01322{bottom:497.670000px;}
.y175_c01322{bottom:498.525000px;}
.y173_c01322{bottom:507.165000px;}
.y171_c01322{bottom:508.890000px;}
.y172_c01322{bottom:509.760000px;}
.y170_c01322{bottom:510.630000px;}
.y16f_c01322{bottom:512.355000px;}
.y16c_c01322{bottom:513.210000px;}
.y16e_c01322{bottom:514.080000px;}
.y174_c01322{bottom:514.950000px;}
.y16d_c01322{bottom:520.125000px;}
.y16b_c01322{bottom:529.635000px;}
.y169_c01322{bottom:532.230000px;}
.y166_c01322{bottom:534.810000px;}
.y16a_c01322{bottom:535.680000px;}
.y163_c01322{bottom:536.550000px;}
.y168_c01322{bottom:539.130000px;}
.y167_c01322{bottom:540.000000px;}
.y165_c01322{bottom:540.870000px;}
.y164_c01322{bottom:542.595000px;}
.y161_c01322{bottom:543.450000px;}
.y162_c01322{bottom:544.320000px;}
.y15f_c01322{bottom:551.235000px;}
.y15e_c01322{bottom:552.090000px;}
.y15c_c01322{bottom:554.685000px;}
.y160_c01322{bottom:555.555000px;}
.y15b_c01322{bottom:556.410000px;}
.y15a_c01322{bottom:559.875000px;}
.y15d_c01322{bottom:562.470000px;}
.y159_c01322{bottom:563.325000px;}
.y158_c01322{bottom:565.050000px;}
.y156_c01322{bottom:572.835000px;}
.y155_c01322{bottom:573.690000px;}
.y153_c01322{bottom:577.155000px;}
.y150_c01322{bottom:578.010000px;}
.y157_c01322{bottom:578.880000px;}
.y151_c01322{bottom:579.750000px;}
.y154_c01322{bottom:580.605000px;}
.y14e_c01322{bottom:582.330000px;}
.y152_c01322{bottom:583.200000px;}
.y14f_c01322{bottom:584.070000px;}
.y14d_c01322{bottom:590.970000px;}
.y14c_c01322{bottom:593.565000px;}
.y14b_c01322{bottom:595.290000px;}
.y149_c01322{bottom:599.610000px;}
.y14a_c01322{bottom:603.075000px;}
.y147_c01322{bottom:613.440000px;}
.y143_c01322{bottom:616.890000px;}
.y144_c01322{bottom:617.760000px;}
.y146_c01322{bottom:618.630000px;}
.y145_c01322{bottom:619.485000px;}
.y148_c01322{bottom:626.400000px;}
.y142_c01322{bottom:631.590000px;}
.y141_c01322{bottom:632.445000px;}
.y140_c01322{bottom:633.315000px;}
.y13f_c01322{bottom:635.910000px;}
.y13e_c01322{bottom:637.635000px;}
.y13b_c01322{bottom:639.360000px;}
.y13d_c01322{bottom:641.085000px;}
.y13c_c01322{bottom:643.680000px;}
.y139_c01322{bottom:652.320000px;}
.y138_c01322{bottom:653.190000px;}
.y13a_c01322{bottom:656.640000px;}
.y134_c01322{bottom:658.365000px;}
.y135_c01322{bottom:659.235000px;}
.y137_c01322{bottom:660.090000px;}
.y136_c01322{bottom:660.960000px;}
.y131_c01322{bottom:661.830000px;}
.y133_c01322{bottom:662.685000px;}
.y132_c01322{bottom:663.555000px;}
.y12f_c01322{bottom:672.195000px;}
.y12d_c01322{bottom:673.920000px;}
.y12e_c01322{bottom:675.645000px;}
.y12b_c01322{bottom:676.515000px;}
.y130_c01322{bottom:677.370000px;}
.y12c_c01322{bottom:679.110000px;}
.y12a_c01322{bottom:691.200000px;}
.y127_c01322{bottom:695.520000px;}
.y129_c01322{bottom:696.390000px;}
.y125_c01322{bottom:697.245000px;}
.y128_c01322{bottom:698.115000px;}
.y126_c01322{bottom:698.970000px;}
.y123_c01322{bottom:699.840000px;}
.y122_c01322{bottom:700.710000px;}
.y124_c01322{bottom:702.435000px;}
.y120_c01322{bottom:707.610000px;}
.y11c_c01322{bottom:710.205000px;}
.y11e_c01322{bottom:711.075000px;}
.y11a_c01322{bottom:712.800000px;}
.y119_c01322{bottom:713.670000px;}
.y11b_c01322{bottom:714.525000px;}
.y117_c01322{bottom:715.395000px;}
.y11f_c01322{bottom:717.120000px;}
.y118_c01322{bottom:717.990000px;}
.y11d_c01322{bottom:720.570000px;}
.y121_c01322{bottom:729.210000px;}
.y116_c01322{bottom:731.805000px;}
.y115_c01322{bottom:733.530000px;}
.y110_c01322{bottom:736.125000px;}
.y113_c01322{bottom:736.995000px;}
.y10e_c01322{bottom:737.850000px;}
.y114_c01322{bottom:738.720000px;}
.y10c_c01322{bottom:739.590000px;}
.y10d_c01322{bottom:740.445000px;}
.y111_c01322{bottom:741.315000px;}
.y10f_c01322{bottom:743.910000px;}
.y112_c01322{bottom:751.680000px;}
.y10b_c01322{bottom:752.550000px;}
.y10a_c01322{bottom:753.405000px;}
.y105_c01322{bottom:760.320000px;}
.y109_c01322{bottom:761.190000px;}
.y108_c01322{bottom:762.045000px;}
.y106_c01322{bottom:762.915000px;}
.y107_c01322{bottom:764.640000px;}
.y103_c01322{bottom:773.280000px;}
.y102_c01322{bottom:774.150000px;}
.y100_c01322{bottom:776.730000px;}
.y104_c01322{bottom:778.470000px;}
.yfe_c01322{bottom:779.325000px;}
.y101_c01322{bottom:780.195000px;}
.yfd_c01322{bottom:781.050000px;}
.yff_c01322{bottom:781.920000px;}
.yfb_c01322{bottom:783.645000px;}
.yfc_c01322{bottom:785.370000px;}
.y20b_c01322{bottom:793.155000px;}
.yfa_c01322{bottom:794.010000px;}
.yf9_c01322{bottom:794.880000px;}
.yf7_c01322{bottom:797.475000px;}
.y20a_c01322{bottom:798.330000px;}
.yf8_c01322{bottom:799.200000px;}
.yf6_c01322{bottom:800.070000px;}
.yf5_c01322{bottom:803.520000px;}
.yf4_c01322{bottom:804.390000px;}
.yf3_c01322{bottom:806.970000px;}
.y209_c01322{bottom:810.435000px;}
.yf1_c01322{bottom:814.755000px;}
.yf0_c01322{bottom:816.480000px;}
.yf2_c01322{bottom:818.205000px;}
.yeb_c01322{bottom:819.930000px;}
.yec_c01322{bottom:820.800000px;}
.y208_c01322{bottom:821.670000px;}
.yef_c01322{bottom:822.525000px;}
.yed_c01322{bottom:823.395000px;}
.yee_c01322{bottom:824.250000px;}
.yea_c01322{bottom:826.845000px;}
.y207_c01322{bottom:827.715000px;}
.ye9_c01322{bottom:835.485000px;}
.ye7_c01322{bottom:837.210000px;}
.ye8_c01322{bottom:838.080000px;}
.ye5_c01322{bottom:838.950000px;}
.ye6_c01322{bottom:840.675000px;}
.ye2_c01322{bottom:841.530000px;}
.ye4_c01322{bottom:844.125000px;}
.ye3_c01322{bottom:845.850000px;}
.y206_c01322{bottom:851.910000px;}
.ye1_c01322{bottom:855.360000px;}
.ye0_c01322{bottom:856.230000px;}
.y205_c01322{bottom:857.085000px;}
.ydf_c01322{bottom:857.955000px;}
.ydb_c01322{bottom:859.680000px;}
.yda_c01322{bottom:860.550000px;}
.yd9_c01322{bottom:861.405000px;}
.yde_c01322{bottom:862.275000px;}
.ydd_c01322{bottom:863.130000px;}
.ydc_c01322{bottom:864.870000px;}
.y204_c01322{bottom:867.450000px;}
.yd8_c01322{bottom:874.365000px;}
.yd3_c01322{bottom:877.830000px;}
.yd5_c01322{bottom:878.685000px;}
.yd6_c01322{bottom:879.555000px;}
.yd7_c01322{bottom:880.410000px;}
.yd1_c01322{bottom:882.150000px;}
.yd4_c01322{bottom:883.005000px;}
.yd2_c01322{bottom:883.875000px;}
.yd0_c01322{bottom:884.730000px;}
.ycd_c01322{bottom:885.600000px;}
.ycf_c01322{bottom:886.470000px;}
.yce_c01322{bottom:887.325000px;}
.ycc_c01322{bottom:893.370000px;}
.yc8_c01322{bottom:895.965000px;}
.yc9_c01322{bottom:896.835000px;}
.ycb_c01322{bottom:898.560000px;}
.yc6_c01322{bottom:899.430000px;}
.yca_c01322{bottom:900.285000px;}
.yc7_c01322{bottom:902.880000px;}
.yc4_c01322{bottom:904.605000px;}
.yc5_c01322{bottom:905.475000px;}
.yc3_c01322{bottom:906.330000px;}
.y203_c01322{bottom:910.650000px;}
.yc2_c01322{bottom:919.290000px;}
.ybf_c01322{bottom:920.160000px;}
.ybd_c01322{bottom:921.030000px;}
.yc1_c01322{bottom:922.755000px;}
.ybb_c01322{bottom:923.610000px;}
.ybe_c01322{bottom:925.350000px;}
.ybc_c01322{bottom:926.205000px;}
.yc0_c01322{bottom:932.250000px;}
.yb7_c01322{bottom:933.990000px;}
.yb6_c01322{bottom:934.845000px;}
.yba_c01322{bottom:937.440000px;}
.yb3_c01322{bottom:939.165000px;}
.yb9_c01322{bottom:940.890000px;}
.yb0_c01322{bottom:941.760000px;}
.yb4_c01322{bottom:942.630000px;}
.yb5_c01322{bottom:943.485000px;}
.yb1_c01322{bottom:944.355000px;}
.yb2_c01322{bottom:945.210000px;}
.y202_c01322{bottom:946.080000px;}
.yb8_c01322{bottom:947.805000px;}
.yaf_c01322{bottom:953.850000px;}
.yae_c01322{bottom:956.445000px;}
.yac_c01322{bottom:958.170000px;}
.ya9_c01322{bottom:961.635000px;}
.yad_c01322{bottom:962.490000px;}
.ya6_c01322{bottom:963.360000px;}
.yaa_c01322{bottom:964.230000px;}
.yab_c01322{bottom:965.085000px;}
.ya8_c01322{bottom:966.810000px;}
.ya7_c01322{bottom:967.680000px;}
.ya4_c01322{bottom:974.595000px;}
.ya3_c01322{bottom:975.450000px;}
.ya5_c01322{bottom:977.190000px;}
.ya1_c01322{bottom:978.045000px;}
.ya2_c01322{bottom:978.915000px;}
.y9e_c01322{bottom:980.640000px;}
.y9d_c01322{bottom:981.510000px;}
.y9f_c01322{bottom:982.365000px;}
.ya0_c01322{bottom:983.235000px;}
.y9c_c01322{bottom:984.960000px;}
.y9a_c01322{bottom:995.325000px;}
.y94_c01322{bottom:998.790000px;}
.y93_c01322{bottom:1000.515000px;}
.y99_c01322{bottom:1001.370000px;}
.y98_c01322{bottom:1002.240000px;}
.y97_c01322{bottom:1003.110000px;}
.y96_c01322{bottom:1003.965000px;}
.y95_c01322{bottom:1004.835000px;}
.y92_c01322{bottom:1006.560000px;}
.y9b_c01322{bottom:1007.430000px;}
.y8f_c01322{bottom:1016.070000px;}
.y90_c01322{bottom:1016.925000px;}
.y8e_c01322{bottom:1017.795000px;}
.y8b_c01322{bottom:1020.390000px;}
.y91_c01322{bottom:1022.115000px;}
.y8d_c01322{bottom:1022.970000px;}
.y8c_c01322{bottom:1024.710000px;}
.y8a_c01322{bottom:1025.565000px;}
.y89_c01322{bottom:1027.290000px;}
.y87_c01322{bottom:1041.120000px;}
.y88_c01322{bottom:1044.570000px;}
.y86_c01322{bottom:1045.440000px;}
.y85_c01322{bottom:1046.310000px;}
.y84_c01322{bottom:1047.165000px;}
.y83_c01322{bottom:1054.950000px;}
.y81_c01322{bottom:1056.675000px;}
.y201_c01322{bottom:1059.270000px;}
.y7f_c01322{bottom:1060.125000px;}
.y82_c01322{bottom:1061.850000px;}
.y80_c01322{bottom:1062.720000px;}
.y7c_c01322{bottom:1063.590000px;}
.y7e_c01322{bottom:1065.315000px;}
.y7d_c01322{bottom:1066.170000px;}
.y7b_c01322{bottom:1067.040000px;}
.y7a_c01322{bottom:1075.680000px;}
.y77_c01322{bottom:1079.130000px;}
.y79_c01322{bottom:1080.000000px;}
.y72_c01322{bottom:1081.725000px;}
.y78_c01322{bottom:1082.595000px;}
.y71_c01322{bottom:1083.450000px;}
.y75_c01322{bottom:1085.190000px;}
.y74_c01322{bottom:1086.045000px;}
.y73_c01322{bottom:1086.915000px;}
.y76_c01322{bottom:1092.090000px;}
.y70_c01322{bottom:1096.410000px;}
.y6f_c01322{bottom:1097.280000px;}
.y6e_c01322{bottom:1099.005000px;}
.y6b_c01322{bottom:1100.730000px;}
.y6c_c01322{bottom:1101.600000px;}
.y69_c01322{bottom:1104.195000px;}
.y6d_c01322{bottom:1105.050000px;}
.y6a_c01322{bottom:1106.790000px;}
.y68_c01322{bottom:1108.515000px;}
.y67_c01322{bottom:1109.370000px;}
.y65_c01322{bottom:1116.285000px;}
.y64_c01322{bottom:1117.155000px;}
.y63_c01322{bottom:1120.605000px;}
.y66_c01322{bottom:1121.475000px;}
.y62_c01322{bottom:1122.330000px;}
.y5f_c01322{bottom:1123.200000px;}
.y61_c01322{bottom:1125.795000px;}
.y60_c01322{bottom:1126.650000px;}
.y5e_c01322{bottom:1137.030000px;}
.y5c_c01322{bottom:1138.755000px;}
.y5a_c01322{bottom:1139.610000px;}
.y58_c01322{bottom:1140.480000px;}
.y5d_c01322{bottom:1142.205000px;}
.y5b_c01322{bottom:1143.075000px;}
.y59_c01322{bottom:1143.930000px;}
.y56_c01322{bottom:1146.525000px;}
.y57_c01322{bottom:1148.250000px;}
.y53_c01322{bottom:1157.760000px;}
.y51_c01322{bottom:1158.630000px;}
.y52_c01322{bottom:1159.485000px;}
.y4f_c01322{bottom:1161.210000px;}
.y54_c01322{bottom:1162.080000px;}
.y4c_c01322{bottom:1162.950000px;}
.y50_c01322{bottom:1163.805000px;}
.y55_c01322{bottom:1165.530000px;}
.y4e_c01322{bottom:1166.400000px;}
.y4d_c01322{bottom:1168.125000px;}
.y4b_c01322{bottom:1168.995000px;}
.y49_c01322{bottom:1178.490000px;}
.y46_c01322{bottom:1180.230000px;}
.y4a_c01322{bottom:1181.085000px;}
.y48_c01322{bottom:1183.680000px;}
.y47_c01322{bottom:1184.550000px;}
.y41_c01322{bottom:1185.405000px;}
.y45_c01322{bottom:1186.275000px;}
.y44_c01322{bottom:1187.130000px;}
.y42_c01322{bottom:1188.000000px;}
.y43_c01322{bottom:1188.870000px;}
.y3f_c01322{bottom:1197.510000px;}
.y3c_c01322{bottom:1200.090000px;}
.y3a_c01322{bottom:1201.830000px;}
.y3e_c01322{bottom:1202.685000px;}
.y3d_c01322{bottom:1203.555000px;}
.y36_c01322{bottom:1204.410000px;}
.y3b_c01322{bottom:1205.280000px;}
.y39_c01322{bottom:1207.875000px;}
.y38_c01322{bottom:1208.730000px;}
.y37_c01322{bottom:1209.600000px;}
.y40_c01322{bottom:1214.790000px;}
.y34_c01322{bottom:1219.965000px;}
.y32_c01322{bottom:1220.835000px;}
.y35_c01322{bottom:1221.690000px;}
.y2d_c01322{bottom:1222.560000px;}
.y33_c01322{bottom:1223.430000px;}
.y31_c01322{bottom:1224.285000px;}
.y30_c01322{bottom:1225.155000px;}
.y2f_c01322{bottom:1226.880000px;}
.y2e_c01322{bottom:1227.750000px;}
.y2c_c01322{bottom:1228.605000px;}
.y28_c01322{bottom:1238.115000px;}
.y29_c01322{bottom:1238.970000px;}
.y2b_c01322{bottom:1239.840000px;}
.y25_c01322{bottom:1241.565000px;}
.y2a_c01322{bottom:1243.290000px;}
.y27_c01322{bottom:1245.030000px;}
.y22_c01322{bottom:1246.755000px;}
.y24_c01322{bottom:1247.610000px;}
.y23_c01322{bottom:1248.480000px;}
.y21_c01322{bottom:1249.350000px;}
.y26_c01322{bottom:1253.670000px;}
.y20_c01322{bottom:1256.250000px;}
.y1e_c01322{bottom:1258.845000px;}
.y1d_c01322{bottom:1261.440000px;}
.y1c_c01322{bottom:1262.310000px;}
.y1b_c01322{bottom:1264.035000px;}
.y1f_c01322{bottom:1264.890000px;}
.y19_c01322{bottom:1266.630000px;}
.y1a_c01322{bottom:1269.210000px;}
.y17_c01322{bottom:1278.720000px;}
.y16_c01322{bottom:1281.315000px;}
.y18_c01322{bottom:1283.040000px;}
.y14_c01322{bottom:1284.765000px;}
.y15_c01322{bottom:1289.085000px;}
.y200_c01322{bottom:1290.810000px;}
.y13_c01322{bottom:1299.450000px;}
.y12_c01322{bottom:1300.320000px;}
.y10_c01322{bottom:1301.190000px;}
.ye_c01322{bottom:1302.045000px;}
.yc_c01322{bottom:1303.770000px;}
.ya_c01322{bottom:1304.640000px;}
.y11_c01322{bottom:1305.510000px;}
.yb_c01322{bottom:1306.365000px;}
.yd_c01322{bottom:1308.090000px;}
.y8_c01322{bottom:1317.600000px;}
.yf_c01322{bottom:1321.050000px;}
.y7_c01322{bottom:1321.920000px;}
.y4_c01322{bottom:1323.645000px;}
.y9_c01322{bottom:1324.515000px;}
.y5_c01322{bottom:1325.370000px;}
.y6_c01322{bottom:1328.835000px;}
.y2_c01322{bottom:1330.560000px;}
.y3_c01322{bottom:1331.430000px;}
.y1ff_c01322{bottom:1349.565000px;}
.y1_c01322{bottom:1353.030000px;}
.y1fe_c01322{bottom:1356.480000px;}
.he_c01322{height:3.110063px;}
.h1d_c01322{height:5.399414px;}
.h14_c01322{height:6.209326px;}
.h17_c01322{height:9.340986px;}
.h1e_c01322{height:12.418652px;}
.h16_c01322{height:15.550313px;}
.h11_c01322{height:18.681973px;}
.h1c_c01322{height:21.759639px;}
.h1a_c01322{height:24.891299px;}
.h1f_c01322{height:27.968965px;}
.h1b_c01322{height:31.100625px;}
.h12_c01322{height:34.232285px;}
.h13_c01322{height:37.309951px;}
.h19_c01322{height:40.441611px;}
.h8_c01322{height:43.519277px;}
.h9_c01322{height:46.650937px;}
.h4_c01322{height:49.782598px;}
.h3_c01322{height:52.860264px;}
.h18_c01322{height:53.262598px;}
.h2_c01322{height:55.991924px;}
.h5_c01322{height:59.069590px;}
.hb_c01322{height:62.201250px;}
.hc_c01322{height:65.332910px;}
.h7_c01322{height:68.410576px;}
.hd_c01322{height:71.542236px;}
.h6_c01322{height:74.619902px;}
.hf_c01322{height:77.751563px;}
.h15_c01322{height:80.883223px;}
.h10_c01322{height:83.960889px;}
.ha_c01322{height:87.092549px;}
.h21_c01322{height:90.170215px;}
.h20_c01322{height:93.301875px;}
.h25_c01322{height:96.433535px;}
.h22_c01322{height:102.642861px;}
.h27_c01322{height:118.193174px;}
.h26_c01322{height:121.270840px;}
.h23_c01322{height:124.402500px;}
.h24_c01322{height:127.534160px;}
.h1_c01322{height:1513.500000px;}
.h0_c01322{height:1513.725000px;}
.w1_c01322{width:1076.250000px;}
.w0_c01322{width:1076.550000px;}
.x0_c01322{left:0.000000px;}
.xf3_c01322{left:82.080000px;}
.x111_c01322{left:125.280000px;}
.x112_c01322{left:146.880000px;}
.xf4_c01322{left:164.160000px;}
.x94_c01322{left:178.845000px;}
.xf5_c01322{left:184.890000px;}
.x95_c01322{left:190.080000px;}
.x96_c01322{left:196.995000px;}
.x97_c01322{left:211.680000px;}
.x58_c01322{left:214.275000px;}
.x100_c01322{left:217.725000px;}
.xa2_c01322{left:221.190000px;}
.xd0_c01322{left:222.915000px;}
.xad_c01322{left:224.640000px;}
.xdb_c01322{left:227.235000px;}
.xa8_c01322{left:228.960000px;}
.xa3_c01322{left:230.685000px;}
.xe2_c01322{left:232.410000px;}
.xca_c01322{left:234.150000px;}
.xc1_c01322{left:235.875000px;}
.xae_c01322{left:237.600000px;}
.x8e_c01322{left:239.325000px;}
.x83_c01322{left:241.050000px;}
.x7e_c01322{left:242.790000px;}
.x72_c01322{left:244.515000px;}
.x59_c01322{left:246.240000px;}
.x24_c01322{left:247.965000px;}
.x1_c01322{left:250.560000px;}
.x109_c01322{left:252.285000px;}
.xea_c01322{left:255.750000px;}
.xcb_c01322{left:257.475000px;}
.xaf_c01322{left:260.070000px;}
.x9c_c01322{left:262.650000px;}
.xbd_c01322{left:264.390000px;}
.x98_c01322{left:266.970000px;}
.xe4_c01322{left:268.710000px;}
.xee_c01322{left:270.435000px;}
.x3b_c01322{left:275.610000px;}
.x73_c01322{left:280.800000px;}
.xc2_c01322{left:284.250000px;}
.x25_c01322{left:287.715000px;}
.xe5_c01322{left:289.440000px;}
.x16_c01322{left:291.165000px;}
.x5a_c01322{left:292.890000px;}
.x8f_c01322{left:294.630000px;}
.x10a_c01322{left:297.210000px;}
.xfb_c01322{left:298.950000px;}
.x2_c01322{left:302.400000px;}
.x62_c01322{left:304.995000px;}
.x10c_c01322{left:308.445000px;}
.xb0_c01322{left:312.765000px;}
.x30_c01322{left:314.490000px;}
.xd7_c01322{left:317.955000px;}
.x1c_c01322{left:319.680000px;}
.xa4_c01322{left:321.405000px;}
.x3_c01322{left:323.130000px;}
.x10e_c01322{left:326.595000px;}
.xc5_c01322{left:330.045000px;}
.x4c_c01322{left:334.365000px;}
.xd_c01322{left:336.960000px;}
.x6b_c01322{left:338.685000px;}
.x4d_c01322{left:341.280000px;}
.x31_c01322{left:343.005000px;}
.xb9_c01322{left:344.730000px;}
.x26_c01322{left:347.325000px;}
.x17_c01322{left:349.050000px;}
.x84_c01322{left:351.645000px;}
.xfc_c01322{left:354.240000px;}
.x105_c01322{left:355.965000px;}
.xe6_c01322{left:358.560000px;}
.xb1_c01322{left:361.155000px;}
.xf6_c01322{left:362.880000px;}
.xd3_c01322{left:365.475000px;}
.x4_c01322{left:367.200000px;}
.x3c_c01322{left:370.650000px;}
.xcc_c01322{left:374.115000px;}
.x99_c01322{left:375.840000px;}
.x18_c01322{left:378.435000px;}
.xa9_c01322{left:382.755000px;}
.x45_c01322{left:385.350000px;}
.xd8_c01322{left:387.075000px;}
.x1d_c01322{left:389.670000px;}
.x6c_c01322{left:391.395000px;}
.x5b_c01322{left:393.990000px;}
.x4e_c01322{left:398.310000px;}
.x6d_c01322{left:401.760000px;}
.xba_c01322{left:404.355000px;}
.x85_c01322{left:406.080000px;}
.xb2_c01322{left:407.805000px;}
.xe_c01322{left:409.530000px;}
.xb5_c01322{left:412.125000px;}
.x3d_c01322{left:414.720000px;}
.xc8_c01322{left:416.445000px;}
.xeb_c01322{left:419.910000px;}
.x27_c01322{left:425.085000px;}
.x4f_c01322{left:430.275000px;}
.xc6_c01322{left:432.000000px;}
.x28_c01322{left:433.725000px;}
.x32_c01322{left:439.770000px;}
.x78_c01322{left:442.365000px;}
.x9d_c01322{left:444.960000px;}
.x9a_c01322{left:447.555000px;}
.x1e_c01322{left:449.280000px;}
.xf_c01322{left:451.875000px;}
.x29_c01322{left:455.325000px;}
.xd9_c01322{left:458.790000px;}
.xde_c01322{left:460.515000px;}
.x46_c01322{left:463.110000px;}
.x5_c01322{left:465.690000px;}
.x79_c01322{left:468.285000px;}
.x86_c01322{left:470.010000px;}
.xdc_c01322{left:471.750000px;}
.x33_c01322{left:476.070000px;}
.xbe_c01322{left:477.795000px;}
.xcd_c01322{left:480.390000px;}
.xfd_c01322{left:482.115000px;}
.xe8_c01322{left:483.840000px;}
.x7c_c01322{left:485.565000px;}
.xc3_c01322{left:488.160000px;}
.xd1_c01322{left:489.885000px;}
.x7f_c01322{left:492.480000px;}
.x9b_c01322{left:495.075000px;}
.x34_c01322{left:498.525000px;}
.xb6_c01322{left:500.250000px;}
.xc9_c01322{left:501.990000px;}
.x101_c01322{left:504.570000px;}
.x74_c01322{left:508.035000px;}
.x50_c01322{left:509.760000px;}
.x47_c01322{left:512.355000px;}
.x6_c01322{left:514.080000px;}
.x3e_c01322{left:516.675000px;}
.xa5_c01322{left:519.270000px;}
.x51_c01322{left:520.995000px;}
.xbf_c01322{left:523.590000px;}
.x102_c01322{left:530.490000px;}
.x90_c01322{left:535.680000px;}
.xa6_c01322{left:537.405000px;}
.x63_c01322{left:540.870000px;}
.x35_c01322{left:545.190000px;}
.x10b_c01322{left:546.915000px;}
.x10f_c01322{left:548.640000px;}
.x87_c01322{left:550.365000px;}
.xe3_c01322{left:552.090000px;}
.x75_c01322{left:554.685000px;}
.x7_c01322{left:557.280000px;}
.x80_c01322{left:559.005000px;}
.x10_c01322{left:562.470000px;}
.xbb_c01322{left:564.195000px;}
.xc7_c01322{left:565.920000px;}
.x88_c01322{left:568.515000px;}
.x5c_c01322{left:570.240000px;}
.x52_c01322{left:571.965000px;}
.x11_c01322{left:574.560000px;}
.x8_c01322{left:576.285000px;}
.xe9_c01322{left:580.605000px;}
.x81_c01322{left:584.070000px;}
.xc4_c01322{left:586.650000px;}
.x6e_c01322{left:588.390000px;}
.x36_c01322{left:590.115000px;}
.x2a_c01322{left:591.840000px;}
.x7d_c01322{left:593.565000px;}
.xce_c01322{left:597.030000px;}
.x64_c01322{left:599.610000px;}
.xef_c01322{left:602.205000px;}
.x53_c01322{left:604.800000px;}
.x91_c01322{left:606.525000px;}
.xd5_c01322{left:608.250000px;}
.x5d_c01322{left:611.715000px;}
.x65_c01322{left:613.440000px;}
.x9_c01322{left:616.890000px;}
.x19_c01322{left:620.355000px;}
.x2b_c01322{left:622.080000px;}
.x9e_c01322{left:625.530000px;}
.x1f_c01322{left:627.270000px;}
.xf8_c01322{left:629.850000px;}
.x66_c01322{left:633.315000px;}
.x76_c01322{left:638.490000px;}
.x3f_c01322{left:641.085000px;}
.x7a_c01322{left:646.275000px;}
.xfe_c01322{left:648.000000px;}
.x106_c01322{left:650.595000px;}
.x54_c01322{left:652.320000px;}
.xdd_c01322{left:655.770000px;}
.x2c_c01322{left:658.365000px;}
.x40_c01322{left:661.830000px;}
.x48_c01322{left:663.555000px;}
.x103_c01322{left:665.280000px;}
.xbc_c01322{left:667.005000px;}
.x10d_c01322{left:668.730000px;}
.x37_c01322{left:670.470000px;}
.x92_c01322{left:673.920000px;}
.x5e_c01322{left:675.645000px;}
.x6f_c01322{left:681.690000px;}
.xf9_c01322{left:683.430000px;}
.x41_c01322{left:685.155000px;}
.x38_c01322{left:687.750000px;}
.x12_c01322{left:689.475000px;}
.x82_c01322{left:691.200000px;}
.x9f_c01322{left:693.795000px;}
.x5f_c01322{left:696.390000px;}
.x20_c01322{left:698.970000px;}
.x55_c01322{left:702.435000px;}
.x67_c01322{left:705.030000px;}
.xff_c01322{left:706.755000px;}
.xf7_c01322{left:708.480000px;}
.x13_c01322{left:711.075000px;}
.x89_c01322{left:712.800000px;}
.x2d_c01322{left:714.525000px;}
.x8a_c01322{left:718.845000px;}
.x107_c01322{left:722.310000px;}
.x93_c01322{left:725.760000px;}
.x14_c01322{left:727.485000px;}
.x68_c01322{left:729.210000px;}
.x7b_c01322{left:730.950000px;}
.xaa_c01322{left:732.675000px;}
.x42_c01322{left:735.270000px;}
.xa_c01322{left:736.995000px;}
.xb7_c01322{left:740.445000px;}
.x60_c01322{left:743.910000px;}
.xb3_c01322{left:746.490000px;}
.x69_c01322{left:749.085000px;}
.x39_c01322{left:752.550000px;}
.xf1_c01322{left:754.275000px;}
.x56_c01322{left:756.870000px;}
.x2e_c01322{left:760.320000px;}
.xe7_c01322{left:762.045000px;}
.xb_c01322{left:764.640000px;}
.xd6_c01322{left:766.365000px;}
.x21_c01322{left:768.090000px;}
.x108_c01322{left:769.830000px;}
.x49_c01322{left:771.555000px;}
.xec_c01322{left:774.150000px;}
.x1a_c01322{left:777.600000px;}
.xd4_c01322{left:780.195000px;}
.x61_c01322{left:781.920000px;}
.xfa_c01322{left:783.645000px;}
.x110_c01322{left:787.965000px;}
.x15_c01322{left:789.690000px;}
.x104_c01322{left:791.430000px;}
.xa0_c01322{left:793.155000px;}
.xdf_c01322{left:794.880000px;}
.x22_c01322{left:796.605000px;}
.x70_c01322{left:799.200000px;}
.xa7_c01322{left:801.795000px;}
.x43_c01322{left:803.520000px;}
.xb4_c01322{left:806.970000px;}
.x3a_c01322{left:808.710000px;}
.x8b_c01322{left:812.160000px;}
.xcf_c01322{left:814.755000px;}
.xc_c01322{left:816.480000px;}
.x4a_c01322{left:819.075000px;}
.x1b_c01322{left:821.670000px;}
.xf0_c01322{left:824.250000px;}
.xe0_c01322{left:826.845000px;}
.xab_c01322{left:831.165000px;}
.xed_c01322{left:833.760000px;}
.x71_c01322{left:835.485000px;}
.x23_c01322{left:838.080000px;}
.xac_c01322{left:840.675000px;}
.xc0_c01322{left:843.270000px;}
.x6a_c01322{left:844.995000px;}
.x57_c01322{left:846.720000px;}
.x8c_c01322{left:851.910000px;}
.xb8_c01322{left:858.810000px;}
.x4b_c01322{left:865.725000px;}
.x77_c01322{left:868.320000px;}
.xf2_c01322{left:870.045000px;}
.x44_c01322{left:871.770000px;}
.xda_c01322{left:874.365000px;}
.xd2_c01322{left:876.090000px;}
.x8d_c01322{left:877.830000px;}
.x2f_c01322{left:881.280000px;}
.xa1_c01322{left:885.600000px;}
.xe1_c01322{left:892.515000px;}
.x11e_c01322{left:912.390000px;}
.x11f_c01322{left:927.930000px;}
.x113_c01322{left:944.355000px;}
.x114_c01322{left:952.125000px;}
.x116_c01322{left:967.680000px;}
.x118_c01322{left:970.275000px;}
.x117_c01322{left:973.725000px;}
.x115_c01322{left:975.450000px;}
.x120_c01322{left:1009.155000px;}
.x119_c01322{left:1023.840000px;}
.x11a_c01322{left:1041.120000px;}
.x11b_c01322{left:1051.485000px;}
.x11c_c01322{left:1059.270000px;}
.x11d_c01322{left:1063.590000px;}
@media print{
.v3_c01322{vertical-align:-6.186667pt;}
.v2_c01322{vertical-align:-3.040000pt;}
.v0_c01322{vertical-align:0.000000pt;}
.v1_c01322{vertical-align:3.093333pt;}
.ls0_c01322{letter-spacing:0.000000pt;}
.ws1_c01322{word-spacing:-15.700533pt;}
.ws2_c01322{word-spacing:-7.885333pt;}
.ws0_c01322{word-spacing:-5.522293pt;}
.ws3_c01322{word-spacing:0.000000pt;}
.fsc_c01322{font-size:3.072000pt;}
.fs1a_c01322{font-size:5.333333pt;}
.fs12_c01322{font-size:6.133333pt;}
.fs15_c01322{font-size:9.226667pt;}
.fs1b_c01322{font-size:12.266667pt;}
.fs14_c01322{font-size:15.360000pt;}
.fsf_c01322{font-size:18.453333pt;}
.fs19_c01322{font-size:21.493333pt;}
.fs17_c01322{font-size:24.586667pt;}
.fs1c_c01322{font-size:27.626667pt;}
.fs18_c01322{font-size:30.720000pt;}
.fs10_c01322{font-size:33.813333pt;}
.fs11_c01322{font-size:36.853333pt;}
.fs16_c01322{font-size:39.946667pt;}
.fs6_c01322{font-size:42.986667pt;}
.fs7_c01322{font-size:46.080000pt;}
.fs2_c01322{font-size:49.173333pt;}
.fs1_c01322{font-size:52.213333pt;}
.fs0_c01322{font-size:55.306667pt;}
.fs3_c01322{font-size:58.346667pt;}
.fs9_c01322{font-size:61.440000pt;}
.fsa_c01322{font-size:64.533333pt;}
.fs5_c01322{font-size:67.573333pt;}
.fsb_c01322{font-size:70.666667pt;}
.fs4_c01322{font-size:73.706667pt;}
.fsd_c01322{font-size:76.800000pt;}
.fs13_c01322{font-size:79.893333pt;}
.fse_c01322{font-size:82.933333pt;}
.fs8_c01322{font-size:86.026667pt;}
.fs1e_c01322{font-size:89.066667pt;}
.fs1d_c01322{font-size:92.160000pt;}
.fs22_c01322{font-size:95.253333pt;}
.fs1f_c01322{font-size:101.386667pt;}
.fs24_c01322{font-size:116.746667pt;}
.fs23_c01322{font-size:119.786667pt;}
.fs20_c01322{font-size:122.880000pt;}
.fs21_c01322{font-size:125.973333pt;}
.y0_c01322{bottom:0.000000pt;}
.y1fd_c01322{bottom:159.746667pt;}
.y1fc_c01322{bottom:160.506667pt;}
.y1fb_c01322{bottom:165.120000pt;}
.y1fa_c01322{bottom:167.426667pt;}
.y1f9_c01322{bottom:169.733333pt;}
.y1f8_c01322{bottom:171.266667pt;}
.y1f5_c01322{bottom:182.786667pt;}
.y1f6_c01322{bottom:183.546667pt;}
.y1f3_c01322{bottom:185.853333pt;}
.y1f7_c01322{bottom:186.626667pt;}
.y1f4_c01322{bottom:187.386667pt;}
.y1f2_c01322{bottom:188.933333pt;}
.y20d_c01322{bottom:189.693333pt;}
.y1f1_c01322{bottom:191.226667pt;}
.y1f0_c01322{bottom:192.773333pt;}
.y1ef_c01322{bottom:195.066667pt;}
.y1ed_c01322{bottom:199.680000pt;}
.y1ea_c01322{bottom:203.520000pt;}
.y1ee_c01322{bottom:205.053333pt;}
.y1e8_c01322{bottom:206.586667pt;}
.y1ec_c01322{bottom:207.360000pt;}
.y1eb_c01322{bottom:208.133333pt;}
.y1e9_c01322{bottom:208.893333pt;}
.y1e6_c01322{bottom:217.346667pt;}
.y1e5_c01322{bottom:218.880000pt;}
.y1e4_c01322{bottom:219.653333pt;}
.y1e2_c01322{bottom:222.720000pt;}
.y1e1_c01322{bottom:223.493333pt;}
.y1e3_c01322{bottom:225.026667pt;}
.y1df_c01322{bottom:225.786667pt;}
.y1de_c01322{bottom:226.560000pt;}
.y1e0_c01322{bottom:228.093333pt;}
.y1e7_c01322{bottom:230.400000pt;}
.y20c_c01322{bottom:235.013333pt;}
.y1dd_c01322{bottom:235.773333pt;}
.y1db_c01322{bottom:236.546667pt;}
.y1dc_c01322{bottom:238.080000pt;}
.y1da_c01322{bottom:238.853333pt;}
.y1d9_c01322{bottom:240.386667pt;}
.y1d8_c01322{bottom:243.453333pt;}
.y1d7_c01322{bottom:246.533333pt;}
.y1d6_c01322{bottom:248.066667pt;}
.y1d5_c01322{bottom:255.746667pt;}
.y1d4_c01322{bottom:258.813333pt;}
.y1d2_c01322{bottom:260.346667pt;}
.y1d1_c01322{bottom:261.120000pt;}
.y1d3_c01322{bottom:264.960000pt;}
.y1cf_c01322{bottom:272.640000pt;}
.y1ce_c01322{bottom:274.173333pt;}
.y1cd_c01322{bottom:274.946667pt;}
.y1cb_c01322{bottom:275.706667pt;}
.y1d0_c01322{bottom:276.480000pt;}
.y1c8_c01322{bottom:278.013333pt;}
.y1c7_c01322{bottom:278.786667pt;}
.y1ca_c01322{bottom:281.093333pt;}
.y1c9_c01322{bottom:282.626667pt;}
.y1cc_c01322{bottom:290.306667pt;}
.y1c6_c01322{bottom:291.066667pt;}
.y1c4_c01322{bottom:291.840000pt;}
.y1c3_c01322{bottom:294.146667pt;}
.y1c1_c01322{bottom:294.906667pt;}
.y1c5_c01322{bottom:295.680000pt;}
.y1c0_c01322{bottom:297.986667pt;}
.y1be_c01322{bottom:298.746667pt;}
.y1c2_c01322{bottom:300.293333pt;}
.y1bf_c01322{bottom:301.053333pt;}
.y1bd_c01322{bottom:307.200000pt;}
.y1bc_c01322{bottom:311.040000pt;}
.y1b8_c01322{bottom:314.106667pt;}
.y1b9_c01322{bottom:314.880000pt;}
.y1bb_c01322{bottom:316.413333pt;}
.y1ba_c01322{bottom:317.186667pt;}
.y1b7_c01322{bottom:319.493333pt;}
.y1b6_c01322{bottom:320.253333pt;}
.y1b3_c01322{bottom:327.173333pt;}
.y1b1_c01322{bottom:328.706667pt;}
.y1b5_c01322{bottom:330.240000pt;}
.y1ad_c01322{bottom:331.013333pt;}
.y1b4_c01322{bottom:331.773333pt;}
.y1b2_c01322{bottom:332.546667pt;}
.y1ae_c01322{bottom:333.306667pt;}
.y1b0_c01322{bottom:335.613333pt;}
.y1af_c01322{bottom:336.386667pt;}
.y1ac_c01322{bottom:338.693333pt;}
.y1ab_c01322{bottom:344.066667pt;}
.y1aa_c01322{bottom:344.826667pt;}
.y1a4_c01322{bottom:349.440000pt;}
.y1a7_c01322{bottom:350.213333pt;}
.y1a9_c01322{bottom:353.280000pt;}
.y1a8_c01322{bottom:354.053333pt;}
.y19f_c01322{bottom:354.813333pt;}
.y1a3_c01322{bottom:358.653333pt;}
.y1a6_c01322{bottom:361.733333pt;}
.y19e_c01322{bottom:362.493333pt;}
.y1a0_c01322{bottom:363.266667pt;}
.y1a1_c01322{bottom:364.800000pt;}
.y1a5_c01322{bottom:366.333333pt;}
.y1a2_c01322{bottom:369.413333pt;}
.y19d_c01322{bottom:380.160000pt;}
.y19c_c01322{bottom:381.693333pt;}
.y19b_c01322{bottom:383.226667pt;}
.y198_c01322{bottom:384.773333pt;}
.y196_c01322{bottom:385.533333pt;}
.y197_c01322{bottom:386.306667pt;}
.y193_c01322{bottom:387.066667pt;}
.y19a_c01322{bottom:387.840000pt;}
.y199_c01322{bottom:388.613333pt;}
.y194_c01322{bottom:390.906667pt;}
.y195_c01322{bottom:391.680000pt;}
.y192_c01322{bottom:392.453333pt;}
.y191_c01322{bottom:400.133333pt;}
.y18f_c01322{bottom:400.893333pt;}
.y190_c01322{bottom:401.666667pt;}
.y18d_c01322{bottom:402.426667pt;}
.y18b_c01322{bottom:404.733333pt;}
.y18e_c01322{bottom:407.040000pt;}
.y18c_c01322{bottom:407.813333pt;}
.y18a_c01322{bottom:410.880000pt;}
.y188_c01322{bottom:416.253333pt;}
.y186_c01322{bottom:419.333333pt;}
.y183_c01322{bottom:420.866667pt;}
.y187_c01322{bottom:421.626667pt;}
.y181_c01322{bottom:423.173333pt;}
.y185_c01322{bottom:423.933333pt;}
.y184_c01322{bottom:425.466667pt;}
.y182_c01322{bottom:427.773333pt;}
.y189_c01322{bottom:428.546667pt;}
.y180_c01322{bottom:429.306667pt;}
.y17e_c01322{bottom:433.920000pt;}
.y17a_c01322{bottom:436.226667pt;}
.y17f_c01322{bottom:436.986667pt;}
.y17b_c01322{bottom:437.760000pt;}
.y178_c01322{bottom:438.533333pt;}
.y17c_c01322{bottom:439.293333pt;}
.y17d_c01322{bottom:440.066667pt;}
.y179_c01322{bottom:440.826667pt;}
.y176_c01322{bottom:441.600000pt;}
.y177_c01322{bottom:442.373333pt;}
.y175_c01322{bottom:443.133333pt;}
.y173_c01322{bottom:450.813333pt;}
.y171_c01322{bottom:452.346667pt;}
.y172_c01322{bottom:453.120000pt;}
.y170_c01322{bottom:453.893333pt;}
.y16f_c01322{bottom:455.426667pt;}
.y16c_c01322{bottom:456.186667pt;}
.y16e_c01322{bottom:456.960000pt;}
.y174_c01322{bottom:457.733333pt;}
.y16d_c01322{bottom:462.333333pt;}
.y16b_c01322{bottom:470.786667pt;}
.y169_c01322{bottom:473.093333pt;}
.y166_c01322{bottom:475.386667pt;}
.y16a_c01322{bottom:476.160000pt;}
.y163_c01322{bottom:476.933333pt;}
.y168_c01322{bottom:479.226667pt;}
.y167_c01322{bottom:480.000000pt;}
.y165_c01322{bottom:480.773333pt;}
.y164_c01322{bottom:482.306667pt;}
.y161_c01322{bottom:483.066667pt;}
.y162_c01322{bottom:483.840000pt;}
.y15f_c01322{bottom:489.986667pt;}
.y15e_c01322{bottom:490.746667pt;}
.y15c_c01322{bottom:493.053333pt;}
.y160_c01322{bottom:493.826667pt;}
.y15b_c01322{bottom:494.586667pt;}
.y15a_c01322{bottom:497.666667pt;}
.y15d_c01322{bottom:499.973333pt;}
.y159_c01322{bottom:500.733333pt;}
.y158_c01322{bottom:502.266667pt;}
.y156_c01322{bottom:509.186667pt;}
.y155_c01322{bottom:509.946667pt;}
.y153_c01322{bottom:513.026667pt;}
.y150_c01322{bottom:513.786667pt;}
.y157_c01322{bottom:514.560000pt;}
.y151_c01322{bottom:515.333333pt;}
.y154_c01322{bottom:516.093333pt;}
.y14e_c01322{bottom:517.626667pt;}
.y152_c01322{bottom:518.400000pt;}
.y14f_c01322{bottom:519.173333pt;}
.y14d_c01322{bottom:525.306667pt;}
.y14c_c01322{bottom:527.613333pt;}
.y14b_c01322{bottom:529.146667pt;}
.y149_c01322{bottom:532.986667pt;}
.y14a_c01322{bottom:536.066667pt;}
.y147_c01322{bottom:545.280000pt;}
.y143_c01322{bottom:548.346667pt;}
.y144_c01322{bottom:549.120000pt;}
.y146_c01322{bottom:549.893333pt;}
.y145_c01322{bottom:550.653333pt;}
.y148_c01322{bottom:556.800000pt;}
.y142_c01322{bottom:561.413333pt;}
.y141_c01322{bottom:562.173333pt;}
.y140_c01322{bottom:562.946667pt;}
.y13f_c01322{bottom:565.253333pt;}
.y13e_c01322{bottom:566.786667pt;}
.y13b_c01322{bottom:568.320000pt;}
.y13d_c01322{bottom:569.853333pt;}
.y13c_c01322{bottom:572.160000pt;}
.y139_c01322{bottom:579.840000pt;}
.y138_c01322{bottom:580.613333pt;}
.y13a_c01322{bottom:583.680000pt;}
.y134_c01322{bottom:585.213333pt;}
.y135_c01322{bottom:585.986667pt;}
.y137_c01322{bottom:586.746667pt;}
.y136_c01322{bottom:587.520000pt;}
.y131_c01322{bottom:588.293333pt;}
.y133_c01322{bottom:589.053333pt;}
.y132_c01322{bottom:589.826667pt;}
.y12f_c01322{bottom:597.506667pt;}
.y12d_c01322{bottom:599.040000pt;}
.y12e_c01322{bottom:600.573333pt;}
.y12b_c01322{bottom:601.346667pt;}
.y130_c01322{bottom:602.106667pt;}
.y12c_c01322{bottom:603.653333pt;}
.y12a_c01322{bottom:614.400000pt;}
.y127_c01322{bottom:618.240000pt;}
.y129_c01322{bottom:619.013333pt;}
.y125_c01322{bottom:619.773333pt;}
.y128_c01322{bottom:620.546667pt;}
.y126_c01322{bottom:621.306667pt;}
.y123_c01322{bottom:622.080000pt;}
.y122_c01322{bottom:622.853333pt;}
.y124_c01322{bottom:624.386667pt;}
.y120_c01322{bottom:628.986667pt;}
.y11c_c01322{bottom:631.293333pt;}
.y11e_c01322{bottom:632.066667pt;}
.y11a_c01322{bottom:633.600000pt;}
.y119_c01322{bottom:634.373333pt;}
.y11b_c01322{bottom:635.133333pt;}
.y117_c01322{bottom:635.906667pt;}
.y11f_c01322{bottom:637.440000pt;}
.y118_c01322{bottom:638.213333pt;}
.y11d_c01322{bottom:640.506667pt;}
.y121_c01322{bottom:648.186667pt;}
.y116_c01322{bottom:650.493333pt;}
.y115_c01322{bottom:652.026667pt;}
.y110_c01322{bottom:654.333333pt;}
.y113_c01322{bottom:655.106667pt;}
.y10e_c01322{bottom:655.866667pt;}
.y114_c01322{bottom:656.640000pt;}
.y10c_c01322{bottom:657.413333pt;}
.y10d_c01322{bottom:658.173333pt;}
.y111_c01322{bottom:658.946667pt;}
.y10f_c01322{bottom:661.253333pt;}
.y112_c01322{bottom:668.160000pt;}
.y10b_c01322{bottom:668.933333pt;}
.y10a_c01322{bottom:669.693333pt;}
.y105_c01322{bottom:675.840000pt;}
.y109_c01322{bottom:676.613333pt;}
.y108_c01322{bottom:677.373333pt;}
.y106_c01322{bottom:678.146667pt;}
.y107_c01322{bottom:679.680000pt;}
.y103_c01322{bottom:687.360000pt;}
.y102_c01322{bottom:688.133333pt;}
.y100_c01322{bottom:690.426667pt;}
.y104_c01322{bottom:691.973333pt;}
.yfe_c01322{bottom:692.733333pt;}
.y101_c01322{bottom:693.506667pt;}
.yfd_c01322{bottom:694.266667pt;}
.yff_c01322{bottom:695.040000pt;}
.yfb_c01322{bottom:696.573333pt;}
.yfc_c01322{bottom:698.106667pt;}
.y20b_c01322{bottom:705.026667pt;}
.yfa_c01322{bottom:705.786667pt;}
.yf9_c01322{bottom:706.560000pt;}
.yf7_c01322{bottom:708.866667pt;}
.y20a_c01322{bottom:709.626667pt;}
.yf8_c01322{bottom:710.400000pt;}
.yf6_c01322{bottom:711.173333pt;}
.yf5_c01322{bottom:714.240000pt;}
.yf4_c01322{bottom:715.013333pt;}
.yf3_c01322{bottom:717.306667pt;}
.y209_c01322{bottom:720.386667pt;}
.yf1_c01322{bottom:724.226667pt;}
.yf0_c01322{bottom:725.760000pt;}
.yf2_c01322{bottom:727.293333pt;}
.yeb_c01322{bottom:728.826667pt;}
.yec_c01322{bottom:729.600000pt;}
.y208_c01322{bottom:730.373333pt;}
.yef_c01322{bottom:731.133333pt;}
.yed_c01322{bottom:731.906667pt;}
.yee_c01322{bottom:732.666667pt;}
.yea_c01322{bottom:734.973333pt;}
.y207_c01322{bottom:735.746667pt;}
.ye9_c01322{bottom:742.653333pt;}
.ye7_c01322{bottom:744.186667pt;}
.ye8_c01322{bottom:744.960000pt;}
.ye5_c01322{bottom:745.733333pt;}
.ye6_c01322{bottom:747.266667pt;}
.ye2_c01322{bottom:748.026667pt;}
.ye4_c01322{bottom:750.333333pt;}
.ye3_c01322{bottom:751.866667pt;}
.y206_c01322{bottom:757.253333pt;}
.ye1_c01322{bottom:760.320000pt;}
.ye0_c01322{bottom:761.093333pt;}
.y205_c01322{bottom:761.853333pt;}
.ydf_c01322{bottom:762.626667pt;}
.ydb_c01322{bottom:764.160000pt;}
.yda_c01322{bottom:764.933333pt;}
.yd9_c01322{bottom:765.693333pt;}
.yde_c01322{bottom:766.466667pt;}
.ydd_c01322{bottom:767.226667pt;}
.ydc_c01322{bottom:768.773333pt;}
.y204_c01322{bottom:771.066667pt;}
.yd8_c01322{bottom:777.213333pt;}
.yd3_c01322{bottom:780.293333pt;}
.yd5_c01322{bottom:781.053333pt;}
.yd6_c01322{bottom:781.826667pt;}
.yd7_c01322{bottom:782.586667pt;}
.yd1_c01322{bottom:784.133333pt;}
.yd4_c01322{bottom:784.893333pt;}
.yd2_c01322{bottom:785.666667pt;}
.yd0_c01322{bottom:786.426667pt;}
.ycd_c01322{bottom:787.200000pt;}
.ycf_c01322{bottom:787.973333pt;}
.yce_c01322{bottom:788.733333pt;}
.ycc_c01322{bottom:794.106667pt;}
.yc8_c01322{bottom:796.413333pt;}
.yc9_c01322{bottom:797.186667pt;}
.ycb_c01322{bottom:798.720000pt;}
.yc6_c01322{bottom:799.493333pt;}
.yca_c01322{bottom:800.253333pt;}
.yc7_c01322{bottom:802.560000pt;}
.yc4_c01322{bottom:804.093333pt;}
.yc5_c01322{bottom:804.866667pt;}
.yc3_c01322{bottom:805.626667pt;}
.y203_c01322{bottom:809.466667pt;}
.yc2_c01322{bottom:817.146667pt;}
.ybf_c01322{bottom:817.920000pt;}
.ybd_c01322{bottom:818.693333pt;}
.yc1_c01322{bottom:820.226667pt;}
.ybb_c01322{bottom:820.986667pt;}
.ybe_c01322{bottom:822.533333pt;}
.ybc_c01322{bottom:823.293333pt;}
.yc0_c01322{bottom:828.666667pt;}
.yb7_c01322{bottom:830.213333pt;}
.yb6_c01322{bottom:830.973333pt;}
.yba_c01322{bottom:833.280000pt;}
.yb3_c01322{bottom:834.813333pt;}
.yb9_c01322{bottom:836.346667pt;}
.yb0_c01322{bottom:837.120000pt;}
.yb4_c01322{bottom:837.893333pt;}
.yb5_c01322{bottom:838.653333pt;}
.yb1_c01322{bottom:839.426667pt;}
.yb2_c01322{bottom:840.186667pt;}
.y202_c01322{bottom:840.960000pt;}
.yb8_c01322{bottom:842.493333pt;}
.yaf_c01322{bottom:847.866667pt;}
.yae_c01322{bottom:850.173333pt;}
.yac_c01322{bottom:851.706667pt;}
.ya9_c01322{bottom:854.786667pt;}
.yad_c01322{bottom:855.546667pt;}
.ya6_c01322{bottom:856.320000pt;}
.yaa_c01322{bottom:857.093333pt;}
.yab_c01322{bottom:857.853333pt;}
.ya8_c01322{bottom:859.386667pt;}
.ya7_c01322{bottom:860.160000pt;}
.ya4_c01322{bottom:866.306667pt;}
.ya3_c01322{bottom:867.066667pt;}
.ya5_c01322{bottom:868.613333pt;}
.ya1_c01322{bottom:869.373333pt;}
.ya2_c01322{bottom:870.146667pt;}
.y9e_c01322{bottom:871.680000pt;}
.y9d_c01322{bottom:872.453333pt;}
.y9f_c01322{bottom:873.213333pt;}
.ya0_c01322{bottom:873.986667pt;}
.y9c_c01322{bottom:875.520000pt;}
.y9a_c01322{bottom:884.733333pt;}
.y94_c01322{bottom:887.813333pt;}
.y93_c01322{bottom:889.346667pt;}
.y99_c01322{bottom:890.106667pt;}
.y98_c01322{bottom:890.880000pt;}
.y97_c01322{bottom:891.653333pt;}
.y96_c01322{bottom:892.413333pt;}
.y95_c01322{bottom:893.186667pt;}
.y92_c01322{bottom:894.720000pt;}
.y9b_c01322{bottom:895.493333pt;}
.y8f_c01322{bottom:903.173333pt;}
.y90_c01322{bottom:903.933333pt;}
.y8e_c01322{bottom:904.706667pt;}
.y8b_c01322{bottom:907.013333pt;}
.y91_c01322{bottom:908.546667pt;}
.y8d_c01322{bottom:909.306667pt;}
.y8c_c01322{bottom:910.853333pt;}
.y8a_c01322{bottom:911.613333pt;}
.y89_c01322{bottom:913.146667pt;}
.y87_c01322{bottom:925.440000pt;}
.y88_c01322{bottom:928.506667pt;}
.y86_c01322{bottom:929.280000pt;}
.y85_c01322{bottom:930.053333pt;}
.y84_c01322{bottom:930.813333pt;}
.y83_c01322{bottom:937.733333pt;}
.y81_c01322{bottom:939.266667pt;}
.y201_c01322{bottom:941.573333pt;}
.y7f_c01322{bottom:942.333333pt;}
.y82_c01322{bottom:943.866667pt;}
.y80_c01322{bottom:944.640000pt;}
.y7c_c01322{bottom:945.413333pt;}
.y7e_c01322{bottom:946.946667pt;}
.y7d_c01322{bottom:947.706667pt;}
.y7b_c01322{bottom:948.480000pt;}
.y7a_c01322{bottom:956.160000pt;}
.y77_c01322{bottom:959.226667pt;}
.y79_c01322{bottom:960.000000pt;}
.y72_c01322{bottom:961.533333pt;}
.y78_c01322{bottom:962.306667pt;}
.y71_c01322{bottom:963.066667pt;}
.y75_c01322{bottom:964.613333pt;}
.y74_c01322{bottom:965.373333pt;}
.y73_c01322{bottom:966.146667pt;}
.y76_c01322{bottom:970.746667pt;}
.y70_c01322{bottom:974.586667pt;}
.y6f_c01322{bottom:975.360000pt;}
.y6e_c01322{bottom:976.893333pt;}
.y6b_c01322{bottom:978.426667pt;}
.y6c_c01322{bottom:979.200000pt;}
.y69_c01322{bottom:981.506667pt;}
.y6d_c01322{bottom:982.266667pt;}
.y6a_c01322{bottom:983.813333pt;}
.y68_c01322{bottom:985.346667pt;}
.y67_c01322{bottom:986.106667pt;}
.y65_c01322{bottom:992.253333pt;}
.y64_c01322{bottom:993.026667pt;}
.y63_c01322{bottom:996.093333pt;}
.y66_c01322{bottom:996.866667pt;}
.y62_c01322{bottom:997.626667pt;}
.y5f_c01322{bottom:998.400000pt;}
.y61_c01322{bottom:1000.706667pt;}
.y60_c01322{bottom:1001.466667pt;}
.y5e_c01322{bottom:1010.693333pt;}
.y5c_c01322{bottom:1012.226667pt;}
.y5a_c01322{bottom:1012.986667pt;}
.y58_c01322{bottom:1013.760000pt;}
.y5d_c01322{bottom:1015.293333pt;}
.y5b_c01322{bottom:1016.066667pt;}
.y59_c01322{bottom:1016.826667pt;}
.y56_c01322{bottom:1019.133333pt;}
.y57_c01322{bottom:1020.666667pt;}
.y53_c01322{bottom:1029.120000pt;}
.y51_c01322{bottom:1029.893333pt;}
.y52_c01322{bottom:1030.653333pt;}
.y4f_c01322{bottom:1032.186667pt;}
.y54_c01322{bottom:1032.960000pt;}
.y4c_c01322{bottom:1033.733333pt;}
.y50_c01322{bottom:1034.493333pt;}
.y55_c01322{bottom:1036.026667pt;}
.y4e_c01322{bottom:1036.800000pt;}
.y4d_c01322{bottom:1038.333333pt;}
.y4b_c01322{bottom:1039.106667pt;}
.y49_c01322{bottom:1047.546667pt;}
.y46_c01322{bottom:1049.093333pt;}
.y4a_c01322{bottom:1049.853333pt;}
.y48_c01322{bottom:1052.160000pt;}
.y47_c01322{bottom:1052.933333pt;}
.y41_c01322{bottom:1053.693333pt;}
.y45_c01322{bottom:1054.466667pt;}
.y44_c01322{bottom:1055.226667pt;}
.y42_c01322{bottom:1056.000000pt;}
.y43_c01322{bottom:1056.773333pt;}
.y3f_c01322{bottom:1064.453333pt;}
.y3c_c01322{bottom:1066.746667pt;}
.y3a_c01322{bottom:1068.293333pt;}
.y3e_c01322{bottom:1069.053333pt;}
.y3d_c01322{bottom:1069.826667pt;}
.y36_c01322{bottom:1070.586667pt;}
.y3b_c01322{bottom:1071.360000pt;}
.y39_c01322{bottom:1073.666667pt;}
.y38_c01322{bottom:1074.426667pt;}
.y37_c01322{bottom:1075.200000pt;}
.y40_c01322{bottom:1079.813333pt;}
.y34_c01322{bottom:1084.413333pt;}
.y32_c01322{bottom:1085.186667pt;}
.y35_c01322{bottom:1085.946667pt;}
.y2d_c01322{bottom:1086.720000pt;}
.y33_c01322{bottom:1087.493333pt;}
.y31_c01322{bottom:1088.253333pt;}
.y30_c01322{bottom:1089.026667pt;}
.y2f_c01322{bottom:1090.560000pt;}
.y2e_c01322{bottom:1091.333333pt;}
.y2c_c01322{bottom:1092.093333pt;}
.y28_c01322{bottom:1100.546667pt;}
.y29_c01322{bottom:1101.306667pt;}
.y2b_c01322{bottom:1102.080000pt;}
.y25_c01322{bottom:1103.613333pt;}
.y2a_c01322{bottom:1105.146667pt;}
.y27_c01322{bottom:1106.693333pt;}
.y22_c01322{bottom:1108.226667pt;}
.y24_c01322{bottom:1108.986667pt;}
.y23_c01322{bottom:1109.760000pt;}
.y21_c01322{bottom:1110.533333pt;}
.y26_c01322{bottom:1114.373333pt;}
.y20_c01322{bottom:1116.666667pt;}
.y1e_c01322{bottom:1118.973333pt;}
.y1d_c01322{bottom:1121.280000pt;}
.y1c_c01322{bottom:1122.053333pt;}
.y1b_c01322{bottom:1123.586667pt;}
.y1f_c01322{bottom:1124.346667pt;}
.y19_c01322{bottom:1125.893333pt;}
.y1a_c01322{bottom:1128.186667pt;}
.y17_c01322{bottom:1136.640000pt;}
.y16_c01322{bottom:1138.946667pt;}
.y18_c01322{bottom:1140.480000pt;}
.y14_c01322{bottom:1142.013333pt;}
.y15_c01322{bottom:1145.853333pt;}
.y200_c01322{bottom:1147.386667pt;}
.y13_c01322{bottom:1155.066667pt;}
.y12_c01322{bottom:1155.840000pt;}
.y10_c01322{bottom:1156.613333pt;}
.ye_c01322{bottom:1157.373333pt;}
.yc_c01322{bottom:1158.906667pt;}
.ya_c01322{bottom:1159.680000pt;}
.y11_c01322{bottom:1160.453333pt;}
.yb_c01322{bottom:1161.213333pt;}
.yd_c01322{bottom:1162.746667pt;}
.y8_c01322{bottom:1171.200000pt;}
.yf_c01322{bottom:1174.266667pt;}
.y7_c01322{bottom:1175.040000pt;}
.y4_c01322{bottom:1176.573333pt;}
.y9_c01322{bottom:1177.346667pt;}
.y5_c01322{bottom:1178.106667pt;}
.y6_c01322{bottom:1181.186667pt;}
.y2_c01322{bottom:1182.720000pt;}
.y3_c01322{bottom:1183.493333pt;}
.y1ff_c01322{bottom:1199.613333pt;}
.y1_c01322{bottom:1202.693333pt;}
.y1fe_c01322{bottom:1205.760000pt;}
.he_c01322{height:2.764500pt;}
.h1d_c01322{height:4.799479pt;}
.h14_c01322{height:5.519401pt;}
.h17_c01322{height:8.303099pt;}
.h1e_c01322{height:11.038802pt;}
.h16_c01322{height:13.822500pt;}
.h11_c01322{height:16.606198pt;}
.h1c_c01322{height:19.341901pt;}
.h1a_c01322{height:22.125599pt;}
.h1f_c01322{height:24.861302pt;}
.h1b_c01322{height:27.645000pt;}
.h12_c01322{height:30.428698pt;}
.h13_c01322{height:33.164401pt;}
.h19_c01322{height:35.948099pt;}
.h8_c01322{height:38.683802pt;}
.h9_c01322{height:41.467500pt;}
.h4_c01322{height:44.251198pt;}
.h3_c01322{height:46.986901pt;}
.h18_c01322{height:47.344531pt;}
.h2_c01322{height:49.770599pt;}
.h5_c01322{height:52.506302pt;}
.hb_c01322{height:55.290000pt;}
.hc_c01322{height:58.073698pt;}
.h7_c01322{height:60.809401pt;}
.hd_c01322{height:63.593099pt;}
.h6_c01322{height:66.328802pt;}
.hf_c01322{height:69.112500pt;}
.h15_c01322{height:71.896198pt;}
.h10_c01322{height:74.631901pt;}
.ha_c01322{height:77.415599pt;}
.h21_c01322{height:80.151302pt;}
.h20_c01322{height:82.935000pt;}
.h25_c01322{height:85.718698pt;}
.h22_c01322{height:91.238099pt;}
.h27_c01322{height:105.060599pt;}
.h26_c01322{height:107.796302pt;}
.h23_c01322{height:110.580000pt;}
.h24_c01322{height:113.363698pt;}
.h1_c01322{height:1345.333333pt;}
.h0_c01322{height:1345.533333pt;}
.w1_c01322{width:956.666667pt;}
.w0_c01322{width:956.933333pt;}
.x0_c01322{left:0.000000pt;}
.xf3_c01322{left:72.960000pt;}
.x111_c01322{left:111.360000pt;}
.x112_c01322{left:130.560000pt;}
.xf4_c01322{left:145.920000pt;}
.x94_c01322{left:158.973333pt;}
.xf5_c01322{left:164.346667pt;}
.x95_c01322{left:168.960000pt;}
.x96_c01322{left:175.106667pt;}
.x97_c01322{left:188.160000pt;}
.x58_c01322{left:190.466667pt;}
.x100_c01322{left:193.533333pt;}
.xa2_c01322{left:196.613333pt;}
.xd0_c01322{left:198.146667pt;}
.xad_c01322{left:199.680000pt;}
.xdb_c01322{left:201.986667pt;}
.xa8_c01322{left:203.520000pt;}
.xa3_c01322{left:205.053333pt;}
.xe2_c01322{left:206.586667pt;}
.xca_c01322{left:208.133333pt;}
.xc1_c01322{left:209.666667pt;}
.xae_c01322{left:211.200000pt;}
.x8e_c01322{left:212.733333pt;}
.x83_c01322{left:214.266667pt;}
.x7e_c01322{left:215.813333pt;}
.x72_c01322{left:217.346667pt;}
.x59_c01322{left:218.880000pt;}
.x24_c01322{left:220.413333pt;}
.x1_c01322{left:222.720000pt;}
.x109_c01322{left:224.253333pt;}
.xea_c01322{left:227.333333pt;}
.xcb_c01322{left:228.866667pt;}
.xaf_c01322{left:231.173333pt;}
.x9c_c01322{left:233.466667pt;}
.xbd_c01322{left:235.013333pt;}
.x98_c01322{left:237.306667pt;}
.xe4_c01322{left:238.853333pt;}
.xee_c01322{left:240.386667pt;}
.x3b_c01322{left:244.986667pt;}
.x73_c01322{left:249.600000pt;}
.xc2_c01322{left:252.666667pt;}
.x25_c01322{left:255.746667pt;}
.xe5_c01322{left:257.280000pt;}
.x16_c01322{left:258.813333pt;}
.x5a_c01322{left:260.346667pt;}
.x8f_c01322{left:261.893333pt;}
.x10a_c01322{left:264.186667pt;}
.xfb_c01322{left:265.733333pt;}
.x2_c01322{left:268.800000pt;}
.x62_c01322{left:271.106667pt;}
.x10c_c01322{left:274.173333pt;}
.xb0_c01322{left:278.013333pt;}
.x30_c01322{left:279.546667pt;}
.xd7_c01322{left:282.626667pt;}
.x1c_c01322{left:284.160000pt;}
.xa4_c01322{left:285.693333pt;}
.x3_c01322{left:287.226667pt;}
.x10e_c01322{left:290.306667pt;}
.xc5_c01322{left:293.373333pt;}
.x4c_c01322{left:297.213333pt;}
.xd_c01322{left:299.520000pt;}
.x6b_c01322{left:301.053333pt;}
.x4d_c01322{left:303.360000pt;}
.x31_c01322{left:304.893333pt;}
.xb9_c01322{left:306.426667pt;}
.x26_c01322{left:308.733333pt;}
.x17_c01322{left:310.266667pt;}
.x84_c01322{left:312.573333pt;}
.xfc_c01322{left:314.880000pt;}
.x105_c01322{left:316.413333pt;}
.xe6_c01322{left:318.720000pt;}
.xb1_c01322{left:321.026667pt;}
.xf6_c01322{left:322.560000pt;}
.xd3_c01322{left:324.866667pt;}
.x4_c01322{left:326.400000pt;}
.x3c_c01322{left:329.466667pt;}
.xcc_c01322{left:332.546667pt;}
.x99_c01322{left:334.080000pt;}
.x18_c01322{left:336.386667pt;}
.xa9_c01322{left:340.226667pt;}
.x45_c01322{left:342.533333pt;}
.xd8_c01322{left:344.066667pt;}
.x1d_c01322{left:346.373333pt;}
.x6c_c01322{left:347.906667pt;}
.x5b_c01322{left:350.213333pt;}
.x4e_c01322{left:354.053333pt;}
.x6d_c01322{left:357.120000pt;}
.xba_c01322{left:359.426667pt;}
.x85_c01322{left:360.960000pt;}
.xb2_c01322{left:362.493333pt;}
.xe_c01322{left:364.026667pt;}
.xb5_c01322{left:366.333333pt;}
.x3d_c01322{left:368.640000pt;}
.xc8_c01322{left:370.173333pt;}
.xeb_c01322{left:373.253333pt;}
.x27_c01322{left:377.853333pt;}
.x4f_c01322{left:382.466667pt;}
.xc6_c01322{left:384.000000pt;}
.x28_c01322{left:385.533333pt;}
.x32_c01322{left:390.906667pt;}
.x78_c01322{left:393.213333pt;}
.x9d_c01322{left:395.520000pt;}
.x9a_c01322{left:397.826667pt;}
.x1e_c01322{left:399.360000pt;}
.xf_c01322{left:401.666667pt;}
.x29_c01322{left:404.733333pt;}
.xd9_c01322{left:407.813333pt;}
.xde_c01322{left:409.346667pt;}
.x46_c01322{left:411.653333pt;}
.x5_c01322{left:413.946667pt;}
.x79_c01322{left:416.253333pt;}
.x86_c01322{left:417.786667pt;}
.xdc_c01322{left:419.333333pt;}
.x33_c01322{left:423.173333pt;}
.xbe_c01322{left:424.706667pt;}
.xcd_c01322{left:427.013333pt;}
.xfd_c01322{left:428.546667pt;}
.xe8_c01322{left:430.080000pt;}
.x7c_c01322{left:431.613333pt;}
.xc3_c01322{left:433.920000pt;}
.xd1_c01322{left:435.453333pt;}
.x7f_c01322{left:437.760000pt;}
.x9b_c01322{left:440.066667pt;}
.x34_c01322{left:443.133333pt;}
.xb6_c01322{left:444.666667pt;}
.xc9_c01322{left:446.213333pt;}
.x101_c01322{left:448.506667pt;}
.x74_c01322{left:451.586667pt;}
.x50_c01322{left:453.120000pt;}
.x47_c01322{left:455.426667pt;}
.x6_c01322{left:456.960000pt;}
.x3e_c01322{left:459.266667pt;}
.xa5_c01322{left:461.573333pt;}
.x51_c01322{left:463.106667pt;}
.xbf_c01322{left:465.413333pt;}
.x102_c01322{left:471.546667pt;}
.x90_c01322{left:476.160000pt;}
.xa6_c01322{left:477.693333pt;}
.x63_c01322{left:480.773333pt;}
.x35_c01322{left:484.613333pt;}
.x10b_c01322{left:486.146667pt;}
.x10f_c01322{left:487.680000pt;}
.x87_c01322{left:489.213333pt;}
.xe3_c01322{left:490.746667pt;}
.x75_c01322{left:493.053333pt;}
.x7_c01322{left:495.360000pt;}
.x80_c01322{left:496.893333pt;}
.x10_c01322{left:499.973333pt;}
.xbb_c01322{left:501.506667pt;}
.xc7_c01322{left:503.040000pt;}
.x88_c01322{left:505.346667pt;}
.x5c_c01322{left:506.880000pt;}
.x52_c01322{left:508.413333pt;}
.x11_c01322{left:510.720000pt;}
.x8_c01322{left:512.253333pt;}
.xe9_c01322{left:516.093333pt;}
.x81_c01322{left:519.173333pt;}
.xc4_c01322{left:521.466667pt;}
.x6e_c01322{left:523.013333pt;}
.x36_c01322{left:524.546667pt;}
.x2a_c01322{left:526.080000pt;}
.x7d_c01322{left:527.613333pt;}
.xce_c01322{left:530.693333pt;}
.x64_c01322{left:532.986667pt;}
.xef_c01322{left:535.293333pt;}
.x53_c01322{left:537.600000pt;}
.x91_c01322{left:539.133333pt;}
.xd5_c01322{left:540.666667pt;}
.x5d_c01322{left:543.746667pt;}
.x65_c01322{left:545.280000pt;}
.x9_c01322{left:548.346667pt;}
.x19_c01322{left:551.426667pt;}
.x2b_c01322{left:552.960000pt;}
.x9e_c01322{left:556.026667pt;}
.x1f_c01322{left:557.573333pt;}
.xf8_c01322{left:559.866667pt;}
.x66_c01322{left:562.946667pt;}
.x76_c01322{left:567.546667pt;}
.x3f_c01322{left:569.853333pt;}
.x7a_c01322{left:574.466667pt;}
.xfe_c01322{left:576.000000pt;}
.x106_c01322{left:578.306667pt;}
.x54_c01322{left:579.840000pt;}
.xdd_c01322{left:582.906667pt;}
.x2c_c01322{left:585.213333pt;}
.x40_c01322{left:588.293333pt;}
.x48_c01322{left:589.826667pt;}
.x103_c01322{left:591.360000pt;}
.xbc_c01322{left:592.893333pt;}
.x10d_c01322{left:594.426667pt;}
.x37_c01322{left:595.973333pt;}
.x92_c01322{left:599.040000pt;}
.x5e_c01322{left:600.573333pt;}
.x6f_c01322{left:605.946667pt;}
.xf9_c01322{left:607.493333pt;}
.x41_c01322{left:609.026667pt;}
.x38_c01322{left:611.333333pt;}
.x12_c01322{left:612.866667pt;}
.x82_c01322{left:614.400000pt;}
.x9f_c01322{left:616.706667pt;}
.x5f_c01322{left:619.013333pt;}
.x20_c01322{left:621.306667pt;}
.x55_c01322{left:624.386667pt;}
.x67_c01322{left:626.693333pt;}
.xff_c01322{left:628.226667pt;}
.xf7_c01322{left:629.760000pt;}
.x13_c01322{left:632.066667pt;}
.x89_c01322{left:633.600000pt;}
.x2d_c01322{left:635.133333pt;}
.x8a_c01322{left:638.973333pt;}
.x107_c01322{left:642.053333pt;}
.x93_c01322{left:645.120000pt;}
.x14_c01322{left:646.653333pt;}
.x68_c01322{left:648.186667pt;}
.x7b_c01322{left:649.733333pt;}
.xaa_c01322{left:651.266667pt;}
.x42_c01322{left:653.573333pt;}
.xa_c01322{left:655.106667pt;}
.xb7_c01322{left:658.173333pt;}
.x60_c01322{left:661.253333pt;}
.xb3_c01322{left:663.546667pt;}
.x69_c01322{left:665.853333pt;}
.x39_c01322{left:668.933333pt;}
.xf1_c01322{left:670.466667pt;}
.x56_c01322{left:672.773333pt;}
.x2e_c01322{left:675.840000pt;}
.xe7_c01322{left:677.373333pt;}
.xb_c01322{left:679.680000pt;}
.xd6_c01322{left:681.213333pt;}
.x21_c01322{left:682.746667pt;}
.x108_c01322{left:684.293333pt;}
.x49_c01322{left:685.826667pt;}
.xec_c01322{left:688.133333pt;}
.x1a_c01322{left:691.200000pt;}
.xd4_c01322{left:693.506667pt;}
.x61_c01322{left:695.040000pt;}
.xfa_c01322{left:696.573333pt;}
.x110_c01322{left:700.413333pt;}
.x15_c01322{left:701.946667pt;}
.x104_c01322{left:703.493333pt;}
.xa0_c01322{left:705.026667pt;}
.xdf_c01322{left:706.560000pt;}
.x22_c01322{left:708.093333pt;}
.x70_c01322{left:710.400000pt;}
.xa7_c01322{left:712.706667pt;}
.x43_c01322{left:714.240000pt;}
.xb4_c01322{left:717.306667pt;}
.x3a_c01322{left:718.853333pt;}
.x8b_c01322{left:721.920000pt;}
.xcf_c01322{left:724.226667pt;}
.xc_c01322{left:725.760000pt;}
.x4a_c01322{left:728.066667pt;}
.x1b_c01322{left:730.373333pt;}
.xf0_c01322{left:732.666667pt;}
.xe0_c01322{left:734.973333pt;}
.xab_c01322{left:738.813333pt;}
.xed_c01322{left:741.120000pt;}
.x71_c01322{left:742.653333pt;}
.x23_c01322{left:744.960000pt;}
.xac_c01322{left:747.266667pt;}
.xc0_c01322{left:749.573333pt;}
.x6a_c01322{left:751.106667pt;}
.x57_c01322{left:752.640000pt;}
.x8c_c01322{left:757.253333pt;}
.xb8_c01322{left:763.386667pt;}
.x4b_c01322{left:769.533333pt;}
.x77_c01322{left:771.840000pt;}
.xf2_c01322{left:773.373333pt;}
.x44_c01322{left:774.906667pt;}
.xda_c01322{left:777.213333pt;}
.xd2_c01322{left:778.746667pt;}
.x8d_c01322{left:780.293333pt;}
.x2f_c01322{left:783.360000pt;}
.xa1_c01322{left:787.200000pt;}
.xe1_c01322{left:793.346667pt;}
.x11e_c01322{left:811.013333pt;}
.x11f_c01322{left:824.826667pt;}
.x113_c01322{left:839.426667pt;}
.x114_c01322{left:846.333333pt;}
.x116_c01322{left:860.160000pt;}
.x118_c01322{left:862.466667pt;}
.x117_c01322{left:865.533333pt;}
.x115_c01322{left:867.066667pt;}
.x120_c01322{left:897.026667pt;}
.x119_c01322{left:910.080000pt;}
.x11a_c01322{left:925.440000pt;}
.x11b_c01322{left:934.653333pt;}
.x11c_c01322{left:941.573333pt;}
.x11d_c01322{left:945.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01323;src:url('chunks/assets/font_29e7c9849eca4949705957e9.woff2')format("woff");}.ff1_c01323{font-family:ff1_c01323;line-height:1.109863;font-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_c01323{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m10_c01323{transform:matrix(0.040500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040500,0.000000,0.000000,0.250000,0,0);}
.m19d_c01323{transform:matrix(0.046275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046275,0.000000,0.000000,0.250000,0,0);}
.m19e_c01323{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m19f_c01323{transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062575,0.000000,0.000000,0.250000,0,0);}
.mf_c01323{transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101600,0.000000,0.000000,0.250000,0,0);}
.m54_c01323{transform:matrix(0.104525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104525,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01323{transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106175,0.000000,0.000000,0.250000,0,0);}
.m7a_c01323{transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107325,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01323{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m172_c01323{transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);}
.m5b_c01323{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);}
.mdf_c01323{transform:matrix(0.118250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118250,0.000000,0.000000,0.250000,0,0);}
.m161_c01323{transform:matrix(0.119700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119700,0.000000,0.000000,0.250000,0,0);}
.m15c_c01323{transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120550,0.000000,0.000000,0.250000,0,0);}
.mdb_c01323{transform:matrix(0.121625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121625,0.000000,0.000000,0.250000,0,0);}
.m7_c01323{transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);}
.m7b_c01323{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01323{transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);}
.mdc_c01323{transform:matrix(0.127075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127075,0.000000,0.000000,0.250000,0,0);}
.ma4_c01323{transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);}
.m61_c01323{transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);}
.maa_c01323{transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127925,0.000000,0.000000,0.250000,0,0);}
.mfa_c01323{transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);}
.m19c_c01323{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.md4_c01323{transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);}
.m132_c01323{transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);}
.m56_c01323{transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132800,0.000000,0.000000,0.250000,0,0);}
.me2_c01323{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.m19a_c01323{transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133450,0.000000,0.000000,0.250000,0,0);}
.m199_c01323{transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136550,0.000000,0.000000,0.250000,0,0);}
.m13a_c01323{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m182_c01323{transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);}
.md6_c01323{transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);}
.m191_c01323{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.med_c01323{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);}
.m111_c01323{transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142250,0.000000,0.000000,0.250000,0,0);}
.md0_c01323{transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);}
.m15_c01323{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01323{transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);}
.m55_c01323{transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144550,0.000000,0.000000,0.250000,0,0);}
.m196_c01323{transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144800,0.000000,0.000000,0.250000,0,0);}
.me3_c01323{transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145100,0.000000,0.000000,0.250000,0,0);}
.m10a_c01323{transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145375,0.000000,0.000000,0.250000,0,0);}
.m156_c01323{transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);}
.mc3_c01323{transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146550,0.000000,0.000000,0.250000,0,0);}
.m74_c01323{transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146700,0.000000,0.000000,0.250000,0,0);}
.md9_c01323{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);}
.m159_c01323{transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148225,0.000000,0.000000,0.250000,0,0);}
.mda_c01323{transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);}
.m8b_c01323{transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148725,0.000000,0.000000,0.250000,0,0);}
.m13b_c01323{transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);}
.m116_c01323{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);}
.m192_c01323{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);}
.m19b_c01323{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);}
.ma9_c01323{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m113_c01323{transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);}
.m58_c01323{transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);}
.m150_c01323{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.me1_c01323{transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152100,0.000000,0.000000,0.250000,0,0);}
.md1_c01323{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);}
.m178_c01323{transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);}
.mdd_c01323{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);}
.mbc_c01323{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);}
.m95_c01323{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);}
.m13d_c01323{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m133_c01323{transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);}
.ma5_c01323{transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);}
.mef_c01323{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.m115_c01323{transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160750,0.000000,0.000000,0.250000,0,0);}
.m8d_c01323{transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);}
.m118_c01323{transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);}
.mc9_c01323{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.mf8_c01323{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.mad_c01323{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);}
.mbd_c01323{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m169_c01323{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);}
.m5c_c01323{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.ma6_c01323{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.mae_c01323{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);}
.ma7_c01323{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m9e_c01323{transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);}
.m135_c01323{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.mcb_c01323{transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168575,0.000000,0.000000,0.250000,0,0);}
.m167_c01323{transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);}
.mc1_c01323{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m17f_c01323{transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172175,0.000000,0.000000,0.250000,0,0);}
.m9c_c01323{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m82_c01323{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.m8_c01323{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m171_c01323{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.mf7_c01323{transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175125,0.000000,0.000000,0.250000,0,0);}
.m6a_c01323{transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);}
.mc5_c01323{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.m4a_c01323{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.mc0_c01323{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m15b_c01323{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mc2_c01323{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m12b_c01323{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);}
.maf_c01323{transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180175,0.000000,0.000000,0.250000,0,0);}
.m134_c01323{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);}
.m173_c01323{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.mb0_c01323{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);}
.me_c01323{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m99_c01323{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m11e_c01323{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_c01323{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);}
.m16b_c01323{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);}
.mbb_c01323{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);}
.m2d_c01323{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m4d_c01323{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m18a_c01323{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);}
.m13c_c01323{transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186800,0.000000,0.000000,0.250000,0,0);}
.m176_c01323{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);}
.m11b_c01323{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m18d_c01323{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m105_c01323{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);}
.m13_c01323{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m108_c01323{transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);}
.m158_c01323{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.m166_c01323{transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);}
.md3_c01323{transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190025,0.000000,0.000000,0.250000,0,0);}
.m8c_c01323{transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);}
.m57_c01323{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.mf1_c01323{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.m163_c01323{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.m174_c01323{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.mf3_c01323{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);}
.m27_c01323{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);}
.mf4_c01323{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);}
.m14e_c01323{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m10f_c01323{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);}
.mee_c01323{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);}
.m15a_c01323{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);}
.mb1_c01323{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.me0_c01323{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m8a_c01323{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);}
.m9a_c01323{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);}
.m186_c01323{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m165_c01323{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.mcc_c01323{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);}
.m64_c01323{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m4c_c01323{transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198300,0.000000,0.000000,0.250000,0,0);}
.md_c01323{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m30_c01323{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);}
.m14c_c01323{transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);}
.m11f_c01323{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);}
.mf2_c01323{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.m147_c01323{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);}
.m170_c01323{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.m12c_c01323{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01323{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);}
.m10c_c01323{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.mfe_c01323{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m124_c01323{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m131_c01323{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);}
.mbe_c01323{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.mf5_c01323{transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203900,0.000000,0.000000,0.250000,0,0);}
.m126_c01323{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m59_c01323{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m137_c01323{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.m162_c01323{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);}
.m8f_c01323{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.ma8_c01323{transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);}
.m136_c01323{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.mf6_c01323{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.mb8_c01323{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m47_c01323{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m90_c01323{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.m14d_c01323{transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);}
.m127_c01323{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m11_c01323{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);}
.m11d_c01323{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m140_c01323{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m91_c01323{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.mc4_c01323{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.mba_c01323{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m16c_c01323{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);}
.m121_c01323{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m1c_c01323{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m88_c01323{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m110_c01323{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);}
.me5_c01323{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);}
.mf9_c01323{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);}
.m98_c01323{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.mb2_c01323{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);}
.m18c_c01323{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m15f_c01323{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m14a_c01323{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);}
.m67_c01323{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.m104_c01323{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);}
.mc8_c01323{transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);}
.m181_c01323{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);}
.m12e_c01323{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m1d_c01323{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);}
.m16a_c01323{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);}
.m13f_c01323{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);}
.me9_c01323{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.m9d_c01323{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);}
.m71_c01323{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.mfb_c01323{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);}
.m75_c01323{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.m5d_c01323{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);}
.m146_c01323{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);}
.m122_c01323{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m17e_c01323{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);}
.m4e_c01323{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);}
.m142_c01323{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.m16f_c01323{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);}
.mde_c01323{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);}
.meb_c01323{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m148_c01323{transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);}
.me7_c01323{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);}
.m7d_c01323{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);}
.m17d_c01323{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.mbf_c01323{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m17b_c01323{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m23_c01323{transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);}
.m16e_c01323{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m185_c01323{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m28_c01323{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);}
.mea_c01323{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);}
.mcf_c01323{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);}
.m10b_c01323{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);}
.m149_c01323{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);}
.m45_c01323{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);}
.mb9_c01323{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);}
.mc_c01323{transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);}
.m106_c01323{transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);}
.m9f_c01323{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);}
.mcd_c01323{transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);}
.m18e_c01323{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);}
.ma2_c01323{transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);}
.m21_c01323{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);}
.m188_c01323{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);}
.m175_c01323{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);}
.m120_c01323{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_c01323{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);}
.m109_c01323{transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);}
.m141_c01323{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);}
.m117_c01323{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m179_c01323{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.md7_c01323{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);}
.m4b_c01323{transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);}
.me6_c01323{transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);}
.m101_c01323{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m6_c01323{transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);}
.m78_c01323{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);}
.m177_c01323{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.ma0_c01323{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);}
.m14f_c01323{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);}
.m94_c01323{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m5f_c01323{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.md2_c01323{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);}
.m66_c01323{transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);}
.m130_c01323{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);}
.m93_c01323{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);}
.m42_c01323{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m10d_c01323{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);}
.mac_c01323{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);}
.m18b_c01323{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m77_c01323{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.mab_c01323{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);}
.m17a_c01323{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.m187_c01323{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m103_c01323{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);}
.m157_c01323{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);}
.m63_c01323{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);}
.m183_c01323{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);}
.m112_c01323{transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);}
.m13e_c01323{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m197_c01323{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);}
.m87_c01323{transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);}
.m189_c01323{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m1a_c01323{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);}
.m51_c01323{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);}
.mce_c01323{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.m114_c01323{transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);}
.m128_c01323{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);}
.m50_c01323{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);}
.mf0_c01323{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);}
.m79_c01323{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);}
.m72_c01323{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);}
.m1a2_c01323{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m97_c01323{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);}
.m49_c01323{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);}
.mfc_c01323{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);}
.m190_c01323{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);}
.m145_c01323{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);}
.m3a_c01323{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m123_c01323{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);}
.m17c_c01323{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);}
.ma3_c01323{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);}
.m34_c01323{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m139_c01323{transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248050,0.000000,0.000000,0.250000,0,0);}
.m12d_c01323{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m5e_c01323{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);}
.m155_c01323{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.m15d_c01323{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.me8_c01323{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);}
.m125_c01323{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);}
.m10e_c01323{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m73_c01323{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);}
.m3e_c01323{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m14_c01323{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);}
.m16_c01323{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);}
.m39_c01323{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);}
.m2a_c01323{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);}
.m1e_c01323{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3_c01323{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01323{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.ma_c01323{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);}
.m25_c01323{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c01323{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);}
.m2e_c01323{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);}
.m143_c01323{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m43_c01323{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);}
.m36_c01323{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01323{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c01323{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);}
.m29_c01323{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c01323{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);}
.m46_c01323{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);}
.ma1_c01323{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m65_c01323{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m20_c01323{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);}
.m33_c01323{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m96_c01323{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01323{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);}
.m92_c01323{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m19_c01323{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c01323{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01323{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m44_c01323{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01323{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mc6_c01323{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c01323{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01323{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);}
.m32_c01323{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01323{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01323{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m24_c01323{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m70_c01323{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);}
.m6e_c01323{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);}
.m4_c01323{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mb7_c01323{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m84_c01323{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);}
.mb6_c01323{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m41_c01323{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m12f_c01323{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m35_c01323{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01323{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m40_c01323{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);}
.m83_c01323{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.me4_c01323{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mc7_c01323{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m198_c01323{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);}
.mff_c01323{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m81_c01323{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m100_c01323{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01323{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m14b_c01323{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m17_c01323{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m180_c01323{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);}
.m62_c01323{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);}
.m0_c01323{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_c01323{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m194_c01323{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m16d_c01323{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);}
.m3c_c01323{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m76_c01323{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01323{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.md8_c01323{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.md5_c01323{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m80_c01323{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);}
.m85_c01323{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mfd_c01323{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m138_c01323{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m107_c01323{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m12a_c01323{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m154_c01323{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01323{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mb4_c01323{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m52_c01323{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);}
.m86_c01323{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m22_c01323{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m11a_c01323{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m184_c01323{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);}
.m1_c01323{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);}
.m1b_c01323{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m18f_c01323{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);}
.m3f_c01323{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mb5_c01323{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.mec_c01323{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m89_c01323{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m9b_c01323{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m152_c01323{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m15e_c01323{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m31_c01323{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m168_c01323{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);}
.m144_c01323{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m195_c01323{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m26_c01323{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01323{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m69_c01323{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m48_c01323{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01323{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m38_c01323{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.mb3_c01323{transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.745000,0.000000,0.000000,0.250000,0,0);}
.m164_c01323{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);}
.m129_c01323{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m37_c01323{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01323{transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.950000,0.000000,0.000000,0.250000,0,0);}
.m153_c01323{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m160_c01323{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m193_c01323{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m151_c01323{transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);}
.m102_c01323{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m7e_c01323{transform:matrix(2.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.262500,0.000000,0.000000,0.250000,0,0);}
.m119_c01323{transform:matrix(3.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.452500,0.000000,0.000000,0.250000,0,0);}
.mca_c01323{transform:matrix(3.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.742500,0.000000,0.000000,0.250000,0,0);}
.v3_c01323{vertical-align:-17.280000px;}
.v4_c01323{vertical-align:-10.380000px;}
.v1_c01323{vertical-align:-3.420000px;}
.v0_c01323{vertical-align:0.000000px;}
.v2_c01323{vertical-align:6.900000px;}
.ls2_c01323{letter-spacing:0.000000px;}
.ls1_c01323{letter-spacing:24.823152px;}
.ls0_c01323{letter-spacing:44.141400px;}
.sc__c01323{text-shadow:none;}
.sc0_c01323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01323{-webkit-text-stroke:0px transparent;}
.sc0_c01323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01323{word-spacing:-19.077360px;}
.ws0_c01323{word-spacing:-19.048800px;}
.ws2_c01323{word-spacing:-11.800440px;}
.ws3_c01323{word-spacing:0.000000px;}
.fc0_c01323{color:transparent;}
.fsf_c01323{font-size:3.456000px;}
.fs2_c01323{font-size:6.000000px;}
.fs1_c01323{font-size:6.900000px;}
.fs17_c01323{font-size:10.380000px;}
.fs18_c01323{font-size:13.800000px;}
.fs1a_c01323{font-size:17.280000px;}
.fs15_c01323{font-size:20.760000px;}
.fs19_c01323{font-size:24.180000px;}
.fs1c_c01323{font-size:27.660000px;}
.fs0_c01323{font-size:31.080000px;}
.fs12_c01323{font-size:34.560000px;}
.fs16_c01323{font-size:38.040000px;}
.fs11_c01323{font-size:41.460000px;}
.fs14_c01323{font-size:44.940000px;}
.fs3_c01323{font-size:48.360000px;}
.fs9_c01323{font-size:51.840000px;}
.fs8_c01323{font-size:55.320000px;}
.fs5_c01323{font-size:58.740000px;}
.fs10_c01323{font-size:62.220000px;}
.fs13_c01323{font-size:65.640000px;}
.fsa_c01323{font-size:69.120000px;}
.fse_c01323{font-size:72.600000px;}
.fs6_c01323{font-size:76.020000px;}
.fs1b_c01323{font-size:79.500000px;}
.fsb_c01323{font-size:82.920000px;}
.fs1d_c01323{font-size:86.400000px;}
.fs7_c01323{font-size:89.880000px;}
.fs1e_c01323{font-size:93.300000px;}
.fs4_c01323{font-size:96.780000px;}
.fsd_c01323{font-size:100.200000px;}
.fsc_c01323{font-size:103.680000px;}
.fs20_c01323{font-size:131.340000px;}
.fs1f_c01323{font-size:134.760000px;}
.y0_c01323{bottom:0.000000px;}
.y210_c01323{bottom:187.485000px;}
.y211_c01323{bottom:188.355000px;}
.y212_c01323{bottom:189.210000px;}
.y213_c01323{bottom:191.805000px;}
.y215_c01323{bottom:194.400000px;}
.y216_c01323{bottom:195.270000px;}
.y21b_c01323{bottom:196.125000px;}
.y218_c01323{bottom:197.850000px;}
.y214_c01323{bottom:198.720000px;}
.y217_c01323{bottom:201.315000px;}
.y219_c01323{bottom:202.170000px;}
.y21a_c01323{bottom:203.040000px;}
.y20a_c01323{bottom:209.085000px;}
.y20b_c01323{bottom:211.680000px;}
.y208_c01323{bottom:214.275000px;}
.y209_c01323{bottom:215.130000px;}
.y20d_c01323{bottom:216.000000px;}
.y20f_c01323{bottom:221.190000px;}
.y20c_c01323{bottom:222.045000px;}
.y20e_c01323{bottom:223.770000px;}
.y1ff_c01323{bottom:230.685000px;}
.y200_c01323{bottom:231.555000px;}
.y201_c01323{bottom:232.410000px;}
.y1fe_c01323{bottom:234.150000px;}
.y202_c01323{bottom:235.005000px;}
.y204_c01323{bottom:235.875000px;}
.y203_c01323{bottom:239.325000px;}
.y205_c01323{bottom:240.195000px;}
.y206_c01323{bottom:242.790000px;}
.y207_c01323{bottom:243.645000px;}
.y1f5_c01323{bottom:248.835000px;}
.y1f3_c01323{bottom:249.690000px;}
.y1f4_c01323{bottom:250.560000px;}
.y1f7_c01323{bottom:254.880000px;}
.y4_c01323{bottom:256.605000px;}
.y1f6_c01323{bottom:257.475000px;}
.y1fa_c01323{bottom:258.330000px;}
.y1fc_c01323{bottom:259.200000px;}
.y1f8_c01323{bottom:260.070000px;}
.y1f9_c01323{bottom:261.795000px;}
.y1fd_c01323{bottom:262.650000px;}
.y1fb_c01323{bottom:264.390000px;}
.y1ec_c01323{bottom:271.290000px;}
.y1eb_c01323{bottom:273.885000px;}
.y1ef_c01323{bottom:274.755000px;}
.y1ee_c01323{bottom:276.480000px;}
.y1ed_c01323{bottom:278.205000px;}
.y1f1_c01323{bottom:279.075000px;}
.y1f0_c01323{bottom:281.670000px;}
.y1f2_c01323{bottom:282.525000px;}
.y1e1_c01323{bottom:292.890000px;}
.y1e3_c01323{bottom:293.760000px;}
.y1df_c01323{bottom:295.485000px;}
.y1e0_c01323{bottom:296.355000px;}
.y1e4_c01323{bottom:297.210000px;}
.y1e2_c01323{bottom:298.080000px;}
.y1e9_c01323{bottom:298.950000px;}
.y1e5_c01323{bottom:299.805000px;}
.y1e6_c01323{bottom:300.675000px;}
.y1e7_c01323{bottom:304.125000px;}
.y1e8_c01323{bottom:304.995000px;}
.y1ea_c01323{bottom:306.720000px;}
.y1d7_c01323{bottom:308.445000px;}
.y1d8_c01323{bottom:311.040000px;}
.y1d6_c01323{bottom:311.910000px;}
.y1d9_c01323{bottom:312.765000px;}
.y1db_c01323{bottom:313.635000px;}
.y1dd_c01323{bottom:315.360000px;}
.y1dc_c01323{bottom:316.230000px;}
.y1de_c01323{bottom:317.085000px;}
.y1da_c01323{bottom:322.275000px;}
.y234_c01323{bottom:325.725000px;}
.y233_c01323{bottom:327.450000px;}
.y235_c01323{bottom:328.320000px;}
.y1d2_c01323{bottom:335.235000px;}
.y1cd_c01323{bottom:336.090000px;}
.y1ce_c01323{bottom:336.960000px;}
.y1cf_c01323{bottom:337.830000px;}
.y1d0_c01323{bottom:338.685000px;}
.y1d1_c01323{bottom:340.410000px;}
.y1d3_c01323{bottom:343.005000px;}
.y1d5_c01323{bottom:344.730000px;}
.y1d4_c01323{bottom:345.600000px;}
.y1c4_c01323{bottom:352.515000px;}
.y1c5_c01323{bottom:355.110000px;}
.y1c3_c01323{bottom:355.965000px;}
.y1ca_c01323{bottom:357.690000px;}
.y1c8_c01323{bottom:358.560000px;}
.y1c9_c01323{bottom:359.430000px;}
.y1c6_c01323{bottom:361.155000px;}
.y1cc_c01323{bottom:362.010000px;}
.y1c7_c01323{bottom:363.750000px;}
.y1cb_c01323{bottom:364.605000px;}
.y1b8_c01323{bottom:373.245000px;}
.y1bb_c01323{bottom:374.115000px;}
.y1bc_c01323{bottom:377.565000px;}
.y1b9_c01323{bottom:378.435000px;}
.y1ba_c01323{bottom:379.290000px;}
.y1bf_c01323{bottom:380.160000px;}
.y1c0_c01323{bottom:381.030000px;}
.y1be_c01323{bottom:381.885000px;}
.y1c1_c01323{bottom:385.350000px;}
.y1c2_c01323{bottom:387.075000px;}
.y1b1_c01323{bottom:388.800000px;}
.y1bd_c01323{bottom:389.670000px;}
.y1b2_c01323{bottom:393.990000px;}
.y1b0_c01323{bottom:395.715000px;}
.y1b4_c01323{bottom:396.570000px;}
.y1b5_c01323{bottom:397.440000px;}
.y1b7_c01323{bottom:399.165000px;}
.y1b6_c01323{bottom:400.035000px;}
.y1b3_c01323{bottom:400.890000px;}
.y1a7_c01323{bottom:415.590000px;}
.y1a9_c01323{bottom:416.445000px;}
.y1a6_c01323{bottom:417.315000px;}
.y1ac_c01323{bottom:418.170000px;}
.y1a8_c01323{bottom:419.040000px;}
.y1af_c01323{bottom:419.910000px;}
.y1ab_c01323{bottom:420.765000px;}
.y1ad_c01323{bottom:421.635000px;}
.y1ae_c01323{bottom:425.085000px;}
.y1aa_c01323{bottom:429.405000px;}
.y19b_c01323{bottom:432.000000px;}
.y19e_c01323{bottom:433.725000px;}
.y1a1_c01323{bottom:434.595000px;}
.y19c_c01323{bottom:435.450000px;}
.y1a0_c01323{bottom:436.320000px;}
.y19d_c01323{bottom:438.045000px;}
.y1a4_c01323{bottom:438.915000px;}
.y19f_c01323{bottom:440.640000px;}
.y1a5_c01323{bottom:441.510000px;}
.y1a2_c01323{bottom:442.365000px;}
.y1a3_c01323{bottom:447.555000px;}
.y192_c01323{bottom:453.600000px;}
.y193_c01323{bottom:454.470000px;}
.y191_c01323{bottom:456.195000px;}
.y198_c01323{bottom:457.050000px;}
.y195_c01323{bottom:458.790000px;}
.y194_c01323{bottom:460.515000px;}
.y196_c01323{bottom:462.240000px;}
.y199_c01323{bottom:463.110000px;}
.y197_c01323{bottom:463.965000px;}
.y19a_c01323{bottom:465.690000px;}
.y189_c01323{bottom:472.605000px;}
.y18a_c01323{bottom:473.475000px;}
.y18d_c01323{bottom:477.795000px;}
.y18b_c01323{bottom:478.650000px;}
.y18c_c01323{bottom:479.520000px;}
.y18e_c01323{bottom:482.115000px;}
.y18f_c01323{bottom:483.840000px;}
.y190_c01323{bottom:485.565000px;}
.y180_c01323{bottom:489.885000px;}
.y182_c01323{bottom:495.075000px;}
.y183_c01323{bottom:495.930000px;}
.y181_c01323{bottom:496.800000px;}
.y185_c01323{bottom:497.670000px;}
.y184_c01323{bottom:498.525000px;}
.y186_c01323{bottom:499.395000px;}
.y187_c01323{bottom:502.845000px;}
.y188_c01323{bottom:505.440000px;}
.y179_c01323{bottom:514.080000px;}
.y17a_c01323{bottom:516.675000px;}
.y177_c01323{bottom:518.400000px;}
.y178_c01323{bottom:519.270000px;}
.y17b_c01323{bottom:520.125000px;}
.y17e_c01323{bottom:520.995000px;}
.y17c_c01323{bottom:521.850000px;}
.y17d_c01323{bottom:523.590000px;}
.y17f_c01323{bottom:526.170000px;}
.y16b_c01323{bottom:532.230000px;}
.y16d_c01323{bottom:533.955000px;}
.y16f_c01323{bottom:536.550000px;}
.y173_c01323{bottom:537.405000px;}
.y16c_c01323{bottom:538.275000px;}
.y172_c01323{bottom:539.130000px;}
.y174_c01323{bottom:540.000000px;}
.y16e_c01323{bottom:540.870000px;}
.y170_c01323{bottom:541.725000px;}
.y171_c01323{bottom:542.595000px;}
.y175_c01323{bottom:543.450000px;}
.y176_c01323{bottom:546.045000px;}
.y162_c01323{bottom:553.830000px;}
.y164_c01323{bottom:555.555000px;}
.y165_c01323{bottom:556.410000px;}
.y167_c01323{bottom:559.875000px;}
.y168_c01323{bottom:561.600000px;}
.y163_c01323{bottom:563.325000px;}
.y169_c01323{bottom:564.195000px;}
.y16a_c01323{bottom:565.050000px;}
.y166_c01323{bottom:565.920000px;}
.y15d_c01323{bottom:571.965000px;}
.y15f_c01323{bottom:576.285000px;}
.y15e_c01323{bottom:577.155000px;}
.y15c_c01323{bottom:578.010000px;}
.y159_c01323{bottom:579.750000px;}
.y161_c01323{bottom:582.330000px;}
.y160_c01323{bottom:584.070000px;}
.y232_c01323{bottom:584.925000px;}
.y15a_c01323{bottom:585.795000px;}
.y158_c01323{bottom:586.650000px;}
.y156_c01323{bottom:590.115000px;}
.y157_c01323{bottom:591.840000px;}
.y14e_c01323{bottom:592.710000px;}
.y14f_c01323{bottom:593.565000px;}
.y15b_c01323{bottom:597.030000px;}
.y150_c01323{bottom:598.755000px;}
.y151_c01323{bottom:600.480000px;}
.y154_c01323{bottom:602.205000px;}
.y152_c01323{bottom:603.930000px;}
.y153_c01323{bottom:605.670000px;}
.y155_c01323{bottom:606.525000px;}
.y145_c01323{bottom:614.310000px;}
.y147_c01323{bottom:615.165000px;}
.y14a_c01323{bottom:618.630000px;}
.y146_c01323{bottom:619.485000px;}
.y148_c01323{bottom:620.355000px;}
.y149_c01323{bottom:621.210000px;}
.y14c_c01323{bottom:622.080000px;}
.y14b_c01323{bottom:623.805000px;}
.y14d_c01323{bottom:626.400000px;}
.y141_c01323{bottom:635.040000px;}
.y142_c01323{bottom:636.765000px;}
.y143_c01323{bottom:641.955000px;}
.y144_c01323{bottom:642.810000px;}
.y140_c01323{bottom:650.595000px;}
.y138_c01323{bottom:652.320000px;}
.y139_c01323{bottom:653.190000px;}
.y13c_c01323{bottom:659.235000px;}
.y13d_c01323{bottom:661.830000px;}
.y13f_c01323{bottom:662.685000px;}
.y13a_c01323{bottom:663.555000px;}
.y13e_c01323{bottom:665.280000px;}
.y13b_c01323{bottom:668.730000px;}
.y12e_c01323{bottom:675.645000px;}
.y12f_c01323{bottom:676.515000px;}
.y130_c01323{bottom:679.965000px;}
.y131_c01323{bottom:680.835000px;}
.y133_c01323{bottom:682.560000px;}
.y132_c01323{bottom:683.430000px;}
.y134_c01323{bottom:684.285000px;}
.y136_c01323{bottom:685.155000px;}
.y135_c01323{bottom:686.010000px;}
.y137_c01323{bottom:687.750000px;}
.y126_c01323{bottom:690.330000px;}
.y127_c01323{bottom:691.200000px;}
.y231_c01323{bottom:692.070000px;}
.y128_c01323{bottom:694.650000px;}
.y12c_c01323{bottom:698.115000px;}
.y12d_c01323{bottom:699.840000px;}
.y12a_c01323{bottom:703.290000px;}
.y129_c01323{bottom:704.160000px;}
.y12b_c01323{bottom:705.030000px;}
.y120_c01323{bottom:713.670000px;}
.y123_c01323{bottom:717.990000px;}
.y125_c01323{bottom:718.845000px;}
.y124_c01323{bottom:719.715000px;}
.y121_c01323{bottom:720.570000px;}
.y122_c01323{bottom:722.310000px;}
.y230_c01323{bottom:727.485000px;}
.y22f_c01323{bottom:732.675000px;}
.y119_c01323{bottom:735.270000px;}
.y118_c01323{bottom:737.850000px;}
.y11c_c01323{bottom:739.590000px;}
.y11b_c01323{bottom:740.445000px;}
.y11a_c01323{bottom:741.315000px;}
.y11e_c01323{bottom:743.910000px;}
.y11d_c01323{bottom:744.765000px;}
.y11f_c01323{bottom:746.490000px;}
.y110_c01323{bottom:754.275000px;}
.y112_c01323{bottom:759.450000px;}
.y114_c01323{bottom:760.320000px;}
.y111_c01323{bottom:762.045000px;}
.y113_c01323{bottom:762.915000px;}
.y115_c01323{bottom:767.235000px;}
.y116_c01323{bottom:768.090000px;}
.y107_c01323{bottom:772.410000px;}
.y117_c01323{bottom:775.005000px;}
.y10a_c01323{bottom:776.730000px;}
.y108_c01323{bottom:777.600000px;}
.y109_c01323{bottom:778.470000px;}
.y10c_c01323{bottom:779.325000px;}
.y10b_c01323{bottom:781.050000px;}
.y10f_c01323{bottom:783.645000px;}
.y10d_c01323{bottom:786.240000px;}
.y10e_c01323{bottom:787.110000px;}
.yfd_c01323{bottom:788.835000px;}
.yfc_c01323{bottom:789.690000px;}
.y22d_c01323{bottom:792.285000px;}
.y22e_c01323{bottom:793.155000px;}
.y100_c01323{bottom:796.605000px;}
.yff_c01323{bottom:798.330000px;}
.yfe_c01323{bottom:799.200000px;}
.y101_c01323{bottom:800.925000px;}
.y105_c01323{bottom:802.650000px;}
.y103_c01323{bottom:805.245000px;}
.y104_c01323{bottom:806.115000px;}
.y106_c01323{bottom:806.970000px;}
.yf4_c01323{bottom:813.030000px;}
.y102_c01323{bottom:815.610000px;}
.y22c_c01323{bottom:816.480000px;}
.yf5_c01323{bottom:818.205000px;}
.yf7_c01323{bottom:819.075000px;}
.yf6_c01323{bottom:819.930000px;}
.y22b_c01323{bottom:823.395000px;}
.yf9_c01323{bottom:825.120000px;}
.yf8_c01323{bottom:825.990000px;}
.yfa_c01323{bottom:826.845000px;}
.yfb_c01323{bottom:828.570000px;}
.yed_c01323{bottom:833.760000px;}
.yef_c01323{bottom:836.355000px;}
.yf0_c01323{bottom:837.210000px;}
.yf3_c01323{bottom:838.950000px;}
.yee_c01323{bottom:839.805000px;}
.yf2_c01323{bottom:841.530000px;}
.yf1_c01323{bottom:843.270000px;}
.y22a_c01323{bottom:846.720000px;}
.ye6_c01323{bottom:855.360000px;}
.ye8_c01323{bottom:857.955000px;}
.ye7_c01323{bottom:858.810000px;}
.ye9_c01323{bottom:860.550000px;}
.yea_c01323{bottom:862.275000px;}
.yeb_c01323{bottom:863.130000px;}
.yec_c01323{bottom:869.190000px;}
.y229_c01323{bottom:871.770000px;}
.ydc_c01323{bottom:875.235000px;}
.ydd_c01323{bottom:876.090000px;}
.yde_c01323{bottom:876.960000px;}
.ye0_c01323{bottom:879.555000px;}
.ydf_c01323{bottom:880.410000px;}
.ye2_c01323{bottom:882.150000px;}
.ye4_c01323{bottom:883.005000px;}
.ye5_c01323{bottom:883.875000px;}
.ye1_c01323{bottom:884.730000px;}
.ye3_c01323{bottom:888.195000px;}
.y225_c01323{bottom:894.240000px;}
.yd4_c01323{bottom:896.835000px;}
.yd6_c01323{bottom:898.560000px;}
.yd5_c01323{bottom:900.285000px;}
.yd8_c01323{bottom:902.010000px;}
.yd9_c01323{bottom:903.750000px;}
.ydb_c01323{bottom:904.605000px;}
.yd7_c01323{bottom:905.475000px;}
.y228_c01323{bottom:906.330000px;}
.yda_c01323{bottom:908.070000px;}
.y224_c01323{bottom:914.115000px;}
.ycf_c01323{bottom:916.710000px;}
.yc4_c01323{bottom:920.160000px;}
.yc5_c01323{bottom:921.030000px;}
.yc6_c01323{bottom:921.885000px;}
.yd0_c01323{bottom:922.755000px;}
.yce_c01323{bottom:923.610000px;}
.yd1_c01323{bottom:924.480000px;}
.yd3_c01323{bottom:925.350000px;}
.yd2_c01323{bottom:926.205000px;}
.yc8_c01323{bottom:927.075000px;}
.yc9_c01323{bottom:930.525000px;}
.yc3_c01323{bottom:931.395000px;}
.ycc_c01323{bottom:933.120000px;}
.yc7_c01323{bottom:934.845000px;}
.ycb_c01323{bottom:935.715000px;}
.yca_c01323{bottom:936.570000px;}
.ybd_c01323{bottom:938.310000px;}
.ybc_c01323{bottom:939.165000px;}
.ycd_c01323{bottom:940.035000px;}
.y223_c01323{bottom:940.890000px;}
.ybe_c01323{bottom:941.760000px;}
.yc0_c01323{bottom:945.210000px;}
.ybf_c01323{bottom:946.080000px;}
.yc2_c01323{bottom:949.530000px;}
.yc1_c01323{bottom:950.400000px;}
.y226_c01323{bottom:951.270000px;}
.y227_c01323{bottom:954.720000px;}
.yb3_c01323{bottom:955.590000px;}
.yb0_c01323{bottom:956.445000px;}
.yb1_c01323{bottom:959.040000px;}
.yb2_c01323{bottom:959.910000px;}
.yb4_c01323{bottom:962.490000px;}
.yb8_c01323{bottom:964.230000px;}
.yb7_c01323{bottom:965.085000px;}
.yb6_c01323{bottom:965.955000px;}
.yb5_c01323{bottom:966.810000px;}
.yba_c01323{bottom:968.550000px;}
.yb9_c01323{bottom:969.405000px;}
.ybb_c01323{bottom:970.275000px;}
.y222_c01323{bottom:976.320000px;}
.ya8_c01323{bottom:977.190000px;}
.ya9_c01323{bottom:979.770000px;}
.yaa_c01323{bottom:981.510000px;}
.yab_c01323{bottom:982.365000px;}
.yac_c01323{bottom:984.090000px;}
.yae_c01323{bottom:985.830000px;}
.yad_c01323{bottom:989.280000px;}
.y221_c01323{bottom:996.195000px;}
.ya1_c01323{bottom:997.050000px;}
.ya0_c01323{bottom:998.790000px;}
.ya2_c01323{bottom:1000.515000px;}
.ya4_c01323{bottom:1001.370000px;}
.ya5_c01323{bottom:1002.240000px;}
.ya3_c01323{bottom:1003.110000px;}
.yaf_c01323{bottom:1003.965000px;}
.ya6_c01323{bottom:1006.560000px;}
.ya7_c01323{bottom:1012.605000px;}
.y9f_c01323{bottom:1013.475000px;}
.y97_c01323{bottom:1016.925000px;}
.y98_c01323{bottom:1017.795000px;}
.y94_c01323{bottom:1018.650000px;}
.y99_c01323{bottom:1019.520000px;}
.y95_c01323{bottom:1020.390000px;}
.y96_c01323{bottom:1021.245000px;}
.y9c_c01323{bottom:1022.970000px;}
.y9d_c01323{bottom:1024.710000px;}
.y9a_c01323{bottom:1025.565000px;}
.y9b_c01323{bottom:1026.435000px;}
.y93_c01323{bottom:1031.610000px;}
.y9e_c01323{bottom:1037.670000px;}
.y8d_c01323{bottom:1039.395000px;}
.y91_c01323{bottom:1041.120000px;}
.y8e_c01323{bottom:1041.990000px;}
.y8f_c01323{bottom:1043.715000px;}
.y90_c01323{bottom:1044.570000px;}
.y92_c01323{bottom:1047.165000px;}
.y220_c01323{bottom:1053.210000px;}
.y87_c01323{bottom:1054.080000px;}
.y88_c01323{bottom:1057.530000px;}
.y8b_c01323{bottom:1060.125000px;}
.y8c_c01323{bottom:1060.995000px;}
.y7d_c01323{bottom:1062.720000px;}
.y89_c01323{bottom:1063.590000px;}
.y8a_c01323{bottom:1064.445000px;}
.y80_c01323{bottom:1067.040000px;}
.y7b_c01323{bottom:1067.910000px;}
.y7a_c01323{bottom:1068.765000px;}
.y86_c01323{bottom:1069.635000px;}
.y7c_c01323{bottom:1070.490000px;}
.y7e_c01323{bottom:1071.360000px;}
.y7f_c01323{bottom:1072.230000px;}
.y82_c01323{bottom:1073.085000px;}
.y81_c01323{bottom:1074.810000px;}
.y83_c01323{bottom:1076.550000px;}
.y84_c01323{bottom:1077.405000px;}
.y85_c01323{bottom:1078.275000px;}
.y74_c01323{bottom:1079.130000px;}
.y72_c01323{bottom:1080.000000px;}
.y78_c01323{bottom:1082.595000px;}
.y77_c01323{bottom:1083.450000px;}
.y73_c01323{bottom:1084.320000px;}
.y79_c01323{bottom:1086.045000px;}
.y76_c01323{bottom:1086.915000px;}
.y75_c01323{bottom:1092.090000px;}
.y69_c01323{bottom:1097.280000px;}
.y6a_c01323{bottom:1098.150000px;}
.y6d_c01323{bottom:1102.470000px;}
.y6e_c01323{bottom:1104.195000px;}
.y6b_c01323{bottom:1105.050000px;}
.y6c_c01323{bottom:1106.790000px;}
.y70_c01323{bottom:1108.515000px;}
.y6f_c01323{bottom:1109.370000px;}
.y71_c01323{bottom:1111.965000px;}
.y60_c01323{bottom:1117.155000px;}
.y63_c01323{bottom:1118.010000px;}
.y61_c01323{bottom:1121.475000px;}
.y62_c01323{bottom:1123.200000px;}
.y64_c01323{bottom:1124.925000px;}
.y68_c01323{bottom:1125.795000px;}
.y65_c01323{bottom:1126.650000px;}
.y5f_c01323{bottom:1127.520000px;}
.y66_c01323{bottom:1129.245000px;}
.y5a_c01323{bottom:1137.885000px;}
.y67_c01323{bottom:1138.755000px;}
.y59_c01323{bottom:1139.610000px;}
.y5c_c01323{bottom:1140.480000px;}
.y5b_c01323{bottom:1142.205000px;}
.y5d_c01323{bottom:1147.395000px;}
.y5e_c01323{bottom:1148.250000px;}
.y4f_c01323{bottom:1156.035000px;}
.y50_c01323{bottom:1156.890000px;}
.y54_c01323{bottom:1161.210000px;}
.y51_c01323{bottom:1162.080000px;}
.y52_c01323{bottom:1162.950000px;}
.y53_c01323{bottom:1163.805000px;}
.y57_c01323{bottom:1164.675000px;}
.y58_c01323{bottom:1165.530000px;}
.y55_c01323{bottom:1166.400000px;}
.y56_c01323{bottom:1168.125000px;}
.y43_c01323{bottom:1180.230000px;}
.y44_c01323{bottom:1181.085000px;}
.y45_c01323{bottom:1181.955000px;}
.y47_c01323{bottom:1182.810000px;}
.y49_c01323{bottom:1183.680000px;}
.y48_c01323{bottom:1184.550000px;}
.y4a_c01323{bottom:1185.405000px;}
.y4b_c01323{bottom:1186.275000px;}
.y46_c01323{bottom:1187.130000px;}
.y4c_c01323{bottom:1191.450000px;}
.y4e_c01323{bottom:1194.045000px;}
.y4d_c01323{bottom:1194.915000px;}
.y3c_c01323{bottom:1196.640000px;}
.y3b_c01323{bottom:1201.830000px;}
.y3d_c01323{bottom:1202.685000px;}
.y41_c01323{bottom:1203.555000px;}
.y3e_c01323{bottom:1204.410000px;}
.y3f_c01323{bottom:1205.280000px;}
.y40_c01323{bottom:1206.150000px;}
.y42_c01323{bottom:1207.005000px;}
.y34_c01323{bottom:1217.370000px;}
.y35_c01323{bottom:1219.965000px;}
.y36_c01323{bottom:1225.155000px;}
.y38_c01323{bottom:1226.010000px;}
.y37_c01323{bottom:1226.880000px;}
.y39_c01323{bottom:1228.605000px;}
.y3a_c01323{bottom:1232.070000px;}
.y2a_c01323{bottom:1238.970000px;}
.y28_c01323{bottom:1241.565000px;}
.y2b_c01323{bottom:1242.435000px;}
.y29_c01323{bottom:1243.290000px;}
.y2e_c01323{bottom:1246.755000px;}
.y2c_c01323{bottom:1247.610000px;}
.y2d_c01323{bottom:1249.350000px;}
.y30_c01323{bottom:1251.075000px;}
.y2f_c01323{bottom:1251.930000px;}
.y31_c01323{bottom:1255.395000px;}
.y32_c01323{bottom:1257.120000px;}
.y20_c01323{bottom:1259.715000px;}
.y22_c01323{bottom:1261.440000px;}
.y1e_c01323{bottom:1262.310000px;}
.y33_c01323{bottom:1263.165000px;}
.y1f_c01323{bottom:1264.035000px;}
.y21_c01323{bottom:1265.760000px;}
.y25_c01323{bottom:1266.630000px;}
.y23_c01323{bottom:1267.485000px;}
.y26_c01323{bottom:1268.355000px;}
.y24_c01323{bottom:1269.210000px;}
.y27_c01323{bottom:1271.805000px;}
.y15_c01323{bottom:1280.445000px;}
.y18_c01323{bottom:1282.170000px;}
.y16_c01323{bottom:1283.040000px;}
.y17_c01323{bottom:1284.765000px;}
.y1a_c01323{bottom:1285.635000px;}
.y1b_c01323{bottom:1289.085000px;}
.y19_c01323{bottom:1289.955000px;}
.y1c_c01323{bottom:1290.810000px;}
.y1d_c01323{bottom:1293.405000px;}
.y11_c01323{bottom:1301.190000px;}
.ye_c01323{bottom:1302.045000px;}
.yf_c01323{bottom:1303.770000px;}
.y12_c01323{bottom:1304.640000px;}
.y10_c01323{bottom:1305.510000px;}
.y14_c01323{bottom:1308.090000px;}
.y13_c01323{bottom:1319.325000px;}
.y8_c01323{bottom:1321.050000px;}
.y7_c01323{bottom:1321.920000px;}
.y6_c01323{bottom:1322.790000px;}
.yb_c01323{bottom:1326.240000px;}
.yc_c01323{bottom:1328.835000px;}
.yd_c01323{bottom:1329.690000px;}
.y9_c01323{bottom:1330.560000px;}
.ya_c01323{bottom:1331.430000px;}
.y21c_c01323{bottom:1352.160000px;}
.y21d_c01323{bottom:1353.885000px;}
.y5_c01323{bottom:1355.610000px;}
.y21e_c01323{bottom:1356.480000px;}
.y21f_c01323{bottom:1358.205000px;}
.y3_c01323{bottom:1388.445000px;}
.y2_c01323{bottom:1390.170000px;}
.y1_c01323{bottom:1402.275000px;}
.h11_c01323{height:3.110063px;}
.h4_c01323{height:5.399414px;}
.h3_c01323{height:6.209326px;}
.h19_c01323{height:9.340986px;}
.h1a_c01323{height:12.418652px;}
.h1f_c01323{height:15.261973px;}
.h1c_c01323{height:15.550313px;}
.h17_c01323{height:18.681973px;}
.h1b_c01323{height:21.759639px;}
.h1e_c01323{height:24.891299px;}
.h2_c01323{height:27.968965px;}
.h14_c01323{height:31.100625px;}
.h18_c01323{height:34.232285px;}
.h13_c01323{height:37.309951px;}
.h16_c01323{height:40.441611px;}
.h5_c01323{height:43.519277px;}
.hb_c01323{height:46.650937px;}
.ha_c01323{height:49.782598px;}
.h7_c01323{height:52.860264px;}
.h21_c01323{height:53.610938px;}
.h12_c01323{height:55.991924px;}
.h20_c01323{height:56.682598px;}
.h15_c01323{height:59.069590px;}
.hc_c01323{height:62.201250px;}
.h10_c01323{height:65.332910px;}
.h8_c01323{height:68.410576px;}
.h1d_c01323{height:71.542236px;}
.hd_c01323{height:74.619902px;}
.h22_c01323{height:77.751563px;}
.h9_c01323{height:80.883223px;}
.h23_c01323{height:83.960889px;}
.h6_c01323{height:87.092549px;}
.hf_c01323{height:90.170215px;}
.he_c01323{height:93.301875px;}
.h25_c01323{height:118.193174px;}
.h24_c01323{height:121.270840px;}
.h0_c01323{height:1509.405000px;}
.h1_c01323{height:1509.750000px;}
.w0_c01323{width:1079.130000px;}
.w1_c01323{width:1079.250000px;}
.x0_c01323{left:0.000000px;}
.x121_c01323{left:2.595000px;}
.x122_c01323{left:14.685000px;}
.x123_c01323{left:22.470000px;}
.x120_c01323{left:81.210000px;}
.x128_c01323{left:99.360000px;}
.x127_c01323{left:103.680000px;}
.x129_c01323{left:107.130000px;}
.x126_c01323{left:111.450000px;}
.x124_c01323{left:156.390000px;}
.x12c_c01323{left:158.115000px;}
.x131_c01323{left:166.755000px;}
.x125_c01323{left:172.800000px;}
.x12d_c01323{left:177.120000px;}
.x4_c01323{left:184.035000px;}
.x132_c01323{left:185.760000px;}
.xc2_c01323{left:188.355000px;}
.xf0_c01323{left:194.400000px;}
.xc7_c01323{left:196.125000px;}
.x64_c01323{left:199.590000px;}
.xc3_c01323{left:203.910000px;}
.x57_c01323{left:206.490000px;}
.x65_c01323{left:213.405000px;}
.x12_c01323{left:220.320000px;}
.x17_c01323{left:222.045000px;}
.x6_c01323{left:224.640000px;}
.x74_c01323{left:226.365000px;}
.x6c_c01323{left:228.960000px;}
.x96_c01323{left:230.685000px;}
.xbb_c01323{left:232.410000px;}
.xc8_c01323{left:234.150000px;}
.xcd_c01323{left:235.875000px;}
.xe5_c01323{left:237.600000px;}
.xec_c01323{left:239.325000px;}
.x3d_c01323{left:242.790000px;}
.xfe_c01323{left:244.515000px;}
.x44_c01323{left:246.240000px;}
.x115_c01323{left:247.965000px;}
.xe0_c01323{left:250.560000px;}
.xa5_c01323{left:252.285000px;}
.xc4_c01323{left:254.010000px;}
.x54_c01323{left:256.605000px;}
.xbc_c01323{left:259.200000px;}
.x18_c01323{left:261.795000px;}
.x7c_c01323{left:263.520000px;}
.x2b_c01323{left:267.840000px;}
.x36_c01323{left:269.565000px;}
.xa9_c01323{left:273.030000px;}
.xd6_c01323{left:274.755000px;}
.x6d_c01323{left:278.205000px;}
.x97_c01323{left:280.800000px;}
.xd5_c01323{left:283.395000px;}
.x7_c01323{left:285.990000px;}
.x116_c01323{left:287.715000px;}
.x81_c01323{left:291.165000px;}
.x20_c01323{left:294.630000px;}
.xda_c01323{left:297.210000px;}
.x98_c01323{left:301.530000px;}
.xbd_c01323{left:306.720000px;}
.x4c_c01323{left:311.040000px;}
.x1_c01323{left:314.490000px;}
.x37_c01323{left:318.810000px;}
.x3e_c01323{left:321.405000px;}
.x21_c01323{left:324.000000px;}
.x19_c01323{left:326.595000px;}
.x13_c01323{left:328.320000px;}
.x10b_c01323{left:330.915000px;}
.xc5_c01323{left:332.640000px;}
.x58_c01323{left:334.365000px;}
.x82_c01323{left:336.960000px;}
.xd3_c01323{left:338.685000px;}
.x11d_c01323{left:340.410000px;}
.x66_c01323{left:342.150000px;}
.x2c_c01323{left:343.875000px;}
.x8a_c01323{left:347.325000px;}
.x3f_c01323{left:349.050000px;}
.x59_c01323{left:351.645000px;}
.xd0_c01323{left:355.110000px;}
.x1a_c01323{left:357.690000px;}
.x40_c01323{left:362.880000px;}
.x6e_c01323{left:365.475000px;}
.x22_c01323{left:368.070000px;}
.x7d_c01323{left:371.520000px;}
.xfb_c01323{left:374.115000px;}
.x4d_c01323{left:377.565000px;}
.xf1_c01323{left:379.290000px;}
.xe6_c01323{left:381.885000px;}
.x14_c01323{left:384.480000px;}
.x105_c01323{left:387.075000px;}
.xb1_c01323{left:389.670000px;}
.xd7_c01323{left:391.395000px;}
.x11b_c01323{left:393.120000px;}
.x1b_c01323{left:395.715000px;}
.x23_c01323{left:397.440000px;}
.x41_c01323{left:399.165000px;}
.xf4_c01323{left:400.890000px;}
.x38_c01323{left:404.355000px;}
.x8b_c01323{left:406.080000px;}
.xaa_c01323{left:410.400000px;}
.x75_c01323{left:413.850000px;}
.xad_c01323{left:415.590000px;}
.x110_c01323{left:417.315000px;}
.xc9_c01323{left:419.040000px;}
.x83_c01323{left:420.765000px;}
.x76_c01323{left:422.490000px;}
.x2d_c01323{left:424.230000px;}
.xff_c01323{left:426.810000px;}
.x8c_c01323{left:428.550000px;}
.x24_c01323{left:431.130000px;}
.xe2_c01323{left:433.725000px;}
.xdb_c01323{left:436.320000px;}
.x15_c01323{left:438.045000px;}
.x2e_c01323{left:443.235000px;}
.xed_c01323{left:444.960000px;}
.x62_c01323{left:447.555000px;}
.xd8_c01323{left:449.280000px;}
.x7e_c01323{left:451.875000px;}
.x8_c01323{left:453.600000px;}
.x84_c01323{left:456.195000px;}
.x5a_c01323{left:457.920000px;}
.x55_c01323{left:460.515000px;}
.xea_c01323{left:462.240000px;}
.x39_c01323{left:463.965000px;}
.x4e_c01323{left:466.560000px;}
.x45_c01323{left:469.155000px;}
.x99_c01323{left:471.750000px;}
.x46_c01323{left:473.475000px;}
.x4f_c01323{left:476.070000px;}
.x92_c01323{left:478.650000px;}
.x42_c01323{left:480.390000px;}
.x77_c01323{left:482.115000px;}
.xe7_c01323{left:484.710000px;}
.x1c_c01323{left:486.435000px;}
.x112_c01323{left:488.160000px;}
.x2_c01323{left:489.885000px;}
.x117_c01323{left:491.610000px;}
.x85_c01323{left:494.205000px;}
.x3_c01323{left:495.930000px;}
.x103_c01323{left:497.670000px;}
.xab_c01323{left:501.120000px;}
.x2f_c01323{left:504.570000px;}
.x5b_c01323{left:506.310000px;}
.xb7_c01323{left:508.035000px;}
.x9_c01323{left:511.485000px;}
.x106_c01323{left:513.210000px;}
.x6f_c01323{left:516.675000px;}
.xbe_c01323{left:519.270000px;}
.xfc_c01323{left:520.995000px;}
.x5c_c01323{left:524.445000px;}
.x100_c01323{left:526.170000px;}
.x5d_c01323{left:530.490000px;}
.xa_c01323{left:532.230000px;}
.x25_c01323{left:535.680000px;}
.x16_c01323{left:538.275000px;}
.x47_c01323{left:542.595000px;}
.xca_c01323{left:545.190000px;}
.x48_c01323{left:548.640000px;}
.x26_c01323{left:550.365000px;}
.xb_c01323{left:552.090000px;}
.x43_c01323{left:553.830000px;}
.x5e_c01323{left:555.555000px;}
.x93_c01323{left:557.280000px;}
.x9a_c01323{left:559.005000px;}
.xa0_c01323{left:560.730000px;}
.xa6_c01323{left:562.470000px;}
.xb5_c01323{left:564.195000px;}
.xdc_c01323{left:565.920000px;}
.xe3_c01323{left:567.645000px;}
.xee_c01323{left:570.240000px;}
.xf6_c01323{left:571.965000px;}
.x86_c01323{left:573.690000px;}
.xd1_c01323{left:575.430000px;}
.x11e_c01323{left:578.010000px;}
.xd4_c01323{left:584.070000px;}
.xc_c01323{left:585.795000px;}
.x67_c01323{left:588.390000px;}
.x104_c01323{left:590.115000px;}
.x7f_c01323{left:591.840000px;}
.xa7_c01323{left:593.565000px;}
.xf5_c01323{left:595.290000px;}
.x50_c01323{left:597.030000px;}
.xd9_c01323{left:598.755000px;}
.xe1_c01323{left:600.480000px;}
.xb2_c01323{left:602.205000px;}
.x30_c01323{left:603.930000px;}
.x68_c01323{left:605.670000px;}
.x9b_c01323{left:607.395000px;}
.xb8_c01323{left:609.990000px;}
.x8d_c01323{left:613.440000px;}
.x9c_c01323{left:615.165000px;}
.x111_c01323{left:617.760000px;}
.x109_c01323{left:619.485000px;}
.x69_c01323{left:621.210000px;}
.xcb_c01323{left:623.805000px;}
.x107_c01323{left:627.270000px;}
.x5f_c01323{left:629.850000px;}
.x49_c01323{left:632.445000px;}
.x6a_c01323{left:634.170000px;}
.x27_c01323{left:636.765000px;}
.xbf_c01323{left:638.490000px;}
.x1d_c01323{left:641.085000px;}
.xef_c01323{left:642.810000px;}
.x10a_c01323{left:645.405000px;}
.x3a_c01323{left:647.130000px;}
.xd_c01323{left:651.450000px;}
.xae_c01323{left:653.190000px;}
.x3b_c01323{left:654.915000px;}
.x10d_c01323{left:657.510000px;}
.xe8_c01323{left:659.235000px;}
.xac_c01323{left:660.960000px;}
.x8e_c01323{left:664.410000px;}
.x31_c01323{left:666.150000px;}
.x70_c01323{left:667.875000px;}
.x80_c01323{left:671.325000px;}
.x118_c01323{left:673.050000px;}
.x87_c01323{left:676.515000px;}
.x4a_c01323{left:678.240000px;}
.x101_c01323{left:680.835000px;}
.xa1_c01323{left:682.560000px;}
.x51_c01323{left:685.155000px;}
.xb3_c01323{left:686.880000px;}
.xe_c01323{left:692.925000px;}
.x6b_c01323{left:695.520000px;}
.xcc_c01323{left:699.840000px;}
.xaf_c01323{left:702.435000px;}
.xdd_c01323{left:705.030000px;}
.xc0_c01323{left:707.610000px;}
.xf7_c01323{left:710.205000px;}
.xf3_c01323{left:711.930000px;}
.xce_c01323{left:714.525000px;}
.x28_c01323{left:716.250000px;}
.x78_c01323{left:718.845000px;}
.xde_c01323{left:723.165000px;}
.x60_c01323{left:724.890000px;}
.x94_c01323{left:726.630000px;}
.xb4_c01323{left:730.950000px;}
.x52_c01323{left:732.675000px;}
.x79_c01323{left:734.400000px;}
.x56_c01323{left:736.125000px;}
.x113_c01323{left:738.720000px;}
.x71_c01323{left:740.445000px;}
.x1e_c01323{left:742.170000px;}
.x9d_c01323{left:743.910000px;}
.x8f_c01323{left:745.635000px;}
.xb9_c01323{left:748.230000px;}
.x88_c01323{left:750.810000px;}
.x29_c01323{left:754.275000px;}
.xa8_c01323{left:757.725000px;}
.x63_c01323{left:760.320000px;}
.x4b_c01323{left:762.915000px;}
.xf8_c01323{left:764.640000px;}
.x10e_c01323{left:768.090000px;}
.x9e_c01323{left:769.830000px;}
.xeb_c01323{left:774.150000px;}
.x3c_c01323{left:775.875000px;}
.x53_c01323{left:777.600000px;}
.x2a_c01323{left:779.325000px;}
.xb0_c01323{left:781.920000px;}
.x114_c01323{left:784.515000px;}
.xf_c01323{left:786.240000px;}
.xa2_c01323{left:789.690000px;}
.xf2_c01323{left:791.430000px;}
.xdf_c01323{left:793.155000px;}
.x119_c01323{left:794.880000px;}
.xd2_c01323{left:797.475000px;}
.x9f_c01323{left:800.070000px;}
.x32_c01323{left:802.650000px;}
.xc1_c01323{left:805.245000px;}
.x61_c01323{left:807.840000px;}
.xb6_c01323{left:810.435000px;}
.x72_c01323{left:812.160000px;}
.x10_c01323{left:815.610000px;}
.x1f_c01323{left:817.350000px;}
.xfd_c01323{left:819.075000px;}
.x5_c01323{left:820.800000px;}
.x10c_c01323{left:823.395000px;}
.xba_c01323{left:825.120000px;}
.x7a_c01323{left:827.715000px;}
.x11c_c01323{left:829.440000px;}
.x90_c01323{left:832.890000px;}
.x73_c01323{left:834.630000px;}
.xc6_c01323{left:838.950000px;}
.x7b_c01323{left:843.270000px;}
.xf9_c01323{left:844.995000px;}
.x33_c01323{left:846.720000px;}
.xa3_c01323{left:848.445000px;}
.xcf_c01323{left:851.040000px;}
.x34_c01323{left:853.635000px;}
.x11_c01323{left:855.360000px;}
.xe4_c01323{left:857.085360px;}
.x102_c01323{left:859.680000px;}
.xfa_c01323{left:861.405000px;}
.x35_c01323{left:864.000000px;}
.x89_c01323{left:866.595000px;}
.xa4_c01323{left:872.640000px;}
.x95_c01323{left:876.960000px;}
.x10f_c01323{left:882.150000px;}
.x91_c01323{left:883.875000px;}
.xe9_c01323{left:889.920000px;}
.x11a_c01323{left:891.645000px;}
.x108_c01323{left:895.965000px;}
.x11f_c01323{left:901.155000px;}
.x12f_c01323{left:939.165000px;}
.x12a_c01323{left:940.890000px;}
.x12e_c01323{left:944.355000px;}
.x130_c01323{left:948.675000px;}
.x12b_c01323{left:953.850000px;}
@media print{
.v3_c01323{vertical-align:-15.360000pt;}
.v4_c01323{vertical-align:-9.226667pt;}
.v1_c01323{vertical-align:-3.040000pt;}
.v0_c01323{vertical-align:0.000000pt;}
.v2_c01323{vertical-align:6.133333pt;}
.ls2_c01323{letter-spacing:0.000000pt;}
.ls1_c01323{letter-spacing:22.065024pt;}
.ls0_c01323{letter-spacing:39.236800pt;}
.ws1_c01323{word-spacing:-16.957653pt;}
.ws0_c01323{word-spacing:-16.932267pt;}
.ws2_c01323{word-spacing:-10.489280pt;}
.ws3_c01323{word-spacing:0.000000pt;}
.fsf_c01323{font-size:3.072000pt;}
.fs2_c01323{font-size:5.333333pt;}
.fs1_c01323{font-size:6.133333pt;}
.fs17_c01323{font-size:9.226667pt;}
.fs18_c01323{font-size:12.266667pt;}
.fs1a_c01323{font-size:15.360000pt;}
.fs15_c01323{font-size:18.453333pt;}
.fs19_c01323{font-size:21.493333pt;}
.fs1c_c01323{font-size:24.586667pt;}
.fs0_c01323{font-size:27.626667pt;}
.fs12_c01323{font-size:30.720000pt;}
.fs16_c01323{font-size:33.813333pt;}
.fs11_c01323{font-size:36.853333pt;}
.fs14_c01323{font-size:39.946667pt;}
.fs3_c01323{font-size:42.986667pt;}
.fs9_c01323{font-size:46.080000pt;}
.fs8_c01323{font-size:49.173333pt;}
.fs5_c01323{font-size:52.213333pt;}
.fs10_c01323{font-size:55.306667pt;}
.fs13_c01323{font-size:58.346667pt;}
.fsa_c01323{font-size:61.440000pt;}
.fse_c01323{font-size:64.533333pt;}
.fs6_c01323{font-size:67.573333pt;}
.fs1b_c01323{font-size:70.666667pt;}
.fsb_c01323{font-size:73.706667pt;}
.fs1d_c01323{font-size:76.800000pt;}
.fs7_c01323{font-size:79.893333pt;}
.fs1e_c01323{font-size:82.933333pt;}
.fs4_c01323{font-size:86.026667pt;}
.fsd_c01323{font-size:89.066667pt;}
.fsc_c01323{font-size:92.160000pt;}
.fs20_c01323{font-size:116.746667pt;}
.fs1f_c01323{font-size:119.786667pt;}
.y0_c01323{bottom:0.000000pt;}
.y210_c01323{bottom:166.653333pt;}
.y211_c01323{bottom:167.426667pt;}
.y212_c01323{bottom:168.186667pt;}
.y213_c01323{bottom:170.493333pt;}
.y215_c01323{bottom:172.800000pt;}
.y216_c01323{bottom:173.573333pt;}
.y21b_c01323{bottom:174.333333pt;}
.y218_c01323{bottom:175.866667pt;}
.y214_c01323{bottom:176.640000pt;}
.y217_c01323{bottom:178.946667pt;}
.y219_c01323{bottom:179.706667pt;}
.y21a_c01323{bottom:180.480000pt;}
.y20a_c01323{bottom:185.853333pt;}
.y20b_c01323{bottom:188.160000pt;}
.y208_c01323{bottom:190.466667pt;}
.y209_c01323{bottom:191.226667pt;}
.y20d_c01323{bottom:192.000000pt;}
.y20f_c01323{bottom:196.613333pt;}
.y20c_c01323{bottom:197.373333pt;}
.y20e_c01323{bottom:198.906667pt;}
.y1ff_c01323{bottom:205.053333pt;}
.y200_c01323{bottom:205.826667pt;}
.y201_c01323{bottom:206.586667pt;}
.y1fe_c01323{bottom:208.133333pt;}
.y202_c01323{bottom:208.893333pt;}
.y204_c01323{bottom:209.666667pt;}
.y203_c01323{bottom:212.733333pt;}
.y205_c01323{bottom:213.506667pt;}
.y206_c01323{bottom:215.813333pt;}
.y207_c01323{bottom:216.573333pt;}
.y1f5_c01323{bottom:221.186667pt;}
.y1f3_c01323{bottom:221.946667pt;}
.y1f4_c01323{bottom:222.720000pt;}
.y1f7_c01323{bottom:226.560000pt;}
.y4_c01323{bottom:228.093333pt;}
.y1f6_c01323{bottom:228.866667pt;}
.y1fa_c01323{bottom:229.626667pt;}
.y1fc_c01323{bottom:230.400000pt;}
.y1f8_c01323{bottom:231.173333pt;}
.y1f9_c01323{bottom:232.706667pt;}
.y1fd_c01323{bottom:233.466667pt;}
.y1fb_c01323{bottom:235.013333pt;}
.y1ec_c01323{bottom:241.146667pt;}
.y1eb_c01323{bottom:243.453333pt;}
.y1ef_c01323{bottom:244.226667pt;}
.y1ee_c01323{bottom:245.760000pt;}
.y1ed_c01323{bottom:247.293333pt;}
.y1f1_c01323{bottom:248.066667pt;}
.y1f0_c01323{bottom:250.373333pt;}
.y1f2_c01323{bottom:251.133333pt;}
.y1e1_c01323{bottom:260.346667pt;}
.y1e3_c01323{bottom:261.120000pt;}
.y1df_c01323{bottom:262.653333pt;}
.y1e0_c01323{bottom:263.426667pt;}
.y1e4_c01323{bottom:264.186667pt;}
.y1e2_c01323{bottom:264.960000pt;}
.y1e9_c01323{bottom:265.733333pt;}
.y1e5_c01323{bottom:266.493333pt;}
.y1e6_c01323{bottom:267.266667pt;}
.y1e7_c01323{bottom:270.333333pt;}
.y1e8_c01323{bottom:271.106667pt;}
.y1ea_c01323{bottom:272.640000pt;}
.y1d7_c01323{bottom:274.173333pt;}
.y1d8_c01323{bottom:276.480000pt;}
.y1d6_c01323{bottom:277.253333pt;}
.y1d9_c01323{bottom:278.013333pt;}
.y1db_c01323{bottom:278.786667pt;}
.y1dd_c01323{bottom:280.320000pt;}
.y1dc_c01323{bottom:281.093333pt;}
.y1de_c01323{bottom:281.853333pt;}
.y1da_c01323{bottom:286.466667pt;}
.y234_c01323{bottom:289.533333pt;}
.y233_c01323{bottom:291.066667pt;}
.y235_c01323{bottom:291.840000pt;}
.y1d2_c01323{bottom:297.986667pt;}
.y1cd_c01323{bottom:298.746667pt;}
.y1ce_c01323{bottom:299.520000pt;}
.y1cf_c01323{bottom:300.293333pt;}
.y1d0_c01323{bottom:301.053333pt;}
.y1d1_c01323{bottom:302.586667pt;}
.y1d3_c01323{bottom:304.893333pt;}
.y1d5_c01323{bottom:306.426667pt;}
.y1d4_c01323{bottom:307.200000pt;}
.y1c4_c01323{bottom:313.346667pt;}
.y1c5_c01323{bottom:315.653333pt;}
.y1c3_c01323{bottom:316.413333pt;}
.y1ca_c01323{bottom:317.946667pt;}
.y1c8_c01323{bottom:318.720000pt;}
.y1c9_c01323{bottom:319.493333pt;}
.y1c6_c01323{bottom:321.026667pt;}
.y1cc_c01323{bottom:321.786667pt;}
.y1c7_c01323{bottom:323.333333pt;}
.y1cb_c01323{bottom:324.093333pt;}
.y1b8_c01323{bottom:331.773333pt;}
.y1bb_c01323{bottom:332.546667pt;}
.y1bc_c01323{bottom:335.613333pt;}
.y1b9_c01323{bottom:336.386667pt;}
.y1ba_c01323{bottom:337.146667pt;}
.y1bf_c01323{bottom:337.920000pt;}
.y1c0_c01323{bottom:338.693333pt;}
.y1be_c01323{bottom:339.453333pt;}
.y1c1_c01323{bottom:342.533333pt;}
.y1c2_c01323{bottom:344.066667pt;}
.y1b1_c01323{bottom:345.600000pt;}
.y1bd_c01323{bottom:346.373333pt;}
.y1b2_c01323{bottom:350.213333pt;}
.y1b0_c01323{bottom:351.746667pt;}
.y1b4_c01323{bottom:352.506667pt;}
.y1b5_c01323{bottom:353.280000pt;}
.y1b7_c01323{bottom:354.813333pt;}
.y1b6_c01323{bottom:355.586667pt;}
.y1b3_c01323{bottom:356.346667pt;}
.y1a7_c01323{bottom:369.413333pt;}
.y1a9_c01323{bottom:370.173333pt;}
.y1a6_c01323{bottom:370.946667pt;}
.y1ac_c01323{bottom:371.706667pt;}
.y1a8_c01323{bottom:372.480000pt;}
.y1af_c01323{bottom:373.253333pt;}
.y1ab_c01323{bottom:374.013333pt;}
.y1ad_c01323{bottom:374.786667pt;}
.y1ae_c01323{bottom:377.853333pt;}
.y1aa_c01323{bottom:381.693333pt;}
.y19b_c01323{bottom:384.000000pt;}
.y19e_c01323{bottom:385.533333pt;}
.y1a1_c01323{bottom:386.306667pt;}
.y19c_c01323{bottom:387.066667pt;}
.y1a0_c01323{bottom:387.840000pt;}
.y19d_c01323{bottom:389.373333pt;}
.y1a4_c01323{bottom:390.146667pt;}
.y19f_c01323{bottom:391.680000pt;}
.y1a5_c01323{bottom:392.453333pt;}
.y1a2_c01323{bottom:393.213333pt;}
.y1a3_c01323{bottom:397.826667pt;}
.y192_c01323{bottom:403.200000pt;}
.y193_c01323{bottom:403.973333pt;}
.y191_c01323{bottom:405.506667pt;}
.y198_c01323{bottom:406.266667pt;}
.y195_c01323{bottom:407.813333pt;}
.y194_c01323{bottom:409.346667pt;}
.y196_c01323{bottom:410.880000pt;}
.y199_c01323{bottom:411.653333pt;}
.y197_c01323{bottom:412.413333pt;}
.y19a_c01323{bottom:413.946667pt;}
.y189_c01323{bottom:420.093333pt;}
.y18a_c01323{bottom:420.866667pt;}
.y18d_c01323{bottom:424.706667pt;}
.y18b_c01323{bottom:425.466667pt;}
.y18c_c01323{bottom:426.240000pt;}
.y18e_c01323{bottom:428.546667pt;}
.y18f_c01323{bottom:430.080000pt;}
.y190_c01323{bottom:431.613333pt;}
.y180_c01323{bottom:435.453333pt;}
.y182_c01323{bottom:440.066667pt;}
.y183_c01323{bottom:440.826667pt;}
.y181_c01323{bottom:441.600000pt;}
.y185_c01323{bottom:442.373333pt;}
.y184_c01323{bottom:443.133333pt;}
.y186_c01323{bottom:443.906667pt;}
.y187_c01323{bottom:446.973333pt;}
.y188_c01323{bottom:449.280000pt;}
.y179_c01323{bottom:456.960000pt;}
.y17a_c01323{bottom:459.266667pt;}
.y177_c01323{bottom:460.800000pt;}
.y178_c01323{bottom:461.573333pt;}
.y17b_c01323{bottom:462.333333pt;}
.y17e_c01323{bottom:463.106667pt;}
.y17c_c01323{bottom:463.866667pt;}
.y17d_c01323{bottom:465.413333pt;}
.y17f_c01323{bottom:467.706667pt;}
.y16b_c01323{bottom:473.093333pt;}
.y16d_c01323{bottom:474.626667pt;}
.y16f_c01323{bottom:476.933333pt;}
.y173_c01323{bottom:477.693333pt;}
.y16c_c01323{bottom:478.466667pt;}
.y172_c01323{bottom:479.226667pt;}
.y174_c01323{bottom:480.000000pt;}
.y16e_c01323{bottom:480.773333pt;}
.y170_c01323{bottom:481.533333pt;}
.y171_c01323{bottom:482.306667pt;}
.y175_c01323{bottom:483.066667pt;}
.y176_c01323{bottom:485.373333pt;}
.y162_c01323{bottom:492.293333pt;}
.y164_c01323{bottom:493.826667pt;}
.y165_c01323{bottom:494.586667pt;}
.y167_c01323{bottom:497.666667pt;}
.y168_c01323{bottom:499.200000pt;}
.y163_c01323{bottom:500.733333pt;}
.y169_c01323{bottom:501.506667pt;}
.y16a_c01323{bottom:502.266667pt;}
.y166_c01323{bottom:503.040000pt;}
.y15d_c01323{bottom:508.413333pt;}
.y15f_c01323{bottom:512.253333pt;}
.y15e_c01323{bottom:513.026667pt;}
.y15c_c01323{bottom:513.786667pt;}
.y159_c01323{bottom:515.333333pt;}
.y161_c01323{bottom:517.626667pt;}
.y160_c01323{bottom:519.173333pt;}
.y232_c01323{bottom:519.933333pt;}
.y15a_c01323{bottom:520.706667pt;}
.y158_c01323{bottom:521.466667pt;}
.y156_c01323{bottom:524.546667pt;}
.y157_c01323{bottom:526.080000pt;}
.y14e_c01323{bottom:526.853333pt;}
.y14f_c01323{bottom:527.613333pt;}
.y15b_c01323{bottom:530.693333pt;}
.y150_c01323{bottom:532.226667pt;}
.y151_c01323{bottom:533.760000pt;}
.y154_c01323{bottom:535.293333pt;}
.y152_c01323{bottom:536.826667pt;}
.y153_c01323{bottom:538.373333pt;}
.y155_c01323{bottom:539.133333pt;}
.y145_c01323{bottom:546.053333pt;}
.y147_c01323{bottom:546.813333pt;}
.y14a_c01323{bottom:549.893333pt;}
.y146_c01323{bottom:550.653333pt;}
.y148_c01323{bottom:551.426667pt;}
.y149_c01323{bottom:552.186667pt;}
.y14c_c01323{bottom:552.960000pt;}
.y14b_c01323{bottom:554.493333pt;}
.y14d_c01323{bottom:556.800000pt;}
.y141_c01323{bottom:564.480000pt;}
.y142_c01323{bottom:566.013333pt;}
.y143_c01323{bottom:570.626667pt;}
.y144_c01323{bottom:571.386667pt;}
.y140_c01323{bottom:578.306667pt;}
.y138_c01323{bottom:579.840000pt;}
.y139_c01323{bottom:580.613333pt;}
.y13c_c01323{bottom:585.986667pt;}
.y13d_c01323{bottom:588.293333pt;}
.y13f_c01323{bottom:589.053333pt;}
.y13a_c01323{bottom:589.826667pt;}
.y13e_c01323{bottom:591.360000pt;}
.y13b_c01323{bottom:594.426667pt;}
.y12e_c01323{bottom:600.573333pt;}
.y12f_c01323{bottom:601.346667pt;}
.y130_c01323{bottom:604.413333pt;}
.y131_c01323{bottom:605.186667pt;}
.y133_c01323{bottom:606.720000pt;}
.y132_c01323{bottom:607.493333pt;}
.y134_c01323{bottom:608.253333pt;}
.y136_c01323{bottom:609.026667pt;}
.y135_c01323{bottom:609.786667pt;}
.y137_c01323{bottom:611.333333pt;}
.y126_c01323{bottom:613.626667pt;}
.y127_c01323{bottom:614.400000pt;}
.y231_c01323{bottom:615.173333pt;}
.y128_c01323{bottom:617.466667pt;}
.y12c_c01323{bottom:620.546667pt;}
.y12d_c01323{bottom:622.080000pt;}
.y12a_c01323{bottom:625.146667pt;}
.y129_c01323{bottom:625.920000pt;}
.y12b_c01323{bottom:626.693333pt;}
.y120_c01323{bottom:634.373333pt;}
.y123_c01323{bottom:638.213333pt;}
.y125_c01323{bottom:638.973333pt;}
.y124_c01323{bottom:639.746667pt;}
.y121_c01323{bottom:640.506667pt;}
.y122_c01323{bottom:642.053333pt;}
.y230_c01323{bottom:646.653333pt;}
.y22f_c01323{bottom:651.266667pt;}
.y119_c01323{bottom:653.573333pt;}
.y118_c01323{bottom:655.866667pt;}
.y11c_c01323{bottom:657.413333pt;}
.y11b_c01323{bottom:658.173333pt;}
.y11a_c01323{bottom:658.946667pt;}
.y11e_c01323{bottom:661.253333pt;}
.y11d_c01323{bottom:662.013333pt;}
.y11f_c01323{bottom:663.546667pt;}
.y110_c01323{bottom:670.466667pt;}
.y112_c01323{bottom:675.066667pt;}
.y114_c01323{bottom:675.840000pt;}
.y111_c01323{bottom:677.373333pt;}
.y113_c01323{bottom:678.146667pt;}
.y115_c01323{bottom:681.986667pt;}
.y116_c01323{bottom:682.746667pt;}
.y107_c01323{bottom:686.586667pt;}
.y117_c01323{bottom:688.893333pt;}
.y10a_c01323{bottom:690.426667pt;}
.y108_c01323{bottom:691.200000pt;}
.y109_c01323{bottom:691.973333pt;}
.y10c_c01323{bottom:692.733333pt;}
.y10b_c01323{bottom:694.266667pt;}
.y10f_c01323{bottom:696.573333pt;}
.y10d_c01323{bottom:698.880000pt;}
.y10e_c01323{bottom:699.653333pt;}
.yfd_c01323{bottom:701.186667pt;}
.yfc_c01323{bottom:701.946667pt;}
.y22d_c01323{bottom:704.253333pt;}
.y22e_c01323{bottom:705.026667pt;}
.y100_c01323{bottom:708.093333pt;}
.yff_c01323{bottom:709.626667pt;}
.yfe_c01323{bottom:710.400000pt;}
.y101_c01323{bottom:711.933333pt;}
.y105_c01323{bottom:713.466667pt;}
.y103_c01323{bottom:715.773333pt;}
.y104_c01323{bottom:716.546667pt;}
.y106_c01323{bottom:717.306667pt;}
.yf4_c01323{bottom:722.693333pt;}
.y102_c01323{bottom:724.986667pt;}
.y22c_c01323{bottom:725.760000pt;}
.yf5_c01323{bottom:727.293333pt;}
.yf7_c01323{bottom:728.066667pt;}
.yf6_c01323{bottom:728.826667pt;}
.y22b_c01323{bottom:731.906667pt;}
.yf9_c01323{bottom:733.440000pt;}
.yf8_c01323{bottom:734.213333pt;}
.yfa_c01323{bottom:734.973333pt;}
.yfb_c01323{bottom:736.506667pt;}
.yed_c01323{bottom:741.120000pt;}
.yef_c01323{bottom:743.426667pt;}
.yf0_c01323{bottom:744.186667pt;}
.yf3_c01323{bottom:745.733333pt;}
.yee_c01323{bottom:746.493333pt;}
.yf2_c01323{bottom:748.026667pt;}
.yf1_c01323{bottom:749.573333pt;}
.y22a_c01323{bottom:752.640000pt;}
.ye6_c01323{bottom:760.320000pt;}
.ye8_c01323{bottom:762.626667pt;}
.ye7_c01323{bottom:763.386667pt;}
.ye9_c01323{bottom:764.933333pt;}
.yea_c01323{bottom:766.466667pt;}
.yeb_c01323{bottom:767.226667pt;}
.yec_c01323{bottom:772.613333pt;}
.y229_c01323{bottom:774.906667pt;}
.ydc_c01323{bottom:777.986667pt;}
.ydd_c01323{bottom:778.746667pt;}
.yde_c01323{bottom:779.520000pt;}
.ye0_c01323{bottom:781.826667pt;}
.ydf_c01323{bottom:782.586667pt;}
.ye2_c01323{bottom:784.133333pt;}
.ye4_c01323{bottom:784.893333pt;}
.ye5_c01323{bottom:785.666667pt;}
.ye1_c01323{bottom:786.426667pt;}
.ye3_c01323{bottom:789.506667pt;}
.y225_c01323{bottom:794.880000pt;}
.yd4_c01323{bottom:797.186667pt;}
.yd6_c01323{bottom:798.720000pt;}
.yd5_c01323{bottom:800.253333pt;}
.yd8_c01323{bottom:801.786667pt;}
.yd9_c01323{bottom:803.333333pt;}
.ydb_c01323{bottom:804.093333pt;}
.yd7_c01323{bottom:804.866667pt;}
.y228_c01323{bottom:805.626667pt;}
.yda_c01323{bottom:807.173333pt;}
.y224_c01323{bottom:812.546667pt;}
.ycf_c01323{bottom:814.853333pt;}
.yc4_c01323{bottom:817.920000pt;}
.yc5_c01323{bottom:818.693333pt;}
.yc6_c01323{bottom:819.453333pt;}
.yd0_c01323{bottom:820.226667pt;}
.yce_c01323{bottom:820.986667pt;}
.yd1_c01323{bottom:821.760000pt;}
.yd3_c01323{bottom:822.533333pt;}
.yd2_c01323{bottom:823.293333pt;}
.yc8_c01323{bottom:824.066667pt;}
.yc9_c01323{bottom:827.133333pt;}
.yc3_c01323{bottom:827.906667pt;}
.ycc_c01323{bottom:829.440000pt;}
.yc7_c01323{bottom:830.973333pt;}
.ycb_c01323{bottom:831.746667pt;}
.yca_c01323{bottom:832.506667pt;}
.ybd_c01323{bottom:834.053333pt;}
.ybc_c01323{bottom:834.813333pt;}
.ycd_c01323{bottom:835.586667pt;}
.y223_c01323{bottom:836.346667pt;}
.ybe_c01323{bottom:837.120000pt;}
.yc0_c01323{bottom:840.186667pt;}
.ybf_c01323{bottom:840.960000pt;}
.yc2_c01323{bottom:844.026667pt;}
.yc1_c01323{bottom:844.800000pt;}
.y226_c01323{bottom:845.573333pt;}
.y227_c01323{bottom:848.640000pt;}
.yb3_c01323{bottom:849.413333pt;}
.yb0_c01323{bottom:850.173333pt;}
.yb1_c01323{bottom:852.480000pt;}
.yb2_c01323{bottom:853.253333pt;}
.yb4_c01323{bottom:855.546667pt;}
.yb8_c01323{bottom:857.093333pt;}
.yb7_c01323{bottom:857.853333pt;}
.yb6_c01323{bottom:858.626667pt;}
.yb5_c01323{bottom:859.386667pt;}
.yba_c01323{bottom:860.933333pt;}
.yb9_c01323{bottom:861.693333pt;}
.ybb_c01323{bottom:862.466667pt;}
.y222_c01323{bottom:867.840000pt;}
.ya8_c01323{bottom:868.613333pt;}
.ya9_c01323{bottom:870.906667pt;}
.yaa_c01323{bottom:872.453333pt;}
.yab_c01323{bottom:873.213333pt;}
.yac_c01323{bottom:874.746667pt;}
.yae_c01323{bottom:876.293333pt;}
.yad_c01323{bottom:879.360000pt;}
.y221_c01323{bottom:885.506667pt;}
.ya1_c01323{bottom:886.266667pt;}
.ya0_c01323{bottom:887.813333pt;}
.ya2_c01323{bottom:889.346667pt;}
.ya4_c01323{bottom:890.106667pt;}
.ya5_c01323{bottom:890.880000pt;}
.ya3_c01323{bottom:891.653333pt;}
.yaf_c01323{bottom:892.413333pt;}
.ya6_c01323{bottom:894.720000pt;}
.ya7_c01323{bottom:900.093333pt;}
.y9f_c01323{bottom:900.866667pt;}
.y97_c01323{bottom:903.933333pt;}
.y98_c01323{bottom:904.706667pt;}
.y94_c01323{bottom:905.466667pt;}
.y99_c01323{bottom:906.240000pt;}
.y95_c01323{bottom:907.013333pt;}
.y96_c01323{bottom:907.773333pt;}
.y9c_c01323{bottom:909.306667pt;}
.y9d_c01323{bottom:910.853333pt;}
.y9a_c01323{bottom:911.613333pt;}
.y9b_c01323{bottom:912.386667pt;}
.y93_c01323{bottom:916.986667pt;}
.y9e_c01323{bottom:922.373333pt;}
.y8d_c01323{bottom:923.906667pt;}
.y91_c01323{bottom:925.440000pt;}
.y8e_c01323{bottom:926.213333pt;}
.y8f_c01323{bottom:927.746667pt;}
.y90_c01323{bottom:928.506667pt;}
.y92_c01323{bottom:930.813333pt;}
.y220_c01323{bottom:936.186667pt;}
.y87_c01323{bottom:936.960000pt;}
.y88_c01323{bottom:940.026667pt;}
.y8b_c01323{bottom:942.333333pt;}
.y8c_c01323{bottom:943.106667pt;}
.y7d_c01323{bottom:944.640000pt;}
.y89_c01323{bottom:945.413333pt;}
.y8a_c01323{bottom:946.173333pt;}
.y80_c01323{bottom:948.480000pt;}
.y7b_c01323{bottom:949.253333pt;}
.y7a_c01323{bottom:950.013333pt;}
.y86_c01323{bottom:950.786667pt;}
.y7c_c01323{bottom:951.546667pt;}
.y7e_c01323{bottom:952.320000pt;}
.y7f_c01323{bottom:953.093333pt;}
.y82_c01323{bottom:953.853333pt;}
.y81_c01323{bottom:955.386667pt;}
.y83_c01323{bottom:956.933333pt;}
.y84_c01323{bottom:957.693333pt;}
.y85_c01323{bottom:958.466667pt;}
.y74_c01323{bottom:959.226667pt;}
.y72_c01323{bottom:960.000000pt;}
.y78_c01323{bottom:962.306667pt;}
.y77_c01323{bottom:963.066667pt;}
.y73_c01323{bottom:963.840000pt;}
.y79_c01323{bottom:965.373333pt;}
.y76_c01323{bottom:966.146667pt;}
.y75_c01323{bottom:970.746667pt;}
.y69_c01323{bottom:975.360000pt;}
.y6a_c01323{bottom:976.133333pt;}
.y6d_c01323{bottom:979.973333pt;}
.y6e_c01323{bottom:981.506667pt;}
.y6b_c01323{bottom:982.266667pt;}
.y6c_c01323{bottom:983.813333pt;}
.y70_c01323{bottom:985.346667pt;}
.y6f_c01323{bottom:986.106667pt;}
.y71_c01323{bottom:988.413333pt;}
.y60_c01323{bottom:993.026667pt;}
.y63_c01323{bottom:993.786667pt;}
.y61_c01323{bottom:996.866667pt;}
.y62_c01323{bottom:998.400000pt;}
.y64_c01323{bottom:999.933333pt;}
.y68_c01323{bottom:1000.706667pt;}
.y65_c01323{bottom:1001.466667pt;}
.y5f_c01323{bottom:1002.240000pt;}
.y66_c01323{bottom:1003.773333pt;}
.y5a_c01323{bottom:1011.453333pt;}
.y67_c01323{bottom:1012.226667pt;}
.y59_c01323{bottom:1012.986667pt;}
.y5c_c01323{bottom:1013.760000pt;}
.y5b_c01323{bottom:1015.293333pt;}
.y5d_c01323{bottom:1019.906667pt;}
.y5e_c01323{bottom:1020.666667pt;}
.y4f_c01323{bottom:1027.586667pt;}
.y50_c01323{bottom:1028.346667pt;}
.y54_c01323{bottom:1032.186667pt;}
.y51_c01323{bottom:1032.960000pt;}
.y52_c01323{bottom:1033.733333pt;}
.y53_c01323{bottom:1034.493333pt;}
.y57_c01323{bottom:1035.266667pt;}
.y58_c01323{bottom:1036.026667pt;}
.y55_c01323{bottom:1036.800000pt;}
.y56_c01323{bottom:1038.333333pt;}
.y43_c01323{bottom:1049.093333pt;}
.y44_c01323{bottom:1049.853333pt;}
.y45_c01323{bottom:1050.626667pt;}
.y47_c01323{bottom:1051.386667pt;}
.y49_c01323{bottom:1052.160000pt;}
.y48_c01323{bottom:1052.933333pt;}
.y4a_c01323{bottom:1053.693333pt;}
.y4b_c01323{bottom:1054.466667pt;}
.y46_c01323{bottom:1055.226667pt;}
.y4c_c01323{bottom:1059.066667pt;}
.y4e_c01323{bottom:1061.373333pt;}
.y4d_c01323{bottom:1062.146667pt;}
.y3c_c01323{bottom:1063.680000pt;}
.y3b_c01323{bottom:1068.293333pt;}
.y3d_c01323{bottom:1069.053333pt;}
.y41_c01323{bottom:1069.826667pt;}
.y3e_c01323{bottom:1070.586667pt;}
.y3f_c01323{bottom:1071.360000pt;}
.y40_c01323{bottom:1072.133333pt;}
.y42_c01323{bottom:1072.893333pt;}
.y34_c01323{bottom:1082.106667pt;}
.y35_c01323{bottom:1084.413333pt;}
.y36_c01323{bottom:1089.026667pt;}
.y38_c01323{bottom:1089.786667pt;}
.y37_c01323{bottom:1090.560000pt;}
.y39_c01323{bottom:1092.093333pt;}
.y3a_c01323{bottom:1095.173333pt;}
.y2a_c01323{bottom:1101.306667pt;}
.y28_c01323{bottom:1103.613333pt;}
.y2b_c01323{bottom:1104.386667pt;}
.y29_c01323{bottom:1105.146667pt;}
.y2e_c01323{bottom:1108.226667pt;}
.y2c_c01323{bottom:1108.986667pt;}
.y2d_c01323{bottom:1110.533333pt;}
.y30_c01323{bottom:1112.066667pt;}
.y2f_c01323{bottom:1112.826667pt;}
.y31_c01323{bottom:1115.906667pt;}
.y32_c01323{bottom:1117.440000pt;}
.y20_c01323{bottom:1119.746667pt;}
.y22_c01323{bottom:1121.280000pt;}
.y1e_c01323{bottom:1122.053333pt;}
.y33_c01323{bottom:1122.813333pt;}
.y1f_c01323{bottom:1123.586667pt;}
.y21_c01323{bottom:1125.120000pt;}
.y25_c01323{bottom:1125.893333pt;}
.y23_c01323{bottom:1126.653333pt;}
.y26_c01323{bottom:1127.426667pt;}
.y24_c01323{bottom:1128.186667pt;}
.y27_c01323{bottom:1130.493333pt;}
.y15_c01323{bottom:1138.173333pt;}
.y18_c01323{bottom:1139.706667pt;}
.y16_c01323{bottom:1140.480000pt;}
.y17_c01323{bottom:1142.013333pt;}
.y1a_c01323{bottom:1142.786667pt;}
.y1b_c01323{bottom:1145.853333pt;}
.y19_c01323{bottom:1146.626667pt;}
.y1c_c01323{bottom:1147.386667pt;}
.y1d_c01323{bottom:1149.693333pt;}
.y11_c01323{bottom:1156.613333pt;}
.ye_c01323{bottom:1157.373333pt;}
.yf_c01323{bottom:1158.906667pt;}
.y12_c01323{bottom:1159.680000pt;}
.y10_c01323{bottom:1160.453333pt;}
.y14_c01323{bottom:1162.746667pt;}
.y13_c01323{bottom:1172.733333pt;}
.y8_c01323{bottom:1174.266667pt;}
.y7_c01323{bottom:1175.040000pt;}
.y6_c01323{bottom:1175.813333pt;}
.yb_c01323{bottom:1178.880000pt;}
.yc_c01323{bottom:1181.186667pt;}
.yd_c01323{bottom:1181.946667pt;}
.y9_c01323{bottom:1182.720000pt;}
.ya_c01323{bottom:1183.493333pt;}
.y21c_c01323{bottom:1201.920000pt;}
.y21d_c01323{bottom:1203.453333pt;}
.y5_c01323{bottom:1204.986667pt;}
.y21e_c01323{bottom:1205.760000pt;}
.y21f_c01323{bottom:1207.293333pt;}
.y3_c01323{bottom:1234.173333pt;}
.y2_c01323{bottom:1235.706667pt;}
.y1_c01323{bottom:1246.466667pt;}
.h11_c01323{height:2.764500pt;}
.h4_c01323{height:4.799479pt;}
.h3_c01323{height:5.519401pt;}
.h19_c01323{height:8.303099pt;}
.h1a_c01323{height:11.038802pt;}
.h1f_c01323{height:13.566198pt;}
.h1c_c01323{height:13.822500pt;}
.h17_c01323{height:16.606198pt;}
.h1b_c01323{height:19.341901pt;}
.h1e_c01323{height:22.125599pt;}
.h2_c01323{height:24.861302pt;}
.h14_c01323{height:27.645000pt;}
.h18_c01323{height:30.428698pt;}
.h13_c01323{height:33.164401pt;}
.h16_c01323{height:35.948099pt;}
.h5_c01323{height:38.683802pt;}
.hb_c01323{height:41.467500pt;}
.ha_c01323{height:44.251198pt;}
.h7_c01323{height:46.986901pt;}
.h21_c01323{height:47.654167pt;}
.h12_c01323{height:49.770599pt;}
.h20_c01323{height:50.384531pt;}
.h15_c01323{height:52.506302pt;}
.hc_c01323{height:55.290000pt;}
.h10_c01323{height:58.073698pt;}
.h8_c01323{height:60.809401pt;}
.h1d_c01323{height:63.593099pt;}
.hd_c01323{height:66.328802pt;}
.h22_c01323{height:69.112500pt;}
.h9_c01323{height:71.896198pt;}
.h23_c01323{height:74.631901pt;}
.h6_c01323{height:77.415599pt;}
.hf_c01323{height:80.151302pt;}
.he_c01323{height:82.935000pt;}
.h25_c01323{height:105.060599pt;}
.h24_c01323{height:107.796302pt;}
.h0_c01323{height:1341.693333pt;}
.h1_c01323{height:1342.000000pt;}
.w0_c01323{width:959.226667pt;}
.w1_c01323{width:959.333333pt;}
.x0_c01323{left:0.000000pt;}
.x121_c01323{left:2.306667pt;}
.x122_c01323{left:13.053333pt;}
.x123_c01323{left:19.973333pt;}
.x120_c01323{left:72.186667pt;}
.x128_c01323{left:88.320000pt;}
.x127_c01323{left:92.160000pt;}
.x129_c01323{left:95.226667pt;}
.x126_c01323{left:99.066667pt;}
.x124_c01323{left:139.013333pt;}
.x12c_c01323{left:140.546667pt;}
.x131_c01323{left:148.226667pt;}
.x125_c01323{left:153.600000pt;}
.x12d_c01323{left:157.440000pt;}
.x4_c01323{left:163.586667pt;}
.x132_c01323{left:165.120000pt;}
.xc2_c01323{left:167.426667pt;}
.xf0_c01323{left:172.800000pt;}
.xc7_c01323{left:174.333333pt;}
.x64_c01323{left:177.413333pt;}
.xc3_c01323{left:181.253333pt;}
.x57_c01323{left:183.546667pt;}
.x65_c01323{left:189.693333pt;}
.x12_c01323{left:195.840000pt;}
.x17_c01323{left:197.373333pt;}
.x6_c01323{left:199.680000pt;}
.x74_c01323{left:201.213333pt;}
.x6c_c01323{left:203.520000pt;}
.x96_c01323{left:205.053333pt;}
.xbb_c01323{left:206.586667pt;}
.xc8_c01323{left:208.133333pt;}
.xcd_c01323{left:209.666667pt;}
.xe5_c01323{left:211.200000pt;}
.xec_c01323{left:212.733333pt;}
.x3d_c01323{left:215.813333pt;}
.xfe_c01323{left:217.346667pt;}
.x44_c01323{left:218.880000pt;}
.x115_c01323{left:220.413333pt;}
.xe0_c01323{left:222.720000pt;}
.xa5_c01323{left:224.253333pt;}
.xc4_c01323{left:225.786667pt;}
.x54_c01323{left:228.093333pt;}
.xbc_c01323{left:230.400000pt;}
.x18_c01323{left:232.706667pt;}
.x7c_c01323{left:234.240000pt;}
.x2b_c01323{left:238.080000pt;}
.x36_c01323{left:239.613333pt;}
.xa9_c01323{left:242.693333pt;}
.xd6_c01323{left:244.226667pt;}
.x6d_c01323{left:247.293333pt;}
.x97_c01323{left:249.600000pt;}
.xd5_c01323{left:251.906667pt;}
.x7_c01323{left:254.213333pt;}
.x116_c01323{left:255.746667pt;}
.x81_c01323{left:258.813333pt;}
.x20_c01323{left:261.893333pt;}
.xda_c01323{left:264.186667pt;}
.x98_c01323{left:268.026667pt;}
.xbd_c01323{left:272.640000pt;}
.x4c_c01323{left:276.480000pt;}
.x1_c01323{left:279.546667pt;}
.x37_c01323{left:283.386667pt;}
.x3e_c01323{left:285.693333pt;}
.x21_c01323{left:288.000000pt;}
.x19_c01323{left:290.306667pt;}
.x13_c01323{left:291.840000pt;}
.x10b_c01323{left:294.146667pt;}
.xc5_c01323{left:295.680000pt;}
.x58_c01323{left:297.213333pt;}
.x82_c01323{left:299.520000pt;}
.xd3_c01323{left:301.053333pt;}
.x11d_c01323{left:302.586667pt;}
.x66_c01323{left:304.133333pt;}
.x2c_c01323{left:305.666667pt;}
.x8a_c01323{left:308.733333pt;}
.x3f_c01323{left:310.266667pt;}
.x59_c01323{left:312.573333pt;}
.xd0_c01323{left:315.653333pt;}
.x1a_c01323{left:317.946667pt;}
.x40_c01323{left:322.560000pt;}
.x6e_c01323{left:324.866667pt;}
.x22_c01323{left:327.173333pt;}
.x7d_c01323{left:330.240000pt;}
.xfb_c01323{left:332.546667pt;}
.x4d_c01323{left:335.613333pt;}
.xf1_c01323{left:337.146667pt;}
.xe6_c01323{left:339.453333pt;}
.x14_c01323{left:341.760000pt;}
.x105_c01323{left:344.066667pt;}
.xb1_c01323{left:346.373333pt;}
.xd7_c01323{left:347.906667pt;}
.x11b_c01323{left:349.440000pt;}
.x1b_c01323{left:351.746667pt;}
.x23_c01323{left:353.280000pt;}
.x41_c01323{left:354.813333pt;}
.xf4_c01323{left:356.346667pt;}
.x38_c01323{left:359.426667pt;}
.x8b_c01323{left:360.960000pt;}
.xaa_c01323{left:364.800000pt;}
.x75_c01323{left:367.866667pt;}
.xad_c01323{left:369.413333pt;}
.x110_c01323{left:370.946667pt;}
.xc9_c01323{left:372.480000pt;}
.x83_c01323{left:374.013333pt;}
.x76_c01323{left:375.546667pt;}
.x2d_c01323{left:377.093333pt;}
.xff_c01323{left:379.386667pt;}
.x8c_c01323{left:380.933333pt;}
.x24_c01323{left:383.226667pt;}
.xe2_c01323{left:385.533333pt;}
.xdb_c01323{left:387.840000pt;}
.x15_c01323{left:389.373333pt;}
.x2e_c01323{left:393.986667pt;}
.xed_c01323{left:395.520000pt;}
.x62_c01323{left:397.826667pt;}
.xd8_c01323{left:399.360000pt;}
.x7e_c01323{left:401.666667pt;}
.x8_c01323{left:403.200000pt;}
.x84_c01323{left:405.506667pt;}
.x5a_c01323{left:407.040000pt;}
.x55_c01323{left:409.346667pt;}
.xea_c01323{left:410.880000pt;}
.x39_c01323{left:412.413333pt;}
.x4e_c01323{left:414.720000pt;}
.x45_c01323{left:417.026667pt;}
.x99_c01323{left:419.333333pt;}
.x46_c01323{left:420.866667pt;}
.x4f_c01323{left:423.173333pt;}
.x92_c01323{left:425.466667pt;}
.x42_c01323{left:427.013333pt;}
.x77_c01323{left:428.546667pt;}
.xe7_c01323{left:430.853333pt;}
.x1c_c01323{left:432.386667pt;}
.x112_c01323{left:433.920000pt;}
.x2_c01323{left:435.453333pt;}
.x117_c01323{left:436.986667pt;}
.x85_c01323{left:439.293333pt;}
.x3_c01323{left:440.826667pt;}
.x103_c01323{left:442.373333pt;}
.xab_c01323{left:445.440000pt;}
.x2f_c01323{left:448.506667pt;}
.x5b_c01323{left:450.053333pt;}
.xb7_c01323{left:451.586667pt;}
.x9_c01323{left:454.653333pt;}
.x106_c01323{left:456.186667pt;}
.x6f_c01323{left:459.266667pt;}
.xbe_c01323{left:461.573333pt;}
.xfc_c01323{left:463.106667pt;}
.x5c_c01323{left:466.173333pt;}
.x100_c01323{left:467.706667pt;}
.x5d_c01323{left:471.546667pt;}
.xa_c01323{left:473.093333pt;}
.x25_c01323{left:476.160000pt;}
.x16_c01323{left:478.466667pt;}
.x47_c01323{left:482.306667pt;}
.xca_c01323{left:484.613333pt;}
.x48_c01323{left:487.680000pt;}
.x26_c01323{left:489.213333pt;}
.xb_c01323{left:490.746667pt;}
.x43_c01323{left:492.293333pt;}
.x5e_c01323{left:493.826667pt;}
.x93_c01323{left:495.360000pt;}
.x9a_c01323{left:496.893333pt;}
.xa0_c01323{left:498.426667pt;}
.xa6_c01323{left:499.973333pt;}
.xb5_c01323{left:501.506667pt;}
.xdc_c01323{left:503.040000pt;}
.xe3_c01323{left:504.573333pt;}
.xee_c01323{left:506.880000pt;}
.xf6_c01323{left:508.413333pt;}
.x86_c01323{left:509.946667pt;}
.xd1_c01323{left:511.493333pt;}
.x11e_c01323{left:513.786667pt;}
.xd4_c01323{left:519.173333pt;}
.xc_c01323{left:520.706667pt;}
.x67_c01323{left:523.013333pt;}
.x104_c01323{left:524.546667pt;}
.x7f_c01323{left:526.080000pt;}
.xa7_c01323{left:527.613333pt;}
.xf5_c01323{left:529.146667pt;}
.x50_c01323{left:530.693333pt;}
.xd9_c01323{left:532.226667pt;}
.xe1_c01323{left:533.760000pt;}
.xb2_c01323{left:535.293333pt;}
.x30_c01323{left:536.826667pt;}
.x68_c01323{left:538.373333pt;}
.x9b_c01323{left:539.906667pt;}
.xb8_c01323{left:542.213333pt;}
.x8d_c01323{left:545.280000pt;}
.x9c_c01323{left:546.813333pt;}
.x111_c01323{left:549.120000pt;}
.x109_c01323{left:550.653333pt;}
.x69_c01323{left:552.186667pt;}
.xcb_c01323{left:554.493333pt;}
.x107_c01323{left:557.573333pt;}
.x5f_c01323{left:559.866667pt;}
.x49_c01323{left:562.173333pt;}
.x6a_c01323{left:563.706667pt;}
.x27_c01323{left:566.013333pt;}
.xbf_c01323{left:567.546667pt;}
.x1d_c01323{left:569.853333pt;}
.xef_c01323{left:571.386667pt;}
.x10a_c01323{left:573.693333pt;}
.x3a_c01323{left:575.226667pt;}
.xd_c01323{left:579.066667pt;}
.xae_c01323{left:580.613333pt;}
.x3b_c01323{left:582.146667pt;}
.x10d_c01323{left:584.453333pt;}
.xe8_c01323{left:585.986667pt;}
.xac_c01323{left:587.520000pt;}
.x8e_c01323{left:590.586667pt;}
.x31_c01323{left:592.133333pt;}
.x70_c01323{left:593.666667pt;}
.x80_c01323{left:596.733333pt;}
.x118_c01323{left:598.266667pt;}
.x87_c01323{left:601.346667pt;}
.x4a_c01323{left:602.880000pt;}
.x101_c01323{left:605.186667pt;}
.xa1_c01323{left:606.720000pt;}
.x51_c01323{left:609.026667pt;}
.xb3_c01323{left:610.560000pt;}
.xe_c01323{left:615.933333pt;}
.x6b_c01323{left:618.240000pt;}
.xcc_c01323{left:622.080000pt;}
.xaf_c01323{left:624.386667pt;}
.xdd_c01323{left:626.693333pt;}
.xc0_c01323{left:628.986667pt;}
.xf7_c01323{left:631.293333pt;}
.xf3_c01323{left:632.826667pt;}
.xce_c01323{left:635.133333pt;}
.x28_c01323{left:636.666667pt;}
.x78_c01323{left:638.973333pt;}
.xde_c01323{left:642.813333pt;}
.x60_c01323{left:644.346667pt;}
.x94_c01323{left:645.893333pt;}
.xb4_c01323{left:649.733333pt;}
.x52_c01323{left:651.266667pt;}
.x79_c01323{left:652.800000pt;}
.x56_c01323{left:654.333333pt;}
.x113_c01323{left:656.640000pt;}
.x71_c01323{left:658.173333pt;}
.x1e_c01323{left:659.706667pt;}
.x9d_c01323{left:661.253333pt;}
.x8f_c01323{left:662.786667pt;}
.xb9_c01323{left:665.093333pt;}
.x88_c01323{left:667.386667pt;}
.x29_c01323{left:670.466667pt;}
.xa8_c01323{left:673.533333pt;}
.x63_c01323{left:675.840000pt;}
.x4b_c01323{left:678.146667pt;}
.xf8_c01323{left:679.680000pt;}
.x10e_c01323{left:682.746667pt;}
.x9e_c01323{left:684.293333pt;}
.xeb_c01323{left:688.133333pt;}
.x3c_c01323{left:689.666667pt;}
.x53_c01323{left:691.200000pt;}
.x2a_c01323{left:692.733333pt;}
.xb0_c01323{left:695.040000pt;}
.x114_c01323{left:697.346667pt;}
.xf_c01323{left:698.880000pt;}
.xa2_c01323{left:701.946667pt;}
.xf2_c01323{left:703.493333pt;}
.xdf_c01323{left:705.026667pt;}
.x119_c01323{left:706.560000pt;}
.xd2_c01323{left:708.866667pt;}
.x9f_c01323{left:711.173333pt;}
.x32_c01323{left:713.466667pt;}
.xc1_c01323{left:715.773333pt;}
.x61_c01323{left:718.080000pt;}
.xb6_c01323{left:720.386667pt;}
.x72_c01323{left:721.920000pt;}
.x10_c01323{left:724.986667pt;}
.x1f_c01323{left:726.533333pt;}
.xfd_c01323{left:728.066667pt;}
.x5_c01323{left:729.600000pt;}
.x10c_c01323{left:731.906667pt;}
.xba_c01323{left:733.440000pt;}
.x7a_c01323{left:735.746667pt;}
.x11c_c01323{left:737.280000pt;}
.x90_c01323{left:740.346667pt;}
.x73_c01323{left:741.893333pt;}
.xc6_c01323{left:745.733333pt;}
.x7b_c01323{left:749.573333pt;}
.xf9_c01323{left:751.106667pt;}
.x33_c01323{left:752.640000pt;}
.xa3_c01323{left:754.173333pt;}
.xcf_c01323{left:756.480000pt;}
.x34_c01323{left:758.786667pt;}
.x11_c01323{left:760.320000pt;}
.xe4_c01323{left:761.853653pt;}
.x102_c01323{left:764.160000pt;}
.xfa_c01323{left:765.693333pt;}
.x35_c01323{left:768.000000pt;}
.x89_c01323{left:770.306667pt;}
.xa4_c01323{left:775.680000pt;}
.x95_c01323{left:779.520000pt;}
.x10f_c01323{left:784.133333pt;}
.x91_c01323{left:785.666667pt;}
.xe9_c01323{left:791.040000pt;}
.x11a_c01323{left:792.573333pt;}
.x108_c01323{left:796.413333pt;}
.x11f_c01323{left:801.026667pt;}
.x12f_c01323{left:834.813333pt;}
.x12a_c01323{left:836.346667pt;}
.x12e_c01323{left:839.426667pt;}
.x130_c01323{left:843.266667pt;}
.x12b_c01323{left:847.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_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_6c96a188f5c227a25b3c7670.woff2')format("woff");}.ff1_c01324{font-family:ff1_c01324;line-height:1.109863;font-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_c01324{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m108_c01324{transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);}
.m106_c01324{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m18b_c01324{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.m139_c01324{transform:matrix(0.097325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097325,0.000000,0.000000,0.250000,0,0);}
.m1e8_c01324{transform:matrix(0.097575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097575,0.000000,0.000000,0.250000,0,0);}
.m15f_c01324{transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097875,0.000000,0.000000,0.250000,0,0);}
.m191_c01324{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);}
.m1c2_c01324{transform:matrix(0.102150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102150,0.000000,0.000000,0.250000,0,0);}
.m186_c01324{transform:matrix(0.105250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105250,0.000000,0.000000,0.250000,0,0);}
.m104_c01324{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);}
.m1de_c01324{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m16b_c01324{transform:matrix(0.107450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107450,0.000000,0.000000,0.250000,0,0);}
.m190_c01324{transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109850,0.000000,0.000000,0.250000,0,0);}
.m181_c01324{transform:matrix(0.110275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110275,0.000000,0.000000,0.250000,0,0);}
.m105_c01324{transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110875,0.000000,0.000000,0.250000,0,0);}
.m12a_c01324{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);}
.m1e1_c01324{transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113475,0.000000,0.000000,0.250000,0,0);}
.m8c_c01324{transform:matrix(0.116500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116500,0.000000,0.000000,0.250000,0,0);}
.m18e_c01324{transform:matrix(0.117150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117150,0.000000,0.000000,0.250000,0,0);}
.mf1_c01324{transform:matrix(0.118250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118250,0.000000,0.000000,0.250000,0,0);}
.m9d_c01324{transform:matrix(0.118950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118950,0.000000,0.000000,0.250000,0,0);}
.m54_c01324{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.md5_c01324{transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120150,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01324{transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120950,0.000000,0.000000,0.250000,0,0);}
.m51_c01324{transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121000,0.000000,0.000000,0.250000,0,0);}
.m1cf_c01324{transform:matrix(0.122300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122300,0.000000,0.000000,0.250000,0,0);}
.m99_c01324{transform:matrix(0.124525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124525,0.000000,0.000000,0.250000,0,0);}
.mb5_c01324{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);}
.m39_c01324{transform:matrix(0.125700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125700,0.000000,0.000000,0.250000,0,0);}
.m157_c01324{transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128525,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01324{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01324{transform:matrix(0.129775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129775,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01324{transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130050,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01324{transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);}
.m5d_c01324{transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);}
.md7_c01324{transform:matrix(0.131375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131375,0.000000,0.000000,0.250000,0,0);}
.m185_c01324{transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01324{transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);}
.m17c_c01324{transform:matrix(0.134300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134300,0.000000,0.000000,0.250000,0,0);}
.m189_c01324{transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134525,0.000000,0.000000,0.250000,0,0);}
.m152_c01324{transform:matrix(0.134575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134575,0.000000,0.000000,0.250000,0,0);}
.mda_c01324{transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);}
.m107_c01324{transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135900,0.000000,0.000000,0.250000,0,0);}
.mb9_c01324{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);}
.m175_c01324{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m112_c01324{transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136875,0.000000,0.000000,0.250000,0,0);}
.m13f_c01324{transform:matrix(0.137025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137025,0.000000,0.000000,0.250000,0,0);}
.m1dc_c01324{transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137525,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01324{transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137575,0.000000,0.000000,0.250000,0,0);}
.mbe_c01324{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);}
.m1b4_c01324{transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);}
.m56_c01324{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01324{transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139375,0.000000,0.000000,0.250000,0,0);}
.ma4_c01324{transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);}
.m196_c01324{transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140125,0.000000,0.000000,0.250000,0,0);}
.m8e_c01324{transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140625,0.000000,0.000000,0.250000,0,0);}
.m151_c01324{transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);}
.mb8_c01324{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);}
.m122_c01324{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.mc_c01324{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01324{transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);}
.m1b_c01324{transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144675,0.000000,0.000000,0.250000,0,0);}
.m90_c01324{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01324{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.m30_c01324{transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);}
.m150_c01324{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);}
.mc6_c01324{transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148300,0.000000,0.000000,0.250000,0,0);}
.m6_c01324{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);}
.m19c_c01324{transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149500,0.000000,0.000000,0.250000,0,0);}
.m68_c01324{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);}
.m1ee_c01324{transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);}
.ma5_c01324{transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151675,0.000000,0.000000,0.250000,0,0);}
.m19b_c01324{transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);}
.m5b_c01324{transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151950,0.000000,0.000000,0.250000,0,0);}
.m5f_c01324{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m19e_c01324{transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152275,0.000000,0.000000,0.250000,0,0);}
.md_c01324{transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01324{transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153550,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01324{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);}
.md0_c01324{transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154300,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01324{transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154575,0.000000,0.000000,0.250000,0,0);}
.m12_c01324{transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154925,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01324{transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155025,0.000000,0.000000,0.250000,0,0);}
.m198_c01324{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.m176_c01324{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);}
.m1c3_c01324{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m115_c01324{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);}
.m18f_c01324{transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01324{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);}
.m60_c01324{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01324{transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159825,0.000000,0.000000,0.250000,0,0);}
.mc8_c01324{transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);}
.m19d_c01324{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.mb6_c01324{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);}
.m126_c01324{transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);}
.m12c_c01324{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m182_c01324{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.mde_c01324{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.m188_c01324{transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);}
.m129_c01324{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.m11c_c01324{transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01324{transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164425,0.000000,0.000000,0.250000,0,0);}
.m14e_c01324{transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);}
.m4f_c01324{transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);}
.m1dd_c01324{transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164925,0.000000,0.000000,0.250000,0,0);}
.m8d_c01324{transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165000,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01324{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.m18c_c01324{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);}
.m10c_c01324{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.m103_c01324{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);}
.m52_c01324{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.mc7_c01324{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m187_c01324{transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166700,0.000000,0.000000,0.250000,0,0);}
.m130_c01324{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m10b_c01324{transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166800,0.000000,0.000000,0.250000,0,0);}
.m18a_c01324{transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167850,0.000000,0.000000,0.250000,0,0);}
.m18d_c01324{transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);}
.m153_c01324{transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);}
.mdb_c01324{transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169000,0.000000,0.000000,0.250000,0,0);}
.mf8_c01324{transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169775,0.000000,0.000000,0.250000,0,0);}
.m137_c01324{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.m48_c01324{transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);}
.m184_c01324{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01324{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);}
.me4_c01324{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.mfd_c01324{transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172150,0.000000,0.000000,0.250000,0,0);}
.m1be_c01324{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m165_c01324{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.md8_c01324{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.mbf_c01324{transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174100,0.000000,0.000000,0.250000,0,0);}
.m134_c01324{transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);}
.m113_c01324{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);}
.m155_c01324{transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175225,0.000000,0.000000,0.250000,0,0);}
.mac_c01324{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01324{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.m174_c01324{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);}
.m109_c01324{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m142_c01324{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.m1e0_c01324{transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177400,0.000000,0.000000,0.250000,0,0);}
.ma2_c01324{transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177525,0.000000,0.000000,0.250000,0,0);}
.m1d_c01324{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.m147_c01324{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.m84_c01324{transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);}
.m25_c01324{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);}
.m1e2_c01324{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.m3_c01324{transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179400,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01324{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.mea_c01324{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);}
.m170_c01324{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m161_c01324{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.ma3_c01324{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m197_c01324{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);}
.m1d8_c01324{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.m55_c01324{transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);}
.m9f_c01324{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);}
.m102_c01324{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m96_c01324{transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01324{transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182750,0.000000,0.000000,0.250000,0,0);}
.m89_c01324{transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182850,0.000000,0.000000,0.250000,0,0);}
.m8a_c01324{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);}
.m98_c01324{transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);}
.m148_c01324{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.m17b_c01324{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.md3_c01324{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m1e4_c01324{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);}
.m131_c01324{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m43_c01324{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m177_c01324{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m159_c01324{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.m6e_c01324{transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);}
.m1f1_c01324{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.m12d_c01324{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);}
.m26_c01324{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);}
.m16d_c01324{transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188750,0.000000,0.000000,0.250000,0,0);}
.mf2_c01324{transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);}
.m15e_c01324{transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189650,0.000000,0.000000,0.250000,0,0);}
.md4_c01324{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m169_c01324{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.m123_c01324{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);}
.m1b7_c01324{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.m158_c01324{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.ma6_c01324{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.m14d_c01324{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.m1f0_c01324{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.mcc_c01324{transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191475,0.000000,0.000000,0.250000,0,0);}
.m17e_c01324{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.me6_c01324{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);}
.m121_c01324{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);}
.m61_c01324{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m171_c01324{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);}
.m81_c01324{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);}
.m1cc_c01324{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);}
.m1ae_c01324{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m9a_c01324{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m11e_c01324{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.me0_c01324{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);}
.me8_c01324{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);}
.m180_c01324{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01324{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);}
.mc4_c01324{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);}
.mca_c01324{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m17a_c01324{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);}
.m1c5_c01324{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m5c_c01324{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);}
.m13_c01324{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.m154_c01324{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m199_c01324{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);}
.mb_c01324{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m145_c01324{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01324{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);}
.m1cd_c01324{transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198175,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01324{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);}
.m1b1_c01324{transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);}
.m1df_c01324{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.m2d_c01324{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.mfc_c01324{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.m166_c01324{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m194_c01324{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);}
.ma9_c01324{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);}
.mb0_c01324{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.m78_c01324{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);}
.m3c_c01324{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);}
.m144_c01324{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m173_c01324{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.m124_c01324{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);}
.m6f_c01324{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.m4b_c01324{transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202000,0.000000,0.000000,0.250000,0,0);}
.m1ea_c01324{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);}
.mf4_c01324{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);}
.m15_c01324{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);}
.m1e3_c01324{transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);}
.m2e_c01324{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.mb3_c01324{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.m146_c01324{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.me9_c01324{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m4a_c01324{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m11b_c01324{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m116_c01324{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m19f_c01324{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);}
.m1da_c01324{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.maa_c01324{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);}
.m5e_c01324{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);}
.m86_c01324{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m12f_c01324{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01324{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);}
.m1a2_c01324{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.m97_c01324{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m132_c01324{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01324{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);}
.m23_c01324{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);}
.m101_c01324{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);}
.mad_c01324{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.m168_c01324{transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);}
.m143_c01324{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);}
.md6_c01324{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01324{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m13a_c01324{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m31_c01324{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);}
.med_c01324{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);}
.ma8_c01324{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);}
.m136_c01324{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01324{transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210500,0.000000,0.000000,0.250000,0,0);}
.mdc_c01324{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);}
.mb1_c01324{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);}
.me2_c01324{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.mfb_c01324{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m93_c01324{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m13b_c01324{transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);}
.m7e_c01324{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m179_c01324{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);}
.m1c9_c01324{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);}
.m1a0_c01324{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);}
.meb_c01324{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);}
.m19a_c01324{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);}
.m128_c01324{transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214050,0.000000,0.000000,0.250000,0,0);}
.m119_c01324{transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);}
.m91_c01324{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m3d_c01324{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.mfa_c01324{transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);}
.m17d_c01324{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);}
.m53_c01324{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);}
.mbb_c01324{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);}
.m1e5_c01324{transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);}
.m8f_c01324{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);}
.mc3_c01324{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);}
.m149_c01324{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);}
.m83_c01324{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);}
.m12b_c01324{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m35_c01324{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);}
.m80_c01324{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);}
.m6b_c01324{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.mef_c01324{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.m14c_c01324{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01324{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);}
.m46_c01324{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);}
.m1ef_c01324{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);}
.m15d_c01324{transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);}
.mc1_c01324{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);}
.m33_c01324{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);}
.m118_c01324{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);}
.m2f_c01324{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);}
.m7b_c01324{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);}
.m1a1_c01324{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m11a_c01324{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01324{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);}
.m9_c01324{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);}
.m6c_c01324{transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221325,0.000000,0.000000,0.250000,0,0);}
.m14a_c01324{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.mbd_c01324{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m42_c01324{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);}
.m1eb_c01324{transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);}
.m193_c01324{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m172_c01324{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m74_c01324{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m183_c01324{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01324{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.mf6_c01324{transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225250,0.000000,0.000000,0.250000,0,0);}
.m19_c01324{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);}
.md9_c01324{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);}
.ma1_c01324{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.m110_c01324{transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01324{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);}
.mee_c01324{transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);}
.mb7_c01324{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);}
.m47_c01324{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m1e9_c01324{transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);}
.m156_c01324{transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);}
.mc2_c01324{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);}
.m1c7_c01324{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);}
.m1e6_c01324{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);}
.m20_c01324{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);}
.m85_c01324{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m138_c01324{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);}
.m41_c01324{transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);}
.m36_c01324{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);}
.m70_c01324{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);}
.m10e_c01324{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);}
.ma0_c01324{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01324{transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);}
.mf7_c01324{transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233725,0.000000,0.000000,0.250000,0,0);}
.m13e_c01324{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m7_c01324{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.mf0_c01324{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);}
.m1d1_c01324{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);}
.m88_c01324{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.m82_c01324{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);}
.m1ba_c01324{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.m95_c01324{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);}
.m1d2_c01324{transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);}
.m1f2_c01324{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.me1_c01324{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);}
.m192_c01324{transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);}
.m133_c01324{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);}
.m195_c01324{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);}
.m27_c01324{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);}
.me7_c01324{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);}
.m16f_c01324{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m1ec_c01324{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m135_c01324{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);}
.mec_c01324{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);}
.m8b_c01324{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);}
.mcf_c01324{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);}
.m10d_c01324{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);}
.m1bb_c01324{transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);}
.m141_c01324{transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242875,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01324{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);}
.mcb_c01324{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);}
.m12e_c01324{transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);}
.m127_c01324{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);}
.m4c_c01324{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);}
.m6d_c01324{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);}
.m178_c01324{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);}
.m162_c01324{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m13d_c01324{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01324{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);}
.m14f_c01324{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);}
.m3f_c01324{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);}
.mdf_c01324{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.m1af_c01324{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.mf9_c01324{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);}
.m1db_c01324{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);}
.me3_c01324{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);}
.m15a_c01324{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m117_c01324{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.mba_c01324{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m2b_c01324{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);}
.m62_c01324{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m58_c01324{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);}
.m1a_c01324{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);}
.mb4_c01324{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);}
.m2a_c01324{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);}
.m59_c01324{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m87_c01324{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.maf_c01324{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m37_c01324{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);}
.mab_c01324{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01324{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);}
.m3a_c01324{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);}
.m24_c01324{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb2_c01324{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);}
.m1_c01324{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01324{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m120_c01324{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);}
.m2c_c01324{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7d_c01324{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);}
.m34_c01324{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);}
.mbc_c01324{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m63_c01324{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m57_c01324{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m32_c01324{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mae_c01324{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);}
.m10_c01324{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m40_c01324{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m0_c01324{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mfe_c01324{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m17_c01324{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc9_c01324{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mff_c01324{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mce_c01324{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m7f_c01324{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);}
.m66_c01324{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m114_c01324{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c01324{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c01324{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);}
.m140_c01324{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);}
.m13c_c01324{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m38_c01324{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01324{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);}
.m11f_c01324{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m100_c01324{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m15c_c01324{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01324{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m71_c01324{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);}
.m10f_c01324{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m10a_c01324{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);}
.m167_c01324{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m69_c01324{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01324{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);}
.m65_c01324{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m11d_c01324{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m111_c01324{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mf_c01324{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m17f_c01324{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m76_c01324{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m160_c01324{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);}
.mc0_c01324{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);}
.m21_c01324{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);}
.m15b_c01324{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m44_c01324{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m28_c01324{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14b_c01324{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m50_c01324{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mf3_c01324{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01324{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m92_c01324{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01324{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_c01324{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m67_c01324{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m72_c01324{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mf5_c01324{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m16e_c01324{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01324{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.me5_c01324{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);}
.m18_c01324{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);}
.ma7_c01324{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01324{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m16a_c01324{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01324{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m8_c01324{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m14_c01324{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m9b_c01324{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mc5_c01324{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01324{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m4_c01324{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m163_c01324{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m49_c01324{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m11_c01324{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m45_c01324{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m29_c01324{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mcd_c01324{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m1ed_c01324{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01324{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m22_c01324{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m94_c01324{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m64_c01324{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m77_c01324{transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.767500,0.000000,0.000000,0.250000,0,0);}
.mdd_c01324{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.md2_c01324{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m79_c01324{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01324{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m164_c01324{transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);}
.m73_c01324{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c01324{transform:matrix(1.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.312500,0.000000,0.000000,0.250000,0,0);}
.m16c_c01324{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.md1_c01324{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.m1e7_c01324{transform:matrix(2.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.125000,0.000000,0.000000,0.250000,0,0);}
.m75_c01324{transform:matrix(2.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.285000,0.000000,0.000000,0.250000,0,0);}
.m125_c01324{transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.000000,0.000000,0.000000,0.250000,0,0);}
.v0_c01324{vertical-align:0.000000px;}
.v1_c01324{vertical-align:10.380000px;}
.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:-7.153080px;}
.ws1_c01324{word-spacing:0.000000px;}
.fc0_c01324{color:transparent;}
.fs1_c01324{font-size:3.456000px;}
.fs5_c01324{font-size:6.000000px;}
.fsf_c01324{font-size:6.900000px;}
.fs18_c01324{font-size:10.380000px;}
.fsa_c01324{font-size:13.800000px;}
.fs4_c01324{font-size:17.280000px;}
.fs2_c01324{font-size:20.760000px;}
.fs0_c01324{font-size:24.180000px;}
.fsb_c01324{font-size:27.660000px;}
.fs7_c01324{font-size:31.080000px;}
.fs12_c01324{font-size:34.560000px;}
.fse_c01324{font-size:38.040000px;}
.fs17_c01324{font-size:41.460000px;}
.fsc_c01324{font-size:44.940000px;}
.fsd_c01324{font-size:48.360000px;}
.fs13_c01324{font-size:51.840000px;}
.fs6_c01324{font-size:55.320000px;}
.fs8_c01324{font-size:58.740000px;}
.fs11_c01324{font-size:62.220000px;}
.fs9_c01324{font-size:65.640000px;}
.fs1a_c01324{font-size:69.120000px;}
.fs3_c01324{font-size:72.600000px;}
.fs15_c01324{font-size:76.020000px;}
.fs14_c01324{font-size:79.500000px;}
.fs10_c01324{font-size:82.920000px;}
.fs19_c01324{font-size:86.400000px;}
.fs16_c01324{font-size:89.880000px;}
.fs1f_c01324{font-size:93.300000px;}
.fs1e_c01324{font-size:96.780000px;}
.fs1d_c01324{font-size:100.200000px;}
.fs1c_c01324{font-size:103.680000px;}
.fs23_c01324{font-size:107.160000px;}
.fs1b_c01324{font-size:110.580000px;}
.fs22_c01324{font-size:117.480000px;}
.fs20_c01324{font-size:120.960000px;}
.fs21_c01324{font-size:134.760000px;}
.y0_c01324{bottom:0.000000px;}
.y245_c01324{bottom:161.565000px;}
.y246_c01324{bottom:164.160000px;}
.y243_c01324{bottom:165.030000px;}
.y244_c01324{bottom:165.885000px;}
.y247_c01324{bottom:171.075000px;}
.y248_c01324{bottom:174.525000px;}
.y242_c01324{bottom:177.990000px;}
.y23f_c01324{bottom:181.440000px;}
.y23e_c01324{bottom:182.310000px;}
.y23c_c01324{bottom:183.165000px;}
.y23d_c01324{bottom:184.890000px;}
.y241_c01324{bottom:185.760000px;}
.y240_c01324{bottom:186.630000px;}
.y23b_c01324{bottom:188.355000px;}
.y238_c01324{bottom:191.805000px;}
.y239_c01324{bottom:192.675000px;}
.y237_c01324{bottom:193.530000px;}
.y23a_c01324{bottom:194.400000px;}
.y236_c01324{bottom:195.270000px;}
.y235_c01324{bottom:200.445000px;}
.y233_c01324{bottom:201.315000px;}
.y232_c01324{bottom:202.170000px;}
.y230_c01324{bottom:203.910000px;}
.y22f_c01324{bottom:205.635000px;}
.y234_c01324{bottom:206.490000px;}
.y231_c01324{bottom:208.230000px;}
.y22e_c01324{bottom:220.320000px;}
.y22c_c01324{bottom:222.045000px;}
.y22b_c01324{bottom:223.770000px;}
.y22d_c01324{bottom:226.365000px;}
.y229_c01324{bottom:228.090000px;}
.y228_c01324{bottom:228.960000px;}
.y226_c01324{bottom:230.685000px;}
.y227_c01324{bottom:231.555000px;}
.y225_c01324{bottom:233.280000px;}
.y222_c01324{bottom:234.150000px;}
.y224_c01324{bottom:235.005000px;}
.y223_c01324{bottom:235.875000px;}
.y221_c01324{bottom:239.325000px;}
.y220_c01324{bottom:241.050000px;}
.y21e_c01324{bottom:241.920000px;}
.y22a_c01324{bottom:246.240000px;}
.y21f_c01324{bottom:247.110000px;}
.y21d_c01324{bottom:248.835000px;}
.y21a_c01324{bottom:249.690000px;}
.y21b_c01324{bottom:251.430000px;}
.y21c_c01324{bottom:253.155000px;}
.y219_c01324{bottom:255.750000px;}
.y218_c01324{bottom:263.520000px;}
.y217_c01324{bottom:265.245000px;}
.y216_c01324{bottom:266.970000px;}
.y215_c01324{bottom:267.840000px;}
.y214_c01324{bottom:268.710000px;}
.y212_c01324{bottom:269.565000px;}
.y20f_c01324{bottom:272.160000px;}
.y20d_c01324{bottom:273.030000px;}
.y20e_c01324{bottom:274.755000px;}
.y211_c01324{bottom:276.480000px;}
.y210_c01324{bottom:277.350000px;}
.y20c_c01324{bottom:278.205000px;}
.y213_c01324{bottom:279.075000px;}
.y20a_c01324{bottom:281.670000px;}
.y209_c01324{bottom:284.250000px;}
.y208_c01324{bottom:285.990000px;}
.y20b_c01324{bottom:289.440000px;}
.y207_c01324{bottom:290.310000px;}
.y205_c01324{bottom:292.035000px;}
.y206_c01324{bottom:295.485000px;}
.y204_c01324{bottom:297.210000px;}
.y203_c01324{bottom:299.805000px;}
.y202_c01324{bottom:301.530000px;}
.y201_c01324{bottom:304.125000px;}
.y200_c01324{bottom:304.995000px;}
.y1ff_c01324{bottom:307.590000px;}
.y1fd_c01324{bottom:310.170000px;}
.y1fc_c01324{bottom:311.910000px;}
.y1fb_c01324{bottom:312.765000px;}
.y1fe_c01324{bottom:313.635000px;}
.y1fa_c01324{bottom:314.490000px;}
.y1f6_c01324{bottom:317.085000px;}
.y1f9_c01324{bottom:317.955000px;}
.y1f2_c01324{bottom:322.275000px;}
.y1f3_c01324{bottom:327.450000px;}
.y1f4_c01324{bottom:328.320000px;}
.y1f8_c01324{bottom:329.190000px;}
.y1f5_c01324{bottom:330.045000px;}
.y1f7_c01324{bottom:331.770000px;}
.y1f1_c01324{bottom:332.640000px;}
.y1f0_c01324{bottom:334.365000px;}
.y1ee_c01324{bottom:336.090000px;}
.y1ef_c01324{bottom:339.555000px;}
.y1ed_c01324{bottom:345.600000px;}
.y1ec_c01324{bottom:347.325000px;}
.y1ea_c01324{bottom:350.790000px;}
.y1e7_c01324{bottom:352.515000px;}
.y1eb_c01324{bottom:353.370000px;}
.y1e8_c01324{bottom:355.965000px;}
.y1e9_c01324{bottom:357.690000px;}
.y1e6_c01324{bottom:358.560000px;}
.y1e5_c01324{bottom:359.430000px;}
.y1e4_c01324{bottom:360.285000px;}
.y1e3_c01324{bottom:364.605000px;}
.y1e1_c01324{bottom:366.330000px;}
.y1e0_c01324{bottom:368.070000px;}
.y1df_c01324{bottom:369.795000px;}
.y1de_c01324{bottom:372.390000px;}
.y1e2_c01324{bottom:373.245000px;}
.y1da_c01324{bottom:374.970000px;}
.y1d7_c01324{bottom:376.710000px;}
.y1dd_c01324{bottom:377.565000px;}
.y1dc_c01324{bottom:379.290000px;}
.y1db_c01324{bottom:380.160000px;}
.y1d8_c01324{bottom:381.030000px;}
.y1d9_c01324{bottom:384.480000px;}
.y1d4_c01324{bottom:385.350000px;}
.y1d3_c01324{bottom:386.205000px;}
.y1d5_c01324{bottom:388.800000px;}
.y1d0_c01324{bottom:389.670000px;}
.y1d1_c01324{bottom:390.525000px;}
.y1d6_c01324{bottom:392.250000px;}
.y1d2_c01324{bottom:393.120000px;}
.y1cb_c01324{bottom:397.440000px;}
.y1ce_c01324{bottom:398.310000px;}
.y1cf_c01324{bottom:399.165000px;}
.y1cd_c01324{bottom:401.760000px;}
.y1cc_c01324{bottom:406.080000px;}
.y1ca_c01324{bottom:406.950000px;}
.y1c8_c01324{bottom:408.675000px;}
.y1c9_c01324{bottom:411.270000px;}
.y1c6_c01324{bottom:412.125000px;}
.y1c5_c01324{bottom:413.850000px;}
.y1c7_c01324{bottom:416.445000px;}
.y1c4_c01324{bottom:419.910000px;}
.y1c3_c01324{bottom:420.765000px;}
.y1c2_c01324{bottom:421.635000px;}
.y1c1_c01324{bottom:422.490000px;}
.y1be_c01324{bottom:426.810000px;}
.y1bc_c01324{bottom:430.275000px;}
.y1c0_c01324{bottom:431.130000px;}
.y1bb_c01324{bottom:432.000000px;}
.y1bf_c01324{bottom:432.870000px;}
.y1b9_c01324{bottom:433.725000px;}
.y1bd_c01324{bottom:434.595000px;}
.y1ba_c01324{bottom:438.045000px;}
.y1b8_c01324{bottom:439.770000px;}
.y1b7_c01324{bottom:441.510000px;}
.y1b6_c01324{bottom:442.365000px;}
.y1b4_c01324{bottom:443.235000px;}
.y1b3_c01324{bottom:444.090000px;}
.y1b2_c01324{bottom:444.960000px;}
.y1b1_c01324{bottom:445.830000px;}
.y1b0_c01324{bottom:450.150000px;}
.y1b5_c01324{bottom:451.005000px;}
.y1af_c01324{bottom:451.875000px;}
.y1ad_c01324{bottom:453.600000px;}
.y1ac_c01324{bottom:454.470000px;}
.y1ab_c01324{bottom:456.195000px;}
.y1ae_c01324{bottom:457.920000px;}
.y1a9_c01324{bottom:461.370000px;}
.y1a8_c01324{bottom:463.965000px;}
.y1aa_c01324{bottom:465.690000px;}
.y1a0_c01324{bottom:470.010000px;}
.y1a7_c01324{bottom:470.880000px;}
.y1a6_c01324{bottom:471.750000px;}
.y1a4_c01324{bottom:473.475000px;}
.y1a5_c01324{bottom:476.070000px;}
.y1a2_c01324{bottom:477.795000px;}
.y1a1_c01324{bottom:478.650000px;}
.y19f_c01324{bottom:481.245000px;}
.y1a3_c01324{bottom:483.840000px;}
.y19c_c01324{bottom:489.030000px;}
.y19b_c01324{bottom:490.755000px;}
.y19e_c01324{bottom:491.610000px;}
.y19d_c01324{bottom:492.480000px;}
.y198_c01324{bottom:494.205000px;}
.y19a_c01324{bottom:495.075000px;}
.y199_c01324{bottom:495.930000px;}
.y196_c01324{bottom:497.670000px;}
.y197_c01324{bottom:498.525000px;}
.y195_c01324{bottom:499.395000px;}
.y190_c01324{bottom:511.485000px;}
.y194_c01324{bottom:512.355000px;}
.y18f_c01324{bottom:513.210000px;}
.y193_c01324{bottom:514.080000px;}
.y192_c01324{bottom:514.950000px;}
.y191_c01324{bottom:515.805000px;}
.y18e_c01324{bottom:516.675000px;}
.y18b_c01324{bottom:519.270000px;}
.y18d_c01324{bottom:520.995000px;}
.y18c_c01324{bottom:523.590000px;}
.y18a_c01324{bottom:524.445000px;}
.y189_c01324{bottom:529.635000px;}
.y188_c01324{bottom:530.490000px;}
.y187_c01324{bottom:531.360000px;}
.y186_c01324{bottom:532.230000px;}
.y184_c01324{bottom:533.085000px;}
.y183_c01324{bottom:541.725000px;}
.y17d_c01324{bottom:548.640000px;}
.y181_c01324{bottom:549.510000px;}
.y180_c01324{bottom:551.235000px;}
.y182_c01324{bottom:552.090000px;}
.y17e_c01324{bottom:554.685000px;}
.y17f_c01324{bottom:556.410000px;}
.y177_c01324{bottom:559.875000px;}
.y185_c01324{bottom:560.730000px;}
.y17a_c01324{bottom:561.600000px;}
.y24a_c01324{bottom:562.470000px;}
.y17c_c01324{bottom:565.050000px;}
.y17b_c01324{bottom:565.920000px;}
.y249_c01324{bottom:567.645000px;}
.y178_c01324{bottom:568.515000px;}
.y179_c01324{bottom:569.370000px;}
.y176_c01324{bottom:570.240000px;}
.y175_c01324{bottom:571.110000px;}
.y173_c01324{bottom:572.835000px;}
.y172_c01324{bottom:574.560000px;}
.y174_c01324{bottom:576.285000px;}
.y16e_c01324{bottom:577.155000px;}
.y170_c01324{bottom:579.750000px;}
.y171_c01324{bottom:580.605000px;}
.y16f_c01324{bottom:583.200000px;}
.y16d_c01324{bottom:585.795000px;}
.y16c_c01324{bottom:586.650000px;}
.y16a_c01324{bottom:589.245000px;}
.y168_c01324{bottom:590.115000px;}
.y16b_c01324{bottom:592.710000px;}
.y166_c01324{bottom:593.565000px;}
.y169_c01324{bottom:595.290000px;}
.y167_c01324{bottom:596.160000px;}
.y165_c01324{bottom:598.755000px;}
.y162_c01324{bottom:610.845000px;}
.y161_c01324{bottom:613.440000px;}
.y163_c01324{bottom:615.165000px;}
.y15f_c01324{bottom:616.035000px;}
.y164_c01324{bottom:616.890000px;}
.y15d_c01324{bottom:617.760000px;}
.y15e_c01324{bottom:619.485000px;}
.y160_c01324{bottom:627.270000px;}
.y15c_c01324{bottom:632.445000px;}
.y15b_c01324{bottom:637.635000px;}
.y159_c01324{bottom:639.360000px;}
.y157_c01324{bottom:643.680000px;}
.y158_c01324{bottom:645.405000px;}
.y156_c01324{bottom:648.870000px;}
.y153_c01324{bottom:652.320000px;}
.y15a_c01324{bottom:653.190000px;}
.y151_c01324{bottom:654.915000px;}
.y155_c01324{bottom:655.770000px;}
.y154_c01324{bottom:656.640000px;}
.y150_c01324{bottom:658.365000px;}
.y152_c01324{bottom:660.960000px;}
.y14f_c01324{bottom:662.685000px;}
.y14e_c01324{bottom:665.280000px;}
.y14c_c01324{bottom:667.875000px;}
.y14a_c01324{bottom:668.730000px;}
.y14d_c01324{bottom:674.790000px;}
.y148_c01324{bottom:675.645000px;}
.y14b_c01324{bottom:676.515000px;}
.y149_c01324{bottom:677.370000px;}
.y145_c01324{bottom:681.690000px;}
.y147_c01324{bottom:683.430000px;}
.y146_c01324{bottom:684.285000px;}
.y144_c01324{bottom:689.475000px;}
.y140_c01324{bottom:695.520000px;}
.y13f_c01324{bottom:696.390000px;}
.y142_c01324{bottom:697.245000px;}
.y143_c01324{bottom:698.115000px;}
.y13c_c01324{bottom:698.970000px;}
.y141_c01324{bottom:699.840000px;}
.y13b_c01324{bottom:700.710000px;}
.y13e_c01324{bottom:702.435000px;}
.y13d_c01324{bottom:703.290000px;}
.y137_c01324{bottom:712.800000px;}
.y13a_c01324{bottom:715.395000px;}
.y139_c01324{bottom:717.120000px;}
.y138_c01324{bottom:717.990000px;}
.y136_c01324{bottom:719.715000px;}
.y134_c01324{bottom:720.570000px;}
.y133_c01324{bottom:723.165000px;}
.y135_c01324{bottom:724.890000px;}
.y132_c01324{bottom:731.805000px;}
.y131_c01324{bottom:735.270000px;}
.y12f_c01324{bottom:737.850000px;}
.y12c_c01324{bottom:738.720000px;}
.y12d_c01324{bottom:740.445000px;}
.y12e_c01324{bottom:741.315000px;}
.y130_c01324{bottom:742.170000px;}
.y12b_c01324{bottom:752.550000px;}
.y12a_c01324{bottom:755.130000px;}
.y129_c01324{bottom:756.870000px;}
.y126_c01324{bottom:762.045000px;}
.y127_c01324{bottom:763.770000px;}
.y125_c01324{bottom:770.685000px;}
.y128_c01324{bottom:773.280000px;}
.y123_c01324{bottom:775.005000px;}
.y124_c01324{bottom:775.875000px;}
.y11f_c01324{bottom:776.730000px;}
.y120_c01324{bottom:777.600000px;}
.y11c_c01324{bottom:781.050000px;}
.y122_c01324{bottom:781.920000px;}
.y121_c01324{bottom:782.790000px;}
.y11e_c01324{bottom:785.370000px;}
.y11d_c01324{bottom:787.110000px;}
.y11a_c01324{bottom:791.430000px;}
.y119_c01324{bottom:794.010000px;}
.y117_c01324{bottom:797.475000px;}
.y11b_c01324{bottom:798.330000px;}
.y114_c01324{bottom:800.070000px;}
.y113_c01324{bottom:800.925000px;}
.y118_c01324{bottom:802.650000px;}
.y116_c01324{bottom:803.520000px;}
.y115_c01324{bottom:804.390000px;}
.y112_c01324{bottom:806.970000px;}
.y10f_c01324{bottom:812.160000px;}
.y111_c01324{bottom:815.610000px;}
.y110_c01324{bottom:816.480000px;}
.y10e_c01324{bottom:817.350000px;}
.y10d_c01324{bottom:819.930000px;}
.y10c_c01324{bottom:820.800000px;}
.y109_c01324{bottom:823.395000px;}
.y10b_c01324{bottom:824.250000px;}
.y10a_c01324{bottom:825.990000px;}
.y108_c01324{bottom:827.715000px;}
.y104_c01324{bottom:833.760000px;}
.y103_c01324{bottom:834.630000px;}
.y102_c01324{bottom:835.485000px;}
.y100_c01324{bottom:836.355000px;}
.yff_c01324{bottom:837.210000px;}
.yfe_c01324{bottom:838.080000px;}
.y105_c01324{bottom:838.950000px;}
.y107_c01324{bottom:839.805000px;}
.y106_c01324{bottom:840.675000px;}
.y101_c01324{bottom:844.995000px;}
.yfd_c01324{bottom:851.910000px;}
.yfc_c01324{bottom:859.680000px;}
.yfb_c01324{bottom:860.550000px;}
.yf9_c01324{bottom:865.725000px;}
.yf8_c01324{bottom:867.450000px;}
.yfa_c01324{bottom:868.320000px;}
.yf7_c01324{bottom:872.640000px;}
.yf6_c01324{bottom:873.510000px;}
.y3_c01324{bottom:875.235000px;}
.y2_c01324{bottom:877.830000px;}
.yf4_c01324{bottom:878.685000px;}
.yf5_c01324{bottom:879.555000px;}
.yf1_c01324{bottom:883.005000px;}
.yf3_c01324{bottom:885.600000px;}
.yf2_c01324{bottom:886.470000px;}
.yf0_c01324{bottom:887.325000px;}
.yef_c01324{bottom:893.370000px;}
.yee_c01324{bottom:895.965000px;}
.yed_c01324{bottom:898.560000px;}
.ye9_c01324{bottom:899.430000px;}
.yec_c01324{bottom:900.285000px;}
.ye8_c01324{bottom:901.155000px;}
.yeb_c01324{bottom:903.750000px;}
.yea_c01324{bottom:904.605000px;}
.ye7_c01324{bottom:908.070000px;}
.ye6_c01324{bottom:912.390000px;}
.ye3_c01324{bottom:918.435000px;}
.ye1_c01324{bottom:920.160000px;}
.ye2_c01324{bottom:921.030000px;}
.ye0_c01324{bottom:921.885000px;}
.ye5_c01324{bottom:923.610000px;}
.ye4_c01324{bottom:924.480000px;}
.ydf_c01324{bottom:933.120000px;}
.yde_c01324{bottom:933.990000px;}
.ydc_c01324{bottom:936.570000px;}
.ydd_c01324{bottom:937.440000px;}
.ydb_c01324{bottom:938.310000px;}
.yda_c01324{bottom:939.165000px;}
.yd4_c01324{bottom:941.760000px;}
.yd8_c01324{bottom:942.630000px;}
.yd5_c01324{bottom:944.355000px;}
.yd9_c01324{bottom:945.210000px;}
.yd7_c01324{bottom:946.080000px;}
.yd6_c01324{bottom:947.805000px;}
.yd2_c01324{bottom:955.590000px;}
.yd1_c01324{bottom:957.315000px;}
.yd3_c01324{bottom:958.170000px;}
.yd0_c01324{bottom:959.040000px;}
.y24d_c01324{bottom:960.765000px;}
.yce_c01324{bottom:961.635000px;}
.ycc_c01324{bottom:963.360000px;}
.ycd_c01324{bottom:965.085000px;}
.ycf_c01324{bottom:965.955000px;}
.ycb_c01324{bottom:967.680000px;}
.yca_c01324{bottom:968.550000px;}
.yc9_c01324{bottom:974.595000px;}
.yc8_c01324{bottom:975.450000px;}
.yc7_c01324{bottom:976.320000px;}
.yc6_c01324{bottom:977.190000px;}
.y24c_c01324{bottom:979.770000px;}
.yc5_c01324{bottom:980.640000px;}
.yc3_c01324{bottom:981.510000px;}
.yc0_c01324{bottom:984.960000px;}
.yc4_c01324{bottom:985.830000px;}
.yc2_c01324{bottom:986.685000px;}
.yc1_c01324{bottom:987.555000px;}
.ybf_c01324{bottom:995.325000px;}
.ybe_c01324{bottom:996.195000px;}
.ybb_c01324{bottom:997.050000px;}
.yb9_c01324{bottom:997.920000px;}
.y24b_c01324{bottom:999.645000px;}
.ybd_c01324{bottom:1000.515000px;}
.ybc_c01324{bottom:1001.370000px;}
.yb4_c01324{bottom:1002.240000px;}
.yb3_c01324{bottom:1003.110000px;}
.yba_c01324{bottom:1004.835000px;}
.yb8_c01324{bottom:1005.690000px;}
.yb6_c01324{bottom:1006.560000px;}
.yb5_c01324{bottom:1008.285000px;}
.yb7_c01324{bottom:1012.605000px;}
.yb1_c01324{bottom:1014.330000px;}
.yb0_c01324{bottom:1015.200000px;}
.yb2_c01324{bottom:1016.925000px;}
.yaf_c01324{bottom:1017.795000px;}
.yac_c01324{bottom:1021.245000px;}
.yaa_c01324{bottom:1022.970000px;}
.yae_c01324{bottom:1024.710000px;}
.yad_c01324{bottom:1025.565000px;}
.yab_c01324{bottom:1027.290000px;}
.ya9_c01324{bottom:1029.030000px;}
.ya8_c01324{bottom:1034.205000px;}
.ya6_c01324{bottom:1038.525000px;}
.ya7_c01324{bottom:1039.395000px;}
.ya5_c01324{bottom:1041.120000px;}
.ya1_c01324{bottom:1042.845000px;}
.ya4_c01324{bottom:1046.310000px;}
.ya3_c01324{bottom:1047.165000px;}
.ya2_c01324{bottom:1048.035000px;}
.ya0_c01324{bottom:1049.760000px;}
.y9f_c01324{bottom:1055.805000px;}
.y9d_c01324{bottom:1057.530000px;}
.y9c_c01324{bottom:1059.270000px;}
.y9a_c01324{bottom:1060.125000px;}
.y9e_c01324{bottom:1061.850000px;}
.y97_c01324{bottom:1064.445000px;}
.y9b_c01324{bottom:1066.170000px;}
.y99_c01324{bottom:1068.765000px;}
.y98_c01324{bottom:1069.635000px;}
.y94_c01324{bottom:1079.130000px;}
.y96_c01324{bottom:1080.870000px;}
.y91_c01324{bottom:1082.595000px;}
.y95_c01324{bottom:1083.450000px;}
.y93_c01324{bottom:1084.320000px;}
.y92_c01324{bottom:1086.045000px;}
.y8f_c01324{bottom:1086.915000px;}
.y90_c01324{bottom:1088.640000px;}
.y8d_c01324{bottom:1099.005000px;}
.y8c_c01324{bottom:1099.875000px;}
.y8e_c01324{bottom:1100.730000px;}
.y8b_c01324{bottom:1102.470000px;}
.y89_c01324{bottom:1103.325000px;}
.y88_c01324{bottom:1104.195000px;}
.y86_c01324{bottom:1105.050000px;}
.y8a_c01324{bottom:1105.920000px;}
.y87_c01324{bottom:1108.515000px;}
.y85_c01324{bottom:1110.240000px;}
.y84_c01324{bottom:1113.690000px;}
.y82_c01324{bottom:1118.880000px;}
.y81_c01324{bottom:1119.750000px;}
.y83_c01324{bottom:1122.330000px;}
.y7f_c01324{bottom:1124.070000px;}
.y80_c01324{bottom:1124.925000px;}
.y7c_c01324{bottom:1125.795000px;}
.y7e_c01324{bottom:1127.520000px;}
.y7d_c01324{bottom:1129.245000px;}
.y7b_c01324{bottom:1130.970000px;}
.y79_c01324{bottom:1137.885000px;}
.y7a_c01324{bottom:1138.755000px;}
.y77_c01324{bottom:1139.610000px;}
.y75_c01324{bottom:1140.480000px;}
.y76_c01324{bottom:1141.350000px;}
.y78_c01324{bottom:1143.930000px;}
.y74_c01324{bottom:1144.800000px;}
.y72_c01324{bottom:1147.395000px;}
.y73_c01324{bottom:1149.990000px;}
.y70_c01324{bottom:1157.760000px;}
.y6f_c01324{bottom:1158.630000px;}
.y68_c01324{bottom:1161.210000px;}
.y6d_c01324{bottom:1162.080000px;}
.y6e_c01324{bottom:1163.805000px;}
.y69_c01324{bottom:1164.675000px;}
.y6b_c01324{bottom:1165.530000px;}
.y6c_c01324{bottom:1166.400000px;}
.y64_c01324{bottom:1167.270000px;}
.y6a_c01324{bottom:1168.125000px;}
.y71_c01324{bottom:1169.850000px;}
.y67_c01324{bottom:1170.720000px;}
.y65_c01324{bottom:1171.590000px;}
.y66_c01324{bottom:1174.170000px;}
.y62_c01324{bottom:1175.040000px;}
.y63_c01324{bottom:1177.635000px;}
.y61_c01324{bottom:1178.490000px;}
.y5f_c01324{bottom:1180.230000px;}
.y60_c01324{bottom:1181.085000px;}
.y5d_c01324{bottom:1181.955000px;}
.y59_c01324{bottom:1186.275000px;}
.y5b_c01324{bottom:1187.130000px;}
.y5a_c01324{bottom:1188.000000px;}
.y5c_c01324{bottom:1188.870000px;}
.y5e_c01324{bottom:1189.725000px;}
.y55_c01324{bottom:1196.640000px;}
.y57_c01324{bottom:1197.510000px;}
.y58_c01324{bottom:1198.365000px;}
.y56_c01324{bottom:1199.235000px;}
.y54_c01324{bottom:1200.960000px;}
.y53_c01324{bottom:1201.830000px;}
.y50_c01324{bottom:1202.685000px;}
.y51_c01324{bottom:1203.555000px;}
.y4e_c01324{bottom:1204.410000px;}
.y4f_c01324{bottom:1205.280000px;}
.y4d_c01324{bottom:1206.150000px;}
.y52_c01324{bottom:1207.005000px;}
.y4c_c01324{bottom:1208.730000px;}
.y4a_c01324{bottom:1211.325000px;}
.y4b_c01324{bottom:1212.195000px;}
.y49_c01324{bottom:1224.285000px;}
.y48_c01324{bottom:1225.155000px;}
.y46_c01324{bottom:1226.010000px;}
.y45_c01324{bottom:1226.880000px;}
.y47_c01324{bottom:1228.605000px;}
.y42_c01324{bottom:1229.475000px;}
.y44_c01324{bottom:1231.200000px;}
.y43_c01324{bottom:1232.070000px;}
.y3e_c01324{bottom:1242.435000px;}
.y3f_c01324{bottom:1243.290000px;}
.y40_c01324{bottom:1245.030000px;}
.y3c_c01324{bottom:1245.885000px;}
.y3a_c01324{bottom:1247.610000px;}
.y41_c01324{bottom:1248.480000px;}
.y3b_c01324{bottom:1251.075000px;}
.y39_c01324{bottom:1252.800000px;}
.y3d_c01324{bottom:1257.120000px;}
.y38_c01324{bottom:1259.715000px;}
.y36_c01324{bottom:1261.440000px;}
.y34_c01324{bottom:1264.890000px;}
.y37_c01324{bottom:1266.630000px;}
.y30_c01324{bottom:1267.485000px;}
.y35_c01324{bottom:1268.355000px;}
.y32_c01324{bottom:1269.210000px;}
.y33_c01324{bottom:1270.950000px;}
.y31_c01324{bottom:1272.675000px;}
.y2f_c01324{bottom:1279.590000px;}
.y2d_c01324{bottom:1282.170000px;}
.y2b_c01324{bottom:1284.765000px;}
.y2e_c01324{bottom:1285.635000px;}
.y29_c01324{bottom:1287.360000px;}
.y27_c01324{bottom:1288.230000px;}
.y2c_c01324{bottom:1289.085000px;}
.y2a_c01324{bottom:1290.810000px;}
.y28_c01324{bottom:1292.550000px;}
.y26_c01324{bottom:1300.320000px;}
.y24_c01324{bottom:1301.190000px;}
.y25_c01324{bottom:1302.045000px;}
.y22_c01324{bottom:1303.770000px;}
.y20_c01324{bottom:1306.365000px;}
.y23_c01324{bottom:1308.090000px;}
.y21_c01324{bottom:1310.685000px;}
.y1f_c01324{bottom:1312.410000px;}
.y17_c01324{bottom:1320.195000px;}
.y1e_c01324{bottom:1321.920000px;}
.y1b_c01324{bottom:1323.645000px;}
.y1d_c01324{bottom:1324.515000px;}
.y1c_c01324{bottom:1325.370000px;}
.y1a_c01324{bottom:1326.240000px;}
.yd_c01324{bottom:1327.965000px;}
.y13_c01324{bottom:1328.835000px;}
.yb_c01324{bottom:1329.690000px;}
.y19_c01324{bottom:1330.560000px;}
.yf_c01324{bottom:1331.430000px;}
.y11_c01324{bottom:1332.285000px;}
.y14_c01324{bottom:1333.155000px;}
.y12_c01324{bottom:1334.010000px;}
.y16_c01324{bottom:1335.750000px;}
.y18_c01324{bottom:1336.605000px;}
.y15_c01324{bottom:1337.475000px;}
.y7_c01324{bottom:1338.330000px;}
.y9_c01324{bottom:1339.200000px;}
.ye_c01324{bottom:1340.070000px;}
.ya_c01324{bottom:1341.795000px;}
.yc_c01324{bottom:1342.650000px;}
.y5_c01324{bottom:1343.520000px;}
.y10_c01324{bottom:1344.390000px;}
.y8_c01324{bottom:1345.245000px;}
.y6_c01324{bottom:1353.030000px;}
.y4_c01324{bottom:1357.350000px;}
.y1_c01324{bottom:1414.365000px;}
.h3_c01324{height:3.110063px;}
.h7_c01324{height:5.399414px;}
.h11_c01324{height:6.209326px;}
.h1a_c01324{height:9.340986px;}
.hc_c01324{height:12.418652px;}
.h6_c01324{height:15.550313px;}
.h4_c01324{height:18.681973px;}
.h2_c01324{height:21.759639px;}
.hd_c01324{height:24.891299px;}
.h9_c01324{height:27.968965px;}
.h14_c01324{height:31.100625px;}
.h10_c01324{height:34.232285px;}
.h19_c01324{height:37.309951px;}
.he_c01324{height:40.441611px;}
.hf_c01324{height:43.519277px;}
.h15_c01324{height:46.650937px;}
.h8_c01324{height:49.782598px;}
.ha_c01324{height:52.860264px;}
.h13_c01324{height:55.991924px;}
.hb_c01324{height:59.069590px;}
.h1c_c01324{height:62.201250px;}
.h24_c01324{height:63.240264px;}
.h5_c01324{height:65.332910px;}
.h17_c01324{height:68.410576px;}
.h16_c01324{height:71.542236px;}
.h12_c01324{height:74.619902px;}
.h1b_c01324{height:77.751563px;}
.h18_c01324{height:80.883223px;}
.h21_c01324{height:83.960889px;}
.h20_c01324{height:87.092549px;}
.h1f_c01324{height:90.170215px;}
.h1e_c01324{height:93.301875px;}
.h26_c01324{height:96.433535px;}
.h1d_c01324{height:99.511201px;}
.h25_c01324{height:105.720527px;}
.h22_c01324{height:108.852188px;}
.h23_c01324{height:121.270840px;}
.h1_c01324{height:1513.500000px;}
.h0_c01324{height:1513.725000px;}
.w0_c01324{width:1083.450000px;}
.w1_c01324{width:1083.750000px;}
.x0_c01324{left:0.000000px;}
.x2_c01324{left:146.880000px;}
.x3_c01324{left:153.795000px;}
.x110_c01324{left:163.290000px;}
.x10b_c01324{left:166.755000px;}
.x102_c01324{left:171.930000px;}
.x111_c01324{left:173.670096px;}
.x10c_c01324{left:178.845000px;}
.xdb_c01324{left:181.440000px;}
.x105_c01324{left:188.355000px;}
.x124_c01324{left:196.995000px;}
.x106_c01324{left:202.170000px;}
.xfd_c01324{left:204.765000px;}
.xe2_c01324{left:206.490000px;}
.xdf_c01324{left:209.085000px;}
.xf9_c01324{left:211.680000px;}
.x112_c01324{left:214.275000px;}
.x8b_c01324{left:216.000000px;}
.xfa_c01324{left:217.725000px;}
.x107_c01324{left:219.450000px;}
.x9a_c01324{left:221.190000px;}
.xff_c01324{left:223.770000px;}
.xe6_c01324{left:225.510000px;}
.xd4_c01324{left:229.830000px;}
.xc7_c01324{left:231.555000px;}
.x9b_c01324{left:233.280000px;}
.x8c_c01324{left:235.005000px;}
.x7f_c01324{left:236.730000px;}
.x20_c01324{left:238.470000px;}
.x4_c01324{left:241.920000px;}
.xd1_c01324{left:243.645000px;}
.xb2_c01324{left:248.835000px;}
.x103_c01324{left:252.285000px;}
.x5_c01324{left:254.010000px;}
.xb6_c01324{left:255.750000px;}
.x5d_c01324{left:260.070000px;}
.x125_c01324{left:261.795000px;}
.xa1_c01324{left:264.390000px;}
.x63_c01324{left:266.970000px;}
.x72_c01324{left:268.710000px;}
.x6_c01324{left:271.290000px;}
.x8d_c01324{left:275.610000px;}
.x43_c01324{left:278.205000px;}
.x39_c01324{left:282.525000px;}
.xc1_c01324{left:285.120000px;}
.x54_c01324{left:286.845000px;}
.xce_c01324{left:289.440000px;}
.xc3_c01324{left:291.165000px;}
.x9c_c01324{left:293.760000px;}
.x79_c01324{left:295.485000px;}
.x11b_c01324{left:297.210000px;}
.x21_c01324{left:298.950000px;}
.x94_c01324{left:300.675000px;}
.xa6_c01324{left:302.400000px;}
.x55_c01324{left:304.995000px;}
.x7_c01324{left:308.445000px;}
.x64_c01324{left:311.910000px;}
.x8_c01324{left:314.490000px;}
.x100_c01324{left:317.955000px;}
.x10d_c01324{left:319.680000px;}
.x22_c01324{left:321.405000px;}
.x113_c01324{left:323.130000px;}
.xd9_c01324{left:324.870000px;}
.x85_c01324{left:330.915000px;}
.xfb_c01324{left:332.640000px;}
.xd5_c01324{left:335.235000px;}
.x5e_c01324{left:336.960000px;}
.xa2_c01324{left:338.685000px;}
.x4c_c01324{left:341.280000px;}
.xa7_c01324{left:343.005000px;}
.x44_c01324{left:344.730000px;}
.x5f_c01324{left:348.195000px;}
.x3a_c01324{left:349.920000px;}
.x45_c01324{left:351.645000px;}
.x114_c01324{left:353.370000px;}
.x30_c01324{left:355.110000px;}
.x7a_c01324{left:357.690000px;}
.xbe_c01324{left:360.285000px;}
.x65_c01324{left:362.010000px;}
.xbc_c01324{left:364.605000px;}
.x8e_c01324{left:366.330000px;}
.x56_c01324{left:368.070000px;}
.x118_c01324{left:369.795000px;}
.x60_c01324{left:371.520000px;}
.x9_c01324{left:373.245000px;}
.x7b_c01324{left:374.970000px;}
.x9d_c01324{left:378.435000px;}
.x6b_c01324{left:381.030000px;}
.x66_c01324{left:382.755000px;}
.xb7_c01324{left:384.480000px;}
.x8f_c01324{left:387.075000px;}
.x95_c01324{left:388.800000px;}
.x4d_c01324{left:391.395000px;}
.xa8_c01324{left:394.845000px;}
.xe8_c01324{left:398.310000px;}
.x67_c01324{left:400.035000px;}
.xa_c01324{left:401.760000px;}
.x23_c01324{left:404.355000px;}
.x3b_c01324{left:407.805000px;}
.x24_c01324{left:411.270000px;}
.xc8_c01324{left:412.995000px;}
.xe0_c01324{left:414.720000px;}
.x11c_c01324{left:419.040000px;}
.x4e_c01324{left:420.765000px;}
.x46_c01324{left:422.490000px;}
.x73_c01324{left:425.085000px;}
.xb3_c01324{left:426.810000px;}
.x57_c01324{left:429.405000px;}
.xb_c01324{left:431.130000px;}
.xbf_c01324{left:432.870000px;}
.xe3_c01324{left:434.595000px;}
.xc9_c01324{left:436.320000px;}
.x58_c01324{left:438.045000px;}
.x108_c01324{left:439.770000px;}
.xca_c01324{left:441.510000px;}
.x25_c01324{left:444.960000px;}
.xfe_c01324{left:449.280000px;}
.xc4_c01324{left:451.005000px;}
.x120_c01324{left:452.730000px;}
.x59_c01324{left:454.470000px;}
.x3c_c01324{left:456.195000px;}
.x11d_c01324{left:459.645000px;}
.x6c_c01324{left:462.240000px;}
.x31_c01324{left:465.690000px;}
.x109_c01324{left:467.430000px;}
.xc_c01324{left:469.155000px;}
.x11f_c01324{left:470.880000px;}
.xbd_c01324{left:473.475000px;}
.xf6_c01324{left:477.795000px;}
.xd_c01324{left:479.520000px;}
.x80_c01324{left:481.245000px;}
.x4f_c01324{left:484.710000px;}
.xdc_c01324{left:486.435000px;}
.xe_c01324{left:489.030000px;}
.xb8_c01324{left:491.610000px;}
.xab_c01324{left:494.205000px;}
.xa3_c01324{left:495.930000px;}
.x32_c01324{left:501.990000px;}
.xf7_c01324{left:503.715000px;}
.xf_c01324{left:505.440000px;}
.xa4_c01324{left:507.165000px;}
.x68_c01324{left:509.760000px;}
.xcb_c01324{left:513.210000px;}
.x3d_c01324{left:514.950000px;}
.x47_c01324{left:516.675000px;}
.x90_c01324{left:518.400000px;}
.x26_c01324{left:521.850000px;}
.xac_c01324{left:524.445000px;}
.x6d_c01324{left:529.635000px;}
.x69_c01324{left:532.230000px;}
.xa9_c01324{left:533.955000px;}
.x50_c01324{left:537.405000px;}
.x10_c01324{left:540.000000px;}
.xe4_c01324{left:541.725000px;}
.x119_c01324{left:543.450000px;}
.xad_c01324{left:546.915000px;}
.x104_c01324{left:551.235000px;}
.x11_c01324{left:552.960000px;}
.xea_c01324{left:554.685000px;}
.x27_c01324{left:556.410000px;}
.xe1_c01324{left:558.150000px;}
.x33_c01324{left:559.875000px;}
.xae_c01324{left:561.600000px;}
.xb9_c01324{left:564.195000px;}
.x96_c01324{left:566.790000px;}
.x34_c01324{left:568.515000px;}
.x3e_c01324{left:570.240000px;}
.xeb_c01324{left:574.560000px;}
.xef_c01324{left:577.155000px;}
.xe7_c01324{left:579.750000px;}
.x97_c01324{left:585.795000px;}
.x74_c01324{left:588.390000px;}
.x12_c01324{left:590.970000px;}
.x5a_c01324{left:593.565000px;}
.x86_c01324{left:596.160000px;}
.x7c_c01324{left:599.610000px;}
.x3f_c01324{left:601.350000px;}
.x28_c01324{left:603.075000px;}
.x115_c01324{left:604.800000px;}
.x9e_c01324{left:606.525000px;}
.x61_c01324{left:609.120000px;}
.xf1_c01324{left:610.845000px;}
.x91_c01324{left:613.440000px;}
.xcc_c01324{left:616.035000px;}
.x29_c01324{left:618.630000px;}
.x10a_c01324{left:620.355000px;}
.x40_c01324{left:622.080000px;}
.x13_c01324{left:626.400000px;}
.x75_c01324{left:628.995000px;}
.x121_c01324{left:630.720000px;}
.x48_c01324{left:633.315000px;}
.xc5_c01324{left:638.490000px;}
.xcd_c01324{left:641.085000px;}
.xee_c01324{left:643.680000px;}
.xc0_c01324{left:645.405000px;}
.x2a_c01324{left:648.000000px;}
.x9f_c01324{left:649.725000px;}
.xe9_c01324{left:652.320000px;}
.xcf_c01324{left:655.770000px;}
.xaa_c01324{left:657.510000px;}
.xf0_c01324{left:659.235000px;}
.x14_c01324{left:661.830000px;}
.x10e_c01324{left:665.280000px;}
.xf2_c01324{left:667.005000px;}
.x51_c01324{left:668.730000px;}
.x98_c01324{left:670.470000px;}
.x5b_c01324{left:673.920000px;}
.x15_c01324{left:676.515000px;}
.xf3_c01324{left:679.110000px;}
.x87_c01324{left:682.560000px;}
.x81_c01324{left:685.155000px;}
.x2b_c01324{left:686.880000px;}
.xd6_c01324{left:689.475000px;}
.x82_c01324{left:692.070000px;}
.x49_c01324{left:694.650000px;}
.x92_c01324{left:697.245000px;}
.xda_c01324{left:698.970000px;}
.x6a_c01324{left:701.565000px;}
.x41_c01324{left:704.160000px;}
.xf4_c01324{left:708.480000px;}
.xec_c01324{left:711.075000px;}
.x2c_c01324{left:713.670000px;}
.xba_c01324{left:715.395000px;}
.x76_c01324{left:717.990000px;}
.x16_c01324{left:719.715000px;}
.x88_c01324{left:721.440000px;}
.x83_c01324{left:724.035000px;}
.x77_c01324{left:725.760000px;}
.x2d_c01324{left:728.355000px;}
.xd0_c01324{left:730.080000px;}
.x93_c01324{left:731.805000px;}
.x78_c01324{left:733.530000px;}
.xd2_c01324{left:735.270000px;}
.x52_c01324{left:738.720000px;}
.xc2_c01324{left:741.315000px;}
.x5c_c01324{left:743.040000px;}
.xaf_c01324{left:744.765000px;}
.x35_c01324{left:747.360000px;}
.x6e_c01324{left:750.810000px;}
.x17_c01324{left:753.405000px;}
.x1_c01324{left:755.130000px;}
.x10f_c01324{left:756.870000px;}
.x6f_c01324{left:760.320000px;}
.xbb_c01324{left:766.365000px;}
.x70_c01324{left:768.960000px;}
.x11e_c01324{left:770.685000px;}
.xd7_c01324{left:773.280000px;}
.x18_c01324{left:775.005000px;}
.xdd_c01324{left:778.470000px;}
.xa0_c01324{left:781.050000px;}
.x101_c01324{left:783.645000px;}
.x42_c01324{left:786.240000px;}
.xb4_c01324{left:790.560000px;}
.x19_c01324{left:793.155000px;}
.x36_c01324{left:795.750000px;}
.x84_c01324{left:798.330000px;}
.x7d_c01324{left:800.070000px;}
.xfc_c01324{left:801.795000px;}
.x37_c01324{left:803.520000px;}
.xde_c01324{left:808.710000px;}
.xf5_c01324{left:812.160000px;}
.xc6_c01324{left:813.885000px;}
.xb5_c01324{left:817.350000px;}
.x38_c01324{left:819.075000px;}
.x122_c01324{left:821.670000px;}
.xb0_c01324{left:825.120000px;}
.x89_c01324{left:827.715000px;}
.x53_c01324{left:831.165000px;}
.x62_c01324{left:832.890000px;}
.x1a_c01324{left:835.485000px;}
.x7e_c01324{left:837.210000px;}
.xd8_c01324{left:838.950000px;}
.x71_c01324{left:840.675000px;}
.x1b_c01324{left:842.400000px;}
.xed_c01324{left:844.995000px;}
.x8a_c01324{left:848.445000px;}
.x11a_c01324{left:851.910000px;}
.x4a_c01324{left:854.490000px;}
.xf8_c01324{left:858.810000px;}
.xe5_c01324{left:860.550000px;}
.xd3_c01324{left:864.000000px;}
.x1c_c01324{left:865.725000px;}
.x4b_c01324{left:869.190000px;}
.x123_c01324{left:870.915000px;}
.x99_c01324{left:874.365000px;}
.x1d_c01324{left:876.090000px;}
.xa5_c01324{left:879.555000px;}
.x2e_c01324{left:886.470000px;}
.x1e_c01324{left:889.920000px;}
.x116_c01324{left:892.515000px;}
.x117_c01324{left:895.965000px;}
.xb1_c01324{left:901.155000px;}
.x2f_c01324{left:910.650000px;}
.x1f_c01324{left:913.245000px;}
.x127_c01324{left:1064.445000px;}
.x126_c01324{left:1072.230000px;}
@media print{
.v0_c01324{vertical-align:0.000000pt;}
.v1_c01324{vertical-align:9.226667pt;}
.ls0_c01324{letter-spacing:0.000000pt;}
.ws0_c01324{word-spacing:-6.358293pt;}
.ws1_c01324{word-spacing:0.000000pt;}
.fs1_c01324{font-size:3.072000pt;}
.fs5_c01324{font-size:5.333333pt;}
.fsf_c01324{font-size:6.133333pt;}
.fs18_c01324{font-size:9.226667pt;}
.fsa_c01324{font-size:12.266667pt;}
.fs4_c01324{font-size:15.360000pt;}
.fs2_c01324{font-size:18.453333pt;}
.fs0_c01324{font-size:21.493333pt;}
.fsb_c01324{font-size:24.586667pt;}
.fs7_c01324{font-size:27.626667pt;}
.fs12_c01324{font-size:30.720000pt;}
.fse_c01324{font-size:33.813333pt;}
.fs17_c01324{font-size:36.853333pt;}
.fsc_c01324{font-size:39.946667pt;}
.fsd_c01324{font-size:42.986667pt;}
.fs13_c01324{font-size:46.080000pt;}
.fs6_c01324{font-size:49.173333pt;}
.fs8_c01324{font-size:52.213333pt;}
.fs11_c01324{font-size:55.306667pt;}
.fs9_c01324{font-size:58.346667pt;}
.fs1a_c01324{font-size:61.440000pt;}
.fs3_c01324{font-size:64.533333pt;}
.fs15_c01324{font-size:67.573333pt;}
.fs14_c01324{font-size:70.666667pt;}
.fs10_c01324{font-size:73.706667pt;}
.fs19_c01324{font-size:76.800000pt;}
.fs16_c01324{font-size:79.893333pt;}
.fs1f_c01324{font-size:82.933333pt;}
.fs1e_c01324{font-size:86.026667pt;}
.fs1d_c01324{font-size:89.066667pt;}
.fs1c_c01324{font-size:92.160000pt;}
.fs23_c01324{font-size:95.253333pt;}
.fs1b_c01324{font-size:98.293333pt;}
.fs22_c01324{font-size:104.426667pt;}
.fs20_c01324{font-size:107.520000pt;}
.fs21_c01324{font-size:119.786667pt;}
.y0_c01324{bottom:0.000000pt;}
.y245_c01324{bottom:143.613333pt;}
.y246_c01324{bottom:145.920000pt;}
.y243_c01324{bottom:146.693333pt;}
.y244_c01324{bottom:147.453333pt;}
.y247_c01324{bottom:152.066667pt;}
.y248_c01324{bottom:155.133333pt;}
.y242_c01324{bottom:158.213333pt;}
.y23f_c01324{bottom:161.280000pt;}
.y23e_c01324{bottom:162.053333pt;}
.y23c_c01324{bottom:162.813333pt;}
.y23d_c01324{bottom:164.346667pt;}
.y241_c01324{bottom:165.120000pt;}
.y240_c01324{bottom:165.893333pt;}
.y23b_c01324{bottom:167.426667pt;}
.y238_c01324{bottom:170.493333pt;}
.y239_c01324{bottom:171.266667pt;}
.y237_c01324{bottom:172.026667pt;}
.y23a_c01324{bottom:172.800000pt;}
.y236_c01324{bottom:173.573333pt;}
.y235_c01324{bottom:178.173333pt;}
.y233_c01324{bottom:178.946667pt;}
.y232_c01324{bottom:179.706667pt;}
.y230_c01324{bottom:181.253333pt;}
.y22f_c01324{bottom:182.786667pt;}
.y234_c01324{bottom:183.546667pt;}
.y231_c01324{bottom:185.093333pt;}
.y22e_c01324{bottom:195.840000pt;}
.y22c_c01324{bottom:197.373333pt;}
.y22b_c01324{bottom:198.906667pt;}
.y22d_c01324{bottom:201.213333pt;}
.y229_c01324{bottom:202.746667pt;}
.y228_c01324{bottom:203.520000pt;}
.y226_c01324{bottom:205.053333pt;}
.y227_c01324{bottom:205.826667pt;}
.y225_c01324{bottom:207.360000pt;}
.y222_c01324{bottom:208.133333pt;}
.y224_c01324{bottom:208.893333pt;}
.y223_c01324{bottom:209.666667pt;}
.y221_c01324{bottom:212.733333pt;}
.y220_c01324{bottom:214.266667pt;}
.y21e_c01324{bottom:215.040000pt;}
.y22a_c01324{bottom:218.880000pt;}
.y21f_c01324{bottom:219.653333pt;}
.y21d_c01324{bottom:221.186667pt;}
.y21a_c01324{bottom:221.946667pt;}
.y21b_c01324{bottom:223.493333pt;}
.y21c_c01324{bottom:225.026667pt;}
.y219_c01324{bottom:227.333333pt;}
.y218_c01324{bottom:234.240000pt;}
.y217_c01324{bottom:235.773333pt;}
.y216_c01324{bottom:237.306667pt;}
.y215_c01324{bottom:238.080000pt;}
.y214_c01324{bottom:238.853333pt;}
.y212_c01324{bottom:239.613333pt;}
.y20f_c01324{bottom:241.920000pt;}
.y20d_c01324{bottom:242.693333pt;}
.y20e_c01324{bottom:244.226667pt;}
.y211_c01324{bottom:245.760000pt;}
.y210_c01324{bottom:246.533333pt;}
.y20c_c01324{bottom:247.293333pt;}
.y213_c01324{bottom:248.066667pt;}
.y20a_c01324{bottom:250.373333pt;}
.y209_c01324{bottom:252.666667pt;}
.y208_c01324{bottom:254.213333pt;}
.y20b_c01324{bottom:257.280000pt;}
.y207_c01324{bottom:258.053333pt;}
.y205_c01324{bottom:259.586667pt;}
.y206_c01324{bottom:262.653333pt;}
.y204_c01324{bottom:264.186667pt;}
.y203_c01324{bottom:266.493333pt;}
.y202_c01324{bottom:268.026667pt;}
.y201_c01324{bottom:270.333333pt;}
.y200_c01324{bottom:271.106667pt;}
.y1ff_c01324{bottom:273.413333pt;}
.y1fd_c01324{bottom:275.706667pt;}
.y1fc_c01324{bottom:277.253333pt;}
.y1fb_c01324{bottom:278.013333pt;}
.y1fe_c01324{bottom:278.786667pt;}
.y1fa_c01324{bottom:279.546667pt;}
.y1f6_c01324{bottom:281.853333pt;}
.y1f9_c01324{bottom:282.626667pt;}
.y1f2_c01324{bottom:286.466667pt;}
.y1f3_c01324{bottom:291.066667pt;}
.y1f4_c01324{bottom:291.840000pt;}
.y1f8_c01324{bottom:292.613333pt;}
.y1f5_c01324{bottom:293.373333pt;}
.y1f7_c01324{bottom:294.906667pt;}
.y1f1_c01324{bottom:295.680000pt;}
.y1f0_c01324{bottom:297.213333pt;}
.y1ee_c01324{bottom:298.746667pt;}
.y1ef_c01324{bottom:301.826667pt;}
.y1ed_c01324{bottom:307.200000pt;}
.y1ec_c01324{bottom:308.733333pt;}
.y1ea_c01324{bottom:311.813333pt;}
.y1e7_c01324{bottom:313.346667pt;}
.y1eb_c01324{bottom:314.106667pt;}
.y1e8_c01324{bottom:316.413333pt;}
.y1e9_c01324{bottom:317.946667pt;}
.y1e6_c01324{bottom:318.720000pt;}
.y1e5_c01324{bottom:319.493333pt;}
.y1e4_c01324{bottom:320.253333pt;}
.y1e3_c01324{bottom:324.093333pt;}
.y1e1_c01324{bottom:325.626667pt;}
.y1e0_c01324{bottom:327.173333pt;}
.y1df_c01324{bottom:328.706667pt;}
.y1de_c01324{bottom:331.013333pt;}
.y1e2_c01324{bottom:331.773333pt;}
.y1da_c01324{bottom:333.306667pt;}
.y1d7_c01324{bottom:334.853333pt;}
.y1dd_c01324{bottom:335.613333pt;}
.y1dc_c01324{bottom:337.146667pt;}
.y1db_c01324{bottom:337.920000pt;}
.y1d8_c01324{bottom:338.693333pt;}
.y1d9_c01324{bottom:341.760000pt;}
.y1d4_c01324{bottom:342.533333pt;}
.y1d3_c01324{bottom:343.293333pt;}
.y1d5_c01324{bottom:345.600000pt;}
.y1d0_c01324{bottom:346.373333pt;}
.y1d1_c01324{bottom:347.133333pt;}
.y1d6_c01324{bottom:348.666667pt;}
.y1d2_c01324{bottom:349.440000pt;}
.y1cb_c01324{bottom:353.280000pt;}
.y1ce_c01324{bottom:354.053333pt;}
.y1cf_c01324{bottom:354.813333pt;}
.y1cd_c01324{bottom:357.120000pt;}
.y1cc_c01324{bottom:360.960000pt;}
.y1ca_c01324{bottom:361.733333pt;}
.y1c8_c01324{bottom:363.266667pt;}
.y1c9_c01324{bottom:365.573333pt;}
.y1c6_c01324{bottom:366.333333pt;}
.y1c5_c01324{bottom:367.866667pt;}
.y1c7_c01324{bottom:370.173333pt;}
.y1c4_c01324{bottom:373.253333pt;}
.y1c3_c01324{bottom:374.013333pt;}
.y1c2_c01324{bottom:374.786667pt;}
.y1c1_c01324{bottom:375.546667pt;}
.y1be_c01324{bottom:379.386667pt;}
.y1bc_c01324{bottom:382.466667pt;}
.y1c0_c01324{bottom:383.226667pt;}
.y1bb_c01324{bottom:384.000000pt;}
.y1bf_c01324{bottom:384.773333pt;}
.y1b9_c01324{bottom:385.533333pt;}
.y1bd_c01324{bottom:386.306667pt;}
.y1ba_c01324{bottom:389.373333pt;}
.y1b8_c01324{bottom:390.906667pt;}
.y1b7_c01324{bottom:392.453333pt;}
.y1b6_c01324{bottom:393.213333pt;}
.y1b4_c01324{bottom:393.986667pt;}
.y1b3_c01324{bottom:394.746667pt;}
.y1b2_c01324{bottom:395.520000pt;}
.y1b1_c01324{bottom:396.293333pt;}
.y1b0_c01324{bottom:400.133333pt;}
.y1b5_c01324{bottom:400.893333pt;}
.y1af_c01324{bottom:401.666667pt;}
.y1ad_c01324{bottom:403.200000pt;}
.y1ac_c01324{bottom:403.973333pt;}
.y1ab_c01324{bottom:405.506667pt;}
.y1ae_c01324{bottom:407.040000pt;}
.y1a9_c01324{bottom:410.106667pt;}
.y1a8_c01324{bottom:412.413333pt;}
.y1aa_c01324{bottom:413.946667pt;}
.y1a0_c01324{bottom:417.786667pt;}
.y1a7_c01324{bottom:418.560000pt;}
.y1a6_c01324{bottom:419.333333pt;}
.y1a4_c01324{bottom:420.866667pt;}
.y1a5_c01324{bottom:423.173333pt;}
.y1a2_c01324{bottom:424.706667pt;}
.y1a1_c01324{bottom:425.466667pt;}
.y19f_c01324{bottom:427.773333pt;}
.y1a3_c01324{bottom:430.080000pt;}
.y19c_c01324{bottom:434.693333pt;}
.y19b_c01324{bottom:436.226667pt;}
.y19e_c01324{bottom:436.986667pt;}
.y19d_c01324{bottom:437.760000pt;}
.y198_c01324{bottom:439.293333pt;}
.y19a_c01324{bottom:440.066667pt;}
.y199_c01324{bottom:440.826667pt;}
.y196_c01324{bottom:442.373333pt;}
.y197_c01324{bottom:443.133333pt;}
.y195_c01324{bottom:443.906667pt;}
.y190_c01324{bottom:454.653333pt;}
.y194_c01324{bottom:455.426667pt;}
.y18f_c01324{bottom:456.186667pt;}
.y193_c01324{bottom:456.960000pt;}
.y192_c01324{bottom:457.733333pt;}
.y191_c01324{bottom:458.493333pt;}
.y18e_c01324{bottom:459.266667pt;}
.y18b_c01324{bottom:461.573333pt;}
.y18d_c01324{bottom:463.106667pt;}
.y18c_c01324{bottom:465.413333pt;}
.y18a_c01324{bottom:466.173333pt;}
.y189_c01324{bottom:470.786667pt;}
.y188_c01324{bottom:471.546667pt;}
.y187_c01324{bottom:472.320000pt;}
.y186_c01324{bottom:473.093333pt;}
.y184_c01324{bottom:473.853333pt;}
.y183_c01324{bottom:481.533333pt;}
.y17d_c01324{bottom:487.680000pt;}
.y181_c01324{bottom:488.453333pt;}
.y180_c01324{bottom:489.986667pt;}
.y182_c01324{bottom:490.746667pt;}
.y17e_c01324{bottom:493.053333pt;}
.y17f_c01324{bottom:494.586667pt;}
.y177_c01324{bottom:497.666667pt;}
.y185_c01324{bottom:498.426667pt;}
.y17a_c01324{bottom:499.200000pt;}
.y24a_c01324{bottom:499.973333pt;}
.y17c_c01324{bottom:502.266667pt;}
.y17b_c01324{bottom:503.040000pt;}
.y249_c01324{bottom:504.573333pt;}
.y178_c01324{bottom:505.346667pt;}
.y179_c01324{bottom:506.106667pt;}
.y176_c01324{bottom:506.880000pt;}
.y175_c01324{bottom:507.653333pt;}
.y173_c01324{bottom:509.186667pt;}
.y172_c01324{bottom:510.720000pt;}
.y174_c01324{bottom:512.253333pt;}
.y16e_c01324{bottom:513.026667pt;}
.y170_c01324{bottom:515.333333pt;}
.y171_c01324{bottom:516.093333pt;}
.y16f_c01324{bottom:518.400000pt;}
.y16d_c01324{bottom:520.706667pt;}
.y16c_c01324{bottom:521.466667pt;}
.y16a_c01324{bottom:523.773333pt;}
.y168_c01324{bottom:524.546667pt;}
.y16b_c01324{bottom:526.853333pt;}
.y166_c01324{bottom:527.613333pt;}
.y169_c01324{bottom:529.146667pt;}
.y167_c01324{bottom:529.920000pt;}
.y165_c01324{bottom:532.226667pt;}
.y162_c01324{bottom:542.973333pt;}
.y161_c01324{bottom:545.280000pt;}
.y163_c01324{bottom:546.813333pt;}
.y15f_c01324{bottom:547.586667pt;}
.y164_c01324{bottom:548.346667pt;}
.y15d_c01324{bottom:549.120000pt;}
.y15e_c01324{bottom:550.653333pt;}
.y160_c01324{bottom:557.573333pt;}
.y15c_c01324{bottom:562.173333pt;}
.y15b_c01324{bottom:566.786667pt;}
.y159_c01324{bottom:568.320000pt;}
.y157_c01324{bottom:572.160000pt;}
.y158_c01324{bottom:573.693333pt;}
.y156_c01324{bottom:576.773333pt;}
.y153_c01324{bottom:579.840000pt;}
.y15a_c01324{bottom:580.613333pt;}
.y151_c01324{bottom:582.146667pt;}
.y155_c01324{bottom:582.906667pt;}
.y154_c01324{bottom:583.680000pt;}
.y150_c01324{bottom:585.213333pt;}
.y152_c01324{bottom:587.520000pt;}
.y14f_c01324{bottom:589.053333pt;}
.y14e_c01324{bottom:591.360000pt;}
.y14c_c01324{bottom:593.666667pt;}
.y14a_c01324{bottom:594.426667pt;}
.y14d_c01324{bottom:599.813333pt;}
.y148_c01324{bottom:600.573333pt;}
.y14b_c01324{bottom:601.346667pt;}
.y149_c01324{bottom:602.106667pt;}
.y145_c01324{bottom:605.946667pt;}
.y147_c01324{bottom:607.493333pt;}
.y146_c01324{bottom:608.253333pt;}
.y144_c01324{bottom:612.866667pt;}
.y140_c01324{bottom:618.240000pt;}
.y13f_c01324{bottom:619.013333pt;}
.y142_c01324{bottom:619.773333pt;}
.y143_c01324{bottom:620.546667pt;}
.y13c_c01324{bottom:621.306667pt;}
.y141_c01324{bottom:622.080000pt;}
.y13b_c01324{bottom:622.853333pt;}
.y13e_c01324{bottom:624.386667pt;}
.y13d_c01324{bottom:625.146667pt;}
.y137_c01324{bottom:633.600000pt;}
.y13a_c01324{bottom:635.906667pt;}
.y139_c01324{bottom:637.440000pt;}
.y138_c01324{bottom:638.213333pt;}
.y136_c01324{bottom:639.746667pt;}
.y134_c01324{bottom:640.506667pt;}
.y133_c01324{bottom:642.813333pt;}
.y135_c01324{bottom:644.346667pt;}
.y132_c01324{bottom:650.493333pt;}
.y131_c01324{bottom:653.573333pt;}
.y12f_c01324{bottom:655.866667pt;}
.y12c_c01324{bottom:656.640000pt;}
.y12d_c01324{bottom:658.173333pt;}
.y12e_c01324{bottom:658.946667pt;}
.y130_c01324{bottom:659.706667pt;}
.y12b_c01324{bottom:668.933333pt;}
.y12a_c01324{bottom:671.226667pt;}
.y129_c01324{bottom:672.773333pt;}
.y126_c01324{bottom:677.373333pt;}
.y127_c01324{bottom:678.906667pt;}
.y125_c01324{bottom:685.053333pt;}
.y128_c01324{bottom:687.360000pt;}
.y123_c01324{bottom:688.893333pt;}
.y124_c01324{bottom:689.666667pt;}
.y11f_c01324{bottom:690.426667pt;}
.y120_c01324{bottom:691.200000pt;}
.y11c_c01324{bottom:694.266667pt;}
.y122_c01324{bottom:695.040000pt;}
.y121_c01324{bottom:695.813333pt;}
.y11e_c01324{bottom:698.106667pt;}
.y11d_c01324{bottom:699.653333pt;}
.y11a_c01324{bottom:703.493333pt;}
.y119_c01324{bottom:705.786667pt;}
.y117_c01324{bottom:708.866667pt;}
.y11b_c01324{bottom:709.626667pt;}
.y114_c01324{bottom:711.173333pt;}
.y113_c01324{bottom:711.933333pt;}
.y118_c01324{bottom:713.466667pt;}
.y116_c01324{bottom:714.240000pt;}
.y115_c01324{bottom:715.013333pt;}
.y112_c01324{bottom:717.306667pt;}
.y10f_c01324{bottom:721.920000pt;}
.y111_c01324{bottom:724.986667pt;}
.y110_c01324{bottom:725.760000pt;}
.y10e_c01324{bottom:726.533333pt;}
.y10d_c01324{bottom:728.826667pt;}
.y10c_c01324{bottom:729.600000pt;}
.y109_c01324{bottom:731.906667pt;}
.y10b_c01324{bottom:732.666667pt;}
.y10a_c01324{bottom:734.213333pt;}
.y108_c01324{bottom:735.746667pt;}
.y104_c01324{bottom:741.120000pt;}
.y103_c01324{bottom:741.893333pt;}
.y102_c01324{bottom:742.653333pt;}
.y100_c01324{bottom:743.426667pt;}
.yff_c01324{bottom:744.186667pt;}
.yfe_c01324{bottom:744.960000pt;}
.y105_c01324{bottom:745.733333pt;}
.y107_c01324{bottom:746.493333pt;}
.y106_c01324{bottom:747.266667pt;}
.y101_c01324{bottom:751.106667pt;}
.yfd_c01324{bottom:757.253333pt;}
.yfc_c01324{bottom:764.160000pt;}
.yfb_c01324{bottom:764.933333pt;}
.yf9_c01324{bottom:769.533333pt;}
.yf8_c01324{bottom:771.066667pt;}
.yfa_c01324{bottom:771.840000pt;}
.yf7_c01324{bottom:775.680000pt;}
.yf6_c01324{bottom:776.453333pt;}
.y3_c01324{bottom:777.986667pt;}
.y2_c01324{bottom:780.293333pt;}
.yf4_c01324{bottom:781.053333pt;}
.yf5_c01324{bottom:781.826667pt;}
.yf1_c01324{bottom:784.893333pt;}
.yf3_c01324{bottom:787.200000pt;}
.yf2_c01324{bottom:787.973333pt;}
.yf0_c01324{bottom:788.733333pt;}
.yef_c01324{bottom:794.106667pt;}
.yee_c01324{bottom:796.413333pt;}
.yed_c01324{bottom:798.720000pt;}
.ye9_c01324{bottom:799.493333pt;}
.yec_c01324{bottom:800.253333pt;}
.ye8_c01324{bottom:801.026667pt;}
.yeb_c01324{bottom:803.333333pt;}
.yea_c01324{bottom:804.093333pt;}
.ye7_c01324{bottom:807.173333pt;}
.ye6_c01324{bottom:811.013333pt;}
.ye3_c01324{bottom:816.386667pt;}
.ye1_c01324{bottom:817.920000pt;}
.ye2_c01324{bottom:818.693333pt;}
.ye0_c01324{bottom:819.453333pt;}
.ye5_c01324{bottom:820.986667pt;}
.ye4_c01324{bottom:821.760000pt;}
.ydf_c01324{bottom:829.440000pt;}
.yde_c01324{bottom:830.213333pt;}
.ydc_c01324{bottom:832.506667pt;}
.ydd_c01324{bottom:833.280000pt;}
.ydb_c01324{bottom:834.053333pt;}
.yda_c01324{bottom:834.813333pt;}
.yd4_c01324{bottom:837.120000pt;}
.yd8_c01324{bottom:837.893333pt;}
.yd5_c01324{bottom:839.426667pt;}
.yd9_c01324{bottom:840.186667pt;}
.yd7_c01324{bottom:840.960000pt;}
.yd6_c01324{bottom:842.493333pt;}
.yd2_c01324{bottom:849.413333pt;}
.yd1_c01324{bottom:850.946667pt;}
.yd3_c01324{bottom:851.706667pt;}
.yd0_c01324{bottom:852.480000pt;}
.y24d_c01324{bottom:854.013333pt;}
.yce_c01324{bottom:854.786667pt;}
.ycc_c01324{bottom:856.320000pt;}
.ycd_c01324{bottom:857.853333pt;}
.ycf_c01324{bottom:858.626667pt;}
.ycb_c01324{bottom:860.160000pt;}
.yca_c01324{bottom:860.933333pt;}
.yc9_c01324{bottom:866.306667pt;}
.yc8_c01324{bottom:867.066667pt;}
.yc7_c01324{bottom:867.840000pt;}
.yc6_c01324{bottom:868.613333pt;}
.y24c_c01324{bottom:870.906667pt;}
.yc5_c01324{bottom:871.680000pt;}
.yc3_c01324{bottom:872.453333pt;}
.yc0_c01324{bottom:875.520000pt;}
.yc4_c01324{bottom:876.293333pt;}
.yc2_c01324{bottom:877.053333pt;}
.yc1_c01324{bottom:877.826667pt;}
.ybf_c01324{bottom:884.733333pt;}
.ybe_c01324{bottom:885.506667pt;}
.ybb_c01324{bottom:886.266667pt;}
.yb9_c01324{bottom:887.040000pt;}
.y24b_c01324{bottom:888.573333pt;}
.ybd_c01324{bottom:889.346667pt;}
.ybc_c01324{bottom:890.106667pt;}
.yb4_c01324{bottom:890.880000pt;}
.yb3_c01324{bottom:891.653333pt;}
.yba_c01324{bottom:893.186667pt;}
.yb8_c01324{bottom:893.946667pt;}
.yb6_c01324{bottom:894.720000pt;}
.yb5_c01324{bottom:896.253333pt;}
.yb7_c01324{bottom:900.093333pt;}
.yb1_c01324{bottom:901.626667pt;}
.yb0_c01324{bottom:902.400000pt;}
.yb2_c01324{bottom:903.933333pt;}
.yaf_c01324{bottom:904.706667pt;}
.yac_c01324{bottom:907.773333pt;}
.yaa_c01324{bottom:909.306667pt;}
.yae_c01324{bottom:910.853333pt;}
.yad_c01324{bottom:911.613333pt;}
.yab_c01324{bottom:913.146667pt;}
.ya9_c01324{bottom:914.693333pt;}
.ya8_c01324{bottom:919.293333pt;}
.ya6_c01324{bottom:923.133333pt;}
.ya7_c01324{bottom:923.906667pt;}
.ya5_c01324{bottom:925.440000pt;}
.ya1_c01324{bottom:926.973333pt;}
.ya4_c01324{bottom:930.053333pt;}
.ya3_c01324{bottom:930.813333pt;}
.ya2_c01324{bottom:931.586667pt;}
.ya0_c01324{bottom:933.120000pt;}
.y9f_c01324{bottom:938.493333pt;}
.y9d_c01324{bottom:940.026667pt;}
.y9c_c01324{bottom:941.573333pt;}
.y9a_c01324{bottom:942.333333pt;}
.y9e_c01324{bottom:943.866667pt;}
.y97_c01324{bottom:946.173333pt;}
.y9b_c01324{bottom:947.706667pt;}
.y99_c01324{bottom:950.013333pt;}
.y98_c01324{bottom:950.786667pt;}
.y94_c01324{bottom:959.226667pt;}
.y96_c01324{bottom:960.773333pt;}
.y91_c01324{bottom:962.306667pt;}
.y95_c01324{bottom:963.066667pt;}
.y93_c01324{bottom:963.840000pt;}
.y92_c01324{bottom:965.373333pt;}
.y8f_c01324{bottom:966.146667pt;}
.y90_c01324{bottom:967.680000pt;}
.y8d_c01324{bottom:976.893333pt;}
.y8c_c01324{bottom:977.666667pt;}
.y8e_c01324{bottom:978.426667pt;}
.y8b_c01324{bottom:979.973333pt;}
.y89_c01324{bottom:980.733333pt;}
.y88_c01324{bottom:981.506667pt;}
.y86_c01324{bottom:982.266667pt;}
.y8a_c01324{bottom:983.040000pt;}
.y87_c01324{bottom:985.346667pt;}
.y85_c01324{bottom:986.880000pt;}
.y84_c01324{bottom:989.946667pt;}
.y82_c01324{bottom:994.560000pt;}
.y81_c01324{bottom:995.333333pt;}
.y83_c01324{bottom:997.626667pt;}
.y7f_c01324{bottom:999.173333pt;}
.y80_c01324{bottom:999.933333pt;}
.y7c_c01324{bottom:1000.706667pt;}
.y7e_c01324{bottom:1002.240000pt;}
.y7d_c01324{bottom:1003.773333pt;}
.y7b_c01324{bottom:1005.306667pt;}
.y79_c01324{bottom:1011.453333pt;}
.y7a_c01324{bottom:1012.226667pt;}
.y77_c01324{bottom:1012.986667pt;}
.y75_c01324{bottom:1013.760000pt;}
.y76_c01324{bottom:1014.533333pt;}
.y78_c01324{bottom:1016.826667pt;}
.y74_c01324{bottom:1017.600000pt;}
.y72_c01324{bottom:1019.906667pt;}
.y73_c01324{bottom:1022.213333pt;}
.y70_c01324{bottom:1029.120000pt;}
.y6f_c01324{bottom:1029.893333pt;}
.y68_c01324{bottom:1032.186667pt;}
.y6d_c01324{bottom:1032.960000pt;}
.y6e_c01324{bottom:1034.493333pt;}
.y69_c01324{bottom:1035.266667pt;}
.y6b_c01324{bottom:1036.026667pt;}
.y6c_c01324{bottom:1036.800000pt;}
.y64_c01324{bottom:1037.573333pt;}
.y6a_c01324{bottom:1038.333333pt;}
.y71_c01324{bottom:1039.866667pt;}
.y67_c01324{bottom:1040.640000pt;}
.y65_c01324{bottom:1041.413333pt;}
.y66_c01324{bottom:1043.706667pt;}
.y62_c01324{bottom:1044.480000pt;}
.y63_c01324{bottom:1046.786667pt;}
.y61_c01324{bottom:1047.546667pt;}
.y5f_c01324{bottom:1049.093333pt;}
.y60_c01324{bottom:1049.853333pt;}
.y5d_c01324{bottom:1050.626667pt;}
.y59_c01324{bottom:1054.466667pt;}
.y5b_c01324{bottom:1055.226667pt;}
.y5a_c01324{bottom:1056.000000pt;}
.y5c_c01324{bottom:1056.773333pt;}
.y5e_c01324{bottom:1057.533333pt;}
.y55_c01324{bottom:1063.680000pt;}
.y57_c01324{bottom:1064.453333pt;}
.y58_c01324{bottom:1065.213333pt;}
.y56_c01324{bottom:1065.986667pt;}
.y54_c01324{bottom:1067.520000pt;}
.y53_c01324{bottom:1068.293333pt;}
.y50_c01324{bottom:1069.053333pt;}
.y51_c01324{bottom:1069.826667pt;}
.y4e_c01324{bottom:1070.586667pt;}
.y4f_c01324{bottom:1071.360000pt;}
.y4d_c01324{bottom:1072.133333pt;}
.y52_c01324{bottom:1072.893333pt;}
.y4c_c01324{bottom:1074.426667pt;}
.y4a_c01324{bottom:1076.733333pt;}
.y4b_c01324{bottom:1077.506667pt;}
.y49_c01324{bottom:1088.253333pt;}
.y48_c01324{bottom:1089.026667pt;}
.y46_c01324{bottom:1089.786667pt;}
.y45_c01324{bottom:1090.560000pt;}
.y47_c01324{bottom:1092.093333pt;}
.y42_c01324{bottom:1092.866667pt;}
.y44_c01324{bottom:1094.400000pt;}
.y43_c01324{bottom:1095.173333pt;}
.y3e_c01324{bottom:1104.386667pt;}
.y3f_c01324{bottom:1105.146667pt;}
.y40_c01324{bottom:1106.693333pt;}
.y3c_c01324{bottom:1107.453333pt;}
.y3a_c01324{bottom:1108.986667pt;}
.y41_c01324{bottom:1109.760000pt;}
.y3b_c01324{bottom:1112.066667pt;}
.y39_c01324{bottom:1113.600000pt;}
.y3d_c01324{bottom:1117.440000pt;}
.y38_c01324{bottom:1119.746667pt;}
.y36_c01324{bottom:1121.280000pt;}
.y34_c01324{bottom:1124.346667pt;}
.y37_c01324{bottom:1125.893333pt;}
.y30_c01324{bottom:1126.653333pt;}
.y35_c01324{bottom:1127.426667pt;}
.y32_c01324{bottom:1128.186667pt;}
.y33_c01324{bottom:1129.733333pt;}
.y31_c01324{bottom:1131.266667pt;}
.y2f_c01324{bottom:1137.413333pt;}
.y2d_c01324{bottom:1139.706667pt;}
.y2b_c01324{bottom:1142.013333pt;}
.y2e_c01324{bottom:1142.786667pt;}
.y29_c01324{bottom:1144.320000pt;}
.y27_c01324{bottom:1145.093333pt;}
.y2c_c01324{bottom:1145.853333pt;}
.y2a_c01324{bottom:1147.386667pt;}
.y28_c01324{bottom:1148.933333pt;}
.y26_c01324{bottom:1155.840000pt;}
.y24_c01324{bottom:1156.613333pt;}
.y25_c01324{bottom:1157.373333pt;}
.y22_c01324{bottom:1158.906667pt;}
.y20_c01324{bottom:1161.213333pt;}
.y23_c01324{bottom:1162.746667pt;}
.y21_c01324{bottom:1165.053333pt;}
.y1f_c01324{bottom:1166.586667pt;}
.y17_c01324{bottom:1173.506667pt;}
.y1e_c01324{bottom:1175.040000pt;}
.y1b_c01324{bottom:1176.573333pt;}
.y1d_c01324{bottom:1177.346667pt;}
.y1c_c01324{bottom:1178.106667pt;}
.y1a_c01324{bottom:1178.880000pt;}
.yd_c01324{bottom:1180.413333pt;}
.y13_c01324{bottom:1181.186667pt;}
.yb_c01324{bottom:1181.946667pt;}
.y19_c01324{bottom:1182.720000pt;}
.yf_c01324{bottom:1183.493333pt;}
.y11_c01324{bottom:1184.253333pt;}
.y14_c01324{bottom:1185.026667pt;}
.y12_c01324{bottom:1185.786667pt;}
.y16_c01324{bottom:1187.333333pt;}
.y18_c01324{bottom:1188.093333pt;}
.y15_c01324{bottom:1188.866667pt;}
.y7_c01324{bottom:1189.626667pt;}
.y9_c01324{bottom:1190.400000pt;}
.ye_c01324{bottom:1191.173333pt;}
.ya_c01324{bottom:1192.706667pt;}
.yc_c01324{bottom:1193.466667pt;}
.y5_c01324{bottom:1194.240000pt;}
.y10_c01324{bottom:1195.013333pt;}
.y8_c01324{bottom:1195.773333pt;}
.y6_c01324{bottom:1202.693333pt;}
.y4_c01324{bottom:1206.533333pt;}
.y1_c01324{bottom:1257.213333pt;}
.h3_c01324{height:2.764500pt;}
.h7_c01324{height:4.799479pt;}
.h11_c01324{height:5.519401pt;}
.h1a_c01324{height:8.303099pt;}
.hc_c01324{height:11.038802pt;}
.h6_c01324{height:13.822500pt;}
.h4_c01324{height:16.606198pt;}
.h2_c01324{height:19.341901pt;}
.hd_c01324{height:22.125599pt;}
.h9_c01324{height:24.861302pt;}
.h14_c01324{height:27.645000pt;}
.h10_c01324{height:30.428698pt;}
.h19_c01324{height:33.164401pt;}
.he_c01324{height:35.948099pt;}
.hf_c01324{height:38.683802pt;}
.h15_c01324{height:41.467500pt;}
.h8_c01324{height:44.251198pt;}
.ha_c01324{height:46.986901pt;}
.h13_c01324{height:49.770599pt;}
.hb_c01324{height:52.506302pt;}
.h1c_c01324{height:55.290000pt;}
.h24_c01324{height:56.213568pt;}
.h5_c01324{height:58.073698pt;}
.h17_c01324{height:60.809401pt;}
.h16_c01324{height:63.593099pt;}
.h12_c01324{height:66.328802pt;}
.h1b_c01324{height:69.112500pt;}
.h18_c01324{height:71.896198pt;}
.h21_c01324{height:74.631901pt;}
.h20_c01324{height:77.415599pt;}
.h1f_c01324{height:80.151302pt;}
.h1e_c01324{height:82.935000pt;}
.h26_c01324{height:85.718698pt;}
.h1d_c01324{height:88.454401pt;}
.h25_c01324{height:93.973802pt;}
.h22_c01324{height:96.757500pt;}
.h23_c01324{height:107.796302pt;}
.h1_c01324{height:1345.333333pt;}
.h0_c01324{height:1345.533333pt;}
.w0_c01324{width:963.066667pt;}
.w1_c01324{width:963.333333pt;}
.x0_c01324{left:0.000000pt;}
.x2_c01324{left:130.560000pt;}
.x3_c01324{left:136.706667pt;}
.x110_c01324{left:145.146667pt;}
.x10b_c01324{left:148.226667pt;}
.x102_c01324{left:152.826667pt;}
.x111_c01324{left:154.373419pt;}
.x10c_c01324{left:158.973333pt;}
.xdb_c01324{left:161.280000pt;}
.x105_c01324{left:167.426667pt;}
.x124_c01324{left:175.106667pt;}
.x106_c01324{left:179.706667pt;}
.xfd_c01324{left:182.013333pt;}
.xe2_c01324{left:183.546667pt;}
.xdf_c01324{left:185.853333pt;}
.xf9_c01324{left:188.160000pt;}
.x112_c01324{left:190.466667pt;}
.x8b_c01324{left:192.000000pt;}
.xfa_c01324{left:193.533333pt;}
.x107_c01324{left:195.066667pt;}
.x9a_c01324{left:196.613333pt;}
.xff_c01324{left:198.906667pt;}
.xe6_c01324{left:200.453333pt;}
.xd4_c01324{left:204.293333pt;}
.xc7_c01324{left:205.826667pt;}
.x9b_c01324{left:207.360000pt;}
.x8c_c01324{left:208.893333pt;}
.x7f_c01324{left:210.426667pt;}
.x20_c01324{left:211.973333pt;}
.x4_c01324{left:215.040000pt;}
.xd1_c01324{left:216.573333pt;}
.xb2_c01324{left:221.186667pt;}
.x103_c01324{left:224.253333pt;}
.x5_c01324{left:225.786667pt;}
.xb6_c01324{left:227.333333pt;}
.x5d_c01324{left:231.173333pt;}
.x125_c01324{left:232.706667pt;}
.xa1_c01324{left:235.013333pt;}
.x63_c01324{left:237.306667pt;}
.x72_c01324{left:238.853333pt;}
.x6_c01324{left:241.146667pt;}
.x8d_c01324{left:244.986667pt;}
.x43_c01324{left:247.293333pt;}
.x39_c01324{left:251.133333pt;}
.xc1_c01324{left:253.440000pt;}
.x54_c01324{left:254.973333pt;}
.xce_c01324{left:257.280000pt;}
.xc3_c01324{left:258.813333pt;}
.x9c_c01324{left:261.120000pt;}
.x79_c01324{left:262.653333pt;}
.x11b_c01324{left:264.186667pt;}
.x21_c01324{left:265.733333pt;}
.x94_c01324{left:267.266667pt;}
.xa6_c01324{left:268.800000pt;}
.x55_c01324{left:271.106667pt;}
.x7_c01324{left:274.173333pt;}
.x64_c01324{left:277.253333pt;}
.x8_c01324{left:279.546667pt;}
.x100_c01324{left:282.626667pt;}
.x10d_c01324{left:284.160000pt;}
.x22_c01324{left:285.693333pt;}
.x113_c01324{left:287.226667pt;}
.xd9_c01324{left:288.773333pt;}
.x85_c01324{left:294.146667pt;}
.xfb_c01324{left:295.680000pt;}
.xd5_c01324{left:297.986667pt;}
.x5e_c01324{left:299.520000pt;}
.xa2_c01324{left:301.053333pt;}
.x4c_c01324{left:303.360000pt;}
.xa7_c01324{left:304.893333pt;}
.x44_c01324{left:306.426667pt;}
.x5f_c01324{left:309.506667pt;}
.x3a_c01324{left:311.040000pt;}
.x45_c01324{left:312.573333pt;}
.x114_c01324{left:314.106667pt;}
.x30_c01324{left:315.653333pt;}
.x7a_c01324{left:317.946667pt;}
.xbe_c01324{left:320.253333pt;}
.x65_c01324{left:321.786667pt;}
.xbc_c01324{left:324.093333pt;}
.x8e_c01324{left:325.626667pt;}
.x56_c01324{left:327.173333pt;}
.x118_c01324{left:328.706667pt;}
.x60_c01324{left:330.240000pt;}
.x9_c01324{left:331.773333pt;}
.x7b_c01324{left:333.306667pt;}
.x9d_c01324{left:336.386667pt;}
.x6b_c01324{left:338.693333pt;}
.x66_c01324{left:340.226667pt;}
.xb7_c01324{left:341.760000pt;}
.x8f_c01324{left:344.066667pt;}
.x95_c01324{left:345.600000pt;}
.x4d_c01324{left:347.906667pt;}
.xa8_c01324{left:350.973333pt;}
.xe8_c01324{left:354.053333pt;}
.x67_c01324{left:355.586667pt;}
.xa_c01324{left:357.120000pt;}
.x23_c01324{left:359.426667pt;}
.x3b_c01324{left:362.493333pt;}
.x24_c01324{left:365.573333pt;}
.xc8_c01324{left:367.106667pt;}
.xe0_c01324{left:368.640000pt;}
.x11c_c01324{left:372.480000pt;}
.x4e_c01324{left:374.013333pt;}
.x46_c01324{left:375.546667pt;}
.x73_c01324{left:377.853333pt;}
.xb3_c01324{left:379.386667pt;}
.x57_c01324{left:381.693333pt;}
.xb_c01324{left:383.226667pt;}
.xbf_c01324{left:384.773333pt;}
.xe3_c01324{left:386.306667pt;}
.xc9_c01324{left:387.840000pt;}
.x58_c01324{left:389.373333pt;}
.x108_c01324{left:390.906667pt;}
.xca_c01324{left:392.453333pt;}
.x25_c01324{left:395.520000pt;}
.xfe_c01324{left:399.360000pt;}
.xc4_c01324{left:400.893333pt;}
.x120_c01324{left:402.426667pt;}
.x59_c01324{left:403.973333pt;}
.x3c_c01324{left:405.506667pt;}
.x11d_c01324{left:408.573333pt;}
.x6c_c01324{left:410.880000pt;}
.x31_c01324{left:413.946667pt;}
.x109_c01324{left:415.493333pt;}
.xc_c01324{left:417.026667pt;}
.x11f_c01324{left:418.560000pt;}
.xbd_c01324{left:420.866667pt;}
.xf6_c01324{left:424.706667pt;}
.xd_c01324{left:426.240000pt;}
.x80_c01324{left:427.773333pt;}
.x4f_c01324{left:430.853333pt;}
.xdc_c01324{left:432.386667pt;}
.xe_c01324{left:434.693333pt;}
.xb8_c01324{left:436.986667pt;}
.xab_c01324{left:439.293333pt;}
.xa3_c01324{left:440.826667pt;}
.x32_c01324{left:446.213333pt;}
.xf7_c01324{left:447.746667pt;}
.xf_c01324{left:449.280000pt;}
.xa4_c01324{left:450.813333pt;}
.x68_c01324{left:453.120000pt;}
.xcb_c01324{left:456.186667pt;}
.x3d_c01324{left:457.733333pt;}
.x47_c01324{left:459.266667pt;}
.x90_c01324{left:460.800000pt;}
.x26_c01324{left:463.866667pt;}
.xac_c01324{left:466.173333pt;}
.x6d_c01324{left:470.786667pt;}
.x69_c01324{left:473.093333pt;}
.xa9_c01324{left:474.626667pt;}
.x50_c01324{left:477.693333pt;}
.x10_c01324{left:480.000000pt;}
.xe4_c01324{left:481.533333pt;}
.x119_c01324{left:483.066667pt;}
.xad_c01324{left:486.146667pt;}
.x104_c01324{left:489.986667pt;}
.x11_c01324{left:491.520000pt;}
.xea_c01324{left:493.053333pt;}
.x27_c01324{left:494.586667pt;}
.xe1_c01324{left:496.133333pt;}
.x33_c01324{left:497.666667pt;}
.xae_c01324{left:499.200000pt;}
.xb9_c01324{left:501.506667pt;}
.x96_c01324{left:503.813333pt;}
.x34_c01324{left:505.346667pt;}
.x3e_c01324{left:506.880000pt;}
.xeb_c01324{left:510.720000pt;}
.xef_c01324{left:513.026667pt;}
.xe7_c01324{left:515.333333pt;}
.x97_c01324{left:520.706667pt;}
.x74_c01324{left:523.013333pt;}
.x12_c01324{left:525.306667pt;}
.x5a_c01324{left:527.613333pt;}
.x86_c01324{left:529.920000pt;}
.x7c_c01324{left:532.986667pt;}
.x3f_c01324{left:534.533333pt;}
.x28_c01324{left:536.066667pt;}
.x115_c01324{left:537.600000pt;}
.x9e_c01324{left:539.133333pt;}
.x61_c01324{left:541.440000pt;}
.xf1_c01324{left:542.973333pt;}
.x91_c01324{left:545.280000pt;}
.xcc_c01324{left:547.586667pt;}
.x29_c01324{left:549.893333pt;}
.x10a_c01324{left:551.426667pt;}
.x40_c01324{left:552.960000pt;}
.x13_c01324{left:556.800000pt;}
.x75_c01324{left:559.106667pt;}
.x121_c01324{left:560.640000pt;}
.x48_c01324{left:562.946667pt;}
.xc5_c01324{left:567.546667pt;}
.xcd_c01324{left:569.853333pt;}
.xee_c01324{left:572.160000pt;}
.xc0_c01324{left:573.693333pt;}
.x2a_c01324{left:576.000000pt;}
.x9f_c01324{left:577.533333pt;}
.xe9_c01324{left:579.840000pt;}
.xcf_c01324{left:582.906667pt;}
.xaa_c01324{left:584.453333pt;}
.xf0_c01324{left:585.986667pt;}
.x14_c01324{left:588.293333pt;}
.x10e_c01324{left:591.360000pt;}
.xf2_c01324{left:592.893333pt;}
.x51_c01324{left:594.426667pt;}
.x98_c01324{left:595.973333pt;}
.x5b_c01324{left:599.040000pt;}
.x15_c01324{left:601.346667pt;}
.xf3_c01324{left:603.653333pt;}
.x87_c01324{left:606.720000pt;}
.x81_c01324{left:609.026667pt;}
.x2b_c01324{left:610.560000pt;}
.xd6_c01324{left:612.866667pt;}
.x82_c01324{left:615.173333pt;}
.x49_c01324{left:617.466667pt;}
.x92_c01324{left:619.773333pt;}
.xda_c01324{left:621.306667pt;}
.x6a_c01324{left:623.613333pt;}
.x41_c01324{left:625.920000pt;}
.xf4_c01324{left:629.760000pt;}
.xec_c01324{left:632.066667pt;}
.x2c_c01324{left:634.373333pt;}
.xba_c01324{left:635.906667pt;}
.x76_c01324{left:638.213333pt;}
.x16_c01324{left:639.746667pt;}
.x88_c01324{left:641.280000pt;}
.x83_c01324{left:643.586667pt;}
.x77_c01324{left:645.120000pt;}
.x2d_c01324{left:647.426667pt;}
.xd0_c01324{left:648.960000pt;}
.x93_c01324{left:650.493333pt;}
.x78_c01324{left:652.026667pt;}
.xd2_c01324{left:653.573333pt;}
.x52_c01324{left:656.640000pt;}
.xc2_c01324{left:658.946667pt;}
.x5c_c01324{left:660.480000pt;}
.xaf_c01324{left:662.013333pt;}
.x35_c01324{left:664.320000pt;}
.x6e_c01324{left:667.386667pt;}
.x17_c01324{left:669.693333pt;}
.x1_c01324{left:671.226667pt;}
.x10f_c01324{left:672.773333pt;}
.x6f_c01324{left:675.840000pt;}
.xbb_c01324{left:681.213333pt;}
.x70_c01324{left:683.520000pt;}
.x11e_c01324{left:685.053333pt;}
.xd7_c01324{left:687.360000pt;}
.x18_c01324{left:688.893333pt;}
.xdd_c01324{left:691.973333pt;}
.xa0_c01324{left:694.266667pt;}
.x101_c01324{left:696.573333pt;}
.x42_c01324{left:698.880000pt;}
.xb4_c01324{left:702.720000pt;}
.x19_c01324{left:705.026667pt;}
.x36_c01324{left:707.333333pt;}
.x84_c01324{left:709.626667pt;}
.x7d_c01324{left:711.173333pt;}
.xfc_c01324{left:712.706667pt;}
.x37_c01324{left:714.240000pt;}
.xde_c01324{left:718.853333pt;}
.xf5_c01324{left:721.920000pt;}
.xc6_c01324{left:723.453333pt;}
.xb5_c01324{left:726.533333pt;}
.x38_c01324{left:728.066667pt;}
.x122_c01324{left:730.373333pt;}
.xb0_c01324{left:733.440000pt;}
.x89_c01324{left:735.746667pt;}
.x53_c01324{left:738.813333pt;}
.x62_c01324{left:740.346667pt;}
.x1a_c01324{left:742.653333pt;}
.x7e_c01324{left:744.186667pt;}
.xd8_c01324{left:745.733333pt;}
.x71_c01324{left:747.266667pt;}
.x1b_c01324{left:748.800000pt;}
.xed_c01324{left:751.106667pt;}
.x8a_c01324{left:754.173333pt;}
.x11a_c01324{left:757.253333pt;}
.x4a_c01324{left:759.546667pt;}
.xf8_c01324{left:763.386667pt;}
.xe5_c01324{left:764.933333pt;}
.xd3_c01324{left:768.000000pt;}
.x1c_c01324{left:769.533333pt;}
.x4b_c01324{left:772.613333pt;}
.x123_c01324{left:774.146667pt;}
.x99_c01324{left:777.213333pt;}
.x1d_c01324{left:778.746667pt;}
.xa5_c01324{left:781.826667pt;}
.x2e_c01324{left:787.973333pt;}
.x1e_c01324{left:791.040000pt;}
.x116_c01324{left:793.346667pt;}
.x117_c01324{left:796.413333pt;}
.xb1_c01324{left:801.026667pt;}
.x2f_c01324{left:809.466667pt;}
.x1f_c01324{left:811.773333pt;}
.x127_c01324{left:946.173333pt;}
.x126_c01324{left:953.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_255a01fea3242a1f576a5bc5.woff2')format("woff");}.ff1_c01325{font-family:ff1_c01325;line-height:1.109863;font-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_c01325{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m15e_c01325{transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);}
.m6_c01325{transform:matrix(0.076125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076125,0.000000,0.000000,0.250000,0,0);}
.mc0_c01325{transform:matrix(0.095300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095300,0.000000,0.000000,0.250000,0,0);}
.m145_c01325{transform:matrix(0.098150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098150,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01325{transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01325{transform:matrix(0.103550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103550,0.000000,0.000000,0.250000,0,0);}
.m191_c01325{transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106925,0.000000,0.000000,0.250000,0,0);}
.m10d_c01325{transform:matrix(0.107000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107000,0.000000,0.000000,0.250000,0,0);}
.m10f_c01325{transform:matrix(0.107475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107475,0.000000,0.000000,0.250000,0,0);}
.m18f_c01325{transform:matrix(0.108175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108175,0.000000,0.000000,0.250000,0,0);}
.m179_c01325{transform:matrix(0.112325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112325,0.000000,0.000000,0.250000,0,0);}
.ma1_c01325{transform:matrix(0.119600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119600,0.000000,0.000000,0.250000,0,0);}
.mb0_c01325{transform:matrix(0.120225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120225,0.000000,0.000000,0.250000,0,0);}
.mc4_c01325{transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);}
.m25_c01325{transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121200,0.000000,0.000000,0.250000,0,0);}
.m155_c01325{transform:matrix(0.121300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121300,0.000000,0.000000,0.250000,0,0);}
.m111_c01325{transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122475,0.000000,0.000000,0.250000,0,0);}
.m11a_c01325{transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124675,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01325{transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124825,0.000000,0.000000,0.250000,0,0);}
.m81_c01325{transform:matrix(0.125150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125150,0.000000,0.000000,0.250000,0,0);}
.maa_c01325{transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125350,0.000000,0.000000,0.250000,0,0);}
.m192_c01325{transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127300,0.000000,0.000000,0.250000,0,0);}
.m10c_c01325{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);}
.m10e_c01325{transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);}
.m180_c01325{transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);}
.mdb_c01325{transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128900,0.000000,0.000000,0.250000,0,0);}
.mfa_c01325{transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129425,0.000000,0.000000,0.250000,0,0);}
.m57_c01325{transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131675,0.000000,0.000000,0.250000,0,0);}
.m97_c01325{transform:matrix(0.131950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131950,0.000000,0.000000,0.250000,0,0);}
.m17a_c01325{transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132650,0.000000,0.000000,0.250000,0,0);}
.m129_c01325{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);}
.m1ad_c01325{transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);}
.mc2_c01325{transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);}
.m100_c01325{transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133775,0.000000,0.000000,0.250000,0,0);}
.m190_c01325{transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);}
.m110_c01325{transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134700,0.000000,0.000000,0.250000,0,0);}
.m108_c01325{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);}
.m77_c01325{transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135075,0.000000,0.000000,0.250000,0,0);}
.m8d_c01325{transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135250,0.000000,0.000000,0.250000,0,0);}
.mc8_c01325{transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01325{transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);}
.m12b_c01325{transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136400,0.000000,0.000000,0.250000,0,0);}
.mc7_c01325{transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);}
.m101_c01325{transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137975,0.000000,0.000000,0.250000,0,0);}
.m11d_c01325{transform:matrix(0.138025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138025,0.000000,0.000000,0.250000,0,0);}
.m12f_c01325{transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);}
.m198_c01325{transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);}
.m144_c01325{transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140500,0.000000,0.000000,0.250000,0,0);}
.m133_c01325{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m10a_c01325{transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);}
.mb3_c01325{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m106_c01325{transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142650,0.000000,0.000000,0.250000,0,0);}
.m16e_c01325{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m18c_c01325{transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01325{transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143350,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01325{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.m154_c01325{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);}
.ma_c01325{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01325{transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144050,0.000000,0.000000,0.250000,0,0);}
.m5_c01325{transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);}
.m15_c01325{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);}
.m194_c01325{transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);}
.m148_c01325{transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146850,0.000000,0.000000,0.250000,0,0);}
.m8e_c01325{transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);}
.m1d8_c01325{transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147700,0.000000,0.000000,0.250000,0,0);}
.m92_c01325{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);}
.m1ba_c01325{transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149550,0.000000,0.000000,0.250000,0,0);}
.md3_c01325{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);}
.m112_c01325{transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150725,0.000000,0.000000,0.250000,0,0);}
.mc6_c01325{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.m55_c01325{transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);}
.m17d_c01325{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.m1_c01325{transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152325,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01325{transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153125,0.000000,0.000000,0.250000,0,0);}
.m2e_c01325{transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);}
.m195_c01325{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.mf8_c01325{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);}
.m15c_c01325{transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155650,0.000000,0.000000,0.250000,0,0);}
.m13c_c01325{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);}
.m175_c01325{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m109_c01325{transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156800,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01325{transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156875,0.000000,0.000000,0.250000,0,0);}
.m18a_c01325{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);}
.m1b_c01325{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m10b_c01325{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m98_c01325{transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);}
.m149_c01325{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.m12a_c01325{transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);}
.m18b_c01325{transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);}
.m147_c01325{transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);}
.m160_c01325{transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01325{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.m75_c01325{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.me5_c01325{transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161150,0.000000,0.000000,0.250000,0,0);}
.m105_c01325{transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);}
.m60_c01325{transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161675,0.000000,0.000000,0.250000,0,0);}
.m99_c01325{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);}
.m166_c01325{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m104_c01325{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);}
.mae_c01325{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01325{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.mda_c01325{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m159_c01325{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m182_c01325{transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166000,0.000000,0.000000,0.250000,0,0);}
.m86_c01325{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01325{transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);}
.m178_c01325{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.m11c_c01325{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);}
.mc3_c01325{transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);}
.m11_c01325{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.m8c_c01325{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);}
.m2b_c01325{transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169500,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01325{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.m90_c01325{transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169700,0.000000,0.000000,0.250000,0,0);}
.m19f_c01325{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.m19e_c01325{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m28_c01325{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);}
.m188_c01325{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.m185_c01325{transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171850,0.000000,0.000000,0.250000,0,0);}
.m84_c01325{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m199_c01325{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.mcc_c01325{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.m164_c01325{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);}
.mfd_c01325{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m130_c01325{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m7_c01325{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);}
.mf9_c01325{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);}
.m197_c01325{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m19c_c01325{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.m9b_c01325{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m2a_c01325{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m24_c01325{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.mba_c01325{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);}
.mb2_c01325{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);}
.m1b6_c01325{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m17e_c01325{transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177325,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01325{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);}
.m1b8_c01325{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);}
.m1ac_c01325{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m169_c01325{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.m12_c01325{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);}
.m13_c01325{transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);}
.m95_c01325{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);}
.m18d_c01325{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m19_c01325{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m7f_c01325{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01325{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.m150_c01325{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m13d_c01325{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01325{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);}
.m113_c01325{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);}
.m136_c01325{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01325{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m17f_c01325{transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185800,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01325{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);}
.med_c01325{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m167_c01325{transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186100,0.000000,0.000000,0.250000,0,0);}
.m87_c01325{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);}
.m1cd_c01325{transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186900,0.000000,0.000000,0.250000,0,0);}
.m1af_c01325{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m8a_c01325{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);}
.m189_c01325{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);}
.m1ce_c01325{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m0_c01325{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.mdf_c01325{transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);}
.m13e_c01325{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.m62_c01325{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01325{transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);}
.m78_c01325{transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);}
.mf_c01325{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m29_c01325{transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);}
.me2_c01325{transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189875,0.000000,0.000000,0.250000,0,0);}
.m193_c01325{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.m13a_c01325{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m128_c01325{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m76_c01325{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.m102_c01325{transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191850,0.000000,0.000000,0.250000,0,0);}
.m161_c01325{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);}
.m7d_c01325{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.mc5_c01325{transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192650,0.000000,0.000000,0.250000,0,0);}
.m141_c01325{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.m42_c01325{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m18_c01325{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);}
.m1a4_c01325{transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);}
.m16b_c01325{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m134_c01325{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);}
.meb_c01325{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);}
.mbb_c01325{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);}
.m183_c01325{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);}
.m15f_c01325{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m176_c01325{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);}
.m15a_c01325{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.mfc_c01325{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.mf6_c01325{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);}
.mdc_c01325{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.m117_c01325{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);}
.m49_c01325{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.m17b_c01325{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.m142_c01325{transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);}
.ma0_c01325{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);}
.m85_c01325{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mea_c01325{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m11f_c01325{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.m120_c01325{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.mfb_c01325{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.mb4_c01325{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m14e_c01325{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);}
.m15b_c01325{transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);}
.m186_c01325{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);}
.m19a_c01325{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m127_c01325{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);}
.m1c7_c01325{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);}
.m124_c01325{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);}
.m1cf_c01325{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.mf4_c01325{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mc1_c01325{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m5a_c01325{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);}
.md7_c01325{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);}
.ma3_c01325{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);}
.m1c_c01325{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);}
.m14b_c01325{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.mff_c01325{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);}
.mbc_c01325{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);}
.mbe_c01325{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);}
.m126_c01325{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);}
.m1a7_c01325{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.mf7_c01325{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m103_c01325{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);}
.m7b_c01325{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m15d_c01325{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.m181_c01325{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m59_c01325{transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);}
.mdd_c01325{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);}
.mf3_c01325{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);}
.m18e_c01325{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);}
.m13f_c01325{transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213100,0.000000,0.000000,0.250000,0,0);}
.m152_c01325{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m158_c01325{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);}
.m45_c01325{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);}
.m131_c01325{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.m16c_c01325{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01325{transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214425,0.000000,0.000000,0.250000,0,0);}
.m9d_c01325{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m6e_c01325{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);}
.m16a_c01325{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.mbd_c01325{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);}
.m8b_c01325{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.md8_c01325{transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);}
.m119_c01325{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.m1c9_c01325{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);}
.m1b7_c01325{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);}
.m187_c01325{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m1d_c01325{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);}
.m138_c01325{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);}
.m1a9_c01325{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);}
.mde_c01325{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m173_c01325{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.m177_c01325{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);}
.m12c_c01325{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m34_c01325{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m63_c01325{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);}
.m22_c01325{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);}
.md5_c01325{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);}
.m91_c01325{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01325{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m43_c01325{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.mf1_c01325{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);}
.m122_c01325{transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);}
.mcf_c01325{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);}
.m35_c01325{transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);}
.m32_c01325{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);}
.m1c6_c01325{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01325{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m5b_c01325{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);}
.m94_c01325{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.mb9_c01325{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.ma7_c01325{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.m26_c01325{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);}
.m163_c01325{transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224100,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01325{transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);}
.m3f_c01325{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m11b_c01325{transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);}
.m151_c01325{transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);}
.m4f_c01325{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m53_c01325{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.me0_c01325{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01325{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);}
.mab_c01325{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);}
.mf0_c01325{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.mf2_c01325{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.m68_c01325{transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);}
.md9_c01325{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.m9e_c01325{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);}
.m19d_c01325{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);}
.m17_c01325{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.m16f_c01325{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m93_c01325{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.m7a_c01325{transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229850,0.000000,0.000000,0.250000,0,0);}
.ma2_c01325{transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230150,0.000000,0.000000,0.250000,0,0);}
.m16_c01325{transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01325{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);}
.m14_c01325{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.mbf_c01325{transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);}
.m41_c01325{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);}
.m1bb_c01325{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);}
.me4_c01325{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);}
.m14a_c01325{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.ma9_c01325{transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233850,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01325{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);}
.m1ab_c01325{transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);}
.m48_c01325{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);}
.m184_c01325{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);}
.m14f_c01325{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.m11e_c01325{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.mf5_c01325{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m135_c01325{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);}
.m30_c01325{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);}
.m121_c01325{transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01325{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m115_c01325{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);}
.m19b_c01325{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m73_c01325{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m168_c01325{transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);}
.me_c01325{transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);}
.ma8_c01325{transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);}
.m146_c01325{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);}
.m7e_c01325{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);}
.mb7_c01325{transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);}
.me1_c01325{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);}
.m1f_c01325{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);}
.m9a_c01325{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.m2_c01325{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);}
.m157_c01325{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);}
.ma6_c01325{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);}
.m125_c01325{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.m96_c01325{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);}
.mec_c01325{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);}
.m114_c01325{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);}
.mca_c01325{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);}
.m17c_c01325{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);}
.m123_c01325{transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);}
.m165_c01325{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.m4b_c01325{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);}
.m1c4_c01325{transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247800,0.000000,0.000000,0.250000,0,0);}
.me9_c01325{transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248625,0.000000,0.000000,0.250000,0,0);}
.m50_c01325{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.mc_c01325{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);}
.m56_c01325{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m51_c01325{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);}
.mcb_c01325{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);}
.m74_c01325{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);}
.m40_c01325{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);}
.m21_c01325{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m37_c01325{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m20_c01325{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m54_c01325{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);}
.m3d_c01325{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01325{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);}
.m2d_c01325{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_c01325{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01325{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);}
.m88_c01325{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01325{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01325{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);}
.m80_c01325{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m58_c01325{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);}
.m31_c01325{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);}
.m3c_c01325{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me3_c01325{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01325{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);}
.m67_c01325{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01325{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.md_c01325{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);}
.m1a_c01325{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma4_c01325{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c01325{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01325{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01325{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01325{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01325{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m47_c01325{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);}
.m4a_c01325{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m23_c01325{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m79_c01325{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01325{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01325{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);}
.m118_c01325{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);}
.m64_c01325{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01325{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);}
.m27_c01325{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m65_c01325{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m52_c01325{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01325{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m46_c01325{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);}
.m36_c01325{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me8_c01325{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m13b_c01325{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);}
.m1b9_c01325{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01325{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m196_c01325{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);}
.m162_c01325{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01325{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m69_c01325{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mb_c01325{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01325{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01325{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m44_c01325{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);}
.m61_c01325{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m39_c01325{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);}
.m5f_c01325{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mef_c01325{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mee_c01325{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);}
.me7_c01325{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m172_c01325{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01325{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mcd_c01325{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m89_c01325{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01325{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);}
.m82_c01325{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m12e_c01325{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.mc9_c01325{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.maf_c01325{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m33_c01325{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m72_c01325{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);}
.m71_c01325{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m132_c01325{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mb6_c01325{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mb1_c01325{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);}
.mb5_c01325{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mce_c01325{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.ma5_c01325{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m6c_c01325{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.me6_c01325{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.md0_c01325{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m66_c01325{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1d9_c01325{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);}
.m83_c01325{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m107_c01325{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m14d_c01325{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m1ca_c01325{transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.622500,0.000000,0.000000,0.250000,0,0);}
.mb8_c01325{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01325{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m8_c01325{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.md6_c01325{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.m14c_c01325{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.mac_c01325{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01325{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m143_c01325{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.md4_c01325{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.m140_c01325{transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.775000,0.000000,0.000000,0.250000,0,0);}
.m116_c01325{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m1be_c01325{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m4_c01325{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01325{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);}
.m139_c01325{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m9_c01325{transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.932500,0.000000,0.000000,0.250000,0,0);}
.m16d_c01325{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m70_c01325{transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01325{transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.027500,0.000000,0.000000,0.250000,0,0);}
.m170_c01325{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01325{transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.102500,0.000000,0.000000,0.250000,0,0);}
.m153_c01325{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.mfe_c01325{transform:matrix(1.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.232500,0.000000,0.000000,0.250000,0,0);}
.m137_c01325{transform:matrix(1.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.407500,0.000000,0.000000,0.250000,0,0);}
.m171_c01325{transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.410000,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01325{transform:matrix(1.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.550000,0.000000,0.000000,0.250000,0,0);}
.m12d_c01325{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m156_c01325{transform:matrix(1.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.590000,0.000000,0.000000,0.250000,0,0);}
.mad_c01325{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.md2_c01325{transform:matrix(1.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.730000,0.000000,0.000000,0.250000,0,0);}
.m174_c01325{transform:matrix(2.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.537500,0.000000,0.000000,0.250000,0,0);}
.md1_c01325{transform:matrix(2.905000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.905000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.905000,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01325{transform:matrix(5.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.202500,0.000000,0.000000,0.250000,0,0);}
.v0_c01325{vertical-align:0.000000px;}
.v1_c01325{vertical-align:3.480000px;}
.v2_c01325{vertical-align:17.280000px;}
.v3_c01325{vertical-align:27.660000px;}
.ls5_c01325{letter-spacing:0.000000px;}
.ls1_c01325{letter-spacing:15.724500px;}
.ls4_c01325{letter-spacing:97.296773px;}
.ls2_c01325{letter-spacing:156.626400px;}
.ls3_c01325{letter-spacing:269.823480px;}
.ls0_c01325{letter-spacing:754.040700px;}
.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;}
}
.ws2_c01325{word-spacing:-22.142160px;}
.ws1_c01325{word-spacing:-21.990360px;}
.ws0_c01325{word-spacing:-17.538376px;}
.ws3_c01325{word-spacing:0.000000px;}
.fc0_c01325{color:transparent;}
.fsb_c01325{font-size:3.456000px;}
.fsa_c01325{font-size:6.000000px;}
.fs4_c01325{font-size:6.900000px;}
.fs1e_c01325{font-size:10.380000px;}
.fs18_c01325{font-size:13.800000px;}
.fs1d_c01325{font-size:17.280000px;}
.fs5_c01325{font-size:20.760000px;}
.fs20_c01325{font-size:24.180000px;}
.fs19_c01325{font-size:27.660000px;}
.fs1c_c01325{font-size:31.080000px;}
.fs2_c01325{font-size:34.560000px;}
.fs3_c01325{font-size:38.040000px;}
.fs8_c01325{font-size:41.460000px;}
.fs1b_c01325{font-size:44.940000px;}
.fs12_c01325{font-size:48.360000px;}
.fs1a_c01325{font-size:51.840000px;}
.fs15_c01325{font-size:55.320000px;}
.fs1_c01325{font-size:58.740000px;}
.fsd_c01325{font-size:62.220000px;}
.fsf_c01325{font-size:65.640000px;}
.fsc_c01325{font-size:69.120000px;}
.fs16_c01325{font-size:72.600000px;}
.fs10_c01325{font-size:76.020000px;}
.fs13_c01325{font-size:79.500000px;}
.fs0_c01325{font-size:82.920000px;}
.fs7_c01325{font-size:86.400000px;}
.fs14_c01325{font-size:89.880000px;}
.fs1f_c01325{font-size:93.300000px;}
.fs11_c01325{font-size:96.780000px;}
.fs9_c01325{font-size:100.200000px;}
.fs17_c01325{font-size:103.680000px;}
.fse_c01325{font-size:107.160000px;}
.fs21_c01325{font-size:110.580000px;}
.fs6_c01325{font-size:279.960000px;}
.y0_c01325{bottom:0.000000px;}
.y21e_c01325{bottom:111.450000px;}
.y21c_c01325{bottom:150.330000px;}
.y21d_c01325{bottom:153.795000px;}
.y213_c01325{bottom:170.205000px;}
.y212_c01325{bottom:182.310000px;}
.y20e_c01325{bottom:183.165000px;}
.y20b_c01325{bottom:184.890000px;}
.y20c_c01325{bottom:185.760000px;}
.y20d_c01325{bottom:186.630000px;}
.y211_c01325{bottom:188.355000px;}
.y20f_c01325{bottom:190.950000px;}
.y210_c01325{bottom:191.805000px;}
.y20a_c01325{bottom:205.635000px;}
.y207_c01325{bottom:206.490000px;}
.y208_c01325{bottom:207.360000px;}
.y206_c01325{bottom:208.230000px;}
.y209_c01325{bottom:209.085000px;}
.y1fe_c01325{bottom:210.810000px;}
.y205_c01325{bottom:216.000000px;}
.y201_c01325{bottom:216.870000px;}
.y202_c01325{bottom:217.725000px;}
.y1ff_c01325{bottom:218.595000px;}
.y1fd_c01325{bottom:219.450000px;}
.y1fb_c01325{bottom:220.320000px;}
.y1fc_c01325{bottom:221.190000px;}
.y200_c01325{bottom:222.045000px;}
.y203_c01325{bottom:222.915000px;}
.y204_c01325{bottom:224.640000px;}
.y1f3_c01325{bottom:225.510000px;}
.y1f8_c01325{bottom:226.365000px;}
.y1f4_c01325{bottom:227.235000px;}
.y1f7_c01325{bottom:228.090000px;}
.y1f6_c01325{bottom:228.960000px;}
.y1f9_c01325{bottom:231.555000px;}
.y1f5_c01325{bottom:232.410000px;}
.y1fa_c01325{bottom:235.005000px;}
.y1ec_c01325{bottom:240.195000px;}
.y1ed_c01325{bottom:241.920000px;}
.y1f0_c01325{bottom:244.515000px;}
.y1ee_c01325{bottom:246.240000px;}
.y1ef_c01325{bottom:247.965000px;}
.y1eb_c01325{bottom:249.690000px;}
.y1f1_c01325{bottom:252.285000px;}
.y1f2_c01325{bottom:264.390000px;}
.y1e2_c01325{bottom:266.970000px;}
.y1e3_c01325{bottom:267.840000px;}
.y1e7_c01325{bottom:268.710000px;}
.y1e9_c01325{bottom:270.435000px;}
.y1e8_c01325{bottom:271.290000px;}
.y1e4_c01325{bottom:272.160000px;}
.y1e5_c01325{bottom:273.030000px;}
.y1e6_c01325{bottom:273.885000px;}
.y1ea_c01325{bottom:277.350000px;}
.y1da_c01325{bottom:285.120000px;}
.y1dc_c01325{bottom:286.845000px;}
.y1e0_c01325{bottom:288.570000px;}
.y1db_c01325{bottom:289.440000px;}
.y1df_c01325{bottom:290.310000px;}
.y1de_c01325{bottom:293.760000px;}
.y1e1_c01325{bottom:294.630000px;}
.y1dd_c01325{bottom:296.355000px;}
.y1d2_c01325{bottom:302.400000px;}
.y1d0_c01325{bottom:303.270000px;}
.y1d4_c01325{bottom:304.125000px;}
.y1d1_c01325{bottom:305.850000px;}
.y1cf_c01325{bottom:306.720000px;}
.y1d8_c01325{bottom:307.590000px;}
.y1d7_c01325{bottom:308.445000px;}
.y1d9_c01325{bottom:309.315000px;}
.y1d5_c01325{bottom:310.170000px;}
.y1d3_c01325{bottom:311.910000px;}
.y1d6_c01325{bottom:312.765000px;}
.y1ca_c01325{bottom:327.450000px;}
.y1c6_c01325{bottom:329.190000px;}
.y1cc_c01325{bottom:330.045000px;}
.y1cd_c01325{bottom:330.915000px;}
.y1c8_c01325{bottom:331.770000px;}
.y1cb_c01325{bottom:332.640000px;}
.y1c7_c01325{bottom:333.510000px;}
.y1c9_c01325{bottom:334.365000px;}
.y1ce_c01325{bottom:336.090000px;}
.y1bd_c01325{bottom:347.325000px;}
.y1c1_c01325{bottom:348.195000px;}
.y1c2_c01325{bottom:350.790000px;}
.y1bc_c01325{bottom:351.645000px;}
.y1c0_c01325{bottom:352.515000px;}
.y1be_c01325{bottom:354.240000px;}
.y1c4_c01325{bottom:355.110000px;}
.y1c3_c01325{bottom:357.690000px;}
.y1c5_c01325{bottom:362.880000px;}
.y1bf_c01325{bottom:364.605000px;}
.y1b6_c01325{bottom:367.200000px;}
.y1ba_c01325{bottom:370.650000px;}
.y1b7_c01325{bottom:371.520000px;}
.y1b9_c01325{bottom:372.390000px;}
.y1b8_c01325{bottom:374.115000px;}
.y1bb_c01325{bottom:375.840000px;}
.y1ad_c01325{bottom:387.075000px;}
.y1b0_c01325{bottom:387.930000px;}
.y1ae_c01325{bottom:389.670000px;}
.y1b3_c01325{bottom:390.525000px;}
.y1b1_c01325{bottom:391.395000px;}
.y1b4_c01325{bottom:392.250000px;}
.y1af_c01325{bottom:393.120000px;}
.y1b5_c01325{bottom:394.845000px;}
.y1b2_c01325{bottom:403.485000px;}
.y1a9_c01325{bottom:407.805000px;}
.y1ac_c01325{bottom:408.675000px;}
.y1a8_c01325{bottom:410.400000px;}
.y1ab_c01325{bottom:411.270000px;}
.y1a7_c01325{bottom:412.125000px;}
.y1aa_c01325{bottom:414.720000px;}
.y1a6_c01325{bottom:415.590000px;}
.y1a2_c01325{bottom:418.170000px;}
.y19e_c01325{bottom:419.040000px;}
.y19f_c01325{bottom:419.910000px;}
.y1a1_c01325{bottom:422.490000px;}
.y1a3_c01325{bottom:423.360000px;}
.y1a5_c01325{bottom:424.230000px;}
.y1a4_c01325{bottom:425.085000px;}
.y1a0_c01325{bottom:425.955000px;}
.y196_c01325{bottom:427.680000px;}
.y197_c01325{bottom:429.405000px;}
.y19b_c01325{bottom:432.000000px;}
.y199_c01325{bottom:432.870000px;}
.y198_c01325{bottom:433.725000px;}
.y19c_c01325{bottom:434.595000px;}
.y19d_c01325{bottom:436.320000px;}
.y19a_c01325{bottom:437.190000px;}
.y195_c01325{bottom:443.235000px;}
.y18e_c01325{bottom:449.280000px;}
.y18f_c01325{bottom:450.150000px;}
.y193_c01325{bottom:451.005000px;}
.y194_c01325{bottom:452.730000px;}
.y18d_c01325{bottom:453.600000px;}
.y192_c01325{bottom:455.325000px;}
.y191_c01325{bottom:456.195000px;}
.y190_c01325{bottom:457.050000px;}
.y188_c01325{bottom:470.880000px;}
.y18a_c01325{bottom:471.750000px;}
.y18c_c01325{bottom:473.475000px;}
.y189_c01325{bottom:476.070000px;}
.y18b_c01325{bottom:478.650000px;}
.y187_c01325{bottom:482.970000px;}
.y181_c01325{bottom:488.160000px;}
.y184_c01325{bottom:489.885000px;}
.y182_c01325{bottom:490.755000px;}
.y185_c01325{bottom:492.480000px;}
.y180_c01325{bottom:494.205000px;}
.y186_c01325{bottom:497.670000px;}
.y183_c01325{bottom:503.715000px;}
.y17c_c01325{bottom:505.440000px;}
.y17d_c01325{bottom:506.310000px;}
.y17e_c01325{bottom:507.165000px;}
.y17f_c01325{bottom:511.485000px;}
.y17b_c01325{bottom:523.590000px;}
.y175_c01325{bottom:528.765000px;}
.y17a_c01325{bottom:531.360000px;}
.y177_c01325{bottom:533.085000px;}
.y174_c01325{bottom:533.955000px;}
.y176_c01325{bottom:534.810000px;}
.y178_c01325{bottom:535.680000px;}
.y179_c01325{bottom:543.450000px;}
.y171_c01325{bottom:549.510000px;}
.y172_c01325{bottom:550.365000px;}
.y170_c01325{bottom:551.235000px;}
.y16a_c01325{bottom:552.960000px;}
.y173_c01325{bottom:553.830000px;}
.y16b_c01325{bottom:554.685000px;}
.y16d_c01325{bottom:556.410000px;}
.y16e_c01325{bottom:557.280000px;}
.y16f_c01325{bottom:560.730000px;}
.y169_c01325{bottom:564.195000px;}
.y168_c01325{bottom:565.050000px;}
.y16c_c01325{bottom:565.920000px;}
.y161_c01325{bottom:566.790000px;}
.y162_c01325{bottom:567.645000px;}
.y164_c01325{bottom:569.370000px;}
.y165_c01325{bottom:571.965000px;}
.y167_c01325{bottom:572.835000px;}
.y166_c01325{bottom:575.430000px;}
.y163_c01325{bottom:576.285000px;}
.y160_c01325{bottom:578.880000px;}
.y15c_c01325{bottom:590.115000px;}
.y15e_c01325{bottom:590.970000px;}
.y15a_c01325{bottom:592.710000px;}
.y15b_c01325{bottom:593.565000px;}
.y15d_c01325{bottom:594.435000px;}
.y21b_c01325{bottom:601.350000px;}
.y15f_c01325{bottom:603.930000px;}
.y151_c01325{bottom:608.250000px;}
.y152_c01325{bottom:609.990000px;}
.y156_c01325{bottom:612.570000px;}
.y155_c01325{bottom:613.440000px;}
.y159_c01325{bottom:614.310000px;}
.y153_c01325{bottom:615.165000px;}
.y154_c01325{bottom:616.035000px;}
.y157_c01325{bottom:617.760000px;}
.y158_c01325{bottom:619.485000px;}
.y14a_c01325{bottom:629.850000px;}
.y149_c01325{bottom:631.590000px;}
.y148_c01325{bottom:632.445000px;}
.y14c_c01325{bottom:635.040000px;}
.y14e_c01325{bottom:635.910000px;}
.y14b_c01325{bottom:636.765000px;}
.y14d_c01325{bottom:638.490000px;}
.y14f_c01325{bottom:639.360000px;}
.y150_c01325{bottom:640.230000px;}
.y142_c01325{bottom:650.595000px;}
.y140_c01325{bottom:651.450000px;}
.y141_c01325{bottom:652.320000px;}
.y143_c01325{bottom:653.190000px;}
.y13f_c01325{bottom:654.045000px;}
.y145_c01325{bottom:655.770000px;}
.y144_c01325{bottom:656.640000px;}
.y146_c01325{bottom:657.510000px;}
.y147_c01325{bottom:659.235000px;}
.y13a_c01325{bottom:670.470000px;}
.y13b_c01325{bottom:672.195000px;}
.y13e_c01325{bottom:673.050000px;}
.y13c_c01325{bottom:674.790000px;}
.y13d_c01325{bottom:679.110000px;}
.y133_c01325{bottom:682.560000px;}
.y134_c01325{bottom:684.285000px;}
.y136_c01325{bottom:685.155000px;}
.y137_c01325{bottom:686.010000px;}
.y135_c01325{bottom:686.880000px;}
.y138_c01325{bottom:687.750000px;}
.y139_c01325{bottom:688.605000px;}
.y127_c01325{bottom:707.610000px;}
.y128_c01325{bottom:711.075000px;}
.y129_c01325{bottom:711.930000px;}
.y12b_c01325{bottom:712.800000px;}
.y12e_c01325{bottom:713.670000px;}
.y12f_c01325{bottom:714.525000px;}
.y132_c01325{bottom:715.395000px;}
.y12a_c01325{bottom:716.250000px;}
.y12c_c01325{bottom:717.120000px;}
.y12d_c01325{bottom:717.990000px;}
.y130_c01325{bottom:719.715000px;}
.y131_c01325{bottom:722.310000px;}
.y120_c01325{bottom:730.950000px;}
.y11f_c01325{bottom:732.675000px;}
.y122_c01325{bottom:733.530000px;}
.y124_c01325{bottom:734.400000px;}
.y125_c01325{bottom:736.125000px;}
.y121_c01325{bottom:737.850000px;}
.y126_c01325{bottom:738.720000px;}
.y123_c01325{bottom:739.590000px;}
.y118_c01325{bottom:749.955000px;}
.y117_c01325{bottom:752.550000px;}
.y119_c01325{bottom:753.405000px;}
.y11a_c01325{bottom:754.275000px;}
.y11e_c01325{bottom:755.130000px;}
.y11d_c01325{bottom:756.870000px;}
.y11c_c01325{bottom:759.450000px;}
.y11b_c01325{bottom:762.915000px;}
.y10c_c01325{bottom:769.830000px;}
.y10f_c01325{bottom:772.410000px;}
.y111_c01325{bottom:773.280000px;}
.y114_c01325{bottom:774.150000px;}
.y10d_c01325{bottom:775.005000px;}
.y116_c01325{bottom:775.875000px;}
.y10e_c01325{bottom:776.730000px;}
.y110_c01325{bottom:777.600000px;}
.y113_c01325{bottom:778.470000px;}
.y112_c01325{bottom:779.325000px;}
.y115_c01325{bottom:781.050000px;}
.y104_c01325{bottom:791.430000px;}
.y105_c01325{bottom:792.285000px;}
.y10a_c01325{bottom:793.155000px;}
.y103_c01325{bottom:794.010000px;}
.y109_c01325{bottom:795.750000px;}
.y106_c01325{bottom:796.605000px;}
.y107_c01325{bottom:797.475000px;}
.y10b_c01325{bottom:800.070000px;}
.y108_c01325{bottom:800.925000px;}
.yfc_c01325{bottom:810.435000px;}
.yfb_c01325{bottom:812.160000px;}
.yfe_c01325{bottom:813.030000px;}
.yfd_c01325{bottom:814.755000px;}
.y102_c01325{bottom:815.610000px;}
.yff_c01325{bottom:816.480000px;}
.y100_c01325{bottom:819.075000px;}
.y101_c01325{bottom:819.930000px;}
.yf6_c01325{bottom:831.165000px;}
.yf5_c01325{bottom:832.890000px;}
.yf8_c01325{bottom:833.760000px;}
.yf4_c01325{bottom:834.630000px;}
.yf7_c01325{bottom:836.355000px;}
.yf9_c01325{bottom:837.210000px;}
.yfa_c01325{bottom:838.950000px;}
.yf2_c01325{bottom:839.805000px;}
.yed_c01325{bottom:840.675000px;}
.yf1_c01325{bottom:843.270000px;}
.yee_c01325{bottom:844.125000px;}
.yef_c01325{bottom:845.850000px;}
.yf0_c01325{bottom:847.590000px;}
.yf3_c01325{bottom:849.315000px;}
.ye3_c01325{bottom:850.170000px;}
.ye7_c01325{bottom:851.040000px;}
.ye8_c01325{bottom:851.910000px;}
.ye1_c01325{bottom:854.490000px;}
.ye4_c01325{bottom:855.360000px;}
.ye5_c01325{bottom:856.230000px;}
.ye6_c01325{bottom:857.085000px;}
.yec_c01325{bottom:857.955000px;}
.ye9_c01325{bottom:858.810000px;}
.yea_c01325{bottom:859.680000px;}
.yeb_c01325{bottom:861.405000px;}
.ye2_c01325{bottom:862.275000px;}
.yd9_c01325{bottom:864.000000px;}
.ydc_c01325{bottom:871.770000px;}
.ydb_c01325{bottom:872.640000px;}
.ydd_c01325{bottom:874.365000px;}
.yda_c01325{bottom:875.235000px;}
.yde_c01325{bottom:876.960000px;}
.ydf_c01325{bottom:881.280000px;}
.ye0_c01325{bottom:882.150000px;}
.y21a_c01325{bottom:889.920000px;}
.yd3_c01325{bottom:890.790000px;}
.yd4_c01325{bottom:893.370000px;}
.yd2_c01325{bottom:894.240000px;}
.yd6_c01325{bottom:895.110000px;}
.yd7_c01325{bottom:895.965000px;}
.yd8_c01325{bottom:897.690000px;}
.yd5_c01325{bottom:900.285000px;}
.y219_c01325{bottom:903.750000px;}
.yce_c01325{bottom:911.520000px;}
.ycf_c01325{bottom:913.245000px;}
.ycc_c01325{bottom:914.115000px;}
.ycd_c01325{bottom:914.970000px;}
.yd1_c01325{bottom:917.565000px;}
.yd0_c01325{bottom:919.290000px;}
.yc7_c01325{bottom:931.395000px;}
.yc6_c01325{bottom:935.715000px;}
.yc8_c01325{bottom:937.440000px;}
.yc9_c01325{bottom:940.035000px;}
.ycb_c01325{bottom:942.630000px;}
.yca_c01325{bottom:943.485000px;}
.ybd_c01325{bottom:951.270000px;}
.yc1_c01325{bottom:952.125000px;}
.yc5_c01325{bottom:953.850000px;}
.ybe_c01325{bottom:954.720000px;}
.ybf_c01325{bottom:956.445000px;}
.yc0_c01325{bottom:958.170000px;}
.yc4_c01325{bottom:960.765000px;}
.yc2_c01325{bottom:962.490000px;}
.yb6_c01325{bottom:972.870000px;}
.yc3_c01325{bottom:973.725000px;}
.yb9_c01325{bottom:975.450000px;}
.ybb_c01325{bottom:976.320000px;}
.yb7_c01325{bottom:978.045000px;}
.yb8_c01325{bottom:978.915000px;}
.yba_c01325{bottom:980.640000px;}
.ybc_c01325{bottom:983.235000px;}
.yb5_c01325{bottom:988.410000px;}
.yad_c01325{bottom:991.005000px;}
.yae_c01325{bottom:994.470000px;}
.yb1_c01325{bottom:995.325000px;}
.yb2_c01325{bottom:997.050000px;}
.yac_c01325{bottom:998.790000px;}
.yb0_c01325{bottom:999.645000px;}
.yaf_c01325{bottom:1000.515000px;}
.yb3_c01325{bottom:1003.110000px;}
.yb4_c01325{bottom:1003.965000px;}
.y218_c01325{bottom:1007.430000px;}
.ya1_c01325{bottom:1010.880000px;}
.y217_c01325{bottom:1011.750000px;}
.ya2_c01325{bottom:1012.605000px;}
.ya3_c01325{bottom:1015.200000px;}
.ya6_c01325{bottom:1016.925000px;}
.ya9_c01325{bottom:1017.795000px;}
.ya4_c01325{bottom:1018.650000px;}
.ya5_c01325{bottom:1019.520000px;}
.ya7_c01325{bottom:1020.390000px;}
.ya8_c01325{bottom:1021.245000px;}
.yaa_c01325{bottom:1023.840000px;}
.y216_c01325{bottom:1024.710000px;}
.yab_c01325{bottom:1026.435000px;}
.y9b_c01325{bottom:1035.075000px;}
.y9c_c01325{bottom:1037.670000px;}
.y9f_c01325{bottom:1038.525000px;}
.y9d_c01325{bottom:1039.395000px;}
.y9e_c01325{bottom:1040.250000px;}
.ya0_c01325{bottom:1044.570000px;}
.y93_c01325{bottom:1050.630000px;}
.y97_c01325{bottom:1051.485000px;}
.y92_c01325{bottom:1052.355000px;}
.y94_c01325{bottom:1054.080000px;}
.y99_c01325{bottom:1054.950000px;}
.y96_c01325{bottom:1057.530000px;}
.y95_c01325{bottom:1058.400000px;}
.y98_c01325{bottom:1059.270000px;}
.y9a_c01325{bottom:1060.995000px;}
.y8c_c01325{bottom:1073.955000px;}
.y8d_c01325{bottom:1075.680000px;}
.y8b_c01325{bottom:1076.550000px;}
.y8f_c01325{bottom:1077.405000px;}
.y90_c01325{bottom:1080.000000px;}
.y8e_c01325{bottom:1080.870000px;}
.y91_c01325{bottom:1084.320000px;}
.y8a_c01325{bottom:1089.510000px;}
.y81_c01325{bottom:1092.960000px;}
.y82_c01325{bottom:1093.830000px;}
.y84_c01325{bottom:1095.555000px;}
.y80_c01325{bottom:1096.410000px;}
.y87_c01325{bottom:1097.280000px;}
.y85_c01325{bottom:1098.150000px;}
.y83_c01325{bottom:1100.730000px;}
.y86_c01325{bottom:1104.195000px;}
.y88_c01325{bottom:1105.050000px;}
.y89_c01325{bottom:1107.645000px;}
.y7f_c01325{bottom:1108.515000px;}
.y78_c01325{bottom:1114.560000px;}
.y76_c01325{bottom:1116.285000px;}
.y75_c01325{bottom:1117.155000px;}
.y7b_c01325{bottom:1118.010000px;}
.y77_c01325{bottom:1119.750000px;}
.y79_c01325{bottom:1121.475000px;}
.y7a_c01325{bottom:1122.330000px;}
.y7d_c01325{bottom:1123.200000px;}
.y7c_c01325{bottom:1124.070000px;}
.y7e_c01325{bottom:1124.925000px;}
.y6b_c01325{bottom:1134.435000px;}
.y6d_c01325{bottom:1135.290000px;}
.y70_c01325{bottom:1137.030000px;}
.y6a_c01325{bottom:1137.885000px;}
.y6c_c01325{bottom:1139.610000px;}
.y6e_c01325{bottom:1140.480000px;}
.y6f_c01325{bottom:1141.350000px;}
.y71_c01325{bottom:1143.075000px;}
.y72_c01325{bottom:1143.930000px;}
.y73_c01325{bottom:1144.800000px;}
.y74_c01325{bottom:1145.670000px;}
.y63_c01325{bottom:1155.165000px;}
.y65_c01325{bottom:1156.035000px;}
.y62_c01325{bottom:1156.890000px;}
.y64_c01325{bottom:1160.355000px;}
.y68_c01325{bottom:1162.080000px;}
.y66_c01325{bottom:1162.950000px;}
.y67_c01325{bottom:1163.805000px;}
.y69_c01325{bottom:1165.530000px;}
.y59_c01325{bottom:1172.445000px;}
.y5c_c01325{bottom:1176.765000px;}
.y5e_c01325{bottom:1177.635000px;}
.y5a_c01325{bottom:1178.490000px;}
.y5b_c01325{bottom:1181.085000px;}
.y5d_c01325{bottom:1183.680000px;}
.y5f_c01325{bottom:1184.550000px;}
.y60_c01325{bottom:1185.405000px;}
.y61_c01325{bottom:1188.000000px;}
.y52_c01325{bottom:1195.770000px;}
.y55_c01325{bottom:1196.640000px;}
.y51_c01325{bottom:1197.510000px;}
.y54_c01325{bottom:1198.365000px;}
.y58_c01325{bottom:1199.235000px;}
.y53_c01325{bottom:1201.830000px;}
.y57_c01325{bottom:1203.555000px;}
.y56_c01325{bottom:1204.410000px;}
.y50_c01325{bottom:1207.875000px;}
.y47_c01325{bottom:1216.515000px;}
.y4c_c01325{bottom:1217.370000px;}
.y49_c01325{bottom:1218.240000px;}
.y4b_c01325{bottom:1219.965000px;}
.y4f_c01325{bottom:1220.835000px;}
.y4e_c01325{bottom:1221.690000px;}
.y48_c01325{bottom:1222.560000px;}
.y4a_c01325{bottom:1223.430000px;}
.y4d_c01325{bottom:1225.155000px;}
.y3c_c01325{bottom:1233.795000px;}
.y3d_c01325{bottom:1238.115000px;}
.y40_c01325{bottom:1238.970000px;}
.y44_c01325{bottom:1239.840000px;}
.y46_c01325{bottom:1240.710000px;}
.y3e_c01325{bottom:1241.565000px;}
.y3f_c01325{bottom:1242.435000px;}
.y41_c01325{bottom:1244.160000px;}
.y42_c01325{bottom:1245.030000px;}
.y45_c01325{bottom:1245.885000px;}
.y43_c01325{bottom:1246.755000px;}
.y38_c01325{bottom:1257.120000px;}
.y34_c01325{bottom:1257.990000px;}
.y35_c01325{bottom:1259.715000px;}
.y36_c01325{bottom:1261.440000px;}
.y37_c01325{bottom:1262.310000px;}
.y3b_c01325{bottom:1263.165000px;}
.y39_c01325{bottom:1264.890000px;}
.y3a_c01325{bottom:1265.760000px;}
.y215_c01325{bottom:1273.530000px;}
.y2b_c01325{bottom:1278.720000px;}
.y2c_c01325{bottom:1279.590000px;}
.y31_c01325{bottom:1280.445000px;}
.y33_c01325{bottom:1281.315000px;}
.y4_c01325{bottom:1282.170000px;}
.y2d_c01325{bottom:1283.040000px;}
.y2e_c01325{bottom:1283.910000px;}
.y32_c01325{bottom:1285.635000px;}
.y2f_c01325{bottom:1286.490000px;}
.y30_c01325{bottom:1287.360000px;}
.y21_c01325{bottom:1292.550000px;}
.y23_c01325{bottom:1294.275000px;}
.y29_c01325{bottom:1296.000000px;}
.y28_c01325{bottom:1296.870000px;}
.y2a_c01325{bottom:1297.725000px;}
.y27_c01325{bottom:1298.595000px;}
.y24_c01325{bottom:1299.450000px;}
.y22_c01325{bottom:1301.190000px;}
.y3_c01325{bottom:1302.045000px;}
.y26_c01325{bottom:1306.365000px;}
.y25_c01325{bottom:1309.830000px;}
.y1_c01325{bottom:1315.875000px;}
.y1c_c01325{bottom:1318.470000px;}
.y1d_c01325{bottom:1320.195000px;}
.y2_c01325{bottom:1321.050000px;}
.y1f_c01325{bottom:1322.790000px;}
.y20_c01325{bottom:1324.515000px;}
.y1e_c01325{bottom:1326.240000px;}
.y12_c01325{bottom:1336.605000px;}
.y13_c01325{bottom:1338.330000px;}
.y15_c01325{bottom:1339.200000px;}
.y14_c01325{bottom:1340.070000px;}
.y18_c01325{bottom:1340.925000px;}
.y1a_c01325{bottom:1341.795000px;}
.y19_c01325{bottom:1342.650000px;}
.y16_c01325{bottom:1343.520000px;}
.y17_c01325{bottom:1346.115000px;}
.y11_c01325{bottom:1346.970000px;}
.y1b_c01325{bottom:1347.840000px;}
.yc_c01325{bottom:1365.990000px;}
.y10_c01325{bottom:1366.845000px;}
.yb_c01325{bottom:1369.440000px;}
.yd_c01325{bottom:1370.310000px;}
.ye_c01325{bottom:1371.165000px;}
.yf_c01325{bottom:1372.890000px;}
.y7_c01325{bottom:1394.490000px;}
.ya_c01325{bottom:1396.230000px;}
.y9_c01325{bottom:1398.810000px;}
.y8_c01325{bottom:1417.830000px;}
.y6_c01325{bottom:1435.110000px;}
.y214_c01325{bottom:1442.880000px;}
.y5_c01325{bottom:1461.885000px;}
.hd_c01325{height:3.110063px;}
.hc_c01325{height:5.399414px;}
.h6_c01325{height:6.209326px;}
.h24_c01325{height:6.530063px;}
.h27_c01325{height:6.590063px;}
.h20_c01325{height:9.340986px;}
.h28_c01325{height:9.689326px;}
.h1a_c01325{height:12.418652px;}
.h1f_c01325{height:15.550313px;}
.h7_c01325{height:18.681973px;}
.h23_c01325{height:21.759639px;}
.h1b_c01325{height:24.891299px;}
.h1e_c01325{height:27.968965px;}
.h4_c01325{height:31.100625px;}
.h5_c01325{height:34.232285px;}
.ha_c01325{height:37.309951px;}
.h1d_c01325{height:40.441611px;}
.h14_c01325{height:43.519277px;}
.h1c_c01325{height:46.650937px;}
.h17_c01325{height:49.782598px;}
.h3_c01325{height:52.860264px;}
.hf_c01325{height:55.991924px;}
.h22_c01325{height:56.340264px;}
.h11_c01325{height:59.069590px;}
.he_c01325{height:62.201250px;}
.h18_c01325{height:65.332910px;}
.h12_c01325{height:68.410576px;}
.h15_c01325{height:71.542236px;}
.h25_c01325{height:73.271924px;}
.h26_c01325{height:74.310937px;}
.h2_c01325{height:74.619902px;}
.h9_c01325{height:77.751563px;}
.h16_c01325{height:80.883223px;}
.h21_c01325{height:83.960889px;}
.h13_c01325{height:87.092549px;}
.hb_c01325{height:90.170215px;}
.h19_c01325{height:93.301875px;}
.h10_c01325{height:96.433535px;}
.h29_c01325{height:99.511201px;}
.h8_c01325{height:251.936660px;}
.h0_c01325{height:1509.405000px;}
.h1_c01325{height:1509.750000px;}
.w0_c01325{width:1079.130000px;}
.w1_c01325{width:1079.250000px;}
.x0_c01325{left:0.000000px;}
.x12d_c01325{left:4.320000px;}
.x12b_c01325{left:6.045000px;}
.x12e_c01325{left:12.960000px;}
.x1_c01325{left:15.555000px;}
.x12c_c01325{left:19.875000px;}
.xb8_c01325{left:159.840000px;}
.xaa_c01325{left:165.030000px;}
.xf4_c01325{left:166.755000px;}
.xf5_c01325{left:174.525000px;}
.xf8_c01325{left:176.250000px;}
.x128_c01325{left:180.570000px;}
.xab_c01325{left:183.165000px;}
.x78_c01325{left:188.355000px;}
.xf6_c01325{left:191.805000px;}
.xf_c01325{left:196.995000px;}
.x51_c01325{left:200.445000px;}
.x20_c01325{left:203.040000px;}
.x10_c01325{left:204.765000px;}
.x2b_c01325{left:206.490000px;}
.x42_c01325{left:208.230000px;}
.xaf_c01325{left:210.810000px;}
.xc9_c01325{left:212.550000px;}
.xde_c01325{left:215.130000px;}
.x7f_c01325{left:217.725000px;}
.xf9_c01325{left:220.320000px;}
.x63_c01325{left:222.045000px;}
.xac_c01325{left:224.640000px;}
.x112_c01325{left:227.235000px;}
.x4b_c01325{left:228.960000px;}
.xd7_c01325{left:230.685000px;}
.xb2_c01325{left:232.410000px;}
.x64_c01325{left:235.005000px;}
.xca_c01325{left:236.730000px;}
.xff_c01325{left:238.470000px;}
.xa4_c01325{left:240.195000px;}
.x117_c01325{left:242.790000px;}
.x8b_c01325{left:244.515000px;}
.x6f_c01325{left:246.240000px;}
.x52_c01325{left:248.835000px;}
.xdf_c01325{left:251.430000px;}
.x43_c01325{left:253.155000px;}
.x38_c01325{left:254.880000px;}
.x65_c01325{left:257.475000px;}
.x58_c01325{left:259.200000px;}
.x114_c01325{left:262.650000px;}
.x9d_c01325{left:266.115000px;}
.x79_c01325{left:267.840000px;}
.x39_c01325{left:271.290000px;}
.x8_c01325{left:274.755000px;}
.x11_c01325{left:276.480000px;}
.x21_c01325{left:278.205000px;}
.x11c_c01325{left:279.930000px;}
.x1a_c01325{left:283.395000px;}
.x125_c01325{left:285.120000px;}
.xb3_c01325{left:286.845000px;}
.x5e_c01325{left:289.440000px;}
.x53_c01325{left:291.165000px;}
.x3a_c01325{left:293.760000px;}
.x2c_c01325{left:295.485000px;}
.x70_c01325{left:298.080000px;}
.xed_c01325{left:300.675000px;}
.x9a_c01325{left:304.125000px;}
.x22_c01325{left:307.590000px;}
.x54_c01325{left:309.315000px;}
.x80_c01325{left:312.765000px;}
.x66_c01325{left:315.360000px;}
.x44_c01325{left:317.085000px;}
.xc6_c01325{left:319.680000px;}
.x9_c01325{left:322.275000px;}
.x7a_c01325{left:324.000000px;}
.xe9_c01325{left:326.595000px;}
.x12_c01325{left:328.320000px;}
.xe0_c01325{left:330.915000px;}
.xa_c01325{left:334.365000px;}
.x85_c01325{left:336.090000px;}
.xcb_c01325{left:337.830000px;}
.xc2_c01325{left:339.555000px;}
.x122_c01325{left:343.005000px;}
.x8e_c01325{left:344.730000px;}
.xcc_c01325{left:346.470000px;}
.x2d_c01325{left:348.195000px;}
.xbe_c01325{left:349.920000px;}
.xb9_c01325{left:351.645000px;}
.x71_c01325{left:353.370000px;}
.x100_c01325{left:355.110000px;}
.x55_c01325{left:357.690000px;}
.x9e_c01325{left:359.430000px;}
.xd8_c01325{left:362.010000px;}
.xc3_c01325{left:364.605000px;}
.x67_c01325{left:366.330000px;}
.x103_c01325{left:369.795000px;}
.x9b_c01325{left:372.390000px;}
.x23_c01325{left:374.115000px;}
.xb_c01325{left:375.840000px;}
.x4c_c01325{left:378.435000px;}
.xf1_c01325{left:380.160000px;}
.x2e_c01325{left:382.755000px;}
.x3b_c01325{left:384.480000px;}
.x11d_c01325{left:386.205000px;}
.xe5_c01325{left:387.930000px;}
.x68_c01325{left:389.670000px;}
.x96_c01325{left:391.395000px;}
.xfa_c01325{left:393.990000px;}
.x101_c01325{left:395.715000px;}
.x72_c01325{left:397.440000px;}
.xad_c01325{left:399.165000px;}
.x13_c01325{left:401.760000px;}
.x1b_c01325{left:404.355000px;}
.x2f_c01325{left:406.080000px;}
.x56_c01325{left:410.400000px;}
.xc_c01325{left:413.850000px;}
.x110_c01325{left:415.590000px;}
.xd5_c01325{left:417.315000px;}
.x106_c01325{left:419.910000px;}
.x59_c01325{left:422.490000px;}
.x8f_c01325{left:425.955000px;}
.x73_c01325{left:427.680000px;}
.xd0_c01325{left:431.130000px;}
.x8c_c01325{left:432.870000px;}
.x81_c01325{left:438.045000px;}
.x24_c01325{left:440.640000px;}
.xc4_c01325{left:444.960000px;}
.x45_c01325{left:446.685000px;}
.xd1_c01325{left:449.280000px;}
.x30_c01325{left:451.875000px;}
.xba_c01325{left:454.470000px;}
.xfb_c01325{left:456.195000px;}
.x4d_c01325{left:459.645000px;}
.x104_c01325{left:461.370000px;}
.x9c_c01325{left:463.110000px;}
.xb4_c01325{left:464.835000px;}
.xbf_c01325{left:467.430000px;}
.x57_c01325{left:470.010000px;}
.x14_c01325{left:471.750000px;}
.x107_c01325{left:473.475000px;}
.x5f_c01325{left:477.795000px;}
.x90_c01325{left:479.520000px;}
.x5a_c01325{left:482.115000px;}
.x10f_c01325{left:483.840000px;}
.x86_c01325{left:487.290000px;}
.xcd_c01325{left:489.030000px;}
.xd6_c01325{left:492.480150px;}
.x123_c01325{left:495.930000px;}
.xc5_c01325{left:497.670000px;}
.x11e_c01325{left:500.250000px;}
.xd2_c01325{left:501.990000px;}
.x7b_c01325{left:504.570000px;}
.x9f_c01325{left:506.310000px;}
.xfc_c01325{left:510.630000px;}
.xce_c01325{left:513.210000px;}
.x87_c01325{left:514.950000px;}
.x15_c01325{left:518.400000px;}
.xa0_c01325{left:520.995000px;}
.xd3_c01325{left:525.315000px;}
.x25_c01325{left:527.910000px;}
.xd_c01325{left:529.635000px;}
.x91_c01325{left:533.085000px;}
.x16_c01325{left:535.680000px;}
.x88_c01325{left:537.405000px;}
.xa1_c01325{left:540.000000px;}
.xbb_c01325{left:541.725000px;}
.xe6_c01325{left:544.320000px;}
.xea_c01325{left:546.045000px;}
.xee_c01325{left:547.770000px;}
.xfd_c01325{left:550.365000px;}
.x108_c01325{left:552.090000px;}
.xa2_c01325{left:553.830000px;}
.x118_c01325{left:555.555000px;}
.x26_c01325{left:557.280000px;}
.xe1_c01325{left:559.005000px;}
.x60_c01325{left:562.470000px;}
.x4e_c01325{left:565.920000px;}
.x3c_c01325{left:571.110000px;}
.x74_c01325{left:572.835000px;}
.x109_c01325{left:576.285000px;}
.x82_c01325{left:579.750000px;}
.x46_c01325{left:581.475000px;}
.xb0_c01325{left:584.925000px;}
.x3d_c01325{left:587.520000px;}
.xd9_c01325{left:589.245000px;}
.xeb_c01325{left:591.840000px;}
.x97_c01325{left:593.565000px;}
.x17_c01325{left:595.290000px;}
.xfe_c01325{left:597.030000px;}
.xc0_c01325{left:598.755000px;}
.x126_c01325{left:603.075000px;}
.x69_c01325{left:604.800000px;}
.x92_c01325{left:607.395000px;}
.xb5_c01325{left:609.990000px;}
.xe7_c01325{left:611.715000px;}
.x124_c01325{left:614.310000px;}
.x31_c01325{left:616.035000px;}
.x27_c01325{left:618.630000px;}
.xa5_c01325{left:622.080000px;}
.x6a_c01325{left:624.675000px;}
.xae_c01325{left:626.400000px;}
.xbc_c01325{left:628.995000px;}
.x11b_c01325{left:630.720000px;}
.xa6_c01325{left:632.445000px;}
.x1c_c01325{left:634.170000px;}
.x119_c01325{left:641.085000px;}
.x47_c01325{left:643.680000px;}
.x6b_c01325{left:645.405000px;}
.x6_c01325{left:648.870000px;}
.x32_c01325{left:654.915000px;}
.xe2_c01325{left:656.640000px;}
.x2_c01325{left:658.365000px;}
.xf7_c01325{left:660.090000px;}
.x75_c01325{left:661.830000px;}
.xf2_c01325{left:663.555000px;}
.x4f_c01325{left:665.280000px;}
.xda_c01325{left:667.005000px;}
.x28_c01325{left:668.730000px;}
.x3e_c01325{left:670.470000px;}
.x3_c01325{left:673.920000px;}
.xb1_c01325{left:676.515000px;}
.x93_c01325{left:678.240000px;}
.xec_c01325{left:681.690000px;}
.x129_c01325{left:684.285000px;}
.x98_c01325{left:687.750000px;}
.x33_c01325{left:689.475000px;}
.x7_c01325{left:692.925000px;}
.x4_c01325{left:695.520000px;}
.x7c_c01325{left:697.245000px;}
.xc1_c01325{left:698.970000px;}
.xa3_c01325{left:700.710000px;}
.x6c_c01325{left:702.435000px;}
.x11a_c01325{left:706.755000px;}
.x5_c01325{left:708.480000px;}
.x10c_c01325{left:711.075000px;}
.x48_c01325{left:712.800000px;}
.x5b_c01325{left:714.525000px;}
.x61_c01325{left:717.120000px;}
.xb6_c01325{left:718.845000px;}
.xcf_c01325{left:720.570000px;}
.x105_c01325{left:722.310000px;}
.x34_c01325{left:724.890000px;}
.x102_c01325{left:727.485000px;}
.x18_c01325{left:729.210000px;}
.x6d_c01325{left:733.530000px;}
.xc7_c01325{left:736.125000px;}
.xa7_c01325{left:737.850000px;}
.x10a_c01325{left:739.590000px;}
.x3f_c01325{left:742.170000px;}
.x50_c01325{left:746.490000px;}
.x89_c01325{left:748.230000px;}
.x115_c01325{left:751.680000px;}
.x1d_c01325{left:753.405000px;}
.x35_c01325{left:755.130000px;}
.xd4_c01325{left:756.870000px;}
.x62_c01325{left:759.450000px;}
.x76_c01325{left:762.045000px;}
.x49_c01325{left:764.640000px;}
.x116_c01325{left:766.365000px;}
.xc8_c01325{left:768.960000px;}
.x6e_c01325{left:770.685000px;}
.x1e_c01325{left:772.410000px;}
.xbd_c01325{left:775.005000px;}
.x36_c01325{left:776.730000px;}
.x83_c01325{left:778.470000px;}
.x99_c01325{left:780.195000px;}
.x5c_c01325{left:782.790000px;}
.x4a_c01325{left:786.240000px;}
.x10d_c01325{left:788.835000px;}
.xa8_c01325{left:790.560000px;}
.xdb_c01325{left:793.155000px;}
.x40_c01325{left:795.750000px;}
.x7d_c01325{left:797.475000px;}
.x37_c01325{left:799.200000px;}
.x8a_c01325{left:801.795000px;}
.xb7_c01325{left:803.520000px;}
.x19_c01325{left:806.115000px;}
.x10e_c01325{left:807.840000px;}
.xe_c01325{left:810.435000px;}
.x94_c01325{left:813.030000px;}
.x29_c01325{left:814.755000px;}
.x41_c01325{left:816.480000px;}
.x77_c01325{left:819.930000px;}
.xa9_c01325{left:824.250000px;}
.xe8_c01325{left:825.990000px;}
.x10b_c01325{left:827.715000px;}
.xef_c01325{left:829.440000px;}
.x111_c01325{left:832.035000px;}
.x5d_c01325{left:833.760000px;}
.x7e_c01325{left:836.355000px;}
.x8d_c01325{left:838.950000px;}
.xe3_c01325{left:842.400000px;}
.x1f_c01325{left:844.125000px;}
.xf0_c01325{left:845.850000px;}
.x2a_c01325{left:847.590000px;}
.x84_c01325{left:851.040000px;}
.xdc_c01325{left:853.635000px;}
.x113_c01325{left:857.955000px;}
.x127_c01325{left:862.275000px;}
.x95_c01325{left:864.870000px;}
.x120_c01325{left:868.320000px;}
.xe4_c01325{left:870.915000px;}
.xdd_c01325{left:875.235000px;}
.x11f_c01325{left:876.960000px;}
.xf3_c01325{left:878.685000px;}
.x121_c01325{left:890.790000px;}
.x130_c01325{left:908.925000px;}
.x131_c01325{left:917.565000px;}
.x132_c01325{left:923.610000px;}
.x12a_c01325{left:943.485000px;}
.x133_c01325{left:945.210000px;}
.x12f_c01325{left:969.405000px;}
@media print{
.v0_c01325{vertical-align:0.000000pt;}
.v1_c01325{vertical-align:3.093333pt;}
.v2_c01325{vertical-align:15.360000pt;}
.v3_c01325{vertical-align:24.586667pt;}
.ls5_c01325{letter-spacing:0.000000pt;}
.ls1_c01325{letter-spacing:13.977333pt;}
.ls4_c01325{letter-spacing:86.486021pt;}
.ls2_c01325{letter-spacing:139.223467pt;}
.ls3_c01325{letter-spacing:239.843093pt;}
.ls0_c01325{letter-spacing:670.258400pt;}
.ws2_c01325{word-spacing:-19.681920pt;}
.ws1_c01325{word-spacing:-19.546987pt;}
.ws0_c01325{word-spacing:-15.589668pt;}
.ws3_c01325{word-spacing:0.000000pt;}
.fsb_c01325{font-size:3.072000pt;}
.fsa_c01325{font-size:5.333333pt;}
.fs4_c01325{font-size:6.133333pt;}
.fs1e_c01325{font-size:9.226667pt;}
.fs18_c01325{font-size:12.266667pt;}
.fs1d_c01325{font-size:15.360000pt;}
.fs5_c01325{font-size:18.453333pt;}
.fs20_c01325{font-size:21.493333pt;}
.fs19_c01325{font-size:24.586667pt;}
.fs1c_c01325{font-size:27.626667pt;}
.fs2_c01325{font-size:30.720000pt;}
.fs3_c01325{font-size:33.813333pt;}
.fs8_c01325{font-size:36.853333pt;}
.fs1b_c01325{font-size:39.946667pt;}
.fs12_c01325{font-size:42.986667pt;}
.fs1a_c01325{font-size:46.080000pt;}
.fs15_c01325{font-size:49.173333pt;}
.fs1_c01325{font-size:52.213333pt;}
.fsd_c01325{font-size:55.306667pt;}
.fsf_c01325{font-size:58.346667pt;}
.fsc_c01325{font-size:61.440000pt;}
.fs16_c01325{font-size:64.533333pt;}
.fs10_c01325{font-size:67.573333pt;}
.fs13_c01325{font-size:70.666667pt;}
.fs0_c01325{font-size:73.706667pt;}
.fs7_c01325{font-size:76.800000pt;}
.fs14_c01325{font-size:79.893333pt;}
.fs1f_c01325{font-size:82.933333pt;}
.fs11_c01325{font-size:86.026667pt;}
.fs9_c01325{font-size:89.066667pt;}
.fs17_c01325{font-size:92.160000pt;}
.fse_c01325{font-size:95.253333pt;}
.fs21_c01325{font-size:98.293333pt;}
.fs6_c01325{font-size:248.853333pt;}
.y0_c01325{bottom:0.000000pt;}
.y21e_c01325{bottom:99.066667pt;}
.y21c_c01325{bottom:133.626667pt;}
.y21d_c01325{bottom:136.706667pt;}
.y213_c01325{bottom:151.293333pt;}
.y212_c01325{bottom:162.053333pt;}
.y20e_c01325{bottom:162.813333pt;}
.y20b_c01325{bottom:164.346667pt;}
.y20c_c01325{bottom:165.120000pt;}
.y20d_c01325{bottom:165.893333pt;}
.y211_c01325{bottom:167.426667pt;}
.y20f_c01325{bottom:169.733333pt;}
.y210_c01325{bottom:170.493333pt;}
.y20a_c01325{bottom:182.786667pt;}
.y207_c01325{bottom:183.546667pt;}
.y208_c01325{bottom:184.320000pt;}
.y206_c01325{bottom:185.093333pt;}
.y209_c01325{bottom:185.853333pt;}
.y1fe_c01325{bottom:187.386667pt;}
.y205_c01325{bottom:192.000000pt;}
.y201_c01325{bottom:192.773333pt;}
.y202_c01325{bottom:193.533333pt;}
.y1ff_c01325{bottom:194.306667pt;}
.y1fd_c01325{bottom:195.066667pt;}
.y1fb_c01325{bottom:195.840000pt;}
.y1fc_c01325{bottom:196.613333pt;}
.y200_c01325{bottom:197.373333pt;}
.y203_c01325{bottom:198.146667pt;}
.y204_c01325{bottom:199.680000pt;}
.y1f3_c01325{bottom:200.453333pt;}
.y1f8_c01325{bottom:201.213333pt;}
.y1f4_c01325{bottom:201.986667pt;}
.y1f7_c01325{bottom:202.746667pt;}
.y1f6_c01325{bottom:203.520000pt;}
.y1f9_c01325{bottom:205.826667pt;}
.y1f5_c01325{bottom:206.586667pt;}
.y1fa_c01325{bottom:208.893333pt;}
.y1ec_c01325{bottom:213.506667pt;}
.y1ed_c01325{bottom:215.040000pt;}
.y1f0_c01325{bottom:217.346667pt;}
.y1ee_c01325{bottom:218.880000pt;}
.y1ef_c01325{bottom:220.413333pt;}
.y1eb_c01325{bottom:221.946667pt;}
.y1f1_c01325{bottom:224.253333pt;}
.y1f2_c01325{bottom:235.013333pt;}
.y1e2_c01325{bottom:237.306667pt;}
.y1e3_c01325{bottom:238.080000pt;}
.y1e7_c01325{bottom:238.853333pt;}
.y1e9_c01325{bottom:240.386667pt;}
.y1e8_c01325{bottom:241.146667pt;}
.y1e4_c01325{bottom:241.920000pt;}
.y1e5_c01325{bottom:242.693333pt;}
.y1e6_c01325{bottom:243.453333pt;}
.y1ea_c01325{bottom:246.533333pt;}
.y1da_c01325{bottom:253.440000pt;}
.y1dc_c01325{bottom:254.973333pt;}
.y1e0_c01325{bottom:256.506667pt;}
.y1db_c01325{bottom:257.280000pt;}
.y1df_c01325{bottom:258.053333pt;}
.y1de_c01325{bottom:261.120000pt;}
.y1e1_c01325{bottom:261.893333pt;}
.y1dd_c01325{bottom:263.426667pt;}
.y1d2_c01325{bottom:268.800000pt;}
.y1d0_c01325{bottom:269.573333pt;}
.y1d4_c01325{bottom:270.333333pt;}
.y1d1_c01325{bottom:271.866667pt;}
.y1cf_c01325{bottom:272.640000pt;}
.y1d8_c01325{bottom:273.413333pt;}
.y1d7_c01325{bottom:274.173333pt;}
.y1d9_c01325{bottom:274.946667pt;}
.y1d5_c01325{bottom:275.706667pt;}
.y1d3_c01325{bottom:277.253333pt;}
.y1d6_c01325{bottom:278.013333pt;}
.y1ca_c01325{bottom:291.066667pt;}
.y1c6_c01325{bottom:292.613333pt;}
.y1cc_c01325{bottom:293.373333pt;}
.y1cd_c01325{bottom:294.146667pt;}
.y1c8_c01325{bottom:294.906667pt;}
.y1cb_c01325{bottom:295.680000pt;}
.y1c7_c01325{bottom:296.453333pt;}
.y1c9_c01325{bottom:297.213333pt;}
.y1ce_c01325{bottom:298.746667pt;}
.y1bd_c01325{bottom:308.733333pt;}
.y1c1_c01325{bottom:309.506667pt;}
.y1c2_c01325{bottom:311.813333pt;}
.y1bc_c01325{bottom:312.573333pt;}
.y1c0_c01325{bottom:313.346667pt;}
.y1be_c01325{bottom:314.880000pt;}
.y1c4_c01325{bottom:315.653333pt;}
.y1c3_c01325{bottom:317.946667pt;}
.y1c5_c01325{bottom:322.560000pt;}
.y1bf_c01325{bottom:324.093333pt;}
.y1b6_c01325{bottom:326.400000pt;}
.y1ba_c01325{bottom:329.466667pt;}
.y1b7_c01325{bottom:330.240000pt;}
.y1b9_c01325{bottom:331.013333pt;}
.y1b8_c01325{bottom:332.546667pt;}
.y1bb_c01325{bottom:334.080000pt;}
.y1ad_c01325{bottom:344.066667pt;}
.y1b0_c01325{bottom:344.826667pt;}
.y1ae_c01325{bottom:346.373333pt;}
.y1b3_c01325{bottom:347.133333pt;}
.y1b1_c01325{bottom:347.906667pt;}
.y1b4_c01325{bottom:348.666667pt;}
.y1af_c01325{bottom:349.440000pt;}
.y1b5_c01325{bottom:350.973333pt;}
.y1b2_c01325{bottom:358.653333pt;}
.y1a9_c01325{bottom:362.493333pt;}
.y1ac_c01325{bottom:363.266667pt;}
.y1a8_c01325{bottom:364.800000pt;}
.y1ab_c01325{bottom:365.573333pt;}
.y1a7_c01325{bottom:366.333333pt;}
.y1aa_c01325{bottom:368.640000pt;}
.y1a6_c01325{bottom:369.413333pt;}
.y1a2_c01325{bottom:371.706667pt;}
.y19e_c01325{bottom:372.480000pt;}
.y19f_c01325{bottom:373.253333pt;}
.y1a1_c01325{bottom:375.546667pt;}
.y1a3_c01325{bottom:376.320000pt;}
.y1a5_c01325{bottom:377.093333pt;}
.y1a4_c01325{bottom:377.853333pt;}
.y1a0_c01325{bottom:378.626667pt;}
.y196_c01325{bottom:380.160000pt;}
.y197_c01325{bottom:381.693333pt;}
.y19b_c01325{bottom:384.000000pt;}
.y199_c01325{bottom:384.773333pt;}
.y198_c01325{bottom:385.533333pt;}
.y19c_c01325{bottom:386.306667pt;}
.y19d_c01325{bottom:387.840000pt;}
.y19a_c01325{bottom:388.613333pt;}
.y195_c01325{bottom:393.986667pt;}
.y18e_c01325{bottom:399.360000pt;}
.y18f_c01325{bottom:400.133333pt;}
.y193_c01325{bottom:400.893333pt;}
.y194_c01325{bottom:402.426667pt;}
.y18d_c01325{bottom:403.200000pt;}
.y192_c01325{bottom:404.733333pt;}
.y191_c01325{bottom:405.506667pt;}
.y190_c01325{bottom:406.266667pt;}
.y188_c01325{bottom:418.560000pt;}
.y18a_c01325{bottom:419.333333pt;}
.y18c_c01325{bottom:420.866667pt;}
.y189_c01325{bottom:423.173333pt;}
.y18b_c01325{bottom:425.466667pt;}
.y187_c01325{bottom:429.306667pt;}
.y181_c01325{bottom:433.920000pt;}
.y184_c01325{bottom:435.453333pt;}
.y182_c01325{bottom:436.226667pt;}
.y185_c01325{bottom:437.760000pt;}
.y180_c01325{bottom:439.293333pt;}
.y186_c01325{bottom:442.373333pt;}
.y183_c01325{bottom:447.746667pt;}
.y17c_c01325{bottom:449.280000pt;}
.y17d_c01325{bottom:450.053333pt;}
.y17e_c01325{bottom:450.813333pt;}
.y17f_c01325{bottom:454.653333pt;}
.y17b_c01325{bottom:465.413333pt;}
.y175_c01325{bottom:470.013333pt;}
.y17a_c01325{bottom:472.320000pt;}
.y177_c01325{bottom:473.853333pt;}
.y174_c01325{bottom:474.626667pt;}
.y176_c01325{bottom:475.386667pt;}
.y178_c01325{bottom:476.160000pt;}
.y179_c01325{bottom:483.066667pt;}
.y171_c01325{bottom:488.453333pt;}
.y172_c01325{bottom:489.213333pt;}
.y170_c01325{bottom:489.986667pt;}
.y16a_c01325{bottom:491.520000pt;}
.y173_c01325{bottom:492.293333pt;}
.y16b_c01325{bottom:493.053333pt;}
.y16d_c01325{bottom:494.586667pt;}
.y16e_c01325{bottom:495.360000pt;}
.y16f_c01325{bottom:498.426667pt;}
.y169_c01325{bottom:501.506667pt;}
.y168_c01325{bottom:502.266667pt;}
.y16c_c01325{bottom:503.040000pt;}
.y161_c01325{bottom:503.813333pt;}
.y162_c01325{bottom:504.573333pt;}
.y164_c01325{bottom:506.106667pt;}
.y165_c01325{bottom:508.413333pt;}
.y167_c01325{bottom:509.186667pt;}
.y166_c01325{bottom:511.493333pt;}
.y163_c01325{bottom:512.253333pt;}
.y160_c01325{bottom:514.560000pt;}
.y15c_c01325{bottom:524.546667pt;}
.y15e_c01325{bottom:525.306667pt;}
.y15a_c01325{bottom:526.853333pt;}
.y15b_c01325{bottom:527.613333pt;}
.y15d_c01325{bottom:528.386667pt;}
.y21b_c01325{bottom:534.533333pt;}
.y15f_c01325{bottom:536.826667pt;}
.y151_c01325{bottom:540.666667pt;}
.y152_c01325{bottom:542.213333pt;}
.y156_c01325{bottom:544.506667pt;}
.y155_c01325{bottom:545.280000pt;}
.y159_c01325{bottom:546.053333pt;}
.y153_c01325{bottom:546.813333pt;}
.y154_c01325{bottom:547.586667pt;}
.y157_c01325{bottom:549.120000pt;}
.y158_c01325{bottom:550.653333pt;}
.y14a_c01325{bottom:559.866667pt;}
.y149_c01325{bottom:561.413333pt;}
.y148_c01325{bottom:562.173333pt;}
.y14c_c01325{bottom:564.480000pt;}
.y14e_c01325{bottom:565.253333pt;}
.y14b_c01325{bottom:566.013333pt;}
.y14d_c01325{bottom:567.546667pt;}
.y14f_c01325{bottom:568.320000pt;}
.y150_c01325{bottom:569.093333pt;}
.y142_c01325{bottom:578.306667pt;}
.y140_c01325{bottom:579.066667pt;}
.y141_c01325{bottom:579.840000pt;}
.y143_c01325{bottom:580.613333pt;}
.y13f_c01325{bottom:581.373333pt;}
.y145_c01325{bottom:582.906667pt;}
.y144_c01325{bottom:583.680000pt;}
.y146_c01325{bottom:584.453333pt;}
.y147_c01325{bottom:585.986667pt;}
.y13a_c01325{bottom:595.973333pt;}
.y13b_c01325{bottom:597.506667pt;}
.y13e_c01325{bottom:598.266667pt;}
.y13c_c01325{bottom:599.813333pt;}
.y13d_c01325{bottom:603.653333pt;}
.y133_c01325{bottom:606.720000pt;}
.y134_c01325{bottom:608.253333pt;}
.y136_c01325{bottom:609.026667pt;}
.y137_c01325{bottom:609.786667pt;}
.y135_c01325{bottom:610.560000pt;}
.y138_c01325{bottom:611.333333pt;}
.y139_c01325{bottom:612.093333pt;}
.y127_c01325{bottom:628.986667pt;}
.y128_c01325{bottom:632.066667pt;}
.y129_c01325{bottom:632.826667pt;}
.y12b_c01325{bottom:633.600000pt;}
.y12e_c01325{bottom:634.373333pt;}
.y12f_c01325{bottom:635.133333pt;}
.y132_c01325{bottom:635.906667pt;}
.y12a_c01325{bottom:636.666667pt;}
.y12c_c01325{bottom:637.440000pt;}
.y12d_c01325{bottom:638.213333pt;}
.y130_c01325{bottom:639.746667pt;}
.y131_c01325{bottom:642.053333pt;}
.y120_c01325{bottom:649.733333pt;}
.y11f_c01325{bottom:651.266667pt;}
.y122_c01325{bottom:652.026667pt;}
.y124_c01325{bottom:652.800000pt;}
.y125_c01325{bottom:654.333333pt;}
.y121_c01325{bottom:655.866667pt;}
.y126_c01325{bottom:656.640000pt;}
.y123_c01325{bottom:657.413333pt;}
.y118_c01325{bottom:666.626667pt;}
.y117_c01325{bottom:668.933333pt;}
.y119_c01325{bottom:669.693333pt;}
.y11a_c01325{bottom:670.466667pt;}
.y11e_c01325{bottom:671.226667pt;}
.y11d_c01325{bottom:672.773333pt;}
.y11c_c01325{bottom:675.066667pt;}
.y11b_c01325{bottom:678.146667pt;}
.y10c_c01325{bottom:684.293333pt;}
.y10f_c01325{bottom:686.586667pt;}
.y111_c01325{bottom:687.360000pt;}
.y114_c01325{bottom:688.133333pt;}
.y10d_c01325{bottom:688.893333pt;}
.y116_c01325{bottom:689.666667pt;}
.y10e_c01325{bottom:690.426667pt;}
.y110_c01325{bottom:691.200000pt;}
.y113_c01325{bottom:691.973333pt;}
.y112_c01325{bottom:692.733333pt;}
.y115_c01325{bottom:694.266667pt;}
.y104_c01325{bottom:703.493333pt;}
.y105_c01325{bottom:704.253333pt;}
.y10a_c01325{bottom:705.026667pt;}
.y103_c01325{bottom:705.786667pt;}
.y109_c01325{bottom:707.333333pt;}
.y106_c01325{bottom:708.093333pt;}
.y107_c01325{bottom:708.866667pt;}
.y10b_c01325{bottom:711.173333pt;}
.y108_c01325{bottom:711.933333pt;}
.yfc_c01325{bottom:720.386667pt;}
.yfb_c01325{bottom:721.920000pt;}
.yfe_c01325{bottom:722.693333pt;}
.yfd_c01325{bottom:724.226667pt;}
.y102_c01325{bottom:724.986667pt;}
.yff_c01325{bottom:725.760000pt;}
.y100_c01325{bottom:728.066667pt;}
.y101_c01325{bottom:728.826667pt;}
.yf6_c01325{bottom:738.813333pt;}
.yf5_c01325{bottom:740.346667pt;}
.yf8_c01325{bottom:741.120000pt;}
.yf4_c01325{bottom:741.893333pt;}
.yf7_c01325{bottom:743.426667pt;}
.yf9_c01325{bottom:744.186667pt;}
.yfa_c01325{bottom:745.733333pt;}
.yf2_c01325{bottom:746.493333pt;}
.yed_c01325{bottom:747.266667pt;}
.yf1_c01325{bottom:749.573333pt;}
.yee_c01325{bottom:750.333333pt;}
.yef_c01325{bottom:751.866667pt;}
.yf0_c01325{bottom:753.413333pt;}
.yf3_c01325{bottom:754.946667pt;}
.ye3_c01325{bottom:755.706667pt;}
.ye7_c01325{bottom:756.480000pt;}
.ye8_c01325{bottom:757.253333pt;}
.ye1_c01325{bottom:759.546667pt;}
.ye4_c01325{bottom:760.320000pt;}
.ye5_c01325{bottom:761.093333pt;}
.ye6_c01325{bottom:761.853333pt;}
.yec_c01325{bottom:762.626667pt;}
.ye9_c01325{bottom:763.386667pt;}
.yea_c01325{bottom:764.160000pt;}
.yeb_c01325{bottom:765.693333pt;}
.ye2_c01325{bottom:766.466667pt;}
.yd9_c01325{bottom:768.000000pt;}
.ydc_c01325{bottom:774.906667pt;}
.ydb_c01325{bottom:775.680000pt;}
.ydd_c01325{bottom:777.213333pt;}
.yda_c01325{bottom:777.986667pt;}
.yde_c01325{bottom:779.520000pt;}
.ydf_c01325{bottom:783.360000pt;}
.ye0_c01325{bottom:784.133333pt;}
.y21a_c01325{bottom:791.040000pt;}
.yd3_c01325{bottom:791.813333pt;}
.yd4_c01325{bottom:794.106667pt;}
.yd2_c01325{bottom:794.880000pt;}
.yd6_c01325{bottom:795.653333pt;}
.yd7_c01325{bottom:796.413333pt;}
.yd8_c01325{bottom:797.946667pt;}
.yd5_c01325{bottom:800.253333pt;}
.y219_c01325{bottom:803.333333pt;}
.yce_c01325{bottom:810.240000pt;}
.ycf_c01325{bottom:811.773333pt;}
.ycc_c01325{bottom:812.546667pt;}
.ycd_c01325{bottom:813.306667pt;}
.yd1_c01325{bottom:815.613333pt;}
.yd0_c01325{bottom:817.146667pt;}
.yc7_c01325{bottom:827.906667pt;}
.yc6_c01325{bottom:831.746667pt;}
.yc8_c01325{bottom:833.280000pt;}
.yc9_c01325{bottom:835.586667pt;}
.ycb_c01325{bottom:837.893333pt;}
.yca_c01325{bottom:838.653333pt;}
.ybd_c01325{bottom:845.573333pt;}
.yc1_c01325{bottom:846.333333pt;}
.yc5_c01325{bottom:847.866667pt;}
.ybe_c01325{bottom:848.640000pt;}
.ybf_c01325{bottom:850.173333pt;}
.yc0_c01325{bottom:851.706667pt;}
.yc4_c01325{bottom:854.013333pt;}
.yc2_c01325{bottom:855.546667pt;}
.yb6_c01325{bottom:864.773333pt;}
.yc3_c01325{bottom:865.533333pt;}
.yb9_c01325{bottom:867.066667pt;}
.ybb_c01325{bottom:867.840000pt;}
.yb7_c01325{bottom:869.373333pt;}
.yb8_c01325{bottom:870.146667pt;}
.yba_c01325{bottom:871.680000pt;}
.ybc_c01325{bottom:873.986667pt;}
.yb5_c01325{bottom:878.586667pt;}
.yad_c01325{bottom:880.893333pt;}
.yae_c01325{bottom:883.973333pt;}
.yb1_c01325{bottom:884.733333pt;}
.yb2_c01325{bottom:886.266667pt;}
.yac_c01325{bottom:887.813333pt;}
.yb0_c01325{bottom:888.573333pt;}
.yaf_c01325{bottom:889.346667pt;}
.yb3_c01325{bottom:891.653333pt;}
.yb4_c01325{bottom:892.413333pt;}
.y218_c01325{bottom:895.493333pt;}
.ya1_c01325{bottom:898.560000pt;}
.y217_c01325{bottom:899.333333pt;}
.ya2_c01325{bottom:900.093333pt;}
.ya3_c01325{bottom:902.400000pt;}
.ya6_c01325{bottom:903.933333pt;}
.ya9_c01325{bottom:904.706667pt;}
.ya4_c01325{bottom:905.466667pt;}
.ya5_c01325{bottom:906.240000pt;}
.ya7_c01325{bottom:907.013333pt;}
.ya8_c01325{bottom:907.773333pt;}
.yaa_c01325{bottom:910.080000pt;}
.y216_c01325{bottom:910.853333pt;}
.yab_c01325{bottom:912.386667pt;}
.y9b_c01325{bottom:920.066667pt;}
.y9c_c01325{bottom:922.373333pt;}
.y9f_c01325{bottom:923.133333pt;}
.y9d_c01325{bottom:923.906667pt;}
.y9e_c01325{bottom:924.666667pt;}
.ya0_c01325{bottom:928.506667pt;}
.y93_c01325{bottom:933.893333pt;}
.y97_c01325{bottom:934.653333pt;}
.y92_c01325{bottom:935.426667pt;}
.y94_c01325{bottom:936.960000pt;}
.y99_c01325{bottom:937.733333pt;}
.y96_c01325{bottom:940.026667pt;}
.y95_c01325{bottom:940.800000pt;}
.y98_c01325{bottom:941.573333pt;}
.y9a_c01325{bottom:943.106667pt;}
.y8c_c01325{bottom:954.626667pt;}
.y8d_c01325{bottom:956.160000pt;}
.y8b_c01325{bottom:956.933333pt;}
.y8f_c01325{bottom:957.693333pt;}
.y90_c01325{bottom:960.000000pt;}
.y8e_c01325{bottom:960.773333pt;}
.y91_c01325{bottom:963.840000pt;}
.y8a_c01325{bottom:968.453333pt;}
.y81_c01325{bottom:971.520000pt;}
.y82_c01325{bottom:972.293333pt;}
.y84_c01325{bottom:973.826667pt;}
.y80_c01325{bottom:974.586667pt;}
.y87_c01325{bottom:975.360000pt;}
.y85_c01325{bottom:976.133333pt;}
.y83_c01325{bottom:978.426667pt;}
.y86_c01325{bottom:981.506667pt;}
.y88_c01325{bottom:982.266667pt;}
.y89_c01325{bottom:984.573333pt;}
.y7f_c01325{bottom:985.346667pt;}
.y78_c01325{bottom:990.720000pt;}
.y76_c01325{bottom:992.253333pt;}
.y75_c01325{bottom:993.026667pt;}
.y7b_c01325{bottom:993.786667pt;}
.y77_c01325{bottom:995.333333pt;}
.y79_c01325{bottom:996.866667pt;}
.y7a_c01325{bottom:997.626667pt;}
.y7d_c01325{bottom:998.400000pt;}
.y7c_c01325{bottom:999.173333pt;}
.y7e_c01325{bottom:999.933333pt;}
.y6b_c01325{bottom:1008.386667pt;}
.y6d_c01325{bottom:1009.146667pt;}
.y70_c01325{bottom:1010.693333pt;}
.y6a_c01325{bottom:1011.453333pt;}
.y6c_c01325{bottom:1012.986667pt;}
.y6e_c01325{bottom:1013.760000pt;}
.y6f_c01325{bottom:1014.533333pt;}
.y71_c01325{bottom:1016.066667pt;}
.y72_c01325{bottom:1016.826667pt;}
.y73_c01325{bottom:1017.600000pt;}
.y74_c01325{bottom:1018.373333pt;}
.y63_c01325{bottom:1026.813333pt;}
.y65_c01325{bottom:1027.586667pt;}
.y62_c01325{bottom:1028.346667pt;}
.y64_c01325{bottom:1031.426667pt;}
.y68_c01325{bottom:1032.960000pt;}
.y66_c01325{bottom:1033.733333pt;}
.y67_c01325{bottom:1034.493333pt;}
.y69_c01325{bottom:1036.026667pt;}
.y59_c01325{bottom:1042.173333pt;}
.y5c_c01325{bottom:1046.013333pt;}
.y5e_c01325{bottom:1046.786667pt;}
.y5a_c01325{bottom:1047.546667pt;}
.y5b_c01325{bottom:1049.853333pt;}
.y5d_c01325{bottom:1052.160000pt;}
.y5f_c01325{bottom:1052.933333pt;}
.y60_c01325{bottom:1053.693333pt;}
.y61_c01325{bottom:1056.000000pt;}
.y52_c01325{bottom:1062.906667pt;}
.y55_c01325{bottom:1063.680000pt;}
.y51_c01325{bottom:1064.453333pt;}
.y54_c01325{bottom:1065.213333pt;}
.y58_c01325{bottom:1065.986667pt;}
.y53_c01325{bottom:1068.293333pt;}
.y57_c01325{bottom:1069.826667pt;}
.y56_c01325{bottom:1070.586667pt;}
.y50_c01325{bottom:1073.666667pt;}
.y47_c01325{bottom:1081.346667pt;}
.y4c_c01325{bottom:1082.106667pt;}
.y49_c01325{bottom:1082.880000pt;}
.y4b_c01325{bottom:1084.413333pt;}
.y4f_c01325{bottom:1085.186667pt;}
.y4e_c01325{bottom:1085.946667pt;}
.y48_c01325{bottom:1086.720000pt;}
.y4a_c01325{bottom:1087.493333pt;}
.y4d_c01325{bottom:1089.026667pt;}
.y3c_c01325{bottom:1096.706667pt;}
.y3d_c01325{bottom:1100.546667pt;}
.y40_c01325{bottom:1101.306667pt;}
.y44_c01325{bottom:1102.080000pt;}
.y46_c01325{bottom:1102.853333pt;}
.y3e_c01325{bottom:1103.613333pt;}
.y3f_c01325{bottom:1104.386667pt;}
.y41_c01325{bottom:1105.920000pt;}
.y42_c01325{bottom:1106.693333pt;}
.y45_c01325{bottom:1107.453333pt;}
.y43_c01325{bottom:1108.226667pt;}
.y38_c01325{bottom:1117.440000pt;}
.y34_c01325{bottom:1118.213333pt;}
.y35_c01325{bottom:1119.746667pt;}
.y36_c01325{bottom:1121.280000pt;}
.y37_c01325{bottom:1122.053333pt;}
.y3b_c01325{bottom:1122.813333pt;}
.y39_c01325{bottom:1124.346667pt;}
.y3a_c01325{bottom:1125.120000pt;}
.y215_c01325{bottom:1132.026667pt;}
.y2b_c01325{bottom:1136.640000pt;}
.y2c_c01325{bottom:1137.413333pt;}
.y31_c01325{bottom:1138.173333pt;}
.y33_c01325{bottom:1138.946667pt;}
.y4_c01325{bottom:1139.706667pt;}
.y2d_c01325{bottom:1140.480000pt;}
.y2e_c01325{bottom:1141.253333pt;}
.y32_c01325{bottom:1142.786667pt;}
.y2f_c01325{bottom:1143.546667pt;}
.y30_c01325{bottom:1144.320000pt;}
.y21_c01325{bottom:1148.933333pt;}
.y23_c01325{bottom:1150.466667pt;}
.y29_c01325{bottom:1152.000000pt;}
.y28_c01325{bottom:1152.773333pt;}
.y2a_c01325{bottom:1153.533333pt;}
.y27_c01325{bottom:1154.306667pt;}
.y24_c01325{bottom:1155.066667pt;}
.y22_c01325{bottom:1156.613333pt;}
.y3_c01325{bottom:1157.373333pt;}
.y26_c01325{bottom:1161.213333pt;}
.y25_c01325{bottom:1164.293333pt;}
.y1_c01325{bottom:1169.666667pt;}
.y1c_c01325{bottom:1171.973333pt;}
.y1d_c01325{bottom:1173.506667pt;}
.y2_c01325{bottom:1174.266667pt;}
.y1f_c01325{bottom:1175.813333pt;}
.y20_c01325{bottom:1177.346667pt;}
.y1e_c01325{bottom:1178.880000pt;}
.y12_c01325{bottom:1188.093333pt;}
.y13_c01325{bottom:1189.626667pt;}
.y15_c01325{bottom:1190.400000pt;}
.y14_c01325{bottom:1191.173333pt;}
.y18_c01325{bottom:1191.933333pt;}
.y1a_c01325{bottom:1192.706667pt;}
.y19_c01325{bottom:1193.466667pt;}
.y16_c01325{bottom:1194.240000pt;}
.y17_c01325{bottom:1196.546667pt;}
.y11_c01325{bottom:1197.306667pt;}
.y1b_c01325{bottom:1198.080000pt;}
.yc_c01325{bottom:1214.213333pt;}
.y10_c01325{bottom:1214.973333pt;}
.yb_c01325{bottom:1217.280000pt;}
.yd_c01325{bottom:1218.053333pt;}
.ye_c01325{bottom:1218.813333pt;}
.yf_c01325{bottom:1220.346667pt;}
.y7_c01325{bottom:1239.546667pt;}
.ya_c01325{bottom:1241.093333pt;}
.y9_c01325{bottom:1243.386667pt;}
.y8_c01325{bottom:1260.293333pt;}
.y6_c01325{bottom:1275.653333pt;}
.y214_c01325{bottom:1282.560000pt;}
.y5_c01325{bottom:1299.453333pt;}
.hd_c01325{height:2.764500pt;}
.hc_c01325{height:4.799479pt;}
.h6_c01325{height:5.519401pt;}
.h24_c01325{height:5.804500pt;}
.h27_c01325{height:5.857833pt;}
.h20_c01325{height:8.303099pt;}
.h28_c01325{height:8.612734pt;}
.h1a_c01325{height:11.038802pt;}
.h1f_c01325{height:13.822500pt;}
.h7_c01325{height:16.606198pt;}
.h23_c01325{height:19.341901pt;}
.h1b_c01325{height:22.125599pt;}
.h1e_c01325{height:24.861302pt;}
.h4_c01325{height:27.645000pt;}
.h5_c01325{height:30.428698pt;}
.ha_c01325{height:33.164401pt;}
.h1d_c01325{height:35.948099pt;}
.h14_c01325{height:38.683802pt;}
.h1c_c01325{height:41.467500pt;}
.h17_c01325{height:44.251198pt;}
.h3_c01325{height:46.986901pt;}
.hf_c01325{height:49.770599pt;}
.h22_c01325{height:50.080234pt;}
.h11_c01325{height:52.506302pt;}
.he_c01325{height:55.290000pt;}
.h18_c01325{height:58.073698pt;}
.h12_c01325{height:60.809401pt;}
.h15_c01325{height:63.593099pt;}
.h25_c01325{height:65.130599pt;}
.h26_c01325{height:66.054167pt;}
.h2_c01325{height:66.328802pt;}
.h9_c01325{height:69.112500pt;}
.h16_c01325{height:71.896198pt;}
.h21_c01325{height:74.631901pt;}
.h13_c01325{height:77.415599pt;}
.hb_c01325{height:80.151302pt;}
.h19_c01325{height:82.935000pt;}
.h10_c01325{height:85.718698pt;}
.h29_c01325{height:88.454401pt;}
.h8_c01325{height:223.943698pt;}
.h0_c01325{height:1341.693333pt;}
.h1_c01325{height:1342.000000pt;}
.w0_c01325{width:959.226667pt;}
.w1_c01325{width:959.333333pt;}
.x0_c01325{left:0.000000pt;}
.x12d_c01325{left:3.840000pt;}
.x12b_c01325{left:5.373333pt;}
.x12e_c01325{left:11.520000pt;}
.x1_c01325{left:13.826667pt;}
.x12c_c01325{left:17.666667pt;}
.xb8_c01325{left:142.080000pt;}
.xaa_c01325{left:146.693333pt;}
.xf4_c01325{left:148.226667pt;}
.xf5_c01325{left:155.133333pt;}
.xf8_c01325{left:156.666667pt;}
.x128_c01325{left:160.506667pt;}
.xab_c01325{left:162.813333pt;}
.x78_c01325{left:167.426667pt;}
.xf6_c01325{left:170.493333pt;}
.xf_c01325{left:175.106667pt;}
.x51_c01325{left:178.173333pt;}
.x20_c01325{left:180.480000pt;}
.x10_c01325{left:182.013333pt;}
.x2b_c01325{left:183.546667pt;}
.x42_c01325{left:185.093333pt;}
.xaf_c01325{left:187.386667pt;}
.xc9_c01325{left:188.933333pt;}
.xde_c01325{left:191.226667pt;}
.x7f_c01325{left:193.533333pt;}
.xf9_c01325{left:195.840000pt;}
.x63_c01325{left:197.373333pt;}
.xac_c01325{left:199.680000pt;}
.x112_c01325{left:201.986667pt;}
.x4b_c01325{left:203.520000pt;}
.xd7_c01325{left:205.053333pt;}
.xb2_c01325{left:206.586667pt;}
.x64_c01325{left:208.893333pt;}
.xca_c01325{left:210.426667pt;}
.xff_c01325{left:211.973333pt;}
.xa4_c01325{left:213.506667pt;}
.x117_c01325{left:215.813333pt;}
.x8b_c01325{left:217.346667pt;}
.x6f_c01325{left:218.880000pt;}
.x52_c01325{left:221.186667pt;}
.xdf_c01325{left:223.493333pt;}
.x43_c01325{left:225.026667pt;}
.x38_c01325{left:226.560000pt;}
.x65_c01325{left:228.866667pt;}
.x58_c01325{left:230.400000pt;}
.x114_c01325{left:233.466667pt;}
.x9d_c01325{left:236.546667pt;}
.x79_c01325{left:238.080000pt;}
.x39_c01325{left:241.146667pt;}
.x8_c01325{left:244.226667pt;}
.x11_c01325{left:245.760000pt;}
.x21_c01325{left:247.293333pt;}
.x11c_c01325{left:248.826667pt;}
.x1a_c01325{left:251.906667pt;}
.x125_c01325{left:253.440000pt;}
.xb3_c01325{left:254.973333pt;}
.x5e_c01325{left:257.280000pt;}
.x53_c01325{left:258.813333pt;}
.x3a_c01325{left:261.120000pt;}
.x2c_c01325{left:262.653333pt;}
.x70_c01325{left:264.960000pt;}
.xed_c01325{left:267.266667pt;}
.x9a_c01325{left:270.333333pt;}
.x22_c01325{left:273.413333pt;}
.x54_c01325{left:274.946667pt;}
.x80_c01325{left:278.013333pt;}
.x66_c01325{left:280.320000pt;}
.x44_c01325{left:281.853333pt;}
.xc6_c01325{left:284.160000pt;}
.x9_c01325{left:286.466667pt;}
.x7a_c01325{left:288.000000pt;}
.xe9_c01325{left:290.306667pt;}
.x12_c01325{left:291.840000pt;}
.xe0_c01325{left:294.146667pt;}
.xa_c01325{left:297.213333pt;}
.x85_c01325{left:298.746667pt;}
.xcb_c01325{left:300.293333pt;}
.xc2_c01325{left:301.826667pt;}
.x122_c01325{left:304.893333pt;}
.x8e_c01325{left:306.426667pt;}
.xcc_c01325{left:307.973333pt;}
.x2d_c01325{left:309.506667pt;}
.xbe_c01325{left:311.040000pt;}
.xb9_c01325{left:312.573333pt;}
.x71_c01325{left:314.106667pt;}
.x100_c01325{left:315.653333pt;}
.x55_c01325{left:317.946667pt;}
.x9e_c01325{left:319.493333pt;}
.xd8_c01325{left:321.786667pt;}
.xc3_c01325{left:324.093333pt;}
.x67_c01325{left:325.626667pt;}
.x103_c01325{left:328.706667pt;}
.x9b_c01325{left:331.013333pt;}
.x23_c01325{left:332.546667pt;}
.xb_c01325{left:334.080000pt;}
.x4c_c01325{left:336.386667pt;}
.xf1_c01325{left:337.920000pt;}
.x2e_c01325{left:340.226667pt;}
.x3b_c01325{left:341.760000pt;}
.x11d_c01325{left:343.293333pt;}
.xe5_c01325{left:344.826667pt;}
.x68_c01325{left:346.373333pt;}
.x96_c01325{left:347.906667pt;}
.xfa_c01325{left:350.213333pt;}
.x101_c01325{left:351.746667pt;}
.x72_c01325{left:353.280000pt;}
.xad_c01325{left:354.813333pt;}
.x13_c01325{left:357.120000pt;}
.x1b_c01325{left:359.426667pt;}
.x2f_c01325{left:360.960000pt;}
.x56_c01325{left:364.800000pt;}
.xc_c01325{left:367.866667pt;}
.x110_c01325{left:369.413333pt;}
.xd5_c01325{left:370.946667pt;}
.x106_c01325{left:373.253333pt;}
.x59_c01325{left:375.546667pt;}
.x8f_c01325{left:378.626667pt;}
.x73_c01325{left:380.160000pt;}
.xd0_c01325{left:383.226667pt;}
.x8c_c01325{left:384.773333pt;}
.x81_c01325{left:389.373333pt;}
.x24_c01325{left:391.680000pt;}
.xc4_c01325{left:395.520000pt;}
.x45_c01325{left:397.053333pt;}
.xd1_c01325{left:399.360000pt;}
.x30_c01325{left:401.666667pt;}
.xba_c01325{left:403.973333pt;}
.xfb_c01325{left:405.506667pt;}
.x4d_c01325{left:408.573333pt;}
.x104_c01325{left:410.106667pt;}
.x9c_c01325{left:411.653333pt;}
.xb4_c01325{left:413.186667pt;}
.xbf_c01325{left:415.493333pt;}
.x57_c01325{left:417.786667pt;}
.x14_c01325{left:419.333333pt;}
.x107_c01325{left:420.866667pt;}
.x5f_c01325{left:424.706667pt;}
.x90_c01325{left:426.240000pt;}
.x5a_c01325{left:428.546667pt;}
.x10f_c01325{left:430.080000pt;}
.x86_c01325{left:433.146667pt;}
.xcd_c01325{left:434.693333pt;}
.xd6_c01325{left:437.760133pt;}
.x123_c01325{left:440.826667pt;}
.xc5_c01325{left:442.373333pt;}
.x11e_c01325{left:444.666667pt;}
.xd2_c01325{left:446.213333pt;}
.x7b_c01325{left:448.506667pt;}
.x9f_c01325{left:450.053333pt;}
.xfc_c01325{left:453.893333pt;}
.xce_c01325{left:456.186667pt;}
.x87_c01325{left:457.733333pt;}
.x15_c01325{left:460.800000pt;}
.xa0_c01325{left:463.106667pt;}
.xd3_c01325{left:466.946667pt;}
.x25_c01325{left:469.253333pt;}
.xd_c01325{left:470.786667pt;}
.x91_c01325{left:473.853333pt;}
.x16_c01325{left:476.160000pt;}
.x88_c01325{left:477.693333pt;}
.xa1_c01325{left:480.000000pt;}
.xbb_c01325{left:481.533333pt;}
.xe6_c01325{left:483.840000pt;}
.xea_c01325{left:485.373333pt;}
.xee_c01325{left:486.906667pt;}
.xfd_c01325{left:489.213333pt;}
.x108_c01325{left:490.746667pt;}
.xa2_c01325{left:492.293333pt;}
.x118_c01325{left:493.826667pt;}
.x26_c01325{left:495.360000pt;}
.xe1_c01325{left:496.893333pt;}
.x60_c01325{left:499.973333pt;}
.x4e_c01325{left:503.040000pt;}
.x3c_c01325{left:507.653333pt;}
.x74_c01325{left:509.186667pt;}
.x109_c01325{left:512.253333pt;}
.x82_c01325{left:515.333333pt;}
.x46_c01325{left:516.866667pt;}
.xb0_c01325{left:519.933333pt;}
.x3d_c01325{left:522.240000pt;}
.xd9_c01325{left:523.773333pt;}
.xeb_c01325{left:526.080000pt;}
.x97_c01325{left:527.613333pt;}
.x17_c01325{left:529.146667pt;}
.xfe_c01325{left:530.693333pt;}
.xc0_c01325{left:532.226667pt;}
.x126_c01325{left:536.066667pt;}
.x69_c01325{left:537.600000pt;}
.x92_c01325{left:539.906667pt;}
.xb5_c01325{left:542.213333pt;}
.xe7_c01325{left:543.746667pt;}
.x124_c01325{left:546.053333pt;}
.x31_c01325{left:547.586667pt;}
.x27_c01325{left:549.893333pt;}
.xa5_c01325{left:552.960000pt;}
.x6a_c01325{left:555.266667pt;}
.xae_c01325{left:556.800000pt;}
.xbc_c01325{left:559.106667pt;}
.x11b_c01325{left:560.640000pt;}
.xa6_c01325{left:562.173333pt;}
.x1c_c01325{left:563.706667pt;}
.x119_c01325{left:569.853333pt;}
.x47_c01325{left:572.160000pt;}
.x6b_c01325{left:573.693333pt;}
.x6_c01325{left:576.773333pt;}
.x32_c01325{left:582.146667pt;}
.xe2_c01325{left:583.680000pt;}
.x2_c01325{left:585.213333pt;}
.xf7_c01325{left:586.746667pt;}
.x75_c01325{left:588.293333pt;}
.xf2_c01325{left:589.826667pt;}
.x4f_c01325{left:591.360000pt;}
.xda_c01325{left:592.893333pt;}
.x28_c01325{left:594.426667pt;}
.x3e_c01325{left:595.973333pt;}
.x3_c01325{left:599.040000pt;}
.xb1_c01325{left:601.346667pt;}
.x93_c01325{left:602.880000pt;}
.xec_c01325{left:605.946667pt;}
.x129_c01325{left:608.253333pt;}
.x98_c01325{left:611.333333pt;}
.x33_c01325{left:612.866667pt;}
.x7_c01325{left:615.933333pt;}
.x4_c01325{left:618.240000pt;}
.x7c_c01325{left:619.773333pt;}
.xc1_c01325{left:621.306667pt;}
.xa3_c01325{left:622.853333pt;}
.x6c_c01325{left:624.386667pt;}
.x11a_c01325{left:628.226667pt;}
.x5_c01325{left:629.760000pt;}
.x10c_c01325{left:632.066667pt;}
.x48_c01325{left:633.600000pt;}
.x5b_c01325{left:635.133333pt;}
.x61_c01325{left:637.440000pt;}
.xb6_c01325{left:638.973333pt;}
.xcf_c01325{left:640.506667pt;}
.x105_c01325{left:642.053333pt;}
.x34_c01325{left:644.346667pt;}
.x102_c01325{left:646.653333pt;}
.x18_c01325{left:648.186667pt;}
.x6d_c01325{left:652.026667pt;}
.xc7_c01325{left:654.333333pt;}
.xa7_c01325{left:655.866667pt;}
.x10a_c01325{left:657.413333pt;}
.x3f_c01325{left:659.706667pt;}
.x50_c01325{left:663.546667pt;}
.x89_c01325{left:665.093333pt;}
.x115_c01325{left:668.160000pt;}
.x1d_c01325{left:669.693333pt;}
.x35_c01325{left:671.226667pt;}
.xd4_c01325{left:672.773333pt;}
.x62_c01325{left:675.066667pt;}
.x76_c01325{left:677.373333pt;}
.x49_c01325{left:679.680000pt;}
.x116_c01325{left:681.213333pt;}
.xc8_c01325{left:683.520000pt;}
.x6e_c01325{left:685.053333pt;}
.x1e_c01325{left:686.586667pt;}
.xbd_c01325{left:688.893333pt;}
.x36_c01325{left:690.426667pt;}
.x83_c01325{left:691.973333pt;}
.x99_c01325{left:693.506667pt;}
.x5c_c01325{left:695.813333pt;}
.x4a_c01325{left:698.880000pt;}
.x10d_c01325{left:701.186667pt;}
.xa8_c01325{left:702.720000pt;}
.xdb_c01325{left:705.026667pt;}
.x40_c01325{left:707.333333pt;}
.x7d_c01325{left:708.866667pt;}
.x37_c01325{left:710.400000pt;}
.x8a_c01325{left:712.706667pt;}
.xb7_c01325{left:714.240000pt;}
.x19_c01325{left:716.546667pt;}
.x10e_c01325{left:718.080000pt;}
.xe_c01325{left:720.386667pt;}
.x94_c01325{left:722.693333pt;}
.x29_c01325{left:724.226667pt;}
.x41_c01325{left:725.760000pt;}
.x77_c01325{left:728.826667pt;}
.xa9_c01325{left:732.666667pt;}
.xe8_c01325{left:734.213333pt;}
.x10b_c01325{left:735.746667pt;}
.xef_c01325{left:737.280000pt;}
.x111_c01325{left:739.586667pt;}
.x5d_c01325{left:741.120000pt;}
.x7e_c01325{left:743.426667pt;}
.x8d_c01325{left:745.733333pt;}
.xe3_c01325{left:748.800000pt;}
.x1f_c01325{left:750.333333pt;}
.xf0_c01325{left:751.866667pt;}
.x2a_c01325{left:753.413333pt;}
.x84_c01325{left:756.480000pt;}
.xdc_c01325{left:758.786667pt;}
.x113_c01325{left:762.626667pt;}
.x127_c01325{left:766.466667pt;}
.x95_c01325{left:768.773333pt;}
.x120_c01325{left:771.840000pt;}
.xe4_c01325{left:774.146667pt;}
.xdd_c01325{left:777.986667pt;}
.x11f_c01325{left:779.520000pt;}
.xf3_c01325{left:781.053333pt;}
.x121_c01325{left:791.813333pt;}
.x130_c01325{left:807.933333pt;}
.x131_c01325{left:815.613333pt;}
.x132_c01325{left:820.986667pt;}
.x12a_c01325{left:838.653333pt;}
.x133_c01325{left:840.186667pt;}
.x12f_c01325{left:861.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_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_d8a7d16db7fc3a8b4c3896c7.woff2')format("woff");}.ff1_c01326{font-family:ff1_c01326;line-height:1.109863;font-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_c01326{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m9b_c01326{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.m56_c01326{transform:matrix(0.090300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090300,0.000000,0.000000,0.250000,0,0);}
.m93_c01326{transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);}
.m120_c01326{transform:matrix(0.094200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094200,0.000000,0.000000,0.250000,0,0);}
.m169_c01326{transform:matrix(0.094875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094875,0.000000,0.000000,0.250000,0,0);}
.m17e_c01326{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m195_c01326{transform:matrix(0.097075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097075,0.000000,0.000000,0.250000,0,0);}
.m3c_c01326{transform:matrix(0.098500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098500,0.000000,0.000000,0.250000,0,0);}
.m2_c01326{transform:matrix(0.098600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098600,0.000000,0.000000,0.250000,0,0);}
.m16f_c01326{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);}
.m81_c01326{transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102375,0.000000,0.000000,0.250000,0,0);}
.m14d_c01326{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);}
.m122_c01326{transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107225,0.000000,0.000000,0.250000,0,0);}
.m57_c01326{transform:matrix(0.110075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110075,0.000000,0.000000,0.250000,0,0);}
.m17c_c01326{transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);}
.m163_c01326{transform:matrix(0.120900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120900,0.000000,0.000000,0.250000,0,0);}
.m11b_c01326{transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);}
.m6b_c01326{transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123225,0.000000,0.000000,0.250000,0,0);}
.m38_c01326{transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124475,0.000000,0.000000,0.250000,0,0);}
.m19a_c01326{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m121_c01326{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);}
.m119_c01326{transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129800,0.000000,0.000000,0.250000,0,0);}
.mc_c01326{transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);}
.maf_c01326{transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130600,0.000000,0.000000,0.250000,0,0);}
.m63_c01326{transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);}
.mb0_c01326{transform:matrix(0.131775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131775,0.000000,0.000000,0.250000,0,0);}
.md1_c01326{transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);}
.m115_c01326{transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);}
.m10c_c01326{transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);}
.m7f_c01326{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.m150_c01326{transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133925,0.000000,0.000000,0.250000,0,0);}
.m164_c01326{transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134275,0.000000,0.000000,0.250000,0,0);}
.mb2_c01326{transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134900,0.000000,0.000000,0.250000,0,0);}
.m14f_c01326{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.mef_c01326{transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135775,0.000000,0.000000,0.250000,0,0);}
.m136_c01326{transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);}
.mce_c01326{transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);}
.m14e_c01326{transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);}
.m87_c01326{transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136075,0.000000,0.000000,0.250000,0,0);}
.m5a_c01326{transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);}
.m170_c01326{transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);}
.m49_c01326{transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);}
.m85_c01326{transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);}
.mf0_c01326{transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137375,0.000000,0.000000,0.250000,0,0);}
.m175_c01326{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m14a_c01326{transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);}
.m179_c01326{transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);}
.m35_c01326{transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142325,0.000000,0.000000,0.250000,0,0);}
.m53_c01326{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);}
.m180_c01326{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);}
.m94_c01326{transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143875,0.000000,0.000000,0.250000,0,0);}
.m165_c01326{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m7a_c01326{transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143975,0.000000,0.000000,0.250000,0,0);}
.m6_c01326{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m14b_c01326{transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);}
.m4a_c01326{transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144425,0.000000,0.000000,0.250000,0,0);}
.m196_c01326{transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);}
.m174_c01326{transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146175,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01326{transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146950,0.000000,0.000000,0.250000,0,0);}
.m33_c01326{transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);}
.m5f_c01326{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);}
.m17a_c01326{transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147125,0.000000,0.000000,0.250000,0,0);}
.m37_c01326{transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);}
.m32_c01326{transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);}
.m8a_c01326{transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);}
.m16_c01326{transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);}
.m39_c01326{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01326{transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149650,0.000000,0.000000,0.250000,0,0);}
.m9c_c01326{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);}
.meb_c01326{transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01326{transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);}
.m88_c01326{transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150700,0.000000,0.000000,0.250000,0,0);}
.m10f_c01326{transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151250,0.000000,0.000000,0.250000,0,0);}
.m95_c01326{transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151425,0.000000,0.000000,0.250000,0,0);}
.m21_c01326{transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);}
.mf2_c01326{transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);}
.m151_c01326{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m68_c01326{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);}
.m178_c01326{transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153975,0.000000,0.000000,0.250000,0,0);}
.m141_c01326{transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154025,0.000000,0.000000,0.250000,0,0);}
.m11d_c01326{transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154150,0.000000,0.000000,0.250000,0,0);}
.mdb_c01326{transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154250,0.000000,0.000000,0.250000,0,0);}
.m84_c01326{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.m5e_c01326{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.mfa_c01326{transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157100,0.000000,0.000000,0.250000,0,0);}
.m173_c01326{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);}
.m28_c01326{transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01326{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);}
.md8_c01326{transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);}
.m5c_c01326{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.m12_c01326{transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);}
.md3_c01326{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);}
.m158_c01326{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.ma3_c01326{transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161275,0.000000,0.000000,0.250000,0,0);}
.m91_c01326{transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161300,0.000000,0.000000,0.250000,0,0);}
.m177_c01326{transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);}
.m2e_c01326{transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);}
.mb1_c01326{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.m176_c01326{transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162425,0.000000,0.000000,0.250000,0,0);}
.mb9_c01326{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);}
.m2d_c01326{transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162800,0.000000,0.000000,0.250000,0,0);}
.mb8_c01326{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);}
.m12e_c01326{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.m15c_c01326{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);}
.mfd_c01326{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.m166_c01326{transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);}
.m15e_c01326{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.m27_c01326{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);}
.m17d_c01326{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.m4b_c01326{transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);}
.m199_c01326{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);}
.m15b_c01326{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.me8_c01326{transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);}
.mfb_c01326{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.m109_c01326{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);}
.m62_c01326{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m186_c01326{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.m22_c01326{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.m124_c01326{transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169275,0.000000,0.000000,0.250000,0,0);}
.m103_c01326{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);}
.md4_c01326{transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169825,0.000000,0.000000,0.250000,0,0);}
.m59_c01326{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01326{transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170200,0.000000,0.000000,0.250000,0,0);}
.m48_c01326{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);}
.m114_c01326{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.md7_c01326{transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171600,0.000000,0.000000,0.250000,0,0);}
.m182_c01326{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.m10e_c01326{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m4_c01326{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);}
.mda_c01326{transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);}
.m92_c01326{transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173875,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01326{transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);}
.md9_c01326{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m18_c01326{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);}
.m8_c01326{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);}
.m1b2_c01326{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.m135_c01326{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);}
.m18f_c01326{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.m1af_c01326{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.m18e_c01326{transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176375,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01326{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mf5_c01326{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m16a_c01326{transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);}
.m19c_c01326{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01326{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);}
.m146_c01326{transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);}
.m134_c01326{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m18a_c01326{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);}
.m11a_c01326{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.m11f_c01326{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01326{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.m98_c01326{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m51_c01326{transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183125,0.000000,0.000000,0.250000,0,0);}
.mfc_c01326{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);}
.m90_c01326{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);}
.m172_c01326{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.mcd_c01326{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);}
.m1a_c01326{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.m9_c01326{transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);}
.m19e_c01326{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m96_c01326{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.mf4_c01326{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m9a_c01326{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);}
.m11e_c01326{transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189200,0.000000,0.000000,0.250000,0,0);}
.m69_c01326{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m3b_c01326{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m140_c01326{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.m185_c01326{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m162_c01326{transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191675,0.000000,0.000000,0.250000,0,0);}
.m181_c01326{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.mcf_c01326{transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192975,0.000000,0.000000,0.250000,0,0);}
.m7b_c01326{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.m137_c01326{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.m19f_c01326{transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194675,0.000000,0.000000,0.250000,0,0);}
.m18c_c01326{transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194900,0.000000,0.000000,0.250000,0,0);}
.med_c01326{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.m101_c01326{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);}
.m15f_c01326{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m144_c01326{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.m3e_c01326{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);}
.m8b_c01326{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m13d_c01326{transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);}
.m18b_c01326{transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);}
.m13_c01326{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m191_c01326{transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);}
.m184_c01326{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m161_c01326{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);}
.m108_c01326{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.mdd_c01326{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.m139_c01326{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.me9_c01326{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m113_c01326{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.m194_c01326{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);}
.m86_c01326{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m54_c01326{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);}
.m198_c01326{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.mea_c01326{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m52_c01326{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);}
.m64_c01326{transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200725,0.000000,0.000000,0.250000,0,0);}
.m80_c01326{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);}
.m131_c01326{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);}
.mbd_c01326{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.ma6_c01326{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01326{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.mc0_c01326{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);}
.m2a_c01326{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);}
.m1a7_c01326{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.m142_c01326{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m19b_c01326{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);}
.m17_c01326{transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);}
.m4f_c01326{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m15a_c01326{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);}
.m79_c01326{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);}
.m167_c01326{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);}
.me7_c01326{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);}
.m128_c01326{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.m6c_c01326{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m160_c01326{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);}
.m143_c01326{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);}
.m9e_c01326{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m3d_c01326{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m58_c01326{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m2b_c01326{transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);}
.m192_c01326{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);}
.mae_c01326{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.ma1_c01326{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);}
.m74_c01326{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);}
.mf7_c01326{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);}
.m156_c01326{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);}
.mdc_c01326{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01326{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);}
.m82_c01326{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.md6_c01326{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.m159_c01326{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);}
.m19d_c01326{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.m147_c01326{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);}
.mbc_c01326{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);}
.mb_c01326{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.m7e_c01326{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.mc4_c01326{transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);}
.md2_c01326{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);}
.m44_c01326{transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);}
.m78_c01326{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.mec_c01326{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);}
.m1a9_c01326{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);}
.me_c01326{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.m29_c01326{transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215625,0.000000,0.000000,0.250000,0,0);}
.mf8_c01326{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.m138_c01326{transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);}
.m41_c01326{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.m16c_c01326{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m154_c01326{transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218425,0.000000,0.000000,0.250000,0,0);}
.m15_c01326{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m17b_c01326{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);}
.m8c_c01326{transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220125,0.000000,0.000000,0.250000,0,0);}
.m197_c01326{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.md5_c01326{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.m102_c01326{transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);}
.me2_c01326{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m106_c01326{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.m34_c01326{transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222350,0.000000,0.000000,0.250000,0,0);}
.m153_c01326{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m148_c01326{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);}
.m13c_c01326{transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);}
.m13b_c01326{transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223250,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01326{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);}
.ma4_c01326{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m3f_c01326{transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223625,0.000000,0.000000,0.250000,0,0);}
.mc8_c01326{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);}
.m83_c01326{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mc5_c01326{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m8f_c01326{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m1_c01326{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);}
.m1b_c01326{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.mfe_c01326{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);}
.m100_c01326{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);}
.m149_c01326{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.m1e_c01326{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.mf_c01326{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);}
.m155_c01326{transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);}
.mcb_c01326{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);}
.m168_c01326{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);}
.md0_c01326{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);}
.m152_c01326{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m12a_c01326{transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01326{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.m107_c01326{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);}
.m9d_c01326{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.m13a_c01326{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.ma7_c01326{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.me6_c01326{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.m187_c01326{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.md_c01326{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);}
.m129_c01326{transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229625,0.000000,0.000000,0.250000,0,0);}
.mca_c01326{transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230050,0.000000,0.000000,0.250000,0,0);}
.m104_c01326{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);}
.m145_c01326{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m189_c01326{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);}
.m127_c01326{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.m10d_c01326{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);}
.m132_c01326{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);}
.mbb_c01326{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);}
.m188_c01326{transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);}
.ma0_c01326{transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);}
.mab_c01326{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);}
.me4_c01326{transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);}
.m190_c01326{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m65_c01326{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.mb3_c01326{transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);}
.m125_c01326{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.mf3_c01326{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.mad_c01326{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);}
.m126_c01326{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);}
.m99_c01326{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);}
.m12d_c01326{transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);}
.mb5_c01326{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);}
.m89_c01326{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.mc3_c01326{transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);}
.m118_c01326{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);}
.mac_c01326{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);}
.m123_c01326{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m97_c01326{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);}
.m3a_c01326{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);}
.m13f_c01326{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);}
.m16d_c01326{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m14_c01326{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);}
.m157_c01326{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.m105_c01326{transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242200,0.000000,0.000000,0.250000,0,0);}
.ma8_c01326{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);}
.mf1_c01326{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);}
.m116_c01326{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);}
.m110_c01326{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m193_c01326{transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245875,0.000000,0.000000,0.250000,0,0);}
.mb7_c01326{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.me1_c01326{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m171_c01326{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m12c_c01326{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);}
.m18d_c01326{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.mf9_c01326{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);}
.mde_c01326{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.m16b_c01326{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m31_c01326{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);}
.m30_c01326{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01326{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);}
.me5_c01326{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);}
.m9f_c01326{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);}
.m61_c01326{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);}
.m46_c01326{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m47_c01326{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01326{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc7_c01326{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);}
.mc2_c01326{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01326{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);}
.m76_c01326{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);}
.mcc_c01326{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m40_c01326{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);}
.m2c_c01326{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01326{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c01326{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);}
.mbe_c01326{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8d_c01326{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);}
.m1c_c01326{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);}
.m4e_c01326{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc9_c01326{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mba_c01326{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);}
.mc1_c01326{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01326{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mff_c01326{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);}
.mdf_c01326{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m55_c01326{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01326{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15d_c01326{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m111_c01326{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m25_c01326{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m13e_c01326{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m50_c01326{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m67_c01326{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);}
.mb4_c01326{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.maa_c01326{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mf6_c01326{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c01326{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01326{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);}
.m24_c01326{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m66_c01326{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);}
.m75_c01326{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m5_c01326{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);}
.me3_c01326{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01326{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);}
.m10b_c01326{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma9_c01326{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01326{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01326{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m73_c01326{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);}
.m1ac_c01326{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);}
.m133_c01326{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m6a_c01326{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);}
.m12b_c01326{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m71_c01326{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m17f_c01326{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.me0_c01326{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m23_c01326{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m43_c01326{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);}
.m45_c01326{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.ma2_c01326{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01326{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m16e_c01326{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mc6_c01326{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01326{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m112_c01326{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m42_c01326{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01326{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);}
.m117_c01326{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mee_c01326{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m77_c01326{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m19_c01326{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);}
.m1b6_c01326{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01326{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01326{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01326{transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.595000,0.000000,0.000000,0.250000,0,0);}
.m10a_c01326{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.m3_c01326{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);}
.m36_c01326{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m60_c01326{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m10_c01326{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01326{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);}
.m130_c01326{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01326{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m183_c01326{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m0_c01326{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.m26_c01326{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01326{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m14c_c01326{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m72_c01326{transform:matrix(1.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.287500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01326{transform:matrix(1.382500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.382500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.382500,0.000000,0.000000,0.250000,0,0);}
.m20_c01326{transform:matrix(1.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.415000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01326{transform:matrix(3.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.060000,0.000000,0.000000,0.250000,0,0);}
.m70_c01326{transform:matrix(4.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.742500,0.000000,0.000000,0.250000,0,0);}
.m12f_c01326{transform:matrix(4.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.780000,0.000000,0.000000,0.250000,0,0);}
.v2_c01326{vertical-align:-3.420000px;}
.v0_c01326{vertical-align:0.000000px;}
.v1_c01326{vertical-align:6.900000px;}
.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;}
}
.ws2_c01326{word-spacing:0.000000px;}
.ws1_c01326{word-spacing:1.940040px;}
.ws0_c01326{word-spacing:61.209000px;}
.fc0_c01326{color:transparent;}
.fs7_c01326{font-size:3.456000px;}
.fs6_c01326{font-size:6.000000px;}
.fs1a_c01326{font-size:6.900000px;}
.fs0_c01326{font-size:10.380000px;}
.fs3_c01326{font-size:13.800000px;}
.fs19_c01326{font-size:17.280000px;}
.fs1e_c01326{font-size:20.760000px;}
.fs1b_c01326{font-size:24.180000px;}
.fs1_c01326{font-size:27.660000px;}
.fs1f_c01326{font-size:31.080000px;}
.fs15_c01326{font-size:34.560000px;}
.fs17_c01326{font-size:38.040000px;}
.fs14_c01326{font-size:41.460000px;}
.fsd_c01326{font-size:44.940000px;}
.fs1c_c01326{font-size:48.360000px;}
.fs12_c01326{font-size:51.840000px;}
.fsf_c01326{font-size:55.320000px;}
.fs5_c01326{font-size:58.740000px;}
.fs4_c01326{font-size:62.220000px;}
.fs11_c01326{font-size:65.640000px;}
.fsc_c01326{font-size:69.120000px;}
.fsb_c01326{font-size:72.600000px;}
.fs8_c01326{font-size:76.020000px;}
.fse_c01326{font-size:79.500000px;}
.fs10_c01326{font-size:82.920000px;}
.fs13_c01326{font-size:86.400000px;}
.fs18_c01326{font-size:89.880000px;}
.fsa_c01326{font-size:93.300000px;}
.fs16_c01326{font-size:96.780000px;}
.fs20_c01326{font-size:100.200000px;}
.fs9_c01326{font-size:103.680000px;}
.fs2_c01326{font-size:107.160000px;}
.fs1d_c01326{font-size:148.620000px;}
.y0_c01326{bottom:0.000000px;}
.y1b7_c01326{bottom:181.440000px;}
.y1b8_c01326{bottom:184.890000px;}
.y1b6_c01326{bottom:185.760000px;}
.y1b4_c01326{bottom:200.445000px;}
.y1b3_c01326{bottom:202.170000px;}
.y1b5_c01326{bottom:205.635000px;}
.y1b2_c01326{bottom:207.360000px;}
.y1b1_c01326{bottom:220.320000px;}
.y1b0_c01326{bottom:222.045000px;}
.y1ae_c01326{bottom:240.195000px;}
.y1ac_c01326{bottom:241.920000px;}
.y1ab_c01326{bottom:243.645000px;}
.y1ad_c01326{bottom:247.965000px;}
.y1af_c01326{bottom:258.330000px;}
.y1a9_c01326{bottom:261.795000px;}
.y1aa_c01326{bottom:264.390000px;}
.y1a8_c01326{bottom:266.115000px;}
.y1a7_c01326{bottom:268.710000px;}
.y1a6_c01326{bottom:283.395000px;}
.y1a4_c01326{bottom:285.990000px;}
.y1a5_c01326{bottom:289.440000px;}
.y1a2_c01326{bottom:296.355000px;}
.y1a1_c01326{bottom:300.675000px;}
.y1a3_c01326{bottom:301.530000px;}
.y19e_c01326{bottom:303.270000px;}
.y1a0_c01326{bottom:305.850000px;}
.y19a_c01326{bottom:309.315000px;}
.y19f_c01326{bottom:310.170000px;}
.y19b_c01326{bottom:312.765000px;}
.y19d_c01326{bottom:314.490000px;}
.y19c_c01326{bottom:321.405000px;}
.y199_c01326{bottom:324.000000px;}
.y198_c01326{bottom:324.870000px;}
.y196_c01326{bottom:325.725000px;}
.y197_c01326{bottom:327.450000px;}
.y192_c01326{bottom:328.320000px;}
.y194_c01326{bottom:329.190000px;}
.y191_c01326{bottom:330.045000px;}
.y190_c01326{bottom:330.915000px;}
.y195_c01326{bottom:331.770000px;}
.y193_c01326{bottom:333.510000px;}
.y18f_c01326{bottom:344.730000px;}
.y18e_c01326{bottom:345.600000px;}
.y18a_c01326{bottom:346.470000px;}
.y18b_c01326{bottom:347.325000px;}
.y189_c01326{bottom:348.195000px;}
.y18d_c01326{bottom:350.790000px;}
.y18c_c01326{bottom:351.645000px;}
.y187_c01326{bottom:368.070000px;}
.y184_c01326{bottom:369.795000px;}
.y185_c01326{bottom:370.650000px;}
.y181_c01326{bottom:371.520000px;}
.y186_c01326{bottom:373.245000px;}
.y183_c01326{bottom:374.115000px;}
.y182_c01326{bottom:374.970000px;}
.y188_c01326{bottom:375.840000px;}
.y180_c01326{bottom:378.435000px;}
.y17f_c01326{bottom:384.480000px;}
.y17e_c01326{bottom:385.350000px;}
.y17a_c01326{bottom:387.930000px;}
.y17d_c01326{bottom:388.800000px;}
.y178_c01326{bottom:391.395000px;}
.y17b_c01326{bottom:394.845000px;}
.y17c_c01326{bottom:395.715000px;}
.y179_c01326{bottom:399.165000px;}
.y177_c01326{bottom:406.080000px;}
.y175_c01326{bottom:406.950000px;}
.y176_c01326{bottom:407.805000px;}
.y174_c01326{bottom:408.675000px;}
.y172_c01326{bottom:409.530000px;}
.y173_c01326{bottom:410.400000px;}
.y170_c01326{bottom:411.270000px;}
.y16f_c01326{bottom:412.995000px;}
.y171_c01326{bottom:416.445000px;}
.y16e_c01326{bottom:417.315000px;}
.y16d_c01326{bottom:425.955000px;}
.y16c_c01326{bottom:429.405000px;}
.y16a_c01326{bottom:430.275000px;}
.y169_c01326{bottom:431.130000px;}
.y16b_c01326{bottom:433.725000px;}
.y167_c01326{bottom:447.555000px;}
.y166_c01326{bottom:448.410000px;}
.y165_c01326{bottom:449.280000px;}
.y161_c01326{bottom:450.150000px;}
.y168_c01326{bottom:451.005000px;}
.y164_c01326{bottom:452.730000px;}
.y162_c01326{bottom:453.600000px;}
.y163_c01326{bottom:456.195000px;}
.y160_c01326{bottom:468.285000px;}
.y15e_c01326{bottom:471.750000px;}
.y15d_c01326{bottom:472.605000px;}
.y15c_c01326{bottom:474.330000px;}
.y15f_c01326{bottom:475.200000px;}
.y159_c01326{bottom:489.030000px;}
.y157_c01326{bottom:491.610000px;}
.y15b_c01326{bottom:493.350000px;}
.y15a_c01326{bottom:494.205000px;}
.y155_c01326{bottom:496.800000px;}
.y156_c01326{bottom:497.670000px;}
.y158_c01326{bottom:499.395000px;}
.y154_c01326{bottom:507.165000px;}
.y153_c01326{bottom:508.890000px;}
.y152_c01326{bottom:509.760000px;}
.y14f_c01326{bottom:513.210000px;}
.y150_c01326{bottom:514.080000px;}
.y14e_c01326{bottom:516.675000px;}
.y151_c01326{bottom:522.720000px;}
.y14d_c01326{bottom:524.445000px;}
.y14b_c01326{bottom:525.315000px;}
.y149_c01326{bottom:527.040000px;}
.y147_c01326{bottom:528.765000px;}
.y14a_c01326{bottom:533.085000px;}
.y14c_c01326{bottom:534.810000px;}
.y148_c01326{bottom:538.275000px;}
.y146_c01326{bottom:549.510000px;}
.y143_c01326{bottom:552.090000px;}
.y142_c01326{bottom:552.960000px;}
.y140_c01326{bottom:553.830000px;}
.y145_c01326{bottom:556.410000px;}
.y144_c01326{bottom:557.280000px;}
.y141_c01326{bottom:559.005000px;}
.y13f_c01326{bottom:560.730000px;}
.y13d_c01326{bottom:569.370000px;}
.y13b_c01326{bottom:570.240000px;}
.y139_c01326{bottom:571.965000px;}
.y13e_c01326{bottom:572.835000px;}
.y138_c01326{bottom:573.690000px;}
.y136_c01326{bottom:574.560000px;}
.y135_c01326{bottom:575.430000px;}
.y13c_c01326{bottom:576.285000px;}
.y13a_c01326{bottom:577.155000px;}
.y137_c01326{bottom:578.880000px;}
.y134_c01326{bottom:590.115000px;}
.y133_c01326{bottom:591.840000px;}
.y130_c01326{bottom:593.565000px;}
.y12f_c01326{bottom:595.290000px;}
.y132_c01326{bottom:596.160000px;}
.y131_c01326{bottom:597.885000px;}
.y12e_c01326{bottom:600.480000px;}
.y12b_c01326{bottom:610.845000px;}
.y129_c01326{bottom:611.715000px;}
.y12a_c01326{bottom:612.570000px;}
.y127_c01326{bottom:613.440000px;}
.y126_c01326{bottom:614.310000px;}
.y12d_c01326{bottom:615.165000px;}
.y12c_c01326{bottom:616.035000px;}
.y128_c01326{bottom:618.630000px;}
.y124_c01326{bottom:628.995000px;}
.y121_c01326{bottom:631.590000px;}
.y125_c01326{bottom:632.445000px;}
.y120_c01326{bottom:635.040000px;}
.y122_c01326{bottom:636.765000px;}
.y123_c01326{bottom:639.360000px;}
.y11f_c01326{bottom:641.085000px;}
.y11e_c01326{bottom:648.870000px;}
.y11d_c01326{bottom:649.725000px;}
.y11b_c01326{bottom:651.450000px;}
.y11c_c01326{bottom:652.320000px;}
.y11a_c01326{bottom:653.190000px;}
.y118_c01326{bottom:655.770000px;}
.y119_c01326{bottom:658.365000px;}
.y117_c01326{bottom:671.325000px;}
.y115_c01326{bottom:672.195000px;}
.y113_c01326{bottom:673.050000px;}
.y116_c01326{bottom:673.920000px;}
.y112_c01326{bottom:675.645000px;}
.y114_c01326{bottom:678.240000px;}
.y111_c01326{bottom:679.110000px;}
.y110_c01326{bottom:688.605000px;}
.y10c_c01326{bottom:692.925000px;}
.y10e_c01326{bottom:693.795000px;}
.y10b_c01326{bottom:696.390000px;}
.y10f_c01326{bottom:697.245000px;}
.y10d_c01326{bottom:698.115000px;}
.y109_c01326{bottom:711.930000px;}
.y106_c01326{bottom:714.525000px;}
.y10a_c01326{bottom:715.395000px;}
.y104_c01326{bottom:716.250000px;}
.y108_c01326{bottom:717.120000px;}
.y107_c01326{bottom:717.990000px;}
.y105_c01326{bottom:718.845000px;}
.y103_c01326{bottom:720.570000px;}
.y102_c01326{bottom:724.035000px;}
.y101_c01326{bottom:729.210000px;}
.yff_c01326{bottom:730.080000px;}
.y100_c01326{bottom:730.950000px;}
.yfe_c01326{bottom:732.675000px;}
.yf9_c01326{bottom:735.270000px;}
.yfd_c01326{bottom:736.125000px;}
.yfc_c01326{bottom:737.850000px;}
.yfa_c01326{bottom:745.635000px;}
.yfb_c01326{bottom:747.360000px;}
.yf6_c01326{bottom:753.405000px;}
.yf5_c01326{bottom:754.275000px;}
.yf7_c01326{bottom:756.870000px;}
.yf4_c01326{bottom:757.725000px;}
.yf3_c01326{bottom:769.830000px;}
.yf8_c01326{bottom:771.555000px;}
.yf2_c01326{bottom:773.280000px;}
.yef_c01326{bottom:774.150000px;}
.yf0_c01326{bottom:775.875000px;}
.yf1_c01326{bottom:776.730000px;}
.yeb_c01326{bottom:778.470000px;}
.yee_c01326{bottom:780.195000px;}
.yed_c01326{bottom:781.050000px;}
.yec_c01326{bottom:781.920000px;}
.yea_c01326{bottom:791.430000px;}
.ye8_c01326{bottom:793.155000px;}
.ye7_c01326{bottom:794.880000px;}
.ye5_c01326{bottom:795.750000px;}
.ye4_c01326{bottom:796.605000px;}
.ye9_c01326{bottom:797.475000px;}
.ye2_c01326{bottom:798.330000px;}
.ye6_c01326{bottom:799.200000px;}
.ye3_c01326{bottom:801.795000px;}
.ye1_c01326{bottom:813.885000px;}
.yde_c01326{bottom:816.480000px;}
.ye0_c01326{bottom:818.205000px;}
.ydd_c01326{bottom:819.075000px;}
.ydf_c01326{bottom:820.800000px;}
.ydb_c01326{bottom:833.760000px;}
.yda_c01326{bottom:835.485000px;}
.yd8_c01326{bottom:836.355000px;}
.yd6_c01326{bottom:837.210000px;}
.ydc_c01326{bottom:838.080000px;}
.yd9_c01326{bottom:838.950000px;}
.yd7_c01326{bottom:839.805000px;}
.yd4_c01326{bottom:856.230000px;}
.yd2_c01326{bottom:857.085000px;}
.yd3_c01326{bottom:857.955000px;}
.yd5_c01326{bottom:858.810000px;}
.yd1_c01326{bottom:861.405000px;}
.yd0_c01326{bottom:863.130000px;}
.yce_c01326{bottom:872.640000px;}
.yc9_c01326{bottom:876.090000px;}
.ycd_c01326{bottom:876.960000px;}
.ycb_c01326{bottom:877.830000px;}
.yc7_c01326{bottom:878.685000px;}
.ycc_c01326{bottom:879.555000px;}
.yca_c01326{bottom:880.410000px;}
.yc8_c01326{bottom:881.280000px;}
.ycf_c01326{bottom:884.730000px;}
.yc6_c01326{bottom:892.515000px;}
.yc5_c01326{bottom:895.110000px;}
.yc0_c01326{bottom:895.965000px;}
.ybf_c01326{bottom:896.835000px;}
.yc1_c01326{bottom:897.690000px;}
.yc2_c01326{bottom:898.560000px;}
.ybe_c01326{bottom:899.430000px;}
.yc4_c01326{bottom:900.285000px;}
.yc3_c01326{bottom:901.155000px;}
.ybd_c01326{bottom:902.010000px;}
.ybc_c01326{bottom:903.750000px;}
.yba_c01326{bottom:915.840000px;}
.yb6_c01326{bottom:916.710000px;}
.yb4_c01326{bottom:917.565000px;}
.ybb_c01326{bottom:918.435000px;}
.yb7_c01326{bottom:921.885000px;}
.yb5_c01326{bottom:922.755000px;}
.yb8_c01326{bottom:923.610000px;}
.yb3_c01326{bottom:924.480000px;}
.yb9_c01326{bottom:931.395000px;}
.yb1_c01326{bottom:935.715000px;}
.yb2_c01326{bottom:937.440000px;}
.yaf_c01326{bottom:938.310000px;}
.yad_c01326{bottom:940.035000px;}
.yb0_c01326{bottom:940.890000px;}
.yae_c01326{bottom:941.760000px;}
.yac_c01326{bottom:944.355000px;}
.yaa_c01326{bottom:954.720000px;}
.ya9_c01326{bottom:955.590000px;}
.ya6_c01326{bottom:958.170000px;}
.ya4_c01326{bottom:959.910000px;}
.ya8_c01326{bottom:960.765000px;}
.yab_c01326{bottom:961.635000px;}
.ya5_c01326{bottom:962.490000px;}
.ya7_c01326{bottom:963.360000px;}
.ya2_c01326{bottom:975.450000px;}
.y9d_c01326{bottom:976.320000px;}
.ya3_c01326{bottom:978.045000px;}
.ya1_c01326{bottom:978.915000px;}
.ya0_c01326{bottom:980.640000px;}
.y9f_c01326{bottom:981.510000px;}
.y9e_c01326{bottom:982.365000px;}
.y9c_c01326{bottom:983.235000px;}
.y9b_c01326{bottom:984.090000px;}
.y9a_c01326{bottom:993.600000px;}
.y99_c01326{bottom:994.470000px;}
.y98_c01326{bottom:995.325000px;}
.y97_c01326{bottom:996.195000px;}
.y95_c01326{bottom:997.920000px;}
.y93_c01326{bottom:998.790000px;}
.y91_c01326{bottom:999.645000px;}
.y94_c01326{bottom:1001.370000px;}
.y96_c01326{bottom:1002.240000px;}
.y92_c01326{bottom:1003.965000px;}
.y90_c01326{bottom:1014.330000px;}
.y8f_c01326{bottom:1015.200000px;}
.y8d_c01326{bottom:1016.070000px;}
.y8c_c01326{bottom:1016.925000px;}
.y8e_c01326{bottom:1017.795000px;}
.y89_c01326{bottom:1019.520000px;}
.y8b_c01326{bottom:1023.840000px;}
.y8a_c01326{bottom:1024.710000px;}
.y86_c01326{bottom:1036.800000px;}
.y83_c01326{bottom:1038.525000px;}
.y85_c01326{bottom:1039.395000px;}
.y88_c01326{bottom:1040.250000px;}
.y84_c01326{bottom:1041.990000px;}
.y87_c01326{bottom:1042.845000px;}
.y1be_c01326{bottom:1044.570000px;}
.y82_c01326{bottom:1056.675000px;}
.y80_c01326{bottom:1057.530000px;}
.y7e_c01326{bottom:1058.400000px;}
.y7b_c01326{bottom:1059.270000px;}
.y7d_c01326{bottom:1060.125000px;}
.y81_c01326{bottom:1061.850000px;}
.y7f_c01326{bottom:1063.590000px;}
.y7c_c01326{bottom:1064.445000px;}
.y7a_c01326{bottom:1065.315000px;}
.y78_c01326{bottom:1077.405000px;}
.y77_c01326{bottom:1079.130000px;}
.y74_c01326{bottom:1080.000000px;}
.y75_c01326{bottom:1080.870000px;}
.y79_c01326{bottom:1081.725000px;}
.y72_c01326{bottom:1082.595000px;}
.y73_c01326{bottom:1083.450000px;}
.y76_c01326{bottom:1084.320000px;}
.y71_c01326{bottom:1096.410000px;}
.y70_c01326{bottom:1098.150000px;}
.y6d_c01326{bottom:1099.005000px;}
.y6b_c01326{bottom:1099.875000px;}
.y6c_c01326{bottom:1100.730000px;}
.y6e_c01326{bottom:1101.600000px;}
.y68_c01326{bottom:1102.470000px;}
.y6f_c01326{bottom:1103.325000px;}
.y69_c01326{bottom:1105.050000px;}
.y6a_c01326{bottom:1105.920000px;}
.y66_c01326{bottom:1118.010000px;}
.y65_c01326{bottom:1118.880000px;}
.y64_c01326{bottom:1119.750000px;}
.y63_c01326{bottom:1123.200000px;}
.y67_c01326{bottom:1131.840000px;}
.y5c_c01326{bottom:1139.610000px;}
.y62_c01326{bottom:1141.350000px;}
.y54_c01326{bottom:1142.205000px;}
.y5f_c01326{bottom:1143.930000px;}
.y5d_c01326{bottom:1145.670000px;}
.y61_c01326{bottom:1146.525000px;}
.y60_c01326{bottom:1149.120000px;}
.y5b_c01326{bottom:1151.715000px;}
.y58_c01326{bottom:1152.570000px;}
.y5a_c01326{bottom:1153.440000px;}
.y59_c01326{bottom:1154.310000px;}
.y57_c01326{bottom:1155.165000px;}
.y5e_c01326{bottom:1157.760000px;}
.y56_c01326{bottom:1158.630000px;}
.y55_c01326{bottom:1160.355000px;}
.y50_c01326{bottom:1161.210000px;}
.y51_c01326{bottom:1162.950000px;}
.y52_c01326{bottom:1165.530000px;}
.y53_c01326{bottom:1168.125000px;}
.y4f_c01326{bottom:1178.490000px;}
.y4e_c01326{bottom:1180.230000px;}
.y4d_c01326{bottom:1181.085000px;}
.y4b_c01326{bottom:1181.955000px;}
.y49_c01326{bottom:1185.405000px;}
.y4a_c01326{bottom:1186.275000px;}
.y4c_c01326{bottom:1191.450000px;}
.y44_c01326{bottom:1194.915000px;}
.y42_c01326{bottom:1195.770000px;}
.y41_c01326{bottom:1196.640000px;}
.y45_c01326{bottom:1197.510000px;}
.y47_c01326{bottom:1201.830000px;}
.y43_c01326{bottom:1202.685000px;}
.y46_c01326{bottom:1205.280000px;}
.y48_c01326{bottom:1209.600000px;}
.y3f_c01326{bottom:1219.110000px;}
.y3c_c01326{bottom:1221.690000px;}
.y3b_c01326{bottom:1222.560000px;}
.y40_c01326{bottom:1223.430000px;}
.y3e_c01326{bottom:1224.285000px;}
.y3d_c01326{bottom:1226.880000px;}
.y3a_c01326{bottom:1227.750000px;}
.y1bc_c01326{bottom:1234.650000px;}
.y1bd_c01326{bottom:1235.520000px;}
.y37_c01326{bottom:1240.710000px;}
.y38_c01326{bottom:1241.565000px;}
.y39_c01326{bottom:1242.435000px;}
.y35_c01326{bottom:1243.290000px;}
.y32_c01326{bottom:1244.160000px;}
.y31_c01326{bottom:1245.030000px;}
.y33_c01326{bottom:1245.885000px;}
.y36_c01326{bottom:1246.755000px;}
.y34_c01326{bottom:1247.610000px;}
.y2f_c01326{bottom:1257.990000px;}
.y2e_c01326{bottom:1259.715000px;}
.y2a_c01326{bottom:1261.440000px;}
.y28_c01326{bottom:1262.310000px;}
.y2c_c01326{bottom:1263.165000px;}
.y29_c01326{bottom:1264.035000px;}
.y2b_c01326{bottom:1266.630000px;}
.y30_c01326{bottom:1271.805000px;}
.y2d_c01326{bottom:1278.720000px;}
.y26_c01326{bottom:1282.170000px;}
.y23_c01326{bottom:1283.040000px;}
.y24_c01326{bottom:1283.910000px;}
.y22_c01326{bottom:1284.765000px;}
.y25_c01326{bottom:1288.230000px;}
.y1ba_c01326{bottom:1290.810000px;}
.y1b9_c01326{bottom:1293.405000px;}
.y27_c01326{bottom:1297.725000px;}
.y21_c01326{bottom:1301.190000px;}
.y1d_c01326{bottom:1302.915000px;}
.y1c_c01326{bottom:1303.770000px;}
.y1f_c01326{bottom:1305.510000px;}
.y1e_c01326{bottom:1308.090000px;}
.y20_c01326{bottom:1315.875000px;}
.y1a_c01326{bottom:1320.195000px;}
.y19_c01326{bottom:1322.790000px;}
.y15_c01326{bottom:1323.645000px;}
.y16_c01326{bottom:1325.370000px;}
.y18_c01326{bottom:1327.965000px;}
.y17_c01326{bottom:1328.835000px;}
.y1b_c01326{bottom:1334.880000px;}
.y14_c01326{bottom:1338.330000px;}
.y12_c01326{bottom:1342.650000px;}
.ye_c01326{bottom:1344.390000px;}
.yf_c01326{bottom:1345.245000px;}
.yb_c01326{bottom:1346.115000px;}
.y13_c01326{bottom:1346.970000px;}
.yd_c01326{bottom:1347.840000px;}
.y11_c01326{bottom:1348.710000px;}
.y10_c01326{bottom:1349.565000px;}
.yc_c01326{bottom:1350.435000px;}
.y9_c01326{bottom:1367.715000px;}
.y8_c01326{bottom:1370.310000px;}
.ya_c01326{bottom:1375.485000px;}
.y1bb_c01326{bottom:1389.315000px;}
.y7_c01326{bottom:1395.360000px;}
.y6_c01326{bottom:1399.680000px;}
.y5_c01326{bottom:1414.365000px;}
.y3_c01326{bottom:1429.050000px;}
.y4_c01326{bottom:1439.430000px;}
.y2_c01326{bottom:1455.840000px;}
.y1_c01326{bottom:1465.350000px;}
.h9_c01326{height:3.110063px;}
.h8_c01326{height:5.399414px;}
.h1c_c01326{height:6.209326px;}
.h2_c01326{height:9.340986px;}
.h5_c01326{height:12.418652px;}
.h1b_c01326{height:15.550313px;}
.h20_c01326{height:18.681973px;}
.h1d_c01326{height:21.759639px;}
.h3_c01326{height:24.891299px;}
.h21_c01326{height:27.968965px;}
.h17_c01326{height:31.100625px;}
.h19_c01326{height:34.232285px;}
.h16_c01326{height:37.309951px;}
.hf_c01326{height:40.441611px;}
.h1e_c01326{height:43.519277px;}
.h14_c01326{height:46.650937px;}
.h11_c01326{height:49.782598px;}
.h7_c01326{height:52.860264px;}
.h6_c01326{height:55.991924px;}
.h13_c01326{height:59.069590px;}
.he_c01326{height:62.201250px;}
.h22_c01326{height:62.891924px;}
.hd_c01326{height:65.332910px;}
.ha_c01326{height:68.410576px;}
.h10_c01326{height:71.542236px;}
.h12_c01326{height:74.619902px;}
.h15_c01326{height:77.751563px;}
.h1a_c01326{height:80.883223px;}
.hc_c01326{height:83.960889px;}
.h18_c01326{height:87.092549px;}
.h23_c01326{height:90.170215px;}
.hb_c01326{height:93.301875px;}
.h4_c01326{height:96.433535px;}
.h1f_c01326{height:133.743486px;}
.h1_c01326{height:1513.500000px;}
.h0_c01326{height:1513.725000px;}
.w0_c01326{width:1083.450000px;}
.w1_c01326{width:1083.750000px;}
.x0_c01326{left:0.000000px;}
.x109_c01326{left:122.685000px;}
.x108_c01326{left:133.920000px;}
.x106_c01326{left:141.690000px;}
.x107_c01326{left:161.565000px;}
.xc8_c01326{left:199.590000px;}
.xc9_c01326{left:216.870000px;}
.x5c_c01326{left:222.915000px;}
.xd3_c01326{left:228.960000px;}
.xd5_c01326{left:230.685000px;}
.xfe_c01326{left:232.410000px;}
.xfb_c01326{left:237.600000px;}
.xdb_c01326{left:239.325000px;}
.xd6_c01326{left:241.050000px;}
.x97_c01326{left:242.790000px;}
.xbd_c01326{left:245.370000px;}
.x65_c01326{left:247.110000px;}
.x17_c01326{left:248.835000px;}
.xab_c01326{left:250.560000px;}
.x86_c01326{left:252.285000px;}
.x7d_c01326{left:254.010000px;}
.x18_c01326{left:255.750000px;}
.x66_c01326{left:257.475000px;}
.x8_c01326{left:259.200000px;}
.x56_c01326{left:262.650000px;}
.x9f_c01326{left:264.390000px;}
.xa5_c01326{left:267.840000px;}
.x57_c01326{left:273.885000px;}
.x3e_c01326{left:276.480000px;}
.xbe_c01326{left:285.120000px;}
.xa6_c01326{left:290.310000px;}
.x5d_c01326{left:294.630000px;}
.xa0_c01326{left:297.210000px;}
.xd7_c01326{left:299.805000px;}
.x67_c01326{left:302.400000px;}
.xaf_c01326{left:304.995000px;}
.x70_c01326{left:306.720000px;}
.x98_c01326{left:310.170000px;}
.x90_c01326{left:312.765000px;}
.x50_c01326{left:314.490000px;}
.x31_c01326{left:316.230000px;}
.xe3_c01326{left:317.955000px;}
.xc_c01326{left:323.130000px;}
.x78_c01326{left:327.450000px;}
.xca_c01326{left:330.045000px;}
.xef_c01326{left:331.770000px;}
.x26_c01326{left:334.365000px;}
.xcf_c01326{left:337.830000px;}
.xd_c01326{left:339.555000px;}
.x87_c01326{left:341.280000px;}
.xe9_c01326{left:343.005000px;}
.x8c_c01326{left:344.730000px;}
.x1f_c01326{left:347.325000px;}
.x51_c01326{left:349.920000px;}
.x3f_c01326{left:351.645000px;}
.xe2_c01326{left:355.110000px;}
.x32_c01326{left:358.560000px;}
.xb9_c01326{left:361.155000px;}
.x7e_c01326{left:364.605000px;}
.x1_c01326{left:367.200000px;}
.x2_c01326{left:369.795000px;}
.x33_c01326{left:373.245000px;}
.x5e_c01326{left:374.970000px;}
.x5_c01326{left:376.710000px;}
.x4_c01326{left:379.290000px;}
.x7f_c01326{left:381.885000px;}
.xbf_c01326{left:384.480000px;}
.xed_c01326{left:386.205000px;}
.x19_c01326{left:389.670000px;}
.xd8_c01326{left:391.395000px;}
.x2a_c01326{left:393.120000px;}
.xf3_c01326{left:397.440000px;}
.x5f_c01326{left:399.165000px;}
.x71_c01326{left:400.890000px;}
.x9_c01326{left:403.485000px;}
.x27_c01326{left:406.080000px;}
.x101_c01326{left:408.675000px;}
.xb0_c01326{left:410.400000px;}
.x34_c01326{left:412.125000px;}
.x3_c01326{left:414.720000px;}
.xea_c01326{left:416.445000px;}
.x20_c01326{left:418.170000px;}
.xc3_c01326{left:419.910000px;}
.x6b_c01326{left:422.490000px;}
.xb3_c01326{left:426.810000px;}
.x8d_c01326{left:428.550000px;}
.x2b_c01326{left:431.130000px;}
.xcb_c01326{left:434.595000px;}
.xdf_c01326{left:437.190000px;}
.xdc_c01326{left:439.770000px;}
.xe6_c01326{left:442.365000px;}
.xe7_c01326{left:446.685000px;}
.xf4_c01326{left:448.410000px;}
.xff_c01326{left:450.150000px;}
.xf0_c01326{left:451.875000px;}
.x4b_c01326{left:455.325000px;}
.xb1_c01326{left:457.920000px;}
.xcc_c01326{left:460.515000px;}
.x99_c01326{left:462.240000px;}
.xf5_c01326{left:467.430000px;}
.xd2_c01326{left:471.750000px;}
.x58_c01326{left:473.475000px;}
.xdd_c01326{left:476.925000px;}
.x1a_c01326{left:479.520000px;}
.x35_c01326{left:481.245000px;}
.x91_c01326{left:483.840000px;}
.x21_c01326{left:488.160000px;}
.x6c_c01326{left:492.480000px;}
.x40_c01326{left:495.930000px;}
.x1b_c01326{left:497.670000px;}
.xf9_c01326{left:501.120000px;}
.xc0_c01326{left:502.845000px;}
.x72_c01326{left:504.570000px;}
.x8e_c01326{left:506.310000px;}
.xf7_c01326{left:509.760000px;}
.x2c_c01326{left:513.210000px;}
.xeb_c01326{left:516.675000px;}
.xfa_c01326{left:518.400000px;}
.x36_c01326{left:520.125000px;}
.xba_c01326{left:523.590000px;}
.xa_c01326{left:526.170000px;}
.xd0_c01326{left:527.910000px;}
.x9b_c01326{left:529.635000px;}
.xe0_c01326{left:534.810000px;}
.x22_c01326{left:536.550000px;}
.x6_c01326{left:539.130000px;}
.x37_c01326{left:540.870000px;}
.x92_c01326{left:542.595000px;}
.xa1_c01326{left:549.510000px;}
.x80_c01326{left:552.960000px;}
.xe_c01326{left:555.555000px;}
.xa2_c01326{left:557.280000px;}
.xbb_c01326{left:559.005000px;}
.xa7_c01326{left:562.470000px;}
.x81_c01326{left:564.195000px;}
.xf_c01326{left:566.790000px;}
.xf8_c01326{left:569.370000px;}
.x23_c01326{left:571.110000px;}
.xb8_c01326{left:573.690000px;}
.xcd_c01326{left:575.430000px;}
.x1c_c01326{left:577.155000px;}
.x41_c01326{left:579.750000px;}
.xa3_c01326{left:581.475000px;}
.x79_c01326{left:583.200000px;}
.x10_c01326{left:584.925000px;}
.x24_c01326{left:588.390000px;}
.x59_c01326{left:590.115000px;}
.xbc_c01326{left:593.565000px;}
.xc4_c01326{left:596.160000px;}
.x25_c01326{left:598.755000px;}
.x2d_c01326{left:600.480000px;}
.xd1_c01326{left:602.205000px;}
.x42_c01326{left:603.930000px;}
.x68_c01326{left:605.670000px;}
.xe1_c01326{left:607.395000px;}
.xac_c01326{left:609.120000px;}
.x5a_c01326{left:611.715000px;}
.x4c_c01326{left:613.440000px;}
.x88_c01326{left:615.165000px;}
.x52_c01326{left:618.630000px;}
.x38_c01326{left:622.080000px;}
.x11_c01326{left:628.125000px;}
.x60_c01326{left:630.720000px;}
.x6d_c01326{left:633.315000px;}
.x9a_c01326{left:636.765000px;}
.x82_c01326{left:644.550000px;}
.x9c_c01326{left:646.275000px;}
.x102_c01326{left:648.000000px;}
.x39_c01326{left:650.595000px;}
.x73_c01326{left:654.045000px;}
.xa4_c01326{left:656.640000px;}
.xb4_c01326{left:659.235000px;}
.x93_c01326{left:660.960000px;}
.x43_c01326{left:662.685000px;}
.x61_c01326{left:665.280000px;}
.x28_c01326{left:667.875000px;}
.x2e_c01326{left:669.600000px;}
.x105_c01326{left:673.050000px;}
.x6e_c01326{left:676.515000px;}
.xc1_c01326{left:678.240000px;}
.xe4_c01326{left:679.965000px;}
.x9d_c01326{left:682.560000px;}
.x12_c01326{left:685.155000px;}
.x7_c01326{left:686.880000px;}
.x62_c01326{left:688.605000px;}
.x44_c01326{left:691.200000px;}
.xb_c01326{left:693.795000px;}
.x94_c01326{left:697.245000px;}
.x89_c01326{left:699.840000px;}
.xc5_c01326{left:701.565000px;}
.x13_c01326{left:704.160000px;}
.x45_c01326{left:706.755000px;}
.x4d_c01326{left:708.480000px;}
.xfc_c01326{left:710.205000px;}
.xb5_c01326{left:712.800000px;}
.x53_c01326{left:714.525000px;}
.xa8_c01326{left:716.250000px;}
.x8a_c01326{left:719.715000px;}
.xf1_c01326{left:724.035000px;}
.x5b_c01326{left:725.760000px;}
.x1d_c01326{left:728.355000px;}
.x83_c01326{left:730.080000px;}
.x63_c01326{left:732.675000px;}
.x74_c01326{left:735.270000px;}
.x7a_c01326{left:736.995000px;}
.xad_c01326{left:738.720000px;}
.x2f_c01326{left:741.315000px;}
.x46_c01326{left:743.040000px;}
.x3a_c01326{left:745.635000px;}
.x14_c01326{left:748.230000px;}
.x95_c01326{left:750.810000px;}
.xb6_c01326{left:752.550000px;}
.x69_c01326{left:757.725000px;}
.xf2_c01326{left:760.320000px;}
.x84_c01326{left:762.915000px;}
.x3b_c01326{left:764.640000px;}
.x9e_c01326{left:769.830000px;}
.x64_c01326{left:772.410000px;}
.x47_c01326{left:776.730000px;}
.xe8_c01326{left:778.470000px;}
.x7b_c01326{left:781.050000px;}
.x4e_c01326{left:784.515000px;}
.xb2_c01326{left:787.110000px;}
.x4f_c01326{left:790.560000px;}
.xd9_c01326{left:794.010000px;}
.x48_c01326{left:795.750000px;}
.x103_c01326{left:797.475000px;}
.xa9_c01326{left:800.925000px;}
.x54_c01326{left:803.520000px;}
.x3c_c01326{left:806.970000px;}
.x75_c01326{left:809.565000px;}
.xee_c01326{left:811.290000px;}
.x100_c01326{left:813.030000px;}
.x1e_c01326{left:815.610000px;}
.x6f_c01326{left:819.075000px;}
.x15_c01326{left:821.670000px;}
.xf6_c01326{left:823.395000px;}
.xc2_c01326{left:825.120000px;}
.x29_c01326{left:827.715000px;}
.xfd_c01326{left:829.440000px;}
.xc6_c01326{left:831.165000px;}
.xb7_c01326{left:833.760000px;}
.x55_c01326{left:838.080000px;}
.x8f_c01326{left:839.805000px;}
.x49_c01326{left:843.270000px;}
.xc7_c01326{left:844.995000px;}
.xe5_c01326{left:846.720000px;}
.x76_c01326{left:848.445000px;}
.x4a_c01326{left:851.040000px;}
.x8b_c01326{left:852.765000px;}
.xaa_c01326{left:855.360000px;}
.x6a_c01326{left:857.085000px;}
.x16_c01326{left:858.810000px;}
.x7c_c01326{left:860.550000px;}
.x85_c01326{left:862.275000px;}
.x77_c01326{left:864.000000px;}
.xec_c01326{left:873.510000px;}
.xce_c01326{left:875.235000px;}
.x104_c01326{left:876.960000px;}
.x96_c01326{left:879.555000px;}
.x3d_c01326{left:882.150000px;}
.xde_c01326{left:883.875000px;}
.xd4_c01326{left:888.195000px;}
.x30_c01326{left:891.645000px;}
.xae_c01326{left:894.240000px;}
.xda_c01326{left:920.160000px;}
.x10d_c01326{left:941.760000px;}
.x10a_c01326{left:947.805000px;}
.x10b_c01326{left:1012.605000px;}
.x10c_c01326{left:1020.390000px;}
.x10e_c01326{left:1067.910000px;}
@media print{
.v2_c01326{vertical-align:-3.040000pt;}
.v0_c01326{vertical-align:0.000000pt;}
.v1_c01326{vertical-align:6.133333pt;}
.ls0_c01326{letter-spacing:0.000000pt;}
.ws2_c01326{word-spacing:0.000000pt;}
.ws1_c01326{word-spacing:1.724480pt;}
.ws0_c01326{word-spacing:54.408000pt;}
.fs7_c01326{font-size:3.072000pt;}
.fs6_c01326{font-size:5.333333pt;}
.fs1a_c01326{font-size:6.133333pt;}
.fs0_c01326{font-size:9.226667pt;}
.fs3_c01326{font-size:12.266667pt;}
.fs19_c01326{font-size:15.360000pt;}
.fs1e_c01326{font-size:18.453333pt;}
.fs1b_c01326{font-size:21.493333pt;}
.fs1_c01326{font-size:24.586667pt;}
.fs1f_c01326{font-size:27.626667pt;}
.fs15_c01326{font-size:30.720000pt;}
.fs17_c01326{font-size:33.813333pt;}
.fs14_c01326{font-size:36.853333pt;}
.fsd_c01326{font-size:39.946667pt;}
.fs1c_c01326{font-size:42.986667pt;}
.fs12_c01326{font-size:46.080000pt;}
.fsf_c01326{font-size:49.173333pt;}
.fs5_c01326{font-size:52.213333pt;}
.fs4_c01326{font-size:55.306667pt;}
.fs11_c01326{font-size:58.346667pt;}
.fsc_c01326{font-size:61.440000pt;}
.fsb_c01326{font-size:64.533333pt;}
.fs8_c01326{font-size:67.573333pt;}
.fse_c01326{font-size:70.666667pt;}
.fs10_c01326{font-size:73.706667pt;}
.fs13_c01326{font-size:76.800000pt;}
.fs18_c01326{font-size:79.893333pt;}
.fsa_c01326{font-size:82.933333pt;}
.fs16_c01326{font-size:86.026667pt;}
.fs20_c01326{font-size:89.066667pt;}
.fs9_c01326{font-size:92.160000pt;}
.fs2_c01326{font-size:95.253333pt;}
.fs1d_c01326{font-size:132.106667pt;}
.y0_c01326{bottom:0.000000pt;}
.y1b7_c01326{bottom:161.280000pt;}
.y1b8_c01326{bottom:164.346667pt;}
.y1b6_c01326{bottom:165.120000pt;}
.y1b4_c01326{bottom:178.173333pt;}
.y1b3_c01326{bottom:179.706667pt;}
.y1b5_c01326{bottom:182.786667pt;}
.y1b2_c01326{bottom:184.320000pt;}
.y1b1_c01326{bottom:195.840000pt;}
.y1b0_c01326{bottom:197.373333pt;}
.y1ae_c01326{bottom:213.506667pt;}
.y1ac_c01326{bottom:215.040000pt;}
.y1ab_c01326{bottom:216.573333pt;}
.y1ad_c01326{bottom:220.413333pt;}
.y1af_c01326{bottom:229.626667pt;}
.y1a9_c01326{bottom:232.706667pt;}
.y1aa_c01326{bottom:235.013333pt;}
.y1a8_c01326{bottom:236.546667pt;}
.y1a7_c01326{bottom:238.853333pt;}
.y1a6_c01326{bottom:251.906667pt;}
.y1a4_c01326{bottom:254.213333pt;}
.y1a5_c01326{bottom:257.280000pt;}
.y1a2_c01326{bottom:263.426667pt;}
.y1a1_c01326{bottom:267.266667pt;}
.y1a3_c01326{bottom:268.026667pt;}
.y19e_c01326{bottom:269.573333pt;}
.y1a0_c01326{bottom:271.866667pt;}
.y19a_c01326{bottom:274.946667pt;}
.y19f_c01326{bottom:275.706667pt;}
.y19b_c01326{bottom:278.013333pt;}
.y19d_c01326{bottom:279.546667pt;}
.y19c_c01326{bottom:285.693333pt;}
.y199_c01326{bottom:288.000000pt;}
.y198_c01326{bottom:288.773333pt;}
.y196_c01326{bottom:289.533333pt;}
.y197_c01326{bottom:291.066667pt;}
.y192_c01326{bottom:291.840000pt;}
.y194_c01326{bottom:292.613333pt;}
.y191_c01326{bottom:293.373333pt;}
.y190_c01326{bottom:294.146667pt;}
.y195_c01326{bottom:294.906667pt;}
.y193_c01326{bottom:296.453333pt;}
.y18f_c01326{bottom:306.426667pt;}
.y18e_c01326{bottom:307.200000pt;}
.y18a_c01326{bottom:307.973333pt;}
.y18b_c01326{bottom:308.733333pt;}
.y189_c01326{bottom:309.506667pt;}
.y18d_c01326{bottom:311.813333pt;}
.y18c_c01326{bottom:312.573333pt;}
.y187_c01326{bottom:327.173333pt;}
.y184_c01326{bottom:328.706667pt;}
.y185_c01326{bottom:329.466667pt;}
.y181_c01326{bottom:330.240000pt;}
.y186_c01326{bottom:331.773333pt;}
.y183_c01326{bottom:332.546667pt;}
.y182_c01326{bottom:333.306667pt;}
.y188_c01326{bottom:334.080000pt;}
.y180_c01326{bottom:336.386667pt;}
.y17f_c01326{bottom:341.760000pt;}
.y17e_c01326{bottom:342.533333pt;}
.y17a_c01326{bottom:344.826667pt;}
.y17d_c01326{bottom:345.600000pt;}
.y178_c01326{bottom:347.906667pt;}
.y17b_c01326{bottom:350.973333pt;}
.y17c_c01326{bottom:351.746667pt;}
.y179_c01326{bottom:354.813333pt;}
.y177_c01326{bottom:360.960000pt;}
.y175_c01326{bottom:361.733333pt;}
.y176_c01326{bottom:362.493333pt;}
.y174_c01326{bottom:363.266667pt;}
.y172_c01326{bottom:364.026667pt;}
.y173_c01326{bottom:364.800000pt;}
.y170_c01326{bottom:365.573333pt;}
.y16f_c01326{bottom:367.106667pt;}
.y171_c01326{bottom:370.173333pt;}
.y16e_c01326{bottom:370.946667pt;}
.y16d_c01326{bottom:378.626667pt;}
.y16c_c01326{bottom:381.693333pt;}
.y16a_c01326{bottom:382.466667pt;}
.y169_c01326{bottom:383.226667pt;}
.y16b_c01326{bottom:385.533333pt;}
.y167_c01326{bottom:397.826667pt;}
.y166_c01326{bottom:398.586667pt;}
.y165_c01326{bottom:399.360000pt;}
.y161_c01326{bottom:400.133333pt;}
.y168_c01326{bottom:400.893333pt;}
.y164_c01326{bottom:402.426667pt;}
.y162_c01326{bottom:403.200000pt;}
.y163_c01326{bottom:405.506667pt;}
.y160_c01326{bottom:416.253333pt;}
.y15e_c01326{bottom:419.333333pt;}
.y15d_c01326{bottom:420.093333pt;}
.y15c_c01326{bottom:421.626667pt;}
.y15f_c01326{bottom:422.400000pt;}
.y159_c01326{bottom:434.693333pt;}
.y157_c01326{bottom:436.986667pt;}
.y15b_c01326{bottom:438.533333pt;}
.y15a_c01326{bottom:439.293333pt;}
.y155_c01326{bottom:441.600000pt;}
.y156_c01326{bottom:442.373333pt;}
.y158_c01326{bottom:443.906667pt;}
.y154_c01326{bottom:450.813333pt;}
.y153_c01326{bottom:452.346667pt;}
.y152_c01326{bottom:453.120000pt;}
.y14f_c01326{bottom:456.186667pt;}
.y150_c01326{bottom:456.960000pt;}
.y14e_c01326{bottom:459.266667pt;}
.y151_c01326{bottom:464.640000pt;}
.y14d_c01326{bottom:466.173333pt;}
.y14b_c01326{bottom:466.946667pt;}
.y149_c01326{bottom:468.480000pt;}
.y147_c01326{bottom:470.013333pt;}
.y14a_c01326{bottom:473.853333pt;}
.y14c_c01326{bottom:475.386667pt;}
.y148_c01326{bottom:478.466667pt;}
.y146_c01326{bottom:488.453333pt;}
.y143_c01326{bottom:490.746667pt;}
.y142_c01326{bottom:491.520000pt;}
.y140_c01326{bottom:492.293333pt;}
.y145_c01326{bottom:494.586667pt;}
.y144_c01326{bottom:495.360000pt;}
.y141_c01326{bottom:496.893333pt;}
.y13f_c01326{bottom:498.426667pt;}
.y13d_c01326{bottom:506.106667pt;}
.y13b_c01326{bottom:506.880000pt;}
.y139_c01326{bottom:508.413333pt;}
.y13e_c01326{bottom:509.186667pt;}
.y138_c01326{bottom:509.946667pt;}
.y136_c01326{bottom:510.720000pt;}
.y135_c01326{bottom:511.493333pt;}
.y13c_c01326{bottom:512.253333pt;}
.y13a_c01326{bottom:513.026667pt;}
.y137_c01326{bottom:514.560000pt;}
.y134_c01326{bottom:524.546667pt;}
.y133_c01326{bottom:526.080000pt;}
.y130_c01326{bottom:527.613333pt;}
.y12f_c01326{bottom:529.146667pt;}
.y132_c01326{bottom:529.920000pt;}
.y131_c01326{bottom:531.453333pt;}
.y12e_c01326{bottom:533.760000pt;}
.y12b_c01326{bottom:542.973333pt;}
.y129_c01326{bottom:543.746667pt;}
.y12a_c01326{bottom:544.506667pt;}
.y127_c01326{bottom:545.280000pt;}
.y126_c01326{bottom:546.053333pt;}
.y12d_c01326{bottom:546.813333pt;}
.y12c_c01326{bottom:547.586667pt;}
.y128_c01326{bottom:549.893333pt;}
.y124_c01326{bottom:559.106667pt;}
.y121_c01326{bottom:561.413333pt;}
.y125_c01326{bottom:562.173333pt;}
.y120_c01326{bottom:564.480000pt;}
.y122_c01326{bottom:566.013333pt;}
.y123_c01326{bottom:568.320000pt;}
.y11f_c01326{bottom:569.853333pt;}
.y11e_c01326{bottom:576.773333pt;}
.y11d_c01326{bottom:577.533333pt;}
.y11b_c01326{bottom:579.066667pt;}
.y11c_c01326{bottom:579.840000pt;}
.y11a_c01326{bottom:580.613333pt;}
.y118_c01326{bottom:582.906667pt;}
.y119_c01326{bottom:585.213333pt;}
.y117_c01326{bottom:596.733333pt;}
.y115_c01326{bottom:597.506667pt;}
.y113_c01326{bottom:598.266667pt;}
.y116_c01326{bottom:599.040000pt;}
.y112_c01326{bottom:600.573333pt;}
.y114_c01326{bottom:602.880000pt;}
.y111_c01326{bottom:603.653333pt;}
.y110_c01326{bottom:612.093333pt;}
.y10c_c01326{bottom:615.933333pt;}
.y10e_c01326{bottom:616.706667pt;}
.y10b_c01326{bottom:619.013333pt;}
.y10f_c01326{bottom:619.773333pt;}
.y10d_c01326{bottom:620.546667pt;}
.y109_c01326{bottom:632.826667pt;}
.y106_c01326{bottom:635.133333pt;}
.y10a_c01326{bottom:635.906667pt;}
.y104_c01326{bottom:636.666667pt;}
.y108_c01326{bottom:637.440000pt;}
.y107_c01326{bottom:638.213333pt;}
.y105_c01326{bottom:638.973333pt;}
.y103_c01326{bottom:640.506667pt;}
.y102_c01326{bottom:643.586667pt;}
.y101_c01326{bottom:648.186667pt;}
.yff_c01326{bottom:648.960000pt;}
.y100_c01326{bottom:649.733333pt;}
.yfe_c01326{bottom:651.266667pt;}
.yf9_c01326{bottom:653.573333pt;}
.yfd_c01326{bottom:654.333333pt;}
.yfc_c01326{bottom:655.866667pt;}
.yfa_c01326{bottom:662.786667pt;}
.yfb_c01326{bottom:664.320000pt;}
.yf6_c01326{bottom:669.693333pt;}
.yf5_c01326{bottom:670.466667pt;}
.yf7_c01326{bottom:672.773333pt;}
.yf4_c01326{bottom:673.533333pt;}
.yf3_c01326{bottom:684.293333pt;}
.yf8_c01326{bottom:685.826667pt;}
.yf2_c01326{bottom:687.360000pt;}
.yef_c01326{bottom:688.133333pt;}
.yf0_c01326{bottom:689.666667pt;}
.yf1_c01326{bottom:690.426667pt;}
.yeb_c01326{bottom:691.973333pt;}
.yee_c01326{bottom:693.506667pt;}
.yed_c01326{bottom:694.266667pt;}
.yec_c01326{bottom:695.040000pt;}
.yea_c01326{bottom:703.493333pt;}
.ye8_c01326{bottom:705.026667pt;}
.ye7_c01326{bottom:706.560000pt;}
.ye5_c01326{bottom:707.333333pt;}
.ye4_c01326{bottom:708.093333pt;}
.ye9_c01326{bottom:708.866667pt;}
.ye2_c01326{bottom:709.626667pt;}
.ye6_c01326{bottom:710.400000pt;}
.ye3_c01326{bottom:712.706667pt;}
.ye1_c01326{bottom:723.453333pt;}
.yde_c01326{bottom:725.760000pt;}
.ye0_c01326{bottom:727.293333pt;}
.ydd_c01326{bottom:728.066667pt;}
.ydf_c01326{bottom:729.600000pt;}
.ydb_c01326{bottom:741.120000pt;}
.yda_c01326{bottom:742.653333pt;}
.yd8_c01326{bottom:743.426667pt;}
.yd6_c01326{bottom:744.186667pt;}
.ydc_c01326{bottom:744.960000pt;}
.yd9_c01326{bottom:745.733333pt;}
.yd7_c01326{bottom:746.493333pt;}
.yd4_c01326{bottom:761.093333pt;}
.yd2_c01326{bottom:761.853333pt;}
.yd3_c01326{bottom:762.626667pt;}
.yd5_c01326{bottom:763.386667pt;}
.yd1_c01326{bottom:765.693333pt;}
.yd0_c01326{bottom:767.226667pt;}
.yce_c01326{bottom:775.680000pt;}
.yc9_c01326{bottom:778.746667pt;}
.ycd_c01326{bottom:779.520000pt;}
.ycb_c01326{bottom:780.293333pt;}
.yc7_c01326{bottom:781.053333pt;}
.ycc_c01326{bottom:781.826667pt;}
.yca_c01326{bottom:782.586667pt;}
.yc8_c01326{bottom:783.360000pt;}
.ycf_c01326{bottom:786.426667pt;}
.yc6_c01326{bottom:793.346667pt;}
.yc5_c01326{bottom:795.653333pt;}
.yc0_c01326{bottom:796.413333pt;}
.ybf_c01326{bottom:797.186667pt;}
.yc1_c01326{bottom:797.946667pt;}
.yc2_c01326{bottom:798.720000pt;}
.ybe_c01326{bottom:799.493333pt;}
.yc4_c01326{bottom:800.253333pt;}
.yc3_c01326{bottom:801.026667pt;}
.ybd_c01326{bottom:801.786667pt;}
.ybc_c01326{bottom:803.333333pt;}
.yba_c01326{bottom:814.080000pt;}
.yb6_c01326{bottom:814.853333pt;}
.yb4_c01326{bottom:815.613333pt;}
.ybb_c01326{bottom:816.386667pt;}
.yb7_c01326{bottom:819.453333pt;}
.yb5_c01326{bottom:820.226667pt;}
.yb8_c01326{bottom:820.986667pt;}
.yb3_c01326{bottom:821.760000pt;}
.yb9_c01326{bottom:827.906667pt;}
.yb1_c01326{bottom:831.746667pt;}
.yb2_c01326{bottom:833.280000pt;}
.yaf_c01326{bottom:834.053333pt;}
.yad_c01326{bottom:835.586667pt;}
.yb0_c01326{bottom:836.346667pt;}
.yae_c01326{bottom:837.120000pt;}
.yac_c01326{bottom:839.426667pt;}
.yaa_c01326{bottom:848.640000pt;}
.ya9_c01326{bottom:849.413333pt;}
.ya6_c01326{bottom:851.706667pt;}
.ya4_c01326{bottom:853.253333pt;}
.ya8_c01326{bottom:854.013333pt;}
.yab_c01326{bottom:854.786667pt;}
.ya5_c01326{bottom:855.546667pt;}
.ya7_c01326{bottom:856.320000pt;}
.ya2_c01326{bottom:867.066667pt;}
.y9d_c01326{bottom:867.840000pt;}
.ya3_c01326{bottom:869.373333pt;}
.ya1_c01326{bottom:870.146667pt;}
.ya0_c01326{bottom:871.680000pt;}
.y9f_c01326{bottom:872.453333pt;}
.y9e_c01326{bottom:873.213333pt;}
.y9c_c01326{bottom:873.986667pt;}
.y9b_c01326{bottom:874.746667pt;}
.y9a_c01326{bottom:883.200000pt;}
.y99_c01326{bottom:883.973333pt;}
.y98_c01326{bottom:884.733333pt;}
.y97_c01326{bottom:885.506667pt;}
.y95_c01326{bottom:887.040000pt;}
.y93_c01326{bottom:887.813333pt;}
.y91_c01326{bottom:888.573333pt;}
.y94_c01326{bottom:890.106667pt;}
.y96_c01326{bottom:890.880000pt;}
.y92_c01326{bottom:892.413333pt;}
.y90_c01326{bottom:901.626667pt;}
.y8f_c01326{bottom:902.400000pt;}
.y8d_c01326{bottom:903.173333pt;}
.y8c_c01326{bottom:903.933333pt;}
.y8e_c01326{bottom:904.706667pt;}
.y89_c01326{bottom:906.240000pt;}
.y8b_c01326{bottom:910.080000pt;}
.y8a_c01326{bottom:910.853333pt;}
.y86_c01326{bottom:921.600000pt;}
.y83_c01326{bottom:923.133333pt;}
.y85_c01326{bottom:923.906667pt;}
.y88_c01326{bottom:924.666667pt;}
.y84_c01326{bottom:926.213333pt;}
.y87_c01326{bottom:926.973333pt;}
.y1be_c01326{bottom:928.506667pt;}
.y82_c01326{bottom:939.266667pt;}
.y80_c01326{bottom:940.026667pt;}
.y7e_c01326{bottom:940.800000pt;}
.y7b_c01326{bottom:941.573333pt;}
.y7d_c01326{bottom:942.333333pt;}
.y81_c01326{bottom:943.866667pt;}
.y7f_c01326{bottom:945.413333pt;}
.y7c_c01326{bottom:946.173333pt;}
.y7a_c01326{bottom:946.946667pt;}
.y78_c01326{bottom:957.693333pt;}
.y77_c01326{bottom:959.226667pt;}
.y74_c01326{bottom:960.000000pt;}
.y75_c01326{bottom:960.773333pt;}
.y79_c01326{bottom:961.533333pt;}
.y72_c01326{bottom:962.306667pt;}
.y73_c01326{bottom:963.066667pt;}
.y76_c01326{bottom:963.840000pt;}
.y71_c01326{bottom:974.586667pt;}
.y70_c01326{bottom:976.133333pt;}
.y6d_c01326{bottom:976.893333pt;}
.y6b_c01326{bottom:977.666667pt;}
.y6c_c01326{bottom:978.426667pt;}
.y6e_c01326{bottom:979.200000pt;}
.y68_c01326{bottom:979.973333pt;}
.y6f_c01326{bottom:980.733333pt;}
.y69_c01326{bottom:982.266667pt;}
.y6a_c01326{bottom:983.040000pt;}
.y66_c01326{bottom:993.786667pt;}
.y65_c01326{bottom:994.560000pt;}
.y64_c01326{bottom:995.333333pt;}
.y63_c01326{bottom:998.400000pt;}
.y67_c01326{bottom:1006.080000pt;}
.y5c_c01326{bottom:1012.986667pt;}
.y62_c01326{bottom:1014.533333pt;}
.y54_c01326{bottom:1015.293333pt;}
.y5f_c01326{bottom:1016.826667pt;}
.y5d_c01326{bottom:1018.373333pt;}
.y61_c01326{bottom:1019.133333pt;}
.y60_c01326{bottom:1021.440000pt;}
.y5b_c01326{bottom:1023.746667pt;}
.y58_c01326{bottom:1024.506667pt;}
.y5a_c01326{bottom:1025.280000pt;}
.y59_c01326{bottom:1026.053333pt;}
.y57_c01326{bottom:1026.813333pt;}
.y5e_c01326{bottom:1029.120000pt;}
.y56_c01326{bottom:1029.893333pt;}
.y55_c01326{bottom:1031.426667pt;}
.y50_c01326{bottom:1032.186667pt;}
.y51_c01326{bottom:1033.733333pt;}
.y52_c01326{bottom:1036.026667pt;}
.y53_c01326{bottom:1038.333333pt;}
.y4f_c01326{bottom:1047.546667pt;}
.y4e_c01326{bottom:1049.093333pt;}
.y4d_c01326{bottom:1049.853333pt;}
.y4b_c01326{bottom:1050.626667pt;}
.y49_c01326{bottom:1053.693333pt;}
.y4a_c01326{bottom:1054.466667pt;}
.y4c_c01326{bottom:1059.066667pt;}
.y44_c01326{bottom:1062.146667pt;}
.y42_c01326{bottom:1062.906667pt;}
.y41_c01326{bottom:1063.680000pt;}
.y45_c01326{bottom:1064.453333pt;}
.y47_c01326{bottom:1068.293333pt;}
.y43_c01326{bottom:1069.053333pt;}
.y46_c01326{bottom:1071.360000pt;}
.y48_c01326{bottom:1075.200000pt;}
.y3f_c01326{bottom:1083.653333pt;}
.y3c_c01326{bottom:1085.946667pt;}
.y3b_c01326{bottom:1086.720000pt;}
.y40_c01326{bottom:1087.493333pt;}
.y3e_c01326{bottom:1088.253333pt;}
.y3d_c01326{bottom:1090.560000pt;}
.y3a_c01326{bottom:1091.333333pt;}
.y1bc_c01326{bottom:1097.466667pt;}
.y1bd_c01326{bottom:1098.240000pt;}
.y37_c01326{bottom:1102.853333pt;}
.y38_c01326{bottom:1103.613333pt;}
.y39_c01326{bottom:1104.386667pt;}
.y35_c01326{bottom:1105.146667pt;}
.y32_c01326{bottom:1105.920000pt;}
.y31_c01326{bottom:1106.693333pt;}
.y33_c01326{bottom:1107.453333pt;}
.y36_c01326{bottom:1108.226667pt;}
.y34_c01326{bottom:1108.986667pt;}
.y2f_c01326{bottom:1118.213333pt;}
.y2e_c01326{bottom:1119.746667pt;}
.y2a_c01326{bottom:1121.280000pt;}
.y28_c01326{bottom:1122.053333pt;}
.y2c_c01326{bottom:1122.813333pt;}
.y29_c01326{bottom:1123.586667pt;}
.y2b_c01326{bottom:1125.893333pt;}
.y30_c01326{bottom:1130.493333pt;}
.y2d_c01326{bottom:1136.640000pt;}
.y26_c01326{bottom:1139.706667pt;}
.y23_c01326{bottom:1140.480000pt;}
.y24_c01326{bottom:1141.253333pt;}
.y22_c01326{bottom:1142.013333pt;}
.y25_c01326{bottom:1145.093333pt;}
.y1ba_c01326{bottom:1147.386667pt;}
.y1b9_c01326{bottom:1149.693333pt;}
.y27_c01326{bottom:1153.533333pt;}
.y21_c01326{bottom:1156.613333pt;}
.y1d_c01326{bottom:1158.146667pt;}
.y1c_c01326{bottom:1158.906667pt;}
.y1f_c01326{bottom:1160.453333pt;}
.y1e_c01326{bottom:1162.746667pt;}
.y20_c01326{bottom:1169.666667pt;}
.y1a_c01326{bottom:1173.506667pt;}
.y19_c01326{bottom:1175.813333pt;}
.y15_c01326{bottom:1176.573333pt;}
.y16_c01326{bottom:1178.106667pt;}
.y18_c01326{bottom:1180.413333pt;}
.y17_c01326{bottom:1181.186667pt;}
.y1b_c01326{bottom:1186.560000pt;}
.y14_c01326{bottom:1189.626667pt;}
.y12_c01326{bottom:1193.466667pt;}
.ye_c01326{bottom:1195.013333pt;}
.yf_c01326{bottom:1195.773333pt;}
.yb_c01326{bottom:1196.546667pt;}
.y13_c01326{bottom:1197.306667pt;}
.yd_c01326{bottom:1198.080000pt;}
.y11_c01326{bottom:1198.853333pt;}
.y10_c01326{bottom:1199.613333pt;}
.yc_c01326{bottom:1200.386667pt;}
.y9_c01326{bottom:1215.746667pt;}
.y8_c01326{bottom:1218.053333pt;}
.ya_c01326{bottom:1222.653333pt;}
.y1bb_c01326{bottom:1234.946667pt;}
.y7_c01326{bottom:1240.320000pt;}
.y6_c01326{bottom:1244.160000pt;}
.y5_c01326{bottom:1257.213333pt;}
.y3_c01326{bottom:1270.266667pt;}
.y4_c01326{bottom:1279.493333pt;}
.y2_c01326{bottom:1294.080000pt;}
.y1_c01326{bottom:1302.533333pt;}
.h9_c01326{height:2.764500pt;}
.h8_c01326{height:4.799479pt;}
.h1c_c01326{height:5.519401pt;}
.h2_c01326{height:8.303099pt;}
.h5_c01326{height:11.038802pt;}
.h1b_c01326{height:13.822500pt;}
.h20_c01326{height:16.606198pt;}
.h1d_c01326{height:19.341901pt;}
.h3_c01326{height:22.125599pt;}
.h21_c01326{height:24.861302pt;}
.h17_c01326{height:27.645000pt;}
.h19_c01326{height:30.428698pt;}
.h16_c01326{height:33.164401pt;}
.hf_c01326{height:35.948099pt;}
.h1e_c01326{height:38.683802pt;}
.h14_c01326{height:41.467500pt;}
.h11_c01326{height:44.251198pt;}
.h7_c01326{height:46.986901pt;}
.h6_c01326{height:49.770599pt;}
.h13_c01326{height:52.506302pt;}
.he_c01326{height:55.290000pt;}
.h22_c01326{height:55.903932pt;}
.hd_c01326{height:58.073698pt;}
.ha_c01326{height:60.809401pt;}
.h10_c01326{height:63.593099pt;}
.h12_c01326{height:66.328802pt;}
.h15_c01326{height:69.112500pt;}
.h1a_c01326{height:71.896198pt;}
.hc_c01326{height:74.631901pt;}
.h18_c01326{height:77.415599pt;}
.h23_c01326{height:80.151302pt;}
.hb_c01326{height:82.935000pt;}
.h4_c01326{height:85.718698pt;}
.h1f_c01326{height:118.883099pt;}
.h1_c01326{height:1345.333333pt;}
.h0_c01326{height:1345.533333pt;}
.w0_c01326{width:963.066667pt;}
.w1_c01326{width:963.333333pt;}
.x0_c01326{left:0.000000pt;}
.x109_c01326{left:109.053333pt;}
.x108_c01326{left:119.040000pt;}
.x106_c01326{left:125.946667pt;}
.x107_c01326{left:143.613333pt;}
.xc8_c01326{left:177.413333pt;}
.xc9_c01326{left:192.773333pt;}
.x5c_c01326{left:198.146667pt;}
.xd3_c01326{left:203.520000pt;}
.xd5_c01326{left:205.053333pt;}
.xfe_c01326{left:206.586667pt;}
.xfb_c01326{left:211.200000pt;}
.xdb_c01326{left:212.733333pt;}
.xd6_c01326{left:214.266667pt;}
.x97_c01326{left:215.813333pt;}
.xbd_c01326{left:218.106667pt;}
.x65_c01326{left:219.653333pt;}
.x17_c01326{left:221.186667pt;}
.xab_c01326{left:222.720000pt;}
.x86_c01326{left:224.253333pt;}
.x7d_c01326{left:225.786667pt;}
.x18_c01326{left:227.333333pt;}
.x66_c01326{left:228.866667pt;}
.x8_c01326{left:230.400000pt;}
.x56_c01326{left:233.466667pt;}
.x9f_c01326{left:235.013333pt;}
.xa5_c01326{left:238.080000pt;}
.x57_c01326{left:243.453333pt;}
.x3e_c01326{left:245.760000pt;}
.xbe_c01326{left:253.440000pt;}
.xa6_c01326{left:258.053333pt;}
.x5d_c01326{left:261.893333pt;}
.xa0_c01326{left:264.186667pt;}
.xd7_c01326{left:266.493333pt;}
.x67_c01326{left:268.800000pt;}
.xaf_c01326{left:271.106667pt;}
.x70_c01326{left:272.640000pt;}
.x98_c01326{left:275.706667pt;}
.x90_c01326{left:278.013333pt;}
.x50_c01326{left:279.546667pt;}
.x31_c01326{left:281.093333pt;}
.xe3_c01326{left:282.626667pt;}
.xc_c01326{left:287.226667pt;}
.x78_c01326{left:291.066667pt;}
.xca_c01326{left:293.373333pt;}
.xef_c01326{left:294.906667pt;}
.x26_c01326{left:297.213333pt;}
.xcf_c01326{left:300.293333pt;}
.xd_c01326{left:301.826667pt;}
.x87_c01326{left:303.360000pt;}
.xe9_c01326{left:304.893333pt;}
.x8c_c01326{left:306.426667pt;}
.x1f_c01326{left:308.733333pt;}
.x51_c01326{left:311.040000pt;}
.x3f_c01326{left:312.573333pt;}
.xe2_c01326{left:315.653333pt;}
.x32_c01326{left:318.720000pt;}
.xb9_c01326{left:321.026667pt;}
.x7e_c01326{left:324.093333pt;}
.x1_c01326{left:326.400000pt;}
.x2_c01326{left:328.706667pt;}
.x33_c01326{left:331.773333pt;}
.x5e_c01326{left:333.306667pt;}
.x5_c01326{left:334.853333pt;}
.x4_c01326{left:337.146667pt;}
.x7f_c01326{left:339.453333pt;}
.xbf_c01326{left:341.760000pt;}
.xed_c01326{left:343.293333pt;}
.x19_c01326{left:346.373333pt;}
.xd8_c01326{left:347.906667pt;}
.x2a_c01326{left:349.440000pt;}
.xf3_c01326{left:353.280000pt;}
.x5f_c01326{left:354.813333pt;}
.x71_c01326{left:356.346667pt;}
.x9_c01326{left:358.653333pt;}
.x27_c01326{left:360.960000pt;}
.x101_c01326{left:363.266667pt;}
.xb0_c01326{left:364.800000pt;}
.x34_c01326{left:366.333333pt;}
.x3_c01326{left:368.640000pt;}
.xea_c01326{left:370.173333pt;}
.x20_c01326{left:371.706667pt;}
.xc3_c01326{left:373.253333pt;}
.x6b_c01326{left:375.546667pt;}
.xb3_c01326{left:379.386667pt;}
.x8d_c01326{left:380.933333pt;}
.x2b_c01326{left:383.226667pt;}
.xcb_c01326{left:386.306667pt;}
.xdf_c01326{left:388.613333pt;}
.xdc_c01326{left:390.906667pt;}
.xe6_c01326{left:393.213333pt;}
.xe7_c01326{left:397.053333pt;}
.xf4_c01326{left:398.586667pt;}
.xff_c01326{left:400.133333pt;}
.xf0_c01326{left:401.666667pt;}
.x4b_c01326{left:404.733333pt;}
.xb1_c01326{left:407.040000pt;}
.xcc_c01326{left:409.346667pt;}
.x99_c01326{left:410.880000pt;}
.xf5_c01326{left:415.493333pt;}
.xd2_c01326{left:419.333333pt;}
.x58_c01326{left:420.866667pt;}
.xdd_c01326{left:423.933333pt;}
.x1a_c01326{left:426.240000pt;}
.x35_c01326{left:427.773333pt;}
.x91_c01326{left:430.080000pt;}
.x21_c01326{left:433.920000pt;}
.x6c_c01326{left:437.760000pt;}
.x40_c01326{left:440.826667pt;}
.x1b_c01326{left:442.373333pt;}
.xf9_c01326{left:445.440000pt;}
.xc0_c01326{left:446.973333pt;}
.x72_c01326{left:448.506667pt;}
.x8e_c01326{left:450.053333pt;}
.xf7_c01326{left:453.120000pt;}
.x2c_c01326{left:456.186667pt;}
.xeb_c01326{left:459.266667pt;}
.xfa_c01326{left:460.800000pt;}
.x36_c01326{left:462.333333pt;}
.xba_c01326{left:465.413333pt;}
.xa_c01326{left:467.706667pt;}
.xd0_c01326{left:469.253333pt;}
.x9b_c01326{left:470.786667pt;}
.xe0_c01326{left:475.386667pt;}
.x22_c01326{left:476.933333pt;}
.x6_c01326{left:479.226667pt;}
.x37_c01326{left:480.773333pt;}
.x92_c01326{left:482.306667pt;}
.xa1_c01326{left:488.453333pt;}
.x80_c01326{left:491.520000pt;}
.xe_c01326{left:493.826667pt;}
.xa2_c01326{left:495.360000pt;}
.xbb_c01326{left:496.893333pt;}
.xa7_c01326{left:499.973333pt;}
.x81_c01326{left:501.506667pt;}
.xf_c01326{left:503.813333pt;}
.xf8_c01326{left:506.106667pt;}
.x23_c01326{left:507.653333pt;}
.xb8_c01326{left:509.946667pt;}
.xcd_c01326{left:511.493333pt;}
.x1c_c01326{left:513.026667pt;}
.x41_c01326{left:515.333333pt;}
.xa3_c01326{left:516.866667pt;}
.x79_c01326{left:518.400000pt;}
.x10_c01326{left:519.933333pt;}
.x24_c01326{left:523.013333pt;}
.x59_c01326{left:524.546667pt;}
.xbc_c01326{left:527.613333pt;}
.xc4_c01326{left:529.920000pt;}
.x25_c01326{left:532.226667pt;}
.x2d_c01326{left:533.760000pt;}
.xd1_c01326{left:535.293333pt;}
.x42_c01326{left:536.826667pt;}
.x68_c01326{left:538.373333pt;}
.xe1_c01326{left:539.906667pt;}
.xac_c01326{left:541.440000pt;}
.x5a_c01326{left:543.746667pt;}
.x4c_c01326{left:545.280000pt;}
.x88_c01326{left:546.813333pt;}
.x52_c01326{left:549.893333pt;}
.x38_c01326{left:552.960000pt;}
.x11_c01326{left:558.333333pt;}
.x60_c01326{left:560.640000pt;}
.x6d_c01326{left:562.946667pt;}
.x9a_c01326{left:566.013333pt;}
.x82_c01326{left:572.933333pt;}
.x9c_c01326{left:574.466667pt;}
.x102_c01326{left:576.000000pt;}
.x39_c01326{left:578.306667pt;}
.x73_c01326{left:581.373333pt;}
.xa4_c01326{left:583.680000pt;}
.xb4_c01326{left:585.986667pt;}
.x93_c01326{left:587.520000pt;}
.x43_c01326{left:589.053333pt;}
.x61_c01326{left:591.360000pt;}
.x28_c01326{left:593.666667pt;}
.x2e_c01326{left:595.200000pt;}
.x105_c01326{left:598.266667pt;}
.x6e_c01326{left:601.346667pt;}
.xc1_c01326{left:602.880000pt;}
.xe4_c01326{left:604.413333pt;}
.x9d_c01326{left:606.720000pt;}
.x12_c01326{left:609.026667pt;}
.x7_c01326{left:610.560000pt;}
.x62_c01326{left:612.093333pt;}
.x44_c01326{left:614.400000pt;}
.xb_c01326{left:616.706667pt;}
.x94_c01326{left:619.773333pt;}
.x89_c01326{left:622.080000pt;}
.xc5_c01326{left:623.613333pt;}
.x13_c01326{left:625.920000pt;}
.x45_c01326{left:628.226667pt;}
.x4d_c01326{left:629.760000pt;}
.xfc_c01326{left:631.293333pt;}
.xb5_c01326{left:633.600000pt;}
.x53_c01326{left:635.133333pt;}
.xa8_c01326{left:636.666667pt;}
.x8a_c01326{left:639.746667pt;}
.xf1_c01326{left:643.586667pt;}
.x5b_c01326{left:645.120000pt;}
.x1d_c01326{left:647.426667pt;}
.x83_c01326{left:648.960000pt;}
.x63_c01326{left:651.266667pt;}
.x74_c01326{left:653.573333pt;}
.x7a_c01326{left:655.106667pt;}
.xad_c01326{left:656.640000pt;}
.x2f_c01326{left:658.946667pt;}
.x46_c01326{left:660.480000pt;}
.x3a_c01326{left:662.786667pt;}
.x14_c01326{left:665.093333pt;}
.x95_c01326{left:667.386667pt;}
.xb6_c01326{left:668.933333pt;}
.x69_c01326{left:673.533333pt;}
.xf2_c01326{left:675.840000pt;}
.x84_c01326{left:678.146667pt;}
.x3b_c01326{left:679.680000pt;}
.x9e_c01326{left:684.293333pt;}
.x64_c01326{left:686.586667pt;}
.x47_c01326{left:690.426667pt;}
.xe8_c01326{left:691.973333pt;}
.x7b_c01326{left:694.266667pt;}
.x4e_c01326{left:697.346667pt;}
.xb2_c01326{left:699.653333pt;}
.x4f_c01326{left:702.720000pt;}
.xd9_c01326{left:705.786667pt;}
.x48_c01326{left:707.333333pt;}
.x103_c01326{left:708.866667pt;}
.xa9_c01326{left:711.933333pt;}
.x54_c01326{left:714.240000pt;}
.x3c_c01326{left:717.306667pt;}
.x75_c01326{left:719.613333pt;}
.xee_c01326{left:721.146667pt;}
.x100_c01326{left:722.693333pt;}
.x1e_c01326{left:724.986667pt;}
.x6f_c01326{left:728.066667pt;}
.x15_c01326{left:730.373333pt;}
.xf6_c01326{left:731.906667pt;}
.xc2_c01326{left:733.440000pt;}
.x29_c01326{left:735.746667pt;}
.xfd_c01326{left:737.280000pt;}
.xc6_c01326{left:738.813333pt;}
.xb7_c01326{left:741.120000pt;}
.x55_c01326{left:744.960000pt;}
.x8f_c01326{left:746.493333pt;}
.x49_c01326{left:749.573333pt;}
.xc7_c01326{left:751.106667pt;}
.xe5_c01326{left:752.640000pt;}
.x76_c01326{left:754.173333pt;}
.x4a_c01326{left:756.480000pt;}
.x8b_c01326{left:758.013333pt;}
.xaa_c01326{left:760.320000pt;}
.x6a_c01326{left:761.853333pt;}
.x16_c01326{left:763.386667pt;}
.x7c_c01326{left:764.933333pt;}
.x85_c01326{left:766.466667pt;}
.x77_c01326{left:768.000000pt;}
.xec_c01326{left:776.453333pt;}
.xce_c01326{left:777.986667pt;}
.x104_c01326{left:779.520000pt;}
.x96_c01326{left:781.826667pt;}
.x3d_c01326{left:784.133333pt;}
.xde_c01326{left:785.666667pt;}
.xd4_c01326{left:789.506667pt;}
.x30_c01326{left:792.573333pt;}
.xae_c01326{left:794.880000pt;}
.xda_c01326{left:817.920000pt;}
.x10d_c01326{left:837.120000pt;}
.x10a_c01326{left:842.493333pt;}
.x10b_c01326{left:900.093333pt;}
.x10c_c01326{left:907.013333pt;}
.x10e_c01326{left:949.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9588ec2ae07c961cc96a17f3.woff2')format("woff");}.ff1_c01327{font-family:ff1_c01327;line-height:1.109863;font-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_c01327{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1af_c01327{transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);}
.m17c_c01327{transform:matrix(0.065725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065725,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01327{transform:matrix(0.076725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.076725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.076725,0.000000,0.000000,0.250000,0,0);}
.m14f_c01327{transform:matrix(0.086150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086150,0.000000,0.000000,0.250000,0,0);}
.m6d_c01327{transform:matrix(0.092400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092400,0.000000,0.000000,0.250000,0,0);}
.m13a_c01327{transform:matrix(0.093375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093375,0.000000,0.000000,0.250000,0,0);}
.m11c_c01327{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);}
.m17a_c01327{transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100550,0.000000,0.000000,0.250000,0,0);}
.mc3_c01327{transform:matrix(0.102550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102550,0.000000,0.000000,0.250000,0,0);}
.m105_c01327{transform:matrix(0.103150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103150,0.000000,0.000000,0.250000,0,0);}
.md7_c01327{transform:matrix(0.104675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104675,0.000000,0.000000,0.250000,0,0);}
.m102_c01327{transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01327{transform:matrix(0.107025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107025,0.000000,0.000000,0.250000,0,0);}
.m69_c01327{transform:matrix(0.107975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107975,0.000000,0.000000,0.250000,0,0);}
.m13_c01327{transform:matrix(0.108475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108475,0.000000,0.000000,0.250000,0,0);}
.m107_c01327{transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108550,0.000000,0.000000,0.250000,0,0);}
.m193_c01327{transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);}
.m15d_c01327{transform:matrix(0.109550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109550,0.000000,0.000000,0.250000,0,0);}
.m8a_c01327{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01327{transform:matrix(0.113025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113025,0.000000,0.000000,0.250000,0,0);}
.m15a_c01327{transform:matrix(0.113050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113050,0.000000,0.000000,0.250000,0,0);}
.m169_c01327{transform:matrix(0.113675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113675,0.000000,0.000000,0.250000,0,0);}
.m16b_c01327{transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);}
.ma2_c01327{transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116075,0.000000,0.000000,0.250000,0,0);}
.m15c_c01327{transform:matrix(0.116375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116375,0.000000,0.000000,0.250000,0,0);}
.mf7_c01327{transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);}
.m83_c01327{transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121500,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01327{transform:matrix(0.121600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121600,0.000000,0.000000,0.250000,0,0);}
.m17b_c01327{transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122525,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01327{transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123300,0.000000,0.000000,0.250000,0,0);}
.mb6_c01327{transform:matrix(0.124050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124050,0.000000,0.000000,0.250000,0,0);}
.m154_c01327{transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);}
.m147_c01327{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01327{transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126600,0.000000,0.000000,0.250000,0,0);}
.m38_c01327{transform:matrix(0.127275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127275,0.000000,0.000000,0.250000,0,0);}
.m139_c01327{transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127675,0.000000,0.000000,0.250000,0,0);}
.m14b_c01327{transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);}
.m21_c01327{transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128625,0.000000,0.000000,0.250000,0,0);}
.m17d_c01327{transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129025,0.000000,0.000000,0.250000,0,0);}
.mc1_c01327{transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129050,0.000000,0.000000,0.250000,0,0);}
.m13c_c01327{transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01327{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.mb7_c01327{transform:matrix(0.131125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131125,0.000000,0.000000,0.250000,0,0);}
.mdb_c01327{transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);}
.m106_c01327{transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134025,0.000000,0.000000,0.250000,0,0);}
.m136_c01327{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.mfd_c01327{transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134250,0.000000,0.000000,0.250000,0,0);}
.m5d_c01327{transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135025,0.000000,0.000000,0.250000,0,0);}
.m188_c01327{transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135675,0.000000,0.000000,0.250000,0,0);}
.m140_c01327{transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135875,0.000000,0.000000,0.250000,0,0);}
.mbb_c01327{transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136150,0.000000,0.000000,0.250000,0,0);}
.m57_c01327{transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);}
.m17e_c01327{transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);}
.mea_c01327{transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137100,0.000000,0.000000,0.250000,0,0);}
.m70_c01327{transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01327{transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137650,0.000000,0.000000,0.250000,0,0);}
.m133_c01327{transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137875,0.000000,0.000000,0.250000,0,0);}
.m185_c01327{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);}
.mf6_c01327{transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138050,0.000000,0.000000,0.250000,0,0);}
.m151_c01327{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.mf1_c01327{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m190_c01327{transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01327{transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139725,0.000000,0.000000,0.250000,0,0);}
.m5a_c01327{transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);}
.m179_c01327{transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);}
.m145_c01327{transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143250,0.000000,0.000000,0.250000,0,0);}
.m155_c01327{transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143700,0.000000,0.000000,0.250000,0,0);}
.m74_c01327{transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143900,0.000000,0.000000,0.250000,0,0);}
.m6_c01327{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01327{transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144125,0.000000,0.000000,0.250000,0,0);}
.m90_c01327{transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144775,0.000000,0.000000,0.250000,0,0);}
.m159_c01327{transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144875,0.000000,0.000000,0.250000,0,0);}
.mfa_c01327{transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145075,0.000000,0.000000,0.250000,0,0);}
.m15e_c01327{transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145475,0.000000,0.000000,0.250000,0,0);}
.m11f_c01327{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m16c_c01327{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);}
.mb5_c01327{transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);}
.m174_c01327{transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);}
.m58_c01327{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.m17f_c01327{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.m59_c01327{transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147475,0.000000,0.000000,0.250000,0,0);}
.m11d_c01327{transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01327{transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01327{transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148800,0.000000,0.000000,0.250000,0,0);}
.ma9_c01327{transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);}
.ma1_c01327{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.mc0_c01327{transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150275,0.000000,0.000000,0.250000,0,0);}
.m43_c01327{transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);}
.m26_c01327{transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);}
.m176_c01327{transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01327{transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152350,0.000000,0.000000,0.250000,0,0);}
.m71_c01327{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m14c_c01327{transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152425,0.000000,0.000000,0.250000,0,0);}
.m120_c01327{transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152450,0.000000,0.000000,0.250000,0,0);}
.m16e_c01327{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.m8f_c01327{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);}
.mec_c01327{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);}
.m183_c01327{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);}
.mb0_c01327{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01327{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);}
.m150_c01327{transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);}
.m138_c01327{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.m164_c01327{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.md0_c01327{transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);}
.m79_c01327{transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156700,0.000000,0.000000,0.250000,0,0);}
.m16d_c01327{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.m12d_c01327{transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157675,0.000000,0.000000,0.250000,0,0);}
.m8e_c01327{transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158000,0.000000,0.000000,0.250000,0,0);}
.ma4_c01327{transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158100,0.000000,0.000000,0.250000,0,0);}
.mf9_c01327{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);}
.m51_c01327{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);}
.m56_c01327{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m170_c01327{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);}
.m1c4_c01327{transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);}
.mcf_c01327{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m5b_c01327{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.m2a_c01327{transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);}
.m91_c01327{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.mf0_c01327{transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162925,0.000000,0.000000,0.250000,0,0);}
.m67_c01327{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.m10b_c01327{transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);}
.m13f_c01327{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.m12c_c01327{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.m11e_c01327{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m15b_c01327{transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167750,0.000000,0.000000,0.250000,0,0);}
.m163_c01327{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m127_c01327{transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168525,0.000000,0.000000,0.250000,0,0);}
.m9d_c01327{transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169550,0.000000,0.000000,0.250000,0,0);}
.m104_c01327{transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170350,0.000000,0.000000,0.250000,0,0);}
.meb_c01327{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m2d_c01327{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);}
.ma3_c01327{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.m156_c01327{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m137_c01327{transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171975,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01327{transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);}
.m184_c01327{transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);}
.m160_c01327{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m16f_c01327{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.m117_c01327{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.m3b_c01327{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01327{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.md5_c01327{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.mfb_c01327{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.m194_c01327{transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175300,0.000000,0.000000,0.250000,0,0);}
.m191_c01327{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.m72_c01327{transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175950,0.000000,0.000000,0.250000,0,0);}
.m171_c01327{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.mbf_c01327{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);}
.m197_c01327{transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177125,0.000000,0.000000,0.250000,0,0);}
.m146_c01327{transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177250,0.000000,0.000000,0.250000,0,0);}
.m142_c01327{transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177475,0.000000,0.000000,0.250000,0,0);}
.m189_c01327{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.mf3_c01327{transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);}
.m195_c01327{transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);}
.m19b_c01327{transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178350,0.000000,0.000000,0.250000,0,0);}
.m177_c01327{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m22_c01327{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01327{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01327{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);}
.m130_c01327{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);}
.m6b_c01327{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.mbd_c01327{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m55_c01327{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);}
.m1bc_c01327{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);}
.m1ae_c01327{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m12e_c01327{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01327{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m81_c01327{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m39_c01327{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);}
.m121_c01327{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);}
.m175_c01327{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01327{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.md4_c01327{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.m18a_c01327{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m116_c01327{transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01327{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m111_c01327{transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);}
.mce_c01327{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m109_c01327{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);}
.m103_c01327{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.m50_c01327{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.m13b_c01327{transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189350,0.000000,0.000000,0.250000,0,0);}
.mde_c01327{transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);}
.m135_c01327{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);}
.mdd_c01327{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.mb8_c01327{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m16a_c01327{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01327{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m8c_c01327{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m73_c01327{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.m4f_c01327{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);}
.m1b9_c01327{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01327{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);}
.m2b_c01327{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m18b_c01327{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.mfe_c01327{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m162_c01327{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.m78_c01327{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);}
.m187_c01327{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);}
.med_c01327{transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195525,0.000000,0.000000,0.250000,0,0);}
.m144_c01327{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);}
.md9_c01327{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);}
.m196_c01327{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);}
.m14d_c01327{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.m198_c01327{transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197950,0.000000,0.000000,0.250000,0,0);}
.m148_c01327{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01327{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.m14a_c01327{transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);}
.m134_c01327{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01327{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);}
.m48_c01327{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m113_c01327{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m33_c01327{transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201375,0.000000,0.000000,0.250000,0,0);}
.m167_c01327{transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202800,0.000000,0.000000,0.250000,0,0);}
.mab_c01327{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.mac_c01327{transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);}
.mc2_c01327{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.ma0_c01327{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.me6_c01327{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m7c_c01327{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.m3a_c01327{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.mff_c01327{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m110_c01327{transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01327{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.m10f_c01327{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.m192_c01327{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m13d_c01327{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m11b_c01327{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.m80_c01327{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);}
.m18e_c01327{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m25_c01327{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m86_c01327{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m18_c01327{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m13e_c01327{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);}
.mad_c01327{transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);}
.m166_c01327{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);}
.m1a3_c01327{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);}
.m157_c01327{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);}
.m46_c01327{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.me5_c01327{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.m161_c01327{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);}
.m199_c01327{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.maf_c01327{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);}
.m122_c01327{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.mb1_c01327{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01327{transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);}
.m143_c01327{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m52_c01327{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);}
.m1ba_c01327{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);}
.m165_c01327{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.mb4_c01327{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);}
.me0_c01327{transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212725,0.000000,0.000000,0.250000,0,0);}
.mc8_c01327{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.me8_c01327{transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214175,0.000000,0.000000,0.250000,0,0);}
.m173_c01327{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);}
.m19a_c01327{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.mb3_c01327{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.ma6_c01327{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.m115_c01327{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.md2_c01327{transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215900,0.000000,0.000000,0.250000,0,0);}
.ma5_c01327{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.m36_c01327{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);}
.mc_c01327{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.md6_c01327{transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);}
.mc5_c01327{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);}
.md3_c01327{transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);}
.ma7_c01327{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);}
.m66_c01327{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);}
.m92_c01327{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01327{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);}
.m152_c01327{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);}
.m153_c01327{transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);}
.me4_c01327{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);}
.mc7_c01327{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);}
.m149_c01327{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01327{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.m125_c01327{transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);}
.mfc_c01327{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);}
.m9b_c01327{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);}
.m19c_c01327{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mba_c01327{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m15f_c01327{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);}
.m126_c01327{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);}
.m129_c01327{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.m4e_c01327{transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);}
.m10d_c01327{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.m1be_c01327{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);}
.m12_c01327{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01327{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m8d_c01327{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);}
.m168_c01327{transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228675,0.000000,0.000000,0.250000,0,0);}
.m11a_c01327{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);}
.m7a_c01327{transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229600,0.000000,0.000000,0.250000,0,0);}
.m182_c01327{transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);}
.ma8_c01327{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);}
.m118_c01327{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);}
.m40_c01327{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.m186_c01327{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);}
.m10e_c01327{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);}
.m3e_c01327{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m18c_c01327{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);}
.me9_c01327{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m108_c01327{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);}
.m114_c01327{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);}
.m132_c01327{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);}
.mf5_c01327{transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233700,0.000000,0.000000,0.250000,0,0);}
.m31_c01327{transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);}
.m5c_c01327{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);}
.mdc_c01327{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);}
.m7d_c01327{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.m87_c01327{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);}
.m141_c01327{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.mf2_c01327{transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235900,0.000000,0.000000,0.250000,0,0);}
.m9c_c01327{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);}
.me3_c01327{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);}
.m85_c01327{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01327{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);}
.m16_c01327{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);}
.m89_c01327{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m12f_c01327{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.mee_c01327{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m82_c01327{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);}
.m61_c01327{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);}
.m19d_c01327{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.mca_c01327{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);}
.m62_c01327{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);}
.m1b4_c01327{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);}
.m181_c01327{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);}
.mef_c01327{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);}
.m6e_c01327{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);}
.mda_c01327{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m65_c01327{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);}
.m1b5_c01327{transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);}
.mcd_c01327{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);}
.m10_c01327{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.mbe_c01327{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m68_c01327{transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247275,0.000000,0.000000,0.250000,0,0);}
.m172_c01327{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m18f_c01327{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);}
.m178_c01327{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m1f_c01327{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);}
.m76_c01327{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m53_c01327{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);}
.m9e_c01327{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);}
.mbc_c01327{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);}
.m17_c01327{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);}
.md_c01327{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.me_c01327{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m158_c01327{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01327{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);}
.m24_c01327{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01327{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);}
.mb9_c01327{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);}
.m37_c01327{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01327{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);}
.m49_c01327{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01327{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m41_c01327{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);}
.m28_c01327{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m47_c01327{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);}
.m19_c01327{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);}
.m3_c01327{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m27_c01327{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m42_c01327{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);}
.m3c_c01327{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m44_c01327{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01327{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);}
.m20_c01327{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c01327{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01327{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mdf_c01327{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c01327{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m9_c01327{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01327{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12a_c01327{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01327{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);}
.m3f_c01327{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m84_c01327{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m29_c01327{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m14_c01327{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);}
.m6c_c01327{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);}
.m12b_c01327{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mae_c01327{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01327{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);}
.m10a_c01327{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m128_c01327{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01327{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m100_c01327{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m7e_c01327{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);}
.m54_c01327{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m60_c01327{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);}
.md8_c01327{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.md1_c01327{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m63_c01327{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m75_c01327{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m4_c01327{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.me7_c01327{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mcc_c01327{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m93_c01327{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m23_c01327{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);}
.m9f_c01327{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m124_c01327{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m18d_c01327{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);}
.m30_c01327{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01327{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m7_c01327{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01327{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m112_c01327{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.me2_c01327{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m10c_c01327{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m8_c01327{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);}
.m1_c01327{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01327{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01327{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m123_c01327{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.me1_c01327{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01327{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mc6_c01327{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mcb_c01327{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m119_c01327{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01327{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01327{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m34_c01327{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m97_c01327{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);}
.m32_c01327{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m88_c01327{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01327{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m98_c01327{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m64_c01327{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m101_c01327{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m45_c01327{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m7b_c01327{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m180_c01327{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m94_c01327{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01327{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mf8_c01327{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m9a_c01327{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m5_c01327{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m77_c01327{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m11_c01327{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01327{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m96_c01327{transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.732500,0.000000,0.000000,0.250000,0,0);}
.m19f_c01327{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m35_c01327{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m19e_c01327{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.maa_c01327{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01327{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m99_c01327{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01327{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.mc4_c01327{transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.017500,0.000000,0.000000,0.250000,0,0);}
.m95_c01327{transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.430000,0.000000,0.000000,0.250000,0,0);}
.mf4_c01327{transform:matrix(1.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.580000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01327{transform:matrix(1.917500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.917500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.917500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01327{transform:matrix(2.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.377500,0.000000,0.000000,0.250000,0,0);}
.m131_c01327{transform:matrix(7.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.200000,0.000000,0.000000,0.250000,0,0);}
.m14e_c01327{transform:matrix(8.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.640000,0.000000,0.000000,0.250000,0,0);}
.v2_c01327{vertical-align:-20.760000px;}
.v1_c01327{vertical-align:-3.420000px;}
.v0_c01327{vertical-align:0.000000px;}
.ls1_c01327{letter-spacing:0.000000px;}
.ls0_c01327{letter-spacing:13.693680px;}
.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:-5.116680px;}
.ws1_c01327{word-spacing:0.000000px;}
.fc0_c01327{color:transparent;}
.fs8_c01327{font-size:3.456000px;}
.fs6_c01327{font-size:6.000000px;}
.fs1b_c01327{font-size:6.900000px;}
.fs4_c01327{font-size:10.380000px;}
.fs1_c01327{font-size:13.800000px;}
.fs5_c01327{font-size:17.280000px;}
.fse_c01327{font-size:20.760000px;}
.fs1c_c01327{font-size:24.180000px;}
.fs1a_c01327{font-size:27.660000px;}
.fsb_c01327{font-size:31.080000px;}
.fs0_c01327{font-size:34.560000px;}
.fs7_c01327{font-size:38.040000px;}
.fsa_c01327{font-size:41.460000px;}
.fs16_c01327{font-size:44.940000px;}
.fsd_c01327{font-size:48.360000px;}
.fs2_c01327{font-size:51.840000px;}
.fs3_c01327{font-size:55.320000px;}
.fsc_c01327{font-size:58.740000px;}
.fs10_c01327{font-size:62.220000px;}
.fs11_c01327{font-size:65.640000px;}
.fs12_c01327{font-size:69.120000px;}
.fs13_c01327{font-size:72.600000px;}
.fs17_c01327{font-size:76.020000px;}
.fs19_c01327{font-size:79.500000px;}
.fs14_c01327{font-size:82.920000px;}
.fs18_c01327{font-size:86.400000px;}
.fs1d_c01327{font-size:89.880000px;}
.fs20_c01327{font-size:93.300000px;}
.fs1e_c01327{font-size:96.780000px;}
.fs15_c01327{font-size:100.200000px;}
.fs22_c01327{font-size:103.680000px;}
.fs24_c01327{font-size:107.160000px;}
.fs21_c01327{font-size:114.060000px;}
.fs23_c01327{font-size:117.480000px;}
.fs9_c01327{font-size:120.960000px;}
.fs1f_c01327{font-size:138.240000px;}
.fsf_c01327{font-size:286.860000px;}
.y0_c01327{bottom:0.000000px;}
.y1c8_c01327{bottom:210.810000px;}
.y1c9_c01327{bottom:215.130000px;}
.y1cb_c01327{bottom:217.725000px;}
.y1cc_c01327{bottom:218.595000px;}
.y1ca_c01327{bottom:219.450000px;}
.y1cd_c01327{bottom:220.320000px;}
.y1ce_c01327{bottom:233.280000px;}
.y1c2_c01327{bottom:234.150000px;}
.y1c1_c01327{bottom:235.005000px;}
.y1c5_c01327{bottom:235.875000px;}
.y1c4_c01327{bottom:236.730000px;}
.y1c0_c01327{bottom:238.470000px;}
.y1c6_c01327{bottom:239.325000px;}
.y1c3_c01327{bottom:240.195000px;}
.y1c7_c01327{bottom:249.690000px;}
.y1bf_c01327{bottom:254.010000px;}
.y1ba_c01327{bottom:254.880000px;}
.y1bc_c01327{bottom:255.750000px;}
.y1bb_c01327{bottom:258.330000px;}
.y1bd_c01327{bottom:260.070000px;}
.y1be_c01327{bottom:260.925000px;}
.y1b9_c01327{bottom:263.520000px;}
.y1b7_c01327{bottom:273.885000px;}
.y1b2_c01327{bottom:274.755000px;}
.y1b4_c01327{bottom:275.610000px;}
.y1b8_c01327{bottom:277.350000px;}
.y1b5_c01327{bottom:279.930000px;}
.y1b3_c01327{bottom:280.800000px;}
.y1b6_c01327{bottom:288.570000px;}
.y1ae_c01327{bottom:294.630000px;}
.y1a9_c01327{bottom:295.485000px;}
.y1b0_c01327{bottom:296.355000px;}
.y1a8_c01327{bottom:297.210000px;}
.y1af_c01327{bottom:298.080000px;}
.y1a7_c01327{bottom:298.950000px;}
.y1ad_c01327{bottom:300.675000px;}
.y1b1_c01327{bottom:304.125000px;}
.y1aa_c01327{bottom:305.850000px;}
.y1ab_c01327{bottom:306.720000px;}
.y1ac_c01327{bottom:311.910000px;}
.y1a2_c01327{bottom:313.635000px;}
.y1a4_c01327{bottom:314.490000px;}
.y1a1_c01327{bottom:315.360000px;}
.y1a0_c01327{bottom:316.230000px;}
.y1a6_c01327{bottom:318.810000px;}
.y19f_c01327{bottom:319.680000px;}
.y1a5_c01327{bottom:320.550000px;}
.y1a3_c01327{bottom:328.320000px;}
.y19a_c01327{bottom:336.090000px;}
.y197_c01327{bottom:336.960000px;}
.y19b_c01327{bottom:337.830000px;}
.y19c_c01327{bottom:338.685000px;}
.y19d_c01327{bottom:339.555000px;}
.y19e_c01327{bottom:340.410000px;}
.y199_c01327{bottom:341.280000px;}
.y198_c01327{bottom:342.150000px;}
.y192_c01327{bottom:355.110000px;}
.y195_c01327{bottom:355.965000px;}
.y196_c01327{bottom:356.835000px;}
.y190_c01327{bottom:357.690000px;}
.y194_c01327{bottom:358.560000px;}
.y193_c01327{bottom:360.285000px;}
.y191_c01327{bottom:362.010000px;}
.y18b_c01327{bottom:374.970000px;}
.y188_c01327{bottom:375.840000px;}
.y18f_c01327{bottom:376.710000px;}
.y18d_c01327{bottom:378.435000px;}
.y18e_c01327{bottom:379.290000px;}
.y18c_c01327{bottom:380.160000px;}
.y186_c01327{bottom:381.030000px;}
.y187_c01327{bottom:381.885000px;}
.y18a_c01327{bottom:387.930000px;}
.y189_c01327{bottom:393.120000px;}
.y182_c01327{bottom:394.845000px;}
.y184_c01327{bottom:395.715000px;}
.y185_c01327{bottom:396.570000px;}
.y181_c01327{bottom:397.440000px;}
.y17f_c01327{bottom:398.310000px;}
.y180_c01327{bottom:400.890000px;}
.y183_c01327{bottom:401.760000px;}
.y17c_c01327{bottom:409.530000px;}
.y177_c01327{bottom:410.400000px;}
.y175_c01327{bottom:411.270000px;}
.y17a_c01327{bottom:412.125000px;}
.y178_c01327{bottom:412.995000px;}
.y176_c01327{bottom:414.720000px;}
.y17b_c01327{bottom:416.445000px;}
.y179_c01327{bottom:419.040000px;}
.y17e_c01327{bottom:420.765000px;}
.y17d_c01327{bottom:425.085000px;}
.y171_c01327{bottom:434.595000px;}
.y172_c01327{bottom:435.450000px;}
.y16c_c01327{bottom:437.190000px;}
.y16d_c01327{bottom:438.045000px;}
.y16f_c01327{bottom:440.640000px;}
.y173_c01327{bottom:441.510000px;}
.y16e_c01327{bottom:442.365000px;}
.y170_c01327{bottom:445.830000px;}
.y174_c01327{bottom:454.470000px;}
.y169_c01327{bottom:455.325000px;}
.y16a_c01327{bottom:458.790000px;}
.y168_c01327{bottom:459.645000px;}
.y167_c01327{bottom:461.370000px;}
.y16b_c01327{bottom:462.240000px;}
.y163_c01327{bottom:476.070000px;}
.y165_c01327{bottom:476.925000px;}
.y161_c01327{bottom:478.650000px;}
.y15f_c01327{bottom:479.520000px;}
.y164_c01327{bottom:480.390000px;}
.y162_c01327{bottom:482.115000px;}
.y160_c01327{bottom:482.970000px;}
.y166_c01327{bottom:486.435000px;}
.y15e_c01327{bottom:495.930000px;}
.y158_c01327{bottom:496.800000px;}
.y159_c01327{bottom:498.525000px;}
.y15a_c01327{bottom:499.395000px;}
.y15d_c01327{bottom:500.250000px;}
.y15c_c01327{bottom:501.120000px;}
.y15b_c01327{bottom:501.990000px;}
.y157_c01327{bottom:502.845000px;}
.y152_c01327{bottom:515.805000px;}
.y156_c01327{bottom:516.675000px;}
.y154_c01327{bottom:517.530000px;}
.y151_c01327{bottom:518.400000px;}
.y14f_c01327{bottom:519.270000px;}
.y153_c01327{bottom:520.995000px;}
.y150_c01327{bottom:522.720000px;}
.y155_c01327{bottom:526.170000px;}
.y14b_c01327{bottom:535.680000px;}
.y14d_c01327{bottom:536.550000px;}
.y148_c01327{bottom:537.405000px;}
.y147_c01327{bottom:538.275000px;}
.y149_c01327{bottom:539.130000px;}
.y14a_c01327{bottom:540.000000px;}
.y14e_c01327{bottom:542.595000px;}
.y12_c01327{bottom:547.770000px;}
.y14c_c01327{bottom:548.640000px;}
.y142_c01327{bottom:555.555000px;}
.y143_c01327{bottom:556.410000px;}
.y145_c01327{bottom:558.150000px;}
.y144_c01327{bottom:559.005000px;}
.y146_c01327{bottom:560.730000px;}
.y141_c01327{bottom:561.600000px;}
.y140_c01327{bottom:563.325000px;}
.y10_c01327{bottom:568.515000px;}
.y11_c01327{bottom:571.110000px;}
.y13d_c01327{bottom:575.430000px;}
.y13c_c01327{bottom:576.285000px;}
.y13b_c01327{bottom:577.155000px;}
.y13a_c01327{bottom:578.010000px;}
.y13f_c01327{bottom:578.880000px;}
.y13e_c01327{bottom:580.605000px;}
.yf_c01327{bottom:581.475000px;}
.yd_c01327{bottom:589.245000px;}
.y135_c01327{bottom:596.160000px;}
.y134_c01327{bottom:597.030000px;}
.y138_c01327{bottom:597.885000px;}
.y133_c01327{bottom:598.755000px;}
.y139_c01327{bottom:599.610000px;}
.y136_c01327{bottom:600.480000px;}
.y132_c01327{bottom:601.350000px;}
.y137_c01327{bottom:606.525000px;}
.ye_c01327{bottom:609.990000px;}
.y12e_c01327{bottom:616.890000px;}
.y12f_c01327{bottom:617.760000px;}
.y12d_c01327{bottom:618.630000px;}
.y130_c01327{bottom:627.270000px;}
.y131_c01327{bottom:628.125000px;}
.y12c_c01327{bottom:638.490000px;}
.y12a_c01327{bottom:639.360000px;}
.y12b_c01327{bottom:641.955000px;}
.y129_c01327{bottom:642.810000px;}
.ya_c01327{bottom:648.870000px;}
.yb_c01327{bottom:653.190000px;}
.yc_c01327{bottom:655.770000px;}
.y123_c01327{bottom:656.640000px;}
.y128_c01327{bottom:657.510000px;}
.y127_c01327{bottom:660.090000px;}
.y125_c01327{bottom:661.830000px;}
.y124_c01327{bottom:662.685000px;}
.y126_c01327{bottom:663.555000px;}
.y122_c01327{bottom:671.325000px;}
.y11d_c01327{bottom:673.050000px;}
.y11b_c01327{bottom:675.645000px;}
.y119_c01327{bottom:677.370000px;}
.y11e_c01327{bottom:678.240000px;}
.y120_c01327{bottom:679.110000px;}
.y11c_c01327{bottom:680.835000px;}
.y121_c01327{bottom:681.690000px;}
.y11a_c01327{bottom:682.560000px;}
.y9_c01327{bottom:688.605000px;}
.y11f_c01327{bottom:694.650000px;}
.y114_c01327{bottom:696.390000px;}
.y115_c01327{bottom:697.245000px;}
.y118_c01327{bottom:701.565000px;}
.y117_c01327{bottom:702.435000px;}
.y116_c01327{bottom:704.160000px;}
.y113_c01327{bottom:711.075000px;}
.y10e_c01327{bottom:716.250000px;}
.y10c_c01327{bottom:717.120000px;}
.y110_c01327{bottom:717.990000px;}
.y111_c01327{bottom:718.845000px;}
.y112_c01327{bottom:721.440000px;}
.y10d_c01327{bottom:722.310000px;}
.y10f_c01327{bottom:723.165000px;}
.y105_c01327{bottom:736.125000px;}
.y107_c01327{bottom:736.995000px;}
.y10a_c01327{bottom:737.850000px;}
.y104_c01327{bottom:738.720000px;}
.y109_c01327{bottom:739.590000px;}
.y10b_c01327{bottom:740.445000px;}
.y108_c01327{bottom:741.315000px;}
.y106_c01327{bottom:742.170000px;}
.yfd_c01327{bottom:743.040000px;}
.y101_c01327{bottom:748.230000px;}
.y100_c01327{bottom:751.680000px;}
.yfe_c01327{bottom:752.550000px;}
.yff_c01327{bottom:753.405000px;}
.y102_c01327{bottom:756.870000px;}
.y103_c01327{bottom:761.190000px;}
.yfa_c01327{bottom:777.600000px;}
.yf8_c01327{bottom:778.470000px;}
.yfc_c01327{bottom:780.195000px;}
.yf7_c01327{bottom:781.920000px;}
.yf9_c01327{bottom:782.790000px;}
.yfb_c01327{bottom:783.645000px;}
.yf0_c01327{bottom:792.285000px;}
.yf6_c01327{bottom:793.155000px;}
.yed_c01327{bottom:794.010000px;}
.yeb_c01327{bottom:794.880000px;}
.yf1_c01327{bottom:795.750000px;}
.yef_c01327{bottom:796.605000px;}
.yec_c01327{bottom:797.475000px;}
.yf2_c01327{bottom:798.330000px;}
.yf5_c01327{bottom:799.200000px;}
.yee_c01327{bottom:801.795000px;}
.yf4_c01327{bottom:803.520000px;}
.yf3_c01327{bottom:809.565000px;}
.ye6_c01327{bottom:816.480000px;}
.ye5_c01327{bottom:817.350000px;}
.ye8_c01327{bottom:818.205000px;}
.ye7_c01327{bottom:819.930000px;}
.ye9_c01327{bottom:822.525000px;}
.y8_c01327{bottom:832.035000px;}
.yea_c01327{bottom:835.485000px;}
.ye1_c01327{bottom:837.210000px;}
.ye0_c01327{bottom:838.080000px;}
.ydf_c01327{bottom:838.950000px;}
.ye4_c01327{bottom:840.675000px;}
.ye3_c01327{bottom:843.270000px;}
.ye2_c01327{bottom:844.125000px;}
.ydc_c01327{bottom:857.955000px;}
.ydd_c01327{bottom:858.810000px;}
.yda_c01327{bottom:861.405000px;}
.yd9_c01327{bottom:862.275000px;}
.yde_c01327{bottom:864.000000px;}
.ydb_c01327{bottom:865.725000px;}
.yd4_c01327{bottom:876.960000px;}
.yd2_c01327{bottom:877.830000px;}
.yd7_c01327{bottom:878.685000px;}
.yd8_c01327{bottom:879.555000px;}
.yd3_c01327{bottom:880.410000px;}
.yd1_c01327{bottom:882.150000px;}
.yd0_c01327{bottom:883.005000px;}
.yd6_c01327{bottom:883.875000px;}
.yd5_c01327{bottom:895.965000px;}
.yca_c01327{bottom:896.835000px;}
.yc9_c01327{bottom:897.690000px;}
.yc7_c01327{bottom:899.430000px;}
.ycd_c01327{bottom:901.155000px;}
.ycb_c01327{bottom:902.880000px;}
.yc8_c01327{bottom:903.750000px;}
.ycc_c01327{bottom:904.605000px;}
.ycf_c01327{bottom:907.200000px;}
.yce_c01327{bottom:909.795000px;}
.ybe_c01327{bottom:914.115000px;}
.yc0_c01327{bottom:917.565000px;}
.yc4_c01327{bottom:918.435000px;}
.yc5_c01327{bottom:919.290000px;}
.yc2_c01327{bottom:920.160000px;}
.yc3_c01327{bottom:921.885000px;}
.yc1_c01327{bottom:923.610000px;}
.yc6_c01327{bottom:925.350000px;}
.ybf_c01327{bottom:935.715000px;}
.yb5_c01327{bottom:937.440000px;}
.yb8_c01327{bottom:939.165000px;}
.ybb_c01327{bottom:940.035000px;}
.yba_c01327{bottom:940.890000px;}
.ybc_c01327{bottom:941.760000px;}
.yb4_c01327{bottom:942.630000px;}
.yb3_c01327{bottom:943.485000px;}
.yb7_c01327{bottom:944.355000px;}
.yb9_c01327{bottom:945.210000px;}
.ybd_c01327{bottom:946.950000px;}
.yb6_c01327{bottom:954.720000px;}
.yac_c01327{bottom:958.170000px;}
.yae_c01327{bottom:959.040000px;}
.yb0_c01327{bottom:959.910000px;}
.yb1_c01327{bottom:960.765000px;}
.yaf_c01327{bottom:961.635000px;}
.yad_c01327{bottom:962.490000px;}
.yab_c01327{bottom:963.360000px;}
.yb2_c01327{bottom:965.085000px;}
.ya9_c01327{bottom:973.725000px;}
.ya4_c01327{bottom:974.595000px;}
.yaa_c01327{bottom:975.450000px;}
.ya7_c01327{bottom:977.190000px;}
.ya6_c01327{bottom:978.915000px;}
.ya5_c01327{bottom:982.365000px;}
.ya3_c01327{bottom:983.235000px;}
.ya8_c01327{bottom:988.410000px;}
.y1d0_c01327{bottom:991.005000px;}
.y9e_c01327{bottom:999.645000px;}
.ya0_c01327{bottom:1000.515000px;}
.y9f_c01327{bottom:1002.240000px;}
.y9d_c01327{bottom:1003.110000px;}
.ya2_c01327{bottom:1003.965000px;}
.ya1_c01327{bottom:1004.835000px;}
.y98_c01327{bottom:1017.795000px;}
.y9b_c01327{bottom:1018.650000px;}
.y97_c01327{bottom:1019.520000px;}
.y9a_c01327{bottom:1020.390000px;}
.y96_c01327{bottom:1022.970000px;}
.y9c_c01327{bottom:1024.710000px;}
.y99_c01327{bottom:1029.885000px;}
.y8f_c01327{bottom:1037.670000px;}
.y92_c01327{bottom:1039.395000px;}
.y8e_c01327{bottom:1040.250000px;}
.y93_c01327{bottom:1041.120000px;}
.y94_c01327{bottom:1041.990000px;}
.y91_c01327{bottom:1042.845000px;}
.y90_c01327{bottom:1043.715000px;}
.y95_c01327{bottom:1044.570000px;}
.y8d_c01327{bottom:1047.165000px;}
.y8b_c01327{bottom:1056.675000px;}
.y87_c01327{bottom:1057.530000px;}
.y86_c01327{bottom:1058.400000px;}
.y85_c01327{bottom:1059.270000px;}
.y83_c01327{bottom:1060.995000px;}
.y84_c01327{bottom:1063.590000px;}
.y88_c01327{bottom:1064.445000px;}
.y89_c01327{bottom:1067.040000px;}
.y8a_c01327{bottom:1073.085000px;}
.y8c_c01327{bottom:1073.955000px;}
.y7f_c01327{bottom:1077.405000px;}
.y7e_c01327{bottom:1078.275000px;}
.y80_c01327{bottom:1080.870000px;}
.y81_c01327{bottom:1081.725000px;}
.y7c_c01327{bottom:1084.320000px;}
.y7d_c01327{bottom:1085.190000px;}
.y7b_c01327{bottom:1086.915000px;}
.y82_c01327{bottom:1089.510000px;}
.y78_c01327{bottom:1099.005000px;}
.y77_c01327{bottom:1099.875000px;}
.y7a_c01327{bottom:1100.730000px;}
.y79_c01327{bottom:1103.325000px;}
.y71_c01327{bottom:1105.050000px;}
.y75_c01327{bottom:1109.370000px;}
.y73_c01327{bottom:1111.110000px;}
.y76_c01327{bottom:1112.835000px;}
.y74_c01327{bottom:1114.560000px;}
.y72_c01327{bottom:1118.010000px;}
.y6c_c01327{bottom:1118.880000px;}
.y6f_c01327{bottom:1120.605000px;}
.y70_c01327{bottom:1121.475000px;}
.y6d_c01327{bottom:1123.200000px;}
.y6b_c01327{bottom:1124.070000px;}
.y6a_c01327{bottom:1124.925000px;}
.y6e_c01327{bottom:1125.795000px;}
.y66_c01327{bottom:1139.610000px;}
.y65_c01327{bottom:1140.480000px;}
.y68_c01327{bottom:1141.350000px;}
.y67_c01327{bottom:1144.800000px;}
.y64_c01327{bottom:1145.670000px;}
.y69_c01327{bottom:1146.525000px;}
.y5e_c01327{bottom:1160.355000px;}
.y62_c01327{bottom:1161.210000px;}
.y60_c01327{bottom:1162.950000px;}
.y61_c01327{bottom:1164.675000px;}
.y5f_c01327{bottom:1165.530000px;}
.y63_c01327{bottom:1166.400000px;}
.y57_c01327{bottom:1179.360000px;}
.y5a_c01327{bottom:1180.230000px;}
.y55_c01327{bottom:1181.085000px;}
.y54_c01327{bottom:1181.955000px;}
.y59_c01327{bottom:1182.810000px;}
.y56_c01327{bottom:1183.680000px;}
.y58_c01327{bottom:1185.405000px;}
.y5b_c01327{bottom:1186.275000px;}
.y5c_c01327{bottom:1187.130000px;}
.y5d_c01327{bottom:1189.725000px;}
.y53_c01327{bottom:1200.090000px;}
.y51_c01327{bottom:1200.960000px;}
.y4_c01327{bottom:1201.830000px;}
.y5_c01327{bottom:1205.280000px;}
.y50_c01327{bottom:1206.150000px;}
.y52_c01327{bottom:1207.005000px;}
.y4a_c01327{bottom:1219.965000px;}
.y48_c01327{bottom:1222.560000px;}
.y3_c01327{bottom:1223.430000px;}
.y49_c01327{bottom:1226.010000px;}
.y4f_c01327{bottom:1226.880000px;}
.y4b_c01327{bottom:1229.475000px;}
.y6_c01327{bottom:1230.330000px;}
.y7_c01327{bottom:1231.200000px;}
.y4c_c01327{bottom:1232.925000px;}
.y47_c01327{bottom:1235.520000px;}
.y4d_c01327{bottom:1236.390000px;}
.y4e_c01327{bottom:1238.115000px;}
.y40_c01327{bottom:1240.710000px;}
.y2_c01327{bottom:1242.435000px;}
.y45_c01327{bottom:1243.290000px;}
.y46_c01327{bottom:1244.160000px;}
.y3d_c01327{bottom:1245.030000px;}
.y3e_c01327{bottom:1245.885000px;}
.y3f_c01327{bottom:1246.755000px;}
.y44_c01327{bottom:1251.075000px;}
.y42_c01327{bottom:1251.930000px;}
.y41_c01327{bottom:1254.525000px;}
.y43_c01327{bottom:1255.395000px;}
.y3a_c01327{bottom:1261.440000px;}
.y1_c01327{bottom:1263.165000px;}
.y3b_c01327{bottom:1264.890000px;}
.y37_c01327{bottom:1265.760000px;}
.y38_c01327{bottom:1266.630000px;}
.y39_c01327{bottom:1267.485000px;}
.y3c_c01327{bottom:1273.530000px;}
.y36_c01327{bottom:1281.315000px;}
.y31_c01327{bottom:1283.040000px;}
.y33_c01327{bottom:1283.910000px;}
.y34_c01327{bottom:1284.765000px;}
.y32_c01327{bottom:1286.490000px;}
.y30_c01327{bottom:1287.360000px;}
.y35_c01327{bottom:1289.955000px;}
.y1cf_c01327{bottom:1294.275000px;}
.y2a_c01327{bottom:1301.190000px;}
.y2b_c01327{bottom:1302.045000px;}
.y2c_c01327{bottom:1302.915000px;}
.y29_c01327{bottom:1303.770000px;}
.y28_c01327{bottom:1306.365000px;}
.y2d_c01327{bottom:1307.235000px;}
.y2f_c01327{bottom:1308.090000px;}
.y2e_c01327{bottom:1317.600000px;}
.y26_c01327{bottom:1321.920000px;}
.y22_c01327{bottom:1322.790000px;}
.y21_c01327{bottom:1323.645000px;}
.y23_c01327{bottom:1324.515000px;}
.y20_c01327{bottom:1327.110000px;}
.y25_c01327{bottom:1327.965000px;}
.y27_c01327{bottom:1330.560000px;}
.y24_c01327{bottom:1340.070000px;}
.y1d_c01327{bottom:1342.650000px;}
.y1c_c01327{bottom:1347.840000px;}
.y1e_c01327{bottom:1348.710000px;}
.y1f_c01327{bottom:1350.435000px;}
.y1a_c01327{bottom:1368.570000px;}
.y1b_c01327{bottom:1370.310000px;}
.y19_c01327{bottom:1374.630000px;}
.y18_c01327{bottom:1375.485000px;}
.y16_c01327{bottom:1376.355000px;}
.y17_c01327{bottom:1377.210000px;}
.y13_c01327{bottom:1394.490000px;}
.y15_c01327{bottom:1398.810000px;}
.y14_c01327{bottom:1402.275000px;}
.ha_c01327{height:3.110063px;}
.h8_c01327{height:5.399414px;}
.h1d_c01327{height:6.209326px;}
.h6_c01327{height:9.340986px;}
.h3_c01327{height:12.418652px;}
.h7_c01327{height:15.550313px;}
.h10_c01327{height:18.681973px;}
.h1e_c01327{height:21.759639px;}
.h1c_c01327{height:24.891299px;}
.hd_c01327{height:27.968965px;}
.h2_c01327{height:31.100625px;}
.h9_c01327{height:34.232285px;}
.hc_c01327{height:37.309951px;}
.h18_c01327{height:40.441611px;}
.hf_c01327{height:43.519277px;}
.h4_c01327{height:46.650937px;}
.h5_c01327{height:49.782598px;}
.he_c01327{height:52.860264px;}
.h12_c01327{height:55.991924px;}
.h13_c01327{height:59.069590px;}
.h14_c01327{height:62.201250px;}
.h15_c01327{height:65.332910px;}
.h19_c01327{height:68.410576px;}
.h1b_c01327{height:71.542236px;}
.h16_c01327{height:74.619902px;}
.h1a_c01327{height:77.751563px;}
.h1f_c01327{height:80.883223px;}
.h22_c01327{height:83.960889px;}
.h20_c01327{height:87.092549px;}
.h17_c01327{height:90.170215px;}
.h24_c01327{height:93.301875px;}
.h26_c01327{height:96.433535px;}
.h23_c01327{height:102.642861px;}
.h25_c01327{height:105.720527px;}
.hb_c01327{height:108.852188px;}
.h21_c01327{height:124.402500px;}
.h11_c01327{height:258.145986px;}
.h0_c01327{height:1509.405000px;}
.h1_c01327{height:1509.750000px;}
.w0_c01327{width:1079.130000px;}
.w1_c01327{width:1079.250000px;}
.x0_c01327{left:0.000000px;}
.x2_c01327{left:1.725000px;}
.x1_c01327{left:3.450000px;}
.xc_c01327{left:12.090000px;}
.x3_c01327{left:18.150000px;}
.xa_c01327{left:20.730000px;}
.x8_c01327{left:25.050000px;}
.xb_c01327{left:38.010000px;}
.x9_c01327{left:44.925000px;}
.x6_c01327{left:146.010000px;}
.x4_c01327{left:149.475000px;}
.x5_c01327{left:158.115000px;}
.x7_c01327{left:165.030000px;}
.xda_c01327{left:188.355000px;}
.xc2_c01327{left:205.635000px;}
.xc8_c01327{left:221.190000px;}
.xa3_c01327{left:222.915000px;}
.x29_c01327{left:228.960000px;}
.x9c_c01327{left:230.685000px;}
.xd7_c01327{left:232.410000px;}
.xfe_c01327{left:235.005000px;}
.x117_c01327{left:236.730000px;}
.xd5_c01327{left:239.325000px;}
.xe5_c01327{left:242.790000px;}
.x75_c01327{left:245.370000px;}
.x34_c01327{left:247.110000px;}
.x21_c01327{left:248.835000px;}
.xb2_c01327{left:250.560000px;}
.x5f_c01327{left:253.155000px;}
.x115_c01327{left:255.750000px;}
.x4b_c01327{left:259.200000px;}
.xf1_c01327{left:260.925000px;}
.xc3_c01327{left:263.520000px;}
.x88_c01327{left:265.245000px;}
.xff_c01327{left:267.840000px;}
.x22_c01327{left:270.435000px;}
.xc9_c01327{left:272.160000px;}
.x104_c01327{left:274.755000px;}
.xb8_c01327{left:276.480000px;}
.x94_c01327{left:278.205000px;}
.x43_c01327{left:279.930000px;}
.x76_c01327{left:281.670000px;}
.x60_c01327{left:285.120000px;}
.x81_c01327{left:286.845000px;}
.x6a_c01327{left:288.570000px;}
.x23_c01327{left:292.890000px;}
.xb3_c01327{left:295.485000px;}
.xfd_c01327{left:297.210000px;}
.xa4_c01327{left:298.950000px;}
.xce_c01327{left:301.530000px;}
.x6b_c01327{left:303.270000px;}
.x35_c01327{left:305.850000px;}
.x10c_c01327{left:307.590000px;}
.x77_c01327{left:311.040000px;}
.xfb_c01327{left:313.635000px;}
.x44_c01327{left:315.360000px;}
.xa9_c01327{left:320.550000px;}
.xb4_c01327{left:323.130000px;}
.x6c_c01327{left:325.725000px;}
.x82_c01327{left:327.450000px;}
.x8e_c01327{left:330.045000px;}
.x57_c01327{left:332.640000px;}
.x36_c01327{left:334.365000px;}
.xa5_c01327{left:337.830000px;}
.xe6_c01327{left:339.555000px;}
.x6d_c01327{left:342.150000px;}
.x78_c01327{left:343.875000px;}
.x100_c01327{left:346.470000px;}
.xec_c01327{left:349.920000px;}
.x83_c01327{left:351.645000px;}
.x58_c01327{left:353.370000px;}
.x89_c01327{left:355.110000px;}
.x8f_c01327{left:359.430000px;}
.x11_c01327{left:361.155000px;}
.x45_c01327{left:365.475000px;}
.x61_c01327{left:368.070000px;}
.xde_c01327{left:369.795000px;}
.xd_c01327{left:372.390000px;}
.x2a_c01327{left:374.115000px;}
.x46_c01327{left:375.840000px;}
.xb5_c01327{left:377.565000px;}
.x37_c01327{left:379.290000px;}
.xea_c01327{left:381.030000px;}
.x4c_c01327{left:382.755000px;}
.xf5_c01327{left:385.350000px;}
.x79_c01327{left:387.075000px;}
.x4d_c01327{left:388.800000px;}
.xa6_c01327{left:391.395000px;}
.x90_c01327{left:393.120000px;}
.x101_c01327{left:394.845000px;}
.xc4_c01327{left:397.440000px;}
.x12_c01327{left:399.165000px;}
.xcf_c01327{left:402.630000px;}
.x38_c01327{left:404.355000px;}
.xdb_c01327{left:406.080000px;}
.x8a_c01327{left:407.805000px;}
.x24_c01327{left:409.530000px;}
.x84_c01327{left:411.270000px;}
.x4e_c01327{left:414.720000px;}
.x47_c01327{left:417.315000px;}
.xbb_c01327{left:419.040000px;}
.x116_c01327{left:421.635000px;}
.x91_c01327{left:424.230000px;}
.xee_c01327{left:425.955000px;}
.x13_c01327{left:427.680000px;}
.x62_c01327{left:430.275000px;}
.x39_c01327{left:432.870000px;}
.xc5_c01327{left:436.320000px;}
.x8b_c01327{left:438.915000px;}
.xb6_c01327{left:440.640000px;}
.x14_c01327{left:443.235000px;}
.x2b_c01327{left:449.280000px;}
.x25_c01327{left:451.875000px;}
.xca_c01327{left:453.600000px;}
.x7a_c01327{left:455.325000px;}
.x4f_c01327{left:457.050000px;}
.x9d_c01327{left:459.645000px;}
.x15_c01327{left:462.240000px;}
.xf8_c01327{left:463.965000px;}
.x59_c01327{left:465.689952px;}
.xf6_c01327{left:467.430000px;}
.xbc_c01327{left:470.880000px;}
.x16_c01327{left:476.070000px;}
.xf9_c01327{left:478.650000px;}
.xe3_c01327{left:480.390000px;}
.x2c_c01327{left:483.840000px;}
.x48_c01327{left:485.565000px;}
.x17_c01327{left:487.290000px;}
.x7b_c01327{left:489.030000px;}
.x63_c01327{left:491.610000px;}
.xaa_c01327{left:494.205000px;}
.xf2_c01327{left:495.930000px;}
.xae_c01327{left:498.525000px;}
.xcb_c01327{left:500.250000px;}
.x118_c01327{left:501.990000px;}
.x18_c01327{left:504.570000px;}
.x85_c01327{left:506.310000px;}
.x26_c01327{left:509.760000px;}
.xe_c01327{left:512.355000px;}
.xd8_c01327{left:514.080000px;}
.x19_c01327{left:515.805000px;}
.x50_c01327{left:527.040000px;}
.x5a_c01327{left:530.490000px;}
.x51_c01327{left:533.955000px;}
.x27_c01327{left:536.550000px;}
.x102_c01327{left:538.275000px;}
.x2d_c01327{left:540.000000px;}
.x3a_c01327{left:542.595000px;}
.xbd_c01327{left:544.320000px;}
.x6e_c01327{left:546.045000px;}
.xef_c01327{left:547.770000px;}
.xd2_c01327{left:549.510000px;}
.x52_c01327{left:551.235000px;}
.xfc_c01327{left:552.960000px;}
.x28_c01327{left:554.685000px;}
.x3b_c01327{left:557.280000px;}
.xd3_c01327{left:559.005000px;}
.x9e_c01327{left:561.600000px;}
.xf7_c01327{left:564.195000px;}
.x112_c01327{left:565.920000px;}
.xdc_c01327{left:571.965210px;}
.x53_c01327{left:575.430000px;}
.x1a_c01327{left:578.010000px;}
.x64_c01327{left:580.605000px;}
.x8c_c01327{left:583.200000px;}
.xe7_c01327{left:585.795000px;}
.x3c_c01327{left:588.390000px;}
.x6f_c01327{left:590.970000px;}
.x1b_c01327{left:594.435000px;}
.x105_c01327{left:597.030000px;}
.xd0_c01327{left:598.755000px;}
.x65_c01327{left:602.205000px;}
.x2e_c01327{left:606.525000px;}
.x108_c01327{left:608.250000px;}
.xaf_c01327{left:610.845000px;}
.x70_c01327{left:612.570000px;}
.x1c_c01327{left:615.165000px;}
.x99_c01327{left:617.760000px;}
.x110_c01327{left:622.080000px;}
.x54_c01327{left:623.805000px;}
.x109_c01327{left:625.530000px;}
.x1d_c01327{left:627.270000px;}
.x11b_c01327{left:629.850000px;}
.xed_c01327{left:632.445000px;}
.x3d_c01327{left:635.040000px;}
.x5b_c01327{left:636.765000px;}
.x113_c01327{left:640.230000px;}
.x49_c01327{left:641.955000px;}
.x8d_c01327{left:644.550000px;}
.x9f_c01327{left:646.275000px;}
.x1e_c01327{left:648.000000px;}
.x95_c01327{left:651.450000px;}
.xf0_c01327{left:655.770000px;}
.x11a_c01327{left:657.510000px;}
.x66_c01327{left:659.235000px;}
.xa0_c01327{left:660.960000px;}
.xf_c01327{left:663.555000px;}
.x71_c01327{left:666.150000px;}
.x10a_c01327{left:667.875000px;}
.xa7_c01327{left:669.600000px;}
.x98_c01327{left:671.325000px;}
.x2f_c01327{left:673.050000px;}
.xab_c01327{left:675.645000px;}
.x7c_c01327{left:677.370000px;}
.x4a_c01327{left:680.835000px;}
.xb0_c01327{left:682.560000px;}
.x55_c01327{left:685.155000px;}
.x10_c01327{left:686.880000px;}
.xe8_c01327{left:689.475000px;}
.xdd_c01327{left:694.650000px;}
.x5c_c01327{left:696.390000px;}
.x1f_c01327{left:698.970000px;}
.xb7_c01327{left:700.710000px;}
.x96_c01327{left:703.290000px;}
.xb1_c01327{left:705.030000px;}
.x86_c01327{left:706.755000px;}
.x3e_c01327{left:709.350000px;}
.xac_c01327{left:713.670000px;}
.x92_c01327{left:715.395000px;}
.x10d_c01327{left:717.120000px;}
.x30_c01327{left:718.845000px;}
.xa1_c01327{left:722.310000px;}
.x72_c01327{left:724.035000px;}
.xd1_c01327{left:726.630000px;}
.x3f_c01327{left:729.210000px;}
.x106_c01327{left:730.950000px;}
.xc6_c01327{left:733.530000px;}
.x67_c01327{left:735.270000px;}
.x87_c01327{left:736.995000px;}
.x9a_c01327{left:740.445000px;}
.xbe_c01327{left:742.170000px;}
.x73_c01327{left:745.635000px;}
.x7d_c01327{left:748.230000px;}
.x93_c01327{left:749.955000px;}
.x97_c01327{left:751.680000px;}
.xdf_c01327{left:753.405000px;}
.xa8_c01327{left:757.725000px;}
.x40_c01327{left:762.915000px;}
.xb9_c01327{left:765.510000px;}
.xe4_c01327{left:767.235000px;}
.x119_c01327{left:768.960000px;}
.x10b_c01327{left:772.410000px;}
.xbf_c01327{left:774.150000px;}
.x31_c01327{left:775.875000px;}
.xeb_c01327{left:778.470000px;}
.xa2_c01327{left:781.050000px;}
.x7e_c01327{left:785.370000px;}
.x56_c01327{left:788.835000px;}
.xf3_c01327{left:790.560000px;}
.x41_c01327{left:793.155000px;}
.x7f_c01327{left:795.750000px;}
.xcc_c01327{left:797.475000px;}
.xad_c01327{left:801.795000px;}
.xe0_c01327{left:803.520000px;}
.xd4_c01327{left:805.245000px;}
.x32_c01327{left:808.710000px;}
.x42_c01327{left:810.435000px;}
.xe1_c01327{left:812.160000px;}
.x68_c01327{left:813.885000px;}
.x5d_c01327{left:816.480000px;}
.xd9_c01327{left:819.075000px;}
.x111_c01327{left:821.670000px;}
.x20_c01327{left:823.395000px;}
.xba_c01327{left:825.990000px;}
.xf4_c01327{left:828.570000px;}
.x69_c01327{left:830.310000px;}
.x74_c01327{left:832.035000px;}
.xc0_c01327{left:834.630000px;}
.xe2_c01327{left:836.355000px;}
.x114_c01327{left:838.080000px;}
.xc7_c01327{left:839.805000px;}
.xe9_c01327{left:843.270000px;}
.xcd_c01327{left:844.995000px;}
.x33_c01327{left:848.445000px;}
.x80_c01327{left:850.170000px;}
.x5e_c01327{left:852.765000px;}
.xd6_c01327{left:859.680000px;}
.x103_c01327{left:862.275000px;}
.x9b_c01327{left:865.725000px;}
.xc1_c01327{left:870.045000px;}
.x10e_c01327{left:872.640000px;}
.x10f_c01327{left:876.960000px;}
.x107_c01327{left:882.150000px;}
.xfa_c01327{left:886.470000px;}
.x11d_c01327{left:896.835000px;}
.x11c_c01327{left:917.565000px;}
@media print{
.v2_c01327{vertical-align:-18.453333pt;}
.v1_c01327{vertical-align:-3.040000pt;}
.v0_c01327{vertical-align:0.000000pt;}
.ls1_c01327{letter-spacing:0.000000pt;}
.ls0_c01327{letter-spacing:12.172160pt;}
.ws0_c01327{word-spacing:-4.548160pt;}
.ws1_c01327{word-spacing:0.000000pt;}
.fs8_c01327{font-size:3.072000pt;}
.fs6_c01327{font-size:5.333333pt;}
.fs1b_c01327{font-size:6.133333pt;}
.fs4_c01327{font-size:9.226667pt;}
.fs1_c01327{font-size:12.266667pt;}
.fs5_c01327{font-size:15.360000pt;}
.fse_c01327{font-size:18.453333pt;}
.fs1c_c01327{font-size:21.493333pt;}
.fs1a_c01327{font-size:24.586667pt;}
.fsb_c01327{font-size:27.626667pt;}
.fs0_c01327{font-size:30.720000pt;}
.fs7_c01327{font-size:33.813333pt;}
.fsa_c01327{font-size:36.853333pt;}
.fs16_c01327{font-size:39.946667pt;}
.fsd_c01327{font-size:42.986667pt;}
.fs2_c01327{font-size:46.080000pt;}
.fs3_c01327{font-size:49.173333pt;}
.fsc_c01327{font-size:52.213333pt;}
.fs10_c01327{font-size:55.306667pt;}
.fs11_c01327{font-size:58.346667pt;}
.fs12_c01327{font-size:61.440000pt;}
.fs13_c01327{font-size:64.533333pt;}
.fs17_c01327{font-size:67.573333pt;}
.fs19_c01327{font-size:70.666667pt;}
.fs14_c01327{font-size:73.706667pt;}
.fs18_c01327{font-size:76.800000pt;}
.fs1d_c01327{font-size:79.893333pt;}
.fs20_c01327{font-size:82.933333pt;}
.fs1e_c01327{font-size:86.026667pt;}
.fs15_c01327{font-size:89.066667pt;}
.fs22_c01327{font-size:92.160000pt;}
.fs24_c01327{font-size:95.253333pt;}
.fs21_c01327{font-size:101.386667pt;}
.fs23_c01327{font-size:104.426667pt;}
.fs9_c01327{font-size:107.520000pt;}
.fs1f_c01327{font-size:122.880000pt;}
.fsf_c01327{font-size:254.986667pt;}
.y0_c01327{bottom:0.000000pt;}
.y1c8_c01327{bottom:187.386667pt;}
.y1c9_c01327{bottom:191.226667pt;}
.y1cb_c01327{bottom:193.533333pt;}
.y1cc_c01327{bottom:194.306667pt;}
.y1ca_c01327{bottom:195.066667pt;}
.y1cd_c01327{bottom:195.840000pt;}
.y1ce_c01327{bottom:207.360000pt;}
.y1c2_c01327{bottom:208.133333pt;}
.y1c1_c01327{bottom:208.893333pt;}
.y1c5_c01327{bottom:209.666667pt;}
.y1c4_c01327{bottom:210.426667pt;}
.y1c0_c01327{bottom:211.973333pt;}
.y1c6_c01327{bottom:212.733333pt;}
.y1c3_c01327{bottom:213.506667pt;}
.y1c7_c01327{bottom:221.946667pt;}
.y1bf_c01327{bottom:225.786667pt;}
.y1ba_c01327{bottom:226.560000pt;}
.y1bc_c01327{bottom:227.333333pt;}
.y1bb_c01327{bottom:229.626667pt;}
.y1bd_c01327{bottom:231.173333pt;}
.y1be_c01327{bottom:231.933333pt;}
.y1b9_c01327{bottom:234.240000pt;}
.y1b7_c01327{bottom:243.453333pt;}
.y1b2_c01327{bottom:244.226667pt;}
.y1b4_c01327{bottom:244.986667pt;}
.y1b8_c01327{bottom:246.533333pt;}
.y1b5_c01327{bottom:248.826667pt;}
.y1b3_c01327{bottom:249.600000pt;}
.y1b6_c01327{bottom:256.506667pt;}
.y1ae_c01327{bottom:261.893333pt;}
.y1a9_c01327{bottom:262.653333pt;}
.y1b0_c01327{bottom:263.426667pt;}
.y1a8_c01327{bottom:264.186667pt;}
.y1af_c01327{bottom:264.960000pt;}
.y1a7_c01327{bottom:265.733333pt;}
.y1ad_c01327{bottom:267.266667pt;}
.y1b1_c01327{bottom:270.333333pt;}
.y1aa_c01327{bottom:271.866667pt;}
.y1ab_c01327{bottom:272.640000pt;}
.y1ac_c01327{bottom:277.253333pt;}
.y1a2_c01327{bottom:278.786667pt;}
.y1a4_c01327{bottom:279.546667pt;}
.y1a1_c01327{bottom:280.320000pt;}
.y1a0_c01327{bottom:281.093333pt;}
.y1a6_c01327{bottom:283.386667pt;}
.y19f_c01327{bottom:284.160000pt;}
.y1a5_c01327{bottom:284.933333pt;}
.y1a3_c01327{bottom:291.840000pt;}
.y19a_c01327{bottom:298.746667pt;}
.y197_c01327{bottom:299.520000pt;}
.y19b_c01327{bottom:300.293333pt;}
.y19c_c01327{bottom:301.053333pt;}
.y19d_c01327{bottom:301.826667pt;}
.y19e_c01327{bottom:302.586667pt;}
.y199_c01327{bottom:303.360000pt;}
.y198_c01327{bottom:304.133333pt;}
.y192_c01327{bottom:315.653333pt;}
.y195_c01327{bottom:316.413333pt;}
.y196_c01327{bottom:317.186667pt;}
.y190_c01327{bottom:317.946667pt;}
.y194_c01327{bottom:318.720000pt;}
.y193_c01327{bottom:320.253333pt;}
.y191_c01327{bottom:321.786667pt;}
.y18b_c01327{bottom:333.306667pt;}
.y188_c01327{bottom:334.080000pt;}
.y18f_c01327{bottom:334.853333pt;}
.y18d_c01327{bottom:336.386667pt;}
.y18e_c01327{bottom:337.146667pt;}
.y18c_c01327{bottom:337.920000pt;}
.y186_c01327{bottom:338.693333pt;}
.y187_c01327{bottom:339.453333pt;}
.y18a_c01327{bottom:344.826667pt;}
.y189_c01327{bottom:349.440000pt;}
.y182_c01327{bottom:350.973333pt;}
.y184_c01327{bottom:351.746667pt;}
.y185_c01327{bottom:352.506667pt;}
.y181_c01327{bottom:353.280000pt;}
.y17f_c01327{bottom:354.053333pt;}
.y180_c01327{bottom:356.346667pt;}
.y183_c01327{bottom:357.120000pt;}
.y17c_c01327{bottom:364.026667pt;}
.y177_c01327{bottom:364.800000pt;}
.y175_c01327{bottom:365.573333pt;}
.y17a_c01327{bottom:366.333333pt;}
.y178_c01327{bottom:367.106667pt;}
.y176_c01327{bottom:368.640000pt;}
.y17b_c01327{bottom:370.173333pt;}
.y179_c01327{bottom:372.480000pt;}
.y17e_c01327{bottom:374.013333pt;}
.y17d_c01327{bottom:377.853333pt;}
.y171_c01327{bottom:386.306667pt;}
.y172_c01327{bottom:387.066667pt;}
.y16c_c01327{bottom:388.613333pt;}
.y16d_c01327{bottom:389.373333pt;}
.y16f_c01327{bottom:391.680000pt;}
.y173_c01327{bottom:392.453333pt;}
.y16e_c01327{bottom:393.213333pt;}
.y170_c01327{bottom:396.293333pt;}
.y174_c01327{bottom:403.973333pt;}
.y169_c01327{bottom:404.733333pt;}
.y16a_c01327{bottom:407.813333pt;}
.y168_c01327{bottom:408.573333pt;}
.y167_c01327{bottom:410.106667pt;}
.y16b_c01327{bottom:410.880000pt;}
.y163_c01327{bottom:423.173333pt;}
.y165_c01327{bottom:423.933333pt;}
.y161_c01327{bottom:425.466667pt;}
.y15f_c01327{bottom:426.240000pt;}
.y164_c01327{bottom:427.013333pt;}
.y162_c01327{bottom:428.546667pt;}
.y160_c01327{bottom:429.306667pt;}
.y166_c01327{bottom:432.386667pt;}
.y15e_c01327{bottom:440.826667pt;}
.y158_c01327{bottom:441.600000pt;}
.y159_c01327{bottom:443.133333pt;}
.y15a_c01327{bottom:443.906667pt;}
.y15d_c01327{bottom:444.666667pt;}
.y15c_c01327{bottom:445.440000pt;}
.y15b_c01327{bottom:446.213333pt;}
.y157_c01327{bottom:446.973333pt;}
.y152_c01327{bottom:458.493333pt;}
.y156_c01327{bottom:459.266667pt;}
.y154_c01327{bottom:460.026667pt;}
.y151_c01327{bottom:460.800000pt;}
.y14f_c01327{bottom:461.573333pt;}
.y153_c01327{bottom:463.106667pt;}
.y150_c01327{bottom:464.640000pt;}
.y155_c01327{bottom:467.706667pt;}
.y14b_c01327{bottom:476.160000pt;}
.y14d_c01327{bottom:476.933333pt;}
.y148_c01327{bottom:477.693333pt;}
.y147_c01327{bottom:478.466667pt;}
.y149_c01327{bottom:479.226667pt;}
.y14a_c01327{bottom:480.000000pt;}
.y14e_c01327{bottom:482.306667pt;}
.y12_c01327{bottom:486.906667pt;}
.y14c_c01327{bottom:487.680000pt;}
.y142_c01327{bottom:493.826667pt;}
.y143_c01327{bottom:494.586667pt;}
.y145_c01327{bottom:496.133333pt;}
.y144_c01327{bottom:496.893333pt;}
.y146_c01327{bottom:498.426667pt;}
.y141_c01327{bottom:499.200000pt;}
.y140_c01327{bottom:500.733333pt;}
.y10_c01327{bottom:505.346667pt;}
.y11_c01327{bottom:507.653333pt;}
.y13d_c01327{bottom:511.493333pt;}
.y13c_c01327{bottom:512.253333pt;}
.y13b_c01327{bottom:513.026667pt;}
.y13a_c01327{bottom:513.786667pt;}
.y13f_c01327{bottom:514.560000pt;}
.y13e_c01327{bottom:516.093333pt;}
.yf_c01327{bottom:516.866667pt;}
.yd_c01327{bottom:523.773333pt;}
.y135_c01327{bottom:529.920000pt;}
.y134_c01327{bottom:530.693333pt;}
.y138_c01327{bottom:531.453333pt;}
.y133_c01327{bottom:532.226667pt;}
.y139_c01327{bottom:532.986667pt;}
.y136_c01327{bottom:533.760000pt;}
.y132_c01327{bottom:534.533333pt;}
.y137_c01327{bottom:539.133333pt;}
.ye_c01327{bottom:542.213333pt;}
.y12e_c01327{bottom:548.346667pt;}
.y12f_c01327{bottom:549.120000pt;}
.y12d_c01327{bottom:549.893333pt;}
.y130_c01327{bottom:557.573333pt;}
.y131_c01327{bottom:558.333333pt;}
.y12c_c01327{bottom:567.546667pt;}
.y12a_c01327{bottom:568.320000pt;}
.y12b_c01327{bottom:570.626667pt;}
.y129_c01327{bottom:571.386667pt;}
.ya_c01327{bottom:576.773333pt;}
.yb_c01327{bottom:580.613333pt;}
.yc_c01327{bottom:582.906667pt;}
.y123_c01327{bottom:583.680000pt;}
.y128_c01327{bottom:584.453333pt;}
.y127_c01327{bottom:586.746667pt;}
.y125_c01327{bottom:588.293333pt;}
.y124_c01327{bottom:589.053333pt;}
.y126_c01327{bottom:589.826667pt;}
.y122_c01327{bottom:596.733333pt;}
.y11d_c01327{bottom:598.266667pt;}
.y11b_c01327{bottom:600.573333pt;}
.y119_c01327{bottom:602.106667pt;}
.y11e_c01327{bottom:602.880000pt;}
.y120_c01327{bottom:603.653333pt;}
.y11c_c01327{bottom:605.186667pt;}
.y121_c01327{bottom:605.946667pt;}
.y11a_c01327{bottom:606.720000pt;}
.y9_c01327{bottom:612.093333pt;}
.y11f_c01327{bottom:617.466667pt;}
.y114_c01327{bottom:619.013333pt;}
.y115_c01327{bottom:619.773333pt;}
.y118_c01327{bottom:623.613333pt;}
.y117_c01327{bottom:624.386667pt;}
.y116_c01327{bottom:625.920000pt;}
.y113_c01327{bottom:632.066667pt;}
.y10e_c01327{bottom:636.666667pt;}
.y10c_c01327{bottom:637.440000pt;}
.y110_c01327{bottom:638.213333pt;}
.y111_c01327{bottom:638.973333pt;}
.y112_c01327{bottom:641.280000pt;}
.y10d_c01327{bottom:642.053333pt;}
.y10f_c01327{bottom:642.813333pt;}
.y105_c01327{bottom:654.333333pt;}
.y107_c01327{bottom:655.106667pt;}
.y10a_c01327{bottom:655.866667pt;}
.y104_c01327{bottom:656.640000pt;}
.y109_c01327{bottom:657.413333pt;}
.y10b_c01327{bottom:658.173333pt;}
.y108_c01327{bottom:658.946667pt;}
.y106_c01327{bottom:659.706667pt;}
.yfd_c01327{bottom:660.480000pt;}
.y101_c01327{bottom:665.093333pt;}
.y100_c01327{bottom:668.160000pt;}
.yfe_c01327{bottom:668.933333pt;}
.yff_c01327{bottom:669.693333pt;}
.y102_c01327{bottom:672.773333pt;}
.y103_c01327{bottom:676.613333pt;}
.yfa_c01327{bottom:691.200000pt;}
.yf8_c01327{bottom:691.973333pt;}
.yfc_c01327{bottom:693.506667pt;}
.yf7_c01327{bottom:695.040000pt;}
.yf9_c01327{bottom:695.813333pt;}
.yfb_c01327{bottom:696.573333pt;}
.yf0_c01327{bottom:704.253333pt;}
.yf6_c01327{bottom:705.026667pt;}
.yed_c01327{bottom:705.786667pt;}
.yeb_c01327{bottom:706.560000pt;}
.yf1_c01327{bottom:707.333333pt;}
.yef_c01327{bottom:708.093333pt;}
.yec_c01327{bottom:708.866667pt;}
.yf2_c01327{bottom:709.626667pt;}
.yf5_c01327{bottom:710.400000pt;}
.yee_c01327{bottom:712.706667pt;}
.yf4_c01327{bottom:714.240000pt;}
.yf3_c01327{bottom:719.613333pt;}
.ye6_c01327{bottom:725.760000pt;}
.ye5_c01327{bottom:726.533333pt;}
.ye8_c01327{bottom:727.293333pt;}
.ye7_c01327{bottom:728.826667pt;}
.ye9_c01327{bottom:731.133333pt;}
.y8_c01327{bottom:739.586667pt;}
.yea_c01327{bottom:742.653333pt;}
.ye1_c01327{bottom:744.186667pt;}
.ye0_c01327{bottom:744.960000pt;}
.ydf_c01327{bottom:745.733333pt;}
.ye4_c01327{bottom:747.266667pt;}
.ye3_c01327{bottom:749.573333pt;}
.ye2_c01327{bottom:750.333333pt;}
.ydc_c01327{bottom:762.626667pt;}
.ydd_c01327{bottom:763.386667pt;}
.yda_c01327{bottom:765.693333pt;}
.yd9_c01327{bottom:766.466667pt;}
.yde_c01327{bottom:768.000000pt;}
.ydb_c01327{bottom:769.533333pt;}
.yd4_c01327{bottom:779.520000pt;}
.yd2_c01327{bottom:780.293333pt;}
.yd7_c01327{bottom:781.053333pt;}
.yd8_c01327{bottom:781.826667pt;}
.yd3_c01327{bottom:782.586667pt;}
.yd1_c01327{bottom:784.133333pt;}
.yd0_c01327{bottom:784.893333pt;}
.yd6_c01327{bottom:785.666667pt;}
.yd5_c01327{bottom:796.413333pt;}
.yca_c01327{bottom:797.186667pt;}
.yc9_c01327{bottom:797.946667pt;}
.yc7_c01327{bottom:799.493333pt;}
.ycd_c01327{bottom:801.026667pt;}
.ycb_c01327{bottom:802.560000pt;}
.yc8_c01327{bottom:803.333333pt;}
.ycc_c01327{bottom:804.093333pt;}
.ycf_c01327{bottom:806.400000pt;}
.yce_c01327{bottom:808.706667pt;}
.ybe_c01327{bottom:812.546667pt;}
.yc0_c01327{bottom:815.613333pt;}
.yc4_c01327{bottom:816.386667pt;}
.yc5_c01327{bottom:817.146667pt;}
.yc2_c01327{bottom:817.920000pt;}
.yc3_c01327{bottom:819.453333pt;}
.yc1_c01327{bottom:820.986667pt;}
.yc6_c01327{bottom:822.533333pt;}
.ybf_c01327{bottom:831.746667pt;}
.yb5_c01327{bottom:833.280000pt;}
.yb8_c01327{bottom:834.813333pt;}
.ybb_c01327{bottom:835.586667pt;}
.yba_c01327{bottom:836.346667pt;}
.ybc_c01327{bottom:837.120000pt;}
.yb4_c01327{bottom:837.893333pt;}
.yb3_c01327{bottom:838.653333pt;}
.yb7_c01327{bottom:839.426667pt;}
.yb9_c01327{bottom:840.186667pt;}
.ybd_c01327{bottom:841.733333pt;}
.yb6_c01327{bottom:848.640000pt;}
.yac_c01327{bottom:851.706667pt;}
.yae_c01327{bottom:852.480000pt;}
.yb0_c01327{bottom:853.253333pt;}
.yb1_c01327{bottom:854.013333pt;}
.yaf_c01327{bottom:854.786667pt;}
.yad_c01327{bottom:855.546667pt;}
.yab_c01327{bottom:856.320000pt;}
.yb2_c01327{bottom:857.853333pt;}
.ya9_c01327{bottom:865.533333pt;}
.ya4_c01327{bottom:866.306667pt;}
.yaa_c01327{bottom:867.066667pt;}
.ya7_c01327{bottom:868.613333pt;}
.ya6_c01327{bottom:870.146667pt;}
.ya5_c01327{bottom:873.213333pt;}
.ya3_c01327{bottom:873.986667pt;}
.ya8_c01327{bottom:878.586667pt;}
.y1d0_c01327{bottom:880.893333pt;}
.y9e_c01327{bottom:888.573333pt;}
.ya0_c01327{bottom:889.346667pt;}
.y9f_c01327{bottom:890.880000pt;}
.y9d_c01327{bottom:891.653333pt;}
.ya2_c01327{bottom:892.413333pt;}
.ya1_c01327{bottom:893.186667pt;}
.y98_c01327{bottom:904.706667pt;}
.y9b_c01327{bottom:905.466667pt;}
.y97_c01327{bottom:906.240000pt;}
.y9a_c01327{bottom:907.013333pt;}
.y96_c01327{bottom:909.306667pt;}
.y9c_c01327{bottom:910.853333pt;}
.y99_c01327{bottom:915.453333pt;}
.y8f_c01327{bottom:922.373333pt;}
.y92_c01327{bottom:923.906667pt;}
.y8e_c01327{bottom:924.666667pt;}
.y93_c01327{bottom:925.440000pt;}
.y94_c01327{bottom:926.213333pt;}
.y91_c01327{bottom:926.973333pt;}
.y90_c01327{bottom:927.746667pt;}
.y95_c01327{bottom:928.506667pt;}
.y8d_c01327{bottom:930.813333pt;}
.y8b_c01327{bottom:939.266667pt;}
.y87_c01327{bottom:940.026667pt;}
.y86_c01327{bottom:940.800000pt;}
.y85_c01327{bottom:941.573333pt;}
.y83_c01327{bottom:943.106667pt;}
.y84_c01327{bottom:945.413333pt;}
.y88_c01327{bottom:946.173333pt;}
.y89_c01327{bottom:948.480000pt;}
.y8a_c01327{bottom:953.853333pt;}
.y8c_c01327{bottom:954.626667pt;}
.y7f_c01327{bottom:957.693333pt;}
.y7e_c01327{bottom:958.466667pt;}
.y80_c01327{bottom:960.773333pt;}
.y81_c01327{bottom:961.533333pt;}
.y7c_c01327{bottom:963.840000pt;}
.y7d_c01327{bottom:964.613333pt;}
.y7b_c01327{bottom:966.146667pt;}
.y82_c01327{bottom:968.453333pt;}
.y78_c01327{bottom:976.893333pt;}
.y77_c01327{bottom:977.666667pt;}
.y7a_c01327{bottom:978.426667pt;}
.y79_c01327{bottom:980.733333pt;}
.y71_c01327{bottom:982.266667pt;}
.y75_c01327{bottom:986.106667pt;}
.y73_c01327{bottom:987.653333pt;}
.y76_c01327{bottom:989.186667pt;}
.y74_c01327{bottom:990.720000pt;}
.y72_c01327{bottom:993.786667pt;}
.y6c_c01327{bottom:994.560000pt;}
.y6f_c01327{bottom:996.093333pt;}
.y70_c01327{bottom:996.866667pt;}
.y6d_c01327{bottom:998.400000pt;}
.y6b_c01327{bottom:999.173333pt;}
.y6a_c01327{bottom:999.933333pt;}
.y6e_c01327{bottom:1000.706667pt;}
.y66_c01327{bottom:1012.986667pt;}
.y65_c01327{bottom:1013.760000pt;}
.y68_c01327{bottom:1014.533333pt;}
.y67_c01327{bottom:1017.600000pt;}
.y64_c01327{bottom:1018.373333pt;}
.y69_c01327{bottom:1019.133333pt;}
.y5e_c01327{bottom:1031.426667pt;}
.y62_c01327{bottom:1032.186667pt;}
.y60_c01327{bottom:1033.733333pt;}
.y61_c01327{bottom:1035.266667pt;}
.y5f_c01327{bottom:1036.026667pt;}
.y63_c01327{bottom:1036.800000pt;}
.y57_c01327{bottom:1048.320000pt;}
.y5a_c01327{bottom:1049.093333pt;}
.y55_c01327{bottom:1049.853333pt;}
.y54_c01327{bottom:1050.626667pt;}
.y59_c01327{bottom:1051.386667pt;}
.y56_c01327{bottom:1052.160000pt;}
.y58_c01327{bottom:1053.693333pt;}
.y5b_c01327{bottom:1054.466667pt;}
.y5c_c01327{bottom:1055.226667pt;}
.y5d_c01327{bottom:1057.533333pt;}
.y53_c01327{bottom:1066.746667pt;}
.y51_c01327{bottom:1067.520000pt;}
.y4_c01327{bottom:1068.293333pt;}
.y5_c01327{bottom:1071.360000pt;}
.y50_c01327{bottom:1072.133333pt;}
.y52_c01327{bottom:1072.893333pt;}
.y4a_c01327{bottom:1084.413333pt;}
.y48_c01327{bottom:1086.720000pt;}
.y3_c01327{bottom:1087.493333pt;}
.y49_c01327{bottom:1089.786667pt;}
.y4f_c01327{bottom:1090.560000pt;}
.y4b_c01327{bottom:1092.866667pt;}
.y6_c01327{bottom:1093.626667pt;}
.y7_c01327{bottom:1094.400000pt;}
.y4c_c01327{bottom:1095.933333pt;}
.y47_c01327{bottom:1098.240000pt;}
.y4d_c01327{bottom:1099.013333pt;}
.y4e_c01327{bottom:1100.546667pt;}
.y40_c01327{bottom:1102.853333pt;}
.y2_c01327{bottom:1104.386667pt;}
.y45_c01327{bottom:1105.146667pt;}
.y46_c01327{bottom:1105.920000pt;}
.y3d_c01327{bottom:1106.693333pt;}
.y3e_c01327{bottom:1107.453333pt;}
.y3f_c01327{bottom:1108.226667pt;}
.y44_c01327{bottom:1112.066667pt;}
.y42_c01327{bottom:1112.826667pt;}
.y41_c01327{bottom:1115.133333pt;}
.y43_c01327{bottom:1115.906667pt;}
.y3a_c01327{bottom:1121.280000pt;}
.y1_c01327{bottom:1122.813333pt;}
.y3b_c01327{bottom:1124.346667pt;}
.y37_c01327{bottom:1125.120000pt;}
.y38_c01327{bottom:1125.893333pt;}
.y39_c01327{bottom:1126.653333pt;}
.y3c_c01327{bottom:1132.026667pt;}
.y36_c01327{bottom:1138.946667pt;}
.y31_c01327{bottom:1140.480000pt;}
.y33_c01327{bottom:1141.253333pt;}
.y34_c01327{bottom:1142.013333pt;}
.y32_c01327{bottom:1143.546667pt;}
.y30_c01327{bottom:1144.320000pt;}
.y35_c01327{bottom:1146.626667pt;}
.y1cf_c01327{bottom:1150.466667pt;}
.y2a_c01327{bottom:1156.613333pt;}
.y2b_c01327{bottom:1157.373333pt;}
.y2c_c01327{bottom:1158.146667pt;}
.y29_c01327{bottom:1158.906667pt;}
.y28_c01327{bottom:1161.213333pt;}
.y2d_c01327{bottom:1161.986667pt;}
.y2f_c01327{bottom:1162.746667pt;}
.y2e_c01327{bottom:1171.200000pt;}
.y26_c01327{bottom:1175.040000pt;}
.y22_c01327{bottom:1175.813333pt;}
.y21_c01327{bottom:1176.573333pt;}
.y23_c01327{bottom:1177.346667pt;}
.y20_c01327{bottom:1179.653333pt;}
.y25_c01327{bottom:1180.413333pt;}
.y27_c01327{bottom:1182.720000pt;}
.y24_c01327{bottom:1191.173333pt;}
.y1d_c01327{bottom:1193.466667pt;}
.y1c_c01327{bottom:1198.080000pt;}
.y1e_c01327{bottom:1198.853333pt;}
.y1f_c01327{bottom:1200.386667pt;}
.y1a_c01327{bottom:1216.506667pt;}
.y1b_c01327{bottom:1218.053333pt;}
.y19_c01327{bottom:1221.893333pt;}
.y18_c01327{bottom:1222.653333pt;}
.y16_c01327{bottom:1223.426667pt;}
.y17_c01327{bottom:1224.186667pt;}
.y13_c01327{bottom:1239.546667pt;}
.y15_c01327{bottom:1243.386667pt;}
.y14_c01327{bottom:1246.466667pt;}
.ha_c01327{height:2.764500pt;}
.h8_c01327{height:4.799479pt;}
.h1d_c01327{height:5.519401pt;}
.h6_c01327{height:8.303099pt;}
.h3_c01327{height:11.038802pt;}
.h7_c01327{height:13.822500pt;}
.h10_c01327{height:16.606198pt;}
.h1e_c01327{height:19.341901pt;}
.h1c_c01327{height:22.125599pt;}
.hd_c01327{height:24.861302pt;}
.h2_c01327{height:27.645000pt;}
.h9_c01327{height:30.428698pt;}
.hc_c01327{height:33.164401pt;}
.h18_c01327{height:35.948099pt;}
.hf_c01327{height:38.683802pt;}
.h4_c01327{height:41.467500pt;}
.h5_c01327{height:44.251198pt;}
.he_c01327{height:46.986901pt;}
.h12_c01327{height:49.770599pt;}
.h13_c01327{height:52.506302pt;}
.h14_c01327{height:55.290000pt;}
.h15_c01327{height:58.073698pt;}
.h19_c01327{height:60.809401pt;}
.h1b_c01327{height:63.593099pt;}
.h16_c01327{height:66.328802pt;}
.h1a_c01327{height:69.112500pt;}
.h1f_c01327{height:71.896198pt;}
.h22_c01327{height:74.631901pt;}
.h20_c01327{height:77.415599pt;}
.h17_c01327{height:80.151302pt;}
.h24_c01327{height:82.935000pt;}
.h26_c01327{height:85.718698pt;}
.h23_c01327{height:91.238099pt;}
.h25_c01327{height:93.973802pt;}
.hb_c01327{height:96.757500pt;}
.h21_c01327{height:110.580000pt;}
.h11_c01327{height:229.463099pt;}
.h0_c01327{height:1341.693333pt;}
.h1_c01327{height:1342.000000pt;}
.w0_c01327{width:959.226667pt;}
.w1_c01327{width:959.333333pt;}
.x0_c01327{left:0.000000pt;}
.x2_c01327{left:1.533333pt;}
.x1_c01327{left:3.066667pt;}
.xc_c01327{left:10.746667pt;}
.x3_c01327{left:16.133333pt;}
.xa_c01327{left:18.426667pt;}
.x8_c01327{left:22.266667pt;}
.xb_c01327{left:33.786667pt;}
.x9_c01327{left:39.933333pt;}
.x6_c01327{left:129.786667pt;}
.x4_c01327{left:132.866667pt;}
.x5_c01327{left:140.546667pt;}
.x7_c01327{left:146.693333pt;}
.xda_c01327{left:167.426667pt;}
.xc2_c01327{left:182.786667pt;}
.xc8_c01327{left:196.613333pt;}
.xa3_c01327{left:198.146667pt;}
.x29_c01327{left:203.520000pt;}
.x9c_c01327{left:205.053333pt;}
.xd7_c01327{left:206.586667pt;}
.xfe_c01327{left:208.893333pt;}
.x117_c01327{left:210.426667pt;}
.xd5_c01327{left:212.733333pt;}
.xe5_c01327{left:215.813333pt;}
.x75_c01327{left:218.106667pt;}
.x34_c01327{left:219.653333pt;}
.x21_c01327{left:221.186667pt;}
.xb2_c01327{left:222.720000pt;}
.x5f_c01327{left:225.026667pt;}
.x115_c01327{left:227.333333pt;}
.x4b_c01327{left:230.400000pt;}
.xf1_c01327{left:231.933333pt;}
.xc3_c01327{left:234.240000pt;}
.x88_c01327{left:235.773333pt;}
.xff_c01327{left:238.080000pt;}
.x22_c01327{left:240.386667pt;}
.xc9_c01327{left:241.920000pt;}
.x104_c01327{left:244.226667pt;}
.xb8_c01327{left:245.760000pt;}
.x94_c01327{left:247.293333pt;}
.x43_c01327{left:248.826667pt;}
.x76_c01327{left:250.373333pt;}
.x60_c01327{left:253.440000pt;}
.x81_c01327{left:254.973333pt;}
.x6a_c01327{left:256.506667pt;}
.x23_c01327{left:260.346667pt;}
.xb3_c01327{left:262.653333pt;}
.xfd_c01327{left:264.186667pt;}
.xa4_c01327{left:265.733333pt;}
.xce_c01327{left:268.026667pt;}
.x6b_c01327{left:269.573333pt;}
.x35_c01327{left:271.866667pt;}
.x10c_c01327{left:273.413333pt;}
.x77_c01327{left:276.480000pt;}
.xfb_c01327{left:278.786667pt;}
.x44_c01327{left:280.320000pt;}
.xa9_c01327{left:284.933333pt;}
.xb4_c01327{left:287.226667pt;}
.x6c_c01327{left:289.533333pt;}
.x82_c01327{left:291.066667pt;}
.x8e_c01327{left:293.373333pt;}
.x57_c01327{left:295.680000pt;}
.x36_c01327{left:297.213333pt;}
.xa5_c01327{left:300.293333pt;}
.xe6_c01327{left:301.826667pt;}
.x6d_c01327{left:304.133333pt;}
.x78_c01327{left:305.666667pt;}
.x100_c01327{left:307.973333pt;}
.xec_c01327{left:311.040000pt;}
.x83_c01327{left:312.573333pt;}
.x58_c01327{left:314.106667pt;}
.x89_c01327{left:315.653333pt;}
.x8f_c01327{left:319.493333pt;}
.x11_c01327{left:321.026667pt;}
.x45_c01327{left:324.866667pt;}
.x61_c01327{left:327.173333pt;}
.xde_c01327{left:328.706667pt;}
.xd_c01327{left:331.013333pt;}
.x2a_c01327{left:332.546667pt;}
.x46_c01327{left:334.080000pt;}
.xb5_c01327{left:335.613333pt;}
.x37_c01327{left:337.146667pt;}
.xea_c01327{left:338.693333pt;}
.x4c_c01327{left:340.226667pt;}
.xf5_c01327{left:342.533333pt;}
.x79_c01327{left:344.066667pt;}
.x4d_c01327{left:345.600000pt;}
.xa6_c01327{left:347.906667pt;}
.x90_c01327{left:349.440000pt;}
.x101_c01327{left:350.973333pt;}
.xc4_c01327{left:353.280000pt;}
.x12_c01327{left:354.813333pt;}
.xcf_c01327{left:357.893333pt;}
.x38_c01327{left:359.426667pt;}
.xdb_c01327{left:360.960000pt;}
.x8a_c01327{left:362.493333pt;}
.x24_c01327{left:364.026667pt;}
.x84_c01327{left:365.573333pt;}
.x4e_c01327{left:368.640000pt;}
.x47_c01327{left:370.946667pt;}
.xbb_c01327{left:372.480000pt;}
.x116_c01327{left:374.786667pt;}
.x91_c01327{left:377.093333pt;}
.xee_c01327{left:378.626667pt;}
.x13_c01327{left:380.160000pt;}
.x62_c01327{left:382.466667pt;}
.x39_c01327{left:384.773333pt;}
.xc5_c01327{left:387.840000pt;}
.x8b_c01327{left:390.146667pt;}
.xb6_c01327{left:391.680000pt;}
.x14_c01327{left:393.986667pt;}
.x2b_c01327{left:399.360000pt;}
.x25_c01327{left:401.666667pt;}
.xca_c01327{left:403.200000pt;}
.x7a_c01327{left:404.733333pt;}
.x4f_c01327{left:406.266667pt;}
.x9d_c01327{left:408.573333pt;}
.x15_c01327{left:410.880000pt;}
.xf8_c01327{left:412.413333pt;}
.x59_c01327{left:413.946624pt;}
.xf6_c01327{left:415.493333pt;}
.xbc_c01327{left:418.560000pt;}
.x16_c01327{left:423.173333pt;}
.xf9_c01327{left:425.466667pt;}
.xe3_c01327{left:427.013333pt;}
.x2c_c01327{left:430.080000pt;}
.x48_c01327{left:431.613333pt;}
.x17_c01327{left:433.146667pt;}
.x7b_c01327{left:434.693333pt;}
.x63_c01327{left:436.986667pt;}
.xaa_c01327{left:439.293333pt;}
.xf2_c01327{left:440.826667pt;}
.xae_c01327{left:443.133333pt;}
.xcb_c01327{left:444.666667pt;}
.x118_c01327{left:446.213333pt;}
.x18_c01327{left:448.506667pt;}
.x85_c01327{left:450.053333pt;}
.x26_c01327{left:453.120000pt;}
.xe_c01327{left:455.426667pt;}
.xd8_c01327{left:456.960000pt;}
.x19_c01327{left:458.493333pt;}
.x50_c01327{left:468.480000pt;}
.x5a_c01327{left:471.546667pt;}
.x51_c01327{left:474.626667pt;}
.x27_c01327{left:476.933333pt;}
.x102_c01327{left:478.466667pt;}
.x2d_c01327{left:480.000000pt;}
.x3a_c01327{left:482.306667pt;}
.xbd_c01327{left:483.840000pt;}
.x6e_c01327{left:485.373333pt;}
.xef_c01327{left:486.906667pt;}
.xd2_c01327{left:488.453333pt;}
.x52_c01327{left:489.986667pt;}
.xfc_c01327{left:491.520000pt;}
.x28_c01327{left:493.053333pt;}
.x3b_c01327{left:495.360000pt;}
.xd3_c01327{left:496.893333pt;}
.x9e_c01327{left:499.200000pt;}
.xf7_c01327{left:501.506667pt;}
.x112_c01327{left:503.040000pt;}
.xdc_c01327{left:508.413520pt;}
.x53_c01327{left:511.493333pt;}
.x1a_c01327{left:513.786667pt;}
.x64_c01327{left:516.093333pt;}
.x8c_c01327{left:518.400000pt;}
.xe7_c01327{left:520.706667pt;}
.x3c_c01327{left:523.013333pt;}
.x6f_c01327{left:525.306667pt;}
.x1b_c01327{left:528.386667pt;}
.x105_c01327{left:530.693333pt;}
.xd0_c01327{left:532.226667pt;}
.x65_c01327{left:535.293333pt;}
.x2e_c01327{left:539.133333pt;}
.x108_c01327{left:540.666667pt;}
.xaf_c01327{left:542.973333pt;}
.x70_c01327{left:544.506667pt;}
.x1c_c01327{left:546.813333pt;}
.x99_c01327{left:549.120000pt;}
.x110_c01327{left:552.960000pt;}
.x54_c01327{left:554.493333pt;}
.x109_c01327{left:556.026667pt;}
.x1d_c01327{left:557.573333pt;}
.x11b_c01327{left:559.866667pt;}
.xed_c01327{left:562.173333pt;}
.x3d_c01327{left:564.480000pt;}
.x5b_c01327{left:566.013333pt;}
.x113_c01327{left:569.093333pt;}
.x49_c01327{left:570.626667pt;}
.x8d_c01327{left:572.933333pt;}
.x9f_c01327{left:574.466667pt;}
.x1e_c01327{left:576.000000pt;}
.x95_c01327{left:579.066667pt;}
.xf0_c01327{left:582.906667pt;}
.x11a_c01327{left:584.453333pt;}
.x66_c01327{left:585.986667pt;}
.xa0_c01327{left:587.520000pt;}
.xf_c01327{left:589.826667pt;}
.x71_c01327{left:592.133333pt;}
.x10a_c01327{left:593.666667pt;}
.xa7_c01327{left:595.200000pt;}
.x98_c01327{left:596.733333pt;}
.x2f_c01327{left:598.266667pt;}
.xab_c01327{left:600.573333pt;}
.x7c_c01327{left:602.106667pt;}
.x4a_c01327{left:605.186667pt;}
.xb0_c01327{left:606.720000pt;}
.x55_c01327{left:609.026667pt;}
.x10_c01327{left:610.560000pt;}
.xe8_c01327{left:612.866667pt;}
.xdd_c01327{left:617.466667pt;}
.x5c_c01327{left:619.013333pt;}
.x1f_c01327{left:621.306667pt;}
.xb7_c01327{left:622.853333pt;}
.x96_c01327{left:625.146667pt;}
.xb1_c01327{left:626.693333pt;}
.x86_c01327{left:628.226667pt;}
.x3e_c01327{left:630.533333pt;}
.xac_c01327{left:634.373333pt;}
.x92_c01327{left:635.906667pt;}
.x10d_c01327{left:637.440000pt;}
.x30_c01327{left:638.973333pt;}
.xa1_c01327{left:642.053333pt;}
.x72_c01327{left:643.586667pt;}
.xd1_c01327{left:645.893333pt;}
.x3f_c01327{left:648.186667pt;}
.x106_c01327{left:649.733333pt;}
.xc6_c01327{left:652.026667pt;}
.x67_c01327{left:653.573333pt;}
.x87_c01327{left:655.106667pt;}
.x9a_c01327{left:658.173333pt;}
.xbe_c01327{left:659.706667pt;}
.x73_c01327{left:662.786667pt;}
.x7d_c01327{left:665.093333pt;}
.x93_c01327{left:666.626667pt;}
.x97_c01327{left:668.160000pt;}
.xdf_c01327{left:669.693333pt;}
.xa8_c01327{left:673.533333pt;}
.x40_c01327{left:678.146667pt;}
.xb9_c01327{left:680.453333pt;}
.xe4_c01327{left:681.986667pt;}
.x119_c01327{left:683.520000pt;}
.x10b_c01327{left:686.586667pt;}
.xbf_c01327{left:688.133333pt;}
.x31_c01327{left:689.666667pt;}
.xeb_c01327{left:691.973333pt;}
.xa2_c01327{left:694.266667pt;}
.x7e_c01327{left:698.106667pt;}
.x56_c01327{left:701.186667pt;}
.xf3_c01327{left:702.720000pt;}
.x41_c01327{left:705.026667pt;}
.x7f_c01327{left:707.333333pt;}
.xcc_c01327{left:708.866667pt;}
.xad_c01327{left:712.706667pt;}
.xe0_c01327{left:714.240000pt;}
.xd4_c01327{left:715.773333pt;}
.x32_c01327{left:718.853333pt;}
.x42_c01327{left:720.386667pt;}
.xe1_c01327{left:721.920000pt;}
.x68_c01327{left:723.453333pt;}
.x5d_c01327{left:725.760000pt;}
.xd9_c01327{left:728.066667pt;}
.x111_c01327{left:730.373333pt;}
.x20_c01327{left:731.906667pt;}
.xba_c01327{left:734.213333pt;}
.xf4_c01327{left:736.506667pt;}
.x69_c01327{left:738.053333pt;}
.x74_c01327{left:739.586667pt;}
.xc0_c01327{left:741.893333pt;}
.xe2_c01327{left:743.426667pt;}
.x114_c01327{left:744.960000pt;}
.xc7_c01327{left:746.493333pt;}
.xe9_c01327{left:749.573333pt;}
.xcd_c01327{left:751.106667pt;}
.x33_c01327{left:754.173333pt;}
.x80_c01327{left:755.706667pt;}
.x5e_c01327{left:758.013333pt;}
.xd6_c01327{left:764.160000pt;}
.x103_c01327{left:766.466667pt;}
.x9b_c01327{left:769.533333pt;}
.xc1_c01327{left:773.373333pt;}
.x10e_c01327{left:775.680000pt;}
.x10f_c01327{left:779.520000pt;}
.x107_c01327{left:784.133333pt;}
.xfa_c01327{left:787.973333pt;}
.x11d_c01327{left:797.186667pt;}
.x11c_c01327{left:815.613333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ba8b46c8fb288fe194a16d9b.woff2')format("woff");}.ff1_c01328{font-family:ff1_c01328;line-height:1.109863;font-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_c01328{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m19_c01328{transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);}
.m11_c01328{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01328{transform:matrix(0.119300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119300,0.000000,0.000000,0.250000,0,0);}
.m2_c01328{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01328{transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144225,0.000000,0.000000,0.250000,0,0);}
.m7_c01328{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);}
.m3d_c01328{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.m5_c01328{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m32_c01328{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);}
.m30_c01328{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m2c_c01328{transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219125,0.000000,0.000000,0.250000,0,0);}
.m3e_c01328{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m43_c01328{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);}
.m2f_c01328{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);}
.m21_c01328{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);}
.m24_c01328{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);}
.m41_c01328{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);}
.m20_c01328{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);}
.m1e_c01328{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01328{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);}
.m8_c01328{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01328{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_c01328{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c01328{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m34_c01328{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);}
.m23_c01328{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m33_c01328{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);}
.m42_c01328{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m26_c01328{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01328{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m36_c01328{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);}
.m28_c01328{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m15_c01328{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9_c01328{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m22_c01328{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m35_c01328{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01328{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m38_c01328{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m27_c01328{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01328{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01328{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m16_c01328{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m44_c01328{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);}
.m3b_c01328{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m13_c01328{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mf_c01328{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m39_c01328{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m18_c01328{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01328{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);}
.m12_c01328{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01328{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);}
.mb_c01328{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);}
.me_c01328{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01328{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01328{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m17_c01328{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m10_c01328{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4_c01328{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m0_c01328{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m40_c01328{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m37_c01328{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m29_c01328{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma_c01328{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);}
.m14_c01328{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m45_c01328{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m31_c01328{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m6_c01328{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m25_c01328{transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.337500,0.000000,0.000000,0.250000,0,0);}
.md_c01328{transform:matrix(3.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.170000,0.000000,0.000000,0.250000,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;}
.fc0_c01328{color:transparent;}
.fs1_c01328{font-size:3.456000px;}
.fs5_c01328{font-size:6.000000px;}
.fs1a_c01328{font-size:6.900000px;}
.fse_c01328{font-size:10.380000px;}
.fs2_c01328{font-size:13.800000px;}
.fs15_c01328{font-size:17.280000px;}
.fs19_c01328{font-size:20.760000px;}
.fs3_c01328{font-size:24.180000px;}
.fs6_c01328{font-size:27.660000px;}
.fs0_c01328{font-size:31.080000px;}
.fs1c_c01328{font-size:34.560000px;}
.fs16_c01328{font-size:41.460000px;}
.fsc_c01328{font-size:44.940000px;}
.fs1b_c01328{font-size:48.360000px;}
.fs18_c01328{font-size:51.840000px;}
.fsd_c01328{font-size:55.320000px;}
.fs17_c01328{font-size:58.740000px;}
.fs9_c01328{font-size:62.220000px;}
.fsf_c01328{font-size:69.120000px;}
.fs12_c01328{font-size:72.600000px;}
.fs10_c01328{font-size:76.020000px;}
.fs11_c01328{font-size:79.500000px;}
.fs4_c01328{font-size:82.920000px;}
.fs1e_c01328{font-size:86.400000px;}
.fs14_c01328{font-size:89.880000px;}
.fs13_c01328{font-size:93.300000px;}
.fs1d_c01328{font-size:96.780000px;}
.fs8_c01328{font-size:107.160000px;}
.fs7_c01328{font-size:148.620000px;}
.fsa_c01328{font-size:155.520000px;}
.fsb_c01328{font-size:203.880000px;}
.y0_c01328{bottom:0.000000px;}
.y3f_c01328{bottom:746.490000px;}
.y3e_c01328{bottom:770.685000px;}
.y3c_c01328{bottom:841.530000px;}
.y3d_c01328{bottom:845.850000px;}
.y39_c01328{bottom:858.810000px;}
.y37_c01328{bottom:859.680000px;}
.y38_c01328{bottom:861.405000px;}
.y3a_c01328{bottom:863.130000px;}
.y3b_c01328{bottom:864.870000px;}
.y36_c01328{bottom:884.730000px;}
.y33_c01328{bottom:885.600000px;}
.y34_c01328{bottom:886.470000px;}
.y35_c01328{bottom:887.325000px;}
.y30_c01328{bottom:902.010000px;}
.y31_c01328{bottom:903.750000px;}
.y2f_c01328{bottom:906.330000px;}
.y32_c01328{bottom:908.925000px;}
.y2d_c01328{bottom:922.755000px;}
.y2c_c01328{bottom:926.205000px;}
.y2e_c01328{bottom:927.075000px;}
.y2b_c01328{bottom:930.525000px;}
.y29_c01328{bottom:943.485000px;}
.y2a_c01328{bottom:946.080000px;}
.y27_c01328{bottom:946.950000px;}
.y28_c01328{bottom:947.805000px;}
.y25_c01328{bottom:961.635000px;}
.y24_c01328{bottom:966.810000px;}
.y26_c01328{bottom:978.915000px;}
.y21_c01328{bottom:985.830000px;}
.y20_c01328{bottom:986.685000px;}
.y22_c01328{bottom:987.555000px;}
.y23_c01328{bottom:991.005000px;}
.y1f_c01328{bottom:1039.395000px;}
.y1a_c01328{bottom:1086.915000px;}
.y1c_c01328{bottom:1089.510000px;}
.y1b_c01328{bottom:1091.235000px;}
.y1e_c01328{bottom:1094.685000px;}
.y1d_c01328{bottom:1095.555000px;}
.y16_c01328{bottom:1123.200000px;}
.y15_c01328{bottom:1124.070000px;}
.y17_c01328{bottom:1124.925000px;}
.y18_c01328{bottom:1125.795000px;}
.y19_c01328{bottom:1126.650000px;}
.yf_c01328{bottom:1211.325000px;}
.y10_c01328{bottom:1213.050000px;}
.ye_c01328{bottom:1213.920000px;}
.yd_c01328{bottom:1216.515000px;}
.y14_c01328{bottom:1226.880000px;}
.y13_c01328{bottom:1231.200000px;}
.yc_c01328{bottom:1277.850000px;}
.yb_c01328{bottom:1307.235000px;}
.ya_c01328{bottom:1327.110000px;}
.y12_c01328{bottom:1337.475000px;}
.y11_c01328{bottom:1358.205000px;}
.y9_c01328{bottom:1365.120000px;}
.y8_c01328{bottom:1368.570000px;}
.y7_c01328{bottom:1371.165000px;}
.y6_c01328{bottom:1372.035000px;}
.y5_c01328{bottom:1375.485000px;}
.y4_c01328{bottom:1404.870000px;}
.y3_c01328{bottom:1405.725000px;}
.y1_c01328{bottom:1437.690000px;}
.y2_c01328{bottom:1443.750000px;}
.h3_c01328{height:3.110063px;}
.h7_c01328{height:5.399414px;}
.h1c_c01328{height:6.209326px;}
.h10_c01328{height:9.340986px;}
.h4_c01328{height:12.418652px;}
.h17_c01328{height:15.550313px;}
.h1b_c01328{height:18.681973px;}
.h5_c01328{height:21.759639px;}
.h8_c01328{height:24.891299px;}
.h2_c01328{height:27.968965px;}
.h1e_c01328{height:31.100625px;}
.h18_c01328{height:37.309951px;}
.he_c01328{height:40.441611px;}
.h1d_c01328{height:43.519277px;}
.h1a_c01328{height:46.650937px;}
.hf_c01328{height:49.782598px;}
.h19_c01328{height:52.860264px;}
.hb_c01328{height:55.991924px;}
.h11_c01328{height:62.201250px;}
.h14_c01328{height:65.332910px;}
.h12_c01328{height:68.410576px;}
.h13_c01328{height:71.542236px;}
.h6_c01328{height:74.619902px;}
.h20_c01328{height:77.751563px;}
.h16_c01328{height:80.883223px;}
.h15_c01328{height:83.960889px;}
.h1f_c01328{height:87.092549px;}
.ha_c01328{height:96.433535px;}
.h9_c01328{height:133.743486px;}
.hc_c01328{height:139.952812px;}
.hd_c01328{height:183.472090px;}
.h1_c01328{height:1513.500000px;}
.h0_c01328{height:1513.725000px;}
.w0_c01328{width:1083.450000px;}
.w1_c01328{width:1083.750000px;}
.x0_c01328{left:0.000000px;}
.x5_c01328{left:127.875000px;}
.x43_c01328{left:189.210000px;}
.x3c_c01328{left:190.950000px;}
.x3d_c01328{left:202.170000px;}
.x1_c01328{left:203.910000px;}
.x46_c01328{left:206.490000px;}
.x3e_c01328{left:211.680000px;}
.x2_c01328{left:222.045000px;}
.x47_c01328{left:223.770000px;}
.x3f_c01328{left:235.005000px;}
.x6_c01328{left:240.195000px;}
.xc_c01328{left:242.790000px;}
.xb_c01328{left:244.515000px;}
.xf_c01328{left:247.965000px;}
.x25_c01328{left:270.435000px;}
.x26_c01328{left:274.755000px;}
.x40_c01328{left:278.205000px;}
.x17_c01328{left:286.845000px;}
.x48_c01328{left:292.035000px;}
.x10_c01328{left:310.170000px;}
.x4a_c01328{left:312.765000px;}
.x34_c01328{left:324.870000px;}
.x18_c01328{left:328.320000px;}
.x4b_c01328{left:330.915000px;}
.x27_c01328{left:336.960000px;}
.x35_c01328{left:338.685000px;}
.x28_c01328{left:352.515000px;}
.x29_c01328{left:369.795000px;}
.x19_c01328{left:378.435000px;}
.x2f_c01328{left:381.885000px;}
.x2a_c01328{left:393.990000px;}
.x31_c01328{left:401.760000px;}
.x11_c01328{left:406.080000px;}
.x49_c01328{left:413.850000px;}
.x2b_c01328{left:415.590000px;}
.x38_c01328{left:418.170000px;}
.x44_c01328{left:430.275000px;}
.x2c_c01328{left:432.870000px;}
.x41_c01328{left:446.685000px;}
.x2d_c01328{left:457.920000px;}
.x36_c01328{left:465.690000px;}
.x7_c01328{left:476.925000px;}
.x32_c01328{left:481.245000px;}
.x8_c01328{left:485.565000px;}
.x37_c01328{left:488.160000px;}
.x33_c01328{left:489.885000px;}
.x42_c01328{left:491.610000px;}
.x45_c01328{left:495.930000px;}
.x39_c01328{left:500.250000px;}
.xe_c01328{left:505.440000px;}
.x3a_c01328{left:511.485000px;}
.x3b_c01328{left:532.230000px;}
.xd_c01328{left:540.000000px;}
.x1a_c01328{left:541.725000px;}
.x2e_c01328{left:545.190000px;}
.x30_c01328{left:546.915000px;}
.x22_c01328{left:570.240000px;}
.x9_c01328{left:577.155000px;}
.x23_c01328{left:592.710000px;}
.x1b_c01328{left:599.610000px;}
.x24_c01328{left:618.630000px;}
.x1c_c01328{left:636.765000px;}
.x1d_c01328{left:679.965000px;}
.x1e_c01328{left:713.670000px;}
.xa_c01328{left:729.210000px;}
.x1f_c01328{left:755.130000px;}
.x20_c01328{left:779.325000px;}
.x21_c01328{left:790.560000px;}
.x12_c01328{left:814.755000px;}
.x13_c01328{left:828.570000px;}
.x4c_c01328{left:997.920825px;}
.x14_c01328{left:1003.110000px;}
.x4d_c01328{left:1010.010000px;}
.x4e_c01328{left:1020.390000px;}
.x3_c01328{left:1025.565000px;}
.x4_c01328{left:1037.670000px;}
.x15_c01328{left:1041.990000px;}
.x16_c01328{left:1058.400000px;}
@media print{
.v0_c01328{vertical-align:0.000000pt;}
.ls0_c01328{letter-spacing:0.000000pt;}
.ws0_c01328{word-spacing:0.000000pt;}
.fs1_c01328{font-size:3.072000pt;}
.fs5_c01328{font-size:5.333333pt;}
.fs1a_c01328{font-size:6.133333pt;}
.fse_c01328{font-size:9.226667pt;}
.fs2_c01328{font-size:12.266667pt;}
.fs15_c01328{font-size:15.360000pt;}
.fs19_c01328{font-size:18.453333pt;}
.fs3_c01328{font-size:21.493333pt;}
.fs6_c01328{font-size:24.586667pt;}
.fs0_c01328{font-size:27.626667pt;}
.fs1c_c01328{font-size:30.720000pt;}
.fs16_c01328{font-size:36.853333pt;}
.fsc_c01328{font-size:39.946667pt;}
.fs1b_c01328{font-size:42.986667pt;}
.fs18_c01328{font-size:46.080000pt;}
.fsd_c01328{font-size:49.173333pt;}
.fs17_c01328{font-size:52.213333pt;}
.fs9_c01328{font-size:55.306667pt;}
.fsf_c01328{font-size:61.440000pt;}
.fs12_c01328{font-size:64.533333pt;}
.fs10_c01328{font-size:67.573333pt;}
.fs11_c01328{font-size:70.666667pt;}
.fs4_c01328{font-size:73.706667pt;}
.fs1e_c01328{font-size:76.800000pt;}
.fs14_c01328{font-size:79.893333pt;}
.fs13_c01328{font-size:82.933333pt;}
.fs1d_c01328{font-size:86.026667pt;}
.fs8_c01328{font-size:95.253333pt;}
.fs7_c01328{font-size:132.106667pt;}
.fsa_c01328{font-size:138.240000pt;}
.fsb_c01328{font-size:181.226667pt;}
.y0_c01328{bottom:0.000000pt;}
.y3f_c01328{bottom:663.546667pt;}
.y3e_c01328{bottom:685.053333pt;}
.y3c_c01328{bottom:748.026667pt;}
.y3d_c01328{bottom:751.866667pt;}
.y39_c01328{bottom:763.386667pt;}
.y37_c01328{bottom:764.160000pt;}
.y38_c01328{bottom:765.693333pt;}
.y3a_c01328{bottom:767.226667pt;}
.y3b_c01328{bottom:768.773333pt;}
.y36_c01328{bottom:786.426667pt;}
.y33_c01328{bottom:787.200000pt;}
.y34_c01328{bottom:787.973333pt;}
.y35_c01328{bottom:788.733333pt;}
.y30_c01328{bottom:801.786667pt;}
.y31_c01328{bottom:803.333333pt;}
.y2f_c01328{bottom:805.626667pt;}
.y32_c01328{bottom:807.933333pt;}
.y2d_c01328{bottom:820.226667pt;}
.y2c_c01328{bottom:823.293333pt;}
.y2e_c01328{bottom:824.066667pt;}
.y2b_c01328{bottom:827.133333pt;}
.y29_c01328{bottom:838.653333pt;}
.y2a_c01328{bottom:840.960000pt;}
.y27_c01328{bottom:841.733333pt;}
.y28_c01328{bottom:842.493333pt;}
.y25_c01328{bottom:854.786667pt;}
.y24_c01328{bottom:859.386667pt;}
.y26_c01328{bottom:870.146667pt;}
.y21_c01328{bottom:876.293333pt;}
.y20_c01328{bottom:877.053333pt;}
.y22_c01328{bottom:877.826667pt;}
.y23_c01328{bottom:880.893333pt;}
.y1f_c01328{bottom:923.906667pt;}
.y1a_c01328{bottom:966.146667pt;}
.y1c_c01328{bottom:968.453333pt;}
.y1b_c01328{bottom:969.986667pt;}
.y1e_c01328{bottom:973.053333pt;}
.y1d_c01328{bottom:973.826667pt;}
.y16_c01328{bottom:998.400000pt;}
.y15_c01328{bottom:999.173333pt;}
.y17_c01328{bottom:999.933333pt;}
.y18_c01328{bottom:1000.706667pt;}
.y19_c01328{bottom:1001.466667pt;}
.yf_c01328{bottom:1076.733333pt;}
.y10_c01328{bottom:1078.266667pt;}
.ye_c01328{bottom:1079.040000pt;}
.yd_c01328{bottom:1081.346667pt;}
.y14_c01328{bottom:1090.560000pt;}
.y13_c01328{bottom:1094.400000pt;}
.yc_c01328{bottom:1135.866667pt;}
.yb_c01328{bottom:1161.986667pt;}
.ya_c01328{bottom:1179.653333pt;}
.y12_c01328{bottom:1188.866667pt;}
.y11_c01328{bottom:1207.293333pt;}
.y9_c01328{bottom:1213.440000pt;}
.y8_c01328{bottom:1216.506667pt;}
.y7_c01328{bottom:1218.813333pt;}
.y6_c01328{bottom:1219.586667pt;}
.y5_c01328{bottom:1222.653333pt;}
.y4_c01328{bottom:1248.773333pt;}
.y3_c01328{bottom:1249.533333pt;}
.y1_c01328{bottom:1277.946667pt;}
.y2_c01328{bottom:1283.333333pt;}
.h3_c01328{height:2.764500pt;}
.h7_c01328{height:4.799479pt;}
.h1c_c01328{height:5.519401pt;}
.h10_c01328{height:8.303099pt;}
.h4_c01328{height:11.038802pt;}
.h17_c01328{height:13.822500pt;}
.h1b_c01328{height:16.606198pt;}
.h5_c01328{height:19.341901pt;}
.h8_c01328{height:22.125599pt;}
.h2_c01328{height:24.861302pt;}
.h1e_c01328{height:27.645000pt;}
.h18_c01328{height:33.164401pt;}
.he_c01328{height:35.948099pt;}
.h1d_c01328{height:38.683802pt;}
.h1a_c01328{height:41.467500pt;}
.hf_c01328{height:44.251198pt;}
.h19_c01328{height:46.986901pt;}
.hb_c01328{height:49.770599pt;}
.h11_c01328{height:55.290000pt;}
.h14_c01328{height:58.073698pt;}
.h12_c01328{height:60.809401pt;}
.h13_c01328{height:63.593099pt;}
.h6_c01328{height:66.328802pt;}
.h20_c01328{height:69.112500pt;}
.h16_c01328{height:71.896198pt;}
.h15_c01328{height:74.631901pt;}
.h1f_c01328{height:77.415599pt;}
.ha_c01328{height:85.718698pt;}
.h9_c01328{height:118.883099pt;}
.hc_c01328{height:124.402500pt;}
.hd_c01328{height:163.086302pt;}
.h1_c01328{height:1345.333333pt;}
.h0_c01328{height:1345.533333pt;}
.w0_c01328{width:963.066667pt;}
.w1_c01328{width:963.333333pt;}
.x0_c01328{left:0.000000pt;}
.x5_c01328{left:113.666667pt;}
.x43_c01328{left:168.186667pt;}
.x3c_c01328{left:169.733333pt;}
.x3d_c01328{left:179.706667pt;}
.x1_c01328{left:181.253333pt;}
.x46_c01328{left:183.546667pt;}
.x3e_c01328{left:188.160000pt;}
.x2_c01328{left:197.373333pt;}
.x47_c01328{left:198.906667pt;}
.x3f_c01328{left:208.893333pt;}
.x6_c01328{left:213.506667pt;}
.xc_c01328{left:215.813333pt;}
.xb_c01328{left:217.346667pt;}
.xf_c01328{left:220.413333pt;}
.x25_c01328{left:240.386667pt;}
.x26_c01328{left:244.226667pt;}
.x40_c01328{left:247.293333pt;}
.x17_c01328{left:254.973333pt;}
.x48_c01328{left:259.586667pt;}
.x10_c01328{left:275.706667pt;}
.x4a_c01328{left:278.013333pt;}
.x34_c01328{left:288.773333pt;}
.x18_c01328{left:291.840000pt;}
.x4b_c01328{left:294.146667pt;}
.x27_c01328{left:299.520000pt;}
.x35_c01328{left:301.053333pt;}
.x28_c01328{left:313.346667pt;}
.x29_c01328{left:328.706667pt;}
.x19_c01328{left:336.386667pt;}
.x2f_c01328{left:339.453333pt;}
.x2a_c01328{left:350.213333pt;}
.x31_c01328{left:357.120000pt;}
.x11_c01328{left:360.960000pt;}
.x49_c01328{left:367.866667pt;}
.x2b_c01328{left:369.413333pt;}
.x38_c01328{left:371.706667pt;}
.x44_c01328{left:382.466667pt;}
.x2c_c01328{left:384.773333pt;}
.x41_c01328{left:397.053333pt;}
.x2d_c01328{left:407.040000pt;}
.x36_c01328{left:413.946667pt;}
.x7_c01328{left:423.933333pt;}
.x32_c01328{left:427.773333pt;}
.x8_c01328{left:431.613333pt;}
.x37_c01328{left:433.920000pt;}
.x33_c01328{left:435.453333pt;}
.x42_c01328{left:436.986667pt;}
.x45_c01328{left:440.826667pt;}
.x39_c01328{left:444.666667pt;}
.xe_c01328{left:449.280000pt;}
.x3a_c01328{left:454.653333pt;}
.x3b_c01328{left:473.093333pt;}
.xd_c01328{left:480.000000pt;}
.x1a_c01328{left:481.533333pt;}
.x2e_c01328{left:484.613333pt;}
.x30_c01328{left:486.146667pt;}
.x22_c01328{left:506.880000pt;}
.x9_c01328{left:513.026667pt;}
.x23_c01328{left:526.853333pt;}
.x1b_c01328{left:532.986667pt;}
.x24_c01328{left:549.893333pt;}
.x1c_c01328{left:566.013333pt;}
.x1d_c01328{left:604.413333pt;}
.x1e_c01328{left:634.373333pt;}
.xa_c01328{left:648.186667pt;}
.x1f_c01328{left:671.226667pt;}
.x20_c01328{left:692.733333pt;}
.x21_c01328{left:702.720000pt;}
.x12_c01328{left:724.226667pt;}
.x13_c01328{left:736.506667pt;}
.x4c_c01328{left:887.040733pt;}
.x14_c01328{left:891.653333pt;}
.x4d_c01328{left:897.786667pt;}
.x4e_c01328{left:907.013333pt;}
.x3_c01328{left:911.613333pt;}
.x4_c01328{left:922.373333pt;}
.x15_c01328{left:926.213333pt;}
.x16_c01328{left:940.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_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;}
@font-face{font-family:ff1_c01329;src:url('chunks/assets/font_33548d1c117e0e2dba226971.woff2')format("woff");}.ff1_c01329{font-family:ff1_c01329;line-height:1.109863;font-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_c01329{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01329{transform:matrix(0.077475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077475,0.000000,0.000000,0.250000,0,0);}
.m111_c01329{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m16d_c01329{transform:matrix(0.089700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089700,0.000000,0.000000,0.250000,0,0);}
.m59_c01329{transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);}
.m131_c01329{transform:matrix(0.102475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102475,0.000000,0.000000,0.250000,0,0);}
.mf1_c01329{transform:matrix(0.103975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103975,0.000000,0.000000,0.250000,0,0);}
.m37_c01329{transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);}
.m140_c01329{transform:matrix(0.107575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107575,0.000000,0.000000,0.250000,0,0);}
.m16a_c01329{transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113350,0.000000,0.000000,0.250000,0,0);}
.m13b_c01329{transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);}
.m199_c01329{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);}
.md3_c01329{transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116750,0.000000,0.000000,0.250000,0,0);}
.mdc_c01329{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);}
.mdb_c01329{transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120650,0.000000,0.000000,0.250000,0,0);}
.m44_c01329{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);}
.m137_c01329{transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124100,0.000000,0.000000,0.250000,0,0);}
.mc7_c01329{transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124375,0.000000,0.000000,0.250000,0,0);}
.m182_c01329{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m195_c01329{transform:matrix(0.128725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128725,0.000000,0.000000,0.250000,0,0);}
.mf0_c01329{transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);}
.m194_c01329{transform:matrix(0.132025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132025,0.000000,0.000000,0.250000,0,0);}
.m21_c01329{transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132525,0.000000,0.000000,0.250000,0,0);}
.m15a_c01329{transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);}
.mcc_c01329{transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133250,0.000000,0.000000,0.250000,0,0);}
.m171_c01329{transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);}
.md1_c01329{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.m1_c01329{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m14_c01329{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.mab_c01329{transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138550,0.000000,0.000000,0.250000,0,0);}
.m5a_c01329{transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138575,0.000000,0.000000,0.250000,0,0);}
.m83_c01329{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m4f_c01329{transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);}
.mc8_c01329{transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141725,0.000000,0.000000,0.250000,0,0);}
.m58_c01329{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m16e_c01329{transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142550,0.000000,0.000000,0.250000,0,0);}
.m61_c01329{transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);}
.mcb_c01329{transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);}
.m3_c01329{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m17a_c01329{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.m143_c01329{transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144325,0.000000,0.000000,0.250000,0,0);}
.m13a_c01329{transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144950,0.000000,0.000000,0.250000,0,0);}
.m156_c01329{transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);}
.m13c_c01329{transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146450,0.000000,0.000000,0.250000,0,0);}
.m57_c01329{transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);}
.m4e_c01329{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m176_c01329{transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);}
.m158_c01329{transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150225,0.000000,0.000000,0.250000,0,0);}
.m12c_c01329{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.me8_c01329{transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);}
.m163_c01329{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);}
.m154_c01329{transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);}
.m160_c01329{transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);}
.mf9_c01329{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.md9_c01329{transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155075,0.000000,0.000000,0.250000,0,0);}
.m105_c01329{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.m18d_c01329{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.ma5_c01329{transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156150,0.000000,0.000000,0.250000,0,0);}
.m13e_c01329{transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156675,0.000000,0.000000,0.250000,0,0);}
.m82_c01329{transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157050,0.000000,0.000000,0.250000,0,0);}
.me5_c01329{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);}
.mb5_c01329{transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);}
.m159_c01329{transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);}
.m14f_c01329{transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157925,0.000000,0.000000,0.250000,0,0);}
.m17e_c01329{transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);}
.mcf_c01329{transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159975,0.000000,0.000000,0.250000,0,0);}
.mc4_c01329{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);}
.mb6_c01329{transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);}
.m4b_c01329{transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160100,0.000000,0.000000,0.250000,0,0);}
.mea_c01329{transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);}
.mf2_c01329{transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160925,0.000000,0.000000,0.250000,0,0);}
.mef_c01329{transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);}
.m100_c01329{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.m89_c01329{transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162850,0.000000,0.000000,0.250000,0,0);}
.m175_c01329{transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163325,0.000000,0.000000,0.250000,0,0);}
.m9d_c01329{transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);}
.m167_c01329{transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164175,0.000000,0.000000,0.250000,0,0);}
.m119_c01329{transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164850,0.000000,0.000000,0.250000,0,0);}
.mb8_c01329{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.m85_c01329{transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165500,0.000000,0.000000,0.250000,0,0);}
.m104_c01329{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.m102_c01329{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.mcd_c01329{transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);}
.m75_c01329{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);}
.mf3_c01329{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);}
.m120_c01329{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.m40_c01329{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.m50_c01329{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.mca_c01329{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);}
.mc1_c01329{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.m10f_c01329{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m190_c01329{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.m107_c01329{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);}
.m187_c01329{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.m142_c01329{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m53_c01329{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);}
.m179_c01329{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);}
.m127_c01329{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);}
.mb9_c01329{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m13d_c01329{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);}
.m110_c01329{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);}
.m8f_c01329{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m14e_c01329{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.ma1_c01329{transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176700,0.000000,0.000000,0.250000,0,0);}
.m38_c01329{transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176925,0.000000,0.000000,0.250000,0,0);}
.m84_c01329{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m129_c01329{transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);}
.m116_c01329{transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178650,0.000000,0.000000,0.250000,0,0);}
.maa_c01329{transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179200,0.000000,0.000000,0.250000,0,0);}
.m153_c01329{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);}
.m15f_c01329{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);}
.m15e_c01329{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.me4_c01329{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);}
.m17d_c01329{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.mb7_c01329{transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180600,0.000000,0.000000,0.250000,0,0);}
.mde_c01329{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);}
.mee_c01329{transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180875,0.000000,0.000000,0.250000,0,0);}
.m186_c01329{transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);}
.m15b_c01329{transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181225,0.000000,0.000000,0.250000,0,0);}
.m174_c01329{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.m193_c01329{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mdd_c01329{transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);}
.mfe_c01329{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.m12b_c01329{transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);}
.m79_c01329{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);}
.m7f_c01329{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m151_c01329{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m16c_c01329{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);}
.m99_c01329{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);}
.me6_c01329{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.m162_c01329{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);}
.m4d_c01329{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mdf_c01329{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m6b_c01329{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);}
.mf5_c01329{transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188525,0.000000,0.000000,0.250000,0,0);}
.m101_c01329{transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188600,0.000000,0.000000,0.250000,0,0);}
.m18b_c01329{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.mbf_c01329{transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);}
.mfa_c01329{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m88_c01329{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m114_c01329{transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);}
.m123_c01329{transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191100,0.000000,0.000000,0.250000,0,0);}
.m8d_c01329{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);}
.m32_c01329{transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191550,0.000000,0.000000,0.250000,0,0);}
.m45_c01329{transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192150,0.000000,0.000000,0.250000,0,0);}
.m172_c01329{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);}
.m121_c01329{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);}
.m113_c01329{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.mc0_c01329{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.m168_c01329{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m166_c01329{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.mfd_c01329{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m109_c01329{transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194000,0.000000,0.000000,0.250000,0,0);}
.m7e_c01329{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m18c_c01329{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);}
.me9_c01329{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);}
.mfb_c01329{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);}
.m133_c01329{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);}
.m62_c01329{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m130_c01329{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);}
.m34_c01329{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.mad_c01329{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);}
.m4c_c01329{transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197675,0.000000,0.000000,0.250000,0,0);}
.md4_c01329{transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197725,0.000000,0.000000,0.250000,0,0);}
.me1_c01329{transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198025,0.000000,0.000000,0.250000,0,0);}
.m108_c01329{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);}
.m51_c01329{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m122_c01329{transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198675,0.000000,0.000000,0.250000,0,0);}
.m126_c01329{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);}
.m192_c01329{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);}
.m10c_c01329{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.ma4_c01329{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);}
.m16_c01329{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.m98_c01329{transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200050,0.000000,0.000000,0.250000,0,0);}
.m145_c01329{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.mf4_c01329{transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);}
.mc5_c01329{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);}
.ma9_c01329{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);}
.m181_c01329{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m36_c01329{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.mb3_c01329{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);}
.m86_c01329{transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);}
.me0_c01329{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);}
.m66_c01329{transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);}
.m173_c01329{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);}
.m1a_c01329{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);}
.m191_c01329{transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203775,0.000000,0.000000,0.250000,0,0);}
.m12a_c01329{transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204075,0.000000,0.000000,0.250000,0,0);}
.m197_c01329{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m6e_c01329{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m3e_c01329{transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);}
.md5_c01329{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);}
.m2f_c01329{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);}
.m16f_c01329{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m9b_c01329{transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);}
.m93_c01329{transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205725,0.000000,0.000000,0.250000,0,0);}
.ma7_c01329{transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);}
.m18a_c01329{transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206200,0.000000,0.000000,0.250000,0,0);}
.m170_c01329{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.m7b_c01329{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m17b_c01329{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.m14d_c01329{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.md6_c01329{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mac_c01329{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m157_c01329{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);}
.m115_c01329{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);}
.me2_c01329{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);}
.m124_c01329{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);}
.m161_c01329{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);}
.m148_c01329{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);}
.mec_c01329{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m68_c01329{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.md7_c01329{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.m35_c01329{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);}
.m14c_c01329{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m144_c01329{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);}
.meb_c01329{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);}
.mf7_c01329{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);}
.m17_c01329{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m42_c01329{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);}
.maf_c01329{transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);}
.m184_c01329{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);}
.m91_c01329{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m90_c01329{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);}
.m146_c01329{transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);}
.m15d_c01329{transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214550,0.000000,0.000000,0.250000,0,0);}
.m134_c01329{transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);}
.m48_c01329{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);}
.m1c_c01329{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);}
.mbb_c01329{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.m2a_c01329{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);}
.m12e_c01329{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);}
.m41_c01329{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);}
.m18f_c01329{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m6a_c01329{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.mbe_c01329{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);}
.m112_c01329{transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);}
.m178_c01329{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);}
.m150_c01329{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.m177_c01329{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);}
.m54_c01329{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);}
.m164_c01329{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.md8_c01329{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);}
.m136_c01329{transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);}
.m24_c01329{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m17c_c01329{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.m152_c01329{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);}
.mf6_c01329{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.m9c_c01329{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m95_c01329{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m155_c01329{transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227525,0.000000,0.000000,0.250000,0,0);}
.m8b_c01329{transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);}
.m92_c01329{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);}
.mc2_c01329{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.m96_c01329{transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230350,0.000000,0.000000,0.250000,0,0);}
.mf8_c01329{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);}
.m14b_c01329{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);}
.me3_c01329{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);}
.m52_c01329{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);}
.m183_c01329{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m165_c01329{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m55_c01329{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);}
.mc6_c01329{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);}
.m43_c01329{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m169_c01329{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);}
.m11b_c01329{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);}
.m15c_c01329{transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);}
.mba_c01329{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);}
.md0_c01329{transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);}
.m97_c01329{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);}
.m70_c01329{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);}
.m128_c01329{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);}
.m9e_c01329{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m12f_c01329{transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236300,0.000000,0.000000,0.250000,0,0);}
.m188_c01329{transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);}
.mff_c01329{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m18e_c01329{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.m8c_c01329{transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237250,0.000000,0.000000,0.250000,0,0);}
.m149_c01329{transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);}
.m78_c01329{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);}
.mbc_c01329{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);}
.m11a_c01329{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);}
.m118_c01329{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m147_c01329{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.mda_c01329{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);}
.mbd_c01329{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);}
.m14a_c01329{transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);}
.m3d_c01329{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);}
.m11e_c01329{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);}
.m6d_c01329{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);}
.m72_c01329{transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242700,0.000000,0.000000,0.250000,0,0);}
.m141_c01329{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);}
.me7_c01329{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m6f_c01329{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);}
.mae_c01329{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);}
.ma6_c01329{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m22_c01329{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m25_c01329{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);}
.m6_c01329{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m10b_c01329{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);}
.m132_c01329{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);}
.m64_c01329{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);}
.m189_c01329{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);}
.ma2_c01329{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);}
.m7d_c01329{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m8a_c01329{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);}
.mb2_c01329{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m12d_c01329{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);}
.m13f_c01329{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);}
.mfc_c01329{transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249300,0.000000,0.000000,0.250000,0,0);}
.m2_c01329{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);}
.m11c_c01329{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);}
.m1e_c01329{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);}
.me_c01329{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m60_c01329{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);}
.ma0_c01329{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);}
.m7c_c01329{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);}
.ma8_c01329{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);}
.mb_c01329{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mc_c01329{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01329{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01329{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);}
.m103_c01329{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01329{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);}
.m9_c01329{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);}
.m2e_c01329{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c01329{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);}
.m15_c01329{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01329{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01329{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);}
.m73_c01329{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m28_c01329{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);}
.m4_c01329{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);}
.m47_c01329{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m27_c01329{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c01329{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);}
.m1d_c01329{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m23_c01329{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m30_c01329{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);}
.m63_c01329{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01329{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m19_c01329{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mf_c01329{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6c_c01329{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m69_c01329{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01329{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m18_c01329{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m71_c01329{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);}
.m9f_c01329{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m65_c01329{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m49_c01329{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m8_c01329{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m77_c01329{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);}
.m117_c01329{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);}
.mb0_c01329{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m20_c01329{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01329{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m46_c01329{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01329{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m76_c01329{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m81_c01329{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);}
.ma_c01329{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01329{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);}
.m9a_c01329{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m10d_c01329{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m8e_c01329{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m17f_c01329{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mb4_c01329{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m19b_c01329{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m80_c01329{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);}
.m5b_c01329{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);}
.mce_c01329{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);}
.ma3_c01329{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m94_c01329{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m11f_c01329{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);}
.m3c_c01329{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5_c01329{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m39_c01329{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01329{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);}
.m1b_c01329{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m139_c01329{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m135_c01329{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m87_c01329{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m138_c01329{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m11d_c01329{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m198_c01329{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m74_c01329{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m13_c01329{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);}
.m31_c01329{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01329{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m0_c01329{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m33_c01329{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);}
.m29_c01329{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m180_c01329{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m185_c01329{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m56_c01329{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.md2_c01329{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01329{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m26_c01329{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m196_c01329{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m10a_c01329{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m19a_c01329{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m106_c01329{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m19c_c01329{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m67_c01329{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01329{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc3_c01329{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.med_c01329{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m16b_c01329{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m10e_c01329{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m125_c01329{transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);}
.m12_c01329{transform:matrix(1.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.465000,0.000000,0.000000,0.250000,0,0);}
.m10_c01329{transform:matrix(2.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.537500,0.000000,0.000000,0.250000,0,0);}
.v1_c01329{vertical-align:-6.900000px;}
.v0_c01329{vertical-align:0.000000px;}
.v2_c01329{vertical-align:3.420000px;}
.ls3_c01329{letter-spacing:0.000000px;}
.ls2_c01329{letter-spacing:48.202740px;}
.ls0_c01329{letter-spacing:58.088700px;}
.ls1_c01329{letter-spacing:64.130700px;}
.sc__c01329{text-shadow:none;}
.sc0_c01329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01329{-webkit-text-stroke:0px transparent;}
.sc0_c01329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01329{word-spacing:0.000000px;}
.fc0_c01329{color:transparent;}
.fse_c01329{font-size:3.456000px;}
.fs4_c01329{font-size:6.000000px;}
.fs3_c01329{font-size:6.900000px;}
.fsc_c01329{font-size:10.380000px;}
.fs18_c01329{font-size:13.800000px;}
.fsb_c01329{font-size:17.280000px;}
.fs6_c01329{font-size:20.760000px;}
.fsd_c01329{font-size:24.180000px;}
.fs1f_c01329{font-size:27.660000px;}
.fs15_c01329{font-size:31.080000px;}
.fs16_c01329{font-size:34.560000px;}
.fs1_c01329{font-size:38.040000px;}
.fs12_c01329{font-size:41.460000px;}
.fs19_c01329{font-size:44.940000px;}
.fs11_c01329{font-size:48.360000px;}
.fs14_c01329{font-size:51.840000px;}
.fs0_c01329{font-size:55.320000px;}
.fs10_c01329{font-size:58.740000px;}
.fs9_c01329{font-size:62.220000px;}
.fs17_c01329{font-size:65.640000px;}
.fs8_c01329{font-size:69.120000px;}
.fs7_c01329{font-size:72.600000px;}
.fs13_c01329{font-size:76.020000px;}
.fsa_c01329{font-size:79.500000px;}
.fsf_c01329{font-size:82.920000px;}
.fs5_c01329{font-size:86.400000px;}
.fs1c_c01329{font-size:89.880000px;}
.fs1a_c01329{font-size:93.300000px;}
.fs1b_c01329{font-size:96.780000px;}
.fs1e_c01329{font-size:100.200000px;}
.fs1d_c01329{font-size:103.680000px;}
.fs2_c01329{font-size:193.560000px;}
.y0_c01329{bottom:0.000000px;}
.y1c0_c01329{bottom:124.410000px;}
.y1c1_c01329{bottom:126.150000px;}
.y1bf_c01329{bottom:143.430000px;}
.y1bd_c01329{bottom:150.330000px;}
.y1be_c01329{bottom:151.200000px;}
.y1bb_c01329{bottom:156.390000px;}
.y1bc_c01329{bottom:158.115000px;}
.y1b4_c01329{bottom:165.885000px;}
.y1b3_c01329{bottom:167.610000px;}
.y1b2_c01329{bottom:170.205000px;}
.y1b5_c01329{bottom:175.395000px;}
.y1b0_c01329{bottom:182.310000px;}
.y1b1_c01329{bottom:184.890000px;}
.y1ab_c01329{bottom:185.760000px;}
.y1ad_c01329{bottom:186.630000px;}
.y1aa_c01329{bottom:187.485000px;}
.y1af_c01329{bottom:190.950000px;}
.y1ae_c01329{bottom:191.805000px;}
.y1ac_c01329{bottom:194.400000px;}
.y1a9_c01329{bottom:205.635000px;}
.y1a5_c01329{bottom:206.490000px;}
.y1a6_c01329{bottom:209.085000px;}
.y1a7_c01329{bottom:209.955000px;}
.y1a8_c01329{bottom:211.680000px;}
.y1a0_c01329{bottom:227.235000px;}
.y1a3_c01329{bottom:228.090000px;}
.y1a4_c01329{bottom:228.960000px;}
.y1a2_c01329{bottom:230.685000px;}
.y19e_c01329{bottom:231.555000px;}
.y19f_c01329{bottom:233.280000px;}
.y1a1_c01329{bottom:234.150000px;}
.y19b_c01329{bottom:245.370000px;}
.y197_c01329{bottom:247.110000px;}
.y196_c01329{bottom:247.965000px;}
.y198_c01329{bottom:248.835000px;}
.y199_c01329{bottom:250.560000px;}
.y19a_c01329{bottom:252.285000px;}
.y19d_c01329{bottom:253.155000px;}
.y19c_c01329{bottom:254.010000px;}
.y194_c01329{bottom:268.710000px;}
.y192_c01329{bottom:269.565000px;}
.y191_c01329{bottom:270.435000px;}
.y195_c01329{bottom:272.160000px;}
.y193_c01329{bottom:273.030000px;}
.y190_c01329{bottom:273.885000px;}
.y18f_c01329{bottom:274.755000px;}
.y18c_c01329{bottom:287.715000px;}
.y18b_c01329{bottom:288.570000px;}
.y189_c01329{bottom:289.440000px;}
.y18a_c01329{bottom:290.310000px;}
.y18e_c01329{bottom:291.165000px;}
.y188_c01329{bottom:292.890000px;}
.y18d_c01329{bottom:293.760000px;}
.y187_c01329{bottom:304.125000px;}
.y17e_c01329{bottom:307.590000px;}
.y182_c01329{bottom:308.445000px;}
.y186_c01329{bottom:309.315000px;}
.y180_c01329{bottom:310.170000px;}
.y183_c01329{bottom:312.765000px;}
.y181_c01329{bottom:314.490000px;}
.y185_c01329{bottom:315.360000px;}
.y17f_c01329{bottom:316.230000px;}
.y184_c01329{bottom:325.725000px;}
.y17d_c01329{bottom:328.320000px;}
.y176_c01329{bottom:330.045000px;}
.y179_c01329{bottom:330.915000px;}
.y177_c01329{bottom:332.640000px;}
.y17b_c01329{bottom:333.510000px;}
.y17c_c01329{bottom:334.365000px;}
.y17a_c01329{bottom:335.235000px;}
.y178_c01329{bottom:337.830000px;}
.y175_c01329{bottom:343.005000px;}
.y171_c01329{bottom:348.195000px;}
.y173_c01329{bottom:349.050000px;}
.y16d_c01329{bottom:350.790000px;}
.y16f_c01329{bottom:353.370000px;}
.y172_c01329{bottom:355.110000px;}
.y16e_c01329{bottom:356.835000px;}
.y170_c01329{bottom:358.560000px;}
.y174_c01329{bottom:362.010000px;}
.y16c_c01329{bottom:367.200000px;}
.y167_c01329{bottom:368.070000px;}
.y165_c01329{bottom:368.925000px;}
.y164_c01329{bottom:369.795000px;}
.y16a_c01329{bottom:371.520000px;}
.y169_c01329{bottom:373.245000px;}
.y16b_c01329{bottom:374.970000px;}
.y168_c01329{bottom:375.840000px;}
.y166_c01329{bottom:377.565000px;}
.y161_c01329{bottom:389.670000px;}
.y162_c01329{bottom:390.525000px;}
.y15f_c01329{bottom:392.250000px;}
.y163_c01329{bottom:393.990000px;}
.y15e_c01329{bottom:394.845000px;}
.y160_c01329{bottom:395.715000px;}
.y15c_c01329{bottom:396.570000px;}
.y1ba_c01329{bottom:401.760000px;}
.y15d_c01329{bottom:402.630000px;}
.y1b9_c01329{bottom:407.805000px;}
.y15b_c01329{bottom:411.270000px;}
.y15a_c01329{bottom:412.125000px;}
.y159_c01329{bottom:412.995000px;}
.y157_c01329{bottom:413.850000px;}
.y158_c01329{bottom:417.315000px;}
.y156_c01329{bottom:430.275000px;}
.y151_c01329{bottom:431.130000px;}
.y154_c01329{bottom:432.000000px;}
.y152_c01329{bottom:432.870000px;}
.y155_c01329{bottom:434.595000px;}
.y153_c01329{bottom:435.450000px;}
.y14b_c01329{bottom:449.280000px;}
.y14d_c01329{bottom:451.005000px;}
.y14f_c01329{bottom:451.875000px;}
.y14e_c01329{bottom:452.730000px;}
.y149_c01329{bottom:453.600000px;}
.y14a_c01329{bottom:454.470000px;}
.y150_c01329{bottom:455.325000px;}
.y148_c01329{bottom:457.050000px;}
.y14c_c01329{bottom:457.920000px;}
.y147_c01329{bottom:464.835000px;}
.y146_c01329{bottom:465.690000px;}
.y142_c01329{bottom:466.560000px;}
.y144_c01329{bottom:468.285000px;}
.y141_c01329{bottom:471.750000px;}
.y143_c01329{bottom:473.475000px;}
.y13f_c01329{bottom:476.925000px;}
.y140_c01329{bottom:477.795000px;}
.y145_c01329{bottom:480.390000px;}
.y13e_c01329{bottom:487.290000px;}
.y13c_c01329{bottom:489.885000px;}
.y13d_c01329{bottom:491.610000px;}
.y139_c01329{bottom:492.480000px;}
.y13b_c01329{bottom:496.800000px;}
.y13a_c01329{bottom:497.670000px;}
.y137_c01329{bottom:511.485000px;}
.y134_c01329{bottom:512.355000px;}
.y136_c01329{bottom:513.210000px;}
.y135_c01329{bottom:514.080000px;}
.y138_c01329{bottom:515.805000px;}
.y133_c01329{bottom:518.400000px;}
.y132_c01329{bottom:530.490000px;}
.y12f_c01329{bottom:532.230000px;}
.y130_c01329{bottom:533.955000px;}
.y131_c01329{bottom:535.680000px;}
.y12d_c01329{bottom:536.550000px;}
.y12e_c01329{bottom:537.405000px;}
.y12a_c01329{bottom:551.235000px;}
.y125_c01329{bottom:552.960000px;}
.y126_c01329{bottom:553.830000px;}
.y129_c01329{bottom:555.555000px;}
.y127_c01329{bottom:556.410000px;}
.y124_c01329{bottom:557.280000px;}
.y123_c01329{bottom:558.150000px;}
.y12c_c01329{bottom:567.645000px;}
.y12b_c01329{bottom:569.370000px;}
.y121_c01329{bottom:571.110000px;}
.y128_c01329{bottom:571.965000px;}
.y11e_c01329{bottom:572.835000px;}
.y122_c01329{bottom:574.560000px;}
.y11f_c01329{bottom:577.155000px;}
.y120_c01329{bottom:578.010000px;}
.y11d_c01329{bottom:591.840000px;}
.y119_c01329{bottom:592.710000px;}
.y11b_c01329{bottom:593.565000px;}
.y118_c01329{bottom:597.030000px;}
.y11c_c01329{bottom:597.885000px;}
.y11a_c01329{bottom:598.755000px;}
.y117_c01329{bottom:612.570000px;}
.y110_c01329{bottom:613.440000px;}
.y10f_c01329{bottom:614.310000px;}
.y116_c01329{bottom:616.035000px;}
.y113_c01329{bottom:617.760000px;}
.y115_c01329{bottom:618.630000px;}
.y111_c01329{bottom:619.485000px;}
.y112_c01329{bottom:621.210000px;}
.y114_c01329{bottom:632.445000px;}
.y10d_c01329{bottom:633.315000px;}
.y10c_c01329{bottom:635.040000px;}
.y10e_c01329{bottom:635.910000px;}
.y10b_c01329{bottom:637.635000px;}
.y109_c01329{bottom:638.490000px;}
.y10a_c01329{bottom:639.360000px;}
.y104_c01329{bottom:653.190000px;}
.y105_c01329{bottom:654.045000px;}
.y106_c01329{bottom:655.770000px;}
.y107_c01329{bottom:656.640000px;}
.y108_c01329{bottom:657.510000px;}
.y101_c01329{bottom:658.365000px;}
.y102_c01329{bottom:659.235000px;}
.y103_c01329{bottom:660.090000px;}
.y100_c01329{bottom:673.920000px;}
.yfd_c01329{bottom:674.790000px;}
.yfb_c01329{bottom:675.645000px;}
.yfc_c01329{bottom:676.515000px;}
.yf9_c01329{bottom:677.370000px;}
.yfe_c01329{bottom:678.240000px;}
.yff_c01329{bottom:679.110000px;}
.yfa_c01329{bottom:685.155000px;}
.yf5_c01329{bottom:692.925000px;}
.yf4_c01329{bottom:693.795000px;}
.yf3_c01329{bottom:694.650000px;}
.yf7_c01329{bottom:695.520000px;}
.yf6_c01329{bottom:698.115000px;}
.yf8_c01329{bottom:698.970000px;}
.yf2_c01329{bottom:707.610000px;}
.yf0_c01329{bottom:712.800000px;}
.yf1_c01329{bottom:713.670000px;}
.yeb_c01329{bottom:714.525000px;}
.yea_c01329{bottom:715.395000px;}
.yed_c01329{bottom:716.250000px;}
.ye9_c01329{bottom:717.120000px;}
.yef_c01329{bottom:718.845000px;}
.yee_c01329{bottom:719.715000px;}
.yec_c01329{bottom:733.530000px;}
.ye6_c01329{bottom:734.400000px;}
.ye5_c01329{bottom:735.270000px;}
.ye8_c01329{bottom:738.720000px;}
.ye7_c01329{bottom:739.590000px;}
.ydf_c01329{bottom:755.130000px;}
.ye3_c01329{bottom:756.870000px;}
.ye0_c01329{bottom:757.725000px;}
.ye4_c01329{bottom:759.450000px;}
.ye1_c01329{bottom:761.190000px;}
.ye2_c01329{bottom:762.915000px;}
.y1b8_c01329{bottom:766.365000px;}
.ydd_c01329{bottom:774.150000px;}
.yd9_c01329{bottom:775.005000px;}
.ydb_c01329{bottom:775.875000px;}
.yde_c01329{bottom:777.600000px;}
.yda_c01329{bottom:779.325000px;}
.ydc_c01329{bottom:780.195000px;}
.yd5_c01329{bottom:794.010000px;}
.yd6_c01329{bottom:794.880000px;}
.yd7_c01329{bottom:796.605000px;}
.yd8_c01329{bottom:797.475000px;}
.yd2_c01329{bottom:799.200000px;}
.yd3_c01329{bottom:800.070000px;}
.yd4_c01329{bottom:800.925000px;}
.yd1_c01329{bottom:806.115000px;}
.ycf_c01329{bottom:808.710000px;}
.ycd_c01329{bottom:809.565000px;}
.ycb_c01329{bottom:811.290000px;}
.yce_c01329{bottom:812.160000px;}
.ycc_c01329{bottom:813.030000px;}
.yd0_c01329{bottom:814.755000px;}
.yca_c01329{bottom:815.610000px;}
.yc7_c01329{bottom:834.630000px;}
.yc4_c01329{bottom:835.485000px;}
.yc1_c01329{bottom:836.355000px;}
.yc9_c01329{bottom:837.210000px;}
.yc5_c01329{bottom:838.080000px;}
.yc0_c01329{bottom:838.950000px;}
.yc6_c01329{bottom:839.805000px;}
.yc3_c01329{bottom:840.675000px;}
.yc2_c01329{bottom:841.530000px;}
.yc8_c01329{bottom:850.170000px;}
.yb9_c01329{bottom:856.230000px;}
.ybe_c01329{bottom:857.085000px;}
.ybd_c01329{bottom:857.955000px;}
.ybb_c01329{bottom:858.810000px;}
.ybf_c01329{bottom:860.550000px;}
.yba_c01329{bottom:861.405000px;}
.ybc_c01329{bottom:870.045000px;}
.yb8_c01329{bottom:874.365000px;}
.yb3_c01329{bottom:876.960000px;}
.yb7_c01329{bottom:879.555000px;}
.yb5_c01329{bottom:880.410000px;}
.yb2_c01329{bottom:881.280000px;}
.yb4_c01329{bottom:882.150000px;}
.yb6_c01329{bottom:891.645000px;}
.yb0_c01329{bottom:896.835000px;}
.yb1_c01329{bottom:898.560000px;}
.yaf_c01329{bottom:900.285000px;}
.yac_c01329{bottom:901.155000px;}
.yae_c01329{bottom:902.010000px;}
.yad_c01329{bottom:902.880000px;}
.yaa_c01329{bottom:914.970000px;}
.yab_c01329{bottom:915.840000px;}
.ya8_c01329{bottom:916.710000px;}
.ya7_c01329{bottom:917.565000px;}
.ya9_c01329{bottom:920.160000px;}
.ya5_c01329{bottom:921.030000px;}
.ya4_c01329{bottom:921.885000px;}
.ya6_c01329{bottom:922.755000px;}
.ya3_c01329{bottom:934.845000px;}
.ya2_c01329{bottom:935.715000px;}
.y9b_c01329{bottom:936.570000px;}
.ya1_c01329{bottom:937.440000px;}
.y9a_c01329{bottom:938.310000px;}
.y9f_c01329{bottom:939.165000px;}
.y9e_c01329{bottom:940.890000px;}
.y9c_c01329{bottom:941.760000px;}
.y9d_c01329{bottom:942.630000px;}
.ya0_c01329{bottom:943.485000px;}
.y99_c01329{bottom:959.040000px;}
.y94_c01329{bottom:959.910000px;}
.y95_c01329{bottom:960.765000px;}
.y96_c01329{bottom:962.490000px;}
.y98_c01329{bottom:963.360000px;}
.y97_c01329{bottom:964.230000px;}
.y93_c01329{bottom:968.550000px;}
.y90_c01329{bottom:976.320000px;}
.y8e_c01329{bottom:978.045000px;}
.y8f_c01329{bottom:981.510000px;}
.y91_c01329{bottom:982.365000px;}
.y92_c01329{bottom:983.235000px;}
.y8a_c01329{bottom:994.470000px;}
.y88_c01329{bottom:997.050000px;}
.y89_c01329{bottom:998.790000px;}
.y8c_c01329{bottom:1001.370000px;}
.y8d_c01329{bottom:1002.240000px;}
.y8b_c01329{bottom:1003.110000px;}
.y84_c01329{bottom:1016.925000px;}
.y83_c01329{bottom:1017.795000px;}
.y87_c01329{bottom:1020.390000px;}
.y86_c01329{bottom:1021.245000px;}
.y85_c01329{bottom:1022.970000px;}
.y82_c01329{bottom:1035.075000px;}
.y81_c01329{bottom:1035.930000px;}
.y7b_c01329{bottom:1037.670000px;}
.y7f_c01329{bottom:1038.525000px;}
.y80_c01329{bottom:1039.395000px;}
.y7d_c01329{bottom:1040.250000px;}
.y7e_c01329{bottom:1041.120000px;}
.y1b7_c01329{bottom:1041.990000px;}
.y7c_c01329{bottom:1042.845000px;}
.y7a_c01329{bottom:1043.715000px;}
.y78_c01329{bottom:1058.400000px;}
.y74_c01329{bottom:1060.125000px;}
.y75_c01329{bottom:1063.590000px;}
.y79_c01329{bottom:1064.445000px;}
.y76_c01329{bottom:1068.765000px;}
.y77_c01329{bottom:1077.405000px;}
.y70_c01329{bottom:1078.275000px;}
.y6f_c01329{bottom:1079.130000px;}
.y72_c01329{bottom:1082.595000px;}
.y6e_c01329{bottom:1083.450000px;}
.y6d_c01329{bottom:1084.320000px;}
.y73_c01329{bottom:1085.190000px;}
.y71_c01329{bottom:1086.045000px;}
.y6b_c01329{bottom:1098.150000px;}
.y67_c01329{bottom:1099.875000px;}
.y6c_c01329{bottom:1100.730000px;}
.y68_c01329{bottom:1104.195000px;}
.y69_c01329{bottom:1105.050000px;}
.y6a_c01329{bottom:1115.430000px;}
.y64_c01329{bottom:1119.750000px;}
.y66_c01329{bottom:1120.605000px;}
.y61_c01329{bottom:1121.475000px;}
.y60_c01329{bottom:1123.200000px;}
.y5f_c01329{bottom:1124.070000px;}
.y5e_c01329{bottom:1124.925000px;}
.y63_c01329{bottom:1128.390000px;}
.y65_c01329{bottom:1130.970000px;}
.y62_c01329{bottom:1135.290000px;}
.y5b_c01329{bottom:1138.755000px;}
.y57_c01329{bottom:1139.610000px;}
.y5a_c01329{bottom:1140.480000px;}
.y58_c01329{bottom:1143.075000px;}
.y59_c01329{bottom:1144.800000px;}
.y5c_c01329{bottom:1145.670000px;}
.y5d_c01329{bottom:1155.165000px;}
.y55_c01329{bottom:1159.485000px;}
.y4f_c01329{bottom:1160.355000px;}
.y53_c01329{bottom:1161.210000px;}
.y52_c01329{bottom:1163.805000px;}
.y54_c01329{bottom:1164.675000px;}
.y50_c01329{bottom:1165.530000px;}
.y51_c01329{bottom:1166.400000px;}
.y56_c01329{bottom:1173.315000px;}
.y4e_c01329{bottom:1182.810000px;}
.y4d_c01329{bottom:1183.680000px;}
.y4b_c01329{bottom:1185.405000px;}
.y4c_c01329{bottom:1186.275000px;}
.y43_c01329{bottom:1200.090000px;}
.y48_c01329{bottom:1200.960000px;}
.y46_c01329{bottom:1201.830000px;}
.y44_c01329{bottom:1202.685000px;}
.y47_c01329{bottom:1205.280000px;}
.y4a_c01329{bottom:1206.150000px;}
.y45_c01329{bottom:1207.005000px;}
.y49_c01329{bottom:1207.875000px;}
.y3f_c01329{bottom:1220.835000px;}
.y42_c01329{bottom:1221.690000px;}
.y3e_c01329{bottom:1222.560000px;}
.y3c_c01329{bottom:1223.430000px;}
.y41_c01329{bottom:1225.155000px;}
.y3d_c01329{bottom:1226.880000px;}
.y40_c01329{bottom:1227.750000px;}
.y34_c01329{bottom:1241.565000px;}
.y3b_c01329{bottom:1242.435000px;}
.y3a_c01329{bottom:1243.290000px;}
.y39_c01329{bottom:1245.030000px;}
.y38_c01329{bottom:1246.755000px;}
.y36_c01329{bottom:1247.610000px;}
.y35_c01329{bottom:1248.480000px;}
.y1b6_c01329{bottom:1251.075000px;}
.y37_c01329{bottom:1260.570000px;}
.y2d_c01329{bottom:1262.310000px;}
.y31_c01329{bottom:1263.165000px;}
.y2f_c01329{bottom:1264.035000px;}
.y30_c01329{bottom:1265.760000px;}
.y32_c01329{bottom:1266.630000px;}
.y2c_c01329{bottom:1267.485000px;}
.y2e_c01329{bottom:1268.355000px;}
.y33_c01329{bottom:1279.590000px;}
.y25_c01329{bottom:1281.315000px;}
.y23_c01329{bottom:1282.170000px;}
.y2b_c01329{bottom:1283.910000px;}
.y29_c01329{bottom:1285.635000px;}
.y22_c01329{bottom:1286.490000px;}
.y28_c01329{bottom:1287.360000px;}
.y24_c01329{bottom:1288.230000px;}
.y27_c01329{bottom:1289.085000px;}
.y2a_c01329{bottom:1291.680000px;}
.y26_c01329{bottom:1297.725000px;}
.y1f_c01329{bottom:1300.320000px;}
.y1c_c01329{bottom:1303.770000px;}
.y21_c01329{bottom:1304.640000px;}
.y20_c01329{bottom:1306.365000px;}
.y1b_c01329{bottom:1307.235000px;}
.y1a_c01329{bottom:1308.090000px;}
.y1d_c01329{bottom:1308.960000px;}
.y1e_c01329{bottom:1309.830000px;}
.y19_c01329{bottom:1320.195000px;}
.y17_c01329{bottom:1322.790000px;}
.y14_c01329{bottom:1324.515000px;}
.y18_c01329{bottom:1327.110000px;}
.y16_c01329{bottom:1327.965000px;}
.y15_c01329{bottom:1328.835000px;}
.yf_c01329{bottom:1343.520000px;}
.y13_c01329{bottom:1347.840000px;}
.y10_c01329{bottom:1348.710000px;}
.y11_c01329{bottom:1350.435000px;}
.y12_c01329{bottom:1352.160000px;}
.yc_c01329{bottom:1368.570000px;}
.yd_c01329{bottom:1369.440000px;}
.yb_c01329{bottom:1371.165000px;}
.ya_c01329{bottom:1372.890000px;}
.ye_c01329{bottom:1374.630000px;}
.y8_c01329{bottom:1376.355000px;}
.y7_c01329{bottom:1377.210000px;}
.y9_c01329{bottom:1378.080000px;}
.y3_c01329{bottom:1397.085000px;}
.y5_c01329{bottom:1398.810000px;}
.y6_c01329{bottom:1400.550000px;}
.y4_c01329{bottom:1401.405000px;}
.y2_c01329{bottom:1430.790000px;}
.y1_c01329{bottom:1448.070000px;}
.h10_c01329{height:3.110063px;}
.h6_c01329{height:5.399414px;}
.h5_c01329{height:6.209326px;}
.h21_c01329{height:8.650313px;}
.he_c01329{height:9.340986px;}
.h1a_c01329{height:12.418652px;}
.hd_c01329{height:15.550313px;}
.h8_c01329{height:18.681973px;}
.hf_c01329{height:21.759639px;}
.h22_c01329{height:24.891299px;}
.h17_c01329{height:27.968965px;}
.h18_c01329{height:31.100625px;}
.h3_c01329{height:34.232285px;}
.h14_c01329{height:37.309951px;}
.h1b_c01329{height:40.441611px;}
.h13_c01329{height:43.519277px;}
.h16_c01329{height:46.650937px;}
.h2_c01329{height:49.782598px;}
.h12_c01329{height:52.860264px;}
.hb_c01329{height:55.991924px;}
.h19_c01329{height:59.069590px;}
.ha_c01329{height:62.201250px;}
.h9_c01329{height:65.332910px;}
.h15_c01329{height:68.410576px;}
.hc_c01329{height:71.542236px;}
.h11_c01329{height:74.619902px;}
.h7_c01329{height:77.751563px;}
.h1e_c01329{height:80.883223px;}
.h1c_c01329{height:83.960889px;}
.h1d_c01329{height:87.092549px;}
.h20_c01329{height:90.170215px;}
.h1f_c01329{height:93.301875px;}
.h4_c01329{height:174.185098px;}
.h0_c01329{height:1509.405000px;}
.h1_c01329{height:1509.750000px;}
.w0_c01329{width:1079.130000px;}
.w1_c01329{width:1079.250000px;}
.x0_c01329{left:0.000000px;}
.x106_c01329{left:63.929952px;}
.x109_c01329{left:119.235048px;}
.x10a_c01329{left:127.875000px;}
.x10b_c01329{left:142.560000px;}
.x108_c01329{left:144.285000px;}
.x107_c01329{left:146.880000px;}
.x93_c01329{left:196.125000px;}
.x2a_c01329{left:221.190000px;}
.xfc_c01329{left:225.510000px;}
.xd5_c01329{left:227.235000px;}
.x9f_c01329{left:230.685000px;}
.xa2_c01329{left:232.410000px;}
.x22_c01329{left:234.150000px;}
.xb1_c01329{left:235.875000px;}
.x18_c01329{left:237.600000px;}
.x5e_c01329{left:240.195000px;}
.x2b_c01329{left:241.920000px;}
.xef_c01329{left:243.645000px;}
.x8_c01329{left:255.750000px;}
.x75_c01329{left:260.070000px;}
.xfd_c01329{left:261.795000px;}
.x45_c01329{left:263.520000px;}
.x82_c01329{left:267.840000px;}
.xdb_c01329{left:270.435000px;}
.xe7_c01329{left:273.885000px;}
.x23_c01329{left:275.610000px;}
.xaa_c01329{left:279.930000px;}
.x9a_c01329{left:282.525000px;}
.x5f_c01329{left:285.120000px;}
.x2c_c01329{left:289.440000px;}
.xcc_c01329{left:291.165000px;}
.x100_c01329{left:294.630000px;}
.xe5_c01329{left:296.355000px;}
.xd6_c01329{left:298.080000px;}
.x39_c01329{left:299.805000px;}
.x4f_c01329{left:302.400000px;}
.x9_c01329{left:304.995000px;}
.x12_c01329{left:306.720000px;}
.xe6_c01329{left:308.445000px;}
.xd7_c01329{left:310.170000px;}
.xf0_c01329{left:311.910000px;}
.x19_c01329{left:314.490000px;}
.x83_c01329{left:316.230000px;}
.xc2_c01329{left:317.955000px;}
.x69_c01329{left:319.680000px;}
.xbc_c01329{left:322.275000px;}
.x46_c01329{left:324.000000px;}
.x2d_c01329{left:326.595000px;}
.x24_c01329{left:330.915000px;}
.x71_c01329{left:333.510000px;}
.x2e_c01329{left:335.235000px;}
.x8c_c01329{left:338.685000px;}
.xc3_c01329{left:340.410000px;}
.xeb_c01329{left:342.150000px;}
.x3a_c01329{left:344.730000px;}
.x4_c01329{left:348.195000px;}
.x1a_c01329{left:349.920000px;}
.x89_c01329{left:354.240000px;}
.x84_c01329{left:356.835000px;}
.x47_c01329{left:358.560000px;}
.x6a_c01329{left:361.155000px;}
.x60_c01329{left:364.605000px;}
.x76_c01329{left:368.070000px;}
.x25_c01329{left:371.520000px;}
.xab_c01329{left:374.115000px;}
.x8d_c01329{left:375.840000px;}
.x7e_c01329{left:377.565000px;}
.x3b_c01329{left:379.290000px;}
.x2f_c01329{left:381.885000px;}
.xd8_c01329{left:383.610000px;}
.xb2_c01329{left:385.350000px;}
.x64_c01329{left:387.075000px;}
.xa_c01329{left:392.250000px;}
.x98_c01329{left:393.990000px;}
.xb6_c01329{left:395.715000px;}
.xac_c01329{left:398.310000px;}
.x6b_c01329{left:401.760000px;}
.xe9_c01329{left:403.485000px;}
.xd1_c01329{left:405.210000px;}
.xf1_c01329{left:406.950000px;}
.xc6_c01329{left:408.675000px;}
.xee_c01329{left:410.400000px;}
.xe0_c01329{left:412.125000px;}
.xa3_c01329{left:414.720000px;}
.xb9_c01329{left:417.315000px;}
.x8e_c01329{left:419.040000px;}
.x13_c01329{left:420.765000px;}
.x57_c01329{left:423.360000px;}
.x30_c01329{left:425.085000px;}
.xc1_c01329{left:427.680000px;}
.xea_c01329{left:429.405000px;}
.x61_c01329{left:431.130000px;}
.xdc_c01329{left:433.725000px;}
.x9b_c01329{left:435.450000px;}
.x77_c01329{left:437.190000px;}
.xa4_c01329{left:438.915000px;}
.x6c_c01329{left:441.510000px;}
.x50_c01329{left:444.090000px;}
.x31_c01329{left:446.685000px;}
.xc4_c01329{left:449.280000px;}
.x62_c01329{left:451.005000px;}
.x48_c01329{left:452.730000px;}
.xc7_c01329{left:454.470000px;}
.xad_c01329{left:456.195000px;}
.xdd_c01329{left:458.790000px;}
.x9c_c01329{left:461.370000px;}
.x7f_c01329{left:463.110000px;}
.x58_c01329{left:464.835000px;}
.x51_c01329{left:468.285000px;}
.x101_c01329{left:470.880000px;}
.xec_c01329{left:472.605000px;}
.x8a_c01329{left:474.330000px;}
.x14_c01329{left:476.070000px;}
.x65_c01329{left:477.795000px;}
.xcf_c01329{left:479.520000px;}
.x85_c01329{left:481.245000px;}
.xf2_c01329{left:482.970000px;}
.x32_c01329{left:484.710000px;}
.xf5_c01329{left:488.160000px;}
.xd9_c01329{left:492.480000px;}
.xb_c01329{left:495.930000px;}
.x59_c01329{left:498.525000px;}
.x78_c01329{left:501.120000px;}
.x1b_c01329{left:502.845000px;}
.xa5_c01329{left:505.440000px;}
.xb3_c01329{left:508.035000px;}
.xbd_c01329{left:512.355000px;}
.x49_c01329{left:514.080000px;}
.xa6_c01329{left:515.805000px;}
.xc8_c01329{left:520.125000px;}
.x33_c01329{left:522.720000px;}
.xae_c01329{left:527.040000px;}
.xe1_c01329{left:535.680000px;}
.xc_c01329{left:540.000000px;}
.x15_c01329{left:546.045000px;}
.x1c_c01329{left:548.640000px;}
.x52_c01329{left:551.235000px;}
.x72_c01329{left:553.830000px;}
.xb7_c01329{left:555.555000px;}
.x79_c01329{left:557.280000px;}
.x8f_c01329{left:559.875000px;}
.x16_c01329{left:562.470000px;}
.xda_c01329{left:564.195000px;}
.x26_c01329{left:565.920000px;}
.x34_c01329{left:568.515000px;}
.x1d_c01329{left:570.240000px;}
.x3c_c01329{left:579.750675px;}
.xd_c01329{left:584.070000px;}
.x80_c01329{left:585.795000px;}
.x3d_c01329{left:588.390000px;}
.xa0_c01329{left:590.970000px;}
.xde_c01329{left:597.030000px;}
.x7a_c01329{left:599.610000px;}
.x1e_c01329{left:601.350000px;}
.x53_c01329{left:606.525000px;}
.xcd_c01329{left:609.120000px;}
.xa7_c01329{left:611.715000px;}
.xe_c01329{left:613.440000px;}
.xaf_c01329{left:615.165000px;}
.xf3_c01329{left:616.890000px;}
.xba_c01329{left:619.485000px;}
.x102_c01329{left:621.210000px;}
.xbe_c01329{left:623.805000px;}
.x35_c01329{left:627.270000px;}
.x5a_c01329{left:630.720000px;}
.xf_c01329{left:633.315000px;}
.xe8_c01329{left:636.765000px;}
.xce_c01329{left:638.490000px;}
.xf6_c01329{left:641.955000px;}
.x4a_c01329{left:645.405000px;}
.x5b_c01329{left:647.130000px;}
.xd2_c01329{left:649.725000px;}
.x3e_c01329{left:651.450000px;}
.x86_c01329{left:654.045000px;}
.x1f_c01329{left:656.640000px;}
.x27_c01329{left:660.090000px;}
.x90_c01329{left:663.555000px;}
.xb4_c01329{left:666.150000px;}
.x5_c01329{left:671.325000px;}
.x2_c01329{left:674.790000px;}
.x4b_c01329{left:677.370000px;}
.x7b_c01329{left:679.965000px;}
.xe2_c01329{left:682.560000px;}
.x28_c01329{left:684.285000px;}
.xbb_c01329{left:687.750000px;}
.xc9_c01329{left:689.475000px;}
.xb8_c01329{left:691.200000px;}
.x94_c01329{left:695.520000px;}
.x3_c01329{left:697.245000px;}
.x6d_c01329{left:699.840000px;}
.x9d_c01329{left:702.435000px;}
.x6_c01329{left:704.160000px;}
.x3f_c01329{left:708.480000px;}
.x66_c01329{left:712.800000px;}
.xf4_c01329{left:717.120000px;}
.xf7_c01329{left:719.715000px;}
.xa8_c01329{left:721.440000px;}
.x1_c01329{left:723.165000px;}
.xff_c01329{left:724.890000px;}
.x6e_c01329{left:726.630000px;}
.x73_c01329{left:730.950000px;}
.x87_c01329{left:732.675000px;}
.x67_c01329{left:734.400000px;}
.x7_c01329{left:737.850000px;}
.xb5_c01329{left:740.445000px;}
.x20_c01329{left:743.040000px;}
.xd3_c01329{left:744.765000px;}
.xd0_c01329{left:749.085000px;}
.x5c_c01329{left:751.680000px;}
.x10_c01329{left:753.405000px;}
.xca_c01329{left:755.130000px;}
.x95_c01329{left:758.595000px;}
.x103_c01329{left:760.320000px;}
.x91_c01329{left:762.045000px;}
.x9e_c01329{left:764.640000px;}
.x88_c01329{left:766.365000px;}
.xbf_c01329{left:768.090000px;}
.xb0_c01329{left:769.830000px;}
.x4c_c01329{left:771.555000px;}
.x63_c01329{left:773.280000px;}
.x21_c01329{left:775.005000px;}
.xa9_c01329{left:779.325000px;}
.x17_c01329{left:781.920000px;}
.x36_c01329{left:784.515000px;}
.xdf_c01329{left:787.110000px;}
.xe3_c01329{left:788.835000px;}
.x6f_c01329{left:791.430000px;}
.x54_c01329{left:793.155000px;}
.x104_c01329{left:794.880000px;}
.x7c_c01329{left:796.605000px;}
.xed_c01329{left:800.925000px;}
.x11_c01329{left:802.650000px;}
.xcb_c01329{left:806.115000px;}
.x7d_c01329{left:807.839925px;}
.xd4_c01329{left:809.565000px;}
.x40_c01329{left:811.290000px;}
.x37_c01329{left:813.885000px;}
.x99_c01329{left:815.610000px;}
.x4d_c01329{left:818.205000px;}
.x74_c01329{left:819.930000px;}
.x105_c01329{left:823.395000px;}
.xf8_c01329{left:825.120000px;}
.xc0_c01329{left:827.715000px;}
.x41_c01329{left:829.440000px;}
.x29_c01329{left:834.630000px;}
.x68_c01329{left:838.950000px;}
.xc5_c01329{left:840.675000px;}
.xa1_c01329{left:842.400000px;}
.x5d_c01329{left:844.125000px;}
.x81_c01329{left:846.720000px;}
.x96_c01329{left:851.910000px;}
.xfa_c01329{left:853.635000px;}
.x8b_c01329{left:855.360000px;}
.x42_c01329{left:858.810000px;}
.x43_c01329{left:866.595000px;}
.x44_c01329{left:872.640000px;}
.xf9_c01329{left:874.365000px;}
.x38_c01329{left:876.090000px;}
.x97_c01329{left:878.685000px;}
.x92_c01329{left:881.280000px;}
.x70_c01329{left:885.600000px;}
.xe4_c01329{left:889.920000px;}
.xfb_c01329{left:892.515000px;}
.xfe_c01329{left:897.690000px;}
.x55_c01329{left:902.010000px;}
.x4e_c01329{left:907.200000px;}
.x56_c01329{left:914.115000px;}
.x10c_c01329{left:937.438875px;}
.x10e_c01329{left:943.485000px;}
.x10d_c01329{left:952.125000px;}
@media print{
.v1_c01329{vertical-align:-6.133333pt;}
.v0_c01329{vertical-align:0.000000pt;}
.v2_c01329{vertical-align:3.040000pt;}
.ls3_c01329{letter-spacing:0.000000pt;}
.ls2_c01329{letter-spacing:42.846880pt;}
.ls0_c01329{letter-spacing:51.634400pt;}
.ls1_c01329{letter-spacing:57.005067pt;}
.ws0_c01329{word-spacing:0.000000pt;}
.fse_c01329{font-size:3.072000pt;}
.fs4_c01329{font-size:5.333333pt;}
.fs3_c01329{font-size:6.133333pt;}
.fsc_c01329{font-size:9.226667pt;}
.fs18_c01329{font-size:12.266667pt;}
.fsb_c01329{font-size:15.360000pt;}
.fs6_c01329{font-size:18.453333pt;}
.fsd_c01329{font-size:21.493333pt;}
.fs1f_c01329{font-size:24.586667pt;}
.fs15_c01329{font-size:27.626667pt;}
.fs16_c01329{font-size:30.720000pt;}
.fs1_c01329{font-size:33.813333pt;}
.fs12_c01329{font-size:36.853333pt;}
.fs19_c01329{font-size:39.946667pt;}
.fs11_c01329{font-size:42.986667pt;}
.fs14_c01329{font-size:46.080000pt;}
.fs0_c01329{font-size:49.173333pt;}
.fs10_c01329{font-size:52.213333pt;}
.fs9_c01329{font-size:55.306667pt;}
.fs17_c01329{font-size:58.346667pt;}
.fs8_c01329{font-size:61.440000pt;}
.fs7_c01329{font-size:64.533333pt;}
.fs13_c01329{font-size:67.573333pt;}
.fsa_c01329{font-size:70.666667pt;}
.fsf_c01329{font-size:73.706667pt;}
.fs5_c01329{font-size:76.800000pt;}
.fs1c_c01329{font-size:79.893333pt;}
.fs1a_c01329{font-size:82.933333pt;}
.fs1b_c01329{font-size:86.026667pt;}
.fs1e_c01329{font-size:89.066667pt;}
.fs1d_c01329{font-size:92.160000pt;}
.fs2_c01329{font-size:172.053333pt;}
.y0_c01329{bottom:0.000000pt;}
.y1c0_c01329{bottom:110.586667pt;}
.y1c1_c01329{bottom:112.133333pt;}
.y1bf_c01329{bottom:127.493333pt;}
.y1bd_c01329{bottom:133.626667pt;}
.y1be_c01329{bottom:134.400000pt;}
.y1bb_c01329{bottom:139.013333pt;}
.y1bc_c01329{bottom:140.546667pt;}
.y1b4_c01329{bottom:147.453333pt;}
.y1b3_c01329{bottom:148.986667pt;}
.y1b2_c01329{bottom:151.293333pt;}
.y1b5_c01329{bottom:155.906667pt;}
.y1b0_c01329{bottom:162.053333pt;}
.y1b1_c01329{bottom:164.346667pt;}
.y1ab_c01329{bottom:165.120000pt;}
.y1ad_c01329{bottom:165.893333pt;}
.y1aa_c01329{bottom:166.653333pt;}
.y1af_c01329{bottom:169.733333pt;}
.y1ae_c01329{bottom:170.493333pt;}
.y1ac_c01329{bottom:172.800000pt;}
.y1a9_c01329{bottom:182.786667pt;}
.y1a5_c01329{bottom:183.546667pt;}
.y1a6_c01329{bottom:185.853333pt;}
.y1a7_c01329{bottom:186.626667pt;}
.y1a8_c01329{bottom:188.160000pt;}
.y1a0_c01329{bottom:201.986667pt;}
.y1a3_c01329{bottom:202.746667pt;}
.y1a4_c01329{bottom:203.520000pt;}
.y1a2_c01329{bottom:205.053333pt;}
.y19e_c01329{bottom:205.826667pt;}
.y19f_c01329{bottom:207.360000pt;}
.y1a1_c01329{bottom:208.133333pt;}
.y19b_c01329{bottom:218.106667pt;}
.y197_c01329{bottom:219.653333pt;}
.y196_c01329{bottom:220.413333pt;}
.y198_c01329{bottom:221.186667pt;}
.y199_c01329{bottom:222.720000pt;}
.y19a_c01329{bottom:224.253333pt;}
.y19d_c01329{bottom:225.026667pt;}
.y19c_c01329{bottom:225.786667pt;}
.y194_c01329{bottom:238.853333pt;}
.y192_c01329{bottom:239.613333pt;}
.y191_c01329{bottom:240.386667pt;}
.y195_c01329{bottom:241.920000pt;}
.y193_c01329{bottom:242.693333pt;}
.y190_c01329{bottom:243.453333pt;}
.y18f_c01329{bottom:244.226667pt;}
.y18c_c01329{bottom:255.746667pt;}
.y18b_c01329{bottom:256.506667pt;}
.y189_c01329{bottom:257.280000pt;}
.y18a_c01329{bottom:258.053333pt;}
.y18e_c01329{bottom:258.813333pt;}
.y188_c01329{bottom:260.346667pt;}
.y18d_c01329{bottom:261.120000pt;}
.y187_c01329{bottom:270.333333pt;}
.y17e_c01329{bottom:273.413333pt;}
.y182_c01329{bottom:274.173333pt;}
.y186_c01329{bottom:274.946667pt;}
.y180_c01329{bottom:275.706667pt;}
.y183_c01329{bottom:278.013333pt;}
.y181_c01329{bottom:279.546667pt;}
.y185_c01329{bottom:280.320000pt;}
.y17f_c01329{bottom:281.093333pt;}
.y184_c01329{bottom:289.533333pt;}
.y17d_c01329{bottom:291.840000pt;}
.y176_c01329{bottom:293.373333pt;}
.y179_c01329{bottom:294.146667pt;}
.y177_c01329{bottom:295.680000pt;}
.y17b_c01329{bottom:296.453333pt;}
.y17c_c01329{bottom:297.213333pt;}
.y17a_c01329{bottom:297.986667pt;}
.y178_c01329{bottom:300.293333pt;}
.y175_c01329{bottom:304.893333pt;}
.y171_c01329{bottom:309.506667pt;}
.y173_c01329{bottom:310.266667pt;}
.y16d_c01329{bottom:311.813333pt;}
.y16f_c01329{bottom:314.106667pt;}
.y172_c01329{bottom:315.653333pt;}
.y16e_c01329{bottom:317.186667pt;}
.y170_c01329{bottom:318.720000pt;}
.y174_c01329{bottom:321.786667pt;}
.y16c_c01329{bottom:326.400000pt;}
.y167_c01329{bottom:327.173333pt;}
.y165_c01329{bottom:327.933333pt;}
.y164_c01329{bottom:328.706667pt;}
.y16a_c01329{bottom:330.240000pt;}
.y169_c01329{bottom:331.773333pt;}
.y16b_c01329{bottom:333.306667pt;}
.y168_c01329{bottom:334.080000pt;}
.y166_c01329{bottom:335.613333pt;}
.y161_c01329{bottom:346.373333pt;}
.y162_c01329{bottom:347.133333pt;}
.y15f_c01329{bottom:348.666667pt;}
.y163_c01329{bottom:350.213333pt;}
.y15e_c01329{bottom:350.973333pt;}
.y160_c01329{bottom:351.746667pt;}
.y15c_c01329{bottom:352.506667pt;}
.y1ba_c01329{bottom:357.120000pt;}
.y15d_c01329{bottom:357.893333pt;}
.y1b9_c01329{bottom:362.493333pt;}
.y15b_c01329{bottom:365.573333pt;}
.y15a_c01329{bottom:366.333333pt;}
.y159_c01329{bottom:367.106667pt;}
.y157_c01329{bottom:367.866667pt;}
.y158_c01329{bottom:370.946667pt;}
.y156_c01329{bottom:382.466667pt;}
.y151_c01329{bottom:383.226667pt;}
.y154_c01329{bottom:384.000000pt;}
.y152_c01329{bottom:384.773333pt;}
.y155_c01329{bottom:386.306667pt;}
.y153_c01329{bottom:387.066667pt;}
.y14b_c01329{bottom:399.360000pt;}
.y14d_c01329{bottom:400.893333pt;}
.y14f_c01329{bottom:401.666667pt;}
.y14e_c01329{bottom:402.426667pt;}
.y149_c01329{bottom:403.200000pt;}
.y14a_c01329{bottom:403.973333pt;}
.y150_c01329{bottom:404.733333pt;}
.y148_c01329{bottom:406.266667pt;}
.y14c_c01329{bottom:407.040000pt;}
.y147_c01329{bottom:413.186667pt;}
.y146_c01329{bottom:413.946667pt;}
.y142_c01329{bottom:414.720000pt;}
.y144_c01329{bottom:416.253333pt;}
.y141_c01329{bottom:419.333333pt;}
.y143_c01329{bottom:420.866667pt;}
.y13f_c01329{bottom:423.933333pt;}
.y140_c01329{bottom:424.706667pt;}
.y145_c01329{bottom:427.013333pt;}
.y13e_c01329{bottom:433.146667pt;}
.y13c_c01329{bottom:435.453333pt;}
.y13d_c01329{bottom:436.986667pt;}
.y139_c01329{bottom:437.760000pt;}
.y13b_c01329{bottom:441.600000pt;}
.y13a_c01329{bottom:442.373333pt;}
.y137_c01329{bottom:454.653333pt;}
.y134_c01329{bottom:455.426667pt;}
.y136_c01329{bottom:456.186667pt;}
.y135_c01329{bottom:456.960000pt;}
.y138_c01329{bottom:458.493333pt;}
.y133_c01329{bottom:460.800000pt;}
.y132_c01329{bottom:471.546667pt;}
.y12f_c01329{bottom:473.093333pt;}
.y130_c01329{bottom:474.626667pt;}
.y131_c01329{bottom:476.160000pt;}
.y12d_c01329{bottom:476.933333pt;}
.y12e_c01329{bottom:477.693333pt;}
.y12a_c01329{bottom:489.986667pt;}
.y125_c01329{bottom:491.520000pt;}
.y126_c01329{bottom:492.293333pt;}
.y129_c01329{bottom:493.826667pt;}
.y127_c01329{bottom:494.586667pt;}
.y124_c01329{bottom:495.360000pt;}
.y123_c01329{bottom:496.133333pt;}
.y12c_c01329{bottom:504.573333pt;}
.y12b_c01329{bottom:506.106667pt;}
.y121_c01329{bottom:507.653333pt;}
.y128_c01329{bottom:508.413333pt;}
.y11e_c01329{bottom:509.186667pt;}
.y122_c01329{bottom:510.720000pt;}
.y11f_c01329{bottom:513.026667pt;}
.y120_c01329{bottom:513.786667pt;}
.y11d_c01329{bottom:526.080000pt;}
.y119_c01329{bottom:526.853333pt;}
.y11b_c01329{bottom:527.613333pt;}
.y118_c01329{bottom:530.693333pt;}
.y11c_c01329{bottom:531.453333pt;}
.y11a_c01329{bottom:532.226667pt;}
.y117_c01329{bottom:544.506667pt;}
.y110_c01329{bottom:545.280000pt;}
.y10f_c01329{bottom:546.053333pt;}
.y116_c01329{bottom:547.586667pt;}
.y113_c01329{bottom:549.120000pt;}
.y115_c01329{bottom:549.893333pt;}
.y111_c01329{bottom:550.653333pt;}
.y112_c01329{bottom:552.186667pt;}
.y114_c01329{bottom:562.173333pt;}
.y10d_c01329{bottom:562.946667pt;}
.y10c_c01329{bottom:564.480000pt;}
.y10e_c01329{bottom:565.253333pt;}
.y10b_c01329{bottom:566.786667pt;}
.y109_c01329{bottom:567.546667pt;}
.y10a_c01329{bottom:568.320000pt;}
.y104_c01329{bottom:580.613333pt;}
.y105_c01329{bottom:581.373333pt;}
.y106_c01329{bottom:582.906667pt;}
.y107_c01329{bottom:583.680000pt;}
.y108_c01329{bottom:584.453333pt;}
.y101_c01329{bottom:585.213333pt;}
.y102_c01329{bottom:585.986667pt;}
.y103_c01329{bottom:586.746667pt;}
.y100_c01329{bottom:599.040000pt;}
.yfd_c01329{bottom:599.813333pt;}
.yfb_c01329{bottom:600.573333pt;}
.yfc_c01329{bottom:601.346667pt;}
.yf9_c01329{bottom:602.106667pt;}
.yfe_c01329{bottom:602.880000pt;}
.yff_c01329{bottom:603.653333pt;}
.yfa_c01329{bottom:609.026667pt;}
.yf5_c01329{bottom:615.933333pt;}
.yf4_c01329{bottom:616.706667pt;}
.yf3_c01329{bottom:617.466667pt;}
.yf7_c01329{bottom:618.240000pt;}
.yf6_c01329{bottom:620.546667pt;}
.yf8_c01329{bottom:621.306667pt;}
.yf2_c01329{bottom:628.986667pt;}
.yf0_c01329{bottom:633.600000pt;}
.yf1_c01329{bottom:634.373333pt;}
.yeb_c01329{bottom:635.133333pt;}
.yea_c01329{bottom:635.906667pt;}
.yed_c01329{bottom:636.666667pt;}
.ye9_c01329{bottom:637.440000pt;}
.yef_c01329{bottom:638.973333pt;}
.yee_c01329{bottom:639.746667pt;}
.yec_c01329{bottom:652.026667pt;}
.ye6_c01329{bottom:652.800000pt;}
.ye5_c01329{bottom:653.573333pt;}
.ye8_c01329{bottom:656.640000pt;}
.ye7_c01329{bottom:657.413333pt;}
.ydf_c01329{bottom:671.226667pt;}
.ye3_c01329{bottom:672.773333pt;}
.ye0_c01329{bottom:673.533333pt;}
.ye4_c01329{bottom:675.066667pt;}
.ye1_c01329{bottom:676.613333pt;}
.ye2_c01329{bottom:678.146667pt;}
.y1b8_c01329{bottom:681.213333pt;}
.ydd_c01329{bottom:688.133333pt;}
.yd9_c01329{bottom:688.893333pt;}
.ydb_c01329{bottom:689.666667pt;}
.yde_c01329{bottom:691.200000pt;}
.yda_c01329{bottom:692.733333pt;}
.ydc_c01329{bottom:693.506667pt;}
.yd5_c01329{bottom:705.786667pt;}
.yd6_c01329{bottom:706.560000pt;}
.yd7_c01329{bottom:708.093333pt;}
.yd8_c01329{bottom:708.866667pt;}
.yd2_c01329{bottom:710.400000pt;}
.yd3_c01329{bottom:711.173333pt;}
.yd4_c01329{bottom:711.933333pt;}
.yd1_c01329{bottom:716.546667pt;}
.ycf_c01329{bottom:718.853333pt;}
.ycd_c01329{bottom:719.613333pt;}
.ycb_c01329{bottom:721.146667pt;}
.yce_c01329{bottom:721.920000pt;}
.ycc_c01329{bottom:722.693333pt;}
.yd0_c01329{bottom:724.226667pt;}
.yca_c01329{bottom:724.986667pt;}
.yc7_c01329{bottom:741.893333pt;}
.yc4_c01329{bottom:742.653333pt;}
.yc1_c01329{bottom:743.426667pt;}
.yc9_c01329{bottom:744.186667pt;}
.yc5_c01329{bottom:744.960000pt;}
.yc0_c01329{bottom:745.733333pt;}
.yc6_c01329{bottom:746.493333pt;}
.yc3_c01329{bottom:747.266667pt;}
.yc2_c01329{bottom:748.026667pt;}
.yc8_c01329{bottom:755.706667pt;}
.yb9_c01329{bottom:761.093333pt;}
.ybe_c01329{bottom:761.853333pt;}
.ybd_c01329{bottom:762.626667pt;}
.ybb_c01329{bottom:763.386667pt;}
.ybf_c01329{bottom:764.933333pt;}
.yba_c01329{bottom:765.693333pt;}
.ybc_c01329{bottom:773.373333pt;}
.yb8_c01329{bottom:777.213333pt;}
.yb3_c01329{bottom:779.520000pt;}
.yb7_c01329{bottom:781.826667pt;}
.yb5_c01329{bottom:782.586667pt;}
.yb2_c01329{bottom:783.360000pt;}
.yb4_c01329{bottom:784.133333pt;}
.yb6_c01329{bottom:792.573333pt;}
.yb0_c01329{bottom:797.186667pt;}
.yb1_c01329{bottom:798.720000pt;}
.yaf_c01329{bottom:800.253333pt;}
.yac_c01329{bottom:801.026667pt;}
.yae_c01329{bottom:801.786667pt;}
.yad_c01329{bottom:802.560000pt;}
.yaa_c01329{bottom:813.306667pt;}
.yab_c01329{bottom:814.080000pt;}
.ya8_c01329{bottom:814.853333pt;}
.ya7_c01329{bottom:815.613333pt;}
.ya9_c01329{bottom:817.920000pt;}
.ya5_c01329{bottom:818.693333pt;}
.ya4_c01329{bottom:819.453333pt;}
.ya6_c01329{bottom:820.226667pt;}
.ya3_c01329{bottom:830.973333pt;}
.ya2_c01329{bottom:831.746667pt;}
.y9b_c01329{bottom:832.506667pt;}
.ya1_c01329{bottom:833.280000pt;}
.y9a_c01329{bottom:834.053333pt;}
.y9f_c01329{bottom:834.813333pt;}
.y9e_c01329{bottom:836.346667pt;}
.y9c_c01329{bottom:837.120000pt;}
.y9d_c01329{bottom:837.893333pt;}
.ya0_c01329{bottom:838.653333pt;}
.y99_c01329{bottom:852.480000pt;}
.y94_c01329{bottom:853.253333pt;}
.y95_c01329{bottom:854.013333pt;}
.y96_c01329{bottom:855.546667pt;}
.y98_c01329{bottom:856.320000pt;}
.y97_c01329{bottom:857.093333pt;}
.y93_c01329{bottom:860.933333pt;}
.y90_c01329{bottom:867.840000pt;}
.y8e_c01329{bottom:869.373333pt;}
.y8f_c01329{bottom:872.453333pt;}
.y91_c01329{bottom:873.213333pt;}
.y92_c01329{bottom:873.986667pt;}
.y8a_c01329{bottom:883.973333pt;}
.y88_c01329{bottom:886.266667pt;}
.y89_c01329{bottom:887.813333pt;}
.y8c_c01329{bottom:890.106667pt;}
.y8d_c01329{bottom:890.880000pt;}
.y8b_c01329{bottom:891.653333pt;}
.y84_c01329{bottom:903.933333pt;}
.y83_c01329{bottom:904.706667pt;}
.y87_c01329{bottom:907.013333pt;}
.y86_c01329{bottom:907.773333pt;}
.y85_c01329{bottom:909.306667pt;}
.y82_c01329{bottom:920.066667pt;}
.y81_c01329{bottom:920.826667pt;}
.y7b_c01329{bottom:922.373333pt;}
.y7f_c01329{bottom:923.133333pt;}
.y80_c01329{bottom:923.906667pt;}
.y7d_c01329{bottom:924.666667pt;}
.y7e_c01329{bottom:925.440000pt;}
.y1b7_c01329{bottom:926.213333pt;}
.y7c_c01329{bottom:926.973333pt;}
.y7a_c01329{bottom:927.746667pt;}
.y78_c01329{bottom:940.800000pt;}
.y74_c01329{bottom:942.333333pt;}
.y75_c01329{bottom:945.413333pt;}
.y79_c01329{bottom:946.173333pt;}
.y76_c01329{bottom:950.013333pt;}
.y77_c01329{bottom:957.693333pt;}
.y70_c01329{bottom:958.466667pt;}
.y6f_c01329{bottom:959.226667pt;}
.y72_c01329{bottom:962.306667pt;}
.y6e_c01329{bottom:963.066667pt;}
.y6d_c01329{bottom:963.840000pt;}
.y73_c01329{bottom:964.613333pt;}
.y71_c01329{bottom:965.373333pt;}
.y6b_c01329{bottom:976.133333pt;}
.y67_c01329{bottom:977.666667pt;}
.y6c_c01329{bottom:978.426667pt;}
.y68_c01329{bottom:981.506667pt;}
.y69_c01329{bottom:982.266667pt;}
.y6a_c01329{bottom:991.493333pt;}
.y64_c01329{bottom:995.333333pt;}
.y66_c01329{bottom:996.093333pt;}
.y61_c01329{bottom:996.866667pt;}
.y60_c01329{bottom:998.400000pt;}
.y5f_c01329{bottom:999.173333pt;}
.y5e_c01329{bottom:999.933333pt;}
.y63_c01329{bottom:1003.013333pt;}
.y65_c01329{bottom:1005.306667pt;}
.y62_c01329{bottom:1009.146667pt;}
.y5b_c01329{bottom:1012.226667pt;}
.y57_c01329{bottom:1012.986667pt;}
.y5a_c01329{bottom:1013.760000pt;}
.y58_c01329{bottom:1016.066667pt;}
.y59_c01329{bottom:1017.600000pt;}
.y5c_c01329{bottom:1018.373333pt;}
.y5d_c01329{bottom:1026.813333pt;}
.y55_c01329{bottom:1030.653333pt;}
.y4f_c01329{bottom:1031.426667pt;}
.y53_c01329{bottom:1032.186667pt;}
.y52_c01329{bottom:1034.493333pt;}
.y54_c01329{bottom:1035.266667pt;}
.y50_c01329{bottom:1036.026667pt;}
.y51_c01329{bottom:1036.800000pt;}
.y56_c01329{bottom:1042.946667pt;}
.y4e_c01329{bottom:1051.386667pt;}
.y4d_c01329{bottom:1052.160000pt;}
.y4b_c01329{bottom:1053.693333pt;}
.y4c_c01329{bottom:1054.466667pt;}
.y43_c01329{bottom:1066.746667pt;}
.y48_c01329{bottom:1067.520000pt;}
.y46_c01329{bottom:1068.293333pt;}
.y44_c01329{bottom:1069.053333pt;}
.y47_c01329{bottom:1071.360000pt;}
.y4a_c01329{bottom:1072.133333pt;}
.y45_c01329{bottom:1072.893333pt;}
.y49_c01329{bottom:1073.666667pt;}
.y3f_c01329{bottom:1085.186667pt;}
.y42_c01329{bottom:1085.946667pt;}
.y3e_c01329{bottom:1086.720000pt;}
.y3c_c01329{bottom:1087.493333pt;}
.y41_c01329{bottom:1089.026667pt;}
.y3d_c01329{bottom:1090.560000pt;}
.y40_c01329{bottom:1091.333333pt;}
.y34_c01329{bottom:1103.613333pt;}
.y3b_c01329{bottom:1104.386667pt;}
.y3a_c01329{bottom:1105.146667pt;}
.y39_c01329{bottom:1106.693333pt;}
.y38_c01329{bottom:1108.226667pt;}
.y36_c01329{bottom:1108.986667pt;}
.y35_c01329{bottom:1109.760000pt;}
.y1b6_c01329{bottom:1112.066667pt;}
.y37_c01329{bottom:1120.506667pt;}
.y2d_c01329{bottom:1122.053333pt;}
.y31_c01329{bottom:1122.813333pt;}
.y2f_c01329{bottom:1123.586667pt;}
.y30_c01329{bottom:1125.120000pt;}
.y32_c01329{bottom:1125.893333pt;}
.y2c_c01329{bottom:1126.653333pt;}
.y2e_c01329{bottom:1127.426667pt;}
.y33_c01329{bottom:1137.413333pt;}
.y25_c01329{bottom:1138.946667pt;}
.y23_c01329{bottom:1139.706667pt;}
.y2b_c01329{bottom:1141.253333pt;}
.y29_c01329{bottom:1142.786667pt;}
.y22_c01329{bottom:1143.546667pt;}
.y28_c01329{bottom:1144.320000pt;}
.y24_c01329{bottom:1145.093333pt;}
.y27_c01329{bottom:1145.853333pt;}
.y2a_c01329{bottom:1148.160000pt;}
.y26_c01329{bottom:1153.533333pt;}
.y1f_c01329{bottom:1155.840000pt;}
.y1c_c01329{bottom:1158.906667pt;}
.y21_c01329{bottom:1159.680000pt;}
.y20_c01329{bottom:1161.213333pt;}
.y1b_c01329{bottom:1161.986667pt;}
.y1a_c01329{bottom:1162.746667pt;}
.y1d_c01329{bottom:1163.520000pt;}
.y1e_c01329{bottom:1164.293333pt;}
.y19_c01329{bottom:1173.506667pt;}
.y17_c01329{bottom:1175.813333pt;}
.y14_c01329{bottom:1177.346667pt;}
.y18_c01329{bottom:1179.653333pt;}
.y16_c01329{bottom:1180.413333pt;}
.y15_c01329{bottom:1181.186667pt;}
.yf_c01329{bottom:1194.240000pt;}
.y13_c01329{bottom:1198.080000pt;}
.y10_c01329{bottom:1198.853333pt;}
.y11_c01329{bottom:1200.386667pt;}
.y12_c01329{bottom:1201.920000pt;}
.yc_c01329{bottom:1216.506667pt;}
.yd_c01329{bottom:1217.280000pt;}
.yb_c01329{bottom:1218.813333pt;}
.ya_c01329{bottom:1220.346667pt;}
.ye_c01329{bottom:1221.893333pt;}
.y8_c01329{bottom:1223.426667pt;}
.y7_c01329{bottom:1224.186667pt;}
.y9_c01329{bottom:1224.960000pt;}
.y3_c01329{bottom:1241.853333pt;}
.y5_c01329{bottom:1243.386667pt;}
.y6_c01329{bottom:1244.933333pt;}
.y4_c01329{bottom:1245.693333pt;}
.y2_c01329{bottom:1271.813333pt;}
.y1_c01329{bottom:1287.173333pt;}
.h10_c01329{height:2.764500pt;}
.h6_c01329{height:4.799479pt;}
.h5_c01329{height:5.519401pt;}
.h21_c01329{height:7.689167pt;}
.he_c01329{height:8.303099pt;}
.h1a_c01329{height:11.038802pt;}
.hd_c01329{height:13.822500pt;}
.h8_c01329{height:16.606198pt;}
.hf_c01329{height:19.341901pt;}
.h22_c01329{height:22.125599pt;}
.h17_c01329{height:24.861302pt;}
.h18_c01329{height:27.645000pt;}
.h3_c01329{height:30.428698pt;}
.h14_c01329{height:33.164401pt;}
.h1b_c01329{height:35.948099pt;}
.h13_c01329{height:38.683802pt;}
.h16_c01329{height:41.467500pt;}
.h2_c01329{height:44.251198pt;}
.h12_c01329{height:46.986901pt;}
.hb_c01329{height:49.770599pt;}
.h19_c01329{height:52.506302pt;}
.ha_c01329{height:55.290000pt;}
.h9_c01329{height:58.073698pt;}
.h15_c01329{height:60.809401pt;}
.hc_c01329{height:63.593099pt;}
.h11_c01329{height:66.328802pt;}
.h7_c01329{height:69.112500pt;}
.h1e_c01329{height:71.896198pt;}
.h1c_c01329{height:74.631901pt;}
.h1d_c01329{height:77.415599pt;}
.h20_c01329{height:80.151302pt;}
.h1f_c01329{height:82.935000pt;}
.h4_c01329{height:154.831198pt;}
.h0_c01329{height:1341.693333pt;}
.h1_c01329{height:1342.000000pt;}
.w0_c01329{width:959.226667pt;}
.w1_c01329{width:959.333333pt;}
.x0_c01329{left:0.000000pt;}
.x106_c01329{left:56.826624pt;}
.x109_c01329{left:105.986709pt;}
.x10a_c01329{left:113.666667pt;}
.x10b_c01329{left:126.720000pt;}
.x108_c01329{left:128.253333pt;}
.x107_c01329{left:130.560000pt;}
.x93_c01329{left:174.333333pt;}
.x2a_c01329{left:196.613333pt;}
.xfc_c01329{left:200.453333pt;}
.xd5_c01329{left:201.986667pt;}
.x9f_c01329{left:205.053333pt;}
.xa2_c01329{left:206.586667pt;}
.x22_c01329{left:208.133333pt;}
.xb1_c01329{left:209.666667pt;}
.x18_c01329{left:211.200000pt;}
.x5e_c01329{left:213.506667pt;}
.x2b_c01329{left:215.040000pt;}
.xef_c01329{left:216.573333pt;}
.x8_c01329{left:227.333333pt;}
.x75_c01329{left:231.173333pt;}
.xfd_c01329{left:232.706667pt;}
.x45_c01329{left:234.240000pt;}
.x82_c01329{left:238.080000pt;}
.xdb_c01329{left:240.386667pt;}
.xe7_c01329{left:243.453333pt;}
.x23_c01329{left:244.986667pt;}
.xaa_c01329{left:248.826667pt;}
.x9a_c01329{left:251.133333pt;}
.x5f_c01329{left:253.440000pt;}
.x2c_c01329{left:257.280000pt;}
.xcc_c01329{left:258.813333pt;}
.x100_c01329{left:261.893333pt;}
.xe5_c01329{left:263.426667pt;}
.xd6_c01329{left:264.960000pt;}
.x39_c01329{left:266.493333pt;}
.x4f_c01329{left:268.800000pt;}
.x9_c01329{left:271.106667pt;}
.x12_c01329{left:272.640000pt;}
.xe6_c01329{left:274.173333pt;}
.xd7_c01329{left:275.706667pt;}
.xf0_c01329{left:277.253333pt;}
.x19_c01329{left:279.546667pt;}
.x83_c01329{left:281.093333pt;}
.xc2_c01329{left:282.626667pt;}
.x69_c01329{left:284.160000pt;}
.xbc_c01329{left:286.466667pt;}
.x46_c01329{left:288.000000pt;}
.x2d_c01329{left:290.306667pt;}
.x24_c01329{left:294.146667pt;}
.x71_c01329{left:296.453333pt;}
.x2e_c01329{left:297.986667pt;}
.x8c_c01329{left:301.053333pt;}
.xc3_c01329{left:302.586667pt;}
.xeb_c01329{left:304.133333pt;}
.x3a_c01329{left:306.426667pt;}
.x4_c01329{left:309.506667pt;}
.x1a_c01329{left:311.040000pt;}
.x89_c01329{left:314.880000pt;}
.x84_c01329{left:317.186667pt;}
.x47_c01329{left:318.720000pt;}
.x6a_c01329{left:321.026667pt;}
.x60_c01329{left:324.093333pt;}
.x76_c01329{left:327.173333pt;}
.x25_c01329{left:330.240000pt;}
.xab_c01329{left:332.546667pt;}
.x8d_c01329{left:334.080000pt;}
.x7e_c01329{left:335.613333pt;}
.x3b_c01329{left:337.146667pt;}
.x2f_c01329{left:339.453333pt;}
.xd8_c01329{left:340.986667pt;}
.xb2_c01329{left:342.533333pt;}
.x64_c01329{left:344.066667pt;}
.xa_c01329{left:348.666667pt;}
.x98_c01329{left:350.213333pt;}
.xb6_c01329{left:351.746667pt;}
.xac_c01329{left:354.053333pt;}
.x6b_c01329{left:357.120000pt;}
.xe9_c01329{left:358.653333pt;}
.xd1_c01329{left:360.186667pt;}
.xf1_c01329{left:361.733333pt;}
.xc6_c01329{left:363.266667pt;}
.xee_c01329{left:364.800000pt;}
.xe0_c01329{left:366.333333pt;}
.xa3_c01329{left:368.640000pt;}
.xb9_c01329{left:370.946667pt;}
.x8e_c01329{left:372.480000pt;}
.x13_c01329{left:374.013333pt;}
.x57_c01329{left:376.320000pt;}
.x30_c01329{left:377.853333pt;}
.xc1_c01329{left:380.160000pt;}
.xea_c01329{left:381.693333pt;}
.x61_c01329{left:383.226667pt;}
.xdc_c01329{left:385.533333pt;}
.x9b_c01329{left:387.066667pt;}
.x77_c01329{left:388.613333pt;}
.xa4_c01329{left:390.146667pt;}
.x6c_c01329{left:392.453333pt;}
.x50_c01329{left:394.746667pt;}
.x31_c01329{left:397.053333pt;}
.xc4_c01329{left:399.360000pt;}
.x62_c01329{left:400.893333pt;}
.x48_c01329{left:402.426667pt;}
.xc7_c01329{left:403.973333pt;}
.xad_c01329{left:405.506667pt;}
.xdd_c01329{left:407.813333pt;}
.x9c_c01329{left:410.106667pt;}
.x7f_c01329{left:411.653333pt;}
.x58_c01329{left:413.186667pt;}
.x51_c01329{left:416.253333pt;}
.x101_c01329{left:418.560000pt;}
.xec_c01329{left:420.093333pt;}
.x8a_c01329{left:421.626667pt;}
.x14_c01329{left:423.173333pt;}
.x65_c01329{left:424.706667pt;}
.xcf_c01329{left:426.240000pt;}
.x85_c01329{left:427.773333pt;}
.xf2_c01329{left:429.306667pt;}
.x32_c01329{left:430.853333pt;}
.xf5_c01329{left:433.920000pt;}
.xd9_c01329{left:437.760000pt;}
.xb_c01329{left:440.826667pt;}
.x59_c01329{left:443.133333pt;}
.x78_c01329{left:445.440000pt;}
.x1b_c01329{left:446.973333pt;}
.xa5_c01329{left:449.280000pt;}
.xb3_c01329{left:451.586667pt;}
.xbd_c01329{left:455.426667pt;}
.x49_c01329{left:456.960000pt;}
.xa6_c01329{left:458.493333pt;}
.xc8_c01329{left:462.333333pt;}
.x33_c01329{left:464.640000pt;}
.xae_c01329{left:468.480000pt;}
.xe1_c01329{left:476.160000pt;}
.xc_c01329{left:480.000000pt;}
.x15_c01329{left:485.373333pt;}
.x1c_c01329{left:487.680000pt;}
.x52_c01329{left:489.986667pt;}
.x72_c01329{left:492.293333pt;}
.xb7_c01329{left:493.826667pt;}
.x79_c01329{left:495.360000pt;}
.x8f_c01329{left:497.666667pt;}
.x16_c01329{left:499.973333pt;}
.xda_c01329{left:501.506667pt;}
.x26_c01329{left:503.040000pt;}
.x34_c01329{left:505.346667pt;}
.x1d_c01329{left:506.880000pt;}
.x3c_c01329{left:515.333933pt;}
.xd_c01329{left:519.173333pt;}
.x80_c01329{left:520.706667pt;}
.x3d_c01329{left:523.013333pt;}
.xa0_c01329{left:525.306667pt;}
.xde_c01329{left:530.693333pt;}
.x7a_c01329{left:532.986667pt;}
.x1e_c01329{left:534.533333pt;}
.x53_c01329{left:539.133333pt;}
.xcd_c01329{left:541.440000pt;}
.xa7_c01329{left:543.746667pt;}
.xe_c01329{left:545.280000pt;}
.xaf_c01329{left:546.813333pt;}
.xf3_c01329{left:548.346667pt;}
.xba_c01329{left:550.653333pt;}
.x102_c01329{left:552.186667pt;}
.xbe_c01329{left:554.493333pt;}
.x35_c01329{left:557.573333pt;}
.x5a_c01329{left:560.640000pt;}
.xf_c01329{left:562.946667pt;}
.xe8_c01329{left:566.013333pt;}
.xce_c01329{left:567.546667pt;}
.xf6_c01329{left:570.626667pt;}
.x4a_c01329{left:573.693333pt;}
.x5b_c01329{left:575.226667pt;}
.xd2_c01329{left:577.533333pt;}
.x3e_c01329{left:579.066667pt;}
.x86_c01329{left:581.373333pt;}
.x1f_c01329{left:583.680000pt;}
.x27_c01329{left:586.746667pt;}
.x90_c01329{left:589.826667pt;}
.xb4_c01329{left:592.133333pt;}
.x5_c01329{left:596.733333pt;}
.x2_c01329{left:599.813333pt;}
.x4b_c01329{left:602.106667pt;}
.x7b_c01329{left:604.413333pt;}
.xe2_c01329{left:606.720000pt;}
.x28_c01329{left:608.253333pt;}
.xbb_c01329{left:611.333333pt;}
.xc9_c01329{left:612.866667pt;}
.xb8_c01329{left:614.400000pt;}
.x94_c01329{left:618.240000pt;}
.x3_c01329{left:619.773333pt;}
.x6d_c01329{left:622.080000pt;}
.x9d_c01329{left:624.386667pt;}
.x6_c01329{left:625.920000pt;}
.x3f_c01329{left:629.760000pt;}
.x66_c01329{left:633.600000pt;}
.xf4_c01329{left:637.440000pt;}
.xf7_c01329{left:639.746667pt;}
.xa8_c01329{left:641.280000pt;}
.x1_c01329{left:642.813333pt;}
.xff_c01329{left:644.346667pt;}
.x6e_c01329{left:645.893333pt;}
.x73_c01329{left:649.733333pt;}
.x87_c01329{left:651.266667pt;}
.x67_c01329{left:652.800000pt;}
.x7_c01329{left:655.866667pt;}
.xb5_c01329{left:658.173333pt;}
.x20_c01329{left:660.480000pt;}
.xd3_c01329{left:662.013333pt;}
.xd0_c01329{left:665.853333pt;}
.x5c_c01329{left:668.160000pt;}
.x10_c01329{left:669.693333pt;}
.xca_c01329{left:671.226667pt;}
.x95_c01329{left:674.306667pt;}
.x103_c01329{left:675.840000pt;}
.x91_c01329{left:677.373333pt;}
.x9e_c01329{left:679.680000pt;}
.x88_c01329{left:681.213333pt;}
.xbf_c01329{left:682.746667pt;}
.xb0_c01329{left:684.293333pt;}
.x4c_c01329{left:685.826667pt;}
.x63_c01329{left:687.360000pt;}
.x21_c01329{left:688.893333pt;}
.xa9_c01329{left:692.733333pt;}
.x17_c01329{left:695.040000pt;}
.x36_c01329{left:697.346667pt;}
.xdf_c01329{left:699.653333pt;}
.xe3_c01329{left:701.186667pt;}
.x6f_c01329{left:703.493333pt;}
.x54_c01329{left:705.026667pt;}
.x104_c01329{left:706.560000pt;}
.x7c_c01329{left:708.093333pt;}
.xed_c01329{left:711.933333pt;}
.x11_c01329{left:713.466667pt;}
.xcb_c01329{left:716.546667pt;}
.x7d_c01329{left:718.079933pt;}
.xd4_c01329{left:719.613333pt;}
.x40_c01329{left:721.146667pt;}
.x37_c01329{left:723.453333pt;}
.x99_c01329{left:724.986667pt;}
.x4d_c01329{left:727.293333pt;}
.x74_c01329{left:728.826667pt;}
.x105_c01329{left:731.906667pt;}
.xf8_c01329{left:733.440000pt;}
.xc0_c01329{left:735.746667pt;}
.x41_c01329{left:737.280000pt;}
.x29_c01329{left:741.893333pt;}
.x68_c01329{left:745.733333pt;}
.xc5_c01329{left:747.266667pt;}
.xa1_c01329{left:748.800000pt;}
.x5d_c01329{left:750.333333pt;}
.x81_c01329{left:752.640000pt;}
.x96_c01329{left:757.253333pt;}
.xfa_c01329{left:758.786667pt;}
.x8b_c01329{left:760.320000pt;}
.x42_c01329{left:763.386667pt;}
.x43_c01329{left:770.306667pt;}
.x44_c01329{left:775.680000pt;}
.xf9_c01329{left:777.213333pt;}
.x38_c01329{left:778.746667pt;}
.x97_c01329{left:781.053333pt;}
.x92_c01329{left:783.360000pt;}
.x70_c01329{left:787.200000pt;}
.xe4_c01329{left:791.040000pt;}
.xfb_c01329{left:793.346667pt;}
.xfe_c01329{left:797.946667pt;}
.x55_c01329{left:801.786667pt;}
.x4e_c01329{left:806.400000pt;}
.x56_c01329{left:812.546667pt;}
.x10c_c01329{left:833.279000pt;}
.x10e_c01329{left:838.653333pt;}
.x10d_c01329{left:846.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a4c5b63e05b1edf964e402c5.woff2')format("woff");}.ff1_c01330{font-family:ff1_c01330;line-height:1.109863;font-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_c01330{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01330{transform:matrix(0.020425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020425,0.000000,0.000000,0.250000,0,0);}
.m78_c01330{transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);}
.mcb_c01330{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.mbf_c01330{transform:matrix(0.069100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069100,0.000000,0.000000,0.250000,0,0);}
.m5c_c01330{transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);}
.m171_c01330{transform:matrix(0.077950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077950,0.000000,0.000000,0.250000,0,0);}
.m159_c01330{transform:matrix(0.080225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.080225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.080225,0.000000,0.000000,0.250000,0,0);}
.m16f_c01330{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m182_c01330{transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088225,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01330{transform:matrix(0.096350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096350,0.000000,0.000000,0.250000,0,0);}
.m142_c01330{transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01330{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m166_c01330{transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112525,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01330{transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112600,0.000000,0.000000,0.250000,0,0);}
.m165_c01330{transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01330{transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);}
.m56_c01330{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);}
.maa_c01330{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.m151_c01330{transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);}
.mec_c01330{transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);}
.med_c01330{transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126450,0.000000,0.000000,0.250000,0,0);}
.m199_c01330{transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128000,0.000000,0.000000,0.250000,0,0);}
.m62_c01330{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m197_c01330{transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129575,0.000000,0.000000,0.250000,0,0);}
.mbe_c01330{transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);}
.m149_c01330{transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135925,0.000000,0.000000,0.250000,0,0);}
.m14a_c01330{transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136100,0.000000,0.000000,0.250000,0,0);}
.m164_c01330{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m15c_c01330{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.mae_c01330{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m172_c01330{transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);}
.m1d_c01330{transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);}
.m179_c01330{transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140750,0.000000,0.000000,0.250000,0,0);}
.m18a_c01330{transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141575,0.000000,0.000000,0.250000,0,0);}
.m92_c01330{transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141650,0.000000,0.000000,0.250000,0,0);}
.m91_c01330{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);}
.m168_c01330{transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);}
.m11b_c01330{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.m63_c01330{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01330{transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144025,0.000000,0.000000,0.250000,0,0);}
.m140_c01330{transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);}
.m18c_c01330{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);}
.m8d_c01330{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);}
.m174_c01330{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mad_c01330{transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);}
.mb8_c01330{transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);}
.mdb_c01330{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m59_c01330{transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150450,0.000000,0.000000,0.250000,0,0);}
.m15a_c01330{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m14f_c01330{transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);}
.m69_c01330{transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);}
.m93_c01330{transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);}
.m153_c01330{transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151575,0.000000,0.000000,0.250000,0,0);}
.m150_c01330{transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151725,0.000000,0.000000,0.250000,0,0);}
.m16e_c01330{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m126_c01330{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);}
.m12f_c01330{transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153725,0.000000,0.000000,0.250000,0,0);}
.m122_c01330{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m187_c01330{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.m6b_c01330{transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);}
.mbc_c01330{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m94_c01330{transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155350,0.000000,0.000000,0.250000,0,0);}
.m18d_c01330{transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155525,0.000000,0.000000,0.250000,0,0);}
.m11c_c01330{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m118_c01330{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m46_c01330{transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157575,0.000000,0.000000,0.250000,0,0);}
.m125_c01330{transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158525,0.000000,0.000000,0.250000,0,0);}
.m188_c01330{transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158850,0.000000,0.000000,0.250000,0,0);}
.mf3_c01330{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m4d_c01330{transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159025,0.000000,0.000000,0.250000,0,0);}
.m95_c01330{transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159125,0.000000,0.000000,0.250000,0,0);}
.m9d_c01330{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);}
.m73_c01330{transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160025,0.000000,0.000000,0.250000,0,0);}
.m17b_c01330{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m123_c01330{transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160525,0.000000,0.000000,0.250000,0,0);}
.m5a_c01330{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m18e_c01330{transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161550,0.000000,0.000000,0.250000,0,0);}
.m127_c01330{transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);}
.m11d_c01330{transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162125,0.000000,0.000000,0.250000,0,0);}
.m167_c01330{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.m3_c01330{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m108_c01330{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);}
.mb4_c01330{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.mc0_c01330{transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163175,0.000000,0.000000,0.250000,0,0);}
.mb3_c01330{transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164750,0.000000,0.000000,0.250000,0,0);}
.m119_c01330{transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);}
.m11_c01330{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);}
.m152_c01330{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.m64_c01330{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m9b_c01330{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.mb1_c01330{transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);}
.m13e_c01330{transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168850,0.000000,0.000000,0.250000,0,0);}
.m6d_c01330{transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);}
.m148_c01330{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m128_c01330{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);}
.m17a_c01330{transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171150,0.000000,0.000000,0.250000,0,0);}
.m17e_c01330{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);}
.m114_c01330{transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172275,0.000000,0.000000,0.250000,0,0);}
.m102_c01330{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);}
.mfe_c01330{transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174900,0.000000,0.000000,0.250000,0,0);}
.m145_c01330{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.me6_c01330{transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175500,0.000000,0.000000,0.250000,0,0);}
.md0_c01330{transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175725,0.000000,0.000000,0.250000,0,0);}
.me8_c01330{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);}
.m18f_c01330{transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177275,0.000000,0.000000,0.250000,0,0);}
.m14_c01330{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.m12e_c01330{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.mcc_c01330{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);}
.m9c_c01330{transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);}
.m10b_c01330{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m17_c01330{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.m31_c01330{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.meb_c01330{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.mbd_c01330{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m88_c01330{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m12a_c01330{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01330{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);}
.m15e_c01330{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.mee_c01330{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);}
.me0_c01330{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);}
.m169_c01330{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);}
.m184_c01330{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.me_c01330{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.mac_c01330{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);}
.m178_c01330{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);}
.m13c_c01330{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);}
.m14b_c01330{transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185775,0.000000,0.000000,0.250000,0,0);}
.m11f_c01330{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m10f_c01330{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);}
.mce_c01330{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);}
.ma0_c01330{transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);}
.md2_c01330{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.m6c_c01330{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);}
.m141_c01330{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m176_c01330{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);}
.m19d_c01330{transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);}
.m48_c01330{transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);}
.ma2_c01330{transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);}
.m90_c01330{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);}
.mf8_c01330{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);}
.m144_c01330{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m37_c01330{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);}
.m121_c01330{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);}
.mc7_c01330{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.m50_c01330{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.m104_c01330{transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194125,0.000000,0.000000,0.250000,0,0);}
.m186_c01330{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.m8c_c01330{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m13f_c01330{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.m9a_c01330{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);}
.m157_c01330{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);}
.m175_c01330{transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);}
.m194_c01330{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.me7_c01330{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);}
.m19f_c01330{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);}
.mf4_c01330{transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197900,0.000000,0.000000,0.250000,0,0);}
.m12c_c01330{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);}
.m170_c01330{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);}
.mfc_c01330{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.mda_c01330{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);}
.md1_c01330{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.m120_c01330{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);}
.mea_c01330{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m11a_c01330{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.mf5_c01330{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);}
.m162_c01330{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);}
.m143_c01330{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m67_c01330{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.mef_c01330{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m10e_c01330{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);}
.m115_c01330{transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201625,0.000000,0.000000,0.250000,0,0);}
.m189_c01330{transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);}
.m163_c01330{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);}
.m32_c01330{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.mc1_c01330{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);}
.mde_c01330{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01330{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m65_c01330{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.ma4_c01330{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.m74_c01330{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);}
.mf_c01330{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);}
.m116_c01330{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);}
.m1f_c01330{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);}
.m99_c01330{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.m16c_c01330{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m41_c01330{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);}
.m19c_c01330{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mb2_c01330{transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);}
.mdd_c01330{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.mcd_c01330{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);}
.m68_c01330{transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);}
.ma1_c01330{transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);}
.m85_c01330{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);}
.m87_c01330{transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);}
.m173_c01330{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);}
.ma7_c01330{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);}
.m17c_c01330{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.m19a_c01330{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m24_c01330{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);}
.m3f_c01330{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.m130_c01330{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);}
.m133_c01330{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);}
.m185_c01330{transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);}
.m3d_c01330{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m105_c01330{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);}
.m100_c01330{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m4c_c01330{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);}
.me3_c01330{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);}
.mc5_c01330{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);}
.mfa_c01330{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);}
.m10c_c01330{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);}
.m1a2_c01330{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m16b_c01330{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m11e_c01330{transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);}
.m8b_c01330{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.ma6_c01330{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.m193_c01330{transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);}
.m190_c01330{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m13d_c01330{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.m107_c01330{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m139_c01330{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m158_c01330{transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214450,0.000000,0.000000,0.250000,0,0);}
.m155_c01330{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);}
.mc2_c01330{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.m14c_c01330{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);}
.m196_c01330{transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);}
.m137_c01330{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.m160_c01330{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m109_c01330{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);}
.m19e_c01330{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m198_c01330{transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217175,0.000000,0.000000,0.250000,0,0);}
.m54_c01330{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.m35_c01330{transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218175,0.000000,0.000000,0.250000,0,0);}
.m101_c01330{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);}
.m180_c01330{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m30_c01330{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);}
.m75_c01330{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);}
.m129_c01330{transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);}
.m117_c01330{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m6_c01330{transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);}
.m2f_c01330{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);}
.mab_c01330{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);}
.m135_c01330{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.mdf_c01330{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m26_c01330{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.mdc_c01330{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m110_c01330{transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);}
.m106_c01330{transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223875,0.000000,0.000000,0.250000,0,0);}
.m8f_c01330{transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);}
.m14e_c01330{transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);}
.mca_c01330{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m12d_c01330{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m38_c01330{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);}
.m72_c01330{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);}
.mc3_c01330{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);}
.m14d_c01330{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);}
.mf6_c01330{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.mb6_c01330{transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225725,0.000000,0.000000,0.250000,0,0);}
.m18b_c01330{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);}
.m131_c01330{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);}
.m84_c01330{transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);}
.m132_c01330{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m4e_c01330{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.me9_c01330{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.m7e_c01330{transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);}
.m146_c01330{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);}
.m1a0_c01330{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);}
.m7f_c01330{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);}
.mc9_c01330{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);}
.m96_c01330{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);}
.m17d_c01330{transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231300,0.000000,0.000000,0.250000,0,0);}
.me2_c01330{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.mb7_c01330{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);}
.m136_c01330{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);}
.mf2_c01330{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);}
.m17f_c01330{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);}
.m2e_c01330{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);}
.m19b_c01330{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);}
.m79_c01330{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.mff_c01330{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);}
.mf9_c01330{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);}
.me4_c01330{transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236450,0.000000,0.000000,0.250000,0,0);}
.mbb_c01330{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);}
.m45_c01330{transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237450,0.000000,0.000000,0.250000,0,0);}
.m6a_c01330{transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);}
.m89_c01330{transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);}
.m22_c01330{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);}
.m192_c01330{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);}
.mcf_c01330{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m1e_c01330{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);}
.m134_c01330{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);}
.m1b_c01330{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);}
.m13a_c01330{transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);}
.m191_c01330{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);}
.m112_c01330{transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);}
.m156_c01330{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m51_c01330{transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240725,0.000000,0.000000,0.250000,0,0);}
.m111_c01330{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);}
.m195_c01330{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);}
.mc8_c01330{transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);}
.m161_c01330{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);}
.m76_c01330{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);}
.m6e_c01330{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);}
.m23_c01330{transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242900,0.000000,0.000000,0.250000,0,0);}
.m71_c01330{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);}
.m8a_c01330{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.mf1_c01330{transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);}
.m13b_c01330{transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244150,0.000000,0.000000,0.250000,0,0);}
.mb0_c01330{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);}
.m70_c01330{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);}
.m98_c01330{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);}
.md8_c01330{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);}
.md3_c01330{transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246800,0.000000,0.000000,0.250000,0,0);}
.ma_c01330{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.mf7_c01330{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);}
.md7_c01330{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);}
.m113_c01330{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m82_c01330{transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249150,0.000000,0.000000,0.250000,0,0);}
.m13_c01330{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);}
.m10a_c01330{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01330{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);}
.m33_c01330{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);}
.m1a_c01330{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);}
.m1_c01330{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);}
.m18_c01330{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m36_c01330{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c01330{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m8_c01330{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);}
.m53_c01330{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m39_c01330{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);}
.m2c_c01330{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);}
.m58_c01330{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2_c01330{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);}
.m0_c01330{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01330{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01330{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);}
.m21_c01330{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.md4_c01330{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);}
.m16_c01330{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);}
.m7_c01330{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mf0_c01330{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01330{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);}
.m2d_c01330{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m25_c01330{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m44_c01330{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);}
.m2a_c01330{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m20_c01330{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m52_c01330{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m34_c01330{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01330{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m29_c01330{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01330{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01330{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01330{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);}
.m80_c01330{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01330{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m9_c01330{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.md_c01330{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m15_c01330{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);}
.m7b_c01330{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);}
.m47_c01330{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01330{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);}
.m16d_c01330{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01330{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m154_c01330{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01330{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01330{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m10_c01330{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);}
.m12b_c01330{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m86_c01330{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m43_c01330{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);}
.m138_c01330{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01330{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m124_c01330{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m57_c01330{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m49_c01330{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m19_c01330{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);}
.m60_c01330{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01330{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01330{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);}
.m5e_c01330{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01330{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m55_c01330{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mb_c01330{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);}
.m3c_c01330{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m15b_c01330{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m83_c01330{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m81_c01330{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m40_c01330{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.me1_c01330{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9f_c01330{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.ma8_c01330{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mb5_c01330{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.mc6_c01330{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.me5_c01330{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);}
.mfb_c01330{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m77_c01330{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m66_c01330{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m61_c01330{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m10d_c01330{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m9e_c01330{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m15f_c01330{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01330{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m12_c01330{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m27_c01330{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m183_c01330{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mc4_c01330{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.mba_c01330{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.mc_c01330{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01330{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);}
.m42_c01330{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m103_c01330{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m97_c01330{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m177_c01330{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01330{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m15d_c01330{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m147_c01330{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.md9_c01330{transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);}
.m181_c01330{transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);}
.mb9_c01330{transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.225000,0.000000,0.000000,0.250000,0,0);}
.md5_c01330{transform:matrix(1.352500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.352500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.352500,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01330{transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.355000,0.000000,0.000000,0.250000,0,0);}
.m16a_c01330{transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.522500,0.000000,0.000000,0.250000,0,0);}
.ma9_c01330{transform:matrix(1.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.537500,0.000000,0.000000,0.250000,0,0);}
.md6_c01330{transform:matrix(1.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.912500,0.000000,0.000000,0.250000,0,0);}
.mfd_c01330{transform:matrix(2.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.325000,0.000000,0.000000,0.250000,0,0);}
.maf_c01330{transform:matrix(2.810000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.810000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.810000,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01330{transform:matrix(6.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.770000,0.000000,0.000000,0.250000,0,0);}
.m7d_c01330{transform:matrix(9.647500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.647500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.647500,0.000000,0.000000,0.250000,0,0);}
.v2_c01330{vertical-align:-3.480000px;}
.v0_c01330{vertical-align:0.000000px;}
.v1_c01330{vertical-align:3.480000px;}
.ls4_c01330{letter-spacing:0.000000px;}
.ls0_c01330{letter-spacing:7.432560px;}
.ls3_c01330{letter-spacing:52.144464px;}
.ls1_c01330{letter-spacing:58.078464px;}
.ls2_c01330{letter-spacing:58.860000px;}
.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:-17.920680px;}
.ws1_c01330{word-spacing:0.000000px;}
.fc0_c01330{color:transparent;}
.fs1a_c01330{font-size:3.456000px;}
.fs1b_c01330{font-size:6.000000px;}
.fs14_c01330{font-size:6.900000px;}
.fs2_c01330{font-size:10.380000px;}
.fs15_c01330{font-size:13.800000px;}
.fs12_c01330{font-size:17.280000px;}
.fs0_c01330{font-size:20.760000px;}
.fs19_c01330{font-size:24.180000px;}
.fs11_c01330{font-size:27.660000px;}
.fse_c01330{font-size:31.080000px;}
.fs1_c01330{font-size:34.560000px;}
.fs10_c01330{font-size:38.040000px;}
.fs1c_c01330{font-size:41.460000px;}
.fsb_c01330{font-size:44.940000px;}
.fs17_c01330{font-size:48.360000px;}
.fs9_c01330{font-size:51.840000px;}
.fs7_c01330{font-size:55.320000px;}
.fs8_c01330{font-size:58.740000px;}
.fs16_c01330{font-size:62.220000px;}
.fsd_c01330{font-size:65.640000px;}
.fsf_c01330{font-size:69.120000px;}
.fs13_c01330{font-size:72.600000px;}
.fsa_c01330{font-size:76.020000px;}
.fsc_c01330{font-size:79.500000px;}
.fs18_c01330{font-size:82.920000px;}
.fs3_c01330{font-size:86.400000px;}
.fs4_c01330{font-size:89.880000px;}
.fs1e_c01330{font-size:93.300000px;}
.fs5_c01330{font-size:96.780000px;}
.fs1d_c01330{font-size:100.200000px;}
.fs6_c01330{font-size:138.240000px;}
.y0_c01330{bottom:0.000000px;}
.y1d6_c01330{bottom:181.440000px;}
.y1d5_c01330{bottom:182.310000px;}
.y1d3_c01330{bottom:183.165000px;}
.y1d7_c01330{bottom:184.035000px;}
.y1d4_c01330{bottom:184.890000px;}
.y1d1_c01330{bottom:185.760000px;}
.y1d0_c01330{bottom:186.630000px;}
.y1cf_c01330{bottom:188.355000px;}
.y1ce_c01330{bottom:190.950000px;}
.y1d2_c01330{bottom:191.805000px;}
.y1c8_c01330{bottom:204.765000px;}
.y1cd_c01330{bottom:207.360000px;}
.y1cb_c01330{bottom:209.085000px;}
.y1c9_c01330{bottom:210.810000px;}
.y1cc_c01330{bottom:211.680000px;}
.y1ca_c01330{bottom:212.550000px;}
.y1c3_c01330{bottom:225.510000px;}
.y1c6_c01330{bottom:227.235000px;}
.y1c4_c01330{bottom:228.090000px;}
.y1c5_c01330{bottom:229.830000px;}
.y1c7_c01330{bottom:231.555000px;}
.y1c1_c01330{bottom:246.240000px;}
.y1be_c01330{bottom:247.965000px;}
.y1bf_c01330{bottom:248.835000px;}
.y1c0_c01330{bottom:249.690000px;}
.y1c2_c01330{bottom:251.430000px;}
.y1bd_c01330{bottom:254.010000px;}
.y1b8_c01330{bottom:266.970000px;}
.y1b7_c01330{bottom:267.840000px;}
.y1b9_c01330{bottom:268.710000px;}
.y1bb_c01330{bottom:271.290000px;}
.y1b6_c01330{bottom:272.160000px;}
.y1bc_c01330{bottom:273.030000px;}
.y1ba_c01330{bottom:279.075000px;}
.y1ac_c01330{bottom:286.845000px;}
.y1ab_c01330{bottom:288.570000px;}
.y1af_c01330{bottom:289.440000px;}
.y1b1_c01330{bottom:290.310000px;}
.y1b5_c01330{bottom:292.035000px;}
.y1b0_c01330{bottom:292.890000px;}
.y1ae_c01330{bottom:293.760000px;}
.y1b4_c01330{bottom:300.675000px;}
.y1ad_c01330{bottom:302.400000px;}
.y1b2_c01330{bottom:303.270000px;}
.y1b3_c01330{bottom:304.995000px;}
.y1a7_c01330{bottom:307.590000px;}
.y1a8_c01330{bottom:309.315000px;}
.y1a6_c01330{bottom:310.170000px;}
.y1a9_c01330{bottom:311.040000px;}
.y1a5_c01330{bottom:314.490000px;}
.y1aa_c01330{bottom:315.360000px;}
.y19e_c01330{bottom:329.190000px;}
.y1a4_c01330{bottom:330.915000px;}
.y1a1_c01330{bottom:336.090000px;}
.y1a3_c01330{bottom:336.960000px;}
.y19f_c01330{bottom:345.600000px;}
.y1a0_c01330{bottom:347.325000px;}
.y1a2_c01330{bottom:348.195000px;}
.y19a_c01330{bottom:349.920000px;}
.y19c_c01330{bottom:350.790000px;}
.y19d_c01330{bottom:351.645000px;}
.y19b_c01330{bottom:356.835000px;}
.y199_c01330{bottom:360.285000px;}
.y18e_c01330{bottom:371.520000px;}
.y195_c01330{bottom:373.245000px;}
.y198_c01330{bottom:374.115000px;}
.y191_c01330{bottom:374.970000px;}
.y197_c01330{bottom:375.840000px;}
.y194_c01330{bottom:376.710000px;}
.y196_c01330{bottom:377.565000px;}
.y193_c01330{bottom:382.755000px;}
.y190_c01330{bottom:383.610000px;}
.y18f_c01330{bottom:384.480000px;}
.y192_c01330{bottom:386.205000px;}
.y188_c01330{bottom:391.395000px;}
.y187_c01330{bottom:392.250000px;}
.y18c_c01330{bottom:393.990000px;}
.y18d_c01330{bottom:395.715000px;}
.y18b_c01330{bottom:397.440000px;}
.y189_c01330{bottom:398.310000px;}
.y18a_c01330{bottom:399.165000px;}
.y186_c01330{bottom:401.760000px;}
.y185_c01330{bottom:406.080000px;}
.y179_c01330{bottom:412.125000px;}
.y17b_c01330{bottom:412.995000px;}
.y180_c01330{bottom:413.850000px;}
.y17c_c01330{bottom:415.590000px;}
.y184_c01330{bottom:416.445000px;}
.y17d_c01330{bottom:417.315000px;}
.y17e_c01330{bottom:418.170000px;}
.y17a_c01330{bottom:419.040000px;}
.y181_c01330{bottom:419.910000px;}
.y17f_c01330{bottom:422.490000px;}
.y182_c01330{bottom:423.360000px;}
.y183_c01330{bottom:425.085000px;}
.y16e_c01330{bottom:431.130000px;}
.y173_c01330{bottom:432.000000px;}
.y171_c01330{bottom:432.870000px;}
.y178_c01330{bottom:433.725000px;}
.y16d_c01330{bottom:434.595000px;}
.y177_c01330{bottom:435.450000px;}
.y176_c01330{bottom:436.320000px;}
.y16f_c01330{bottom:437.190000px;}
.y175_c01330{bottom:438.045000px;}
.y172_c01330{bottom:438.915000px;}
.y170_c01330{bottom:439.770000px;}
.y174_c01330{bottom:442.365000px;}
.y16c_c01330{bottom:444.960000px;}
.y167_c01330{bottom:454.470000px;}
.y166_c01330{bottom:455.325000px;}
.y168_c01330{bottom:456.195000px;}
.y165_c01330{bottom:457.050000px;}
.y169_c01330{bottom:458.790000px;}
.y16a_c01330{bottom:459.645000px;}
.y16b_c01330{bottom:460.515000px;}
.y160_c01330{bottom:474.330000px;}
.y15e_c01330{bottom:475.200000px;}
.y15f_c01330{bottom:476.070000px;}
.y163_c01330{bottom:476.925000px;}
.y164_c01330{bottom:477.795000px;}
.y15d_c01330{bottom:478.650000px;}
.y162_c01330{bottom:480.390000px;}
.y161_c01330{bottom:482.115000px;}
.y153_c01330{bottom:489.885000px;}
.y154_c01330{bottom:493.350000px;}
.y159_c01330{bottom:494.205000px;}
.y156_c01330{bottom:495.930000px;}
.y15a_c01330{bottom:496.800000px;}
.y155_c01330{bottom:497.670000px;}
.y158_c01330{bottom:499.395000px;}
.y15b_c01330{bottom:500.250000px;}
.y157_c01330{bottom:501.120000px;}
.y15c_c01330{bottom:501.990000px;}
.y14c_c01330{bottom:514.950000px;}
.y14e_c01330{bottom:515.805000px;}
.y14f_c01330{bottom:516.675000px;}
.y151_c01330{bottom:517.530000px;}
.y150_c01330{bottom:518.400000px;}
.y14b_c01330{bottom:519.270000px;}
.y14a_c01330{bottom:520.125000px;}
.y14d_c01330{bottom:520.995000px;}
.y152_c01330{bottom:521.850000px;}
.y142_c01330{bottom:534.810000px;}
.y143_c01330{bottom:535.680000px;}
.y149_c01330{bottom:536.550000px;}
.y144_c01330{bottom:537.405000px;}
.y148_c01330{bottom:538.275000px;}
.y145_c01330{bottom:540.870000px;}
.y146_c01330{bottom:541.725000px;}
.y147_c01330{bottom:548.640000px;}
.y13b_c01330{bottom:555.555000px;}
.y140_c01330{bottom:556.410000px;}
.y13f_c01330{bottom:557.280000px;}
.y13c_c01330{bottom:559.005000px;}
.y141_c01330{bottom:559.875000px;}
.y13d_c01330{bottom:560.730000px;}
.y13a_c01330{bottom:561.600000px;}
.y13e_c01330{bottom:562.470000px;}
.y131_c01330{bottom:575.430000px;}
.y133_c01330{bottom:577.155000px;}
.y134_c01330{bottom:578.010000px;}
.y135_c01330{bottom:578.880000px;}
.y136_c01330{bottom:579.750000px;}
.y137_c01330{bottom:580.605000px;}
.y132_c01330{bottom:582.330000px;}
.y139_c01330{bottom:583.200000px;}
.y138_c01330{bottom:584.070000px;}
.y130_c01330{bottom:595.290000px;}
.y129_c01330{bottom:596.160000px;}
.y12c_c01330{bottom:597.030000px;}
.y12e_c01330{bottom:597.885000px;}
.y12d_c01330{bottom:598.755000px;}
.y128_c01330{bottom:600.480000px;}
.y12f_c01330{bottom:601.350000px;}
.y12b_c01330{bottom:602.205000px;}
.y12a_c01330{bottom:603.075000px;}
.y123_c01330{bottom:615.165000px;}
.y125_c01330{bottom:617.760000px;}
.y127_c01330{bottom:618.630000px;}
.y122_c01330{bottom:621.210000px;}
.y124_c01330{bottom:622.950000px;}
.y126_c01330{bottom:623.805000px;}
.y11b_c01330{bottom:635.910000px;}
.y11e_c01330{bottom:637.635000px;}
.y11c_c01330{bottom:638.490000px;}
.y11a_c01330{bottom:641.085000px;}
.y11d_c01330{bottom:642.810000px;}
.y120_c01330{bottom:643.680000px;}
.y121_c01330{bottom:644.550000px;}
.y1e5_c01330{bottom:648.000000px;}
.y11f_c01330{bottom:648.870000px;}
.y114_c01330{bottom:657.510000px;}
.y115_c01330{bottom:661.830000px;}
.y113_c01330{bottom:662.685000px;}
.y117_c01330{bottom:665.280000px;}
.y116_c01330{bottom:666.150000px;}
.y118_c01330{bottom:668.730000px;}
.y1e4_c01330{bottom:669.600000px;}
.y112_c01330{bottom:673.920000px;}
.y119_c01330{bottom:674.790000px;}
.y10c_c01330{bottom:677.370000px;}
.y10e_c01330{bottom:679.110000px;}
.y111_c01330{bottom:681.690000px;}
.y10d_c01330{bottom:682.560000px;}
.y10f_c01330{bottom:683.430000px;}
.y110_c01330{bottom:686.010000px;}
.y105_c01330{bottom:697.245000px;}
.y106_c01330{bottom:698.115000px;}
.y10b_c01330{bottom:698.970000px;}
.y107_c01330{bottom:701.565000px;}
.y108_c01330{bottom:702.435000px;}
.y1e3_c01330{bottom:703.290000px;}
.y10a_c01330{bottom:704.160000px;}
.y109_c01330{bottom:705.030000px;}
.yfc_c01330{bottom:716.250000px;}
.yfe_c01330{bottom:717.120000px;}
.y100_c01330{bottom:717.990000px;}
.yff_c01330{bottom:719.715000px;}
.y103_c01330{bottom:720.570000px;}
.y102_c01330{bottom:721.440000px;}
.y101_c01330{bottom:722.310000px;}
.yfd_c01330{bottom:723.165000px;}
.y104_c01330{bottom:724.890000px;}
.yf8_c01330{bottom:736.125000px;}
.yfb_c01330{bottom:739.590000px;}
.yfa_c01330{bottom:740.445000px;}
.yf9_c01330{bottom:742.170000px;}
.yf7_c01330{bottom:754.275000px;}
.y1e2_c01330{bottom:755.130000px;}
.yf2_c01330{bottom:758.595000px;}
.yf4_c01330{bottom:761.190000px;}
.yf1_c01330{bottom:762.915000px;}
.yf0_c01330{bottom:763.770000px;}
.yf3_c01330{bottom:764.640000px;}
.yf5_c01330{bottom:766.365000px;}
.yf6_c01330{bottom:768.960000px;}
.yeb_c01330{bottom:780.195000px;}
.yee_c01330{bottom:781.050000px;}
.yed_c01330{bottom:781.920000px;}
.ye7_c01330{bottom:784.515000px;}
.ye8_c01330{bottom:785.370000px;}
.yef_c01330{bottom:786.240000px;}
.yea_c01330{bottom:788.835000px;}
.ye9_c01330{bottom:789.690000px;}
.yec_c01330{bottom:794.010000px;}
.ye3_c01330{bottom:799.200000px;}
.ye0_c01330{bottom:800.070000px;}
.ye1_c01330{bottom:802.650000px;}
.ye5_c01330{bottom:803.520000px;}
.ye2_c01330{bottom:804.390000px;}
.ye4_c01330{bottom:805.245000px;}
.ye6_c01330{bottom:806.115000px;}
.yd9_c01330{bottom:819.930000px;}
.yde_c01330{bottom:820.800000px;}
.yda_c01330{bottom:821.670000px;}
.ydc_c01330{bottom:822.525000px;}
.ydf_c01330{bottom:824.250000px;}
.yd8_c01330{bottom:825.990000px;}
.ydd_c01330{bottom:826.845000px;}
.ydb_c01330{bottom:837.210000px;}
.yd4_c01330{bottom:838.080000px;}
.yd1_c01330{bottom:838.950000px;}
.yd6_c01330{bottom:841.530000px;}
.yd0_c01330{bottom:842.400000px;}
.yd5_c01330{bottom:843.270000px;}
.yd3_c01330{bottom:844.995000px;}
.yd2_c01330{bottom:845.850000px;}
.yd7_c01330{bottom:847.590000px;}
.ycf_c01330{bottom:861.405000px;}
.yca_c01330{bottom:862.275000px;}
.yc9_c01330{bottom:864.870000px;}
.yce_c01330{bottom:866.595000px;}
.ycd_c01330{bottom:867.450000px;}
.ycb_c01330{bottom:876.960000px;}
.ycc_c01330{bottom:878.685000px;}
.ybf_c01330{bottom:880.410000px;}
.yc4_c01330{bottom:881.280000px;}
.yc2_c01330{bottom:882.150000px;}
.yc5_c01330{bottom:883.005000px;}
.yc1_c01330{bottom:883.875000px;}
.yc0_c01330{bottom:884.730000px;}
.yc3_c01330{bottom:885.600000px;}
.yc6_c01330{bottom:886.470000px;}
.yc7_c01330{bottom:888.195000px;}
.yc8_c01330{bottom:890.790000px;}
.yba_c01330{bottom:902.010000px;}
.ybe_c01330{bottom:902.880000px;}
.yb9_c01330{bottom:903.750000px;}
.ybb_c01330{bottom:904.605000px;}
.ybd_c01330{bottom:907.200000px;}
.ybc_c01330{bottom:908.070000px;}
.yb2_c01330{bottom:921.030000px;}
.yb4_c01330{bottom:922.755000px;}
.yb8_c01330{bottom:923.610000px;}
.yb5_c01330{bottom:924.480000px;}
.yb3_c01330{bottom:926.205000px;}
.yb7_c01330{bottom:927.930000px;}
.yb6_c01330{bottom:928.800000px;}
.yaa_c01330{bottom:941.760000px;}
.ya8_c01330{bottom:942.630000px;}
.yae_c01330{bottom:944.355000px;}
.yaf_c01330{bottom:945.210000px;}
.yab_c01330{bottom:946.950000px;}
.yb1_c01330{bottom:947.805000px;}
.yb0_c01330{bottom:948.675000px;}
.yad_c01330{bottom:949.530000px;}
.ya9_c01330{bottom:952.125000px;}
.yac_c01330{bottom:959.910000px;}
.ya5_c01330{bottom:963.360000px;}
.ya3_c01330{bottom:964.230000px;}
.y9f_c01330{bottom:965.085000px;}
.ya1_c01330{bottom:965.955000px;}
.ya0_c01330{bottom:966.810000px;}
.ya2_c01330{bottom:967.680000px;}
.ya6_c01330{bottom:968.550000px;}
.ya7_c01330{bottom:969.405000px;}
.ya4_c01330{bottom:978.915000px;}
.y9c_c01330{bottom:985.830000px;}
.y9d_c01330{bottom:988.410000px;}
.y9e_c01330{bottom:989.280000px;}
.y9b_c01330{bottom:997.050000px;}
.y96_c01330{bottom:1002.240000px;}
.y95_c01330{bottom:1004.835000px;}
.y97_c01330{bottom:1005.690000px;}
.y99_c01330{bottom:1007.430000px;}
.y94_c01330{bottom:1008.285000px;}
.y9a_c01330{bottom:1009.155000px;}
.y98_c01330{bottom:1018.650000px;}
.y93_c01330{bottom:1019.520000px;}
.y8e_c01330{bottom:1023.840000px;}
.y91_c01330{bottom:1025.565000px;}
.y8d_c01330{bottom:1027.290000px;}
.y92_c01330{bottom:1029.030000px;}
.y90_c01330{bottom:1029.885000px;}
.y8f_c01330{bottom:1037.670000px;}
.y89_c01330{bottom:1040.250000px;}
.y8b_c01330{bottom:1041.120000px;}
.y85_c01330{bottom:1042.845000px;}
.y8c_c01330{bottom:1043.715000px;}
.y87_c01330{bottom:1048.035000px;}
.y86_c01330{bottom:1048.890000px;}
.y88_c01330{bottom:1049.760000px;}
.y8a_c01330{bottom:1050.630000px;}
.y7d_c01330{bottom:1063.590000px;}
.y80_c01330{bottom:1064.445000px;}
.y7c_c01330{bottom:1065.315000px;}
.y84_c01330{bottom:1066.170000px;}
.y7e_c01330{bottom:1067.040000px;}
.y83_c01330{bottom:1068.765000px;}
.y82_c01330{bottom:1069.635000px;}
.y81_c01330{bottom:1070.490000px;}
.y7f_c01330{bottom:1072.230000px;}
.y7b_c01330{bottom:1081.725000px;}
.y7a_c01330{bottom:1082.595000px;}
.y79_c01330{bottom:1083.450000px;}
.y1dd_c01330{bottom:1086.915000px;}
.y1de_c01330{bottom:1089.510000px;}
.y1dc_c01330{bottom:1090.365000px;}
.y74_c01330{bottom:1103.325000px;}
.y71_c01330{bottom:1104.195000px;}
.y76_c01330{bottom:1105.050000px;}
.y77_c01330{bottom:1105.920000px;}
.y72_c01330{bottom:1110.240000px;}
.y73_c01330{bottom:1111.110000px;}
.y78_c01330{bottom:1111.965000px;}
.y75_c01330{bottom:1116.285000px;}
.y6b_c01330{bottom:1124.925000px;}
.y6e_c01330{bottom:1125.795000px;}
.y6f_c01330{bottom:1128.390000px;}
.y6a_c01330{bottom:1130.115000px;}
.y6c_c01330{bottom:1130.970000px;}
.y6d_c01330{bottom:1131.840000px;}
.y70_c01330{bottom:1143.075000px;}
.y66_c01330{bottom:1144.800000px;}
.y65_c01330{bottom:1147.395000px;}
.y68_c01330{bottom:1148.250000px;}
.y64_c01330{bottom:1149.990000px;}
.y69_c01330{bottom:1150.845000px;}
.y67_c01330{bottom:1151.715000px;}
.y63_c01330{bottom:1158.630000px;}
.y5d_c01330{bottom:1164.675000px;}
.y5b_c01330{bottom:1165.530000px;}
.y61_c01330{bottom:1166.400000px;}
.y5e_c01330{bottom:1167.270000px;}
.y5a_c01330{bottom:1169.850000px;}
.y5c_c01330{bottom:1170.720000px;}
.y5f_c01330{bottom:1171.590000px;}
.y62_c01330{bottom:1173.315000px;}
.y60_c01330{bottom:1175.040000px;}
.y1e0_c01330{bottom:1178.490000px;}
.y1e1_c01330{bottom:1179.360000px;}
.y54_c01330{bottom:1185.405000px;}
.y53_c01330{bottom:1186.275000px;}
.y52_c01330{bottom:1187.130000px;}
.y56_c01330{bottom:1188.000000px;}
.y58_c01330{bottom:1188.870000px;}
.y57_c01330{bottom:1189.725000px;}
.y55_c01330{bottom:1192.320000px;}
.y59_c01330{bottom:1193.190000px;}
.y4d_c01330{bottom:1207.005000px;}
.y50_c01330{bottom:1208.730000px;}
.y51_c01330{bottom:1209.600000px;}
.y4c_c01330{bottom:1210.470000px;}
.y4f_c01330{bottom:1212.195000px;}
.y4e_c01330{bottom:1213.050000px;}
.y4a_c01330{bottom:1213.920000px;}
.y4b_c01330{bottom:1214.790000px;}
.y48_c01330{bottom:1219.110000px;}
.y49_c01330{bottom:1221.690000px;}
.y47_c01330{bottom:1222.560000px;}
.y46_c01330{bottom:1223.430000px;}
.y3c_c01330{bottom:1225.155000px;}
.y40_c01330{bottom:1226.880000px;}
.y3f_c01330{bottom:1227.750000px;}
.y43_c01330{bottom:1228.605000px;}
.y41_c01330{bottom:1229.475000px;}
.y44_c01330{bottom:1230.330000px;}
.y3e_c01330{bottom:1231.200000px;}
.y3d_c01330{bottom:1232.070000px;}
.y42_c01330{bottom:1232.925000px;}
.y45_c01330{bottom:1238.970000px;}
.y34_c01330{bottom:1245.885000px;}
.y35_c01330{bottom:1246.755000px;}
.y39_c01330{bottom:1247.610000px;}
.y3b_c01330{bottom:1248.480000px;}
.y36_c01330{bottom:1250.205000px;}
.y33_c01330{bottom:1251.075000px;}
.y32_c01330{bottom:1251.930000px;}
.y38_c01330{bottom:1252.800000px;}
.y37_c01330{bottom:1253.670000px;}
.y3a_c01330{bottom:1254.525000px;}
.y28_c01330{bottom:1266.630000px;}
.y2d_c01330{bottom:1268.355000px;}
.y2b_c01330{bottom:1269.210000px;}
.y2e_c01330{bottom:1270.080000px;}
.y29_c01330{bottom:1270.950000px;}
.y2a_c01330{bottom:1272.675000px;}
.y2c_c01330{bottom:1273.530000px;}
.y2f_c01330{bottom:1274.400000px;}
.y30_c01330{bottom:1275.270000px;}
.y31_c01330{bottom:1278.720000px;}
.y21_c01330{bottom:1287.360000px;}
.y24_c01330{bottom:1288.230000px;}
.y27_c01330{bottom:1289.085000px;}
.y22_c01330{bottom:1290.810000px;}
.y25_c01330{bottom:1291.680000px;}
.y20_c01330{bottom:1292.550000px;}
.y23_c01330{bottom:1293.405000px;}
.y26_c01330{bottom:1294.275000px;}
.y17_c01330{bottom:1307.235000px;}
.y18_c01330{bottom:1308.090000px;}
.y1b_c01330{bottom:1310.685000px;}
.y16_c01330{bottom:1313.280000px;}
.y1c_c01330{bottom:1314.150000px;}
.y1d_c01330{bottom:1315.005000px;}
.y1e_c01330{bottom:1315.875000px;}
.y19_c01330{bottom:1316.730000px;}
.y1f_c01330{bottom:1317.600000px;}
.y1a_c01330{bottom:1326.240000px;}
.y11_c01330{bottom:1327.965000px;}
.y13_c01330{bottom:1329.690000px;}
.y15_c01330{bottom:1331.430000px;}
.yf_c01330{bottom:1332.285000px;}
.y10_c01330{bottom:1333.155000px;}
.y12_c01330{bottom:1334.010000px;}
.y14_c01330{bottom:1334.880000px;}
.y9_c01330{bottom:1349.565000px;}
.yd_c01330{bottom:1350.435000px;}
.y7_c01330{bottom:1351.290000px;}
.y6_c01330{bottom:1353.030000px;}
.y8_c01330{bottom:1353.885000px;}
.ya_c01330{bottom:1355.610000px;}
.yc_c01330{bottom:1356.480000px;}
.y1df_c01330{bottom:1357.350000px;}
.yb_c01330{bottom:1358.205000px;}
.y1d8_c01330{bottom:1359.075000px;}
.ye_c01330{bottom:1366.845000px;}
.y3_c01330{bottom:1370.310000px;}
.y5_c01330{bottom:1378.950000px;}
.y4_c01330{bottom:1379.805000px;}
.y1db_c01330{bottom:1385.850000px;}
.y1da_c01330{bottom:1402.275000px;}
.y1_c01330{bottom:1404.000000px;}
.y2_c01330{bottom:1405.725000px;}
.y1d9_c01330{bottom:1414.365000px;}
.h1c_c01330{height:3.110063px;}
.h1d_c01330{height:5.399414px;}
.h16_c01330{height:6.209326px;}
.h4_c01330{height:9.340986px;}
.h17_c01330{height:12.418652px;}
.h22_c01330{height:12.760986px;}
.h14_c01330{height:15.550313px;}
.h2_c01330{height:18.681973px;}
.h1b_c01330{height:21.759639px;}
.h13_c01330{height:24.891299px;}
.h10_c01330{height:27.968965px;}
.h3_c01330{height:31.100625px;}
.h12_c01330{height:34.232285px;}
.h1e_c01330{height:37.309951px;}
.hd_c01330{height:40.441611px;}
.h19_c01330{height:43.519277px;}
.hb_c01330{height:46.650937px;}
.h9_c01330{height:49.782598px;}
.h21_c01330{height:50.130938px;}
.ha_c01330{height:52.860264px;}
.h18_c01330{height:55.991924px;}
.hf_c01330{height:59.069590px;}
.h11_c01330{height:62.201250px;}
.h15_c01330{height:65.332910px;}
.hc_c01330{height:68.410576px;}
.he_c01330{height:71.542236px;}
.h1a_c01330{height:74.619902px;}
.h5_c01330{height:77.751563px;}
.h6_c01330{height:80.883223px;}
.h20_c01330{height:83.960889px;}
.h7_c01330{height:87.092549px;}
.h1f_c01330{height:90.170215px;}
.h8_c01330{height:124.402500px;}
.h1_c01330{height:1513.500000px;}
.h0_c01330{height:1513.725000px;}
.w0_c01330{width:1083.450000px;}
.w1_c01330{width:1083.750000px;}
.x0_c01330{left:0.000000px;}
.xea_c01330{left:79.485000px;}
.x10c_c01330{left:143.430000px;}
.xe2_c01330{left:198.720000px;}
.xcf_c01330{left:200.445000px;}
.xdd_c01330{left:209.085000px;}
.xe6_c01330{left:216.870000px;}
.xf1_c01330{left:218.595000px;}
.x74_c01330{left:221.190000px;}
.xca_c01330{left:223.770000px;}
.xfa_c01330{left:226.365000px;}
.x4_c01330{left:228.090000px;}
.x8_c01330{left:230.685000px;}
.x17_c01330{left:232.410000px;}
.x97_c01330{left:236.730000px;}
.x66_c01330{left:238.470000px;}
.xa2_c01330{left:241.920000px;}
.xff_c01330{left:245.370000px;}
.x82_c01330{left:247.965000px;}
.x8d_c01330{left:250.560000px;}
.x67_c01330{left:253.155000px;}
.x4c_c01330{left:254.880000px;}
.x6e_c01330{left:258.330000px;}
.x23_c01330{left:260.070000px;}
.x2e_c01330{left:261.795000px;}
.x9c_c01330{left:266.970000px;}
.x6f_c01330{left:268.710000px;}
.x78_c01330{left:272.160000px;}
.xd2_c01330{left:275.610000px;}
.x9_c01330{left:277.350000px;}
.x85_c01330{left:282.525000px;}
.xc7_c01330{left:285.120000px;}
.xaf_c01330{left:286.845000px;}
.x42_c01330{left:288.570000px;}
.x5_c01330{left:290.310000px;}
.x98_c01330{left:292.035000px;}
.x7f_c01330{left:297.210000px;}
.x18_c01330{left:299.805000px;}
.xf4_c01330{left:304.995000px;}
.x36_c01330{left:306.720000px;}
.xa_c01330{left:308.445000px;}
.xc0_c01330{left:315.360000px;}
.xac_c01330{left:317.085000px;}
.x1_c01330{left:318.810000px;}
.xd3_c01330{left:320.550000px;}
.x2f_c01330{left:323.130000px;}
.xba_c01330{left:324.870000px;}
.x8e_c01330{left:326.595000px;}
.xf2_c01330{left:330.915000px;}
.xfb_c01330{left:332.640000px;}
.x19_c01330{left:334.365000px;}
.x43_c01330{left:336.090000px;}
.x86_c01330{left:337.830000px;}
.x109_c01330{left:339.555000px;}
.x99_c01330{left:341.280000px;}
.x24_c01330{left:344.730000px;}
.x83_c01330{left:347.325000px;}
.x4d_c01330{left:349.050000px;}
.x1a_c01330{left:350.790000px;}
.x75_c01330{left:352.515000px;}
.xb_c01330{left:354.240000px;}
.xa9_c01330{left:357.690000px;}
.x108_c01330{left:359.430000px;}
.x80_c01330{left:362.880000px;}
.xde_c01330{left:364.605000px;}
.x87_c01330{left:367.200000px;}
.xcb_c01330{left:368.925000px;}
.xb4_c01330{left:372.390000px;}
.x1b_c01330{left:374.970000px;}
.x37_c01330{left:377.565000px;}
.x68_c01330{left:379.290000px;}
.x79_c01330{left:381.885000px;}
.xee_c01330{left:383.610000px;}
.x1c_c01330{left:386.205000px;}
.xd4_c01330{left:392.250000px;}
.xc1_c01330{left:396.570000px;}
.x88_c01330{left:398.310000px;}
.x93_c01330{left:400.035000px;}
.xfc_c01330{left:401.760000px;}
.x6_c01330{left:405.210000px;}
.x30_c01330{left:406.950000px;}
.xbd_c01330{left:408.675000px;}
.x25_c01330{left:411.270000px;}
.x76_c01330{left:414.720000px;}
.xfd_c01330{left:416.445000px;}
.xe7_c01330{left:419.040000px;}
.x4e_c01330{left:420.765000px;}
.x2_c01330{left:424.230000px;}
.xa3_c01330{left:425.955000px;}
.xcc_c01330{left:427.680000px;}
.x31_c01330{left:429.405000px;}
.x7a_c01330{left:432.000000px;}
.x104_c01330{left:433.725000px;}
.xb5_c01330{left:436.320000px;}
.xeb_c01330{left:439.770000px;}
.xad_c01330{left:441.510000px;}
.x89_c01330{left:444.090000px;}
.x26_c01330{left:446.685000px;}
.x44_c01330{left:448.410000px;}
.x32_c01330{left:451.005000px;}
.x1d_c01330{left:452.730000px;}
.x105_c01330{left:454.470000px;}
.xc_c01330{left:457.920000px;}
.xb0_c01330{left:459.645000px;}
.x77_c01330{left:464.835000px;}
.x101_c01330{left:467.430000px;}
.x38_c01330{left:470.880000px;}
.xc8_c01330{left:473.475000px;}
.xe4_c01330{left:476.925000px;}
.xe3_c01330{left:478.650000px;}
.xa4_c01330{left:480.390000px;}
.x45_c01330{left:482.115000px;}
.x4f_c01330{left:484.710000px;}
.x106_c01330{left:486.435000px;}
.x9a_c01330{left:488.160000px;}
.xae_c01330{left:491.610000px;}
.x3_c01330{left:495.075000px;}
.x70_c01330{left:496.800000px;}
.x8f_c01330{left:498.525000px;}
.x9b_c01330{left:500.250000px;}
.xec_c01330{left:503.715000px;}
.xb6_c01330{left:505.440000px;}
.x69_c01330{left:507.165000px;}
.x50_c01330{left:508.890000px;}
.xd_c01330{left:510.630000px;}
.xc5_c01330{left:512.355000px;}
.x39_c01330{left:514.950000px;}
.xef_c01330{left:517.530000px;}
.xc2_c01330{left:520.125000px;}
.x100_c01330{left:523.590000px;}
.xe_c01330{left:526.170000px;}
.x71_c01330{left:527.910000px;}
.x7_c01330{left:530.490000px;}
.x27_c01330{left:533.955000px;}
.x10a_c01330{left:537.405000px;}
.xf_c01330{left:539.130000px;}
.x72_c01330{left:541.725000px;}
.x90_c01330{left:545.190000px;}
.xbe_c01330{left:547.770000px;}
.xd0_c01330{left:549.510000px;}
.xc6_c01330{left:552.090000px;}
.xfe_c01330{left:553.830000px;}
.xe8_c01330{left:555.555000px;}
.x10_c01330{left:557.280000px;}
.x3a_c01330{left:559.005000px;}
.x6a_c01330{left:560.730000px;}
.x94_c01330{left:562.470000px;}
.xf8_c01330{left:565.050000px;}
.xf5_c01330{left:569.370000px;}
.x59_c01330{left:572.835000px;}
.x7b_c01330{left:576.285000px;}
.xf9_c01330{left:578.880000px;}
.x9d_c01330{left:580.605000px;}
.xd1_c01330{left:583.200000px;}
.xed_c01330{left:585.795000px;}
.x28_c01330{left:590.970000px;}
.xdf_c01330{left:595.290000px;}
.x8a_c01330{left:597.030000px;}
.x46_c01330{left:602.205000px;}
.x3b_c01330{left:603.930000px;}
.xe5_c01330{left:609.120000px;}
.x1e_c01330{left:612.570000px;}
.x61_c01330{left:614.310000px;}
.xf0_c01330{left:616.035000px;}
.x5a_c01330{left:617.760000px;}
.x11_c01330{left:620.355000px;}
.xc3_c01330{left:622.080000px;}
.x1f_c01330{left:623.805000px;}
.xb1_c01330{left:625.530000px;}
.xa5_c01330{left:627.270000px;}
.x107_c01330{left:628.995000px;}
.x33_c01330{left:630.720000px;}
.x6b_c01330{left:633.315000px;}
.x5b_c01330{left:635.040000px;}
.x91_c01330{left:639.360000px;}
.x10d_c01330{left:641.085000px;}
.x84_c01330{left:643.680000px;}
.x51_c01330{left:646.275000px;}
.xc9_c01330{left:648.000000px;}
.xd6_c01330{left:651.450000px;}
.x62_c01330{left:654.045000px;}
.x5c_c01330{left:656.640000px;}
.x52_c01330{left:660.090000px;}
.x3c_c01330{left:662.685000px;}
.xb2_c01330{left:665.280000px;}
.xa6_c01330{left:668.730000px;}
.x29_c01330{left:671.325000px;}
.xd9_c01330{left:673.050000px;}
.x9e_c01330{left:674.790000px;}
.xc4_c01330{left:676.515000px;}
.x47_c01330{left:678.240000px;}
.xcd_c01330{left:679.965000px;}
.xaa_c01330{left:681.690000px;}
.x34_c01330{left:686.010000px;}
.x73_c01330{left:688.605000px;}
.x92_c01330{left:690.330000px;}
.x3d_c01330{left:692.925000px;}
.x2a_c01330{left:695.520000px;}
.x53_c01330{left:698.115000px;}
.xa7_c01330{left:699.840000px;}
.x95_c01330{left:704.160000px;}
.xd7_c01330{left:705.885000px;}
.xdc_c01330{left:707.610000px;}
.x48_c01330{left:709.350000px;}
.x7c_c01330{left:711.930000px;}
.x54_c01330{left:713.670000px;}
.x12_c01330{left:715.395000px;}
.x20_c01330{left:717.990000px;}
.x10b_c01330{left:719.715000px;}
.xf6_c01330{left:721.440000px;}
.x49_c01330{left:723.165000px;}
.x63_c01330{left:725.760000px;}
.x5d_c01330{left:727.485000px;}
.x103_c01330{left:730.950000px;}
.x35_c01330{left:734.400000px;}
.x9f_c01330{left:736.125000px;}
.xbf_c01330{left:737.850000px;}
.xbb_c01330{left:741.315000px;}
.xb7_c01330{left:743.040000px;}
.x2b_c01330{left:745.635000px;}
.xf7_c01330{left:749.085000px;}
.x3e_c01330{left:750.810000px;}
.x96_c01330{left:752.550000px;}
.x8b_c01330{left:755.130000px;}
.x81_c01330{left:758.595000px;}
.x55_c01330{left:761.190000px;}
.x13_c01330{left:762.915000px;}
.x21_c01330{left:765.510000px;}
.xe0_c01330{left:767.235000px;}
.xa0_c01330{left:768.960000px;}
.x5e_c01330{left:770.685000px;}
.x14_c01330{left:772.410000px;}
.x22_c01330{left:775.875000px;}
.x7d_c01330{left:777.600000px;}
.x15_c01330{left:779.325000px;}
.x6c_c01330{left:781.920000px;}
.x3f_c01330{left:784.515000px;}
.xd5_c01330{left:787.110000px;}
.xd8_c01330{left:790.560000px;}
.xdb_c01330{left:794.010000px;}
.x64_c01330{left:799.200000px;}
.x16_c01330{left:801.795000px;}
.xbc_c01330{left:803.520000px;}
.xb8_c01330{left:806.115000px;}
.x40_c01330{left:807.840000px;}
.x56_c01330{left:809.565000px;}
.x8c_c01330{left:812.160000px;}
.x4a_c01330{left:817.350000px;}
.x57_c01330{left:821.670000px;}
.x2c_c01330{left:823.395000px;}
.x5f_c01330{left:827.715000px;}
.xb3_c01330{left:829.440000px;}
.xe9_c01330{left:832.035000px;}
.xda_c01330{left:833.760000px;}
.x65_c01330{left:835.485000px;}
.xce_c01330{left:838.080000px;}
.xab_c01330{left:841.530000px;}
.x60_c01330{left:845.850000px;}
.xa8_c01330{left:847.590000px;}
.x2d_c01330{left:851.040000px;}
.x41_c01330{left:852.765000px;}
.xe1_c01330{left:857.085000px;}
.xb9_c01330{left:859.680000px;}
.x4b_c01330{left:864.000000px;}
.xf3_c01330{left:865.725000px;}
.x58_c01330{left:869.190000px;}
.x6d_c01330{left:871.770000px;}
.xa1_c01330{left:873.510000px;}
.x7e_c01330{left:875.235000px;}
.x102_c01330{left:888.195000px;}
.x118_c01330{left:903.750000px;}
.x112_c01330{left:911.520000px;}
.x113_c01330{left:921.030000px;}
.x116_c01330{left:927.930000px;}
.x10e_c01330{left:941.760000px;}
.x119_c01330{left:969.405000px;}
.x114_c01330{left:1002.240000px;}
.x115_c01330{left:1016.925000px;}
.x10f_c01330{left:1039.395000px;}
.x110_c01330{left:1047.165000px;}
.x111_c01330{left:1056.675000px;}
.x11a_c01330{left:1063.590000px;}
.x117_c01330{left:1067.040000px;}
@media print{
.v2_c01330{vertical-align:-3.093333pt;}
.v0_c01330{vertical-align:0.000000pt;}
.v1_c01330{vertical-align:3.093333pt;}
.ls4_c01330{letter-spacing:0.000000pt;}
.ls0_c01330{letter-spacing:6.606720pt;}
.ls3_c01330{letter-spacing:46.350635pt;}
.ls1_c01330{letter-spacing:51.625301pt;}
.ls2_c01330{letter-spacing:52.320000pt;}
.ws0_c01330{word-spacing:-15.929493pt;}
.ws1_c01330{word-spacing:0.000000pt;}
.fs1a_c01330{font-size:3.072000pt;}
.fs1b_c01330{font-size:5.333333pt;}
.fs14_c01330{font-size:6.133333pt;}
.fs2_c01330{font-size:9.226667pt;}
.fs15_c01330{font-size:12.266667pt;}
.fs12_c01330{font-size:15.360000pt;}
.fs0_c01330{font-size:18.453333pt;}
.fs19_c01330{font-size:21.493333pt;}
.fs11_c01330{font-size:24.586667pt;}
.fse_c01330{font-size:27.626667pt;}
.fs1_c01330{font-size:30.720000pt;}
.fs10_c01330{font-size:33.813333pt;}
.fs1c_c01330{font-size:36.853333pt;}
.fsb_c01330{font-size:39.946667pt;}
.fs17_c01330{font-size:42.986667pt;}
.fs9_c01330{font-size:46.080000pt;}
.fs7_c01330{font-size:49.173333pt;}
.fs8_c01330{font-size:52.213333pt;}
.fs16_c01330{font-size:55.306667pt;}
.fsd_c01330{font-size:58.346667pt;}
.fsf_c01330{font-size:61.440000pt;}
.fs13_c01330{font-size:64.533333pt;}
.fsa_c01330{font-size:67.573333pt;}
.fsc_c01330{font-size:70.666667pt;}
.fs18_c01330{font-size:73.706667pt;}
.fs3_c01330{font-size:76.800000pt;}
.fs4_c01330{font-size:79.893333pt;}
.fs1e_c01330{font-size:82.933333pt;}
.fs5_c01330{font-size:86.026667pt;}
.fs1d_c01330{font-size:89.066667pt;}
.fs6_c01330{font-size:122.880000pt;}
.y0_c01330{bottom:0.000000pt;}
.y1d6_c01330{bottom:161.280000pt;}
.y1d5_c01330{bottom:162.053333pt;}
.y1d3_c01330{bottom:162.813333pt;}
.y1d7_c01330{bottom:163.586667pt;}
.y1d4_c01330{bottom:164.346667pt;}
.y1d1_c01330{bottom:165.120000pt;}
.y1d0_c01330{bottom:165.893333pt;}
.y1cf_c01330{bottom:167.426667pt;}
.y1ce_c01330{bottom:169.733333pt;}
.y1d2_c01330{bottom:170.493333pt;}
.y1c8_c01330{bottom:182.013333pt;}
.y1cd_c01330{bottom:184.320000pt;}
.y1cb_c01330{bottom:185.853333pt;}
.y1c9_c01330{bottom:187.386667pt;}
.y1cc_c01330{bottom:188.160000pt;}
.y1ca_c01330{bottom:188.933333pt;}
.y1c3_c01330{bottom:200.453333pt;}
.y1c6_c01330{bottom:201.986667pt;}
.y1c4_c01330{bottom:202.746667pt;}
.y1c5_c01330{bottom:204.293333pt;}
.y1c7_c01330{bottom:205.826667pt;}
.y1c1_c01330{bottom:218.880000pt;}
.y1be_c01330{bottom:220.413333pt;}
.y1bf_c01330{bottom:221.186667pt;}
.y1c0_c01330{bottom:221.946667pt;}
.y1c2_c01330{bottom:223.493333pt;}
.y1bd_c01330{bottom:225.786667pt;}
.y1b8_c01330{bottom:237.306667pt;}
.y1b7_c01330{bottom:238.080000pt;}
.y1b9_c01330{bottom:238.853333pt;}
.y1bb_c01330{bottom:241.146667pt;}
.y1b6_c01330{bottom:241.920000pt;}
.y1bc_c01330{bottom:242.693333pt;}
.y1ba_c01330{bottom:248.066667pt;}
.y1ac_c01330{bottom:254.973333pt;}
.y1ab_c01330{bottom:256.506667pt;}
.y1af_c01330{bottom:257.280000pt;}
.y1b1_c01330{bottom:258.053333pt;}
.y1b5_c01330{bottom:259.586667pt;}
.y1b0_c01330{bottom:260.346667pt;}
.y1ae_c01330{bottom:261.120000pt;}
.y1b4_c01330{bottom:267.266667pt;}
.y1ad_c01330{bottom:268.800000pt;}
.y1b2_c01330{bottom:269.573333pt;}
.y1b3_c01330{bottom:271.106667pt;}
.y1a7_c01330{bottom:273.413333pt;}
.y1a8_c01330{bottom:274.946667pt;}
.y1a6_c01330{bottom:275.706667pt;}
.y1a9_c01330{bottom:276.480000pt;}
.y1a5_c01330{bottom:279.546667pt;}
.y1aa_c01330{bottom:280.320000pt;}
.y19e_c01330{bottom:292.613333pt;}
.y1a4_c01330{bottom:294.146667pt;}
.y1a1_c01330{bottom:298.746667pt;}
.y1a3_c01330{bottom:299.520000pt;}
.y19f_c01330{bottom:307.200000pt;}
.y1a0_c01330{bottom:308.733333pt;}
.y1a2_c01330{bottom:309.506667pt;}
.y19a_c01330{bottom:311.040000pt;}
.y19c_c01330{bottom:311.813333pt;}
.y19d_c01330{bottom:312.573333pt;}
.y19b_c01330{bottom:317.186667pt;}
.y199_c01330{bottom:320.253333pt;}
.y18e_c01330{bottom:330.240000pt;}
.y195_c01330{bottom:331.773333pt;}
.y198_c01330{bottom:332.546667pt;}
.y191_c01330{bottom:333.306667pt;}
.y197_c01330{bottom:334.080000pt;}
.y194_c01330{bottom:334.853333pt;}
.y196_c01330{bottom:335.613333pt;}
.y193_c01330{bottom:340.226667pt;}
.y190_c01330{bottom:340.986667pt;}
.y18f_c01330{bottom:341.760000pt;}
.y192_c01330{bottom:343.293333pt;}
.y188_c01330{bottom:347.906667pt;}
.y187_c01330{bottom:348.666667pt;}
.y18c_c01330{bottom:350.213333pt;}
.y18d_c01330{bottom:351.746667pt;}
.y18b_c01330{bottom:353.280000pt;}
.y189_c01330{bottom:354.053333pt;}
.y18a_c01330{bottom:354.813333pt;}
.y186_c01330{bottom:357.120000pt;}
.y185_c01330{bottom:360.960000pt;}
.y179_c01330{bottom:366.333333pt;}
.y17b_c01330{bottom:367.106667pt;}
.y180_c01330{bottom:367.866667pt;}
.y17c_c01330{bottom:369.413333pt;}
.y184_c01330{bottom:370.173333pt;}
.y17d_c01330{bottom:370.946667pt;}
.y17e_c01330{bottom:371.706667pt;}
.y17a_c01330{bottom:372.480000pt;}
.y181_c01330{bottom:373.253333pt;}
.y17f_c01330{bottom:375.546667pt;}
.y182_c01330{bottom:376.320000pt;}
.y183_c01330{bottom:377.853333pt;}
.y16e_c01330{bottom:383.226667pt;}
.y173_c01330{bottom:384.000000pt;}
.y171_c01330{bottom:384.773333pt;}
.y178_c01330{bottom:385.533333pt;}
.y16d_c01330{bottom:386.306667pt;}
.y177_c01330{bottom:387.066667pt;}
.y176_c01330{bottom:387.840000pt;}
.y16f_c01330{bottom:388.613333pt;}
.y175_c01330{bottom:389.373333pt;}
.y172_c01330{bottom:390.146667pt;}
.y170_c01330{bottom:390.906667pt;}
.y174_c01330{bottom:393.213333pt;}
.y16c_c01330{bottom:395.520000pt;}
.y167_c01330{bottom:403.973333pt;}
.y166_c01330{bottom:404.733333pt;}
.y168_c01330{bottom:405.506667pt;}
.y165_c01330{bottom:406.266667pt;}
.y169_c01330{bottom:407.813333pt;}
.y16a_c01330{bottom:408.573333pt;}
.y16b_c01330{bottom:409.346667pt;}
.y160_c01330{bottom:421.626667pt;}
.y15e_c01330{bottom:422.400000pt;}
.y15f_c01330{bottom:423.173333pt;}
.y163_c01330{bottom:423.933333pt;}
.y164_c01330{bottom:424.706667pt;}
.y15d_c01330{bottom:425.466667pt;}
.y162_c01330{bottom:427.013333pt;}
.y161_c01330{bottom:428.546667pt;}
.y153_c01330{bottom:435.453333pt;}
.y154_c01330{bottom:438.533333pt;}
.y159_c01330{bottom:439.293333pt;}
.y156_c01330{bottom:440.826667pt;}
.y15a_c01330{bottom:441.600000pt;}
.y155_c01330{bottom:442.373333pt;}
.y158_c01330{bottom:443.906667pt;}
.y15b_c01330{bottom:444.666667pt;}
.y157_c01330{bottom:445.440000pt;}
.y15c_c01330{bottom:446.213333pt;}
.y14c_c01330{bottom:457.733333pt;}
.y14e_c01330{bottom:458.493333pt;}
.y14f_c01330{bottom:459.266667pt;}
.y151_c01330{bottom:460.026667pt;}
.y150_c01330{bottom:460.800000pt;}
.y14b_c01330{bottom:461.573333pt;}
.y14a_c01330{bottom:462.333333pt;}
.y14d_c01330{bottom:463.106667pt;}
.y152_c01330{bottom:463.866667pt;}
.y142_c01330{bottom:475.386667pt;}
.y143_c01330{bottom:476.160000pt;}
.y149_c01330{bottom:476.933333pt;}
.y144_c01330{bottom:477.693333pt;}
.y148_c01330{bottom:478.466667pt;}
.y145_c01330{bottom:480.773333pt;}
.y146_c01330{bottom:481.533333pt;}
.y147_c01330{bottom:487.680000pt;}
.y13b_c01330{bottom:493.826667pt;}
.y140_c01330{bottom:494.586667pt;}
.y13f_c01330{bottom:495.360000pt;}
.y13c_c01330{bottom:496.893333pt;}
.y141_c01330{bottom:497.666667pt;}
.y13d_c01330{bottom:498.426667pt;}
.y13a_c01330{bottom:499.200000pt;}
.y13e_c01330{bottom:499.973333pt;}
.y131_c01330{bottom:511.493333pt;}
.y133_c01330{bottom:513.026667pt;}
.y134_c01330{bottom:513.786667pt;}
.y135_c01330{bottom:514.560000pt;}
.y136_c01330{bottom:515.333333pt;}
.y137_c01330{bottom:516.093333pt;}
.y132_c01330{bottom:517.626667pt;}
.y139_c01330{bottom:518.400000pt;}
.y138_c01330{bottom:519.173333pt;}
.y130_c01330{bottom:529.146667pt;}
.y129_c01330{bottom:529.920000pt;}
.y12c_c01330{bottom:530.693333pt;}
.y12e_c01330{bottom:531.453333pt;}
.y12d_c01330{bottom:532.226667pt;}
.y128_c01330{bottom:533.760000pt;}
.y12f_c01330{bottom:534.533333pt;}
.y12b_c01330{bottom:535.293333pt;}
.y12a_c01330{bottom:536.066667pt;}
.y123_c01330{bottom:546.813333pt;}
.y125_c01330{bottom:549.120000pt;}
.y127_c01330{bottom:549.893333pt;}
.y122_c01330{bottom:552.186667pt;}
.y124_c01330{bottom:553.733333pt;}
.y126_c01330{bottom:554.493333pt;}
.y11b_c01330{bottom:565.253333pt;}
.y11e_c01330{bottom:566.786667pt;}
.y11c_c01330{bottom:567.546667pt;}
.y11a_c01330{bottom:569.853333pt;}
.y11d_c01330{bottom:571.386667pt;}
.y120_c01330{bottom:572.160000pt;}
.y121_c01330{bottom:572.933333pt;}
.y1e5_c01330{bottom:576.000000pt;}
.y11f_c01330{bottom:576.773333pt;}
.y114_c01330{bottom:584.453333pt;}
.y115_c01330{bottom:588.293333pt;}
.y113_c01330{bottom:589.053333pt;}
.y117_c01330{bottom:591.360000pt;}
.y116_c01330{bottom:592.133333pt;}
.y118_c01330{bottom:594.426667pt;}
.y1e4_c01330{bottom:595.200000pt;}
.y112_c01330{bottom:599.040000pt;}
.y119_c01330{bottom:599.813333pt;}
.y10c_c01330{bottom:602.106667pt;}
.y10e_c01330{bottom:603.653333pt;}
.y111_c01330{bottom:605.946667pt;}
.y10d_c01330{bottom:606.720000pt;}
.y10f_c01330{bottom:607.493333pt;}
.y110_c01330{bottom:609.786667pt;}
.y105_c01330{bottom:619.773333pt;}
.y106_c01330{bottom:620.546667pt;}
.y10b_c01330{bottom:621.306667pt;}
.y107_c01330{bottom:623.613333pt;}
.y108_c01330{bottom:624.386667pt;}
.y1e3_c01330{bottom:625.146667pt;}
.y10a_c01330{bottom:625.920000pt;}
.y109_c01330{bottom:626.693333pt;}
.yfc_c01330{bottom:636.666667pt;}
.yfe_c01330{bottom:637.440000pt;}
.y100_c01330{bottom:638.213333pt;}
.yff_c01330{bottom:639.746667pt;}
.y103_c01330{bottom:640.506667pt;}
.y102_c01330{bottom:641.280000pt;}
.y101_c01330{bottom:642.053333pt;}
.yfd_c01330{bottom:642.813333pt;}
.y104_c01330{bottom:644.346667pt;}
.yf8_c01330{bottom:654.333333pt;}
.yfb_c01330{bottom:657.413333pt;}
.yfa_c01330{bottom:658.173333pt;}
.yf9_c01330{bottom:659.706667pt;}
.yf7_c01330{bottom:670.466667pt;}
.y1e2_c01330{bottom:671.226667pt;}
.yf2_c01330{bottom:674.306667pt;}
.yf4_c01330{bottom:676.613333pt;}
.yf1_c01330{bottom:678.146667pt;}
.yf0_c01330{bottom:678.906667pt;}
.yf3_c01330{bottom:679.680000pt;}
.yf5_c01330{bottom:681.213333pt;}
.yf6_c01330{bottom:683.520000pt;}
.yeb_c01330{bottom:693.506667pt;}
.yee_c01330{bottom:694.266667pt;}
.yed_c01330{bottom:695.040000pt;}
.ye7_c01330{bottom:697.346667pt;}
.ye8_c01330{bottom:698.106667pt;}
.yef_c01330{bottom:698.880000pt;}
.yea_c01330{bottom:701.186667pt;}
.ye9_c01330{bottom:701.946667pt;}
.yec_c01330{bottom:705.786667pt;}
.ye3_c01330{bottom:710.400000pt;}
.ye0_c01330{bottom:711.173333pt;}
.ye1_c01330{bottom:713.466667pt;}
.ye5_c01330{bottom:714.240000pt;}
.ye2_c01330{bottom:715.013333pt;}
.ye4_c01330{bottom:715.773333pt;}
.ye6_c01330{bottom:716.546667pt;}
.yd9_c01330{bottom:728.826667pt;}
.yde_c01330{bottom:729.600000pt;}
.yda_c01330{bottom:730.373333pt;}
.ydc_c01330{bottom:731.133333pt;}
.ydf_c01330{bottom:732.666667pt;}
.yd8_c01330{bottom:734.213333pt;}
.ydd_c01330{bottom:734.973333pt;}
.ydb_c01330{bottom:744.186667pt;}
.yd4_c01330{bottom:744.960000pt;}
.yd1_c01330{bottom:745.733333pt;}
.yd6_c01330{bottom:748.026667pt;}
.yd0_c01330{bottom:748.800000pt;}
.yd5_c01330{bottom:749.573333pt;}
.yd3_c01330{bottom:751.106667pt;}
.yd2_c01330{bottom:751.866667pt;}
.yd7_c01330{bottom:753.413333pt;}
.ycf_c01330{bottom:765.693333pt;}
.yca_c01330{bottom:766.466667pt;}
.yc9_c01330{bottom:768.773333pt;}
.yce_c01330{bottom:770.306667pt;}
.ycd_c01330{bottom:771.066667pt;}
.ycb_c01330{bottom:779.520000pt;}
.ycc_c01330{bottom:781.053333pt;}
.ybf_c01330{bottom:782.586667pt;}
.yc4_c01330{bottom:783.360000pt;}
.yc2_c01330{bottom:784.133333pt;}
.yc5_c01330{bottom:784.893333pt;}
.yc1_c01330{bottom:785.666667pt;}
.yc0_c01330{bottom:786.426667pt;}
.yc3_c01330{bottom:787.200000pt;}
.yc6_c01330{bottom:787.973333pt;}
.yc7_c01330{bottom:789.506667pt;}
.yc8_c01330{bottom:791.813333pt;}
.yba_c01330{bottom:801.786667pt;}
.ybe_c01330{bottom:802.560000pt;}
.yb9_c01330{bottom:803.333333pt;}
.ybb_c01330{bottom:804.093333pt;}
.ybd_c01330{bottom:806.400000pt;}
.ybc_c01330{bottom:807.173333pt;}
.yb2_c01330{bottom:818.693333pt;}
.yb4_c01330{bottom:820.226667pt;}
.yb8_c01330{bottom:820.986667pt;}
.yb5_c01330{bottom:821.760000pt;}
.yb3_c01330{bottom:823.293333pt;}
.yb7_c01330{bottom:824.826667pt;}
.yb6_c01330{bottom:825.600000pt;}
.yaa_c01330{bottom:837.120000pt;}
.ya8_c01330{bottom:837.893333pt;}
.yae_c01330{bottom:839.426667pt;}
.yaf_c01330{bottom:840.186667pt;}
.yab_c01330{bottom:841.733333pt;}
.yb1_c01330{bottom:842.493333pt;}
.yb0_c01330{bottom:843.266667pt;}
.yad_c01330{bottom:844.026667pt;}
.ya9_c01330{bottom:846.333333pt;}
.yac_c01330{bottom:853.253333pt;}
.ya5_c01330{bottom:856.320000pt;}
.ya3_c01330{bottom:857.093333pt;}
.y9f_c01330{bottom:857.853333pt;}
.ya1_c01330{bottom:858.626667pt;}
.ya0_c01330{bottom:859.386667pt;}
.ya2_c01330{bottom:860.160000pt;}
.ya6_c01330{bottom:860.933333pt;}
.ya7_c01330{bottom:861.693333pt;}
.ya4_c01330{bottom:870.146667pt;}
.y9c_c01330{bottom:876.293333pt;}
.y9d_c01330{bottom:878.586667pt;}
.y9e_c01330{bottom:879.360000pt;}
.y9b_c01330{bottom:886.266667pt;}
.y96_c01330{bottom:890.880000pt;}
.y95_c01330{bottom:893.186667pt;}
.y97_c01330{bottom:893.946667pt;}
.y99_c01330{bottom:895.493333pt;}
.y94_c01330{bottom:896.253333pt;}
.y9a_c01330{bottom:897.026667pt;}
.y98_c01330{bottom:905.466667pt;}
.y93_c01330{bottom:906.240000pt;}
.y8e_c01330{bottom:910.080000pt;}
.y91_c01330{bottom:911.613333pt;}
.y8d_c01330{bottom:913.146667pt;}
.y92_c01330{bottom:914.693333pt;}
.y90_c01330{bottom:915.453333pt;}
.y8f_c01330{bottom:922.373333pt;}
.y89_c01330{bottom:924.666667pt;}
.y8b_c01330{bottom:925.440000pt;}
.y85_c01330{bottom:926.973333pt;}
.y8c_c01330{bottom:927.746667pt;}
.y87_c01330{bottom:931.586667pt;}
.y86_c01330{bottom:932.346667pt;}
.y88_c01330{bottom:933.120000pt;}
.y8a_c01330{bottom:933.893333pt;}
.y7d_c01330{bottom:945.413333pt;}
.y80_c01330{bottom:946.173333pt;}
.y7c_c01330{bottom:946.946667pt;}
.y84_c01330{bottom:947.706667pt;}
.y7e_c01330{bottom:948.480000pt;}
.y83_c01330{bottom:950.013333pt;}
.y82_c01330{bottom:950.786667pt;}
.y81_c01330{bottom:951.546667pt;}
.y7f_c01330{bottom:953.093333pt;}
.y7b_c01330{bottom:961.533333pt;}
.y7a_c01330{bottom:962.306667pt;}
.y79_c01330{bottom:963.066667pt;}
.y1dd_c01330{bottom:966.146667pt;}
.y1de_c01330{bottom:968.453333pt;}
.y1dc_c01330{bottom:969.213333pt;}
.y74_c01330{bottom:980.733333pt;}
.y71_c01330{bottom:981.506667pt;}
.y76_c01330{bottom:982.266667pt;}
.y77_c01330{bottom:983.040000pt;}
.y72_c01330{bottom:986.880000pt;}
.y73_c01330{bottom:987.653333pt;}
.y78_c01330{bottom:988.413333pt;}
.y75_c01330{bottom:992.253333pt;}
.y6b_c01330{bottom:999.933333pt;}
.y6e_c01330{bottom:1000.706667pt;}
.y6f_c01330{bottom:1003.013333pt;}
.y6a_c01330{bottom:1004.546667pt;}
.y6c_c01330{bottom:1005.306667pt;}
.y6d_c01330{bottom:1006.080000pt;}
.y70_c01330{bottom:1016.066667pt;}
.y66_c01330{bottom:1017.600000pt;}
.y65_c01330{bottom:1019.906667pt;}
.y68_c01330{bottom:1020.666667pt;}
.y64_c01330{bottom:1022.213333pt;}
.y69_c01330{bottom:1022.973333pt;}
.y67_c01330{bottom:1023.746667pt;}
.y63_c01330{bottom:1029.893333pt;}
.y5d_c01330{bottom:1035.266667pt;}
.y5b_c01330{bottom:1036.026667pt;}
.y61_c01330{bottom:1036.800000pt;}
.y5e_c01330{bottom:1037.573333pt;}
.y5a_c01330{bottom:1039.866667pt;}
.y5c_c01330{bottom:1040.640000pt;}
.y5f_c01330{bottom:1041.413333pt;}
.y62_c01330{bottom:1042.946667pt;}
.y60_c01330{bottom:1044.480000pt;}
.y1e0_c01330{bottom:1047.546667pt;}
.y1e1_c01330{bottom:1048.320000pt;}
.y54_c01330{bottom:1053.693333pt;}
.y53_c01330{bottom:1054.466667pt;}
.y52_c01330{bottom:1055.226667pt;}
.y56_c01330{bottom:1056.000000pt;}
.y58_c01330{bottom:1056.773333pt;}
.y57_c01330{bottom:1057.533333pt;}
.y55_c01330{bottom:1059.840000pt;}
.y59_c01330{bottom:1060.613333pt;}
.y4d_c01330{bottom:1072.893333pt;}
.y50_c01330{bottom:1074.426667pt;}
.y51_c01330{bottom:1075.200000pt;}
.y4c_c01330{bottom:1075.973333pt;}
.y4f_c01330{bottom:1077.506667pt;}
.y4e_c01330{bottom:1078.266667pt;}
.y4a_c01330{bottom:1079.040000pt;}
.y4b_c01330{bottom:1079.813333pt;}
.y48_c01330{bottom:1083.653333pt;}
.y49_c01330{bottom:1085.946667pt;}
.y47_c01330{bottom:1086.720000pt;}
.y46_c01330{bottom:1087.493333pt;}
.y3c_c01330{bottom:1089.026667pt;}
.y40_c01330{bottom:1090.560000pt;}
.y3f_c01330{bottom:1091.333333pt;}
.y43_c01330{bottom:1092.093333pt;}
.y41_c01330{bottom:1092.866667pt;}
.y44_c01330{bottom:1093.626667pt;}
.y3e_c01330{bottom:1094.400000pt;}
.y3d_c01330{bottom:1095.173333pt;}
.y42_c01330{bottom:1095.933333pt;}
.y45_c01330{bottom:1101.306667pt;}
.y34_c01330{bottom:1107.453333pt;}
.y35_c01330{bottom:1108.226667pt;}
.y39_c01330{bottom:1108.986667pt;}
.y3b_c01330{bottom:1109.760000pt;}
.y36_c01330{bottom:1111.293333pt;}
.y33_c01330{bottom:1112.066667pt;}
.y32_c01330{bottom:1112.826667pt;}
.y38_c01330{bottom:1113.600000pt;}
.y37_c01330{bottom:1114.373333pt;}
.y3a_c01330{bottom:1115.133333pt;}
.y28_c01330{bottom:1125.893333pt;}
.y2d_c01330{bottom:1127.426667pt;}
.y2b_c01330{bottom:1128.186667pt;}
.y2e_c01330{bottom:1128.960000pt;}
.y29_c01330{bottom:1129.733333pt;}
.y2a_c01330{bottom:1131.266667pt;}
.y2c_c01330{bottom:1132.026667pt;}
.y2f_c01330{bottom:1132.800000pt;}
.y30_c01330{bottom:1133.573333pt;}
.y31_c01330{bottom:1136.640000pt;}
.y21_c01330{bottom:1144.320000pt;}
.y24_c01330{bottom:1145.093333pt;}
.y27_c01330{bottom:1145.853333pt;}
.y22_c01330{bottom:1147.386667pt;}
.y25_c01330{bottom:1148.160000pt;}
.y20_c01330{bottom:1148.933333pt;}
.y23_c01330{bottom:1149.693333pt;}
.y26_c01330{bottom:1150.466667pt;}
.y17_c01330{bottom:1161.986667pt;}
.y18_c01330{bottom:1162.746667pt;}
.y1b_c01330{bottom:1165.053333pt;}
.y16_c01330{bottom:1167.360000pt;}
.y1c_c01330{bottom:1168.133333pt;}
.y1d_c01330{bottom:1168.893333pt;}
.y1e_c01330{bottom:1169.666667pt;}
.y19_c01330{bottom:1170.426667pt;}
.y1f_c01330{bottom:1171.200000pt;}
.y1a_c01330{bottom:1178.880000pt;}
.y11_c01330{bottom:1180.413333pt;}
.y13_c01330{bottom:1181.946667pt;}
.y15_c01330{bottom:1183.493333pt;}
.yf_c01330{bottom:1184.253333pt;}
.y10_c01330{bottom:1185.026667pt;}
.y12_c01330{bottom:1185.786667pt;}
.y14_c01330{bottom:1186.560000pt;}
.y9_c01330{bottom:1199.613333pt;}
.yd_c01330{bottom:1200.386667pt;}
.y7_c01330{bottom:1201.146667pt;}
.y6_c01330{bottom:1202.693333pt;}
.y8_c01330{bottom:1203.453333pt;}
.ya_c01330{bottom:1204.986667pt;}
.yc_c01330{bottom:1205.760000pt;}
.y1df_c01330{bottom:1206.533333pt;}
.yb_c01330{bottom:1207.293333pt;}
.y1d8_c01330{bottom:1208.066667pt;}
.ye_c01330{bottom:1214.973333pt;}
.y3_c01330{bottom:1218.053333pt;}
.y5_c01330{bottom:1225.733333pt;}
.y4_c01330{bottom:1226.493333pt;}
.y1db_c01330{bottom:1231.866667pt;}
.y1da_c01330{bottom:1246.466667pt;}
.y1_c01330{bottom:1248.000000pt;}
.y2_c01330{bottom:1249.533333pt;}
.y1d9_c01330{bottom:1257.213333pt;}
.h1c_c01330{height:2.764500pt;}
.h1d_c01330{height:4.799479pt;}
.h16_c01330{height:5.519401pt;}
.h4_c01330{height:8.303099pt;}
.h17_c01330{height:11.038802pt;}
.h22_c01330{height:11.343099pt;}
.h14_c01330{height:13.822500pt;}
.h2_c01330{height:16.606198pt;}
.h1b_c01330{height:19.341901pt;}
.h13_c01330{height:22.125599pt;}
.h10_c01330{height:24.861302pt;}
.h3_c01330{height:27.645000pt;}
.h12_c01330{height:30.428698pt;}
.h1e_c01330{height:33.164401pt;}
.hd_c01330{height:35.948099pt;}
.h19_c01330{height:38.683802pt;}
.hb_c01330{height:41.467500pt;}
.h9_c01330{height:44.251198pt;}
.h21_c01330{height:44.560833pt;}
.ha_c01330{height:46.986901pt;}
.h18_c01330{height:49.770599pt;}
.hf_c01330{height:52.506302pt;}
.h11_c01330{height:55.290000pt;}
.h15_c01330{height:58.073698pt;}
.hc_c01330{height:60.809401pt;}
.he_c01330{height:63.593099pt;}
.h1a_c01330{height:66.328802pt;}
.h5_c01330{height:69.112500pt;}
.h6_c01330{height:71.896198pt;}
.h20_c01330{height:74.631901pt;}
.h7_c01330{height:77.415599pt;}
.h1f_c01330{height:80.151302pt;}
.h8_c01330{height:110.580000pt;}
.h1_c01330{height:1345.333333pt;}
.h0_c01330{height:1345.533333pt;}
.w0_c01330{width:963.066667pt;}
.w1_c01330{width:963.333333pt;}
.x0_c01330{left:0.000000pt;}
.xea_c01330{left:70.653333pt;}
.x10c_c01330{left:127.493333pt;}
.xe2_c01330{left:176.640000pt;}
.xcf_c01330{left:178.173333pt;}
.xdd_c01330{left:185.853333pt;}
.xe6_c01330{left:192.773333pt;}
.xf1_c01330{left:194.306667pt;}
.x74_c01330{left:196.613333pt;}
.xca_c01330{left:198.906667pt;}
.xfa_c01330{left:201.213333pt;}
.x4_c01330{left:202.746667pt;}
.x8_c01330{left:205.053333pt;}
.x17_c01330{left:206.586667pt;}
.x97_c01330{left:210.426667pt;}
.x66_c01330{left:211.973333pt;}
.xa2_c01330{left:215.040000pt;}
.xff_c01330{left:218.106667pt;}
.x82_c01330{left:220.413333pt;}
.x8d_c01330{left:222.720000pt;}
.x67_c01330{left:225.026667pt;}
.x4c_c01330{left:226.560000pt;}
.x6e_c01330{left:229.626667pt;}
.x23_c01330{left:231.173333pt;}
.x2e_c01330{left:232.706667pt;}
.x9c_c01330{left:237.306667pt;}
.x6f_c01330{left:238.853333pt;}
.x78_c01330{left:241.920000pt;}
.xd2_c01330{left:244.986667pt;}
.x9_c01330{left:246.533333pt;}
.x85_c01330{left:251.133333pt;}
.xc7_c01330{left:253.440000pt;}
.xaf_c01330{left:254.973333pt;}
.x42_c01330{left:256.506667pt;}
.x5_c01330{left:258.053333pt;}
.x98_c01330{left:259.586667pt;}
.x7f_c01330{left:264.186667pt;}
.x18_c01330{left:266.493333pt;}
.xf4_c01330{left:271.106667pt;}
.x36_c01330{left:272.640000pt;}
.xa_c01330{left:274.173333pt;}
.xc0_c01330{left:280.320000pt;}
.xac_c01330{left:281.853333pt;}
.x1_c01330{left:283.386667pt;}
.xd3_c01330{left:284.933333pt;}
.x2f_c01330{left:287.226667pt;}
.xba_c01330{left:288.773333pt;}
.x8e_c01330{left:290.306667pt;}
.xf2_c01330{left:294.146667pt;}
.xfb_c01330{left:295.680000pt;}
.x19_c01330{left:297.213333pt;}
.x43_c01330{left:298.746667pt;}
.x86_c01330{left:300.293333pt;}
.x109_c01330{left:301.826667pt;}
.x99_c01330{left:303.360000pt;}
.x24_c01330{left:306.426667pt;}
.x83_c01330{left:308.733333pt;}
.x4d_c01330{left:310.266667pt;}
.x1a_c01330{left:311.813333pt;}
.x75_c01330{left:313.346667pt;}
.xb_c01330{left:314.880000pt;}
.xa9_c01330{left:317.946667pt;}
.x108_c01330{left:319.493333pt;}
.x80_c01330{left:322.560000pt;}
.xde_c01330{left:324.093333pt;}
.x87_c01330{left:326.400000pt;}
.xcb_c01330{left:327.933333pt;}
.xb4_c01330{left:331.013333pt;}
.x1b_c01330{left:333.306667pt;}
.x37_c01330{left:335.613333pt;}
.x68_c01330{left:337.146667pt;}
.x79_c01330{left:339.453333pt;}
.xee_c01330{left:340.986667pt;}
.x1c_c01330{left:343.293333pt;}
.xd4_c01330{left:348.666667pt;}
.xc1_c01330{left:352.506667pt;}
.x88_c01330{left:354.053333pt;}
.x93_c01330{left:355.586667pt;}
.xfc_c01330{left:357.120000pt;}
.x6_c01330{left:360.186667pt;}
.x30_c01330{left:361.733333pt;}
.xbd_c01330{left:363.266667pt;}
.x25_c01330{left:365.573333pt;}
.x76_c01330{left:368.640000pt;}
.xfd_c01330{left:370.173333pt;}
.xe7_c01330{left:372.480000pt;}
.x4e_c01330{left:374.013333pt;}
.x2_c01330{left:377.093333pt;}
.xa3_c01330{left:378.626667pt;}
.xcc_c01330{left:380.160000pt;}
.x31_c01330{left:381.693333pt;}
.x7a_c01330{left:384.000000pt;}
.x104_c01330{left:385.533333pt;}
.xb5_c01330{left:387.840000pt;}
.xeb_c01330{left:390.906667pt;}
.xad_c01330{left:392.453333pt;}
.x89_c01330{left:394.746667pt;}
.x26_c01330{left:397.053333pt;}
.x44_c01330{left:398.586667pt;}
.x32_c01330{left:400.893333pt;}
.x1d_c01330{left:402.426667pt;}
.x105_c01330{left:403.973333pt;}
.xc_c01330{left:407.040000pt;}
.xb0_c01330{left:408.573333pt;}
.x77_c01330{left:413.186667pt;}
.x101_c01330{left:415.493333pt;}
.x38_c01330{left:418.560000pt;}
.xc8_c01330{left:420.866667pt;}
.xe4_c01330{left:423.933333pt;}
.xe3_c01330{left:425.466667pt;}
.xa4_c01330{left:427.013333pt;}
.x45_c01330{left:428.546667pt;}
.x4f_c01330{left:430.853333pt;}
.x106_c01330{left:432.386667pt;}
.x9a_c01330{left:433.920000pt;}
.xae_c01330{left:436.986667pt;}
.x3_c01330{left:440.066667pt;}
.x70_c01330{left:441.600000pt;}
.x8f_c01330{left:443.133333pt;}
.x9b_c01330{left:444.666667pt;}
.xec_c01330{left:447.746667pt;}
.xb6_c01330{left:449.280000pt;}
.x69_c01330{left:450.813333pt;}
.x50_c01330{left:452.346667pt;}
.xd_c01330{left:453.893333pt;}
.xc5_c01330{left:455.426667pt;}
.x39_c01330{left:457.733333pt;}
.xef_c01330{left:460.026667pt;}
.xc2_c01330{left:462.333333pt;}
.x100_c01330{left:465.413333pt;}
.xe_c01330{left:467.706667pt;}
.x71_c01330{left:469.253333pt;}
.x7_c01330{left:471.546667pt;}
.x27_c01330{left:474.626667pt;}
.x10a_c01330{left:477.693333pt;}
.xf_c01330{left:479.226667pt;}
.x72_c01330{left:481.533333pt;}
.x90_c01330{left:484.613333pt;}
.xbe_c01330{left:486.906667pt;}
.xd0_c01330{left:488.453333pt;}
.xc6_c01330{left:490.746667pt;}
.xfe_c01330{left:492.293333pt;}
.xe8_c01330{left:493.826667pt;}
.x10_c01330{left:495.360000pt;}
.x3a_c01330{left:496.893333pt;}
.x6a_c01330{left:498.426667pt;}
.x94_c01330{left:499.973333pt;}
.xf8_c01330{left:502.266667pt;}
.xf5_c01330{left:506.106667pt;}
.x59_c01330{left:509.186667pt;}
.x7b_c01330{left:512.253333pt;}
.xf9_c01330{left:514.560000pt;}
.x9d_c01330{left:516.093333pt;}
.xd1_c01330{left:518.400000pt;}
.xed_c01330{left:520.706667pt;}
.x28_c01330{left:525.306667pt;}
.xdf_c01330{left:529.146667pt;}
.x8a_c01330{left:530.693333pt;}
.x46_c01330{left:535.293333pt;}
.x3b_c01330{left:536.826667pt;}
.xe5_c01330{left:541.440000pt;}
.x1e_c01330{left:544.506667pt;}
.x61_c01330{left:546.053333pt;}
.xf0_c01330{left:547.586667pt;}
.x5a_c01330{left:549.120000pt;}
.x11_c01330{left:551.426667pt;}
.xc3_c01330{left:552.960000pt;}
.x1f_c01330{left:554.493333pt;}
.xb1_c01330{left:556.026667pt;}
.xa5_c01330{left:557.573333pt;}
.x107_c01330{left:559.106667pt;}
.x33_c01330{left:560.640000pt;}
.x6b_c01330{left:562.946667pt;}
.x5b_c01330{left:564.480000pt;}
.x91_c01330{left:568.320000pt;}
.x10d_c01330{left:569.853333pt;}
.x84_c01330{left:572.160000pt;}
.x51_c01330{left:574.466667pt;}
.xc9_c01330{left:576.000000pt;}
.xd6_c01330{left:579.066667pt;}
.x62_c01330{left:581.373333pt;}
.x5c_c01330{left:583.680000pt;}
.x52_c01330{left:586.746667pt;}
.x3c_c01330{left:589.053333pt;}
.xb2_c01330{left:591.360000pt;}
.xa6_c01330{left:594.426667pt;}
.x29_c01330{left:596.733333pt;}
.xd9_c01330{left:598.266667pt;}
.x9e_c01330{left:599.813333pt;}
.xc4_c01330{left:601.346667pt;}
.x47_c01330{left:602.880000pt;}
.xcd_c01330{left:604.413333pt;}
.xaa_c01330{left:605.946667pt;}
.x34_c01330{left:609.786667pt;}
.x73_c01330{left:612.093333pt;}
.x92_c01330{left:613.626667pt;}
.x3d_c01330{left:615.933333pt;}
.x2a_c01330{left:618.240000pt;}
.x53_c01330{left:620.546667pt;}
.xa7_c01330{left:622.080000pt;}
.x95_c01330{left:625.920000pt;}
.xd7_c01330{left:627.453333pt;}
.xdc_c01330{left:628.986667pt;}
.x48_c01330{left:630.533333pt;}
.x7c_c01330{left:632.826667pt;}
.x54_c01330{left:634.373333pt;}
.x12_c01330{left:635.906667pt;}
.x20_c01330{left:638.213333pt;}
.x10b_c01330{left:639.746667pt;}
.xf6_c01330{left:641.280000pt;}
.x49_c01330{left:642.813333pt;}
.x63_c01330{left:645.120000pt;}
.x5d_c01330{left:646.653333pt;}
.x103_c01330{left:649.733333pt;}
.x35_c01330{left:652.800000pt;}
.x9f_c01330{left:654.333333pt;}
.xbf_c01330{left:655.866667pt;}
.xbb_c01330{left:658.946667pt;}
.xb7_c01330{left:660.480000pt;}
.x2b_c01330{left:662.786667pt;}
.xf7_c01330{left:665.853333pt;}
.x3e_c01330{left:667.386667pt;}
.x96_c01330{left:668.933333pt;}
.x8b_c01330{left:671.226667pt;}
.x81_c01330{left:674.306667pt;}
.x55_c01330{left:676.613333pt;}
.x13_c01330{left:678.146667pt;}
.x21_c01330{left:680.453333pt;}
.xe0_c01330{left:681.986667pt;}
.xa0_c01330{left:683.520000pt;}
.x5e_c01330{left:685.053333pt;}
.x14_c01330{left:686.586667pt;}
.x22_c01330{left:689.666667pt;}
.x7d_c01330{left:691.200000pt;}
.x15_c01330{left:692.733333pt;}
.x6c_c01330{left:695.040000pt;}
.x3f_c01330{left:697.346667pt;}
.xd5_c01330{left:699.653333pt;}
.xd8_c01330{left:702.720000pt;}
.xdb_c01330{left:705.786667pt;}
.x64_c01330{left:710.400000pt;}
.x16_c01330{left:712.706667pt;}
.xbc_c01330{left:714.240000pt;}
.xb8_c01330{left:716.546667pt;}
.x40_c01330{left:718.080000pt;}
.x56_c01330{left:719.613333pt;}
.x8c_c01330{left:721.920000pt;}
.x4a_c01330{left:726.533333pt;}
.x57_c01330{left:730.373333pt;}
.x2c_c01330{left:731.906667pt;}
.x5f_c01330{left:735.746667pt;}
.xb3_c01330{left:737.280000pt;}
.xe9_c01330{left:739.586667pt;}
.xda_c01330{left:741.120000pt;}
.x65_c01330{left:742.653333pt;}
.xce_c01330{left:744.960000pt;}
.xab_c01330{left:748.026667pt;}
.x60_c01330{left:751.866667pt;}
.xa8_c01330{left:753.413333pt;}
.x2d_c01330{left:756.480000pt;}
.x41_c01330{left:758.013333pt;}
.xe1_c01330{left:761.853333pt;}
.xb9_c01330{left:764.160000pt;}
.x4b_c01330{left:768.000000pt;}
.xf3_c01330{left:769.533333pt;}
.x58_c01330{left:772.613333pt;}
.x6d_c01330{left:774.906667pt;}
.xa1_c01330{left:776.453333pt;}
.x7e_c01330{left:777.986667pt;}
.x102_c01330{left:789.506667pt;}
.x118_c01330{left:803.333333pt;}
.x112_c01330{left:810.240000pt;}
.x113_c01330{left:818.693333pt;}
.x116_c01330{left:824.826667pt;}
.x10e_c01330{left:837.120000pt;}
.x119_c01330{left:861.693333pt;}
.x114_c01330{left:890.880000pt;}
.x115_c01330{left:903.933333pt;}
.x10f_c01330{left:923.906667pt;}
.x110_c01330{left:930.813333pt;}
.x111_c01330{left:939.266667pt;}
.x11a_c01330{left:945.413333pt;}
.x117_c01330{left:948.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_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_539970d782989c048993c83c.woff2')format("woff");}.ff1_c01331{font-family:ff1_c01331;line-height:1.109863;font-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_c01331{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1d7_c01331{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);}
.m156_c01331{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m18c_c01331{transform:matrix(0.075500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075500,0.000000,0.000000,0.250000,0,0);}
.m19d_c01331{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m104_c01331{transform:matrix(0.088500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088500,0.000000,0.000000,0.250000,0,0);}
.m12f_c01331{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.mef_c01331{transform:matrix(0.092350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092350,0.000000,0.000000,0.250000,0,0);}
.m131_c01331{transform:matrix(0.098675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098675,0.000000,0.000000,0.250000,0,0);}
.m106_c01331{transform:matrix(0.100250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100250,0.000000,0.000000,0.250000,0,0);}
.m181_c01331{transform:matrix(0.102725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102725,0.000000,0.000000,0.250000,0,0);}
.m107_c01331{transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);}
.m87_c01331{transform:matrix(0.106325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106325,0.000000,0.000000,0.250000,0,0);}
.m196_c01331{transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);}
.mf_c01331{transform:matrix(0.112875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112875,0.000000,0.000000,0.250000,0,0);}
.m108_c01331{transform:matrix(0.114825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114825,0.000000,0.000000,0.250000,0,0);}
.m17d_c01331{transform:matrix(0.115650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115650,0.000000,0.000000,0.250000,0,0);}
.ma0_c01331{transform:matrix(0.117225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117225,0.000000,0.000000,0.250000,0,0);}
.mf9_c01331{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);}
.m73_c01331{transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117925,0.000000,0.000000,0.250000,0,0);}
.m109_c01331{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.m2e_c01331{transform:matrix(0.119525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119525,0.000000,0.000000,0.250000,0,0);}
.m11f_c01331{transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119675,0.000000,0.000000,0.250000,0,0);}
.m198_c01331{transform:matrix(0.121775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121775,0.000000,0.000000,0.250000,0,0);}
.m62_c01331{transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122275,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01331{transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);}
.mdb_c01331{transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124275,0.000000,0.000000,0.250000,0,0);}
.m95_c01331{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m174_c01331{transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125275,0.000000,0.000000,0.250000,0,0);}
.m96_c01331{transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127100,0.000000,0.000000,0.250000,0,0);}
.m97_c01331{transform:matrix(0.127175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127175,0.000000,0.000000,0.250000,0,0);}
.m1d6_c01331{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01331{transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);}
.m12d_c01331{transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133325,0.000000,0.000000,0.250000,0,0);}
.maa_c01331{transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134375,0.000000,0.000000,0.250000,0,0);}
.m187_c01331{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);}
.m12b_c01331{transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136275,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01331{transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136450,0.000000,0.000000,0.250000,0,0);}
.m10e_c01331{transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136775,0.000000,0.000000,0.250000,0,0);}
.m17f_c01331{transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137050,0.000000,0.000000,0.250000,0,0);}
.m10a_c01331{transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138975,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01331{transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139425,0.000000,0.000000,0.250000,0,0);}
.m17a_c01331{transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140200,0.000000,0.000000,0.250000,0,0);}
.m10d_c01331{transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140450,0.000000,0.000000,0.250000,0,0);}
.m1cc_c01331{transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141950,0.000000,0.000000,0.250000,0,0);}
.m89_c01331{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m30_c01331{transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);}
.m105_c01331{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m2_c01331{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01331{transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145425,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01331{transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);}
.m11e_c01331{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.m111_c01331{transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);}
.m2b_c01331{transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146650,0.000000,0.000000,0.250000,0,0);}
.md8_c01331{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);}
.m195_c01331{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);}
.m2c_c01331{transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);}
.mc_c01331{transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01331{transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);}
.m7b_c01331{transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);}
.md3_c01331{transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);}
.md6_c01331{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);}
.md4_c01331{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.mb_c01331{transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);}
.m18e_c01331{transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);}
.m1cb_c01331{transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151650,0.000000,0.000000,0.250000,0,0);}
.m65_c01331{transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151775,0.000000,0.000000,0.250000,0,0);}
.m17e_c01331{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);}
.mf8_c01331{transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153275,0.000000,0.000000,0.250000,0,0);}
.m32_c01331{transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153375,0.000000,0.000000,0.250000,0,0);}
.m98_c01331{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m70_c01331{transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);}
.m133_c01331{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);}
.m17b_c01331{transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154825,0.000000,0.000000,0.250000,0,0);}
.mf6_c01331{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.m2d_c01331{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);}
.m1be_c01331{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);}
.mda_c01331{transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);}
.m8_c01331{transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158450,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01331{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);}
.m13a_c01331{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m93_c01331{transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);}
.m94_c01331{transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);}
.m130_c01331{transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161725,0.000000,0.000000,0.250000,0,0);}
.m1ce_c01331{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);}
.m1a9_c01331{transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163000,0.000000,0.000000,0.250000,0,0);}
.mae_c01331{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);}
.m10c_c01331{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);}
.m153_c01331{transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163650,0.000000,0.000000,0.250000,0,0);}
.m42_c01331{transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);}
.m188_c01331{transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164725,0.000000,0.000000,0.250000,0,0);}
.m167_c01331{transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165200,0.000000,0.000000,0.250000,0,0);}
.m151_c01331{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.me9_c01331{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.mf7_c01331{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m134_c01331{transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166075,0.000000,0.000000,0.250000,0,0);}
.m12e_c01331{transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166300,0.000000,0.000000,0.250000,0,0);}
.m2f_c01331{transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166625,0.000000,0.000000,0.250000,0,0);}
.m189_c01331{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.md1_c01331{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m127_c01331{transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167175,0.000000,0.000000,0.250000,0,0);}
.m19a_c01331{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);}
.m63_c01331{transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);}
.mfe_c01331{transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);}
.m118_c01331{transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169150,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01331{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);}
.m116_c01331{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.m163_c01331{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);}
.m10b_c01331{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m140_c01331{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.mcd_c01331{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.m14c_c01331{transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170775,0.000000,0.000000,0.250000,0,0);}
.m132_c01331{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.mbd_c01331{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);}
.mbf_c01331{transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171450,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01331{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.m74_c01331{transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171675,0.000000,0.000000,0.250000,0,0);}
.m47_c01331{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.mfc_c01331{transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171775,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01331{transform:matrix(0.172200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172200,0.000000,0.000000,0.250000,0,0);}
.m180_c01331{transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);}
.m6c_c01331{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m16f_c01331{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m186_c01331{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);}
.m194_c01331{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m12a_c01331{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m176_c01331{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);}
.m197_c01331{transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173850,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01331{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);}
.m72_c01331{transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01331{transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174700,0.000000,0.000000,0.250000,0,0);}
.md0_c01331{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.m199_c01331{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m128_c01331{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m4f_c01331{transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176200,0.000000,0.000000,0.250000,0,0);}
.m190_c01331{transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);}
.m75_c01331{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.ma1_c01331{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m184_c01331{transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177675,0.000000,0.000000,0.250000,0,0);}
.m36_c01331{transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178175,0.000000,0.000000,0.250000,0,0);}
.m18_c01331{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m155_c01331{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m7e_c01331{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01331{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m5d_c01331{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);}
.mfa_c01331{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m85_c01331{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);}
.m76_c01331{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m14b_c01331{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);}
.m1ab_c01331{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.m43_c01331{transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);}
.m8d_c01331{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m119_c01331{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m117_c01331{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);}
.m182_c01331{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);}
.m50_c01331{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);}
.m102_c01331{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);}
.mb4_c01331{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.mac_c01331{transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188150,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01331{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.me4_c01331{transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188375,0.000000,0.000000,0.250000,0,0);}
.m15_c01331{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);}
.m129_c01331{transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188925,0.000000,0.000000,0.250000,0,0);}
.m3b_c01331{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);}
.m37_c01331{transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189225,0.000000,0.000000,0.250000,0,0);}
.m169_c01331{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);}
.m8e_c01331{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.md2_c01331{transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189500,0.000000,0.000000,0.250000,0,0);}
.m175_c01331{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);}
.m14e_c01331{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);}
.m9c_c01331{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.me1_c01331{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.mc5_c01331{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.mf0_c01331{transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);}
.m6d_c01331{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);}
.m90_c01331{transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192025,0.000000,0.000000,0.250000,0,0);}
.m11c_c01331{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.mfd_c01331{transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);}
.m5f_c01331{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m1cd_c01331{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01331{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.mc0_c01331{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.m9f_c01331{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.mf5_c01331{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.mee_c01331{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m45_c01331{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);}
.m1b3_c01331{transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195050,0.000000,0.000000,0.250000,0,0);}
.ma_c01331{transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);}
.m170_c01331{transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195850,0.000000,0.000000,0.250000,0,0);}
.m143_c01331{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);}
.m1a5_c01331{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);}
.m1c3_c01331{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);}
.m1b5_c01331{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);}
.mc9_c01331{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.mf1_c01331{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m78_c01331{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);}
.m18b_c01331{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);}
.m168_c01331{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m17_c01331{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);}
.m1b7_c01331{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m16e_c01331{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);}
.mad_c01331{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m15c_c01331{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);}
.ma2_c01331{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.mb5_c01331{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.m4e_c01331{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m22_c01331{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);}
.m5b_c01331{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.mdf_c01331{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);}
.m8a_c01331{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m5a_c01331{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.m113_c01331{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);}
.m162_c01331{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.mb6_c01331{transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);}
.m160_c01331{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m8c_c01331{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);}
.m1c9_c01331{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);}
.ma9_c01331{transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);}
.mb0_c01331{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);}
.m12c_c01331{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);}
.m1cf_c01331{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);}
.m1b0_c01331{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);}
.me3_c01331{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01331{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);}
.md5_c01331{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.m15d_c01331{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);}
.m6a_c01331{transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208025,0.000000,0.000000,0.250000,0,0);}
.md9_c01331{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mce_c01331{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);}
.m51_c01331{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);}
.m17c_c01331{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);}
.m1b9_c01331{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);}
.m144_c01331{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);}
.m1af_c01331{transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211225,0.000000,0.000000,0.250000,0,0);}
.m171_c01331{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.mf2_c01331{transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);}
.m103_c01331{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m166_c01331{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);}
.m154_c01331{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.mcf_c01331{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);}
.m152_c01331{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m16c_c01331{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);}
.m191_c01331{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01331{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);}
.me0_c01331{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);}
.mcb_c01331{transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);}
.mec_c01331{transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215325,0.000000,0.000000,0.250000,0,0);}
.m125_c01331{transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);}
.m7c_c01331{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.me2_c01331{transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);}
.ma3_c01331{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);}
.m7d_c01331{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);}
.m120_c01331{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.m7f_c01331{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);}
.m18d_c01331{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);}
.m80_c01331{transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);}
.m23_c01331{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);}
.m88_c01331{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);}
.m14a_c01331{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.m15f_c01331{transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);}
.m183_c01331{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m11b_c01331{transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);}
.m13c_c01331{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m124_c01331{transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221975,0.000000,0.000000,0.250000,0,0);}
.mde_c01331{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);}
.md7_c01331{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.ma5_c01331{transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222675,0.000000,0.000000,0.250000,0,0);}
.mdd_c01331{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.m164_c01331{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);}
.m1ba_c01331{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.m9a_c01331{transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);}
.m15a_c01331{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.m9_c01331{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m150_c01331{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);}
.m16a_c01331{transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224700,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01331{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);}
.m145_c01331{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m49_c01331{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m69_c01331{transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225075,0.000000,0.000000,0.250000,0,0);}
.m137_c01331{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);}
.m1b6_c01331{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);}
.ma6_c01331{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);}
.m147_c01331{transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);}
.m13f_c01331{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);}
.m14f_c01331{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);}
.m53_c01331{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);}
.m1c8_c01331{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.m66_c01331{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m15b_c01331{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);}
.mc1_c01331{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);}
.me8_c01331{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);}
.mf3_c01331{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m5c_c01331{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.m173_c01331{transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228000,0.000000,0.000000,0.250000,0,0);}
.m60_c01331{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m3e_c01331{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);}
.m9d_c01331{transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228775,0.000000,0.000000,0.250000,0,0);}
.m178_c01331{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);}
.mca_c01331{transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229275,0.000000,0.000000,0.250000,0,0);}
.m139_c01331{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);}
.m1b8_c01331{transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);}
.m79_c01331{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);}
.m99_c01331{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);}
.m123_c01331{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);}
.mf4_c01331{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);}
.m11_c01331{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01331{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);}
.m158_c01331{transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);}
.m52_c01331{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);}
.mab_c01331{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);}
.mcc_c01331{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);}
.m192_c01331{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);}
.m179_c01331{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);}
.m64_c01331{transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);}
.m41_c01331{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m13d_c01331{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);}
.m121_c01331{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01331{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);}
.m56_c01331{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m81_c01331{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);}
.mb9_c01331{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01331{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);}
.m115_c01331{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.med_c01331{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);}
.m193_c01331{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);}
.m13e_c01331{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);}
.m1ca_c01331{transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);}
.m1d0_c01331{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);}
.m16b_c01331{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);}
.m3d_c01331{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.m8b_c01331{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);}
.m149_c01331{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m9b_c01331{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m112_c01331{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m1d4_c01331{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);}
.m86_c01331{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);}
.m1ae_c01331{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.m157_c01331{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);}
.m11a_c01331{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.m18f_c01331{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);}
.m10f_c01331{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);}
.m177_c01331{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);}
.mdc_c01331{transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241475,0.000000,0.000000,0.250000,0,0);}
.mbe_c01331{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m77_c01331{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);}
.m165_c01331{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);}
.m4d_c01331{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m172_c01331{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);}
.m1b_c01331{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);}
.mea_c01331{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);}
.me5_c01331{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);}
.mb7_c01331{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);}
.m1c2_c01331{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);}
.m38_c01331{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);}
.m26_c01331{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);}
.mff_c01331{transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245275,0.000000,0.000000,0.250000,0,0);}
.m10_c01331{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.mc8_c01331{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);}
.m146_c01331{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m18a_c01331{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);}
.m159_c01331{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc3_c01331{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);}
.m9e_c01331{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);}
.mc6_c01331{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);}
.m101_c01331{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.ma4_c01331{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);}
.m100_c01331{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m44_c01331{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);}
.m1d_c01331{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m34_c01331{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);}
.m29_c01331{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);}
.m2a_c01331{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);}
.m67_c01331{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);}
.m13_c01331{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.ma7_c01331{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m35_c01331{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mbc_c01331{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);}
.m114_c01331{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01331{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);}
.m6_c01331{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);}
.m3c_c01331{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m68_c01331{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);}
.m48_c01331{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb8_c01331{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01331{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);}
.m71_c01331{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m59_c01331{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);}
.m5_c01331{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);}
.m24_c01331{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m25_c01331{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m11d_c01331{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);}
.m4c_c01331{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m122_c01331{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01331{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);}
.m57_c01331{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md_c01331{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c01331{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01331{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m58_c01331{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m55_c01331{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01331{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01331{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m14_c01331{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);}
.m1f_c01331{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m39_c01331{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m16_c01331{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1_c01331{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01331{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);}
.m19_c01331{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.meb_c01331{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c01331{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);}
.m14d_c01331{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m142_c01331{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01331{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.ma8_c01331{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mfb_c01331{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.mc7_c01331{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);}
.mc2_c01331{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01331{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01331{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m126_c01331{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);}
.m148_c01331{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m16d_c01331{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc4_c01331{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m61_c01331{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m4_c01331{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01331{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m21_c01331{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);}
.m83_c01331{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);}
.m161_c01331{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);}
.me6_c01331{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m15e_c01331{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);}
.m82_c01331{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m31_c01331{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m0_c01331{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c01331{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m138_c01331{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mba_c01331{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);}
.m8f_c01331{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1d3_c01331{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m13b_c01331{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.maf_c01331{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m84_c01331{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mbb_c01331{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m141_c01331{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01331{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01331{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);}
.m110_c01331{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);}
.m1ac_c01331{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m27_c01331{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m33_c01331{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1d5_c01331{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01331{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m92_c01331{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);}
.me7_c01331{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01331{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m135_c01331{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.mb3_c01331{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m40_c01331{transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.685000,0.000000,0.000000,0.250000,0,0);}
.m54_c01331{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m20_c01331{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m46_c01331{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m19c_c01331{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);}
.m136_c01331{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m19b_c01331{transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);}
.m91_c01331{transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);}
.m19e_c01331{transform:matrix(0.970000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.970000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.970000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01331{transform:matrix(1.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.040000,0.000000,0.000000,0.250000,0,0);}
.m19f_c01331{transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.307500,0.000000,0.000000,0.250000,0,0);}
.m1d2_c01331{transform:matrix(4.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.840000,0.000000,0.000000,0.250000,0,0);}
.m185_c01331{transform:matrix(9.417500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.417500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.417500,0.000000,0.000000,0.250000,0,0);}
.m1d1_c01331{transform:matrix(12.022500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(12.022500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(12.022500,0.000000,0.000000,0.250000,0,0);}
.v2_c01331{vertical-align:-3.420000px;}
.v0_c01331{vertical-align:0.000000px;}
.v1_c01331{vertical-align:17.280000px;}
.ls1_c01331{letter-spacing:0.000000px;}
.ls0_c01331{letter-spacing:20.727318px;}
.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:-4.281000px;}
.ws1_c01331{word-spacing:0.000000px;}
.fc0_c01331{color:transparent;}
.fs3_c01331{font-size:3.456000px;}
.fs16_c01331{font-size:6.000000px;}
.fs0_c01331{font-size:6.900000px;}
.fs2_c01331{font-size:10.380000px;}
.fs1e_c01331{font-size:13.800000px;}
.fs1a_c01331{font-size:17.280000px;}
.fs14_c01331{font-size:20.760000px;}
.fs12_c01331{font-size:24.180000px;}
.fs1d_c01331{font-size:27.660000px;}
.fs15_c01331{font-size:31.080000px;}
.fs13_c01331{font-size:34.560000px;}
.fse_c01331{font-size:38.040000px;}
.fs1c_c01331{font-size:41.460000px;}
.fs1b_c01331{font-size:44.940000px;}
.fsc_c01331{font-size:48.360000px;}
.fs11_c01331{font-size:51.840000px;}
.fsb_c01331{font-size:55.320000px;}
.fsf_c01331{font-size:58.740000px;}
.fs10_c01331{font-size:62.220000px;}
.fs4_c01331{font-size:65.640000px;}
.fs5_c01331{font-size:69.120000px;}
.fs8_c01331{font-size:72.600000px;}
.fs7_c01331{font-size:76.020000px;}
.fs9_c01331{font-size:79.500000px;}
.fsa_c01331{font-size:82.920000px;}
.fs19_c01331{font-size:86.400000px;}
.fs1f_c01331{font-size:89.880000px;}
.fs17_c01331{font-size:93.300000px;}
.fs18_c01331{font-size:96.780000px;}
.fs6_c01331{font-size:100.200000px;}
.fsd_c01331{font-size:103.680000px;}
.fs20_c01331{font-size:107.160000px;}
.fs1_c01331{font-size:190.080000px;}
.y0_c01331{bottom:0.000000px;}
.y1da_c01331{bottom:152.925000px;}
.y1db_c01331{bottom:158.115000px;}
.y1d6_c01331{bottom:188.355000px;}
.y1d3_c01331{bottom:190.950000px;}
.y1d4_c01331{bottom:193.530000px;}
.y1d5_c01331{bottom:194.400000px;}
.y1d1_c01331{bottom:196.125000px;}
.y1d0_c01331{bottom:211.680000px;}
.y1d2_c01331{bottom:212.550000px;}
.y1cf_c01331{bottom:213.405000px;}
.y1ce_c01331{bottom:215.130000px;}
.y1ca_c01331{bottom:216.000000px;}
.y1c9_c01331{bottom:217.725000px;}
.y1cd_c01331{bottom:218.595000px;}
.y1cc_c01331{bottom:220.320000px;}
.y1cb_c01331{bottom:221.190000px;}
.y1c8_c01331{bottom:235.005000px;}
.y1c4_c01331{bottom:235.875000px;}
.y1c2_c01331{bottom:237.600000px;}
.y1bf_c01331{bottom:238.470000px;}
.y1c0_c01331{bottom:239.325000px;}
.y1c3_c01331{bottom:241.920000px;}
.y1c5_c01331{bottom:242.790000px;}
.y1c1_c01331{bottom:243.645000px;}
.y1c6_c01331{bottom:253.155000px;}
.y1c7_c01331{bottom:256.605000px;}
.y1b8_c01331{bottom:257.475000px;}
.y1b7_c01331{bottom:258.330000px;}
.y1bd_c01331{bottom:259.200000px;}
.y1b9_c01331{bottom:260.070000px;}
.y1b6_c01331{bottom:260.925000px;}
.y1ba_c01331{bottom:261.795000px;}
.y1bb_c01331{bottom:262.650000px;}
.y1bc_c01331{bottom:263.520000px;}
.y1be_c01331{bottom:271.290000px;}
.y1ae_c01331{bottom:273.885000px;}
.y1b3_c01331{bottom:275.610000px;}
.y1b4_c01331{bottom:276.480000px;}
.y1b0_c01331{bottom:277.350000px;}
.y1b1_c01331{bottom:279.930000px;}
.y1b5_c01331{bottom:280.800000px;}
.y1af_c01331{bottom:282.525000px;}
.y1b2_c01331{bottom:284.250000px;}
.y1a8_c01331{bottom:296.355000px;}
.y1a7_c01331{bottom:297.210000px;}
.y1ab_c01331{bottom:298.080000px;}
.y1aa_c01331{bottom:298.950000px;}
.y1a6_c01331{bottom:299.805000px;}
.y1a9_c01331{bottom:300.675000px;}
.y1ad_c01331{bottom:301.530000px;}
.y1ac_c01331{bottom:303.270000px;}
.y1a1_c01331{bottom:317.955000px;}
.y1a4_c01331{bottom:318.810000px;}
.y1a3_c01331{bottom:319.680000px;}
.y1a0_c01331{bottom:321.405000px;}
.y1a5_c01331{bottom:322.275000px;}
.y1a2_c01331{bottom:323.130000px;}
.y19c_c01331{bottom:338.685000px;}
.y199_c01331{bottom:339.555000px;}
.y19a_c01331{bottom:340.410000px;}
.y198_c01331{bottom:341.280000px;}
.y19e_c01331{bottom:342.150000px;}
.y19d_c01331{bottom:343.005000px;}
.y19b_c01331{bottom:343.875000px;}
.y19f_c01331{bottom:345.600000px;}
.y196_c01331{bottom:357.690000px;}
.y190_c01331{bottom:358.560000px;}
.y197_c01331{bottom:360.285000px;}
.y193_c01331{bottom:362.010000px;}
.y195_c01331{bottom:362.880000px;}
.y194_c01331{bottom:363.750000px;}
.y18d_c01331{bottom:364.605000px;}
.y192_c01331{bottom:367.200000px;}
.y191_c01331{bottom:369.795000px;}
.y189_c01331{bottom:370.650000px;}
.y18e_c01331{bottom:371.520000px;}
.y18a_c01331{bottom:372.390000px;}
.y18b_c01331{bottom:373.245000px;}
.y18c_c01331{bottom:374.115000px;}
.y18f_c01331{bottom:374.970000px;}
.y182_c01331{bottom:378.435000px;}
.y184_c01331{bottom:379.290000px;}
.y183_c01331{bottom:380.160000px;}
.y186_c01331{bottom:381.030000px;}
.y185_c01331{bottom:381.885000px;}
.y188_c01331{bottom:390.525000px;}
.y181_c01331{bottom:395.715000px;}
.y187_c01331{bottom:396.570000px;}
.y17f_c01331{bottom:398.310000px;}
.y177_c01331{bottom:399.165000px;}
.y17c_c01331{bottom:400.035000px;}
.y179_c01331{bottom:400.890000px;}
.y17d_c01331{bottom:401.760000px;}
.y17b_c01331{bottom:402.630000px;}
.y178_c01331{bottom:403.485000px;}
.y17a_c01331{bottom:404.355000px;}
.y180_c01331{bottom:405.210000px;}
.y17e_c01331{bottom:409.530000px;}
.y16e_c01331{bottom:414.720000px;}
.y173_c01331{bottom:417.315000px;}
.y172_c01331{bottom:419.040000px;}
.y175_c01331{bottom:419.910000px;}
.y176_c01331{bottom:420.765000px;}
.y171_c01331{bottom:422.490000px;}
.y174_c01331{bottom:423.360000px;}
.y170_c01331{bottom:424.230000px;}
.y16f_c01331{bottom:425.085000px;}
.y169_c01331{bottom:438.915000px;}
.y16d_c01331{bottom:439.770000px;}
.y16c_c01331{bottom:440.640000px;}
.y16b_c01331{bottom:444.090000px;}
.y16a_c01331{bottom:444.960000px;}
.y15f_c01331{bottom:455.325000px;}
.y15e_c01331{bottom:456.195000px;}
.y164_c01331{bottom:457.050000px;}
.y160_c01331{bottom:457.920000px;}
.y165_c01331{bottom:458.790000px;}
.y166_c01331{bottom:459.645000px;}
.y163_c01331{bottom:460.515000px;}
.y161_c01331{bottom:462.240000px;}
.y167_c01331{bottom:463.110000px;}
.y15d_c01331{bottom:463.965000px;}
.y162_c01331{bottom:464.835000px;}
.y168_c01331{bottom:473.475000px;}
.y157_c01331{bottom:478.650000px;}
.y15a_c01331{bottom:479.520000px;}
.y15b_c01331{bottom:481.245000px;}
.y156_c01331{bottom:482.115000px;}
.y15c_c01331{bottom:482.970000px;}
.y159_c01331{bottom:484.710000px;}
.y158_c01331{bottom:485.565000px;}
.y153_c01331{bottom:499.395000px;}
.y152_c01331{bottom:500.250000px;}
.y150_c01331{bottom:501.120000px;}
.y154_c01331{bottom:501.990000px;}
.y155_c01331{bottom:505.440000px;}
.y151_c01331{bottom:506.310000px;}
.y14b_c01331{bottom:519.270000px;}
.y14c_c01331{bottom:520.125000px;}
.y14a_c01331{bottom:520.995000px;}
.y14e_c01331{bottom:521.850000px;}
.y148_c01331{bottom:523.590000px;}
.y14f_c01331{bottom:524.445000px;}
.y14d_c01331{bottom:525.315000px;}
.y149_c01331{bottom:527.040000px;}
.y145_c01331{bottom:540.000000px;}
.y143_c01331{bottom:540.870000px;}
.y146_c01331{bottom:541.725000px;}
.y144_c01331{bottom:542.595000px;}
.y142_c01331{bottom:543.450000px;}
.y147_c01331{bottom:546.045000px;}
.y141_c01331{bottom:559.005000px;}
.y13c_c01331{bottom:559.875000px;}
.y13e_c01331{bottom:560.730000px;}
.y13b_c01331{bottom:561.600000px;}
.y13d_c01331{bottom:565.050000px;}
.y13f_c01331{bottom:566.790000px;}
.y140_c01331{bottom:567.645000px;}
.y134_c01331{bottom:579.750000px;}
.y135_c01331{bottom:580.605000px;}
.y132_c01331{bottom:581.475000px;}
.y137_c01331{bottom:582.330000px;}
.y133_c01331{bottom:583.200000px;}
.y138_c01331{bottom:584.070000px;}
.y136_c01331{bottom:585.795000px;}
.y13a_c01331{bottom:586.650000px;}
.y139_c01331{bottom:587.520000px;}
.y12c_c01331{bottom:599.610000px;}
.y130_c01331{bottom:601.350000px;}
.y12f_c01331{bottom:602.205000px;}
.y131_c01331{bottom:603.075000px;}
.y12d_c01331{bottom:605.670000px;}
.y12e_c01331{bottom:606.525000px;}
.y126_c01331{bottom:620.355000px;}
.y129_c01331{bottom:622.080000px;}
.y127_c01331{bottom:623.805000px;}
.y12b_c01331{bottom:624.675000px;}
.y128_c01331{bottom:625.530000px;}
.y12a_c01331{bottom:627.270000px;}
.y11e_c01331{bottom:640.230000px;}
.y124_c01331{bottom:641.955000px;}
.y121_c01331{bottom:642.810000px;}
.y11f_c01331{bottom:643.680000px;}
.y11d_c01331{bottom:644.550000px;}
.y125_c01331{bottom:645.405000px;}
.y123_c01331{bottom:646.275000px;}
.y120_c01331{bottom:647.130000px;}
.y122_c01331{bottom:649.725000px;}
.y11a_c01331{bottom:660.960000px;}
.y116_c01331{bottom:661.830000px;}
.y11b_c01331{bottom:662.685000px;}
.y11c_c01331{bottom:663.555000px;}
.y118_c01331{bottom:664.410000px;}
.y119_c01331{bottom:666.150000px;}
.y117_c01331{bottom:667.005000px;}
.y111_c01331{bottom:675.645000px;}
.y112_c01331{bottom:676.515000px;}
.y114_c01331{bottom:678.240000px;}
.y110_c01331{bottom:679.110000px;}
.y113_c01331{bottom:679.965000px;}
.y10f_c01331{bottom:681.690000px;}
.y115_c01331{bottom:686.880000px;}
.y10a_c01331{bottom:701.565000px;}
.y10b_c01331{bottom:702.435000px;}
.y10e_c01331{bottom:703.290000px;}
.y109_c01331{bottom:706.755000px;}
.y108_c01331{bottom:707.610000px;}
.y10c_c01331{bottom:708.480000px;}
.y10d_c01331{bottom:709.350000px;}
.y101_c01331{bottom:721.440000px;}
.y102_c01331{bottom:722.310000px;}
.y103_c01331{bottom:723.165000px;}
.y106_c01331{bottom:724.035000px;}
.y107_c01331{bottom:725.760000px;}
.y105_c01331{bottom:727.485000px;}
.y104_c01331{bottom:729.210000px;}
.yf9_c01331{bottom:742.170000px;}
.yfa_c01331{bottom:743.040000px;}
.yfd_c01331{bottom:743.910000px;}
.yfe_c01331{bottom:744.765000px;}
.yfb_c01331{bottom:746.490000px;}
.yff_c01331{bottom:748.230000px;}
.yfc_c01331{bottom:749.085000px;}
.y100_c01331{bottom:751.680000px;}
.yf5_c01331{bottom:762.915000px;}
.yf4_c01331{bottom:763.770000px;}
.yf8_c01331{bottom:764.640000px;}
.yf3_c01331{bottom:765.510000px;}
.yf2_c01331{bottom:767.235000px;}
.yf6_c01331{bottom:768.090000px;}
.yf7_c01331{bottom:768.960000px;}
.yee_c01331{bottom:775.875000px;}
.yec_c01331{bottom:777.600000px;}
.yed_c01331{bottom:779.325000px;}
.yef_c01331{bottom:781.050000px;}
.yf0_c01331{bottom:788.835000px;}
.yf1_c01331{bottom:797.475000px;}
.ye5_c01331{bottom:803.520000px;}
.ye7_c01331{bottom:804.390000px;}
.ye6_c01331{bottom:805.245000px;}
.ye4_c01331{bottom:806.115000px;}
.ye9_c01331{bottom:806.970000px;}
.yeb_c01331{bottom:807.840000px;}
.yea_c01331{bottom:809.565000px;}
.ye8_c01331{bottom:815.610000px;}
.yde_c01331{bottom:823.395000px;}
.ye1_c01331{bottom:824.250000px;}
.ydf_c01331{bottom:825.120000px;}
.ye3_c01331{bottom:826.845000px;}
.ydd_c01331{bottom:827.715000px;}
.ye0_c01331{bottom:828.570000px;}
.ye2_c01331{bottom:829.440000px;}
.yd3_c01331{bottom:842.400000px;}
.yd5_c01331{bottom:843.270000px;}
.yd9_c01331{bottom:844.125000px;}
.yd6_c01331{bottom:844.995000px;}
.yd4_c01331{bottom:846.720000px;}
.yda_c01331{bottom:847.590000px;}
.ydb_c01331{bottom:848.445000px;}
.yd7_c01331{bottom:849.315000px;}
.yd8_c01331{bottom:853.635000px;}
.ydc_c01331{bottom:854.490000px;}
.yd0_c01331{bottom:862.275000px;}
.ycc_c01331{bottom:863.130000px;}
.ycd_c01331{bottom:864.000000px;}
.yce_c01331{bottom:864.870000px;}
.ycb_c01331{bottom:867.450000px;}
.ycf_c01331{bottom:869.190000px;}
.yd1_c01331{bottom:871.770000px;}
.yd2_c01331{bottom:876.960000px;}
.yc6_c01331{bottom:883.875000px;}
.yc4_c01331{bottom:884.730000px;}
.yc7_c01331{bottom:885.600000px;}
.yc9_c01331{bottom:886.470000px;}
.yc8_c01331{bottom:887.325000px;}
.yc5_c01331{bottom:889.050000px;}
.yca_c01331{bottom:890.790000px;}
.ybe_c01331{bottom:904.605000px;}
.yc2_c01331{bottom:905.475000px;}
.yc1_c01331{bottom:906.330000px;}
.yc0_c01331{bottom:907.200000px;}
.ybf_c01331{bottom:908.070000px;}
.ybd_c01331{bottom:908.925000px;}
.yc3_c01331{bottom:910.650000px;}
.yb6_c01331{bottom:923.610000px;}
.ybc_c01331{bottom:924.480000px;}
.yb8_c01331{bottom:925.350000px;}
.yba_c01331{bottom:926.205000px;}
.yb7_c01331{bottom:927.075000px;}
.ybb_c01331{bottom:931.395000px;}
.yb9_c01331{bottom:932.250000px;}
.yad_c01331{bottom:943.485000px;}
.yb2_c01331{bottom:945.210000px;}
.yae_c01331{bottom:946.080000px;}
.yb5_c01331{bottom:946.950000px;}
.yac_c01331{bottom:947.805000px;}
.yb3_c01331{bottom:949.530000px;}
.yaf_c01331{bottom:950.400000px;}
.yb4_c01331{bottom:951.270000px;}
.yb1_c01331{bottom:955.590000px;}
.yb0_c01331{bottom:956.445000px;}
.ya4_c01331{bottom:964.230000px;}
.ya5_c01331{bottom:965.085000px;}
.ya8_c01331{bottom:966.810000px;}
.ya3_c01331{bottom:967.680000px;}
.yab_c01331{bottom:970.275000px;}
.ya6_c01331{bottom:971.130000px;}
.ya7_c01331{bottom:972.000000px;}
.yaa_c01331{bottom:973.725000px;}
.ya9_c01331{bottom:982.365000px;}
.y9e_c01331{bottom:984.090000px;}
.y9d_c01331{bottom:984.960000px;}
.ya1_c01331{bottom:985.830000px;}
.ya2_c01331{bottom:990.150000px;}
.y9f_c01331{bottom:991.005000px;}
.ya0_c01331{bottom:994.470000px;}
.y96_c01331{bottom:1003.965000px;}
.y98_c01331{bottom:1004.835000px;}
.y9a_c01331{bottom:1006.560000px;}
.y97_c01331{bottom:1007.430000px;}
.y95_c01331{bottom:1009.155000px;}
.y9b_c01331{bottom:1010.010000px;}
.y99_c01331{bottom:1010.880000px;}
.y9c_c01331{bottom:1011.750000px;}
.y94_c01331{bottom:1016.070000px;}
.y87_c01331{bottom:1024.710000px;}
.y88_c01331{bottom:1025.565000px;}
.y8c_c01331{bottom:1026.435000px;}
.y8d_c01331{bottom:1027.290000px;}
.y89_c01331{bottom:1028.160000px;}
.y91_c01331{bottom:1029.030000px;}
.y90_c01331{bottom:1029.885000px;}
.y8e_c01331{bottom:1030.755000px;}
.y8a_c01331{bottom:1031.610000px;}
.y92_c01331{bottom:1033.350000px;}
.y8b_c01331{bottom:1034.205000px;}
.y8f_c01331{bottom:1037.670000px;}
.y93_c01331{bottom:1041.120000px;}
.y81_c01331{bottom:1044.570000px;}
.y85_c01331{bottom:1045.440000px;}
.y84_c01331{bottom:1047.165000px;}
.y83_c01331{bottom:1048.890000px;}
.y82_c01331{bottom:1049.760000px;}
.y80_c01331{bottom:1051.485000px;}
.y86_c01331{bottom:1052.355000px;}
.y7a_c01331{bottom:1063.590000px;}
.y78_c01331{bottom:1064.445000px;}
.y7e_c01331{bottom:1066.170000px;}
.y79_c01331{bottom:1067.040000px;}
.y7b_c01331{bottom:1067.910000px;}
.y7d_c01331{bottom:1071.360000px;}
.y7c_c01331{bottom:1072.230000px;}
.y7f_c01331{bottom:1077.405000px;}
.y70_c01331{bottom:1082.595000px;}
.y71_c01331{bottom:1083.450000px;}
.y6f_c01331{bottom:1086.045000px;}
.y72_c01331{bottom:1086.915000px;}
.y73_c01331{bottom:1087.770000px;}
.y77_c01331{bottom:1089.510000px;}
.y74_c01331{bottom:1090.365000px;}
.y75_c01331{bottom:1091.235000px;}
.y76_c01331{bottom:1092.960000px;}
.y6e_c01331{bottom:1097.280000px;}
.y64_c01331{bottom:1104.195000px;}
.y66_c01331{bottom:1105.920000px;}
.y67_c01331{bottom:1106.790000px;}
.y6c_c01331{bottom:1107.645000px;}
.y6d_c01331{bottom:1109.370000px;}
.y68_c01331{bottom:1110.240000px;}
.y69_c01331{bottom:1111.110000px;}
.y6a_c01331{bottom:1112.835000px;}
.y6b_c01331{bottom:1113.690000px;}
.y65_c01331{bottom:1119.750000px;}
.y5e_c01331{bottom:1126.650000px;}
.y60_c01331{bottom:1129.245000px;}
.y63_c01331{bottom:1130.115000px;}
.y5f_c01331{bottom:1130.970000px;}
.y62_c01331{bottom:1132.710000px;}
.y61_c01331{bottom:1133.565000px;}
.y57_c01331{bottom:1146.525000px;}
.y5b_c01331{bottom:1147.395000px;}
.y5c_c01331{bottom:1148.250000px;}
.y5d_c01331{bottom:1149.120000px;}
.y58_c01331{bottom:1149.990000px;}
.y59_c01331{bottom:1150.845000px;}
.y5a_c01331{bottom:1151.715000px;}
.y1dd_c01331{bottom:1159.485000px;}
.y1dc_c01331{bottom:1162.950000px;}
.y53_c01331{bottom:1168.995000px;}
.y51_c01331{bottom:1169.850000px;}
.y52_c01331{bottom:1170.720000px;}
.y54_c01331{bottom:1171.590000px;}
.y55_c01331{bottom:1173.315000px;}
.y56_c01331{bottom:1174.170000px;}
.y1d9_c01331{bottom:1175.910000px;}
.y50_c01331{bottom:1178.490000px;}
.y4a_c01331{bottom:1188.000000px;}
.y4c_c01331{bottom:1188.870000px;}
.y4e_c01331{bottom:1189.725000px;}
.y48_c01331{bottom:1190.595000px;}
.y4b_c01331{bottom:1191.450000px;}
.y49_c01331{bottom:1192.320000px;}
.y4d_c01331{bottom:1194.045000px;}
.y4f_c01331{bottom:1194.915000px;}
.y43_c01331{bottom:1207.875000px;}
.y46_c01331{bottom:1209.600000px;}
.y47_c01331{bottom:1210.470000px;}
.y42_c01331{bottom:1212.195000px;}
.y44_c01331{bottom:1213.920000px;}
.y45_c01331{bottom:1214.790000px;}
.y40_c01331{bottom:1227.750000px;}
.y3a_c01331{bottom:1228.605000px;}
.y39_c01331{bottom:1229.475000px;}
.y3f_c01331{bottom:1230.330000px;}
.y3b_c01331{bottom:1231.200000px;}
.y3e_c01331{bottom:1232.070000px;}
.y3d_c01331{bottom:1233.795000px;}
.y3c_c01331{bottom:1234.650000px;}
.y41_c01331{bottom:1237.245000px;}
.y34_c01331{bottom:1249.350000px;}
.y37_c01331{bottom:1250.205000px;}
.y33_c01331{bottom:1251.930000px;}
.y35_c01331{bottom:1252.800000px;}
.y36_c01331{bottom:1253.670000px;}
.y38_c01331{bottom:1254.525000px;}
.y2e_c01331{bottom:1268.355000px;}
.y2f_c01331{bottom:1269.210000px;}
.y2d_c01331{bottom:1270.080000px;}
.y32_c01331{bottom:1270.950000px;}
.y2c_c01331{bottom:1272.675000px;}
.y31_c01331{bottom:1275.270000px;}
.y30_c01331{bottom:1276.995000px;}
.y1d7_c01331{bottom:1281.315000px;}
.y1d8_c01331{bottom:1283.040000px;}
.y26_c01331{bottom:1284.765000px;}
.y29_c01331{bottom:1285.635000px;}
.y27_c01331{bottom:1286.490000px;}
.y2a_c01331{bottom:1287.360000px;}
.y28_c01331{bottom:1289.085000px;}
.y2b_c01331{bottom:1295.130000px;}
.y1d_c01331{bottom:1308.960000px;}
.y21_c01331{bottom:1310.685000px;}
.y24_c01331{bottom:1311.555000px;}
.y1c_c01331{bottom:1312.410000px;}
.y1e_c01331{bottom:1313.280000px;}
.y1f_c01331{bottom:1314.150000px;}
.y20_c01331{bottom:1315.005000px;}
.y25_c01331{bottom:1315.875000px;}
.y22_c01331{bottom:1316.730000px;}
.y23_c01331{bottom:1317.600000px;}
.y13_c01331{bottom:1327.965000px;}
.y16_c01331{bottom:1328.835000px;}
.y17_c01331{bottom:1329.690000px;}
.y12_c01331{bottom:1331.430000px;}
.y19_c01331{bottom:1332.285000px;}
.y18_c01331{bottom:1334.010000px;}
.y14_c01331{bottom:1335.750000px;}
.y1a_c01331{bottom:1336.605000px;}
.y15_c01331{bottom:1337.475000px;}
.y1b_c01331{bottom:1340.070000px;}
.ya_c01331{bottom:1347.840000px;}
.yc_c01331{bottom:1349.565000px;}
.y10_c01331{bottom:1350.435000px;}
.yd_c01331{bottom:1351.290000px;}
.yb_c01331{bottom:1353.030000px;}
.ye_c01331{bottom:1355.610000px;}
.y11_c01331{bottom:1356.480000px;}
.yf_c01331{bottom:1359.075000px;}
.y5_c01331{bottom:1376.355000px;}
.y9_c01331{bottom:1380.675000px;}
.y6_c01331{bottom:1382.400000px;}
.y7_c01331{bottom:1383.270000px;}
.y8_c01331{bottom:1384.995000px;}
.y2_c01331{bottom:1397.085000px;}
.y3_c01331{bottom:1403.130000px;}
.y1_c01331{bottom:1410.915000px;}
.y4_c01331{bottom:1429.050000px;}
.h5_c01331{height:3.110063px;}
.h18_c01331{height:5.399414px;}
.h2_c01331{height:6.209326px;}
.h4_c01331{height:9.340986px;}
.h20_c01331{height:12.418652px;}
.h1c_c01331{height:15.550313px;}
.h16_c01331{height:18.681973px;}
.h14_c01331{height:21.759639px;}
.h1f_c01331{height:24.891299px;}
.h17_c01331{height:27.968965px;}
.h15_c01331{height:31.100625px;}
.h10_c01331{height:34.232285px;}
.h1e_c01331{height:37.309951px;}
.h1d_c01331{height:40.441611px;}
.he_c01331{height:43.519277px;}
.h13_c01331{height:46.650937px;}
.hd_c01331{height:49.782598px;}
.h11_c01331{height:52.860264px;}
.h12_c01331{height:55.991924px;}
.h6_c01331{height:59.069590px;}
.h7_c01331{height:62.201250px;}
.ha_c01331{height:65.332910px;}
.h9_c01331{height:68.410576px;}
.hb_c01331{height:71.542236px;}
.h22_c01331{height:73.271924px;}
.hc_c01331{height:74.619902px;}
.h1b_c01331{height:77.751563px;}
.h21_c01331{height:80.883223px;}
.h19_c01331{height:83.960889px;}
.h1a_c01331{height:87.092549px;}
.h8_c01331{height:90.170215px;}
.hf_c01331{height:93.301875px;}
.h23_c01331{height:96.433535px;}
.h3_c01331{height:171.053437px;}
.h0_c01331{height:1509.405000px;}
.h1_c01331{height:1509.750000px;}
.w0_c01331{width:1079.130000px;}
.w1_c01331{width:1079.250000px;}
.x0_c01331{left:0.000000px;}
.x119_c01331{left:42.330000px;}
.x117_c01331{left:49.245000px;}
.x118_c01331{left:57.885000px;}
.x11a_c01331{left:139.110000px;}
.x7e_c01331{left:142.560000px;}
.x11b_c01331{left:154.650000px;}
.x76_c01331{left:158.115000px;}
.x7f_c01331{left:176.250000px;}
.x47_c01331{left:182.310000px;}
.x80_c01331{left:184.035000px;}
.xdd_c01331{left:200.445000px;}
.x81_c01331{left:211.680000px;}
.x77_c01331{left:213.405000px;}
.x68_c01331{left:216.870000px;}
.x60_c01331{left:219.450000px;}
.xa1_c01331{left:221.190000px;}
.xd8_c01331{left:223.770000px;}
.xc_c01331{left:225.510000px;}
.x59_c01331{left:227.235000px;}
.xb9_c01331{left:228.960000px;}
.xe6_c01331{left:231.555000px;}
.xef_c01331{left:233.280000px;}
.xf8_c01331{left:235.005000px;}
.x111_c01331{left:238.470000px;}
.x5_c01331{left:240.195000px;}
.xcd_c01331{left:246.240000px;}
.x61_c01331{left:247.965000px;}
.x24_c01331{left:250.560000px;}
.x36_c01331{left:254.010000px;}
.xc0_c01331{left:256.605000px;}
.x10e_c01331{left:258.330000px;}
.x88_c01331{left:260.925000px;}
.x6_c01331{left:263.520000px;}
.xd_c01331{left:265.245000px;}
.xab_c01331{left:266.970000px;}
.xa2_c01331{left:268.710000px;}
.xc1_c01331{left:270.435000px;}
.xc6_c01331{left:277.350000px;}
.x62_c01331{left:279.075000px;}
.x82_c01331{left:281.670000px;}
.xd9_c01331{left:285.990000px;}
.x69_c01331{left:287.715000px;}
.xf0_c01331{left:289.440000px;}
.xf6_c01331{left:291.165000px;}
.xe7_c01331{left:294.630000px;}
.xbc_c01331{left:296.355000px;}
.x8f_c01331{left:298.950000px;}
.x6a_c01331{left:300.675000px;}
.x7_c01331{left:302.400000px;}
.x48_c01331{left:304.995000px;}
.x25_c01331{left:307.590000px;}
.xf9_c01331{left:309.315000px;}
.x51_c01331{left:311.910000px;}
.xe8_c01331{left:314.490000px;}
.x17_c01331{left:316.230000px;}
.x26_c01331{left:317.955000px;}
.xc2_c01331{left:319.680000px;}
.x37_c01331{left:321.405000px;}
.x70_c01331{left:324.870000px;}
.xac_c01331{left:326.595000px;}
.xb6_c01331{left:330.915000px;}
.xf1_c01331{left:332.640000px;}
.x78_c01331{left:334.365000px;}
.xc7_c01331{left:336.090000px;}
.x63_c01331{left:337.830000px;}
.x6b_c01331{left:340.410000px;}
.xa3_c01331{left:343.005000px;}
.x3f_c01331{left:345.600000px;}
.x38_c01331{left:348.195000px;}
.xc8_c01331{left:351.645000px;}
.x89_c01331{left:355.110000px;}
.x109_c01331{left:356.835000px;}
.x27_c01331{left:358.560000px;}
.x79_c01331{left:360.285000px;}
.xe9_c01331{left:362.010000px;}
.x49_c01331{left:363.750000px;}
.xc3_c01331{left:365.475000px;}
.x52_c01331{left:367.200000px;}
.xe3_c01331{left:368.925000px;}
.xe_c01331{left:374.115000px;}
.x104_c01331{left:375.840000px;}
.x5a_c01331{left:378.435000px;}
.x64_c01331{left:381.030000px;}
.x71_c01331{left:382.755000px;}
.x9c_c01331{left:385.350000px;}
.x28_c01331{left:387.075000px;}
.xa6_c01331{left:389.670000px;}
.x18_c01331{left:392.250000px;}
.xe4_c01331{left:394.845000px;}
.x6c_c01331{left:397.440000px;}
.xd5_c01331{left:399.165000px;}
.x39_c01331{left:400.890000px;}
.x4a_c01331{left:404.355000px;}
.x8_c01331{left:409.530000px;}
.x83_c01331{left:411.270000px;}
.x29_c01331{left:414.720000px;}
.x90_c01331{left:417.315000px;}
.x4b_c01331{left:419.040000px;}
.xde_c01331{left:420.765000px;}
.xe5_c01331{left:423.360000px;}
.xf4_c01331{left:425.085000px;}
.x32_c01331{left:426.810000px;}
.x40_c01331{left:430.275000px;}
.x4c_c01331{left:434.595000px;}
.x5b_c01331{left:436.320000px;}
.x7a_c01331{left:438.915000px;}
.xc4_c01331{left:441.510000px;}
.x8a_c01331{left:443.235000px;}
.xc9_c01331{left:444.960000px;}
.x10f_c01331{left:446.685000px;}
.x19_c01331{left:450.150000px;}
.xce_c01331{left:453.600000px;}
.x8b_c01331{left:455.325000px;}
.xb7_c01331{left:457.050000px;}
.x2a_c01331{left:458.790000px;}
.xbd_c01331{left:460.515000px;}
.xf2_c01331{left:463.965000px;}
.x3a_c01331{left:466.560000px;}
.xad_c01331{left:469.155000px;}
.xf_c01331{left:470.880000px;}
.x9d_c01331{left:472.605000px;}
.xea_c01331{left:475.200000px;}
.x97_c01331{left:478.650000px;}
.x105_c01331{left:480.390000px;}
.x65_c01331{left:482.970000px;}
.x7b_c01331{left:487.290000px;}
.x53_c01331{left:489.885000px;}
.x4d_c01331{left:491.610000px;}
.xcf_c01331{left:494.205000px;}
.xa7_c01331{left:495.930000px;}
.xba_c01331{left:497.670000px;}
.x10a_c01331{left:499.395000px;}
.x91_c01331{left:501.990000px;}
.x54_c01331{left:503.715000px;}
.x98_c01331{left:507.165000px;}
.xfa_c01331{left:509.760000px;}
.x1a_c01331{left:512.355000px;}
.x10c_c01331{left:514.080000px;}
.x9_c01331{left:515.805000px;}
.xeb_c01331{left:517.530000px;}
.xfd_c01331{left:519.270000px;}
.x2b_c01331{left:524.445000px;}
.xdf_c01331{left:527.040000px;}
.x41_c01331{left:529.635000px;}
.x1b_c01331{left:532.230000px;}
.x10_c01331{left:533.955000px;}
.x92_c01331{left:535.680000px;}
.x8c_c01331{left:538.275000px;}
.xbb_c01331{left:540.000000px;}
.xfb_c01331{left:541.725000px;}
.x55_c01331{left:543.450000px;}
.xae_c01331{left:545.190000px;}
.x1c_c01331{left:547.770000px;}
.x11_c01331{left:549.510000px;}
.x2c_c01331{left:552.090000px;}
.xaf_c01331{left:553.830000px;}
.xe0_c01331{left:555.555000px;}
.x84_c01331{left:557.280000px;}
.xf5_c01331{left:559.005000px;}
.x10d_c01331{left:560.730000px;}
.x113_c01331{left:562.470000px;}
.x115_c01331{left:565.920000px;}
.xa8_c01331{left:567.645000px;}
.x5c_c01331{left:569.370000px;}
.xb0_c01331{left:573.690000px;}
.x2d_c01331{left:578.010000px;}
.x3b_c01331{left:580.605000px;}
.xb2_c01331{left:583.200000px;}
.xd6_c01331{left:584.925000px;}
.x1d_c01331{left:587.520000px;}
.xa_c01331{left:590.970000px;}
.xe1_c01331{left:593.565000px;}
.x3c_c01331{left:595.290000px;}
.xfc_c01331{left:597.885000px;}
.xda_c01331{left:599.610000px;}
.x1_c01331{left:601.350000px;}
.xb5_c01331{left:603.930000px;}
.x33_c01331{left:607.395000px;}
.x42_c01331{left:609.990000px;}
.x66_c01331{left:616.035000px;}
.x12_c01331{left:618.630000px;}
.x1e_c01331{left:620.355000px;}
.xec_c01331{left:622.080000px;}
.xf7_c01331{left:623.805000px;}
.x85_c01331{left:625.530000px;}
.xb8_c01331{left:628.995000px;}
.x99_c01331{left:630.720000px;}
.x2_c01331{left:632.445000px;}
.x6d_c01331{left:634.170000px;}
.x2e_c01331{left:635.910000px;}
.x56_c01331{left:639.360000px;}
.x93_c01331{left:641.955000px;}
.x7c_c01331{left:645.405000px;}
.x43_c01331{left:648.870000px;}
.x72_c01331{left:652.320000px;}
.xf3_c01331{left:654.045000px;}
.x9a_c01331{left:656.640000px;}
.x94_c01331{left:658.365000px;}
.x5d_c01331{left:660.960000px;}
.x100_c01331{left:663.555000px;}
.xb3_c01331{left:665.280000px;}
.x34_c01331{left:668.730000px;}
.x106_c01331{left:671.325000px;}
.x110_c01331{left:673.920000px;}
.x86_c01331{left:676.515000px;}
.xd0_c01331{left:679.110000px;}
.x6e_c01331{left:680.835000px;}
.x1f_c01331{left:683.430000px;}
.xbe_c01331{left:686.880000px;}
.x44_c01331{left:690.330000px;}
.x3d_c01331{left:692.070000px;}
.x9e_c01331{left:693.795000px;}
.xe2_c01331{left:698.115000px;}
.xed_c01331{left:699.840000px;}
.x8d_c01331{left:702.435000px;}
.x4e_c01331{left:705.030000px;}
.x20_c01331{left:707.610000px;}
.x95_c01331{left:709.350000px;}
.x11c_c01331{left:715.395000px;}
.x73_c01331{left:717.120000px;}
.x13_c01331{left:718.845000px;}
.x2f_c01331{left:721.440000px;}
.xbf_c01331{left:724.035000px;}
.xb4_c01331{left:725.760000px;}
.x21_c01331{left:727.485000px;}
.x116_c01331{left:729.210000px;}
.x5e_c01331{left:730.950000px;}
.xd3_c01331{left:733.530000px;}
.x30_c01331{left:735.270000px;}
.xca_c01331{left:738.720000px;}
.xee_c01331{left:740.445000px;}
.x114_c01331{left:742.170000px;}
.x74_c01331{left:743.910000px;}
.x3e_c01331{left:745.635000px;}
.x57_c01331{left:747.360000px;}
.xd7_c01331{left:749.955000px;}
.xcb_c01331{left:754.275000px;}
.x3_c01331{left:756.000000px;}
.x4f_c01331{left:758.595000px;}
.x14_c01331{left:761.190000px;}
.x67_c01331{left:764.640000px;}
.x10b_c01331{left:766.365000px;}
.x75_c01331{left:768.090000px;}
.xa4_c01331{left:773.280000px;}
.xdb_c01331{left:775.005000px;}
.x35_c01331{left:779.325000px;}
.x112_c01331{left:781.920000px;}
.xfe_c01331{left:784.515000px;}
.xd1_c01331{left:786.240000px;}
.x15_c01331{left:787.965000px;}
.x4_c01331{left:790.560000px;}
.xc5_c01331{left:792.285000px;}
.xd2_c01331{left:794.010000px;}
.x87_c01331{left:796.605000px;}
.x45_c01331{left:799.200000px;}
.x9f_c01331{left:800.925000px;}
.x50_c01331{left:803.520000px;}
.x58_c01331{left:806.115000px;}
.x5f_c01331{left:807.840000px;}
.x16_c01331{left:810.435000px;}
.x7d_c01331{left:812.160000px;}
.x9b_c01331{left:813.885000px;}
.x22_c01331{left:815.610000px;}
.x96_c01331{left:817.350000px;}
.xb_c01331{left:819.930000px;}
.x31_c01331{left:825.990000px;}
.xdc_c01331{left:828.570000px;}
.x102_c01331{left:830.310000px;}
.xa9_c01331{left:832.035000px;}
.xaa_c01331{left:837.210000px;}
.xa0_c01331{left:839.805000px;}
.x46_c01331{left:845.850000px;}
.x23_c01331{left:847.590000px;}
.xa5_c01331{left:851.040000px;}
.x103_c01331{left:854.490000px;}
.x8e_c01331{left:857.955000px;}
.x6f_c01331{left:863.130000px;}
.xd4_c01331{left:866.595000px;}
.xcc_c01331{left:871.770000px;}
.xff_c01331{left:873.510000px;}
.x107_c01331{left:877.830000px;}
.xb1_c01331{left:881.280000px;}
.x101_c01331{left:884.730000px;}
.x108_c01331{left:887.325000px;}
.x11d_c01331{left:895.965000px;}
.x11e_c01331{left:911.520000px;}
@media print{
.v2_c01331{vertical-align:-3.040000pt;}
.v0_c01331{vertical-align:0.000000pt;}
.v1_c01331{vertical-align:15.360000pt;}
.ls1_c01331{letter-spacing:0.000000pt;}
.ls0_c01331{letter-spacing:18.424283pt;}
.ws0_c01331{word-spacing:-3.805333pt;}
.ws1_c01331{word-spacing:0.000000pt;}
.fs3_c01331{font-size:3.072000pt;}
.fs16_c01331{font-size:5.333333pt;}
.fs0_c01331{font-size:6.133333pt;}
.fs2_c01331{font-size:9.226667pt;}
.fs1e_c01331{font-size:12.266667pt;}
.fs1a_c01331{font-size:15.360000pt;}
.fs14_c01331{font-size:18.453333pt;}
.fs12_c01331{font-size:21.493333pt;}
.fs1d_c01331{font-size:24.586667pt;}
.fs15_c01331{font-size:27.626667pt;}
.fs13_c01331{font-size:30.720000pt;}
.fse_c01331{font-size:33.813333pt;}
.fs1c_c01331{font-size:36.853333pt;}
.fs1b_c01331{font-size:39.946667pt;}
.fsc_c01331{font-size:42.986667pt;}
.fs11_c01331{font-size:46.080000pt;}
.fsb_c01331{font-size:49.173333pt;}
.fsf_c01331{font-size:52.213333pt;}
.fs10_c01331{font-size:55.306667pt;}
.fs4_c01331{font-size:58.346667pt;}
.fs5_c01331{font-size:61.440000pt;}
.fs8_c01331{font-size:64.533333pt;}
.fs7_c01331{font-size:67.573333pt;}
.fs9_c01331{font-size:70.666667pt;}
.fsa_c01331{font-size:73.706667pt;}
.fs19_c01331{font-size:76.800000pt;}
.fs1f_c01331{font-size:79.893333pt;}
.fs17_c01331{font-size:82.933333pt;}
.fs18_c01331{font-size:86.026667pt;}
.fs6_c01331{font-size:89.066667pt;}
.fsd_c01331{font-size:92.160000pt;}
.fs20_c01331{font-size:95.253333pt;}
.fs1_c01331{font-size:168.960000pt;}
.y0_c01331{bottom:0.000000pt;}
.y1da_c01331{bottom:135.933333pt;}
.y1db_c01331{bottom:140.546667pt;}
.y1d6_c01331{bottom:167.426667pt;}
.y1d3_c01331{bottom:169.733333pt;}
.y1d4_c01331{bottom:172.026667pt;}
.y1d5_c01331{bottom:172.800000pt;}
.y1d1_c01331{bottom:174.333333pt;}
.y1d0_c01331{bottom:188.160000pt;}
.y1d2_c01331{bottom:188.933333pt;}
.y1cf_c01331{bottom:189.693333pt;}
.y1ce_c01331{bottom:191.226667pt;}
.y1ca_c01331{bottom:192.000000pt;}
.y1c9_c01331{bottom:193.533333pt;}
.y1cd_c01331{bottom:194.306667pt;}
.y1cc_c01331{bottom:195.840000pt;}
.y1cb_c01331{bottom:196.613333pt;}
.y1c8_c01331{bottom:208.893333pt;}
.y1c4_c01331{bottom:209.666667pt;}
.y1c2_c01331{bottom:211.200000pt;}
.y1bf_c01331{bottom:211.973333pt;}
.y1c0_c01331{bottom:212.733333pt;}
.y1c3_c01331{bottom:215.040000pt;}
.y1c5_c01331{bottom:215.813333pt;}
.y1c1_c01331{bottom:216.573333pt;}
.y1c6_c01331{bottom:225.026667pt;}
.y1c7_c01331{bottom:228.093333pt;}
.y1b8_c01331{bottom:228.866667pt;}
.y1b7_c01331{bottom:229.626667pt;}
.y1bd_c01331{bottom:230.400000pt;}
.y1b9_c01331{bottom:231.173333pt;}
.y1b6_c01331{bottom:231.933333pt;}
.y1ba_c01331{bottom:232.706667pt;}
.y1bb_c01331{bottom:233.466667pt;}
.y1bc_c01331{bottom:234.240000pt;}
.y1be_c01331{bottom:241.146667pt;}
.y1ae_c01331{bottom:243.453333pt;}
.y1b3_c01331{bottom:244.986667pt;}
.y1b4_c01331{bottom:245.760000pt;}
.y1b0_c01331{bottom:246.533333pt;}
.y1b1_c01331{bottom:248.826667pt;}
.y1b5_c01331{bottom:249.600000pt;}
.y1af_c01331{bottom:251.133333pt;}
.y1b2_c01331{bottom:252.666667pt;}
.y1a8_c01331{bottom:263.426667pt;}
.y1a7_c01331{bottom:264.186667pt;}
.y1ab_c01331{bottom:264.960000pt;}
.y1aa_c01331{bottom:265.733333pt;}
.y1a6_c01331{bottom:266.493333pt;}
.y1a9_c01331{bottom:267.266667pt;}
.y1ad_c01331{bottom:268.026667pt;}
.y1ac_c01331{bottom:269.573333pt;}
.y1a1_c01331{bottom:282.626667pt;}
.y1a4_c01331{bottom:283.386667pt;}
.y1a3_c01331{bottom:284.160000pt;}
.y1a0_c01331{bottom:285.693333pt;}
.y1a5_c01331{bottom:286.466667pt;}
.y1a2_c01331{bottom:287.226667pt;}
.y19c_c01331{bottom:301.053333pt;}
.y199_c01331{bottom:301.826667pt;}
.y19a_c01331{bottom:302.586667pt;}
.y198_c01331{bottom:303.360000pt;}
.y19e_c01331{bottom:304.133333pt;}
.y19d_c01331{bottom:304.893333pt;}
.y19b_c01331{bottom:305.666667pt;}
.y19f_c01331{bottom:307.200000pt;}
.y196_c01331{bottom:317.946667pt;}
.y190_c01331{bottom:318.720000pt;}
.y197_c01331{bottom:320.253333pt;}
.y193_c01331{bottom:321.786667pt;}
.y195_c01331{bottom:322.560000pt;}
.y194_c01331{bottom:323.333333pt;}
.y18d_c01331{bottom:324.093333pt;}
.y192_c01331{bottom:326.400000pt;}
.y191_c01331{bottom:328.706667pt;}
.y189_c01331{bottom:329.466667pt;}
.y18e_c01331{bottom:330.240000pt;}
.y18a_c01331{bottom:331.013333pt;}
.y18b_c01331{bottom:331.773333pt;}
.y18c_c01331{bottom:332.546667pt;}
.y18f_c01331{bottom:333.306667pt;}
.y182_c01331{bottom:336.386667pt;}
.y184_c01331{bottom:337.146667pt;}
.y183_c01331{bottom:337.920000pt;}
.y186_c01331{bottom:338.693333pt;}
.y185_c01331{bottom:339.453333pt;}
.y188_c01331{bottom:347.133333pt;}
.y181_c01331{bottom:351.746667pt;}
.y187_c01331{bottom:352.506667pt;}
.y17f_c01331{bottom:354.053333pt;}
.y177_c01331{bottom:354.813333pt;}
.y17c_c01331{bottom:355.586667pt;}
.y179_c01331{bottom:356.346667pt;}
.y17d_c01331{bottom:357.120000pt;}
.y17b_c01331{bottom:357.893333pt;}
.y178_c01331{bottom:358.653333pt;}
.y17a_c01331{bottom:359.426667pt;}
.y180_c01331{bottom:360.186667pt;}
.y17e_c01331{bottom:364.026667pt;}
.y16e_c01331{bottom:368.640000pt;}
.y173_c01331{bottom:370.946667pt;}
.y172_c01331{bottom:372.480000pt;}
.y175_c01331{bottom:373.253333pt;}
.y176_c01331{bottom:374.013333pt;}
.y171_c01331{bottom:375.546667pt;}
.y174_c01331{bottom:376.320000pt;}
.y170_c01331{bottom:377.093333pt;}
.y16f_c01331{bottom:377.853333pt;}
.y169_c01331{bottom:390.146667pt;}
.y16d_c01331{bottom:390.906667pt;}
.y16c_c01331{bottom:391.680000pt;}
.y16b_c01331{bottom:394.746667pt;}
.y16a_c01331{bottom:395.520000pt;}
.y15f_c01331{bottom:404.733333pt;}
.y15e_c01331{bottom:405.506667pt;}
.y164_c01331{bottom:406.266667pt;}
.y160_c01331{bottom:407.040000pt;}
.y165_c01331{bottom:407.813333pt;}
.y166_c01331{bottom:408.573333pt;}
.y163_c01331{bottom:409.346667pt;}
.y161_c01331{bottom:410.880000pt;}
.y167_c01331{bottom:411.653333pt;}
.y15d_c01331{bottom:412.413333pt;}
.y162_c01331{bottom:413.186667pt;}
.y168_c01331{bottom:420.866667pt;}
.y157_c01331{bottom:425.466667pt;}
.y15a_c01331{bottom:426.240000pt;}
.y15b_c01331{bottom:427.773333pt;}
.y156_c01331{bottom:428.546667pt;}
.y15c_c01331{bottom:429.306667pt;}
.y159_c01331{bottom:430.853333pt;}
.y158_c01331{bottom:431.613333pt;}
.y153_c01331{bottom:443.906667pt;}
.y152_c01331{bottom:444.666667pt;}
.y150_c01331{bottom:445.440000pt;}
.y154_c01331{bottom:446.213333pt;}
.y155_c01331{bottom:449.280000pt;}
.y151_c01331{bottom:450.053333pt;}
.y14b_c01331{bottom:461.573333pt;}
.y14c_c01331{bottom:462.333333pt;}
.y14a_c01331{bottom:463.106667pt;}
.y14e_c01331{bottom:463.866667pt;}
.y148_c01331{bottom:465.413333pt;}
.y14f_c01331{bottom:466.173333pt;}
.y14d_c01331{bottom:466.946667pt;}
.y149_c01331{bottom:468.480000pt;}
.y145_c01331{bottom:480.000000pt;}
.y143_c01331{bottom:480.773333pt;}
.y146_c01331{bottom:481.533333pt;}
.y144_c01331{bottom:482.306667pt;}
.y142_c01331{bottom:483.066667pt;}
.y147_c01331{bottom:485.373333pt;}
.y141_c01331{bottom:496.893333pt;}
.y13c_c01331{bottom:497.666667pt;}
.y13e_c01331{bottom:498.426667pt;}
.y13b_c01331{bottom:499.200000pt;}
.y13d_c01331{bottom:502.266667pt;}
.y13f_c01331{bottom:503.813333pt;}
.y140_c01331{bottom:504.573333pt;}
.y134_c01331{bottom:515.333333pt;}
.y135_c01331{bottom:516.093333pt;}
.y132_c01331{bottom:516.866667pt;}
.y137_c01331{bottom:517.626667pt;}
.y133_c01331{bottom:518.400000pt;}
.y138_c01331{bottom:519.173333pt;}
.y136_c01331{bottom:520.706667pt;}
.y13a_c01331{bottom:521.466667pt;}
.y139_c01331{bottom:522.240000pt;}
.y12c_c01331{bottom:532.986667pt;}
.y130_c01331{bottom:534.533333pt;}
.y12f_c01331{bottom:535.293333pt;}
.y131_c01331{bottom:536.066667pt;}
.y12d_c01331{bottom:538.373333pt;}
.y12e_c01331{bottom:539.133333pt;}
.y126_c01331{bottom:551.426667pt;}
.y129_c01331{bottom:552.960000pt;}
.y127_c01331{bottom:554.493333pt;}
.y12b_c01331{bottom:555.266667pt;}
.y128_c01331{bottom:556.026667pt;}
.y12a_c01331{bottom:557.573333pt;}
.y11e_c01331{bottom:569.093333pt;}
.y124_c01331{bottom:570.626667pt;}
.y121_c01331{bottom:571.386667pt;}
.y11f_c01331{bottom:572.160000pt;}
.y11d_c01331{bottom:572.933333pt;}
.y125_c01331{bottom:573.693333pt;}
.y123_c01331{bottom:574.466667pt;}
.y120_c01331{bottom:575.226667pt;}
.y122_c01331{bottom:577.533333pt;}
.y11a_c01331{bottom:587.520000pt;}
.y116_c01331{bottom:588.293333pt;}
.y11b_c01331{bottom:589.053333pt;}
.y11c_c01331{bottom:589.826667pt;}
.y118_c01331{bottom:590.586667pt;}
.y119_c01331{bottom:592.133333pt;}
.y117_c01331{bottom:592.893333pt;}
.y111_c01331{bottom:600.573333pt;}
.y112_c01331{bottom:601.346667pt;}
.y114_c01331{bottom:602.880000pt;}
.y110_c01331{bottom:603.653333pt;}
.y113_c01331{bottom:604.413333pt;}
.y10f_c01331{bottom:605.946667pt;}
.y115_c01331{bottom:610.560000pt;}
.y10a_c01331{bottom:623.613333pt;}
.y10b_c01331{bottom:624.386667pt;}
.y10e_c01331{bottom:625.146667pt;}
.y109_c01331{bottom:628.226667pt;}
.y108_c01331{bottom:628.986667pt;}
.y10c_c01331{bottom:629.760000pt;}
.y10d_c01331{bottom:630.533333pt;}
.y101_c01331{bottom:641.280000pt;}
.y102_c01331{bottom:642.053333pt;}
.y103_c01331{bottom:642.813333pt;}
.y106_c01331{bottom:643.586667pt;}
.y107_c01331{bottom:645.120000pt;}
.y105_c01331{bottom:646.653333pt;}
.y104_c01331{bottom:648.186667pt;}
.yf9_c01331{bottom:659.706667pt;}
.yfa_c01331{bottom:660.480000pt;}
.yfd_c01331{bottom:661.253333pt;}
.yfe_c01331{bottom:662.013333pt;}
.yfb_c01331{bottom:663.546667pt;}
.yff_c01331{bottom:665.093333pt;}
.yfc_c01331{bottom:665.853333pt;}
.y100_c01331{bottom:668.160000pt;}
.yf5_c01331{bottom:678.146667pt;}
.yf4_c01331{bottom:678.906667pt;}
.yf8_c01331{bottom:679.680000pt;}
.yf3_c01331{bottom:680.453333pt;}
.yf2_c01331{bottom:681.986667pt;}
.yf6_c01331{bottom:682.746667pt;}
.yf7_c01331{bottom:683.520000pt;}
.yee_c01331{bottom:689.666667pt;}
.yec_c01331{bottom:691.200000pt;}
.yed_c01331{bottom:692.733333pt;}
.yef_c01331{bottom:694.266667pt;}
.yf0_c01331{bottom:701.186667pt;}
.yf1_c01331{bottom:708.866667pt;}
.ye5_c01331{bottom:714.240000pt;}
.ye7_c01331{bottom:715.013333pt;}
.ye6_c01331{bottom:715.773333pt;}
.ye4_c01331{bottom:716.546667pt;}
.ye9_c01331{bottom:717.306667pt;}
.yeb_c01331{bottom:718.080000pt;}
.yea_c01331{bottom:719.613333pt;}
.ye8_c01331{bottom:724.986667pt;}
.yde_c01331{bottom:731.906667pt;}
.ye1_c01331{bottom:732.666667pt;}
.ydf_c01331{bottom:733.440000pt;}
.ye3_c01331{bottom:734.973333pt;}
.ydd_c01331{bottom:735.746667pt;}
.ye0_c01331{bottom:736.506667pt;}
.ye2_c01331{bottom:737.280000pt;}
.yd3_c01331{bottom:748.800000pt;}
.yd5_c01331{bottom:749.573333pt;}
.yd9_c01331{bottom:750.333333pt;}
.yd6_c01331{bottom:751.106667pt;}
.yd4_c01331{bottom:752.640000pt;}
.yda_c01331{bottom:753.413333pt;}
.ydb_c01331{bottom:754.173333pt;}
.yd7_c01331{bottom:754.946667pt;}
.yd8_c01331{bottom:758.786667pt;}
.ydc_c01331{bottom:759.546667pt;}
.yd0_c01331{bottom:766.466667pt;}
.ycc_c01331{bottom:767.226667pt;}
.ycd_c01331{bottom:768.000000pt;}
.yce_c01331{bottom:768.773333pt;}
.ycb_c01331{bottom:771.066667pt;}
.ycf_c01331{bottom:772.613333pt;}
.yd1_c01331{bottom:774.906667pt;}
.yd2_c01331{bottom:779.520000pt;}
.yc6_c01331{bottom:785.666667pt;}
.yc4_c01331{bottom:786.426667pt;}
.yc7_c01331{bottom:787.200000pt;}
.yc9_c01331{bottom:787.973333pt;}
.yc8_c01331{bottom:788.733333pt;}
.yc5_c01331{bottom:790.266667pt;}
.yca_c01331{bottom:791.813333pt;}
.ybe_c01331{bottom:804.093333pt;}
.yc2_c01331{bottom:804.866667pt;}
.yc1_c01331{bottom:805.626667pt;}
.yc0_c01331{bottom:806.400000pt;}
.ybf_c01331{bottom:807.173333pt;}
.ybd_c01331{bottom:807.933333pt;}
.yc3_c01331{bottom:809.466667pt;}
.yb6_c01331{bottom:820.986667pt;}
.ybc_c01331{bottom:821.760000pt;}
.yb8_c01331{bottom:822.533333pt;}
.yba_c01331{bottom:823.293333pt;}
.yb7_c01331{bottom:824.066667pt;}
.ybb_c01331{bottom:827.906667pt;}
.yb9_c01331{bottom:828.666667pt;}
.yad_c01331{bottom:838.653333pt;}
.yb2_c01331{bottom:840.186667pt;}
.yae_c01331{bottom:840.960000pt;}
.yb5_c01331{bottom:841.733333pt;}
.yac_c01331{bottom:842.493333pt;}
.yb3_c01331{bottom:844.026667pt;}
.yaf_c01331{bottom:844.800000pt;}
.yb4_c01331{bottom:845.573333pt;}
.yb1_c01331{bottom:849.413333pt;}
.yb0_c01331{bottom:850.173333pt;}
.ya4_c01331{bottom:857.093333pt;}
.ya5_c01331{bottom:857.853333pt;}
.ya8_c01331{bottom:859.386667pt;}
.ya3_c01331{bottom:860.160000pt;}
.yab_c01331{bottom:862.466667pt;}
.ya6_c01331{bottom:863.226667pt;}
.ya7_c01331{bottom:864.000000pt;}
.yaa_c01331{bottom:865.533333pt;}
.ya9_c01331{bottom:873.213333pt;}
.y9e_c01331{bottom:874.746667pt;}
.y9d_c01331{bottom:875.520000pt;}
.ya1_c01331{bottom:876.293333pt;}
.ya2_c01331{bottom:880.133333pt;}
.y9f_c01331{bottom:880.893333pt;}
.ya0_c01331{bottom:883.973333pt;}
.y96_c01331{bottom:892.413333pt;}
.y98_c01331{bottom:893.186667pt;}
.y9a_c01331{bottom:894.720000pt;}
.y97_c01331{bottom:895.493333pt;}
.y95_c01331{bottom:897.026667pt;}
.y9b_c01331{bottom:897.786667pt;}
.y99_c01331{bottom:898.560000pt;}
.y9c_c01331{bottom:899.333333pt;}
.y94_c01331{bottom:903.173333pt;}
.y87_c01331{bottom:910.853333pt;}
.y88_c01331{bottom:911.613333pt;}
.y8c_c01331{bottom:912.386667pt;}
.y8d_c01331{bottom:913.146667pt;}
.y89_c01331{bottom:913.920000pt;}
.y91_c01331{bottom:914.693333pt;}
.y90_c01331{bottom:915.453333pt;}
.y8e_c01331{bottom:916.226667pt;}
.y8a_c01331{bottom:916.986667pt;}
.y92_c01331{bottom:918.533333pt;}
.y8b_c01331{bottom:919.293333pt;}
.y8f_c01331{bottom:922.373333pt;}
.y93_c01331{bottom:925.440000pt;}
.y81_c01331{bottom:928.506667pt;}
.y85_c01331{bottom:929.280000pt;}
.y84_c01331{bottom:930.813333pt;}
.y83_c01331{bottom:932.346667pt;}
.y82_c01331{bottom:933.120000pt;}
.y80_c01331{bottom:934.653333pt;}
.y86_c01331{bottom:935.426667pt;}
.y7a_c01331{bottom:945.413333pt;}
.y78_c01331{bottom:946.173333pt;}
.y7e_c01331{bottom:947.706667pt;}
.y79_c01331{bottom:948.480000pt;}
.y7b_c01331{bottom:949.253333pt;}
.y7d_c01331{bottom:952.320000pt;}
.y7c_c01331{bottom:953.093333pt;}
.y7f_c01331{bottom:957.693333pt;}
.y70_c01331{bottom:962.306667pt;}
.y71_c01331{bottom:963.066667pt;}
.y6f_c01331{bottom:965.373333pt;}
.y72_c01331{bottom:966.146667pt;}
.y73_c01331{bottom:966.906667pt;}
.y77_c01331{bottom:968.453333pt;}
.y74_c01331{bottom:969.213333pt;}
.y75_c01331{bottom:969.986667pt;}
.y76_c01331{bottom:971.520000pt;}
.y6e_c01331{bottom:975.360000pt;}
.y64_c01331{bottom:981.506667pt;}
.y66_c01331{bottom:983.040000pt;}
.y67_c01331{bottom:983.813333pt;}
.y6c_c01331{bottom:984.573333pt;}
.y6d_c01331{bottom:986.106667pt;}
.y68_c01331{bottom:986.880000pt;}
.y69_c01331{bottom:987.653333pt;}
.y6a_c01331{bottom:989.186667pt;}
.y6b_c01331{bottom:989.946667pt;}
.y65_c01331{bottom:995.333333pt;}
.y5e_c01331{bottom:1001.466667pt;}
.y60_c01331{bottom:1003.773333pt;}
.y63_c01331{bottom:1004.546667pt;}
.y5f_c01331{bottom:1005.306667pt;}
.y62_c01331{bottom:1006.853333pt;}
.y61_c01331{bottom:1007.613333pt;}
.y57_c01331{bottom:1019.133333pt;}
.y5b_c01331{bottom:1019.906667pt;}
.y5c_c01331{bottom:1020.666667pt;}
.y5d_c01331{bottom:1021.440000pt;}
.y58_c01331{bottom:1022.213333pt;}
.y59_c01331{bottom:1022.973333pt;}
.y5a_c01331{bottom:1023.746667pt;}
.y1dd_c01331{bottom:1030.653333pt;}
.y1dc_c01331{bottom:1033.733333pt;}
.y53_c01331{bottom:1039.106667pt;}
.y51_c01331{bottom:1039.866667pt;}
.y52_c01331{bottom:1040.640000pt;}
.y54_c01331{bottom:1041.413333pt;}
.y55_c01331{bottom:1042.946667pt;}
.y56_c01331{bottom:1043.706667pt;}
.y1d9_c01331{bottom:1045.253333pt;}
.y50_c01331{bottom:1047.546667pt;}
.y4a_c01331{bottom:1056.000000pt;}
.y4c_c01331{bottom:1056.773333pt;}
.y4e_c01331{bottom:1057.533333pt;}
.y48_c01331{bottom:1058.306667pt;}
.y4b_c01331{bottom:1059.066667pt;}
.y49_c01331{bottom:1059.840000pt;}
.y4d_c01331{bottom:1061.373333pt;}
.y4f_c01331{bottom:1062.146667pt;}
.y43_c01331{bottom:1073.666667pt;}
.y46_c01331{bottom:1075.200000pt;}
.y47_c01331{bottom:1075.973333pt;}
.y42_c01331{bottom:1077.506667pt;}
.y44_c01331{bottom:1079.040000pt;}
.y45_c01331{bottom:1079.813333pt;}
.y40_c01331{bottom:1091.333333pt;}
.y3a_c01331{bottom:1092.093333pt;}
.y39_c01331{bottom:1092.866667pt;}
.y3f_c01331{bottom:1093.626667pt;}
.y3b_c01331{bottom:1094.400000pt;}
.y3e_c01331{bottom:1095.173333pt;}
.y3d_c01331{bottom:1096.706667pt;}
.y3c_c01331{bottom:1097.466667pt;}
.y41_c01331{bottom:1099.773333pt;}
.y34_c01331{bottom:1110.533333pt;}
.y37_c01331{bottom:1111.293333pt;}
.y33_c01331{bottom:1112.826667pt;}
.y35_c01331{bottom:1113.600000pt;}
.y36_c01331{bottom:1114.373333pt;}
.y38_c01331{bottom:1115.133333pt;}
.y2e_c01331{bottom:1127.426667pt;}
.y2f_c01331{bottom:1128.186667pt;}
.y2d_c01331{bottom:1128.960000pt;}
.y32_c01331{bottom:1129.733333pt;}
.y2c_c01331{bottom:1131.266667pt;}
.y31_c01331{bottom:1133.573333pt;}
.y30_c01331{bottom:1135.106667pt;}
.y1d7_c01331{bottom:1138.946667pt;}
.y1d8_c01331{bottom:1140.480000pt;}
.y26_c01331{bottom:1142.013333pt;}
.y29_c01331{bottom:1142.786667pt;}
.y27_c01331{bottom:1143.546667pt;}
.y2a_c01331{bottom:1144.320000pt;}
.y28_c01331{bottom:1145.853333pt;}
.y2b_c01331{bottom:1151.226667pt;}
.y1d_c01331{bottom:1163.520000pt;}
.y21_c01331{bottom:1165.053333pt;}
.y24_c01331{bottom:1165.826667pt;}
.y1c_c01331{bottom:1166.586667pt;}
.y1e_c01331{bottom:1167.360000pt;}
.y1f_c01331{bottom:1168.133333pt;}
.y20_c01331{bottom:1168.893333pt;}
.y25_c01331{bottom:1169.666667pt;}
.y22_c01331{bottom:1170.426667pt;}
.y23_c01331{bottom:1171.200000pt;}
.y13_c01331{bottom:1180.413333pt;}
.y16_c01331{bottom:1181.186667pt;}
.y17_c01331{bottom:1181.946667pt;}
.y12_c01331{bottom:1183.493333pt;}
.y19_c01331{bottom:1184.253333pt;}
.y18_c01331{bottom:1185.786667pt;}
.y14_c01331{bottom:1187.333333pt;}
.y1a_c01331{bottom:1188.093333pt;}
.y15_c01331{bottom:1188.866667pt;}
.y1b_c01331{bottom:1191.173333pt;}
.ya_c01331{bottom:1198.080000pt;}
.yc_c01331{bottom:1199.613333pt;}
.y10_c01331{bottom:1200.386667pt;}
.yd_c01331{bottom:1201.146667pt;}
.yb_c01331{bottom:1202.693333pt;}
.ye_c01331{bottom:1204.986667pt;}
.y11_c01331{bottom:1205.760000pt;}
.yf_c01331{bottom:1208.066667pt;}
.y5_c01331{bottom:1223.426667pt;}
.y9_c01331{bottom:1227.266667pt;}
.y6_c01331{bottom:1228.800000pt;}
.y7_c01331{bottom:1229.573333pt;}
.y8_c01331{bottom:1231.106667pt;}
.y2_c01331{bottom:1241.853333pt;}
.y3_c01331{bottom:1247.226667pt;}
.y1_c01331{bottom:1254.146667pt;}
.y4_c01331{bottom:1270.266667pt;}
.h5_c01331{height:2.764500pt;}
.h18_c01331{height:4.799479pt;}
.h2_c01331{height:5.519401pt;}
.h4_c01331{height:8.303099pt;}
.h20_c01331{height:11.038802pt;}
.h1c_c01331{height:13.822500pt;}
.h16_c01331{height:16.606198pt;}
.h14_c01331{height:19.341901pt;}
.h1f_c01331{height:22.125599pt;}
.h17_c01331{height:24.861302pt;}
.h15_c01331{height:27.645000pt;}
.h10_c01331{height:30.428698pt;}
.h1e_c01331{height:33.164401pt;}
.h1d_c01331{height:35.948099pt;}
.he_c01331{height:38.683802pt;}
.h13_c01331{height:41.467500pt;}
.hd_c01331{height:44.251198pt;}
.h11_c01331{height:46.986901pt;}
.h12_c01331{height:49.770599pt;}
.h6_c01331{height:52.506302pt;}
.h7_c01331{height:55.290000pt;}
.ha_c01331{height:58.073698pt;}
.h9_c01331{height:60.809401pt;}
.hb_c01331{height:63.593099pt;}
.h22_c01331{height:65.130599pt;}
.hc_c01331{height:66.328802pt;}
.h1b_c01331{height:69.112500pt;}
.h21_c01331{height:71.896198pt;}
.h19_c01331{height:74.631901pt;}
.h1a_c01331{height:77.415599pt;}
.h8_c01331{height:80.151302pt;}
.hf_c01331{height:82.935000pt;}
.h23_c01331{height:85.718698pt;}
.h3_c01331{height:152.047500pt;}
.h0_c01331{height:1341.693333pt;}
.h1_c01331{height:1342.000000pt;}
.w0_c01331{width:959.226667pt;}
.w1_c01331{width:959.333333pt;}
.x0_c01331{left:0.000000pt;}
.x119_c01331{left:37.626667pt;}
.x117_c01331{left:43.773333pt;}
.x118_c01331{left:51.453333pt;}
.x11a_c01331{left:123.653333pt;}
.x7e_c01331{left:126.720000pt;}
.x11b_c01331{left:137.466667pt;}
.x76_c01331{left:140.546667pt;}
.x7f_c01331{left:156.666667pt;}
.x47_c01331{left:162.053333pt;}
.x80_c01331{left:163.586667pt;}
.xdd_c01331{left:178.173333pt;}
.x81_c01331{left:188.160000pt;}
.x77_c01331{left:189.693333pt;}
.x68_c01331{left:192.773333pt;}
.x60_c01331{left:195.066667pt;}
.xa1_c01331{left:196.613333pt;}
.xd8_c01331{left:198.906667pt;}
.xc_c01331{left:200.453333pt;}
.x59_c01331{left:201.986667pt;}
.xb9_c01331{left:203.520000pt;}
.xe6_c01331{left:205.826667pt;}
.xef_c01331{left:207.360000pt;}
.xf8_c01331{left:208.893333pt;}
.x111_c01331{left:211.973333pt;}
.x5_c01331{left:213.506667pt;}
.xcd_c01331{left:218.880000pt;}
.x61_c01331{left:220.413333pt;}
.x24_c01331{left:222.720000pt;}
.x36_c01331{left:225.786667pt;}
.xc0_c01331{left:228.093333pt;}
.x10e_c01331{left:229.626667pt;}
.x88_c01331{left:231.933333pt;}
.x6_c01331{left:234.240000pt;}
.xd_c01331{left:235.773333pt;}
.xab_c01331{left:237.306667pt;}
.xa2_c01331{left:238.853333pt;}
.xc1_c01331{left:240.386667pt;}
.xc6_c01331{left:246.533333pt;}
.x62_c01331{left:248.066667pt;}
.x82_c01331{left:250.373333pt;}
.xd9_c01331{left:254.213333pt;}
.x69_c01331{left:255.746667pt;}
.xf0_c01331{left:257.280000pt;}
.xf6_c01331{left:258.813333pt;}
.xe7_c01331{left:261.893333pt;}
.xbc_c01331{left:263.426667pt;}
.x8f_c01331{left:265.733333pt;}
.x6a_c01331{left:267.266667pt;}
.x7_c01331{left:268.800000pt;}
.x48_c01331{left:271.106667pt;}
.x25_c01331{left:273.413333pt;}
.xf9_c01331{left:274.946667pt;}
.x51_c01331{left:277.253333pt;}
.xe8_c01331{left:279.546667pt;}
.x17_c01331{left:281.093333pt;}
.x26_c01331{left:282.626667pt;}
.xc2_c01331{left:284.160000pt;}
.x37_c01331{left:285.693333pt;}
.x70_c01331{left:288.773333pt;}
.xac_c01331{left:290.306667pt;}
.xb6_c01331{left:294.146667pt;}
.xf1_c01331{left:295.680000pt;}
.x78_c01331{left:297.213333pt;}
.xc7_c01331{left:298.746667pt;}
.x63_c01331{left:300.293333pt;}
.x6b_c01331{left:302.586667pt;}
.xa3_c01331{left:304.893333pt;}
.x3f_c01331{left:307.200000pt;}
.x38_c01331{left:309.506667pt;}
.xc8_c01331{left:312.573333pt;}
.x89_c01331{left:315.653333pt;}
.x109_c01331{left:317.186667pt;}
.x27_c01331{left:318.720000pt;}
.x79_c01331{left:320.253333pt;}
.xe9_c01331{left:321.786667pt;}
.x49_c01331{left:323.333333pt;}
.xc3_c01331{left:324.866667pt;}
.x52_c01331{left:326.400000pt;}
.xe3_c01331{left:327.933333pt;}
.xe_c01331{left:332.546667pt;}
.x104_c01331{left:334.080000pt;}
.x5a_c01331{left:336.386667pt;}
.x64_c01331{left:338.693333pt;}
.x71_c01331{left:340.226667pt;}
.x9c_c01331{left:342.533333pt;}
.x28_c01331{left:344.066667pt;}
.xa6_c01331{left:346.373333pt;}
.x18_c01331{left:348.666667pt;}
.xe4_c01331{left:350.973333pt;}
.x6c_c01331{left:353.280000pt;}
.xd5_c01331{left:354.813333pt;}
.x39_c01331{left:356.346667pt;}
.x4a_c01331{left:359.426667pt;}
.x8_c01331{left:364.026667pt;}
.x83_c01331{left:365.573333pt;}
.x29_c01331{left:368.640000pt;}
.x90_c01331{left:370.946667pt;}
.x4b_c01331{left:372.480000pt;}
.xde_c01331{left:374.013333pt;}
.xe5_c01331{left:376.320000pt;}
.xf4_c01331{left:377.853333pt;}
.x32_c01331{left:379.386667pt;}
.x40_c01331{left:382.466667pt;}
.x4c_c01331{left:386.306667pt;}
.x5b_c01331{left:387.840000pt;}
.x7a_c01331{left:390.146667pt;}
.xc4_c01331{left:392.453333pt;}
.x8a_c01331{left:393.986667pt;}
.xc9_c01331{left:395.520000pt;}
.x10f_c01331{left:397.053333pt;}
.x19_c01331{left:400.133333pt;}
.xce_c01331{left:403.200000pt;}
.x8b_c01331{left:404.733333pt;}
.xb7_c01331{left:406.266667pt;}
.x2a_c01331{left:407.813333pt;}
.xbd_c01331{left:409.346667pt;}
.xf2_c01331{left:412.413333pt;}
.x3a_c01331{left:414.720000pt;}
.xad_c01331{left:417.026667pt;}
.xf_c01331{left:418.560000pt;}
.x9d_c01331{left:420.093333pt;}
.xea_c01331{left:422.400000pt;}
.x97_c01331{left:425.466667pt;}
.x105_c01331{left:427.013333pt;}
.x65_c01331{left:429.306667pt;}
.x7b_c01331{left:433.146667pt;}
.x53_c01331{left:435.453333pt;}
.x4d_c01331{left:436.986667pt;}
.xcf_c01331{left:439.293333pt;}
.xa7_c01331{left:440.826667pt;}
.xba_c01331{left:442.373333pt;}
.x10a_c01331{left:443.906667pt;}
.x91_c01331{left:446.213333pt;}
.x54_c01331{left:447.746667pt;}
.x98_c01331{left:450.813333pt;}
.xfa_c01331{left:453.120000pt;}
.x1a_c01331{left:455.426667pt;}
.x10c_c01331{left:456.960000pt;}
.x9_c01331{left:458.493333pt;}
.xeb_c01331{left:460.026667pt;}
.xfd_c01331{left:461.573333pt;}
.x2b_c01331{left:466.173333pt;}
.xdf_c01331{left:468.480000pt;}
.x41_c01331{left:470.786667pt;}
.x1b_c01331{left:473.093333pt;}
.x10_c01331{left:474.626667pt;}
.x92_c01331{left:476.160000pt;}
.x8c_c01331{left:478.466667pt;}
.xbb_c01331{left:480.000000pt;}
.xfb_c01331{left:481.533333pt;}
.x55_c01331{left:483.066667pt;}
.xae_c01331{left:484.613333pt;}
.x1c_c01331{left:486.906667pt;}
.x11_c01331{left:488.453333pt;}
.x2c_c01331{left:490.746667pt;}
.xaf_c01331{left:492.293333pt;}
.xe0_c01331{left:493.826667pt;}
.x84_c01331{left:495.360000pt;}
.xf5_c01331{left:496.893333pt;}
.x10d_c01331{left:498.426667pt;}
.x113_c01331{left:499.973333pt;}
.x115_c01331{left:503.040000pt;}
.xa8_c01331{left:504.573333pt;}
.x5c_c01331{left:506.106667pt;}
.xb0_c01331{left:509.946667pt;}
.x2d_c01331{left:513.786667pt;}
.x3b_c01331{left:516.093333pt;}
.xb2_c01331{left:518.400000pt;}
.xd6_c01331{left:519.933333pt;}
.x1d_c01331{left:522.240000pt;}
.xa_c01331{left:525.306667pt;}
.xe1_c01331{left:527.613333pt;}
.x3c_c01331{left:529.146667pt;}
.xfc_c01331{left:531.453333pt;}
.xda_c01331{left:532.986667pt;}
.x1_c01331{left:534.533333pt;}
.xb5_c01331{left:536.826667pt;}
.x33_c01331{left:539.906667pt;}
.x42_c01331{left:542.213333pt;}
.x66_c01331{left:547.586667pt;}
.x12_c01331{left:549.893333pt;}
.x1e_c01331{left:551.426667pt;}
.xec_c01331{left:552.960000pt;}
.xf7_c01331{left:554.493333pt;}
.x85_c01331{left:556.026667pt;}
.xb8_c01331{left:559.106667pt;}
.x99_c01331{left:560.640000pt;}
.x2_c01331{left:562.173333pt;}
.x6d_c01331{left:563.706667pt;}
.x2e_c01331{left:565.253333pt;}
.x56_c01331{left:568.320000pt;}
.x93_c01331{left:570.626667pt;}
.x7c_c01331{left:573.693333pt;}
.x43_c01331{left:576.773333pt;}
.x72_c01331{left:579.840000pt;}
.xf3_c01331{left:581.373333pt;}
.x9a_c01331{left:583.680000pt;}
.x94_c01331{left:585.213333pt;}
.x5d_c01331{left:587.520000pt;}
.x100_c01331{left:589.826667pt;}
.xb3_c01331{left:591.360000pt;}
.x34_c01331{left:594.426667pt;}
.x106_c01331{left:596.733333pt;}
.x110_c01331{left:599.040000pt;}
.x86_c01331{left:601.346667pt;}
.xd0_c01331{left:603.653333pt;}
.x6e_c01331{left:605.186667pt;}
.x1f_c01331{left:607.493333pt;}
.xbe_c01331{left:610.560000pt;}
.x44_c01331{left:613.626667pt;}
.x3d_c01331{left:615.173333pt;}
.x9e_c01331{left:616.706667pt;}
.xe2_c01331{left:620.546667pt;}
.xed_c01331{left:622.080000pt;}
.x8d_c01331{left:624.386667pt;}
.x4e_c01331{left:626.693333pt;}
.x20_c01331{left:628.986667pt;}
.x95_c01331{left:630.533333pt;}
.x11c_c01331{left:635.906667pt;}
.x73_c01331{left:637.440000pt;}
.x13_c01331{left:638.973333pt;}
.x2f_c01331{left:641.280000pt;}
.xbf_c01331{left:643.586667pt;}
.xb4_c01331{left:645.120000pt;}
.x21_c01331{left:646.653333pt;}
.x116_c01331{left:648.186667pt;}
.x5e_c01331{left:649.733333pt;}
.xd3_c01331{left:652.026667pt;}
.x30_c01331{left:653.573333pt;}
.xca_c01331{left:656.640000pt;}
.xee_c01331{left:658.173333pt;}
.x114_c01331{left:659.706667pt;}
.x74_c01331{left:661.253333pt;}
.x3e_c01331{left:662.786667pt;}
.x57_c01331{left:664.320000pt;}
.xd7_c01331{left:666.626667pt;}
.xcb_c01331{left:670.466667pt;}
.x3_c01331{left:672.000000pt;}
.x4f_c01331{left:674.306667pt;}
.x14_c01331{left:676.613333pt;}
.x67_c01331{left:679.680000pt;}
.x10b_c01331{left:681.213333pt;}
.x75_c01331{left:682.746667pt;}
.xa4_c01331{left:687.360000pt;}
.xdb_c01331{left:688.893333pt;}
.x35_c01331{left:692.733333pt;}
.x112_c01331{left:695.040000pt;}
.xfe_c01331{left:697.346667pt;}
.xd1_c01331{left:698.880000pt;}
.x15_c01331{left:700.413333pt;}
.x4_c01331{left:702.720000pt;}
.xc5_c01331{left:704.253333pt;}
.xd2_c01331{left:705.786667pt;}
.x87_c01331{left:708.093333pt;}
.x45_c01331{left:710.400000pt;}
.x9f_c01331{left:711.933333pt;}
.x50_c01331{left:714.240000pt;}
.x58_c01331{left:716.546667pt;}
.x5f_c01331{left:718.080000pt;}
.x16_c01331{left:720.386667pt;}
.x7d_c01331{left:721.920000pt;}
.x9b_c01331{left:723.453333pt;}
.x22_c01331{left:724.986667pt;}
.x96_c01331{left:726.533333pt;}
.xb_c01331{left:728.826667pt;}
.x31_c01331{left:734.213333pt;}
.xdc_c01331{left:736.506667pt;}
.x102_c01331{left:738.053333pt;}
.xa9_c01331{left:739.586667pt;}
.xaa_c01331{left:744.186667pt;}
.xa0_c01331{left:746.493333pt;}
.x46_c01331{left:751.866667pt;}
.x23_c01331{left:753.413333pt;}
.xa5_c01331{left:756.480000pt;}
.x103_c01331{left:759.546667pt;}
.x8e_c01331{left:762.626667pt;}
.x6f_c01331{left:767.226667pt;}
.xd4_c01331{left:770.306667pt;}
.xcc_c01331{left:774.906667pt;}
.xff_c01331{left:776.453333pt;}
.x107_c01331{left:780.293333pt;}
.xb1_c01331{left:783.360000pt;}
.x101_c01331{left:786.426667pt;}
.x108_c01331{left:788.733333pt;}
.x11d_c01331{left:796.413333pt;}
.x11e_c01331{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_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_87c48f5ec0dffdf15a0e6d1a.woff2')format("woff");}.ff1_c01332{font-family:ff1_c01332;line-height:1.109863;font-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_c01332{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m57_c01332{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.me4_c01332{transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066675,0.000000,0.000000,0.250000,0,0);}
.m55_c01332{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m7e_c01332{transform:matrix(0.084525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.084525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.084525,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01332{transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);}
.m47_c01332{transform:matrix(0.099800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099800,0.000000,0.000000,0.250000,0,0);}
.m15a_c01332{transform:matrix(0.104025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104025,0.000000,0.000000,0.250000,0,0);}
.m183_c01332{transform:matrix(0.105075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105075,0.000000,0.000000,0.250000,0,0);}
.me0_c01332{transform:matrix(0.105100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105100,0.000000,0.000000,0.250000,0,0);}
.m118_c01332{transform:matrix(0.107050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107050,0.000000,0.000000,0.250000,0,0);}
.m115_c01332{transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111875,0.000000,0.000000,0.250000,0,0);}
.m7f_c01332{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);}
.md2_c01332{transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115925,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01332{transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118375,0.000000,0.000000,0.250000,0,0);}
.m52_c01332{transform:matrix(0.119200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119200,0.000000,0.000000,0.250000,0,0);}
.mcb_c01332{transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120975,0.000000,0.000000,0.250000,0,0);}
.m42_c01332{transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121750,0.000000,0.000000,0.250000,0,0);}
.m17b_c01332{transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122500,0.000000,0.000000,0.250000,0,0);}
.m154_c01332{transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123575,0.000000,0.000000,0.250000,0,0);}
.m3_c01332{transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124075,0.000000,0.000000,0.250000,0,0);}
.m18f_c01332{transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);}
.mf7_c01332{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m119_c01332{transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);}
.mc7_c01332{transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126125,0.000000,0.000000,0.250000,0,0);}
.m12b_c01332{transform:matrix(0.126975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126975,0.000000,0.000000,0.250000,0,0);}
.m53_c01332{transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);}
.md5_c01332{transform:matrix(0.128775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128775,0.000000,0.000000,0.250000,0,0);}
.m169_c01332{transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);}
.m151_c01332{transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130650,0.000000,0.000000,0.250000,0,0);}
.mcd_c01332{transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131075,0.000000,0.000000,0.250000,0,0);}
.m117_c01332{transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132675,0.000000,0.000000,0.250000,0,0);}
.m9f_c01332{transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133375,0.000000,0.000000,0.250000,0,0);}
.m176_c01332{transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134225,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01332{transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134600,0.000000,0.000000,0.250000,0,0);}
.me1_c01332{transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136000,0.000000,0.000000,0.250000,0,0);}
.mf9_c01332{transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136525,0.000000,0.000000,0.250000,0,0);}
.m14a_c01332{transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01332{transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01332{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.mca_c01332{transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137700,0.000000,0.000000,0.250000,0,0);}
.m98_c01332{transform:matrix(0.140400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140400,0.000000,0.000000,0.250000,0,0);}
.m19b_c01332{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.md7_c01332{transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140925,0.000000,0.000000,0.250000,0,0);}
.m157_c01332{transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141325,0.000000,0.000000,0.250000,0,0);}
.ma_c01332{transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141475,0.000000,0.000000,0.250000,0,0);}
.med_c01332{transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142525,0.000000,0.000000,0.250000,0,0);}
.m1af_c01332{transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142925,0.000000,0.000000,0.250000,0,0);}
.mb9_c01332{transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143750,0.000000,0.000000,0.250000,0,0);}
.m16_c01332{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01332{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.m43_c01332{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.m177_c01332{transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145500,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01332{transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146125,0.000000,0.000000,0.250000,0,0);}
.mec_c01332{transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146675,0.000000,0.000000,0.250000,0,0);}
.m81_c01332{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);}
.m127_c01332{transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147075,0.000000,0.000000,0.250000,0,0);}
.mba_c01332{transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);}
.m18d_c01332{transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);}
.m114_c01332{transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);}
.m150_c01332{transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148575,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01332{transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148675,0.000000,0.000000,0.250000,0,0);}
.mcc_c01332{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01332{transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);}
.m76_c01332{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);}
.m171_c01332{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);}
.m184_c01332{transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01332{transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150500,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01332{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01332{transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);}
.m145_c01332{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);}
.m6a_c01332{transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154700,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01332{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);}
.m10b_c01332{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.m15e_c01332{transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);}
.mdf_c01332{transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157650,0.000000,0.000000,0.250000,0,0);}
.mf8_c01332{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.mc3_c01332{transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159325,0.000000,0.000000,0.250000,0,0);}
.m182_c01332{transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);}
.m16a_c01332{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01332{transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);}
.mb_c01332{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.mb8_c01332{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.m54_c01332{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.m19f_c01332{transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162950,0.000000,0.000000,0.250000,0,0);}
.md3_c01332{transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164475,0.000000,0.000000,0.250000,0,0);}
.m96_c01332{transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);}
.m69_c01332{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m6_c01332{transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164800,0.000000,0.000000,0.250000,0,0);}
.m14f_c01332{transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);}
.mf1_c01332{transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165750,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01332{transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165975,0.000000,0.000000,0.250000,0,0);}
.mf3_c01332{transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01332{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.m159_c01332{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.mf6_c01332{transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);}
.m149_c01332{transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);}
.mc6_c01332{transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168550,0.000000,0.000000,0.250000,0,0);}
.m188_c01332{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m187_c01332{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.m19a_c01332{transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168925,0.000000,0.000000,0.250000,0,0);}
.m39_c01332{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);}
.me3_c01332{transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169425,0.000000,0.000000,0.250000,0,0);}
.meb_c01332{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);}
.m14e_c01332{transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170300,0.000000,0.000000,0.250000,0,0);}
.m173_c01332{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.md1_c01332{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.mdb_c01332{transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);}
.m99_c01332{transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171900,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01332{transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172000,0.000000,0.000000,0.250000,0,0);}
.m158_c01332{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m129_c01332{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m2a_c01332{transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172750,0.000000,0.000000,0.250000,0,0);}
.m19c_c01332{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);}
.m121_c01332{transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174125,0.000000,0.000000,0.250000,0,0);}
.m116_c01332{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m22_c01332{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.m1ab_c01332{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.m15c_c01332{transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176275,0.000000,0.000000,0.250000,0,0);}
.m120_c01332{transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176325,0.000000,0.000000,0.250000,0,0);}
.mf_c01332{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m110_c01332{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01332{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.m2f_c01332{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m19e_c01332{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m8a_c01332{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m168_c01332{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m162_c01332{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m124_c01332{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.mbd_c01332{transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180400,0.000000,0.000000,0.250000,0,0);}
.m90_c01332{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.ma1_c01332{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);}
.m1c1_c01332{transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182125,0.000000,0.000000,0.250000,0,0);}
.m1f_c01332{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.m13_c01332{transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01332{transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);}
.m15f_c01332{transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183225,0.000000,0.000000,0.250000,0,0);}
.m29_c01332{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);}
.m155_c01332{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);}
.md4_c01332{transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);}
.m11e_c01332{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.me9_c01332{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m164_c01332{transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185675,0.000000,0.000000,0.250000,0,0);}
.m11a_c01332{transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186025,0.000000,0.000000,0.250000,0,0);}
.m77_c01332{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.m5d_c01332{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m147_c01332{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);}
.m2b_c01332{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m153_c01332{transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188575,0.000000,0.000000,0.250000,0,0);}
.m8c_c01332{transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189300,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01332{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m6b_c01332{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);}
.m128_c01332{transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);}
.m9a_c01332{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01332{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);}
.m125_c01332{transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191125,0.000000,0.000000,0.250000,0,0);}
.mf5_c01332{transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191325,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01332{transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191400,0.000000,0.000000,0.250000,0,0);}
.m10f_c01332{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);}
.m85_c01332{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.mc8_c01332{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m1c0_c01332{transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192900,0.000000,0.000000,0.250000,0,0);}
.m88_c01332{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m196_c01332{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);}
.m178_c01332{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);}
.m167_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);}
.m1b1_c01332{transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195750,0.000000,0.000000,0.250000,0,0);}
.m175_c01332{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.m192_c01332{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);}
.mdd_c01332{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.m191_c01332{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m82_c01332{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);}
.m132_c01332{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01332{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);}
.m105_c01332{transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199325,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01332{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m156_c01332{transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199975,0.000000,0.000000,0.250000,0,0);}
.ma3_c01332{transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);}
.m17d_c01332{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m7b_c01332{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);}
.m189_c01332{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);}
.m194_c01332{transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);}
.mbc_c01332{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);}
.m179_c01332{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m161_c01332{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);}
.m1b0_c01332{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m14b_c01332{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m5e_c01332{transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);}
.m6d_c01332{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);}
.mc0_c01332{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m66_c01332{transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);}
.m126_c01332{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);}
.m143_c01332{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01332{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);}
.m10a_c01332{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.mb7_c01332{transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204650,0.000000,0.000000,0.250000,0,0);}
.mb4_c01332{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m180_c01332{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.m18b_c01332{transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);}
.m86_c01332{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);}
.m12e_c01332{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);}
.m199_c01332{transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206750,0.000000,0.000000,0.250000,0,0);}
.m16e_c01332{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m12_c01332{transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);}
.mee_c01332{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.m16c_c01332{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);}
.m7_c01332{transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208250,0.000000,0.000000,0.250000,0,0);}
.m11c_c01332{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m12a_c01332{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.mdc_c01332{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);}
.m123_c01332{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);}
.ma7_c01332{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01332{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);}
.ma2_c01332{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);}
.mb2_c01332{transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210625,0.000000,0.000000,0.250000,0,0);}
.m18c_c01332{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m17a_c01332{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);}
.m9d_c01332{transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211650,0.000000,0.000000,0.250000,0,0);}
.m18_c01332{transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);}
.m75_c01332{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m1c4_c01332{transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01332{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.m8f_c01332{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.mc4_c01332{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);}
.m11d_c01332{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);}
.m108_c01332{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.m141_c01332{transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);}
.m11_c01332{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m5f_c01332{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);}
.mda_c01332{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m94_c01332{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.m17e_c01332{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);}
.m97_c01332{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.m33_c01332{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01332{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.m144_c01332{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);}
.m14d_c01332{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.m23_c01332{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);}
.m12d_c01332{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.m10e_c01332{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.m92_c01332{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m50_c01332{transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217350,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01332{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.md8_c01332{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.m10c_c01332{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.mf2_c01332{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);}
.m197_c01332{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);}
.m148_c01332{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);}
.m89_c01332{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.mbb_c01332{transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);}
.md6_c01332{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.m7c_c01332{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);}
.m5_c01332{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_c01332{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);}
.m142_c01332{transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);}
.mb3_c01332{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m41_c01332{transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221275,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01332{transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);}
.m7d_c01332{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);}
.mbe_c01332{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.mbf_c01332{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m139_c01332{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);}
.m3e_c01332{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.m56_c01332{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m133_c01332{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);}
.m84_c01332{transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223725,0.000000,0.000000,0.250000,0,0);}
.mfb_c01332{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2_c01332{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);}
.m15b_c01332{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);}
.m17_c01332{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);}
.m198_c01332{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m78_c01332{transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);}
.m131_c01332{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);}
.m195_c01332{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);}
.m106_c01332{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.ma9_c01332{transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);}
.md0_c01332{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.m95_c01332{transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);}
.ma0_c01332{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);}
.mac_c01332{transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227350,0.000000,0.000000,0.250000,0,0);}
.m172_c01332{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);}
.m3d_c01332{transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228625,0.000000,0.000000,0.250000,0,0);}
.m80_c01332{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m152_c01332{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);}
.m58_c01332{transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);}
.m146_c01332{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);}
.mb6_c01332{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);}
.mea_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);}
.m1a2_c01332{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);}
.m16b_c01332{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.mce_c01332{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m165_c01332{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);}
.m17f_c01332{transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);}
.m109_c01332{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.ma8_c01332{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m17c_c01332{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);}
.m12f_c01332{transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01332{transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);}
.m107_c01332{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);}
.m1c7_c01332{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);}
.ma4_c01332{transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235050,0.000000,0.000000,0.250000,0,0);}
.m16d_c01332{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);}
.m134_c01332{transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);}
.m44_c01332{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m14c_c01332{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);}
.mc2_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);}
.m13c_c01332{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m185_c01332{transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236650,0.000000,0.000000,0.250000,0,0);}
.m93_c01332{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);}
.m1be_c01332{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);}
.md9_c01332{transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01332{transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);}
.m16f_c01332{transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238075,0.000000,0.000000,0.250000,0,0);}
.m181_c01332{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);}
.m4d_c01332{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);}
.m11f_c01332{transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238825,0.000000,0.000000,0.250000,0,0);}
.mc1_c01332{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m140_c01332{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);}
.m3c_c01332{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.me2_c01332{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);}
.m65_c01332{transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240250,0.000000,0.000000,0.250000,0,0);}
.m166_c01332{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);}
.m5c_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);}
.mb0_c01332{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);}
.m24_c01332{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m2e_c01332{transform:matrix(0.241400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241400,0.000000,0.000000,0.250000,0,0);}
.me_c01332{transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);}
.m174_c01332{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);}
.m1c_c01332{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);}
.m137_c01332{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);}
.mfa_c01332{transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243525,0.000000,0.000000,0.250000,0,0);}
.m18a_c01332{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);}
.mb1_c01332{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m28_c01332{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);}
.m4e_c01332{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);}
.m13f_c01332{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m138_c01332{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);}
.m163_c01332{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);}
.me7_c01332{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);}
.mcf_c01332{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);}
.m135_c01332{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);}
.m18e_c01332{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m13b_c01332{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);}
.m111_c01332{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);}
.m12c_c01332{transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248550,0.000000,0.000000,0.250000,0,0);}
.m63_c01332{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m8_c01332{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);}
.m45_c01332{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m19_c01332{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);}
.m31_c01332{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);}
.m87_c01332{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);}
.ma6_c01332{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);}
.m3f_c01332{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01332{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m9b_c01332{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01332{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);}
.mfc_c01332{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.me6_c01332{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);}
.m48_c01332{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);}
.m25_c01332{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c01332{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);}
.m4_c01332{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mab_c01332{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m30_c01332{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);}
.m6c_c01332{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc5_c01332{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);}
.m60_c01332{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);}
.m46_c01332{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01332{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m40_c01332{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);}
.m64_c01332{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01332{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mae_c01332{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);}
.m1d_c01332{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m34_c01332{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m20_c01332{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mc_c01332{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m21_c01332{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c01332{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m83_c01332{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01332{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m59_c01332{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);}
.m8e_c01332{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01332{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8d_c01332{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m38_c01332{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01332{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);}
.m13a_c01332{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);}
.m2c_c01332{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11b_c01332{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01332{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);}
.mf4_c01332{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01332{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m136_c01332{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mff_c01332{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mad_c01332{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m10_c01332{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);}
.m9_c01332{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m37_c01332{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m190_c01332{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);}
.m73_c01332{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.me5_c01332{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mde_c01332{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m32_c01332{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m27_c01332{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);}
.m130_c01332{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m13d_c01332{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);}
.me8_c01332{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m103_c01332{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m49_c01332{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);}
.mf0_c01332{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01332{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m102_c01332{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m67_c01332{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m91_c01332{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m62_c01332{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);}
.m36_c01332{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m26_c01332{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m72_c01332{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m68_c01332{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m100_c01332{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01332{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mb5_c01332{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m70_c01332{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m14_c01332{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);}
.ma5_c01332{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m122_c01332{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01332{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.maf_c01332{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.mfe_c01332{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);}
.m160_c01332{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01332{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m113_c01332{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m104_c01332{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01332{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);}
.m6f_c01332{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.maa_c01332{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m19d_c01332{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m13e_c01332{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m1c8_c01332{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01332{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m193_c01332{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m15_c01332{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m170_c01332{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m0_c01332{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m1_c01332{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m15d_c01332{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m71_c01332{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m101_c01332{transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.062500,0.000000,0.000000,0.250000,0,0);}
.mef_c01332{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m186_c01332{transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.127500,0.000000,0.000000,0.250000,0,0);}
.m61_c01332{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.mfd_c01332{transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);}
.m112_c01332{transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.252500,0.000000,0.000000,0.250000,0,0);}
.m10d_c01332{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m74_c01332{transform:matrix(1.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.512500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01332{transform:matrix(6.425000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.425000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.425000,0.000000,0.000000,0.250000,0,0);}
.v1_c01332{vertical-align:-10.380000px;}
.v2_c01332{vertical-align:-6.900000px;}
.v0_c01332{vertical-align:0.000000px;}
.v3_c01332{vertical-align:13.800000px;}
.ls1_c01332{letter-spacing:0.000000px;}
.ls0_c01332{letter-spacing:64.345440px;}
.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;}
}
.ws1_c01332{word-spacing:-15.694680px;}
.ws2_c01332{word-spacing:-12.953520px;}
.ws3_c01332{word-spacing:0.000000px;}
.ws0_c01332{word-spacing:4.345440px;}
.fc0_c01332{color:transparent;}
.fsf_c01332{font-size:3.456000px;}
.fs17_c01332{font-size:6.000000px;}
.fs18_c01332{font-size:6.900000px;}
.fsd_c01332{font-size:10.380000px;}
.fs1_c01332{font-size:13.800000px;}
.fs1a_c01332{font-size:17.280000px;}
.fs1f_c01332{font-size:20.760000px;}
.fs0_c01332{font-size:24.180000px;}
.fse_c01332{font-size:27.660000px;}
.fs1b_c01332{font-size:31.080000px;}
.fs7_c01332{font-size:34.560000px;}
.fs14_c01332{font-size:38.040000px;}
.fs1e_c01332{font-size:41.460000px;}
.fs10_c01332{font-size:44.940000px;}
.fs15_c01332{font-size:48.360000px;}
.fs9_c01332{font-size:51.840000px;}
.fs12_c01332{font-size:55.320000px;}
.fs4_c01332{font-size:58.740000px;}
.fs16_c01332{font-size:62.220000px;}
.fs8_c01332{font-size:65.640000px;}
.fsa_c01332{font-size:69.120000px;}
.fs6_c01332{font-size:72.600000px;}
.fsc_c01332{font-size:76.020000px;}
.fs5_c01332{font-size:79.500000px;}
.fs13_c01332{font-size:82.920000px;}
.fs11_c01332{font-size:86.400000px;}
.fs1c_c01332{font-size:89.880000px;}
.fs2_c01332{font-size:93.300000px;}
.fs1d_c01332{font-size:96.780000px;}
.fs19_c01332{font-size:100.200000px;}
.fsb_c01332{font-size:103.680000px;}
.fs20_c01332{font-size:107.160000px;}
.fs3_c01332{font-size:221.160000px;}
.y0_c01332{bottom:0.000000px;}
.y204_c01332{bottom:218.595000px;}
.y202_c01332{bottom:220.320000px;}
.y201_c01332{bottom:222.915000px;}
.y1ff_c01332{bottom:223.770000px;}
.y1fe_c01332{bottom:226.365000px;}
.y1fc_c01332{bottom:227.235000px;}
.y1fd_c01332{bottom:228.090000px;}
.y203_c01332{bottom:228.960000px;}
.y1fb_c01332{bottom:229.830000px;}
.y200_c01332{bottom:237.600000px;}
.y1fa_c01332{bottom:241.920000px;}
.y1f9_c01332{bottom:242.790000px;}
.y1f8_c01332{bottom:244.515000px;}
.y1f5_c01332{bottom:245.370000px;}
.y1f6_c01332{bottom:246.240000px;}
.y1f1_c01332{bottom:247.110000px;}
.y1f4_c01332{bottom:249.690000px;}
.y1f2_c01332{bottom:250.560000px;}
.y1f3_c01332{bottom:253.155000px;}
.y1f7_c01332{bottom:257.475000px;}
.y1ec_c01332{bottom:261.795000px;}
.y1f0_c01332{bottom:262.650000px;}
.y1ef_c01332{bottom:264.390000px;}
.y1ed_c01332{bottom:265.245000px;}
.y1ee_c01332{bottom:266.970000px;}
.y1e8_c01332{bottom:267.840000px;}
.y1ea_c01332{bottom:268.710000px;}
.y1eb_c01332{bottom:269.565000px;}
.y1e7_c01332{bottom:271.290000px;}
.y1e9_c01332{bottom:272.160000px;}
.y1e5_c01332{bottom:283.395000px;}
.y1e4_c01332{bottom:284.250000px;}
.y1e6_c01332{bottom:286.845000px;}
.y1e2_c01332{bottom:287.715000px;}
.y1df_c01332{bottom:288.570000px;}
.y1e3_c01332{bottom:289.440000px;}
.y1e1_c01332{bottom:290.310000px;}
.y1e0_c01332{bottom:291.165000px;}
.y1de_c01332{bottom:305.850000px;}
.y1dc_c01332{bottom:308.445000px;}
.y1dd_c01332{bottom:309.315000px;}
.y1db_c01332{bottom:311.040000px;}
.y1d8_c01332{bottom:311.910000px;}
.y1d9_c01332{bottom:312.765000px;}
.y1da_c01332{bottom:313.635000px;}
.y1d7_c01332{bottom:314.490000px;}
.y1d6_c01332{bottom:315.360000px;}
.y1d5_c01332{bottom:324.000000px;}
.y1d4_c01332{bottom:324.870000px;}
.y1d3_c01332{bottom:325.725000px;}
.y1cf_c01332{bottom:328.320000px;}
.y1ce_c01332{bottom:330.045000px;}
.y1cd_c01332{bottom:331.770000px;}
.y1d2_c01332{bottom:332.640000px;}
.y1d0_c01332{bottom:333.510000px;}
.y1d1_c01332{bottom:334.365000px;}
.y1ca_c01332{bottom:343.005000px;}
.y1cb_c01332{bottom:343.875000px;}
.y1c9_c01332{bottom:344.730000px;}
.y1cc_c01332{bottom:345.600000px;}
.y1c7_c01332{bottom:350.790000px;}
.y1c6_c01332{bottom:351.645000px;}
.y1c8_c01332{bottom:354.240000px;}
.y1c5_c01332{bottom:361.155000px;}
.y1c1_c01332{bottom:362.880000px;}
.y1c4_c01332{bottom:363.750000px;}
.y1c0_c01332{bottom:364.605000px;}
.y1c2_c01332{bottom:370.650000px;}
.y1c3_c01332{bottom:371.520000px;}
.y1bf_c01332{bottom:373.245000px;}
.y1be_c01332{bottom:382.755000px;}
.y1bd_c01332{bottom:386.205000px;}
.y1ba_c01332{bottom:387.075000px;}
.y1bc_c01332{bottom:388.800000px;}
.y1b9_c01332{bottom:389.670000px;}
.y1bb_c01332{bottom:391.395000px;}
.y1b8_c01332{bottom:392.250000px;}
.y1b7_c01332{bottom:396.570000px;}
.y1b6_c01332{bottom:403.485000px;}
.y1b5_c01332{bottom:406.950000px;}
.y1b4_c01332{bottom:407.805000px;}
.y1b1_c01332{bottom:410.400000px;}
.y1ae_c01332{bottom:411.270000px;}
.y1af_c01332{bottom:412.995000px;}
.y1b3_c01332{bottom:414.720000px;}
.y1b2_c01332{bottom:415.590000px;}
.y1b0_c01332{bottom:416.445000px;}
.y1ac_c01332{bottom:425.955000px;}
.y1ab_c01332{bottom:427.680000px;}
.y1aa_c01332{bottom:429.405000px;}
.y1a9_c01332{bottom:430.275000px;}
.y1ad_c01332{bottom:432.870000px;}
.y1a6_c01332{bottom:435.450000px;}
.y1a5_c01332{bottom:436.320000px;}
.y1a7_c01332{bottom:442.365000px;}
.y1a8_c01332{bottom:443.235000px;}
.y1a4_c01332{bottom:447.555000px;}
.y1a0_c01332{bottom:450.150000px;}
.y1a2_c01332{bottom:451.875000px;}
.y19e_c01332{bottom:453.600000px;}
.y1a3_c01332{bottom:454.470000px;}
.y19f_c01332{bottom:456.195000px;}
.y19d_c01332{bottom:457.920000px;}
.y1a1_c01332{bottom:463.110000px;}
.y19b_c01332{bottom:465.690000px;}
.y198_c01332{bottom:468.285000px;}
.y196_c01332{bottom:469.155000px;}
.y197_c01332{bottom:470.010000px;}
.y19a_c01332{bottom:470.880000px;}
.y194_c01332{bottom:471.750000px;}
.y19c_c01332{bottom:472.605000px;}
.y199_c01332{bottom:473.475000px;}
.y195_c01332{bottom:474.330000px;}
.y193_c01332{bottom:476.070000px;}
.y192_c01332{bottom:479.520000px;}
.y190_c01332{bottom:488.160000px;}
.y18f_c01332{bottom:491.610000px;}
.y18b_c01332{bottom:492.480000px;}
.y18a_c01332{bottom:493.350000px;}
.y18e_c01332{bottom:495.930000px;}
.y18c_c01332{bottom:496.800000px;}
.y18d_c01332{bottom:497.670000px;}
.y189_c01332{bottom:498.525000px;}
.y188_c01332{bottom:499.395000px;}
.y191_c01332{bottom:502.845000px;}
.y187_c01332{bottom:503.715000px;}
.y186_c01332{bottom:505.440000px;}
.y185_c01332{bottom:507.165000px;}
.y181_c01332{bottom:508.035000px;}
.y17d_c01332{bottom:509.760000px;}
.y17e_c01332{bottom:510.630000px;}
.y17c_c01332{bottom:511.485000px;}
.y182_c01332{bottom:512.355000px;}
.y180_c01332{bottom:514.080000px;}
.y184_c01332{bottom:516.675000px;}
.y183_c01332{bottom:517.530000px;}
.y17f_c01332{bottom:519.270000px;}
.y17b_c01332{bottom:520.125000px;}
.y178_c01332{bottom:528.765000px;}
.y179_c01332{bottom:529.635000px;}
.y17a_c01332{bottom:531.360000px;}
.y177_c01332{bottom:532.230000px;}
.y175_c01332{bottom:533.955000px;}
.y173_c01332{bottom:534.810000px;}
.y176_c01332{bottom:535.680000px;}
.y174_c01332{bottom:539.130000px;}
.y172_c01332{bottom:548.640000px;}
.y170_c01332{bottom:551.235000px;}
.y16c_c01332{bottom:552.090000px;}
.y16e_c01332{bottom:553.830000px;}
.y171_c01332{bottom:554.685000px;}
.y16d_c01332{bottom:557.280000px;}
.y16f_c01332{bottom:559.005000px;}
.y16b_c01332{bottom:559.875000px;}
.y166_c01332{bottom:568.515000px;}
.y168_c01332{bottom:569.370000px;}
.y169_c01332{bottom:571.965000px;}
.y164_c01332{bottom:573.690000px;}
.y167_c01332{bottom:575.430000px;}
.y165_c01332{bottom:576.285000px;}
.y163_c01332{bottom:577.155000px;}
.y16a_c01332{bottom:582.330000px;}
.y162_c01332{bottom:588.390000px;}
.y160_c01332{bottom:593.565000px;}
.y15f_c01332{bottom:594.435000px;}
.y15e_c01332{bottom:595.290000px;}
.y161_c01332{bottom:597.885000px;}
.y15d_c01332{bottom:612.570000px;}
.y15b_c01332{bottom:614.310000px;}
.y159_c01332{bottom:616.890000px;}
.y158_c01332{bottom:617.760000px;}
.y15c_c01332{bottom:618.630000px;}
.y15a_c01332{bottom:620.355000px;}
.y157_c01332{bottom:621.210000px;}
.y155_c01332{bottom:628.125000px;}
.y156_c01332{bottom:628.995000px;}
.y153_c01332{bottom:632.445000px;}
.y14f_c01332{bottom:634.170000px;}
.y154_c01332{bottom:635.040000px;}
.y14d_c01332{bottom:635.910000px;}
.y152_c01332{bottom:636.765000px;}
.y151_c01332{bottom:637.635000px;}
.y150_c01332{bottom:639.360000px;}
.y14e_c01332{bottom:640.230000px;}
.y14c_c01332{bottom:650.595000px;}
.y14b_c01332{bottom:652.320000px;}
.y149_c01332{bottom:653.190000px;}
.y14a_c01332{bottom:654.915000px;}
.y147_c01332{bottom:656.640000px;}
.y148_c01332{bottom:658.365000px;}
.y146_c01332{bottom:661.830000px;}
.y145_c01332{bottom:670.470000px;}
.y144_c01332{bottom:673.920000px;}
.y141_c01332{bottom:674.790000px;}
.y140_c01332{bottom:675.645000px;}
.y143_c01332{bottom:677.370000px;}
.y142_c01332{bottom:678.240000px;}
.y13f_c01332{bottom:679.965000px;}
.y13e_c01332{bottom:681.690000px;}
.y13d_c01332{bottom:690.330000px;}
.y13b_c01332{bottom:691.200000px;}
.y13a_c01332{bottom:692.070000px;}
.y136_c01332{bottom:692.925000px;}
.y134_c01332{bottom:693.795000px;}
.y139_c01332{bottom:695.520000px;}
.y13c_c01332{bottom:696.390000px;}
.y137_c01332{bottom:698.115000px;}
.y135_c01332{bottom:699.840000px;}
.y138_c01332{bottom:706.755000px;}
.y133_c01332{bottom:710.205000px;}
.y131_c01332{bottom:711.075000px;}
.y132_c01332{bottom:711.930000px;}
.y12f_c01332{bottom:714.525000px;}
.y12e_c01332{bottom:715.395000px;}
.y130_c01332{bottom:716.250000px;}
.y12d_c01332{bottom:731.805000px;}
.y12c_c01332{bottom:732.675000px;}
.y129_c01332{bottom:733.530000px;}
.y12b_c01332{bottom:734.400000px;}
.y128_c01332{bottom:735.270000px;}
.y126_c01332{bottom:736.125000px;}
.y125_c01332{bottom:736.995000px;}
.y12a_c01332{bottom:739.590000px;}
.y127_c01332{bottom:740.445000px;}
.y123_c01332{bottom:752.550000px;}
.y124_c01332{bottom:754.275000px;}
.y120_c01332{bottom:755.130000px;}
.y11e_c01332{bottom:756.000000px;}
.y11d_c01332{bottom:756.870000px;}
.y11c_c01332{bottom:757.725000px;}
.y11f_c01332{bottom:758.595000px;}
.y122_c01332{bottom:759.450000px;}
.y121_c01332{bottom:760.320000px;}
.y11b_c01332{bottom:769.830000px;}
.y118_c01332{bottom:772.410000px;}
.y11a_c01332{bottom:774.150000px;}
.y119_c01332{bottom:775.005000px;}
.y117_c01332{bottom:775.875000px;}
.y116_c01332{bottom:776.730000px;}
.y115_c01332{bottom:777.600000px;}
.y114_c01332{bottom:778.470000px;}
.y113_c01332{bottom:784.515000px;}
.y111_c01332{bottom:785.370000px;}
.y110_c01332{bottom:786.240000px;}
.y10d_c01332{bottom:787.965000px;}
.y112_c01332{bottom:788.835000px;}
.y10e_c01332{bottom:789.690000px;}
.y10f_c01332{bottom:790.560000px;}
.y10c_c01332{bottom:792.285000px;}
.y10a_c01332{bottom:795.750000px;}
.y108_c01332{bottom:796.605000px;}
.y109_c01332{bottom:797.475000px;}
.y107_c01332{bottom:799.200000px;}
.y106_c01332{bottom:800.925000px;}
.yfe_c01332{bottom:802.650000px;}
.y10b_c01332{bottom:804.390000px;}
.y103_c01332{bottom:805.245000px;}
.y105_c01332{bottom:806.115000px;}
.y102_c01332{bottom:806.970000px;}
.y101_c01332{bottom:807.840000px;}
.y104_c01332{bottom:808.710000px;}
.y100_c01332{bottom:810.435000px;}
.yfc_c01332{bottom:811.290000px;}
.yfd_c01332{bottom:812.160000px;}
.yff_c01332{bottom:813.030000px;}
.yf9_c01332{bottom:815.610000px;}
.yfa_c01332{bottom:816.480000px;}
.yf8_c01332{bottom:817.350000px;}
.yfb_c01332{bottom:818.205000px;}
.yf6_c01332{bottom:819.075000px;}
.yf7_c01332{bottom:820.800000px;}
.yf2_c01332{bottom:832.890000px;}
.yf4_c01332{bottom:833.760000px;}
.yf5_c01332{bottom:834.630000px;}
.yf0_c01332{bottom:835.485000px;}
.yee_c01332{bottom:836.355000px;}
.yed_c01332{bottom:838.080000px;}
.yf3_c01332{bottom:838.950000px;}
.yf1_c01332{bottom:839.805000px;}
.yef_c01332{bottom:840.675000px;}
.yea_c01332{bottom:844.995000px;}
.yeb_c01332{bottom:845.850000px;}
.yec_c01332{bottom:846.720000px;}
.ye9_c01332{bottom:851.040000px;}
.ye7_c01332{bottom:852.765000px;}
.ye8_c01332{bottom:854.490000px;}
.ye4_c01332{bottom:856.230000px;}
.ye6_c01332{bottom:857.085000px;}
.ye1_c01332{bottom:859.680000px;}
.ye3_c01332{bottom:860.550000px;}
.ye5_c01332{bottom:861.405000px;}
.ye2_c01332{bottom:862.275000px;}
.ydf_c01332{bottom:872.640000px;}
.ye0_c01332{bottom:874.365000px;}
.ydb_c01332{bottom:875.235000px;}
.yd9_c01332{bottom:876.960000px;}
.yd6_c01332{bottom:877.830000px;}
.ydd_c01332{bottom:878.685000px;}
.yd8_c01332{bottom:879.555000px;}
.yde_c01332{bottom:880.410000px;}
.yda_c01332{bottom:882.150000px;}
.yd7_c01332{bottom:883.005000px;}
.ydc_c01332{bottom:888.195000px;}
.yd3_c01332{bottom:895.110000px;}
.yd4_c01332{bottom:895.965000px;}
.yd5_c01332{bottom:898.560000px;}
.yd1_c01332{bottom:899.430000px;}
.yd0_c01332{bottom:900.285000px;}
.yd2_c01332{bottom:901.155000px;}
.ycf_c01332{bottom:902.010000px;}
.yce_c01332{bottom:913.245000px;}
.ycd_c01332{bottom:914.115000px;}
.yc8_c01332{bottom:915.840000px;}
.yca_c01332{bottom:916.710000px;}
.yc7_c01332{bottom:917.565000px;}
.yc5_c01332{bottom:918.435000px;}
.ycc_c01332{bottom:919.290000px;}
.yc9_c01332{bottom:920.160000px;}
.yc6_c01332{bottom:922.755000px;}
.yc4_c01332{bottom:923.610000px;}
.ycb_c01332{bottom:925.350000px;}
.yc2_c01332{bottom:928.800000px;}
.yc3_c01332{bottom:932.250000px;}
.yc1_c01332{bottom:933.990000px;}
.yc0_c01332{bottom:934.845000px;}
.ybf_c01332{bottom:936.570000px;}
.ybd_c01332{bottom:937.440000px;}
.ybe_c01332{bottom:940.890000px;}
.ybc_c01332{bottom:958.170000px;}
.ybb_c01332{bottom:959.910000px;}
.yb9_c01332{bottom:960.765000px;}
.yb6_c01332{bottom:961.635000px;}
.yb8_c01332{bottom:962.490000px;}
.yba_c01332{bottom:963.360000px;}
.yb7_c01332{bottom:965.085000px;}
.yb4_c01332{bottom:973.725000px;}
.yb5_c01332{bottom:974.595000px;}
.yb2_c01332{bottom:977.190000px;}
.yb0_c01332{bottom:978.045000px;}
.yae_c01332{bottom:978.915000px;}
.yb3_c01332{bottom:979.770000px;}
.yb1_c01332{bottom:981.510000px;}
.yad_c01332{bottom:983.235000px;}
.yaf_c01332{bottom:984.090000px;}
.yaa_c01332{bottom:994.470000px;}
.ya9_c01332{bottom:996.195000px;}
.yab_c01332{bottom:997.050000px;}
.yac_c01332{bottom:998.790000px;}
.ya8_c01332{bottom:1001.370000px;}
.ya7_c01332{bottom:1002.240000px;}
.ya5_c01332{bottom:1003.110000px;}
.ya6_c01332{bottom:1003.965000px;}
.ya4_c01332{bottom:1005.690000px;}
.ya3_c01332{bottom:1019.520000px;}
.ya1_c01332{bottom:1020.390000px;}
.y9d_c01332{bottom:1021.245000px;}
.y9f_c01332{bottom:1022.970000px;}
.ya0_c01332{bottom:1023.840000px;}
.y9e_c01332{bottom:1025.565000px;}
.ya2_c01332{bottom:1029.030000px;}
.y9c_c01332{bottom:1035.075000px;}
.y9a_c01332{bottom:1035.930000px;}
.y98_c01332{bottom:1037.670000px;}
.y95_c01332{bottom:1038.525000px;}
.y9b_c01332{bottom:1039.395000px;}
.y94_c01332{bottom:1040.250000px;}
.y93_c01332{bottom:1041.120000px;}
.y99_c01332{bottom:1041.990000px;}
.y96_c01332{bottom:1042.845000px;}
.y97_c01332{bottom:1050.630000px;}
.y91_c01332{bottom:1054.950000px;}
.y92_c01332{bottom:1055.805000px;}
.y8f_c01332{bottom:1056.675000px;}
.y8d_c01332{bottom:1057.530000px;}
.y8a_c01332{bottom:1058.400000px;}
.y89_c01332{bottom:1059.270000px;}
.y87_c01332{bottom:1060.125000px;}
.y90_c01332{bottom:1060.995000px;}
.y8e_c01332{bottom:1061.850000px;}
.y8b_c01332{bottom:1063.590000px;}
.y88_c01332{bottom:1066.170000px;}
.y86_c01332{bottom:1067.910000px;}
.y8c_c01332{bottom:1068.765000px;}
.y85_c01332{bottom:1075.680000px;}
.y80_c01332{bottom:1080.000000px;}
.y83_c01332{bottom:1080.870000px;}
.y84_c01332{bottom:1082.595000px;}
.y82_c01332{bottom:1083.450000px;}
.y81_c01332{bottom:1086.915000px;}
.y7f_c01332{bottom:1093.830000px;}
.y7e_c01332{bottom:1097.280000px;}
.y7c_c01332{bottom:1098.150000px;}
.y7a_c01332{bottom:1101.600000px;}
.y7b_c01332{bottom:1102.470000px;}
.y7d_c01332{bottom:1103.325000px;}
.y79_c01332{bottom:1114.560000px;}
.y78_c01332{bottom:1117.155000px;}
.y74_c01332{bottom:1118.880000px;}
.y72_c01332{bottom:1119.750000px;}
.y76_c01332{bottom:1120.605000px;}
.y77_c01332{bottom:1121.475000px;}
.y70_c01332{bottom:1122.330000px;}
.y73_c01332{bottom:1124.070000px;}
.y75_c01332{bottom:1125.795000px;}
.y71_c01332{bottom:1128.390000px;}
.y6f_c01332{bottom:1136.160000px;}
.y6d_c01332{bottom:1137.885000px;}
.y6e_c01332{bottom:1138.755000px;}
.y6a_c01332{bottom:1139.610000px;}
.y69_c01332{bottom:1140.480000px;}
.y68_c01332{bottom:1141.350000px;}
.y6b_c01332{bottom:1142.205000px;}
.y6c_c01332{bottom:1143.075000px;}
.y66_c01332{bottom:1143.930000px;}
.y67_c01332{bottom:1146.525000px;}
.y65_c01332{bottom:1147.395000px;}
.y64_c01332{bottom:1156.890000px;}
.y62_c01332{bottom:1158.630000px;}
.y63_c01332{bottom:1159.485000px;}
.y61_c01332{bottom:1160.355000px;}
.y5f_c01332{bottom:1162.080000px;}
.y5c_c01332{bottom:1164.675000px;}
.y5b_c01332{bottom:1165.530000px;}
.y60_c01332{bottom:1166.400000px;}
.y5d_c01332{bottom:1169.850000px;}
.y5e_c01332{bottom:1172.445000px;}
.y59_c01332{bottom:1174.170000px;}
.y5a_c01332{bottom:1178.490000px;}
.y58_c01332{bottom:1179.360000px;}
.y56_c01332{bottom:1180.230000px;}
.y55_c01332{bottom:1181.085000px;}
.y52_c01332{bottom:1182.810000px;}
.y57_c01332{bottom:1185.405000px;}
.y53_c01332{bottom:1186.275000px;}
.y54_c01332{bottom:1187.130000px;}
.y51_c01332{bottom:1198.365000px;}
.y4f_c01332{bottom:1200.090000px;}
.y50_c01332{bottom:1203.555000px;}
.y4d_c01332{bottom:1204.410000px;}
.y4e_c01332{bottom:1205.280000px;}
.y205_c01332{bottom:1206.150000px;}
.y4c_c01332{bottom:1207.005000px;}
.y4a_c01332{bottom:1217.370000px;}
.y4b_c01332{bottom:1218.240000px;}
.y47_c01332{bottom:1219.965000px;}
.y45_c01332{bottom:1221.690000px;}
.y46_c01332{bottom:1224.285000px;}
.y48_c01332{bottom:1225.155000px;}
.y49_c01332{bottom:1230.330000px;}
.y44_c01332{bottom:1238.115000px;}
.y43_c01332{bottom:1239.840000px;}
.y41_c01332{bottom:1240.710000px;}
.y3e_c01332{bottom:1241.565000px;}
.y3f_c01332{bottom:1242.435000px;}
.y3d_c01332{bottom:1243.290000px;}
.y3c_c01332{bottom:1245.030000px;}
.y40_c01332{bottom:1246.755000px;}
.y42_c01332{bottom:1257.120000px;}
.y36_c01332{bottom:1261.440000px;}
.y3b_c01332{bottom:1262.310000px;}
.y35_c01332{bottom:1263.165000px;}
.y3a_c01332{bottom:1264.035000px;}
.y37_c01332{bottom:1264.890000px;}
.y39_c01332{bottom:1265.760000px;}
.y38_c01332{bottom:1266.630000px;}
.y34_c01332{bottom:1269.210000px;}
.y33_c01332{bottom:1274.400000px;}
.y31_c01332{bottom:1278.720000px;}
.y30_c01332{bottom:1279.590000px;}
.y32_c01332{bottom:1280.445000px;}
.y2f_c01332{bottom:1282.170000px;}
.y2e_c01332{bottom:1283.040000px;}
.y2a_c01332{bottom:1283.910000px;}
.y29_c01332{bottom:1285.635000px;}
.y28_c01332{bottom:1287.360000px;}
.y2c_c01332{bottom:1290.810000px;}
.y2d_c01332{bottom:1294.275000px;}
.y2b_c01332{bottom:1300.320000px;}
.y23_c01332{bottom:1301.190000px;}
.y21_c01332{bottom:1302.045000px;}
.y24_c01332{bottom:1302.915000px;}
.y1f_c01332{bottom:1303.770000px;}
.y26_c01332{bottom:1304.640000px;}
.y25_c01332{bottom:1305.510000px;}
.y27_c01332{bottom:1306.365000px;}
.y22_c01332{bottom:1307.235000px;}
.y20_c01332{bottom:1308.960000px;}
.y1e_c01332{bottom:1318.470000px;}
.y1d_c01332{bottom:1321.050000px;}
.y18_c01332{bottom:1321.920000px;}
.y19_c01332{bottom:1322.790000px;}
.y1c_c01332{bottom:1325.370000px;}
.y1b_c01332{bottom:1326.240000px;}
.y1a_c01332{bottom:1327.110000px;}
.y17_c01332{bottom:1329.690000px;}
.y1_c01332{bottom:1335.750000px;}
.y2_c01332{bottom:1339.200000px;}
.y16_c01332{bottom:1340.070000px;}
.y13_c01332{bottom:1344.390000px;}
.y12_c01332{bottom:1345.245000px;}
.y14_c01332{bottom:1346.115000px;}
.y15_c01332{bottom:1346.970000px;}
.y11_c01332{bottom:1352.160000px;}
.ye_c01332{bottom:1361.670000px;}
.yc_c01332{bottom:1363.395000px;}
.y9_c01332{bottom:1364.250000px;}
.y8_c01332{bottom:1365.120000px;}
.yd_c01332{bottom:1366.845000px;}
.ya_c01332{bottom:1368.570000px;}
.y7_c01332{bottom:1369.440000px;}
.yb_c01332{bottom:1373.760000px;}
.yf_c01332{bottom:1377.210000px;}
.y10_c01332{bottom:1378.950000px;}
.y6_c01332{bottom:1380.675000px;}
.y5_c01332{bottom:1388.445000px;}
.y4_c01332{bottom:1391.040000px;}
.y3_c01332{bottom:1391.910000px;}
.h11_c01332{height:3.110063px;}
.h19_c01332{height:5.399414px;}
.h1a_c01332{height:6.209326px;}
.hf_c01332{height:9.340986px;}
.h3_c01332{height:12.418652px;}
.h1c_c01332{height:15.550313px;}
.h21_c01332{height:18.681973px;}
.h2_c01332{height:21.759639px;}
.h10_c01332{height:24.891299px;}
.h1d_c01332{height:27.968965px;}
.h9_c01332{height:31.100625px;}
.h16_c01332{height:34.232285px;}
.h20_c01332{height:37.309951px;}
.h12_c01332{height:40.441611px;}
.h17_c01332{height:43.519277px;}
.hb_c01332{height:46.650937px;}
.h14_c01332{height:49.782598px;}
.h6_c01332{height:52.860264px;}
.h18_c01332{height:55.991924px;}
.ha_c01332{height:59.069590px;}
.hc_c01332{height:62.201250px;}
.h23_c01332{height:63.582598px;}
.h8_c01332{height:65.332910px;}
.he_c01332{height:68.410576px;}
.h7_c01332{height:71.542236px;}
.h15_c01332{height:74.619902px;}
.h13_c01332{height:77.751563px;}
.h1e_c01332{height:80.883223px;}
.h4_c01332{height:83.960889px;}
.h1f_c01332{height:87.092549px;}
.h1b_c01332{height:90.170215px;}
.hd_c01332{height:93.301875px;}
.h22_c01332{height:96.433535px;}
.h5_c01332{height:199.022402px;}
.h1_c01332{height:1513.500000px;}
.h0_c01332{height:1513.725000px;}
.w0_c01332{width:1083.450000px;}
.w1_c01332{width:1083.750000px;}
.x0_c01332{left:0.000000px;}
.x1_c01332{left:165.030000px;}
.x2_c01332{left:184.890000px;}
.x29_c01332{left:206.490000px;}
.xc6_c01332{left:209.085000px;}
.xe5_c01332{left:216.870000px;}
.x11f_c01332{left:220.320000px;}
.x114_c01332{left:222.045000px;}
.x4d_c01332{left:224.640000px;}
.x33_c01332{left:228.960000px;}
.x116_c01332{left:233.280000px;}
.xc7_c01332{left:235.005000px;}
.x6_c01332{left:237.600000px;}
.x70_c01332{left:239.325000px;}
.x7b_c01332{left:241.920000px;}
.x85_c01332{left:243.645000px;}
.xbb_c01332{left:245.370000px;}
.x17_c01332{left:247.110000px;}
.x53_c01332{left:248.835000px;}
.x7_c01332{left:250.560000px;}
.x20_c01332{left:253.155000px;}
.x3_c01332{left:254.880000px;}
.x11b_c01332{left:257.475000px;}
.xd0_c01332{left:259.200000px;}
.x120_c01332{left:260.925000px;}
.xf0_c01332{left:262.650000px;}
.xb5_c01332{left:264.390000px;}
.xe4_c01332{left:266.115000px;}
.x69_c01332{left:267.840000px;}
.x11c_c01332{left:270.435000px;}
.x3a_c01332{left:273.030000px;}
.xc3_c01332{left:276.480000px;}
.x71_c01332{left:279.930000px;}
.x102_c01332{left:281.670000px;}
.x54_c01332{left:284.250000px;}
.x21_c01332{left:286.845000px;}
.xa5_c01332{left:288.570000px;}
.x124_c01332{left:292.035000px;}
.x34_c01332{left:294.630000px;}
.xda_c01332{left:298.080000px;}
.x9e_c01332{left:299.805000px;}
.xf9_c01332{left:302.400000px;}
.x2a_c01332{left:304.125000px;}
.xbc_c01332{left:306.720000px;}
.x117_c01332{left:308.445000px;}
.x72_c01332{left:310.170000px;}
.x5c_c01332{left:311.910000px;}
.xec_c01332{left:313.635000px;}
.x90_c01332{left:317.955000px;}
.x45_c01332{left:321.405000px;}
.x6a_c01332{left:324.000000px;}
.x8_c01332{left:326.595000px;}
.xd1_c01332{left:329.190000px;}
.x3b_c01332{left:330.915000px;}
.x35_c01332{left:332.640000px;}
.x110_c01332{left:334.365000px;}
.x4_c01332{left:336.960000px;}
.x18_c01332{left:340.410000px;}
.x97_c01332{left:343.005000px;}
.xa6_c01332{left:345.600000px;}
.x4e_c01332{left:347.325000px;}
.x104_c01332{left:349.050000px;}
.x100_c01332{left:350.790000px;}
.x22_c01332{left:352.515000px;}
.xb0_c01332{left:355.965000px;}
.xa8_c01332{left:357.690000px;}
.x4f_c01332{left:360.285000px;}
.x36_c01332{left:362.010000px;}
.x73_c01332{left:364.605000px;}
.xc4_c01332{left:367.200000px;}
.xde_c01332{left:368.925000px;}
.x103_c01332{left:370.650000px;}
.x55_c01332{left:373.245000px;}
.xb1_c01332{left:374.970000px;}
.x3c_c01332{left:377.565000px;}
.xd2_c01332{left:380.160000px;}
.x9f_c01332{left:381.885000px;}
.x56_c01332{left:383.610000px;}
.x118_c01332{left:385.350000px;}
.x98_c01332{left:387.075000px;}
.xfa_c01332{left:388.800000px;}
.xd7_c01332{left:390.525000px;}
.xc8_c01332{left:393.120000px;}
.x86_c01332{left:395.715000px;}
.x19_c01332{left:397.440000px;}
.xfb_c01332{left:400.035000px;}
.xa9_c01332{left:401.760000px;}
.x57_c01332{left:403.485000px;}
.xf4_c01332{left:405.210000px;}
.xb6_c01332{left:408.675000px;}
.x115_c01332{left:411.270000px;}
.xa0_c01332{left:414.720000px;}
.x2b_c01332{left:416.445000px;}
.xc9_c01332{left:419.040000px;}
.x1a_c01332{left:420.765000px;}
.x9_c01332{left:423.360000px;}
.x99_c01332{left:425.085000px;}
.x46_c01332{left:426.810000px;}
.xaa_c01332{left:429.405000px;}
.x3d_c01332{left:431.130000px;}
.xa1_c01332{left:432.870000px;}
.x11d_c01332{left:434.595000px;}
.x91_c01332{left:437.190000px;}
.x2c_c01332{left:438.915000px;}
.x50_c01332{left:441.510000px;}
.xf1_c01332{left:443.235000px;}
.x3e_c01332{left:444.960000px;}
.x7c_c01332{left:447.555000px;}
.x5d_c01332{left:450.150000px;}
.xb7_c01332{left:453.600000px;}
.x1b_c01332{left:455.325000px;}
.x47_c01332{left:457.920000px;}
.xa7_c01332{left:459.645000px;}
.x3f_c01332{left:462.240000px;}
.x87_c01332{left:464.835000px;}
.x23_c01332{left:470.880000px;}
.x58_c01332{left:473.475000px;}
.xe6_c01332{left:475.200000px;}
.xd3_c01332{left:476.925000px;}
.x74_c01332{left:478.650000px;}
.x9a_c01332{left:482.115000px;}
.x10c_c01332{left:483.840000px;}
.x119_c01332{left:485.565000px;}
.x2d_c01332{left:487.290000px;}
.xfc_c01332{left:490.755000px;}
.x40_c01332{left:492.480000px;}
.xa_c01332{left:496.800000px;}
.xbd_c01332{left:500.250000px;}
.x6b_c01332{left:501.990000px;}
.xfd_c01332{left:503.715000px;}
.xf2_c01332{left:506.310000px;}
.xe8_c01332{left:508.035000px;}
.x62_c01332{left:510.630000px;}
.x75_c01332{left:512.355000px;}
.xfe_c01332{left:514.080000px;}
.xa2_c01332{left:515.805000px;}
.x105_c01332{left:517.530000px;}
.xb_c01332{left:520.125000px;}
.xdb_c01332{left:524.445000px;}
.x88_c01332{left:526.170000px;}
.x1c_c01332{left:527.910000px;}
.x7f_c01332{left:530.490000px;}
.x106_c01332{left:532.230000px;}
.xc_c01332{left:535.680000px;}
.xab_c01332{left:537.405000px;}
.x41_c01332{left:539.130000px;}
.x10e_c01332{left:540.870000px;}
.xd_c01332{left:542.595000px;}
.xca_c01332{left:545.190000px;}
.x11e_c01332{left:546.915000px;}
.x24_c01332{left:549.510000px;}
.x37_c01332{left:552.960000px;}
.xd8_c01332{left:554.685000px;}
.xae_c01332{left:557.280000px;}
.x9b_c01332{left:559.005000px;}
.x92_c01332{left:562.470000px;}
.xe_c01332{left:565.050000px;}
.xf6_c01332{left:566.790000px;}
.x48_c01332{left:568.515000px;}
.x2e_c01332{left:571.110000px;}
.xb2_c01332{left:572.835000px;}
.xdf_c01332{left:574.560000px;}
.xcb_c01332{left:576.285000px;}
.xbe_c01332{left:578.010000px;}
.x80_c01332{left:579.750000px;}
.x6c_c01332{left:581.475000px;}
.x49_c01332{left:583.200000px;}
.xf_c01332{left:584.925000px;}
.xd9_c01332{left:587.520000px;}
.x10a_c01332{left:590.115000px;}
.xd4_c01332{left:594.435000px;}
.x11a_c01332{left:596.160000px;}
.xdc_c01332{left:598.755000px;}
.x76_c01332{left:601.350000px;}
.x81_c01332{left:604.800000px;}
.x1d_c01332{left:606.525000px;}
.x5e_c01332{left:608.250000px;}
.xd5_c01332{left:610.845000px;}
.x6d_c01332{left:613.440000px;}
.x10_c01332{left:616.035000px;}
.x121_c01332{left:617.760000px;}
.x77_c01332{left:620.355000px;}
.xe2_c01332{left:622.950000px;}
.x93_c01332{left:624.675000px;}
.x63_c01332{left:626.400000px;}
.x89_c01332{left:628.125000px;}
.x59_c01332{left:629.850000px;}
.x111_c01332{left:631.590000px;}
.x2f_c01332{left:634.170000px;}
.x25_c01332{left:637.635000px;}
.xdd_c01332{left:639.360000px;}
.xed_c01332{left:641.085000px;}
.x8a_c01332{left:646.275000px;}
.x5a_c01332{left:648.000000px;}
.x66_c01332{left:650.595000px;}
.x107_c01332{left:652.320000px;}
.x7d_c01332{left:654.045000px;}
.x82_c01332{left:656.640000px;}
.xc5_c01332{left:658.365000px;}
.x6e_c01332{left:660.090000px;}
.x5f_c01332{left:662.685000px;}
.xbf_c01332{left:667.005000px;}
.x4a_c01332{left:669.600000px;}
.xe9_c01332{left:671.325000px;}
.xb8_c01332{left:673.920000px;}
.x94_c01332{left:677.370000px;}
.xc0_c01332{left:682.560000px;}
.x42_c01332{left:684.285000px;}
.xea_c01332{left:686.010000px;}
.x9c_c01332{left:687.750000px;}
.xb3_c01332{left:692.070000px;}
.x122_c01332{left:693.795000px;}
.x8b_c01332{left:696.390000px;}
.x51_c01332{left:698.970000px;}
.x11_c01332{left:701.565000px;}
.x30_c01332{left:704.160000px;}
.x78_c01332{left:707.610000px;}
.x26_c01332{left:709.350000px;}
.xce_c01332{left:712.800000px;}
.xd6_c01332{left:714.525000px;}
.xa3_c01332{left:717.120000px;}
.x6f_c01332{left:718.845000px;}
.x101_c01332{left:720.570000px;}
.x10f_c01332{left:722.310000px;}
.x112_c01332{left:724.890000px;}
.xeb_c01332{left:726.630000px;}
.xb9_c01332{left:728.355000px;}
.x27_c01332{left:730.950000px;}
.x38_c01332{left:733.530000px;}
.x5b_c01332{left:735.270000px;}
.xe7_c01332{left:737.850000px;}
.x83_c01332{left:742.170000px;}
.x123_c01332{left:743.910000px;}
.xa4_c01332{left:749.955000px;}
.x43_c01332{left:751.680000px;}
.xcc_c01332{left:755.130000px;}
.x67_c01332{left:756.870000px;}
.x31_c01332{left:759.450000px;}
.x79_c01332{left:761.190000px;}
.x95_c01332{left:763.770000px;}
.x12_c01332{left:766.365000px;}
.x8c_c01332{left:768.090000px;}
.x64_c01332{left:771.555000px;}
.x28_c01332{left:773.280000px;}
.x39_c01332{left:776.730000px;}
.x60_c01332{left:779.325000px;}
.x68_c01332{left:781.050000px;}
.xcf_c01332{left:784.515000px;}
.x8d_c01332{left:786.240000px;}
.x13_c01332{left:788.835000px;}
.x7e_c01332{left:790.560000px;}
.x108_c01332{left:792.285000px;}
.xee_c01332{left:797.475000px;}
.xc1_c01332{left:800.070000px;}
.x1e_c01332{left:803.520000px;}
.x8e_c01332{left:805.245000px;}
.x52_c01332{left:806.970000px;}
.xf7_c01332{left:808.710000px;}
.xcd_c01332{left:810.435000px;}
.x65_c01332{left:812.160000px;}
.x5_c01332{left:813.885000px;}
.x9d_c01332{left:816.480000px;}
.xc2_c01332{left:818.205000px;}
.x44_c01332{left:820.800000px;}
.x10d_c01332{left:822.525000px;}
.x84_c01332{left:824.250000px;}
.xff_c01332{left:827.715000px;}
.xe0_c01332{left:832.890000px;}
.xf3_c01332{left:836.355000px;}
.xba_c01332{left:838.080000px;}
.x113_c01332{left:839.805000px;}
.x7a_c01332{left:842.400000px;}
.x10b_c01332{left:844.125000px;}
.xf5_c01332{left:845.850000px;}
.x1f_c01332{left:850.170000px;}
.x14_c01332{left:851.910000px;}
.xe3_c01332{left:855.360000px;}
.x125_c01332{left:857.955000px;}
.xb4_c01332{left:861.405000px;}
.x61_c01332{left:864.000000px;}
.x96_c01332{left:868.320000px;}
.xac_c01332{left:871.770000px;}
.xef_c01332{left:873.510000px;}
.x109_c01332{left:879.555000px;}
.x32_c01332{left:881.280000px;}
.xe1_c01332{left:883.005000px;}
.xf8_c01332{left:884.730000px;}
.xad_c01332{left:888.195000px;}
.x4b_c01332{left:896.835000px;}
.x8f_c01332{left:898.560000px;}
.x4c_c01332{left:908.070000px;}
.x15_c01332{left:909.795000px;}
.x16_c01332{left:922.755000px;}
.xaf_c01332{left:934.845000px;}
.x126_c01332{left:997.050000px;}
@media print{
.v1_c01332{vertical-align:-9.226667pt;}
.v2_c01332{vertical-align:-6.133333pt;}
.v0_c01332{vertical-align:0.000000pt;}
.v3_c01332{vertical-align:12.266667pt;}
.ls1_c01332{letter-spacing:0.000000pt;}
.ls0_c01332{letter-spacing:57.195947pt;}
.ws1_c01332{word-spacing:-13.950827pt;}
.ws2_c01332{word-spacing:-11.514240pt;}
.ws3_c01332{word-spacing:0.000000pt;}
.ws0_c01332{word-spacing:3.862613pt;}
.fsf_c01332{font-size:3.072000pt;}
.fs17_c01332{font-size:5.333333pt;}
.fs18_c01332{font-size:6.133333pt;}
.fsd_c01332{font-size:9.226667pt;}
.fs1_c01332{font-size:12.266667pt;}
.fs1a_c01332{font-size:15.360000pt;}
.fs1f_c01332{font-size:18.453333pt;}
.fs0_c01332{font-size:21.493333pt;}
.fse_c01332{font-size:24.586667pt;}
.fs1b_c01332{font-size:27.626667pt;}
.fs7_c01332{font-size:30.720000pt;}
.fs14_c01332{font-size:33.813333pt;}
.fs1e_c01332{font-size:36.853333pt;}
.fs10_c01332{font-size:39.946667pt;}
.fs15_c01332{font-size:42.986667pt;}
.fs9_c01332{font-size:46.080000pt;}
.fs12_c01332{font-size:49.173333pt;}
.fs4_c01332{font-size:52.213333pt;}
.fs16_c01332{font-size:55.306667pt;}
.fs8_c01332{font-size:58.346667pt;}
.fsa_c01332{font-size:61.440000pt;}
.fs6_c01332{font-size:64.533333pt;}
.fsc_c01332{font-size:67.573333pt;}
.fs5_c01332{font-size:70.666667pt;}
.fs13_c01332{font-size:73.706667pt;}
.fs11_c01332{font-size:76.800000pt;}
.fs1c_c01332{font-size:79.893333pt;}
.fs2_c01332{font-size:82.933333pt;}
.fs1d_c01332{font-size:86.026667pt;}
.fs19_c01332{font-size:89.066667pt;}
.fsb_c01332{font-size:92.160000pt;}
.fs20_c01332{font-size:95.253333pt;}
.fs3_c01332{font-size:196.586667pt;}
.y0_c01332{bottom:0.000000pt;}
.y204_c01332{bottom:194.306667pt;}
.y202_c01332{bottom:195.840000pt;}
.y201_c01332{bottom:198.146667pt;}
.y1ff_c01332{bottom:198.906667pt;}
.y1fe_c01332{bottom:201.213333pt;}
.y1fc_c01332{bottom:201.986667pt;}
.y1fd_c01332{bottom:202.746667pt;}
.y203_c01332{bottom:203.520000pt;}
.y1fb_c01332{bottom:204.293333pt;}
.y200_c01332{bottom:211.200000pt;}
.y1fa_c01332{bottom:215.040000pt;}
.y1f9_c01332{bottom:215.813333pt;}
.y1f8_c01332{bottom:217.346667pt;}
.y1f5_c01332{bottom:218.106667pt;}
.y1f6_c01332{bottom:218.880000pt;}
.y1f1_c01332{bottom:219.653333pt;}
.y1f4_c01332{bottom:221.946667pt;}
.y1f2_c01332{bottom:222.720000pt;}
.y1f3_c01332{bottom:225.026667pt;}
.y1f7_c01332{bottom:228.866667pt;}
.y1ec_c01332{bottom:232.706667pt;}
.y1f0_c01332{bottom:233.466667pt;}
.y1ef_c01332{bottom:235.013333pt;}
.y1ed_c01332{bottom:235.773333pt;}
.y1ee_c01332{bottom:237.306667pt;}
.y1e8_c01332{bottom:238.080000pt;}
.y1ea_c01332{bottom:238.853333pt;}
.y1eb_c01332{bottom:239.613333pt;}
.y1e7_c01332{bottom:241.146667pt;}
.y1e9_c01332{bottom:241.920000pt;}
.y1e5_c01332{bottom:251.906667pt;}
.y1e4_c01332{bottom:252.666667pt;}
.y1e6_c01332{bottom:254.973333pt;}
.y1e2_c01332{bottom:255.746667pt;}
.y1df_c01332{bottom:256.506667pt;}
.y1e3_c01332{bottom:257.280000pt;}
.y1e1_c01332{bottom:258.053333pt;}
.y1e0_c01332{bottom:258.813333pt;}
.y1de_c01332{bottom:271.866667pt;}
.y1dc_c01332{bottom:274.173333pt;}
.y1dd_c01332{bottom:274.946667pt;}
.y1db_c01332{bottom:276.480000pt;}
.y1d8_c01332{bottom:277.253333pt;}
.y1d9_c01332{bottom:278.013333pt;}
.y1da_c01332{bottom:278.786667pt;}
.y1d7_c01332{bottom:279.546667pt;}
.y1d6_c01332{bottom:280.320000pt;}
.y1d5_c01332{bottom:288.000000pt;}
.y1d4_c01332{bottom:288.773333pt;}
.y1d3_c01332{bottom:289.533333pt;}
.y1cf_c01332{bottom:291.840000pt;}
.y1ce_c01332{bottom:293.373333pt;}
.y1cd_c01332{bottom:294.906667pt;}
.y1d2_c01332{bottom:295.680000pt;}
.y1d0_c01332{bottom:296.453333pt;}
.y1d1_c01332{bottom:297.213333pt;}
.y1ca_c01332{bottom:304.893333pt;}
.y1cb_c01332{bottom:305.666667pt;}
.y1c9_c01332{bottom:306.426667pt;}
.y1cc_c01332{bottom:307.200000pt;}
.y1c7_c01332{bottom:311.813333pt;}
.y1c6_c01332{bottom:312.573333pt;}
.y1c8_c01332{bottom:314.880000pt;}
.y1c5_c01332{bottom:321.026667pt;}
.y1c1_c01332{bottom:322.560000pt;}
.y1c4_c01332{bottom:323.333333pt;}
.y1c0_c01332{bottom:324.093333pt;}
.y1c2_c01332{bottom:329.466667pt;}
.y1c3_c01332{bottom:330.240000pt;}
.y1bf_c01332{bottom:331.773333pt;}
.y1be_c01332{bottom:340.226667pt;}
.y1bd_c01332{bottom:343.293333pt;}
.y1ba_c01332{bottom:344.066667pt;}
.y1bc_c01332{bottom:345.600000pt;}
.y1b9_c01332{bottom:346.373333pt;}
.y1bb_c01332{bottom:347.906667pt;}
.y1b8_c01332{bottom:348.666667pt;}
.y1b7_c01332{bottom:352.506667pt;}
.y1b6_c01332{bottom:358.653333pt;}
.y1b5_c01332{bottom:361.733333pt;}
.y1b4_c01332{bottom:362.493333pt;}
.y1b1_c01332{bottom:364.800000pt;}
.y1ae_c01332{bottom:365.573333pt;}
.y1af_c01332{bottom:367.106667pt;}
.y1b3_c01332{bottom:368.640000pt;}
.y1b2_c01332{bottom:369.413333pt;}
.y1b0_c01332{bottom:370.173333pt;}
.y1ac_c01332{bottom:378.626667pt;}
.y1ab_c01332{bottom:380.160000pt;}
.y1aa_c01332{bottom:381.693333pt;}
.y1a9_c01332{bottom:382.466667pt;}
.y1ad_c01332{bottom:384.773333pt;}
.y1a6_c01332{bottom:387.066667pt;}
.y1a5_c01332{bottom:387.840000pt;}
.y1a7_c01332{bottom:393.213333pt;}
.y1a8_c01332{bottom:393.986667pt;}
.y1a4_c01332{bottom:397.826667pt;}
.y1a0_c01332{bottom:400.133333pt;}
.y1a2_c01332{bottom:401.666667pt;}
.y19e_c01332{bottom:403.200000pt;}
.y1a3_c01332{bottom:403.973333pt;}
.y19f_c01332{bottom:405.506667pt;}
.y19d_c01332{bottom:407.040000pt;}
.y1a1_c01332{bottom:411.653333pt;}
.y19b_c01332{bottom:413.946667pt;}
.y198_c01332{bottom:416.253333pt;}
.y196_c01332{bottom:417.026667pt;}
.y197_c01332{bottom:417.786667pt;}
.y19a_c01332{bottom:418.560000pt;}
.y194_c01332{bottom:419.333333pt;}
.y19c_c01332{bottom:420.093333pt;}
.y199_c01332{bottom:420.866667pt;}
.y195_c01332{bottom:421.626667pt;}
.y193_c01332{bottom:423.173333pt;}
.y192_c01332{bottom:426.240000pt;}
.y190_c01332{bottom:433.920000pt;}
.y18f_c01332{bottom:436.986667pt;}
.y18b_c01332{bottom:437.760000pt;}
.y18a_c01332{bottom:438.533333pt;}
.y18e_c01332{bottom:440.826667pt;}
.y18c_c01332{bottom:441.600000pt;}
.y18d_c01332{bottom:442.373333pt;}
.y189_c01332{bottom:443.133333pt;}
.y188_c01332{bottom:443.906667pt;}
.y191_c01332{bottom:446.973333pt;}
.y187_c01332{bottom:447.746667pt;}
.y186_c01332{bottom:449.280000pt;}
.y185_c01332{bottom:450.813333pt;}
.y181_c01332{bottom:451.586667pt;}
.y17d_c01332{bottom:453.120000pt;}
.y17e_c01332{bottom:453.893333pt;}
.y17c_c01332{bottom:454.653333pt;}
.y182_c01332{bottom:455.426667pt;}
.y180_c01332{bottom:456.960000pt;}
.y184_c01332{bottom:459.266667pt;}
.y183_c01332{bottom:460.026667pt;}
.y17f_c01332{bottom:461.573333pt;}
.y17b_c01332{bottom:462.333333pt;}
.y178_c01332{bottom:470.013333pt;}
.y179_c01332{bottom:470.786667pt;}
.y17a_c01332{bottom:472.320000pt;}
.y177_c01332{bottom:473.093333pt;}
.y175_c01332{bottom:474.626667pt;}
.y173_c01332{bottom:475.386667pt;}
.y176_c01332{bottom:476.160000pt;}
.y174_c01332{bottom:479.226667pt;}
.y172_c01332{bottom:487.680000pt;}
.y170_c01332{bottom:489.986667pt;}
.y16c_c01332{bottom:490.746667pt;}
.y16e_c01332{bottom:492.293333pt;}
.y171_c01332{bottom:493.053333pt;}
.y16d_c01332{bottom:495.360000pt;}
.y16f_c01332{bottom:496.893333pt;}
.y16b_c01332{bottom:497.666667pt;}
.y166_c01332{bottom:505.346667pt;}
.y168_c01332{bottom:506.106667pt;}
.y169_c01332{bottom:508.413333pt;}
.y164_c01332{bottom:509.946667pt;}
.y167_c01332{bottom:511.493333pt;}
.y165_c01332{bottom:512.253333pt;}
.y163_c01332{bottom:513.026667pt;}
.y16a_c01332{bottom:517.626667pt;}
.y162_c01332{bottom:523.013333pt;}
.y160_c01332{bottom:527.613333pt;}
.y15f_c01332{bottom:528.386667pt;}
.y15e_c01332{bottom:529.146667pt;}
.y161_c01332{bottom:531.453333pt;}
.y15d_c01332{bottom:544.506667pt;}
.y15b_c01332{bottom:546.053333pt;}
.y159_c01332{bottom:548.346667pt;}
.y158_c01332{bottom:549.120000pt;}
.y15c_c01332{bottom:549.893333pt;}
.y15a_c01332{bottom:551.426667pt;}
.y157_c01332{bottom:552.186667pt;}
.y155_c01332{bottom:558.333333pt;}
.y156_c01332{bottom:559.106667pt;}
.y153_c01332{bottom:562.173333pt;}
.y14f_c01332{bottom:563.706667pt;}
.y154_c01332{bottom:564.480000pt;}
.y14d_c01332{bottom:565.253333pt;}
.y152_c01332{bottom:566.013333pt;}
.y151_c01332{bottom:566.786667pt;}
.y150_c01332{bottom:568.320000pt;}
.y14e_c01332{bottom:569.093333pt;}
.y14c_c01332{bottom:578.306667pt;}
.y14b_c01332{bottom:579.840000pt;}
.y149_c01332{bottom:580.613333pt;}
.y14a_c01332{bottom:582.146667pt;}
.y147_c01332{bottom:583.680000pt;}
.y148_c01332{bottom:585.213333pt;}
.y146_c01332{bottom:588.293333pt;}
.y145_c01332{bottom:595.973333pt;}
.y144_c01332{bottom:599.040000pt;}
.y141_c01332{bottom:599.813333pt;}
.y140_c01332{bottom:600.573333pt;}
.y143_c01332{bottom:602.106667pt;}
.y142_c01332{bottom:602.880000pt;}
.y13f_c01332{bottom:604.413333pt;}
.y13e_c01332{bottom:605.946667pt;}
.y13d_c01332{bottom:613.626667pt;}
.y13b_c01332{bottom:614.400000pt;}
.y13a_c01332{bottom:615.173333pt;}
.y136_c01332{bottom:615.933333pt;}
.y134_c01332{bottom:616.706667pt;}
.y139_c01332{bottom:618.240000pt;}
.y13c_c01332{bottom:619.013333pt;}
.y137_c01332{bottom:620.546667pt;}
.y135_c01332{bottom:622.080000pt;}
.y138_c01332{bottom:628.226667pt;}
.y133_c01332{bottom:631.293333pt;}
.y131_c01332{bottom:632.066667pt;}
.y132_c01332{bottom:632.826667pt;}
.y12f_c01332{bottom:635.133333pt;}
.y12e_c01332{bottom:635.906667pt;}
.y130_c01332{bottom:636.666667pt;}
.y12d_c01332{bottom:650.493333pt;}
.y12c_c01332{bottom:651.266667pt;}
.y129_c01332{bottom:652.026667pt;}
.y12b_c01332{bottom:652.800000pt;}
.y128_c01332{bottom:653.573333pt;}
.y126_c01332{bottom:654.333333pt;}
.y125_c01332{bottom:655.106667pt;}
.y12a_c01332{bottom:657.413333pt;}
.y127_c01332{bottom:658.173333pt;}
.y123_c01332{bottom:668.933333pt;}
.y124_c01332{bottom:670.466667pt;}
.y120_c01332{bottom:671.226667pt;}
.y11e_c01332{bottom:672.000000pt;}
.y11d_c01332{bottom:672.773333pt;}
.y11c_c01332{bottom:673.533333pt;}
.y11f_c01332{bottom:674.306667pt;}
.y122_c01332{bottom:675.066667pt;}
.y121_c01332{bottom:675.840000pt;}
.y11b_c01332{bottom:684.293333pt;}
.y118_c01332{bottom:686.586667pt;}
.y11a_c01332{bottom:688.133333pt;}
.y119_c01332{bottom:688.893333pt;}
.y117_c01332{bottom:689.666667pt;}
.y116_c01332{bottom:690.426667pt;}
.y115_c01332{bottom:691.200000pt;}
.y114_c01332{bottom:691.973333pt;}
.y113_c01332{bottom:697.346667pt;}
.y111_c01332{bottom:698.106667pt;}
.y110_c01332{bottom:698.880000pt;}
.y10d_c01332{bottom:700.413333pt;}
.y112_c01332{bottom:701.186667pt;}
.y10e_c01332{bottom:701.946667pt;}
.y10f_c01332{bottom:702.720000pt;}
.y10c_c01332{bottom:704.253333pt;}
.y10a_c01332{bottom:707.333333pt;}
.y108_c01332{bottom:708.093333pt;}
.y109_c01332{bottom:708.866667pt;}
.y107_c01332{bottom:710.400000pt;}
.y106_c01332{bottom:711.933333pt;}
.yfe_c01332{bottom:713.466667pt;}
.y10b_c01332{bottom:715.013333pt;}
.y103_c01332{bottom:715.773333pt;}
.y105_c01332{bottom:716.546667pt;}
.y102_c01332{bottom:717.306667pt;}
.y101_c01332{bottom:718.080000pt;}
.y104_c01332{bottom:718.853333pt;}
.y100_c01332{bottom:720.386667pt;}
.yfc_c01332{bottom:721.146667pt;}
.yfd_c01332{bottom:721.920000pt;}
.yff_c01332{bottom:722.693333pt;}
.yf9_c01332{bottom:724.986667pt;}
.yfa_c01332{bottom:725.760000pt;}
.yf8_c01332{bottom:726.533333pt;}
.yfb_c01332{bottom:727.293333pt;}
.yf6_c01332{bottom:728.066667pt;}
.yf7_c01332{bottom:729.600000pt;}
.yf2_c01332{bottom:740.346667pt;}
.yf4_c01332{bottom:741.120000pt;}
.yf5_c01332{bottom:741.893333pt;}
.yf0_c01332{bottom:742.653333pt;}
.yee_c01332{bottom:743.426667pt;}
.yed_c01332{bottom:744.960000pt;}
.yf3_c01332{bottom:745.733333pt;}
.yf1_c01332{bottom:746.493333pt;}
.yef_c01332{bottom:747.266667pt;}
.yea_c01332{bottom:751.106667pt;}
.yeb_c01332{bottom:751.866667pt;}
.yec_c01332{bottom:752.640000pt;}
.ye9_c01332{bottom:756.480000pt;}
.ye7_c01332{bottom:758.013333pt;}
.ye8_c01332{bottom:759.546667pt;}
.ye4_c01332{bottom:761.093333pt;}
.ye6_c01332{bottom:761.853333pt;}
.ye1_c01332{bottom:764.160000pt;}
.ye3_c01332{bottom:764.933333pt;}
.ye5_c01332{bottom:765.693333pt;}
.ye2_c01332{bottom:766.466667pt;}
.ydf_c01332{bottom:775.680000pt;}
.ye0_c01332{bottom:777.213333pt;}
.ydb_c01332{bottom:777.986667pt;}
.yd9_c01332{bottom:779.520000pt;}
.yd6_c01332{bottom:780.293333pt;}
.ydd_c01332{bottom:781.053333pt;}
.yd8_c01332{bottom:781.826667pt;}
.yde_c01332{bottom:782.586667pt;}
.yda_c01332{bottom:784.133333pt;}
.yd7_c01332{bottom:784.893333pt;}
.ydc_c01332{bottom:789.506667pt;}
.yd3_c01332{bottom:795.653333pt;}
.yd4_c01332{bottom:796.413333pt;}
.yd5_c01332{bottom:798.720000pt;}
.yd1_c01332{bottom:799.493333pt;}
.yd0_c01332{bottom:800.253333pt;}
.yd2_c01332{bottom:801.026667pt;}
.ycf_c01332{bottom:801.786667pt;}
.yce_c01332{bottom:811.773333pt;}
.ycd_c01332{bottom:812.546667pt;}
.yc8_c01332{bottom:814.080000pt;}
.yca_c01332{bottom:814.853333pt;}
.yc7_c01332{bottom:815.613333pt;}
.yc5_c01332{bottom:816.386667pt;}
.ycc_c01332{bottom:817.146667pt;}
.yc9_c01332{bottom:817.920000pt;}
.yc6_c01332{bottom:820.226667pt;}
.yc4_c01332{bottom:820.986667pt;}
.ycb_c01332{bottom:822.533333pt;}
.yc2_c01332{bottom:825.600000pt;}
.yc3_c01332{bottom:828.666667pt;}
.yc1_c01332{bottom:830.213333pt;}
.yc0_c01332{bottom:830.973333pt;}
.ybf_c01332{bottom:832.506667pt;}
.ybd_c01332{bottom:833.280000pt;}
.ybe_c01332{bottom:836.346667pt;}
.ybc_c01332{bottom:851.706667pt;}
.ybb_c01332{bottom:853.253333pt;}
.yb9_c01332{bottom:854.013333pt;}
.yb6_c01332{bottom:854.786667pt;}
.yb8_c01332{bottom:855.546667pt;}
.yba_c01332{bottom:856.320000pt;}
.yb7_c01332{bottom:857.853333pt;}
.yb4_c01332{bottom:865.533333pt;}
.yb5_c01332{bottom:866.306667pt;}
.yb2_c01332{bottom:868.613333pt;}
.yb0_c01332{bottom:869.373333pt;}
.yae_c01332{bottom:870.146667pt;}
.yb3_c01332{bottom:870.906667pt;}
.yb1_c01332{bottom:872.453333pt;}
.yad_c01332{bottom:873.986667pt;}
.yaf_c01332{bottom:874.746667pt;}
.yaa_c01332{bottom:883.973333pt;}
.ya9_c01332{bottom:885.506667pt;}
.yab_c01332{bottom:886.266667pt;}
.yac_c01332{bottom:887.813333pt;}
.ya8_c01332{bottom:890.106667pt;}
.ya7_c01332{bottom:890.880000pt;}
.ya5_c01332{bottom:891.653333pt;}
.ya6_c01332{bottom:892.413333pt;}
.ya4_c01332{bottom:893.946667pt;}
.ya3_c01332{bottom:906.240000pt;}
.ya1_c01332{bottom:907.013333pt;}
.y9d_c01332{bottom:907.773333pt;}
.y9f_c01332{bottom:909.306667pt;}
.ya0_c01332{bottom:910.080000pt;}
.y9e_c01332{bottom:911.613333pt;}
.ya2_c01332{bottom:914.693333pt;}
.y9c_c01332{bottom:920.066667pt;}
.y9a_c01332{bottom:920.826667pt;}
.y98_c01332{bottom:922.373333pt;}
.y95_c01332{bottom:923.133333pt;}
.y9b_c01332{bottom:923.906667pt;}
.y94_c01332{bottom:924.666667pt;}
.y93_c01332{bottom:925.440000pt;}
.y99_c01332{bottom:926.213333pt;}
.y96_c01332{bottom:926.973333pt;}
.y97_c01332{bottom:933.893333pt;}
.y91_c01332{bottom:937.733333pt;}
.y92_c01332{bottom:938.493333pt;}
.y8f_c01332{bottom:939.266667pt;}
.y8d_c01332{bottom:940.026667pt;}
.y8a_c01332{bottom:940.800000pt;}
.y89_c01332{bottom:941.573333pt;}
.y87_c01332{bottom:942.333333pt;}
.y90_c01332{bottom:943.106667pt;}
.y8e_c01332{bottom:943.866667pt;}
.y8b_c01332{bottom:945.413333pt;}
.y88_c01332{bottom:947.706667pt;}
.y86_c01332{bottom:949.253333pt;}
.y8c_c01332{bottom:950.013333pt;}
.y85_c01332{bottom:956.160000pt;}
.y80_c01332{bottom:960.000000pt;}
.y83_c01332{bottom:960.773333pt;}
.y84_c01332{bottom:962.306667pt;}
.y82_c01332{bottom:963.066667pt;}
.y81_c01332{bottom:966.146667pt;}
.y7f_c01332{bottom:972.293333pt;}
.y7e_c01332{bottom:975.360000pt;}
.y7c_c01332{bottom:976.133333pt;}
.y7a_c01332{bottom:979.200000pt;}
.y7b_c01332{bottom:979.973333pt;}
.y7d_c01332{bottom:980.733333pt;}
.y79_c01332{bottom:990.720000pt;}
.y78_c01332{bottom:993.026667pt;}
.y74_c01332{bottom:994.560000pt;}
.y72_c01332{bottom:995.333333pt;}
.y76_c01332{bottom:996.093333pt;}
.y77_c01332{bottom:996.866667pt;}
.y70_c01332{bottom:997.626667pt;}
.y73_c01332{bottom:999.173333pt;}
.y75_c01332{bottom:1000.706667pt;}
.y71_c01332{bottom:1003.013333pt;}
.y6f_c01332{bottom:1009.920000pt;}
.y6d_c01332{bottom:1011.453333pt;}
.y6e_c01332{bottom:1012.226667pt;}
.y6a_c01332{bottom:1012.986667pt;}
.y69_c01332{bottom:1013.760000pt;}
.y68_c01332{bottom:1014.533333pt;}
.y6b_c01332{bottom:1015.293333pt;}
.y6c_c01332{bottom:1016.066667pt;}
.y66_c01332{bottom:1016.826667pt;}
.y67_c01332{bottom:1019.133333pt;}
.y65_c01332{bottom:1019.906667pt;}
.y64_c01332{bottom:1028.346667pt;}
.y62_c01332{bottom:1029.893333pt;}
.y63_c01332{bottom:1030.653333pt;}
.y61_c01332{bottom:1031.426667pt;}
.y5f_c01332{bottom:1032.960000pt;}
.y5c_c01332{bottom:1035.266667pt;}
.y5b_c01332{bottom:1036.026667pt;}
.y60_c01332{bottom:1036.800000pt;}
.y5d_c01332{bottom:1039.866667pt;}
.y5e_c01332{bottom:1042.173333pt;}
.y59_c01332{bottom:1043.706667pt;}
.y5a_c01332{bottom:1047.546667pt;}
.y58_c01332{bottom:1048.320000pt;}
.y56_c01332{bottom:1049.093333pt;}
.y55_c01332{bottom:1049.853333pt;}
.y52_c01332{bottom:1051.386667pt;}
.y57_c01332{bottom:1053.693333pt;}
.y53_c01332{bottom:1054.466667pt;}
.y54_c01332{bottom:1055.226667pt;}
.y51_c01332{bottom:1065.213333pt;}
.y4f_c01332{bottom:1066.746667pt;}
.y50_c01332{bottom:1069.826667pt;}
.y4d_c01332{bottom:1070.586667pt;}
.y4e_c01332{bottom:1071.360000pt;}
.y205_c01332{bottom:1072.133333pt;}
.y4c_c01332{bottom:1072.893333pt;}
.y4a_c01332{bottom:1082.106667pt;}
.y4b_c01332{bottom:1082.880000pt;}
.y47_c01332{bottom:1084.413333pt;}
.y45_c01332{bottom:1085.946667pt;}
.y46_c01332{bottom:1088.253333pt;}
.y48_c01332{bottom:1089.026667pt;}
.y49_c01332{bottom:1093.626667pt;}
.y44_c01332{bottom:1100.546667pt;}
.y43_c01332{bottom:1102.080000pt;}
.y41_c01332{bottom:1102.853333pt;}
.y3e_c01332{bottom:1103.613333pt;}
.y3f_c01332{bottom:1104.386667pt;}
.y3d_c01332{bottom:1105.146667pt;}
.y3c_c01332{bottom:1106.693333pt;}
.y40_c01332{bottom:1108.226667pt;}
.y42_c01332{bottom:1117.440000pt;}
.y36_c01332{bottom:1121.280000pt;}
.y3b_c01332{bottom:1122.053333pt;}
.y35_c01332{bottom:1122.813333pt;}
.y3a_c01332{bottom:1123.586667pt;}
.y37_c01332{bottom:1124.346667pt;}
.y39_c01332{bottom:1125.120000pt;}
.y38_c01332{bottom:1125.893333pt;}
.y34_c01332{bottom:1128.186667pt;}
.y33_c01332{bottom:1132.800000pt;}
.y31_c01332{bottom:1136.640000pt;}
.y30_c01332{bottom:1137.413333pt;}
.y32_c01332{bottom:1138.173333pt;}
.y2f_c01332{bottom:1139.706667pt;}
.y2e_c01332{bottom:1140.480000pt;}
.y2a_c01332{bottom:1141.253333pt;}
.y29_c01332{bottom:1142.786667pt;}
.y28_c01332{bottom:1144.320000pt;}
.y2c_c01332{bottom:1147.386667pt;}
.y2d_c01332{bottom:1150.466667pt;}
.y2b_c01332{bottom:1155.840000pt;}
.y23_c01332{bottom:1156.613333pt;}
.y21_c01332{bottom:1157.373333pt;}
.y24_c01332{bottom:1158.146667pt;}
.y1f_c01332{bottom:1158.906667pt;}
.y26_c01332{bottom:1159.680000pt;}
.y25_c01332{bottom:1160.453333pt;}
.y27_c01332{bottom:1161.213333pt;}
.y22_c01332{bottom:1161.986667pt;}
.y20_c01332{bottom:1163.520000pt;}
.y1e_c01332{bottom:1171.973333pt;}
.y1d_c01332{bottom:1174.266667pt;}
.y18_c01332{bottom:1175.040000pt;}
.y19_c01332{bottom:1175.813333pt;}
.y1c_c01332{bottom:1178.106667pt;}
.y1b_c01332{bottom:1178.880000pt;}
.y1a_c01332{bottom:1179.653333pt;}
.y17_c01332{bottom:1181.946667pt;}
.y1_c01332{bottom:1187.333333pt;}
.y2_c01332{bottom:1190.400000pt;}
.y16_c01332{bottom:1191.173333pt;}
.y13_c01332{bottom:1195.013333pt;}
.y12_c01332{bottom:1195.773333pt;}
.y14_c01332{bottom:1196.546667pt;}
.y15_c01332{bottom:1197.306667pt;}
.y11_c01332{bottom:1201.920000pt;}
.ye_c01332{bottom:1210.373333pt;}
.yc_c01332{bottom:1211.906667pt;}
.y9_c01332{bottom:1212.666667pt;}
.y8_c01332{bottom:1213.440000pt;}
.yd_c01332{bottom:1214.973333pt;}
.ya_c01332{bottom:1216.506667pt;}
.y7_c01332{bottom:1217.280000pt;}
.yb_c01332{bottom:1221.120000pt;}
.yf_c01332{bottom:1224.186667pt;}
.y10_c01332{bottom:1225.733333pt;}
.y6_c01332{bottom:1227.266667pt;}
.y5_c01332{bottom:1234.173333pt;}
.y4_c01332{bottom:1236.480000pt;}
.y3_c01332{bottom:1237.253333pt;}
.h11_c01332{height:2.764500pt;}
.h19_c01332{height:4.799479pt;}
.h1a_c01332{height:5.519401pt;}
.hf_c01332{height:8.303099pt;}
.h3_c01332{height:11.038802pt;}
.h1c_c01332{height:13.822500pt;}
.h21_c01332{height:16.606198pt;}
.h2_c01332{height:19.341901pt;}
.h10_c01332{height:22.125599pt;}
.h1d_c01332{height:24.861302pt;}
.h9_c01332{height:27.645000pt;}
.h16_c01332{height:30.428698pt;}
.h20_c01332{height:33.164401pt;}
.h12_c01332{height:35.948099pt;}
.h17_c01332{height:38.683802pt;}
.hb_c01332{height:41.467500pt;}
.h14_c01332{height:44.251198pt;}
.h6_c01332{height:46.986901pt;}
.h18_c01332{height:49.770599pt;}
.ha_c01332{height:52.506302pt;}
.hc_c01332{height:55.290000pt;}
.h23_c01332{height:56.517865pt;}
.h8_c01332{height:58.073698pt;}
.he_c01332{height:60.809401pt;}
.h7_c01332{height:63.593099pt;}
.h15_c01332{height:66.328802pt;}
.h13_c01332{height:69.112500pt;}
.h1e_c01332{height:71.896198pt;}
.h4_c01332{height:74.631901pt;}
.h1f_c01332{height:77.415599pt;}
.h1b_c01332{height:80.151302pt;}
.hd_c01332{height:82.935000pt;}
.h22_c01332{height:85.718698pt;}
.h5_c01332{height:176.908802pt;}
.h1_c01332{height:1345.333333pt;}
.h0_c01332{height:1345.533333pt;}
.w0_c01332{width:963.066667pt;}
.w1_c01332{width:963.333333pt;}
.x0_c01332{left:0.000000pt;}
.x1_c01332{left:146.693333pt;}
.x2_c01332{left:164.346667pt;}
.x29_c01332{left:183.546667pt;}
.xc6_c01332{left:185.853333pt;}
.xe5_c01332{left:192.773333pt;}
.x11f_c01332{left:195.840000pt;}
.x114_c01332{left:197.373333pt;}
.x4d_c01332{left:199.680000pt;}
.x33_c01332{left:203.520000pt;}
.x116_c01332{left:207.360000pt;}
.xc7_c01332{left:208.893333pt;}
.x6_c01332{left:211.200000pt;}
.x70_c01332{left:212.733333pt;}
.x7b_c01332{left:215.040000pt;}
.x85_c01332{left:216.573333pt;}
.xbb_c01332{left:218.106667pt;}
.x17_c01332{left:219.653333pt;}
.x53_c01332{left:221.186667pt;}
.x7_c01332{left:222.720000pt;}
.x20_c01332{left:225.026667pt;}
.x3_c01332{left:226.560000pt;}
.x11b_c01332{left:228.866667pt;}
.xd0_c01332{left:230.400000pt;}
.x120_c01332{left:231.933333pt;}
.xf0_c01332{left:233.466667pt;}
.xb5_c01332{left:235.013333pt;}
.xe4_c01332{left:236.546667pt;}
.x69_c01332{left:238.080000pt;}
.x11c_c01332{left:240.386667pt;}
.x3a_c01332{left:242.693333pt;}
.xc3_c01332{left:245.760000pt;}
.x71_c01332{left:248.826667pt;}
.x102_c01332{left:250.373333pt;}
.x54_c01332{left:252.666667pt;}
.x21_c01332{left:254.973333pt;}
.xa5_c01332{left:256.506667pt;}
.x124_c01332{left:259.586667pt;}
.x34_c01332{left:261.893333pt;}
.xda_c01332{left:264.960000pt;}
.x9e_c01332{left:266.493333pt;}
.xf9_c01332{left:268.800000pt;}
.x2a_c01332{left:270.333333pt;}
.xbc_c01332{left:272.640000pt;}
.x117_c01332{left:274.173333pt;}
.x72_c01332{left:275.706667pt;}
.x5c_c01332{left:277.253333pt;}
.xec_c01332{left:278.786667pt;}
.x90_c01332{left:282.626667pt;}
.x45_c01332{left:285.693333pt;}
.x6a_c01332{left:288.000000pt;}
.x8_c01332{left:290.306667pt;}
.xd1_c01332{left:292.613333pt;}
.x3b_c01332{left:294.146667pt;}
.x35_c01332{left:295.680000pt;}
.x110_c01332{left:297.213333pt;}
.x4_c01332{left:299.520000pt;}
.x18_c01332{left:302.586667pt;}
.x97_c01332{left:304.893333pt;}
.xa6_c01332{left:307.200000pt;}
.x4e_c01332{left:308.733333pt;}
.x104_c01332{left:310.266667pt;}
.x100_c01332{left:311.813333pt;}
.x22_c01332{left:313.346667pt;}
.xb0_c01332{left:316.413333pt;}
.xa8_c01332{left:317.946667pt;}
.x4f_c01332{left:320.253333pt;}
.x36_c01332{left:321.786667pt;}
.x73_c01332{left:324.093333pt;}
.xc4_c01332{left:326.400000pt;}
.xde_c01332{left:327.933333pt;}
.x103_c01332{left:329.466667pt;}
.x55_c01332{left:331.773333pt;}
.xb1_c01332{left:333.306667pt;}
.x3c_c01332{left:335.613333pt;}
.xd2_c01332{left:337.920000pt;}
.x9f_c01332{left:339.453333pt;}
.x56_c01332{left:340.986667pt;}
.x118_c01332{left:342.533333pt;}
.x98_c01332{left:344.066667pt;}
.xfa_c01332{left:345.600000pt;}
.xd7_c01332{left:347.133333pt;}
.xc8_c01332{left:349.440000pt;}
.x86_c01332{left:351.746667pt;}
.x19_c01332{left:353.280000pt;}
.xfb_c01332{left:355.586667pt;}
.xa9_c01332{left:357.120000pt;}
.x57_c01332{left:358.653333pt;}
.xf4_c01332{left:360.186667pt;}
.xb6_c01332{left:363.266667pt;}
.x115_c01332{left:365.573333pt;}
.xa0_c01332{left:368.640000pt;}
.x2b_c01332{left:370.173333pt;}
.xc9_c01332{left:372.480000pt;}
.x1a_c01332{left:374.013333pt;}
.x9_c01332{left:376.320000pt;}
.x99_c01332{left:377.853333pt;}
.x46_c01332{left:379.386667pt;}
.xaa_c01332{left:381.693333pt;}
.x3d_c01332{left:383.226667pt;}
.xa1_c01332{left:384.773333pt;}
.x11d_c01332{left:386.306667pt;}
.x91_c01332{left:388.613333pt;}
.x2c_c01332{left:390.146667pt;}
.x50_c01332{left:392.453333pt;}
.xf1_c01332{left:393.986667pt;}
.x3e_c01332{left:395.520000pt;}
.x7c_c01332{left:397.826667pt;}
.x5d_c01332{left:400.133333pt;}
.xb7_c01332{left:403.200000pt;}
.x1b_c01332{left:404.733333pt;}
.x47_c01332{left:407.040000pt;}
.xa7_c01332{left:408.573333pt;}
.x3f_c01332{left:410.880000pt;}
.x87_c01332{left:413.186667pt;}
.x23_c01332{left:418.560000pt;}
.x58_c01332{left:420.866667pt;}
.xe6_c01332{left:422.400000pt;}
.xd3_c01332{left:423.933333pt;}
.x74_c01332{left:425.466667pt;}
.x9a_c01332{left:428.546667pt;}
.x10c_c01332{left:430.080000pt;}
.x119_c01332{left:431.613333pt;}
.x2d_c01332{left:433.146667pt;}
.xfc_c01332{left:436.226667pt;}
.x40_c01332{left:437.760000pt;}
.xa_c01332{left:441.600000pt;}
.xbd_c01332{left:444.666667pt;}
.x6b_c01332{left:446.213333pt;}
.xfd_c01332{left:447.746667pt;}
.xf2_c01332{left:450.053333pt;}
.xe8_c01332{left:451.586667pt;}
.x62_c01332{left:453.893333pt;}
.x75_c01332{left:455.426667pt;}
.xfe_c01332{left:456.960000pt;}
.xa2_c01332{left:458.493333pt;}
.x105_c01332{left:460.026667pt;}
.xb_c01332{left:462.333333pt;}
.xdb_c01332{left:466.173333pt;}
.x88_c01332{left:467.706667pt;}
.x1c_c01332{left:469.253333pt;}
.x7f_c01332{left:471.546667pt;}
.x106_c01332{left:473.093333pt;}
.xc_c01332{left:476.160000pt;}
.xab_c01332{left:477.693333pt;}
.x41_c01332{left:479.226667pt;}
.x10e_c01332{left:480.773333pt;}
.xd_c01332{left:482.306667pt;}
.xca_c01332{left:484.613333pt;}
.x11e_c01332{left:486.146667pt;}
.x24_c01332{left:488.453333pt;}
.x37_c01332{left:491.520000pt;}
.xd8_c01332{left:493.053333pt;}
.xae_c01332{left:495.360000pt;}
.x9b_c01332{left:496.893333pt;}
.x92_c01332{left:499.973333pt;}
.xe_c01332{left:502.266667pt;}
.xf6_c01332{left:503.813333pt;}
.x48_c01332{left:505.346667pt;}
.x2e_c01332{left:507.653333pt;}
.xb2_c01332{left:509.186667pt;}
.xdf_c01332{left:510.720000pt;}
.xcb_c01332{left:512.253333pt;}
.xbe_c01332{left:513.786667pt;}
.x80_c01332{left:515.333333pt;}
.x6c_c01332{left:516.866667pt;}
.x49_c01332{left:518.400000pt;}
.xf_c01332{left:519.933333pt;}
.xd9_c01332{left:522.240000pt;}
.x10a_c01332{left:524.546667pt;}
.xd4_c01332{left:528.386667pt;}
.x11a_c01332{left:529.920000pt;}
.xdc_c01332{left:532.226667pt;}
.x76_c01332{left:534.533333pt;}
.x81_c01332{left:537.600000pt;}
.x1d_c01332{left:539.133333pt;}
.x5e_c01332{left:540.666667pt;}
.xd5_c01332{left:542.973333pt;}
.x6d_c01332{left:545.280000pt;}
.x10_c01332{left:547.586667pt;}
.x121_c01332{left:549.120000pt;}
.x77_c01332{left:551.426667pt;}
.xe2_c01332{left:553.733333pt;}
.x93_c01332{left:555.266667pt;}
.x63_c01332{left:556.800000pt;}
.x89_c01332{left:558.333333pt;}
.x59_c01332{left:559.866667pt;}
.x111_c01332{left:561.413333pt;}
.x2f_c01332{left:563.706667pt;}
.x25_c01332{left:566.786667pt;}
.xdd_c01332{left:568.320000pt;}
.xed_c01332{left:569.853333pt;}
.x8a_c01332{left:574.466667pt;}
.x5a_c01332{left:576.000000pt;}
.x66_c01332{left:578.306667pt;}
.x107_c01332{left:579.840000pt;}
.x7d_c01332{left:581.373333pt;}
.x82_c01332{left:583.680000pt;}
.xc5_c01332{left:585.213333pt;}
.x6e_c01332{left:586.746667pt;}
.x5f_c01332{left:589.053333pt;}
.xbf_c01332{left:592.893333pt;}
.x4a_c01332{left:595.200000pt;}
.xe9_c01332{left:596.733333pt;}
.xb8_c01332{left:599.040000pt;}
.x94_c01332{left:602.106667pt;}
.xc0_c01332{left:606.720000pt;}
.x42_c01332{left:608.253333pt;}
.xea_c01332{left:609.786667pt;}
.x9c_c01332{left:611.333333pt;}
.xb3_c01332{left:615.173333pt;}
.x122_c01332{left:616.706667pt;}
.x8b_c01332{left:619.013333pt;}
.x51_c01332{left:621.306667pt;}
.x11_c01332{left:623.613333pt;}
.x30_c01332{left:625.920000pt;}
.x78_c01332{left:628.986667pt;}
.x26_c01332{left:630.533333pt;}
.xce_c01332{left:633.600000pt;}
.xd6_c01332{left:635.133333pt;}
.xa3_c01332{left:637.440000pt;}
.x6f_c01332{left:638.973333pt;}
.x101_c01332{left:640.506667pt;}
.x10f_c01332{left:642.053333pt;}
.x112_c01332{left:644.346667pt;}
.xeb_c01332{left:645.893333pt;}
.xb9_c01332{left:647.426667pt;}
.x27_c01332{left:649.733333pt;}
.x38_c01332{left:652.026667pt;}
.x5b_c01332{left:653.573333pt;}
.xe7_c01332{left:655.866667pt;}
.x83_c01332{left:659.706667pt;}
.x123_c01332{left:661.253333pt;}
.xa4_c01332{left:666.626667pt;}
.x43_c01332{left:668.160000pt;}
.xcc_c01332{left:671.226667pt;}
.x67_c01332{left:672.773333pt;}
.x31_c01332{left:675.066667pt;}
.x79_c01332{left:676.613333pt;}
.x95_c01332{left:678.906667pt;}
.x12_c01332{left:681.213333pt;}
.x8c_c01332{left:682.746667pt;}
.x64_c01332{left:685.826667pt;}
.x28_c01332{left:687.360000pt;}
.x39_c01332{left:690.426667pt;}
.x60_c01332{left:692.733333pt;}
.x68_c01332{left:694.266667pt;}
.xcf_c01332{left:697.346667pt;}
.x8d_c01332{left:698.880000pt;}
.x13_c01332{left:701.186667pt;}
.x7e_c01332{left:702.720000pt;}
.x108_c01332{left:704.253333pt;}
.xee_c01332{left:708.866667pt;}
.xc1_c01332{left:711.173333pt;}
.x1e_c01332{left:714.240000pt;}
.x8e_c01332{left:715.773333pt;}
.x52_c01332{left:717.306667pt;}
.xf7_c01332{left:718.853333pt;}
.xcd_c01332{left:720.386667pt;}
.x65_c01332{left:721.920000pt;}
.x5_c01332{left:723.453333pt;}
.x9d_c01332{left:725.760000pt;}
.xc2_c01332{left:727.293333pt;}
.x44_c01332{left:729.600000pt;}
.x10d_c01332{left:731.133333pt;}
.x84_c01332{left:732.666667pt;}
.xff_c01332{left:735.746667pt;}
.xe0_c01332{left:740.346667pt;}
.xf3_c01332{left:743.426667pt;}
.xba_c01332{left:744.960000pt;}
.x113_c01332{left:746.493333pt;}
.x7a_c01332{left:748.800000pt;}
.x10b_c01332{left:750.333333pt;}
.xf5_c01332{left:751.866667pt;}
.x1f_c01332{left:755.706667pt;}
.x14_c01332{left:757.253333pt;}
.xe3_c01332{left:760.320000pt;}
.x125_c01332{left:762.626667pt;}
.xb4_c01332{left:765.693333pt;}
.x61_c01332{left:768.000000pt;}
.x96_c01332{left:771.840000pt;}
.xac_c01332{left:774.906667pt;}
.xef_c01332{left:776.453333pt;}
.x109_c01332{left:781.826667pt;}
.x32_c01332{left:783.360000pt;}
.xe1_c01332{left:784.893333pt;}
.xf8_c01332{left:786.426667pt;}
.xad_c01332{left:789.506667pt;}
.x4b_c01332{left:797.186667pt;}
.x8f_c01332{left:798.720000pt;}
.x4c_c01332{left:807.173333pt;}
.x15_c01332{left:808.706667pt;}
.x16_c01332{left:820.226667pt;}
.xaf_c01332{left:830.973333pt;}
.x126_c01332{left:886.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01333;src:url('chunks/assets/font_45957e0e6b0d94021b1506df.woff2')format("woff");}.ff1_c01333{font-family:ff1_c01333;line-height:1.109863;font-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_c01333{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m19_c01333{transform:matrix(0.078150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078150,0.000000,0.000000,0.250000,0,0);}
.m24_c01333{transform:matrix(0.083575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083575,0.000000,0.000000,0.250000,0,0);}
.m3_c01333{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m1_c01333{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m20_c01333{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);}
.m1a_c01333{transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);}
.m16_c01333{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.m10_c01333{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m0_c01333{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);}
.m15_c01333{transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);}
.m2_c01333{transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);}
.m22_c01333{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.mf_c01333{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);}
.m9_c01333{transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);}
.mb_c01333{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);}
.m12_c01333{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_c01333{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m1f_c01333{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m1c_c01333{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_c01333{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01333{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m14_c01333{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c01333{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m18_c01333{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);}
.m25_c01333{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01333{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);}
.m5_c01333{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8_c01333{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m13_c01333{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4_c01333{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m17_c01333{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m23_c01333{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m11_c01333{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01333{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.me_c01333{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.md_c01333{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01333{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.v0_c01333{vertical-align:0.000000px;}
.ls0_c01333{letter-spacing:0.000000px;}
.sc__c01333{text-shadow:none;}
.sc0_c01333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01333{-webkit-text-stroke:0px transparent;}
.sc0_c01333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01333{word-spacing:0.000000px;}
.fc0_c01333{color:transparent;}
.fs4_c01333{font-size:3.456000px;}
.fs1_c01333{font-size:6.000000px;}
.fsb_c01333{font-size:6.900000px;}
.fsa_c01333{font-size:13.800000px;}
.fs15_c01333{font-size:17.280000px;}
.fs3_c01333{font-size:24.180000px;}
.fs14_c01333{font-size:31.080000px;}
.fse_c01333{font-size:34.560000px;}
.fs0_c01333{font-size:38.040000px;}
.fs11_c01333{font-size:41.460000px;}
.fsf_c01333{font-size:44.940000px;}
.fs13_c01333{font-size:51.840000px;}
.fsc_c01333{font-size:55.320000px;}
.fsd_c01333{font-size:62.220000px;}
.fs10_c01333{font-size:65.640000px;}
.fs9_c01333{font-size:69.120000px;}
.fs5_c01333{font-size:72.600000px;}
.fs16_c01333{font-size:76.020000px;}
.fs6_c01333{font-size:82.920000px;}
.fs2_c01333{font-size:86.400000px;}
.fs7_c01333{font-size:96.780000px;}
.fs17_c01333{font-size:100.200000px;}
.fs12_c01333{font-size:103.680000px;}
.fs8_c01333{font-size:134.760000px;}
.y0_c01333{bottom:0.000000px;}
.y2b_c01333{bottom:851.910000px;}
.y2a_c01333{bottom:862.275000px;}
.y29_c01333{bottom:892.515000px;}
.y28_c01333{bottom:902.880000px;}
.y26_c01333{bottom:921.885000px;}
.y27_c01333{bottom:924.480000px;}
.y25_c01333{bottom:933.990000px;}
.y23_c01333{bottom:954.720000px;}
.y24_c01333{bottom:958.170000px;}
.y22_c01333{bottom:972.870000px;}
.y21_c01333{bottom:994.470000px;}
.y20_c01333{bottom:1015.200000px;}
.y1f_c01333{bottom:1030.755000px;}
.y1e_c01333{bottom:1050.630000px;}
.y1c_c01333{bottom:1061.850000px;}
.y1d_c01333{bottom:1067.910000px;}
.y1b_c01333{bottom:1071.360000px;}
.y1a_c01333{bottom:1084.320000px;}
.y19_c01333{bottom:1116.285000px;}
.y18_c01333{bottom:1137.030000px;}
.y17_c01333{bottom:1197.510000px;}
.y16_c01333{bottom:1215.645000px;}
.y15_c01333{bottom:1235.520000px;}
.y14_c01333{bottom:1257.990000px;}
.y13_c01333{bottom:1279.590000px;}
.y12_c01333{bottom:1299.450000px;}
.y11_c01333{bottom:1319.325000px;}
.y10_c01333{bottom:1333.155000px;}
.yf_c01333{bottom:1359.930000px;}
.yd_c01333{bottom:1371.165000px;}
.ya_c01333{bottom:1372.035000px;}
.yb_c01333{bottom:1372.890000px;}
.ye_c01333{bottom:1373.760000px;}
.yc_c01333{bottom:1374.630000px;}
.y9_c01333{bottom:1375.485000px;}
.y8_c01333{bottom:1380.675000px;}
.y7_c01333{bottom:1381.530000px;}
.y6_c01333{bottom:1396.230000px;}
.y3_c01333{bottom:1399.680000px;}
.y2_c01333{bottom:1410.045000px;}
.y4_c01333{bottom:1410.915000px;}
.y5_c01333{bottom:1411.770000px;}
.y1_c01333{bottom:1422.150000px;}
.h6_c01333{height:3.110063px;}
.h3_c01333{height:5.399414px;}
.hd_c01333{height:6.209326px;}
.hc_c01333{height:12.418652px;}
.h17_c01333{height:15.550313px;}
.h5_c01333{height:21.759639px;}
.h16_c01333{height:27.968965px;}
.h10_c01333{height:31.100625px;}
.h2_c01333{height:34.232285px;}
.h13_c01333{height:37.309951px;}
.h11_c01333{height:40.441611px;}
.h15_c01333{height:46.650937px;}
.he_c01333{height:49.782598px;}
.hf_c01333{height:55.991924px;}
.h12_c01333{height:59.069590px;}
.hb_c01333{height:62.201250px;}
.h7_c01333{height:65.332910px;}
.h18_c01333{height:68.410576px;}
.h8_c01333{height:74.619902px;}
.h4_c01333{height:77.751563px;}
.h9_c01333{height:87.092549px;}
.h19_c01333{height:90.170215px;}
.h14_c01333{height:93.301875px;}
.ha_c01333{height:121.270840px;}
.h0_c01333{height:1509.405000px;}
.h1_c01333{height:1509.750000px;}
.w0_c01333{width:1079.130000px;}
.w1_c01333{width:1079.250000px;}
.x0_c01333{left:0.000000px;}
.x12_c01333{left:1.725000px;}
.x13_c01333{left:6.915000px;}
.x15_c01333{left:8.640000px;}
.x11_c01333{left:12.090000px;}
.x14_c01333{left:25.050000px;}
.xf_c01333{left:47.520000px;}
.x10_c01333{left:59.610000px;}
.x6_c01333{left:259.200000px;}
.x7_c01333{left:277.350000px;}
.x8_c01333{left:319.680000px;}
.xd_c01333{left:359.430000px;}
.x9_c01333{left:427.680000px;}
.xa_c01333{left:488.160000px;}
.xe_c01333{left:583.200000px;}
.xb_c01333{left:609.120000px;}
.x2_c01333{left:657.510000px;}
.x3_c01333{left:705.030000px;}
.x1_c01333{left:714.525000px;}
.xc_c01333{left:840.675000px;}
.x4_c01333{left:868.320000px;}
.x5_c01333{left:888.195000px;}
@media print{
.v0_c01333{vertical-align:0.000000pt;}
.ls0_c01333{letter-spacing:0.000000pt;}
.ws0_c01333{word-spacing:0.000000pt;}
.fs4_c01333{font-size:3.072000pt;}
.fs1_c01333{font-size:5.333333pt;}
.fsb_c01333{font-size:6.133333pt;}
.fsa_c01333{font-size:12.266667pt;}
.fs15_c01333{font-size:15.360000pt;}
.fs3_c01333{font-size:21.493333pt;}
.fs14_c01333{font-size:27.626667pt;}
.fse_c01333{font-size:30.720000pt;}
.fs0_c01333{font-size:33.813333pt;}
.fs11_c01333{font-size:36.853333pt;}
.fsf_c01333{font-size:39.946667pt;}
.fs13_c01333{font-size:46.080000pt;}
.fsc_c01333{font-size:49.173333pt;}
.fsd_c01333{font-size:55.306667pt;}
.fs10_c01333{font-size:58.346667pt;}
.fs9_c01333{font-size:61.440000pt;}
.fs5_c01333{font-size:64.533333pt;}
.fs16_c01333{font-size:67.573333pt;}
.fs6_c01333{font-size:73.706667pt;}
.fs2_c01333{font-size:76.800000pt;}
.fs7_c01333{font-size:86.026667pt;}
.fs17_c01333{font-size:89.066667pt;}
.fs12_c01333{font-size:92.160000pt;}
.fs8_c01333{font-size:119.786667pt;}
.y0_c01333{bottom:0.000000pt;}
.y2b_c01333{bottom:757.253333pt;}
.y2a_c01333{bottom:766.466667pt;}
.y29_c01333{bottom:793.346667pt;}
.y28_c01333{bottom:802.560000pt;}
.y26_c01333{bottom:819.453333pt;}
.y27_c01333{bottom:821.760000pt;}
.y25_c01333{bottom:830.213333pt;}
.y23_c01333{bottom:848.640000pt;}
.y24_c01333{bottom:851.706667pt;}
.y22_c01333{bottom:864.773333pt;}
.y21_c01333{bottom:883.973333pt;}
.y20_c01333{bottom:902.400000pt;}
.y1f_c01333{bottom:916.226667pt;}
.y1e_c01333{bottom:933.893333pt;}
.y1c_c01333{bottom:943.866667pt;}
.y1d_c01333{bottom:949.253333pt;}
.y1b_c01333{bottom:952.320000pt;}
.y1a_c01333{bottom:963.840000pt;}
.y19_c01333{bottom:992.253333pt;}
.y18_c01333{bottom:1010.693333pt;}
.y17_c01333{bottom:1064.453333pt;}
.y16_c01333{bottom:1080.573333pt;}
.y15_c01333{bottom:1098.240000pt;}
.y14_c01333{bottom:1118.213333pt;}
.y13_c01333{bottom:1137.413333pt;}
.y12_c01333{bottom:1155.066667pt;}
.y11_c01333{bottom:1172.733333pt;}
.y10_c01333{bottom:1185.026667pt;}
.yf_c01333{bottom:1208.826667pt;}
.yd_c01333{bottom:1218.813333pt;}
.ya_c01333{bottom:1219.586667pt;}
.yb_c01333{bottom:1220.346667pt;}
.ye_c01333{bottom:1221.120000pt;}
.yc_c01333{bottom:1221.893333pt;}
.y9_c01333{bottom:1222.653333pt;}
.y8_c01333{bottom:1227.266667pt;}
.y7_c01333{bottom:1228.026667pt;}
.y6_c01333{bottom:1241.093333pt;}
.y3_c01333{bottom:1244.160000pt;}
.y2_c01333{bottom:1253.373333pt;}
.y4_c01333{bottom:1254.146667pt;}
.y5_c01333{bottom:1254.906667pt;}
.y1_c01333{bottom:1264.133333pt;}
.h6_c01333{height:2.764500pt;}
.h3_c01333{height:4.799479pt;}
.hd_c01333{height:5.519401pt;}
.hc_c01333{height:11.038802pt;}
.h17_c01333{height:13.822500pt;}
.h5_c01333{height:19.341901pt;}
.h16_c01333{height:24.861302pt;}
.h10_c01333{height:27.645000pt;}
.h2_c01333{height:30.428698pt;}
.h13_c01333{height:33.164401pt;}
.h11_c01333{height:35.948099pt;}
.h15_c01333{height:41.467500pt;}
.he_c01333{height:44.251198pt;}
.hf_c01333{height:49.770599pt;}
.h12_c01333{height:52.506302pt;}
.hb_c01333{height:55.290000pt;}
.h7_c01333{height:58.073698pt;}
.h18_c01333{height:60.809401pt;}
.h8_c01333{height:66.328802pt;}
.h4_c01333{height:69.112500pt;}
.h9_c01333{height:77.415599pt;}
.h19_c01333{height:80.151302pt;}
.h14_c01333{height:82.935000pt;}
.ha_c01333{height:107.796302pt;}
.h0_c01333{height:1341.693333pt;}
.h1_c01333{height:1342.000000pt;}
.w0_c01333{width:959.226667pt;}
.w1_c01333{width:959.333333pt;}
.x0_c01333{left:0.000000pt;}
.x12_c01333{left:1.533333pt;}
.x13_c01333{left:6.146667pt;}
.x15_c01333{left:7.680000pt;}
.x11_c01333{left:10.746667pt;}
.x14_c01333{left:22.266667pt;}
.xf_c01333{left:42.240000pt;}
.x10_c01333{left:52.986667pt;}
.x6_c01333{left:230.400000pt;}
.x7_c01333{left:246.533333pt;}
.x8_c01333{left:284.160000pt;}
.xd_c01333{left:319.493333pt;}
.x9_c01333{left:380.160000pt;}
.xa_c01333{left:433.920000pt;}
.xe_c01333{left:518.400000pt;}
.xb_c01333{left:541.440000pt;}
.x2_c01333{left:584.453333pt;}
.x3_c01333{left:626.693333pt;}
.x1_c01333{left:635.133333pt;}
.xc_c01333{left:747.266667pt;}
.x4_c01333{left:771.840000pt;}
.x5_c01333{left:789.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_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_293bb2a15a91b99fa6f43449.woff2')format("woff");}.ff1_c01334{font-family:ff1_c01334;line-height:1.109863;font-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_c01334{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m12b_c01334{transform:matrix(0.065775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065775,0.000000,0.000000,0.250000,0,0);}
.m99_c01334{transform:matrix(0.066175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066175,0.000000,0.000000,0.250000,0,0);}
.m150_c01334{transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069450,0.000000,0.000000,0.250000,0,0);}
.m1b_c01334{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m17_c01334{transform:matrix(0.095750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095750,0.000000,0.000000,0.250000,0,0);}
.m147_c01334{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);}
.m1be_c01334{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m139_c01334{transform:matrix(0.101975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101975,0.000000,0.000000,0.250000,0,0);}
.mf2_c01334{transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105375,0.000000,0.000000,0.250000,0,0);}
.m13a_c01334{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);}
.m1b4_c01334{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.m157_c01334{transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119050,0.000000,0.000000,0.250000,0,0);}
.mf9_c01334{transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119350,0.000000,0.000000,0.250000,0,0);}
.m13b_c01334{transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119975,0.000000,0.000000,0.250000,0,0);}
.m19f_c01334{transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120425,0.000000,0.000000,0.250000,0,0);}
.m194_c01334{transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121350,0.000000,0.000000,0.250000,0,0);}
.m9d_c01334{transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121425,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01334{transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);}
.m87_c01334{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.me3_c01334{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);}
.m192_c01334{transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125100,0.000000,0.000000,0.250000,0,0);}
.mf8_c01334{transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125675,0.000000,0.000000,0.250000,0,0);}
.m161_c01334{transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);}
.mec_c01334{transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127250,0.000000,0.000000,0.250000,0,0);}
.m151_c01334{transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127450,0.000000,0.000000,0.250000,0,0);}
.m1b8_c01334{transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127600,0.000000,0.000000,0.250000,0,0);}
.m13e_c01334{transform:matrix(0.128575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128575,0.000000,0.000000,0.250000,0,0);}
.m185_c01334{transform:matrix(0.130325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130325,0.000000,0.000000,0.250000,0,0);}
.m17d_c01334{transform:matrix(0.131975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131975,0.000000,0.000000,0.250000,0,0);}
.m9f_c01334{transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132200,0.000000,0.000000,0.250000,0,0);}
.md1_c01334{transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132325,0.000000,0.000000,0.250000,0,0);}
.m15d_c01334{transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);}
.m124_c01334{transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134050,0.000000,0.000000,0.250000,0,0);}
.m184_c01334{transform:matrix(0.134100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134100,0.000000,0.000000,0.250000,0,0);}
.m12f_c01334{transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136325,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01334{transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137800,0.000000,0.000000,0.250000,0,0);}
.m4c_c01334{transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138225,0.000000,0.000000,0.250000,0,0);}
.md8_c01334{transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138375,0.000000,0.000000,0.250000,0,0);}
.md9_c01334{transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138525,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01334{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m125_c01334{transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140225,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01334{transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);}
.mce_c01334{transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141100,0.000000,0.000000,0.250000,0,0);}
.md2_c01334{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m5_c01334{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01334{transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144275,0.000000,0.000000,0.250000,0,0);}
.mc6_c01334{transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144900,0.000000,0.000000,0.250000,0,0);}
.m9_c01334{transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01334{transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145550,0.000000,0.000000,0.250000,0,0);}
.mf0_c01334{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);}
.m10f_c01334{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);}
.m137_c01334{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);}
.m168_c01334{transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);}
.m4_c01334{transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147850,0.000000,0.000000,0.250000,0,0);}
.m181_c01334{transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148600,0.000000,0.000000,0.250000,0,0);}
.m144_c01334{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m1af_c01334{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);}
.m8d_c01334{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);}
.m28_c01334{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.mf6_c01334{transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150375,0.000000,0.000000,0.250000,0,0);}
.m10e_c01334{transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);}
.m199_c01334{transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150900,0.000000,0.000000,0.250000,0,0);}
.m10c_c01334{transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150975,0.000000,0.000000,0.250000,0,0);}
.m129_c01334{transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);}
.m7f_c01334{transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);}
.m190_c01334{transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);}
.m152_c01334{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.m8_c01334{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.m111_c01334{transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155825,0.000000,0.000000,0.250000,0,0);}
.me_c01334{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.mee_c01334{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);}
.m1_c01334{transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);}
.mf1_c01334{transform:matrix(0.159050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159050,0.000000,0.000000,0.250000,0,0);}
.mef_c01334{transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);}
.mca_c01334{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m122_c01334{transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160050,0.000000,0.000000,0.250000,0,0);}
.md4_c01334{transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);}
.m8c_c01334{transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);}
.mc2_c01334{transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);}
.m82_c01334{transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);}
.m75_c01334{transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164625,0.000000,0.000000,0.250000,0,0);}
.m14d_c01334{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.m43_c01334{transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166350,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01334{transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166375,0.000000,0.000000,0.250000,0,0);}
.m160_c01334{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m12a_c01334{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);}
.m131_c01334{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1b2_c01334{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);}
.m1ab_c01334{transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168125,0.000000,0.000000,0.250000,0,0);}
.md6_c01334{transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171500,0.000000,0.000000,0.250000,0,0);}
.m16a_c01334{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.mf7_c01334{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.mb8_c01334{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m77_c01334{transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172800,0.000000,0.000000,0.250000,0,0);}
.m153_c01334{transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172925,0.000000,0.000000,0.250000,0,0);}
.m11d_c01334{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m16f_c01334{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.m3d_c01334{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);}
.m81_c01334{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m31_c01334{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);}
.m4d_c01334{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);}
.m3b_c01334{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);}
.mc5_c01334{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.m3c_c01334{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);}
.m141_c01334{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);}
.m1a7_c01334{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.mbb_c01334{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m17a_c01334{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);}
.m1b1_c01334{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.mc9_c01334{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m172_c01334{transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177925,0.000000,0.000000,0.250000,0,0);}
.m136_c01334{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.ma9_c01334{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);}
.mb7_c01334{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m96_c01334{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.m162_c01334{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.m183_c01334{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);}
.me4_c01334{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01334{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);}
.m56_c01334{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);}
.m130_c01334{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.mad_c01334{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);}
.m7a_c01334{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.mc0_c01334{transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);}
.mae_c01334{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);}
.mb1_c01334{transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182675,0.000000,0.000000,0.250000,0,0);}
.m42_c01334{transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183300,0.000000,0.000000,0.250000,0,0);}
.ma0_c01334{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.mc1_c01334{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m57_c01334{transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);}
.m189_c01334{transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183900,0.000000,0.000000,0.250000,0,0);}
.maf_c01334{transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184050,0.000000,0.000000,0.250000,0,0);}
.m79_c01334{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.m113_c01334{transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);}
.m143_c01334{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);}
.mbf_c01334{transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184950,0.000000,0.000000,0.250000,0,0);}
.m32_c01334{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m17b_c01334{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m4e_c01334{transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186125,0.000000,0.000000,0.250000,0,0);}
.mb5_c01334{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);}
.m10b_c01334{transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187175,0.000000,0.000000,0.250000,0,0);}
.m188_c01334{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.mac_c01334{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);}
.m116_c01334{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);}
.md5_c01334{transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189450,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01334{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);}
.m105_c01334{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m179_c01334{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);}
.mf3_c01334{transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190200,0.000000,0.000000,0.250000,0,0);}
.mf5_c01334{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.m170_c01334{transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190550,0.000000,0.000000,0.250000,0,0);}
.m195_c01334{transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190775,0.000000,0.000000,0.250000,0,0);}
.m51_c01334{transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191150,0.000000,0.000000,0.250000,0,0);}
.m9a_c01334{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.mb9_c01334{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);}
.mff_c01334{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);}
.me6_c01334{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.mcd_c01334{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m8a_c01334{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m11f_c01334{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);}
.m117_c01334{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.m10d_c01334{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.mb6_c01334{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m11_c01334{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.m30_c01334{transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195200,0.000000,0.000000,0.250000,0,0);}
.m171_c01334{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);}
.m175_c01334{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);}
.m107_c01334{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);}
.m5a_c01334{transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196400,0.000000,0.000000,0.250000,0,0);}
.m2a_c01334{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);}
.mb_c01334{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.ma5_c01334{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.mb4_c01334{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m109_c01334{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);}
.me9_c01334{transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);}
.m126_c01334{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);}
.m120_c01334{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);}
.ma8_c01334{transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199775,0.000000,0.000000,0.250000,0,0);}
.m13c_c01334{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m14a_c01334{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.mf_c01334{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);}
.m196_c01334{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);}
.m193_c01334{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m36_c01334{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);}
.m18d_c01334{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.mf4_c01334{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);}
.mde_c01334{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);}
.m123_c01334{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);}
.mbe_c01334{transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01334{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);}
.m191_c01334{transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);}
.m16c_c01334{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.m18b_c01334{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);}
.m15e_c01334{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.ma6_c01334{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.m182_c01334{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.m114_c01334{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);}
.m12d_c01334{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m14e_c01334{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);}
.m65_c01334{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.m24_c01334{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);}
.m1a0_c01334{transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206900,0.000000,0.000000,0.250000,0,0);}
.m16d_c01334{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m11e_c01334{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);}
.mdf_c01334{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);}
.m138_c01334{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);}
.m10_c01334{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m146_c01334{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.ma4_c01334{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);}
.m1a5_c01334{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01334{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01334{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.m8f_c01334{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);}
.m1a2_c01334{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);}
.mb2_c01334{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m10a_c01334{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);}
.m166_c01334{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m94_c01334{transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);}
.m14c_c01334{transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212225,0.000000,0.000000,0.250000,0,0);}
.m78_c01334{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m4b_c01334{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m167_c01334{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);}
.mcf_c01334{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01334{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);}
.mc3_c01334{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);}
.mbc_c01334{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.m46_c01334{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.mdd_c01334{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m197_c01334{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);}
.m18e_c01334{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);}
.m40_c01334{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);}
.m17e_c01334{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.m90_c01334{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);}
.ma1_c01334{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);}
.m180_c01334{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);}
.m1aa_c01334{transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);}
.m67_c01334{transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);}
.m35_c01334{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);}
.mcb_c01334{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);}
.m64_c01334{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);}
.m158_c01334{transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219075,0.000000,0.000000,0.250000,0,0);}
.m2d_c01334{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);}
.m17c_c01334{transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219725,0.000000,0.000000,0.250000,0,0);}
.m106_c01334{transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);}
.m14b_c01334{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m8b_c01334{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m11b_c01334{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_c01334{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m1e_c01334{transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);}
.m50_c01334{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m18c_c01334{transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222700,0.000000,0.000000,0.250000,0,0);}
.m95_c01334{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);}
.m2b_c01334{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);}
.m3f_c01334{transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);}
.m140_c01334{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.m16b_c01334{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);}
.m38_c01334{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m83_c01334{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);}
.m39_c01334{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);}
.m7d_c01334{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);}
.m9b_c01334{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.me1_c01334{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.m16e_c01334{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.m104_c01334{transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226900,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01334{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m97_c01334{transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);}
.m4f_c01334{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m44_c01334{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.mcc_c01334{transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);}
.m1bf_c01334{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m165_c01334{transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);}
.m76_c01334{transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);}
.m3a_c01334{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);}
.m17f_c01334{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m198_c01334{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);}
.m19d_c01334{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);}
.m93_c01334{transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230375,0.000000,0.000000,0.250000,0,0);}
.m11c_c01334{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);}
.mb0_c01334{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);}
.mda_c01334{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m89_c01334{transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231825,0.000000,0.000000,0.250000,0,0);}
.mb3_c01334{transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);}
.m21_c01334{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);}
.m159_c01334{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);}
.m15c_c01334{transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232825,0.000000,0.000000,0.250000,0,0);}
.m100_c01334{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);}
.m34_c01334{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);}
.mc7_c01334{transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);}
.md0_c01334{transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233775,0.000000,0.000000,0.250000,0,0);}
.m178_c01334{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);}
.m176_c01334{transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);}
.m59_c01334{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);}
.m86_c01334{transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235975,0.000000,0.000000,0.250000,0,0);}
.m163_c01334{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m14f_c01334{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.m102_c01334{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);}
.m37_c01334{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.me5_c01334{transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);}
.m80_c01334{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);}
.m15b_c01334{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);}
.m101_c01334{transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237575,0.000000,0.000000,0.250000,0,0);}
.m110_c01334{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);}
.m8e_c01334{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);}
.mea_c01334{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);}
.m19e_c01334{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);}
.m98_c01334{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);}
.m134_c01334{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m20_c01334{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.m177_c01334{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);}
.me0_c01334{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);}
.m15a_c01334{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m142_c01334{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);}
.m118_c01334{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);}
.m156_c01334{transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241525,0.000000,0.000000,0.250000,0,0);}
.m115_c01334{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);}
.m127_c01334{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.mc8_c01334{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);}
.m19c_c01334{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);}
.m145_c01334{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);}
.m1a8_c01334{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);}
.m5b_c01334{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m112_c01334{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m11a_c01334{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);}
.mfe_c01334{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);}
.me8_c01334{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);}
.m13f_c01334{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m19a_c01334{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);}
.ma2_c01334{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);}
.md3_c01334{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.ma7_c01334{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);}
.m103_c01334{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m15_c01334{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);}
.med_c01334{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01334{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);}
.m128_c01334{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_c01334{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);}
.m18_c01334{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);}
.m26_c01334{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m41_c01334{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01334{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m73_c01334{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);}
.m91_c01334{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m49_c01334{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);}
.m2c_c01334{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);}
.m53_c01334{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c01334{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);}
.m1c_c01334{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m63_c01334{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mfc_c01334{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);}
.m45_c01334{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01334{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);}
.m2_c01334{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);}
.ma3_c01334{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01334{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mc4_c01334{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);}
.m47_c01334{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m88_c01334{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m74_c01334{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);}
.m66_c01334{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m12c_c01334{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01334{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c01334{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m27_c01334{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m25_c01334{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m58_c01334{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m22_c01334{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me2_c01334{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);}
.mfb_c01334{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma_c01334{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mab_c01334{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01334{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);}
.mfd_c01334{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);}
.m164_c01334{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01334{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m29_c01334{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);}
.m7b_c01334{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mc_c01334{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m149_c01334{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m85_c01334{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m54_c01334{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);}
.me7_c01334{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m14_c01334{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mbd_c01334{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);}
.m71_c01334{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m33_c01334{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.maa_c01334{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);}
.m12e_c01334{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01334{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m52_c01334{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m92_c01334{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m55_c01334{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01334{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01334{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);}
.m6f_c01334{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m133_c01334{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);}
.mfa_c01334{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m23_c01334{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);}
.m18a_c01334{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m16_c01334{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m0_c01334{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mba_c01334{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01334{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);}
.m69_c01334{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01334{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m121_c01334{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m72_c01334{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m19b_c01334{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m84_c01334{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);}
.m7e_c01334{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.mdb_c01334{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);}
.meb_c01334{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01334{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01334{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m119_c01334{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01334{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m7_c01334{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m70_c01334{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m154_c01334{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01334{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m13d_c01334{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m3_c01334{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m68_c01334{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);}
.mdc_c01334{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m108_c01334{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01334{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m173_c01334{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.m60_c01334{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01334{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m48_c01334{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m169_c01334{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);}
.m148_c01334{transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);}
.m174_c01334{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);}
.m61_c01334{transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);}
.m15f_c01334{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m187_c01334{transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.872500,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01334{transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01334{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.m132_c01334{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m155_c01334{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01334{transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01334{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m6_c01334{transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.345000,0.000000,0.000000,0.250000,0,0);}
.m62_c01334{transform:matrix(1.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.550000,0.000000,0.000000,0.250000,0,0);}
.md7_c01334{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01334{transform:matrix(1.742500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.742500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.742500,0.000000,0.000000,0.250000,0,0);}
.m186_c01334{transform:matrix(2.150000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.150000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.150000,0.000000,0.000000,0.250000,0,0);}
.m18f_c01334{transform:matrix(3.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.570000,0.000000,0.000000,0.250000,0,0);}
.v0_c01334{vertical-align:0.000000px;}
.v1_c01334{vertical-align:3.480000px;}
.v2_c01334{vertical-align:6.900000px;}
.v3_c01334{vertical-align:17.280000px;}
.v4_c01334{vertical-align:20.760000px;}
.ls2_c01334{letter-spacing:0.000000px;}
.ls1_c01334{letter-spacing:79.402800px;}
.ls0_c01334{letter-spacing:152.055480px;}
.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;}
}
.ws1_c01334{word-spacing:-23.025960px;}
.ws0_c01334{word-spacing:-15.805920px;}
.ws3_c01334{word-spacing:-2.657940px;}
.ws5_c01334{word-spacing:0.000000px;}
.ws2_c01334{word-spacing:33.104678px;}
.ws4_c01334{word-spacing:140.362440px;}
.fc0_c01334{color:transparent;}
.fs0_c01334{font-size:3.456000px;}
.fs1e_c01334{font-size:6.000000px;}
.fs5_c01334{font-size:6.900000px;}
.fs1c_c01334{font-size:10.380000px;}
.fs6_c01334{font-size:13.800000px;}
.fs1b_c01334{font-size:17.280000px;}
.fs3_c01334{font-size:20.760000px;}
.fs12_c01334{font-size:24.180000px;}
.fs14_c01334{font-size:27.660000px;}
.fs17_c01334{font-size:31.080000px;}
.fs7_c01334{font-size:34.560000px;}
.fs10_c01334{font-size:38.040000px;}
.fs1d_c01334{font-size:41.460000px;}
.fs4_c01334{font-size:44.940000px;}
.fsf_c01334{font-size:48.360000px;}
.fs2_c01334{font-size:51.840000px;}
.fsd_c01334{font-size:55.320000px;}
.fs16_c01334{font-size:58.740000px;}
.fs11_c01334{font-size:62.220000px;}
.fsc_c01334{font-size:65.640000px;}
.fs15_c01334{font-size:69.120000px;}
.fse_c01334{font-size:72.600000px;}
.fs8_c01334{font-size:76.020000px;}
.fsa_c01334{font-size:79.500000px;}
.fs1a_c01334{font-size:82.920000px;}
.fs19_c01334{font-size:86.400000px;}
.fs13_c01334{font-size:89.880000px;}
.fs20_c01334{font-size:93.300000px;}
.fs1f_c01334{font-size:96.780000px;}
.fs1_c01334{font-size:100.200000px;}
.fs21_c01334{font-size:107.160000px;}
.fs9_c01334{font-size:114.060000px;}
.fs18_c01334{font-size:117.480000px;}
.fsb_c01334{font-size:138.240000px;}
.y0_c01334{bottom:0.000000px;}
.y208_c01334{bottom:209.085000px;}
.y206_c01334{bottom:209.955000px;}
.y205_c01334{bottom:210.810000px;}
.y20c_c01334{bottom:211.680000px;}
.y207_c01334{bottom:212.550000px;}
.y20b_c01334{bottom:214.275000px;}
.y20a_c01334{bottom:215.130000px;}
.y20e_c01334{bottom:216.000000px;}
.y209_c01334{bottom:216.870000px;}
.y20d_c01334{bottom:217.725000px;}
.y210_c01334{bottom:219.450000px;}
.y20f_c01334{bottom:221.190000px;}
.y1fb_c01334{bottom:229.830000px;}
.y1fa_c01334{bottom:230.685000px;}
.y1fc_c01334{bottom:231.555000px;}
.y200_c01334{bottom:233.280000px;}
.y1fd_c01334{bottom:234.150000px;}
.y202_c01334{bottom:236.730000px;}
.y1fe_c01334{bottom:237.600000px;}
.y1ff_c01334{bottom:238.470000px;}
.y201_c01334{bottom:239.325000px;}
.y203_c01334{bottom:240.195000px;}
.y204_c01334{bottom:252.285000px;}
.y1f4_c01334{bottom:253.155000px;}
.y1f7_c01334{bottom:254.880000px;}
.y1f5_c01334{bottom:256.605000px;}
.y1f6_c01334{bottom:257.475000px;}
.y1f8_c01334{bottom:260.070000px;}
.y1f9_c01334{bottom:261.795000px;}
.y1ee_c01334{bottom:269.565000px;}
.y1ec_c01334{bottom:272.160000px;}
.y1ef_c01334{bottom:273.885000px;}
.y1eb_c01334{bottom:274.755000px;}
.y1ed_c01334{bottom:275.610000px;}
.y1f0_c01334{bottom:279.930000px;}
.y1f1_c01334{bottom:280.800000px;}
.y1f2_c01334{bottom:281.670000px;}
.y1f3_c01334{bottom:283.395000px;}
.y1ea_c01334{bottom:289.440000px;}
.y1e2_c01334{bottom:292.035000px;}
.y1e5_c01334{bottom:292.890000px;}
.y1e1_c01334{bottom:294.630000px;}
.y1df_c01334{bottom:295.485000px;}
.y1e0_c01334{bottom:296.355000px;}
.y1e6_c01334{bottom:297.210000px;}
.y1e3_c01334{bottom:298.950000px;}
.y1e4_c01334{bottom:299.805000px;}
.y1e7_c01334{bottom:300.675000px;}
.y1e8_c01334{bottom:301.530000px;}
.y1e9_c01334{bottom:302.400000px;}
.y1d6_c01334{bottom:314.490000px;}
.y1d8_c01334{bottom:316.230000px;}
.y1db_c01334{bottom:317.085000px;}
.y1d7_c01334{bottom:317.955000px;}
.y1dc_c01334{bottom:318.810000px;}
.y1d9_c01334{bottom:319.680000px;}
.y1da_c01334{bottom:320.550000px;}
.y1dd_c01334{bottom:322.275000px;}
.y1de_c01334{bottom:323.130000px;}
.y1ce_c01334{bottom:331.770000px;}
.y1cf_c01334{bottom:333.510000px;}
.y1d0_c01334{bottom:336.090000px;}
.y1d1_c01334{bottom:336.960000px;}
.y1d4_c01334{bottom:337.830000px;}
.y1d2_c01334{bottom:341.280000px;}
.y1d3_c01334{bottom:343.005000px;}
.y1d5_c01334{bottom:343.875000px;}
.y1c9_c01334{bottom:358.560000px;}
.y1ca_c01334{bottom:359.430000px;}
.y1cd_c01334{bottom:360.285000px;}
.y1cb_c01334{bottom:361.155000px;}
.y1cc_c01334{bottom:363.750000px;}
.y1c8_c01334{bottom:366.330000px;}
.y1c4_c01334{bottom:374.970000px;}
.y1c6_c01334{bottom:375.840000px;}
.y1c3_c01334{bottom:377.565000px;}
.y1c2_c01334{bottom:378.435000px;}
.y1c7_c01334{bottom:380.160000px;}
.y1c5_c01334{bottom:381.030000px;}
.y1bc_c01334{bottom:396.570000px;}
.y1be_c01334{bottom:398.310000px;}
.y1bb_c01334{bottom:400.035000px;}
.y1bd_c01334{bottom:402.630000px;}
.y1c1_c01334{bottom:403.485000px;}
.y1bf_c01334{bottom:404.355000px;}
.y1c0_c01334{bottom:405.210000px;}
.y1b1_c01334{bottom:412.125000px;}
.y1b2_c01334{bottom:414.720000px;}
.y1b0_c01334{bottom:415.590000px;}
.y1b4_c01334{bottom:416.445000px;}
.y1b5_c01334{bottom:417.315000px;}
.y1b9_c01334{bottom:418.170000px;}
.y1b3_c01334{bottom:420.765000px;}
.y1b8_c01334{bottom:421.635000px;}
.y1b6_c01334{bottom:423.360000px;}
.y1b7_c01334{bottom:425.955000px;}
.y1ba_c01334{bottom:426.810000px;}
.y1a7_c01334{bottom:437.190000px;}
.y1aa_c01334{bottom:438.045000px;}
.y1a8_c01334{bottom:439.770000px;}
.y1a9_c01334{bottom:440.640000px;}
.y1ae_c01334{bottom:441.510000px;}
.y1af_c01334{bottom:443.235000px;}
.y1ab_c01334{bottom:444.090000px;}
.y1ad_c01334{bottom:445.830000px;}
.y1ac_c01334{bottom:446.685000px;}
.y1a6_c01334{bottom:455.325000px;}
.y1a0_c01334{bottom:459.645000px;}
.y19f_c01334{bottom:460.515000px;}
.y19d_c01334{bottom:462.240000px;}
.y19c_c01334{bottom:463.110000px;}
.y1a4_c01334{bottom:463.965000px;}
.y1a2_c01334{bottom:464.835000px;}
.y1a3_c01334{bottom:465.690000px;}
.y1a5_c01334{bottom:467.430000px;}
.y19e_c01334{bottom:469.155000px;}
.y1a1_c01334{bottom:476.925000px;}
.y196_c01334{bottom:477.795000px;}
.y198_c01334{bottom:480.390000px;}
.y195_c01334{bottom:481.245000px;}
.y19a_c01334{bottom:482.115000px;}
.y19b_c01334{bottom:482.970000px;}
.y197_c01334{bottom:485.565000px;}
.y199_c01334{bottom:487.290000px;}
.y190_c01334{bottom:498.525000px;}
.y192_c01334{bottom:500.250000px;}
.y193_c01334{bottom:501.120000px;}
.y194_c01334{bottom:502.845000px;}
.y216_c01334{bottom:516.675000px;}
.y191_c01334{bottom:518.400000px;}
.y18a_c01334{bottom:520.125000px;}
.y189_c01334{bottom:522.720000px;}
.y18c_c01334{bottom:524.445000px;}
.y18d_c01334{bottom:525.315000px;}
.y18e_c01334{bottom:527.910000px;}
.y18f_c01334{bottom:529.635000px;}
.y18b_c01334{bottom:531.360000px;}
.y181_c01334{bottom:539.130000px;}
.y182_c01334{bottom:540.000000px;}
.y180_c01334{bottom:542.595000px;}
.y17f_c01334{bottom:544.320000px;}
.y215_c01334{bottom:545.190000px;}
.y183_c01334{bottom:547.770000px;}
.y184_c01334{bottom:548.640000px;}
.y185_c01334{bottom:549.510000px;}
.y186_c01334{bottom:550.365000px;}
.y188_c01334{bottom:552.960000px;}
.y214_c01334{bottom:553.830000px;}
.y187_c01334{bottom:557.280000px;}
.y173_c01334{bottom:558.150000px;}
.y175_c01334{bottom:559.005000px;}
.y178_c01334{bottom:560.730000px;}
.y17a_c01334{bottom:561.600000px;}
.y179_c01334{bottom:563.325000px;}
.y17b_c01334{bottom:564.195000px;}
.y17d_c01334{bottom:565.920000px;}
.y174_c01334{bottom:566.790000px;}
.y17c_c01334{bottom:568.515000px;}
.y17e_c01334{bottom:569.370000px;}
.y177_c01334{bottom:570.240000px;}
.y171_c01334{bottom:571.110000px;}
.y176_c01334{bottom:573.690000px;}
.y172_c01334{bottom:578.010000px;}
.y16b_c01334{bottom:578.880000px;}
.y16a_c01334{bottom:580.605000px;}
.y16c_c01334{bottom:581.475000px;}
.y166_c01334{bottom:582.330000px;}
.y168_c01334{bottom:583.200000px;}
.y167_c01334{bottom:584.925000px;}
.y169_c01334{bottom:585.795000px;}
.y16d_c01334{bottom:587.520000px;}
.y16e_c01334{bottom:588.390000px;}
.y16f_c01334{bottom:590.115000px;}
.y170_c01334{bottom:601.350000px;}
.y160_c01334{bottom:602.205000px;}
.y161_c01334{bottom:603.930000px;}
.y162_c01334{bottom:605.670000px;}
.y164_c01334{bottom:609.120000px;}
.y163_c01334{bottom:609.990000px;}
.y15e_c01334{bottom:611.715000px;}
.y15f_c01334{bottom:612.570000px;}
.y165_c01334{bottom:618.630000px;}
.y159_c01334{bottom:622.950000px;}
.y158_c01334{bottom:623.805000px;}
.y156_c01334{bottom:624.675000px;}
.y157_c01334{bottom:625.530000px;}
.y155_c01334{bottom:626.400000px;}
.y15a_c01334{bottom:627.270000px;}
.y15c_c01334{bottom:628.995000px;}
.y15b_c01334{bottom:629.850000px;}
.y15d_c01334{bottom:630.720000px;}
.y152_c01334{bottom:643.680000px;}
.y153_c01334{bottom:644.550000px;}
.y14f_c01334{bottom:645.405000px;}
.y151_c01334{bottom:648.000000px;}
.y150_c01334{bottom:648.870000px;}
.y154_c01334{bottom:650.595000px;}
.y147_c01334{bottom:664.410000px;}
.y148_c01334{bottom:666.150000px;}
.y149_c01334{bottom:667.005000px;}
.y14b_c01334{bottom:668.730000px;}
.y14c_c01334{bottom:669.600000px;}
.y14d_c01334{bottom:670.470000px;}
.y145_c01334{bottom:671.325000px;}
.y146_c01334{bottom:673.050000px;}
.y14e_c01334{bottom:673.920000px;}
.y14a_c01334{bottom:676.515000px;}
.y13f_c01334{bottom:681.690000px;}
.y13e_c01334{bottom:682.560000px;}
.y13c_c01334{bottom:683.430000px;}
.y142_c01334{bottom:684.285000px;}
.y13d_c01334{bottom:685.155000px;}
.y144_c01334{bottom:686.010000px;}
.y141_c01334{bottom:686.880000px;}
.y140_c01334{bottom:687.750000px;}
.y143_c01334{bottom:688.605000px;}
.y13b_c01334{bottom:689.475000px;}
.y13a_c01334{bottom:698.970000px;}
.y134_c01334{bottom:701.565000px;}
.y136_c01334{bottom:702.435000px;}
.y137_c01334{bottom:703.290000px;}
.y133_c01334{bottom:705.030000px;}
.y135_c01334{bottom:705.885000px;}
.y138_c01334{bottom:708.480000px;}
.y139_c01334{bottom:709.350000px;}
.y132_c01334{bottom:710.205000px;}
.y127_c01334{bottom:720.570000px;}
.y128_c01334{bottom:721.440000px;}
.y12a_c01334{bottom:722.310000px;}
.y129_c01334{bottom:723.165000px;}
.y12d_c01334{bottom:724.035000px;}
.y12c_c01334{bottom:724.890000px;}
.y130_c01334{bottom:725.760000px;}
.y12f_c01334{bottom:726.630000px;}
.y12b_c01334{bottom:728.355000px;}
.y12e_c01334{bottom:729.210000px;}
.y131_c01334{bottom:731.805000px;}
.y11e_c01334{bottom:741.315000px;}
.y120_c01334{bottom:743.040000px;}
.y123_c01334{bottom:744.765000px;}
.y122_c01334{bottom:745.635000px;}
.y11f_c01334{bottom:747.360000px;}
.y121_c01334{bottom:749.085000px;}
.y124_c01334{bottom:751.680000px;}
.y125_c01334{bottom:752.550000px;}
.y126_c01334{bottom:754.275000px;}
.y115_c01334{bottom:758.595000px;}
.y116_c01334{bottom:759.450000px;}
.y119_c01334{bottom:761.190000px;}
.y117_c01334{bottom:762.045000px;}
.y11c_c01334{bottom:762.915000px;}
.y11d_c01334{bottom:767.235000px;}
.y118_c01334{bottom:768.090000px;}
.y11a_c01334{bottom:769.830000px;}
.y11b_c01334{bottom:770.685000px;}
.y10e_c01334{bottom:782.790000px;}
.y111_c01334{bottom:784.515000px;}
.y112_c01334{bottom:785.370000px;}
.y113_c01334{bottom:786.240000px;}
.y10d_c01334{bottom:787.110000px;}
.y10f_c01334{bottom:788.835000px;}
.y110_c01334{bottom:789.690000px;}
.y114_c01334{bottom:795.750000px;}
.y108_c01334{bottom:805.245000px;}
.y10c_c01334{bottom:806.970000px;}
.y106_c01334{bottom:807.840000px;}
.y107_c01334{bottom:808.710000px;}
.y10a_c01334{bottom:809.565000px;}
.y109_c01334{bottom:810.435000px;}
.y10b_c01334{bottom:811.290000px;}
.yfe_c01334{bottom:823.395000px;}
.yff_c01334{bottom:825.120000px;}
.yfd_c01334{bottom:826.845000px;}
.y105_c01334{bottom:827.715000px;}
.y103_c01334{bottom:828.570000px;}
.y100_c01334{bottom:829.440000px;}
.y102_c01334{bottom:830.310000px;}
.y101_c01334{bottom:831.165000px;}
.y104_c01334{bottom:832.890000px;}
.yfc_c01334{bottom:834.630000px;}
.yf1_c01334{bottom:843.270000px;}
.yf5_c01334{bottom:844.995000px;}
.yf2_c01334{bottom:845.850000px;}
.yf6_c01334{bottom:846.720000px;}
.yf8_c01334{bottom:847.590000px;}
.yf3_c01334{bottom:848.445000px;}
.yf4_c01334{bottom:849.315000px;}
.yf7_c01334{bottom:851.040000px;}
.yfa_c01334{bottom:851.910000px;}
.yf9_c01334{bottom:852.765000px;}
.yfb_c01334{bottom:853.635000px;}
.yeb_c01334{bottom:863.130000px;}
.yea_c01334{bottom:868.320000px;}
.yf0_c01334{bottom:869.190000px;}
.yec_c01334{bottom:870.045000px;}
.yed_c01334{bottom:871.770000px;}
.yee_c01334{bottom:872.640000px;}
.yef_c01334{bottom:873.510000px;}
.ye4_c01334{bottom:884.730000px;}
.ye3_c01334{bottom:886.470000px;}
.ye6_c01334{bottom:887.325000px;}
.ye2_c01334{bottom:889.050000px;}
.ye5_c01334{bottom:890.790000px;}
.ye7_c01334{bottom:892.515000px;}
.ye8_c01334{bottom:893.370000px;}
.ye9_c01334{bottom:895.110000px;}
.ydd_c01334{bottom:903.750000px;}
.ydc_c01334{bottom:904.605000px;}
.yde_c01334{bottom:907.200000px;}
.ydb_c01334{bottom:909.795000px;}
.ye0_c01334{bottom:910.650000px;}
.ydf_c01334{bottom:911.520000px;}
.ye1_c01334{bottom:914.115000px;}
.yd1_c01334{bottom:921.885000px;}
.yd2_c01334{bottom:924.480000px;}
.yd5_c01334{bottom:925.350000px;}
.yd7_c01334{bottom:927.930000px;}
.yd3_c01334{bottom:929.670000px;}
.yd4_c01334{bottom:930.525000px;}
.yda_c01334{bottom:931.395000px;}
.yd6_c01334{bottom:933.120000px;}
.yd8_c01334{bottom:933.990000px;}
.yd9_c01334{bottom:936.570000px;}
.yca_c01334{bottom:943.485000px;}
.yc9_c01334{bottom:944.355000px;}
.ycc_c01334{bottom:945.210000px;}
.yce_c01334{bottom:946.950000px;}
.ycf_c01334{bottom:947.805000px;}
.yc8_c01334{bottom:948.675000px;}
.ycd_c01334{bottom:949.530000px;}
.ycb_c01334{bottom:950.400000px;}
.yd0_c01334{bottom:952.995000px;}
.yc7_c01334{bottom:956.445000px;}
.yc0_c01334{bottom:965.955000px;}
.ybe_c01334{bottom:966.810000px;}
.yc3_c01334{bottom:967.680000px;}
.yc2_c01334{bottom:968.550000px;}
.ybf_c01334{bottom:969.405000px;}
.yc1_c01334{bottom:970.275000px;}
.yc6_c01334{bottom:972.000000px;}
.yc4_c01334{bottom:974.595000px;}
.yc5_c01334{bottom:975.450000px;}
.yba_c01334{bottom:984.960000px;}
.ybc_c01334{bottom:988.410000px;}
.ybd_c01334{bottom:989.280000px;}
.yb9_c01334{bottom:990.150000px;}
.ybb_c01334{bottom:991.005000px;}
.yb2_c01334{bottom:1004.835000px;}
.yb3_c01334{bottom:1007.430000px;}
.yb6_c01334{bottom:1008.285000px;}
.yb4_c01334{bottom:1009.155000px;}
.yb5_c01334{bottom:1010.010000px;}
.yb8_c01334{bottom:1010.880000px;}
.yb7_c01334{bottom:1014.330000px;}
.ya9_c01334{bottom:1025.565000px;}
.yaa_c01334{bottom:1027.290000px;}
.yad_c01334{bottom:1028.160000px;}
.ya8_c01334{bottom:1029.885000px;}
.yae_c01334{bottom:1030.755000px;}
.yb1_c01334{bottom:1031.610000px;}
.yac_c01334{bottom:1033.350000px;}
.yb0_c01334{bottom:1034.205000px;}
.yaf_c01334{bottom:1035.930000px;}
.yab_c01334{bottom:1039.395000px;}
.ya6_c01334{bottom:1048.890000px;}
.ya5_c01334{bottom:1049.760000px;}
.ya1_c01334{bottom:1050.630000px;}
.ya2_c01334{bottom:1051.485000px;}
.ya3_c01334{bottom:1052.355000px;}
.ya4_c01334{bottom:1053.210000px;}
.ya7_c01334{bottom:1057.530000px;}
.y9d_c01334{bottom:1067.910000px;}
.y9c_c01334{bottom:1068.765000px;}
.y9f_c01334{bottom:1070.490000px;}
.y99_c01334{bottom:1071.360000px;}
.y9a_c01334{bottom:1072.230000px;}
.y9e_c01334{bottom:1073.955000px;}
.ya0_c01334{bottom:1075.680000px;}
.y9b_c01334{bottom:1081.725000px;}
.y93_c01334{bottom:1086.915000px;}
.y91_c01334{bottom:1087.770000px;}
.y95_c01334{bottom:1088.640000px;}
.y92_c01334{bottom:1090.365000px;}
.y90_c01334{bottom:1091.235000px;}
.y94_c01334{bottom:1092.090000px;}
.y97_c01334{bottom:1092.960000px;}
.y98_c01334{bottom:1093.830000px;}
.y96_c01334{bottom:1094.685000px;}
.y88_c01334{bottom:1106.790000px;}
.y8a_c01334{bottom:1108.515000px;}
.y8b_c01334{bottom:1109.370000px;}
.y87_c01334{bottom:1111.965000px;}
.y89_c01334{bottom:1112.835000px;}
.y8d_c01334{bottom:1113.690000px;}
.y8f_c01334{bottom:1115.430000px;}
.y8e_c01334{bottom:1116.285000px;}
.y8c_c01334{bottom:1121.475000px;}
.y7f_c01334{bottom:1126.650000px;}
.y81_c01334{bottom:1128.390000px;}
.y82_c01334{bottom:1129.245000px;}
.y85_c01334{bottom:1131.840000px;}
.y7e_c01334{bottom:1132.710000px;}
.y80_c01334{bottom:1133.565000px;}
.y84_c01334{bottom:1134.435000px;}
.y83_c01334{bottom:1135.290000px;}
.y86_c01334{bottom:1136.160000px;}
.y77_c01334{bottom:1149.120000px;}
.y76_c01334{bottom:1149.990000px;}
.y75_c01334{bottom:1152.570000px;}
.y7a_c01334{bottom:1153.440000px;}
.y78_c01334{bottom:1155.165000px;}
.y7b_c01334{bottom:1156.035000px;}
.y79_c01334{bottom:1156.890000px;}
.y7c_c01334{bottom:1157.760000px;}
.y7d_c01334{bottom:1159.485000px;}
.y6f_c01334{bottom:1168.125000px;}
.y71_c01334{bottom:1170.720000px;}
.y63_c01334{bottom:1171.590000px;}
.y6d_c01334{bottom:1172.445000px;}
.y64_c01334{bottom:1173.315000px;}
.y70_c01334{bottom:1174.170000px;}
.y6e_c01334{bottom:1175.040000px;}
.y74_c01334{bottom:1176.765000px;}
.y73_c01334{bottom:1177.635000px;}
.y72_c01334{bottom:1178.490000px;}
.y66_c01334{bottom:1181.085000px;}
.y68_c01334{bottom:1181.955000px;}
.y67_c01334{bottom:1184.550000px;}
.y65_c01334{bottom:1185.405000px;}
.y69_c01334{bottom:1187.130000px;}
.y6a_c01334{bottom:1188.000000px;}
.y6b_c01334{bottom:1188.870000px;}
.y6c_c01334{bottom:1189.725000px;}
.y5c_c01334{bottom:1191.450000px;}
.y5e_c01334{bottom:1192.320000px;}
.y61_c01334{bottom:1193.190000px;}
.y60_c01334{bottom:1194.915000px;}
.y5d_c01334{bottom:1195.770000px;}
.y5f_c01334{bottom:1196.640000px;}
.y62_c01334{bottom:1197.510000px;}
.y5a_c01334{bottom:1205.280000px;}
.y58_c01334{bottom:1207.005000px;}
.y59_c01334{bottom:1208.730000px;}
.y5b_c01334{bottom:1209.600000px;}
.y51_c01334{bottom:1210.470000px;}
.y4e_c01334{bottom:1211.325000px;}
.y4f_c01334{bottom:1213.050000px;}
.y50_c01334{bottom:1213.920000px;}
.y54_c01334{bottom:1215.645000px;}
.y57_c01334{bottom:1217.370000px;}
.y53_c01334{bottom:1218.240000px;}
.y55_c01334{bottom:1219.110000px;}
.y52_c01334{bottom:1219.965000px;}
.y56_c01334{bottom:1224.285000px;}
.y48_c01334{bottom:1228.605000px;}
.y47_c01334{bottom:1230.330000px;}
.y4a_c01334{bottom:1232.925000px;}
.y4b_c01334{bottom:1236.390000px;}
.y4c_c01334{bottom:1238.115000px;}
.y46_c01334{bottom:1238.970000px;}
.y4d_c01334{bottom:1239.840000px;}
.y49_c01334{bottom:1245.030000px;}
.y3e_c01334{bottom:1248.480000px;}
.y3f_c01334{bottom:1249.350000px;}
.y42_c01334{bottom:1251.930000px;}
.y40_c01334{bottom:1254.525000px;}
.y41_c01334{bottom:1255.395000px;}
.y43_c01334{bottom:1257.120000px;}
.y44_c01334{bottom:1259.715000px;}
.y45_c01334{bottom:1261.440000px;}
.y37_c01334{bottom:1269.210000px;}
.y38_c01334{bottom:1270.080000px;}
.y39_c01334{bottom:1271.805000px;}
.y3b_c01334{bottom:1272.675000px;}
.y3c_c01334{bottom:1274.400000px;}
.y3d_c01334{bottom:1276.125000px;}
.y3a_c01334{bottom:1276.995000px;}
.y2c_c01334{bottom:1289.085000px;}
.y2e_c01334{bottom:1289.955000px;}
.y30_c01334{bottom:1290.810000px;}
.y2d_c01334{bottom:1291.680000px;}
.y33_c01334{bottom:1294.275000px;}
.y2f_c01334{bottom:1296.000000px;}
.y31_c01334{bottom:1296.870000px;}
.y32_c01334{bottom:1297.725000px;}
.y34_c01334{bottom:1298.595000px;}
.y35_c01334{bottom:1299.450000px;}
.y36_c01334{bottom:1300.320000px;}
.y28_c01334{bottom:1302.915000px;}
.y24_c01334{bottom:1311.555000px;}
.y29_c01334{bottom:1312.410000px;}
.y26_c01334{bottom:1315.875000px;}
.y25_c01334{bottom:1316.730000px;}
.y27_c01334{bottom:1317.600000px;}
.y2a_c01334{bottom:1319.325000px;}
.y2b_c01334{bottom:1321.050000px;}
.y1a_c01334{bottom:1331.430000px;}
.y1c_c01334{bottom:1332.285000px;}
.y1d_c01334{bottom:1333.155000px;}
.y19_c01334{bottom:1334.010000px;}
.y20_c01334{bottom:1335.750000px;}
.y1b_c01334{bottom:1337.475000px;}
.y1e_c01334{bottom:1339.200000px;}
.y1f_c01334{bottom:1340.070000px;}
.y21_c01334{bottom:1340.925000px;}
.y22_c01334{bottom:1342.650000px;}
.y23_c01334{bottom:1344.390000px;}
.yd_c01334{bottom:1350.435000px;}
.yc_c01334{bottom:1351.290000px;}
.ye_c01334{bottom:1352.160000px;}
.yf_c01334{bottom:1353.885000px;}
.y14_c01334{bottom:1354.755000px;}
.y10_c01334{bottom:1355.610000px;}
.y13_c01334{bottom:1356.480000px;}
.y18_c01334{bottom:1357.350000px;}
.y12_c01334{bottom:1359.930000px;}
.y11_c01334{bottom:1360.800000px;}
.y15_c01334{bottom:1366.845000px;}
.y16_c01334{bottom:1370.310000px;}
.y17_c01334{bottom:1372.035000px;}
.y8_c01334{bottom:1373.760000px;}
.y7_c01334{bottom:1377.210000px;}
.ya_c01334{bottom:1378.080000px;}
.y9_c01334{bottom:1384.125000px;}
.yb_c01334{bottom:1386.720000px;}
.y2_c01334{bottom:1404.000000px;}
.y4_c01334{bottom:1410.915000px;}
.y3_c01334{bottom:1412.640000px;}
.y5_c01334{bottom:1416.090000px;}
.y6_c01334{bottom:1420.410000px;}
.y1_c01334{bottom:1424.730000px;}
.y212_c01334{bottom:1429.050000px;}
.y213_c01334{bottom:1433.370000px;}
.y211_c01334{bottom:1439.430000px;}
.h2_c01334{height:3.110063px;}
.h21_c01334{height:5.399414px;}
.h7_c01334{height:6.209326px;}
.h1f_c01334{height:9.340986px;}
.h8_c01334{height:12.418652px;}
.h1e_c01334{height:15.550313px;}
.h5_c01334{height:18.681973px;}
.h14_c01334{height:21.759639px;}
.h22_c01334{height:22.450312px;}
.h16_c01334{height:24.891299px;}
.h19_c01334{height:27.968965px;}
.h9_c01334{height:31.100625px;}
.h12_c01334{height:34.232285px;}
.h20_c01334{height:37.309951px;}
.h6_c01334{height:40.441611px;}
.h11_c01334{height:43.519277px;}
.h4_c01334{height:46.650937px;}
.hf_c01334{height:49.782598px;}
.h18_c01334{height:52.860264px;}
.h25_c01334{height:53.262598px;}
.h13_c01334{height:55.991924px;}
.h1d_c01334{height:56.682598px;}
.he_c01334{height:59.069590px;}
.h17_c01334{height:62.201250px;}
.h23_c01334{height:63.930938px;}
.h10_c01334{height:65.332910px;}
.ha_c01334{height:68.410576px;}
.hc_c01334{height:71.542236px;}
.h1c_c01334{height:74.619902px;}
.h1b_c01334{height:77.751563px;}
.h15_c01334{height:80.883223px;}
.h26_c01334{height:83.960889px;}
.h24_c01334{height:87.092549px;}
.h3_c01334{height:90.170215px;}
.h27_c01334{height:96.433535px;}
.hb_c01334{height:102.642861px;}
.h1a_c01334{height:105.720527px;}
.hd_c01334{height:124.402500px;}
.h1_c01334{height:1513.500000px;}
.h0_c01334{height:1513.725000px;}
.w0_c01334{width:1083.450000px;}
.w1_c01334{width:1083.750000px;}
.x0_c01334{left:0.000000px;}
.x10e_c01334{left:2.595000px;}
.xda_c01334{left:165.030000px;}
.xdf_c01334{left:172.800000px;}
.xe0_c01334{left:182.310000px;}
.xdb_c01334{left:198.720000px;}
.xb0_c01334{left:203.910000px;}
.x54_c01334{left:205.635000px;}
.x109_c01334{left:212.550000px;}
.xf3_c01334{left:215.130000px;}
.x4a_c01334{left:216.870000px;}
.xbb_c01334{left:219.450000px;}
.x4b_c01334{left:222.915000px;}
.xa_c01334{left:224.640000px;}
.xcf_c01334{left:227.235000px;}
.xf_c01334{left:229.830000px;}
.x2b_c01334{left:231.555000px;}
.x5d_c01334{left:239.325000px;}
.xf0_c01334{left:243.645000px;}
.x104_c01334{left:245.370000px;}
.xd4_c01334{left:248.835000px;}
.x7f_c01334{left:250.560000px;}
.x6b_c01334{left:252.285000px;}
.x87_c01334{left:254.010000px;}
.x1f_c01334{left:259.200000px;}
.x10_c01334{left:261.795000px;}
.x55_c01334{left:263.520000px;}
.x34_c01334{left:267.840000px;}
.x93_c01334{left:271.290000px;}
.x80_c01334{left:273.885000px;}
.x43_c01334{left:277.350000px;}
.x9c_c01334{left:279.930000px;}
.xd5_c01334{left:283.395000px;}
.xb_c01334{left:285.990000px;}
.xb6_c01334{left:288.570000px;}
.x35_c01334{left:291.165000px;}
.xbc_c01334{left:293.760000px;}
.x2c_c01334{left:296.355000px;}
.xe5_c01334{left:298.080000px;}
.x4c_c01334{left:300.675000px;}
.xc6_c01334{left:302.400000px;}
.xc4_c01334{left:304.995000px;}
.xc7_c01334{left:310.170000px;}
.xf1_c01334{left:311.910000px;}
.xc_c01334{left:314.490000px;}
.x6c_c01334{left:316.230000px;}
.x99_c01334{left:319.680000px;}
.x2d_c01334{left:321.405000px;}
.xa6_c01334{left:324.000000px;}
.x78_c01334{left:326.595000px;}
.x20_c01334{left:330.045000px;}
.xec_c01334{left:331.770000px;}
.x3e_c01334{left:334.365000px;}
.x44_c01334{left:336.960000px;}
.xa7_c01334{left:338.685000px;}
.x36_c01334{left:341.280000px;}
.x56_c01334{left:343.005000px;}
.xf4_c01334{left:344.730000px;}
.xbf_c01334{left:346.470000px;}
.x88_c01334{left:349.050000px;}
.xab_c01334{left:351.645000px;}
.xd8_c01334{left:355.110000px;}
.xb1_c01334{left:356.835000px;}
.xd2_c01334{left:359.430000px;}
.x79_c01334{left:361.155000px;}
.x1_c01334{left:366.330000px;}
.x94_c01334{left:368.070000px;}
.x9f_c01334{left:371.520000px;}
.xd6_c01334{left:374.115000px;}
.x6d_c01334{left:375.840000px;}
.x2_c01334{left:377.565000px;}
.x11_c01334{left:379.290000px;}
.x21_c01334{left:381.885000px;}
.xd3_c01334{left:383.610000px;}
.x65_c01334{left:386.205000px;}
.x102_c01334{left:387.930000px;}
.x6e_c01334{left:389.670000px;}
.xf8_c01334{left:391.395000px;}
.x57_c01334{left:393.990000px;}
.xd0_c01334{left:396.570000px;}
.xf9_c01334{left:398.310000px;}
.x10a_c01334{left:400.035000px;}
.x66_c01334{left:401.760000px;}
.xd9_c01334{left:405.210000px;}
.x81_c01334{left:407.805000px;}
.xd_c01334{left:409.530000px;}
.xe1_c01334{left:412.995000px;}
.x10c_c01334{left:414.720000px;}
.x2e_c01334{left:419.040000px;}
.xe6_c01334{left:420.765000px;}
.x3_c01334{left:423.360000px;}
.x37_c01334{left:426.810000px;}
.xb2_c01334{left:428.550000px;}
.xd7_c01334{left:430.275000px;}
.xe7_c01334{left:432.000000px;}
.x45_c01334{left:434.595000px;}
.x4d_c01334{left:436.320000px;}
.x67_c01334{left:438.045000px;}
.xbd_c01334{left:441.510000px;}
.xb3_c01334{left:444.090000px;}
.x12_c01334{left:446.685000px;}
.x68_c01334{left:449.280000px;}
.x22_c01334{left:453.600000px;}
.x9a_c01334{left:455.325000px;}
.x8f_c01334{left:457.050000px;}
.x89_c01334{left:459.645000px;}
.xaa_c01334{left:461.370000px;}
.x106_c01334{left:463.965000px;}
.x2f_c01334{left:465.690000px;}
.xac_c01334{left:470.010000px;}
.xd1_c01334{left:472.605000px;}
.xff_c01334{left:475.200000px;}
.xb7_c01334{left:477.795000px;}
.xfd_c01334{left:479.520000px;}
.xcc_c01334{left:481.245000px;}
.x46_c01334{left:483.840000px;}
.xed_c01334{left:485.565000px;}
.xc8_c01334{left:487.290000px;}
.x9b_c01334{left:490.755000px;}
.x82_c01334{left:492.480000px;}
.x38_c01334{left:494.205000px;}
.xbe_c01334{left:495.930000px;}
.x95_c01334{left:499.395000px;}
.x83_c01334{left:502.845000px;}
.x100_c01334{left:504.570000px;}
.x6f_c01334{left:508.035000px;}
.x8a_c01334{left:511.485000px;}
.xdc_c01334{left:514.950000px;}
.x70_c01334{left:517.530000px;}
.xb8_c01334{left:525.315000px;}
.xa8_c01334{left:527.910000px;}
.x101_c01334{left:536.550000px;}
.x13_c01334{left:538.275000px;}
.x58_c01334{left:540.000000px;}
.xa0_c01334{left:542.595000px;}
.xe2_c01334{left:546.045000px;}
.x4e_c01334{left:547.770000px;}
.x5e_c01334{left:549.513048px;}
.x108_c01334{left:552.090000px;}
.xa1_c01334{left:553.830000px;}
.x3f_c01334{left:555.555000px;}
.x14_c01334{left:557.280000px;}
.x39_c01334{left:559.005000px;}
.x5f_c01334{left:565.050000px;}
.x23_c01334{left:568.515000px;}
.x24_c01334{left:578.880000px;}
.x4f_c01334{left:581.475000px;}
.x105_c01334{left:583.200000px;}
.xe3_c01334{left:584.925000px;}
.x30_c01334{left:586.650000px;}
.xfa_c01334{left:588.390000px;}
.xdd_c01334{left:590.115000px;}
.x4_c01334{left:592.710000px;}
.x15_c01334{left:595.290000px;}
.xf5_c01334{left:597.885000px;}
.xa2_c01334{left:599.610000px;}
.x5_c01334{left:603.930000px;}
.xc0_c01334{left:605.670000px;}
.x7a_c01334{left:608.250000px;}
.x71_c01334{left:614.310000px;}
.x59_c01334{left:616.890000px;}
.x16_c01334{left:618.630000px;}
.x6_c01334{left:622.080000px;}
.x60_c01334{left:624.675000px;}
.x40_c01334{left:628.995000px;}
.x7_c01334{left:634.170000px;}
.x8b_c01334{left:637.635000px;}
.x7b_c01334{left:640.230000px;}
.xb4_c01334{left:641.955000px;}
.x72_c01334{left:644.550000px;}
.x50_c01334{left:647.130000px;}
.x107_c01334{left:648.870000px;}
.x25_c01334{left:651.450000px;}
.xc1_c01334{left:654.045000px;}
.x8c_c01334{left:655.770000px;}
.xcd_c01334{left:659.235000px;}
.xa3_c01334{left:660.960000px;}
.x3a_c01334{left:663.555000px;}
.x96_c01334{left:666.150000px;}
.x8_c01334{left:668.730000px;}
.xf2_c01334{left:670.470000px;}
.x61_c01334{left:672.195000px;}
.x17_c01334{left:674.790000px;}
.x31_c01334{left:676.515000px;}
.x51_c01334{left:679.965000px;}
.x7c_c01334{left:682.560000px;}
.xf6_c01334{left:684.285000px;}
.x18_c01334{left:686.010000px;}
.x90_c01334{left:688.605000px;}
.x84_c01334{left:691.200000px;}
.xfe_c01334{left:693.795000px;}
.x9_c01334{left:695.520000px;}
.x73_c01334{left:698.115000px;}
.xc9_c01334{left:700.710000px;}
.x52_c01334{left:702.435000px;}
.x10b_c01334{left:704.160000px;}
.x19_c01334{left:705.885000px;}
.x41_c01334{left:708.480000px;}
.xa9_c01334{left:710.205000px;}
.xc5_c01334{left:712.800000px;}
.x85_c01334{left:715.395000px;}
.xc2_c01334{left:717.120000px;}
.xad_c01334{left:720.570000px;}
.x26_c01334{left:723.165000px;}
.xca_c01334{left:725.760000px;}
.x74_c01334{left:727.485000px;}
.x69_c01334{left:730.080000px;}
.x32_c01334{left:731.805000px;}
.x3b_c01334{left:734.400000px;}
.x97_c01334{left:737.850000px;}
.xde_c01334{left:741.315000px;}
.xb9_c01334{left:743.910000px;}
.xa4_c01334{left:745.635000px;}
.x91_c01334{left:748.230000px;}
.x5a_c01334{left:749.955000px;}
.x7d_c01334{left:752.550000px;}
.xb5_c01334{left:756.000000px;}
.x1a_c01334{left:757.725000px;}
.x6a_c01334{left:759.450000px;}
.xe4_c01334{left:762.045000px;}
.x75_c01334{left:764.640000px;}
.x1b_c01334{left:766.365000px;}
.x53_c01334{left:768.090000px;}
.xa5_c01334{left:771.555000px;}
.x27_c01334{left:773.280000px;}
.x8d_c01334{left:775.875000px;}
.x76_c01334{left:777.600000px;}
.x9d_c01334{left:780.195000px;}
.x47_c01334{left:781.920000px;}
.x98_c01334{left:784.515000px;}
.xe8_c01334{left:787.110000px;}
.xe_c01334{left:789.690000px;}
.x48_c01334{left:791.430000px;}
.x5b_c01334{left:794.010000px;}
.x3c_c01334{left:799.200000px;}
.xae_c01334{left:802.650000px;}
.xfb_c01334{left:804.390000px;}
.xc3_c01334{left:806.115000px;}
.x28_c01334{left:807.840000px;}
.x42_c01334{left:810.435000px;}
.xcb_c01334{left:812.160000px;}
.x1c_c01334{left:815.610000px;}
.xce_c01334{left:817.350000px;}
.xee_c01334{left:819.930000px;}
.x8e_c01334{left:821.670000px;}
.xba_c01334{left:824.250000px;}
.x7e_c01334{left:825.990000px;}
.xfc_c01334{left:827.715000px;}
.x92_c01334{left:829.440000px;}
.x62_c01334{left:831.165000px;}
.x9e_c01334{left:833.760000px;}
.x77_c01334{left:836.355000px;}
.x63_c01334{left:838.950000px;}
.x49_c01334{left:842.400000px;}
.x33_c01334{left:845.850000px;}
.x103_c01334{left:847.590000px;}
.x86_c01334{left:851.040000px;}
.x64_c01334{left:853.635000px;}
.x3d_c01334{left:857.085000px;}
.xe9_c01334{left:858.810000px;}
.x10d_c01334{left:861.405000px;}
.x29_c01334{left:865.725000px;}
.x5c_c01334{left:869.190000px;}
.xea_c01334{left:870.915000px;}
.xaf_c01334{left:872.640000px;}
.x1d_c01334{left:874.365000px;}
.xef_c01334{left:880.410000px;}
.x1e_c01334{left:882.150000px;}
.x2a_c01334{left:884.730000px;}
.xf7_c01334{left:890.790000px;}
.xeb_c01334{left:892.515000px;}
.x112_c01334{left:969.405000px;}
.x10f_c01334{left:977.190000px;}
.x110_c01334{left:990.150000px;}
.x111_c01334{left:992.730000px;}
@media print{
.v0_c01334{vertical-align:0.000000pt;}
.v1_c01334{vertical-align:3.093333pt;}
.v2_c01334{vertical-align:6.133333pt;}
.v3_c01334{vertical-align:15.360000pt;}
.v4_c01334{vertical-align:18.453333pt;}
.ls2_c01334{letter-spacing:0.000000pt;}
.ls1_c01334{letter-spacing:70.580267pt;}
.ls0_c01334{letter-spacing:135.160427pt;}
.ws1_c01334{word-spacing:-20.467520pt;}
.ws0_c01334{word-spacing:-14.049707pt;}
.ws3_c01334{word-spacing:-2.362613pt;}
.ws5_c01334{word-spacing:0.000000pt;}
.ws2_c01334{word-spacing:29.426381pt;}
.ws4_c01334{word-spacing:124.766613pt;}
.fs0_c01334{font-size:3.072000pt;}
.fs1e_c01334{font-size:5.333333pt;}
.fs5_c01334{font-size:6.133333pt;}
.fs1c_c01334{font-size:9.226667pt;}
.fs6_c01334{font-size:12.266667pt;}
.fs1b_c01334{font-size:15.360000pt;}
.fs3_c01334{font-size:18.453333pt;}
.fs12_c01334{font-size:21.493333pt;}
.fs14_c01334{font-size:24.586667pt;}
.fs17_c01334{font-size:27.626667pt;}
.fs7_c01334{font-size:30.720000pt;}
.fs10_c01334{font-size:33.813333pt;}
.fs1d_c01334{font-size:36.853333pt;}
.fs4_c01334{font-size:39.946667pt;}
.fsf_c01334{font-size:42.986667pt;}
.fs2_c01334{font-size:46.080000pt;}
.fsd_c01334{font-size:49.173333pt;}
.fs16_c01334{font-size:52.213333pt;}
.fs11_c01334{font-size:55.306667pt;}
.fsc_c01334{font-size:58.346667pt;}
.fs15_c01334{font-size:61.440000pt;}
.fse_c01334{font-size:64.533333pt;}
.fs8_c01334{font-size:67.573333pt;}
.fsa_c01334{font-size:70.666667pt;}
.fs1a_c01334{font-size:73.706667pt;}
.fs19_c01334{font-size:76.800000pt;}
.fs13_c01334{font-size:79.893333pt;}
.fs20_c01334{font-size:82.933333pt;}
.fs1f_c01334{font-size:86.026667pt;}
.fs1_c01334{font-size:89.066667pt;}
.fs21_c01334{font-size:95.253333pt;}
.fs9_c01334{font-size:101.386667pt;}
.fs18_c01334{font-size:104.426667pt;}
.fsb_c01334{font-size:122.880000pt;}
.y0_c01334{bottom:0.000000pt;}
.y208_c01334{bottom:185.853333pt;}
.y206_c01334{bottom:186.626667pt;}
.y205_c01334{bottom:187.386667pt;}
.y20c_c01334{bottom:188.160000pt;}
.y207_c01334{bottom:188.933333pt;}
.y20b_c01334{bottom:190.466667pt;}
.y20a_c01334{bottom:191.226667pt;}
.y20e_c01334{bottom:192.000000pt;}
.y209_c01334{bottom:192.773333pt;}
.y20d_c01334{bottom:193.533333pt;}
.y210_c01334{bottom:195.066667pt;}
.y20f_c01334{bottom:196.613333pt;}
.y1fb_c01334{bottom:204.293333pt;}
.y1fa_c01334{bottom:205.053333pt;}
.y1fc_c01334{bottom:205.826667pt;}
.y200_c01334{bottom:207.360000pt;}
.y1fd_c01334{bottom:208.133333pt;}
.y202_c01334{bottom:210.426667pt;}
.y1fe_c01334{bottom:211.200000pt;}
.y1ff_c01334{bottom:211.973333pt;}
.y201_c01334{bottom:212.733333pt;}
.y203_c01334{bottom:213.506667pt;}
.y204_c01334{bottom:224.253333pt;}
.y1f4_c01334{bottom:225.026667pt;}
.y1f7_c01334{bottom:226.560000pt;}
.y1f5_c01334{bottom:228.093333pt;}
.y1f6_c01334{bottom:228.866667pt;}
.y1f8_c01334{bottom:231.173333pt;}
.y1f9_c01334{bottom:232.706667pt;}
.y1ee_c01334{bottom:239.613333pt;}
.y1ec_c01334{bottom:241.920000pt;}
.y1ef_c01334{bottom:243.453333pt;}
.y1eb_c01334{bottom:244.226667pt;}
.y1ed_c01334{bottom:244.986667pt;}
.y1f0_c01334{bottom:248.826667pt;}
.y1f1_c01334{bottom:249.600000pt;}
.y1f2_c01334{bottom:250.373333pt;}
.y1f3_c01334{bottom:251.906667pt;}
.y1ea_c01334{bottom:257.280000pt;}
.y1e2_c01334{bottom:259.586667pt;}
.y1e5_c01334{bottom:260.346667pt;}
.y1e1_c01334{bottom:261.893333pt;}
.y1df_c01334{bottom:262.653333pt;}
.y1e0_c01334{bottom:263.426667pt;}
.y1e6_c01334{bottom:264.186667pt;}
.y1e3_c01334{bottom:265.733333pt;}
.y1e4_c01334{bottom:266.493333pt;}
.y1e7_c01334{bottom:267.266667pt;}
.y1e8_c01334{bottom:268.026667pt;}
.y1e9_c01334{bottom:268.800000pt;}
.y1d6_c01334{bottom:279.546667pt;}
.y1d8_c01334{bottom:281.093333pt;}
.y1db_c01334{bottom:281.853333pt;}
.y1d7_c01334{bottom:282.626667pt;}
.y1dc_c01334{bottom:283.386667pt;}
.y1d9_c01334{bottom:284.160000pt;}
.y1da_c01334{bottom:284.933333pt;}
.y1dd_c01334{bottom:286.466667pt;}
.y1de_c01334{bottom:287.226667pt;}
.y1ce_c01334{bottom:294.906667pt;}
.y1cf_c01334{bottom:296.453333pt;}
.y1d0_c01334{bottom:298.746667pt;}
.y1d1_c01334{bottom:299.520000pt;}
.y1d4_c01334{bottom:300.293333pt;}
.y1d2_c01334{bottom:303.360000pt;}
.y1d3_c01334{bottom:304.893333pt;}
.y1d5_c01334{bottom:305.666667pt;}
.y1c9_c01334{bottom:318.720000pt;}
.y1ca_c01334{bottom:319.493333pt;}
.y1cd_c01334{bottom:320.253333pt;}
.y1cb_c01334{bottom:321.026667pt;}
.y1cc_c01334{bottom:323.333333pt;}
.y1c8_c01334{bottom:325.626667pt;}
.y1c4_c01334{bottom:333.306667pt;}
.y1c6_c01334{bottom:334.080000pt;}
.y1c3_c01334{bottom:335.613333pt;}
.y1c2_c01334{bottom:336.386667pt;}
.y1c7_c01334{bottom:337.920000pt;}
.y1c5_c01334{bottom:338.693333pt;}
.y1bc_c01334{bottom:352.506667pt;}
.y1be_c01334{bottom:354.053333pt;}
.y1bb_c01334{bottom:355.586667pt;}
.y1bd_c01334{bottom:357.893333pt;}
.y1c1_c01334{bottom:358.653333pt;}
.y1bf_c01334{bottom:359.426667pt;}
.y1c0_c01334{bottom:360.186667pt;}
.y1b1_c01334{bottom:366.333333pt;}
.y1b2_c01334{bottom:368.640000pt;}
.y1b0_c01334{bottom:369.413333pt;}
.y1b4_c01334{bottom:370.173333pt;}
.y1b5_c01334{bottom:370.946667pt;}
.y1b9_c01334{bottom:371.706667pt;}
.y1b3_c01334{bottom:374.013333pt;}
.y1b8_c01334{bottom:374.786667pt;}
.y1b6_c01334{bottom:376.320000pt;}
.y1b7_c01334{bottom:378.626667pt;}
.y1ba_c01334{bottom:379.386667pt;}
.y1a7_c01334{bottom:388.613333pt;}
.y1aa_c01334{bottom:389.373333pt;}
.y1a8_c01334{bottom:390.906667pt;}
.y1a9_c01334{bottom:391.680000pt;}
.y1ae_c01334{bottom:392.453333pt;}
.y1af_c01334{bottom:393.986667pt;}
.y1ab_c01334{bottom:394.746667pt;}
.y1ad_c01334{bottom:396.293333pt;}
.y1ac_c01334{bottom:397.053333pt;}
.y1a6_c01334{bottom:404.733333pt;}
.y1a0_c01334{bottom:408.573333pt;}
.y19f_c01334{bottom:409.346667pt;}
.y19d_c01334{bottom:410.880000pt;}
.y19c_c01334{bottom:411.653333pt;}
.y1a4_c01334{bottom:412.413333pt;}
.y1a2_c01334{bottom:413.186667pt;}
.y1a3_c01334{bottom:413.946667pt;}
.y1a5_c01334{bottom:415.493333pt;}
.y19e_c01334{bottom:417.026667pt;}
.y1a1_c01334{bottom:423.933333pt;}
.y196_c01334{bottom:424.706667pt;}
.y198_c01334{bottom:427.013333pt;}
.y195_c01334{bottom:427.773333pt;}
.y19a_c01334{bottom:428.546667pt;}
.y19b_c01334{bottom:429.306667pt;}
.y197_c01334{bottom:431.613333pt;}
.y199_c01334{bottom:433.146667pt;}
.y190_c01334{bottom:443.133333pt;}
.y192_c01334{bottom:444.666667pt;}
.y193_c01334{bottom:445.440000pt;}
.y194_c01334{bottom:446.973333pt;}
.y216_c01334{bottom:459.266667pt;}
.y191_c01334{bottom:460.800000pt;}
.y18a_c01334{bottom:462.333333pt;}
.y189_c01334{bottom:464.640000pt;}
.y18c_c01334{bottom:466.173333pt;}
.y18d_c01334{bottom:466.946667pt;}
.y18e_c01334{bottom:469.253333pt;}
.y18f_c01334{bottom:470.786667pt;}
.y18b_c01334{bottom:472.320000pt;}
.y181_c01334{bottom:479.226667pt;}
.y182_c01334{bottom:480.000000pt;}
.y180_c01334{bottom:482.306667pt;}
.y17f_c01334{bottom:483.840000pt;}
.y215_c01334{bottom:484.613333pt;}
.y183_c01334{bottom:486.906667pt;}
.y184_c01334{bottom:487.680000pt;}
.y185_c01334{bottom:488.453333pt;}
.y186_c01334{bottom:489.213333pt;}
.y188_c01334{bottom:491.520000pt;}
.y214_c01334{bottom:492.293333pt;}
.y187_c01334{bottom:495.360000pt;}
.y173_c01334{bottom:496.133333pt;}
.y175_c01334{bottom:496.893333pt;}
.y178_c01334{bottom:498.426667pt;}
.y17a_c01334{bottom:499.200000pt;}
.y179_c01334{bottom:500.733333pt;}
.y17b_c01334{bottom:501.506667pt;}
.y17d_c01334{bottom:503.040000pt;}
.y174_c01334{bottom:503.813333pt;}
.y17c_c01334{bottom:505.346667pt;}
.y17e_c01334{bottom:506.106667pt;}
.y177_c01334{bottom:506.880000pt;}
.y171_c01334{bottom:507.653333pt;}
.y176_c01334{bottom:509.946667pt;}
.y172_c01334{bottom:513.786667pt;}
.y16b_c01334{bottom:514.560000pt;}
.y16a_c01334{bottom:516.093333pt;}
.y16c_c01334{bottom:516.866667pt;}
.y166_c01334{bottom:517.626667pt;}
.y168_c01334{bottom:518.400000pt;}
.y167_c01334{bottom:519.933333pt;}
.y169_c01334{bottom:520.706667pt;}
.y16d_c01334{bottom:522.240000pt;}
.y16e_c01334{bottom:523.013333pt;}
.y16f_c01334{bottom:524.546667pt;}
.y170_c01334{bottom:534.533333pt;}
.y160_c01334{bottom:535.293333pt;}
.y161_c01334{bottom:536.826667pt;}
.y162_c01334{bottom:538.373333pt;}
.y164_c01334{bottom:541.440000pt;}
.y163_c01334{bottom:542.213333pt;}
.y15e_c01334{bottom:543.746667pt;}
.y15f_c01334{bottom:544.506667pt;}
.y165_c01334{bottom:549.893333pt;}
.y159_c01334{bottom:553.733333pt;}
.y158_c01334{bottom:554.493333pt;}
.y156_c01334{bottom:555.266667pt;}
.y157_c01334{bottom:556.026667pt;}
.y155_c01334{bottom:556.800000pt;}
.y15a_c01334{bottom:557.573333pt;}
.y15c_c01334{bottom:559.106667pt;}
.y15b_c01334{bottom:559.866667pt;}
.y15d_c01334{bottom:560.640000pt;}
.y152_c01334{bottom:572.160000pt;}
.y153_c01334{bottom:572.933333pt;}
.y14f_c01334{bottom:573.693333pt;}
.y151_c01334{bottom:576.000000pt;}
.y150_c01334{bottom:576.773333pt;}
.y154_c01334{bottom:578.306667pt;}
.y147_c01334{bottom:590.586667pt;}
.y148_c01334{bottom:592.133333pt;}
.y149_c01334{bottom:592.893333pt;}
.y14b_c01334{bottom:594.426667pt;}
.y14c_c01334{bottom:595.200000pt;}
.y14d_c01334{bottom:595.973333pt;}
.y145_c01334{bottom:596.733333pt;}
.y146_c01334{bottom:598.266667pt;}
.y14e_c01334{bottom:599.040000pt;}
.y14a_c01334{bottom:601.346667pt;}
.y13f_c01334{bottom:605.946667pt;}
.y13e_c01334{bottom:606.720000pt;}
.y13c_c01334{bottom:607.493333pt;}
.y142_c01334{bottom:608.253333pt;}
.y13d_c01334{bottom:609.026667pt;}
.y144_c01334{bottom:609.786667pt;}
.y141_c01334{bottom:610.560000pt;}
.y140_c01334{bottom:611.333333pt;}
.y143_c01334{bottom:612.093333pt;}
.y13b_c01334{bottom:612.866667pt;}
.y13a_c01334{bottom:621.306667pt;}
.y134_c01334{bottom:623.613333pt;}
.y136_c01334{bottom:624.386667pt;}
.y137_c01334{bottom:625.146667pt;}
.y133_c01334{bottom:626.693333pt;}
.y135_c01334{bottom:627.453333pt;}
.y138_c01334{bottom:629.760000pt;}
.y139_c01334{bottom:630.533333pt;}
.y132_c01334{bottom:631.293333pt;}
.y127_c01334{bottom:640.506667pt;}
.y128_c01334{bottom:641.280000pt;}
.y12a_c01334{bottom:642.053333pt;}
.y129_c01334{bottom:642.813333pt;}
.y12d_c01334{bottom:643.586667pt;}
.y12c_c01334{bottom:644.346667pt;}
.y130_c01334{bottom:645.120000pt;}
.y12f_c01334{bottom:645.893333pt;}
.y12b_c01334{bottom:647.426667pt;}
.y12e_c01334{bottom:648.186667pt;}
.y131_c01334{bottom:650.493333pt;}
.y11e_c01334{bottom:658.946667pt;}
.y120_c01334{bottom:660.480000pt;}
.y123_c01334{bottom:662.013333pt;}
.y122_c01334{bottom:662.786667pt;}
.y11f_c01334{bottom:664.320000pt;}
.y121_c01334{bottom:665.853333pt;}
.y124_c01334{bottom:668.160000pt;}
.y125_c01334{bottom:668.933333pt;}
.y126_c01334{bottom:670.466667pt;}
.y115_c01334{bottom:674.306667pt;}
.y116_c01334{bottom:675.066667pt;}
.y119_c01334{bottom:676.613333pt;}
.y117_c01334{bottom:677.373333pt;}
.y11c_c01334{bottom:678.146667pt;}
.y11d_c01334{bottom:681.986667pt;}
.y118_c01334{bottom:682.746667pt;}
.y11a_c01334{bottom:684.293333pt;}
.y11b_c01334{bottom:685.053333pt;}
.y10e_c01334{bottom:695.813333pt;}
.y111_c01334{bottom:697.346667pt;}
.y112_c01334{bottom:698.106667pt;}
.y113_c01334{bottom:698.880000pt;}
.y10d_c01334{bottom:699.653333pt;}
.y10f_c01334{bottom:701.186667pt;}
.y110_c01334{bottom:701.946667pt;}
.y114_c01334{bottom:707.333333pt;}
.y108_c01334{bottom:715.773333pt;}
.y10c_c01334{bottom:717.306667pt;}
.y106_c01334{bottom:718.080000pt;}
.y107_c01334{bottom:718.853333pt;}
.y10a_c01334{bottom:719.613333pt;}
.y109_c01334{bottom:720.386667pt;}
.y10b_c01334{bottom:721.146667pt;}
.yfe_c01334{bottom:731.906667pt;}
.yff_c01334{bottom:733.440000pt;}
.yfd_c01334{bottom:734.973333pt;}
.y105_c01334{bottom:735.746667pt;}
.y103_c01334{bottom:736.506667pt;}
.y100_c01334{bottom:737.280000pt;}
.y102_c01334{bottom:738.053333pt;}
.y101_c01334{bottom:738.813333pt;}
.y104_c01334{bottom:740.346667pt;}
.yfc_c01334{bottom:741.893333pt;}
.yf1_c01334{bottom:749.573333pt;}
.yf5_c01334{bottom:751.106667pt;}
.yf2_c01334{bottom:751.866667pt;}
.yf6_c01334{bottom:752.640000pt;}
.yf8_c01334{bottom:753.413333pt;}
.yf3_c01334{bottom:754.173333pt;}
.yf4_c01334{bottom:754.946667pt;}
.yf7_c01334{bottom:756.480000pt;}
.yfa_c01334{bottom:757.253333pt;}
.yf9_c01334{bottom:758.013333pt;}
.yfb_c01334{bottom:758.786667pt;}
.yeb_c01334{bottom:767.226667pt;}
.yea_c01334{bottom:771.840000pt;}
.yf0_c01334{bottom:772.613333pt;}
.yec_c01334{bottom:773.373333pt;}
.yed_c01334{bottom:774.906667pt;}
.yee_c01334{bottom:775.680000pt;}
.yef_c01334{bottom:776.453333pt;}
.ye4_c01334{bottom:786.426667pt;}
.ye3_c01334{bottom:787.973333pt;}
.ye6_c01334{bottom:788.733333pt;}
.ye2_c01334{bottom:790.266667pt;}
.ye5_c01334{bottom:791.813333pt;}
.ye7_c01334{bottom:793.346667pt;}
.ye8_c01334{bottom:794.106667pt;}
.ye9_c01334{bottom:795.653333pt;}
.ydd_c01334{bottom:803.333333pt;}
.ydc_c01334{bottom:804.093333pt;}
.yde_c01334{bottom:806.400000pt;}
.ydb_c01334{bottom:808.706667pt;}
.ye0_c01334{bottom:809.466667pt;}
.ydf_c01334{bottom:810.240000pt;}
.ye1_c01334{bottom:812.546667pt;}
.yd1_c01334{bottom:819.453333pt;}
.yd2_c01334{bottom:821.760000pt;}
.yd5_c01334{bottom:822.533333pt;}
.yd7_c01334{bottom:824.826667pt;}
.yd3_c01334{bottom:826.373333pt;}
.yd4_c01334{bottom:827.133333pt;}
.yda_c01334{bottom:827.906667pt;}
.yd6_c01334{bottom:829.440000pt;}
.yd8_c01334{bottom:830.213333pt;}
.yd9_c01334{bottom:832.506667pt;}
.yca_c01334{bottom:838.653333pt;}
.yc9_c01334{bottom:839.426667pt;}
.ycc_c01334{bottom:840.186667pt;}
.yce_c01334{bottom:841.733333pt;}
.ycf_c01334{bottom:842.493333pt;}
.yc8_c01334{bottom:843.266667pt;}
.ycd_c01334{bottom:844.026667pt;}
.ycb_c01334{bottom:844.800000pt;}
.yd0_c01334{bottom:847.106667pt;}
.yc7_c01334{bottom:850.173333pt;}
.yc0_c01334{bottom:858.626667pt;}
.ybe_c01334{bottom:859.386667pt;}
.yc3_c01334{bottom:860.160000pt;}
.yc2_c01334{bottom:860.933333pt;}
.ybf_c01334{bottom:861.693333pt;}
.yc1_c01334{bottom:862.466667pt;}
.yc6_c01334{bottom:864.000000pt;}
.yc4_c01334{bottom:866.306667pt;}
.yc5_c01334{bottom:867.066667pt;}
.yba_c01334{bottom:875.520000pt;}
.ybc_c01334{bottom:878.586667pt;}
.ybd_c01334{bottom:879.360000pt;}
.yb9_c01334{bottom:880.133333pt;}
.ybb_c01334{bottom:880.893333pt;}
.yb2_c01334{bottom:893.186667pt;}
.yb3_c01334{bottom:895.493333pt;}
.yb6_c01334{bottom:896.253333pt;}
.yb4_c01334{bottom:897.026667pt;}
.yb5_c01334{bottom:897.786667pt;}
.yb8_c01334{bottom:898.560000pt;}
.yb7_c01334{bottom:901.626667pt;}
.ya9_c01334{bottom:911.613333pt;}
.yaa_c01334{bottom:913.146667pt;}
.yad_c01334{bottom:913.920000pt;}
.ya8_c01334{bottom:915.453333pt;}
.yae_c01334{bottom:916.226667pt;}
.yb1_c01334{bottom:916.986667pt;}
.yac_c01334{bottom:918.533333pt;}
.yb0_c01334{bottom:919.293333pt;}
.yaf_c01334{bottom:920.826667pt;}
.yab_c01334{bottom:923.906667pt;}
.ya6_c01334{bottom:932.346667pt;}
.ya5_c01334{bottom:933.120000pt;}
.ya1_c01334{bottom:933.893333pt;}
.ya2_c01334{bottom:934.653333pt;}
.ya3_c01334{bottom:935.426667pt;}
.ya4_c01334{bottom:936.186667pt;}
.ya7_c01334{bottom:940.026667pt;}
.y9d_c01334{bottom:949.253333pt;}
.y9c_c01334{bottom:950.013333pt;}
.y9f_c01334{bottom:951.546667pt;}
.y99_c01334{bottom:952.320000pt;}
.y9a_c01334{bottom:953.093333pt;}
.y9e_c01334{bottom:954.626667pt;}
.ya0_c01334{bottom:956.160000pt;}
.y9b_c01334{bottom:961.533333pt;}
.y93_c01334{bottom:966.146667pt;}
.y91_c01334{bottom:966.906667pt;}
.y95_c01334{bottom:967.680000pt;}
.y92_c01334{bottom:969.213333pt;}
.y90_c01334{bottom:969.986667pt;}
.y94_c01334{bottom:970.746667pt;}
.y97_c01334{bottom:971.520000pt;}
.y98_c01334{bottom:972.293333pt;}
.y96_c01334{bottom:973.053333pt;}
.y88_c01334{bottom:983.813333pt;}
.y8a_c01334{bottom:985.346667pt;}
.y8b_c01334{bottom:986.106667pt;}
.y87_c01334{bottom:988.413333pt;}
.y89_c01334{bottom:989.186667pt;}
.y8d_c01334{bottom:989.946667pt;}
.y8f_c01334{bottom:991.493333pt;}
.y8e_c01334{bottom:992.253333pt;}
.y8c_c01334{bottom:996.866667pt;}
.y7f_c01334{bottom:1001.466667pt;}
.y81_c01334{bottom:1003.013333pt;}
.y82_c01334{bottom:1003.773333pt;}
.y85_c01334{bottom:1006.080000pt;}
.y7e_c01334{bottom:1006.853333pt;}
.y80_c01334{bottom:1007.613333pt;}
.y84_c01334{bottom:1008.386667pt;}
.y83_c01334{bottom:1009.146667pt;}
.y86_c01334{bottom:1009.920000pt;}
.y77_c01334{bottom:1021.440000pt;}
.y76_c01334{bottom:1022.213333pt;}
.y75_c01334{bottom:1024.506667pt;}
.y7a_c01334{bottom:1025.280000pt;}
.y78_c01334{bottom:1026.813333pt;}
.y7b_c01334{bottom:1027.586667pt;}
.y79_c01334{bottom:1028.346667pt;}
.y7c_c01334{bottom:1029.120000pt;}
.y7d_c01334{bottom:1030.653333pt;}
.y6f_c01334{bottom:1038.333333pt;}
.y71_c01334{bottom:1040.640000pt;}
.y63_c01334{bottom:1041.413333pt;}
.y6d_c01334{bottom:1042.173333pt;}
.y64_c01334{bottom:1042.946667pt;}
.y70_c01334{bottom:1043.706667pt;}
.y6e_c01334{bottom:1044.480000pt;}
.y74_c01334{bottom:1046.013333pt;}
.y73_c01334{bottom:1046.786667pt;}
.y72_c01334{bottom:1047.546667pt;}
.y66_c01334{bottom:1049.853333pt;}
.y68_c01334{bottom:1050.626667pt;}
.y67_c01334{bottom:1052.933333pt;}
.y65_c01334{bottom:1053.693333pt;}
.y69_c01334{bottom:1055.226667pt;}
.y6a_c01334{bottom:1056.000000pt;}
.y6b_c01334{bottom:1056.773333pt;}
.y6c_c01334{bottom:1057.533333pt;}
.y5c_c01334{bottom:1059.066667pt;}
.y5e_c01334{bottom:1059.840000pt;}
.y61_c01334{bottom:1060.613333pt;}
.y60_c01334{bottom:1062.146667pt;}
.y5d_c01334{bottom:1062.906667pt;}
.y5f_c01334{bottom:1063.680000pt;}
.y62_c01334{bottom:1064.453333pt;}
.y5a_c01334{bottom:1071.360000pt;}
.y58_c01334{bottom:1072.893333pt;}
.y59_c01334{bottom:1074.426667pt;}
.y5b_c01334{bottom:1075.200000pt;}
.y51_c01334{bottom:1075.973333pt;}
.y4e_c01334{bottom:1076.733333pt;}
.y4f_c01334{bottom:1078.266667pt;}
.y50_c01334{bottom:1079.040000pt;}
.y54_c01334{bottom:1080.573333pt;}
.y57_c01334{bottom:1082.106667pt;}
.y53_c01334{bottom:1082.880000pt;}
.y55_c01334{bottom:1083.653333pt;}
.y52_c01334{bottom:1084.413333pt;}
.y56_c01334{bottom:1088.253333pt;}
.y48_c01334{bottom:1092.093333pt;}
.y47_c01334{bottom:1093.626667pt;}
.y4a_c01334{bottom:1095.933333pt;}
.y4b_c01334{bottom:1099.013333pt;}
.y4c_c01334{bottom:1100.546667pt;}
.y46_c01334{bottom:1101.306667pt;}
.y4d_c01334{bottom:1102.080000pt;}
.y49_c01334{bottom:1106.693333pt;}
.y3e_c01334{bottom:1109.760000pt;}
.y3f_c01334{bottom:1110.533333pt;}
.y42_c01334{bottom:1112.826667pt;}
.y40_c01334{bottom:1115.133333pt;}
.y41_c01334{bottom:1115.906667pt;}
.y43_c01334{bottom:1117.440000pt;}
.y44_c01334{bottom:1119.746667pt;}
.y45_c01334{bottom:1121.280000pt;}
.y37_c01334{bottom:1128.186667pt;}
.y38_c01334{bottom:1128.960000pt;}
.y39_c01334{bottom:1130.493333pt;}
.y3b_c01334{bottom:1131.266667pt;}
.y3c_c01334{bottom:1132.800000pt;}
.y3d_c01334{bottom:1134.333333pt;}
.y3a_c01334{bottom:1135.106667pt;}
.y2c_c01334{bottom:1145.853333pt;}
.y2e_c01334{bottom:1146.626667pt;}
.y30_c01334{bottom:1147.386667pt;}
.y2d_c01334{bottom:1148.160000pt;}
.y33_c01334{bottom:1150.466667pt;}
.y2f_c01334{bottom:1152.000000pt;}
.y31_c01334{bottom:1152.773333pt;}
.y32_c01334{bottom:1153.533333pt;}
.y34_c01334{bottom:1154.306667pt;}
.y35_c01334{bottom:1155.066667pt;}
.y36_c01334{bottom:1155.840000pt;}
.y28_c01334{bottom:1158.146667pt;}
.y24_c01334{bottom:1165.826667pt;}
.y29_c01334{bottom:1166.586667pt;}
.y26_c01334{bottom:1169.666667pt;}
.y25_c01334{bottom:1170.426667pt;}
.y27_c01334{bottom:1171.200000pt;}
.y2a_c01334{bottom:1172.733333pt;}
.y2b_c01334{bottom:1174.266667pt;}
.y1a_c01334{bottom:1183.493333pt;}
.y1c_c01334{bottom:1184.253333pt;}
.y1d_c01334{bottom:1185.026667pt;}
.y19_c01334{bottom:1185.786667pt;}
.y20_c01334{bottom:1187.333333pt;}
.y1b_c01334{bottom:1188.866667pt;}
.y1e_c01334{bottom:1190.400000pt;}
.y1f_c01334{bottom:1191.173333pt;}
.y21_c01334{bottom:1191.933333pt;}
.y22_c01334{bottom:1193.466667pt;}
.y23_c01334{bottom:1195.013333pt;}
.yd_c01334{bottom:1200.386667pt;}
.yc_c01334{bottom:1201.146667pt;}
.ye_c01334{bottom:1201.920000pt;}
.yf_c01334{bottom:1203.453333pt;}
.y14_c01334{bottom:1204.226667pt;}
.y10_c01334{bottom:1204.986667pt;}
.y13_c01334{bottom:1205.760000pt;}
.y18_c01334{bottom:1206.533333pt;}
.y12_c01334{bottom:1208.826667pt;}
.y11_c01334{bottom:1209.600000pt;}
.y15_c01334{bottom:1214.973333pt;}
.y16_c01334{bottom:1218.053333pt;}
.y17_c01334{bottom:1219.586667pt;}
.y8_c01334{bottom:1221.120000pt;}
.y7_c01334{bottom:1224.186667pt;}
.ya_c01334{bottom:1224.960000pt;}
.y9_c01334{bottom:1230.333333pt;}
.yb_c01334{bottom:1232.640000pt;}
.y2_c01334{bottom:1248.000000pt;}
.y4_c01334{bottom:1254.146667pt;}
.y3_c01334{bottom:1255.680000pt;}
.y5_c01334{bottom:1258.746667pt;}
.y6_c01334{bottom:1262.586667pt;}
.y1_c01334{bottom:1266.426667pt;}
.y212_c01334{bottom:1270.266667pt;}
.y213_c01334{bottom:1274.106667pt;}
.y211_c01334{bottom:1279.493333pt;}
.h2_c01334{height:2.764500pt;}
.h21_c01334{height:4.799479pt;}
.h7_c01334{height:5.519401pt;}
.h1f_c01334{height:8.303099pt;}
.h8_c01334{height:11.038802pt;}
.h1e_c01334{height:13.822500pt;}
.h5_c01334{height:16.606198pt;}
.h14_c01334{height:19.341901pt;}
.h22_c01334{height:19.955833pt;}
.h16_c01334{height:22.125599pt;}
.h19_c01334{height:24.861302pt;}
.h9_c01334{height:27.645000pt;}
.h12_c01334{height:30.428698pt;}
.h20_c01334{height:33.164401pt;}
.h6_c01334{height:35.948099pt;}
.h11_c01334{height:38.683802pt;}
.h4_c01334{height:41.467500pt;}
.hf_c01334{height:44.251198pt;}
.h18_c01334{height:46.986901pt;}
.h25_c01334{height:47.344531pt;}
.h13_c01334{height:49.770599pt;}
.h1d_c01334{height:50.384531pt;}
.he_c01334{height:52.506302pt;}
.h17_c01334{height:55.290000pt;}
.h23_c01334{height:56.827500pt;}
.h10_c01334{height:58.073698pt;}
.ha_c01334{height:60.809401pt;}
.hc_c01334{height:63.593099pt;}
.h1c_c01334{height:66.328802pt;}
.h1b_c01334{height:69.112500pt;}
.h15_c01334{height:71.896198pt;}
.h26_c01334{height:74.631901pt;}
.h24_c01334{height:77.415599pt;}
.h3_c01334{height:80.151302pt;}
.h27_c01334{height:85.718698pt;}
.hb_c01334{height:91.238099pt;}
.h1a_c01334{height:93.973802pt;}
.hd_c01334{height:110.580000pt;}
.h1_c01334{height:1345.333333pt;}
.h0_c01334{height:1345.533333pt;}
.w0_c01334{width:963.066667pt;}
.w1_c01334{width:963.333333pt;}
.x0_c01334{left:0.000000pt;}
.x10e_c01334{left:2.306667pt;}
.xda_c01334{left:146.693333pt;}
.xdf_c01334{left:153.600000pt;}
.xe0_c01334{left:162.053333pt;}
.xdb_c01334{left:176.640000pt;}
.xb0_c01334{left:181.253333pt;}
.x54_c01334{left:182.786667pt;}
.x109_c01334{left:188.933333pt;}
.xf3_c01334{left:191.226667pt;}
.x4a_c01334{left:192.773333pt;}
.xbb_c01334{left:195.066667pt;}
.x4b_c01334{left:198.146667pt;}
.xa_c01334{left:199.680000pt;}
.xcf_c01334{left:201.986667pt;}
.xf_c01334{left:204.293333pt;}
.x2b_c01334{left:205.826667pt;}
.x5d_c01334{left:212.733333pt;}
.xf0_c01334{left:216.573333pt;}
.x104_c01334{left:218.106667pt;}
.xd4_c01334{left:221.186667pt;}
.x7f_c01334{left:222.720000pt;}
.x6b_c01334{left:224.253333pt;}
.x87_c01334{left:225.786667pt;}
.x1f_c01334{left:230.400000pt;}
.x10_c01334{left:232.706667pt;}
.x55_c01334{left:234.240000pt;}
.x34_c01334{left:238.080000pt;}
.x93_c01334{left:241.146667pt;}
.x80_c01334{left:243.453333pt;}
.x43_c01334{left:246.533333pt;}
.x9c_c01334{left:248.826667pt;}
.xd5_c01334{left:251.906667pt;}
.xb_c01334{left:254.213333pt;}
.xb6_c01334{left:256.506667pt;}
.x35_c01334{left:258.813333pt;}
.xbc_c01334{left:261.120000pt;}
.x2c_c01334{left:263.426667pt;}
.xe5_c01334{left:264.960000pt;}
.x4c_c01334{left:267.266667pt;}
.xc6_c01334{left:268.800000pt;}
.xc4_c01334{left:271.106667pt;}
.xc7_c01334{left:275.706667pt;}
.xf1_c01334{left:277.253333pt;}
.xc_c01334{left:279.546667pt;}
.x6c_c01334{left:281.093333pt;}
.x99_c01334{left:284.160000pt;}
.x2d_c01334{left:285.693333pt;}
.xa6_c01334{left:288.000000pt;}
.x78_c01334{left:290.306667pt;}
.x20_c01334{left:293.373333pt;}
.xec_c01334{left:294.906667pt;}
.x3e_c01334{left:297.213333pt;}
.x44_c01334{left:299.520000pt;}
.xa7_c01334{left:301.053333pt;}
.x36_c01334{left:303.360000pt;}
.x56_c01334{left:304.893333pt;}
.xf4_c01334{left:306.426667pt;}
.xbf_c01334{left:307.973333pt;}
.x88_c01334{left:310.266667pt;}
.xab_c01334{left:312.573333pt;}
.xd8_c01334{left:315.653333pt;}
.xb1_c01334{left:317.186667pt;}
.xd2_c01334{left:319.493333pt;}
.x79_c01334{left:321.026667pt;}
.x1_c01334{left:325.626667pt;}
.x94_c01334{left:327.173333pt;}
.x9f_c01334{left:330.240000pt;}
.xd6_c01334{left:332.546667pt;}
.x6d_c01334{left:334.080000pt;}
.x2_c01334{left:335.613333pt;}
.x11_c01334{left:337.146667pt;}
.x21_c01334{left:339.453333pt;}
.xd3_c01334{left:340.986667pt;}
.x65_c01334{left:343.293333pt;}
.x102_c01334{left:344.826667pt;}
.x6e_c01334{left:346.373333pt;}
.xf8_c01334{left:347.906667pt;}
.x57_c01334{left:350.213333pt;}
.xd0_c01334{left:352.506667pt;}
.xf9_c01334{left:354.053333pt;}
.x10a_c01334{left:355.586667pt;}
.x66_c01334{left:357.120000pt;}
.xd9_c01334{left:360.186667pt;}
.x81_c01334{left:362.493333pt;}
.xd_c01334{left:364.026667pt;}
.xe1_c01334{left:367.106667pt;}
.x10c_c01334{left:368.640000pt;}
.x2e_c01334{left:372.480000pt;}
.xe6_c01334{left:374.013333pt;}
.x3_c01334{left:376.320000pt;}
.x37_c01334{left:379.386667pt;}
.xb2_c01334{left:380.933333pt;}
.xd7_c01334{left:382.466667pt;}
.xe7_c01334{left:384.000000pt;}
.x45_c01334{left:386.306667pt;}
.x4d_c01334{left:387.840000pt;}
.x67_c01334{left:389.373333pt;}
.xbd_c01334{left:392.453333pt;}
.xb3_c01334{left:394.746667pt;}
.x12_c01334{left:397.053333pt;}
.x68_c01334{left:399.360000pt;}
.x22_c01334{left:403.200000pt;}
.x9a_c01334{left:404.733333pt;}
.x8f_c01334{left:406.266667pt;}
.x89_c01334{left:408.573333pt;}
.xaa_c01334{left:410.106667pt;}
.x106_c01334{left:412.413333pt;}
.x2f_c01334{left:413.946667pt;}
.xac_c01334{left:417.786667pt;}
.xd1_c01334{left:420.093333pt;}
.xff_c01334{left:422.400000pt;}
.xb7_c01334{left:424.706667pt;}
.xfd_c01334{left:426.240000pt;}
.xcc_c01334{left:427.773333pt;}
.x46_c01334{left:430.080000pt;}
.xed_c01334{left:431.613333pt;}
.xc8_c01334{left:433.146667pt;}
.x9b_c01334{left:436.226667pt;}
.x82_c01334{left:437.760000pt;}
.x38_c01334{left:439.293333pt;}
.xbe_c01334{left:440.826667pt;}
.x95_c01334{left:443.906667pt;}
.x83_c01334{left:446.973333pt;}
.x100_c01334{left:448.506667pt;}
.x6f_c01334{left:451.586667pt;}
.x8a_c01334{left:454.653333pt;}
.xdc_c01334{left:457.733333pt;}
.x70_c01334{left:460.026667pt;}
.xb8_c01334{left:466.946667pt;}
.xa8_c01334{left:469.253333pt;}
.x101_c01334{left:476.933333pt;}
.x13_c01334{left:478.466667pt;}
.x58_c01334{left:480.000000pt;}
.xa0_c01334{left:482.306667pt;}
.xe2_c01334{left:485.373333pt;}
.x4e_c01334{left:486.906667pt;}
.x5e_c01334{left:488.456043pt;}
.x108_c01334{left:490.746667pt;}
.xa1_c01334{left:492.293333pt;}
.x3f_c01334{left:493.826667pt;}
.x14_c01334{left:495.360000pt;}
.x39_c01334{left:496.893333pt;}
.x5f_c01334{left:502.266667pt;}
.x23_c01334{left:505.346667pt;}
.x24_c01334{left:514.560000pt;}
.x4f_c01334{left:516.866667pt;}
.x105_c01334{left:518.400000pt;}
.xe3_c01334{left:519.933333pt;}
.x30_c01334{left:521.466667pt;}
.xfa_c01334{left:523.013333pt;}
.xdd_c01334{left:524.546667pt;}
.x4_c01334{left:526.853333pt;}
.x15_c01334{left:529.146667pt;}
.xf5_c01334{left:531.453333pt;}
.xa2_c01334{left:532.986667pt;}
.x5_c01334{left:536.826667pt;}
.xc0_c01334{left:538.373333pt;}
.x7a_c01334{left:540.666667pt;}
.x71_c01334{left:546.053333pt;}
.x59_c01334{left:548.346667pt;}
.x16_c01334{left:549.893333pt;}
.x6_c01334{left:552.960000pt;}
.x60_c01334{left:555.266667pt;}
.x40_c01334{left:559.106667pt;}
.x7_c01334{left:563.706667pt;}
.x8b_c01334{left:566.786667pt;}
.x7b_c01334{left:569.093333pt;}
.xb4_c01334{left:570.626667pt;}
.x72_c01334{left:572.933333pt;}
.x50_c01334{left:575.226667pt;}
.x107_c01334{left:576.773333pt;}
.x25_c01334{left:579.066667pt;}
.xc1_c01334{left:581.373333pt;}
.x8c_c01334{left:582.906667pt;}
.xcd_c01334{left:585.986667pt;}
.xa3_c01334{left:587.520000pt;}
.x3a_c01334{left:589.826667pt;}
.x96_c01334{left:592.133333pt;}
.x8_c01334{left:594.426667pt;}
.xf2_c01334{left:595.973333pt;}
.x61_c01334{left:597.506667pt;}
.x17_c01334{left:599.813333pt;}
.x31_c01334{left:601.346667pt;}
.x51_c01334{left:604.413333pt;}
.x7c_c01334{left:606.720000pt;}
.xf6_c01334{left:608.253333pt;}
.x18_c01334{left:609.786667pt;}
.x90_c01334{left:612.093333pt;}
.x84_c01334{left:614.400000pt;}
.xfe_c01334{left:616.706667pt;}
.x9_c01334{left:618.240000pt;}
.x73_c01334{left:620.546667pt;}
.xc9_c01334{left:622.853333pt;}
.x52_c01334{left:624.386667pt;}
.x10b_c01334{left:625.920000pt;}
.x19_c01334{left:627.453333pt;}
.x41_c01334{left:629.760000pt;}
.xa9_c01334{left:631.293333pt;}
.xc5_c01334{left:633.600000pt;}
.x85_c01334{left:635.906667pt;}
.xc2_c01334{left:637.440000pt;}
.xad_c01334{left:640.506667pt;}
.x26_c01334{left:642.813333pt;}
.xca_c01334{left:645.120000pt;}
.x74_c01334{left:646.653333pt;}
.x69_c01334{left:648.960000pt;}
.x32_c01334{left:650.493333pt;}
.x3b_c01334{left:652.800000pt;}
.x97_c01334{left:655.866667pt;}
.xde_c01334{left:658.946667pt;}
.xb9_c01334{left:661.253333pt;}
.xa4_c01334{left:662.786667pt;}
.x91_c01334{left:665.093333pt;}
.x5a_c01334{left:666.626667pt;}
.x7d_c01334{left:668.933333pt;}
.xb5_c01334{left:672.000000pt;}
.x1a_c01334{left:673.533333pt;}
.x6a_c01334{left:675.066667pt;}
.xe4_c01334{left:677.373333pt;}
.x75_c01334{left:679.680000pt;}
.x1b_c01334{left:681.213333pt;}
.x53_c01334{left:682.746667pt;}
.xa5_c01334{left:685.826667pt;}
.x27_c01334{left:687.360000pt;}
.x8d_c01334{left:689.666667pt;}
.x76_c01334{left:691.200000pt;}
.x9d_c01334{left:693.506667pt;}
.x47_c01334{left:695.040000pt;}
.x98_c01334{left:697.346667pt;}
.xe8_c01334{left:699.653333pt;}
.xe_c01334{left:701.946667pt;}
.x48_c01334{left:703.493333pt;}
.x5b_c01334{left:705.786667pt;}
.x3c_c01334{left:710.400000pt;}
.xae_c01334{left:713.466667pt;}
.xfb_c01334{left:715.013333pt;}
.xc3_c01334{left:716.546667pt;}
.x28_c01334{left:718.080000pt;}
.x42_c01334{left:720.386667pt;}
.xcb_c01334{left:721.920000pt;}
.x1c_c01334{left:724.986667pt;}
.xce_c01334{left:726.533333pt;}
.xee_c01334{left:728.826667pt;}
.x8e_c01334{left:730.373333pt;}
.xba_c01334{left:732.666667pt;}
.x7e_c01334{left:734.213333pt;}
.xfc_c01334{left:735.746667pt;}
.x92_c01334{left:737.280000pt;}
.x62_c01334{left:738.813333pt;}
.x9e_c01334{left:741.120000pt;}
.x77_c01334{left:743.426667pt;}
.x63_c01334{left:745.733333pt;}
.x49_c01334{left:748.800000pt;}
.x33_c01334{left:751.866667pt;}
.x103_c01334{left:753.413333pt;}
.x86_c01334{left:756.480000pt;}
.x64_c01334{left:758.786667pt;}
.x3d_c01334{left:761.853333pt;}
.xe9_c01334{left:763.386667pt;}
.x10d_c01334{left:765.693333pt;}
.x29_c01334{left:769.533333pt;}
.x5c_c01334{left:772.613333pt;}
.xea_c01334{left:774.146667pt;}
.xaf_c01334{left:775.680000pt;}
.x1d_c01334{left:777.213333pt;}
.xef_c01334{left:782.586667pt;}
.x1e_c01334{left:784.133333pt;}
.x2a_c01334{left:786.426667pt;}
.xf7_c01334{left:791.813333pt;}
.xeb_c01334{left:793.346667pt;}
.x112_c01334{left:861.693333pt;}
.x10f_c01334{left:868.613333pt;}
.x110_c01334{left:880.133333pt;}
.x111_c01334{left:882.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4f09afce0afdfd701e5fd10.woff2')format("woff");}.ff1_c01335{font-family:ff1_c01335;line-height:1.109863;font-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_c01335{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m175_c01335{transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);}
.m145_c01335{transform:matrix(0.069350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069350,0.000000,0.000000,0.250000,0,0);}
.m197_c01335{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);}
.m117_c01335{transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);}
.m10f_c01335{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.m19c_c01335{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);}
.m193_c01335{transform:matrix(0.102550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102550,0.000000,0.000000,0.250000,0,0);}
.m126_c01335{transform:matrix(0.107025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107025,0.000000,0.000000,0.250000,0,0);}
.m56_c01335{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m18d_c01335{transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110400,0.000000,0.000000,0.250000,0,0);}
.m10c_c01335{transform:matrix(0.110925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110925,0.000000,0.000000,0.250000,0,0);}
.m1_c01335{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m14d_c01335{transform:matrix(0.112875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112875,0.000000,0.000000,0.250000,0,0);}
.m13b_c01335{transform:matrix(0.118200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118200,0.000000,0.000000,0.250000,0,0);}
.m10a_c01335{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.m57_c01335{transform:matrix(0.119200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119200,0.000000,0.000000,0.250000,0,0);}
.m55_c01335{transform:matrix(0.119650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119650,0.000000,0.000000,0.250000,0,0);}
.m1b_c01335{transform:matrix(0.120700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120700,0.000000,0.000000,0.250000,0,0);}
.m195_c01335{transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121875,0.000000,0.000000,0.250000,0,0);}
.m90_c01335{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);}
.m6_c01335{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m17d_c01335{transform:matrix(0.130825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130825,0.000000,0.000000,0.250000,0,0);}
.m10e_c01335{transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);}
.m185_c01335{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);}
.m15_c01335{transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135575,0.000000,0.000000,0.250000,0,0);}
.m154_c01335{transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136625,0.000000,0.000000,0.250000,0,0);}
.m196_c01335{transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137275,0.000000,0.000000,0.250000,0,0);}
.m10d_c01335{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m109_c01335{transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142500,0.000000,0.000000,0.250000,0,0);}
.m40_c01335{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m0_c01335{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf4_c01335{transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145650,0.000000,0.000000,0.250000,0,0);}
.m150_c01335{transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);}
.m17b_c01335{transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);}
.m155_c01335{transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);}
.m171_c01335{transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);}
.m16d_c01335{transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148775,0.000000,0.000000,0.250000,0,0);}
.m198_c01335{transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149150,0.000000,0.000000,0.250000,0,0);}
.m10b_c01335{transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149275,0.000000,0.000000,0.250000,0,0);}
.m5_c01335{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);}
.m58_c01335{transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150075,0.000000,0.000000,0.250000,0,0);}
.m36_c01335{transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150875,0.000000,0.000000,0.250000,0,0);}
.mb4_c01335{transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151125,0.000000,0.000000,0.250000,0,0);}
.m152_c01335{transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01335{transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);}
.mb1_c01335{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m7e_c01335{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);}
.m5a_c01335{transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154075,0.000000,0.000000,0.250000,0,0);}
.m129_c01335{transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154275,0.000000,0.000000,0.250000,0,0);}
.me5_c01335{transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155875,0.000000,0.000000,0.250000,0,0);}
.m190_c01335{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);}
.m15c_c01335{transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156275,0.000000,0.000000,0.250000,0,0);}
.m18a_c01335{transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157325,0.000000,0.000000,0.250000,0,0);}
.m19a_c01335{transform:matrix(0.157600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157600,0.000000,0.000000,0.250000,0,0);}
.ma9_c01335{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m199_c01335{transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158325,0.000000,0.000000,0.250000,0,0);}
.m51_c01335{transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158675,0.000000,0.000000,0.250000,0,0);}
.ma2_c01335{transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160250,0.000000,0.000000,0.250000,0,0);}
.m13e_c01335{transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160400,0.000000,0.000000,0.250000,0,0);}
.m151_c01335{transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160500,0.000000,0.000000,0.250000,0,0);}
.m164_c01335{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.m176_c01335{transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161250,0.000000,0.000000,0.250000,0,0);}
.m177_c01335{transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);}
.m70_c01335{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.m8e_c01335{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);}
.m141_c01335{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m6a_c01335{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.m182_c01335{transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165625,0.000000,0.000000,0.250000,0,0);}
.m1d_c01335{transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166775,0.000000,0.000000,0.250000,0,0);}
.me3_c01335{transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167475,0.000000,0.000000,0.250000,0,0);}
.m1a_c01335{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.m81_c01335{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);}
.m172_c01335{transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168350,0.000000,0.000000,0.250000,0,0);}
.m183_c01335{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.m169_c01335{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);}
.m12c_c01335{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);}
.m181_c01335{transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169750,0.000000,0.000000,0.250000,0,0);}
.m122_c01335{transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170100,0.000000,0.000000,0.250000,0,0);}
.m18e_c01335{transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170125,0.000000,0.000000,0.250000,0,0);}
.me2_c01335{transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170525,0.000000,0.000000,0.250000,0,0);}
.m1a2_c01335{transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171250,0.000000,0.000000,0.250000,0,0);}
.me0_c01335{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m15b_c01335{transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172450,0.000000,0.000000,0.250000,0,0);}
.ma_c01335{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m13c_c01335{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);}
.m163_c01335{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.m167_c01335{transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173925,0.000000,0.000000,0.250000,0,0);}
.m12d_c01335{transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174950,0.000000,0.000000,0.250000,0,0);}
.m8b_c01335{transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175275,0.000000,0.000000,0.250000,0,0);}
.m179_c01335{transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175325,0.000000,0.000000,0.250000,0,0);}
.m116_c01335{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);}
.m63_c01335{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.m18c_c01335{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m88_c01335{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m174_c01335{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m7d_c01335{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);}
.m4b_c01335{transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);}
.m14a_c01335{transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179425,0.000000,0.000000,0.250000,0,0);}
.md7_c01335{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m113_c01335{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m115_c01335{transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180550,0.000000,0.000000,0.250000,0,0);}
.m153_c01335{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);}
.m140_c01335{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.m165_c01335{transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180825,0.000000,0.000000,0.250000,0,0);}
.m17c_c01335{transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181000,0.000000,0.000000,0.250000,0,0);}
.m14e_c01335{transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);}
.m100_c01335{transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181425,0.000000,0.000000,0.250000,0,0);}
.m9a_c01335{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);}
.mbc_c01335{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.m16a_c01335{transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);}
.m184_c01335{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m92_c01335{transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);}
.m68_c01335{transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183275,0.000000,0.000000,0.250000,0,0);}
.mc8_c01335{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m23_c01335{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m15f_c01335{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.m173_c01335{transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);}
.mcb_c01335{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.m11b_c01335{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m8a_c01335{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);}
.m15a_c01335{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.m17e_c01335{transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);}
.m5d_c01335{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m157_c01335{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);}
.m18f_c01335{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.md1_c01335{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);}
.m124_c01335{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);}
.m12b_c01335{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m97_c01335{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);}
.m11f_c01335{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);}
.m162_c01335{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);}
.m37_c01335{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.m144_c01335{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);}
.m5c_c01335{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m178_c01335{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);}
.m127_c01335{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.mfe_c01335{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.m118_c01335{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);}
.mf_c01335{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);}
.ma0_c01335{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);}
.m12a_c01335{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);}
.m16e_c01335{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_c01335{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);}
.mb7_c01335{transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);}
.m14f_c01335{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.ma4_c01335{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m102_c01335{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);}
.m161_c01335{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);}
.m166_c01335{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.m99_c01335{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);}
.mbe_c01335{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m3a_c01335{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);}
.m59_c01335{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);}
.m114_c01335{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m54_c01335{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.m148_c01335{transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199475,0.000000,0.000000,0.250000,0,0);}
.m128_c01335{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m149_c01335{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);}
.mca_c01335{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.mfc_c01335{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m34_c01335{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);}
.m13f_c01335{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01335{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.mb3_c01335{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);}
.m19d_c01335{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);}
.m9e_c01335{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.m5b_c01335{transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);}
.m123_c01335{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);}
.m131_c01335{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m147_c01335{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);}
.m11e_c01335{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);}
.m134_c01335{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);}
.m159_c01335{transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203800,0.000000,0.000000,0.250000,0,0);}
.mdd_c01335{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m14_c01335{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);}
.ma6_c01335{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.mcc_c01335{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m6e_c01335{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.m12f_c01335{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m158_c01335{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);}
.m74_c01335{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.m104_c01335{transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);}
.mad_c01335{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m194_c01335{transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);}
.m8d_c01335{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m119_c01335{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);}
.m18b_c01335{transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);}
.mf6_c01335{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m16b_c01335{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m130_c01335{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m110_c01335{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);}
.m143_c01335{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m98_c01335{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);}
.m106_c01335{transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);}
.m107_c01335{transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211275,0.000000,0.000000,0.250000,0,0);}
.m192_c01335{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.mfb_c01335{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m13a_c01335{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m142_c01335{transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01335{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.m61_c01335{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.mc3_c01335{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);}
.m14c_c01335{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);}
.mdf_c01335{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.m50_c01335{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);}
.m2_c01335{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);}
.m20_c01335{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.m9d_c01335{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);}
.m137_c01335{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);}
.m89_c01335{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.m65_c01335{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);}
.m7b_c01335{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m180_c01335{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m136_c01335{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.mb9_c01335{transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218000,0.000000,0.000000,0.250000,0,0);}
.mfd_c01335{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.me1_c01335{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m96_c01335{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m7a_c01335{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.mb5_c01335{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);}
.m15e_c01335{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);}
.m53_c01335{transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220275,0.000000,0.000000,0.250000,0,0);}
.m120_c01335{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.mce_c01335{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.mf5_c01335{transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220550,0.000000,0.000000,0.250000,0,0);}
.mb0_c01335{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);}
.mc_c01335{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);}
.m1a5_c01335{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m15d_c01335{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);}
.m168_c01335{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);}
.m45_c01335{transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222075,0.000000,0.000000,0.250000,0,0);}
.m188_c01335{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m12e_c01335{transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222875,0.000000,0.000000,0.250000,0,0);}
.m5f_c01335{transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223575,0.000000,0.000000,0.250000,0,0);}
.m16f_c01335{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);}
.med_c01335{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3b_c01335{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);}
.mbd_c01335{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);}
.mfa_c01335{transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);}
.m111_c01335{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);}
.mf8_c01335{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);}
.m80_c01335{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m11c_c01335{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m4e_c01335{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.m73_c01335{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);}
.m6b_c01335{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.ma1_c01335{transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);}
.m187_c01335{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m112_c01335{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);}
.m191_c01335{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);}
.me4_c01335{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);}
.meb_c01335{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);}
.m82_c01335{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.m1e_c01335{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);}
.m19_c01335{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.mcf_c01335{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.m132_c01335{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);}
.m95_c01335{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m87_c01335{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);}
.m76_c01335{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);}
.mf0_c01335{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.m17f_c01335{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m29_c01335{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.m71_c01335{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);}
.mc2_c01335{transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);}
.mc6_c01335{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);}
.m49_c01335{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.me7_c01335{transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);}
.m160_c01335{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m19e_c01335{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.m91_c01335{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m133_c01335{transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);}
.maf_c01335{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.mee_c01335{transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);}
.m5e_c01335{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);}
.m21_c01335{transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);}
.m9b_c01335{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);}
.mc9_c01335{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);}
.mf1_c01335{transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);}
.m2f_c01335{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);}
.m16c_c01335{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.md8_c01335{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);}
.mec_c01335{transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);}
.m19f_c01335{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);}
.m94_c01335{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);}
.m13d_c01335{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);}
.m19b_c01335{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);}
.m31_c01335{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);}
.m66_c01335{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.mb2_c01335{transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243350,0.000000,0.000000,0.250000,0,0);}
.me8_c01335{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);}
.m18_c01335{transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);}
.m108_c01335{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);}
.m186_c01335{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.mf2_c01335{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);}
.m72_c01335{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);}
.m85_c01335{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);}
.m105_c01335{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);}
.m17a_c01335{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.ma3_c01335{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m69_c01335{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);}
.m6c_c01335{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);}
.mef_c01335{transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245775,0.000000,0.000000,0.250000,0,0);}
.m11a_c01335{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.mc4_c01335{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m125_c01335{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);}
.mba_c01335{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m170_c01335{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m139_c01335{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m135_c01335{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);}
.mac_c01335{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);}
.ma8_c01335{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);}
.m156_c01335{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m48_c01335{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);}
.m2c_c01335{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);}
.mae_c01335{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);}
.m47_c01335{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);}
.m6d_c01335{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m22_c01335{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01335{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mbb_c01335{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);}
.mde_c01335{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m103_c01335{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);}
.me_c01335{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);}
.m43_c01335{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m93_c01335{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);}
.m4_c01335{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m67_c01335{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01335{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);}
.m44_c01335{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mab_c01335{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);}
.m25_c01335{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);}
.m1c_c01335{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01335{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01335{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);}
.m2a_c01335{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01335{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c01335{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);}
.m10_c01335{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb8_c01335{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01335{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m13_c01335{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m16_c01335{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m35_c01335{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01335{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m39_c01335{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m26_c01335{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);}
.m42_c01335{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01335{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m28_c01335{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m11_c01335{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01335{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);}
.m2b_c01335{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);}
.mb_c01335{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01335{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c01335{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);}
.m30_c01335{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8f_c01335{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01335{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m64_c01335{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mbf_c01335{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m9_c01335{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);}
.m75_c01335{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m52_c01335{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);}
.m38_c01335{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m79_c01335{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m77_c01335{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);}
.m78_c01335{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.maa_c01335{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m86_c01335{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m11d_c01335{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.md6_c01335{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);}
.m84_c01335{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);}
.mda_c01335{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01335{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);}
.m32_c01335{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01335{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);}
.m101_c01335{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m24_c01335{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m83_c01335{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mff_c01335{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m14b_c01335{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mdb_c01335{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01335{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m27_c01335{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);}
.ma7_c01335{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mdc_c01335{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.md_c01335{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.me6_c01335{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.mf9_c01335{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01335{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.md0_c01335{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m33_c01335{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m138_c01335{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);}
.m4f_c01335{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m41_c01335{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.md9_c01335{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m46_c01335{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m189_c01335{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);}
.m9c_c01335{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m60_c01335{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mc0_c01335{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);}
.m62_c01335{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mea_c01335{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.ma5_c01335{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m121_c01335{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m17_c01335{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mc1_c01335{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.mf7_c01335{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.md3_c01335{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);}
.m1a0_c01335{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m146_c01335{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.mc5_c01335{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.md2_c01335{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc7_c01335{transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.755000,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01335{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.me9_c01335{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.mcd_c01335{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.mf3_c01335{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.md4_c01335{transform:matrix(1.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.327500,0.000000,0.000000,0.250000,0,0);}
.md5_c01335{transform:matrix(3.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.175000,0.000000,0.000000,0.250000,0,0);}
.m8_c01335{transform:matrix(4.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.607500,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01335{transform:matrix(5.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.405000,0.000000,0.000000,0.250000,0,0);}
.v0_c01335{vertical-align:0.000000px;}
.v1_c01335{vertical-align:6.900000px;}
.ls1_c01335{letter-spacing:0.000000px;}
.ls0_c01335{letter-spacing:20.190840px;}
.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:-8.668200px;}
.ws1_c01335{word-spacing:0.000000px;}
.fc0_c01335{color:transparent;}
.fs7_c01335{font-size:3.456000px;}
.fs1c_c01335{font-size:6.000000px;}
.fs4_c01335{font-size:6.900000px;}
.fs1d_c01335{font-size:10.380000px;}
.fs8_c01335{font-size:13.800000px;}
.fs0_c01335{font-size:17.280000px;}
.fs6_c01335{font-size:20.760000px;}
.fs2_c01335{font-size:24.180000px;}
.fs1_c01335{font-size:27.660000px;}
.fs19_c01335{font-size:31.080000px;}
.fs5_c01335{font-size:34.560000px;}
.fs17_c01335{font-size:38.040000px;}
.fs15_c01335{font-size:41.460000px;}
.fs3_c01335{font-size:44.940000px;}
.fs18_c01335{font-size:48.360000px;}
.fs11_c01335{font-size:51.840000px;}
.fsf_c01335{font-size:55.320000px;}
.fs16_c01335{font-size:58.740000px;}
.fsa_c01335{font-size:62.220000px;}
.fs9_c01335{font-size:65.640000px;}
.fse_c01335{font-size:69.120000px;}
.fs12_c01335{font-size:72.600000px;}
.fsd_c01335{font-size:76.020000px;}
.fs14_c01335{font-size:79.500000px;}
.fsc_c01335{font-size:82.920000px;}
.fs1b_c01335{font-size:86.400000px;}
.fsb_c01335{font-size:89.880000px;}
.fs1e_c01335{font-size:93.300000px;}
.fs10_c01335{font-size:96.780000px;}
.fs13_c01335{font-size:100.200000px;}
.fs1a_c01335{font-size:103.680000px;}
.fs1f_c01335{font-size:107.160000px;}
.y0_c01335{bottom:0.000000px;}
.y1ff_c01335{bottom:178.845000px;}
.y200_c01335{bottom:180.570000px;}
.y1fa_c01335{bottom:184.890000px;}
.y1fc_c01335{bottom:186.630000px;}
.y1fd_c01335{bottom:189.210000px;}
.y1fb_c01335{bottom:190.080000px;}
.y1fe_c01335{bottom:191.805000px;}
.y1f5_c01335{bottom:192.675000px;}
.y1f8_c01335{bottom:193.530000px;}
.y1f9_c01335{bottom:194.400000px;}
.y1f7_c01335{bottom:198.720000px;}
.y1f6_c01335{bottom:201.315000px;}
.y1ea_c01335{bottom:210.810000px;}
.y1eb_c01335{bottom:211.680000px;}
.y1ef_c01335{bottom:212.550000px;}
.y1ee_c01335{bottom:215.130000px;}
.y1ec_c01335{bottom:216.000000px;}
.y1f3_c01335{bottom:219.450000px;}
.y1f1_c01335{bottom:220.320000px;}
.y1ed_c01335{bottom:221.190000px;}
.y1f0_c01335{bottom:222.915000px;}
.y1f4_c01335{bottom:225.510000px;}
.y1f2_c01335{bottom:228.090000px;}
.y1e2_c01335{bottom:232.410000px;}
.y1e3_c01335{bottom:234.150000px;}
.y1e4_c01335{bottom:235.005000px;}
.y1e7_c01335{bottom:235.875000px;}
.y1e5_c01335{bottom:236.730000px;}
.y1e8_c01335{bottom:240.195000px;}
.y1e6_c01335{bottom:241.050000px;}
.y1e9_c01335{bottom:241.920000px;}
.y1dc_c01335{bottom:255.750000px;}
.y1e0_c01335{bottom:256.605000px;}
.y1db_c01335{bottom:258.330000px;}
.y1e1_c01335{bottom:259.200000px;}
.y1dd_c01335{bottom:260.070000px;}
.y1de_c01335{bottom:261.795000px;}
.y1df_c01335{bottom:262.650000px;}
.y1d3_c01335{bottom:274.755000px;}
.y1d6_c01335{bottom:275.610000px;}
.y1d8_c01335{bottom:277.350000px;}
.y1d2_c01335{bottom:278.205000px;}
.y1d1_c01335{bottom:279.075000px;}
.y1d5_c01335{bottom:279.930000px;}
.y1d4_c01335{bottom:280.800000px;}
.y1d9_c01335{bottom:281.670000px;}
.y1d7_c01335{bottom:286.845000px;}
.y1da_c01335{bottom:293.760000px;}
.y1c8_c01335{bottom:294.630000px;}
.y1c9_c01335{bottom:295.485000px;}
.y1cb_c01335{bottom:297.210000px;}
.y1cf_c01335{bottom:298.080000px;}
.y1d0_c01335{bottom:298.950000px;}
.y1ca_c01335{bottom:299.805000px;}
.y1cc_c01335{bottom:300.675000px;}
.y1ce_c01335{bottom:301.530000px;}
.y1cd_c01335{bottom:302.400000px;}
.y1bf_c01335{bottom:315.360000px;}
.y1c4_c01335{bottom:317.085000px;}
.y1c2_c01335{bottom:317.955000px;}
.y1c6_c01335{bottom:318.810000px;}
.y1c3_c01335{bottom:319.680000px;}
.y1c0_c01335{bottom:320.550000px;}
.y1c5_c01335{bottom:321.405000px;}
.y1c1_c01335{bottom:322.275000px;}
.y1c7_c01335{bottom:323.130000px;}
.y1ba_c01335{bottom:336.090000px;}
.y1b9_c01335{bottom:336.960000px;}
.y1bd_c01335{bottom:339.555000px;}
.y1bb_c01335{bottom:342.150000px;}
.y1bc_c01335{bottom:343.005000px;}
.y1be_c01335{bottom:343.875000px;}
.y1b2_c01335{bottom:355.965000px;}
.y1b6_c01335{bottom:356.835000px;}
.y1b1_c01335{bottom:357.690000px;}
.y1b7_c01335{bottom:358.560000px;}
.y1b4_c01335{bottom:360.285000px;}
.y1b3_c01335{bottom:362.010000px;}
.y1b5_c01335{bottom:362.880000px;}
.y1b8_c01335{bottom:365.475000px;}
.y1a9_c01335{bottom:375.840000px;}
.y1ab_c01335{bottom:377.565000px;}
.y1af_c01335{bottom:378.435000px;}
.y1ad_c01335{bottom:379.290000px;}
.y1ae_c01335{bottom:380.160000px;}
.y1aa_c01335{bottom:381.885000px;}
.y1ac_c01335{bottom:383.610000px;}
.y1b0_c01335{bottom:385.350000px;}
.y1a1_c01335{bottom:395.715000px;}
.y1a4_c01335{bottom:397.440000px;}
.y1a2_c01335{bottom:398.310000px;}
.y1a7_c01335{bottom:399.165000px;}
.y1a5_c01335{bottom:401.760000px;}
.y1a6_c01335{bottom:402.630000px;}
.y1a3_c01335{bottom:404.355000px;}
.y1a8_c01335{bottom:406.950000px;}
.y1a0_c01335{bottom:412.125000px;}
.y197_c01335{bottom:414.720000px;}
.y196_c01335{bottom:417.315000px;}
.y19b_c01335{bottom:418.170000px;}
.y198_c01335{bottom:419.040000px;}
.y199_c01335{bottom:423.360000px;}
.y19a_c01335{bottom:424.230000px;}
.y19d_c01335{bottom:425.955000px;}
.y19c_c01335{bottom:427.680000px;}
.y19e_c01335{bottom:430.275000px;}
.y190_c01335{bottom:435.450000px;}
.y18f_c01335{bottom:436.320000px;}
.y19f_c01335{bottom:438.045000px;}
.y194_c01335{bottom:439.770000px;}
.y193_c01335{bottom:440.640000px;}
.y192_c01335{bottom:443.235000px;}
.y191_c01335{bottom:444.090000px;}
.y195_c01335{bottom:444.960000px;}
.y18a_c01335{bottom:458.790000px;}
.y189_c01335{bottom:459.645000px;}
.y18b_c01335{bottom:460.515000px;}
.y188_c01335{bottom:462.240000px;}
.y18d_c01335{bottom:463.110000px;}
.y18c_c01335{bottom:463.965000px;}
.y18e_c01335{bottom:465.690000px;}
.y17e_c01335{bottom:474.330000px;}
.y182_c01335{bottom:475.200000px;}
.y184_c01335{bottom:478.650000px;}
.y180_c01335{bottom:479.520000px;}
.y183_c01335{bottom:480.390000px;}
.y185_c01335{bottom:481.245000px;}
.y186_c01335{bottom:482.970000px;}
.y17f_c01335{bottom:483.840000px;}
.y181_c01335{bottom:484.710000px;}
.y187_c01335{bottom:487.290000px;}
.y17a_c01335{bottom:498.525000px;}
.y17d_c01335{bottom:500.250000px;}
.y17c_c01335{bottom:501.990000px;}
.y179_c01335{bottom:503.715000px;}
.y17b_c01335{bottom:504.570000px;}
.y173_c01335{bottom:517.530000px;}
.y174_c01335{bottom:518.400000px;}
.y178_c01335{bottom:519.270000px;}
.y177_c01335{bottom:520.995000px;}
.y175_c01335{bottom:522.720000px;}
.y176_c01335{bottom:527.040000px;}
.y16c_c01335{bottom:535.680000px;}
.y16e_c01335{bottom:538.275000px;}
.y16f_c01335{bottom:539.130000px;}
.y171_c01335{bottom:540.870000px;}
.y16d_c01335{bottom:543.450000px;}
.y170_c01335{bottom:545.190000px;}
.y172_c01335{bottom:547.770000px;}
.y165_c01335{bottom:558.150000px;}
.y169_c01335{bottom:559.005000px;}
.y166_c01335{bottom:559.875000px;}
.y16b_c01335{bottom:560.730000px;}
.y168_c01335{bottom:562.470000px;}
.y167_c01335{bottom:563.325000px;}
.y16a_c01335{bottom:565.050000px;}
.y15f_c01335{bottom:578.010000px;}
.y15d_c01335{bottom:578.880000px;}
.y163_c01335{bottom:579.750000px;}
.y15c_c01335{bottom:580.605000px;}
.y162_c01335{bottom:582.330000px;}
.y164_c01335{bottom:583.200000px;}
.y15e_c01335{bottom:584.070000px;}
.y160_c01335{bottom:584.925000px;}
.y161_c01335{bottom:585.795000px;}
.y157_c01335{bottom:600.480000px;}
.y15b_c01335{bottom:601.350000px;}
.y155_c01335{bottom:603.075000px;}
.y154_c01335{bottom:603.930000px;}
.y15a_c01335{bottom:604.800000px;}
.y156_c01335{bottom:605.670000px;}
.y158_c01335{bottom:606.525000px;}
.y159_c01335{bottom:607.395000px;}
.y153_c01335{bottom:609.120000px;}
.y14b_c01335{bottom:619.485000px;}
.y14a_c01335{bottom:620.355000px;}
.y14f_c01335{bottom:621.210000px;}
.y150_c01335{bottom:622.080000px;}
.y152_c01335{bottom:623.805000px;}
.y14c_c01335{bottom:624.675000px;}
.y14d_c01335{bottom:625.530000px;}
.y14e_c01335{bottom:626.400000px;}
.y151_c01335{bottom:628.125000px;}
.y146_c01335{bottom:635.040000px;}
.y144_c01335{bottom:636.765000px;}
.y148_c01335{bottom:637.635000px;}
.y141_c01335{bottom:638.490000px;}
.y149_c01335{bottom:639.360000px;}
.y143_c01335{bottom:642.810000px;}
.y142_c01335{bottom:644.550000px;}
.y147_c01335{bottom:645.405000px;}
.y145_c01335{bottom:654.915000px;}
.y13b_c01335{bottom:659.235000px;}
.y13d_c01335{bottom:660.960000px;}
.y13a_c01335{bottom:661.830000px;}
.y139_c01335{bottom:663.555000px;}
.y13c_c01335{bottom:664.410000px;}
.y13f_c01335{bottom:666.150000px;}
.y13e_c01335{bottom:667.005000px;}
.y140_c01335{bottom:668.730000px;}
.y134_c01335{bottom:679.110000px;}
.y136_c01335{bottom:682.560000px;}
.y138_c01335{bottom:684.285000px;}
.y135_c01335{bottom:686.010000px;}
.y137_c01335{bottom:688.605000px;}
.y131_c01335{bottom:700.710000px;}
.y130_c01335{bottom:704.160000px;}
.y132_c01335{bottom:706.755000px;}
.y133_c01335{bottom:707.610000px;}
.y12d_c01335{bottom:720.570000px;}
.y12e_c01335{bottom:722.310000px;}
.y12a_c01335{bottom:723.165000px;}
.y12b_c01335{bottom:724.035000px;}
.y12c_c01335{bottom:724.890000px;}
.y12f_c01335{bottom:727.485000px;}
.y124_c01335{bottom:741.315000px;}
.y122_c01335{bottom:743.040000px;}
.y127_c01335{bottom:744.765000px;}
.y123_c01335{bottom:746.490000px;}
.y126_c01335{bottom:748.230000px;}
.y128_c01335{bottom:749.085000px;}
.y129_c01335{bottom:751.680000px;}
.y125_c01335{bottom:754.275000px;}
.y11c_c01335{bottom:761.190000px;}
.y119_c01335{bottom:762.915000px;}
.y11f_c01335{bottom:763.770000px;}
.y121_c01335{bottom:764.640000px;}
.y11a_c01335{bottom:765.510000px;}
.y11b_c01335{bottom:766.365000px;}
.y11d_c01335{bottom:768.090000px;}
.y11e_c01335{bottom:768.960000px;}
.y120_c01335{bottom:769.830000px;}
.y115_c01335{bottom:782.790000px;}
.y113_c01335{bottom:783.645000px;}
.y118_c01335{bottom:784.515000px;}
.y112_c01335{bottom:785.370000px;}
.y114_c01335{bottom:787.965000px;}
.y116_c01335{bottom:788.835000px;}
.y117_c01335{bottom:798.330000px;}
.y108_c01335{bottom:800.070000px;}
.y109_c01335{bottom:800.925000px;}
.y10a_c01335{bottom:802.650000px;}
.y10e_c01335{bottom:803.520000px;}
.y10b_c01335{bottom:805.245000px;}
.y10f_c01335{bottom:806.115000px;}
.y10c_c01335{bottom:807.840000px;}
.y10d_c01335{bottom:808.710000px;}
.y111_c01335{bottom:809.565000px;}
.y110_c01335{bottom:810.435000px;}
.y106_c01335{bottom:823.395000px;}
.y104_c01335{bottom:824.250000px;}
.y102_c01335{bottom:825.120000px;}
.y103_c01335{bottom:825.990000px;}
.y105_c01335{bottom:828.570000px;}
.y107_c01335{bottom:830.310000px;}
.yfd_c01335{bottom:840.675000px;}
.yfe_c01335{bottom:841.530000px;}
.y100_c01335{bottom:844.125000px;}
.yfb_c01335{bottom:845.850000px;}
.yfc_c01335{bottom:846.720000px;}
.yff_c01335{bottom:849.315000px;}
.y101_c01335{bottom:850.170000px;}
.yf6_c01335{bottom:862.275000px;}
.yf7_c01335{bottom:864.000000px;}
.yf5_c01335{bottom:864.870000px;}
.yed_c01335{bottom:865.725000px;}
.yee_c01335{bottom:866.595000px;}
.yef_c01335{bottom:867.450000px;}
.yf8_c01335{bottom:868.320000px;}
.yf0_c01335{bottom:869.190000px;}
.yf9_c01335{bottom:870.045000px;}
.yfa_c01335{bottom:870.915000px;}
.yf1_c01335{bottom:877.830000px;}
.yf3_c01335{bottom:878.685000px;}
.ye0_c01335{bottom:880.410000px;}
.yf2_c01335{bottom:881.280000px;}
.yf4_c01335{bottom:882.150000px;}
.ye5_c01335{bottom:884.730000px;}
.ye1_c01335{bottom:886.470000px;}
.ye2_c01335{bottom:887.325000px;}
.ye3_c01335{bottom:888.195000px;}
.ye8_c01335{bottom:890.790000px;}
.ye7_c01335{bottom:891.645000px;}
.yec_c01335{bottom:892.515000px;}
.ye4_c01335{bottom:893.370000px;}
.yea_c01335{bottom:895.965000px;}
.yeb_c01335{bottom:896.835000px;}
.ye6_c01335{bottom:897.690000px;}
.yd7_c01335{bottom:901.155000px;}
.ye9_c01335{bottom:902.010000px;}
.yd9_c01335{bottom:903.750000px;}
.ydb_c01335{bottom:904.605000px;}
.yde_c01335{bottom:905.475000px;}
.ydf_c01335{bottom:906.330000px;}
.yd8_c01335{bottom:907.200000px;}
.yda_c01335{bottom:908.925000px;}
.ydc_c01335{bottom:909.795000px;}
.ydd_c01335{bottom:911.520000px;}
.yd3_c01335{bottom:924.480000px;}
.yd2_c01335{bottom:927.075000px;}
.yd4_c01335{bottom:928.800000px;}
.yd5_c01335{bottom:929.670000px;}
.yd6_c01335{bottom:930.525000px;}
.yc9_c01335{bottom:941.760000px;}
.ycb_c01335{bottom:943.485000px;}
.yc8_c01335{bottom:944.355000px;}
.yce_c01335{bottom:945.210000px;}
.yd0_c01335{bottom:946.080000px;}
.yca_c01335{bottom:946.950000px;}
.yd1_c01335{bottom:947.805000px;}
.ycc_c01335{bottom:948.675000px;}
.ycd_c01335{bottom:949.530000px;}
.ycf_c01335{bottom:950.400000px;}
.yc0_c01335{bottom:960.765000px;}
.yc1_c01335{bottom:961.635000px;}
.yc2_c01335{bottom:963.360000px;}
.yc3_c01335{bottom:964.230000px;}
.ybf_c01335{bottom:965.955000px;}
.yc7_c01335{bottom:967.680000px;}
.yc5_c01335{bottom:971.130000px;}
.yc6_c01335{bottom:972.000000px;}
.yc4_c01335{bottom:981.510000px;}
.yba_c01335{bottom:984.090000px;}
.ybe_c01335{bottom:984.960000px;}
.yb8_c01335{bottom:985.830000px;}
.yb9_c01335{bottom:986.685000px;}
.ybd_c01335{bottom:987.555000px;}
.ybb_c01335{bottom:988.410000px;}
.ybc_c01335{bottom:989.280000px;}
.yae_c01335{bottom:1003.110000px;}
.yaf_c01335{bottom:1003.965000px;}
.yb5_c01335{bottom:1004.835000px;}
.yb1_c01335{bottom:1005.690000px;}
.yac_c01335{bottom:1006.560000px;}
.yad_c01335{bottom:1007.430000px;}
.yb4_c01335{bottom:1008.285000px;}
.yb3_c01335{bottom:1009.155000px;}
.yb0_c01335{bottom:1010.010000px;}
.yb2_c01335{bottom:1010.880000px;}
.yb7_c01335{bottom:1012.605000px;}
.yb6_c01335{bottom:1013.475000px;}
.ya5_c01335{bottom:1021.245000px;}
.ya9_c01335{bottom:1023.840000px;}
.ya8_c01335{bottom:1024.710000px;}
.yaa_c01335{bottom:1026.435000px;}
.ya6_c01335{bottom:1027.290000px;}
.ya7_c01335{bottom:1028.160000px;}
.yab_c01335{bottom:1029.030000px;}
.y9c_c01335{bottom:1041.990000px;}
.y9e_c01335{bottom:1043.715000px;}
.ya0_c01335{bottom:1045.440000px;}
.ya2_c01335{bottom:1046.310000px;}
.ya3_c01335{bottom:1047.165000px;}
.y9d_c01335{bottom:1048.890000px;}
.y9f_c01335{bottom:1049.760000px;}
.ya1_c01335{bottom:1050.630000px;}
.ya4_c01335{bottom:1054.080000px;}
.y93_c01335{bottom:1061.850000px;}
.y94_c01335{bottom:1065.315000px;}
.y97_c01335{bottom:1066.170000px;}
.y98_c01335{bottom:1067.040000px;}
.y9a_c01335{bottom:1067.910000px;}
.y95_c01335{bottom:1068.765000px;}
.y96_c01335{bottom:1069.635000px;}
.y99_c01335{bottom:1072.230000px;}
.y9b_c01335{bottom:1073.955000px;}
.y89_c01335{bottom:1083.450000px;}
.y8c_c01335{bottom:1085.190000px;}
.y8e_c01335{bottom:1086.045000px;}
.y88_c01335{bottom:1086.915000px;}
.y8a_c01335{bottom:1087.770000px;}
.y91_c01335{bottom:1088.640000px;}
.y8b_c01335{bottom:1089.510000px;}
.y8f_c01335{bottom:1090.365000px;}
.y8d_c01335{bottom:1091.235000px;}
.y90_c01335{bottom:1092.090000px;}
.y92_c01335{bottom:1094.685000px;}
.y81_c01335{bottom:1103.325000px;}
.y80_c01335{bottom:1104.195000px;}
.y83_c01335{bottom:1105.050000px;}
.y7e_c01335{bottom:1106.790000px;}
.y7f_c01335{bottom:1107.645000px;}
.y87_c01335{bottom:1109.370000px;}
.y84_c01335{bottom:1110.240000px;}
.y82_c01335{bottom:1111.110000px;}
.y85_c01335{bottom:1112.835000px;}
.y86_c01335{bottom:1113.690000px;}
.y76_c01335{bottom:1124.070000px;}
.y78_c01335{bottom:1125.795000px;}
.y7a_c01335{bottom:1128.390000px;}
.y77_c01335{bottom:1130.970000px;}
.y79_c01335{bottom:1131.840000px;}
.y7b_c01335{bottom:1133.565000px;}
.y7c_c01335{bottom:1134.435000px;}
.y7d_c01335{bottom:1135.290000px;}
.y6f_c01335{bottom:1143.075000px;}
.y71_c01335{bottom:1146.525000px;}
.y6e_c01335{bottom:1147.395000px;}
.y70_c01335{bottom:1149.990000px;}
.y72_c01335{bottom:1150.845000px;}
.y73_c01335{bottom:1154.310000px;}
.y74_c01335{bottom:1155.165000px;}
.y75_c01335{bottom:1156.035000px;}
.y66_c01335{bottom:1163.805000px;}
.y68_c01335{bottom:1165.530000px;}
.y6c_c01335{bottom:1168.125000px;}
.y6a_c01335{bottom:1168.995000px;}
.y67_c01335{bottom:1169.850000px;}
.y6d_c01335{bottom:1170.720000px;}
.y69_c01335{bottom:1171.590000px;}
.y6b_c01335{bottom:1173.315000px;}
.y5e_c01335{bottom:1185.405000px;}
.y62_c01335{bottom:1186.275000px;}
.y60_c01335{bottom:1187.130000px;}
.y63_c01335{bottom:1188.870000px;}
.y5f_c01335{bottom:1189.725000px;}
.y61_c01335{bottom:1193.190000px;}
.y64_c01335{bottom:1194.045000px;}
.y65_c01335{bottom:1194.915000px;}
.y57_c01335{bottom:1207.875000px;}
.y55_c01335{bottom:1208.730000px;}
.y5b_c01335{bottom:1209.600000px;}
.y56_c01335{bottom:1210.470000px;}
.y58_c01335{bottom:1211.325000px;}
.y59_c01335{bottom:1212.195000px;}
.y5a_c01335{bottom:1213.050000px;}
.y5c_c01335{bottom:1215.645000px;}
.y5d_c01335{bottom:1218.240000px;}
.y50_c01335{bottom:1221.690000px;}
.y4c_c01335{bottom:1224.285000px;}
.y4e_c01335{bottom:1225.155000px;}
.y53_c01335{bottom:1226.880000px;}
.y52_c01335{bottom:1227.750000px;}
.y4d_c01335{bottom:1230.330000px;}
.y4f_c01335{bottom:1231.200000px;}
.y51_c01335{bottom:1232.070000px;}
.y54_c01335{bottom:1236.390000px;}
.y44_c01335{bottom:1245.030000px;}
.y4a_c01335{bottom:1249.350000px;}
.y45_c01335{bottom:1250.205000px;}
.y49_c01335{bottom:1251.075000px;}
.y46_c01335{bottom:1252.800000px;}
.y47_c01335{bottom:1253.670000px;}
.y48_c01335{bottom:1256.250000px;}
.y4b_c01335{bottom:1257.120000px;}
.y3d_c01335{bottom:1264.035000px;}
.y41_c01335{bottom:1270.080000px;}
.y3e_c01335{bottom:1270.950000px;}
.y43_c01335{bottom:1272.675000px;}
.y3f_c01335{bottom:1274.400000px;}
.y40_c01335{bottom:1275.270000px;}
.y42_c01335{bottom:1276.125000px;}
.y35_c01335{bottom:1284.765000px;}
.y36_c01335{bottom:1287.360000px;}
.y34_c01335{bottom:1289.085000px;}
.y3c_c01335{bottom:1290.810000px;}
.y39_c01335{bottom:1291.680000px;}
.y37_c01335{bottom:1292.550000px;}
.y38_c01335{bottom:1294.275000px;}
.y3a_c01335{bottom:1296.000000px;}
.y3b_c01335{bottom:1296.870000px;}
.y2c_c01335{bottom:1302.045000px;}
.y2e_c01335{bottom:1302.915000px;}
.y2f_c01335{bottom:1306.365000px;}
.y31_c01335{bottom:1307.235000px;}
.y2d_c01335{bottom:1310.685000px;}
.y30_c01335{bottom:1315.005000px;}
.y33_c01335{bottom:1315.875000px;}
.y32_c01335{bottom:1316.730000px;}
.y21_c01335{bottom:1326.240000px;}
.y24_c01335{bottom:1327.110000px;}
.y20_c01335{bottom:1329.690000px;}
.y23_c01335{bottom:1330.560000px;}
.y28_c01335{bottom:1331.430000px;}
.y22_c01335{bottom:1332.285000px;}
.y2a_c01335{bottom:1333.155000px;}
.y25_c01335{bottom:1334.010000px;}
.y26_c01335{bottom:1334.880000px;}
.y27_c01335{bottom:1336.605000px;}
.y29_c01335{bottom:1337.475000px;}
.y2b_c01335{bottom:1338.330000px;}
.y4_c01335{bottom:1340.925000px;}
.y1f_c01335{bottom:1343.520000px;}
.y18_c01335{bottom:1347.840000px;}
.y17_c01335{bottom:1348.710000px;}
.y1e_c01335{bottom:1349.565000px;}
.y15_c01335{bottom:1350.435000px;}
.y16_c01335{bottom:1351.290000px;}
.y3_c01335{bottom:1352.160000px;}
.y19_c01335{bottom:1353.885000px;}
.y1a_c01335{bottom:1354.755000px;}
.y1b_c01335{bottom:1355.610000px;}
.y1c_c01335{bottom:1356.480000px;}
.y1d_c01335{bottom:1358.205000px;}
.ye_c01335{bottom:1375.485000px;}
.yd_c01335{bottom:1378.950000px;}
.y14_c01335{bottom:1379.805000px;}
.yf_c01335{bottom:1380.675000px;}
.y10_c01335{bottom:1381.530000px;}
.y11_c01335{bottom:1383.270000px;}
.y12_c01335{bottom:1384.125000px;}
.y13_c01335{bottom:1384.995000px;}
.yb_c01335{bottom:1400.550000px;}
.yc_c01335{bottom:1404.870000px;}
.ya_c01335{bottom:1407.450000px;}
.y8_c01335{bottom:1411.770000px;}
.y9_c01335{bottom:1412.640000px;}
.y6_c01335{bottom:1413.510000px;}
.y5_c01335{bottom:1415.235000px;}
.y7_c01335{bottom:1417.830000px;}
.y2_c01335{bottom:1442.880000px;}
.y1_c01335{bottom:1454.970000px;}
.h9_c01335{height:3.110063px;}
.h1f_c01335{height:5.399414px;}
.h6_c01335{height:6.209326px;}
.h20_c01335{height:9.340986px;}
.ha_c01335{height:12.418652px;}
.h2_c01335{height:15.550313px;}
.h8_c01335{height:18.681973px;}
.h4_c01335{height:21.759639px;}
.h3_c01335{height:24.891299px;}
.h1c_c01335{height:27.968965px;}
.h7_c01335{height:31.100625px;}
.h19_c01335{height:34.232285px;}
.h17_c01335{height:37.309951px;}
.h5_c01335{height:40.441611px;}
.h1a_c01335{height:43.519277px;}
.h13_c01335{height:46.650937px;}
.h11_c01335{height:49.782598px;}
.h18_c01335{height:52.860264px;}
.hc_c01335{height:55.991924px;}
.h1b_c01335{height:56.682598px;}
.hb_c01335{height:59.069590px;}
.h10_c01335{height:62.201250px;}
.h14_c01335{height:65.332910px;}
.hf_c01335{height:68.410576px;}
.h16_c01335{height:71.542236px;}
.he_c01335{height:74.619902px;}
.h1e_c01335{height:77.751563px;}
.hd_c01335{height:80.883223px;}
.h21_c01335{height:83.960889px;}
.h12_c01335{height:87.092549px;}
.h15_c01335{height:90.170215px;}
.h1d_c01335{height:93.301875px;}
.h22_c01335{height:96.433535px;}
.h0_c01335{height:1509.405000px;}
.h1_c01335{height:1509.750000px;}
.w0_c01335{width:1079.130000px;}
.w1_c01335{width:1079.250000px;}
.x0_c01335{left:0.000000px;}
.x4_c01335{left:2.595000px;}
.x3_c01335{left:19.875000px;}
.xda_c01335{left:191.805000px;}
.xd6_c01335{left:212.550000px;}
.xe8_c01335{left:214.275000px;}
.xe9_c01335{left:219.450000px;}
.x44_c01335{left:221.190000px;}
.x25_c01335{left:222.915000px;}
.x16_c01335{left:227.235000px;}
.x7d_c01335{left:228.960000px;}
.x89_c01335{left:230.685000px;}
.x9d_c01335{left:232.410000px;}
.xd7_c01335{left:234.150000px;}
.xd9_c01335{left:235.875000px;}
.xf2_c01335{left:238.470000px;}
.x105_c01335{left:241.920000px;}
.x9e_c01335{left:243.645000px;}
.x2_c01335{left:245.370000px;}
.x116_c01335{left:247.110000px;}
.x1_c01335{left:248.835000px;}
.x26_c01335{left:255.750000px;}
.xa1_c01335{left:257.475000px;}
.xe_c01335{left:259.200000px;}
.x27_c01335{left:262.650000px;}
.x99_c01335{left:264.390000px;}
.x10a_c01335{left:266.970000px;}
.x28_c01335{left:270.435000px;}
.x100_c01335{left:272.160000px;}
.xec_c01335{left:274.755000px;}
.xea_c01335{left:276.480000px;}
.x17_c01335{left:278.205000px;}
.x6f_c01335{left:280.800000px;}
.xe3_c01335{left:282.525000px;}
.x6c_c01335{left:284.250000px;}
.x5_c01335{left:290.310000px;}
.x57_c01335{left:293.760000px;}
.xa6_c01335{left:296.355000px;}
.x39_c01335{left:298.080000px;}
.xf_c01335{left:299.805000px;}
.x6_c01335{left:302.400000px;}
.x61_c01335{left:304.125000px;}
.x18_c01335{left:305.850000px;}
.xce_c01335{left:307.590000px;}
.x45_c01335{left:310.170000px;}
.x77_c01335{left:314.490000px;}
.xa2_c01335{left:316.230000px;}
.x71_c01335{left:319.680000px;}
.x4d_c01335{left:323.130000px;}
.xc2_c01335{left:324.870000px;}
.x29_c01335{left:327.450000px;}
.x58_c01335{left:330.915000px;}
.xad_c01335{left:332.640000px;}
.xd2_c01335{left:334.365000px;}
.xeb_c01335{left:336.090000px;}
.x73_c01335{left:340.410000px;}
.x101_c01335{left:342.150000px;}
.x111_c01335{left:343.875000px;}
.x2a_c01335{left:345.600000px;}
.x19_c01335{left:349.920000px;}
.xbe_c01335{left:353.370000px;}
.xdb_c01335{left:355.965000px;}
.x78_c01335{left:357.690000px;}
.x1a_c01335{left:359.430000px;}
.x59_c01335{left:362.010000px;}
.x3a_c01335{left:364.605000px;}
.x2b_c01335{left:369.795000px;}
.xf3_c01335{left:373.245000px;}
.xdc_c01335{left:374.970000px;}
.xa7_c01335{left:377.565000px;}
.x62_c01335{left:379.290000px;}
.x83_c01335{left:381.885000px;}
.x90_c01335{left:383.610000px;}
.x63_c01335{left:387.075000px;}
.x10b_c01335{left:389.670000px;}
.x8_c01335{left:393.990000px;}
.x5a_c01335{left:395.715000px;}
.xed_c01335{left:399.165000px;}
.x10_c01335{left:400.890000px;}
.x4e_c01335{left:404.355000px;}
.x1b_c01335{left:406.950000px;}
.x79_c01335{left:409.530000px;}
.x3b_c01335{left:411.270000px;}
.x34_c01335{left:413.850000px;}
.xae_c01335{left:415.590000px;}
.x5b_c01335{left:419.040000px;}
.x64_c01335{left:421.635000px;}
.xe0_c01335{left:423.360000px;}
.x4f_c01335{left:425.085000px;}
.x7e_c01335{left:427.680000px;}
.x1c_c01335{left:430.275000px;}
.xf4_c01335{left:433.725000px;}
.xca_c01335{left:435.450000px;}
.x5c_c01335{left:437.190000px;}
.x9a_c01335{left:439.770000px;}
.x117_c01335{left:444.960000px;}
.x10e_c01335{left:446.685000px;}
.xe4_c01335{left:449.280000px;}
.xa8_c01335{left:451.005000px;}
.x46_c01335{left:452.730000px;}
.x3c_c01335{left:454.470000px;}
.x8a_c01335{left:456.195000px;}
.x1d_c01335{left:457.920000px;}
.x91_c01335{left:459.645000px;}
.xa9_c01335{left:461.370000px;}
.x11_c01335{left:463.110000px;}
.x65_c01335{left:464.835000px;}
.x84_c01335{left:466.560000px;}
.x2c_c01335{left:469.155000px;}
.x10d_c01335{left:470.880000px;}
.x1e_c01335{left:472.605000px;}
.xc5_c01335{left:474.330000px;}
.x107_c01335{left:478.650000px;}
.x50_c01335{left:481.245000px;}
.xf5_c01335{left:482.970000px;}
.xb7_c01335{left:484.710000px;}
.x66_c01335{left:486.435000px;}
.xd8_c01335{left:489.030000px;}
.x9_c01335{left:491.610000px;}
.x5d_c01335{left:494.205000px;}
.x2d_c01335{left:495.930000px;}
.xdd_c01335{left:497.670000px;}
.x35_c01335{left:499.395000px;}
.x7f_c01335{left:501.990000px;}
.x47_c01335{left:506.310000px;}
.xf0_c01335{left:508.035000px;}
.xb8_c01335{left:510.630000px;}
.xfa_c01335{left:512.355000px;}
.x92_c01335{left:514.080000px;}
.x1f_c01335{left:515.805000px;}
.xc3_c01335{left:518.400000px;}
.xba_c01335{left:520.995000px;}
.x10f_c01335{left:523.590000px;}
.x112_c01335{left:525.315000px;}
.x20_c01335{left:533.955000px;}
.x3d_c01335{left:537.405000px;}
.x8b_c01335{left:540.000000px;}
.xd3_c01335{left:543.450000px;}
.x93_c01335{left:545.190000px;}
.x108_c01335{left:547.770000px;}
.xcb_c01335{left:549.510000px;}
.x21_c01335{left:551.235000px;}
.x67_c01335{left:552.960000px;}
.x8c_c01335{left:554.685000px;}
.x9b_c01335{left:556.410000px;}
.xa5_c01335{left:558.150000px;}
.xc6_c01335{left:559.875000px;}
.xa_c01335{left:562.470000px;}
.xe1_c01335{left:564.195000px;}
.x7_c01335{left:566.790000px;}
.x2e_c01335{left:569.370000px;}
.x113_c01335{left:572.835000px;}
.x22_c01335{left:578.010000px;}
.x12_c01335{left:579.750000px;}
.xa3_c01335{left:582.330000px;}
.xaa_c01335{left:586.650000px;}
.x85_c01335{left:588.390000px;}
.x2f_c01335{left:590.115000px;}
.x36_c01335{left:592.710000px;}
.xcc_c01335{left:594.435000px;}
.x80_c01335{left:596.160000px;}
.x7a_c01335{left:598.755000px;}
.x8d_c01335{left:600.480000px;}
.x3e_c01335{left:604.800000px;}
.xab_c01335{left:607.395000px;}
.x86_c01335{left:609.120000px;}
.x5e_c01335{left:610.845000px;}
.x51_c01335{left:612.570000px;}
.x70_c01335{left:615.165000px;}
.xcf_c01335{left:617.760000px;}
.x81_c01335{left:624.675000px;}
.xc7_c01335{left:626.400000px;}
.x48_c01335{left:628.995000px;}
.x118_c01335{left:630.720000px;}
.xbf_c01335{left:633.315000px;}
.x94_c01335{left:635.910000px;}
.x87_c01335{left:637.635000px;}
.x52_c01335{left:641.085000px;}
.xc0_c01335{left:643.680000px;}
.x74_c01335{left:647.130000px;}
.x37_c01335{left:648.870000px;}
.x68_c01335{left:651.450000px;}
.xa4_c01335{left:654.045000px;}
.xfd_c01335{left:655.770000px;}
.xf1_c01335{left:658.365000px;}
.xaf_c01335{left:661.830000px;}
.xb_c01335{left:663.555000px;}
.x72_c01335{left:667.005000px;}
.x9f_c01335{left:669.600000px;}
.x23_c01335{left:671.325000px;}
.x115_c01335{left:673.050000px;}
.x3f_c01335{left:674.790000px;}
.x95_c01335{left:676.515000px;}
.x49_c01335{left:678.240000px;}
.xc8_c01335{left:680.835000px;}
.x40_c01335{left:682.560000px;}
.x110_c01335{left:685.155000px;}
.xde_c01335{left:686.880000px;}
.x102_c01335{left:688.605000px;}
.xc_c01335{left:690.330000px;}
.xd4_c01335{left:692.070000px;}
.x6d_c01335{left:695.520000px;}
.x30_c01335{left:698.970000px;}
.xfb_c01335{left:700.710000px;}
.x41_c01335{left:702.435000px;}
.x53_c01335{left:704.160000px;}
.x8e_c01335{left:706.755000px;}
.x88_c01335{left:708.480000px;}
.x24_c01335{left:712.800000px;}
.x8f_c01335{left:714.525000px;}
.x69_c01335{left:718.845000px;}
.xbb_c01335{left:721.440000px;}
.x4a_c01335{left:723.165000px;}
.x119_c01335{left:724.890000px;}
.x13_c01335{left:727.485000px;}
.xc4_c01335{left:730.080000px;}
.x5f_c01335{left:734.400000px;}
.x42_c01335{left:736.995000px;}
.x106_c01335{left:738.720000px;}
.xb9_c01335{left:742.170000px;}
.xa0_c01335{left:744.765000px;}
.xd0_c01335{left:747.360000px;}
.xe5_c01335{left:749.085000px;}
.x54_c01335{left:751.680000px;}
.xcd_c01335{left:753.405000px;}
.x75_c01335{left:755.130000px;}
.x109_c01335{left:757.725000px;}
.xd_c01335{left:759.450000px;}
.xb0_c01335{left:762.045000px;}
.x96_c01335{left:765.510000px;}
.x38_c01335{left:768.090000px;}
.x6e_c01335{left:769.830000px;}
.x7b_c01335{left:772.410000px;}
.x31_c01335{left:774.150000px;}
.x11a_c01335{left:777.600000px;}
.x4b_c01335{left:779.325000px;}
.x14_c01335{left:782.790000px;}
.x11b_c01335{left:784.515000px;}
.x9c_c01335{left:786.240000px;}
.xee_c01335{left:787.965000px;}
.xdf_c01335{left:789.690000px;}
.x43_c01335{left:793.155000px;}
.x60_c01335{left:796.605000px;}
.xef_c01335{left:798.330000px;}
.x4c_c01335{left:800.070000px;}
.xf6_c01335{left:803.520000px;}
.x97_c01335{left:806.115000px;}
.x7c_c01335{left:807.840000px;}
.xe6_c01335{left:809.565000px;}
.x55_c01335{left:812.160000px;}
.x6a_c01335{left:816.480000px;}
.xd1_c01335{left:821.670000px;}
.x82_c01335{left:823.395000px;}
.x15_c01335{left:825.120000px;}
.x32_c01335{left:828.570000px;}
.x98_c01335{left:830.310000px;}
.x76_c01335{left:833.760000px;}
.x33_c01335{left:837.210000px;}
.x56_c01335{left:840.675000px;}
.x10c_c01335{left:842.400000px;}
.x6b_c01335{left:844.995000px;}
.x11c_c01335{left:846.720000px;}
.xfe_c01335{left:849.315000px;}
.xe2_c01335{left:853.635000px;}
.xd5_c01335{left:857.085000px;}
.xc9_c01335{left:858.810000px;}
.xe7_c01335{left:860.550000px;}
.xb1_c01335{left:866.595000px;}
.x103_c01335{left:868.320000px;}
.xc1_c01335{left:870.915000px;}
.x11d_c01335{left:874.365000px;}
.xf7_c01335{left:876.960000px;}
.xb2_c01335{left:878.685000px;}
.xbc_c01335{left:882.150000px;}
.xff_c01335{left:885.600000px;}
.xf8_c01335{left:887.325000px;}
.xfc_c01335{left:889.050000px;}
.x114_c01335{left:895.965000px;}
.xac_c01335{left:905.475000px;}
.xbd_c01335{left:918.435000px;}
.x104_c01335{left:920.160000px;}
.xb3_c01335{left:921.885000px;}
.xb4_c01335{left:933.120000px;}
.xb5_c01335{left:940.890000px;}
.xb6_c01335{left:947.805000px;}
.xf9_c01335{left:992.730000px;}
@media print{
.v0_c01335{vertical-align:0.000000pt;}
.v1_c01335{vertical-align:6.133333pt;}
.ls1_c01335{letter-spacing:0.000000pt;}
.ls0_c01335{letter-spacing:17.947413pt;}
.ws0_c01335{word-spacing:-7.705067pt;}
.ws1_c01335{word-spacing:0.000000pt;}
.fs7_c01335{font-size:3.072000pt;}
.fs1c_c01335{font-size:5.333333pt;}
.fs4_c01335{font-size:6.133333pt;}
.fs1d_c01335{font-size:9.226667pt;}
.fs8_c01335{font-size:12.266667pt;}
.fs0_c01335{font-size:15.360000pt;}
.fs6_c01335{font-size:18.453333pt;}
.fs2_c01335{font-size:21.493333pt;}
.fs1_c01335{font-size:24.586667pt;}
.fs19_c01335{font-size:27.626667pt;}
.fs5_c01335{font-size:30.720000pt;}
.fs17_c01335{font-size:33.813333pt;}
.fs15_c01335{font-size:36.853333pt;}
.fs3_c01335{font-size:39.946667pt;}
.fs18_c01335{font-size:42.986667pt;}
.fs11_c01335{font-size:46.080000pt;}
.fsf_c01335{font-size:49.173333pt;}
.fs16_c01335{font-size:52.213333pt;}
.fsa_c01335{font-size:55.306667pt;}
.fs9_c01335{font-size:58.346667pt;}
.fse_c01335{font-size:61.440000pt;}
.fs12_c01335{font-size:64.533333pt;}
.fsd_c01335{font-size:67.573333pt;}
.fs14_c01335{font-size:70.666667pt;}
.fsc_c01335{font-size:73.706667pt;}
.fs1b_c01335{font-size:76.800000pt;}
.fsb_c01335{font-size:79.893333pt;}
.fs1e_c01335{font-size:82.933333pt;}
.fs10_c01335{font-size:86.026667pt;}
.fs13_c01335{font-size:89.066667pt;}
.fs1a_c01335{font-size:92.160000pt;}
.fs1f_c01335{font-size:95.253333pt;}
.y0_c01335{bottom:0.000000pt;}
.y1ff_c01335{bottom:158.973333pt;}
.y200_c01335{bottom:160.506667pt;}
.y1fa_c01335{bottom:164.346667pt;}
.y1fc_c01335{bottom:165.893333pt;}
.y1fd_c01335{bottom:168.186667pt;}
.y1fb_c01335{bottom:168.960000pt;}
.y1fe_c01335{bottom:170.493333pt;}
.y1f5_c01335{bottom:171.266667pt;}
.y1f8_c01335{bottom:172.026667pt;}
.y1f9_c01335{bottom:172.800000pt;}
.y1f7_c01335{bottom:176.640000pt;}
.y1f6_c01335{bottom:178.946667pt;}
.y1ea_c01335{bottom:187.386667pt;}
.y1eb_c01335{bottom:188.160000pt;}
.y1ef_c01335{bottom:188.933333pt;}
.y1ee_c01335{bottom:191.226667pt;}
.y1ec_c01335{bottom:192.000000pt;}
.y1f3_c01335{bottom:195.066667pt;}
.y1f1_c01335{bottom:195.840000pt;}
.y1ed_c01335{bottom:196.613333pt;}
.y1f0_c01335{bottom:198.146667pt;}
.y1f4_c01335{bottom:200.453333pt;}
.y1f2_c01335{bottom:202.746667pt;}
.y1e2_c01335{bottom:206.586667pt;}
.y1e3_c01335{bottom:208.133333pt;}
.y1e4_c01335{bottom:208.893333pt;}
.y1e7_c01335{bottom:209.666667pt;}
.y1e5_c01335{bottom:210.426667pt;}
.y1e8_c01335{bottom:213.506667pt;}
.y1e6_c01335{bottom:214.266667pt;}
.y1e9_c01335{bottom:215.040000pt;}
.y1dc_c01335{bottom:227.333333pt;}
.y1e0_c01335{bottom:228.093333pt;}
.y1db_c01335{bottom:229.626667pt;}
.y1e1_c01335{bottom:230.400000pt;}
.y1dd_c01335{bottom:231.173333pt;}
.y1de_c01335{bottom:232.706667pt;}
.y1df_c01335{bottom:233.466667pt;}
.y1d3_c01335{bottom:244.226667pt;}
.y1d6_c01335{bottom:244.986667pt;}
.y1d8_c01335{bottom:246.533333pt;}
.y1d2_c01335{bottom:247.293333pt;}
.y1d1_c01335{bottom:248.066667pt;}
.y1d5_c01335{bottom:248.826667pt;}
.y1d4_c01335{bottom:249.600000pt;}
.y1d9_c01335{bottom:250.373333pt;}
.y1d7_c01335{bottom:254.973333pt;}
.y1da_c01335{bottom:261.120000pt;}
.y1c8_c01335{bottom:261.893333pt;}
.y1c9_c01335{bottom:262.653333pt;}
.y1cb_c01335{bottom:264.186667pt;}
.y1cf_c01335{bottom:264.960000pt;}
.y1d0_c01335{bottom:265.733333pt;}
.y1ca_c01335{bottom:266.493333pt;}
.y1cc_c01335{bottom:267.266667pt;}
.y1ce_c01335{bottom:268.026667pt;}
.y1cd_c01335{bottom:268.800000pt;}
.y1bf_c01335{bottom:280.320000pt;}
.y1c4_c01335{bottom:281.853333pt;}
.y1c2_c01335{bottom:282.626667pt;}
.y1c6_c01335{bottom:283.386667pt;}
.y1c3_c01335{bottom:284.160000pt;}
.y1c0_c01335{bottom:284.933333pt;}
.y1c5_c01335{bottom:285.693333pt;}
.y1c1_c01335{bottom:286.466667pt;}
.y1c7_c01335{bottom:287.226667pt;}
.y1ba_c01335{bottom:298.746667pt;}
.y1b9_c01335{bottom:299.520000pt;}
.y1bd_c01335{bottom:301.826667pt;}
.y1bb_c01335{bottom:304.133333pt;}
.y1bc_c01335{bottom:304.893333pt;}
.y1be_c01335{bottom:305.666667pt;}
.y1b2_c01335{bottom:316.413333pt;}
.y1b6_c01335{bottom:317.186667pt;}
.y1b1_c01335{bottom:317.946667pt;}
.y1b7_c01335{bottom:318.720000pt;}
.y1b4_c01335{bottom:320.253333pt;}
.y1b3_c01335{bottom:321.786667pt;}
.y1b5_c01335{bottom:322.560000pt;}
.y1b8_c01335{bottom:324.866667pt;}
.y1a9_c01335{bottom:334.080000pt;}
.y1ab_c01335{bottom:335.613333pt;}
.y1af_c01335{bottom:336.386667pt;}
.y1ad_c01335{bottom:337.146667pt;}
.y1ae_c01335{bottom:337.920000pt;}
.y1aa_c01335{bottom:339.453333pt;}
.y1ac_c01335{bottom:340.986667pt;}
.y1b0_c01335{bottom:342.533333pt;}
.y1a1_c01335{bottom:351.746667pt;}
.y1a4_c01335{bottom:353.280000pt;}
.y1a2_c01335{bottom:354.053333pt;}
.y1a7_c01335{bottom:354.813333pt;}
.y1a5_c01335{bottom:357.120000pt;}
.y1a6_c01335{bottom:357.893333pt;}
.y1a3_c01335{bottom:359.426667pt;}
.y1a8_c01335{bottom:361.733333pt;}
.y1a0_c01335{bottom:366.333333pt;}
.y197_c01335{bottom:368.640000pt;}
.y196_c01335{bottom:370.946667pt;}
.y19b_c01335{bottom:371.706667pt;}
.y198_c01335{bottom:372.480000pt;}
.y199_c01335{bottom:376.320000pt;}
.y19a_c01335{bottom:377.093333pt;}
.y19d_c01335{bottom:378.626667pt;}
.y19c_c01335{bottom:380.160000pt;}
.y19e_c01335{bottom:382.466667pt;}
.y190_c01335{bottom:387.066667pt;}
.y18f_c01335{bottom:387.840000pt;}
.y19f_c01335{bottom:389.373333pt;}
.y194_c01335{bottom:390.906667pt;}
.y193_c01335{bottom:391.680000pt;}
.y192_c01335{bottom:393.986667pt;}
.y191_c01335{bottom:394.746667pt;}
.y195_c01335{bottom:395.520000pt;}
.y18a_c01335{bottom:407.813333pt;}
.y189_c01335{bottom:408.573333pt;}
.y18b_c01335{bottom:409.346667pt;}
.y188_c01335{bottom:410.880000pt;}
.y18d_c01335{bottom:411.653333pt;}
.y18c_c01335{bottom:412.413333pt;}
.y18e_c01335{bottom:413.946667pt;}
.y17e_c01335{bottom:421.626667pt;}
.y182_c01335{bottom:422.400000pt;}
.y184_c01335{bottom:425.466667pt;}
.y180_c01335{bottom:426.240000pt;}
.y183_c01335{bottom:427.013333pt;}
.y185_c01335{bottom:427.773333pt;}
.y186_c01335{bottom:429.306667pt;}
.y17f_c01335{bottom:430.080000pt;}
.y181_c01335{bottom:430.853333pt;}
.y187_c01335{bottom:433.146667pt;}
.y17a_c01335{bottom:443.133333pt;}
.y17d_c01335{bottom:444.666667pt;}
.y17c_c01335{bottom:446.213333pt;}
.y179_c01335{bottom:447.746667pt;}
.y17b_c01335{bottom:448.506667pt;}
.y173_c01335{bottom:460.026667pt;}
.y174_c01335{bottom:460.800000pt;}
.y178_c01335{bottom:461.573333pt;}
.y177_c01335{bottom:463.106667pt;}
.y175_c01335{bottom:464.640000pt;}
.y176_c01335{bottom:468.480000pt;}
.y16c_c01335{bottom:476.160000pt;}
.y16e_c01335{bottom:478.466667pt;}
.y16f_c01335{bottom:479.226667pt;}
.y171_c01335{bottom:480.773333pt;}
.y16d_c01335{bottom:483.066667pt;}
.y170_c01335{bottom:484.613333pt;}
.y172_c01335{bottom:486.906667pt;}
.y165_c01335{bottom:496.133333pt;}
.y169_c01335{bottom:496.893333pt;}
.y166_c01335{bottom:497.666667pt;}
.y16b_c01335{bottom:498.426667pt;}
.y168_c01335{bottom:499.973333pt;}
.y167_c01335{bottom:500.733333pt;}
.y16a_c01335{bottom:502.266667pt;}
.y15f_c01335{bottom:513.786667pt;}
.y15d_c01335{bottom:514.560000pt;}
.y163_c01335{bottom:515.333333pt;}
.y15c_c01335{bottom:516.093333pt;}
.y162_c01335{bottom:517.626667pt;}
.y164_c01335{bottom:518.400000pt;}
.y15e_c01335{bottom:519.173333pt;}
.y160_c01335{bottom:519.933333pt;}
.y161_c01335{bottom:520.706667pt;}
.y157_c01335{bottom:533.760000pt;}
.y15b_c01335{bottom:534.533333pt;}
.y155_c01335{bottom:536.066667pt;}
.y154_c01335{bottom:536.826667pt;}
.y15a_c01335{bottom:537.600000pt;}
.y156_c01335{bottom:538.373333pt;}
.y158_c01335{bottom:539.133333pt;}
.y159_c01335{bottom:539.906667pt;}
.y153_c01335{bottom:541.440000pt;}
.y14b_c01335{bottom:550.653333pt;}
.y14a_c01335{bottom:551.426667pt;}
.y14f_c01335{bottom:552.186667pt;}
.y150_c01335{bottom:552.960000pt;}
.y152_c01335{bottom:554.493333pt;}
.y14c_c01335{bottom:555.266667pt;}
.y14d_c01335{bottom:556.026667pt;}
.y14e_c01335{bottom:556.800000pt;}
.y151_c01335{bottom:558.333333pt;}
.y146_c01335{bottom:564.480000pt;}
.y144_c01335{bottom:566.013333pt;}
.y148_c01335{bottom:566.786667pt;}
.y141_c01335{bottom:567.546667pt;}
.y149_c01335{bottom:568.320000pt;}
.y143_c01335{bottom:571.386667pt;}
.y142_c01335{bottom:572.933333pt;}
.y147_c01335{bottom:573.693333pt;}
.y145_c01335{bottom:582.146667pt;}
.y13b_c01335{bottom:585.986667pt;}
.y13d_c01335{bottom:587.520000pt;}
.y13a_c01335{bottom:588.293333pt;}
.y139_c01335{bottom:589.826667pt;}
.y13c_c01335{bottom:590.586667pt;}
.y13f_c01335{bottom:592.133333pt;}
.y13e_c01335{bottom:592.893333pt;}
.y140_c01335{bottom:594.426667pt;}
.y134_c01335{bottom:603.653333pt;}
.y136_c01335{bottom:606.720000pt;}
.y138_c01335{bottom:608.253333pt;}
.y135_c01335{bottom:609.786667pt;}
.y137_c01335{bottom:612.093333pt;}
.y131_c01335{bottom:622.853333pt;}
.y130_c01335{bottom:625.920000pt;}
.y132_c01335{bottom:628.226667pt;}
.y133_c01335{bottom:628.986667pt;}
.y12d_c01335{bottom:640.506667pt;}
.y12e_c01335{bottom:642.053333pt;}
.y12a_c01335{bottom:642.813333pt;}
.y12b_c01335{bottom:643.586667pt;}
.y12c_c01335{bottom:644.346667pt;}
.y12f_c01335{bottom:646.653333pt;}
.y124_c01335{bottom:658.946667pt;}
.y122_c01335{bottom:660.480000pt;}
.y127_c01335{bottom:662.013333pt;}
.y123_c01335{bottom:663.546667pt;}
.y126_c01335{bottom:665.093333pt;}
.y128_c01335{bottom:665.853333pt;}
.y129_c01335{bottom:668.160000pt;}
.y125_c01335{bottom:670.466667pt;}
.y11c_c01335{bottom:676.613333pt;}
.y119_c01335{bottom:678.146667pt;}
.y11f_c01335{bottom:678.906667pt;}
.y121_c01335{bottom:679.680000pt;}
.y11a_c01335{bottom:680.453333pt;}
.y11b_c01335{bottom:681.213333pt;}
.y11d_c01335{bottom:682.746667pt;}
.y11e_c01335{bottom:683.520000pt;}
.y120_c01335{bottom:684.293333pt;}
.y115_c01335{bottom:695.813333pt;}
.y113_c01335{bottom:696.573333pt;}
.y118_c01335{bottom:697.346667pt;}
.y112_c01335{bottom:698.106667pt;}
.y114_c01335{bottom:700.413333pt;}
.y116_c01335{bottom:701.186667pt;}
.y117_c01335{bottom:709.626667pt;}
.y108_c01335{bottom:711.173333pt;}
.y109_c01335{bottom:711.933333pt;}
.y10a_c01335{bottom:713.466667pt;}
.y10e_c01335{bottom:714.240000pt;}
.y10b_c01335{bottom:715.773333pt;}
.y10f_c01335{bottom:716.546667pt;}
.y10c_c01335{bottom:718.080000pt;}
.y10d_c01335{bottom:718.853333pt;}
.y111_c01335{bottom:719.613333pt;}
.y110_c01335{bottom:720.386667pt;}
.y106_c01335{bottom:731.906667pt;}
.y104_c01335{bottom:732.666667pt;}
.y102_c01335{bottom:733.440000pt;}
.y103_c01335{bottom:734.213333pt;}
.y105_c01335{bottom:736.506667pt;}
.y107_c01335{bottom:738.053333pt;}
.yfd_c01335{bottom:747.266667pt;}
.yfe_c01335{bottom:748.026667pt;}
.y100_c01335{bottom:750.333333pt;}
.yfb_c01335{bottom:751.866667pt;}
.yfc_c01335{bottom:752.640000pt;}
.yff_c01335{bottom:754.946667pt;}
.y101_c01335{bottom:755.706667pt;}
.yf6_c01335{bottom:766.466667pt;}
.yf7_c01335{bottom:768.000000pt;}
.yf5_c01335{bottom:768.773333pt;}
.yed_c01335{bottom:769.533333pt;}
.yee_c01335{bottom:770.306667pt;}
.yef_c01335{bottom:771.066667pt;}
.yf8_c01335{bottom:771.840000pt;}
.yf0_c01335{bottom:772.613333pt;}
.yf9_c01335{bottom:773.373333pt;}
.yfa_c01335{bottom:774.146667pt;}
.yf1_c01335{bottom:780.293333pt;}
.yf3_c01335{bottom:781.053333pt;}
.ye0_c01335{bottom:782.586667pt;}
.yf2_c01335{bottom:783.360000pt;}
.yf4_c01335{bottom:784.133333pt;}
.ye5_c01335{bottom:786.426667pt;}
.ye1_c01335{bottom:787.973333pt;}
.ye2_c01335{bottom:788.733333pt;}
.ye3_c01335{bottom:789.506667pt;}
.ye8_c01335{bottom:791.813333pt;}
.ye7_c01335{bottom:792.573333pt;}
.yec_c01335{bottom:793.346667pt;}
.ye4_c01335{bottom:794.106667pt;}
.yea_c01335{bottom:796.413333pt;}
.yeb_c01335{bottom:797.186667pt;}
.ye6_c01335{bottom:797.946667pt;}
.yd7_c01335{bottom:801.026667pt;}
.ye9_c01335{bottom:801.786667pt;}
.yd9_c01335{bottom:803.333333pt;}
.ydb_c01335{bottom:804.093333pt;}
.yde_c01335{bottom:804.866667pt;}
.ydf_c01335{bottom:805.626667pt;}
.yd8_c01335{bottom:806.400000pt;}
.yda_c01335{bottom:807.933333pt;}
.ydc_c01335{bottom:808.706667pt;}
.ydd_c01335{bottom:810.240000pt;}
.yd3_c01335{bottom:821.760000pt;}
.yd2_c01335{bottom:824.066667pt;}
.yd4_c01335{bottom:825.600000pt;}
.yd5_c01335{bottom:826.373333pt;}
.yd6_c01335{bottom:827.133333pt;}
.yc9_c01335{bottom:837.120000pt;}
.ycb_c01335{bottom:838.653333pt;}
.yc8_c01335{bottom:839.426667pt;}
.yce_c01335{bottom:840.186667pt;}
.yd0_c01335{bottom:840.960000pt;}
.yca_c01335{bottom:841.733333pt;}
.yd1_c01335{bottom:842.493333pt;}
.ycc_c01335{bottom:843.266667pt;}
.ycd_c01335{bottom:844.026667pt;}
.ycf_c01335{bottom:844.800000pt;}
.yc0_c01335{bottom:854.013333pt;}
.yc1_c01335{bottom:854.786667pt;}
.yc2_c01335{bottom:856.320000pt;}
.yc3_c01335{bottom:857.093333pt;}
.ybf_c01335{bottom:858.626667pt;}
.yc7_c01335{bottom:860.160000pt;}
.yc5_c01335{bottom:863.226667pt;}
.yc6_c01335{bottom:864.000000pt;}
.yc4_c01335{bottom:872.453333pt;}
.yba_c01335{bottom:874.746667pt;}
.ybe_c01335{bottom:875.520000pt;}
.yb8_c01335{bottom:876.293333pt;}
.yb9_c01335{bottom:877.053333pt;}
.ybd_c01335{bottom:877.826667pt;}
.ybb_c01335{bottom:878.586667pt;}
.ybc_c01335{bottom:879.360000pt;}
.yae_c01335{bottom:891.653333pt;}
.yaf_c01335{bottom:892.413333pt;}
.yb5_c01335{bottom:893.186667pt;}
.yb1_c01335{bottom:893.946667pt;}
.yac_c01335{bottom:894.720000pt;}
.yad_c01335{bottom:895.493333pt;}
.yb4_c01335{bottom:896.253333pt;}
.yb3_c01335{bottom:897.026667pt;}
.yb0_c01335{bottom:897.786667pt;}
.yb2_c01335{bottom:898.560000pt;}
.yb7_c01335{bottom:900.093333pt;}
.yb6_c01335{bottom:900.866667pt;}
.ya5_c01335{bottom:907.773333pt;}
.ya9_c01335{bottom:910.080000pt;}
.ya8_c01335{bottom:910.853333pt;}
.yaa_c01335{bottom:912.386667pt;}
.ya6_c01335{bottom:913.146667pt;}
.ya7_c01335{bottom:913.920000pt;}
.yab_c01335{bottom:914.693333pt;}
.y9c_c01335{bottom:926.213333pt;}
.y9e_c01335{bottom:927.746667pt;}
.ya0_c01335{bottom:929.280000pt;}
.ya2_c01335{bottom:930.053333pt;}
.ya3_c01335{bottom:930.813333pt;}
.y9d_c01335{bottom:932.346667pt;}
.y9f_c01335{bottom:933.120000pt;}
.ya1_c01335{bottom:933.893333pt;}
.ya4_c01335{bottom:936.960000pt;}
.y93_c01335{bottom:943.866667pt;}
.y94_c01335{bottom:946.946667pt;}
.y97_c01335{bottom:947.706667pt;}
.y98_c01335{bottom:948.480000pt;}
.y9a_c01335{bottom:949.253333pt;}
.y95_c01335{bottom:950.013333pt;}
.y96_c01335{bottom:950.786667pt;}
.y99_c01335{bottom:953.093333pt;}
.y9b_c01335{bottom:954.626667pt;}
.y89_c01335{bottom:963.066667pt;}
.y8c_c01335{bottom:964.613333pt;}
.y8e_c01335{bottom:965.373333pt;}
.y88_c01335{bottom:966.146667pt;}
.y8a_c01335{bottom:966.906667pt;}
.y91_c01335{bottom:967.680000pt;}
.y8b_c01335{bottom:968.453333pt;}
.y8f_c01335{bottom:969.213333pt;}
.y8d_c01335{bottom:969.986667pt;}
.y90_c01335{bottom:970.746667pt;}
.y92_c01335{bottom:973.053333pt;}
.y81_c01335{bottom:980.733333pt;}
.y80_c01335{bottom:981.506667pt;}
.y83_c01335{bottom:982.266667pt;}
.y7e_c01335{bottom:983.813333pt;}
.y7f_c01335{bottom:984.573333pt;}
.y87_c01335{bottom:986.106667pt;}
.y84_c01335{bottom:986.880000pt;}
.y82_c01335{bottom:987.653333pt;}
.y85_c01335{bottom:989.186667pt;}
.y86_c01335{bottom:989.946667pt;}
.y76_c01335{bottom:999.173333pt;}
.y78_c01335{bottom:1000.706667pt;}
.y7a_c01335{bottom:1003.013333pt;}
.y77_c01335{bottom:1005.306667pt;}
.y79_c01335{bottom:1006.080000pt;}
.y7b_c01335{bottom:1007.613333pt;}
.y7c_c01335{bottom:1008.386667pt;}
.y7d_c01335{bottom:1009.146667pt;}
.y6f_c01335{bottom:1016.066667pt;}
.y71_c01335{bottom:1019.133333pt;}
.y6e_c01335{bottom:1019.906667pt;}
.y70_c01335{bottom:1022.213333pt;}
.y72_c01335{bottom:1022.973333pt;}
.y73_c01335{bottom:1026.053333pt;}
.y74_c01335{bottom:1026.813333pt;}
.y75_c01335{bottom:1027.586667pt;}
.y66_c01335{bottom:1034.493333pt;}
.y68_c01335{bottom:1036.026667pt;}
.y6c_c01335{bottom:1038.333333pt;}
.y6a_c01335{bottom:1039.106667pt;}
.y67_c01335{bottom:1039.866667pt;}
.y6d_c01335{bottom:1040.640000pt;}
.y69_c01335{bottom:1041.413333pt;}
.y6b_c01335{bottom:1042.946667pt;}
.y5e_c01335{bottom:1053.693333pt;}
.y62_c01335{bottom:1054.466667pt;}
.y60_c01335{bottom:1055.226667pt;}
.y63_c01335{bottom:1056.773333pt;}
.y5f_c01335{bottom:1057.533333pt;}
.y61_c01335{bottom:1060.613333pt;}
.y64_c01335{bottom:1061.373333pt;}
.y65_c01335{bottom:1062.146667pt;}
.y57_c01335{bottom:1073.666667pt;}
.y55_c01335{bottom:1074.426667pt;}
.y5b_c01335{bottom:1075.200000pt;}
.y56_c01335{bottom:1075.973333pt;}
.y58_c01335{bottom:1076.733333pt;}
.y59_c01335{bottom:1077.506667pt;}
.y5a_c01335{bottom:1078.266667pt;}
.y5c_c01335{bottom:1080.573333pt;}
.y5d_c01335{bottom:1082.880000pt;}
.y50_c01335{bottom:1085.946667pt;}
.y4c_c01335{bottom:1088.253333pt;}
.y4e_c01335{bottom:1089.026667pt;}
.y53_c01335{bottom:1090.560000pt;}
.y52_c01335{bottom:1091.333333pt;}
.y4d_c01335{bottom:1093.626667pt;}
.y4f_c01335{bottom:1094.400000pt;}
.y51_c01335{bottom:1095.173333pt;}
.y54_c01335{bottom:1099.013333pt;}
.y44_c01335{bottom:1106.693333pt;}
.y4a_c01335{bottom:1110.533333pt;}
.y45_c01335{bottom:1111.293333pt;}
.y49_c01335{bottom:1112.066667pt;}
.y46_c01335{bottom:1113.600000pt;}
.y47_c01335{bottom:1114.373333pt;}
.y48_c01335{bottom:1116.666667pt;}
.y4b_c01335{bottom:1117.440000pt;}
.y3d_c01335{bottom:1123.586667pt;}
.y41_c01335{bottom:1128.960000pt;}
.y3e_c01335{bottom:1129.733333pt;}
.y43_c01335{bottom:1131.266667pt;}
.y3f_c01335{bottom:1132.800000pt;}
.y40_c01335{bottom:1133.573333pt;}
.y42_c01335{bottom:1134.333333pt;}
.y35_c01335{bottom:1142.013333pt;}
.y36_c01335{bottom:1144.320000pt;}
.y34_c01335{bottom:1145.853333pt;}
.y3c_c01335{bottom:1147.386667pt;}
.y39_c01335{bottom:1148.160000pt;}
.y37_c01335{bottom:1148.933333pt;}
.y38_c01335{bottom:1150.466667pt;}
.y3a_c01335{bottom:1152.000000pt;}
.y3b_c01335{bottom:1152.773333pt;}
.y2c_c01335{bottom:1157.373333pt;}
.y2e_c01335{bottom:1158.146667pt;}
.y2f_c01335{bottom:1161.213333pt;}
.y31_c01335{bottom:1161.986667pt;}
.y2d_c01335{bottom:1165.053333pt;}
.y30_c01335{bottom:1168.893333pt;}
.y33_c01335{bottom:1169.666667pt;}
.y32_c01335{bottom:1170.426667pt;}
.y21_c01335{bottom:1178.880000pt;}
.y24_c01335{bottom:1179.653333pt;}
.y20_c01335{bottom:1181.946667pt;}
.y23_c01335{bottom:1182.720000pt;}
.y28_c01335{bottom:1183.493333pt;}
.y22_c01335{bottom:1184.253333pt;}
.y2a_c01335{bottom:1185.026667pt;}
.y25_c01335{bottom:1185.786667pt;}
.y26_c01335{bottom:1186.560000pt;}
.y27_c01335{bottom:1188.093333pt;}
.y29_c01335{bottom:1188.866667pt;}
.y2b_c01335{bottom:1189.626667pt;}
.y4_c01335{bottom:1191.933333pt;}
.y1f_c01335{bottom:1194.240000pt;}
.y18_c01335{bottom:1198.080000pt;}
.y17_c01335{bottom:1198.853333pt;}
.y1e_c01335{bottom:1199.613333pt;}
.y15_c01335{bottom:1200.386667pt;}
.y16_c01335{bottom:1201.146667pt;}
.y3_c01335{bottom:1201.920000pt;}
.y19_c01335{bottom:1203.453333pt;}
.y1a_c01335{bottom:1204.226667pt;}
.y1b_c01335{bottom:1204.986667pt;}
.y1c_c01335{bottom:1205.760000pt;}
.y1d_c01335{bottom:1207.293333pt;}
.ye_c01335{bottom:1222.653333pt;}
.yd_c01335{bottom:1225.733333pt;}
.y14_c01335{bottom:1226.493333pt;}
.yf_c01335{bottom:1227.266667pt;}
.y10_c01335{bottom:1228.026667pt;}
.y11_c01335{bottom:1229.573333pt;}
.y12_c01335{bottom:1230.333333pt;}
.y13_c01335{bottom:1231.106667pt;}
.yb_c01335{bottom:1244.933333pt;}
.yc_c01335{bottom:1248.773333pt;}
.ya_c01335{bottom:1251.066667pt;}
.y8_c01335{bottom:1254.906667pt;}
.y9_c01335{bottom:1255.680000pt;}
.y6_c01335{bottom:1256.453333pt;}
.y5_c01335{bottom:1257.986667pt;}
.y7_c01335{bottom:1260.293333pt;}
.y2_c01335{bottom:1282.560000pt;}
.y1_c01335{bottom:1293.306667pt;}
.h9_c01335{height:2.764500pt;}
.h1f_c01335{height:4.799479pt;}
.h6_c01335{height:5.519401pt;}
.h20_c01335{height:8.303099pt;}
.ha_c01335{height:11.038802pt;}
.h2_c01335{height:13.822500pt;}
.h8_c01335{height:16.606198pt;}
.h4_c01335{height:19.341901pt;}
.h3_c01335{height:22.125599pt;}
.h1c_c01335{height:24.861302pt;}
.h7_c01335{height:27.645000pt;}
.h19_c01335{height:30.428698pt;}
.h17_c01335{height:33.164401pt;}
.h5_c01335{height:35.948099pt;}
.h1a_c01335{height:38.683802pt;}
.h13_c01335{height:41.467500pt;}
.h11_c01335{height:44.251198pt;}
.h18_c01335{height:46.986901pt;}
.hc_c01335{height:49.770599pt;}
.h1b_c01335{height:50.384531pt;}
.hb_c01335{height:52.506302pt;}
.h10_c01335{height:55.290000pt;}
.h14_c01335{height:58.073698pt;}
.hf_c01335{height:60.809401pt;}
.h16_c01335{height:63.593099pt;}
.he_c01335{height:66.328802pt;}
.h1e_c01335{height:69.112500pt;}
.hd_c01335{height:71.896198pt;}
.h21_c01335{height:74.631901pt;}
.h12_c01335{height:77.415599pt;}
.h15_c01335{height:80.151302pt;}
.h1d_c01335{height:82.935000pt;}
.h22_c01335{height:85.718698pt;}
.h0_c01335{height:1341.693333pt;}
.h1_c01335{height:1342.000000pt;}
.w0_c01335{width:959.226667pt;}
.w1_c01335{width:959.333333pt;}
.x0_c01335{left:0.000000pt;}
.x4_c01335{left:2.306667pt;}
.x3_c01335{left:17.666667pt;}
.xda_c01335{left:170.493333pt;}
.xd6_c01335{left:188.933333pt;}
.xe8_c01335{left:190.466667pt;}
.xe9_c01335{left:195.066667pt;}
.x44_c01335{left:196.613333pt;}
.x25_c01335{left:198.146667pt;}
.x16_c01335{left:201.986667pt;}
.x7d_c01335{left:203.520000pt;}
.x89_c01335{left:205.053333pt;}
.x9d_c01335{left:206.586667pt;}
.xd7_c01335{left:208.133333pt;}
.xd9_c01335{left:209.666667pt;}
.xf2_c01335{left:211.973333pt;}
.x105_c01335{left:215.040000pt;}
.x9e_c01335{left:216.573333pt;}
.x2_c01335{left:218.106667pt;}
.x116_c01335{left:219.653333pt;}
.x1_c01335{left:221.186667pt;}
.x26_c01335{left:227.333333pt;}
.xa1_c01335{left:228.866667pt;}
.xe_c01335{left:230.400000pt;}
.x27_c01335{left:233.466667pt;}
.x99_c01335{left:235.013333pt;}
.x10a_c01335{left:237.306667pt;}
.x28_c01335{left:240.386667pt;}
.x100_c01335{left:241.920000pt;}
.xec_c01335{left:244.226667pt;}
.xea_c01335{left:245.760000pt;}
.x17_c01335{left:247.293333pt;}
.x6f_c01335{left:249.600000pt;}
.xe3_c01335{left:251.133333pt;}
.x6c_c01335{left:252.666667pt;}
.x5_c01335{left:258.053333pt;}
.x57_c01335{left:261.120000pt;}
.xa6_c01335{left:263.426667pt;}
.x39_c01335{left:264.960000pt;}
.xf_c01335{left:266.493333pt;}
.x6_c01335{left:268.800000pt;}
.x61_c01335{left:270.333333pt;}
.x18_c01335{left:271.866667pt;}
.xce_c01335{left:273.413333pt;}
.x45_c01335{left:275.706667pt;}
.x77_c01335{left:279.546667pt;}
.xa2_c01335{left:281.093333pt;}
.x71_c01335{left:284.160000pt;}
.x4d_c01335{left:287.226667pt;}
.xc2_c01335{left:288.773333pt;}
.x29_c01335{left:291.066667pt;}
.x58_c01335{left:294.146667pt;}
.xad_c01335{left:295.680000pt;}
.xd2_c01335{left:297.213333pt;}
.xeb_c01335{left:298.746667pt;}
.x73_c01335{left:302.586667pt;}
.x101_c01335{left:304.133333pt;}
.x111_c01335{left:305.666667pt;}
.x2a_c01335{left:307.200000pt;}
.x19_c01335{left:311.040000pt;}
.xbe_c01335{left:314.106667pt;}
.xdb_c01335{left:316.413333pt;}
.x78_c01335{left:317.946667pt;}
.x1a_c01335{left:319.493333pt;}
.x59_c01335{left:321.786667pt;}
.x3a_c01335{left:324.093333pt;}
.x2b_c01335{left:328.706667pt;}
.xf3_c01335{left:331.773333pt;}
.xdc_c01335{left:333.306667pt;}
.xa7_c01335{left:335.613333pt;}
.x62_c01335{left:337.146667pt;}
.x83_c01335{left:339.453333pt;}
.x90_c01335{left:340.986667pt;}
.x63_c01335{left:344.066667pt;}
.x10b_c01335{left:346.373333pt;}
.x8_c01335{left:350.213333pt;}
.x5a_c01335{left:351.746667pt;}
.xed_c01335{left:354.813333pt;}
.x10_c01335{left:356.346667pt;}
.x4e_c01335{left:359.426667pt;}
.x1b_c01335{left:361.733333pt;}
.x79_c01335{left:364.026667pt;}
.x3b_c01335{left:365.573333pt;}
.x34_c01335{left:367.866667pt;}
.xae_c01335{left:369.413333pt;}
.x5b_c01335{left:372.480000pt;}
.x64_c01335{left:374.786667pt;}
.xe0_c01335{left:376.320000pt;}
.x4f_c01335{left:377.853333pt;}
.x7e_c01335{left:380.160000pt;}
.x1c_c01335{left:382.466667pt;}
.xf4_c01335{left:385.533333pt;}
.xca_c01335{left:387.066667pt;}
.x5c_c01335{left:388.613333pt;}
.x9a_c01335{left:390.906667pt;}
.x117_c01335{left:395.520000pt;}
.x10e_c01335{left:397.053333pt;}
.xe4_c01335{left:399.360000pt;}
.xa8_c01335{left:400.893333pt;}
.x46_c01335{left:402.426667pt;}
.x3c_c01335{left:403.973333pt;}
.x8a_c01335{left:405.506667pt;}
.x1d_c01335{left:407.040000pt;}
.x91_c01335{left:408.573333pt;}
.xa9_c01335{left:410.106667pt;}
.x11_c01335{left:411.653333pt;}
.x65_c01335{left:413.186667pt;}
.x84_c01335{left:414.720000pt;}
.x2c_c01335{left:417.026667pt;}
.x10d_c01335{left:418.560000pt;}
.x1e_c01335{left:420.093333pt;}
.xc5_c01335{left:421.626667pt;}
.x107_c01335{left:425.466667pt;}
.x50_c01335{left:427.773333pt;}
.xf5_c01335{left:429.306667pt;}
.xb7_c01335{left:430.853333pt;}
.x66_c01335{left:432.386667pt;}
.xd8_c01335{left:434.693333pt;}
.x9_c01335{left:436.986667pt;}
.x5d_c01335{left:439.293333pt;}
.x2d_c01335{left:440.826667pt;}
.xdd_c01335{left:442.373333pt;}
.x35_c01335{left:443.906667pt;}
.x7f_c01335{left:446.213333pt;}
.x47_c01335{left:450.053333pt;}
.xf0_c01335{left:451.586667pt;}
.xb8_c01335{left:453.893333pt;}
.xfa_c01335{left:455.426667pt;}
.x92_c01335{left:456.960000pt;}
.x1f_c01335{left:458.493333pt;}
.xc3_c01335{left:460.800000pt;}
.xba_c01335{left:463.106667pt;}
.x10f_c01335{left:465.413333pt;}
.x112_c01335{left:466.946667pt;}
.x20_c01335{left:474.626667pt;}
.x3d_c01335{left:477.693333pt;}
.x8b_c01335{left:480.000000pt;}
.xd3_c01335{left:483.066667pt;}
.x93_c01335{left:484.613333pt;}
.x108_c01335{left:486.906667pt;}
.xcb_c01335{left:488.453333pt;}
.x21_c01335{left:489.986667pt;}
.x67_c01335{left:491.520000pt;}
.x8c_c01335{left:493.053333pt;}
.x9b_c01335{left:494.586667pt;}
.xa5_c01335{left:496.133333pt;}
.xc6_c01335{left:497.666667pt;}
.xa_c01335{left:499.973333pt;}
.xe1_c01335{left:501.506667pt;}
.x7_c01335{left:503.813333pt;}
.x2e_c01335{left:506.106667pt;}
.x113_c01335{left:509.186667pt;}
.x22_c01335{left:513.786667pt;}
.x12_c01335{left:515.333333pt;}
.xa3_c01335{left:517.626667pt;}
.xaa_c01335{left:521.466667pt;}
.x85_c01335{left:523.013333pt;}
.x2f_c01335{left:524.546667pt;}
.x36_c01335{left:526.853333pt;}
.xcc_c01335{left:528.386667pt;}
.x80_c01335{left:529.920000pt;}
.x7a_c01335{left:532.226667pt;}
.x8d_c01335{left:533.760000pt;}
.x3e_c01335{left:537.600000pt;}
.xab_c01335{left:539.906667pt;}
.x86_c01335{left:541.440000pt;}
.x5e_c01335{left:542.973333pt;}
.x51_c01335{left:544.506667pt;}
.x70_c01335{left:546.813333pt;}
.xcf_c01335{left:549.120000pt;}
.x81_c01335{left:555.266667pt;}
.xc7_c01335{left:556.800000pt;}
.x48_c01335{left:559.106667pt;}
.x118_c01335{left:560.640000pt;}
.xbf_c01335{left:562.946667pt;}
.x94_c01335{left:565.253333pt;}
.x87_c01335{left:566.786667pt;}
.x52_c01335{left:569.853333pt;}
.xc0_c01335{left:572.160000pt;}
.x74_c01335{left:575.226667pt;}
.x37_c01335{left:576.773333pt;}
.x68_c01335{left:579.066667pt;}
.xa4_c01335{left:581.373333pt;}
.xfd_c01335{left:582.906667pt;}
.xf1_c01335{left:585.213333pt;}
.xaf_c01335{left:588.293333pt;}
.xb_c01335{left:589.826667pt;}
.x72_c01335{left:592.893333pt;}
.x9f_c01335{left:595.200000pt;}
.x23_c01335{left:596.733333pt;}
.x115_c01335{left:598.266667pt;}
.x3f_c01335{left:599.813333pt;}
.x95_c01335{left:601.346667pt;}
.x49_c01335{left:602.880000pt;}
.xc8_c01335{left:605.186667pt;}
.x40_c01335{left:606.720000pt;}
.x110_c01335{left:609.026667pt;}
.xde_c01335{left:610.560000pt;}
.x102_c01335{left:612.093333pt;}
.xc_c01335{left:613.626667pt;}
.xd4_c01335{left:615.173333pt;}
.x6d_c01335{left:618.240000pt;}
.x30_c01335{left:621.306667pt;}
.xfb_c01335{left:622.853333pt;}
.x41_c01335{left:624.386667pt;}
.x53_c01335{left:625.920000pt;}
.x8e_c01335{left:628.226667pt;}
.x88_c01335{left:629.760000pt;}
.x24_c01335{left:633.600000pt;}
.x8f_c01335{left:635.133333pt;}
.x69_c01335{left:638.973333pt;}
.xbb_c01335{left:641.280000pt;}
.x4a_c01335{left:642.813333pt;}
.x119_c01335{left:644.346667pt;}
.x13_c01335{left:646.653333pt;}
.xc4_c01335{left:648.960000pt;}
.x5f_c01335{left:652.800000pt;}
.x42_c01335{left:655.106667pt;}
.x106_c01335{left:656.640000pt;}
.xb9_c01335{left:659.706667pt;}
.xa0_c01335{left:662.013333pt;}
.xd0_c01335{left:664.320000pt;}
.xe5_c01335{left:665.853333pt;}
.x54_c01335{left:668.160000pt;}
.xcd_c01335{left:669.693333pt;}
.x75_c01335{left:671.226667pt;}
.x109_c01335{left:673.533333pt;}
.xd_c01335{left:675.066667pt;}
.xb0_c01335{left:677.373333pt;}
.x96_c01335{left:680.453333pt;}
.x38_c01335{left:682.746667pt;}
.x6e_c01335{left:684.293333pt;}
.x7b_c01335{left:686.586667pt;}
.x31_c01335{left:688.133333pt;}
.x11a_c01335{left:691.200000pt;}
.x4b_c01335{left:692.733333pt;}
.x14_c01335{left:695.813333pt;}
.x11b_c01335{left:697.346667pt;}
.x9c_c01335{left:698.880000pt;}
.xee_c01335{left:700.413333pt;}
.xdf_c01335{left:701.946667pt;}
.x43_c01335{left:705.026667pt;}
.x60_c01335{left:708.093333pt;}
.xef_c01335{left:709.626667pt;}
.x4c_c01335{left:711.173333pt;}
.xf6_c01335{left:714.240000pt;}
.x97_c01335{left:716.546667pt;}
.x7c_c01335{left:718.080000pt;}
.xe6_c01335{left:719.613333pt;}
.x55_c01335{left:721.920000pt;}
.x6a_c01335{left:725.760000pt;}
.xd1_c01335{left:730.373333pt;}
.x82_c01335{left:731.906667pt;}
.x15_c01335{left:733.440000pt;}
.x32_c01335{left:736.506667pt;}
.x98_c01335{left:738.053333pt;}
.x76_c01335{left:741.120000pt;}
.x33_c01335{left:744.186667pt;}
.x56_c01335{left:747.266667pt;}
.x10c_c01335{left:748.800000pt;}
.x6b_c01335{left:751.106667pt;}
.x11c_c01335{left:752.640000pt;}
.xfe_c01335{left:754.946667pt;}
.xe2_c01335{left:758.786667pt;}
.xd5_c01335{left:761.853333pt;}
.xc9_c01335{left:763.386667pt;}
.xe7_c01335{left:764.933333pt;}
.xb1_c01335{left:770.306667pt;}
.x103_c01335{left:771.840000pt;}
.xc1_c01335{left:774.146667pt;}
.x11d_c01335{left:777.213333pt;}
.xf7_c01335{left:779.520000pt;}
.xb2_c01335{left:781.053333pt;}
.xbc_c01335{left:784.133333pt;}
.xff_c01335{left:787.200000pt;}
.xf8_c01335{left:788.733333pt;}
.xfc_c01335{left:790.266667pt;}
.x114_c01335{left:796.413333pt;}
.xac_c01335{left:804.866667pt;}
.xbd_c01335{left:816.386667pt;}
.x104_c01335{left:817.920000pt;}
.xb3_c01335{left:819.453333pt;}
.xb4_c01335{left:829.440000pt;}
.xb5_c01335{left:836.346667pt;}
.xb6_c01335{left:842.493333pt;}
.xf9_c01335{left:882.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1bf46a09c022d6f64a58c40d.woff2')format("woff");}.ff1_c01336{font-family:ff1_c01336;line-height:1.109863;font-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_c01336{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.md0_c01336{transform:matrix(0.104250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104250,0.000000,0.000000,0.250000,0,0);}
.me5_c01336{transform:matrix(0.108325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108325,0.000000,0.000000,0.250000,0,0);}
.mbc_c01336{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.m14f_c01336{transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122575,0.000000,0.000000,0.250000,0,0);}
.m13e_c01336{transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124300,0.000000,0.000000,0.250000,0,0);}
.m155_c01336{transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125250,0.000000,0.000000,0.250000,0,0);}
.m176_c01336{transform:matrix(0.128350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128350,0.000000,0.000000,0.250000,0,0);}
.m96_c01336{transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128675,0.000000,0.000000,0.250000,0,0);}
.m9b_c01336{transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);}
.m166_c01336{transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133350,0.000000,0.000000,0.250000,0,0);}
.ma7_c01336{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.m11c_c01336{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);}
.m18c_c01336{transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138325,0.000000,0.000000,0.250000,0,0);}
.m59_c01336{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.m170_c01336{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m13d_c01336{transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140350,0.000000,0.000000,0.250000,0,0);}
.m141_c01336{transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);}
.m0_c01336{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m30_c01336{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);}
.m8e_c01336{transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147350,0.000000,0.000000,0.250000,0,0);}
.m29_c01336{transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);}
.m167_c01336{transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150025,0.000000,0.000000,0.250000,0,0);}
.m146_c01336{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m144_c01336{transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150175,0.000000,0.000000,0.250000,0,0);}
.m180_c01336{transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150475,0.000000,0.000000,0.250000,0,0);}
.m150_c01336{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.mc0_c01336{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.m9f_c01336{transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);}
.m18b_c01336{transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153500,0.000000,0.000000,0.250000,0,0);}
.m145_c01336{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m17d_c01336{transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155725,0.000000,0.000000,0.250000,0,0);}
.m79_c01336{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m45_c01336{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);}
.meb_c01336{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);}
.m7c_c01336{transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157225,0.000000,0.000000,0.250000,0,0);}
.m1_c01336{transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157750,0.000000,0.000000,0.250000,0,0);}
.m122_c01336{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);}
.m77_c01336{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m15b_c01336{transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);}
.m12a_c01336{transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159000,0.000000,0.000000,0.250000,0,0);}
.m14d_c01336{transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159525,0.000000,0.000000,0.250000,0,0);}
.m9d_c01336{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);}
.m28_c01336{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m17b_c01336{transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160825,0.000000,0.000000,0.250000,0,0);}
.mcc_c01336{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.m16a_c01336{transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);}
.m14b_c01336{transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);}
.m129_c01336{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m12e_c01336{transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164150,0.000000,0.000000,0.250000,0,0);}
.m17f_c01336{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.mb8_c01336{transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);}
.m13a_c01336{transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164500,0.000000,0.000000,0.250000,0,0);}
.m179_c01336{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.m5c_c01336{transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166400,0.000000,0.000000,0.250000,0,0);}
.m164_c01336{transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167400,0.000000,0.000000,0.250000,0,0);}
.mf8_c01336{transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168225,0.000000,0.000000,0.250000,0,0);}
.mf5_c01336{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m95_c01336{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.mae_c01336{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.mad_c01336{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.mc1_c01336{transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169475,0.000000,0.000000,0.250000,0,0);}
.m18d_c01336{transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169675,0.000000,0.000000,0.250000,0,0);}
.m154_c01336{transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169800,0.000000,0.000000,0.250000,0,0);}
.m188_c01336{transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169950,0.000000,0.000000,0.250000,0,0);}
.mf0_c01336{transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170250,0.000000,0.000000,0.250000,0,0);}
.m105_c01336{transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170550,0.000000,0.000000,0.250000,0,0);}
.m163_c01336{transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170750,0.000000,0.000000,0.250000,0,0);}
.me0_c01336{transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171750,0.000000,0.000000,0.250000,0,0);}
.m84_c01336{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m15e_c01336{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);}
.m15f_c01336{transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);}
.md2_c01336{transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173800,0.000000,0.000000,0.250000,0,0);}
.m3d_c01336{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.m159_c01336{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.mab_c01336{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m162_c01336{transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);}
.md4_c01336{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.m118_c01336{transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);}
.m16e_c01336{transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175525,0.000000,0.000000,0.250000,0,0);}
.m5b_c01336{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);}
.m7f_c01336{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.mdc_c01336{transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177600,0.000000,0.000000,0.250000,0,0);}
.m147_c01336{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);}
.m130_c01336{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.m173_c01336{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.mc6_c01336{transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);}
.m15d_c01336{transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);}
.m165_c01336{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m139_c01336{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.mfb_c01336{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);}
.m117_c01336{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);}
.m183_c01336{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m6b_c01336{transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181875,0.000000,0.000000,0.250000,0,0);}
.mb6_c01336{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.m16b_c01336{transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183825,0.000000,0.000000,0.250000,0,0);}
.m9a_c01336{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m10f_c01336{transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184925,0.000000,0.000000,0.250000,0,0);}
.mde_c01336{transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185025,0.000000,0.000000,0.250000,0,0);}
.mc5_c01336{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.maa_c01336{transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);}
.m119_c01336{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.m121_c01336{transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186775,0.000000,0.000000,0.250000,0,0);}
.mc2_c01336{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);}
.md8_c01336{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);}
.m8c_c01336{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m11e_c01336{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);}
.m17a_c01336{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.mff_c01336{transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187650,0.000000,0.000000,0.250000,0,0);}
.m6a_c01336{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m124_c01336{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);}
.m85_c01336{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m6e_c01336{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);}
.m114_c01336{transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190275,0.000000,0.000000,0.250000,0,0);}
.m187_c01336{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.m13b_c01336{transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190925,0.000000,0.000000,0.250000,0,0);}
.mf_c01336{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);}
.m10e_c01336{transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192100,0.000000,0.000000,0.250000,0,0);}
.m16f_c01336{transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193000,0.000000,0.000000,0.250000,0,0);}
.m47_c01336{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.m158_c01336{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.m177_c01336{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);}
.mdd_c01336{transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193525,0.000000,0.000000,0.250000,0,0);}
.m127_c01336{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);}
.m13c_c01336{transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193875,0.000000,0.000000,0.250000,0,0);}
.ma_c01336{transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);}
.m11d_c01336{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.mfd_c01336{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.m181_c01336{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);}
.me7_c01336{transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194425,0.000000,0.000000,0.250000,0,0);}
.m12f_c01336{transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195475,0.000000,0.000000,0.250000,0,0);}
.m178_c01336{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);}
.m107_c01336{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);}
.m4b_c01336{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);}
.m16c_c01336{transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);}
.mf2_c01336{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);}
.m143_c01336{transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197150,0.000000,0.000000,0.250000,0,0);}
.m26_c01336{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m2c_c01336{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);}
.m161_c01336{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);}
.m171_c01336{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);}
.m14c_c01336{transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199400,0.000000,0.000000,0.250000,0,0);}
.m100_c01336{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);}
.m152_c01336{transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);}
.m191_c01336{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);}
.m74_c01336{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m2b_c01336{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.m185_c01336{transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);}
.mb4_c01336{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m10_c01336{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.md1_c01336{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);}
.m172_c01336{transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202275,0.000000,0.000000,0.250000,0,0);}
.m73_c01336{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);}
.m7b_c01336{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m80_c01336{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);}
.mdf_c01336{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.m112_c01336{transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203950,0.000000,0.000000,0.250000,0,0);}
.m69_c01336{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.md9_c01336{transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);}
.m31_c01336{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.mf6_c01336{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.m20_c01336{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);}
.m153_c01336{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);}
.m12b_c01336{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);}
.md6_c01336{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m116_c01336{transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);}
.m15c_c01336{transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);}
.m5a_c01336{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.m138_c01336{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m91_c01336{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);}
.m39_c01336{transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207250,0.000000,0.000000,0.250000,0,0);}
.ma8_c01336{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);}
.m37_c01336{transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207325,0.000000,0.000000,0.250000,0,0);}
.m182_c01336{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);}
.m15a_c01336{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);}
.m76_c01336{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);}
.m149_c01336{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mb_c01336{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m108_c01336{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.m8_c01336{transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209175,0.000000,0.000000,0.250000,0,0);}
.m156_c01336{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);}
.m90_c01336{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);}
.m61_c01336{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m70_c01336{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m38_c01336{transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210675,0.000000,0.000000,0.250000,0,0);}
.m115_c01336{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);}
.m36_c01336{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);}
.m168_c01336{transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);}
.mb7_c01336{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m6c_c01336{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);}
.ma3_c01336{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);}
.m14a_c01336{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m75_c01336{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.m93_c01336{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.maf_c01336{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);}
.m8d_c01336{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.mda_c01336{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);}
.med_c01336{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);}
.m78_c01336{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);}
.m64_c01336{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.m160_c01336{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);}
.m148_c01336{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m56_c01336{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mfe_c01336{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.m186_c01336{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.mc9_c01336{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.m13_c01336{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);}
.me1_c01336{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);}
.m43_c01336{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m7a_c01336{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);}
.m4a_c01336{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);}
.m11a_c01336{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);}
.m87_c01336{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);}
.m2a_c01336{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);}
.mc_c01336{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m17e_c01336{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);}
.ma6_c01336{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);}
.m6d_c01336{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.mee_c01336{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);}
.m49_c01336{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m157_c01336{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m18a_c01336{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m174_c01336{transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222725,0.000000,0.000000,0.250000,0,0);}
.m104_c01336{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);}
.m175_c01336{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);}
.md3_c01336{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);}
.m97_c01336{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m94_c01336{transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);}
.m53_c01336{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);}
.m1e_c01336{transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);}
.m3b_c01336{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);}
.m189_c01336{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.mea_c01336{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);}
.m8f_c01336{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);}
.mcf_c01336{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);}
.mba_c01336{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.m142_c01336{transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);}
.m132_c01336{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);}
.m17c_c01336{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);}
.m83_c01336{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);}
.mac_c01336{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);}
.md7_c01336{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);}
.m54_c01336{transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227275,0.000000,0.000000,0.250000,0,0);}
.m126_c01336{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.m60_c01336{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);}
.m109_c01336{transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);}
.m102_c01336{transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);}
.m3a_c01336{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);}
.m190_c01336{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);}
.mca_c01336{transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);}
.md5_c01336{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);}
.m71_c01336{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);}
.m65_c01336{transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232600,0.000000,0.000000,0.250000,0,0);}
.m5d_c01336{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);}
.m2e_c01336{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);}
.m22_c01336{transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);}
.mf3_c01336{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);}
.m125_c01336{transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);}
.m32_c01336{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.mbb_c01336{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);}
.m14e_c01336{transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234950,0.000000,0.000000,0.250000,0,0);}
.m103_c01336{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);}
.md_c01336{transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235250,0.000000,0.000000,0.250000,0,0);}
.m184_c01336{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);}
.mf4_c01336{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);}
.m46_c01336{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);}
.me4_c01336{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);}
.m8b_c01336{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);}
.mc3_c01336{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);}
.m120_c01336{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);}
.m7d_c01336{transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);}
.m89_c01336{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m11_c01336{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);}
.m113_c01336{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);}
.mf9_c01336{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);}
.mef_c01336{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m11f_c01336{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m110_c01336{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m99_c01336{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);}
.m123_c01336{transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239575,0.000000,0.000000,0.250000,0,0);}
.m58_c01336{transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);}
.m111_c01336{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);}
.m16d_c01336{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);}
.m9e_c01336{transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240600,0.000000,0.000000,0.250000,0,0);}
.m11b_c01336{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.me6_c01336{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);}
.m133_c01336{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.m169_c01336{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);}
.me9_c01336{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m128_c01336{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);}
.m106_c01336{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mfa_c01336{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);}
.m10d_c01336{transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244325,0.000000,0.000000,0.250000,0,0);}
.m9_c01336{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);}
.m10b_c01336{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.mec_c01336{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);}
.m63_c01336{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.m8a_c01336{transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247350,0.000000,0.000000,0.250000,0,0);}
.me3_c01336{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m9c_c01336{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);}
.m131_c01336{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);}
.ma1_c01336{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);}
.ma9_c01336{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);}
.me8_c01336{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);}
.m66_c01336{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m3_c01336{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);}
.m92_c01336{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);}
.m40_c01336{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);}
.m18_c01336{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);}
.m12_c01336{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01336{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m27_c01336{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m23_c01336{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);}
.m4e_c01336{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m51_c01336{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);}
.m3e_c01336{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);}
.m72_c01336{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c01336{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);}
.m24_c01336{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01336{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mbe_c01336{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);}
.me_c01336{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c01336{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);}
.m1c_c01336{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01336{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01336{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);}
.m42_c01336{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m33_c01336{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mdb_c01336{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);}
.mc4_c01336{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m21_c01336{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mcd_c01336{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m81_c01336{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m10a_c01336{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01336{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01336{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m98_c01336{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m15_c01336{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);}
.m4f_c01336{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m34_c01336{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m14_c01336{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01336{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mfc_c01336{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);}
.m44_c01336{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);}
.m19_c01336{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mbd_c01336{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);}
.m151_c01336{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m140_c01336{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m41_c01336{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mbf_c01336{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01336{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m50_c01336{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);}
.m86_c01336{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mce_c01336{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.mb3_c01336{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01336{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);}
.m12c_c01336{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.mc7_c01336{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01336{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);}
.m2_c01336{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01336{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);}
.m67_c01336{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf7_c01336{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);}
.m52_c01336{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m6_c01336{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m10c_c01336{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mb5_c01336{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);}
.ma2_c01336{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01336{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m17_c01336{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01336{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.ma0_c01336{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m7e_c01336{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);}
.m101_c01336{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.mb2_c01336{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m62_c01336{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);}
.m55_c01336{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m7_c01336{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m18e_c01336{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m48_c01336{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m134_c01336{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m82_c01336{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);}
.m13f_c01336{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01336{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mb1_c01336{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m12d_c01336{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m137_c01336{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);}
.me2_c01336{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m57_c01336{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.m18f_c01336{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);}
.mb0_c01336{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.mf1_c01336{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m135_c01336{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);}
.ma4_c01336{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mcb_c01336{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m88_c01336{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.ma5_c01336{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m136_c01336{transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.285000,0.000000,0.000000,0.250000,0,0);}
.mb9_c01336{transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.445000,0.000000,0.000000,0.250000,0,0);}
.m68_c01336{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m25_c01336{transform:matrix(2.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.332500,0.000000,0.000000,0.250000,0,0);}
.mc8_c01336{transform:matrix(2.997500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.997500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.997500,0.000000,0.000000,0.250000,0,0);}
.v0_c01336{vertical-align:0.000000px;}
.v1_c01336{vertical-align:3.420000px;}
.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:-13.412168px;}
.ws2_c01336{word-spacing:0.000000px;}
.ws1_c01336{word-spacing:16.350120px;}
.fc0_c01336{color:transparent;}
.fs0_c01336{font-size:3.456000px;}
.fs2_c01336{font-size:6.000000px;}
.fs15_c01336{font-size:6.900000px;}
.fs1e_c01336{font-size:10.380000px;}
.fsf_c01336{font-size:13.800000px;}
.fs1b_c01336{font-size:17.280000px;}
.fs19_c01336{font-size:20.760000px;}
.fs1f_c01336{font-size:24.180000px;}
.fs1d_c01336{font-size:27.660000px;}
.fs13_c01336{font-size:31.080000px;}
.fs16_c01336{font-size:34.560000px;}
.fs10_c01336{font-size:38.040000px;}
.fs17_c01336{font-size:41.460000px;}
.fs1a_c01336{font-size:44.940000px;}
.fsa_c01336{font-size:48.360000px;}
.fs14_c01336{font-size:51.840000px;}
.fse_c01336{font-size:55.320000px;}
.fsd_c01336{font-size:58.740000px;}
.fs11_c01336{font-size:62.220000px;}
.fs12_c01336{font-size:65.640000px;}
.fs9_c01336{font-size:69.120000px;}
.fs3_c01336{font-size:72.600000px;}
.fsc_c01336{font-size:76.020000px;}
.fs8_c01336{font-size:79.500000px;}
.fs18_c01336{font-size:82.920000px;}
.fs7_c01336{font-size:86.400000px;}
.fs6_c01336{font-size:89.880000px;}
.fs1c_c01336{font-size:93.300000px;}
.fsb_c01336{font-size:96.780000px;}
.fs1_c01336{font-size:100.200000px;}
.fs20_c01336{font-size:107.160000px;}
.fs5_c01336{font-size:120.960000px;}
.fs4_c01336{font-size:138.240000px;}
.y0_c01336{bottom:0.000000px;}
.y1df_c01336{bottom:171.930000px;}
.y1de_c01336{bottom:173.670000px;}
.y1dd_c01336{bottom:174.525000px;}
.y1da_c01336{bottom:177.990000px;}
.y1d5_c01336{bottom:179.715000px;}
.y1dc_c01336{bottom:180.570000px;}
.y1d9_c01336{bottom:184.035000px;}
.y1d8_c01336{bottom:184.890000px;}
.y1d4_c01336{bottom:185.760000px;}
.y1d6_c01336{bottom:188.355000px;}
.y1d7_c01336{bottom:190.080000px;}
.y1db_c01336{bottom:190.950000px;}
.y1d2_c01336{bottom:191.805000px;}
.y1d3_c01336{bottom:192.675000px;}
.y1d1_c01336{bottom:193.530000px;}
.y1ce_c01336{bottom:194.400000px;}
.y1cf_c01336{bottom:196.125000px;}
.y1d0_c01336{bottom:198.720000px;}
.y1cc_c01336{bottom:212.550000px;}
.y1ca_c01336{bottom:213.405000px;}
.y1c9_c01336{bottom:214.275000px;}
.y1c8_c01336{bottom:215.130000px;}
.y1cb_c01336{bottom:216.000000px;}
.y1cd_c01336{bottom:216.870000px;}
.y1c7_c01336{bottom:220.320000px;}
.y1c6_c01336{bottom:231.555000px;}
.y1c5_c01336{bottom:234.150000px;}
.y1c4_c01336{bottom:235.875000px;}
.y1c2_c01336{bottom:250.560000px;}
.y1c0_c01336{bottom:253.155000px;}
.y1be_c01336{bottom:254.880000px;}
.y1bd_c01336{bottom:255.750000px;}
.y1bc_c01336{bottom:257.475000px;}
.y1c1_c01336{bottom:258.330000px;}
.y1bf_c01336{bottom:259.200000px;}
.y1c3_c01336{bottom:260.925000px;}
.y1ba_c01336{bottom:271.290000px;}
.y1b7_c01336{bottom:276.480000px;}
.y1b5_c01336{bottom:278.205000px;}
.y1b6_c01336{bottom:279.075000px;}
.y1b9_c01336{bottom:279.930000px;}
.y1bb_c01336{bottom:285.120000px;}
.y1b8_c01336{bottom:286.845000px;}
.y1b3_c01336{bottom:293.760000px;}
.y1b0_c01336{bottom:298.080000px;}
.y1af_c01336{bottom:298.950000px;}
.y1b2_c01336{bottom:299.805000px;}
.y1b1_c01336{bottom:307.590000px;}
.y1b4_c01336{bottom:308.445000px;}
.y1ae_c01336{bottom:315.360000px;}
.y1ab_c01336{bottom:317.085000px;}
.y1a8_c01336{bottom:317.955000px;}
.y1a9_c01336{bottom:318.810000px;}
.y1ad_c01336{bottom:320.550000px;}
.y1ac_c01336{bottom:321.405000px;}
.y1aa_c01336{bottom:323.130000px;}
.y1a7_c01336{bottom:324.000000px;}
.y1a6_c01336{bottom:336.960000px;}
.y1a5_c01336{bottom:337.830000px;}
.y1a3_c01336{bottom:338.685000px;}
.y1a4_c01336{bottom:343.875000px;}
.y1a2_c01336{bottom:346.470000px;}
.y1a1_c01336{bottom:355.110000px;}
.y1a0_c01336{bottom:356.835000px;}
.y19e_c01336{bottom:357.690000px;}
.y19d_c01336{bottom:359.430000px;}
.y19b_c01336{bottom:360.285000px;}
.y19c_c01336{bottom:361.155000px;}
.y19f_c01336{bottom:362.880000px;}
.y19a_c01336{bottom:365.475000px;}
.y198_c01336{bottom:375.840000px;}
.y194_c01336{bottom:377.565000px;}
.y197_c01336{bottom:378.435000px;}
.y192_c01336{bottom:379.290000px;}
.y199_c01336{bottom:380.160000px;}
.y195_c01336{bottom:383.610000px;}
.y196_c01336{bottom:384.480000px;}
.y193_c01336{bottom:385.350000px;}
.y191_c01336{bottom:397.440000px;}
.y190_c01336{bottom:398.310000px;}
.y18f_c01336{bottom:399.165000px;}
.y18a_c01336{bottom:400.035000px;}
.y187_c01336{bottom:400.890000px;}
.y18e_c01336{bottom:401.760000px;}
.y188_c01336{bottom:402.630000px;}
.y18d_c01336{bottom:404.355000px;}
.y18c_c01336{bottom:405.210000px;}
.y18b_c01336{bottom:406.080000px;}
.y189_c01336{bottom:406.950000px;}
.y186_c01336{bottom:407.805000px;}
.y185_c01336{bottom:416.445000px;}
.y17d_c01336{bottom:417.315000px;}
.y183_c01336{bottom:419.910000px;}
.y17f_c01336{bottom:420.765000px;}
.y184_c01336{bottom:421.635000px;}
.y182_c01336{bottom:422.490000px;}
.y180_c01336{bottom:425.085000px;}
.y181_c01336{bottom:425.955000px;}
.y17c_c01336{bottom:427.680000px;}
.y17e_c01336{bottom:430.275000px;}
.y179_c01336{bottom:438.045000px;}
.y178_c01336{bottom:441.510000px;}
.y177_c01336{bottom:442.365000px;}
.y17b_c01336{bottom:444.090000px;}
.y17a_c01336{bottom:444.960000px;}
.y175_c01336{bottom:445.830000px;}
.y176_c01336{bottom:446.685000px;}
.y174_c01336{bottom:458.790000px;}
.y173_c01336{bottom:462.240000px;}
.y171_c01336{bottom:463.965000px;}
.y172_c01336{bottom:465.690000px;}
.y16e_c01336{bottom:466.560000px;}
.y170_c01336{bottom:467.430000px;}
.y16f_c01336{bottom:474.330000px;}
.y16c_c01336{bottom:479.520000px;}
.y169_c01336{bottom:481.245000px;}
.y16a_c01336{bottom:482.115000px;}
.y16b_c01336{bottom:482.970000px;}
.y168_c01336{bottom:488.160000px;}
.y167_c01336{bottom:489.030000px;}
.y16d_c01336{bottom:492.480000px;}
.y165_c01336{bottom:498.525000px;}
.y164_c01336{bottom:499.395000px;}
.y163_c01336{bottom:500.250000px;}
.y166_c01336{bottom:501.120000px;}
.y162_c01336{bottom:501.990000px;}
.y161_c01336{bottom:504.570000px;}
.y160_c01336{bottom:505.440000px;}
.y15d_c01336{bottom:520.125000px;}
.y15c_c01336{bottom:520.995000px;}
.y15a_c01336{bottom:521.850000px;}
.y15e_c01336{bottom:523.590000px;}
.y158_c01336{bottom:524.445000px;}
.y15b_c01336{bottom:527.040000px;}
.y15f_c01336{bottom:527.910000px;}
.y159_c01336{bottom:528.765000px;}
.y157_c01336{bottom:540.870000px;}
.y156_c01336{bottom:543.450000px;}
.y155_c01336{bottom:546.045000px;}
.y154_c01336{bottom:549.510000px;}
.y150_c01336{bottom:557.280000px;}
.y153_c01336{bottom:559.005000px;}
.y151_c01336{bottom:562.470000px;}
.y14f_c01336{bottom:564.195000px;}
.y14d_c01336{bottom:565.050000px;}
.y152_c01336{bottom:565.920000px;}
.y14c_c01336{bottom:567.645000px;}
.y14e_c01336{bottom:570.240000px;}
.y14a_c01336{bottom:581.475000px;}
.y147_c01336{bottom:583.200000px;}
.y146_c01336{bottom:584.070000px;}
.y14b_c01336{bottom:584.925000px;}
.y148_c01336{bottom:585.795000px;}
.y144_c01336{bottom:586.650000px;}
.y149_c01336{bottom:587.520000px;}
.y145_c01336{bottom:589.245000px;}
.y143_c01336{bottom:591.840000px;}
.y1e2_c01336{bottom:593.565000px;}
.y142_c01336{bottom:602.205000px;}
.y13f_c01336{bottom:603.930000px;}
.y13e_c01336{bottom:604.800000px;}
.y13b_c01336{bottom:605.670000px;}
.y141_c01336{bottom:607.395000px;}
.y140_c01336{bottom:608.250000px;}
.y13d_c01336{bottom:609.990000px;}
.y13c_c01336{bottom:610.845000px;}
.y13a_c01336{bottom:611.715000px;}
.y137_c01336{bottom:623.805000px;}
.y139_c01336{bottom:625.530000px;}
.y132_c01336{bottom:626.400000px;}
.y138_c01336{bottom:627.270000px;}
.y133_c01336{bottom:628.125000px;}
.y136_c01336{bottom:628.995000px;}
.y135_c01336{bottom:629.850000px;}
.y134_c01336{bottom:630.720000px;}
.y131_c01336{bottom:643.680000px;}
.y12f_c01336{bottom:644.550000px;}
.y12e_c01336{bottom:645.405000px;}
.y12d_c01336{bottom:647.130000px;}
.y130_c01336{bottom:648.870000px;}
.y12c_c01336{bottom:652.320000px;}
.y12a_c01336{bottom:661.830000px;}
.y12b_c01336{bottom:662.685000px;}
.y129_c01336{bottom:664.410000px;}
.y125_c01336{bottom:665.280000px;}
.y128_c01336{bottom:667.005000px;}
.y126_c01336{bottom:667.875000px;}
.y127_c01336{bottom:669.600000px;}
.y124_c01336{bottom:671.325000px;}
.y123_c01336{bottom:680.835000px;}
.y121_c01336{bottom:683.430000px;}
.y11f_c01336{bottom:685.155000px;}
.y11e_c01336{bottom:686.010000px;}
.y122_c01336{bottom:687.750000px;}
.y11d_c01336{bottom:689.475000px;}
.y120_c01336{bottom:690.330000px;}
.y11b_c01336{bottom:703.290000px;}
.y11a_c01336{bottom:705.030000px;}
.y118_c01336{bottom:705.885000px;}
.y117_c01336{bottom:706.755000px;}
.y11c_c01336{bottom:708.480000px;}
.y119_c01336{bottom:710.205000px;}
.y116_c01336{bottom:711.075000px;}
.y115_c01336{bottom:712.800000px;}
.y113_c01336{bottom:722.310000px;}
.y114_c01336{bottom:723.165000px;}
.y112_c01336{bottom:724.890000px;}
.y10e_c01336{bottom:725.760000px;}
.y10d_c01336{bottom:726.630000px;}
.y10b_c01336{bottom:727.485000px;}
.y10c_c01336{bottom:728.355000px;}
.y111_c01336{bottom:729.210000px;}
.y110_c01336{bottom:730.080000px;}
.y10f_c01336{bottom:731.805000px;}
.y10a_c01336{bottom:743.040000px;}
.y108_c01336{bottom:745.635000px;}
.y104_c01336{bottom:746.490000px;}
.y103_c01336{bottom:748.230000px;}
.y109_c01336{bottom:749.085000px;}
.y102_c01336{bottom:749.955000px;}
.y106_c01336{bottom:750.810000px;}
.y105_c01336{bottom:752.550000px;}
.y107_c01336{bottom:764.640000px;}
.y100_c01336{bottom:765.510000px;}
.yfe_c01336{bottom:766.365000px;}
.yfd_c01336{bottom:767.235000px;}
.y101_c01336{bottom:768.960000px;}
.yfb_c01336{bottom:769.830000px;}
.yfc_c01336{bottom:770.685000px;}
.yff_c01336{bottom:772.410000px;}
.yfa_c01336{bottom:783.645000px;}
.yf5_c01336{bottom:786.240000px;}
.yf6_c01336{bottom:787.110000px;}
.yf4_c01336{bottom:788.835000px;}
.yf8_c01336{bottom:791.430000px;}
.yf9_c01336{bottom:792.285000px;}
.yf2_c01336{bottom:793.155000px;}
.yf3_c01336{bottom:794.010000px;}
.yf7_c01336{bottom:797.475000px;}
.yef_c01336{bottom:803.520000px;}
.yf0_c01336{bottom:805.245000px;}
.yee_c01336{bottom:806.970000px;}
.yf1_c01336{bottom:807.840000px;}
.yea_c01336{bottom:808.710000px;}
.ye9_c01336{bottom:811.290000px;}
.ye8_c01336{bottom:812.160000px;}
.yec_c01336{bottom:813.030000px;}
.yeb_c01336{bottom:815.610000px;}
.yed_c01336{bottom:816.480000px;}
.ye7_c01336{bottom:823.395000px;}
.ye0_c01336{bottom:828.570000px;}
.ydf_c01336{bottom:829.440000px;}
.ye3_c01336{bottom:830.310000px;}
.ye6_c01336{bottom:831.165000px;}
.ye1_c01336{bottom:832.035000px;}
.yde_c01336{bottom:833.760000px;}
.ye4_c01336{bottom:835.485000px;}
.ye2_c01336{bottom:838.080000px;}
.ye5_c01336{bottom:842.400000px;}
.ydd_c01336{bottom:844.125000px;}
.ydc_c01336{bottom:847.590000px;}
.yda_c01336{bottom:848.445000px;}
.yd9_c01336{bottom:851.910000px;}
.ydb_c01336{bottom:852.765000px;}
.yd8_c01336{bottom:858.810000px;}
.y1e0_c01336{bottom:860.550000px;}
.y1e1_c01336{bottom:863.130000px;}
.yd4_c01336{bottom:864.870000px;}
.yd6_c01336{bottom:865.725000px;}
.yd0_c01336{bottom:868.320000px;}
.ycf_c01336{bottom:869.190000px;}
.yd7_c01336{bottom:870.045000px;}
.yce_c01336{bottom:870.915000px;}
.yd5_c01336{bottom:871.770000px;}
.yd3_c01336{bottom:872.640000px;}
.yd2_c01336{bottom:873.510000px;}
.yd1_c01336{bottom:874.365000px;}
.ycd_c01336{bottom:885.600000px;}
.ycc_c01336{bottom:886.470000px;}
.yc9_c01336{bottom:888.195000px;}
.ycb_c01336{bottom:889.050000px;}
.yc8_c01336{bottom:890.790000px;}
.yc2_c01336{bottom:891.645000px;}
.yca_c01336{bottom:892.515000px;}
.yc5_c01336{bottom:893.370000px;}
.yc7_c01336{bottom:894.240000px;}
.yc6_c01336{bottom:895.110000px;}
.yc3_c01336{bottom:900.285000px;}
.yc0_c01336{bottom:904.605000px;}
.ybf_c01336{bottom:905.475000px;}
.yc4_c01336{bottom:908.070000px;}
.yba_c01336{bottom:908.925000px;}
.yb8_c01336{bottom:909.795000px;}
.yb7_c01336{bottom:910.650000px;}
.yc1_c01336{bottom:911.520000px;}
.ybe_c01336{bottom:912.390000px;}
.ybc_c01336{bottom:913.245000px;}
.ybd_c01336{bottom:914.115000px;}
.ybb_c01336{bottom:914.970000px;}
.yb9_c01336{bottom:917.565000px;}
.yb3_c01336{bottom:925.350000px;}
.yb4_c01336{bottom:926.205000px;}
.yb2_c01336{bottom:928.800000px;}
.yb5_c01336{bottom:929.670000px;}
.yb1_c01336{bottom:931.395000px;}
.yb0_c01336{bottom:932.250000px;}
.yb6_c01336{bottom:934.845000px;}
.yae_c01336{bottom:946.080000px;}
.yaf_c01336{bottom:947.805000px;}
.yac_c01336{bottom:948.675000px;}
.ya8_c01336{bottom:950.400000px;}
.ya6_c01336{bottom:951.270000px;}
.yaa_c01336{bottom:952.125000px;}
.yad_c01336{bottom:952.995000px;}
.yab_c01336{bottom:953.850000px;}
.ya9_c01336{bottom:955.590000px;}
.ya7_c01336{bottom:956.445000px;}
.ya5_c01336{bottom:965.955000px;}
.ya3_c01336{bottom:968.550000px;}
.ya2_c01336{bottom:970.275000px;}
.y9f_c01336{bottom:971.130000px;}
.y9e_c01336{bottom:972.000000px;}
.ya4_c01336{bottom:972.870000px;}
.ya1_c01336{bottom:974.595000px;}
.ya0_c01336{bottom:975.450000px;}
.y9c_c01336{bottom:987.555000px;}
.y9b_c01336{bottom:988.410000px;}
.y9a_c01336{bottom:990.150000px;}
.y97_c01336{bottom:991.005000px;}
.y98_c01336{bottom:991.875000px;}
.y9d_c01336{bottom:992.730000px;}
.y99_c01336{bottom:994.470000px;}
.y96_c01336{bottom:997.050000px;}
.y95_c01336{bottom:1008.285000px;}
.y92_c01336{bottom:1010.010000px;}
.y94_c01336{bottom:1010.880000px;}
.y90_c01336{bottom:1011.750000px;}
.y91_c01336{bottom:1012.605000px;}
.y93_c01336{bottom:1013.475000px;}
.y8e_c01336{bottom:1016.070000px;}
.y8f_c01336{bottom:1020.390000px;}
.y8d_c01336{bottom:1025.565000px;}
.y8c_c01336{bottom:1028.160000px;}
.y89_c01336{bottom:1029.885000px;}
.y85_c01336{bottom:1030.755000px;}
.y8a_c01336{bottom:1031.610000px;}
.y86_c01336{bottom:1032.480000px;}
.y84_c01336{bottom:1033.350000px;}
.y8b_c01336{bottom:1034.205000px;}
.y88_c01336{bottom:1035.930000px;}
.y87_c01336{bottom:1036.800000px;}
.y83_c01336{bottom:1037.670000px;}
.y82_c01336{bottom:1042.845000px;}
.y81_c01336{bottom:1047.165000px;}
.y7f_c01336{bottom:1049.760000px;}
.y7d_c01336{bottom:1051.485000px;}
.y7e_c01336{bottom:1052.355000px;}
.y80_c01336{bottom:1053.210000px;}
.y7c_c01336{bottom:1067.910000px;}
.y7b_c01336{bottom:1069.635000px;}
.y78_c01336{bottom:1072.230000px;}
.y77_c01336{bottom:1073.085000px;}
.y79_c01336{bottom:1073.955000px;}
.y7a_c01336{bottom:1076.550000px;}
.y76_c01336{bottom:1080.000000px;}
.y75_c01336{bottom:1089.510000px;}
.y74_c01336{bottom:1090.365000px;}
.y6f_c01336{bottom:1093.830000px;}
.y73_c01336{bottom:1095.555000px;}
.y72_c01336{bottom:1096.410000px;}
.y70_c01336{bottom:1098.150000px;}
.y71_c01336{bottom:1099.005000px;}
.y6e_c01336{bottom:1099.875000px;}
.y6c_c01336{bottom:1110.240000px;}
.y6d_c01336{bottom:1111.110000px;}
.y6b_c01336{bottom:1112.835000px;}
.y69_c01336{bottom:1113.690000px;}
.y6a_c01336{bottom:1114.560000px;}
.y67_c01336{bottom:1116.285000px;}
.y68_c01336{bottom:1118.010000px;}
.y66_c01336{bottom:1118.880000px;}
.y64_c01336{bottom:1132.710000px;}
.y60_c01336{bottom:1133.565000px;}
.y65_c01336{bottom:1134.435000px;}
.y5f_c01336{bottom:1135.290000px;}
.y62_c01336{bottom:1136.160000px;}
.y63_c01336{bottom:1137.030000px;}
.y61_c01336{bottom:1137.885000px;}
.y5e_c01336{bottom:1149.120000px;}
.y5b_c01336{bottom:1150.845000px;}
.y5c_c01336{bottom:1151.715000px;}
.y58_c01336{bottom:1152.570000px;}
.y59_c01336{bottom:1153.440000px;}
.y5d_c01336{bottom:1154.310000px;}
.y5a_c01336{bottom:1155.165000px;}
.y57_c01336{bottom:1156.035000px;}
.y56_c01336{bottom:1169.850000px;}
.y54_c01336{bottom:1171.590000px;}
.y51_c01336{bottom:1174.170000px;}
.y4e_c01336{bottom:1175.040000px;}
.y55_c01336{bottom:1175.910000px;}
.y53_c01336{bottom:1176.765000px;}
.y4f_c01336{bottom:1180.230000px;}
.y50_c01336{bottom:1181.085000px;}
.y4d_c01336{bottom:1188.870000px;}
.y4c_c01336{bottom:1191.450000px;}
.y52_c01336{bottom:1192.320000px;}
.y4b_c01336{bottom:1196.640000px;}
.y4a_c01336{bottom:1198.365000px;}
.y49_c01336{bottom:1199.235000px;}
.y48_c01336{bottom:1200.090000px;}
.y47_c01336{bottom:1210.470000px;}
.y46_c01336{bottom:1212.195000px;}
.y40_c01336{bottom:1213.920000px;}
.y43_c01336{bottom:1215.645000px;}
.y3f_c01336{bottom:1217.370000px;}
.y42_c01336{bottom:1219.110000px;}
.y41_c01336{bottom:1219.965000px;}
.y44_c01336{bottom:1222.560000px;}
.y45_c01336{bottom:1223.430000px;}
.y3d_c01336{bottom:1232.070000px;}
.y3e_c01336{bottom:1233.795000px;}
.y3b_c01336{bottom:1234.650000px;}
.y38_c01336{bottom:1235.520000px;}
.y39_c01336{bottom:1237.245000px;}
.y3c_c01336{bottom:1238.115000px;}
.y3a_c01336{bottom:1239.840000px;}
.y36_c01336{bottom:1251.930000px;}
.y34_c01336{bottom:1253.670000px;}
.y31_c01336{bottom:1254.525000px;}
.y2f_c01336{bottom:1255.395000px;}
.y37_c01336{bottom:1256.250000px;}
.y35_c01336{bottom:1257.990000px;}
.y2e_c01336{bottom:1258.845000px;}
.y32_c01336{bottom:1260.570000px;}
.y2d_c01336{bottom:1261.440000px;}
.y30_c01336{bottom:1269.210000px;}
.y33_c01336{bottom:1270.950000px;}
.y29_c01336{bottom:1271.805000px;}
.y28_c01336{bottom:1273.530000px;}
.y26_c01336{bottom:1274.400000px;}
.y2b_c01336{bottom:1276.995000px;}
.y2a_c01336{bottom:1277.850000px;}
.y27_c01336{bottom:1279.590000px;}
.y25_c01336{bottom:1281.315000px;}
.y2c_c01336{bottom:1282.170000px;}
.y24_c01336{bottom:1289.085000px;}
.y22_c01336{bottom:1290.810000px;}
.y21_c01336{bottom:1291.680000px;}
.y1f_c01336{bottom:1296.870000px;}
.y23_c01336{bottom:1297.725000px;}
.y1e_c01336{bottom:1298.595000px;}
.y20_c01336{bottom:1301.190000px;}
.y1d_c01336{bottom:1314.150000px;}
.y19_c01336{bottom:1315.875000px;}
.y1b_c01336{bottom:1318.470000px;}
.y16_c01336{bottom:1319.325000px;}
.y17_c01336{bottom:1320.195000px;}
.y18_c01336{bottom:1321.050000px;}
.y1a_c01336{bottom:1321.920000px;}
.y15_c01336{bottom:1322.790000px;}
.y1c_c01336{bottom:1328.835000px;}
.y12_c01336{bottom:1335.750000px;}
.y11_c01336{bottom:1336.605000px;}
.y14_c01336{bottom:1338.330000px;}
.y10_c01336{bottom:1340.070000px;}
.y13_c01336{bottom:1340.925000px;}
.ye_c01336{bottom:1355.610000px;}
.yc_c01336{bottom:1356.480000px;}
.yb_c01336{bottom:1357.350000px;}
.yd_c01336{bottom:1361.670000px;}
.ya_c01336{bottom:1362.525000px;}
.yf_c01336{bottom:1363.395000px;}
.y1e3_c01336{bottom:1377.210000px;}
.y9_c01336{bottom:1382.400000px;}
.y2_c01336{bottom:1383.270000px;}
.y5_c01336{bottom:1384.125000px;}
.y6_c01336{bottom:1384.995000px;}
.y7_c01336{bottom:1386.720000px;}
.y4_c01336{bottom:1387.590000px;}
.y3_c01336{bottom:1389.315000px;}
.y8_c01336{bottom:1391.040000px;}
.y1_c01336{bottom:1439.430000px;}
.h2_c01336{height:3.110063px;}
.h4_c01336{height:5.399414px;}
.h17_c01336{height:6.209326px;}
.h20_c01336{height:9.340986px;}
.h11_c01336{height:12.418652px;}
.h1d_c01336{height:15.550313px;}
.h1b_c01336{height:18.681973px;}
.h21_c01336{height:21.759639px;}
.h1f_c01336{height:24.891299px;}
.h15_c01336{height:27.968965px;}
.h18_c01336{height:31.100625px;}
.h12_c01336{height:34.232285px;}
.h19_c01336{height:37.309951px;}
.h1c_c01336{height:40.441611px;}
.hc_c01336{height:43.519277px;}
.h16_c01336{height:46.650937px;}
.h10_c01336{height:49.782598px;}
.hf_c01336{height:52.860264px;}
.h13_c01336{height:55.991924px;}
.h14_c01336{height:59.069590px;}
.hb_c01336{height:62.201250px;}
.h5_c01336{height:65.332910px;}
.he_c01336{height:68.410576px;}
.ha_c01336{height:71.542236px;}
.h1a_c01336{height:74.619902px;}
.h9_c01336{height:77.751563px;}
.h8_c01336{height:80.883223px;}
.h1e_c01336{height:83.960889px;}
.hd_c01336{height:87.092549px;}
.h3_c01336{height:90.170215px;}
.h22_c01336{height:96.433535px;}
.h7_c01336{height:108.852188px;}
.h6_c01336{height:124.402500px;}
.h1_c01336{height:1513.500000px;}
.h0_c01336{height:1513.725000px;}
.w0_c01336{width:1083.450000px;}
.w1_c01336{width:1083.750000px;}
.x0_c01336{left:0.000000px;}
.xe9_c01336{left:76.890000px;}
.x111_c01336{left:122.685000px;}
.x112_c01336{left:127.875000px;}
.xea_c01336{left:165.885000px;}
.xf2_c01336{left:185.760000px;}
.xeb_c01336{left:187.485000px;}
.xf6_c01336{left:190.080000px;}
.xb6_c01336{left:191.805000px;}
.xa6_c01336{left:203.040000px;}
.xa0_c01336{left:204.765000px;}
.xb7_c01336{left:209.085000px;}
.x9b_c01336{left:212.550000px;}
.x104_c01336{left:216.000000px;}
.xbf_c01336{left:220.320000px;}
.xec_c01336{left:223.770000px;}
.xac_c01336{left:225.510000px;}
.x9c_c01336{left:227.235000px;}
.x85_c01336{left:229.830000px;}
.xbc_c01336{left:232.410000px;}
.xd4_c01336{left:234.150000px;}
.xad_c01336{left:235.875000px;}
.x34_c01336{left:237.600375px;}
.x23_c01336{left:240.195000px;}
.x4e_c01336{left:242.790000px;}
.x2_c01336{left:245.370000px;}
.x54_c01336{left:247.110000px;}
.x12_c01336{left:248.835000px;}
.x8a_c01336{left:253.155000px;}
.x7e_c01336{left:255.750000px;}
.x93_c01336{left:259.200000px;}
.x5d_c01336{left:262.650000px;}
.xb8_c01336{left:264.390000px;}
.x46_c01336{left:267.840000px;}
.x65_c01336{left:270.435000px;}
.x24_c01336{left:272.160000px;}
.x81_c01336{left:273.885000px;}
.xf3_c01336{left:276.480000px;}
.x102_c01336{left:279.075000px;}
.x6e_c01336{left:280.800000px;}
.xd9_c01336{left:283.395000px;}
.x55_c01336{left:288.570000px;}
.x66_c01336{left:293.760000px;}
.x56_c01336{left:296.355000px;}
.x1c_c01336{left:298.080000px;}
.x98_c01336{left:300.675000px;}
.x35_c01336{left:303.270000px;}
.x94_c01336{left:305.850000px;}
.x25_c01336{left:309.315000px;}
.x3_c01336{left:311.040000px;}
.xf9_c01336{left:312.765000px;}
.x3d_c01336{left:315.360000px;}
.x4f_c01336{left:319.680000px;}
.x57_c01336{left:322.275000px;}
.x2a_c01336{left:324.870000px;}
.x4_c01336{left:328.320000px;}
.xfa_c01336{left:330.045000px;}
.x5e_c01336{left:336.090000px;}
.x8b_c01336{left:337.830000px;}
.xa_c01336{left:341.280000px;}
.x2b_c01336{left:343.005000px;}
.xa1_c01336{left:345.600000px;}
.x10d_c01336{left:347.325000px;}
.x6f_c01336{left:349.050000px;}
.x10b_c01336{left:350.790000px;}
.x75_c01336{left:353.370000px;}
.xf0_c01336{left:355.110000px;}
.xc0_c01336{left:357.690000px;}
.xe0_c01336{left:359.430000px;}
.x1d_c01336{left:364.605000px;}
.x36_c01336{left:367.200000px;}
.x2c_c01336{left:371.520000px;}
.xb0_c01336{left:374.970000px;}
.xd0_c01336{left:376.710000px;}
.x107_c01336{left:381.885000px;}
.x2d_c01336{left:388.800000px;}
.xb_c01336{left:390.525000px;}
.x1e_c01336{left:393.120000px;}
.xc5_c01336{left:394.845000px;}
.x7f_c01336{left:396.570000px;}
.xc1_c01336{left:398.310000px;}
.x90_c01336{left:401.760000px;}
.x50_c01336{left:407.805000px;}
.xf4_c01336{left:411.270000px;}
.xb1_c01336{left:412.995000px;}
.x1f_c01336{left:414.720000px;}
.x7a_c01336{left:416.445000px;}
.xd7_c01336{left:418.170000px;}
.x5_c01336{left:422.490000px;}
.x47_c01336{left:424.230000px;}
.xfb_c01336{left:425.955000px;}
.x3e_c01336{left:427.680000px;}
.x82_c01336{left:429.405000px;}
.xc_c01336{left:431.130000px;}
.xda_c01336{left:433.725000px;}
.x9d_c01336{left:436.320000px;}
.xbd_c01336{left:441.510000px;}
.x67_c01336{left:443.235000px;}
.x5f_c01336{left:446.685000px;}
.x48_c01336{left:449.280000px;}
.x3f_c01336{left:451.005000px;}
.xe1_c01336{left:452.730000px;}
.x76_c01336{left:456.195000px;}
.x20_c01336{left:459.645000px;}
.x8c_c01336{left:463.110000px;}
.x105_c01336{left:464.835000px;}
.xe3_c01336{left:466.560000px;}
.x13_c01336{left:468.285000px;}
.x83_c01336{left:471.750000px;}
.x7b_c01336{left:475.200000px;}
.xb9_c01336{left:476.925000px;}
.xd_c01336{left:479.520000px;}
.xa7_c01336{left:482.115000px;}
.xfc_c01336{left:484.710000px;}
.x26_c01336{left:486.435000px;}
.x58_c01336{left:488.160000px;}
.xff_c01336{left:489.885000px;}
.xa8_c01336{left:491.610000px;}
.x70_c01336{left:495.075000px;}
.x14_c01336{left:496.800000px;}
.x49_c01336{left:498.525000px;}
.x37_c01336{left:501.990000px;}
.xb2_c01336{left:505.440000px;}
.x100_c01336{left:507.165000px;}
.xa9_c01336{left:508.890000px;}
.xdf_c01336{left:512.355000px;}
.x2e_c01336{left:514.950000px;}
.xa2_c01336{left:517.530000px;}
.xe_c01336{left:519.270000px;}
.x60_c01336{left:522.720000px;}
.xe2_c01336{left:524.445000px;}
.xfd_c01336{left:527.910000px;}
.x10e_c01336{left:532.230000px;}
.x59_c01336{left:534.810000px;}
.xed_c01336{left:539.130000px;}
.x4a_c01336{left:540.870000px;}
.x38_c01336{left:542.595000px;}
.xd5_c01336{left:546.045000px;}
.xf5_c01336{left:547.770000px;}
.x80_c01336{left:549.510000px;}
.xba_c01336{left:551.235000px;}
.xf1_c01336{left:552.960000px;}
.xf_c01336{left:554.685000px;}
.xdc_c01336{left:556.410000px;}
.xc6_c01336{left:558.150000px;}
.x6_c01336{left:560.730000px;}
.x8d_c01336{left:562.470000px;}
.x86_c01336{left:565.050000px;}
.x71_c01336{left:566.790000px;}
.x40_c01336{left:569.370000px;}
.x2f_c01336{left:571.110000px;}
.x10_c01336{left:572.835000px;}
.x10c_c01336{left:574.560000px;}
.xc2_c01336{left:582.330000px;}
.xee_c01336{left:587.520000px;}
.x101_c01336{left:589.245000px;}
.x61_c01336{left:591.840000px;}
.x15_c01336{left:593.565000px;}
.xbe_c01336{left:595.290000px;}
.x68_c01336{left:597.030000px;}
.xa3_c01336{left:600.480000px;}
.x16_c01336{left:603.075000px;}
.xcd_c01336{left:604.800000px;}
.x39_c01336{left:607.395000px;}
.x51_c01336{left:609.120000px;}
.x69_c01336{left:611.715000px;}
.x95_c01336{left:614.310000px;}
.xc7_c01336{left:616.890000px;}
.x17_c01336{left:619.485000px;}
.xd1_c01336{left:621.210000px;}
.xc8_c01336{left:623.805000px;}
.x41_c01336{left:625.530000px;}
.x52_c01336{left:628.995000px;}
.xe8_c01336{left:630.720000px;}
.x30_c01336{left:632.445000px;}
.x21_c01336{left:635.040000px;}
.x4b_c01336{left:636.765000px;}
.x91_c01336{left:639.360000px;}
.xf7_c01336{left:642.810000px;}
.xa4_c01336{left:644.550000px;}
.xbb_c01336{left:646.275000px;}
.xae_c01336{left:648.000000px;}
.x3a_c01336{left:651.450000px;}
.x42_c01336{left:654.915000px;}
.xc9_c01336{left:658.365000px;}
.x6a_c01336{left:660.960000px;}
.x10f_c01336{left:662.685000px;}
.x92_c01336{left:664.410000px;}
.x106_c01336{left:666.150000px;}
.x22_c01336{left:668.730000px;}
.x62_c01336{left:672.195000px;}
.x109_c01336{left:673.920000px;}
.x18_c01336{left:675.645000px;}
.x1_c01336{left:677.370000px;}
.x110_c01336{left:679.965000px;}
.x6b_c01336{left:682.560000px;}
.x84_c01336{left:685.155000px;}
.x63_c01336{left:686.880000px;}
.xe4_c01336{left:691.200000px;}
.x87_c01336{left:692.925000px;}
.xb3_c01336{left:694.650000px;}
.xa5_c01336{left:697.245000px;}
.xaf_c01336{left:698.970000px;}
.x31_c01336{left:700.710000px;}
.xd2_c01336{left:703.290000px;}
.x9e_c01336{left:708.480000px;}
.xcb_c01336{left:711.930000px;}
.x7_c01336{left:714.525000px;}
.x3b_c01336{left:717.990000px;}
.x72_c01336{left:721.440000px;}
.x7c_c01336{left:723.165000px;}
.xaa_c01336{left:728.355000px;}
.x77_c01336{left:730.950000px;}
.xca_c01336{left:734.400000px;}
.x43_c01336{left:738.720000px;}
.xc3_c01336{left:740.445000px;}
.x6c_c01336{left:742.170000px;}
.x73_c01336{left:745.635000px;}
.xdd_c01336{left:747.360000px;}
.x5a_c01336{left:749.085000px;}
.xd6_c01336{left:750.810000px;}
.x8e_c01336{left:752.550000px;}
.x19_c01336{left:754.275000px;}
.x96_c01336{left:758.595000px;}
.xcc_c01336{left:760.320000px;}
.xe5_c01336{left:762.045000px;}
.xfe_c01336{left:763.770000px;}
.x8f_c01336{left:767.235000px;}
.x44_c01336{left:771.555000px;}
.x88_c01336{left:773.280000px;}
.x32_c01336{left:775.005000px;}
.xd8_c01336{left:776.730000px;}
.xde_c01336{left:779.325000px;}
.x78_c01336{left:781.050000px;}
.x103_c01336{left:783.645000px;}
.x27_c01336{left:785.370000px;}
.xc4_c01336{left:787.965000px;}
.x99_c01336{left:789.690000px;}
.xd3_c01336{left:793.155000px;}
.x11_c01336{left:799.200000px;}
.x89_c01336{left:800.925000px;}
.x28_c01336{left:803.520000px;}
.x6d_c01336{left:805.245000px;}
.x74_c01336{left:807.840000px;}
.x8_c01336{left:809.565000px;}
.x5b_c01336{left:811.290000px;}
.x1a_c01336{left:813.885000px;}
.xb4_c01336{left:816.480000px;}
.x3c_c01336{left:819.075000px;}
.xf8_c01336{left:820.800000px;}
.x45_c01336{left:822.525000px;}
.x53_c01336{left:824.250000px;}
.x7d_c01336{left:825.990000px;}
.x79_c01336{left:829.440000px;}
.x9_c01336{left:831.165000px;}
.x64_c01336{left:835.485000px;}
.xe6_c01336{left:837.210000px;}
.x97_c01336{left:838.950000px;}
.xce_c01336{left:841.530000px;}
.xdb_c01336{left:844.995000px;}
.x4c_c01336{left:847.590000px;}
.xab_c01336{left:851.910000px;}
.xe7_c01336{left:853.635000px;}
.xcf_c01336{left:855.360000px;}
.xb5_c01336{left:857.955000px;}
.x9f_c01336{left:860.550000px;}
.x5c_c01336{left:863.130000px;}
.x4d_c01336{left:864.870000px;}
.x108_c01336{left:867.450000px;}
.xef_c01336{left:869.190000px;}
.x10a_c01336{left:870.915000px;}
.x9a_c01336{left:873.510000px;}
.x29_c01336{left:876.960000px;}
.x1b_c01336{left:882.150000px;}
.x33_c01336{left:895.110000px;}
.x113_c01336{left:965.085000px;}
.x114_c01336{left:972.000000px;}
@media print{
.v0_c01336{vertical-align:0.000000pt;}
.v1_c01336{vertical-align:3.040000pt;}
.ls0_c01336{letter-spacing:0.000000pt;}
.ws0_c01336{word-spacing:-11.921927pt;}
.ws2_c01336{word-spacing:0.000000pt;}
.ws1_c01336{word-spacing:14.533440pt;}
.fs0_c01336{font-size:3.072000pt;}
.fs2_c01336{font-size:5.333333pt;}
.fs15_c01336{font-size:6.133333pt;}
.fs1e_c01336{font-size:9.226667pt;}
.fsf_c01336{font-size:12.266667pt;}
.fs1b_c01336{font-size:15.360000pt;}
.fs19_c01336{font-size:18.453333pt;}
.fs1f_c01336{font-size:21.493333pt;}
.fs1d_c01336{font-size:24.586667pt;}
.fs13_c01336{font-size:27.626667pt;}
.fs16_c01336{font-size:30.720000pt;}
.fs10_c01336{font-size:33.813333pt;}
.fs17_c01336{font-size:36.853333pt;}
.fs1a_c01336{font-size:39.946667pt;}
.fsa_c01336{font-size:42.986667pt;}
.fs14_c01336{font-size:46.080000pt;}
.fse_c01336{font-size:49.173333pt;}
.fsd_c01336{font-size:52.213333pt;}
.fs11_c01336{font-size:55.306667pt;}
.fs12_c01336{font-size:58.346667pt;}
.fs9_c01336{font-size:61.440000pt;}
.fs3_c01336{font-size:64.533333pt;}
.fsc_c01336{font-size:67.573333pt;}
.fs8_c01336{font-size:70.666667pt;}
.fs18_c01336{font-size:73.706667pt;}
.fs7_c01336{font-size:76.800000pt;}
.fs6_c01336{font-size:79.893333pt;}
.fs1c_c01336{font-size:82.933333pt;}
.fsb_c01336{font-size:86.026667pt;}
.fs1_c01336{font-size:89.066667pt;}
.fs20_c01336{font-size:95.253333pt;}
.fs5_c01336{font-size:107.520000pt;}
.fs4_c01336{font-size:122.880000pt;}
.y0_c01336{bottom:0.000000pt;}
.y1df_c01336{bottom:152.826667pt;}
.y1de_c01336{bottom:154.373333pt;}
.y1dd_c01336{bottom:155.133333pt;}
.y1da_c01336{bottom:158.213333pt;}
.y1d5_c01336{bottom:159.746667pt;}
.y1dc_c01336{bottom:160.506667pt;}
.y1d9_c01336{bottom:163.586667pt;}
.y1d8_c01336{bottom:164.346667pt;}
.y1d4_c01336{bottom:165.120000pt;}
.y1d6_c01336{bottom:167.426667pt;}
.y1d7_c01336{bottom:168.960000pt;}
.y1db_c01336{bottom:169.733333pt;}
.y1d2_c01336{bottom:170.493333pt;}
.y1d3_c01336{bottom:171.266667pt;}
.y1d1_c01336{bottom:172.026667pt;}
.y1ce_c01336{bottom:172.800000pt;}
.y1cf_c01336{bottom:174.333333pt;}
.y1d0_c01336{bottom:176.640000pt;}
.y1cc_c01336{bottom:188.933333pt;}
.y1ca_c01336{bottom:189.693333pt;}
.y1c9_c01336{bottom:190.466667pt;}
.y1c8_c01336{bottom:191.226667pt;}
.y1cb_c01336{bottom:192.000000pt;}
.y1cd_c01336{bottom:192.773333pt;}
.y1c7_c01336{bottom:195.840000pt;}
.y1c6_c01336{bottom:205.826667pt;}
.y1c5_c01336{bottom:208.133333pt;}
.y1c4_c01336{bottom:209.666667pt;}
.y1c2_c01336{bottom:222.720000pt;}
.y1c0_c01336{bottom:225.026667pt;}
.y1be_c01336{bottom:226.560000pt;}
.y1bd_c01336{bottom:227.333333pt;}
.y1bc_c01336{bottom:228.866667pt;}
.y1c1_c01336{bottom:229.626667pt;}
.y1bf_c01336{bottom:230.400000pt;}
.y1c3_c01336{bottom:231.933333pt;}
.y1ba_c01336{bottom:241.146667pt;}
.y1b7_c01336{bottom:245.760000pt;}
.y1b5_c01336{bottom:247.293333pt;}
.y1b6_c01336{bottom:248.066667pt;}
.y1b9_c01336{bottom:248.826667pt;}
.y1bb_c01336{bottom:253.440000pt;}
.y1b8_c01336{bottom:254.973333pt;}
.y1b3_c01336{bottom:261.120000pt;}
.y1b0_c01336{bottom:264.960000pt;}
.y1af_c01336{bottom:265.733333pt;}
.y1b2_c01336{bottom:266.493333pt;}
.y1b1_c01336{bottom:273.413333pt;}
.y1b4_c01336{bottom:274.173333pt;}
.y1ae_c01336{bottom:280.320000pt;}
.y1ab_c01336{bottom:281.853333pt;}
.y1a8_c01336{bottom:282.626667pt;}
.y1a9_c01336{bottom:283.386667pt;}
.y1ad_c01336{bottom:284.933333pt;}
.y1ac_c01336{bottom:285.693333pt;}
.y1aa_c01336{bottom:287.226667pt;}
.y1a7_c01336{bottom:288.000000pt;}
.y1a6_c01336{bottom:299.520000pt;}
.y1a5_c01336{bottom:300.293333pt;}
.y1a3_c01336{bottom:301.053333pt;}
.y1a4_c01336{bottom:305.666667pt;}
.y1a2_c01336{bottom:307.973333pt;}
.y1a1_c01336{bottom:315.653333pt;}
.y1a0_c01336{bottom:317.186667pt;}
.y19e_c01336{bottom:317.946667pt;}
.y19d_c01336{bottom:319.493333pt;}
.y19b_c01336{bottom:320.253333pt;}
.y19c_c01336{bottom:321.026667pt;}
.y19f_c01336{bottom:322.560000pt;}
.y19a_c01336{bottom:324.866667pt;}
.y198_c01336{bottom:334.080000pt;}
.y194_c01336{bottom:335.613333pt;}
.y197_c01336{bottom:336.386667pt;}
.y192_c01336{bottom:337.146667pt;}
.y199_c01336{bottom:337.920000pt;}
.y195_c01336{bottom:340.986667pt;}
.y196_c01336{bottom:341.760000pt;}
.y193_c01336{bottom:342.533333pt;}
.y191_c01336{bottom:353.280000pt;}
.y190_c01336{bottom:354.053333pt;}
.y18f_c01336{bottom:354.813333pt;}
.y18a_c01336{bottom:355.586667pt;}
.y187_c01336{bottom:356.346667pt;}
.y18e_c01336{bottom:357.120000pt;}
.y188_c01336{bottom:357.893333pt;}
.y18d_c01336{bottom:359.426667pt;}
.y18c_c01336{bottom:360.186667pt;}
.y18b_c01336{bottom:360.960000pt;}
.y189_c01336{bottom:361.733333pt;}
.y186_c01336{bottom:362.493333pt;}
.y185_c01336{bottom:370.173333pt;}
.y17d_c01336{bottom:370.946667pt;}
.y183_c01336{bottom:373.253333pt;}
.y17f_c01336{bottom:374.013333pt;}
.y184_c01336{bottom:374.786667pt;}
.y182_c01336{bottom:375.546667pt;}
.y180_c01336{bottom:377.853333pt;}
.y181_c01336{bottom:378.626667pt;}
.y17c_c01336{bottom:380.160000pt;}
.y17e_c01336{bottom:382.466667pt;}
.y179_c01336{bottom:389.373333pt;}
.y178_c01336{bottom:392.453333pt;}
.y177_c01336{bottom:393.213333pt;}
.y17b_c01336{bottom:394.746667pt;}
.y17a_c01336{bottom:395.520000pt;}
.y175_c01336{bottom:396.293333pt;}
.y176_c01336{bottom:397.053333pt;}
.y174_c01336{bottom:407.813333pt;}
.y173_c01336{bottom:410.880000pt;}
.y171_c01336{bottom:412.413333pt;}
.y172_c01336{bottom:413.946667pt;}
.y16e_c01336{bottom:414.720000pt;}
.y170_c01336{bottom:415.493333pt;}
.y16f_c01336{bottom:421.626667pt;}
.y16c_c01336{bottom:426.240000pt;}
.y169_c01336{bottom:427.773333pt;}
.y16a_c01336{bottom:428.546667pt;}
.y16b_c01336{bottom:429.306667pt;}
.y168_c01336{bottom:433.920000pt;}
.y167_c01336{bottom:434.693333pt;}
.y16d_c01336{bottom:437.760000pt;}
.y165_c01336{bottom:443.133333pt;}
.y164_c01336{bottom:443.906667pt;}
.y163_c01336{bottom:444.666667pt;}
.y166_c01336{bottom:445.440000pt;}
.y162_c01336{bottom:446.213333pt;}
.y161_c01336{bottom:448.506667pt;}
.y160_c01336{bottom:449.280000pt;}
.y15d_c01336{bottom:462.333333pt;}
.y15c_c01336{bottom:463.106667pt;}
.y15a_c01336{bottom:463.866667pt;}
.y15e_c01336{bottom:465.413333pt;}
.y158_c01336{bottom:466.173333pt;}
.y15b_c01336{bottom:468.480000pt;}
.y15f_c01336{bottom:469.253333pt;}
.y159_c01336{bottom:470.013333pt;}
.y157_c01336{bottom:480.773333pt;}
.y156_c01336{bottom:483.066667pt;}
.y155_c01336{bottom:485.373333pt;}
.y154_c01336{bottom:488.453333pt;}
.y150_c01336{bottom:495.360000pt;}
.y153_c01336{bottom:496.893333pt;}
.y151_c01336{bottom:499.973333pt;}
.y14f_c01336{bottom:501.506667pt;}
.y14d_c01336{bottom:502.266667pt;}
.y152_c01336{bottom:503.040000pt;}
.y14c_c01336{bottom:504.573333pt;}
.y14e_c01336{bottom:506.880000pt;}
.y14a_c01336{bottom:516.866667pt;}
.y147_c01336{bottom:518.400000pt;}
.y146_c01336{bottom:519.173333pt;}
.y14b_c01336{bottom:519.933333pt;}
.y148_c01336{bottom:520.706667pt;}
.y144_c01336{bottom:521.466667pt;}
.y149_c01336{bottom:522.240000pt;}
.y145_c01336{bottom:523.773333pt;}
.y143_c01336{bottom:526.080000pt;}
.y1e2_c01336{bottom:527.613333pt;}
.y142_c01336{bottom:535.293333pt;}
.y13f_c01336{bottom:536.826667pt;}
.y13e_c01336{bottom:537.600000pt;}
.y13b_c01336{bottom:538.373333pt;}
.y141_c01336{bottom:539.906667pt;}
.y140_c01336{bottom:540.666667pt;}
.y13d_c01336{bottom:542.213333pt;}
.y13c_c01336{bottom:542.973333pt;}
.y13a_c01336{bottom:543.746667pt;}
.y137_c01336{bottom:554.493333pt;}
.y139_c01336{bottom:556.026667pt;}
.y132_c01336{bottom:556.800000pt;}
.y138_c01336{bottom:557.573333pt;}
.y133_c01336{bottom:558.333333pt;}
.y136_c01336{bottom:559.106667pt;}
.y135_c01336{bottom:559.866667pt;}
.y134_c01336{bottom:560.640000pt;}
.y131_c01336{bottom:572.160000pt;}
.y12f_c01336{bottom:572.933333pt;}
.y12e_c01336{bottom:573.693333pt;}
.y12d_c01336{bottom:575.226667pt;}
.y130_c01336{bottom:576.773333pt;}
.y12c_c01336{bottom:579.840000pt;}
.y12a_c01336{bottom:588.293333pt;}
.y12b_c01336{bottom:589.053333pt;}
.y129_c01336{bottom:590.586667pt;}
.y125_c01336{bottom:591.360000pt;}
.y128_c01336{bottom:592.893333pt;}
.y126_c01336{bottom:593.666667pt;}
.y127_c01336{bottom:595.200000pt;}
.y124_c01336{bottom:596.733333pt;}
.y123_c01336{bottom:605.186667pt;}
.y121_c01336{bottom:607.493333pt;}
.y11f_c01336{bottom:609.026667pt;}
.y11e_c01336{bottom:609.786667pt;}
.y122_c01336{bottom:611.333333pt;}
.y11d_c01336{bottom:612.866667pt;}
.y120_c01336{bottom:613.626667pt;}
.y11b_c01336{bottom:625.146667pt;}
.y11a_c01336{bottom:626.693333pt;}
.y118_c01336{bottom:627.453333pt;}
.y117_c01336{bottom:628.226667pt;}
.y11c_c01336{bottom:629.760000pt;}
.y119_c01336{bottom:631.293333pt;}
.y116_c01336{bottom:632.066667pt;}
.y115_c01336{bottom:633.600000pt;}
.y113_c01336{bottom:642.053333pt;}
.y114_c01336{bottom:642.813333pt;}
.y112_c01336{bottom:644.346667pt;}
.y10e_c01336{bottom:645.120000pt;}
.y10d_c01336{bottom:645.893333pt;}
.y10b_c01336{bottom:646.653333pt;}
.y10c_c01336{bottom:647.426667pt;}
.y111_c01336{bottom:648.186667pt;}
.y110_c01336{bottom:648.960000pt;}
.y10f_c01336{bottom:650.493333pt;}
.y10a_c01336{bottom:660.480000pt;}
.y108_c01336{bottom:662.786667pt;}
.y104_c01336{bottom:663.546667pt;}
.y103_c01336{bottom:665.093333pt;}
.y109_c01336{bottom:665.853333pt;}
.y102_c01336{bottom:666.626667pt;}
.y106_c01336{bottom:667.386667pt;}
.y105_c01336{bottom:668.933333pt;}
.y107_c01336{bottom:679.680000pt;}
.y100_c01336{bottom:680.453333pt;}
.yfe_c01336{bottom:681.213333pt;}
.yfd_c01336{bottom:681.986667pt;}
.y101_c01336{bottom:683.520000pt;}
.yfb_c01336{bottom:684.293333pt;}
.yfc_c01336{bottom:685.053333pt;}
.yff_c01336{bottom:686.586667pt;}
.yfa_c01336{bottom:696.573333pt;}
.yf5_c01336{bottom:698.880000pt;}
.yf6_c01336{bottom:699.653333pt;}
.yf4_c01336{bottom:701.186667pt;}
.yf8_c01336{bottom:703.493333pt;}
.yf9_c01336{bottom:704.253333pt;}
.yf2_c01336{bottom:705.026667pt;}
.yf3_c01336{bottom:705.786667pt;}
.yf7_c01336{bottom:708.866667pt;}
.yef_c01336{bottom:714.240000pt;}
.yf0_c01336{bottom:715.773333pt;}
.yee_c01336{bottom:717.306667pt;}
.yf1_c01336{bottom:718.080000pt;}
.yea_c01336{bottom:718.853333pt;}
.ye9_c01336{bottom:721.146667pt;}
.ye8_c01336{bottom:721.920000pt;}
.yec_c01336{bottom:722.693333pt;}
.yeb_c01336{bottom:724.986667pt;}
.yed_c01336{bottom:725.760000pt;}
.ye7_c01336{bottom:731.906667pt;}
.ye0_c01336{bottom:736.506667pt;}
.ydf_c01336{bottom:737.280000pt;}
.ye3_c01336{bottom:738.053333pt;}
.ye6_c01336{bottom:738.813333pt;}
.ye1_c01336{bottom:739.586667pt;}
.yde_c01336{bottom:741.120000pt;}
.ye4_c01336{bottom:742.653333pt;}
.ye2_c01336{bottom:744.960000pt;}
.ye5_c01336{bottom:748.800000pt;}
.ydd_c01336{bottom:750.333333pt;}
.ydc_c01336{bottom:753.413333pt;}
.yda_c01336{bottom:754.173333pt;}
.yd9_c01336{bottom:757.253333pt;}
.ydb_c01336{bottom:758.013333pt;}
.yd8_c01336{bottom:763.386667pt;}
.y1e0_c01336{bottom:764.933333pt;}
.y1e1_c01336{bottom:767.226667pt;}
.yd4_c01336{bottom:768.773333pt;}
.yd6_c01336{bottom:769.533333pt;}
.yd0_c01336{bottom:771.840000pt;}
.ycf_c01336{bottom:772.613333pt;}
.yd7_c01336{bottom:773.373333pt;}
.yce_c01336{bottom:774.146667pt;}
.yd5_c01336{bottom:774.906667pt;}
.yd3_c01336{bottom:775.680000pt;}
.yd2_c01336{bottom:776.453333pt;}
.yd1_c01336{bottom:777.213333pt;}
.ycd_c01336{bottom:787.200000pt;}
.ycc_c01336{bottom:787.973333pt;}
.yc9_c01336{bottom:789.506667pt;}
.ycb_c01336{bottom:790.266667pt;}
.yc8_c01336{bottom:791.813333pt;}
.yc2_c01336{bottom:792.573333pt;}
.yca_c01336{bottom:793.346667pt;}
.yc5_c01336{bottom:794.106667pt;}
.yc7_c01336{bottom:794.880000pt;}
.yc6_c01336{bottom:795.653333pt;}
.yc3_c01336{bottom:800.253333pt;}
.yc0_c01336{bottom:804.093333pt;}
.ybf_c01336{bottom:804.866667pt;}
.yc4_c01336{bottom:807.173333pt;}
.yba_c01336{bottom:807.933333pt;}
.yb8_c01336{bottom:808.706667pt;}
.yb7_c01336{bottom:809.466667pt;}
.yc1_c01336{bottom:810.240000pt;}
.ybe_c01336{bottom:811.013333pt;}
.ybc_c01336{bottom:811.773333pt;}
.ybd_c01336{bottom:812.546667pt;}
.ybb_c01336{bottom:813.306667pt;}
.yb9_c01336{bottom:815.613333pt;}
.yb3_c01336{bottom:822.533333pt;}
.yb4_c01336{bottom:823.293333pt;}
.yb2_c01336{bottom:825.600000pt;}
.yb5_c01336{bottom:826.373333pt;}
.yb1_c01336{bottom:827.906667pt;}
.yb0_c01336{bottom:828.666667pt;}
.yb6_c01336{bottom:830.973333pt;}
.yae_c01336{bottom:840.960000pt;}
.yaf_c01336{bottom:842.493333pt;}
.yac_c01336{bottom:843.266667pt;}
.ya8_c01336{bottom:844.800000pt;}
.ya6_c01336{bottom:845.573333pt;}
.yaa_c01336{bottom:846.333333pt;}
.yad_c01336{bottom:847.106667pt;}
.yab_c01336{bottom:847.866667pt;}
.ya9_c01336{bottom:849.413333pt;}
.ya7_c01336{bottom:850.173333pt;}
.ya5_c01336{bottom:858.626667pt;}
.ya3_c01336{bottom:860.933333pt;}
.ya2_c01336{bottom:862.466667pt;}
.y9f_c01336{bottom:863.226667pt;}
.y9e_c01336{bottom:864.000000pt;}
.ya4_c01336{bottom:864.773333pt;}
.ya1_c01336{bottom:866.306667pt;}
.ya0_c01336{bottom:867.066667pt;}
.y9c_c01336{bottom:877.826667pt;}
.y9b_c01336{bottom:878.586667pt;}
.y9a_c01336{bottom:880.133333pt;}
.y97_c01336{bottom:880.893333pt;}
.y98_c01336{bottom:881.666667pt;}
.y9d_c01336{bottom:882.426667pt;}
.y99_c01336{bottom:883.973333pt;}
.y96_c01336{bottom:886.266667pt;}
.y95_c01336{bottom:896.253333pt;}
.y92_c01336{bottom:897.786667pt;}
.y94_c01336{bottom:898.560000pt;}
.y90_c01336{bottom:899.333333pt;}
.y91_c01336{bottom:900.093333pt;}
.y93_c01336{bottom:900.866667pt;}
.y8e_c01336{bottom:903.173333pt;}
.y8f_c01336{bottom:907.013333pt;}
.y8d_c01336{bottom:911.613333pt;}
.y8c_c01336{bottom:913.920000pt;}
.y89_c01336{bottom:915.453333pt;}
.y85_c01336{bottom:916.226667pt;}
.y8a_c01336{bottom:916.986667pt;}
.y86_c01336{bottom:917.760000pt;}
.y84_c01336{bottom:918.533333pt;}
.y8b_c01336{bottom:919.293333pt;}
.y88_c01336{bottom:920.826667pt;}
.y87_c01336{bottom:921.600000pt;}
.y83_c01336{bottom:922.373333pt;}
.y82_c01336{bottom:926.973333pt;}
.y81_c01336{bottom:930.813333pt;}
.y7f_c01336{bottom:933.120000pt;}
.y7d_c01336{bottom:934.653333pt;}
.y7e_c01336{bottom:935.426667pt;}
.y80_c01336{bottom:936.186667pt;}
.y7c_c01336{bottom:949.253333pt;}
.y7b_c01336{bottom:950.786667pt;}
.y78_c01336{bottom:953.093333pt;}
.y77_c01336{bottom:953.853333pt;}
.y79_c01336{bottom:954.626667pt;}
.y7a_c01336{bottom:956.933333pt;}
.y76_c01336{bottom:960.000000pt;}
.y75_c01336{bottom:968.453333pt;}
.y74_c01336{bottom:969.213333pt;}
.y6f_c01336{bottom:972.293333pt;}
.y73_c01336{bottom:973.826667pt;}
.y72_c01336{bottom:974.586667pt;}
.y70_c01336{bottom:976.133333pt;}
.y71_c01336{bottom:976.893333pt;}
.y6e_c01336{bottom:977.666667pt;}
.y6c_c01336{bottom:986.880000pt;}
.y6d_c01336{bottom:987.653333pt;}
.y6b_c01336{bottom:989.186667pt;}
.y69_c01336{bottom:989.946667pt;}
.y6a_c01336{bottom:990.720000pt;}
.y67_c01336{bottom:992.253333pt;}
.y68_c01336{bottom:993.786667pt;}
.y66_c01336{bottom:994.560000pt;}
.y64_c01336{bottom:1006.853333pt;}
.y60_c01336{bottom:1007.613333pt;}
.y65_c01336{bottom:1008.386667pt;}
.y5f_c01336{bottom:1009.146667pt;}
.y62_c01336{bottom:1009.920000pt;}
.y63_c01336{bottom:1010.693333pt;}
.y61_c01336{bottom:1011.453333pt;}
.y5e_c01336{bottom:1021.440000pt;}
.y5b_c01336{bottom:1022.973333pt;}
.y5c_c01336{bottom:1023.746667pt;}
.y58_c01336{bottom:1024.506667pt;}
.y59_c01336{bottom:1025.280000pt;}
.y5d_c01336{bottom:1026.053333pt;}
.y5a_c01336{bottom:1026.813333pt;}
.y57_c01336{bottom:1027.586667pt;}
.y56_c01336{bottom:1039.866667pt;}
.y54_c01336{bottom:1041.413333pt;}
.y51_c01336{bottom:1043.706667pt;}
.y4e_c01336{bottom:1044.480000pt;}
.y55_c01336{bottom:1045.253333pt;}
.y53_c01336{bottom:1046.013333pt;}
.y4f_c01336{bottom:1049.093333pt;}
.y50_c01336{bottom:1049.853333pt;}
.y4d_c01336{bottom:1056.773333pt;}
.y4c_c01336{bottom:1059.066667pt;}
.y52_c01336{bottom:1059.840000pt;}
.y4b_c01336{bottom:1063.680000pt;}
.y4a_c01336{bottom:1065.213333pt;}
.y49_c01336{bottom:1065.986667pt;}
.y48_c01336{bottom:1066.746667pt;}
.y47_c01336{bottom:1075.973333pt;}
.y46_c01336{bottom:1077.506667pt;}
.y40_c01336{bottom:1079.040000pt;}
.y43_c01336{bottom:1080.573333pt;}
.y3f_c01336{bottom:1082.106667pt;}
.y42_c01336{bottom:1083.653333pt;}
.y41_c01336{bottom:1084.413333pt;}
.y44_c01336{bottom:1086.720000pt;}
.y45_c01336{bottom:1087.493333pt;}
.y3d_c01336{bottom:1095.173333pt;}
.y3e_c01336{bottom:1096.706667pt;}
.y3b_c01336{bottom:1097.466667pt;}
.y38_c01336{bottom:1098.240000pt;}
.y39_c01336{bottom:1099.773333pt;}
.y3c_c01336{bottom:1100.546667pt;}
.y3a_c01336{bottom:1102.080000pt;}
.y36_c01336{bottom:1112.826667pt;}
.y34_c01336{bottom:1114.373333pt;}
.y31_c01336{bottom:1115.133333pt;}
.y2f_c01336{bottom:1115.906667pt;}
.y37_c01336{bottom:1116.666667pt;}
.y35_c01336{bottom:1118.213333pt;}
.y2e_c01336{bottom:1118.973333pt;}
.y32_c01336{bottom:1120.506667pt;}
.y2d_c01336{bottom:1121.280000pt;}
.y30_c01336{bottom:1128.186667pt;}
.y33_c01336{bottom:1129.733333pt;}
.y29_c01336{bottom:1130.493333pt;}
.y28_c01336{bottom:1132.026667pt;}
.y26_c01336{bottom:1132.800000pt;}
.y2b_c01336{bottom:1135.106667pt;}
.y2a_c01336{bottom:1135.866667pt;}
.y27_c01336{bottom:1137.413333pt;}
.y25_c01336{bottom:1138.946667pt;}
.y2c_c01336{bottom:1139.706667pt;}
.y24_c01336{bottom:1145.853333pt;}
.y22_c01336{bottom:1147.386667pt;}
.y21_c01336{bottom:1148.160000pt;}
.y1f_c01336{bottom:1152.773333pt;}
.y23_c01336{bottom:1153.533333pt;}
.y1e_c01336{bottom:1154.306667pt;}
.y20_c01336{bottom:1156.613333pt;}
.y1d_c01336{bottom:1168.133333pt;}
.y19_c01336{bottom:1169.666667pt;}
.y1b_c01336{bottom:1171.973333pt;}
.y16_c01336{bottom:1172.733333pt;}
.y17_c01336{bottom:1173.506667pt;}
.y18_c01336{bottom:1174.266667pt;}
.y1a_c01336{bottom:1175.040000pt;}
.y15_c01336{bottom:1175.813333pt;}
.y1c_c01336{bottom:1181.186667pt;}
.y12_c01336{bottom:1187.333333pt;}
.y11_c01336{bottom:1188.093333pt;}
.y14_c01336{bottom:1189.626667pt;}
.y10_c01336{bottom:1191.173333pt;}
.y13_c01336{bottom:1191.933333pt;}
.ye_c01336{bottom:1204.986667pt;}
.yc_c01336{bottom:1205.760000pt;}
.yb_c01336{bottom:1206.533333pt;}
.yd_c01336{bottom:1210.373333pt;}
.ya_c01336{bottom:1211.133333pt;}
.yf_c01336{bottom:1211.906667pt;}
.y1e3_c01336{bottom:1224.186667pt;}
.y9_c01336{bottom:1228.800000pt;}
.y2_c01336{bottom:1229.573333pt;}
.y5_c01336{bottom:1230.333333pt;}
.y6_c01336{bottom:1231.106667pt;}
.y7_c01336{bottom:1232.640000pt;}
.y4_c01336{bottom:1233.413333pt;}
.y3_c01336{bottom:1234.946667pt;}
.y8_c01336{bottom:1236.480000pt;}
.y1_c01336{bottom:1279.493333pt;}
.h2_c01336{height:2.764500pt;}
.h4_c01336{height:4.799479pt;}
.h17_c01336{height:5.519401pt;}
.h20_c01336{height:8.303099pt;}
.h11_c01336{height:11.038802pt;}
.h1d_c01336{height:13.822500pt;}
.h1b_c01336{height:16.606198pt;}
.h21_c01336{height:19.341901pt;}
.h1f_c01336{height:22.125599pt;}
.h15_c01336{height:24.861302pt;}
.h18_c01336{height:27.645000pt;}
.h12_c01336{height:30.428698pt;}
.h19_c01336{height:33.164401pt;}
.h1c_c01336{height:35.948099pt;}
.hc_c01336{height:38.683802pt;}
.h16_c01336{height:41.467500pt;}
.h10_c01336{height:44.251198pt;}
.hf_c01336{height:46.986901pt;}
.h13_c01336{height:49.770599pt;}
.h14_c01336{height:52.506302pt;}
.hb_c01336{height:55.290000pt;}
.h5_c01336{height:58.073698pt;}
.he_c01336{height:60.809401pt;}
.ha_c01336{height:63.593099pt;}
.h1a_c01336{height:66.328802pt;}
.h9_c01336{height:69.112500pt;}
.h8_c01336{height:71.896198pt;}
.h1e_c01336{height:74.631901pt;}
.hd_c01336{height:77.415599pt;}
.h3_c01336{height:80.151302pt;}
.h22_c01336{height:85.718698pt;}
.h7_c01336{height:96.757500pt;}
.h6_c01336{height:110.580000pt;}
.h1_c01336{height:1345.333333pt;}
.h0_c01336{height:1345.533333pt;}
.w0_c01336{width:963.066667pt;}
.w1_c01336{width:963.333333pt;}
.x0_c01336{left:0.000000pt;}
.xe9_c01336{left:68.346667pt;}
.x111_c01336{left:109.053333pt;}
.x112_c01336{left:113.666667pt;}
.xea_c01336{left:147.453333pt;}
.xf2_c01336{left:165.120000pt;}
.xeb_c01336{left:166.653333pt;}
.xf6_c01336{left:168.960000pt;}
.xb6_c01336{left:170.493333pt;}
.xa6_c01336{left:180.480000pt;}
.xa0_c01336{left:182.013333pt;}
.xb7_c01336{left:185.853333pt;}
.x9b_c01336{left:188.933333pt;}
.x104_c01336{left:192.000000pt;}
.xbf_c01336{left:195.840000pt;}
.xec_c01336{left:198.906667pt;}
.xac_c01336{left:200.453333pt;}
.x9c_c01336{left:201.986667pt;}
.x85_c01336{left:204.293333pt;}
.xbc_c01336{left:206.586667pt;}
.xd4_c01336{left:208.133333pt;}
.xad_c01336{left:209.666667pt;}
.x34_c01336{left:211.200333pt;}
.x23_c01336{left:213.506667pt;}
.x4e_c01336{left:215.813333pt;}
.x2_c01336{left:218.106667pt;}
.x54_c01336{left:219.653333pt;}
.x12_c01336{left:221.186667pt;}
.x8a_c01336{left:225.026667pt;}
.x7e_c01336{left:227.333333pt;}
.x93_c01336{left:230.400000pt;}
.x5d_c01336{left:233.466667pt;}
.xb8_c01336{left:235.013333pt;}
.x46_c01336{left:238.080000pt;}
.x65_c01336{left:240.386667pt;}
.x24_c01336{left:241.920000pt;}
.x81_c01336{left:243.453333pt;}
.xf3_c01336{left:245.760000pt;}
.x102_c01336{left:248.066667pt;}
.x6e_c01336{left:249.600000pt;}
.xd9_c01336{left:251.906667pt;}
.x55_c01336{left:256.506667pt;}
.x66_c01336{left:261.120000pt;}
.x56_c01336{left:263.426667pt;}
.x1c_c01336{left:264.960000pt;}
.x98_c01336{left:267.266667pt;}
.x35_c01336{left:269.573333pt;}
.x94_c01336{left:271.866667pt;}
.x25_c01336{left:274.946667pt;}
.x3_c01336{left:276.480000pt;}
.xf9_c01336{left:278.013333pt;}
.x3d_c01336{left:280.320000pt;}
.x4f_c01336{left:284.160000pt;}
.x57_c01336{left:286.466667pt;}
.x2a_c01336{left:288.773333pt;}
.x4_c01336{left:291.840000pt;}
.xfa_c01336{left:293.373333pt;}
.x5e_c01336{left:298.746667pt;}
.x8b_c01336{left:300.293333pt;}
.xa_c01336{left:303.360000pt;}
.x2b_c01336{left:304.893333pt;}
.xa1_c01336{left:307.200000pt;}
.x10d_c01336{left:308.733333pt;}
.x6f_c01336{left:310.266667pt;}
.x10b_c01336{left:311.813333pt;}
.x75_c01336{left:314.106667pt;}
.xf0_c01336{left:315.653333pt;}
.xc0_c01336{left:317.946667pt;}
.xe0_c01336{left:319.493333pt;}
.x1d_c01336{left:324.093333pt;}
.x36_c01336{left:326.400000pt;}
.x2c_c01336{left:330.240000pt;}
.xb0_c01336{left:333.306667pt;}
.xd0_c01336{left:334.853333pt;}
.x107_c01336{left:339.453333pt;}
.x2d_c01336{left:345.600000pt;}
.xb_c01336{left:347.133333pt;}
.x1e_c01336{left:349.440000pt;}
.xc5_c01336{left:350.973333pt;}
.x7f_c01336{left:352.506667pt;}
.xc1_c01336{left:354.053333pt;}
.x90_c01336{left:357.120000pt;}
.x50_c01336{left:362.493333pt;}
.xf4_c01336{left:365.573333pt;}
.xb1_c01336{left:367.106667pt;}
.x1f_c01336{left:368.640000pt;}
.x7a_c01336{left:370.173333pt;}
.xd7_c01336{left:371.706667pt;}
.x5_c01336{left:375.546667pt;}
.x47_c01336{left:377.093333pt;}
.xfb_c01336{left:378.626667pt;}
.x3e_c01336{left:380.160000pt;}
.x82_c01336{left:381.693333pt;}
.xc_c01336{left:383.226667pt;}
.xda_c01336{left:385.533333pt;}
.x9d_c01336{left:387.840000pt;}
.xbd_c01336{left:392.453333pt;}
.x67_c01336{left:393.986667pt;}
.x5f_c01336{left:397.053333pt;}
.x48_c01336{left:399.360000pt;}
.x3f_c01336{left:400.893333pt;}
.xe1_c01336{left:402.426667pt;}
.x76_c01336{left:405.506667pt;}
.x20_c01336{left:408.573333pt;}
.x8c_c01336{left:411.653333pt;}
.x105_c01336{left:413.186667pt;}
.xe3_c01336{left:414.720000pt;}
.x13_c01336{left:416.253333pt;}
.x83_c01336{left:419.333333pt;}
.x7b_c01336{left:422.400000pt;}
.xb9_c01336{left:423.933333pt;}
.xd_c01336{left:426.240000pt;}
.xa7_c01336{left:428.546667pt;}
.xfc_c01336{left:430.853333pt;}
.x26_c01336{left:432.386667pt;}
.x58_c01336{left:433.920000pt;}
.xff_c01336{left:435.453333pt;}
.xa8_c01336{left:436.986667pt;}
.x70_c01336{left:440.066667pt;}
.x14_c01336{left:441.600000pt;}
.x49_c01336{left:443.133333pt;}
.x37_c01336{left:446.213333pt;}
.xb2_c01336{left:449.280000pt;}
.x100_c01336{left:450.813333pt;}
.xa9_c01336{left:452.346667pt;}
.xdf_c01336{left:455.426667pt;}
.x2e_c01336{left:457.733333pt;}
.xa2_c01336{left:460.026667pt;}
.xe_c01336{left:461.573333pt;}
.x60_c01336{left:464.640000pt;}
.xe2_c01336{left:466.173333pt;}
.xfd_c01336{left:469.253333pt;}
.x10e_c01336{left:473.093333pt;}
.x59_c01336{left:475.386667pt;}
.xed_c01336{left:479.226667pt;}
.x4a_c01336{left:480.773333pt;}
.x38_c01336{left:482.306667pt;}
.xd5_c01336{left:485.373333pt;}
.xf5_c01336{left:486.906667pt;}
.x80_c01336{left:488.453333pt;}
.xba_c01336{left:489.986667pt;}
.xf1_c01336{left:491.520000pt;}
.xf_c01336{left:493.053333pt;}
.xdc_c01336{left:494.586667pt;}
.xc6_c01336{left:496.133333pt;}
.x6_c01336{left:498.426667pt;}
.x8d_c01336{left:499.973333pt;}
.x86_c01336{left:502.266667pt;}
.x71_c01336{left:503.813333pt;}
.x40_c01336{left:506.106667pt;}
.x2f_c01336{left:507.653333pt;}
.x10_c01336{left:509.186667pt;}
.x10c_c01336{left:510.720000pt;}
.xc2_c01336{left:517.626667pt;}
.xee_c01336{left:522.240000pt;}
.x101_c01336{left:523.773333pt;}
.x61_c01336{left:526.080000pt;}
.x15_c01336{left:527.613333pt;}
.xbe_c01336{left:529.146667pt;}
.x68_c01336{left:530.693333pt;}
.xa3_c01336{left:533.760000pt;}
.x16_c01336{left:536.066667pt;}
.xcd_c01336{left:537.600000pt;}
.x39_c01336{left:539.906667pt;}
.x51_c01336{left:541.440000pt;}
.x69_c01336{left:543.746667pt;}
.x95_c01336{left:546.053333pt;}
.xc7_c01336{left:548.346667pt;}
.x17_c01336{left:550.653333pt;}
.xd1_c01336{left:552.186667pt;}
.xc8_c01336{left:554.493333pt;}
.x41_c01336{left:556.026667pt;}
.x52_c01336{left:559.106667pt;}
.xe8_c01336{left:560.640000pt;}
.x30_c01336{left:562.173333pt;}
.x21_c01336{left:564.480000pt;}
.x4b_c01336{left:566.013333pt;}
.x91_c01336{left:568.320000pt;}
.xf7_c01336{left:571.386667pt;}
.xa4_c01336{left:572.933333pt;}
.xbb_c01336{left:574.466667pt;}
.xae_c01336{left:576.000000pt;}
.x3a_c01336{left:579.066667pt;}
.x42_c01336{left:582.146667pt;}
.xc9_c01336{left:585.213333pt;}
.x6a_c01336{left:587.520000pt;}
.x10f_c01336{left:589.053333pt;}
.x92_c01336{left:590.586667pt;}
.x106_c01336{left:592.133333pt;}
.x22_c01336{left:594.426667pt;}
.x62_c01336{left:597.506667pt;}
.x109_c01336{left:599.040000pt;}
.x18_c01336{left:600.573333pt;}
.x1_c01336{left:602.106667pt;}
.x110_c01336{left:604.413333pt;}
.x6b_c01336{left:606.720000pt;}
.x84_c01336{left:609.026667pt;}
.x63_c01336{left:610.560000pt;}
.xe4_c01336{left:614.400000pt;}
.x87_c01336{left:615.933333pt;}
.xb3_c01336{left:617.466667pt;}
.xa5_c01336{left:619.773333pt;}
.xaf_c01336{left:621.306667pt;}
.x31_c01336{left:622.853333pt;}
.xd2_c01336{left:625.146667pt;}
.x9e_c01336{left:629.760000pt;}
.xcb_c01336{left:632.826667pt;}
.x7_c01336{left:635.133333pt;}
.x3b_c01336{left:638.213333pt;}
.x72_c01336{left:641.280000pt;}
.x7c_c01336{left:642.813333pt;}
.xaa_c01336{left:647.426667pt;}
.x77_c01336{left:649.733333pt;}
.xca_c01336{left:652.800000pt;}
.x43_c01336{left:656.640000pt;}
.xc3_c01336{left:658.173333pt;}
.x6c_c01336{left:659.706667pt;}
.x73_c01336{left:662.786667pt;}
.xdd_c01336{left:664.320000pt;}
.x5a_c01336{left:665.853333pt;}
.xd6_c01336{left:667.386667pt;}
.x8e_c01336{left:668.933333pt;}
.x19_c01336{left:670.466667pt;}
.x96_c01336{left:674.306667pt;}
.xcc_c01336{left:675.840000pt;}
.xe5_c01336{left:677.373333pt;}
.xfe_c01336{left:678.906667pt;}
.x8f_c01336{left:681.986667pt;}
.x44_c01336{left:685.826667pt;}
.x88_c01336{left:687.360000pt;}
.x32_c01336{left:688.893333pt;}
.xd8_c01336{left:690.426667pt;}
.xde_c01336{left:692.733333pt;}
.x78_c01336{left:694.266667pt;}
.x103_c01336{left:696.573333pt;}
.x27_c01336{left:698.106667pt;}
.xc4_c01336{left:700.413333pt;}
.x99_c01336{left:701.946667pt;}
.xd3_c01336{left:705.026667pt;}
.x11_c01336{left:710.400000pt;}
.x89_c01336{left:711.933333pt;}
.x28_c01336{left:714.240000pt;}
.x6d_c01336{left:715.773333pt;}
.x74_c01336{left:718.080000pt;}
.x8_c01336{left:719.613333pt;}
.x5b_c01336{left:721.146667pt;}
.x1a_c01336{left:723.453333pt;}
.xb4_c01336{left:725.760000pt;}
.x3c_c01336{left:728.066667pt;}
.xf8_c01336{left:729.600000pt;}
.x45_c01336{left:731.133333pt;}
.x53_c01336{left:732.666667pt;}
.x7d_c01336{left:734.213333pt;}
.x79_c01336{left:737.280000pt;}
.x9_c01336{left:738.813333pt;}
.x64_c01336{left:742.653333pt;}
.xe6_c01336{left:744.186667pt;}
.x97_c01336{left:745.733333pt;}
.xce_c01336{left:748.026667pt;}
.xdb_c01336{left:751.106667pt;}
.x4c_c01336{left:753.413333pt;}
.xab_c01336{left:757.253333pt;}
.xe7_c01336{left:758.786667pt;}
.xcf_c01336{left:760.320000pt;}
.xb5_c01336{left:762.626667pt;}
.x9f_c01336{left:764.933333pt;}
.x5c_c01336{left:767.226667pt;}
.x4d_c01336{left:768.773333pt;}
.x108_c01336{left:771.066667pt;}
.xef_c01336{left:772.613333pt;}
.x10a_c01336{left:774.146667pt;}
.x9a_c01336{left:776.453333pt;}
.x29_c01336{left:779.520000pt;}
.x1b_c01336{left:784.133333pt;}
.x33_c01336{left:795.653333pt;}
.x113_c01336{left:857.853333pt;}
.x114_c01336{left:864.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_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_7469eb40e42d867869a5f3f1.woff2')format("woff");}.ff1_c01337{font-family:ff1_c01337;line-height:1.109863;font-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.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mac_c01337{transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143175,0.000000,0.000000,0.250000,0,0);}
.m3_c01337{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma7_c01337{transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);}
.m12_c01337{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);}
.m2_c01337{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);}
.maf_c01337{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.ma6_c01337{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.ma8_c01337{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.m96_c01337{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.ma3_c01337{transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167150,0.000000,0.000000,0.250000,0,0);}
.ma4_c01337{transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);}
.m82_c01337{transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168775,0.000000,0.000000,0.250000,0,0);}
.mab_c01337{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.ma5_c01337{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.m71_c01337{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m72_c01337{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);}
.ma1_c01337{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);}
.ma9_c01337{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);}
.m95_c01337{transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193475,0.000000,0.000000,0.250000,0,0);}
.m6a_c01337{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m5e_c01337{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);}
.m23_c01337{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m9f_c01337{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m8e_c01337{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.m79_c01337{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m9e_c01337{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m91_c01337{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.m6c_c01337{transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);}
.m5d_c01337{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.m49_c01337{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);}
.m8d_c01337{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);}
.m74_c01337{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);}
.m58_c01337{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);}
.m67_c01337{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.m70_c01337{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);}
.m22_c01337{transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);}
.m68_c01337{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);}
.m76_c01337{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);}
.m17_c01337{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.m3d_c01337{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m93_c01337{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.mc_c01337{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);}
.m2e_c01337{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);}
.m77_c01337{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);}
.m9a_c01337{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.ma0_c01337{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);}
.m6b_c01337{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);}
.m18_c01337{transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225375,0.000000,0.000000,0.250000,0,0);}
.m9d_c01337{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);}
.m92_c01337{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);}
.m86_c01337{transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228550,0.000000,0.000000,0.250000,0,0);}
.m81_c01337{transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);}
.m56_c01337{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);}
.m75_c01337{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);}
.m44_c01337{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);}
.m4e_c01337{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);}
.m3c_c01337{transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233175,0.000000,0.000000,0.250000,0,0);}
.m19_c01337{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);}
.m4a_c01337{transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);}
.m80_c01337{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m73_c01337{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);}
.m89_c01337{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_c01337{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m78_c01337{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.m6f_c01337{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);}
.m2b_c01337{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_c01337{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);}
.m8f_c01337{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);}
.m3b_c01337{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);}
.m6d_c01337{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);}
.m1e_c01337{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);}
.m5b_c01337{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);}
.m5c_c01337{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m7f_c01337{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m45_c01337{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);}
.mf_c01337{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);}
.mae_c01337{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.m9b_c01337{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);}
.m61_c01337{transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);}
.m8b_c01337{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);}
.m9c_c01337{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m62_c01337{transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);}
.m31_c01337{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m98_c01337{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m60_c01337{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m5f_c01337{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);}
.m41_c01337{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);}
.me_c01337{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);}
.m24_c01337{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);}
.m46_c01337{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);}
.m5a_c01337{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);}
.m8c_c01337{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01337{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m37_c01337{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c01337{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);}
.m3a_c01337{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01337{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);}
.m2d_c01337{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);}
.m7d_c01337{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01337{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);}
.m1_c01337{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01337{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m52_c01337{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_c01337{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);}
.m16_c01337{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);}
.m4f_c01337{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01337{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m59_c01337{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);}
.m29_c01337{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m13_c01337{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01337{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);}
.m10_c01337{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m8_c01337{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m66_c01337{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m26_c01337{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m65_c01337{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m30_c01337{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m50_c01337{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m43_c01337{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m38_c01337{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);}
.m54_c01337{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md_c01337{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m28_c01337{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m21_c01337{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c01337{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);}
.m83_c01337{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);}
.m88_c01337{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01337{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m15_c01337{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);}
.m2f_c01337{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m55_c01337{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m63_c01337{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m33_c01337{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mb_c01337{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01337{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_c01337{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7_c01337{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);}
.m6e_c01337{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m36_c01337{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m87_c01337{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);}
.m7e_c01337{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m99_c01337{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m85_c01337{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m20_c01337{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m8a_c01337{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m42_c01337{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m53_c01337{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);}
.m27_c01337{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m94_c01337{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);}
.maa_c01337{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m35_c01337{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m39_c01337{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m51_c01337{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m57_c01337{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m11_c01337{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01337{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01337{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);}
.m34_c01337{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);}
.m47_c01337{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);}
.m32_c01337{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m25_c01337{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m40_c01337{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01337{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01337{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m84_c01337{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m14_c01337{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m48_c01337{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m97_c01337{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);}
.mad_c01337{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01337{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m69_c01337{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.ma2_c01337{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m90_c01337{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m4_c01337{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m5_c01337{transform:matrix(9.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.590000,0.000000,0.000000,0.250000,0,0);}
.v3_c01337{vertical-align:-31.140000px;}
.v1_c01337{vertical-align:-3.480000px;}
.v0_c01337{vertical-align:0.000000px;}
.v2_c01337{vertical-align:3.420000px;}
.ls2_c01337{letter-spacing:0.000000px;}
.ls1_c01337{letter-spacing:21.178740px;}
.ls0_c01337{letter-spacing:31.767000px;}
.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;}
}
.ws1_c01337{word-spacing:-17.844106px;}
.ws2_c01337{word-spacing:-15.899760px;}
.ws0_c01337{word-spacing:-7.363920px;}
.ws3_c01337{word-spacing:0.000000px;}
.fc0_c01337{color:transparent;}
.fs3_c01337{font-size:3.456000px;}
.fs2_c01337{font-size:6.000000px;}
.fs0_c01337{font-size:6.900000px;}
.fs6_c01337{font-size:10.380000px;}
.fs4_c01337{font-size:13.800000px;}
.fs1_c01337{font-size:17.280000px;}
.fs14_c01337{font-size:20.760000px;}
.fs12_c01337{font-size:24.180000px;}
.fs16_c01337{font-size:27.660000px;}
.fs18_c01337{font-size:31.080000px;}
.fsf_c01337{font-size:34.560000px;}
.fs5_c01337{font-size:38.040000px;}
.fs17_c01337{font-size:41.460000px;}
.fs15_c01337{font-size:44.940000px;}
.fs13_c01337{font-size:48.360000px;}
.fse_c01337{font-size:51.840000px;}
.fs11_c01337{font-size:55.320000px;}
.fsd_c01337{font-size:58.740000px;}
.fsa_c01337{font-size:62.220000px;}
.fs7_c01337{font-size:65.640000px;}
.fsb_c01337{font-size:69.120000px;}
.fs9_c01337{font-size:72.600000px;}
.fs10_c01337{font-size:76.020000px;}
.fsc_c01337{font-size:79.500000px;}
.fs8_c01337{font-size:82.920000px;}
.fs19_c01337{font-size:86.400000px;}
.fs1a_c01337{font-size:89.880000px;}
.fs1c_c01337{font-size:93.300000px;}
.fs1b_c01337{font-size:96.780000px;}
.y0_c01337{bottom:0.000000px;}
.yfc_c01337{bottom:418.170000px;}
.yfe_c01337{bottom:421.635000px;}
.yfd_c01337{bottom:422.490000px;}
.yff_c01337{bottom:423.360000px;}
.yf8_c01337{bottom:436.320000px;}
.yfa_c01337{bottom:437.190000px;}
.yf9_c01337{bottom:442.365000px;}
.yfb_c01337{bottom:445.830000px;}
.yf6_c01337{bottom:451.875000px;}
.yf5_c01337{bottom:453.600000px;}
.yf7_c01337{bottom:463.965000px;}
.yf0_c01337{bottom:476.925000px;}
.yf2_c01337{bottom:477.795000px;}
.yf1_c01337{bottom:478.650000px;}
.yf3_c01337{bottom:480.390000px;}
.yf4_c01337{bottom:483.840000px;}
.ye8_c01337{bottom:495.930000px;}
.yec_c01337{bottom:497.670000px;}
.yeb_c01337{bottom:499.395000px;}
.yea_c01337{bottom:500.250000px;}
.yef_c01337{bottom:502.845000px;}
.ye9_c01337{bottom:508.035000px;}
.yee_c01337{bottom:512.355000px;}
.yed_c01337{bottom:513.210000px;}
.ye7_c01337{bottom:517.530000px;}
.ye6_c01337{bottom:519.270000px;}
.ye2_c01337{bottom:537.405000px;}
.ye4_c01337{bottom:538.275000px;}
.ye3_c01337{bottom:540.870000px;}
.ye0_c01337{bottom:541.725000px;}
.ye1_c01337{bottom:542.595000px;}
.ye5_c01337{bottom:544.320000px;}
.yda_c01337{bottom:557.280000px;}
.ydd_c01337{bottom:559.005000px;}
.ydc_c01337{bottom:559.875000px;}
.ydb_c01337{bottom:561.600000px;}
.ydf_c01337{bottom:563.325000px;}
.yde_c01337{bottom:564.195000px;}
.yd9_c01337{bottom:576.285000px;}
.yd4_c01337{bottom:577.155000px;}
.yd6_c01337{bottom:578.010000px;}
.yd7_c01337{bottom:578.880000px;}
.yd8_c01337{bottom:581.475000px;}
.yd5_c01337{bottom:589.245000px;}
.ycf_c01337{bottom:597.885000px;}
.yd2_c01337{bottom:598.755000px;}
.yd0_c01337{bottom:600.480000px;}
.yce_c01337{bottom:603.075000px;}
.yd3_c01337{bottom:609.990000px;}
.yd1_c01337{bottom:616.890000px;}
.yc9_c01337{bottom:617.760000px;}
.ycb_c01337{bottom:618.630000px;}
.ycc_c01337{bottom:619.485000px;}
.yc8_c01337{bottom:622.950000px;}
.yca_c01337{bottom:623.805000px;}
.ycd_c01337{bottom:628.995000px;}
.yc4_c01337{bottom:638.490000px;}
.yc7_c01337{bottom:641.085000px;}
.yc3_c01337{bottom:642.810000px;}
.yc5_c01337{bottom:643.680000px;}
.yc6_c01337{bottom:644.550000px;}
.yc0_c01337{bottom:657.510000px;}
.yc1_c01337{bottom:662.685000px;}
.yc2_c01337{bottom:663.555000px;}
.ybf_c01337{bottom:667.875000px;}
.yb9_c01337{bottom:678.240000px;}
.ybd_c01337{bottom:679.110000px;}
.ybc_c01337{bottom:680.835000px;}
.yb8_c01337{bottom:681.690000px;}
.yba_c01337{bottom:683.430000px;}
.ybb_c01337{bottom:684.285000px;}
.ybe_c01337{bottom:685.155000px;}
.yb6_c01337{bottom:698.970000px;}
.yb3_c01337{bottom:701.565000px;}
.yb4_c01337{bottom:702.435000px;}
.yb5_c01337{bottom:703.290000px;}
.yb7_c01337{bottom:705.030000px;}
.yb1_c01337{bottom:718.845000px;}
.yb2_c01337{bottom:719.715000px;}
.yb0_c01337{bottom:720.570000px;}
.yae_c01337{bottom:722.310000px;}
.yad_c01337{bottom:723.165000px;}
.yaf_c01337{bottom:724.035000px;}
.yac_c01337{bottom:741.315000px;}
.ya9_c01337{bottom:742.170000px;}
.yaa_c01337{bottom:743.040000px;}
.yab_c01337{bottom:743.910000px;}
.ya6_c01337{bottom:757.725000px;}
.ya4_c01337{bottom:760.320000px;}
.ya8_c01337{bottom:762.045000px;}
.ya5_c01337{bottom:762.915000px;}
.ya7_c01337{bottom:764.640000px;}
.y9f_c01337{bottom:776.730000px;}
.ya0_c01337{bottom:778.470000px;}
.ya1_c01337{bottom:779.325000px;}
.ya2_c01337{bottom:785.370000px;}
.ya3_c01337{bottom:788.835000px;}
.y9e_c01337{bottom:799.200000px;}
.y9c_c01337{bottom:800.925000px;}
.y9d_c01337{bottom:803.520000px;}
.y9b_c01337{bottom:804.390000px;}
.y97_c01337{bottom:823.395000px;}
.y98_c01337{bottom:824.250000px;}
.y99_c01337{bottom:825.120000px;}
.y9a_c01337{bottom:825.990000px;}
.y4_c01337{bottom:828.570000px;}
.y5_c01337{bottom:831.165000px;}
.y94_c01337{bottom:838.950000px;}
.y95_c01337{bottom:840.675000px;}
.y96_c01337{bottom:844.125000px;}
.y8d_c01337{bottom:857.955000px;}
.y91_c01337{bottom:860.550000px;}
.y8e_c01337{bottom:861.405000px;}
.y92_c01337{bottom:862.275000px;}
.y8f_c01337{bottom:864.000000px;}
.y90_c01337{bottom:864.870000px;}
.y93_c01337{bottom:872.640000px;}
.y88_c01337{bottom:876.960000px;}
.y8b_c01337{bottom:879.555000px;}
.y89_c01337{bottom:883.875000px;}
.y8a_c01337{bottom:884.730000px;}
.y8c_c01337{bottom:885.600000px;}
.y82_c01337{bottom:899.430000px;}
.y86_c01337{bottom:902.010000px;}
.y87_c01337{bottom:902.880000px;}
.y83_c01337{bottom:903.750000px;}
.y84_c01337{bottom:904.605000px;}
.y85_c01337{bottom:905.475000px;}
.y7d_c01337{bottom:921.030000px;}
.y81_c01337{bottom:921.885000px;}
.y7e_c01337{bottom:923.610000px;}
.y7c_c01337{bottom:924.480000px;}
.y7f_c01337{bottom:925.350000px;}
.y80_c01337{bottom:926.205000px;}
.y76_c01337{bottom:940.890000px;}
.y79_c01337{bottom:943.485000px;}
.y75_c01337{bottom:945.210000px;}
.y77_c01337{bottom:946.080000px;}
.y78_c01337{bottom:946.950000px;}
.y7a_c01337{bottom:947.805000px;}
.y7b_c01337{bottom:948.675000px;}
.y71_c01337{bottom:959.910000px;}
.y72_c01337{bottom:960.765000px;}
.y73_c01337{bottom:965.955000px;}
.y74_c01337{bottom:966.810000px;}
.y6c_c01337{bottom:979.770000px;}
.y6d_c01337{bottom:980.640000px;}
.y6e_c01337{bottom:981.510000px;}
.y6f_c01337{bottom:982.365000px;}
.y70_c01337{bottom:986.685000px;}
.y67_c01337{bottom:999.645000px;}
.y69_c01337{bottom:1000.515000px;}
.y68_c01337{bottom:1004.835000px;}
.y6a_c01337{bottom:1005.690000px;}
.y6b_c01337{bottom:1006.560000px;}
.y65_c01337{bottom:1020.390000px;}
.y64_c01337{bottom:1022.115000px;}
.y63_c01337{bottom:1024.710000px;}
.y66_c01337{bottom:1026.435000px;}
.y62_c01337{bottom:1035.930000px;}
.y60_c01337{bottom:1041.120000px;}
.y5d_c01337{bottom:1042.845000px;}
.y5c_c01337{bottom:1043.715000px;}
.y5e_c01337{bottom:1044.570000px;}
.y5f_c01337{bottom:1045.440000px;}
.y61_c01337{bottom:1046.310000px;}
.y59_c01337{bottom:1060.995000px;}
.y58_c01337{bottom:1064.445000px;}
.y5a_c01337{bottom:1065.315000px;}
.y5b_c01337{bottom:1066.170000px;}
.y53_c01337{bottom:1080.000000px;}
.y52_c01337{bottom:1080.870000px;}
.y54_c01337{bottom:1082.595000px;}
.y51_c01337{bottom:1085.190000px;}
.y55_c01337{bottom:1086.045000px;}
.y56_c01337{bottom:1086.915000px;}
.y57_c01337{bottom:1090.365000px;}
.y4b_c01337{bottom:1100.730000px;}
.y4f_c01337{bottom:1102.470000px;}
.y4c_c01337{bottom:1105.050000px;}
.y4d_c01337{bottom:1105.920000px;}
.y4e_c01337{bottom:1106.790000px;}
.y50_c01337{bottom:1107.645000px;}
.y48_c01337{bottom:1121.475000px;}
.y49_c01337{bottom:1122.330000px;}
.y46_c01337{bottom:1123.200000px;}
.y45_c01337{bottom:1125.795000px;}
.y47_c01337{bottom:1126.650000px;}
.y44_c01337{bottom:1127.520000px;}
.y4a_c01337{bottom:1133.565000px;}
.y43_c01337{bottom:1134.435000px;}
.y3e_c01337{bottom:1141.350000px;}
.y3d_c01337{bottom:1145.670000px;}
.y40_c01337{bottom:1146.525000px;}
.y3f_c01337{bottom:1147.395000px;}
.y41_c01337{bottom:1148.250000px;}
.y42_c01337{bottom:1150.845000px;}
.y3a_c01337{bottom:1162.080000px;}
.y3b_c01337{bottom:1162.950000px;}
.y39_c01337{bottom:1165.530000px;}
.y3c_c01337{bottom:1170.720000px;}
.y36_c01337{bottom:1183.680000px;}
.y35_c01337{bottom:1186.275000px;}
.y38_c01337{bottom:1188.000000px;}
.y37_c01337{bottom:1188.870000px;}
.y31_c01337{bottom:1201.830000px;}
.y34_c01337{bottom:1205.280000px;}
.y32_c01337{bottom:1207.005000px;}
.y33_c01337{bottom:1207.875000px;}
.y30_c01337{bottom:1210.470000px;}
.y2f_c01337{bottom:1222.560000px;}
.y2d_c01337{bottom:1224.285000px;}
.y2e_c01337{bottom:1227.750000px;}
.y2a_c01337{bottom:1242.435000px;}
.y2b_c01337{bottom:1243.290000px;}
.y29_c01337{bottom:1246.755000px;}
.y2c_c01337{bottom:1247.610000px;}
.y24_c01337{bottom:1262.310000px;}
.y26_c01337{bottom:1264.035000px;}
.y25_c01337{bottom:1266.630000px;}
.y28_c01337{bottom:1267.485000px;}
.y27_c01337{bottom:1268.355000px;}
.y21_c01337{bottom:1282.170000px;}
.y20_c01337{bottom:1283.040000px;}
.y22_c01337{bottom:1283.910000px;}
.y1f_c01337{bottom:1288.230000px;}
.y23_c01337{bottom:1289.085000px;}
.y18_c01337{bottom:1302.915000px;}
.y19_c01337{bottom:1303.770000px;}
.y1d_c01337{bottom:1304.640000px;}
.y1c_c01337{bottom:1305.510000px;}
.y1a_c01337{bottom:1306.365000px;}
.y1b_c01337{bottom:1308.090000px;}
.y1e_c01337{bottom:1309.830000px;}
.y15_c01337{bottom:1322.790000px;}
.y16_c01337{bottom:1323.645000px;}
.y17_c01337{bottom:1324.515000px;}
.y14_c01337{bottom:1327.110000px;}
.y10_c01337{bottom:1343.520000px;}
.y13_c01337{bottom:1345.245000px;}
.y11_c01337{bottom:1347.840000px;}
.yf_c01337{bottom:1348.710000px;}
.y12_c01337{bottom:1349.565000px;}
.y100_c01337{bottom:1370.310000px;}
.ye_c01337{bottom:1372.890000px;}
.y9_c01337{bottom:1373.760000px;}
.ya_c01337{bottom:1374.630000px;}
.yc_c01337{bottom:1375.485000px;}
.yb_c01337{bottom:1376.355000px;}
.yd_c01337{bottom:1377.210000px;}
.y6_c01337{bottom:1395.360000px;}
.y8_c01337{bottom:1397.955000px;}
.y7_c01337{bottom:1399.680000px;}
.y2_c01337{bottom:1416.090000px;}
.y3_c01337{bottom:1420.410000px;}
.y1_c01337{bottom:1438.560000px;}
.h5_c01337{height:3.110063px;}
.h4_c01337{height:5.399414px;}
.h2_c01337{height:6.209326px;}
.h8_c01337{height:9.340986px;}
.h6_c01337{height:12.418652px;}
.h3_c01337{height:15.550313px;}
.h16_c01337{height:18.681973px;}
.h1a_c01337{height:18.970313px;}
.h14_c01337{height:21.759639px;}
.h1e_c01337{height:24.851924px;}
.h18_c01337{height:24.891299px;}
.h1b_c01337{height:27.968965px;}
.h11_c01337{height:31.100625px;}
.h7_c01337{height:34.232285px;}
.h19_c01337{height:37.309951px;}
.h17_c01337{height:40.441611px;}
.h15_c01337{height:43.519277px;}
.h10_c01337{height:46.650937px;}
.h13_c01337{height:49.782598px;}
.hf_c01337{height:52.860264px;}
.hc_c01337{height:55.991924px;}
.h9_c01337{height:59.069590px;}
.hd_c01337{height:62.201250px;}
.hb_c01337{height:65.332910px;}
.h12_c01337{height:68.410576px;}
.h1d_c01337{height:68.812910px;}
.he_c01337{height:71.542236px;}
.ha_c01337{height:74.619902px;}
.h1c_c01337{height:77.751563px;}
.h1f_c01337{height:80.883223px;}
.h21_c01337{height:83.960889px;}
.h20_c01337{height:87.092549px;}
.h0_c01337{height:1509.405000px;}
.h1_c01337{height:1509.750000px;}
.w0_c01337{width:1079.130000px;}
.w1_c01337{width:1079.250000px;}
.x0_c01337{left:0.000000px;}
.x88_c01337{left:113.190000px;}
.x5_c01337{left:166.755000px;}
.x6_c01337{left:184.035000px;}
.x89_c01337{left:205.635000px;}
.xa_c01337{left:260.070000px;}
.xb_c01337{left:297.210000px;}
.xc_c01337{left:387.075000px;}
.x7_c01337{left:476.925000px;}
.xd_c01337{left:488.160000px;}
.xe_c01337{left:531.360000px;}
.x49_c01337{left:550.365000px;}
.x6c_c01337{left:552.090000px;}
.x2f_c01337{left:563.325000px;}
.x32_c01337{left:568.515000px;}
.x38_c01337{left:571.110000px;}
.x14_c01337{left:573.690000px;}
.x26_c01337{left:575.430000px;}
.x50_c01337{left:577.155000px;}
.x64_c01337{left:578.880000px;}
.x5c_c01337{left:581.475000px;}
.x3b_c01337{left:593.565000px;}
.x53_c01337{left:597.030000px;}
.xf_c01337{left:603.075000px;}
.x4b_c01337{left:607.395000px;}
.x34_c01337{left:613.440000px;}
.x65_c01337{left:618.630000px;}
.x1d_c01337{left:620.355000px;}
.x1b_c01337{left:623.805000px;}
.x10_c01337{left:628.995000px;}
.x4d_c01337{left:630.720000px;}
.x22_c01337{left:632.445000px;}
.x15_c01337{left:634.170000px;}
.x2c_c01337{left:635.910000px;}
.x6b_c01337{left:637.635000px;}
.x43_c01337{left:641.955000px;}
.x60_c01337{left:643.680000px;}
.x7d_c01337{left:645.405000px;}
.x3e_c01337{left:647.130000px;}
.x30_c01337{left:649.725000px;}
.x6d_c01337{left:651.450000px;}
.x79_c01337{left:654.045000px;}
.x39_c01337{left:655.770000px;}
.x1e_c01337{left:660.090000px;}
.x2d_c01337{left:661.830000px;}
.x59_c01337{left:663.555000px;}
.x1c_c01337{left:665.280000px;}
.x3c_c01337{left:667.005000px;}
.x7e_c01337{left:668.730000px;}
.x5d_c01337{left:671.325000px;}
.x54_c01337{left:673.050000px;}
.x44_c01337{left:674.790000px;}
.x3f_c01337{left:677.370000px;}
.x35_c01337{left:680.835000px;}
.x71_c01337{left:682.560000px;}
.x6f_c01337{left:686.880000px;}
.x16_c01337{left:690.330000px;}
.x2a_c01337{left:696.390000px;}
.x4c_c01337{left:698.970000px;}
.x73_c01337{left:700.710000px;}
.x45_c01337{left:702.435000px;}
.x8_c01337{left:705.030000px;}
.x80_c01337{left:706.755000px;}
.x66_c01337{left:708.480000px;}
.x5e_c01337{left:711.075000px;}
.x40_c01337{left:712.800000px;}
.x51_c01337{left:714.525000px;}
.x27_c01337{left:716.250000px;}
.x4e_c01337{left:720.570000px;}
.x75_c01337{left:722.310000px;}
.x23_c01337{left:724.035000px;}
.x70_c01337{left:725.760000px;}
.x28_c01337{left:727.485000px;}
.x1f_c01337{left:731.805000px;}
.x17_c01337{left:735.270000px;}
.x61_c01337{left:736.995000px;}
.x55_c01337{left:738.720000px;}
.x9_c01337{left:740.445000px;}
.x11_c01337{left:743.910000px;}
.x77_c01337{left:746.490000px;}
.x3a_c01337{left:749.085000px;}
.x76_c01337{left:754.275000px;}
.x2e_c01337{left:756.000000px;}
.x5a_c01337{left:760.320000px;}
.x5f_c01337{left:762.045000px;}
.x7a_c01337{left:765.510000px;}
.x56_c01337{left:768.960000px;}
.x41_c01337{left:770.685000px;}
.x69_c01337{left:772.410000px;}
.x18_c01337{left:775.005000px;}
.x33_c01337{left:776.730000px;}
.x42_c01337{left:779.325000px;}
.x24_c01337{left:781.920000px;}
.x74_c01337{left:785.370000px;}
.x67_c01337{left:787.110000px;}
.x83_c01337{left:788.835000px;}
.x12_c01337{left:790.560000px;}
.x36_c01337{left:793.155000px;}
.x78_c01337{left:794.880000px;}
.x5b_c01337{left:796.605000px;}
.x72_c01337{left:799.200000px;}
.x20_c01337{left:802.650000px;}
.x31_c01337{left:805.245000px;}
.x6e_c01337{left:807.840000px;}
.x46_c01337{left:809.565000px;}
.x62_c01337{left:813.030000px;}
.x47_c01337{left:820.800000px;}
.x19_c01337{left:824.250000px;}
.x29_c01337{left:825.990000px;}
.x7f_c01337{left:827.715000px;}
.x6a_c01337{left:829.440000px;}
.x1a_c01337{left:833.760000px;}
.x1_c01337{left:836.355000px;}
.x2b_c01337{left:838.080000px;}
.x63_c01337{left:839.805000px;}
.x13_c01337{left:841.530000px;}
.x4f_c01337{left:844.125000px;}
.x25_c01337{left:845.850000px;}
.x21_c01337{left:848.445000px;}
.x7c_c01337{left:850.170000px;}
.x57_c01337{left:852.765000px;}
.x52_c01337{left:855.360000px;}
.x48_c01337{left:857.955000px;}
.x2_c01337{left:860.550000px;}
.x7b_c01337{left:862.275000px;}
.x37_c01337{left:866.595000px;}
.x58_c01337{left:870.045000px;}
.x3d_c01337{left:878.685000px;}
.x68_c01337{left:884.730000px;}
.x84_c01337{left:886.470000px;}
.x81_c01337{left:891.645000px;}
.x85_c01337{left:894.240000px;}
.x82_c01337{left:900.285000px;}
.x86_c01337{left:902.880000px;}
.x4a_c01337{left:910.650000px;}
.x87_c01337{left:912.390000px;}
.x3_c01337{left:941.760000px;}
.x4_c01337{left:949.530000px;}
@media print{
.v3_c01337{vertical-align:-27.680000pt;}
.v1_c01337{vertical-align:-3.093333pt;}
.v0_c01337{vertical-align:0.000000pt;}
.v2_c01337{vertical-align:3.040000pt;}
.ls2_c01337{letter-spacing:0.000000pt;}
.ls1_c01337{letter-spacing:18.825547pt;}
.ls0_c01337{letter-spacing:28.237333pt;}
.ws1_c01337{word-spacing:-15.861427pt;}
.ws2_c01337{word-spacing:-14.133120pt;}
.ws0_c01337{word-spacing:-6.545707pt;}
.ws3_c01337{word-spacing:0.000000pt;}
.fs3_c01337{font-size:3.072000pt;}
.fs2_c01337{font-size:5.333333pt;}
.fs0_c01337{font-size:6.133333pt;}
.fs6_c01337{font-size:9.226667pt;}
.fs4_c01337{font-size:12.266667pt;}
.fs1_c01337{font-size:15.360000pt;}
.fs14_c01337{font-size:18.453333pt;}
.fs12_c01337{font-size:21.493333pt;}
.fs16_c01337{font-size:24.586667pt;}
.fs18_c01337{font-size:27.626667pt;}
.fsf_c01337{font-size:30.720000pt;}
.fs5_c01337{font-size:33.813333pt;}
.fs17_c01337{font-size:36.853333pt;}
.fs15_c01337{font-size:39.946667pt;}
.fs13_c01337{font-size:42.986667pt;}
.fse_c01337{font-size:46.080000pt;}
.fs11_c01337{font-size:49.173333pt;}
.fsd_c01337{font-size:52.213333pt;}
.fsa_c01337{font-size:55.306667pt;}
.fs7_c01337{font-size:58.346667pt;}
.fsb_c01337{font-size:61.440000pt;}
.fs9_c01337{font-size:64.533333pt;}
.fs10_c01337{font-size:67.573333pt;}
.fsc_c01337{font-size:70.666667pt;}
.fs8_c01337{font-size:73.706667pt;}
.fs19_c01337{font-size:76.800000pt;}
.fs1a_c01337{font-size:79.893333pt;}
.fs1c_c01337{font-size:82.933333pt;}
.fs1b_c01337{font-size:86.026667pt;}
.y0_c01337{bottom:0.000000pt;}
.yfc_c01337{bottom:371.706667pt;}
.yfe_c01337{bottom:374.786667pt;}
.yfd_c01337{bottom:375.546667pt;}
.yff_c01337{bottom:376.320000pt;}
.yf8_c01337{bottom:387.840000pt;}
.yfa_c01337{bottom:388.613333pt;}
.yf9_c01337{bottom:393.213333pt;}
.yfb_c01337{bottom:396.293333pt;}
.yf6_c01337{bottom:401.666667pt;}
.yf5_c01337{bottom:403.200000pt;}
.yf7_c01337{bottom:412.413333pt;}
.yf0_c01337{bottom:423.933333pt;}
.yf2_c01337{bottom:424.706667pt;}
.yf1_c01337{bottom:425.466667pt;}
.yf3_c01337{bottom:427.013333pt;}
.yf4_c01337{bottom:430.080000pt;}
.ye8_c01337{bottom:440.826667pt;}
.yec_c01337{bottom:442.373333pt;}
.yeb_c01337{bottom:443.906667pt;}
.yea_c01337{bottom:444.666667pt;}
.yef_c01337{bottom:446.973333pt;}
.ye9_c01337{bottom:451.586667pt;}
.yee_c01337{bottom:455.426667pt;}
.yed_c01337{bottom:456.186667pt;}
.ye7_c01337{bottom:460.026667pt;}
.ye6_c01337{bottom:461.573333pt;}
.ye2_c01337{bottom:477.693333pt;}
.ye4_c01337{bottom:478.466667pt;}
.ye3_c01337{bottom:480.773333pt;}
.ye0_c01337{bottom:481.533333pt;}
.ye1_c01337{bottom:482.306667pt;}
.ye5_c01337{bottom:483.840000pt;}
.yda_c01337{bottom:495.360000pt;}
.ydd_c01337{bottom:496.893333pt;}
.ydc_c01337{bottom:497.666667pt;}
.ydb_c01337{bottom:499.200000pt;}
.ydf_c01337{bottom:500.733333pt;}
.yde_c01337{bottom:501.506667pt;}
.yd9_c01337{bottom:512.253333pt;}
.yd4_c01337{bottom:513.026667pt;}
.yd6_c01337{bottom:513.786667pt;}
.yd7_c01337{bottom:514.560000pt;}
.yd8_c01337{bottom:516.866667pt;}
.yd5_c01337{bottom:523.773333pt;}
.ycf_c01337{bottom:531.453333pt;}
.yd2_c01337{bottom:532.226667pt;}
.yd0_c01337{bottom:533.760000pt;}
.yce_c01337{bottom:536.066667pt;}
.yd3_c01337{bottom:542.213333pt;}
.yd1_c01337{bottom:548.346667pt;}
.yc9_c01337{bottom:549.120000pt;}
.ycb_c01337{bottom:549.893333pt;}
.ycc_c01337{bottom:550.653333pt;}
.yc8_c01337{bottom:553.733333pt;}
.yca_c01337{bottom:554.493333pt;}
.ycd_c01337{bottom:559.106667pt;}
.yc4_c01337{bottom:567.546667pt;}
.yc7_c01337{bottom:569.853333pt;}
.yc3_c01337{bottom:571.386667pt;}
.yc5_c01337{bottom:572.160000pt;}
.yc6_c01337{bottom:572.933333pt;}
.yc0_c01337{bottom:584.453333pt;}
.yc1_c01337{bottom:589.053333pt;}
.yc2_c01337{bottom:589.826667pt;}
.ybf_c01337{bottom:593.666667pt;}
.yb9_c01337{bottom:602.880000pt;}
.ybd_c01337{bottom:603.653333pt;}
.ybc_c01337{bottom:605.186667pt;}
.yb8_c01337{bottom:605.946667pt;}
.yba_c01337{bottom:607.493333pt;}
.ybb_c01337{bottom:608.253333pt;}
.ybe_c01337{bottom:609.026667pt;}
.yb6_c01337{bottom:621.306667pt;}
.yb3_c01337{bottom:623.613333pt;}
.yb4_c01337{bottom:624.386667pt;}
.yb5_c01337{bottom:625.146667pt;}
.yb7_c01337{bottom:626.693333pt;}
.yb1_c01337{bottom:638.973333pt;}
.yb2_c01337{bottom:639.746667pt;}
.yb0_c01337{bottom:640.506667pt;}
.yae_c01337{bottom:642.053333pt;}
.yad_c01337{bottom:642.813333pt;}
.yaf_c01337{bottom:643.586667pt;}
.yac_c01337{bottom:658.946667pt;}
.ya9_c01337{bottom:659.706667pt;}
.yaa_c01337{bottom:660.480000pt;}
.yab_c01337{bottom:661.253333pt;}
.ya6_c01337{bottom:673.533333pt;}
.ya4_c01337{bottom:675.840000pt;}
.ya8_c01337{bottom:677.373333pt;}
.ya5_c01337{bottom:678.146667pt;}
.ya7_c01337{bottom:679.680000pt;}
.y9f_c01337{bottom:690.426667pt;}
.ya0_c01337{bottom:691.973333pt;}
.ya1_c01337{bottom:692.733333pt;}
.ya2_c01337{bottom:698.106667pt;}
.ya3_c01337{bottom:701.186667pt;}
.y9e_c01337{bottom:710.400000pt;}
.y9c_c01337{bottom:711.933333pt;}
.y9d_c01337{bottom:714.240000pt;}
.y9b_c01337{bottom:715.013333pt;}
.y97_c01337{bottom:731.906667pt;}
.y98_c01337{bottom:732.666667pt;}
.y99_c01337{bottom:733.440000pt;}
.y9a_c01337{bottom:734.213333pt;}
.y4_c01337{bottom:736.506667pt;}
.y5_c01337{bottom:738.813333pt;}
.y94_c01337{bottom:745.733333pt;}
.y95_c01337{bottom:747.266667pt;}
.y96_c01337{bottom:750.333333pt;}
.y8d_c01337{bottom:762.626667pt;}
.y91_c01337{bottom:764.933333pt;}
.y8e_c01337{bottom:765.693333pt;}
.y92_c01337{bottom:766.466667pt;}
.y8f_c01337{bottom:768.000000pt;}
.y90_c01337{bottom:768.773333pt;}
.y93_c01337{bottom:775.680000pt;}
.y88_c01337{bottom:779.520000pt;}
.y8b_c01337{bottom:781.826667pt;}
.y89_c01337{bottom:785.666667pt;}
.y8a_c01337{bottom:786.426667pt;}
.y8c_c01337{bottom:787.200000pt;}
.y82_c01337{bottom:799.493333pt;}
.y86_c01337{bottom:801.786667pt;}
.y87_c01337{bottom:802.560000pt;}
.y83_c01337{bottom:803.333333pt;}
.y84_c01337{bottom:804.093333pt;}
.y85_c01337{bottom:804.866667pt;}
.y7d_c01337{bottom:818.693333pt;}
.y81_c01337{bottom:819.453333pt;}
.y7e_c01337{bottom:820.986667pt;}
.y7c_c01337{bottom:821.760000pt;}
.y7f_c01337{bottom:822.533333pt;}
.y80_c01337{bottom:823.293333pt;}
.y76_c01337{bottom:836.346667pt;}
.y79_c01337{bottom:838.653333pt;}
.y75_c01337{bottom:840.186667pt;}
.y77_c01337{bottom:840.960000pt;}
.y78_c01337{bottom:841.733333pt;}
.y7a_c01337{bottom:842.493333pt;}
.y7b_c01337{bottom:843.266667pt;}
.y71_c01337{bottom:853.253333pt;}
.y72_c01337{bottom:854.013333pt;}
.y73_c01337{bottom:858.626667pt;}
.y74_c01337{bottom:859.386667pt;}
.y6c_c01337{bottom:870.906667pt;}
.y6d_c01337{bottom:871.680000pt;}
.y6e_c01337{bottom:872.453333pt;}
.y6f_c01337{bottom:873.213333pt;}
.y70_c01337{bottom:877.053333pt;}
.y67_c01337{bottom:888.573333pt;}
.y69_c01337{bottom:889.346667pt;}
.y68_c01337{bottom:893.186667pt;}
.y6a_c01337{bottom:893.946667pt;}
.y6b_c01337{bottom:894.720000pt;}
.y65_c01337{bottom:907.013333pt;}
.y64_c01337{bottom:908.546667pt;}
.y63_c01337{bottom:910.853333pt;}
.y66_c01337{bottom:912.386667pt;}
.y62_c01337{bottom:920.826667pt;}
.y60_c01337{bottom:925.440000pt;}
.y5d_c01337{bottom:926.973333pt;}
.y5c_c01337{bottom:927.746667pt;}
.y5e_c01337{bottom:928.506667pt;}
.y5f_c01337{bottom:929.280000pt;}
.y61_c01337{bottom:930.053333pt;}
.y59_c01337{bottom:943.106667pt;}
.y58_c01337{bottom:946.173333pt;}
.y5a_c01337{bottom:946.946667pt;}
.y5b_c01337{bottom:947.706667pt;}
.y53_c01337{bottom:960.000000pt;}
.y52_c01337{bottom:960.773333pt;}
.y54_c01337{bottom:962.306667pt;}
.y51_c01337{bottom:964.613333pt;}
.y55_c01337{bottom:965.373333pt;}
.y56_c01337{bottom:966.146667pt;}
.y57_c01337{bottom:969.213333pt;}
.y4b_c01337{bottom:978.426667pt;}
.y4f_c01337{bottom:979.973333pt;}
.y4c_c01337{bottom:982.266667pt;}
.y4d_c01337{bottom:983.040000pt;}
.y4e_c01337{bottom:983.813333pt;}
.y50_c01337{bottom:984.573333pt;}
.y48_c01337{bottom:996.866667pt;}
.y49_c01337{bottom:997.626667pt;}
.y46_c01337{bottom:998.400000pt;}
.y45_c01337{bottom:1000.706667pt;}
.y47_c01337{bottom:1001.466667pt;}
.y44_c01337{bottom:1002.240000pt;}
.y4a_c01337{bottom:1007.613333pt;}
.y43_c01337{bottom:1008.386667pt;}
.y3e_c01337{bottom:1014.533333pt;}
.y3d_c01337{bottom:1018.373333pt;}
.y40_c01337{bottom:1019.133333pt;}
.y3f_c01337{bottom:1019.906667pt;}
.y41_c01337{bottom:1020.666667pt;}
.y42_c01337{bottom:1022.973333pt;}
.y3a_c01337{bottom:1032.960000pt;}
.y3b_c01337{bottom:1033.733333pt;}
.y39_c01337{bottom:1036.026667pt;}
.y3c_c01337{bottom:1040.640000pt;}
.y36_c01337{bottom:1052.160000pt;}
.y35_c01337{bottom:1054.466667pt;}
.y38_c01337{bottom:1056.000000pt;}
.y37_c01337{bottom:1056.773333pt;}
.y31_c01337{bottom:1068.293333pt;}
.y34_c01337{bottom:1071.360000pt;}
.y32_c01337{bottom:1072.893333pt;}
.y33_c01337{bottom:1073.666667pt;}
.y30_c01337{bottom:1075.973333pt;}
.y2f_c01337{bottom:1086.720000pt;}
.y2d_c01337{bottom:1088.253333pt;}
.y2e_c01337{bottom:1091.333333pt;}
.y2a_c01337{bottom:1104.386667pt;}
.y2b_c01337{bottom:1105.146667pt;}
.y29_c01337{bottom:1108.226667pt;}
.y2c_c01337{bottom:1108.986667pt;}
.y24_c01337{bottom:1122.053333pt;}
.y26_c01337{bottom:1123.586667pt;}
.y25_c01337{bottom:1125.893333pt;}
.y28_c01337{bottom:1126.653333pt;}
.y27_c01337{bottom:1127.426667pt;}
.y21_c01337{bottom:1139.706667pt;}
.y20_c01337{bottom:1140.480000pt;}
.y22_c01337{bottom:1141.253333pt;}
.y1f_c01337{bottom:1145.093333pt;}
.y23_c01337{bottom:1145.853333pt;}
.y18_c01337{bottom:1158.146667pt;}
.y19_c01337{bottom:1158.906667pt;}
.y1d_c01337{bottom:1159.680000pt;}
.y1c_c01337{bottom:1160.453333pt;}
.y1a_c01337{bottom:1161.213333pt;}
.y1b_c01337{bottom:1162.746667pt;}
.y1e_c01337{bottom:1164.293333pt;}
.y15_c01337{bottom:1175.813333pt;}
.y16_c01337{bottom:1176.573333pt;}
.y17_c01337{bottom:1177.346667pt;}
.y14_c01337{bottom:1179.653333pt;}
.y10_c01337{bottom:1194.240000pt;}
.y13_c01337{bottom:1195.773333pt;}
.y11_c01337{bottom:1198.080000pt;}
.yf_c01337{bottom:1198.853333pt;}
.y12_c01337{bottom:1199.613333pt;}
.y100_c01337{bottom:1218.053333pt;}
.ye_c01337{bottom:1220.346667pt;}
.y9_c01337{bottom:1221.120000pt;}
.ya_c01337{bottom:1221.893333pt;}
.yc_c01337{bottom:1222.653333pt;}
.yb_c01337{bottom:1223.426667pt;}
.yd_c01337{bottom:1224.186667pt;}
.y6_c01337{bottom:1240.320000pt;}
.y8_c01337{bottom:1242.626667pt;}
.y7_c01337{bottom:1244.160000pt;}
.y2_c01337{bottom:1258.746667pt;}
.y3_c01337{bottom:1262.586667pt;}
.y1_c01337{bottom:1278.720000pt;}
.h5_c01337{height:2.764500pt;}
.h4_c01337{height:4.799479pt;}
.h2_c01337{height:5.519401pt;}
.h8_c01337{height:8.303099pt;}
.h6_c01337{height:11.038802pt;}
.h3_c01337{height:13.822500pt;}
.h16_c01337{height:16.606198pt;}
.h1a_c01337{height:16.862500pt;}
.h14_c01337{height:19.341901pt;}
.h1e_c01337{height:22.090599pt;}
.h18_c01337{height:22.125599pt;}
.h1b_c01337{height:24.861302pt;}
.h11_c01337{height:27.645000pt;}
.h7_c01337{height:30.428698pt;}
.h19_c01337{height:33.164401pt;}
.h17_c01337{height:35.948099pt;}
.h15_c01337{height:38.683802pt;}
.h10_c01337{height:41.467500pt;}
.h13_c01337{height:44.251198pt;}
.hf_c01337{height:46.986901pt;}
.hc_c01337{height:49.770599pt;}
.h9_c01337{height:52.506302pt;}
.hd_c01337{height:55.290000pt;}
.hb_c01337{height:58.073698pt;}
.h12_c01337{height:60.809401pt;}
.h1d_c01337{height:61.167031pt;}
.he_c01337{height:63.593099pt;}
.ha_c01337{height:66.328802pt;}
.h1c_c01337{height:69.112500pt;}
.h1f_c01337{height:71.896198pt;}
.h21_c01337{height:74.631901pt;}
.h20_c01337{height:77.415599pt;}
.h0_c01337{height:1341.693333pt;}
.h1_c01337{height:1342.000000pt;}
.w0_c01337{width:959.226667pt;}
.w1_c01337{width:959.333333pt;}
.x0_c01337{left:0.000000pt;}
.x88_c01337{left:100.613333pt;}
.x5_c01337{left:148.226667pt;}
.x6_c01337{left:163.586667pt;}
.x89_c01337{left:182.786667pt;}
.xa_c01337{left:231.173333pt;}
.xb_c01337{left:264.186667pt;}
.xc_c01337{left:344.066667pt;}
.x7_c01337{left:423.933333pt;}
.xd_c01337{left:433.920000pt;}
.xe_c01337{left:472.320000pt;}
.x49_c01337{left:489.213333pt;}
.x6c_c01337{left:490.746667pt;}
.x2f_c01337{left:500.733333pt;}
.x32_c01337{left:505.346667pt;}
.x38_c01337{left:507.653333pt;}
.x14_c01337{left:509.946667pt;}
.x26_c01337{left:511.493333pt;}
.x50_c01337{left:513.026667pt;}
.x64_c01337{left:514.560000pt;}
.x5c_c01337{left:516.866667pt;}
.x3b_c01337{left:527.613333pt;}
.x53_c01337{left:530.693333pt;}
.xf_c01337{left:536.066667pt;}
.x4b_c01337{left:539.906667pt;}
.x34_c01337{left:545.280000pt;}
.x65_c01337{left:549.893333pt;}
.x1d_c01337{left:551.426667pt;}
.x1b_c01337{left:554.493333pt;}
.x10_c01337{left:559.106667pt;}
.x4d_c01337{left:560.640000pt;}
.x22_c01337{left:562.173333pt;}
.x15_c01337{left:563.706667pt;}
.x2c_c01337{left:565.253333pt;}
.x6b_c01337{left:566.786667pt;}
.x43_c01337{left:570.626667pt;}
.x60_c01337{left:572.160000pt;}
.x7d_c01337{left:573.693333pt;}
.x3e_c01337{left:575.226667pt;}
.x30_c01337{left:577.533333pt;}
.x6d_c01337{left:579.066667pt;}
.x79_c01337{left:581.373333pt;}
.x39_c01337{left:582.906667pt;}
.x1e_c01337{left:586.746667pt;}
.x2d_c01337{left:588.293333pt;}
.x59_c01337{left:589.826667pt;}
.x1c_c01337{left:591.360000pt;}
.x3c_c01337{left:592.893333pt;}
.x7e_c01337{left:594.426667pt;}
.x5d_c01337{left:596.733333pt;}
.x54_c01337{left:598.266667pt;}
.x44_c01337{left:599.813333pt;}
.x3f_c01337{left:602.106667pt;}
.x35_c01337{left:605.186667pt;}
.x71_c01337{left:606.720000pt;}
.x6f_c01337{left:610.560000pt;}
.x16_c01337{left:613.626667pt;}
.x2a_c01337{left:619.013333pt;}
.x4c_c01337{left:621.306667pt;}
.x73_c01337{left:622.853333pt;}
.x45_c01337{left:624.386667pt;}
.x8_c01337{left:626.693333pt;}
.x80_c01337{left:628.226667pt;}
.x66_c01337{left:629.760000pt;}
.x5e_c01337{left:632.066667pt;}
.x40_c01337{left:633.600000pt;}
.x51_c01337{left:635.133333pt;}
.x27_c01337{left:636.666667pt;}
.x4e_c01337{left:640.506667pt;}
.x75_c01337{left:642.053333pt;}
.x23_c01337{left:643.586667pt;}
.x70_c01337{left:645.120000pt;}
.x28_c01337{left:646.653333pt;}
.x1f_c01337{left:650.493333pt;}
.x17_c01337{left:653.573333pt;}
.x61_c01337{left:655.106667pt;}
.x55_c01337{left:656.640000pt;}
.x9_c01337{left:658.173333pt;}
.x11_c01337{left:661.253333pt;}
.x77_c01337{left:663.546667pt;}
.x3a_c01337{left:665.853333pt;}
.x76_c01337{left:670.466667pt;}
.x2e_c01337{left:672.000000pt;}
.x5a_c01337{left:675.840000pt;}
.x5f_c01337{left:677.373333pt;}
.x7a_c01337{left:680.453333pt;}
.x56_c01337{left:683.520000pt;}
.x41_c01337{left:685.053333pt;}
.x69_c01337{left:686.586667pt;}
.x18_c01337{left:688.893333pt;}
.x33_c01337{left:690.426667pt;}
.x42_c01337{left:692.733333pt;}
.x24_c01337{left:695.040000pt;}
.x74_c01337{left:698.106667pt;}
.x67_c01337{left:699.653333pt;}
.x83_c01337{left:701.186667pt;}
.x12_c01337{left:702.720000pt;}
.x36_c01337{left:705.026667pt;}
.x78_c01337{left:706.560000pt;}
.x5b_c01337{left:708.093333pt;}
.x72_c01337{left:710.400000pt;}
.x20_c01337{left:713.466667pt;}
.x31_c01337{left:715.773333pt;}
.x6e_c01337{left:718.080000pt;}
.x46_c01337{left:719.613333pt;}
.x62_c01337{left:722.693333pt;}
.x47_c01337{left:729.600000pt;}
.x19_c01337{left:732.666667pt;}
.x29_c01337{left:734.213333pt;}
.x7f_c01337{left:735.746667pt;}
.x6a_c01337{left:737.280000pt;}
.x1a_c01337{left:741.120000pt;}
.x1_c01337{left:743.426667pt;}
.x2b_c01337{left:744.960000pt;}
.x63_c01337{left:746.493333pt;}
.x13_c01337{left:748.026667pt;}
.x4f_c01337{left:750.333333pt;}
.x25_c01337{left:751.866667pt;}
.x21_c01337{left:754.173333pt;}
.x7c_c01337{left:755.706667pt;}
.x57_c01337{left:758.013333pt;}
.x52_c01337{left:760.320000pt;}
.x48_c01337{left:762.626667pt;}
.x2_c01337{left:764.933333pt;}
.x7b_c01337{left:766.466667pt;}
.x37_c01337{left:770.306667pt;}
.x58_c01337{left:773.373333pt;}
.x3d_c01337{left:781.053333pt;}
.x68_c01337{left:786.426667pt;}
.x84_c01337{left:787.973333pt;}
.x81_c01337{left:792.573333pt;}
.x85_c01337{left:794.880000pt;}
.x82_c01337{left:800.253333pt;}
.x86_c01337{left:802.560000pt;}
.x4a_c01337{left:809.466667pt;}
.x87_c01337{left:811.013333pt;}
.x3_c01337{left:837.120000pt;}
.x4_c01337{left:844.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ad84daa1c3188003e889a5e0.woff2')format("woff");}.ff1_c01338{font-family:ff1_c01338;line-height:1.109863;font-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_c01338{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.maa_c01338{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);}
.m166_c01338{transform:matrix(0.077225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.077225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.077225,0.000000,0.000000,0.250000,0,0);}
.m157_c01338{transform:matrix(0.081975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081975,0.000000,0.000000,0.250000,0,0);}
.m176_c01338{transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092100,0.000000,0.000000,0.250000,0,0);}
.mea_c01338{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m180_c01338{transform:matrix(0.098700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098700,0.000000,0.000000,0.250000,0,0);}
.ma7_c01338{transform:matrix(0.109425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109425,0.000000,0.000000,0.250000,0,0);}
.m12_c01338{transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111600,0.000000,0.000000,0.250000,0,0);}
.m6a_c01338{transform:matrix(0.112700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112700,0.000000,0.000000,0.250000,0,0);}
.m14c_c01338{transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113200,0.000000,0.000000,0.250000,0,0);}
.m15e_c01338{transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);}
.m14_c01338{transform:matrix(0.120175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120175,0.000000,0.000000,0.250000,0,0);}
.m169_c01338{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);}
.mab_c01338{transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);}
.m43_c01338{transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128375,0.000000,0.000000,0.250000,0,0);}
.m15f_c01338{transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129200,0.000000,0.000000,0.250000,0,0);}
.m173_c01338{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);}
.m20_c01338{transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132875,0.000000,0.000000,0.250000,0,0);}
.me6_c01338{transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);}
.m17c_c01338{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m170_c01338{transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136900,0.000000,0.000000,0.250000,0,0);}
.m33_c01338{transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);}
.m168_c01338{transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);}
.m55_c01338{transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);}
.m117_c01338{transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141300,0.000000,0.000000,0.250000,0,0);}
.m10a_c01338{transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141350,0.000000,0.000000,0.250000,0,0);}
.mb9_c01338{transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142175,0.000000,0.000000,0.250000,0,0);}
.m69_c01338{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m17d_c01338{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);}
.m152_c01338{transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144925,0.000000,0.000000,0.250000,0,0);}
.m151_c01338{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.m156_c01338{transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148175,0.000000,0.000000,0.250000,0,0);}
.mbd_c01338{transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148500,0.000000,0.000000,0.250000,0,0);}
.m165_c01338{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m8_c01338{transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151025,0.000000,0.000000,0.250000,0,0);}
.m1f_c01338{transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151075,0.000000,0.000000,0.250000,0,0);}
.m16d_c01338{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);}
.m1a_c01338{transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);}
.m11a_c01338{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.m15_c01338{transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);}
.m175_c01338{transform:matrix(0.156425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156425,0.000000,0.000000,0.250000,0,0);}
.m174_c01338{transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);}
.m172_c01338{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);}
.m13b_c01338{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.mcc_c01338{transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158700,0.000000,0.000000,0.250000,0,0);}
.m179_c01338{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.m145_c01338{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.m9_c01338{transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);}
.m160_c01338{transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160600,0.000000,0.000000,0.250000,0,0);}
.m7c_c01338{transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160975,0.000000,0.000000,0.250000,0,0);}
.m1b_c01338{transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);}
.m108_c01338{transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162600,0.000000,0.000000,0.250000,0,0);}
.m19_c01338{transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);}
.m76_c01338{transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);}
.m142_c01338{transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163850,0.000000,0.000000,0.250000,0,0);}
.m4b_c01338{transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164075,0.000000,0.000000,0.250000,0,0);}
.m6f_c01338{transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);}
.m26_c01338{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.m17f_c01338{transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165700,0.000000,0.000000,0.250000,0,0);}
.m1_c01338{transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);}
.mbb_c01338{transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);}
.m15b_c01338{transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168100,0.000000,0.000000,0.250000,0,0);}
.m10e_c01338{transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168150,0.000000,0.000000,0.250000,0,0);}
.m7e_c01338{transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);}
.m8f_c01338{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);}
.m148_c01338{transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);}
.m138_c01338{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m13a_c01338{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);}
.m11d_c01338{transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172475,0.000000,0.000000,0.250000,0,0);}
.m5e_c01338{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);}
.m127_c01338{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m27_c01338{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.mdc_c01338{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);}
.m144_c01338{transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173950,0.000000,0.000000,0.250000,0,0);}
.mac_c01338{transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176150,0.000000,0.000000,0.250000,0,0);}
.m10d_c01338{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);}
.m14a_c01338{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);}
.m99_c01338{transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177825,0.000000,0.000000,0.250000,0,0);}
.m11c_c01338{transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178050,0.000000,0.000000,0.250000,0,0);}
.m129_c01338{transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178200,0.000000,0.000000,0.250000,0,0);}
.m95_c01338{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);}
.m11e_c01338{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.m153_c01338{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m12b_c01338{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m167_c01338{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01338{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);}
.m178_c01338{transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181100,0.000000,0.000000,0.250000,0,0);}
.m143_c01338{transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181200,0.000000,0.000000,0.250000,0,0);}
.m56_c01338{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.m2f_c01338{transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182200,0.000000,0.000000,0.250000,0,0);}
.m1d_c01338{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m16a_c01338{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);}
.m105_c01338{transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182875,0.000000,0.000000,0.250000,0,0);}
.mef_c01338{transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);}
.m34_c01338{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.m2d_c01338{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);}
.m154_c01338{transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01338{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);}
.m121_c01338{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.m18_c01338{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);}
.meb_c01338{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.mf8_c01338{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);}
.m131_c01338{transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188500,0.000000,0.000000,0.250000,0,0);}
.me9_c01338{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);}
.m113_c01338{transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189400,0.000000,0.000000,0.250000,0,0);}
.m79_c01338{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m80_c01338{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m23_c01338{transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);}
.mee_c01338{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m53_c01338{transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190875,0.000000,0.000000,0.250000,0,0);}
.m111_c01338{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.m57_c01338{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m17b_c01338{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);}
.m136_c01338{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.md8_c01338{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.mae_c01338{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);}
.m13c_c01338{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.mff_c01338{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);}
.md0_c01338{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m126_c01338{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);}
.m17a_c01338{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);}
.me2_c01338{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);}
.m58_c01338{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.md6_c01338{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);}
.m161_c01338{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);}
.m134_c01338{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.mec_c01338{transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);}
.mce_c01338{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);}
.mf2_c01338{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);}
.m8b_c01338{transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197075,0.000000,0.000000,0.250000,0,0);}
.m1c_c01338{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);}
.m177_c01338{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m83_c01338{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);}
.m141_c01338{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.m10f_c01338{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);}
.m164_c01338{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m122_c01338{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m77_c01338{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.m124_c01338{transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);}
.m103_c01338{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.m22_c01338{transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202825,0.000000,0.000000,0.250000,0,0);}
.m171_c01338{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);}
.m8a_c01338{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.mf3_c01338{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);}
.med_c01338{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.mfc_c01338{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mdb_c01338{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m86_c01338{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m12a_c01338{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m107_c01338{transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204900,0.000000,0.000000,0.250000,0,0);}
.md4_c01338{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);}
.mb7_c01338{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);}
.mc1_c01338{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);}
.m35_c01338{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.me4_c01338{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);}
.m78_c01338{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m114_c01338{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.mcd_c01338{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m6e_c01338{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.m14d_c01338{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);}
.m70_c01338{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m163_c01338{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);}
.m6d_c01338{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);}
.mb5_c01338{transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210400,0.000000,0.000000,0.250000,0,0);}
.m12d_c01338{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.m125_c01338{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.mfb_c01338{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);}
.m100_c01338{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);}
.ma6_c01338{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m123_c01338{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.mfa_c01338{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.md1_c01338{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);}
.m75_c01338{transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);}
.m50_c01338{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);}
.m147_c01338{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);}
.md3_c01338{transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);}
.m2c_c01338{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m8e_c01338{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.m7b_c01338{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mf6_c01338{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mc7_c01338{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m14b_c01338{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);}
.mb3_c01338{transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);}
.md7_c01338{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);}
.ma_c01338{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.m115_c01338{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);}
.me8_c01338{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.mc8_c01338{transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);}
.mc9_c01338{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);}
.m10b_c01338{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.m12f_c01338{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);}
.m30_c01338{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.me1_c01338{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.m15c_c01338{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);}
.mba_c01338{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);}
.m146_c01338{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);}
.m150_c01338{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);}
.m9c_c01338{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);}
.m89_c01338{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);}
.mc5_c01338{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);}
.m11b_c01338{transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);}
.m88_c01338{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);}
.ma0_c01338{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);}
.m94_c01338{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);}
.m140_c01338{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.m92_c01338{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);}
.m110_c01338{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);}
.m87_c01338{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);}
.mb1_c01338{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);}
.mca_c01338{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);}
.m36_c01338{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);}
.m9f_c01338{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m13d_c01338{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);}
.m132_c01338{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);}
.mbc_c01338{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);}
.m98_c01338{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.m91_c01338{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);}
.me3_c01338{transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225950,0.000000,0.000000,0.250000,0,0);}
.m47_c01338{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.m137_c01338{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);}
.m16e_c01338{transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226450,0.000000,0.000000,0.250000,0,0);}
.m3f_c01338{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);}
.mb2_c01338{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m9d_c01338{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);}
.m73_c01338{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m14e_c01338{transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);}
.m61_c01338{transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);}
.m162_c01338{transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228900,0.000000,0.000000,0.250000,0,0);}
.m5d_c01338{transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229100,0.000000,0.000000,0.250000,0,0);}
.m7a_c01338{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.mf9_c01338{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);}
.m104_c01338{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);}
.m31_c01338{transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230025,0.000000,0.000000,0.250000,0,0);}
.m8c_c01338{transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);}
.m139_c01338{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);}
.mc4_c01338{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);}
.m12c_c01338{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);}
.ma9_c01338{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.m135_c01338{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);}
.mfd_c01338{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);}
.m93_c01338{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);}
.mde_c01338{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);}
.mf7_c01338{transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);}
.m6c_c01338{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);}
.m11_c01338{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.m102_c01338{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.ma4_c01338{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);}
.mda_c01338{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.m10c_c01338{transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);}
.m106_c01338{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.mf1_c01338{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.mcb_c01338{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);}
.m64_c01338{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);}
.mf5_c01338{transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);}
.m149_c01338{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);}
.m155_c01338{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);}
.m118_c01338{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);}
.m11f_c01338{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);}
.m82_c01338{transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);}
.mb6_c01338{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);}
.m8d_c01338{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);}
.me5_c01338{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);}
.m68_c01338{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);}
.m120_c01338{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);}
.m15d_c01338{transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240075,0.000000,0.000000,0.250000,0,0);}
.m45_c01338{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);}
.m3a_c01338{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);}
.m9a_c01338{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);}
.mfe_c01338{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m97_c01338{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m90_c01338{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m85_c01338{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);}
.m133_c01338{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);}
.mdf_c01338{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);}
.mdd_c01338{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_c01338{transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);}
.m7d_c01338{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);}
.m119_c01338{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);}
.m130_c01338{transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244925,0.000000,0.000000,0.250000,0,0);}
.m159_c01338{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);}
.m48_c01338{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);}
.m101_c01338{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);}
.m13e_c01338{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.mc0_c01338{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);}
.md2_c01338{transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);}
.m14f_c01338{transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246525,0.000000,0.000000,0.250000,0,0);}
.m81_c01338{transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246950,0.000000,0.000000,0.250000,0,0);}
.m5b_c01338{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.m116_c01338{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);}
.m12e_c01338{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);}
.md5_c01338{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);}
.m128_c01338{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m60_c01338{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m25_c01338{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);}
.m72_c01338{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m10_c01338{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);}
.m46_c01338{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);}
.ma1_c01338{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);}
.m37_c01338{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);}
.m52_c01338{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m16_c01338{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.md_c01338{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6_c01338{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);}
.m67_c01338{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb4_c01338{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);}
.ma3_c01338{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);}
.m71_c01338{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01338{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);}
.m1e_c01338{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01338{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m49_c01338{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);}
.m5f_c01338{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24_c01338{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);}
.m51_c01338{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);}
.m65_c01338{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01338{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m21_c01338{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);}
.m32_c01338{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01338{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m29_c01338{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);}
.m66_c01338{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01338{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.me_c01338{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01338{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m40_c01338{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc3_c01338{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma8_c01338{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mcf_c01338{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m96_c01338{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);}
.mbe_c01338{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01338{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m41_c01338{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc2_c01338{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m54_c01338{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);}
.m84_c01338{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);}
.mb0_c01338{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m4_c01338{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me0_c01338{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);}
.m38_c01338{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m109_c01338{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01338{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m42_c01338{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2_c01338{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.md9_c01338{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);}
.m9e_c01338{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3_c01338{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);}
.m17_c01338{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16b_c01338{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m5_c01338{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01338{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.me7_c01338{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01338{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m16c_c01338{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01338{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01338{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);}
.mb8_c01338{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);}
.mc6_c01338{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m62_c01338{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);}
.m28_c01338{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m112_c01338{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mb_c01338{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mbf_c01338{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mf4_c01338{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mf0_c01338{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01338{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);}
.mf_c01338{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m9b_c01338{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m15a_c01338{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m39_c01338{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m59_c01338{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);}
.m13f_c01338{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m74_c01338{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);}
.mc_c01338{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01338{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m182_c01338{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01338{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m7_c01338{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m17e_c01338{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);}
.mad_c01338{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m158_c01338{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.maf_c01338{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m16f_c01338{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.m0_c01338{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.ma2_c01338{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m44_c01338{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m181_c01338{transform:matrix(8.315000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.315000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.315000,0.000000,0.000000,0.250000,0,0);}
.v2_c01338{vertical-align:-6.900000px;}
.v1_c01338{vertical-align:-3.480000px;}
.v0_c01338{vertical-align:0.000000px;}
.v3_c01338{vertical-align:3.480000px;}
.ls4_c01338{letter-spacing:0.000000px;}
.ls0_c01338{letter-spacing:12.604560px;}
.ls2_c01338{letter-spacing:59.042688px;}
.ls3_c01338{letter-spacing:64.028700px;}
.ls1_c01338{letter-spacing:617.958333px;}
.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:-17.475960px;}
.ws1_c01338{word-spacing:-10.575840px;}
.ws2_c01338{word-spacing:-6.597480px;}
.ws4_c01338{word-spacing:0.000000px;}
.ws3_c01338{word-spacing:156.483167px;}
.fc0_c01338{color:transparent;}
.fsd_c01338{font-size:3.456000px;}
.fs1c_c01338{font-size:6.000000px;}
.fs1b_c01338{font-size:6.900000px;}
.fs9_c01338{font-size:10.380000px;}
.fs1f_c01338{font-size:13.800000px;}
.fs19_c01338{font-size:17.280000px;}
.fs1d_c01338{font-size:20.760000px;}
.fs14_c01338{font-size:24.180000px;}
.fs1e_c01338{font-size:27.660000px;}
.fs18_c01338{font-size:31.080000px;}
.fs8_c01338{font-size:34.560000px;}
.fs15_c01338{font-size:38.040000px;}
.fs0_c01338{font-size:41.460000px;}
.fsb_c01338{font-size:44.940000px;}
.fsa_c01338{font-size:48.360000px;}
.fs17_c01338{font-size:51.840000px;}
.fs12_c01338{font-size:55.320000px;}
.fs10_c01338{font-size:58.740000px;}
.fs13_c01338{font-size:62.220000px;}
.fs5_c01338{font-size:65.640000px;}
.fs1_c01338{font-size:69.120000px;}
.fs2_c01338{font-size:72.600000px;}
.fs4_c01338{font-size:76.020000px;}
.fs3_c01338{font-size:79.500000px;}
.fs11_c01338{font-size:82.920000px;}
.fs16_c01338{font-size:86.400000px;}
.fs1a_c01338{font-size:89.880000px;}
.fsf_c01338{font-size:93.300000px;}
.fse_c01338{font-size:96.780000px;}
.fs7_c01338{font-size:103.680000px;}
.fs6_c01338{font-size:117.480000px;}
.fsc_c01338{font-size:131.340000px;}
.y0_c01338{bottom:0.000000px;}
.y207_c01338{bottom:187.485000px;}
.y209_c01338{bottom:188.355000px;}
.y208_c01338{bottom:189.210000px;}
.y205_c01338{bottom:190.080000px;}
.y203_c01338{bottom:191.805000px;}
.y201_c01338{bottom:192.675000px;}
.y1fb_c01338{bottom:196.125000px;}
.y200_c01338{bottom:196.995000px;}
.y1ff_c01338{bottom:197.850000px;}
.y1fc_c01338{bottom:198.720000px;}
.y1fa_c01338{bottom:199.590000px;}
.y1fe_c01338{bottom:200.445000px;}
.y206_c01338{bottom:201.315000px;}
.y1fd_c01338{bottom:203.040000px;}
.y202_c01338{bottom:203.910000px;}
.y204_c01338{bottom:210.810000px;}
.y1f7_c01338{bottom:214.275000px;}
.y1f8_c01338{bottom:215.130000px;}
.y1f4_c01338{bottom:216.000000px;}
.y1f9_c01338{bottom:216.870000px;}
.y1f1_c01338{bottom:217.725000px;}
.y1f6_c01338{bottom:219.450000px;}
.y1f5_c01338{bottom:220.320000px;}
.y1f3_c01338{bottom:222.045000px;}
.y1f2_c01338{bottom:222.915000px;}
.y1ee_c01338{bottom:223.770000px;}
.y1f0_c01338{bottom:224.640000px;}
.y1ef_c01338{bottom:225.510000px;}
.y1ea_c01338{bottom:234.150000px;}
.y1ec_c01338{bottom:235.875000px;}
.y1e9_c01338{bottom:236.730000px;}
.y1e6_c01338{bottom:237.600000px;}
.y1ed_c01338{bottom:239.325000px;}
.y1e7_c01338{bottom:240.195000px;}
.y1e3_c01338{bottom:241.050000px;}
.y1e5_c01338{bottom:241.920000px;}
.y1eb_c01338{bottom:242.790000px;}
.y1e4_c01338{bottom:243.645000px;}
.y1e8_c01338{bottom:245.370000px;}
.y1e2_c01338{bottom:246.240000px;}
.y1e0_c01338{bottom:250.560000px;}
.y1df_c01338{bottom:253.155000px;}
.y1e1_c01338{bottom:254.010000px;}
.y1dd_c01338{bottom:254.880000px;}
.y1dc_c01338{bottom:255.750000px;}
.y1de_c01338{bottom:256.605000px;}
.y1d9_c01338{bottom:257.475000px;}
.y1d8_c01338{bottom:259.200000px;}
.y1d6_c01338{bottom:260.070000px;}
.y1da_c01338{bottom:261.795000px;}
.y1d4_c01338{bottom:262.650000px;}
.y1d7_c01338{bottom:265.245000px;}
.y1d5_c01338{bottom:273.030000px;}
.y1db_c01338{bottom:274.755000px;}
.y1cd_c01338{bottom:275.610000px;}
.y1d1_c01338{bottom:278.205000px;}
.y1ca_c01338{bottom:279.075000px;}
.y1ce_c01338{bottom:280.800000px;}
.y1cc_c01338{bottom:281.670000px;}
.y1c9_c01338{bottom:282.525000px;}
.y1cb_c01338{bottom:283.395000px;}
.y1d3_c01338{bottom:284.250000px;}
.y1c7_c01338{bottom:285.120000px;}
.y1c8_c01338{bottom:285.990000px;}
.y1d0_c01338{bottom:286.845000px;}
.y1d2_c01338{bottom:288.570000px;}
.y1cf_c01338{bottom:291.165000px;}
.y1c6_c01338{bottom:292.890000px;}
.y1c4_c01338{bottom:293.760000px;}
.y1c2_c01338{bottom:294.630000px;}
.y1c1_c01338{bottom:296.355000px;}
.y1c0_c01338{bottom:297.210000px;}
.y1c3_c01338{bottom:298.080000px;}
.y1ba_c01338{bottom:298.950000px;}
.y1be_c01338{bottom:299.805000px;}
.y1bd_c01338{bottom:300.675000px;}
.y1bf_c01338{bottom:301.530000px;}
.y1bb_c01338{bottom:304.125000px;}
.y1bc_c01338{bottom:304.995000px;}
.y1c5_c01338{bottom:311.040000px;}
.y1b9_c01338{bottom:312.765000px;}
.y1b7_c01338{bottom:315.360000px;}
.y1b8_c01338{bottom:316.230000px;}
.y1b6_c01338{bottom:317.085000px;}
.y1b3_c01338{bottom:317.955000px;}
.y1b1_c01338{bottom:318.810000px;}
.y1ae_c01338{bottom:319.680000px;}
.y1af_c01338{bottom:323.130000px;}
.y1b0_c01338{bottom:324.000000px;}
.y1b2_c01338{bottom:325.725000px;}
.y1b5_c01338{bottom:328.320000px;}
.y1b4_c01338{bottom:333.510000px;}
.y1a7_c01338{bottom:339.555000px;}
.y1a8_c01338{bottom:340.410000px;}
.y1a5_c01338{bottom:342.150000px;}
.y1ab_c01338{bottom:343.875000px;}
.y1a6_c01338{bottom:345.600000px;}
.y1ad_c01338{bottom:347.325000px;}
.y1a9_c01338{bottom:348.195000px;}
.y1aa_c01338{bottom:350.790000px;}
.y1ac_c01338{bottom:353.370000px;}
.y1a3_c01338{bottom:355.965000px;}
.y1a1_c01338{bottom:356.835000px;}
.y1a4_c01338{bottom:357.690000px;}
.y1a2_c01338{bottom:358.560000px;}
.y1a0_c01338{bottom:359.430000px;}
.y19e_c01338{bottom:362.010000px;}
.y19c_c01338{bottom:362.880000px;}
.y19d_c01338{bottom:365.475000px;}
.y19b_c01338{bottom:366.330000px;}
.y199_c01338{bottom:367.200000px;}
.y19f_c01338{bottom:370.650000px;}
.y19a_c01338{bottom:377.565000px;}
.y195_c01338{bottom:378.435000px;}
.y197_c01338{bottom:379.290000px;}
.y193_c01338{bottom:381.030000px;}
.y191_c01338{bottom:381.885000px;}
.y196_c01338{bottom:382.755000px;}
.y190_c01338{bottom:384.480000px;}
.y192_c01338{bottom:385.350000px;}
.y194_c01338{bottom:388.800000px;}
.y198_c01338{bottom:391.395000px;}
.y18f_c01338{bottom:393.990000px;}
.y18e_c01338{bottom:398.310000px;}
.y18c_c01338{bottom:400.890000px;}
.y18d_c01338{bottom:401.760000px;}
.y18b_c01338{bottom:402.630000px;}
.y189_c01338{bottom:406.080000px;}
.y18a_c01338{bottom:407.805000px;}
.y187_c01338{bottom:415.590000px;}
.y186_c01338{bottom:417.315000px;}
.y185_c01338{bottom:419.040000px;}
.y188_c01338{bottom:419.910000px;}
.y181_c01338{bottom:423.360000px;}
.y184_c01338{bottom:425.085000px;}
.y183_c01338{bottom:425.955000px;}
.y17f_c01338{bottom:426.810000px;}
.y182_c01338{bottom:427.680000px;}
.y180_c01338{bottom:428.550000px;}
.y17e_c01338{bottom:430.275000px;}
.y17c_c01338{bottom:437.190000px;}
.y17b_c01338{bottom:438.915000px;}
.y17d_c01338{bottom:439.770000px;}
.y17a_c01338{bottom:440.640000px;}
.y178_c01338{bottom:442.365000px;}
.y179_c01338{bottom:443.235000px;}
.y177_c01338{bottom:444.960000px;}
.y176_c01338{bottom:457.050000px;}
.y174_c01338{bottom:460.515000px;}
.y175_c01338{bottom:461.370000px;}
.y172_c01338{bottom:463.110000px;}
.y171_c01338{bottom:467.430000px;}
.y173_c01338{bottom:469.155000px;}
.y16e_c01338{bottom:479.520000px;}
.y16d_c01338{bottom:480.390000px;}
.y170_c01338{bottom:481.245000px;}
.y16f_c01338{bottom:482.970000px;}
.y168_c01338{bottom:484.710000px;}
.y16c_c01338{bottom:486.435000px;}
.y16b_c01338{bottom:487.290000px;}
.y169_c01338{bottom:488.160000px;}
.y16a_c01338{bottom:489.885000px;}
.y167_c01338{bottom:497.670000px;}
.y166_c01338{bottom:501.120000px;}
.y164_c01338{bottom:501.990000px;}
.y161_c01338{bottom:503.715000px;}
.y162_c01338{bottom:505.440000px;}
.y165_c01338{bottom:507.165000px;}
.y163_c01338{bottom:508.035000px;}
.y15e_c01338{bottom:518.400000px;}
.y15c_c01338{bottom:520.125000px;}
.y15b_c01338{bottom:522.720000px;}
.y15f_c01338{bottom:523.590000px;}
.y158_c01338{bottom:524.445000px;}
.y15d_c01338{bottom:525.315000px;}
.y15a_c01338{bottom:528.765000px;}
.y159_c01338{bottom:529.635000px;}
.y160_c01338{bottom:536.550000px;}
.y157_c01338{bottom:538.275000px;}
.y155_c01338{bottom:540.000000px;}
.y156_c01338{bottom:540.870000px;}
.y152_c01338{bottom:543.450000px;}
.y154_c01338{bottom:547.770000px;}
.y151_c01338{bottom:549.510000px;}
.y150_c01338{bottom:550.365000px;}
.y14f_c01338{bottom:551.235000px;}
.y153_c01338{bottom:553.830000px;}
.y14e_c01338{bottom:561.600000px;}
.y14c_c01338{bottom:562.470000px;}
.y14d_c01338{bottom:564.195000px;}
.y14a_c01338{bottom:565.920000px;}
.y14b_c01338{bottom:568.515000px;}
.y149_c01338{bottom:570.240000px;}
.y148_c01338{bottom:579.750000px;}
.y146_c01338{bottom:582.330000px;}
.y145_c01338{bottom:583.200000px;}
.y144_c01338{bottom:584.070000px;}
.y142_c01338{bottom:584.925000px;}
.y147_c01338{bottom:586.650000px;}
.y141_c01338{bottom:589.245000px;}
.y143_c01338{bottom:590.970000px;}
.y140_c01338{bottom:600.480000px;}
.y13e_c01338{bottom:603.075000px;}
.y13c_c01338{bottom:604.800000px;}
.y139_c01338{bottom:606.525000px;}
.y13f_c01338{bottom:607.395000px;}
.y13d_c01338{bottom:608.250000px;}
.y13a_c01338{bottom:609.120000px;}
.y13b_c01338{bottom:611.715000px;}
.y138_c01338{bottom:612.570000px;}
.y137_c01338{bottom:613.440000px;}
.y136_c01338{bottom:622.080000px;}
.y135_c01338{bottom:622.950000px;}
.y132_c01338{bottom:623.805000px;}
.y131_c01338{bottom:624.675000px;}
.y134_c01338{bottom:627.270000px;}
.y133_c01338{bottom:628.125000px;}
.y12f_c01338{bottom:629.850000px;}
.y130_c01338{bottom:631.590000px;}
.y12b_c01338{bottom:641.955000px;}
.y129_c01338{bottom:644.550000px;}
.y12e_c01338{bottom:645.405000px;}
.y12d_c01338{bottom:646.275000px;}
.y12c_c01338{bottom:648.000000px;}
.y127_c01338{bottom:648.870000px;}
.y12a_c01338{bottom:649.725000px;}
.y128_c01338{bottom:651.450000px;}
.y126_c01338{bottom:653.190000px;}
.y123_c01338{bottom:663.555000px;}
.y124_c01338{bottom:665.280000px;}
.y125_c01338{bottom:666.150000px;}
.y120_c01338{bottom:667.875000px;}
.y122_c01338{bottom:669.600000px;}
.y121_c01338{bottom:671.325000px;}
.y11e_c01338{bottom:673.920000px;}
.y11f_c01338{bottom:674.790000px;}
.y11b_c01338{bottom:680.835000px;}
.y11d_c01338{bottom:684.285000px;}
.y11c_c01338{bottom:686.010000px;}
.y116_c01338{bottom:686.880000px;}
.y119_c01338{bottom:687.750000px;}
.y118_c01338{bottom:689.475000px;}
.y117_c01338{bottom:690.330000px;}
.y115_c01338{bottom:691.200000px;}
.y11a_c01338{bottom:692.070000px;}
.y113_c01338{bottom:701.565000px;}
.y112_c01338{bottom:702.435000px;}
.y111_c01338{bottom:703.290000px;}
.y114_c01338{bottom:704.160000px;}
.y10e_c01338{bottom:705.885000px;}
.y10d_c01338{bottom:707.610000px;}
.y110_c01338{bottom:709.350000px;}
.y10f_c01338{bottom:710.205000px;}
.y10c_c01338{bottom:718.845000px;}
.y10b_c01338{bottom:721.440000px;}
.y109_c01338{bottom:724.035000px;}
.y10a_c01338{bottom:724.890000px;}
.y106_c01338{bottom:726.630000px;}
.y104_c01338{bottom:727.485000px;}
.y105_c01338{bottom:728.355000px;}
.y108_c01338{bottom:729.210000px;}
.y107_c01338{bottom:730.080000px;}
.y103_c01338{bottom:741.315000px;}
.y102_c01338{bottom:743.910000px;}
.yff_c01338{bottom:745.635000px;}
.yfd_c01338{bottom:746.490000px;}
.y100_c01338{bottom:749.085000px;}
.y101_c01338{bottom:749.955000px;}
.yfe_c01338{bottom:751.680000px;}
.yfc_c01338{bottom:752.550000px;}
.yfa_c01338{bottom:760.320000px;}
.yf9_c01338{bottom:763.770000px;}
.yf8_c01338{bottom:764.640000px;}
.yfb_c01338{bottom:765.510000px;}
.yf5_c01338{bottom:766.365000px;}
.yf7_c01338{bottom:769.830000px;}
.yf6_c01338{bottom:770.685000px;}
.yf4_c01338{bottom:774.150000px;}
.yf3_c01338{bottom:779.325000px;}
.yf2_c01338{bottom:781.050000px;}
.yf1_c01338{bottom:783.645000px;}
.yf0_c01338{bottom:784.515000px;}
.yee_c01338{bottom:787.110000px;}
.yed_c01338{bottom:788.835000px;}
.yef_c01338{bottom:790.560000px;}
.ye8_c01338{bottom:806.115000px;}
.ye9_c01338{bottom:806.970000px;}
.yea_c01338{bottom:807.840000px;}
.yec_c01338{bottom:808.710000px;}
.ye6_c01338{bottom:810.435000px;}
.yeb_c01338{bottom:811.290000px;}
.ye7_c01338{bottom:813.030000px;}
.ye5_c01338{bottom:823.395000px;}
.ye3_c01338{bottom:825.120000px;}
.ye0_c01338{bottom:825.990000px;}
.ydf_c01338{bottom:827.715000px;}
.ye4_c01338{bottom:828.570000px;}
.ye2_c01338{bottom:829.440000px;}
.ydd_c01338{bottom:830.310000px;}
.ye1_c01338{bottom:831.165000px;}
.yde_c01338{bottom:832.890000px;}
.yda_c01338{bottom:843.270000px;}
.yd9_c01338{bottom:844.125000px;}
.ydb_c01338{bottom:846.720000px;}
.yd7_c01338{bottom:847.590000px;}
.yd8_c01338{bottom:850.170000px;}
.yd6_c01338{bottom:851.910000px;}
.yd5_c01338{bottom:852.765000px;}
.yd4_c01338{bottom:853.635000px;}
.ydc_c01338{bottom:854.490000px;}
.yd2_c01338{bottom:863.130000px;}
.yd3_c01338{bottom:864.870000px;}
.ycd_c01338{bottom:867.450000px;}
.yce_c01338{bottom:868.320000px;}
.yd0_c01338{bottom:870.045000px;}
.ycf_c01338{bottom:870.915000px;}
.ycc_c01338{bottom:872.640000px;}
.ycb_c01338{bottom:873.510000px;}
.yca_c01338{bottom:874.365000px;}
.yd1_c01338{bottom:877.830000px;}
.yc9_c01338{bottom:880.410000px;}
.yc7_c01338{bottom:883.875000px;}
.yc8_c01338{bottom:885.600000px;}
.yc6_c01338{bottom:886.470000px;}
.yc5_c01338{bottom:889.920000px;}
.yc4_c01338{bottom:890.790000px;}
.yc2_c01338{bottom:905.475000px;}
.yc3_c01338{bottom:906.330000px;}
.yc0_c01338{bottom:908.070000px;}
.ybe_c01338{bottom:909.795000px;}
.ybd_c01338{bottom:910.650000px;}
.yc1_c01338{bottom:911.520000px;}
.ybf_c01338{bottom:912.390000px;}
.ybc_c01338{bottom:924.480000px;}
.yb8_c01338{bottom:925.350000px;}
.yba_c01338{bottom:927.930000px;}
.ybb_c01338{bottom:929.670000px;}
.yb9_c01338{bottom:930.525000px;}
.yb7_c01338{bottom:941.760000px;}
.yb6_c01338{bottom:943.485000px;}
.yb3_c01338{bottom:946.080000px;}
.yb1_c01338{bottom:946.950000px;}
.yb0_c01338{bottom:948.675000px;}
.yb4_c01338{bottom:949.530000px;}
.yb2_c01338{bottom:950.400000px;}
.yaf_c01338{bottom:951.270000px;}
.yae_c01338{bottom:952.995000px;}
.yb5_c01338{bottom:960.765000px;}
.yad_c01338{bottom:964.230000px;}
.ya9_c01338{bottom:966.810000px;}
.yac_c01338{bottom:967.680000px;}
.yab_c01338{bottom:970.275000px;}
.yaa_c01338{bottom:971.130000px;}
.ya8_c01338{bottom:972.870000px;}
.ya7_c01338{bottom:973.725000px;}
.ya6_c01338{bottom:974.595000px;}
.ya4_c01338{bottom:984.090000px;}
.ya3_c01338{bottom:985.830000px;}
.ya5_c01338{bottom:987.555000px;}
.ya0_c01338{bottom:989.280000px;}
.y9e_c01338{bottom:990.150000px;}
.ya1_c01338{bottom:991.005000px;}
.ya2_c01338{bottom:991.875000px;}
.y9f_c01338{bottom:995.325000px;}
.y9c_c01338{bottom:1004.835000px;}
.y9d_c01338{bottom:1008.285000px;}
.y9a_c01338{bottom:1010.010000px;}
.y9b_c01338{bottom:1010.880000px;}
.y96_c01338{bottom:1011.750000px;}
.y99_c01338{bottom:1012.605000px;}
.y98_c01338{bottom:1013.475000px;}
.y97_c01338{bottom:1014.330000px;}
.y95_c01338{bottom:1024.710000px;}
.y94_c01338{bottom:1025.565000px;}
.y93_c01338{bottom:1027.290000px;}
.y92_c01338{bottom:1030.755000px;}
.y8e_c01338{bottom:1031.610000px;}
.y91_c01338{bottom:1033.350000px;}
.y90_c01338{bottom:1034.205000px;}
.y8f_c01338{bottom:1035.075000px;}
.y89_c01338{bottom:1044.570000px;}
.y8c_c01338{bottom:1045.440000px;}
.y8b_c01338{bottom:1046.310000px;}
.y8d_c01338{bottom:1047.165000px;}
.y8a_c01338{bottom:1048.035000px;}
.y87_c01338{bottom:1048.890000px;}
.y86_c01338{bottom:1050.630000px;}
.y85_c01338{bottom:1051.485000px;}
.y88_c01338{bottom:1053.210000px;}
.y82_c01338{bottom:1067.040000px;}
.y80_c01338{bottom:1067.910000px;}
.y84_c01338{bottom:1068.765000px;}
.y7f_c01338{bottom:1069.635000px;}
.y7d_c01338{bottom:1070.490000px;}
.y83_c01338{bottom:1073.085000px;}
.y81_c01338{bottom:1073.955000px;}
.y7e_c01338{bottom:1077.405000px;}
.y7c_c01338{bottom:1086.915000px;}
.y79_c01338{bottom:1090.365000px;}
.y7b_c01338{bottom:1091.235000px;}
.y77_c01338{bottom:1092.960000px;}
.y7a_c01338{bottom:1094.685000px;}
.y78_c01338{bottom:1097.280000px;}
.y76_c01338{bottom:1098.150000px;}
.y75_c01338{bottom:1106.790000px;}
.y74_c01338{bottom:1108.515000px;}
.y72_c01338{bottom:1109.370000px;}
.y71_c01338{bottom:1110.240000px;}
.y70_c01338{bottom:1111.110000px;}
.y6f_c01338{bottom:1112.835000px;}
.y73_c01338{bottom:1115.430000px;}
.y6d_c01338{bottom:1128.390000px;}
.y6c_c01338{bottom:1129.245000px;}
.y6b_c01338{bottom:1130.115000px;}
.y69_c01338{bottom:1131.840000px;}
.y6a_c01338{bottom:1132.710000px;}
.y6e_c01338{bottom:1133.565000px;}
.y66_c01338{bottom:1134.435000px;}
.y68_c01338{bottom:1137.885000px;}
.y67_c01338{bottom:1145.670000px;}
.y64_c01338{bottom:1149.120000px;}
.y63_c01338{bottom:1150.845000px;}
.y5e_c01338{bottom:1152.570000px;}
.y65_c01338{bottom:1153.440000px;}
.y61_c01338{bottom:1155.165000px;}
.y60_c01338{bottom:1156.035000px;}
.y5f_c01338{bottom:1156.890000px;}
.y62_c01338{bottom:1162.080000px;}
.y5d_c01338{bottom:1164.675000px;}
.y5c_c01338{bottom:1168.125000px;}
.y59_c01338{bottom:1168.995000px;}
.y5b_c01338{bottom:1169.850000px;}
.y56_c01338{bottom:1170.720000px;}
.y57_c01338{bottom:1172.445000px;}
.y5a_c01338{bottom:1174.170000px;}
.y52_c01338{bottom:1175.040000px;}
.y55_c01338{bottom:1175.910000px;}
.y53_c01338{bottom:1176.765000px;}
.y58_c01338{bottom:1177.635000px;}
.y54_c01338{bottom:1179.360000px;}
.y20a_c01338{bottom:1187.130000px;}
.y50_c01338{bottom:1188.000000px;}
.y4e_c01338{bottom:1189.725000px;}
.y51_c01338{bottom:1190.595000px;}
.y4c_c01338{bottom:1191.450000px;}
.y4a_c01338{bottom:1193.190000px;}
.y4f_c01338{bottom:1194.045000px;}
.y4d_c01338{bottom:1195.770000px;}
.y4b_c01338{bottom:1196.640000px;}
.y49_c01338{bottom:1197.510000px;}
.y48_c01338{bottom:1199.235000px;}
.y46_c01338{bottom:1209.600000px;}
.y44_c01338{bottom:1211.325000px;}
.y45_c01338{bottom:1212.195000px;}
.y42_c01338{bottom:1213.920000px;}
.y47_c01338{bottom:1214.790000px;}
.y43_c01338{bottom:1218.240000px;}
.y41_c01338{bottom:1219.965000px;}
.y40_c01338{bottom:1227.750000px;}
.y3f_c01338{bottom:1228.605000px;}
.y3e_c01338{bottom:1232.925000px;}
.y3a_c01338{bottom:1233.795000px;}
.y3c_c01338{bottom:1234.650000px;}
.y3d_c01338{bottom:1235.520000px;}
.y3b_c01338{bottom:1236.390000px;}
.y39_c01338{bottom:1237.245000px;}
.y38_c01338{bottom:1238.970000px;}
.y34_c01338{bottom:1251.075000px;}
.y36_c01338{bottom:1252.800000px;}
.y37_c01338{bottom:1254.525000px;}
.y33_c01338{bottom:1257.120000px;}
.y32_c01338{bottom:1257.990000px;}
.y31_c01338{bottom:1258.845000px;}
.y35_c01338{bottom:1264.035000px;}
.y30_c01338{bottom:1268.355000px;}
.y2e_c01338{bottom:1271.805000px;}
.y2c_c01338{bottom:1273.530000px;}
.y2d_c01338{bottom:1276.125000px;}
.y2f_c01338{bottom:1276.995000px;}
.y2b_c01338{bottom:1287.360000px;}
.y28_c01338{bottom:1290.810000px;}
.y27_c01338{bottom:1291.680000px;}
.y29_c01338{bottom:1292.550000px;}
.y25_c01338{bottom:1293.405000px;}
.y26_c01338{bottom:1294.275000px;}
.y23_c01338{bottom:1295.130000px;}
.y2a_c01338{bottom:1296.870000px;}
.y24_c01338{bottom:1300.320000px;}
.y21_c01338{bottom:1307.235000px;}
.y20_c01338{bottom:1310.685000px;}
.y1d_c01338{bottom:1314.150000px;}
.y1a_c01338{bottom:1315.005000px;}
.y1f_c01338{bottom:1315.875000px;}
.y22_c01338{bottom:1316.730000px;}
.y1e_c01338{bottom:1317.600000px;}
.y1c_c01338{bottom:1320.195000px;}
.y1b_c01338{bottom:1321.050000px;}
.y19_c01338{bottom:1327.965000px;}
.y18_c01338{bottom:1328.835000px;}
.y14_c01338{bottom:1329.690000px;}
.y11_c01338{bottom:1330.560000px;}
.y10_c01338{bottom:1331.430000px;}
.y16_c01338{bottom:1332.285000px;}
.y15_c01338{bottom:1334.010000px;}
.y12_c01338{bottom:1335.750000px;}
.yf_c01338{bottom:1336.605000px;}
.y17_c01338{bottom:1337.475000px;}
.y13_c01338{bottom:1339.200000px;}
.yd_c01338{bottom:1346.970000px;}
.ye_c01338{bottom:1347.840000px;}
.y8_c01338{bottom:1353.030000px;}
.yc_c01338{bottom:1354.755000px;}
.y6_c01338{bottom:1355.610000px;}
.yb_c01338{bottom:1357.350000px;}
.y9_c01338{bottom:1358.205000px;}
.y7_c01338{bottom:1359.075000px;}
.ya_c01338{bottom:1360.800000px;}
.y5_c01338{bottom:1382.400000px;}
.y2_c01338{bottom:1384.125000px;}
.y4_c01338{bottom:1384.995000px;}
.y3_c01338{bottom:1385.850000px;}
.y1_c01338{bottom:1405.725000px;}
.hf_c01338{height:3.110063px;}
.h1e_c01338{height:5.399414px;}
.h1d_c01338{height:6.209326px;}
.h23_c01338{height:8.650313px;}
.hb_c01338{height:9.340986px;}
.h21_c01338{height:12.418652px;}
.h1b_c01338{height:15.550313px;}
.h1f_c01338{height:18.681973px;}
.h16_c01338{height:21.759639px;}
.h24_c01338{height:22.161973px;}
.h20_c01338{height:24.891299px;}
.h1a_c01338{height:27.968965px;}
.ha_c01338{height:31.100625px;}
.h17_c01338{height:34.232285px;}
.h2_c01338{height:37.309951px;}
.hd_c01338{height:40.441611px;}
.hc_c01338{height:43.519277px;}
.h19_c01338{height:46.650937px;}
.h14_c01338{height:49.782598px;}
.h22_c01338{height:52.571924px;}
.h12_c01338{height:52.860264px;}
.h15_c01338{height:55.991924px;}
.h7_c01338{height:59.069590px;}
.h3_c01338{height:62.201250px;}
.h4_c01338{height:65.332910px;}
.h6_c01338{height:68.410576px;}
.h5_c01338{height:71.542236px;}
.h13_c01338{height:74.619902px;}
.h18_c01338{height:77.751563px;}
.h1c_c01338{height:80.883223px;}
.h11_c01338{height:83.960889px;}
.h10_c01338{height:87.092549px;}
.h9_c01338{height:93.301875px;}
.h8_c01338{height:105.720527px;}
.he_c01338{height:118.193174px;}
.h1_c01338{height:1513.500000px;}
.h0_c01338{height:1513.725000px;}
.w0_c01338{width:1083.450000px;}
.w1_c01338{width:1083.750000px;}
.x0_c01338{left:0.000000px;}
.x115_c01338{left:12.960000px;}
.xe4_c01338{left:74.310000px;}
.x114_c01338{left:123.555000px;}
.x10d_c01338{left:163.290000px;}
.x10a_c01338{left:165.885000px;}
.x111_c01338{left:171.075000px;}
.x101_c01338{left:176.250000px;}
.xfa_c01338{left:183.165000px;}
.xc2_c01338{left:185.760000px;}
.xf4_c01338{left:187.484325px;}
.xc4_c01338{left:190.080000px;}
.xf5_c01338{left:194.400000px;}
.xa4_c01338{left:197.850000px;}
.x71_c01338{left:200.445000px;}
.xec_c01338{left:202.170000px;}
.xf6_c01338{left:203.910000px;}
.xa8_c01338{left:205.635000px;}
.x6b_c01338{left:207.360000px;}
.x96_c01338{left:209.955000px;}
.x5f_c01338{left:212.550000px;}
.x8a_c01338{left:214.275000px;}
.x32_c01338{left:216.000000px;}
.x21_c01338{left:217.725000px;}
.x45_c01338{left:219.450000px;}
.x2_c01338{left:221.190000px;}
.x51_c01338{left:229.830000px;}
.xd5_c01338{left:234.150000px;}
.x7e_c01338{left:236.730000px;}
.xf0_c01338{left:238.470000px;}
.x58_c01338{left:241.920000px;}
.x10e_c01338{left:243.645000px;}
.x14_c01338{left:246.240000px;}
.x22_c01338{left:247.965000px;}
.x10b_c01338{left:251.430000px;}
.xcb_c01338{left:254.010000px;}
.xae_c01338{left:255.750000px;}
.xd6_c01338{left:257.475000px;}
.xfb_c01338{left:259.200000px;}
.x102_c01338{left:260.925000px;}
.x72_c01338{left:263.520000px;}
.xb4_c01338{left:268.710000px;}
.x46_c01338{left:272.160000px;}
.x3d_c01338{left:274.755000px;}
.xb5_c01338{left:276.480000px;}
.x23_c01338{left:279.930000px;}
.xaf_c01338{left:281.670000px;}
.xcc_c01338{left:283.395000px;}
.x52_c01338{left:285.990000px;}
.x97_c01338{left:287.715000px;}
.x103_c01338{left:289.440000px;}
.x60_c01338{left:291.165000px;}
.x8b_c01338{left:292.890000px;}
.xc5_c01338{left:297.210000px;}
.x3_c01338{left:298.950000px;}
.x7f_c01338{left:300.675000px;}
.xb0_c01338{left:303.270000px;}
.x85_c01338{left:305.850000px;}
.x9_c01338{left:308.445000px;}
.x47_c01338{left:315.360000px;}
.x15_c01338{left:317.085000px;}
.x59_c01338{left:319.680000px;}
.x9d_c01338{left:321.405000px;}
.xce_c01338{left:323.130000px;}
.x24_c01338{left:324.870000px;}
.x61_c01338{left:326.595000px;}
.x6c_c01338{left:329.190000px;}
.xe0_c01338{left:332.640000px;}
.xa0_c01338{left:334.365000px;}
.x3e_c01338{left:337.830000px;}
.x2a_c01338{left:341.280000px;}
.x33_c01338{left:344.730000px;}
.xc0_c01338{left:346.470000px;}
.xf7_c01338{left:350.790000px;}
.xbb_c01338{left:352.515000px;}
.x16_c01338{left:355.110000px;}
.x86_c01338{left:356.835000px;}
.xe5_c01338{left:361.155000px;}
.xbd_c01338{left:362.880000px;}
.xe3_c01338{left:366.330000px;}
.xcd_c01338{left:368.925000px;}
.x62_c01338{left:371.520000px;}
.x1_c01338{left:374.115000px;}
.x10f_c01338{left:376.710000px;}
.x80_c01338{left:380.160000px;}
.x48_c01338{left:381.885000px;}
.xa9_c01338{left:383.610000px;}
.x2b_c01338{left:385.350000px;}
.xad_c01338{left:387.930000px;}
.xe7_c01338{left:389.670000px;}
.x34_c01338{left:393.120000px;}
.xa_c01338{left:394.845000px;}
.x4_c01338{left:398.310000px;}
.x17_c01338{left:400.890000px;}
.x76_c01338{left:402.630000px;}
.xb6_c01338{left:405.210000px;}
.x3f_c01338{left:407.805000px;}
.x87_c01338{left:410.400000px;}
.xaa_c01338{left:412.995000px;}
.xf8_c01338{left:414.720000px;}
.x25_c01338{left:416.445000px;}
.x5a_c01338{left:419.040000px;}
.xdd_c01338{left:420.765000px;}
.xd2_c01338{left:422.490000px;}
.x18_c01338{left:425.955000px;}
.xcf_c01338{left:427.680000px;}
.xfe_c01338{left:429.405000px;}
.xc1_c01338{left:431.130000px;}
.x49_c01338{left:433.725000px;}
.x19_c01338{left:436.320000px;}
.x40_c01338{left:440.640000px;}
.x53_c01338{left:443.235000px;}
.x2c_c01338{left:444.960000px;}
.x35_c01338{left:446.685000px;}
.x63_c01338{left:448.410000px;}
.xbc_c01338{left:450.150000px;}
.x64_c01338{left:452.730000px;}
.x2d_c01338{left:457.050000px;}
.x77_c01338{left:458.790000px;}
.x9e_c01338{left:463.110000px;}
.xd0_c01338{left:465.690000px;}
.x98_c01338{left:468.285000px;}
.x73_c01338{left:470.880000px;}
.xc3_c01338{left:473.475000px;}
.x104_c01338{left:475.200000px;}
.x4a_c01338{left:476.925000px;}
.x74_c01338{left:478.650000px;}
.xc6_c01338{left:481.245000px;}
.x6d_c01338{left:482.970000px;}
.x6e_c01338{left:488.160000px;}
.x26_c01338{left:491.610000px;}
.x1a_c01338{left:494.205000px;}
.x65_c01338{left:496.800000px;}
.x36_c01338{left:498.525000px;}
.xb_c01338{left:500.250000px;}
.x81_c01338{left:502.845000px;}
.x78_c01338{left:513.210000px;}
.xfc_c01338{left:514.950000px;}
.x105_c01338{left:518.400000px;}
.xc_c01338{left:522.720000px;}
.xf1_c01338{left:525.315000px;}
.xe6_c01338{left:527.910000px;}
.x5_c01338{left:531.360000px;}
.xc7_c01338{left:533.955000px;}
.xd_c01338{left:535.680000px;}
.x8c_c01338{left:537.405000px;}
.xea_c01338{left:539.130000px;}
.x41_c01338{left:540.870000px;}
.xd7_c01338{left:542.595000px;}
.x4b_c01338{left:544.320000px;}
.xe1_c01338{left:546.915000px;}
.x1b_c01338{left:548.640000px;}
.xbe_c01338{left:551.235000px;}
.x99_c01338{left:552.960000px;}
.xe_c01338{left:554.685000px;}
.x5b_c01338{left:556.410000px;}
.x10c_c01338{left:558.150000px;}
.x112_c01338{left:569.370000px;}
.xb1_c01338{left:571.110000px;}
.xbf_c01338{left:573.690000px;}
.x79_c01338{left:575.430000px;}
.x37_c01338{left:578.010000px;}
.x8d_c01338{left:581.475000px;}
.x4c_c01338{left:584.070000px;}
.x42_c01338{left:585.795000px;}
.x1c_c01338{left:587.520000px;}
.x92_c01338{left:591.840000px;}
.x66_c01338{left:594.435000px;}
.xf_c01338{left:596.160000px;}
.xa1_c01338{left:599.610000px;}
.xdb_c01338{left:601.350000px;}
.x110_c01338{left:603.075000px;}
.x4d_c01338{left:604.800000px;}
.x38_c01338{left:609.120000px;}
.x10_c01338{left:612.570000px;}
.x8e_c01338{left:616.035000px;}
.x82_c01338{left:617.760000px;}
.x6_c01338{left:619.485000px;}
.x7a_c01338{left:621.210000px;}
.x1d_c01338{left:624.675000px;}
.xa5_c01338{left:626.400000px;}
.xed_c01338{left:628.125000px;}
.xf2_c01338{left:630.720000px;}
.xd8_c01338{left:632.445000px;}
.x67_c01338{left:634.170000px;}
.x2e_c01338{left:635.910000px;}
.x5c_c01338{left:637.635000px;}
.x1e_c01338{left:643.680000px;}
.xab_c01338{left:647.130000px;}
.x11_c01338{left:649.725000px;}
.xd1_c01338{left:653.190000px;}
.x54_c01338{left:654.915000px;}
.x6f_c01338{left:660.090000px;}
.x27_c01338{left:661.830000px;}
.xdc_c01338{left:663.555000px;}
.x39_c01338{left:665.280000px;}
.xee_c01338{left:667.005000px;}
.xb7_c01338{left:668.730000px;}
.xd9_c01338{left:671.325000px;}
.x88_c01338{left:673.050000px;}
.x12_c01338{left:677.370000px;}
.x3a_c01338{left:680.835000px;}
.x7_c01338{left:682.560000px;}
.x8f_c01338{left:684.285000px;}
.x4e_c01338{left:687.750000px;}
.xac_c01338{left:691.200000px;}
.x1f_c01338{left:693.795000px;}
.x4f_c01338{left:695.520000px;}
.x113_c01338{left:698.115000px;}
.x55_c01338{left:699.840000px;}
.x68_c01338{left:701.565000px;}
.xc8_c01338{left:703.290000px;}
.x2f_c01338{left:705.030000px;}
.x43_c01338{left:706.755000px;}
.x83_c01338{left:710.205000px;}
.x93_c01338{left:711.930000px;}
.xe2_c01338{left:713.670000px;}
.xb2_c01338{left:715.395000px;}
.xd3_c01338{left:717.120000px;}
.x106_c01338{left:718.845000px;}
.xf9_c01338{left:721.440000px;}
.x9a_c01338{left:723.165000px;}
.x69_c01338{left:728.355000px;}
.x9b_c01338{left:730.950000px;}
.x56_c01338{left:736.995000px;}
.x7b_c01338{left:739.590000px;}
.x5d_c01338{left:743.040000px;}
.x3b_c01338{left:745.635000px;}
.x70_c01338{left:748.230000px;}
.x9c_c01338{left:751.680000px;}
.x8_c01338{left:753.405000px;}
.x30_c01338{left:756.000000px;}
.x50_c01338{left:758.595000px;}
.x94_c01338{left:760.320000px;}
.xde_c01338{left:763.770000px;}
.x3c_c01338{left:765.510000px;}
.xa2_c01338{left:767.235000px;}
.x95_c01338{left:770.685000px;}
.x20_c01338{left:772.410000px;}
.x9f_c01338{left:774.150000px;}
.x44_c01338{left:775.875000px;}
.xff_c01338{left:778.470000px;}
.x7c_c01338{left:780.195000px;}
.x57_c01338{left:781.920000px;}
.x89_c01338{left:784.515000px;}
.xa3_c01338{left:787.965000px;}
.x107_c01338{left:789.690000px;}
.xf3_c01338{left:792.285000px;}
.x6a_c01338{left:794.880000px;}
.xe8_c01338{left:796.605000px;}
.xa6_c01338{left:798.330000px;}
.x31_c01338{left:800.070000px;}
.x75_c01338{left:802.650000px;}
.x28_c01338{left:806.115000px;}
.x108_c01338{left:807.840000px;}
.xef_c01338{left:810.435000px;}
.x90_c01338{left:813.030000px;}
.x7d_c01338{left:817.350000px;}
.x84_c01338{left:819.930000px;}
.xda_c01338{left:821.670000px;}
.xdf_c01338{left:823.395000px;}
.xe9_c01338{left:825.120000px;}
.x29_c01338{left:826.845000px;}
.xd4_c01338{left:828.570000px;}
.x109_c01338{left:836.355000px;}
.xc9_c01338{left:838.080000px;}
.x5e_c01338{left:839.805000px;}
.xb8_c01338{left:843.270000px;}
.xeb_c01338{left:846.720000px;}
.xfd_c01338{left:850.170000px;}
.xca_c01338{left:851.910000px;}
.xa7_c01338{left:853.635000px;}
.x100_c01338{left:857.085000px;}
.x91_c01338{left:862.275000px;}
.xb9_c01338{left:866.595000px;}
.x13_c01338{left:868.320000px;}
.xba_c01338{left:875.235000px;}
.xb3_c01338{left:880.410000px;}
.x116_c01338{left:908.070000px;}
.x117_c01338{left:914.970000px;}
.x118_c01338{left:916.710000px;}
@media print{
.v2_c01338{vertical-align:-6.133333pt;}
.v1_c01338{vertical-align:-3.093333pt;}
.v0_c01338{vertical-align:0.000000pt;}
.v3_c01338{vertical-align:3.093333pt;}
.ls4_c01338{letter-spacing:0.000000pt;}
.ls0_c01338{letter-spacing:11.204053pt;}
.ls2_c01338{letter-spacing:52.482389pt;}
.ls3_c01338{letter-spacing:56.914400pt;}
.ls1_c01338{letter-spacing:549.296296pt;}
.ws0_c01338{word-spacing:-15.534187pt;}
.ws1_c01338{word-spacing:-9.400747pt;}
.ws2_c01338{word-spacing:-5.864427pt;}
.ws4_c01338{word-spacing:0.000000pt;}
.ws3_c01338{word-spacing:139.096148pt;}
.fsd_c01338{font-size:3.072000pt;}
.fs1c_c01338{font-size:5.333333pt;}
.fs1b_c01338{font-size:6.133333pt;}
.fs9_c01338{font-size:9.226667pt;}
.fs1f_c01338{font-size:12.266667pt;}
.fs19_c01338{font-size:15.360000pt;}
.fs1d_c01338{font-size:18.453333pt;}
.fs14_c01338{font-size:21.493333pt;}
.fs1e_c01338{font-size:24.586667pt;}
.fs18_c01338{font-size:27.626667pt;}
.fs8_c01338{font-size:30.720000pt;}
.fs15_c01338{font-size:33.813333pt;}
.fs0_c01338{font-size:36.853333pt;}
.fsb_c01338{font-size:39.946667pt;}
.fsa_c01338{font-size:42.986667pt;}
.fs17_c01338{font-size:46.080000pt;}
.fs12_c01338{font-size:49.173333pt;}
.fs10_c01338{font-size:52.213333pt;}
.fs13_c01338{font-size:55.306667pt;}
.fs5_c01338{font-size:58.346667pt;}
.fs1_c01338{font-size:61.440000pt;}
.fs2_c01338{font-size:64.533333pt;}
.fs4_c01338{font-size:67.573333pt;}
.fs3_c01338{font-size:70.666667pt;}
.fs11_c01338{font-size:73.706667pt;}
.fs16_c01338{font-size:76.800000pt;}
.fs1a_c01338{font-size:79.893333pt;}
.fsf_c01338{font-size:82.933333pt;}
.fse_c01338{font-size:86.026667pt;}
.fs7_c01338{font-size:92.160000pt;}
.fs6_c01338{font-size:104.426667pt;}
.fsc_c01338{font-size:116.746667pt;}
.y0_c01338{bottom:0.000000pt;}
.y207_c01338{bottom:166.653333pt;}
.y209_c01338{bottom:167.426667pt;}
.y208_c01338{bottom:168.186667pt;}
.y205_c01338{bottom:168.960000pt;}
.y203_c01338{bottom:170.493333pt;}
.y201_c01338{bottom:171.266667pt;}
.y1fb_c01338{bottom:174.333333pt;}
.y200_c01338{bottom:175.106667pt;}
.y1ff_c01338{bottom:175.866667pt;}
.y1fc_c01338{bottom:176.640000pt;}
.y1fa_c01338{bottom:177.413333pt;}
.y1fe_c01338{bottom:178.173333pt;}
.y206_c01338{bottom:178.946667pt;}
.y1fd_c01338{bottom:180.480000pt;}
.y202_c01338{bottom:181.253333pt;}
.y204_c01338{bottom:187.386667pt;}
.y1f7_c01338{bottom:190.466667pt;}
.y1f8_c01338{bottom:191.226667pt;}
.y1f4_c01338{bottom:192.000000pt;}
.y1f9_c01338{bottom:192.773333pt;}
.y1f1_c01338{bottom:193.533333pt;}
.y1f6_c01338{bottom:195.066667pt;}
.y1f5_c01338{bottom:195.840000pt;}
.y1f3_c01338{bottom:197.373333pt;}
.y1f2_c01338{bottom:198.146667pt;}
.y1ee_c01338{bottom:198.906667pt;}
.y1f0_c01338{bottom:199.680000pt;}
.y1ef_c01338{bottom:200.453333pt;}
.y1ea_c01338{bottom:208.133333pt;}
.y1ec_c01338{bottom:209.666667pt;}
.y1e9_c01338{bottom:210.426667pt;}
.y1e6_c01338{bottom:211.200000pt;}
.y1ed_c01338{bottom:212.733333pt;}
.y1e7_c01338{bottom:213.506667pt;}
.y1e3_c01338{bottom:214.266667pt;}
.y1e5_c01338{bottom:215.040000pt;}
.y1eb_c01338{bottom:215.813333pt;}
.y1e4_c01338{bottom:216.573333pt;}
.y1e8_c01338{bottom:218.106667pt;}
.y1e2_c01338{bottom:218.880000pt;}
.y1e0_c01338{bottom:222.720000pt;}
.y1df_c01338{bottom:225.026667pt;}
.y1e1_c01338{bottom:225.786667pt;}
.y1dd_c01338{bottom:226.560000pt;}
.y1dc_c01338{bottom:227.333333pt;}
.y1de_c01338{bottom:228.093333pt;}
.y1d9_c01338{bottom:228.866667pt;}
.y1d8_c01338{bottom:230.400000pt;}
.y1d6_c01338{bottom:231.173333pt;}
.y1da_c01338{bottom:232.706667pt;}
.y1d4_c01338{bottom:233.466667pt;}
.y1d7_c01338{bottom:235.773333pt;}
.y1d5_c01338{bottom:242.693333pt;}
.y1db_c01338{bottom:244.226667pt;}
.y1cd_c01338{bottom:244.986667pt;}
.y1d1_c01338{bottom:247.293333pt;}
.y1ca_c01338{bottom:248.066667pt;}
.y1ce_c01338{bottom:249.600000pt;}
.y1cc_c01338{bottom:250.373333pt;}
.y1c9_c01338{bottom:251.133333pt;}
.y1cb_c01338{bottom:251.906667pt;}
.y1d3_c01338{bottom:252.666667pt;}
.y1c7_c01338{bottom:253.440000pt;}
.y1c8_c01338{bottom:254.213333pt;}
.y1d0_c01338{bottom:254.973333pt;}
.y1d2_c01338{bottom:256.506667pt;}
.y1cf_c01338{bottom:258.813333pt;}
.y1c6_c01338{bottom:260.346667pt;}
.y1c4_c01338{bottom:261.120000pt;}
.y1c2_c01338{bottom:261.893333pt;}
.y1c1_c01338{bottom:263.426667pt;}
.y1c0_c01338{bottom:264.186667pt;}
.y1c3_c01338{bottom:264.960000pt;}
.y1ba_c01338{bottom:265.733333pt;}
.y1be_c01338{bottom:266.493333pt;}
.y1bd_c01338{bottom:267.266667pt;}
.y1bf_c01338{bottom:268.026667pt;}
.y1bb_c01338{bottom:270.333333pt;}
.y1bc_c01338{bottom:271.106667pt;}
.y1c5_c01338{bottom:276.480000pt;}
.y1b9_c01338{bottom:278.013333pt;}
.y1b7_c01338{bottom:280.320000pt;}
.y1b8_c01338{bottom:281.093333pt;}
.y1b6_c01338{bottom:281.853333pt;}
.y1b3_c01338{bottom:282.626667pt;}
.y1b1_c01338{bottom:283.386667pt;}
.y1ae_c01338{bottom:284.160000pt;}
.y1af_c01338{bottom:287.226667pt;}
.y1b0_c01338{bottom:288.000000pt;}
.y1b2_c01338{bottom:289.533333pt;}
.y1b5_c01338{bottom:291.840000pt;}
.y1b4_c01338{bottom:296.453333pt;}
.y1a7_c01338{bottom:301.826667pt;}
.y1a8_c01338{bottom:302.586667pt;}
.y1a5_c01338{bottom:304.133333pt;}
.y1ab_c01338{bottom:305.666667pt;}
.y1a6_c01338{bottom:307.200000pt;}
.y1ad_c01338{bottom:308.733333pt;}
.y1a9_c01338{bottom:309.506667pt;}
.y1aa_c01338{bottom:311.813333pt;}
.y1ac_c01338{bottom:314.106667pt;}
.y1a3_c01338{bottom:316.413333pt;}
.y1a1_c01338{bottom:317.186667pt;}
.y1a4_c01338{bottom:317.946667pt;}
.y1a2_c01338{bottom:318.720000pt;}
.y1a0_c01338{bottom:319.493333pt;}
.y19e_c01338{bottom:321.786667pt;}
.y19c_c01338{bottom:322.560000pt;}
.y19d_c01338{bottom:324.866667pt;}
.y19b_c01338{bottom:325.626667pt;}
.y199_c01338{bottom:326.400000pt;}
.y19f_c01338{bottom:329.466667pt;}
.y19a_c01338{bottom:335.613333pt;}
.y195_c01338{bottom:336.386667pt;}
.y197_c01338{bottom:337.146667pt;}
.y193_c01338{bottom:338.693333pt;}
.y191_c01338{bottom:339.453333pt;}
.y196_c01338{bottom:340.226667pt;}
.y190_c01338{bottom:341.760000pt;}
.y192_c01338{bottom:342.533333pt;}
.y194_c01338{bottom:345.600000pt;}
.y198_c01338{bottom:347.906667pt;}
.y18f_c01338{bottom:350.213333pt;}
.y18e_c01338{bottom:354.053333pt;}
.y18c_c01338{bottom:356.346667pt;}
.y18d_c01338{bottom:357.120000pt;}
.y18b_c01338{bottom:357.893333pt;}
.y189_c01338{bottom:360.960000pt;}
.y18a_c01338{bottom:362.493333pt;}
.y187_c01338{bottom:369.413333pt;}
.y186_c01338{bottom:370.946667pt;}
.y185_c01338{bottom:372.480000pt;}
.y188_c01338{bottom:373.253333pt;}
.y181_c01338{bottom:376.320000pt;}
.y184_c01338{bottom:377.853333pt;}
.y183_c01338{bottom:378.626667pt;}
.y17f_c01338{bottom:379.386667pt;}
.y182_c01338{bottom:380.160000pt;}
.y180_c01338{bottom:380.933333pt;}
.y17e_c01338{bottom:382.466667pt;}
.y17c_c01338{bottom:388.613333pt;}
.y17b_c01338{bottom:390.146667pt;}
.y17d_c01338{bottom:390.906667pt;}
.y17a_c01338{bottom:391.680000pt;}
.y178_c01338{bottom:393.213333pt;}
.y179_c01338{bottom:393.986667pt;}
.y177_c01338{bottom:395.520000pt;}
.y176_c01338{bottom:406.266667pt;}
.y174_c01338{bottom:409.346667pt;}
.y175_c01338{bottom:410.106667pt;}
.y172_c01338{bottom:411.653333pt;}
.y171_c01338{bottom:415.493333pt;}
.y173_c01338{bottom:417.026667pt;}
.y16e_c01338{bottom:426.240000pt;}
.y16d_c01338{bottom:427.013333pt;}
.y170_c01338{bottom:427.773333pt;}
.y16f_c01338{bottom:429.306667pt;}
.y168_c01338{bottom:430.853333pt;}
.y16c_c01338{bottom:432.386667pt;}
.y16b_c01338{bottom:433.146667pt;}
.y169_c01338{bottom:433.920000pt;}
.y16a_c01338{bottom:435.453333pt;}
.y167_c01338{bottom:442.373333pt;}
.y166_c01338{bottom:445.440000pt;}
.y164_c01338{bottom:446.213333pt;}
.y161_c01338{bottom:447.746667pt;}
.y162_c01338{bottom:449.280000pt;}
.y165_c01338{bottom:450.813333pt;}
.y163_c01338{bottom:451.586667pt;}
.y15e_c01338{bottom:460.800000pt;}
.y15c_c01338{bottom:462.333333pt;}
.y15b_c01338{bottom:464.640000pt;}
.y15f_c01338{bottom:465.413333pt;}
.y158_c01338{bottom:466.173333pt;}
.y15d_c01338{bottom:466.946667pt;}
.y15a_c01338{bottom:470.013333pt;}
.y159_c01338{bottom:470.786667pt;}
.y160_c01338{bottom:476.933333pt;}
.y157_c01338{bottom:478.466667pt;}
.y155_c01338{bottom:480.000000pt;}
.y156_c01338{bottom:480.773333pt;}
.y152_c01338{bottom:483.066667pt;}
.y154_c01338{bottom:486.906667pt;}
.y151_c01338{bottom:488.453333pt;}
.y150_c01338{bottom:489.213333pt;}
.y14f_c01338{bottom:489.986667pt;}
.y153_c01338{bottom:492.293333pt;}
.y14e_c01338{bottom:499.200000pt;}
.y14c_c01338{bottom:499.973333pt;}
.y14d_c01338{bottom:501.506667pt;}
.y14a_c01338{bottom:503.040000pt;}
.y14b_c01338{bottom:505.346667pt;}
.y149_c01338{bottom:506.880000pt;}
.y148_c01338{bottom:515.333333pt;}
.y146_c01338{bottom:517.626667pt;}
.y145_c01338{bottom:518.400000pt;}
.y144_c01338{bottom:519.173333pt;}
.y142_c01338{bottom:519.933333pt;}
.y147_c01338{bottom:521.466667pt;}
.y141_c01338{bottom:523.773333pt;}
.y143_c01338{bottom:525.306667pt;}
.y140_c01338{bottom:533.760000pt;}
.y13e_c01338{bottom:536.066667pt;}
.y13c_c01338{bottom:537.600000pt;}
.y139_c01338{bottom:539.133333pt;}
.y13f_c01338{bottom:539.906667pt;}
.y13d_c01338{bottom:540.666667pt;}
.y13a_c01338{bottom:541.440000pt;}
.y13b_c01338{bottom:543.746667pt;}
.y138_c01338{bottom:544.506667pt;}
.y137_c01338{bottom:545.280000pt;}
.y136_c01338{bottom:552.960000pt;}
.y135_c01338{bottom:553.733333pt;}
.y132_c01338{bottom:554.493333pt;}
.y131_c01338{bottom:555.266667pt;}
.y134_c01338{bottom:557.573333pt;}
.y133_c01338{bottom:558.333333pt;}
.y12f_c01338{bottom:559.866667pt;}
.y130_c01338{bottom:561.413333pt;}
.y12b_c01338{bottom:570.626667pt;}
.y129_c01338{bottom:572.933333pt;}
.y12e_c01338{bottom:573.693333pt;}
.y12d_c01338{bottom:574.466667pt;}
.y12c_c01338{bottom:576.000000pt;}
.y127_c01338{bottom:576.773333pt;}
.y12a_c01338{bottom:577.533333pt;}
.y128_c01338{bottom:579.066667pt;}
.y126_c01338{bottom:580.613333pt;}
.y123_c01338{bottom:589.826667pt;}
.y124_c01338{bottom:591.360000pt;}
.y125_c01338{bottom:592.133333pt;}
.y120_c01338{bottom:593.666667pt;}
.y122_c01338{bottom:595.200000pt;}
.y121_c01338{bottom:596.733333pt;}
.y11e_c01338{bottom:599.040000pt;}
.y11f_c01338{bottom:599.813333pt;}
.y11b_c01338{bottom:605.186667pt;}
.y11d_c01338{bottom:608.253333pt;}
.y11c_c01338{bottom:609.786667pt;}
.y116_c01338{bottom:610.560000pt;}
.y119_c01338{bottom:611.333333pt;}
.y118_c01338{bottom:612.866667pt;}
.y117_c01338{bottom:613.626667pt;}
.y115_c01338{bottom:614.400000pt;}
.y11a_c01338{bottom:615.173333pt;}
.y113_c01338{bottom:623.613333pt;}
.y112_c01338{bottom:624.386667pt;}
.y111_c01338{bottom:625.146667pt;}
.y114_c01338{bottom:625.920000pt;}
.y10e_c01338{bottom:627.453333pt;}
.y10d_c01338{bottom:628.986667pt;}
.y110_c01338{bottom:630.533333pt;}
.y10f_c01338{bottom:631.293333pt;}
.y10c_c01338{bottom:638.973333pt;}
.y10b_c01338{bottom:641.280000pt;}
.y109_c01338{bottom:643.586667pt;}
.y10a_c01338{bottom:644.346667pt;}
.y106_c01338{bottom:645.893333pt;}
.y104_c01338{bottom:646.653333pt;}
.y105_c01338{bottom:647.426667pt;}
.y108_c01338{bottom:648.186667pt;}
.y107_c01338{bottom:648.960000pt;}
.y103_c01338{bottom:658.946667pt;}
.y102_c01338{bottom:661.253333pt;}
.yff_c01338{bottom:662.786667pt;}
.yfd_c01338{bottom:663.546667pt;}
.y100_c01338{bottom:665.853333pt;}
.y101_c01338{bottom:666.626667pt;}
.yfe_c01338{bottom:668.160000pt;}
.yfc_c01338{bottom:668.933333pt;}
.yfa_c01338{bottom:675.840000pt;}
.yf9_c01338{bottom:678.906667pt;}
.yf8_c01338{bottom:679.680000pt;}
.yfb_c01338{bottom:680.453333pt;}
.yf5_c01338{bottom:681.213333pt;}
.yf7_c01338{bottom:684.293333pt;}
.yf6_c01338{bottom:685.053333pt;}
.yf4_c01338{bottom:688.133333pt;}
.yf3_c01338{bottom:692.733333pt;}
.yf2_c01338{bottom:694.266667pt;}
.yf1_c01338{bottom:696.573333pt;}
.yf0_c01338{bottom:697.346667pt;}
.yee_c01338{bottom:699.653333pt;}
.yed_c01338{bottom:701.186667pt;}
.yef_c01338{bottom:702.720000pt;}
.ye8_c01338{bottom:716.546667pt;}
.ye9_c01338{bottom:717.306667pt;}
.yea_c01338{bottom:718.080000pt;}
.yec_c01338{bottom:718.853333pt;}
.ye6_c01338{bottom:720.386667pt;}
.yeb_c01338{bottom:721.146667pt;}
.ye7_c01338{bottom:722.693333pt;}
.ye5_c01338{bottom:731.906667pt;}
.ye3_c01338{bottom:733.440000pt;}
.ye0_c01338{bottom:734.213333pt;}
.ydf_c01338{bottom:735.746667pt;}
.ye4_c01338{bottom:736.506667pt;}
.ye2_c01338{bottom:737.280000pt;}
.ydd_c01338{bottom:738.053333pt;}
.ye1_c01338{bottom:738.813333pt;}
.yde_c01338{bottom:740.346667pt;}
.yda_c01338{bottom:749.573333pt;}
.yd9_c01338{bottom:750.333333pt;}
.ydb_c01338{bottom:752.640000pt;}
.yd7_c01338{bottom:753.413333pt;}
.yd8_c01338{bottom:755.706667pt;}
.yd6_c01338{bottom:757.253333pt;}
.yd5_c01338{bottom:758.013333pt;}
.yd4_c01338{bottom:758.786667pt;}
.ydc_c01338{bottom:759.546667pt;}
.yd2_c01338{bottom:767.226667pt;}
.yd3_c01338{bottom:768.773333pt;}
.ycd_c01338{bottom:771.066667pt;}
.yce_c01338{bottom:771.840000pt;}
.yd0_c01338{bottom:773.373333pt;}
.ycf_c01338{bottom:774.146667pt;}
.ycc_c01338{bottom:775.680000pt;}
.ycb_c01338{bottom:776.453333pt;}
.yca_c01338{bottom:777.213333pt;}
.yd1_c01338{bottom:780.293333pt;}
.yc9_c01338{bottom:782.586667pt;}
.yc7_c01338{bottom:785.666667pt;}
.yc8_c01338{bottom:787.200000pt;}
.yc6_c01338{bottom:787.973333pt;}
.yc5_c01338{bottom:791.040000pt;}
.yc4_c01338{bottom:791.813333pt;}
.yc2_c01338{bottom:804.866667pt;}
.yc3_c01338{bottom:805.626667pt;}
.yc0_c01338{bottom:807.173333pt;}
.ybe_c01338{bottom:808.706667pt;}
.ybd_c01338{bottom:809.466667pt;}
.yc1_c01338{bottom:810.240000pt;}
.ybf_c01338{bottom:811.013333pt;}
.ybc_c01338{bottom:821.760000pt;}
.yb8_c01338{bottom:822.533333pt;}
.yba_c01338{bottom:824.826667pt;}
.ybb_c01338{bottom:826.373333pt;}
.yb9_c01338{bottom:827.133333pt;}
.yb7_c01338{bottom:837.120000pt;}
.yb6_c01338{bottom:838.653333pt;}
.yb3_c01338{bottom:840.960000pt;}
.yb1_c01338{bottom:841.733333pt;}
.yb0_c01338{bottom:843.266667pt;}
.yb4_c01338{bottom:844.026667pt;}
.yb2_c01338{bottom:844.800000pt;}
.yaf_c01338{bottom:845.573333pt;}
.yae_c01338{bottom:847.106667pt;}
.yb5_c01338{bottom:854.013333pt;}
.yad_c01338{bottom:857.093333pt;}
.ya9_c01338{bottom:859.386667pt;}
.yac_c01338{bottom:860.160000pt;}
.yab_c01338{bottom:862.466667pt;}
.yaa_c01338{bottom:863.226667pt;}
.ya8_c01338{bottom:864.773333pt;}
.ya7_c01338{bottom:865.533333pt;}
.ya6_c01338{bottom:866.306667pt;}
.ya4_c01338{bottom:874.746667pt;}
.ya3_c01338{bottom:876.293333pt;}
.ya5_c01338{bottom:877.826667pt;}
.ya0_c01338{bottom:879.360000pt;}
.y9e_c01338{bottom:880.133333pt;}
.ya1_c01338{bottom:880.893333pt;}
.ya2_c01338{bottom:881.666667pt;}
.y9f_c01338{bottom:884.733333pt;}
.y9c_c01338{bottom:893.186667pt;}
.y9d_c01338{bottom:896.253333pt;}
.y9a_c01338{bottom:897.786667pt;}
.y9b_c01338{bottom:898.560000pt;}
.y96_c01338{bottom:899.333333pt;}
.y99_c01338{bottom:900.093333pt;}
.y98_c01338{bottom:900.866667pt;}
.y97_c01338{bottom:901.626667pt;}
.y95_c01338{bottom:910.853333pt;}
.y94_c01338{bottom:911.613333pt;}
.y93_c01338{bottom:913.146667pt;}
.y92_c01338{bottom:916.226667pt;}
.y8e_c01338{bottom:916.986667pt;}
.y91_c01338{bottom:918.533333pt;}
.y90_c01338{bottom:919.293333pt;}
.y8f_c01338{bottom:920.066667pt;}
.y89_c01338{bottom:928.506667pt;}
.y8c_c01338{bottom:929.280000pt;}
.y8b_c01338{bottom:930.053333pt;}
.y8d_c01338{bottom:930.813333pt;}
.y8a_c01338{bottom:931.586667pt;}
.y87_c01338{bottom:932.346667pt;}
.y86_c01338{bottom:933.893333pt;}
.y85_c01338{bottom:934.653333pt;}
.y88_c01338{bottom:936.186667pt;}
.y82_c01338{bottom:948.480000pt;}
.y80_c01338{bottom:949.253333pt;}
.y84_c01338{bottom:950.013333pt;}
.y7f_c01338{bottom:950.786667pt;}
.y7d_c01338{bottom:951.546667pt;}
.y83_c01338{bottom:953.853333pt;}
.y81_c01338{bottom:954.626667pt;}
.y7e_c01338{bottom:957.693333pt;}
.y7c_c01338{bottom:966.146667pt;}
.y79_c01338{bottom:969.213333pt;}
.y7b_c01338{bottom:969.986667pt;}
.y77_c01338{bottom:971.520000pt;}
.y7a_c01338{bottom:973.053333pt;}
.y78_c01338{bottom:975.360000pt;}
.y76_c01338{bottom:976.133333pt;}
.y75_c01338{bottom:983.813333pt;}
.y74_c01338{bottom:985.346667pt;}
.y72_c01338{bottom:986.106667pt;}
.y71_c01338{bottom:986.880000pt;}
.y70_c01338{bottom:987.653333pt;}
.y6f_c01338{bottom:989.186667pt;}
.y73_c01338{bottom:991.493333pt;}
.y6d_c01338{bottom:1003.013333pt;}
.y6c_c01338{bottom:1003.773333pt;}
.y6b_c01338{bottom:1004.546667pt;}
.y69_c01338{bottom:1006.080000pt;}
.y6a_c01338{bottom:1006.853333pt;}
.y6e_c01338{bottom:1007.613333pt;}
.y66_c01338{bottom:1008.386667pt;}
.y68_c01338{bottom:1011.453333pt;}
.y67_c01338{bottom:1018.373333pt;}
.y64_c01338{bottom:1021.440000pt;}
.y63_c01338{bottom:1022.973333pt;}
.y5e_c01338{bottom:1024.506667pt;}
.y65_c01338{bottom:1025.280000pt;}
.y61_c01338{bottom:1026.813333pt;}
.y60_c01338{bottom:1027.586667pt;}
.y5f_c01338{bottom:1028.346667pt;}
.y62_c01338{bottom:1032.960000pt;}
.y5d_c01338{bottom:1035.266667pt;}
.y5c_c01338{bottom:1038.333333pt;}
.y59_c01338{bottom:1039.106667pt;}
.y5b_c01338{bottom:1039.866667pt;}
.y56_c01338{bottom:1040.640000pt;}
.y57_c01338{bottom:1042.173333pt;}
.y5a_c01338{bottom:1043.706667pt;}
.y52_c01338{bottom:1044.480000pt;}
.y55_c01338{bottom:1045.253333pt;}
.y53_c01338{bottom:1046.013333pt;}
.y58_c01338{bottom:1046.786667pt;}
.y54_c01338{bottom:1048.320000pt;}
.y20a_c01338{bottom:1055.226667pt;}
.y50_c01338{bottom:1056.000000pt;}
.y4e_c01338{bottom:1057.533333pt;}
.y51_c01338{bottom:1058.306667pt;}
.y4c_c01338{bottom:1059.066667pt;}
.y4a_c01338{bottom:1060.613333pt;}
.y4f_c01338{bottom:1061.373333pt;}
.y4d_c01338{bottom:1062.906667pt;}
.y4b_c01338{bottom:1063.680000pt;}
.y49_c01338{bottom:1064.453333pt;}
.y48_c01338{bottom:1065.986667pt;}
.y46_c01338{bottom:1075.200000pt;}
.y44_c01338{bottom:1076.733333pt;}
.y45_c01338{bottom:1077.506667pt;}
.y42_c01338{bottom:1079.040000pt;}
.y47_c01338{bottom:1079.813333pt;}
.y43_c01338{bottom:1082.880000pt;}
.y41_c01338{bottom:1084.413333pt;}
.y40_c01338{bottom:1091.333333pt;}
.y3f_c01338{bottom:1092.093333pt;}
.y3e_c01338{bottom:1095.933333pt;}
.y3a_c01338{bottom:1096.706667pt;}
.y3c_c01338{bottom:1097.466667pt;}
.y3d_c01338{bottom:1098.240000pt;}
.y3b_c01338{bottom:1099.013333pt;}
.y39_c01338{bottom:1099.773333pt;}
.y38_c01338{bottom:1101.306667pt;}
.y34_c01338{bottom:1112.066667pt;}
.y36_c01338{bottom:1113.600000pt;}
.y37_c01338{bottom:1115.133333pt;}
.y33_c01338{bottom:1117.440000pt;}
.y32_c01338{bottom:1118.213333pt;}
.y31_c01338{bottom:1118.973333pt;}
.y35_c01338{bottom:1123.586667pt;}
.y30_c01338{bottom:1127.426667pt;}
.y2e_c01338{bottom:1130.493333pt;}
.y2c_c01338{bottom:1132.026667pt;}
.y2d_c01338{bottom:1134.333333pt;}
.y2f_c01338{bottom:1135.106667pt;}
.y2b_c01338{bottom:1144.320000pt;}
.y28_c01338{bottom:1147.386667pt;}
.y27_c01338{bottom:1148.160000pt;}
.y29_c01338{bottom:1148.933333pt;}
.y25_c01338{bottom:1149.693333pt;}
.y26_c01338{bottom:1150.466667pt;}
.y23_c01338{bottom:1151.226667pt;}
.y2a_c01338{bottom:1152.773333pt;}
.y24_c01338{bottom:1155.840000pt;}
.y21_c01338{bottom:1161.986667pt;}
.y20_c01338{bottom:1165.053333pt;}
.y1d_c01338{bottom:1168.133333pt;}
.y1a_c01338{bottom:1168.893333pt;}
.y1f_c01338{bottom:1169.666667pt;}
.y22_c01338{bottom:1170.426667pt;}
.y1e_c01338{bottom:1171.200000pt;}
.y1c_c01338{bottom:1173.506667pt;}
.y1b_c01338{bottom:1174.266667pt;}
.y19_c01338{bottom:1180.413333pt;}
.y18_c01338{bottom:1181.186667pt;}
.y14_c01338{bottom:1181.946667pt;}
.y11_c01338{bottom:1182.720000pt;}
.y10_c01338{bottom:1183.493333pt;}
.y16_c01338{bottom:1184.253333pt;}
.y15_c01338{bottom:1185.786667pt;}
.y12_c01338{bottom:1187.333333pt;}
.yf_c01338{bottom:1188.093333pt;}
.y17_c01338{bottom:1188.866667pt;}
.y13_c01338{bottom:1190.400000pt;}
.yd_c01338{bottom:1197.306667pt;}
.ye_c01338{bottom:1198.080000pt;}
.y8_c01338{bottom:1202.693333pt;}
.yc_c01338{bottom:1204.226667pt;}
.y6_c01338{bottom:1204.986667pt;}
.yb_c01338{bottom:1206.533333pt;}
.y9_c01338{bottom:1207.293333pt;}
.y7_c01338{bottom:1208.066667pt;}
.ya_c01338{bottom:1209.600000pt;}
.y5_c01338{bottom:1228.800000pt;}
.y2_c01338{bottom:1230.333333pt;}
.y4_c01338{bottom:1231.106667pt;}
.y3_c01338{bottom:1231.866667pt;}
.y1_c01338{bottom:1249.533333pt;}
.hf_c01338{height:2.764500pt;}
.h1e_c01338{height:4.799479pt;}
.h1d_c01338{height:5.519401pt;}
.h23_c01338{height:7.689167pt;}
.hb_c01338{height:8.303099pt;}
.h21_c01338{height:11.038802pt;}
.h1b_c01338{height:13.822500pt;}
.h1f_c01338{height:16.606198pt;}
.h16_c01338{height:19.341901pt;}
.h24_c01338{height:19.699531pt;}
.h20_c01338{height:22.125599pt;}
.h1a_c01338{height:24.861302pt;}
.ha_c01338{height:27.645000pt;}
.h17_c01338{height:30.428698pt;}
.h2_c01338{height:33.164401pt;}
.hd_c01338{height:35.948099pt;}
.hc_c01338{height:38.683802pt;}
.h19_c01338{height:41.467500pt;}
.h14_c01338{height:44.251198pt;}
.h22_c01338{height:46.730599pt;}
.h12_c01338{height:46.986901pt;}
.h15_c01338{height:49.770599pt;}
.h7_c01338{height:52.506302pt;}
.h3_c01338{height:55.290000pt;}
.h4_c01338{height:58.073698pt;}
.h6_c01338{height:60.809401pt;}
.h5_c01338{height:63.593099pt;}
.h13_c01338{height:66.328802pt;}
.h18_c01338{height:69.112500pt;}
.h1c_c01338{height:71.896198pt;}
.h11_c01338{height:74.631901pt;}
.h10_c01338{height:77.415599pt;}
.h9_c01338{height:82.935000pt;}
.h8_c01338{height:93.973802pt;}
.he_c01338{height:105.060599pt;}
.h1_c01338{height:1345.333333pt;}
.h0_c01338{height:1345.533333pt;}
.w0_c01338{width:963.066667pt;}
.w1_c01338{width:963.333333pt;}
.x0_c01338{left:0.000000pt;}
.x115_c01338{left:11.520000pt;}
.xe4_c01338{left:66.053333pt;}
.x114_c01338{left:109.826667pt;}
.x10d_c01338{left:145.146667pt;}
.x10a_c01338{left:147.453333pt;}
.x111_c01338{left:152.066667pt;}
.x101_c01338{left:156.666667pt;}
.xfa_c01338{left:162.813333pt;}
.xc2_c01338{left:165.120000pt;}
.xf4_c01338{left:166.652733pt;}
.xc4_c01338{left:168.960000pt;}
.xf5_c01338{left:172.800000pt;}
.xa4_c01338{left:175.866667pt;}
.x71_c01338{left:178.173333pt;}
.xec_c01338{left:179.706667pt;}
.xf6_c01338{left:181.253333pt;}
.xa8_c01338{left:182.786667pt;}
.x6b_c01338{left:184.320000pt;}
.x96_c01338{left:186.626667pt;}
.x5f_c01338{left:188.933333pt;}
.x8a_c01338{left:190.466667pt;}
.x32_c01338{left:192.000000pt;}
.x21_c01338{left:193.533333pt;}
.x45_c01338{left:195.066667pt;}
.x2_c01338{left:196.613333pt;}
.x51_c01338{left:204.293333pt;}
.xd5_c01338{left:208.133333pt;}
.x7e_c01338{left:210.426667pt;}
.xf0_c01338{left:211.973333pt;}
.x58_c01338{left:215.040000pt;}
.x10e_c01338{left:216.573333pt;}
.x14_c01338{left:218.880000pt;}
.x22_c01338{left:220.413333pt;}
.x10b_c01338{left:223.493333pt;}
.xcb_c01338{left:225.786667pt;}
.xae_c01338{left:227.333333pt;}
.xd6_c01338{left:228.866667pt;}
.xfb_c01338{left:230.400000pt;}
.x102_c01338{left:231.933333pt;}
.x72_c01338{left:234.240000pt;}
.xb4_c01338{left:238.853333pt;}
.x46_c01338{left:241.920000pt;}
.x3d_c01338{left:244.226667pt;}
.xb5_c01338{left:245.760000pt;}
.x23_c01338{left:248.826667pt;}
.xaf_c01338{left:250.373333pt;}
.xcc_c01338{left:251.906667pt;}
.x52_c01338{left:254.213333pt;}
.x97_c01338{left:255.746667pt;}
.x103_c01338{left:257.280000pt;}
.x60_c01338{left:258.813333pt;}
.x8b_c01338{left:260.346667pt;}
.xc5_c01338{left:264.186667pt;}
.x3_c01338{left:265.733333pt;}
.x7f_c01338{left:267.266667pt;}
.xb0_c01338{left:269.573333pt;}
.x85_c01338{left:271.866667pt;}
.x9_c01338{left:274.173333pt;}
.x47_c01338{left:280.320000pt;}
.x15_c01338{left:281.853333pt;}
.x59_c01338{left:284.160000pt;}
.x9d_c01338{left:285.693333pt;}
.xce_c01338{left:287.226667pt;}
.x24_c01338{left:288.773333pt;}
.x61_c01338{left:290.306667pt;}
.x6c_c01338{left:292.613333pt;}
.xe0_c01338{left:295.680000pt;}
.xa0_c01338{left:297.213333pt;}
.x3e_c01338{left:300.293333pt;}
.x2a_c01338{left:303.360000pt;}
.x33_c01338{left:306.426667pt;}
.xc0_c01338{left:307.973333pt;}
.xf7_c01338{left:311.813333pt;}
.xbb_c01338{left:313.346667pt;}
.x16_c01338{left:315.653333pt;}
.x86_c01338{left:317.186667pt;}
.xe5_c01338{left:321.026667pt;}
.xbd_c01338{left:322.560000pt;}
.xe3_c01338{left:325.626667pt;}
.xcd_c01338{left:327.933333pt;}
.x62_c01338{left:330.240000pt;}
.x1_c01338{left:332.546667pt;}
.x10f_c01338{left:334.853333pt;}
.x80_c01338{left:337.920000pt;}
.x48_c01338{left:339.453333pt;}
.xa9_c01338{left:340.986667pt;}
.x2b_c01338{left:342.533333pt;}
.xad_c01338{left:344.826667pt;}
.xe7_c01338{left:346.373333pt;}
.x34_c01338{left:349.440000pt;}
.xa_c01338{left:350.973333pt;}
.x4_c01338{left:354.053333pt;}
.x17_c01338{left:356.346667pt;}
.x76_c01338{left:357.893333pt;}
.xb6_c01338{left:360.186667pt;}
.x3f_c01338{left:362.493333pt;}
.x87_c01338{left:364.800000pt;}
.xaa_c01338{left:367.106667pt;}
.xf8_c01338{left:368.640000pt;}
.x25_c01338{left:370.173333pt;}
.x5a_c01338{left:372.480000pt;}
.xdd_c01338{left:374.013333pt;}
.xd2_c01338{left:375.546667pt;}
.x18_c01338{left:378.626667pt;}
.xcf_c01338{left:380.160000pt;}
.xfe_c01338{left:381.693333pt;}
.xc1_c01338{left:383.226667pt;}
.x49_c01338{left:385.533333pt;}
.x19_c01338{left:387.840000pt;}
.x40_c01338{left:391.680000pt;}
.x53_c01338{left:393.986667pt;}
.x2c_c01338{left:395.520000pt;}
.x35_c01338{left:397.053333pt;}
.x63_c01338{left:398.586667pt;}
.xbc_c01338{left:400.133333pt;}
.x64_c01338{left:402.426667pt;}
.x2d_c01338{left:406.266667pt;}
.x77_c01338{left:407.813333pt;}
.x9e_c01338{left:411.653333pt;}
.xd0_c01338{left:413.946667pt;}
.x98_c01338{left:416.253333pt;}
.x73_c01338{left:418.560000pt;}
.xc3_c01338{left:420.866667pt;}
.x104_c01338{left:422.400000pt;}
.x4a_c01338{left:423.933333pt;}
.x74_c01338{left:425.466667pt;}
.xc6_c01338{left:427.773333pt;}
.x6d_c01338{left:429.306667pt;}
.x6e_c01338{left:433.920000pt;}
.x26_c01338{left:436.986667pt;}
.x1a_c01338{left:439.293333pt;}
.x65_c01338{left:441.600000pt;}
.x36_c01338{left:443.133333pt;}
.xb_c01338{left:444.666667pt;}
.x81_c01338{left:446.973333pt;}
.x78_c01338{left:456.186667pt;}
.xfc_c01338{left:457.733333pt;}
.x105_c01338{left:460.800000pt;}
.xc_c01338{left:464.640000pt;}
.xf1_c01338{left:466.946667pt;}
.xe6_c01338{left:469.253333pt;}
.x5_c01338{left:472.320000pt;}
.xc7_c01338{left:474.626667pt;}
.xd_c01338{left:476.160000pt;}
.x8c_c01338{left:477.693333pt;}
.xea_c01338{left:479.226667pt;}
.x41_c01338{left:480.773333pt;}
.xd7_c01338{left:482.306667pt;}
.x4b_c01338{left:483.840000pt;}
.xe1_c01338{left:486.146667pt;}
.x1b_c01338{left:487.680000pt;}
.xbe_c01338{left:489.986667pt;}
.x99_c01338{left:491.520000pt;}
.xe_c01338{left:493.053333pt;}
.x5b_c01338{left:494.586667pt;}
.x10c_c01338{left:496.133333pt;}
.x112_c01338{left:506.106667pt;}
.xb1_c01338{left:507.653333pt;}
.xbf_c01338{left:509.946667pt;}
.x79_c01338{left:511.493333pt;}
.x37_c01338{left:513.786667pt;}
.x8d_c01338{left:516.866667pt;}
.x4c_c01338{left:519.173333pt;}
.x42_c01338{left:520.706667pt;}
.x1c_c01338{left:522.240000pt;}
.x92_c01338{left:526.080000pt;}
.x66_c01338{left:528.386667pt;}
.xf_c01338{left:529.920000pt;}
.xa1_c01338{left:532.986667pt;}
.xdb_c01338{left:534.533333pt;}
.x110_c01338{left:536.066667pt;}
.x4d_c01338{left:537.600000pt;}
.x38_c01338{left:541.440000pt;}
.x10_c01338{left:544.506667pt;}
.x8e_c01338{left:547.586667pt;}
.x82_c01338{left:549.120000pt;}
.x6_c01338{left:550.653333pt;}
.x7a_c01338{left:552.186667pt;}
.x1d_c01338{left:555.266667pt;}
.xa5_c01338{left:556.800000pt;}
.xed_c01338{left:558.333333pt;}
.xf2_c01338{left:560.640000pt;}
.xd8_c01338{left:562.173333pt;}
.x67_c01338{left:563.706667pt;}
.x2e_c01338{left:565.253333pt;}
.x5c_c01338{left:566.786667pt;}
.x1e_c01338{left:572.160000pt;}
.xab_c01338{left:575.226667pt;}
.x11_c01338{left:577.533333pt;}
.xd1_c01338{left:580.613333pt;}
.x54_c01338{left:582.146667pt;}
.x6f_c01338{left:586.746667pt;}
.x27_c01338{left:588.293333pt;}
.xdc_c01338{left:589.826667pt;}
.x39_c01338{left:591.360000pt;}
.xee_c01338{left:592.893333pt;}
.xb7_c01338{left:594.426667pt;}
.xd9_c01338{left:596.733333pt;}
.x88_c01338{left:598.266667pt;}
.x12_c01338{left:602.106667pt;}
.x3a_c01338{left:605.186667pt;}
.x7_c01338{left:606.720000pt;}
.x8f_c01338{left:608.253333pt;}
.x4e_c01338{left:611.333333pt;}
.xac_c01338{left:614.400000pt;}
.x1f_c01338{left:616.706667pt;}
.x4f_c01338{left:618.240000pt;}
.x113_c01338{left:620.546667pt;}
.x55_c01338{left:622.080000pt;}
.x68_c01338{left:623.613333pt;}
.xc8_c01338{left:625.146667pt;}
.x2f_c01338{left:626.693333pt;}
.x43_c01338{left:628.226667pt;}
.x83_c01338{left:631.293333pt;}
.x93_c01338{left:632.826667pt;}
.xe2_c01338{left:634.373333pt;}
.xb2_c01338{left:635.906667pt;}
.xd3_c01338{left:637.440000pt;}
.x106_c01338{left:638.973333pt;}
.xf9_c01338{left:641.280000pt;}
.x9a_c01338{left:642.813333pt;}
.x69_c01338{left:647.426667pt;}
.x9b_c01338{left:649.733333pt;}
.x56_c01338{left:655.106667pt;}
.x7b_c01338{left:657.413333pt;}
.x5d_c01338{left:660.480000pt;}
.x3b_c01338{left:662.786667pt;}
.x70_c01338{left:665.093333pt;}
.x9c_c01338{left:668.160000pt;}
.x8_c01338{left:669.693333pt;}
.x30_c01338{left:672.000000pt;}
.x50_c01338{left:674.306667pt;}
.x94_c01338{left:675.840000pt;}
.xde_c01338{left:678.906667pt;}
.x3c_c01338{left:680.453333pt;}
.xa2_c01338{left:681.986667pt;}
.x95_c01338{left:685.053333pt;}
.x20_c01338{left:686.586667pt;}
.x9f_c01338{left:688.133333pt;}
.x44_c01338{left:689.666667pt;}
.xff_c01338{left:691.973333pt;}
.x7c_c01338{left:693.506667pt;}
.x57_c01338{left:695.040000pt;}
.x89_c01338{left:697.346667pt;}
.xa3_c01338{left:700.413333pt;}
.x107_c01338{left:701.946667pt;}
.xf3_c01338{left:704.253333pt;}
.x6a_c01338{left:706.560000pt;}
.xe8_c01338{left:708.093333pt;}
.xa6_c01338{left:709.626667pt;}
.x31_c01338{left:711.173333pt;}
.x75_c01338{left:713.466667pt;}
.x28_c01338{left:716.546667pt;}
.x108_c01338{left:718.080000pt;}
.xef_c01338{left:720.386667pt;}
.x90_c01338{left:722.693333pt;}
.x7d_c01338{left:726.533333pt;}
.x84_c01338{left:728.826667pt;}
.xda_c01338{left:730.373333pt;}
.xdf_c01338{left:731.906667pt;}
.xe9_c01338{left:733.440000pt;}
.x29_c01338{left:734.973333pt;}
.xd4_c01338{left:736.506667pt;}
.x109_c01338{left:743.426667pt;}
.xc9_c01338{left:744.960000pt;}
.x5e_c01338{left:746.493333pt;}
.xb8_c01338{left:749.573333pt;}
.xeb_c01338{left:752.640000pt;}
.xfd_c01338{left:755.706667pt;}
.xca_c01338{left:757.253333pt;}
.xa7_c01338{left:758.786667pt;}
.x100_c01338{left:761.853333pt;}
.x91_c01338{left:766.466667pt;}
.xb9_c01338{left:770.306667pt;}
.x13_c01338{left:771.840000pt;}
.xba_c01338{left:777.986667pt;}
.xb3_c01338{left:782.586667pt;}
.x116_c01338{left:807.173333pt;}
.x117_c01338{left:813.306667pt;}
.x118_c01338{left:814.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_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_57b8ecc34cfd42c7981afa42.woff2')format("woff");}.ff1_c01339{font-family:ff1_c01339;line-height:1.109863;font-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_c01339{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m18a_c01339{transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);}
.m117_c01339{transform:matrix(0.085500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085500,0.000000,0.000000,0.250000,0,0);}
.m157_c01339{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m178_c01339{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);}
.m154_c01339{transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108150,0.000000,0.000000,0.250000,0,0);}
.m1c_c01339{transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108775,0.000000,0.000000,0.250000,0,0);}
.m82_c01339{transform:matrix(0.110425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110425,0.000000,0.000000,0.250000,0,0);}
.m1a_c01339{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m5a_c01339{transform:matrix(0.111300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111300,0.000000,0.000000,0.250000,0,0);}
.m5f_c01339{transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);}
.m1b9_c01339{transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01339{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);}
.ma1_c01339{transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);}
.m1c2_c01339{transform:matrix(0.114800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114800,0.000000,0.000000,0.250000,0,0);}
.m187_c01339{transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114875,0.000000,0.000000,0.250000,0,0);}
.mdb_c01339{transform:matrix(0.114950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114950,0.000000,0.000000,0.250000,0,0);}
.m42_c01339{transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115675,0.000000,0.000000,0.250000,0,0);}
.maa_c01339{transform:matrix(0.117475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117475,0.000000,0.000000,0.250000,0,0);}
.m14b_c01339{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);}
.m5b_c01339{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.mc2_c01339{transform:matrix(0.119475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119475,0.000000,0.000000,0.250000,0,0);}
.m166_c01339{transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120000,0.000000,0.000000,0.250000,0,0);}
.m198_c01339{transform:matrix(0.120525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120525,0.000000,0.000000,0.250000,0,0);}
.m14a_c01339{transform:matrix(0.124625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124625,0.000000,0.000000,0.250000,0,0);}
.m1c3_c01339{transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124900,0.000000,0.000000,0.250000,0,0);}
.m119_c01339{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m1b5_c01339{transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125925,0.000000,0.000000,0.250000,0,0);}
.m61_c01339{transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126350,0.000000,0.000000,0.250000,0,0);}
.mc4_c01339{transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);}
.m13a_c01339{transform:matrix(0.127575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127575,0.000000,0.000000,0.250000,0,0);}
.m192_c01339{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);}
.m115_c01339{transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127850,0.000000,0.000000,0.250000,0,0);}
.m41_c01339{transform:matrix(0.128575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128575,0.000000,0.000000,0.250000,0,0);}
.m186_c01339{transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128600,0.000000,0.000000,0.250000,0,0);}
.m4e_c01339{transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128850,0.000000,0.000000,0.250000,0,0);}
.m1c6_c01339{transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129275,0.000000,0.000000,0.250000,0,0);}
.m57_c01339{transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131150,0.000000,0.000000,0.250000,0,0);}
.m90_c01339{transform:matrix(0.131925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131925,0.000000,0.000000,0.250000,0,0);}
.mc3_c01339{transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);}
.m188_c01339{transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134150,0.000000,0.000000,0.250000,0,0);}
.mc_c01339{transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);}
.me6_c01339{transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135550,0.000000,0.000000,0.250000,0,0);}
.m12e_c01339{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m138_c01339{transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137175,0.000000,0.000000,0.250000,0,0);}
.m81_c01339{transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137250,0.000000,0.000000,0.250000,0,0);}
.m8c_c01339{transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137550,0.000000,0.000000,0.250000,0,0);}
.m1ba_c01339{transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137925,0.000000,0.000000,0.250000,0,0);}
.m5d_c01339{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);}
.me8_c01339{transform:matrix(0.138800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138800,0.000000,0.000000,0.250000,0,0);}
.ma9_c01339{transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01339{transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139100,0.000000,0.000000,0.250000,0,0);}
.mb2_c01339{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);}
.m126_c01339{transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141450,0.000000,0.000000,0.250000,0,0);}
.m19c_c01339{transform:matrix(0.141600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141600,0.000000,0.000000,0.250000,0,0);}
.m107_c01339{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m180_c01339{transform:matrix(0.142400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142400,0.000000,0.000000,0.250000,0,0);}
.m109_c01339{transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142425,0.000000,0.000000,0.250000,0,0);}
.m9_c01339{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma4_c01339{transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144175,0.000000,0.000000,0.250000,0,0);}
.m121_c01339{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);}
.m173_c01339{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);}
.m11f_c01339{transform:matrix(0.146100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146100,0.000000,0.000000,0.250000,0,0);}
.m108_c01339{transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146150,0.000000,0.000000,0.250000,0,0);}
.m128_c01339{transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);}
.m112_c01339{transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);}
.me7_c01339{transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);}
.m19f_c01339{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mb3_c01339{transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147400,0.000000,0.000000,0.250000,0,0);}
.m92_c01339{transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147550,0.000000,0.000000,0.250000,0,0);}
.mbc_c01339{transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147950,0.000000,0.000000,0.250000,0,0);}
.m137_c01339{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);}
.mae_c01339{transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148650,0.000000,0.000000,0.250000,0,0);}
.m18_c01339{transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148850,0.000000,0.000000,0.250000,0,0);}
.m15_c01339{transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149000,0.000000,0.000000,0.250000,0,0);}
.m199_c01339{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);}
.m113_c01339{transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149675,0.000000,0.000000,0.250000,0,0);}
.m8a_c01339{transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149825,0.000000,0.000000,0.250000,0,0);}
.m118_c01339{transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);}
.m17c_c01339{transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152375,0.000000,0.000000,0.250000,0,0);}
.m105_c01339{transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152875,0.000000,0.000000,0.250000,0,0);}
.m15b_c01339{transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153225,0.000000,0.000000,0.250000,0,0);}
.mb7_c01339{transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153675,0.000000,0.000000,0.250000,0,0);}
.m1a7_c01339{transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154750,0.000000,0.000000,0.250000,0,0);}
.m1bd_c01339{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);}
.mb1_c01339{transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155475,0.000000,0.000000,0.250000,0,0);}
.m10f_c01339{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.m85_c01339{transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156400,0.000000,0.000000,0.250000,0,0);}
.m140_c01339{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);}
.m196_c01339{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);}
.m12b_c01339{transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158425,0.000000,0.000000,0.250000,0,0);}
.m14c_c01339{transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158500,0.000000,0.000000,0.250000,0,0);}
.mbd_c01339{transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159425,0.000000,0.000000,0.250000,0,0);}
.m13b_c01339{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m17f_c01339{transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160550,0.000000,0.000000,0.250000,0,0);}
.mb6_c01339{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.mef_c01339{transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);}
.m159_c01339{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);}
.m183_c01339{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m8d_c01339{transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161775,0.000000,0.000000,0.250000,0,0);}
.m1a1_c01339{transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161900,0.000000,0.000000,0.250000,0,0);}
.m175_c01339{transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161950,0.000000,0.000000,0.250000,0,0);}
.m49_c01339{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);}
.m46_c01339{transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);}
.m177_c01339{transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);}
.m19_c01339{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);}
.m11e_c01339{transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162550,0.000000,0.000000,0.250000,0,0);}
.m94_c01339{transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162625,0.000000,0.000000,0.250000,0,0);}
.m101_c01339{transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162750,0.000000,0.000000,0.250000,0,0);}
.m15d_c01339{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);}
.m56_c01339{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m98_c01339{transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163450,0.000000,0.000000,0.250000,0,0);}
.m153_c01339{transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163525,0.000000,0.000000,0.250000,0,0);}
.m197_c01339{transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163625,0.000000,0.000000,0.250000,0,0);}
.m179_c01339{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);}
.m50_c01339{transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164000,0.000000,0.000000,0.250000,0,0);}
.m84_c01339{transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164450,0.000000,0.000000,0.250000,0,0);}
.mf8_c01339{transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165575,0.000000,0.000000,0.250000,0,0);}
.md7_c01339{transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);}
.m1b_c01339{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.m15a_c01339{transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);}
.mda_c01339{transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167325,0.000000,0.000000,0.250000,0,0);}
.m1af_c01339{transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167450,0.000000,0.000000,0.250000,0,0);}
.m11d_c01339{transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167600,0.000000,0.000000,0.250000,0,0);}
.m149_c01339{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.mad_c01339{transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);}
.m89_c01339{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);}
.m12d_c01339{transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168875,0.000000,0.000000,0.250000,0,0);}
.mf0_c01339{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);}
.m127_c01339{transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);}
.m18c_c01339{transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);}
.m1a9_c01339{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);}
.mfa_c01339{transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172250,0.000000,0.000000,0.250000,0,0);}
.m136_c01339{transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172600,0.000000,0.000000,0.250000,0,0);}
.md_c01339{transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172650,0.000000,0.000000,0.250000,0,0);}
.m6f_c01339{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);}
.mdc_c01339{transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173200,0.000000,0.000000,0.250000,0,0);}
.m31_c01339{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);}
.m2f_c01339{transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);}
.m19b_c01339{transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);}
.m158_c01339{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.mbf_c01339{transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175775,0.000000,0.000000,0.250000,0,0);}
.m15e_c01339{transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175850,0.000000,0.000000,0.250000,0,0);}
.m143_c01339{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);}
.m3_c01339{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);}
.m171_c01339{transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);}
.m156_c01339{transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);}
.mfb_c01339{transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);}
.m131_c01339{transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);}
.m37_c01339{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);}
.m129_c01339{transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178725,0.000000,0.000000,0.250000,0,0);}
.m1b0_c01339{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m7f_c01339{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);}
.md2_c01339{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.ma6_c01339{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m10e_c01339{transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);}
.m17e_c01339{transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182650,0.000000,0.000000,0.250000,0,0);}
.m16a_c01339{transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182925,0.000000,0.000000,0.250000,0,0);}
.m1b6_c01339{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);}
.m38_c01339{transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);}
.mcf_c01339{transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183550,0.000000,0.000000,0.250000,0,0);}
.m1ae_c01339{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);}
.m130_c01339{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);}
.ma0_c01339{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.m80_c01339{transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);}
.m16b_c01339{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);}
.m102_c01339{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m17a_c01339{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);}
.m35_c01339{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m12f_c01339{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.m6e_c01339{transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188025,0.000000,0.000000,0.250000,0,0);}
.m10d_c01339{transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188050,0.000000,0.000000,0.250000,0,0);}
.m181_c01339{transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188300,0.000000,0.000000,0.250000,0,0);}
.m19a_c01339{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);}
.mf7_c01339{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.m116_c01339{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.m18d_c01339{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);}
.m7b_c01339{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);}
.m1c0_c01339{transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193075,0.000000,0.000000,0.250000,0,0);}
.me2_c01339{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m1a5_c01339{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);}
.m45_c01339{transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193600,0.000000,0.000000,0.250000,0,0);}
.m125_c01339{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);}
.m134_c01339{transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194325,0.000000,0.000000,0.250000,0,0);}
.m6d_c01339{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m14_c01339{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);}
.me9_c01339{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.m163_c01339{transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);}
.m55_c01339{transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196650,0.000000,0.000000,0.250000,0,0);}
.m39_c01339{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);}
.m17b_c01339{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.med_c01339{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);}
.m194_c01339{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m40_c01339{transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);}
.m16_c01339{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m1b3_c01339{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m1b4_c01339{transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198850,0.000000,0.000000,0.250000,0,0);}
.m1b1_c01339{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);}
.m174_c01339{transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199300,0.000000,0.000000,0.250000,0,0);}
.maf_c01339{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.mf6_c01339{transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200150,0.000000,0.000000,0.250000,0,0);}
.m16c_c01339{transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);}
.m1ac_c01339{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);}
.m1ab_c01339{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m7d_c01339{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);}
.m1a2_c01339{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);}
.m14e_c01339{transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202675,0.000000,0.000000,0.250000,0,0);}
.m1c1_c01339{transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);}
.m124_c01339{transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);}
.m106_c01339{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);}
.m14d_c01339{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m9f_c01339{transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);}
.m9b_c01339{transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204425,0.000000,0.000000,0.250000,0,0);}
.mc6_c01339{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.mc1_c01339{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m1a0_c01339{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);}
.m1b2_c01339{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.m30_c01339{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.mf5_c01339{transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);}
.m1a6_c01339{transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);}
.m95_c01339{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.mab_c01339{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);}
.m4d_c01339{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m87_c01339{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);}
.mc7_c01339{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.m54_c01339{transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207275,0.000000,0.000000,0.250000,0,0);}
.m195_c01339{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m191_c01339{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m8e_c01339{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);}
.m12a_c01339{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);}
.mc0_c01339{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.mfd_c01339{transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);}
.m8b_c01339{transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209125,0.000000,0.000000,0.250000,0,0);}
.mf1_c01339{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.me5_c01339{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.mea_c01339{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);}
.mb0_c01339{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);}
.m33_c01339{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);}
.m3c_c01339{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.m1ad_c01339{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.mf9_c01339{transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212325,0.000000,0.000000,0.250000,0,0);}
.m1a4_c01339{transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);}
.m1aa_c01339{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);}
.mc9_c01339{transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213500,0.000000,0.000000,0.250000,0,0);}
.m111_c01339{transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213750,0.000000,0.000000,0.250000,0,0);}
.mb9_c01339{transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213900,0.000000,0.000000,0.250000,0,0);}
.m7e_c01339{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);}
.m110_c01339{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);}
.mc8_c01339{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.m44_c01339{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);}
.m114_c01339{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);}
.m91_c01339{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);}
.m9a_c01339{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m7a_c01339{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);}
.m51_c01339{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);}
.m8_c01339{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);}
.m1bf_c01339{transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);}
.m139_c01339{transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217775,0.000000,0.000000,0.250000,0,0);}
.m12c_c01339{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);}
.m18f_c01339{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);}
.mca_c01339{transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218700,0.000000,0.000000,0.250000,0,0);}
.m1a3_c01339{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m1bc_c01339{transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219675,0.000000,0.000000,0.250000,0,0);}
.m150_c01339{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);}
.m185_c01339{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.m152_c01339{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m4a_c01339{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);}
.m71_c01339{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m3f_c01339{transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223175,0.000000,0.000000,0.250000,0,0);}
.m16d_c01339{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);}
.m100_c01339{transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223550,0.000000,0.000000,0.250000,0,0);}
.m1a8_c01339{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m63_c01339{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);}
.m103_c01339{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.m2e_c01339{transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);}
.m122_c01339{transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224575,0.000000,0.000000,0.250000,0,0);}
.m17d_c01339{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);}
.m28_c01339{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m10a_c01339{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.mec_c01339{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);}
.mde_c01339{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.m4b_c01339{transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226000,0.000000,0.000000,0.250000,0,0);}
.m67_c01339{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);}
.m170_c01339{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);}
.m123_c01339{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);}
.mac_c01339{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);}
.m88_c01339{transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227925,0.000000,0.000000,0.250000,0,0);}
.m190_c01339{transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228250,0.000000,0.000000,0.250000,0,0);}
.m14f_c01339{transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228275,0.000000,0.000000,0.250000,0,0);}
.md3_c01339{transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228400,0.000000,0.000000,0.250000,0,0);}
.m16e_c01339{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.mb5_c01339{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);}
.m11a_c01339{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);}
.m104_c01339{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);}
.m73_c01339{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);}
.m13_c01339{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);}
.mce_c01339{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.m172_c01339{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);}
.m132_c01339{transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);}
.mdd_c01339{transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);}
.m1bb_c01339{transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231425,0.000000,0.000000,0.250000,0,0);}
.m8f_c01339{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);}
.me1_c01339{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_c01339{transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);}
.m19e_c01339{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m155_c01339{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);}
.m144_c01339{transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232475,0.000000,0.000000,0.250000,0,0);}
.ma2_c01339{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.m9c_c01339{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);}
.m1e_c01339{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);}
.m1b8_c01339{transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);}
.m1b7_c01339{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);}
.m145_c01339{transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233825,0.000000,0.000000,0.250000,0,0);}
.m99_c01339{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);}
.m1c4_c01339{transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);}
.m184_c01339{transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234850,0.000000,0.000000,0.250000,0,0);}
.m15f_c01339{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.m120_c01339{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);}
.mee_c01339{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);}
.m135_c01339{transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236425,0.000000,0.000000,0.250000,0,0);}
.me0_c01339{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);}
.m25_c01339{transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);}
.m15c_c01339{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.md1_c01339{transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);}
.md0_c01339{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m193_c01339{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);}
.mbb_c01339{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);}
.m24_c01339{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);}
.mb4_c01339{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);}
.me3_c01339{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);}
.m1be_c01339{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m19d_c01339{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);}
.m3b_c01339{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);}
.mbe_c01339{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m148_c01339{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);}
.m10b_c01339{transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);}
.m34_c01339{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);}
.mf_c01339{transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244725,0.000000,0.000000,0.250000,0,0);}
.md6_c01339{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m65_c01339{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.md9_c01339{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);}
.m168_c01339{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m142_c01339{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);}
.m16f_c01339{transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247850,0.000000,0.000000,0.250000,0,0);}
.m147_c01339{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);}
.m32_c01339{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);}
.mf4_c01339{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);}
.m11c_c01339{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);}
.meb_c01339{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m10_c01339{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);}
.m53_c01339{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6_c01339{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);}
.m9d_c01339{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);}
.m43_c01339{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);}
.m5_c01339{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);}
.m77_c01339{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01339{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01339{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m47_c01339{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);}
.m5e_c01339{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m97_c01339{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);}
.m3d_c01339{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);}
.m69_c01339{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m66_c01339{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);}
.m1f_c01339{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m96_c01339{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.me_c01339{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);}
.m83_c01339{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01339{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);}
.m4_c01339{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);}
.m11_c01339{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m75_c01339{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.mf3_c01339{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);}
.m79_c01339{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m78_c01339{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m9e_c01339{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);}
.m3a_c01339{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01339{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c01339{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m70_c01339{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01339{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c01339{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7_c01339{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mfc_c01339{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.me4_c01339{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);}
.m151_c01339{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m74_c01339{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m36_c01339{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m10c_c01339{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m11b_c01339{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);}
.m68_c01339{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);}
.md4_c01339{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);}
.m86_c01339{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01339{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2_c01339{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m27_c01339{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m176_c01339{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m60_c01339{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);}
.m189_c01339{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m165_c01339{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m26_c01339{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);}
.mff_c01339{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.ma7_c01339{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md5_c01339{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);}
.m13c_c01339{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m23_c01339{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.ma_c01339{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01339{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m62_c01339{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01339{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);}
.m161_c01339{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);}
.m93_c01339{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m146_c01339{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);}
.mdf_c01339{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1_c01339{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m13d_c01339{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mba_c01339{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m29_c01339{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m48_c01339{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.mcd_c01339{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);}
.m58_c01339{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1c7_c01339{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mcb_c01339{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mf2_c01339{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m64_c01339{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mfe_c01339{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m167_c01339{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);}
.m133_c01339{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);}
.m141_c01339{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m13f_c01339{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m52_c01339{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.md8_c01339{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01339{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mc5_c01339{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.mcc_c01339{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m22_c01339{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m76_c01339{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01339{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m0_c01339{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m18b_c01339{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01339{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m59_c01339{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.m1c5_c01339{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01339{transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.802500,0.000000,0.000000,0.250000,0,0);}
.m13e_c01339{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.m164_c01339{transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);}
.ma8_c01339{transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.832500,0.000000,0.000000,0.250000,0,0);}
.m169_c01339{transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.940000,0.000000,0.000000,0.250000,0,0);}
.m21_c01339{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m162_c01339{transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.060000,0.000000,0.000000,0.250000,0,0);}
.mb8_c01339{transform:matrix(1.142500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.142500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.142500,0.000000,0.000000,0.250000,0,0);}
.m182_c01339{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m160_c01339{transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.177500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01339{transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.412500,0.000000,0.000000,0.250000,0,0);}
.m18e_c01339{transform:matrix(1.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.775000,0.000000,0.000000,0.250000,0,0);}
.m20_c01339{transform:matrix(2.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.000000,0.000000,0.000000,0.250000,0,0);}
.v1_c01339{vertical-align:-6.900000px;}
.v2_c01339{vertical-align:-3.480000px;}
.v0_c01339{vertical-align:0.000000px;}
.v3_c01339{vertical-align:6.900000px;}
.v4_c01339{vertical-align:20.760000px;}
.v5_c01339{vertical-align:31.140000px;}
.ls3_c01339{letter-spacing:0.000000px;}
.ls1_c01339{letter-spacing:21.187440px;}
.ls2_c01339{letter-spacing:211.255107px;}
.ls0_c01339{letter-spacing:1162.296333px;}
.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;}
}
.ws4_c01339{word-spacing:-33.830040px;}
.ws0_c01339{word-spacing:-20.336760px;}
.ws5_c01339{word-spacing:-15.828000px;}
.ws3_c01339{word-spacing:-15.049560px;}
.ws1_c01339{word-spacing:-11.087400px;}
.ws6_c01339{word-spacing:0.000000px;}
.ws2_c01339{word-spacing:103.221000px;}
.fc0_c01339{color:transparent;}
.fs9_c01339{font-size:3.456000px;}
.fs7_c01339{font-size:6.000000px;}
.fs1b_c01339{font-size:6.900000px;}
.fs1_c01339{font-size:10.380000px;}
.fs15_c01339{font-size:13.800000px;}
.fs8_c01339{font-size:17.280000px;}
.fs14_c01339{font-size:20.760000px;}
.fs0_c01339{font-size:24.180000px;}
.fs18_c01339{font-size:27.660000px;}
.fs11_c01339{font-size:31.080000px;}
.fs17_c01339{font-size:34.560000px;}
.fs16_c01339{font-size:38.040000px;}
.fs13_c01339{font-size:41.460000px;}
.fs12_c01339{font-size:44.940000px;}
.fse_c01339{font-size:48.360000px;}
.fs19_c01339{font-size:51.840000px;}
.fsc_c01339{font-size:55.320000px;}
.fsb_c01339{font-size:58.740000px;}
.fsd_c01339{font-size:62.220000px;}
.fs4_c01339{font-size:65.640000px;}
.fs10_c01339{font-size:69.120000px;}
.fs1a_c01339{font-size:72.600000px;}
.fs6_c01339{font-size:76.020000px;}
.fs2_c01339{font-size:79.500000px;}
.fs5_c01339{font-size:82.920000px;}
.fsf_c01339{font-size:86.400000px;}
.fs1c_c01339{font-size:89.880000px;}
.fs3_c01339{font-size:93.300000px;}
.fs1d_c01339{font-size:96.780000px;}
.fsa_c01339{font-size:100.200000px;}
.fs20_c01339{font-size:103.680000px;}
.fs1e_c01339{font-size:110.580000px;}
.fs1f_c01339{font-size:148.620000px;}
.y0_c01339{bottom:0.000000px;}
.y214_c01339{bottom:187.485000px;}
.y215_c01339{bottom:190.950000px;}
.y212_c01339{bottom:194.400000px;}
.y210_c01339{bottom:195.270000px;}
.y211_c01339{bottom:196.125000px;}
.y20f_c01339{bottom:197.850000px;}
.y20e_c01339{bottom:198.720000px;}
.y213_c01339{bottom:202.170000px;}
.y20d_c01339{bottom:207.360000px;}
.y20c_c01339{bottom:209.085000px;}
.y20b_c01339{bottom:211.680000px;}
.y206_c01339{bottom:215.130000px;}
.y208_c01339{bottom:216.000000px;}
.y205_c01339{bottom:216.870000px;}
.y209_c01339{bottom:217.725000px;}
.y20a_c01339{bottom:218.595000px;}
.y207_c01339{bottom:222.045000px;}
.y203_c01339{bottom:229.830000px;}
.y202_c01339{bottom:231.555000px;}
.y204_c01339{bottom:233.280000px;}
.y200_c01339{bottom:235.875000px;}
.y1fe_c01339{bottom:237.600000px;}
.y1fc_c01339{bottom:240.195000px;}
.y1ff_c01339{bottom:241.050000px;}
.y1fd_c01339{bottom:243.645000px;}
.y201_c01339{bottom:245.370000px;}
.y1fa_c01339{bottom:247.965000px;}
.y1f9_c01339{bottom:248.835000px;}
.y1f7_c01339{bottom:250.560000px;}
.y1f5_c01339{bottom:254.010000px;}
.y1f8_c01339{bottom:256.605000px;}
.y1f3_c01339{bottom:258.330000px;}
.y1f4_c01339{bottom:259.200000px;}
.y1f6_c01339{bottom:260.925000px;}
.y1f2_c01339{bottom:265.245000px;}
.y1fb_c01339{bottom:266.115000px;}
.y1ef_c01339{bottom:268.710000px;}
.y1ee_c01339{bottom:271.290000px;}
.y1f0_c01339{bottom:276.480000px;}
.y1ec_c01339{bottom:277.350000px;}
.y1e9_c01339{bottom:278.205000px;}
.y1f1_c01339{bottom:279.075000px;}
.y1ed_c01339{bottom:280.800000px;}
.y1ea_c01339{bottom:283.395000px;}
.y1eb_c01339{bottom:284.250000px;}
.y1e6_c01339{bottom:289.440000px;}
.y1e4_c01339{bottom:292.890000px;}
.y1e5_c01339{bottom:293.760000px;}
.y1e8_c01339{bottom:294.630000px;}
.y1e7_c01339{bottom:295.485000px;}
.y1e0_c01339{bottom:297.210000px;}
.y1e2_c01339{bottom:298.080000px;}
.y1e3_c01339{bottom:302.400000px;}
.y1e1_c01339{bottom:304.125000px;}
.y1df_c01339{bottom:309.315000px;}
.y1dc_c01339{bottom:312.765000px;}
.y1db_c01339{bottom:315.360000px;}
.y1de_c01339{bottom:316.230000px;}
.y1da_c01339{bottom:317.955000px;}
.y1dd_c01339{bottom:318.810000px;}
.y1d8_c01339{bottom:320.550000px;}
.y1d9_c01339{bottom:321.405000px;}
.y1d7_c01339{bottom:324.000000px;}
.y1d6_c01339{bottom:330.045000px;}
.y1d5_c01339{bottom:330.915000px;}
.y1d4_c01339{bottom:332.640000px;}
.y1d3_c01339{bottom:336.090000px;}
.y1d0_c01339{bottom:337.830000px;}
.y1d2_c01339{bottom:338.685000px;}
.y1cd_c01339{bottom:339.555000px;}
.y1d1_c01339{bottom:342.150000px;}
.y1cf_c01339{bottom:343.875000px;}
.y1ce_c01339{bottom:345.600000px;}
.y1cb_c01339{bottom:351.645000px;}
.y1c9_c01339{bottom:353.370000px;}
.y1c8_c01339{bottom:354.240000px;}
.y1cc_c01339{bottom:355.965000px;}
.y1ca_c01339{bottom:356.835000px;}
.y1c7_c01339{bottom:359.430000px;}
.y1c6_c01339{bottom:361.155000px;}
.y1c5_c01339{bottom:362.010000px;}
.y1c4_c01339{bottom:362.880000px;}
.y1c3_c01339{bottom:364.605000px;}
.y1c2_c01339{bottom:370.650000px;}
.y1c0_c01339{bottom:371.520000px;}
.y1c1_c01339{bottom:376.710000px;}
.y1be_c01339{bottom:381.885000px;}
.y1bd_c01339{bottom:385.350000px;}
.y1bf_c01339{bottom:386.205000px;}
.y1bc_c01339{bottom:390.525000px;}
.y1bb_c01339{bottom:393.120000px;}
.y1ba_c01339{bottom:394.845000px;}
.y1b9_c01339{bottom:397.440000px;}
.y1b5_c01339{bottom:399.165000px;}
.y1b6_c01339{bottom:400.035000px;}
.y1b2_c01339{bottom:400.890000px;}
.y1b8_c01339{bottom:402.630000px;}
.y1b7_c01339{bottom:403.485000px;}
.y1b4_c01339{bottom:405.210000px;}
.y1b3_c01339{bottom:406.950000px;}
.y1b1_c01339{bottom:410.400000px;}
.y1ae_c01339{bottom:419.040000px;}
.y1af_c01339{bottom:420.765000px;}
.y1ad_c01339{bottom:422.490000px;}
.y1b0_c01339{bottom:428.550000px;}
.y1aa_c01339{bottom:431.130000px;}
.y1ab_c01339{bottom:432.000000px;}
.y1a9_c01339{bottom:433.725000px;}
.y1a8_c01339{bottom:437.190000px;}
.y1a6_c01339{bottom:438.915000px;}
.y1a5_c01339{bottom:440.640000px;}
.y1a4_c01339{bottom:441.510000px;}
.y1a7_c01339{bottom:444.090000px;}
.y1a3_c01339{bottom:445.830000px;}
.y1ac_c01339{bottom:448.410000px;}
.y1a0_c01339{bottom:451.875000px;}
.y1a2_c01339{bottom:453.600000px;}
.y19f_c01339{bottom:456.195000px;}
.y1a1_c01339{bottom:457.050000px;}
.y196_c01339{bottom:459.645000px;}
.y19d_c01339{bottom:461.370000px;}
.y19b_c01339{bottom:462.240000px;}
.y19c_c01339{bottom:463.110000px;}
.y19a_c01339{bottom:465.690000px;}
.y198_c01339{bottom:466.560000px;}
.y19e_c01339{bottom:467.430000px;}
.y199_c01339{bottom:468.285000px;}
.y197_c01339{bottom:470.880000px;}
.y195_c01339{bottom:471.750000px;}
.y18f_c01339{bottom:472.605000px;}
.y190_c01339{bottom:473.475000px;}
.y191_c01339{bottom:474.330000px;}
.y18e_c01339{bottom:475.200000px;}
.y194_c01339{bottom:476.070000px;}
.y192_c01339{bottom:476.925000px;}
.y18c_c01339{bottom:477.795000px;}
.y193_c01339{bottom:478.650000px;}
.y18b_c01339{bottom:479.520000px;}
.y18d_c01339{bottom:480.390000px;}
.y18a_c01339{bottom:482.115000px;}
.y188_c01339{bottom:486.435000px;}
.y189_c01339{bottom:488.160000px;}
.y184_c01339{bottom:491.610000px;}
.y186_c01339{bottom:496.800000px;}
.y185_c01339{bottom:497.670000px;}
.y182_c01339{bottom:498.525000px;}
.y187_c01339{bottom:499.395000px;}
.y180_c01339{bottom:501.120000px;}
.y183_c01339{bottom:501.990000px;}
.y181_c01339{bottom:502.845000px;}
.y17f_c01339{bottom:508.035000px;}
.y17d_c01339{bottom:512.355000px;}
.y17c_c01339{bottom:515.805000px;}
.y17e_c01339{bottom:516.675000px;}
.y17b_c01339{bottom:518.400000px;}
.y179_c01339{bottom:521.850000px;}
.y177_c01339{bottom:523.590000px;}
.y17a_c01339{bottom:524.445000px;}
.y178_c01339{bottom:525.315000px;}
.y176_c01339{bottom:527.910000px;}
.y175_c01339{bottom:533.085000px;}
.y174_c01339{bottom:533.955000px;}
.y172_c01339{bottom:537.405000px;}
.y173_c01339{bottom:539.130000px;}
.y170_c01339{bottom:541.725000px;}
.y171_c01339{bottom:542.595000px;}
.y16f_c01339{bottom:543.450000px;}
.y16a_c01339{bottom:545.190000px;}
.y169_c01339{bottom:546.045000px;}
.y16e_c01339{bottom:546.915000px;}
.y16b_c01339{bottom:547.770000px;}
.y16d_c01339{bottom:548.640000px;}
.y16c_c01339{bottom:550.365000px;}
.y168_c01339{bottom:551.235000px;}
.y166_c01339{bottom:553.830000px;}
.y164_c01339{bottom:555.555000px;}
.y167_c01339{bottom:556.410000px;}
.y162_c01339{bottom:557.280000px;}
.y165_c01339{bottom:558.150000px;}
.y160_c01339{bottom:559.875000px;}
.y15f_c01339{bottom:560.730000px;}
.y163_c01339{bottom:561.600000px;}
.y15d_c01339{bottom:563.325000px;}
.y161_c01339{bottom:564.195000px;}
.y15e_c01339{bottom:566.790000px;}
.y15c_c01339{bottom:568.515000px;}
.y15b_c01339{bottom:571.965000px;}
.y158_c01339{bottom:574.560000px;}
.y15a_c01339{bottom:576.285000px;}
.y159_c01339{bottom:579.750000px;}
.y154_c01339{bottom:580.605000px;}
.y151_c01339{bottom:581.475000px;}
.y150_c01339{bottom:582.330000px;}
.y157_c01339{bottom:583.200000px;}
.y155_c01339{bottom:584.070000px;}
.y153_c01339{bottom:585.795000px;}
.y152_c01339{bottom:586.650000px;}
.y156_c01339{bottom:589.245000px;}
.y14e_c01339{bottom:594.435000px;}
.y14d_c01339{bottom:597.030000px;}
.y14f_c01339{bottom:597.885000px;}
.y14c_c01339{bottom:599.610000px;}
.y149_c01339{bottom:602.205000px;}
.y147_c01339{bottom:603.075000px;}
.y14b_c01339{bottom:604.800000px;}
.y14a_c01339{bottom:605.670000px;}
.y148_c01339{bottom:607.395000px;}
.y146_c01339{bottom:614.310000px;}
.y145_c01339{bottom:616.890000px;}
.y143_c01339{bottom:618.630000px;}
.y144_c01339{bottom:619.485000px;}
.y140_c01339{bottom:623.805000px;}
.y142_c01339{bottom:626.400000px;}
.y141_c01339{bottom:628.125000px;}
.y13f_c01339{bottom:634.170000px;}
.y13d_c01339{bottom:635.040000px;}
.y13e_c01339{bottom:635.910000px;}
.y13b_c01339{bottom:638.490000px;}
.y13c_c01339{bottom:640.230000px;}
.y139_c01339{bottom:641.085000px;}
.y13a_c01339{bottom:643.680000px;}
.y137_c01339{bottom:645.405000px;}
.y138_c01339{bottom:647.130000px;}
.y135_c01339{bottom:654.045000px;}
.y136_c01339{bottom:656.640000px;}
.y134_c01339{bottom:657.510000px;}
.y133_c01339{bottom:660.090000px;}
.y130_c01339{bottom:660.960000px;}
.y132_c01339{bottom:661.830000px;}
.y12f_c01339{bottom:663.555000px;}
.y131_c01339{bottom:665.280000px;}
.y12e_c01339{bottom:675.645000px;}
.y12b_c01339{bottom:678.240000px;}
.y12d_c01339{bottom:679.110000px;}
.y127_c01339{bottom:683.430000px;}
.y12c_c01339{bottom:684.285000px;}
.y128_c01339{bottom:685.155000px;}
.y12a_c01339{bottom:686.010000px;}
.y129_c01339{bottom:686.880000px;}
.y126_c01339{bottom:695.520000px;}
.y124_c01339{bottom:696.390000px;}
.y123_c01339{bottom:697.245000px;}
.y125_c01339{bottom:698.115000px;}
.y121_c01339{bottom:700.710000px;}
.y11e_c01339{bottom:702.435000px;}
.y11c_c01339{bottom:703.290000px;}
.y120_c01339{bottom:704.160000px;}
.y11d_c01339{bottom:706.755000px;}
.y11f_c01339{bottom:707.610000px;}
.y11b_c01339{bottom:714.525000px;}
.y11a_c01339{bottom:715.395000px;}
.y122_c01339{bottom:717.990000px;}
.y118_c01339{bottom:719.715000px;}
.y115_c01339{bottom:721.440000px;}
.y119_c01339{bottom:724.035000px;}
.y116_c01339{bottom:725.760000px;}
.y114_c01339{bottom:728.355000px;}
.y117_c01339{bottom:733.530000px;}
.y113_c01339{bottom:734.400000px;}
.y112_c01339{bottom:738.720000px;}
.y110_c01339{bottom:740.445000px;}
.y111_c01339{bottom:741.315000px;}
.y10f_c01339{bottom:742.170000px;}
.y10e_c01339{bottom:743.040000px;}
.y218_c01339{bottom:743.910000px;}
.y10d_c01339{bottom:744.765000px;}
.y10c_c01339{bottom:756.870000px;}
.y10b_c01339{bottom:758.595000px;}
.y10a_c01339{bottom:759.450000px;}
.y107_c01339{bottom:761.190000px;}
.y108_c01339{bottom:762.045000px;}
.y109_c01339{bottom:765.510000px;}
.y106_c01339{bottom:766.365000px;}
.y105_c01339{bottom:775.875000px;}
.y104_c01339{bottom:779.325000px;}
.y100_c01339{bottom:781.920000px;}
.yfe_c01339{bottom:782.790000px;}
.y103_c01339{bottom:783.645000px;}
.y102_c01339{bottom:784.515000px;}
.y101_c01339{bottom:786.240000px;}
.yff_c01339{bottom:787.110000px;}
.yfd_c01339{bottom:788.835000px;}
.yfb_c01339{bottom:796.605000px;}
.yfc_c01339{bottom:800.070000px;}
.yfa_c01339{bottom:800.925000px;}
.yf9_c01339{bottom:801.795000px;}
.yf6_c01339{bottom:802.650000px;}
.yf7_c01339{bottom:806.115000px;}
.yf8_c01339{bottom:806.970000px;}
.yf5_c01339{bottom:807.840000px;}
.yf4_c01339{bottom:809.565000px;}
.yf3_c01339{bottom:817.350000px;}
.yf2_c01339{bottom:818.205000px;}
.yf1_c01339{bottom:819.930000px;}
.yf0_c01339{bottom:820.800000px;}
.yee_c01339{bottom:825.120000px;}
.yef_c01339{bottom:826.845000px;}
.ye5_c01339{bottom:828.570000px;}
.yeb_c01339{bottom:838.950000px;}
.yec_c01339{bottom:840.675000px;}
.yea_c01339{bottom:841.530000px;}
.ye8_c01339{bottom:842.400000px;}
.yed_c01339{bottom:843.270000px;}
.ye6_c01339{bottom:845.850000px;}
.ye7_c01339{bottom:846.720000px;}
.ye9_c01339{bottom:848.445000px;}
.ye4_c01339{bottom:852.765000px;}
.ye3_c01339{bottom:857.085000px;}
.ye0_c01339{bottom:863.130000px;}
.ye2_c01339{bottom:864.000000px;}
.ye1_c01339{bottom:864.870000px;}
.ydf_c01339{bottom:865.725000px;}
.yde_c01339{bottom:866.595000px;}
.ydc_c01339{bottom:877.830000px;}
.ydb_c01339{bottom:878.685000px;}
.yd4_c01339{bottom:881.280000px;}
.yd7_c01339{bottom:882.150000px;}
.yd9_c01339{bottom:883.005000px;}
.yda_c01339{bottom:883.875000px;}
.yd6_c01339{bottom:884.730000px;}
.yd8_c01339{bottom:885.600000px;}
.yd5_c01339{bottom:886.470000px;}
.ydd_c01339{bottom:891.645000px;}
.y217_c01339{bottom:894.240000px;}
.y216_c01339{bottom:895.965000px;}
.yd3_c01339{bottom:897.690000px;}
.yd0_c01339{bottom:902.010000px;}
.yd2_c01339{bottom:905.475000px;}
.yd1_c01339{bottom:906.330000px;}
.ycf_c01339{bottom:907.200000px;}
.ycc_c01339{bottom:918.435000px;}
.ycb_c01339{bottom:921.885000px;}
.ycd_c01339{bottom:922.755000px;}
.yce_c01339{bottom:926.205000px;}
.yca_c01339{bottom:939.165000px;}
.yc9_c01339{bottom:940.890000px;}
.yc7_c01339{bottom:943.485000px;}
.yc6_c01339{bottom:944.355000px;}
.yc8_c01339{bottom:946.080000px;}
.yc4_c01339{bottom:959.040000px;}
.yc2_c01339{bottom:959.910000px;}
.yc3_c01339{bottom:960.765000px;}
.yc1_c01339{bottom:961.635000px;}
.ybf_c01339{bottom:962.490000px;}
.ybe_c01339{bottom:963.360000px;}
.yc5_c01339{bottom:964.230000px;}
.ybd_c01339{bottom:965.955000px;}
.yc0_c01339{bottom:966.810000px;}
.ybc_c01339{bottom:978.915000px;}
.yb9_c01339{bottom:979.770000px;}
.yba_c01339{bottom:981.510000px;}
.yb6_c01339{bottom:982.365000px;}
.yb2_c01339{bottom:984.960000px;}
.yb8_c01339{bottom:985.830000px;}
.yb7_c01339{bottom:986.685000px;}
.yaf_c01339{bottom:987.555000px;}
.yb1_c01339{bottom:988.410000px;}
.yb0_c01339{bottom:990.150000px;}
.ybb_c01339{bottom:991.005000px;}
.yb5_c01339{bottom:993.600000px;}
.yb4_c01339{bottom:994.470000px;}
.yb3_c01339{bottom:995.325000px;}
.yae_c01339{bottom:997.050000px;}
.yad_c01339{bottom:1001.370000px;}
.ya9_c01339{bottom:1003.110000px;}
.ya8_c01339{bottom:1003.965000px;}
.yac_c01339{bottom:1005.690000px;}
.yab_c01339{bottom:1007.430000px;}
.ya6_c01339{bottom:1009.155000px;}
.ya7_c01339{bottom:1011.750000px;}
.yaa_c01339{bottom:1013.475000px;}
.ya5_c01339{bottom:1018.650000px;}
.ya4_c01339{bottom:1022.115000px;}
.ya2_c01339{bottom:1023.840000px;}
.ya0_c01339{bottom:1025.565000px;}
.y9e_c01339{bottom:1026.435000px;}
.y9f_c01339{bottom:1030.755000px;}
.y9c_c01339{bottom:1031.610000px;}
.y9d_c01339{bottom:1032.480000px;}
.ya1_c01339{bottom:1035.930000px;}
.y99_c01339{bottom:1038.525000px;}
.ya3_c01339{bottom:1039.395000px;}
.y98_c01339{bottom:1043.715000px;}
.y96_c01339{bottom:1045.440000px;}
.y93_c01339{bottom:1046.310000px;}
.y9b_c01339{bottom:1047.165000px;}
.y97_c01339{bottom:1048.890000px;}
.y9a_c01339{bottom:1052.355000px;}
.y94_c01339{bottom:1057.530000px;}
.y92_c01339{bottom:1060.125000px;}
.y95_c01339{bottom:1062.720000px;}
.y8e_c01339{bottom:1064.445000px;}
.y8f_c01339{bottom:1065.315000px;}
.y91_c01339{bottom:1066.170000px;}
.y8c_c01339{bottom:1067.040000px;}
.y90_c01339{bottom:1068.765000px;}
.y8d_c01339{bottom:1071.360000px;}
.y8b_c01339{bottom:1080.000000px;}
.y8a_c01339{bottom:1081.725000px;}
.y88_c01339{bottom:1086.045000px;}
.y89_c01339{bottom:1087.770000px;}
.y86_c01339{bottom:1088.640000px;}
.y87_c01339{bottom:1090.365000px;}
.y83_c01339{bottom:1100.730000px;}
.y82_c01339{bottom:1102.470000px;}
.y80_c01339{bottom:1103.325000px;}
.y81_c01339{bottom:1105.050000px;}
.y7f_c01339{bottom:1105.920000px;}
.y7e_c01339{bottom:1106.790000px;}
.y7c_c01339{bottom:1107.645000px;}
.y7b_c01339{bottom:1108.515000px;}
.y7d_c01339{bottom:1109.370000px;}
.y7a_c01339{bottom:1110.240000px;}
.y84_c01339{bottom:1111.965000px;}
.y85_c01339{bottom:1113.690000px;}
.y77_c01339{bottom:1120.605000px;}
.y71_c01339{bottom:1122.330000px;}
.y78_c01339{bottom:1123.200000px;}
.y79_c01339{bottom:1124.070000px;}
.y74_c01339{bottom:1126.650000px;}
.y73_c01339{bottom:1127.520000px;}
.y76_c01339{bottom:1128.390000px;}
.y75_c01339{bottom:1130.970000px;}
.y72_c01339{bottom:1131.840000px;}
.y6e_c01339{bottom:1132.710000px;}
.y6f_c01339{bottom:1135.290000px;}
.y70_c01339{bottom:1140.480000px;}
.y6b_c01339{bottom:1141.350000px;}
.y6c_c01339{bottom:1142.205000px;}
.y69_c01339{bottom:1143.075000px;}
.y6a_c01339{bottom:1145.670000px;}
.y66_c01339{bottom:1149.120000px;}
.y68_c01339{bottom:1150.845000px;}
.y67_c01339{bottom:1153.440000px;}
.y6d_c01339{bottom:1156.890000px;}
.y65_c01339{bottom:1162.080000px;}
.y64_c01339{bottom:1167.270000px;}
.y63_c01339{bottom:1168.125000px;}
.y60_c01339{bottom:1168.995000px;}
.y62_c01339{bottom:1169.850000px;}
.y61_c01339{bottom:1180.230000px;}
.y5d_c01339{bottom:1184.550000px;}
.y5f_c01339{bottom:1185.405000px;}
.y5b_c01339{bottom:1186.275000px;}
.y58_c01339{bottom:1187.130000px;}
.y5e_c01339{bottom:1188.000000px;}
.y55_c01339{bottom:1188.870000px;}
.y56_c01339{bottom:1189.725000px;}
.y5c_c01339{bottom:1190.595000px;}
.y57_c01339{bottom:1191.450000px;}
.y5a_c01339{bottom:1192.320000px;}
.y59_c01339{bottom:1193.190000px;}
.y54_c01339{bottom:1194.915000px;}
.y52_c01339{bottom:1202.685000px;}
.y53_c01339{bottom:1206.150000px;}
.y50_c01339{bottom:1208.730000px;}
.y4e_c01339{bottom:1209.600000px;}
.y51_c01339{bottom:1211.325000px;}
.y4d_c01339{bottom:1213.050000px;}
.y4f_c01339{bottom:1215.645000px;}
.y4a_c01339{bottom:1219.110000px;}
.y48_c01339{bottom:1223.430000px;}
.y44_c01339{bottom:1224.285000px;}
.y43_c01339{bottom:1225.155000px;}
.y45_c01339{bottom:1226.010000px;}
.y46_c01339{bottom:1226.880000px;}
.y47_c01339{bottom:1227.750000px;}
.y49_c01339{bottom:1228.605000px;}
.y4b_c01339{bottom:1229.475000px;}
.y4c_c01339{bottom:1238.970000px;}
.y41_c01339{bottom:1246.755000px;}
.y42_c01339{bottom:1248.480000px;}
.y3e_c01339{bottom:1249.350000px;}
.y3d_c01339{bottom:1250.205000px;}
.y3f_c01339{bottom:1252.800000px;}
.y40_c01339{bottom:1255.395000px;}
.y3c_c01339{bottom:1264.035000px;}
.y3b_c01339{bottom:1264.890000px;}
.y39_c01339{bottom:1267.485000px;}
.y37_c01339{bottom:1269.210000px;}
.y36_c01339{bottom:1270.080000px;}
.y3a_c01339{bottom:1271.805000px;}
.y38_c01339{bottom:1275.270000px;}
.y35_c01339{bottom:1283.910000px;}
.y34_c01339{bottom:1287.360000px;}
.y32_c01339{bottom:1288.230000px;}
.y2e_c01339{bottom:1289.955000px;}
.y31_c01339{bottom:1290.810000px;}
.y33_c01339{bottom:1294.275000px;}
.y30_c01339{bottom:1295.130000px;}
.y2f_c01339{bottom:1296.000000px;}
.y2c_c01339{bottom:1303.770000px;}
.y2d_c01339{bottom:1304.640000px;}
.y2a_c01339{bottom:1305.510000px;}
.y29_c01339{bottom:1307.235000px;}
.y27_c01339{bottom:1308.090000px;}
.y2b_c01339{bottom:1308.960000px;}
.y25_c01339{bottom:1309.830000px;}
.y23_c01339{bottom:1310.685000px;}
.y26_c01339{bottom:1311.555000px;}
.y28_c01339{bottom:1312.410000px;}
.y24_c01339{bottom:1313.280000px;}
.y22_c01339{bottom:1315.005000px;}
.y21_c01339{bottom:1315.875000px;}
.y20_c01339{bottom:1316.730000px;}
.y1d_c01339{bottom:1317.600000px;}
.y1e_c01339{bottom:1318.470000px;}
.y1b_c01339{bottom:1319.325000px;}
.y1f_c01339{bottom:1320.195000px;}
.y1c_c01339{bottom:1321.920000px;}
.y19_c01339{bottom:1322.790000px;}
.y1a_c01339{bottom:1323.645000px;}
.y15_c01339{bottom:1324.515000px;}
.y14_c01339{bottom:1325.370000px;}
.y18_c01339{bottom:1326.240000px;}
.y13_c01339{bottom:1327.110000px;}
.y12_c01339{bottom:1327.965000px;}
.y11_c01339{bottom:1328.835000px;}
.y16_c01339{bottom:1329.690000px;}
.yc_c01339{bottom:1330.560000px;}
.y10_c01339{bottom:1331.430000px;}
.yb_c01339{bottom:1332.285000px;}
.y17_c01339{bottom:1334.010000px;}
.yd_c01339{bottom:1335.750000px;}
.ye_c01339{bottom:1336.605000px;}
.yf_c01339{bottom:1337.475000px;}
.ya_c01339{bottom:1342.650000px;}
.y9_c01339{bottom:1349.565000px;}
.y8_c01339{bottom:1351.290000px;}
.y7_c01339{bottom:1353.030000px;}
.y4_c01339{bottom:1358.205000px;}
.y5_c01339{bottom:1359.930000px;}
.y6_c01339{bottom:1362.525000px;}
.y3_c01339{bottom:1364.250000px;}
.y2_c01339{bottom:1374.630000px;}
.y1_c01339{bottom:1443.750000px;}
.hb_c01339{height:3.110063px;}
.h9_c01339{height:5.399414px;}
.h1d_c01339{height:6.209326px;}
.h3_c01339{height:9.340986px;}
.h17_c01339{height:12.418652px;}
.ha_c01339{height:15.550313px;}
.h16_c01339{height:18.681973px;}
.h2_c01339{height:21.759639px;}
.h1a_c01339{height:24.891299px;}
.h13_c01339{height:27.968965px;}
.h19_c01339{height:31.100625px;}
.h18_c01339{height:34.232285px;}
.h15_c01339{height:37.309951px;}
.h14_c01339{height:40.441611px;}
.h10_c01339{height:43.519277px;}
.h1b_c01339{height:46.650937px;}
.he_c01339{height:49.782598px;}
.h24_c01339{height:52.511924px;}
.hd_c01339{height:52.860264px;}
.hf_c01339{height:55.991924px;}
.h20_c01339{height:56.682598px;}
.h6_c01339{height:59.069590px;}
.h12_c01339{height:62.201250px;}
.h1c_c01339{height:65.332910px;}
.h8_c01339{height:68.410576px;}
.h4_c01339{height:71.542236px;}
.h7_c01339{height:74.619902px;}
.h11_c01339{height:77.751563px;}
.h25_c01339{height:77.790938px;}
.h1e_c01339{height:80.883223px;}
.h5_c01339{height:83.960889px;}
.h1f_c01339{height:87.092549px;}
.hc_c01339{height:90.170215px;}
.h23_c01339{height:93.301875px;}
.h21_c01339{height:99.511201px;}
.h22_c01339{height:133.743486px;}
.h0_c01339{height:1509.405000px;}
.h1_c01339{height:1509.750000px;}
.w0_c01339{width:1079.130000px;}
.w1_c01339{width:1079.250000px;}
.x0_c01339{left:0.000000px;}
.x111_c01339{left:34.560000px;}
.x112_c01339{left:44.070000px;}
.xf4_c01339{left:165.885000px;}
.xc6_c01339{left:167.610000px;}
.x7e_c01339{left:170.205000px;}
.x1f_c01339{left:172.800000px;}
.xf5_c01339{left:184.890000px;}
.x7f_c01339{left:190.080000px;}
.x20_c01339{left:191.805000px;}
.x107_c01339{left:196.125000px;}
.xd0_c01339{left:202.170000px;}
.xd_c01339{left:204.765000px;}
.x5e_c01339{left:209.085000px;}
.xe7_c01339{left:210.810000px;}
.x10c_c01339{left:212.550000px;}
.xc7_c01339{left:214.275000px;}
.x3e_c01339{left:216.000000px;}
.x80_c01339{left:220.320000px;}
.x81_c01339{left:227.235000px;}
.xfb_c01339{left:230.685000px;}
.xe_c01339{left:232.410000px;}
.x78_c01339{left:235.005000px;}
.x5f_c01339{left:236.730000px;}
.x2_c01339{left:240.195000px;}
.x8f_c01339{left:241.920000px;}
.xab_c01339{left:244.515000px;}
.xd8_c01339{left:247.110000px;}
.x4f_c01339{left:248.835000px;}
.x32_c01339{left:253.155000px;}
.x90_c01339{left:254.880000px;}
.x73_c01339{left:257.475000px;}
.x3_c01339{left:259.200000px;}
.x10f_c01339{left:260.925000px;}
.xde_c01339{left:262.650000px;}
.xa5_c01339{left:264.390000px;}
.xf6_c01339{left:267.840000px;}
.x21_c01339{left:269.565000px;}
.x101_c01339{left:273.030000px;}
.x105_c01339{left:274.755000px;}
.x9f_c01339{left:276.480000px;}
.xcb_c01339{left:278.205000px;}
.x22_c01339{left:282.525000px;}
.xd5_c01339{left:284.250000px;}
.x55_c01339{left:285.990000px;}
.x60_c01339{left:287.715000px;}
.x79_c01339{left:289.440000px;}
.x113_c01339{left:291.165000px;}
.x66_c01339{left:292.890000px;}
.xf_c01339{left:294.630000px;}
.xa6_c01339{left:297.210000px;}
.x33_c01339{left:299.805000px;}
.x102_c01339{left:301.530000px;}
.xa0_c01339{left:304.995000px;}
.xd3_c01339{left:306.720000px;}
.x3f_c01339{left:308.445000px;}
.x67_c01339{left:313.635000px;}
.xc8_c01339{left:315.360000px;}
.x46_c01339{left:319.680000px;}
.xd6_c01339{left:321.405000px;}
.x61_c01339{left:324.000000px;}
.x50_c01339{left:325.725000px;}
.xe9_c01339{left:329.190000px;}
.xdf_c01339{left:332.640000px;}
.x23_c01339{left:336.960000px;}
.xe2_c01339{left:338.685000px;}
.x82_c01339{left:341.280000px;}
.xf0_c01339{left:343.005000px;}
.xa1_c01339{left:346.470000px;}
.xcc_c01339{left:348.195000px;}
.xac_c01339{left:350.790000px;}
.xfc_c01339{left:353.370000px;}
.x10_c01339{left:355.110000px;}
.x40_c01339{left:359.430000px;}
.x7a_c01339{left:362.010000px;}
.x68_c01339{left:366.330000px;}
.x34_c01339{left:369.795000px;}
.x62_c01339{left:371.520000px;}
.x74_c01339{left:375.840000px;}
.x10a_c01339{left:378.435000px;}
.xff_c01339{left:381.030000px;}
.xd9_c01339{left:382.755000px;}
.xa7_c01339{left:385.350000px;}
.x41_c01339{left:387.930000px;}
.x47_c01339{left:389.670000px;}
.xa2_c01339{left:392.250000px;}
.x75_c01339{left:393.990000px;}
.x96_c01339{left:397.440000px;}
.xfd_c01339{left:399.165000px;}
.xea_c01339{left:400.890000px;}
.x51_c01339{left:402.630000px;}
.x108_c01339{left:404.355000px;}
.x4_c01339{left:406.080000px;}
.x11_c01339{left:407.805000px;}
.xe3_c01339{left:409.530000px;}
.x114_c01339{left:411.270000px;}
.x52_c01339{left:412.995000px;}
.x24_c01339{left:414.720000px;}
.x103_c01339{left:417.315000px;}
.xeb_c01339{left:419.910000px;}
.x48_c01339{left:421.635000px;}
.x35_c01339{left:425.085000px;}
.xb7_c01339{left:426.810000px;}
.x89_c01339{left:428.550000px;}
.x12_c01339{left:430.275000px;}
.xa_c01339{left:434.595000px;}
.xa3_c01339{left:436.320000px;}
.xe8_c01339{left:438.045000px;}
.xec_c01339{left:441.510000px;}
.x83_c01339{left:443.235000px;}
.xe6_c01339{left:444.960000px;}
.xfe_c01339{left:448.410000px;}
.x25_c01339{left:451.005000px;}
.xed_c01339{left:452.730000px;}
.x49_c01339{left:457.050000px;}
.x69_c01339{left:460.515000px;}
.x13_c01339{left:462.240000px;}
.xad_c01339{left:463.965000px;}
.x5_c01339{left:466.560000px;}
.x36_c01339{left:469.155000px;}
.x8a_c01339{left:473.475000px;}
.xe0_c01339{left:476.070000px;}
.xda_c01339{left:477.795000px;}
.x26_c01339{left:479.520000px;}
.x109_c01339{left:482.115000px;}
.xc9_c01339{left:487.290000px;}
.x106_c01339{left:490.755000px;}
.x56_c01339{left:493.350000px;}
.xcd_c01339{left:495.075000px;}
.xae_c01339{left:496.800000px;}
.x6a_c01339{left:499.395000px;}
.x84_c01339{left:502.845000px;}
.x98_c01339{left:510.630000px;}
.x6_c01339{left:512.355000px;}
.xdb_c01339{left:518.400000px;}
.x104_c01339{left:521.850000px;}
.xd7_c01339{left:523.590000px;}
.xa8_c01339{left:527.040000px;}
.x14_c01339{left:528.765000px;}
.xdc_c01339{left:531.360000px;}
.xd4_c01339{left:533.085000px;}
.xaf_c01339{left:534.810000px;}
.xca_c01339{left:537.405000px;}
.xbe_c01339{left:540.000000px;}
.x85_c01339{left:541.725000px;}
.x4a_c01339{left:543.450000px;}
.x15_c01339{left:545.190000px;}
.x37_c01339{left:546.915000px;}
.xf7_c01339{left:552.960000px;}
.x27_c01339{left:558.150000px;}
.xce_c01339{left:559.875000px;}
.xe5_c01339{left:562.470000px;}
.x6b_c01339{left:564.195000px;}
.xb_c01339{left:565.920000px;}
.x16_c01339{left:569.370000px;}
.xf1_c01339{left:571.965000px;}
.x28_c01339{left:574.560000px;}
.xc_c01339{left:578.880000px;}
.x63_c01339{left:582.330000px;}
.x29_c01339{left:585.795000px;}
.x7_c01339{left:587.520000px;}
.xa9_c01339{left:591.840000px;}
.x17_c01339{left:594.435000px;}
.x97_c01339{left:597.030000px;}
.x57_c01339{left:598.755000px;}
.x100_c01339{left:600.480000px;}
.x4b_c01339{left:602.205000px;}
.xc2_c01339{left:603.930000px;}
.xb3_c01339{left:607.395000px;}
.x76_c01339{left:609.120000px;}
.x8_c01339{left:611.715000px;}
.xcf_c01339{left:613.440000px;}
.x53_c01339{left:615.165000px;}
.x99_c01339{left:616.890000px;}
.x6c_c01339{left:618.630000px;}
.x42_c01339{left:621.210000px;}
.xb0_c01339{left:624.675000px;}
.x58_c01339{left:626.400000px;}
.xbf_c01339{left:628.995000px;}
.xbb_c01339{left:630.720000px;}
.x91_c01339{left:633.315000px;}
.xc3_c01339{left:635.040000px;}
.x2a_c01339{left:638.490000px;}
.x18_c01339{left:641.955000px;}
.x59_c01339{left:643.680000px;}
.xf8_c01339{left:645.405000px;}
.xf3_c01339{left:647.130000px;}
.x4c_c01339{left:652.320000px;}
.x8b_c01339{left:656.640000px;}
.x43_c01339{left:658.365000px;}
.x110_c01339{left:660.960000px;}
.x38_c01339{left:665.280000px;}
.x2b_c01339{left:667.875000px;}
.x77_c01339{left:669.600000px;}
.xb4_c01339{left:671.325000px;}
.xc0_c01339{left:673.920000px;}
.xf9_c01339{left:675.645000px;}
.xb1_c01339{left:677.370000px;}
.x6d_c01339{left:680.835000px;}
.xbc_c01339{left:682.560000px;}
.x7b_c01339{left:684.285000px;}
.x39_c01339{left:686.010000px;}
.x92_c01339{left:689.475000px;}
.x2c_c01339{left:691.200000px;}
.xe4_c01339{left:693.795000px;}
.xef_c01339{left:697.245000px;}
.x9a_c01339{left:700.710000px;}
.x19_c01339{left:702.435000px;}
.x2d_c01339{left:704.160000px;}
.x44_c01339{left:707.610000px;}
.x86_c01339{left:710.205000px;}
.xb9_c01339{left:712.800000px;}
.xbd_c01339{left:715.395000px;}
.x45_c01339{left:717.990000px;}
.xd1_c01339{left:721.440000px;}
.x9b_c01339{left:723.165000px;}
.x93_c01339{left:724.890000px;}
.xc1_c01339{left:727.485000px;}
.x5a_c01339{left:729.210000px;}
.x8c_c01339{left:730.950000px;}
.x1a_c01339{left:735.270000px;}
.x3a_c01339{left:737.850000px;}
.x2e_c01339{left:740.445000px;}
.xc4_c01339{left:743.040000px;}
.xfa_c01339{left:744.765000px;}
.x4d_c01339{left:746.490000px;}
.xf2_c01339{left:749.085000px;}
.x3b_c01339{left:750.810000px;}
.x6e_c01339{left:754.275000px;}
.x94_c01339{left:757.725000px;}
.x1_c01339{left:759.450000px;}
.x8d_c01339{left:761.190000px;}
.xa4_c01339{left:762.915000px;}
.x10d_c01339{left:764.640000px;}
.x54_c01339{left:766.365000px;}
.x7c_c01339{left:768.960000px;}
.xd2_c01339{left:770.685000px;}
.x3c_c01339{left:772.410000px;}
.xe1_c01339{left:775.005000px;}
.xaa_c01339{left:778.470000px;}
.x64_c01339{left:781.050000px;}
.x2f_c01339{left:782.790000px;}
.x1b_c01339{left:785.370000px;}
.x87_c01339{left:787.110000px;}
.x4e_c01339{left:788.835000px;}
.x3d_c01339{left:794.010000px;}
.x6f_c01339{left:796.605000px;}
.x9c_c01339{left:799.200000px;}
.x1c_c01339{left:802.650000px;}
.x95_c01339{left:810.435000px;}
.x30_c01339{left:812.160000px;}
.x70_c01339{left:814.755000px;}
.x1d_c01339{left:817.350000px;}
.xb5_c01339{left:819.930000px;}
.xdd_c01339{left:823.395000px;}
.x9_c01339{left:825.120000px;}
.xb8_c01339{left:829.440000px;}
.xee_c01339{left:832.035000px;}
.x31_c01339{left:833.760000px;}
.xb6_c01339{left:839.805000px;}
.x71_c01339{left:844.995000px;}
.xc5_c01339{left:846.720000px;}
.xba_c01339{left:849.315000px;}
.x72_c01339{left:851.910000px;}
.x5b_c01339{left:856.230000px;}
.x10b_c01339{left:857.955000px;}
.x9d_c01339{left:859.680000px;}
.x88_c01339{left:861.405000px;}
.x1e_c01339{left:864.870000px;}
.x10e_c01339{left:868.320000px;}
.x9e_c01339{left:870.045000px;}
.x65_c01339{left:876.090000px;}
.x5c_c01339{left:877.830000px;}
.xb2_c01339{left:880.410000px;}
.x7d_c01339{left:883.005000px;}
.x8e_c01339{left:892.515000px;}
.x5d_c01339{left:894.240000px;}
.x115_c01339{left:933.120000px;}
@media print{
.v1_c01339{vertical-align:-6.133333pt;}
.v2_c01339{vertical-align:-3.093333pt;}
.v0_c01339{vertical-align:0.000000pt;}
.v3_c01339{vertical-align:6.133333pt;}
.v4_c01339{vertical-align:18.453333pt;}
.v5_c01339{vertical-align:27.680000pt;}
.ls3_c01339{letter-spacing:0.000000pt;}
.ls1_c01339{letter-spacing:18.833280pt;}
.ls2_c01339{letter-spacing:187.782317pt;}
.ls0_c01339{letter-spacing:1033.152296pt;}
.ws4_c01339{word-spacing:-30.071147pt;}
.ws0_c01339{word-spacing:-18.077120pt;}
.ws5_c01339{word-spacing:-14.069333pt;}
.ws3_c01339{word-spacing:-13.377387pt;}
.ws1_c01339{word-spacing:-9.855467pt;}
.ws6_c01339{word-spacing:0.000000pt;}
.ws2_c01339{word-spacing:91.752000pt;}
.fs9_c01339{font-size:3.072000pt;}
.fs7_c01339{font-size:5.333333pt;}
.fs1b_c01339{font-size:6.133333pt;}
.fs1_c01339{font-size:9.226667pt;}
.fs15_c01339{font-size:12.266667pt;}
.fs8_c01339{font-size:15.360000pt;}
.fs14_c01339{font-size:18.453333pt;}
.fs0_c01339{font-size:21.493333pt;}
.fs18_c01339{font-size:24.586667pt;}
.fs11_c01339{font-size:27.626667pt;}
.fs17_c01339{font-size:30.720000pt;}
.fs16_c01339{font-size:33.813333pt;}
.fs13_c01339{font-size:36.853333pt;}
.fs12_c01339{font-size:39.946667pt;}
.fse_c01339{font-size:42.986667pt;}
.fs19_c01339{font-size:46.080000pt;}
.fsc_c01339{font-size:49.173333pt;}
.fsb_c01339{font-size:52.213333pt;}
.fsd_c01339{font-size:55.306667pt;}
.fs4_c01339{font-size:58.346667pt;}
.fs10_c01339{font-size:61.440000pt;}
.fs1a_c01339{font-size:64.533333pt;}
.fs6_c01339{font-size:67.573333pt;}
.fs2_c01339{font-size:70.666667pt;}
.fs5_c01339{font-size:73.706667pt;}
.fsf_c01339{font-size:76.800000pt;}
.fs1c_c01339{font-size:79.893333pt;}
.fs3_c01339{font-size:82.933333pt;}
.fs1d_c01339{font-size:86.026667pt;}
.fsa_c01339{font-size:89.066667pt;}
.fs20_c01339{font-size:92.160000pt;}
.fs1e_c01339{font-size:98.293333pt;}
.fs1f_c01339{font-size:132.106667pt;}
.y0_c01339{bottom:0.000000pt;}
.y214_c01339{bottom:166.653333pt;}
.y215_c01339{bottom:169.733333pt;}
.y212_c01339{bottom:172.800000pt;}
.y210_c01339{bottom:173.573333pt;}
.y211_c01339{bottom:174.333333pt;}
.y20f_c01339{bottom:175.866667pt;}
.y20e_c01339{bottom:176.640000pt;}
.y213_c01339{bottom:179.706667pt;}
.y20d_c01339{bottom:184.320000pt;}
.y20c_c01339{bottom:185.853333pt;}
.y20b_c01339{bottom:188.160000pt;}
.y206_c01339{bottom:191.226667pt;}
.y208_c01339{bottom:192.000000pt;}
.y205_c01339{bottom:192.773333pt;}
.y209_c01339{bottom:193.533333pt;}
.y20a_c01339{bottom:194.306667pt;}
.y207_c01339{bottom:197.373333pt;}
.y203_c01339{bottom:204.293333pt;}
.y202_c01339{bottom:205.826667pt;}
.y204_c01339{bottom:207.360000pt;}
.y200_c01339{bottom:209.666667pt;}
.y1fe_c01339{bottom:211.200000pt;}
.y1fc_c01339{bottom:213.506667pt;}
.y1ff_c01339{bottom:214.266667pt;}
.y1fd_c01339{bottom:216.573333pt;}
.y201_c01339{bottom:218.106667pt;}
.y1fa_c01339{bottom:220.413333pt;}
.y1f9_c01339{bottom:221.186667pt;}
.y1f7_c01339{bottom:222.720000pt;}
.y1f5_c01339{bottom:225.786667pt;}
.y1f8_c01339{bottom:228.093333pt;}
.y1f3_c01339{bottom:229.626667pt;}
.y1f4_c01339{bottom:230.400000pt;}
.y1f6_c01339{bottom:231.933333pt;}
.y1f2_c01339{bottom:235.773333pt;}
.y1fb_c01339{bottom:236.546667pt;}
.y1ef_c01339{bottom:238.853333pt;}
.y1ee_c01339{bottom:241.146667pt;}
.y1f0_c01339{bottom:245.760000pt;}
.y1ec_c01339{bottom:246.533333pt;}
.y1e9_c01339{bottom:247.293333pt;}
.y1f1_c01339{bottom:248.066667pt;}
.y1ed_c01339{bottom:249.600000pt;}
.y1ea_c01339{bottom:251.906667pt;}
.y1eb_c01339{bottom:252.666667pt;}
.y1e6_c01339{bottom:257.280000pt;}
.y1e4_c01339{bottom:260.346667pt;}
.y1e5_c01339{bottom:261.120000pt;}
.y1e8_c01339{bottom:261.893333pt;}
.y1e7_c01339{bottom:262.653333pt;}
.y1e0_c01339{bottom:264.186667pt;}
.y1e2_c01339{bottom:264.960000pt;}
.y1e3_c01339{bottom:268.800000pt;}
.y1e1_c01339{bottom:270.333333pt;}
.y1df_c01339{bottom:274.946667pt;}
.y1dc_c01339{bottom:278.013333pt;}
.y1db_c01339{bottom:280.320000pt;}
.y1de_c01339{bottom:281.093333pt;}
.y1da_c01339{bottom:282.626667pt;}
.y1dd_c01339{bottom:283.386667pt;}
.y1d8_c01339{bottom:284.933333pt;}
.y1d9_c01339{bottom:285.693333pt;}
.y1d7_c01339{bottom:288.000000pt;}
.y1d6_c01339{bottom:293.373333pt;}
.y1d5_c01339{bottom:294.146667pt;}
.y1d4_c01339{bottom:295.680000pt;}
.y1d3_c01339{bottom:298.746667pt;}
.y1d0_c01339{bottom:300.293333pt;}
.y1d2_c01339{bottom:301.053333pt;}
.y1cd_c01339{bottom:301.826667pt;}
.y1d1_c01339{bottom:304.133333pt;}
.y1cf_c01339{bottom:305.666667pt;}
.y1ce_c01339{bottom:307.200000pt;}
.y1cb_c01339{bottom:312.573333pt;}
.y1c9_c01339{bottom:314.106667pt;}
.y1c8_c01339{bottom:314.880000pt;}
.y1cc_c01339{bottom:316.413333pt;}
.y1ca_c01339{bottom:317.186667pt;}
.y1c7_c01339{bottom:319.493333pt;}
.y1c6_c01339{bottom:321.026667pt;}
.y1c5_c01339{bottom:321.786667pt;}
.y1c4_c01339{bottom:322.560000pt;}
.y1c3_c01339{bottom:324.093333pt;}
.y1c2_c01339{bottom:329.466667pt;}
.y1c0_c01339{bottom:330.240000pt;}
.y1c1_c01339{bottom:334.853333pt;}
.y1be_c01339{bottom:339.453333pt;}
.y1bd_c01339{bottom:342.533333pt;}
.y1bf_c01339{bottom:343.293333pt;}
.y1bc_c01339{bottom:347.133333pt;}
.y1bb_c01339{bottom:349.440000pt;}
.y1ba_c01339{bottom:350.973333pt;}
.y1b9_c01339{bottom:353.280000pt;}
.y1b5_c01339{bottom:354.813333pt;}
.y1b6_c01339{bottom:355.586667pt;}
.y1b2_c01339{bottom:356.346667pt;}
.y1b8_c01339{bottom:357.893333pt;}
.y1b7_c01339{bottom:358.653333pt;}
.y1b4_c01339{bottom:360.186667pt;}
.y1b3_c01339{bottom:361.733333pt;}
.y1b1_c01339{bottom:364.800000pt;}
.y1ae_c01339{bottom:372.480000pt;}
.y1af_c01339{bottom:374.013333pt;}
.y1ad_c01339{bottom:375.546667pt;}
.y1b0_c01339{bottom:380.933333pt;}
.y1aa_c01339{bottom:383.226667pt;}
.y1ab_c01339{bottom:384.000000pt;}
.y1a9_c01339{bottom:385.533333pt;}
.y1a8_c01339{bottom:388.613333pt;}
.y1a6_c01339{bottom:390.146667pt;}
.y1a5_c01339{bottom:391.680000pt;}
.y1a4_c01339{bottom:392.453333pt;}
.y1a7_c01339{bottom:394.746667pt;}
.y1a3_c01339{bottom:396.293333pt;}
.y1ac_c01339{bottom:398.586667pt;}
.y1a0_c01339{bottom:401.666667pt;}
.y1a2_c01339{bottom:403.200000pt;}
.y19f_c01339{bottom:405.506667pt;}
.y1a1_c01339{bottom:406.266667pt;}
.y196_c01339{bottom:408.573333pt;}
.y19d_c01339{bottom:410.106667pt;}
.y19b_c01339{bottom:410.880000pt;}
.y19c_c01339{bottom:411.653333pt;}
.y19a_c01339{bottom:413.946667pt;}
.y198_c01339{bottom:414.720000pt;}
.y19e_c01339{bottom:415.493333pt;}
.y199_c01339{bottom:416.253333pt;}
.y197_c01339{bottom:418.560000pt;}
.y195_c01339{bottom:419.333333pt;}
.y18f_c01339{bottom:420.093333pt;}
.y190_c01339{bottom:420.866667pt;}
.y191_c01339{bottom:421.626667pt;}
.y18e_c01339{bottom:422.400000pt;}
.y194_c01339{bottom:423.173333pt;}
.y192_c01339{bottom:423.933333pt;}
.y18c_c01339{bottom:424.706667pt;}
.y193_c01339{bottom:425.466667pt;}
.y18b_c01339{bottom:426.240000pt;}
.y18d_c01339{bottom:427.013333pt;}
.y18a_c01339{bottom:428.546667pt;}
.y188_c01339{bottom:432.386667pt;}
.y189_c01339{bottom:433.920000pt;}
.y184_c01339{bottom:436.986667pt;}
.y186_c01339{bottom:441.600000pt;}
.y185_c01339{bottom:442.373333pt;}
.y182_c01339{bottom:443.133333pt;}
.y187_c01339{bottom:443.906667pt;}
.y180_c01339{bottom:445.440000pt;}
.y183_c01339{bottom:446.213333pt;}
.y181_c01339{bottom:446.973333pt;}
.y17f_c01339{bottom:451.586667pt;}
.y17d_c01339{bottom:455.426667pt;}
.y17c_c01339{bottom:458.493333pt;}
.y17e_c01339{bottom:459.266667pt;}
.y17b_c01339{bottom:460.800000pt;}
.y179_c01339{bottom:463.866667pt;}
.y177_c01339{bottom:465.413333pt;}
.y17a_c01339{bottom:466.173333pt;}
.y178_c01339{bottom:466.946667pt;}
.y176_c01339{bottom:469.253333pt;}
.y175_c01339{bottom:473.853333pt;}
.y174_c01339{bottom:474.626667pt;}
.y172_c01339{bottom:477.693333pt;}
.y173_c01339{bottom:479.226667pt;}
.y170_c01339{bottom:481.533333pt;}
.y171_c01339{bottom:482.306667pt;}
.y16f_c01339{bottom:483.066667pt;}
.y16a_c01339{bottom:484.613333pt;}
.y169_c01339{bottom:485.373333pt;}
.y16e_c01339{bottom:486.146667pt;}
.y16b_c01339{bottom:486.906667pt;}
.y16d_c01339{bottom:487.680000pt;}
.y16c_c01339{bottom:489.213333pt;}
.y168_c01339{bottom:489.986667pt;}
.y166_c01339{bottom:492.293333pt;}
.y164_c01339{bottom:493.826667pt;}
.y167_c01339{bottom:494.586667pt;}
.y162_c01339{bottom:495.360000pt;}
.y165_c01339{bottom:496.133333pt;}
.y160_c01339{bottom:497.666667pt;}
.y15f_c01339{bottom:498.426667pt;}
.y163_c01339{bottom:499.200000pt;}
.y15d_c01339{bottom:500.733333pt;}
.y161_c01339{bottom:501.506667pt;}
.y15e_c01339{bottom:503.813333pt;}
.y15c_c01339{bottom:505.346667pt;}
.y15b_c01339{bottom:508.413333pt;}
.y158_c01339{bottom:510.720000pt;}
.y15a_c01339{bottom:512.253333pt;}
.y159_c01339{bottom:515.333333pt;}
.y154_c01339{bottom:516.093333pt;}
.y151_c01339{bottom:516.866667pt;}
.y150_c01339{bottom:517.626667pt;}
.y157_c01339{bottom:518.400000pt;}
.y155_c01339{bottom:519.173333pt;}
.y153_c01339{bottom:520.706667pt;}
.y152_c01339{bottom:521.466667pt;}
.y156_c01339{bottom:523.773333pt;}
.y14e_c01339{bottom:528.386667pt;}
.y14d_c01339{bottom:530.693333pt;}
.y14f_c01339{bottom:531.453333pt;}
.y14c_c01339{bottom:532.986667pt;}
.y149_c01339{bottom:535.293333pt;}
.y147_c01339{bottom:536.066667pt;}
.y14b_c01339{bottom:537.600000pt;}
.y14a_c01339{bottom:538.373333pt;}
.y148_c01339{bottom:539.906667pt;}
.y146_c01339{bottom:546.053333pt;}
.y145_c01339{bottom:548.346667pt;}
.y143_c01339{bottom:549.893333pt;}
.y144_c01339{bottom:550.653333pt;}
.y140_c01339{bottom:554.493333pt;}
.y142_c01339{bottom:556.800000pt;}
.y141_c01339{bottom:558.333333pt;}
.y13f_c01339{bottom:563.706667pt;}
.y13d_c01339{bottom:564.480000pt;}
.y13e_c01339{bottom:565.253333pt;}
.y13b_c01339{bottom:567.546667pt;}
.y13c_c01339{bottom:569.093333pt;}
.y139_c01339{bottom:569.853333pt;}
.y13a_c01339{bottom:572.160000pt;}
.y137_c01339{bottom:573.693333pt;}
.y138_c01339{bottom:575.226667pt;}
.y135_c01339{bottom:581.373333pt;}
.y136_c01339{bottom:583.680000pt;}
.y134_c01339{bottom:584.453333pt;}
.y133_c01339{bottom:586.746667pt;}
.y130_c01339{bottom:587.520000pt;}
.y132_c01339{bottom:588.293333pt;}
.y12f_c01339{bottom:589.826667pt;}
.y131_c01339{bottom:591.360000pt;}
.y12e_c01339{bottom:600.573333pt;}
.y12b_c01339{bottom:602.880000pt;}
.y12d_c01339{bottom:603.653333pt;}
.y127_c01339{bottom:607.493333pt;}
.y12c_c01339{bottom:608.253333pt;}
.y128_c01339{bottom:609.026667pt;}
.y12a_c01339{bottom:609.786667pt;}
.y129_c01339{bottom:610.560000pt;}
.y126_c01339{bottom:618.240000pt;}
.y124_c01339{bottom:619.013333pt;}
.y123_c01339{bottom:619.773333pt;}
.y125_c01339{bottom:620.546667pt;}
.y121_c01339{bottom:622.853333pt;}
.y11e_c01339{bottom:624.386667pt;}
.y11c_c01339{bottom:625.146667pt;}
.y120_c01339{bottom:625.920000pt;}
.y11d_c01339{bottom:628.226667pt;}
.y11f_c01339{bottom:628.986667pt;}
.y11b_c01339{bottom:635.133333pt;}
.y11a_c01339{bottom:635.906667pt;}
.y122_c01339{bottom:638.213333pt;}
.y118_c01339{bottom:639.746667pt;}
.y115_c01339{bottom:641.280000pt;}
.y119_c01339{bottom:643.586667pt;}
.y116_c01339{bottom:645.120000pt;}
.y114_c01339{bottom:647.426667pt;}
.y117_c01339{bottom:652.026667pt;}
.y113_c01339{bottom:652.800000pt;}
.y112_c01339{bottom:656.640000pt;}
.y110_c01339{bottom:658.173333pt;}
.y111_c01339{bottom:658.946667pt;}
.y10f_c01339{bottom:659.706667pt;}
.y10e_c01339{bottom:660.480000pt;}
.y218_c01339{bottom:661.253333pt;}
.y10d_c01339{bottom:662.013333pt;}
.y10c_c01339{bottom:672.773333pt;}
.y10b_c01339{bottom:674.306667pt;}
.y10a_c01339{bottom:675.066667pt;}
.y107_c01339{bottom:676.613333pt;}
.y108_c01339{bottom:677.373333pt;}
.y109_c01339{bottom:680.453333pt;}
.y106_c01339{bottom:681.213333pt;}
.y105_c01339{bottom:689.666667pt;}
.y104_c01339{bottom:692.733333pt;}
.y100_c01339{bottom:695.040000pt;}
.yfe_c01339{bottom:695.813333pt;}
.y103_c01339{bottom:696.573333pt;}
.y102_c01339{bottom:697.346667pt;}
.y101_c01339{bottom:698.880000pt;}
.yff_c01339{bottom:699.653333pt;}
.yfd_c01339{bottom:701.186667pt;}
.yfb_c01339{bottom:708.093333pt;}
.yfc_c01339{bottom:711.173333pt;}
.yfa_c01339{bottom:711.933333pt;}
.yf9_c01339{bottom:712.706667pt;}
.yf6_c01339{bottom:713.466667pt;}
.yf7_c01339{bottom:716.546667pt;}
.yf8_c01339{bottom:717.306667pt;}
.yf5_c01339{bottom:718.080000pt;}
.yf4_c01339{bottom:719.613333pt;}
.yf3_c01339{bottom:726.533333pt;}
.yf2_c01339{bottom:727.293333pt;}
.yf1_c01339{bottom:728.826667pt;}
.yf0_c01339{bottom:729.600000pt;}
.yee_c01339{bottom:733.440000pt;}
.yef_c01339{bottom:734.973333pt;}
.ye5_c01339{bottom:736.506667pt;}
.yeb_c01339{bottom:745.733333pt;}
.yec_c01339{bottom:747.266667pt;}
.yea_c01339{bottom:748.026667pt;}
.ye8_c01339{bottom:748.800000pt;}
.yed_c01339{bottom:749.573333pt;}
.ye6_c01339{bottom:751.866667pt;}
.ye7_c01339{bottom:752.640000pt;}
.ye9_c01339{bottom:754.173333pt;}
.ye4_c01339{bottom:758.013333pt;}
.ye3_c01339{bottom:761.853333pt;}
.ye0_c01339{bottom:767.226667pt;}
.ye2_c01339{bottom:768.000000pt;}
.ye1_c01339{bottom:768.773333pt;}
.ydf_c01339{bottom:769.533333pt;}
.yde_c01339{bottom:770.306667pt;}
.ydc_c01339{bottom:780.293333pt;}
.ydb_c01339{bottom:781.053333pt;}
.yd4_c01339{bottom:783.360000pt;}
.yd7_c01339{bottom:784.133333pt;}
.yd9_c01339{bottom:784.893333pt;}
.yda_c01339{bottom:785.666667pt;}
.yd6_c01339{bottom:786.426667pt;}
.yd8_c01339{bottom:787.200000pt;}
.yd5_c01339{bottom:787.973333pt;}
.ydd_c01339{bottom:792.573333pt;}
.y217_c01339{bottom:794.880000pt;}
.y216_c01339{bottom:796.413333pt;}
.yd3_c01339{bottom:797.946667pt;}
.yd0_c01339{bottom:801.786667pt;}
.yd2_c01339{bottom:804.866667pt;}
.yd1_c01339{bottom:805.626667pt;}
.ycf_c01339{bottom:806.400000pt;}
.ycc_c01339{bottom:816.386667pt;}
.ycb_c01339{bottom:819.453333pt;}
.ycd_c01339{bottom:820.226667pt;}
.yce_c01339{bottom:823.293333pt;}
.yca_c01339{bottom:834.813333pt;}
.yc9_c01339{bottom:836.346667pt;}
.yc7_c01339{bottom:838.653333pt;}
.yc6_c01339{bottom:839.426667pt;}
.yc8_c01339{bottom:840.960000pt;}
.yc4_c01339{bottom:852.480000pt;}
.yc2_c01339{bottom:853.253333pt;}
.yc3_c01339{bottom:854.013333pt;}
.yc1_c01339{bottom:854.786667pt;}
.ybf_c01339{bottom:855.546667pt;}
.ybe_c01339{bottom:856.320000pt;}
.yc5_c01339{bottom:857.093333pt;}
.ybd_c01339{bottom:858.626667pt;}
.yc0_c01339{bottom:859.386667pt;}
.ybc_c01339{bottom:870.146667pt;}
.yb9_c01339{bottom:870.906667pt;}
.yba_c01339{bottom:872.453333pt;}
.yb6_c01339{bottom:873.213333pt;}
.yb2_c01339{bottom:875.520000pt;}
.yb8_c01339{bottom:876.293333pt;}
.yb7_c01339{bottom:877.053333pt;}
.yaf_c01339{bottom:877.826667pt;}
.yb1_c01339{bottom:878.586667pt;}
.yb0_c01339{bottom:880.133333pt;}
.ybb_c01339{bottom:880.893333pt;}
.yb5_c01339{bottom:883.200000pt;}
.yb4_c01339{bottom:883.973333pt;}
.yb3_c01339{bottom:884.733333pt;}
.yae_c01339{bottom:886.266667pt;}
.yad_c01339{bottom:890.106667pt;}
.ya9_c01339{bottom:891.653333pt;}
.ya8_c01339{bottom:892.413333pt;}
.yac_c01339{bottom:893.946667pt;}
.yab_c01339{bottom:895.493333pt;}
.ya6_c01339{bottom:897.026667pt;}
.ya7_c01339{bottom:899.333333pt;}
.yaa_c01339{bottom:900.866667pt;}
.ya5_c01339{bottom:905.466667pt;}
.ya4_c01339{bottom:908.546667pt;}
.ya2_c01339{bottom:910.080000pt;}
.ya0_c01339{bottom:911.613333pt;}
.y9e_c01339{bottom:912.386667pt;}
.y9f_c01339{bottom:916.226667pt;}
.y9c_c01339{bottom:916.986667pt;}
.y9d_c01339{bottom:917.760000pt;}
.ya1_c01339{bottom:920.826667pt;}
.y99_c01339{bottom:923.133333pt;}
.ya3_c01339{bottom:923.906667pt;}
.y98_c01339{bottom:927.746667pt;}
.y96_c01339{bottom:929.280000pt;}
.y93_c01339{bottom:930.053333pt;}
.y9b_c01339{bottom:930.813333pt;}
.y97_c01339{bottom:932.346667pt;}
.y9a_c01339{bottom:935.426667pt;}
.y94_c01339{bottom:940.026667pt;}
.y92_c01339{bottom:942.333333pt;}
.y95_c01339{bottom:944.640000pt;}
.y8e_c01339{bottom:946.173333pt;}
.y8f_c01339{bottom:946.946667pt;}
.y91_c01339{bottom:947.706667pt;}
.y8c_c01339{bottom:948.480000pt;}
.y90_c01339{bottom:950.013333pt;}
.y8d_c01339{bottom:952.320000pt;}
.y8b_c01339{bottom:960.000000pt;}
.y8a_c01339{bottom:961.533333pt;}
.y88_c01339{bottom:965.373333pt;}
.y89_c01339{bottom:966.906667pt;}
.y86_c01339{bottom:967.680000pt;}
.y87_c01339{bottom:969.213333pt;}
.y83_c01339{bottom:978.426667pt;}
.y82_c01339{bottom:979.973333pt;}
.y80_c01339{bottom:980.733333pt;}
.y81_c01339{bottom:982.266667pt;}
.y7f_c01339{bottom:983.040000pt;}
.y7e_c01339{bottom:983.813333pt;}
.y7c_c01339{bottom:984.573333pt;}
.y7b_c01339{bottom:985.346667pt;}
.y7d_c01339{bottom:986.106667pt;}
.y7a_c01339{bottom:986.880000pt;}
.y84_c01339{bottom:988.413333pt;}
.y85_c01339{bottom:989.946667pt;}
.y77_c01339{bottom:996.093333pt;}
.y71_c01339{bottom:997.626667pt;}
.y78_c01339{bottom:998.400000pt;}
.y79_c01339{bottom:999.173333pt;}
.y74_c01339{bottom:1001.466667pt;}
.y73_c01339{bottom:1002.240000pt;}
.y76_c01339{bottom:1003.013333pt;}
.y75_c01339{bottom:1005.306667pt;}
.y72_c01339{bottom:1006.080000pt;}
.y6e_c01339{bottom:1006.853333pt;}
.y6f_c01339{bottom:1009.146667pt;}
.y70_c01339{bottom:1013.760000pt;}
.y6b_c01339{bottom:1014.533333pt;}
.y6c_c01339{bottom:1015.293333pt;}
.y69_c01339{bottom:1016.066667pt;}
.y6a_c01339{bottom:1018.373333pt;}
.y66_c01339{bottom:1021.440000pt;}
.y68_c01339{bottom:1022.973333pt;}
.y67_c01339{bottom:1025.280000pt;}
.y6d_c01339{bottom:1028.346667pt;}
.y65_c01339{bottom:1032.960000pt;}
.y64_c01339{bottom:1037.573333pt;}
.y63_c01339{bottom:1038.333333pt;}
.y60_c01339{bottom:1039.106667pt;}
.y62_c01339{bottom:1039.866667pt;}
.y61_c01339{bottom:1049.093333pt;}
.y5d_c01339{bottom:1052.933333pt;}
.y5f_c01339{bottom:1053.693333pt;}
.y5b_c01339{bottom:1054.466667pt;}
.y58_c01339{bottom:1055.226667pt;}
.y5e_c01339{bottom:1056.000000pt;}
.y55_c01339{bottom:1056.773333pt;}
.y56_c01339{bottom:1057.533333pt;}
.y5c_c01339{bottom:1058.306667pt;}
.y57_c01339{bottom:1059.066667pt;}
.y5a_c01339{bottom:1059.840000pt;}
.y59_c01339{bottom:1060.613333pt;}
.y54_c01339{bottom:1062.146667pt;}
.y52_c01339{bottom:1069.053333pt;}
.y53_c01339{bottom:1072.133333pt;}
.y50_c01339{bottom:1074.426667pt;}
.y4e_c01339{bottom:1075.200000pt;}
.y51_c01339{bottom:1076.733333pt;}
.y4d_c01339{bottom:1078.266667pt;}
.y4f_c01339{bottom:1080.573333pt;}
.y4a_c01339{bottom:1083.653333pt;}
.y48_c01339{bottom:1087.493333pt;}
.y44_c01339{bottom:1088.253333pt;}
.y43_c01339{bottom:1089.026667pt;}
.y45_c01339{bottom:1089.786667pt;}
.y46_c01339{bottom:1090.560000pt;}
.y47_c01339{bottom:1091.333333pt;}
.y49_c01339{bottom:1092.093333pt;}
.y4b_c01339{bottom:1092.866667pt;}
.y4c_c01339{bottom:1101.306667pt;}
.y41_c01339{bottom:1108.226667pt;}
.y42_c01339{bottom:1109.760000pt;}
.y3e_c01339{bottom:1110.533333pt;}
.y3d_c01339{bottom:1111.293333pt;}
.y3f_c01339{bottom:1113.600000pt;}
.y40_c01339{bottom:1115.906667pt;}
.y3c_c01339{bottom:1123.586667pt;}
.y3b_c01339{bottom:1124.346667pt;}
.y39_c01339{bottom:1126.653333pt;}
.y37_c01339{bottom:1128.186667pt;}
.y36_c01339{bottom:1128.960000pt;}
.y3a_c01339{bottom:1130.493333pt;}
.y38_c01339{bottom:1133.573333pt;}
.y35_c01339{bottom:1141.253333pt;}
.y34_c01339{bottom:1144.320000pt;}
.y32_c01339{bottom:1145.093333pt;}
.y2e_c01339{bottom:1146.626667pt;}
.y31_c01339{bottom:1147.386667pt;}
.y33_c01339{bottom:1150.466667pt;}
.y30_c01339{bottom:1151.226667pt;}
.y2f_c01339{bottom:1152.000000pt;}
.y2c_c01339{bottom:1158.906667pt;}
.y2d_c01339{bottom:1159.680000pt;}
.y2a_c01339{bottom:1160.453333pt;}
.y29_c01339{bottom:1161.986667pt;}
.y27_c01339{bottom:1162.746667pt;}
.y2b_c01339{bottom:1163.520000pt;}
.y25_c01339{bottom:1164.293333pt;}
.y23_c01339{bottom:1165.053333pt;}
.y26_c01339{bottom:1165.826667pt;}
.y28_c01339{bottom:1166.586667pt;}
.y24_c01339{bottom:1167.360000pt;}
.y22_c01339{bottom:1168.893333pt;}
.y21_c01339{bottom:1169.666667pt;}
.y20_c01339{bottom:1170.426667pt;}
.y1d_c01339{bottom:1171.200000pt;}
.y1e_c01339{bottom:1171.973333pt;}
.y1b_c01339{bottom:1172.733333pt;}
.y1f_c01339{bottom:1173.506667pt;}
.y1c_c01339{bottom:1175.040000pt;}
.y19_c01339{bottom:1175.813333pt;}
.y1a_c01339{bottom:1176.573333pt;}
.y15_c01339{bottom:1177.346667pt;}
.y14_c01339{bottom:1178.106667pt;}
.y18_c01339{bottom:1178.880000pt;}
.y13_c01339{bottom:1179.653333pt;}
.y12_c01339{bottom:1180.413333pt;}
.y11_c01339{bottom:1181.186667pt;}
.y16_c01339{bottom:1181.946667pt;}
.yc_c01339{bottom:1182.720000pt;}
.y10_c01339{bottom:1183.493333pt;}
.yb_c01339{bottom:1184.253333pt;}
.y17_c01339{bottom:1185.786667pt;}
.yd_c01339{bottom:1187.333333pt;}
.ye_c01339{bottom:1188.093333pt;}
.yf_c01339{bottom:1188.866667pt;}
.ya_c01339{bottom:1193.466667pt;}
.y9_c01339{bottom:1199.613333pt;}
.y8_c01339{bottom:1201.146667pt;}
.y7_c01339{bottom:1202.693333pt;}
.y4_c01339{bottom:1207.293333pt;}
.y5_c01339{bottom:1208.826667pt;}
.y6_c01339{bottom:1211.133333pt;}
.y3_c01339{bottom:1212.666667pt;}
.y2_c01339{bottom:1221.893333pt;}
.y1_c01339{bottom:1283.333333pt;}
.hb_c01339{height:2.764500pt;}
.h9_c01339{height:4.799479pt;}
.h1d_c01339{height:5.519401pt;}
.h3_c01339{height:8.303099pt;}
.h17_c01339{height:11.038802pt;}
.ha_c01339{height:13.822500pt;}
.h16_c01339{height:16.606198pt;}
.h2_c01339{height:19.341901pt;}
.h1a_c01339{height:22.125599pt;}
.h13_c01339{height:24.861302pt;}
.h19_c01339{height:27.645000pt;}
.h18_c01339{height:30.428698pt;}
.h15_c01339{height:33.164401pt;}
.h14_c01339{height:35.948099pt;}
.h10_c01339{height:38.683802pt;}
.h1b_c01339{height:41.467500pt;}
.he_c01339{height:44.251198pt;}
.h24_c01339{height:46.677266pt;}
.hd_c01339{height:46.986901pt;}
.hf_c01339{height:49.770599pt;}
.h20_c01339{height:50.384531pt;}
.h6_c01339{height:52.506302pt;}
.h12_c01339{height:55.290000pt;}
.h1c_c01339{height:58.073698pt;}
.h8_c01339{height:60.809401pt;}
.h4_c01339{height:63.593099pt;}
.h7_c01339{height:66.328802pt;}
.h11_c01339{height:69.112500pt;}
.h25_c01339{height:69.147500pt;}
.h1e_c01339{height:71.896198pt;}
.h5_c01339{height:74.631901pt;}
.h1f_c01339{height:77.415599pt;}
.hc_c01339{height:80.151302pt;}
.h23_c01339{height:82.935000pt;}
.h21_c01339{height:88.454401pt;}
.h22_c01339{height:118.883099pt;}
.h0_c01339{height:1341.693333pt;}
.h1_c01339{height:1342.000000pt;}
.w0_c01339{width:959.226667pt;}
.w1_c01339{width:959.333333pt;}
.x0_c01339{left:0.000000pt;}
.x111_c01339{left:30.720000pt;}
.x112_c01339{left:39.173333pt;}
.xf4_c01339{left:147.453333pt;}
.xc6_c01339{left:148.986667pt;}
.x7e_c01339{left:151.293333pt;}
.x1f_c01339{left:153.600000pt;}
.xf5_c01339{left:164.346667pt;}
.x7f_c01339{left:168.960000pt;}
.x20_c01339{left:170.493333pt;}
.x107_c01339{left:174.333333pt;}
.xd0_c01339{left:179.706667pt;}
.xd_c01339{left:182.013333pt;}
.x5e_c01339{left:185.853333pt;}
.xe7_c01339{left:187.386667pt;}
.x10c_c01339{left:188.933333pt;}
.xc7_c01339{left:190.466667pt;}
.x3e_c01339{left:192.000000pt;}
.x80_c01339{left:195.840000pt;}
.x81_c01339{left:201.986667pt;}
.xfb_c01339{left:205.053333pt;}
.xe_c01339{left:206.586667pt;}
.x78_c01339{left:208.893333pt;}
.x5f_c01339{left:210.426667pt;}
.x2_c01339{left:213.506667pt;}
.x8f_c01339{left:215.040000pt;}
.xab_c01339{left:217.346667pt;}
.xd8_c01339{left:219.653333pt;}
.x4f_c01339{left:221.186667pt;}
.x32_c01339{left:225.026667pt;}
.x90_c01339{left:226.560000pt;}
.x73_c01339{left:228.866667pt;}
.x3_c01339{left:230.400000pt;}
.x10f_c01339{left:231.933333pt;}
.xde_c01339{left:233.466667pt;}
.xa5_c01339{left:235.013333pt;}
.xf6_c01339{left:238.080000pt;}
.x21_c01339{left:239.613333pt;}
.x101_c01339{left:242.693333pt;}
.x105_c01339{left:244.226667pt;}
.x9f_c01339{left:245.760000pt;}
.xcb_c01339{left:247.293333pt;}
.x22_c01339{left:251.133333pt;}
.xd5_c01339{left:252.666667pt;}
.x55_c01339{left:254.213333pt;}
.x60_c01339{left:255.746667pt;}
.x79_c01339{left:257.280000pt;}
.x113_c01339{left:258.813333pt;}
.x66_c01339{left:260.346667pt;}
.xf_c01339{left:261.893333pt;}
.xa6_c01339{left:264.186667pt;}
.x33_c01339{left:266.493333pt;}
.x102_c01339{left:268.026667pt;}
.xa0_c01339{left:271.106667pt;}
.xd3_c01339{left:272.640000pt;}
.x3f_c01339{left:274.173333pt;}
.x67_c01339{left:278.786667pt;}
.xc8_c01339{left:280.320000pt;}
.x46_c01339{left:284.160000pt;}
.xd6_c01339{left:285.693333pt;}
.x61_c01339{left:288.000000pt;}
.x50_c01339{left:289.533333pt;}
.xe9_c01339{left:292.613333pt;}
.xdf_c01339{left:295.680000pt;}
.x23_c01339{left:299.520000pt;}
.xe2_c01339{left:301.053333pt;}
.x82_c01339{left:303.360000pt;}
.xf0_c01339{left:304.893333pt;}
.xa1_c01339{left:307.973333pt;}
.xcc_c01339{left:309.506667pt;}
.xac_c01339{left:311.813333pt;}
.xfc_c01339{left:314.106667pt;}
.x10_c01339{left:315.653333pt;}
.x40_c01339{left:319.493333pt;}
.x7a_c01339{left:321.786667pt;}
.x68_c01339{left:325.626667pt;}
.x34_c01339{left:328.706667pt;}
.x62_c01339{left:330.240000pt;}
.x74_c01339{left:334.080000pt;}
.x10a_c01339{left:336.386667pt;}
.xff_c01339{left:338.693333pt;}
.xd9_c01339{left:340.226667pt;}
.xa7_c01339{left:342.533333pt;}
.x41_c01339{left:344.826667pt;}
.x47_c01339{left:346.373333pt;}
.xa2_c01339{left:348.666667pt;}
.x75_c01339{left:350.213333pt;}
.x96_c01339{left:353.280000pt;}
.xfd_c01339{left:354.813333pt;}
.xea_c01339{left:356.346667pt;}
.x51_c01339{left:357.893333pt;}
.x108_c01339{left:359.426667pt;}
.x4_c01339{left:360.960000pt;}
.x11_c01339{left:362.493333pt;}
.xe3_c01339{left:364.026667pt;}
.x114_c01339{left:365.573333pt;}
.x52_c01339{left:367.106667pt;}
.x24_c01339{left:368.640000pt;}
.x103_c01339{left:370.946667pt;}
.xeb_c01339{left:373.253333pt;}
.x48_c01339{left:374.786667pt;}
.x35_c01339{left:377.853333pt;}
.xb7_c01339{left:379.386667pt;}
.x89_c01339{left:380.933333pt;}
.x12_c01339{left:382.466667pt;}
.xa_c01339{left:386.306667pt;}
.xa3_c01339{left:387.840000pt;}
.xe8_c01339{left:389.373333pt;}
.xec_c01339{left:392.453333pt;}
.x83_c01339{left:393.986667pt;}
.xe6_c01339{left:395.520000pt;}
.xfe_c01339{left:398.586667pt;}
.x25_c01339{left:400.893333pt;}
.xed_c01339{left:402.426667pt;}
.x49_c01339{left:406.266667pt;}
.x69_c01339{left:409.346667pt;}
.x13_c01339{left:410.880000pt;}
.xad_c01339{left:412.413333pt;}
.x5_c01339{left:414.720000pt;}
.x36_c01339{left:417.026667pt;}
.x8a_c01339{left:420.866667pt;}
.xe0_c01339{left:423.173333pt;}
.xda_c01339{left:424.706667pt;}
.x26_c01339{left:426.240000pt;}
.x109_c01339{left:428.546667pt;}
.xc9_c01339{left:433.146667pt;}
.x106_c01339{left:436.226667pt;}
.x56_c01339{left:438.533333pt;}
.xcd_c01339{left:440.066667pt;}
.xae_c01339{left:441.600000pt;}
.x6a_c01339{left:443.906667pt;}
.x84_c01339{left:446.973333pt;}
.x98_c01339{left:453.893333pt;}
.x6_c01339{left:455.426667pt;}
.xdb_c01339{left:460.800000pt;}
.x104_c01339{left:463.866667pt;}
.xd7_c01339{left:465.413333pt;}
.xa8_c01339{left:468.480000pt;}
.x14_c01339{left:470.013333pt;}
.xdc_c01339{left:472.320000pt;}
.xd4_c01339{left:473.853333pt;}
.xaf_c01339{left:475.386667pt;}
.xca_c01339{left:477.693333pt;}
.xbe_c01339{left:480.000000pt;}
.x85_c01339{left:481.533333pt;}
.x4a_c01339{left:483.066667pt;}
.x15_c01339{left:484.613333pt;}
.x37_c01339{left:486.146667pt;}
.xf7_c01339{left:491.520000pt;}
.x27_c01339{left:496.133333pt;}
.xce_c01339{left:497.666667pt;}
.xe5_c01339{left:499.973333pt;}
.x6b_c01339{left:501.506667pt;}
.xb_c01339{left:503.040000pt;}
.x16_c01339{left:506.106667pt;}
.xf1_c01339{left:508.413333pt;}
.x28_c01339{left:510.720000pt;}
.xc_c01339{left:514.560000pt;}
.x63_c01339{left:517.626667pt;}
.x29_c01339{left:520.706667pt;}
.x7_c01339{left:522.240000pt;}
.xa9_c01339{left:526.080000pt;}
.x17_c01339{left:528.386667pt;}
.x97_c01339{left:530.693333pt;}
.x57_c01339{left:532.226667pt;}
.x100_c01339{left:533.760000pt;}
.x4b_c01339{left:535.293333pt;}
.xc2_c01339{left:536.826667pt;}
.xb3_c01339{left:539.906667pt;}
.x76_c01339{left:541.440000pt;}
.x8_c01339{left:543.746667pt;}
.xcf_c01339{left:545.280000pt;}
.x53_c01339{left:546.813333pt;}
.x99_c01339{left:548.346667pt;}
.x6c_c01339{left:549.893333pt;}
.x42_c01339{left:552.186667pt;}
.xb0_c01339{left:555.266667pt;}
.x58_c01339{left:556.800000pt;}
.xbf_c01339{left:559.106667pt;}
.xbb_c01339{left:560.640000pt;}
.x91_c01339{left:562.946667pt;}
.xc3_c01339{left:564.480000pt;}
.x2a_c01339{left:567.546667pt;}
.x18_c01339{left:570.626667pt;}
.x59_c01339{left:572.160000pt;}
.xf8_c01339{left:573.693333pt;}
.xf3_c01339{left:575.226667pt;}
.x4c_c01339{left:579.840000pt;}
.x8b_c01339{left:583.680000pt;}
.x43_c01339{left:585.213333pt;}
.x110_c01339{left:587.520000pt;}
.x38_c01339{left:591.360000pt;}
.x2b_c01339{left:593.666667pt;}
.x77_c01339{left:595.200000pt;}
.xb4_c01339{left:596.733333pt;}
.xc0_c01339{left:599.040000pt;}
.xf9_c01339{left:600.573333pt;}
.xb1_c01339{left:602.106667pt;}
.x6d_c01339{left:605.186667pt;}
.xbc_c01339{left:606.720000pt;}
.x7b_c01339{left:608.253333pt;}
.x39_c01339{left:609.786667pt;}
.x92_c01339{left:612.866667pt;}
.x2c_c01339{left:614.400000pt;}
.xe4_c01339{left:616.706667pt;}
.xef_c01339{left:619.773333pt;}
.x9a_c01339{left:622.853333pt;}
.x19_c01339{left:624.386667pt;}
.x2d_c01339{left:625.920000pt;}
.x44_c01339{left:628.986667pt;}
.x86_c01339{left:631.293333pt;}
.xb9_c01339{left:633.600000pt;}
.xbd_c01339{left:635.906667pt;}
.x45_c01339{left:638.213333pt;}
.xd1_c01339{left:641.280000pt;}
.x9b_c01339{left:642.813333pt;}
.x93_c01339{left:644.346667pt;}
.xc1_c01339{left:646.653333pt;}
.x5a_c01339{left:648.186667pt;}
.x8c_c01339{left:649.733333pt;}
.x1a_c01339{left:653.573333pt;}
.x3a_c01339{left:655.866667pt;}
.x2e_c01339{left:658.173333pt;}
.xc4_c01339{left:660.480000pt;}
.xfa_c01339{left:662.013333pt;}
.x4d_c01339{left:663.546667pt;}
.xf2_c01339{left:665.853333pt;}
.x3b_c01339{left:667.386667pt;}
.x6e_c01339{left:670.466667pt;}
.x94_c01339{left:673.533333pt;}
.x1_c01339{left:675.066667pt;}
.x8d_c01339{left:676.613333pt;}
.xa4_c01339{left:678.146667pt;}
.x10d_c01339{left:679.680000pt;}
.x54_c01339{left:681.213333pt;}
.x7c_c01339{left:683.520000pt;}
.xd2_c01339{left:685.053333pt;}
.x3c_c01339{left:686.586667pt;}
.xe1_c01339{left:688.893333pt;}
.xaa_c01339{left:691.973333pt;}
.x64_c01339{left:694.266667pt;}
.x2f_c01339{left:695.813333pt;}
.x1b_c01339{left:698.106667pt;}
.x87_c01339{left:699.653333pt;}
.x4e_c01339{left:701.186667pt;}
.x3d_c01339{left:705.786667pt;}
.x6f_c01339{left:708.093333pt;}
.x9c_c01339{left:710.400000pt;}
.x1c_c01339{left:713.466667pt;}
.x95_c01339{left:720.386667pt;}
.x30_c01339{left:721.920000pt;}
.x70_c01339{left:724.226667pt;}
.x1d_c01339{left:726.533333pt;}
.xb5_c01339{left:728.826667pt;}
.xdd_c01339{left:731.906667pt;}
.x9_c01339{left:733.440000pt;}
.xb8_c01339{left:737.280000pt;}
.xee_c01339{left:739.586667pt;}
.x31_c01339{left:741.120000pt;}
.xb6_c01339{left:746.493333pt;}
.x71_c01339{left:751.106667pt;}
.xc5_c01339{left:752.640000pt;}
.xba_c01339{left:754.946667pt;}
.x72_c01339{left:757.253333pt;}
.x5b_c01339{left:761.093333pt;}
.x10b_c01339{left:762.626667pt;}
.x9d_c01339{left:764.160000pt;}
.x88_c01339{left:765.693333pt;}
.x1e_c01339{left:768.773333pt;}
.x10e_c01339{left:771.840000pt;}
.x9e_c01339{left:773.373333pt;}
.x65_c01339{left:778.746667pt;}
.x5c_c01339{left:780.293333pt;}
.xb2_c01339{left:782.586667pt;}
.x7d_c01339{left:784.893333pt;}
.x8e_c01339{left:793.346667pt;}
.x5d_c01339{left:794.880000pt;}
.x115_c01339{left:829.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_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_b29797cbc06700e5425d001c.woff2')format("woff");}.ff1_c01340{font-family:ff1_c01340;line-height:1.109863;font-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_c01340{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mdd_c01340{transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);}
.m4b_c01340{transform:matrix(0.098325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098325,0.000000,0.000000,0.250000,0,0);}
.m88_c01340{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mb4_c01340{transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127725,0.000000,0.000000,0.250000,0,0);}
.mf_c01340{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.m64_c01340{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m10_c01340{transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140025,0.000000,0.000000,0.250000,0,0);}
.mdb_c01340{transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);}
.m11_c01340{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m75_c01340{transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);}
.mb5_c01340{transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143525,0.000000,0.000000,0.250000,0,0);}
.m1_c01340{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma7_c01340{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);}
.m7f_c01340{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);}
.mdc_c01340{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);}
.m33_c01340{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m9d_c01340{transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153825,0.000000,0.000000,0.250000,0,0);}
.mc1_c01340{transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154600,0.000000,0.000000,0.250000,0,0);}
.md5_c01340{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.mc5_c01340{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);}
.m54_c01340{transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159250,0.000000,0.000000,0.250000,0,0);}
.md1_c01340{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.mc2_c01340{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.mb3_c01340{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.maf_c01340{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.ma1_c01340{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.mba_c01340{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.m7d_c01340{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m46_c01340{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);}
.mc7_c01340{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.m78_c01340{transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);}
.mda_c01340{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.mc4_c01340{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);}
.m53_c01340{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.mb1_c01340{transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183475,0.000000,0.000000,0.250000,0,0);}
.m81_c01340{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.ma0_c01340{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m99_c01340{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.md_c01340{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.ma3_c01340{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m3a_c01340{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.mb6_c01340{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);}
.mbb_c01340{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);}
.mb9_c01340{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m94_c01340{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m7e_c01340{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);}
.m87_c01340{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);}
.mb8_c01340{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);}
.m95_c01340{transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195725,0.000000,0.000000,0.250000,0,0);}
.m96_c01340{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);}
.ma4_c01340{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);}
.m69_c01340{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);}
.mce_c01340{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m43_c01340{transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206775,0.000000,0.000000,0.250000,0,0);}
.m7a_c01340{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);}
.m9f_c01340{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);}
.mcd_c01340{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m97_c01340{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.md0_c01340{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);}
.m9a_c01340{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.ma8_c01340{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01340{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);}
.mcf_c01340{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);}
.m25_c01340{transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214075,0.000000,0.000000,0.250000,0,0);}
.mac_c01340{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m2f_c01340{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);}
.mc3_c01340{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_c01340{transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);}
.mb2_c01340{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.m82_c01340{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);}
.mcc_c01340{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m79_c01340{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);}
.md2_c01340{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);}
.m19_c01340{transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);}
.mb7_c01340{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);}
.m89_c01340{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);}
.m45_c01340{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);}
.md6_c01340{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.m70_c01340{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);}
.md7_c01340{transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);}
.ma_c01340{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);}
.m38_c01340{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m55_c01340{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.md4_c01340{transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229050,0.000000,0.000000,0.250000,0,0);}
.m2e_c01340{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);}
.m2d_c01340{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);}
.mc8_c01340{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);}
.m91_c01340{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);}
.m56_c01340{transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234150,0.000000,0.000000,0.250000,0,0);}
.mbf_c01340{transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234300,0.000000,0.000000,0.250000,0,0);}
.m66_c01340{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);}
.m86_c01340{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);}
.m13_c01340{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m65_c01340{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);}
.m77_c01340{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.m83_c01340{transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236500,0.000000,0.000000,0.250000,0,0);}
.m44_c01340{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);}
.m37_c01340{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);}
.m90_c01340{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m29_c01340{transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238450,0.000000,0.000000,0.250000,0,0);}
.ma6_c01340{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.m8e_c01340{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.m40_c01340{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);}
.m84_c01340{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);}
.m3d_c01340{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.m27_c01340{transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240850,0.000000,0.000000,0.250000,0,0);}
.m7b_c01340{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);}
.mbe_c01340{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.m30_c01340{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);}
.maa_c01340{transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242175,0.000000,0.000000,0.250000,0,0);}
.m35_c01340{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);}
.m98_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);}
.ma9_c01340{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m41_c01340{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);}
.mab_c01340{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.mbc_c01340{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.mbd_c01340{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);}
.m8f_c01340{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);}
.mc6_c01340{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m9b_c01340{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.m57_c01340{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);}
.ma5_c01340{transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249425,0.000000,0.000000,0.250000,0,0);}
.m93_c01340{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);}
.m7_c01340{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m1d_c01340{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m3_c01340{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);}
.m39_c01340{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m22_c01340{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);}
.m47_c01340{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);}
.m5a_c01340{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);}
.m36_c01340{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);}
.m52_c01340{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01340{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m61_c01340{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01340{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);}
.m6f_c01340{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mc_c01340{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);}
.mb_c01340{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);}
.m6_c01340{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01340{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);}
.m0_c01340{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01340{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m48_c01340{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);}
.m5b_c01340{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c01340{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);}
.m67_c01340{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);}
.m24_c01340{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c01340{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01340{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);}
.m8d_c01340{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m28_c01340{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m21_c01340{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);}
.m9_c01340{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01340{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m18_c01340{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01340{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01340{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m60_c01340{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01340{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01340{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m34_c01340{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);}
.m58_c01340{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m31_c01340{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m20_c01340{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.me_c01340{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c01340{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);}
.m23_c01340{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);}
.m3b_c01340{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01340{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01340{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);}
.m50_c01340{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01340{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4_c01340{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01340{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01340{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01340{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);}
.ma2_c01340{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m85_c01340{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01340{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);}
.md9_c01340{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m14_c01340{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m71_c01340{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc0_c01340{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01340{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.md8_c01340{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m6b_c01340{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m42_c01340{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01340{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);}
.m26_c01340{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m8b_c01340{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c01340{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mcb_c01340{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01340{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);}
.m15_c01340{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.md3_c01340{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m62_c01340{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01340{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01340{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01340{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m74_c01340{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m92_c01340{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01340{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m80_c01340{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.mad_c01340{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);}
.m72_c01340{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m9e_c01340{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01340{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m59_c01340{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m16_c01340{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mca_c01340{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m49_c01340{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m76_c01340{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m9c_c01340{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m51_c01340{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m8a_c01340{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mb0_c01340{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.mde_c01340{transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.952500,0.000000,0.000000,0.250000,0,0);}
.m32_c01340{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01340{transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.037500,0.000000,0.000000,0.250000,0,0);}
.m2_c01340{transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.055000,0.000000,0.000000,0.250000,0,0);}
.m73_c01340{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m63_c01340{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c01340{vertical-align:0.000000px;}
.v1_c01340{vertical-align:3.420000px;}
.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:-28.193880px;}
.ws1_c01340{word-spacing:-17.361360px;}
.ws2_c01340{word-spacing:0.000000px;}
._0_c01340{width:7.548609px;}
.fc0_c01340{color:transparent;}
.fs18_c01340{font-size:3.456000px;}
.fs17_c01340{font-size:6.000000px;}
.fs1_c01340{font-size:6.900000px;}
.fs0_c01340{font-size:10.380000px;}
.fs4_c01340{font-size:13.800000px;}
.fs1c_c01340{font-size:17.280000px;}
.fs2_c01340{font-size:20.760000px;}
.fs3_c01340{font-size:24.180000px;}
.fs19_c01340{font-size:27.660000px;}
.fs1a_c01340{font-size:31.080000px;}
.fs12_c01340{font-size:34.560000px;}
.fs11_c01340{font-size:38.040000px;}
.fs14_c01340{font-size:41.460000px;}
.fsc_c01340{font-size:44.940000px;}
.fs15_c01340{font-size:48.360000px;}
.fsf_c01340{font-size:51.840000px;}
.fs8_c01340{font-size:55.320000px;}
.fs13_c01340{font-size:58.740000px;}
.fsa_c01340{font-size:62.220000px;}
.fs7_c01340{font-size:65.640000px;}
.fs6_c01340{font-size:69.120000px;}
.fs9_c01340{font-size:72.600000px;}
.fs16_c01340{font-size:76.020000px;}
.fs10_c01340{font-size:79.500000px;}
.fs1b_c01340{font-size:82.920000px;}
.fs5_c01340{font-size:86.400000px;}
.fsb_c01340{font-size:93.300000px;}
.fsd_c01340{font-size:100.200000px;}
.fse_c01340{font-size:107.160000px;}
.fs1d_c01340{font-size:110.580000px;}
.y0_c01340{bottom:0.000000px;}
.y145_c01340{bottom:525.315000px;}
.y143_c01340{bottom:629.850000px;}
.y141_c01340{bottom:630.720000px;}
.y142_c01340{bottom:631.590000px;}
.y144_c01340{bottom:632.445000px;}
.y140_c01340{bottom:682.560000px;}
.y13f_c01340{bottom:684.285000px;}
.y139_c01340{bottom:700.710000px;}
.y13b_c01340{bottom:701.565000px;}
.y13c_c01340{bottom:703.290000px;}
.y138_c01340{bottom:704.160000px;}
.y13a_c01340{bottom:705.030000px;}
.y13e_c01340{bottom:706.755000px;}
.y13d_c01340{bottom:710.205000px;}
.y133_c01340{bottom:723.165000px;}
.y136_c01340{bottom:725.760000px;}
.y135_c01340{bottom:730.950000px;}
.y134_c01340{bottom:731.805000px;}
.y4_c01340{bottom:732.675000px;}
.y137_c01340{bottom:733.530000px;}
.y12c_c01340{bottom:741.315000px;}
.y12d_c01340{bottom:743.910000px;}
.y12f_c01340{bottom:744.765000px;}
.y131_c01340{bottom:747.360000px;}
.y12e_c01340{bottom:749.085000px;}
.y130_c01340{bottom:752.550000px;}
.y132_c01340{bottom:753.405000px;}
.y122_c01340{bottom:761.190000px;}
.y124_c01340{bottom:763.770000px;}
.y128_c01340{bottom:765.510000px;}
.y126_c01340{bottom:766.365000px;}
.y12a_c01340{bottom:767.235000px;}
.y123_c01340{bottom:768.090000px;}
.y125_c01340{bottom:769.830000px;}
.y127_c01340{bottom:770.685000px;}
.y129_c01340{bottom:771.555000px;}
.y12b_c01340{bottom:774.150000px;}
.y119_c01340{bottom:781.920000px;}
.y11a_c01340{bottom:784.515000px;}
.y11d_c01340{bottom:787.110000px;}
.y11b_c01340{bottom:788.835000px;}
.y11c_c01340{bottom:789.690000px;}
.y11e_c01340{bottom:790.560000px;}
.y14a_c01340{bottom:791.430000px;}
.y11f_c01340{bottom:792.285000px;}
.y120_c01340{bottom:793.155000px;}
.y121_c01340{bottom:794.010000px;}
.y14b_c01340{bottom:800.070000px;}
.y110_c01340{bottom:802.650000px;}
.y111_c01340{bottom:805.245000px;}
.y113_c01340{bottom:806.115000px;}
.y115_c01340{bottom:806.970000px;}
.y116_c01340{bottom:807.840000px;}
.y112_c01340{bottom:808.710000px;}
.y117_c01340{bottom:809.565000px;}
.y114_c01340{bottom:810.435000px;}
.y118_c01340{bottom:814.755000px;}
.y107_c01340{bottom:821.670000px;}
.y105_c01340{bottom:823.395000px;}
.y108_c01340{bottom:825.990000px;}
.y106_c01340{bottom:826.845000px;}
.y10c_c01340{bottom:828.570000px;}
.y10d_c01340{bottom:829.440000px;}
.y109_c01340{bottom:830.310000px;}
.y10f_c01340{bottom:831.165000px;}
.y10a_c01340{bottom:832.035000px;}
.y10b_c01340{bottom:832.890000px;}
.y10e_c01340{bottom:836.355000px;}
.yf9_c01340{bottom:843.270000px;}
.yfc_c01340{bottom:846.720000px;}
.yfd_c01340{bottom:848.445000px;}
.yfa_c01340{bottom:849.315000px;}
.yfb_c01340{bottom:850.170000px;}
.y100_c01340{bottom:851.040000px;}
.yff_c01340{bottom:853.635000px;}
.y101_c01340{bottom:854.490000px;}
.y102_c01340{bottom:855.360000px;}
.y104_c01340{bottom:857.085000px;}
.y103_c01340{bottom:857.955000px;}
.yfe_c01340{bottom:858.810000px;}
.yf1_c01340{bottom:862.275000px;}
.yf0_c01340{bottom:865.725000px;}
.yf3_c01340{bottom:868.320000px;}
.yf2_c01340{bottom:869.190000px;}
.yf5_c01340{bottom:870.045000px;}
.yf7_c01340{bottom:870.915000px;}
.yf8_c01340{bottom:871.770000px;}
.yf4_c01340{bottom:873.510000px;}
.yf6_c01340{bottom:875.235000px;}
.ye8_c01340{bottom:884.730000px;}
.yeb_c01340{bottom:885.600000px;}
.yea_c01340{bottom:887.325000px;}
.yee_c01340{bottom:889.920000px;}
.ye9_c01340{bottom:890.790000px;}
.yed_c01340{bottom:893.370000px;}
.yec_c01340{bottom:895.110000px;}
.yef_c01340{bottom:896.835000px;}
.ydc_c01340{bottom:903.750000px;}
.yde_c01340{bottom:906.330000px;}
.ydd_c01340{bottom:908.925000px;}
.ye0_c01340{bottom:909.795000px;}
.ydf_c01340{bottom:910.650000px;}
.ye2_c01340{bottom:911.520000px;}
.ye1_c01340{bottom:913.245000px;}
.ye3_c01340{bottom:914.115000px;}
.ye4_c01340{bottom:915.840000px;}
.ye5_c01340{bottom:916.710000px;}
.ye6_c01340{bottom:917.565000px;}
.ye7_c01340{bottom:920.160000px;}
.y149_c01340{bottom:922.755000px;}
.yd5_c01340{bottom:923.610000px;}
.yd6_c01340{bottom:924.480000px;}
.yd3_c01340{bottom:927.075000px;}
.yd4_c01340{bottom:927.930000px;}
.yda_c01340{bottom:929.670000px;}
.yd7_c01340{bottom:930.525000px;}
.yd8_c01340{bottom:932.250000px;}
.yd9_c01340{bottom:934.845000px;}
.ydb_c01340{bottom:938.310000px;}
.yc8_c01340{bottom:946.950000px;}
.ycc_c01340{bottom:947.805000px;}
.yc9_c01340{bottom:948.675000px;}
.ycd_c01340{bottom:950.400000px;}
.yca_c01340{bottom:951.270000px;}
.ycb_c01340{bottom:952.125000px;}
.ycf_c01340{bottom:953.850000px;}
.yce_c01340{bottom:955.590000px;}
.yd0_c01340{bottom:956.445000px;}
.yd1_c01340{bottom:958.170000px;}
.yd2_c01340{bottom:960.765000px;}
.ybf_c01340{bottom:963.360000px;}
.yc2_c01340{bottom:967.680000px;}
.yc1_c01340{bottom:968.550000px;}
.yc0_c01340{bottom:970.275000px;}
.yc5_c01340{bottom:972.000000px;}
.yc3_c01340{bottom:973.725000px;}
.yc6_c01340{bottom:974.595000px;}
.yc4_c01340{bottom:975.450000px;}
.yc7_c01340{bottom:982.365000px;}
.yb6_c01340{bottom:985.830000px;}
.yb7_c01340{bottom:988.410000px;}
.yb9_c01340{bottom:989.280000px;}
.yba_c01340{bottom:991.875000px;}
.yb8_c01340{bottom:992.730000px;}
.ybb_c01340{bottom:995.325000px;}
.ybc_c01340{bottom:997.050000px;}
.ybe_c01340{bottom:998.790000px;}
.ybd_c01340{bottom:999.645000px;}
.yab_c01340{bottom:1005.690000px;}
.yaf_c01340{bottom:1007.430000px;}
.yac_c01340{bottom:1010.010000px;}
.yad_c01340{bottom:1010.880000px;}
.yae_c01340{bottom:1011.750000px;}
.yb2_c01340{bottom:1012.605000px;}
.yb3_c01340{bottom:1015.200000px;}
.yb0_c01340{bottom:1016.070000px;}
.yb1_c01340{bottom:1016.925000px;}
.yb4_c01340{bottom:1017.795000px;}
.yb5_c01340{bottom:1018.650000px;}
.ya5_c01340{bottom:1027.290000px;}
.ya4_c01340{bottom:1028.160000px;}
.ya6_c01340{bottom:1031.610000px;}
.ya7_c01340{bottom:1032.480000px;}
.ya9_c01340{bottom:1033.350000px;}
.ya8_c01340{bottom:1034.205000px;}
.yaa_c01340{bottom:1036.800000px;}
.y99_c01340{bottom:1044.570000px;}
.y98_c01340{bottom:1049.760000px;}
.y9d_c01340{bottom:1050.630000px;}
.y9a_c01340{bottom:1051.485000px;}
.y9b_c01340{bottom:1052.355000px;}
.ya0_c01340{bottom:1053.210000px;}
.y9c_c01340{bottom:1054.080000px;}
.y97_c01340{bottom:1055.805000px;}
.y9e_c01340{bottom:1056.675000px;}
.y9f_c01340{bottom:1057.530000px;}
.ya1_c01340{bottom:1058.400000px;}
.ya2_c01340{bottom:1059.270000px;}
.ya3_c01340{bottom:1060.125000px;}
.y8f_c01340{bottom:1070.490000px;}
.y90_c01340{bottom:1071.360000px;}
.y91_c01340{bottom:1072.230000px;}
.y92_c01340{bottom:1073.085000px;}
.y93_c01340{bottom:1074.810000px;}
.y94_c01340{bottom:1080.000000px;}
.y95_c01340{bottom:1080.870000px;}
.y96_c01340{bottom:1084.320000px;}
.y89_c01340{bottom:1089.510000px;}
.y8a_c01340{bottom:1092.090000px;}
.y8b_c01340{bottom:1092.960000px;}
.y8c_c01340{bottom:1097.280000px;}
.y8d_c01340{bottom:1099.005000px;}
.y8e_c01340{bottom:1099.875000px;}
.y81_c01340{bottom:1105.050000px;}
.y82_c01340{bottom:1109.370000px;}
.y80_c01340{bottom:1111.965000px;}
.y83_c01340{bottom:1115.430000px;}
.y84_c01340{bottom:1116.285000px;}
.y86_c01340{bottom:1117.155000px;}
.y85_c01340{bottom:1118.010000px;}
.y87_c01340{bottom:1119.750000px;}
.y88_c01340{bottom:1120.605000px;}
.y77_c01340{bottom:1126.650000px;}
.y78_c01340{bottom:1129.245000px;}
.y76_c01340{bottom:1130.115000px;}
.y79_c01340{bottom:1135.290000px;}
.y7a_c01340{bottom:1136.160000px;}
.y7b_c01340{bottom:1137.885000px;}
.y7d_c01340{bottom:1138.755000px;}
.y7c_c01340{bottom:1139.610000px;}
.y7e_c01340{bottom:1141.350000px;}
.y7f_c01340{bottom:1142.205000px;}
.y6c_c01340{bottom:1149.990000px;}
.y69_c01340{bottom:1150.845000px;}
.y6a_c01340{bottom:1151.715000px;}
.y70_c01340{bottom:1152.570000px;}
.y6b_c01340{bottom:1153.440000px;}
.y6d_c01340{bottom:1154.310000px;}
.y71_c01340{bottom:1155.165000px;}
.y6e_c01340{bottom:1156.035000px;}
.y6f_c01340{bottom:1156.890000px;}
.y72_c01340{bottom:1157.760000px;}
.y73_c01340{bottom:1159.485000px;}
.y74_c01340{bottom:1160.355000px;}
.y68_c01340{bottom:1161.210000px;}
.y75_c01340{bottom:1162.080000px;}
.y60_c01340{bottom:1167.270000px;}
.y63_c01340{bottom:1171.590000px;}
.y61_c01340{bottom:1172.445000px;}
.y62_c01340{bottom:1173.315000px;}
.y5e_c01340{bottom:1174.170000px;}
.y5f_c01340{bottom:1175.040000px;}
.y64_c01340{bottom:1176.765000px;}
.y65_c01340{bottom:1180.230000px;}
.y66_c01340{bottom:1181.955000px;}
.y67_c01340{bottom:1185.405000px;}
.y54_c01340{bottom:1186.275000px;}
.y56_c01340{bottom:1187.130000px;}
.y57_c01340{bottom:1190.595000px;}
.y55_c01340{bottom:1191.450000px;}
.y5a_c01340{bottom:1194.045000px;}
.y58_c01340{bottom:1197.510000px;}
.y59_c01340{bottom:1198.365000px;}
.y5b_c01340{bottom:1199.235000px;}
.y5c_c01340{bottom:1200.960000px;}
.y5d_c01340{bottom:1202.685000px;}
.y4a_c01340{bottom:1209.600000px;}
.y4b_c01340{bottom:1210.470000px;}
.y4c_c01340{bottom:1211.325000px;}
.y48_c01340{bottom:1212.195000px;}
.y4d_c01340{bottom:1213.050000px;}
.y49_c01340{bottom:1213.920000px;}
.y4e_c01340{bottom:1215.645000px;}
.y51_c01340{bottom:1218.240000px;}
.y4f_c01340{bottom:1219.110000px;}
.y50_c01340{bottom:1219.965000px;}
.y52_c01340{bottom:1223.430000px;}
.y53_c01340{bottom:1225.155000px;}
.y40_c01340{bottom:1231.200000px;}
.y3d_c01340{bottom:1232.070000px;}
.y3e_c01340{bottom:1234.650000px;}
.y3f_c01340{bottom:1235.520000px;}
.y41_c01340{bottom:1238.115000px;}
.y43_c01340{bottom:1238.970000px;}
.y42_c01340{bottom:1239.840000px;}
.y47_c01340{bottom:1240.710000px;}
.y44_c01340{bottom:1241.565000px;}
.y45_c01340{bottom:1242.435000px;}
.y46_c01340{bottom:1243.290000px;}
.y36_c01340{bottom:1251.075000px;}
.y39_c01340{bottom:1251.930000px;}
.y3a_c01340{bottom:1253.670000px;}
.y37_c01340{bottom:1254.525000px;}
.y38_c01340{bottom:1256.250000px;}
.y3c_c01340{bottom:1258.845000px;}
.y3b_c01340{bottom:1259.715000px;}
.y2c_c01340{bottom:1268.355000px;}
.y2d_c01340{bottom:1274.400000px;}
.y31_c01340{bottom:1275.270000px;}
.y2e_c01340{bottom:1276.125000px;}
.y2f_c01340{bottom:1277.850000px;}
.y33_c01340{bottom:1279.590000px;}
.y30_c01340{bottom:1280.445000px;}
.y32_c01340{bottom:1283.040000px;}
.y34_c01340{bottom:1283.910000px;}
.y35_c01340{bottom:1287.360000px;}
.y27_c01340{bottom:1291.680000px;}
.y25_c01340{bottom:1292.550000px;}
.y24_c01340{bottom:1295.130000px;}
.y26_c01340{bottom:1296.870000px;}
.y28_c01340{bottom:1298.595000px;}
.y29_c01340{bottom:1300.320000px;}
.y2a_c01340{bottom:1301.190000px;}
.y2b_c01340{bottom:1303.770000px;}
.y1a_c01340{bottom:1311.555000px;}
.y1c_c01340{bottom:1313.280000px;}
.y19_c01340{bottom:1314.150000px;}
.y18_c01340{bottom:1315.005000px;}
.y1b_c01340{bottom:1316.730000px;}
.y1d_c01340{bottom:1317.600000px;}
.y1e_c01340{bottom:1318.470000px;}
.y20_c01340{bottom:1319.325000px;}
.y1f_c01340{bottom:1320.195000px;}
.y21_c01340{bottom:1321.050000px;}
.y22_c01340{bottom:1322.790000px;}
.y23_c01340{bottom:1323.645000px;}
.yf_c01340{bottom:1334.010000px;}
.yd_c01340{bottom:1334.880000px;}
.y10_c01340{bottom:1335.750000px;}
.ye_c01340{bottom:1336.605000px;}
.y14_c01340{bottom:1337.475000px;}
.y13_c01340{bottom:1338.330000px;}
.y11_c01340{bottom:1339.200000px;}
.y12_c01340{bottom:1340.070000px;}
.y15_c01340{bottom:1343.520000px;}
.y16_c01340{bottom:1344.390000px;}
.y17_c01340{bottom:1345.245000px;}
.y7_c01340{bottom:1357.350000px;}
.y8_c01340{bottom:1364.250000px;}
.y9_c01340{bottom:1365.120000px;}
.ya_c01340{bottom:1366.845000px;}
.yb_c01340{bottom:1367.715000px;}
.yc_c01340{bottom:1368.570000px;}
.y5_c01340{bottom:1384.995000px;}
.y6_c01340{bottom:1390.170000px;}
.y3_c01340{bottom:1402.275000px;}
.y146_c01340{bottom:1423.875000px;}
.y148_c01340{bottom:1426.470000px;}
.y147_c01340{bottom:1429.920000px;}
.y1_c01340{bottom:1448.070000px;}
.y2_c01340{bottom:1451.520000px;}
.h1a_c01340{height:3.110063px;}
.h19_c01340{height:5.399414px;}
.h3_c01340{height:6.209326px;}
.h2_c01340{height:9.340986px;}
.h6_c01340{height:12.418652px;}
.h1d_c01340{height:15.550313px;}
.h4_c01340{height:18.681973px;}
.h5_c01340{height:21.759639px;}
.h1e_c01340{height:24.891299px;}
.h1b_c01340{height:27.968965px;}
.h14_c01340{height:31.100625px;}
.h13_c01340{height:34.232285px;}
.h16_c01340{height:37.309951px;}
.he_c01340{height:40.441611px;}
.h17_c01340{height:43.519277px;}
.h11_c01340{height:46.650937px;}
.ha_c01340{height:49.782598px;}
.h15_c01340{height:52.860264px;}
.hc_c01340{height:55.991924px;}
.h9_c01340{height:59.069590px;}
.h8_c01340{height:62.201250px;}
.hb_c01340{height:65.332910px;}
.h18_c01340{height:68.410576px;}
.h12_c01340{height:71.542236px;}
.h1c_c01340{height:74.619902px;}
.h7_c01340{height:77.751563px;}
.hd_c01340{height:83.960889px;}
.hf_c01340{height:90.170215px;}
.h10_c01340{height:96.433535px;}
.h1f_c01340{height:99.511201px;}
.h1_c01340{height:1513.500000px;}
.h0_c01340{height:1513.725000px;}
.w0_c01340{width:1083.450000px;}
.w1_c01340{width:1083.750000px;}
.x0_c01340{left:0.000000px;}
.x5_c01340{left:148.605000px;}
.x58_c01340{left:169.350000px;}
.x1_c01340{left:181.440000px;}
.x59_c01340{left:189.210000px;}
.x52_c01340{left:191.805000px;}
.x2_c01340{left:199.590000px;}
.x5a_c01340{left:209.955000px;}
.x87_c01340{left:216.870000px;}
.x6c_c01340{left:220.320000px;}
.x62_c01340{left:224.640000px;}
.x74_c01340{left:226.365000px;}
.xa5_c01340{left:228.090000px;}
.x75_c01340{left:231.555000px;}
.x8_c01340{left:233.280000px;}
.x38_c01340{left:235.005000px;}
.x5b_c01340{left:253.155000px;}
.x88_c01340{left:259.200000px;}
.xd9_c01340{left:265.245000px;}
.xc4_c01340{left:266.970000px;}
.x39_c01340{left:268.710000px;}
.x2f_c01340{left:270.435000px;}
.xa6_c01340{left:272.160000px;}
.xca_c01340{left:275.610000px;}
.xcf_c01340{left:277.350000px;}
.xad_c01340{left:281.670000px;}
.x1b_c01340{left:284.250000px;}
.x63_c01340{left:285.990000px;}
.xe_c01340{left:287.715000px;}
.x96_c01340{left:290.310000px;}
.xcc_c01340{left:292.035000px;}
.x1c_c01340{left:294.630000px;}
.x7c_c01340{left:300.675000px;}
.x5c_c01340{left:304.125000px;}
.x53_c01340{left:305.850000px;}
.x83_c01340{left:308.445000px;}
.x89_c01340{left:314.490000px;}
.x3f_c01340{left:316.230000px;}
.x97_c01340{left:318.810000px;}
.x3a_c01340{left:323.130000px;}
.x9d_c01340{left:324.870000px;}
.xd3_c01340{left:326.595000px;}
.xc5_c01340{left:336.090000px;}
.x1d_c01340{left:337.830000px;}
.x3b_c01340{left:341.280000px;}
.x98_c01340{left:349.050000px;}
.x84_c01340{left:350.790000px;}
.xf_c01340{left:352.515000px;}
.x26_c01340{left:355.965000px;}
.xda_c01340{left:359.430000px;}
.xbb_c01340{left:361.155000px;}
.x27_c01340{left:364.605000px;}
.x40_c01340{left:370.650000px;}
.x90_c01340{left:374.115000px;}
.x7d_c01340{left:376.710000px;}
.x8a_c01340{left:378.435000px;}
.x76_c01340{left:380.160000px;}
.xcb_c01340{left:383.610000px;}
.x9_c01340{left:385.350000px;}
.x28_c01340{left:390.525000px;}
.xb5_c01340{left:394.845000px;}
.x1e_c01340{left:397.440000px;}
.x6d_c01340{left:400.035000px;}
.x30_c01340{left:408.675000px;}
.x91_c01340{left:410.400000px;}
.x99_c01340{left:413.850000px;}
.xbc_c01340{left:415.590000px;}
.x6_c01340{left:418.170000px;}
.x10_c01340{left:422.490000px;}
.x41_c01340{left:425.955000px;}
.x31_c01340{left:427.680000px;}
.xc6_c01340{left:429.405000px;}
.xb3_c01340{left:431.130000px;}
.xae_c01340{left:436.320000px;}
.x49_c01340{left:438.045000px;}
.xcd_c01340{left:440.640000px;}
.xa7_c01340{left:443.235000px;}
.x8b_c01340{left:445.830000px;}
.x1f_c01340{left:450.150000px;}
.xaf_c01340{left:451.875000px;}
.x77_c01340{left:454.470000px;}
.x3_c01340{left:456.195000px;}
.x5d_c01340{left:460.515000px;}
.xb4_c01340{left:463.110000px;}
.x4a_c01340{left:466.560000px;}
.xb6_c01340{left:468.285000px;}
.x4_c01340{left:477.795000px;}
.xd4_c01340{left:479.520000px;}
.xa_c01340{left:482.970000px;}
.x11_c01340{left:488.160000px;}
.xd0_c01340{left:491.610000px;}
.xa1_c01340{left:493.350000px;}
.x3c_c01340{left:495.930000px;}
.xce_c01340{left:497.670000px;}
.xa8_c01340{left:500.250000px;}
.x7e_c01340{left:503.715000px;}
.x6e_c01340{left:507.165000px;}
.x54_c01340{left:510.630000px;}
.x5e_c01340{left:512.355000px;}
.x29_c01340{left:514.950000px;}
.x92_c01340{left:516.675000px;}
.x64_c01340{left:518.400000px;}
.xbd_c01340{left:521.850000px;}
.xb_c01340{left:523.590000px;}
.xdb_c01340{left:526.170000px;}
.x78_c01340{left:527.910000px;}
.xc7_c01340{left:531.360000px;}
.x9a_c01340{left:533.085000px;}
.x8c_c01340{left:540.000000px;}
.x12_c01340{left:544.320000px;}
.x65_c01340{left:549.510000px;}
.x9e_c01340{left:553.830000px;}
.x32_c01340{left:558.150000px;}
.x20_c01340{left:561.600000px;}
.x13_c01340{left:563.325000px;}
.x4b_c01340{left:565.920000px;}
.x6f_c01340{left:568.515000px;}
.xb1_c01340{left:570.240000px;}
.x14_c01340{left:577.155000px;}
.xc_c01340{left:583.200000px;}
.x4c_c01340{left:585.795000px;}
.xb7_c01340{left:588.390000px;}
.xdc_c01340{left:590.115000px;}
.x21_c01340{left:592.710000px;}
.x66_c01340{left:596.160000px;}
.x2a_c01340{left:598.755000px;}
.xa2_c01340{left:602.205000px;}
.x4d_c01340{left:604.800000px;}
.x55_c01340{left:607.395000px;}
.x79_c01340{left:611.715000px;}
.xbe_c01340{left:613.440000px;}
.x3d_c01340{left:615.165000px;}
.xb8_c01340{left:618.630000px;}
.x33_c01340{left:621.210000px;}
.x8d_c01340{left:622.950000px;}
.x70_c01340{left:626.400000px;}
.xd5_c01340{left:630.720000px;}
.x67_c01340{left:633.315000px;}
.xd7_c01340{left:635.040000px;}
.x5f_c01340{left:637.635000px;}
.x8e_c01340{left:639.360000px;}
.x15_c01340{left:642.810000px;}
.x93_c01340{left:646.275000px;}
.xd1_c01340{left:650.595000px;}
.xa9_c01340{left:652.320000px;}
.x7f_c01340{left:655.770000px;}
.x56_c01340{left:658.365000px;}
.x8f_c01340{left:661.830000px;}
.xb9_c01340{left:664.410000px;}
.xb2_c01340{left:667.005000px;}
.x2b_c01340{left:670.470000px;}
.x9b_c01340{left:673.050000px;}
.x42_c01340{left:674.790000px;}
.x16_c01340{left:677.370000px;}
.x34_c01340{left:684.285000px;}
.x4e_c01340{left:686.010000px;}
.xd_c01340{left:690.330000px;}
.x43_c01340{left:692.925000px;}
.x94_c01340{left:695.520000px;}
.x60_c01340{left:698.115000px;}
.xc8_c01340{left:700.710000px;}
.x68_c01340{left:703.290000px;}
.x22_c01340{left:705.885000px;}
.x71_c01340{left:709.350000px;}
.x44_c01340{left:711.930000px;}
.xd6_c01340{left:715.395000px;}
.x7_c01340{left:719.715525px;}
.x85_c01340{left:724.035000px;}
.x23_c01340{left:727.485000px;}
.xbf_c01340{left:730.080000px;}
.xd8_c01340{left:731.805000px;}
.x3e_c01340{left:733.530000px;}
.x35_c01340{left:735.270000px;}
.x2c_c01340{left:739.590000px;}
.x95_c01340{left:743.040000px;}
.x2d_c01340{left:747.360000px;}
.x4f_c01340{left:755.130000px;}
.x36_c01340{left:757.725000px;}
.x7a_c01340{left:759.450000px;}
.x45_c01340{left:762.915000px;}
.xba_c01340{left:765.510000px;}
.xdd_c01340{left:770.685000px;}
.x72_c01340{left:773.280000px;}
.xc9_c01340{left:775.005000px;}
.x24_c01340{left:777.600000px;}
.x69_c01340{left:783.645000px;}
.xaa_c01340{left:785.370000px;}
.x80_c01340{left:787.965000px;}
.x9f_c01340{left:789.690000px;}
.x17_c01340{left:791.430000px;}
.x7b_c01340{left:794.880000px;}
.xc0_c01340{left:796.605000px;}
.xab_c01340{left:799.200000px;}
.x9c_c01340{left:801.795000px;}
.x18_c01340{left:803.520000px;}
.xb0_c01340{left:806.970000px;}
.x46_c01340{left:810.435000px;}
.x61_c01340{left:813.030000px;}
.xa3_c01340{left:817.350000px;}
.x57_c01340{left:819.930000px;}
.x81_c01340{left:825.990000px;}
.x25_c01340{left:831.165000px;}
.x73_c01340{left:833.760000px;}
.x82_c01340{left:837.210000px;}
.x47_c01340{left:838.950000px;}
.xac_c01340{left:842.400000px;}
.xd2_c01340{left:844.125000px;}
.x2e_c01340{left:846.720000px;}
.x48_c01340{left:855.360000px;}
.x6a_c01340{left:857.085000px;}
.xa0_c01340{left:859.680000px;}
.x37_c01340{left:862.275000px;}
.x50_c01340{left:864.000000px;}
.x86_c01340{left:870.045000px;}
.x19_c01340{left:872.640000px;}
.x51_c01340{left:874.365000px;}
.xc1_c01340{left:882.150000px;}
.xa4_c01340{left:887.325000px;}
.x1a_c01340{left:894.240000px;}
.x6b_c01340{left:897.690000px;}
.xe2_c01340{left:899.430000px;}
.xc2_c01340{left:906.330000px;}
.xc3_c01340{left:910.650000px;}
.xde_c01340{left:919.290000px;}
.xe5_c01340{left:968.550000px;}
.xe6_c01340{left:972.000000px;}
.xdf_c01340{left:1011.750000px;}
.xe0_c01340{left:1023.840000px;}
.xe3_c01340{left:1028.160000px;}
.xe4_c01340{left:1036.800000px;}
.xe1_c01340{left:1059.270000px;}
@media print{
.v0_c01340{vertical-align:0.000000pt;}
.v1_c01340{vertical-align:3.040000pt;}
.ls0_c01340{letter-spacing:0.000000pt;}
.ws0_c01340{word-spacing:-25.061227pt;}
.ws1_c01340{word-spacing:-15.432320pt;}
.ws2_c01340{word-spacing:0.000000pt;}
._0_c01340{width:6.709875pt;}
.fs18_c01340{font-size:3.072000pt;}
.fs17_c01340{font-size:5.333333pt;}
.fs1_c01340{font-size:6.133333pt;}
.fs0_c01340{font-size:9.226667pt;}
.fs4_c01340{font-size:12.266667pt;}
.fs1c_c01340{font-size:15.360000pt;}
.fs2_c01340{font-size:18.453333pt;}
.fs3_c01340{font-size:21.493333pt;}
.fs19_c01340{font-size:24.586667pt;}
.fs1a_c01340{font-size:27.626667pt;}
.fs12_c01340{font-size:30.720000pt;}
.fs11_c01340{font-size:33.813333pt;}
.fs14_c01340{font-size:36.853333pt;}
.fsc_c01340{font-size:39.946667pt;}
.fs15_c01340{font-size:42.986667pt;}
.fsf_c01340{font-size:46.080000pt;}
.fs8_c01340{font-size:49.173333pt;}
.fs13_c01340{font-size:52.213333pt;}
.fsa_c01340{font-size:55.306667pt;}
.fs7_c01340{font-size:58.346667pt;}
.fs6_c01340{font-size:61.440000pt;}
.fs9_c01340{font-size:64.533333pt;}
.fs16_c01340{font-size:67.573333pt;}
.fs10_c01340{font-size:70.666667pt;}
.fs1b_c01340{font-size:73.706667pt;}
.fs5_c01340{font-size:76.800000pt;}
.fsb_c01340{font-size:82.933333pt;}
.fsd_c01340{font-size:89.066667pt;}
.fse_c01340{font-size:95.253333pt;}
.fs1d_c01340{font-size:98.293333pt;}
.y0_c01340{bottom:0.000000pt;}
.y145_c01340{bottom:466.946667pt;}
.y143_c01340{bottom:559.866667pt;}
.y141_c01340{bottom:560.640000pt;}
.y142_c01340{bottom:561.413333pt;}
.y144_c01340{bottom:562.173333pt;}
.y140_c01340{bottom:606.720000pt;}
.y13f_c01340{bottom:608.253333pt;}
.y139_c01340{bottom:622.853333pt;}
.y13b_c01340{bottom:623.613333pt;}
.y13c_c01340{bottom:625.146667pt;}
.y138_c01340{bottom:625.920000pt;}
.y13a_c01340{bottom:626.693333pt;}
.y13e_c01340{bottom:628.226667pt;}
.y13d_c01340{bottom:631.293333pt;}
.y133_c01340{bottom:642.813333pt;}
.y136_c01340{bottom:645.120000pt;}
.y135_c01340{bottom:649.733333pt;}
.y134_c01340{bottom:650.493333pt;}
.y4_c01340{bottom:651.266667pt;}
.y137_c01340{bottom:652.026667pt;}
.y12c_c01340{bottom:658.946667pt;}
.y12d_c01340{bottom:661.253333pt;}
.y12f_c01340{bottom:662.013333pt;}
.y131_c01340{bottom:664.320000pt;}
.y12e_c01340{bottom:665.853333pt;}
.y130_c01340{bottom:668.933333pt;}
.y132_c01340{bottom:669.693333pt;}
.y122_c01340{bottom:676.613333pt;}
.y124_c01340{bottom:678.906667pt;}
.y128_c01340{bottom:680.453333pt;}
.y126_c01340{bottom:681.213333pt;}
.y12a_c01340{bottom:681.986667pt;}
.y123_c01340{bottom:682.746667pt;}
.y125_c01340{bottom:684.293333pt;}
.y127_c01340{bottom:685.053333pt;}
.y129_c01340{bottom:685.826667pt;}
.y12b_c01340{bottom:688.133333pt;}
.y119_c01340{bottom:695.040000pt;}
.y11a_c01340{bottom:697.346667pt;}
.y11d_c01340{bottom:699.653333pt;}
.y11b_c01340{bottom:701.186667pt;}
.y11c_c01340{bottom:701.946667pt;}
.y11e_c01340{bottom:702.720000pt;}
.y14a_c01340{bottom:703.493333pt;}
.y11f_c01340{bottom:704.253333pt;}
.y120_c01340{bottom:705.026667pt;}
.y121_c01340{bottom:705.786667pt;}
.y14b_c01340{bottom:711.173333pt;}
.y110_c01340{bottom:713.466667pt;}
.y111_c01340{bottom:715.773333pt;}
.y113_c01340{bottom:716.546667pt;}
.y115_c01340{bottom:717.306667pt;}
.y116_c01340{bottom:718.080000pt;}
.y112_c01340{bottom:718.853333pt;}
.y117_c01340{bottom:719.613333pt;}
.y114_c01340{bottom:720.386667pt;}
.y118_c01340{bottom:724.226667pt;}
.y107_c01340{bottom:730.373333pt;}
.y105_c01340{bottom:731.906667pt;}
.y108_c01340{bottom:734.213333pt;}
.y106_c01340{bottom:734.973333pt;}
.y10c_c01340{bottom:736.506667pt;}
.y10d_c01340{bottom:737.280000pt;}
.y109_c01340{bottom:738.053333pt;}
.y10f_c01340{bottom:738.813333pt;}
.y10a_c01340{bottom:739.586667pt;}
.y10b_c01340{bottom:740.346667pt;}
.y10e_c01340{bottom:743.426667pt;}
.yf9_c01340{bottom:749.573333pt;}
.yfc_c01340{bottom:752.640000pt;}
.yfd_c01340{bottom:754.173333pt;}
.yfa_c01340{bottom:754.946667pt;}
.yfb_c01340{bottom:755.706667pt;}
.y100_c01340{bottom:756.480000pt;}
.yff_c01340{bottom:758.786667pt;}
.y101_c01340{bottom:759.546667pt;}
.y102_c01340{bottom:760.320000pt;}
.y104_c01340{bottom:761.853333pt;}
.y103_c01340{bottom:762.626667pt;}
.yfe_c01340{bottom:763.386667pt;}
.yf1_c01340{bottom:766.466667pt;}
.yf0_c01340{bottom:769.533333pt;}
.yf3_c01340{bottom:771.840000pt;}
.yf2_c01340{bottom:772.613333pt;}
.yf5_c01340{bottom:773.373333pt;}
.yf7_c01340{bottom:774.146667pt;}
.yf8_c01340{bottom:774.906667pt;}
.yf4_c01340{bottom:776.453333pt;}
.yf6_c01340{bottom:777.986667pt;}
.ye8_c01340{bottom:786.426667pt;}
.yeb_c01340{bottom:787.200000pt;}
.yea_c01340{bottom:788.733333pt;}
.yee_c01340{bottom:791.040000pt;}
.ye9_c01340{bottom:791.813333pt;}
.yed_c01340{bottom:794.106667pt;}
.yec_c01340{bottom:795.653333pt;}
.yef_c01340{bottom:797.186667pt;}
.ydc_c01340{bottom:803.333333pt;}
.yde_c01340{bottom:805.626667pt;}
.ydd_c01340{bottom:807.933333pt;}
.ye0_c01340{bottom:808.706667pt;}
.ydf_c01340{bottom:809.466667pt;}
.ye2_c01340{bottom:810.240000pt;}
.ye1_c01340{bottom:811.773333pt;}
.ye3_c01340{bottom:812.546667pt;}
.ye4_c01340{bottom:814.080000pt;}
.ye5_c01340{bottom:814.853333pt;}
.ye6_c01340{bottom:815.613333pt;}
.ye7_c01340{bottom:817.920000pt;}
.y149_c01340{bottom:820.226667pt;}
.yd5_c01340{bottom:820.986667pt;}
.yd6_c01340{bottom:821.760000pt;}
.yd3_c01340{bottom:824.066667pt;}
.yd4_c01340{bottom:824.826667pt;}
.yda_c01340{bottom:826.373333pt;}
.yd7_c01340{bottom:827.133333pt;}
.yd8_c01340{bottom:828.666667pt;}
.yd9_c01340{bottom:830.973333pt;}
.ydb_c01340{bottom:834.053333pt;}
.yc8_c01340{bottom:841.733333pt;}
.ycc_c01340{bottom:842.493333pt;}
.yc9_c01340{bottom:843.266667pt;}
.ycd_c01340{bottom:844.800000pt;}
.yca_c01340{bottom:845.573333pt;}
.ycb_c01340{bottom:846.333333pt;}
.ycf_c01340{bottom:847.866667pt;}
.yce_c01340{bottom:849.413333pt;}
.yd0_c01340{bottom:850.173333pt;}
.yd1_c01340{bottom:851.706667pt;}
.yd2_c01340{bottom:854.013333pt;}
.ybf_c01340{bottom:856.320000pt;}
.yc2_c01340{bottom:860.160000pt;}
.yc1_c01340{bottom:860.933333pt;}
.yc0_c01340{bottom:862.466667pt;}
.yc5_c01340{bottom:864.000000pt;}
.yc3_c01340{bottom:865.533333pt;}
.yc6_c01340{bottom:866.306667pt;}
.yc4_c01340{bottom:867.066667pt;}
.yc7_c01340{bottom:873.213333pt;}
.yb6_c01340{bottom:876.293333pt;}
.yb7_c01340{bottom:878.586667pt;}
.yb9_c01340{bottom:879.360000pt;}
.yba_c01340{bottom:881.666667pt;}
.yb8_c01340{bottom:882.426667pt;}
.ybb_c01340{bottom:884.733333pt;}
.ybc_c01340{bottom:886.266667pt;}
.ybe_c01340{bottom:887.813333pt;}
.ybd_c01340{bottom:888.573333pt;}
.yab_c01340{bottom:893.946667pt;}
.yaf_c01340{bottom:895.493333pt;}
.yac_c01340{bottom:897.786667pt;}
.yad_c01340{bottom:898.560000pt;}
.yae_c01340{bottom:899.333333pt;}
.yb2_c01340{bottom:900.093333pt;}
.yb3_c01340{bottom:902.400000pt;}
.yb0_c01340{bottom:903.173333pt;}
.yb1_c01340{bottom:903.933333pt;}
.yb4_c01340{bottom:904.706667pt;}
.yb5_c01340{bottom:905.466667pt;}
.ya5_c01340{bottom:913.146667pt;}
.ya4_c01340{bottom:913.920000pt;}
.ya6_c01340{bottom:916.986667pt;}
.ya7_c01340{bottom:917.760000pt;}
.ya9_c01340{bottom:918.533333pt;}
.ya8_c01340{bottom:919.293333pt;}
.yaa_c01340{bottom:921.600000pt;}
.y99_c01340{bottom:928.506667pt;}
.y98_c01340{bottom:933.120000pt;}
.y9d_c01340{bottom:933.893333pt;}
.y9a_c01340{bottom:934.653333pt;}
.y9b_c01340{bottom:935.426667pt;}
.ya0_c01340{bottom:936.186667pt;}
.y9c_c01340{bottom:936.960000pt;}
.y97_c01340{bottom:938.493333pt;}
.y9e_c01340{bottom:939.266667pt;}
.y9f_c01340{bottom:940.026667pt;}
.ya1_c01340{bottom:940.800000pt;}
.ya2_c01340{bottom:941.573333pt;}
.ya3_c01340{bottom:942.333333pt;}
.y8f_c01340{bottom:951.546667pt;}
.y90_c01340{bottom:952.320000pt;}
.y91_c01340{bottom:953.093333pt;}
.y92_c01340{bottom:953.853333pt;}
.y93_c01340{bottom:955.386667pt;}
.y94_c01340{bottom:960.000000pt;}
.y95_c01340{bottom:960.773333pt;}
.y96_c01340{bottom:963.840000pt;}
.y89_c01340{bottom:968.453333pt;}
.y8a_c01340{bottom:970.746667pt;}
.y8b_c01340{bottom:971.520000pt;}
.y8c_c01340{bottom:975.360000pt;}
.y8d_c01340{bottom:976.893333pt;}
.y8e_c01340{bottom:977.666667pt;}
.y81_c01340{bottom:982.266667pt;}
.y82_c01340{bottom:986.106667pt;}
.y80_c01340{bottom:988.413333pt;}
.y83_c01340{bottom:991.493333pt;}
.y84_c01340{bottom:992.253333pt;}
.y86_c01340{bottom:993.026667pt;}
.y85_c01340{bottom:993.786667pt;}
.y87_c01340{bottom:995.333333pt;}
.y88_c01340{bottom:996.093333pt;}
.y77_c01340{bottom:1001.466667pt;}
.y78_c01340{bottom:1003.773333pt;}
.y76_c01340{bottom:1004.546667pt;}
.y79_c01340{bottom:1009.146667pt;}
.y7a_c01340{bottom:1009.920000pt;}
.y7b_c01340{bottom:1011.453333pt;}
.y7d_c01340{bottom:1012.226667pt;}
.y7c_c01340{bottom:1012.986667pt;}
.y7e_c01340{bottom:1014.533333pt;}
.y7f_c01340{bottom:1015.293333pt;}
.y6c_c01340{bottom:1022.213333pt;}
.y69_c01340{bottom:1022.973333pt;}
.y6a_c01340{bottom:1023.746667pt;}
.y70_c01340{bottom:1024.506667pt;}
.y6b_c01340{bottom:1025.280000pt;}
.y6d_c01340{bottom:1026.053333pt;}
.y71_c01340{bottom:1026.813333pt;}
.y6e_c01340{bottom:1027.586667pt;}
.y6f_c01340{bottom:1028.346667pt;}
.y72_c01340{bottom:1029.120000pt;}
.y73_c01340{bottom:1030.653333pt;}
.y74_c01340{bottom:1031.426667pt;}
.y68_c01340{bottom:1032.186667pt;}
.y75_c01340{bottom:1032.960000pt;}
.y60_c01340{bottom:1037.573333pt;}
.y63_c01340{bottom:1041.413333pt;}
.y61_c01340{bottom:1042.173333pt;}
.y62_c01340{bottom:1042.946667pt;}
.y5e_c01340{bottom:1043.706667pt;}
.y5f_c01340{bottom:1044.480000pt;}
.y64_c01340{bottom:1046.013333pt;}
.y65_c01340{bottom:1049.093333pt;}
.y66_c01340{bottom:1050.626667pt;}
.y67_c01340{bottom:1053.693333pt;}
.y54_c01340{bottom:1054.466667pt;}
.y56_c01340{bottom:1055.226667pt;}
.y57_c01340{bottom:1058.306667pt;}
.y55_c01340{bottom:1059.066667pt;}
.y5a_c01340{bottom:1061.373333pt;}
.y58_c01340{bottom:1064.453333pt;}
.y59_c01340{bottom:1065.213333pt;}
.y5b_c01340{bottom:1065.986667pt;}
.y5c_c01340{bottom:1067.520000pt;}
.y5d_c01340{bottom:1069.053333pt;}
.y4a_c01340{bottom:1075.200000pt;}
.y4b_c01340{bottom:1075.973333pt;}
.y4c_c01340{bottom:1076.733333pt;}
.y48_c01340{bottom:1077.506667pt;}
.y4d_c01340{bottom:1078.266667pt;}
.y49_c01340{bottom:1079.040000pt;}
.y4e_c01340{bottom:1080.573333pt;}
.y51_c01340{bottom:1082.880000pt;}
.y4f_c01340{bottom:1083.653333pt;}
.y50_c01340{bottom:1084.413333pt;}
.y52_c01340{bottom:1087.493333pt;}
.y53_c01340{bottom:1089.026667pt;}
.y40_c01340{bottom:1094.400000pt;}
.y3d_c01340{bottom:1095.173333pt;}
.y3e_c01340{bottom:1097.466667pt;}
.y3f_c01340{bottom:1098.240000pt;}
.y41_c01340{bottom:1100.546667pt;}
.y43_c01340{bottom:1101.306667pt;}
.y42_c01340{bottom:1102.080000pt;}
.y47_c01340{bottom:1102.853333pt;}
.y44_c01340{bottom:1103.613333pt;}
.y45_c01340{bottom:1104.386667pt;}
.y46_c01340{bottom:1105.146667pt;}
.y36_c01340{bottom:1112.066667pt;}
.y39_c01340{bottom:1112.826667pt;}
.y3a_c01340{bottom:1114.373333pt;}
.y37_c01340{bottom:1115.133333pt;}
.y38_c01340{bottom:1116.666667pt;}
.y3c_c01340{bottom:1118.973333pt;}
.y3b_c01340{bottom:1119.746667pt;}
.y2c_c01340{bottom:1127.426667pt;}
.y2d_c01340{bottom:1132.800000pt;}
.y31_c01340{bottom:1133.573333pt;}
.y2e_c01340{bottom:1134.333333pt;}
.y2f_c01340{bottom:1135.866667pt;}
.y33_c01340{bottom:1137.413333pt;}
.y30_c01340{bottom:1138.173333pt;}
.y32_c01340{bottom:1140.480000pt;}
.y34_c01340{bottom:1141.253333pt;}
.y35_c01340{bottom:1144.320000pt;}
.y27_c01340{bottom:1148.160000pt;}
.y25_c01340{bottom:1148.933333pt;}
.y24_c01340{bottom:1151.226667pt;}
.y26_c01340{bottom:1152.773333pt;}
.y28_c01340{bottom:1154.306667pt;}
.y29_c01340{bottom:1155.840000pt;}
.y2a_c01340{bottom:1156.613333pt;}
.y2b_c01340{bottom:1158.906667pt;}
.y1a_c01340{bottom:1165.826667pt;}
.y1c_c01340{bottom:1167.360000pt;}
.y19_c01340{bottom:1168.133333pt;}
.y18_c01340{bottom:1168.893333pt;}
.y1b_c01340{bottom:1170.426667pt;}
.y1d_c01340{bottom:1171.200000pt;}
.y1e_c01340{bottom:1171.973333pt;}
.y20_c01340{bottom:1172.733333pt;}
.y1f_c01340{bottom:1173.506667pt;}
.y21_c01340{bottom:1174.266667pt;}
.y22_c01340{bottom:1175.813333pt;}
.y23_c01340{bottom:1176.573333pt;}
.yf_c01340{bottom:1185.786667pt;}
.yd_c01340{bottom:1186.560000pt;}
.y10_c01340{bottom:1187.333333pt;}
.ye_c01340{bottom:1188.093333pt;}
.y14_c01340{bottom:1188.866667pt;}
.y13_c01340{bottom:1189.626667pt;}
.y11_c01340{bottom:1190.400000pt;}
.y12_c01340{bottom:1191.173333pt;}
.y15_c01340{bottom:1194.240000pt;}
.y16_c01340{bottom:1195.013333pt;}
.y17_c01340{bottom:1195.773333pt;}
.y7_c01340{bottom:1206.533333pt;}
.y8_c01340{bottom:1212.666667pt;}
.y9_c01340{bottom:1213.440000pt;}
.ya_c01340{bottom:1214.973333pt;}
.yb_c01340{bottom:1215.746667pt;}
.yc_c01340{bottom:1216.506667pt;}
.y5_c01340{bottom:1231.106667pt;}
.y6_c01340{bottom:1235.706667pt;}
.y3_c01340{bottom:1246.466667pt;}
.y146_c01340{bottom:1265.666667pt;}
.y148_c01340{bottom:1267.973333pt;}
.y147_c01340{bottom:1271.040000pt;}
.y1_c01340{bottom:1287.173333pt;}
.y2_c01340{bottom:1290.240000pt;}
.h1a_c01340{height:2.764500pt;}
.h19_c01340{height:4.799479pt;}
.h3_c01340{height:5.519401pt;}
.h2_c01340{height:8.303099pt;}
.h6_c01340{height:11.038802pt;}
.h1d_c01340{height:13.822500pt;}
.h4_c01340{height:16.606198pt;}
.h5_c01340{height:19.341901pt;}
.h1e_c01340{height:22.125599pt;}
.h1b_c01340{height:24.861302pt;}
.h14_c01340{height:27.645000pt;}
.h13_c01340{height:30.428698pt;}
.h16_c01340{height:33.164401pt;}
.he_c01340{height:35.948099pt;}
.h17_c01340{height:38.683802pt;}
.h11_c01340{height:41.467500pt;}
.ha_c01340{height:44.251198pt;}
.h15_c01340{height:46.986901pt;}
.hc_c01340{height:49.770599pt;}
.h9_c01340{height:52.506302pt;}
.h8_c01340{height:55.290000pt;}
.hb_c01340{height:58.073698pt;}
.h18_c01340{height:60.809401pt;}
.h12_c01340{height:63.593099pt;}
.h1c_c01340{height:66.328802pt;}
.h7_c01340{height:69.112500pt;}
.hd_c01340{height:74.631901pt;}
.hf_c01340{height:80.151302pt;}
.h10_c01340{height:85.718698pt;}
.h1f_c01340{height:88.454401pt;}
.h1_c01340{height:1345.333333pt;}
.h0_c01340{height:1345.533333pt;}
.w0_c01340{width:963.066667pt;}
.w1_c01340{width:963.333333pt;}
.x0_c01340{left:0.000000pt;}
.x5_c01340{left:132.093333pt;}
.x58_c01340{left:150.533333pt;}
.x1_c01340{left:161.280000pt;}
.x59_c01340{left:168.186667pt;}
.x52_c01340{left:170.493333pt;}
.x2_c01340{left:177.413333pt;}
.x5a_c01340{left:186.626667pt;}
.x87_c01340{left:192.773333pt;}
.x6c_c01340{left:195.840000pt;}
.x62_c01340{left:199.680000pt;}
.x74_c01340{left:201.213333pt;}
.xa5_c01340{left:202.746667pt;}
.x75_c01340{left:205.826667pt;}
.x8_c01340{left:207.360000pt;}
.x38_c01340{left:208.893333pt;}
.x5b_c01340{left:225.026667pt;}
.x88_c01340{left:230.400000pt;}
.xd9_c01340{left:235.773333pt;}
.xc4_c01340{left:237.306667pt;}
.x39_c01340{left:238.853333pt;}
.x2f_c01340{left:240.386667pt;}
.xa6_c01340{left:241.920000pt;}
.xca_c01340{left:244.986667pt;}
.xcf_c01340{left:246.533333pt;}
.xad_c01340{left:250.373333pt;}
.x1b_c01340{left:252.666667pt;}
.x63_c01340{left:254.213333pt;}
.xe_c01340{left:255.746667pt;}
.x96_c01340{left:258.053333pt;}
.xcc_c01340{left:259.586667pt;}
.x1c_c01340{left:261.893333pt;}
.x7c_c01340{left:267.266667pt;}
.x5c_c01340{left:270.333333pt;}
.x53_c01340{left:271.866667pt;}
.x83_c01340{left:274.173333pt;}
.x89_c01340{left:279.546667pt;}
.x3f_c01340{left:281.093333pt;}
.x97_c01340{left:283.386667pt;}
.x3a_c01340{left:287.226667pt;}
.x9d_c01340{left:288.773333pt;}
.xd3_c01340{left:290.306667pt;}
.xc5_c01340{left:298.746667pt;}
.x1d_c01340{left:300.293333pt;}
.x3b_c01340{left:303.360000pt;}
.x98_c01340{left:310.266667pt;}
.x84_c01340{left:311.813333pt;}
.xf_c01340{left:313.346667pt;}
.x26_c01340{left:316.413333pt;}
.xda_c01340{left:319.493333pt;}
.xbb_c01340{left:321.026667pt;}
.x27_c01340{left:324.093333pt;}
.x40_c01340{left:329.466667pt;}
.x90_c01340{left:332.546667pt;}
.x7d_c01340{left:334.853333pt;}
.x8a_c01340{left:336.386667pt;}
.x76_c01340{left:337.920000pt;}
.xcb_c01340{left:340.986667pt;}
.x9_c01340{left:342.533333pt;}
.x28_c01340{left:347.133333pt;}
.xb5_c01340{left:350.973333pt;}
.x1e_c01340{left:353.280000pt;}
.x6d_c01340{left:355.586667pt;}
.x30_c01340{left:363.266667pt;}
.x91_c01340{left:364.800000pt;}
.x99_c01340{left:367.866667pt;}
.xbc_c01340{left:369.413333pt;}
.x6_c01340{left:371.706667pt;}
.x10_c01340{left:375.546667pt;}
.x41_c01340{left:378.626667pt;}
.x31_c01340{left:380.160000pt;}
.xc6_c01340{left:381.693333pt;}
.xb3_c01340{left:383.226667pt;}
.xae_c01340{left:387.840000pt;}
.x49_c01340{left:389.373333pt;}
.xcd_c01340{left:391.680000pt;}
.xa7_c01340{left:393.986667pt;}
.x8b_c01340{left:396.293333pt;}
.x1f_c01340{left:400.133333pt;}
.xaf_c01340{left:401.666667pt;}
.x77_c01340{left:403.973333pt;}
.x3_c01340{left:405.506667pt;}
.x5d_c01340{left:409.346667pt;}
.xb4_c01340{left:411.653333pt;}
.x4a_c01340{left:414.720000pt;}
.xb6_c01340{left:416.253333pt;}
.x4_c01340{left:424.706667pt;}
.xd4_c01340{left:426.240000pt;}
.xa_c01340{left:429.306667pt;}
.x11_c01340{left:433.920000pt;}
.xd0_c01340{left:436.986667pt;}
.xa1_c01340{left:438.533333pt;}
.x3c_c01340{left:440.826667pt;}
.xce_c01340{left:442.373333pt;}
.xa8_c01340{left:444.666667pt;}
.x7e_c01340{left:447.746667pt;}
.x6e_c01340{left:450.813333pt;}
.x54_c01340{left:453.893333pt;}
.x5e_c01340{left:455.426667pt;}
.x29_c01340{left:457.733333pt;}
.x92_c01340{left:459.266667pt;}
.x64_c01340{left:460.800000pt;}
.xbd_c01340{left:463.866667pt;}
.xb_c01340{left:465.413333pt;}
.xdb_c01340{left:467.706667pt;}
.x78_c01340{left:469.253333pt;}
.xc7_c01340{left:472.320000pt;}
.x9a_c01340{left:473.853333pt;}
.x8c_c01340{left:480.000000pt;}
.x12_c01340{left:483.840000pt;}
.x65_c01340{left:488.453333pt;}
.x9e_c01340{left:492.293333pt;}
.x32_c01340{left:496.133333pt;}
.x20_c01340{left:499.200000pt;}
.x13_c01340{left:500.733333pt;}
.x4b_c01340{left:503.040000pt;}
.x6f_c01340{left:505.346667pt;}
.xb1_c01340{left:506.880000pt;}
.x14_c01340{left:513.026667pt;}
.xc_c01340{left:518.400000pt;}
.x4c_c01340{left:520.706667pt;}
.xb7_c01340{left:523.013333pt;}
.xdc_c01340{left:524.546667pt;}
.x21_c01340{left:526.853333pt;}
.x66_c01340{left:529.920000pt;}
.x2a_c01340{left:532.226667pt;}
.xa2_c01340{left:535.293333pt;}
.x4d_c01340{left:537.600000pt;}
.x55_c01340{left:539.906667pt;}
.x79_c01340{left:543.746667pt;}
.xbe_c01340{left:545.280000pt;}
.x3d_c01340{left:546.813333pt;}
.xb8_c01340{left:549.893333pt;}
.x33_c01340{left:552.186667pt;}
.x8d_c01340{left:553.733333pt;}
.x70_c01340{left:556.800000pt;}
.xd5_c01340{left:560.640000pt;}
.x67_c01340{left:562.946667pt;}
.xd7_c01340{left:564.480000pt;}
.x5f_c01340{left:566.786667pt;}
.x8e_c01340{left:568.320000pt;}
.x15_c01340{left:571.386667pt;}
.x93_c01340{left:574.466667pt;}
.xd1_c01340{left:578.306667pt;}
.xa9_c01340{left:579.840000pt;}
.x7f_c01340{left:582.906667pt;}
.x56_c01340{left:585.213333pt;}
.x8f_c01340{left:588.293333pt;}
.xb9_c01340{left:590.586667pt;}
.xb2_c01340{left:592.893333pt;}
.x2b_c01340{left:595.973333pt;}
.x9b_c01340{left:598.266667pt;}
.x42_c01340{left:599.813333pt;}
.x16_c01340{left:602.106667pt;}
.x34_c01340{left:608.253333pt;}
.x4e_c01340{left:609.786667pt;}
.xd_c01340{left:613.626667pt;}
.x43_c01340{left:615.933333pt;}
.x94_c01340{left:618.240000pt;}
.x60_c01340{left:620.546667pt;}
.xc8_c01340{left:622.853333pt;}
.x68_c01340{left:625.146667pt;}
.x22_c01340{left:627.453333pt;}
.x71_c01340{left:630.533333pt;}
.x44_c01340{left:632.826667pt;}
.xd6_c01340{left:635.906667pt;}
.x7_c01340{left:639.747133pt;}
.x85_c01340{left:643.586667pt;}
.x23_c01340{left:646.653333pt;}
.xbf_c01340{left:648.960000pt;}
.xd8_c01340{left:650.493333pt;}
.x3e_c01340{left:652.026667pt;}
.x35_c01340{left:653.573333pt;}
.x2c_c01340{left:657.413333pt;}
.x95_c01340{left:660.480000pt;}
.x2d_c01340{left:664.320000pt;}
.x4f_c01340{left:671.226667pt;}
.x36_c01340{left:673.533333pt;}
.x7a_c01340{left:675.066667pt;}
.x45_c01340{left:678.146667pt;}
.xba_c01340{left:680.453333pt;}
.xdd_c01340{left:685.053333pt;}
.x72_c01340{left:687.360000pt;}
.xc9_c01340{left:688.893333pt;}
.x24_c01340{left:691.200000pt;}
.x69_c01340{left:696.573333pt;}
.xaa_c01340{left:698.106667pt;}
.x80_c01340{left:700.413333pt;}
.x9f_c01340{left:701.946667pt;}
.x17_c01340{left:703.493333pt;}
.x7b_c01340{left:706.560000pt;}
.xc0_c01340{left:708.093333pt;}
.xab_c01340{left:710.400000pt;}
.x9c_c01340{left:712.706667pt;}
.x18_c01340{left:714.240000pt;}
.xb0_c01340{left:717.306667pt;}
.x46_c01340{left:720.386667pt;}
.x61_c01340{left:722.693333pt;}
.xa3_c01340{left:726.533333pt;}
.x57_c01340{left:728.826667pt;}
.x81_c01340{left:734.213333pt;}
.x25_c01340{left:738.813333pt;}
.x73_c01340{left:741.120000pt;}
.x82_c01340{left:744.186667pt;}
.x47_c01340{left:745.733333pt;}
.xac_c01340{left:748.800000pt;}
.xd2_c01340{left:750.333333pt;}
.x2e_c01340{left:752.640000pt;}
.x48_c01340{left:760.320000pt;}
.x6a_c01340{left:761.853333pt;}
.xa0_c01340{left:764.160000pt;}
.x37_c01340{left:766.466667pt;}
.x50_c01340{left:768.000000pt;}
.x86_c01340{left:773.373333pt;}
.x19_c01340{left:775.680000pt;}
.x51_c01340{left:777.213333pt;}
.xc1_c01340{left:784.133333pt;}
.xa4_c01340{left:788.733333pt;}
.x1a_c01340{left:794.880000pt;}
.x6b_c01340{left:797.946667pt;}
.xe2_c01340{left:799.493333pt;}
.xc2_c01340{left:805.626667pt;}
.xc3_c01340{left:809.466667pt;}
.xde_c01340{left:817.146667pt;}
.xe5_c01340{left:860.933333pt;}
.xe6_c01340{left:864.000000pt;}
.xdf_c01340{left:899.333333pt;}
.xe0_c01340{left:910.080000pt;}
.xe3_c01340{left:913.920000pt;}
.xe4_c01340{left:921.600000pt;}
.xe1_c01340{left:941.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_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;}
@font-face{font-family:ff1_c01341;src:url('chunks/assets/font_97f75cd872a437ef34efed56.woff2')format("woff");}.ff1_c01341{font-family:ff1_c01341;line-height:1.109863;font-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_c01341{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m89_c01341{transform:matrix(0.098350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098350,0.000000,0.000000,0.250000,0,0);}
.m81_c01341{transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);}
.m13_c01341{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m42_c01341{transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163100,0.000000,0.000000,0.250000,0,0);}
.m80_c01341{transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163550,0.000000,0.000000,0.250000,0,0);}
.m2_c01341{transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168975,0.000000,0.000000,0.250000,0,0);}
.m72_c01341{transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01341{transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171125,0.000000,0.000000,0.250000,0,0);}
.m1d_c01341{transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172675,0.000000,0.000000,0.250000,0,0);}
.m5e_c01341{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m4_c01341{transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);}
.m1c_c01341{transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177350,0.000000,0.000000,0.250000,0,0);}
.m50_c01341{transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179075,0.000000,0.000000,0.250000,0,0);}
.m0_c01341{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m34_c01341{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);}
.m4e_c01341{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);}
.m18_c01341{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);}
.m20_c01341{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m4d_c01341{transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204350,0.000000,0.000000,0.250000,0,0);}
.m3b_c01341{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);}
.m76_c01341{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m7e_c01341{transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209275,0.000000,0.000000,0.250000,0,0);}
.m5b_c01341{transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209925,0.000000,0.000000,0.250000,0,0);}
.m32_c01341{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.m4b_c01341{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);}
.m59_c01341{transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);}
.m51_c01341{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);}
.m5c_c01341{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m1f_c01341{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);}
.m36_c01341{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);}
.m79_c01341{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.m71_c01341{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);}
.m6e_c01341{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);}
.m56_c01341{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m3a_c01341{transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223225,0.000000,0.000000,0.250000,0,0);}
.m3_c01341{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m70_c01341{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.m62_c01341{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m27_c01341{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);}
.mf_c01341{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);}
.m7f_c01341{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);}
.m61_c01341{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.m38_c01341{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);}
.m5f_c01341{transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239025,0.000000,0.000000,0.250000,0,0);}
.m6c_c01341{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m53_c01341{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m65_c01341{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m84_c01341{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);}
.m75_c01341{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);}
.m7b_c01341{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);}
.m19_c01341{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m49_c01341{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);}
.m57_c01341{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);}
.m3c_c01341{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);}
.m1b_c01341{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01341{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);}
.ma_c01341{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);}
.m5_c01341{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);}
.m2e_c01341{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01341{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01341{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);}
.me_c01341{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m63_c01341{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);}
.m43_c01341{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);}
.m12_c01341{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m54_c01341{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);}
.m8_c01341{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01341{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m46_c01341{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);}
.m69_c01341{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m60_c01341{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);}
.m37_c01341{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);}
.m83_c01341{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01341{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m35_c01341{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m52_c01341{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c01341{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);}
.m31_c01341{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m44_c01341{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m30_c01341{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01341{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m45_c01341{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m64_c01341{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);}
.m47_c01341{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m58_c01341{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m25_c01341{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01341{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);}
.m66_c01341{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);}
.m28_c01341{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m22_c01341{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m33_c01341{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);}
.m7a_c01341{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m39_c01341{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01341{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m68_c01341{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01341{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);}
.m48_c01341{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m23_c01341{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m17_c01341{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01341{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m26_c01341{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c01341{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m24_c01341{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01341{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m10_c01341{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);}
.m6a_c01341{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);}
.m16_c01341{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m74_c01341{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m15_c01341{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01341{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m82_c01341{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m73_c01341{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);}
.m9_c01341{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m78_c01341{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m77_c01341{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01341{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01341{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);}
.md_c01341{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mc_c01341{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);}
.m88_c01341{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m67_c01341{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01341{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mb_c01341{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m1_c01341{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m29_c01341{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01341{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m6_c01341{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m14_c01341{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m21_c01341{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01341{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m41_c01341{transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);}
.m55_c01341{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.m40_c01341{transform:matrix(1.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.752500,0.000000,0.000000,0.250000,0,0);}
.m85_c01341{transform:matrix(4.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.370000,0.000000,0.000000,0.250000,0,0);}
.m86_c01341{transform:matrix(4.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.537500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01341{transform:matrix(7.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.067500,0.000000,0.000000,0.250000,0,0);}
.m87_c01341{transform:matrix(7.775000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.775000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.775000,0.000000,0.000000,0.250000,0,0);}
.v0_c01341{vertical-align:0.000000px;}
.ls0_c01341{letter-spacing:0.000000px;}
.sc__c01341{text-shadow:none;}
.sc0_c01341{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01341{-webkit-text-stroke:0px transparent;}
.sc0_c01341{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01341{word-spacing:0.000000px;}
.fc0_c01341{color:transparent;}
.fs18_c01341{font-size:3.456000px;}
.fse_c01341{font-size:6.000000px;}
.fs1a_c01341{font-size:6.900000px;}
.fs1_c01341{font-size:10.380000px;}
.fs1f_c01341{font-size:13.800000px;}
.fsf_c01341{font-size:17.280000px;}
.fs7_c01341{font-size:20.760000px;}
.fs20_c01341{font-size:24.180000px;}
.fs6_c01341{font-size:27.660000px;}
.fs5_c01341{font-size:31.080000px;}
.fs0_c01341{font-size:34.560000px;}
.fs1d_c01341{font-size:38.040000px;}
.fs1b_c01341{font-size:41.460000px;}
.fs8_c01341{font-size:44.940000px;}
.fs19_c01341{font-size:48.360000px;}
.fs4_c01341{font-size:51.840000px;}
.fs2_c01341{font-size:55.320000px;}
.fs1e_c01341{font-size:58.740000px;}
.fs11_c01341{font-size:62.220000px;}
.fs3_c01341{font-size:65.640000px;}
.fs12_c01341{font-size:69.120000px;}
.fs1c_c01341{font-size:76.020000px;}
.fs13_c01341{font-size:82.920000px;}
.fsd_c01341{font-size:86.400000px;}
.fs10_c01341{font-size:93.300000px;}
.fsc_c01341{font-size:96.780000px;}
.fs14_c01341{font-size:100.200000px;}
.fsb_c01341{font-size:107.160000px;}
.fs17_c01341{font-size:110.580000px;}
.fs15_c01341{font-size:117.480000px;}
.fs16_c01341{font-size:120.960000px;}
.fs9_c01341{font-size:138.240000px;}
.fsa_c01341{font-size:141.720000px;}
.y0_c01341{bottom:0.000000px;}
.y8_c01341{bottom:135.645000px;}
.ya7_c01341{bottom:691.200000px;}
.ya6_c01341{bottom:693.795000px;}
.ya2_c01341{bottom:695.520000px;}
.ya3_c01341{bottom:696.390000px;}
.ya4_c01341{bottom:698.115000px;}
.ya5_c01341{bottom:698.970000px;}
.y9a_c01341{bottom:707.610000px;}
.y9e_c01341{bottom:708.480000px;}
.y9b_c01341{bottom:709.350000px;}
.y9f_c01341{bottom:711.075000px;}
.ya1_c01341{bottom:712.800000px;}
.y9c_c01341{bottom:713.670000px;}
.y9d_c01341{bottom:714.525000px;}
.ya0_c01341{bottom:716.250000px;}
.y93_c01341{bottom:725.760000px;}
.y96_c01341{bottom:730.080000px;}
.y94_c01341{bottom:730.950000px;}
.y95_c01341{bottom:731.805000px;}
.y97_c01341{bottom:733.530000px;}
.y98_c01341{bottom:734.400000px;}
.y99_c01341{bottom:736.125000px;}
.y91_c01341{bottom:748.230000px;}
.y92_c01341{bottom:761.190000px;}
.y8c_c01341{bottom:762.045000px;}
.y90_c01341{bottom:762.915000px;}
.y8b_c01341{bottom:764.640000px;}
.y8d_c01341{bottom:766.365000px;}
.y8e_c01341{bottom:767.235000px;}
.y8f_c01341{bottom:768.090000px;}
.y89_c01341{bottom:782.790000px;}
.y8a_c01341{bottom:783.645000px;}
.yaa_c01341{bottom:793.155000px;}
.y85_c01341{bottom:795.750000px;}
.y87_c01341{bottom:799.200000px;}
.y86_c01341{bottom:802.650000px;}
.y88_c01341{bottom:803.520000px;}
.y7_c01341{bottom:811.290000px;}
.y7f_c01341{bottom:813.885000px;}
.y81_c01341{bottom:815.610000px;}
.y7e_c01341{bottom:816.480000px;}
.y80_c01341{bottom:819.075000px;}
.y82_c01341{bottom:819.930000px;}
.y83_c01341{bottom:820.800000px;}
.y6_c01341{bottom:826.845000px;}
.y84_c01341{bottom:828.570000px;}
.y78_c01341{bottom:834.630000px;}
.y79_c01341{bottom:835.485000px;}
.y7a_c01341{bottom:836.355000px;}
.y7b_c01341{bottom:837.210000px;}
.y7c_c01341{bottom:838.080000px;}
.y7d_c01341{bottom:838.950000px;}
.y72_c01341{bottom:847.590000px;}
.y74_c01341{bottom:848.445000px;}
.y73_c01341{bottom:851.040000px;}
.y5_c01341{bottom:851.910000px;}
.y75_c01341{bottom:853.635000px;}
.y76_c01341{bottom:854.490000px;}
.y77_c01341{bottom:861.405000px;}
.y6d_c01341{bottom:864.870000px;}
.y6f_c01341{bottom:866.595000px;}
.y6e_c01341{bottom:870.045000px;}
.y70_c01341{bottom:870.915000px;}
.y4_c01341{bottom:871.770000px;}
.y71_c01341{bottom:872.640000px;}
.ya8_c01341{bottom:873.510000px;}
.ya9_c01341{bottom:875.235000px;}
.y67_c01341{bottom:883.005000px;}
.y6c_c01341{bottom:885.600000px;}
.y68_c01341{bottom:886.470000px;}
.y69_c01341{bottom:888.195000px;}
.y6a_c01341{bottom:889.050000px;}
.y6b_c01341{bottom:889.920000px;}
.y66_c01341{bottom:890.790000px;}
.y3_c01341{bottom:891.645000px;}
.y5f_c01341{bottom:900.285000px;}
.y60_c01341{bottom:901.155000px;}
.y65_c01341{bottom:902.880000px;}
.y61_c01341{bottom:904.605000px;}
.y62_c01341{bottom:905.475000px;}
.y63_c01341{bottom:906.330000px;}
.y64_c01341{bottom:907.200000px;}
.y1_c01341{bottom:912.390000px;}
.y2_c01341{bottom:915.840000px;}
.y5b_c01341{bottom:918.435000px;}
.y58_c01341{bottom:921.030000px;}
.y5e_c01341{bottom:921.885000px;}
.y59_c01341{bottom:922.755000px;}
.y5a_c01341{bottom:923.610000px;}
.y5d_c01341{bottom:925.350000px;}
.y5c_c01341{bottom:928.800000px;}
.y53_c01341{bottom:934.845000px;}
.y52_c01341{bottom:935.715000px;}
.y51_c01341{bottom:939.165000px;}
.y54_c01341{bottom:940.890000px;}
.y56_c01341{bottom:942.630000px;}
.y57_c01341{bottom:943.485000px;}
.y55_c01341{bottom:951.270000px;}
.y4d_c01341{bottom:952.125000px;}
.y4e_c01341{bottom:954.720000px;}
.y50_c01341{bottom:955.590000px;}
.y4f_c01341{bottom:957.315000px;}
.y4c_c01341{bottom:966.810000px;}
.y47_c01341{bottom:969.405000px;}
.y48_c01341{bottom:973.725000px;}
.y49_c01341{bottom:975.450000px;}
.y4a_c01341{bottom:976.320000px;}
.y4b_c01341{bottom:978.045000px;}
.y46_c01341{bottom:978.915000px;}
.y43_c01341{bottom:988.410000px;}
.y44_c01341{bottom:989.280000px;}
.y42_c01341{bottom:991.875000px;}
.y45_c01341{bottom:995.325000px;}
.y41_c01341{bottom:1001.370000px;}
.y3c_c01341{bottom:1003.110000px;}
.y3b_c01341{bottom:1003.965000px;}
.y3d_c01341{bottom:1004.835000px;}
.y3e_c01341{bottom:1006.560000px;}
.y3f_c01341{bottom:1010.880000px;}
.y40_c01341{bottom:1011.750000px;}
.y33_c01341{bottom:1020.390000px;}
.y35_c01341{bottom:1022.970000px;}
.y39_c01341{bottom:1024.710000px;}
.y37_c01341{bottom:1025.565000px;}
.y34_c01341{bottom:1026.435000px;}
.y36_c01341{bottom:1028.160000px;}
.y38_c01341{bottom:1029.030000px;}
.y3a_c01341{bottom:1029.885000px;}
.y28_c01341{bottom:1039.395000px;}
.y29_c01341{bottom:1040.250000px;}
.y2a_c01341{bottom:1041.120000px;}
.y2f_c01341{bottom:1042.845000px;}
.y31_c01341{bottom:1043.715000px;}
.y2e_c01341{bottom:1044.570000px;}
.y32_c01341{bottom:1046.310000px;}
.y30_c01341{bottom:1052.355000px;}
.y2d_c01341{bottom:1054.950000px;}
.y2c_c01341{bottom:1060.125000px;}
.y2b_c01341{bottom:1061.850000px;}
.y27_c01341{bottom:1064.445000px;}
.y25_c01341{bottom:1069.635000px;}
.y26_c01341{bottom:1071.360000px;}
.y1d_c01341{bottom:1079.130000px;}
.y1e_c01341{bottom:1080.870000px;}
.y20_c01341{bottom:1086.915000px;}
.y1f_c01341{bottom:1087.770000px;}
.y18_c01341{bottom:1118.880000px;}
.y1a_c01341{bottom:1119.750000px;}
.y19_c01341{bottom:1120.605000px;}
.y1b_c01341{bottom:1121.475000px;}
.y1c_c01341{bottom:1123.200000px;}
.y24_c01341{bottom:1128.390000px;}
.y23_c01341{bottom:1134.435000px;}
.y22_c01341{bottom:1137.885000px;}
.y21_c01341{bottom:1139.610000px;}
.y10_c01341{bottom:1148.250000px;}
.y11_c01341{bottom:1151.715000px;}
.y13_c01341{bottom:1154.310000px;}
.y12_c01341{bottom:1155.165000px;}
.y17_c01341{bottom:1157.760000px;}
.y16_c01341{bottom:1159.485000px;}
.y14_c01341{bottom:1185.405000px;}
.y15_c01341{bottom:1192.320000px;}
.yf_c01341{bottom:1198.365000px;}
.ye_c01341{bottom:1201.830000px;}
.yd_c01341{bottom:1248.480000px;}
.yc_c01341{bottom:1392.765000px;}
.y9_c01341{bottom:1418.685000px;}
.yb_c01341{bottom:1422.150000px;}
.ya_c01341{bottom:1425.600000px;}
.h1a_c01341{height:3.110063px;}
.h10_c01341{height:5.399414px;}
.h1c_c01341{height:6.209326px;}
.h3_c01341{height:9.340986px;}
.h21_c01341{height:12.418652px;}
.h11_c01341{height:15.550313px;}
.h9_c01341{height:18.681973px;}
.h22_c01341{height:21.759639px;}
.h8_c01341{height:24.891299px;}
.h7_c01341{height:27.968965px;}
.h2_c01341{height:31.100625px;}
.h1f_c01341{height:34.232285px;}
.h1d_c01341{height:37.309951px;}
.ha_c01341{height:40.441611px;}
.h1b_c01341{height:43.519277px;}
.h6_c01341{height:46.650937px;}
.h4_c01341{height:49.782598px;}
.h20_c01341{height:52.860264px;}
.h13_c01341{height:55.991924px;}
.h5_c01341{height:59.069590px;}
.h14_c01341{height:62.201250px;}
.h1e_c01341{height:68.410576px;}
.h15_c01341{height:74.619902px;}
.hf_c01341{height:77.751563px;}
.h12_c01341{height:83.960889px;}
.he_c01341{height:87.092549px;}
.h16_c01341{height:90.170215px;}
.hd_c01341{height:96.433535px;}
.h19_c01341{height:99.511201px;}
.h17_c01341{height:105.720527px;}
.h18_c01341{height:108.852188px;}
.hb_c01341{height:124.402500px;}
.hc_c01341{height:127.534160px;}
.h0_c01341{height:1509.405000px;}
.h1_c01341{height:1509.750000px;}
.w0_c01341{width:1079.130000px;}
.w1_c01341{width:1079.250000px;}
.x0_c01341{left:0.000000px;}
.x2_c01341{left:2.595000px;}
.x1_c01341{left:7.770000px;}
.x3_c01341{left:55.290000px;}
.x87_c01341{left:105.405000px;}
.x86_c01341{left:128.730000px;}
.x4_c01341{left:148.604475px;}
.x5_c01341{left:160.710000px;}
.x9_c01341{left:224.640000px;}
.x21_c01341{left:247.110000px;}
.x22_c01341{left:254.880000px;}
.xa_c01341{left:270.435000px;}
.x23_c01341{left:315.360000px;}
.x13_c01341{left:326.595000px;}
.xb_c01341{left:328.320000px;}
.x24_c01341{left:330.915000px;}
.x25_c01341{left:355.110000px;}
.x26_c01341{left:379.290000px;}
.xc_c01341{left:394.845000px;}
.x19_c01341{left:396.570000px;}
.x14_c01341{left:412.125000px;}
.x27_c01341{left:416.445000px;}
.xd_c01341{left:426.810000px;}
.x28_c01341{left:433.725000px;}
.x29_c01341{left:447.555000px;}
.x1a_c01341{left:476.925000px;}
.x12_c01341{left:489.885000px;}
.x8_c01341{left:514.080000px;}
.x15_c01341{left:516.675000px;}
.xe_c01341{left:522.720000px;}
.xf_c01341{left:532.230000px;}
.x16_c01341{left:540.870000px;}
.x46_c01341{left:554.685000px;}
.x5e_c01341{left:557.280000px;}
.x6f_c01341{left:559.875000px;}
.x5b_c01341{left:561.600000px;}
.x32_c01341{left:563.325000px;}
.x47_c01341{left:565.050000px;}
.x2d_c01341{left:567.645000px;}
.x6a_c01341{left:569.370000px;}
.x7a_c01341{left:571.110000px;}
.x40_c01341{left:574.560000px;}
.x2a_c01341{left:578.880000px;}
.x4e_c01341{left:580.605000px;}
.x54_c01341{left:584.070000px;}
.x3a_c01341{left:585.795000px;}
.x5f_c01341{left:587.520000px;}
.x17_c01341{left:589.245000px;}
.x41_c01341{left:591.840000px;}
.x78_c01341{left:596.160000px;}
.x1b_c01341{left:598.755000px;}
.x70_c01341{left:603.930000px;}
.x5c_c01341{left:609.120000px;}
.x7e_c01341{left:616.035000px;}
.x66_c01341{left:617.760000px;}
.x1c_c01341{left:619.485000px;}
.x6b_c01341{left:621.210000px;}
.x2e_c01341{left:623.805000px;}
.x5d_c01341{left:625.530000px;}
.x55_c01341{left:629.850000px;}
.x60_c01341{left:631.590000px;}
.x3b_c01341{left:633.315000px;}
.x4f_c01341{left:635.910000px;}
.x48_c01341{left:640.230000px;}
.x50_c01341{left:643.680000px;}
.x2b_c01341{left:650.595000px;}
.x63_c01341{left:652.320000px;}
.x6c_c01341{left:654.915000px;}
.x33_c01341{left:657.510000px;}
.x51_c01341{left:660.090000px;}
.x75_c01341{left:667.875000px;}
.x18_c01341{left:669.600000px;}
.x56_c01341{left:671.325000px;}
.x6d_c01341{left:673.920000px;}
.x49_c01341{left:675.645000px;}
.x3c_c01341{left:678.240000px;}
.x34_c01341{left:683.430000px;}
.x61_c01341{left:693.795000px;}
.x79_c01341{left:697.245000px;}
.x2f_c01341{left:699.840000px;}
.x71_c01341{left:704.160000px;}
.x67_c01341{left:706.755000px;}
.x83_c01341{left:710.205000px;}
.x7f_c01341{left:716.250000px;}
.x35_c01341{left:718.845000px;}
.x57_c01341{left:721.440000px;}
.x58_c01341{left:723.165000px;}
.x42_c01341{left:735.270000px;}
.x4a_c01341{left:748.230000px;}
.x52_c01341{left:749.955000px;}
.x59_c01341{left:751.680000px;}
.x3d_c01341{left:758.595000px;}
.x36_c01341{left:760.320000px;}
.x80_c01341{left:762.045000px;}
.x4b_c01341{left:766.365000px;}
.x74_c01341{left:775.875000px;}
.x43_c01341{left:779.325000px;}
.x3e_c01341{left:783.645000px;}
.x11_c01341{left:786.240000px;}
.x85_c01341{left:788.835000px;}
.x62_c01341{left:791.430000px;}
.x37_c01341{left:795.750000px;}
.x76_c01341{left:797.475000px;}
.x81_c01341{left:799.200000px;}
.x3f_c01341{left:801.795000px;}
.x4c_c01341{left:805.245000px;}
.x10_c01341{left:806.970000px;}
.x5a_c01341{left:813.030000px;}
.x44_c01341{left:815.610000px;}
.x38_c01341{left:819.930000px;}
.x84_c01341{left:821.670000px;}
.x82_c01341{left:823.395000px;}
.x6_c01341{left:825.990000px;}
.x77_c01341{left:828.570000px;}
.x2c_c01341{left:832.890000px;}
.x30_c01341{left:836.355000px;}
.x53_c01341{left:845.850000px;}
.x64_c01341{left:848.445000px;}
.x4d_c01341{left:851.040000px;}
.x7b_c01341{left:853.635000px;}
.x39_c01341{left:856.230000px;}
.x65_c01341{left:857.955000px;}
.x31_c01341{left:864.870000px;}
.x45_c01341{left:866.595000px;}
.x1e_c01341{left:868.320000px;}
.x68_c01341{left:870.045000px;}
.x7c_c01341{left:872.640000px;}
.x20_c01341{left:879.555000px;}
.x6e_c01341{left:883.005000px;}
.x7d_c01341{left:885.600000px;}
.x1f_c01341{left:887.325000px;}
.x69_c01341{left:889.050000px;}
.x72_c01341{left:895.965000px;}
.x73_c01341{left:900.285000px;}
.x1d_c01341{left:907.200000px;}
.x7_c01341{left:916.710000px;}
@media print{
.v0_c01341{vertical-align:0.000000pt;}
.ls0_c01341{letter-spacing:0.000000pt;}
.ws0_c01341{word-spacing:0.000000pt;}
.fs18_c01341{font-size:3.072000pt;}
.fse_c01341{font-size:5.333333pt;}
.fs1a_c01341{font-size:6.133333pt;}
.fs1_c01341{font-size:9.226667pt;}
.fs1f_c01341{font-size:12.266667pt;}
.fsf_c01341{font-size:15.360000pt;}
.fs7_c01341{font-size:18.453333pt;}
.fs20_c01341{font-size:21.493333pt;}
.fs6_c01341{font-size:24.586667pt;}
.fs5_c01341{font-size:27.626667pt;}
.fs0_c01341{font-size:30.720000pt;}
.fs1d_c01341{font-size:33.813333pt;}
.fs1b_c01341{font-size:36.853333pt;}
.fs8_c01341{font-size:39.946667pt;}
.fs19_c01341{font-size:42.986667pt;}
.fs4_c01341{font-size:46.080000pt;}
.fs2_c01341{font-size:49.173333pt;}
.fs1e_c01341{font-size:52.213333pt;}
.fs11_c01341{font-size:55.306667pt;}
.fs3_c01341{font-size:58.346667pt;}
.fs12_c01341{font-size:61.440000pt;}
.fs1c_c01341{font-size:67.573333pt;}
.fs13_c01341{font-size:73.706667pt;}
.fsd_c01341{font-size:76.800000pt;}
.fs10_c01341{font-size:82.933333pt;}
.fsc_c01341{font-size:86.026667pt;}
.fs14_c01341{font-size:89.066667pt;}
.fsb_c01341{font-size:95.253333pt;}
.fs17_c01341{font-size:98.293333pt;}
.fs15_c01341{font-size:104.426667pt;}
.fs16_c01341{font-size:107.520000pt;}
.fs9_c01341{font-size:122.880000pt;}
.fsa_c01341{font-size:125.973333pt;}
.y0_c01341{bottom:0.000000pt;}
.y8_c01341{bottom:120.573333pt;}
.ya7_c01341{bottom:614.400000pt;}
.ya6_c01341{bottom:616.706667pt;}
.ya2_c01341{bottom:618.240000pt;}
.ya3_c01341{bottom:619.013333pt;}
.ya4_c01341{bottom:620.546667pt;}
.ya5_c01341{bottom:621.306667pt;}
.y9a_c01341{bottom:628.986667pt;}
.y9e_c01341{bottom:629.760000pt;}
.y9b_c01341{bottom:630.533333pt;}
.y9f_c01341{bottom:632.066667pt;}
.ya1_c01341{bottom:633.600000pt;}
.y9c_c01341{bottom:634.373333pt;}
.y9d_c01341{bottom:635.133333pt;}
.ya0_c01341{bottom:636.666667pt;}
.y93_c01341{bottom:645.120000pt;}
.y96_c01341{bottom:648.960000pt;}
.y94_c01341{bottom:649.733333pt;}
.y95_c01341{bottom:650.493333pt;}
.y97_c01341{bottom:652.026667pt;}
.y98_c01341{bottom:652.800000pt;}
.y99_c01341{bottom:654.333333pt;}
.y91_c01341{bottom:665.093333pt;}
.y92_c01341{bottom:676.613333pt;}
.y8c_c01341{bottom:677.373333pt;}
.y90_c01341{bottom:678.146667pt;}
.y8b_c01341{bottom:679.680000pt;}
.y8d_c01341{bottom:681.213333pt;}
.y8e_c01341{bottom:681.986667pt;}
.y8f_c01341{bottom:682.746667pt;}
.y89_c01341{bottom:695.813333pt;}
.y8a_c01341{bottom:696.573333pt;}
.yaa_c01341{bottom:705.026667pt;}
.y85_c01341{bottom:707.333333pt;}
.y87_c01341{bottom:710.400000pt;}
.y86_c01341{bottom:713.466667pt;}
.y88_c01341{bottom:714.240000pt;}
.y7_c01341{bottom:721.146667pt;}
.y7f_c01341{bottom:723.453333pt;}
.y81_c01341{bottom:724.986667pt;}
.y7e_c01341{bottom:725.760000pt;}
.y80_c01341{bottom:728.066667pt;}
.y82_c01341{bottom:728.826667pt;}
.y83_c01341{bottom:729.600000pt;}
.y6_c01341{bottom:734.973333pt;}
.y84_c01341{bottom:736.506667pt;}
.y78_c01341{bottom:741.893333pt;}
.y79_c01341{bottom:742.653333pt;}
.y7a_c01341{bottom:743.426667pt;}
.y7b_c01341{bottom:744.186667pt;}
.y7c_c01341{bottom:744.960000pt;}
.y7d_c01341{bottom:745.733333pt;}
.y72_c01341{bottom:753.413333pt;}
.y74_c01341{bottom:754.173333pt;}
.y73_c01341{bottom:756.480000pt;}
.y5_c01341{bottom:757.253333pt;}
.y75_c01341{bottom:758.786667pt;}
.y76_c01341{bottom:759.546667pt;}
.y77_c01341{bottom:765.693333pt;}
.y6d_c01341{bottom:768.773333pt;}
.y6f_c01341{bottom:770.306667pt;}
.y6e_c01341{bottom:773.373333pt;}
.y70_c01341{bottom:774.146667pt;}
.y4_c01341{bottom:774.906667pt;}
.y71_c01341{bottom:775.680000pt;}
.ya8_c01341{bottom:776.453333pt;}
.ya9_c01341{bottom:777.986667pt;}
.y67_c01341{bottom:784.893333pt;}
.y6c_c01341{bottom:787.200000pt;}
.y68_c01341{bottom:787.973333pt;}
.y69_c01341{bottom:789.506667pt;}
.y6a_c01341{bottom:790.266667pt;}
.y6b_c01341{bottom:791.040000pt;}
.y66_c01341{bottom:791.813333pt;}
.y3_c01341{bottom:792.573333pt;}
.y5f_c01341{bottom:800.253333pt;}
.y60_c01341{bottom:801.026667pt;}
.y65_c01341{bottom:802.560000pt;}
.y61_c01341{bottom:804.093333pt;}
.y62_c01341{bottom:804.866667pt;}
.y63_c01341{bottom:805.626667pt;}
.y64_c01341{bottom:806.400000pt;}
.y1_c01341{bottom:811.013333pt;}
.y2_c01341{bottom:814.080000pt;}
.y5b_c01341{bottom:816.386667pt;}
.y58_c01341{bottom:818.693333pt;}
.y5e_c01341{bottom:819.453333pt;}
.y59_c01341{bottom:820.226667pt;}
.y5a_c01341{bottom:820.986667pt;}
.y5d_c01341{bottom:822.533333pt;}
.y5c_c01341{bottom:825.600000pt;}
.y53_c01341{bottom:830.973333pt;}
.y52_c01341{bottom:831.746667pt;}
.y51_c01341{bottom:834.813333pt;}
.y54_c01341{bottom:836.346667pt;}
.y56_c01341{bottom:837.893333pt;}
.y57_c01341{bottom:838.653333pt;}
.y55_c01341{bottom:845.573333pt;}
.y4d_c01341{bottom:846.333333pt;}
.y4e_c01341{bottom:848.640000pt;}
.y50_c01341{bottom:849.413333pt;}
.y4f_c01341{bottom:850.946667pt;}
.y4c_c01341{bottom:859.386667pt;}
.y47_c01341{bottom:861.693333pt;}
.y48_c01341{bottom:865.533333pt;}
.y49_c01341{bottom:867.066667pt;}
.y4a_c01341{bottom:867.840000pt;}
.y4b_c01341{bottom:869.373333pt;}
.y46_c01341{bottom:870.146667pt;}
.y43_c01341{bottom:878.586667pt;}
.y44_c01341{bottom:879.360000pt;}
.y42_c01341{bottom:881.666667pt;}
.y45_c01341{bottom:884.733333pt;}
.y41_c01341{bottom:890.106667pt;}
.y3c_c01341{bottom:891.653333pt;}
.y3b_c01341{bottom:892.413333pt;}
.y3d_c01341{bottom:893.186667pt;}
.y3e_c01341{bottom:894.720000pt;}
.y3f_c01341{bottom:898.560000pt;}
.y40_c01341{bottom:899.333333pt;}
.y33_c01341{bottom:907.013333pt;}
.y35_c01341{bottom:909.306667pt;}
.y39_c01341{bottom:910.853333pt;}
.y37_c01341{bottom:911.613333pt;}
.y34_c01341{bottom:912.386667pt;}
.y36_c01341{bottom:913.920000pt;}
.y38_c01341{bottom:914.693333pt;}
.y3a_c01341{bottom:915.453333pt;}
.y28_c01341{bottom:923.906667pt;}
.y29_c01341{bottom:924.666667pt;}
.y2a_c01341{bottom:925.440000pt;}
.y2f_c01341{bottom:926.973333pt;}
.y31_c01341{bottom:927.746667pt;}
.y2e_c01341{bottom:928.506667pt;}
.y32_c01341{bottom:930.053333pt;}
.y30_c01341{bottom:935.426667pt;}
.y2d_c01341{bottom:937.733333pt;}
.y2c_c01341{bottom:942.333333pt;}
.y2b_c01341{bottom:943.866667pt;}
.y27_c01341{bottom:946.173333pt;}
.y25_c01341{bottom:950.786667pt;}
.y26_c01341{bottom:952.320000pt;}
.y1d_c01341{bottom:959.226667pt;}
.y1e_c01341{bottom:960.773333pt;}
.y20_c01341{bottom:966.146667pt;}
.y1f_c01341{bottom:966.906667pt;}
.y18_c01341{bottom:994.560000pt;}
.y1a_c01341{bottom:995.333333pt;}
.y19_c01341{bottom:996.093333pt;}
.y1b_c01341{bottom:996.866667pt;}
.y1c_c01341{bottom:998.400000pt;}
.y24_c01341{bottom:1003.013333pt;}
.y23_c01341{bottom:1008.386667pt;}
.y22_c01341{bottom:1011.453333pt;}
.y21_c01341{bottom:1012.986667pt;}
.y10_c01341{bottom:1020.666667pt;}
.y11_c01341{bottom:1023.746667pt;}
.y13_c01341{bottom:1026.053333pt;}
.y12_c01341{bottom:1026.813333pt;}
.y17_c01341{bottom:1029.120000pt;}
.y16_c01341{bottom:1030.653333pt;}
.y14_c01341{bottom:1053.693333pt;}
.y15_c01341{bottom:1059.840000pt;}
.yf_c01341{bottom:1065.213333pt;}
.ye_c01341{bottom:1068.293333pt;}
.yd_c01341{bottom:1109.760000pt;}
.yc_c01341{bottom:1238.013333pt;}
.y9_c01341{bottom:1261.053333pt;}
.yb_c01341{bottom:1264.133333pt;}
.ya_c01341{bottom:1267.200000pt;}
.h1a_c01341{height:2.764500pt;}
.h10_c01341{height:4.799479pt;}
.h1c_c01341{height:5.519401pt;}
.h3_c01341{height:8.303099pt;}
.h21_c01341{height:11.038802pt;}
.h11_c01341{height:13.822500pt;}
.h9_c01341{height:16.606198pt;}
.h22_c01341{height:19.341901pt;}
.h8_c01341{height:22.125599pt;}
.h7_c01341{height:24.861302pt;}
.h2_c01341{height:27.645000pt;}
.h1f_c01341{height:30.428698pt;}
.h1d_c01341{height:33.164401pt;}
.ha_c01341{height:35.948099pt;}
.h1b_c01341{height:38.683802pt;}
.h6_c01341{height:41.467500pt;}
.h4_c01341{height:44.251198pt;}
.h20_c01341{height:46.986901pt;}
.h13_c01341{height:49.770599pt;}
.h5_c01341{height:52.506302pt;}
.h14_c01341{height:55.290000pt;}
.h1e_c01341{height:60.809401pt;}
.h15_c01341{height:66.328802pt;}
.hf_c01341{height:69.112500pt;}
.h12_c01341{height:74.631901pt;}
.he_c01341{height:77.415599pt;}
.h16_c01341{height:80.151302pt;}
.hd_c01341{height:85.718698pt;}
.h19_c01341{height:88.454401pt;}
.h17_c01341{height:93.973802pt;}
.h18_c01341{height:96.757500pt;}
.hb_c01341{height:110.580000pt;}
.hc_c01341{height:113.363698pt;}
.h0_c01341{height:1341.693333pt;}
.h1_c01341{height:1342.000000pt;}
.w0_c01341{width:959.226667pt;}
.w1_c01341{width:959.333333pt;}
.x0_c01341{left:0.000000pt;}
.x2_c01341{left:2.306667pt;}
.x1_c01341{left:6.906667pt;}
.x3_c01341{left:49.146667pt;}
.x87_c01341{left:93.693333pt;}
.x86_c01341{left:114.426667pt;}
.x4_c01341{left:132.092867pt;}
.x5_c01341{left:142.853333pt;}
.x9_c01341{left:199.680000pt;}
.x21_c01341{left:219.653333pt;}
.x22_c01341{left:226.560000pt;}
.xa_c01341{left:240.386667pt;}
.x23_c01341{left:280.320000pt;}
.x13_c01341{left:290.306667pt;}
.xb_c01341{left:291.840000pt;}
.x24_c01341{left:294.146667pt;}
.x25_c01341{left:315.653333pt;}
.x26_c01341{left:337.146667pt;}
.xc_c01341{left:350.973333pt;}
.x19_c01341{left:352.506667pt;}
.x14_c01341{left:366.333333pt;}
.x27_c01341{left:370.173333pt;}
.xd_c01341{left:379.386667pt;}
.x28_c01341{left:385.533333pt;}
.x29_c01341{left:397.826667pt;}
.x1a_c01341{left:423.933333pt;}
.x12_c01341{left:435.453333pt;}
.x8_c01341{left:456.960000pt;}
.x15_c01341{left:459.266667pt;}
.xe_c01341{left:464.640000pt;}
.xf_c01341{left:473.093333pt;}
.x16_c01341{left:480.773333pt;}
.x46_c01341{left:493.053333pt;}
.x5e_c01341{left:495.360000pt;}
.x6f_c01341{left:497.666667pt;}
.x5b_c01341{left:499.200000pt;}
.x32_c01341{left:500.733333pt;}
.x47_c01341{left:502.266667pt;}
.x2d_c01341{left:504.573333pt;}
.x6a_c01341{left:506.106667pt;}
.x7a_c01341{left:507.653333pt;}
.x40_c01341{left:510.720000pt;}
.x2a_c01341{left:514.560000pt;}
.x4e_c01341{left:516.093333pt;}
.x54_c01341{left:519.173333pt;}
.x3a_c01341{left:520.706667pt;}
.x5f_c01341{left:522.240000pt;}
.x17_c01341{left:523.773333pt;}
.x41_c01341{left:526.080000pt;}
.x78_c01341{left:529.920000pt;}
.x1b_c01341{left:532.226667pt;}
.x70_c01341{left:536.826667pt;}
.x5c_c01341{left:541.440000pt;}
.x7e_c01341{left:547.586667pt;}
.x66_c01341{left:549.120000pt;}
.x1c_c01341{left:550.653333pt;}
.x6b_c01341{left:552.186667pt;}
.x2e_c01341{left:554.493333pt;}
.x5d_c01341{left:556.026667pt;}
.x55_c01341{left:559.866667pt;}
.x60_c01341{left:561.413333pt;}
.x3b_c01341{left:562.946667pt;}
.x4f_c01341{left:565.253333pt;}
.x48_c01341{left:569.093333pt;}
.x50_c01341{left:572.160000pt;}
.x2b_c01341{left:578.306667pt;}
.x63_c01341{left:579.840000pt;}
.x6c_c01341{left:582.146667pt;}
.x33_c01341{left:584.453333pt;}
.x51_c01341{left:586.746667pt;}
.x75_c01341{left:593.666667pt;}
.x18_c01341{left:595.200000pt;}
.x56_c01341{left:596.733333pt;}
.x6d_c01341{left:599.040000pt;}
.x49_c01341{left:600.573333pt;}
.x3c_c01341{left:602.880000pt;}
.x34_c01341{left:607.493333pt;}
.x61_c01341{left:616.706667pt;}
.x79_c01341{left:619.773333pt;}
.x2f_c01341{left:622.080000pt;}
.x71_c01341{left:625.920000pt;}
.x67_c01341{left:628.226667pt;}
.x83_c01341{left:631.293333pt;}
.x7f_c01341{left:636.666667pt;}
.x35_c01341{left:638.973333pt;}
.x57_c01341{left:641.280000pt;}
.x58_c01341{left:642.813333pt;}
.x42_c01341{left:653.573333pt;}
.x4a_c01341{left:665.093333pt;}
.x52_c01341{left:666.626667pt;}
.x59_c01341{left:668.160000pt;}
.x3d_c01341{left:674.306667pt;}
.x36_c01341{left:675.840000pt;}
.x80_c01341{left:677.373333pt;}
.x4b_c01341{left:681.213333pt;}
.x74_c01341{left:689.666667pt;}
.x43_c01341{left:692.733333pt;}
.x3e_c01341{left:696.573333pt;}
.x11_c01341{left:698.880000pt;}
.x85_c01341{left:701.186667pt;}
.x62_c01341{left:703.493333pt;}
.x37_c01341{left:707.333333pt;}
.x76_c01341{left:708.866667pt;}
.x81_c01341{left:710.400000pt;}
.x3f_c01341{left:712.706667pt;}
.x4c_c01341{left:715.773333pt;}
.x10_c01341{left:717.306667pt;}
.x5a_c01341{left:722.693333pt;}
.x44_c01341{left:724.986667pt;}
.x38_c01341{left:728.826667pt;}
.x84_c01341{left:730.373333pt;}
.x82_c01341{left:731.906667pt;}
.x6_c01341{left:734.213333pt;}
.x77_c01341{left:736.506667pt;}
.x2c_c01341{left:740.346667pt;}
.x30_c01341{left:743.426667pt;}
.x53_c01341{left:751.866667pt;}
.x64_c01341{left:754.173333pt;}
.x4d_c01341{left:756.480000pt;}
.x7b_c01341{left:758.786667pt;}
.x39_c01341{left:761.093333pt;}
.x65_c01341{left:762.626667pt;}
.x31_c01341{left:768.773333pt;}
.x45_c01341{left:770.306667pt;}
.x1e_c01341{left:771.840000pt;}
.x68_c01341{left:773.373333pt;}
.x7c_c01341{left:775.680000pt;}
.x20_c01341{left:781.826667pt;}
.x6e_c01341{left:784.893333pt;}
.x7d_c01341{left:787.200000pt;}
.x1f_c01341{left:788.733333pt;}
.x69_c01341{left:790.266667pt;}
.x72_c01341{left:796.413333pt;}
.x73_c01341{left:800.253333pt;}
.x1d_c01341{left:806.400000pt;}
.x7_c01341{left:814.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_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_b2696bcd1e45da17deda2000.woff2')format("woff");}.ff1_c01342{font-family:ff1_c01342;line-height:1.109863;font-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_c01342{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m138_c01342{transform:matrix(0.031875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.031875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.031875,0.000000,0.000000,0.250000,0,0);}
.m161_c01342{transform:matrix(0.088950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088950,0.000000,0.000000,0.250000,0,0);}
.m139_c01342{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m11f_c01342{transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.102950,0.000000,0.000000,0.250000,0,0);}
.m15f_c01342{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m35_c01342{transform:matrix(0.108950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108950,0.000000,0.000000,0.250000,0,0);}
.mae_c01342{transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);}
.m119_c01342{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m137_c01342{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m67_c01342{transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125450,0.000000,0.000000,0.250000,0,0);}
.mc1_c01342{transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);}
.m163_c01342{transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129900,0.000000,0.000000,0.250000,0,0);}
.m15c_c01342{transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);}
.m51_c01342{transform:matrix(0.133675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133675,0.000000,0.000000,0.250000,0,0);}
.m20_c01342{transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139325,0.000000,0.000000,0.250000,0,0);}
.m7e_c01342{transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139775,0.000000,0.000000,0.250000,0,0);}
.m17d_c01342{transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);}
.m174_c01342{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);}
.m46_c01342{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m31_c01342{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m147_c01342{transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145600,0.000000,0.000000,0.250000,0,0);}
.m7d_c01342{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.m166_c01342{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.m164_c01342{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);}
.m6a_c01342{transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148825,0.000000,0.000000,0.250000,0,0);}
.mf4_c01342{transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149175,0.000000,0.000000,0.250000,0,0);}
.m83_c01342{transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149725,0.000000,0.000000,0.250000,0,0);}
.m26_c01342{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.mf5_c01342{transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151450,0.000000,0.000000,0.250000,0,0);}
.m165_c01342{transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);}
.m162_c01342{transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152675,0.000000,0.000000,0.250000,0,0);}
.m10f_c01342{transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153075,0.000000,0.000000,0.250000,0,0);}
.m50_c01342{transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153175,0.000000,0.000000,0.250000,0,0);}
.m17b_c01342{transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154475,0.000000,0.000000,0.250000,0,0);}
.m115_c01342{transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154975,0.000000,0.000000,0.250000,0,0);}
.md6_c01342{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m11b_c01342{transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157525,0.000000,0.000000,0.250000,0,0);}
.m135_c01342{transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158275,0.000000,0.000000,0.250000,0,0);}
.m12e_c01342{transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159775,0.000000,0.000000,0.250000,0,0);}
.m172_c01342{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m102_c01342{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m117_c01342{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m17a_c01342{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.m16a_c01342{transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161225,0.000000,0.000000,0.250000,0,0);}
.mc0_c01342{transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161375,0.000000,0.000000,0.250000,0,0);}
.m16d_c01342{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m70_c01342{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.mb0_c01342{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.m54_c01342{transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166575,0.000000,0.000000,0.250000,0,0);}
.mf7_c01342{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);}
.m168_c01342{transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167350,0.000000,0.000000,0.250000,0,0);}
.m65_c01342{transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168400,0.000000,0.000000,0.250000,0,0);}
.m10b_c01342{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m170_c01342{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);}
.m151_c01342{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);}
.m114_c01342{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);}
.m4a_c01342{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);}
.m160_c01342{transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170900,0.000000,0.000000,0.250000,0,0);}
.mb9_c01342{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m127_c01342{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);}
.m36_c01342{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);}
.m14c_c01342{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.m94_c01342{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);}
.m155_c01342{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m5_c01342{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);}
.mde_c01342{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.m122_c01342{transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177650,0.000000,0.000000,0.250000,0,0);}
.mf1_c01342{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);}
.mb5_c01342{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m87_c01342{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);}
.m126_c01342{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);}
.m1a_c01342{transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181450,0.000000,0.000000,0.250000,0,0);}
.m98_c01342{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.m107_c01342{transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);}
.mbc_c01342{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m2f_c01342{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.mf0_c01342{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.mec_c01342{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);}
.m171_c01342{transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184425,0.000000,0.000000,0.250000,0,0);}
.m10_c01342{transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185200,0.000000,0.000000,0.250000,0,0);}
.med_c01342{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);}
.m6d_c01342{transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186925,0.000000,0.000000,0.250000,0,0);}
.m16c_c01342{transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186950,0.000000,0.000000,0.250000,0,0);}
.mcd_c01342{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.mf2_c01342{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m149_c01342{transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187600,0.000000,0.000000,0.250000,0,0);}
.m8a_c01342{transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188975,0.000000,0.000000,0.250000,0,0);}
.m72_c01342{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);}
.m118_c01342{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);}
.m12f_c01342{transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01342{transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190575,0.000000,0.000000,0.250000,0,0);}
.m178_c01342{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.m169_c01342{transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191450,0.000000,0.000000,0.250000,0,0);}
.mb3_c01342{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m154_c01342{transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191525,0.000000,0.000000,0.250000,0,0);}
.m95_c01342{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);}
.m75_c01342{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m133_c01342{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m134_c01342{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.me5_c01342{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);}
.me6_c01342{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);}
.m58_c01342{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.m61_c01342{transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195175,0.000000,0.000000,0.250000,0,0);}
.m4b_c01342{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.m158_c01342{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m13d_c01342{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);}
.m6c_c01342{transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196200,0.000000,0.000000,0.250000,0,0);}
.m84_c01342{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);}
.mb7_c01342{transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);}
.m3b_c01342{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.m145_c01342{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);}
.mc5_c01342{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m11a_c01342{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);}
.m143_c01342{transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198525,0.000000,0.000000,0.250000,0,0);}
.m140_c01342{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.m16_c01342{transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198750,0.000000,0.000000,0.250000,0,0);}
.m12d_c01342{transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199025,0.000000,0.000000,0.250000,0,0);}
.m159_c01342{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m45_c01342{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);}
.ma2_c01342{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m15d_c01342{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m109_c01342{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);}
.md7_c01342{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.m86_c01342{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);}
.mfe_c01342{transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201225,0.000000,0.000000,0.250000,0,0);}
.m10c_c01342{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.mdd_c01342{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m4d_c01342{transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);}
.mb1_c01342{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);}
.m4_c01342{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.m153_c01342{transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);}
.m14a_c01342{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);}
.mdf_c01342{transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);}
.m90_c01342{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);}
.m6e_c01342{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);}
.m38_c01342{transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);}
.mdb_c01342{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);}
.m29_c01342{transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204050,0.000000,0.000000,0.250000,0,0);}
.m5c_c01342{transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204175,0.000000,0.000000,0.250000,0,0);}
.m9e_c01342{transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204250,0.000000,0.000000,0.250000,0,0);}
.m150_c01342{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);}
.m16f_c01342{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.md1_c01342{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);}
.m4e_c01342{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);}
.m7b_c01342{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m60_c01342{transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205775,0.000000,0.000000,0.250000,0,0);}
.m12c_c01342{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.mbb_c01342{transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206175,0.000000,0.000000,0.250000,0,0);}
.m13c_c01342{transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);}
.m91_c01342{transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206950,0.000000,0.000000,0.250000,0,0);}
.mbe_c01342{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);}
.m6b_c01342{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);}
.m176_c01342{transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207700,0.000000,0.000000,0.250000,0,0);}
.me4_c01342{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);}
.md9_c01342{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.me0_c01342{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m93_c01342{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);}
.m8c_c01342{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);}
.m24_c01342{transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208650,0.000000,0.000000,0.250000,0,0);}
.m8d_c01342{transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208725,0.000000,0.000000,0.250000,0,0);}
.mc9_c01342{transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208775,0.000000,0.000000,0.250000,0,0);}
.m97_c01342{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);}
.mcf_c01342{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.m1c_c01342{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m136_c01342{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);}
.ma6_c01342{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);}
.m152_c01342{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);}
.m89_c01342{transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);}
.md4_c01342{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m10a_c01342{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.m106_c01342{transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212275,0.000000,0.000000,0.250000,0,0);}
.m121_c01342{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);}
.m32_c01342{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);}
.md8_c01342{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);}
.mc6_c01342{transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215350,0.000000,0.000000,0.250000,0,0);}
.m101_c01342{transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);}
.m9a_c01342{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);}
.m17c_c01342{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.ma8_c01342{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);}
.m81_c01342{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);}
.m9b_c01342{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m82_c01342{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.md3_c01342{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);}
.m156_c01342{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);}
.m14_c01342{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.mc_c01342{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);}
.m129_c01342{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.mea_c01342{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);}
.m11d_c01342{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);}
.m96_c01342{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);}
.m100_c01342{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.mf3_c01342{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);}
.m14e_c01342{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);}
.mc3_c01342{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.mff_c01342{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.m13b_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);}
.m73_c01342{transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);}
.m110_c01342{transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);}
.md5_c01342{transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221875,0.000000,0.000000,0.250000,0,0);}
.mba_c01342{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.ma1_c01342{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);}
.mfd_c01342{transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222600,0.000000,0.000000,0.250000,0,0);}
.me9_c01342{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);}
.m17_c01342{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.md2_c01342{transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223050,0.000000,0.000000,0.250000,0,0);}
.m146_c01342{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.m14f_c01342{transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223300,0.000000,0.000000,0.250000,0,0);}
.m12b_c01342{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);}
.m10d_c01342{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m16b_c01342{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);}
.m3a_c01342{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.me2_c01342{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m11c_c01342{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.meb_c01342{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.mce_c01342{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);}
.m175_c01342{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m15e_c01342{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.m103_c01342{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);}
.m92_c01342{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m173_c01342{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m144_c01342{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);}
.mee_c01342{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);}
.m11e_c01342{transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);}
.m4f_c01342{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);}
.m5e_c01342{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m9f_c01342{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);}
.m62_c01342{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m131_c01342{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);}
.m104_c01342{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);}
.m78_c01342{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.m2d_c01342{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);}
.m167_c01342{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);}
.m111_c01342{transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235375,0.000000,0.000000,0.250000,0,0);}
.m12a_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);}
.m13e_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);}
.m16e_c01342{transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);}
.mb4_c01342{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);}
.m99_c01342{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);}
.m8_c01342{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);}
.mbd_c01342{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);}
.mb2_c01342{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);}
.mef_c01342{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m15a_c01342{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);}
.mb6_c01342{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);}
.m8f_c01342{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);}
.me8_c01342{transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);}
.m124_c01342{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);}
.m68_c01342{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.m105_c01342{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);}
.mac_c01342{transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01342{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.me3_c01342{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m4c_c01342{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.me7_c01342{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);}
.m66_c01342{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);}
.m14d_c01342{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);}
.m14b_c01342{transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240700,0.000000,0.000000,0.250000,0,0);}
.ma4_c01342{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m1b_c01342{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m71_c01342{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);}
.mbf_c01342{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);}
.m40_c01342{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);}
.m177_c01342{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m77_c01342{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);}
.m142_c01342{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m69_c01342{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.mab_c01342{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);}
.m3d_c01342{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.m7f_c01342{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);}
.mcc_c01342{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m15_c01342{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.mda_c01342{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m141_c01342{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);}
.m11_c01342{transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);}
.m8e_c01342{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);}
.m64_c01342{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);}
.m13f_c01342{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);}
.mdc_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);}
.m5a_c01342{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m7c_c01342{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);}
.mf_c01342{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);}
.m25_c01342{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m48_c01342{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);}
.m9_c01342{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);}
.m21_c01342{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);}
.m6_c01342{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);}
.m59_c01342{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01342{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01342{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m56_c01342{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);}
.md_c01342{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.ma_c01342{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);}
.m49_c01342{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);}
.me_c01342{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01342{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);}
.m2_c01342{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m43_c01342{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m27_c01342{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);}
.m1f_c01342{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m12_c01342{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);}
.m2a_c01342{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);}
.m63_c01342{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c01342{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.me1_c01342{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);}
.m2c_c01342{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m88_c01342{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01342{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);}
.m2e_c01342{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m42_c01342{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01342{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m47_c01342{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01342{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01342{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m44_c01342{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);}
.m128_c01342{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.md0_c01342{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.ma9_c01342{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m39_c01342{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m19_c01342{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);}
.mfc_c01342{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);}
.m85_c01342{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m53_c01342{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m55_c01342{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);}
.ma3_c01342{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m34_c01342{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);}
.m132_c01342{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01342{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mc7_c01342{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);}
.m57_c01342{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m80_c01342{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m125_c01342{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);}
.m116_c01342{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc8_c01342{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mc4_c01342{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m52_c01342{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c01342{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m148_c01342{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.maa_c01342{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m0_c01342{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m33_c01342{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m10e_c01342{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);}
.m7a_c01342{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m13_c01342{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9d_c01342{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m8b_c01342{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01342{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m41_c01342{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mca_c01342{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);}
.ma7_c01342{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01342{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m112_c01342{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m22_c01342{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.mc2_c01342{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m76_c01342{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m30_c01342{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.ma0_c01342{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m130_c01342{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m17e_c01342{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mcb_c01342{transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.550000,0.000000,0.000000,0.250000,0,0);}
.m13a_c01342{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m28_c01342{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.maf_c01342{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01342{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m108_c01342{transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.640000,0.000000,0.000000,0.250000,0,0);}
.m179_c01342{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m37_c01342{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m23_c01342{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m18_c01342{transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.837500,0.000000,0.000000,0.250000,0,0);}
.mf6_c01342{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.mb_c01342{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m120_c01342{transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);}
.m15b_c01342{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.mad_c01342{transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.075000,0.000000,0.000000,0.250000,0,0);}
.mf9_c01342{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m79_c01342{transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.202500,0.000000,0.000000,0.250000,0,0);}
.mfa_c01342{transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.205000,0.000000,0.000000,0.250000,0,0);}
.m157_c01342{transform:matrix(1.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.237500,0.000000,0.000000,0.250000,0,0);}
.m74_c01342{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m123_c01342{transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.375000,0.000000,0.000000,0.250000,0,0);}
.mfb_c01342{transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,0.250000,0,0);}
.m113_c01342{transform:matrix(2.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.067500,0.000000,0.000000,0.250000,0,0);}
.mb8_c01342{transform:matrix(2.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.565000,0.000000,0.000000,0.250000,0,0);}
.v1_c01342{vertical-align:-3.480000px;}
.v0_c01342{vertical-align:0.000000px;}
.v3_c01342{vertical-align:6.900000px;}
.v2_c01342{vertical-align:10.320000px;}
.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;}
}
.ws4_c01342{word-spacing:-15.187560px;}
.ws0_c01342{word-spacing:-14.866200px;}
.ws2_c01342{word-spacing:-14.478720px;}
.ws1_c01342{word-spacing:-2.924700px;}
.ws5_c01342{word-spacing:0.000000px;}
.ws3_c01342{word-spacing:29.473920px;}
.fc0_c01342{color:transparent;}
.fs10_c01342{font-size:3.456000px;}
.fs13_c01342{font-size:6.000000px;}
.fs9_c01342{font-size:6.900000px;}
.fs2_c01342{font-size:10.380000px;}
.fsc_c01342{font-size:13.800000px;}
.fs0_c01342{font-size:17.280000px;}
.fs19_c01342{font-size:20.760000px;}
.fs16_c01342{font-size:24.180000px;}
.fs12_c01342{font-size:27.660000px;}
.fse_c01342{font-size:31.080000px;}
.fs1_c01342{font-size:34.560000px;}
.fs18_c01342{font-size:38.040000px;}
.fs15_c01342{font-size:41.460000px;}
.fs3_c01342{font-size:44.940000px;}
.fs7_c01342{font-size:48.360000px;}
.fs8_c01342{font-size:51.840000px;}
.fs5_c01342{font-size:55.320000px;}
.fs6_c01342{font-size:58.740000px;}
.fsa_c01342{font-size:62.220000px;}
.fsb_c01342{font-size:65.640000px;}
.fsd_c01342{font-size:69.120000px;}
.fs4_c01342{font-size:72.600000px;}
.fs17_c01342{font-size:76.020000px;}
.fsf_c01342{font-size:79.500000px;}
.fs14_c01342{font-size:82.920000px;}
.fs1b_c01342{font-size:86.400000px;}
.fs11_c01342{font-size:89.880000px;}
.fs1a_c01342{font-size:93.300000px;}
.y0_c01342{bottom:0.000000px;}
.y236_c01342{bottom:207.360000px;}
.y234_c01342{bottom:213.405000px;}
.y235_c01342{bottom:214.275000px;}
.y231_c01342{bottom:215.130000px;}
.y22f_c01342{bottom:216.870000px;}
.y230_c01342{bottom:217.725000px;}
.y233_c01342{bottom:219.450000px;}
.y232_c01342{bottom:220.320000px;}
.y22e_c01342{bottom:230.685000px;}
.y22d_c01342{bottom:233.280000px;}
.y229_c01342{bottom:235.005000px;}
.y22a_c01342{bottom:236.730000px;}
.y226_c01342{bottom:237.600000px;}
.y227_c01342{bottom:238.470000px;}
.y22b_c01342{bottom:239.325000px;}
.y22c_c01342{bottom:245.370000px;}
.y228_c01342{bottom:248.835000px;}
.y225_c01342{bottom:251.430000px;}
.y222_c01342{bottom:252.285000px;}
.y224_c01342{bottom:253.155000px;}
.y220_c01342{bottom:254.010000px;}
.y221_c01342{bottom:254.880000px;}
.y223_c01342{bottom:256.605000px;}
.y21f_c01342{bottom:258.330000px;}
.y21e_c01342{bottom:259.200000px;}
.y21c_c01342{bottom:268.710000px;}
.y21b_c01342{bottom:269.565000px;}
.y21d_c01342{bottom:271.290000px;}
.y21a_c01342{bottom:273.030000px;}
.y219_c01342{bottom:276.480000px;}
.y218_c01342{bottom:285.120000px;}
.y1ae_c01342{bottom:287.715000px;}
.y1af_c01342{bottom:288.570000px;}
.y1b1_c01342{bottom:289.440000px;}
.y1b0_c01342{bottom:290.310000px;}
.y217_c01342{bottom:291.165000px;}
.y216_c01342{bottom:292.890000px;}
.y215_c01342{bottom:293.760000px;}
.y1ac_c01342{bottom:295.485000px;}
.y1ad_c01342{bottom:296.355000px;}
.y1ab_c01342{bottom:298.080000px;}
.y213_c01342{bottom:307.590000px;}
.y212_c01342{bottom:308.445000px;}
.y211_c01342{bottom:309.315000px;}
.y210_c01342{bottom:310.170000px;}
.y214_c01342{bottom:311.040000px;}
.y20d_c01342{bottom:322.275000px;}
.y20c_c01342{bottom:324.000000px;}
.y20f_c01342{bottom:325.725000px;}
.y20e_c01342{bottom:326.595000px;}
.y1a6_c01342{bottom:327.450000px;}
.y1a7_c01342{bottom:329.190000px;}
.y1a9_c01342{bottom:330.045000px;}
.y1aa_c01342{bottom:331.770000px;}
.y1a5_c01342{bottom:335.235000px;}
.y1a8_c01342{bottom:338.685000px;}
.y20a_c01342{bottom:339.555000px;}
.y208_c01342{bottom:340.410000px;}
.y20b_c01342{bottom:341.280000px;}
.y207_c01342{bottom:342.150000px;}
.y206_c01342{bottom:343.005000px;}
.y209_c01342{bottom:343.875000px;}
.y1a4_c01342{bottom:345.600000px;}
.y1a3_c01342{bottom:348.195000px;}
.y1a1_c01342{bottom:349.050000px;}
.y205_c01342{bottom:349.920000px;}
.y204_c01342{bottom:350.790000px;}
.y1a2_c01342{bottom:352.515000px;}
.y203_c01342{bottom:353.370000px;}
.y201_c01342{bottom:354.240000px;}
.y202_c01342{bottom:355.110000px;}
.y1ff_c01342{bottom:355.965000px;}
.y200_c01342{bottom:356.835000px;}
.y1a0_c01342{bottom:363.750000px;}
.y19f_c01342{bottom:368.070000px;}
.y1fe_c01342{bottom:371.520000px;}
.y1fc_c01342{bottom:374.115000px;}
.y1fa_c01342{bottom:374.970000px;}
.y1fb_c01342{bottom:377.565000px;}
.y1fd_c01342{bottom:378.435000px;}
.y1f9_c01342{bottom:382.755000px;}
.y19e_c01342{bottom:384.480000px;}
.y19d_c01342{bottom:386.205000px;}
.y19c_c01342{bottom:387.075000px;}
.y19b_c01342{bottom:387.930000px;}
.y19a_c01342{bottom:388.800000px;}
.y1f8_c01342{bottom:391.395000px;}
.y1f6_c01342{bottom:392.250000px;}
.y1f5_c01342{bottom:397.440000px;}
.y197_c01342{bottom:398.310000px;}
.y1f7_c01342{bottom:399.165000px;}
.y1f4_c01342{bottom:400.035000px;}
.y196_c01342{bottom:400.890000px;}
.y198_c01342{bottom:401.760000px;}
.y194_c01342{bottom:404.355000px;}
.y195_c01342{bottom:405.210000px;}
.y199_c01342{bottom:407.805000px;}
.y1f3_c01342{bottom:412.995000px;}
.y1f0_c01342{bottom:416.445000px;}
.y1ef_c01342{bottom:418.170000px;}
.y192_c01342{bottom:419.040000px;}
.y193_c01342{bottom:420.765000px;}
.y1f1_c01342{bottom:422.490000px;}
.y1f2_c01342{bottom:423.360000px;}
.y1ec_c01342{bottom:428.550000px;}
.y1eb_c01342{bottom:429.405000px;}
.y1ee_c01342{bottom:430.275000px;}
.y1e9_c01342{bottom:432.000000px;}
.y1ed_c01342{bottom:432.870000px;}
.y1ea_c01342{bottom:434.595000px;}
.y18f_c01342{bottom:438.045000px;}
.y190_c01342{bottom:438.915000px;}
.y18e_c01342{bottom:440.640000px;}
.y1e8_c01342{bottom:444.090000px;}
.y1e7_c01342{bottom:444.960000px;}
.y1e4_c01342{bottom:446.685000px;}
.y1e6_c01342{bottom:447.555000px;}
.y191_c01342{bottom:448.410000px;}
.y18c_c01342{bottom:450.150000px;}
.y18a_c01342{bottom:451.005000px;}
.y1e3_c01342{bottom:451.875000px;}
.y188_c01342{bottom:452.730000px;}
.y18d_c01342{bottom:453.600000px;}
.y18b_c01342{bottom:454.470000px;}
.y187_c01342{bottom:456.195000px;}
.y189_c01342{bottom:457.050000px;}
.y1e5_c01342{bottom:460.515000px;}
.y1e2_c01342{bottom:466.560000px;}
.y1e1_c01342{bottom:467.430000px;}
.y185_c01342{bottom:468.285000px;}
.y1df_c01342{bottom:469.155000px;}
.y1e0_c01342{bottom:470.010000px;}
.y184_c01342{bottom:470.880000px;}
.y182_c01342{bottom:471.750000px;}
.y181_c01342{bottom:474.330000px;}
.y1de_c01342{bottom:475.200000px;}
.y183_c01342{bottom:476.070000px;}
.y1dd_c01342{bottom:476.925000px;}
.y1dc_c01342{bottom:480.390000px;}
.y186_c01342{bottom:481.245000px;}
.y1db_c01342{bottom:482.970000px;}
.y1da_c01342{bottom:484.710000px;}
.y180_c01342{bottom:485.565000px;}
.y1d9_c01342{bottom:487.290000px;}
.y17f_c01342{bottom:488.160000px;}
.y17e_c01342{bottom:489.885000px;}
.y17b_c01342{bottom:491.610000px;}
.y17d_c01342{bottom:492.480000px;}
.y17c_c01342{bottom:493.350000px;}
.y1d8_c01342{bottom:497.670000px;}
.y1d6_c01342{bottom:498.525000px;}
.y1d7_c01342{bottom:502.845000px;}
.y17a_c01342{bottom:503.715000px;}
.y1d5_c01342{bottom:506.310000px;}
.y177_c01342{bottom:507.165000px;}
.y179_c01342{bottom:508.035000px;}
.y176_c01342{bottom:508.890000px;}
.y178_c01342{bottom:509.760000px;}
.y175_c01342{bottom:510.630000px;}
.y173_c01342{bottom:511.485000px;}
.y174_c01342{bottom:512.355000px;}
.y1d4_c01342{bottom:513.210000px;}
.y1d3_c01342{bottom:518.400000px;}
.y171_c01342{bottom:521.850000px;}
.y170_c01342{bottom:522.720000px;}
.y16f_c01342{bottom:523.590000px;}
.y172_c01342{bottom:524.445000px;}
.y16e_c01342{bottom:526.170000px;}
.y1d1_c01342{bottom:534.810000px;}
.y1d2_c01342{bottom:535.680000px;}
.y16d_c01342{bottom:537.405000px;}
.y16b_c01342{bottom:538.275000px;}
.y16c_c01342{bottom:539.130000px;}
.y16a_c01342{bottom:540.000000px;}
.y168_c01342{bottom:542.595000px;}
.y169_c01342{bottom:546.045000px;}
.y1cd_c01342{bottom:552.960000px;}
.y1d0_c01342{bottom:553.830000px;}
.y1cf_c01342{bottom:554.685000px;}
.y1ce_c01342{bottom:557.280000px;}
.y1cc_c01342{bottom:558.150000px;}
.y1cb_c01342{bottom:569.370000px;}
.y1c9_c01342{bottom:571.110000px;}
.y1c7_c01342{bottom:571.965000px;}
.y1ca_c01342{bottom:572.835000px;}
.y166_c01342{bottom:574.560000px;}
.y1c8_c01342{bottom:575.430000px;}
.y167_c01342{bottom:578.880000px;}
.y1c6_c01342{bottom:589.245000px;}
.y1c5_c01342{bottom:590.970000px;}
.y1c4_c01342{bottom:609.120000px;}
.y1c3_c01342{bottom:609.990000px;}
.y165_c01342{bottom:611.715000px;}
.y164_c01342{bottom:615.165000px;}
.y161_c01342{bottom:616.890000px;}
.y163_c01342{bottom:617.760000px;}
.y160_c01342{bottom:624.675000px;}
.y15f_c01342{bottom:625.530000px;}
.y15e_c01342{bottom:627.270000px;}
.y162_c01342{bottom:628.125000px;}
.y15c_c01342{bottom:630.720000px;}
.y15d_c01342{bottom:633.315000px;}
.y15b_c01342{bottom:643.680000px;}
.y15a_c01342{bottom:645.405000px;}
.y158_c01342{bottom:646.275000px;}
.y159_c01342{bottom:647.130000px;}
.y157_c01342{bottom:649.725000px;}
.y155_c01342{bottom:656.640000px;}
.y156_c01342{bottom:659.235000px;}
.y152_c01342{bottom:660.090000px;}
.y154_c01342{bottom:660.960000px;}
.y153_c01342{bottom:661.830000px;}
.y14f_c01342{bottom:662.685000px;}
.y151_c01342{bottom:665.280000px;}
.y14d_c01342{bottom:666.150000px;}
.y150_c01342{bottom:667.005000px;}
.y14e_c01342{bottom:667.875000px;}
.y14c_c01342{bottom:673.050000px;}
.y14a_c01342{bottom:676.515000px;}
.y14b_c01342{bottom:677.370000px;}
.y148_c01342{bottom:679.110000px;}
.y149_c01342{bottom:680.835000px;}
.y13f_c01342{bottom:692.925000px;}
.y141_c01342{bottom:693.795000px;}
.y147_c01342{bottom:694.650000px;}
.y145_c01342{bottom:695.520000px;}
.y143_c01342{bottom:697.245000px;}
.y142_c01342{bottom:698.115000px;}
.y140_c01342{bottom:699.840000px;}
.y146_c01342{bottom:704.160000px;}
.y144_c01342{bottom:705.030000px;}
.y13e_c01342{bottom:707.610000px;}
.y13d_c01342{bottom:709.350000px;}
.y13b_c01342{bottom:711.930000px;}
.y138_c01342{bottom:714.525000px;}
.y13c_c01342{bottom:715.395000px;}
.y136_c01342{bottom:716.250000px;}
.y13a_c01342{bottom:717.990000px;}
.y139_c01342{bottom:718.845000px;}
.y137_c01342{bottom:720.570000px;}
.y135_c01342{bottom:725.760000px;}
.y133_c01342{bottom:728.355000px;}
.y130_c01342{bottom:730.080000px;}
.y132_c01342{bottom:731.805000px;}
.y131_c01342{bottom:733.530000px;}
.y12e_c01342{bottom:736.125000px;}
.y12f_c01342{bottom:736.995000px;}
.y12d_c01342{bottom:737.850000px;}
.y134_c01342{bottom:742.170000px;}
.y12c_c01342{bottom:743.040000px;}
.y12b_c01342{bottom:745.635000px;}
.y129_c01342{bottom:747.360000px;}
.y128_c01342{bottom:748.230000px;}
.y127_c01342{bottom:749.955000px;}
.y12a_c01342{bottom:751.680000px;}
.y125_c01342{bottom:753.405000px;}
.y126_c01342{bottom:755.130000px;}
.y11f_c01342{bottom:762.045000px;}
.y124_c01342{bottom:762.915000px;}
.y122_c01342{bottom:763.770000px;}
.y11e_c01342{bottom:764.640000px;}
.y123_c01342{bottom:765.510000px;}
.y121_c01342{bottom:766.365000px;}
.y120_c01342{bottom:767.235000px;}
.y11c_c01342{bottom:768.090000px;}
.y11d_c01342{bottom:769.830000px;}
.y11a_c01342{bottom:770.685000px;}
.y11b_c01342{bottom:772.410000px;}
.y118_c01342{bottom:777.600000px;}
.y119_c01342{bottom:778.470000px;}
.y116_c01342{bottom:781.920000px;}
.y115_c01342{bottom:784.515000px;}
.y117_c01342{bottom:788.835000px;}
.y112_c01342{bottom:796.605000px;}
.y114_c01342{bottom:798.330000px;}
.y110_c01342{bottom:799.200000px;}
.y10f_c01342{bottom:800.070000px;}
.y113_c01342{bottom:800.925000px;}
.y10e_c01342{bottom:801.795000px;}
.y111_c01342{bottom:803.520000px;}
.y10b_c01342{bottom:804.390000px;}
.y10c_c01342{bottom:805.245000px;}
.y10d_c01342{bottom:807.840000px;}
.y10a_c01342{bottom:814.755000px;}
.y108_c01342{bottom:816.480000px;}
.y107_c01342{bottom:817.350000px;}
.y105_c01342{bottom:818.205000px;}
.y109_c01342{bottom:819.075000px;}
.y103_c01342{bottom:820.800000px;}
.y104_c01342{bottom:822.525000px;}
.y101_c01342{bottom:823.395000px;}
.y106_c01342{bottom:824.250000px;}
.y102_c01342{bottom:825.120000px;}
.yff_c01342{bottom:831.165000px;}
.y100_c01342{bottom:832.890000px;}
.yfe_c01342{bottom:836.355000px;}
.yfb_c01342{bottom:837.210000px;}
.yfd_c01342{bottom:838.080000px;}
.yfc_c01342{bottom:841.530000px;}
.yfa_c01342{bottom:845.850000px;}
.yf9_c01342{bottom:848.445000px;}
.yf7_c01342{bottom:849.315000px;}
.yf0_c01342{bottom:851.040000px;}
.yf1_c01342{bottom:851.910000px;}
.yf8_c01342{bottom:852.765000px;}
.yf5_c01342{bottom:853.635000px;}
.yf6_c01342{bottom:855.360000px;}
.yf3_c01342{bottom:856.230000px;}
.yf4_c01342{bottom:857.085000px;}
.yf2_c01342{bottom:857.955000px;}
.yef_c01342{bottom:861.405000px;}
.yec_c01342{bottom:865.725000px;}
.yeb_c01342{bottom:866.595000px;}
.yed_c01342{bottom:867.450000px;}
.yee_c01342{bottom:868.320000px;}
.yea_c01342{bottom:869.190000px;}
.ye8_c01342{bottom:870.045000px;}
.ye4_c01342{bottom:871.770000px;}
.ye9_c01342{bottom:872.640000px;}
.ye2_c01342{bottom:873.510000px;}
.ye7_c01342{bottom:874.365000px;}
.ye6_c01342{bottom:875.235000px;}
.ye5_c01342{bottom:876.090000px;}
.ye3_c01342{bottom:877.830000px;}
.ydf_c01342{bottom:883.005000px;}
.ye1_c01342{bottom:884.730000px;}
.ye0_c01342{bottom:886.470000px;}
.yda_c01342{bottom:887.325000px;}
.yde_c01342{bottom:888.195000px;}
.ydd_c01342{bottom:889.050000px;}
.ydc_c01342{bottom:890.790000px;}
.yd8_c01342{bottom:891.645000px;}
.yd9_c01342{bottom:894.240000px;}
.ydb_c01342{bottom:896.835000px;}
.yd7_c01342{bottom:900.285000px;}
.yd6_c01342{bottom:903.750000px;}
.yd5_c01342{bottom:906.330000px;}
.yd2_c01342{bottom:907.200000px;}
.yd1_c01342{bottom:908.925000px;}
.yd4_c01342{bottom:909.795000px;}
.yd3_c01342{bottom:910.650000px;}
.yd0_c01342{bottom:913.245000px;}
.ycc_c01342{bottom:917.565000px;}
.ycf_c01342{bottom:921.030000px;}
.yca_c01342{bottom:921.885000px;}
.ycd_c01342{bottom:922.755000px;}
.yce_c01342{bottom:923.610000px;}
.ycb_c01342{bottom:925.350000px;}
.yc7_c01342{bottom:927.075000px;}
.yc9_c01342{bottom:928.800000px;}
.yc8_c01342{bottom:930.525000px;}
.yc6_c01342{bottom:935.715000px;}
.yc5_c01342{bottom:936.570000px;}
.yc3_c01342{bottom:940.035000px;}
.ybf_c01342{bottom:940.890000px;}
.ybe_c01342{bottom:941.760000px;}
.yc0_c01342{bottom:942.630000px;}
.yc4_c01342{bottom:943.485000px;}
.yc2_c01342{bottom:944.355000px;}
.yc1_c01342{bottom:945.210000px;}
.ybd_c01342{bottom:953.850000px;}
.y1c2_c01342{bottom:954.720000px;}
.yb7_c01342{bottom:956.445000px;}
.ybb_c01342{bottom:958.170000px;}
.yb8_c01342{bottom:959.040000px;}
.yba_c01342{bottom:959.910000px;}
.yb9_c01342{bottom:960.765000px;}
.yb6_c01342{bottom:961.635000px;}
.yb5_c01342{bottom:963.360000px;}
.yb4_c01342{bottom:964.230000px;}
.yb3_c01342{bottom:965.085000px;}
.yb2_c01342{bottom:965.955000px;}
.ybc_c01342{bottom:968.550000px;}
.yb1_c01342{bottom:970.275000px;}
.yad_c01342{bottom:973.725000px;}
.yb0_c01342{bottom:974.595000px;}
.yab_c01342{bottom:975.450000px;}
.yae_c01342{bottom:976.320000px;}
.yaf_c01342{bottom:978.045000px;}
.yac_c01342{bottom:978.915000px;}
.yaa_c01342{bottom:982.365000px;}
.ya8_c01342{bottom:988.410000px;}
.ya7_c01342{bottom:989.280000px;}
.ya9_c01342{bottom:991.875000px;}
.ya6_c01342{bottom:992.730000px;}
.ya4_c01342{bottom:993.600000px;}
.ya5_c01342{bottom:995.325000px;}
.ya3_c01342{bottom:998.790000px;}
.ya1_c01342{bottom:1005.690000px;}
.y9e_c01342{bottom:1008.285000px;}
.y9f_c01342{bottom:1009.155000px;}
.ya2_c01342{bottom:1010.880000px;}
.y9a_c01342{bottom:1011.750000px;}
.ya0_c01342{bottom:1012.605000px;}
.y9d_c01342{bottom:1013.475000px;}
.y9c_c01342{bottom:1016.070000px;}
.y9b_c01342{bottom:1016.925000px;}
.y97_c01342{bottom:1025.565000px;}
.y98_c01342{bottom:1026.435000px;}
.y99_c01342{bottom:1027.290000px;}
.y96_c01342{bottom:1029.030000px;}
.y95_c01342{bottom:1029.885000px;}
.y94_c01342{bottom:1030.755000px;}
.y92_c01342{bottom:1040.250000px;}
.y8e_c01342{bottom:1041.120000px;}
.y8d_c01342{bottom:1041.990000px;}
.y93_c01342{bottom:1043.715000px;}
.y91_c01342{bottom:1044.570000px;}
.y8c_c01342{bottom:1045.440000px;}
.y90_c01342{bottom:1046.310000px;}
.y8f_c01342{bottom:1047.165000px;}
.y8b_c01342{bottom:1051.485000px;}
.y8a_c01342{bottom:1052.355000px;}
.y89_c01342{bottom:1054.080000px;}
.y88_c01342{bottom:1057.530000px;}
.y87_c01342{bottom:1058.400000px;}
.y86_c01342{bottom:1059.270000px;}
.y84_c01342{bottom:1062.720000px;}
.y85_c01342{bottom:1063.590000px;}
.y82_c01342{bottom:1064.445000px;}
.y83_c01342{bottom:1065.315000px;}
.y7e_c01342{bottom:1066.170000px;}
.y80_c01342{bottom:1067.910000px;}
.y7f_c01342{bottom:1069.635000px;}
.y7b_c01342{bottom:1077.405000px;}
.y81_c01342{bottom:1078.275000px;}
.y7d_c01342{bottom:1080.000000px;}
.y7c_c01342{bottom:1080.870000px;}
.y7a_c01342{bottom:1081.725000px;}
.y76_c01342{bottom:1082.595000px;}
.y79_c01342{bottom:1083.450000px;}
.y78_c01342{bottom:1084.320000px;}
.y77_c01342{bottom:1086.045000px;}
.y75_c01342{bottom:1086.915000px;}
.y72_c01342{bottom:1092.960000px;}
.y73_c01342{bottom:1093.830000px;}
.y70_c01342{bottom:1094.685000px;}
.y6f_c01342{bottom:1097.280000px;}
.y6d_c01342{bottom:1098.150000px;}
.y71_c01342{bottom:1099.005000px;}
.y6e_c01342{bottom:1100.730000px;}
.y6c_c01342{bottom:1102.470000px;}
.y74_c01342{bottom:1104.195000px;}
.y69_c01342{bottom:1113.690000px;}
.y6a_c01342{bottom:1114.560000px;}
.y67_c01342{bottom:1115.430000px;}
.y63_c01342{bottom:1117.155000px;}
.y68_c01342{bottom:1118.010000px;}
.y6b_c01342{bottom:1119.750000px;}
.y64_c01342{bottom:1121.475000px;}
.y62_c01342{bottom:1123.200000px;}
.y5e_c01342{bottom:1128.390000px;}
.y60_c01342{bottom:1129.245000px;}
.y65_c01342{bottom:1130.115000px;}
.y66_c01342{bottom:1130.970000px;}
.y61_c01342{bottom:1131.840000px;}
.y5a_c01342{bottom:1133.565000px;}
.y5d_c01342{bottom:1134.435000px;}
.y5f_c01342{bottom:1135.290000px;}
.y5b_c01342{bottom:1136.160000px;}
.y59_c01342{bottom:1137.030000px;}
.y58_c01342{bottom:1139.610000px;}
.y5c_c01342{bottom:1148.250000px;}
.y53_c01342{bottom:1149.990000px;}
.y57_c01342{bottom:1150.845000px;}
.y55_c01342{bottom:1151.715000px;}
.y56_c01342{bottom:1152.570000px;}
.y50_c01342{bottom:1153.440000px;}
.y52_c01342{bottom:1155.165000px;}
.y51_c01342{bottom:1156.035000px;}
.y54_c01342{bottom:1156.890000px;}
.y4f_c01342{bottom:1157.760000px;}
.y4d_c01342{bottom:1161.210000px;}
.y4b_c01342{bottom:1164.675000px;}
.y49_c01342{bottom:1165.530000px;}
.y4e_c01342{bottom:1167.270000px;}
.y48_c01342{bottom:1168.125000px;}
.y4c_c01342{bottom:1168.995000px;}
.y4a_c01342{bottom:1169.850000px;}
.y47_c01342{bottom:1170.720000px;}
.y45_c01342{bottom:1173.315000px;}
.y44_c01342{bottom:1174.170000px;}
.y46_c01342{bottom:1181.955000px;}
.y41_c01342{bottom:1185.405000px;}
.y3d_c01342{bottom:1186.275000px;}
.y3f_c01342{bottom:1187.130000px;}
.y40_c01342{bottom:1188.870000px;}
.y42_c01342{bottom:1189.725000px;}
.y3e_c01342{bottom:1190.595000px;}
.y3c_c01342{bottom:1191.450000px;}
.y43_c01342{bottom:1194.045000px;}
.y38_c01342{bottom:1201.830000px;}
.y3b_c01342{bottom:1202.685000px;}
.y3a_c01342{bottom:1203.555000px;}
.y34_c01342{bottom:1204.410000px;}
.y36_c01342{bottom:1205.280000px;}
.y39_c01342{bottom:1206.150000px;}
.y37_c01342{bottom:1207.005000px;}
.y35_c01342{bottom:1207.875000px;}
.y33_c01342{bottom:1209.600000px;}
.y30_c01342{bottom:1219.965000px;}
.y2d_c01342{bottom:1221.690000px;}
.y2f_c01342{bottom:1222.560000px;}
.y1c1_c01342{bottom:1223.430000px;}
.y32_c01342{bottom:1224.285000px;}
.y2e_c01342{bottom:1225.155000px;}
.y2c_c01342{bottom:1231.200000px;}
.y2b_c01342{bottom:1232.925000px;}
.y29_c01342{bottom:1236.390000px;}
.y31_c01342{bottom:1238.115000px;}
.y2a_c01342{bottom:1239.840000px;}
.y26_c01342{bottom:1240.710000px;}
.y28_c01342{bottom:1241.565000px;}
.y27_c01342{bottom:1243.290000px;}
.y25_c01342{bottom:1244.160000px;}
.y24_c01342{bottom:1251.930000px;}
.y21_c01342{bottom:1252.800000px;}
.y23_c01342{bottom:1254.525000px;}
.y20_c01342{bottom:1255.395000px;}
.y22_c01342{bottom:1256.250000px;}
.y1f_c01342{bottom:1257.120000px;}
.y1c0_c01342{bottom:1273.530000px;}
.y1d_c01342{bottom:1274.400000px;}
.y1c_c01342{bottom:1275.270000px;}
.y1b_c01342{bottom:1276.995000px;}
.y19_c01342{bottom:1277.850000px;}
.y1a_c01342{bottom:1278.720000px;}
.y1e_c01342{bottom:1287.360000px;}
.y1bf_c01342{bottom:1288.230000px;}
.y16_c01342{bottom:1290.810000px;}
.y1bd_c01342{bottom:1291.680000px;}
.y18_c01342{bottom:1292.550000px;}
.y1be_c01342{bottom:1299.450000px;}
.y17_c01342{bottom:1305.510000px;}
.y15_c01342{bottom:1311.555000px;}
.y14_c01342{bottom:1312.410000px;}
.y13_c01342{bottom:1313.280000px;}
.y1bb_c01342{bottom:1324.515000px;}
.y12_c01342{bottom:1325.370000px;}
.y11_c01342{bottom:1326.240000px;}
.y1bc_c01342{bottom:1327.965000px;}
.yf_c01342{bottom:1330.560000px;}
.y10_c01342{bottom:1331.430000px;}
.ye_c01342{bottom:1338.330000px;}
.y1b8_c01342{bottom:1340.925000px;}
.y1ba_c01342{bottom:1342.650000px;}
.yd_c01342{bottom:1343.520000px;}
.yb_c01342{bottom:1345.245000px;}
.y1b9_c01342{bottom:1346.115000px;}
.yc_c01342{bottom:1347.840000px;}
.ya_c01342{bottom:1348.710000px;}
.y1b6_c01342{bottom:1355.610000px;}
.y1b5_c01342{bottom:1358.205000px;}
.y1b7_c01342{bottom:1359.930000px;}
.y6_c01342{bottom:1360.800000px;}
.y9_c01342{bottom:1361.670000px;}
.y1b3_c01342{bottom:1362.525000px;}
.y1b2_c01342{bottom:1363.395000px;}
.y8_c01342{bottom:1364.250000px;}
.y7_c01342{bottom:1365.120000px;}
.y5_c01342{bottom:1365.990000px;}
.y1b4_c01342{bottom:1373.760000px;}
.y4_c01342{bottom:1380.675000px;}
.y2_c01342{bottom:1381.530000px;}
.y3_c01342{bottom:1384.995000px;}
.y1_c01342{bottom:1388.445000px;}
.h12_c01342{height:3.110063px;}
.h15_c01342{height:5.399414px;}
.hb_c01342{height:6.209326px;}
.h4_c01342{height:9.340986px;}
.he_c01342{height:12.418652px;}
.h2_c01342{height:15.550313px;}
.h1c_c01342{height:18.681973px;}
.h18_c01342{height:21.759639px;}
.h14_c01342{height:24.891299px;}
.h10_c01342{height:27.968965px;}
.h3_c01342{height:31.100625px;}
.h1a_c01342{height:34.232285px;}
.h17_c01342{height:37.309951px;}
.h5_c01342{height:40.441611px;}
.h9_c01342{height:43.519277px;}
.h1b_c01342{height:46.302598px;}
.ha_c01342{height:46.650937px;}
.h7_c01342{height:49.782598px;}
.h8_c01342{height:52.860264px;}
.h1d_c01342{height:53.839277px;}
.hc_c01342{height:55.991924px;}
.hd_c01342{height:59.069590px;}
.hf_c01342{height:62.201250px;}
.h6_c01342{height:65.332910px;}
.h19_c01342{height:68.410576px;}
.h11_c01342{height:71.542236px;}
.h16_c01342{height:74.619902px;}
.h1f_c01342{height:77.751563px;}
.h13_c01342{height:80.883223px;}
.h1e_c01342{height:83.960889px;}
.h1_c01342{height:1513.500000px;}
.h0_c01342{height:1513.725000px;}
.w0_c01342{width:1083.450000px;}
.w1_c01342{width:1083.750000px;}
.x0_c01342{left:0.000000px;}
.xf6_c01342{left:71.715000px;}
.xf2_c01342{left:186.630000px;}
.xfe_c01342{left:188.355000px;}
.xfc_c01342{left:190.080000px;}
.xc1_c01342{left:191.805000px;}
.xf3_c01342{left:194.400000px;}
.x8d_c01342{left:196.125000px;}
.xda_c01342{left:197.850000px;}
.xc2_c01342{left:200.445000px;}
.xeb_c01342{left:202.170000px;}
.x71_c01342{left:203.910000px;}
.x9a_c01342{left:205.635000px;}
.x2d_c01342{left:208.230000px;}
.x12_c01342{left:210.810000px;}
.x3f_c01342{left:213.405000px;}
.xfa_c01342{left:215.130000px;}
.x1c_c01342{left:216.870000px;}
.x13_c01342{left:218.595000px;}
.xc_c01342{left:220.320000px;}
.xd_c01342{left:222.045000px;}
.x1f_c01342{left:224.640000px;}
.xae_c01342{left:227.235000px;}
.xe2_c01342{left:228.960000px;}
.xbb_c01342{left:230.685000px;}
.x2_c01342{left:233.280000px;}
.x5_c01342{left:235.005000px;}
.x2e_c01342{left:236.730000px;}
.x84_c01342{left:239.325000px;}
.xf0_c01342{left:241.050000px;}
.xc3_c01342{left:242.790000px;}
.x19_c01342{left:244.515000px;}
.x37_c01342{left:247.110000px;}
.x8e_c01342{left:248.835000px;}
.x6_c01342{left:251.430000px;}
.xee_c01342{left:253.155000px;}
.x9b_c01342{left:254.880000px;}
.xe7_c01342{left:257.475000px;}
.x62_c01342{left:260.070000px;}
.x85_c01342{left:262.650000px;}
.xaf_c01342{left:265.245000px;}
.x3_c01342{left:266.970000px;}
.xe_c01342{left:268.710000px;}
.xed_c01342{left:270.435000px;}
.x86_c01342{left:273.030000px;}
.x4d_c01342{left:274.755000px;}
.xf8_c01342{left:276.480000px;}
.xd6_c01342{left:278.205000px;}
.x9c_c01342{left:279.930000px;}
.xdd_c01342{left:281.670000px;}
.xc4_c01342{left:283.395000px;}
.x2f_c01342{left:286.845000px;}
.x20_c01342{left:290.310000px;}
.x58_c01342{left:292.035000px;}
.x63_c01342{left:295.485000px;}
.xef_c01342{left:297.210000px;}
.x7_c01342{left:299.805000px;}
.x38_c01342{left:302.400000px;}
.x14_c01342{left:304.995000px;}
.x72_c01342{left:306.720000px;}
.xf9_c01342{left:310.170000px;}
.x4e_c01342{left:312.765000px;}
.xcc_c01342{left:315.360000px;}
.x40_c01342{left:317.085000px;}
.xf7_c01342{left:319.680000px;}
.xd0_c01342{left:321.405000px;}
.x15_c01342{left:323.130000px;}
.x9d_c01342{left:325.725000px;}
.x59_c01342{left:327.450000px;}
.x7d_c01342{left:330.045000px;}
.x21_c01342{left:333.510000px;}
.x7e_c01342{left:337.830000px;}
.x4f_c01342{left:340.410000px;}
.xb4_c01342{left:345.600000px;}
.xb0_c01342{left:349.920000px;}
.x22_c01342{left:351.645000px;}
.xd1_c01342{left:353.370000px;}
.x16_c01342{left:355.110000px;}
.x39_c01342{left:356.835000px;}
.xf_c01342{left:358.560000px;}
.xa9_c01342{left:360.285000px;}
.xf5_c01342{left:362.880000px;}
.xd2_c01342{left:364.605000px;}
.x8_c01342{left:367.200000px;}
.xf1_c01342{left:369.795000px;}
.x41_c01342{left:371.520000px;}
.xb5_c01342{left:373.245000px;}
.xfb_c01342{left:374.970000px;}
.xf4_c01342{left:376.710000px;}
.x73_c01342{left:378.435000px;}
.x1_c01342{left:380.160000px;}
.x9_c01342{left:382.755000px;}
.x17_c01342{left:384.480000px;}
.xff_c01342{left:387.075000px;}
.x30_c01342{left:388.800000px;}
.x5a_c01342{left:390.525000px;}
.x7f_c01342{left:394.845000px;}
.x3a_c01342{left:396.570000px;}
.xaa_c01342{left:399.165000px;}
.x50_c01342{left:400.890000px;}
.x87_c01342{left:402.630000px;}
.x68_c01342{left:404.355000px;}
.x1d_c01342{left:407.805000px;}
.x31_c01342{left:411.270000px;}
.xb6_c01342{left:414.720000px;}
.x23_c01342{left:417.315000px;}
.x10_c01342{left:427.680000px;}
.xc5_c01342{left:430.275000px;}
.x4_c01342{left:432.870000px;}
.x18_c01342{left:434.595000px;}
.xde_c01342{left:442.365000px;}
.xe0_c01342{left:444.090000px;}
.x1a_c01342{left:445.830000px;}
.xbc_c01342{left:447.555000px;}
.xa_c01342{left:452.730000px;}
.x11_c01342{left:455.325000px;}
.x9e_c01342{left:457.050000px;}
.xab_c01342{left:462.240000px;}
.x42_c01342{left:463.965000px;}
.x3b_c01342{left:466.560000px;}
.xac_c01342{left:469.155000px;}
.xb_c01342{left:470.880000px;}
.xa4_c01342{left:472.605000px;}
.xb1_c01342{left:475.200000px;}
.x51_c01342{left:476.925000px;}
.xb7_c01342{left:478.650000px;}
.x1e_c01342{left:481.245000px;}
.x69_c01342{left:483.840000px;}
.x43_c01342{left:486.435000px;}
.x64_c01342{left:489.030000px;}
.x3c_c01342{left:490.755000px;}
.xfd_c01342{left:492.480000px;}
.x26_c01342{left:494.205000px;}
.x3d_c01342{left:495.930000px;}
.xa5_c01342{left:499.395000px;}
.xb2_c01342{left:501.990000px;}
.x24_c01342{left:504.570000px;}
.x32_c01342{left:506.310000px;}
.xcd_c01342{left:508.035000px;}
.x74_c01342{left:509.760000px;}
.x65_c01342{left:511.485000px;}
.x6a_c01342{left:513.210000px;}
.x1b_c01342{left:516.675000px;}
.x11e_c01342{left:518.400000px;}
.x113_c01342{left:520.125000px;}
.x11c_c01342{left:522.720000px;}
.x117_c01342{left:524.445000px;}
.xc8_c01342{left:526.170000px;}
.x25_c01342{left:527.910000px;}
.x109_c01342{left:530.490000px;}
.x110_c01342{left:532.230000px;}
.xec_c01342{left:534.810000px;}
.xc9_c01342{left:536.550000px;}
.x75_c01342{left:538.275000px;}
.xd3_c01342{left:540.870000px;}
.x80_c01342{left:542.595000px;}
.x6b_c01342{left:544.320000px;}
.x52_c01342{left:546.915000px;}
.x27_c01342{left:548.640000px;}
.x10e_c01342{left:551.235000px;}
.xbd_c01342{left:553.830000px;}
.x10a_c01342{left:556.410000px;}
.x115_c01342{left:559.875000px;}
.x5b_c01342{left:563.325000px;}
.x88_c01342{left:565.920000px;}
.x8f_c01342{left:569.370000px;}
.x66_c01342{left:571.965000px;}
.x33_c01342{left:574.560000px;}
.x101_c01342{left:576.285000px;}
.x53_c01342{left:579.750000px;}
.x9f_c01342{left:582.330000px;}
.x90_c01342{left:584.925000px;}
.x5c_c01342{left:588.390000px;}
.x76_c01342{left:590.115000px;}
.xe3_c01342{left:591.840000px;}
.x44_c01342{left:594.435000px;}
.x81_c01342{left:597.030000px;}
.x28_c01342{left:600.480000px;}
.xb8_c01342{left:602.205000px;}
.x5d_c01342{left:604.800000px;}
.x34_c01342{left:607.395000px;}
.x10d_c01342{left:609.990000px;}
.x108_c01342{left:612.570000px;}
.xe8_c01342{left:615.165000px;}
.xdf_c01342{left:616.890000px;}
.x96_c01342{left:622.080000px;}
.x6c_c01342{left:624.675000px;}
.xa0_c01342{left:627.270000px;}
.x45_c01342{left:630.720000px;}
.xd7_c01342{left:632.445000px;}
.x89_c01342{left:634.170000px;}
.xca_c01342{left:635.910000px;}
.x35_c01342{left:639.360000px;}
.x54_c01342{left:641.085000px;}
.x91_c01342{left:643.680000px;}
.x77_c01342{left:645.405000px;}
.x104_c01342{left:648.000000px;}
.xa1_c01342{left:650.595000px;}
.xa6_c01342{left:653.190000px;}
.x46_c01342{left:654.915000px;}
.x100_c01342{left:656.640000px;}
.x10b_c01342{left:660.090000px;}
.xe1_c01342{left:661.830000px;}
.x29_c01342{left:663.555000px;}
.x78_c01342{left:665.280000px;}
.x47_c01342{left:667.005000px;}
.x5e_c01342{left:668.730000px;}
.x92_c01342{left:674.790000px;}
.xd8_c01342{left:678.240000px;}
.x11a_c01342{left:679.965000px;}
.x55_c01342{left:681.690000px;}
.x6d_c01342{left:684.285000px;}
.x8a_c01342{left:686.880000px;}
.x5f_c01342{left:688.605000px;}
.xd4_c01342{left:691.200000px;}
.xc6_c01342{left:693.795000px;}
.x120_c01342{left:695.520000px;}
.xe4_c01342{left:697.245000px;}
.xb3_c01342{left:698.970000px;}
.x119_c01342{left:703.290000px;}
.x11f_c01342{left:705.030000px;}
.x48_c01342{left:708.480000px;}
.xa7_c01342{left:711.075000px;}
.x93_c01342{left:715.395000px;}
.x102_c01342{left:717.120000px;}
.x56_c01342{left:718.845000px;}
.x49_c01342{left:720.570000px;}
.x103_c01342{left:722.310000px;}
.xad_c01342{left:725.760000px;}
.x2a_c01342{left:728.355000px;}
.x116_c01342{left:730.080000px;}
.x4a_c01342{left:731.805000px;}
.xdb_c01342{left:734.400000px;}
.x11d_c01342{left:736.125000px;}
.x2b_c01342{left:737.850000px;}
.x97_c01342{left:739.590000px;}
.x6e_c01342{left:741.315000px;}
.x111_c01342{left:743.040000px;}
.x67_c01342{left:745.635000px;}
.x79_c01342{left:747.360000px;}
.x10c_c01342{left:749.955000px;}
.x36_c01342{left:751.680000px;}
.x3e_c01342{left:755.130000px;}
.x8b_c01342{left:756.870000px;}
.x105_c01342{left:758.595000px;}
.xbe_c01342{left:764.640000px;}
.x82_c01342{left:766.365000px;}
.xa2_c01342{left:768.960000px;}
.x11b_c01342{left:771.555000px;}
.x4b_c01342{left:773.280000px;}
.x112_c01342{left:775.005000px;}
.xa8_c01342{left:776.730000px;}
.xcb_c01342{left:778.470000px;}
.x10f_c01342{left:780.195000px;}
.xbf_c01342{left:781.920000px;}
.xc7_c01342{left:783.645000px;}
.x7a_c01342{left:786.240000px;}
.x4c_c01342{left:787.965000px;}
.x94_c01342{left:790.560000px;}
.xdc_c01342{left:794.010000px;}
.xe9_c01342{left:795.750000px;}
.xb9_c01342{left:798.330000px;}
.xc0_c01342{left:800.925000px;}
.x118_c01342{left:802.650000px;}
.x57_c01342{left:804.390000px;}
.x8c_c01342{left:806.115000px;}
.x60_c01342{left:808.710000px;}
.xce_c01342{left:810.435000px;}
.xd9_c01342{left:812.160000px;}
.xba_c01342{left:814.755000px;}
.xe5_c01342{left:816.480000px;}
.x7b_c01342{left:819.075000px;}
.xcf_c01342{left:820.800000px;}
.xa3_c01342{left:822.525000px;}
.x7c_c01342{left:825.120000px;}
.x61_c01342{left:826.845000px;}
.x6f_c01342{left:828.570000px;}
.xea_c01342{left:830.310000px;}
.x98_c01342{left:832.035000px;}
.x95_c01342{left:833.760000px;}
.xe6_c01342{left:838.080000px;}
.x83_c01342{left:841.530000px;}
.x99_c01342{left:844.125000px;}
.x2c_c01342{left:846.720000px;}
.xd5_c01342{left:858.810000px;}
.x114_c01342{left:861.405000px;}
.x70_c01342{left:870.045000px;}
.x106_c01342{left:885.600000px;}
.x107_c01342{left:970.275000px;}
@media print{
.v1_c01342{vertical-align:-3.093333pt;}
.v0_c01342{vertical-align:0.000000pt;}
.v3_c01342{vertical-align:6.133333pt;}
.v2_c01342{vertical-align:9.173333pt;}
.ls0_c01342{letter-spacing:0.000000pt;}
.ws4_c01342{word-spacing:-13.500053pt;}
.ws0_c01342{word-spacing:-13.214400pt;}
.ws2_c01342{word-spacing:-12.869973pt;}
.ws1_c01342{word-spacing:-2.599733pt;}
.ws5_c01342{word-spacing:0.000000pt;}
.ws3_c01342{word-spacing:26.199040pt;}
.fs10_c01342{font-size:3.072000pt;}
.fs13_c01342{font-size:5.333333pt;}
.fs9_c01342{font-size:6.133333pt;}
.fs2_c01342{font-size:9.226667pt;}
.fsc_c01342{font-size:12.266667pt;}
.fs0_c01342{font-size:15.360000pt;}
.fs19_c01342{font-size:18.453333pt;}
.fs16_c01342{font-size:21.493333pt;}
.fs12_c01342{font-size:24.586667pt;}
.fse_c01342{font-size:27.626667pt;}
.fs1_c01342{font-size:30.720000pt;}
.fs18_c01342{font-size:33.813333pt;}
.fs15_c01342{font-size:36.853333pt;}
.fs3_c01342{font-size:39.946667pt;}
.fs7_c01342{font-size:42.986667pt;}
.fs8_c01342{font-size:46.080000pt;}
.fs5_c01342{font-size:49.173333pt;}
.fs6_c01342{font-size:52.213333pt;}
.fsa_c01342{font-size:55.306667pt;}
.fsb_c01342{font-size:58.346667pt;}
.fsd_c01342{font-size:61.440000pt;}
.fs4_c01342{font-size:64.533333pt;}
.fs17_c01342{font-size:67.573333pt;}
.fsf_c01342{font-size:70.666667pt;}
.fs14_c01342{font-size:73.706667pt;}
.fs1b_c01342{font-size:76.800000pt;}
.fs11_c01342{font-size:79.893333pt;}
.fs1a_c01342{font-size:82.933333pt;}
.y0_c01342{bottom:0.000000pt;}
.y236_c01342{bottom:184.320000pt;}
.y234_c01342{bottom:189.693333pt;}
.y235_c01342{bottom:190.466667pt;}
.y231_c01342{bottom:191.226667pt;}
.y22f_c01342{bottom:192.773333pt;}
.y230_c01342{bottom:193.533333pt;}
.y233_c01342{bottom:195.066667pt;}
.y232_c01342{bottom:195.840000pt;}
.y22e_c01342{bottom:205.053333pt;}
.y22d_c01342{bottom:207.360000pt;}
.y229_c01342{bottom:208.893333pt;}
.y22a_c01342{bottom:210.426667pt;}
.y226_c01342{bottom:211.200000pt;}
.y227_c01342{bottom:211.973333pt;}
.y22b_c01342{bottom:212.733333pt;}
.y22c_c01342{bottom:218.106667pt;}
.y228_c01342{bottom:221.186667pt;}
.y225_c01342{bottom:223.493333pt;}
.y222_c01342{bottom:224.253333pt;}
.y224_c01342{bottom:225.026667pt;}
.y220_c01342{bottom:225.786667pt;}
.y221_c01342{bottom:226.560000pt;}
.y223_c01342{bottom:228.093333pt;}
.y21f_c01342{bottom:229.626667pt;}
.y21e_c01342{bottom:230.400000pt;}
.y21c_c01342{bottom:238.853333pt;}
.y21b_c01342{bottom:239.613333pt;}
.y21d_c01342{bottom:241.146667pt;}
.y21a_c01342{bottom:242.693333pt;}
.y219_c01342{bottom:245.760000pt;}
.y218_c01342{bottom:253.440000pt;}
.y1ae_c01342{bottom:255.746667pt;}
.y1af_c01342{bottom:256.506667pt;}
.y1b1_c01342{bottom:257.280000pt;}
.y1b0_c01342{bottom:258.053333pt;}
.y217_c01342{bottom:258.813333pt;}
.y216_c01342{bottom:260.346667pt;}
.y215_c01342{bottom:261.120000pt;}
.y1ac_c01342{bottom:262.653333pt;}
.y1ad_c01342{bottom:263.426667pt;}
.y1ab_c01342{bottom:264.960000pt;}
.y213_c01342{bottom:273.413333pt;}
.y212_c01342{bottom:274.173333pt;}
.y211_c01342{bottom:274.946667pt;}
.y210_c01342{bottom:275.706667pt;}
.y214_c01342{bottom:276.480000pt;}
.y20d_c01342{bottom:286.466667pt;}
.y20c_c01342{bottom:288.000000pt;}
.y20f_c01342{bottom:289.533333pt;}
.y20e_c01342{bottom:290.306667pt;}
.y1a6_c01342{bottom:291.066667pt;}
.y1a7_c01342{bottom:292.613333pt;}
.y1a9_c01342{bottom:293.373333pt;}
.y1aa_c01342{bottom:294.906667pt;}
.y1a5_c01342{bottom:297.986667pt;}
.y1a8_c01342{bottom:301.053333pt;}
.y20a_c01342{bottom:301.826667pt;}
.y208_c01342{bottom:302.586667pt;}
.y20b_c01342{bottom:303.360000pt;}
.y207_c01342{bottom:304.133333pt;}
.y206_c01342{bottom:304.893333pt;}
.y209_c01342{bottom:305.666667pt;}
.y1a4_c01342{bottom:307.200000pt;}
.y1a3_c01342{bottom:309.506667pt;}
.y1a1_c01342{bottom:310.266667pt;}
.y205_c01342{bottom:311.040000pt;}
.y204_c01342{bottom:311.813333pt;}
.y1a2_c01342{bottom:313.346667pt;}
.y203_c01342{bottom:314.106667pt;}
.y201_c01342{bottom:314.880000pt;}
.y202_c01342{bottom:315.653333pt;}
.y1ff_c01342{bottom:316.413333pt;}
.y200_c01342{bottom:317.186667pt;}
.y1a0_c01342{bottom:323.333333pt;}
.y19f_c01342{bottom:327.173333pt;}
.y1fe_c01342{bottom:330.240000pt;}
.y1fc_c01342{bottom:332.546667pt;}
.y1fa_c01342{bottom:333.306667pt;}
.y1fb_c01342{bottom:335.613333pt;}
.y1fd_c01342{bottom:336.386667pt;}
.y1f9_c01342{bottom:340.226667pt;}
.y19e_c01342{bottom:341.760000pt;}
.y19d_c01342{bottom:343.293333pt;}
.y19c_c01342{bottom:344.066667pt;}
.y19b_c01342{bottom:344.826667pt;}
.y19a_c01342{bottom:345.600000pt;}
.y1f8_c01342{bottom:347.906667pt;}
.y1f6_c01342{bottom:348.666667pt;}
.y1f5_c01342{bottom:353.280000pt;}
.y197_c01342{bottom:354.053333pt;}
.y1f7_c01342{bottom:354.813333pt;}
.y1f4_c01342{bottom:355.586667pt;}
.y196_c01342{bottom:356.346667pt;}
.y198_c01342{bottom:357.120000pt;}
.y194_c01342{bottom:359.426667pt;}
.y195_c01342{bottom:360.186667pt;}
.y199_c01342{bottom:362.493333pt;}
.y1f3_c01342{bottom:367.106667pt;}
.y1f0_c01342{bottom:370.173333pt;}
.y1ef_c01342{bottom:371.706667pt;}
.y192_c01342{bottom:372.480000pt;}
.y193_c01342{bottom:374.013333pt;}
.y1f1_c01342{bottom:375.546667pt;}
.y1f2_c01342{bottom:376.320000pt;}
.y1ec_c01342{bottom:380.933333pt;}
.y1eb_c01342{bottom:381.693333pt;}
.y1ee_c01342{bottom:382.466667pt;}
.y1e9_c01342{bottom:384.000000pt;}
.y1ed_c01342{bottom:384.773333pt;}
.y1ea_c01342{bottom:386.306667pt;}
.y18f_c01342{bottom:389.373333pt;}
.y190_c01342{bottom:390.146667pt;}
.y18e_c01342{bottom:391.680000pt;}
.y1e8_c01342{bottom:394.746667pt;}
.y1e7_c01342{bottom:395.520000pt;}
.y1e4_c01342{bottom:397.053333pt;}
.y1e6_c01342{bottom:397.826667pt;}
.y191_c01342{bottom:398.586667pt;}
.y18c_c01342{bottom:400.133333pt;}
.y18a_c01342{bottom:400.893333pt;}
.y1e3_c01342{bottom:401.666667pt;}
.y188_c01342{bottom:402.426667pt;}
.y18d_c01342{bottom:403.200000pt;}
.y18b_c01342{bottom:403.973333pt;}
.y187_c01342{bottom:405.506667pt;}
.y189_c01342{bottom:406.266667pt;}
.y1e5_c01342{bottom:409.346667pt;}
.y1e2_c01342{bottom:414.720000pt;}
.y1e1_c01342{bottom:415.493333pt;}
.y185_c01342{bottom:416.253333pt;}
.y1df_c01342{bottom:417.026667pt;}
.y1e0_c01342{bottom:417.786667pt;}
.y184_c01342{bottom:418.560000pt;}
.y182_c01342{bottom:419.333333pt;}
.y181_c01342{bottom:421.626667pt;}
.y1de_c01342{bottom:422.400000pt;}
.y183_c01342{bottom:423.173333pt;}
.y1dd_c01342{bottom:423.933333pt;}
.y1dc_c01342{bottom:427.013333pt;}
.y186_c01342{bottom:427.773333pt;}
.y1db_c01342{bottom:429.306667pt;}
.y1da_c01342{bottom:430.853333pt;}
.y180_c01342{bottom:431.613333pt;}
.y1d9_c01342{bottom:433.146667pt;}
.y17f_c01342{bottom:433.920000pt;}
.y17e_c01342{bottom:435.453333pt;}
.y17b_c01342{bottom:436.986667pt;}
.y17d_c01342{bottom:437.760000pt;}
.y17c_c01342{bottom:438.533333pt;}
.y1d8_c01342{bottom:442.373333pt;}
.y1d6_c01342{bottom:443.133333pt;}
.y1d7_c01342{bottom:446.973333pt;}
.y17a_c01342{bottom:447.746667pt;}
.y1d5_c01342{bottom:450.053333pt;}
.y177_c01342{bottom:450.813333pt;}
.y179_c01342{bottom:451.586667pt;}
.y176_c01342{bottom:452.346667pt;}
.y178_c01342{bottom:453.120000pt;}
.y175_c01342{bottom:453.893333pt;}
.y173_c01342{bottom:454.653333pt;}
.y174_c01342{bottom:455.426667pt;}
.y1d4_c01342{bottom:456.186667pt;}
.y1d3_c01342{bottom:460.800000pt;}
.y171_c01342{bottom:463.866667pt;}
.y170_c01342{bottom:464.640000pt;}
.y16f_c01342{bottom:465.413333pt;}
.y172_c01342{bottom:466.173333pt;}
.y16e_c01342{bottom:467.706667pt;}
.y1d1_c01342{bottom:475.386667pt;}
.y1d2_c01342{bottom:476.160000pt;}
.y16d_c01342{bottom:477.693333pt;}
.y16b_c01342{bottom:478.466667pt;}
.y16c_c01342{bottom:479.226667pt;}
.y16a_c01342{bottom:480.000000pt;}
.y168_c01342{bottom:482.306667pt;}
.y169_c01342{bottom:485.373333pt;}
.y1cd_c01342{bottom:491.520000pt;}
.y1d0_c01342{bottom:492.293333pt;}
.y1cf_c01342{bottom:493.053333pt;}
.y1ce_c01342{bottom:495.360000pt;}
.y1cc_c01342{bottom:496.133333pt;}
.y1cb_c01342{bottom:506.106667pt;}
.y1c9_c01342{bottom:507.653333pt;}
.y1c7_c01342{bottom:508.413333pt;}
.y1ca_c01342{bottom:509.186667pt;}
.y166_c01342{bottom:510.720000pt;}
.y1c8_c01342{bottom:511.493333pt;}
.y167_c01342{bottom:514.560000pt;}
.y1c6_c01342{bottom:523.773333pt;}
.y1c5_c01342{bottom:525.306667pt;}
.y1c4_c01342{bottom:541.440000pt;}
.y1c3_c01342{bottom:542.213333pt;}
.y165_c01342{bottom:543.746667pt;}
.y164_c01342{bottom:546.813333pt;}
.y161_c01342{bottom:548.346667pt;}
.y163_c01342{bottom:549.120000pt;}
.y160_c01342{bottom:555.266667pt;}
.y15f_c01342{bottom:556.026667pt;}
.y15e_c01342{bottom:557.573333pt;}
.y162_c01342{bottom:558.333333pt;}
.y15c_c01342{bottom:560.640000pt;}
.y15d_c01342{bottom:562.946667pt;}
.y15b_c01342{bottom:572.160000pt;}
.y15a_c01342{bottom:573.693333pt;}
.y158_c01342{bottom:574.466667pt;}
.y159_c01342{bottom:575.226667pt;}
.y157_c01342{bottom:577.533333pt;}
.y155_c01342{bottom:583.680000pt;}
.y156_c01342{bottom:585.986667pt;}
.y152_c01342{bottom:586.746667pt;}
.y154_c01342{bottom:587.520000pt;}
.y153_c01342{bottom:588.293333pt;}
.y14f_c01342{bottom:589.053333pt;}
.y151_c01342{bottom:591.360000pt;}
.y14d_c01342{bottom:592.133333pt;}
.y150_c01342{bottom:592.893333pt;}
.y14e_c01342{bottom:593.666667pt;}
.y14c_c01342{bottom:598.266667pt;}
.y14a_c01342{bottom:601.346667pt;}
.y14b_c01342{bottom:602.106667pt;}
.y148_c01342{bottom:603.653333pt;}
.y149_c01342{bottom:605.186667pt;}
.y13f_c01342{bottom:615.933333pt;}
.y141_c01342{bottom:616.706667pt;}
.y147_c01342{bottom:617.466667pt;}
.y145_c01342{bottom:618.240000pt;}
.y143_c01342{bottom:619.773333pt;}
.y142_c01342{bottom:620.546667pt;}
.y140_c01342{bottom:622.080000pt;}
.y146_c01342{bottom:625.920000pt;}
.y144_c01342{bottom:626.693333pt;}
.y13e_c01342{bottom:628.986667pt;}
.y13d_c01342{bottom:630.533333pt;}
.y13b_c01342{bottom:632.826667pt;}
.y138_c01342{bottom:635.133333pt;}
.y13c_c01342{bottom:635.906667pt;}
.y136_c01342{bottom:636.666667pt;}
.y13a_c01342{bottom:638.213333pt;}
.y139_c01342{bottom:638.973333pt;}
.y137_c01342{bottom:640.506667pt;}
.y135_c01342{bottom:645.120000pt;}
.y133_c01342{bottom:647.426667pt;}
.y130_c01342{bottom:648.960000pt;}
.y132_c01342{bottom:650.493333pt;}
.y131_c01342{bottom:652.026667pt;}
.y12e_c01342{bottom:654.333333pt;}
.y12f_c01342{bottom:655.106667pt;}
.y12d_c01342{bottom:655.866667pt;}
.y134_c01342{bottom:659.706667pt;}
.y12c_c01342{bottom:660.480000pt;}
.y12b_c01342{bottom:662.786667pt;}
.y129_c01342{bottom:664.320000pt;}
.y128_c01342{bottom:665.093333pt;}
.y127_c01342{bottom:666.626667pt;}
.y12a_c01342{bottom:668.160000pt;}
.y125_c01342{bottom:669.693333pt;}
.y126_c01342{bottom:671.226667pt;}
.y11f_c01342{bottom:677.373333pt;}
.y124_c01342{bottom:678.146667pt;}
.y122_c01342{bottom:678.906667pt;}
.y11e_c01342{bottom:679.680000pt;}
.y123_c01342{bottom:680.453333pt;}
.y121_c01342{bottom:681.213333pt;}
.y120_c01342{bottom:681.986667pt;}
.y11c_c01342{bottom:682.746667pt;}
.y11d_c01342{bottom:684.293333pt;}
.y11a_c01342{bottom:685.053333pt;}
.y11b_c01342{bottom:686.586667pt;}
.y118_c01342{bottom:691.200000pt;}
.y119_c01342{bottom:691.973333pt;}
.y116_c01342{bottom:695.040000pt;}
.y115_c01342{bottom:697.346667pt;}
.y117_c01342{bottom:701.186667pt;}
.y112_c01342{bottom:708.093333pt;}
.y114_c01342{bottom:709.626667pt;}
.y110_c01342{bottom:710.400000pt;}
.y10f_c01342{bottom:711.173333pt;}
.y113_c01342{bottom:711.933333pt;}
.y10e_c01342{bottom:712.706667pt;}
.y111_c01342{bottom:714.240000pt;}
.y10b_c01342{bottom:715.013333pt;}
.y10c_c01342{bottom:715.773333pt;}
.y10d_c01342{bottom:718.080000pt;}
.y10a_c01342{bottom:724.226667pt;}
.y108_c01342{bottom:725.760000pt;}
.y107_c01342{bottom:726.533333pt;}
.y105_c01342{bottom:727.293333pt;}
.y109_c01342{bottom:728.066667pt;}
.y103_c01342{bottom:729.600000pt;}
.y104_c01342{bottom:731.133333pt;}
.y101_c01342{bottom:731.906667pt;}
.y106_c01342{bottom:732.666667pt;}
.y102_c01342{bottom:733.440000pt;}
.yff_c01342{bottom:738.813333pt;}
.y100_c01342{bottom:740.346667pt;}
.yfe_c01342{bottom:743.426667pt;}
.yfb_c01342{bottom:744.186667pt;}
.yfd_c01342{bottom:744.960000pt;}
.yfc_c01342{bottom:748.026667pt;}
.yfa_c01342{bottom:751.866667pt;}
.yf9_c01342{bottom:754.173333pt;}
.yf7_c01342{bottom:754.946667pt;}
.yf0_c01342{bottom:756.480000pt;}
.yf1_c01342{bottom:757.253333pt;}
.yf8_c01342{bottom:758.013333pt;}
.yf5_c01342{bottom:758.786667pt;}
.yf6_c01342{bottom:760.320000pt;}
.yf3_c01342{bottom:761.093333pt;}
.yf4_c01342{bottom:761.853333pt;}
.yf2_c01342{bottom:762.626667pt;}
.yef_c01342{bottom:765.693333pt;}
.yec_c01342{bottom:769.533333pt;}
.yeb_c01342{bottom:770.306667pt;}
.yed_c01342{bottom:771.066667pt;}
.yee_c01342{bottom:771.840000pt;}
.yea_c01342{bottom:772.613333pt;}
.ye8_c01342{bottom:773.373333pt;}
.ye4_c01342{bottom:774.906667pt;}
.ye9_c01342{bottom:775.680000pt;}
.ye2_c01342{bottom:776.453333pt;}
.ye7_c01342{bottom:777.213333pt;}
.ye6_c01342{bottom:777.986667pt;}
.ye5_c01342{bottom:778.746667pt;}
.ye3_c01342{bottom:780.293333pt;}
.ydf_c01342{bottom:784.893333pt;}
.ye1_c01342{bottom:786.426667pt;}
.ye0_c01342{bottom:787.973333pt;}
.yda_c01342{bottom:788.733333pt;}
.yde_c01342{bottom:789.506667pt;}
.ydd_c01342{bottom:790.266667pt;}
.ydc_c01342{bottom:791.813333pt;}
.yd8_c01342{bottom:792.573333pt;}
.yd9_c01342{bottom:794.880000pt;}
.ydb_c01342{bottom:797.186667pt;}
.yd7_c01342{bottom:800.253333pt;}
.yd6_c01342{bottom:803.333333pt;}
.yd5_c01342{bottom:805.626667pt;}
.yd2_c01342{bottom:806.400000pt;}
.yd1_c01342{bottom:807.933333pt;}
.yd4_c01342{bottom:808.706667pt;}
.yd3_c01342{bottom:809.466667pt;}
.yd0_c01342{bottom:811.773333pt;}
.ycc_c01342{bottom:815.613333pt;}
.ycf_c01342{bottom:818.693333pt;}
.yca_c01342{bottom:819.453333pt;}
.ycd_c01342{bottom:820.226667pt;}
.yce_c01342{bottom:820.986667pt;}
.ycb_c01342{bottom:822.533333pt;}
.yc7_c01342{bottom:824.066667pt;}
.yc9_c01342{bottom:825.600000pt;}
.yc8_c01342{bottom:827.133333pt;}
.yc6_c01342{bottom:831.746667pt;}
.yc5_c01342{bottom:832.506667pt;}
.yc3_c01342{bottom:835.586667pt;}
.ybf_c01342{bottom:836.346667pt;}
.ybe_c01342{bottom:837.120000pt;}
.yc0_c01342{bottom:837.893333pt;}
.yc4_c01342{bottom:838.653333pt;}
.yc2_c01342{bottom:839.426667pt;}
.yc1_c01342{bottom:840.186667pt;}
.ybd_c01342{bottom:847.866667pt;}
.y1c2_c01342{bottom:848.640000pt;}
.yb7_c01342{bottom:850.173333pt;}
.ybb_c01342{bottom:851.706667pt;}
.yb8_c01342{bottom:852.480000pt;}
.yba_c01342{bottom:853.253333pt;}
.yb9_c01342{bottom:854.013333pt;}
.yb6_c01342{bottom:854.786667pt;}
.yb5_c01342{bottom:856.320000pt;}
.yb4_c01342{bottom:857.093333pt;}
.yb3_c01342{bottom:857.853333pt;}
.yb2_c01342{bottom:858.626667pt;}
.ybc_c01342{bottom:860.933333pt;}
.yb1_c01342{bottom:862.466667pt;}
.yad_c01342{bottom:865.533333pt;}
.yb0_c01342{bottom:866.306667pt;}
.yab_c01342{bottom:867.066667pt;}
.yae_c01342{bottom:867.840000pt;}
.yaf_c01342{bottom:869.373333pt;}
.yac_c01342{bottom:870.146667pt;}
.yaa_c01342{bottom:873.213333pt;}
.ya8_c01342{bottom:878.586667pt;}
.ya7_c01342{bottom:879.360000pt;}
.ya9_c01342{bottom:881.666667pt;}
.ya6_c01342{bottom:882.426667pt;}
.ya4_c01342{bottom:883.200000pt;}
.ya5_c01342{bottom:884.733333pt;}
.ya3_c01342{bottom:887.813333pt;}
.ya1_c01342{bottom:893.946667pt;}
.y9e_c01342{bottom:896.253333pt;}
.y9f_c01342{bottom:897.026667pt;}
.ya2_c01342{bottom:898.560000pt;}
.y9a_c01342{bottom:899.333333pt;}
.ya0_c01342{bottom:900.093333pt;}
.y9d_c01342{bottom:900.866667pt;}
.y9c_c01342{bottom:903.173333pt;}
.y9b_c01342{bottom:903.933333pt;}
.y97_c01342{bottom:911.613333pt;}
.y98_c01342{bottom:912.386667pt;}
.y99_c01342{bottom:913.146667pt;}
.y96_c01342{bottom:914.693333pt;}
.y95_c01342{bottom:915.453333pt;}
.y94_c01342{bottom:916.226667pt;}
.y92_c01342{bottom:924.666667pt;}
.y8e_c01342{bottom:925.440000pt;}
.y8d_c01342{bottom:926.213333pt;}
.y93_c01342{bottom:927.746667pt;}
.y91_c01342{bottom:928.506667pt;}
.y8c_c01342{bottom:929.280000pt;}
.y90_c01342{bottom:930.053333pt;}
.y8f_c01342{bottom:930.813333pt;}
.y8b_c01342{bottom:934.653333pt;}
.y8a_c01342{bottom:935.426667pt;}
.y89_c01342{bottom:936.960000pt;}
.y88_c01342{bottom:940.026667pt;}
.y87_c01342{bottom:940.800000pt;}
.y86_c01342{bottom:941.573333pt;}
.y84_c01342{bottom:944.640000pt;}
.y85_c01342{bottom:945.413333pt;}
.y82_c01342{bottom:946.173333pt;}
.y83_c01342{bottom:946.946667pt;}
.y7e_c01342{bottom:947.706667pt;}
.y80_c01342{bottom:949.253333pt;}
.y7f_c01342{bottom:950.786667pt;}
.y7b_c01342{bottom:957.693333pt;}
.y81_c01342{bottom:958.466667pt;}
.y7d_c01342{bottom:960.000000pt;}
.y7c_c01342{bottom:960.773333pt;}
.y7a_c01342{bottom:961.533333pt;}
.y76_c01342{bottom:962.306667pt;}
.y79_c01342{bottom:963.066667pt;}
.y78_c01342{bottom:963.840000pt;}
.y77_c01342{bottom:965.373333pt;}
.y75_c01342{bottom:966.146667pt;}
.y72_c01342{bottom:971.520000pt;}
.y73_c01342{bottom:972.293333pt;}
.y70_c01342{bottom:973.053333pt;}
.y6f_c01342{bottom:975.360000pt;}
.y6d_c01342{bottom:976.133333pt;}
.y71_c01342{bottom:976.893333pt;}
.y6e_c01342{bottom:978.426667pt;}
.y6c_c01342{bottom:979.973333pt;}
.y74_c01342{bottom:981.506667pt;}
.y69_c01342{bottom:989.946667pt;}
.y6a_c01342{bottom:990.720000pt;}
.y67_c01342{bottom:991.493333pt;}
.y63_c01342{bottom:993.026667pt;}
.y68_c01342{bottom:993.786667pt;}
.y6b_c01342{bottom:995.333333pt;}
.y64_c01342{bottom:996.866667pt;}
.y62_c01342{bottom:998.400000pt;}
.y5e_c01342{bottom:1003.013333pt;}
.y60_c01342{bottom:1003.773333pt;}
.y65_c01342{bottom:1004.546667pt;}
.y66_c01342{bottom:1005.306667pt;}
.y61_c01342{bottom:1006.080000pt;}
.y5a_c01342{bottom:1007.613333pt;}
.y5d_c01342{bottom:1008.386667pt;}
.y5f_c01342{bottom:1009.146667pt;}
.y5b_c01342{bottom:1009.920000pt;}
.y59_c01342{bottom:1010.693333pt;}
.y58_c01342{bottom:1012.986667pt;}
.y5c_c01342{bottom:1020.666667pt;}
.y53_c01342{bottom:1022.213333pt;}
.y57_c01342{bottom:1022.973333pt;}
.y55_c01342{bottom:1023.746667pt;}
.y56_c01342{bottom:1024.506667pt;}
.y50_c01342{bottom:1025.280000pt;}
.y52_c01342{bottom:1026.813333pt;}
.y51_c01342{bottom:1027.586667pt;}
.y54_c01342{bottom:1028.346667pt;}
.y4f_c01342{bottom:1029.120000pt;}
.y4d_c01342{bottom:1032.186667pt;}
.y4b_c01342{bottom:1035.266667pt;}
.y49_c01342{bottom:1036.026667pt;}
.y4e_c01342{bottom:1037.573333pt;}
.y48_c01342{bottom:1038.333333pt;}
.y4c_c01342{bottom:1039.106667pt;}
.y4a_c01342{bottom:1039.866667pt;}
.y47_c01342{bottom:1040.640000pt;}
.y45_c01342{bottom:1042.946667pt;}
.y44_c01342{bottom:1043.706667pt;}
.y46_c01342{bottom:1050.626667pt;}
.y41_c01342{bottom:1053.693333pt;}
.y3d_c01342{bottom:1054.466667pt;}
.y3f_c01342{bottom:1055.226667pt;}
.y40_c01342{bottom:1056.773333pt;}
.y42_c01342{bottom:1057.533333pt;}
.y3e_c01342{bottom:1058.306667pt;}
.y3c_c01342{bottom:1059.066667pt;}
.y43_c01342{bottom:1061.373333pt;}
.y38_c01342{bottom:1068.293333pt;}
.y3b_c01342{bottom:1069.053333pt;}
.y3a_c01342{bottom:1069.826667pt;}
.y34_c01342{bottom:1070.586667pt;}
.y36_c01342{bottom:1071.360000pt;}
.y39_c01342{bottom:1072.133333pt;}
.y37_c01342{bottom:1072.893333pt;}
.y35_c01342{bottom:1073.666667pt;}
.y33_c01342{bottom:1075.200000pt;}
.y30_c01342{bottom:1084.413333pt;}
.y2d_c01342{bottom:1085.946667pt;}
.y2f_c01342{bottom:1086.720000pt;}
.y1c1_c01342{bottom:1087.493333pt;}
.y32_c01342{bottom:1088.253333pt;}
.y2e_c01342{bottom:1089.026667pt;}
.y2c_c01342{bottom:1094.400000pt;}
.y2b_c01342{bottom:1095.933333pt;}
.y29_c01342{bottom:1099.013333pt;}
.y31_c01342{bottom:1100.546667pt;}
.y2a_c01342{bottom:1102.080000pt;}
.y26_c01342{bottom:1102.853333pt;}
.y28_c01342{bottom:1103.613333pt;}
.y27_c01342{bottom:1105.146667pt;}
.y25_c01342{bottom:1105.920000pt;}
.y24_c01342{bottom:1112.826667pt;}
.y21_c01342{bottom:1113.600000pt;}
.y23_c01342{bottom:1115.133333pt;}
.y20_c01342{bottom:1115.906667pt;}
.y22_c01342{bottom:1116.666667pt;}
.y1f_c01342{bottom:1117.440000pt;}
.y1c0_c01342{bottom:1132.026667pt;}
.y1d_c01342{bottom:1132.800000pt;}
.y1c_c01342{bottom:1133.573333pt;}
.y1b_c01342{bottom:1135.106667pt;}
.y19_c01342{bottom:1135.866667pt;}
.y1a_c01342{bottom:1136.640000pt;}
.y1e_c01342{bottom:1144.320000pt;}
.y1bf_c01342{bottom:1145.093333pt;}
.y16_c01342{bottom:1147.386667pt;}
.y1bd_c01342{bottom:1148.160000pt;}
.y18_c01342{bottom:1148.933333pt;}
.y1be_c01342{bottom:1155.066667pt;}
.y17_c01342{bottom:1160.453333pt;}
.y15_c01342{bottom:1165.826667pt;}
.y14_c01342{bottom:1166.586667pt;}
.y13_c01342{bottom:1167.360000pt;}
.y1bb_c01342{bottom:1177.346667pt;}
.y12_c01342{bottom:1178.106667pt;}
.y11_c01342{bottom:1178.880000pt;}
.y1bc_c01342{bottom:1180.413333pt;}
.yf_c01342{bottom:1182.720000pt;}
.y10_c01342{bottom:1183.493333pt;}
.ye_c01342{bottom:1189.626667pt;}
.y1b8_c01342{bottom:1191.933333pt;}
.y1ba_c01342{bottom:1193.466667pt;}
.yd_c01342{bottom:1194.240000pt;}
.yb_c01342{bottom:1195.773333pt;}
.y1b9_c01342{bottom:1196.546667pt;}
.yc_c01342{bottom:1198.080000pt;}
.ya_c01342{bottom:1198.853333pt;}
.y1b6_c01342{bottom:1204.986667pt;}
.y1b5_c01342{bottom:1207.293333pt;}
.y1b7_c01342{bottom:1208.826667pt;}
.y6_c01342{bottom:1209.600000pt;}
.y9_c01342{bottom:1210.373333pt;}
.y1b3_c01342{bottom:1211.133333pt;}
.y1b2_c01342{bottom:1211.906667pt;}
.y8_c01342{bottom:1212.666667pt;}
.y7_c01342{bottom:1213.440000pt;}
.y5_c01342{bottom:1214.213333pt;}
.y1b4_c01342{bottom:1221.120000pt;}
.y4_c01342{bottom:1227.266667pt;}
.y2_c01342{bottom:1228.026667pt;}
.y3_c01342{bottom:1231.106667pt;}
.y1_c01342{bottom:1234.173333pt;}
.h12_c01342{height:2.764500pt;}
.h15_c01342{height:4.799479pt;}
.hb_c01342{height:5.519401pt;}
.h4_c01342{height:8.303099pt;}
.he_c01342{height:11.038802pt;}
.h2_c01342{height:13.822500pt;}
.h1c_c01342{height:16.606198pt;}
.h18_c01342{height:19.341901pt;}
.h14_c01342{height:22.125599pt;}
.h10_c01342{height:24.861302pt;}
.h3_c01342{height:27.645000pt;}
.h1a_c01342{height:30.428698pt;}
.h17_c01342{height:33.164401pt;}
.h5_c01342{height:35.948099pt;}
.h9_c01342{height:38.683802pt;}
.h1b_c01342{height:41.157865pt;}
.ha_c01342{height:41.467500pt;}
.h7_c01342{height:44.251198pt;}
.h8_c01342{height:46.986901pt;}
.h1d_c01342{height:47.857135pt;}
.hc_c01342{height:49.770599pt;}
.hd_c01342{height:52.506302pt;}
.hf_c01342{height:55.290000pt;}
.h6_c01342{height:58.073698pt;}
.h19_c01342{height:60.809401pt;}
.h11_c01342{height:63.593099pt;}
.h16_c01342{height:66.328802pt;}
.h1f_c01342{height:69.112500pt;}
.h13_c01342{height:71.896198pt;}
.h1e_c01342{height:74.631901pt;}
.h1_c01342{height:1345.333333pt;}
.h0_c01342{height:1345.533333pt;}
.w0_c01342{width:963.066667pt;}
.w1_c01342{width:963.333333pt;}
.x0_c01342{left:0.000000pt;}
.xf6_c01342{left:63.746667pt;}
.xf2_c01342{left:165.893333pt;}
.xfe_c01342{left:167.426667pt;}
.xfc_c01342{left:168.960000pt;}
.xc1_c01342{left:170.493333pt;}
.xf3_c01342{left:172.800000pt;}
.x8d_c01342{left:174.333333pt;}
.xda_c01342{left:175.866667pt;}
.xc2_c01342{left:178.173333pt;}
.xeb_c01342{left:179.706667pt;}
.x71_c01342{left:181.253333pt;}
.x9a_c01342{left:182.786667pt;}
.x2d_c01342{left:185.093333pt;}
.x12_c01342{left:187.386667pt;}
.x3f_c01342{left:189.693333pt;}
.xfa_c01342{left:191.226667pt;}
.x1c_c01342{left:192.773333pt;}
.x13_c01342{left:194.306667pt;}
.xc_c01342{left:195.840000pt;}
.xd_c01342{left:197.373333pt;}
.x1f_c01342{left:199.680000pt;}
.xae_c01342{left:201.986667pt;}
.xe2_c01342{left:203.520000pt;}
.xbb_c01342{left:205.053333pt;}
.x2_c01342{left:207.360000pt;}
.x5_c01342{left:208.893333pt;}
.x2e_c01342{left:210.426667pt;}
.x84_c01342{left:212.733333pt;}
.xf0_c01342{left:214.266667pt;}
.xc3_c01342{left:215.813333pt;}
.x19_c01342{left:217.346667pt;}
.x37_c01342{left:219.653333pt;}
.x8e_c01342{left:221.186667pt;}
.x6_c01342{left:223.493333pt;}
.xee_c01342{left:225.026667pt;}
.x9b_c01342{left:226.560000pt;}
.xe7_c01342{left:228.866667pt;}
.x62_c01342{left:231.173333pt;}
.x85_c01342{left:233.466667pt;}
.xaf_c01342{left:235.773333pt;}
.x3_c01342{left:237.306667pt;}
.xe_c01342{left:238.853333pt;}
.xed_c01342{left:240.386667pt;}
.x86_c01342{left:242.693333pt;}
.x4d_c01342{left:244.226667pt;}
.xf8_c01342{left:245.760000pt;}
.xd6_c01342{left:247.293333pt;}
.x9c_c01342{left:248.826667pt;}
.xdd_c01342{left:250.373333pt;}
.xc4_c01342{left:251.906667pt;}
.x2f_c01342{left:254.973333pt;}
.x20_c01342{left:258.053333pt;}
.x58_c01342{left:259.586667pt;}
.x63_c01342{left:262.653333pt;}
.xef_c01342{left:264.186667pt;}
.x7_c01342{left:266.493333pt;}
.x38_c01342{left:268.800000pt;}
.x14_c01342{left:271.106667pt;}
.x72_c01342{left:272.640000pt;}
.xf9_c01342{left:275.706667pt;}
.x4e_c01342{left:278.013333pt;}
.xcc_c01342{left:280.320000pt;}
.x40_c01342{left:281.853333pt;}
.xf7_c01342{left:284.160000pt;}
.xd0_c01342{left:285.693333pt;}
.x15_c01342{left:287.226667pt;}
.x9d_c01342{left:289.533333pt;}
.x59_c01342{left:291.066667pt;}
.x7d_c01342{left:293.373333pt;}
.x21_c01342{left:296.453333pt;}
.x7e_c01342{left:300.293333pt;}
.x4f_c01342{left:302.586667pt;}
.xb4_c01342{left:307.200000pt;}
.xb0_c01342{left:311.040000pt;}
.x22_c01342{left:312.573333pt;}
.xd1_c01342{left:314.106667pt;}
.x16_c01342{left:315.653333pt;}
.x39_c01342{left:317.186667pt;}
.xf_c01342{left:318.720000pt;}
.xa9_c01342{left:320.253333pt;}
.xf5_c01342{left:322.560000pt;}
.xd2_c01342{left:324.093333pt;}
.x8_c01342{left:326.400000pt;}
.xf1_c01342{left:328.706667pt;}
.x41_c01342{left:330.240000pt;}
.xb5_c01342{left:331.773333pt;}
.xfb_c01342{left:333.306667pt;}
.xf4_c01342{left:334.853333pt;}
.x73_c01342{left:336.386667pt;}
.x1_c01342{left:337.920000pt;}
.x9_c01342{left:340.226667pt;}
.x17_c01342{left:341.760000pt;}
.xff_c01342{left:344.066667pt;}
.x30_c01342{left:345.600000pt;}
.x5a_c01342{left:347.133333pt;}
.x7f_c01342{left:350.973333pt;}
.x3a_c01342{left:352.506667pt;}
.xaa_c01342{left:354.813333pt;}
.x50_c01342{left:356.346667pt;}
.x87_c01342{left:357.893333pt;}
.x68_c01342{left:359.426667pt;}
.x1d_c01342{left:362.493333pt;}
.x31_c01342{left:365.573333pt;}
.xb6_c01342{left:368.640000pt;}
.x23_c01342{left:370.946667pt;}
.x10_c01342{left:380.160000pt;}
.xc5_c01342{left:382.466667pt;}
.x4_c01342{left:384.773333pt;}
.x18_c01342{left:386.306667pt;}
.xde_c01342{left:393.213333pt;}
.xe0_c01342{left:394.746667pt;}
.x1a_c01342{left:396.293333pt;}
.xbc_c01342{left:397.826667pt;}
.xa_c01342{left:402.426667pt;}
.x11_c01342{left:404.733333pt;}
.x9e_c01342{left:406.266667pt;}
.xab_c01342{left:410.880000pt;}
.x42_c01342{left:412.413333pt;}
.x3b_c01342{left:414.720000pt;}
.xac_c01342{left:417.026667pt;}
.xb_c01342{left:418.560000pt;}
.xa4_c01342{left:420.093333pt;}
.xb1_c01342{left:422.400000pt;}
.x51_c01342{left:423.933333pt;}
.xb7_c01342{left:425.466667pt;}
.x1e_c01342{left:427.773333pt;}
.x69_c01342{left:430.080000pt;}
.x43_c01342{left:432.386667pt;}
.x64_c01342{left:434.693333pt;}
.x3c_c01342{left:436.226667pt;}
.xfd_c01342{left:437.760000pt;}
.x26_c01342{left:439.293333pt;}
.x3d_c01342{left:440.826667pt;}
.xa5_c01342{left:443.906667pt;}
.xb2_c01342{left:446.213333pt;}
.x24_c01342{left:448.506667pt;}
.x32_c01342{left:450.053333pt;}
.xcd_c01342{left:451.586667pt;}
.x74_c01342{left:453.120000pt;}
.x65_c01342{left:454.653333pt;}
.x6a_c01342{left:456.186667pt;}
.x1b_c01342{left:459.266667pt;}
.x11e_c01342{left:460.800000pt;}
.x113_c01342{left:462.333333pt;}
.x11c_c01342{left:464.640000pt;}
.x117_c01342{left:466.173333pt;}
.xc8_c01342{left:467.706667pt;}
.x25_c01342{left:469.253333pt;}
.x109_c01342{left:471.546667pt;}
.x110_c01342{left:473.093333pt;}
.xec_c01342{left:475.386667pt;}
.xc9_c01342{left:476.933333pt;}
.x75_c01342{left:478.466667pt;}
.xd3_c01342{left:480.773333pt;}
.x80_c01342{left:482.306667pt;}
.x6b_c01342{left:483.840000pt;}
.x52_c01342{left:486.146667pt;}
.x27_c01342{left:487.680000pt;}
.x10e_c01342{left:489.986667pt;}
.xbd_c01342{left:492.293333pt;}
.x10a_c01342{left:494.586667pt;}
.x115_c01342{left:497.666667pt;}
.x5b_c01342{left:500.733333pt;}
.x88_c01342{left:503.040000pt;}
.x8f_c01342{left:506.106667pt;}
.x66_c01342{left:508.413333pt;}
.x33_c01342{left:510.720000pt;}
.x101_c01342{left:512.253333pt;}
.x53_c01342{left:515.333333pt;}
.x9f_c01342{left:517.626667pt;}
.x90_c01342{left:519.933333pt;}
.x5c_c01342{left:523.013333pt;}
.x76_c01342{left:524.546667pt;}
.xe3_c01342{left:526.080000pt;}
.x44_c01342{left:528.386667pt;}
.x81_c01342{left:530.693333pt;}
.x28_c01342{left:533.760000pt;}
.xb8_c01342{left:535.293333pt;}
.x5d_c01342{left:537.600000pt;}
.x34_c01342{left:539.906667pt;}
.x10d_c01342{left:542.213333pt;}
.x108_c01342{left:544.506667pt;}
.xe8_c01342{left:546.813333pt;}
.xdf_c01342{left:548.346667pt;}
.x96_c01342{left:552.960000pt;}
.x6c_c01342{left:555.266667pt;}
.xa0_c01342{left:557.573333pt;}
.x45_c01342{left:560.640000pt;}
.xd7_c01342{left:562.173333pt;}
.x89_c01342{left:563.706667pt;}
.xca_c01342{left:565.253333pt;}
.x35_c01342{left:568.320000pt;}
.x54_c01342{left:569.853333pt;}
.x91_c01342{left:572.160000pt;}
.x77_c01342{left:573.693333pt;}
.x104_c01342{left:576.000000pt;}
.xa1_c01342{left:578.306667pt;}
.xa6_c01342{left:580.613333pt;}
.x46_c01342{left:582.146667pt;}
.x100_c01342{left:583.680000pt;}
.x10b_c01342{left:586.746667pt;}
.xe1_c01342{left:588.293333pt;}
.x29_c01342{left:589.826667pt;}
.x78_c01342{left:591.360000pt;}
.x47_c01342{left:592.893333pt;}
.x5e_c01342{left:594.426667pt;}
.x92_c01342{left:599.813333pt;}
.xd8_c01342{left:602.880000pt;}
.x11a_c01342{left:604.413333pt;}
.x55_c01342{left:605.946667pt;}
.x6d_c01342{left:608.253333pt;}
.x8a_c01342{left:610.560000pt;}
.x5f_c01342{left:612.093333pt;}
.xd4_c01342{left:614.400000pt;}
.xc6_c01342{left:616.706667pt;}
.x120_c01342{left:618.240000pt;}
.xe4_c01342{left:619.773333pt;}
.xb3_c01342{left:621.306667pt;}
.x119_c01342{left:625.146667pt;}
.x11f_c01342{left:626.693333pt;}
.x48_c01342{left:629.760000pt;}
.xa7_c01342{left:632.066667pt;}
.x93_c01342{left:635.906667pt;}
.x102_c01342{left:637.440000pt;}
.x56_c01342{left:638.973333pt;}
.x49_c01342{left:640.506667pt;}
.x103_c01342{left:642.053333pt;}
.xad_c01342{left:645.120000pt;}
.x2a_c01342{left:647.426667pt;}
.x116_c01342{left:648.960000pt;}
.x4a_c01342{left:650.493333pt;}
.xdb_c01342{left:652.800000pt;}
.x11d_c01342{left:654.333333pt;}
.x2b_c01342{left:655.866667pt;}
.x97_c01342{left:657.413333pt;}
.x6e_c01342{left:658.946667pt;}
.x111_c01342{left:660.480000pt;}
.x67_c01342{left:662.786667pt;}
.x79_c01342{left:664.320000pt;}
.x10c_c01342{left:666.626667pt;}
.x36_c01342{left:668.160000pt;}
.x3e_c01342{left:671.226667pt;}
.x8b_c01342{left:672.773333pt;}
.x105_c01342{left:674.306667pt;}
.xbe_c01342{left:679.680000pt;}
.x82_c01342{left:681.213333pt;}
.xa2_c01342{left:683.520000pt;}
.x11b_c01342{left:685.826667pt;}
.x4b_c01342{left:687.360000pt;}
.x112_c01342{left:688.893333pt;}
.xa8_c01342{left:690.426667pt;}
.xcb_c01342{left:691.973333pt;}
.x10f_c01342{left:693.506667pt;}
.xbf_c01342{left:695.040000pt;}
.xc7_c01342{left:696.573333pt;}
.x7a_c01342{left:698.880000pt;}
.x4c_c01342{left:700.413333pt;}
.x94_c01342{left:702.720000pt;}
.xdc_c01342{left:705.786667pt;}
.xe9_c01342{left:707.333333pt;}
.xb9_c01342{left:709.626667pt;}
.xc0_c01342{left:711.933333pt;}
.x118_c01342{left:713.466667pt;}
.x57_c01342{left:715.013333pt;}
.x8c_c01342{left:716.546667pt;}
.x60_c01342{left:718.853333pt;}
.xce_c01342{left:720.386667pt;}
.xd9_c01342{left:721.920000pt;}
.xba_c01342{left:724.226667pt;}
.xe5_c01342{left:725.760000pt;}
.x7b_c01342{left:728.066667pt;}
.xcf_c01342{left:729.600000pt;}
.xa3_c01342{left:731.133333pt;}
.x7c_c01342{left:733.440000pt;}
.x61_c01342{left:734.973333pt;}
.x6f_c01342{left:736.506667pt;}
.xea_c01342{left:738.053333pt;}
.x98_c01342{left:739.586667pt;}
.x95_c01342{left:741.120000pt;}
.xe6_c01342{left:744.960000pt;}
.x83_c01342{left:748.026667pt;}
.x99_c01342{left:750.333333pt;}
.x2c_c01342{left:752.640000pt;}
.xd5_c01342{left:763.386667pt;}
.x114_c01342{left:765.693333pt;}
.x70_c01342{left:773.373333pt;}
.x106_c01342{left:787.200000pt;}
.x107_c01342{left:862.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_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_9cf6e782dd9e7dc16f26b53d.woff2')format("woff");}.ff1_c01343{font-family:ff1_c01343;line-height:1.109863;font-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_c01343{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mc6_c01343{transform:matrix(0.039475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039475,0.000000,0.000000,0.250000,0,0);}
.m29_c01343{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.mf3_c01343{transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);}
.m117_c01343{transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132400,0.000000,0.000000,0.250000,0,0);}
.mea_c01343{transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);}
.m42_c01343{transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143300,0.000000,0.000000,0.250000,0,0);}
.m31_c01343{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb5_c01343{transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);}
.m9f_c01343{transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146325,0.000000,0.000000,0.250000,0,0);}
.m6b_c01343{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);}
.mf4_c01343{transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155975,0.000000,0.000000,0.250000,0,0);}
.m90_c01343{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);}
.me0_c01343{transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156775,0.000000,0.000000,0.250000,0,0);}
.mfb_c01343{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);}
.mc0_c01343{transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165725,0.000000,0.000000,0.250000,0,0);}
.m11c_c01343{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);}
.meb_c01343{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);}
.mdc_c01343{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);}
.m75_c01343{transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172075,0.000000,0.000000,0.250000,0,0);}
.mde_c01343{transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173300,0.000000,0.000000,0.250000,0,0);}
.m115_c01343{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);}
.md5_c01343{transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175375,0.000000,0.000000,0.250000,0,0);}
.mcd_c01343{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.md8_c01343{transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);}
.m93_c01343{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m114_c01343{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m11e_c01343{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m97_c01343{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);}
.mbb_c01343{transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);}
.m11f_c01343{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);}
.m1c_c01343{transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184300,0.000000,0.000000,0.250000,0,0);}
.mdf_c01343{transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185500,0.000000,0.000000,0.250000,0,0);}
.mbe_c01343{transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185825,0.000000,0.000000,0.250000,0,0);}
.mdd_c01343{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.md3_c01343{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.mca_c01343{transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186700,0.000000,0.000000,0.250000,0,0);}
.mc4_c01343{transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186875,0.000000,0.000000,0.250000,0,0);}
.mf7_c01343{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m84_c01343{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);}
.ma7_c01343{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m8a_c01343{transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);}
.m9e_c01343{transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192550,0.000000,0.000000,0.250000,0,0);}
.m5c_c01343{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.m30_c01343{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.m4a_c01343{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.mfd_c01343{transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194300,0.000000,0.000000,0.250000,0,0);}
.m2_c01343{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);}
.mb0_c01343{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);}
.ma8_c01343{transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195325,0.000000,0.000000,0.250000,0,0);}
.m9a_c01343{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);}
.maf_c01343{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.mfc_c01343{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m11b_c01343{transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);}
.me9_c01343{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.md6_c01343{transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201350,0.000000,0.000000,0.250000,0,0);}
.mda_c01343{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.m10d_c01343{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);}
.m5a_c01343{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.mf9_c01343{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.md2_c01343{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m67_c01343{transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205800,0.000000,0.000000,0.250000,0,0);}
.m89_c01343{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.mae_c01343{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);}
.m40_c01343{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.m1f_c01343{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);}
.mb8_c01343{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);}
.mc8_c01343{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.me8_c01343{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m9c_c01343{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);}
.m9b_c01343{transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208975,0.000000,0.000000,0.250000,0,0);}
.m16_c01343{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m6e_c01343{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);}
.mb9_c01343{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);}
.mee_c01343{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.m105_c01343{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);}
.m7e_c01343{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);}
.m32_c01343{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);}
.m109_c01343{transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214525,0.000000,0.000000,0.250000,0,0);}
.m53_c01343{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);}
.m10e_c01343{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);}
.md9_c01343{transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215550,0.000000,0.000000,0.250000,0,0);}
.m106_c01343{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);}
.mbf_c01343{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);}
.m47_c01343{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m79_c01343{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);}
.mbc_c01343{transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218600,0.000000,0.000000,0.250000,0,0);}
.m1_c01343{transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);}
.m116_c01343{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.mce_c01343{transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);}
.m11d_c01343{transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);}
.m7d_c01343{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);}
.m10a_c01343{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.me6_c01343{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m7b_c01343{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);}
.m77_c01343{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);}
.m73_c01343{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);}
.m104_c01343{transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);}
.m99_c01343{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mbd_c01343{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);}
.mc1_c01343{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.mc9_c01343{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);}
.mcc_c01343{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);}
.ma0_c01343{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);}
.m51_c01343{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);}
.ma4_c01343{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);}
.m100_c01343{transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226225,0.000000,0.000000,0.250000,0,0);}
.mf6_c01343{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.md1_c01343{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);}
.mff_c01343{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.mf2_c01343{transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);}
.m10b_c01343{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);}
.mfa_c01343{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m10f_c01343{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);}
.m118_c01343{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);}
.m108_c01343{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);}
.mcb_c01343{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.m58_c01343{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.mc3_c01343{transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);}
.m72_c01343{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);}
.m103_c01343{transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);}
.m36_c01343{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m35_c01343{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.m78_c01343{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.m102_c01343{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.mba_c01343{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);}
.m2e_c01343{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m8b_c01343{transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237125,0.000000,0.000000,0.250000,0,0);}
.m55_c01343{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);}
.m0_c01343{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);}
.m96_c01343{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m80_c01343{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);}
.me3_c01343{transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);}
.m5_c01343{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);}
.m9d_c01343{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.m98_c01343{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.mb4_c01343{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.mcf_c01343{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);}
.m61_c01343{transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);}
.m101_c01343{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m82_c01343{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m94_c01343{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);}
.md4_c01343{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);}
.mb6_c01343{transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241900,0.000000,0.000000,0.250000,0,0);}
.m68_c01343{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);}
.m4d_c01343{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m28_c01343{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m91_c01343{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m19_c01343{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);}
.me1_c01343{transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245300,0.000000,0.000000,0.250000,0,0);}
.mf1_c01343{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);}
.m5f_c01343{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);}
.m13_c01343{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);}
.m74_c01343{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);}
.mad_c01343{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m4f_c01343{transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247475,0.000000,0.000000,0.250000,0,0);}
.m71_c01343{transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249025,0.000000,0.000000,0.250000,0,0);}
.mc7_c01343{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m95_c01343{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m18_c01343{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);}
.m1e_c01343{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m64_c01343{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_c01343{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);}
.m1d_c01343{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);}
.m3f_c01343{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);}
.m62_c01343{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m48_c01343{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01343{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01343{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);}
.m5d_c01343{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c01343{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);}
.m15_c01343{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);}
.m9_c01343{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m50_c01343{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);}
.me_c01343{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c01343{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m44_c01343{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);}
.m45_c01343{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m63_c01343{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);}
.m1a_c01343{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);}
.mb_c01343{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c01343{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m27_c01343{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);}
.m2c_c01343{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m37_c01343{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.mf_c01343{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);}
.m46_c01343{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01343{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m25_c01343{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m65_c01343{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m52_c01343{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m17_c01343{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m81_c01343{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01343{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m43_c01343{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);}
.m7a_c01343{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma9_c01343{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01343{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3_c01343{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c01343{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);}
.ma1_c01343{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);}
.m87_c01343{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01343{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01343{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);}
.m5b_c01343{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.maa_c01343{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m83_c01343{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01343{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m54_c01343{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01343{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);}
.ma3_c01343{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mef_c01343{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mac_c01343{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01343{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m38_c01343{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);}
.m33_c01343{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m22_c01343{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01343{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m34_c01343{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01343{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m76_c01343{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mfe_c01343{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mc_c01343{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);}
.m92_c01343{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m49_c01343{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);}
.mc2_c01343{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mf5_c01343{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m23_c01343{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);}
.m56_c01343{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mab_c01343{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m8_c01343{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m26_c01343{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m14_c01343{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m86_c01343{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.ma5_c01343{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.me5_c01343{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m12_c01343{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);}
.m11_c01343{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m69_c01343{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01343{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01343{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.ma2_c01343{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m41_c01343{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m6c_c01343{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m21_c01343{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mf8_c01343{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m8e_c01343{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m10_c01343{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);}
.m6a_c01343{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m39_c01343{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m10c_c01343{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.mb2_c01343{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01343{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);}
.m4b_c01343{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);}
.m6d_c01343{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m8d_c01343{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.me4_c01343{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01343{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);}
.m60_c01343{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m8f_c01343{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.med_c01343{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m107_c01343{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.md0_c01343{transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.552500,0.000000,0.000000,0.250000,0,0);}
.m85_c01343{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m59_c01343{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);}
.m111_c01343{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.md7_c01343{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.m20_c01343{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m57_c01343{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m110_c01343{transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.620000,0.000000,0.000000,0.250000,0,0);}
.m88_c01343{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mf0_c01343{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mec_c01343{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m113_c01343{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.me7_c01343{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01343{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m24_c01343{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m11a_c01343{transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.725000,0.000000,0.000000,0.250000,0,0);}
.mdb_c01343{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);}
.mb3_c01343{transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.800000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01343{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mb7_c01343{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.me2_c01343{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m119_c01343{transform:matrix(1.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.385000,0.000000,0.000000,0.250000,0,0);}
.mc5_c01343{transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.607500,0.000000,0.000000,0.250000,0,0);}
.m112_c01343{transform:matrix(1.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.632500,0.000000,0.000000,0.250000,0,0);}
.m66_c01343{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.m70_c01343{transform:matrix(3.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.212500,0.000000,0.000000,0.250000,0,0);}
.v2_c01343{vertical-align:-6.900000px;}
.v0_c01343{vertical-align:0.000000px;}
.v1_c01343{vertical-align:3.480000px;}
.ls2_c01343{letter-spacing:0.000000px;}
.ls1_c01343{letter-spacing:6.546240px;}
.ls0_c01343{letter-spacing:30.793152px;}
.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:-17.587680px;}
.ws1_c01343{word-spacing:0.000000px;}
.fc0_c01343{color:transparent;}
.fs12_c01343{font-size:3.456000px;}
.fsd_c01343{font-size:6.000000px;}
.fs7_c01343{font-size:6.900000px;}
.fs11_c01343{font-size:10.380000px;}
.fs17_c01343{font-size:13.800000px;}
.fsf_c01343{font-size:17.280000px;}
.fs16_c01343{font-size:20.760000px;}
.fs10_c01343{font-size:24.180000px;}
.fsa_c01343{font-size:27.660000px;}
.fs6_c01343{font-size:31.080000px;}
.fs14_c01343{font-size:34.560000px;}
.fs13_c01343{font-size:38.040000px;}
.fsc_c01343{font-size:41.460000px;}
.fs0_c01343{font-size:44.940000px;}
.fs3_c01343{font-size:48.360000px;}
.fs8_c01343{font-size:51.840000px;}
.fs9_c01343{font-size:55.320000px;}
.fs4_c01343{font-size:58.740000px;}
.fsb_c01343{font-size:62.220000px;}
.fs2_c01343{font-size:65.640000px;}
.fs5_c01343{font-size:69.120000px;}
.fs15_c01343{font-size:72.600000px;}
.fs1_c01343{font-size:76.020000px;}
.fse_c01343{font-size:82.920000px;}
.fs1a_c01343{font-size:86.400000px;}
.fs18_c01343{font-size:89.880000px;}
.fs1b_c01343{font-size:93.300000px;}
.fs19_c01343{font-size:114.060000px;}
.y0_c01343{bottom:0.000000px;}
.y1c0_c01343{bottom:206.490000px;}
.y1bf_c01343{bottom:212.550000px;}
.y1b6_c01343{bottom:228.960000px;}
.y1ba_c01343{bottom:234.150000px;}
.y1bb_c01343{bottom:235.005000px;}
.y1b8_c01343{bottom:235.875000px;}
.y1be_c01343{bottom:238.470000px;}
.y1bd_c01343{bottom:241.050000px;}
.y1b9_c01343{bottom:244.515000px;}
.y1bc_c01343{bottom:246.240000px;}
.y1b2_c01343{bottom:247.110000px;}
.y1b7_c01343{bottom:249.690000px;}
.y1b3_c01343{bottom:252.285000px;}
.y1b4_c01343{bottom:254.010000px;}
.y1b5_c01343{bottom:254.880000px;}
.y1ac_c01343{bottom:267.840000px;}
.y1aa_c01343{bottom:268.710000px;}
.y1b1_c01343{bottom:269.565000px;}
.y1a9_c01343{bottom:270.435000px;}
.y1ab_c01343{bottom:271.290000px;}
.y1af_c01343{bottom:272.160000px;}
.y1b0_c01343{bottom:276.480000px;}
.y1ae_c01343{bottom:277.350000px;}
.y1ad_c01343{bottom:278.205000px;}
.y1a4_c01343{bottom:279.930000px;}
.y1a3_c01343{bottom:281.670000px;}
.y1a5_c01343{bottom:283.395000px;}
.y1a6_c01343{bottom:285.120000px;}
.y1a7_c01343{bottom:290.310000px;}
.y1a8_c01343{bottom:299.805000px;}
.y19c_c01343{bottom:301.530000px;}
.y1a0_c01343{bottom:304.125000px;}
.y19d_c01343{bottom:305.850000px;}
.y1a1_c01343{bottom:306.720000px;}
.y19e_c01343{bottom:309.315000px;}
.y1a2_c01343{bottom:311.040000px;}
.y19f_c01343{bottom:313.635000px;}
.y196_c01343{bottom:316.230000px;}
.y199_c01343{bottom:319.680000px;}
.y197_c01343{bottom:321.405000px;}
.y198_c01343{bottom:323.130000px;}
.y19b_c01343{bottom:324.000000px;}
.y19a_c01343{bottom:324.870000px;}
.y195_c01343{bottom:331.770000px;}
.y191_c01343{bottom:334.365000px;}
.y193_c01343{bottom:335.235000px;}
.y192_c01343{bottom:338.685000px;}
.y194_c01343{bottom:340.410000px;}
.y18a_c01343{bottom:350.790000px;}
.y18c_c01343{bottom:352.515000px;}
.y18e_c01343{bottom:354.240000px;}
.y18b_c01343{bottom:355.110000px;}
.y18d_c01343{bottom:357.690000px;}
.y18f_c01343{bottom:359.430000px;}
.y190_c01343{bottom:361.155000px;}
.y186_c01343{bottom:370.650000px;}
.y184_c01343{bottom:372.390000px;}
.y185_c01343{bottom:374.970000px;}
.y187_c01343{bottom:375.840000px;}
.y188_c01343{bottom:376.710000px;}
.y189_c01343{bottom:377.565000px;}
.y181_c01343{bottom:387.075000px;}
.y182_c01343{bottom:387.930000px;}
.y17f_c01343{bottom:388.800000px;}
.y183_c01343{bottom:391.395000px;}
.y180_c01343{bottom:392.250000px;}
.y17e_c01343{bottom:393.990000px;}
.y176_c01343{bottom:403.485000px;}
.y178_c01343{bottom:404.355000px;}
.y17a_c01343{bottom:405.210000px;}
.y17b_c01343{bottom:407.805000px;}
.y177_c01343{bottom:408.675000px;}
.y179_c01343{bottom:409.530000px;}
.y17c_c01343{bottom:411.270000px;}
.y17d_c01343{bottom:412.125000px;}
.y172_c01343{bottom:423.360000px;}
.y171_c01343{bottom:424.230000px;}
.y173_c01343{bottom:427.680000px;}
.y175_c01343{bottom:430.275000px;}
.y174_c01343{bottom:433.725000px;}
.y16b_c01343{bottom:438.045000px;}
.y16a_c01343{bottom:439.770000px;}
.y16f_c01343{bottom:441.510000px;}
.y16d_c01343{bottom:442.365000px;}
.y16c_c01343{bottom:443.235000px;}
.y16e_c01343{bottom:444.960000px;}
.y170_c01343{bottom:447.555000px;}
.y164_c01343{bottom:457.050000px;}
.y167_c01343{bottom:458.790000px;}
.y162_c01343{bottom:459.645000px;}
.y163_c01343{bottom:460.515000px;}
.y168_c01343{bottom:461.370000px;}
.y165_c01343{bottom:462.240000px;}
.y166_c01343{bottom:463.110000px;}
.y169_c01343{bottom:464.835000px;}
.y161_c01343{bottom:475.200000px;}
.y15b_c01343{bottom:489.885000px;}
.y15c_c01343{bottom:492.480000px;}
.y15f_c01343{bottom:493.350000px;}
.y15e_c01343{bottom:495.930000px;}
.y15d_c01343{bottom:496.800000px;}
.y15a_c01343{bottom:497.670000px;}
.y160_c01343{bottom:499.395000px;}
.y156_c01343{bottom:508.890000px;}
.y159_c01343{bottom:510.630000px;}
.y157_c01343{bottom:512.355000px;}
.y158_c01343{bottom:513.210000px;}
.y155_c01343{bottom:517.530000px;}
.y150_c01343{bottom:523.590000px;}
.y14e_c01343{bottom:524.445000px;}
.y14d_c01343{bottom:525.315000px;}
.y14f_c01343{bottom:526.170000px;}
.y152_c01343{bottom:527.040000px;}
.y151_c01343{bottom:529.635000px;}
.y154_c01343{bottom:530.490000px;}
.y153_c01343{bottom:532.230000px;}
.y143_c01343{bottom:539.130000px;}
.y144_c01343{bottom:540.000000px;}
.y146_c01343{bottom:542.595000px;}
.y148_c01343{bottom:543.450000px;}
.y145_c01343{bottom:545.190000px;}
.y14b_c01343{bottom:546.045000px;}
.y149_c01343{bottom:546.915000px;}
.y147_c01343{bottom:547.770000px;}
.y14a_c01343{bottom:549.510000px;}
.y14c_c01343{bottom:550.365000px;}
.y139_c01343{bottom:558.150000px;}
.y13a_c01343{bottom:560.730000px;}
.y13c_c01343{bottom:561.600000px;}
.y13b_c01343{bottom:562.470000px;}
.y13d_c01343{bottom:564.195000px;}
.y141_c01343{bottom:565.050000px;}
.y13e_c01343{bottom:565.920000px;}
.y13f_c01343{bottom:566.790000px;}
.y142_c01343{bottom:568.515000px;}
.y12d_c01343{bottom:572.835000px;}
.y140_c01343{bottom:574.560000px;}
.y131_c01343{bottom:576.285000px;}
.y12f_c01343{bottom:577.155000px;}
.y12e_c01343{bottom:578.010000px;}
.y130_c01343{bottom:578.880000px;}
.y132_c01343{bottom:579.750000px;}
.y133_c01343{bottom:580.605000px;}
.y134_c01343{bottom:583.200000px;}
.y135_c01343{bottom:584.925000px;}
.y136_c01343{bottom:585.795000px;}
.y137_c01343{bottom:586.650000px;}
.y126_c01343{bottom:592.710000px;}
.y127_c01343{bottom:593.565000px;}
.y128_c01343{bottom:597.030000px;}
.y129_c01343{bottom:600.480000px;}
.y138_c01343{bottom:601.350000px;}
.y12a_c01343{bottom:602.205000px;}
.y12b_c01343{bottom:603.075000px;}
.y11b_c01343{bottom:607.395000px;}
.y11c_c01343{bottom:608.250000px;}
.y11d_c01343{bottom:610.845000px;}
.y11a_c01343{bottom:611.715000px;}
.y12c_c01343{bottom:612.570000px;}
.y11e_c01343{bottom:615.165000px;}
.y123_c01343{bottom:616.035000px;}
.y11f_c01343{bottom:616.890000px;}
.y121_c01343{bottom:617.760000px;}
.y120_c01343{bottom:618.630000px;}
.y122_c01343{bottom:621.210000px;}
.y124_c01343{bottom:622.080000px;}
.y119_c01343{bottom:622.950000px;}
.y113_c01343{bottom:628.995000px;}
.y114_c01343{bottom:629.850000px;}
.y115_c01343{bottom:631.590000px;}
.y125_c01343{bottom:633.315000px;}
.y116_c01343{bottom:634.170000px;}
.y118_c01343{bottom:635.040000px;}
.y117_c01343{bottom:635.910000px;}
.y107_c01343{bottom:642.810000px;}
.y10a_c01343{bottom:647.130000px;}
.y109_c01343{bottom:648.000000px;}
.y108_c01343{bottom:648.870000px;}
.y10b_c01343{bottom:649.725000px;}
.y10c_c01343{bottom:650.595000px;}
.y10d_c01343{bottom:651.450000px;}
.y10e_c01343{bottom:652.320000px;}
.y10f_c01343{bottom:653.190000px;}
.y110_c01343{bottom:654.045000px;}
.y111_c01343{bottom:654.915000px;}
.y112_c01343{bottom:656.640000px;}
.yfe_c01343{bottom:662.685000px;}
.yfd_c01343{bottom:664.410000px;}
.yff_c01343{bottom:665.280000px;}
.y100_c01343{bottom:666.150000px;}
.y101_c01343{bottom:667.005000px;}
.y102_c01343{bottom:668.730000px;}
.y103_c01343{bottom:669.600000px;}
.y104_c01343{bottom:671.325000px;}
.y105_c01343{bottom:672.195000px;}
.y106_c01343{bottom:673.050000px;}
.yf0_c01343{bottom:674.790000px;}
.yf2_c01343{bottom:677.370000px;}
.yf3_c01343{bottom:678.240000px;}
.yf4_c01343{bottom:679.110000px;}
.yf1_c01343{bottom:680.835000px;}
.yf7_c01343{bottom:682.560000px;}
.yf5_c01343{bottom:685.155000px;}
.yf6_c01343{bottom:686.010000px;}
.yf8_c01343{bottom:686.880000px;}
.yf9_c01343{bottom:687.750000px;}
.yfa_c01343{bottom:688.605000px;}
.yfb_c01343{bottom:691.200000px;}
.yfc_c01343{bottom:692.070000px;}
.ye6_c01343{bottom:694.650000px;}
.ye7_c01343{bottom:698.970000px;}
.ye8_c01343{bottom:699.840000px;}
.yec_c01343{bottom:700.710000px;}
.ye9_c01343{bottom:701.565000px;}
.yeb_c01343{bottom:702.435000px;}
.yea_c01343{bottom:703.290000px;}
.ye5_c01343{bottom:704.160000px;}
.yee_c01343{bottom:705.885000px;}
.yed_c01343{bottom:707.610000px;}
.yef_c01343{bottom:708.480000px;}
.ydd_c01343{bottom:715.395000px;}
.yde_c01343{bottom:716.250000px;}
.ydf_c01343{bottom:717.990000px;}
.ye2_c01343{bottom:718.845000px;}
.ye0_c01343{bottom:720.570000px;}
.ye1_c01343{bottom:721.440000px;}
.ye3_c01343{bottom:722.310000px;}
.ye4_c01343{bottom:725.760000px;}
.ydc_c01343{bottom:728.355000px;}
.yd6_c01343{bottom:733.530000px;}
.yd7_c01343{bottom:734.400000px;}
.yd8_c01343{bottom:736.125000px;}
.yd9_c01343{bottom:736.995000px;}
.yda_c01343{bottom:738.720000px;}
.yd5_c01343{bottom:740.445000px;}
.ydb_c01343{bottom:741.315000px;}
.yce_c01343{bottom:747.360000px;}
.ycd_c01343{bottom:749.955000px;}
.ycf_c01343{bottom:756.000000px;}
.yd0_c01343{bottom:756.870000px;}
.yd1_c01343{bottom:757.725000px;}
.yd2_c01343{bottom:758.595000px;}
.yd3_c01343{bottom:760.320000px;}
.yd4_c01343{bottom:761.190000px;}
.yc8_c01343{bottom:770.685000px;}
.ycb_c01343{bottom:771.555000px;}
.yc9_c01343{bottom:774.150000px;}
.yca_c01343{bottom:775.005000px;}
.yc7_c01343{bottom:777.600000px;}
.ycc_c01343{bottom:785.370000px;}
.yc0_c01343{bottom:790.560000px;}
.yc2_c01343{bottom:791.430000px;}
.yc3_c01343{bottom:792.285000px;}
.yc4_c01343{bottom:793.155000px;}
.yc5_c01343{bottom:794.010000px;}
.yc6_c01343{bottom:794.880000px;}
.yc1_c01343{bottom:797.475000px;}
.y240_c01343{bottom:802.650000px;}
.ybd_c01343{bottom:806.115000px;}
.ybc_c01343{bottom:809.565000px;}
.ybe_c01343{bottom:812.160000px;}
.ybf_c01343{bottom:813.030000px;}
.yb7_c01343{bottom:822.525000px;}
.ybb_c01343{bottom:825.990000px;}
.yb8_c01343{bottom:826.845000px;}
.yb9_c01343{bottom:828.570000px;}
.yba_c01343{bottom:829.440000px;}
.yb0_c01343{bottom:841.530000px;}
.yb4_c01343{bottom:842.400000px;}
.yb3_c01343{bottom:843.270000px;}
.yb1_c01343{bottom:844.125000px;}
.y23e_c01343{bottom:844.995000px;}
.yb2_c01343{bottom:845.850000px;}
.yb5_c01343{bottom:846.720000px;}
.yb6_c01343{bottom:847.590000px;}
.y23c_c01343{bottom:849.315000px;}
.y23d_c01343{bottom:851.040000px;}
.y23f_c01343{bottom:854.490000px;}
.ya9_c01343{bottom:856.230000px;}
.yaa_c01343{bottom:857.085000px;}
.ya8_c01343{bottom:859.680000px;}
.yae_c01343{bottom:860.550000px;}
.yad_c01343{bottom:861.405000px;}
.yab_c01343{bottom:862.275000px;}
.yac_c01343{bottom:863.130000px;}
.yaf_c01343{bottom:864.870000px;}
.y238_c01343{bottom:868.320000px;}
.y237_c01343{bottom:870.915000px;}
.y239_c01343{bottom:871.770000px;}
.y23b_c01343{bottom:875.235000px;}
.y23a_c01343{bottom:876.090000px;}
.ya3_c01343{bottom:876.960000px;}
.ya4_c01343{bottom:877.830000px;}
.ya2_c01343{bottom:878.685000px;}
.ya6_c01343{bottom:880.410000px;}
.ya5_c01343{bottom:882.150000px;}
.ya7_c01343{bottom:883.005000px;}
.y234_c01343{bottom:886.470000px;}
.y235_c01343{bottom:890.790000px;}
.y233_c01343{bottom:891.645000px;}
.y9c_c01343{bottom:892.515000px;}
.y9e_c01343{bottom:894.240000px;}
.ya0_c01343{bottom:895.965000px;}
.y9d_c01343{bottom:896.835000px;}
.y236_c01343{bottom:897.690000px;}
.y9f_c01343{bottom:900.285000px;}
.y22d_c01343{bottom:902.010000px;}
.y22f_c01343{bottom:903.750000px;}
.y232_c01343{bottom:905.475000px;}
.y22e_c01343{bottom:906.330000px;}
.y230_c01343{bottom:909.795000px;}
.y231_c01343{bottom:910.650000px;}
.ya1_c01343{bottom:912.390000px;}
.y95_c01343{bottom:914.115000px;}
.y96_c01343{bottom:914.970000px;}
.y97_c01343{bottom:915.840000px;}
.y9b_c01343{bottom:916.710000px;}
.y99_c01343{bottom:920.160000px;}
.y98_c01343{bottom:922.755000px;}
.y9a_c01343{bottom:924.480000px;}
.y90_c01343{bottom:927.075000px;}
.y92_c01343{bottom:929.670000px;}
.y8e_c01343{bottom:930.525000px;}
.y8f_c01343{bottom:931.395000px;}
.y91_c01343{bottom:933.120000px;}
.y94_c01343{bottom:935.715000px;}
.y93_c01343{bottom:936.570000px;}
.y22c_c01343{bottom:942.630000px;}
.y86_c01343{bottom:944.355000px;}
.y87_c01343{bottom:947.805000px;}
.y8a_c01343{bottom:948.675000px;}
.y88_c01343{bottom:949.530000px;}
.y89_c01343{bottom:950.400000px;}
.y8d_c01343{bottom:951.270000px;}
.y8b_c01343{bottom:952.125000px;}
.y8c_c01343{bottom:953.850000px;}
.y7f_c01343{bottom:963.360000px;}
.y80_c01343{bottom:965.955000px;}
.y83_c01343{bottom:966.810000px;}
.y82_c01343{bottom:969.405000px;}
.y226_c01343{bottom:970.275000px;}
.y84_c01343{bottom:971.130000px;}
.y225_c01343{bottom:972.000000px;}
.y7e_c01343{bottom:973.725000px;}
.y81_c01343{bottom:975.450000px;}
.y229_c01343{bottom:977.190000px;}
.y85_c01343{bottom:978.045000px;}
.y77_c01343{bottom:979.770000px;}
.y7a_c01343{bottom:980.640000px;}
.y7b_c01343{bottom:982.365000px;}
.y78_c01343{bottom:983.235000px;}
.y79_c01343{bottom:984.960000px;}
.y7c_c01343{bottom:986.685000px;}
.y7d_c01343{bottom:987.555000px;}
.y228_c01343{bottom:989.280000px;}
.y76_c01343{bottom:990.150000px;}
.y227_c01343{bottom:991.005000px;}
.y222_c01343{bottom:993.600000px;}
.y223_c01343{bottom:994.470000px;}
.y224_c01343{bottom:995.325000px;}
.y70_c01343{bottom:996.195000px;}
.y6f_c01343{bottom:997.050000px;}
.y71_c01343{bottom:997.920000px;}
.y72_c01343{bottom:998.790000px;}
.y22b_c01343{bottom:999.645000px;}
.y73_c01343{bottom:1001.370000px;}
.y74_c01343{bottom:1003.965000px;}
.y75_c01343{bottom:1005.690000px;}
.y21e_c01343{bottom:1010.880000px;}
.y21f_c01343{bottom:1012.605000px;}
.y220_c01343{bottom:1014.330000px;}
.y6b_c01343{bottom:1015.200000px;}
.y221_c01343{bottom:1016.925000px;}
.y6c_c01343{bottom:1017.795000px;}
.y6d_c01343{bottom:1019.520000px;}
.y6e_c01343{bottom:1022.115000px;}
.y21b_c01343{bottom:1025.565000px;}
.y21c_c01343{bottom:1027.290000px;}
.y21a_c01343{bottom:1029.885000px;}
.y65_c01343{bottom:1030.755000px;}
.y21d_c01343{bottom:1032.480000px;}
.y69_c01343{bottom:1034.205000px;}
.y66_c01343{bottom:1035.930000px;}
.y67_c01343{bottom:1036.800000px;}
.y68_c01343{bottom:1037.670000px;}
.y6a_c01343{bottom:1039.395000px;}
.y213_c01343{bottom:1040.250000px;}
.y212_c01343{bottom:1042.845000px;}
.y217_c01343{bottom:1044.570000px;}
.y216_c01343{bottom:1045.440000px;}
.y214_c01343{bottom:1046.310000px;}
.y215_c01343{bottom:1047.165000px;}
.y5f_c01343{bottom:1048.890000px;}
.y219_c01343{bottom:1049.760000px;}
.y218_c01343{bottom:1050.630000px;}
.y62_c01343{bottom:1051.485000px;}
.y61_c01343{bottom:1053.210000px;}
.y60_c01343{bottom:1054.080000px;}
.y63_c01343{bottom:1054.950000px;}
.y64_c01343{bottom:1057.530000px;}
.y210_c01343{bottom:1060.995000px;}
.y211_c01343{bottom:1061.850000px;}
.y20f_c01343{bottom:1064.445000px;}
.y5a_c01343{bottom:1067.910000px;}
.y59_c01343{bottom:1068.765000px;}
.y5b_c01343{bottom:1070.490000px;}
.y5c_c01343{bottom:1071.360000px;}
.y5d_c01343{bottom:1073.955000px;}
.y5e_c01343{bottom:1074.810000px;}
.y20a_c01343{bottom:1077.405000px;}
.y20d_c01343{bottom:1080.000000px;}
.y209_c01343{bottom:1081.725000px;}
.y20b_c01343{bottom:1083.450000px;}
.y20c_c01343{bottom:1084.320000px;}
.y20e_c01343{bottom:1086.045000px;}
.y57_c01343{bottom:1087.770000px;}
.y58_c01343{bottom:1089.510000px;}
.y203_c01343{bottom:1092.960000px;}
.y204_c01343{bottom:1099.005000px;}
.y205_c01343{bottom:1100.730000px;}
.y206_c01343{bottom:1101.600000px;}
.y54_c01343{bottom:1102.470000px;}
.y207_c01343{bottom:1103.325000px;}
.y208_c01343{bottom:1104.195000px;}
.y52_c01343{bottom:1105.050000px;}
.y53_c01343{bottom:1105.920000px;}
.y55_c01343{bottom:1106.790000px;}
.y56_c01343{bottom:1108.515000px;}
.y1fe_c01343{bottom:1111.965000px;}
.y1ff_c01343{bottom:1115.430000px;}
.y200_c01343{bottom:1116.285000px;}
.y4d_c01343{bottom:1119.750000px;}
.y202_c01343{bottom:1123.200000px;}
.y4c_c01343{bottom:1124.070000px;}
.y4e_c01343{bottom:1124.925000px;}
.y50_c01343{bottom:1125.795000px;}
.y4f_c01343{bottom:1126.650000px;}
.y51_c01343{bottom:1127.520000px;}
.y201_c01343{bottom:1128.390000px;}
.y1f8_c01343{bottom:1130.970000px;}
.y1fa_c01343{bottom:1132.710000px;}
.y1f9_c01343{bottom:1134.435000px;}
.y1fb_c01343{bottom:1135.290000px;}
.y1fc_c01343{bottom:1136.160000px;}
.y49_c01343{bottom:1137.030000px;}
.y46_c01343{bottom:1137.885000px;}
.y1fd_c01343{bottom:1138.755000px;}
.y47_c01343{bottom:1140.480000px;}
.y48_c01343{bottom:1141.350000px;}
.y4a_c01343{bottom:1142.205000px;}
.y4b_c01343{bottom:1143.930000px;}
.y1f0_c01343{bottom:1145.670000px;}
.y1f2_c01343{bottom:1147.395000px;}
.y1f4_c01343{bottom:1149.990000px;}
.y1f1_c01343{bottom:1150.845000px;}
.y1f3_c01343{bottom:1152.570000px;}
.y41_c01343{bottom:1155.165000px;}
.y1f5_c01343{bottom:1156.035000px;}
.y1f6_c01343{bottom:1156.890000px;}
.y42_c01343{bottom:1157.760000px;}
.y44_c01343{bottom:1158.630000px;}
.y1f7_c01343{bottom:1159.485000px;}
.y43_c01343{bottom:1161.210000px;}
.y45_c01343{bottom:1162.080000px;}
.y1ed_c01343{bottom:1163.805000px;}
.y1ef_c01343{bottom:1166.400000px;}
.y1ee_c01343{bottom:1168.995000px;}
.y3a_c01343{bottom:1171.590000px;}
.y3f_c01343{bottom:1173.315000px;}
.y3e_c01343{bottom:1174.170000px;}
.y3b_c01343{bottom:1175.040000px;}
.y3c_c01343{bottom:1175.910000px;}
.y3d_c01343{bottom:1176.765000px;}
.y40_c01343{bottom:1178.490000px;}
.y1e7_c01343{bottom:1182.810000px;}
.y1e8_c01343{bottom:1183.680000px;}
.y1e9_c01343{bottom:1184.550000px;}
.y1e6_c01343{bottom:1185.405000px;}
.y1ea_c01343{bottom:1186.275000px;}
.y1eb_c01343{bottom:1190.595000px;}
.y1ec_c01343{bottom:1191.450000px;}
.y36_c01343{bottom:1193.190000px;}
.y37_c01343{bottom:1194.045000px;}
.y39_c01343{bottom:1195.770000px;}
.y1e5_c01343{bottom:1196.640000px;}
.y38_c01343{bottom:1200.960000px;}
.y1e1_c01343{bottom:1201.830000px;}
.y1e2_c01343{bottom:1202.685000px;}
.y1e4_c01343{bottom:1204.410000px;}
.y1e3_c01343{bottom:1205.280000px;}
.y30_c01343{bottom:1206.150000px;}
.y1e0_c01343{bottom:1207.005000px;}
.y34_c01343{bottom:1207.875000px;}
.y31_c01343{bottom:1209.600000px;}
.y32_c01343{bottom:1211.325000px;}
.y33_c01343{bottom:1213.050000px;}
.y35_c01343{bottom:1213.920000px;}
.y1de_c01343{bottom:1218.240000px;}
.y22a_c01343{bottom:1219.110000px;}
.y1df_c01343{bottom:1220.835000px;}
.y29_c01343{bottom:1222.560000px;}
.y2a_c01343{bottom:1223.430000px;}
.y2d_c01343{bottom:1226.880000px;}
.y2f_c01343{bottom:1227.750000px;}
.y2b_c01343{bottom:1228.605000px;}
.y2c_c01343{bottom:1229.475000px;}
.y2e_c01343{bottom:1230.330000px;}
.y1d9_c01343{bottom:1233.795000px;}
.y1db_c01343{bottom:1237.245000px;}
.y1da_c01343{bottom:1238.970000px;}
.y1dc_c01343{bottom:1239.840000px;}
.y1dd_c01343{bottom:1242.435000px;}
.y27_c01343{bottom:1243.290000px;}
.y23_c01343{bottom:1245.030000px;}
.y24_c01343{bottom:1245.885000px;}
.y25_c01343{bottom:1246.755000px;}
.y26_c01343{bottom:1247.610000px;}
.y28_c01343{bottom:1251.075000px;}
.y1d4_c01343{bottom:1251.930000px;}
.y1d6_c01343{bottom:1254.525000px;}
.y1d5_c01343{bottom:1257.120000px;}
.y1d8_c01343{bottom:1259.715000px;}
.y21_c01343{bottom:1260.570000px;}
.y22_c01343{bottom:1261.440000px;}
.y1d7_c01343{bottom:1262.310000px;}
.y1f_c01343{bottom:1263.165000px;}
.y20_c01343{bottom:1264.035000px;}
.y1d0_c01343{bottom:1271.805000px;}
.y1d1_c01343{bottom:1272.675000px;}
.y17_c01343{bottom:1276.125000px;}
.y1a_c01343{bottom:1276.995000px;}
.y1d2_c01343{bottom:1277.850000px;}
.y1d3_c01343{bottom:1278.720000px;}
.y1b_c01343{bottom:1279.590000px;}
.y18_c01343{bottom:1280.445000px;}
.y19_c01343{bottom:1281.315000px;}
.y1c_c01343{bottom:1283.040000px;}
.y1ca_c01343{bottom:1286.490000px;}
.y1d_c01343{bottom:1287.360000px;}
.y1e_c01343{bottom:1288.230000px;}
.y1cb_c01343{bottom:1289.085000px;}
.y1cf_c01343{bottom:1292.550000px;}
.y1cd_c01343{bottom:1293.405000px;}
.y1cc_c01343{bottom:1294.275000px;}
.y1ce_c01343{bottom:1296.870000px;}
.y15_c01343{bottom:1297.725000px;}
.y14_c01343{bottom:1298.595000px;}
.y1c6_c01343{bottom:1302.045000px;}
.y1c7_c01343{bottom:1304.640000px;}
.y1c9_c01343{bottom:1306.365000px;}
.y1c5_c01343{bottom:1307.235000px;}
.y1c8_c01343{bottom:1308.090000px;}
.y16_c01343{bottom:1310.685000px;}
.ye_c01343{bottom:1311.555000px;}
.y10_c01343{bottom:1312.410000px;}
.y11_c01343{bottom:1315.005000px;}
.yf_c01343{bottom:1315.875000px;}
.y12_c01343{bottom:1316.730000px;}
.y13_c01343{bottom:1317.600000px;}
.yc_c01343{bottom:1333.155000px;}
.yb_c01343{bottom:1334.880000px;}
.yd_c01343{bottom:1336.605000px;}
.y1c1_c01343{bottom:1340.925000px;}
.y1c3_c01343{bottom:1341.795000px;}
.y1c2_c01343{bottom:1343.520000px;}
.y6_c01343{bottom:1346.115000px;}
.y1c4_c01343{bottom:1348.710000px;}
.y7_c01343{bottom:1349.565000px;}
.y8_c01343{bottom:1350.435000px;}
.y9_c01343{bottom:1351.290000px;}
.ya_c01343{bottom:1353.030000px;}
.y2_c01343{bottom:1360.800000px;}
.y3_c01343{bottom:1362.525000px;}
.y1_c01343{bottom:1363.395000px;}
.y5_c01343{bottom:1365.990000px;}
.y4_c01343{bottom:1367.715000px;}
.h14_c01343{height:3.110063px;}
.hf_c01343{height:5.399414px;}
.h9_c01343{height:6.209326px;}
.h13_c01343{height:9.340986px;}
.h1a_c01343{height:12.418652px;}
.h19_c01343{height:12.820986px;}
.h11_c01343{height:15.550313px;}
.h18_c01343{height:18.681973px;}
.h12_c01343{height:21.759639px;}
.hc_c01343{height:24.891299px;}
.h8_c01343{height:27.968965px;}
.h16_c01343{height:31.100625px;}
.h15_c01343{height:34.232285px;}
.he_c01343{height:37.309951px;}
.h2_c01343{height:40.441611px;}
.h5_c01343{height:43.519277px;}
.ha_c01343{height:46.650937px;}
.hb_c01343{height:49.782598px;}
.h6_c01343{height:52.860264px;}
.hd_c01343{height:55.991924px;}
.h4_c01343{height:59.069590px;}
.h7_c01343{height:62.201250px;}
.h17_c01343{height:65.332910px;}
.h3_c01343{height:68.410576px;}
.h10_c01343{height:74.619902px;}
.h1d_c01343{height:77.751563px;}
.h1b_c01343{height:80.883223px;}
.h1e_c01343{height:83.960889px;}
.h1c_c01343{height:102.642861px;}
.h0_c01343{height:1509.405000px;}
.h1_c01343{height:1509.750000px;}
.w0_c01343{width:1079.130000px;}
.w1_c01343{width:1079.250000px;}
.x0_c01343{left:0.000000px;}
.x10a_c01343{left:22.470000px;}
.x111_c01343{left:47.520000px;}
.xdc_c01343{left:139.110000px;}
.x10b_c01343{left:178.845000px;}
.x10c_c01343{left:190.950000px;}
.xdd_c01343{left:213.405000px;}
.xa5_c01343{left:216.870000px;}
.x88_c01343{left:222.045000px;}
.xe9_c01343{left:223.770000px;}
.xde_c01343{left:225.510000px;}
.xff_c01343{left:228.090000px;}
.x77_c01343{left:230.685000px;}
.x8e_c01343{left:234.150000px;}
.x10e_c01343{left:241.050000px;}
.x83_c01343{left:245.370000px;}
.x7c_c01343{left:249.690000px;}
.xb1_c01343{left:252.285000px;}
.xac_c01343{left:254.880000px;}
.x7d_c01343{left:256.605000px;}
.x96_c01343{left:258.330000px;}
.xad_c01343{left:261.795000px;}
.xf2_c01343{left:264.390000px;}
.x106_c01343{left:266.115000px;}
.xf6_c01343{left:273.030000px;}
.x100_c01343{left:275.610000px;}
.xef_c01343{left:278.205000px;}
.xdf_c01343{left:283.395000px;}
.x10d_c01343{left:287.715000px;}
.x78_c01343{left:289.440000px;}
.xfb_c01343{left:293.760000px;}
.x8f_c01343{left:295.485000px;}
.xd9_c01343{left:298.950000px;}
.xf7_c01343{left:300.675000px;}
.xa6_c01343{left:302.400000px;}
.x84_c01343{left:313.635000px;}
.xb2_c01343{left:316.230000px;}
.x7e_c01343{left:319.680000px;}
.x97_c01343{left:321.405000px;}
.xa7_c01343{left:325.725000px;}
.xe3_c01343{left:328.320000px;}
.xf3_c01343{left:332.640000px;}
.xf8_c01343{left:334.365000px;}
.x7f_c01343{left:336.960000px;}
.x104_c01343{left:338.685000px;}
.x90_c01343{left:341.280000px;}
.x75_c01343{left:343.875000px;}
.x101_c01343{left:345.600000px;}
.xec_c01343{left:348.195000px;}
.xb3_c01343{left:350.790000px;}
.x98_c01343{left:355.110000px;}
.xfc_c01343{left:357.690000px;}
.xbb_c01343{left:359.430000px;}
.x109_c01343{left:362.010000px;}
.xed_c01343{left:363.750000px;}
.x107_c01343{left:367.200000px;}
.xa2_c01343{left:368.925000px;}
.x89_c01343{left:372.390000px;}
.xe4_c01343{left:374.115000px;}
.x85_c01343{left:376.710000px;}
.xa8_c01343{left:378.435000px;}
.x80_c01343{left:380.160000px;}
.xf0_c01343{left:382.755000px;}
.xb4_c01343{left:388.800000px;}
.x79_c01343{left:391.395000px;}
.xb5_c01343{left:393.990000px;}
.x9c_c01343{left:395.715000px;}
.x102_c01343{left:402.630000px;}
.x91_c01343{left:405.210000px;}
.xf4_c01343{left:407.805000px;}
.xfe_c01343{left:409.530000px;}
.x9d_c01343{left:411.270000px;}
.xe5_c01343{left:412.995000px;}
.xbc_c01343{left:418.170000px;}
.x8a_c01343{left:420.765000px;}
.xda_c01343{left:422.490000px;}
.xa9_c01343{left:425.085000px;}
.x103_c01343{left:428.550000px;}
.x8b_c01343{left:431.130000px;}
.xf1_c01343{left:432.870000px;}
.x92_c01343{left:435.450000px;}
.x81_c01343{left:438.915000px;}
.xe0_c01343{left:444.090000px;}
.x105_c01343{left:446.685000px;}
.x8c_c01343{left:450.150000px;}
.xfd_c01343{left:452.730000px;}
.xe6_c01343{left:458.790000px;}
.x9e_c01343{left:462.240000px;}
.xdb_c01343{left:464.835000px;}
.xe1_c01343{left:468.285000px;}
.xe7_c01343{left:470.010000px;}
.xb6_c01343{left:472.605000px;}
.xaa_c01343{left:475.200000px;}
.xf5_c01343{left:476.925000px;}
.x9f_c01343{left:478.650000px;}
.xea_c01343{left:482.115000px;}
.x93_c01343{left:484.710000px;}
.xb7_c01343{left:487.290000px;}
.x10f_c01343{left:489.885000px;}
.xe2_c01343{left:494.205000px;}
.xa0_c01343{left:495.930000px;}
.x86_c01343{left:501.120000px;}
.xa3_c01343{left:503.715000px;}
.x7a_c01343{left:506.310000px;}
.xb9_c01343{left:508.890000px;}
.xf9_c01343{left:510.630000px;}
.x99_c01343{left:512.355000px;}
.x110_c01343{left:516.675000px;}
.xe8_c01343{left:518.400000px;}
.x82_c01343{left:521.850000px;}
.xeb_c01343{left:523.590000px;}
.xee_c01343{left:525.315000px;}
.xfa_c01343{left:527.040000px;}
.x87_c01343{left:528.765000px;}
.xa4_c01343{left:531.360000px;}
.x108_c01343{left:538.275000px;}
.x71_c01343{left:540.870000px;}
.x72_c01343{left:549.510000px;}
.x56_c01343{left:552.960000px;}
.x1_c01343{left:555.555000px;}
.x13_c01343{left:557.280000px;}
.x5c_c01343{left:560.730000px;}
.x50_c01343{left:563.325000px;}
.xb8_c01343{left:565.050000px;}
.xbd_c01343{left:566.790000px;}
.xe_c01343{left:568.515000px;}
.x53_c01343{left:570.240000px;}
.xae_c01343{left:571.965000px;}
.xd2_c01343{left:573.690000px;}
.x3a_c01343{left:575.430000px;}
.x47_c01343{left:578.880000px;}
.x2_c01343{left:582.330000px;}
.xf_c01343{left:584.070000px;}
.x51_c01343{left:585.795000px;}
.x1a_c01343{left:588.390000px;}
.xaf_c01343{left:590.970000px;}
.x67_c01343{left:593.565000px;}
.xc3_c01343{left:595.290000px;}
.x2e_c01343{left:597.030000px;}
.xca_c01343{left:598.755000px;}
.xc2_c01343{left:600.480000px;}
.x44_c01343{left:602.205000px;}
.xd3_c01343{left:604.800000px;}
.x73_c01343{left:606.525000px;}
.x31_c01343{left:609.120000px;}
.x94_c01343{left:610.845000px;}
.x4f_c01343{left:613.440000px;}
.x1b_c01343{left:616.890000px;}
.xc4_c01343{left:618.630000px;}
.x42_c01343{left:621.210000px;}
.x14_c01343{left:625.530000px;}
.x7_c01343{left:627.270000px;}
.x5d_c01343{left:631.590000px;}
.x54_c01343{left:633.315000px;}
.x3_c01343{left:636.765000px;}
.x2f_c01343{left:639.360000px;}
.x15_c01343{left:641.085000px;}
.x57_c01343{left:642.810000px;}
.x63_c01343{left:644.550000px;}
.x23_c01343{left:646.275000px;}
.x3b_c01343{left:648.870000px;}
.x4a_c01343{left:650.595000px;}
.x9a_c01343{left:652.320000px;}
.x48_c01343{left:654.045000px;}
.x36_c01343{left:655.770000px;}
.x6d_c01343{left:657.510000px;}
.x26_c01343{left:659.235000px;}
.x10_c01343{left:660.960000px;}
.x45_c01343{left:662.685000px;}
.x8_c01343{left:664.410000px;}
.x70_c01343{left:667.005000px;}
.x2a_c01343{left:671.325000px;}
.x37_c01343{left:673.920000px;}
.x1d_c01343{left:676.515000px;}
.x61_c01343{left:679.110000px;}
.x3c_c01343{left:680.835000px;}
.x9_c01343{left:682.560000px;}
.x5f_c01343{left:684.285000px;}
.xd0_c01343{left:686.880000px;}
.x32_c01343{left:688.605000px;}
.xbe_c01343{left:692.070000px;}
.xc7_c01343{left:693.795000px;}
.x1c_c01343{left:695.520000px;}
.x46_c01343{left:698.115000px;}
.x4b_c01343{left:700.710000px;}
.x33_c01343{left:704.160000px;}
.x76_c01343{left:705.885000px;}
.x16_c01343{left:707.610000px;}
.xa1_c01343{left:711.075000px;}
.x4_c01343{left:712.800000px;}
.x58_c01343{left:714.525000px;}
.x40_c01343{left:717.120000px;}
.xa_c01343{left:720.570000px;}
.x3d_c01343{left:722.310000px;}
.xc5_c01343{left:724.890000px;}
.xc6_c01343{left:726.630000px;}
.x4c_c01343{left:729.210000px;}
.xcf_c01343{left:730.950000px;}
.x49_c01343{left:732.675000px;}
.x24_c01343{left:735.270000px;}
.x3e_c01343{left:737.850000px;}
.x30_c01343{left:740.445000px;}
.x2b_c01343{left:743.910000px;}
.x60_c01343{left:745.635000px;}
.x6e_c01343{left:747.360000px;}
.x5_c01343{left:749.085000px;}
.x17_c01343{left:750.810000px;}
.xb_c01343{left:753.405000px;}
.x1e_c01343{left:755.130000px;}
.x27_c01343{left:756.870000px;}
.x4d_c01343{left:758.595000px;}
.x18_c01343{left:760.320000px;}
.x1f_c01343{left:762.045000px;}
.x59_c01343{left:764.640000px;}
.x25_c01343{left:766.365000px;}
.x68_c01343{left:768.960000px;}
.x52_c01343{left:770.685000px;}
.x43_c01343{left:774.150000px;}
.x41_c01343{left:776.730000px;}
.x20_c01343{left:778.470000px;}
.xcb_c01343{left:780.195000px;}
.xc1_c01343{left:781.920000px;}
.xd4_c01343{left:783.645000px;}
.xba_c01343{left:785.370000px;}
.x38_c01343{left:787.110000px;}
.xc_c01343{left:789.690000px;}
.x55_c01343{left:791.430000px;}
.x28_c01343{left:793.155000px;}
.x21_c01343{left:794.880000px;}
.x11_c01343{left:797.475000px;}
.x5e_c01343{left:800.925000px;}
.xd1_c01343{left:803.520000px;}
.x3f_c01343{left:805.245000px;}
.xd5_c01343{left:808.710000px;}
.x6c_c01343{left:810.435000px;}
.x6b_c01343{left:812.160000px;}
.x64_c01343{left:814.755000px;}
.x9b_c01343{left:816.480000px;}
.x2c_c01343{left:818.205000px;}
.x29_c01343{left:821.670000px;}
.x65_c01343{left:823.395000px;}
.x34_c01343{left:825.120000px;}
.x2d_c01343{left:828.570000px;}
.x74_c01343{left:831.165000px;}
.x6_c01343{left:832.890000px;}
.x19_c01343{left:834.630000px;}
.x7b_c01343{left:837.210000px;}
.xd_c01343{left:838.950000px;}
.x62_c01343{left:840.675000px;}
.xc9_c01343{left:842.400000px;}
.x6f_c01343{left:845.850000px;}
.x95_c01343{left:847.590000px;}
.x4e_c01343{left:850.170000px;}
.x35_c01343{left:851.910000px;}
.xbf_c01343{left:853.635000px;}
.x12_c01343{left:855.360000px;}
.x39_c01343{left:857.955000px;}
.x8d_c01343{left:859.680000px;}
.x69_c01343{left:861.405000px;}
.x5a_c01343{left:863.130000px;}
.xb0_c01343{left:865.725000px;}
.xc0_c01343{left:867.450000px;}
.x6a_c01343{left:870.915000px;}
.x22_c01343{left:872.640000px;}
.xab_c01343{left:875.235000px;}
.x5b_c01343{left:876.960000px;}
.x66_c01343{left:878.685000px;}
.xcc_c01343{left:883.875000px;}
.xcd_c01343{left:885.600000px;}
.xd7_c01343{left:888.195000px;}
.xc8_c01343{left:889.920000px;}
.xce_c01343{left:894.238755px;}
.xd8_c01343{left:899.430000px;}
.xd6_c01343{left:903.750000px;}
@media print{
.v2_c01343{vertical-align:-6.133333pt;}
.v0_c01343{vertical-align:0.000000pt;}
.v1_c01343{vertical-align:3.093333pt;}
.ls2_c01343{letter-spacing:0.000000pt;}
.ls1_c01343{letter-spacing:5.818880pt;}
.ls0_c01343{letter-spacing:27.371691pt;}
.ws0_c01343{word-spacing:-15.633493pt;}
.ws1_c01343{word-spacing:0.000000pt;}
.fs12_c01343{font-size:3.072000pt;}
.fsd_c01343{font-size:5.333333pt;}
.fs7_c01343{font-size:6.133333pt;}
.fs11_c01343{font-size:9.226667pt;}
.fs17_c01343{font-size:12.266667pt;}
.fsf_c01343{font-size:15.360000pt;}
.fs16_c01343{font-size:18.453333pt;}
.fs10_c01343{font-size:21.493333pt;}
.fsa_c01343{font-size:24.586667pt;}
.fs6_c01343{font-size:27.626667pt;}
.fs14_c01343{font-size:30.720000pt;}
.fs13_c01343{font-size:33.813333pt;}
.fsc_c01343{font-size:36.853333pt;}
.fs0_c01343{font-size:39.946667pt;}
.fs3_c01343{font-size:42.986667pt;}
.fs8_c01343{font-size:46.080000pt;}
.fs9_c01343{font-size:49.173333pt;}
.fs4_c01343{font-size:52.213333pt;}
.fsb_c01343{font-size:55.306667pt;}
.fs2_c01343{font-size:58.346667pt;}
.fs5_c01343{font-size:61.440000pt;}
.fs15_c01343{font-size:64.533333pt;}
.fs1_c01343{font-size:67.573333pt;}
.fse_c01343{font-size:73.706667pt;}
.fs1a_c01343{font-size:76.800000pt;}
.fs18_c01343{font-size:79.893333pt;}
.fs1b_c01343{font-size:82.933333pt;}
.fs19_c01343{font-size:101.386667pt;}
.y0_c01343{bottom:0.000000pt;}
.y1c0_c01343{bottom:183.546667pt;}
.y1bf_c01343{bottom:188.933333pt;}
.y1b6_c01343{bottom:203.520000pt;}
.y1ba_c01343{bottom:208.133333pt;}
.y1bb_c01343{bottom:208.893333pt;}
.y1b8_c01343{bottom:209.666667pt;}
.y1be_c01343{bottom:211.973333pt;}
.y1bd_c01343{bottom:214.266667pt;}
.y1b9_c01343{bottom:217.346667pt;}
.y1bc_c01343{bottom:218.880000pt;}
.y1b2_c01343{bottom:219.653333pt;}
.y1b7_c01343{bottom:221.946667pt;}
.y1b3_c01343{bottom:224.253333pt;}
.y1b4_c01343{bottom:225.786667pt;}
.y1b5_c01343{bottom:226.560000pt;}
.y1ac_c01343{bottom:238.080000pt;}
.y1aa_c01343{bottom:238.853333pt;}
.y1b1_c01343{bottom:239.613333pt;}
.y1a9_c01343{bottom:240.386667pt;}
.y1ab_c01343{bottom:241.146667pt;}
.y1af_c01343{bottom:241.920000pt;}
.y1b0_c01343{bottom:245.760000pt;}
.y1ae_c01343{bottom:246.533333pt;}
.y1ad_c01343{bottom:247.293333pt;}
.y1a4_c01343{bottom:248.826667pt;}
.y1a3_c01343{bottom:250.373333pt;}
.y1a5_c01343{bottom:251.906667pt;}
.y1a6_c01343{bottom:253.440000pt;}
.y1a7_c01343{bottom:258.053333pt;}
.y1a8_c01343{bottom:266.493333pt;}
.y19c_c01343{bottom:268.026667pt;}
.y1a0_c01343{bottom:270.333333pt;}
.y19d_c01343{bottom:271.866667pt;}
.y1a1_c01343{bottom:272.640000pt;}
.y19e_c01343{bottom:274.946667pt;}
.y1a2_c01343{bottom:276.480000pt;}
.y19f_c01343{bottom:278.786667pt;}
.y196_c01343{bottom:281.093333pt;}
.y199_c01343{bottom:284.160000pt;}
.y197_c01343{bottom:285.693333pt;}
.y198_c01343{bottom:287.226667pt;}
.y19b_c01343{bottom:288.000000pt;}
.y19a_c01343{bottom:288.773333pt;}
.y195_c01343{bottom:294.906667pt;}
.y191_c01343{bottom:297.213333pt;}
.y193_c01343{bottom:297.986667pt;}
.y192_c01343{bottom:301.053333pt;}
.y194_c01343{bottom:302.586667pt;}
.y18a_c01343{bottom:311.813333pt;}
.y18c_c01343{bottom:313.346667pt;}
.y18e_c01343{bottom:314.880000pt;}
.y18b_c01343{bottom:315.653333pt;}
.y18d_c01343{bottom:317.946667pt;}
.y18f_c01343{bottom:319.493333pt;}
.y190_c01343{bottom:321.026667pt;}
.y186_c01343{bottom:329.466667pt;}
.y184_c01343{bottom:331.013333pt;}
.y185_c01343{bottom:333.306667pt;}
.y187_c01343{bottom:334.080000pt;}
.y188_c01343{bottom:334.853333pt;}
.y189_c01343{bottom:335.613333pt;}
.y181_c01343{bottom:344.066667pt;}
.y182_c01343{bottom:344.826667pt;}
.y17f_c01343{bottom:345.600000pt;}
.y183_c01343{bottom:347.906667pt;}
.y180_c01343{bottom:348.666667pt;}
.y17e_c01343{bottom:350.213333pt;}
.y176_c01343{bottom:358.653333pt;}
.y178_c01343{bottom:359.426667pt;}
.y17a_c01343{bottom:360.186667pt;}
.y17b_c01343{bottom:362.493333pt;}
.y177_c01343{bottom:363.266667pt;}
.y179_c01343{bottom:364.026667pt;}
.y17c_c01343{bottom:365.573333pt;}
.y17d_c01343{bottom:366.333333pt;}
.y172_c01343{bottom:376.320000pt;}
.y171_c01343{bottom:377.093333pt;}
.y173_c01343{bottom:380.160000pt;}
.y175_c01343{bottom:382.466667pt;}
.y174_c01343{bottom:385.533333pt;}
.y16b_c01343{bottom:389.373333pt;}
.y16a_c01343{bottom:390.906667pt;}
.y16f_c01343{bottom:392.453333pt;}
.y16d_c01343{bottom:393.213333pt;}
.y16c_c01343{bottom:393.986667pt;}
.y16e_c01343{bottom:395.520000pt;}
.y170_c01343{bottom:397.826667pt;}
.y164_c01343{bottom:406.266667pt;}
.y167_c01343{bottom:407.813333pt;}
.y162_c01343{bottom:408.573333pt;}
.y163_c01343{bottom:409.346667pt;}
.y168_c01343{bottom:410.106667pt;}
.y165_c01343{bottom:410.880000pt;}
.y166_c01343{bottom:411.653333pt;}
.y169_c01343{bottom:413.186667pt;}
.y161_c01343{bottom:422.400000pt;}
.y15b_c01343{bottom:435.453333pt;}
.y15c_c01343{bottom:437.760000pt;}
.y15f_c01343{bottom:438.533333pt;}
.y15e_c01343{bottom:440.826667pt;}
.y15d_c01343{bottom:441.600000pt;}
.y15a_c01343{bottom:442.373333pt;}
.y160_c01343{bottom:443.906667pt;}
.y156_c01343{bottom:452.346667pt;}
.y159_c01343{bottom:453.893333pt;}
.y157_c01343{bottom:455.426667pt;}
.y158_c01343{bottom:456.186667pt;}
.y155_c01343{bottom:460.026667pt;}
.y150_c01343{bottom:465.413333pt;}
.y14e_c01343{bottom:466.173333pt;}
.y14d_c01343{bottom:466.946667pt;}
.y14f_c01343{bottom:467.706667pt;}
.y152_c01343{bottom:468.480000pt;}
.y151_c01343{bottom:470.786667pt;}
.y154_c01343{bottom:471.546667pt;}
.y153_c01343{bottom:473.093333pt;}
.y143_c01343{bottom:479.226667pt;}
.y144_c01343{bottom:480.000000pt;}
.y146_c01343{bottom:482.306667pt;}
.y148_c01343{bottom:483.066667pt;}
.y145_c01343{bottom:484.613333pt;}
.y14b_c01343{bottom:485.373333pt;}
.y149_c01343{bottom:486.146667pt;}
.y147_c01343{bottom:486.906667pt;}
.y14a_c01343{bottom:488.453333pt;}
.y14c_c01343{bottom:489.213333pt;}
.y139_c01343{bottom:496.133333pt;}
.y13a_c01343{bottom:498.426667pt;}
.y13c_c01343{bottom:499.200000pt;}
.y13b_c01343{bottom:499.973333pt;}
.y13d_c01343{bottom:501.506667pt;}
.y141_c01343{bottom:502.266667pt;}
.y13e_c01343{bottom:503.040000pt;}
.y13f_c01343{bottom:503.813333pt;}
.y142_c01343{bottom:505.346667pt;}
.y12d_c01343{bottom:509.186667pt;}
.y140_c01343{bottom:510.720000pt;}
.y131_c01343{bottom:512.253333pt;}
.y12f_c01343{bottom:513.026667pt;}
.y12e_c01343{bottom:513.786667pt;}
.y130_c01343{bottom:514.560000pt;}
.y132_c01343{bottom:515.333333pt;}
.y133_c01343{bottom:516.093333pt;}
.y134_c01343{bottom:518.400000pt;}
.y135_c01343{bottom:519.933333pt;}
.y136_c01343{bottom:520.706667pt;}
.y137_c01343{bottom:521.466667pt;}
.y126_c01343{bottom:526.853333pt;}
.y127_c01343{bottom:527.613333pt;}
.y128_c01343{bottom:530.693333pt;}
.y129_c01343{bottom:533.760000pt;}
.y138_c01343{bottom:534.533333pt;}
.y12a_c01343{bottom:535.293333pt;}
.y12b_c01343{bottom:536.066667pt;}
.y11b_c01343{bottom:539.906667pt;}
.y11c_c01343{bottom:540.666667pt;}
.y11d_c01343{bottom:542.973333pt;}
.y11a_c01343{bottom:543.746667pt;}
.y12c_c01343{bottom:544.506667pt;}
.y11e_c01343{bottom:546.813333pt;}
.y123_c01343{bottom:547.586667pt;}
.y11f_c01343{bottom:548.346667pt;}
.y121_c01343{bottom:549.120000pt;}
.y120_c01343{bottom:549.893333pt;}
.y122_c01343{bottom:552.186667pt;}
.y124_c01343{bottom:552.960000pt;}
.y119_c01343{bottom:553.733333pt;}
.y113_c01343{bottom:559.106667pt;}
.y114_c01343{bottom:559.866667pt;}
.y115_c01343{bottom:561.413333pt;}
.y125_c01343{bottom:562.946667pt;}
.y116_c01343{bottom:563.706667pt;}
.y118_c01343{bottom:564.480000pt;}
.y117_c01343{bottom:565.253333pt;}
.y107_c01343{bottom:571.386667pt;}
.y10a_c01343{bottom:575.226667pt;}
.y109_c01343{bottom:576.000000pt;}
.y108_c01343{bottom:576.773333pt;}
.y10b_c01343{bottom:577.533333pt;}
.y10c_c01343{bottom:578.306667pt;}
.y10d_c01343{bottom:579.066667pt;}
.y10e_c01343{bottom:579.840000pt;}
.y10f_c01343{bottom:580.613333pt;}
.y110_c01343{bottom:581.373333pt;}
.y111_c01343{bottom:582.146667pt;}
.y112_c01343{bottom:583.680000pt;}
.yfe_c01343{bottom:589.053333pt;}
.yfd_c01343{bottom:590.586667pt;}
.yff_c01343{bottom:591.360000pt;}
.y100_c01343{bottom:592.133333pt;}
.y101_c01343{bottom:592.893333pt;}
.y102_c01343{bottom:594.426667pt;}
.y103_c01343{bottom:595.200000pt;}
.y104_c01343{bottom:596.733333pt;}
.y105_c01343{bottom:597.506667pt;}
.y106_c01343{bottom:598.266667pt;}
.yf0_c01343{bottom:599.813333pt;}
.yf2_c01343{bottom:602.106667pt;}
.yf3_c01343{bottom:602.880000pt;}
.yf4_c01343{bottom:603.653333pt;}
.yf1_c01343{bottom:605.186667pt;}
.yf7_c01343{bottom:606.720000pt;}
.yf5_c01343{bottom:609.026667pt;}
.yf6_c01343{bottom:609.786667pt;}
.yf8_c01343{bottom:610.560000pt;}
.yf9_c01343{bottom:611.333333pt;}
.yfa_c01343{bottom:612.093333pt;}
.yfb_c01343{bottom:614.400000pt;}
.yfc_c01343{bottom:615.173333pt;}
.ye6_c01343{bottom:617.466667pt;}
.ye7_c01343{bottom:621.306667pt;}
.ye8_c01343{bottom:622.080000pt;}
.yec_c01343{bottom:622.853333pt;}
.ye9_c01343{bottom:623.613333pt;}
.yeb_c01343{bottom:624.386667pt;}
.yea_c01343{bottom:625.146667pt;}
.ye5_c01343{bottom:625.920000pt;}
.yee_c01343{bottom:627.453333pt;}
.yed_c01343{bottom:628.986667pt;}
.yef_c01343{bottom:629.760000pt;}
.ydd_c01343{bottom:635.906667pt;}
.yde_c01343{bottom:636.666667pt;}
.ydf_c01343{bottom:638.213333pt;}
.ye2_c01343{bottom:638.973333pt;}
.ye0_c01343{bottom:640.506667pt;}
.ye1_c01343{bottom:641.280000pt;}
.ye3_c01343{bottom:642.053333pt;}
.ye4_c01343{bottom:645.120000pt;}
.ydc_c01343{bottom:647.426667pt;}
.yd6_c01343{bottom:652.026667pt;}
.yd7_c01343{bottom:652.800000pt;}
.yd8_c01343{bottom:654.333333pt;}
.yd9_c01343{bottom:655.106667pt;}
.yda_c01343{bottom:656.640000pt;}
.yd5_c01343{bottom:658.173333pt;}
.ydb_c01343{bottom:658.946667pt;}
.yce_c01343{bottom:664.320000pt;}
.ycd_c01343{bottom:666.626667pt;}
.ycf_c01343{bottom:672.000000pt;}
.yd0_c01343{bottom:672.773333pt;}
.yd1_c01343{bottom:673.533333pt;}
.yd2_c01343{bottom:674.306667pt;}
.yd3_c01343{bottom:675.840000pt;}
.yd4_c01343{bottom:676.613333pt;}
.yc8_c01343{bottom:685.053333pt;}
.ycb_c01343{bottom:685.826667pt;}
.yc9_c01343{bottom:688.133333pt;}
.yca_c01343{bottom:688.893333pt;}
.yc7_c01343{bottom:691.200000pt;}
.ycc_c01343{bottom:698.106667pt;}
.yc0_c01343{bottom:702.720000pt;}
.yc2_c01343{bottom:703.493333pt;}
.yc3_c01343{bottom:704.253333pt;}
.yc4_c01343{bottom:705.026667pt;}
.yc5_c01343{bottom:705.786667pt;}
.yc6_c01343{bottom:706.560000pt;}
.yc1_c01343{bottom:708.866667pt;}
.y240_c01343{bottom:713.466667pt;}
.ybd_c01343{bottom:716.546667pt;}
.ybc_c01343{bottom:719.613333pt;}
.ybe_c01343{bottom:721.920000pt;}
.ybf_c01343{bottom:722.693333pt;}
.yb7_c01343{bottom:731.133333pt;}
.ybb_c01343{bottom:734.213333pt;}
.yb8_c01343{bottom:734.973333pt;}
.yb9_c01343{bottom:736.506667pt;}
.yba_c01343{bottom:737.280000pt;}
.yb0_c01343{bottom:748.026667pt;}
.yb4_c01343{bottom:748.800000pt;}
.yb3_c01343{bottom:749.573333pt;}
.yb1_c01343{bottom:750.333333pt;}
.y23e_c01343{bottom:751.106667pt;}
.yb2_c01343{bottom:751.866667pt;}
.yb5_c01343{bottom:752.640000pt;}
.yb6_c01343{bottom:753.413333pt;}
.y23c_c01343{bottom:754.946667pt;}
.y23d_c01343{bottom:756.480000pt;}
.y23f_c01343{bottom:759.546667pt;}
.ya9_c01343{bottom:761.093333pt;}
.yaa_c01343{bottom:761.853333pt;}
.ya8_c01343{bottom:764.160000pt;}
.yae_c01343{bottom:764.933333pt;}
.yad_c01343{bottom:765.693333pt;}
.yab_c01343{bottom:766.466667pt;}
.yac_c01343{bottom:767.226667pt;}
.yaf_c01343{bottom:768.773333pt;}
.y238_c01343{bottom:771.840000pt;}
.y237_c01343{bottom:774.146667pt;}
.y239_c01343{bottom:774.906667pt;}
.y23b_c01343{bottom:777.986667pt;}
.y23a_c01343{bottom:778.746667pt;}
.ya3_c01343{bottom:779.520000pt;}
.ya4_c01343{bottom:780.293333pt;}
.ya2_c01343{bottom:781.053333pt;}
.ya6_c01343{bottom:782.586667pt;}
.ya5_c01343{bottom:784.133333pt;}
.ya7_c01343{bottom:784.893333pt;}
.y234_c01343{bottom:787.973333pt;}
.y235_c01343{bottom:791.813333pt;}
.y233_c01343{bottom:792.573333pt;}
.y9c_c01343{bottom:793.346667pt;}
.y9e_c01343{bottom:794.880000pt;}
.ya0_c01343{bottom:796.413333pt;}
.y9d_c01343{bottom:797.186667pt;}
.y236_c01343{bottom:797.946667pt;}
.y9f_c01343{bottom:800.253333pt;}
.y22d_c01343{bottom:801.786667pt;}
.y22f_c01343{bottom:803.333333pt;}
.y232_c01343{bottom:804.866667pt;}
.y22e_c01343{bottom:805.626667pt;}
.y230_c01343{bottom:808.706667pt;}
.y231_c01343{bottom:809.466667pt;}
.ya1_c01343{bottom:811.013333pt;}
.y95_c01343{bottom:812.546667pt;}
.y96_c01343{bottom:813.306667pt;}
.y97_c01343{bottom:814.080000pt;}
.y9b_c01343{bottom:814.853333pt;}
.y99_c01343{bottom:817.920000pt;}
.y98_c01343{bottom:820.226667pt;}
.y9a_c01343{bottom:821.760000pt;}
.y90_c01343{bottom:824.066667pt;}
.y92_c01343{bottom:826.373333pt;}
.y8e_c01343{bottom:827.133333pt;}
.y8f_c01343{bottom:827.906667pt;}
.y91_c01343{bottom:829.440000pt;}
.y94_c01343{bottom:831.746667pt;}
.y93_c01343{bottom:832.506667pt;}
.y22c_c01343{bottom:837.893333pt;}
.y86_c01343{bottom:839.426667pt;}
.y87_c01343{bottom:842.493333pt;}
.y8a_c01343{bottom:843.266667pt;}
.y88_c01343{bottom:844.026667pt;}
.y89_c01343{bottom:844.800000pt;}
.y8d_c01343{bottom:845.573333pt;}
.y8b_c01343{bottom:846.333333pt;}
.y8c_c01343{bottom:847.866667pt;}
.y7f_c01343{bottom:856.320000pt;}
.y80_c01343{bottom:858.626667pt;}
.y83_c01343{bottom:859.386667pt;}
.y82_c01343{bottom:861.693333pt;}
.y226_c01343{bottom:862.466667pt;}
.y84_c01343{bottom:863.226667pt;}
.y225_c01343{bottom:864.000000pt;}
.y7e_c01343{bottom:865.533333pt;}
.y81_c01343{bottom:867.066667pt;}
.y229_c01343{bottom:868.613333pt;}
.y85_c01343{bottom:869.373333pt;}
.y77_c01343{bottom:870.906667pt;}
.y7a_c01343{bottom:871.680000pt;}
.y7b_c01343{bottom:873.213333pt;}
.y78_c01343{bottom:873.986667pt;}
.y79_c01343{bottom:875.520000pt;}
.y7c_c01343{bottom:877.053333pt;}
.y7d_c01343{bottom:877.826667pt;}
.y228_c01343{bottom:879.360000pt;}
.y76_c01343{bottom:880.133333pt;}
.y227_c01343{bottom:880.893333pt;}
.y222_c01343{bottom:883.200000pt;}
.y223_c01343{bottom:883.973333pt;}
.y224_c01343{bottom:884.733333pt;}
.y70_c01343{bottom:885.506667pt;}
.y6f_c01343{bottom:886.266667pt;}
.y71_c01343{bottom:887.040000pt;}
.y72_c01343{bottom:887.813333pt;}
.y22b_c01343{bottom:888.573333pt;}
.y73_c01343{bottom:890.106667pt;}
.y74_c01343{bottom:892.413333pt;}
.y75_c01343{bottom:893.946667pt;}
.y21e_c01343{bottom:898.560000pt;}
.y21f_c01343{bottom:900.093333pt;}
.y220_c01343{bottom:901.626667pt;}
.y6b_c01343{bottom:902.400000pt;}
.y221_c01343{bottom:903.933333pt;}
.y6c_c01343{bottom:904.706667pt;}
.y6d_c01343{bottom:906.240000pt;}
.y6e_c01343{bottom:908.546667pt;}
.y21b_c01343{bottom:911.613333pt;}
.y21c_c01343{bottom:913.146667pt;}
.y21a_c01343{bottom:915.453333pt;}
.y65_c01343{bottom:916.226667pt;}
.y21d_c01343{bottom:917.760000pt;}
.y69_c01343{bottom:919.293333pt;}
.y66_c01343{bottom:920.826667pt;}
.y67_c01343{bottom:921.600000pt;}
.y68_c01343{bottom:922.373333pt;}
.y6a_c01343{bottom:923.906667pt;}
.y213_c01343{bottom:924.666667pt;}
.y212_c01343{bottom:926.973333pt;}
.y217_c01343{bottom:928.506667pt;}
.y216_c01343{bottom:929.280000pt;}
.y214_c01343{bottom:930.053333pt;}
.y215_c01343{bottom:930.813333pt;}
.y5f_c01343{bottom:932.346667pt;}
.y219_c01343{bottom:933.120000pt;}
.y218_c01343{bottom:933.893333pt;}
.y62_c01343{bottom:934.653333pt;}
.y61_c01343{bottom:936.186667pt;}
.y60_c01343{bottom:936.960000pt;}
.y63_c01343{bottom:937.733333pt;}
.y64_c01343{bottom:940.026667pt;}
.y210_c01343{bottom:943.106667pt;}
.y211_c01343{bottom:943.866667pt;}
.y20f_c01343{bottom:946.173333pt;}
.y5a_c01343{bottom:949.253333pt;}
.y59_c01343{bottom:950.013333pt;}
.y5b_c01343{bottom:951.546667pt;}
.y5c_c01343{bottom:952.320000pt;}
.y5d_c01343{bottom:954.626667pt;}
.y5e_c01343{bottom:955.386667pt;}
.y20a_c01343{bottom:957.693333pt;}
.y20d_c01343{bottom:960.000000pt;}
.y209_c01343{bottom:961.533333pt;}
.y20b_c01343{bottom:963.066667pt;}
.y20c_c01343{bottom:963.840000pt;}
.y20e_c01343{bottom:965.373333pt;}
.y57_c01343{bottom:966.906667pt;}
.y58_c01343{bottom:968.453333pt;}
.y203_c01343{bottom:971.520000pt;}
.y204_c01343{bottom:976.893333pt;}
.y205_c01343{bottom:978.426667pt;}
.y206_c01343{bottom:979.200000pt;}
.y54_c01343{bottom:979.973333pt;}
.y207_c01343{bottom:980.733333pt;}
.y208_c01343{bottom:981.506667pt;}
.y52_c01343{bottom:982.266667pt;}
.y53_c01343{bottom:983.040000pt;}
.y55_c01343{bottom:983.813333pt;}
.y56_c01343{bottom:985.346667pt;}
.y1fe_c01343{bottom:988.413333pt;}
.y1ff_c01343{bottom:991.493333pt;}
.y200_c01343{bottom:992.253333pt;}
.y4d_c01343{bottom:995.333333pt;}
.y202_c01343{bottom:998.400000pt;}
.y4c_c01343{bottom:999.173333pt;}
.y4e_c01343{bottom:999.933333pt;}
.y50_c01343{bottom:1000.706667pt;}
.y4f_c01343{bottom:1001.466667pt;}
.y51_c01343{bottom:1002.240000pt;}
.y201_c01343{bottom:1003.013333pt;}
.y1f8_c01343{bottom:1005.306667pt;}
.y1fa_c01343{bottom:1006.853333pt;}
.y1f9_c01343{bottom:1008.386667pt;}
.y1fb_c01343{bottom:1009.146667pt;}
.y1fc_c01343{bottom:1009.920000pt;}
.y49_c01343{bottom:1010.693333pt;}
.y46_c01343{bottom:1011.453333pt;}
.y1fd_c01343{bottom:1012.226667pt;}
.y47_c01343{bottom:1013.760000pt;}
.y48_c01343{bottom:1014.533333pt;}
.y4a_c01343{bottom:1015.293333pt;}
.y4b_c01343{bottom:1016.826667pt;}
.y1f0_c01343{bottom:1018.373333pt;}
.y1f2_c01343{bottom:1019.906667pt;}
.y1f4_c01343{bottom:1022.213333pt;}
.y1f1_c01343{bottom:1022.973333pt;}
.y1f3_c01343{bottom:1024.506667pt;}
.y41_c01343{bottom:1026.813333pt;}
.y1f5_c01343{bottom:1027.586667pt;}
.y1f6_c01343{bottom:1028.346667pt;}
.y42_c01343{bottom:1029.120000pt;}
.y44_c01343{bottom:1029.893333pt;}
.y1f7_c01343{bottom:1030.653333pt;}
.y43_c01343{bottom:1032.186667pt;}
.y45_c01343{bottom:1032.960000pt;}
.y1ed_c01343{bottom:1034.493333pt;}
.y1ef_c01343{bottom:1036.800000pt;}
.y1ee_c01343{bottom:1039.106667pt;}
.y3a_c01343{bottom:1041.413333pt;}
.y3f_c01343{bottom:1042.946667pt;}
.y3e_c01343{bottom:1043.706667pt;}
.y3b_c01343{bottom:1044.480000pt;}
.y3c_c01343{bottom:1045.253333pt;}
.y3d_c01343{bottom:1046.013333pt;}
.y40_c01343{bottom:1047.546667pt;}
.y1e7_c01343{bottom:1051.386667pt;}
.y1e8_c01343{bottom:1052.160000pt;}
.y1e9_c01343{bottom:1052.933333pt;}
.y1e6_c01343{bottom:1053.693333pt;}
.y1ea_c01343{bottom:1054.466667pt;}
.y1eb_c01343{bottom:1058.306667pt;}
.y1ec_c01343{bottom:1059.066667pt;}
.y36_c01343{bottom:1060.613333pt;}
.y37_c01343{bottom:1061.373333pt;}
.y39_c01343{bottom:1062.906667pt;}
.y1e5_c01343{bottom:1063.680000pt;}
.y38_c01343{bottom:1067.520000pt;}
.y1e1_c01343{bottom:1068.293333pt;}
.y1e2_c01343{bottom:1069.053333pt;}
.y1e4_c01343{bottom:1070.586667pt;}
.y1e3_c01343{bottom:1071.360000pt;}
.y30_c01343{bottom:1072.133333pt;}
.y1e0_c01343{bottom:1072.893333pt;}
.y34_c01343{bottom:1073.666667pt;}
.y31_c01343{bottom:1075.200000pt;}
.y32_c01343{bottom:1076.733333pt;}
.y33_c01343{bottom:1078.266667pt;}
.y35_c01343{bottom:1079.040000pt;}
.y1de_c01343{bottom:1082.880000pt;}
.y22a_c01343{bottom:1083.653333pt;}
.y1df_c01343{bottom:1085.186667pt;}
.y29_c01343{bottom:1086.720000pt;}
.y2a_c01343{bottom:1087.493333pt;}
.y2d_c01343{bottom:1090.560000pt;}
.y2f_c01343{bottom:1091.333333pt;}
.y2b_c01343{bottom:1092.093333pt;}
.y2c_c01343{bottom:1092.866667pt;}
.y2e_c01343{bottom:1093.626667pt;}
.y1d9_c01343{bottom:1096.706667pt;}
.y1db_c01343{bottom:1099.773333pt;}
.y1da_c01343{bottom:1101.306667pt;}
.y1dc_c01343{bottom:1102.080000pt;}
.y1dd_c01343{bottom:1104.386667pt;}
.y27_c01343{bottom:1105.146667pt;}
.y23_c01343{bottom:1106.693333pt;}
.y24_c01343{bottom:1107.453333pt;}
.y25_c01343{bottom:1108.226667pt;}
.y26_c01343{bottom:1108.986667pt;}
.y28_c01343{bottom:1112.066667pt;}
.y1d4_c01343{bottom:1112.826667pt;}
.y1d6_c01343{bottom:1115.133333pt;}
.y1d5_c01343{bottom:1117.440000pt;}
.y1d8_c01343{bottom:1119.746667pt;}
.y21_c01343{bottom:1120.506667pt;}
.y22_c01343{bottom:1121.280000pt;}
.y1d7_c01343{bottom:1122.053333pt;}
.y1f_c01343{bottom:1122.813333pt;}
.y20_c01343{bottom:1123.586667pt;}
.y1d0_c01343{bottom:1130.493333pt;}
.y1d1_c01343{bottom:1131.266667pt;}
.y17_c01343{bottom:1134.333333pt;}
.y1a_c01343{bottom:1135.106667pt;}
.y1d2_c01343{bottom:1135.866667pt;}
.y1d3_c01343{bottom:1136.640000pt;}
.y1b_c01343{bottom:1137.413333pt;}
.y18_c01343{bottom:1138.173333pt;}
.y19_c01343{bottom:1138.946667pt;}
.y1c_c01343{bottom:1140.480000pt;}
.y1ca_c01343{bottom:1143.546667pt;}
.y1d_c01343{bottom:1144.320000pt;}
.y1e_c01343{bottom:1145.093333pt;}
.y1cb_c01343{bottom:1145.853333pt;}
.y1cf_c01343{bottom:1148.933333pt;}
.y1cd_c01343{bottom:1149.693333pt;}
.y1cc_c01343{bottom:1150.466667pt;}
.y1ce_c01343{bottom:1152.773333pt;}
.y15_c01343{bottom:1153.533333pt;}
.y14_c01343{bottom:1154.306667pt;}
.y1c6_c01343{bottom:1157.373333pt;}
.y1c7_c01343{bottom:1159.680000pt;}
.y1c9_c01343{bottom:1161.213333pt;}
.y1c5_c01343{bottom:1161.986667pt;}
.y1c8_c01343{bottom:1162.746667pt;}
.y16_c01343{bottom:1165.053333pt;}
.ye_c01343{bottom:1165.826667pt;}
.y10_c01343{bottom:1166.586667pt;}
.y11_c01343{bottom:1168.893333pt;}
.yf_c01343{bottom:1169.666667pt;}
.y12_c01343{bottom:1170.426667pt;}
.y13_c01343{bottom:1171.200000pt;}
.yc_c01343{bottom:1185.026667pt;}
.yb_c01343{bottom:1186.560000pt;}
.yd_c01343{bottom:1188.093333pt;}
.y1c1_c01343{bottom:1191.933333pt;}
.y1c3_c01343{bottom:1192.706667pt;}
.y1c2_c01343{bottom:1194.240000pt;}
.y6_c01343{bottom:1196.546667pt;}
.y1c4_c01343{bottom:1198.853333pt;}
.y7_c01343{bottom:1199.613333pt;}
.y8_c01343{bottom:1200.386667pt;}
.y9_c01343{bottom:1201.146667pt;}
.ya_c01343{bottom:1202.693333pt;}
.y2_c01343{bottom:1209.600000pt;}
.y3_c01343{bottom:1211.133333pt;}
.y1_c01343{bottom:1211.906667pt;}
.y5_c01343{bottom:1214.213333pt;}
.y4_c01343{bottom:1215.746667pt;}
.h14_c01343{height:2.764500pt;}
.hf_c01343{height:4.799479pt;}
.h9_c01343{height:5.519401pt;}
.h13_c01343{height:8.303099pt;}
.h1a_c01343{height:11.038802pt;}
.h19_c01343{height:11.396432pt;}
.h11_c01343{height:13.822500pt;}
.h18_c01343{height:16.606198pt;}
.h12_c01343{height:19.341901pt;}
.hc_c01343{height:22.125599pt;}
.h8_c01343{height:24.861302pt;}
.h16_c01343{height:27.645000pt;}
.h15_c01343{height:30.428698pt;}
.he_c01343{height:33.164401pt;}
.h2_c01343{height:35.948099pt;}
.h5_c01343{height:38.683802pt;}
.ha_c01343{height:41.467500pt;}
.hb_c01343{height:44.251198pt;}
.h6_c01343{height:46.986901pt;}
.hd_c01343{height:49.770599pt;}
.h4_c01343{height:52.506302pt;}
.h7_c01343{height:55.290000pt;}
.h17_c01343{height:58.073698pt;}
.h3_c01343{height:60.809401pt;}
.h10_c01343{height:66.328802pt;}
.h1d_c01343{height:69.112500pt;}
.h1b_c01343{height:71.896198pt;}
.h1e_c01343{height:74.631901pt;}
.h1c_c01343{height:91.238099pt;}
.h0_c01343{height:1341.693333pt;}
.h1_c01343{height:1342.000000pt;}
.w0_c01343{width:959.226667pt;}
.w1_c01343{width:959.333333pt;}
.x0_c01343{left:0.000000pt;}
.x10a_c01343{left:19.973333pt;}
.x111_c01343{left:42.240000pt;}
.xdc_c01343{left:123.653333pt;}
.x10b_c01343{left:158.973333pt;}
.x10c_c01343{left:169.733333pt;}
.xdd_c01343{left:189.693333pt;}
.xa5_c01343{left:192.773333pt;}
.x88_c01343{left:197.373333pt;}
.xe9_c01343{left:198.906667pt;}
.xde_c01343{left:200.453333pt;}
.xff_c01343{left:202.746667pt;}
.x77_c01343{left:205.053333pt;}
.x8e_c01343{left:208.133333pt;}
.x10e_c01343{left:214.266667pt;}
.x83_c01343{left:218.106667pt;}
.x7c_c01343{left:221.946667pt;}
.xb1_c01343{left:224.253333pt;}
.xac_c01343{left:226.560000pt;}
.x7d_c01343{left:228.093333pt;}
.x96_c01343{left:229.626667pt;}
.xad_c01343{left:232.706667pt;}
.xf2_c01343{left:235.013333pt;}
.x106_c01343{left:236.546667pt;}
.xf6_c01343{left:242.693333pt;}
.x100_c01343{left:244.986667pt;}
.xef_c01343{left:247.293333pt;}
.xdf_c01343{left:251.906667pt;}
.x10d_c01343{left:255.746667pt;}
.x78_c01343{left:257.280000pt;}
.xfb_c01343{left:261.120000pt;}
.x8f_c01343{left:262.653333pt;}
.xd9_c01343{left:265.733333pt;}
.xf7_c01343{left:267.266667pt;}
.xa6_c01343{left:268.800000pt;}
.x84_c01343{left:278.786667pt;}
.xb2_c01343{left:281.093333pt;}
.x7e_c01343{left:284.160000pt;}
.x97_c01343{left:285.693333pt;}
.xa7_c01343{left:289.533333pt;}
.xe3_c01343{left:291.840000pt;}
.xf3_c01343{left:295.680000pt;}
.xf8_c01343{left:297.213333pt;}
.x7f_c01343{left:299.520000pt;}
.x104_c01343{left:301.053333pt;}
.x90_c01343{left:303.360000pt;}
.x75_c01343{left:305.666667pt;}
.x101_c01343{left:307.200000pt;}
.xec_c01343{left:309.506667pt;}
.xb3_c01343{left:311.813333pt;}
.x98_c01343{left:315.653333pt;}
.xfc_c01343{left:317.946667pt;}
.xbb_c01343{left:319.493333pt;}
.x109_c01343{left:321.786667pt;}
.xed_c01343{left:323.333333pt;}
.x107_c01343{left:326.400000pt;}
.xa2_c01343{left:327.933333pt;}
.x89_c01343{left:331.013333pt;}
.xe4_c01343{left:332.546667pt;}
.x85_c01343{left:334.853333pt;}
.xa8_c01343{left:336.386667pt;}
.x80_c01343{left:337.920000pt;}
.xf0_c01343{left:340.226667pt;}
.xb4_c01343{left:345.600000pt;}
.x79_c01343{left:347.906667pt;}
.xb5_c01343{left:350.213333pt;}
.x9c_c01343{left:351.746667pt;}
.x102_c01343{left:357.893333pt;}
.x91_c01343{left:360.186667pt;}
.xf4_c01343{left:362.493333pt;}
.xfe_c01343{left:364.026667pt;}
.x9d_c01343{left:365.573333pt;}
.xe5_c01343{left:367.106667pt;}
.xbc_c01343{left:371.706667pt;}
.x8a_c01343{left:374.013333pt;}
.xda_c01343{left:375.546667pt;}
.xa9_c01343{left:377.853333pt;}
.x103_c01343{left:380.933333pt;}
.x8b_c01343{left:383.226667pt;}
.xf1_c01343{left:384.773333pt;}
.x92_c01343{left:387.066667pt;}
.x81_c01343{left:390.146667pt;}
.xe0_c01343{left:394.746667pt;}
.x105_c01343{left:397.053333pt;}
.x8c_c01343{left:400.133333pt;}
.xfd_c01343{left:402.426667pt;}
.xe6_c01343{left:407.813333pt;}
.x9e_c01343{left:410.880000pt;}
.xdb_c01343{left:413.186667pt;}
.xe1_c01343{left:416.253333pt;}
.xe7_c01343{left:417.786667pt;}
.xb6_c01343{left:420.093333pt;}
.xaa_c01343{left:422.400000pt;}
.xf5_c01343{left:423.933333pt;}
.x9f_c01343{left:425.466667pt;}
.xea_c01343{left:428.546667pt;}
.x93_c01343{left:430.853333pt;}
.xb7_c01343{left:433.146667pt;}
.x10f_c01343{left:435.453333pt;}
.xe2_c01343{left:439.293333pt;}
.xa0_c01343{left:440.826667pt;}
.x86_c01343{left:445.440000pt;}
.xa3_c01343{left:447.746667pt;}
.x7a_c01343{left:450.053333pt;}
.xb9_c01343{left:452.346667pt;}
.xf9_c01343{left:453.893333pt;}
.x99_c01343{left:455.426667pt;}
.x110_c01343{left:459.266667pt;}
.xe8_c01343{left:460.800000pt;}
.x82_c01343{left:463.866667pt;}
.xeb_c01343{left:465.413333pt;}
.xee_c01343{left:466.946667pt;}
.xfa_c01343{left:468.480000pt;}
.x87_c01343{left:470.013333pt;}
.xa4_c01343{left:472.320000pt;}
.x108_c01343{left:478.466667pt;}
.x71_c01343{left:480.773333pt;}
.x72_c01343{left:488.453333pt;}
.x56_c01343{left:491.520000pt;}
.x1_c01343{left:493.826667pt;}
.x13_c01343{left:495.360000pt;}
.x5c_c01343{left:498.426667pt;}
.x50_c01343{left:500.733333pt;}
.xb8_c01343{left:502.266667pt;}
.xbd_c01343{left:503.813333pt;}
.xe_c01343{left:505.346667pt;}
.x53_c01343{left:506.880000pt;}
.xae_c01343{left:508.413333pt;}
.xd2_c01343{left:509.946667pt;}
.x3a_c01343{left:511.493333pt;}
.x47_c01343{left:514.560000pt;}
.x2_c01343{left:517.626667pt;}
.xf_c01343{left:519.173333pt;}
.x51_c01343{left:520.706667pt;}
.x1a_c01343{left:523.013333pt;}
.xaf_c01343{left:525.306667pt;}
.x67_c01343{left:527.613333pt;}
.xc3_c01343{left:529.146667pt;}
.x2e_c01343{left:530.693333pt;}
.xca_c01343{left:532.226667pt;}
.xc2_c01343{left:533.760000pt;}
.x44_c01343{left:535.293333pt;}
.xd3_c01343{left:537.600000pt;}
.x73_c01343{left:539.133333pt;}
.x31_c01343{left:541.440000pt;}
.x94_c01343{left:542.973333pt;}
.x4f_c01343{left:545.280000pt;}
.x1b_c01343{left:548.346667pt;}
.xc4_c01343{left:549.893333pt;}
.x42_c01343{left:552.186667pt;}
.x14_c01343{left:556.026667pt;}
.x7_c01343{left:557.573333pt;}
.x5d_c01343{left:561.413333pt;}
.x54_c01343{left:562.946667pt;}
.x3_c01343{left:566.013333pt;}
.x2f_c01343{left:568.320000pt;}
.x15_c01343{left:569.853333pt;}
.x57_c01343{left:571.386667pt;}
.x63_c01343{left:572.933333pt;}
.x23_c01343{left:574.466667pt;}
.x3b_c01343{left:576.773333pt;}
.x4a_c01343{left:578.306667pt;}
.x9a_c01343{left:579.840000pt;}
.x48_c01343{left:581.373333pt;}
.x36_c01343{left:582.906667pt;}
.x6d_c01343{left:584.453333pt;}
.x26_c01343{left:585.986667pt;}
.x10_c01343{left:587.520000pt;}
.x45_c01343{left:589.053333pt;}
.x8_c01343{left:590.586667pt;}
.x70_c01343{left:592.893333pt;}
.x2a_c01343{left:596.733333pt;}
.x37_c01343{left:599.040000pt;}
.x1d_c01343{left:601.346667pt;}
.x61_c01343{left:603.653333pt;}
.x3c_c01343{left:605.186667pt;}
.x9_c01343{left:606.720000pt;}
.x5f_c01343{left:608.253333pt;}
.xd0_c01343{left:610.560000pt;}
.x32_c01343{left:612.093333pt;}
.xbe_c01343{left:615.173333pt;}
.xc7_c01343{left:616.706667pt;}
.x1c_c01343{left:618.240000pt;}
.x46_c01343{left:620.546667pt;}
.x4b_c01343{left:622.853333pt;}
.x33_c01343{left:625.920000pt;}
.x76_c01343{left:627.453333pt;}
.x16_c01343{left:628.986667pt;}
.xa1_c01343{left:632.066667pt;}
.x4_c01343{left:633.600000pt;}
.x58_c01343{left:635.133333pt;}
.x40_c01343{left:637.440000pt;}
.xa_c01343{left:640.506667pt;}
.x3d_c01343{left:642.053333pt;}
.xc5_c01343{left:644.346667pt;}
.xc6_c01343{left:645.893333pt;}
.x4c_c01343{left:648.186667pt;}
.xcf_c01343{left:649.733333pt;}
.x49_c01343{left:651.266667pt;}
.x24_c01343{left:653.573333pt;}
.x3e_c01343{left:655.866667pt;}
.x30_c01343{left:658.173333pt;}
.x2b_c01343{left:661.253333pt;}
.x60_c01343{left:662.786667pt;}
.x6e_c01343{left:664.320000pt;}
.x5_c01343{left:665.853333pt;}
.x17_c01343{left:667.386667pt;}
.xb_c01343{left:669.693333pt;}
.x1e_c01343{left:671.226667pt;}
.x27_c01343{left:672.773333pt;}
.x4d_c01343{left:674.306667pt;}
.x18_c01343{left:675.840000pt;}
.x1f_c01343{left:677.373333pt;}
.x59_c01343{left:679.680000pt;}
.x25_c01343{left:681.213333pt;}
.x68_c01343{left:683.520000pt;}
.x52_c01343{left:685.053333pt;}
.x43_c01343{left:688.133333pt;}
.x41_c01343{left:690.426667pt;}
.x20_c01343{left:691.973333pt;}
.xcb_c01343{left:693.506667pt;}
.xc1_c01343{left:695.040000pt;}
.xd4_c01343{left:696.573333pt;}
.xba_c01343{left:698.106667pt;}
.x38_c01343{left:699.653333pt;}
.xc_c01343{left:701.946667pt;}
.x55_c01343{left:703.493333pt;}
.x28_c01343{left:705.026667pt;}
.x21_c01343{left:706.560000pt;}
.x11_c01343{left:708.866667pt;}
.x5e_c01343{left:711.933333pt;}
.xd1_c01343{left:714.240000pt;}
.x3f_c01343{left:715.773333pt;}
.xd5_c01343{left:718.853333pt;}
.x6c_c01343{left:720.386667pt;}
.x6b_c01343{left:721.920000pt;}
.x64_c01343{left:724.226667pt;}
.x9b_c01343{left:725.760000pt;}
.x2c_c01343{left:727.293333pt;}
.x29_c01343{left:730.373333pt;}
.x65_c01343{left:731.906667pt;}
.x34_c01343{left:733.440000pt;}
.x2d_c01343{left:736.506667pt;}
.x74_c01343{left:738.813333pt;}
.x6_c01343{left:740.346667pt;}
.x19_c01343{left:741.893333pt;}
.x7b_c01343{left:744.186667pt;}
.xd_c01343{left:745.733333pt;}
.x62_c01343{left:747.266667pt;}
.xc9_c01343{left:748.800000pt;}
.x6f_c01343{left:751.866667pt;}
.x95_c01343{left:753.413333pt;}
.x4e_c01343{left:755.706667pt;}
.x35_c01343{left:757.253333pt;}
.xbf_c01343{left:758.786667pt;}
.x12_c01343{left:760.320000pt;}
.x39_c01343{left:762.626667pt;}
.x8d_c01343{left:764.160000pt;}
.x69_c01343{left:765.693333pt;}
.x5a_c01343{left:767.226667pt;}
.xb0_c01343{left:769.533333pt;}
.xc0_c01343{left:771.066667pt;}
.x6a_c01343{left:774.146667pt;}
.x22_c01343{left:775.680000pt;}
.xab_c01343{left:777.986667pt;}
.x5b_c01343{left:779.520000pt;}
.x66_c01343{left:781.053333pt;}
.xcc_c01343{left:785.666667pt;}
.xcd_c01343{left:787.200000pt;}
.xd7_c01343{left:789.506667pt;}
.xc8_c01343{left:791.040000pt;}
.xce_c01343{left:794.878893pt;}
.xd8_c01343{left:799.493333pt;}
.xd6_c01343{left:803.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72f9098781fa0aeb87b22f2f.woff2')format("woff");}.ff1_c01344{font-family:ff1_c01344;line-height:1.109863;font-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_c01344{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb2_c01344{transform:matrix(0.087000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087000,0.000000,0.000000,0.250000,0,0);}
.m72_c01344{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_c01344{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.mbd_c01344{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);}
.mcc_c01344{transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132350,0.000000,0.000000,0.250000,0,0);}
.mbe_c01344{transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134750,0.000000,0.000000,0.250000,0,0);}
.ma9_c01344{transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136825,0.000000,0.000000,0.250000,0,0);}
.m1f_c01344{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10a_c01344{transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144625,0.000000,0.000000,0.250000,0,0);}
.me2_c01344{transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145725,0.000000,0.000000,0.250000,0,0);}
.mc7_c01344{transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148875,0.000000,0.000000,0.250000,0,0);}
.m8b_c01344{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);}
.mb4_c01344{transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150800,0.000000,0.000000,0.250000,0,0);}
.m101_c01344{transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151800,0.000000,0.000000,0.250000,0,0);}
.mbc_c01344{transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151900,0.000000,0.000000,0.250000,0,0);}
.m10c_c01344{transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);}
.m43_c01344{transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154175,0.000000,0.000000,0.250000,0,0);}
.mdf_c01344{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);}
.m29_c01344{transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156900,0.000000,0.000000,0.250000,0,0);}
.mb6_c01344{transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162450,0.000000,0.000000,0.250000,0,0);}
.me6_c01344{transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163925,0.000000,0.000000,0.250000,0,0);}
.m93_c01344{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);}
.m17_c01344{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.md7_c01344{transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164775,0.000000,0.000000,0.250000,0,0);}
.mc8_c01344{transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165550,0.000000,0.000000,0.250000,0,0);}
.m3b_c01344{transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166025,0.000000,0.000000,0.250000,0,0);}
.m12d_c01344{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m9c_c01344{transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167300,0.000000,0.000000,0.250000,0,0);}
.mda_c01344{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.me_c01344{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.m104_c01344{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);}
.mf6_c01344{transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170950,0.000000,0.000000,0.250000,0,0);}
.m120_c01344{transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172025,0.000000,0.000000,0.250000,0,0);}
.mcf_c01344{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.mb5_c01344{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.m63_c01344{transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173250,0.000000,0.000000,0.250000,0,0);}
.mc0_c01344{transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173750,0.000000,0.000000,0.250000,0,0);}
.mdb_c01344{transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174050,0.000000,0.000000,0.250000,0,0);}
.mc9_c01344{transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174600,0.000000,0.000000,0.250000,0,0);}
.mfc_c01344{transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174825,0.000000,0.000000,0.250000,0,0);}
.m21_c01344{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);}
.m8a_c01344{transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175650,0.000000,0.000000,0.250000,0,0);}
.md6_c01344{transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175700,0.000000,0.000000,0.250000,0,0);}
.m15_c01344{transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176400,0.000000,0.000000,0.250000,0,0);}
.m57_c01344{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);}
.m95_c01344{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.m94_c01344{transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180275,0.000000,0.000000,0.250000,0,0);}
.ma0_c01344{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01344{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);}
.m88_c01344{transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);}
.mff_c01344{transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182425,0.000000,0.000000,0.250000,0,0);}
.m126_c01344{transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182475,0.000000,0.000000,0.250000,0,0);}
.mb1_c01344{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m124_c01344{transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);}
.m9e_c01344{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);}
.m112_c01344{transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184400,0.000000,0.000000,0.250000,0,0);}
.m74_c01344{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);}
.md1_c01344{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);}
.m9a_c01344{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);}
.m127_c01344{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);}
.m54_c01344{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);}
.m67_c01344{transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188625,0.000000,0.000000,0.250000,0,0);}
.m11e_c01344{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.me4_c01344{transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188900,0.000000,0.000000,0.250000,0,0);}
.m62_c01344{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);}
.m6e_c01344{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);}
.m98_c01344{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.mac_c01344{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);}
.mbb_c01344{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);}
.m76_c01344{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);}
.m55_c01344{transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193575,0.000000,0.000000,0.250000,0,0);}
.mfe_c01344{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);}
.mab_c01344{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);}
.me1_c01344{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);}
.md9_c01344{transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195400,0.000000,0.000000,0.250000,0,0);}
.m12a_c01344{transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195550,0.000000,0.000000,0.250000,0,0);}
.m51_c01344{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);}
.md8_c01344{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);}
.m52_c01344{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m56_c01344{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);}
.m2e_c01344{transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);}
.mf4_c01344{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);}
.m4b_c01344{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.m25_c01344{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);}
.m8e_c01344{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.mfb_c01344{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.mdc_c01344{transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);}
.m10e_c01344{transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);}
.m40_c01344{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);}
.m129_c01344{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);}
.m125_c01344{transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200975,0.000000,0.000000,0.250000,0,0);}
.mf1_c01344{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);}
.m68_c01344{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);}
.m75_c01344{transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);}
.m23_c01344{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.m106_c01344{transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202175,0.000000,0.000000,0.250000,0,0);}
.m10f_c01344{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);}
.mf2_c01344{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);}
.m14_c01344{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.m8f_c01344{transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202775,0.000000,0.000000,0.250000,0,0);}
.m103_c01344{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.m6c_c01344{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);}
.m97_c01344{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m113_c01344{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m122_c01344{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m3e_c01344{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.mc2_c01344{transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);}
.m1a_c01344{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m37_c01344{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.ma5_c01344{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.me8_c01344{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);}
.mc_c01344{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);}
.ma3_c01344{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m89_c01344{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);}
.mbf_c01344{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);}
.m69_c01344{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);}
.mae_c01344{transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);}
.m114_c01344{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m8c_c01344{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);}
.mf3_c01344{transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213850,0.000000,0.000000,0.250000,0,0);}
.m11c_c01344{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.mc1_c01344{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);}
.mf9_c01344{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m10b_c01344{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.mb9_c01344{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);}
.ma_c01344{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);}
.m11d_c01344{transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214600,0.000000,0.000000,0.250000,0,0);}
.me9_c01344{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01344{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.m128_c01344{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.mee_c01344{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);}
.m45_c01344{transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);}
.m71_c01344{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);}
.mde_c01344{transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216875,0.000000,0.000000,0.250000,0,0);}
.m65_c01344{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m4c_c01344{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);}
.mce_c01344{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);}
.mcb_c01344{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.ma8_c01344{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);}
.m2b_c01344{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);}
.mf8_c01344{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);}
.mdd_c01344{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);}
.m92_c01344{transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219575,0.000000,0.000000,0.250000,0,0);}
.m87_c01344{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);}
.m118_c01344{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);}
.maa_c01344{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.m107_c01344{transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220750,0.000000,0.000000,0.250000,0,0);}
.m5_c01344{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.m108_c01344{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.ma1_c01344{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.m12b_c01344{transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222400,0.000000,0.000000,0.250000,0,0);}
.m79_c01344{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m7b_c01344{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);}
.ma6_c01344{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mf_c01344{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);}
.m6a_c01344{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.me0_c01344{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m117_c01344{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);}
.m11a_c01344{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.m77_c01344{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.ma2_c01344{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);}
.m9b_c01344{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m38_c01344{transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228325,0.000000,0.000000,0.250000,0,0);}
.m12c_c01344{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.m32_c01344{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);}
.mc4_c01344{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);}
.m7f_c01344{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.md3_c01344{transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231600,0.000000,0.000000,0.250000,0,0);}
.mad_c01344{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);}
.mf7_c01344{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m115_c01344{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);}
.me3_c01344{transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);}
.m8d_c01344{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);}
.mf0_c01344{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.md0_c01344{transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);}
.mf5_c01344{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);}
.m121_c01344{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);}
.m111_c01344{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);}
.m61_c01344{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);}
.mec_c01344{transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238600,0.000000,0.000000,0.250000,0,0);}
.m123_c01344{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);}
.mc6_c01344{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);}
.m6b_c01344{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.md4_c01344{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);}
.m99_c01344{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.md2_c01344{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);}
.me5_c01344{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);}
.m2_c01344{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);}
.meb_c01344{transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);}
.m5e_c01344{transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242625,0.000000,0.000000,0.250000,0,0);}
.m90_c01344{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);}
.m60_c01344{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);}
.m78_c01344{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);}
.m96_c01344{transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245450,0.000000,0.000000,0.250000,0,0);}
.m109_c01344{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.mfa_c01344{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m110_c01344{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);}
.m31_c01344{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);}
.m131_c01344{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);}
.m105_c01344{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.maf_c01344{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);}
.md5_c01344{transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248025,0.000000,0.000000,0.250000,0,0);}
.m100_c01344{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m5d_c01344{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);}
.m11f_c01344{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m83_c01344{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m1b_c01344{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);}
.m64_c01344{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);}
.m53_c01344{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16_c01344{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);}
.m24_c01344{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);}
.m42_c01344{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);}
.m27_c01344{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);}
.m35_c01344{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m33_c01344{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01344{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m49_c01344{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);}
.m28_c01344{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m48_c01344{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);}
.m30_c01344{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);}
.m2c_c01344{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01344{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_c01344{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01344{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m44_c01344{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);}
.md_c01344{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m80_c01344{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);}
.m18_c01344{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);}
.m2d_c01344{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01344{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01344{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);}
.m3a_c01344{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m84_c01344{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01344{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);}
.mb8_c01344{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01344{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m58_c01344{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma7_c01344{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c01344{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m85_c01344{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.ma4_c01344{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c01344{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);}
.m47_c01344{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01344{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mb7_c01344{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m12f_c01344{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c01344{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);}
.m39_c01344{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);}
.m9_c01344{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01344{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mcd_c01344{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);}
.m13_c01344{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m81_c01344{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01344{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m130_c01344{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m46_c01344{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);}
.m86_c01344{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m50_c01344{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01344{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);}
.m82_c01344{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01344{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m116_c01344{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);}
.mb0_c01344{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m11_c01344{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01344{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01344{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c01344{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m22_c01344{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mc3_c01344{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01344{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);}
.m34_c01344{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.med_c01344{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);}
.m1d_c01344{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m59_c01344{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m10_c01344{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m91_c01344{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m36_c01344{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01344{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.me7_c01344{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);}
.mef_c01344{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m119_c01344{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m9d_c01344{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01344{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m10d_c01344{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m102_c01344{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m132_c01344{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);}
.mea_c01344{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);}
.m11b_c01344{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m7e_c01344{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01344{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mc5_c01344{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m41_c01344{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mba_c01344{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01344{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m73_c01344{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m12e_c01344{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m20_c01344{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m19_c01344{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m26_c01344{transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.760000,0.000000,0.000000,0.250000,0,0);}
.mca_c01344{transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.780000,0.000000,0.000000,0.250000,0,0);}
.mfd_c01344{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m12_c01344{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01344{transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);}
.m70_c01344{transform:matrix(0.922500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.922500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.922500,0.000000,0.000000,0.250000,0,0);}
.mb3_c01344{transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.927500,0.000000,0.000000,0.250000,0,0);}
.m66_c01344{transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.435000,0.000000,0.000000,0.250000,0,0);}
.v4_c01344{vertical-align:-13.800000px;}
.v3_c01344{vertical-align:-6.900000px;}
.v0_c01344{vertical-align:0.000000px;}
.v1_c01344{vertical-align:6.900000px;}
.v2_c01344{vertical-align:13.860000px;}
.ls1_c01344{letter-spacing:0.000000px;}
.ls0_c01344{letter-spacing:31.080000px;}
.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;}
}
.ws2_c01344{word-spacing:-11.479920px;}
.ws0_c01344{word-spacing:-7.823760px;}
.ws1_c01344{word-spacing:-2.758620px;}
.ws3_c01344{word-spacing:-2.704200px;}
.ws4_c01344{word-spacing:0.000000px;}
.fc0_c01344{color:transparent;}
.fsf_c01344{font-size:3.456000px;}
.fs14_c01344{font-size:6.000000px;}
.fs6_c01344{font-size:6.900000px;}
.fse_c01344{font-size:10.380000px;}
.fs1_c01344{font-size:13.800000px;}
.fs16_c01344{font-size:17.280000px;}
.fs18_c01344{font-size:20.760000px;}
.fs1c_c01344{font-size:24.180000px;}
.fs0_c01344{font-size:27.660000px;}
.fs10_c01344{font-size:31.080000px;}
.fsd_c01344{font-size:34.560000px;}
.fs11_c01344{font-size:38.040000px;}
.fs12_c01344{font-size:41.460000px;}
.fsc_c01344{font-size:44.940000px;}
.fs7_c01344{font-size:48.360000px;}
.fs8_c01344{font-size:51.840000px;}
.fs9_c01344{font-size:55.320000px;}
.fsa_c01344{font-size:58.740000px;}
.fs13_c01344{font-size:62.220000px;}
.fs4_c01344{font-size:65.640000px;}
.fs3_c01344{font-size:69.120000px;}
.fs15_c01344{font-size:72.600000px;}
.fs5_c01344{font-size:76.020000px;}
.fs19_c01344{font-size:79.500000px;}
.fs2_c01344{font-size:82.920000px;}
.fs17_c01344{font-size:86.400000px;}
.fsb_c01344{font-size:89.880000px;}
.fs1a_c01344{font-size:93.300000px;}
.fs1b_c01344{font-size:103.680000px;}
.y0_c01344{bottom:0.000000px;}
.y13b_c01344{bottom:357.690000px;}
.y13a_c01344{bottom:358.560000px;}
.y138_c01344{bottom:374.115000px;}
.y137_c01344{bottom:374.970000px;}
.y139_c01344{bottom:375.840000px;}
.y136_c01344{bottom:392.250000px;}
.y135_c01344{bottom:393.120000px;}
.y134_c01344{bottom:393.990000px;}
.y133_c01344{bottom:396.570000px;}
.y132_c01344{bottom:406.950000px;}
.y12f_c01344{bottom:409.530000px;}
.y131_c01344{bottom:411.270000px;}
.y130_c01344{bottom:413.850000px;}
.y12e_c01344{bottom:414.720000px;}
.y12d_c01344{bottom:425.955000px;}
.y12a_c01344{bottom:426.810000px;}
.y12c_c01344{bottom:430.275000px;}
.y12b_c01344{bottom:431.130000px;}
.y129_c01344{bottom:441.510000px;}
.y127_c01344{bottom:443.235000px;}
.y126_c01344{bottom:444.960000px;}
.y125_c01344{bottom:447.555000px;}
.y128_c01344{bottom:448.410000px;}
.y124_c01344{bottom:463.965000px;}
.y122_c01344{bottom:464.835000px;}
.y123_c01344{bottom:465.690000px;}
.y121_c01344{bottom:466.560000px;}
.y120_c01344{bottom:467.430000px;}
.y11f_c01344{bottom:468.285000px;}
.y11c_c01344{bottom:478.650000px;}
.y11d_c01344{bottom:479.520000px;}
.y11a_c01344{bottom:480.390000px;}
.y11e_c01344{bottom:481.245000px;}
.y118_c01344{bottom:482.115000px;}
.y119_c01344{bottom:482.970000px;}
.y11b_c01344{bottom:483.840000px;}
.y116_c01344{bottom:485.565000px;}
.y117_c01344{bottom:492.480000px;}
.y115_c01344{bottom:496.800000px;}
.y113_c01344{bottom:497.670000px;}
.y112_c01344{bottom:498.525000px;}
.y110_c01344{bottom:499.395000px;}
.y114_c01344{bottom:501.120000px;}
.y111_c01344{bottom:503.715000px;}
.y10f_c01344{bottom:536.550000px;}
.y10d_c01344{bottom:537.405000px;}
.y10e_c01344{bottom:538.275000px;}
.y109_c01344{bottom:562.470000px;}
.y108_c01344{bottom:565.920000px;}
.y10b_c01344{bottom:568.515000px;}
.y10c_c01344{bottom:569.370000px;}
.y107_c01344{bottom:570.240000px;}
.y10a_c01344{bottom:571.110000px;}
.y105_c01344{bottom:586.650000px;}
.y104_c01344{bottom:587.520000px;}
.y102_c01344{bottom:588.390000px;}
.y103_c01344{bottom:590.970000px;}
.y106_c01344{bottom:601.350000px;}
.yfd_c01344{bottom:602.205000px;}
.yfe_c01344{bottom:603.075000px;}
.yfb_c01344{bottom:603.930000px;}
.y101_c01344{bottom:604.800000px;}
.y100_c01344{bottom:605.670000px;}
.yff_c01344{bottom:606.525000px;}
.yfa_c01344{bottom:607.395000px;}
.yfc_c01344{bottom:608.250000px;}
.yf9_c01344{bottom:619.485000px;}
.yf8_c01344{bottom:620.355000px;}
.yf4_c01344{bottom:621.210000px;}
.yf6_c01344{bottom:622.950000px;}
.yf7_c01344{bottom:623.805000px;}
.yf5_c01344{bottom:625.530000px;}
.yf3_c01344{bottom:635.040000px;}
.yf1_c01344{bottom:641.085000px;}
.yf2_c01344{bottom:642.810000px;}
.yf0_c01344{bottom:643.680000px;}
.yef_c01344{bottom:653.190000px;}
.yeb_c01344{bottom:654.045000px;}
.yed_c01344{bottom:655.770000px;}
.ye9_c01344{bottom:656.640000px;}
.yec_c01344{bottom:657.510000px;}
.yee_c01344{bottom:658.365000px;}
.yea_c01344{bottom:659.235000px;}
.ye8_c01344{bottom:660.960000px;}
.ye6_c01344{bottom:668.730000px;}
.ye4_c01344{bottom:670.470000px;}
.ye2_c01344{bottom:673.920000px;}
.ye7_c01344{bottom:674.790000px;}
.ye3_c01344{bottom:675.645000px;}
.ye5_c01344{bottom:684.285000px;}
.ye1_c01344{bottom:688.605000px;}
.ye0_c01344{bottom:689.475000px;}
.ydd_c01344{bottom:690.330000px;}
.ydc_c01344{bottom:692.070000px;}
.yde_c01344{bottom:692.925000px;}
.ydf_c01344{bottom:699.840000px;}
.yd9_c01344{bottom:707.610000px;}
.yd8_c01344{bottom:711.075000px;}
.yd7_c01344{bottom:711.930000px;}
.yda_c01344{bottom:717.120000px;}
.ydb_c01344{bottom:720.570000px;}
.yd6_c01344{bottom:721.440000px;}
.yd5_c01344{bottom:722.310000px;}
.yd2_c01344{bottom:724.890000px;}
.yd3_c01344{bottom:725.760000px;}
.yd4_c01344{bottom:727.485000px;}
.ycc_c01344{bottom:742.170000px;}
.yd1_c01344{bottom:743.910000px;}
.yd0_c01344{bottom:745.635000px;}
.ycd_c01344{bottom:746.490000px;}
.ycb_c01344{bottom:747.360000px;}
.yce_c01344{bottom:750.810000px;}
.ycf_c01344{bottom:758.595000px;}
.yc5_c01344{bottom:760.320000px;}
.yca_c01344{bottom:761.190000px;}
.yc9_c01344{bottom:762.045000px;}
.yc7_c01344{bottom:762.915000px;}
.yc8_c01344{bottom:763.770000px;}
.yc6_c01344{bottom:764.640000px;}
.yc2_c01344{bottom:776.730000px;}
.ybf_c01344{bottom:777.600000px;}
.yc4_c01344{bottom:778.470000px;}
.ybe_c01344{bottom:779.325000px;}
.yc3_c01344{bottom:780.195000px;}
.yc1_c01344{bottom:781.050000px;}
.yc0_c01344{bottom:782.790000px;}
.ybc_c01344{bottom:793.155000px;}
.y1b4_c01344{bottom:794.010000px;}
.yba_c01344{bottom:794.880000px;}
.yb8_c01344{bottom:795.750000px;}
.ybd_c01344{bottom:796.605000px;}
.ybb_c01344{bottom:798.330000px;}
.yb9_c01344{bottom:799.200000px;}
.yb7_c01344{bottom:800.070000px;}
.yb6_c01344{bottom:812.160000px;}
.yb4_c01344{bottom:813.030000px;}
.yb2_c01344{bottom:813.885000px;}
.yb3_c01344{bottom:814.755000px;}
.yb5_c01344{bottom:815.610000px;}
.y1b1_c01344{bottom:823.395000px;}
.y1b2_c01344{bottom:824.250000px;}
.y1b0_c01344{bottom:825.120000px;}
.y1af_c01344{bottom:825.990000px;}
.yb0_c01344{bottom:830.310000px;}
.yb1_c01344{bottom:832.035000px;}
.yaf_c01344{bottom:832.890000px;}
.yae_c01344{bottom:834.630000px;}
.y1ae_c01344{bottom:839.805000px;}
.y1ab_c01344{bottom:842.400000px;}
.y1aa_c01344{bottom:843.270000px;}
.yad_c01344{bottom:844.125000px;}
.y1ad_c01344{bottom:845.850000px;}
.y1ac_c01344{bottom:846.720000px;}
.ya8_c01344{bottom:848.445000px;}
.yac_c01344{bottom:849.315000px;}
.yab_c01344{bottom:850.170000px;}
.ya9_c01344{bottom:851.040000px;}
.yaa_c01344{bottom:851.910000px;}
.y1a9_c01344{bottom:857.955000px;}
.y1a8_c01344{bottom:859.680000px;}
.y1a7_c01344{bottom:863.130000px;}
.ya2_c01344{bottom:864.870000px;}
.ya4_c01344{bottom:865.725000px;}
.ya7_c01344{bottom:866.595000px;}
.ya5_c01344{bottom:868.320000px;}
.ya3_c01344{bottom:869.190000px;}
.ya1_c01344{bottom:870.045000px;}
.y1a6_c01344{bottom:875.235000px;}
.ya0_c01344{bottom:876.090000px;}
.y1a5_c01344{bottom:879.555000px;}
.ya6_c01344{bottom:881.280000px;}
.y1a4_c01344{bottom:882.150000px;}
.y9e_c01344{bottom:883.005000px;}
.y9f_c01344{bottom:883.875000px;}
.y9d_c01344{bottom:887.325000px;}
.y1a3_c01344{bottom:892.515000px;}
.y1a1_c01344{bottom:893.370000px;}
.y1a0_c01344{bottom:894.240000px;}
.y1a2_c01344{bottom:895.110000px;}
.y19f_c01344{bottom:895.965000px;}
.y19e_c01344{bottom:896.835000px;}
.y9c_c01344{bottom:897.690000px;}
.y9b_c01344{bottom:898.560000px;}
.y99_c01344{bottom:899.430000px;}
.y98_c01344{bottom:900.285000px;}
.y97_c01344{bottom:901.155000px;}
.y9a_c01344{bottom:902.880000px;}
.y96_c01344{bottom:909.795000px;}
.y19c_c01344{bottom:911.520000px;}
.y199_c01344{bottom:912.390000px;}
.y95_c01344{bottom:913.245000px;}
.y19d_c01344{bottom:914.115000px;}
.y19b_c01344{bottom:914.970000px;}
.y94_c01344{bottom:915.840000px;}
.y198_c01344{bottom:916.710000px;}
.y197_c01344{bottom:917.565000px;}
.y19a_c01344{bottom:918.435000px;}
.y93_c01344{bottom:919.290000px;}
.y92_c01344{bottom:921.030000px;}
.y91_c01344{bottom:921.885000px;}
.y8f_c01344{bottom:924.480000px;}
.y196_c01344{bottom:927.075000px;}
.y90_c01344{bottom:928.800000px;}
.y193_c01344{bottom:931.395000px;}
.y194_c01344{bottom:932.250000px;}
.y195_c01344{bottom:933.120000px;}
.y192_c01344{bottom:933.990000px;}
.y8e_c01344{bottom:934.845000px;}
.y8d_c01344{bottom:935.715000px;}
.y8a_c01344{bottom:936.570000px;}
.y8b_c01344{bottom:937.440000px;}
.y8c_c01344{bottom:938.310000px;}
.y88_c01344{bottom:939.165000px;}
.y1b3_c01344{bottom:941.760000px;}
.y89_c01344{bottom:942.630000px;}
.y191_c01344{bottom:945.210000px;}
.y190_c01344{bottom:946.080000px;}
.y18f_c01344{bottom:947.805000px;}
.y86_c01344{bottom:949.530000px;}
.y85_c01344{bottom:950.400000px;}
.y83_c01344{bottom:951.270000px;}
.y18e_c01344{bottom:952.125000px;}
.y87_c01344{bottom:952.995000px;}
.y81_c01344{bottom:954.720000px;}
.y84_c01344{bottom:955.590000px;}
.y82_c01344{bottom:956.445000px;}
.y18d_c01344{bottom:962.490000px;}
.y18b_c01344{bottom:965.085000px;}
.y18c_c01344{bottom:966.810000px;}
.y7f_c01344{bottom:968.550000px;}
.y80_c01344{bottom:970.275000px;}
.y7e_c01344{bottom:971.130000px;}
.y7d_c01344{bottom:973.725000px;}
.y7c_c01344{bottom:974.595000px;}
.y189_c01344{bottom:981.510000px;}
.y186_c01344{bottom:982.365000px;}
.y18a_c01344{bottom:983.235000px;}
.y187_c01344{bottom:984.960000px;}
.y188_c01344{bottom:986.685000px;}
.y79_c01344{bottom:987.555000px;}
.y77_c01344{bottom:988.410000px;}
.y78_c01344{bottom:991.875000px;}
.y7b_c01344{bottom:996.195000px;}
.y185_c01344{bottom:997.920000px;}
.y184_c01344{bottom:998.790000px;}
.y183_c01344{bottom:999.645000px;}
.y7a_c01344{bottom:1000.515000px;}
.y75_c01344{bottom:1002.240000px;}
.y74_c01344{bottom:1003.110000px;}
.y76_c01344{bottom:1005.690000px;}
.y73_c01344{bottom:1009.155000px;}
.y182_c01344{bottom:1014.330000px;}
.y17f_c01344{bottom:1016.925000px;}
.y181_c01344{bottom:1018.650000px;}
.y17e_c01344{bottom:1019.520000px;}
.y180_c01344{bottom:1020.390000px;}
.y72_c01344{bottom:1021.245000px;}
.y17d_c01344{bottom:1022.115000px;}
.y70_c01344{bottom:1023.840000px;}
.y71_c01344{bottom:1024.710000px;}
.y6f_c01344{bottom:1025.565000px;}
.y6e_c01344{bottom:1026.435000px;}
.y17c_c01344{bottom:1028.160000px;}
.y17a_c01344{bottom:1033.350000px;}
.y179_c01344{bottom:1034.205000px;}
.y17b_c01344{bottom:1035.930000px;}
.y178_c01344{bottom:1036.800000px;}
.y69_c01344{bottom:1037.670000px;}
.y6c_c01344{bottom:1039.395000px;}
.y6d_c01344{bottom:1041.120000px;}
.y6a_c01344{bottom:1042.845000px;}
.y68_c01344{bottom:1043.715000px;}
.y67_c01344{bottom:1044.570000px;}
.y6b_c01344{bottom:1048.890000px;}
.y66_c01344{bottom:1049.760000px;}
.y177_c01344{bottom:1050.630000px;}
.y175_c01344{bottom:1051.485000px;}
.y174_c01344{bottom:1052.355000px;}
.y65_c01344{bottom:1053.210000px;}
.y176_c01344{bottom:1054.950000px;}
.y62_c01344{bottom:1055.805000px;}
.y63_c01344{bottom:1058.400000px;}
.y64_c01344{bottom:1060.125000px;}
.y61_c01344{bottom:1061.850000px;}
.y60_c01344{bottom:1062.720000px;}
.y173_c01344{bottom:1067.910000px;}
.y5f_c01344{bottom:1071.360000px;}
.y5d_c01344{bottom:1072.230000px;}
.y5e_c01344{bottom:1073.955000px;}
.y172_c01344{bottom:1074.810000px;}
.y5a_c01344{bottom:1076.550000px;}
.y5c_c01344{bottom:1077.405000px;}
.y5b_c01344{bottom:1078.275000px;}
.y59_c01344{bottom:1079.130000px;}
.y171_c01344{bottom:1085.190000px;}
.y170_c01344{bottom:1086.045000px;}
.y16d_c01344{bottom:1086.915000px;}
.y16f_c01344{bottom:1087.770000px;}
.y16b_c01344{bottom:1089.510000px;}
.y16e_c01344{bottom:1091.235000px;}
.y169_c01344{bottom:1092.090000px;}
.y16c_c01344{bottom:1092.960000px;}
.y55_c01344{bottom:1094.685000px;}
.y57_c01344{bottom:1095.555000px;}
.y56_c01344{bottom:1096.410000px;}
.y54_c01344{bottom:1098.150000px;}
.y58_c01344{bottom:1099.005000px;}
.y53_c01344{bottom:1100.730000px;}
.y16a_c01344{bottom:1101.600000px;}
.y168_c01344{bottom:1103.325000px;}
.y166_c01344{bottom:1104.195000px;}
.y167_c01344{bottom:1105.920000px;}
.y52_c01344{bottom:1106.790000px;}
.y165_c01344{bottom:1107.645000px;}
.y164_c01344{bottom:1108.515000px;}
.y50_c01344{bottom:1109.370000px;}
.y162_c01344{bottom:1110.240000px;}
.y163_c01344{bottom:1112.835000px;}
.y51_c01344{bottom:1113.690000px;}
.y4f_c01344{bottom:1114.560000px;}
.y4e_c01344{bottom:1121.475000px;}
.y160_c01344{bottom:1123.200000px;}
.y161_c01344{bottom:1124.070000px;}
.y4b_c01344{bottom:1125.795000px;}
.y49_c01344{bottom:1126.650000px;}
.y4d_c01344{bottom:1127.520000px;}
.y47_c01344{bottom:1128.390000px;}
.y4c_c01344{bottom:1130.115000px;}
.y4a_c01344{bottom:1130.970000px;}
.y48_c01344{bottom:1131.840000px;}
.y46_c01344{bottom:1135.290000px;}
.y45_c01344{bottom:1144.800000px;}
.y42_c01344{bottom:1146.525000px;}
.y43_c01344{bottom:1147.395000px;}
.y44_c01344{bottom:1148.250000px;}
.y23_c01344{bottom:1149.120000px;}
.y41_c01344{bottom:1158.630000px;}
.y15f_c01344{bottom:1159.485000px;}
.y15e_c01344{bottom:1161.210000px;}
.y15d_c01344{bottom:1162.080000px;}
.y40_c01344{bottom:1165.530000px;}
.y3f_c01344{bottom:1166.400000px;}
.y15c_c01344{bottom:1167.270000px;}
.y15a_c01344{bottom:1174.170000px;}
.y15b_c01344{bottom:1176.765000px;}
.y159_c01344{bottom:1177.635000px;}
.y3d_c01344{bottom:1179.360000px;}
.y158_c01344{bottom:1180.230000px;}
.y3b_c01344{bottom:1181.955000px;}
.y3e_c01344{bottom:1182.810000px;}
.y3a_c01344{bottom:1184.550000px;}
.y3c_c01344{bottom:1191.450000px;}
.y39_c01344{bottom:1194.045000px;}
.y157_c01344{bottom:1194.915000px;}
.y36_c01344{bottom:1195.770000px;}
.y156_c01344{bottom:1196.640000px;}
.y34_c01344{bottom:1198.365000px;}
.y38_c01344{bottom:1199.235000px;}
.y37_c01344{bottom:1200.090000px;}
.y35_c01344{bottom:1200.960000px;}
.y155_c01344{bottom:1207.005000px;}
.y154_c01344{bottom:1210.470000px;}
.y152_c01344{bottom:1211.325000px;}
.y153_c01344{bottom:1212.195000px;}
.y30_c01344{bottom:1213.050000px;}
.y33_c01344{bottom:1214.790000px;}
.y151_c01344{bottom:1215.645000px;}
.y31_c01344{bottom:1216.515000px;}
.y2f_c01344{bottom:1217.370000px;}
.y2e_c01344{bottom:1219.110000px;}
.y32_c01344{bottom:1222.560000px;}
.y150_c01344{bottom:1224.285000px;}
.y14e_c01344{bottom:1227.750000px;}
.y2d_c01344{bottom:1230.330000px;}
.y14f_c01344{bottom:1231.200000px;}
.y2a_c01344{bottom:1232.070000px;}
.y2c_c01344{bottom:1232.925000px;}
.y2b_c01344{bottom:1234.650000px;}
.y29_c01344{bottom:1237.245000px;}
.y27_c01344{bottom:1247.610000px;}
.y14d_c01344{bottom:1248.480000px;}
.y24_c01344{bottom:1249.350000px;}
.y14c_c01344{bottom:1250.205000px;}
.y28_c01344{bottom:1251.930000px;}
.y26_c01344{bottom:1252.800000px;}
.y25_c01344{bottom:1253.670000px;}
.y14b_c01344{bottom:1262.310000px;}
.y146_c01344{bottom:1263.165000px;}
.y14a_c01344{bottom:1264.035000px;}
.y148_c01344{bottom:1265.760000px;}
.y149_c01344{bottom:1266.630000px;}
.y147_c01344{bottom:1267.485000px;}
.y20_c01344{bottom:1286.490000px;}
.y1f_c01344{bottom:1288.230000px;}
.y21_c01344{bottom:1289.085000px;}
.y144_c01344{bottom:1293.405000px;}
.y143_c01344{bottom:1295.130000px;}
.y145_c01344{bottom:1296.000000px;}
.y22_c01344{bottom:1300.320000px;}
.y1a_c01344{bottom:1302.045000px;}
.y142_c01344{bottom:1302.915000px;}
.y1d_c01344{bottom:1303.770000px;}
.y1b_c01344{bottom:1307.235000px;}
.y1e_c01344{bottom:1310.685000px;}
.y1c_c01344{bottom:1314.150000px;}
.y15_c01344{bottom:1317.600000px;}
.y14_c01344{bottom:1318.470000px;}
.y16_c01344{bottom:1321.920000px;}
.y12_c01344{bottom:1322.790000px;}
.y17_c01344{bottom:1323.645000px;}
.y13_c01344{bottom:1324.515000px;}
.y18_c01344{bottom:1326.240000px;}
.y11_c01344{bottom:1327.965000px;}
.y141_c01344{bottom:1329.690000px;}
.y13f_c01344{bottom:1332.285000px;}
.y19_c01344{bottom:1334.010000px;}
.y140_c01344{bottom:1335.750000px;}
.yc_c01344{bottom:1336.605000px;}
.ye_c01344{bottom:1337.475000px;}
.y13e_c01344{bottom:1338.330000px;}
.y13d_c01344{bottom:1339.200000px;}
.yf_c01344{bottom:1340.925000px;}
.yd_c01344{bottom:1341.795000px;}
.y10_c01344{bottom:1342.650000px;}
.y13c_c01344{bottom:1367.715000px;}
.y8_c01344{bottom:1372.890000px;}
.yb_c01344{bottom:1374.630000px;}
.y9_c01344{bottom:1375.485000px;}
.ya_c01344{bottom:1376.355000px;}
.y7_c01344{bottom:1379.805000px;}
.y3_c01344{bottom:1397.955000px;}
.y5_c01344{bottom:1399.680000px;}
.y6_c01344{bottom:1401.405000px;}
.y4_c01344{bottom:1402.275000px;}
.y1_c01344{bottom:1409.190000px;}
.y2_c01344{bottom:1410.915000px;}
.h11_c01344{height:3.110063px;}
.h16_c01344{height:5.399414px;}
.h8_c01344{height:6.209326px;}
.h10_c01344{height:9.340986px;}
.h3_c01344{height:12.418652px;}
.h18_c01344{height:15.550313px;}
.h1a_c01344{height:18.681973px;}
.h20_c01344{height:21.759639px;}
.h2_c01344{height:24.891299px;}
.h21_c01344{height:26.641611px;}
.h12_c01344{height:27.968965px;}
.hf_c01344{height:31.100625px;}
.h13_c01344{height:34.232285px;}
.h14_c01344{height:37.309951px;}
.he_c01344{height:40.441611px;}
.h9_c01344{height:43.519277px;}
.ha_c01344{height:46.650937px;}
.hb_c01344{height:49.782598px;}
.h1c_c01344{height:50.419277px;}
.hc_c01344{height:52.860264px;}
.h15_c01344{height:55.991924px;}
.h1f_c01344{height:57.379277px;}
.h6_c01344{height:59.069590px;}
.h5_c01344{height:62.201250px;}
.h17_c01344{height:65.332910px;}
.h7_c01344{height:68.410576px;}
.h1b_c01344{height:71.542236px;}
.h4_c01344{height:74.619902px;}
.h19_c01344{height:77.751563px;}
.hd_c01344{height:80.883223px;}
.h1d_c01344{height:83.960889px;}
.h1e_c01344{height:93.301875px;}
.h1_c01344{height:1513.500000px;}
.h0_c01344{height:1513.725000px;}
.w0_c01344{width:1083.450000px;}
.w1_c01344{width:1083.750000px;}
.x0_c01344{left:0.000000px;}
.x24_c01344{left:192.675000px;}
.x92_c01344{left:204.765000px;}
.x68_c01344{left:207.360000px;}
.x63_c01344{left:209.085000px;}
.x40_c01344{left:210.810000px;}
.x51_c01344{left:213.405000px;}
.x7c_c01344{left:215.130000px;}
.x73_c01344{left:217.725000px;}
.x70_c01344{left:219.450000px;}
.x2a_c01344{left:221.190000px;}
.x25_c01344{left:223.770000px;}
.xe_c01344{left:225.510000px;}
.x8a_c01344{left:227.235000px;}
.x4b_c01344{left:228.960000px;}
.x4c_c01344{left:232.410000px;}
.x7d_c01344{left:235.875000px;}
.x3d_c01344{left:237.600000px;}
.x14_c01344{left:239.325000px;}
.x33_c01344{left:241.050000px;}
.x53_c01344{left:242.790000px;}
.x76_c01344{left:244.515000px;}
.x15_c01344{left:247.110000px;}
.x6d_c01344{left:248.835000px;}
.x2b_c01344{left:251.430000px;}
.x69_c01344{left:253.155000px;}
.x16_c01344{left:254.880000px;}
.x61_c01344{left:258.330000px;}
.x26_c01344{left:260.925000px;}
.xa_c01344{left:262.650000px;}
.x54_c01344{left:265.245000px;}
.x8c_c01344{left:267.840000px;}
.x39_c01344{left:270.435000px;}
.x17_c01344{left:273.030000px;}
.x41_c01344{left:274.755000px;}
.x66_c01344{left:277.350000px;}
.xf_c01344{left:280.800000px;}
.x2c_c01344{left:282.525000px;}
.x48_c01344{left:284.250000px;}
.x6a_c01344{left:287.715000px;}
.x4d_c01344{left:291.165000px;}
.x77_c01344{left:292.890000px;}
.x10_c01344{left:295.485000px;}
.x30_c01344{left:297.210000px;}
.xb_c01344{left:300.675000px;}
.x6e_c01344{left:302.400000px;}
.x4e_c01344{left:304.995000px;}
.x91_c01344{left:306.720000px;}
.x3b_c01344{left:309.315000px;}
.x42_c01344{left:311.040000px;}
.x86_c01344{left:312.765000px;}
.x74_c01344{left:314.490000px;}
.x7f_c01344{left:318.810000px;}
.x20_c01344{left:321.405000px;}
.x8b_c01344{left:323.130000px;}
.x94_c01344{left:324.870000px;}
.x6b_c01344{left:326.595000px;}
.x79_c01344{left:328.320000px;}
.x71_c01344{left:330.915000px;}
.x49_c01344{left:332.640000px;}
.x81_c01344{left:334.365000px;}
.x1c_c01344{left:336.090000px;}
.x8e_c01344{left:337.830000px;}
.x83_c01344{left:340.410000px;}
.x34_c01344{left:342.150000px;}
.x3c_c01344{left:344.730000px;}
.x43_c01344{left:346.470000px;}
.x90_c01344{left:349.050000px;}
.x87_c01344{left:350.790000px;}
.x31_c01344{left:353.370000px;}
.x75_c01344{left:356.835000px;}
.x4a_c01344{left:359.430000px;}
.x2d_c01344{left:361.155000px;}
.x27_c01344{left:363.750000px;}
.x8f_c01344{left:365.475000px;}
.x21_c01344{left:367.200000px;}
.x18_c01344{left:369.795000px;}
.x95_c01344{left:371.520000px;}
.x35_c01344{left:373.245000px;}
.xc_c01344{left:377.565000px;}
.x5d_c01344{left:379.290000px;}
.x44_c01344{left:381.885000px;}
.x58_c01344{left:383.610000px;}
.x82_c01344{left:387.930000px;}
.xd_c01344{left:389.670000px;}
.x52_c01344{left:393.120000px;}
.x5e_c01344{left:395.715000px;}
.x45_c01344{left:397.440000px;}
.x2e_c01344{left:400.890000px;}
.x3e_c01344{left:404.355000px;}
.x55_c01344{left:406.950000px;}
.x62_c01344{left:410.400000px;}
.x64_c01344{left:412.125000px;}
.x56_c01344{left:414.720000px;}
.x96_c01344{left:416.445000px;}
.x1_c01344{left:418.170000px;}
.x60_c01344{left:419.910000px;}
.x88_c01344{left:421.635000px;}
.x59_c01344{left:424.230000px;}
.x2_c01344{left:425.955000px;}
.x8d_c01344{left:427.680000px;}
.x5f_c01344{left:429.405000px;}
.x57_c01344{left:431.130000px;}
.x2f_c01344{left:432.870000px;}
.x22_c01344{left:434.595000px;}
.x46_c01344{left:437.190000px;}
.x89_c01344{left:443.235000px;}
.x23_c01344{left:444.960000px;}
.x28_c01344{left:446.685000px;}
.x67_c01344{left:449.280000px;}
.x5a_c01344{left:451.005000px;}
.x84_c01344{left:453.600000px;}
.x65_c01344{left:457.050000px;}
.x36_c01344{left:459.645000px;}
.x85_c01344{left:461.370000px;}
.x29_c01344{left:463.110000px;}
.x37_c01344{left:466.560000px;}
.x11_c01344{left:468.285000px;}
.x78_c01344{left:470.010000px;}
.x3_c01344{left:472.605000px;}
.x80_c01344{left:476.070000px;}
.x1d_c01344{left:478.650000px;}
.x32_c01344{left:480.390000px;}
.x38_c01344{left:482.970000px;}
.x5b_c01344{left:484.710000px;}
.x12_c01344{left:486.435000px;}
.x6c_c01344{left:488.160000px;}
.x7a_c01344{left:489.885000px;}
.x6f_c01344{left:492.480000px;}
.x47_c01344{left:494.205000px;}
.x1e_c01344{left:495.930000px;}
.x3f_c01344{left:497.670000px;}
.x4_c01344{left:501.120000px;}
.x72_c01344{left:505.440000px;}
.x4f_c01344{left:508.035000px;}
.x7e_c01344{left:509.760000px;}
.x93_c01344{left:511.485000px;}
.x19_c01344{left:514.080000px;}
.x7b_c01344{left:515.805000px;}
.x50_c01344{left:519.270000px;}
.x5c_c01344{left:520.995000px;}
.x3a_c01344{left:523.590000px;}
.x13_c01344{left:526.170000px;}
.x5_c01344{left:531.360000px;}
.x1a_c01344{left:533.955000px;}
.x1b_c01344{left:540.000000px;}
.x1f_c01344{left:543.450000px;}
.xf0_c01344{left:547.770000px;}
.xd0_c01344{left:552.090000px;}
.xc1_c01344{left:554.685000px;}
.x98_c01344{left:557.280000px;}
.x97_c01344{left:559.005000px;}
.xbf_c01344{left:560.730000px;}
.x6_c01344{left:563.325000px;}
.xde_c01344{left:565.050000px;}
.xc0_c01344{left:568.515000px;}
.xac_c01344{left:577.155000px;}
.xd5_c01344{left:579.750000px;}
.xc7_c01344{left:581.475000px;}
.xb1_c01344{left:583.200000px;}
.x7_c01344{left:587.520000px;}
.xeb_c01344{left:597.030000px;}
.xa6_c01344{left:601.350000px;}
.x99_c01344{left:603.075000px;}
.xbb_c01344{left:605.670000px;}
.xdb_c01344{left:609.120000px;}
.x8_c01344{left:613.440000px;}
.xf1_c01344{left:615.165000px;}
.xad_c01344{left:617.760000px;}
.xd9_c01344{left:620.355000px;}
.xd7_c01344{left:622.080000px;}
.xb4_c01344{left:624.675000px;}
.xa7_c01344{left:628.995000px;}
.x9_c01344{left:630.720000px;}
.x9a_c01344{left:635.910000px;}
.xa0_c01344{left:637.635000px;}
.xf2_c01344{left:641.085000px;}
.xc2_c01344{left:642.810000px;}
.xe5_c01344{left:644.550000px;}
.xe6_c01344{left:650.595000px;}
.xa1_c01344{left:652.320000px;}
.x9b_c01344{left:654.045000px;}
.xd1_c01344{left:656.640000px;}
.xed_c01344{left:658.365000px;}
.xc8_c01344{left:660.090000px;}
.xe2_c01344{left:661.830000px;}
.xcd_c01344{left:667.005000px;}
.xbc_c01344{left:668.730000px;}
.xf3_c01344{left:670.470000px;}
.xdf_c01344{left:673.050000px;}
.xae_c01344{left:676.515000px;}
.xb8_c01344{left:678.240000px;}
.xa2_c01344{left:682.560000px;}
.xa8_c01344{left:686.880000px;}
.xce_c01344{left:688.605000px;}
.xb2_c01344{left:690.330000px;}
.x9c_c01344{left:692.070000px;}
.xb9_c01344{left:693.795000px;}
.xc3_c01344{left:696.390000px;}
.xd8_c01344{left:698.970000px;}
.xb3_c01344{left:705.885000px;}
.xa3_c01344{left:715.395000px;}
.xe3_c01344{left:722.310000px;}
.x9d_c01344{left:724.035000px;}
.xf4_c01344{left:725.760000px;}
.xa9_c01344{left:728.355000px;}
.xa4_c01344{left:732.675000px;}
.xe9_c01344{left:735.270000px;}
.xf5_c01344{left:736.995000px;}
.xe8_c01344{left:740.445000px;}
.xaf_c01344{left:742.170000px;}
.xc9_c01344{left:745.635000px;}
.xca_c01344{left:750.810000px;}
.xe4_c01344{left:752.550000px;}
.xaa_c01344{left:756.870000px;}
.xb5_c01344{left:760.320000px;}
.x9e_c01344{left:762.045000px;}
.xc4_c01344{left:764.640000px;}
.xa5_c01344{left:767.235000px;}
.xd6_c01344{left:772.410000px;}
.xf6_c01344{left:775.005000px;}
.xd2_c01344{left:777.600000px;}
.xe0_c01344{left:779.325000px;}
.xe1_c01344{left:782.790000px;}
.xd3_c01344{left:784.515000px;}
.xab_c01344{left:787.110000px;}
.xdc_c01344{left:791.430000px;}
.xc5_c01344{left:793.155000px;}
.xcb_c01344{left:796.605000px;}
.xba_c01344{left:798.330000px;}
.xb6_c01344{left:803.520000px;}
.xd4_c01344{left:807.840000px;}
.xda_c01344{left:809.565000px;}
.xb0_c01344{left:812.160000px;}
.xea_c01344{left:816.480000px;}
.xcc_c01344{left:819.930000px;}
.xee_c01344{left:822.525000px;}
.xbd_c01344{left:825.120000px;}
.x9f_c01344{left:832.890000px;}
.xec_c01344{left:836.355000px;}
.xdd_c01344{left:838.080000px;}
.xe7_c01344{left:839.805000px;}
.xcf_c01344{left:843.270000px;}
.xb7_c01344{left:848.445000px;}
.xef_c01344{left:850.170000px;}
.xbe_c01344{left:853.635000px;}
.xc6_c01344{left:866.595000px;}
@media print{
.v4_c01344{vertical-align:-12.266667pt;}
.v3_c01344{vertical-align:-6.133333pt;}
.v0_c01344{vertical-align:0.000000pt;}
.v1_c01344{vertical-align:6.133333pt;}
.v2_c01344{vertical-align:12.320000pt;}
.ls1_c01344{letter-spacing:0.000000pt;}
.ls0_c01344{letter-spacing:27.626667pt;}
.ws2_c01344{word-spacing:-10.204373pt;}
.ws0_c01344{word-spacing:-6.954453pt;}
.ws1_c01344{word-spacing:-2.452107pt;}
.ws3_c01344{word-spacing:-2.403733pt;}
.ws4_c01344{word-spacing:0.000000pt;}
.fsf_c01344{font-size:3.072000pt;}
.fs14_c01344{font-size:5.333333pt;}
.fs6_c01344{font-size:6.133333pt;}
.fse_c01344{font-size:9.226667pt;}
.fs1_c01344{font-size:12.266667pt;}
.fs16_c01344{font-size:15.360000pt;}
.fs18_c01344{font-size:18.453333pt;}
.fs1c_c01344{font-size:21.493333pt;}
.fs0_c01344{font-size:24.586667pt;}
.fs10_c01344{font-size:27.626667pt;}
.fsd_c01344{font-size:30.720000pt;}
.fs11_c01344{font-size:33.813333pt;}
.fs12_c01344{font-size:36.853333pt;}
.fsc_c01344{font-size:39.946667pt;}
.fs7_c01344{font-size:42.986667pt;}
.fs8_c01344{font-size:46.080000pt;}
.fs9_c01344{font-size:49.173333pt;}
.fsa_c01344{font-size:52.213333pt;}
.fs13_c01344{font-size:55.306667pt;}
.fs4_c01344{font-size:58.346667pt;}
.fs3_c01344{font-size:61.440000pt;}
.fs15_c01344{font-size:64.533333pt;}
.fs5_c01344{font-size:67.573333pt;}
.fs19_c01344{font-size:70.666667pt;}
.fs2_c01344{font-size:73.706667pt;}
.fs17_c01344{font-size:76.800000pt;}
.fsb_c01344{font-size:79.893333pt;}
.fs1a_c01344{font-size:82.933333pt;}
.fs1b_c01344{font-size:92.160000pt;}
.y0_c01344{bottom:0.000000pt;}
.y13b_c01344{bottom:317.946667pt;}
.y13a_c01344{bottom:318.720000pt;}
.y138_c01344{bottom:332.546667pt;}
.y137_c01344{bottom:333.306667pt;}
.y139_c01344{bottom:334.080000pt;}
.y136_c01344{bottom:348.666667pt;}
.y135_c01344{bottom:349.440000pt;}
.y134_c01344{bottom:350.213333pt;}
.y133_c01344{bottom:352.506667pt;}
.y132_c01344{bottom:361.733333pt;}
.y12f_c01344{bottom:364.026667pt;}
.y131_c01344{bottom:365.573333pt;}
.y130_c01344{bottom:367.866667pt;}
.y12e_c01344{bottom:368.640000pt;}
.y12d_c01344{bottom:378.626667pt;}
.y12a_c01344{bottom:379.386667pt;}
.y12c_c01344{bottom:382.466667pt;}
.y12b_c01344{bottom:383.226667pt;}
.y129_c01344{bottom:392.453333pt;}
.y127_c01344{bottom:393.986667pt;}
.y126_c01344{bottom:395.520000pt;}
.y125_c01344{bottom:397.826667pt;}
.y128_c01344{bottom:398.586667pt;}
.y124_c01344{bottom:412.413333pt;}
.y122_c01344{bottom:413.186667pt;}
.y123_c01344{bottom:413.946667pt;}
.y121_c01344{bottom:414.720000pt;}
.y120_c01344{bottom:415.493333pt;}
.y11f_c01344{bottom:416.253333pt;}
.y11c_c01344{bottom:425.466667pt;}
.y11d_c01344{bottom:426.240000pt;}
.y11a_c01344{bottom:427.013333pt;}
.y11e_c01344{bottom:427.773333pt;}
.y118_c01344{bottom:428.546667pt;}
.y119_c01344{bottom:429.306667pt;}
.y11b_c01344{bottom:430.080000pt;}
.y116_c01344{bottom:431.613333pt;}
.y117_c01344{bottom:437.760000pt;}
.y115_c01344{bottom:441.600000pt;}
.y113_c01344{bottom:442.373333pt;}
.y112_c01344{bottom:443.133333pt;}
.y110_c01344{bottom:443.906667pt;}
.y114_c01344{bottom:445.440000pt;}
.y111_c01344{bottom:447.746667pt;}
.y10f_c01344{bottom:476.933333pt;}
.y10d_c01344{bottom:477.693333pt;}
.y10e_c01344{bottom:478.466667pt;}
.y109_c01344{bottom:499.973333pt;}
.y108_c01344{bottom:503.040000pt;}
.y10b_c01344{bottom:505.346667pt;}
.y10c_c01344{bottom:506.106667pt;}
.y107_c01344{bottom:506.880000pt;}
.y10a_c01344{bottom:507.653333pt;}
.y105_c01344{bottom:521.466667pt;}
.y104_c01344{bottom:522.240000pt;}
.y102_c01344{bottom:523.013333pt;}
.y103_c01344{bottom:525.306667pt;}
.y106_c01344{bottom:534.533333pt;}
.yfd_c01344{bottom:535.293333pt;}
.yfe_c01344{bottom:536.066667pt;}
.yfb_c01344{bottom:536.826667pt;}
.y101_c01344{bottom:537.600000pt;}
.y100_c01344{bottom:538.373333pt;}
.yff_c01344{bottom:539.133333pt;}
.yfa_c01344{bottom:539.906667pt;}
.yfc_c01344{bottom:540.666667pt;}
.yf9_c01344{bottom:550.653333pt;}
.yf8_c01344{bottom:551.426667pt;}
.yf4_c01344{bottom:552.186667pt;}
.yf6_c01344{bottom:553.733333pt;}
.yf7_c01344{bottom:554.493333pt;}
.yf5_c01344{bottom:556.026667pt;}
.yf3_c01344{bottom:564.480000pt;}
.yf1_c01344{bottom:569.853333pt;}
.yf2_c01344{bottom:571.386667pt;}
.yf0_c01344{bottom:572.160000pt;}
.yef_c01344{bottom:580.613333pt;}
.yeb_c01344{bottom:581.373333pt;}
.yed_c01344{bottom:582.906667pt;}
.ye9_c01344{bottom:583.680000pt;}
.yec_c01344{bottom:584.453333pt;}
.yee_c01344{bottom:585.213333pt;}
.yea_c01344{bottom:585.986667pt;}
.ye8_c01344{bottom:587.520000pt;}
.ye6_c01344{bottom:594.426667pt;}
.ye4_c01344{bottom:595.973333pt;}
.ye2_c01344{bottom:599.040000pt;}
.ye7_c01344{bottom:599.813333pt;}
.ye3_c01344{bottom:600.573333pt;}
.ye5_c01344{bottom:608.253333pt;}
.ye1_c01344{bottom:612.093333pt;}
.ye0_c01344{bottom:612.866667pt;}
.ydd_c01344{bottom:613.626667pt;}
.ydc_c01344{bottom:615.173333pt;}
.yde_c01344{bottom:615.933333pt;}
.ydf_c01344{bottom:622.080000pt;}
.yd9_c01344{bottom:628.986667pt;}
.yd8_c01344{bottom:632.066667pt;}
.yd7_c01344{bottom:632.826667pt;}
.yda_c01344{bottom:637.440000pt;}
.ydb_c01344{bottom:640.506667pt;}
.yd6_c01344{bottom:641.280000pt;}
.yd5_c01344{bottom:642.053333pt;}
.yd2_c01344{bottom:644.346667pt;}
.yd3_c01344{bottom:645.120000pt;}
.yd4_c01344{bottom:646.653333pt;}
.ycc_c01344{bottom:659.706667pt;}
.yd1_c01344{bottom:661.253333pt;}
.yd0_c01344{bottom:662.786667pt;}
.ycd_c01344{bottom:663.546667pt;}
.ycb_c01344{bottom:664.320000pt;}
.yce_c01344{bottom:667.386667pt;}
.ycf_c01344{bottom:674.306667pt;}
.yc5_c01344{bottom:675.840000pt;}
.yca_c01344{bottom:676.613333pt;}
.yc9_c01344{bottom:677.373333pt;}
.yc7_c01344{bottom:678.146667pt;}
.yc8_c01344{bottom:678.906667pt;}
.yc6_c01344{bottom:679.680000pt;}
.yc2_c01344{bottom:690.426667pt;}
.ybf_c01344{bottom:691.200000pt;}
.yc4_c01344{bottom:691.973333pt;}
.ybe_c01344{bottom:692.733333pt;}
.yc3_c01344{bottom:693.506667pt;}
.yc1_c01344{bottom:694.266667pt;}
.yc0_c01344{bottom:695.813333pt;}
.ybc_c01344{bottom:705.026667pt;}
.y1b4_c01344{bottom:705.786667pt;}
.yba_c01344{bottom:706.560000pt;}
.yb8_c01344{bottom:707.333333pt;}
.ybd_c01344{bottom:708.093333pt;}
.ybb_c01344{bottom:709.626667pt;}
.yb9_c01344{bottom:710.400000pt;}
.yb7_c01344{bottom:711.173333pt;}
.yb6_c01344{bottom:721.920000pt;}
.yb4_c01344{bottom:722.693333pt;}
.yb2_c01344{bottom:723.453333pt;}
.yb3_c01344{bottom:724.226667pt;}
.yb5_c01344{bottom:724.986667pt;}
.y1b1_c01344{bottom:731.906667pt;}
.y1b2_c01344{bottom:732.666667pt;}
.y1b0_c01344{bottom:733.440000pt;}
.y1af_c01344{bottom:734.213333pt;}
.yb0_c01344{bottom:738.053333pt;}
.yb1_c01344{bottom:739.586667pt;}
.yaf_c01344{bottom:740.346667pt;}
.yae_c01344{bottom:741.893333pt;}
.y1ae_c01344{bottom:746.493333pt;}
.y1ab_c01344{bottom:748.800000pt;}
.y1aa_c01344{bottom:749.573333pt;}
.yad_c01344{bottom:750.333333pt;}
.y1ad_c01344{bottom:751.866667pt;}
.y1ac_c01344{bottom:752.640000pt;}
.ya8_c01344{bottom:754.173333pt;}
.yac_c01344{bottom:754.946667pt;}
.yab_c01344{bottom:755.706667pt;}
.ya9_c01344{bottom:756.480000pt;}
.yaa_c01344{bottom:757.253333pt;}
.y1a9_c01344{bottom:762.626667pt;}
.y1a8_c01344{bottom:764.160000pt;}
.y1a7_c01344{bottom:767.226667pt;}
.ya2_c01344{bottom:768.773333pt;}
.ya4_c01344{bottom:769.533333pt;}
.ya7_c01344{bottom:770.306667pt;}
.ya5_c01344{bottom:771.840000pt;}
.ya3_c01344{bottom:772.613333pt;}
.ya1_c01344{bottom:773.373333pt;}
.y1a6_c01344{bottom:777.986667pt;}
.ya0_c01344{bottom:778.746667pt;}
.y1a5_c01344{bottom:781.826667pt;}
.ya6_c01344{bottom:783.360000pt;}
.y1a4_c01344{bottom:784.133333pt;}
.y9e_c01344{bottom:784.893333pt;}
.y9f_c01344{bottom:785.666667pt;}
.y9d_c01344{bottom:788.733333pt;}
.y1a3_c01344{bottom:793.346667pt;}
.y1a1_c01344{bottom:794.106667pt;}
.y1a0_c01344{bottom:794.880000pt;}
.y1a2_c01344{bottom:795.653333pt;}
.y19f_c01344{bottom:796.413333pt;}
.y19e_c01344{bottom:797.186667pt;}
.y9c_c01344{bottom:797.946667pt;}
.y9b_c01344{bottom:798.720000pt;}
.y99_c01344{bottom:799.493333pt;}
.y98_c01344{bottom:800.253333pt;}
.y97_c01344{bottom:801.026667pt;}
.y9a_c01344{bottom:802.560000pt;}
.y96_c01344{bottom:808.706667pt;}
.y19c_c01344{bottom:810.240000pt;}
.y199_c01344{bottom:811.013333pt;}
.y95_c01344{bottom:811.773333pt;}
.y19d_c01344{bottom:812.546667pt;}
.y19b_c01344{bottom:813.306667pt;}
.y94_c01344{bottom:814.080000pt;}
.y198_c01344{bottom:814.853333pt;}
.y197_c01344{bottom:815.613333pt;}
.y19a_c01344{bottom:816.386667pt;}
.y93_c01344{bottom:817.146667pt;}
.y92_c01344{bottom:818.693333pt;}
.y91_c01344{bottom:819.453333pt;}
.y8f_c01344{bottom:821.760000pt;}
.y196_c01344{bottom:824.066667pt;}
.y90_c01344{bottom:825.600000pt;}
.y193_c01344{bottom:827.906667pt;}
.y194_c01344{bottom:828.666667pt;}
.y195_c01344{bottom:829.440000pt;}
.y192_c01344{bottom:830.213333pt;}
.y8e_c01344{bottom:830.973333pt;}
.y8d_c01344{bottom:831.746667pt;}
.y8a_c01344{bottom:832.506667pt;}
.y8b_c01344{bottom:833.280000pt;}
.y8c_c01344{bottom:834.053333pt;}
.y88_c01344{bottom:834.813333pt;}
.y1b3_c01344{bottom:837.120000pt;}
.y89_c01344{bottom:837.893333pt;}
.y191_c01344{bottom:840.186667pt;}
.y190_c01344{bottom:840.960000pt;}
.y18f_c01344{bottom:842.493333pt;}
.y86_c01344{bottom:844.026667pt;}
.y85_c01344{bottom:844.800000pt;}
.y83_c01344{bottom:845.573333pt;}
.y18e_c01344{bottom:846.333333pt;}
.y87_c01344{bottom:847.106667pt;}
.y81_c01344{bottom:848.640000pt;}
.y84_c01344{bottom:849.413333pt;}
.y82_c01344{bottom:850.173333pt;}
.y18d_c01344{bottom:855.546667pt;}
.y18b_c01344{bottom:857.853333pt;}
.y18c_c01344{bottom:859.386667pt;}
.y7f_c01344{bottom:860.933333pt;}
.y80_c01344{bottom:862.466667pt;}
.y7e_c01344{bottom:863.226667pt;}
.y7d_c01344{bottom:865.533333pt;}
.y7c_c01344{bottom:866.306667pt;}
.y189_c01344{bottom:872.453333pt;}
.y186_c01344{bottom:873.213333pt;}
.y18a_c01344{bottom:873.986667pt;}
.y187_c01344{bottom:875.520000pt;}
.y188_c01344{bottom:877.053333pt;}
.y79_c01344{bottom:877.826667pt;}
.y77_c01344{bottom:878.586667pt;}
.y78_c01344{bottom:881.666667pt;}
.y7b_c01344{bottom:885.506667pt;}
.y185_c01344{bottom:887.040000pt;}
.y184_c01344{bottom:887.813333pt;}
.y183_c01344{bottom:888.573333pt;}
.y7a_c01344{bottom:889.346667pt;}
.y75_c01344{bottom:890.880000pt;}
.y74_c01344{bottom:891.653333pt;}
.y76_c01344{bottom:893.946667pt;}
.y73_c01344{bottom:897.026667pt;}
.y182_c01344{bottom:901.626667pt;}
.y17f_c01344{bottom:903.933333pt;}
.y181_c01344{bottom:905.466667pt;}
.y17e_c01344{bottom:906.240000pt;}
.y180_c01344{bottom:907.013333pt;}
.y72_c01344{bottom:907.773333pt;}
.y17d_c01344{bottom:908.546667pt;}
.y70_c01344{bottom:910.080000pt;}
.y71_c01344{bottom:910.853333pt;}
.y6f_c01344{bottom:911.613333pt;}
.y6e_c01344{bottom:912.386667pt;}
.y17c_c01344{bottom:913.920000pt;}
.y17a_c01344{bottom:918.533333pt;}
.y179_c01344{bottom:919.293333pt;}
.y17b_c01344{bottom:920.826667pt;}
.y178_c01344{bottom:921.600000pt;}
.y69_c01344{bottom:922.373333pt;}
.y6c_c01344{bottom:923.906667pt;}
.y6d_c01344{bottom:925.440000pt;}
.y6a_c01344{bottom:926.973333pt;}
.y68_c01344{bottom:927.746667pt;}
.y67_c01344{bottom:928.506667pt;}
.y6b_c01344{bottom:932.346667pt;}
.y66_c01344{bottom:933.120000pt;}
.y177_c01344{bottom:933.893333pt;}
.y175_c01344{bottom:934.653333pt;}
.y174_c01344{bottom:935.426667pt;}
.y65_c01344{bottom:936.186667pt;}
.y176_c01344{bottom:937.733333pt;}
.y62_c01344{bottom:938.493333pt;}
.y63_c01344{bottom:940.800000pt;}
.y64_c01344{bottom:942.333333pt;}
.y61_c01344{bottom:943.866667pt;}
.y60_c01344{bottom:944.640000pt;}
.y173_c01344{bottom:949.253333pt;}
.y5f_c01344{bottom:952.320000pt;}
.y5d_c01344{bottom:953.093333pt;}
.y5e_c01344{bottom:954.626667pt;}
.y172_c01344{bottom:955.386667pt;}
.y5a_c01344{bottom:956.933333pt;}
.y5c_c01344{bottom:957.693333pt;}
.y5b_c01344{bottom:958.466667pt;}
.y59_c01344{bottom:959.226667pt;}
.y171_c01344{bottom:964.613333pt;}
.y170_c01344{bottom:965.373333pt;}
.y16d_c01344{bottom:966.146667pt;}
.y16f_c01344{bottom:966.906667pt;}
.y16b_c01344{bottom:968.453333pt;}
.y16e_c01344{bottom:969.986667pt;}
.y169_c01344{bottom:970.746667pt;}
.y16c_c01344{bottom:971.520000pt;}
.y55_c01344{bottom:973.053333pt;}
.y57_c01344{bottom:973.826667pt;}
.y56_c01344{bottom:974.586667pt;}
.y54_c01344{bottom:976.133333pt;}
.y58_c01344{bottom:976.893333pt;}
.y53_c01344{bottom:978.426667pt;}
.y16a_c01344{bottom:979.200000pt;}
.y168_c01344{bottom:980.733333pt;}
.y166_c01344{bottom:981.506667pt;}
.y167_c01344{bottom:983.040000pt;}
.y52_c01344{bottom:983.813333pt;}
.y165_c01344{bottom:984.573333pt;}
.y164_c01344{bottom:985.346667pt;}
.y50_c01344{bottom:986.106667pt;}
.y162_c01344{bottom:986.880000pt;}
.y163_c01344{bottom:989.186667pt;}
.y51_c01344{bottom:989.946667pt;}
.y4f_c01344{bottom:990.720000pt;}
.y4e_c01344{bottom:996.866667pt;}
.y160_c01344{bottom:998.400000pt;}
.y161_c01344{bottom:999.173333pt;}
.y4b_c01344{bottom:1000.706667pt;}
.y49_c01344{bottom:1001.466667pt;}
.y4d_c01344{bottom:1002.240000pt;}
.y47_c01344{bottom:1003.013333pt;}
.y4c_c01344{bottom:1004.546667pt;}
.y4a_c01344{bottom:1005.306667pt;}
.y48_c01344{bottom:1006.080000pt;}
.y46_c01344{bottom:1009.146667pt;}
.y45_c01344{bottom:1017.600000pt;}
.y42_c01344{bottom:1019.133333pt;}
.y43_c01344{bottom:1019.906667pt;}
.y44_c01344{bottom:1020.666667pt;}
.y23_c01344{bottom:1021.440000pt;}
.y41_c01344{bottom:1029.893333pt;}
.y15f_c01344{bottom:1030.653333pt;}
.y15e_c01344{bottom:1032.186667pt;}
.y15d_c01344{bottom:1032.960000pt;}
.y40_c01344{bottom:1036.026667pt;}
.y3f_c01344{bottom:1036.800000pt;}
.y15c_c01344{bottom:1037.573333pt;}
.y15a_c01344{bottom:1043.706667pt;}
.y15b_c01344{bottom:1046.013333pt;}
.y159_c01344{bottom:1046.786667pt;}
.y3d_c01344{bottom:1048.320000pt;}
.y158_c01344{bottom:1049.093333pt;}
.y3b_c01344{bottom:1050.626667pt;}
.y3e_c01344{bottom:1051.386667pt;}
.y3a_c01344{bottom:1052.933333pt;}
.y3c_c01344{bottom:1059.066667pt;}
.y39_c01344{bottom:1061.373333pt;}
.y157_c01344{bottom:1062.146667pt;}
.y36_c01344{bottom:1062.906667pt;}
.y156_c01344{bottom:1063.680000pt;}
.y34_c01344{bottom:1065.213333pt;}
.y38_c01344{bottom:1065.986667pt;}
.y37_c01344{bottom:1066.746667pt;}
.y35_c01344{bottom:1067.520000pt;}
.y155_c01344{bottom:1072.893333pt;}
.y154_c01344{bottom:1075.973333pt;}
.y152_c01344{bottom:1076.733333pt;}
.y153_c01344{bottom:1077.506667pt;}
.y30_c01344{bottom:1078.266667pt;}
.y33_c01344{bottom:1079.813333pt;}
.y151_c01344{bottom:1080.573333pt;}
.y31_c01344{bottom:1081.346667pt;}
.y2f_c01344{bottom:1082.106667pt;}
.y2e_c01344{bottom:1083.653333pt;}
.y32_c01344{bottom:1086.720000pt;}
.y150_c01344{bottom:1088.253333pt;}
.y14e_c01344{bottom:1091.333333pt;}
.y2d_c01344{bottom:1093.626667pt;}
.y14f_c01344{bottom:1094.400000pt;}
.y2a_c01344{bottom:1095.173333pt;}
.y2c_c01344{bottom:1095.933333pt;}
.y2b_c01344{bottom:1097.466667pt;}
.y29_c01344{bottom:1099.773333pt;}
.y27_c01344{bottom:1108.986667pt;}
.y14d_c01344{bottom:1109.760000pt;}
.y24_c01344{bottom:1110.533333pt;}
.y14c_c01344{bottom:1111.293333pt;}
.y28_c01344{bottom:1112.826667pt;}
.y26_c01344{bottom:1113.600000pt;}
.y25_c01344{bottom:1114.373333pt;}
.y14b_c01344{bottom:1122.053333pt;}
.y146_c01344{bottom:1122.813333pt;}
.y14a_c01344{bottom:1123.586667pt;}
.y148_c01344{bottom:1125.120000pt;}
.y149_c01344{bottom:1125.893333pt;}
.y147_c01344{bottom:1126.653333pt;}
.y20_c01344{bottom:1143.546667pt;}
.y1f_c01344{bottom:1145.093333pt;}
.y21_c01344{bottom:1145.853333pt;}
.y144_c01344{bottom:1149.693333pt;}
.y143_c01344{bottom:1151.226667pt;}
.y145_c01344{bottom:1152.000000pt;}
.y22_c01344{bottom:1155.840000pt;}
.y1a_c01344{bottom:1157.373333pt;}
.y142_c01344{bottom:1158.146667pt;}
.y1d_c01344{bottom:1158.906667pt;}
.y1b_c01344{bottom:1161.986667pt;}
.y1e_c01344{bottom:1165.053333pt;}
.y1c_c01344{bottom:1168.133333pt;}
.y15_c01344{bottom:1171.200000pt;}
.y14_c01344{bottom:1171.973333pt;}
.y16_c01344{bottom:1175.040000pt;}
.y12_c01344{bottom:1175.813333pt;}
.y17_c01344{bottom:1176.573333pt;}
.y13_c01344{bottom:1177.346667pt;}
.y18_c01344{bottom:1178.880000pt;}
.y11_c01344{bottom:1180.413333pt;}
.y141_c01344{bottom:1181.946667pt;}
.y13f_c01344{bottom:1184.253333pt;}
.y19_c01344{bottom:1185.786667pt;}
.y140_c01344{bottom:1187.333333pt;}
.yc_c01344{bottom:1188.093333pt;}
.ye_c01344{bottom:1188.866667pt;}
.y13e_c01344{bottom:1189.626667pt;}
.y13d_c01344{bottom:1190.400000pt;}
.yf_c01344{bottom:1191.933333pt;}
.yd_c01344{bottom:1192.706667pt;}
.y10_c01344{bottom:1193.466667pt;}
.y13c_c01344{bottom:1215.746667pt;}
.y8_c01344{bottom:1220.346667pt;}
.yb_c01344{bottom:1221.893333pt;}
.y9_c01344{bottom:1222.653333pt;}
.ya_c01344{bottom:1223.426667pt;}
.y7_c01344{bottom:1226.493333pt;}
.y3_c01344{bottom:1242.626667pt;}
.y5_c01344{bottom:1244.160000pt;}
.y6_c01344{bottom:1245.693333pt;}
.y4_c01344{bottom:1246.466667pt;}
.y1_c01344{bottom:1252.613333pt;}
.y2_c01344{bottom:1254.146667pt;}
.h11_c01344{height:2.764500pt;}
.h16_c01344{height:4.799479pt;}
.h8_c01344{height:5.519401pt;}
.h10_c01344{height:8.303099pt;}
.h3_c01344{height:11.038802pt;}
.h18_c01344{height:13.822500pt;}
.h1a_c01344{height:16.606198pt;}
.h20_c01344{height:19.341901pt;}
.h2_c01344{height:22.125599pt;}
.h21_c01344{height:23.681432pt;}
.h12_c01344{height:24.861302pt;}
.hf_c01344{height:27.645000pt;}
.h13_c01344{height:30.428698pt;}
.h14_c01344{height:33.164401pt;}
.he_c01344{height:35.948099pt;}
.h9_c01344{height:38.683802pt;}
.ha_c01344{height:41.467500pt;}
.hb_c01344{height:44.251198pt;}
.h1c_c01344{height:44.817135pt;}
.hc_c01344{height:46.986901pt;}
.h15_c01344{height:49.770599pt;}
.h1f_c01344{height:51.003802pt;}
.h6_c01344{height:52.506302pt;}
.h5_c01344{height:55.290000pt;}
.h17_c01344{height:58.073698pt;}
.h7_c01344{height:60.809401pt;}
.h1b_c01344{height:63.593099pt;}
.h4_c01344{height:66.328802pt;}
.h19_c01344{height:69.112500pt;}
.hd_c01344{height:71.896198pt;}
.h1d_c01344{height:74.631901pt;}
.h1e_c01344{height:82.935000pt;}
.h1_c01344{height:1345.333333pt;}
.h0_c01344{height:1345.533333pt;}
.w0_c01344{width:963.066667pt;}
.w1_c01344{width:963.333333pt;}
.x0_c01344{left:0.000000pt;}
.x24_c01344{left:171.266667pt;}
.x92_c01344{left:182.013333pt;}
.x68_c01344{left:184.320000pt;}
.x63_c01344{left:185.853333pt;}
.x40_c01344{left:187.386667pt;}
.x51_c01344{left:189.693333pt;}
.x7c_c01344{left:191.226667pt;}
.x73_c01344{left:193.533333pt;}
.x70_c01344{left:195.066667pt;}
.x2a_c01344{left:196.613333pt;}
.x25_c01344{left:198.906667pt;}
.xe_c01344{left:200.453333pt;}
.x8a_c01344{left:201.986667pt;}
.x4b_c01344{left:203.520000pt;}
.x4c_c01344{left:206.586667pt;}
.x7d_c01344{left:209.666667pt;}
.x3d_c01344{left:211.200000pt;}
.x14_c01344{left:212.733333pt;}
.x33_c01344{left:214.266667pt;}
.x53_c01344{left:215.813333pt;}
.x76_c01344{left:217.346667pt;}
.x15_c01344{left:219.653333pt;}
.x6d_c01344{left:221.186667pt;}
.x2b_c01344{left:223.493333pt;}
.x69_c01344{left:225.026667pt;}
.x16_c01344{left:226.560000pt;}
.x61_c01344{left:229.626667pt;}
.x26_c01344{left:231.933333pt;}
.xa_c01344{left:233.466667pt;}
.x54_c01344{left:235.773333pt;}
.x8c_c01344{left:238.080000pt;}
.x39_c01344{left:240.386667pt;}
.x17_c01344{left:242.693333pt;}
.x41_c01344{left:244.226667pt;}
.x66_c01344{left:246.533333pt;}
.xf_c01344{left:249.600000pt;}
.x2c_c01344{left:251.133333pt;}
.x48_c01344{left:252.666667pt;}
.x6a_c01344{left:255.746667pt;}
.x4d_c01344{left:258.813333pt;}
.x77_c01344{left:260.346667pt;}
.x10_c01344{left:262.653333pt;}
.x30_c01344{left:264.186667pt;}
.xb_c01344{left:267.266667pt;}
.x6e_c01344{left:268.800000pt;}
.x4e_c01344{left:271.106667pt;}
.x91_c01344{left:272.640000pt;}
.x3b_c01344{left:274.946667pt;}
.x42_c01344{left:276.480000pt;}
.x86_c01344{left:278.013333pt;}
.x74_c01344{left:279.546667pt;}
.x7f_c01344{left:283.386667pt;}
.x20_c01344{left:285.693333pt;}
.x8b_c01344{left:287.226667pt;}
.x94_c01344{left:288.773333pt;}
.x6b_c01344{left:290.306667pt;}
.x79_c01344{left:291.840000pt;}
.x71_c01344{left:294.146667pt;}
.x49_c01344{left:295.680000pt;}
.x81_c01344{left:297.213333pt;}
.x1c_c01344{left:298.746667pt;}
.x8e_c01344{left:300.293333pt;}
.x83_c01344{left:302.586667pt;}
.x34_c01344{left:304.133333pt;}
.x3c_c01344{left:306.426667pt;}
.x43_c01344{left:307.973333pt;}
.x90_c01344{left:310.266667pt;}
.x87_c01344{left:311.813333pt;}
.x31_c01344{left:314.106667pt;}
.x75_c01344{left:317.186667pt;}
.x4a_c01344{left:319.493333pt;}
.x2d_c01344{left:321.026667pt;}
.x27_c01344{left:323.333333pt;}
.x8f_c01344{left:324.866667pt;}
.x21_c01344{left:326.400000pt;}
.x18_c01344{left:328.706667pt;}
.x95_c01344{left:330.240000pt;}
.x35_c01344{left:331.773333pt;}
.xc_c01344{left:335.613333pt;}
.x5d_c01344{left:337.146667pt;}
.x44_c01344{left:339.453333pt;}
.x58_c01344{left:340.986667pt;}
.x82_c01344{left:344.826667pt;}
.xd_c01344{left:346.373333pt;}
.x52_c01344{left:349.440000pt;}
.x5e_c01344{left:351.746667pt;}
.x45_c01344{left:353.280000pt;}
.x2e_c01344{left:356.346667pt;}
.x3e_c01344{left:359.426667pt;}
.x55_c01344{left:361.733333pt;}
.x62_c01344{left:364.800000pt;}
.x64_c01344{left:366.333333pt;}
.x56_c01344{left:368.640000pt;}
.x96_c01344{left:370.173333pt;}
.x1_c01344{left:371.706667pt;}
.x60_c01344{left:373.253333pt;}
.x88_c01344{left:374.786667pt;}
.x59_c01344{left:377.093333pt;}
.x2_c01344{left:378.626667pt;}
.x8d_c01344{left:380.160000pt;}
.x5f_c01344{left:381.693333pt;}
.x57_c01344{left:383.226667pt;}
.x2f_c01344{left:384.773333pt;}
.x22_c01344{left:386.306667pt;}
.x46_c01344{left:388.613333pt;}
.x89_c01344{left:393.986667pt;}
.x23_c01344{left:395.520000pt;}
.x28_c01344{left:397.053333pt;}
.x67_c01344{left:399.360000pt;}
.x5a_c01344{left:400.893333pt;}
.x84_c01344{left:403.200000pt;}
.x65_c01344{left:406.266667pt;}
.x36_c01344{left:408.573333pt;}
.x85_c01344{left:410.106667pt;}
.x29_c01344{left:411.653333pt;}
.x37_c01344{left:414.720000pt;}
.x11_c01344{left:416.253333pt;}
.x78_c01344{left:417.786667pt;}
.x3_c01344{left:420.093333pt;}
.x80_c01344{left:423.173333pt;}
.x1d_c01344{left:425.466667pt;}
.x32_c01344{left:427.013333pt;}
.x38_c01344{left:429.306667pt;}
.x5b_c01344{left:430.853333pt;}
.x12_c01344{left:432.386667pt;}
.x6c_c01344{left:433.920000pt;}
.x7a_c01344{left:435.453333pt;}
.x6f_c01344{left:437.760000pt;}
.x47_c01344{left:439.293333pt;}
.x1e_c01344{left:440.826667pt;}
.x3f_c01344{left:442.373333pt;}
.x4_c01344{left:445.440000pt;}
.x72_c01344{left:449.280000pt;}
.x4f_c01344{left:451.586667pt;}
.x7e_c01344{left:453.120000pt;}
.x93_c01344{left:454.653333pt;}
.x19_c01344{left:456.960000pt;}
.x7b_c01344{left:458.493333pt;}
.x50_c01344{left:461.573333pt;}
.x5c_c01344{left:463.106667pt;}
.x3a_c01344{left:465.413333pt;}
.x13_c01344{left:467.706667pt;}
.x5_c01344{left:472.320000pt;}
.x1a_c01344{left:474.626667pt;}
.x1b_c01344{left:480.000000pt;}
.x1f_c01344{left:483.066667pt;}
.xf0_c01344{left:486.906667pt;}
.xd0_c01344{left:490.746667pt;}
.xc1_c01344{left:493.053333pt;}
.x98_c01344{left:495.360000pt;}
.x97_c01344{left:496.893333pt;}
.xbf_c01344{left:498.426667pt;}
.x6_c01344{left:500.733333pt;}
.xde_c01344{left:502.266667pt;}
.xc0_c01344{left:505.346667pt;}
.xac_c01344{left:513.026667pt;}
.xd5_c01344{left:515.333333pt;}
.xc7_c01344{left:516.866667pt;}
.xb1_c01344{left:518.400000pt;}
.x7_c01344{left:522.240000pt;}
.xeb_c01344{left:530.693333pt;}
.xa6_c01344{left:534.533333pt;}
.x99_c01344{left:536.066667pt;}
.xbb_c01344{left:538.373333pt;}
.xdb_c01344{left:541.440000pt;}
.x8_c01344{left:545.280000pt;}
.xf1_c01344{left:546.813333pt;}
.xad_c01344{left:549.120000pt;}
.xd9_c01344{left:551.426667pt;}
.xd7_c01344{left:552.960000pt;}
.xb4_c01344{left:555.266667pt;}
.xa7_c01344{left:559.106667pt;}
.x9_c01344{left:560.640000pt;}
.x9a_c01344{left:565.253333pt;}
.xa0_c01344{left:566.786667pt;}
.xf2_c01344{left:569.853333pt;}
.xc2_c01344{left:571.386667pt;}
.xe5_c01344{left:572.933333pt;}
.xe6_c01344{left:578.306667pt;}
.xa1_c01344{left:579.840000pt;}
.x9b_c01344{left:581.373333pt;}
.xd1_c01344{left:583.680000pt;}
.xed_c01344{left:585.213333pt;}
.xc8_c01344{left:586.746667pt;}
.xe2_c01344{left:588.293333pt;}
.xcd_c01344{left:592.893333pt;}
.xbc_c01344{left:594.426667pt;}
.xf3_c01344{left:595.973333pt;}
.xdf_c01344{left:598.266667pt;}
.xae_c01344{left:601.346667pt;}
.xb8_c01344{left:602.880000pt;}
.xa2_c01344{left:606.720000pt;}
.xa8_c01344{left:610.560000pt;}
.xce_c01344{left:612.093333pt;}
.xb2_c01344{left:613.626667pt;}
.x9c_c01344{left:615.173333pt;}
.xb9_c01344{left:616.706667pt;}
.xc3_c01344{left:619.013333pt;}
.xd8_c01344{left:621.306667pt;}
.xb3_c01344{left:627.453333pt;}
.xa3_c01344{left:635.906667pt;}
.xe3_c01344{left:642.053333pt;}
.x9d_c01344{left:643.586667pt;}
.xf4_c01344{left:645.120000pt;}
.xa9_c01344{left:647.426667pt;}
.xa4_c01344{left:651.266667pt;}
.xe9_c01344{left:653.573333pt;}
.xf5_c01344{left:655.106667pt;}
.xe8_c01344{left:658.173333pt;}
.xaf_c01344{left:659.706667pt;}
.xc9_c01344{left:662.786667pt;}
.xca_c01344{left:667.386667pt;}
.xe4_c01344{left:668.933333pt;}
.xaa_c01344{left:672.773333pt;}
.xb5_c01344{left:675.840000pt;}
.x9e_c01344{left:677.373333pt;}
.xc4_c01344{left:679.680000pt;}
.xa5_c01344{left:681.986667pt;}
.xd6_c01344{left:686.586667pt;}
.xf6_c01344{left:688.893333pt;}
.xd2_c01344{left:691.200000pt;}
.xe0_c01344{left:692.733333pt;}
.xe1_c01344{left:695.813333pt;}
.xd3_c01344{left:697.346667pt;}
.xab_c01344{left:699.653333pt;}
.xdc_c01344{left:703.493333pt;}
.xc5_c01344{left:705.026667pt;}
.xcb_c01344{left:708.093333pt;}
.xba_c01344{left:709.626667pt;}
.xb6_c01344{left:714.240000pt;}
.xd4_c01344{left:718.080000pt;}
.xda_c01344{left:719.613333pt;}
.xb0_c01344{left:721.920000pt;}
.xea_c01344{left:725.760000pt;}
.xcc_c01344{left:728.826667pt;}
.xee_c01344{left:731.133333pt;}
.xbd_c01344{left:733.440000pt;}
.x9f_c01344{left:740.346667pt;}
.xec_c01344{left:743.426667pt;}
.xdd_c01344{left:744.960000pt;}
.xe7_c01344{left:746.493333pt;}
.xcf_c01344{left:749.573333pt;}
.xb7_c01344{left:754.173333pt;}
.xef_c01344{left:755.706667pt;}
.xbe_c01344{left:758.786667pt;}
.xc6_c01344{left:770.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_595d5c2537cf7a8296aaf3be.woff2')format("woff");}.ff1_c01345{font-family:ff1_c01345;line-height:1.109863;font-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_c01345{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me6_c01345{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.mfe_c01345{transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065225,0.000000,0.000000,0.250000,0,0);}
.m108_c01345{transform:matrix(0.078075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078075,0.000000,0.000000,0.250000,0,0);}
.m111_c01345{transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093750,0.000000,0.000000,0.250000,0,0);}
.m4a_c01345{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);}
.m102_c01345{transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113250,0.000000,0.000000,0.250000,0,0);}
.m11f_c01345{transform:matrix(0.117100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117100,0.000000,0.000000,0.250000,0,0);}
.m52_c01345{transform:matrix(0.118800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118800,0.000000,0.000000,0.250000,0,0);}
.m139_c01345{transform:matrix(0.119100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119100,0.000000,0.000000,0.250000,0,0);}
.m12d_c01345{transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126275,0.000000,0.000000,0.250000,0,0);}
.m12c_c01345{transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129350,0.000000,0.000000,0.250000,0,0);}
.m12b_c01345{transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130425,0.000000,0.000000,0.250000,0,0);}
.md2_c01345{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);}
.m3a_c01345{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m130_c01345{transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144475,0.000000,0.000000,0.250000,0,0);}
.m121_c01345{transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145400,0.000000,0.000000,0.250000,0,0);}
.m129_c01345{transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149750,0.000000,0.000000,0.250000,0,0);}
.m12f_c01345{transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151225,0.000000,0.000000,0.250000,0,0);}
.ma9_c01345{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);}
.me0_c01345{transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153650,0.000000,0.000000,0.250000,0,0);}
.m77_c01345{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);}
.m7b_c01345{transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157000,0.000000,0.000000,0.250000,0,0);}
.m53_c01345{transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157875,0.000000,0.000000,0.250000,0,0);}
.me5_c01345{transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);}
.m114_c01345{transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158625,0.000000,0.000000,0.250000,0,0);}
.m5d_c01345{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.m9b_c01345{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.m134_c01345{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);}
.mb1_c01345{transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163025,0.000000,0.000000,0.250000,0,0);}
.me3_c01345{transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164550,0.000000,0.000000,0.250000,0,0);}
.mb3_c01345{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.ma_c01345{transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167900,0.000000,0.000000,0.250000,0,0);}
.m131_c01345{transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168175,0.000000,0.000000,0.250000,0,0);}
.m4b_c01345{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m12a_c01345{transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170675,0.000000,0.000000,0.250000,0,0);}
.m2a_c01345{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);}
.m39_c01345{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);}
.me1_c01345{transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176425,0.000000,0.000000,0.250000,0,0);}
.mb_c01345{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.me4_c01345{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.ma8_c01345{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);}
.m89_c01345{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);}
.m8_c01345{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m95_c01345{transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);}
.m118_c01345{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);}
.ma0_c01345{transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184775,0.000000,0.000000,0.250000,0,0);}
.m123_c01345{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);}
.m9d_c01345{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.m31_c01345{transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185625,0.000000,0.000000,0.250000,0,0);}
.m7c_c01345{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m70_c01345{transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187375,0.000000,0.000000,0.250000,0,0);}
.m28_c01345{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);}
.mb0_c01345{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);}
.m7a_c01345{transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190350,0.000000,0.000000,0.250000,0,0);}
.mf6_c01345{transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191275,0.000000,0.000000,0.250000,0,0);}
.m86_c01345{transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192275,0.000000,0.000000,0.250000,0,0);}
.m41_c01345{transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);}
.mdc_c01345{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);}
.m113_c01345{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.mc4_c01345{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.mcb_c01345{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);}
.m16_c01345{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.m7_c01345{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.mb5_c01345{transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194025,0.000000,0.000000,0.250000,0,0);}
.m110_c01345{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_c01345{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);}
.mc7_c01345{transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194275,0.000000,0.000000,0.250000,0,0);}
.m104_c01345{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);}
.mcf_c01345{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.m10b_c01345{transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196000,0.000000,0.000000,0.250000,0,0);}
.mbd_c01345{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);}
.md_c01345{transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);}
.m122_c01345{transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197450,0.000000,0.000000,0.250000,0,0);}
.m2c_c01345{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);}
.maa_c01345{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);}
.m101_c01345{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m94_c01345{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);}
.mf4_c01345{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);}
.m5e_c01345{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);}
.mbb_c01345{transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);}
.m6b_c01345{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m3d_c01345{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.m11_c01345{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);}
.m29_c01345{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.mf9_c01345{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.mdb_c01345{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);}
.m120_c01345{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);}
.m7f_c01345{transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);}
.m36_c01345{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m98_c01345{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.med_c01345{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);}
.m5a_c01345{transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);}
.mf_c01345{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.mdd_c01345{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m11e_c01345{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.mda_c01345{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.mfb_c01345{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mca_c01345{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m42_c01345{transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208450,0.000000,0.000000,0.250000,0,0);}
.m56_c01345{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);}
.m125_c01345{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);}
.m66_c01345{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);}
.m8e_c01345{transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);}
.m6f_c01345{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);}
.mb4_c01345{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);}
.md4_c01345{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);}
.mcd_c01345{transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211525,0.000000,0.000000,0.250000,0,0);}
.m59_c01345{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);}
.mf3_c01345{transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);}
.m135_c01345{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);}
.m103_c01345{transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212525,0.000000,0.000000,0.250000,0,0);}
.m105_c01345{transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);}
.m48_c01345{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);}
.m49_c01345{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);}
.m124_c01345{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);}
.m6e_c01345{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);}
.m69_c01345{transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);}
.mb2_c01345{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);}
.mf1_c01345{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);}
.m58_c01345{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);}
.mc1_c01345{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m11c_c01345{transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216225,0.000000,0.000000,0.250000,0,0);}
.ma7_c01345{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.m5c_c01345{transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217625,0.000000,0.000000,0.250000,0,0);}
.m133_c01345{transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217850,0.000000,0.000000,0.250000,0,0);}
.mfd_c01345{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);}
.m9a_c01345{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);}
.m27_c01345{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m78_c01345{transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219400,0.000000,0.000000,0.250000,0,0);}
.m6c_c01345{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);}
.m5b_c01345{transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219875,0.000000,0.000000,0.250000,0,0);}
.mb6_c01345{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.m112_c01345{transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221075,0.000000,0.000000,0.250000,0,0);}
.m109_c01345{transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222450,0.000000,0.000000,0.250000,0,0);}
.m13_c01345{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.m12e_c01345{transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);}
.mbc_c01345{transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224475,0.000000,0.000000,0.250000,0,0);}
.me2_c01345{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m92_c01345{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);}
.mac_c01345{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);}
.ma5_c01345{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m79_c01345{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);}
.m126_c01345{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.m81_c01345{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);}
.m127_c01345{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);}
.m80_c01345{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.m60_c01345{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);}
.m99_c01345{transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);}
.mc6_c01345{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);}
.mad_c01345{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m10c_c01345{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m9e_c01345{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m82_c01345{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.mf7_c01345{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);}
.m3e_c01345{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);}
.m97_c01345{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);}
.md0_c01345{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);}
.m100_c01345{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);}
.m54_c01345{transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231975,0.000000,0.000000,0.250000,0,0);}
.m6a_c01345{transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);}
.ma1_c01345{transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);}
.mb7_c01345{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);}
.mee_c01345{transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);}
.meb_c01345{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.md5_c01345{transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233875,0.000000,0.000000,0.250000,0,0);}
.m10a_c01345{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);}
.m87_c01345{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);}
.m136_c01345{transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235425,0.000000,0.000000,0.250000,0,0);}
.m10e_c01345{transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);}
.mbe_c01345{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m62_c01345{transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236400,0.000000,0.000000,0.250000,0,0);}
.m117_c01345{transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236925,0.000000,0.000000,0.250000,0,0);}
.mcc_c01345{transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);}
.m45_c01345{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);}
.mba_c01345{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);}
.m8f_c01345{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.me8_c01345{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);}
.mea_c01345{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);}
.m115_c01345{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);}
.mb8_c01345{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);}
.m137_c01345{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.mef_c01345{transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);}
.m51_c01345{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);}
.m10f_c01345{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);}
.mde_c01345{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.m88_c01345{transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);}
.m2d_c01345{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.ma2_c01345{transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240475,0.000000,0.000000,0.250000,0,0);}
.m68_c01345{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);}
.mf0_c01345{transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240575,0.000000,0.000000,0.250000,0,0);}
.m8d_c01345{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);}
.m23_c01345{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m119_c01345{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);}
.m96_c01345{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m11d_c01345{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);}
.mfa_c01345{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);}
.mfc_c01345{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);}
.m116_c01345{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);}
.md6_c01345{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.m26_c01345{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);}
.mbf_c01345{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);}
.mb9_c01345{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.mc9_c01345{transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246700,0.000000,0.000000,0.250000,0,0);}
.m43_c01345{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.m9c_c01345{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m93_c01345{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.mff_c01345{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);}
.m67_c01345{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);}
.m57_c01345{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);}
.m76_c01345{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);}
.m64_c01345{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);}
.m83_c01345{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m63_c01345{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);}
.m6d_c01345{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);}
.m84_c01345{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);}
.m106_c01345{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);}
.m4d_c01345{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01345{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c01345{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m40_c01345{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);}
.m3f_c01345{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m37_c01345{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);}
.m5f_c01345{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);}
.m10_c01345{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c01345{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);}
.m1c_c01345{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m38_c01345{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01345{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);}
.m1f_c01345{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01345{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);}
.me_c01345{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_c01345{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.mc_c01345{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01345{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);}
.m33_c01345{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01345{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3_c01345{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);}
.m85_c01345{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01345{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m9_c01345{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01345{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m19_c01345{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01345{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01345{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m55_c01345{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);}
.m21_c01345{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01345{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m35_c01345{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m4_c01345{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m50_c01345{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);}
.m32_c01345{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m11a_c01345{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m12_c01345{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);}
.mc3_c01345{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mf2_c01345{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m47_c01345{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mec_c01345{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m25_c01345{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);}
.m7e_c01345{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m11b_c01345{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);}
.md7_c01345{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m8a_c01345{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m20_c01345{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);}
.m22_c01345{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc0_c01345{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1_c01345{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.me7_c01345{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m46_c01345{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m44_c01345{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mae_c01345{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);}
.m7d_c01345{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);}
.m65_c01345{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01345{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);}
.md8_c01345{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m2_c01345{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);}
.m132_c01345{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01345{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mc5_c01345{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01345{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mc8_c01345{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m91_c01345{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m24_c01345{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);}
.m74_c01345{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m90_c01345{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.me9_c01345{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m71_c01345{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.mab_c01345{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.md1_c01345{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mf5_c01345{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m107_c01345{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m8b_c01345{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.ma4_c01345{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m9f_c01345{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);}
.md3_c01345{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m72_c01345{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.mce_c01345{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.maf_c01345{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m14_c01345{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.ma6_c01345{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.m34_c01345{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);}
.m75_c01345{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m30_c01345{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m10d_c01345{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);}
.mf8_c01345{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m138_c01345{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01345{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m61_c01345{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m73_c01345{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m128_c01345{transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.842500,0.000000,0.000000,0.250000,0,0);}
.mdf_c01345{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01345{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01345{transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.605000,0.000000,0.000000,0.250000,0,0);}
.md9_c01345{transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);}
.v3_c01345{vertical-align:-3.420000px;}
.v0_c01345{vertical-align:0.000000px;}
.v2_c01345{vertical-align:3.420000px;}
.v1_c01345{vertical-align:6.900000px;}
.ls1_c01345{letter-spacing:0.000000px;}
.ls0_c01345{letter-spacing:28.056000px;}
.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:-12.589800px;}
.ws3_c01345{word-spacing:-11.447760px;}
.ws2_c01345{word-spacing:-11.002440px;}
.ws1_c01345{word-spacing:-8.389380px;}
.ws4_c01345{word-spacing:0.000000px;}
.fc0_c01345{color:transparent;}
.fs16_c01345{font-size:3.456000px;}
.fs0_c01345{font-size:6.000000px;}
.fsf_c01345{font-size:6.900000px;}
.fs1a_c01345{font-size:10.380000px;}
.fs10_c01345{font-size:13.800000px;}
.fsc_c01345{font-size:17.280000px;}
.fs15_c01345{font-size:20.760000px;}
.fs19_c01345{font-size:24.180000px;}
.fsd_c01345{font-size:27.660000px;}
.fs1_c01345{font-size:31.080000px;}
.fs13_c01345{font-size:34.560000px;}
.fs11_c01345{font-size:38.040000px;}
.fse_c01345{font-size:41.460000px;}
.fs8_c01345{font-size:44.940000px;}
.fs6_c01345{font-size:48.360000px;}
.fsa_c01345{font-size:51.840000px;}
.fsb_c01345{font-size:55.320000px;}
.fs2_c01345{font-size:58.740000px;}
.fs5_c01345{font-size:62.220000px;}
.fs9_c01345{font-size:65.640000px;}
.fs4_c01345{font-size:69.120000px;}
.fs14_c01345{font-size:72.600000px;}
.fs3_c01345{font-size:76.020000px;}
.fs7_c01345{font-size:79.500000px;}
.fs17_c01345{font-size:82.920000px;}
.fs12_c01345{font-size:86.400000px;}
.fs18_c01345{font-size:89.880000px;}
.fs1b_c01345{font-size:93.300000px;}
.y0_c01345{bottom:0.000000px;}
.y21d_c01345{bottom:184.035000px;}
.y21c_c01345{bottom:186.630000px;}
.y21b_c01345{bottom:199.590000px;}
.y219_c01345{bottom:207.360000px;}
.y216_c01345{bottom:217.725000px;}
.y217_c01345{bottom:218.595000px;}
.y218_c01345{bottom:222.045000px;}
.y211_c01345{bottom:222.915000px;}
.y21a_c01345{bottom:223.770000px;}
.y212_c01345{bottom:224.640000px;}
.y214_c01345{bottom:227.235000px;}
.y213_c01345{bottom:228.960000px;}
.y20e_c01345{bottom:238.470000px;}
.y20d_c01345{bottom:239.325000px;}
.y215_c01345{bottom:240.195000px;}
.y210_c01345{bottom:242.790000px;}
.y20f_c01345{bottom:247.965000px;}
.y20a_c01345{bottom:255.750000px;}
.y208_c01345{bottom:256.605000px;}
.y209_c01345{bottom:257.475000px;}
.y20b_c01345{bottom:262.650000px;}
.y20c_c01345{bottom:265.245000px;}
.y207_c01345{bottom:266.115000px;}
.y204_c01345{bottom:279.075000px;}
.y206_c01345{bottom:281.670000px;}
.y203_c01345{bottom:284.250000px;}
.y202_c01345{bottom:285.120000px;}
.y205_c01345{bottom:289.440000px;}
.y1fe_c01345{bottom:294.630000px;}
.y1ff_c01345{bottom:295.485000px;}
.y1fd_c01345{bottom:296.355000px;}
.y200_c01345{bottom:298.950000px;}
.y201_c01345{bottom:304.995000px;}
.y1f9_c01345{bottom:311.910000px;}
.y1f7_c01345{bottom:312.765000px;}
.y1fa_c01345{bottom:314.490000px;}
.y1f8_c01345{bottom:315.360000px;}
.y1fc_c01345{bottom:317.955000px;}
.y1fb_c01345{bottom:319.680000px;}
.y1f1_c01345{bottom:332.640000px;}
.y1f2_c01345{bottom:333.510000px;}
.y1f3_c01345{bottom:335.235000px;}
.y1f5_c01345{bottom:336.090000px;}
.y1f4_c01345{bottom:336.960000px;}
.y1f6_c01345{bottom:339.555000px;}
.y1ed_c01345{bottom:350.790000px;}
.y1ee_c01345{bottom:351.645000px;}
.y1ef_c01345{bottom:353.370000px;}
.y1f0_c01345{bottom:354.240000px;}
.y1e8_c01345{bottom:363.750000px;}
.y1e9_c01345{bottom:366.330000px;}
.y1ea_c01345{bottom:368.925000px;}
.y1eb_c01345{bottom:369.795000px;}
.y1ec_c01345{bottom:370.650000px;}
.y1e3_c01345{bottom:381.885000px;}
.y1e4_c01345{bottom:382.755000px;}
.y1e5_c01345{bottom:387.930000px;}
.y1e6_c01345{bottom:388.800000px;}
.y1e7_c01345{bottom:389.670000px;}
.y1de_c01345{bottom:403.485000px;}
.y1df_c01345{bottom:404.355000px;}
.y1e0_c01345{bottom:405.210000px;}
.y1e2_c01345{bottom:406.080000px;}
.y1dd_c01345{bottom:406.950000px;}
.y1e1_c01345{bottom:407.805000px;}
.y1d9_c01345{bottom:418.170000px;}
.y1db_c01345{bottom:419.040000px;}
.y1d7_c01345{bottom:419.910000px;}
.y1d8_c01345{bottom:421.635000px;}
.y1da_c01345{bottom:422.490000px;}
.y1dc_c01345{bottom:424.230000px;}
.y1d6_c01345{bottom:432.000000px;}
.y1d0_c01345{bottom:433.725000px;}
.y1d1_c01345{bottom:437.190000px;}
.y1d3_c01345{bottom:438.915000px;}
.y1d2_c01345{bottom:439.770000px;}
.y1d4_c01345{bottom:440.640000px;}
.y1d5_c01345{bottom:441.510000px;}
.y1cb_c01345{bottom:452.730000px;}
.y1cd_c01345{bottom:455.325000px;}
.y1cc_c01345{bottom:456.195000px;}
.y1ce_c01345{bottom:457.050000px;}
.y1cf_c01345{bottom:458.790000px;}
.y1c8_c01345{bottom:466.560000px;}
.y1c9_c01345{bottom:468.285000px;}
.y1c6_c01345{bottom:470.010000px;}
.y1c5_c01345{bottom:471.750000px;}
.y1c4_c01345{bottom:473.475000px;}
.y1ca_c01345{bottom:474.330000px;}
.y1c7_c01345{bottom:478.650000px;}
.y1c1_c01345{bottom:486.435000px;}
.y1c2_c01345{bottom:487.290000px;}
.y1c0_c01345{bottom:489.030000px;}
.y1c3_c01345{bottom:489.885000px;}
.y1ba_c01345{bottom:503.715000px;}
.y1bb_c01345{bottom:504.570000px;}
.y1b9_c01345{bottom:505.440000px;}
.y1be_c01345{bottom:507.165000px;}
.y1bf_c01345{bottom:508.035000px;}
.y1bc_c01345{bottom:508.890000px;}
.y1bd_c01345{bottom:509.760000px;}
.y1b8_c01345{bottom:516.675000px;}
.y1b6_c01345{bottom:544.320000px;}
.y1b7_c01345{bottom:545.190000px;}
.y1b2_c01345{bottom:560.730000px;}
.y1b4_c01345{bottom:562.470000px;}
.y1b5_c01345{bottom:563.325000px;}
.y1b3_c01345{bottom:568.515000px;}
.y1ae_c01345{bottom:573.690000px;}
.y1af_c01345{bottom:575.430000px;}
.y16d_c01345{bottom:576.285000px;}
.y16f_c01345{bottom:577.155000px;}
.y16e_c01345{bottom:578.010000px;}
.y1b0_c01345{bottom:579.750000px;}
.y1b1_c01345{bottom:581.475000px;}
.y16b_c01345{bottom:590.115000px;}
.y1a9_c01345{bottom:591.840000px;}
.y16c_c01345{bottom:592.710000px;}
.y1ac_c01345{bottom:594.435000px;}
.y1a8_c01345{bottom:597.030000px;}
.y1aa_c01345{bottom:597.885000px;}
.y1ab_c01345{bottom:598.755000px;}
.y1ad_c01345{bottom:603.930000px;}
.y168_c01345{bottom:607.395000px;}
.y167_c01345{bottom:608.250000px;}
.y165_c01345{bottom:609.990000px;}
.y1a6_c01345{bottom:611.715000px;}
.y166_c01345{bottom:612.570000px;}
.y169_c01345{bottom:613.440000px;}
.y1a7_c01345{bottom:614.310000px;}
.y1a4_c01345{bottom:615.165000px;}
.y16a_c01345{bottom:616.035000px;}
.y1a5_c01345{bottom:616.890000px;}
.y164_c01345{bottom:618.630000px;}
.y15d_c01345{bottom:625.530000px;}
.y15c_c01345{bottom:628.125000px;}
.y15e_c01345{bottom:628.995000px;}
.y15f_c01345{bottom:629.850000px;}
.y162_c01345{bottom:630.720000px;}
.y163_c01345{bottom:631.590000px;}
.y1a1_c01345{bottom:632.445000px;}
.y1a2_c01345{bottom:634.170000px;}
.y1a3_c01345{bottom:635.040000px;}
.y160_c01345{bottom:635.910000px;}
.y156_c01345{bottom:639.360000px;}
.y155_c01345{bottom:640.230000px;}
.y161_c01345{bottom:641.085000px;}
.y157_c01345{bottom:641.955000px;}
.y15a_c01345{bottom:642.810000px;}
.y15b_c01345{bottom:643.680000px;}
.y158_c01345{bottom:645.405000px;}
.y19d_c01345{bottom:647.130000px;}
.y159_c01345{bottom:648.000000px;}
.y19f_c01345{bottom:648.870000px;}
.y19e_c01345{bottom:649.725000px;}
.y1a0_c01345{bottom:652.320000px;}
.y150_c01345{bottom:658.365000px;}
.y153_c01345{bottom:659.235000px;}
.y14f_c01345{bottom:660.960000px;}
.y198_c01345{bottom:661.830000px;}
.y151_c01345{bottom:662.685000px;}
.y152_c01345{bottom:663.555000px;}
.y19a_c01345{bottom:664.410000px;}
.y154_c01345{bottom:665.280000px;}
.y199_c01345{bottom:667.005000px;}
.y19b_c01345{bottom:668.730000px;}
.y19c_c01345{bottom:669.600000px;}
.y14a_c01345{bottom:675.645000px;}
.y14c_c01345{bottom:679.965000px;}
.y14b_c01345{bottom:681.690000px;}
.y14e_c01345{bottom:682.560000px;}
.y14d_c01345{bottom:683.430000px;}
.y145_c01345{bottom:692.925000px;}
.y149_c01345{bottom:694.650000px;}
.y147_c01345{bottom:697.245000px;}
.y146_c01345{bottom:698.115000px;}
.y148_c01345{bottom:698.970000px;}
.y144_c01345{bottom:699.840000px;}
.y194_c01345{bottom:701.565000px;}
.y196_c01345{bottom:702.435000px;}
.y195_c01345{bottom:703.290000px;}
.y197_c01345{bottom:704.160000px;}
.y143_c01345{bottom:714.525000px;}
.y140_c01345{bottom:731.805000px;}
.y13e_c01345{bottom:732.675000px;}
.y13f_c01345{bottom:733.530000px;}
.y141_c01345{bottom:735.270000px;}
.y142_c01345{bottom:736.125000px;}
.y192_c01345{bottom:736.995000px;}
.y193_c01345{bottom:738.720000px;}
.y13a_c01345{bottom:744.765000px;}
.y13b_c01345{bottom:745.635000px;}
.y13c_c01345{bottom:750.810000px;}
.y13d_c01345{bottom:753.405000px;}
.y18e_c01345{bottom:754.275000px;}
.y18f_c01345{bottom:755.130000px;}
.y190_c01345{bottom:756.000000px;}
.y191_c01345{bottom:756.870000px;}
.y135_c01345{bottom:762.915000px;}
.y137_c01345{bottom:764.640000px;}
.y18a_c01345{bottom:766.365000px;}
.y134_c01345{bottom:767.235000px;}
.y136_c01345{bottom:768.090000px;}
.y139_c01345{bottom:768.960000px;}
.y138_c01345{bottom:769.830000px;}
.y18b_c01345{bottom:771.555000px;}
.y18c_c01345{bottom:773.280000px;}
.y18d_c01345{bottom:774.150000px;}
.y12f_c01345{bottom:782.790000px;}
.y130_c01345{bottom:783.645000px;}
.y131_c01345{bottom:784.515000px;}
.y132_c01345{bottom:786.240000px;}
.y133_c01345{bottom:788.835000px;}
.y129_c01345{bottom:797.475000px;}
.y128_c01345{bottom:799.200000px;}
.y12b_c01345{bottom:800.925000px;}
.y12a_c01345{bottom:802.650000px;}
.y12c_c01345{bottom:804.390000px;}
.y12d_c01345{bottom:806.115000px;}
.y12e_c01345{bottom:808.710000px;}
.y122_c01345{bottom:818.205000px;}
.y126_c01345{bottom:819.075000px;}
.y123_c01345{bottom:819.930000px;}
.y124_c01345{bottom:821.670000px;}
.y127_c01345{bottom:822.525000px;}
.y125_c01345{bottom:824.250000px;}
.y11e_c01345{bottom:832.035000px;}
.y11d_c01345{bottom:833.760000px;}
.y11b_c01345{bottom:834.630000px;}
.y11c_c01345{bottom:836.355000px;}
.y11f_c01345{bottom:838.080000px;}
.y120_c01345{bottom:838.950000px;}
.y186_c01345{bottom:839.805000px;}
.y121_c01345{bottom:840.675000px;}
.y187_c01345{bottom:841.530000px;}
.y189_c01345{bottom:844.995000px;}
.y188_c01345{bottom:847.590000px;}
.y117_c01345{bottom:851.040000px;}
.y119_c01345{bottom:853.635000px;}
.y184_c01345{bottom:856.230000px;}
.y11a_c01345{bottom:857.955000px;}
.y116_c01345{bottom:858.810000px;}
.y183_c01345{bottom:859.680000px;}
.y185_c01345{bottom:862.275000px;}
.y115_c01345{bottom:863.130000px;}
.y111_c01345{bottom:864.870000px;}
.y118_c01345{bottom:866.595000px;}
.y112_c01345{bottom:867.450000px;}
.y182_c01345{bottom:869.190000px;}
.y110_c01345{bottom:870.045000px;}
.y114_c01345{bottom:872.640000px;}
.y17e_c01345{bottom:873.510000px;}
.y113_c01345{bottom:874.365000px;}
.y17f_c01345{bottom:875.235000px;}
.y17b_c01345{bottom:876.090000px;}
.y17c_c01345{bottom:877.830000px;}
.y17d_c01345{bottom:878.685000px;}
.y180_c01345{bottom:880.410000px;}
.y181_c01345{bottom:881.280000px;}
.y10a_c01345{bottom:883.005000px;}
.y10e_c01345{bottom:885.600000px;}
.y10b_c01345{bottom:888.195000px;}
.y10c_c01345{bottom:889.920000px;}
.y177_c01345{bottom:891.645000px;}
.y10f_c01345{bottom:892.515000px;}
.y10d_c01345{bottom:893.370000px;}
.y176_c01345{bottom:894.240000px;}
.y178_c01345{bottom:896.835000px;}
.y179_c01345{bottom:897.690000px;}
.y109_c01345{bottom:900.285000px;}
.y17a_c01345{bottom:901.155000px;}
.y106_c01345{bottom:904.605000px;}
.y103_c01345{bottom:905.475000px;}
.y104_c01345{bottom:907.200000px;}
.y105_c01345{bottom:908.925000px;}
.y107_c01345{bottom:909.795000px;}
.y108_c01345{bottom:910.650000px;}
.y175_c01345{bottom:912.390000px;}
.y174_c01345{bottom:914.115000px;}
.yff_c01345{bottom:921.030000px;}
.yfd_c01345{bottom:922.755000px;}
.yfe_c01345{bottom:923.610000px;}
.y102_c01345{bottom:925.350000px;}
.y100_c01345{bottom:926.205000px;}
.y101_c01345{bottom:927.075000px;}
.y170_c01345{bottom:929.670000px;}
.y172_c01345{bottom:930.525000px;}
.y171_c01345{bottom:931.395000px;}
.yf6_c01345{bottom:936.570000px;}
.yf5_c01345{bottom:940.890000px;}
.yf8_c01345{bottom:941.760000px;}
.yf7_c01345{bottom:942.630000px;}
.yf4_c01345{bottom:945.210000px;}
.yf9_c01345{bottom:946.080000px;}
.y173_c01345{bottom:946.950000px;}
.yfb_c01345{bottom:951.270000px;}
.yfc_c01345{bottom:952.995000px;}
.yfa_c01345{bottom:956.445000px;}
.yec_c01345{bottom:957.315000px;}
.yed_c01345{bottom:958.170000px;}
.yef_c01345{bottom:959.040000px;}
.yee_c01345{bottom:961.635000px;}
.yf1_c01345{bottom:964.230000px;}
.yf2_c01345{bottom:965.085000px;}
.yf3_c01345{bottom:967.680000px;}
.yf0_c01345{bottom:969.405000px;}
.ye4_c01345{bottom:971.130000px;}
.ye3_c01345{bottom:973.725000px;}
.ye2_c01345{bottom:974.595000px;}
.ye5_c01345{bottom:975.450000px;}
.ye6_c01345{bottom:977.190000px;}
.ye7_c01345{bottom:979.770000px;}
.ye9_c01345{bottom:980.640000px;}
.ye8_c01345{bottom:981.510000px;}
.yea_c01345{bottom:983.235000px;}
.yeb_c01345{bottom:984.960000px;}
.yd7_c01345{bottom:986.685000px;}
.ydb_c01345{bottom:989.280000px;}
.yd9_c01345{bottom:990.150000px;}
.yd6_c01345{bottom:991.875000px;}
.ydd_c01345{bottom:992.730000px;}
.yd8_c01345{bottom:993.600000px;}
.yde_c01345{bottom:994.470000px;}
.ydf_c01345{bottom:995.325000px;}
.ydc_c01345{bottom:997.050000px;}
.ye1_c01345{bottom:1000.515000px;}
.ye0_c01345{bottom:1001.370000px;}
.ycd_c01345{bottom:1007.430000px;}
.yda_c01345{bottom:1008.285000px;}
.yce_c01345{bottom:1009.155000px;}
.ycc_c01345{bottom:1010.010000px;}
.ycf_c01345{bottom:1010.880000px;}
.yd0_c01345{bottom:1011.750000px;}
.yd5_c01345{bottom:1013.475000px;}
.ycb_c01345{bottom:1014.330000px;}
.yd1_c01345{bottom:1015.200000px;}
.yd2_c01345{bottom:1016.070000px;}
.yd4_c01345{bottom:1017.795000px;}
.yd3_c01345{bottom:1018.650000px;}
.yc3_c01345{bottom:1022.970000px;}
.yc6_c01345{bottom:1026.435000px;}
.yc4_c01345{bottom:1028.160000px;}
.yc5_c01345{bottom:1029.030000px;}
.yc7_c01345{bottom:1029.885000px;}
.yc2_c01345{bottom:1030.755000px;}
.yc8_c01345{bottom:1032.480000px;}
.yca_c01345{bottom:1033.350000px;}
.yc9_c01345{bottom:1034.205000px;}
.yb8_c01345{bottom:1041.990000px;}
.yb6_c01345{bottom:1043.715000px;}
.yba_c01345{bottom:1044.570000px;}
.yb7_c01345{bottom:1045.440000px;}
.yb9_c01345{bottom:1048.035000px;}
.ybc_c01345{bottom:1048.890000px;}
.ybd_c01345{bottom:1050.630000px;}
.ybf_c01345{bottom:1051.485000px;}
.ybe_c01345{bottom:1052.355000px;}
.yc0_c01345{bottom:1053.210000px;}
.yc1_c01345{bottom:1054.080000px;}
.ybb_c01345{bottom:1055.805000px;}
.ya8_c01345{bottom:1058.400000px;}
.yaa_c01345{bottom:1060.995000px;}
.ya6_c01345{bottom:1061.850000px;}
.ya7_c01345{bottom:1062.720000px;}
.ya9_c01345{bottom:1064.445000px;}
.yb0_c01345{bottom:1065.315000px;}
.yb2_c01345{bottom:1066.170000px;}
.yac_c01345{bottom:1067.040000px;}
.yad_c01345{bottom:1067.910000px;}
.yb1_c01345{bottom:1069.635000px;}
.yb4_c01345{bottom:1070.490000px;}
.yb3_c01345{bottom:1071.360000px;}
.yab_c01345{bottom:1073.955000px;}
.yb5_c01345{bottom:1075.680000px;}
.yae_c01345{bottom:1079.130000px;}
.ya0_c01345{bottom:1080.000000px;}
.y9f_c01345{bottom:1080.870000px;}
.yaf_c01345{bottom:1081.725000px;}
.ya2_c01345{bottom:1086.915000px;}
.ya4_c01345{bottom:1087.770000px;}
.ya5_c01345{bottom:1088.640000px;}
.ya3_c01345{bottom:1089.510000px;}
.ya1_c01345{bottom:1092.960000px;}
.y96_c01345{bottom:1095.555000px;}
.y94_c01345{bottom:1096.410000px;}
.y95_c01345{bottom:1098.150000px;}
.y9b_c01345{bottom:1099.875000px;}
.y9a_c01345{bottom:1100.730000px;}
.y99_c01345{bottom:1101.600000px;}
.y97_c01345{bottom:1102.470000px;}
.y9d_c01345{bottom:1103.325000px;}
.y98_c01345{bottom:1104.195000px;}
.y9c_c01345{bottom:1105.920000px;}
.y9e_c01345{bottom:1106.790000px;}
.y89_c01345{bottom:1113.690000px;}
.y8a_c01345{bottom:1115.430000px;}
.y8b_c01345{bottom:1116.285000px;}
.y8d_c01345{bottom:1117.155000px;}
.y8c_c01345{bottom:1118.010000px;}
.y8f_c01345{bottom:1119.750000px;}
.y8e_c01345{bottom:1120.605000px;}
.y90_c01345{bottom:1121.475000px;}
.y91_c01345{bottom:1122.330000px;}
.y92_c01345{bottom:1123.200000px;}
.y93_c01345{bottom:1124.070000px;}
.y81_c01345{bottom:1131.840000px;}
.y82_c01345{bottom:1132.710000px;}
.y80_c01345{bottom:1133.565000px;}
.y85_c01345{bottom:1135.290000px;}
.y83_c01345{bottom:1136.160000px;}
.y84_c01345{bottom:1138.755000px;}
.y86_c01345{bottom:1139.610000px;}
.y88_c01345{bottom:1140.480000px;}
.y87_c01345{bottom:1141.350000px;}
.y77_c01345{bottom:1147.395000px;}
.y7b_c01345{bottom:1149.990000px;}
.y76_c01345{bottom:1150.845000px;}
.y78_c01345{bottom:1151.715000px;}
.y7a_c01345{bottom:1152.570000px;}
.y79_c01345{bottom:1153.440000px;}
.y7c_c01345{bottom:1156.890000px;}
.y7e_c01345{bottom:1157.760000px;}
.y7f_c01345{bottom:1158.630000px;}
.y70_c01345{bottom:1165.530000px;}
.y7d_c01345{bottom:1166.400000px;}
.y6f_c01345{bottom:1168.125000px;}
.y71_c01345{bottom:1169.850000px;}
.y72_c01345{bottom:1172.445000px;}
.y73_c01345{bottom:1175.910000px;}
.y75_c01345{bottom:1176.765000px;}
.y74_c01345{bottom:1177.635000px;}
.y67_c01345{bottom:1180.230000px;}
.y6b_c01345{bottom:1184.550000px;}
.y69_c01345{bottom:1186.275000px;}
.y68_c01345{bottom:1187.130000px;}
.y6a_c01345{bottom:1188.000000px;}
.y6d_c01345{bottom:1189.725000px;}
.y6c_c01345{bottom:1190.595000px;}
.y6e_c01345{bottom:1194.045000px;}
.y5e_c01345{bottom:1201.830000px;}
.y5d_c01345{bottom:1203.555000px;}
.y60_c01345{bottom:1204.410000px;}
.y5f_c01345{bottom:1205.280000px;}
.y63_c01345{bottom:1206.150000px;}
.y61_c01345{bottom:1207.005000px;}
.y62_c01345{bottom:1207.875000px;}
.y65_c01345{bottom:1208.730000px;}
.y64_c01345{bottom:1211.325000px;}
.y66_c01345{bottom:1212.195000px;}
.y52_c01345{bottom:1219.110000px;}
.y53_c01345{bottom:1219.965000px;}
.y54_c01345{bottom:1220.835000px;}
.y5b_c01345{bottom:1222.560000px;}
.y55_c01345{bottom:1223.430000px;}
.y56_c01345{bottom:1224.285000px;}
.y57_c01345{bottom:1225.155000px;}
.y5c_c01345{bottom:1226.010000px;}
.y5a_c01345{bottom:1226.880000px;}
.y58_c01345{bottom:1227.750000px;}
.y59_c01345{bottom:1228.605000px;}
.y4a_c01345{bottom:1234.650000px;}
.y47_c01345{bottom:1236.390000px;}
.y49_c01345{bottom:1238.115000px;}
.y48_c01345{bottom:1239.840000px;}
.y4b_c01345{bottom:1243.290000px;}
.y50_c01345{bottom:1244.160000px;}
.y4c_c01345{bottom:1245.030000px;}
.y51_c01345{bottom:1246.755000px;}
.y4d_c01345{bottom:1250.205000px;}
.y4f_c01345{bottom:1252.800000px;}
.y3f_c01345{bottom:1253.670000px;}
.y43_c01345{bottom:1257.120000px;}
.y41_c01345{bottom:1257.990000px;}
.y4e_c01345{bottom:1258.845000px;}
.y40_c01345{bottom:1259.715000px;}
.y42_c01345{bottom:1260.570000px;}
.y44_c01345{bottom:1261.440000px;}
.y45_c01345{bottom:1263.165000px;}
.y46_c01345{bottom:1264.890000px;}
.y36_c01345{bottom:1271.805000px;}
.y3a_c01345{bottom:1273.530000px;}
.y38_c01345{bottom:1274.400000px;}
.y37_c01345{bottom:1275.270000px;}
.y3d_c01345{bottom:1276.125000px;}
.y39_c01345{bottom:1276.995000px;}
.y3e_c01345{bottom:1278.720000px;}
.y3b_c01345{bottom:1279.590000px;}
.y3c_c01345{bottom:1280.445000px;}
.y2d_c01345{bottom:1290.810000px;}
.y30_c01345{bottom:1291.680000px;}
.y2e_c01345{bottom:1292.550000px;}
.y34_c01345{bottom:1293.405000px;}
.y2f_c01345{bottom:1295.130000px;}
.y31_c01345{bottom:1296.870000px;}
.y33_c01345{bottom:1297.725000px;}
.y32_c01345{bottom:1298.595000px;}
.y35_c01345{bottom:1300.320000px;}
.y22_c01345{bottom:1303.770000px;}
.y24_c01345{bottom:1306.365000px;}
.y21_c01345{bottom:1307.235000px;}
.y23_c01345{bottom:1308.090000px;}
.y29_c01345{bottom:1310.685000px;}
.y25_c01345{bottom:1311.555000px;}
.y28_c01345{bottom:1312.410000px;}
.y26_c01345{bottom:1313.280000px;}
.y27_c01345{bottom:1314.150000px;}
.y2a_c01345{bottom:1315.875000px;}
.y2b_c01345{bottom:1316.730000px;}
.y2c_c01345{bottom:1317.600000px;}
.y17_c01345{bottom:1325.370000px;}
.y18_c01345{bottom:1326.240000px;}
.y19_c01345{bottom:1327.110000px;}
.y1a_c01345{bottom:1327.965000px;}
.y1e_c01345{bottom:1328.835000px;}
.y1b_c01345{bottom:1329.690000px;}
.y1c_c01345{bottom:1330.560000px;}
.y16_c01345{bottom:1332.285000px;}
.y1d_c01345{bottom:1333.155000px;}
.y1f_c01345{bottom:1334.010000px;}
.y20_c01345{bottom:1334.880000px;}
.ye_c01345{bottom:1338.330000px;}
.y11_c01345{bottom:1341.795000px;}
.yf_c01345{bottom:1344.390000px;}
.y10_c01345{bottom:1345.245000px;}
.y12_c01345{bottom:1346.970000px;}
.y13_c01345{bottom:1348.710000px;}
.yd_c01345{bottom:1349.565000px;}
.y14_c01345{bottom:1350.435000px;}
.y15_c01345{bottom:1351.290000px;}
.y6_c01345{bottom:1356.480000px;}
.y7_c01345{bottom:1360.800000px;}
.y9_c01345{bottom:1362.525000px;}
.ya_c01345{bottom:1363.395000px;}
.yc_c01345{bottom:1365.990000px;}
.y8_c01345{bottom:1366.845000px;}
.yb_c01345{bottom:1367.715000px;}
.y2_c01345{bottom:1376.355000px;}
.y1_c01345{bottom:1378.080000px;}
.y5_c01345{bottom:1392.765000px;}
.y4_c01345{bottom:1393.635000px;}
.y3_c01345{bottom:1394.490000px;}
.h19_c01345{height:3.110063px;}
.h2_c01345{height:5.399414px;}
.h11_c01345{height:6.209326px;}
.h1d_c01345{height:9.340986px;}
.h12_c01345{height:12.418652px;}
.he_c01345{height:15.550313px;}
.h17_c01345{height:18.681973px;}
.h1c_c01345{height:21.759639px;}
.hf_c01345{height:24.891299px;}
.h3_c01345{height:27.968965px;}
.h15_c01345{height:31.100625px;}
.h13_c01345{height:34.232285px;}
.h10_c01345{height:37.309951px;}
.ha_c01345{height:40.441611px;}
.h8_c01345{height:43.519277px;}
.h1e_c01345{height:43.861611px;}
.hc_c01345{height:46.650937px;}
.h1f_c01345{height:46.999277px;}
.h18_c01345{height:47.341611px;}
.hd_c01345{height:49.782598px;}
.h4_c01345{height:52.860264px;}
.h7_c01345{height:55.991924px;}
.hb_c01345{height:59.069590px;}
.h6_c01345{height:62.201250px;}
.h16_c01345{height:65.332910px;}
.h5_c01345{height:68.410576px;}
.h9_c01345{height:71.542236px;}
.h1a_c01345{height:74.619902px;}
.h14_c01345{height:77.751563px;}
.h1b_c01345{height:80.883223px;}
.h20_c01345{height:83.960889px;}
.h1_c01345{height:1513.500000px;}
.h0_c01345{height:1513.725000px;}
.w0_c01345{width:1079.130000px;}
.w1_c01345{width:1079.250000px;}
.x0_c01345{left:0.000000px;}
.x1_c01345{left:126.150000px;}
.x2_c01345{left:134.790000px;}
.x23_c01345{left:239.325000px;}
.x8_c01345{left:241.920000px;}
.x87_c01345{left:244.515000px;}
.xd4_c01345{left:246.240000px;}
.xdd_c01345{left:247.965000px;}
.xbb_c01345{left:249.690000px;}
.xda_c01345{left:252.285000px;}
.xa8_c01345{left:254.880000px;}
.x12_c01345{left:259.200000px;}
.x5a_c01345{left:261.795000px;}
.x88_c01345{left:264.390000px;}
.x9e_c01345{left:266.970000px;}
.x38_c01345{left:269.565000px;}
.x90_c01345{left:271.290000px;}
.xca_c01345{left:273.030000px;}
.xc3_c01345{left:274.755000px;}
.xe0_c01345{left:276.480000px;}
.xd2_c01345{left:279.075000px;}
.x2f_c01345{left:280.800000px;}
.x24_c01345{left:287.715000px;}
.xd5_c01345{left:289.440000px;}
.xa9_c01345{left:293.760000px;}
.xbc_c01345{left:295.485000px;}
.x5b_c01345{left:297.210000px;}
.x66_c01345{left:298.950000px;}
.x6d_c01345{left:303.270000px;}
.x67_c01345{left:306.720000px;}
.xdb_c01345{left:311.040000px;}
.x4f_c01345{left:314.490000px;}
.x13_c01345{left:320.550000px;}
.x68_c01345{left:322.275000px;}
.x81_c01345{left:324.000000px;}
.x50_c01345{left:326.595000px;}
.xb7_c01345{left:329.190000px;}
.x82_c01345{left:330.915000px;}
.x97_c01345{left:332.640000px;}
.xd3_c01345{left:334.365000px;}
.x25_c01345{left:336.090000px;}
.x30_c01345{left:337.830000px;}
.xaa_c01345{left:339.555000px;}
.xd8_c01345{left:342.150000px;}
.xc9_c01345{left:344.730000px;}
.x72_c01345{left:348.195000px;}
.x26_c01345{left:349.920000px;}
.xa5_c01345{left:351.645000px;}
.x51_c01345{left:353.370000px;}
.x7b_c01345{left:355.110000px;}
.x14_c01345{left:357.690000px;}
.xdf_c01345{left:359.430000px;}
.x27_c01345{left:361.155000px;}
.x69_c01345{left:362.880000px;}
.x52_c01345{left:368.070000px;}
.x5c_c01345{left:369.795000px;}
.xcc_c01345{left:372.390000px;}
.x15_c01345{left:374.115000px;}
.xd9_c01345{left:375.840000px;}
.x28_c01345{left:377.565000px;}
.xc6_c01345{left:380.160000px;}
.x42_c01345{left:383.610000px;}
.xbd_c01345{left:387.930000px;}
.x43_c01345{left:393.120000px;}
.xb8_c01345{left:394.845000px;}
.x89_c01345{left:400.035000px;}
.xd6_c01345{left:404.355000px;}
.x9_c01345{left:406.080000px;}
.x39_c01345{left:408.675000px;}
.x16_c01345{left:410.400000px;}
.x53_c01345{left:412.125000px;}
.x29_c01345{left:414.720000px;}
.x5d_c01345{left:416.445000px;}
.xc4_c01345{left:419.040000px;}
.x91_c01345{left:420.765000px;}
.x31_c01345{left:423.360000px;}
.x6a_c01345{left:425.085000px;}
.x73_c01345{left:427.680000px;}
.xbe_c01345{left:429.405000px;}
.x2a_c01345{left:432.000000px;}
.xd1_c01345{left:438.045000px;}
.x98_c01345{left:439.770000px;}
.x2b_c01345{left:444.960000px;}
.xb0_c01345{left:447.555000px;}
.xc5_c01345{left:450.150000px;}
.x74_c01345{left:453.600000px;}
.x17_c01345{left:455.325000px;}
.x9f_c01345{left:459.645000px;}
.xab_c01345{left:461.370000px;}
.x7c_c01345{left:463.110000px;}
.xcf_c01345{left:464.835000px;}
.x54_c01345{left:467.430000px;}
.x7d_c01345{left:470.880000px;}
.x75_c01345{left:472.605000px;}
.xb3_c01345{left:475.200000px;}
.xcb_c01345{left:477.795000px;}
.xa_c01345{left:481.245000px;}
.x32_c01345{left:482.970000px;}
.xb1_c01345{left:484.710000px;}
.xcd_c01345{left:487.290000px;}
.x3a_c01345{left:489.030000px;}
.xac_c01345{left:490.755000px;}
.x3_c01345{left:494.205000px;}
.xbf_c01345{left:495.930000px;}
.xa0_c01345{left:498.525000px;}
.xd7_c01345{left:500.250000px;}
.xb4_c01345{left:501.990000px;}
.x83_c01345{left:503.715000px;}
.xc0_c01345{left:505.440000px;}
.x6e_c01345{left:507.165000px;}
.x18_c01345{left:509.760000px;}
.x4_c01345{left:513.210000px;}
.xc8_c01345{left:514.950000px;}
.x48_c01345{left:516.675000px;}
.xd0_c01345{left:518.400000px;}
.x55_c01345{left:522.720000px;}
.x6f_c01345{left:525.315000px;}
.xc7_c01345{left:527.910000px;}
.xad_c01345{left:529.635000px;}
.x3b_c01345{left:533.085000px;}
.x44_c01345{left:535.680000px;}
.x99_c01345{left:538.275000px;}
.xae_c01345{left:540.870000px;}
.x33_c01345{left:543.450000px;}
.x5_c01345{left:546.045000px;}
.xdc_c01345{left:547.770000px;}
.xde_c01345{left:549.510000px;}
.x9a_c01345{left:552.960000px;}
.xc1_c01345{left:556.410000px;}
.xce_c01345{left:558.150000px;}
.x104_c01345{left:559.875000px;}
.xc2_c01345{left:561.600000px;}
.x9b_c01345{left:565.050000px;}
.xa1_c01345{left:567.645000px;}
.xb_c01345{left:571.110000px;}
.x45_c01345{left:572.835000px;}
.x6_c01345{left:575.430000px;}
.xf0_c01345{left:578.010000px;}
.xf6_c01345{left:579.750000px;}
.x103_c01345{left:581.475000px;}
.x56_c01345{left:584.070000px;}
.xc_c01345{left:586.650000px;}
.x70_c01345{left:589.245000px;}
.x46_c01345{left:590.970000px;}
.x110_c01345{left:592.710000px;}
.x8a_c01345{left:595.290000px;}
.x19_c01345{left:599.610000px;}
.x7_c01345{left:602.205000px;}
.xee_c01345{left:603.930000px;}
.xff_c01345{left:606.525000px;}
.xb9_c01345{left:608.250000px;}
.xf7_c01345{left:614.310000px;}
.x1a_c01345{left:616.035000px;}
.x3c_c01345{left:618.630000px;}
.xb5_c01345{left:621.210000px;}
.x84_c01345{left:622.950000px;}
.x49_c01345{left:624.675000px;}
.x92_c01345{left:627.270000px;}
.x3d_c01345{left:628.995000px;}
.x10d_c01345{left:630.720000px;}
.x93_c01345{left:635.040000px;}
.x5e_c01345{left:636.765000px;}
.x2c_c01345{left:638.490000px;}
.xe7_c01345{left:641.085000px;}
.xd_c01345{left:642.810000px;}
.x1b_c01345{left:647.130000px;}
.xef_c01345{left:649.725000px;}
.x5f_c01345{left:652.320000px;}
.x1c_c01345{left:654.915000px;}
.x4a_c01345{left:657.510000px;}
.x7e_c01345{left:661.830000px;}
.x108_c01345{left:663.555000px;}
.x76_c01345{left:666.150000px;}
.x106_c01345{left:667.875000px;}
.x101_c01345{left:671.325000px;}
.x3e_c01345{left:674.790000px;}
.x8b_c01345{left:677.370000px;}
.xe_c01345{left:679.965000px;}
.x77_c01345{left:681.690000px;}
.x8c_c01345{left:684.285000px;}
.x4b_c01345{left:686.010000px;}
.xe1_c01345{left:687.750000px;}
.x111_c01345{left:689.475000px;}
.xa2_c01345{left:691.200000px;}
.x10b_c01345{left:693.795000px;}
.xe6_c01345{left:695.520000px;}
.x85_c01345{left:697.245000px;}
.x1d_c01345{left:700.710000px;}
.xf4_c01345{left:702.435000px;}
.x60_c01345{left:708.480000px;}
.x6b_c01345{left:710.205000px;}
.x61_c01345{left:712.800000px;}
.x57_c01345{left:714.525000px;}
.x47_c01345{left:716.250000px;}
.xf5_c01345{left:717.990000px;}
.xe2_c01345{left:719.715000px;}
.xe8_c01345{left:721.440000px;}
.x71_c01345{left:723.165000px;}
.x6c_c01345{left:725.760000px;}
.x1e_c01345{left:727.485000px;}
.x10a_c01345{left:729.210000px;}
.xf_c01345{left:730.950000px;}
.x109_c01345{left:732.675000px;}
.xa6_c01345{left:734.400000px;}
.x62_c01345{left:736.125000px;}
.xfb_c01345{left:737.850000px;}
.x86_c01345{left:742.170000px;}
.x105_c01345{left:743.910000px;}
.xe3_c01345{left:746.490000px;}
.x78_c01345{left:748.230000px;}
.xb2_c01345{left:749.955000px;}
.x1f_c01345{left:754.275000px;}
.xfc_c01345{left:756.000000px;}
.x8d_c01345{left:757.725000px;}
.x20_c01345{left:760.320000px;}
.xf8_c01345{left:762.915000px;}
.x34_c01345{left:764.640000px;}
.x58_c01345{left:766.365000px;}
.xe4_c01345{left:768.090000px;}
.x79_c01345{left:770.685000px;}
.x4c_c01345{left:772.410000px;}
.xe9_c01345{left:774.150000px;}
.x21_c01345{left:775.875000px;}
.x8e_c01345{left:777.600000px;}
.x35_c01345{left:780.195000px;}
.x9c_c01345{left:781.920000px;}
.xa3_c01345{left:785.370000px;}
.x63_c01345{left:787.110000px;}
.xe5_c01345{left:789.690000px;}
.x10_c01345{left:794.880000px;}
.xf9_c01345{left:796.605000px;}
.x10c_c01345{left:798.330000px;}
.xfd_c01345{left:800.070000px;}
.xaf_c01345{left:802.650000px;}
.xfa_c01345{left:804.390000px;}
.x64_c01345{left:806.115000px;}
.x2d_c01345{left:812.160000px;}
.x4d_c01345{left:814.755000px;}
.x102_c01345{left:816.480000px;}
.x11_c01345{left:818.205000px;}
.x36_c01345{left:822.525000px;}
.xa4_c01345{left:824.250000px;}
.x107_c01345{left:825.990000px;}
.x22_c01345{left:827.715000px;}
.xf1_c01345{left:829.440000px;}
.x4e_c01345{left:831.165000px;}
.xa7_c01345{left:833.760000px;}
.x3f_c01345{left:835.485000px;}
.x94_c01345{left:837.210000px;}
.x96_c01345{left:838.950000px;}
.xea_c01345{left:840.675000px;}
.x40_c01345{left:844.125000px;}
.x59_c01345{left:846.720000px;}
.x7f_c01345{left:848.445000px;}
.x65_c01345{left:850.170000px;}
.x37_c01345{left:852.765000px;}
.x8f_c01345{left:855.360000px;}
.xf2_c01345{left:857.955000px;}
.x7a_c01345{left:859.680000px;}
.xfe_c01345{left:862.275000px;}
.x2e_c01345{left:864.870000px;}
.x95_c01345{left:866.595000px;}
.x41_c01345{left:869.190000px;}
.x80_c01345{left:871.770000px;}
.xba_c01345{left:874.365000px;}
.xed_c01345{left:876.960000px;}
.x10e_c01345{left:879.555000px;}
.xf3_c01345{left:881.280000px;}
.x9d_c01345{left:883.005000px;}
.xeb_c01345{left:885.600000px;}
.xb6_c01345{left:889.050000px;}
.x100_c01345{left:893.370000px;}
.xec_c01345{left:895.965000px;}
.x10f_c01345{left:908.070000px;}
@media print{
.v3_c01345{vertical-align:-3.040000pt;}
.v0_c01345{vertical-align:0.000000pt;}
.v2_c01345{vertical-align:3.040000pt;}
.v1_c01345{vertical-align:6.133333pt;}
.ls1_c01345{letter-spacing:0.000000pt;}
.ls0_c01345{letter-spacing:24.938667pt;}
.ws0_c01345{word-spacing:-11.190933pt;}
.ws3_c01345{word-spacing:-10.175787pt;}
.ws2_c01345{word-spacing:-9.779947pt;}
.ws1_c01345{word-spacing:-7.457227pt;}
.ws4_c01345{word-spacing:0.000000pt;}
.fs16_c01345{font-size:3.072000pt;}
.fs0_c01345{font-size:5.333333pt;}
.fsf_c01345{font-size:6.133333pt;}
.fs1a_c01345{font-size:9.226667pt;}
.fs10_c01345{font-size:12.266667pt;}
.fsc_c01345{font-size:15.360000pt;}
.fs15_c01345{font-size:18.453333pt;}
.fs19_c01345{font-size:21.493333pt;}
.fsd_c01345{font-size:24.586667pt;}
.fs1_c01345{font-size:27.626667pt;}
.fs13_c01345{font-size:30.720000pt;}
.fs11_c01345{font-size:33.813333pt;}
.fse_c01345{font-size:36.853333pt;}
.fs8_c01345{font-size:39.946667pt;}
.fs6_c01345{font-size:42.986667pt;}
.fsa_c01345{font-size:46.080000pt;}
.fsb_c01345{font-size:49.173333pt;}
.fs2_c01345{font-size:52.213333pt;}
.fs5_c01345{font-size:55.306667pt;}
.fs9_c01345{font-size:58.346667pt;}
.fs4_c01345{font-size:61.440000pt;}
.fs14_c01345{font-size:64.533333pt;}
.fs3_c01345{font-size:67.573333pt;}
.fs7_c01345{font-size:70.666667pt;}
.fs17_c01345{font-size:73.706667pt;}
.fs12_c01345{font-size:76.800000pt;}
.fs18_c01345{font-size:79.893333pt;}
.fs1b_c01345{font-size:82.933333pt;}
.y0_c01345{bottom:0.000000pt;}
.y21d_c01345{bottom:163.586667pt;}
.y21c_c01345{bottom:165.893333pt;}
.y21b_c01345{bottom:177.413333pt;}
.y219_c01345{bottom:184.320000pt;}
.y216_c01345{bottom:193.533333pt;}
.y217_c01345{bottom:194.306667pt;}
.y218_c01345{bottom:197.373333pt;}
.y211_c01345{bottom:198.146667pt;}
.y21a_c01345{bottom:198.906667pt;}
.y212_c01345{bottom:199.680000pt;}
.y214_c01345{bottom:201.986667pt;}
.y213_c01345{bottom:203.520000pt;}
.y20e_c01345{bottom:211.973333pt;}
.y20d_c01345{bottom:212.733333pt;}
.y215_c01345{bottom:213.506667pt;}
.y210_c01345{bottom:215.813333pt;}
.y20f_c01345{bottom:220.413333pt;}
.y20a_c01345{bottom:227.333333pt;}
.y208_c01345{bottom:228.093333pt;}
.y209_c01345{bottom:228.866667pt;}
.y20b_c01345{bottom:233.466667pt;}
.y20c_c01345{bottom:235.773333pt;}
.y207_c01345{bottom:236.546667pt;}
.y204_c01345{bottom:248.066667pt;}
.y206_c01345{bottom:250.373333pt;}
.y203_c01345{bottom:252.666667pt;}
.y202_c01345{bottom:253.440000pt;}
.y205_c01345{bottom:257.280000pt;}
.y1fe_c01345{bottom:261.893333pt;}
.y1ff_c01345{bottom:262.653333pt;}
.y1fd_c01345{bottom:263.426667pt;}
.y200_c01345{bottom:265.733333pt;}
.y201_c01345{bottom:271.106667pt;}
.y1f9_c01345{bottom:277.253333pt;}
.y1f7_c01345{bottom:278.013333pt;}
.y1fa_c01345{bottom:279.546667pt;}
.y1f8_c01345{bottom:280.320000pt;}
.y1fc_c01345{bottom:282.626667pt;}
.y1fb_c01345{bottom:284.160000pt;}
.y1f1_c01345{bottom:295.680000pt;}
.y1f2_c01345{bottom:296.453333pt;}
.y1f3_c01345{bottom:297.986667pt;}
.y1f5_c01345{bottom:298.746667pt;}
.y1f4_c01345{bottom:299.520000pt;}
.y1f6_c01345{bottom:301.826667pt;}
.y1ed_c01345{bottom:311.813333pt;}
.y1ee_c01345{bottom:312.573333pt;}
.y1ef_c01345{bottom:314.106667pt;}
.y1f0_c01345{bottom:314.880000pt;}
.y1e8_c01345{bottom:323.333333pt;}
.y1e9_c01345{bottom:325.626667pt;}
.y1ea_c01345{bottom:327.933333pt;}
.y1eb_c01345{bottom:328.706667pt;}
.y1ec_c01345{bottom:329.466667pt;}
.y1e3_c01345{bottom:339.453333pt;}
.y1e4_c01345{bottom:340.226667pt;}
.y1e5_c01345{bottom:344.826667pt;}
.y1e6_c01345{bottom:345.600000pt;}
.y1e7_c01345{bottom:346.373333pt;}
.y1de_c01345{bottom:358.653333pt;}
.y1df_c01345{bottom:359.426667pt;}
.y1e0_c01345{bottom:360.186667pt;}
.y1e2_c01345{bottom:360.960000pt;}
.y1dd_c01345{bottom:361.733333pt;}
.y1e1_c01345{bottom:362.493333pt;}
.y1d9_c01345{bottom:371.706667pt;}
.y1db_c01345{bottom:372.480000pt;}
.y1d7_c01345{bottom:373.253333pt;}
.y1d8_c01345{bottom:374.786667pt;}
.y1da_c01345{bottom:375.546667pt;}
.y1dc_c01345{bottom:377.093333pt;}
.y1d6_c01345{bottom:384.000000pt;}
.y1d0_c01345{bottom:385.533333pt;}
.y1d1_c01345{bottom:388.613333pt;}
.y1d3_c01345{bottom:390.146667pt;}
.y1d2_c01345{bottom:390.906667pt;}
.y1d4_c01345{bottom:391.680000pt;}
.y1d5_c01345{bottom:392.453333pt;}
.y1cb_c01345{bottom:402.426667pt;}
.y1cd_c01345{bottom:404.733333pt;}
.y1cc_c01345{bottom:405.506667pt;}
.y1ce_c01345{bottom:406.266667pt;}
.y1cf_c01345{bottom:407.813333pt;}
.y1c8_c01345{bottom:414.720000pt;}
.y1c9_c01345{bottom:416.253333pt;}
.y1c6_c01345{bottom:417.786667pt;}
.y1c5_c01345{bottom:419.333333pt;}
.y1c4_c01345{bottom:420.866667pt;}
.y1ca_c01345{bottom:421.626667pt;}
.y1c7_c01345{bottom:425.466667pt;}
.y1c1_c01345{bottom:432.386667pt;}
.y1c2_c01345{bottom:433.146667pt;}
.y1c0_c01345{bottom:434.693333pt;}
.y1c3_c01345{bottom:435.453333pt;}
.y1ba_c01345{bottom:447.746667pt;}
.y1bb_c01345{bottom:448.506667pt;}
.y1b9_c01345{bottom:449.280000pt;}
.y1be_c01345{bottom:450.813333pt;}
.y1bf_c01345{bottom:451.586667pt;}
.y1bc_c01345{bottom:452.346667pt;}
.y1bd_c01345{bottom:453.120000pt;}
.y1b8_c01345{bottom:459.266667pt;}
.y1b6_c01345{bottom:483.840000pt;}
.y1b7_c01345{bottom:484.613333pt;}
.y1b2_c01345{bottom:498.426667pt;}
.y1b4_c01345{bottom:499.973333pt;}
.y1b5_c01345{bottom:500.733333pt;}
.y1b3_c01345{bottom:505.346667pt;}
.y1ae_c01345{bottom:509.946667pt;}
.y1af_c01345{bottom:511.493333pt;}
.y16d_c01345{bottom:512.253333pt;}
.y16f_c01345{bottom:513.026667pt;}
.y16e_c01345{bottom:513.786667pt;}
.y1b0_c01345{bottom:515.333333pt;}
.y1b1_c01345{bottom:516.866667pt;}
.y16b_c01345{bottom:524.546667pt;}
.y1a9_c01345{bottom:526.080000pt;}
.y16c_c01345{bottom:526.853333pt;}
.y1ac_c01345{bottom:528.386667pt;}
.y1a8_c01345{bottom:530.693333pt;}
.y1aa_c01345{bottom:531.453333pt;}
.y1ab_c01345{bottom:532.226667pt;}
.y1ad_c01345{bottom:536.826667pt;}
.y168_c01345{bottom:539.906667pt;}
.y167_c01345{bottom:540.666667pt;}
.y165_c01345{bottom:542.213333pt;}
.y1a6_c01345{bottom:543.746667pt;}
.y166_c01345{bottom:544.506667pt;}
.y169_c01345{bottom:545.280000pt;}
.y1a7_c01345{bottom:546.053333pt;}
.y1a4_c01345{bottom:546.813333pt;}
.y16a_c01345{bottom:547.586667pt;}
.y1a5_c01345{bottom:548.346667pt;}
.y164_c01345{bottom:549.893333pt;}
.y15d_c01345{bottom:556.026667pt;}
.y15c_c01345{bottom:558.333333pt;}
.y15e_c01345{bottom:559.106667pt;}
.y15f_c01345{bottom:559.866667pt;}
.y162_c01345{bottom:560.640000pt;}
.y163_c01345{bottom:561.413333pt;}
.y1a1_c01345{bottom:562.173333pt;}
.y1a2_c01345{bottom:563.706667pt;}
.y1a3_c01345{bottom:564.480000pt;}
.y160_c01345{bottom:565.253333pt;}
.y156_c01345{bottom:568.320000pt;}
.y155_c01345{bottom:569.093333pt;}
.y161_c01345{bottom:569.853333pt;}
.y157_c01345{bottom:570.626667pt;}
.y15a_c01345{bottom:571.386667pt;}
.y15b_c01345{bottom:572.160000pt;}
.y158_c01345{bottom:573.693333pt;}
.y19d_c01345{bottom:575.226667pt;}
.y159_c01345{bottom:576.000000pt;}
.y19f_c01345{bottom:576.773333pt;}
.y19e_c01345{bottom:577.533333pt;}
.y1a0_c01345{bottom:579.840000pt;}
.y150_c01345{bottom:585.213333pt;}
.y153_c01345{bottom:585.986667pt;}
.y14f_c01345{bottom:587.520000pt;}
.y198_c01345{bottom:588.293333pt;}
.y151_c01345{bottom:589.053333pt;}
.y152_c01345{bottom:589.826667pt;}
.y19a_c01345{bottom:590.586667pt;}
.y154_c01345{bottom:591.360000pt;}
.y199_c01345{bottom:592.893333pt;}
.y19b_c01345{bottom:594.426667pt;}
.y19c_c01345{bottom:595.200000pt;}
.y14a_c01345{bottom:600.573333pt;}
.y14c_c01345{bottom:604.413333pt;}
.y14b_c01345{bottom:605.946667pt;}
.y14e_c01345{bottom:606.720000pt;}
.y14d_c01345{bottom:607.493333pt;}
.y145_c01345{bottom:615.933333pt;}
.y149_c01345{bottom:617.466667pt;}
.y147_c01345{bottom:619.773333pt;}
.y146_c01345{bottom:620.546667pt;}
.y148_c01345{bottom:621.306667pt;}
.y144_c01345{bottom:622.080000pt;}
.y194_c01345{bottom:623.613333pt;}
.y196_c01345{bottom:624.386667pt;}
.y195_c01345{bottom:625.146667pt;}
.y197_c01345{bottom:625.920000pt;}
.y143_c01345{bottom:635.133333pt;}
.y140_c01345{bottom:650.493333pt;}
.y13e_c01345{bottom:651.266667pt;}
.y13f_c01345{bottom:652.026667pt;}
.y141_c01345{bottom:653.573333pt;}
.y142_c01345{bottom:654.333333pt;}
.y192_c01345{bottom:655.106667pt;}
.y193_c01345{bottom:656.640000pt;}
.y13a_c01345{bottom:662.013333pt;}
.y13b_c01345{bottom:662.786667pt;}
.y13c_c01345{bottom:667.386667pt;}
.y13d_c01345{bottom:669.693333pt;}
.y18e_c01345{bottom:670.466667pt;}
.y18f_c01345{bottom:671.226667pt;}
.y190_c01345{bottom:672.000000pt;}
.y191_c01345{bottom:672.773333pt;}
.y135_c01345{bottom:678.146667pt;}
.y137_c01345{bottom:679.680000pt;}
.y18a_c01345{bottom:681.213333pt;}
.y134_c01345{bottom:681.986667pt;}
.y136_c01345{bottom:682.746667pt;}
.y139_c01345{bottom:683.520000pt;}
.y138_c01345{bottom:684.293333pt;}
.y18b_c01345{bottom:685.826667pt;}
.y18c_c01345{bottom:687.360000pt;}
.y18d_c01345{bottom:688.133333pt;}
.y12f_c01345{bottom:695.813333pt;}
.y130_c01345{bottom:696.573333pt;}
.y131_c01345{bottom:697.346667pt;}
.y132_c01345{bottom:698.880000pt;}
.y133_c01345{bottom:701.186667pt;}
.y129_c01345{bottom:708.866667pt;}
.y128_c01345{bottom:710.400000pt;}
.y12b_c01345{bottom:711.933333pt;}
.y12a_c01345{bottom:713.466667pt;}
.y12c_c01345{bottom:715.013333pt;}
.y12d_c01345{bottom:716.546667pt;}
.y12e_c01345{bottom:718.853333pt;}
.y122_c01345{bottom:727.293333pt;}
.y126_c01345{bottom:728.066667pt;}
.y123_c01345{bottom:728.826667pt;}
.y124_c01345{bottom:730.373333pt;}
.y127_c01345{bottom:731.133333pt;}
.y125_c01345{bottom:732.666667pt;}
.y11e_c01345{bottom:739.586667pt;}
.y11d_c01345{bottom:741.120000pt;}
.y11b_c01345{bottom:741.893333pt;}
.y11c_c01345{bottom:743.426667pt;}
.y11f_c01345{bottom:744.960000pt;}
.y120_c01345{bottom:745.733333pt;}
.y186_c01345{bottom:746.493333pt;}
.y121_c01345{bottom:747.266667pt;}
.y187_c01345{bottom:748.026667pt;}
.y189_c01345{bottom:751.106667pt;}
.y188_c01345{bottom:753.413333pt;}
.y117_c01345{bottom:756.480000pt;}
.y119_c01345{bottom:758.786667pt;}
.y184_c01345{bottom:761.093333pt;}
.y11a_c01345{bottom:762.626667pt;}
.y116_c01345{bottom:763.386667pt;}
.y183_c01345{bottom:764.160000pt;}
.y185_c01345{bottom:766.466667pt;}
.y115_c01345{bottom:767.226667pt;}
.y111_c01345{bottom:768.773333pt;}
.y118_c01345{bottom:770.306667pt;}
.y112_c01345{bottom:771.066667pt;}
.y182_c01345{bottom:772.613333pt;}
.y110_c01345{bottom:773.373333pt;}
.y114_c01345{bottom:775.680000pt;}
.y17e_c01345{bottom:776.453333pt;}
.y113_c01345{bottom:777.213333pt;}
.y17f_c01345{bottom:777.986667pt;}
.y17b_c01345{bottom:778.746667pt;}
.y17c_c01345{bottom:780.293333pt;}
.y17d_c01345{bottom:781.053333pt;}
.y180_c01345{bottom:782.586667pt;}
.y181_c01345{bottom:783.360000pt;}
.y10a_c01345{bottom:784.893333pt;}
.y10e_c01345{bottom:787.200000pt;}
.y10b_c01345{bottom:789.506667pt;}
.y10c_c01345{bottom:791.040000pt;}
.y177_c01345{bottom:792.573333pt;}
.y10f_c01345{bottom:793.346667pt;}
.y10d_c01345{bottom:794.106667pt;}
.y176_c01345{bottom:794.880000pt;}
.y178_c01345{bottom:797.186667pt;}
.y179_c01345{bottom:797.946667pt;}
.y109_c01345{bottom:800.253333pt;}
.y17a_c01345{bottom:801.026667pt;}
.y106_c01345{bottom:804.093333pt;}
.y103_c01345{bottom:804.866667pt;}
.y104_c01345{bottom:806.400000pt;}
.y105_c01345{bottom:807.933333pt;}
.y107_c01345{bottom:808.706667pt;}
.y108_c01345{bottom:809.466667pt;}
.y175_c01345{bottom:811.013333pt;}
.y174_c01345{bottom:812.546667pt;}
.yff_c01345{bottom:818.693333pt;}
.yfd_c01345{bottom:820.226667pt;}
.yfe_c01345{bottom:820.986667pt;}
.y102_c01345{bottom:822.533333pt;}
.y100_c01345{bottom:823.293333pt;}
.y101_c01345{bottom:824.066667pt;}
.y170_c01345{bottom:826.373333pt;}
.y172_c01345{bottom:827.133333pt;}
.y171_c01345{bottom:827.906667pt;}
.yf6_c01345{bottom:832.506667pt;}
.yf5_c01345{bottom:836.346667pt;}
.yf8_c01345{bottom:837.120000pt;}
.yf7_c01345{bottom:837.893333pt;}
.yf4_c01345{bottom:840.186667pt;}
.yf9_c01345{bottom:840.960000pt;}
.y173_c01345{bottom:841.733333pt;}
.yfb_c01345{bottom:845.573333pt;}
.yfc_c01345{bottom:847.106667pt;}
.yfa_c01345{bottom:850.173333pt;}
.yec_c01345{bottom:850.946667pt;}
.yed_c01345{bottom:851.706667pt;}
.yef_c01345{bottom:852.480000pt;}
.yee_c01345{bottom:854.786667pt;}
.yf1_c01345{bottom:857.093333pt;}
.yf2_c01345{bottom:857.853333pt;}
.yf3_c01345{bottom:860.160000pt;}
.yf0_c01345{bottom:861.693333pt;}
.ye4_c01345{bottom:863.226667pt;}
.ye3_c01345{bottom:865.533333pt;}
.ye2_c01345{bottom:866.306667pt;}
.ye5_c01345{bottom:867.066667pt;}
.ye6_c01345{bottom:868.613333pt;}
.ye7_c01345{bottom:870.906667pt;}
.ye9_c01345{bottom:871.680000pt;}
.ye8_c01345{bottom:872.453333pt;}
.yea_c01345{bottom:873.986667pt;}
.yeb_c01345{bottom:875.520000pt;}
.yd7_c01345{bottom:877.053333pt;}
.ydb_c01345{bottom:879.360000pt;}
.yd9_c01345{bottom:880.133333pt;}
.yd6_c01345{bottom:881.666667pt;}
.ydd_c01345{bottom:882.426667pt;}
.yd8_c01345{bottom:883.200000pt;}
.yde_c01345{bottom:883.973333pt;}
.ydf_c01345{bottom:884.733333pt;}
.ydc_c01345{bottom:886.266667pt;}
.ye1_c01345{bottom:889.346667pt;}
.ye0_c01345{bottom:890.106667pt;}
.ycd_c01345{bottom:895.493333pt;}
.yda_c01345{bottom:896.253333pt;}
.yce_c01345{bottom:897.026667pt;}
.ycc_c01345{bottom:897.786667pt;}
.ycf_c01345{bottom:898.560000pt;}
.yd0_c01345{bottom:899.333333pt;}
.yd5_c01345{bottom:900.866667pt;}
.ycb_c01345{bottom:901.626667pt;}
.yd1_c01345{bottom:902.400000pt;}
.yd2_c01345{bottom:903.173333pt;}
.yd4_c01345{bottom:904.706667pt;}
.yd3_c01345{bottom:905.466667pt;}
.yc3_c01345{bottom:909.306667pt;}
.yc6_c01345{bottom:912.386667pt;}
.yc4_c01345{bottom:913.920000pt;}
.yc5_c01345{bottom:914.693333pt;}
.yc7_c01345{bottom:915.453333pt;}
.yc2_c01345{bottom:916.226667pt;}
.yc8_c01345{bottom:917.760000pt;}
.yca_c01345{bottom:918.533333pt;}
.yc9_c01345{bottom:919.293333pt;}
.yb8_c01345{bottom:926.213333pt;}
.yb6_c01345{bottom:927.746667pt;}
.yba_c01345{bottom:928.506667pt;}
.yb7_c01345{bottom:929.280000pt;}
.yb9_c01345{bottom:931.586667pt;}
.ybc_c01345{bottom:932.346667pt;}
.ybd_c01345{bottom:933.893333pt;}
.ybf_c01345{bottom:934.653333pt;}
.ybe_c01345{bottom:935.426667pt;}
.yc0_c01345{bottom:936.186667pt;}
.yc1_c01345{bottom:936.960000pt;}
.ybb_c01345{bottom:938.493333pt;}
.ya8_c01345{bottom:940.800000pt;}
.yaa_c01345{bottom:943.106667pt;}
.ya6_c01345{bottom:943.866667pt;}
.ya7_c01345{bottom:944.640000pt;}
.ya9_c01345{bottom:946.173333pt;}
.yb0_c01345{bottom:946.946667pt;}
.yb2_c01345{bottom:947.706667pt;}
.yac_c01345{bottom:948.480000pt;}
.yad_c01345{bottom:949.253333pt;}
.yb1_c01345{bottom:950.786667pt;}
.yb4_c01345{bottom:951.546667pt;}
.yb3_c01345{bottom:952.320000pt;}
.yab_c01345{bottom:954.626667pt;}
.yb5_c01345{bottom:956.160000pt;}
.yae_c01345{bottom:959.226667pt;}
.ya0_c01345{bottom:960.000000pt;}
.y9f_c01345{bottom:960.773333pt;}
.yaf_c01345{bottom:961.533333pt;}
.ya2_c01345{bottom:966.146667pt;}
.ya4_c01345{bottom:966.906667pt;}
.ya5_c01345{bottom:967.680000pt;}
.ya3_c01345{bottom:968.453333pt;}
.ya1_c01345{bottom:971.520000pt;}
.y96_c01345{bottom:973.826667pt;}
.y94_c01345{bottom:974.586667pt;}
.y95_c01345{bottom:976.133333pt;}
.y9b_c01345{bottom:977.666667pt;}
.y9a_c01345{bottom:978.426667pt;}
.y99_c01345{bottom:979.200000pt;}
.y97_c01345{bottom:979.973333pt;}
.y9d_c01345{bottom:980.733333pt;}
.y98_c01345{bottom:981.506667pt;}
.y9c_c01345{bottom:983.040000pt;}
.y9e_c01345{bottom:983.813333pt;}
.y89_c01345{bottom:989.946667pt;}
.y8a_c01345{bottom:991.493333pt;}
.y8b_c01345{bottom:992.253333pt;}
.y8d_c01345{bottom:993.026667pt;}
.y8c_c01345{bottom:993.786667pt;}
.y8f_c01345{bottom:995.333333pt;}
.y8e_c01345{bottom:996.093333pt;}
.y90_c01345{bottom:996.866667pt;}
.y91_c01345{bottom:997.626667pt;}
.y92_c01345{bottom:998.400000pt;}
.y93_c01345{bottom:999.173333pt;}
.y81_c01345{bottom:1006.080000pt;}
.y82_c01345{bottom:1006.853333pt;}
.y80_c01345{bottom:1007.613333pt;}
.y85_c01345{bottom:1009.146667pt;}
.y83_c01345{bottom:1009.920000pt;}
.y84_c01345{bottom:1012.226667pt;}
.y86_c01345{bottom:1012.986667pt;}
.y88_c01345{bottom:1013.760000pt;}
.y87_c01345{bottom:1014.533333pt;}
.y77_c01345{bottom:1019.906667pt;}
.y7b_c01345{bottom:1022.213333pt;}
.y76_c01345{bottom:1022.973333pt;}
.y78_c01345{bottom:1023.746667pt;}
.y7a_c01345{bottom:1024.506667pt;}
.y79_c01345{bottom:1025.280000pt;}
.y7c_c01345{bottom:1028.346667pt;}
.y7e_c01345{bottom:1029.120000pt;}
.y7f_c01345{bottom:1029.893333pt;}
.y70_c01345{bottom:1036.026667pt;}
.y7d_c01345{bottom:1036.800000pt;}
.y6f_c01345{bottom:1038.333333pt;}
.y71_c01345{bottom:1039.866667pt;}
.y72_c01345{bottom:1042.173333pt;}
.y73_c01345{bottom:1045.253333pt;}
.y75_c01345{bottom:1046.013333pt;}
.y74_c01345{bottom:1046.786667pt;}
.y67_c01345{bottom:1049.093333pt;}
.y6b_c01345{bottom:1052.933333pt;}
.y69_c01345{bottom:1054.466667pt;}
.y68_c01345{bottom:1055.226667pt;}
.y6a_c01345{bottom:1056.000000pt;}
.y6d_c01345{bottom:1057.533333pt;}
.y6c_c01345{bottom:1058.306667pt;}
.y6e_c01345{bottom:1061.373333pt;}
.y5e_c01345{bottom:1068.293333pt;}
.y5d_c01345{bottom:1069.826667pt;}
.y60_c01345{bottom:1070.586667pt;}
.y5f_c01345{bottom:1071.360000pt;}
.y63_c01345{bottom:1072.133333pt;}
.y61_c01345{bottom:1072.893333pt;}
.y62_c01345{bottom:1073.666667pt;}
.y65_c01345{bottom:1074.426667pt;}
.y64_c01345{bottom:1076.733333pt;}
.y66_c01345{bottom:1077.506667pt;}
.y52_c01345{bottom:1083.653333pt;}
.y53_c01345{bottom:1084.413333pt;}
.y54_c01345{bottom:1085.186667pt;}
.y5b_c01345{bottom:1086.720000pt;}
.y55_c01345{bottom:1087.493333pt;}
.y56_c01345{bottom:1088.253333pt;}
.y57_c01345{bottom:1089.026667pt;}
.y5c_c01345{bottom:1089.786667pt;}
.y5a_c01345{bottom:1090.560000pt;}
.y58_c01345{bottom:1091.333333pt;}
.y59_c01345{bottom:1092.093333pt;}
.y4a_c01345{bottom:1097.466667pt;}
.y47_c01345{bottom:1099.013333pt;}
.y49_c01345{bottom:1100.546667pt;}
.y48_c01345{bottom:1102.080000pt;}
.y4b_c01345{bottom:1105.146667pt;}
.y50_c01345{bottom:1105.920000pt;}
.y4c_c01345{bottom:1106.693333pt;}
.y51_c01345{bottom:1108.226667pt;}
.y4d_c01345{bottom:1111.293333pt;}
.y4f_c01345{bottom:1113.600000pt;}
.y3f_c01345{bottom:1114.373333pt;}
.y43_c01345{bottom:1117.440000pt;}
.y41_c01345{bottom:1118.213333pt;}
.y4e_c01345{bottom:1118.973333pt;}
.y40_c01345{bottom:1119.746667pt;}
.y42_c01345{bottom:1120.506667pt;}
.y44_c01345{bottom:1121.280000pt;}
.y45_c01345{bottom:1122.813333pt;}
.y46_c01345{bottom:1124.346667pt;}
.y36_c01345{bottom:1130.493333pt;}
.y3a_c01345{bottom:1132.026667pt;}
.y38_c01345{bottom:1132.800000pt;}
.y37_c01345{bottom:1133.573333pt;}
.y3d_c01345{bottom:1134.333333pt;}
.y39_c01345{bottom:1135.106667pt;}
.y3e_c01345{bottom:1136.640000pt;}
.y3b_c01345{bottom:1137.413333pt;}
.y3c_c01345{bottom:1138.173333pt;}
.y2d_c01345{bottom:1147.386667pt;}
.y30_c01345{bottom:1148.160000pt;}
.y2e_c01345{bottom:1148.933333pt;}
.y34_c01345{bottom:1149.693333pt;}
.y2f_c01345{bottom:1151.226667pt;}
.y31_c01345{bottom:1152.773333pt;}
.y33_c01345{bottom:1153.533333pt;}
.y32_c01345{bottom:1154.306667pt;}
.y35_c01345{bottom:1155.840000pt;}
.y22_c01345{bottom:1158.906667pt;}
.y24_c01345{bottom:1161.213333pt;}
.y21_c01345{bottom:1161.986667pt;}
.y23_c01345{bottom:1162.746667pt;}
.y29_c01345{bottom:1165.053333pt;}
.y25_c01345{bottom:1165.826667pt;}
.y28_c01345{bottom:1166.586667pt;}
.y26_c01345{bottom:1167.360000pt;}
.y27_c01345{bottom:1168.133333pt;}
.y2a_c01345{bottom:1169.666667pt;}
.y2b_c01345{bottom:1170.426667pt;}
.y2c_c01345{bottom:1171.200000pt;}
.y17_c01345{bottom:1178.106667pt;}
.y18_c01345{bottom:1178.880000pt;}
.y19_c01345{bottom:1179.653333pt;}
.y1a_c01345{bottom:1180.413333pt;}
.y1e_c01345{bottom:1181.186667pt;}
.y1b_c01345{bottom:1181.946667pt;}
.y1c_c01345{bottom:1182.720000pt;}
.y16_c01345{bottom:1184.253333pt;}
.y1d_c01345{bottom:1185.026667pt;}
.y1f_c01345{bottom:1185.786667pt;}
.y20_c01345{bottom:1186.560000pt;}
.ye_c01345{bottom:1189.626667pt;}
.y11_c01345{bottom:1192.706667pt;}
.yf_c01345{bottom:1195.013333pt;}
.y10_c01345{bottom:1195.773333pt;}
.y12_c01345{bottom:1197.306667pt;}
.y13_c01345{bottom:1198.853333pt;}
.yd_c01345{bottom:1199.613333pt;}
.y14_c01345{bottom:1200.386667pt;}
.y15_c01345{bottom:1201.146667pt;}
.y6_c01345{bottom:1205.760000pt;}
.y7_c01345{bottom:1209.600000pt;}
.y9_c01345{bottom:1211.133333pt;}
.ya_c01345{bottom:1211.906667pt;}
.yc_c01345{bottom:1214.213333pt;}
.y8_c01345{bottom:1214.973333pt;}
.yb_c01345{bottom:1215.746667pt;}
.y2_c01345{bottom:1223.426667pt;}
.y1_c01345{bottom:1224.960000pt;}
.y5_c01345{bottom:1238.013333pt;}
.y4_c01345{bottom:1238.786667pt;}
.y3_c01345{bottom:1239.546667pt;}
.h19_c01345{height:2.764500pt;}
.h2_c01345{height:4.799479pt;}
.h11_c01345{height:5.519401pt;}
.h1d_c01345{height:8.303099pt;}
.h12_c01345{height:11.038802pt;}
.he_c01345{height:13.822500pt;}
.h17_c01345{height:16.606198pt;}
.h1c_c01345{height:19.341901pt;}
.hf_c01345{height:22.125599pt;}
.h3_c01345{height:24.861302pt;}
.h15_c01345{height:27.645000pt;}
.h13_c01345{height:30.428698pt;}
.h10_c01345{height:33.164401pt;}
.ha_c01345{height:35.948099pt;}
.h8_c01345{height:38.683802pt;}
.h1e_c01345{height:38.988099pt;}
.hc_c01345{height:41.467500pt;}
.h1f_c01345{height:41.777135pt;}
.h18_c01345{height:42.081432pt;}
.hd_c01345{height:44.251198pt;}
.h4_c01345{height:46.986901pt;}
.h7_c01345{height:49.770599pt;}
.hb_c01345{height:52.506302pt;}
.h6_c01345{height:55.290000pt;}
.h16_c01345{height:58.073698pt;}
.h5_c01345{height:60.809401pt;}
.h9_c01345{height:63.593099pt;}
.h1a_c01345{height:66.328802pt;}
.h14_c01345{height:69.112500pt;}
.h1b_c01345{height:71.896198pt;}
.h20_c01345{height:74.631901pt;}
.h1_c01345{height:1345.333333pt;}
.h0_c01345{height:1345.533333pt;}
.w0_c01345{width:959.226667pt;}
.w1_c01345{width:959.333333pt;}
.x0_c01345{left:0.000000pt;}
.x1_c01345{left:112.133333pt;}
.x2_c01345{left:119.813333pt;}
.x23_c01345{left:212.733333pt;}
.x8_c01345{left:215.040000pt;}
.x87_c01345{left:217.346667pt;}
.xd4_c01345{left:218.880000pt;}
.xdd_c01345{left:220.413333pt;}
.xbb_c01345{left:221.946667pt;}
.xda_c01345{left:224.253333pt;}
.xa8_c01345{left:226.560000pt;}
.x12_c01345{left:230.400000pt;}
.x5a_c01345{left:232.706667pt;}
.x88_c01345{left:235.013333pt;}
.x9e_c01345{left:237.306667pt;}
.x38_c01345{left:239.613333pt;}
.x90_c01345{left:241.146667pt;}
.xca_c01345{left:242.693333pt;}
.xc3_c01345{left:244.226667pt;}
.xe0_c01345{left:245.760000pt;}
.xd2_c01345{left:248.066667pt;}
.x2f_c01345{left:249.600000pt;}
.x24_c01345{left:255.746667pt;}
.xd5_c01345{left:257.280000pt;}
.xa9_c01345{left:261.120000pt;}
.xbc_c01345{left:262.653333pt;}
.x5b_c01345{left:264.186667pt;}
.x66_c01345{left:265.733333pt;}
.x6d_c01345{left:269.573333pt;}
.x67_c01345{left:272.640000pt;}
.xdb_c01345{left:276.480000pt;}
.x4f_c01345{left:279.546667pt;}
.x13_c01345{left:284.933333pt;}
.x68_c01345{left:286.466667pt;}
.x81_c01345{left:288.000000pt;}
.x50_c01345{left:290.306667pt;}
.xb7_c01345{left:292.613333pt;}
.x82_c01345{left:294.146667pt;}
.x97_c01345{left:295.680000pt;}
.xd3_c01345{left:297.213333pt;}
.x25_c01345{left:298.746667pt;}
.x30_c01345{left:300.293333pt;}
.xaa_c01345{left:301.826667pt;}
.xd8_c01345{left:304.133333pt;}
.xc9_c01345{left:306.426667pt;}
.x72_c01345{left:309.506667pt;}
.x26_c01345{left:311.040000pt;}
.xa5_c01345{left:312.573333pt;}
.x51_c01345{left:314.106667pt;}
.x7b_c01345{left:315.653333pt;}
.x14_c01345{left:317.946667pt;}
.xdf_c01345{left:319.493333pt;}
.x27_c01345{left:321.026667pt;}
.x69_c01345{left:322.560000pt;}
.x52_c01345{left:327.173333pt;}
.x5c_c01345{left:328.706667pt;}
.xcc_c01345{left:331.013333pt;}
.x15_c01345{left:332.546667pt;}
.xd9_c01345{left:334.080000pt;}
.x28_c01345{left:335.613333pt;}
.xc6_c01345{left:337.920000pt;}
.x42_c01345{left:340.986667pt;}
.xbd_c01345{left:344.826667pt;}
.x43_c01345{left:349.440000pt;}
.xb8_c01345{left:350.973333pt;}
.x89_c01345{left:355.586667pt;}
.xd6_c01345{left:359.426667pt;}
.x9_c01345{left:360.960000pt;}
.x39_c01345{left:363.266667pt;}
.x16_c01345{left:364.800000pt;}
.x53_c01345{left:366.333333pt;}
.x29_c01345{left:368.640000pt;}
.x5d_c01345{left:370.173333pt;}
.xc4_c01345{left:372.480000pt;}
.x91_c01345{left:374.013333pt;}
.x31_c01345{left:376.320000pt;}
.x6a_c01345{left:377.853333pt;}
.x73_c01345{left:380.160000pt;}
.xbe_c01345{left:381.693333pt;}
.x2a_c01345{left:384.000000pt;}
.xd1_c01345{left:389.373333pt;}
.x98_c01345{left:390.906667pt;}
.x2b_c01345{left:395.520000pt;}
.xb0_c01345{left:397.826667pt;}
.xc5_c01345{left:400.133333pt;}
.x74_c01345{left:403.200000pt;}
.x17_c01345{left:404.733333pt;}
.x9f_c01345{left:408.573333pt;}
.xab_c01345{left:410.106667pt;}
.x7c_c01345{left:411.653333pt;}
.xcf_c01345{left:413.186667pt;}
.x54_c01345{left:415.493333pt;}
.x7d_c01345{left:418.560000pt;}
.x75_c01345{left:420.093333pt;}
.xb3_c01345{left:422.400000pt;}
.xcb_c01345{left:424.706667pt;}
.xa_c01345{left:427.773333pt;}
.x32_c01345{left:429.306667pt;}
.xb1_c01345{left:430.853333pt;}
.xcd_c01345{left:433.146667pt;}
.x3a_c01345{left:434.693333pt;}
.xac_c01345{left:436.226667pt;}
.x3_c01345{left:439.293333pt;}
.xbf_c01345{left:440.826667pt;}
.xa0_c01345{left:443.133333pt;}
.xd7_c01345{left:444.666667pt;}
.xb4_c01345{left:446.213333pt;}
.x83_c01345{left:447.746667pt;}
.xc0_c01345{left:449.280000pt;}
.x6e_c01345{left:450.813333pt;}
.x18_c01345{left:453.120000pt;}
.x4_c01345{left:456.186667pt;}
.xc8_c01345{left:457.733333pt;}
.x48_c01345{left:459.266667pt;}
.xd0_c01345{left:460.800000pt;}
.x55_c01345{left:464.640000pt;}
.x6f_c01345{left:466.946667pt;}
.xc7_c01345{left:469.253333pt;}
.xad_c01345{left:470.786667pt;}
.x3b_c01345{left:473.853333pt;}
.x44_c01345{left:476.160000pt;}
.x99_c01345{left:478.466667pt;}
.xae_c01345{left:480.773333pt;}
.x33_c01345{left:483.066667pt;}
.x5_c01345{left:485.373333pt;}
.xdc_c01345{left:486.906667pt;}
.xde_c01345{left:488.453333pt;}
.x9a_c01345{left:491.520000pt;}
.xc1_c01345{left:494.586667pt;}
.xce_c01345{left:496.133333pt;}
.x104_c01345{left:497.666667pt;}
.xc2_c01345{left:499.200000pt;}
.x9b_c01345{left:502.266667pt;}
.xa1_c01345{left:504.573333pt;}
.xb_c01345{left:507.653333pt;}
.x45_c01345{left:509.186667pt;}
.x6_c01345{left:511.493333pt;}
.xf0_c01345{left:513.786667pt;}
.xf6_c01345{left:515.333333pt;}
.x103_c01345{left:516.866667pt;}
.x56_c01345{left:519.173333pt;}
.xc_c01345{left:521.466667pt;}
.x70_c01345{left:523.773333pt;}
.x46_c01345{left:525.306667pt;}
.x110_c01345{left:526.853333pt;}
.x8a_c01345{left:529.146667pt;}
.x19_c01345{left:532.986667pt;}
.x7_c01345{left:535.293333pt;}
.xee_c01345{left:536.826667pt;}
.xff_c01345{left:539.133333pt;}
.xb9_c01345{left:540.666667pt;}
.xf7_c01345{left:546.053333pt;}
.x1a_c01345{left:547.586667pt;}
.x3c_c01345{left:549.893333pt;}
.xb5_c01345{left:552.186667pt;}
.x84_c01345{left:553.733333pt;}
.x49_c01345{left:555.266667pt;}
.x92_c01345{left:557.573333pt;}
.x3d_c01345{left:559.106667pt;}
.x10d_c01345{left:560.640000pt;}
.x93_c01345{left:564.480000pt;}
.x5e_c01345{left:566.013333pt;}
.x2c_c01345{left:567.546667pt;}
.xe7_c01345{left:569.853333pt;}
.xd_c01345{left:571.386667pt;}
.x1b_c01345{left:575.226667pt;}
.xef_c01345{left:577.533333pt;}
.x5f_c01345{left:579.840000pt;}
.x1c_c01345{left:582.146667pt;}
.x4a_c01345{left:584.453333pt;}
.x7e_c01345{left:588.293333pt;}
.x108_c01345{left:589.826667pt;}
.x76_c01345{left:592.133333pt;}
.x106_c01345{left:593.666667pt;}
.x101_c01345{left:596.733333pt;}
.x3e_c01345{left:599.813333pt;}
.x8b_c01345{left:602.106667pt;}
.xe_c01345{left:604.413333pt;}
.x77_c01345{left:605.946667pt;}
.x8c_c01345{left:608.253333pt;}
.x4b_c01345{left:609.786667pt;}
.xe1_c01345{left:611.333333pt;}
.x111_c01345{left:612.866667pt;}
.xa2_c01345{left:614.400000pt;}
.x10b_c01345{left:616.706667pt;}
.xe6_c01345{left:618.240000pt;}
.x85_c01345{left:619.773333pt;}
.x1d_c01345{left:622.853333pt;}
.xf4_c01345{left:624.386667pt;}
.x60_c01345{left:629.760000pt;}
.x6b_c01345{left:631.293333pt;}
.x61_c01345{left:633.600000pt;}
.x57_c01345{left:635.133333pt;}
.x47_c01345{left:636.666667pt;}
.xf5_c01345{left:638.213333pt;}
.xe2_c01345{left:639.746667pt;}
.xe8_c01345{left:641.280000pt;}
.x71_c01345{left:642.813333pt;}
.x6c_c01345{left:645.120000pt;}
.x1e_c01345{left:646.653333pt;}
.x10a_c01345{left:648.186667pt;}
.xf_c01345{left:649.733333pt;}
.x109_c01345{left:651.266667pt;}
.xa6_c01345{left:652.800000pt;}
.x62_c01345{left:654.333333pt;}
.xfb_c01345{left:655.866667pt;}
.x86_c01345{left:659.706667pt;}
.x105_c01345{left:661.253333pt;}
.xe3_c01345{left:663.546667pt;}
.x78_c01345{left:665.093333pt;}
.xb2_c01345{left:666.626667pt;}
.x1f_c01345{left:670.466667pt;}
.xfc_c01345{left:672.000000pt;}
.x8d_c01345{left:673.533333pt;}
.x20_c01345{left:675.840000pt;}
.xf8_c01345{left:678.146667pt;}
.x34_c01345{left:679.680000pt;}
.x58_c01345{left:681.213333pt;}
.xe4_c01345{left:682.746667pt;}
.x79_c01345{left:685.053333pt;}
.x4c_c01345{left:686.586667pt;}
.xe9_c01345{left:688.133333pt;}
.x21_c01345{left:689.666667pt;}
.x8e_c01345{left:691.200000pt;}
.x35_c01345{left:693.506667pt;}
.x9c_c01345{left:695.040000pt;}
.xa3_c01345{left:698.106667pt;}
.x63_c01345{left:699.653333pt;}
.xe5_c01345{left:701.946667pt;}
.x10_c01345{left:706.560000pt;}
.xf9_c01345{left:708.093333pt;}
.x10c_c01345{left:709.626667pt;}
.xfd_c01345{left:711.173333pt;}
.xaf_c01345{left:713.466667pt;}
.xfa_c01345{left:715.013333pt;}
.x64_c01345{left:716.546667pt;}
.x2d_c01345{left:721.920000pt;}
.x4d_c01345{left:724.226667pt;}
.x102_c01345{left:725.760000pt;}
.x11_c01345{left:727.293333pt;}
.x36_c01345{left:731.133333pt;}
.xa4_c01345{left:732.666667pt;}
.x107_c01345{left:734.213333pt;}
.x22_c01345{left:735.746667pt;}
.xf1_c01345{left:737.280000pt;}
.x4e_c01345{left:738.813333pt;}
.xa7_c01345{left:741.120000pt;}
.x3f_c01345{left:742.653333pt;}
.x94_c01345{left:744.186667pt;}
.x96_c01345{left:745.733333pt;}
.xea_c01345{left:747.266667pt;}
.x40_c01345{left:750.333333pt;}
.x59_c01345{left:752.640000pt;}
.x7f_c01345{left:754.173333pt;}
.x65_c01345{left:755.706667pt;}
.x37_c01345{left:758.013333pt;}
.x8f_c01345{left:760.320000pt;}
.xf2_c01345{left:762.626667pt;}
.x7a_c01345{left:764.160000pt;}
.xfe_c01345{left:766.466667pt;}
.x2e_c01345{left:768.773333pt;}
.x95_c01345{left:770.306667pt;}
.x41_c01345{left:772.613333pt;}
.x80_c01345{left:774.906667pt;}
.xba_c01345{left:777.213333pt;}
.xed_c01345{left:779.520000pt;}
.x10e_c01345{left:781.826667pt;}
.xf3_c01345{left:783.360000pt;}
.x9d_c01345{left:784.893333pt;}
.xeb_c01345{left:787.200000pt;}
.xb6_c01345{left:790.266667pt;}
.x100_c01345{left:794.106667pt;}
.xec_c01345{left:796.413333pt;}
.x10f_c01345{left:807.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cbc8f1f4f0b5c6ae06288602.woff2')format("woff");}.ff1_c01346{font-family:ff1_c01346;line-height:1.109863;font-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_c01346{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m189_c01346{transform:matrix(0.046275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046275,0.000000,0.000000,0.250000,0,0);}
.m18b_c01346{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m18c_c01346{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m8b_c01346{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m137_c01346{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.me8_c01346{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m117_c01346{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.m4a_c01346{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.mbc_c01346{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.md6_c01346{transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120500,0.000000,0.000000,0.250000,0,0);}
.m42_c01346{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m12c_c01346{transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125625,0.000000,0.000000,0.250000,0,0);}
.m3a_c01346{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m14f_c01346{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);}
.me7_c01346{transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132475,0.000000,0.000000,0.250000,0,0);}
.m9d_c01346{transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);}
.m4_c01346{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m105_c01346{transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136600,0.000000,0.000000,0.250000,0,0);}
.ma_c01346{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);}
.m182_c01346{transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140650,0.000000,0.000000,0.250000,0,0);}
.mc7_c01346{transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140850,0.000000,0.000000,0.250000,0,0);}
.m17d_c01346{transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142125,0.000000,0.000000,0.250000,0,0);}
.me1_c01346{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);}
.m15_c01346{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mab_c01346{transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144250,0.000000,0.000000,0.250000,0,0);}
.m14_c01346{transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145825,0.000000,0.000000,0.250000,0,0);}
.md5_c01346{transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147775,0.000000,0.000000,0.250000,0,0);}
.m11f_c01346{transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148425,0.000000,0.000000,0.250000,0,0);}
.m11e_c01346{transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149075,0.000000,0.000000,0.250000,0,0);}
.mf1_c01346{transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149700,0.000000,0.000000,0.250000,0,0);}
.mc2_c01346{transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151925,0.000000,0.000000,0.250000,0,0);}
.m63_c01346{transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);}
.mac_c01346{transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152575,0.000000,0.000000,0.250000,0,0);}
.m185_c01346{transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156125,0.000000,0.000000,0.250000,0,0);}
.m187_c01346{transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156575,0.000000,0.000000,0.250000,0,0);}
.m18a_c01346{transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157500,0.000000,0.000000,0.250000,0,0);}
.m138_c01346{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m165_c01346{transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158875,0.000000,0.000000,0.250000,0,0);}
.m99_c01346{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.mae_c01346{transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161450,0.000000,0.000000,0.250000,0,0);}
.m1c_c01346{transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161700,0.000000,0.000000,0.250000,0,0);}
.m60_c01346{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m67_c01346{transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164575,0.000000,0.000000,0.250000,0,0);}
.m27_c01346{transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166125,0.000000,0.000000,0.250000,0,0);}
.m19_c01346{transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);}
.m178_c01346{transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166275,0.000000,0.000000,0.250000,0,0);}
.m14d_c01346{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);}
.mf0_c01346{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m140_c01346{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);}
.mce_c01346{transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168825,0.000000,0.000000,0.250000,0,0);}
.m38_c01346{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.ma0_c01346{transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170825,0.000000,0.000000,0.250000,0,0);}
.m154_c01346{transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172375,0.000000,0.000000,0.250000,0,0);}
.m168_c01346{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m6b_c01346{transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174150,0.000000,0.000000,0.250000,0,0);}
.m33_c01346{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);}
.m10f_c01346{transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175800,0.000000,0.000000,0.250000,0,0);}
.mc6_c01346{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);}
.m179_c01346{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.m128_c01346{transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);}
.m166_c01346{transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177625,0.000000,0.000000,0.250000,0,0);}
.mad_c01346{transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178525,0.000000,0.000000,0.250000,0,0);}
.m62_c01346{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m6f_c01346{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m57_c01346{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.m80_c01346{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);}
.m13c_c01346{transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180300,0.000000,0.000000,0.250000,0,0);}
.m72_c01346{transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181150,0.000000,0.000000,0.250000,0,0);}
.m180_c01346{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m108_c01346{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m12b_c01346{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);}
.m158_c01346{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);}
.m120_c01346{transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183075,0.000000,0.000000,0.250000,0,0);}
.m176_c01346{transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183200,0.000000,0.000000,0.250000,0,0);}
.me6_c01346{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);}
.m7b_c01346{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);}
.m161_c01346{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m16b_c01346{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);}
.m122_c01346{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m11c_c01346{transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185250,0.000000,0.000000,0.250000,0,0);}
.m113_c01346{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m73_c01346{transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185750,0.000000,0.000000,0.250000,0,0);}
.m111_c01346{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);}
.m10e_c01346{transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186650,0.000000,0.000000,0.250000,0,0);}
.m96_c01346{transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);}
.m101_c01346{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);}
.m148_c01346{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);}
.mea_c01346{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);}
.m183_c01346{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);}
.mfc_c01346{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);}
.m152_c01346{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.m4f_c01346{transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);}
.mba_c01346{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);}
.m104_c01346{transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);}
.m8_c01346{transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189850,0.000000,0.000000,0.250000,0,0);}
.m13f_c01346{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m112_c01346{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.me3_c01346{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);}
.mfa_c01346{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m1e_c01346{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);}
.m74_c01346{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);}
.m16e_c01346{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.m16c_c01346{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);}
.mbf_c01346{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.m170_c01346{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.m12f_c01346{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m3d_c01346{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m16d_c01346{transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192950,0.000000,0.000000,0.250000,0,0);}
.mb6_c01346{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.me9_c01346{transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193250,0.000000,0.000000,0.250000,0,0);}
.m83_c01346{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);}
.m12e_c01346{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.m139_c01346{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.mc5_c01346{transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193850,0.000000,0.000000,0.250000,0,0);}
.ma1_c01346{transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193925,0.000000,0.000000,0.250000,0,0);}
.m87_c01346{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m11a_c01346{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);}
.m8a_c01346{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.mca_c01346{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m157_c01346{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);}
.m78_c01346{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);}
.m171_c01346{transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195225,0.000000,0.000000,0.250000,0,0);}
.m45_c01346{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.mf4_c01346{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);}
.m28_c01346{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);}
.m174_c01346{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m162_c01346{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.mc_c01346{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);}
.mec_c01346{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.mfe_c01346{transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);}
.m32_c01346{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.me0_c01346{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);}
.m14e_c01346{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.m69_c01346{transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200275,0.000000,0.000000,0.250000,0,0);}
.mb1_c01346{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);}
.md3_c01346{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.mb7_c01346{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m159_c01346{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);}
.m16a_c01346{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.m15f_c01346{transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202475,0.000000,0.000000,0.250000,0,0);}
.m175_c01346{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);}
.m52_c01346{transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);}
.m102_c01346{transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203850,0.000000,0.000000,0.250000,0,0);}
.m124_c01346{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mf3_c01346{transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204225,0.000000,0.000000,0.250000,0,0);}
.m48_c01346{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);}
.m15c_c01346{transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204300,0.000000,0.000000,0.250000,0,0);}
.ma3_c01346{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mc9_c01346{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m127_c01346{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.m153_c01346{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);}
.mb8_c01346{transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205650,0.000000,0.000000,0.250000,0,0);}
.m160_c01346{transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205875,0.000000,0.000000,0.250000,0,0);}
.m17b_c01346{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);}
.m136_c01346{transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206550,0.000000,0.000000,0.250000,0,0);}
.m85_c01346{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);}
.m17e_c01346{transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206800,0.000000,0.000000,0.250000,0,0);}
.m10c_c01346{transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);}
.mcd_c01346{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);}
.m141_c01346{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);}
.mf9_c01346{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);}
.m79_c01346{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.mbd_c01346{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m155_c01346{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.m167_c01346{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);}
.mfd_c01346{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);}
.m12d_c01346{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);}
.m118_c01346{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m10b_c01346{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);}
.m13d_c01346{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);}
.m145_c01346{transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210350,0.000000,0.000000,0.250000,0,0);}
.m15b_c01346{transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210725,0.000000,0.000000,0.250000,0,0);}
.mda_c01346{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);}
.mb3_c01346{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m75_c01346{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);}
.m20_c01346{transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);}
.mde_c01346{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);}
.m7a_c01346{transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213700,0.000000,0.000000,0.250000,0,0);}
.mef_c01346{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);}
.mb9_c01346{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);}
.m91_c01346{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);}
.mff_c01346{transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);}
.m15d_c01346{transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);}
.m173_c01346{transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214950,0.000000,0.000000,0.250000,0,0);}
.m13b_c01346{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.mbb_c01346{transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215575,0.000000,0.000000,0.250000,0,0);}
.m7e_c01346{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);}
.ma4_c01346{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);}
.m150_c01346{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.m5e_c01346{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.ma2_c01346{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m51_c01346{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);}
.m94_c01346{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);}
.m14c_c01346{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m156_c01346{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m93_c01346{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);}
.mc8_c01346{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);}
.m3c_c01346{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);}
.m13a_c01346{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.m10d_c01346{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);}
.md7_c01346{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.mcf_c01346{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m53_c01346{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.m58_c01346{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m125_c01346{transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);}
.m115_c01346{transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);}
.m31_c01346{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.meb_c01346{transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222750,0.000000,0.000000,0.250000,0,0);}
.m14a_c01346{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);}
.mee_c01346{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);}
.m11d_c01346{transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223125,0.000000,0.000000,0.250000,0,0);}
.m147_c01346{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);}
.mb5_c01346{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);}
.m16f_c01346{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);}
.m81_c01346{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m30_c01346{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);}
.me_c01346{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.md2_c01346{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m6a_c01346{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);}
.m0_c01346{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);}
.m177_c01346{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.m134_c01346{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.md8_c01346{transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225850,0.000000,0.000000,0.250000,0,0);}
.m9e_c01346{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);}
.m133_c01346{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);}
.m17_c01346{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.mdc_c01346{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m181_c01346{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);}
.ma7_c01346{transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);}
.m17f_c01346{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m114_c01346{transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);}
.m22_c01346{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.mbe_c01346{transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228975,0.000000,0.000000,0.250000,0,0);}
.m3e_c01346{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);}
.m11b_c01346{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mb_c01346{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.m7f_c01346{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);}
.m116_c01346{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);}
.m121_c01346{transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231025,0.000000,0.000000,0.250000,0,0);}
.me5_c01346{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.mdb_c01346{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.m18_c01346{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);}
.m186_c01346{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);}
.m15a_c01346{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);}
.m172_c01346{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);}
.m8d_c01346{transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234125,0.000000,0.000000,0.250000,0,0);}
.m64_c01346{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);}
.m131_c01346{transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234925,0.000000,0.000000,0.250000,0,0);}
.ma6_c01346{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);}
.m119_c01346{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);}
.mf2_c01346{transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235775,0.000000,0.000000,0.250000,0,0);}
.m132_c01346{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);}
.m142_c01346{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.m17a_c01346{transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237475,0.000000,0.000000,0.250000,0,0);}
.m164_c01346{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);}
.m3b_c01346{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);}
.m163_c01346{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);}
.md9_c01346{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m103_c01346{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.m84_c01346{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.mb2_c01346{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);}
.ma5_c01346{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);}
.m61_c01346{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);}
.m123_c01346{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);}
.med_c01346{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m146_c01346{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);}
.m6d_c01346{transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241425,0.000000,0.000000,0.250000,0,0);}
.m37_c01346{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m135_c01346{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);}
.m17c_c01346{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m49_c01346{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);}
.m184_c01346{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);}
.m100_c01346{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.m8f_c01346{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);}
.mf8_c01346{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);}
.m9_c01346{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.m7_c01346{transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246925,0.000000,0.000000,0.250000,0,0);}
.md4_c01346{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.maa_c01346{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);}
.m95_c01346{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m8e_c01346{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m14b_c01346{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);}
.md_c01346{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);}
.m5c_c01346{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);}
.maf_c01346{transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249125,0.000000,0.000000,0.250000,0,0);}
.m90_c01346{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);}
.m65_c01346{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m44_c01346{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.m1b_c01346{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);}
.m89_c01346{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m40_c01346{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);}
.m50_c01346{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);}
.m5_c01346{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);}
.m12_c01346{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);}
.m36_c01346{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m82_c01346{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m86_c01346{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m56_c01346{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);}
.m26_c01346{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01346{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);}
.m23_c01346{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);}
.m43_c01346{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m24_c01346{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_c01346{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m55_c01346{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m66_c01346{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);}
.m21_c01346{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01346{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);}
.m3f_c01346{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);}
.m1d_c01346{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01346{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01346{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);}
.m1f_c01346{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01346{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.ma8_c01346{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);}
.m10_c01346{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.me2_c01346{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m35_c01346{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m109_c01346{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.md0_c01346{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01346{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m25_c01346{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m10a_c01346{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m88_c01346{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);}
.m2e_c01346{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01346{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m47_c01346{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m59_c01346{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m34_c01346{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);}
.m4d_c01346{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);}
.mf_c01346{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mb0_c01346{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m98_c01346{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);}
.m5a_c01346{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01346{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01346{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);}
.mfb_c01346{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m54_c01346{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m9c_c01346{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);}
.mdd_c01346{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m46_c01346{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m92_c01346{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);}
.mb4_c01346{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m16_c01346{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m76_c01346{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mf5_c01346{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7d_c01346{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m6_c01346{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m97_c01346{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.mc0_c01346{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);}
.m13e_c01346{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);}
.m6c_c01346{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m15e_c01346{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.me4_c01346{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);}
.m2b_c01346{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m70_c01346{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m29_c01346{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01346{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.ma9_c01346{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m41_c01346{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.mc3_c01346{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m77_c01346{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);}
.mf7_c01346{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01346{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.mcb_c01346{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m39_c01346{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m149_c01346{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);}
.m9a_c01346{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);}
.m151_c01346{transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.520000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01346{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m2_c01346{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mf6_c01346{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m106_c01346{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);}
.m110_c01346{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m130_c01346{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01346{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m144_c01346{transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.592500,0.000000,0.000000,0.250000,0,0);}
.m9f_c01346{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01346{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m12a_c01346{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m68_c01346{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m9b_c01346{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m13_c01346{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m11_c01346{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);}
.m126_c01346{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);}
.m143_c01346{transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.807500,0.000000,0.000000,0.250000,0,0);}
.m169_c01346{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.mc1_c01346{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m107_c01346{transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.930000,0.000000,0.000000,0.250000,0,0);}
.m188_c01346{transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.050000,0.000000,0.000000,0.250000,0,0);}
.m129_c01346{transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);}
.mdf_c01346{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.md1_c01346{transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.250000,0.000000,0.000000,0.250000,0,0);}
.mcc_c01346{transform:matrix(3.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.225000,0.000000,0.000000,0.250000,0,0);}
.mc4_c01346{transform:matrix(3.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.792500,0.000000,0.000000,0.250000,0,0);}
.m71_c01346{transform:matrix(6.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.780000,0.000000,0.000000,0.250000,0,0);}
.v3_c01346{vertical-align:-27.660000px;}
.v4_c01346{vertical-align:-6.900000px;}
.v2_c01346{vertical-align:-3.480000px;}
.v0_c01346{vertical-align:0.000000px;}
.v1_c01346{vertical-align:3.480000px;}
.ls4_c01346{letter-spacing:0.000000px;}
.ls0_c01346{letter-spacing:23.439840px;}
.ls3_c01346{letter-spacing:64.130700px;}
.ls1_c01346{letter-spacing:68.174688px;}
.ls2_c01346{letter-spacing:274.386000px;}
.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;}
}
.ws5_c01346{word-spacing:-17.678820px;}
.ws3_c01346{word-spacing:-14.445600px;}
.ws7_c01346{word-spacing:-12.890880px;}
.ws1_c01346{word-spacing:-8.950320px;}
.ws4_c01346{word-spacing:-7.698480px;}
.ws8_c01346{word-spacing:-7.653417px;}
.ws0_c01346{word-spacing:-5.687520px;}
.ws2_c01346{word-spacing:-3.823680px;}
.ws9_c01346{word-spacing:0.000000px;}
.ws6_c01346{word-spacing:16.151940px;}
.fc0_c01346{color:transparent;}
.fs1_c01346{font-size:3.456000px;}
.fs17_c01346{font-size:6.000000px;}
.fsb_c01346{font-size:6.900000px;}
.fs14_c01346{font-size:10.380000px;}
.fs12_c01346{font-size:13.800000px;}
.fs2_c01346{font-size:17.280000px;}
.fs19_c01346{font-size:20.760000px;}
.fs18_c01346{font-size:24.180000px;}
.fs13_c01346{font-size:27.660000px;}
.fs10_c01346{font-size:31.080000px;}
.fs0_c01346{font-size:34.560000px;}
.fs11_c01346{font-size:38.040000px;}
.fsa_c01346{font-size:41.460000px;}
.fs6_c01346{font-size:44.940000px;}
.fsf_c01346{font-size:48.360000px;}
.fs5_c01346{font-size:51.840000px;}
.fs3_c01346{font-size:55.320000px;}
.fs9_c01346{font-size:58.740000px;}
.fsd_c01346{font-size:62.220000px;}
.fs7_c01346{font-size:65.640000px;}
.fs8_c01346{font-size:69.120000px;}
.fsc_c01346{font-size:72.600000px;}
.fs1a_c01346{font-size:76.020000px;}
.fse_c01346{font-size:79.500000px;}
.fs15_c01346{font-size:82.920000px;}
.fs16_c01346{font-size:86.400000px;}
.fs1b_c01346{font-size:89.880000px;}
.fs4_c01346{font-size:93.300000px;}
.fs1d_c01346{font-size:103.680000px;}
.fs1e_c01346{font-size:193.560000px;}
.fs1c_c01346{font-size:269.580000px;}
.y0_c01346{bottom:0.000000px;}
.y29b_c01346{bottom:218.595000px;}
.y29a_c01346{bottom:219.450000px;}
.y297_c01346{bottom:221.190000px;}
.y299_c01346{bottom:225.510000px;}
.y298_c01346{bottom:226.365000px;}
.y296_c01346{bottom:233.280000px;}
.y29c_c01346{bottom:234.150000px;}
.y295_c01346{bottom:235.875000px;}
.y294_c01346{bottom:237.600000px;}
.y293_c01346{bottom:238.470000px;}
.y292_c01346{bottom:239.325000px;}
.y290_c01346{bottom:240.195000px;}
.y291_c01346{bottom:241.920000px;}
.y28f_c01346{bottom:246.240000px;}
.y28d_c01346{bottom:247.965000px;}
.y28a_c01346{bottom:251.430000px;}
.y28e_c01346{bottom:252.285000px;}
.y28b_c01346{bottom:253.155000px;}
.y28c_c01346{bottom:254.010000px;}
.y287_c01346{bottom:254.880000px;}
.y289_c01346{bottom:257.475000px;}
.y286_c01346{bottom:258.330000px;}
.y288_c01346{bottom:260.070000px;}
.y284_c01346{bottom:266.970000px;}
.y283_c01346{bottom:268.710000px;}
.y285_c01346{bottom:270.435000px;}
.y281_c01346{bottom:271.290000px;}
.y280_c01346{bottom:272.160000px;}
.y282_c01346{bottom:273.885000px;}
.y27d_c01346{bottom:274.755000px;}
.y27c_c01346{bottom:276.480000px;}
.y27f_c01346{bottom:278.205000px;}
.y27e_c01346{bottom:279.930000px;}
.y27b_c01346{bottom:286.845000px;}
.y279_c01346{bottom:289.440000px;}
.y277_c01346{bottom:291.165000px;}
.y27a_c01346{bottom:292.035000px;}
.y278_c01346{bottom:294.630000px;}
.y276_c01346{bottom:298.080000px;}
.y274_c01346{bottom:302.400000px;}
.y273_c01346{bottom:304.995000px;}
.y275_c01346{bottom:306.720000px;}
.y272_c01346{bottom:308.445000px;}
.y26e_c01346{bottom:309.315000px;}
.y26f_c01346{bottom:310.170000px;}
.y270_c01346{bottom:312.765000px;}
.y26d_c01346{bottom:316.230000px;}
.y26c_c01346{bottom:317.955000px;}
.y26b_c01346{bottom:320.550000px;}
.y26a_c01346{bottom:321.405000px;}
.y271_c01346{bottom:323.130000px;}
.y269_c01346{bottom:324.870000px;}
.y268_c01346{bottom:328.320000px;}
.y263_c01346{bottom:329.190000px;}
.y265_c01346{bottom:330.045000px;}
.y267_c01346{bottom:330.915000px;}
.y262_c01346{bottom:331.770000px;}
.y266_c01346{bottom:332.640000px;}
.y264_c01346{bottom:333.510000px;}
.y261_c01346{bottom:337.830000px;}
.y260_c01346{bottom:338.685000px;}
.y25f_c01346{bottom:342.150000px;}
.y25c_c01346{bottom:344.730000px;}
.y25e_c01346{bottom:345.600000px;}
.y257_c01346{bottom:346.470000px;}
.y25d_c01346{bottom:347.325000px;}
.y259_c01346{bottom:348.195000px;}
.y25b_c01346{bottom:349.920000px;}
.y25a_c01346{bottom:350.790000px;}
.y258_c01346{bottom:351.645000px;}
.y256_c01346{bottom:355.110000px;}
.y255_c01346{bottom:361.155000px;}
.y250_c01346{bottom:362.880000px;}
.y24f_c01346{bottom:363.750000px;}
.y253_c01346{bottom:364.605000px;}
.y252_c01346{bottom:365.475000px;}
.y251_c01346{bottom:367.200000px;}
.y254_c01346{bottom:370.650000px;}
.y24e_c01346{bottom:374.115000px;}
.y24c_c01346{bottom:375.840000px;}
.y24a_c01346{bottom:376.710000px;}
.y24d_c01346{bottom:377.565000px;}
.y248_c01346{bottom:379.290000px;}
.y24b_c01346{bottom:380.160000px;}
.y247_c01346{bottom:381.030000px;}
.y249_c01346{bottom:381.885000px;}
.y244_c01346{bottom:382.755000px;}
.y245_c01346{bottom:383.610000px;}
.y246_c01346{bottom:384.480000px;}
.y243_c01346{bottom:385.350000px;}
.y242_c01346{bottom:387.075000px;}
.y241_c01346{bottom:388.800000px;}
.y23e_c01346{bottom:393.990000px;}
.y240_c01346{bottom:394.845000px;}
.y23f_c01346{bottom:395.715000px;}
.y23d_c01346{bottom:398.310000px;}
.y23b_c01346{bottom:404.355000px;}
.y23c_c01346{bottom:405.210000px;}
.y23a_c01346{bottom:407.805000px;}
.y239_c01346{bottom:408.675000px;}
.y238_c01346{bottom:412.125000px;}
.y236_c01346{bottom:412.995000px;}
.y234_c01346{bottom:415.590000px;}
.y237_c01346{bottom:416.445000px;}
.y233_c01346{bottom:417.315000px;}
.y231_c01346{bottom:418.170000px;}
.y235_c01346{bottom:419.910000px;}
.y230_c01346{bottom:421.635000px;}
.y232_c01346{bottom:422.490000px;}
.y22c_c01346{bottom:434.595000px;}
.y22a_c01346{bottom:435.450000px;}
.y22e_c01346{bottom:436.320000px;}
.y229_c01346{bottom:437.190000px;}
.y22b_c01346{bottom:438.045000px;}
.y227_c01346{bottom:440.640000px;}
.y228_c01346{bottom:441.510000px;}
.y226_c01346{bottom:442.365000px;}
.y22f_c01346{bottom:443.235000px;}
.y225_c01346{bottom:445.830000px;}
.y22d_c01346{bottom:447.555000px;}
.y223_c01346{bottom:450.150000px;}
.y224_c01346{bottom:451.005000px;}
.y221_c01346{bottom:451.875000px;}
.y220_c01346{bottom:452.730000px;}
.y222_c01346{bottom:453.600000px;}
.y21d_c01346{bottom:454.470000px;}
.y21f_c01346{bottom:455.325000px;}
.y21e_c01346{bottom:458.790000px;}
.y21c_c01346{bottom:463.110000px;}
.y21a_c01346{bottom:463.965000px;}
.y219_c01346{bottom:464.835000px;}
.y21b_c01346{bottom:465.690000px;}
.y215_c01346{bottom:468.285000px;}
.y218_c01346{bottom:469.155000px;}
.y213_c01346{bottom:470.880000px;}
.y216_c01346{bottom:471.750000px;}
.y217_c01346{bottom:473.475000px;}
.y214_c01346{bottom:474.330000px;}
.y212_c01346{bottom:482.970000px;}
.y20f_c01346{bottom:483.840000px;}
.y20e_c01346{bottom:484.710000px;}
.y211_c01346{bottom:485.565000px;}
.y210_c01346{bottom:487.290000px;}
.y20a_c01346{bottom:488.160000px;}
.y208_c01346{bottom:489.030000px;}
.y20c_c01346{bottom:489.885000px;}
.y20b_c01346{bottom:491.610000px;}
.y20d_c01346{bottom:498.525000px;}
.y207_c01346{bottom:501.120000px;}
.y209_c01346{bottom:501.990000px;}
.y206_c01346{bottom:502.845000px;}
.y205_c01346{bottom:503.715000px;}
.y203_c01346{bottom:504.570000px;}
.y204_c01346{bottom:505.440000px;}
.y1ff_c01346{bottom:506.310000px;}
.y202_c01346{bottom:507.165000px;}
.y201_c01346{bottom:508.035000px;}
.y200_c01346{bottom:509.760000px;}
.y1fe_c01346{bottom:510.630000px;}
.y1fd_c01346{bottom:511.485000px;}
.y1fc_c01346{bottom:515.805000px;}
.y1fa_c01346{bottom:517.530000px;}
.y1f9_c01346{bottom:519.270000px;}
.y1f6_c01346{bottom:520.125000px;}
.y1f5_c01346{bottom:520.995000px;}
.y1fb_c01346{bottom:521.850000px;}
.y1f2_c01346{bottom:523.590000px;}
.y1f7_c01346{bottom:524.445000px;}
.y1f3_c01346{bottom:527.910000px;}
.y1f8_c01346{bottom:531.360000px;}
.y1f1_c01346{bottom:533.085000px;}
.y1f4_c01346{bottom:533.955000px;}
.y1f0_c01346{bottom:534.810000px;}
.y1ef_c01346{bottom:537.405000px;}
.y1ee_c01346{bottom:540.000000px;}
.y1ed_c01346{bottom:543.450000px;}
.y1ec_c01346{bottom:544.320000px;}
.y1eb_c01346{bottom:546.915000px;}
.y1ea_c01346{bottom:549.510000px;}
.y1e6_c01346{bottom:554.685000px;}
.y1e9_c01346{bottom:555.555000px;}
.y1e5_c01346{bottom:557.280000px;}
.y1e8_c01346{bottom:558.150000px;}
.y1e7_c01346{bottom:559.005000px;}
.y1e4_c01346{bottom:562.470000px;}
.y1e2_c01346{bottom:567.645000px;}
.y1df_c01346{bottom:571.110000px;}
.y1e3_c01346{bottom:571.965000px;}
.y1e1_c01346{bottom:572.835000px;}
.y1de_c01346{bottom:573.690000px;}
.y1e0_c01346{bottom:575.430000px;}
.y1db_c01346{bottom:576.285000px;}
.y1da_c01346{bottom:577.155000px;}
.y1dd_c01346{bottom:578.880000px;}
.y1dc_c01346{bottom:579.750000px;}
.y1d9_c01346{bottom:581.475000px;}
.y1d6_c01346{bottom:588.390000px;}
.y1d8_c01346{bottom:589.245000px;}
.y1d5_c01346{bottom:590.970000px;}
.y1d3_c01346{bottom:591.840000px;}
.y1d2_c01346{bottom:592.710000px;}
.y1d7_c01346{bottom:593.565000px;}
.y1d1_c01346{bottom:595.290000px;}
.y1d4_c01346{bottom:596.160000px;}
.y1d0_c01346{bottom:598.755000px;}
.y1cf_c01346{bottom:599.610000px;}
.y1cc_c01346{bottom:603.930000px;}
.y1cd_c01346{bottom:604.800000px;}
.y1c9_c01346{bottom:606.525000px;}
.y1ce_c01346{bottom:607.395000px;}
.y1cb_c01346{bottom:608.250000px;}
.y1c8_c01346{bottom:609.120000px;}
.y1ca_c01346{bottom:609.990000px;}
.y1c4_c01346{bottom:611.715000px;}
.y1c7_c01346{bottom:612.570000px;}
.y1c6_c01346{bottom:613.440000px;}
.y1c5_c01346{bottom:616.035000px;}
.y1c3_c01346{bottom:616.890000px;}
.y1c2_c01346{bottom:619.485000px;}
.y1c1_c01346{bottom:621.210000px;}
.y1c0_c01346{bottom:622.080000px;}
.y1bf_c01346{bottom:623.805000px;}
.y1bc_c01346{bottom:624.675000px;}
.y1ba_c01346{bottom:625.530000px;}
.y1b8_c01346{bottom:626.400000px;}
.y1bd_c01346{bottom:628.125000px;}
.y1be_c01346{bottom:628.995000px;}
.y1bb_c01346{bottom:629.850000px;}
.y1b9_c01346{bottom:630.720000px;}
.y1b7_c01346{bottom:632.445000px;}
.y1b5_c01346{bottom:634.170000px;}
.y1b6_c01346{bottom:635.040000px;}
.y1b4_c01346{bottom:639.360000px;}
.y1b2_c01346{bottom:640.230000px;}
.y1b3_c01346{bottom:641.955000px;}
.y1af_c01346{bottom:643.680000px;}
.y1b0_c01346{bottom:644.550000px;}
.y1b1_c01346{bottom:645.405000px;}
.y1ae_c01346{bottom:646.275000px;}
.y1ad_c01346{bottom:647.130000px;}
.y1a9_c01346{bottom:648.870000px;}
.y1aa_c01346{bottom:650.595000px;}
.y1ac_c01346{bottom:654.045000px;}
.y1a7_c01346{bottom:656.640000px;}
.y1a8_c01346{bottom:659.235000px;}
.y1a2_c01346{bottom:660.090000px;}
.y1ab_c01346{bottom:660.960000px;}
.y1a6_c01346{bottom:661.830000px;}
.y1a3_c01346{bottom:663.555000px;}
.y1a4_c01346{bottom:664.410000px;}
.y19f_c01346{bottom:665.280000px;}
.y1a1_c01346{bottom:666.150000px;}
.y1a0_c01346{bottom:667.005000px;}
.y19d_c01346{bottom:667.875000px;}
.y19e_c01346{bottom:669.600000px;}
.y19c_c01346{bottom:672.195000px;}
.y1a5_c01346{bottom:673.920000px;}
.y19a_c01346{bottom:674.790000px;}
.y199_c01346{bottom:675.645000px;}
.y198_c01346{bottom:676.515000px;}
.y19b_c01346{bottom:677.370000px;}
.y197_c01346{bottom:678.240000px;}
.y195_c01346{bottom:679.110000px;}
.y196_c01346{bottom:679.965000px;}
.y194_c01346{bottom:680.835000px;}
.y190_c01346{bottom:684.285000px;}
.y192_c01346{bottom:685.155000px;}
.y193_c01346{bottom:686.010000px;}
.y18e_c01346{bottom:690.330000px;}
.y18d_c01346{bottom:692.925000px;}
.y18f_c01346{bottom:693.795000px;}
.y18b_c01346{bottom:694.650000px;}
.y189_c01346{bottom:695.520000px;}
.y191_c01346{bottom:696.390000px;}
.y18c_c01346{bottom:697.245000px;}
.y18a_c01346{bottom:698.115000px;}
.y188_c01346{bottom:700.710000px;}
.y187_c01346{bottom:701.565000px;}
.y186_c01346{bottom:702.435000px;}
.y185_c01346{bottom:703.290000px;}
.y183_c01346{bottom:704.160000px;}
.y184_c01346{bottom:705.885000px;}
.y181_c01346{bottom:708.480000px;}
.y17f_c01346{bottom:709.350000px;}
.y182_c01346{bottom:711.075000px;}
.y17e_c01346{bottom:713.670000px;}
.y17c_c01346{bottom:714.525000px;}
.y17b_c01346{bottom:715.395000px;}
.y17a_c01346{bottom:717.120000px;}
.y17d_c01346{bottom:717.990000px;}
.y179_c01346{bottom:721.440000px;}
.y178_c01346{bottom:722.310000px;}
.y180_c01346{bottom:725.760000px;}
.y176_c01346{bottom:727.485000px;}
.y172_c01346{bottom:729.210000px;}
.y173_c01346{bottom:730.080000px;}
.y171_c01346{bottom:730.950000px;}
.y177_c01346{bottom:731.805000px;}
.y174_c01346{bottom:733.530000px;}
.y175_c01346{bottom:734.400000px;}
.y16f_c01346{bottom:736.995000px;}
.y170_c01346{bottom:737.850000px;}
.y16e_c01346{bottom:742.170000px;}
.y16c_c01346{bottom:743.910000px;}
.y16d_c01346{bottom:746.490000px;}
.y166_c01346{bottom:749.955000px;}
.y168_c01346{bottom:751.680000px;}
.y16a_c01346{bottom:752.550000px;}
.y169_c01346{bottom:754.275000px;}
.y167_c01346{bottom:755.130000px;}
.y165_c01346{bottom:756.870000px;}
.y163_c01346{bottom:759.450000px;}
.y16b_c01346{bottom:762.045000px;}
.y162_c01346{bottom:762.915000px;}
.y164_c01346{bottom:763.770000px;}
.y160_c01346{bottom:765.510000px;}
.y15d_c01346{bottom:766.365000px;}
.y15f_c01346{bottom:767.235000px;}
.y161_c01346{bottom:768.090000px;}
.y15e_c01346{bottom:768.960000px;}
.y157_c01346{bottom:769.830000px;}
.y15c_c01346{bottom:770.685000px;}
.y158_c01346{bottom:771.555000px;}
.y15b_c01346{bottom:772.410000px;}
.y15a_c01346{bottom:773.280000px;}
.y159_c01346{bottom:774.150000px;}
.y156_c01346{bottom:776.730000px;}
.y154_c01346{bottom:781.050000px;}
.y153_c01346{bottom:782.790000px;}
.y155_c01346{bottom:783.645000px;}
.y151_c01346{bottom:784.515000px;}
.y14f_c01346{bottom:785.370000px;}
.y152_c01346{bottom:786.240000px;}
.y150_c01346{bottom:787.110000px;}
.y14a_c01346{bottom:787.965000px;}
.y14e_c01346{bottom:788.835000px;}
.y14d_c01346{bottom:789.690000px;}
.y14c_c01346{bottom:790.560000px;}
.y14b_c01346{bottom:791.430000px;}
.y148_c01346{bottom:796.605000px;}
.y147_c01346{bottom:797.475000px;}
.y149_c01346{bottom:799.200000px;}
.y143_c01346{bottom:801.795000px;}
.y146_c01346{bottom:802.650000px;}
.y13e_c01346{bottom:803.520000px;}
.y144_c01346{bottom:804.390000px;}
.y141_c01346{bottom:806.115000px;}
.y140_c01346{bottom:807.840000px;}
.y13f_c01346{bottom:808.710000px;}
.y145_c01346{bottom:811.290000px;}
.y13d_c01346{bottom:813.030000px;}
.y13b_c01346{bottom:816.480000px;}
.y142_c01346{bottom:817.350000px;}
.y139_c01346{bottom:818.205000px;}
.y13c_c01346{bottom:819.930000px;}
.y137_c01346{bottom:820.800000px;}
.y13a_c01346{bottom:822.525000px;}
.y138_c01346{bottom:823.395000px;}
.y136_c01346{bottom:825.990000px;}
.y135_c01346{bottom:826.845000px;}
.y134_c01346{bottom:831.165000px;}
.y133_c01346{bottom:834.630000px;}
.y12f_c01346{bottom:836.355000px;}
.y130_c01346{bottom:837.210000px;}
.y131_c01346{bottom:838.950000px;}
.y132_c01346{bottom:839.805000px;}
.y12e_c01346{bottom:842.400000px;}
.y12d_c01346{bottom:844.125000px;}
.y12a_c01346{bottom:845.850000px;}
.y12b_c01346{bottom:846.720000px;}
.y12c_c01346{bottom:847.590000px;}
.y125_c01346{bottom:848.445000px;}
.y128_c01346{bottom:849.315000px;}
.y126_c01346{bottom:851.040000px;}
.y129_c01346{bottom:852.765000px;}
.y127_c01346{bottom:853.635000px;}
.y122_c01346{bottom:854.490000px;}
.y123_c01346{bottom:857.085000px;}
.y121_c01346{bottom:859.680000px;}
.y120_c01346{bottom:861.405000px;}
.y11f_c01346{bottom:866.595000px;}
.y124_c01346{bottom:867.450000px;}
.y11c_c01346{bottom:871.770000px;}
.y11d_c01346{bottom:874.365000px;}
.y11e_c01346{bottom:875.235000px;}
.y11a_c01346{bottom:876.090000px;}
.y119_c01346{bottom:877.830000px;}
.y11b_c01346{bottom:883.005000px;}
.y116_c01346{bottom:886.470000px;}
.y113_c01346{bottom:887.325000px;}
.y118_c01346{bottom:888.195000px;}
.y117_c01346{bottom:889.050000px;}
.y115_c01346{bottom:890.790000px;}
.y110_c01346{bottom:891.645000px;}
.y114_c01346{bottom:892.515000px;}
.y111_c01346{bottom:893.370000px;}
.y112_c01346{bottom:894.240000px;}
.y10f_c01346{bottom:904.605000px;}
.y10b_c01346{bottom:905.475000px;}
.y10a_c01346{bottom:908.070000px;}
.y109_c01346{bottom:908.925000px;}
.y10d_c01346{bottom:909.795000px;}
.y10e_c01346{bottom:910.650000px;}
.y10c_c01346{bottom:911.520000px;}
.y108_c01346{bottom:917.565000px;}
.y106_c01346{bottom:919.290000px;}
.y107_c01346{bottom:921.885000px;}
.y103_c01346{bottom:922.755000px;}
.y100_c01346{bottom:923.610000px;}
.yff_c01346{bottom:925.350000px;}
.y104_c01346{bottom:926.205000px;}
.y105_c01346{bottom:927.075000px;}
.yfe_c01346{bottom:927.930000px;}
.yfd_c01346{bottom:930.525000px;}
.y101_c01346{bottom:932.250000px;}
.y102_c01346{bottom:934.845000px;}
.yfa_c01346{bottom:938.310000px;}
.yfc_c01346{bottom:939.165000px;}
.yfb_c01346{bottom:940.890000px;}
.yf8_c01346{bottom:941.760000px;}
.yf5_c01346{bottom:943.485000px;}
.yf9_c01346{bottom:945.210000px;}
.yf6_c01346{bottom:946.950000px;}
.yf7_c01346{bottom:947.805000px;}
.yf4_c01346{bottom:950.400000px;}
.yef_c01346{bottom:953.850000px;}
.yf0_c01346{bottom:954.720000px;}
.yed_c01346{bottom:955.590000px;}
.yf1_c01346{bottom:956.445000px;}
.yf3_c01346{bottom:957.315000px;}
.yf2_c01346{bottom:958.170000px;}
.ye9_c01346{bottom:960.765000px;}
.yee_c01346{bottom:961.635000px;}
.yec_c01346{bottom:963.360000px;}
.yeb_c01346{bottom:964.230000px;}
.yea_c01346{bottom:965.085000px;}
.ye8_c01346{bottom:965.955000px;}
.ye6_c01346{bottom:971.130000px;}
.ye7_c01346{bottom:974.595000px;}
.ye3_c01346{bottom:976.320000px;}
.ye4_c01346{bottom:978.045000px;}
.ye5_c01346{bottom:978.915000px;}
.ye2_c01346{bottom:981.510000px;}
.ye1_c01346{bottom:982.365000px;}
.ye0_c01346{bottom:983.235000px;}
.ydf_c01346{bottom:984.090000px;}
.ydd_c01346{bottom:989.280000px;}
.ydc_c01346{bottom:990.150000px;}
.yde_c01346{bottom:991.875000px;}
.yd8_c01346{bottom:994.470000px;}
.ydb_c01346{bottom:995.325000px;}
.yda_c01346{bottom:996.195000px;}
.yd9_c01346{bottom:997.050000px;}
.yd5_c01346{bottom:998.790000px;}
.yd7_c01346{bottom:999.645000px;}
.yd6_c01346{bottom:1000.515000px;}
.yd4_c01346{bottom:1007.430000px;}
.yd3_c01346{bottom:1008.285000px;}
.yd2_c01346{bottom:1009.155000px;}
.ycf_c01346{bottom:1011.750000px;}
.yd0_c01346{bottom:1013.475000px;}
.yd1_c01346{bottom:1014.330000px;}
.ycd_c01346{bottom:1015.200000px;}
.yce_c01346{bottom:1016.070000px;}
.ycc_c01346{bottom:1016.925000px;}
.ycb_c01346{bottom:1017.795000px;}
.yca_c01346{bottom:1018.650000px;}
.yc7_c01346{bottom:1023.840000px;}
.yc8_c01346{bottom:1025.565000px;}
.yc9_c01346{bottom:1027.290000px;}
.yc5_c01346{bottom:1029.030000px;}
.yc3_c01346{bottom:1029.885000px;}
.yc6_c01346{bottom:1031.610000px;}
.yc1_c01346{bottom:1033.350000px;}
.yc4_c01346{bottom:1034.205000px;}
.yc0_c01346{bottom:1035.075000px;}
.yc2_c01346{bottom:1035.930000px;}
.ybd_c01346{bottom:1042.845000px;}
.ybe_c01346{bottom:1043.715000px;}
.ybf_c01346{bottom:1045.440000px;}
.ybb_c01346{bottom:1048.035000px;}
.ybc_c01346{bottom:1048.890000px;}
.yb9_c01346{bottom:1050.630000px;}
.yba_c01346{bottom:1051.485000px;}
.yb8_c01346{bottom:1052.355000px;}
.yb7_c01346{bottom:1053.210000px;}
.yb6_c01346{bottom:1057.530000px;}
.yb5_c01346{bottom:1061.850000px;}
.yb4_c01346{bottom:1062.720000px;}
.yb3_c01346{bottom:1063.590000px;}
.yaf_c01346{bottom:1065.315000px;}
.yae_c01346{bottom:1067.040000px;}
.yb1_c01346{bottom:1067.910000px;}
.yb2_c01346{bottom:1068.765000px;}
.yb0_c01346{bottom:1069.635000px;}
.yad_c01346{bottom:1071.360000px;}
.yaa_c01346{bottom:1077.405000px;}
.yab_c01346{bottom:1080.870000px;}
.yac_c01346{bottom:1081.725000px;}
.ya8_c01346{bottom:1083.450000px;}
.ya9_c01346{bottom:1084.320000px;}
.ya7_c01346{bottom:1085.190000px;}
.ya6_c01346{bottom:1086.045000px;}
.ya3_c01346{bottom:1086.915000px;}
.ya2_c01346{bottom:1088.640000px;}
.ya5_c01346{bottom:1092.960000px;}
.ya0_c01346{bottom:1095.555000px;}
.y9e_c01346{bottom:1096.410000px;}
.y9c_c01346{bottom:1098.150000px;}
.y9f_c01346{bottom:1099.005000px;}
.ya4_c01346{bottom:1099.875000px;}
.ya1_c01346{bottom:1100.730000px;}
.y9d_c01346{bottom:1101.600000px;}
.y99_c01346{bottom:1103.325000px;}
.y9b_c01346{bottom:1104.195000px;}
.y9a_c01346{bottom:1105.050000px;}
.y97_c01346{bottom:1105.920000px;}
.y98_c01346{bottom:1106.790000px;}
.y93_c01346{bottom:1113.690000px;}
.y95_c01346{bottom:1114.560000px;}
.y92_c01346{bottom:1115.430000px;}
.y90_c01346{bottom:1116.285000px;}
.y8b_c01346{bottom:1118.880000px;}
.y94_c01346{bottom:1119.750000px;}
.y8f_c01346{bottom:1120.605000px;}
.y91_c01346{bottom:1121.475000px;}
.y8c_c01346{bottom:1123.200000px;}
.y96_c01346{bottom:1125.795000px;}
.y8d_c01346{bottom:1129.245000px;}
.y8a_c01346{bottom:1130.115000px;}
.y8e_c01346{bottom:1131.840000px;}
.y89_c01346{bottom:1133.565000px;}
.y86_c01346{bottom:1134.435000px;}
.y88_c01346{bottom:1136.160000px;}
.y87_c01346{bottom:1137.030000px;}
.y85_c01346{bottom:1137.885000px;}
.y84_c01346{bottom:1141.350000px;}
.y82_c01346{bottom:1151.715000px;}
.y83_c01346{bottom:1152.570000px;}
.y81_c01346{bottom:1153.440000px;}
.y80_c01346{bottom:1154.310000px;}
.y7b_c01346{bottom:1155.165000px;}
.y7d_c01346{bottom:1156.035000px;}
.y7f_c01346{bottom:1156.890000px;}
.y7e_c01346{bottom:1157.760000px;}
.y7c_c01346{bottom:1158.630000px;}
.y3_c01346{bottom:1160.355000px;}
.y7a_c01346{bottom:1162.950000px;}
.y77_c01346{bottom:1165.530000px;}
.y75_c01346{bottom:1166.400000px;}
.y79_c01346{bottom:1167.270000px;}
.y76_c01346{bottom:1168.125000px;}
.y72_c01346{bottom:1169.850000px;}
.y70_c01346{bottom:1170.720000px;}
.y74_c01346{bottom:1171.590000px;}
.y78_c01346{bottom:1172.445000px;}
.y73_c01346{bottom:1174.170000px;}
.y71_c01346{bottom:1175.910000px;}
.y6f_c01346{bottom:1176.765000px;}
.y6c_c01346{bottom:1182.810000px;}
.y6d_c01346{bottom:1183.680000px;}
.y68_c01346{bottom:1184.550000px;}
.y6a_c01346{bottom:1185.405000px;}
.y6b_c01346{bottom:1187.130000px;}
.y67_c01346{bottom:1188.000000px;}
.y69_c01346{bottom:1189.725000px;}
.y66_c01346{bottom:1191.450000px;}
.y6e_c01346{bottom:1193.190000px;}
.y65_c01346{bottom:1194.045000px;}
.y63_c01346{bottom:1201.830000px;}
.y64_c01346{bottom:1203.555000px;}
.y62_c01346{bottom:1207.005000px;}
.y5f_c01346{bottom:1208.730000px;}
.y60_c01346{bottom:1209.600000px;}
.y61_c01346{bottom:1211.325000px;}
.y5e_c01346{bottom:1212.195000px;}
.y5b_c01346{bottom:1217.370000px;}
.y5d_c01346{bottom:1218.240000px;}
.y5c_c01346{bottom:1219.110000px;}
.y5a_c01346{bottom:1222.560000px;}
.y55_c01346{bottom:1223.430000px;}
.y56_c01346{bottom:1224.285000px;}
.y59_c01346{bottom:1225.155000px;}
.y58_c01346{bottom:1226.010000px;}
.y57_c01346{bottom:1226.880000px;}
.y53_c01346{bottom:1228.605000px;}
.y54_c01346{bottom:1229.475000px;}
.y2a2_c01346{bottom:1235.520000px;}
.y50_c01346{bottom:1236.390000px;}
.y4f_c01346{bottom:1237.245000px;}
.y4e_c01346{bottom:1238.115000px;}
.y52_c01346{bottom:1239.840000px;}
.y4c_c01346{bottom:1240.710000px;}
.y51_c01346{bottom:1241.565000px;}
.y4a_c01346{bottom:1242.435000px;}
.y4d_c01346{bottom:1243.290000px;}
.y4b_c01346{bottom:1245.030000px;}
.y48_c01346{bottom:1254.525000px;}
.y43_c01346{bottom:1255.395000px;}
.y44_c01346{bottom:1256.250000px;}
.y49_c01346{bottom:1257.120000px;}
.y40_c01346{bottom:1258.845000px;}
.y41_c01346{bottom:1259.715000px;}
.y45_c01346{bottom:1260.570000px;}
.y47_c01346{bottom:1261.440000px;}
.y42_c01346{bottom:1262.310000px;}
.y3e_c01346{bottom:1264.035000px;}
.y3f_c01346{bottom:1264.890000px;}
.y46_c01346{bottom:1265.760000px;}
.y3a_c01346{bottom:1270.950000px;}
.y3b_c01346{bottom:1271.805000px;}
.y3d_c01346{bottom:1272.675000px;}
.y38_c01346{bottom:1273.530000px;}
.y3c_c01346{bottom:1274.400000px;}
.y37_c01346{bottom:1275.270000px;}
.y32_c01346{bottom:1276.995000px;}
.y39_c01346{bottom:1277.850000px;}
.y36_c01346{bottom:1278.720000px;}
.y34_c01346{bottom:1279.590000px;}
.y35_c01346{bottom:1280.445000px;}
.y31_c01346{bottom:1281.315000px;}
.y33_c01346{bottom:1282.170000px;}
.y2a1_c01346{bottom:1285.635000px;}
.y2f_c01346{bottom:1289.085000px;}
.y2e_c01346{bottom:1289.955000px;}
.y30_c01346{bottom:1292.550000px;}
.y2d_c01346{bottom:1294.275000px;}
.y2b_c01346{bottom:1296.870000px;}
.y29_c01346{bottom:1299.450000px;}
.y2a_c01346{bottom:1300.320000px;}
.y28_c01346{bottom:1307.235000px;}
.y2c_c01346{bottom:1309.830000px;}
.y27_c01346{bottom:1310.685000px;}
.y23_c01346{bottom:1311.555000px;}
.y26_c01346{bottom:1312.410000px;}
.y25_c01346{bottom:1314.150000px;}
.y24_c01346{bottom:1315.005000px;}
.y22_c01346{bottom:1316.730000px;}
.y21_c01346{bottom:1322.790000px;}
.y20_c01346{bottom:1326.240000px;}
.y1b_c01346{bottom:1327.965000px;}
.y1a_c01346{bottom:1328.835000px;}
.y1e_c01346{bottom:1329.690000px;}
.y1f_c01346{bottom:1330.560000px;}
.y1d_c01346{bottom:1331.430000px;}
.y1c_c01346{bottom:1333.155000px;}
.y19_c01346{bottom:1334.010000px;}
.y18_c01346{bottom:1334.880000px;}
.y2a0_c01346{bottom:1335.750000px;}
.y17_c01346{bottom:1340.070000px;}
.y16_c01346{bottom:1342.650000px;}
.y14_c01346{bottom:1345.245000px;}
.y13_c01346{bottom:1346.115000px;}
.y12_c01346{bottom:1347.840000px;}
.y15_c01346{bottom:1348.710000px;}
.y10_c01346{bottom:1350.435000px;}
.y11_c01346{bottom:1351.290000px;}
.y29f_c01346{bottom:1354.755000px;}
.ye_c01346{bottom:1359.075000px;}
.yd_c01346{bottom:1359.930000px;}
.yf_c01346{bottom:1360.800000px;}
.yc_c01346{bottom:1361.670000px;}
.yb_c01346{bottom:1362.525000px;}
.y9_c01346{bottom:1363.395000px;}
.y7_c01346{bottom:1364.250000px;}
.y5_c01346{bottom:1365.990000px;}
.ya_c01346{bottom:1366.845000px;}
.y4_c01346{bottom:1367.715000px;}
.y8_c01346{bottom:1368.570000px;}
.y6_c01346{bottom:1369.440000px;}
.y1_c01346{bottom:1407.450000px;}
.y2_c01346{bottom:1408.320000px;}
.y29d_c01346{bottom:1444.605000px;}
.y29e_c01346{bottom:1448.925000px;}
.h3_c01346{height:3.110063px;}
.h19_c01346{height:5.399414px;}
.hd_c01346{height:6.209326px;}
.h16_c01346{height:9.340986px;}
.h14_c01346{height:12.418652px;}
.h4_c01346{height:15.550313px;}
.h1b_c01346{height:18.681973px;}
.h1a_c01346{height:21.759639px;}
.h15_c01346{height:24.891299px;}
.h12_c01346{height:27.968965px;}
.h2_c01346{height:31.100625px;}
.h13_c01346{height:34.232285px;}
.h20_c01346{height:34.541250px;}
.hc_c01346{height:37.309951px;}
.h8_c01346{height:40.441611px;}
.h1f_c01346{height:43.170937px;}
.h11_c01346{height:43.519277px;}
.h7_c01346{height:46.650937px;}
.h5_c01346{height:49.782598px;}
.hb_c01346{height:52.860264px;}
.hf_c01346{height:55.991924px;}
.h1d_c01346{height:56.340264px;}
.h9_c01346{height:59.069590px;}
.ha_c01346{height:62.201250px;}
.he_c01346{height:65.332910px;}
.h1c_c01346{height:68.410576px;}
.h10_c01346{height:71.542236px;}
.h17_c01346{height:74.619902px;}
.h18_c01346{height:77.751563px;}
.h1e_c01346{height:80.883223px;}
.h6_c01346{height:83.960889px;}
.h22_c01346{height:93.301875px;}
.h23_c01346{height:174.185098px;}
.h21_c01346{height:242.595674px;}
.h1_c01346{height:1513.500000px;}
.h0_c01346{height:1513.725000px;}
.w0_c01346{width:1083.450000px;}
.w1_c01346{width:1083.750000px;}
.x0_c01346{left:0.000000px;}
.x3_c01346{left:153.795000px;}
.xd4_c01346{left:170.205000px;}
.xd5_c01346{left:177.120000px;}
.x119_c01346{left:178.845000px;}
.x11a_c01346{left:188.355000px;}
.x113_c01346{left:193.530000px;}
.xe4_c01346{left:195.270000px;}
.x11c_c01346{left:199.590000px;}
.xc3_c01346{left:201.315000px;}
.xf0_c01346{left:203.040000px;}
.xe5_c01346{left:204.765000px;}
.x93_c01346{left:207.360000px;}
.x39_c01346{left:209.955000px;}
.xa0_c01346{left:211.680000px;}
.x4a_c01346{left:213.405000px;}
.x40_c01346{left:215.130000px;}
.x1_c01346{left:216.870000px;}
.xf5_c01346{left:219.450000px;}
.xfc_c01346{left:222.045000px;}
.x3a_c01346{left:223.770000px;}
.x2_c01346{left:225.510000px;}
.xf7_c01346{left:228.090000px;}
.xb1_c01346{left:229.830000px;}
.x7f_c01346{left:231.555000px;}
.x3b_c01346{left:234.150000px;}
.x66_c01346{left:236.730000px;}
.xad_c01346{left:238.470000px;}
.x16_c01346{left:240.195000px;}
.x32_c01346{left:242.790000px;}
.x17_c01346{left:244.515000px;}
.xa1_c01346{left:247.965000px;}
.xeb_c01346{left:249.690000px;}
.x125_c01346{left:251.430000px;}
.x76_c01346{left:254.010000px;}
.x118_c01346{left:256.605000px;}
.xdc_c01346{left:258.330000px;}
.xc4_c01346{left:260.070000px;}
.x4_c01346{left:261.795000px;}
.xd1_c01346{left:263.520000px;}
.x80_c01346{left:266.115000px;}
.x94_c01346{left:268.710000px;}
.x9c_c01346{left:271.290000px;}
.x5a_c01346{left:273.885000px;}
.xff_c01346{left:276.480000px;}
.x18_c01346{left:278.205000px;}
.xae_c01346{left:280.800000px;}
.xdf_c01346{left:282.525000px;}
.x9d_c01346{left:285.120000px;}
.x95_c01346{left:286.845000px;}
.x81_c01346{left:288.570000px;}
.xf9_c01346{left:290.310000px;}
.x8d_c01346{left:292.890000px;}
.xb9_c01346{left:295.485000px;}
.xaf_c01346{left:297.210000px;}
.xe0_c01346{left:298.950000px;}
.x24_c01346{left:300.675000px;}
.x5b_c01346{left:303.270000px;}
.xc6_c01346{left:305.850000px;}
.x120_c01346{left:308.445000px;}
.x19_c01346{left:310.170000px;}
.x4b_c01346{left:311.910000px;}
.x53_c01346{left:314.490000px;}
.x10a_c01346{left:317.085000px;}
.x105_c01346{left:319.680000px;}
.x41_c01346{left:322.275000px;}
.x87_c01346{left:324.000000px;}
.x4c_c01346{left:327.450000px;}
.xcc_c01346{left:330.915000px;}
.xba_c01346{left:332.640000px;}
.xe8_c01346{left:334.365000px;}
.x1a_c01346{left:336.090000px;}
.xa6_c01346{left:339.555000px;}
.x82_c01346{left:342.150000px;}
.x96_c01346{left:343.875000px;}
.x77_c01346{left:345.600000px;}
.xa7_c01346{left:347.325000px;}
.xcd_c01346{left:349.050000px;}
.x54_c01346{left:351.644592px;}
.x3c_c01346{left:353.370000px;}
.x5_c01346{left:355.110000px;}
.x8e_c01346{left:356.835000px;}
.x83_c01346{left:358.560000px;}
.x10f_c01346{left:360.285000px;}
.x42_c01346{left:362.880000px;}
.x25_c01346{left:367.200000px;}
.x1b_c01346{left:370.650000px;}
.x126_c01346{left:372.390000px;}
.x67_c01346{left:374.970000px;}
.x78_c01346{left:376.710000px;}
.x43_c01346{left:378.435000px;}
.x5c_c01346{left:381.030000px;}
.xf1_c01346{left:382.755000px;}
.x6_c01346{left:386.205000px;}
.xfd_c01346{left:387.930000px;}
.x5d_c01346{left:389.670000px;}
.xbb_c01346{left:393.120000px;}
.x33_c01346{left:394.845000px;}
.x26_c01346{left:398.310000px;}
.x7_c01346{left:401.760000px;}
.x79_c01346{left:403.485000px;}
.xf8_c01346{left:405.210000px;}
.x5e_c01346{left:407.805000px;}
.x1c_c01346{left:409.530000px;}
.xd8_c01346{left:412.125000px;}
.xbe_c01346{left:417.315000px;}
.x106_c01346{left:419.040000px;}
.x97_c01346{left:420.765000px;}
.x44_c01346{left:423.360000px;}
.xa2_c01346{left:425.955000px;}
.x8f_c01346{left:429.405000px;}
.x45_c01346{left:432.000000px;}
.xc7_c01346{left:433.725000px;}
.x27_c01346{left:435.450000px;}
.xc0_c01346{left:437.190000px;}
.x8_c01346{left:438.915000px;}
.xe7_c01346{left:440.640000px;}
.x4d_c01346{left:443.235000px;}
.x100_c01346{left:444.960000px;}
.xfa_c01346{left:446.685000px;}
.xb2_c01346{left:450.150000px;}
.x5f_c01346{left:451.875000px;}
.x11b_c01346{left:453.600000px;}
.xb0_c01346{left:457.050000px;}
.x4e_c01346{left:459.645000px;}
.x7a_c01346{left:463.110000px;}
.x1d_c01346{left:465.690000px;}
.x84_c01346{left:470.010000px;}
.xec_c01346{left:471.750000px;}
.x68_c01346{left:473.475000px;}
.x60_c01346{left:475.200000px;}
.xf2_c01346{left:477.795000px;}
.x9_c01346{left:480.390000px;}
.xbc_c01346{left:482.115000px;}
.x6d_c01346{left:484.710000px;}
.x3d_c01346{left:487.290000px;}
.x101_c01346{left:489.885000px;}
.x34_c01346{left:491.610000px;}
.x55_c01346{left:493.350000px;}
.x28_c01346{left:495.930000px;}
.xbf_c01346{left:498.525000px;}
.x69_c01346{left:500.250000px;}
.x111_c01346{left:501.990000px;}
.x98_c01346{left:504.570000px;}
.xe6_c01346{left:506.310000px;}
.xa_c01346{left:508.035000px;}
.x9e_c01346{left:510.630000px;}
.x6e_c01346{left:512.355000px;}
.x35_c01346{left:514.080000px;}
.xe9_c01346{left:515.805000px;}
.x114_c01346{left:517.530000px;}
.xd2_c01346{left:523.590000px;}
.xa3_c01346{left:527.040000px;}
.xa8_c01346{left:529.635000px;}
.xe1_c01346{left:532.230000px;}
.x115_c01346{left:533.955000px;}
.xc8_c01346{left:535.680000px;}
.x3e_c01346{left:537.405000px;}
.xdd_c01346{left:540.000000px;}
.xb3_c01346{left:541.725000px;}
.x6a_c01346{left:543.450000px;}
.x1e_c01346{left:545.190000px;}
.x10d_c01346{left:548.640000px;}
.xce_c01346{left:552.960000px;}
.x88_c01346{left:555.555000px;}
.x122_c01346{left:557.280000px;}
.xb_c01346{left:559.005000px;}
.x6f_c01346{left:561.600000px;}
.x1f_c01346{left:563.325000px;}
.xea_c01346{left:565.050000px;}
.x61_c01346{left:566.790000px;}
.xd6_c01346{left:568.515000px;}
.x62_c01346{left:571.110000px;}
.x29_c01346{left:572.835000px;}
.x90_c01346{left:574.560000px;}
.x104_c01346{left:576.285000px;}
.xb5_c01346{left:578.880000px;}
.xa4_c01346{left:581.475000px;}
.x4f_c01346{left:584.070000px;}
.xe2_c01346{left:586.650000px;}
.xd7_c01346{left:588.390000px;}
.x10e_c01346{left:590.970000px;}
.xcf_c01346{left:593.565000px;}
.x2a_c01346{left:597.030000px;}
.xc_c01346{left:599.610000px;}
.x102_c01346{left:602.205000px;}
.x20_c01346{left:603.930000px;}
.xe3_c01346{left:605.670000px;}
.xb6_c01346{left:609.120000px;}
.xc9_c01346{left:610.845000px;}
.xd9_c01346{left:612.570000px;}
.x63_c01346{left:615.165000px;}
.xf3_c01346{left:617.760000px;}
.x123_c01346{left:620.355000px;}
.x46_c01346{left:622.080000px;}
.x107_c01346{left:623.805000px;}
.x99_c01346{left:627.270000px;}
.xed_c01346{left:631.590000px;}
.xca_c01346{left:634.170000px;}
.x70_c01346{left:635.910000px;}
.x89_c01346{left:638.490000px;}
.x2b_c01346{left:641.085000px;}
.xa9_c01346{left:642.810000px;}
.x112_c01346{left:644.550000px;}
.x9f_c01346{left:646.275000px;}
.x2c_c01346{left:648.870000px;}
.x36_c01346{left:650.595000px;}
.x116_c01346{left:653.190000px;}
.x64_c01346{left:654.915000px;}
.x9a_c01346{left:658.365000px;}
.x47_c01346{left:660.090000px;}
.xd_c01346{left:661.830000px;}
.x2d_c01346{left:664.410000px;}
.x71_c01346{left:666.150000px;}
.xb4_c01346{left:669.600000px;}
.x50_c01346{left:671.325000px;}
.xda_c01346{left:673.050000px;}
.xf4_c01346{left:674.790000px;}
.xb7_c01346{left:678.240000px;}
.x56_c01346{left:679.965000px;}
.x117_c01346{left:681.690000px;}
.x7b_c01346{left:683.430000px;}
.xaa_c01346{left:685.155000px;}
.x21_c01346{left:687.750000px;}
.x11e_c01346{left:689.475000px;}
.x10b_c01346{left:691.200000px;}
.x2e_c01346{left:692.925000px;}
.x8a_c01346{left:695.520000px;}
.xdb_c01346{left:698.115000px;}
.xc1_c01346{left:699.840000px;}
.xe_c01346{left:701.565000px;}
.x9b_c01346{left:704.160000px;}
.x85_c01346{left:706.755000px;}
.x11d_c01346{left:708.480000px;}
.xd3_c01346{left:711.075000px;}
.x108_c01346{left:713.670000px;}
.x11f_c01346{left:715.395000px;}
.x22_c01346{left:717.120000px;}
.xc2_c01346{left:719.715000px;}
.x8b_c01346{left:722.310000px;}
.xee_c01346{left:724.890000px;}
.x57_c01346{left:727.485000px;}
.xb8_c01346{left:729.210000px;}
.x51_c01346{left:730.950000px;}
.x86_c01346{left:732.675000px;}
.xcb_c01346{left:735.270000px;}
.x10c_c01346{left:736.995000px;}
.x124_c01346{left:738.720000px;}
.x7c_c01346{left:741.315000px;}
.x109_c01346{left:743.910000px;}
.x72_c01346{left:747.360000px;}
.xab_c01346{left:749.085000px;}
.x2f_c01346{left:750.810000px;}
.x8c_c01346{left:752.550000px;}
.x48_c01346{left:756.869400px;}
.xf_c01346{left:759.450000px;}
.x30_c01346{left:761.190000px;}
.x73_c01346{left:762.915000px;}
.x6b_c01346{left:764.640000px;}
.x58_c01346{left:767.235000px;}
.xfe_c01346{left:770.685000px;}
.xf6_c01346{left:773.280000px;}
.x110_c01346{left:777.600000px;}
.x31_c01346{left:779.325000px;}
.x10_c01346{left:781.050000px;}
.x65_c01346{left:783.645000px;}
.xfb_c01346{left:785.370000px;}
.x7d_c01346{left:788.835000px;}
.x52_c01346{left:791.430000px;}
.x11_c01346{left:794.880000px;}
.xde_c01346{left:797.475000px;}
.xd0_c01346{left:800.070000px;}
.x91_c01346{left:802.650000px;}
.x74_c01346{left:805.245000px;}
.x92_c01346{left:806.970000px;}
.x103_c01346{left:808.710000px;}
.xef_c01346{left:811.290000px;}
.x37_c01346{left:813.030000px;}
.x6c_c01346{left:815.610000px;}
.x3f_c01346{left:817.350000px;}
.xbd_c01346{left:821.670000px;}
.x12_c01346{left:824.250000px;}
.x23_c01346{left:825.990000px;}
.x38_c01346{left:828.570000px;}
.x121_c01346{left:831.165000px;}
.x13_c01346{left:832.890000px;}
.xac_c01346{left:835.485000px;}
.x14_c01346{left:838.080000px;}
.x59_c01346{left:839.805000px;}
.xc5_c01346{left:842.400000px;}
.x15_c01346{left:844.125000px;}
.x49_c01346{left:845.850000px;}
.x7e_c01346{left:853.635000px;}
.xa5_c01346{left:856.230000px;}
.x75_c01346{left:858.810000px;}
.x12a_c01346{left:917.565000px;}
.x12c_c01346{left:929.670000px;}
.x129_c01346{left:963.360000px;}
.x130_c01346{left:966.810000px;}
.x12b_c01346{left:972.000000px;}
.x127_c01346{left:1023.840000px;}
.x12d_c01346{left:1025.565000px;}
.x128_c01346{left:1035.930000px;}
.x12e_c01346{left:1061.850000px;}
.x12f_c01346{left:1065.315000px;}
@media print{
.v3_c01346{vertical-align:-24.586667pt;}
.v4_c01346{vertical-align:-6.133333pt;}
.v2_c01346{vertical-align:-3.093333pt;}
.v0_c01346{vertical-align:0.000000pt;}
.v1_c01346{vertical-align:3.093333pt;}
.ls4_c01346{letter-spacing:0.000000pt;}
.ls0_c01346{letter-spacing:20.835413pt;}
.ls3_c01346{letter-spacing:57.005067pt;}
.ls1_c01346{letter-spacing:60.599723pt;}
.ls2_c01346{letter-spacing:243.898667pt;}
.ws5_c01346{word-spacing:-15.714507pt;}
.ws3_c01346{word-spacing:-12.840533pt;}
.ws7_c01346{word-spacing:-11.458560pt;}
.ws1_c01346{word-spacing:-7.955840pt;}
.ws4_c01346{word-spacing:-6.843093pt;}
.ws8_c01346{word-spacing:-6.803037pt;}
.ws0_c01346{word-spacing:-5.055573pt;}
.ws2_c01346{word-spacing:-3.398827pt;}
.ws9_c01346{word-spacing:0.000000pt;}
.ws6_c01346{word-spacing:14.357280pt;}
.fs1_c01346{font-size:3.072000pt;}
.fs17_c01346{font-size:5.333333pt;}
.fsb_c01346{font-size:6.133333pt;}
.fs14_c01346{font-size:9.226667pt;}
.fs12_c01346{font-size:12.266667pt;}
.fs2_c01346{font-size:15.360000pt;}
.fs19_c01346{font-size:18.453333pt;}
.fs18_c01346{font-size:21.493333pt;}
.fs13_c01346{font-size:24.586667pt;}
.fs10_c01346{font-size:27.626667pt;}
.fs0_c01346{font-size:30.720000pt;}
.fs11_c01346{font-size:33.813333pt;}
.fsa_c01346{font-size:36.853333pt;}
.fs6_c01346{font-size:39.946667pt;}
.fsf_c01346{font-size:42.986667pt;}
.fs5_c01346{font-size:46.080000pt;}
.fs3_c01346{font-size:49.173333pt;}
.fs9_c01346{font-size:52.213333pt;}
.fsd_c01346{font-size:55.306667pt;}
.fs7_c01346{font-size:58.346667pt;}
.fs8_c01346{font-size:61.440000pt;}
.fsc_c01346{font-size:64.533333pt;}
.fs1a_c01346{font-size:67.573333pt;}
.fse_c01346{font-size:70.666667pt;}
.fs15_c01346{font-size:73.706667pt;}
.fs16_c01346{font-size:76.800000pt;}
.fs1b_c01346{font-size:79.893333pt;}
.fs4_c01346{font-size:82.933333pt;}
.fs1d_c01346{font-size:92.160000pt;}
.fs1e_c01346{font-size:172.053333pt;}
.fs1c_c01346{font-size:239.626667pt;}
.y0_c01346{bottom:0.000000pt;}
.y29b_c01346{bottom:194.306667pt;}
.y29a_c01346{bottom:195.066667pt;}
.y297_c01346{bottom:196.613333pt;}
.y299_c01346{bottom:200.453333pt;}
.y298_c01346{bottom:201.213333pt;}
.y296_c01346{bottom:207.360000pt;}
.y29c_c01346{bottom:208.133333pt;}
.y295_c01346{bottom:209.666667pt;}
.y294_c01346{bottom:211.200000pt;}
.y293_c01346{bottom:211.973333pt;}
.y292_c01346{bottom:212.733333pt;}
.y290_c01346{bottom:213.506667pt;}
.y291_c01346{bottom:215.040000pt;}
.y28f_c01346{bottom:218.880000pt;}
.y28d_c01346{bottom:220.413333pt;}
.y28a_c01346{bottom:223.493333pt;}
.y28e_c01346{bottom:224.253333pt;}
.y28b_c01346{bottom:225.026667pt;}
.y28c_c01346{bottom:225.786667pt;}
.y287_c01346{bottom:226.560000pt;}
.y289_c01346{bottom:228.866667pt;}
.y286_c01346{bottom:229.626667pt;}
.y288_c01346{bottom:231.173333pt;}
.y284_c01346{bottom:237.306667pt;}
.y283_c01346{bottom:238.853333pt;}
.y285_c01346{bottom:240.386667pt;}
.y281_c01346{bottom:241.146667pt;}
.y280_c01346{bottom:241.920000pt;}
.y282_c01346{bottom:243.453333pt;}
.y27d_c01346{bottom:244.226667pt;}
.y27c_c01346{bottom:245.760000pt;}
.y27f_c01346{bottom:247.293333pt;}
.y27e_c01346{bottom:248.826667pt;}
.y27b_c01346{bottom:254.973333pt;}
.y279_c01346{bottom:257.280000pt;}
.y277_c01346{bottom:258.813333pt;}
.y27a_c01346{bottom:259.586667pt;}
.y278_c01346{bottom:261.893333pt;}
.y276_c01346{bottom:264.960000pt;}
.y274_c01346{bottom:268.800000pt;}
.y273_c01346{bottom:271.106667pt;}
.y275_c01346{bottom:272.640000pt;}
.y272_c01346{bottom:274.173333pt;}
.y26e_c01346{bottom:274.946667pt;}
.y26f_c01346{bottom:275.706667pt;}
.y270_c01346{bottom:278.013333pt;}
.y26d_c01346{bottom:281.093333pt;}
.y26c_c01346{bottom:282.626667pt;}
.y26b_c01346{bottom:284.933333pt;}
.y26a_c01346{bottom:285.693333pt;}
.y271_c01346{bottom:287.226667pt;}
.y269_c01346{bottom:288.773333pt;}
.y268_c01346{bottom:291.840000pt;}
.y263_c01346{bottom:292.613333pt;}
.y265_c01346{bottom:293.373333pt;}
.y267_c01346{bottom:294.146667pt;}
.y262_c01346{bottom:294.906667pt;}
.y266_c01346{bottom:295.680000pt;}
.y264_c01346{bottom:296.453333pt;}
.y261_c01346{bottom:300.293333pt;}
.y260_c01346{bottom:301.053333pt;}
.y25f_c01346{bottom:304.133333pt;}
.y25c_c01346{bottom:306.426667pt;}
.y25e_c01346{bottom:307.200000pt;}
.y257_c01346{bottom:307.973333pt;}
.y25d_c01346{bottom:308.733333pt;}
.y259_c01346{bottom:309.506667pt;}
.y25b_c01346{bottom:311.040000pt;}
.y25a_c01346{bottom:311.813333pt;}
.y258_c01346{bottom:312.573333pt;}
.y256_c01346{bottom:315.653333pt;}
.y255_c01346{bottom:321.026667pt;}
.y250_c01346{bottom:322.560000pt;}
.y24f_c01346{bottom:323.333333pt;}
.y253_c01346{bottom:324.093333pt;}
.y252_c01346{bottom:324.866667pt;}
.y251_c01346{bottom:326.400000pt;}
.y254_c01346{bottom:329.466667pt;}
.y24e_c01346{bottom:332.546667pt;}
.y24c_c01346{bottom:334.080000pt;}
.y24a_c01346{bottom:334.853333pt;}
.y24d_c01346{bottom:335.613333pt;}
.y248_c01346{bottom:337.146667pt;}
.y24b_c01346{bottom:337.920000pt;}
.y247_c01346{bottom:338.693333pt;}
.y249_c01346{bottom:339.453333pt;}
.y244_c01346{bottom:340.226667pt;}
.y245_c01346{bottom:340.986667pt;}
.y246_c01346{bottom:341.760000pt;}
.y243_c01346{bottom:342.533333pt;}
.y242_c01346{bottom:344.066667pt;}
.y241_c01346{bottom:345.600000pt;}
.y23e_c01346{bottom:350.213333pt;}
.y240_c01346{bottom:350.973333pt;}
.y23f_c01346{bottom:351.746667pt;}
.y23d_c01346{bottom:354.053333pt;}
.y23b_c01346{bottom:359.426667pt;}
.y23c_c01346{bottom:360.186667pt;}
.y23a_c01346{bottom:362.493333pt;}
.y239_c01346{bottom:363.266667pt;}
.y238_c01346{bottom:366.333333pt;}
.y236_c01346{bottom:367.106667pt;}
.y234_c01346{bottom:369.413333pt;}
.y237_c01346{bottom:370.173333pt;}
.y233_c01346{bottom:370.946667pt;}
.y231_c01346{bottom:371.706667pt;}
.y235_c01346{bottom:373.253333pt;}
.y230_c01346{bottom:374.786667pt;}
.y232_c01346{bottom:375.546667pt;}
.y22c_c01346{bottom:386.306667pt;}
.y22a_c01346{bottom:387.066667pt;}
.y22e_c01346{bottom:387.840000pt;}
.y229_c01346{bottom:388.613333pt;}
.y22b_c01346{bottom:389.373333pt;}
.y227_c01346{bottom:391.680000pt;}
.y228_c01346{bottom:392.453333pt;}
.y226_c01346{bottom:393.213333pt;}
.y22f_c01346{bottom:393.986667pt;}
.y225_c01346{bottom:396.293333pt;}
.y22d_c01346{bottom:397.826667pt;}
.y223_c01346{bottom:400.133333pt;}
.y224_c01346{bottom:400.893333pt;}
.y221_c01346{bottom:401.666667pt;}
.y220_c01346{bottom:402.426667pt;}
.y222_c01346{bottom:403.200000pt;}
.y21d_c01346{bottom:403.973333pt;}
.y21f_c01346{bottom:404.733333pt;}
.y21e_c01346{bottom:407.813333pt;}
.y21c_c01346{bottom:411.653333pt;}
.y21a_c01346{bottom:412.413333pt;}
.y219_c01346{bottom:413.186667pt;}
.y21b_c01346{bottom:413.946667pt;}
.y215_c01346{bottom:416.253333pt;}
.y218_c01346{bottom:417.026667pt;}
.y213_c01346{bottom:418.560000pt;}
.y216_c01346{bottom:419.333333pt;}
.y217_c01346{bottom:420.866667pt;}
.y214_c01346{bottom:421.626667pt;}
.y212_c01346{bottom:429.306667pt;}
.y20f_c01346{bottom:430.080000pt;}
.y20e_c01346{bottom:430.853333pt;}
.y211_c01346{bottom:431.613333pt;}
.y210_c01346{bottom:433.146667pt;}
.y20a_c01346{bottom:433.920000pt;}
.y208_c01346{bottom:434.693333pt;}
.y20c_c01346{bottom:435.453333pt;}
.y20b_c01346{bottom:436.986667pt;}
.y20d_c01346{bottom:443.133333pt;}
.y207_c01346{bottom:445.440000pt;}
.y209_c01346{bottom:446.213333pt;}
.y206_c01346{bottom:446.973333pt;}
.y205_c01346{bottom:447.746667pt;}
.y203_c01346{bottom:448.506667pt;}
.y204_c01346{bottom:449.280000pt;}
.y1ff_c01346{bottom:450.053333pt;}
.y202_c01346{bottom:450.813333pt;}
.y201_c01346{bottom:451.586667pt;}
.y200_c01346{bottom:453.120000pt;}
.y1fe_c01346{bottom:453.893333pt;}
.y1fd_c01346{bottom:454.653333pt;}
.y1fc_c01346{bottom:458.493333pt;}
.y1fa_c01346{bottom:460.026667pt;}
.y1f9_c01346{bottom:461.573333pt;}
.y1f6_c01346{bottom:462.333333pt;}
.y1f5_c01346{bottom:463.106667pt;}
.y1fb_c01346{bottom:463.866667pt;}
.y1f2_c01346{bottom:465.413333pt;}
.y1f7_c01346{bottom:466.173333pt;}
.y1f3_c01346{bottom:469.253333pt;}
.y1f8_c01346{bottom:472.320000pt;}
.y1f1_c01346{bottom:473.853333pt;}
.y1f4_c01346{bottom:474.626667pt;}
.y1f0_c01346{bottom:475.386667pt;}
.y1ef_c01346{bottom:477.693333pt;}
.y1ee_c01346{bottom:480.000000pt;}
.y1ed_c01346{bottom:483.066667pt;}
.y1ec_c01346{bottom:483.840000pt;}
.y1eb_c01346{bottom:486.146667pt;}
.y1ea_c01346{bottom:488.453333pt;}
.y1e6_c01346{bottom:493.053333pt;}
.y1e9_c01346{bottom:493.826667pt;}
.y1e5_c01346{bottom:495.360000pt;}
.y1e8_c01346{bottom:496.133333pt;}
.y1e7_c01346{bottom:496.893333pt;}
.y1e4_c01346{bottom:499.973333pt;}
.y1e2_c01346{bottom:504.573333pt;}
.y1df_c01346{bottom:507.653333pt;}
.y1e3_c01346{bottom:508.413333pt;}
.y1e1_c01346{bottom:509.186667pt;}
.y1de_c01346{bottom:509.946667pt;}
.y1e0_c01346{bottom:511.493333pt;}
.y1db_c01346{bottom:512.253333pt;}
.y1da_c01346{bottom:513.026667pt;}
.y1dd_c01346{bottom:514.560000pt;}
.y1dc_c01346{bottom:515.333333pt;}
.y1d9_c01346{bottom:516.866667pt;}
.y1d6_c01346{bottom:523.013333pt;}
.y1d8_c01346{bottom:523.773333pt;}
.y1d5_c01346{bottom:525.306667pt;}
.y1d3_c01346{bottom:526.080000pt;}
.y1d2_c01346{bottom:526.853333pt;}
.y1d7_c01346{bottom:527.613333pt;}
.y1d1_c01346{bottom:529.146667pt;}
.y1d4_c01346{bottom:529.920000pt;}
.y1d0_c01346{bottom:532.226667pt;}
.y1cf_c01346{bottom:532.986667pt;}
.y1cc_c01346{bottom:536.826667pt;}
.y1cd_c01346{bottom:537.600000pt;}
.y1c9_c01346{bottom:539.133333pt;}
.y1ce_c01346{bottom:539.906667pt;}
.y1cb_c01346{bottom:540.666667pt;}
.y1c8_c01346{bottom:541.440000pt;}
.y1ca_c01346{bottom:542.213333pt;}
.y1c4_c01346{bottom:543.746667pt;}
.y1c7_c01346{bottom:544.506667pt;}
.y1c6_c01346{bottom:545.280000pt;}
.y1c5_c01346{bottom:547.586667pt;}
.y1c3_c01346{bottom:548.346667pt;}
.y1c2_c01346{bottom:550.653333pt;}
.y1c1_c01346{bottom:552.186667pt;}
.y1c0_c01346{bottom:552.960000pt;}
.y1bf_c01346{bottom:554.493333pt;}
.y1bc_c01346{bottom:555.266667pt;}
.y1ba_c01346{bottom:556.026667pt;}
.y1b8_c01346{bottom:556.800000pt;}
.y1bd_c01346{bottom:558.333333pt;}
.y1be_c01346{bottom:559.106667pt;}
.y1bb_c01346{bottom:559.866667pt;}
.y1b9_c01346{bottom:560.640000pt;}
.y1b7_c01346{bottom:562.173333pt;}
.y1b5_c01346{bottom:563.706667pt;}
.y1b6_c01346{bottom:564.480000pt;}
.y1b4_c01346{bottom:568.320000pt;}
.y1b2_c01346{bottom:569.093333pt;}
.y1b3_c01346{bottom:570.626667pt;}
.y1af_c01346{bottom:572.160000pt;}
.y1b0_c01346{bottom:572.933333pt;}
.y1b1_c01346{bottom:573.693333pt;}
.y1ae_c01346{bottom:574.466667pt;}
.y1ad_c01346{bottom:575.226667pt;}
.y1a9_c01346{bottom:576.773333pt;}
.y1aa_c01346{bottom:578.306667pt;}
.y1ac_c01346{bottom:581.373333pt;}
.y1a7_c01346{bottom:583.680000pt;}
.y1a8_c01346{bottom:585.986667pt;}
.y1a2_c01346{bottom:586.746667pt;}
.y1ab_c01346{bottom:587.520000pt;}
.y1a6_c01346{bottom:588.293333pt;}
.y1a3_c01346{bottom:589.826667pt;}
.y1a4_c01346{bottom:590.586667pt;}
.y19f_c01346{bottom:591.360000pt;}
.y1a1_c01346{bottom:592.133333pt;}
.y1a0_c01346{bottom:592.893333pt;}
.y19d_c01346{bottom:593.666667pt;}
.y19e_c01346{bottom:595.200000pt;}
.y19c_c01346{bottom:597.506667pt;}
.y1a5_c01346{bottom:599.040000pt;}
.y19a_c01346{bottom:599.813333pt;}
.y199_c01346{bottom:600.573333pt;}
.y198_c01346{bottom:601.346667pt;}
.y19b_c01346{bottom:602.106667pt;}
.y197_c01346{bottom:602.880000pt;}
.y195_c01346{bottom:603.653333pt;}
.y196_c01346{bottom:604.413333pt;}
.y194_c01346{bottom:605.186667pt;}
.y190_c01346{bottom:608.253333pt;}
.y192_c01346{bottom:609.026667pt;}
.y193_c01346{bottom:609.786667pt;}
.y18e_c01346{bottom:613.626667pt;}
.y18d_c01346{bottom:615.933333pt;}
.y18f_c01346{bottom:616.706667pt;}
.y18b_c01346{bottom:617.466667pt;}
.y189_c01346{bottom:618.240000pt;}
.y191_c01346{bottom:619.013333pt;}
.y18c_c01346{bottom:619.773333pt;}
.y18a_c01346{bottom:620.546667pt;}
.y188_c01346{bottom:622.853333pt;}
.y187_c01346{bottom:623.613333pt;}
.y186_c01346{bottom:624.386667pt;}
.y185_c01346{bottom:625.146667pt;}
.y183_c01346{bottom:625.920000pt;}
.y184_c01346{bottom:627.453333pt;}
.y181_c01346{bottom:629.760000pt;}
.y17f_c01346{bottom:630.533333pt;}
.y182_c01346{bottom:632.066667pt;}
.y17e_c01346{bottom:634.373333pt;}
.y17c_c01346{bottom:635.133333pt;}
.y17b_c01346{bottom:635.906667pt;}
.y17a_c01346{bottom:637.440000pt;}
.y17d_c01346{bottom:638.213333pt;}
.y179_c01346{bottom:641.280000pt;}
.y178_c01346{bottom:642.053333pt;}
.y180_c01346{bottom:645.120000pt;}
.y176_c01346{bottom:646.653333pt;}
.y172_c01346{bottom:648.186667pt;}
.y173_c01346{bottom:648.960000pt;}
.y171_c01346{bottom:649.733333pt;}
.y177_c01346{bottom:650.493333pt;}
.y174_c01346{bottom:652.026667pt;}
.y175_c01346{bottom:652.800000pt;}
.y16f_c01346{bottom:655.106667pt;}
.y170_c01346{bottom:655.866667pt;}
.y16e_c01346{bottom:659.706667pt;}
.y16c_c01346{bottom:661.253333pt;}
.y16d_c01346{bottom:663.546667pt;}
.y166_c01346{bottom:666.626667pt;}
.y168_c01346{bottom:668.160000pt;}
.y16a_c01346{bottom:668.933333pt;}
.y169_c01346{bottom:670.466667pt;}
.y167_c01346{bottom:671.226667pt;}
.y165_c01346{bottom:672.773333pt;}
.y163_c01346{bottom:675.066667pt;}
.y16b_c01346{bottom:677.373333pt;}
.y162_c01346{bottom:678.146667pt;}
.y164_c01346{bottom:678.906667pt;}
.y160_c01346{bottom:680.453333pt;}
.y15d_c01346{bottom:681.213333pt;}
.y15f_c01346{bottom:681.986667pt;}
.y161_c01346{bottom:682.746667pt;}
.y15e_c01346{bottom:683.520000pt;}
.y157_c01346{bottom:684.293333pt;}
.y15c_c01346{bottom:685.053333pt;}
.y158_c01346{bottom:685.826667pt;}
.y15b_c01346{bottom:686.586667pt;}
.y15a_c01346{bottom:687.360000pt;}
.y159_c01346{bottom:688.133333pt;}
.y156_c01346{bottom:690.426667pt;}
.y154_c01346{bottom:694.266667pt;}
.y153_c01346{bottom:695.813333pt;}
.y155_c01346{bottom:696.573333pt;}
.y151_c01346{bottom:697.346667pt;}
.y14f_c01346{bottom:698.106667pt;}
.y152_c01346{bottom:698.880000pt;}
.y150_c01346{bottom:699.653333pt;}
.y14a_c01346{bottom:700.413333pt;}
.y14e_c01346{bottom:701.186667pt;}
.y14d_c01346{bottom:701.946667pt;}
.y14c_c01346{bottom:702.720000pt;}
.y14b_c01346{bottom:703.493333pt;}
.y148_c01346{bottom:708.093333pt;}
.y147_c01346{bottom:708.866667pt;}
.y149_c01346{bottom:710.400000pt;}
.y143_c01346{bottom:712.706667pt;}
.y146_c01346{bottom:713.466667pt;}
.y13e_c01346{bottom:714.240000pt;}
.y144_c01346{bottom:715.013333pt;}
.y141_c01346{bottom:716.546667pt;}
.y140_c01346{bottom:718.080000pt;}
.y13f_c01346{bottom:718.853333pt;}
.y145_c01346{bottom:721.146667pt;}
.y13d_c01346{bottom:722.693333pt;}
.y13b_c01346{bottom:725.760000pt;}
.y142_c01346{bottom:726.533333pt;}
.y139_c01346{bottom:727.293333pt;}
.y13c_c01346{bottom:728.826667pt;}
.y137_c01346{bottom:729.600000pt;}
.y13a_c01346{bottom:731.133333pt;}
.y138_c01346{bottom:731.906667pt;}
.y136_c01346{bottom:734.213333pt;}
.y135_c01346{bottom:734.973333pt;}
.y134_c01346{bottom:738.813333pt;}
.y133_c01346{bottom:741.893333pt;}
.y12f_c01346{bottom:743.426667pt;}
.y130_c01346{bottom:744.186667pt;}
.y131_c01346{bottom:745.733333pt;}
.y132_c01346{bottom:746.493333pt;}
.y12e_c01346{bottom:748.800000pt;}
.y12d_c01346{bottom:750.333333pt;}
.y12a_c01346{bottom:751.866667pt;}
.y12b_c01346{bottom:752.640000pt;}
.y12c_c01346{bottom:753.413333pt;}
.y125_c01346{bottom:754.173333pt;}
.y128_c01346{bottom:754.946667pt;}
.y126_c01346{bottom:756.480000pt;}
.y129_c01346{bottom:758.013333pt;}
.y127_c01346{bottom:758.786667pt;}
.y122_c01346{bottom:759.546667pt;}
.y123_c01346{bottom:761.853333pt;}
.y121_c01346{bottom:764.160000pt;}
.y120_c01346{bottom:765.693333pt;}
.y11f_c01346{bottom:770.306667pt;}
.y124_c01346{bottom:771.066667pt;}
.y11c_c01346{bottom:774.906667pt;}
.y11d_c01346{bottom:777.213333pt;}
.y11e_c01346{bottom:777.986667pt;}
.y11a_c01346{bottom:778.746667pt;}
.y119_c01346{bottom:780.293333pt;}
.y11b_c01346{bottom:784.893333pt;}
.y116_c01346{bottom:787.973333pt;}
.y113_c01346{bottom:788.733333pt;}
.y118_c01346{bottom:789.506667pt;}
.y117_c01346{bottom:790.266667pt;}
.y115_c01346{bottom:791.813333pt;}
.y110_c01346{bottom:792.573333pt;}
.y114_c01346{bottom:793.346667pt;}
.y111_c01346{bottom:794.106667pt;}
.y112_c01346{bottom:794.880000pt;}
.y10f_c01346{bottom:804.093333pt;}
.y10b_c01346{bottom:804.866667pt;}
.y10a_c01346{bottom:807.173333pt;}
.y109_c01346{bottom:807.933333pt;}
.y10d_c01346{bottom:808.706667pt;}
.y10e_c01346{bottom:809.466667pt;}
.y10c_c01346{bottom:810.240000pt;}
.y108_c01346{bottom:815.613333pt;}
.y106_c01346{bottom:817.146667pt;}
.y107_c01346{bottom:819.453333pt;}
.y103_c01346{bottom:820.226667pt;}
.y100_c01346{bottom:820.986667pt;}
.yff_c01346{bottom:822.533333pt;}
.y104_c01346{bottom:823.293333pt;}
.y105_c01346{bottom:824.066667pt;}
.yfe_c01346{bottom:824.826667pt;}
.yfd_c01346{bottom:827.133333pt;}
.y101_c01346{bottom:828.666667pt;}
.y102_c01346{bottom:830.973333pt;}
.yfa_c01346{bottom:834.053333pt;}
.yfc_c01346{bottom:834.813333pt;}
.yfb_c01346{bottom:836.346667pt;}
.yf8_c01346{bottom:837.120000pt;}
.yf5_c01346{bottom:838.653333pt;}
.yf9_c01346{bottom:840.186667pt;}
.yf6_c01346{bottom:841.733333pt;}
.yf7_c01346{bottom:842.493333pt;}
.yf4_c01346{bottom:844.800000pt;}
.yef_c01346{bottom:847.866667pt;}
.yf0_c01346{bottom:848.640000pt;}
.yed_c01346{bottom:849.413333pt;}
.yf1_c01346{bottom:850.173333pt;}
.yf3_c01346{bottom:850.946667pt;}
.yf2_c01346{bottom:851.706667pt;}
.ye9_c01346{bottom:854.013333pt;}
.yee_c01346{bottom:854.786667pt;}
.yec_c01346{bottom:856.320000pt;}
.yeb_c01346{bottom:857.093333pt;}
.yea_c01346{bottom:857.853333pt;}
.ye8_c01346{bottom:858.626667pt;}
.ye6_c01346{bottom:863.226667pt;}
.ye7_c01346{bottom:866.306667pt;}
.ye3_c01346{bottom:867.840000pt;}
.ye4_c01346{bottom:869.373333pt;}
.ye5_c01346{bottom:870.146667pt;}
.ye2_c01346{bottom:872.453333pt;}
.ye1_c01346{bottom:873.213333pt;}
.ye0_c01346{bottom:873.986667pt;}
.ydf_c01346{bottom:874.746667pt;}
.ydd_c01346{bottom:879.360000pt;}
.ydc_c01346{bottom:880.133333pt;}
.yde_c01346{bottom:881.666667pt;}
.yd8_c01346{bottom:883.973333pt;}
.ydb_c01346{bottom:884.733333pt;}
.yda_c01346{bottom:885.506667pt;}
.yd9_c01346{bottom:886.266667pt;}
.yd5_c01346{bottom:887.813333pt;}
.yd7_c01346{bottom:888.573333pt;}
.yd6_c01346{bottom:889.346667pt;}
.yd4_c01346{bottom:895.493333pt;}
.yd3_c01346{bottom:896.253333pt;}
.yd2_c01346{bottom:897.026667pt;}
.ycf_c01346{bottom:899.333333pt;}
.yd0_c01346{bottom:900.866667pt;}
.yd1_c01346{bottom:901.626667pt;}
.ycd_c01346{bottom:902.400000pt;}
.yce_c01346{bottom:903.173333pt;}
.ycc_c01346{bottom:903.933333pt;}
.ycb_c01346{bottom:904.706667pt;}
.yca_c01346{bottom:905.466667pt;}
.yc7_c01346{bottom:910.080000pt;}
.yc8_c01346{bottom:911.613333pt;}
.yc9_c01346{bottom:913.146667pt;}
.yc5_c01346{bottom:914.693333pt;}
.yc3_c01346{bottom:915.453333pt;}
.yc6_c01346{bottom:916.986667pt;}
.yc1_c01346{bottom:918.533333pt;}
.yc4_c01346{bottom:919.293333pt;}
.yc0_c01346{bottom:920.066667pt;}
.yc2_c01346{bottom:920.826667pt;}
.ybd_c01346{bottom:926.973333pt;}
.ybe_c01346{bottom:927.746667pt;}
.ybf_c01346{bottom:929.280000pt;}
.ybb_c01346{bottom:931.586667pt;}
.ybc_c01346{bottom:932.346667pt;}
.yb9_c01346{bottom:933.893333pt;}
.yba_c01346{bottom:934.653333pt;}
.yb8_c01346{bottom:935.426667pt;}
.yb7_c01346{bottom:936.186667pt;}
.yb6_c01346{bottom:940.026667pt;}
.yb5_c01346{bottom:943.866667pt;}
.yb4_c01346{bottom:944.640000pt;}
.yb3_c01346{bottom:945.413333pt;}
.yaf_c01346{bottom:946.946667pt;}
.yae_c01346{bottom:948.480000pt;}
.yb1_c01346{bottom:949.253333pt;}
.yb2_c01346{bottom:950.013333pt;}
.yb0_c01346{bottom:950.786667pt;}
.yad_c01346{bottom:952.320000pt;}
.yaa_c01346{bottom:957.693333pt;}
.yab_c01346{bottom:960.773333pt;}
.yac_c01346{bottom:961.533333pt;}
.ya8_c01346{bottom:963.066667pt;}
.ya9_c01346{bottom:963.840000pt;}
.ya7_c01346{bottom:964.613333pt;}
.ya6_c01346{bottom:965.373333pt;}
.ya3_c01346{bottom:966.146667pt;}
.ya2_c01346{bottom:967.680000pt;}
.ya5_c01346{bottom:971.520000pt;}
.ya0_c01346{bottom:973.826667pt;}
.y9e_c01346{bottom:974.586667pt;}
.y9c_c01346{bottom:976.133333pt;}
.y9f_c01346{bottom:976.893333pt;}
.ya4_c01346{bottom:977.666667pt;}
.ya1_c01346{bottom:978.426667pt;}
.y9d_c01346{bottom:979.200000pt;}
.y99_c01346{bottom:980.733333pt;}
.y9b_c01346{bottom:981.506667pt;}
.y9a_c01346{bottom:982.266667pt;}
.y97_c01346{bottom:983.040000pt;}
.y98_c01346{bottom:983.813333pt;}
.y93_c01346{bottom:989.946667pt;}
.y95_c01346{bottom:990.720000pt;}
.y92_c01346{bottom:991.493333pt;}
.y90_c01346{bottom:992.253333pt;}
.y8b_c01346{bottom:994.560000pt;}
.y94_c01346{bottom:995.333333pt;}
.y8f_c01346{bottom:996.093333pt;}
.y91_c01346{bottom:996.866667pt;}
.y8c_c01346{bottom:998.400000pt;}
.y96_c01346{bottom:1000.706667pt;}
.y8d_c01346{bottom:1003.773333pt;}
.y8a_c01346{bottom:1004.546667pt;}
.y8e_c01346{bottom:1006.080000pt;}
.y89_c01346{bottom:1007.613333pt;}
.y86_c01346{bottom:1008.386667pt;}
.y88_c01346{bottom:1009.920000pt;}
.y87_c01346{bottom:1010.693333pt;}
.y85_c01346{bottom:1011.453333pt;}
.y84_c01346{bottom:1014.533333pt;}
.y82_c01346{bottom:1023.746667pt;}
.y83_c01346{bottom:1024.506667pt;}
.y81_c01346{bottom:1025.280000pt;}
.y80_c01346{bottom:1026.053333pt;}
.y7b_c01346{bottom:1026.813333pt;}
.y7d_c01346{bottom:1027.586667pt;}
.y7f_c01346{bottom:1028.346667pt;}
.y7e_c01346{bottom:1029.120000pt;}
.y7c_c01346{bottom:1029.893333pt;}
.y3_c01346{bottom:1031.426667pt;}
.y7a_c01346{bottom:1033.733333pt;}
.y77_c01346{bottom:1036.026667pt;}
.y75_c01346{bottom:1036.800000pt;}
.y79_c01346{bottom:1037.573333pt;}
.y76_c01346{bottom:1038.333333pt;}
.y72_c01346{bottom:1039.866667pt;}
.y70_c01346{bottom:1040.640000pt;}
.y74_c01346{bottom:1041.413333pt;}
.y78_c01346{bottom:1042.173333pt;}
.y73_c01346{bottom:1043.706667pt;}
.y71_c01346{bottom:1045.253333pt;}
.y6f_c01346{bottom:1046.013333pt;}
.y6c_c01346{bottom:1051.386667pt;}
.y6d_c01346{bottom:1052.160000pt;}
.y68_c01346{bottom:1052.933333pt;}
.y6a_c01346{bottom:1053.693333pt;}
.y6b_c01346{bottom:1055.226667pt;}
.y67_c01346{bottom:1056.000000pt;}
.y69_c01346{bottom:1057.533333pt;}
.y66_c01346{bottom:1059.066667pt;}
.y6e_c01346{bottom:1060.613333pt;}
.y65_c01346{bottom:1061.373333pt;}
.y63_c01346{bottom:1068.293333pt;}
.y64_c01346{bottom:1069.826667pt;}
.y62_c01346{bottom:1072.893333pt;}
.y5f_c01346{bottom:1074.426667pt;}
.y60_c01346{bottom:1075.200000pt;}
.y61_c01346{bottom:1076.733333pt;}
.y5e_c01346{bottom:1077.506667pt;}
.y5b_c01346{bottom:1082.106667pt;}
.y5d_c01346{bottom:1082.880000pt;}
.y5c_c01346{bottom:1083.653333pt;}
.y5a_c01346{bottom:1086.720000pt;}
.y55_c01346{bottom:1087.493333pt;}
.y56_c01346{bottom:1088.253333pt;}
.y59_c01346{bottom:1089.026667pt;}
.y58_c01346{bottom:1089.786667pt;}
.y57_c01346{bottom:1090.560000pt;}
.y53_c01346{bottom:1092.093333pt;}
.y54_c01346{bottom:1092.866667pt;}
.y2a2_c01346{bottom:1098.240000pt;}
.y50_c01346{bottom:1099.013333pt;}
.y4f_c01346{bottom:1099.773333pt;}
.y4e_c01346{bottom:1100.546667pt;}
.y52_c01346{bottom:1102.080000pt;}
.y4c_c01346{bottom:1102.853333pt;}
.y51_c01346{bottom:1103.613333pt;}
.y4a_c01346{bottom:1104.386667pt;}
.y4d_c01346{bottom:1105.146667pt;}
.y4b_c01346{bottom:1106.693333pt;}
.y48_c01346{bottom:1115.133333pt;}
.y43_c01346{bottom:1115.906667pt;}
.y44_c01346{bottom:1116.666667pt;}
.y49_c01346{bottom:1117.440000pt;}
.y40_c01346{bottom:1118.973333pt;}
.y41_c01346{bottom:1119.746667pt;}
.y45_c01346{bottom:1120.506667pt;}
.y47_c01346{bottom:1121.280000pt;}
.y42_c01346{bottom:1122.053333pt;}
.y3e_c01346{bottom:1123.586667pt;}
.y3f_c01346{bottom:1124.346667pt;}
.y46_c01346{bottom:1125.120000pt;}
.y3a_c01346{bottom:1129.733333pt;}
.y3b_c01346{bottom:1130.493333pt;}
.y3d_c01346{bottom:1131.266667pt;}
.y38_c01346{bottom:1132.026667pt;}
.y3c_c01346{bottom:1132.800000pt;}
.y37_c01346{bottom:1133.573333pt;}
.y32_c01346{bottom:1135.106667pt;}
.y39_c01346{bottom:1135.866667pt;}
.y36_c01346{bottom:1136.640000pt;}
.y34_c01346{bottom:1137.413333pt;}
.y35_c01346{bottom:1138.173333pt;}
.y31_c01346{bottom:1138.946667pt;}
.y33_c01346{bottom:1139.706667pt;}
.y2a1_c01346{bottom:1142.786667pt;}
.y2f_c01346{bottom:1145.853333pt;}
.y2e_c01346{bottom:1146.626667pt;}
.y30_c01346{bottom:1148.933333pt;}
.y2d_c01346{bottom:1150.466667pt;}
.y2b_c01346{bottom:1152.773333pt;}
.y29_c01346{bottom:1155.066667pt;}
.y2a_c01346{bottom:1155.840000pt;}
.y28_c01346{bottom:1161.986667pt;}
.y2c_c01346{bottom:1164.293333pt;}
.y27_c01346{bottom:1165.053333pt;}
.y23_c01346{bottom:1165.826667pt;}
.y26_c01346{bottom:1166.586667pt;}
.y25_c01346{bottom:1168.133333pt;}
.y24_c01346{bottom:1168.893333pt;}
.y22_c01346{bottom:1170.426667pt;}
.y21_c01346{bottom:1175.813333pt;}
.y20_c01346{bottom:1178.880000pt;}
.y1b_c01346{bottom:1180.413333pt;}
.y1a_c01346{bottom:1181.186667pt;}
.y1e_c01346{bottom:1181.946667pt;}
.y1f_c01346{bottom:1182.720000pt;}
.y1d_c01346{bottom:1183.493333pt;}
.y1c_c01346{bottom:1185.026667pt;}
.y19_c01346{bottom:1185.786667pt;}
.y18_c01346{bottom:1186.560000pt;}
.y2a0_c01346{bottom:1187.333333pt;}
.y17_c01346{bottom:1191.173333pt;}
.y16_c01346{bottom:1193.466667pt;}
.y14_c01346{bottom:1195.773333pt;}
.y13_c01346{bottom:1196.546667pt;}
.y12_c01346{bottom:1198.080000pt;}
.y15_c01346{bottom:1198.853333pt;}
.y10_c01346{bottom:1200.386667pt;}
.y11_c01346{bottom:1201.146667pt;}
.y29f_c01346{bottom:1204.226667pt;}
.ye_c01346{bottom:1208.066667pt;}
.yd_c01346{bottom:1208.826667pt;}
.yf_c01346{bottom:1209.600000pt;}
.yc_c01346{bottom:1210.373333pt;}
.yb_c01346{bottom:1211.133333pt;}
.y9_c01346{bottom:1211.906667pt;}
.y7_c01346{bottom:1212.666667pt;}
.y5_c01346{bottom:1214.213333pt;}
.ya_c01346{bottom:1214.973333pt;}
.y4_c01346{bottom:1215.746667pt;}
.y8_c01346{bottom:1216.506667pt;}
.y6_c01346{bottom:1217.280000pt;}
.y1_c01346{bottom:1251.066667pt;}
.y2_c01346{bottom:1251.840000pt;}
.y29d_c01346{bottom:1284.093333pt;}
.y29e_c01346{bottom:1287.933333pt;}
.h3_c01346{height:2.764500pt;}
.h19_c01346{height:4.799479pt;}
.hd_c01346{height:5.519401pt;}
.h16_c01346{height:8.303099pt;}
.h14_c01346{height:11.038802pt;}
.h4_c01346{height:13.822500pt;}
.h1b_c01346{height:16.606198pt;}
.h1a_c01346{height:19.341901pt;}
.h15_c01346{height:22.125599pt;}
.h12_c01346{height:24.861302pt;}
.h2_c01346{height:27.645000pt;}
.h13_c01346{height:30.428698pt;}
.h20_c01346{height:30.703333pt;}
.hc_c01346{height:33.164401pt;}
.h8_c01346{height:35.948099pt;}
.h1f_c01346{height:38.374167pt;}
.h11_c01346{height:38.683802pt;}
.h7_c01346{height:41.467500pt;}
.h5_c01346{height:44.251198pt;}
.hb_c01346{height:46.986901pt;}
.hf_c01346{height:49.770599pt;}
.h1d_c01346{height:50.080234pt;}
.h9_c01346{height:52.506302pt;}
.ha_c01346{height:55.290000pt;}
.he_c01346{height:58.073698pt;}
.h1c_c01346{height:60.809401pt;}
.h10_c01346{height:63.593099pt;}
.h17_c01346{height:66.328802pt;}
.h18_c01346{height:69.112500pt;}
.h1e_c01346{height:71.896198pt;}
.h6_c01346{height:74.631901pt;}
.h22_c01346{height:82.935000pt;}
.h23_c01346{height:154.831198pt;}
.h21_c01346{height:215.640599pt;}
.h1_c01346{height:1345.333333pt;}
.h0_c01346{height:1345.533333pt;}
.w0_c01346{width:963.066667pt;}
.w1_c01346{width:963.333333pt;}
.x0_c01346{left:0.000000pt;}
.x3_c01346{left:136.706667pt;}
.xd4_c01346{left:151.293333pt;}
.xd5_c01346{left:157.440000pt;}
.x119_c01346{left:158.973333pt;}
.x11a_c01346{left:167.426667pt;}
.x113_c01346{left:172.026667pt;}
.xe4_c01346{left:173.573333pt;}
.x11c_c01346{left:177.413333pt;}
.xc3_c01346{left:178.946667pt;}
.xf0_c01346{left:180.480000pt;}
.xe5_c01346{left:182.013333pt;}
.x93_c01346{left:184.320000pt;}
.x39_c01346{left:186.626667pt;}
.xa0_c01346{left:188.160000pt;}
.x4a_c01346{left:189.693333pt;}
.x40_c01346{left:191.226667pt;}
.x1_c01346{left:192.773333pt;}
.xf5_c01346{left:195.066667pt;}
.xfc_c01346{left:197.373333pt;}
.x3a_c01346{left:198.906667pt;}
.x2_c01346{left:200.453333pt;}
.xf7_c01346{left:202.746667pt;}
.xb1_c01346{left:204.293333pt;}
.x7f_c01346{left:205.826667pt;}
.x3b_c01346{left:208.133333pt;}
.x66_c01346{left:210.426667pt;}
.xad_c01346{left:211.973333pt;}
.x16_c01346{left:213.506667pt;}
.x32_c01346{left:215.813333pt;}
.x17_c01346{left:217.346667pt;}
.xa1_c01346{left:220.413333pt;}
.xeb_c01346{left:221.946667pt;}
.x125_c01346{left:223.493333pt;}
.x76_c01346{left:225.786667pt;}
.x118_c01346{left:228.093333pt;}
.xdc_c01346{left:229.626667pt;}
.xc4_c01346{left:231.173333pt;}
.x4_c01346{left:232.706667pt;}
.xd1_c01346{left:234.240000pt;}
.x80_c01346{left:236.546667pt;}
.x94_c01346{left:238.853333pt;}
.x9c_c01346{left:241.146667pt;}
.x5a_c01346{left:243.453333pt;}
.xff_c01346{left:245.760000pt;}
.x18_c01346{left:247.293333pt;}
.xae_c01346{left:249.600000pt;}
.xdf_c01346{left:251.133333pt;}
.x9d_c01346{left:253.440000pt;}
.x95_c01346{left:254.973333pt;}
.x81_c01346{left:256.506667pt;}
.xf9_c01346{left:258.053333pt;}
.x8d_c01346{left:260.346667pt;}
.xb9_c01346{left:262.653333pt;}
.xaf_c01346{left:264.186667pt;}
.xe0_c01346{left:265.733333pt;}
.x24_c01346{left:267.266667pt;}
.x5b_c01346{left:269.573333pt;}
.xc6_c01346{left:271.866667pt;}
.x120_c01346{left:274.173333pt;}
.x19_c01346{left:275.706667pt;}
.x4b_c01346{left:277.253333pt;}
.x53_c01346{left:279.546667pt;}
.x10a_c01346{left:281.853333pt;}
.x105_c01346{left:284.160000pt;}
.x41_c01346{left:286.466667pt;}
.x87_c01346{left:288.000000pt;}
.x4c_c01346{left:291.066667pt;}
.xcc_c01346{left:294.146667pt;}
.xba_c01346{left:295.680000pt;}
.xe8_c01346{left:297.213333pt;}
.x1a_c01346{left:298.746667pt;}
.xa6_c01346{left:301.826667pt;}
.x82_c01346{left:304.133333pt;}
.x96_c01346{left:305.666667pt;}
.x77_c01346{left:307.200000pt;}
.xa7_c01346{left:308.733333pt;}
.xcd_c01346{left:310.266667pt;}
.x54_c01346{left:312.572971pt;}
.x3c_c01346{left:314.106667pt;}
.x5_c01346{left:315.653333pt;}
.x8e_c01346{left:317.186667pt;}
.x83_c01346{left:318.720000pt;}
.x10f_c01346{left:320.253333pt;}
.x42_c01346{left:322.560000pt;}
.x25_c01346{left:326.400000pt;}
.x1b_c01346{left:329.466667pt;}
.x126_c01346{left:331.013333pt;}
.x67_c01346{left:333.306667pt;}
.x78_c01346{left:334.853333pt;}
.x43_c01346{left:336.386667pt;}
.x5c_c01346{left:338.693333pt;}
.xf1_c01346{left:340.226667pt;}
.x6_c01346{left:343.293333pt;}
.xfd_c01346{left:344.826667pt;}
.x5d_c01346{left:346.373333pt;}
.xbb_c01346{left:349.440000pt;}
.x33_c01346{left:350.973333pt;}
.x26_c01346{left:354.053333pt;}
.x7_c01346{left:357.120000pt;}
.x79_c01346{left:358.653333pt;}
.xf8_c01346{left:360.186667pt;}
.x5e_c01346{left:362.493333pt;}
.x1c_c01346{left:364.026667pt;}
.xd8_c01346{left:366.333333pt;}
.xbe_c01346{left:370.946667pt;}
.x106_c01346{left:372.480000pt;}
.x97_c01346{left:374.013333pt;}
.x44_c01346{left:376.320000pt;}
.xa2_c01346{left:378.626667pt;}
.x8f_c01346{left:381.693333pt;}
.x45_c01346{left:384.000000pt;}
.xc7_c01346{left:385.533333pt;}
.x27_c01346{left:387.066667pt;}
.xc0_c01346{left:388.613333pt;}
.x8_c01346{left:390.146667pt;}
.xe7_c01346{left:391.680000pt;}
.x4d_c01346{left:393.986667pt;}
.x100_c01346{left:395.520000pt;}
.xfa_c01346{left:397.053333pt;}
.xb2_c01346{left:400.133333pt;}
.x5f_c01346{left:401.666667pt;}
.x11b_c01346{left:403.200000pt;}
.xb0_c01346{left:406.266667pt;}
.x4e_c01346{left:408.573333pt;}
.x7a_c01346{left:411.653333pt;}
.x1d_c01346{left:413.946667pt;}
.x84_c01346{left:417.786667pt;}
.xec_c01346{left:419.333333pt;}
.x68_c01346{left:420.866667pt;}
.x60_c01346{left:422.400000pt;}
.xf2_c01346{left:424.706667pt;}
.x9_c01346{left:427.013333pt;}
.xbc_c01346{left:428.546667pt;}
.x6d_c01346{left:430.853333pt;}
.x3d_c01346{left:433.146667pt;}
.x101_c01346{left:435.453333pt;}
.x34_c01346{left:436.986667pt;}
.x55_c01346{left:438.533333pt;}
.x28_c01346{left:440.826667pt;}
.xbf_c01346{left:443.133333pt;}
.x69_c01346{left:444.666667pt;}
.x111_c01346{left:446.213333pt;}
.x98_c01346{left:448.506667pt;}
.xe6_c01346{left:450.053333pt;}
.xa_c01346{left:451.586667pt;}
.x9e_c01346{left:453.893333pt;}
.x6e_c01346{left:455.426667pt;}
.x35_c01346{left:456.960000pt;}
.xe9_c01346{left:458.493333pt;}
.x114_c01346{left:460.026667pt;}
.xd2_c01346{left:465.413333pt;}
.xa3_c01346{left:468.480000pt;}
.xa8_c01346{left:470.786667pt;}
.xe1_c01346{left:473.093333pt;}
.x115_c01346{left:474.626667pt;}
.xc8_c01346{left:476.160000pt;}
.x3e_c01346{left:477.693333pt;}
.xdd_c01346{left:480.000000pt;}
.xb3_c01346{left:481.533333pt;}
.x6a_c01346{left:483.066667pt;}
.x1e_c01346{left:484.613333pt;}
.x10d_c01346{left:487.680000pt;}
.xce_c01346{left:491.520000pt;}
.x88_c01346{left:493.826667pt;}
.x122_c01346{left:495.360000pt;}
.xb_c01346{left:496.893333pt;}
.x6f_c01346{left:499.200000pt;}
.x1f_c01346{left:500.733333pt;}
.xea_c01346{left:502.266667pt;}
.x61_c01346{left:503.813333pt;}
.xd6_c01346{left:505.346667pt;}
.x62_c01346{left:507.653333pt;}
.x29_c01346{left:509.186667pt;}
.x90_c01346{left:510.720000pt;}
.x104_c01346{left:512.253333pt;}
.xb5_c01346{left:514.560000pt;}
.xa4_c01346{left:516.866667pt;}
.x4f_c01346{left:519.173333pt;}
.xe2_c01346{left:521.466667pt;}
.xd7_c01346{left:523.013333pt;}
.x10e_c01346{left:525.306667pt;}
.xcf_c01346{left:527.613333pt;}
.x2a_c01346{left:530.693333pt;}
.xc_c01346{left:532.986667pt;}
.x102_c01346{left:535.293333pt;}
.x20_c01346{left:536.826667pt;}
.xe3_c01346{left:538.373333pt;}
.xb6_c01346{left:541.440000pt;}
.xc9_c01346{left:542.973333pt;}
.xd9_c01346{left:544.506667pt;}
.x63_c01346{left:546.813333pt;}
.xf3_c01346{left:549.120000pt;}
.x123_c01346{left:551.426667pt;}
.x46_c01346{left:552.960000pt;}
.x107_c01346{left:554.493333pt;}
.x99_c01346{left:557.573333pt;}
.xed_c01346{left:561.413333pt;}
.xca_c01346{left:563.706667pt;}
.x70_c01346{left:565.253333pt;}
.x89_c01346{left:567.546667pt;}
.x2b_c01346{left:569.853333pt;}
.xa9_c01346{left:571.386667pt;}
.x112_c01346{left:572.933333pt;}
.x9f_c01346{left:574.466667pt;}
.x2c_c01346{left:576.773333pt;}
.x36_c01346{left:578.306667pt;}
.x116_c01346{left:580.613333pt;}
.x64_c01346{left:582.146667pt;}
.x9a_c01346{left:585.213333pt;}
.x47_c01346{left:586.746667pt;}
.xd_c01346{left:588.293333pt;}
.x2d_c01346{left:590.586667pt;}
.x71_c01346{left:592.133333pt;}
.xb4_c01346{left:595.200000pt;}
.x50_c01346{left:596.733333pt;}
.xda_c01346{left:598.266667pt;}
.xf4_c01346{left:599.813333pt;}
.xb7_c01346{left:602.880000pt;}
.x56_c01346{left:604.413333pt;}
.x117_c01346{left:605.946667pt;}
.x7b_c01346{left:607.493333pt;}
.xaa_c01346{left:609.026667pt;}
.x21_c01346{left:611.333333pt;}
.x11e_c01346{left:612.866667pt;}
.x10b_c01346{left:614.400000pt;}
.x2e_c01346{left:615.933333pt;}
.x8a_c01346{left:618.240000pt;}
.xdb_c01346{left:620.546667pt;}
.xc1_c01346{left:622.080000pt;}
.xe_c01346{left:623.613333pt;}
.x9b_c01346{left:625.920000pt;}
.x85_c01346{left:628.226667pt;}
.x11d_c01346{left:629.760000pt;}
.xd3_c01346{left:632.066667pt;}
.x108_c01346{left:634.373333pt;}
.x11f_c01346{left:635.906667pt;}
.x22_c01346{left:637.440000pt;}
.xc2_c01346{left:639.746667pt;}
.x8b_c01346{left:642.053333pt;}
.xee_c01346{left:644.346667pt;}
.x57_c01346{left:646.653333pt;}
.xb8_c01346{left:648.186667pt;}
.x51_c01346{left:649.733333pt;}
.x86_c01346{left:651.266667pt;}
.xcb_c01346{left:653.573333pt;}
.x10c_c01346{left:655.106667pt;}
.x124_c01346{left:656.640000pt;}
.x7c_c01346{left:658.946667pt;}
.x109_c01346{left:661.253333pt;}
.x72_c01346{left:664.320000pt;}
.xab_c01346{left:665.853333pt;}
.x2f_c01346{left:667.386667pt;}
.x8c_c01346{left:668.933333pt;}
.x48_c01346{left:672.772800pt;}
.xf_c01346{left:675.066667pt;}
.x30_c01346{left:676.613333pt;}
.x73_c01346{left:678.146667pt;}
.x6b_c01346{left:679.680000pt;}
.x58_c01346{left:681.986667pt;}
.xfe_c01346{left:685.053333pt;}
.xf6_c01346{left:687.360000pt;}
.x110_c01346{left:691.200000pt;}
.x31_c01346{left:692.733333pt;}
.x10_c01346{left:694.266667pt;}
.x65_c01346{left:696.573333pt;}
.xfb_c01346{left:698.106667pt;}
.x7d_c01346{left:701.186667pt;}
.x52_c01346{left:703.493333pt;}
.x11_c01346{left:706.560000pt;}
.xde_c01346{left:708.866667pt;}
.xd0_c01346{left:711.173333pt;}
.x91_c01346{left:713.466667pt;}
.x74_c01346{left:715.773333pt;}
.x92_c01346{left:717.306667pt;}
.x103_c01346{left:718.853333pt;}
.xef_c01346{left:721.146667pt;}
.x37_c01346{left:722.693333pt;}
.x6c_c01346{left:724.986667pt;}
.x3f_c01346{left:726.533333pt;}
.xbd_c01346{left:730.373333pt;}
.x12_c01346{left:732.666667pt;}
.x23_c01346{left:734.213333pt;}
.x38_c01346{left:736.506667pt;}
.x121_c01346{left:738.813333pt;}
.x13_c01346{left:740.346667pt;}
.xac_c01346{left:742.653333pt;}
.x14_c01346{left:744.960000pt;}
.x59_c01346{left:746.493333pt;}
.xc5_c01346{left:748.800000pt;}
.x15_c01346{left:750.333333pt;}
.x49_c01346{left:751.866667pt;}
.x7e_c01346{left:758.786667pt;}
.xa5_c01346{left:761.093333pt;}
.x75_c01346{left:763.386667pt;}
.x12a_c01346{left:815.613333pt;}
.x12c_c01346{left:826.373333pt;}
.x129_c01346{left:856.320000pt;}
.x130_c01346{left:859.386667pt;}
.x12b_c01346{left:864.000000pt;}
.x127_c01346{left:910.080000pt;}
.x12d_c01346{left:911.613333pt;}
.x128_c01346{left:920.826667pt;}
.x12e_c01346{left:943.866667pt;}
.x12f_c01346{left:946.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_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_ec86f5b84411f89840b3990c.woff2')format("woff");}.ff1_c01347{font-family:ff1_c01347;line-height:1.109863;font-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_c01347{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m159_c01347{transform:matrix(0.019225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019225,0.000000,0.000000,0.250000,0,0);}
.m18_c01347{transform:matrix(0.046550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046550,0.000000,0.000000,0.250000,0,0);}
.ma7_c01347{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);}
.m8f_c01347{transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086950,0.000000,0.000000,0.250000,0,0);}
.m7_c01347{transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088975,0.000000,0.000000,0.250000,0,0);}
.m142_c01347{transform:matrix(0.100100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100100,0.000000,0.000000,0.250000,0,0);}
.m72_c01347{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.mc2_c01347{transform:matrix(0.105175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105175,0.000000,0.000000,0.250000,0,0);}
.md7_c01347{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.m126_c01347{transform:matrix(0.121400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121400,0.000000,0.000000,0.250000,0,0);}
.m156_c01347{transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123100,0.000000,0.000000,0.250000,0,0);}
.m1_c01347{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.m172_c01347{transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126650,0.000000,0.000000,0.250000,0,0);}
.mb9_c01347{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m89_c01347{transform:matrix(0.130175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130175,0.000000,0.000000,0.250000,0,0);}
.mab_c01347{transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132450,0.000000,0.000000,0.250000,0,0);}
.mc_c01347{transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135800,0.000000,0.000000,0.250000,0,0);}
.mc9_c01347{transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135950,0.000000,0.000000,0.250000,0,0);}
.m162_c01347{transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136650,0.000000,0.000000,0.250000,0,0);}
.mc6_c01347{transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137300,0.000000,0.000000,0.250000,0,0);}
.m3b_c01347{transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137675,0.000000,0.000000,0.250000,0,0);}
.mb2_c01347{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);}
.mf_c01347{transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141625,0.000000,0.000000,0.250000,0,0);}
.m96_c01347{transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142200,0.000000,0.000000,0.250000,0,0);}
.m150_c01347{transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142825,0.000000,0.000000,0.250000,0,0);}
.m0_c01347{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m120_c01347{transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145975,0.000000,0.000000,0.250000,0,0);}
.m153_c01347{transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146200,0.000000,0.000000,0.250000,0,0);}
.m4b_c01347{transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146375,0.000000,0.000000,0.250000,0,0);}
.m81_c01347{transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146425,0.000000,0.000000,0.250000,0,0);}
.me6_c01347{transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147025,0.000000,0.000000,0.250000,0,0);}
.m11d_c01347{transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147925,0.000000,0.000000,0.250000,0,0);}
.m128_c01347{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m1f_c01347{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m14a_c01347{transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150750,0.000000,0.000000,0.250000,0,0);}
.m13d_c01347{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);}
.m10e_c01347{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);}
.m10a_c01347{transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154325,0.000000,0.000000,0.250000,0,0);}
.m110_c01347{transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155000,0.000000,0.000000,0.250000,0,0);}
.m148_c01347{transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156475,0.000000,0.000000,0.250000,0,0);}
.ma6_c01347{transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159925,0.000000,0.000000,0.250000,0,0);}
.m106_c01347{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m127_c01347{transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160725,0.000000,0.000000,0.250000,0,0);}
.mb1_c01347{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.m15b_c01347{transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161800,0.000000,0.000000,0.250000,0,0);}
.m138_c01347{transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162325,0.000000,0.000000,0.250000,0,0);}
.m111_c01347{transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162900,0.000000,0.000000,0.250000,0,0);}
.mb_c01347{transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163225,0.000000,0.000000,0.250000,0,0);}
.m75_c01347{transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164525,0.000000,0.000000,0.250000,0,0);}
.mff_c01347{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.m15e_c01347{transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165450,0.000000,0.000000,0.250000,0,0);}
.mfb_c01347{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);}
.m24_c01347{transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167050,0.000000,0.000000,0.250000,0,0);}
.m13e_c01347{transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);}
.maa_c01347{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);}
.m101_c01347{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);}
.m12a_c01347{transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168050,0.000000,0.000000,0.250000,0,0);}
.m140_c01347{transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169175,0.000000,0.000000,0.250000,0,0);}
.mfd_c01347{transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170225,0.000000,0.000000,0.250000,0,0);}
.m15d_c01347{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);}
.md5_c01347{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.m161_c01347{transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171100,0.000000,0.000000,0.250000,0,0);}
.m5d_c01347{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.mf6_c01347{transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173525,0.000000,0.000000,0.250000,0,0);}
.m49_c01347{transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);}
.m14f_c01347{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);}
.m3f_c01347{transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174800,0.000000,0.000000,0.250000,0,0);}
.m15a_c01347{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);}
.m2b_c01347{transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175050,0.000000,0.000000,0.250000,0,0);}
.m45_c01347{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.m145_c01347{transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177425,0.000000,0.000000,0.250000,0,0);}
.m87_c01347{transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179125,0.000000,0.000000,0.250000,0,0);}
.m122_c01347{transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179750,0.000000,0.000000,0.250000,0,0);}
.m64_c01347{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m15c_c01347{transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180450,0.000000,0.000000,0.250000,0,0);}
.m13c_c01347{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);}
.m2a_c01347{transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181350,0.000000,0.000000,0.250000,0,0);}
.me3_c01347{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m16e_c01347{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);}
.m9b_c01347{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);}
.mcc_c01347{transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182275,0.000000,0.000000,0.250000,0,0);}
.m115_c01347{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);}
.m7e_c01347{transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);}
.m152_c01347{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);}
.mf8_c01347{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);}
.ma8_c01347{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);}
.m131_c01347{transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186750,0.000000,0.000000,0.250000,0,0);}
.m93_c01347{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);}
.m79_c01347{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);}
.m13f_c01347{transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187575,0.000000,0.000000,0.250000,0,0);}
.m12c_c01347{transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188850,0.000000,0.000000,0.250000,0,0);}
.m14e_c01347{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);}
.m6d_c01347{transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190800,0.000000,0.000000,0.250000,0,0);}
.mae_c01347{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);}
.m17_c01347{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);}
.m1c_c01347{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.md4_c01347{transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192525,0.000000,0.000000,0.250000,0,0);}
.m155_c01347{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m137_c01347{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.mc4_c01347{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m61_c01347{transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);}
.m133_c01347{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.ma0_c01347{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.m135_c01347{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.m170_c01347{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);}
.m109_c01347{transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);}
.m7a_c01347{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);}
.me8_c01347{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);}
.mfa_c01347{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.m134_c01347{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);}
.m16c_c01347{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);}
.m114_c01347{transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198600,0.000000,0.000000,0.250000,0,0);}
.m132_c01347{transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);}
.m28_c01347{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.me0_c01347{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m25_c01347{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);}
.m42_c01347{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.m26_c01347{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m48_c01347{transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202050,0.000000,0.000000,0.250000,0,0);}
.mb0_c01347{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.m3e_c01347{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);}
.m56_c01347{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);}
.m2e_c01347{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.mde_c01347{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.mf5_c01347{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);}
.m105_c01347{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);}
.mdd_c01347{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);}
.mcf_c01347{transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203475,0.000000,0.000000,0.250000,0,0);}
.mfc_c01347{transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);}
.m41_c01347{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);}
.mf2_c01347{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);}
.m97_c01347{transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204325,0.000000,0.000000,0.250000,0,0);}
.m11b_c01347{transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);}
.m16b_c01347{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m6b_c01347{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);}
.m78_c01347{transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);}
.m168_c01347{transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205425,0.000000,0.000000,0.250000,0,0);}
.m146_c01347{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);}
.ma2_c01347{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);}
.mfe_c01347{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);}
.m44_c01347{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.m100_c01347{transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207025,0.000000,0.000000,0.250000,0,0);}
.m1e_c01347{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m4e_c01347{transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207575,0.000000,0.000000,0.250000,0,0);}
.m2d_c01347{transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207750,0.000000,0.000000,0.250000,0,0);}
.m53_c01347{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.m16d_c01347{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.m9e_c01347{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);}
.m5e_c01347{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.mdf_c01347{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.mc0_c01347{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);}
.m147_c01347{transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);}
.mf3_c01347{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.m121_c01347{transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209650,0.000000,0.000000,0.250000,0,0);}
.mb6_c01347{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);}
.m10c_c01347{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);}
.m6a_c01347{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);}
.m107_c01347{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.mce_c01347{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);}
.md9_c01347{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);}
.m5f_c01347{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);}
.m98_c01347{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);}
.mef_c01347{transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211850,0.000000,0.000000,0.250000,0,0);}
.m14c_c01347{transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);}
.m3c_c01347{transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);}
.m91_c01347{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.mf7_c01347{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);}
.m94_c01347{transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213450,0.000000,0.000000,0.250000,0,0);}
.m11f_c01347{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);}
.m63_c01347{transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213650,0.000000,0.000000,0.250000,0,0);}
.m13a_c01347{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);}
.mdb_c01347{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);}
.m15f_c01347{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m10b_c01347{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);}
.mf4_c01347{transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);}
.mc8_c01347{transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);}
.m143_c01347{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);}
.mec_c01347{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);}
.m8e_c01347{transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215950,0.000000,0.000000,0.250000,0,0);}
.m164_c01347{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.mc1_c01347{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);}
.m118_c01347{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);}
.m71_c01347{transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217650,0.000000,0.000000,0.250000,0,0);}
.m21_c01347{transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217900,0.000000,0.000000,0.250000,0,0);}
.m163_c01347{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);}
.md0_c01347{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);}
.m65_c01347{transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219200,0.000000,0.000000,0.250000,0,0);}
.m139_c01347{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);}
.me5_c01347{transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);}
.m7b_c01347{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);}
.ma4_c01347{transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221100,0.000000,0.000000,0.250000,0,0);}
.m35_c01347{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.m90_c01347{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);}
.mcd_c01347{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.mbb_c01347{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);}
.m6e_c01347{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);}
.me1_c01347{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);}
.m92_c01347{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m88_c01347{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);}
.m16f_c01347{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m160_c01347{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);}
.m151_c01347{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);}
.m38_c01347{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);}
.m14d_c01347{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);}
.mc5_c01347{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);}
.m40_c01347{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m169_c01347{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);}
.mdc_c01347{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.mcb_c01347{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.m9f_c01347{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.m8_c01347{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);}
.ma5_c01347{transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228200,0.000000,0.000000,0.250000,0,0);}
.m124_c01347{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m62_c01347{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m167_c01347{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);}
.m158_c01347{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);}
.m8b_c01347{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01347{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);}
.m60_c01347{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);}
.m20_c01347{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);}
.m12e_c01347{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);}
.m8a_c01347{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);}
.m82_c01347{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);}
.m5b_c01347{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.m77_c01347{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);}
.ma9_c01347{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);}
.mbc_c01347{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.md8_c01347{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);}
.m30_c01347{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);}
.m8c_c01347{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.mca_c01347{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);}
.m125_c01347{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.me9_c01347{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);}
.m157_c01347{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.mea_c01347{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m108_c01347{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);}
.m123_c01347{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);}
.mc3_c01347{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);}
.m144_c01347{transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);}
.m33_c01347{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m10d_c01347{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.md2_c01347{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m14b_c01347{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m129_c01347{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.md_c01347{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m116_c01347{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);}
.m85_c01347{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.m166_c01347{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);}
.meb_c01347{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);}
.mee_c01347{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m113_c01347{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m10f_c01347{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);}
.md6_c01347{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m4d_c01347{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);}
.m9a_c01347{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.me7_c01347{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.m12d_c01347{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);}
.m13b_c01347{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);}
.mbe_c01347{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m117_c01347{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);}
.m55_c01347{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.me_c01347{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m154_c01347{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m102_c01347{transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);}
.m103_c01347{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.mb8_c01347{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.ma1_c01347{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m4f_c01347{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);}
.mf9_c01347{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);}
.m10_c01347{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_c01347{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m27_c01347{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);}
.m5a_c01347{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);}
.m43_c01347{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);}
.m4a_c01347{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);}
.m15_c01347{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m74_c01347{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01347{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c01347{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);}
.m11_c01347{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m73_c01347{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);}
.m47_c01347{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);}
.m16_c01347{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m66_c01347{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_c01347{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01347{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m50_c01347{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);}
.m54_c01347{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01347{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);}
.m1a_c01347{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);}
.me4_c01347{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01347{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7d_c01347{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);}
.m12_c01347{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m83_c01347{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01347{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);}
.mad_c01347{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m11a_c01347{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c01347{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m31_c01347{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m37_c01347{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01347{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m57_c01347{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01347{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);}
.mc7_c01347{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mda_c01347{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.mbf_c01347{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01347{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m52_c01347{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);}
.m12b_c01347{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m58_c01347{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);}
.m9_c01347{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.md3_c01347{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m16a_c01347{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.md1_c01347{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01347{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);}
.mb7_c01347{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m171_c01347{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m34_c01347{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m8d_c01347{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);}
.m67_c01347{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m119_c01347{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mf0_c01347{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m11e_c01347{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m136_c01347{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m13_c01347{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.maf_c01347{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m84_c01347{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);}
.med_c01347{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);}
.m86_c01347{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);}
.m14_c01347{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me2_c01347{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m130_c01347{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);}
.m7f_c01347{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m112_c01347{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m5_c01347{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01347{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01347{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m149_c01347{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m46_c01347{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);}
.m7c_c01347{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m95_c01347{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.mb3_c01347{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m29_c01347{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m69_c01347{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m70_c01347{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mba_c01347{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m32_c01347{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);}
.m6_c01347{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m22_c01347{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);}
.m99_c01347{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m76_c01347{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mbd_c01347{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m80_c01347{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m51_c01347{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mac_c01347{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m59_c01347{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m104_c01347{transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.662500,0.000000,0.000000,0.250000,0,0);}
.mf1_c01347{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m165_c01347{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);}
.m39_c01347{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m36_c01347{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mb5_c01347{transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01347{transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.240000,0.000000,0.000000,0.250000,0,0);}
.m4_c01347{transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.262500,0.000000,0.000000,0.250000,0,0);}
.mb4_c01347{transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.320000,0.000000,0.000000,0.250000,0,0);}
.m68_c01347{transform:matrix(1.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.452500,0.000000,0.000000,0.250000,0,0);}
.m12f_c01347{transform:matrix(3.105000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.105000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.105000,0.000000,0.000000,0.250000,0,0);}
.m141_c01347{transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);}
.m9d_c01347{transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);}
.v1_c01347{vertical-align:-10.380000px;}
.v2_c01347{vertical-align:-3.420000px;}
.v0_c01347{vertical-align:0.000000px;}
.v3_c01347{vertical-align:3.480000px;}
.v4_c01347{vertical-align:10.380000px;}
.ls4_c01347{letter-spacing:0.000000px;}
.ls0_c01347{letter-spacing:64.028700px;}
.ls2_c01347{letter-spacing:104.198233px;}
.ls3_c01347{letter-spacing:220.320000px;}
.ls1_c01347{letter-spacing:903.166740px;}
.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:-11.743800px;}
.ws2_c01347{word-spacing:-9.342240px;}
.ws3_c01347{word-spacing:-7.623960px;}
.ws1_c01347{word-spacing:-6.996483px;}
.ws4_c01347{word-spacing:0.000000px;}
.fc0_c01347{color:transparent;}
.fs2_c01347{font-size:3.456000px;}
.fs1a_c01347{font-size:6.000000px;}
.fs0_c01347{font-size:6.900000px;}
.fs1_c01347{font-size:10.380000px;}
.fs5_c01347{font-size:13.800000px;}
.fs4_c01347{font-size:17.280000px;}
.fs3_c01347{font-size:20.760000px;}
.fs1c_c01347{font-size:24.180000px;}
.fs15_c01347{font-size:27.660000px;}
.fs6_c01347{font-size:31.080000px;}
.fs11_c01347{font-size:34.560000px;}
.fs19_c01347{font-size:38.040000px;}
.fs14_c01347{font-size:41.460000px;}
.fs10_c01347{font-size:44.940000px;}
.fsa_c01347{font-size:48.360000px;}
.fsd_c01347{font-size:51.840000px;}
.fsf_c01347{font-size:55.320000px;}
.fs12_c01347{font-size:58.740000px;}
.fs18_c01347{font-size:62.220000px;}
.fs9_c01347{font-size:65.640000px;}
.fs16_c01347{font-size:69.120000px;}
.fs13_c01347{font-size:72.600000px;}
.fs7_c01347{font-size:76.020000px;}
.fs17_c01347{font-size:79.500000px;}
.fs1b_c01347{font-size:82.920000px;}
.fs8_c01347{font-size:86.400000px;}
.fsc_c01347{font-size:89.880000px;}
.fse_c01347{font-size:100.200000px;}
.fs1d_c01347{font-size:107.160000px;}
.fsb_c01347{font-size:110.580000px;}
.y0_c01347{bottom:0.000000px;}
.y22f_c01347{bottom:209.085000px;}
.y22e_c01347{bottom:214.275000px;}
.y22c_c01347{bottom:216.000000px;}
.y229_c01347{bottom:217.725000px;}
.y22d_c01347{bottom:220.320000px;}
.y22b_c01347{bottom:222.045000px;}
.y22a_c01347{bottom:222.915000px;}
.y228_c01347{bottom:223.770000px;}
.y226_c01347{bottom:232.410000px;}
.y225_c01347{bottom:235.005000px;}
.y227_c01347{bottom:235.875000px;}
.y222_c01347{bottom:237.600000px;}
.y224_c01347{bottom:238.470000px;}
.y223_c01347{bottom:247.965000px;}
.y221_c01347{bottom:252.285000px;}
.y21f_c01347{bottom:253.155000px;}
.y220_c01347{bottom:256.605000px;}
.y21d_c01347{bottom:257.475000px;}
.y21e_c01347{bottom:258.330000px;}
.y21c_c01347{bottom:267.840000px;}
.y215_c01347{bottom:270.435000px;}
.y217_c01347{bottom:271.290000px;}
.y21b_c01347{bottom:273.030000px;}
.y216_c01347{bottom:275.610000px;}
.y214_c01347{bottom:276.480000px;}
.y219_c01347{bottom:278.205000px;}
.y21a_c01347{bottom:282.525000px;}
.y218_c01347{bottom:285.120000px;}
.y211_c01347{bottom:285.990000px;}
.y20f_c01347{bottom:286.845000px;}
.y210_c01347{bottom:287.715000px;}
.y20e_c01347{bottom:288.570000px;}
.y213_c01347{bottom:289.440000px;}
.y212_c01347{bottom:292.035000px;}
.y20c_c01347{bottom:305.850000px;}
.y20d_c01347{bottom:306.720000px;}
.y20a_c01347{bottom:308.445000px;}
.y20b_c01347{bottom:310.170000px;}
.y209_c01347{bottom:311.040000px;}
.y207_c01347{bottom:322.275000px;}
.y203_c01347{bottom:324.000000px;}
.y208_c01347{bottom:324.870000px;}
.y206_c01347{bottom:326.595000px;}
.y205_c01347{bottom:327.450000px;}
.y204_c01347{bottom:328.320000px;}
.y202_c01347{bottom:329.190000px;}
.y201_c01347{bottom:338.685000px;}
.y200_c01347{bottom:339.555000px;}
.y1fe_c01347{bottom:342.150000px;}
.y1fd_c01347{bottom:343.005000px;}
.y1ff_c01347{bottom:345.600000px;}
.y1fc_c01347{bottom:353.370000px;}
.y1f7_c01347{bottom:359.430000px;}
.y1fb_c01347{bottom:360.285000px;}
.y1fa_c01347{bottom:361.155000px;}
.y1f9_c01347{bottom:362.010000px;}
.y1f8_c01347{bottom:363.750000px;}
.y1f5_c01347{bottom:377.565000px;}
.y1f6_c01347{bottom:378.435000px;}
.y1f3_c01347{bottom:379.290000px;}
.y1f4_c01347{bottom:380.160000px;}
.y1f2_c01347{bottom:381.030000px;}
.y1f1_c01347{bottom:382.755000px;}
.y1f0_c01347{bottom:388.800000px;}
.y1ef_c01347{bottom:392.250000px;}
.y1ea_c01347{bottom:393.120000px;}
.y1eb_c01347{bottom:394.845000px;}
.y1ee_c01347{bottom:395.715000px;}
.y1ed_c01347{bottom:397.440000px;}
.y1ec_c01347{bottom:398.310000px;}
.y1e9_c01347{bottom:408.675000px;}
.y1e8_c01347{bottom:410.400000px;}
.y1e6_c01347{bottom:411.270000px;}
.y1e7_c01347{bottom:415.590000px;}
.y1e5_c01347{bottom:416.445000px;}
.y1e4_c01347{bottom:418.170000px;}
.y1e0_c01347{bottom:425.085000px;}
.y1e3_c01347{bottom:431.130000px;}
.y1e2_c01347{bottom:432.000000px;}
.y1e1_c01347{bottom:432.870000px;}
.y1df_c01347{bottom:444.960000px;}
.y1dd_c01347{bottom:446.685000px;}
.y1db_c01347{bottom:448.410000px;}
.y1de_c01347{bottom:450.150000px;}
.y1dc_c01347{bottom:451.875000px;}
.y5_c01347{bottom:459.645000px;}
.y1da_c01347{bottom:461.370000px;}
.y1d8_c01347{bottom:463.110000px;}
.y1d9_c01347{bottom:467.430000px;}
.y1d7_c01347{bottom:468.285000px;}
.y1d5_c01347{bottom:470.010000px;}
.y1d6_c01347{bottom:475.200000px;}
.y1d3_c01347{bottom:477.795000px;}
.y1d4_c01347{bottom:478.650000px;}
.y1d2_c01347{bottom:479.520000px;}
.y1d0_c01347{bottom:482.970000px;}
.y1d1_c01347{bottom:486.435000px;}
.y1cc_c01347{bottom:495.075000px;}
.y1cf_c01347{bottom:495.930000px;}
.y1cb_c01347{bottom:496.800000px;}
.y1cd_c01347{bottom:497.670000px;}
.y1c8_c01347{bottom:498.525000px;}
.y1c7_c01347{bottom:500.250000px;}
.y1ca_c01347{bottom:501.990000px;}
.y1c9_c01347{bottom:505.440000px;}
.y1ce_c01347{bottom:506.310000px;}
.y1c6_c01347{bottom:507.165000px;}
.y1c4_c01347{bottom:508.890000px;}
.y1c3_c01347{bottom:509.760000px;}
.y1c5_c01347{bottom:511.485000px;}
.y1c0_c01347{bottom:512.355000px;}
.y1bf_c01347{bottom:513.210000px;}
.y1c1_c01347{bottom:514.080000px;}
.y1c2_c01347{bottom:518.400000px;}
.y1be_c01347{bottom:519.270000px;}
.y1bd_c01347{bottom:520.125000px;}
.y1bc_c01347{bottom:520.995000px;}
.y1bb_c01347{bottom:524.445000px;}
.y1ba_c01347{bottom:528.765000px;}
.y1b8_c01347{bottom:529.635000px;}
.y1b4_c01347{bottom:531.360000px;}
.y1b9_c01347{bottom:533.085000px;}
.y1b7_c01347{bottom:534.810000px;}
.y1b5_c01347{bottom:537.405000px;}
.y1b6_c01347{bottom:546.045000px;}
.y1b1_c01347{bottom:546.915000px;}
.y1b0_c01347{bottom:547.770000px;}
.y1af_c01347{bottom:548.640000px;}
.y1ad_c01347{bottom:550.365000px;}
.y1b2_c01347{bottom:551.235000px;}
.y1ae_c01347{bottom:554.685000px;}
.y1b3_c01347{bottom:556.410000px;}
.y1ab_c01347{bottom:559.875000px;}
.y1aa_c01347{bottom:562.470000px;}
.y1ac_c01347{bottom:564.195000px;}
.y1a7_c01347{bottom:565.050000px;}
.y1a9_c01347{bottom:565.920000px;}
.y1a8_c01347{bottom:567.645000px;}
.y1a2_c01347{bottom:568.515000px;}
.y1a4_c01347{bottom:569.370000px;}
.y1a5_c01347{bottom:570.240000px;}
.y1a3_c01347{bottom:571.110000px;}
.y1a1_c01347{bottom:571.965000px;}
.y1a6_c01347{bottom:574.560000px;}
.y19f_c01347{bottom:578.010000px;}
.y1a0_c01347{bottom:581.475000px;}
.y19e_c01347{bottom:582.330000px;}
.y19c_c01347{bottom:584.070000px;}
.y19b_c01347{bottom:584.925000px;}
.y19a_c01347{bottom:586.650000px;}
.y19d_c01347{bottom:587.520000px;}
.y194_c01347{bottom:599.610000px;}
.y199_c01347{bottom:600.480000px;}
.y198_c01347{bottom:601.350000px;}
.y197_c01347{bottom:602.205000px;}
.y196_c01347{bottom:603.075000px;}
.y191_c01347{bottom:603.930000px;}
.y195_c01347{bottom:604.800000px;}
.y193_c01347{bottom:605.670000px;}
.y192_c01347{bottom:607.395000px;}
.y18e_c01347{bottom:614.310000px;}
.y18d_c01347{bottom:616.035000px;}
.y190_c01347{bottom:616.890000px;}
.y18a_c01347{bottom:617.760000px;}
.y18f_c01347{bottom:618.630000px;}
.y18b_c01347{bottom:619.485000px;}
.y186_c01347{bottom:620.355000px;}
.y18c_c01347{bottom:621.210000px;}
.y189_c01347{bottom:622.080000px;}
.y188_c01347{bottom:623.805000px;}
.y187_c01347{bottom:624.675000px;}
.y185_c01347{bottom:634.170000px;}
.y182_c01347{bottom:635.910000px;}
.y181_c01347{bottom:636.765000px;}
.y180_c01347{bottom:637.635000px;}
.y183_c01347{bottom:638.490000px;}
.y17f_c01347{bottom:640.230000px;}
.y184_c01347{bottom:645.405000px;}
.y17d_c01347{bottom:648.000000px;}
.y17e_c01347{bottom:648.870000px;}
.y17a_c01347{bottom:649.725000px;}
.y178_c01347{bottom:652.320000px;}
.y17b_c01347{bottom:653.190000px;}
.y17c_c01347{bottom:654.915000px;}
.y176_c01347{bottom:656.640000px;}
.y179_c01347{bottom:657.510000px;}
.y177_c01347{bottom:660.960000px;}
.y174_c01347{bottom:665.280000px;}
.y172_c01347{bottom:667.005000px;}
.y175_c01347{bottom:669.600000px;}
.y171_c01347{bottom:670.470000px;}
.y173_c01347{bottom:671.325000px;}
.y16f_c01347{bottom:673.050000px;}
.y170_c01347{bottom:674.790000px;}
.y16d_c01347{bottom:675.645000px;}
.y16e_c01347{bottom:676.515000px;}
.y16c_c01347{bottom:681.690000px;}
.y169_c01347{bottom:686.010000px;}
.y168_c01347{bottom:687.750000px;}
.y16a_c01347{bottom:688.605000px;}
.y16b_c01347{bottom:689.475000px;}
.y167_c01347{bottom:692.070000px;}
.y166_c01347{bottom:693.795000px;}
.y165_c01347{bottom:694.650000px;}
.y164_c01347{bottom:698.970000px;}
.y162_c01347{bottom:701.565000px;}
.y160_c01347{bottom:703.290000px;}
.y163_c01347{bottom:704.160000px;}
.y15e_c01347{bottom:705.030000px;}
.y15d_c01347{bottom:705.885000px;}
.y161_c01347{bottom:707.610000px;}
.y15f_c01347{bottom:709.350000px;}
.y15c_c01347{bottom:711.930000px;}
.y15b_c01347{bottom:715.395000px;}
.y159_c01347{bottom:720.570000px;}
.y156_c01347{bottom:721.440000px;}
.y154_c01347{bottom:723.165000px;}
.y152_c01347{bottom:724.035000px;}
.y158_c01347{bottom:724.890000px;}
.y155_c01347{bottom:727.485000px;}
.y153_c01347{bottom:729.210000px;}
.y157_c01347{bottom:730.080000px;}
.y15a_c01347{bottom:733.530000px;}
.y151_c01347{bottom:734.400000px;}
.y150_c01347{bottom:736.995000px;}
.y14e_c01347{bottom:739.590000px;}
.y14f_c01347{bottom:740.445000px;}
.y14c_c01347{bottom:741.315000px;}
.y149_c01347{bottom:742.170000px;}
.y14a_c01347{bottom:744.765000px;}
.y14d_c01347{bottom:745.635000px;}
.y14b_c01347{bottom:747.360000px;}
.y148_c01347{bottom:754.275000px;}
.y146_c01347{bottom:755.130000px;}
.y145_c01347{bottom:756.000000px;}
.y142_c01347{bottom:757.725000px;}
.y147_c01347{bottom:758.595000px;}
.y140_c01347{bottom:759.450000px;}
.y141_c01347{bottom:760.320000px;}
.y13f_c01347{bottom:761.190000px;}
.y143_c01347{bottom:762.045000px;}
.y144_c01347{bottom:769.830000px;}
.y4_c01347{bottom:771.555000px;}
.y13c_c01347{bottom:773.280000px;}
.y3_c01347{bottom:774.150000px;}
.y13b_c01347{bottom:775.005000px;}
.y13e_c01347{bottom:776.730000px;}
.y13d_c01347{bottom:777.600000px;}
.y13a_c01347{bottom:778.470000px;}
.y139_c01347{bottom:781.920000px;}
.y137_c01347{bottom:787.110000px;}
.y138_c01347{bottom:789.690000px;}
.y134_c01347{bottom:791.430000px;}
.y135_c01347{bottom:792.285000px;}
.y132_c01347{bottom:793.155000px;}
.y136_c01347{bottom:794.880000px;}
.y130_c01347{bottom:795.750000px;}
.y133_c01347{bottom:796.605000px;}
.y131_c01347{bottom:797.475000px;}
.y12f_c01347{bottom:798.330000px;}
.y12c_c01347{bottom:806.970000px;}
.y129_c01347{bottom:810.435000px;}
.y12e_c01347{bottom:811.290000px;}
.y12b_c01347{bottom:812.160000px;}
.y12a_c01347{bottom:813.885000px;}
.y128_c01347{bottom:814.755000px;}
.y127_c01347{bottom:815.610000px;}
.y12d_c01347{bottom:816.480000px;}
.y124_c01347{bottom:822.525000px;}
.y126_c01347{bottom:825.120000px;}
.y125_c01347{bottom:825.990000px;}
.y11e_c01347{bottom:826.845000px;}
.y11f_c01347{bottom:827.715000px;}
.y123_c01347{bottom:830.310000px;}
.y121_c01347{bottom:831.165000px;}
.y120_c01347{bottom:832.035000px;}
.y11d_c01347{bottom:832.890000px;}
.y11c_c01347{bottom:838.950000px;}
.y122_c01347{bottom:839.805000px;}
.y11b_c01347{bottom:840.675000px;}
.y11a_c01347{bottom:841.530000px;}
.y117_c01347{bottom:844.125000px;}
.y119_c01347{bottom:847.590000px;}
.y113_c01347{bottom:848.445000px;}
.y116_c01347{bottom:849.315000px;}
.y115_c01347{bottom:850.170000px;}
.y114_c01347{bottom:851.040000px;}
.y112_c01347{bottom:857.085000px;}
.y118_c01347{bottom:858.810000px;}
.y110_c01347{bottom:859.680000px;}
.y10e_c01347{bottom:860.550000px;}
.y10c_c01347{bottom:861.405000px;}
.y109_c01347{bottom:862.275000px;}
.y10b_c01347{bottom:864.870000px;}
.y10f_c01347{bottom:865.725000px;}
.y10d_c01347{bottom:866.595000px;}
.y10a_c01347{bottom:870.045000px;}
.y111_c01347{bottom:873.510000px;}
.y108_c01347{bottom:874.365000px;}
.y106_c01347{bottom:878.685000px;}
.y104_c01347{bottom:879.555000px;}
.y107_c01347{bottom:880.410000px;}
.y102_c01347{bottom:881.280000px;}
.y105_c01347{bottom:883.005000px;}
.y103_c01347{bottom:884.730000px;}
.y101_c01347{bottom:892.515000px;}
.y100_c01347{bottom:896.835000px;}
.yfd_c01347{bottom:897.690000px;}
.yff_c01347{bottom:899.430000px;}
.yfa_c01347{bottom:900.285000px;}
.yfe_c01347{bottom:901.155000px;}
.yfc_c01347{bottom:902.010000px;}
.yfb_c01347{bottom:902.880000px;}
.yf8_c01347{bottom:909.795000px;}
.yf6_c01347{bottom:912.390000px;}
.yf9_c01347{bottom:914.115000px;}
.yf7_c01347{bottom:915.840000px;}
.yf4_c01347{bottom:916.710000px;}
.yf1_c01347{bottom:917.565000px;}
.yf5_c01347{bottom:918.435000px;}
.yf2_c01347{bottom:919.290000px;}
.yf3_c01347{bottom:920.160000px;}
.yf0_c01347{bottom:921.030000px;}
.yef_c01347{bottom:925.350000px;}
.yee_c01347{bottom:927.930000px;}
.yed_c01347{bottom:928.800000px;}
.ye9_c01347{bottom:931.395000px;}
.ye7_c01347{bottom:932.250000px;}
.ye6_c01347{bottom:933.120000px;}
.yec_c01347{bottom:933.990000px;}
.yeb_c01347{bottom:934.845000px;}
.yea_c01347{bottom:935.715000px;}
.ye8_c01347{bottom:937.440000px;}
.ye5_c01347{bottom:938.310000px;}
.ye4_c01347{bottom:939.165000px;}
.ye2_c01347{bottom:952.995000px;}
.ye1_c01347{bottom:953.850000px;}
.ye0_c01347{bottom:954.720000px;}
.ye3_c01347{bottom:955.590000px;}
.ydf_c01347{bottom:956.445000px;}
.yd9_c01347{bottom:966.810000px;}
.yda_c01347{bottom:970.275000px;}
.ydb_c01347{bottom:971.130000px;}
.yd8_c01347{bottom:972.000000px;}
.yde_c01347{bottom:979.770000px;}
.ydd_c01347{bottom:983.235000px;}
.ydc_c01347{bottom:984.090000px;}
.yd4_c01347{bottom:985.830000px;}
.yd7_c01347{bottom:986.685000px;}
.yd3_c01347{bottom:987.555000px;}
.yd6_c01347{bottom:988.410000px;}
.yd5_c01347{bottom:989.280000px;}
.ycf_c01347{bottom:990.150000px;}
.yd1_c01347{bottom:991.005000px;}
.yce_c01347{bottom:996.195000px;}
.yd2_c01347{bottom:997.050000px;}
.yc7_c01347{bottom:997.920000px;}
.yc8_c01347{bottom:998.790000px;}
.yc2_c01347{bottom:999.645000px;}
.yc6_c01347{bottom:1001.370000px;}
.yc5_c01347{bottom:1002.240000px;}
.ycd_c01347{bottom:1003.965000px;}
.ycc_c01347{bottom:1004.835000px;}
.ycb_c01347{bottom:1005.690000px;}
.yc4_c01347{bottom:1007.430000px;}
.yc3_c01347{bottom:1008.285000px;}
.yc9_c01347{bottom:1010.880000px;}
.yd0_c01347{bottom:1011.750000px;}
.yca_c01347{bottom:1016.925000px;}
.ybe_c01347{bottom:1018.650000px;}
.yc1_c01347{bottom:1019.520000px;}
.yc0_c01347{bottom:1020.390000px;}
.ybf_c01347{bottom:1021.245000px;}
.ybd_c01347{bottom:1022.970000px;}
.ybc_c01347{bottom:1024.710000px;}
.yb8_c01347{bottom:1032.480000px;}
.yba_c01347{bottom:1035.930000px;}
.yb9_c01347{bottom:1036.800000px;}
.ybb_c01347{bottom:1037.670000px;}
.yb7_c01347{bottom:1041.120000px;}
.yb6_c01347{bottom:1042.845000px;}
.yb5_c01347{bottom:1050.630000px;}
.yb4_c01347{bottom:1051.485000px;}
.yb2_c01347{bottom:1054.080000px;}
.yb3_c01347{bottom:1054.950000px;}
.yb0_c01347{bottom:1056.675000px;}
.yb1_c01347{bottom:1059.270000px;}
.yaf_c01347{bottom:1060.125000px;}
.yae_c01347{bottom:1060.995000px;}
.yab_c01347{bottom:1066.170000px;}
.ya9_c01347{bottom:1068.765000px;}
.yaa_c01347{bottom:1069.635000px;}
.yad_c01347{bottom:1070.490000px;}
.yac_c01347{bottom:1071.360000px;}
.ya8_c01347{bottom:1072.230000px;}
.ya4_c01347{bottom:1073.085000px;}
.ya6_c01347{bottom:1073.955000px;}
.ya7_c01347{bottom:1075.680000px;}
.ya5_c01347{bottom:1076.550000px;}
.ya2_c01347{bottom:1077.405000px;}
.ya3_c01347{bottom:1078.275000px;}
.ya0_c01347{bottom:1087.770000px;}
.ya1_c01347{bottom:1088.640000px;}
.y9c_c01347{bottom:1090.365000px;}
.y9e_c01347{bottom:1091.235000px;}
.y9f_c01347{bottom:1092.960000px;}
.y9a_c01347{bottom:1093.830000px;}
.y9d_c01347{bottom:1094.685000px;}
.y9b_c01347{bottom:1096.410000px;}
.yd_c01347{bottom:1102.470000px;}
.y99_c01347{bottom:1105.920000px;}
.y97_c01347{bottom:1106.790000px;}
.y96_c01347{bottom:1108.515000px;}
.y94_c01347{bottom:1110.240000px;}
.y95_c01347{bottom:1111.110000px;}
.y92_c01347{bottom:1111.965000px;}
.y93_c01347{bottom:1112.835000px;}
.y98_c01347{bottom:1117.155000px;}
.y91_c01347{bottom:1121.475000px;}
.y8d_c01347{bottom:1124.070000px;}
.y8a_c01347{bottom:1125.795000px;}
.y90_c01347{bottom:1126.650000px;}
.y8f_c01347{bottom:1127.520000px;}
.y8e_c01347{bottom:1128.390000px;}
.y8c_c01347{bottom:1130.970000px;}
.y8b_c01347{bottom:1133.565000px;}
.y89_c01347{bottom:1137.030000px;}
.y86_c01347{bottom:1138.755000px;}
.y84_c01347{bottom:1140.480000px;}
.y83_c01347{bottom:1141.350000px;}
.y88_c01347{bottom:1142.205000px;}
.y87_c01347{bottom:1143.075000px;}
.y85_c01347{bottom:1143.930000px;}
.y82_c01347{bottom:1144.800000px;}
.y81_c01347{bottom:1146.525000px;}
.y7f_c01347{bottom:1147.395000px;}
.y80_c01347{bottom:1148.250000px;}
.y7a_c01347{bottom:1157.760000px;}
.y7e_c01347{bottom:1158.630000px;}
.y7d_c01347{bottom:1159.485000px;}
.y7c_c01347{bottom:1160.355000px;}
.y7b_c01347{bottom:1162.080000px;}
.y79_c01347{bottom:1163.805000px;}
.y77_c01347{bottom:1164.675000px;}
.y76_c01347{bottom:1165.530000px;}
.y78_c01347{bottom:1168.125000px;}
.y74_c01347{bottom:1173.315000px;}
.y75_c01347{bottom:1175.910000px;}
.y72_c01347{bottom:1176.765000px;}
.y70_c01347{bottom:1177.635000px;}
.y6e_c01347{bottom:1178.490000px;}
.y73_c01347{bottom:1179.360000px;}
.y71_c01347{bottom:1180.230000px;}
.y6f_c01347{bottom:1181.955000px;}
.y6d_c01347{bottom:1182.810000px;}
.y6c_c01347{bottom:1191.450000px;}
.y6a_c01347{bottom:1194.915000px;}
.y69_c01347{bottom:1195.770000px;}
.y65_c01347{bottom:1197.510000px;}
.y68_c01347{bottom:1199.235000px;}
.y64_c01347{bottom:1200.090000px;}
.y66_c01347{bottom:1201.830000px;}
.y67_c01347{bottom:1205.280000px;}
.y6b_c01347{bottom:1206.150000px;}
.y62_c01347{bottom:1208.730000px;}
.y63_c01347{bottom:1210.470000px;}
.y60_c01347{bottom:1211.325000px;}
.y5a_c01347{bottom:1212.195000px;}
.y5e_c01347{bottom:1213.050000px;}
.y5d_c01347{bottom:1213.920000px;}
.y59_c01347{bottom:1214.790000px;}
.y61_c01347{bottom:1215.645000px;}
.y5f_c01347{bottom:1216.515000px;}
.y5c_c01347{bottom:1218.240000px;}
.y5b_c01347{bottom:1219.110000px;}
.y57_c01347{bottom:1226.010000px;}
.y58_c01347{bottom:1228.605000px;}
.y55_c01347{bottom:1232.070000px;}
.y56_c01347{bottom:1234.650000px;}
.y54_c01347{bottom:1235.520000px;}
.y50_c01347{bottom:1242.435000px;}
.y51_c01347{bottom:1245.030000px;}
.y53_c01347{bottom:1245.885000px;}
.y52_c01347{bottom:1246.755000px;}
.y49_c01347{bottom:1248.480000px;}
.y4f_c01347{bottom:1249.350000px;}
.y4e_c01347{bottom:1250.205000px;}
.y4d_c01347{bottom:1251.075000px;}
.y4b_c01347{bottom:1251.930000px;}
.y4a_c01347{bottom:1252.800000px;}
.y47_c01347{bottom:1253.670000px;}
.y48_c01347{bottom:1254.525000px;}
.y45_c01347{bottom:1258.845000px;}
.y43_c01347{bottom:1259.715000px;}
.y4c_c01347{bottom:1260.570000px;}
.y46_c01347{bottom:1262.310000px;}
.y44_c01347{bottom:1264.890000px;}
.y40_c01347{bottom:1265.760000px;}
.y3e_c01347{bottom:1266.630000px;}
.y42_c01347{bottom:1268.355000px;}
.y3d_c01347{bottom:1269.210000px;}
.y3c_c01347{bottom:1270.080000px;}
.y3b_c01347{bottom:1270.950000px;}
.y3f_c01347{bottom:1271.805000px;}
.y3a_c01347{bottom:1276.995000px;}
.y41_c01347{bottom:1279.590000px;}
.y39_c01347{bottom:1281.315000px;}
.y36_c01347{bottom:1282.170000px;}
.y37_c01347{bottom:1283.040000px;}
.y32_c01347{bottom:1283.910000px;}
.y35_c01347{bottom:1284.765000px;}
.y33_c01347{bottom:1286.490000px;}
.y38_c01347{bottom:1288.230000px;}
.y34_c01347{bottom:1289.085000px;}
.y31_c01347{bottom:1296.870000px;}
.y30_c01347{bottom:1299.450000px;}
.y2e_c01347{bottom:1300.320000px;}
.y2b_c01347{bottom:1302.045000px;}
.y2c_c01347{bottom:1302.915000px;}
.y2a_c01347{bottom:1304.640000px;}
.y29_c01347{bottom:1306.365000px;}
.y2d_c01347{bottom:1308.090000px;}
.y2f_c01347{bottom:1309.830000px;}
.y27_c01347{bottom:1314.150000px;}
.y26_c01347{bottom:1315.005000px;}
.y22_c01347{bottom:1315.875000px;}
.y28_c01347{bottom:1316.730000px;}
.y1f_c01347{bottom:1317.600000px;}
.y1e_c01347{bottom:1318.470000px;}
.y24_c01347{bottom:1319.325000px;}
.y25_c01347{bottom:1321.920000px;}
.y20_c01347{bottom:1323.645000px;}
.y21_c01347{bottom:1324.515000px;}
.y23_c01347{bottom:1327.110000px;}
.y1d_c01347{bottom:1329.690000px;}
.y1c_c01347{bottom:1330.560000px;}
.y2_c01347{bottom:1331.430000px;}
.y1a_c01347{bottom:1333.155000px;}
.y18_c01347{bottom:1334.010000px;}
.y16_c01347{bottom:1335.750000px;}
.y1_c01347{bottom:1336.605000px;}
.y19_c01347{bottom:1337.475000px;}
.y1b_c01347{bottom:1338.330000px;}
.y15_c01347{bottom:1340.925000px;}
.y17_c01347{bottom:1346.970000px;}
.y14_c01347{bottom:1351.290000px;}
.ye_c01347{bottom:1353.030000px;}
.y13_c01347{bottom:1353.885000px;}
.y12_c01347{bottom:1354.755000px;}
.yf_c01347{bottom:1355.610000px;}
.y11_c01347{bottom:1356.480000px;}
.y10_c01347{bottom:1359.075000px;}
.yc_c01347{bottom:1382.400000px;}
.yb_c01347{bottom:1384.125000px;}
.ya_c01347{bottom:1385.850000px;}
.y9_c01347{bottom:1404.000000px;}
.y8_c01347{bottom:1425.600000px;}
.y6_c01347{bottom:1433.370000px;}
.y7_c01347{bottom:1435.110000px;}
.h15_c01347{height:3.110063px;}
.h1c_c01347{height:5.399414px;}
.h2_c01347{height:6.209326px;}
.h6_c01347{height:9.340986px;}
.h5_c01347{height:12.418652px;}
.h4_c01347{height:15.550313px;}
.h21_c01347{height:16.589326px;}
.h3_c01347{height:18.681973px;}
.h1f_c01347{height:21.759639px;}
.h17_c01347{height:24.891299px;}
.h7_c01347{height:27.968965px;}
.h12_c01347{height:31.100625px;}
.h1b_c01347{height:34.232285px;}
.h16_c01347{height:37.309951px;}
.h11_c01347{height:40.441611px;}
.hb_c01347{height:43.519277px;}
.he_c01347{height:46.650937px;}
.h10_c01347{height:49.782598px;}
.h1e_c01347{height:50.130937px;}
.h13_c01347{height:52.860264px;}
.h1a_c01347{height:55.991924px;}
.ha_c01347{height:59.069590px;}
.h18_c01347{height:62.201250px;}
.h14_c01347{height:65.332910px;}
.h8_c01347{height:68.410576px;}
.h19_c01347{height:71.542236px;}
.h1d_c01347{height:74.619902px;}
.h9_c01347{height:77.751563px;}
.hd_c01347{height:80.883223px;}
.hf_c01347{height:90.170215px;}
.h20_c01347{height:96.433535px;}
.hc_c01347{height:99.511201px;}
.h1_c01347{height:1513.500000px;}
.h0_c01347{height:1513.725000px;}
.w0_c01347{width:1079.130000px;}
.w1_c01347{width:1079.250000px;}
.x0_c01347{left:0.000000px;}
.x1_c01347{left:54.435000px;}
.x5_c01347{left:184.035000px;}
.x3_c01347{left:187.485000px;}
.x4_c01347{left:193.530000px;}
.x2_c01347{left:203.910000px;}
.xe_c01347{left:217.725000px;}
.x11a_c01347{left:224.640000px;}
.xc7_c01347{left:236.730000px;}
.x55_c01347{left:238.470000px;}
.xfe_c01347{left:240.195000px;}
.x111_c01347{left:241.920000px;}
.x108_c01347{left:243.645000px;}
.xea_c01347{left:245.370000px;}
.x1d_c01347{left:247.110000px;}
.xc8_c01347{left:248.835000px;}
.xf_c01347{left:250.560000px;}
.x87_c01347{left:253.155000px;}
.xe1_c01347{left:255.750000px;}
.x113_c01347{left:260.070000px;}
.xc0_c01347{left:261.795000px;}
.xf2_c01347{left:263.520000px;}
.xbe_c01347{left:265.245000px;}
.x110_c01347{left:266.970000px;}
.x70_c01347{left:269.565000px;}
.x4a_c01347{left:271.290000px;}
.xd1_c01347{left:273.885000px;}
.x75_c01347{left:275.610000px;}
.x1e_c01347{left:277.350000px;}
.xa0_c01347{left:279.930000px;}
.x2f_c01347{left:281.670000px;}
.x11b_c01347{left:285.120000px;}
.xd6_c01347{left:287.715000px;}
.xe8_c01347{left:291.165000px;}
.xf8_c01347{left:294.630000px;}
.x1f_c01347{left:296.355000px;}
.x114_c01347{left:298.080000px;}
.x4b_c01347{left:299.805000px;}
.xdc_c01347{left:303.270000px;}
.xb2_c01347{left:304.995000px;}
.x93_c01347{left:306.720000px;}
.x71_c01347{left:308.445000px;}
.x8f_c01347{left:311.040000px;}
.x10_c01347{left:313.635000px;}
.x10e_c01347{left:315.360000px;}
.x7d_c01347{left:317.955000px;}
.xdd_c01347{left:320.550000px;}
.x119_c01347{left:322.275000px;}
.x105_c01347{left:324.870000px;}
.x56_c01347{left:326.595000px;}
.x88_c01347{left:328.320000px;}
.x115_c01347{left:330.045000px;}
.x101_c01347{left:332.640000px;}
.x62_c01347{left:334.365000px;}
.x66_c01347{left:336.090000px;}
.xe4_c01347{left:337.830000px;}
.x20_c01347{left:339.555000px;}
.x57_c01347{left:342.150000px;}
.xd7_c01347{left:343.875000px;}
.x89_c01347{left:345.600000px;}
.x118_c01347{left:347.325000px;}
.x30_c01347{left:349.050000px;}
.x4c_c01347{left:351.645000px;}
.xff_c01347{left:353.370000px;}
.x3b_c01347{left:355.110000px;}
.x21_c01347{left:357.690000px;}
.x4d_c01347{left:359.430000px;}
.x94_c01347{left:362.010000px;}
.x102_c01347{left:364.605000px;}
.xa1_c01347{left:367.200000px;}
.xf6_c01347{left:368.925000px;}
.x9a_c01347{left:371.520000px;}
.x7e_c01347{left:373.245000px;}
.x58_c01347{left:377.565000px;}
.x112_c01347{left:379.290000px;}
.x42_c01347{left:381.030000px;}
.x76_c01347{left:384.480000px;}
.xd8_c01347{left:387.930000px;}
.x31_c01347{left:390.525000px;}
.xec_c01347{left:394.845000px;}
.xa2_c01347{left:397.440000px;}
.x11_c01347{left:400.035000px;}
.x109_c01347{left:401.760000px;}
.x59_c01347{left:405.210000px;}
.x95_c01347{left:406.950000px;}
.xaa_c01347{left:408.675000px;}
.xf3_c01347{left:410.400000px;}
.x4e_c01347{left:412.125000px;}
.x12_c01347{left:414.720000px;}
.x67_c01347{left:416.445000px;}
.xcc_c01347{left:418.170000px;}
.x9b_c01347{left:419.910000px;}
.x43_c01347{left:422.490000px;}
.xfb_c01347{left:424.230000px;}
.xa3_c01347{left:425.955000px;}
.x4f_c01347{left:428.550000px;}
.x5a_c01347{left:431.130000px;}
.xc9_c01347{left:432.870000px;}
.xe2_c01347{left:436.320000px;}
.x7f_c01347{left:438.045000px;}
.x9c_c01347{left:439.770000px;}
.x3c_c01347{left:442.365000px;}
.xb9_c01347{left:444.960000px;}
.x50_c01347{left:446.685000px;}
.xed_c01347{left:449.280000px;}
.x13_c01347{left:451.005000px;}
.xa4_c01347{left:452.730000px;}
.x68_c01347{left:454.470000px;}
.xb3_c01347{left:457.050000px;}
.xe5_c01347{left:459.645000px;}
.x8a_c01347{left:462.240000px;}
.x96_c01347{left:464.835000px;}
.xee_c01347{left:466.560000px;}
.x22_c01347{left:469.155000px;}
.x117_c01347{left:471.750000px;}
.xf1_c01347{left:473.475000px;}
.x72_c01347{left:475.200000px;}
.xf7_c01347{left:478.650000px;}
.x9d_c01347{left:481.245000px;}
.x73_c01347{left:483.840000px;}
.xef_c01347{left:485.565000px;}
.xcd_c01347{left:488.160000px;}
.xc1_c01347{left:490.755000px;}
.x44_c01347{left:493.350000px;}
.xca_c01347{left:495.075000px;}
.xa5_c01347{left:496.800000px;}
.x8b_c01347{left:499.395000px;}
.xa_c01347{left:501.990000px;}
.x9e_c01347{left:504.570000px;}
.x116_c01347{left:507.165000px;}
.x80_c01347{left:508.890000px;}
.x5b_c01347{left:510.630000px;}
.x14_c01347{left:512.355000px;}
.xbf_c01347{left:514.950000px;}
.xa6_c01347{left:516.675000px;}
.x32_c01347{left:519.270000px;}
.xf0_c01347{left:520.995000px;}
.x23_c01347{left:522.720000px;}
.x106_c01347{left:524.445000px;}
.x69_c01347{left:526.170000px;}
.x81_c01347{left:527.910000px;}
.x51_c01347{left:529.635000px;}
.x24_c01347{left:531.360000px;}
.xb_c01347{left:533.085000px;}
.xd2_c01347{left:534.810000px;}
.x25_c01347{left:537.405000px;}
.xe3_c01347{left:540.000000px;}
.xbc_c01347{left:541.725000px;}
.xd3_c01347{left:546.915000px;}
.x26_c01347{left:548.640000px;}
.x63_c01347{left:551.235000px;}
.x27_c01347{left:553.830000px;}
.x107_c01347{left:557.280000px;}
.xde_c01347{left:559.005000px;}
.x10a_c01347{left:560.730000px;}
.xc_c01347{left:563.325000px;}
.x90_c01347{left:565.050000px;}
.x10b_c01347{left:567.645000px;}
.x5c_c01347{left:569.370000px;}
.x77_c01347{left:571.110000px;}
.x6_c01347{left:575.430000px;}
.x5d_c01347{left:578.010000px;}
.xd9_c01347{left:579.750000px;}
.x7_c01347{left:581.475000px;}
.x45_c01347{left:584.070000px;}
.x15_c01347{left:585.795000px;}
.x52_c01347{left:588.390000px;}
.xbd_c01347{left:591.840000px;}
.xe6_c01347{left:593.565000px;}
.xd_c01347{left:595.290000px;}
.x33_c01347{left:598.755000px;}
.xda_c01347{left:601.350000px;}
.x82_c01347{left:603.930000px;}
.x3d_c01347{left:605.670000px;}
.x46_c01347{left:607.395000px;}
.x6a_c01347{left:609.990000px;}
.x3e_c01347{left:611.715000px;}
.x28_c01347{left:613.440000px;}
.x97_c01347{left:619.485000px;}
.x78_c01347{left:621.210000px;}
.xc2_c01347{left:624.675000px;}
.x103_c01347{left:628.125000px;}
.x9f_c01347{left:629.850000px;}
.xa7_c01347{left:633.315000px;}
.x16_c01347{left:635.910000px;}
.xdf_c01347{left:638.490000px;}
.xc3_c01347{left:641.955000px;}
.xcb_c01347{left:643.680000px;}
.x34_c01347{left:645.405000px;}
.x83_c01347{left:647.130000px;}
.xf4_c01347{left:650.595000px;}
.xae_c01347{left:653.190000px;}
.xce_c01347{left:659.235000px;}
.x35_c01347{left:660.960000px;}
.x9_c01347{left:663.555000px;}
.x29_c01347{left:666.150000px;}
.x91_c01347{left:668.730000px;}
.x8_c01347{left:670.470000px;}
.x17_c01347{left:672.195000px;}
.xab_c01347{left:675.645000px;}
.xb4_c01347{left:678.240000px;}
.x18_c01347{left:679.965000px;}
.x98_c01347{left:682.560000px;}
.xe0_c01347{left:684.285000px;}
.xeb_c01347{left:686.010000px;}
.x8c_c01347{left:687.750000px;}
.x36_c01347{left:690.330000px;}
.x47_c01347{left:692.070000px;}
.x2a_c01347{left:695.520000px;}
.x19_c01347{left:697.245000px;}
.xaf_c01347{left:698.970000px;}
.x6b_c01347{left:701.565000px;}
.x79_c01347{left:703.290000px;}
.xad_c01347{left:705.030000px;}
.x104_c01347{left:707.610000px;}
.xe7_c01347{left:711.075000px;}
.xf9_c01347{left:712.800000px;}
.x8d_c01347{left:714.525000px;}
.xcf_c01347{left:717.120000px;}
.x84_c01347{left:718.845000px;}
.x92_c01347{left:721.440000px;}
.x10c_c01347{left:725.760000px;}
.x1a_c01347{left:728.355000px;}
.x6c_c01347{left:730.950000px;}
.x7a_c01347{left:733.530000px;}
.x85_c01347{left:736.995000px;}
.x6d_c01347{left:740.445000px;}
.x2b_c01347{left:743.910000px;}
.xb0_c01347{left:746.490000px;}
.xd0_c01347{left:749.955000px;}
.x37_c01347{left:753.405000px;}
.xc4_c01347{left:756.870000px;}
.x5e_c01347{left:761.190000px;}
.xe9_c01347{left:762.915000px;}
.x10d_c01347{left:766.365000px;}
.x53_c01347{left:768.960000px;}
.x3f_c01347{left:772.410000px;}
.x2c_c01347{left:777.600000px;}
.x74_c01347{left:780.195000px;}
.x1b_c01347{left:781.920000px;}
.x38_c01347{left:784.515000px;}
.x6e_c01347{left:787.110000px;}
.xb5_c01347{left:788.835000px;}
.x7b_c01347{left:791.430000px;}
.xba_c01347{left:793.155000px;}
.x48_c01347{left:794.880000px;}
.xb1_c01347{left:797.475000px;}
.xbb_c01347{left:800.925000px;}
.xa8_c01347{left:803.520000px;}
.xd4_c01347{left:807.840000px;}
.x5f_c01347{left:810.435000px;}
.xfc_c01347{left:812.160000px;}
.x8e_c01347{left:813.885000px;}
.xac_c01347{left:815.610000px;}
.x1c_c01347{left:817.350000px;}
.xd5_c01347{left:819.930000px;}
.x6f_c01347{left:824.250000px;}
.x86_c01347{left:825.990000px;}
.x49_c01347{left:828.570000px;}
.x2d_c01347{left:831.165000px;}
.xb6_c01347{left:834.630000px;}
.x60_c01347{left:837.210000px;}
.xc5_c01347{left:839.805000px;}
.x99_c01347{left:841.530000px;}
.x39_c01347{left:846.720000px;}
.xdb_c01347{left:851.040000px;}
.x64_c01347{left:852.765000px;}
.x40_c01347{left:854.490000px;}
.xfa_c01347{left:856.230000px;}
.x54_c01347{left:857.955000px;}
.xc6_c01347{left:859.680000px;}
.xfd_c01347{left:862.275000px;}
.x7c_c01347{left:864.870000px;}
.x61_c01347{left:868.320000px;}
.x3a_c01347{left:876.090000px;}
.x2e_c01347{left:877.830000px;}
.x65_c01347{left:880.410000px;}
.xf5_c01347{left:882.150000px;}
.x41_c01347{left:883.875000px;}
.x10f_c01347{left:889.920000px;}
.xb7_c01347{left:893.370000px;}
.xa9_c01347{left:896.835000px;}
.x100_c01347{left:902.010000px;}
.xb8_c01347{left:907.200000px;}
@media print{
.v1_c01347{vertical-align:-9.226667pt;}
.v2_c01347{vertical-align:-3.040000pt;}
.v0_c01347{vertical-align:0.000000pt;}
.v3_c01347{vertical-align:3.093333pt;}
.v4_c01347{vertical-align:9.226667pt;}
.ls4_c01347{letter-spacing:0.000000pt;}
.ls0_c01347{letter-spacing:56.914400pt;}
.ls2_c01347{letter-spacing:92.620652pt;}
.ls3_c01347{letter-spacing:195.840000pt;}
.ls1_c01347{letter-spacing:802.814880pt;}
.ws0_c01347{word-spacing:-10.438933pt;}
.ws2_c01347{word-spacing:-8.304213pt;}
.ws3_c01347{word-spacing:-6.776853pt;}
.ws1_c01347{word-spacing:-6.219096pt;}
.ws4_c01347{word-spacing:0.000000pt;}
.fs2_c01347{font-size:3.072000pt;}
.fs1a_c01347{font-size:5.333333pt;}
.fs0_c01347{font-size:6.133333pt;}
.fs1_c01347{font-size:9.226667pt;}
.fs5_c01347{font-size:12.266667pt;}
.fs4_c01347{font-size:15.360000pt;}
.fs3_c01347{font-size:18.453333pt;}
.fs1c_c01347{font-size:21.493333pt;}
.fs15_c01347{font-size:24.586667pt;}
.fs6_c01347{font-size:27.626667pt;}
.fs11_c01347{font-size:30.720000pt;}
.fs19_c01347{font-size:33.813333pt;}
.fs14_c01347{font-size:36.853333pt;}
.fs10_c01347{font-size:39.946667pt;}
.fsa_c01347{font-size:42.986667pt;}
.fsd_c01347{font-size:46.080000pt;}
.fsf_c01347{font-size:49.173333pt;}
.fs12_c01347{font-size:52.213333pt;}
.fs18_c01347{font-size:55.306667pt;}
.fs9_c01347{font-size:58.346667pt;}
.fs16_c01347{font-size:61.440000pt;}
.fs13_c01347{font-size:64.533333pt;}
.fs7_c01347{font-size:67.573333pt;}
.fs17_c01347{font-size:70.666667pt;}
.fs1b_c01347{font-size:73.706667pt;}
.fs8_c01347{font-size:76.800000pt;}
.fsc_c01347{font-size:79.893333pt;}
.fse_c01347{font-size:89.066667pt;}
.fs1d_c01347{font-size:95.253333pt;}
.fsb_c01347{font-size:98.293333pt;}
.y0_c01347{bottom:0.000000pt;}
.y22f_c01347{bottom:185.853333pt;}
.y22e_c01347{bottom:190.466667pt;}
.y22c_c01347{bottom:192.000000pt;}
.y229_c01347{bottom:193.533333pt;}
.y22d_c01347{bottom:195.840000pt;}
.y22b_c01347{bottom:197.373333pt;}
.y22a_c01347{bottom:198.146667pt;}
.y228_c01347{bottom:198.906667pt;}
.y226_c01347{bottom:206.586667pt;}
.y225_c01347{bottom:208.893333pt;}
.y227_c01347{bottom:209.666667pt;}
.y222_c01347{bottom:211.200000pt;}
.y224_c01347{bottom:211.973333pt;}
.y223_c01347{bottom:220.413333pt;}
.y221_c01347{bottom:224.253333pt;}
.y21f_c01347{bottom:225.026667pt;}
.y220_c01347{bottom:228.093333pt;}
.y21d_c01347{bottom:228.866667pt;}
.y21e_c01347{bottom:229.626667pt;}
.y21c_c01347{bottom:238.080000pt;}
.y215_c01347{bottom:240.386667pt;}
.y217_c01347{bottom:241.146667pt;}
.y21b_c01347{bottom:242.693333pt;}
.y216_c01347{bottom:244.986667pt;}
.y214_c01347{bottom:245.760000pt;}
.y219_c01347{bottom:247.293333pt;}
.y21a_c01347{bottom:251.133333pt;}
.y218_c01347{bottom:253.440000pt;}
.y211_c01347{bottom:254.213333pt;}
.y20f_c01347{bottom:254.973333pt;}
.y210_c01347{bottom:255.746667pt;}
.y20e_c01347{bottom:256.506667pt;}
.y213_c01347{bottom:257.280000pt;}
.y212_c01347{bottom:259.586667pt;}
.y20c_c01347{bottom:271.866667pt;}
.y20d_c01347{bottom:272.640000pt;}
.y20a_c01347{bottom:274.173333pt;}
.y20b_c01347{bottom:275.706667pt;}
.y209_c01347{bottom:276.480000pt;}
.y207_c01347{bottom:286.466667pt;}
.y203_c01347{bottom:288.000000pt;}
.y208_c01347{bottom:288.773333pt;}
.y206_c01347{bottom:290.306667pt;}
.y205_c01347{bottom:291.066667pt;}
.y204_c01347{bottom:291.840000pt;}
.y202_c01347{bottom:292.613333pt;}
.y201_c01347{bottom:301.053333pt;}
.y200_c01347{bottom:301.826667pt;}
.y1fe_c01347{bottom:304.133333pt;}
.y1fd_c01347{bottom:304.893333pt;}
.y1ff_c01347{bottom:307.200000pt;}
.y1fc_c01347{bottom:314.106667pt;}
.y1f7_c01347{bottom:319.493333pt;}
.y1fb_c01347{bottom:320.253333pt;}
.y1fa_c01347{bottom:321.026667pt;}
.y1f9_c01347{bottom:321.786667pt;}
.y1f8_c01347{bottom:323.333333pt;}
.y1f5_c01347{bottom:335.613333pt;}
.y1f6_c01347{bottom:336.386667pt;}
.y1f3_c01347{bottom:337.146667pt;}
.y1f4_c01347{bottom:337.920000pt;}
.y1f2_c01347{bottom:338.693333pt;}
.y1f1_c01347{bottom:340.226667pt;}
.y1f0_c01347{bottom:345.600000pt;}
.y1ef_c01347{bottom:348.666667pt;}
.y1ea_c01347{bottom:349.440000pt;}
.y1eb_c01347{bottom:350.973333pt;}
.y1ee_c01347{bottom:351.746667pt;}
.y1ed_c01347{bottom:353.280000pt;}
.y1ec_c01347{bottom:354.053333pt;}
.y1e9_c01347{bottom:363.266667pt;}
.y1e8_c01347{bottom:364.800000pt;}
.y1e6_c01347{bottom:365.573333pt;}
.y1e7_c01347{bottom:369.413333pt;}
.y1e5_c01347{bottom:370.173333pt;}
.y1e4_c01347{bottom:371.706667pt;}
.y1e0_c01347{bottom:377.853333pt;}
.y1e3_c01347{bottom:383.226667pt;}
.y1e2_c01347{bottom:384.000000pt;}
.y1e1_c01347{bottom:384.773333pt;}
.y1df_c01347{bottom:395.520000pt;}
.y1dd_c01347{bottom:397.053333pt;}
.y1db_c01347{bottom:398.586667pt;}
.y1de_c01347{bottom:400.133333pt;}
.y1dc_c01347{bottom:401.666667pt;}
.y5_c01347{bottom:408.573333pt;}
.y1da_c01347{bottom:410.106667pt;}
.y1d8_c01347{bottom:411.653333pt;}
.y1d9_c01347{bottom:415.493333pt;}
.y1d7_c01347{bottom:416.253333pt;}
.y1d5_c01347{bottom:417.786667pt;}
.y1d6_c01347{bottom:422.400000pt;}
.y1d3_c01347{bottom:424.706667pt;}
.y1d4_c01347{bottom:425.466667pt;}
.y1d2_c01347{bottom:426.240000pt;}
.y1d0_c01347{bottom:429.306667pt;}
.y1d1_c01347{bottom:432.386667pt;}
.y1cc_c01347{bottom:440.066667pt;}
.y1cf_c01347{bottom:440.826667pt;}
.y1cb_c01347{bottom:441.600000pt;}
.y1cd_c01347{bottom:442.373333pt;}
.y1c8_c01347{bottom:443.133333pt;}
.y1c7_c01347{bottom:444.666667pt;}
.y1ca_c01347{bottom:446.213333pt;}
.y1c9_c01347{bottom:449.280000pt;}
.y1ce_c01347{bottom:450.053333pt;}
.y1c6_c01347{bottom:450.813333pt;}
.y1c4_c01347{bottom:452.346667pt;}
.y1c3_c01347{bottom:453.120000pt;}
.y1c5_c01347{bottom:454.653333pt;}
.y1c0_c01347{bottom:455.426667pt;}
.y1bf_c01347{bottom:456.186667pt;}
.y1c1_c01347{bottom:456.960000pt;}
.y1c2_c01347{bottom:460.800000pt;}
.y1be_c01347{bottom:461.573333pt;}
.y1bd_c01347{bottom:462.333333pt;}
.y1bc_c01347{bottom:463.106667pt;}
.y1bb_c01347{bottom:466.173333pt;}
.y1ba_c01347{bottom:470.013333pt;}
.y1b8_c01347{bottom:470.786667pt;}
.y1b4_c01347{bottom:472.320000pt;}
.y1b9_c01347{bottom:473.853333pt;}
.y1b7_c01347{bottom:475.386667pt;}
.y1b5_c01347{bottom:477.693333pt;}
.y1b6_c01347{bottom:485.373333pt;}
.y1b1_c01347{bottom:486.146667pt;}
.y1b0_c01347{bottom:486.906667pt;}
.y1af_c01347{bottom:487.680000pt;}
.y1ad_c01347{bottom:489.213333pt;}
.y1b2_c01347{bottom:489.986667pt;}
.y1ae_c01347{bottom:493.053333pt;}
.y1b3_c01347{bottom:494.586667pt;}
.y1ab_c01347{bottom:497.666667pt;}
.y1aa_c01347{bottom:499.973333pt;}
.y1ac_c01347{bottom:501.506667pt;}
.y1a7_c01347{bottom:502.266667pt;}
.y1a9_c01347{bottom:503.040000pt;}
.y1a8_c01347{bottom:504.573333pt;}
.y1a2_c01347{bottom:505.346667pt;}
.y1a4_c01347{bottom:506.106667pt;}
.y1a5_c01347{bottom:506.880000pt;}
.y1a3_c01347{bottom:507.653333pt;}
.y1a1_c01347{bottom:508.413333pt;}
.y1a6_c01347{bottom:510.720000pt;}
.y19f_c01347{bottom:513.786667pt;}
.y1a0_c01347{bottom:516.866667pt;}
.y19e_c01347{bottom:517.626667pt;}
.y19c_c01347{bottom:519.173333pt;}
.y19b_c01347{bottom:519.933333pt;}
.y19a_c01347{bottom:521.466667pt;}
.y19d_c01347{bottom:522.240000pt;}
.y194_c01347{bottom:532.986667pt;}
.y199_c01347{bottom:533.760000pt;}
.y198_c01347{bottom:534.533333pt;}
.y197_c01347{bottom:535.293333pt;}
.y196_c01347{bottom:536.066667pt;}
.y191_c01347{bottom:536.826667pt;}
.y195_c01347{bottom:537.600000pt;}
.y193_c01347{bottom:538.373333pt;}
.y192_c01347{bottom:539.906667pt;}
.y18e_c01347{bottom:546.053333pt;}
.y18d_c01347{bottom:547.586667pt;}
.y190_c01347{bottom:548.346667pt;}
.y18a_c01347{bottom:549.120000pt;}
.y18f_c01347{bottom:549.893333pt;}
.y18b_c01347{bottom:550.653333pt;}
.y186_c01347{bottom:551.426667pt;}
.y18c_c01347{bottom:552.186667pt;}
.y189_c01347{bottom:552.960000pt;}
.y188_c01347{bottom:554.493333pt;}
.y187_c01347{bottom:555.266667pt;}
.y185_c01347{bottom:563.706667pt;}
.y182_c01347{bottom:565.253333pt;}
.y181_c01347{bottom:566.013333pt;}
.y180_c01347{bottom:566.786667pt;}
.y183_c01347{bottom:567.546667pt;}
.y17f_c01347{bottom:569.093333pt;}
.y184_c01347{bottom:573.693333pt;}
.y17d_c01347{bottom:576.000000pt;}
.y17e_c01347{bottom:576.773333pt;}
.y17a_c01347{bottom:577.533333pt;}
.y178_c01347{bottom:579.840000pt;}
.y17b_c01347{bottom:580.613333pt;}
.y17c_c01347{bottom:582.146667pt;}
.y176_c01347{bottom:583.680000pt;}
.y179_c01347{bottom:584.453333pt;}
.y177_c01347{bottom:587.520000pt;}
.y174_c01347{bottom:591.360000pt;}
.y172_c01347{bottom:592.893333pt;}
.y175_c01347{bottom:595.200000pt;}
.y171_c01347{bottom:595.973333pt;}
.y173_c01347{bottom:596.733333pt;}
.y16f_c01347{bottom:598.266667pt;}
.y170_c01347{bottom:599.813333pt;}
.y16d_c01347{bottom:600.573333pt;}
.y16e_c01347{bottom:601.346667pt;}
.y16c_c01347{bottom:605.946667pt;}
.y169_c01347{bottom:609.786667pt;}
.y168_c01347{bottom:611.333333pt;}
.y16a_c01347{bottom:612.093333pt;}
.y16b_c01347{bottom:612.866667pt;}
.y167_c01347{bottom:615.173333pt;}
.y166_c01347{bottom:616.706667pt;}
.y165_c01347{bottom:617.466667pt;}
.y164_c01347{bottom:621.306667pt;}
.y162_c01347{bottom:623.613333pt;}
.y160_c01347{bottom:625.146667pt;}
.y163_c01347{bottom:625.920000pt;}
.y15e_c01347{bottom:626.693333pt;}
.y15d_c01347{bottom:627.453333pt;}
.y161_c01347{bottom:628.986667pt;}
.y15f_c01347{bottom:630.533333pt;}
.y15c_c01347{bottom:632.826667pt;}
.y15b_c01347{bottom:635.906667pt;}
.y159_c01347{bottom:640.506667pt;}
.y156_c01347{bottom:641.280000pt;}
.y154_c01347{bottom:642.813333pt;}
.y152_c01347{bottom:643.586667pt;}
.y158_c01347{bottom:644.346667pt;}
.y155_c01347{bottom:646.653333pt;}
.y153_c01347{bottom:648.186667pt;}
.y157_c01347{bottom:648.960000pt;}
.y15a_c01347{bottom:652.026667pt;}
.y151_c01347{bottom:652.800000pt;}
.y150_c01347{bottom:655.106667pt;}
.y14e_c01347{bottom:657.413333pt;}
.y14f_c01347{bottom:658.173333pt;}
.y14c_c01347{bottom:658.946667pt;}
.y149_c01347{bottom:659.706667pt;}
.y14a_c01347{bottom:662.013333pt;}
.y14d_c01347{bottom:662.786667pt;}
.y14b_c01347{bottom:664.320000pt;}
.y148_c01347{bottom:670.466667pt;}
.y146_c01347{bottom:671.226667pt;}
.y145_c01347{bottom:672.000000pt;}
.y142_c01347{bottom:673.533333pt;}
.y147_c01347{bottom:674.306667pt;}
.y140_c01347{bottom:675.066667pt;}
.y141_c01347{bottom:675.840000pt;}
.y13f_c01347{bottom:676.613333pt;}
.y143_c01347{bottom:677.373333pt;}
.y144_c01347{bottom:684.293333pt;}
.y4_c01347{bottom:685.826667pt;}
.y13c_c01347{bottom:687.360000pt;}
.y3_c01347{bottom:688.133333pt;}
.y13b_c01347{bottom:688.893333pt;}
.y13e_c01347{bottom:690.426667pt;}
.y13d_c01347{bottom:691.200000pt;}
.y13a_c01347{bottom:691.973333pt;}
.y139_c01347{bottom:695.040000pt;}
.y137_c01347{bottom:699.653333pt;}
.y138_c01347{bottom:701.946667pt;}
.y134_c01347{bottom:703.493333pt;}
.y135_c01347{bottom:704.253333pt;}
.y132_c01347{bottom:705.026667pt;}
.y136_c01347{bottom:706.560000pt;}
.y130_c01347{bottom:707.333333pt;}
.y133_c01347{bottom:708.093333pt;}
.y131_c01347{bottom:708.866667pt;}
.y12f_c01347{bottom:709.626667pt;}
.y12c_c01347{bottom:717.306667pt;}
.y129_c01347{bottom:720.386667pt;}
.y12e_c01347{bottom:721.146667pt;}
.y12b_c01347{bottom:721.920000pt;}
.y12a_c01347{bottom:723.453333pt;}
.y128_c01347{bottom:724.226667pt;}
.y127_c01347{bottom:724.986667pt;}
.y12d_c01347{bottom:725.760000pt;}
.y124_c01347{bottom:731.133333pt;}
.y126_c01347{bottom:733.440000pt;}
.y125_c01347{bottom:734.213333pt;}
.y11e_c01347{bottom:734.973333pt;}
.y11f_c01347{bottom:735.746667pt;}
.y123_c01347{bottom:738.053333pt;}
.y121_c01347{bottom:738.813333pt;}
.y120_c01347{bottom:739.586667pt;}
.y11d_c01347{bottom:740.346667pt;}
.y11c_c01347{bottom:745.733333pt;}
.y122_c01347{bottom:746.493333pt;}
.y11b_c01347{bottom:747.266667pt;}
.y11a_c01347{bottom:748.026667pt;}
.y117_c01347{bottom:750.333333pt;}
.y119_c01347{bottom:753.413333pt;}
.y113_c01347{bottom:754.173333pt;}
.y116_c01347{bottom:754.946667pt;}
.y115_c01347{bottom:755.706667pt;}
.y114_c01347{bottom:756.480000pt;}
.y112_c01347{bottom:761.853333pt;}
.y118_c01347{bottom:763.386667pt;}
.y110_c01347{bottom:764.160000pt;}
.y10e_c01347{bottom:764.933333pt;}
.y10c_c01347{bottom:765.693333pt;}
.y109_c01347{bottom:766.466667pt;}
.y10b_c01347{bottom:768.773333pt;}
.y10f_c01347{bottom:769.533333pt;}
.y10d_c01347{bottom:770.306667pt;}
.y10a_c01347{bottom:773.373333pt;}
.y111_c01347{bottom:776.453333pt;}
.y108_c01347{bottom:777.213333pt;}
.y106_c01347{bottom:781.053333pt;}
.y104_c01347{bottom:781.826667pt;}
.y107_c01347{bottom:782.586667pt;}
.y102_c01347{bottom:783.360000pt;}
.y105_c01347{bottom:784.893333pt;}
.y103_c01347{bottom:786.426667pt;}
.y101_c01347{bottom:793.346667pt;}
.y100_c01347{bottom:797.186667pt;}
.yfd_c01347{bottom:797.946667pt;}
.yff_c01347{bottom:799.493333pt;}
.yfa_c01347{bottom:800.253333pt;}
.yfe_c01347{bottom:801.026667pt;}
.yfc_c01347{bottom:801.786667pt;}
.yfb_c01347{bottom:802.560000pt;}
.yf8_c01347{bottom:808.706667pt;}
.yf6_c01347{bottom:811.013333pt;}
.yf9_c01347{bottom:812.546667pt;}
.yf7_c01347{bottom:814.080000pt;}
.yf4_c01347{bottom:814.853333pt;}
.yf1_c01347{bottom:815.613333pt;}
.yf5_c01347{bottom:816.386667pt;}
.yf2_c01347{bottom:817.146667pt;}
.yf3_c01347{bottom:817.920000pt;}
.yf0_c01347{bottom:818.693333pt;}
.yef_c01347{bottom:822.533333pt;}
.yee_c01347{bottom:824.826667pt;}
.yed_c01347{bottom:825.600000pt;}
.ye9_c01347{bottom:827.906667pt;}
.ye7_c01347{bottom:828.666667pt;}
.ye6_c01347{bottom:829.440000pt;}
.yec_c01347{bottom:830.213333pt;}
.yeb_c01347{bottom:830.973333pt;}
.yea_c01347{bottom:831.746667pt;}
.ye8_c01347{bottom:833.280000pt;}
.ye5_c01347{bottom:834.053333pt;}
.ye4_c01347{bottom:834.813333pt;}
.ye2_c01347{bottom:847.106667pt;}
.ye1_c01347{bottom:847.866667pt;}
.ye0_c01347{bottom:848.640000pt;}
.ye3_c01347{bottom:849.413333pt;}
.ydf_c01347{bottom:850.173333pt;}
.yd9_c01347{bottom:859.386667pt;}
.yda_c01347{bottom:862.466667pt;}
.ydb_c01347{bottom:863.226667pt;}
.yd8_c01347{bottom:864.000000pt;}
.yde_c01347{bottom:870.906667pt;}
.ydd_c01347{bottom:873.986667pt;}
.ydc_c01347{bottom:874.746667pt;}
.yd4_c01347{bottom:876.293333pt;}
.yd7_c01347{bottom:877.053333pt;}
.yd3_c01347{bottom:877.826667pt;}
.yd6_c01347{bottom:878.586667pt;}
.yd5_c01347{bottom:879.360000pt;}
.ycf_c01347{bottom:880.133333pt;}
.yd1_c01347{bottom:880.893333pt;}
.yce_c01347{bottom:885.506667pt;}
.yd2_c01347{bottom:886.266667pt;}
.yc7_c01347{bottom:887.040000pt;}
.yc8_c01347{bottom:887.813333pt;}
.yc2_c01347{bottom:888.573333pt;}
.yc6_c01347{bottom:890.106667pt;}
.yc5_c01347{bottom:890.880000pt;}
.ycd_c01347{bottom:892.413333pt;}
.ycc_c01347{bottom:893.186667pt;}
.ycb_c01347{bottom:893.946667pt;}
.yc4_c01347{bottom:895.493333pt;}
.yc3_c01347{bottom:896.253333pt;}
.yc9_c01347{bottom:898.560000pt;}
.yd0_c01347{bottom:899.333333pt;}
.yca_c01347{bottom:903.933333pt;}
.ybe_c01347{bottom:905.466667pt;}
.yc1_c01347{bottom:906.240000pt;}
.yc0_c01347{bottom:907.013333pt;}
.ybf_c01347{bottom:907.773333pt;}
.ybd_c01347{bottom:909.306667pt;}
.ybc_c01347{bottom:910.853333pt;}
.yb8_c01347{bottom:917.760000pt;}
.yba_c01347{bottom:920.826667pt;}
.yb9_c01347{bottom:921.600000pt;}
.ybb_c01347{bottom:922.373333pt;}
.yb7_c01347{bottom:925.440000pt;}
.yb6_c01347{bottom:926.973333pt;}
.yb5_c01347{bottom:933.893333pt;}
.yb4_c01347{bottom:934.653333pt;}
.yb2_c01347{bottom:936.960000pt;}
.yb3_c01347{bottom:937.733333pt;}
.yb0_c01347{bottom:939.266667pt;}
.yb1_c01347{bottom:941.573333pt;}
.yaf_c01347{bottom:942.333333pt;}
.yae_c01347{bottom:943.106667pt;}
.yab_c01347{bottom:947.706667pt;}
.ya9_c01347{bottom:950.013333pt;}
.yaa_c01347{bottom:950.786667pt;}
.yad_c01347{bottom:951.546667pt;}
.yac_c01347{bottom:952.320000pt;}
.ya8_c01347{bottom:953.093333pt;}
.ya4_c01347{bottom:953.853333pt;}
.ya6_c01347{bottom:954.626667pt;}
.ya7_c01347{bottom:956.160000pt;}
.ya5_c01347{bottom:956.933333pt;}
.ya2_c01347{bottom:957.693333pt;}
.ya3_c01347{bottom:958.466667pt;}
.ya0_c01347{bottom:966.906667pt;}
.ya1_c01347{bottom:967.680000pt;}
.y9c_c01347{bottom:969.213333pt;}
.y9e_c01347{bottom:969.986667pt;}
.y9f_c01347{bottom:971.520000pt;}
.y9a_c01347{bottom:972.293333pt;}
.y9d_c01347{bottom:973.053333pt;}
.y9b_c01347{bottom:974.586667pt;}
.yd_c01347{bottom:979.973333pt;}
.y99_c01347{bottom:983.040000pt;}
.y97_c01347{bottom:983.813333pt;}
.y96_c01347{bottom:985.346667pt;}
.y94_c01347{bottom:986.880000pt;}
.y95_c01347{bottom:987.653333pt;}
.y92_c01347{bottom:988.413333pt;}
.y93_c01347{bottom:989.186667pt;}
.y98_c01347{bottom:993.026667pt;}
.y91_c01347{bottom:996.866667pt;}
.y8d_c01347{bottom:999.173333pt;}
.y8a_c01347{bottom:1000.706667pt;}
.y90_c01347{bottom:1001.466667pt;}
.y8f_c01347{bottom:1002.240000pt;}
.y8e_c01347{bottom:1003.013333pt;}
.y8c_c01347{bottom:1005.306667pt;}
.y8b_c01347{bottom:1007.613333pt;}
.y89_c01347{bottom:1010.693333pt;}
.y86_c01347{bottom:1012.226667pt;}
.y84_c01347{bottom:1013.760000pt;}
.y83_c01347{bottom:1014.533333pt;}
.y88_c01347{bottom:1015.293333pt;}
.y87_c01347{bottom:1016.066667pt;}
.y85_c01347{bottom:1016.826667pt;}
.y82_c01347{bottom:1017.600000pt;}
.y81_c01347{bottom:1019.133333pt;}
.y7f_c01347{bottom:1019.906667pt;}
.y80_c01347{bottom:1020.666667pt;}
.y7a_c01347{bottom:1029.120000pt;}
.y7e_c01347{bottom:1029.893333pt;}
.y7d_c01347{bottom:1030.653333pt;}
.y7c_c01347{bottom:1031.426667pt;}
.y7b_c01347{bottom:1032.960000pt;}
.y79_c01347{bottom:1034.493333pt;}
.y77_c01347{bottom:1035.266667pt;}
.y76_c01347{bottom:1036.026667pt;}
.y78_c01347{bottom:1038.333333pt;}
.y74_c01347{bottom:1042.946667pt;}
.y75_c01347{bottom:1045.253333pt;}
.y72_c01347{bottom:1046.013333pt;}
.y70_c01347{bottom:1046.786667pt;}
.y6e_c01347{bottom:1047.546667pt;}
.y73_c01347{bottom:1048.320000pt;}
.y71_c01347{bottom:1049.093333pt;}
.y6f_c01347{bottom:1050.626667pt;}
.y6d_c01347{bottom:1051.386667pt;}
.y6c_c01347{bottom:1059.066667pt;}
.y6a_c01347{bottom:1062.146667pt;}
.y69_c01347{bottom:1062.906667pt;}
.y65_c01347{bottom:1064.453333pt;}
.y68_c01347{bottom:1065.986667pt;}
.y64_c01347{bottom:1066.746667pt;}
.y66_c01347{bottom:1068.293333pt;}
.y67_c01347{bottom:1071.360000pt;}
.y6b_c01347{bottom:1072.133333pt;}
.y62_c01347{bottom:1074.426667pt;}
.y63_c01347{bottom:1075.973333pt;}
.y60_c01347{bottom:1076.733333pt;}
.y5a_c01347{bottom:1077.506667pt;}
.y5e_c01347{bottom:1078.266667pt;}
.y5d_c01347{bottom:1079.040000pt;}
.y59_c01347{bottom:1079.813333pt;}
.y61_c01347{bottom:1080.573333pt;}
.y5f_c01347{bottom:1081.346667pt;}
.y5c_c01347{bottom:1082.880000pt;}
.y5b_c01347{bottom:1083.653333pt;}
.y57_c01347{bottom:1089.786667pt;}
.y58_c01347{bottom:1092.093333pt;}
.y55_c01347{bottom:1095.173333pt;}
.y56_c01347{bottom:1097.466667pt;}
.y54_c01347{bottom:1098.240000pt;}
.y50_c01347{bottom:1104.386667pt;}
.y51_c01347{bottom:1106.693333pt;}
.y53_c01347{bottom:1107.453333pt;}
.y52_c01347{bottom:1108.226667pt;}
.y49_c01347{bottom:1109.760000pt;}
.y4f_c01347{bottom:1110.533333pt;}
.y4e_c01347{bottom:1111.293333pt;}
.y4d_c01347{bottom:1112.066667pt;}
.y4b_c01347{bottom:1112.826667pt;}
.y4a_c01347{bottom:1113.600000pt;}
.y47_c01347{bottom:1114.373333pt;}
.y48_c01347{bottom:1115.133333pt;}
.y45_c01347{bottom:1118.973333pt;}
.y43_c01347{bottom:1119.746667pt;}
.y4c_c01347{bottom:1120.506667pt;}
.y46_c01347{bottom:1122.053333pt;}
.y44_c01347{bottom:1124.346667pt;}
.y40_c01347{bottom:1125.120000pt;}
.y3e_c01347{bottom:1125.893333pt;}
.y42_c01347{bottom:1127.426667pt;}
.y3d_c01347{bottom:1128.186667pt;}
.y3c_c01347{bottom:1128.960000pt;}
.y3b_c01347{bottom:1129.733333pt;}
.y3f_c01347{bottom:1130.493333pt;}
.y3a_c01347{bottom:1135.106667pt;}
.y41_c01347{bottom:1137.413333pt;}
.y39_c01347{bottom:1138.946667pt;}
.y36_c01347{bottom:1139.706667pt;}
.y37_c01347{bottom:1140.480000pt;}
.y32_c01347{bottom:1141.253333pt;}
.y35_c01347{bottom:1142.013333pt;}
.y33_c01347{bottom:1143.546667pt;}
.y38_c01347{bottom:1145.093333pt;}
.y34_c01347{bottom:1145.853333pt;}
.y31_c01347{bottom:1152.773333pt;}
.y30_c01347{bottom:1155.066667pt;}
.y2e_c01347{bottom:1155.840000pt;}
.y2b_c01347{bottom:1157.373333pt;}
.y2c_c01347{bottom:1158.146667pt;}
.y2a_c01347{bottom:1159.680000pt;}
.y29_c01347{bottom:1161.213333pt;}
.y2d_c01347{bottom:1162.746667pt;}
.y2f_c01347{bottom:1164.293333pt;}
.y27_c01347{bottom:1168.133333pt;}
.y26_c01347{bottom:1168.893333pt;}
.y22_c01347{bottom:1169.666667pt;}
.y28_c01347{bottom:1170.426667pt;}
.y1f_c01347{bottom:1171.200000pt;}
.y1e_c01347{bottom:1171.973333pt;}
.y24_c01347{bottom:1172.733333pt;}
.y25_c01347{bottom:1175.040000pt;}
.y20_c01347{bottom:1176.573333pt;}
.y21_c01347{bottom:1177.346667pt;}
.y23_c01347{bottom:1179.653333pt;}
.y1d_c01347{bottom:1181.946667pt;}
.y1c_c01347{bottom:1182.720000pt;}
.y2_c01347{bottom:1183.493333pt;}
.y1a_c01347{bottom:1185.026667pt;}
.y18_c01347{bottom:1185.786667pt;}
.y16_c01347{bottom:1187.333333pt;}
.y1_c01347{bottom:1188.093333pt;}
.y19_c01347{bottom:1188.866667pt;}
.y1b_c01347{bottom:1189.626667pt;}
.y15_c01347{bottom:1191.933333pt;}
.y17_c01347{bottom:1197.306667pt;}
.y14_c01347{bottom:1201.146667pt;}
.ye_c01347{bottom:1202.693333pt;}
.y13_c01347{bottom:1203.453333pt;}
.y12_c01347{bottom:1204.226667pt;}
.yf_c01347{bottom:1204.986667pt;}
.y11_c01347{bottom:1205.760000pt;}
.y10_c01347{bottom:1208.066667pt;}
.yc_c01347{bottom:1228.800000pt;}
.yb_c01347{bottom:1230.333333pt;}
.ya_c01347{bottom:1231.866667pt;}
.y9_c01347{bottom:1248.000000pt;}
.y8_c01347{bottom:1267.200000pt;}
.y6_c01347{bottom:1274.106667pt;}
.y7_c01347{bottom:1275.653333pt;}
.h15_c01347{height:2.764500pt;}
.h1c_c01347{height:4.799479pt;}
.h2_c01347{height:5.519401pt;}
.h6_c01347{height:8.303099pt;}
.h5_c01347{height:11.038802pt;}
.h4_c01347{height:13.822500pt;}
.h21_c01347{height:14.746068pt;}
.h3_c01347{height:16.606198pt;}
.h1f_c01347{height:19.341901pt;}
.h17_c01347{height:22.125599pt;}
.h7_c01347{height:24.861302pt;}
.h12_c01347{height:27.645000pt;}
.h1b_c01347{height:30.428698pt;}
.h16_c01347{height:33.164401pt;}
.h11_c01347{height:35.948099pt;}
.hb_c01347{height:38.683802pt;}
.he_c01347{height:41.467500pt;}
.h10_c01347{height:44.251198pt;}
.h1e_c01347{height:44.560833pt;}
.h13_c01347{height:46.986901pt;}
.h1a_c01347{height:49.770599pt;}
.ha_c01347{height:52.506302pt;}
.h18_c01347{height:55.290000pt;}
.h14_c01347{height:58.073698pt;}
.h8_c01347{height:60.809401pt;}
.h19_c01347{height:63.593099pt;}
.h1d_c01347{height:66.328802pt;}
.h9_c01347{height:69.112500pt;}
.hd_c01347{height:71.896198pt;}
.hf_c01347{height:80.151302pt;}
.h20_c01347{height:85.718698pt;}
.hc_c01347{height:88.454401pt;}
.h1_c01347{height:1345.333333pt;}
.h0_c01347{height:1345.533333pt;}
.w0_c01347{width:959.226667pt;}
.w1_c01347{width:959.333333pt;}
.x0_c01347{left:0.000000pt;}
.x1_c01347{left:48.386667pt;}
.x5_c01347{left:163.586667pt;}
.x3_c01347{left:166.653333pt;}
.x4_c01347{left:172.026667pt;}
.x2_c01347{left:181.253333pt;}
.xe_c01347{left:193.533333pt;}
.x11a_c01347{left:199.680000pt;}
.xc7_c01347{left:210.426667pt;}
.x55_c01347{left:211.973333pt;}
.xfe_c01347{left:213.506667pt;}
.x111_c01347{left:215.040000pt;}
.x108_c01347{left:216.573333pt;}
.xea_c01347{left:218.106667pt;}
.x1d_c01347{left:219.653333pt;}
.xc8_c01347{left:221.186667pt;}
.xf_c01347{left:222.720000pt;}
.x87_c01347{left:225.026667pt;}
.xe1_c01347{left:227.333333pt;}
.x113_c01347{left:231.173333pt;}
.xc0_c01347{left:232.706667pt;}
.xf2_c01347{left:234.240000pt;}
.xbe_c01347{left:235.773333pt;}
.x110_c01347{left:237.306667pt;}
.x70_c01347{left:239.613333pt;}
.x4a_c01347{left:241.146667pt;}
.xd1_c01347{left:243.453333pt;}
.x75_c01347{left:244.986667pt;}
.x1e_c01347{left:246.533333pt;}
.xa0_c01347{left:248.826667pt;}
.x2f_c01347{left:250.373333pt;}
.x11b_c01347{left:253.440000pt;}
.xd6_c01347{left:255.746667pt;}
.xe8_c01347{left:258.813333pt;}
.xf8_c01347{left:261.893333pt;}
.x1f_c01347{left:263.426667pt;}
.x114_c01347{left:264.960000pt;}
.x4b_c01347{left:266.493333pt;}
.xdc_c01347{left:269.573333pt;}
.xb2_c01347{left:271.106667pt;}
.x93_c01347{left:272.640000pt;}
.x71_c01347{left:274.173333pt;}
.x8f_c01347{left:276.480000pt;}
.x10_c01347{left:278.786667pt;}
.x10e_c01347{left:280.320000pt;}
.x7d_c01347{left:282.626667pt;}
.xdd_c01347{left:284.933333pt;}
.x119_c01347{left:286.466667pt;}
.x105_c01347{left:288.773333pt;}
.x56_c01347{left:290.306667pt;}
.x88_c01347{left:291.840000pt;}
.x115_c01347{left:293.373333pt;}
.x101_c01347{left:295.680000pt;}
.x62_c01347{left:297.213333pt;}
.x66_c01347{left:298.746667pt;}
.xe4_c01347{left:300.293333pt;}
.x20_c01347{left:301.826667pt;}
.x57_c01347{left:304.133333pt;}
.xd7_c01347{left:305.666667pt;}
.x89_c01347{left:307.200000pt;}
.x118_c01347{left:308.733333pt;}
.x30_c01347{left:310.266667pt;}
.x4c_c01347{left:312.573333pt;}
.xff_c01347{left:314.106667pt;}
.x3b_c01347{left:315.653333pt;}
.x21_c01347{left:317.946667pt;}
.x4d_c01347{left:319.493333pt;}
.x94_c01347{left:321.786667pt;}
.x102_c01347{left:324.093333pt;}
.xa1_c01347{left:326.400000pt;}
.xf6_c01347{left:327.933333pt;}
.x9a_c01347{left:330.240000pt;}
.x7e_c01347{left:331.773333pt;}
.x58_c01347{left:335.613333pt;}
.x112_c01347{left:337.146667pt;}
.x42_c01347{left:338.693333pt;}
.x76_c01347{left:341.760000pt;}
.xd8_c01347{left:344.826667pt;}
.x31_c01347{left:347.133333pt;}
.xec_c01347{left:350.973333pt;}
.xa2_c01347{left:353.280000pt;}
.x11_c01347{left:355.586667pt;}
.x109_c01347{left:357.120000pt;}
.x59_c01347{left:360.186667pt;}
.x95_c01347{left:361.733333pt;}
.xaa_c01347{left:363.266667pt;}
.xf3_c01347{left:364.800000pt;}
.x4e_c01347{left:366.333333pt;}
.x12_c01347{left:368.640000pt;}
.x67_c01347{left:370.173333pt;}
.xcc_c01347{left:371.706667pt;}
.x9b_c01347{left:373.253333pt;}
.x43_c01347{left:375.546667pt;}
.xfb_c01347{left:377.093333pt;}
.xa3_c01347{left:378.626667pt;}
.x4f_c01347{left:380.933333pt;}
.x5a_c01347{left:383.226667pt;}
.xc9_c01347{left:384.773333pt;}
.xe2_c01347{left:387.840000pt;}
.x7f_c01347{left:389.373333pt;}
.x9c_c01347{left:390.906667pt;}
.x3c_c01347{left:393.213333pt;}
.xb9_c01347{left:395.520000pt;}
.x50_c01347{left:397.053333pt;}
.xed_c01347{left:399.360000pt;}
.x13_c01347{left:400.893333pt;}
.xa4_c01347{left:402.426667pt;}
.x68_c01347{left:403.973333pt;}
.xb3_c01347{left:406.266667pt;}
.xe5_c01347{left:408.573333pt;}
.x8a_c01347{left:410.880000pt;}
.x96_c01347{left:413.186667pt;}
.xee_c01347{left:414.720000pt;}
.x22_c01347{left:417.026667pt;}
.x117_c01347{left:419.333333pt;}
.xf1_c01347{left:420.866667pt;}
.x72_c01347{left:422.400000pt;}
.xf7_c01347{left:425.466667pt;}
.x9d_c01347{left:427.773333pt;}
.x73_c01347{left:430.080000pt;}
.xef_c01347{left:431.613333pt;}
.xcd_c01347{left:433.920000pt;}
.xc1_c01347{left:436.226667pt;}
.x44_c01347{left:438.533333pt;}
.xca_c01347{left:440.066667pt;}
.xa5_c01347{left:441.600000pt;}
.x8b_c01347{left:443.906667pt;}
.xa_c01347{left:446.213333pt;}
.x9e_c01347{left:448.506667pt;}
.x116_c01347{left:450.813333pt;}
.x80_c01347{left:452.346667pt;}
.x5b_c01347{left:453.893333pt;}
.x14_c01347{left:455.426667pt;}
.xbf_c01347{left:457.733333pt;}
.xa6_c01347{left:459.266667pt;}
.x32_c01347{left:461.573333pt;}
.xf0_c01347{left:463.106667pt;}
.x23_c01347{left:464.640000pt;}
.x106_c01347{left:466.173333pt;}
.x69_c01347{left:467.706667pt;}
.x81_c01347{left:469.253333pt;}
.x51_c01347{left:470.786667pt;}
.x24_c01347{left:472.320000pt;}
.xb_c01347{left:473.853333pt;}
.xd2_c01347{left:475.386667pt;}
.x25_c01347{left:477.693333pt;}
.xe3_c01347{left:480.000000pt;}
.xbc_c01347{left:481.533333pt;}
.xd3_c01347{left:486.146667pt;}
.x26_c01347{left:487.680000pt;}
.x63_c01347{left:489.986667pt;}
.x27_c01347{left:492.293333pt;}
.x107_c01347{left:495.360000pt;}
.xde_c01347{left:496.893333pt;}
.x10a_c01347{left:498.426667pt;}
.xc_c01347{left:500.733333pt;}
.x90_c01347{left:502.266667pt;}
.x10b_c01347{left:504.573333pt;}
.x5c_c01347{left:506.106667pt;}
.x77_c01347{left:507.653333pt;}
.x6_c01347{left:511.493333pt;}
.x5d_c01347{left:513.786667pt;}
.xd9_c01347{left:515.333333pt;}
.x7_c01347{left:516.866667pt;}
.x45_c01347{left:519.173333pt;}
.x15_c01347{left:520.706667pt;}
.x52_c01347{left:523.013333pt;}
.xbd_c01347{left:526.080000pt;}
.xe6_c01347{left:527.613333pt;}
.xd_c01347{left:529.146667pt;}
.x33_c01347{left:532.226667pt;}
.xda_c01347{left:534.533333pt;}
.x82_c01347{left:536.826667pt;}
.x3d_c01347{left:538.373333pt;}
.x46_c01347{left:539.906667pt;}
.x6a_c01347{left:542.213333pt;}
.x3e_c01347{left:543.746667pt;}
.x28_c01347{left:545.280000pt;}
.x97_c01347{left:550.653333pt;}
.x78_c01347{left:552.186667pt;}
.xc2_c01347{left:555.266667pt;}
.x103_c01347{left:558.333333pt;}
.x9f_c01347{left:559.866667pt;}
.xa7_c01347{left:562.946667pt;}
.x16_c01347{left:565.253333pt;}
.xdf_c01347{left:567.546667pt;}
.xc3_c01347{left:570.626667pt;}
.xcb_c01347{left:572.160000pt;}
.x34_c01347{left:573.693333pt;}
.x83_c01347{left:575.226667pt;}
.xf4_c01347{left:578.306667pt;}
.xae_c01347{left:580.613333pt;}
.xce_c01347{left:585.986667pt;}
.x35_c01347{left:587.520000pt;}
.x9_c01347{left:589.826667pt;}
.x29_c01347{left:592.133333pt;}
.x91_c01347{left:594.426667pt;}
.x8_c01347{left:595.973333pt;}
.x17_c01347{left:597.506667pt;}
.xab_c01347{left:600.573333pt;}
.xb4_c01347{left:602.880000pt;}
.x18_c01347{left:604.413333pt;}
.x98_c01347{left:606.720000pt;}
.xe0_c01347{left:608.253333pt;}
.xeb_c01347{left:609.786667pt;}
.x8c_c01347{left:611.333333pt;}
.x36_c01347{left:613.626667pt;}
.x47_c01347{left:615.173333pt;}
.x2a_c01347{left:618.240000pt;}
.x19_c01347{left:619.773333pt;}
.xaf_c01347{left:621.306667pt;}
.x6b_c01347{left:623.613333pt;}
.x79_c01347{left:625.146667pt;}
.xad_c01347{left:626.693333pt;}
.x104_c01347{left:628.986667pt;}
.xe7_c01347{left:632.066667pt;}
.xf9_c01347{left:633.600000pt;}
.x8d_c01347{left:635.133333pt;}
.xcf_c01347{left:637.440000pt;}
.x84_c01347{left:638.973333pt;}
.x92_c01347{left:641.280000pt;}
.x10c_c01347{left:645.120000pt;}
.x1a_c01347{left:647.426667pt;}
.x6c_c01347{left:649.733333pt;}
.x7a_c01347{left:652.026667pt;}
.x85_c01347{left:655.106667pt;}
.x6d_c01347{left:658.173333pt;}
.x2b_c01347{left:661.253333pt;}
.xb0_c01347{left:663.546667pt;}
.xd0_c01347{left:666.626667pt;}
.x37_c01347{left:669.693333pt;}
.xc4_c01347{left:672.773333pt;}
.x5e_c01347{left:676.613333pt;}
.xe9_c01347{left:678.146667pt;}
.x10d_c01347{left:681.213333pt;}
.x53_c01347{left:683.520000pt;}
.x3f_c01347{left:686.586667pt;}
.x2c_c01347{left:691.200000pt;}
.x74_c01347{left:693.506667pt;}
.x1b_c01347{left:695.040000pt;}
.x38_c01347{left:697.346667pt;}
.x6e_c01347{left:699.653333pt;}
.xb5_c01347{left:701.186667pt;}
.x7b_c01347{left:703.493333pt;}
.xba_c01347{left:705.026667pt;}
.x48_c01347{left:706.560000pt;}
.xb1_c01347{left:708.866667pt;}
.xbb_c01347{left:711.933333pt;}
.xa8_c01347{left:714.240000pt;}
.xd4_c01347{left:718.080000pt;}
.x5f_c01347{left:720.386667pt;}
.xfc_c01347{left:721.920000pt;}
.x8e_c01347{left:723.453333pt;}
.xac_c01347{left:724.986667pt;}
.x1c_c01347{left:726.533333pt;}
.xd5_c01347{left:728.826667pt;}
.x6f_c01347{left:732.666667pt;}
.x86_c01347{left:734.213333pt;}
.x49_c01347{left:736.506667pt;}
.x2d_c01347{left:738.813333pt;}
.xb6_c01347{left:741.893333pt;}
.x60_c01347{left:744.186667pt;}
.xc5_c01347{left:746.493333pt;}
.x99_c01347{left:748.026667pt;}
.x39_c01347{left:752.640000pt;}
.xdb_c01347{left:756.480000pt;}
.x64_c01347{left:758.013333pt;}
.x40_c01347{left:759.546667pt;}
.xfa_c01347{left:761.093333pt;}
.x54_c01347{left:762.626667pt;}
.xc6_c01347{left:764.160000pt;}
.xfd_c01347{left:766.466667pt;}
.x7c_c01347{left:768.773333pt;}
.x61_c01347{left:771.840000pt;}
.x3a_c01347{left:778.746667pt;}
.x2e_c01347{left:780.293333pt;}
.x65_c01347{left:782.586667pt;}
.xf5_c01347{left:784.133333pt;}
.x41_c01347{left:785.666667pt;}
.x10f_c01347{left:791.040000pt;}
.xb7_c01347{left:794.106667pt;}
.xa9_c01347{left:797.186667pt;}
.x100_c01347{left:801.786667pt;}
.xb8_c01347{left:806.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_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_5a9923dff70483b7d1f92913.woff2')format("woff");}.ff1_c01348{font-family:ff1_c01348;line-height:1.109863;font-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_c01348{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m150_c01348{transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);}
.m13d_c01348{transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.078125,0.000000,0.000000,0.250000,0,0);}
.m74_c01348{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m162_c01348{transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);}
.md6_c01348{transform:matrix(0.083900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083900,0.000000,0.000000,0.250000,0,0);}
.m15f_c01348{transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.110325,0.000000,0.000000,0.250000,0,0);}
.m141_c01348{transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111725,0.000000,0.000000,0.250000,0,0);}
.m122_c01348{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.m144_c01348{transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.116725,0.000000,0.000000,0.250000,0,0);}
.m115_c01348{transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120350,0.000000,0.000000,0.250000,0,0);}
.m67_c01348{transform:matrix(0.122025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122025,0.000000,0.000000,0.250000,0,0);}
.maf_c01348{transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125125,0.000000,0.000000,0.250000,0,0);}
.me2_c01348{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);}
.m107_c01348{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.md1_c01348{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m15b_c01348{transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139925,0.000000,0.000000,0.250000,0,0);}
.m143_c01348{transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140100,0.000000,0.000000,0.250000,0,0);}
.m4e_c01348{transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143475,0.000000,0.000000,0.250000,0,0);}
.mbb_c01348{transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);}
.m1_c01348{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m54_c01348{transform:matrix(0.144150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144150,0.000000,0.000000,0.250000,0,0);}
.m78_c01348{transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146725,0.000000,0.000000,0.250000,0,0);}
.m53_c01348{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);}
.ma0_c01348{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m121_c01348{transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150650,0.000000,0.000000,0.250000,0,0);}
.m71_c01348{transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150675,0.000000,0.000000,0.250000,0,0);}
.m116_c01348{transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151700,0.000000,0.000000,0.250000,0,0);}
.me4_c01348{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);}
.m70_c01348{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.m11d_c01348{transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156300,0.000000,0.000000,0.250000,0,0);}
.mc9_c01348{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);}
.m5_c01348{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);}
.m125_c01348{transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160775,0.000000,0.000000,0.250000,0,0);}
.m30_c01348{transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162375,0.000000,0.000000,0.250000,0,0);}
.m4f_c01348{transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164225,0.000000,0.000000,0.250000,0,0);}
.m18_c01348{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.m117_c01348{transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165225,0.000000,0.000000,0.250000,0,0);}
.mef_c01348{transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165275,0.000000,0.000000,0.250000,0,0);}
.m10a_c01348{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);}
.m130_c01348{transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166550,0.000000,0.000000,0.250000,0,0);}
.m149_c01348{transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167550,0.000000,0.000000,0.250000,0,0);}
.mf2_c01348{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);}
.m142_c01348{transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);}
.m126_c01348{transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168450,0.000000,0.000000,0.250000,0,0);}
.m12c_c01348{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);}
.mfb_c01348{transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169875,0.000000,0.000000,0.250000,0,0);}
.med_c01348{transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);}
.mf1_c01348{transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173475,0.000000,0.000000,0.250000,0,0);}
.m124_c01348{transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175675,0.000000,0.000000,0.250000,0,0);}
.m154_c01348{transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176500,0.000000,0.000000,0.250000,0,0);}
.m145_c01348{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.m156_c01348{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);}
.mbc_c01348{transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179225,0.000000,0.000000,0.250000,0,0);}
.m138_c01348{transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179525,0.000000,0.000000,0.250000,0,0);}
.mb8_c01348{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m76_c01348{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.mff_c01348{transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181475,0.000000,0.000000,0.250000,0,0);}
.m9b_c01348{transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181800,0.000000,0.000000,0.250000,0,0);}
.m58_c01348{transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182000,0.000000,0.000000,0.250000,0,0);}
.m66_c01348{transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182225,0.000000,0.000000,0.250000,0,0);}
.m128_c01348{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.md8_c01348{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);}
.m12a_c01348{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);}
.m13f_c01348{transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);}
.mf8_c01348{transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184100,0.000000,0.000000,0.250000,0,0);}
.m7e_c01348{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.mcc_c01348{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);}
.m13a_c01348{transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184625,0.000000,0.000000,0.250000,0,0);}
.m123_c01348{transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184850,0.000000,0.000000,0.250000,0,0);}
.m152_c01348{transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185125,0.000000,0.000000,0.250000,0,0);}
.mf3_c01348{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m8d_c01348{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);}
.m147_c01348{transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187850,0.000000,0.000000,0.250000,0,0);}
.me7_c01348{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m21_c01348{transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191225,0.000000,0.000000,0.250000,0,0);}
.m14a_c01348{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);}
.ma9_c01348{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.md4_c01348{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.me5_c01348{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);}
.m4c_c01348{transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193950,0.000000,0.000000,0.250000,0,0);}
.m10d_c01348{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.m15c_c01348{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);}
.m105_c01348{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.m133_c01348{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);}
.m155_c01348{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);}
.mb3_c01348{transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196525,0.000000,0.000000,0.250000,0,0);}
.m46_c01348{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m10e_c01348{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);}
.m14b_c01348{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m136_c01348{transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198425,0.000000,0.000000,0.250000,0,0);}
.m99_c01348{transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199175,0.000000,0.000000,0.250000,0,0);}
.mdc_c01348{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.m6a_c01348{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.mc2_c01348{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.mda_c01348{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m114_c01348{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);}
.m15e_c01348{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.m10b_c01348{transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201825,0.000000,0.000000,0.250000,0,0);}
.mc1_c01348{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);}
.mca_c01348{transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202725,0.000000,0.000000,0.250000,0,0);}
.m132_c01348{transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203175,0.000000,0.000000,0.250000,0,0);}
.m160_c01348{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);}
.m119_c01348{transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203625,0.000000,0.000000,0.250000,0,0);}
.m36_c01348{transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204025,0.000000,0.000000,0.250000,0,0);}
.m11_c01348{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m11a_c01348{transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204975,0.000000,0.000000,0.250000,0,0);}
.mc3_c01348{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);}
.mf_c01348{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);}
.m131_c01348{transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);}
.md0_c01348{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.mf9_c01348{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);}
.m89_c01348{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.m146_c01348{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.mc6_c01348{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m6b_c01348{transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208525,0.000000,0.000000,0.250000,0,0);}
.m91_c01348{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);}
.m12f_c01348{transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209025,0.000000,0.000000,0.250000,0,0);}
.mcd_c01348{transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209075,0.000000,0.000000,0.250000,0,0);}
.m2a_c01348{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.m153_c01348{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.m14c_c01348{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);}
.m81_c01348{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);}
.m151_c01348{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);}
.m9c_c01348{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.ma4_c01348{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);}
.md9_c01348{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);}
.m112_c01348{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m19_c01348{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);}
.mcf_c01348{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m93_c01348{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.m60_c01348{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);}
.mc0_c01348{transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);}
.m111_c01348{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m8a_c01348{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);}
.m29_c01348{transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215050,0.000000,0.000000,0.250000,0,0);}
.m129_c01348{transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);}
.m10_c01348{transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215875,0.000000,0.000000,0.250000,0,0);}
.maa_c01348{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);}
.mab_c01348{transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);}
.mb1_c01348{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);}
.m11b_c01348{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.mf6_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);}
.ma1_c01348{transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217550,0.000000,0.000000,0.250000,0,0);}
.mf5_c01348{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);}
.m159_c01348{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m14d_c01348{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);}
.m14e_c01348{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);}
.m37_c01348{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m51_c01348{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.mb7_c01348{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);}
.m135_c01348{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m104_c01348{transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219250,0.000000,0.000000,0.250000,0,0);}
.m113_c01348{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m103_c01348{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);}
.ma2_c01348{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);}
.m86_c01348{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.mb0_c01348{transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220450,0.000000,0.000000,0.250000,0,0);}
.m49_c01348{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);}
.m82_c01348{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);}
.mdd_c01348{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m127_c01348{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.ma5_c01348{transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);}
.ma8_c01348{transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);}
.m134_c01348{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m88_c01348{transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224150,0.000000,0.000000,0.250000,0,0);}
.mee_c01348{transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);}
.m3b_c01348{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m96_c01348{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);}
.m100_c01348{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);}
.mea_c01348{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.m5f_c01348{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m2c_c01348{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);}
.md3_c01348{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);}
.me8_c01348{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);}
.m15a_c01348{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);}
.m75_c01348{transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226075,0.000000,0.000000,0.250000,0,0);}
.m106_c01348{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);}
.m5e_c01348{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.mb9_c01348{transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);}
.mae_c01348{transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227175,0.000000,0.000000,0.250000,0,0);}
.m7d_c01348{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);}
.m34_c01348{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);}
.m1e_c01348{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.mce_c01348{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.m3a_c01348{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.md2_c01348{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.mb2_c01348{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.me3_c01348{transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229025,0.000000,0.000000,0.250000,0,0);}
.m9e_c01348{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);}
.m11e_c01348{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);}
.m12_c01348{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);}
.m3c_c01348{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);}
.m97_c01348{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);}
.m50_c01348{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);}
.m137_c01348{transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232100,0.000000,0.000000,0.250000,0,0);}
.m47_c01348{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);}
.me1_c01348{transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232525,0.000000,0.000000,0.250000,0,0);}
.meb_c01348{transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);}
.m5b_c01348{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);}
.md7_c01348{transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);}
.m87_c01348{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);}
.mdf_c01348{transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233400,0.000000,0.000000,0.250000,0,0);}
.m85_c01348{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);}
.m5d_c01348{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);}
.m65_c01348{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m15d_c01348{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);}
.m10f_c01348{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);}
.m6f_c01348{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m32_c01348{transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235950,0.000000,0.000000,0.250000,0,0);}
.m161_c01348{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);}
.m17_c01348{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.mf4_c01348{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);}
.m12d_c01348{transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237150,0.000000,0.000000,0.250000,0,0);}
.m5a_c01348{transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237925,0.000000,0.000000,0.250000,0,0);}
.m7a_c01348{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);}
.m94_c01348{transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238800,0.000000,0.000000,0.250000,0,0);}
.mb4_c01348{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m108_c01348{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.m33_c01348{transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239625,0.000000,0.000000,0.250000,0,0);}
.m8c_c01348{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);}
.mf7_c01348{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);}
.m11f_c01348{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);}
.m118_c01348{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.mba_c01348{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);}
.mfd_c01348{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_c01348{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);}
.m5c_c01348{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);}
.mc8_c01348{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);}
.md5_c01348{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);}
.m12e_c01348{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);}
.m77_c01348{transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245900,0.000000,0.000000,0.250000,0,0);}
.m157_c01348{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);}
.m110_c01348{transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247150,0.000000,0.000000,0.250000,0,0);}
.mfa_c01348{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.mb5_c01348{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);}
.mde_c01348{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);}
.mdb_c01348{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);}
.m7c_c01348{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);}
.mc5_c01348{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m73_c01348{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);}
.m13_c01348{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m72_c01348{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);}
.m2d_c01348{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);}
.m1b_c01348{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);}
.m2e_c01348{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);}
.m20_c01348{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01348{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m8_c01348{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c01348{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);}
.m59_c01348{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01348{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);}
.m23_c01348{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);}
.me_c01348{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m61_c01348{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_c01348{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01348{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01348{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);}
.m2b_c01348{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01348{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);}
.m1a_c01348{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);}
.m14_c01348{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m35_c01348{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m28_c01348{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);}
.m24_c01348{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m27_c01348{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c01348{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);}
.m80_c01348{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01348{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01348{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9f_c01348{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m15_c01348{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.mc4_c01348{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m22_c01348{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c01348{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m44_c01348{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);}
.m9d_c01348{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m43_c01348{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m40_c01348{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m7_c01348{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m31_c01348{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);}
.m55_c01348{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);}
.m8f_c01348{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01348{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m0_c01348{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);}
.mac_c01348{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m57_c01348{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01348{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mec_c01348{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m42_c01348{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);}
.m109_c01348{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m140_c01348{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01348{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);}
.me9_c01348{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);}
.mbf_c01348{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mfe_c01348{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01348{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.ma6_c01348{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m92_c01348{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m62_c01348{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.md_c01348{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);}
.ma3_c01348{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);}
.m6c_c01348{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.me0_c01348{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);}
.m79_c01348{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m52_c01348{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);}
.m8b_c01348{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m39_c01348{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m25_c01348{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m95_c01348{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m38_c01348{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m9a_c01348{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m101_c01348{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m45_c01348{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);}
.m2f_c01348{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mc7_c01348{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mad_c01348{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m56_c01348{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.mbd_c01348{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.ma7_c01348{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01348{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m84_c01348{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m120_c01348{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.mc_c01348{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);}
.m139_c01348{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m48_c01348{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mbe_c01348{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m2_c01348{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);}
.m13c_c01348{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01348{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);}
.m102_c01348{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mcb_c01348{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m14f_c01348{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m83_c01348{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m16_c01348{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01348{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.m158_c01348{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m64_c01348{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m13b_c01348{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.m12b_c01348{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);}
.mb_c01348{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.mfc_c01348{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m41_c01348{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m68_c01348{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m13e_c01348{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);}
.me6_c01348{transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.830000,0.000000,0.000000,0.250000,0,0);}
.m90_c01348{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m10c_c01348{transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.875000,0.000000,0.000000,0.250000,0,0);}
.m163_c01348{transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.887500,0.000000,0.000000,0.250000,0,0);}
.m98_c01348{transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.905000,0.000000,0.000000,0.250000,0,0);}
.mf0_c01348{transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.960000,0.000000,0.000000,0.250000,0,0);}
.m148_c01348{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m69_c01348{transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.057500,0.000000,0.000000,0.250000,0,0);}
.m63_c01348{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01348{transform:matrix(2.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.470000,0.000000,0.000000,0.250000,0,0);}
.m11c_c01348{transform:matrix(2.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.527500,0.000000,0.000000,0.250000,0,0);}
.v2_c01348{vertical-align:-20.760000px;}
.v1_c01348{vertical-align:-6.900000px;}
.v0_c01348{vertical-align:0.000000px;}
.v3_c01348{vertical-align:3.480000px;}
.ls1_c01348{letter-spacing:0.000000px;}
.ls0_c01348{letter-spacing:19.267440px;}
.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;}
}
.ws1_c01348{word-spacing:-4.025280px;}
.ws2_c01348{word-spacing:0.000000px;}
.ws0_c01348{word-spacing:44.970240px;}
.fc0_c01348{color:transparent;}
.fs1_c01348{font-size:3.456000px;}
.fs9_c01348{font-size:6.000000px;}
.fsa_c01348{font-size:6.900000px;}
.fs3_c01348{font-size:10.380000px;}
.fs2_c01348{font-size:13.800000px;}
.fs0_c01348{font-size:17.280000px;}
.fs4_c01348{font-size:20.760000px;}
.fs18_c01348{font-size:24.180000px;}
.fs11_c01348{font-size:27.660000px;}
.fsb_c01348{font-size:31.080000px;}
.fs14_c01348{font-size:34.560000px;}
.fs13_c01348{font-size:38.040000px;}
.fs10_c01348{font-size:41.460000px;}
.fsd_c01348{font-size:44.940000px;}
.fsc_c01348{font-size:48.360000px;}
.fse_c01348{font-size:51.840000px;}
.fs12_c01348{font-size:55.320000px;}
.fsf_c01348{font-size:58.740000px;}
.fs7_c01348{font-size:62.220000px;}
.fs8_c01348{font-size:65.640000px;}
.fs6_c01348{font-size:69.120000px;}
.fs15_c01348{font-size:72.600000px;}
.fs5_c01348{font-size:76.020000px;}
.fs17_c01348{font-size:79.500000px;}
.fs16_c01348{font-size:82.920000px;}
.fs19_c01348{font-size:93.300000px;}
.y0_c01348{bottom:0.000000px;}
.y212_c01348{bottom:209.955000px;}
.y211_c01348{bottom:212.550000px;}
.y209_c01348{bottom:215.130000px;}
.y20d_c01348{bottom:216.000000px;}
.y20c_c01348{bottom:216.870000px;}
.y20a_c01348{bottom:217.725000px;}
.y210_c01348{bottom:218.595000px;}
.y20f_c01348{bottom:219.450000px;}
.y20e_c01348{bottom:220.320000px;}
.y20b_c01348{bottom:228.090000px;}
.y202_c01348{bottom:230.685000px;}
.y205_c01348{bottom:231.555000px;}
.y206_c01348{bottom:232.410000px;}
.y203_c01348{bottom:233.280000px;}
.y208_c01348{bottom:234.150000px;}
.y207_c01348{bottom:236.730000px;}
.y204_c01348{bottom:240.195000px;}
.y201_c01348{bottom:245.370000px;}
.y1fa_c01348{bottom:247.110000px;}
.y1fb_c01348{bottom:247.965000px;}
.y1fc_c01348{bottom:250.560000px;}
.y1f9_c01348{bottom:251.430000px;}
.y1f8_c01348{bottom:252.285000px;}
.y1fd_c01348{bottom:253.155000px;}
.y200_c01348{bottom:254.010000px;}
.y1ff_c01348{bottom:254.880000px;}
.y1fe_c01348{bottom:256.605000px;}
.y1ef_c01348{bottom:264.390000px;}
.y1f2_c01348{bottom:268.710000px;}
.y1f5_c01348{bottom:269.565000px;}
.y1f3_c01348{bottom:270.435000px;}
.y1f7_c01348{bottom:271.290000px;}
.y1f4_c01348{bottom:272.160000px;}
.y1f1_c01348{bottom:274.755000px;}
.y1f0_c01348{bottom:278.205000px;}
.y1f6_c01348{bottom:279.075000px;}
.y1e9_c01348{bottom:282.525000px;}
.y1eb_c01348{bottom:285.120000px;}
.y1ea_c01348{bottom:286.845000px;}
.y1e8_c01348{bottom:287.715000px;}
.y1ec_c01348{bottom:289.440000px;}
.y1ee_c01348{bottom:290.310000px;}
.y1ed_c01348{bottom:291.165000px;}
.y1e4_c01348{bottom:301.530000px;}
.y1e2_c01348{bottom:302.400000px;}
.y1df_c01348{bottom:303.270000px;}
.y1e5_c01348{bottom:304.125000px;}
.y1e7_c01348{bottom:304.995000px;}
.y1e0_c01348{bottom:305.850000px;}
.y1e1_c01348{bottom:306.720000px;}
.y1e6_c01348{bottom:307.590000px;}
.y1e3_c01348{bottom:308.445000px;}
.y1da_c01348{bottom:317.955000px;}
.y1dd_c01348{bottom:318.810000px;}
.y1db_c01348{bottom:323.130000px;}
.y1dc_c01348{bottom:324.000000px;}
.y1de_c01348{bottom:326.595000px;}
.y1d9_c01348{bottom:330.045000px;}
.y1d2_c01348{bottom:336.960000px;}
.y1d3_c01348{bottom:338.685000px;}
.y1d0_c01348{bottom:340.410000px;}
.y1d1_c01348{bottom:341.280000px;}
.y1d4_c01348{bottom:342.150000px;}
.y1d8_c01348{bottom:343.005000px;}
.y1d5_c01348{bottom:343.875000px;}
.y1cf_c01348{bottom:344.730000px;}
.y1d6_c01348{bottom:348.195000px;}
.y1d7_c01348{bottom:351.645000px;}
.y1c8_c01348{bottom:353.370000px;}
.y1ca_c01348{bottom:356.835000px;}
.y1cd_c01348{bottom:357.690000px;}
.y1cb_c01348{bottom:358.560000px;}
.y1c9_c01348{bottom:359.430000px;}
.y1cc_c01348{bottom:360.285000px;}
.y1ce_c01348{bottom:361.155000px;}
.y1be_c01348{bottom:371.520000px;}
.y1c2_c01348{bottom:373.245000px;}
.y1c0_c01348{bottom:374.115000px;}
.y1c6_c01348{bottom:374.970000px;}
.y1c7_c01348{bottom:375.840000px;}
.y1bf_c01348{bottom:376.710000px;}
.y1c1_c01348{bottom:377.565000px;}
.y1c4_c01348{bottom:378.435000px;}
.y1c5_c01348{bottom:379.290000px;}
.y1c3_c01348{bottom:381.030000px;}
.y1ba_c01348{bottom:392.250000px;}
.y1b7_c01348{bottom:393.120000px;}
.y1b8_c01348{bottom:393.990000px;}
.y1b9_c01348{bottom:394.845000px;}
.y1bb_c01348{bottom:395.715000px;}
.y1bd_c01348{bottom:396.570000px;}
.y1bc_c01348{bottom:397.440000px;}
.y1af_c01348{bottom:406.080000px;}
.y1b0_c01348{bottom:407.805000px;}
.y1b4_c01348{bottom:408.675000px;}
.y1b6_c01348{bottom:409.530000px;}
.y1b1_c01348{bottom:411.270000px;}
.y1b3_c01348{bottom:412.995000px;}
.y1b2_c01348{bottom:413.850000px;}
.y1b5_c01348{bottom:419.040000px;}
.y1ad_c01348{bottom:426.810000px;}
.y1ac_c01348{bottom:427.680000px;}
.y1a7_c01348{bottom:428.550000px;}
.y1a8_c01348{bottom:429.405000px;}
.y1ae_c01348{bottom:430.275000px;}
.y1aa_c01348{bottom:431.130000px;}
.y1a9_c01348{bottom:435.450000px;}
.y1a6_c01348{bottom:437.190000px;}
.y1ab_c01348{bottom:439.770000px;}
.y19f_c01348{bottom:441.510000px;}
.y1a1_c01348{bottom:442.365000px;}
.y1a0_c01348{bottom:443.235000px;}
.y1a2_c01348{bottom:447.555000px;}
.y1a3_c01348{bottom:448.410000px;}
.y1a5_c01348{bottom:449.280000px;}
.y1a4_c01348{bottom:450.150000px;}
.y19e_c01348{bottom:458.790000px;}
.y196_c01348{bottom:460.515000px;}
.y19a_c01348{bottom:462.240000px;}
.y19d_c01348{bottom:463.110000px;}
.y198_c01348{bottom:463.965000px;}
.y197_c01348{bottom:464.835000px;}
.y19c_c01348{bottom:466.560000px;}
.y19b_c01348{bottom:467.430000px;}
.y199_c01348{bottom:474.330000px;}
.y190_c01348{bottom:477.795000px;}
.y195_c01348{bottom:480.390000px;}
.y193_c01348{bottom:481.245000px;}
.y191_c01348{bottom:482.115000px;}
.y192_c01348{bottom:482.970000px;}
.y194_c01348{bottom:485.565000px;}
.y18a_c01348{bottom:498.525000px;}
.y18b_c01348{bottom:500.250000px;}
.y18c_c01348{bottom:502.845000px;}
.y18d_c01348{bottom:504.570000px;}
.y18e_c01348{bottom:508.035000px;}
.y18f_c01348{bottom:509.760000px;}
.y183_c01348{bottom:513.210000px;}
.y181_c01348{bottom:514.080000px;}
.y184_c01348{bottom:514.950000px;}
.y187_c01348{bottom:515.805000px;}
.y180_c01348{bottom:516.675000px;}
.y182_c01348{bottom:517.530000px;}
.y189_c01348{bottom:518.400000px;}
.y188_c01348{bottom:519.270000px;}
.y186_c01348{bottom:520.125000px;}
.y185_c01348{bottom:525.315000px;}
.y17f_c01348{bottom:527.040000px;}
.y177_c01348{bottom:531.360000px;}
.y179_c01348{bottom:532.230000px;}
.y176_c01348{bottom:533.085000px;}
.y175_c01348{bottom:533.955000px;}
.y178_c01348{bottom:534.810000px;}
.y17c_c01348{bottom:535.680000px;}
.y17b_c01348{bottom:536.550000px;}
.y17a_c01348{bottom:537.405000px;}
.y17d_c01348{bottom:538.275000px;}
.y17e_c01348{bottom:539.130000px;}
.y16e_c01348{bottom:547.770000px;}
.y16f_c01348{bottom:548.640000px;}
.y170_c01348{bottom:550.365000px;}
.y16d_c01348{bottom:552.090000px;}
.y171_c01348{bottom:552.960000px;}
.y174_c01348{bottom:553.830000px;}
.y172_c01348{bottom:554.685000px;}
.y173_c01348{bottom:555.555000px;}
.y166_c01348{bottom:566.790000px;}
.y165_c01348{bottom:567.645000px;}
.y169_c01348{bottom:569.370000px;}
.y167_c01348{bottom:570.240000px;}
.y16b_c01348{bottom:571.110000px;}
.y16a_c01348{bottom:571.965000px;}
.y16c_c01348{bottom:572.835000px;}
.y168_c01348{bottom:578.010000px;}
.y161_c01348{bottom:585.795000px;}
.y15e_c01348{bottom:586.650000px;}
.y15f_c01348{bottom:587.520000px;}
.y160_c01348{bottom:588.390000px;}
.y164_c01348{bottom:590.115000px;}
.y163_c01348{bottom:595.290000px;}
.y156_c01348{bottom:597.885000px;}
.y162_c01348{bottom:599.610000px;}
.y157_c01348{bottom:600.480000px;}
.y159_c01348{bottom:603.075000px;}
.y15b_c01348{bottom:603.930000px;}
.y15d_c01348{bottom:604.800000px;}
.y15c_c01348{bottom:607.395000px;}
.y15a_c01348{bottom:608.250000px;}
.y158_c01348{bottom:616.890000px;}
.y151_c01348{bottom:620.355000px;}
.y152_c01348{bottom:621.210000px;}
.y153_c01348{bottom:622.080000px;}
.y150_c01348{bottom:622.950000px;}
.y154_c01348{bottom:627.270000px;}
.y155_c01348{bottom:629.850000px;}
.y149_c01348{bottom:635.040000px;}
.y146_c01348{bottom:635.910000px;}
.y14a_c01348{bottom:636.765000px;}
.y14e_c01348{bottom:637.635000px;}
.y14f_c01348{bottom:638.490000px;}
.y14b_c01348{bottom:639.360000px;}
.y147_c01348{bottom:640.230000px;}
.y148_c01348{bottom:641.085000px;}
.y14c_c01348{bottom:641.955000px;}
.y14d_c01348{bottom:642.810000px;}
.y13e_c01348{bottom:652.320000px;}
.y13f_c01348{bottom:653.190000px;}
.y13c_c01348{bottom:654.045000px;}
.y141_c01348{bottom:655.770000px;}
.y145_c01348{bottom:656.640000px;}
.y13d_c01348{bottom:657.510000px;}
.y140_c01348{bottom:658.365000px;}
.y143_c01348{bottom:659.235000px;}
.y144_c01348{bottom:660.090000px;}
.y142_c01348{bottom:667.875000px;}
.y137_c01348{bottom:670.470000px;}
.y139_c01348{bottom:672.195000px;}
.y136_c01348{bottom:673.920000px;}
.y138_c01348{bottom:674.790000px;}
.y13b_c01348{bottom:675.645000px;}
.y13a_c01348{bottom:676.515000px;}
.y214_c01348{bottom:682.560000px;}
.y12e_c01348{bottom:686.880000px;}
.y53_c01348{bottom:687.750000px;}
.y54_c01348{bottom:688.605000px;}
.y134_c01348{bottom:689.475000px;}
.y135_c01348{bottom:691.200000px;}
.y12f_c01348{bottom:692.070000px;}
.y133_c01348{bottom:692.925000px;}
.y131_c01348{bottom:693.795000px;}
.y132_c01348{bottom:694.650000px;}
.y130_c01348{bottom:701.565000px;}
.y127_c01348{bottom:704.160000px;}
.y12a_c01348{bottom:705.885000px;}
.y129_c01348{bottom:708.480000px;}
.y128_c01348{bottom:709.350000px;}
.y12b_c01348{bottom:710.205000px;}
.y12c_c01348{bottom:711.075000px;}
.y12d_c01348{bottom:711.930000px;}
.y121_c01348{bottom:722.310000px;}
.y124_c01348{bottom:724.890000px;}
.y126_c01348{bottom:725.760000px;}
.y120_c01348{bottom:726.630000px;}
.y122_c01348{bottom:727.485000px;}
.y125_c01348{bottom:729.210000px;}
.y123_c01348{bottom:730.080000px;}
.y11a_c01348{bottom:739.590000px;}
.y118_c01348{bottom:740.445000px;}
.y11c_c01348{bottom:741.315000px;}
.y11f_c01348{bottom:742.170000px;}
.y119_c01348{bottom:743.910000px;}
.y11b_c01348{bottom:744.765000px;}
.y11e_c01348{bottom:746.490000px;}
.y11d_c01348{bottom:747.360000px;}
.y112_c01348{bottom:756.870000px;}
.y113_c01348{bottom:757.725000px;}
.y111_c01348{bottom:759.450000px;}
.y114_c01348{bottom:762.045000px;}
.y116_c01348{bottom:764.640000px;}
.y115_c01348{bottom:765.510000px;}
.y117_c01348{bottom:768.090000px;}
.y109_c01348{bottom:774.150000px;}
.y10a_c01348{bottom:775.005000px;}
.y10b_c01348{bottom:775.875000px;}
.y10d_c01348{bottom:777.600000px;}
.y108_c01348{bottom:778.470000px;}
.y110_c01348{bottom:779.325000px;}
.y10c_c01348{bottom:780.195000px;}
.y10f_c01348{bottom:781.050000px;}
.y10e_c01348{bottom:781.920000px;}
.y100_c01348{bottom:794.010000px;}
.y104_c01348{bottom:794.880000px;}
.y105_c01348{bottom:795.750000px;}
.y102_c01348{bottom:796.605000px;}
.y101_c01348{bottom:797.475000px;}
.y106_c01348{bottom:799.200000px;}
.y103_c01348{bottom:800.070000px;}
.y107_c01348{bottom:806.970000px;}
.yf7_c01348{bottom:809.565000px;}
.yfa_c01348{bottom:810.435000px;}
.yfb_c01348{bottom:811.290000px;}
.yfd_c01348{bottom:813.030000px;}
.yf8_c01348{bottom:814.755000px;}
.yf9_c01348{bottom:815.610000px;}
.yfc_c01348{bottom:816.480000px;}
.yfe_c01348{bottom:817.350000px;}
.yff_c01348{bottom:819.075000px;}
.yf6_c01348{bottom:821.670000px;}
.yed_c01348{bottom:827.715000px;}
.yef_c01348{bottom:829.440000px;}
.yf2_c01348{bottom:831.165000px;}
.yee_c01348{bottom:832.035000px;}
.yf0_c01348{bottom:833.760000px;}
.yf4_c01348{bottom:834.630000px;}
.yf5_c01348{bottom:837.210000px;}
.yf3_c01348{bottom:842.400000px;}
.yf1_c01348{bottom:844.125000px;}
.ye8_c01348{bottom:845.850000px;}
.ye6_c01348{bottom:846.720000px;}
.yeb_c01348{bottom:847.590000px;}
.ye5_c01348{bottom:848.445000px;}
.yea_c01348{bottom:850.170000px;}
.yec_c01348{bottom:851.040000px;}
.ye9_c01348{bottom:851.910000px;}
.ye7_c01348{bottom:857.085000px;}
.ydf_c01348{bottom:863.130000px;}
.ye0_c01348{bottom:864.000000px;}
.yde_c01348{bottom:864.870000px;}
.ye1_c01348{bottom:865.725000px;}
.ydd_c01348{bottom:867.450000px;}
.ye2_c01348{bottom:868.320000px;}
.ye3_c01348{bottom:869.190000px;}
.ye4_c01348{bottom:870.045000px;}
.ydc_c01348{bottom:878.685000px;}
.yd5_c01348{bottom:879.555000px;}
.yd4_c01348{bottom:880.410000px;}
.yd7_c01348{bottom:883.005000px;}
.yda_c01348{bottom:883.875000px;}
.yd6_c01348{bottom:884.730000px;}
.yd8_c01348{bottom:885.600000px;}
.ydb_c01348{bottom:886.470000px;}
.yd9_c01348{bottom:887.325000px;}
.yce_c01348{bottom:896.835000px;}
.ycc_c01348{bottom:897.690000px;}
.yd3_c01348{bottom:899.430000px;}
.ycd_c01348{bottom:900.285000px;}
.ycb_c01348{bottom:901.155000px;}
.ycf_c01348{bottom:902.010000px;}
.yd0_c01348{bottom:902.880000px;}
.yd2_c01348{bottom:903.750000px;}
.yd1_c01348{bottom:904.605000px;}
.yca_c01348{bottom:905.475000px;}
.yc2_c01348{bottom:914.115000px;}
.yc4_c01348{bottom:917.565000px;}
.yc1_c01348{bottom:918.435000px;}
.yc3_c01348{bottom:919.290000px;}
.yc5_c01348{bottom:920.160000px;}
.yc6_c01348{bottom:921.030000px;}
.yc8_c01348{bottom:921.885000px;}
.yc7_c01348{bottom:922.755000px;}
.yc9_c01348{bottom:930.525000px;}
.ybb_c01348{bottom:932.250000px;}
.ybe_c01348{bottom:934.845000px;}
.yc0_c01348{bottom:935.715000px;}
.ybf_c01348{bottom:938.310000px;}
.ybd_c01348{bottom:940.890000px;}
.ybc_c01348{bottom:944.355000px;}
.yb2_c01348{bottom:947.805000px;}
.yb3_c01348{bottom:948.675000px;}
.yb6_c01348{bottom:949.530000px;}
.yb9_c01348{bottom:952.125000px;}
.yb7_c01348{bottom:952.995000px;}
.yb4_c01348{bottom:953.850000px;}
.yb5_c01348{bottom:954.720000px;}
.yb8_c01348{bottom:955.590000px;}
.yb1_c01348{bottom:956.445000px;}
.yba_c01348{bottom:957.315000px;}
.yb0_c01348{bottom:960.765000px;}
.yaa_c01348{bottom:968.550000px;}
.yad_c01348{bottom:970.275000px;}
.yaf_c01348{bottom:971.130000px;}
.yae_c01348{bottom:972.000000px;}
.yab_c01348{bottom:973.725000px;}
.yac_c01348{bottom:974.595000px;}
.ya9_c01348{bottom:981.510000px;}
.ya3_c01348{bottom:984.090000px;}
.ya5_c01348{bottom:984.960000px;}
.ya6_c01348{bottom:986.685000px;}
.ya4_c01348{bottom:989.280000px;}
.ya7_c01348{bottom:990.150000px;}
.ya8_c01348{bottom:991.875000px;}
.y213_c01348{bottom:995.325000px;}
.y9c_c01348{bottom:1001.370000px;}
.y9e_c01348{bottom:1002.240000px;}
.y9d_c01348{bottom:1004.835000px;}
.ya2_c01348{bottom:1007.430000px;}
.y9f_c01348{bottom:1008.285000px;}
.ya1_c01348{bottom:1010.010000px;}
.ya0_c01348{bottom:1011.750000px;}
.y96_c01348{bottom:1018.650000px;}
.y98_c01348{bottom:1022.115000px;}
.y95_c01348{bottom:1023.840000px;}
.y97_c01348{bottom:1024.710000px;}
.y9a_c01348{bottom:1026.435000px;}
.y99_c01348{bottom:1027.290000px;}
.y9b_c01348{bottom:1028.160000px;}
.y8e_c01348{bottom:1037.670000px;}
.y8f_c01348{bottom:1039.395000px;}
.y8d_c01348{bottom:1040.250000px;}
.y8c_c01348{bottom:1041.120000px;}
.y90_c01348{bottom:1041.990000px;}
.y91_c01348{bottom:1042.845000px;}
.y92_c01348{bottom:1043.715000px;}
.y94_c01348{bottom:1044.570000px;}
.y93_c01348{bottom:1045.440000px;}
.y87_c01348{bottom:1055.805000px;}
.y8b_c01348{bottom:1056.675000px;}
.y8a_c01348{bottom:1057.530000px;}
.y88_c01348{bottom:1059.270000px;}
.y89_c01348{bottom:1060.125000px;}
.y52_c01348{bottom:1060.995000px;}
.y51_c01348{bottom:1061.850000px;}
.y50_c01348{bottom:1076.550000px;}
.y85_c01348{bottom:1079.130000px;}
.y86_c01348{bottom:1080.870000px;}
.y4e_c01348{bottom:1092.090000px;}
.y84_c01348{bottom:1093.830000px;}
.y4f_c01348{bottom:1095.555000px;}
.y4c_c01348{bottom:1096.410000px;}
.y4d_c01348{bottom:1097.280000px;}
.y82_c01348{bottom:1107.645000px;}
.y83_c01348{bottom:1108.515000px;}
.y48_c01348{bottom:1110.240000px;}
.y45_c01348{bottom:1111.965000px;}
.y49_c01348{bottom:1113.690000px;}
.y47_c01348{bottom:1114.560000px;}
.y46_c01348{bottom:1115.430000px;}
.y4b_c01348{bottom:1116.285000px;}
.y4a_c01348{bottom:1117.155000px;}
.y7e_c01348{bottom:1128.390000px;}
.y80_c01348{bottom:1129.245000px;}
.y7f_c01348{bottom:1130.115000px;}
.y44_c01348{bottom:1130.970000px;}
.y81_c01348{bottom:1131.840000px;}
.y40_c01348{bottom:1132.710000px;}
.y43_c01348{bottom:1134.435000px;}
.y42_c01348{bottom:1143.930000px;}
.y41_c01348{bottom:1144.800000px;}
.y3b_c01348{bottom:1145.670000px;}
.y3e_c01348{bottom:1148.250000px;}
.y3c_c01348{bottom:1149.990000px;}
.y3d_c01348{bottom:1150.845000px;}
.y3f_c01348{bottom:1151.715000px;}
.y7d_c01348{bottom:1156.035000px;}
.y3a_c01348{bottom:1156.890000px;}
.y7a_c01348{bottom:1161.210000px;}
.y35_c01348{bottom:1163.805000px;}
.y7b_c01348{bottom:1164.675000px;}
.y36_c01348{bottom:1165.530000px;}
.y39_c01348{bottom:1167.270000px;}
.y34_c01348{bottom:1168.125000px;}
.y37_c01348{bottom:1168.995000px;}
.y38_c01348{bottom:1169.850000px;}
.y7c_c01348{bottom:1179.360000px;}
.y77_c01348{bottom:1180.230000px;}
.y78_c01348{bottom:1181.085000px;}
.y79_c01348{bottom:1182.810000px;}
.y33_c01348{bottom:1183.680000px;}
.y31_c01348{bottom:1185.405000px;}
.y32_c01348{bottom:1186.275000px;}
.y75_c01348{bottom:1197.510000px;}
.y2f_c01348{bottom:1198.365000px;}
.y2d_c01348{bottom:1199.235000px;}
.y30_c01348{bottom:1200.090000px;}
.y2e_c01348{bottom:1202.685000px;}
.y76_c01348{bottom:1204.410000px;}
.y73_c01348{bottom:1213.050000px;}
.y2a_c01348{bottom:1214.790000px;}
.y71_c01348{bottom:1216.515000px;}
.y72_c01348{bottom:1217.370000px;}
.y2c_c01348{bottom:1218.240000px;}
.y29_c01348{bottom:1219.110000px;}
.y74_c01348{bottom:1219.965000px;}
.y2b_c01348{bottom:1221.690000px;}
.y70_c01348{bottom:1224.285000px;}
.y6e_c01348{bottom:1230.330000px;}
.y6d_c01348{bottom:1231.200000px;}
.y25_c01348{bottom:1232.925000px;}
.y6c_c01348{bottom:1233.795000px;}
.y28_c01348{bottom:1234.650000px;}
.y27_c01348{bottom:1235.520000px;}
.y6f_c01348{bottom:1236.390000px;}
.y26_c01348{bottom:1237.245000px;}
.y24_c01348{bottom:1238.115000px;}
.y6b_c01348{bottom:1247.610000px;}
.y69_c01348{bottom:1249.350000px;}
.y67_c01348{bottom:1251.930000px;}
.y68_c01348{bottom:1252.800000px;}
.y6a_c01348{bottom:1253.670000px;}
.y23_c01348{bottom:1254.525000px;}
.y21_c01348{bottom:1255.395000px;}
.y22_c01348{bottom:1265.760000px;}
.y66_c01348{bottom:1268.355000px;}
.y20_c01348{bottom:1269.210000px;}
.y65_c01348{bottom:1270.080000px;}
.y1e_c01348{bottom:1270.950000px;}
.y1d_c01348{bottom:1272.675000px;}
.y1f_c01348{bottom:1273.530000px;}
.y19_c01348{bottom:1286.490000px;}
.y64_c01348{bottom:1289.085000px;}
.y1a_c01348{bottom:1290.810000px;}
.y1b_c01348{bottom:1291.680000px;}
.y1c_c01348{bottom:1292.550000px;}
.y60_c01348{bottom:1302.915000px;}
.y16_c01348{bottom:1303.770000px;}
.y15_c01348{bottom:1304.640000px;}
.y62_c01348{bottom:1305.510000px;}
.y61_c01348{bottom:1306.365000px;}
.y63_c01348{bottom:1307.235000px;}
.y18_c01348{bottom:1308.090000px;}
.y17_c01348{bottom:1308.960000px;}
.y5d_c01348{bottom:1315.005000px;}
.y5e_c01348{bottom:1316.730000px;}
.y5c_c01348{bottom:1318.470000px;}
.y13_c01348{bottom:1323.645000px;}
.y5f_c01348{bottom:1324.515000px;}
.y14_c01348{bottom:1326.240000px;}
.y5a_c01348{bottom:1337.475000px;}
.y58_c01348{bottom:1338.330000px;}
.yf_c01348{bottom:1339.200000px;}
.y10_c01348{bottom:1340.070000px;}
.y5b_c01348{bottom:1340.925000px;}
.y59_c01348{bottom:1341.795000px;}
.yd_c01348{bottom:1342.650000px;}
.ye_c01348{bottom:1343.520000px;}
.y11_c01348{bottom:1344.390000px;}
.y55_c01348{bottom:1349.565000px;}
.y56_c01348{bottom:1350.435000px;}
.y12_c01348{bottom:1353.030000px;}
.y1_c01348{bottom:1357.350000px;}
.yc_c01348{bottom:1359.075000px;}
.y57_c01348{bottom:1359.930000px;}
.y2_c01348{bottom:1360.800000px;}
.yb_c01348{bottom:1365.120000px;}
.y6_c01348{bottom:1383.270000px;}
.y7_c01348{bottom:1386.720000px;}
.y8_c01348{bottom:1387.590000px;}
.y9_c01348{bottom:1388.445000px;}
.ya_c01348{bottom:1395.360000px;}
.y5_c01348{bottom:1398.810000px;}
.y3_c01348{bottom:1406.595000px;}
.y4_c01348{bottom:1408.320000px;}
.h3_c01348{height:3.110063px;}
.hb_c01348{height:5.399414px;}
.hc_c01348{height:6.209326px;}
.h5_c01348{height:9.340986px;}
.h4_c01348{height:12.418652px;}
.h2_c01348{height:15.550313px;}
.h6_c01348{height:18.681973px;}
.h1b_c01348{height:21.759639px;}
.h13_c01348{height:24.891299px;}
.hd_c01348{height:27.968965px;}
.h17_c01348{height:31.100625px;}
.h16_c01348{height:34.232285px;}
.h15_c01348{height:36.619277px;}
.h12_c01348{height:37.309951px;}
.hf_c01348{height:40.441611px;}
.he_c01348{height:43.519277px;}
.h10_c01348{height:46.650937px;}
.h1d_c01348{height:46.999277px;}
.h14_c01348{height:49.782598px;}
.h11_c01348{height:52.860264px;}
.h9_c01348{height:55.991924px;}
.ha_c01348{height:59.069590px;}
.h8_c01348{height:62.201250px;}
.h18_c01348{height:65.332910px;}
.h7_c01348{height:68.410576px;}
.h1a_c01348{height:71.542236px;}
.h19_c01348{height:74.619902px;}
.h1c_c01348{height:83.960889px;}
.h1_c01348{height:1513.500000px;}
.h0_c01348{height:1513.725000px;}
.w0_c01348{width:1083.450000px;}
.w1_c01348{width:1083.750000px;}
.x0_c01348{left:0.000000px;}
.x1_c01348{left:114.915000px;}
.x2_c01348{left:131.325000px;}
.xa6_c01348{left:184.035000px;}
.x82_c01348{left:190.080000px;}
.xb3_c01348{left:192.675000px;}
.xa7_c01348{left:196.995000px;}
.x106_c01348{left:199.590000px;}
.x53_c01348{left:201.315000px;}
.xb8_c01348{left:203.040000px;}
.x60_c01348{left:207.360000px;}
.x54_c01348{left:209.085000px;}
.xea_c01348{left:210.810000px;}
.x94_c01348{left:212.550000px;}
.x74_c01348{left:219.450000px;}
.xd4_c01348{left:222.915000px;}
.x90_c01348{left:226.365000px;}
.x68_c01348{left:228.960000px;}
.x101_c01348{left:232.410000px;}
.xf6_c01348{left:234.150000px;}
.x5a_c01348{left:235.875000px;}
.x7e_c01348{left:237.600000px;}
.x62_c01348{left:242.790000px;}
.x83_c01348{left:244.515000px;}
.x69_c01348{left:247.110000px;}
.xa8_c01348{left:249.690000px;}
.x6d_c01348{left:254.010000px;}
.x7f_c01348{left:256.605000px;}
.xb9_c01348{left:260.925000px;}
.x55_c01348{left:263.520000px;}
.x5_c01348{left:266.115000px;}
.x118_c01348{left:267.840000px;}
.x80_c01348{left:270.435000px;}
.x8d_c01348{left:272.160000px;}
.xec_c01348{left:273.885000px;}
.x3_c01348{left:275.610408px;}
.x102_c01348{left:277.350000px;}
.xcd_c01348{left:279.075000px;}
.x10c_c01348{left:280.800000px;}
.xe0_c01348{left:282.525000px;}
.xf8_c01348{left:285.120000px;}
.x63_c01348{left:286.845000px;}
.x6e_c01348{left:288.570000px;}
.xd5_c01348{left:291.165000px;}
.x84_c01348{left:292.890000px;}
.xfe_c01348{left:294.630000px;}
.x4_c01348{left:297.210000px;}
.x86_c01348{left:298.950000px;}
.xed_c01348{left:300.675000px;}
.xdd_c01348{left:302.400000px;}
.x97_c01348{left:305.850000px;}
.x110_c01348{left:307.590000px;}
.xa9_c01348{left:309.315000px;}
.xda_c01348{left:311.040000px;}
.x56_c01348{left:312.765000px;}
.x75_c01348{left:315.360000px;}
.x7c_c01348{left:317.085000px;}
.xbe_c01348{left:318.810000px;}
.xe3_c01348{left:320.550000px;}
.xf9_c01348{left:322.275000px;}
.x87_c01348{left:325.725000px;}
.xb5_c01348{left:327.450000px;}
.x79_c01348{left:330.045000px;}
.x9e_c01348{left:333.510000px;}
.x6f_c01348{left:336.090000px;}
.x64_c01348{left:338.685000px;}
.x8a_c01348{left:341.280000px;}
.x105_c01348{left:343.005000px;}
.x10e_c01348{left:344.730000px;}
.xdb_c01348{left:346.470000px;}
.xc1_c01348{left:348.195000px;}
.x5b_c01348{left:349.920000px;}
.xe5_c01348{left:352.515000px;}
.x85_c01348{left:355.110000px;}
.x91_c01348{left:356.835000px;}
.x65_c01348{left:362.880000px;}
.xc2_c01348{left:364.605000px;}
.xc9_c01348{left:367.200000px;}
.x70_c01348{left:368.925000px;}
.x7d_c01348{left:370.650000px;}
.x88_c01348{left:372.390000px;}
.xff_c01348{left:374.970000px;}
.xeb_c01348{left:377.565000px;}
.x89_c01348{left:379.290000px;}
.x5c_c01348{left:381.885000px;}
.x76_c01348{left:384.480000px;}
.x92_c01348{left:386.205000px;}
.x8e_c01348{left:388.800000px;}
.xaa_c01348{left:391.395000px;}
.x10b_c01348{left:393.120000px;}
.x66_c01348{left:394.845000px;}
.x10f_c01348{left:396.570000px;}
.x9f_c01348{left:398.310000px;}
.xee_c01348{left:400.035000px;}
.x57_c01348{left:403.485000px;}
.xa3_c01348{left:406.080000px;}
.x71_c01348{left:407.805000px;}
.xe1_c01348{left:409.530000px;}
.x6a_c01348{left:411.270000px;}
.x61_c01348{left:415.590000px;}
.xe6_c01348{left:419.040000px;}
.x98_c01348{left:421.635000px;}
.x77_c01348{left:423.360000px;}
.x93_c01348{left:425.955000px;}
.x116_c01348{left:428.550000px;}
.xca_c01348{left:432.000000px;}
.x7a_c01348{left:434.595000px;}
.x111_c01348{left:436.320000px;}
.x58_c01348{left:438.045000px;}
.x8b_c01348{left:440.640000px;}
.x7b_c01348{left:443.235000px;}
.x5d_c01348{left:444.960000px;}
.xc7_c01348{left:446.685000px;}
.x72_c01348{left:449.280000px;}
.x104_c01348{left:451.005000px;}
.x6_c01348{left:452.730000px;}
.xf2_c01348{left:455.325000px;}
.xab_c01348{left:457.050000px;}
.x10d_c01348{left:459.645000px;}
.x81_c01348{left:461.370000px;}
.x67_c01348{left:463.110000px;}
.x73_c01348{left:465.690000px;}
.x78_c01348{left:468.285000px;}
.x8c_c01348{left:470.880000px;}
.x95_c01348{left:473.475000px;}
.x7_c01348{left:476.925000px;}
.x59_c01348{left:478.650000px;}
.x5e_c01348{left:481.245000px;}
.xb4_c01348{left:483.840000px;}
.x8f_c01348{left:485.565000px;}
.x6b_c01348{left:487.290000px;}
.xa0_c01348{left:489.030000px;}
.xac_c01348{left:491.610000px;}
.x6c_c01348{left:493.350000px;}
.x99_c01348{left:496.800000px;}
.xb6_c01348{left:498.525000px;}
.x5f_c01348{left:501.120000px;}
.xc3_c01348{left:502.845000px;}
.x107_c01348{left:505.440000px;}
.x8_c01348{left:514.080000px;}
.xcb_c01348{left:517.530000px;}
.x100_c01348{left:521.850000px;}
.x103_c01348{left:524.445000px;}
.xef_c01348{left:527.910000px;}
.x115_c01348{left:533.085000px;}
.xe7_c01348{left:534.810000px;}
.x19_c01348{left:537.405000px;}
.x11_c01348{left:539.130000px;}
.xc4_c01348{left:540.870000px;}
.xfd_c01348{left:542.595000px;}
.xd_c01348{left:544.320000px;}
.x9_c01348{left:549.510000px;}
.x44_c01348{left:551.235000px;}
.x2d_c01348{left:552.960000px;}
.xce_c01348{left:555.555000px;}
.x3d_c01348{left:557.280000px;}
.x9a_c01348{left:559.005000px;}
.xe_c01348{left:561.600000px;}
.x117_c01348{left:563.325000px;}
.x16_c01348{left:565.050000px;}
.x2a_c01348{left:566.790000px;}
.xf1_c01348{left:568.515000px;}
.xf3_c01348{left:573.690000px;}
.xad_c01348{left:576.285000px;}
.x108_c01348{left:578.010000px;}
.xa_c01348{left:579.750000px;}
.xfa_c01348{left:581.475000px;}
.x4c_c01348{left:584.070000px;}
.xa4_c01348{left:585.795000px;}
.xcf_c01348{left:587.520000px;}
.xe8_c01348{left:590.970000px;}
.x2e_c01348{left:592.710000px;}
.x12_c01348{left:594.435000px;}
.x20_c01348{left:597.030000px;}
.x38_c01348{left:599.610000px;}
.x2b_c01348{left:602.205000px;}
.x1a_c01348{left:605.670000px;}
.x33_c01348{left:609.120000px;}
.xd7_c01348{left:611.715000px;}
.x25_c01348{left:613.440000px;}
.xf0_c01348{left:616.035000px;}
.x45_c01348{left:617.760000px;}
.xae_c01348{left:620.355000px;}
.xd0_c01348{left:624.675000px;}
.x21_c01348{left:626.400000px;}
.x49_c01348{left:629.850000px;}
.x39_c01348{left:632.445000px;}
.x17_c01348{left:635.910000px;}
.x1b_c01348{left:637.635000px;}
.x9b_c01348{left:641.085000px;}
.xa1_c01348{left:644.550000px;}
.xde_c01348{left:647.130000px;}
.x13_c01348{left:652.320000px;}
.x22_c01348{left:654.915000px;}
.x3e_c01348{left:657.510000px;}
.xf7_c01348{left:659.235000px;}
.x4d_c01348{left:660.960000px;}
.xe9_c01348{left:662.685000px;}
.x46_c01348{left:664.410000px;}
.xd1_c01348{left:666.150000px;}
.x112_c01348{left:667.875000px;}
.x26_c01348{left:669.600000px;}
.x4a_c01348{left:671.325000px;}
.x2f_c01348{left:673.920000px;}
.x9c_c01348{left:675.645000px;}
.x4e_c01348{left:678.240000px;}
.x3f_c01348{left:679.965000px;}
.xaf_c01348{left:682.560000px;}
.xdc_c01348{left:684.285000px;}
.x1c_c01348{left:686.880000px;}
.x47_c01348{left:688.605000px;}
.x27_c01348{left:691.200000px;}
.xa2_c01348{left:692.925000px;}
.x40_c01348{left:695.520000px;}
.x113_c01348{left:697.245000px;}
.xd8_c01348{left:700.710000px;}
.x3b_c01348{left:704.160000px;}
.xd2_c01348{left:705.885000px;}
.xf_c01348{left:708.480000px;}
.xb0_c01348{left:710.205000px;}
.x4b_c01348{left:711.930000px;}
.x2c_c01348{left:713.670000px;}
.xfb_c01348{left:716.250000px;}
.xb7_c01348{left:717.990000px;}
.xba_c01348{left:720.570000px;}
.xc8_c01348{left:722.310000px;}
.x3c_c01348{left:724.890000px;}
.xa5_c01348{left:727.485000px;}
.xf4_c01348{left:729.210000px;}
.x14_c01348{left:731.805000px;}
.xd9_c01348{left:733.530000px;}
.xbb_c01348{left:736.125000px;}
.x1d_c01348{left:738.720000px;}
.x109_c01348{left:740.445000px;}
.xb1_c01348{left:744.765000px;}
.x30_c01348{left:747.360000px;}
.xbf_c01348{left:749.955000px;}
.x28_c01348{left:751.680000px;}
.x114_c01348{left:756.000000px;}
.xf5_c01348{left:757.725000px;}
.xfc_c01348{left:761.190000px;}
.x3a_c01348{left:763.770000px;}
.xc5_c01348{left:766.365000px;}
.x41_c01348{left:769.830000px;}
.x9d_c01348{left:774.150000px;}
.x23_c01348{left:775.875000px;}
.xbc_c01348{left:777.600000px;}
.xdf_c01348{left:780.195000px;}
.xe4_c01348{left:781.920000px;}
.x29_c01348{left:783.645000px;}
.x1e_c01348{left:786.240000px;}
.xc0_c01348{left:788.835000px;}
.x96_c01348{left:791.430000px;}
.x42_c01348{left:794.880000px;}
.x24_c01348{left:796.605000px;}
.x31_c01348{left:798.330000px;}
.x10a_c01348{left:800.070000px;}
.xc6_c01348{left:801.795000px;}
.xcc_c01348{left:804.390000px;}
.xe2_c01348{left:807.840000px;}
.xb2_c01348{left:809.565000px;}
.x10_c01348{left:811.290000px;}
.x34_c01348{left:813.030000px;}
.x1f_c01348{left:814.755000px;}
.x43_c01348{left:817.350000px;}
.x35_c01348{left:819.930000px;}
.xbd_c01348{left:824.250000px;}
.x48_c01348{left:826.845000px;}
.x36_c01348{left:832.890000px;}
.x37_c01348{left:837.210000px;}
.xd3_c01348{left:838.950000px;}
.x32_c01348{left:846.720000px;}
.x15_c01348{left:849.315000px;}
.x18_c01348{left:851.040000px;}
.xd6_c01348{left:854.490000px;}
.xb_c01348{left:856.230000px;}
.xc_c01348{left:866.595000px;}
.x4f_c01348{left:890.790000px;}
.x50_c01348{left:896.835000px;}
.x119_c01348{left:906.330000px;}
.x11a_c01348{left:913.245000px;}
.x11b_c01348{left:921.030000px;}
.x11d_c01348{left:923.610000px;}
.x11c_c01348{left:933.120000px;}
.x51_c01348{left:1010.880000px;}
.x52_c01348{left:1022.970000px;}
@media print{
.v2_c01348{vertical-align:-18.453333pt;}
.v1_c01348{vertical-align:-6.133333pt;}
.v0_c01348{vertical-align:0.000000pt;}
.v3_c01348{vertical-align:3.093333pt;}
.ls1_c01348{letter-spacing:0.000000pt;}
.ls0_c01348{letter-spacing:17.126613pt;}
.ws1_c01348{word-spacing:-3.578027pt;}
.ws2_c01348{word-spacing:0.000000pt;}
.ws0_c01348{word-spacing:39.973547pt;}
.fs1_c01348{font-size:3.072000pt;}
.fs9_c01348{font-size:5.333333pt;}
.fsa_c01348{font-size:6.133333pt;}
.fs3_c01348{font-size:9.226667pt;}
.fs2_c01348{font-size:12.266667pt;}
.fs0_c01348{font-size:15.360000pt;}
.fs4_c01348{font-size:18.453333pt;}
.fs18_c01348{font-size:21.493333pt;}
.fs11_c01348{font-size:24.586667pt;}
.fsb_c01348{font-size:27.626667pt;}
.fs14_c01348{font-size:30.720000pt;}
.fs13_c01348{font-size:33.813333pt;}
.fs10_c01348{font-size:36.853333pt;}
.fsd_c01348{font-size:39.946667pt;}
.fsc_c01348{font-size:42.986667pt;}
.fse_c01348{font-size:46.080000pt;}
.fs12_c01348{font-size:49.173333pt;}
.fsf_c01348{font-size:52.213333pt;}
.fs7_c01348{font-size:55.306667pt;}
.fs8_c01348{font-size:58.346667pt;}
.fs6_c01348{font-size:61.440000pt;}
.fs15_c01348{font-size:64.533333pt;}
.fs5_c01348{font-size:67.573333pt;}
.fs17_c01348{font-size:70.666667pt;}
.fs16_c01348{font-size:73.706667pt;}
.fs19_c01348{font-size:82.933333pt;}
.y0_c01348{bottom:0.000000pt;}
.y212_c01348{bottom:186.626667pt;}
.y211_c01348{bottom:188.933333pt;}
.y209_c01348{bottom:191.226667pt;}
.y20d_c01348{bottom:192.000000pt;}
.y20c_c01348{bottom:192.773333pt;}
.y20a_c01348{bottom:193.533333pt;}
.y210_c01348{bottom:194.306667pt;}
.y20f_c01348{bottom:195.066667pt;}
.y20e_c01348{bottom:195.840000pt;}
.y20b_c01348{bottom:202.746667pt;}
.y202_c01348{bottom:205.053333pt;}
.y205_c01348{bottom:205.826667pt;}
.y206_c01348{bottom:206.586667pt;}
.y203_c01348{bottom:207.360000pt;}
.y208_c01348{bottom:208.133333pt;}
.y207_c01348{bottom:210.426667pt;}
.y204_c01348{bottom:213.506667pt;}
.y201_c01348{bottom:218.106667pt;}
.y1fa_c01348{bottom:219.653333pt;}
.y1fb_c01348{bottom:220.413333pt;}
.y1fc_c01348{bottom:222.720000pt;}
.y1f9_c01348{bottom:223.493333pt;}
.y1f8_c01348{bottom:224.253333pt;}
.y1fd_c01348{bottom:225.026667pt;}
.y200_c01348{bottom:225.786667pt;}
.y1ff_c01348{bottom:226.560000pt;}
.y1fe_c01348{bottom:228.093333pt;}
.y1ef_c01348{bottom:235.013333pt;}
.y1f2_c01348{bottom:238.853333pt;}
.y1f5_c01348{bottom:239.613333pt;}
.y1f3_c01348{bottom:240.386667pt;}
.y1f7_c01348{bottom:241.146667pt;}
.y1f4_c01348{bottom:241.920000pt;}
.y1f1_c01348{bottom:244.226667pt;}
.y1f0_c01348{bottom:247.293333pt;}
.y1f6_c01348{bottom:248.066667pt;}
.y1e9_c01348{bottom:251.133333pt;}
.y1eb_c01348{bottom:253.440000pt;}
.y1ea_c01348{bottom:254.973333pt;}
.y1e8_c01348{bottom:255.746667pt;}
.y1ec_c01348{bottom:257.280000pt;}
.y1ee_c01348{bottom:258.053333pt;}
.y1ed_c01348{bottom:258.813333pt;}
.y1e4_c01348{bottom:268.026667pt;}
.y1e2_c01348{bottom:268.800000pt;}
.y1df_c01348{bottom:269.573333pt;}
.y1e5_c01348{bottom:270.333333pt;}
.y1e7_c01348{bottom:271.106667pt;}
.y1e0_c01348{bottom:271.866667pt;}
.y1e1_c01348{bottom:272.640000pt;}
.y1e6_c01348{bottom:273.413333pt;}
.y1e3_c01348{bottom:274.173333pt;}
.y1da_c01348{bottom:282.626667pt;}
.y1dd_c01348{bottom:283.386667pt;}
.y1db_c01348{bottom:287.226667pt;}
.y1dc_c01348{bottom:288.000000pt;}
.y1de_c01348{bottom:290.306667pt;}
.y1d9_c01348{bottom:293.373333pt;}
.y1d2_c01348{bottom:299.520000pt;}
.y1d3_c01348{bottom:301.053333pt;}
.y1d0_c01348{bottom:302.586667pt;}
.y1d1_c01348{bottom:303.360000pt;}
.y1d4_c01348{bottom:304.133333pt;}
.y1d8_c01348{bottom:304.893333pt;}
.y1d5_c01348{bottom:305.666667pt;}
.y1cf_c01348{bottom:306.426667pt;}
.y1d6_c01348{bottom:309.506667pt;}
.y1d7_c01348{bottom:312.573333pt;}
.y1c8_c01348{bottom:314.106667pt;}
.y1ca_c01348{bottom:317.186667pt;}
.y1cd_c01348{bottom:317.946667pt;}
.y1cb_c01348{bottom:318.720000pt;}
.y1c9_c01348{bottom:319.493333pt;}
.y1cc_c01348{bottom:320.253333pt;}
.y1ce_c01348{bottom:321.026667pt;}
.y1be_c01348{bottom:330.240000pt;}
.y1c2_c01348{bottom:331.773333pt;}
.y1c0_c01348{bottom:332.546667pt;}
.y1c6_c01348{bottom:333.306667pt;}
.y1c7_c01348{bottom:334.080000pt;}
.y1bf_c01348{bottom:334.853333pt;}
.y1c1_c01348{bottom:335.613333pt;}
.y1c4_c01348{bottom:336.386667pt;}
.y1c5_c01348{bottom:337.146667pt;}
.y1c3_c01348{bottom:338.693333pt;}
.y1ba_c01348{bottom:348.666667pt;}
.y1b7_c01348{bottom:349.440000pt;}
.y1b8_c01348{bottom:350.213333pt;}
.y1b9_c01348{bottom:350.973333pt;}
.y1bb_c01348{bottom:351.746667pt;}
.y1bd_c01348{bottom:352.506667pt;}
.y1bc_c01348{bottom:353.280000pt;}
.y1af_c01348{bottom:360.960000pt;}
.y1b0_c01348{bottom:362.493333pt;}
.y1b4_c01348{bottom:363.266667pt;}
.y1b6_c01348{bottom:364.026667pt;}
.y1b1_c01348{bottom:365.573333pt;}
.y1b3_c01348{bottom:367.106667pt;}
.y1b2_c01348{bottom:367.866667pt;}
.y1b5_c01348{bottom:372.480000pt;}
.y1ad_c01348{bottom:379.386667pt;}
.y1ac_c01348{bottom:380.160000pt;}
.y1a7_c01348{bottom:380.933333pt;}
.y1a8_c01348{bottom:381.693333pt;}
.y1ae_c01348{bottom:382.466667pt;}
.y1aa_c01348{bottom:383.226667pt;}
.y1a9_c01348{bottom:387.066667pt;}
.y1a6_c01348{bottom:388.613333pt;}
.y1ab_c01348{bottom:390.906667pt;}
.y19f_c01348{bottom:392.453333pt;}
.y1a1_c01348{bottom:393.213333pt;}
.y1a0_c01348{bottom:393.986667pt;}
.y1a2_c01348{bottom:397.826667pt;}
.y1a3_c01348{bottom:398.586667pt;}
.y1a5_c01348{bottom:399.360000pt;}
.y1a4_c01348{bottom:400.133333pt;}
.y19e_c01348{bottom:407.813333pt;}
.y196_c01348{bottom:409.346667pt;}
.y19a_c01348{bottom:410.880000pt;}
.y19d_c01348{bottom:411.653333pt;}
.y198_c01348{bottom:412.413333pt;}
.y197_c01348{bottom:413.186667pt;}
.y19c_c01348{bottom:414.720000pt;}
.y19b_c01348{bottom:415.493333pt;}
.y199_c01348{bottom:421.626667pt;}
.y190_c01348{bottom:424.706667pt;}
.y195_c01348{bottom:427.013333pt;}
.y193_c01348{bottom:427.773333pt;}
.y191_c01348{bottom:428.546667pt;}
.y192_c01348{bottom:429.306667pt;}
.y194_c01348{bottom:431.613333pt;}
.y18a_c01348{bottom:443.133333pt;}
.y18b_c01348{bottom:444.666667pt;}
.y18c_c01348{bottom:446.973333pt;}
.y18d_c01348{bottom:448.506667pt;}
.y18e_c01348{bottom:451.586667pt;}
.y18f_c01348{bottom:453.120000pt;}
.y183_c01348{bottom:456.186667pt;}
.y181_c01348{bottom:456.960000pt;}
.y184_c01348{bottom:457.733333pt;}
.y187_c01348{bottom:458.493333pt;}
.y180_c01348{bottom:459.266667pt;}
.y182_c01348{bottom:460.026667pt;}
.y189_c01348{bottom:460.800000pt;}
.y188_c01348{bottom:461.573333pt;}
.y186_c01348{bottom:462.333333pt;}
.y185_c01348{bottom:466.946667pt;}
.y17f_c01348{bottom:468.480000pt;}
.y177_c01348{bottom:472.320000pt;}
.y179_c01348{bottom:473.093333pt;}
.y176_c01348{bottom:473.853333pt;}
.y175_c01348{bottom:474.626667pt;}
.y178_c01348{bottom:475.386667pt;}
.y17c_c01348{bottom:476.160000pt;}
.y17b_c01348{bottom:476.933333pt;}
.y17a_c01348{bottom:477.693333pt;}
.y17d_c01348{bottom:478.466667pt;}
.y17e_c01348{bottom:479.226667pt;}
.y16e_c01348{bottom:486.906667pt;}
.y16f_c01348{bottom:487.680000pt;}
.y170_c01348{bottom:489.213333pt;}
.y16d_c01348{bottom:490.746667pt;}
.y171_c01348{bottom:491.520000pt;}
.y174_c01348{bottom:492.293333pt;}
.y172_c01348{bottom:493.053333pt;}
.y173_c01348{bottom:493.826667pt;}
.y166_c01348{bottom:503.813333pt;}
.y165_c01348{bottom:504.573333pt;}
.y169_c01348{bottom:506.106667pt;}
.y167_c01348{bottom:506.880000pt;}
.y16b_c01348{bottom:507.653333pt;}
.y16a_c01348{bottom:508.413333pt;}
.y16c_c01348{bottom:509.186667pt;}
.y168_c01348{bottom:513.786667pt;}
.y161_c01348{bottom:520.706667pt;}
.y15e_c01348{bottom:521.466667pt;}
.y15f_c01348{bottom:522.240000pt;}
.y160_c01348{bottom:523.013333pt;}
.y164_c01348{bottom:524.546667pt;}
.y163_c01348{bottom:529.146667pt;}
.y156_c01348{bottom:531.453333pt;}
.y162_c01348{bottom:532.986667pt;}
.y157_c01348{bottom:533.760000pt;}
.y159_c01348{bottom:536.066667pt;}
.y15b_c01348{bottom:536.826667pt;}
.y15d_c01348{bottom:537.600000pt;}
.y15c_c01348{bottom:539.906667pt;}
.y15a_c01348{bottom:540.666667pt;}
.y158_c01348{bottom:548.346667pt;}
.y151_c01348{bottom:551.426667pt;}
.y152_c01348{bottom:552.186667pt;}
.y153_c01348{bottom:552.960000pt;}
.y150_c01348{bottom:553.733333pt;}
.y154_c01348{bottom:557.573333pt;}
.y155_c01348{bottom:559.866667pt;}
.y149_c01348{bottom:564.480000pt;}
.y146_c01348{bottom:565.253333pt;}
.y14a_c01348{bottom:566.013333pt;}
.y14e_c01348{bottom:566.786667pt;}
.y14f_c01348{bottom:567.546667pt;}
.y14b_c01348{bottom:568.320000pt;}
.y147_c01348{bottom:569.093333pt;}
.y148_c01348{bottom:569.853333pt;}
.y14c_c01348{bottom:570.626667pt;}
.y14d_c01348{bottom:571.386667pt;}
.y13e_c01348{bottom:579.840000pt;}
.y13f_c01348{bottom:580.613333pt;}
.y13c_c01348{bottom:581.373333pt;}
.y141_c01348{bottom:582.906667pt;}
.y145_c01348{bottom:583.680000pt;}
.y13d_c01348{bottom:584.453333pt;}
.y140_c01348{bottom:585.213333pt;}
.y143_c01348{bottom:585.986667pt;}
.y144_c01348{bottom:586.746667pt;}
.y142_c01348{bottom:593.666667pt;}
.y137_c01348{bottom:595.973333pt;}
.y139_c01348{bottom:597.506667pt;}
.y136_c01348{bottom:599.040000pt;}
.y138_c01348{bottom:599.813333pt;}
.y13b_c01348{bottom:600.573333pt;}
.y13a_c01348{bottom:601.346667pt;}
.y214_c01348{bottom:606.720000pt;}
.y12e_c01348{bottom:610.560000pt;}
.y53_c01348{bottom:611.333333pt;}
.y54_c01348{bottom:612.093333pt;}
.y134_c01348{bottom:612.866667pt;}
.y135_c01348{bottom:614.400000pt;}
.y12f_c01348{bottom:615.173333pt;}
.y133_c01348{bottom:615.933333pt;}
.y131_c01348{bottom:616.706667pt;}
.y132_c01348{bottom:617.466667pt;}
.y130_c01348{bottom:623.613333pt;}
.y127_c01348{bottom:625.920000pt;}
.y12a_c01348{bottom:627.453333pt;}
.y129_c01348{bottom:629.760000pt;}
.y128_c01348{bottom:630.533333pt;}
.y12b_c01348{bottom:631.293333pt;}
.y12c_c01348{bottom:632.066667pt;}
.y12d_c01348{bottom:632.826667pt;}
.y121_c01348{bottom:642.053333pt;}
.y124_c01348{bottom:644.346667pt;}
.y126_c01348{bottom:645.120000pt;}
.y120_c01348{bottom:645.893333pt;}
.y122_c01348{bottom:646.653333pt;}
.y125_c01348{bottom:648.186667pt;}
.y123_c01348{bottom:648.960000pt;}
.y11a_c01348{bottom:657.413333pt;}
.y118_c01348{bottom:658.173333pt;}
.y11c_c01348{bottom:658.946667pt;}
.y11f_c01348{bottom:659.706667pt;}
.y119_c01348{bottom:661.253333pt;}
.y11b_c01348{bottom:662.013333pt;}
.y11e_c01348{bottom:663.546667pt;}
.y11d_c01348{bottom:664.320000pt;}
.y112_c01348{bottom:672.773333pt;}
.y113_c01348{bottom:673.533333pt;}
.y111_c01348{bottom:675.066667pt;}
.y114_c01348{bottom:677.373333pt;}
.y116_c01348{bottom:679.680000pt;}
.y115_c01348{bottom:680.453333pt;}
.y117_c01348{bottom:682.746667pt;}
.y109_c01348{bottom:688.133333pt;}
.y10a_c01348{bottom:688.893333pt;}
.y10b_c01348{bottom:689.666667pt;}
.y10d_c01348{bottom:691.200000pt;}
.y108_c01348{bottom:691.973333pt;}
.y110_c01348{bottom:692.733333pt;}
.y10c_c01348{bottom:693.506667pt;}
.y10f_c01348{bottom:694.266667pt;}
.y10e_c01348{bottom:695.040000pt;}
.y100_c01348{bottom:705.786667pt;}
.y104_c01348{bottom:706.560000pt;}
.y105_c01348{bottom:707.333333pt;}
.y102_c01348{bottom:708.093333pt;}
.y101_c01348{bottom:708.866667pt;}
.y106_c01348{bottom:710.400000pt;}
.y103_c01348{bottom:711.173333pt;}
.y107_c01348{bottom:717.306667pt;}
.yf7_c01348{bottom:719.613333pt;}
.yfa_c01348{bottom:720.386667pt;}
.yfb_c01348{bottom:721.146667pt;}
.yfd_c01348{bottom:722.693333pt;}
.yf8_c01348{bottom:724.226667pt;}
.yf9_c01348{bottom:724.986667pt;}
.yfc_c01348{bottom:725.760000pt;}
.yfe_c01348{bottom:726.533333pt;}
.yff_c01348{bottom:728.066667pt;}
.yf6_c01348{bottom:730.373333pt;}
.yed_c01348{bottom:735.746667pt;}
.yef_c01348{bottom:737.280000pt;}
.yf2_c01348{bottom:738.813333pt;}
.yee_c01348{bottom:739.586667pt;}
.yf0_c01348{bottom:741.120000pt;}
.yf4_c01348{bottom:741.893333pt;}
.yf5_c01348{bottom:744.186667pt;}
.yf3_c01348{bottom:748.800000pt;}
.yf1_c01348{bottom:750.333333pt;}
.ye8_c01348{bottom:751.866667pt;}
.ye6_c01348{bottom:752.640000pt;}
.yeb_c01348{bottom:753.413333pt;}
.ye5_c01348{bottom:754.173333pt;}
.yea_c01348{bottom:755.706667pt;}
.yec_c01348{bottom:756.480000pt;}
.ye9_c01348{bottom:757.253333pt;}
.ye7_c01348{bottom:761.853333pt;}
.ydf_c01348{bottom:767.226667pt;}
.ye0_c01348{bottom:768.000000pt;}
.yde_c01348{bottom:768.773333pt;}
.ye1_c01348{bottom:769.533333pt;}
.ydd_c01348{bottom:771.066667pt;}
.ye2_c01348{bottom:771.840000pt;}
.ye3_c01348{bottom:772.613333pt;}
.ye4_c01348{bottom:773.373333pt;}
.ydc_c01348{bottom:781.053333pt;}
.yd5_c01348{bottom:781.826667pt;}
.yd4_c01348{bottom:782.586667pt;}
.yd7_c01348{bottom:784.893333pt;}
.yda_c01348{bottom:785.666667pt;}
.yd6_c01348{bottom:786.426667pt;}
.yd8_c01348{bottom:787.200000pt;}
.ydb_c01348{bottom:787.973333pt;}
.yd9_c01348{bottom:788.733333pt;}
.yce_c01348{bottom:797.186667pt;}
.ycc_c01348{bottom:797.946667pt;}
.yd3_c01348{bottom:799.493333pt;}
.ycd_c01348{bottom:800.253333pt;}
.ycb_c01348{bottom:801.026667pt;}
.ycf_c01348{bottom:801.786667pt;}
.yd0_c01348{bottom:802.560000pt;}
.yd2_c01348{bottom:803.333333pt;}
.yd1_c01348{bottom:804.093333pt;}
.yca_c01348{bottom:804.866667pt;}
.yc2_c01348{bottom:812.546667pt;}
.yc4_c01348{bottom:815.613333pt;}
.yc1_c01348{bottom:816.386667pt;}
.yc3_c01348{bottom:817.146667pt;}
.yc5_c01348{bottom:817.920000pt;}
.yc6_c01348{bottom:818.693333pt;}
.yc8_c01348{bottom:819.453333pt;}
.yc7_c01348{bottom:820.226667pt;}
.yc9_c01348{bottom:827.133333pt;}
.ybb_c01348{bottom:828.666667pt;}
.ybe_c01348{bottom:830.973333pt;}
.yc0_c01348{bottom:831.746667pt;}
.ybf_c01348{bottom:834.053333pt;}
.ybd_c01348{bottom:836.346667pt;}
.ybc_c01348{bottom:839.426667pt;}
.yb2_c01348{bottom:842.493333pt;}
.yb3_c01348{bottom:843.266667pt;}
.yb6_c01348{bottom:844.026667pt;}
.yb9_c01348{bottom:846.333333pt;}
.yb7_c01348{bottom:847.106667pt;}
.yb4_c01348{bottom:847.866667pt;}
.yb5_c01348{bottom:848.640000pt;}
.yb8_c01348{bottom:849.413333pt;}
.yb1_c01348{bottom:850.173333pt;}
.yba_c01348{bottom:850.946667pt;}
.yb0_c01348{bottom:854.013333pt;}
.yaa_c01348{bottom:860.933333pt;}
.yad_c01348{bottom:862.466667pt;}
.yaf_c01348{bottom:863.226667pt;}
.yae_c01348{bottom:864.000000pt;}
.yab_c01348{bottom:865.533333pt;}
.yac_c01348{bottom:866.306667pt;}
.ya9_c01348{bottom:872.453333pt;}
.ya3_c01348{bottom:874.746667pt;}
.ya5_c01348{bottom:875.520000pt;}
.ya6_c01348{bottom:877.053333pt;}
.ya4_c01348{bottom:879.360000pt;}
.ya7_c01348{bottom:880.133333pt;}
.ya8_c01348{bottom:881.666667pt;}
.y213_c01348{bottom:884.733333pt;}
.y9c_c01348{bottom:890.106667pt;}
.y9e_c01348{bottom:890.880000pt;}
.y9d_c01348{bottom:893.186667pt;}
.ya2_c01348{bottom:895.493333pt;}
.y9f_c01348{bottom:896.253333pt;}
.ya1_c01348{bottom:897.786667pt;}
.ya0_c01348{bottom:899.333333pt;}
.y96_c01348{bottom:905.466667pt;}
.y98_c01348{bottom:908.546667pt;}
.y95_c01348{bottom:910.080000pt;}
.y97_c01348{bottom:910.853333pt;}
.y9a_c01348{bottom:912.386667pt;}
.y99_c01348{bottom:913.146667pt;}
.y9b_c01348{bottom:913.920000pt;}
.y8e_c01348{bottom:922.373333pt;}
.y8f_c01348{bottom:923.906667pt;}
.y8d_c01348{bottom:924.666667pt;}
.y8c_c01348{bottom:925.440000pt;}
.y90_c01348{bottom:926.213333pt;}
.y91_c01348{bottom:926.973333pt;}
.y92_c01348{bottom:927.746667pt;}
.y94_c01348{bottom:928.506667pt;}
.y93_c01348{bottom:929.280000pt;}
.y87_c01348{bottom:938.493333pt;}
.y8b_c01348{bottom:939.266667pt;}
.y8a_c01348{bottom:940.026667pt;}
.y88_c01348{bottom:941.573333pt;}
.y89_c01348{bottom:942.333333pt;}
.y52_c01348{bottom:943.106667pt;}
.y51_c01348{bottom:943.866667pt;}
.y50_c01348{bottom:956.933333pt;}
.y85_c01348{bottom:959.226667pt;}
.y86_c01348{bottom:960.773333pt;}
.y4e_c01348{bottom:970.746667pt;}
.y84_c01348{bottom:972.293333pt;}
.y4f_c01348{bottom:973.826667pt;}
.y4c_c01348{bottom:974.586667pt;}
.y4d_c01348{bottom:975.360000pt;}
.y82_c01348{bottom:984.573333pt;}
.y83_c01348{bottom:985.346667pt;}
.y48_c01348{bottom:986.880000pt;}
.y45_c01348{bottom:988.413333pt;}
.y49_c01348{bottom:989.946667pt;}
.y47_c01348{bottom:990.720000pt;}
.y46_c01348{bottom:991.493333pt;}
.y4b_c01348{bottom:992.253333pt;}
.y4a_c01348{bottom:993.026667pt;}
.y7e_c01348{bottom:1003.013333pt;}
.y80_c01348{bottom:1003.773333pt;}
.y7f_c01348{bottom:1004.546667pt;}
.y44_c01348{bottom:1005.306667pt;}
.y81_c01348{bottom:1006.080000pt;}
.y40_c01348{bottom:1006.853333pt;}
.y43_c01348{bottom:1008.386667pt;}
.y42_c01348{bottom:1016.826667pt;}
.y41_c01348{bottom:1017.600000pt;}
.y3b_c01348{bottom:1018.373333pt;}
.y3e_c01348{bottom:1020.666667pt;}
.y3c_c01348{bottom:1022.213333pt;}
.y3d_c01348{bottom:1022.973333pt;}
.y3f_c01348{bottom:1023.746667pt;}
.y7d_c01348{bottom:1027.586667pt;}
.y3a_c01348{bottom:1028.346667pt;}
.y7a_c01348{bottom:1032.186667pt;}
.y35_c01348{bottom:1034.493333pt;}
.y7b_c01348{bottom:1035.266667pt;}
.y36_c01348{bottom:1036.026667pt;}
.y39_c01348{bottom:1037.573333pt;}
.y34_c01348{bottom:1038.333333pt;}
.y37_c01348{bottom:1039.106667pt;}
.y38_c01348{bottom:1039.866667pt;}
.y7c_c01348{bottom:1048.320000pt;}
.y77_c01348{bottom:1049.093333pt;}
.y78_c01348{bottom:1049.853333pt;}
.y79_c01348{bottom:1051.386667pt;}
.y33_c01348{bottom:1052.160000pt;}
.y31_c01348{bottom:1053.693333pt;}
.y32_c01348{bottom:1054.466667pt;}
.y75_c01348{bottom:1064.453333pt;}
.y2f_c01348{bottom:1065.213333pt;}
.y2d_c01348{bottom:1065.986667pt;}
.y30_c01348{bottom:1066.746667pt;}
.y2e_c01348{bottom:1069.053333pt;}
.y76_c01348{bottom:1070.586667pt;}
.y73_c01348{bottom:1078.266667pt;}
.y2a_c01348{bottom:1079.813333pt;}
.y71_c01348{bottom:1081.346667pt;}
.y72_c01348{bottom:1082.106667pt;}
.y2c_c01348{bottom:1082.880000pt;}
.y29_c01348{bottom:1083.653333pt;}
.y74_c01348{bottom:1084.413333pt;}
.y2b_c01348{bottom:1085.946667pt;}
.y70_c01348{bottom:1088.253333pt;}
.y6e_c01348{bottom:1093.626667pt;}
.y6d_c01348{bottom:1094.400000pt;}
.y25_c01348{bottom:1095.933333pt;}
.y6c_c01348{bottom:1096.706667pt;}
.y28_c01348{bottom:1097.466667pt;}
.y27_c01348{bottom:1098.240000pt;}
.y6f_c01348{bottom:1099.013333pt;}
.y26_c01348{bottom:1099.773333pt;}
.y24_c01348{bottom:1100.546667pt;}
.y6b_c01348{bottom:1108.986667pt;}
.y69_c01348{bottom:1110.533333pt;}
.y67_c01348{bottom:1112.826667pt;}
.y68_c01348{bottom:1113.600000pt;}
.y6a_c01348{bottom:1114.373333pt;}
.y23_c01348{bottom:1115.133333pt;}
.y21_c01348{bottom:1115.906667pt;}
.y22_c01348{bottom:1125.120000pt;}
.y66_c01348{bottom:1127.426667pt;}
.y20_c01348{bottom:1128.186667pt;}
.y65_c01348{bottom:1128.960000pt;}
.y1e_c01348{bottom:1129.733333pt;}
.y1d_c01348{bottom:1131.266667pt;}
.y1f_c01348{bottom:1132.026667pt;}
.y19_c01348{bottom:1143.546667pt;}
.y64_c01348{bottom:1145.853333pt;}
.y1a_c01348{bottom:1147.386667pt;}
.y1b_c01348{bottom:1148.160000pt;}
.y1c_c01348{bottom:1148.933333pt;}
.y60_c01348{bottom:1158.146667pt;}
.y16_c01348{bottom:1158.906667pt;}
.y15_c01348{bottom:1159.680000pt;}
.y62_c01348{bottom:1160.453333pt;}
.y61_c01348{bottom:1161.213333pt;}
.y63_c01348{bottom:1161.986667pt;}
.y18_c01348{bottom:1162.746667pt;}
.y17_c01348{bottom:1163.520000pt;}
.y5d_c01348{bottom:1168.893333pt;}
.y5e_c01348{bottom:1170.426667pt;}
.y5c_c01348{bottom:1171.973333pt;}
.y13_c01348{bottom:1176.573333pt;}
.y5f_c01348{bottom:1177.346667pt;}
.y14_c01348{bottom:1178.880000pt;}
.y5a_c01348{bottom:1188.866667pt;}
.y58_c01348{bottom:1189.626667pt;}
.yf_c01348{bottom:1190.400000pt;}
.y10_c01348{bottom:1191.173333pt;}
.y5b_c01348{bottom:1191.933333pt;}
.y59_c01348{bottom:1192.706667pt;}
.yd_c01348{bottom:1193.466667pt;}
.ye_c01348{bottom:1194.240000pt;}
.y11_c01348{bottom:1195.013333pt;}
.y55_c01348{bottom:1199.613333pt;}
.y56_c01348{bottom:1200.386667pt;}
.y12_c01348{bottom:1202.693333pt;}
.y1_c01348{bottom:1206.533333pt;}
.yc_c01348{bottom:1208.066667pt;}
.y57_c01348{bottom:1208.826667pt;}
.y2_c01348{bottom:1209.600000pt;}
.yb_c01348{bottom:1213.440000pt;}
.y6_c01348{bottom:1229.573333pt;}
.y7_c01348{bottom:1232.640000pt;}
.y8_c01348{bottom:1233.413333pt;}
.y9_c01348{bottom:1234.173333pt;}
.ya_c01348{bottom:1240.320000pt;}
.y5_c01348{bottom:1243.386667pt;}
.y3_c01348{bottom:1250.306667pt;}
.y4_c01348{bottom:1251.840000pt;}
.h3_c01348{height:2.764500pt;}
.hb_c01348{height:4.799479pt;}
.hc_c01348{height:5.519401pt;}
.h5_c01348{height:8.303099pt;}
.h4_c01348{height:11.038802pt;}
.h2_c01348{height:13.822500pt;}
.h6_c01348{height:16.606198pt;}
.h1b_c01348{height:19.341901pt;}
.h13_c01348{height:22.125599pt;}
.hd_c01348{height:24.861302pt;}
.h17_c01348{height:27.645000pt;}
.h16_c01348{height:30.428698pt;}
.h15_c01348{height:32.550469pt;}
.h12_c01348{height:33.164401pt;}
.hf_c01348{height:35.948099pt;}
.he_c01348{height:38.683802pt;}
.h10_c01348{height:41.467500pt;}
.h1d_c01348{height:41.777135pt;}
.h14_c01348{height:44.251198pt;}
.h11_c01348{height:46.986901pt;}
.h9_c01348{height:49.770599pt;}
.ha_c01348{height:52.506302pt;}
.h8_c01348{height:55.290000pt;}
.h18_c01348{height:58.073698pt;}
.h7_c01348{height:60.809401pt;}
.h1a_c01348{height:63.593099pt;}
.h19_c01348{height:66.328802pt;}
.h1c_c01348{height:74.631901pt;}
.h1_c01348{height:1345.333333pt;}
.h0_c01348{height:1345.533333pt;}
.w0_c01348{width:963.066667pt;}
.w1_c01348{width:963.333333pt;}
.x0_c01348{left:0.000000pt;}
.x1_c01348{left:102.146667pt;}
.x2_c01348{left:116.733333pt;}
.xa6_c01348{left:163.586667pt;}
.x82_c01348{left:168.960000pt;}
.xb3_c01348{left:171.266667pt;}
.xa7_c01348{left:175.106667pt;}
.x106_c01348{left:177.413333pt;}
.x53_c01348{left:178.946667pt;}
.xb8_c01348{left:180.480000pt;}
.x60_c01348{left:184.320000pt;}
.x54_c01348{left:185.853333pt;}
.xea_c01348{left:187.386667pt;}
.x94_c01348{left:188.933333pt;}
.x74_c01348{left:195.066667pt;}
.xd4_c01348{left:198.146667pt;}
.x90_c01348{left:201.213333pt;}
.x68_c01348{left:203.520000pt;}
.x101_c01348{left:206.586667pt;}
.xf6_c01348{left:208.133333pt;}
.x5a_c01348{left:209.666667pt;}
.x7e_c01348{left:211.200000pt;}
.x62_c01348{left:215.813333pt;}
.x83_c01348{left:217.346667pt;}
.x69_c01348{left:219.653333pt;}
.xa8_c01348{left:221.946667pt;}
.x6d_c01348{left:225.786667pt;}
.x7f_c01348{left:228.093333pt;}
.xb9_c01348{left:231.933333pt;}
.x55_c01348{left:234.240000pt;}
.x5_c01348{left:236.546667pt;}
.x118_c01348{left:238.080000pt;}
.x80_c01348{left:240.386667pt;}
.x8d_c01348{left:241.920000pt;}
.xec_c01348{left:243.453333pt;}
.x3_c01348{left:244.987029pt;}
.x102_c01348{left:246.533333pt;}
.xcd_c01348{left:248.066667pt;}
.x10c_c01348{left:249.600000pt;}
.xe0_c01348{left:251.133333pt;}
.xf8_c01348{left:253.440000pt;}
.x63_c01348{left:254.973333pt;}
.x6e_c01348{left:256.506667pt;}
.xd5_c01348{left:258.813333pt;}
.x84_c01348{left:260.346667pt;}
.xfe_c01348{left:261.893333pt;}
.x4_c01348{left:264.186667pt;}
.x86_c01348{left:265.733333pt;}
.xed_c01348{left:267.266667pt;}
.xdd_c01348{left:268.800000pt;}
.x97_c01348{left:271.866667pt;}
.x110_c01348{left:273.413333pt;}
.xa9_c01348{left:274.946667pt;}
.xda_c01348{left:276.480000pt;}
.x56_c01348{left:278.013333pt;}
.x75_c01348{left:280.320000pt;}
.x7c_c01348{left:281.853333pt;}
.xbe_c01348{left:283.386667pt;}
.xe3_c01348{left:284.933333pt;}
.xf9_c01348{left:286.466667pt;}
.x87_c01348{left:289.533333pt;}
.xb5_c01348{left:291.066667pt;}
.x79_c01348{left:293.373333pt;}
.x9e_c01348{left:296.453333pt;}
.x6f_c01348{left:298.746667pt;}
.x64_c01348{left:301.053333pt;}
.x8a_c01348{left:303.360000pt;}
.x105_c01348{left:304.893333pt;}
.x10e_c01348{left:306.426667pt;}
.xdb_c01348{left:307.973333pt;}
.xc1_c01348{left:309.506667pt;}
.x5b_c01348{left:311.040000pt;}
.xe5_c01348{left:313.346667pt;}
.x85_c01348{left:315.653333pt;}
.x91_c01348{left:317.186667pt;}
.x65_c01348{left:322.560000pt;}
.xc2_c01348{left:324.093333pt;}
.xc9_c01348{left:326.400000pt;}
.x70_c01348{left:327.933333pt;}
.x7d_c01348{left:329.466667pt;}
.x88_c01348{left:331.013333pt;}
.xff_c01348{left:333.306667pt;}
.xeb_c01348{left:335.613333pt;}
.x89_c01348{left:337.146667pt;}
.x5c_c01348{left:339.453333pt;}
.x76_c01348{left:341.760000pt;}
.x92_c01348{left:343.293333pt;}
.x8e_c01348{left:345.600000pt;}
.xaa_c01348{left:347.906667pt;}
.x10b_c01348{left:349.440000pt;}
.x66_c01348{left:350.973333pt;}
.x10f_c01348{left:352.506667pt;}
.x9f_c01348{left:354.053333pt;}
.xee_c01348{left:355.586667pt;}
.x57_c01348{left:358.653333pt;}
.xa3_c01348{left:360.960000pt;}
.x71_c01348{left:362.493333pt;}
.xe1_c01348{left:364.026667pt;}
.x6a_c01348{left:365.573333pt;}
.x61_c01348{left:369.413333pt;}
.xe6_c01348{left:372.480000pt;}
.x98_c01348{left:374.786667pt;}
.x77_c01348{left:376.320000pt;}
.x93_c01348{left:378.626667pt;}
.x116_c01348{left:380.933333pt;}
.xca_c01348{left:384.000000pt;}
.x7a_c01348{left:386.306667pt;}
.x111_c01348{left:387.840000pt;}
.x58_c01348{left:389.373333pt;}
.x8b_c01348{left:391.680000pt;}
.x7b_c01348{left:393.986667pt;}
.x5d_c01348{left:395.520000pt;}
.xc7_c01348{left:397.053333pt;}
.x72_c01348{left:399.360000pt;}
.x104_c01348{left:400.893333pt;}
.x6_c01348{left:402.426667pt;}
.xf2_c01348{left:404.733333pt;}
.xab_c01348{left:406.266667pt;}
.x10d_c01348{left:408.573333pt;}
.x81_c01348{left:410.106667pt;}
.x67_c01348{left:411.653333pt;}
.x73_c01348{left:413.946667pt;}
.x78_c01348{left:416.253333pt;}
.x8c_c01348{left:418.560000pt;}
.x95_c01348{left:420.866667pt;}
.x7_c01348{left:423.933333pt;}
.x59_c01348{left:425.466667pt;}
.x5e_c01348{left:427.773333pt;}
.xb4_c01348{left:430.080000pt;}
.x8f_c01348{left:431.613333pt;}
.x6b_c01348{left:433.146667pt;}
.xa0_c01348{left:434.693333pt;}
.xac_c01348{left:436.986667pt;}
.x6c_c01348{left:438.533333pt;}
.x99_c01348{left:441.600000pt;}
.xb6_c01348{left:443.133333pt;}
.x5f_c01348{left:445.440000pt;}
.xc3_c01348{left:446.973333pt;}
.x107_c01348{left:449.280000pt;}
.x8_c01348{left:456.960000pt;}
.xcb_c01348{left:460.026667pt;}
.x100_c01348{left:463.866667pt;}
.x103_c01348{left:466.173333pt;}
.xef_c01348{left:469.253333pt;}
.x115_c01348{left:473.853333pt;}
.xe7_c01348{left:475.386667pt;}
.x19_c01348{left:477.693333pt;}
.x11_c01348{left:479.226667pt;}
.xc4_c01348{left:480.773333pt;}
.xfd_c01348{left:482.306667pt;}
.xd_c01348{left:483.840000pt;}
.x9_c01348{left:488.453333pt;}
.x44_c01348{left:489.986667pt;}
.x2d_c01348{left:491.520000pt;}
.xce_c01348{left:493.826667pt;}
.x3d_c01348{left:495.360000pt;}
.x9a_c01348{left:496.893333pt;}
.xe_c01348{left:499.200000pt;}
.x117_c01348{left:500.733333pt;}
.x16_c01348{left:502.266667pt;}
.x2a_c01348{left:503.813333pt;}
.xf1_c01348{left:505.346667pt;}
.xf3_c01348{left:509.946667pt;}
.xad_c01348{left:512.253333pt;}
.x108_c01348{left:513.786667pt;}
.xa_c01348{left:515.333333pt;}
.xfa_c01348{left:516.866667pt;}
.x4c_c01348{left:519.173333pt;}
.xa4_c01348{left:520.706667pt;}
.xcf_c01348{left:522.240000pt;}
.xe8_c01348{left:525.306667pt;}
.x2e_c01348{left:526.853333pt;}
.x12_c01348{left:528.386667pt;}
.x20_c01348{left:530.693333pt;}
.x38_c01348{left:532.986667pt;}
.x2b_c01348{left:535.293333pt;}
.x1a_c01348{left:538.373333pt;}
.x33_c01348{left:541.440000pt;}
.xd7_c01348{left:543.746667pt;}
.x25_c01348{left:545.280000pt;}
.xf0_c01348{left:547.586667pt;}
.x45_c01348{left:549.120000pt;}
.xae_c01348{left:551.426667pt;}
.xd0_c01348{left:555.266667pt;}
.x21_c01348{left:556.800000pt;}
.x49_c01348{left:559.866667pt;}
.x39_c01348{left:562.173333pt;}
.x17_c01348{left:565.253333pt;}
.x1b_c01348{left:566.786667pt;}
.x9b_c01348{left:569.853333pt;}
.xa1_c01348{left:572.933333pt;}
.xde_c01348{left:575.226667pt;}
.x13_c01348{left:579.840000pt;}
.x22_c01348{left:582.146667pt;}
.x3e_c01348{left:584.453333pt;}
.xf7_c01348{left:585.986667pt;}
.x4d_c01348{left:587.520000pt;}
.xe9_c01348{left:589.053333pt;}
.x46_c01348{left:590.586667pt;}
.xd1_c01348{left:592.133333pt;}
.x112_c01348{left:593.666667pt;}
.x26_c01348{left:595.200000pt;}
.x4a_c01348{left:596.733333pt;}
.x2f_c01348{left:599.040000pt;}
.x9c_c01348{left:600.573333pt;}
.x4e_c01348{left:602.880000pt;}
.x3f_c01348{left:604.413333pt;}
.xaf_c01348{left:606.720000pt;}
.xdc_c01348{left:608.253333pt;}
.x1c_c01348{left:610.560000pt;}
.x47_c01348{left:612.093333pt;}
.x27_c01348{left:614.400000pt;}
.xa2_c01348{left:615.933333pt;}
.x40_c01348{left:618.240000pt;}
.x113_c01348{left:619.773333pt;}
.xd8_c01348{left:622.853333pt;}
.x3b_c01348{left:625.920000pt;}
.xd2_c01348{left:627.453333pt;}
.xf_c01348{left:629.760000pt;}
.xb0_c01348{left:631.293333pt;}
.x4b_c01348{left:632.826667pt;}
.x2c_c01348{left:634.373333pt;}
.xfb_c01348{left:636.666667pt;}
.xb7_c01348{left:638.213333pt;}
.xba_c01348{left:640.506667pt;}
.xc8_c01348{left:642.053333pt;}
.x3c_c01348{left:644.346667pt;}
.xa5_c01348{left:646.653333pt;}
.xf4_c01348{left:648.186667pt;}
.x14_c01348{left:650.493333pt;}
.xd9_c01348{left:652.026667pt;}
.xbb_c01348{left:654.333333pt;}
.x1d_c01348{left:656.640000pt;}
.x109_c01348{left:658.173333pt;}
.xb1_c01348{left:662.013333pt;}
.x30_c01348{left:664.320000pt;}
.xbf_c01348{left:666.626667pt;}
.x28_c01348{left:668.160000pt;}
.x114_c01348{left:672.000000pt;}
.xf5_c01348{left:673.533333pt;}
.xfc_c01348{left:676.613333pt;}
.x3a_c01348{left:678.906667pt;}
.xc5_c01348{left:681.213333pt;}
.x41_c01348{left:684.293333pt;}
.x9d_c01348{left:688.133333pt;}
.x23_c01348{left:689.666667pt;}
.xbc_c01348{left:691.200000pt;}
.xdf_c01348{left:693.506667pt;}
.xe4_c01348{left:695.040000pt;}
.x29_c01348{left:696.573333pt;}
.x1e_c01348{left:698.880000pt;}
.xc0_c01348{left:701.186667pt;}
.x96_c01348{left:703.493333pt;}
.x42_c01348{left:706.560000pt;}
.x24_c01348{left:708.093333pt;}
.x31_c01348{left:709.626667pt;}
.x10a_c01348{left:711.173333pt;}
.xc6_c01348{left:712.706667pt;}
.xcc_c01348{left:715.013333pt;}
.xe2_c01348{left:718.080000pt;}
.xb2_c01348{left:719.613333pt;}
.x10_c01348{left:721.146667pt;}
.x34_c01348{left:722.693333pt;}
.x1f_c01348{left:724.226667pt;}
.x43_c01348{left:726.533333pt;}
.x35_c01348{left:728.826667pt;}
.xbd_c01348{left:732.666667pt;}
.x48_c01348{left:734.973333pt;}
.x36_c01348{left:740.346667pt;}
.x37_c01348{left:744.186667pt;}
.xd3_c01348{left:745.733333pt;}
.x32_c01348{left:752.640000pt;}
.x15_c01348{left:754.946667pt;}
.x18_c01348{left:756.480000pt;}
.xd6_c01348{left:759.546667pt;}
.xb_c01348{left:761.093333pt;}
.xc_c01348{left:770.306667pt;}
.x4f_c01348{left:791.813333pt;}
.x50_c01348{left:797.186667pt;}
.x119_c01348{left:805.626667pt;}
.x11a_c01348{left:811.773333pt;}
.x11b_c01348{left:818.693333pt;}
.x11d_c01348{left:820.986667pt;}
.x11c_c01348{left:829.440000pt;}
.x51_c01348{left:898.560000pt;}
.x52_c01348{left:909.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01349;src:url('chunks/assets/font_b63ee7b38c109461e2782d38.woff2')format("woff");}.ff1_c01349{font-family:ff1_c01349;line-height:1.109863;font-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_c01349{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.me2_c01349{transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);}
.mf7_c01349{transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);}
.md5_c01349{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);}
.m21_c01349{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m15_c01349{transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131900,0.000000,0.000000,0.250000,0,0);}
.md2_c01349{transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132100,0.000000,0.000000,0.250000,0,0);}
.m7c_c01349{transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141375,0.000000,0.000000,0.250000,0,0);}
.ma1_c01349{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.me_c01349{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mcf_c01349{transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144350,0.000000,0.000000,0.250000,0,0);}
.m7d_c01349{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);}
.m45_c01349{transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149625,0.000000,0.000000,0.250000,0,0);}
.mc9_c01349{transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152225,0.000000,0.000000,0.250000,0,0);}
.m47_c01349{transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152500,0.000000,0.000000,0.250000,0,0);}
.m13_c01349{transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156450,0.000000,0.000000,0.250000,0,0);}
.m81_c01349{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.ma2_c01349{transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161750,0.000000,0.000000,0.250000,0,0);}
.m23_c01349{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.m5b_c01349{transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163300,0.000000,0.000000,0.250000,0,0);}
.m71_c01349{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.m83_c01349{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m98_c01349{transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174175,0.000000,0.000000,0.250000,0,0);}
.mdb_c01349{transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175100,0.000000,0.000000,0.250000,0,0);}
.m70_c01349{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.ma_c01349{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.mf0_c01349{transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177300,0.000000,0.000000,0.250000,0,0);}
.m7e_c01349{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.mee_c01349{transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179375,0.000000,0.000000,0.250000,0,0);}
.m84_c01349{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);}
.m75_c01349{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.mf3_c01349{transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181250,0.000000,0.000000,0.250000,0,0);}
.m3a_c01349{transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181525,0.000000,0.000000,0.250000,0,0);}
.mce_c01349{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);}
.m7a_c01349{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.m8f_c01349{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);}
.m3d_c01349{transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184200,0.000000,0.000000,0.250000,0,0);}
.m95_c01349{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.mdf_c01349{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);}
.me8_c01349{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.mbf_c01349{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);}
.md4_c01349{transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189900,0.000000,0.000000,0.250000,0,0);}
.ma9_c01349{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.md3_c01349{transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193225,0.000000,0.000000,0.250000,0,0);}
.mf1_c01349{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.med_c01349{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);}
.m82_c01349{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);}
.mcc_c01349{transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197700,0.000000,0.000000,0.250000,0,0);}
.mf6_c01349{transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198225,0.000000,0.000000,0.250000,0,0);}
.mea_c01349{transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199425,0.000000,0.000000,0.250000,0,0);}
.md9_c01349{transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);}
.mb9_c01349{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.mda_c01349{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.mcb_c01349{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);}
.m60_c01349{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);}
.m4f_c01349{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);}
.mb0_c01349{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m6f_c01349{transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201100,0.000000,0.000000,0.250000,0,0);}
.m91_c01349{transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);}
.mb1_c01349{transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202925,0.000000,0.000000,0.250000,0,0);}
.m24_c01349{transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203000,0.000000,0.000000,0.250000,0,0);}
.ma7_c01349{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m28_c01349{transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);}
.mc6_c01349{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.mdc_c01349{transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);}
.mb3_c01349{transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205200,0.000000,0.000000,0.250000,0,0);}
.mf2_c01349{transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205225,0.000000,0.000000,0.250000,0,0);}
.m53_c01349{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.mb5_c01349{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m4c_c01349{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m57_c01349{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.m4a_c01349{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);}
.m68_c01349{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);}
.m4b_c01349{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);}
.mb8_c01349{transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);}
.mc4_c01349{transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211250,0.000000,0.000000,0.250000,0,0);}
.mc2_c01349{transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214250,0.000000,0.000000,0.250000,0,0);}
.m20_c01349{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);}
.m2d_c01349{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);}
.m62_c01349{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);}
.m76_c01349{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);}
.mb7_c01349{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.ma4_c01349{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.m6b_c01349{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);}
.m6d_c01349{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);}
.me1_c01349{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.mc7_c01349{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);}
.mc5_c01349{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);}
.mb2_c01349{transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220425,0.000000,0.000000,0.250000,0,0);}
.m87_c01349{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);}
.m1f_c01349{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);}
.m44_c01349{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);}
.md1_c01349{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.mc1_c01349{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);}
.m9_c01349{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m34_c01349{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);}
.meb_c01349{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);}
.m42_c01349{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);}
.m14_c01349{transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224725,0.000000,0.000000,0.250000,0,0);}
.mbd_c01349{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.mef_c01349{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);}
.m97_c01349{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m37_c01349{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.me9_c01349{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);}
.ma6_c01349{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);}
.m74_c01349{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);}
.md6_c01349{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);}
.m79_c01349{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.m94_c01349{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.mdd_c01349{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);}
.m8b_c01349{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);}
.m54_c01349{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.m33_c01349{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.mbb_c01349{transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);}
.m9e_c01349{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);}
.m3b_c01349{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);}
.m9a_c01349{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);}
.m3e_c01349{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);}
.m2f_c01349{transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230525,0.000000,0.000000,0.250000,0,0);}
.me0_c01349{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);}
.mf4_c01349{transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230925,0.000000,0.000000,0.250000,0,0);}
.m11_c01349{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);}
.m90_c01349{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);}
.mf8_c01349{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);}
.me6_c01349{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);}
.m8d_c01349{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);}
.m78_c01349{transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);}
.m99_c01349{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);}
.mca_c01349{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);}
.m6e_c01349{transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236575,0.000000,0.000000,0.250000,0,0);}
.m17_c01349{transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236800,0.000000,0.000000,0.250000,0,0);}
.ma0_c01349{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);}
.me7_c01349{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);}
.m73_c01349{transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237050,0.000000,0.000000,0.250000,0,0);}
.mec_c01349{transform:matrix(0.237600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237600,0.000000,0.000000,0.250000,0,0);}
.me5_c01349{transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);}
.m88_c01349{transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239350,0.000000,0.000000,0.250000,0,0);}
.mad_c01349{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.m8c_c01349{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.ma8_c01349{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);}
.ma5_c01349{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m3f_c01349{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m72_c01349{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);}
.mae_c01349{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);}
.m2e_c01349{transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241700,0.000000,0.000000,0.250000,0,0);}
.m93_c01349{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);}
.m6a_c01349{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);}
.m35_c01349{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);}
.maa_c01349{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);}
.m8e_c01349{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m9d_c01349{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);}
.m92_c01349{transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);}
.mac_c01349{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);}
.m7f_c01349{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);}
.mc3_c01349{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.me3_c01349{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);}
.mf_c01349{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m85_c01349{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);}
.mfa_c01349{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);}
.mb4_c01349{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);}
.m46_c01349{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m26_c01349{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);}
.m77_c01349{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);}
.m5a_c01349{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);}
.m80_c01349{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);}
.mc_c01349{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m48_c01349{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01349{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mf5_c01349{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);}
.m4d_c01349{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.mb_c01349{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);}
.m25_c01349{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);}
.md_c01349{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m16_c01349{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);}
.m1c_c01349{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01349{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5_c01349{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);}
.m41_c01349{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m19_c01349{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);}
.m43_c01349{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);}
.m18_c01349{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01349{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01349{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);}
.m39_c01349{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m10_c01349{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8a_c01349{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);}
.mbc_c01349{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mde_c01349{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m32_c01349{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md0_c01349{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01349{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.me4_c01349{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m6_c01349{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m56_c01349{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);}
.m58_c01349{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mab_c01349{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.md8_c01349{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01349{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.mb6_c01349{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);}
.m51_c01349{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);}
.m2a_c01349{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m63_c01349{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);}
.m55_c01349{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m1_c01349{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);}
.md7_c01349{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m66_c01349{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);}
.m4_c01349{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m59_c01349{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m89_c01349{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m12_c01349{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m50_c01349{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m40_c01349{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m49_c01349{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);}
.mba_c01349{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m29_c01349{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m8_c01349{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m7b_c01349{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);}
.m31_c01349{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m2_c01349{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m7_c01349{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m36_c01349{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01349{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mcd_c01349{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.maf_c01349{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01349{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);}
.mf9_c01349{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m86_c01349{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.mc8_c01349{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m69_c01349{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mc0_c01349{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m9b_c01349{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m30_c01349{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m61_c01349{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);}
.m38_c01349{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m6c_c01349{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m67_c01349{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01349{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01349{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m27_c01349{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01349{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m0_c01349{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01349{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01349{transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.660000,0.000000,0.000000,0.250000,0,0);}
.m64_c01349{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.mbe_c01349{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01349{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m96_c01349{transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.912500,0.000000,0.000000,0.250000,0,0);}
.m65_c01349{transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);}
.m52_c01349{transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.990000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01349{transform:matrix(2.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.000000,0.000000,0.000000,0.250000,0,0);}
.m22_c01349{transform:matrix(3.887500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.887500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.887500,0.000000,0.000000,0.250000,0,0);}
.v1_c01349{vertical-align:-3.480000px;}
.v0_c01349{vertical-align:0.000000px;}
.ls0_c01349{letter-spacing:0.000000px;}
.sc__c01349{text-shadow:none;}
.sc0_c01349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01349{-webkit-text-stroke:0px transparent;}
.sc0_c01349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01349{word-spacing:-14.949060px;}
.ws1_c01349{word-spacing:0.000000px;}
.fc0_c01349{color:transparent;}
.fsa_c01349{font-size:3.456000px;}
.fsb_c01349{font-size:6.000000px;}
.fsc_c01349{font-size:6.900000px;}
.fs8_c01349{font-size:10.380000px;}
.fs1_c01349{font-size:13.800000px;}
.fs15_c01349{font-size:17.280000px;}
.fs0_c01349{font-size:20.760000px;}
.fs2_c01349{font-size:24.180000px;}
.fs10_c01349{font-size:27.660000px;}
.fse_c01349{font-size:31.080000px;}
.fs13_c01349{font-size:34.560000px;}
.fs19_c01349{font-size:38.040000px;}
.fs14_c01349{font-size:41.460000px;}
.fs11_c01349{font-size:44.940000px;}
.fsd_c01349{font-size:48.360000px;}
.fs9_c01349{font-size:51.840000px;}
.fs7_c01349{font-size:55.320000px;}
.fs3_c01349{font-size:58.740000px;}
.fs5_c01349{font-size:62.220000px;}
.fs6_c01349{font-size:65.640000px;}
.fs4_c01349{font-size:69.120000px;}
.fs12_c01349{font-size:72.600000px;}
.fs18_c01349{font-size:76.020000px;}
.fs17_c01349{font-size:79.500000px;}
.fsf_c01349{font-size:82.920000px;}
.fs16_c01349{font-size:86.400000px;}
.fs1a_c01349{font-size:89.880000px;}
.y0_c01349{bottom:0.000000px;}
.y11b_c01349{bottom:643.680000px;}
.y11f_c01349{bottom:644.550000px;}
.y11e_c01349{bottom:645.405000px;}
.y11c_c01349{bottom:648.000000px;}
.y11d_c01349{bottom:648.870000px;}
.y119_c01349{bottom:660.090000px;}
.y11a_c01349{bottom:660.960000px;}
.y117_c01349{bottom:661.830000px;}
.y114_c01349{bottom:662.685000px;}
.y118_c01349{bottom:663.555000px;}
.y116_c01349{bottom:665.280000px;}
.y115_c01349{bottom:666.150000px;}
.y113_c01349{bottom:672.195000px;}
.y111_c01349{bottom:678.240000px;}
.y10e_c01349{bottom:679.110000px;}
.y10f_c01349{bottom:679.965000px;}
.y112_c01349{bottom:680.835000px;}
.y110_c01349{bottom:682.560000px;}
.y10c_c01349{bottom:695.520000px;}
.y10b_c01349{bottom:696.390000px;}
.y10d_c01349{bottom:697.245000px;}
.y109_c01349{bottom:698.115000px;}
.y10a_c01349{bottom:699.840000px;}
.y107_c01349{bottom:712.800000px;}
.y108_c01349{bottom:713.670000px;}
.y106_c01349{bottom:717.990000px;}
.y105_c01349{bottom:731.805000px;}
.y104_c01349{bottom:732.675000px;}
.y103_c01349{bottom:735.270000px;}
.y100_c01349{bottom:748.230000px;}
.y101_c01349{bottom:749.955000px;}
.y102_c01349{bottom:750.810000px;}
.yff_c01349{bottom:751.680000px;}
.yfe_c01349{bottom:763.770000px;}
.yfc_c01349{bottom:764.640000px;}
.yfb_c01349{bottom:765.510000px;}
.yfd_c01349{bottom:767.235000px;}
.yfa_c01349{bottom:770.685000px;}
.yf9_c01349{bottom:772.410000px;}
.yf8_c01349{bottom:776.730000px;}
.yf6_c01349{bottom:782.790000px;}
.yf5_c01349{bottom:785.370000px;}
.yf7_c01349{bottom:787.110000px;}
.yf1_c01349{bottom:800.070000px;}
.yf3_c01349{bottom:800.925000px;}
.yf0_c01349{bottom:801.795000px;}
.yf2_c01349{bottom:804.390000px;}
.yf4_c01349{bottom:810.435000px;}
.yef_c01349{bottom:820.800000px;}
.yee_c01349{bottom:821.670000px;}
.yed_c01349{bottom:822.525000px;}
.yec_c01349{bottom:835.485000px;}
.ye9_c01349{bottom:836.355000px;}
.yea_c01349{bottom:838.950000px;}
.ye8_c01349{bottom:839.805000px;}
.ye7_c01349{bottom:840.675000px;}
.yeb_c01349{bottom:846.720000px;}
.ye6_c01349{bottom:851.040000px;}
.ye5_c01349{bottom:851.910000px;}
.ye3_c01349{bottom:852.765000px;}
.ye0_c01349{bottom:853.635000px;}
.ydf_c01349{bottom:855.360000px;}
.ye2_c01349{bottom:856.230000px;}
.yde_c01349{bottom:857.085000px;}
.ye1_c01349{bottom:857.955000px;}
.ye4_c01349{bottom:858.810000px;}
.ydc_c01349{bottom:871.770000px;}
.yda_c01349{bottom:872.640000px;}
.ydb_c01349{bottom:875.235000px;}
.ydd_c01349{bottom:884.730000px;}
.yd7_c01349{bottom:886.470000px;}
.yd8_c01349{bottom:887.325000px;}
.yd6_c01349{bottom:888.195000px;}
.yd3_c01349{bottom:889.050000px;}
.yd9_c01349{bottom:890.790000px;}
.yd4_c01349{bottom:891.645000px;}
.yd5_c01349{bottom:892.515000px;}
.yd1_c01349{bottom:904.605000px;}
.ycf_c01349{bottom:906.330000px;}
.yd2_c01349{bottom:908.925000px;}
.yd0_c01349{bottom:909.795000px;}
.yce_c01349{bottom:910.650000px;}
.yc8_c01349{bottom:923.610000px;}
.yca_c01349{bottom:924.480000px;}
.ycd_c01349{bottom:925.350000px;}
.yc7_c01349{bottom:926.205000px;}
.yc9_c01349{bottom:927.075000px;}
.ycc_c01349{bottom:927.930000px;}
.y121_c01349{bottom:928.800000px;}
.ycb_c01349{bottom:929.670000px;}
.y120_c01349{bottom:933.990000px;}
.yc2_c01349{bottom:940.890000px;}
.yc6_c01349{bottom:942.630000px;}
.yc4_c01349{bottom:943.485000px;}
.yc1_c01349{bottom:944.355000px;}
.yc0_c01349{bottom:945.210000px;}
.ybf_c01349{bottom:946.080000px;}
.yc5_c01349{bottom:954.720000px;}
.yc3_c01349{bottom:955.590000px;}
.yba_c01349{bottom:958.170000px;}
.yb9_c01349{bottom:959.040000px;}
.ybc_c01349{bottom:959.910000px;}
.yb8_c01349{bottom:960.765000px;}
.ybb_c01349{bottom:961.635000px;}
.ybd_c01349{bottom:962.490000px;}
.ybe_c01349{bottom:973.725000px;}
.yb1_c01349{bottom:975.450000px;}
.yb5_c01349{bottom:976.320000px;}
.yb6_c01349{bottom:977.190000px;}
.yb3_c01349{bottom:978.045000px;}
.yb2_c01349{bottom:978.915000px;}
.yb4_c01349{bottom:979.770000px;}
.yb7_c01349{bottom:985.830000px;}
.yad_c01349{bottom:991.875000px;}
.yab_c01349{bottom:992.730000px;}
.yb0_c01349{bottom:993.600000px;}
.yac_c01349{bottom:995.325000px;}
.y7_c01349{bottom:996.195000px;}
.yae_c01349{bottom:997.050000px;}
.yaf_c01349{bottom:997.920000px;}
.y8_c01349{bottom:1002.240000px;}
.ya9_c01349{bottom:1009.155000px;}
.ya4_c01349{bottom:1010.010000px;}
.ya2_c01349{bottom:1010.880000px;}
.yaa_c01349{bottom:1011.750000px;}
.ya5_c01349{bottom:1012.605000px;}
.ya8_c01349{bottom:1013.475000px;}
.ya3_c01349{bottom:1014.330000px;}
.ya6_c01349{bottom:1015.200000px;}
.ya7_c01349{bottom:1016.925000px;}
.ya0_c01349{bottom:1026.435000px;}
.y98_c01349{bottom:1027.290000px;}
.y9c_c01349{bottom:1029.030000px;}
.y9f_c01349{bottom:1029.885000px;}
.y9d_c01349{bottom:1030.755000px;}
.y9e_c01349{bottom:1031.610000px;}
.y9a_c01349{bottom:1034.205000px;}
.ya1_c01349{bottom:1037.670000px;}
.y9b_c01349{bottom:1040.250000px;}
.y96_c01349{bottom:1043.715000px;}
.y99_c01349{bottom:1044.570000px;}
.y90_c01349{bottom:1045.440000px;}
.y93_c01349{bottom:1046.310000px;}
.y95_c01349{bottom:1047.165000px;}
.y94_c01349{bottom:1048.035000px;}
.y97_c01349{bottom:1048.890000px;}
.y8f_c01349{bottom:1049.760000px;}
.y92_c01349{bottom:1050.630000px;}
.y91_c01349{bottom:1060.125000px;}
.y8d_c01349{bottom:1060.995000px;}
.y8c_c01349{bottom:1063.590000px;}
.y8e_c01349{bottom:1065.315000px;}
.y8b_c01349{bottom:1066.170000px;}
.y8a_c01349{bottom:1067.040000px;}
.y87_c01349{bottom:1080.000000px;}
.y82_c01349{bottom:1080.870000px;}
.y89_c01349{bottom:1081.725000px;}
.y83_c01349{bottom:1082.595000px;}
.y88_c01349{bottom:1083.450000px;}
.y84_c01349{bottom:1084.320000px;}
.y85_c01349{bottom:1085.190000px;}
.y86_c01349{bottom:1087.770000px;}
.y7f_c01349{bottom:1096.410000px;}
.y7b_c01349{bottom:1097.280000px;}
.y7d_c01349{bottom:1098.150000px;}
.y7c_c01349{bottom:1099.875000px;}
.y81_c01349{bottom:1100.730000px;}
.y80_c01349{bottom:1101.600000px;}
.y7a_c01349{bottom:1102.470000px;}
.y7e_c01349{bottom:1103.325000px;}
.y79_c01349{bottom:1116.285000px;}
.y75_c01349{bottom:1118.880000px;}
.y74_c01349{bottom:1119.750000px;}
.y76_c01349{bottom:1120.605000px;}
.y77_c01349{bottom:1123.200000px;}
.y78_c01349{bottom:1124.925000px;}
.y72_c01349{bottom:1128.390000px;}
.y70_c01349{bottom:1129.245000px;}
.y73_c01349{bottom:1131.840000px;}
.y6c_c01349{bottom:1132.710000px;}
.y6f_c01349{bottom:1133.565000px;}
.y6e_c01349{bottom:1136.160000px;}
.y71_c01349{bottom:1137.030000px;}
.y6d_c01349{bottom:1137.885000px;}
.y6a_c01349{bottom:1150.845000px;}
.y67_c01349{bottom:1152.570000px;}
.y65_c01349{bottom:1153.440000px;}
.y69_c01349{bottom:1154.310000px;}
.y66_c01349{bottom:1156.035000px;}
.y68_c01349{bottom:1157.760000px;}
.y6b_c01349{bottom:1166.400000px;}
.y60_c01349{bottom:1167.270000px;}
.y63_c01349{bottom:1168.125000px;}
.y64_c01349{bottom:1169.850000px;}
.y62_c01349{bottom:1170.720000px;}
.y5f_c01349{bottom:1172.445000px;}
.y61_c01349{bottom:1173.315000px;}
.y5d_c01349{bottom:1183.680000px;}
.y5c_c01349{bottom:1185.405000px;}
.y5b_c01349{bottom:1187.130000px;}
.y5a_c01349{bottom:1188.000000px;}
.y59_c01349{bottom:1188.870000px;}
.y57_c01349{bottom:1189.725000px;}
.y58_c01349{bottom:1190.595000px;}
.y5e_c01349{bottom:1194.045000px;}
.y50_c01349{bottom:1202.685000px;}
.y56_c01349{bottom:1203.555000px;}
.y55_c01349{bottom:1204.410000px;}
.y51_c01349{bottom:1205.280000px;}
.y54_c01349{bottom:1207.005000px;}
.y52_c01349{bottom:1207.875000px;}
.y53_c01349{bottom:1208.730000px;}
.y48_c01349{bottom:1219.965000px;}
.y4e_c01349{bottom:1221.690000px;}
.y4d_c01349{bottom:1222.560000px;}
.y4b_c01349{bottom:1223.430000px;}
.y4f_c01349{bottom:1224.285000px;}
.y49_c01349{bottom:1225.155000px;}
.y4a_c01349{bottom:1226.010000px;}
.y4c_c01349{bottom:1232.070000px;}
.y45_c01349{bottom:1238.970000px;}
.y47_c01349{bottom:1241.565000px;}
.y43_c01349{bottom:1242.435000px;}
.y44_c01349{bottom:1243.290000px;}
.y46_c01349{bottom:1251.930000px;}
.y3c_c01349{bottom:1254.525000px;}
.y3f_c01349{bottom:1255.395000px;}
.y3e_c01349{bottom:1256.250000px;}
.y42_c01349{bottom:1257.120000px;}
.y40_c01349{bottom:1258.845000px;}
.y3d_c01349{bottom:1259.715000px;}
.y41_c01349{bottom:1260.570000px;}
.y3b_c01349{bottom:1269.210000px;}
.y39_c01349{bottom:1272.675000px;}
.y35_c01349{bottom:1273.530000px;}
.y3a_c01349{bottom:1274.400000px;}
.y33_c01349{bottom:1276.125000px;}
.y38_c01349{bottom:1276.995000px;}
.y34_c01349{bottom:1277.850000px;}
.y36_c01349{bottom:1278.720000px;}
.y37_c01349{bottom:1279.590000px;}
.y32_c01349{bottom:1289.085000px;}
.y31_c01349{bottom:1289.955000px;}
.y30_c01349{bottom:1290.810000px;}
.y2b_c01349{bottom:1293.405000px;}
.y2c_c01349{bottom:1294.275000px;}
.y2d_c01349{bottom:1295.130000px;}
.y2f_c01349{bottom:1296.000000px;}
.y2e_c01349{bottom:1296.870000px;}
.y26_c01349{bottom:1307.235000px;}
.y28_c01349{bottom:1308.090000px;}
.y2a_c01349{bottom:1308.960000px;}
.y24_c01349{bottom:1310.685000px;}
.y29_c01349{bottom:1311.555000px;}
.y25_c01349{bottom:1312.410000px;}
.y27_c01349{bottom:1313.280000px;}
.y1d_c01349{bottom:1322.790000px;}
.y1f_c01349{bottom:1323.645000px;}
.y1b_c01349{bottom:1324.515000px;}
.y1c_c01349{bottom:1325.370000px;}
.y20_c01349{bottom:1327.110000px;}
.y23_c01349{bottom:1327.965000px;}
.y22_c01349{bottom:1328.835000px;}
.y21_c01349{bottom:1329.690000px;}
.y1e_c01349{bottom:1337.475000px;}
.y13_c01349{bottom:1342.650000px;}
.y1a_c01349{bottom:1343.520000px;}
.y16_c01349{bottom:1344.390000px;}
.y11_c01349{bottom:1345.245000px;}
.y12_c01349{bottom:1346.115000px;}
.y14_c01349{bottom:1347.840000px;}
.y17_c01349{bottom:1348.710000px;}
.y15_c01349{bottom:1349.565000px;}
.y18_c01349{bottom:1353.885000px;}
.y19_c01349{bottom:1357.350000px;}
.y10_c01349{bottom:1359.930000px;}
.yf_c01349{bottom:1362.525000px;}
.ya_c01349{bottom:1363.395000px;}
.yb_c01349{bottom:1364.250000px;}
.yc_c01349{bottom:1365.120000px;}
.ye_c01349{bottom:1368.570000px;}
.yd_c01349{bottom:1374.630000px;}
.y9_c01349{bottom:1380.675000px;}
.y6_c01349{bottom:1391.040000px;}
.y5_c01349{bottom:1391.910000px;}
.y4_c01349{bottom:1393.635000px;}
.y3_c01349{bottom:1422.150000px;}
.y2_c01349{bottom:1424.730000px;}
.y1_c01349{bottom:1461.030000px;}
.hc_c01349{height:3.110063px;}
.hd_c01349{height:5.399414px;}
.he_c01349{height:6.209326px;}
.ha_c01349{height:9.340986px;}
.h3_c01349{height:12.418652px;}
.h17_c01349{height:15.550313px;}
.h2_c01349{height:18.681973px;}
.h4_c01349{height:21.759639px;}
.h12_c01349{height:24.891299px;}
.h10_c01349{height:27.968965px;}
.h15_c01349{height:31.100625px;}
.h1b_c01349{height:34.232285px;}
.h16_c01349{height:37.309951px;}
.h13_c01349{height:40.441611px;}
.hf_c01349{height:43.519277px;}
.hb_c01349{height:46.650937px;}
.h9_c01349{height:49.782598px;}
.h5_c01349{height:52.860264px;}
.h7_c01349{height:55.991924px;}
.h8_c01349{height:59.069590px;}
.h6_c01349{height:62.201250px;}
.h14_c01349{height:65.332910px;}
.h1a_c01349{height:68.410576px;}
.h19_c01349{height:71.542236px;}
.h11_c01349{height:74.619902px;}
.h18_c01349{height:77.751563px;}
.h1c_c01349{height:80.883223px;}
.h1_c01349{height:1513.500000px;}
.h0_c01349{height:1513.725000px;}
.w0_c01349{width:1079.130000px;}
.w1_c01349{width:1079.250000px;}
.x0_c01349{left:0.000000px;}
.xd1_c01349{left:12.960000px;}
.xd2_c01349{left:24.195000px;}
.x8_c01349{left:43.200000px;}
.xd3_c01349{left:49.245000px;}
.x9_c01349{left:222.915000px;}
.xb9_c01349{left:248.835000px;}
.x78_c01349{left:250.560000px;}
.x2f_c01349{left:252.285000px;}
.xc_c01349{left:254.880000px;}
.x4c_c01349{left:258.330000px;}
.x1_c01349{left:266.115000px;}
.x94_c01349{left:273.885000px;}
.x6e_c01349{left:275.610000px;}
.xd_c01349{left:277.350000px;}
.x39_c01349{left:279.930000px;}
.x24_c01349{left:282.525000px;}
.xbc_c01349{left:284.250000px;}
.x2_c01349{left:289.440000px;}
.x19_c01349{left:298.080000px;}
.x3_c01349{left:301.530000px;}
.x6f_c01349{left:304.125000px;}
.xb4_c01349{left:311.910000px;}
.x3a_c01349{left:313.635000px;}
.x88_c01349{left:317.085000px;}
.x9f_c01349{left:320.550000px;}
.x30_c01349{left:327.450000px;}
.x42_c01349{left:330.045000px;}
.xa3_c01349{left:332.640000px;}
.xe_c01349{left:334.365000px;}
.xa6_c01349{left:342.150000px;}
.x1a_c01349{left:346.470000px;}
.x79_c01349{left:349.920000px;}
.xa9_c01349{left:352.515000px;}
.x4d_c01349{left:354.240000px;}
.x7a_c01349{left:359.430000px;}
.x3b_c01349{left:362.880000px;}
.x25_c01349{left:365.475000px;}
.x89_c01349{left:368.070000px;}
.x31_c01349{left:370.650000px;}
.xb7_c01349{left:374.970000px;}
.xf_c01349{left:376.710000px;}
.xa0_c01349{left:380.160000px;}
.x1b_c01349{left:386.205000px;}
.x66_c01349{left:391.395000px;}
.x99_c01349{left:393.120000px;}
.xa7_c01349{left:394.845000px;}
.x4e_c01349{left:397.440000px;}
.x67_c01349{left:402.630000px;}
.x95_c01349{left:410.400000px;}
.x7b_c01349{left:417.315000px;}
.x26_c01349{left:421.635000px;}
.x58_c01349{left:425.085000px;}
.x32_c01349{left:427.680000px;}
.x43_c01349{left:436.320000px;}
.x8a_c01349{left:443.235000px;}
.x59_c01349{left:444.960000px;}
.x1c_c01349{left:446.685000px;}
.x10_c01349{left:449.280000px;}
.x68_c01349{left:451.875000px;}
.xaa_c01349{left:455.325000px;}
.xb8_c01349{left:457.050000px;}
.x7c_c01349{left:462.240000px;}
.x11_c01349{left:464.835000px;}
.x69_c01349{left:466.560000px;}
.xbe_c01349{left:468.285000px;}
.x27_c01349{left:473.475000px;}
.x5a_c01349{left:475.200000px;}
.x4f_c01349{left:476.925000px;}
.x6a_c01349{left:478.650000px;}
.xab_c01349{left:480.390000px;}
.x1d_c01349{left:482.970000px;}
.xa1_c01349{left:484.710000px;}
.x8b_c01349{left:487.290000px;}
.x60_c01349{left:491.610000px;}
.x44_c01349{left:493.350000px;}
.x74_c01349{left:497.670000px;}
.x5b_c01349{left:499.395000px;}
.x4_c01349{left:503.715000px;}
.x61_c01349{left:508.890000px;}
.x96_c01349{left:511.485000px;}
.x5c_c01349{left:514.950000px;}
.x1e_c01349{left:519.270000px;}
.x3c_c01349{left:522.720000px;}
.x70_c01349{left:525.315000px;}
.x5_c01349{left:527.910000px;}
.x5d_c01349{left:531.360000px;}
.x50_c01349{left:534.810000px;}
.x45_c01349{left:536.550000px;}
.x28_c01349{left:542.595750px;}
.x8c_c01349{left:544.320000px;}
.x46_c01349{left:547.770000px;}
.xaf_c01349{left:560.730000px;}
.xbf_c01349{left:564.195000px;}
.x9a_c01349{left:569.370000px;}
.x12_c01349{left:573.690000px;}
.xa_c01349{left:576.285000px;}
.xb0_c01349{left:578.880000px;}
.x13_c01349{left:580.605000px;}
.x84_c01349{left:583.200000px;}
.x62_c01349{left:584.925000px;}
.x14_c01349{left:587.520000px;}
.x6_c01349{left:590.115000px;}
.xb1_c01349{left:591.840000px;}
.xa2_c01349{left:598.755000px;}
.x55_c01349{left:600.480000px;}
.x47_c01349{left:603.075000px;}
.x29_c01349{left:604.800000px;}
.x1f_c01349{left:608.250000px;}
.x2a_c01349{left:609.990000px;}
.x33_c01349{left:612.570000px;}
.x7_c01349{left:614.310000px;}
.x63_c01349{left:619.485000px;}
.x9b_c01349{left:626.400000px;}
.x71_c01349{left:629.850000px;}
.x7d_c01349{left:633.315000px;}
.xc5_c01349{left:635.910000px;}
.x3d_c01349{left:637.635000px;}
.xac_c01349{left:641.085000px;}
.x75_c01349{left:642.810000px;}
.x72_c01349{left:645.405000px;}
.x76_c01349{left:649.725000px;}
.x6b_c01349{left:651.450000px;}
.x34_c01349{left:654.045000px;}
.xcf_c01349{left:655.770000px;}
.x51_c01349{left:657.510000px;}
.xd0_c01349{left:659.235000px;}
.xb2_c01349{left:663.555000px;}
.xbd_c01349{left:665.280000px;}
.x52_c01349{left:667.005000px;}
.xc4_c01349{left:671.325000px;}
.x2b_c01349{left:673.050000px;}
.xba_c01349{left:674.790000px;}
.x91_c01349{left:678.240000px;}
.x85_c01349{left:679.965000px;}
.x15_c01349{left:683.430000px;}
.xcb_c01349{left:685.155000px;}
.x53_c01349{left:686.880000px;}
.x20_c01349{left:688.605000px;}
.x8d_c01349{left:692.070000px;}
.x3e_c01349{left:698.970000px;}
.x48_c01349{left:701.565000px;}
.xc0_c01349{left:706.755000px;}
.x16_c01349{left:708.480000px;}
.x6c_c01349{left:711.930000px;}
.xc7_c01349{left:713.670000px;}
.x5e_c01349{left:715.395000px;}
.x35_c01349{left:718.845000px;}
.x9c_c01349{left:720.570000px;}
.x17_c01349{left:726.630000px;}
.xcc_c01349{left:729.210000px;}
.x8e_c01349{left:730.950000px;}
.x5f_c01349{left:732.675000px;}
.xad_c01349{left:734.400000px;}
.xa4_c01349{left:737.850000px;}
.x64_c01349{left:739.590000px;}
.xa8_c01349{left:743.910000px;}
.x21_c01349{left:748.230000px;}
.x80_c01349{left:751.680000px;}
.x92_c01349{left:753.405000px;}
.x49_c01349{left:756.000000px;}
.x3f_c01349{left:758.595000px;}
.x2c_c01349{left:761.190000px;}
.x9d_c01349{left:762.915000px;}
.x7e_c01349{left:764.640000px;}
.xbb_c01349{left:766.365000px;}
.xb5_c01349{left:768.090000px;}
.xcd_c01349{left:771.555000px;}
.x36_c01349{left:774.150000px;}
.x65_c01349{left:777.600000px;}
.xc9_c01349{left:780.195000px;}
.x93_c01349{left:781.920000px;}
.x86_c01349{left:783.645000px;}
.x4a_c01349{left:787.965000px;}
.x40_c01349{left:794.010000px;}
.x2d_c01349{left:797.475000px;}
.x6d_c01349{left:799.200000px;}
.xc1_c01349{left:802.650000px;}
.x97_c01349{left:804.390000px;}
.xc8_c01349{left:806.115000px;}
.x37_c01349{left:809.565000px;}
.x77_c01349{left:812.160000px;}
.xc3_c01349{left:815.610000px;}
.x56_c01349{left:817.350000px;}
.x73_c01349{left:819.075000px;}
.xb3_c01349{left:822.525000px;}
.x22_c01349{left:825.120000px;}
.x54_c01349{left:829.440000px;}
.x57_c01349{left:832.890000px;}
.xc2_c01349{left:835.485000px;}
.x81_c01349{left:837.210000px;}
.xb_c01349{left:839.805000px;}
.x98_c01349{left:842.400000px;}
.x18_c01349{left:844.125000px;}
.x23_c01349{left:845.850000px;}
.xae_c01349{left:848.445000px;}
.xce_c01349{left:850.170000px;}
.x82_c01349{left:851.910000px;}
.x8f_c01349{left:854.490000px;}
.xca_c01349{left:856.230000px;}
.x83_c01349{left:857.955000px;}
.xa5_c01349{left:859.680000px;}
.xc6_c01349{left:861.405000px;}
.x38_c01349{left:863.130000px;}
.x7f_c01349{left:865.725000px;}
.x41_c01349{left:869.190000px;}
.x90_c01349{left:871.770000px;}
.x4b_c01349{left:876.090000px;}
.xb6_c01349{left:882.150000px;}
.x2e_c01349{left:883.875000px;}
.x87_c01349{left:885.600000px;}
.x9e_c01349{left:898.560000px;}
@media print{
.v1_c01349{vertical-align:-3.093333pt;}
.v0_c01349{vertical-align:0.000000pt;}
.ls0_c01349{letter-spacing:0.000000pt;}
.ws0_c01349{word-spacing:-13.288053pt;}
.ws1_c01349{word-spacing:0.000000pt;}
.fsa_c01349{font-size:3.072000pt;}
.fsb_c01349{font-size:5.333333pt;}
.fsc_c01349{font-size:6.133333pt;}
.fs8_c01349{font-size:9.226667pt;}
.fs1_c01349{font-size:12.266667pt;}
.fs15_c01349{font-size:15.360000pt;}
.fs0_c01349{font-size:18.453333pt;}
.fs2_c01349{font-size:21.493333pt;}
.fs10_c01349{font-size:24.586667pt;}
.fse_c01349{font-size:27.626667pt;}
.fs13_c01349{font-size:30.720000pt;}
.fs19_c01349{font-size:33.813333pt;}
.fs14_c01349{font-size:36.853333pt;}
.fs11_c01349{font-size:39.946667pt;}
.fsd_c01349{font-size:42.986667pt;}
.fs9_c01349{font-size:46.080000pt;}
.fs7_c01349{font-size:49.173333pt;}
.fs3_c01349{font-size:52.213333pt;}
.fs5_c01349{font-size:55.306667pt;}
.fs6_c01349{font-size:58.346667pt;}
.fs4_c01349{font-size:61.440000pt;}
.fs12_c01349{font-size:64.533333pt;}
.fs18_c01349{font-size:67.573333pt;}
.fs17_c01349{font-size:70.666667pt;}
.fsf_c01349{font-size:73.706667pt;}
.fs16_c01349{font-size:76.800000pt;}
.fs1a_c01349{font-size:79.893333pt;}
.y0_c01349{bottom:0.000000pt;}
.y11b_c01349{bottom:572.160000pt;}
.y11f_c01349{bottom:572.933333pt;}
.y11e_c01349{bottom:573.693333pt;}
.y11c_c01349{bottom:576.000000pt;}
.y11d_c01349{bottom:576.773333pt;}
.y119_c01349{bottom:586.746667pt;}
.y11a_c01349{bottom:587.520000pt;}
.y117_c01349{bottom:588.293333pt;}
.y114_c01349{bottom:589.053333pt;}
.y118_c01349{bottom:589.826667pt;}
.y116_c01349{bottom:591.360000pt;}
.y115_c01349{bottom:592.133333pt;}
.y113_c01349{bottom:597.506667pt;}
.y111_c01349{bottom:602.880000pt;}
.y10e_c01349{bottom:603.653333pt;}
.y10f_c01349{bottom:604.413333pt;}
.y112_c01349{bottom:605.186667pt;}
.y110_c01349{bottom:606.720000pt;}
.y10c_c01349{bottom:618.240000pt;}
.y10b_c01349{bottom:619.013333pt;}
.y10d_c01349{bottom:619.773333pt;}
.y109_c01349{bottom:620.546667pt;}
.y10a_c01349{bottom:622.080000pt;}
.y107_c01349{bottom:633.600000pt;}
.y108_c01349{bottom:634.373333pt;}
.y106_c01349{bottom:638.213333pt;}
.y105_c01349{bottom:650.493333pt;}
.y104_c01349{bottom:651.266667pt;}
.y103_c01349{bottom:653.573333pt;}
.y100_c01349{bottom:665.093333pt;}
.y101_c01349{bottom:666.626667pt;}
.y102_c01349{bottom:667.386667pt;}
.yff_c01349{bottom:668.160000pt;}
.yfe_c01349{bottom:678.906667pt;}
.yfc_c01349{bottom:679.680000pt;}
.yfb_c01349{bottom:680.453333pt;}
.yfd_c01349{bottom:681.986667pt;}
.yfa_c01349{bottom:685.053333pt;}
.yf9_c01349{bottom:686.586667pt;}
.yf8_c01349{bottom:690.426667pt;}
.yf6_c01349{bottom:695.813333pt;}
.yf5_c01349{bottom:698.106667pt;}
.yf7_c01349{bottom:699.653333pt;}
.yf1_c01349{bottom:711.173333pt;}
.yf3_c01349{bottom:711.933333pt;}
.yf0_c01349{bottom:712.706667pt;}
.yf2_c01349{bottom:715.013333pt;}
.yf4_c01349{bottom:720.386667pt;}
.yef_c01349{bottom:729.600000pt;}
.yee_c01349{bottom:730.373333pt;}
.yed_c01349{bottom:731.133333pt;}
.yec_c01349{bottom:742.653333pt;}
.ye9_c01349{bottom:743.426667pt;}
.yea_c01349{bottom:745.733333pt;}
.ye8_c01349{bottom:746.493333pt;}
.ye7_c01349{bottom:747.266667pt;}
.yeb_c01349{bottom:752.640000pt;}
.ye6_c01349{bottom:756.480000pt;}
.ye5_c01349{bottom:757.253333pt;}
.ye3_c01349{bottom:758.013333pt;}
.ye0_c01349{bottom:758.786667pt;}
.ydf_c01349{bottom:760.320000pt;}
.ye2_c01349{bottom:761.093333pt;}
.yde_c01349{bottom:761.853333pt;}
.ye1_c01349{bottom:762.626667pt;}
.ye4_c01349{bottom:763.386667pt;}
.ydc_c01349{bottom:774.906667pt;}
.yda_c01349{bottom:775.680000pt;}
.ydb_c01349{bottom:777.986667pt;}
.ydd_c01349{bottom:786.426667pt;}
.yd7_c01349{bottom:787.973333pt;}
.yd8_c01349{bottom:788.733333pt;}
.yd6_c01349{bottom:789.506667pt;}
.yd3_c01349{bottom:790.266667pt;}
.yd9_c01349{bottom:791.813333pt;}
.yd4_c01349{bottom:792.573333pt;}
.yd5_c01349{bottom:793.346667pt;}
.yd1_c01349{bottom:804.093333pt;}
.ycf_c01349{bottom:805.626667pt;}
.yd2_c01349{bottom:807.933333pt;}
.yd0_c01349{bottom:808.706667pt;}
.yce_c01349{bottom:809.466667pt;}
.yc8_c01349{bottom:820.986667pt;}
.yca_c01349{bottom:821.760000pt;}
.ycd_c01349{bottom:822.533333pt;}
.yc7_c01349{bottom:823.293333pt;}
.yc9_c01349{bottom:824.066667pt;}
.ycc_c01349{bottom:824.826667pt;}
.y121_c01349{bottom:825.600000pt;}
.ycb_c01349{bottom:826.373333pt;}
.y120_c01349{bottom:830.213333pt;}
.yc2_c01349{bottom:836.346667pt;}
.yc6_c01349{bottom:837.893333pt;}
.yc4_c01349{bottom:838.653333pt;}
.yc1_c01349{bottom:839.426667pt;}
.yc0_c01349{bottom:840.186667pt;}
.ybf_c01349{bottom:840.960000pt;}
.yc5_c01349{bottom:848.640000pt;}
.yc3_c01349{bottom:849.413333pt;}
.yba_c01349{bottom:851.706667pt;}
.yb9_c01349{bottom:852.480000pt;}
.ybc_c01349{bottom:853.253333pt;}
.yb8_c01349{bottom:854.013333pt;}
.ybb_c01349{bottom:854.786667pt;}
.ybd_c01349{bottom:855.546667pt;}
.ybe_c01349{bottom:865.533333pt;}
.yb1_c01349{bottom:867.066667pt;}
.yb5_c01349{bottom:867.840000pt;}
.yb6_c01349{bottom:868.613333pt;}
.yb3_c01349{bottom:869.373333pt;}
.yb2_c01349{bottom:870.146667pt;}
.yb4_c01349{bottom:870.906667pt;}
.yb7_c01349{bottom:876.293333pt;}
.yad_c01349{bottom:881.666667pt;}
.yab_c01349{bottom:882.426667pt;}
.yb0_c01349{bottom:883.200000pt;}
.yac_c01349{bottom:884.733333pt;}
.y7_c01349{bottom:885.506667pt;}
.yae_c01349{bottom:886.266667pt;}
.yaf_c01349{bottom:887.040000pt;}
.y8_c01349{bottom:890.880000pt;}
.ya9_c01349{bottom:897.026667pt;}
.ya4_c01349{bottom:897.786667pt;}
.ya2_c01349{bottom:898.560000pt;}
.yaa_c01349{bottom:899.333333pt;}
.ya5_c01349{bottom:900.093333pt;}
.ya8_c01349{bottom:900.866667pt;}
.ya3_c01349{bottom:901.626667pt;}
.ya6_c01349{bottom:902.400000pt;}
.ya7_c01349{bottom:903.933333pt;}
.ya0_c01349{bottom:912.386667pt;}
.y98_c01349{bottom:913.146667pt;}
.y9c_c01349{bottom:914.693333pt;}
.y9f_c01349{bottom:915.453333pt;}
.y9d_c01349{bottom:916.226667pt;}
.y9e_c01349{bottom:916.986667pt;}
.y9a_c01349{bottom:919.293333pt;}
.ya1_c01349{bottom:922.373333pt;}
.y9b_c01349{bottom:924.666667pt;}
.y96_c01349{bottom:927.746667pt;}
.y99_c01349{bottom:928.506667pt;}
.y90_c01349{bottom:929.280000pt;}
.y93_c01349{bottom:930.053333pt;}
.y95_c01349{bottom:930.813333pt;}
.y94_c01349{bottom:931.586667pt;}
.y97_c01349{bottom:932.346667pt;}
.y8f_c01349{bottom:933.120000pt;}
.y92_c01349{bottom:933.893333pt;}
.y91_c01349{bottom:942.333333pt;}
.y8d_c01349{bottom:943.106667pt;}
.y8c_c01349{bottom:945.413333pt;}
.y8e_c01349{bottom:946.946667pt;}
.y8b_c01349{bottom:947.706667pt;}
.y8a_c01349{bottom:948.480000pt;}
.y87_c01349{bottom:960.000000pt;}
.y82_c01349{bottom:960.773333pt;}
.y89_c01349{bottom:961.533333pt;}
.y83_c01349{bottom:962.306667pt;}
.y88_c01349{bottom:963.066667pt;}
.y84_c01349{bottom:963.840000pt;}
.y85_c01349{bottom:964.613333pt;}
.y86_c01349{bottom:966.906667pt;}
.y7f_c01349{bottom:974.586667pt;}
.y7b_c01349{bottom:975.360000pt;}
.y7d_c01349{bottom:976.133333pt;}
.y7c_c01349{bottom:977.666667pt;}
.y81_c01349{bottom:978.426667pt;}
.y80_c01349{bottom:979.200000pt;}
.y7a_c01349{bottom:979.973333pt;}
.y7e_c01349{bottom:980.733333pt;}
.y79_c01349{bottom:992.253333pt;}
.y75_c01349{bottom:994.560000pt;}
.y74_c01349{bottom:995.333333pt;}
.y76_c01349{bottom:996.093333pt;}
.y77_c01349{bottom:998.400000pt;}
.y78_c01349{bottom:999.933333pt;}
.y72_c01349{bottom:1003.013333pt;}
.y70_c01349{bottom:1003.773333pt;}
.y73_c01349{bottom:1006.080000pt;}
.y6c_c01349{bottom:1006.853333pt;}
.y6f_c01349{bottom:1007.613333pt;}
.y6e_c01349{bottom:1009.920000pt;}
.y71_c01349{bottom:1010.693333pt;}
.y6d_c01349{bottom:1011.453333pt;}
.y6a_c01349{bottom:1022.973333pt;}
.y67_c01349{bottom:1024.506667pt;}
.y65_c01349{bottom:1025.280000pt;}
.y69_c01349{bottom:1026.053333pt;}
.y66_c01349{bottom:1027.586667pt;}
.y68_c01349{bottom:1029.120000pt;}
.y6b_c01349{bottom:1036.800000pt;}
.y60_c01349{bottom:1037.573333pt;}
.y63_c01349{bottom:1038.333333pt;}
.y64_c01349{bottom:1039.866667pt;}
.y62_c01349{bottom:1040.640000pt;}
.y5f_c01349{bottom:1042.173333pt;}
.y61_c01349{bottom:1042.946667pt;}
.y5d_c01349{bottom:1052.160000pt;}
.y5c_c01349{bottom:1053.693333pt;}
.y5b_c01349{bottom:1055.226667pt;}
.y5a_c01349{bottom:1056.000000pt;}
.y59_c01349{bottom:1056.773333pt;}
.y57_c01349{bottom:1057.533333pt;}
.y58_c01349{bottom:1058.306667pt;}
.y5e_c01349{bottom:1061.373333pt;}
.y50_c01349{bottom:1069.053333pt;}
.y56_c01349{bottom:1069.826667pt;}
.y55_c01349{bottom:1070.586667pt;}
.y51_c01349{bottom:1071.360000pt;}
.y54_c01349{bottom:1072.893333pt;}
.y52_c01349{bottom:1073.666667pt;}
.y53_c01349{bottom:1074.426667pt;}
.y48_c01349{bottom:1084.413333pt;}
.y4e_c01349{bottom:1085.946667pt;}
.y4d_c01349{bottom:1086.720000pt;}
.y4b_c01349{bottom:1087.493333pt;}
.y4f_c01349{bottom:1088.253333pt;}
.y49_c01349{bottom:1089.026667pt;}
.y4a_c01349{bottom:1089.786667pt;}
.y4c_c01349{bottom:1095.173333pt;}
.y45_c01349{bottom:1101.306667pt;}
.y47_c01349{bottom:1103.613333pt;}
.y43_c01349{bottom:1104.386667pt;}
.y44_c01349{bottom:1105.146667pt;}
.y46_c01349{bottom:1112.826667pt;}
.y3c_c01349{bottom:1115.133333pt;}
.y3f_c01349{bottom:1115.906667pt;}
.y3e_c01349{bottom:1116.666667pt;}
.y42_c01349{bottom:1117.440000pt;}
.y40_c01349{bottom:1118.973333pt;}
.y3d_c01349{bottom:1119.746667pt;}
.y41_c01349{bottom:1120.506667pt;}
.y3b_c01349{bottom:1128.186667pt;}
.y39_c01349{bottom:1131.266667pt;}
.y35_c01349{bottom:1132.026667pt;}
.y3a_c01349{bottom:1132.800000pt;}
.y33_c01349{bottom:1134.333333pt;}
.y38_c01349{bottom:1135.106667pt;}
.y34_c01349{bottom:1135.866667pt;}
.y36_c01349{bottom:1136.640000pt;}
.y37_c01349{bottom:1137.413333pt;}
.y32_c01349{bottom:1145.853333pt;}
.y31_c01349{bottom:1146.626667pt;}
.y30_c01349{bottom:1147.386667pt;}
.y2b_c01349{bottom:1149.693333pt;}
.y2c_c01349{bottom:1150.466667pt;}
.y2d_c01349{bottom:1151.226667pt;}
.y2f_c01349{bottom:1152.000000pt;}
.y2e_c01349{bottom:1152.773333pt;}
.y26_c01349{bottom:1161.986667pt;}
.y28_c01349{bottom:1162.746667pt;}
.y2a_c01349{bottom:1163.520000pt;}
.y24_c01349{bottom:1165.053333pt;}
.y29_c01349{bottom:1165.826667pt;}
.y25_c01349{bottom:1166.586667pt;}
.y27_c01349{bottom:1167.360000pt;}
.y1d_c01349{bottom:1175.813333pt;}
.y1f_c01349{bottom:1176.573333pt;}
.y1b_c01349{bottom:1177.346667pt;}
.y1c_c01349{bottom:1178.106667pt;}
.y20_c01349{bottom:1179.653333pt;}
.y23_c01349{bottom:1180.413333pt;}
.y22_c01349{bottom:1181.186667pt;}
.y21_c01349{bottom:1181.946667pt;}
.y1e_c01349{bottom:1188.866667pt;}
.y13_c01349{bottom:1193.466667pt;}
.y1a_c01349{bottom:1194.240000pt;}
.y16_c01349{bottom:1195.013333pt;}
.y11_c01349{bottom:1195.773333pt;}
.y12_c01349{bottom:1196.546667pt;}
.y14_c01349{bottom:1198.080000pt;}
.y17_c01349{bottom:1198.853333pt;}
.y15_c01349{bottom:1199.613333pt;}
.y18_c01349{bottom:1203.453333pt;}
.y19_c01349{bottom:1206.533333pt;}
.y10_c01349{bottom:1208.826667pt;}
.yf_c01349{bottom:1211.133333pt;}
.ya_c01349{bottom:1211.906667pt;}
.yb_c01349{bottom:1212.666667pt;}
.yc_c01349{bottom:1213.440000pt;}
.ye_c01349{bottom:1216.506667pt;}
.yd_c01349{bottom:1221.893333pt;}
.y9_c01349{bottom:1227.266667pt;}
.y6_c01349{bottom:1236.480000pt;}
.y5_c01349{bottom:1237.253333pt;}
.y4_c01349{bottom:1238.786667pt;}
.y3_c01349{bottom:1264.133333pt;}
.y2_c01349{bottom:1266.426667pt;}
.y1_c01349{bottom:1298.693333pt;}
.hc_c01349{height:2.764500pt;}
.hd_c01349{height:4.799479pt;}
.he_c01349{height:5.519401pt;}
.ha_c01349{height:8.303099pt;}
.h3_c01349{height:11.038802pt;}
.h17_c01349{height:13.822500pt;}
.h2_c01349{height:16.606198pt;}
.h4_c01349{height:19.341901pt;}
.h12_c01349{height:22.125599pt;}
.h10_c01349{height:24.861302pt;}
.h15_c01349{height:27.645000pt;}
.h1b_c01349{height:30.428698pt;}
.h16_c01349{height:33.164401pt;}
.h13_c01349{height:35.948099pt;}
.hf_c01349{height:38.683802pt;}
.hb_c01349{height:41.467500pt;}
.h9_c01349{height:44.251198pt;}
.h5_c01349{height:46.986901pt;}
.h7_c01349{height:49.770599pt;}
.h8_c01349{height:52.506302pt;}
.h6_c01349{height:55.290000pt;}
.h14_c01349{height:58.073698pt;}
.h1a_c01349{height:60.809401pt;}
.h19_c01349{height:63.593099pt;}
.h11_c01349{height:66.328802pt;}
.h18_c01349{height:69.112500pt;}
.h1c_c01349{height:71.896198pt;}
.h1_c01349{height:1345.333333pt;}
.h0_c01349{height:1345.533333pt;}
.w0_c01349{width:959.226667pt;}
.w1_c01349{width:959.333333pt;}
.x0_c01349{left:0.000000pt;}
.xd1_c01349{left:11.520000pt;}
.xd2_c01349{left:21.506667pt;}
.x8_c01349{left:38.400000pt;}
.xd3_c01349{left:43.773333pt;}
.x9_c01349{left:198.146667pt;}
.xb9_c01349{left:221.186667pt;}
.x78_c01349{left:222.720000pt;}
.x2f_c01349{left:224.253333pt;}
.xc_c01349{left:226.560000pt;}
.x4c_c01349{left:229.626667pt;}
.x1_c01349{left:236.546667pt;}
.x94_c01349{left:243.453333pt;}
.x6e_c01349{left:244.986667pt;}
.xd_c01349{left:246.533333pt;}
.x39_c01349{left:248.826667pt;}
.x24_c01349{left:251.133333pt;}
.xbc_c01349{left:252.666667pt;}
.x2_c01349{left:257.280000pt;}
.x19_c01349{left:264.960000pt;}
.x3_c01349{left:268.026667pt;}
.x6f_c01349{left:270.333333pt;}
.xb4_c01349{left:277.253333pt;}
.x3a_c01349{left:278.786667pt;}
.x88_c01349{left:281.853333pt;}
.x9f_c01349{left:284.933333pt;}
.x30_c01349{left:291.066667pt;}
.x42_c01349{left:293.373333pt;}
.xa3_c01349{left:295.680000pt;}
.xe_c01349{left:297.213333pt;}
.xa6_c01349{left:304.133333pt;}
.x1a_c01349{left:307.973333pt;}
.x79_c01349{left:311.040000pt;}
.xa9_c01349{left:313.346667pt;}
.x4d_c01349{left:314.880000pt;}
.x7a_c01349{left:319.493333pt;}
.x3b_c01349{left:322.560000pt;}
.x25_c01349{left:324.866667pt;}
.x89_c01349{left:327.173333pt;}
.x31_c01349{left:329.466667pt;}
.xb7_c01349{left:333.306667pt;}
.xf_c01349{left:334.853333pt;}
.xa0_c01349{left:337.920000pt;}
.x1b_c01349{left:343.293333pt;}
.x66_c01349{left:347.906667pt;}
.x99_c01349{left:349.440000pt;}
.xa7_c01349{left:350.973333pt;}
.x4e_c01349{left:353.280000pt;}
.x67_c01349{left:357.893333pt;}
.x95_c01349{left:364.800000pt;}
.x7b_c01349{left:370.946667pt;}
.x26_c01349{left:374.786667pt;}
.x58_c01349{left:377.853333pt;}
.x32_c01349{left:380.160000pt;}
.x43_c01349{left:387.840000pt;}
.x8a_c01349{left:393.986667pt;}
.x59_c01349{left:395.520000pt;}
.x1c_c01349{left:397.053333pt;}
.x10_c01349{left:399.360000pt;}
.x68_c01349{left:401.666667pt;}
.xaa_c01349{left:404.733333pt;}
.xb8_c01349{left:406.266667pt;}
.x7c_c01349{left:410.880000pt;}
.x11_c01349{left:413.186667pt;}
.x69_c01349{left:414.720000pt;}
.xbe_c01349{left:416.253333pt;}
.x27_c01349{left:420.866667pt;}
.x5a_c01349{left:422.400000pt;}
.x4f_c01349{left:423.933333pt;}
.x6a_c01349{left:425.466667pt;}
.xab_c01349{left:427.013333pt;}
.x1d_c01349{left:429.306667pt;}
.xa1_c01349{left:430.853333pt;}
.x8b_c01349{left:433.146667pt;}
.x60_c01349{left:436.986667pt;}
.x44_c01349{left:438.533333pt;}
.x74_c01349{left:442.373333pt;}
.x5b_c01349{left:443.906667pt;}
.x4_c01349{left:447.746667pt;}
.x61_c01349{left:452.346667pt;}
.x96_c01349{left:454.653333pt;}
.x5c_c01349{left:457.733333pt;}
.x1e_c01349{left:461.573333pt;}
.x3c_c01349{left:464.640000pt;}
.x70_c01349{left:466.946667pt;}
.x5_c01349{left:469.253333pt;}
.x5d_c01349{left:472.320000pt;}
.x50_c01349{left:475.386667pt;}
.x45_c01349{left:476.933333pt;}
.x28_c01349{left:482.307333pt;}
.x8c_c01349{left:483.840000pt;}
.x46_c01349{left:486.906667pt;}
.xaf_c01349{left:498.426667pt;}
.xbf_c01349{left:501.506667pt;}
.x9a_c01349{left:506.106667pt;}
.x12_c01349{left:509.946667pt;}
.xa_c01349{left:512.253333pt;}
.xb0_c01349{left:514.560000pt;}
.x13_c01349{left:516.093333pt;}
.x84_c01349{left:518.400000pt;}
.x62_c01349{left:519.933333pt;}
.x14_c01349{left:522.240000pt;}
.x6_c01349{left:524.546667pt;}
.xb1_c01349{left:526.080000pt;}
.xa2_c01349{left:532.226667pt;}
.x55_c01349{left:533.760000pt;}
.x47_c01349{left:536.066667pt;}
.x29_c01349{left:537.600000pt;}
.x1f_c01349{left:540.666667pt;}
.x2a_c01349{left:542.213333pt;}
.x33_c01349{left:544.506667pt;}
.x7_c01349{left:546.053333pt;}
.x63_c01349{left:550.653333pt;}
.x9b_c01349{left:556.800000pt;}
.x71_c01349{left:559.866667pt;}
.x7d_c01349{left:562.946667pt;}
.xc5_c01349{left:565.253333pt;}
.x3d_c01349{left:566.786667pt;}
.xac_c01349{left:569.853333pt;}
.x75_c01349{left:571.386667pt;}
.x72_c01349{left:573.693333pt;}
.x76_c01349{left:577.533333pt;}
.x6b_c01349{left:579.066667pt;}
.x34_c01349{left:581.373333pt;}
.xcf_c01349{left:582.906667pt;}
.x51_c01349{left:584.453333pt;}
.xd0_c01349{left:585.986667pt;}
.xb2_c01349{left:589.826667pt;}
.xbd_c01349{left:591.360000pt;}
.x52_c01349{left:592.893333pt;}
.xc4_c01349{left:596.733333pt;}
.x2b_c01349{left:598.266667pt;}
.xba_c01349{left:599.813333pt;}
.x91_c01349{left:602.880000pt;}
.x85_c01349{left:604.413333pt;}
.x15_c01349{left:607.493333pt;}
.xcb_c01349{left:609.026667pt;}
.x53_c01349{left:610.560000pt;}
.x20_c01349{left:612.093333pt;}
.x8d_c01349{left:615.173333pt;}
.x3e_c01349{left:621.306667pt;}
.x48_c01349{left:623.613333pt;}
.xc0_c01349{left:628.226667pt;}
.x16_c01349{left:629.760000pt;}
.x6c_c01349{left:632.826667pt;}
.xc7_c01349{left:634.373333pt;}
.x5e_c01349{left:635.906667pt;}
.x35_c01349{left:638.973333pt;}
.x9c_c01349{left:640.506667pt;}
.x17_c01349{left:645.893333pt;}
.xcc_c01349{left:648.186667pt;}
.x8e_c01349{left:649.733333pt;}
.x5f_c01349{left:651.266667pt;}
.xad_c01349{left:652.800000pt;}
.xa4_c01349{left:655.866667pt;}
.x64_c01349{left:657.413333pt;}
.xa8_c01349{left:661.253333pt;}
.x21_c01349{left:665.093333pt;}
.x80_c01349{left:668.160000pt;}
.x92_c01349{left:669.693333pt;}
.x49_c01349{left:672.000000pt;}
.x3f_c01349{left:674.306667pt;}
.x2c_c01349{left:676.613333pt;}
.x9d_c01349{left:678.146667pt;}
.x7e_c01349{left:679.680000pt;}
.xbb_c01349{left:681.213333pt;}
.xb5_c01349{left:682.746667pt;}
.xcd_c01349{left:685.826667pt;}
.x36_c01349{left:688.133333pt;}
.x65_c01349{left:691.200000pt;}
.xc9_c01349{left:693.506667pt;}
.x93_c01349{left:695.040000pt;}
.x86_c01349{left:696.573333pt;}
.x4a_c01349{left:700.413333pt;}
.x40_c01349{left:705.786667pt;}
.x2d_c01349{left:708.866667pt;}
.x6d_c01349{left:710.400000pt;}
.xc1_c01349{left:713.466667pt;}
.x97_c01349{left:715.013333pt;}
.xc8_c01349{left:716.546667pt;}
.x37_c01349{left:719.613333pt;}
.x77_c01349{left:721.920000pt;}
.xc3_c01349{left:724.986667pt;}
.x56_c01349{left:726.533333pt;}
.x73_c01349{left:728.066667pt;}
.xb3_c01349{left:731.133333pt;}
.x22_c01349{left:733.440000pt;}
.x54_c01349{left:737.280000pt;}
.x57_c01349{left:740.346667pt;}
.xc2_c01349{left:742.653333pt;}
.x81_c01349{left:744.186667pt;}
.xb_c01349{left:746.493333pt;}
.x98_c01349{left:748.800000pt;}
.x18_c01349{left:750.333333pt;}
.x23_c01349{left:751.866667pt;}
.xae_c01349{left:754.173333pt;}
.xce_c01349{left:755.706667pt;}
.x82_c01349{left:757.253333pt;}
.x8f_c01349{left:759.546667pt;}
.xca_c01349{left:761.093333pt;}
.x83_c01349{left:762.626667pt;}
.xa5_c01349{left:764.160000pt;}
.xc6_c01349{left:765.693333pt;}
.x38_c01349{left:767.226667pt;}
.x7f_c01349{left:769.533333pt;}
.x41_c01349{left:772.613333pt;}
.x90_c01349{left:774.906667pt;}
.x4b_c01349{left:778.746667pt;}
.xb6_c01349{left:784.133333pt;}
.x2e_c01349{left:785.666667pt;}
.x87_c01349{left:787.200000pt;}
.x9e_c01349{left:798.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_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_140bc0d79f52943b18b1c56c.woff2')format("woff");}.ff1_c01350{font-family:ff1_c01350;line-height:1.109863;font-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_c01350{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01350{transform:matrix(0.023800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.023800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.023800,0.000000,0.000000,0.250000,0,0);}
.mca_c01350{transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.027775,0.000000,0.000000,0.250000,0,0);}
.mcb_c01350{transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);}
.m5e_c01350{transform:matrix(0.099000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.099000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.099000,0.000000,0.000000,0.250000,0,0);}
.mf9_c01350{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.mc7_c01350{transform:matrix(0.113600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113600,0.000000,0.000000,0.250000,0,0);}
.mbf_c01350{transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121925,0.000000,0.000000,0.250000,0,0);}
.m6b_c01350{transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);}
.mee_c01350{transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123250,0.000000,0.000000,0.250000,0,0);}
.m39_c01350{transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125050,0.000000,0.000000,0.250000,0,0);}
.m73_c01350{transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136125,0.000000,0.000000,0.250000,0,0);}
.m88_c01350{transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139250,0.000000,0.000000,0.250000,0,0);}
.m7e_c01350{transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);}
.mc_c01350{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb9_c01350{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m46_c01350{transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152625,0.000000,0.000000,0.250000,0,0);}
.m45_c01350{transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152725,0.000000,0.000000,0.250000,0,0);}
.mb5_c01350{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);}
.m32_c01350{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);}
.mf2_c01350{transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158575,0.000000,0.000000,0.250000,0,0);}
.m8e_c01350{transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160225,0.000000,0.000000,0.250000,0,0);}
.m4f_c01350{transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161650,0.000000,0.000000,0.250000,0,0);}
.mb3_c01350{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);}
.mce_c01350{transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);}
.m51_c01350{transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);}
.m63_c01350{transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165300,0.000000,0.000000,0.250000,0,0);}
.mf8_c01350{transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167425,0.000000,0.000000,0.250000,0,0);}
.mbc_c01350{transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01350{transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167625,0.000000,0.000000,0.250000,0,0);}
.mc8_c01350{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m4_c01350{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m9_c01350{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);}
.m65_c01350{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);}
.m9b_c01350{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.mef_c01350{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.m7c_c01350{transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178075,0.000000,0.000000,0.250000,0,0);}
.m33_c01350{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.mba_c01350{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.mc1_c01350{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.m24_c01350{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);}
.mf6_c01350{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);}
.m38_c01350{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);}
.m62_c01350{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m55_c01350{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);}
.mac_c01350{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);}
.m1_c01350{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);}
.m99_c01350{transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191050,0.000000,0.000000,0.250000,0,0);}
.m6e_c01350{transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192625,0.000000,0.000000,0.250000,0,0);}
.mbd_c01350{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m90_c01350{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.mcc_c01350{transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194625,0.000000,0.000000,0.250000,0,0);}
.mb6_c01350{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.m64_c01350{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);}
.m78_c01350{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.m48_c01350{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.ma1_c01350{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);}
.m9a_c01350{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);}
.me2_c01350{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m6_c01350{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);}
.mf4_c01350{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);}
.md8_c01350{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.maf_c01350{transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200625,0.000000,0.000000,0.250000,0,0);}
.m40_c01350{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);}
.mb2_c01350{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.ma6_c01350{transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201800,0.000000,0.000000,0.250000,0,0);}
.mec_c01350{transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202025,0.000000,0.000000,0.250000,0,0);}
.m9f_c01350{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.me_c01350{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);}
.mcd_c01350{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.meb_c01350{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.mdf_c01350{transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204150,0.000000,0.000000,0.250000,0,0);}
.mb1_c01350{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);}
.mf3_c01350{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m4d_c01350{transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206225,0.000000,0.000000,0.250000,0,0);}
.m69_c01350{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);}
.m9e_c01350{transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);}
.ma9_c01350{transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207950,0.000000,0.000000,0.250000,0,0);}
.m5b_c01350{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);}
.mda_c01350{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);}
.m89_c01350{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);}
.m91_c01350{transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210750,0.000000,0.000000,0.250000,0,0);}
.mc3_c01350{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);}
.m1e_c01350{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);}
.m7b_c01350{transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211375,0.000000,0.000000,0.250000,0,0);}
.m53_c01350{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);}
.m93_c01350{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);}
.ma5_c01350{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);}
.m92_c01350{transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);}
.m4a_c01350{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);}
.m8b_c01350{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);}
.mf7_c01350{transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);}
.m74_c01350{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.mcf_c01350{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);}
.me7_c01350{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m0_c01350{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);}
.mea_c01350{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);}
.mae_c01350{transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214925,0.000000,0.000000,0.250000,0,0);}
.mb0_c01350{transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215000,0.000000,0.000000,0.250000,0,0);}
.md2_c01350{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);}
.me1_c01350{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);}
.m26_c01350{transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217300,0.000000,0.000000,0.250000,0,0);}
.m27_c01350{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.me4_c01350{transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);}
.me3_c01350{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);}
.m8c_c01350{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.mb8_c01350{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);}
.m7a_c01350{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.mdc_c01350{transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);}
.md3_c01350{transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221800,0.000000,0.000000,0.250000,0,0);}
.mf1_c01350{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m28_c01350{transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222275,0.000000,0.000000,0.250000,0,0);}
.mc6_c01350{transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222325,0.000000,0.000000,0.250000,0,0);}
.m20_c01350{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);}
.m2f_c01350{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);}
.m41_c01350{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);}
.md9_c01350{transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224250,0.000000,0.000000,0.250000,0,0);}
.m56_c01350{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);}
.md1_c01350{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);}
.m47_c01350{transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225750,0.000000,0.000000,0.250000,0,0);}
.mc5_c01350{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);}
.m3e_c01350{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.mf5_c01350{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);}
.me5_c01350{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m7d_c01350{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);}
.m54_c01350{transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228150,0.000000,0.000000,0.250000,0,0);}
.m2d_c01350{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.m9c_c01350{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);}
.m6c_c01350{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);}
.med_c01350{transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);}
.m8d_c01350{transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231500,0.000000,0.000000,0.250000,0,0);}
.ma0_c01350{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);}
.m75_c01350{transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232775,0.000000,0.000000,0.250000,0,0);}
.mbe_c01350{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);}
.md7_c01350{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);}
.ma8_c01350{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);}
.m31_c01350{transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234575,0.000000,0.000000,0.250000,0,0);}
.mc2_c01350{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);}
.m96_c01350{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.mab_c01350{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.mc4_c01350{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);}
.ma2_c01350{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.me6_c01350{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);}
.m68_c01350{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);}
.m50_c01350{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.mde_c01350{transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241025,0.000000,0.000000,0.250000,0,0);}
.m23_c01350{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);}
.m97_c01350{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);}
.md4_c01350{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.md0_c01350{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);}
.mc0_c01350{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);}
.mb4_c01350{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);}
.m7f_c01350{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);}
.m95_c01350{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m36_c01350{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);}
.m2b_c01350{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);}
.m72_c01350{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);}
.m6f_c01350{transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249225,0.000000,0.000000,0.250000,0,0);}
.m8a_c01350{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);}
.ma7_c01350{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);}
.m5f_c01350{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);}
.m79_c01350{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m49_c01350{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);}
.m37_c01350{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);}
.m43_c01350{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);}
.m18_c01350{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);}
.m3b_c01350{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01350{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7_c01350{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m34_c01350{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);}
.m22_c01350{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01350{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);}
.m35_c01350{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);}
.m11_c01350{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m12_c01350{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_c01350{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m29_c01350{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01350{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);}
.m87_c01350{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m13_c01350{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);}
.m5_c01350{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);}
.md_c01350{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m21_c01350{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m60_c01350{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);}
.mb_c01350{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.mf_c01350{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m19_c01350{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);}
.m70_c01350{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m94_c01350{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01350{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01350{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01350{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m61_c01350{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m76_c01350{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01350{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);}
.m57_c01350{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.mb7_c01350{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m10_c01350{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m15_c01350{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m58_c01350{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);}
.ma_c01350{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m98_c01350{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);}
.ma4_c01350{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m44_c01350{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01350{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mad_c01350{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01350{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);}
.m5c_c01350{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.me9_c01350{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m86_c01350{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);}
.m17_c01350{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m16_c01350{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);}
.m1a_c01350{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01350{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01350{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m2a_c01350{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m77_c01350{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m30_c01350{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);}
.m59_c01350{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);}
.mdb_c01350{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);}
.md5_c01350{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01350{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m80_c01350{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m67_c01350{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m3d_c01350{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01350{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m14_c01350{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);}
.m81_c01350{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m42_c01350{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.mfa_c01350{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m84_c01350{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m83_c01350{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m66_c01350{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.me8_c01350{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01350{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mbb_c01350{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m52_c01350{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);}
.m4b_c01350{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m9d_c01350{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mf0_c01350{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m85_c01350{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.me0_c01350{transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.567500,0.000000,0.000000,0.250000,0,0);}
.md6_c01350{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m25_c01350{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m8_c01350{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mfb_c01350{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.mdd_c01350{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m71_c01350{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m2_c01350{transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.942500,0.000000,0.000000,0.250000,0,0);}
.m6d_c01350{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.maa_c01350{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01350{transform:matrix(8.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.565000,0.000000,0.000000,0.250000,0,0);}
.v2_c01350{vertical-align:-3.480000px;}
.v0_c01350{vertical-align:0.000000px;}
.v1_c01350{vertical-align:3.480000px;}
.ls3_c01350{letter-spacing:0.000000px;}
.ls2_c01350{letter-spacing:17.377620px;}
.ls0_c01350{letter-spacing:23.610720px;}
.ls1_c01350{letter-spacing:45.148740px;}
.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;}
}
.ws1_c01350{word-spacing:-17.620934px;}
.ws0_c01350{word-spacing:-16.870096px;}
.ws2_c01350{word-spacing:-10.238296px;}
.ws3_c01350{word-spacing:0.000000px;}
.fc0_c01350{color:transparent;}
.fs15_c01350{font-size:3.456000px;}
.fs9_c01350{font-size:6.000000px;}
.fs17_c01350{font-size:6.900000px;}
.fs10_c01350{font-size:10.380000px;}
.fsc_c01350{font-size:13.800000px;}
.fs16_c01350{font-size:17.280000px;}
.fs2_c01350{font-size:20.760000px;}
.fs19_c01350{font-size:24.180000px;}
.fsf_c01350{font-size:27.660000px;}
.fs0_c01350{font-size:31.080000px;}
.fs8_c01350{font-size:34.560000px;}
.fse_c01350{font-size:38.040000px;}
.fs12_c01350{font-size:41.460000px;}
.fsb_c01350{font-size:44.940000px;}
.fs4_c01350{font-size:48.360000px;}
.fs6_c01350{font-size:51.840000px;}
.fs14_c01350{font-size:55.320000px;}
.fsa_c01350{font-size:58.740000px;}
.fsd_c01350{font-size:62.220000px;}
.fs1_c01350{font-size:65.640000px;}
.fs11_c01350{font-size:69.120000px;}
.fs5_c01350{font-size:72.600000px;}
.fs13_c01350{font-size:76.020000px;}
.fs3_c01350{font-size:79.500000px;}
.fs7_c01350{font-size:82.920000px;}
.fs1b_c01350{font-size:86.400000px;}
.fs18_c01350{font-size:89.880000px;}
.fs1a_c01350{font-size:93.300000px;}
.y0_c01350{bottom:0.000000px;}
.y104_c01350{bottom:495.075000px;}
.y103_c01350{bottom:495.930000px;}
.y100_c01350{bottom:511.485000px;}
.y102_c01350{bottom:512.355000px;}
.y101_c01350{bottom:513.210000px;}
.yfa_c01350{bottom:544.320000px;}
.yf7_c01350{bottom:546.045000px;}
.yf8_c01350{bottom:546.915000px;}
.yf9_c01350{bottom:548.640000px;}
.yfb_c01350{bottom:559.005000px;}
.yf3_c01350{bottom:561.600000px;}
.yf5_c01350{bottom:562.470000px;}
.yf6_c01350{bottom:563.325000px;}
.y138_c01350{bottom:564.195000px;}
.yf4_c01350{bottom:565.050000px;}
.yf1_c01350{bottom:565.920000px;}
.yf2_c01350{bottom:566.790000px;}
.yed_c01350{bottom:578.880000px;}
.yee_c01350{bottom:579.750000px;}
.yf0_c01350{bottom:582.330000px;}
.yef_c01350{bottom:583.200000px;}
.yff_c01350{bottom:585.795000px;}
.yfe_c01350{bottom:590.970000px;}
.y137_c01350{bottom:593.565000px;}
.y133_c01350{bottom:594.435000px;}
.yeb_c01350{bottom:595.290000px;}
.yea_c01350{bottom:596.160000px;}
.ye8_c01350{bottom:597.885000px;}
.y134_c01350{bottom:598.755000px;}
.yec_c01350{bottom:599.610000px;}
.ye9_c01350{bottom:601.350000px;}
.yfc_c01350{bottom:606.525000px;}
.y136_c01350{bottom:607.395000px;}
.y135_c01350{bottom:609.990000px;}
.y131_c01350{bottom:610.845000px;}
.yfd_c01350{bottom:612.570000px;}
.y132_c01350{bottom:613.440000px;}
.ye7_c01350{bottom:614.310000px;}
.ye2_c01350{bottom:615.165000px;}
.ye5_c01350{bottom:616.890000px;}
.ye4_c01350{bottom:617.760000px;}
.ye3_c01350{bottom:618.630000px;}
.ye6_c01350{bottom:619.485000px;}
.ye1_c01350{bottom:623.805000px;}
.y12e_c01350{bottom:628.995000px;}
.ye0_c01350{bottom:629.850000px;}
.ydd_c01350{bottom:630.720000px;}
.yde_c01350{bottom:631.590000px;}
.ydf_c01350{bottom:632.445000px;}
.y12f_c01350{bottom:633.315000px;}
.y130_c01350{bottom:634.170000px;}
.ydc_c01350{bottom:636.765000px;}
.yda_c01350{bottom:648.000000px;}
.y12d_c01350{bottom:649.725000px;}
.ydb_c01350{bottom:650.595000px;}
.yd7_c01350{bottom:651.450000px;}
.yd8_c01350{bottom:652.320000px;}
.yd9_c01350{bottom:653.190000px;}
.yd6_c01350{bottom:663.555000px;}
.yd4_c01350{bottom:665.280000px;}
.y12c_c01350{bottom:667.005000px;}
.yd2_c01350{bottom:667.875000px;}
.yd5_c01350{bottom:668.730000px;}
.yd3_c01350{bottom:671.325000px;}
.ycf_c01350{bottom:680.835000px;}
.yd0_c01350{bottom:682.560000px;}
.y12b_c01350{bottom:683.430000px;}
.yd1_c01350{bottom:684.285000px;}
.yce_c01350{bottom:686.010000px;}
.ycd_c01350{bottom:686.880000px;}
.ycc_c01350{bottom:690.330000px;}
.y128_c01350{bottom:695.520000px;}
.y12a_c01350{bottom:697.245000px;}
.ycb_c01350{bottom:698.115000px;}
.yc9_c01350{bottom:699.840000px;}
.yca_c01350{bottom:701.565000px;}
.y129_c01350{bottom:702.435000px;}
.yc8_c01350{bottom:705.030000px;}
.y126_c01350{bottom:715.395000px;}
.yc6_c01350{bottom:716.250000px;}
.yc2_c01350{bottom:718.845000px;}
.yc7_c01350{bottom:720.570000px;}
.yc5_c01350{bottom:721.440000px;}
.yc4_c01350{bottom:722.310000px;}
.yc3_c01350{bottom:723.165000px;}
.y127_c01350{bottom:730.080000px;}
.y125_c01350{bottom:731.805000px;}
.y124_c01350{bottom:733.530000px;}
.yc0_c01350{bottom:736.995000px;}
.yc1_c01350{bottom:737.850000px;}
.ybd_c01350{bottom:738.720000px;}
.ybf_c01350{bottom:739.590000px;}
.ybe_c01350{bottom:740.445000px;}
.y123_c01350{bottom:750.810000px;}
.ybc_c01350{bottom:751.680000px;}
.yb7_c01350{bottom:753.405000px;}
.ybb_c01350{bottom:754.275000px;}
.yba_c01350{bottom:756.000000px;}
.yb9_c01350{bottom:756.870000px;}
.yb8_c01350{bottom:758.595000px;}
.y122_c01350{bottom:767.235000px;}
.y121_c01350{bottom:768.090000px;}
.y120_c01350{bottom:773.280000px;}
.yb6_c01350{bottom:774.150000px;}
.y11e_c01350{bottom:783.645000px;}
.y11f_c01350{bottom:785.370000px;}
.y11d_c01350{bottom:787.110000px;}
.y11c_c01350{bottom:790.560000px;}
.yb5_c01350{bottom:791.430000px;}
.yb4_c01350{bottom:792.285000px;}
.y11b_c01350{bottom:800.925000px;}
.y119_c01350{bottom:801.795000px;}
.y118_c01350{bottom:802.650000px;}
.y117_c01350{bottom:804.390000px;}
.y11a_c01350{bottom:806.115000px;}
.yb3_c01350{bottom:807.840000px;}
.yb2_c01350{bottom:808.710000px;}
.yb1_c01350{bottom:809.565000px;}
.y114_c01350{bottom:819.075000px;}
.y113_c01350{bottom:822.525000px;}
.y116_c01350{bottom:823.395000px;}
.y115_c01350{bottom:824.250000px;}
.y112_c01350{bottom:836.355000px;}
.y10f_c01350{bottom:837.210000px;}
.y111_c01350{bottom:838.080000px;}
.yaf_c01350{bottom:838.950000px;}
.yae_c01350{bottom:840.675000px;}
.y110_c01350{bottom:842.400000px;}
.yb0_c01350{bottom:843.270000px;}
.y10e_c01350{bottom:853.635000px;}
.y10d_c01350{bottom:854.490000px;}
.yab_c01350{bottom:856.230000px;}
.yac_c01350{bottom:857.085000px;}
.yaa_c01350{bottom:857.955000px;}
.yad_c01350{bottom:860.550000px;}
.ya9_c01350{bottom:864.870000px;}
.y10a_c01350{bottom:871.770000px;}
.y10c_c01350{bottom:873.510000px;}
.ya8_c01350{bottom:875.235000px;}
.y10b_c01350{bottom:876.090000px;}
.y109_c01350{bottom:876.960000px;}
.ya6_c01350{bottom:877.830000px;}
.ya7_c01350{bottom:878.685000px;}
.ya5_c01350{bottom:879.555000px;}
.y105_c01350{bottom:889.050000px;}
.y108_c01350{bottom:889.920000px;}
.ya3_c01350{bottom:891.645000px;}
.ya2_c01350{bottom:892.515000px;}
.y107_c01350{bottom:893.370000px;}
.y106_c01350{bottom:894.240000px;}
.ya4_c01350{bottom:895.110000px;}
.ya1_c01350{bottom:895.965000px;}
.ya0_c01350{bottom:910.650000px;}
.y9e_c01350{bottom:914.115000px;}
.y9f_c01350{bottom:924.480000px;}
.y97_c01350{bottom:926.205000px;}
.y9d_c01350{bottom:927.075000px;}
.y99_c01350{bottom:927.930000px;}
.y98_c01350{bottom:928.800000px;}
.y9b_c01350{bottom:929.670000px;}
.y96_c01350{bottom:931.395000px;}
.y9a_c01350{bottom:932.250000px;}
.y9c_c01350{bottom:933.990000px;}
.y95_c01350{bottom:939.165000px;}
.y92_c01350{bottom:943.485000px;}
.y90_c01350{bottom:944.355000px;}
.y93_c01350{bottom:947.805000px;}
.y91_c01350{bottom:948.675000px;}
.y94_c01350{bottom:953.850000px;}
.y8f_c01350{bottom:958.170000px;}
.y8e_c01350{bottom:960.765000px;}
.y8d_c01350{bottom:962.490000px;}
.y8c_c01350{bottom:963.360000px;}
.y8b_c01350{bottom:965.085000px;}
.y8a_c01350{bottom:977.190000px;}
.y58_c01350{bottom:981.510000px;}
.y59_c01350{bottom:982.365000px;}
.y57_c01350{bottom:983.235000px;}
.y88_c01350{bottom:984.960000px;}
.y87_c01350{bottom:988.410000px;}
.y89_c01350{bottom:990.150000px;}
.y86_c01350{bottom:992.730000px;}
.y84_c01350{bottom:993.600000px;}
.y85_c01350{bottom:998.790000px;}
.y83_c01350{bottom:1010.010000px;}
.y81_c01350{bottom:1011.750000px;}
.y55_c01350{bottom:1014.330000px;}
.y53_c01350{bottom:1015.200000px;}
.y56_c01350{bottom:1016.070000px;}
.y82_c01350{bottom:1016.925000px;}
.y54_c01350{bottom:1019.520000px;}
.y52_c01350{bottom:1022.115000px;}
.y51_c01350{bottom:1027.290000px;}
.y4d_c01350{bottom:1032.480000px;}
.y80_c01350{bottom:1033.350000px;}
.y4e_c01350{bottom:1034.205000px;}
.y50_c01350{bottom:1035.930000px;}
.y4f_c01350{bottom:1036.800000px;}
.y7f_c01350{bottom:1049.760000px;}
.y7e_c01350{bottom:1050.630000px;}
.y4c_c01350{bottom:1054.950000px;}
.y4b_c01350{bottom:1055.805000px;}
.y4a_c01350{bottom:1069.635000px;}
.y48_c01350{bottom:1071.360000px;}
.y49_c01350{bottom:1072.230000px;}
.y47_c01350{bottom:1085.190000px;}
.y7d_c01350{bottom:1086.045000px;}
.y7c_c01350{bottom:1086.915000px;}
.y7b_c01350{bottom:1092.960000px;}
.y79_c01350{bottom:1099.875000px;}
.y41_c01350{bottom:1100.730000px;}
.y46_c01350{bottom:1101.600000px;}
.y42_c01350{bottom:1102.470000px;}
.y3f_c01350{bottom:1103.325000px;}
.y44_c01350{bottom:1104.195000px;}
.y7a_c01350{bottom:1105.050000px;}
.y45_c01350{bottom:1105.920000px;}
.y43_c01350{bottom:1106.790000px;}
.y40_c01350{bottom:1107.645000px;}
.y78_c01350{bottom:1118.880000px;}
.y3e_c01350{bottom:1120.605000px;}
.y3b_c01350{bottom:1121.475000px;}
.y3c_c01350{bottom:1124.070000px;}
.y3d_c01350{bottom:1124.925000px;}
.y3a_c01350{bottom:1125.795000px;}
.y76_c01350{bottom:1134.435000px;}
.y39_c01350{bottom:1135.290000px;}
.y77_c01350{bottom:1136.160000px;}
.y38_c01350{bottom:1137.030000px;}
.y34_c01350{bottom:1137.885000px;}
.y37_c01350{bottom:1140.480000px;}
.y35_c01350{bottom:1141.350000px;}
.y36_c01350{bottom:1142.205000px;}
.y74_c01350{bottom:1151.715000px;}
.y73_c01350{bottom:1152.570000px;}
.y33_c01350{bottom:1153.440000px;}
.y31_c01350{bottom:1154.310000px;}
.y2d_c01350{bottom:1155.165000px;}
.y75_c01350{bottom:1156.035000px;}
.y30_c01350{bottom:1156.890000px;}
.y32_c01350{bottom:1157.760000px;}
.y2f_c01350{bottom:1158.630000px;}
.y2e_c01350{bottom:1159.485000px;}
.y29_c01350{bottom:1170.720000px;}
.y2b_c01350{bottom:1171.590000px;}
.y2c_c01350{bottom:1175.910000px;}
.y2a_c01350{bottom:1176.765000px;}
.y28_c01350{bottom:1177.635000px;}
.y72_c01350{bottom:1188.000000px;}
.y27_c01350{bottom:1190.595000px;}
.y25_c01350{bottom:1193.190000px;}
.y24_c01350{bottom:1194.045000px;}
.y71_c01350{bottom:1194.915000px;}
.y26_c01350{bottom:1195.770000px;}
.y70_c01350{bottom:1204.410000px;}
.y23_c01350{bottom:1205.280000px;}
.y22_c01350{bottom:1206.150000px;}
.y6f_c01350{bottom:1209.600000px;}
.y21_c01350{bottom:1212.195000px;}
.y1f_c01350{bottom:1223.430000px;}
.y1b_c01350{bottom:1224.285000px;}
.y1c_c01350{bottom:1226.880000px;}
.y1d_c01350{bottom:1227.750000px;}
.y1e_c01350{bottom:1228.605000px;}
.y20_c01350{bottom:1229.475000px;}
.y6e_c01350{bottom:1234.650000px;}
.y6d_c01350{bottom:1236.390000px;}
.y1a_c01350{bottom:1245.030000px;}
.y19_c01350{bottom:1245.885000px;}
.y6c_c01350{bottom:1260.570000px;}
.y6b_c01350{bottom:1262.310000px;}
.y18_c01350{bottom:1263.165000px;}
.y17_c01350{bottom:1264.035000px;}
.y16_c01350{bottom:1264.890000px;}
.y6a_c01350{bottom:1275.270000px;}
.y67_c01350{bottom:1276.125000px;}
.y15_c01350{bottom:1277.850000px;}
.y69_c01350{bottom:1279.590000px;}
.y68_c01350{bottom:1280.445000px;}
.y14_c01350{bottom:1281.315000px;}
.y13_c01350{bottom:1282.170000px;}
.y66_c01350{bottom:1293.405000px;}
.y12_c01350{bottom:1296.000000px;}
.y65_c01350{bottom:1296.870000px;}
.y64_c01350{bottom:1297.725000px;}
.y5f_c01350{bottom:1309.830000px;}
.y60_c01350{bottom:1310.685000px;}
.y62_c01350{bottom:1311.555000px;}
.y5e_c01350{bottom:1312.410000px;}
.y63_c01350{bottom:1313.280000px;}
.y61_c01350{bottom:1315.005000px;}
.y11_c01350{bottom:1316.730000px;}
.yd_c01350{bottom:1332.285000px;}
.y10_c01350{bottom:1333.155000px;}
.ye_c01350{bottom:1334.010000px;}
.yf_c01350{bottom:1334.880000px;}
.yc_c01350{bottom:1346.970000px;}
.yb_c01350{bottom:1347.840000px;}
.y5d_c01350{bottom:1348.710000px;}
.y5c_c01350{bottom:1350.435000px;}
.ya_c01350{bottom:1351.290000px;}
.y5_c01350{bottom:1363.395000px;}
.y7_c01350{bottom:1364.250000px;}
.y5b_c01350{bottom:1365.120000px;}
.y9_c01350{bottom:1365.990000px;}
.y5a_c01350{bottom:1367.715000px;}
.y8_c01350{bottom:1368.570000px;}
.y6_c01350{bottom:1369.440000px;}
.y3_c01350{bottom:1381.530000px;}
.y139_c01350{bottom:1383.270000px;}
.y4_c01350{bottom:1385.850000px;}
.y2_c01350{bottom:1410.915000px;}
.y1_c01350{bottom:1434.240000px;}
.h17_c01350{height:3.110063px;}
.hb_c01350{height:5.399414px;}
.h19_c01350{height:6.209326px;}
.h12_c01350{height:9.340986px;}
.he_c01350{height:12.418652px;}
.h18_c01350{height:15.550313px;}
.h4_c01350{height:18.681973px;}
.h1b_c01350{height:21.759639px;}
.h11_c01350{height:24.891299px;}
.h2_c01350{height:27.968965px;}
.ha_c01350{height:31.100625px;}
.h1d_c01350{height:31.448965px;}
.h10_c01350{height:34.232285px;}
.h14_c01350{height:37.309951px;}
.hd_c01350{height:40.441611px;}
.h6_c01350{height:43.519277px;}
.h1f_c01350{height:43.921611px;}
.h8_c01350{height:46.650937px;}
.h16_c01350{height:49.782598px;}
.hc_c01350{height:52.860264px;}
.hf_c01350{height:55.991924px;}
.h3_c01350{height:59.069590px;}
.h13_c01350{height:62.201250px;}
.h7_c01350{height:65.332910px;}
.h15_c01350{height:68.410576px;}
.h5_c01350{height:71.542236px;}
.h9_c01350{height:74.619902px;}
.h1e_c01350{height:77.751563px;}
.h1a_c01350{height:80.883223px;}
.h1c_c01350{height:83.960889px;}
.h1_c01350{height:1513.500000px;}
.h0_c01350{height:1513.725000px;}
.w0_c01350{width:1083.450000px;}
.w1_c01350{width:1083.750000px;}
.x0_c01350{left:0.000000px;}
.xd3_c01350{left:3.450000px;}
.xd4_c01350{left:14.685000px;}
.xd5_c01350{left:25.050000px;}
.x14_c01350{left:121.830000px;}
.xbe_c01350{left:190.080000px;}
.xac_c01350{left:191.805000px;}
.xce_c01350{left:194.400000px;}
.xb7_c01350{left:198.720000px;}
.x3_c01350{left:201.315000px;}
.xb0_c01350{left:203.040000px;}
.x2a_c01350{left:208.230000px;}
.x3f_c01350{left:211.680000px;}
.x15_c01350{left:214.275000px;}
.xf_c01350{left:216.870000px;}
.xc2_c01350{left:218.595000px;}
.x49_c01350{left:221.190000px;}
.xc3_c01350{left:224.640000px;}
.x1e_c01350{left:226.365000px;}
.x3c_c01350{left:228.090000px;}
.xae_c01350{left:230.685000px;}
.x2b_c01350{left:233.280000px;}
.x40_c01350{left:235.875000px;}
.x31_c01350{left:238.470000px;}
.x5_c01350{left:240.195000px;}
.xb_c01350{left:241.920000px;}
.xcd_c01350{left:247.110000px;}
.xb8_c01350{left:249.690000px;}
.xbc_c01350{left:251.430000px;}
.x16_c01350{left:253.155000px;}
.x9b_c01350{left:254.880000px;}
.xc8_c01350{left:257.475000px;}
.x1f_c01350{left:259.200000px;}
.xb2_c01350{left:260.925000px;}
.x3d_c01350{left:262.650000px;}
.x26_c01350{left:264.390000px;}
.x32_c01350{left:266.115000px;}
.x37_c01350{left:267.840000px;}
.xb9_c01350{left:270.435000px;}
.x2c_c01350{left:272.160000px;}
.x9e_c01350{left:274.755000px;}
.x20_c01350{left:276.480000px;}
.xd2_c01350{left:279.930000px;}
.xaf_c01350{left:283.395000px;}
.xc_c01350{left:285.120000px;}
.xc9_c01350{left:286.845000px;}
.x43_c01350{left:290.310000px;}
.x41_c01350{left:295.485000px;}
.x10_c01350{left:298.950000px;}
.xba_c01350{left:301.530000px;}
.x4a_c01350{left:303.270000px;}
.x38_c01350{left:307.590000px;}
.x2d_c01350{left:310.170000px;}
.x33_c01350{left:312.765000px;}
.x18_c01350{left:315.360000px;}
.x11_c01350{left:317.955000px;}
.xd1_c01350{left:320.550000px;}
.x6_c01350{left:325.725000px;}
.x46_c01350{left:327.450000px;}
.x19_c01350{left:329.190000px;}
.x39_c01350{left:339.555000px;}
.x1a_c01350{left:341.280000px;}
.xb5_c01350{left:343.875000px;}
.x9c_c01350{left:346.470000px;}
.x9f_c01350{left:348.195000px;}
.xc4_c01350{left:351.645000px;}
.x1b_c01350{left:353.370000px;}
.x12_c01350{left:355.965000px;}
.xb6_c01350{left:357.690000px;}
.xcf_c01350{left:360.285000px;}
.x44_c01350{left:362.880000px;}
.x34_c01350{left:364.605000px;}
.xd_c01350{left:366.330000px;}
.x1c_c01350{left:368.070000px;}
.x3e_c01350{left:371.520000px;}
.x21_c01350{left:375.840000px;}
.x7_c01350{left:378.435000px;}
.x4_c01350{left:380.160000px;}
.x1d_c01350{left:381.885000px;}
.xa0_c01350{left:383.610000px;}
.xbf_c01350{left:385.350000px;}
.x2e_c01350{left:388.800000px;}
.x13_c01350{left:392.250000px;}
.x3a_c01350{left:394.845000px;}
.x35_c01350{left:396.570000px;}
.x4c_c01350{left:401.760000px;}
.xbb_c01350{left:403.485000px;}
.x17_c01350{left:406.950000px;}
.x27_c01350{left:408.675000px;}
.xc6_c01350{left:411.270000px;}
.x22_c01350{left:414.720000px;}
.x36_c01350{left:416.445000px;}
.xb3_c01350{left:418.170000px;}
.x8_c01350{left:419.910000px;}
.x1_c01350{left:421.635000px;}
.x2_c01350{left:424.230000px;}
.x47_c01350{left:427.680000px;}
.xca_c01350{left:431.130000px;}
.xc1_c01350{left:433.725000px;}
.xc7_c01350{left:436.320000px;}
.x2f_c01350{left:438.045000px;}
.x42_c01350{left:440.640000px;}
.xab_c01350{left:444.960000px;}
.xb1_c01350{left:446.685000px;}
.xb4_c01350{left:448.410000px;}
.xad_c01350{left:450.150000px;}
.x23_c01350{left:451.875000px;}
.xd0_c01350{left:453.600000px;}
.x45_c01350{left:455.325000px;}
.xa1_c01350{left:457.050000px;}
.x9_c01350{left:461.370000px;}
.x28_c01350{left:463.110000px;}
.x3b_c01350{left:464.835000px;}
.x4d_c01350{left:467.430000px;}
.xa_c01350{left:469.155000px;}
.x30_c01350{left:472.605000px;}
.xc0_c01350{left:477.795000px;}
.x4b_c01350{left:479.520000px;}
.x29_c01350{left:482.115000px;}
.xe_c01350{left:483.840000px;}
.xcb_c01350{left:485.565000px;}
.xa2_c01350{left:490.755000px;}
.x24_c01350{left:494.205000px;}
.x48_c01350{left:496.800000px;}
.xbd_c01350{left:501.120000px;}
.xc5_c01350{left:502.845000px;}
.x25_c01350{left:510.630000px;}
.xcc_c01350{left:512.355000px;}
.x9d_c01350{left:523.590000px;}
.xa3_c01350{left:531.360000px;}
.xe9_c01350{left:533.955000px;}
.x94_c01350{left:535.680000px;}
.x62_c01350{left:538.275000px;}
.x75_c01350{left:540.870000px;}
.x63_c01350{left:543.450000px;}
.x99_c01350{left:545.190000px;}
.x7c_c01350{left:550.365000px;}
.x8a_c01350{left:552.090000px;}
.x4e_c01350{left:554.685000px;}
.xee_c01350{left:556.410000px;}
.x7f_c01350{left:558.150000px;}
.x89_c01350{left:559.875000px;}
.x8b_c01350{left:562.470000px;}
.x85_c01350{left:565.920000px;}
.x7b_c01350{left:567.645000px;}
.x69_c01350{left:569.370000px;}
.x7d_c01350{left:572.835000px;}
.xe4_c01350{left:578.880000px;}
.xdd_c01350{left:581.475000px;}
.x8e_c01350{left:583.200000px;}
.x81_c01350{left:584.925000px;}
.x64_c01350{left:588.390000px;}
.x4f_c01350{left:590.115000px;}
.x72_c01350{left:592.710000px;}
.xa4_c01350{left:594.435000px;}
.xe1_c01350{left:597.030000px;}
.x86_c01350{left:600.480000px;}
.x8f_c01350{left:602.205000px;}
.x76_c01350{left:603.930000px;}
.x50_c01350{left:607.395000px;}
.x80_c01350{left:609.120000px;}
.x58_c01350{left:610.845000px;}
.xef_c01350{left:613.440000px;}
.x95_c01350{left:617.760000px;}
.xe2_c01350{left:621.210000px;}
.x51_c01350{left:622.950000px;}
.x59_c01350{left:627.270000px;}
.xd8_c01350{left:628.995000px;}
.x6a_c01350{left:632.445000px;}
.xe8_c01350{left:634.170000px;}
.xdb_c01350{left:635.910000px;}
.x73_c01350{left:638.490000px;}
.x6b_c01350{left:642.810000px;}
.xe5_c01350{left:644.550000px;}
.x52_c01350{left:648.000000px;}
.x9a_c01350{left:650.595000px;}
.xa5_c01350{left:654.045000px;}
.x6c_c01350{left:661.830000px;}
.x5a_c01350{left:664.410000px;}
.xed_c01350{left:666.150000px;}
.xec_c01350{left:673.920000px;}
.x77_c01350{left:678.240000px;}
.x6d_c01350{left:680.835000px;}
.xa6_c01350{left:682.560000px;}
.x5b_c01350{left:686.010000px;}
.x65_c01350{left:688.605000px;}
.xe3_c01350{left:692.925000px;}
.x5c_c01350{left:698.970000px;}
.x7e_c01350{left:700.710000px;}
.xdf_c01350{left:702.435000px;}
.x8c_c01350{left:705.030000px;}
.x78_c01350{left:707.610000px;}
.x5d_c01350{left:711.930000px;}
.x96_c01350{left:713.670000px;}
.x6e_c01350{left:715.395000px;}
.x90_c01350{left:717.120000px;}
.x5e_c01350{left:718.845000px;}
.xe0_c01350{left:721.440000px;}
.x53_c01350{left:724.035000px;}
.x8d_c01350{left:728.355000px;}
.x5f_c01350{left:730.080000px;}
.xde_c01350{left:732.675000px;}
.x54_c01350{left:736.995000px;}
.x60_c01350{left:738.720000px;}
.x6f_c01350{left:745.635000px;}
.x66_c01350{left:748.230000px;}
.x61_c01350{left:749.955000px;}
.x82_c01350{left:751.680000px;}
.x55_c01350{left:753.405000px;}
.xa7_c01350{left:756.870000px;}
.x79_c01350{left:759.450000px;}
.x56_c01350{left:762.045000px;}
.xea_c01350{left:763.770000px;}
.x97_c01350{left:767.235000px;}
.xa8_c01350{left:768.960000px;}
.x87_c01350{left:770.685000px;}
.x70_c01350{left:772.410000px;}
.xe6_c01350{left:775.875000px;}
.x83_c01350{left:777.600000px;}
.xd6_c01350{left:779.325000px;}
.xa9_c01350{left:783.645000px;}
.xd9_c01350{left:786.240000px;}
.xdc_c01350{left:794.880000px;}
.xd7_c01350{left:800.070000px;}
.xaa_c01350{left:801.795000px;}
.x57_c01350{left:803.520000px;}
.x67_c01350{left:806.115000px;}
.x74_c01350{left:809.565000px;}
.x98_c01350{left:812.160000px;}
.x91_c01350{left:814.755000px;}
.x7a_c01350{left:818.205000px;}
.xe7_c01350{left:819.930000px;}
.x84_c01350{left:825.120000px;}
.xda_c01350{left:828.570000px;}
.x68_c01350{left:832.035000px;}
.xeb_c01350{left:835.485000px;}
.x92_c01350{left:837.210000px;}
.x93_c01350{left:844.125000px;}
.x71_c01350{left:850.170000px;}
.x88_c01350{left:856.230000px;}
.xf0_c01350{left:1039.395000px;}
.xf1_c01350{left:1052.355000px;}
@media print{
.v2_c01350{vertical-align:-3.093333pt;}
.v0_c01350{vertical-align:0.000000pt;}
.v1_c01350{vertical-align:3.093333pt;}
.ls3_c01350{letter-spacing:0.000000pt;}
.ls2_c01350{letter-spacing:15.446773pt;}
.ls0_c01350{letter-spacing:20.987307pt;}
.ls1_c01350{letter-spacing:40.132213pt;}
.ws1_c01350{word-spacing:-15.663053pt;}
.ws0_c01350{word-spacing:-14.995641pt;}
.ws2_c01350{word-spacing:-9.100707pt;}
.ws3_c01350{word-spacing:0.000000pt;}
.fs15_c01350{font-size:3.072000pt;}
.fs9_c01350{font-size:5.333333pt;}
.fs17_c01350{font-size:6.133333pt;}
.fs10_c01350{font-size:9.226667pt;}
.fsc_c01350{font-size:12.266667pt;}
.fs16_c01350{font-size:15.360000pt;}
.fs2_c01350{font-size:18.453333pt;}
.fs19_c01350{font-size:21.493333pt;}
.fsf_c01350{font-size:24.586667pt;}
.fs0_c01350{font-size:27.626667pt;}
.fs8_c01350{font-size:30.720000pt;}
.fse_c01350{font-size:33.813333pt;}
.fs12_c01350{font-size:36.853333pt;}
.fsb_c01350{font-size:39.946667pt;}
.fs4_c01350{font-size:42.986667pt;}
.fs6_c01350{font-size:46.080000pt;}
.fs14_c01350{font-size:49.173333pt;}
.fsa_c01350{font-size:52.213333pt;}
.fsd_c01350{font-size:55.306667pt;}
.fs1_c01350{font-size:58.346667pt;}
.fs11_c01350{font-size:61.440000pt;}
.fs5_c01350{font-size:64.533333pt;}
.fs13_c01350{font-size:67.573333pt;}
.fs3_c01350{font-size:70.666667pt;}
.fs7_c01350{font-size:73.706667pt;}
.fs1b_c01350{font-size:76.800000pt;}
.fs18_c01350{font-size:79.893333pt;}
.fs1a_c01350{font-size:82.933333pt;}
.y0_c01350{bottom:0.000000pt;}
.y104_c01350{bottom:440.066667pt;}
.y103_c01350{bottom:440.826667pt;}
.y100_c01350{bottom:454.653333pt;}
.y102_c01350{bottom:455.426667pt;}
.y101_c01350{bottom:456.186667pt;}
.yfa_c01350{bottom:483.840000pt;}
.yf7_c01350{bottom:485.373333pt;}
.yf8_c01350{bottom:486.146667pt;}
.yf9_c01350{bottom:487.680000pt;}
.yfb_c01350{bottom:496.893333pt;}
.yf3_c01350{bottom:499.200000pt;}
.yf5_c01350{bottom:499.973333pt;}
.yf6_c01350{bottom:500.733333pt;}
.y138_c01350{bottom:501.506667pt;}
.yf4_c01350{bottom:502.266667pt;}
.yf1_c01350{bottom:503.040000pt;}
.yf2_c01350{bottom:503.813333pt;}
.yed_c01350{bottom:514.560000pt;}
.yee_c01350{bottom:515.333333pt;}
.yf0_c01350{bottom:517.626667pt;}
.yef_c01350{bottom:518.400000pt;}
.yff_c01350{bottom:520.706667pt;}
.yfe_c01350{bottom:525.306667pt;}
.y137_c01350{bottom:527.613333pt;}
.y133_c01350{bottom:528.386667pt;}
.yeb_c01350{bottom:529.146667pt;}
.yea_c01350{bottom:529.920000pt;}
.ye8_c01350{bottom:531.453333pt;}
.y134_c01350{bottom:532.226667pt;}
.yec_c01350{bottom:532.986667pt;}
.ye9_c01350{bottom:534.533333pt;}
.yfc_c01350{bottom:539.133333pt;}
.y136_c01350{bottom:539.906667pt;}
.y135_c01350{bottom:542.213333pt;}
.y131_c01350{bottom:542.973333pt;}
.yfd_c01350{bottom:544.506667pt;}
.y132_c01350{bottom:545.280000pt;}
.ye7_c01350{bottom:546.053333pt;}
.ye2_c01350{bottom:546.813333pt;}
.ye5_c01350{bottom:548.346667pt;}
.ye4_c01350{bottom:549.120000pt;}
.ye3_c01350{bottom:549.893333pt;}
.ye6_c01350{bottom:550.653333pt;}
.ye1_c01350{bottom:554.493333pt;}
.y12e_c01350{bottom:559.106667pt;}
.ye0_c01350{bottom:559.866667pt;}
.ydd_c01350{bottom:560.640000pt;}
.yde_c01350{bottom:561.413333pt;}
.ydf_c01350{bottom:562.173333pt;}
.y12f_c01350{bottom:562.946667pt;}
.y130_c01350{bottom:563.706667pt;}
.ydc_c01350{bottom:566.013333pt;}
.yda_c01350{bottom:576.000000pt;}
.y12d_c01350{bottom:577.533333pt;}
.ydb_c01350{bottom:578.306667pt;}
.yd7_c01350{bottom:579.066667pt;}
.yd8_c01350{bottom:579.840000pt;}
.yd9_c01350{bottom:580.613333pt;}
.yd6_c01350{bottom:589.826667pt;}
.yd4_c01350{bottom:591.360000pt;}
.y12c_c01350{bottom:592.893333pt;}
.yd2_c01350{bottom:593.666667pt;}
.yd5_c01350{bottom:594.426667pt;}
.yd3_c01350{bottom:596.733333pt;}
.ycf_c01350{bottom:605.186667pt;}
.yd0_c01350{bottom:606.720000pt;}
.y12b_c01350{bottom:607.493333pt;}
.yd1_c01350{bottom:608.253333pt;}
.yce_c01350{bottom:609.786667pt;}
.ycd_c01350{bottom:610.560000pt;}
.ycc_c01350{bottom:613.626667pt;}
.y128_c01350{bottom:618.240000pt;}
.y12a_c01350{bottom:619.773333pt;}
.ycb_c01350{bottom:620.546667pt;}
.yc9_c01350{bottom:622.080000pt;}
.yca_c01350{bottom:623.613333pt;}
.y129_c01350{bottom:624.386667pt;}
.yc8_c01350{bottom:626.693333pt;}
.y126_c01350{bottom:635.906667pt;}
.yc6_c01350{bottom:636.666667pt;}
.yc2_c01350{bottom:638.973333pt;}
.yc7_c01350{bottom:640.506667pt;}
.yc5_c01350{bottom:641.280000pt;}
.yc4_c01350{bottom:642.053333pt;}
.yc3_c01350{bottom:642.813333pt;}
.y127_c01350{bottom:648.960000pt;}
.y125_c01350{bottom:650.493333pt;}
.y124_c01350{bottom:652.026667pt;}
.yc0_c01350{bottom:655.106667pt;}
.yc1_c01350{bottom:655.866667pt;}
.ybd_c01350{bottom:656.640000pt;}
.ybf_c01350{bottom:657.413333pt;}
.ybe_c01350{bottom:658.173333pt;}
.y123_c01350{bottom:667.386667pt;}
.ybc_c01350{bottom:668.160000pt;}
.yb7_c01350{bottom:669.693333pt;}
.ybb_c01350{bottom:670.466667pt;}
.yba_c01350{bottom:672.000000pt;}
.yb9_c01350{bottom:672.773333pt;}
.yb8_c01350{bottom:674.306667pt;}
.y122_c01350{bottom:681.986667pt;}
.y121_c01350{bottom:682.746667pt;}
.y120_c01350{bottom:687.360000pt;}
.yb6_c01350{bottom:688.133333pt;}
.y11e_c01350{bottom:696.573333pt;}
.y11f_c01350{bottom:698.106667pt;}
.y11d_c01350{bottom:699.653333pt;}
.y11c_c01350{bottom:702.720000pt;}
.yb5_c01350{bottom:703.493333pt;}
.yb4_c01350{bottom:704.253333pt;}
.y11b_c01350{bottom:711.933333pt;}
.y119_c01350{bottom:712.706667pt;}
.y118_c01350{bottom:713.466667pt;}
.y117_c01350{bottom:715.013333pt;}
.y11a_c01350{bottom:716.546667pt;}
.yb3_c01350{bottom:718.080000pt;}
.yb2_c01350{bottom:718.853333pt;}
.yb1_c01350{bottom:719.613333pt;}
.y114_c01350{bottom:728.066667pt;}
.y113_c01350{bottom:731.133333pt;}
.y116_c01350{bottom:731.906667pt;}
.y115_c01350{bottom:732.666667pt;}
.y112_c01350{bottom:743.426667pt;}
.y10f_c01350{bottom:744.186667pt;}
.y111_c01350{bottom:744.960000pt;}
.yaf_c01350{bottom:745.733333pt;}
.yae_c01350{bottom:747.266667pt;}
.y110_c01350{bottom:748.800000pt;}
.yb0_c01350{bottom:749.573333pt;}
.y10e_c01350{bottom:758.786667pt;}
.y10d_c01350{bottom:759.546667pt;}
.yab_c01350{bottom:761.093333pt;}
.yac_c01350{bottom:761.853333pt;}
.yaa_c01350{bottom:762.626667pt;}
.yad_c01350{bottom:764.933333pt;}
.ya9_c01350{bottom:768.773333pt;}
.y10a_c01350{bottom:774.906667pt;}
.y10c_c01350{bottom:776.453333pt;}
.ya8_c01350{bottom:777.986667pt;}
.y10b_c01350{bottom:778.746667pt;}
.y109_c01350{bottom:779.520000pt;}
.ya6_c01350{bottom:780.293333pt;}
.ya7_c01350{bottom:781.053333pt;}
.ya5_c01350{bottom:781.826667pt;}
.y105_c01350{bottom:790.266667pt;}
.y108_c01350{bottom:791.040000pt;}
.ya3_c01350{bottom:792.573333pt;}
.ya2_c01350{bottom:793.346667pt;}
.y107_c01350{bottom:794.106667pt;}
.y106_c01350{bottom:794.880000pt;}
.ya4_c01350{bottom:795.653333pt;}
.ya1_c01350{bottom:796.413333pt;}
.ya0_c01350{bottom:809.466667pt;}
.y9e_c01350{bottom:812.546667pt;}
.y9f_c01350{bottom:821.760000pt;}
.y97_c01350{bottom:823.293333pt;}
.y9d_c01350{bottom:824.066667pt;}
.y99_c01350{bottom:824.826667pt;}
.y98_c01350{bottom:825.600000pt;}
.y9b_c01350{bottom:826.373333pt;}
.y96_c01350{bottom:827.906667pt;}
.y9a_c01350{bottom:828.666667pt;}
.y9c_c01350{bottom:830.213333pt;}
.y95_c01350{bottom:834.813333pt;}
.y92_c01350{bottom:838.653333pt;}
.y90_c01350{bottom:839.426667pt;}
.y93_c01350{bottom:842.493333pt;}
.y91_c01350{bottom:843.266667pt;}
.y94_c01350{bottom:847.866667pt;}
.y8f_c01350{bottom:851.706667pt;}
.y8e_c01350{bottom:854.013333pt;}
.y8d_c01350{bottom:855.546667pt;}
.y8c_c01350{bottom:856.320000pt;}
.y8b_c01350{bottom:857.853333pt;}
.y8a_c01350{bottom:868.613333pt;}
.y58_c01350{bottom:872.453333pt;}
.y59_c01350{bottom:873.213333pt;}
.y57_c01350{bottom:873.986667pt;}
.y88_c01350{bottom:875.520000pt;}
.y87_c01350{bottom:878.586667pt;}
.y89_c01350{bottom:880.133333pt;}
.y86_c01350{bottom:882.426667pt;}
.y84_c01350{bottom:883.200000pt;}
.y85_c01350{bottom:887.813333pt;}
.y83_c01350{bottom:897.786667pt;}
.y81_c01350{bottom:899.333333pt;}
.y55_c01350{bottom:901.626667pt;}
.y53_c01350{bottom:902.400000pt;}
.y56_c01350{bottom:903.173333pt;}
.y82_c01350{bottom:903.933333pt;}
.y54_c01350{bottom:906.240000pt;}
.y52_c01350{bottom:908.546667pt;}
.y51_c01350{bottom:913.146667pt;}
.y4d_c01350{bottom:917.760000pt;}
.y80_c01350{bottom:918.533333pt;}
.y4e_c01350{bottom:919.293333pt;}
.y50_c01350{bottom:920.826667pt;}
.y4f_c01350{bottom:921.600000pt;}
.y7f_c01350{bottom:933.120000pt;}
.y7e_c01350{bottom:933.893333pt;}
.y4c_c01350{bottom:937.733333pt;}
.y4b_c01350{bottom:938.493333pt;}
.y4a_c01350{bottom:950.786667pt;}
.y48_c01350{bottom:952.320000pt;}
.y49_c01350{bottom:953.093333pt;}
.y47_c01350{bottom:964.613333pt;}
.y7d_c01350{bottom:965.373333pt;}
.y7c_c01350{bottom:966.146667pt;}
.y7b_c01350{bottom:971.520000pt;}
.y79_c01350{bottom:977.666667pt;}
.y41_c01350{bottom:978.426667pt;}
.y46_c01350{bottom:979.200000pt;}
.y42_c01350{bottom:979.973333pt;}
.y3f_c01350{bottom:980.733333pt;}
.y44_c01350{bottom:981.506667pt;}
.y7a_c01350{bottom:982.266667pt;}
.y45_c01350{bottom:983.040000pt;}
.y43_c01350{bottom:983.813333pt;}
.y40_c01350{bottom:984.573333pt;}
.y78_c01350{bottom:994.560000pt;}
.y3e_c01350{bottom:996.093333pt;}
.y3b_c01350{bottom:996.866667pt;}
.y3c_c01350{bottom:999.173333pt;}
.y3d_c01350{bottom:999.933333pt;}
.y3a_c01350{bottom:1000.706667pt;}
.y76_c01350{bottom:1008.386667pt;}
.y39_c01350{bottom:1009.146667pt;}
.y77_c01350{bottom:1009.920000pt;}
.y38_c01350{bottom:1010.693333pt;}
.y34_c01350{bottom:1011.453333pt;}
.y37_c01350{bottom:1013.760000pt;}
.y35_c01350{bottom:1014.533333pt;}
.y36_c01350{bottom:1015.293333pt;}
.y74_c01350{bottom:1023.746667pt;}
.y73_c01350{bottom:1024.506667pt;}
.y33_c01350{bottom:1025.280000pt;}
.y31_c01350{bottom:1026.053333pt;}
.y2d_c01350{bottom:1026.813333pt;}
.y75_c01350{bottom:1027.586667pt;}
.y30_c01350{bottom:1028.346667pt;}
.y32_c01350{bottom:1029.120000pt;}
.y2f_c01350{bottom:1029.893333pt;}
.y2e_c01350{bottom:1030.653333pt;}
.y29_c01350{bottom:1040.640000pt;}
.y2b_c01350{bottom:1041.413333pt;}
.y2c_c01350{bottom:1045.253333pt;}
.y2a_c01350{bottom:1046.013333pt;}
.y28_c01350{bottom:1046.786667pt;}
.y72_c01350{bottom:1056.000000pt;}
.y27_c01350{bottom:1058.306667pt;}
.y25_c01350{bottom:1060.613333pt;}
.y24_c01350{bottom:1061.373333pt;}
.y71_c01350{bottom:1062.146667pt;}
.y26_c01350{bottom:1062.906667pt;}
.y70_c01350{bottom:1070.586667pt;}
.y23_c01350{bottom:1071.360000pt;}
.y22_c01350{bottom:1072.133333pt;}
.y6f_c01350{bottom:1075.200000pt;}
.y21_c01350{bottom:1077.506667pt;}
.y1f_c01350{bottom:1087.493333pt;}
.y1b_c01350{bottom:1088.253333pt;}
.y1c_c01350{bottom:1090.560000pt;}
.y1d_c01350{bottom:1091.333333pt;}
.y1e_c01350{bottom:1092.093333pt;}
.y20_c01350{bottom:1092.866667pt;}
.y6e_c01350{bottom:1097.466667pt;}
.y6d_c01350{bottom:1099.013333pt;}
.y1a_c01350{bottom:1106.693333pt;}
.y19_c01350{bottom:1107.453333pt;}
.y6c_c01350{bottom:1120.506667pt;}
.y6b_c01350{bottom:1122.053333pt;}
.y18_c01350{bottom:1122.813333pt;}
.y17_c01350{bottom:1123.586667pt;}
.y16_c01350{bottom:1124.346667pt;}
.y6a_c01350{bottom:1133.573333pt;}
.y67_c01350{bottom:1134.333333pt;}
.y15_c01350{bottom:1135.866667pt;}
.y69_c01350{bottom:1137.413333pt;}
.y68_c01350{bottom:1138.173333pt;}
.y14_c01350{bottom:1138.946667pt;}
.y13_c01350{bottom:1139.706667pt;}
.y66_c01350{bottom:1149.693333pt;}
.y12_c01350{bottom:1152.000000pt;}
.y65_c01350{bottom:1152.773333pt;}
.y64_c01350{bottom:1153.533333pt;}
.y5f_c01350{bottom:1164.293333pt;}
.y60_c01350{bottom:1165.053333pt;}
.y62_c01350{bottom:1165.826667pt;}
.y5e_c01350{bottom:1166.586667pt;}
.y63_c01350{bottom:1167.360000pt;}
.y61_c01350{bottom:1168.893333pt;}
.y11_c01350{bottom:1170.426667pt;}
.yd_c01350{bottom:1184.253333pt;}
.y10_c01350{bottom:1185.026667pt;}
.ye_c01350{bottom:1185.786667pt;}
.yf_c01350{bottom:1186.560000pt;}
.yc_c01350{bottom:1197.306667pt;}
.yb_c01350{bottom:1198.080000pt;}
.y5d_c01350{bottom:1198.853333pt;}
.y5c_c01350{bottom:1200.386667pt;}
.ya_c01350{bottom:1201.146667pt;}
.y5_c01350{bottom:1211.906667pt;}
.y7_c01350{bottom:1212.666667pt;}
.y5b_c01350{bottom:1213.440000pt;}
.y9_c01350{bottom:1214.213333pt;}
.y5a_c01350{bottom:1215.746667pt;}
.y8_c01350{bottom:1216.506667pt;}
.y6_c01350{bottom:1217.280000pt;}
.y3_c01350{bottom:1228.026667pt;}
.y139_c01350{bottom:1229.573333pt;}
.y4_c01350{bottom:1231.866667pt;}
.y2_c01350{bottom:1254.146667pt;}
.y1_c01350{bottom:1274.880000pt;}
.h17_c01350{height:2.764500pt;}
.hb_c01350{height:4.799479pt;}
.h19_c01350{height:5.519401pt;}
.h12_c01350{height:8.303099pt;}
.he_c01350{height:11.038802pt;}
.h18_c01350{height:13.822500pt;}
.h4_c01350{height:16.606198pt;}
.h1b_c01350{height:19.341901pt;}
.h11_c01350{height:22.125599pt;}
.h2_c01350{height:24.861302pt;}
.ha_c01350{height:27.645000pt;}
.h1d_c01350{height:27.954635pt;}
.h10_c01350{height:30.428698pt;}
.h14_c01350{height:33.164401pt;}
.hd_c01350{height:35.948099pt;}
.h6_c01350{height:38.683802pt;}
.h1f_c01350{height:39.041432pt;}
.h8_c01350{height:41.467500pt;}
.h16_c01350{height:44.251198pt;}
.hc_c01350{height:46.986901pt;}
.hf_c01350{height:49.770599pt;}
.h3_c01350{height:52.506302pt;}
.h13_c01350{height:55.290000pt;}
.h7_c01350{height:58.073698pt;}
.h15_c01350{height:60.809401pt;}
.h5_c01350{height:63.593099pt;}
.h9_c01350{height:66.328802pt;}
.h1e_c01350{height:69.112500pt;}
.h1a_c01350{height:71.896198pt;}
.h1c_c01350{height:74.631901pt;}
.h1_c01350{height:1345.333333pt;}
.h0_c01350{height:1345.533333pt;}
.w0_c01350{width:963.066667pt;}
.w1_c01350{width:963.333333pt;}
.x0_c01350{left:0.000000pt;}
.xd3_c01350{left:3.066667pt;}
.xd4_c01350{left:13.053333pt;}
.xd5_c01350{left:22.266667pt;}
.x14_c01350{left:108.293333pt;}
.xbe_c01350{left:168.960000pt;}
.xac_c01350{left:170.493333pt;}
.xce_c01350{left:172.800000pt;}
.xb7_c01350{left:176.640000pt;}
.x3_c01350{left:178.946667pt;}
.xb0_c01350{left:180.480000pt;}
.x2a_c01350{left:185.093333pt;}
.x3f_c01350{left:188.160000pt;}
.x15_c01350{left:190.466667pt;}
.xf_c01350{left:192.773333pt;}
.xc2_c01350{left:194.306667pt;}
.x49_c01350{left:196.613333pt;}
.xc3_c01350{left:199.680000pt;}
.x1e_c01350{left:201.213333pt;}
.x3c_c01350{left:202.746667pt;}
.xae_c01350{left:205.053333pt;}
.x2b_c01350{left:207.360000pt;}
.x40_c01350{left:209.666667pt;}
.x31_c01350{left:211.973333pt;}
.x5_c01350{left:213.506667pt;}
.xb_c01350{left:215.040000pt;}
.xcd_c01350{left:219.653333pt;}
.xb8_c01350{left:221.946667pt;}
.xbc_c01350{left:223.493333pt;}
.x16_c01350{left:225.026667pt;}
.x9b_c01350{left:226.560000pt;}
.xc8_c01350{left:228.866667pt;}
.x1f_c01350{left:230.400000pt;}
.xb2_c01350{left:231.933333pt;}
.x3d_c01350{left:233.466667pt;}
.x26_c01350{left:235.013333pt;}
.x32_c01350{left:236.546667pt;}
.x37_c01350{left:238.080000pt;}
.xb9_c01350{left:240.386667pt;}
.x2c_c01350{left:241.920000pt;}
.x9e_c01350{left:244.226667pt;}
.x20_c01350{left:245.760000pt;}
.xd2_c01350{left:248.826667pt;}
.xaf_c01350{left:251.906667pt;}
.xc_c01350{left:253.440000pt;}
.xc9_c01350{left:254.973333pt;}
.x43_c01350{left:258.053333pt;}
.x41_c01350{left:262.653333pt;}
.x10_c01350{left:265.733333pt;}
.xba_c01350{left:268.026667pt;}
.x4a_c01350{left:269.573333pt;}
.x38_c01350{left:273.413333pt;}
.x2d_c01350{left:275.706667pt;}
.x33_c01350{left:278.013333pt;}
.x18_c01350{left:280.320000pt;}
.x11_c01350{left:282.626667pt;}
.xd1_c01350{left:284.933333pt;}
.x6_c01350{left:289.533333pt;}
.x46_c01350{left:291.066667pt;}
.x19_c01350{left:292.613333pt;}
.x39_c01350{left:301.826667pt;}
.x1a_c01350{left:303.360000pt;}
.xb5_c01350{left:305.666667pt;}
.x9c_c01350{left:307.973333pt;}
.x9f_c01350{left:309.506667pt;}
.xc4_c01350{left:312.573333pt;}
.x1b_c01350{left:314.106667pt;}
.x12_c01350{left:316.413333pt;}
.xb6_c01350{left:317.946667pt;}
.xcf_c01350{left:320.253333pt;}
.x44_c01350{left:322.560000pt;}
.x34_c01350{left:324.093333pt;}
.xd_c01350{left:325.626667pt;}
.x1c_c01350{left:327.173333pt;}
.x3e_c01350{left:330.240000pt;}
.x21_c01350{left:334.080000pt;}
.x7_c01350{left:336.386667pt;}
.x4_c01350{left:337.920000pt;}
.x1d_c01350{left:339.453333pt;}
.xa0_c01350{left:340.986667pt;}
.xbf_c01350{left:342.533333pt;}
.x2e_c01350{left:345.600000pt;}
.x13_c01350{left:348.666667pt;}
.x3a_c01350{left:350.973333pt;}
.x35_c01350{left:352.506667pt;}
.x4c_c01350{left:357.120000pt;}
.xbb_c01350{left:358.653333pt;}
.x17_c01350{left:361.733333pt;}
.x27_c01350{left:363.266667pt;}
.xc6_c01350{left:365.573333pt;}
.x22_c01350{left:368.640000pt;}
.x36_c01350{left:370.173333pt;}
.xb3_c01350{left:371.706667pt;}
.x8_c01350{left:373.253333pt;}
.x1_c01350{left:374.786667pt;}
.x2_c01350{left:377.093333pt;}
.x47_c01350{left:380.160000pt;}
.xca_c01350{left:383.226667pt;}
.xc1_c01350{left:385.533333pt;}
.xc7_c01350{left:387.840000pt;}
.x2f_c01350{left:389.373333pt;}
.x42_c01350{left:391.680000pt;}
.xab_c01350{left:395.520000pt;}
.xb1_c01350{left:397.053333pt;}
.xb4_c01350{left:398.586667pt;}
.xad_c01350{left:400.133333pt;}
.x23_c01350{left:401.666667pt;}
.xd0_c01350{left:403.200000pt;}
.x45_c01350{left:404.733333pt;}
.xa1_c01350{left:406.266667pt;}
.x9_c01350{left:410.106667pt;}
.x28_c01350{left:411.653333pt;}
.x3b_c01350{left:413.186667pt;}
.x4d_c01350{left:415.493333pt;}
.xa_c01350{left:417.026667pt;}
.x30_c01350{left:420.093333pt;}
.xc0_c01350{left:424.706667pt;}
.x4b_c01350{left:426.240000pt;}
.x29_c01350{left:428.546667pt;}
.xe_c01350{left:430.080000pt;}
.xcb_c01350{left:431.613333pt;}
.xa2_c01350{left:436.226667pt;}
.x24_c01350{left:439.293333pt;}
.x48_c01350{left:441.600000pt;}
.xbd_c01350{left:445.440000pt;}
.xc5_c01350{left:446.973333pt;}
.x25_c01350{left:453.893333pt;}
.xcc_c01350{left:455.426667pt;}
.x9d_c01350{left:465.413333pt;}
.xa3_c01350{left:472.320000pt;}
.xe9_c01350{left:474.626667pt;}
.x94_c01350{left:476.160000pt;}
.x62_c01350{left:478.466667pt;}
.x75_c01350{left:480.773333pt;}
.x63_c01350{left:483.066667pt;}
.x99_c01350{left:484.613333pt;}
.x7c_c01350{left:489.213333pt;}
.x8a_c01350{left:490.746667pt;}
.x4e_c01350{left:493.053333pt;}
.xee_c01350{left:494.586667pt;}
.x7f_c01350{left:496.133333pt;}
.x89_c01350{left:497.666667pt;}
.x8b_c01350{left:499.973333pt;}
.x85_c01350{left:503.040000pt;}
.x7b_c01350{left:504.573333pt;}
.x69_c01350{left:506.106667pt;}
.x7d_c01350{left:509.186667pt;}
.xe4_c01350{left:514.560000pt;}
.xdd_c01350{left:516.866667pt;}
.x8e_c01350{left:518.400000pt;}
.x81_c01350{left:519.933333pt;}
.x64_c01350{left:523.013333pt;}
.x4f_c01350{left:524.546667pt;}
.x72_c01350{left:526.853333pt;}
.xa4_c01350{left:528.386667pt;}
.xe1_c01350{left:530.693333pt;}
.x86_c01350{left:533.760000pt;}
.x8f_c01350{left:535.293333pt;}
.x76_c01350{left:536.826667pt;}
.x50_c01350{left:539.906667pt;}
.x80_c01350{left:541.440000pt;}
.x58_c01350{left:542.973333pt;}
.xef_c01350{left:545.280000pt;}
.x95_c01350{left:549.120000pt;}
.xe2_c01350{left:552.186667pt;}
.x51_c01350{left:553.733333pt;}
.x59_c01350{left:557.573333pt;}
.xd8_c01350{left:559.106667pt;}
.x6a_c01350{left:562.173333pt;}
.xe8_c01350{left:563.706667pt;}
.xdb_c01350{left:565.253333pt;}
.x73_c01350{left:567.546667pt;}
.x6b_c01350{left:571.386667pt;}
.xe5_c01350{left:572.933333pt;}
.x52_c01350{left:576.000000pt;}
.x9a_c01350{left:578.306667pt;}
.xa5_c01350{left:581.373333pt;}
.x6c_c01350{left:588.293333pt;}
.x5a_c01350{left:590.586667pt;}
.xed_c01350{left:592.133333pt;}
.xec_c01350{left:599.040000pt;}
.x77_c01350{left:602.880000pt;}
.x6d_c01350{left:605.186667pt;}
.xa6_c01350{left:606.720000pt;}
.x5b_c01350{left:609.786667pt;}
.x65_c01350{left:612.093333pt;}
.xe3_c01350{left:615.933333pt;}
.x5c_c01350{left:621.306667pt;}
.x7e_c01350{left:622.853333pt;}
.xdf_c01350{left:624.386667pt;}
.x8c_c01350{left:626.693333pt;}
.x78_c01350{left:628.986667pt;}
.x5d_c01350{left:632.826667pt;}
.x96_c01350{left:634.373333pt;}
.x6e_c01350{left:635.906667pt;}
.x90_c01350{left:637.440000pt;}
.x5e_c01350{left:638.973333pt;}
.xe0_c01350{left:641.280000pt;}
.x53_c01350{left:643.586667pt;}
.x8d_c01350{left:647.426667pt;}
.x5f_c01350{left:648.960000pt;}
.xde_c01350{left:651.266667pt;}
.x54_c01350{left:655.106667pt;}
.x60_c01350{left:656.640000pt;}
.x6f_c01350{left:662.786667pt;}
.x66_c01350{left:665.093333pt;}
.x61_c01350{left:666.626667pt;}
.x82_c01350{left:668.160000pt;}
.x55_c01350{left:669.693333pt;}
.xa7_c01350{left:672.773333pt;}
.x79_c01350{left:675.066667pt;}
.x56_c01350{left:677.373333pt;}
.xea_c01350{left:678.906667pt;}
.x97_c01350{left:681.986667pt;}
.xa8_c01350{left:683.520000pt;}
.x87_c01350{left:685.053333pt;}
.x70_c01350{left:686.586667pt;}
.xe6_c01350{left:689.666667pt;}
.x83_c01350{left:691.200000pt;}
.xd6_c01350{left:692.733333pt;}
.xa9_c01350{left:696.573333pt;}
.xd9_c01350{left:698.880000pt;}
.xdc_c01350{left:706.560000pt;}
.xd7_c01350{left:711.173333pt;}
.xaa_c01350{left:712.706667pt;}
.x57_c01350{left:714.240000pt;}
.x67_c01350{left:716.546667pt;}
.x74_c01350{left:719.613333pt;}
.x98_c01350{left:721.920000pt;}
.x91_c01350{left:724.226667pt;}
.x7a_c01350{left:727.293333pt;}
.xe7_c01350{left:728.826667pt;}
.x84_c01350{left:733.440000pt;}
.xda_c01350{left:736.506667pt;}
.x68_c01350{left:739.586667pt;}
.xeb_c01350{left:742.653333pt;}
.x92_c01350{left:744.186667pt;}
.x93_c01350{left:750.333333pt;}
.x71_c01350{left:755.706667pt;}
.x88_c01350{left:761.093333pt;}
.xf0_c01350{left:923.906667pt;}
.xf1_c01350{left:935.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01351;src:url('chunks/assets/font_d93d7d0d7cee851f29656632.woff2')format("woff");}.ff1_c01351{font-family:ff1_c01351;line-height:1.109863;font-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_c01351{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01351{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);}
.mcb_c01351{transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059525,0.000000,0.000000,0.250000,0,0);}
.m107_c01351{transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.087500,0.000000,0.000000,0.250000,0,0);}
.mea_c01351{transform:matrix(0.088725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088725,0.000000,0.000000,0.250000,0,0);}
.mf3_c01351{transform:matrix(0.093200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093200,0.000000,0.000000,0.250000,0,0);}
.m15_c01351{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);}
.m58_c01351{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.mf4_c01351{transform:matrix(0.107925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107925,0.000000,0.000000,0.250000,0,0);}
.m4_c01351{transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112400,0.000000,0.000000,0.250000,0,0);}
.mca_c01351{transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113650,0.000000,0.000000,0.250000,0,0);}
.m11b_c01351{transform:matrix(0.118150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118150,0.000000,0.000000,0.250000,0,0);}
.m13c_c01351{transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121650,0.000000,0.000000,0.250000,0,0);}
.mcc_c01351{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mfb_c01351{transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125825,0.000000,0.000000,0.250000,0,0);}
.ma3_c01351{transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);}
.m115_c01351{transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134800,0.000000,0.000000,0.250000,0,0);}
.m4d_c01351{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);}
.maa_c01351{transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138500,0.000000,0.000000,0.250000,0,0);}
.m85_c01351{transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138725,0.000000,0.000000,0.250000,0,0);}
.m6d_c01351{transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138775,0.000000,0.000000,0.250000,0,0);}
.m132_c01351{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m128_c01351{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m110_c01351{transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142000,0.000000,0.000000,0.250000,0,0);}
.m1_c01351{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m3_c01351{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mba_c01351{transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144200,0.000000,0.000000,0.250000,0,0);}
.mf7_c01351{transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145025,0.000000,0.000000,0.250000,0,0);}
.m41_c01351{transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148525,0.000000,0.000000,0.250000,0,0);}
.m13e_c01351{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m10a_c01351{transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152250,0.000000,0.000000,0.250000,0,0);}
.mad_c01351{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);}
.m4a_c01351{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);}
.mc2_c01351{transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157700,0.000000,0.000000,0.250000,0,0);}
.med_c01351{transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);}
.mf5_c01351{transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);}
.m130_c01351{transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159700,0.000000,0.000000,0.250000,0,0);}
.m84_c01351{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m133_c01351{transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165175,0.000000,0.000000,0.250000,0,0);}
.m33_c01351{transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165600,0.000000,0.000000,0.250000,0,0);}
.mbf_c01351{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.mc0_c01351{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m96_c01351{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);}
.m8a_c01351{transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168275,0.000000,0.000000,0.250000,0,0);}
.me8_c01351{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m13a_c01351{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.mb8_c01351{transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173025,0.000000,0.000000,0.250000,0,0);}
.m9a_c01351{transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173050,0.000000,0.000000,0.250000,0,0);}
.mc4_c01351{transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173075,0.000000,0.000000,0.250000,0,0);}
.md9_c01351{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);}
.md2_c01351{transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174350,0.000000,0.000000,0.250000,0,0);}
.m4f_c01351{transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174650,0.000000,0.000000,0.250000,0,0);}
.m12b_c01351{transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176450,0.000000,0.000000,0.250000,0,0);}
.m43_c01351{transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176850,0.000000,0.000000,0.250000,0,0);}
.mbd_c01351{transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177775,0.000000,0.000000,0.250000,0,0);}
.m53_c01351{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);}
.m11f_c01351{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.mc3_c01351{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);}
.me2_c01351{transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);}
.m117_c01351{transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178775,0.000000,0.000000,0.250000,0,0);}
.mf8_c01351{transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179900,0.000000,0.000000,0.250000,0,0);}
.m129_c01351{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);}
.m7b_c01351{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m12f_c01351{transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182550,0.000000,0.000000,0.250000,0,0);}
.me1_c01351{transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184900,0.000000,0.000000,0.250000,0,0);}
.m11a_c01351{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);}
.m112_c01351{transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185425,0.000000,0.000000,0.250000,0,0);}
.m12c_c01351{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.m78_c01351{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.ma6_c01351{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.mf2_c01351{transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187825,0.000000,0.000000,0.250000,0,0);}
.m138_c01351{transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189125,0.000000,0.000000,0.250000,0,0);}
.m50_c01351{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);}
.mac_c01351{transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189525,0.000000,0.000000,0.250000,0,0);}
.m3c_c01351{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);}
.me5_c01351{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);}
.mf9_c01351{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.mcf_c01351{transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190375,0.000000,0.000000,0.250000,0,0);}
.m10e_c01351{transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190425,0.000000,0.000000,0.250000,0,0);}
.m11e_c01351{transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190750,0.000000,0.000000,0.250000,0,0);}
.mfc_c01351{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m25_c01351{transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191175,0.000000,0.000000,0.250000,0,0);}
.mc6_c01351{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.m37_c01351{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.m13b_c01351{transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192400,0.000000,0.000000,0.250000,0,0);}
.m91_c01351{transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193375,0.000000,0.000000,0.250000,0,0);}
.mc1_c01351{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);}
.m7f_c01351{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m102_c01351{transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194925,0.000000,0.000000,0.250000,0,0);}
.mae_c01351{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.m10f_c01351{transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);}
.m86_c01351{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m59_c01351{transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197300,0.000000,0.000000,0.250000,0,0);}
.m63_c01351{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);}
.mb9_c01351{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.m9e_c01351{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m8d_c01351{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m39_c01351{transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201250,0.000000,0.000000,0.250000,0,0);}
.m118_c01351{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);}
.m103_c01351{transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201575,0.000000,0.000000,0.250000,0,0);}
.m7a_c01351{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.mc5_c01351{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);}
.m8e_c01351{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);}
.m8b_c01351{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);}
.m47_c01351{transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);}
.m93_c01351{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);}
.mdd_c01351{transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);}
.m136_c01351{transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207200,0.000000,0.000000,0.250000,0,0);}
.mcd_c01351{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);}
.m60_c01351{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);}
.me3_c01351{transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208000,0.000000,0.000000,0.250000,0,0);}
.m120_c01351{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.m5e_c01351{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);}
.m19_c01351{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);}
.me0_c01351{transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208800,0.000000,0.000000,0.250000,0,0);}
.maf_c01351{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);}
.m82_c01351{transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209250,0.000000,0.000000,0.250000,0,0);}
.m56_c01351{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.mbe_c01351{transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211825,0.000000,0.000000,0.250000,0,0);}
.m51_c01351{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m135_c01351{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);}
.m124_c01351{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.mde_c01351{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.ma9_c01351{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);}
.mf6_c01351{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);}
.m87_c01351{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);}
.mdf_c01351{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.m119_c01351{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.mb0_c01351{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.mf1_c01351{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.me7_c01351{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);}
.mfd_c01351{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);}
.m134_c01351{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);}
.m5d_c01351{transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219300,0.000000,0.000000,0.250000,0,0);}
.m12d_c01351{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.m66_c01351{transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220025,0.000000,0.000000,0.250000,0,0);}
.mb7_c01351{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);}
.m12a_c01351{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);}
.m92_c01351{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);}
.m10c_c01351{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);}
.mb2_c01351{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m95_c01351{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);}
.m6b_c01351{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.mda_c01351{transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);}
.m3f_c01351{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);}
.ma7_c01351{transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);}
.m61_c01351{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m99_c01351{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m97_c01351{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.ma4_c01351{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.m116_c01351{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.m36_c01351{transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226150,0.000000,0.000000,0.250000,0,0);}
.m57_c01351{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);}
.m123_c01351{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);}
.mb3_c01351{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.md0_c01351{transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228425,0.000000,0.000000,0.250000,0,0);}
.mdc_c01351{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.m7d_c01351{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);}
.mc7_c01351{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);}
.m121_c01351{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);}
.mce_c01351{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);}
.m5f_c01351{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);}
.m5b_c01351{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);}
.m44_c01351{transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);}
.m24_c01351{transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231225,0.000000,0.000000,0.250000,0,0);}
.m74_c01351{transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231325,0.000000,0.000000,0.250000,0,0);}
.m113_c01351{transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232250,0.000000,0.000000,0.250000,0,0);}
.m126_c01351{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);}
.m6e_c01351{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);}
.m88_c01351{transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233025,0.000000,0.000000,0.250000,0,0);}
.m7c_c01351{transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233475,0.000000,0.000000,0.250000,0,0);}
.m114_c01351{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);}
.m7e_c01351{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.m22_c01351{transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234400,0.000000,0.000000,0.250000,0,0);}
.md1_c01351{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);}
.me_c01351{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);}
.m105_c01351{transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);}
.m4e_c01351{transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235725,0.000000,0.000000,0.250000,0,0);}
.m111_c01351{transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236125,0.000000,0.000000,0.250000,0,0);}
.md8_c01351{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);}
.m6c_c01351{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m106_c01351{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);}
.m127_c01351{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);}
.m10d_c01351{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);}
.m5c_c01351{transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238975,0.000000,0.000000,0.250000,0,0);}
.m67_c01351{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);}
.m139_c01351{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m94_c01351{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);}
.mb_c01351{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.mef_c01351{transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240750,0.000000,0.000000,0.250000,0,0);}
.m70_c01351{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m3e_c01351{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);}
.m49_c01351{transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242600,0.000000,0.000000,0.250000,0,0);}
.mdb_c01351{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);}
.me4_c01351{transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244000,0.000000,0.000000,0.250000,0,0);}
.m90_c01351{transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245325,0.000000,0.000000,0.250000,0,0);}
.ma8_c01351{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);}
.ma1_c01351{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);}
.mb1_c01351{transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246225,0.000000,0.000000,0.250000,0,0);}
.m137_c01351{transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247100,0.000000,0.000000,0.250000,0,0);}
.m81_c01351{transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247825,0.000000,0.000000,0.250000,0,0);}
.m122_c01351{transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247950,0.000000,0.000000,0.250000,0,0);}
.md4_c01351{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m79_c01351{transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248100,0.000000,0.000000,0.250000,0,0);}
.m75_c01351{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.mfe_c01351{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mff_c01351{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);}
.m27_c01351{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);}
.m52_c01351{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);}
.m71_c01351{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01351{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_c01351{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);}
.m1a_c01351{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);}
.m45_c01351{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);}
.m6a_c01351{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m55_c01351{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m18_c01351{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m42_c01351{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);}
.m4b_c01351{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m32_c01351{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);}
.m35_c01351{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);}
.m29_c01351{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01351{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);}
.m2_c01351{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01351{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01351{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);}
.m72_c01351{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m40_c01351{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);}
.m65_c01351{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);}
.m28_c01351{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01351{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m38_c01351{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);}
.m2b_c01351{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01351{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m80_c01351{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);}
.m54_c01351{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m6_c01351{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m12_c01351{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md3_c01351{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.mf_c01351{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m62_c01351{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m73_c01351{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m9_c01351{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);}
.mee_c01351{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m23_c01351{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m77_c01351{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.ma_c01351{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.md_c01351{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m104_c01351{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);}
.m69_c01351{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01351{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m21_c01351{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01351{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m16_c01351{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);}
.m131_c01351{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m68_c01351{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);}
.m31_c01351{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m11_c01351{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01351{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01351{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m125_c01351{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m20_c01351{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.meb_c01351{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m64_c01351{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m10_c01351{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.md5_c01351{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);}
.m1c_c01351{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);}
.m30_c01351{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m100_c01351{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);}
.md6_c01351{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01351{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);}
.m8_c01351{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01351{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m48_c01351{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m98_c01351{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.me6_c01351{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.ma2_c01351{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m11d_c01351{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mb4_c01351{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m4c_c01351{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m0_c01351{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01351{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m13f_c01351{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m46_c01351{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mbc_c01351{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m7_c01351{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m76_c01351{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);}
.mbb_c01351{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);}
.m1b_c01351{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.mf0_c01351{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m101_c01351{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.ma5_c01351{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);}
.m12e_c01351{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mc_c01351{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m10b_c01351{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01351{transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.555000,0.000000,0.000000,0.250000,0,0);}
.mfa_c01351{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m17_c01351{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m5_c01351{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m9f_c01351{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.mc8_c01351{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m9b_c01351{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);}
.m89_c01351{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m26_c01351{transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.680000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01351{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.md7_c01351{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m13d_c01351{transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);}
.m9d_c01351{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m83_c01351{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m14_c01351{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.mab_c01351{transform:matrix(1.067500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.067500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.067500,0.000000,0.000000,0.250000,0,0);}
.m108_c01351{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.me9_c01351{transform:matrix(1.077500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.077500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.077500,0.000000,0.000000,0.250000,0,0);}
.m109_c01351{transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);}
.mec_c01351{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01351{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.ma0_c01351{transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.800000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01351{transform:matrix(2.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.025000,0.000000,0.000000,0.250000,0,0);}
.mb5_c01351{transform:matrix(2.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.447500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01351{transform:matrix(3.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.645000,0.000000,0.000000,0.250000,0,0);}
.v2_c01351{vertical-align:-13.860000px;}
.v3_c01351{vertical-align:-3.480000px;}
.v0_c01351{vertical-align:0.000000px;}
.v1_c01351{vertical-align:13.860000px;}
.ls2_c01351{letter-spacing:0.000000px;}
.ls0_c01351{letter-spacing:21.083073px;}
.ls1_c01351{letter-spacing:289.072800px;}
.sc__c01351{text-shadow:none;}
.sc0_c01351{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01351{-webkit-text-stroke:0px transparent;}
.sc0_c01351{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c01351{word-spacing:-7.107840px;}
.ws3_c01351{word-spacing:0.000000px;}
.ws1_c01351{word-spacing:4.425840px;}
.ws0_c01351{word-spacing:223.705140px;}
.fc0_c01351{color:transparent;}
.fs11_c01351{font-size:3.456000px;}
.fs3_c01351{font-size:6.000000px;}
.fs1c_c01351{font-size:6.900000px;}
.fs2_c01351{font-size:10.380000px;}
.fs1a_c01351{font-size:13.800000px;}
.fsb_c01351{font-size:17.280000px;}
.fs4_c01351{font-size:20.760000px;}
.fs1_c01351{font-size:24.180000px;}
.fs0_c01351{font-size:27.660000px;}
.fs17_c01351{font-size:31.080000px;}
.fs19_c01351{font-size:34.560000px;}
.fs5_c01351{font-size:38.040000px;}
.fs1d_c01351{font-size:41.460000px;}
.fs15_c01351{font-size:44.940000px;}
.fs12_c01351{font-size:48.360000px;}
.fs16_c01351{font-size:51.840000px;}
.fs13_c01351{font-size:55.320000px;}
.fs14_c01351{font-size:58.740000px;}
.fs18_c01351{font-size:62.220000px;}
.fsd_c01351{font-size:65.640000px;}
.fs1e_c01351{font-size:69.120000px;}
.fs1b_c01351{font-size:72.600000px;}
.fs1f_c01351{font-size:76.020000px;}
.fsa_c01351{font-size:79.500000px;}
.fs21_c01351{font-size:82.920000px;}
.fsf_c01351{font-size:86.400000px;}
.fs20_c01351{font-size:89.880000px;}
.fs9_c01351{font-size:93.300000px;}
.fsc_c01351{font-size:96.780000px;}
.fs10_c01351{font-size:100.200000px;}
.fs7_c01351{font-size:120.960000px;}
.fs6_c01351{font-size:124.440000px;}
.fse_c01351{font-size:134.760000px;}
.fs8_c01351{font-size:138.240000px;}
.y0_c01351{bottom:0.000000px;}
.y1a3_c01351{bottom:125.280000px;}
.y1a4_c01351{bottom:128.730000px;}
.y1a5_c01351{bottom:135.645000px;}
.y1a2_c01351{bottom:181.440000px;}
.y1a1_c01351{bottom:202.170000px;}
.y19e_c01351{bottom:207.360000px;}
.y19f_c01351{bottom:209.955000px;}
.y19c_c01351{bottom:211.680000px;}
.y1a0_c01351{bottom:213.405000px;}
.y19a_c01351{bottom:215.130000px;}
.y19b_c01351{bottom:216.000000px;}
.y19d_c01351{bottom:216.870000px;}
.y199_c01351{bottom:229.830000px;}
.y198_c01351{bottom:231.555000px;}
.y192_c01351{bottom:232.410000px;}
.y191_c01351{bottom:233.280000px;}
.y196_c01351{bottom:234.150000px;}
.y195_c01351{bottom:235.875000px;}
.y193_c01351{bottom:236.730000px;}
.y197_c01351{bottom:237.600000px;}
.y194_c01351{bottom:240.195000px;}
.y18f_c01351{bottom:245.370000px;}
.y18d_c01351{bottom:247.110000px;}
.y18a_c01351{bottom:248.835000px;}
.y185_c01351{bottom:249.690000px;}
.y186_c01351{bottom:251.430000px;}
.y18b_c01351{bottom:253.155000px;}
.y187_c01351{bottom:255.750000px;}
.y188_c01351{bottom:256.605000px;}
.y189_c01351{bottom:258.330000px;}
.y18c_c01351{bottom:259.200000px;}
.y190_c01351{bottom:261.795000px;}
.y18e_c01351{bottom:262.650000px;}
.y183_c01351{bottom:263.520000px;}
.y184_c01351{bottom:265.245000px;}
.y182_c01351{bottom:266.115000px;}
.y181_c01351{bottom:266.970000px;}
.y17b_c01351{bottom:267.840000px;}
.y17d_c01351{bottom:268.710000px;}
.y17e_c01351{bottom:269.565000px;}
.y17c_c01351{bottom:270.435000px;}
.y17f_c01351{bottom:272.160000px;}
.y180_c01351{bottom:274.755000px;}
.y179_c01351{bottom:281.670000px;}
.y174_c01351{bottom:284.250000px;}
.y173_c01351{bottom:285.120000px;}
.y176_c01351{bottom:285.990000px;}
.y178_c01351{bottom:286.845000px;}
.y177_c01351{bottom:287.715000px;}
.y17a_c01351{bottom:293.760000px;}
.y175_c01351{bottom:295.485000px;}
.y172_c01351{bottom:296.355000px;}
.y171_c01351{bottom:297.210000px;}
.y170_c01351{bottom:298.950000px;}
.y16f_c01351{bottom:302.400000px;}
.y16c_c01351{bottom:303.270000px;}
.y16d_c01351{bottom:304.125000px;}
.y16e_c01351{bottom:304.995000px;}
.y16a_c01351{bottom:315.360000px;}
.y169_c01351{bottom:316.230000px;}
.y16b_c01351{bottom:317.955000px;}
.y167_c01351{bottom:320.550000px;}
.y168_c01351{bottom:321.405000px;}
.y166_c01351{bottom:322.275000px;}
.y161_c01351{bottom:324.000000px;}
.y163_c01351{bottom:324.870000px;}
.y162_c01351{bottom:325.725000px;}
.y164_c01351{bottom:329.190000px;}
.y160_c01351{bottom:330.045000px;}
.y165_c01351{bottom:333.510000px;}
.y15c_c01351{bottom:334.365000px;}
.y15f_c01351{bottom:335.235000px;}
.y15b_c01351{bottom:336.960000px;}
.y156_c01351{bottom:338.685000px;}
.y157_c01351{bottom:339.555000px;}
.y159_c01351{bottom:341.280000px;}
.y15a_c01351{bottom:342.150000px;}
.y15e_c01351{bottom:343.005000px;}
.y158_c01351{bottom:343.875000px;}
.y15d_c01351{bottom:346.470000px;}
.y154_c01351{bottom:349.920000px;}
.y153_c01351{bottom:352.515000px;}
.y150_c01351{bottom:355.110000px;}
.y152_c01351{bottom:355.965000px;}
.y151_c01351{bottom:358.560000px;}
.y14f_c01351{bottom:359.430000px;}
.y14e_c01351{bottom:361.155000px;}
.y155_c01351{bottom:362.880000px;}
.y14d_c01351{bottom:367.200000px;}
.y14a_c01351{bottom:368.070000px;}
.y14c_c01351{bottom:368.925000px;}
.y149_c01351{bottom:369.795000px;}
.y147_c01351{bottom:371.520000px;}
.y145_c01351{bottom:372.390000px;}
.y14b_c01351{bottom:375.840000px;}
.y146_c01351{bottom:378.435000px;}
.y148_c01351{bottom:382.755000px;}
.y144_c01351{bottom:387.930000px;}
.y143_c01351{bottom:388.800000px;}
.y142_c01351{bottom:389.670000px;}
.y141_c01351{bottom:390.525000px;}
.y13c_c01351{bottom:391.395000px;}
.y140_c01351{bottom:392.250000px;}
.y13e_c01351{bottom:393.120000px;}
.y13d_c01351{bottom:393.990000px;}
.y13a_c01351{bottom:394.845000px;}
.y139_c01351{bottom:395.715000px;}
.y13f_c01351{bottom:400.890000px;}
.y138_c01351{bottom:401.760000px;}
.y13b_c01351{bottom:403.485000px;}
.y136_c01351{bottom:404.355000px;}
.y137_c01351{bottom:406.950000px;}
.y134_c01351{bottom:407.805000px;}
.y132_c01351{bottom:408.675000px;}
.y135_c01351{bottom:409.530000px;}
.y133_c01351{bottom:411.270000px;}
.y131_c01351{bottom:413.850000px;}
.y130_c01351{bottom:420.765000px;}
.y12f_c01351{bottom:421.635000px;}
.y12d_c01351{bottom:425.085000px;}
.y12c_c01351{bottom:426.810000px;}
.y12e_c01351{bottom:427.680000px;}
.y12a_c01351{bottom:437.190000px;}
.y128_c01351{bottom:439.770000px;}
.y12b_c01351{bottom:440.640000px;}
.y125_c01351{bottom:442.365000px;}
.y129_c01351{bottom:443.235000px;}
.y127_c01351{bottom:445.830000px;}
.y124_c01351{bottom:446.685000px;}
.y126_c01351{bottom:447.555000px;}
.y123_c01351{bottom:457.920000px;}
.y122_c01351{bottom:460.515000px;}
.y121_c01351{bottom:461.370000px;}
.y120_c01351{bottom:464.835000px;}
.y11f_c01351{bottom:473.475000px;}
.y11d_c01351{bottom:475.200000px;}
.y11e_c01351{bottom:478.650000px;}
.y11c_c01351{bottom:480.390000px;}
.y11b_c01351{bottom:481.245000px;}
.y11a_c01351{bottom:482.115000px;}
.y119_c01351{bottom:483.840000px;}
.y117_c01351{bottom:492.480000px;}
.y118_c01351{bottom:493.350000px;}
.y116_c01351{bottom:495.075000px;}
.y113_c01351{bottom:495.930000px;}
.y115_c01351{bottom:496.800000px;}
.y112_c01351{bottom:500.250000px;}
.y114_c01351{bottom:501.120000px;}
.y111_c01351{bottom:506.310000px;}
.y10f_c01351{bottom:508.890000px;}
.y110_c01351{bottom:509.760000px;}
.y109_c01351{bottom:512.355000px;}
.y10b_c01351{bottom:513.210000px;}
.y10e_c01351{bottom:514.080000px;}
.y108_c01351{bottom:514.950000px;}
.y10a_c01351{bottom:515.805000px;}
.y10c_c01351{bottom:516.675000px;}
.y10d_c01351{bottom:517.530000px;}
.y106_c01351{bottom:524.445000px;}
.y105_c01351{bottom:525.315000px;}
.y104_c01351{bottom:526.170000px;}
.y107_c01351{bottom:527.040000px;}
.y102_c01351{bottom:527.910000px;}
.y103_c01351{bottom:530.490000px;}
.yff_c01351{bottom:532.230000px;}
.y101_c01351{bottom:533.955000px;}
.y100_c01351{bottom:535.680000px;}
.yfc_c01351{bottom:541.725000px;}
.yfd_c01351{bottom:543.450000px;}
.yfa_c01351{bottom:544.320000px;}
.yfb_c01351{bottom:546.045000px;}
.yf9_c01351{bottom:547.770000px;}
.yf5_c01351{bottom:549.510000px;}
.yf4_c01351{bottom:550.365000px;}
.yfe_c01351{bottom:552.960000px;}
.yf8_c01351{bottom:556.410000px;}
.yf3_c01351{bottom:559.005000px;}
.yf6_c01351{bottom:560.730000px;}
.yf7_c01351{bottom:561.600000px;}
.yf2_c01351{bottom:565.050000px;}
.yee_c01351{bottom:565.920000px;}
.yf1_c01351{bottom:566.790000px;}
.yf0_c01351{bottom:568.515000px;}
.yef_c01351{bottom:569.370000px;}
.yec_c01351{bottom:576.285000px;}
.yed_c01351{bottom:578.010000px;}
.yea_c01351{bottom:578.880000px;}
.ye8_c01351{bottom:579.750000px;}
.yeb_c01351{bottom:581.475000px;}
.ye4_c01351{bottom:582.330000px;}
.ye6_c01351{bottom:585.795000px;}
.ye9_c01351{bottom:587.520000px;}
.ye5_c01351{bottom:591.840000px;}
.ye3_c01351{bottom:593.565000px;}
.ye7_c01351{bottom:594.435000px;}
.ye2_c01351{bottom:596.160000px;}
.ye1_c01351{bottom:600.480000px;}
.ye0_c01351{bottom:601.350000px;}
.ydd_c01351{bottom:602.205000px;}
.ydc_c01351{bottom:603.075000px;}
.ydb_c01351{bottom:603.930000px;}
.yda_c01351{bottom:604.800000px;}
.yde_c01351{bottom:606.525000px;}
.ydf_c01351{bottom:607.395000px;}
.yd7_c01351{bottom:610.845000px;}
.yd8_c01351{bottom:611.715000px;}
.yd5_c01351{bottom:614.310000px;}
.yd9_c01351{bottom:615.165000px;}
.yd4_c01351{bottom:616.035000px;}
.yd6_c01351{bottom:619.485000px;}
.yd2_c01351{bottom:621.210000px;}
.yd3_c01351{bottom:622.080000px;}
.ycf_c01351{bottom:628.995000px;}
.yd0_c01351{bottom:629.850000px;}
.yce_c01351{bottom:630.720000px;}
.yd1_c01351{bottom:632.445000px;}
.ycd_c01351{bottom:633.315000px;}
.ycc_c01351{bottom:635.040000px;}
.ycb_c01351{bottom:635.910000px;}
.yc7_c01351{bottom:637.635000px;}
.yc8_c01351{bottom:638.490000px;}
.yca_c01351{bottom:639.360000px;}
.yc9_c01351{bottom:640.230000px;}
.yc4_c01351{bottom:643.680000px;}
.yc6_c01351{bottom:646.275000px;}
.yc5_c01351{bottom:647.130000px;}
.yc2_c01351{bottom:648.000000px;}
.yc0_c01351{bottom:648.870000px;}
.ybf_c01351{bottom:650.595000px;}
.yc3_c01351{bottom:651.450000px;}
.yc1_c01351{bottom:653.190000px;}
.ybd_c01351{bottom:655.770000px;}
.ybc_c01351{bottom:656.640000px;}
.ybe_c01351{bottom:661.830000px;}
.yb7_c01351{bottom:664.410000px;}
.yba_c01351{bottom:665.280000px;}
.yb6_c01351{bottom:666.150000px;}
.yb5_c01351{bottom:668.730000px;}
.yb4_c01351{bottom:672.195000px;}
.ybb_c01351{bottom:674.790000px;}
.yb9_c01351{bottom:678.240000px;}
.yb8_c01351{bottom:679.965000px;}
.yaf_c01351{bottom:682.560000px;}
.yb2_c01351{bottom:684.285000px;}
.yb1_c01351{bottom:685.155000px;}
.yb0_c01351{bottom:686.010000px;}
.yac_c01351{bottom:686.880000px;}
.yae_c01351{bottom:687.750000px;}
.yad_c01351{bottom:688.605000px;}
.yaa_c01351{bottom:689.475000px;}
.ya9_c01351{bottom:690.330000px;}
.ya8_c01351{bottom:691.200000px;}
.yb3_c01351{bottom:695.520000px;}
.yab_c01351{bottom:698.970000px;}
.ya7_c01351{bottom:700.710000px;}
.ya2_c01351{bottom:702.435000px;}
.ya5_c01351{bottom:703.290000px;}
.ya0_c01351{bottom:704.160000px;}
.ya1_c01351{bottom:705.030000px;}
.ya6_c01351{bottom:705.885000px;}
.ya3_c01351{bottom:706.755000px;}
.ya4_c01351{bottom:707.610000px;}
.y9f_c01351{bottom:715.395000px;}
.y99_c01351{bottom:719.715000px;}
.y9e_c01351{bottom:720.570000px;}
.y9d_c01351{bottom:721.440000px;}
.y9c_c01351{bottom:722.310000px;}
.y9b_c01351{bottom:723.165000px;}
.y9a_c01351{bottom:724.035000px;}
.y98_c01351{bottom:724.890000px;}
.y96_c01351{bottom:725.760000px;}
.y97_c01351{bottom:726.630000px;}
.y95_c01351{bottom:734.400000px;}
.y94_c01351{bottom:736.125000px;}
.y93_c01351{bottom:738.720000px;}
.y92_c01351{bottom:743.910000px;}
.y8f_c01351{bottom:750.810000px;}
.y91_c01351{bottom:751.680000px;}
.y8e_c01351{bottom:752.550000px;}
.y8c_c01351{bottom:755.130000px;}
.y89_c01351{bottom:756.000000px;}
.y8a_c01351{bottom:756.870000px;}
.y8d_c01351{bottom:757.725000px;}
.y88_c01351{bottom:759.450000px;}
.y87_c01351{bottom:761.190000px;}
.y8b_c01351{bottom:768.090000px;}
.y90_c01351{bottom:771.555000px;}
.y86_c01351{bottom:773.280000px;}
.y84_c01351{bottom:774.150000px;}
.y85_c01351{bottom:775.005000px;}
.y81_c01351{bottom:775.875000px;}
.y82_c01351{bottom:777.600000px;}
.y83_c01351{bottom:778.470000px;}
.y80_c01351{bottom:791.430000px;}
.y7f_c01351{bottom:793.155000px;}
.y7e_c01351{bottom:794.010000px;}
.y7d_c01351{bottom:794.880000px;}
.y78_c01351{bottom:806.970000px;}
.y79_c01351{bottom:807.840000px;}
.y7c_c01351{bottom:808.710000px;}
.y7b_c01351{bottom:809.565000px;}
.y77_c01351{bottom:811.290000px;}
.y7a_c01351{bottom:812.160000px;}
.y71_c01351{bottom:824.250000px;}
.y76_c01351{bottom:826.845000px;}
.y72_c01351{bottom:827.715000px;}
.y74_c01351{bottom:828.570000px;}
.y70_c01351{bottom:829.440000px;}
.y75_c01351{bottom:833.760000px;}
.y73_c01351{bottom:838.950000px;}
.y6f_c01351{bottom:840.675000px;}
.y6b_c01351{bottom:841.530000px;}
.y6e_c01351{bottom:842.400000px;}
.y6d_c01351{bottom:844.125000px;}
.y6c_c01351{bottom:844.995000px;}
.y6a_c01351{bottom:845.850000px;}
.y69_c01351{bottom:846.720000px;}
.y66_c01351{bottom:858.810000px;}
.y67_c01351{bottom:859.680000px;}
.y68_c01351{bottom:863.130000px;}
.y65_c01351{bottom:864.000000px;}
.y61_c01351{bottom:872.640000px;}
.y63_c01351{bottom:874.365000px;}
.y5d_c01351{bottom:875.235000px;}
.y60_c01351{bottom:876.090000px;}
.y5f_c01351{bottom:877.830000px;}
.y62_c01351{bottom:878.685000px;}
.y5e_c01351{bottom:880.410000px;}
.y5c_c01351{bottom:881.280000px;}
.y5b_c01351{bottom:882.150000px;}
.y5a_c01351{bottom:884.730000px;}
.y64_c01351{bottom:888.195000px;}
.y59_c01351{bottom:889.920000px;}
.y58_c01351{bottom:890.790000px;}
.y57_c01351{bottom:891.645000px;}
.y55_c01351{bottom:894.240000px;}
.y50_c01351{bottom:896.835000px;}
.y53_c01351{bottom:897.690000px;}
.y52_c01351{bottom:898.560000px;}
.y51_c01351{bottom:899.430000px;}
.y56_c01351{bottom:900.285000px;}
.y54_c01351{bottom:904.605000px;}
.y4f_c01351{bottom:909.795000px;}
.y4e_c01351{bottom:910.650000px;}
.y49_c01351{bottom:912.390000px;}
.y4a_c01351{bottom:913.245000px;}
.y4c_c01351{bottom:914.115000px;}
.y4b_c01351{bottom:914.970000px;}
.y4d_c01351{bottom:921.030000px;}
.y47_c01351{bottom:927.930000px;}
.y43_c01351{bottom:928.800000px;}
.y42_c01351{bottom:929.670000px;}
.y44_c01351{bottom:931.395000px;}
.y46_c01351{bottom:932.250000px;}
.y41_c01351{bottom:935.715000px;}
.y48_c01351{bottom:942.630000px;}
.y45_c01351{bottom:944.355000px;}
.y3b_c01351{bottom:946.080000px;}
.y40_c01351{bottom:946.950000px;}
.y3c_c01351{bottom:947.805000px;}
.y3f_c01351{bottom:948.675000px;}
.y3e_c01351{bottom:949.530000px;}
.y3d_c01351{bottom:950.400000px;}
.y3a_c01351{bottom:951.270000px;}
.y38_c01351{bottom:964.230000px;}
.y39_c01351{bottom:966.810000px;}
.y35_c01351{bottom:967.680000px;}
.y37_c01351{bottom:968.550000px;}
.y36_c01351{bottom:969.405000px;}
.y34_c01351{bottom:976.320000px;}
.y32_c01351{bottom:979.770000px;}
.y33_c01351{bottom:981.510000px;}
.y30_c01351{bottom:982.365000px;}
.y31_c01351{bottom:983.235000px;}
.y2f_c01351{bottom:984.090000px;}
.y2e_c01351{bottom:984.960000px;}
.y2d_c01351{bottom:985.830000px;}
.y2c_c01351{bottom:997.920000px;}
.y2b_c01351{bottom:998.790000px;}
.y2a_c01351{bottom:1000.515000px;}
.y29_c01351{bottom:1001.370000px;}
.y26_c01351{bottom:1003.110000px;}
.y27_c01351{bottom:1003.965000px;}
.y28_c01351{bottom:1004.835000px;}
.y25_c01351{bottom:1009.155000px;}
.y24_c01351{bottom:1012.605000px;}
.y21_c01351{bottom:1014.330000px;}
.y22_c01351{bottom:1018.650000px;}
.y1f_c01351{bottom:1021.245000px;}
.y20_c01351{bottom:1022.970000px;}
.y23_c01351{bottom:1025.565000px;}
.y1c_c01351{bottom:1031.610000px;}
.y1d_c01351{bottom:1033.350000px;}
.y1e_c01351{bottom:1034.205000px;}
.y1b_c01351{bottom:1035.075000px;}
.y19_c01351{bottom:1037.670000px;}
.y18_c01351{bottom:1044.570000px;}
.y1a_c01351{bottom:1047.165000px;}
.y17_c01351{bottom:1048.890000px;}
.y1a7_c01351{bottom:1055.805000px;}
.y16_c01351{bottom:1059.270000px;}
.y10_c01351{bottom:1081.725000px;}
.y11_c01351{bottom:1085.190000px;}
.ye_c01351{bottom:1087.770000px;}
.yf_c01351{bottom:1106.790000px;}
.yc_c01351{bottom:1111.965000px;}
.y15_c01351{bottom:1114.560000px;}
.y14_c01351{bottom:1118.010000px;}
.yd_c01351{bottom:1118.880000px;}
.y13_c01351{bottom:1119.750000px;}
.y9_c01351{bottom:1143.930000px;}
.y12_c01351{bottom:1153.440000px;}
.yb_c01351{bottom:1156.890000px;}
.ya_c01351{bottom:1158.630000px;}
.y8_c01351{bottom:1273.530000px;}
.y7_c01351{bottom:1383.270000px;}
.y6_c01351{bottom:1384.995000px;}
.y5_c01351{bottom:1385.850000px;}
.y4_c01351{bottom:1390.170000px;}
.y2_c01351{bottom:1397.955000px;}
.y1_c01351{bottom:1399.680000px;}
.y3_c01351{bottom:1400.550000px;}
.y1a6_c01351{bottom:1413.510000px;}
.h12_c01351{height:3.110063px;}
.h1f_c01351{height:5.399414px;}
.h1d_c01351{height:6.209326px;}
.h4_c01351{height:9.340986px;}
.h1b_c01351{height:12.418652px;}
.hc_c01351{height:15.550313px;}
.h5_c01351{height:18.681973px;}
.h3_c01351{height:21.759639px;}
.h2_c01351{height:24.891299px;}
.h17_c01351{height:27.968965px;}
.h1a_c01351{height:31.100625px;}
.h6_c01351{height:34.232285px;}
.h20_c01351{height:37.309951px;}
.h18_c01351{height:40.441611px;}
.h13_c01351{height:43.519277px;}
.h16_c01351{height:46.650937px;}
.h14_c01351{height:49.782598px;}
.h15_c01351{height:52.860264px;}
.h19_c01351{height:55.991924px;}
.he_c01351{height:59.069590px;}
.h21_c01351{height:62.201250px;}
.h1e_c01351{height:63.642598px;}
.h1c_c01351{height:65.332910px;}
.h22_c01351{height:68.410576px;}
.hb_c01351{height:71.542236px;}
.h24_c01351{height:74.619902px;}
.h10_c01351{height:77.751563px;}
.h23_c01351{height:80.883223px;}
.ha_c01351{height:83.960889px;}
.hd_c01351{height:87.092549px;}
.h11_c01351{height:90.170215px;}
.h8_c01351{height:108.852188px;}
.h7_c01351{height:111.983848px;}
.hf_c01351{height:121.270840px;}
.h9_c01351{height:124.402500px;}
.h1_c01351{height:1513.500000px;}
.h0_c01351{height:1513.725000px;}
.w0_c01351{width:1079.130000px;}
.w1_c01351{width:1079.250000px;}
.x0_c01351{left:0.000000px;}
.x9_c01351{left:165.030000px;}
.x6_c01351{left:176.250000px;}
.x7_c01351{left:189.210000px;}
.x8_c01351{left:211.680000px;}
.x18_c01351{left:214.275000px;}
.x19_c01351{left:224.640000px;}
.x5d_c01351{left:226.365000px;}
.x9b_c01351{left:228.090000px;}
.xde_c01351{left:229.830000px;}
.x72_c01351{left:233.280000px;}
.x54_c01351{left:235.875000px;}
.xd9_c01351{left:237.600000px;}
.xf3_c01351{left:247.965000px;}
.xea_c01351{left:249.690000px;}
.xa_c01351{left:255.750000px;}
.x90_c01351{left:260.925000px;}
.x83_c01351{left:263.520000px;}
.x2c_c01351{left:266.115000px;}
.xd1_c01351{left:267.840000px;}
.x5e_c01351{left:272.160000px;}
.xbd_c01351{left:279.075000px;}
.x68_c01351{left:284.250000px;}
.x55_c01351{left:286.845000px;}
.xad_c01351{left:288.570000px;}
.x84_c01351{left:291.165000px;}
.xb7_c01351{left:293.760000px;}
.x78_c01351{left:297.210000px;}
.x2d_c01351{left:299.805000px;}
.x95_c01351{left:301.530000px;}
.x88_c01351{left:303.270000px;}
.xe6_c01351{left:304.995000px;}
.xd_c01351{left:306.720000px;}
.xc7_c01351{left:308.445000px;}
.x6d_c01351{left:311.040000px;}
.x85_c01351{left:313.635000px;}
.x79_c01351{left:315.360000px;}
.x9c_c01351{left:318.810000px;}
.x7d_c01351{left:321.405000px;}
.x89_c01351{left:324.000000px;}
.xa2_c01351{left:326.595000px;}
.x7a_c01351{left:332.640000px;}
.x69_c01351{left:334.365000px;}
.xbe_c01351{left:336.960000px;}
.x5f_c01351{left:339.555000px;}
.x6e_c01351{left:342.150000px;}
.xb_c01351{left:343.875000px;}
.xf_c01351{left:348.195000px;}
.x96_c01351{left:351.645000px;}
.x60_c01351{left:355.110000px;}
.xae_c01351{left:358.560000px;}
.x22_c01351{left:360.285000px;}
.x73_c01351{left:362.880000px;}
.x7e_c01351{left:364.605000px;}
.xf4_c01351{left:367.200000px;}
.x7b_c01351{left:368.925000px;}
.x23_c01351{left:370.650000px;}
.xe7_c01351{left:372.390000px;}
.xf5_c01351{left:374.970000px;}
.x9d_c01351{left:377.565000px;}
.x49_c01351{left:381.030000px;}
.x24_c01351{left:382.755000px;}
.x1a_c01351{left:384.480000px;}
.x3e_c01351{left:387.075000px;}
.xcb_c01351{left:389.670000px;}
.x8a_c01351{left:392.250000px;}
.x4_c01351{left:393.990000px;}
.x34_c01351{left:400.035000px;}
.x1b_c01351{left:402.630000px;}
.x25_c01351{left:406.950000px;}
.x5_c01351{left:409.530000px;}
.x91_c01351{left:412.995000px;}
.xcc_c01351{left:415.590000px;}
.xe8_c01351{left:418.170000px;}
.x61_c01351{left:419.910000px;}
.x97_c01351{left:423.360000px;}
.xe_c01351{left:425.955000px;}
.x3f_c01351{left:427.680000px;}
.x35_c01351{left:429.405000px;}
.x7f_c01351{left:431.130000px;}
.x7c_c01351{left:432.870000px;}
.xc_c01351{left:434.595000px;}
.x4e_c01351{left:437.190000px;}
.x45_c01351{left:438.915000px;}
.x2e_c01351{left:440.640000px;}
.xc8_c01351{left:442.365000px;}
.x56_c01351{left:444.960000px;}
.x80_c01351{left:448.410000px;}
.xd4_c01351{left:450.150000px;}
.xef_c01351{left:453.600000px;}
.x74_c01351{left:456.195000px;}
.x9e_c01351{left:457.920000px;}
.x62_c01351{left:459.645000px;}
.x36_c01351{left:462.240000px;}
.xfb_c01351{left:466.560000px;}
.x75_c01351{left:470.010000px;}
.xf0_c01351{left:472.605000px;}
.x98_c01351{left:475.200000px;}
.x57_c01351{left:476.925000px;}
.x81_c01351{left:478.650000px;}
.xfa_c01351{left:481.245000px;}
.xa3_c01351{left:482.970000px;}
.xb8_c01351{left:486.435000px;}
.x76_c01351{left:488.160000px;}
.xbf_c01351{left:490.755000px;}
.xdb_c01351{left:494.205000px;}
.xdf_c01351{left:496.800000px;}
.x11_c01351{left:499.395000px;}
.xe0_c01351{left:501.120000px;}
.x2f_c01351{left:502.845000px;}
.x4a_c01351{left:505.440000px;}
.xe1_c01351{left:507.165000px;}
.x9f_c01351{left:509.760000px;}
.xc2_c01351{left:511.485000px;}
.xb4_c01351{left:513.210000px;}
.xb9_c01351{left:514.950000px;}
.x40_c01351{left:516.675000px;}
.x14_c01351{left:518.400000px;}
.xeb_c01351{left:520.125000px;}
.x26_c01351{left:522.720000px;}
.x6a_c01351{left:525.315000px;}
.xa8_c01351{left:527.040000px;}
.x37_c01351{left:530.490000px;}
.xe2_c01351{left:534.810000px;}
.x41_c01351{left:538.275000px;}
.x58_c01351{left:548.640000px;}
.x42_c01351{left:550.365000px;}
.x63_c01351{left:552.960000px;}
.x38_c01351{left:554.685000px;}
.x27_c01351{left:556.410000px;}
.x15_c01351{left:558.150000px;}
.xd5_c01351{left:559.875000px;}
.x30_c01351{left:562.470000px;}
.xba_c01351{left:564.195000px;}
.x8b_c01351{left:567.645000px;}
.x1c_c01351{left:569.370000px;}
.xc0_c01351{left:571.110000px;}
.xfc_c01351{left:574.560000px;}
.xb5_c01351{left:581.475000px;}
.x6b_c01351{left:588.390000px;}
.xb6_c01351{left:590.970000px;}
.x4f_c01351{left:593.565000px;}
.x16_c01351{left:595.290000px;}
.x10_c01351{left:597.030000px;}
.xdc_c01351{left:598.755000px;}
.xa4_c01351{left:603.930000px;}
.xf6_c01351{left:607.395000px;}
.x8c_c01351{left:609.120000px;}
.x82_c01351{left:610.845000px;}
.xaf_c01351{left:613.440000px;}
.x92_c01351{left:616.035000px;}
.xf7_c01351{left:617.760000px;}
.xbb_c01351{left:619.485000px;}
.x6c_c01351{left:622.080000px;}
.x99_c01351{left:625.530000px;}
.x43_c01351{left:627.270000px;}
.x6f_c01351{left:628.995000px;}
.x50_c01351{left:630.720000px;}
.x77_c01351{left:633.315000px;}
.xa0_c01351{left:635.040000px;}
.x1d_c01351{left:636.765000px;}
.x31_c01351{left:640.230000px;}
.x12_c01351{left:641.955000px;}
.x64_c01351{left:644.550000px;}
.xd7_c01351{left:646.275000px;}
.xb0_c01351{left:648.000000px;}
.x39_c01351{left:649.725000px;}
.xd2_c01351{left:652.320000px;}
.x28_c01351{left:654.915000px;}
.x86_c01351{left:657.510000px;}
.xe3_c01351{left:659.235000px;}
.xa5_c01351{left:661.830000px;}
.xb1_c01351{left:664.410000px;}
.x8d_c01351{left:667.005000px;}
.x59_c01351{left:669.600000px;}
.x29_c01351{left:671.325000px;}
.xcd_c01351{left:674.790000px;}
.x3a_c01351{left:676.515000px;}
.x65_c01351{left:679.965000px;}
.xc3_c01351{left:681.690000px;}
.xda_c01351{left:685.155000px;}
.x1e_c01351{left:686.880000px;}
.x51_c01351{left:690.330000px;}
.xd8_c01351{left:692.070000px;}
.x87_c01351{left:693.795000px;}
.xf8_c01351{left:695.520000px;}
.x70_c01351{left:697.245000px;}
.x17_c01351{left:699.840000px;}
.xce_c01351{left:705.030000px;}
.xf1_c01351{left:706.755000px;}
.x3b_c01351{left:708.480000px;}
.xf9_c01351{left:711.930000px;}
.x32_c01351{left:714.525000px;}
.x4b_c01351{left:717.990000px;}
.x46_c01351{left:721.440000px;}
.xcf_c01351{left:723.165000px;}
.x66_c01351{left:725.760000px;}
.x93_c01351{left:729.210000px;}
.xc4_c01351{left:730.950000px;}
.x5a_c01351{left:733.530000px;}
.xd0_c01351{left:735.270000px;}
.xec_c01351{left:736.995000px;}
.x47_c01351{left:738.720000px;}
.xbc_c01351{left:743.040000px;}
.xdd_c01351{left:750.810000px;}
.x1_c01351{left:752.550000px;}
.x44_c01351{left:756.000000px;}
.xa9_c01351{left:758.595000px;}
.x71_c01351{left:763.770000px;}
.x2a_c01351{left:765.510000px;}
.x3c_c01351{left:769.830000px;}
.xfd_c01351{left:771.555000px;}
.xff_c01351{left:773.280000px;}
.xc9_c01351{left:775.005000px;}
.x100_c01351{left:776.730000px;}
.x13_c01351{left:778.470000px;}
.x5b_c01351{left:784.515000px;}
.x48_c01351{left:786.240000px;}
.xfe_c01351{left:788.835000px;}
.xb2_c01351{left:790.560000px;}
.x101_c01351{left:792.285000px;}
.x67_c01351{left:794.880000px;}
.xaa_c01351{left:796.605000px;}
.xed_c01351{left:799.200000px;}
.x9a_c01351{left:803.520000px;}
.xf2_c01351{left:806.115000px;}
.xc5_c01351{left:808.710000px;}
.xe9_c01351{left:811.290000px;}
.x8e_c01351{left:814.755000px;}
.x52_c01351{left:816.480000px;}
.x94_c01351{left:818.205000px;}
.x4c_c01351{left:821.670000px;}
.xb3_c01351{left:825.120000px;}
.xe4_c01351{left:827.715000px;}
.x53_c01351{left:830.310000px;}
.x2b_c01351{left:832.890000px;}
.xca_c01351{left:834.630000px;}
.x33_c01351{left:836.355000px;}
.xa1_c01351{left:839.805000px;}
.x4d_c01351{left:841.530000px;}
.x5c_c01351{left:843.270000px;}
.x1f_c01351{left:846.720000px;}
.x3d_c01351{left:848.445000px;}
.xd6_c01351{left:850.170000px;}
.xc1_c01351{left:851.910000px;}
.xa6_c01351{left:854.490000px;}
.x20_c01351{left:857.085000px;}
.xab_c01351{left:859.680000px;}
.xe5_c01351{left:865.725000px;}
.xd3_c01351{left:867.450000px;}
.x21_c01351{left:869.190000px;}
.x2_c01351{left:871.770000px;}
.x3_c01351{left:882.150000px;}
.x8f_c01351{left:883.875000px;}
.xee_c01351{left:885.600000px;}
.xc6_c01351{left:889.050000px;}
.xac_c01351{left:895.110000px;}
.xa7_c01351{left:901.155000px;}
.x102_c01351{left:916.710000px;}
.x103_c01351{left:924.480000px;}
@media print{
.v2_c01351{vertical-align:-12.320000pt;}
.v3_c01351{vertical-align:-3.093333pt;}
.v0_c01351{vertical-align:0.000000pt;}
.v1_c01351{vertical-align:12.320000pt;}
.ls2_c01351{letter-spacing:0.000000pt;}
.ls0_c01351{letter-spacing:18.740510pt;}
.ls1_c01351{letter-spacing:256.953600pt;}
.ws2_c01351{word-spacing:-6.318080pt;}
.ws3_c01351{word-spacing:0.000000pt;}
.ws1_c01351{word-spacing:3.934080pt;}
.ws0_c01351{word-spacing:198.849013pt;}
.fs11_c01351{font-size:3.072000pt;}
.fs3_c01351{font-size:5.333333pt;}
.fs1c_c01351{font-size:6.133333pt;}
.fs2_c01351{font-size:9.226667pt;}
.fs1a_c01351{font-size:12.266667pt;}
.fsb_c01351{font-size:15.360000pt;}
.fs4_c01351{font-size:18.453333pt;}
.fs1_c01351{font-size:21.493333pt;}
.fs0_c01351{font-size:24.586667pt;}
.fs17_c01351{font-size:27.626667pt;}
.fs19_c01351{font-size:30.720000pt;}
.fs5_c01351{font-size:33.813333pt;}
.fs1d_c01351{font-size:36.853333pt;}
.fs15_c01351{font-size:39.946667pt;}
.fs12_c01351{font-size:42.986667pt;}
.fs16_c01351{font-size:46.080000pt;}
.fs13_c01351{font-size:49.173333pt;}
.fs14_c01351{font-size:52.213333pt;}
.fs18_c01351{font-size:55.306667pt;}
.fsd_c01351{font-size:58.346667pt;}
.fs1e_c01351{font-size:61.440000pt;}
.fs1b_c01351{font-size:64.533333pt;}
.fs1f_c01351{font-size:67.573333pt;}
.fsa_c01351{font-size:70.666667pt;}
.fs21_c01351{font-size:73.706667pt;}
.fsf_c01351{font-size:76.800000pt;}
.fs20_c01351{font-size:79.893333pt;}
.fs9_c01351{font-size:82.933333pt;}
.fsc_c01351{font-size:86.026667pt;}
.fs10_c01351{font-size:89.066667pt;}
.fs7_c01351{font-size:107.520000pt;}
.fs6_c01351{font-size:110.613333pt;}
.fse_c01351{font-size:119.786667pt;}
.fs8_c01351{font-size:122.880000pt;}
.y0_c01351{bottom:0.000000pt;}
.y1a3_c01351{bottom:111.360000pt;}
.y1a4_c01351{bottom:114.426667pt;}
.y1a5_c01351{bottom:120.573333pt;}
.y1a2_c01351{bottom:161.280000pt;}
.y1a1_c01351{bottom:179.706667pt;}
.y19e_c01351{bottom:184.320000pt;}
.y19f_c01351{bottom:186.626667pt;}
.y19c_c01351{bottom:188.160000pt;}
.y1a0_c01351{bottom:189.693333pt;}
.y19a_c01351{bottom:191.226667pt;}
.y19b_c01351{bottom:192.000000pt;}
.y19d_c01351{bottom:192.773333pt;}
.y199_c01351{bottom:204.293333pt;}
.y198_c01351{bottom:205.826667pt;}
.y192_c01351{bottom:206.586667pt;}
.y191_c01351{bottom:207.360000pt;}
.y196_c01351{bottom:208.133333pt;}
.y195_c01351{bottom:209.666667pt;}
.y193_c01351{bottom:210.426667pt;}
.y197_c01351{bottom:211.200000pt;}
.y194_c01351{bottom:213.506667pt;}
.y18f_c01351{bottom:218.106667pt;}
.y18d_c01351{bottom:219.653333pt;}
.y18a_c01351{bottom:221.186667pt;}
.y185_c01351{bottom:221.946667pt;}
.y186_c01351{bottom:223.493333pt;}
.y18b_c01351{bottom:225.026667pt;}
.y187_c01351{bottom:227.333333pt;}
.y188_c01351{bottom:228.093333pt;}
.y189_c01351{bottom:229.626667pt;}
.y18c_c01351{bottom:230.400000pt;}
.y190_c01351{bottom:232.706667pt;}
.y18e_c01351{bottom:233.466667pt;}
.y183_c01351{bottom:234.240000pt;}
.y184_c01351{bottom:235.773333pt;}
.y182_c01351{bottom:236.546667pt;}
.y181_c01351{bottom:237.306667pt;}
.y17b_c01351{bottom:238.080000pt;}
.y17d_c01351{bottom:238.853333pt;}
.y17e_c01351{bottom:239.613333pt;}
.y17c_c01351{bottom:240.386667pt;}
.y17f_c01351{bottom:241.920000pt;}
.y180_c01351{bottom:244.226667pt;}
.y179_c01351{bottom:250.373333pt;}
.y174_c01351{bottom:252.666667pt;}
.y173_c01351{bottom:253.440000pt;}
.y176_c01351{bottom:254.213333pt;}
.y178_c01351{bottom:254.973333pt;}
.y177_c01351{bottom:255.746667pt;}
.y17a_c01351{bottom:261.120000pt;}
.y175_c01351{bottom:262.653333pt;}
.y172_c01351{bottom:263.426667pt;}
.y171_c01351{bottom:264.186667pt;}
.y170_c01351{bottom:265.733333pt;}
.y16f_c01351{bottom:268.800000pt;}
.y16c_c01351{bottom:269.573333pt;}
.y16d_c01351{bottom:270.333333pt;}
.y16e_c01351{bottom:271.106667pt;}
.y16a_c01351{bottom:280.320000pt;}
.y169_c01351{bottom:281.093333pt;}
.y16b_c01351{bottom:282.626667pt;}
.y167_c01351{bottom:284.933333pt;}
.y168_c01351{bottom:285.693333pt;}
.y166_c01351{bottom:286.466667pt;}
.y161_c01351{bottom:288.000000pt;}
.y163_c01351{bottom:288.773333pt;}
.y162_c01351{bottom:289.533333pt;}
.y164_c01351{bottom:292.613333pt;}
.y160_c01351{bottom:293.373333pt;}
.y165_c01351{bottom:296.453333pt;}
.y15c_c01351{bottom:297.213333pt;}
.y15f_c01351{bottom:297.986667pt;}
.y15b_c01351{bottom:299.520000pt;}
.y156_c01351{bottom:301.053333pt;}
.y157_c01351{bottom:301.826667pt;}
.y159_c01351{bottom:303.360000pt;}
.y15a_c01351{bottom:304.133333pt;}
.y15e_c01351{bottom:304.893333pt;}
.y158_c01351{bottom:305.666667pt;}
.y15d_c01351{bottom:307.973333pt;}
.y154_c01351{bottom:311.040000pt;}
.y153_c01351{bottom:313.346667pt;}
.y150_c01351{bottom:315.653333pt;}
.y152_c01351{bottom:316.413333pt;}
.y151_c01351{bottom:318.720000pt;}
.y14f_c01351{bottom:319.493333pt;}
.y14e_c01351{bottom:321.026667pt;}
.y155_c01351{bottom:322.560000pt;}
.y14d_c01351{bottom:326.400000pt;}
.y14a_c01351{bottom:327.173333pt;}
.y14c_c01351{bottom:327.933333pt;}
.y149_c01351{bottom:328.706667pt;}
.y147_c01351{bottom:330.240000pt;}
.y145_c01351{bottom:331.013333pt;}
.y14b_c01351{bottom:334.080000pt;}
.y146_c01351{bottom:336.386667pt;}
.y148_c01351{bottom:340.226667pt;}
.y144_c01351{bottom:344.826667pt;}
.y143_c01351{bottom:345.600000pt;}
.y142_c01351{bottom:346.373333pt;}
.y141_c01351{bottom:347.133333pt;}
.y13c_c01351{bottom:347.906667pt;}
.y140_c01351{bottom:348.666667pt;}
.y13e_c01351{bottom:349.440000pt;}
.y13d_c01351{bottom:350.213333pt;}
.y13a_c01351{bottom:350.973333pt;}
.y139_c01351{bottom:351.746667pt;}
.y13f_c01351{bottom:356.346667pt;}
.y138_c01351{bottom:357.120000pt;}
.y13b_c01351{bottom:358.653333pt;}
.y136_c01351{bottom:359.426667pt;}
.y137_c01351{bottom:361.733333pt;}
.y134_c01351{bottom:362.493333pt;}
.y132_c01351{bottom:363.266667pt;}
.y135_c01351{bottom:364.026667pt;}
.y133_c01351{bottom:365.573333pt;}
.y131_c01351{bottom:367.866667pt;}
.y130_c01351{bottom:374.013333pt;}
.y12f_c01351{bottom:374.786667pt;}
.y12d_c01351{bottom:377.853333pt;}
.y12c_c01351{bottom:379.386667pt;}
.y12e_c01351{bottom:380.160000pt;}
.y12a_c01351{bottom:388.613333pt;}
.y128_c01351{bottom:390.906667pt;}
.y12b_c01351{bottom:391.680000pt;}
.y125_c01351{bottom:393.213333pt;}
.y129_c01351{bottom:393.986667pt;}
.y127_c01351{bottom:396.293333pt;}
.y124_c01351{bottom:397.053333pt;}
.y126_c01351{bottom:397.826667pt;}
.y123_c01351{bottom:407.040000pt;}
.y122_c01351{bottom:409.346667pt;}
.y121_c01351{bottom:410.106667pt;}
.y120_c01351{bottom:413.186667pt;}
.y11f_c01351{bottom:420.866667pt;}
.y11d_c01351{bottom:422.400000pt;}
.y11e_c01351{bottom:425.466667pt;}
.y11c_c01351{bottom:427.013333pt;}
.y11b_c01351{bottom:427.773333pt;}
.y11a_c01351{bottom:428.546667pt;}
.y119_c01351{bottom:430.080000pt;}
.y117_c01351{bottom:437.760000pt;}
.y118_c01351{bottom:438.533333pt;}
.y116_c01351{bottom:440.066667pt;}
.y113_c01351{bottom:440.826667pt;}
.y115_c01351{bottom:441.600000pt;}
.y112_c01351{bottom:444.666667pt;}
.y114_c01351{bottom:445.440000pt;}
.y111_c01351{bottom:450.053333pt;}
.y10f_c01351{bottom:452.346667pt;}
.y110_c01351{bottom:453.120000pt;}
.y109_c01351{bottom:455.426667pt;}
.y10b_c01351{bottom:456.186667pt;}
.y10e_c01351{bottom:456.960000pt;}
.y108_c01351{bottom:457.733333pt;}
.y10a_c01351{bottom:458.493333pt;}
.y10c_c01351{bottom:459.266667pt;}
.y10d_c01351{bottom:460.026667pt;}
.y106_c01351{bottom:466.173333pt;}
.y105_c01351{bottom:466.946667pt;}
.y104_c01351{bottom:467.706667pt;}
.y107_c01351{bottom:468.480000pt;}
.y102_c01351{bottom:469.253333pt;}
.y103_c01351{bottom:471.546667pt;}
.yff_c01351{bottom:473.093333pt;}
.y101_c01351{bottom:474.626667pt;}
.y100_c01351{bottom:476.160000pt;}
.yfc_c01351{bottom:481.533333pt;}
.yfd_c01351{bottom:483.066667pt;}
.yfa_c01351{bottom:483.840000pt;}
.yfb_c01351{bottom:485.373333pt;}
.yf9_c01351{bottom:486.906667pt;}
.yf5_c01351{bottom:488.453333pt;}
.yf4_c01351{bottom:489.213333pt;}
.yfe_c01351{bottom:491.520000pt;}
.yf8_c01351{bottom:494.586667pt;}
.yf3_c01351{bottom:496.893333pt;}
.yf6_c01351{bottom:498.426667pt;}
.yf7_c01351{bottom:499.200000pt;}
.yf2_c01351{bottom:502.266667pt;}
.yee_c01351{bottom:503.040000pt;}
.yf1_c01351{bottom:503.813333pt;}
.yf0_c01351{bottom:505.346667pt;}
.yef_c01351{bottom:506.106667pt;}
.yec_c01351{bottom:512.253333pt;}
.yed_c01351{bottom:513.786667pt;}
.yea_c01351{bottom:514.560000pt;}
.ye8_c01351{bottom:515.333333pt;}
.yeb_c01351{bottom:516.866667pt;}
.ye4_c01351{bottom:517.626667pt;}
.ye6_c01351{bottom:520.706667pt;}
.ye9_c01351{bottom:522.240000pt;}
.ye5_c01351{bottom:526.080000pt;}
.ye3_c01351{bottom:527.613333pt;}
.ye7_c01351{bottom:528.386667pt;}
.ye2_c01351{bottom:529.920000pt;}
.ye1_c01351{bottom:533.760000pt;}
.ye0_c01351{bottom:534.533333pt;}
.ydd_c01351{bottom:535.293333pt;}
.ydc_c01351{bottom:536.066667pt;}
.ydb_c01351{bottom:536.826667pt;}
.yda_c01351{bottom:537.600000pt;}
.yde_c01351{bottom:539.133333pt;}
.ydf_c01351{bottom:539.906667pt;}
.yd7_c01351{bottom:542.973333pt;}
.yd8_c01351{bottom:543.746667pt;}
.yd5_c01351{bottom:546.053333pt;}
.yd9_c01351{bottom:546.813333pt;}
.yd4_c01351{bottom:547.586667pt;}
.yd6_c01351{bottom:550.653333pt;}
.yd2_c01351{bottom:552.186667pt;}
.yd3_c01351{bottom:552.960000pt;}
.ycf_c01351{bottom:559.106667pt;}
.yd0_c01351{bottom:559.866667pt;}
.yce_c01351{bottom:560.640000pt;}
.yd1_c01351{bottom:562.173333pt;}
.ycd_c01351{bottom:562.946667pt;}
.ycc_c01351{bottom:564.480000pt;}
.ycb_c01351{bottom:565.253333pt;}
.yc7_c01351{bottom:566.786667pt;}
.yc8_c01351{bottom:567.546667pt;}
.yca_c01351{bottom:568.320000pt;}
.yc9_c01351{bottom:569.093333pt;}
.yc4_c01351{bottom:572.160000pt;}
.yc6_c01351{bottom:574.466667pt;}
.yc5_c01351{bottom:575.226667pt;}
.yc2_c01351{bottom:576.000000pt;}
.yc0_c01351{bottom:576.773333pt;}
.ybf_c01351{bottom:578.306667pt;}
.yc3_c01351{bottom:579.066667pt;}
.yc1_c01351{bottom:580.613333pt;}
.ybd_c01351{bottom:582.906667pt;}
.ybc_c01351{bottom:583.680000pt;}
.ybe_c01351{bottom:588.293333pt;}
.yb7_c01351{bottom:590.586667pt;}
.yba_c01351{bottom:591.360000pt;}
.yb6_c01351{bottom:592.133333pt;}
.yb5_c01351{bottom:594.426667pt;}
.yb4_c01351{bottom:597.506667pt;}
.ybb_c01351{bottom:599.813333pt;}
.yb9_c01351{bottom:602.880000pt;}
.yb8_c01351{bottom:604.413333pt;}
.yaf_c01351{bottom:606.720000pt;}
.yb2_c01351{bottom:608.253333pt;}
.yb1_c01351{bottom:609.026667pt;}
.yb0_c01351{bottom:609.786667pt;}
.yac_c01351{bottom:610.560000pt;}
.yae_c01351{bottom:611.333333pt;}
.yad_c01351{bottom:612.093333pt;}
.yaa_c01351{bottom:612.866667pt;}
.ya9_c01351{bottom:613.626667pt;}
.ya8_c01351{bottom:614.400000pt;}
.yb3_c01351{bottom:618.240000pt;}
.yab_c01351{bottom:621.306667pt;}
.ya7_c01351{bottom:622.853333pt;}
.ya2_c01351{bottom:624.386667pt;}
.ya5_c01351{bottom:625.146667pt;}
.ya0_c01351{bottom:625.920000pt;}
.ya1_c01351{bottom:626.693333pt;}
.ya6_c01351{bottom:627.453333pt;}
.ya3_c01351{bottom:628.226667pt;}
.ya4_c01351{bottom:628.986667pt;}
.y9f_c01351{bottom:635.906667pt;}
.y99_c01351{bottom:639.746667pt;}
.y9e_c01351{bottom:640.506667pt;}
.y9d_c01351{bottom:641.280000pt;}
.y9c_c01351{bottom:642.053333pt;}
.y9b_c01351{bottom:642.813333pt;}
.y9a_c01351{bottom:643.586667pt;}
.y98_c01351{bottom:644.346667pt;}
.y96_c01351{bottom:645.120000pt;}
.y97_c01351{bottom:645.893333pt;}
.y95_c01351{bottom:652.800000pt;}
.y94_c01351{bottom:654.333333pt;}
.y93_c01351{bottom:656.640000pt;}
.y92_c01351{bottom:661.253333pt;}
.y8f_c01351{bottom:667.386667pt;}
.y91_c01351{bottom:668.160000pt;}
.y8e_c01351{bottom:668.933333pt;}
.y8c_c01351{bottom:671.226667pt;}
.y89_c01351{bottom:672.000000pt;}
.y8a_c01351{bottom:672.773333pt;}
.y8d_c01351{bottom:673.533333pt;}
.y88_c01351{bottom:675.066667pt;}
.y87_c01351{bottom:676.613333pt;}
.y8b_c01351{bottom:682.746667pt;}
.y90_c01351{bottom:685.826667pt;}
.y86_c01351{bottom:687.360000pt;}
.y84_c01351{bottom:688.133333pt;}
.y85_c01351{bottom:688.893333pt;}
.y81_c01351{bottom:689.666667pt;}
.y82_c01351{bottom:691.200000pt;}
.y83_c01351{bottom:691.973333pt;}
.y80_c01351{bottom:703.493333pt;}
.y7f_c01351{bottom:705.026667pt;}
.y7e_c01351{bottom:705.786667pt;}
.y7d_c01351{bottom:706.560000pt;}
.y78_c01351{bottom:717.306667pt;}
.y79_c01351{bottom:718.080000pt;}
.y7c_c01351{bottom:718.853333pt;}
.y7b_c01351{bottom:719.613333pt;}
.y77_c01351{bottom:721.146667pt;}
.y7a_c01351{bottom:721.920000pt;}
.y71_c01351{bottom:732.666667pt;}
.y76_c01351{bottom:734.973333pt;}
.y72_c01351{bottom:735.746667pt;}
.y74_c01351{bottom:736.506667pt;}
.y70_c01351{bottom:737.280000pt;}
.y75_c01351{bottom:741.120000pt;}
.y73_c01351{bottom:745.733333pt;}
.y6f_c01351{bottom:747.266667pt;}
.y6b_c01351{bottom:748.026667pt;}
.y6e_c01351{bottom:748.800000pt;}
.y6d_c01351{bottom:750.333333pt;}
.y6c_c01351{bottom:751.106667pt;}
.y6a_c01351{bottom:751.866667pt;}
.y69_c01351{bottom:752.640000pt;}
.y66_c01351{bottom:763.386667pt;}
.y67_c01351{bottom:764.160000pt;}
.y68_c01351{bottom:767.226667pt;}
.y65_c01351{bottom:768.000000pt;}
.y61_c01351{bottom:775.680000pt;}
.y63_c01351{bottom:777.213333pt;}
.y5d_c01351{bottom:777.986667pt;}
.y60_c01351{bottom:778.746667pt;}
.y5f_c01351{bottom:780.293333pt;}
.y62_c01351{bottom:781.053333pt;}
.y5e_c01351{bottom:782.586667pt;}
.y5c_c01351{bottom:783.360000pt;}
.y5b_c01351{bottom:784.133333pt;}
.y5a_c01351{bottom:786.426667pt;}
.y64_c01351{bottom:789.506667pt;}
.y59_c01351{bottom:791.040000pt;}
.y58_c01351{bottom:791.813333pt;}
.y57_c01351{bottom:792.573333pt;}
.y55_c01351{bottom:794.880000pt;}
.y50_c01351{bottom:797.186667pt;}
.y53_c01351{bottom:797.946667pt;}
.y52_c01351{bottom:798.720000pt;}
.y51_c01351{bottom:799.493333pt;}
.y56_c01351{bottom:800.253333pt;}
.y54_c01351{bottom:804.093333pt;}
.y4f_c01351{bottom:808.706667pt;}
.y4e_c01351{bottom:809.466667pt;}
.y49_c01351{bottom:811.013333pt;}
.y4a_c01351{bottom:811.773333pt;}
.y4c_c01351{bottom:812.546667pt;}
.y4b_c01351{bottom:813.306667pt;}
.y4d_c01351{bottom:818.693333pt;}
.y47_c01351{bottom:824.826667pt;}
.y43_c01351{bottom:825.600000pt;}
.y42_c01351{bottom:826.373333pt;}
.y44_c01351{bottom:827.906667pt;}
.y46_c01351{bottom:828.666667pt;}
.y41_c01351{bottom:831.746667pt;}
.y48_c01351{bottom:837.893333pt;}
.y45_c01351{bottom:839.426667pt;}
.y3b_c01351{bottom:840.960000pt;}
.y40_c01351{bottom:841.733333pt;}
.y3c_c01351{bottom:842.493333pt;}
.y3f_c01351{bottom:843.266667pt;}
.y3e_c01351{bottom:844.026667pt;}
.y3d_c01351{bottom:844.800000pt;}
.y3a_c01351{bottom:845.573333pt;}
.y38_c01351{bottom:857.093333pt;}
.y39_c01351{bottom:859.386667pt;}
.y35_c01351{bottom:860.160000pt;}
.y37_c01351{bottom:860.933333pt;}
.y36_c01351{bottom:861.693333pt;}
.y34_c01351{bottom:867.840000pt;}
.y32_c01351{bottom:870.906667pt;}
.y33_c01351{bottom:872.453333pt;}
.y30_c01351{bottom:873.213333pt;}
.y31_c01351{bottom:873.986667pt;}
.y2f_c01351{bottom:874.746667pt;}
.y2e_c01351{bottom:875.520000pt;}
.y2d_c01351{bottom:876.293333pt;}
.y2c_c01351{bottom:887.040000pt;}
.y2b_c01351{bottom:887.813333pt;}
.y2a_c01351{bottom:889.346667pt;}
.y29_c01351{bottom:890.106667pt;}
.y26_c01351{bottom:891.653333pt;}
.y27_c01351{bottom:892.413333pt;}
.y28_c01351{bottom:893.186667pt;}
.y25_c01351{bottom:897.026667pt;}
.y24_c01351{bottom:900.093333pt;}
.y21_c01351{bottom:901.626667pt;}
.y22_c01351{bottom:905.466667pt;}
.y1f_c01351{bottom:907.773333pt;}
.y20_c01351{bottom:909.306667pt;}
.y23_c01351{bottom:911.613333pt;}
.y1c_c01351{bottom:916.986667pt;}
.y1d_c01351{bottom:918.533333pt;}
.y1e_c01351{bottom:919.293333pt;}
.y1b_c01351{bottom:920.066667pt;}
.y19_c01351{bottom:922.373333pt;}
.y18_c01351{bottom:928.506667pt;}
.y1a_c01351{bottom:930.813333pt;}
.y17_c01351{bottom:932.346667pt;}
.y1a7_c01351{bottom:938.493333pt;}
.y16_c01351{bottom:941.573333pt;}
.y10_c01351{bottom:961.533333pt;}
.y11_c01351{bottom:964.613333pt;}
.ye_c01351{bottom:966.906667pt;}
.yf_c01351{bottom:983.813333pt;}
.yc_c01351{bottom:988.413333pt;}
.y15_c01351{bottom:990.720000pt;}
.y14_c01351{bottom:993.786667pt;}
.yd_c01351{bottom:994.560000pt;}
.y13_c01351{bottom:995.333333pt;}
.y9_c01351{bottom:1016.826667pt;}
.y12_c01351{bottom:1025.280000pt;}
.yb_c01351{bottom:1028.346667pt;}
.ya_c01351{bottom:1029.893333pt;}
.y8_c01351{bottom:1132.026667pt;}
.y7_c01351{bottom:1229.573333pt;}
.y6_c01351{bottom:1231.106667pt;}
.y5_c01351{bottom:1231.866667pt;}
.y4_c01351{bottom:1235.706667pt;}
.y2_c01351{bottom:1242.626667pt;}
.y1_c01351{bottom:1244.160000pt;}
.y3_c01351{bottom:1244.933333pt;}
.y1a6_c01351{bottom:1256.453333pt;}
.h12_c01351{height:2.764500pt;}
.h1f_c01351{height:4.799479pt;}
.h1d_c01351{height:5.519401pt;}
.h4_c01351{height:8.303099pt;}
.h1b_c01351{height:11.038802pt;}
.hc_c01351{height:13.822500pt;}
.h5_c01351{height:16.606198pt;}
.h3_c01351{height:19.341901pt;}
.h2_c01351{height:22.125599pt;}
.h17_c01351{height:24.861302pt;}
.h1a_c01351{height:27.645000pt;}
.h6_c01351{height:30.428698pt;}
.h20_c01351{height:33.164401pt;}
.h18_c01351{height:35.948099pt;}
.h13_c01351{height:38.683802pt;}
.h16_c01351{height:41.467500pt;}
.h14_c01351{height:44.251198pt;}
.h15_c01351{height:46.986901pt;}
.h19_c01351{height:49.770599pt;}
.he_c01351{height:52.506302pt;}
.h21_c01351{height:55.290000pt;}
.h1e_c01351{height:56.571198pt;}
.h1c_c01351{height:58.073698pt;}
.h22_c01351{height:60.809401pt;}
.hb_c01351{height:63.593099pt;}
.h24_c01351{height:66.328802pt;}
.h10_c01351{height:69.112500pt;}
.h23_c01351{height:71.896198pt;}
.ha_c01351{height:74.631901pt;}
.hd_c01351{height:77.415599pt;}
.h11_c01351{height:80.151302pt;}
.h8_c01351{height:96.757500pt;}
.h7_c01351{height:99.541198pt;}
.hf_c01351{height:107.796302pt;}
.h9_c01351{height:110.580000pt;}
.h1_c01351{height:1345.333333pt;}
.h0_c01351{height:1345.533333pt;}
.w0_c01351{width:959.226667pt;}
.w1_c01351{width:959.333333pt;}
.x0_c01351{left:0.000000pt;}
.x9_c01351{left:146.693333pt;}
.x6_c01351{left:156.666667pt;}
.x7_c01351{left:168.186667pt;}
.x8_c01351{left:188.160000pt;}
.x18_c01351{left:190.466667pt;}
.x19_c01351{left:199.680000pt;}
.x5d_c01351{left:201.213333pt;}
.x9b_c01351{left:202.746667pt;}
.xde_c01351{left:204.293333pt;}
.x72_c01351{left:207.360000pt;}
.x54_c01351{left:209.666667pt;}
.xd9_c01351{left:211.200000pt;}
.xf3_c01351{left:220.413333pt;}
.xea_c01351{left:221.946667pt;}
.xa_c01351{left:227.333333pt;}
.x90_c01351{left:231.933333pt;}
.x83_c01351{left:234.240000pt;}
.x2c_c01351{left:236.546667pt;}
.xd1_c01351{left:238.080000pt;}
.x5e_c01351{left:241.920000pt;}
.xbd_c01351{left:248.066667pt;}
.x68_c01351{left:252.666667pt;}
.x55_c01351{left:254.973333pt;}
.xad_c01351{left:256.506667pt;}
.x84_c01351{left:258.813333pt;}
.xb7_c01351{left:261.120000pt;}
.x78_c01351{left:264.186667pt;}
.x2d_c01351{left:266.493333pt;}
.x95_c01351{left:268.026667pt;}
.x88_c01351{left:269.573333pt;}
.xe6_c01351{left:271.106667pt;}
.xd_c01351{left:272.640000pt;}
.xc7_c01351{left:274.173333pt;}
.x6d_c01351{left:276.480000pt;}
.x85_c01351{left:278.786667pt;}
.x79_c01351{left:280.320000pt;}
.x9c_c01351{left:283.386667pt;}
.x7d_c01351{left:285.693333pt;}
.x89_c01351{left:288.000000pt;}
.xa2_c01351{left:290.306667pt;}
.x7a_c01351{left:295.680000pt;}
.x69_c01351{left:297.213333pt;}
.xbe_c01351{left:299.520000pt;}
.x5f_c01351{left:301.826667pt;}
.x6e_c01351{left:304.133333pt;}
.xb_c01351{left:305.666667pt;}
.xf_c01351{left:309.506667pt;}
.x96_c01351{left:312.573333pt;}
.x60_c01351{left:315.653333pt;}
.xae_c01351{left:318.720000pt;}
.x22_c01351{left:320.253333pt;}
.x73_c01351{left:322.560000pt;}
.x7e_c01351{left:324.093333pt;}
.xf4_c01351{left:326.400000pt;}
.x7b_c01351{left:327.933333pt;}
.x23_c01351{left:329.466667pt;}
.xe7_c01351{left:331.013333pt;}
.xf5_c01351{left:333.306667pt;}
.x9d_c01351{left:335.613333pt;}
.x49_c01351{left:338.693333pt;}
.x24_c01351{left:340.226667pt;}
.x1a_c01351{left:341.760000pt;}
.x3e_c01351{left:344.066667pt;}
.xcb_c01351{left:346.373333pt;}
.x8a_c01351{left:348.666667pt;}
.x4_c01351{left:350.213333pt;}
.x34_c01351{left:355.586667pt;}
.x1b_c01351{left:357.893333pt;}
.x25_c01351{left:361.733333pt;}
.x5_c01351{left:364.026667pt;}
.x91_c01351{left:367.106667pt;}
.xcc_c01351{left:369.413333pt;}
.xe8_c01351{left:371.706667pt;}
.x61_c01351{left:373.253333pt;}
.x97_c01351{left:376.320000pt;}
.xe_c01351{left:378.626667pt;}
.x3f_c01351{left:380.160000pt;}
.x35_c01351{left:381.693333pt;}
.x7f_c01351{left:383.226667pt;}
.x7c_c01351{left:384.773333pt;}
.xc_c01351{left:386.306667pt;}
.x4e_c01351{left:388.613333pt;}
.x45_c01351{left:390.146667pt;}
.x2e_c01351{left:391.680000pt;}
.xc8_c01351{left:393.213333pt;}
.x56_c01351{left:395.520000pt;}
.x80_c01351{left:398.586667pt;}
.xd4_c01351{left:400.133333pt;}
.xef_c01351{left:403.200000pt;}
.x74_c01351{left:405.506667pt;}
.x9e_c01351{left:407.040000pt;}
.x62_c01351{left:408.573333pt;}
.x36_c01351{left:410.880000pt;}
.xfb_c01351{left:414.720000pt;}
.x75_c01351{left:417.786667pt;}
.xf0_c01351{left:420.093333pt;}
.x98_c01351{left:422.400000pt;}
.x57_c01351{left:423.933333pt;}
.x81_c01351{left:425.466667pt;}
.xfa_c01351{left:427.773333pt;}
.xa3_c01351{left:429.306667pt;}
.xb8_c01351{left:432.386667pt;}
.x76_c01351{left:433.920000pt;}
.xbf_c01351{left:436.226667pt;}
.xdb_c01351{left:439.293333pt;}
.xdf_c01351{left:441.600000pt;}
.x11_c01351{left:443.906667pt;}
.xe0_c01351{left:445.440000pt;}
.x2f_c01351{left:446.973333pt;}
.x4a_c01351{left:449.280000pt;}
.xe1_c01351{left:450.813333pt;}
.x9f_c01351{left:453.120000pt;}
.xc2_c01351{left:454.653333pt;}
.xb4_c01351{left:456.186667pt;}
.xb9_c01351{left:457.733333pt;}
.x40_c01351{left:459.266667pt;}
.x14_c01351{left:460.800000pt;}
.xeb_c01351{left:462.333333pt;}
.x26_c01351{left:464.640000pt;}
.x6a_c01351{left:466.946667pt;}
.xa8_c01351{left:468.480000pt;}
.x37_c01351{left:471.546667pt;}
.xe2_c01351{left:475.386667pt;}
.x41_c01351{left:478.466667pt;}
.x58_c01351{left:487.680000pt;}
.x42_c01351{left:489.213333pt;}
.x63_c01351{left:491.520000pt;}
.x38_c01351{left:493.053333pt;}
.x27_c01351{left:494.586667pt;}
.x15_c01351{left:496.133333pt;}
.xd5_c01351{left:497.666667pt;}
.x30_c01351{left:499.973333pt;}
.xba_c01351{left:501.506667pt;}
.x8b_c01351{left:504.573333pt;}
.x1c_c01351{left:506.106667pt;}
.xc0_c01351{left:507.653333pt;}
.xfc_c01351{left:510.720000pt;}
.xb5_c01351{left:516.866667pt;}
.x6b_c01351{left:523.013333pt;}
.xb6_c01351{left:525.306667pt;}
.x4f_c01351{left:527.613333pt;}
.x16_c01351{left:529.146667pt;}
.x10_c01351{left:530.693333pt;}
.xdc_c01351{left:532.226667pt;}
.xa4_c01351{left:536.826667pt;}
.xf6_c01351{left:539.906667pt;}
.x8c_c01351{left:541.440000pt;}
.x82_c01351{left:542.973333pt;}
.xaf_c01351{left:545.280000pt;}
.x92_c01351{left:547.586667pt;}
.xf7_c01351{left:549.120000pt;}
.xbb_c01351{left:550.653333pt;}
.x6c_c01351{left:552.960000pt;}
.x99_c01351{left:556.026667pt;}
.x43_c01351{left:557.573333pt;}
.x6f_c01351{left:559.106667pt;}
.x50_c01351{left:560.640000pt;}
.x77_c01351{left:562.946667pt;}
.xa0_c01351{left:564.480000pt;}
.x1d_c01351{left:566.013333pt;}
.x31_c01351{left:569.093333pt;}
.x12_c01351{left:570.626667pt;}
.x64_c01351{left:572.933333pt;}
.xd7_c01351{left:574.466667pt;}
.xb0_c01351{left:576.000000pt;}
.x39_c01351{left:577.533333pt;}
.xd2_c01351{left:579.840000pt;}
.x28_c01351{left:582.146667pt;}
.x86_c01351{left:584.453333pt;}
.xe3_c01351{left:585.986667pt;}
.xa5_c01351{left:588.293333pt;}
.xb1_c01351{left:590.586667pt;}
.x8d_c01351{left:592.893333pt;}
.x59_c01351{left:595.200000pt;}
.x29_c01351{left:596.733333pt;}
.xcd_c01351{left:599.813333pt;}
.x3a_c01351{left:601.346667pt;}
.x65_c01351{left:604.413333pt;}
.xc3_c01351{left:605.946667pt;}
.xda_c01351{left:609.026667pt;}
.x1e_c01351{left:610.560000pt;}
.x51_c01351{left:613.626667pt;}
.xd8_c01351{left:615.173333pt;}
.x87_c01351{left:616.706667pt;}
.xf8_c01351{left:618.240000pt;}
.x70_c01351{left:619.773333pt;}
.x17_c01351{left:622.080000pt;}
.xce_c01351{left:626.693333pt;}
.xf1_c01351{left:628.226667pt;}
.x3b_c01351{left:629.760000pt;}
.xf9_c01351{left:632.826667pt;}
.x32_c01351{left:635.133333pt;}
.x4b_c01351{left:638.213333pt;}
.x46_c01351{left:641.280000pt;}
.xcf_c01351{left:642.813333pt;}
.x66_c01351{left:645.120000pt;}
.x93_c01351{left:648.186667pt;}
.xc4_c01351{left:649.733333pt;}
.x5a_c01351{left:652.026667pt;}
.xd0_c01351{left:653.573333pt;}
.xec_c01351{left:655.106667pt;}
.x47_c01351{left:656.640000pt;}
.xbc_c01351{left:660.480000pt;}
.xdd_c01351{left:667.386667pt;}
.x1_c01351{left:668.933333pt;}
.x44_c01351{left:672.000000pt;}
.xa9_c01351{left:674.306667pt;}
.x71_c01351{left:678.906667pt;}
.x2a_c01351{left:680.453333pt;}
.x3c_c01351{left:684.293333pt;}
.xfd_c01351{left:685.826667pt;}
.xff_c01351{left:687.360000pt;}
.xc9_c01351{left:688.893333pt;}
.x100_c01351{left:690.426667pt;}
.x13_c01351{left:691.973333pt;}
.x5b_c01351{left:697.346667pt;}
.x48_c01351{left:698.880000pt;}
.xfe_c01351{left:701.186667pt;}
.xb2_c01351{left:702.720000pt;}
.x101_c01351{left:704.253333pt;}
.x67_c01351{left:706.560000pt;}
.xaa_c01351{left:708.093333pt;}
.xed_c01351{left:710.400000pt;}
.x9a_c01351{left:714.240000pt;}
.xf2_c01351{left:716.546667pt;}
.xc5_c01351{left:718.853333pt;}
.xe9_c01351{left:721.146667pt;}
.x8e_c01351{left:724.226667pt;}
.x52_c01351{left:725.760000pt;}
.x94_c01351{left:727.293333pt;}
.x4c_c01351{left:730.373333pt;}
.xb3_c01351{left:733.440000pt;}
.xe4_c01351{left:735.746667pt;}
.x53_c01351{left:738.053333pt;}
.x2b_c01351{left:740.346667pt;}
.xca_c01351{left:741.893333pt;}
.x33_c01351{left:743.426667pt;}
.xa1_c01351{left:746.493333pt;}
.x4d_c01351{left:748.026667pt;}
.x5c_c01351{left:749.573333pt;}
.x1f_c01351{left:752.640000pt;}
.x3d_c01351{left:754.173333pt;}
.xd6_c01351{left:755.706667pt;}
.xc1_c01351{left:757.253333pt;}
.xa6_c01351{left:759.546667pt;}
.x20_c01351{left:761.853333pt;}
.xab_c01351{left:764.160000pt;}
.xe5_c01351{left:769.533333pt;}
.xd3_c01351{left:771.066667pt;}
.x21_c01351{left:772.613333pt;}
.x2_c01351{left:774.906667pt;}
.x3_c01351{left:784.133333pt;}
.x8f_c01351{left:785.666667pt;}
.xee_c01351{left:787.200000pt;}
.xc6_c01351{left:790.266667pt;}
.xac_c01351{left:795.653333pt;}
.xa7_c01351{left:801.026667pt;}
.x102_c01351{left:814.853333pt;}
.x103_c01351{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_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_8dbc83fb457347c6cede79ef.woff2')format("woff");}.ff1_c01352{font-family:ff1_c01352;line-height:1.109863;font-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_c01352{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb4_c01352{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m109_c01352{transform:matrix(0.108325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108325,0.000000,0.000000,0.250000,0,0);}
.m156_c01352{transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);}
.m85_c01352{transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130200,0.000000,0.000000,0.250000,0,0);}
.m14d_c01352{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.me8_c01352{transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141425,0.000000,0.000000,0.250000,0,0);}
.m2_c01352{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m20_c01352{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);}
.m21_c01352{transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145350,0.000000,0.000000,0.250000,0,0);}
.m107_c01352{transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147000,0.000000,0.000000,0.250000,0,0);}
.m13a_c01352{transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151275,0.000000,0.000000,0.250000,0,0);}
.me3_c01352{transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151825,0.000000,0.000000,0.250000,0,0);}
.m13d_c01352{transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153300,0.000000,0.000000,0.250000,0,0);}
.m55_c01352{transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154450,0.000000,0.000000,0.250000,0,0);}
.mc5_c01352{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.ma6_c01352{transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163475,0.000000,0.000000,0.250000,0,0);}
.m15b_c01352{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);}
.m2d_c01352{transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);}
.mf1_c01352{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);}
.m12e_c01352{transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167200,0.000000,0.000000,0.250000,0,0);}
.m12d_c01352{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.m132_c01352{transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169600,0.000000,0.000000,0.250000,0,0);}
.mb3_c01352{transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170175,0.000000,0.000000,0.250000,0,0);}
.m114_c01352{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);}
.meb_c01352{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);}
.m102_c01352{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);}
.ma_c01352{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);}
.m83_c01352{transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174300,0.000000,0.000000,0.250000,0,0);}
.m101_c01352{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);}
.m5e_c01352{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);}
.m5a_c01352{transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174625,0.000000,0.000000,0.250000,0,0);}
.m2b_c01352{transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175250,0.000000,0.000000,0.250000,0,0);}
.m120_c01352{transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176900,0.000000,0.000000,0.250000,0,0);}
.m158_c01352{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.mbb_c01352{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.m141_c01352{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);}
.m148_c01352{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);}
.m6a_c01352{transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180850,0.000000,0.000000,0.250000,0,0);}
.m7f_c01352{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.m5_c01352{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);}
.m154_c01352{transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183000,0.000000,0.000000,0.250000,0,0);}
.m113_c01352{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);}
.m67_c01352{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);}
.m10f_c01352{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m78_c01352{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m138_c01352{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);}
.m9e_c01352{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m145_c01352{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.m8d_c01352{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m3d_c01352{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);}
.m103_c01352{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);}
.m135_c01352{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m56_c01352{transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190850,0.000000,0.000000,0.250000,0,0);}
.m49_c01352{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m108_c01352{transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191075,0.000000,0.000000,0.250000,0,0);}
.m70_c01352{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);}
.mf0_c01352{transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191350,0.000000,0.000000,0.250000,0,0);}
.ma5_c01352{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m14a_c01352{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);}
.m59_c01352{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.mf4_c01352{transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193300,0.000000,0.000000,0.250000,0,0);}
.m133_c01352{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.m112_c01352{transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193750,0.000000,0.000000,0.250000,0,0);}
.m99_c01352{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m144_c01352{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.m10d_c01352{transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196300,0.000000,0.000000,0.250000,0,0);}
.m12a_c01352{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);}
.m14f_c01352{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);}
.m33_c01352{transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197650,0.000000,0.000000,0.250000,0,0);}
.ma0_c01352{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m111_c01352{transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198550,0.000000,0.000000,0.250000,0,0);}
.m92_c01352{transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198925,0.000000,0.000000,0.250000,0,0);}
.mc4_c01352{transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199000,0.000000,0.000000,0.250000,0,0);}
.m82_c01352{transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199050,0.000000,0.000000,0.250000,0,0);}
.mc6_c01352{transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199150,0.000000,0.000000,0.250000,0,0);}
.m94_c01352{transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199800,0.000000,0.000000,0.250000,0,0);}
.m15e_c01352{transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200200,0.000000,0.000000,0.250000,0,0);}
.md5_c01352{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);}
.m14e_c01352{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.m71_c01352{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);}
.m161_c01352{transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);}
.mdc_c01352{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.m123_c01352{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);}
.m130_c01352{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);}
.mbc_c01352{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);}
.md8_c01352{transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203925,0.000000,0.000000,0.250000,0,0);}
.m149_c01352{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);}
.m77_c01352{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);}
.mb_c01352{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.mae_c01352{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.me7_c01352{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.md0_c01352{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);}
.m68_c01352{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.m137_c01352{transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207400,0.000000,0.000000,0.250000,0,0);}
.ma3_c01352{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);}
.m1a_c01352{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);}
.mc8_c01352{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.maa_c01352{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);}
.m11c_c01352{transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207850,0.000000,0.000000,0.250000,0,0);}
.m9f_c01352{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);}
.m147_c01352{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);}
.m40_c01352{transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208900,0.000000,0.000000,0.250000,0,0);}
.m80_c01352{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);}
.m124_c01352{transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209600,0.000000,0.000000,0.250000,0,0);}
.m58_c01352{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);}
.m10c_c01352{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);}
.m151_c01352{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m86_c01352{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);}
.m143_c01352{transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211075,0.000000,0.000000,0.250000,0,0);}
.mca_c01352{transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);}
.m3b_c01352{transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211800,0.000000,0.000000,0.250000,0,0);}
.md1_c01352{transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211925,0.000000,0.000000,0.250000,0,0);}
.me5_c01352{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);}
.mce_c01352{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);}
.m10b_c01352{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);}
.m13f_c01352{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);}
.m6b_c01352{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);}
.m12f_c01352{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.m96_c01352{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);}
.m98_c01352{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.m126_c01352{transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213975,0.000000,0.000000,0.250000,0,0);}
.m159_c01352{transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214100,0.000000,0.000000,0.250000,0,0);}
.m13_c01352{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);}
.m75_c01352{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);}
.mfd_c01352{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m153_c01352{transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214350,0.000000,0.000000,0.250000,0,0);}
.md3_c01352{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);}
.mb2_c01352{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.mea_c01352{transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215500,0.000000,0.000000,0.250000,0,0);}
.mf9_c01352{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m41_c01352{transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215775,0.000000,0.000000,0.250000,0,0);}
.mb8_c01352{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_c01352{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.m150_c01352{transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216075,0.000000,0.000000,0.250000,0,0);}
.m9_c01352{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.ma1_c01352{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);}
.maf_c01352{transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);}
.m2e_c01352{transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217150,0.000000,0.000000,0.250000,0,0);}
.m57_c01352{transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217525,0.000000,0.000000,0.250000,0,0);}
.m4_c01352{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.mb1_c01352{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.m152_c01352{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);}
.m13e_c01352{transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217800,0.000000,0.000000,0.250000,0,0);}
.mc1_c01352{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);}
.me4_c01352{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);}
.mb5_c01352{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);}
.mb9_c01352{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);}
.m54_c01352{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.mf5_c01352{transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218975,0.000000,0.000000,0.250000,0,0);}
.m6c_c01352{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m11f_c01352{transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219850,0.000000,0.000000,0.250000,0,0);}
.m5d_c01352{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m42_c01352{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);}
.m19_c01352{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);}
.mda_c01352{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);}
.m95_c01352{transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);}
.m81_c01352{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);}
.m14b_c01352{transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221125,0.000000,0.000000,0.250000,0,0);}
.m39_c01352{transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221200,0.000000,0.000000,0.250000,0,0);}
.m30_c01352{transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221350,0.000000,0.000000,0.250000,0,0);}
.mdb_c01352{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);}
.m121_c01352{transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222200,0.000000,0.000000,0.250000,0,0);}
.m125_c01352{transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222250,0.000000,0.000000,0.250000,0,0);}
.me9_c01352{transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222300,0.000000,0.000000,0.250000,0,0);}
.m84_c01352{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);}
.m46_c01352{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);}
.m140_c01352{transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223450,0.000000,0.000000,0.250000,0,0);}
.m14c_c01352{transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224275,0.000000,0.000000,0.250000,0,0);}
.m7e_c01352{transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224800,0.000000,0.000000,0.250000,0,0);}
.m32_c01352{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);}
.m47_c01352{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);}
.m4d_c01352{transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225150,0.000000,0.000000,0.250000,0,0);}
.mf2_c01352{transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226325,0.000000,0.000000,0.250000,0,0);}
.m9b_c01352{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);}
.ma4_c01352{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);}
.mc2_c01352{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);}
.m25_c01352{transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227325,0.000000,0.000000,0.250000,0,0);}
.mbd_c01352{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.ma7_c01352{transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228800,0.000000,0.000000,0.250000,0,0);}
.m100_c01352{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m146_c01352{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);}
.mc9_c01352{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);}
.md9_c01352{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);}
.m13c_c01352{transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230625,0.000000,0.000000,0.250000,0,0);}
.mbe_c01352{transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230975,0.000000,0.000000,0.250000,0,0);}
.m15f_c01352{transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231375,0.000000,0.000000,0.250000,0,0);}
.m131_c01352{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m5f_c01352{transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231550,0.000000,0.000000,0.250000,0,0);}
.mfe_c01352{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);}
.m155_c01352{transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231775,0.000000,0.000000,0.250000,0,0);}
.m7d_c01352{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);}
.mcb_c01352{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);}
.m12_c01352{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);}
.m11b_c01352{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);}
.mfc_c01352{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m3a_c01352{transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);}
.m4f_c01352{transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235350,0.000000,0.000000,0.250000,0,0);}
.mb7_c01352{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_c01352{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);}
.m105_c01352{transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235675,0.000000,0.000000,0.250000,0,0);}
.m5b_c01352{transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235925,0.000000,0.000000,0.250000,0,0);}
.mfb_c01352{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.m116_c01352{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);}
.m160_c01352{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);}
.m66_c01352{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);}
.m5c_c01352{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m127_c01352{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m122_c01352{transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238150,0.000000,0.000000,0.250000,0,0);}
.ma9_c01352{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);}
.m142_c01352{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);}
.mff_c01352{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.m44_c01352{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);}
.m90_c01352{transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239375,0.000000,0.000000,0.250000,0,0);}
.m12b_c01352{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);}
.m8_c01352{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m7_c01352{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);}
.m106_c01352{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);}
.m8c_c01352{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.mf3_c01352{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);}
.m87_c01352{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);}
.ma2_c01352{transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241850,0.000000,0.000000,0.250000,0,0);}
.m9d_c01352{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);}
.mbf_c01352{transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);}
.mf6_c01352{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);}
.mef_c01352{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);}
.m134_c01352{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);}
.m15c_c01352{transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243150,0.000000,0.000000,0.250000,0,0);}
.me2_c01352{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);}
.mde_c01352{transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243450,0.000000,0.000000,0.250000,0,0);}
.md7_c01352{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m2c_c01352{transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243775,0.000000,0.000000,0.250000,0,0);}
.mcf_c01352{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.mdd_c01352{transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245125,0.000000,0.000000,0.250000,0,0);}
.m4c_c01352{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);}
.m115_c01352{transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245950,0.000000,0.000000,0.250000,0,0);}
.m4b_c01352{transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246100,0.000000,0.000000,0.250000,0,0);}
.mc0_c01352{transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246325,0.000000,0.000000,0.250000,0,0);}
.m11a_c01352{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);}
.md4_c01352{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m73_c01352{transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248600,0.000000,0.000000,0.250000,0,0);}
.m69_c01352{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);}
.m117_c01352{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);}
.m1e_c01352{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);}
.m1f_c01352{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m38_c01352{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);}
.m52_c01352{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);}
.m3f_c01352{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);}
.m6e_c01352{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.mc7_c01352{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m22_c01352{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mf_c01352{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01352{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);}
.me0_c01352{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m7b_c01352{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);}
.m36_c01352{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);}
.md_c01352{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m10_c01352{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);}
.m0_c01352{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c01352{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m61_c01352{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);}
.m23_c01352{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01352{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);}
.m9a_c01352{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);}
.m50_c01352{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m63_c01352{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01352{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);}
.m3e_c01352{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m34_c01352{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01352{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);}
.m1c_c01352{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01352{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01352{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c01352{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m37_c01352{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma8_c01352{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mcd_c01352{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mac_c01352{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m88_c01352{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);}
.m72_c01352{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m62_c01352{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m91_c01352{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m12c_c01352{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);}
.m119_c01352{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);}
.m1b_c01352{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m24_c01352{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m11d_c01352{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);}
.m45_c01352{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m10e_c01352{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m26_c01352{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m31_c01352{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m18_c01352{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);}
.m79_c01352{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);}
.m162_c01352{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m139_c01352{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.md2_c01352{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);}
.m48_c01352{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m43_c01352{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9c_c01352{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m15a_c01352{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3_c01352{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m74_c01352{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);}
.mab_c01352{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);}
.m6_c01352{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m15_c01352{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);}
.me6_c01352{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m53_c01352{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m14_c01352{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m27_c01352{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me_c01352{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m11_c01352{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1_c01352{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.mc3_c01352{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);}
.mdf_c01352{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m8e_c01352{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m76_c01352{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m104_c01352{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m11e_c01352{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m60_c01352{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);}
.m35_c01352{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mee_c01352{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);}
.m128_c01352{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);}
.mba_c01352{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01352{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);}
.m97_c01352{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m93_c01352{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb6_c01352{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m15d_c01352{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01352{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);}
.mad_c01352{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m89_c01352{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m64_c01352{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m157_c01352{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m129_c01352{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m163_c01352{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.me1_c01352{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m65_c01352{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m13b_c01352{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m110_c01352{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.med_c01352{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m8f_c01352{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.mb0_c01352{transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.000000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01352{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.mfa_c01352{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.mec_c01352{transform:matrix(1.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.220000,0.000000,0.000000,0.250000,0,0);}
.m8b_c01352{transform:matrix(1.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.232500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01352{transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.255000,0.000000,0.000000,0.250000,0,0);}
.m136_c01352{transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.392500,0.000000,0.000000,0.250000,0,0);}
.m10a_c01352{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m51_c01352{transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.740000,0.000000,0.000000,0.250000,0,0);}
.m29_c01352{transform:matrix(1.940000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.940000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.940000,0.000000,0.000000,0.250000,0,0);}
.md6_c01352{transform:matrix(2.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.030000,0.000000,0.000000,0.250000,0,0);}
.m28_c01352{transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.305000,0.000000,0.000000,0.250000,0,0);}
.m118_c01352{transform:matrix(2.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.355000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01352{transform:matrix(3.867500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.867500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.867500,0.000000,0.000000,0.250000,0,0);}
.mcc_c01352{transform:matrix(13.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(13.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(13.247500,0.000000,0.000000,0.250000,0,0);}
.v1_c01352{vertical-align:-13.800000px;}
.v0_c01352{vertical-align:0.000000px;}
.v2_c01352{vertical-align:3.480000px;}
.ls2_c01352{letter-spacing:0.000000px;}
.ls0_c01352{letter-spacing:88.170000px;}
.ls1_c01352{letter-spacing:113.108688px;}
.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;}
}
.ws1_c01352{word-spacing:-16.029840px;}
.ws0_c01352{word-spacing:-7.026960px;}
.ws2_c01352{word-spacing:-1.174560px;}
.ws3_c01352{word-spacing:0.000000px;}
.fc0_c01352{color:transparent;}
.fs2_c01352{font-size:3.456000px;}
.fsf_c01352{font-size:6.000000px;}
.fs0_c01352{font-size:6.900000px;}
.fs13_c01352{font-size:10.380000px;}
.fs12_c01352{font-size:13.800000px;}
.fse_c01352{font-size:17.280000px;}
.fs1_c01352{font-size:20.760000px;}
.fs11_c01352{font-size:24.180000px;}
.fs17_c01352{font-size:27.660000px;}
.fsb_c01352{font-size:31.080000px;}
.fs3_c01352{font-size:34.560000px;}
.fs1a_c01352{font-size:38.040000px;}
.fsc_c01352{font-size:41.460000px;}
.fsd_c01352{font-size:44.940000px;}
.fsa_c01352{font-size:48.360000px;}
.fs7_c01352{font-size:51.840000px;}
.fs6_c01352{font-size:55.320000px;}
.fs14_c01352{font-size:58.740000px;}
.fs4_c01352{font-size:62.220000px;}
.fs16_c01352{font-size:65.640000px;}
.fs5_c01352{font-size:69.120000px;}
.fs18_c01352{font-size:72.600000px;}
.fs9_c01352{font-size:76.020000px;}
.fs15_c01352{font-size:79.500000px;}
.fs10_c01352{font-size:82.920000px;}
.fs8_c01352{font-size:86.400000px;}
.fs19_c01352{font-size:120.960000px;}
.y0_c01352{bottom:0.000000px;}
.y1ae_c01352{bottom:196.995000px;}
.y1ad_c01352{bottom:205.635000px;}
.y1a7_c01352{bottom:209.955000px;}
.y1ac_c01352{bottom:210.810000px;}
.y1a8_c01352{bottom:213.405000px;}
.y1ab_c01352{bottom:214.275000px;}
.y1a9_c01352{bottom:215.130000px;}
.y1aa_c01352{bottom:224.640000px;}
.y1a2_c01352{bottom:228.090000px;}
.y1a6_c01352{bottom:228.960000px;}
.y1a4_c01352{bottom:230.685000px;}
.y1a5_c01352{bottom:231.555000px;}
.y1a3_c01352{bottom:232.410000px;}
.y19d_c01352{bottom:245.370000px;}
.y1a1_c01352{bottom:246.240000px;}
.y19e_c01352{bottom:249.690000px;}
.y19f_c01352{bottom:250.560000px;}
.y19c_c01352{bottom:254.010000px;}
.y1a0_c01352{bottom:260.070000px;}
.y19b_c01352{bottom:262.650000px;}
.y197_c01352{bottom:263.520000px;}
.y198_c01352{bottom:264.390000px;}
.y196_c01352{bottom:265.245000px;}
.y19a_c01352{bottom:268.710000px;}
.y199_c01352{bottom:270.435000px;}
.y195_c01352{bottom:279.930000px;}
.y194_c01352{bottom:280.800000px;}
.y193_c01352{bottom:285.120000px;}
.y190_c01352{bottom:298.950000px;}
.y18f_c01352{bottom:301.530000px;}
.y191_c01352{bottom:303.270000px;}
.y192_c01352{bottom:304.125000px;}
.y18a_c01352{bottom:315.360000px;}
.y18b_c01352{bottom:316.230000px;}
.y18c_c01352{bottom:317.085000px;}
.y18e_c01352{bottom:318.810000px;}
.y188_c01352{bottom:319.680000px;}
.y186_c01352{bottom:320.550000px;}
.y185_c01352{bottom:321.405000px;}
.y184_c01352{bottom:322.275000px;}
.y189_c01352{bottom:323.130000px;}
.y18d_c01352{bottom:324.000000px;}
.y187_c01352{bottom:326.595000px;}
.y182_c01352{bottom:335.235000px;}
.y17b_c01352{bottom:336.090000px;}
.y17e_c01352{bottom:338.685000px;}
.y17f_c01352{bottom:339.555000px;}
.y17c_c01352{bottom:340.410000px;}
.y17d_c01352{bottom:341.280000px;}
.y180_c01352{bottom:345.600000px;}
.y183_c01352{bottom:347.325000px;}
.y181_c01352{bottom:349.050000px;}
.y17a_c01352{bottom:354.240000px;}
.y176_c01352{bottom:355.110000px;}
.y179_c01352{bottom:356.835000px;}
.y177_c01352{bottom:358.560000px;}
.y178_c01352{bottom:361.155000px;}
.y174_c01352{bottom:368.925000px;}
.y173_c01352{bottom:369.795000px;}
.y175_c01352{bottom:373.245000px;}
.y172_c01352{bottom:374.115000px;}
.y16f_c01352{bottom:374.970000px;}
.y170_c01352{bottom:375.840000px;}
.y171_c01352{bottom:376.710000px;}
.y16e_c01352{bottom:387.930000px;}
.y168_c01352{bottom:388.800000px;}
.y16b_c01352{bottom:389.670000px;}
.y16c_c01352{bottom:390.525000px;}
.y16d_c01352{bottom:392.250000px;}
.y169_c01352{bottom:393.120000px;}
.y16a_c01352{bottom:393.990000px;}
.y166_c01352{bottom:407.805000px;}
.y167_c01352{bottom:408.675000px;}
.y164_c01352{bottom:411.270000px;}
.y165_c01352{bottom:412.125000px;}
.y161_c01352{bottom:420.765000px;}
.y160_c01352{bottom:422.490000px;}
.y162_c01352{bottom:423.360000px;}
.y15c_c01352{bottom:424.230000px;}
.y15d_c01352{bottom:425.085000px;}
.y15e_c01352{bottom:427.680000px;}
.y163_c01352{bottom:428.550000px;}
.y15f_c01352{bottom:429.405000px;}
.y15b_c01352{bottom:430.275000px;}
.y15a_c01352{bottom:436.320000px;}
.y153_c01352{bottom:442.365000px;}
.y156_c01352{bottom:443.235000px;}
.y155_c01352{bottom:444.090000px;}
.y159_c01352{bottom:444.960000px;}
.y152_c01352{bottom:445.830000px;}
.y157_c01352{bottom:446.685000px;}
.y154_c01352{bottom:447.555000px;}
.y158_c01352{bottom:454.470000px;}
.y14a_c01352{bottom:459.645000px;}
.y14c_c01352{bottom:460.515000px;}
.y14e_c01352{bottom:461.370000px;}
.y150_c01352{bottom:462.240000px;}
.y14f_c01352{bottom:463.110000px;}
.y151_c01352{bottom:463.965000px;}
.y14d_c01352{bottom:464.835000px;}
.y14b_c01352{bottom:470.880000px;}
.y149_c01352{bottom:476.070000px;}
.y146_c01352{bottom:478.650000px;}
.y148_c01352{bottom:479.520000px;}
.y147_c01352{bottom:481.245000px;}
.y145_c01352{bottom:482.115000px;}
.y144_c01352{bottom:493.350000px;}
.y13d_c01352{bottom:494.205000px;}
.y141_c01352{bottom:495.930000px;}
.y13f_c01352{bottom:496.800000px;}
.y143_c01352{bottom:498.525000px;}
.y142_c01352{bottom:499.395000px;}
.y13e_c01352{bottom:501.120000px;}
.y1ba_c01352{bottom:508.035000px;}
.y140_c01352{bottom:509.760000px;}
.y13b_c01352{bottom:512.355000px;}
.y13c_c01352{bottom:513.210000px;}
.y139_c01352{bottom:514.080000px;}
.y1b9_c01352{bottom:515.805000px;}
.y13a_c01352{bottom:516.675000px;}
.y135_c01352{bottom:527.910000px;}
.y130_c01352{bottom:529.635000px;}
.y132_c01352{bottom:530.490000px;}
.y138_c01352{bottom:531.360000px;}
.y137_c01352{bottom:532.230000px;}
.y131_c01352{bottom:534.810000px;}
.y133_c01352{bottom:536.550000px;}
.y134_c01352{bottom:541.725000px;}
.y136_c01352{bottom:544.320000px;}
.y12e_c01352{bottom:547.770000px;}
.y12b_c01352{bottom:548.640000px;}
.y12d_c01352{bottom:549.510000px;}
.y12a_c01352{bottom:551.235000px;}
.y12f_c01352{bottom:552.090000px;}
.y12c_c01352{bottom:552.960000px;}
.y126_c01352{bottom:565.050000px;}
.y124_c01352{bottom:565.920000px;}
.y128_c01352{bottom:566.790000px;}
.y125_c01352{bottom:567.645000px;}
.y127_c01352{bottom:568.515000px;}
.y123_c01352{bottom:569.370000px;}
.y129_c01352{bottom:575.430000px;}
.y121_c01352{bottom:578.880000px;}
.y11e_c01352{bottom:579.750000px;}
.y11a_c01352{bottom:581.475000px;}
.y11c_c01352{bottom:582.330000px;}
.y11f_c01352{bottom:584.925000px;}
.y11b_c01352{bottom:585.795000px;}
.y11d_c01352{bottom:586.650000px;}
.y120_c01352{bottom:590.970000px;}
.y122_c01352{bottom:597.885000px;}
.y117_c01352{bottom:599.610000px;}
.y116_c01352{bottom:600.480000px;}
.y114_c01352{bottom:603.930000px;}
.y115_c01352{bottom:604.800000px;}
.y118_c01352{bottom:611.715000px;}
.y119_c01352{bottom:617.760000px;}
.y111_c01352{bottom:618.630000px;}
.y112_c01352{bottom:619.485000px;}
.y113_c01352{bottom:620.355000px;}
.y110_c01352{bottom:621.210000px;}
.y10f_c01352{bottom:634.170000px;}
.y10c_c01352{bottom:636.765000px;}
.y10e_c01352{bottom:637.635000px;}
.y10b_c01352{bottom:638.490000px;}
.y10d_c01352{bottom:639.360000px;}
.y105_c01352{bottom:650.595000px;}
.y106_c01352{bottom:651.450000px;}
.y108_c01352{bottom:653.190000px;}
.y109_c01352{bottom:655.770000px;}
.y10a_c01352{bottom:666.150000px;}
.y104_c01352{bottom:667.875000px;}
.y107_c01352{bottom:669.600000px;}
.yfe_c01352{bottom:670.470000px;}
.y103_c01352{bottom:671.325000px;}
.y102_c01352{bottom:672.195000px;}
.y101_c01352{bottom:673.050000px;}
.yfd_c01352{bottom:674.790000px;}
.y100_c01352{bottom:677.370000px;}
.yff_c01352{bottom:679.110000px;}
.yf7_c01352{bottom:683.430000px;}
.yfa_c01352{bottom:684.285000px;}
.yf9_c01352{bottom:685.155000px;}
.yfc_c01352{bottom:686.010000px;}
.yf8_c01352{bottom:688.605000px;}
.yfb_c01352{bottom:689.475000px;}
.yf6_c01352{bottom:690.330000px;}
.yf1_c01352{bottom:703.290000px;}
.yf3_c01352{bottom:704.160000px;}
.yf2_c01352{bottom:705.885000px;}
.yf0_c01352{bottom:706.755000px;}
.yef_c01352{bottom:707.610000px;}
.yf4_c01352{bottom:708.480000px;}
.yf5_c01352{bottom:709.350000px;}
.yea_c01352{bottom:719.715000px;}
.yec_c01352{bottom:720.570000px;}
.yee_c01352{bottom:722.310000px;}
.ye9_c01352{bottom:724.035000px;}
.yeb_c01352{bottom:725.760000px;}
.yed_c01352{bottom:731.805000px;}
.ye2_c01352{bottom:736.995000px;}
.ye3_c01352{bottom:737.850000px;}
.ye8_c01352{bottom:739.590000px;}
.ye6_c01352{bottom:742.170000px;}
.ye4_c01352{bottom:743.040000px;}
.ye7_c01352{bottom:750.810000px;}
.ye5_c01352{bottom:755.130000px;}
.ye1_c01352{bottom:756.000000px;}
.ye0_c01352{bottom:757.725000px;}
.ydd_c01352{bottom:759.450000px;}
.yde_c01352{bottom:760.320000px;}
.ydf_c01352{bottom:761.190000px;}
.yd6_c01352{bottom:775.005000px;}
.yd7_c01352{bottom:775.875000px;}
.yd5_c01352{bottom:777.600000px;}
.ydb_c01352{bottom:778.470000px;}
.yd9_c01352{bottom:781.050000px;}
.ydc_c01352{bottom:787.110000px;}
.yda_c01352{bottom:788.835000px;}
.yd8_c01352{bottom:789.690000px;}
.yd0_c01352{bottom:790.560000px;}
.yd3_c01352{bottom:791.430000px;}
.yd4_c01352{bottom:792.285000px;}
.ycf_c01352{bottom:794.010000px;}
.yd2_c01352{bottom:794.880000px;}
.yd1_c01352{bottom:795.750000px;}
.ycd_c01352{bottom:808.710000px;}
.yce_c01352{bottom:810.435000px;}
.y3_c01352{bottom:812.160000px;}
.y4_c01352{bottom:813.030000px;}
.ycc_c01352{bottom:824.250000px;}
.yc8_c01352{bottom:825.120000px;}
.yca_c01352{bottom:825.990000px;}
.yc7_c01352{bottom:828.570000px;}
.yc5_c01352{bottom:829.440000px;}
.yc6_c01352{bottom:830.310000px;}
.yc9_c01352{bottom:831.165000px;}
.ycb_c01352{bottom:835.485000px;}
.ybf_c01352{bottom:842.400000px;}
.yc4_c01352{bottom:844.995000px;}
.yc2_c01352{bottom:845.850000px;}
.ybe_c01352{bottom:846.720000px;}
.yc0_c01352{bottom:847.590000px;}
.yc3_c01352{bottom:848.445000px;}
.yc1_c01352{bottom:858.810000px;}
.ybd_c01352{bottom:860.550000px;}
.yba_c01352{bottom:861.405000px;}
.yb8_c01352{bottom:863.130000px;}
.yb9_c01352{bottom:864.870000px;}
.ybc_c01352{bottom:865.725000px;}
.yb2_c01352{bottom:877.830000px;}
.ybb_c01352{bottom:878.685000px;}
.yb6_c01352{bottom:881.280000px;}
.yb3_c01352{bottom:882.150000px;}
.yb7_c01352{bottom:883.005000px;}
.yb5_c01352{bottom:883.875000px;}
.yb4_c01352{bottom:888.195000px;}
.yae_c01352{bottom:891.645000px;}
.yac_c01352{bottom:894.240000px;}
.yaf_c01352{bottom:896.835000px;}
.yb1_c01352{bottom:897.690000px;}
.yad_c01352{bottom:899.430000px;}
.yb0_c01352{bottom:900.285000px;}
.ya8_c01352{bottom:912.390000px;}
.ya9_c01352{bottom:913.245000px;}
.ya7_c01352{bottom:915.840000px;}
.ya3_c01352{bottom:916.710000px;}
.yaa_c01352{bottom:917.565000px;}
.yab_c01352{bottom:918.435000px;}
.ya0_c01352{bottom:929.670000px;}
.ya2_c01352{bottom:931.395000px;}
.ya6_c01352{bottom:933.120000px;}
.ya5_c01352{bottom:933.990000px;}
.ya1_c01352{bottom:934.845000px;}
.ya4_c01352{bottom:935.715000px;}
.y9c_c01352{bottom:946.950000px;}
.y9d_c01352{bottom:947.805000px;}
.y9f_c01352{bottom:948.675000px;}
.y9e_c01352{bottom:956.445000px;}
.y9b_c01352{bottom:958.170000px;}
.y98_c01352{bottom:964.230000px;}
.y97_c01352{bottom:968.550000px;}
.y99_c01352{bottom:969.405000px;}
.y9a_c01352{bottom:970.275000px;}
.y1b5_c01352{bottom:971.130000px;}
.y93_c01352{bottom:981.510000px;}
.y95_c01352{bottom:982.365000px;}
.y94_c01352{bottom:986.685000px;}
.y96_c01352{bottom:987.555000px;}
.y1b8_c01352{bottom:993.600000px;}
.y92_c01352{bottom:994.470000px;}
.y8f_c01352{bottom:1000.515000px;}
.y8b_c01352{bottom:1003.110000px;}
.y8e_c01352{bottom:1003.965000px;}
.y91_c01352{bottom:1004.835000px;}
.y90_c01352{bottom:1005.690000px;}
.y8d_c01352{bottom:1006.560000px;}
.y8c_c01352{bottom:1012.605000px;}
.y83_c01352{bottom:1013.475000px;}
.y85_c01352{bottom:1015.200000px;}
.y84_c01352{bottom:1016.925000px;}
.y86_c01352{bottom:1018.650000px;}
.y87_c01352{bottom:1019.520000px;}
.y88_c01352{bottom:1020.390000px;}
.y8a_c01352{bottom:1023.840000px;}
.y89_c01352{bottom:1024.710000px;}
.y7b_c01352{bottom:1033.350000px;}
.y7c_c01352{bottom:1035.075000px;}
.y80_c01352{bottom:1035.930000px;}
.y7e_c01352{bottom:1037.670000px;}
.y7f_c01352{bottom:1040.250000px;}
.y81_c01352{bottom:1041.990000px;}
.y82_c01352{bottom:1042.845000px;}
.y7d_c01352{bottom:1048.035000px;}
.y74_c01352{bottom:1050.630000px;}
.y73_c01352{bottom:1051.485000px;}
.y77_c01352{bottom:1057.530000px;}
.y78_c01352{bottom:1058.400000px;}
.y79_c01352{bottom:1059.270000px;}
.y7a_c01352{bottom:1060.995000px;}
.y75_c01352{bottom:1062.720000px;}
.y76_c01352{bottom:1064.445000px;}
.y6d_c01352{bottom:1068.765000px;}
.y6f_c01352{bottom:1071.360000px;}
.y6c_c01352{bottom:1073.085000px;}
.y6e_c01352{bottom:1074.810000px;}
.y70_c01352{bottom:1075.680000px;}
.y71_c01352{bottom:1076.550000px;}
.y72_c01352{bottom:1078.275000px;}
.y6b_c01352{bottom:1079.130000px;}
.y65_c01352{bottom:1086.045000px;}
.y68_c01352{bottom:1087.770000px;}
.y66_c01352{bottom:1091.235000px;}
.y67_c01352{bottom:1092.090000px;}
.y69_c01352{bottom:1092.960000px;}
.y6a_c01352{bottom:1093.830000px;}
.y61_c01352{bottom:1104.195000px;}
.y63_c01352{bottom:1106.790000px;}
.y62_c01352{bottom:1107.645000px;}
.y1b4_c01352{bottom:1109.370000px;}
.y64_c01352{bottom:1118.010000px;}
.y1b3_c01352{bottom:1123.200000px;}
.y5c_c01352{bottom:1124.070000px;}
.y5a_c01352{bottom:1124.925000px;}
.y5b_c01352{bottom:1125.795000px;}
.y5d_c01352{bottom:1127.520000px;}
.y60_c01352{bottom:1129.245000px;}
.y5e_c01352{bottom:1130.115000px;}
.y5f_c01352{bottom:1138.755000px;}
.y55_c01352{bottom:1139.610000px;}
.y56_c01352{bottom:1140.480000px;}
.y53_c01352{bottom:1142.205000px;}
.y54_c01352{bottom:1143.930000px;}
.y59_c01352{bottom:1145.670000px;}
.y57_c01352{bottom:1146.525000px;}
.y1b2_c01352{bottom:1148.250000px;}
.y58_c01352{bottom:1151.715000px;}
.y50_c01352{bottom:1156.035000px;}
.y51_c01352{bottom:1157.760000px;}
.y52_c01352{bottom:1159.485000px;}
.y4f_c01352{bottom:1160.355000px;}
.y1b0_c01352{bottom:1163.805000px;}
.y1af_c01352{bottom:1165.530000px;}
.y1b1_c01352{bottom:1166.400000px;}
.y48_c01352{bottom:1174.170000px;}
.y4c_c01352{bottom:1176.765000px;}
.y47_c01352{bottom:1177.635000px;}
.y49_c01352{bottom:1178.490000px;}
.y4d_c01352{bottom:1181.085000px;}
.y4e_c01352{bottom:1181.955000px;}
.y4b_c01352{bottom:1188.000000px;}
.y4a_c01352{bottom:1189.725000px;}
.y42_c01352{bottom:1190.595000px;}
.y43_c01352{bottom:1192.320000px;}
.y44_c01352{bottom:1194.045000px;}
.y41_c01352{bottom:1194.915000px;}
.y46_c01352{bottom:1196.640000px;}
.y45_c01352{bottom:1199.235000px;}
.y3d_c01352{bottom:1212.195000px;}
.y3e_c01352{bottom:1213.920000px;}
.y3f_c01352{bottom:1214.790000px;}
.y40_c01352{bottom:1217.370000px;}
.y39_c01352{bottom:1226.880000px;}
.y37_c01352{bottom:1229.475000px;}
.y38_c01352{bottom:1231.200000px;}
.y3c_c01352{bottom:1232.070000px;}
.y3a_c01352{bottom:1233.795000px;}
.y3b_c01352{bottom:1234.650000px;}
.y33_c01352{bottom:1244.160000px;}
.y34_c01352{bottom:1247.610000px;}
.y36_c01352{bottom:1250.205000px;}
.y35_c01352{bottom:1256.250000px;}
.y2b_c01352{bottom:1261.440000px;}
.y2d_c01352{bottom:1262.310000px;}
.y2a_c01352{bottom:1264.035000px;}
.y2e_c01352{bottom:1264.890000px;}
.y2c_c01352{bottom:1265.760000px;}
.y32_c01352{bottom:1268.355000px;}
.y30_c01352{bottom:1269.210000px;}
.y2f_c01352{bottom:1270.080000px;}
.y31_c01352{bottom:1272.675000px;}
.y25_c01352{bottom:1279.590000px;}
.y27_c01352{bottom:1280.445000px;}
.y28_c01352{bottom:1281.315000px;}
.y29_c01352{bottom:1283.040000px;}
.y24_c01352{bottom:1285.635000px;}
.y26_c01352{bottom:1286.490000px;}
.y23_c01352{bottom:1288.230000px;}
.y19_c01352{bottom:1297.725000px;}
.y1d_c01352{bottom:1299.450000px;}
.y1b_c01352{bottom:1300.320000px;}
.y1c_c01352{bottom:1301.190000px;}
.y1e_c01352{bottom:1302.915000px;}
.y20_c01352{bottom:1303.770000px;}
.y21_c01352{bottom:1304.640000px;}
.y1a_c01352{bottom:1307.235000px;}
.y1f_c01352{bottom:1308.960000px;}
.y22_c01352{bottom:1315.875000px;}
.y14_c01352{bottom:1316.730000px;}
.y15_c01352{bottom:1318.470000px;}
.y18_c01352{bottom:1321.920000px;}
.y17_c01352{bottom:1322.790000px;}
.y16_c01352{bottom:1323.645000px;}
.yd_c01352{bottom:1334.010000px;}
.ye_c01352{bottom:1335.750000px;}
.y12_c01352{bottom:1336.605000px;}
.yf_c01352{bottom:1337.475000px;}
.y10_c01352{bottom:1338.330000px;}
.y11_c01352{bottom:1339.200000px;}
.y13_c01352{bottom:1340.070000px;}
.y6_c01352{bottom:1352.160000px;}
.y7_c01352{bottom:1353.030000px;}
.y9_c01352{bottom:1353.885000px;}
.ya_c01352{bottom:1354.755000px;}
.y5_c01352{bottom:1356.480000px;}
.y8_c01352{bottom:1357.350000px;}
.yb_c01352{bottom:1359.075000px;}
.yc_c01352{bottom:1369.440000px;}
.y1b6_c01352{bottom:1393.635000px;}
.y1b7_c01352{bottom:1413.510000px;}
.y2_c01352{bottom:1418.685000px;}
.y1_c01352{bottom:1419.555000px;}
.h4_c01352{height:3.110063px;}
.h11_c01352{height:5.399414px;}
.h2_c01352{height:6.209326px;}
.h15_c01352{height:9.340986px;}
.h14_c01352{height:12.418652px;}
.h10_c01352{height:15.550313px;}
.h3_c01352{height:18.681973px;}
.h13_c01352{height:21.759639px;}
.h19_c01352{height:24.891299px;}
.hd_c01352{height:27.968965px;}
.h5_c01352{height:31.100625px;}
.h1c_c01352{height:34.232285px;}
.he_c01352{height:37.309951px;}
.hf_c01352{height:40.441611px;}
.hc_c01352{height:43.519277px;}
.h9_c01352{height:46.650937px;}
.h8_c01352{height:49.782598px;}
.h1d_c01352{height:50.130938px;}
.h16_c01352{height:52.860264px;}
.h6_c01352{height:55.991924px;}
.h18_c01352{height:59.069590px;}
.h7_c01352{height:62.201250px;}
.h1a_c01352{height:65.332910px;}
.hb_c01352{height:68.410576px;}
.h17_c01352{height:71.542236px;}
.h12_c01352{height:74.619902px;}
.ha_c01352{height:77.751563px;}
.h1b_c01352{height:108.852188px;}
.h1_c01352{height:1513.500000px;}
.h0_c01352{height:1513.725000px;}
.w0_c01352{width:1083.450000px;}
.w1_c01352{width:1083.750000px;}
.x0_c01352{left:0.000000px;}
.x3_c01352{left:183.165000px;}
.x4_c01352{left:191.805000px;}
.x83_c01352{left:202.170000px;}
.x7f_c01352{left:209.955000px;}
.x80_c01352{left:213.405000px;}
.x87_c01352{left:216.000000px;}
.x71_c01352{left:219.450000px;}
.x23_c01352{left:221.190000px;}
.xf_c01352{left:223.770000px;}
.x5b_c01352{left:227.235000px;}
.xa1_c01352{left:228.960000px;}
.xf8_c01352{left:230.685000px;}
.x2f_c01352{left:234.150000px;}
.x65_c01352{left:238.470000px;}
.xf0_c01352{left:240.195000px;}
.x30_c01352{left:241.920000px;}
.xc2_c01352{left:245.370000px;}
.x5_c01352{left:247.110225px;}
.x31_c01352{left:248.835000px;}
.x93_c01352{left:250.560000px;}
.xbc_c01352{left:252.285000px;}
.xb0_c01352{left:254.010000px;}
.x6_c01352{left:256.605000px;}
.x81_c01352{left:259.200000px;}
.xda_c01352{left:260.925000px;}
.x84_c01352{left:263.520000px;}
.x19_c01352{left:265.245000px;}
.x47_c01352{left:267.840000px;}
.x9a_c01352{left:270.435000px;}
.x56_c01352{left:273.030000px;}
.x82_c01352{left:274.755000px;}
.x60_c01352{left:277.350000px;}
.xe8_c01352{left:279.930000px;}
.x94_c01352{left:282.525000px;}
.x10_c01352{left:284.250000px;}
.x66_c01352{left:286.845000px;}
.x4e_c01352{left:290.310000px;}
.x53_c01352{left:292.890000px;}
.x85_c01352{left:294.630000px;}
.x1a_c01352{left:298.080000px;}
.x24_c01352{left:299.805000px;}
.x7b_c01352{left:302.400000px;}
.x25_c01352{left:304.125000px;}
.xe9_c01352{left:306.720000px;}
.xb7_c01352{left:308.445000px;}
.x37_c01352{left:310.170000px;}
.x72_c01352{left:311.910000px;}
.xc7_c01352{left:314.490000px;}
.x11_c01352{left:318.810000px;}
.x9b_c01352{left:323.130000px;}
.x57_c01352{left:327.450000px;}
.x61_c01352{left:329.190000px;}
.x8a_c01352{left:332.640000px;}
.xac_c01352{left:334.365000px;}
.x26_c01352{left:339.555000px;}
.x12_c01352{left:342.150000px;}
.xe6_c01352{left:343.875000px;}
.x5c_c01352{left:345.600000px;}
.x4b_c01352{left:347.325000px;}
.x38_c01352{left:349.050000px;}
.xa8_c01352{left:353.370000px;}
.x67_c01352{left:355.110000px;}
.x48_c01352{left:358.560000px;}
.x4c_c01352{left:362.010000px;}
.xed_c01352{left:363.750000px;}
.x62_c01352{left:367.200000px;}
.xbd_c01352{left:369.795000px;}
.x13_c01352{left:372.390000px;}
.x7c_c01352{left:375.840000px;}
.x43_c01352{left:378.435000px;}
.x8b_c01352{left:380.160000px;}
.x69_c01352{left:381.885000px;}
.x5d_c01352{left:384.480000px;}
.xa9_c01352{left:386.205000px;}
.x6a_c01352{left:388.800000px;}
.xd3_c01352{left:390.525000px;}
.xa2_c01352{left:393.120000px;}
.x76_c01352{left:394.845000px;}
.x95_c01352{left:397.440000px;}
.x39_c01352{left:400.035000px;}
.x58_c01352{left:403.485000px;}
.x96_c01352{left:406.080000px;}
.x77_c01352{left:410.400000px;}
.xea_c01352{left:414.720000px;}
.x14_c01352{left:417.315000px;}
.x41_c01352{left:419.040000px;}
.xc8_c01352{left:421.635000px;}
.x27_c01352{left:423.360000px;}
.x86_c01352{left:425.955000px;}
.x5f_c01352{left:430.275000px;}
.x28_c01352{left:432.870000px;}
.xaa_c01352{left:436.320000px;}
.x32_c01352{left:438.915000px;}
.x59_c01352{left:440.640000px;}
.xb1_c01352{left:442.365000px;}
.xeb_c01352{left:444.960000px;}
.x1b_c01352{left:446.685000px;}
.xbe_c01352{left:448.410000px;}
.x9c_c01352{left:451.005000px;}
.x1c_c01352{left:454.470000px;}
.x3a_c01352{left:457.920000px;}
.x15_c01352{left:460.515000px;}
.x29_c01352{left:463.110000px;}
.xa3_c01352{left:468.285000px;}
.x7_c01352{left:470.010000px;}
.x63_c01352{left:471.750000px;}
.x78_c01352{left:476.070000px;}
.x3b_c01352{left:480.390000px;}
.x4f_c01352{left:482.115000px;}
.x49_c01352{left:483.840000px;}
.x16_c01352{left:487.290000px;}
.x8c_c01352{left:489.885000px;}
.xc3_c01352{left:492.480000px;}
.x54_c01352{left:495.075000px;}
.x9d_c01352{left:496.800000px;}
.xad_c01352{left:498.525000px;}
.x92_c01352{left:500.250000px;}
.x73_c01352{left:502.845000px;}
.x6b_c01352{left:504.570000px;}
.x50_c01352{left:506.310000px;}
.xec_c01352{left:508.035000px;}
.x3c_c01352{left:509.760000px;}
.xb2_c01352{left:511.485000px;}
.xcc_c01352{left:513.210000px;}
.xe0_c01352{left:517.530000px;}
.xe7_c01352{left:520.125000px;}
.xc9_c01352{left:521.850000px;}
.x64_c01352{left:524.445000px;}
.xb8_c01352{left:531.360000px;}
.x33_c01352{left:533.955000px;}
.x5e_c01352{left:540.870000px;}
.x9e_c01352{left:543.450000px;}
.x34_c01352{left:545.190000px;}
.x5a_c01352{left:546.915000px;}
.xae_c01352{left:548.640000px;}
.x8_c01352{left:550.365000px;}
.x4a_c01352{left:552.090000px;}
.xe4_c01352{left:553.830000px;}
.xdb_c01352{left:555.555000px;}
.xb9_c01352{left:558.150000px;}
.xcd_c01352{left:559.875000px;}
.x6c_c01352{left:566.790000px;}
.xd0_c01352{left:568.515000px;}
.x103_c01352{left:570.240000px;}
.xce_c01352{left:572.835000px;}
.xfe_c01352{left:575.430000px;}
.x79_c01352{left:577.155000px;}
.x2a_c01352{left:578.880000px;}
.xba_c01352{left:580.605000px;}
.x8d_c01352{left:583.200000px;}
.x9f_c01352{left:584.925000px;}
.x4d_c01352{left:587.520000px;}
.xa4_c01352{left:590.115000px;}
.x2b_c01352{left:592.710000px;}
.x7d_c01352{left:594.435000px;}
.x44_c01352{left:597.030000px;}
.x1_c01352{left:603.075000px;}
.x7a_c01352{left:605.670000px;}
.x51_c01352{left:607.395000px;}
.x2_c01352{left:609.990000px;}
.x55_c01352{left:612.570000px;}
.x8e_c01352{left:616.035000px;}
.x1d_c01352{left:618.630000px;}
.xb3_c01352{left:622.080000px;}
.xbf_c01352{left:626.400000px;}
.x9_c01352{left:628.995000px;}
.xc6_c01352{left:631.590000px;}
.x3d_c01352{left:633.315000px;}
.x97_c01352{left:635.910000px;}
.x1e_c01352{left:637.635000px;}
.x52_c01352{left:639.360000px;}
.x42_c01352{left:641.085000px;}
.xdc_c01352{left:642.810000px;}
.x17_c01352{left:644.550000px;}
.xa0_c01352{left:648.000000px;}
.xa5_c01352{left:650.595000px;}
.x3e_c01352{left:652.320000px;}
.xe1_c01352{left:654.915000px;}
.xa_c01352{left:657.510000px;}
.x2c_c01352{left:659.235000px;}
.x74_c01352{left:662.685000px;}
.xf2_c01352{left:666.150000px;}
.x6d_c01352{left:668.730000px;}
.xd8_c01352{left:670.470000px;}
.x7e_c01352{left:673.050000px;}
.xab_c01352{left:675.645000px;}
.xb_c01352{left:678.240000px;}
.x1f_c01352{left:681.690000px;}
.xd1_c01352{left:683.430000px;}
.x2d_c01352{left:685.155000px;}
.xf3_c01352{left:687.750000px;}
.xc0_c01352{left:689.475000px;}
.x101_c01352{left:691.200000px;}
.xaf_c01352{left:692.925000px;}
.x75_c01352{left:695.520000px;}
.x105_c01352{left:697.245000px;}
.xdd_c01352{left:699.840000px;}
.xf5_c01352{left:701.565000px;}
.xd9_c01352{left:705.030000px;}
.xd5_c01352{left:708.480000px;}
.xca_c01352{left:710.205000px;}
.x8f_c01352{left:711.930000px;}
.x20_c01352{left:713.670000px;}
.xb4_c01352{left:717.120000px;}
.xc4_c01352{left:720.570000px;}
.xf4_c01352{left:723.165000px;}
.xef_c01352{left:724.890000px;}
.x6e_c01352{left:728.355000px;}
.x88_c01352{left:730.080000px;}
.xf9_c01352{left:732.675000px;}
.x45_c01352{left:735.270000px;}
.x3f_c01352{left:738.720000px;}
.xee_c01352{left:743.040000px;}
.xb5_c01352{left:746.490000px;}
.x35_c01352{left:749.955000px;}
.xcf_c01352{left:753.405000px;}
.xfb_c01352{left:755.130000px;}
.x18_c01352{left:756.870000px;}
.xe2_c01352{left:759.450000px;}
.xff_c01352{left:761.190000px;}
.x21_c01352{left:764.640000px;}
.xde_c01352{left:766.365000px;}
.x46_c01352{left:768.090000px;}
.xbb_c01352{left:770.685000px;}
.xe3_c01352{left:782.790000px;}
.xd6_c01352{left:784.515000px;}
.xa6_c01352{left:786.240000px;}
.xfd_c01352{left:787.965000px;}
.x2e_c01352{left:789.690000px;}
.xd2_c01352{left:793.155000px;}
.x90_c01352{left:794.880000px;}
.xdf_c01352{left:797.475000px;}
.x89_c01352{left:800.070000px;}
.x6f_c01352{left:802.650000px;}
.xc_c01352{left:805.245000px;}
.xa7_c01352{left:807.840000px;}
.x40_c01352{left:809.565000px;}
.xd7_c01352{left:812.160000px;}
.x68_c01352{left:813.885000px;}
.x98_c01352{left:816.480000px;}
.x36_c01352{left:819.930000px;}
.x99_c01352{left:821.670000px;}
.xd4_c01352{left:823.395000px;}
.xe5_c01352{left:825.990000px;}
.x22_c01352{left:828.570000px;}
.xf6_c01352{left:830.310000px;}
.xd_c01352{left:832.890000px;}
.x106_c01352{left:834.630000px;}
.x100_c01352{left:838.080000px;}
.x91_c01352{left:840.675000px;}
.xf1_c01352{left:842.400000px;}
.x104_c01352{left:844.125000px;}
.x70_c01352{left:847.590000px;}
.xc5_c01352{left:851.040000px;}
.xcb_c01352{left:852.765000px;}
.x102_c01352{left:857.955000px;}
.xe_c01352{left:859.680000px;}
.xb6_c01352{left:863.130000px;}
.xc1_c01352{left:864.870000px;}
.xf7_c01352{left:866.595000px;}
.xfa_c01352{left:872.640000px;}
.xfc_c01352{left:880.410000px;}
.x108_c01352{left:1041.120000px;}
.x109_c01352{left:1046.310000px;}
.x10a_c01352{left:1055.805000px;}
.x10b_c01352{left:1061.850000px;}
.x107_c01352{left:1068.765000px;}
@media print{
.v1_c01352{vertical-align:-12.266667pt;}
.v0_c01352{vertical-align:0.000000pt;}
.v2_c01352{vertical-align:3.093333pt;}
.ls2_c01352{letter-spacing:0.000000pt;}
.ls0_c01352{letter-spacing:78.373333pt;}
.ls1_c01352{letter-spacing:100.541056pt;}
.ws1_c01352{word-spacing:-14.248747pt;}
.ws0_c01352{word-spacing:-6.246187pt;}
.ws2_c01352{word-spacing:-1.044053pt;}
.ws3_c01352{word-spacing:0.000000pt;}
.fs2_c01352{font-size:3.072000pt;}
.fsf_c01352{font-size:5.333333pt;}
.fs0_c01352{font-size:6.133333pt;}
.fs13_c01352{font-size:9.226667pt;}
.fs12_c01352{font-size:12.266667pt;}
.fse_c01352{font-size:15.360000pt;}
.fs1_c01352{font-size:18.453333pt;}
.fs11_c01352{font-size:21.493333pt;}
.fs17_c01352{font-size:24.586667pt;}
.fsb_c01352{font-size:27.626667pt;}
.fs3_c01352{font-size:30.720000pt;}
.fs1a_c01352{font-size:33.813333pt;}
.fsc_c01352{font-size:36.853333pt;}
.fsd_c01352{font-size:39.946667pt;}
.fsa_c01352{font-size:42.986667pt;}
.fs7_c01352{font-size:46.080000pt;}
.fs6_c01352{font-size:49.173333pt;}
.fs14_c01352{font-size:52.213333pt;}
.fs4_c01352{font-size:55.306667pt;}
.fs16_c01352{font-size:58.346667pt;}
.fs5_c01352{font-size:61.440000pt;}
.fs18_c01352{font-size:64.533333pt;}
.fs9_c01352{font-size:67.573333pt;}
.fs15_c01352{font-size:70.666667pt;}
.fs10_c01352{font-size:73.706667pt;}
.fs8_c01352{font-size:76.800000pt;}
.fs19_c01352{font-size:107.520000pt;}
.y0_c01352{bottom:0.000000pt;}
.y1ae_c01352{bottom:175.106667pt;}
.y1ad_c01352{bottom:182.786667pt;}
.y1a7_c01352{bottom:186.626667pt;}
.y1ac_c01352{bottom:187.386667pt;}
.y1a8_c01352{bottom:189.693333pt;}
.y1ab_c01352{bottom:190.466667pt;}
.y1a9_c01352{bottom:191.226667pt;}
.y1aa_c01352{bottom:199.680000pt;}
.y1a2_c01352{bottom:202.746667pt;}
.y1a6_c01352{bottom:203.520000pt;}
.y1a4_c01352{bottom:205.053333pt;}
.y1a5_c01352{bottom:205.826667pt;}
.y1a3_c01352{bottom:206.586667pt;}
.y19d_c01352{bottom:218.106667pt;}
.y1a1_c01352{bottom:218.880000pt;}
.y19e_c01352{bottom:221.946667pt;}
.y19f_c01352{bottom:222.720000pt;}
.y19c_c01352{bottom:225.786667pt;}
.y1a0_c01352{bottom:231.173333pt;}
.y19b_c01352{bottom:233.466667pt;}
.y197_c01352{bottom:234.240000pt;}
.y198_c01352{bottom:235.013333pt;}
.y196_c01352{bottom:235.773333pt;}
.y19a_c01352{bottom:238.853333pt;}
.y199_c01352{bottom:240.386667pt;}
.y195_c01352{bottom:248.826667pt;}
.y194_c01352{bottom:249.600000pt;}
.y193_c01352{bottom:253.440000pt;}
.y190_c01352{bottom:265.733333pt;}
.y18f_c01352{bottom:268.026667pt;}
.y191_c01352{bottom:269.573333pt;}
.y192_c01352{bottom:270.333333pt;}
.y18a_c01352{bottom:280.320000pt;}
.y18b_c01352{bottom:281.093333pt;}
.y18c_c01352{bottom:281.853333pt;}
.y18e_c01352{bottom:283.386667pt;}
.y188_c01352{bottom:284.160000pt;}
.y186_c01352{bottom:284.933333pt;}
.y185_c01352{bottom:285.693333pt;}
.y184_c01352{bottom:286.466667pt;}
.y189_c01352{bottom:287.226667pt;}
.y18d_c01352{bottom:288.000000pt;}
.y187_c01352{bottom:290.306667pt;}
.y182_c01352{bottom:297.986667pt;}
.y17b_c01352{bottom:298.746667pt;}
.y17e_c01352{bottom:301.053333pt;}
.y17f_c01352{bottom:301.826667pt;}
.y17c_c01352{bottom:302.586667pt;}
.y17d_c01352{bottom:303.360000pt;}
.y180_c01352{bottom:307.200000pt;}
.y183_c01352{bottom:308.733333pt;}
.y181_c01352{bottom:310.266667pt;}
.y17a_c01352{bottom:314.880000pt;}
.y176_c01352{bottom:315.653333pt;}
.y179_c01352{bottom:317.186667pt;}
.y177_c01352{bottom:318.720000pt;}
.y178_c01352{bottom:321.026667pt;}
.y174_c01352{bottom:327.933333pt;}
.y173_c01352{bottom:328.706667pt;}
.y175_c01352{bottom:331.773333pt;}
.y172_c01352{bottom:332.546667pt;}
.y16f_c01352{bottom:333.306667pt;}
.y170_c01352{bottom:334.080000pt;}
.y171_c01352{bottom:334.853333pt;}
.y16e_c01352{bottom:344.826667pt;}
.y168_c01352{bottom:345.600000pt;}
.y16b_c01352{bottom:346.373333pt;}
.y16c_c01352{bottom:347.133333pt;}
.y16d_c01352{bottom:348.666667pt;}
.y169_c01352{bottom:349.440000pt;}
.y16a_c01352{bottom:350.213333pt;}
.y166_c01352{bottom:362.493333pt;}
.y167_c01352{bottom:363.266667pt;}
.y164_c01352{bottom:365.573333pt;}
.y165_c01352{bottom:366.333333pt;}
.y161_c01352{bottom:374.013333pt;}
.y160_c01352{bottom:375.546667pt;}
.y162_c01352{bottom:376.320000pt;}
.y15c_c01352{bottom:377.093333pt;}
.y15d_c01352{bottom:377.853333pt;}
.y15e_c01352{bottom:380.160000pt;}
.y163_c01352{bottom:380.933333pt;}
.y15f_c01352{bottom:381.693333pt;}
.y15b_c01352{bottom:382.466667pt;}
.y15a_c01352{bottom:387.840000pt;}
.y153_c01352{bottom:393.213333pt;}
.y156_c01352{bottom:393.986667pt;}
.y155_c01352{bottom:394.746667pt;}
.y159_c01352{bottom:395.520000pt;}
.y152_c01352{bottom:396.293333pt;}
.y157_c01352{bottom:397.053333pt;}
.y154_c01352{bottom:397.826667pt;}
.y158_c01352{bottom:403.973333pt;}
.y14a_c01352{bottom:408.573333pt;}
.y14c_c01352{bottom:409.346667pt;}
.y14e_c01352{bottom:410.106667pt;}
.y150_c01352{bottom:410.880000pt;}
.y14f_c01352{bottom:411.653333pt;}
.y151_c01352{bottom:412.413333pt;}
.y14d_c01352{bottom:413.186667pt;}
.y14b_c01352{bottom:418.560000pt;}
.y149_c01352{bottom:423.173333pt;}
.y146_c01352{bottom:425.466667pt;}
.y148_c01352{bottom:426.240000pt;}
.y147_c01352{bottom:427.773333pt;}
.y145_c01352{bottom:428.546667pt;}
.y144_c01352{bottom:438.533333pt;}
.y13d_c01352{bottom:439.293333pt;}
.y141_c01352{bottom:440.826667pt;}
.y13f_c01352{bottom:441.600000pt;}
.y143_c01352{bottom:443.133333pt;}
.y142_c01352{bottom:443.906667pt;}
.y13e_c01352{bottom:445.440000pt;}
.y1ba_c01352{bottom:451.586667pt;}
.y140_c01352{bottom:453.120000pt;}
.y13b_c01352{bottom:455.426667pt;}
.y13c_c01352{bottom:456.186667pt;}
.y139_c01352{bottom:456.960000pt;}
.y1b9_c01352{bottom:458.493333pt;}
.y13a_c01352{bottom:459.266667pt;}
.y135_c01352{bottom:469.253333pt;}
.y130_c01352{bottom:470.786667pt;}
.y132_c01352{bottom:471.546667pt;}
.y138_c01352{bottom:472.320000pt;}
.y137_c01352{bottom:473.093333pt;}
.y131_c01352{bottom:475.386667pt;}
.y133_c01352{bottom:476.933333pt;}
.y134_c01352{bottom:481.533333pt;}
.y136_c01352{bottom:483.840000pt;}
.y12e_c01352{bottom:486.906667pt;}
.y12b_c01352{bottom:487.680000pt;}
.y12d_c01352{bottom:488.453333pt;}
.y12a_c01352{bottom:489.986667pt;}
.y12f_c01352{bottom:490.746667pt;}
.y12c_c01352{bottom:491.520000pt;}
.y126_c01352{bottom:502.266667pt;}
.y124_c01352{bottom:503.040000pt;}
.y128_c01352{bottom:503.813333pt;}
.y125_c01352{bottom:504.573333pt;}
.y127_c01352{bottom:505.346667pt;}
.y123_c01352{bottom:506.106667pt;}
.y129_c01352{bottom:511.493333pt;}
.y121_c01352{bottom:514.560000pt;}
.y11e_c01352{bottom:515.333333pt;}
.y11a_c01352{bottom:516.866667pt;}
.y11c_c01352{bottom:517.626667pt;}
.y11f_c01352{bottom:519.933333pt;}
.y11b_c01352{bottom:520.706667pt;}
.y11d_c01352{bottom:521.466667pt;}
.y120_c01352{bottom:525.306667pt;}
.y122_c01352{bottom:531.453333pt;}
.y117_c01352{bottom:532.986667pt;}
.y116_c01352{bottom:533.760000pt;}
.y114_c01352{bottom:536.826667pt;}
.y115_c01352{bottom:537.600000pt;}
.y118_c01352{bottom:543.746667pt;}
.y119_c01352{bottom:549.120000pt;}
.y111_c01352{bottom:549.893333pt;}
.y112_c01352{bottom:550.653333pt;}
.y113_c01352{bottom:551.426667pt;}
.y110_c01352{bottom:552.186667pt;}
.y10f_c01352{bottom:563.706667pt;}
.y10c_c01352{bottom:566.013333pt;}
.y10e_c01352{bottom:566.786667pt;}
.y10b_c01352{bottom:567.546667pt;}
.y10d_c01352{bottom:568.320000pt;}
.y105_c01352{bottom:578.306667pt;}
.y106_c01352{bottom:579.066667pt;}
.y108_c01352{bottom:580.613333pt;}
.y109_c01352{bottom:582.906667pt;}
.y10a_c01352{bottom:592.133333pt;}
.y104_c01352{bottom:593.666667pt;}
.y107_c01352{bottom:595.200000pt;}
.yfe_c01352{bottom:595.973333pt;}
.y103_c01352{bottom:596.733333pt;}
.y102_c01352{bottom:597.506667pt;}
.y101_c01352{bottom:598.266667pt;}
.yfd_c01352{bottom:599.813333pt;}
.y100_c01352{bottom:602.106667pt;}
.yff_c01352{bottom:603.653333pt;}
.yf7_c01352{bottom:607.493333pt;}
.yfa_c01352{bottom:608.253333pt;}
.yf9_c01352{bottom:609.026667pt;}
.yfc_c01352{bottom:609.786667pt;}
.yf8_c01352{bottom:612.093333pt;}
.yfb_c01352{bottom:612.866667pt;}
.yf6_c01352{bottom:613.626667pt;}
.yf1_c01352{bottom:625.146667pt;}
.yf3_c01352{bottom:625.920000pt;}
.yf2_c01352{bottom:627.453333pt;}
.yf0_c01352{bottom:628.226667pt;}
.yef_c01352{bottom:628.986667pt;}
.yf4_c01352{bottom:629.760000pt;}
.yf5_c01352{bottom:630.533333pt;}
.yea_c01352{bottom:639.746667pt;}
.yec_c01352{bottom:640.506667pt;}
.yee_c01352{bottom:642.053333pt;}
.ye9_c01352{bottom:643.586667pt;}
.yeb_c01352{bottom:645.120000pt;}
.yed_c01352{bottom:650.493333pt;}
.ye2_c01352{bottom:655.106667pt;}
.ye3_c01352{bottom:655.866667pt;}
.ye8_c01352{bottom:657.413333pt;}
.ye6_c01352{bottom:659.706667pt;}
.ye4_c01352{bottom:660.480000pt;}
.ye7_c01352{bottom:667.386667pt;}
.ye5_c01352{bottom:671.226667pt;}
.ye1_c01352{bottom:672.000000pt;}
.ye0_c01352{bottom:673.533333pt;}
.ydd_c01352{bottom:675.066667pt;}
.yde_c01352{bottom:675.840000pt;}
.ydf_c01352{bottom:676.613333pt;}
.yd6_c01352{bottom:688.893333pt;}
.yd7_c01352{bottom:689.666667pt;}
.yd5_c01352{bottom:691.200000pt;}
.ydb_c01352{bottom:691.973333pt;}
.yd9_c01352{bottom:694.266667pt;}
.ydc_c01352{bottom:699.653333pt;}
.yda_c01352{bottom:701.186667pt;}
.yd8_c01352{bottom:701.946667pt;}
.yd0_c01352{bottom:702.720000pt;}
.yd3_c01352{bottom:703.493333pt;}
.yd4_c01352{bottom:704.253333pt;}
.ycf_c01352{bottom:705.786667pt;}
.yd2_c01352{bottom:706.560000pt;}
.yd1_c01352{bottom:707.333333pt;}
.ycd_c01352{bottom:718.853333pt;}
.yce_c01352{bottom:720.386667pt;}
.y3_c01352{bottom:721.920000pt;}
.y4_c01352{bottom:722.693333pt;}
.ycc_c01352{bottom:732.666667pt;}
.yc8_c01352{bottom:733.440000pt;}
.yca_c01352{bottom:734.213333pt;}
.yc7_c01352{bottom:736.506667pt;}
.yc5_c01352{bottom:737.280000pt;}
.yc6_c01352{bottom:738.053333pt;}
.yc9_c01352{bottom:738.813333pt;}
.ycb_c01352{bottom:742.653333pt;}
.ybf_c01352{bottom:748.800000pt;}
.yc4_c01352{bottom:751.106667pt;}
.yc2_c01352{bottom:751.866667pt;}
.ybe_c01352{bottom:752.640000pt;}
.yc0_c01352{bottom:753.413333pt;}
.yc3_c01352{bottom:754.173333pt;}
.yc1_c01352{bottom:763.386667pt;}
.ybd_c01352{bottom:764.933333pt;}
.yba_c01352{bottom:765.693333pt;}
.yb8_c01352{bottom:767.226667pt;}
.yb9_c01352{bottom:768.773333pt;}
.ybc_c01352{bottom:769.533333pt;}
.yb2_c01352{bottom:780.293333pt;}
.ybb_c01352{bottom:781.053333pt;}
.yb6_c01352{bottom:783.360000pt;}
.yb3_c01352{bottom:784.133333pt;}
.yb7_c01352{bottom:784.893333pt;}
.yb5_c01352{bottom:785.666667pt;}
.yb4_c01352{bottom:789.506667pt;}
.yae_c01352{bottom:792.573333pt;}
.yac_c01352{bottom:794.880000pt;}
.yaf_c01352{bottom:797.186667pt;}
.yb1_c01352{bottom:797.946667pt;}
.yad_c01352{bottom:799.493333pt;}
.yb0_c01352{bottom:800.253333pt;}
.ya8_c01352{bottom:811.013333pt;}
.ya9_c01352{bottom:811.773333pt;}
.ya7_c01352{bottom:814.080000pt;}
.ya3_c01352{bottom:814.853333pt;}
.yaa_c01352{bottom:815.613333pt;}
.yab_c01352{bottom:816.386667pt;}
.ya0_c01352{bottom:826.373333pt;}
.ya2_c01352{bottom:827.906667pt;}
.ya6_c01352{bottom:829.440000pt;}
.ya5_c01352{bottom:830.213333pt;}
.ya1_c01352{bottom:830.973333pt;}
.ya4_c01352{bottom:831.746667pt;}
.y9c_c01352{bottom:841.733333pt;}
.y9d_c01352{bottom:842.493333pt;}
.y9f_c01352{bottom:843.266667pt;}
.y9e_c01352{bottom:850.173333pt;}
.y9b_c01352{bottom:851.706667pt;}
.y98_c01352{bottom:857.093333pt;}
.y97_c01352{bottom:860.933333pt;}
.y99_c01352{bottom:861.693333pt;}
.y9a_c01352{bottom:862.466667pt;}
.y1b5_c01352{bottom:863.226667pt;}
.y93_c01352{bottom:872.453333pt;}
.y95_c01352{bottom:873.213333pt;}
.y94_c01352{bottom:877.053333pt;}
.y96_c01352{bottom:877.826667pt;}
.y1b8_c01352{bottom:883.200000pt;}
.y92_c01352{bottom:883.973333pt;}
.y8f_c01352{bottom:889.346667pt;}
.y8b_c01352{bottom:891.653333pt;}
.y8e_c01352{bottom:892.413333pt;}
.y91_c01352{bottom:893.186667pt;}
.y90_c01352{bottom:893.946667pt;}
.y8d_c01352{bottom:894.720000pt;}
.y8c_c01352{bottom:900.093333pt;}
.y83_c01352{bottom:900.866667pt;}
.y85_c01352{bottom:902.400000pt;}
.y84_c01352{bottom:903.933333pt;}
.y86_c01352{bottom:905.466667pt;}
.y87_c01352{bottom:906.240000pt;}
.y88_c01352{bottom:907.013333pt;}
.y8a_c01352{bottom:910.080000pt;}
.y89_c01352{bottom:910.853333pt;}
.y7b_c01352{bottom:918.533333pt;}
.y7c_c01352{bottom:920.066667pt;}
.y80_c01352{bottom:920.826667pt;}
.y7e_c01352{bottom:922.373333pt;}
.y7f_c01352{bottom:924.666667pt;}
.y81_c01352{bottom:926.213333pt;}
.y82_c01352{bottom:926.973333pt;}
.y7d_c01352{bottom:931.586667pt;}
.y74_c01352{bottom:933.893333pt;}
.y73_c01352{bottom:934.653333pt;}
.y77_c01352{bottom:940.026667pt;}
.y78_c01352{bottom:940.800000pt;}
.y79_c01352{bottom:941.573333pt;}
.y7a_c01352{bottom:943.106667pt;}
.y75_c01352{bottom:944.640000pt;}
.y76_c01352{bottom:946.173333pt;}
.y6d_c01352{bottom:950.013333pt;}
.y6f_c01352{bottom:952.320000pt;}
.y6c_c01352{bottom:953.853333pt;}
.y6e_c01352{bottom:955.386667pt;}
.y70_c01352{bottom:956.160000pt;}
.y71_c01352{bottom:956.933333pt;}
.y72_c01352{bottom:958.466667pt;}
.y6b_c01352{bottom:959.226667pt;}
.y65_c01352{bottom:965.373333pt;}
.y68_c01352{bottom:966.906667pt;}
.y66_c01352{bottom:969.986667pt;}
.y67_c01352{bottom:970.746667pt;}
.y69_c01352{bottom:971.520000pt;}
.y6a_c01352{bottom:972.293333pt;}
.y61_c01352{bottom:981.506667pt;}
.y63_c01352{bottom:983.813333pt;}
.y62_c01352{bottom:984.573333pt;}
.y1b4_c01352{bottom:986.106667pt;}
.y64_c01352{bottom:993.786667pt;}
.y1b3_c01352{bottom:998.400000pt;}
.y5c_c01352{bottom:999.173333pt;}
.y5a_c01352{bottom:999.933333pt;}
.y5b_c01352{bottom:1000.706667pt;}
.y5d_c01352{bottom:1002.240000pt;}
.y60_c01352{bottom:1003.773333pt;}
.y5e_c01352{bottom:1004.546667pt;}
.y5f_c01352{bottom:1012.226667pt;}
.y55_c01352{bottom:1012.986667pt;}
.y56_c01352{bottom:1013.760000pt;}
.y53_c01352{bottom:1015.293333pt;}
.y54_c01352{bottom:1016.826667pt;}
.y59_c01352{bottom:1018.373333pt;}
.y57_c01352{bottom:1019.133333pt;}
.y1b2_c01352{bottom:1020.666667pt;}
.y58_c01352{bottom:1023.746667pt;}
.y50_c01352{bottom:1027.586667pt;}
.y51_c01352{bottom:1029.120000pt;}
.y52_c01352{bottom:1030.653333pt;}
.y4f_c01352{bottom:1031.426667pt;}
.y1b0_c01352{bottom:1034.493333pt;}
.y1af_c01352{bottom:1036.026667pt;}
.y1b1_c01352{bottom:1036.800000pt;}
.y48_c01352{bottom:1043.706667pt;}
.y4c_c01352{bottom:1046.013333pt;}
.y47_c01352{bottom:1046.786667pt;}
.y49_c01352{bottom:1047.546667pt;}
.y4d_c01352{bottom:1049.853333pt;}
.y4e_c01352{bottom:1050.626667pt;}
.y4b_c01352{bottom:1056.000000pt;}
.y4a_c01352{bottom:1057.533333pt;}
.y42_c01352{bottom:1058.306667pt;}
.y43_c01352{bottom:1059.840000pt;}
.y44_c01352{bottom:1061.373333pt;}
.y41_c01352{bottom:1062.146667pt;}
.y46_c01352{bottom:1063.680000pt;}
.y45_c01352{bottom:1065.986667pt;}
.y3d_c01352{bottom:1077.506667pt;}
.y3e_c01352{bottom:1079.040000pt;}
.y3f_c01352{bottom:1079.813333pt;}
.y40_c01352{bottom:1082.106667pt;}
.y39_c01352{bottom:1090.560000pt;}
.y37_c01352{bottom:1092.866667pt;}
.y38_c01352{bottom:1094.400000pt;}
.y3c_c01352{bottom:1095.173333pt;}
.y3a_c01352{bottom:1096.706667pt;}
.y3b_c01352{bottom:1097.466667pt;}
.y33_c01352{bottom:1105.920000pt;}
.y34_c01352{bottom:1108.986667pt;}
.y36_c01352{bottom:1111.293333pt;}
.y35_c01352{bottom:1116.666667pt;}
.y2b_c01352{bottom:1121.280000pt;}
.y2d_c01352{bottom:1122.053333pt;}
.y2a_c01352{bottom:1123.586667pt;}
.y2e_c01352{bottom:1124.346667pt;}
.y2c_c01352{bottom:1125.120000pt;}
.y32_c01352{bottom:1127.426667pt;}
.y30_c01352{bottom:1128.186667pt;}
.y2f_c01352{bottom:1128.960000pt;}
.y31_c01352{bottom:1131.266667pt;}
.y25_c01352{bottom:1137.413333pt;}
.y27_c01352{bottom:1138.173333pt;}
.y28_c01352{bottom:1138.946667pt;}
.y29_c01352{bottom:1140.480000pt;}
.y24_c01352{bottom:1142.786667pt;}
.y26_c01352{bottom:1143.546667pt;}
.y23_c01352{bottom:1145.093333pt;}
.y19_c01352{bottom:1153.533333pt;}
.y1d_c01352{bottom:1155.066667pt;}
.y1b_c01352{bottom:1155.840000pt;}
.y1c_c01352{bottom:1156.613333pt;}
.y1e_c01352{bottom:1158.146667pt;}
.y20_c01352{bottom:1158.906667pt;}
.y21_c01352{bottom:1159.680000pt;}
.y1a_c01352{bottom:1161.986667pt;}
.y1f_c01352{bottom:1163.520000pt;}
.y22_c01352{bottom:1169.666667pt;}
.y14_c01352{bottom:1170.426667pt;}
.y15_c01352{bottom:1171.973333pt;}
.y18_c01352{bottom:1175.040000pt;}
.y17_c01352{bottom:1175.813333pt;}
.y16_c01352{bottom:1176.573333pt;}
.yd_c01352{bottom:1185.786667pt;}
.ye_c01352{bottom:1187.333333pt;}
.y12_c01352{bottom:1188.093333pt;}
.yf_c01352{bottom:1188.866667pt;}
.y10_c01352{bottom:1189.626667pt;}
.y11_c01352{bottom:1190.400000pt;}
.y13_c01352{bottom:1191.173333pt;}
.y6_c01352{bottom:1201.920000pt;}
.y7_c01352{bottom:1202.693333pt;}
.y9_c01352{bottom:1203.453333pt;}
.ya_c01352{bottom:1204.226667pt;}
.y5_c01352{bottom:1205.760000pt;}
.y8_c01352{bottom:1206.533333pt;}
.yb_c01352{bottom:1208.066667pt;}
.yc_c01352{bottom:1217.280000pt;}
.y1b6_c01352{bottom:1238.786667pt;}
.y1b7_c01352{bottom:1256.453333pt;}
.y2_c01352{bottom:1261.053333pt;}
.y1_c01352{bottom:1261.826667pt;}
.h4_c01352{height:2.764500pt;}
.h11_c01352{height:4.799479pt;}
.h2_c01352{height:5.519401pt;}
.h15_c01352{height:8.303099pt;}
.h14_c01352{height:11.038802pt;}
.h10_c01352{height:13.822500pt;}
.h3_c01352{height:16.606198pt;}
.h13_c01352{height:19.341901pt;}
.h19_c01352{height:22.125599pt;}
.hd_c01352{height:24.861302pt;}
.h5_c01352{height:27.645000pt;}
.h1c_c01352{height:30.428698pt;}
.he_c01352{height:33.164401pt;}
.hf_c01352{height:35.948099pt;}
.hc_c01352{height:38.683802pt;}
.h9_c01352{height:41.467500pt;}
.h8_c01352{height:44.251198pt;}
.h1d_c01352{height:44.560833pt;}
.h16_c01352{height:46.986901pt;}
.h6_c01352{height:49.770599pt;}
.h18_c01352{height:52.506302pt;}
.h7_c01352{height:55.290000pt;}
.h1a_c01352{height:58.073698pt;}
.hb_c01352{height:60.809401pt;}
.h17_c01352{height:63.593099pt;}
.h12_c01352{height:66.328802pt;}
.ha_c01352{height:69.112500pt;}
.h1b_c01352{height:96.757500pt;}
.h1_c01352{height:1345.333333pt;}
.h0_c01352{height:1345.533333pt;}
.w0_c01352{width:963.066667pt;}
.w1_c01352{width:963.333333pt;}
.x0_c01352{left:0.000000pt;}
.x3_c01352{left:162.813333pt;}
.x4_c01352{left:170.493333pt;}
.x83_c01352{left:179.706667pt;}
.x7f_c01352{left:186.626667pt;}
.x80_c01352{left:189.693333pt;}
.x87_c01352{left:192.000000pt;}
.x71_c01352{left:195.066667pt;}
.x23_c01352{left:196.613333pt;}
.xf_c01352{left:198.906667pt;}
.x5b_c01352{left:201.986667pt;}
.xa1_c01352{left:203.520000pt;}
.xf8_c01352{left:205.053333pt;}
.x2f_c01352{left:208.133333pt;}
.x65_c01352{left:211.973333pt;}
.xf0_c01352{left:213.506667pt;}
.x30_c01352{left:215.040000pt;}
.xc2_c01352{left:218.106667pt;}
.x5_c01352{left:219.653533pt;}
.x31_c01352{left:221.186667pt;}
.x93_c01352{left:222.720000pt;}
.xbc_c01352{left:224.253333pt;}
.xb0_c01352{left:225.786667pt;}
.x6_c01352{left:228.093333pt;}
.x81_c01352{left:230.400000pt;}
.xda_c01352{left:231.933333pt;}
.x84_c01352{left:234.240000pt;}
.x19_c01352{left:235.773333pt;}
.x47_c01352{left:238.080000pt;}
.x9a_c01352{left:240.386667pt;}
.x56_c01352{left:242.693333pt;}
.x82_c01352{left:244.226667pt;}
.x60_c01352{left:246.533333pt;}
.xe8_c01352{left:248.826667pt;}
.x94_c01352{left:251.133333pt;}
.x10_c01352{left:252.666667pt;}
.x66_c01352{left:254.973333pt;}
.x4e_c01352{left:258.053333pt;}
.x53_c01352{left:260.346667pt;}
.x85_c01352{left:261.893333pt;}
.x1a_c01352{left:264.960000pt;}
.x24_c01352{left:266.493333pt;}
.x7b_c01352{left:268.800000pt;}
.x25_c01352{left:270.333333pt;}
.xe9_c01352{left:272.640000pt;}
.xb7_c01352{left:274.173333pt;}
.x37_c01352{left:275.706667pt;}
.x72_c01352{left:277.253333pt;}
.xc7_c01352{left:279.546667pt;}
.x11_c01352{left:283.386667pt;}
.x9b_c01352{left:287.226667pt;}
.x57_c01352{left:291.066667pt;}
.x61_c01352{left:292.613333pt;}
.x8a_c01352{left:295.680000pt;}
.xac_c01352{left:297.213333pt;}
.x26_c01352{left:301.826667pt;}
.x12_c01352{left:304.133333pt;}
.xe6_c01352{left:305.666667pt;}
.x5c_c01352{left:307.200000pt;}
.x4b_c01352{left:308.733333pt;}
.x38_c01352{left:310.266667pt;}
.xa8_c01352{left:314.106667pt;}
.x67_c01352{left:315.653333pt;}
.x48_c01352{left:318.720000pt;}
.x4c_c01352{left:321.786667pt;}
.xed_c01352{left:323.333333pt;}
.x62_c01352{left:326.400000pt;}
.xbd_c01352{left:328.706667pt;}
.x13_c01352{left:331.013333pt;}
.x7c_c01352{left:334.080000pt;}
.x43_c01352{left:336.386667pt;}
.x8b_c01352{left:337.920000pt;}
.x69_c01352{left:339.453333pt;}
.x5d_c01352{left:341.760000pt;}
.xa9_c01352{left:343.293333pt;}
.x6a_c01352{left:345.600000pt;}
.xd3_c01352{left:347.133333pt;}
.xa2_c01352{left:349.440000pt;}
.x76_c01352{left:350.973333pt;}
.x95_c01352{left:353.280000pt;}
.x39_c01352{left:355.586667pt;}
.x58_c01352{left:358.653333pt;}
.x96_c01352{left:360.960000pt;}
.x77_c01352{left:364.800000pt;}
.xea_c01352{left:368.640000pt;}
.x14_c01352{left:370.946667pt;}
.x41_c01352{left:372.480000pt;}
.xc8_c01352{left:374.786667pt;}
.x27_c01352{left:376.320000pt;}
.x86_c01352{left:378.626667pt;}
.x5f_c01352{left:382.466667pt;}
.x28_c01352{left:384.773333pt;}
.xaa_c01352{left:387.840000pt;}
.x32_c01352{left:390.146667pt;}
.x59_c01352{left:391.680000pt;}
.xb1_c01352{left:393.213333pt;}
.xeb_c01352{left:395.520000pt;}
.x1b_c01352{left:397.053333pt;}
.xbe_c01352{left:398.586667pt;}
.x9c_c01352{left:400.893333pt;}
.x1c_c01352{left:403.973333pt;}
.x3a_c01352{left:407.040000pt;}
.x15_c01352{left:409.346667pt;}
.x29_c01352{left:411.653333pt;}
.xa3_c01352{left:416.253333pt;}
.x7_c01352{left:417.786667pt;}
.x63_c01352{left:419.333333pt;}
.x78_c01352{left:423.173333pt;}
.x3b_c01352{left:427.013333pt;}
.x4f_c01352{left:428.546667pt;}
.x49_c01352{left:430.080000pt;}
.x16_c01352{left:433.146667pt;}
.x8c_c01352{left:435.453333pt;}
.xc3_c01352{left:437.760000pt;}
.x54_c01352{left:440.066667pt;}
.x9d_c01352{left:441.600000pt;}
.xad_c01352{left:443.133333pt;}
.x92_c01352{left:444.666667pt;}
.x73_c01352{left:446.973333pt;}
.x6b_c01352{left:448.506667pt;}
.x50_c01352{left:450.053333pt;}
.xec_c01352{left:451.586667pt;}
.x3c_c01352{left:453.120000pt;}
.xb2_c01352{left:454.653333pt;}
.xcc_c01352{left:456.186667pt;}
.xe0_c01352{left:460.026667pt;}
.xe7_c01352{left:462.333333pt;}
.xc9_c01352{left:463.866667pt;}
.x64_c01352{left:466.173333pt;}
.xb8_c01352{left:472.320000pt;}
.x33_c01352{left:474.626667pt;}
.x5e_c01352{left:480.773333pt;}
.x9e_c01352{left:483.066667pt;}
.x34_c01352{left:484.613333pt;}
.x5a_c01352{left:486.146667pt;}
.xae_c01352{left:487.680000pt;}
.x8_c01352{left:489.213333pt;}
.x4a_c01352{left:490.746667pt;}
.xe4_c01352{left:492.293333pt;}
.xdb_c01352{left:493.826667pt;}
.xb9_c01352{left:496.133333pt;}
.xcd_c01352{left:497.666667pt;}
.x6c_c01352{left:503.813333pt;}
.xd0_c01352{left:505.346667pt;}
.x103_c01352{left:506.880000pt;}
.xce_c01352{left:509.186667pt;}
.xfe_c01352{left:511.493333pt;}
.x79_c01352{left:513.026667pt;}
.x2a_c01352{left:514.560000pt;}
.xba_c01352{left:516.093333pt;}
.x8d_c01352{left:518.400000pt;}
.x9f_c01352{left:519.933333pt;}
.x4d_c01352{left:522.240000pt;}
.xa4_c01352{left:524.546667pt;}
.x2b_c01352{left:526.853333pt;}
.x7d_c01352{left:528.386667pt;}
.x44_c01352{left:530.693333pt;}
.x1_c01352{left:536.066667pt;}
.x7a_c01352{left:538.373333pt;}
.x51_c01352{left:539.906667pt;}
.x2_c01352{left:542.213333pt;}
.x55_c01352{left:544.506667pt;}
.x8e_c01352{left:547.586667pt;}
.x1d_c01352{left:549.893333pt;}
.xb3_c01352{left:552.960000pt;}
.xbf_c01352{left:556.800000pt;}
.x9_c01352{left:559.106667pt;}
.xc6_c01352{left:561.413333pt;}
.x3d_c01352{left:562.946667pt;}
.x97_c01352{left:565.253333pt;}
.x1e_c01352{left:566.786667pt;}
.x52_c01352{left:568.320000pt;}
.x42_c01352{left:569.853333pt;}
.xdc_c01352{left:571.386667pt;}
.x17_c01352{left:572.933333pt;}
.xa0_c01352{left:576.000000pt;}
.xa5_c01352{left:578.306667pt;}
.x3e_c01352{left:579.840000pt;}
.xe1_c01352{left:582.146667pt;}
.xa_c01352{left:584.453333pt;}
.x2c_c01352{left:585.986667pt;}
.x74_c01352{left:589.053333pt;}
.xf2_c01352{left:592.133333pt;}
.x6d_c01352{left:594.426667pt;}
.xd8_c01352{left:595.973333pt;}
.x7e_c01352{left:598.266667pt;}
.xab_c01352{left:600.573333pt;}
.xb_c01352{left:602.880000pt;}
.x1f_c01352{left:605.946667pt;}
.xd1_c01352{left:607.493333pt;}
.x2d_c01352{left:609.026667pt;}
.xf3_c01352{left:611.333333pt;}
.xc0_c01352{left:612.866667pt;}
.x101_c01352{left:614.400000pt;}
.xaf_c01352{left:615.933333pt;}
.x75_c01352{left:618.240000pt;}
.x105_c01352{left:619.773333pt;}
.xdd_c01352{left:622.080000pt;}
.xf5_c01352{left:623.613333pt;}
.xd9_c01352{left:626.693333pt;}
.xd5_c01352{left:629.760000pt;}
.xca_c01352{left:631.293333pt;}
.x8f_c01352{left:632.826667pt;}
.x20_c01352{left:634.373333pt;}
.xb4_c01352{left:637.440000pt;}
.xc4_c01352{left:640.506667pt;}
.xf4_c01352{left:642.813333pt;}
.xef_c01352{left:644.346667pt;}
.x6e_c01352{left:647.426667pt;}
.x88_c01352{left:648.960000pt;}
.xf9_c01352{left:651.266667pt;}
.x45_c01352{left:653.573333pt;}
.x3f_c01352{left:656.640000pt;}
.xee_c01352{left:660.480000pt;}
.xb5_c01352{left:663.546667pt;}
.x35_c01352{left:666.626667pt;}
.xcf_c01352{left:669.693333pt;}
.xfb_c01352{left:671.226667pt;}
.x18_c01352{left:672.773333pt;}
.xe2_c01352{left:675.066667pt;}
.xff_c01352{left:676.613333pt;}
.x21_c01352{left:679.680000pt;}
.xde_c01352{left:681.213333pt;}
.x46_c01352{left:682.746667pt;}
.xbb_c01352{left:685.053333pt;}
.xe3_c01352{left:695.813333pt;}
.xd6_c01352{left:697.346667pt;}
.xa6_c01352{left:698.880000pt;}
.xfd_c01352{left:700.413333pt;}
.x2e_c01352{left:701.946667pt;}
.xd2_c01352{left:705.026667pt;}
.x90_c01352{left:706.560000pt;}
.xdf_c01352{left:708.866667pt;}
.x89_c01352{left:711.173333pt;}
.x6f_c01352{left:713.466667pt;}
.xc_c01352{left:715.773333pt;}
.xa7_c01352{left:718.080000pt;}
.x40_c01352{left:719.613333pt;}
.xd7_c01352{left:721.920000pt;}
.x68_c01352{left:723.453333pt;}
.x98_c01352{left:725.760000pt;}
.x36_c01352{left:728.826667pt;}
.x99_c01352{left:730.373333pt;}
.xd4_c01352{left:731.906667pt;}
.xe5_c01352{left:734.213333pt;}
.x22_c01352{left:736.506667pt;}
.xf6_c01352{left:738.053333pt;}
.xd_c01352{left:740.346667pt;}
.x106_c01352{left:741.893333pt;}
.x100_c01352{left:744.960000pt;}
.x91_c01352{left:747.266667pt;}
.xf1_c01352{left:748.800000pt;}
.x104_c01352{left:750.333333pt;}
.x70_c01352{left:753.413333pt;}
.xc5_c01352{left:756.480000pt;}
.xcb_c01352{left:758.013333pt;}
.x102_c01352{left:762.626667pt;}
.xe_c01352{left:764.160000pt;}
.xb6_c01352{left:767.226667pt;}
.xc1_c01352{left:768.773333pt;}
.xf7_c01352{left:770.306667pt;}
.xfa_c01352{left:775.680000pt;}
.xfc_c01352{left:782.586667pt;}
.x108_c01352{left:925.440000pt;}
.x109_c01352{left:930.053333pt;}
.x10a_c01352{left:938.493333pt;}
.x10b_c01352{left:943.866667pt;}
.x107_c01352{left:950.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_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_ba781dd92d1afdc1447e665c.woff2')format("woff");}.ff1_c01353{font-family:ff1_c01353;line-height:1.109863;font-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_c01353{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m128_c01353{transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);}
.mc1_c01353{transform:matrix(0.090650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090650,0.000000,0.000000,0.250000,0,0);}
.m117_c01353{transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112475,0.000000,0.000000,0.250000,0,0);}
.m132_c01353{transform:matrix(0.130550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130550,0.000000,0.000000,0.250000,0,0);}
.mb0_c01353{transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131175,0.000000,0.000000,0.250000,0,0);}
.m81_c01353{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);}
.m10e_c01353{transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133875,0.000000,0.000000,0.250000,0,0);}
.m110_c01353{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);}
.mf0_c01353{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);}
.mf_c01353{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma0_c01353{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);}
.m9b_c01353{transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148350,0.000000,0.000000,0.250000,0,0);}
.m134_c01353{transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149950,0.000000,0.000000,0.250000,0,0);}
.m12c_c01353{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.mdf_c01353{transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151325,0.000000,0.000000,0.250000,0,0);}
.ma2_c01353{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.m2_c01353{transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155275,0.000000,0.000000,0.250000,0,0);}
.m32_c01353{transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156200,0.000000,0.000000,0.250000,0,0);}
.m118_c01353{transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159900,0.000000,0.000000,0.250000,0,0);}
.mcc_c01353{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.m74_c01353{transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162400,0.000000,0.000000,0.250000,0,0);}
.m137_c01353{transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162525,0.000000,0.000000,0.250000,0,0);}
.m6d_c01353{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.mfc_c01353{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);}
.mac_c01353{transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169075,0.000000,0.000000,0.250000,0,0);}
.mc0_c01353{transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169575,0.000000,0.000000,0.250000,0,0);}
.m94_c01353{transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170025,0.000000,0.000000,0.250000,0,0);}
.m57_c01353{transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171225,0.000000,0.000000,0.250000,0,0);}
.m101_c01353{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m3_c01353{transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171625,0.000000,0.000000,0.250000,0,0);}
.m14a_c01353{transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171650,0.000000,0.000000,0.250000,0,0);}
.m144_c01353{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);}
.md5_c01353{transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172875,0.000000,0.000000,0.250000,0,0);}
.m22_c01353{transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173600,0.000000,0.000000,0.250000,0,0);}
.m13a_c01353{transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174075,0.000000,0.000000,0.250000,0,0);}
.m8f_c01353{transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174475,0.000000,0.000000,0.250000,0,0);}
.mae_c01353{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.ma6_c01353{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.m116_c01353{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m10a_c01353{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m63_c01353{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.m2d_c01353{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m1e_c01353{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);}
.m135_c01353{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.m142_c01353{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.m70_c01353{transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184750,0.000000,0.000000,0.250000,0,0);}
.m38_c01353{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);}
.m49_c01353{transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185325,0.000000,0.000000,0.250000,0,0);}
.mde_c01353{transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185400,0.000000,0.000000,0.250000,0,0);}
.m130_c01353{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.mc2_c01353{transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186850,0.000000,0.000000,0.250000,0,0);}
.m68_c01353{transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187300,0.000000,0.000000,0.250000,0,0);}
.m62_c01353{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);}
.me1_c01353{transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188675,0.000000,0.000000,0.250000,0,0);}
.m8d_c01353{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);}
.m6c_c01353{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);}
.m7c_c01353{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);}
.m10_c01353{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.me5_c01353{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);}
.mf4_c01353{transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192250,0.000000,0.000000,0.250000,0,0);}
.me9_c01353{transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192500,0.000000,0.000000,0.250000,0,0);}
.mce_c01353{transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192575,0.000000,0.000000,0.250000,0,0);}
.mf5_c01353{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);}
.md6_c01353{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.mbf_c01353{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m104_c01353{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01353{transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193625,0.000000,0.000000,0.250000,0,0);}
.mda_c01353{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);}
.m6a_c01353{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);}
.m13_c01353{transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194250,0.000000,0.000000,0.250000,0,0);}
.mb3_c01353{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.mbb_c01353{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);}
.me2_c01353{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);}
.m67_c01353{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);}
.mbd_c01353{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);}
.m5e_c01353{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);}
.m19_c01353{transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196900,0.000000,0.000000,0.250000,0,0);}
.m1_c01353{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m43_c01353{transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198350,0.000000,0.000000,0.250000,0,0);}
.m7f_c01353{transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);}
.m37_c01353{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);}
.mb2_c01353{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.m14_c01353{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.mb8_c01353{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.m7e_c01353{transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201000,0.000000,0.000000,0.250000,0,0);}
.m90_c01353{transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201025,0.000000,0.000000,0.250000,0,0);}
.m129_c01353{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);}
.md9_c01353{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);}
.m138_c01353{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);}
.mbe_c01353{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);}
.m21_c01353{transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202550,0.000000,0.000000,0.250000,0,0);}
.mb9_c01353{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);}
.m6f_c01353{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);}
.m29_c01353{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);}
.m107_c01353{transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204400,0.000000,0.000000,0.250000,0,0);}
.m103_c01353{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.mdb_c01353{transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204775,0.000000,0.000000,0.250000,0,0);}
.m71_c01353{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);}
.m56_c01353{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);}
.mc5_c01353{transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205450,0.000000,0.000000,0.250000,0,0);}
.m10f_c01353{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);}
.mdc_c01353{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.m100_c01353{transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206025,0.000000,0.000000,0.250000,0,0);}
.m5c_c01353{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);}
.m10d_c01353{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);}
.m18_c01353{transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206875,0.000000,0.000000,0.250000,0,0);}
.m69_c01353{transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206975,0.000000,0.000000,0.250000,0,0);}
.m13d_c01353{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);}
.m127_c01353{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);}
.m13c_c01353{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.m12a_c01353{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);}
.m11c_c01353{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m88_c01353{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.meb_c01353{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.md2_c01353{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);}
.me_c01353{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);}
.m6b_c01353{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);}
.mdd_c01353{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.m102_c01353{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);}
.mee_c01353{transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209725,0.000000,0.000000,0.250000,0,0);}
.m4c_c01353{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m149_c01353{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);}
.mcd_c01353{transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210475,0.000000,0.000000,0.250000,0,0);}
.m4f_c01353{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);}
.m98_c01353{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m82_c01353{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.m25_c01353{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.mc8_c01353{transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);}
.m8a_c01353{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);}
.m10b_c01353{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);}
.m124_c01353{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);}
.m30_c01353{transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212450,0.000000,0.000000,0.250000,0,0);}
.m141_c01353{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.m11e_c01353{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);}
.m6e_c01353{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);}
.mf3_c01353{transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);}
.m5b_c01353{transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212975,0.000000,0.000000,0.250000,0,0);}
.me8_c01353{transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213025,0.000000,0.000000,0.250000,0,0);}
.mc6_c01353{transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213875,0.000000,0.000000,0.250000,0,0);}
.m76_c01353{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);}
.mec_c01353{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m13b_c01353{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);}
.m52_c01353{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.me0_c01353{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);}
.mc9_c01353{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);}
.mf7_c01353{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);}
.m139_c01353{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m136_c01353{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.mc3_c01353{transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216050,0.000000,0.000000,0.250000,0,0);}
.m12e_c01353{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);}
.mfb_c01353{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m143_c01353{transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216700,0.000000,0.000000,0.250000,0,0);}
.mfa_c01353{transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216775,0.000000,0.000000,0.250000,0,0);}
.m11b_c01353{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);}
.m99_c01353{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);}
.m123_c01353{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);}
.m11d_c01353{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);}
.m1d_c01353{transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218375,0.000000,0.000000,0.250000,0,0);}
.m13e_c01353{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.m2a_c01353{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);}
.m83_c01353{transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219225,0.000000,0.000000,0.250000,0,0);}
.m131_c01353{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);}
.m59_c01353{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.ma7_c01353{transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219925,0.000000,0.000000,0.250000,0,0);}
.m87_c01353{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.mb5_c01353{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);}
.me3_c01353{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);}
.m7b_c01353{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);}
.m3d_c01353{transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221025,0.000000,0.000000,0.250000,0,0);}
.ma5_c01353{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m120_c01353{transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221225,0.000000,0.000000,0.250000,0,0);}
.m48_c01353{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);}
.m8e_c01353{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);}
.mf2_c01353{transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223800,0.000000,0.000000,0.250000,0,0);}
.m85_c01353{transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224025,0.000000,0.000000,0.250000,0,0);}
.m147_c01353{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);}
.m75_c01353{transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224550,0.000000,0.000000,0.250000,0,0);}
.m5d_c01353{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m106_c01353{transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224950,0.000000,0.000000,0.250000,0,0);}
.m86_c01353{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m46_c01353{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);}
.m4e_c01353{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.md8_c01353{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);}
.m122_c01353{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);}
.m125_c01353{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m126_c01353{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);}
.m53_c01353{transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227775,0.000000,0.000000,0.250000,0,0);}
.m23_c01353{transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229325,0.000000,0.000000,0.250000,0,0);}
.m89_c01353{transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229450,0.000000,0.000000,0.250000,0,0);}
.ma9_c01353{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m12f_c01353{transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229700,0.000000,0.000000,0.250000,0,0);}
.m9a_c01353{transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230125,0.000000,0.000000,0.250000,0,0);}
.m64_c01353{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);}
.m28_c01353{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m109_c01353{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);}
.ma3_c01353{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);}
.mc4_c01353{transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232125,0.000000,0.000000,0.250000,0,0);}
.m12b_c01353{transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232225,0.000000,0.000000,0.250000,0,0);}
.m6_c01353{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);}
.m96_c01353{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m41_c01353{transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234325,0.000000,0.000000,0.250000,0,0);}
.mcb_c01353{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);}
.m9c_c01353{transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234625,0.000000,0.000000,0.250000,0,0);}
.med_c01353{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);}
.m7a_c01353{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m145_c01353{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);}
.m95_c01353{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);}
.m60_c01353{transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236150,0.000000,0.000000,0.250000,0,0);}
.me7_c01353{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_c01353{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.maa_c01353{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.md0_c01353{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);}
.m97_c01353{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m40_c01353{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);}
.m148_c01353{transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239175,0.000000,0.000000,0.250000,0,0);}
.m121_c01353{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m9d_c01353{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m3b_c01353{transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240325,0.000000,0.000000,0.250000,0,0);}
.md7_c01353{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);}
.ma1_c01353{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.ma4_c01353{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);}
.mab_c01353{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);}
.mef_c01353{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.md4_c01353{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);}
.md1_c01353{transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244125,0.000000,0.000000,0.250000,0,0);}
.mf9_c01353{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.mca_c01353{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);}
.me6_c01353{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);}
.mfe_c01353{transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);}
.m119_c01353{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);}
.mb7_c01353{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);}
.m2f_c01353{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);}
.m3f_c01353{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5_c01353{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);}
.m9_c01353{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);}
.m9f_c01353{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);}
.m33_c01353{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);}
.m66_c01353{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c01353{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01353{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c01353{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);}
.m45_c01353{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01353{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);}
.m36_c01353{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);}
.m1f_c01353{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m44_c01353{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);}
.m4_c01353{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m27_c01353{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m11_c01353{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);}
.md_c01353{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m24_c01353{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);}
.m17_c01353{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);}
.m50_c01353{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m47_c01353{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m16_c01353{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);}
.m58_c01353{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m79_c01353{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01353{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);}
.m5a_c01353{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m84_c01353{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mc_c01353{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mad_c01353{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m20_c01353{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01353{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.mb4_c01353{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m15_c01353{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01353{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);}
.m80_c01353{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01353{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m73_c01353{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01353{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);}
.m42_c01353{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);}
.mfd_c01353{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);}
.m133_c01353{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m65_c01353{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);}
.m11a_c01353{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m77_c01353{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);}
.m8c_c01353{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m91_c01353{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m55_c01353{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m35_c01353{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01353{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m8_c01353{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.mea_c01353{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m51_c01353{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01353{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);}
.m146_c01353{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);}
.m2c_c01353{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m78_c01353{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);}
.m140_c01353{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m54_c01353{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m12_c01353{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01353{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m13f_c01353{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m11f_c01353{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mf6_c01353{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m26_c01353{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);}
.m105_c01353{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mff_c01353{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01353{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.md3_c01353{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mc7_c01353{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m108_c01353{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);}
.maf_c01353{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m72_c01353{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01353{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.me4_c01353{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m113_c01353{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m39_c01353{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m115_c01353{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m61_c01353{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01353{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m0_c01353{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);}
.ma8_c01353{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.mbc_c01353{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);}
.m12d_c01353{transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.715000,0.000000,0.000000,0.250000,0,0);}
.m34_c01353{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m114_c01353{transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.737500,0.000000,0.000000,0.250000,0,0);}
.mf1_c01353{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);}
.mba_c01353{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m10c_c01353{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01353{transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.925000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01353{transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.967500,0.000000,0.000000,0.250000,0,0);}
.mb6_c01353{transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.160000,0.000000,0.000000,0.250000,0,0);}
.m111_c01353{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m9e_c01353{transform:matrix(1.787500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.787500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.787500,0.000000,0.000000,0.250000,0,0);}
.m112_c01353{transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.160000,0.000000,0.000000,0.250000,0,0);}
.m93_c01353{transform:matrix(2.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.265000,0.000000,0.000000,0.250000,0,0);}
.mcf_c01353{transform:matrix(5.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.472500,0.000000,0.000000,0.250000,0,0);}
.m92_c01353{transform:matrix(7.767500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(7.767500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(7.767500,0.000000,0.000000,0.250000,0,0);}
.v1_c01353{vertical-align:-3.420000px;}
.v0_c01353{vertical-align:0.000000px;}
.v2_c01353{vertical-align:3.480000px;}
.ls2_c01353{letter-spacing:0.000000px;}
.ls0_c01353{letter-spacing:55.821000px;}
.ls1_c01353{letter-spacing:340.950000px;}
.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;}
}
.ws4_c01353{word-spacing:-13.339090px;}
.ws2_c01353{word-spacing:-10.114200px;}
.ws1_c01353{word-spacing:-3.557880px;}
.ws0_c01353{word-spacing:-0.839497px;}
.ws5_c01353{word-spacing:0.000000px;}
.ws3_c01353{word-spacing:0.602160px;}
.fc0_c01353{color:transparent;}
.fs3_c01353{font-size:3.456000px;}
.fsf_c01353{font-size:6.000000px;}
.fs12_c01353{font-size:6.900000px;}
.fs10_c01353{font-size:10.380000px;}
.fs16_c01353{font-size:13.800000px;}
.fs0_c01353{font-size:17.280000px;}
.fsd_c01353{font-size:20.760000px;}
.fs18_c01353{font-size:24.180000px;}
.fs1a_c01353{font-size:27.660000px;}
.fs8_c01353{font-size:31.080000px;}
.fs6_c01353{font-size:34.560000px;}
.fse_c01353{font-size:38.040000px;}
.fs11_c01353{font-size:41.460000px;}
.fs7_c01353{font-size:44.940000px;}
.fs4_c01353{font-size:48.360000px;}
.fs5_c01353{font-size:51.840000px;}
.fsb_c01353{font-size:55.320000px;}
.fs2_c01353{font-size:58.740000px;}
.fsc_c01353{font-size:62.220000px;}
.fs1_c01353{font-size:65.640000px;}
.fsa_c01353{font-size:69.120000px;}
.fs9_c01353{font-size:72.600000px;}
.fs13_c01353{font-size:76.020000px;}
.fs17_c01353{font-size:79.500000px;}
.fs19_c01353{font-size:82.920000px;}
.fs15_c01353{font-size:86.400000px;}
.fs14_c01353{font-size:89.880000px;}
.fs1b_c01353{font-size:117.480000px;}
.y0_c01353{bottom:0.000000px;}
.y18d_c01353{bottom:181.440000px;}
.y18c_c01353{bottom:182.310000px;}
.y18e_c01353{bottom:183.165000px;}
.y18b_c01353{bottom:184.035000px;}
.y18a_c01353{bottom:189.210000px;}
.y189_c01353{bottom:190.080000px;}
.y188_c01353{bottom:192.675000px;}
.y187_c01353{bottom:207.360000px;}
.y186_c01353{bottom:209.085000px;}
.y182_c01353{bottom:212.550000px;}
.y17d_c01353{bottom:213.405000px;}
.y183_c01353{bottom:215.130000px;}
.y184_c01353{bottom:216.000000px;}
.y185_c01353{bottom:216.870000px;}
.y180_c01353{bottom:218.595000px;}
.y17e_c01353{bottom:219.450000px;}
.y17f_c01353{bottom:221.190000px;}
.y181_c01353{bottom:224.640000px;}
.y17a_c01353{bottom:228.960000px;}
.y178_c01353{bottom:229.830000px;}
.y17c_c01353{bottom:230.685000px;}
.y174_c01353{bottom:231.555000px;}
.y17b_c01353{bottom:232.410000px;}
.y176_c01353{bottom:234.150000px;}
.y177_c01353{bottom:235.005000px;}
.y175_c01353{bottom:235.875000px;}
.y179_c01353{bottom:245.370000px;}
.y16f_c01353{bottom:247.110000px;}
.y172_c01353{bottom:247.965000px;}
.y171_c01353{bottom:248.835000px;}
.y16e_c01353{bottom:249.690000px;}
.y170_c01353{bottom:250.560000px;}
.y16d_c01353{bottom:252.285000px;}
.y16b_c01353{bottom:253.155000px;}
.y16c_c01353{bottom:254.880000px;}
.y173_c01353{bottom:260.925000px;}
.y16a_c01353{bottom:263.520000px;}
.y168_c01353{bottom:266.115000px;}
.y165_c01353{bottom:267.840000px;}
.y169_c01353{bottom:269.565000px;}
.y166_c01353{bottom:270.435000px;}
.y164_c01353{bottom:271.290000px;}
.y167_c01353{bottom:273.030000px;}
.y163_c01353{bottom:283.395000px;}
.y160_c01353{bottom:285.120000px;}
.y161_c01353{bottom:285.990000px;}
.y15d_c01353{bottom:286.845000px;}
.y15f_c01353{bottom:287.715000px;}
.y15e_c01353{bottom:289.440000px;}
.y162_c01353{bottom:292.890000px;}
.y15c_c01353{bottom:298.080000px;}
.y15b_c01353{bottom:298.950000px;}
.y157_c01353{bottom:301.530000px;}
.y15a_c01353{bottom:302.400000px;}
.y156_c01353{bottom:303.270000px;}
.y159_c01353{bottom:304.995000px;}
.y158_c01353{bottom:305.850000px;}
.y155_c01353{bottom:315.360000px;}
.y152_c01353{bottom:317.955000px;}
.y151_c01353{bottom:319.680000px;}
.y150_c01353{bottom:320.550000px;}
.y153_c01353{bottom:321.405000px;}
.y14e_c01353{bottom:322.275000px;}
.y14d_c01353{bottom:324.000000px;}
.y14f_c01353{bottom:324.870000px;}
.y154_c01353{bottom:333.510000px;}
.y14c_c01353{bottom:336.090000px;}
.y146_c01353{bottom:336.960000px;}
.y14b_c01353{bottom:339.555000px;}
.y149_c01353{bottom:340.410000px;}
.y147_c01353{bottom:341.280000px;}
.y145_c01353{bottom:342.150000px;}
.y148_c01353{bottom:344.730000px;}
.y144_c01353{bottom:349.920000px;}
.y14a_c01353{bottom:352.515000px;}
.y142_c01353{bottom:354.240000px;}
.y143_c01353{bottom:355.110000px;}
.y141_c01353{bottom:355.965000px;}
.y13f_c01353{bottom:356.835000px;}
.y140_c01353{bottom:359.430000px;}
.y13c_c01353{bottom:368.070000px;}
.y13d_c01353{bottom:371.520000px;}
.y13a_c01353{bottom:372.390000px;}
.y13e_c01353{bottom:374.115000px;}
.y13b_c01353{bottom:374.970000px;}
.y139_c01353{bottom:375.840000px;}
.y138_c01353{bottom:381.885000px;}
.y137_c01353{bottom:386.205000px;}
.y134_c01353{bottom:387.075000px;}
.y135_c01353{bottom:387.930000px;}
.y133_c01353{bottom:388.800000px;}
.y131_c01353{bottom:389.670000px;}
.y130_c01353{bottom:390.525000px;}
.y136_c01353{bottom:396.570000px;}
.y132_c01353{bottom:398.310000px;}
.y12f_c01353{bottom:400.890000px;}
.y12e_c01353{bottom:401.760000px;}
.y12b_c01353{bottom:405.210000px;}
.y12c_c01353{bottom:406.950000px;}
.y12a_c01353{bottom:407.805000px;}
.y12d_c01353{bottom:408.675000px;}
.y129_c01353{bottom:410.400000px;}
.y126_c01353{bottom:419.040000px;}
.y125_c01353{bottom:420.765000px;}
.y127_c01353{bottom:422.490000px;}
.y121_c01353{bottom:423.360000px;}
.y124_c01353{bottom:425.085000px;}
.y123_c01353{bottom:425.955000px;}
.y122_c01353{bottom:426.810000px;}
.y128_c01353{bottom:428.550000px;}
.y120_c01353{bottom:429.405000px;}
.y11d_c01353{bottom:438.045000px;}
.y11c_c01353{bottom:438.915000px;}
.y11f_c01353{bottom:441.510000px;}
.y119_c01353{bottom:444.090000px;}
.y11a_c01353{bottom:446.685000px;}
.y11e_c01353{bottom:451.005000px;}
.y11b_c01353{bottom:453.600000px;}
.y118_c01353{bottom:454.470000px;}
.y117_c01353{bottom:457.050000px;}
.y114_c01353{bottom:458.790000px;}
.y116_c01353{bottom:459.645000px;}
.y112_c01353{bottom:461.370000px;}
.y115_c01353{bottom:462.240000px;}
.y113_c01353{bottom:463.965000px;}
.y110_c01353{bottom:471.750000px;}
.y111_c01353{bottom:472.605000px;}
.y10e_c01353{bottom:473.475000px;}
.y10c_c01353{bottom:475.200000px;}
.y10f_c01353{bottom:476.070000px;}
.y10a_c01353{bottom:477.795000px;}
.y10d_c01353{bottom:478.650000px;}
.y10b_c01353{bottom:482.115000px;}
.y108_c01353{bottom:494.205000px;}
.y107_c01353{bottom:497.670000px;}
.y105_c01353{bottom:498.525000px;}
.y106_c01353{bottom:499.395000px;}
.y109_c01353{bottom:502.845000px;}
.y102_c01353{bottom:505.440000px;}
.y104_c01353{bottom:507.165000px;}
.y103_c01353{bottom:508.890000px;}
.y101_c01353{bottom:510.630000px;}
.y100_c01353{bottom:511.485000px;}
.yfe_c01353{bottom:516.675000px;}
.yff_c01353{bottom:520.995000px;}
.yfd_c01353{bottom:523.590000px;}
.yf9_c01353{bottom:525.315000px;}
.yfb_c01353{bottom:526.170000px;}
.yfc_c01353{bottom:527.040000px;}
.yf8_c01353{bottom:527.910000px;}
.yf7_c01353{bottom:528.765000px;}
.yfa_c01353{bottom:529.635000px;}
.yf6_c01353{bottom:533.955000px;}
.yf5_c01353{bottom:538.275000px;}
.yf4_c01353{bottom:540.870000px;}
.yf3_c01353{bottom:542.595000px;}
.yf1_c01353{bottom:544.320000px;}
.yf2_c01353{bottom:546.045000px;}
.yf0_c01353{bottom:546.915000px;}
.yef_c01353{bottom:549.510000px;}
.yee_c01353{bottom:550.365000px;}
.yed_c01353{bottom:558.150000px;}
.yec_c01353{bottom:559.875000px;}
.yea_c01353{bottom:560.730000px;}
.yeb_c01353{bottom:564.195000px;}
.ye8_c01353{bottom:566.790000px;}
.ye9_c01353{bottom:572.835000px;}
.ye7_c01353{bottom:575.430000px;}
.ye5_c01353{bottom:581.475000px;}
.ye4_c01353{bottom:582.330000px;}
.ye3_c01353{bottom:583.200000px;}
.ye2_c01353{bottom:584.070000px;}
.ye1_c01353{bottom:584.925000px;}
.ye6_c01353{bottom:591.840000px;}
.ye0_c01353{bottom:592.710000px;}
.yda_c01353{bottom:597.885000px;}
.ydf_c01353{bottom:599.610000px;}
.yde_c01353{bottom:601.350000px;}
.ydc_c01353{bottom:602.205000px;}
.ydb_c01353{bottom:603.075000px;}
.yd9_c01353{bottom:603.930000px;}
.y1ef_c01353{bottom:604.800000px;}
.ydd_c01353{bottom:608.250000px;}
.yd3_c01353{bottom:612.570000px;}
.yd2_c01353{bottom:613.440000px;}
.yd8_c01353{bottom:614.310000px;}
.yd5_c01353{bottom:615.165000px;}
.yd7_c01353{bottom:616.035000px;}
.yd6_c01353{bottom:616.890000px;}
.yd4_c01353{bottom:618.630000px;}
.yd1_c01353{bottom:619.485000px;}
.yd0_c01353{bottom:631.590000px;}
.ycc_c01353{bottom:632.445000px;}
.yce_c01353{bottom:633.315000px;}
.ycd_c01353{bottom:634.170000px;}
.ycb_c01353{bottom:636.765000px;}
.ycf_c01353{bottom:637.635000px;}
.yca_c01353{bottom:645.405000px;}
.yc9_c01353{bottom:646.275000px;}
.yc7_c01353{bottom:648.870000px;}
.yc8_c01353{bottom:650.595000px;}
.yc4_c01353{bottom:652.320000px;}
.yc6_c01353{bottom:654.045000px;}
.yc5_c01353{bottom:654.915000px;}
.yc3_c01353{bottom:660.960000px;}
.yc2_c01353{bottom:662.685000px;}
.yc1_c01353{bottom:663.555000px;}
.ybf_c01353{bottom:666.150000px;}
.ybd_c01353{bottom:667.875000px;}
.yc0_c01353{bottom:668.730000px;}
.ybe_c01353{bottom:669.600000px;}
.ybb_c01353{bottom:670.470000px;}
.ybc_c01353{bottom:671.325000px;}
.yb8_c01353{bottom:683.430000px;}
.yb9_c01353{bottom:685.155000px;}
.yb6_c01353{bottom:686.880000px;}
.yb5_c01353{bottom:687.750000px;}
.yb4_c01353{bottom:688.605000px;}
.yba_c01353{bottom:690.330000px;}
.yb7_c01353{bottom:693.795000px;}
.yb3_c01353{bottom:697.245000px;}
.yb0_c01353{bottom:700.710000px;}
.yb1_c01353{bottom:702.435000px;}
.yb2_c01353{bottom:704.160000px;}
.yaf_c01353{bottom:705.030000px;}
.yae_c01353{bottom:705.885000px;}
.yac_c01353{bottom:715.395000px;}
.yad_c01353{bottom:717.990000px;}
.yaa_c01353{bottom:718.845000px;}
.ya9_c01353{bottom:722.310000px;}
.yab_c01353{bottom:730.080000px;}
.ya7_c01353{bottom:731.805000px;}
.ya8_c01353{bottom:732.675000px;}
.ya6_c01353{bottom:736.125000px;}
.ya5_c01353{bottom:736.995000px;}
.ya4_c01353{bottom:737.850000px;}
.ya3_c01353{bottom:738.720000px;}
.ya2_c01353{bottom:740.445000px;}
.ya1_c01353{bottom:749.085000px;}
.y9d_c01353{bottom:749.955000px;}
.ya0_c01353{bottom:753.405000px;}
.y9e_c01353{bottom:754.275000px;}
.y9f_c01353{bottom:755.130000px;}
.y9c_c01353{bottom:758.595000px;}
.y9a_c01353{bottom:767.235000px;}
.y9b_c01353{bottom:768.090000px;}
.y97_c01353{bottom:769.830000px;}
.y95_c01353{bottom:770.685000px;}
.y99_c01353{bottom:771.555000px;}
.y94_c01353{bottom:773.280000px;}
.y98_c01353{bottom:774.150000px;}
.y96_c01353{bottom:775.005000px;}
.y91_c01353{bottom:783.645000px;}
.y92_c01353{bottom:784.515000px;}
.y90_c01353{bottom:786.240000px;}
.y93_c01353{bottom:787.110000px;}
.y8d_c01353{bottom:787.965000px;}
.y8e_c01353{bottom:788.835000px;}
.y8f_c01353{bottom:789.690000px;}
.y8c_c01353{bottom:792.285000px;}
.y8a_c01353{bottom:800.925000px;}
.y8b_c01353{bottom:801.795000px;}
.y89_c01353{bottom:802.650000px;}
.y88_c01353{bottom:803.520000px;}
.y85_c01353{bottom:804.390000px;}
.y87_c01353{bottom:805.245000px;}
.y86_c01353{bottom:806.115000px;}
.y84_c01353{bottom:809.565000px;}
.y83_c01353{bottom:818.205000px;}
.y7f_c01353{bottom:822.525000px;}
.y82_c01353{bottom:823.395000px;}
.y81_c01353{bottom:824.250000px;}
.y80_c01353{bottom:825.120000px;}
.y7d_c01353{bottom:826.845000px;}
.y7e_c01353{bottom:827.715000px;}
.y79_c01353{bottom:830.310000px;}
.y7b_c01353{bottom:836.355000px;}
.y7a_c01353{bottom:839.805000px;}
.y78_c01353{bottom:840.675000px;}
.y77_c01353{bottom:844.125000px;}
.y76_c01353{bottom:844.995000px;}
.y7c_c01353{bottom:849.315000px;}
.y72_c01353{bottom:857.085000px;}
.y71_c01353{bottom:857.955000px;}
.y74_c01353{bottom:858.810000px;}
.y70_c01353{bottom:859.680000px;}
.y75_c01353{bottom:861.405000px;}
.y73_c01353{bottom:864.000000px;}
.y6e_c01353{bottom:874.365000px;}
.y6f_c01353{bottom:876.090000px;}
.y6d_c01353{bottom:879.555000px;}
.y6b_c01353{bottom:891.645000px;}
.y6c_c01353{bottom:892.515000px;}
.y6a_c01353{bottom:895.965000px;}
.y69_c01353{bottom:896.835000px;}
.y1ea_c01353{bottom:905.475000px;}
.y1e7_c01353{bottom:906.330000px;}
.y1e6_c01353{bottom:907.200000px;}
.y67_c01353{bottom:908.925000px;}
.y66_c01353{bottom:909.795000px;}
.y1e8_c01353{bottom:910.650000px;}
.y1e9_c01353{bottom:911.520000px;}
.y65_c01353{bottom:914.115000px;}
.y64_c01353{bottom:914.970000px;}
.y68_c01353{bottom:921.030000px;}
.y1e4_c01353{bottom:924.480000px;}
.y1e3_c01353{bottom:926.205000px;}
.y1e5_c01353{bottom:927.930000px;}
.y62_c01353{bottom:929.670000px;}
.y63_c01353{bottom:930.525000px;}
.y61_c01353{bottom:931.395000px;}
.y1e2_c01353{bottom:940.890000px;}
.y1e1_c01353{bottom:941.760000px;}
.y1e0_c01353{bottom:943.485000px;}
.y5e_c01353{bottom:944.355000px;}
.y60_c01353{bottom:945.210000px;}
.y5c_c01353{bottom:947.805000px;}
.y5f_c01353{bottom:948.675000px;}
.y5d_c01353{bottom:949.530000px;}
.y5b_c01353{bottom:950.400000px;}
.y1dc_c01353{bottom:960.765000px;}
.y5a_c01353{bottom:961.635000px;}
.y1ee_c01353{bottom:963.360000px;}
.y59_c01353{bottom:965.085000px;}
.y58_c01353{bottom:965.955000px;}
.y1ed_c01353{bottom:966.810000px;}
.y1df_c01353{bottom:971.130000px;}
.y1dd_c01353{bottom:972.870000px;}
.y1de_c01353{bottom:974.595000px;}
.y1db_c01353{bottom:976.320000px;}
.y56_c01353{bottom:977.190000px;}
.y54_c01353{bottom:978.045000px;}
.y57_c01353{bottom:979.770000px;}
.y1da_c01353{bottom:980.640000px;}
.y1d9_c01353{bottom:981.510000px;}
.y55_c01353{bottom:982.365000px;}
.y53_c01353{bottom:983.235000px;}
.y52_c01353{bottom:984.090000px;}
.y1d8_c01353{bottom:991.875000px;}
.y1eb_c01353{bottom:992.730000px;}
.y190_c01353{bottom:993.600000px;}
.y1ec_c01353{bottom:994.470000px;}
.y1d6_c01353{bottom:995.325000px;}
.y4e_c01353{bottom:996.195000px;}
.y1d7_c01353{bottom:997.050000px;}
.y51_c01353{bottom:997.920000px;}
.y1d5_c01353{bottom:998.790000px;}
.y4f_c01353{bottom:999.645000px;}
.y4d_c01353{bottom:1000.515000px;}
.y1d2_c01353{bottom:1010.010000px;}
.y1d3_c01353{bottom:1010.880000px;}
.y50_c01353{bottom:1011.750000px;}
.y1d4_c01353{bottom:1013.475000px;}
.y4b_c01353{bottom:1015.200000px;}
.y1d1_c01353{bottom:1016.070000px;}
.y4c_c01353{bottom:1022.970000px;}
.y1d0_c01353{bottom:1027.290000px;}
.y1ce_c01353{bottom:1029.030000px;}
.y49_c01353{bottom:1029.885000px;}
.y1cf_c01353{bottom:1031.610000px;}
.y4a_c01353{bottom:1032.480000px;}
.y1cd_c01353{bottom:1033.350000px;}
.y48_c01353{bottom:1035.075000px;}
.y47_c01353{bottom:1035.930000px;}
.y46_c01353{bottom:1036.800000px;}
.y1cc_c01353{bottom:1046.310000px;}
.y42_c01353{bottom:1048.890000px;}
.y45_c01353{bottom:1049.760000px;}
.y1cb_c01353{bottom:1050.630000px;}
.y44_c01353{bottom:1052.355000px;}
.y43_c01353{bottom:1053.210000px;}
.y41_c01353{bottom:1054.080000px;}
.y1ca_c01353{bottom:1060.995000px;}
.y1c9_c01353{bottom:1066.170000px;}
.y1c8_c01353{bottom:1067.040000px;}
.y1c7_c01353{bottom:1068.765000px;}
.y40_c01353{bottom:1069.635000px;}
.y1c5_c01353{bottom:1079.130000px;}
.y1c6_c01353{bottom:1080.870000px;}
.y3e_c01353{bottom:1083.450000px;}
.y1c4_c01353{bottom:1085.190000px;}
.y3f_c01353{bottom:1086.915000px;}
.y3d_c01353{bottom:1087.770000px;}
.y3c_c01353{bottom:1088.640000px;}
.y1c3_c01353{bottom:1096.410000px;}
.y36_c01353{bottom:1101.600000px;}
.y1c2_c01353{bottom:1102.470000px;}
.y1c1_c01353{bottom:1103.325000px;}
.y3b_c01353{bottom:1104.195000px;}
.y3a_c01353{bottom:1110.240000px;}
.y37_c01353{bottom:1113.690000px;}
.y1c0_c01353{bottom:1114.560000px;}
.y39_c01353{bottom:1116.285000px;}
.y38_c01353{bottom:1117.155000px;}
.y35_c01353{bottom:1118.010000px;}
.y1bf_c01353{bottom:1118.880000px;}
.y34_c01353{bottom:1122.330000px;}
.y33_c01353{bottom:1123.200000px;}
.y1bd_c01353{bottom:1132.710000px;}
.y1be_c01353{bottom:1137.030000px;}
.y32_c01353{bottom:1137.885000px;}
.y31_c01353{bottom:1138.755000px;}
.y30_c01353{bottom:1149.990000px;}
.y1ba_c01353{bottom:1151.715000px;}
.y2f_c01353{bottom:1152.570000px;}
.y1bc_c01353{bottom:1154.310000px;}
.y2e_c01353{bottom:1155.165000px;}
.y1bb_c01353{bottom:1156.035000px;}
.y2b_c01353{bottom:1157.760000px;}
.y2c_c01353{bottom:1158.630000px;}
.y1b9_c01353{bottom:1167.270000px;}
.y1b7_c01353{bottom:1168.125000px;}
.y1b8_c01353{bottom:1171.590000px;}
.y2d_c01353{bottom:1173.315000px;}
.y2a_c01353{bottom:1175.040000px;}
.y1b6_c01353{bottom:1186.275000px;}
.y1b5_c01353{bottom:1188.000000px;}
.y1b2_c01353{bottom:1190.595000px;}
.y29_c01353{bottom:1192.320000px;}
.y28_c01353{bottom:1193.190000px;}
.y1b3_c01353{bottom:1197.510000px;}
.y1b4_c01353{bottom:1200.090000px;}
.y1b0_c01353{bottom:1202.685000px;}
.y1af_c01353{bottom:1204.410000px;}
.y1b1_c01353{bottom:1205.280000px;}
.y25_c01353{bottom:1206.150000px;}
.y26_c01353{bottom:1207.005000px;}
.y24_c01353{bottom:1210.470000px;}
.y27_c01353{bottom:1213.050000px;}
.y1ad_c01353{bottom:1219.110000px;}
.y1ab_c01353{bottom:1219.965000px;}
.y1aa_c01353{bottom:1221.690000px;}
.y1ae_c01353{bottom:1222.560000px;}
.y22_c01353{bottom:1223.430000px;}
.y1ac_c01353{bottom:1224.285000px;}
.y23_c01353{bottom:1225.155000px;}
.y1a9_c01353{bottom:1226.010000px;}
.y21_c01353{bottom:1227.750000px;}
.y1a8_c01353{bottom:1237.245000px;}
.y1a7_c01353{bottom:1238.115000px;}
.y1f_c01353{bottom:1239.840000px;}
.y1e_c01353{bottom:1240.710000px;}
.y20_c01353{bottom:1241.565000px;}
.y1b_c01353{bottom:1244.160000px;}
.y1c_c01353{bottom:1245.030000px;}
.y1d_c01353{bottom:1245.885000px;}
.y1a6_c01353{bottom:1253.670000px;}
.y1a3_c01353{bottom:1255.395000px;}
.y18_c01353{bottom:1257.990000px;}
.y19_c01353{bottom:1258.845000px;}
.y1a_c01353{bottom:1259.715000px;}
.y1a4_c01353{bottom:1260.570000px;}
.y16_c01353{bottom:1261.440000px;}
.y17_c01353{bottom:1262.310000px;}
.y1a5_c01353{bottom:1269.210000px;}
.y1a2_c01353{bottom:1270.080000px;}
.y15_c01353{bottom:1272.675000px;}
.y1a0_c01353{bottom:1273.530000px;}
.y13_c01353{bottom:1274.400000px;}
.y1a1_c01353{bottom:1275.270000px;}
.y11_c01353{bottom:1276.125000px;}
.y19f_c01353{bottom:1276.995000px;}
.y14_c01353{bottom:1277.850000px;}
.y19e_c01353{bottom:1278.720000px;}
.y12_c01353{bottom:1279.590000px;}
.y1_c01353{bottom:1284.765000px;}
.y19c_c01353{bottom:1289.955000px;}
.ye_c01353{bottom:1291.680000px;}
.yf_c01353{bottom:1292.550000px;}
.y19d_c01353{bottom:1293.405000px;}
.y19b_c01353{bottom:1294.275000px;}
.yd_c01353{bottom:1296.000000px;}
.y10_c01353{bottom:1298.595000px;}
.y19a_c01353{bottom:1304.640000px;}
.ya_c01353{bottom:1309.830000px;}
.y199_c01353{bottom:1310.685000px;}
.y198_c01353{bottom:1311.555000px;}
.yc_c01353{bottom:1312.410000px;}
.y8_c01353{bottom:1313.280000px;}
.y9_c01353{bottom:1314.150000px;}
.yb_c01353{bottom:1316.730000px;}
.y196_c01353{bottom:1327.965000px;}
.y6_c01353{bottom:1328.835000px;}
.y197_c01353{bottom:1329.690000px;}
.y5_c01353{bottom:1330.560000px;}
.y7_c01353{bottom:1332.285000px;}
.y195_c01353{bottom:1340.070000px;}
.y194_c01353{bottom:1345.245000px;}
.y4_c01353{bottom:1346.115000px;}
.y2_c01353{bottom:1347.840000px;}
.y3_c01353{bottom:1348.710000px;}
.y193_c01353{bottom:1364.250000px;}
.y192_c01353{bottom:1365.120000px;}
.y191_c01353{bottom:1405.725000px;}
.y18f_c01353{bottom:1413.510000px;}
.h5_c01353{height:3.110063px;}
.h11_c01353{height:5.399414px;}
.h14_c01353{height:6.209326px;}
.h1e_c01353{height:6.590062px;}
.h12_c01353{height:9.340986px;}
.h18_c01353{height:12.418652px;}
.h2_c01353{height:15.550313px;}
.hf_c01353{height:18.681973px;}
.h1a_c01353{height:21.759639px;}
.h1c_c01353{height:24.891299px;}
.ha_c01353{height:27.968965px;}
.h8_c01353{height:31.100625px;}
.h10_c01353{height:34.232285px;}
.h13_c01353{height:37.309951px;}
.h9_c01353{height:40.441611px;}
.h6_c01353{height:43.519277px;}
.h7_c01353{height:46.650937px;}
.hd_c01353{height:49.782598px;}
.h4_c01353{height:52.860264px;}
.he_c01353{height:55.991924px;}
.h3_c01353{height:59.069590px;}
.hc_c01353{height:62.201250px;}
.hb_c01353{height:65.332910px;}
.h15_c01353{height:68.410576px;}
.h19_c01353{height:71.542236px;}
.h1b_c01353{height:74.619902px;}
.h17_c01353{height:77.751563px;}
.h16_c01353{height:80.883223px;}
.h1d_c01353{height:105.720527px;}
.h1_c01353{height:1513.500000px;}
.h0_c01353{height:1513.725000px;}
.w0_c01353{width:1079.130000px;}
.w1_c01353{width:1079.250000px;}
.x0_c01353{left:0.000000px;}
.x1_c01353{left:36.285000px;}
.xdd_c01353{left:178.845000px;}
.xdc_c01353{left:206.490000px;}
.x9e_c01353{left:217.725000px;}
.x83_c01353{left:220.320000px;}
.xbb_c01353{left:224.640000px;}
.x9f_c01353{left:227.235000px;}
.x11_c01353{left:229.830000px;}
.x5d_c01353{left:231.555000px;}
.x1b_c01353{left:233.280000px;}
.xd2_c01353{left:235.005000px;}
.x7_c01353{left:237.600000px;}
.x2_c01353{left:239.325000px;}
.x14_c01353{left:245.370000px;}
.x96_c01353{left:247.965000px;}
.x35_c01353{left:254.010000px;}
.x47_c01353{left:257.475000px;}
.x3d_c01353{left:260.070000px;}
.x15_c01353{left:261.795000px;}
.x2d_c01353{left:263.520000px;}
.xc4_c01353{left:267.840000px;}
.xc0_c01353{left:270.435000px;}
.x7c_c01353{left:275.610000px;}
.x62_c01353{left:277.350000px;}
.x6a_c01353{left:279.930000px;}
.xc9_c01353{left:281.670000px;}
.x48_c01353{left:283.395000px;}
.x16_c01353{left:285.120000px;}
.x40_c01353{left:287.715000px;}
.x1c_c01353{left:289.440000px;}
.x1f_c01353{left:292.035000px;}
.xc_c01353{left:293.760000px;}
.x29_c01353{left:295.485000px;}
.x3_c01353{left:298.080000px;}
.x36_c01353{left:302.400000px;}
.xcf_c01353{left:304.125000px;}
.x2e_c01353{left:305.850000px;}
.xd_c01353{left:309.315000px;}
.x43_c01353{left:311.040000px;}
.x1d_c01353{left:312.765000px;}
.x51_c01353{left:314.490000px;}
.x25_c01353{left:316.230000px;}
.x4_c01353{left:318.810000px;}
.x12_c01353{left:320.550000px;}
.x75_c01353{left:323.130000px;}
.x6b_c01353{left:324.870000px;}
.x4a_c01353{left:326.595000px;}
.x8_c01353{left:328.320000px;}
.xd0_c01353{left:331.770000px;}
.x5e_c01353{left:333.510000px;}
.xc1_c01353{left:335.235000px;}
.x3a_c01353{left:337.830000px;}
.x23_c01353{left:339.555000px;}
.x4f_c01353{left:343.005000px;}
.x41_c01353{left:347.325000px;}
.x2f_c01353{left:349.050000px;}
.x20_c01353{left:351.645000px;}
.x4c_c01353{left:354.240000px;}
.x7d_c01353{left:355.965000px;}
.x17_c01353{left:358.560000px;}
.xe_c01353{left:362.880000px;}
.x9_c01353{left:365.475000px;}
.x26_c01353{left:368.925000px;}
.x37_c01353{left:372.390000px;}
.x8d_c01353{left:374.970000px;}
.x2a_c01353{left:376.710000px;}
.xaf_c01353{left:378.435000px;}
.x30_c01353{left:382.755000px;}
.x38_c01353{left:385.350000px;}
.xc5_c01353{left:391.395000px;}
.xcd_c01353{left:393.120000px;}
.x21_c01353{left:394.845000px;}
.x1e_c01353{left:398.310000px;}
.xa_c01353{left:402.630000px;}
.x44_c01353{left:405.210000px;}
.x42_c01353{left:406.950000px;}
.x5_c01353{left:409.530000px;}
.x18_c01353{left:411.270000px;}
.xa8_c01353{left:414.720000px;}
.x4b_c01353{left:416.445000px;}
.xb6_c01353{left:419.040000px;}
.x49_c01353{left:420.765000px;}
.x45_c01353{left:422.490000px;}
.x31_c01353{left:425.955000px;}
.x93_c01353{left:428.550000px;}
.x2b_c01353{left:432.000000px;}
.x3e_c01353{left:436.320000px;}
.xf_c01353{left:438.045000px;}
.x6c_c01353{left:444.090000px;}
.xa0_c01353{left:447.555000px;}
.x32_c01353{left:451.875000px;}
.x97_c01353{left:453.600000px;}
.x3b_c01353{left:456.195000px;}
.x46_c01353{left:458.790000px;}
.xd3_c01353{left:461.370000px;}
.x73_c01353{left:463.110000px;}
.x13_c01353{left:466.560000px;}
.x2c_c01353{left:470.880000px;}
.xab_c01353{left:473.475000px;}
.x52_c01353{left:478.650000px;}
.x33_c01353{left:482.970000px;}
.xad_c01353{left:485.565000px;}
.x34_c01353{left:487.290000px;}
.x4d_c01353{left:489.885000px;}
.x3f_c01353{left:492.480000px;}
.x39_c01353{left:495.075000px;}
.x6d_c01353{left:497.670000px;}
.x27_c01353{left:499.395000px;}
.x6_c01353{left:501.120000px;}
.x22_c01353{left:502.845000px;}
.x19_c01353{left:505.440000px;}
.x10_c01353{left:507.165000px;}
.x86_c01353{left:509.760000px;}
.x3c_c01353{left:512.355000px;}
.x4e_c01353{left:514.080000px;}
.x24_c01353{left:517.530000px;}
.x63_c01353{left:519.270000px;}
.xb_c01353{left:520.995000px;}
.x50_c01353{left:529.635000px;}
.x1a_c01353{left:531.360000px;}
.xc2_c01353{left:539.130000px;}
.x28_c01353{left:544.320000px;}
.xa9_c01353{left:546.045000px;}
.x64_c01353{left:548.640000px;}
.x79_c01353{left:553.830000px;}
.x7e_c01353{left:556.410000px;}
.x6e_c01353{left:558.150000px;}
.x5f_c01353{left:560.730000px;}
.x53_c01353{left:562.470000px;}
.xdf_c01353{left:565.920000px;}
.xbf_c01353{left:570.240000px;}
.xc3_c01353{left:573.690000px;}
.x91_c01353{left:580.605000px;}
.x7f_c01353{left:584.070000px;}
.xb0_c01353{left:587.520000px;}
.x54_c01353{left:589.245000px;}
.xe7_c01353{left:590.970000px;}
.xfd_c01353{left:597.030000px;}
.x65_c01353{left:601.350000px;}
.xf9_c01353{left:603.075000px;}
.x60_c01353{left:604.800000px;}
.xeb_c01353{left:606.525000px;}
.xf1_c01353{left:611.715000px;}
.x80_c01353{left:613.440000px;}
.xb1_c01353{left:615.165000px;}
.xa4_c01353{left:616.890000px;}
.xf0_c01353{left:619.485000px;}
.xca_c01353{left:621.210000px;}
.x6f_c01353{left:625.530000px;}
.x55_c01353{left:628.125000px;}
.xf3_c01353{left:630.720000px;}
.x98_c01353{left:632.445000px;}
.x59_c01353{left:634.170000px;}
.xe0_c01353{left:636.765000px;}
.x87_c01353{left:638.490000px;}
.x92_c01353{left:640.230000px;}
.xd6_c01353{left:641.955000px;}
.x8e_c01353{left:645.405000px;}
.x8b_c01353{left:647.130000px;}
.x5a_c01353{left:648.870000px;}
.x76_c01353{left:650.595000px;}
.xac_c01353{left:652.320000px;}
.xf7_c01353{left:654.045000px;}
.xfa_c01353{left:655.770000px;}
.xe3_c01353{left:660.960000px;}
.x81_c01353{left:665.280000px;}
.xcb_c01353{left:667.005000px;}
.x5b_c01353{left:668.730000px;}
.x56_c01353{left:673.050000px;}
.x66_c01353{left:677.370000px;}
.xe5_c01353{left:680.835000px;}
.xf5_c01353{left:682.560000px;}
.x61_c01353{left:684.285000px;}
.x7a_c01353{left:686.880000px;}
.x8f_c01353{left:688.605000px;}
.x84_c01353{left:690.330000px;}
.xf2_c01353{left:692.925000px;}
.xd8_c01353{left:694.650000px;}
.x88_c01353{left:696.390000px;}
.xa5_c01353{left:698.970000px;}
.xb8_c01353{left:702.436320px;}
.xa1_c01353{left:705.030000px;}
.x77_c01353{left:708.480000px;}
.xee_c01353{left:710.205000px;}
.xb3_c01353{left:711.930000px;}
.xe4_c01353{left:713.670000px;}
.xfb_c01353{left:715.395000px;}
.xea_c01353{left:717.120000px;}
.xfe_c01353{left:721.440000px;}
.x70_c01353{left:723.165000px;}
.x74_c01353{left:726.630000px;}
.x99_c01353{left:729.210000px;}
.x89_c01353{left:730.950000px;}
.xf8_c01353{left:732.675000px;}
.xe8_c01353{left:734.400000px;}
.xe1_c01353{left:737.850000px;}
.xb9_c01353{left:739.590000px;}
.xae_c01353{left:743.040000px;}
.xaa_c01353{left:746.490000px;}
.xd4_c01353{left:749.085000px;}
.xe6_c01353{left:750.810000px;}
.x7b_c01353{left:752.550000px;}
.x9b_c01353{left:756.000000px;}
.xb4_c01353{left:758.595000px;}
.xec_c01353{left:760.320000px;}
.xa2_c01353{left:762.915000px;}
.xbc_c01353{left:764.640000px;}
.x71_c01353{left:766.365000px;}
.xff_c01353{left:768.090000px;}
.xa6_c01353{left:771.555000px;}
.xda_c01353{left:773.280000px;}
.xc7_c01353{left:775.005000px;}
.x8c_c01353{left:777.600000px;}
.xbd_c01353{left:781.050000px;}
.xb7_c01353{left:783.645000px;}
.xb2_c01353{left:785.370000px;}
.xed_c01353{left:787.965000px;}
.xe2_c01353{left:790.560000px;}
.x9a_c01353{left:792.285000px;}
.x9c_c01353{left:794.010000px;}
.x94_c01353{left:795.750000px;}
.x78_c01353{left:800.925000px;}
.xd5_c01353{left:802.650000px;}
.xa3_c01353{left:806.115000px;}
.x95_c01353{left:807.840000px;}
.xf4_c01353{left:809.565000px;}
.xd7_c01353{left:811.290000px;}
.x82_c01353{left:813.030000px;}
.x9d_c01353{left:814.755000px;}
.x5c_c01353{left:816.480000px;}
.xc8_c01353{left:818.205000px;}
.xc6_c01353{left:820.800000px;}
.xba_c01353{left:822.525000px;}
.x72_c01353{left:825.120000px;}
.xef_c01353{left:826.845000px;}
.x67_c01353{left:828.570000px;}
.xde_c01353{left:830.310000px;}
.x57_c01353{left:832.035000px;}
.x8a_c01353{left:833.760000px;}
.xfc_c01353{left:835.485000px;}
.xa7_c01353{left:837.210000px;}
.x68_c01353{left:840.675000px;}
.x90_c01353{left:842.400000px;}
.xf6_c01353{left:847.590000px;}
.xd9_c01353{left:849.315000px;}
.xcc_c01353{left:851.040000px;}
.xce_c01353{left:852.765000px;}
.x69_c01353{left:854.490000px;}
.xbe_c01353{left:856.230000px;}
.xe9_c01353{left:860.550000px;}
.xd1_c01353{left:863.130000px;}
.xb5_c01353{left:867.450000px;}
.x85_c01353{left:870.915000px;}
.x58_c01353{left:872.640000px;}
.x102_c01353{left:884.730000px;}
.x105_c01353{left:886.470000px;}
.x106_c01353{left:889.050000px;}
.xdb_c01353{left:890.790000px;}
.x103_c01353{left:895.110000px;}
.x100_c01353{left:915.840000px;}
.x104_c01353{left:930.525000px;}
.x101_c01353{left:933.990000px;}
@media print{
.v1_c01353{vertical-align:-3.040000pt;}
.v0_c01353{vertical-align:0.000000pt;}
.v2_c01353{vertical-align:3.093333pt;}
.ls2_c01353{letter-spacing:0.000000pt;}
.ls0_c01353{letter-spacing:49.618667pt;}
.ls1_c01353{letter-spacing:303.066667pt;}
.ws4_c01353{word-spacing:-11.856969pt;}
.ws2_c01353{word-spacing:-8.990400pt;}
.ws1_c01353{word-spacing:-3.162560pt;}
.ws0_c01353{word-spacing:-0.746220pt;}
.ws5_c01353{word-spacing:0.000000pt;}
.ws3_c01353{word-spacing:0.535253pt;}
.fs3_c01353{font-size:3.072000pt;}
.fsf_c01353{font-size:5.333333pt;}
.fs12_c01353{font-size:6.133333pt;}
.fs10_c01353{font-size:9.226667pt;}
.fs16_c01353{font-size:12.266667pt;}
.fs0_c01353{font-size:15.360000pt;}
.fsd_c01353{font-size:18.453333pt;}
.fs18_c01353{font-size:21.493333pt;}
.fs1a_c01353{font-size:24.586667pt;}
.fs8_c01353{font-size:27.626667pt;}
.fs6_c01353{font-size:30.720000pt;}
.fse_c01353{font-size:33.813333pt;}
.fs11_c01353{font-size:36.853333pt;}
.fs7_c01353{font-size:39.946667pt;}
.fs4_c01353{font-size:42.986667pt;}
.fs5_c01353{font-size:46.080000pt;}
.fsb_c01353{font-size:49.173333pt;}
.fs2_c01353{font-size:52.213333pt;}
.fsc_c01353{font-size:55.306667pt;}
.fs1_c01353{font-size:58.346667pt;}
.fsa_c01353{font-size:61.440000pt;}
.fs9_c01353{font-size:64.533333pt;}
.fs13_c01353{font-size:67.573333pt;}
.fs17_c01353{font-size:70.666667pt;}
.fs19_c01353{font-size:73.706667pt;}
.fs15_c01353{font-size:76.800000pt;}
.fs14_c01353{font-size:79.893333pt;}
.fs1b_c01353{font-size:104.426667pt;}
.y0_c01353{bottom:0.000000pt;}
.y18d_c01353{bottom:161.280000pt;}
.y18c_c01353{bottom:162.053333pt;}
.y18e_c01353{bottom:162.813333pt;}
.y18b_c01353{bottom:163.586667pt;}
.y18a_c01353{bottom:168.186667pt;}
.y189_c01353{bottom:168.960000pt;}
.y188_c01353{bottom:171.266667pt;}
.y187_c01353{bottom:184.320000pt;}
.y186_c01353{bottom:185.853333pt;}
.y182_c01353{bottom:188.933333pt;}
.y17d_c01353{bottom:189.693333pt;}
.y183_c01353{bottom:191.226667pt;}
.y184_c01353{bottom:192.000000pt;}
.y185_c01353{bottom:192.773333pt;}
.y180_c01353{bottom:194.306667pt;}
.y17e_c01353{bottom:195.066667pt;}
.y17f_c01353{bottom:196.613333pt;}
.y181_c01353{bottom:199.680000pt;}
.y17a_c01353{bottom:203.520000pt;}
.y178_c01353{bottom:204.293333pt;}
.y17c_c01353{bottom:205.053333pt;}
.y174_c01353{bottom:205.826667pt;}
.y17b_c01353{bottom:206.586667pt;}
.y176_c01353{bottom:208.133333pt;}
.y177_c01353{bottom:208.893333pt;}
.y175_c01353{bottom:209.666667pt;}
.y179_c01353{bottom:218.106667pt;}
.y16f_c01353{bottom:219.653333pt;}
.y172_c01353{bottom:220.413333pt;}
.y171_c01353{bottom:221.186667pt;}
.y16e_c01353{bottom:221.946667pt;}
.y170_c01353{bottom:222.720000pt;}
.y16d_c01353{bottom:224.253333pt;}
.y16b_c01353{bottom:225.026667pt;}
.y16c_c01353{bottom:226.560000pt;}
.y173_c01353{bottom:231.933333pt;}
.y16a_c01353{bottom:234.240000pt;}
.y168_c01353{bottom:236.546667pt;}
.y165_c01353{bottom:238.080000pt;}
.y169_c01353{bottom:239.613333pt;}
.y166_c01353{bottom:240.386667pt;}
.y164_c01353{bottom:241.146667pt;}
.y167_c01353{bottom:242.693333pt;}
.y163_c01353{bottom:251.906667pt;}
.y160_c01353{bottom:253.440000pt;}
.y161_c01353{bottom:254.213333pt;}
.y15d_c01353{bottom:254.973333pt;}
.y15f_c01353{bottom:255.746667pt;}
.y15e_c01353{bottom:257.280000pt;}
.y162_c01353{bottom:260.346667pt;}
.y15c_c01353{bottom:264.960000pt;}
.y15b_c01353{bottom:265.733333pt;}
.y157_c01353{bottom:268.026667pt;}
.y15a_c01353{bottom:268.800000pt;}
.y156_c01353{bottom:269.573333pt;}
.y159_c01353{bottom:271.106667pt;}
.y158_c01353{bottom:271.866667pt;}
.y155_c01353{bottom:280.320000pt;}
.y152_c01353{bottom:282.626667pt;}
.y151_c01353{bottom:284.160000pt;}
.y150_c01353{bottom:284.933333pt;}
.y153_c01353{bottom:285.693333pt;}
.y14e_c01353{bottom:286.466667pt;}
.y14d_c01353{bottom:288.000000pt;}
.y14f_c01353{bottom:288.773333pt;}
.y154_c01353{bottom:296.453333pt;}
.y14c_c01353{bottom:298.746667pt;}
.y146_c01353{bottom:299.520000pt;}
.y14b_c01353{bottom:301.826667pt;}
.y149_c01353{bottom:302.586667pt;}
.y147_c01353{bottom:303.360000pt;}
.y145_c01353{bottom:304.133333pt;}
.y148_c01353{bottom:306.426667pt;}
.y144_c01353{bottom:311.040000pt;}
.y14a_c01353{bottom:313.346667pt;}
.y142_c01353{bottom:314.880000pt;}
.y143_c01353{bottom:315.653333pt;}
.y141_c01353{bottom:316.413333pt;}
.y13f_c01353{bottom:317.186667pt;}
.y140_c01353{bottom:319.493333pt;}
.y13c_c01353{bottom:327.173333pt;}
.y13d_c01353{bottom:330.240000pt;}
.y13a_c01353{bottom:331.013333pt;}
.y13e_c01353{bottom:332.546667pt;}
.y13b_c01353{bottom:333.306667pt;}
.y139_c01353{bottom:334.080000pt;}
.y138_c01353{bottom:339.453333pt;}
.y137_c01353{bottom:343.293333pt;}
.y134_c01353{bottom:344.066667pt;}
.y135_c01353{bottom:344.826667pt;}
.y133_c01353{bottom:345.600000pt;}
.y131_c01353{bottom:346.373333pt;}
.y130_c01353{bottom:347.133333pt;}
.y136_c01353{bottom:352.506667pt;}
.y132_c01353{bottom:354.053333pt;}
.y12f_c01353{bottom:356.346667pt;}
.y12e_c01353{bottom:357.120000pt;}
.y12b_c01353{bottom:360.186667pt;}
.y12c_c01353{bottom:361.733333pt;}
.y12a_c01353{bottom:362.493333pt;}
.y12d_c01353{bottom:363.266667pt;}
.y129_c01353{bottom:364.800000pt;}
.y126_c01353{bottom:372.480000pt;}
.y125_c01353{bottom:374.013333pt;}
.y127_c01353{bottom:375.546667pt;}
.y121_c01353{bottom:376.320000pt;}
.y124_c01353{bottom:377.853333pt;}
.y123_c01353{bottom:378.626667pt;}
.y122_c01353{bottom:379.386667pt;}
.y128_c01353{bottom:380.933333pt;}
.y120_c01353{bottom:381.693333pt;}
.y11d_c01353{bottom:389.373333pt;}
.y11c_c01353{bottom:390.146667pt;}
.y11f_c01353{bottom:392.453333pt;}
.y119_c01353{bottom:394.746667pt;}
.y11a_c01353{bottom:397.053333pt;}
.y11e_c01353{bottom:400.893333pt;}
.y11b_c01353{bottom:403.200000pt;}
.y118_c01353{bottom:403.973333pt;}
.y117_c01353{bottom:406.266667pt;}
.y114_c01353{bottom:407.813333pt;}
.y116_c01353{bottom:408.573333pt;}
.y112_c01353{bottom:410.106667pt;}
.y115_c01353{bottom:410.880000pt;}
.y113_c01353{bottom:412.413333pt;}
.y110_c01353{bottom:419.333333pt;}
.y111_c01353{bottom:420.093333pt;}
.y10e_c01353{bottom:420.866667pt;}
.y10c_c01353{bottom:422.400000pt;}
.y10f_c01353{bottom:423.173333pt;}
.y10a_c01353{bottom:424.706667pt;}
.y10d_c01353{bottom:425.466667pt;}
.y10b_c01353{bottom:428.546667pt;}
.y108_c01353{bottom:439.293333pt;}
.y107_c01353{bottom:442.373333pt;}
.y105_c01353{bottom:443.133333pt;}
.y106_c01353{bottom:443.906667pt;}
.y109_c01353{bottom:446.973333pt;}
.y102_c01353{bottom:449.280000pt;}
.y104_c01353{bottom:450.813333pt;}
.y103_c01353{bottom:452.346667pt;}
.y101_c01353{bottom:453.893333pt;}
.y100_c01353{bottom:454.653333pt;}
.yfe_c01353{bottom:459.266667pt;}
.yff_c01353{bottom:463.106667pt;}
.yfd_c01353{bottom:465.413333pt;}
.yf9_c01353{bottom:466.946667pt;}
.yfb_c01353{bottom:467.706667pt;}
.yfc_c01353{bottom:468.480000pt;}
.yf8_c01353{bottom:469.253333pt;}
.yf7_c01353{bottom:470.013333pt;}
.yfa_c01353{bottom:470.786667pt;}
.yf6_c01353{bottom:474.626667pt;}
.yf5_c01353{bottom:478.466667pt;}
.yf4_c01353{bottom:480.773333pt;}
.yf3_c01353{bottom:482.306667pt;}
.yf1_c01353{bottom:483.840000pt;}
.yf2_c01353{bottom:485.373333pt;}
.yf0_c01353{bottom:486.146667pt;}
.yef_c01353{bottom:488.453333pt;}
.yee_c01353{bottom:489.213333pt;}
.yed_c01353{bottom:496.133333pt;}
.yec_c01353{bottom:497.666667pt;}
.yea_c01353{bottom:498.426667pt;}
.yeb_c01353{bottom:501.506667pt;}
.ye8_c01353{bottom:503.813333pt;}
.ye9_c01353{bottom:509.186667pt;}
.ye7_c01353{bottom:511.493333pt;}
.ye5_c01353{bottom:516.866667pt;}
.ye4_c01353{bottom:517.626667pt;}
.ye3_c01353{bottom:518.400000pt;}
.ye2_c01353{bottom:519.173333pt;}
.ye1_c01353{bottom:519.933333pt;}
.ye6_c01353{bottom:526.080000pt;}
.ye0_c01353{bottom:526.853333pt;}
.yda_c01353{bottom:531.453333pt;}
.ydf_c01353{bottom:532.986667pt;}
.yde_c01353{bottom:534.533333pt;}
.ydc_c01353{bottom:535.293333pt;}
.ydb_c01353{bottom:536.066667pt;}
.yd9_c01353{bottom:536.826667pt;}
.y1ef_c01353{bottom:537.600000pt;}
.ydd_c01353{bottom:540.666667pt;}
.yd3_c01353{bottom:544.506667pt;}
.yd2_c01353{bottom:545.280000pt;}
.yd8_c01353{bottom:546.053333pt;}
.yd5_c01353{bottom:546.813333pt;}
.yd7_c01353{bottom:547.586667pt;}
.yd6_c01353{bottom:548.346667pt;}
.yd4_c01353{bottom:549.893333pt;}
.yd1_c01353{bottom:550.653333pt;}
.yd0_c01353{bottom:561.413333pt;}
.ycc_c01353{bottom:562.173333pt;}
.yce_c01353{bottom:562.946667pt;}
.ycd_c01353{bottom:563.706667pt;}
.ycb_c01353{bottom:566.013333pt;}
.ycf_c01353{bottom:566.786667pt;}
.yca_c01353{bottom:573.693333pt;}
.yc9_c01353{bottom:574.466667pt;}
.yc7_c01353{bottom:576.773333pt;}
.yc8_c01353{bottom:578.306667pt;}
.yc4_c01353{bottom:579.840000pt;}
.yc6_c01353{bottom:581.373333pt;}
.yc5_c01353{bottom:582.146667pt;}
.yc3_c01353{bottom:587.520000pt;}
.yc2_c01353{bottom:589.053333pt;}
.yc1_c01353{bottom:589.826667pt;}
.ybf_c01353{bottom:592.133333pt;}
.ybd_c01353{bottom:593.666667pt;}
.yc0_c01353{bottom:594.426667pt;}
.ybe_c01353{bottom:595.200000pt;}
.ybb_c01353{bottom:595.973333pt;}
.ybc_c01353{bottom:596.733333pt;}
.yb8_c01353{bottom:607.493333pt;}
.yb9_c01353{bottom:609.026667pt;}
.yb6_c01353{bottom:610.560000pt;}
.yb5_c01353{bottom:611.333333pt;}
.yb4_c01353{bottom:612.093333pt;}
.yba_c01353{bottom:613.626667pt;}
.yb7_c01353{bottom:616.706667pt;}
.yb3_c01353{bottom:619.773333pt;}
.yb0_c01353{bottom:622.853333pt;}
.yb1_c01353{bottom:624.386667pt;}
.yb2_c01353{bottom:625.920000pt;}
.yaf_c01353{bottom:626.693333pt;}
.yae_c01353{bottom:627.453333pt;}
.yac_c01353{bottom:635.906667pt;}
.yad_c01353{bottom:638.213333pt;}
.yaa_c01353{bottom:638.973333pt;}
.ya9_c01353{bottom:642.053333pt;}
.yab_c01353{bottom:648.960000pt;}
.ya7_c01353{bottom:650.493333pt;}
.ya8_c01353{bottom:651.266667pt;}
.ya6_c01353{bottom:654.333333pt;}
.ya5_c01353{bottom:655.106667pt;}
.ya4_c01353{bottom:655.866667pt;}
.ya3_c01353{bottom:656.640000pt;}
.ya2_c01353{bottom:658.173333pt;}
.ya1_c01353{bottom:665.853333pt;}
.y9d_c01353{bottom:666.626667pt;}
.ya0_c01353{bottom:669.693333pt;}
.y9e_c01353{bottom:670.466667pt;}
.y9f_c01353{bottom:671.226667pt;}
.y9c_c01353{bottom:674.306667pt;}
.y9a_c01353{bottom:681.986667pt;}
.y9b_c01353{bottom:682.746667pt;}
.y97_c01353{bottom:684.293333pt;}
.y95_c01353{bottom:685.053333pt;}
.y99_c01353{bottom:685.826667pt;}
.y94_c01353{bottom:687.360000pt;}
.y98_c01353{bottom:688.133333pt;}
.y96_c01353{bottom:688.893333pt;}
.y91_c01353{bottom:696.573333pt;}
.y92_c01353{bottom:697.346667pt;}
.y90_c01353{bottom:698.880000pt;}
.y93_c01353{bottom:699.653333pt;}
.y8d_c01353{bottom:700.413333pt;}
.y8e_c01353{bottom:701.186667pt;}
.y8f_c01353{bottom:701.946667pt;}
.y8c_c01353{bottom:704.253333pt;}
.y8a_c01353{bottom:711.933333pt;}
.y8b_c01353{bottom:712.706667pt;}
.y89_c01353{bottom:713.466667pt;}
.y88_c01353{bottom:714.240000pt;}
.y85_c01353{bottom:715.013333pt;}
.y87_c01353{bottom:715.773333pt;}
.y86_c01353{bottom:716.546667pt;}
.y84_c01353{bottom:719.613333pt;}
.y83_c01353{bottom:727.293333pt;}
.y7f_c01353{bottom:731.133333pt;}
.y82_c01353{bottom:731.906667pt;}
.y81_c01353{bottom:732.666667pt;}
.y80_c01353{bottom:733.440000pt;}
.y7d_c01353{bottom:734.973333pt;}
.y7e_c01353{bottom:735.746667pt;}
.y79_c01353{bottom:738.053333pt;}
.y7b_c01353{bottom:743.426667pt;}
.y7a_c01353{bottom:746.493333pt;}
.y78_c01353{bottom:747.266667pt;}
.y77_c01353{bottom:750.333333pt;}
.y76_c01353{bottom:751.106667pt;}
.y7c_c01353{bottom:754.946667pt;}
.y72_c01353{bottom:761.853333pt;}
.y71_c01353{bottom:762.626667pt;}
.y74_c01353{bottom:763.386667pt;}
.y70_c01353{bottom:764.160000pt;}
.y75_c01353{bottom:765.693333pt;}
.y73_c01353{bottom:768.000000pt;}
.y6e_c01353{bottom:777.213333pt;}
.y6f_c01353{bottom:778.746667pt;}
.y6d_c01353{bottom:781.826667pt;}
.y6b_c01353{bottom:792.573333pt;}
.y6c_c01353{bottom:793.346667pt;}
.y6a_c01353{bottom:796.413333pt;}
.y69_c01353{bottom:797.186667pt;}
.y1ea_c01353{bottom:804.866667pt;}
.y1e7_c01353{bottom:805.626667pt;}
.y1e6_c01353{bottom:806.400000pt;}
.y67_c01353{bottom:807.933333pt;}
.y66_c01353{bottom:808.706667pt;}
.y1e8_c01353{bottom:809.466667pt;}
.y1e9_c01353{bottom:810.240000pt;}
.y65_c01353{bottom:812.546667pt;}
.y64_c01353{bottom:813.306667pt;}
.y68_c01353{bottom:818.693333pt;}
.y1e4_c01353{bottom:821.760000pt;}
.y1e3_c01353{bottom:823.293333pt;}
.y1e5_c01353{bottom:824.826667pt;}
.y62_c01353{bottom:826.373333pt;}
.y63_c01353{bottom:827.133333pt;}
.y61_c01353{bottom:827.906667pt;}
.y1e2_c01353{bottom:836.346667pt;}
.y1e1_c01353{bottom:837.120000pt;}
.y1e0_c01353{bottom:838.653333pt;}
.y5e_c01353{bottom:839.426667pt;}
.y60_c01353{bottom:840.186667pt;}
.y5c_c01353{bottom:842.493333pt;}
.y5f_c01353{bottom:843.266667pt;}
.y5d_c01353{bottom:844.026667pt;}
.y5b_c01353{bottom:844.800000pt;}
.y1dc_c01353{bottom:854.013333pt;}
.y5a_c01353{bottom:854.786667pt;}
.y1ee_c01353{bottom:856.320000pt;}
.y59_c01353{bottom:857.853333pt;}
.y58_c01353{bottom:858.626667pt;}
.y1ed_c01353{bottom:859.386667pt;}
.y1df_c01353{bottom:863.226667pt;}
.y1dd_c01353{bottom:864.773333pt;}
.y1de_c01353{bottom:866.306667pt;}
.y1db_c01353{bottom:867.840000pt;}
.y56_c01353{bottom:868.613333pt;}
.y54_c01353{bottom:869.373333pt;}
.y57_c01353{bottom:870.906667pt;}
.y1da_c01353{bottom:871.680000pt;}
.y1d9_c01353{bottom:872.453333pt;}
.y55_c01353{bottom:873.213333pt;}
.y53_c01353{bottom:873.986667pt;}
.y52_c01353{bottom:874.746667pt;}
.y1d8_c01353{bottom:881.666667pt;}
.y1eb_c01353{bottom:882.426667pt;}
.y190_c01353{bottom:883.200000pt;}
.y1ec_c01353{bottom:883.973333pt;}
.y1d6_c01353{bottom:884.733333pt;}
.y4e_c01353{bottom:885.506667pt;}
.y1d7_c01353{bottom:886.266667pt;}
.y51_c01353{bottom:887.040000pt;}
.y1d5_c01353{bottom:887.813333pt;}
.y4f_c01353{bottom:888.573333pt;}
.y4d_c01353{bottom:889.346667pt;}
.y1d2_c01353{bottom:897.786667pt;}
.y1d3_c01353{bottom:898.560000pt;}
.y50_c01353{bottom:899.333333pt;}
.y1d4_c01353{bottom:900.866667pt;}
.y4b_c01353{bottom:902.400000pt;}
.y1d1_c01353{bottom:903.173333pt;}
.y4c_c01353{bottom:909.306667pt;}
.y1d0_c01353{bottom:913.146667pt;}
.y1ce_c01353{bottom:914.693333pt;}
.y49_c01353{bottom:915.453333pt;}
.y1cf_c01353{bottom:916.986667pt;}
.y4a_c01353{bottom:917.760000pt;}
.y1cd_c01353{bottom:918.533333pt;}
.y48_c01353{bottom:920.066667pt;}
.y47_c01353{bottom:920.826667pt;}
.y46_c01353{bottom:921.600000pt;}
.y1cc_c01353{bottom:930.053333pt;}
.y42_c01353{bottom:932.346667pt;}
.y45_c01353{bottom:933.120000pt;}
.y1cb_c01353{bottom:933.893333pt;}
.y44_c01353{bottom:935.426667pt;}
.y43_c01353{bottom:936.186667pt;}
.y41_c01353{bottom:936.960000pt;}
.y1ca_c01353{bottom:943.106667pt;}
.y1c9_c01353{bottom:947.706667pt;}
.y1c8_c01353{bottom:948.480000pt;}
.y1c7_c01353{bottom:950.013333pt;}
.y40_c01353{bottom:950.786667pt;}
.y1c5_c01353{bottom:959.226667pt;}
.y1c6_c01353{bottom:960.773333pt;}
.y3e_c01353{bottom:963.066667pt;}
.y1c4_c01353{bottom:964.613333pt;}
.y3f_c01353{bottom:966.146667pt;}
.y3d_c01353{bottom:966.906667pt;}
.y3c_c01353{bottom:967.680000pt;}
.y1c3_c01353{bottom:974.586667pt;}
.y36_c01353{bottom:979.200000pt;}
.y1c2_c01353{bottom:979.973333pt;}
.y1c1_c01353{bottom:980.733333pt;}
.y3b_c01353{bottom:981.506667pt;}
.y3a_c01353{bottom:986.880000pt;}
.y37_c01353{bottom:989.946667pt;}
.y1c0_c01353{bottom:990.720000pt;}
.y39_c01353{bottom:992.253333pt;}
.y38_c01353{bottom:993.026667pt;}
.y35_c01353{bottom:993.786667pt;}
.y1bf_c01353{bottom:994.560000pt;}
.y34_c01353{bottom:997.626667pt;}
.y33_c01353{bottom:998.400000pt;}
.y1bd_c01353{bottom:1006.853333pt;}
.y1be_c01353{bottom:1010.693333pt;}
.y32_c01353{bottom:1011.453333pt;}
.y31_c01353{bottom:1012.226667pt;}
.y30_c01353{bottom:1022.213333pt;}
.y1ba_c01353{bottom:1023.746667pt;}
.y2f_c01353{bottom:1024.506667pt;}
.y1bc_c01353{bottom:1026.053333pt;}
.y2e_c01353{bottom:1026.813333pt;}
.y1bb_c01353{bottom:1027.586667pt;}
.y2b_c01353{bottom:1029.120000pt;}
.y2c_c01353{bottom:1029.893333pt;}
.y1b9_c01353{bottom:1037.573333pt;}
.y1b7_c01353{bottom:1038.333333pt;}
.y1b8_c01353{bottom:1041.413333pt;}
.y2d_c01353{bottom:1042.946667pt;}
.y2a_c01353{bottom:1044.480000pt;}
.y1b6_c01353{bottom:1054.466667pt;}
.y1b5_c01353{bottom:1056.000000pt;}
.y1b2_c01353{bottom:1058.306667pt;}
.y29_c01353{bottom:1059.840000pt;}
.y28_c01353{bottom:1060.613333pt;}
.y1b3_c01353{bottom:1064.453333pt;}
.y1b4_c01353{bottom:1066.746667pt;}
.y1b0_c01353{bottom:1069.053333pt;}
.y1af_c01353{bottom:1070.586667pt;}
.y1b1_c01353{bottom:1071.360000pt;}
.y25_c01353{bottom:1072.133333pt;}
.y26_c01353{bottom:1072.893333pt;}
.y24_c01353{bottom:1075.973333pt;}
.y27_c01353{bottom:1078.266667pt;}
.y1ad_c01353{bottom:1083.653333pt;}
.y1ab_c01353{bottom:1084.413333pt;}
.y1aa_c01353{bottom:1085.946667pt;}
.y1ae_c01353{bottom:1086.720000pt;}
.y22_c01353{bottom:1087.493333pt;}
.y1ac_c01353{bottom:1088.253333pt;}
.y23_c01353{bottom:1089.026667pt;}
.y1a9_c01353{bottom:1089.786667pt;}
.y21_c01353{bottom:1091.333333pt;}
.y1a8_c01353{bottom:1099.773333pt;}
.y1a7_c01353{bottom:1100.546667pt;}
.y1f_c01353{bottom:1102.080000pt;}
.y1e_c01353{bottom:1102.853333pt;}
.y20_c01353{bottom:1103.613333pt;}
.y1b_c01353{bottom:1105.920000pt;}
.y1c_c01353{bottom:1106.693333pt;}
.y1d_c01353{bottom:1107.453333pt;}
.y1a6_c01353{bottom:1114.373333pt;}
.y1a3_c01353{bottom:1115.906667pt;}
.y18_c01353{bottom:1118.213333pt;}
.y19_c01353{bottom:1118.973333pt;}
.y1a_c01353{bottom:1119.746667pt;}
.y1a4_c01353{bottom:1120.506667pt;}
.y16_c01353{bottom:1121.280000pt;}
.y17_c01353{bottom:1122.053333pt;}
.y1a5_c01353{bottom:1128.186667pt;}
.y1a2_c01353{bottom:1128.960000pt;}
.y15_c01353{bottom:1131.266667pt;}
.y1a0_c01353{bottom:1132.026667pt;}
.y13_c01353{bottom:1132.800000pt;}
.y1a1_c01353{bottom:1133.573333pt;}
.y11_c01353{bottom:1134.333333pt;}
.y19f_c01353{bottom:1135.106667pt;}
.y14_c01353{bottom:1135.866667pt;}
.y19e_c01353{bottom:1136.640000pt;}
.y12_c01353{bottom:1137.413333pt;}
.y1_c01353{bottom:1142.013333pt;}
.y19c_c01353{bottom:1146.626667pt;}
.ye_c01353{bottom:1148.160000pt;}
.yf_c01353{bottom:1148.933333pt;}
.y19d_c01353{bottom:1149.693333pt;}
.y19b_c01353{bottom:1150.466667pt;}
.yd_c01353{bottom:1152.000000pt;}
.y10_c01353{bottom:1154.306667pt;}
.y19a_c01353{bottom:1159.680000pt;}
.ya_c01353{bottom:1164.293333pt;}
.y199_c01353{bottom:1165.053333pt;}
.y198_c01353{bottom:1165.826667pt;}
.yc_c01353{bottom:1166.586667pt;}
.y8_c01353{bottom:1167.360000pt;}
.y9_c01353{bottom:1168.133333pt;}
.yb_c01353{bottom:1170.426667pt;}
.y196_c01353{bottom:1180.413333pt;}
.y6_c01353{bottom:1181.186667pt;}
.y197_c01353{bottom:1181.946667pt;}
.y5_c01353{bottom:1182.720000pt;}
.y7_c01353{bottom:1184.253333pt;}
.y195_c01353{bottom:1191.173333pt;}
.y194_c01353{bottom:1195.773333pt;}
.y4_c01353{bottom:1196.546667pt;}
.y2_c01353{bottom:1198.080000pt;}
.y3_c01353{bottom:1198.853333pt;}
.y193_c01353{bottom:1212.666667pt;}
.y192_c01353{bottom:1213.440000pt;}
.y191_c01353{bottom:1249.533333pt;}
.y18f_c01353{bottom:1256.453333pt;}
.h5_c01353{height:2.764500pt;}
.h11_c01353{height:4.799479pt;}
.h14_c01353{height:5.519401pt;}
.h1e_c01353{height:5.857833pt;}
.h12_c01353{height:8.303099pt;}
.h18_c01353{height:11.038802pt;}
.h2_c01353{height:13.822500pt;}
.hf_c01353{height:16.606198pt;}
.h1a_c01353{height:19.341901pt;}
.h1c_c01353{height:22.125599pt;}
.ha_c01353{height:24.861302pt;}
.h8_c01353{height:27.645000pt;}
.h10_c01353{height:30.428698pt;}
.h13_c01353{height:33.164401pt;}
.h9_c01353{height:35.948099pt;}
.h6_c01353{height:38.683802pt;}
.h7_c01353{height:41.467500pt;}
.hd_c01353{height:44.251198pt;}
.h4_c01353{height:46.986901pt;}
.he_c01353{height:49.770599pt;}
.h3_c01353{height:52.506302pt;}
.hc_c01353{height:55.290000pt;}
.hb_c01353{height:58.073698pt;}
.h15_c01353{height:60.809401pt;}
.h19_c01353{height:63.593099pt;}
.h1b_c01353{height:66.328802pt;}
.h17_c01353{height:69.112500pt;}
.h16_c01353{height:71.896198pt;}
.h1d_c01353{height:93.973802pt;}
.h1_c01353{height:1345.333333pt;}
.h0_c01353{height:1345.533333pt;}
.w0_c01353{width:959.226667pt;}
.w1_c01353{width:959.333333pt;}
.x0_c01353{left:0.000000pt;}
.x1_c01353{left:32.253333pt;}
.xdd_c01353{left:158.973333pt;}
.xdc_c01353{left:183.546667pt;}
.x9e_c01353{left:193.533333pt;}
.x83_c01353{left:195.840000pt;}
.xbb_c01353{left:199.680000pt;}
.x9f_c01353{left:201.986667pt;}
.x11_c01353{left:204.293333pt;}
.x5d_c01353{left:205.826667pt;}
.x1b_c01353{left:207.360000pt;}
.xd2_c01353{left:208.893333pt;}
.x7_c01353{left:211.200000pt;}
.x2_c01353{left:212.733333pt;}
.x14_c01353{left:218.106667pt;}
.x96_c01353{left:220.413333pt;}
.x35_c01353{left:225.786667pt;}
.x47_c01353{left:228.866667pt;}
.x3d_c01353{left:231.173333pt;}
.x15_c01353{left:232.706667pt;}
.x2d_c01353{left:234.240000pt;}
.xc4_c01353{left:238.080000pt;}
.xc0_c01353{left:240.386667pt;}
.x7c_c01353{left:244.986667pt;}
.x62_c01353{left:246.533333pt;}
.x6a_c01353{left:248.826667pt;}
.xc9_c01353{left:250.373333pt;}
.x48_c01353{left:251.906667pt;}
.x16_c01353{left:253.440000pt;}
.x40_c01353{left:255.746667pt;}
.x1c_c01353{left:257.280000pt;}
.x1f_c01353{left:259.586667pt;}
.xc_c01353{left:261.120000pt;}
.x29_c01353{left:262.653333pt;}
.x3_c01353{left:264.960000pt;}
.x36_c01353{left:268.800000pt;}
.xcf_c01353{left:270.333333pt;}
.x2e_c01353{left:271.866667pt;}
.xd_c01353{left:274.946667pt;}
.x43_c01353{left:276.480000pt;}
.x1d_c01353{left:278.013333pt;}
.x51_c01353{left:279.546667pt;}
.x25_c01353{left:281.093333pt;}
.x4_c01353{left:283.386667pt;}
.x12_c01353{left:284.933333pt;}
.x75_c01353{left:287.226667pt;}
.x6b_c01353{left:288.773333pt;}
.x4a_c01353{left:290.306667pt;}
.x8_c01353{left:291.840000pt;}
.xd0_c01353{left:294.906667pt;}
.x5e_c01353{left:296.453333pt;}
.xc1_c01353{left:297.986667pt;}
.x3a_c01353{left:300.293333pt;}
.x23_c01353{left:301.826667pt;}
.x4f_c01353{left:304.893333pt;}
.x41_c01353{left:308.733333pt;}
.x2f_c01353{left:310.266667pt;}
.x20_c01353{left:312.573333pt;}
.x4c_c01353{left:314.880000pt;}
.x7d_c01353{left:316.413333pt;}
.x17_c01353{left:318.720000pt;}
.xe_c01353{left:322.560000pt;}
.x9_c01353{left:324.866667pt;}
.x26_c01353{left:327.933333pt;}
.x37_c01353{left:331.013333pt;}
.x8d_c01353{left:333.306667pt;}
.x2a_c01353{left:334.853333pt;}
.xaf_c01353{left:336.386667pt;}
.x30_c01353{left:340.226667pt;}
.x38_c01353{left:342.533333pt;}
.xc5_c01353{left:347.906667pt;}
.xcd_c01353{left:349.440000pt;}
.x21_c01353{left:350.973333pt;}
.x1e_c01353{left:354.053333pt;}
.xa_c01353{left:357.893333pt;}
.x44_c01353{left:360.186667pt;}
.x42_c01353{left:361.733333pt;}
.x5_c01353{left:364.026667pt;}
.x18_c01353{left:365.573333pt;}
.xa8_c01353{left:368.640000pt;}
.x4b_c01353{left:370.173333pt;}
.xb6_c01353{left:372.480000pt;}
.x49_c01353{left:374.013333pt;}
.x45_c01353{left:375.546667pt;}
.x31_c01353{left:378.626667pt;}
.x93_c01353{left:380.933333pt;}
.x2b_c01353{left:384.000000pt;}
.x3e_c01353{left:387.840000pt;}
.xf_c01353{left:389.373333pt;}
.x6c_c01353{left:394.746667pt;}
.xa0_c01353{left:397.826667pt;}
.x32_c01353{left:401.666667pt;}
.x97_c01353{left:403.200000pt;}
.x3b_c01353{left:405.506667pt;}
.x46_c01353{left:407.813333pt;}
.xd3_c01353{left:410.106667pt;}
.x73_c01353{left:411.653333pt;}
.x13_c01353{left:414.720000pt;}
.x2c_c01353{left:418.560000pt;}
.xab_c01353{left:420.866667pt;}
.x52_c01353{left:425.466667pt;}
.x33_c01353{left:429.306667pt;}
.xad_c01353{left:431.613333pt;}
.x34_c01353{left:433.146667pt;}
.x4d_c01353{left:435.453333pt;}
.x3f_c01353{left:437.760000pt;}
.x39_c01353{left:440.066667pt;}
.x6d_c01353{left:442.373333pt;}
.x27_c01353{left:443.906667pt;}
.x6_c01353{left:445.440000pt;}
.x22_c01353{left:446.973333pt;}
.x19_c01353{left:449.280000pt;}
.x10_c01353{left:450.813333pt;}
.x86_c01353{left:453.120000pt;}
.x3c_c01353{left:455.426667pt;}
.x4e_c01353{left:456.960000pt;}
.x24_c01353{left:460.026667pt;}
.x63_c01353{left:461.573333pt;}
.xb_c01353{left:463.106667pt;}
.x50_c01353{left:470.786667pt;}
.x1a_c01353{left:472.320000pt;}
.xc2_c01353{left:479.226667pt;}
.x28_c01353{left:483.840000pt;}
.xa9_c01353{left:485.373333pt;}
.x64_c01353{left:487.680000pt;}
.x79_c01353{left:492.293333pt;}
.x7e_c01353{left:494.586667pt;}
.x6e_c01353{left:496.133333pt;}
.x5f_c01353{left:498.426667pt;}
.x53_c01353{left:499.973333pt;}
.xdf_c01353{left:503.040000pt;}
.xbf_c01353{left:506.880000pt;}
.xc3_c01353{left:509.946667pt;}
.x91_c01353{left:516.093333pt;}
.x7f_c01353{left:519.173333pt;}
.xb0_c01353{left:522.240000pt;}
.x54_c01353{left:523.773333pt;}
.xe7_c01353{left:525.306667pt;}
.xfd_c01353{left:530.693333pt;}
.x65_c01353{left:534.533333pt;}
.xf9_c01353{left:536.066667pt;}
.x60_c01353{left:537.600000pt;}
.xeb_c01353{left:539.133333pt;}
.xf1_c01353{left:543.746667pt;}
.x80_c01353{left:545.280000pt;}
.xb1_c01353{left:546.813333pt;}
.xa4_c01353{left:548.346667pt;}
.xf0_c01353{left:550.653333pt;}
.xca_c01353{left:552.186667pt;}
.x6f_c01353{left:556.026667pt;}
.x55_c01353{left:558.333333pt;}
.xf3_c01353{left:560.640000pt;}
.x98_c01353{left:562.173333pt;}
.x59_c01353{left:563.706667pt;}
.xe0_c01353{left:566.013333pt;}
.x87_c01353{left:567.546667pt;}
.x92_c01353{left:569.093333pt;}
.xd6_c01353{left:570.626667pt;}
.x8e_c01353{left:573.693333pt;}
.x8b_c01353{left:575.226667pt;}
.x5a_c01353{left:576.773333pt;}
.x76_c01353{left:578.306667pt;}
.xac_c01353{left:579.840000pt;}
.xf7_c01353{left:581.373333pt;}
.xfa_c01353{left:582.906667pt;}
.xe3_c01353{left:587.520000pt;}
.x81_c01353{left:591.360000pt;}
.xcb_c01353{left:592.893333pt;}
.x5b_c01353{left:594.426667pt;}
.x56_c01353{left:598.266667pt;}
.x66_c01353{left:602.106667pt;}
.xe5_c01353{left:605.186667pt;}
.xf5_c01353{left:606.720000pt;}
.x61_c01353{left:608.253333pt;}
.x7a_c01353{left:610.560000pt;}
.x8f_c01353{left:612.093333pt;}
.x84_c01353{left:613.626667pt;}
.xf2_c01353{left:615.933333pt;}
.xd8_c01353{left:617.466667pt;}
.x88_c01353{left:619.013333pt;}
.xa5_c01353{left:621.306667pt;}
.xb8_c01353{left:624.387840pt;}
.xa1_c01353{left:626.693333pt;}
.x77_c01353{left:629.760000pt;}
.xee_c01353{left:631.293333pt;}
.xb3_c01353{left:632.826667pt;}
.xe4_c01353{left:634.373333pt;}
.xfb_c01353{left:635.906667pt;}
.xea_c01353{left:637.440000pt;}
.xfe_c01353{left:641.280000pt;}
.x70_c01353{left:642.813333pt;}
.x74_c01353{left:645.893333pt;}
.x99_c01353{left:648.186667pt;}
.x89_c01353{left:649.733333pt;}
.xf8_c01353{left:651.266667pt;}
.xe8_c01353{left:652.800000pt;}
.xe1_c01353{left:655.866667pt;}
.xb9_c01353{left:657.413333pt;}
.xae_c01353{left:660.480000pt;}
.xaa_c01353{left:663.546667pt;}
.xd4_c01353{left:665.853333pt;}
.xe6_c01353{left:667.386667pt;}
.x7b_c01353{left:668.933333pt;}
.x9b_c01353{left:672.000000pt;}
.xb4_c01353{left:674.306667pt;}
.xec_c01353{left:675.840000pt;}
.xa2_c01353{left:678.146667pt;}
.xbc_c01353{left:679.680000pt;}
.x71_c01353{left:681.213333pt;}
.xff_c01353{left:682.746667pt;}
.xa6_c01353{left:685.826667pt;}
.xda_c01353{left:687.360000pt;}
.xc7_c01353{left:688.893333pt;}
.x8c_c01353{left:691.200000pt;}
.xbd_c01353{left:694.266667pt;}
.xb7_c01353{left:696.573333pt;}
.xb2_c01353{left:698.106667pt;}
.xed_c01353{left:700.413333pt;}
.xe2_c01353{left:702.720000pt;}
.x9a_c01353{left:704.253333pt;}
.x9c_c01353{left:705.786667pt;}
.x94_c01353{left:707.333333pt;}
.x78_c01353{left:711.933333pt;}
.xd5_c01353{left:713.466667pt;}
.xa3_c01353{left:716.546667pt;}
.x95_c01353{left:718.080000pt;}
.xf4_c01353{left:719.613333pt;}
.xd7_c01353{left:721.146667pt;}
.x82_c01353{left:722.693333pt;}
.x9d_c01353{left:724.226667pt;}
.x5c_c01353{left:725.760000pt;}
.xc8_c01353{left:727.293333pt;}
.xc6_c01353{left:729.600000pt;}
.xba_c01353{left:731.133333pt;}
.x72_c01353{left:733.440000pt;}
.xef_c01353{left:734.973333pt;}
.x67_c01353{left:736.506667pt;}
.xde_c01353{left:738.053333pt;}
.x57_c01353{left:739.586667pt;}
.x8a_c01353{left:741.120000pt;}
.xfc_c01353{left:742.653333pt;}
.xa7_c01353{left:744.186667pt;}
.x68_c01353{left:747.266667pt;}
.x90_c01353{left:748.800000pt;}
.xf6_c01353{left:753.413333pt;}
.xd9_c01353{left:754.946667pt;}
.xcc_c01353{left:756.480000pt;}
.xce_c01353{left:758.013333pt;}
.x69_c01353{left:759.546667pt;}
.xbe_c01353{left:761.093333pt;}
.xe9_c01353{left:764.933333pt;}
.xd1_c01353{left:767.226667pt;}
.xb5_c01353{left:771.066667pt;}
.x85_c01353{left:774.146667pt;}
.x58_c01353{left:775.680000pt;}
.x102_c01353{left:786.426667pt;}
.x105_c01353{left:787.973333pt;}
.x106_c01353{left:790.266667pt;}
.xdb_c01353{left:791.813333pt;}
.x103_c01353{left:795.653333pt;}
.x100_c01353{left:814.080000pt;}
.x104_c01353{left:827.133333pt;}
.x101_c01353{left:830.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1a48402b2802a349a44201b.woff2')format("woff");}.ff1_c01354{font-family:ff1_c01354;line-height:1.109863;font-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_c01354{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mf5_c01354{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);}
.m1_c01354{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.mcc_c01354{transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113700,0.000000,0.000000,0.250000,0,0);}
.mf9_c01354{transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130525,0.000000,0.000000,0.250000,0,0);}
.m15_c01354{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m49_c01354{transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140525,0.000000,0.000000,0.250000,0,0);}
.m113_c01354{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.m4_c01354{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mfd_c01354{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);}
.m70_c01354{transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146300,0.000000,0.000000,0.250000,0,0);}
.mcd_c01354{transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146350,0.000000,0.000000,0.250000,0,0);}
.mff_c01354{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);}
.meb_c01354{transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150125,0.000000,0.000000,0.250000,0,0);}
.mfc_c01354{transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152200,0.000000,0.000000,0.250000,0,0);}
.m11d_c01354{transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153050,0.000000,0.000000,0.250000,0,0);}
.m132_c01354{transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153450,0.000000,0.000000,0.250000,0,0);}
.me5_c01354{transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156175,0.000000,0.000000,0.250000,0,0);}
.m3f_c01354{transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156375,0.000000,0.000000,0.250000,0,0);}
.md5_c01354{transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158150,0.000000,0.000000,0.250000,0,0);}
.m133_c01354{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);}
.m130_c01354{transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158975,0.000000,0.000000,0.250000,0,0);}
.mbc_c01354{transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159625,0.000000,0.000000,0.250000,0,0);}
.m36_c01354{transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162050,0.000000,0.000000,0.250000,0,0);}
.mf1_c01354{transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163875,0.000000,0.000000,0.250000,0,0);}
.mb3_c01354{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.m63_c01354{transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166200,0.000000,0.000000,0.250000,0,0);}
.mb2_c01354{transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167025,0.000000,0.000000,0.250000,0,0);}
.m10f_c01354{transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167225,0.000000,0.000000,0.250000,0,0);}
.m4c_c01354{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);}
.m121_c01354{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);}
.m50_c01354{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);}
.mfa_c01354{transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174575,0.000000,0.000000,0.250000,0,0);}
.m2e_c01354{transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174725,0.000000,0.000000,0.250000,0,0);}
.m118_c01354{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m94_c01354{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m52_c01354{transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177175,0.000000,0.000000,0.250000,0,0);}
.m46_c01354{transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178000,0.000000,0.000000,0.250000,0,0);}
.m87_c01354{transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178325,0.000000,0.000000,0.250000,0,0);}
.m116_c01354{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m12d_c01354{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.mec_c01354{transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180025,0.000000,0.000000,0.250000,0,0);}
.mfe_c01354{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);}
.m53_c01354{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.mc2_c01354{transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181925,0.000000,0.000000,0.250000,0,0);}
.mdc_c01354{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.mcf_c01354{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);}
.md2_c01354{transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185650,0.000000,0.000000,0.250000,0,0);}
.m98_c01354{transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187025,0.000000,0.000000,0.250000,0,0);}
.maa_c01354{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m129_c01354{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);}
.m9b_c01354{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);}
.m95_c01354{transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188650,0.000000,0.000000,0.250000,0,0);}
.mcb_c01354{transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189375,0.000000,0.000000,0.250000,0,0);}
.ma9_c01354{transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190650,0.000000,0.000000,0.250000,0,0);}
.m9_c01354{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);}
.m119_c01354{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);}
.mc1_c01354{transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195825,0.000000,0.000000,0.250000,0,0);}
.mce_c01354{transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196875,0.000000,0.000000,0.250000,0,0);}
.m24_c01354{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m10b_c01354{transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198250,0.000000,0.000000,0.250000,0,0);}
.m92_c01354{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);}
.m8b_c01354{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);}
.md8_c01354{transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199500,0.000000,0.000000,0.250000,0,0);}
.m11c_c01354{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.m75_c01354{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.m110_c01354{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);}
.mc_c01354{transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200700,0.000000,0.000000,0.250000,0,0);}
.mf2_c01354{transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201450,0.000000,0.000000,0.250000,0,0);}
.m18_c01354{transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);}
.m93_c01354{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);}
.m10e_c01354{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);}
.m68_c01354{transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202600,0.000000,0.000000,0.250000,0,0);}
.m106_c01354{transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202700,0.000000,0.000000,0.250000,0,0);}
.m3a_c01354{transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202950,0.000000,0.000000,0.250000,0,0);}
.mc5_c01354{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);}
.m1e_c01354{transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204675,0.000000,0.000000,0.250000,0,0);}
.m4f_c01354{transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204700,0.000000,0.000000,0.250000,0,0);}
.m14_c01354{transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204800,0.000000,0.000000,0.250000,0,0);}
.me9_c01354{transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205675,0.000000,0.000000,0.250000,0,0);}
.m60_c01354{transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206275,0.000000,0.000000,0.250000,0,0);}
.m83_c01354{transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206300,0.000000,0.000000,0.250000,0,0);}
.m54_c01354{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);}
.mca_c01354{transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206700,0.000000,0.000000,0.250000,0,0);}
.mb6_c01354{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m26_c01354{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);}
.m12c_c01354{transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207375,0.000000,0.000000,0.250000,0,0);}
.m72_c01354{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m109_c01354{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m85_c01354{transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208400,0.000000,0.000000,0.250000,0,0);}
.m6a_c01354{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);}
.m56_c01354{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);}
.mbe_c01354{transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209425,0.000000,0.000000,0.250000,0,0);}
.mdb_c01354{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);}
.m3d_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);}
.m12b_c01354{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);}
.m9c_c01354{transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210325,0.000000,0.000000,0.250000,0,0);}
.mf3_c01354{transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210600,0.000000,0.000000,0.250000,0,0);}
.m115_c01354{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);}
.m61_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);}
.m91_c01354{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);}
.mc7_c01354{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);}
.m11f_c01354{transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211325,0.000000,0.000000,0.250000,0,0);}
.m107_c01354{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.m99_c01354{transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);}
.m10d_c01354{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.m105_c01354{transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212350,0.000000,0.000000,0.250000,0,0);}
.m102_c01354{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m3b_c01354{transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212900,0.000000,0.000000,0.250000,0,0);}
.mb0_c01354{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);}
.m84_c01354{transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213400,0.000000,0.000000,0.250000,0,0);}
.m117_c01354{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.m42_c01354{transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213950,0.000000,0.000000,0.250000,0,0);}
.mf_c01354{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);}
.me6_c01354{transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215125,0.000000,0.000000,0.250000,0,0);}
.m126_c01354{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.m7b_c01354{transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215425,0.000000,0.000000,0.250000,0,0);}
.me3_c01354{transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215600,0.000000,0.000000,0.250000,0,0);}
.m8e_c01354{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.mb9_c01354{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.mda_c01354{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);}
.me7_c01354{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.mba_c01354{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);}
.m96_c01354{transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217050,0.000000,0.000000,0.250000,0,0);}
.m12e_c01354{transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217600,0.000000,0.000000,0.250000,0,0);}
.mb5_c01354{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);}
.m10a_c01354{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);}
.m112_c01354{transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218400,0.000000,0.000000,0.250000,0,0);}
.ma2_c01354{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);}
.ma4_c01354{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);}
.m10_c01354{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);}
.m6b_c01354{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.m10c_c01354{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);}
.m9a_c01354{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m74_c01354{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,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);}
.m79_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);}
.mea_c01354{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.m134_c01354{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.md7_c01354{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);}
.m89_c01354{transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223100,0.000000,0.000000,0.250000,0,0);}
.me4_c01354{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);}
.md9_c01354{transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224525,0.000000,0.000000,0.250000,0,0);}
.ma6_c01354{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m3e_c01354{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);}
.m100_c01354{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);}
.mc0_c01354{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);}
.m11e_c01354{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);}
.m77_c01354{transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227100,0.000000,0.000000,0.250000,0,0);}
.mbb_c01354{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.mbf_c01354{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);}
.m86_c01354{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);}
.mf6_c01354{transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228350,0.000000,0.000000,0.250000,0,0);}
.m19_c01354{transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228500,0.000000,0.000000,0.250000,0,0);}
.m9d_c01354{transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228950,0.000000,0.000000,0.250000,0,0);}
.mdf_c01354{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);}
.m127_c01354{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);}
.m7f_c01354{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);}
.m103_c01354{transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);}
.m81_c01354{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);}
.md4_c01354{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);}
.md3_c01354{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);}
.m8d_c01354{transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);}
.m32_c01354{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);}
.md0_c01354{transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235150,0.000000,0.000000,0.250000,0,0);}
.m114_c01354{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);}
.mde_c01354{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);}
.mb8_c01354{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);}
.me0_c01354{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.m111_c01354{transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);}
.m108_c01354{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);}
.mab_c01354{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);}
.md1_c01354{transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239050,0.000000,0.000000,0.250000,0,0);}
.m78_c01354{transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239075,0.000000,0.000000,0.250000,0,0);}
.m80_c01354{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);}
.m41_c01354{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);}
.m65_c01354{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.mf7_c01354{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);}
.m8f_c01354{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);}
.m51_c01354{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.ma0_c01354{transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241050,0.000000,0.000000,0.250000,0,0);}
.m44_c01354{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);}
.m4e_c01354{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.m8c_c01354{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m101_c01354{transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242150,0.000000,0.000000,0.250000,0,0);}
.m62_c01354{transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242250,0.000000,0.000000,0.250000,0,0);}
.m64_c01354{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);}
.m90_c01354{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m5e_c01354{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m12a_c01354{transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243250,0.000000,0.000000,0.250000,0,0);}
.mae_c01354{transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243550,0.000000,0.000000,0.250000,0,0);}
.m39_c01354{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);}
.m33_c01354{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m27_c01354{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);}
.mf4_c01354{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);}
.m6c_c01354{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.m88_c01354{transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244875,0.000000,0.000000,0.250000,0,0);}
.mf0_c01354{transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244950,0.000000,0.000000,0.250000,0,0);}
.m55_c01354{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);}
.m37_c01354{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);}
.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);}
.m28_c01354{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);}
.mbd_c01354{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);}
.me1_c01354{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.mc9_c01354{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);}
.mac_c01354{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);}
.m30_c01354{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.maf_c01354{transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248800,0.000000,0.000000,0.250000,0,0);}
.m6e_c01354{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);}
.ma3_c01354{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m21_c01354{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_c01354{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);}
.m45_c01354{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);}
.m7e_c01354{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);}
.m7c_c01354{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01354{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m25_c01354{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m11_c01354{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);}
.m4a_c01354{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c01354{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);}
.m1a_c01354{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);}
.m35_c01354{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m31_c01354{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);}
.m0_c01354{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m47_c01354{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m5c_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);}
.m17_c01354{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.ma_c01354{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);}
.m2a_c01354{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);}
.m2c_c01354{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m16_c01354{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m73_c01354{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);}
.m38_c01354{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m20_c01354{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m6_c01354{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);}
.m69_c01354{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m23_c01354{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01354{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m7_c01354{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m82_c01354{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m43_c01354{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01354{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01354{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);}
.ma1_c01354{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m57_c01354{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m67_c01354{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2_c01354{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c01354{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);}
.m122_c01354{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);}
.m5d_c01354{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mc3_c01354{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01354{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);}
.md6_c01354{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m71_c01354{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m6f_c01354{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);}
.ma7_c01354{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m48_c01354{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m29_c01354{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);}
.m12_c01354{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.me8_c01354{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01354{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.mc8_c01354{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.md_c01354{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);}
.m34_c01354{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01354{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01354{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m3_c01354{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me2_c01354{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.me_c01354{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mb_c01354{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m120_c01354{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01354{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);}
.mef_c01354{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m22_c01354{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.ma5_c01354{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m66_c01354{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.ma8_c01354{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m11b_c01354{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.mb1_c01354{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m76_c01354{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01354{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);}
.m4d_c01354{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);}
.m9e_c01354{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.mc4_c01354{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.mf8_c01354{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.mad_c01354{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);}
.m59_c01354{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m40_c01354{transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.577500,0.000000,0.000000,0.250000,0,0);}
.mc6_c01354{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.mee_c01354{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m97_c01354{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m104_c01354{transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.635000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01354{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m58_c01354{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m131_c01354{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);}
.m11a_c01354{transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.857500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01354{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m123_c01354{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m125_c01354{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01354{transform:matrix(1.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.112500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01354{transform:matrix(1.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.385000,0.000000,0.000000,0.250000,0,0);}
.mdd_c01354{transform:matrix(1.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.590000,0.000000,0.000000,0.250000,0,0);}
.m8a_c01354{transform:matrix(1.747500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.747500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.747500,0.000000,0.000000,0.250000,0,0);}
.m9f_c01354{transform:matrix(1.807500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.807500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.807500,0.000000,0.000000,0.250000,0,0);}
.mb7_c01354{transform:matrix(2.092500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.092500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.092500,0.000000,0.000000,0.250000,0,0);}
.m12f_c01354{transform:matrix(2.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.435000,0.000000,0.000000,0.250000,0,0);}
.med_c01354{transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);}
.m124_c01354{transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.772500,0.000000,0.000000,0.250000,0,0);}
.mfb_c01354{transform:matrix(4.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.200000,0.000000,0.000000,0.250000,0,0);}
.v1_c01354{vertical-align:-6.960000px;}
.v0_c01354{vertical-align:0.000000px;}
.v2_c01354{vertical-align:3.480000px;}
.ls2_c01354{letter-spacing:0.000000px;}
.ls1_c01354{letter-spacing:100.569840px;}
.ls0_c01354{letter-spacing:123.483480px;}
.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;}
.fsd_c01354{font-size:3.456000px;}
.fs4_c01354{font-size:6.000000px;}
.fs0_c01354{font-size:6.900000px;}
.fs10_c01354{font-size:10.380000px;}
.fs1_c01354{font-size:13.800000px;}
.fs3_c01354{font-size:17.280000px;}
.fsb_c01354{font-size:20.760000px;}
.fs14_c01354{font-size:24.180000px;}
.fs17_c01354{font-size:27.660000px;}
.fs8_c01354{font-size:31.080000px;}
.fsa_c01354{font-size:34.560000px;}
.fs12_c01354{font-size:38.040000px;}
.fs15_c01354{font-size:41.460000px;}
.fs2_c01354{font-size:44.940000px;}
.fs11_c01354{font-size:48.360000px;}
.fse_c01354{font-size:51.840000px;}
.fs13_c01354{font-size:55.320000px;}
.fsc_c01354{font-size:58.740000px;}
.fs5_c01354{font-size:62.220000px;}
.fs7_c01354{font-size:65.640000px;}
.fs9_c01354{font-size:69.120000px;}
.fsf_c01354{font-size:72.600000px;}
.fs6_c01354{font-size:76.020000px;}
.fs1b_c01354{font-size:79.500000px;}
.fs18_c01354{font-size:82.920000px;}
.fs16_c01354{font-size:86.400000px;}
.fs1a_c01354{font-size:103.680000px;}
.fs19_c01354{font-size:120.960000px;}
.y0_c01354{bottom:0.000000px;}
.y1b6_c01354{bottom:330.915000px;}
.y1b4_c01354{bottom:346.470000px;}
.y1b5_c01354{bottom:347.325000px;}
.y1b3_c01354{bottom:348.195000px;}
.y1b2_c01354{bottom:352.515000px;}
.y1ad_c01354{bottom:367.200000px;}
.y1af_c01354{bottom:368.070000px;}
.y1b1_c01354{bottom:368.925000px;}
.y1ab_c01354{bottom:369.795000px;}
.y1ac_c01354{bottom:370.650000px;}
.y1ae_c01354{bottom:371.520000px;}
.y1b0_c01354{bottom:381.885000px;}
.y1a3_c01354{bottom:383.610000px;}
.y1a7_c01354{bottom:386.205000px;}
.y1a6_c01354{bottom:387.075000px;}
.y1a4_c01354{bottom:387.930000px;}
.y1a5_c01354{bottom:388.800000px;}
.y1a8_c01354{bottom:389.670000px;}
.y1a9_c01354{bottom:390.525000px;}
.y1aa_c01354{bottom:395.715000px;}
.y196_c01354{bottom:400.035000px;}
.y197_c01354{bottom:400.890000px;}
.y198_c01354{bottom:402.630000px;}
.y199_c01354{bottom:403.485000px;}
.y19a_c01354{bottom:404.355000px;}
.y1a1_c01354{bottom:405.210000px;}
.y19b_c01354{bottom:406.080000px;}
.y19f_c01354{bottom:406.950000px;}
.y19e_c01354{bottom:408.675000px;}
.y1a2_c01354{bottom:409.530000px;}
.y1a0_c01354{bottom:410.400000px;}
.y19c_c01354{bottom:411.270000px;}
.y19d_c01354{bottom:412.125000px;}
.y18d_c01354{bottom:416.445000px;}
.y18e_c01354{bottom:419.040000px;}
.y18c_c01354{bottom:419.910000px;}
.y194_c01354{bottom:420.765000px;}
.y192_c01354{bottom:421.635000px;}
.y191_c01354{bottom:422.490000px;}
.y18f_c01354{bottom:423.360000px;}
.y193_c01354{bottom:424.230000px;}
.y190_c01354{bottom:425.085000px;}
.y195_c01354{bottom:432.000000px;}
.y187_c01354{bottom:437.190000px;}
.y185_c01354{bottom:438.045000px;}
.y188_c01354{bottom:440.640000px;}
.y186_c01354{bottom:441.510000px;}
.y189_c01354{bottom:443.235000px;}
.y18b_c01354{bottom:444.090000px;}
.y18a_c01354{bottom:447.555000px;}
.y17e_c01354{bottom:454.470000px;}
.y181_c01354{bottom:456.195000px;}
.y17f_c01354{bottom:457.050000px;}
.y182_c01354{bottom:457.920000px;}
.y183_c01354{bottom:458.790000px;}
.y180_c01354{bottom:459.645000px;}
.y184_c01354{bottom:461.370000px;}
.y178_c01354{bottom:471.750000px;}
.y17a_c01354{bottom:473.475000px;}
.y179_c01354{bottom:476.070000px;}
.y17d_c01354{bottom:476.925000px;}
.y17c_c01354{bottom:477.795000px;}
.y17b_c01354{bottom:478.650000px;}
.y171_c01354{bottom:489.885000px;}
.y173_c01354{bottom:493.350000px;}
.y172_c01354{bottom:494.205000px;}
.y176_c01354{bottom:495.075000px;}
.y177_c01354{bottom:495.930000px;}
.y175_c01354{bottom:496.800000px;}
.y174_c01354{bottom:497.670000px;}
.y170_c01354{bottom:499.395000px;}
.y169_c01354{bottom:507.165000px;}
.y16b_c01354{bottom:508.890000px;}
.y16a_c01354{bottom:511.485000px;}
.y16c_c01354{bottom:513.210000px;}
.y16f_c01354{bottom:514.950000px;}
.y16e_c01354{bottom:515.805000px;}
.y15e_c01354{bottom:521.850000px;}
.y15f_c01354{bottom:523.590000px;}
.y16d_c01354{bottom:524.445000px;}
.y165_c01354{bottom:526.170000px;}
.y15d_c01354{bottom:527.040000px;}
.y163_c01354{bottom:527.910000px;}
.y161_c01354{bottom:528.765000px;}
.y160_c01354{bottom:529.635000px;}
.y162_c01354{bottom:530.490000px;}
.y168_c01354{bottom:531.360000px;}
.y166_c01354{bottom:532.230000px;}
.y167_c01354{bottom:533.955000px;}
.y164_c01354{bottom:537.405000px;}
.y153_c01354{bottom:540.870000px;}
.y154_c01354{bottom:541.725000px;}
.y157_c01354{bottom:543.450000px;}
.y159_c01354{bottom:544.320000px;}
.y155_c01354{bottom:546.045000px;}
.y15c_c01354{bottom:546.915000px;}
.y156_c01354{bottom:547.770000px;}
.y15b_c01354{bottom:552.090000px;}
.y152_c01354{bottom:553.830000px;}
.y15a_c01354{bottom:557.280000px;}
.y14d_c01354{bottom:558.150000px;}
.y158_c01354{bottom:559.875000px;}
.y151_c01354{bottom:561.600000px;}
.y14f_c01354{bottom:563.325000px;}
.y14c_c01354{bottom:564.195000px;}
.y150_c01354{bottom:565.920000px;}
.y14e_c01354{bottom:569.370000px;}
.y146_c01354{bottom:576.285000px;}
.y144_c01354{bottom:578.010000px;}
.y145_c01354{bottom:580.605000px;}
.y149_c01354{bottom:581.475000px;}
.y147_c01354{bottom:582.330000px;}
.y148_c01354{bottom:583.200000px;}
.y143_c01354{bottom:585.795000px;}
.y14a_c01354{bottom:586.650000px;}
.y14b_c01354{bottom:590.970000px;}
.y13b_c01354{bottom:594.435000px;}
.y13e_c01354{bottom:596.160000px;}
.y13d_c01354{bottom:597.030000px;}
.y13c_c01354{bottom:599.610000px;}
.y13f_c01354{bottom:600.480000px;}
.y140_c01354{bottom:601.350000px;}
.y141_c01354{bottom:602.205000px;}
.y142_c01354{bottom:603.075000px;}
.y134_c01354{bottom:610.845000px;}
.y137_c01354{bottom:613.440000px;}
.y138_c01354{bottom:616.035000px;}
.y135_c01354{bottom:616.890000px;}
.y139_c01354{bottom:617.760000px;}
.y136_c01354{bottom:618.630000px;}
.y13a_c01354{bottom:620.355000px;}
.y12f_c01354{bottom:628.995000px;}
.y12e_c01354{bottom:629.850000px;}
.y130_c01354{bottom:630.720000px;}
.y131_c01354{bottom:633.315000px;}
.y132_c01354{bottom:635.910000px;}
.y128_c01354{bottom:644.550000px;}
.y12a_c01354{bottom:647.130000px;}
.y133_c01354{bottom:648.870000px;}
.y129_c01354{bottom:649.725000px;}
.y12b_c01354{bottom:650.595000px;}
.y12c_c01354{bottom:651.450000px;}
.y12d_c01354{bottom:655.770000px;}
.y122_c01354{bottom:662.685000px;}
.y126_c01354{bottom:665.280000px;}
.y123_c01354{bottom:666.150000px;}
.y125_c01354{bottom:667.005000px;}
.y124_c01354{bottom:667.875000px;}
.y127_c01354{bottom:668.730000px;}
.y121_c01354{bottom:676.515000px;}
.y11e_c01354{bottom:682.560000px;}
.y11f_c01354{bottom:684.285000px;}
.y120_c01354{bottom:685.155000px;}
.y119_c01354{bottom:686.010000px;}
.y11a_c01354{bottom:690.330000px;}
.y11c_c01354{bottom:695.520000px;}
.y117_c01354{bottom:698.970000px;}
.y118_c01354{bottom:699.840000px;}
.y116_c01354{bottom:700.710000px;}
.y11d_c01354{bottom:701.565000px;}
.y11b_c01354{bottom:704.160000px;}
.y112_c01354{bottom:713.670000px;}
.y113_c01354{bottom:716.250000px;}
.y115_c01354{bottom:717.120000px;}
.y111_c01354{bottom:718.845000px;}
.y114_c01354{bottom:724.035000px;}
.y10b_c01354{bottom:732.675000px;}
.y10f_c01354{bottom:733.530000px;}
.y10e_c01354{bottom:735.270000px;}
.y10c_c01354{bottom:736.125000px;}
.y10d_c01354{bottom:736.995000px;}
.y110_c01354{bottom:739.590000px;}
.y10a_c01354{bottom:751.680000px;}
.y109_c01354{bottom:753.405000px;}
.y108_c01354{bottom:754.275000px;}
.y102_c01354{bottom:766.365000px;}
.y101_c01354{bottom:767.235000px;}
.y104_c01354{bottom:768.960000px;}
.y107_c01354{bottom:770.685000px;}
.y103_c01354{bottom:771.555000px;}
.y105_c01354{bottom:772.410000px;}
.y106_c01354{bottom:774.150000px;}
.yff_c01354{bottom:786.240000px;}
.yfe_c01354{bottom:787.110000px;}
.yfc_c01354{bottom:787.965000px;}
.yfd_c01354{bottom:788.835000px;}
.y100_c01354{bottom:790.560000px;}
.yf9_c01354{bottom:803.520000px;}
.yf7_c01354{bottom:805.245000px;}
.yf8_c01354{bottom:806.115000px;}
.yfb_c01354{bottom:807.840000px;}
.yfa_c01354{bottom:808.710000px;}
.yf4_c01354{bottom:819.930000px;}
.yf5_c01354{bottom:820.800000px;}
.yf2_c01354{bottom:822.525000px;}
.yf3_c01354{bottom:823.395000px;}
.yf6_c01354{bottom:825.120000px;}
.yec_c01354{bottom:839.805000px;}
.yee_c01354{bottom:841.530000px;}
.yed_c01354{bottom:842.400000px;}
.yf0_c01354{bottom:843.270000px;}
.yef_c01354{bottom:844.125000px;}
.yf1_c01354{bottom:845.850000px;}
.ye6_c01354{bottom:854.490000px;}
.ye7_c01354{bottom:856.230000px;}
.ye4_c01354{bottom:857.085000px;}
.ye5_c01354{bottom:857.955000px;}
.ye8_c01354{bottom:858.810000px;}
.ye9_c01354{bottom:859.680000px;}
.yea_c01354{bottom:860.550000px;}
.yeb_c01354{bottom:861.405000px;}
.ydc_c01354{bottom:870.045000px;}
.ye0_c01354{bottom:872.640000px;}
.ydf_c01354{bottom:873.510000px;}
.ydb_c01354{bottom:874.365000px;}
.ydd_c01354{bottom:876.090000px;}
.ye1_c01354{bottom:876.960000px;}
.ye2_c01354{bottom:877.830000px;}
.yde_c01354{bottom:878.685000px;}
.ye3_c01354{bottom:881.280000px;}
.yd2_c01354{bottom:891.645000px;}
.yd3_c01354{bottom:892.515000px;}
.yd5_c01354{bottom:893.370000px;}
.yd6_c01354{bottom:894.240000px;}
.yd7_c01354{bottom:895.110000px;}
.yd8_c01354{bottom:897.690000px;}
.yd9_c01354{bottom:898.560000px;}
.yda_c01354{bottom:899.430000px;}
.yd4_c01354{bottom:903.750000px;}
.ycd_c01354{bottom:905.475000px;}
.yd1_c01354{bottom:906.330000px;}
.ycb_c01354{bottom:908.925000px;}
.ycc_c01354{bottom:909.795000px;}
.yce_c01354{bottom:910.650000px;}
.ycf_c01354{bottom:911.520000px;}
.yd0_c01354{bottom:913.245000px;}
.yc5_c01354{bottom:924.480000px;}
.yc6_c01354{bottom:926.205000px;}
.yc7_c01354{bottom:927.075000px;}
.yc8_c01354{bottom:927.930000px;}
.yca_c01354{bottom:929.670000px;}
.yc9_c01354{bottom:932.250000px;}
.yc2_c01354{bottom:941.760000px;}
.yc3_c01354{bottom:942.630000px;}
.ybf_c01354{bottom:943.485000px;}
.yc0_c01354{bottom:945.210000px;}
.yc1_c01354{bottom:946.080000px;}
.yc4_c01354{bottom:948.675000px;}
.yb7_c01354{bottom:957.315000px;}
.yba_c01354{bottom:960.765000px;}
.yb6_c01354{bottom:961.635000px;}
.yb8_c01354{bottom:962.490000px;}
.yb9_c01354{bottom:963.360000px;}
.ybb_c01354{bottom:964.230000px;}
.ybc_c01354{bottom:965.085000px;}
.ybd_c01354{bottom:965.955000px;}
.ybe_c01354{bottom:966.810000px;}
.yaf_c01354{bottom:974.595000px;}
.yb2_c01354{bottom:975.450000px;}
.yb1_c01354{bottom:976.320000px;}
.yb4_c01354{bottom:977.190000px;}
.yb3_c01354{bottom:978.045000px;}
.yae_c01354{bottom:978.915000px;}
.yb0_c01354{bottom:979.770000px;}
.yb5_c01354{bottom:982.365000px;}
.yab_c01354{bottom:994.470000px;}
.ya8_c01354{bottom:995.325000px;}
.yaa_c01354{bottom:996.195000px;}
.ya9_c01354{bottom:997.050000px;}
.yac_c01354{bottom:999.645000px;}
.yad_c01354{bottom:1000.515000px;}
.ya1_c01354{bottom:1010.010000px;}
.ya3_c01354{bottom:1010.880000px;}
.ya4_c01354{bottom:1012.605000px;}
.ya2_c01354{bottom:1013.475000px;}
.ya5_c01354{bottom:1016.070000px;}
.ya7_c01354{bottom:1017.795000px;}
.ya6_c01354{bottom:1018.650000px;}
.y98_c01354{bottom:1026.435000px;}
.y96_c01354{bottom:1028.160000px;}
.y9e_c01354{bottom:1029.030000px;}
.y9a_c01354{bottom:1029.885000px;}
.y99_c01354{bottom:1030.755000px;}
.y97_c01354{bottom:1031.610000px;}
.y9b_c01354{bottom:1032.480000px;}
.y9d_c01354{bottom:1034.205000px;}
.y9c_c01354{bottom:1035.075000px;}
.y9f_c01354{bottom:1035.930000px;}
.ya0_c01354{bottom:1038.525000px;}
.y90_c01354{bottom:1046.310000px;}
.y92_c01354{bottom:1047.165000px;}
.y91_c01354{bottom:1049.760000px;}
.y94_c01354{bottom:1051.485000px;}
.y95_c01354{bottom:1054.080000px;}
.y93_c01354{bottom:1055.805000px;}
.y88_c01354{bottom:1061.850000px;}
.y8a_c01354{bottom:1063.590000px;}
.y87_c01354{bottom:1064.445000px;}
.y89_c01354{bottom:1065.315000px;}
.y8b_c01354{bottom:1067.910000px;}
.y8c_c01354{bottom:1069.635000px;}
.y8d_c01354{bottom:1070.490000px;}
.y8e_c01354{bottom:1073.955000px;}
.y8f_c01354{bottom:1074.810000px;}
.y82_c01354{bottom:1082.595000px;}
.y81_c01354{bottom:1083.450000px;}
.y83_c01354{bottom:1084.320000px;}
.y84_c01354{bottom:1086.045000px;}
.y85_c01354{bottom:1086.915000px;}
.y86_c01354{bottom:1087.770000px;}
.y7e_c01354{bottom:1099.875000px;}
.y7b_c01354{bottom:1100.730000px;}
.y7d_c01354{bottom:1101.600000px;}
.y7c_c01354{bottom:1102.470000px;}
.y7f_c01354{bottom:1104.195000px;}
.y80_c01354{bottom:1106.790000px;}
.y75_c01354{bottom:1113.690000px;}
.y74_c01354{bottom:1118.010000px;}
.y76_c01354{bottom:1118.880000px;}
.y77_c01354{bottom:1119.750000px;}
.y79_c01354{bottom:1121.475000px;}
.y78_c01354{bottom:1122.330000px;}
.y7a_c01354{bottom:1123.200000px;}
.y6e_c01354{bottom:1134.435000px;}
.y6d_c01354{bottom:1135.290000px;}
.y6f_c01354{bottom:1136.160000px;}
.y72_c01354{bottom:1137.885000px;}
.y70_c01354{bottom:1138.755000px;}
.y71_c01354{bottom:1139.610000px;}
.y73_c01354{bottom:1141.350000px;}
.y65_c01354{bottom:1150.845000px;}
.y66_c01354{bottom:1151.715000px;}
.y68_c01354{bottom:1153.440000px;}
.y67_c01354{bottom:1154.310000px;}
.y69_c01354{bottom:1156.035000px;}
.y6b_c01354{bottom:1159.485000px;}
.y6c_c01354{bottom:1160.355000px;}
.y6a_c01354{bottom:1161.210000px;}
.y5e_c01354{bottom:1169.850000px;}
.y5f_c01354{bottom:1170.720000px;}
.y60_c01354{bottom:1171.590000px;}
.y62_c01354{bottom:1172.445000px;}
.y61_c01354{bottom:1173.315000px;}
.y63_c01354{bottom:1174.170000px;}
.y64_c01354{bottom:1175.910000px;}
.y58_c01354{bottom:1182.810000px;}
.y5a_c01354{bottom:1183.680000px;}
.y59_c01354{bottom:1188.000000px;}
.y5c_c01354{bottom:1190.595000px;}
.y5b_c01354{bottom:1191.450000px;}
.y5d_c01354{bottom:1192.320000px;}
.y51_c01354{bottom:1200.090000px;}
.y4f_c01354{bottom:1201.830000px;}
.y52_c01354{bottom:1202.685000px;}
.y53_c01354{bottom:1203.555000px;}
.y50_c01354{bottom:1205.280000px;}
.y54_c01354{bottom:1209.600000px;}
.y55_c01354{bottom:1211.325000px;}
.y56_c01354{bottom:1212.195000px;}
.y57_c01354{bottom:1213.050000px;}
.y4b_c01354{bottom:1216.515000px;}
.y48_c01354{bottom:1220.835000px;}
.y4a_c01354{bottom:1221.690000px;}
.y49_c01354{bottom:1223.430000px;}
.y4d_c01354{bottom:1226.010000px;}
.y4e_c01354{bottom:1228.605000px;}
.y4c_c01354{bottom:1231.200000px;}
.y40_c01354{bottom:1235.520000px;}
.y42_c01354{bottom:1236.390000px;}
.y41_c01354{bottom:1239.840000px;}
.y3f_c01354{bottom:1240.710000px;}
.y44_c01354{bottom:1242.435000px;}
.y43_c01354{bottom:1243.290000px;}
.y47_c01354{bottom:1245.030000px;}
.y45_c01354{bottom:1245.885000px;}
.y46_c01354{bottom:1247.610000px;}
.y39_c01354{bottom:1256.250000px;}
.y37_c01354{bottom:1257.120000px;}
.y38_c01354{bottom:1257.990000px;}
.y3b_c01354{bottom:1258.845000px;}
.y3a_c01354{bottom:1260.570000px;}
.y3c_c01354{bottom:1263.165000px;}
.y3d_c01354{bottom:1264.035000px;}
.y3e_c01354{bottom:1264.890000px;}
.y5_c01354{bottom:1268.355000px;}
.y4_c01354{bottom:1270.080000px;}
.y2e_c01354{bottom:1271.805000px;}
.y2d_c01354{bottom:1272.675000px;}
.y30_c01354{bottom:1273.530000px;}
.y34_c01354{bottom:1277.850000px;}
.y31_c01354{bottom:1279.590000px;}
.y32_c01354{bottom:1280.445000px;}
.y33_c01354{bottom:1281.315000px;}
.y35_c01354{bottom:1283.910000px;}
.y36_c01354{bottom:1284.765000px;}
.y2f_c01354{bottom:1288.230000px;}
.y26_c01354{bottom:1289.085000px;}
.y28_c01354{bottom:1292.550000px;}
.y27_c01354{bottom:1293.405000px;}
.y2a_c01354{bottom:1296.870000px;}
.y2c_c01354{bottom:1297.725000px;}
.y29_c01354{bottom:1302.045000px;}
.y2b_c01354{bottom:1302.915000px;}
.y1e_c01354{bottom:1305.510000px;}
.y21_c01354{bottom:1308.090000px;}
.y1d_c01354{bottom:1308.960000px;}
.y23_c01354{bottom:1309.830000px;}
.y1f_c01354{bottom:1310.685000px;}
.y20_c01354{bottom:1311.555000px;}
.y22_c01354{bottom:1313.280000px;}
.y24_c01354{bottom:1315.005000px;}
.y25_c01354{bottom:1318.470000px;}
.y1c_c01354{bottom:1321.050000px;}
.y17_c01354{bottom:1324.515000px;}
.y15_c01354{bottom:1325.370000px;}
.y18_c01354{bottom:1327.110000px;}
.y16_c01354{bottom:1327.965000px;}
.y13_c01354{bottom:1328.835000px;}
.y3_c01354{bottom:1329.690000px;}
.y19_c01354{bottom:1331.430000px;}
.y1a_c01354{bottom:1332.285000px;}
.y1b_c01354{bottom:1335.750000px;}
.y14_c01354{bottom:1337.475000px;}
.yc_c01354{bottom:1340.925000px;}
.ya_c01354{bottom:1343.520000px;}
.yf_c01354{bottom:1344.390000px;}
.yb_c01354{bottom:1345.245000px;}
.yd_c01354{bottom:1346.970000px;}
.ye_c01354{bottom:1347.840000px;}
.y11_c01354{bottom:1348.710000px;}
.y12_c01354{bottom:1350.435000px;}
.y1_c01354{bottom:1352.160000px;}
.y2_c01354{bottom:1353.885000px;}
.y10_c01354{bottom:1357.350000px;}
.y7_c01354{bottom:1372.035000px;}
.y6_c01354{bottom:1373.760000px;}
.y8_c01354{bottom:1374.630000px;}
.y9_c01354{bottom:1375.485000px;}
.hf_c01354{height:3.110063px;}
.h6_c01354{height:5.399414px;}
.h2_c01354{height:6.209326px;}
.h12_c01354{height:9.340986px;}
.h3_c01354{height:12.418652px;}
.h5_c01354{height:15.550313px;}
.hd_c01354{height:18.681973px;}
.h16_c01354{height:21.759639px;}
.h19_c01354{height:24.891299px;}
.ha_c01354{height:27.968965px;}
.hc_c01354{height:31.100625px;}
.h14_c01354{height:34.232285px;}
.h17_c01354{height:37.309951px;}
.h4_c01354{height:40.441611px;}
.h13_c01354{height:43.519277px;}
.h10_c01354{height:46.650937px;}
.h1a_c01354{height:46.999277px;}
.h15_c01354{height:49.782598px;}
.he_c01354{height:52.860264px;}
.h7_c01354{height:55.991924px;}
.h9_c01354{height:59.069590px;}
.hb_c01354{height:62.201250px;}
.h11_c01354{height:65.332910px;}
.h8_c01354{height:68.410576px;}
.h1e_c01354{height:71.542236px;}
.h1b_c01354{height:74.619902px;}
.h18_c01354{height:77.751563px;}
.h1d_c01354{height:93.301875px;}
.h1c_c01354{height:108.852188px;}
.h1_c01354{height:1513.500000px;}
.h0_c01354{height:1513.725000px;}
.w0_c01354{width:1083.450000px;}
.w1_c01354{width:1083.750000px;}
.x0_c01354{left:0.000000px;}
.x3_c01354{left:125.280000px;}
.x1_c01354{left:147.750000px;}
.x2_c01354{left:151.200000px;}
.x4_c01354{left:153.795000px;}
.xd9_c01354{left:206.490000px;}
.x17_c01354{left:211.680000px;}
.xbd_c01354{left:216.000000px;}
.x18_c01354{left:219.450000px;}
.x81_c01354{left:221.190000px;}
.xaf_c01354{left:225.510000px;}
.x21_c01354{left:227.235000px;}
.xa_c01354{left:228.960000px;}
.xea_c01354{left:233.280000px;}
.xe0_c01354{left:235.875000px;}
.xd4_c01354{left:240.195000px;}
.xda_c01354{left:246.240000px;}
.xd5_c01354{left:248.835000px;}
.x5b_c01354{left:250.560000px;}
.xe1_c01354{left:254.010000px;}
.x29_c01354{left:255.750000px;}
.x6e_c01354{left:257.475000px;}
.x7a_c01354{left:259.200000px;}
.xf1_c01354{left:261.795000px;}
.xb_c01354{left:264.390000px;}
.x32_c01354{left:266.115000px;}
.x3d_c01354{left:268.710000px;}
.x53_c01354{left:272.160000px;}
.x5c_c01354{left:276.480000px;}
.xb1_c01354{left:278.205000px;}
.x2a_c01354{left:281.670000px;}
.xb8_c01354{left:283.395000px;}
.x82_c01354{left:285.120000px;}
.xc_c01354{left:288.570000px;}
.x61_c01354{left:292.035000px;}
.xbe_c01354{left:294.630000px;}
.x48_c01354{left:296.355000px;}
.xa3_c01354{left:298.080000px;}
.x44_c01354{left:302.400000px;}
.x7b_c01354{left:306.720000px;}
.x3e_c01354{left:308.445000px;}
.x6f_c01354{left:311.040000px;}
.x22_c01354{left:312.765000px;}
.xb4_c01354{left:315.360000px;}
.xcd_c01354{left:317.085000px;}
.x85_c01354{left:319.680000px;}
.x19_c01354{left:321.405000px;}
.x3f_c01354{left:324.000000px;}
.x5d_c01354{left:327.450000px;}
.xb5_c01354{left:332.640000px;}
.xc5_c01354{left:335.235000px;}
.x54_c01354{left:341.280000px;}
.x2b_c01354{left:343.005000px;}
.x76_c01354{left:344.730000px;}
.x1a_c01354{left:347.325000px;}
.xb0_c01354{left:349.050000px;}
.x68_c01354{left:350.790000px;}
.xeb_c01354{left:352.515000px;}
.xa7_c01354{left:355.110000px;}
.xce_c01354{left:356.835000px;}
.x93_c01354{left:360.285000px;}
.xd7_c01354{left:363.750000px;}
.x49_c01354{left:365.475000px;}
.x8e_c01354{left:367.200000px;}
.x23_c01354{left:368.925000px;}
.x8c_c01354{left:370.650000px;}
.x83_c01354{left:377.565000px;}
.x9f_c01354{left:379.290000px;}
.x55_c01354{left:381.030000px;}
.x4e_c01354{left:385.350000px;}
.x2c_c01354{left:387.930000px;}
.xd_c01354{left:392.250000px;}
.x70_c01354{left:394.845000px;}
.x97_c01354{left:396.570000px;}
.x69_c01354{left:398.310000px;}
.xc8_c01354{left:402.630000px;}
.xb6_c01354{left:404.355000px;}
.x7c_c01354{left:406.080000px;}
.xe4_c01354{left:411.270000px;}
.xdb_c01354{left:414.720000px;}
.x24_c01354{left:417.315000px;}
.x86_c01354{left:423.360000px;}
.x8f_c01354{left:427.680000px;}
.x33_c01354{left:430.275000px;}
.x7d_c01354{left:433.725000px;}
.x98_c01354{left:438.045000px;}
.xe8_c01354{left:440.640000px;}
.xdc_c01354{left:442.365000px;}
.xe_c01354{left:448.410000px;}
.x34_c01354{left:451.005000px;}
.x4a_c01354{left:452.730000px;}
.xa0_c01354{left:454.470000px;}
.x2d_c01354{left:456.195000px;}
.x62_c01354{left:460.515000px;}
.xa8_c01354{left:462.240000px;}
.xdd_c01354{left:465.690000px;}
.xbf_c01354{left:468.285000px;}
.x56_c01354{left:471.750000px;}
.x5_c01354{left:473.475000px;}
.xe6_c01354{left:475.200000px;}
.xc9_c01354{left:477.795000px;}
.x45_c01354{left:481.245000px;}
.xec_c01354{left:482.970000px;}
.x99_c01354{left:484.710000px;}
.x6a_c01354{left:486.435000px;}
.xf_c01354{left:488.160000px;}
.x7e_c01354{left:490.755000px;}
.x9d_c01354{left:492.480000px;}
.x6_c01354{left:494.205000px;}
.x10_c01354{left:495.930000px;}
.x94_c01354{left:498.525000px;}
.x1b_c01354{left:500.250000px;}
.x40_c01354{left:502.845000px;}
.xb2_c01354{left:507.165000px;}
.x63_c01354{left:509.760000px;}
.xcf_c01354{left:511.485000px;}
.x87_c01354{left:513.210000px;}
.xb9_c01354{left:514.950000px;}
.xb3_c01354{left:516.675000px;}
.xc6_c01354{left:518.400000px;}
.xab_c01354{left:520.125000px;}
.xed_c01354{left:521.850000px;}
.x7_c01354{left:524.445000px;}
.xee_c01354{left:528.765000px;}
.xad_c01354{left:537.405000px;}
.xb7_c01354{left:540.000000px;}
.x4f_c01354{left:541.725000px;}
.x11_c01354{left:543.450000px;}
.xd0_c01354{left:548.640000px;}
.x5e_c01354{left:551.235000px;}
.x12_c01354{left:552.960000px;}
.x8_c01354{left:555.555000px;}
.xc3_c01354{left:557.280000px;}
.xd1_c01354{left:561.600000px;}
.xa1_c01354{left:565.920000px;}
.xbc_c01354{left:567.645000px;}
.x84_c01354{left:569.370780px;}
.xa9_c01354{left:574.560000px;}
.xba_c01354{left:577.155000px;}
.x9_c01354{left:579.750000px;}
.x2e_c01354{left:581.475000px;}
.x6b_c01354{left:583.200000px;}
.xd2_c01354{left:585.795000px;}
.x1c_c01354{left:587.520000px;}
.x35_c01354{left:590.115000px;}
.x13_c01354{left:592.710000px;}
.x77_c01354{left:595.290000px;}
.x50_c01354{left:597.885000px;}
.x9a_c01354{left:599.610000px;}
.x88_c01354{left:601.350000px;}
.x39_c01354{left:603.075000px;}
.xa4_c01354{left:605.670000px;}
.x71_c01354{left:607.395000px;}
.xca_c01354{left:610.845000px;}
.x1d_c01354{left:613.440000px;}
.x14_c01354{left:616.035000px;}
.x89_c01354{left:618.630000px;}
.x90_c01354{left:620.355000px;}
.x78_c01354{left:622.080000px;}
.x95_c01354{left:624.675000px;}
.x51_c01354{left:628.995000px;}
.xd3_c01354{left:632.445000px;}
.x46_c01354{left:635.910000px;}
.x72_c01354{left:639.360000px;}
.x25_c01354{left:641.955000px;}
.x1e_c01354{left:643.680000px;}
.xde_c01354{left:646.275000px;}
.x57_c01354{left:648.000000px;}
.x15_c01354{left:651.450000px;}
.x3a_c01354{left:654.045000px;}
.xa5_c01354{left:655.770000px;}
.x64_c01354{left:659.235000px;}
.xaa_c01354{left:660.960000px;}
.x91_c01354{left:664.410000px;}
.x65_c01354{left:667.005000px;}
.x3b_c01354{left:668.730000px;}
.x8d_c01354{left:673.050000px;}
.x96_c01354{left:674.790000px;}
.x36_c01354{left:678.240000px;}
.x8a_c01354{left:679.965000px;}
.x52_c01354{left:682.560000px;}
.x1f_c01354{left:684.285000px;}
.xd8_c01354{left:687.750000px;}
.x79_c01354{left:690.330000px;}
.x66_c01354{left:692.070000px;}
.x58_c01354{left:698.115000px;}
.xcb_c01354{left:699.840000px;}
.x6c_c01354{left:701.565000px;}
.xe2_c01354{left:703.290000px;}
.x41_c01354{left:707.610000px;}
.xf0_c01354{left:710.205000px;}
.x26_c01354{left:711.930000px;}
.x73_c01354{left:713.670000px;}
.xae_c01354{left:717.990000px;}
.x4b_c01354{left:719.715000px;}
.x8b_c01354{left:721.440000px;}
.x42_c01354{left:725.760000px;}
.x74_c01354{left:731.805000px;}
.xe7_c01354{left:733.530000px;}
.x4c_c01354{left:736.995000px;}
.x2f_c01354{left:740.445000px;}
.x5f_c01354{left:746.490000px;}
.x30_c01354{left:750.810000px;}
.xef_c01354{left:754.275000px;}
.x43_c01354{left:757.725000px;}
.x7f_c01354{left:762.915000px;}
.xcc_c01354{left:765.510000px;}
.xac_c01354{left:767.235000px;}
.xe9_c01354{left:768.960000px;}
.xc0_c01354{left:771.555000px;}
.x4d_c01354{left:775.005000px;}
.x67_c01354{left:778.470000px;}
.xc1_c01354{left:780.195000px;}
.xc4_c01354{left:781.920000px;}
.x27_c01354{left:785.370000px;}
.xe3_c01354{left:790.560000px;}
.x60_c01354{left:792.285000px;}
.x9e_c01354{left:794.880000px;}
.x31_c01354{left:798.330000px;}
.x59_c01354{left:801.795000px;}
.xe5_c01354{left:805.245000px;}
.x9b_c01354{left:806.970000px;}
.xc7_c01354{left:810.435000px;}
.x3c_c01354{left:812.160000px;}
.xbb_c01354{left:813.885000px;}
.x28_c01354{left:817.350000px;}
.x92_c01354{left:819.930000px;}
.x37_c01354{left:822.525000px;}
.x20_c01354{left:825.120000px;}
.xa2_c01354{left:826.845000px;}
.x6d_c01354{left:830.310000px;}
.x5a_c01354{left:832.035000px;}
.xdf_c01354{left:833.760000px;}
.x9c_c01354{left:836.355000px;}
.x47_c01354{left:838.080000px;}
.x16_c01354{left:839.805000px;}
.x38_c01354{left:841.530000px;}
.xa6_c01354{left:846.720000px;}
.x80_c01354{left:851.040000px;}
.x75_c01354{left:864.000000px;}
.xc2_c01354{left:866.595000px;}
.xd6_c01354{left:870.045000px;}
.xf2_c01354{left:1066.170000px;}
@media print{
.v1_c01354{vertical-align:-6.186667pt;}
.v0_c01354{vertical-align:0.000000pt;}
.v2_c01354{vertical-align:3.093333pt;}
.ls2_c01354{letter-spacing:0.000000pt;}
.ls1_c01354{letter-spacing:89.395413pt;}
.ls0_c01354{letter-spacing:109.763093pt;}
.ws0_c01354{word-spacing:0.000000pt;}
.fsd_c01354{font-size:3.072000pt;}
.fs4_c01354{font-size:5.333333pt;}
.fs0_c01354{font-size:6.133333pt;}
.fs10_c01354{font-size:9.226667pt;}
.fs1_c01354{font-size:12.266667pt;}
.fs3_c01354{font-size:15.360000pt;}
.fsb_c01354{font-size:18.453333pt;}
.fs14_c01354{font-size:21.493333pt;}
.fs17_c01354{font-size:24.586667pt;}
.fs8_c01354{font-size:27.626667pt;}
.fsa_c01354{font-size:30.720000pt;}
.fs12_c01354{font-size:33.813333pt;}
.fs15_c01354{font-size:36.853333pt;}
.fs2_c01354{font-size:39.946667pt;}
.fs11_c01354{font-size:42.986667pt;}
.fse_c01354{font-size:46.080000pt;}
.fs13_c01354{font-size:49.173333pt;}
.fsc_c01354{font-size:52.213333pt;}
.fs5_c01354{font-size:55.306667pt;}
.fs7_c01354{font-size:58.346667pt;}
.fs9_c01354{font-size:61.440000pt;}
.fsf_c01354{font-size:64.533333pt;}
.fs6_c01354{font-size:67.573333pt;}
.fs1b_c01354{font-size:70.666667pt;}
.fs18_c01354{font-size:73.706667pt;}
.fs16_c01354{font-size:76.800000pt;}
.fs1a_c01354{font-size:92.160000pt;}
.fs19_c01354{font-size:107.520000pt;}
.y0_c01354{bottom:0.000000pt;}
.y1b6_c01354{bottom:294.146667pt;}
.y1b4_c01354{bottom:307.973333pt;}
.y1b5_c01354{bottom:308.733333pt;}
.y1b3_c01354{bottom:309.506667pt;}
.y1b2_c01354{bottom:313.346667pt;}
.y1ad_c01354{bottom:326.400000pt;}
.y1af_c01354{bottom:327.173333pt;}
.y1b1_c01354{bottom:327.933333pt;}
.y1ab_c01354{bottom:328.706667pt;}
.y1ac_c01354{bottom:329.466667pt;}
.y1ae_c01354{bottom:330.240000pt;}
.y1b0_c01354{bottom:339.453333pt;}
.y1a3_c01354{bottom:340.986667pt;}
.y1a7_c01354{bottom:343.293333pt;}
.y1a6_c01354{bottom:344.066667pt;}
.y1a4_c01354{bottom:344.826667pt;}
.y1a5_c01354{bottom:345.600000pt;}
.y1a8_c01354{bottom:346.373333pt;}
.y1a9_c01354{bottom:347.133333pt;}
.y1aa_c01354{bottom:351.746667pt;}
.y196_c01354{bottom:355.586667pt;}
.y197_c01354{bottom:356.346667pt;}
.y198_c01354{bottom:357.893333pt;}
.y199_c01354{bottom:358.653333pt;}
.y19a_c01354{bottom:359.426667pt;}
.y1a1_c01354{bottom:360.186667pt;}
.y19b_c01354{bottom:360.960000pt;}
.y19f_c01354{bottom:361.733333pt;}
.y19e_c01354{bottom:363.266667pt;}
.y1a2_c01354{bottom:364.026667pt;}
.y1a0_c01354{bottom:364.800000pt;}
.y19c_c01354{bottom:365.573333pt;}
.y19d_c01354{bottom:366.333333pt;}
.y18d_c01354{bottom:370.173333pt;}
.y18e_c01354{bottom:372.480000pt;}
.y18c_c01354{bottom:373.253333pt;}
.y194_c01354{bottom:374.013333pt;}
.y192_c01354{bottom:374.786667pt;}
.y191_c01354{bottom:375.546667pt;}
.y18f_c01354{bottom:376.320000pt;}
.y193_c01354{bottom:377.093333pt;}
.y190_c01354{bottom:377.853333pt;}
.y195_c01354{bottom:384.000000pt;}
.y187_c01354{bottom:388.613333pt;}
.y185_c01354{bottom:389.373333pt;}
.y188_c01354{bottom:391.680000pt;}
.y186_c01354{bottom:392.453333pt;}
.y189_c01354{bottom:393.986667pt;}
.y18b_c01354{bottom:394.746667pt;}
.y18a_c01354{bottom:397.826667pt;}
.y17e_c01354{bottom:403.973333pt;}
.y181_c01354{bottom:405.506667pt;}
.y17f_c01354{bottom:406.266667pt;}
.y182_c01354{bottom:407.040000pt;}
.y183_c01354{bottom:407.813333pt;}
.y180_c01354{bottom:408.573333pt;}
.y184_c01354{bottom:410.106667pt;}
.y178_c01354{bottom:419.333333pt;}
.y17a_c01354{bottom:420.866667pt;}
.y179_c01354{bottom:423.173333pt;}
.y17d_c01354{bottom:423.933333pt;}
.y17c_c01354{bottom:424.706667pt;}
.y17b_c01354{bottom:425.466667pt;}
.y171_c01354{bottom:435.453333pt;}
.y173_c01354{bottom:438.533333pt;}
.y172_c01354{bottom:439.293333pt;}
.y176_c01354{bottom:440.066667pt;}
.y177_c01354{bottom:440.826667pt;}
.y175_c01354{bottom:441.600000pt;}
.y174_c01354{bottom:442.373333pt;}
.y170_c01354{bottom:443.906667pt;}
.y169_c01354{bottom:450.813333pt;}
.y16b_c01354{bottom:452.346667pt;}
.y16a_c01354{bottom:454.653333pt;}
.y16c_c01354{bottom:456.186667pt;}
.y16f_c01354{bottom:457.733333pt;}
.y16e_c01354{bottom:458.493333pt;}
.y15e_c01354{bottom:463.866667pt;}
.y15f_c01354{bottom:465.413333pt;}
.y16d_c01354{bottom:466.173333pt;}
.y165_c01354{bottom:467.706667pt;}
.y15d_c01354{bottom:468.480000pt;}
.y163_c01354{bottom:469.253333pt;}
.y161_c01354{bottom:470.013333pt;}
.y160_c01354{bottom:470.786667pt;}
.y162_c01354{bottom:471.546667pt;}
.y168_c01354{bottom:472.320000pt;}
.y166_c01354{bottom:473.093333pt;}
.y167_c01354{bottom:474.626667pt;}
.y164_c01354{bottom:477.693333pt;}
.y153_c01354{bottom:480.773333pt;}
.y154_c01354{bottom:481.533333pt;}
.y157_c01354{bottom:483.066667pt;}
.y159_c01354{bottom:483.840000pt;}
.y155_c01354{bottom:485.373333pt;}
.y15c_c01354{bottom:486.146667pt;}
.y156_c01354{bottom:486.906667pt;}
.y15b_c01354{bottom:490.746667pt;}
.y152_c01354{bottom:492.293333pt;}
.y15a_c01354{bottom:495.360000pt;}
.y14d_c01354{bottom:496.133333pt;}
.y158_c01354{bottom:497.666667pt;}
.y151_c01354{bottom:499.200000pt;}
.y14f_c01354{bottom:500.733333pt;}
.y14c_c01354{bottom:501.506667pt;}
.y150_c01354{bottom:503.040000pt;}
.y14e_c01354{bottom:506.106667pt;}
.y146_c01354{bottom:512.253333pt;}
.y144_c01354{bottom:513.786667pt;}
.y145_c01354{bottom:516.093333pt;}
.y149_c01354{bottom:516.866667pt;}
.y147_c01354{bottom:517.626667pt;}
.y148_c01354{bottom:518.400000pt;}
.y143_c01354{bottom:520.706667pt;}
.y14a_c01354{bottom:521.466667pt;}
.y14b_c01354{bottom:525.306667pt;}
.y13b_c01354{bottom:528.386667pt;}
.y13e_c01354{bottom:529.920000pt;}
.y13d_c01354{bottom:530.693333pt;}
.y13c_c01354{bottom:532.986667pt;}
.y13f_c01354{bottom:533.760000pt;}
.y140_c01354{bottom:534.533333pt;}
.y141_c01354{bottom:535.293333pt;}
.y142_c01354{bottom:536.066667pt;}
.y134_c01354{bottom:542.973333pt;}
.y137_c01354{bottom:545.280000pt;}
.y138_c01354{bottom:547.586667pt;}
.y135_c01354{bottom:548.346667pt;}
.y139_c01354{bottom:549.120000pt;}
.y136_c01354{bottom:549.893333pt;}
.y13a_c01354{bottom:551.426667pt;}
.y12f_c01354{bottom:559.106667pt;}
.y12e_c01354{bottom:559.866667pt;}
.y130_c01354{bottom:560.640000pt;}
.y131_c01354{bottom:562.946667pt;}
.y132_c01354{bottom:565.253333pt;}
.y128_c01354{bottom:572.933333pt;}
.y12a_c01354{bottom:575.226667pt;}
.y133_c01354{bottom:576.773333pt;}
.y129_c01354{bottom:577.533333pt;}
.y12b_c01354{bottom:578.306667pt;}
.y12c_c01354{bottom:579.066667pt;}
.y12d_c01354{bottom:582.906667pt;}
.y122_c01354{bottom:589.053333pt;}
.y126_c01354{bottom:591.360000pt;}
.y123_c01354{bottom:592.133333pt;}
.y125_c01354{bottom:592.893333pt;}
.y124_c01354{bottom:593.666667pt;}
.y127_c01354{bottom:594.426667pt;}
.y121_c01354{bottom:601.346667pt;}
.y11e_c01354{bottom:606.720000pt;}
.y11f_c01354{bottom:608.253333pt;}
.y120_c01354{bottom:609.026667pt;}
.y119_c01354{bottom:609.786667pt;}
.y11a_c01354{bottom:613.626667pt;}
.y11c_c01354{bottom:618.240000pt;}
.y117_c01354{bottom:621.306667pt;}
.y118_c01354{bottom:622.080000pt;}
.y116_c01354{bottom:622.853333pt;}
.y11d_c01354{bottom:623.613333pt;}
.y11b_c01354{bottom:625.920000pt;}
.y112_c01354{bottom:634.373333pt;}
.y113_c01354{bottom:636.666667pt;}
.y115_c01354{bottom:637.440000pt;}
.y111_c01354{bottom:638.973333pt;}
.y114_c01354{bottom:643.586667pt;}
.y10b_c01354{bottom:651.266667pt;}
.y10f_c01354{bottom:652.026667pt;}
.y10e_c01354{bottom:653.573333pt;}
.y10c_c01354{bottom:654.333333pt;}
.y10d_c01354{bottom:655.106667pt;}
.y110_c01354{bottom:657.413333pt;}
.y10a_c01354{bottom:668.160000pt;}
.y109_c01354{bottom:669.693333pt;}
.y108_c01354{bottom:670.466667pt;}
.y102_c01354{bottom:681.213333pt;}
.y101_c01354{bottom:681.986667pt;}
.y104_c01354{bottom:683.520000pt;}
.y107_c01354{bottom:685.053333pt;}
.y103_c01354{bottom:685.826667pt;}
.y105_c01354{bottom:686.586667pt;}
.y106_c01354{bottom:688.133333pt;}
.yff_c01354{bottom:698.880000pt;}
.yfe_c01354{bottom:699.653333pt;}
.yfc_c01354{bottom:700.413333pt;}
.yfd_c01354{bottom:701.186667pt;}
.y100_c01354{bottom:702.720000pt;}
.yf9_c01354{bottom:714.240000pt;}
.yf7_c01354{bottom:715.773333pt;}
.yf8_c01354{bottom:716.546667pt;}
.yfb_c01354{bottom:718.080000pt;}
.yfa_c01354{bottom:718.853333pt;}
.yf4_c01354{bottom:728.826667pt;}
.yf5_c01354{bottom:729.600000pt;}
.yf2_c01354{bottom:731.133333pt;}
.yf3_c01354{bottom:731.906667pt;}
.yf6_c01354{bottom:733.440000pt;}
.yec_c01354{bottom:746.493333pt;}
.yee_c01354{bottom:748.026667pt;}
.yed_c01354{bottom:748.800000pt;}
.yf0_c01354{bottom:749.573333pt;}
.yef_c01354{bottom:750.333333pt;}
.yf1_c01354{bottom:751.866667pt;}
.ye6_c01354{bottom:759.546667pt;}
.ye7_c01354{bottom:761.093333pt;}
.ye4_c01354{bottom:761.853333pt;}
.ye5_c01354{bottom:762.626667pt;}
.ye8_c01354{bottom:763.386667pt;}
.ye9_c01354{bottom:764.160000pt;}
.yea_c01354{bottom:764.933333pt;}
.yeb_c01354{bottom:765.693333pt;}
.ydc_c01354{bottom:773.373333pt;}
.ye0_c01354{bottom:775.680000pt;}
.ydf_c01354{bottom:776.453333pt;}
.ydb_c01354{bottom:777.213333pt;}
.ydd_c01354{bottom:778.746667pt;}
.ye1_c01354{bottom:779.520000pt;}
.ye2_c01354{bottom:780.293333pt;}
.yde_c01354{bottom:781.053333pt;}
.ye3_c01354{bottom:783.360000pt;}
.yd2_c01354{bottom:792.573333pt;}
.yd3_c01354{bottom:793.346667pt;}
.yd5_c01354{bottom:794.106667pt;}
.yd6_c01354{bottom:794.880000pt;}
.yd7_c01354{bottom:795.653333pt;}
.yd8_c01354{bottom:797.946667pt;}
.yd9_c01354{bottom:798.720000pt;}
.yda_c01354{bottom:799.493333pt;}
.yd4_c01354{bottom:803.333333pt;}
.ycd_c01354{bottom:804.866667pt;}
.yd1_c01354{bottom:805.626667pt;}
.ycb_c01354{bottom:807.933333pt;}
.ycc_c01354{bottom:808.706667pt;}
.yce_c01354{bottom:809.466667pt;}
.ycf_c01354{bottom:810.240000pt;}
.yd0_c01354{bottom:811.773333pt;}
.yc5_c01354{bottom:821.760000pt;}
.yc6_c01354{bottom:823.293333pt;}
.yc7_c01354{bottom:824.066667pt;}
.yc8_c01354{bottom:824.826667pt;}
.yca_c01354{bottom:826.373333pt;}
.yc9_c01354{bottom:828.666667pt;}
.yc2_c01354{bottom:837.120000pt;}
.yc3_c01354{bottom:837.893333pt;}
.ybf_c01354{bottom:838.653333pt;}
.yc0_c01354{bottom:840.186667pt;}
.yc1_c01354{bottom:840.960000pt;}
.yc4_c01354{bottom:843.266667pt;}
.yb7_c01354{bottom:850.946667pt;}
.yba_c01354{bottom:854.013333pt;}
.yb6_c01354{bottom:854.786667pt;}
.yb8_c01354{bottom:855.546667pt;}
.yb9_c01354{bottom:856.320000pt;}
.ybb_c01354{bottom:857.093333pt;}
.ybc_c01354{bottom:857.853333pt;}
.ybd_c01354{bottom:858.626667pt;}
.ybe_c01354{bottom:859.386667pt;}
.yaf_c01354{bottom:866.306667pt;}
.yb2_c01354{bottom:867.066667pt;}
.yb1_c01354{bottom:867.840000pt;}
.yb4_c01354{bottom:868.613333pt;}
.yb3_c01354{bottom:869.373333pt;}
.yae_c01354{bottom:870.146667pt;}
.yb0_c01354{bottom:870.906667pt;}
.yb5_c01354{bottom:873.213333pt;}
.yab_c01354{bottom:883.973333pt;}
.ya8_c01354{bottom:884.733333pt;}
.yaa_c01354{bottom:885.506667pt;}
.ya9_c01354{bottom:886.266667pt;}
.yac_c01354{bottom:888.573333pt;}
.yad_c01354{bottom:889.346667pt;}
.ya1_c01354{bottom:897.786667pt;}
.ya3_c01354{bottom:898.560000pt;}
.ya4_c01354{bottom:900.093333pt;}
.ya2_c01354{bottom:900.866667pt;}
.ya5_c01354{bottom:903.173333pt;}
.ya7_c01354{bottom:904.706667pt;}
.ya6_c01354{bottom:905.466667pt;}
.y98_c01354{bottom:912.386667pt;}
.y96_c01354{bottom:913.920000pt;}
.y9e_c01354{bottom:914.693333pt;}
.y9a_c01354{bottom:915.453333pt;}
.y99_c01354{bottom:916.226667pt;}
.y97_c01354{bottom:916.986667pt;}
.y9b_c01354{bottom:917.760000pt;}
.y9d_c01354{bottom:919.293333pt;}
.y9c_c01354{bottom:920.066667pt;}
.y9f_c01354{bottom:920.826667pt;}
.ya0_c01354{bottom:923.133333pt;}
.y90_c01354{bottom:930.053333pt;}
.y92_c01354{bottom:930.813333pt;}
.y91_c01354{bottom:933.120000pt;}
.y94_c01354{bottom:934.653333pt;}
.y95_c01354{bottom:936.960000pt;}
.y93_c01354{bottom:938.493333pt;}
.y88_c01354{bottom:943.866667pt;}
.y8a_c01354{bottom:945.413333pt;}
.y87_c01354{bottom:946.173333pt;}
.y89_c01354{bottom:946.946667pt;}
.y8b_c01354{bottom:949.253333pt;}
.y8c_c01354{bottom:950.786667pt;}
.y8d_c01354{bottom:951.546667pt;}
.y8e_c01354{bottom:954.626667pt;}
.y8f_c01354{bottom:955.386667pt;}
.y82_c01354{bottom:962.306667pt;}
.y81_c01354{bottom:963.066667pt;}
.y83_c01354{bottom:963.840000pt;}
.y84_c01354{bottom:965.373333pt;}
.y85_c01354{bottom:966.146667pt;}
.y86_c01354{bottom:966.906667pt;}
.y7e_c01354{bottom:977.666667pt;}
.y7b_c01354{bottom:978.426667pt;}
.y7d_c01354{bottom:979.200000pt;}
.y7c_c01354{bottom:979.973333pt;}
.y7f_c01354{bottom:981.506667pt;}
.y80_c01354{bottom:983.813333pt;}
.y75_c01354{bottom:989.946667pt;}
.y74_c01354{bottom:993.786667pt;}
.y76_c01354{bottom:994.560000pt;}
.y77_c01354{bottom:995.333333pt;}
.y79_c01354{bottom:996.866667pt;}
.y78_c01354{bottom:997.626667pt;}
.y7a_c01354{bottom:998.400000pt;}
.y6e_c01354{bottom:1008.386667pt;}
.y6d_c01354{bottom:1009.146667pt;}
.y6f_c01354{bottom:1009.920000pt;}
.y72_c01354{bottom:1011.453333pt;}
.y70_c01354{bottom:1012.226667pt;}
.y71_c01354{bottom:1012.986667pt;}
.y73_c01354{bottom:1014.533333pt;}
.y65_c01354{bottom:1022.973333pt;}
.y66_c01354{bottom:1023.746667pt;}
.y68_c01354{bottom:1025.280000pt;}
.y67_c01354{bottom:1026.053333pt;}
.y69_c01354{bottom:1027.586667pt;}
.y6b_c01354{bottom:1030.653333pt;}
.y6c_c01354{bottom:1031.426667pt;}
.y6a_c01354{bottom:1032.186667pt;}
.y5e_c01354{bottom:1039.866667pt;}
.y5f_c01354{bottom:1040.640000pt;}
.y60_c01354{bottom:1041.413333pt;}
.y62_c01354{bottom:1042.173333pt;}
.y61_c01354{bottom:1042.946667pt;}
.y63_c01354{bottom:1043.706667pt;}
.y64_c01354{bottom:1045.253333pt;}
.y58_c01354{bottom:1051.386667pt;}
.y5a_c01354{bottom:1052.160000pt;}
.y59_c01354{bottom:1056.000000pt;}
.y5c_c01354{bottom:1058.306667pt;}
.y5b_c01354{bottom:1059.066667pt;}
.y5d_c01354{bottom:1059.840000pt;}
.y51_c01354{bottom:1066.746667pt;}
.y4f_c01354{bottom:1068.293333pt;}
.y52_c01354{bottom:1069.053333pt;}
.y53_c01354{bottom:1069.826667pt;}
.y50_c01354{bottom:1071.360000pt;}
.y54_c01354{bottom:1075.200000pt;}
.y55_c01354{bottom:1076.733333pt;}
.y56_c01354{bottom:1077.506667pt;}
.y57_c01354{bottom:1078.266667pt;}
.y4b_c01354{bottom:1081.346667pt;}
.y48_c01354{bottom:1085.186667pt;}
.y4a_c01354{bottom:1085.946667pt;}
.y49_c01354{bottom:1087.493333pt;}
.y4d_c01354{bottom:1089.786667pt;}
.y4e_c01354{bottom:1092.093333pt;}
.y4c_c01354{bottom:1094.400000pt;}
.y40_c01354{bottom:1098.240000pt;}
.y42_c01354{bottom:1099.013333pt;}
.y41_c01354{bottom:1102.080000pt;}
.y3f_c01354{bottom:1102.853333pt;}
.y44_c01354{bottom:1104.386667pt;}
.y43_c01354{bottom:1105.146667pt;}
.y47_c01354{bottom:1106.693333pt;}
.y45_c01354{bottom:1107.453333pt;}
.y46_c01354{bottom:1108.986667pt;}
.y39_c01354{bottom:1116.666667pt;}
.y37_c01354{bottom:1117.440000pt;}
.y38_c01354{bottom:1118.213333pt;}
.y3b_c01354{bottom:1118.973333pt;}
.y3a_c01354{bottom:1120.506667pt;}
.y3c_c01354{bottom:1122.813333pt;}
.y3d_c01354{bottom:1123.586667pt;}
.y3e_c01354{bottom:1124.346667pt;}
.y5_c01354{bottom:1127.426667pt;}
.y4_c01354{bottom:1128.960000pt;}
.y2e_c01354{bottom:1130.493333pt;}
.y2d_c01354{bottom:1131.266667pt;}
.y30_c01354{bottom:1132.026667pt;}
.y34_c01354{bottom:1135.866667pt;}
.y31_c01354{bottom:1137.413333pt;}
.y32_c01354{bottom:1138.173333pt;}
.y33_c01354{bottom:1138.946667pt;}
.y35_c01354{bottom:1141.253333pt;}
.y36_c01354{bottom:1142.013333pt;}
.y2f_c01354{bottom:1145.093333pt;}
.y26_c01354{bottom:1145.853333pt;}
.y28_c01354{bottom:1148.933333pt;}
.y27_c01354{bottom:1149.693333pt;}
.y2a_c01354{bottom:1152.773333pt;}
.y2c_c01354{bottom:1153.533333pt;}
.y29_c01354{bottom:1157.373333pt;}
.y2b_c01354{bottom:1158.146667pt;}
.y1e_c01354{bottom:1160.453333pt;}
.y21_c01354{bottom:1162.746667pt;}
.y1d_c01354{bottom:1163.520000pt;}
.y23_c01354{bottom:1164.293333pt;}
.y1f_c01354{bottom:1165.053333pt;}
.y20_c01354{bottom:1165.826667pt;}
.y22_c01354{bottom:1167.360000pt;}
.y24_c01354{bottom:1168.893333pt;}
.y25_c01354{bottom:1171.973333pt;}
.y1c_c01354{bottom:1174.266667pt;}
.y17_c01354{bottom:1177.346667pt;}
.y15_c01354{bottom:1178.106667pt;}
.y18_c01354{bottom:1179.653333pt;}
.y16_c01354{bottom:1180.413333pt;}
.y13_c01354{bottom:1181.186667pt;}
.y3_c01354{bottom:1181.946667pt;}
.y19_c01354{bottom:1183.493333pt;}
.y1a_c01354{bottom:1184.253333pt;}
.y1b_c01354{bottom:1187.333333pt;}
.y14_c01354{bottom:1188.866667pt;}
.yc_c01354{bottom:1191.933333pt;}
.ya_c01354{bottom:1194.240000pt;}
.yf_c01354{bottom:1195.013333pt;}
.yb_c01354{bottom:1195.773333pt;}
.yd_c01354{bottom:1197.306667pt;}
.ye_c01354{bottom:1198.080000pt;}
.y11_c01354{bottom:1198.853333pt;}
.y12_c01354{bottom:1200.386667pt;}
.y1_c01354{bottom:1201.920000pt;}
.y2_c01354{bottom:1203.453333pt;}
.y10_c01354{bottom:1206.533333pt;}
.y7_c01354{bottom:1219.586667pt;}
.y6_c01354{bottom:1221.120000pt;}
.y8_c01354{bottom:1221.893333pt;}
.y9_c01354{bottom:1222.653333pt;}
.hf_c01354{height:2.764500pt;}
.h6_c01354{height:4.799479pt;}
.h2_c01354{height:5.519401pt;}
.h12_c01354{height:8.303099pt;}
.h3_c01354{height:11.038802pt;}
.h5_c01354{height:13.822500pt;}
.hd_c01354{height:16.606198pt;}
.h16_c01354{height:19.341901pt;}
.h19_c01354{height:22.125599pt;}
.ha_c01354{height:24.861302pt;}
.hc_c01354{height:27.645000pt;}
.h14_c01354{height:30.428698pt;}
.h17_c01354{height:33.164401pt;}
.h4_c01354{height:35.948099pt;}
.h13_c01354{height:38.683802pt;}
.h10_c01354{height:41.467500pt;}
.h1a_c01354{height:41.777135pt;}
.h15_c01354{height:44.251198pt;}
.he_c01354{height:46.986901pt;}
.h7_c01354{height:49.770599pt;}
.h9_c01354{height:52.506302pt;}
.hb_c01354{height:55.290000pt;}
.h11_c01354{height:58.073698pt;}
.h8_c01354{height:60.809401pt;}
.h1e_c01354{height:63.593099pt;}
.h1b_c01354{height:66.328802pt;}
.h18_c01354{height:69.112500pt;}
.h1d_c01354{height:82.935000pt;}
.h1c_c01354{height:96.757500pt;}
.h1_c01354{height:1345.333333pt;}
.h0_c01354{height:1345.533333pt;}
.w0_c01354{width:963.066667pt;}
.w1_c01354{width:963.333333pt;}
.x0_c01354{left:0.000000pt;}
.x3_c01354{left:111.360000pt;}
.x1_c01354{left:131.333333pt;}
.x2_c01354{left:134.400000pt;}
.x4_c01354{left:136.706667pt;}
.xd9_c01354{left:183.546667pt;}
.x17_c01354{left:188.160000pt;}
.xbd_c01354{left:192.000000pt;}
.x18_c01354{left:195.066667pt;}
.x81_c01354{left:196.613333pt;}
.xaf_c01354{left:200.453333pt;}
.x21_c01354{left:201.986667pt;}
.xa_c01354{left:203.520000pt;}
.xea_c01354{left:207.360000pt;}
.xe0_c01354{left:209.666667pt;}
.xd4_c01354{left:213.506667pt;}
.xda_c01354{left:218.880000pt;}
.xd5_c01354{left:221.186667pt;}
.x5b_c01354{left:222.720000pt;}
.xe1_c01354{left:225.786667pt;}
.x29_c01354{left:227.333333pt;}
.x6e_c01354{left:228.866667pt;}
.x7a_c01354{left:230.400000pt;}
.xf1_c01354{left:232.706667pt;}
.xb_c01354{left:235.013333pt;}
.x32_c01354{left:236.546667pt;}
.x3d_c01354{left:238.853333pt;}
.x53_c01354{left:241.920000pt;}
.x5c_c01354{left:245.760000pt;}
.xb1_c01354{left:247.293333pt;}
.x2a_c01354{left:250.373333pt;}
.xb8_c01354{left:251.906667pt;}
.x82_c01354{left:253.440000pt;}
.xc_c01354{left:256.506667pt;}
.x61_c01354{left:259.586667pt;}
.xbe_c01354{left:261.893333pt;}
.x48_c01354{left:263.426667pt;}
.xa3_c01354{left:264.960000pt;}
.x44_c01354{left:268.800000pt;}
.x7b_c01354{left:272.640000pt;}
.x3e_c01354{left:274.173333pt;}
.x6f_c01354{left:276.480000pt;}
.x22_c01354{left:278.013333pt;}
.xb4_c01354{left:280.320000pt;}
.xcd_c01354{left:281.853333pt;}
.x85_c01354{left:284.160000pt;}
.x19_c01354{left:285.693333pt;}
.x3f_c01354{left:288.000000pt;}
.x5d_c01354{left:291.066667pt;}
.xb5_c01354{left:295.680000pt;}
.xc5_c01354{left:297.986667pt;}
.x54_c01354{left:303.360000pt;}
.x2b_c01354{left:304.893333pt;}
.x76_c01354{left:306.426667pt;}
.x1a_c01354{left:308.733333pt;}
.xb0_c01354{left:310.266667pt;}
.x68_c01354{left:311.813333pt;}
.xeb_c01354{left:313.346667pt;}
.xa7_c01354{left:315.653333pt;}
.xce_c01354{left:317.186667pt;}
.x93_c01354{left:320.253333pt;}
.xd7_c01354{left:323.333333pt;}
.x49_c01354{left:324.866667pt;}
.x8e_c01354{left:326.400000pt;}
.x23_c01354{left:327.933333pt;}
.x8c_c01354{left:329.466667pt;}
.x83_c01354{left:335.613333pt;}
.x9f_c01354{left:337.146667pt;}
.x55_c01354{left:338.693333pt;}
.x4e_c01354{left:342.533333pt;}
.x2c_c01354{left:344.826667pt;}
.xd_c01354{left:348.666667pt;}
.x70_c01354{left:350.973333pt;}
.x97_c01354{left:352.506667pt;}
.x69_c01354{left:354.053333pt;}
.xc8_c01354{left:357.893333pt;}
.xb6_c01354{left:359.426667pt;}
.x7c_c01354{left:360.960000pt;}
.xe4_c01354{left:365.573333pt;}
.xdb_c01354{left:368.640000pt;}
.x24_c01354{left:370.946667pt;}
.x86_c01354{left:376.320000pt;}
.x8f_c01354{left:380.160000pt;}
.x33_c01354{left:382.466667pt;}
.x7d_c01354{left:385.533333pt;}
.x98_c01354{left:389.373333pt;}
.xe8_c01354{left:391.680000pt;}
.xdc_c01354{left:393.213333pt;}
.xe_c01354{left:398.586667pt;}
.x34_c01354{left:400.893333pt;}
.x4a_c01354{left:402.426667pt;}
.xa0_c01354{left:403.973333pt;}
.x2d_c01354{left:405.506667pt;}
.x62_c01354{left:409.346667pt;}
.xa8_c01354{left:410.880000pt;}
.xdd_c01354{left:413.946667pt;}
.xbf_c01354{left:416.253333pt;}
.x56_c01354{left:419.333333pt;}
.x5_c01354{left:420.866667pt;}
.xe6_c01354{left:422.400000pt;}
.xc9_c01354{left:424.706667pt;}
.x45_c01354{left:427.773333pt;}
.xec_c01354{left:429.306667pt;}
.x99_c01354{left:430.853333pt;}
.x6a_c01354{left:432.386667pt;}
.xf_c01354{left:433.920000pt;}
.x7e_c01354{left:436.226667pt;}
.x9d_c01354{left:437.760000pt;}
.x6_c01354{left:439.293333pt;}
.x10_c01354{left:440.826667pt;}
.x94_c01354{left:443.133333pt;}
.x1b_c01354{left:444.666667pt;}
.x40_c01354{left:446.973333pt;}
.xb2_c01354{left:450.813333pt;}
.x63_c01354{left:453.120000pt;}
.xcf_c01354{left:454.653333pt;}
.x87_c01354{left:456.186667pt;}
.xb9_c01354{left:457.733333pt;}
.xb3_c01354{left:459.266667pt;}
.xc6_c01354{left:460.800000pt;}
.xab_c01354{left:462.333333pt;}
.xed_c01354{left:463.866667pt;}
.x7_c01354{left:466.173333pt;}
.xee_c01354{left:470.013333pt;}
.xad_c01354{left:477.693333pt;}
.xb7_c01354{left:480.000000pt;}
.x4f_c01354{left:481.533333pt;}
.x11_c01354{left:483.066667pt;}
.xd0_c01354{left:487.680000pt;}
.x5e_c01354{left:489.986667pt;}
.x12_c01354{left:491.520000pt;}
.x8_c01354{left:493.826667pt;}
.xc3_c01354{left:495.360000pt;}
.xd1_c01354{left:499.200000pt;}
.xa1_c01354{left:503.040000pt;}
.xbc_c01354{left:504.573333pt;}
.x84_c01354{left:506.107360pt;}
.xa9_c01354{left:510.720000pt;}
.xba_c01354{left:513.026667pt;}
.x9_c01354{left:515.333333pt;}
.x2e_c01354{left:516.866667pt;}
.x6b_c01354{left:518.400000pt;}
.xd2_c01354{left:520.706667pt;}
.x1c_c01354{left:522.240000pt;}
.x35_c01354{left:524.546667pt;}
.x13_c01354{left:526.853333pt;}
.x77_c01354{left:529.146667pt;}
.x50_c01354{left:531.453333pt;}
.x9a_c01354{left:532.986667pt;}
.x88_c01354{left:534.533333pt;}
.x39_c01354{left:536.066667pt;}
.xa4_c01354{left:538.373333pt;}
.x71_c01354{left:539.906667pt;}
.xca_c01354{left:542.973333pt;}
.x1d_c01354{left:545.280000pt;}
.x14_c01354{left:547.586667pt;}
.x89_c01354{left:549.893333pt;}
.x90_c01354{left:551.426667pt;}
.x78_c01354{left:552.960000pt;}
.x95_c01354{left:555.266667pt;}
.x51_c01354{left:559.106667pt;}
.xd3_c01354{left:562.173333pt;}
.x46_c01354{left:565.253333pt;}
.x72_c01354{left:568.320000pt;}
.x25_c01354{left:570.626667pt;}
.x1e_c01354{left:572.160000pt;}
.xde_c01354{left:574.466667pt;}
.x57_c01354{left:576.000000pt;}
.x15_c01354{left:579.066667pt;}
.x3a_c01354{left:581.373333pt;}
.xa5_c01354{left:582.906667pt;}
.x64_c01354{left:585.986667pt;}
.xaa_c01354{left:587.520000pt;}
.x91_c01354{left:590.586667pt;}
.x65_c01354{left:592.893333pt;}
.x3b_c01354{left:594.426667pt;}
.x8d_c01354{left:598.266667pt;}
.x96_c01354{left:599.813333pt;}
.x36_c01354{left:602.880000pt;}
.x8a_c01354{left:604.413333pt;}
.x52_c01354{left:606.720000pt;}
.x1f_c01354{left:608.253333pt;}
.xd8_c01354{left:611.333333pt;}
.x79_c01354{left:613.626667pt;}
.x66_c01354{left:615.173333pt;}
.x58_c01354{left:620.546667pt;}
.xcb_c01354{left:622.080000pt;}
.x6c_c01354{left:623.613333pt;}
.xe2_c01354{left:625.146667pt;}
.x41_c01354{left:628.986667pt;}
.xf0_c01354{left:631.293333pt;}
.x26_c01354{left:632.826667pt;}
.x73_c01354{left:634.373333pt;}
.xae_c01354{left:638.213333pt;}
.x4b_c01354{left:639.746667pt;}
.x8b_c01354{left:641.280000pt;}
.x42_c01354{left:645.120000pt;}
.x74_c01354{left:650.493333pt;}
.xe7_c01354{left:652.026667pt;}
.x4c_c01354{left:655.106667pt;}
.x2f_c01354{left:658.173333pt;}
.x5f_c01354{left:663.546667pt;}
.x30_c01354{left:667.386667pt;}
.xef_c01354{left:670.466667pt;}
.x43_c01354{left:673.533333pt;}
.x7f_c01354{left:678.146667pt;}
.xcc_c01354{left:680.453333pt;}
.xac_c01354{left:681.986667pt;}
.xe9_c01354{left:683.520000pt;}
.xc0_c01354{left:685.826667pt;}
.x4d_c01354{left:688.893333pt;}
.x67_c01354{left:691.973333pt;}
.xc1_c01354{left:693.506667pt;}
.xc4_c01354{left:695.040000pt;}
.x27_c01354{left:698.106667pt;}
.xe3_c01354{left:702.720000pt;}
.x60_c01354{left:704.253333pt;}
.x9e_c01354{left:706.560000pt;}
.x31_c01354{left:709.626667pt;}
.x59_c01354{left:712.706667pt;}
.xe5_c01354{left:715.773333pt;}
.x9b_c01354{left:717.306667pt;}
.xc7_c01354{left:720.386667pt;}
.x3c_c01354{left:721.920000pt;}
.xbb_c01354{left:723.453333pt;}
.x28_c01354{left:726.533333pt;}
.x92_c01354{left:728.826667pt;}
.x37_c01354{left:731.133333pt;}
.x20_c01354{left:733.440000pt;}
.xa2_c01354{left:734.973333pt;}
.x6d_c01354{left:738.053333pt;}
.x5a_c01354{left:739.586667pt;}
.xdf_c01354{left:741.120000pt;}
.x9c_c01354{left:743.426667pt;}
.x47_c01354{left:744.960000pt;}
.x16_c01354{left:746.493333pt;}
.x38_c01354{left:748.026667pt;}
.xa6_c01354{left:752.640000pt;}
.x80_c01354{left:756.480000pt;}
.x75_c01354{left:768.000000pt;}
.xc2_c01354{left:770.306667pt;}
.xd6_c01354{left:773.373333pt;}
.xf2_c01354{left:947.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01355;src:url('chunks/assets/font_582beddbe6b9a68ba871a4db.woff2')format("woff");}.ff1_c01355{font-family:ff1_c01355;line-height:1.109863;font-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_c01355{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01355{transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105275,0.000000,0.000000,0.250000,0,0);}
.m73_c01355{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);}
.m93_c01355{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m1b_c01355{transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135150,0.000000,0.000000,0.250000,0,0);}
.m1_c01355{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma7_c01355{transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145950,0.000000,0.000000,0.250000,0,0);}
.m6e_c01355{transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148700,0.000000,0.000000,0.250000,0,0);}
.m98_c01355{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);}
.m12_c01355{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m15_c01355{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);}
.me_c01355{transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158475,0.000000,0.000000,0.250000,0,0);}
.mb_c01355{transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163075,0.000000,0.000000,0.250000,0,0);}
.m48_c01355{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m6f_c01355{transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168325,0.000000,0.000000,0.250000,0,0);}
.m79_c01355{transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170650,0.000000,0.000000,0.250000,0,0);}
.m7_c01355{transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172325,0.000000,0.000000,0.250000,0,0);}
.m50_c01355{transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172950,0.000000,0.000000,0.250000,0,0);}
.m43_c01355{transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01355{transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176725,0.000000,0.000000,0.250000,0,0);}
.m6d_c01355{transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179050,0.000000,0.000000,0.250000,0,0);}
.m9c_c01355{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m64_c01355{transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183325,0.000000,0.000000,0.250000,0,0);}
.mf_c01355{transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184250,0.000000,0.000000,0.250000,0,0);}
.m5e_c01355{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);}
.m9e_c01355{transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185275,0.000000,0.000000,0.250000,0,0);}
.m94_c01355{transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186400,0.000000,0.000000,0.250000,0,0);}
.m72_c01355{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);}
.m1c_c01355{transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189950,0.000000,0.000000,0.250000,0,0);}
.m86_c01355{transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190225,0.000000,0.000000,0.250000,0,0);}
.m52_c01355{transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190675,0.000000,0.000000,0.250000,0,0);}
.m3d_c01355{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);}
.m4e_c01355{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.ma2_c01355{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01355{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);}
.m17_c01355{transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192475,0.000000,0.000000,0.250000,0,0);}
.m26_c01355{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);}
.ma5_c01355{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.m7d_c01355{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m51_c01355{transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01355{transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);}
.m8b_c01355{transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199675,0.000000,0.000000,0.250000,0,0);}
.m3b_c01355{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.m42_c01355{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);}
.ma4_c01355{transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200825,0.000000,0.000000,0.250000,0,0);}
.m59_c01355{transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201675,0.000000,0.000000,0.250000,0,0);}
.m37_c01355{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m5f_c01355{transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203375,0.000000,0.000000,0.250000,0,0);}
.m4d_c01355{transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01355{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);}
.m63_c01355{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);}
.m22_c01355{transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);}
.mc_c01355{transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207725,0.000000,0.000000,0.250000,0,0);}
.m88_c01355{transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208300,0.000000,0.000000,0.250000,0,0);}
.m71_c01355{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m97_c01355{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m7e_c01355{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m6b_c01355{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);}
.m2b_c01355{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.ma9_c01355{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m55_c01355{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);}
.m20_c01355{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);}
.m6c_c01355{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m2e_c01355{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m96_c01355{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);}
.md_c01355{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);}
.m4c_c01355{transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215175,0.000000,0.000000,0.250000,0,0);}
.m80_c01355{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);}
.m82_c01355{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);}
.m65_c01355{transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218025,0.000000,0.000000,0.250000,0,0);}
.m90_c01355{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m60_c01355{transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219100,0.000000,0.000000,0.250000,0,0);}
.m8a_c01355{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);}
.m16_c01355{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.ma8_c01355{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);}
.m81_c01355{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);}
.m58_c01355{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);}
.m57_c01355{transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);}
.m85_c01355{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.m2a_c01355{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);}
.m32_c01355{transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224300,0.000000,0.000000,0.250000,0,0);}
.m33_c01355{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m5d_c01355{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m95_c01355{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);}
.m87_c01355{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.m9b_c01355{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);}
.m74_c01355{transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227375,0.000000,0.000000,0.250000,0,0);}
.m38_c01355{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.m9d_c01355{transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228725,0.000000,0.000000,0.250000,0,0);}
.m70_c01355{transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233275,0.000000,0.000000,0.250000,0,0);}
.m78_c01355{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m84_c01355{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m99_c01355{transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235400,0.000000,0.000000,0.250000,0,0);}
.m27_c01355{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m8c_c01355{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);}
.m8d_c01355{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);}
.m9a_c01355{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_c01355{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);}
.m67_c01355{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);}
.m5b_c01355{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);}
.m8f_c01355{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);}
.m3e_c01355{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);}
.m35_c01355{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);}
.m3c_c01355{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m46_c01355{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);}
.m21_c01355{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);}
.m28_c01355{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);}
.m30_c01355{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m23_c01355{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m49_c01355{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m29_c01355{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);}
.m31_c01355{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m40_c01355{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_c01355{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);}
.m54_c01355{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c01355{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m24_c01355{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m41_c01355{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);}
.m34_c01355{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m47_c01355{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);}
.m66_c01355{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);}
.m18_c01355{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m19_c01355{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m89_c01355{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);}
.m62_c01355{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4f_c01355{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.maa_c01355{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);}
.m11_c01355{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m75_c01355{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m77_c01355{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m6_c01355{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m92_c01355{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m76_c01355{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01355{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);}
.m7b_c01355{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m61_c01355{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01355{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m44_c01355{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);}
.ma0_c01355{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01355{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);}
.m5_c01355{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8e_c01355{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m68_c01355{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);}
.m5a_c01355{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01355{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m69_c01355{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m36_c01355{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.ma6_c01355{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01355{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m14_c01355{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01355{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m9_c01355{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);}
.m83_c01355{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m4_c01355{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);}
.m8_c01355{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m25_c01355{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01355{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m39_c01355{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.ma_c01355{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01355{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01355{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m6a_c01355{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma1_c01355{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m53_c01355{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m45_c01355{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);}
.m3_c01355{transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.845000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01355{transform:matrix(1.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.217500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01355{transform:matrix(3.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.002500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01355{transform:matrix(4.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.152500,0.000000,0.000000,0.250000,0,0);}
.m56_c01355{transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.320000,0.000000,0.000000,0.250000,0,0);}
.m91_c01355{transform:matrix(4.845000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.845000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.845000,0.000000,0.000000,0.250000,0,0);}
.v4_c01355{vertical-align:-13.860000px;}
.v1_c01355{vertical-align:-10.380000px;}
.v3_c01355{vertical-align:-6.900000px;}
.v0_c01355{vertical-align:0.000000px;}
.v2_c01355{vertical-align:17.280000px;}
.ls1_c01355{letter-spacing:0.000000px;}
.ls0_c01355{letter-spacing:56.120688px;}
.sc__c01355{text-shadow:none;}
.sc0_c01355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01355{-webkit-text-stroke:0px transparent;}
.sc0_c01355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3_c01355{word-spacing:-30.222720px;}
.ws1_c01355{word-spacing:-24.171180px;}
.ws4_c01355{word-spacing:-14.892000px;}
.ws5_c01355{word-spacing:-11.075340px;}
.ws2_c01355{word-spacing:-10.543323px;}
.ws0_c01355{word-spacing:-9.465840px;}
.ws6_c01355{word-spacing:0.000000px;}
._0_c01355{width:5.207160px;}
._1_c01355{width:8.451009px;}
.fc0_c01355{color:transparent;}
.fs3_c01355{font-size:3.456000px;}
.fs13_c01355{font-size:6.000000px;}
.fs0_c01355{font-size:6.900000px;}
.fs10_c01355{font-size:10.380000px;}
.fs17_c01355{font-size:13.800000px;}
.fs1_c01355{font-size:17.280000px;}
.fse_c01355{font-size:20.760000px;}
.fs2_c01355{font-size:27.660000px;}
.fs11_c01355{font-size:31.080000px;}
.fs14_c01355{font-size:34.560000px;}
.fs16_c01355{font-size:38.040000px;}
.fs12_c01355{font-size:41.460000px;}
.fs8_c01355{font-size:44.940000px;}
.fsc_c01355{font-size:48.360000px;}
.fsb_c01355{font-size:51.840000px;}
.fsa_c01355{font-size:55.320000px;}
.fs4_c01355{font-size:58.740000px;}
.fs7_c01355{font-size:62.220000px;}
.fs5_c01355{font-size:65.640000px;}
.fs6_c01355{font-size:69.120000px;}
.fsd_c01355{font-size:72.600000px;}
.fsf_c01355{font-size:76.020000px;}
.fs15_c01355{font-size:79.500000px;}
.fs18_c01355{font-size:82.920000px;}
.fs9_c01355{font-size:127.860000px;}
.y0_c01355{bottom:0.000000px;}
.ydc_c01355{bottom:296.355000px;}
.ydb_c01355{bottom:313.635000px;}
.yd9_c01355{bottom:333.510000px;}
.yda_c01355{bottom:334.365000px;}
.y8c_c01355{bottom:768.090000px;}
.y8e_c01355{bottom:770.685000px;}
.y8a_c01355{bottom:774.150000px;}
.y8b_c01355{bottom:775.875000px;}
.y8d_c01355{bottom:781.920000px;}
.y87_c01355{bottom:786.240000px;}
.y86_c01355{bottom:787.965000px;}
.y88_c01355{bottom:788.835000px;}
.y89_c01355{bottom:789.690000px;}
.y84_c01355{bottom:791.430000px;}
.y85_c01355{bottom:792.285000px;}
.y83_c01355{bottom:794.010000px;}
.y82_c01355{bottom:806.970000px;}
.y80_c01355{bottom:810.435000px;}
.y81_c01355{bottom:811.290000px;}
.y7f_c01355{bottom:824.250000px;}
.y7e_c01355{bottom:825.120000px;}
.y7d_c01355{bottom:825.990000px;}
.y7c_c01355{bottom:827.715000px;}
.y7b_c01355{bottom:835.485000px;}
.y79_c01355{bottom:838.950000px;}
.y7a_c01355{bottom:842.400000px;}
.y78_c01355{bottom:844.995000px;}
.y76_c01355{bottom:856.230000px;}
.y75_c01355{bottom:857.085000px;}
.y77_c01355{bottom:864.870000px;}
.y72_c01355{bottom:873.510000px;}
.y74_c01355{bottom:876.960000px;}
.y71_c01355{bottom:878.685000px;}
.y70_c01355{bottom:879.555000px;}
.y6f_c01355{bottom:880.410000px;}
.y73_c01355{bottom:883.005000px;}
.y6e_c01355{bottom:889.920000px;}
.y6d_c01355{bottom:890.790000px;}
.y6b_c01355{bottom:892.515000px;}
.y6c_c01355{bottom:895.965000px;}
.y6a_c01355{bottom:908.925000px;}
.y68_c01355{bottom:910.650000px;}
.y69_c01355{bottom:914.115000px;}
.y67_c01355{bottom:927.075000px;}
.y64_c01355{bottom:927.930000px;}
.y66_c01355{bottom:929.670000px;}
.y65_c01355{bottom:930.525000px;}
.y63_c01355{bottom:931.395000px;}
.y62_c01355{bottom:942.630000px;}
.y61_c01355{bottom:943.485000px;}
.y60_c01355{bottom:947.805000px;}
.y5f_c01355{bottom:949.530000px;}
.y5e_c01355{bottom:960.765000px;}
.y5b_c01355{bottom:962.490000px;}
.y5d_c01355{bottom:965.085000px;}
.y5a_c01355{bottom:966.810000px;}
.y5c_c01355{bottom:975.450000px;}
.y8f_c01355{bottom:976.320000px;}
.y57_c01355{bottom:977.190000px;}
.y59_c01355{bottom:978.045000px;}
.y56_c01355{bottom:982.365000px;}
.yd8_c01355{bottom:990.150000px;}
.y58_c01355{bottom:991.005000px;}
.yd7_c01355{bottom:992.730000px;}
.y54_c01355{bottom:993.600000px;}
.y52_c01355{bottom:994.470000px;}
.y50_c01355{bottom:996.195000px;}
.y55_c01355{bottom:997.920000px;}
.y53_c01355{bottom:998.790000px;}
.y51_c01355{bottom:1000.515000px;}
.yd5_c01355{bottom:1007.430000px;}
.yd3_c01355{bottom:1010.010000px;}
.yd6_c01355{bottom:1011.750000px;}
.yd4_c01355{bottom:1013.475000px;}
.y4f_c01355{bottom:1015.200000px;}
.yd2_c01355{bottom:1023.840000px;}
.yd0_c01355{bottom:1025.565000px;}
.yd1_c01355{bottom:1026.435000px;}
.y4c_c01355{bottom:1029.030000px;}
.y4e_c01355{bottom:1029.885000px;}
.y4b_c01355{bottom:1030.755000px;}
.y4d_c01355{bottom:1032.480000px;}
.y4a_c01355{bottom:1035.930000px;}
.ycf_c01355{bottom:1042.845000px;}
.ycd_c01355{bottom:1043.715000px;}
.y49_c01355{bottom:1045.440000px;}
.y46_c01355{bottom:1048.890000px;}
.y47_c01355{bottom:1049.760000px;}
.y48_c01355{bottom:1050.630000px;}
.yce_c01355{bottom:1054.080000px;}
.ycb_c01355{bottom:1059.270000px;}
.yc8_c01355{bottom:1061.850000px;}
.yca_c01355{bottom:1064.445000px;}
.yc9_c01355{bottom:1065.315000px;}
.y45_c01355{bottom:1067.910000px;}
.y44_c01355{bottom:1068.765000px;}
.y43_c01355{bottom:1069.635000px;}
.y42_c01355{bottom:1071.360000px;}
.ycc_c01355{bottom:1075.680000px;}
.yc6_c01355{bottom:1076.550000px;}
.yc7_c01355{bottom:1077.405000px;}
.yc4_c01355{bottom:1080.870000px;}
.y40_c01355{bottom:1081.725000px;}
.y41_c01355{bottom:1085.190000px;}
.y3f_c01355{bottom:1087.770000px;}
.y3e_c01355{bottom:1088.640000px;}
.yc5_c01355{bottom:1090.365000px;}
.yc2_c01355{bottom:1095.555000px;}
.yc1_c01355{bottom:1096.410000px;}
.yc3_c01355{bottom:1098.150000px;}
.y3d_c01355{bottom:1099.005000px;}
.y3b_c01355{bottom:1099.875000px;}
.y3c_c01355{bottom:1103.325000px;}
.y3a_c01355{bottom:1104.195000px;}
.yc0_c01355{bottom:1112.835000px;}
.y39_c01355{bottom:1118.010000px;}
.ybf_c01355{bottom:1118.880000px;}
.y38_c01355{bottom:1122.330000px;}
.ybe_c01355{bottom:1129.245000px;}
.ybd_c01355{bottom:1134.435000px;}
.y37_c01355{bottom:1135.290000px;}
.y36_c01355{bottom:1136.160000px;}
.y35_c01355{bottom:1137.885000px;}
.y34_c01355{bottom:1140.480000px;}
.ybc_c01355{bottom:1148.250000px;}
.y33_c01355{bottom:1150.845000px;}
.yba_c01355{bottom:1152.570000px;}
.yb9_c01355{bottom:1153.440000px;}
.ybb_c01355{bottom:1154.310000px;}
.y32_c01355{bottom:1156.035000px;}
.y30_c01355{bottom:1156.890000px;}
.y31_c01355{bottom:1157.760000px;}
.yb8_c01355{bottom:1164.675000px;}
.yb6_c01355{bottom:1165.530000px;}
.y2f_c01355{bottom:1168.995000px;}
.yb5_c01355{bottom:1169.850000px;}
.y2c_c01355{bottom:1170.720000px;}
.y2a_c01355{bottom:1171.590000px;}
.yb4_c01355{bottom:1172.445000px;}
.y2d_c01355{bottom:1174.170000px;}
.y2b_c01355{bottom:1175.910000px;}
.yb7_c01355{bottom:1177.635000px;}
.yb3_c01355{bottom:1181.955000px;}
.y2e_c01355{bottom:1183.680000px;}
.yb1_c01355{bottom:1184.550000px;}
.yb2_c01355{bottom:1186.275000px;}
.yb0_c01355{bottom:1188.870000px;}
.y28_c01355{bottom:1189.725000px;}
.y29_c01355{bottom:1194.045000px;}
.yaf_c01355{bottom:1200.090000px;}
.y26_c01355{bottom:1205.280000px;}
.yae_c01355{bottom:1206.150000px;}
.y22_c01355{bottom:1207.005000px;}
.y25_c01355{bottom:1209.600000px;}
.y23_c01355{bottom:1210.470000px;}
.y24_c01355{bottom:1211.325000px;}
.y27_c01355{bottom:1219.110000px;}
.yad_c01355{bottom:1219.965000px;}
.y21_c01355{bottom:1220.835000px;}
.yac_c01355{bottom:1222.560000px;}
.y1f_c01355{bottom:1223.430000px;}
.yaa_c01355{bottom:1224.285000px;}
.yab_c01355{bottom:1225.155000px;}
.y1e_c01355{bottom:1226.880000px;}
.y20_c01355{bottom:1228.605000px;}
.y1b_c01355{bottom:1236.390000px;}
.y19_c01355{bottom:1238.115000px;}
.y1a_c01355{bottom:1238.970000px;}
.y18_c01355{bottom:1239.840000px;}
.y1c_c01355{bottom:1240.710000px;}
.y1d_c01355{bottom:1244.160000px;}
.yd_c01355{bottom:1251.930000px;}
.ya8_c01355{bottom:1252.800000px;}
.ya9_c01355{bottom:1253.670000px;}
.y17_c01355{bottom:1254.525000px;}
.ya7_c01355{bottom:1257.120000px;}
.ya5_c01355{bottom:1258.845000px;}
.ya6_c01355{bottom:1259.715000px;}
.y16_c01355{bottom:1260.570000px;}
.y15_c01355{bottom:1261.440000px;}
.ya4_c01355{bottom:1271.805000px;}
.ya3_c01355{bottom:1272.675000px;}
.y14_c01355{bottom:1274.400000px;}
.ye_c01355{bottom:1278.720000px;}
.y12_c01355{bottom:1279.590000px;}
.y13_c01355{bottom:1280.445000px;}
.ya2_c01355{bottom:1289.085000px;}
.ya1_c01355{bottom:1289.955000px;}
.ya0_c01355{bottom:1290.810000px;}
.y11_c01355{bottom:1291.680000px;}
.y10_c01355{bottom:1292.550000px;}
.yf_c01355{bottom:1293.405000px;}
.y9f_c01355{bottom:1294.275000px;}
.y9e_c01355{bottom:1302.915000px;}
.y9d_c01355{bottom:1308.960000px;}
.y9c_c01355{bottom:1309.830000px;}
.y9b_c01355{bottom:1310.685000px;}
.y9a_c01355{bottom:1311.555000px;}
.y99_c01355{bottom:1321.050000px;}
.y96_c01355{bottom:1322.790000px;}
.yc_c01355{bottom:1323.645000px;}
.y98_c01355{bottom:1327.110000px;}
.y97_c01355{bottom:1328.835000px;}
.y95_c01355{bottom:1335.750000px;}
.y93_c01355{bottom:1338.330000px;}
.y91_c01355{bottom:1339.200000px;}
.y94_c01355{bottom:1345.245000px;}
.y90_c01355{bottom:1346.115000px;}
.y92_c01355{bottom:1355.610000px;}
.y6_c01355{bottom:1359.075000px;}
.yb_c01355{bottom:1372.890000px;}
.y9_c01355{bottom:1373.760000px;}
.ya_c01355{bottom:1374.630000px;}
.y8_c01355{bottom:1375.485000px;}
.y7_c01355{bottom:1376.355000px;}
.y5_c01355{bottom:1404.000000px;}
.y2_c01355{bottom:1430.790000px;}
.y1_c01355{bottom:1434.240000px;}
.y4_c01355{bottom:1446.330000px;}
.y3_c01355{bottom:1449.795000px;}
.h5_c01355{height:3.110063px;}
.hb_c01355{height:5.170312px;}
.h17_c01355{height:5.399414px;}
.h2_c01355{height:6.209326px;}
.h13_c01355{height:9.340986px;}
.h1b_c01355{height:12.418652px;}
.h3_c01355{height:15.550313px;}
.h11_c01355{height:18.681973px;}
.h4_c01355{height:24.891299px;}
.h15_c01355{height:27.968965px;}
.h18_c01355{height:31.100625px;}
.h1a_c01355{height:34.232285px;}
.h16_c01355{height:37.309951px;}
.ha_c01355{height:40.441611px;}
.hf_c01355{height:43.519277px;}
.he_c01355{height:46.650937px;}
.hd_c01355{height:49.782598px;}
.h6_c01355{height:52.860264px;}
.h9_c01355{height:55.991924px;}
.h7_c01355{height:59.069590px;}
.h8_c01355{height:62.201250px;}
.h14_c01355{height:63.930937px;}
.h10_c01355{height:65.332910px;}
.h12_c01355{height:68.410576px;}
.h19_c01355{height:71.542236px;}
.h1c_c01355{height:74.619902px;}
.hc_c01355{height:115.061514px;}
.h1_c01355{height:1513.500000px;}
.h0_c01355{height:1513.725000px;}
.w0_c01355{width:1079.130000px;}
.w1_c01355{width:1079.250000px;}
.x0_c01355{left:0.000000px;}
.xe_c01355{left:60.480000px;}
.x1_c01355{left:130.470000px;}
.x2_c01355{left:143.430000px;}
.x6b_c01355{left:203.040000px;}
.x66_c01355{left:224.640000px;}
.x53_c01355{left:227.235000px;}
.x59_c01355{left:228.960000px;}
.x50_c01355{left:230.685000px;}
.x46_c01355{left:233.280000px;}
.x30_c01355{left:235.005000px;}
.xf_c01355{left:237.600000px;}
.xd_c01355{left:241.920000px;}
.x5a_c01355{left:248.835000px;}
.x3f_c01355{left:251.430000px;}
.x54_c01355{left:254.010000px;}
.x13_c01355{left:259.200000px;}
.x42_c01355{left:261.795000px;}
.x1c_c01355{left:263.520000px;}
.x14_c01355{left:271.290000px;}
.x60_c01355{left:275.610000px;}
.x5e_c01355{left:278.205000px;}
.x2a_c01355{left:280.800000px;}
.x32_c01355{left:283.395000px;}
.x4c_c01355{left:285.990000px;}
.x5b_c01355{left:291.165000px;}
.x55_c01355{left:294.630000px;}
.x3c_c01355{left:296.355000px;}
.x49_c01355{left:298.080000px;}
.x25_c01355{left:301.530000px;}
.x2e_c01355{left:304.125000px;}
.x67_c01355{left:308.445000px;}
.x40_c01355{left:315.360000px;}
.x10_c01355{left:317.955000px;}
.x15_c01355{left:321.405000px;}
.x37_c01355{left:325.725000px;}
.x3a_c01355{left:328.320000px;}
.x4d_c01355{left:335.235000px;}
.x2b_c01355{left:336.960000px;}
.x16_c01355{left:344.730000px;}
.x2f_c01355{left:349.050000px;}
.x17_c01355{left:353.370000px;}
.x38_c01355{left:355.110000px;}
.x68_c01355{left:358.560000px;}
.x31_c01355{left:360.285000px;}
.x61_c01355{left:362.880000px;}
.x56_c01355{left:365.475000px;}
.x11_c01355{left:367.200000px;}
.x1d_c01355{left:371.520000px;}
.x26_c01355{left:375.840000px;}
.x4e_c01355{left:381.030000px;}
.x44_c01355{left:385.350000px;}
.x69_c01355{left:387.075000px;}
.x18_c01355{left:392.250000px;}
.x3d_c01355{left:398.310000px;}
.x21_c01355{left:401.760000px;}
.x19_c01355{left:407.805000px;}
.x62_c01355{left:413.850000px;}
.x27_c01355{left:415.590000px;}
.x57_c01355{left:417.315000px;}
.x12_c01355{left:420.765000px;}
.x3e_c01355{left:424.230000px;}
.x51_c01355{left:425.955000px;}
.x6a_c01355{left:429.405000px;}
.x4a_c01355{left:431.130000px;}
.x5c_c01355{left:434.595000px;}
.x47_c01355{left:437.190000px;}
.x33_c01355{left:439.770000px;}
.x52_c01355{left:444.090000px;}
.x1a_c01355{left:451.005000px;}
.x22_c01355{left:454.470000px;}
.x48_c01355{left:461.370000px;}
.x6_c01355{left:465.690000px;}
.x1e_c01355{left:467.430000px;}
.x34_c01355{left:470.880000px;}
.x63_c01355{left:472.605000px;}
.x28_c01355{left:475.200000px;}
.x39_c01355{left:478.650000px;}
.x2c_c01355{left:480.390000px;}
.x4f_c01355{left:482.115000px;}
.x64_c01355{left:488.160000px;}
.x7_c01355{left:489.885000px;}
.x29_c01355{left:491.610000px;}
.x35_c01355{left:494.205000px;}
.x1f_c01355{left:496.800000px;}
.x45_c01355{left:498.525000px;}
.x65_c01355{left:501.120000px;}
.x3b_c01355{left:502.845000px;}
.x23_c01355{left:506.310000px;}
.x41_c01355{left:508.035000px;}
.x4b_c01355{left:509.760000px;}
.x20_c01355{left:511.485000px;}
.x8_c01355{left:514.950000px;}
.x1b_c01355{left:516.675000px;}
.x5f_c01355{left:518.400000px;}
.x58_c01355{left:520.125000px;}
.x5d_c01355{left:522.720000px;}
.x43_c01355{left:531.360000px;}
.x36_c01355{left:533.085000px;}
.x24_c01355{left:534.810000px;}
.x2d_c01355{left:546.915000px;}
.x9_c01355{left:551.235000px;}
.x7a_c01355{left:563.325000px;}
.x91_c01355{left:565.920000px;}
.x72_c01355{left:567.645000px;}
.x6c_c01355{left:570.240000px;}
.xa8_c01355{left:579.750000px;}
.xa_c01355{left:586.650000px;}
.x82_c01355{left:595.290000px;}
.x96_c01355{left:603.075000px;}
.xa2_c01355{left:612.570000px;}
.x84_c01355{left:614.310000px;}
.xb_c01355{left:616.035000px;}
.x7b_c01355{left:617.760000px;}
.xa9_c01355{left:620.355000px;}
.x97_c01355{left:622.080000px;}
.x8b_c01355{left:626.400000px;}
.x8e_c01355{left:628.995000px;}
.x85_c01355{left:631.590000px;}
.x92_c01355{left:638.490000px;}
.xa0_c01355{left:640.230000px;}
.x73_c01355{left:641.955000px;}
.x7c_c01355{left:648.000000px;}
.x8a_c01355{left:649.725000px;}
.x8f_c01355{left:652.320000px;}
.x98_c01355{left:659.235000px;}
.x75_c01355{left:667.005000px;}
.x93_c01355{left:676.515000px;}
.x6d_c01355{left:678.240000px;}
.x76_c01355{left:682.560000px;}
.x9a_c01355{left:686.880000px;}
.x86_c01355{left:688.605000px;}
.x8c_c01355{left:691.200000px;}
.x9e_c01355{left:692.925000px;}
.x99_c01355{left:694.650000px;}
.x3_c01355{left:703.290000px;}
.x4_c01355{left:712.800000px;}
.xa7_c01355{left:717.120000px;}
.x87_c01355{left:718.845000px;}
.x77_c01355{left:720.570000px;}
.x5_c01355{left:722.310000px;}
.xa3_c01355{left:729.210000px;}
.x6e_c01355{left:733.530000px;}
.x94_c01355{left:743.040000px;}
.x7d_c01355{left:746.490000px;}
.xa1_c01355{left:764.640000px;}
.x88_c01355{left:766.365000px;}
.x9b_c01355{left:773.280000px;}
.x7e_c01355{left:775.005000px;}
.x89_c01355{left:792.285000px;}
.x9c_c01355{left:794.010000px;}
.x7f_c01355{left:803.520000px;}
.xa5_c01355{left:808.710000px;}
.x90_c01355{left:813.885000px;}
.x80_c01355{left:816.480000px;}
.x78_c01355{left:819.075000px;}
.xa4_c01355{left:822.525000px;}
.x9f_c01355{left:825.120000px;}
.x95_c01355{left:827.715000px;}
.x9d_c01355{left:834.630000px;}
.xaa_c01355{left:836.355000px;}
.xab_c01355{left:838.080000px;}
.x8d_c01355{left:842.400000px;}
.x81_c01355{left:848.445000px;}
.x83_c01355{left:851.040000px;}
.x6f_c01355{left:852.765000px;}
.x79_c01355{left:855.360000px;}
.x70_c01355{left:864.870000px;}
.x74_c01355{left:867.450000px;}
.xa6_c01355{left:874.365000px;}
.x71_c01355{left:877.830000px;}
.xc_c01355{left:943.485000px;}
@media print{
.v4_c01355{vertical-align:-12.320000pt;}
.v1_c01355{vertical-align:-9.226667pt;}
.v3_c01355{vertical-align:-6.133333pt;}
.v0_c01355{vertical-align:0.000000pt;}
.v2_c01355{vertical-align:15.360000pt;}
.ls1_c01355{letter-spacing:0.000000pt;}
.ls0_c01355{letter-spacing:49.885056pt;}
.ws3_c01355{word-spacing:-26.864640pt;}
.ws1_c01355{word-spacing:-21.485493pt;}
.ws4_c01355{word-spacing:-13.237333pt;}
.ws5_c01355{word-spacing:-9.844747pt;}
.ws2_c01355{word-spacing:-9.371843pt;}
.ws0_c01355{word-spacing:-8.414080pt;}
.ws6_c01355{word-spacing:0.000000pt;}
._0_c01355{width:4.628587pt;}
._1_c01355{width:7.512008pt;}
.fs3_c01355{font-size:3.072000pt;}
.fs13_c01355{font-size:5.333333pt;}
.fs0_c01355{font-size:6.133333pt;}
.fs10_c01355{font-size:9.226667pt;}
.fs17_c01355{font-size:12.266667pt;}
.fs1_c01355{font-size:15.360000pt;}
.fse_c01355{font-size:18.453333pt;}
.fs2_c01355{font-size:24.586667pt;}
.fs11_c01355{font-size:27.626667pt;}
.fs14_c01355{font-size:30.720000pt;}
.fs16_c01355{font-size:33.813333pt;}
.fs12_c01355{font-size:36.853333pt;}
.fs8_c01355{font-size:39.946667pt;}
.fsc_c01355{font-size:42.986667pt;}
.fsb_c01355{font-size:46.080000pt;}
.fsa_c01355{font-size:49.173333pt;}
.fs4_c01355{font-size:52.213333pt;}
.fs7_c01355{font-size:55.306667pt;}
.fs5_c01355{font-size:58.346667pt;}
.fs6_c01355{font-size:61.440000pt;}
.fsd_c01355{font-size:64.533333pt;}
.fsf_c01355{font-size:67.573333pt;}
.fs15_c01355{font-size:70.666667pt;}
.fs18_c01355{font-size:73.706667pt;}
.fs9_c01355{font-size:113.653333pt;}
.y0_c01355{bottom:0.000000pt;}
.ydc_c01355{bottom:263.426667pt;}
.ydb_c01355{bottom:278.786667pt;}
.yd9_c01355{bottom:296.453333pt;}
.yda_c01355{bottom:297.213333pt;}
.y8c_c01355{bottom:682.746667pt;}
.y8e_c01355{bottom:685.053333pt;}
.y8a_c01355{bottom:688.133333pt;}
.y8b_c01355{bottom:689.666667pt;}
.y8d_c01355{bottom:695.040000pt;}
.y87_c01355{bottom:698.880000pt;}
.y86_c01355{bottom:700.413333pt;}
.y88_c01355{bottom:701.186667pt;}
.y89_c01355{bottom:701.946667pt;}
.y84_c01355{bottom:703.493333pt;}
.y85_c01355{bottom:704.253333pt;}
.y83_c01355{bottom:705.786667pt;}
.y82_c01355{bottom:717.306667pt;}
.y80_c01355{bottom:720.386667pt;}
.y81_c01355{bottom:721.146667pt;}
.y7f_c01355{bottom:732.666667pt;}
.y7e_c01355{bottom:733.440000pt;}
.y7d_c01355{bottom:734.213333pt;}
.y7c_c01355{bottom:735.746667pt;}
.y7b_c01355{bottom:742.653333pt;}
.y79_c01355{bottom:745.733333pt;}
.y7a_c01355{bottom:748.800000pt;}
.y78_c01355{bottom:751.106667pt;}
.y76_c01355{bottom:761.093333pt;}
.y75_c01355{bottom:761.853333pt;}
.y77_c01355{bottom:768.773333pt;}
.y72_c01355{bottom:776.453333pt;}
.y74_c01355{bottom:779.520000pt;}
.y71_c01355{bottom:781.053333pt;}
.y70_c01355{bottom:781.826667pt;}
.y6f_c01355{bottom:782.586667pt;}
.y73_c01355{bottom:784.893333pt;}
.y6e_c01355{bottom:791.040000pt;}
.y6d_c01355{bottom:791.813333pt;}
.y6b_c01355{bottom:793.346667pt;}
.y6c_c01355{bottom:796.413333pt;}
.y6a_c01355{bottom:807.933333pt;}
.y68_c01355{bottom:809.466667pt;}
.y69_c01355{bottom:812.546667pt;}
.y67_c01355{bottom:824.066667pt;}
.y64_c01355{bottom:824.826667pt;}
.y66_c01355{bottom:826.373333pt;}
.y65_c01355{bottom:827.133333pt;}
.y63_c01355{bottom:827.906667pt;}
.y62_c01355{bottom:837.893333pt;}
.y61_c01355{bottom:838.653333pt;}
.y60_c01355{bottom:842.493333pt;}
.y5f_c01355{bottom:844.026667pt;}
.y5e_c01355{bottom:854.013333pt;}
.y5b_c01355{bottom:855.546667pt;}
.y5d_c01355{bottom:857.853333pt;}
.y5a_c01355{bottom:859.386667pt;}
.y5c_c01355{bottom:867.066667pt;}
.y8f_c01355{bottom:867.840000pt;}
.y57_c01355{bottom:868.613333pt;}
.y59_c01355{bottom:869.373333pt;}
.y56_c01355{bottom:873.213333pt;}
.yd8_c01355{bottom:880.133333pt;}
.y58_c01355{bottom:880.893333pt;}
.yd7_c01355{bottom:882.426667pt;}
.y54_c01355{bottom:883.200000pt;}
.y52_c01355{bottom:883.973333pt;}
.y50_c01355{bottom:885.506667pt;}
.y55_c01355{bottom:887.040000pt;}
.y53_c01355{bottom:887.813333pt;}
.y51_c01355{bottom:889.346667pt;}
.yd5_c01355{bottom:895.493333pt;}
.yd3_c01355{bottom:897.786667pt;}
.yd6_c01355{bottom:899.333333pt;}
.yd4_c01355{bottom:900.866667pt;}
.y4f_c01355{bottom:902.400000pt;}
.yd2_c01355{bottom:910.080000pt;}
.yd0_c01355{bottom:911.613333pt;}
.yd1_c01355{bottom:912.386667pt;}
.y4c_c01355{bottom:914.693333pt;}
.y4e_c01355{bottom:915.453333pt;}
.y4b_c01355{bottom:916.226667pt;}
.y4d_c01355{bottom:917.760000pt;}
.y4a_c01355{bottom:920.826667pt;}
.ycf_c01355{bottom:926.973333pt;}
.ycd_c01355{bottom:927.746667pt;}
.y49_c01355{bottom:929.280000pt;}
.y46_c01355{bottom:932.346667pt;}
.y47_c01355{bottom:933.120000pt;}
.y48_c01355{bottom:933.893333pt;}
.yce_c01355{bottom:936.960000pt;}
.ycb_c01355{bottom:941.573333pt;}
.yc8_c01355{bottom:943.866667pt;}
.yca_c01355{bottom:946.173333pt;}
.yc9_c01355{bottom:946.946667pt;}
.y45_c01355{bottom:949.253333pt;}
.y44_c01355{bottom:950.013333pt;}
.y43_c01355{bottom:950.786667pt;}
.y42_c01355{bottom:952.320000pt;}
.ycc_c01355{bottom:956.160000pt;}
.yc6_c01355{bottom:956.933333pt;}
.yc7_c01355{bottom:957.693333pt;}
.yc4_c01355{bottom:960.773333pt;}
.y40_c01355{bottom:961.533333pt;}
.y41_c01355{bottom:964.613333pt;}
.y3f_c01355{bottom:966.906667pt;}
.y3e_c01355{bottom:967.680000pt;}
.yc5_c01355{bottom:969.213333pt;}
.yc2_c01355{bottom:973.826667pt;}
.yc1_c01355{bottom:974.586667pt;}
.yc3_c01355{bottom:976.133333pt;}
.y3d_c01355{bottom:976.893333pt;}
.y3b_c01355{bottom:977.666667pt;}
.y3c_c01355{bottom:980.733333pt;}
.y3a_c01355{bottom:981.506667pt;}
.yc0_c01355{bottom:989.186667pt;}
.y39_c01355{bottom:993.786667pt;}
.ybf_c01355{bottom:994.560000pt;}
.y38_c01355{bottom:997.626667pt;}
.ybe_c01355{bottom:1003.773333pt;}
.ybd_c01355{bottom:1008.386667pt;}
.y37_c01355{bottom:1009.146667pt;}
.y36_c01355{bottom:1009.920000pt;}
.y35_c01355{bottom:1011.453333pt;}
.y34_c01355{bottom:1013.760000pt;}
.ybc_c01355{bottom:1020.666667pt;}
.y33_c01355{bottom:1022.973333pt;}
.yba_c01355{bottom:1024.506667pt;}
.yb9_c01355{bottom:1025.280000pt;}
.ybb_c01355{bottom:1026.053333pt;}
.y32_c01355{bottom:1027.586667pt;}
.y30_c01355{bottom:1028.346667pt;}
.y31_c01355{bottom:1029.120000pt;}
.yb8_c01355{bottom:1035.266667pt;}
.yb6_c01355{bottom:1036.026667pt;}
.y2f_c01355{bottom:1039.106667pt;}
.yb5_c01355{bottom:1039.866667pt;}
.y2c_c01355{bottom:1040.640000pt;}
.y2a_c01355{bottom:1041.413333pt;}
.yb4_c01355{bottom:1042.173333pt;}
.y2d_c01355{bottom:1043.706667pt;}
.y2b_c01355{bottom:1045.253333pt;}
.yb7_c01355{bottom:1046.786667pt;}
.yb3_c01355{bottom:1050.626667pt;}
.y2e_c01355{bottom:1052.160000pt;}
.yb1_c01355{bottom:1052.933333pt;}
.yb2_c01355{bottom:1054.466667pt;}
.yb0_c01355{bottom:1056.773333pt;}
.y28_c01355{bottom:1057.533333pt;}
.y29_c01355{bottom:1061.373333pt;}
.yaf_c01355{bottom:1066.746667pt;}
.y26_c01355{bottom:1071.360000pt;}
.yae_c01355{bottom:1072.133333pt;}
.y22_c01355{bottom:1072.893333pt;}
.y25_c01355{bottom:1075.200000pt;}
.y23_c01355{bottom:1075.973333pt;}
.y24_c01355{bottom:1076.733333pt;}
.y27_c01355{bottom:1083.653333pt;}
.yad_c01355{bottom:1084.413333pt;}
.y21_c01355{bottom:1085.186667pt;}
.yac_c01355{bottom:1086.720000pt;}
.y1f_c01355{bottom:1087.493333pt;}
.yaa_c01355{bottom:1088.253333pt;}
.yab_c01355{bottom:1089.026667pt;}
.y1e_c01355{bottom:1090.560000pt;}
.y20_c01355{bottom:1092.093333pt;}
.y1b_c01355{bottom:1099.013333pt;}
.y19_c01355{bottom:1100.546667pt;}
.y1a_c01355{bottom:1101.306667pt;}
.y18_c01355{bottom:1102.080000pt;}
.y1c_c01355{bottom:1102.853333pt;}
.y1d_c01355{bottom:1105.920000pt;}
.yd_c01355{bottom:1112.826667pt;}
.ya8_c01355{bottom:1113.600000pt;}
.ya9_c01355{bottom:1114.373333pt;}
.y17_c01355{bottom:1115.133333pt;}
.ya7_c01355{bottom:1117.440000pt;}
.ya5_c01355{bottom:1118.973333pt;}
.ya6_c01355{bottom:1119.746667pt;}
.y16_c01355{bottom:1120.506667pt;}
.y15_c01355{bottom:1121.280000pt;}
.ya4_c01355{bottom:1130.493333pt;}
.ya3_c01355{bottom:1131.266667pt;}
.y14_c01355{bottom:1132.800000pt;}
.ye_c01355{bottom:1136.640000pt;}
.y12_c01355{bottom:1137.413333pt;}
.y13_c01355{bottom:1138.173333pt;}
.ya2_c01355{bottom:1145.853333pt;}
.ya1_c01355{bottom:1146.626667pt;}
.ya0_c01355{bottom:1147.386667pt;}
.y11_c01355{bottom:1148.160000pt;}
.y10_c01355{bottom:1148.933333pt;}
.yf_c01355{bottom:1149.693333pt;}
.y9f_c01355{bottom:1150.466667pt;}
.y9e_c01355{bottom:1158.146667pt;}
.y9d_c01355{bottom:1163.520000pt;}
.y9c_c01355{bottom:1164.293333pt;}
.y9b_c01355{bottom:1165.053333pt;}
.y9a_c01355{bottom:1165.826667pt;}
.y99_c01355{bottom:1174.266667pt;}
.y96_c01355{bottom:1175.813333pt;}
.yc_c01355{bottom:1176.573333pt;}
.y98_c01355{bottom:1179.653333pt;}
.y97_c01355{bottom:1181.186667pt;}
.y95_c01355{bottom:1187.333333pt;}
.y93_c01355{bottom:1189.626667pt;}
.y91_c01355{bottom:1190.400000pt;}
.y94_c01355{bottom:1195.773333pt;}
.y90_c01355{bottom:1196.546667pt;}
.y92_c01355{bottom:1204.986667pt;}
.y6_c01355{bottom:1208.066667pt;}
.yb_c01355{bottom:1220.346667pt;}
.y9_c01355{bottom:1221.120000pt;}
.ya_c01355{bottom:1221.893333pt;}
.y8_c01355{bottom:1222.653333pt;}
.y7_c01355{bottom:1223.426667pt;}
.y5_c01355{bottom:1248.000000pt;}
.y2_c01355{bottom:1271.813333pt;}
.y1_c01355{bottom:1274.880000pt;}
.y4_c01355{bottom:1285.626667pt;}
.y3_c01355{bottom:1288.706667pt;}
.h5_c01355{height:2.764500pt;}
.hb_c01355{height:4.595833pt;}
.h17_c01355{height:4.799479pt;}
.h2_c01355{height:5.519401pt;}
.h13_c01355{height:8.303099pt;}
.h1b_c01355{height:11.038802pt;}
.h3_c01355{height:13.822500pt;}
.h11_c01355{height:16.606198pt;}
.h4_c01355{height:22.125599pt;}
.h15_c01355{height:24.861302pt;}
.h18_c01355{height:27.645000pt;}
.h1a_c01355{height:30.428698pt;}
.h16_c01355{height:33.164401pt;}
.ha_c01355{height:35.948099pt;}
.hf_c01355{height:38.683802pt;}
.he_c01355{height:41.467500pt;}
.hd_c01355{height:44.251198pt;}
.h6_c01355{height:46.986901pt;}
.h9_c01355{height:49.770599pt;}
.h7_c01355{height:52.506302pt;}
.h8_c01355{height:55.290000pt;}
.h14_c01355{height:56.827500pt;}
.h10_c01355{height:58.073698pt;}
.h12_c01355{height:60.809401pt;}
.h19_c01355{height:63.593099pt;}
.h1c_c01355{height:66.328802pt;}
.hc_c01355{height:102.276901pt;}
.h1_c01355{height:1345.333333pt;}
.h0_c01355{height:1345.533333pt;}
.w0_c01355{width:959.226667pt;}
.w1_c01355{width:959.333333pt;}
.x0_c01355{left:0.000000pt;}
.xe_c01355{left:53.760000pt;}
.x1_c01355{left:115.973333pt;}
.x2_c01355{left:127.493333pt;}
.x6b_c01355{left:180.480000pt;}
.x66_c01355{left:199.680000pt;}
.x53_c01355{left:201.986667pt;}
.x59_c01355{left:203.520000pt;}
.x50_c01355{left:205.053333pt;}
.x46_c01355{left:207.360000pt;}
.x30_c01355{left:208.893333pt;}
.xf_c01355{left:211.200000pt;}
.xd_c01355{left:215.040000pt;}
.x5a_c01355{left:221.186667pt;}
.x3f_c01355{left:223.493333pt;}
.x54_c01355{left:225.786667pt;}
.x13_c01355{left:230.400000pt;}
.x42_c01355{left:232.706667pt;}
.x1c_c01355{left:234.240000pt;}
.x14_c01355{left:241.146667pt;}
.x60_c01355{left:244.986667pt;}
.x5e_c01355{left:247.293333pt;}
.x2a_c01355{left:249.600000pt;}
.x32_c01355{left:251.906667pt;}
.x4c_c01355{left:254.213333pt;}
.x5b_c01355{left:258.813333pt;}
.x55_c01355{left:261.893333pt;}
.x3c_c01355{left:263.426667pt;}
.x49_c01355{left:264.960000pt;}
.x25_c01355{left:268.026667pt;}
.x2e_c01355{left:270.333333pt;}
.x67_c01355{left:274.173333pt;}
.x40_c01355{left:280.320000pt;}
.x10_c01355{left:282.626667pt;}
.x15_c01355{left:285.693333pt;}
.x37_c01355{left:289.533333pt;}
.x3a_c01355{left:291.840000pt;}
.x4d_c01355{left:297.986667pt;}
.x2b_c01355{left:299.520000pt;}
.x16_c01355{left:306.426667pt;}
.x2f_c01355{left:310.266667pt;}
.x17_c01355{left:314.106667pt;}
.x38_c01355{left:315.653333pt;}
.x68_c01355{left:318.720000pt;}
.x31_c01355{left:320.253333pt;}
.x61_c01355{left:322.560000pt;}
.x56_c01355{left:324.866667pt;}
.x11_c01355{left:326.400000pt;}
.x1d_c01355{left:330.240000pt;}
.x26_c01355{left:334.080000pt;}
.x4e_c01355{left:338.693333pt;}
.x44_c01355{left:342.533333pt;}
.x69_c01355{left:344.066667pt;}
.x18_c01355{left:348.666667pt;}
.x3d_c01355{left:354.053333pt;}
.x21_c01355{left:357.120000pt;}
.x19_c01355{left:362.493333pt;}
.x62_c01355{left:367.866667pt;}
.x27_c01355{left:369.413333pt;}
.x57_c01355{left:370.946667pt;}
.x12_c01355{left:374.013333pt;}
.x3e_c01355{left:377.093333pt;}
.x51_c01355{left:378.626667pt;}
.x6a_c01355{left:381.693333pt;}
.x4a_c01355{left:383.226667pt;}
.x5c_c01355{left:386.306667pt;}
.x47_c01355{left:388.613333pt;}
.x33_c01355{left:390.906667pt;}
.x52_c01355{left:394.746667pt;}
.x1a_c01355{left:400.893333pt;}
.x22_c01355{left:403.973333pt;}
.x48_c01355{left:410.106667pt;}
.x6_c01355{left:413.946667pt;}
.x1e_c01355{left:415.493333pt;}
.x34_c01355{left:418.560000pt;}
.x63_c01355{left:420.093333pt;}
.x28_c01355{left:422.400000pt;}
.x39_c01355{left:425.466667pt;}
.x2c_c01355{left:427.013333pt;}
.x4f_c01355{left:428.546667pt;}
.x64_c01355{left:433.920000pt;}
.x7_c01355{left:435.453333pt;}
.x29_c01355{left:436.986667pt;}
.x35_c01355{left:439.293333pt;}
.x1f_c01355{left:441.600000pt;}
.x45_c01355{left:443.133333pt;}
.x65_c01355{left:445.440000pt;}
.x3b_c01355{left:446.973333pt;}
.x23_c01355{left:450.053333pt;}
.x41_c01355{left:451.586667pt;}
.x4b_c01355{left:453.120000pt;}
.x20_c01355{left:454.653333pt;}
.x8_c01355{left:457.733333pt;}
.x1b_c01355{left:459.266667pt;}
.x5f_c01355{left:460.800000pt;}
.x58_c01355{left:462.333333pt;}
.x5d_c01355{left:464.640000pt;}
.x43_c01355{left:472.320000pt;}
.x36_c01355{left:473.853333pt;}
.x24_c01355{left:475.386667pt;}
.x2d_c01355{left:486.146667pt;}
.x9_c01355{left:489.986667pt;}
.x7a_c01355{left:500.733333pt;}
.x91_c01355{left:503.040000pt;}
.x72_c01355{left:504.573333pt;}
.x6c_c01355{left:506.880000pt;}
.xa8_c01355{left:515.333333pt;}
.xa_c01355{left:521.466667pt;}
.x82_c01355{left:529.146667pt;}
.x96_c01355{left:536.066667pt;}
.xa2_c01355{left:544.506667pt;}
.x84_c01355{left:546.053333pt;}
.xb_c01355{left:547.586667pt;}
.x7b_c01355{left:549.120000pt;}
.xa9_c01355{left:551.426667pt;}
.x97_c01355{left:552.960000pt;}
.x8b_c01355{left:556.800000pt;}
.x8e_c01355{left:559.106667pt;}
.x85_c01355{left:561.413333pt;}
.x92_c01355{left:567.546667pt;}
.xa0_c01355{left:569.093333pt;}
.x73_c01355{left:570.626667pt;}
.x7c_c01355{left:576.000000pt;}
.x8a_c01355{left:577.533333pt;}
.x8f_c01355{left:579.840000pt;}
.x98_c01355{left:585.986667pt;}
.x75_c01355{left:592.893333pt;}
.x93_c01355{left:601.346667pt;}
.x6d_c01355{left:602.880000pt;}
.x76_c01355{left:606.720000pt;}
.x9a_c01355{left:610.560000pt;}
.x86_c01355{left:612.093333pt;}
.x8c_c01355{left:614.400000pt;}
.x9e_c01355{left:615.933333pt;}
.x99_c01355{left:617.466667pt;}
.x3_c01355{left:625.146667pt;}
.x4_c01355{left:633.600000pt;}
.xa7_c01355{left:637.440000pt;}
.x87_c01355{left:638.973333pt;}
.x77_c01355{left:640.506667pt;}
.x5_c01355{left:642.053333pt;}
.xa3_c01355{left:648.186667pt;}
.x6e_c01355{left:652.026667pt;}
.x94_c01355{left:660.480000pt;}
.x7d_c01355{left:663.546667pt;}
.xa1_c01355{left:679.680000pt;}
.x88_c01355{left:681.213333pt;}
.x9b_c01355{left:687.360000pt;}
.x7e_c01355{left:688.893333pt;}
.x89_c01355{left:704.253333pt;}
.x9c_c01355{left:705.786667pt;}
.x7f_c01355{left:714.240000pt;}
.xa5_c01355{left:718.853333pt;}
.x90_c01355{left:723.453333pt;}
.x80_c01355{left:725.760000pt;}
.x78_c01355{left:728.066667pt;}
.xa4_c01355{left:731.133333pt;}
.x9f_c01355{left:733.440000pt;}
.x95_c01355{left:735.746667pt;}
.x9d_c01355{left:741.893333pt;}
.xaa_c01355{left:743.426667pt;}
.xab_c01355{left:744.960000pt;}
.x8d_c01355{left:748.800000pt;}
.x81_c01355{left:754.173333pt;}
.x83_c01355{left:756.480000pt;}
.x6f_c01355{left:758.013333pt;}
.x79_c01355{left:760.320000pt;}
.x70_c01355{left:768.773333pt;}
.x74_c01355{left:771.066667pt;}
.xa6_c01355{left:777.213333pt;}
.x71_c01355{left:780.293333pt;}
.xc_c01355{left:838.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72b81e32c2e94be5232473b9.woff2')format("woff");}.ff1_c01356{font-family:ff1_c01356;line-height:1.109863;font-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_c01356{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mc2_c01356{transform:matrix(0.045025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.045025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.045025,0.000000,0.000000,0.250000,0,0);}
.m90_c01356{transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);}
.m97_c01356{transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057700,0.000000,0.000000,0.250000,0,0);}
.me4_c01356{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);}
.m7_c01356{transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);}
.m11e_c01356{transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126925,0.000000,0.000000,0.250000,0,0);}
.m82_c01356{transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131525,0.000000,0.000000,0.250000,0,0);}
.m1a_c01356{transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133825,0.000000,0.000000,0.250000,0,0);}
.mc_c01356{transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135500,0.000000,0.000000,0.250000,0,0);}
.ma_c01356{transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);}
.m18_c01356{transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136575,0.000000,0.000000,0.250000,0,0);}
.m9_c01356{transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138125,0.000000,0.000000,0.250000,0,0);}
.ma0_c01356{transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138350,0.000000,0.000000,0.250000,0,0);}
.m147_c01356{transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138675,0.000000,0.000000,0.250000,0,0);}
.m157_c01356{transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138850,0.000000,0.000000,0.250000,0,0);}
.m122_c01356{transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142675,0.000000,0.000000,0.250000,0,0);}
.m5_c01356{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mad_c01356{transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144075,0.000000,0.000000,0.250000,0,0);}
.m9c_c01356{transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144825,0.000000,0.000000,0.250000,0,0);}
.m15e_c01356{transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149200,0.000000,0.000000,0.250000,0,0);}
.mbc_c01356{transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150925,0.000000,0.000000,0.250000,0,0);}
.m22_c01356{transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155850,0.000000,0.000000,0.250000,0,0);}
.m106_c01356{transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158300,0.000000,0.000000,0.250000,0,0);}
.mdc_c01356{transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161600,0.000000,0.000000,0.250000,0,0);}
.m89_c01356{transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162025,0.000000,0.000000,0.250000,0,0);}
.m11f_c01356{transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164025,0.000000,0.000000,0.250000,0,0);}
.m144_c01356{transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166325,0.000000,0.000000,0.250000,0,0);}
.m14e_c01356{transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167875,0.000000,0.000000,0.250000,0,0);}
.m2a_c01356{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.me1_c01356{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);}
.mf0_c01356{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);}
.m130_c01356{transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174225,0.000000,0.000000,0.250000,0,0);}
.m156_c01356{transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174250,0.000000,0.000000,0.250000,0,0);}
.m123_c01356{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);}
.mfc_c01356{transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174450,0.000000,0.000000,0.250000,0,0);}
.mb5_c01356{transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175075,0.000000,0.000000,0.250000,0,0);}
.m6c_c01356{transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);}
.m159_c01356{transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175875,0.000000,0.000000,0.250000,0,0);}
.m36_c01356{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m3d_c01356{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m15d_c01356{transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177150,0.000000,0.000000,0.250000,0,0);}
.mff_c01356{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);}
.m45_c01356{transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177550,0.000000,0.000000,0.250000,0,0);}
.m3f_c01356{transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178250,0.000000,0.000000,0.250000,0,0);}
.m3b_c01356{transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178550,0.000000,0.000000,0.250000,0,0);}
.m153_c01356{transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178625,0.000000,0.000000,0.250000,0,0);}
.mab_c01356{transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178675,0.000000,0.000000,0.250000,0,0);}
.m13f_c01356{transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179150,0.000000,0.000000,0.250000,0,0);}
.mf9_c01356{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);}
.m50_c01356{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m127_c01356{transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181700,0.000000,0.000000,0.250000,0,0);}
.m11_c01356{transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182150,0.000000,0.000000,0.250000,0,0);}
.mb1_c01356{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);}
.m142_c01356{transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183875,0.000000,0.000000,0.250000,0,0);}
.m75_c01356{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);}
.m9b_c01356{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);}
.ma5_c01356{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.mdf_c01356{transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185475,0.000000,0.000000,0.250000,0,0);}
.m108_c01356{transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185575,0.000000,0.000000,0.250000,0,0);}
.mae_c01356{transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185875,0.000000,0.000000,0.250000,0,0);}
.m146_c01356{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.m12a_c01356{transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186300,0.000000,0.000000,0.250000,0,0);}
.mda_c01356{transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186475,0.000000,0.000000,0.250000,0,0);}
.m134_c01356{transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186550,0.000000,0.000000,0.250000,0,0);}
.m150_c01356{transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187275,0.000000,0.000000,0.250000,0,0);}
.m11d_c01356{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);}
.m149_c01356{transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188125,0.000000,0.000000,0.250000,0,0);}
.mc5_c01356{transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189325,0.000000,0.000000,0.250000,0,0);}
.m70_c01356{transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189550,0.000000,0.000000,0.250000,0,0);}
.md7_c01356{transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189600,0.000000,0.000000,0.250000,0,0);}
.m93_c01356{transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190175,0.000000,0.000000,0.250000,0,0);}
.mcd_c01356{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.m13d_c01356{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);}
.m74_c01356{transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191425,0.000000,0.000000,0.250000,0,0);}
.m37_c01356{transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191700,0.000000,0.000000,0.250000,0,0);}
.m81_c01356{transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192075,0.000000,0.000000,0.250000,0,0);}
.m145_c01356{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.mec_c01356{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);}
.m128_c01356{transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193100,0.000000,0.000000,0.250000,0,0);}
.ma4_c01356{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m88_c01356{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);}
.m78_c01356{transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193975,0.000000,0.000000,0.250000,0,0);}
.m104_c01356{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);}
.m5a_c01356{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);}
.m80_c01356{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);}
.m136_c01356{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);}
.m62_c01356{transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195975,0.000000,0.000000,0.250000,0,0);}
.m10c_c01356{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);}
.m13e_c01356{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);}
.m10e_c01356{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.md4_c01356{transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197325,0.000000,0.000000,0.250000,0,0);}
.mbd_c01356{transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197400,0.000000,0.000000,0.250000,0,0);}
.mf5_c01356{transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197625,0.000000,0.000000,0.250000,0,0);}
.m3e_c01356{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.m114_c01356{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);}
.m115_c01356{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.ma6_c01356{transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199575,0.000000,0.000000,0.250000,0,0);}
.m40_c01356{transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199900,0.000000,0.000000,0.250000,0,0);}
.m112_c01356{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);}
.mfd_c01356{transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200650,0.000000,0.000000,0.250000,0,0);}
.m5b_c01356{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.m57_c01356{transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201050,0.000000,0.000000,0.250000,0,0);}
.m14d_c01356{transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201875,0.000000,0.000000,0.250000,0,0);}
.m100_c01356{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.mf2_c01356{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m15b_c01356{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.mee_c01356{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);}
.me0_c01356{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);}
.mea_c01356{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);}
.m84_c01356{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);}
.m133_c01356{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);}
.m9f_c01356{transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204475,0.000000,0.000000,0.250000,0,0);}
.mb3_c01356{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.mfa_c01356{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m9a_c01356{transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204825,0.000000,0.000000,0.250000,0,0);}
.mc8_c01356{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.md5_c01356{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);}
.m116_c01356{transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205050,0.000000,0.000000,0.250000,0,0);}
.mcc_c01356{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m91_c01356{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);}
.m14f_c01356{transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205750,0.000000,0.000000,0.250000,0,0);}
.m6a_c01356{transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);}
.m10d_c01356{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);}
.mbf_c01356{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_c01356{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);}
.m120_c01356{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m148_c01356{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.m7a_c01356{transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207825,0.000000,0.000000,0.250000,0,0);}
.md3_c01356{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);}
.m9d_c01356{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m43_c01356{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);}
.me5_c01356{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);}
.m10f_c01356{transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209225,0.000000,0.000000,0.250000,0,0);}
.ma1_c01356{transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209375,0.000000,0.000000,0.250000,0,0);}
.m131_c01356{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);}
.m5c_c01356{transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209825,0.000000,0.000000,0.250000,0,0);}
.m8e_c01356{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);}
.ma9_c01356{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);}
.mc4_c01356{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);}
.m6e_c01356{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);}
.m13a_c01356{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);}
.mc1_c01356{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);}
.m77_c01356{transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212925,0.000000,0.000000,0.250000,0,0);}
.m44_c01356{transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213075,0.000000,0.000000,0.250000,0,0);}
.m1e_c01356{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);}
.m68_c01356{transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213250,0.000000,0.000000,0.250000,0,0);}
.mf3_c01356{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m8c_c01356{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);}
.mbb_c01356{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m143_c01356{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m83_c01356{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);}
.m138_c01356{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);}
.m1b_c01356{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);}
.md8_c01356{transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215275,0.000000,0.000000,0.250000,0,0);}
.m41_c01356{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);}
.ma8_c01356{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m2b_c01356{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.m61_c01356{transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216800,0.000000,0.000000,0.250000,0,0);}
.m14b_c01356{transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);}
.m15c_c01356{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);}
.m12c_c01356{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);}
.me8_c01356{transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217975,0.000000,0.000000,0.250000,0,0);}
.mf_c01356{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);}
.m63_c01356{transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218775,0.000000,0.000000,0.250000,0,0);}
.m107_c01356{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.m95_c01356{transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218875,0.000000,0.000000,0.250000,0,0);}
.m14c_c01356{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);}
.m129_c01356{transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220325,0.000000,0.000000,0.250000,0,0);}
.m124_c01356{transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220575,0.000000,0.000000,0.250000,0,0);}
.m31_c01356{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);}
.mbe_c01356{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);}
.m67_c01356{transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221150,0.000000,0.000000,0.250000,0,0);}
.m17_c01356{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);}
.m6f_c01356{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);}
.ma7_c01356{transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222150,0.000000,0.000000,0.250000,0,0);}
.m13b_c01356{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m94_c01356{transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223025,0.000000,0.000000,0.250000,0,0);}
.ma2_c01356{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);}
.m13c_c01356{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);}
.m8b_c01356{transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224875,0.000000,0.000000,0.250000,0,0);}
.m98_c01356{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);}
.mdd_c01356{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.mf4_c01356{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);}
.m6b_c01356{transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225700,0.000000,0.000000,0.250000,0,0);}
.mdb_c01356{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.m141_c01356{transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);}
.mfb_c01356{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);}
.md9_c01356{transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226875,0.000000,0.000000,0.250000,0,0);}
.m155_c01356{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m126_c01356{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);}
.mb6_c01356{transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);}
.m9e_c01356{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);}
.maa_c01356{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m14a_c01356{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);}
.mce_c01356{transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230075,0.000000,0.000000,0.250000,0,0);}
.m49_c01356{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);}
.m121_c01356{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.m2d_c01356{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);}
.m110_c01356{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);}
.m72_c01356{transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231400,0.000000,0.000000,0.250000,0,0);}
.m2e_c01356{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);}
.mfe_c01356{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);}
.mcb_c01356{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);}
.mc0_c01356{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);}
.m109_c01356{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);}
.mc3_c01356{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);}
.mba_c01356{transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232750,0.000000,0.000000,0.250000,0,0);}
.m139_c01356{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);}
.mac_c01356{transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233675,0.000000,0.000000,0.250000,0,0);}
.med_c01356{transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234350,0.000000,0.000000,0.250000,0,0);}
.m54_c01356{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.mc7_c01356{transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235450,0.000000,0.000000,0.250000,0,0);}
.m58_c01356{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);}
.m60_c01356{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);}
.m47_c01356{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.me7_c01356{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);}
.m152_c01356{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m10a_c01356{transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237400,0.000000,0.000000,0.250000,0,0);}
.m15a_c01356{transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237725,0.000000,0.000000,0.250000,0,0);}
.m103_c01356{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m119_c01356{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);}
.me2_c01356{transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239725,0.000000,0.000000,0.250000,0,0);}
.me3_c01356{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m132_c01356{transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239900,0.000000,0.000000,0.250000,0,0);}
.m111_c01356{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m10b_c01356{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);}
.m71_c01356{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.m4e_c01356{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);}
.m23_c01356{transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);}
.m2c_c01356{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m137_c01356{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);}
.md6_c01356{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);}
.m13_c01356{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);}
.m6d_c01356{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);}
.m12b_c01356{transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245100,0.000000,0.000000,0.250000,0,0);}
.m76_c01356{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);}
.m52_c01356{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);}
.m59_c01356{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);}
.me9_c01356{transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245850,0.000000,0.000000,0.250000,0,0);}
.m42_c01356{transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246200,0.000000,0.000000,0.250000,0,0);}
.m113_c01356{transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246725,0.000000,0.000000,0.250000,0,0);}
.m15_c01356{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);}
.m12e_c01356{transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246900,0.000000,0.000000,0.250000,0,0);}
.m46_c01356{transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249600,0.000000,0.000000,0.250000,0,0);}
.m3_c01356{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);}
.m10_c01356{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m8a_c01356{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);}
.m39_c01356{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);}
.m25_c01356{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);}
.m12_c01356{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);}
.m29_c01356{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m20_c01356{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01356{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01356{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);}
.m56_c01356{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m33_c01356{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);}
.m3a_c01356{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);}
.m1c_c01356{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m7c_c01356{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);}
.m6_c01356{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m21_c01356{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m79_c01356{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);}
.m35_c01356{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m14_c01356{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);}
.m27_c01356{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);}
.m26_c01356{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m32_c01356{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m34_c01356{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);}
.m4b_c01356{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01356{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m4_c01356{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);}
.m99_c01356{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mb2_c01356{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m55_c01356{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb4_c01356{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01356{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m7d_c01356{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m53_c01356{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.me6_c01356{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m66_c01356{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);}
.m2_c01356{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01356{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m92_c01356{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01356{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);}
.m125_c01356{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);}
.md1_c01356{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m64_c01356{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m24_c01356{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);}
.mde_c01356{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m65_c01356{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.mcf_c01356{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.maf_c01356{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);}
.m96_c01356{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.mf1_c01356{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01356{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01356{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m8_c01356{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m11b_c01356{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.mc6_c01356{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m154_c01356{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m38_c01356{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m85_c01356{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);}
.m7e_c01356{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m102_c01356{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);}
.m1_c01356{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m87_c01356{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m0_c01356{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);}
.m4c_c01356{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mb_c01356{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mf7_c01356{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01356{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m69_c01356{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m51_c01356{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m12f_c01356{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);}
.mca_c01356{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m158_c01356{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m73_c01356{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m86_c01356{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.md0_c01356{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m12d_c01356{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m8f_c01356{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.mb8_c01356{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);}
.m19_c01356{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);}
.m11c_c01356{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);}
.mb9_c01356{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m151_c01356{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.mef_c01356{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01356{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m162_c01356{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.m101_c01356{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m11a_c01356{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m15f_c01356{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m7b_c01356{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m140_c01356{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m8d_c01356{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.md2_c01356{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01356{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m16_c01356{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m30_c01356{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.mc9_c01356{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m48_c01356{transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.917500,0.000000,0.000000,0.250000,0,0);}
.mb7_c01356{transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.977500,0.000000,0.000000,0.250000,0,0);}
.mb0_c01356{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m28_c01356{transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);}
.meb_c01356{transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.080000,0.000000,0.000000,0.250000,0,0);}
.m117_c01356{transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.115000,0.000000,0.000000,0.250000,0,0);}
.mf8_c01356{transform:matrix(1.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.275000,0.000000,0.000000,0.250000,0,0);}
.m135_c01356{transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.427500,0.000000,0.000000,0.250000,0,0);}
.m160_c01356{transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.505000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01356{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);}
.mf6_c01356{transform:matrix(2.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.265000,0.000000,0.000000,0.250000,0,0);}
.m105_c01356{transform:matrix(3.745000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.745000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.745000,0.000000,0.000000,0.250000,0,0);}
.m118_c01356{transform:matrix(4.780000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.780000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.780000,0.000000,0.000000,0.250000,0,0);}
.m161_c01356{transform:matrix(6.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.240000,0.000000,0.000000,0.250000,0,0);}
.v0_c01356{vertical-align:0.000000px;}
.v1_c01356{vertical-align:3.480000px;}
.v2_c01356{vertical-align:6.960000px;}
.ls1_c01356{letter-spacing:0.000000px;}
.ls0_c01356{letter-spacing:39.930000px;}
.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;}
}
.ws2_c01356{word-spacing:0.000000px;}
.ws1_c01356{word-spacing:10.179000px;}
.ws0_c01356{word-spacing:56.158800px;}
.fc0_c01356{color:transparent;}
.fs5_c01356{font-size:3.456000px;}
.fs12_c01356{font-size:6.000000px;}
.fsa_c01356{font-size:6.900000px;}
.fs19_c01356{font-size:10.380000px;}
.fsd_c01356{font-size:13.800000px;}
.fs4_c01356{font-size:17.280000px;}
.fs17_c01356{font-size:20.760000px;}
.fs1c_c01356{font-size:24.180000px;}
.fs16_c01356{font-size:27.660000px;}
.fs15_c01356{font-size:31.080000px;}
.fs7_c01356{font-size:34.560000px;}
.fs18_c01356{font-size:38.040000px;}
.fs13_c01356{font-size:41.460000px;}
.fs10_c01356{font-size:44.940000px;}
.fsf_c01356{font-size:48.360000px;}
.fsc_c01356{font-size:51.840000px;}
.fs14_c01356{font-size:55.320000px;}
.fs0_c01356{font-size:58.740000px;}
.fse_c01356{font-size:62.220000px;}
.fs1_c01356{font-size:65.640000px;}
.fs2_c01356{font-size:69.120000px;}
.fs3_c01356{font-size:72.600000px;}
.fs11_c01356{font-size:76.020000px;}
.fs8_c01356{font-size:79.500000px;}
.fs9_c01356{font-size:86.400000px;}
.fs1a_c01356{font-size:93.300000px;}
.fsb_c01356{font-size:100.200000px;}
.fs6_c01356{font-size:107.160000px;}
.fs1b_c01356{font-size:120.960000px;}
.y0_c01356{bottom:0.000000px;}
.y1fc_c01356{bottom:203.040000px;}
.y1fb_c01356{bottom:203.910000px;}
.y1f6_c01356{bottom:207.360000px;}
.y1f4_c01356{bottom:208.230000px;}
.y1f5_c01356{bottom:209.955000px;}
.y1f8_c01356{bottom:210.810000px;}
.y1f9_c01356{bottom:212.550000px;}
.y1fa_c01356{bottom:216.000000px;}
.y1f7_c01356{bottom:226.365000px;}
.y1f0_c01356{bottom:227.235000px;}
.y1f1_c01356{bottom:228.090000px;}
.y1f2_c01356{bottom:228.960000px;}
.y1f3_c01356{bottom:239.325000px;}
.y1ed_c01356{bottom:241.920000px;}
.y1eb_c01356{bottom:244.515000px;}
.y1ee_c01356{bottom:245.370000px;}
.y1ec_c01356{bottom:246.240000px;}
.y1e5_c01356{bottom:259.200000px;}
.y1ef_c01356{bottom:260.070000px;}
.y1e9_c01356{bottom:262.650000px;}
.y1e6_c01356{bottom:263.520000px;}
.y1e7_c01356{bottom:264.390000px;}
.y1ea_c01356{bottom:265.245000px;}
.y1e8_c01356{bottom:266.970000px;}
.y1e0_c01356{bottom:277.350000px;}
.y1de_c01356{bottom:279.075000px;}
.y1df_c01356{bottom:279.930000px;}
.y1e2_c01356{bottom:280.800000px;}
.y1e1_c01356{bottom:282.525000px;}
.y1e3_c01356{bottom:283.395000px;}
.y1e4_c01356{bottom:284.250000px;}
.y1dd_c01356{bottom:286.845000px;}
.y1db_c01356{bottom:298.080000px;}
.y1dc_c01356{bottom:298.950000px;}
.y1d9_c01356{bottom:305.850000px;}
.y1da_c01356{bottom:306.720000px;}
.y1d3_c01356{bottom:310.170000px;}
.y1d2_c01356{bottom:311.040000px;}
.y1d5_c01356{bottom:311.910000px;}
.y1d1_c01356{bottom:313.635000px;}
.y1d6_c01356{bottom:314.490000px;}
.y1d4_c01356{bottom:316.230000px;}
.y1d8_c01356{bottom:319.680000px;}
.y1d7_c01356{bottom:320.550000px;}
.y1cc_c01356{bottom:327.450000px;}
.y1cf_c01356{bottom:330.045000px;}
.y1d0_c01356{bottom:330.915000px;}
.y1cd_c01356{bottom:332.640000px;}
.y1ce_c01356{bottom:333.510000px;}
.y1cb_c01356{bottom:337.830000px;}
.y1c2_c01356{bottom:345.600000px;}
.y1c1_c01356{bottom:346.470000px;}
.y1c6_c01356{bottom:348.195000px;}
.y1c8_c01356{bottom:349.050000px;}
.y1c3_c01356{bottom:349.920000px;}
.y1c4_c01356{bottom:350.790000px;}
.y1c5_c01356{bottom:351.645000px;}
.y1ca_c01356{bottom:352.515000px;}
.y1c7_c01356{bottom:353.370000px;}
.y1c9_c01356{bottom:355.110000px;}
.y1b8_c01356{bottom:362.880000px;}
.y1bb_c01356{bottom:364.605000px;}
.y1b9_c01356{bottom:365.475000px;}
.y1be_c01356{bottom:366.330000px;}
.y1b7_c01356{bottom:367.200000px;}
.y1ba_c01356{bottom:368.070000px;}
.y1bc_c01356{bottom:368.925000px;}
.y1bd_c01356{bottom:370.650000px;}
.y1c0_c01356{bottom:371.520000px;}
.y1bf_c01356{bottom:376.710000px;}
.y1b2_c01356{bottom:383.610000px;}
.y1af_c01356{bottom:384.480000px;}
.y1b0_c01356{bottom:385.350000px;}
.y1b6_c01356{bottom:386.205000px;}
.y1b4_c01356{bottom:387.075000px;}
.y1b3_c01356{bottom:387.930000px;}
.y1b5_c01356{bottom:388.800000px;}
.y1b1_c01356{bottom:397.440000px;}
.y1ab_c01356{bottom:400.890000px;}
.y1a8_c01356{bottom:401.760000px;}
.y1a9_c01356{bottom:403.485000px;}
.y1ac_c01356{bottom:404.355000px;}
.y1aa_c01356{bottom:405.210000px;}
.y1ae_c01356{bottom:406.080000px;}
.y1ad_c01356{bottom:406.950000px;}
.y1a4_c01356{bottom:419.040000px;}
.y1a3_c01356{bottom:419.910000px;}
.y1a1_c01356{bottom:420.765000px;}
.y1a2_c01356{bottom:422.490000px;}
.y1a5_c01356{bottom:424.230000px;}
.y1a7_c01356{bottom:426.810000px;}
.y1a6_c01356{bottom:430.275000px;}
.y19a_c01356{bottom:432.870000px;}
.y19c_c01356{bottom:434.595000px;}
.y19f_c01356{bottom:437.190000px;}
.y19b_c01356{bottom:438.045000px;}
.y19d_c01356{bottom:438.915000px;}
.y199_c01356{bottom:439.770000px;}
.y19e_c01356{bottom:440.640000px;}
.y1a0_c01356{bottom:444.090000px;}
.y191_c01356{bottom:447.555000px;}
.y192_c01356{bottom:448.410000px;}
.y193_c01356{bottom:449.280000px;}
.y194_c01356{bottom:450.150000px;}
.y190_c01356{bottom:451.005000px;}
.y18f_c01356{bottom:453.600000px;}
.y195_c01356{bottom:454.470000px;}
.y197_c01356{bottom:455.325000px;}
.y198_c01356{bottom:457.920000px;}
.y196_c01356{bottom:459.645000px;}
.y189_c01356{bottom:473.475000px;}
.y18a_c01356{bottom:476.070000px;}
.y18b_c01356{bottom:476.925000px;}
.y18c_c01356{bottom:477.795000px;}
.y18e_c01356{bottom:479.520000px;}
.y18d_c01356{bottom:480.390000px;}
.y181_c01356{bottom:489.030000px;}
.y186_c01356{bottom:490.755000px;}
.y182_c01356{bottom:494.205000px;}
.y187_c01356{bottom:495.075000px;}
.y184_c01356{bottom:496.800000px;}
.y183_c01356{bottom:497.670000px;}
.y185_c01356{bottom:499.395000px;}
.y180_c01356{bottom:502.845000px;}
.y179_c01356{bottom:504.570000px;}
.y188_c01356{bottom:505.440000px;}
.y178_c01356{bottom:507.165000px;}
.y177_c01356{bottom:508.035000px;}
.y17b_c01356{bottom:508.890000px;}
.y17a_c01356{bottom:509.760000px;}
.y17c_c01356{bottom:510.630000px;}
.y17d_c01356{bottom:511.485000px;}
.y17e_c01356{bottom:512.355000px;}
.y17f_c01356{bottom:514.080000px;}
.y174_c01356{bottom:524.445000px;}
.y171_c01356{bottom:525.315000px;}
.y176_c01356{bottom:527.040000px;}
.y172_c01356{bottom:527.910000px;}
.y175_c01356{bottom:529.635000px;}
.y173_c01356{bottom:533.085000px;}
.y16a_c01356{bottom:542.595000px;}
.y16c_c01356{bottom:543.450000px;}
.y16b_c01356{bottom:544.320000px;}
.y16e_c01356{bottom:546.045000px;}
.y16f_c01356{bottom:547.770000px;}
.y170_c01356{bottom:549.510000px;}
.y16d_c01356{bottom:553.830000px;}
.y163_c01356{bottom:558.150000px;}
.y164_c01356{bottom:560.730000px;}
.y165_c01356{bottom:562.470000px;}
.y168_c01356{bottom:564.195000px;}
.y166_c01356{bottom:567.645000px;}
.y169_c01356{bottom:571.110000px;}
.y167_c01356{bottom:573.690000px;}
.y15a_c01356{bottom:574.560000px;}
.y15c_c01356{bottom:575.430000px;}
.y15d_c01356{bottom:576.285000px;}
.y15b_c01356{bottom:577.155000px;}
.y159_c01356{bottom:578.010000px;}
.y15e_c01356{bottom:580.605000px;}
.y160_c01356{bottom:581.475000px;}
.y162_c01356{bottom:584.070000px;}
.y15f_c01356{bottom:591.840000px;}
.y151_c01356{bottom:592.710000px;}
.y161_c01356{bottom:593.565000px;}
.y154_c01356{bottom:595.290000px;}
.y150_c01356{bottom:596.160000px;}
.y155_c01356{bottom:597.030000px;}
.y152_c01356{bottom:597.885000px;}
.y156_c01356{bottom:599.610000px;}
.y158_c01356{bottom:602.205000px;}
.y157_c01356{bottom:605.670000px;}
.y153_c01356{bottom:608.250000px;}
.y148_c01356{bottom:609.990000px;}
.y147_c01356{bottom:613.440000px;}
.y14d_c01356{bottom:614.310000px;}
.y14e_c01356{bottom:615.165000px;}
.y149_c01356{bottom:616.035000px;}
.y14a_c01356{bottom:616.890000px;}
.y14b_c01356{bottom:617.760000px;}
.y14c_c01356{bottom:618.630000px;}
.y14f_c01356{bottom:621.210000px;}
.y141_c01356{bottom:628.125000px;}
.y140_c01356{bottom:629.850000px;}
.y143_c01356{bottom:634.170000px;}
.y144_c01356{bottom:635.910000px;}
.y146_c01356{bottom:636.765000px;}
.y142_c01356{bottom:637.635000px;}
.y145_c01356{bottom:641.955000px;}
.y139_c01356{bottom:644.550000px;}
.y13a_c01356{bottom:645.405000px;}
.y136_c01356{bottom:646.275000px;}
.y137_c01356{bottom:648.870000px;}
.y138_c01356{bottom:649.725000px;}
.y13b_c01356{bottom:651.450000px;}
.y13c_c01356{bottom:652.320000px;}
.y13d_c01356{bottom:653.190000px;}
.y13e_c01356{bottom:655.770000px;}
.y13f_c01356{bottom:658.365000px;}
.y131_c01356{bottom:660.960000px;}
.y132_c01356{bottom:662.685000px;}
.y133_c01356{bottom:663.555000px;}
.y130_c01356{bottom:664.410000px;}
.y134_c01356{bottom:666.150000px;}
.y135_c01356{bottom:667.875000px;}
.y12d_c01356{bottom:680.835000px;}
.y12c_c01356{bottom:681.690000px;}
.y12e_c01356{bottom:685.155000px;}
.y12f_c01356{bottom:687.750000px;}
.y123_c01356{bottom:693.795000px;}
.y125_c01356{bottom:694.650000px;}
.y124_c01356{bottom:696.390000px;}
.y129_c01356{bottom:697.245000px;}
.y12b_c01356{bottom:698.115000px;}
.y126_c01356{bottom:698.970000px;}
.y127_c01356{bottom:700.710000px;}
.y128_c01356{bottom:701.565000px;}
.y12a_c01356{bottom:702.435000px;}
.y11c_c01356{bottom:712.800000px;}
.y11d_c01356{bottom:713.670000px;}
.y120_c01356{bottom:715.395000px;}
.y11a_c01356{bottom:716.250000px;}
.y11b_c01356{bottom:717.120000px;}
.y121_c01356{bottom:718.845000px;}
.y11f_c01356{bottom:719.715000px;}
.y11e_c01356{bottom:720.570000px;}
.y122_c01356{bottom:721.440000px;}
.y115_c01356{bottom:729.210000px;}
.y114_c01356{bottom:732.675000px;}
.y119_c01356{bottom:733.530000px;}
.y116_c01356{bottom:736.125000px;}
.y117_c01356{bottom:736.995000px;}
.y118_c01356{bottom:737.850000px;}
.y110_c01356{bottom:747.360000px;}
.y10f_c01356{bottom:748.230000px;}
.y112_c01356{bottom:751.680000px;}
.y113_c01356{bottom:754.275000px;}
.y111_c01356{bottom:755.130000px;}
.y10e_c01356{bottom:756.870000px;}
.y10c_c01356{bottom:768.090000px;}
.y108_c01356{bottom:768.960000px;}
.y109_c01356{bottom:769.830000px;}
.y10b_c01356{bottom:770.685000px;}
.y10d_c01356{bottom:774.150000px;}
.y10a_c01356{bottom:780.195000px;}
.yff_c01356{bottom:785.370000px;}
.y103_c01356{bottom:786.240000px;}
.y100_c01356{bottom:787.110000px;}
.y101_c01356{bottom:787.965000px;}
.y102_c01356{bottom:788.835000px;}
.y105_c01356{bottom:789.690000px;}
.y104_c01356{bottom:790.560000px;}
.y106_c01356{bottom:791.430000px;}
.y107_c01356{bottom:792.285000px;}
.yfe_c01356{bottom:793.155000px;}
.yf6_c01356{bottom:799.200000px;}
.yf7_c01356{bottom:801.795000px;}
.yfc_c01356{bottom:802.650000px;}
.yf8_c01356{bottom:803.520000px;}
.yf9_c01356{bottom:804.390000px;}
.yfa_c01356{bottom:805.245000px;}
.yfb_c01356{bottom:807.840000px;}
.yfd_c01356{bottom:808.710000px;}
.yf1_c01356{bottom:819.075000px;}
.yf4_c01356{bottom:820.800000px;}
.yf0_c01356{bottom:821.670000px;}
.yf2_c01356{bottom:823.395000px;}
.yf5_c01356{bottom:826.845000px;}
.yf3_c01356{bottom:829.440000px;}
.ye6_c01356{bottom:834.630000px;}
.ye5_c01356{bottom:837.210000px;}
.yea_c01356{bottom:838.080000px;}
.yeb_c01356{bottom:839.805000px;}
.ye7_c01356{bottom:841.530000px;}
.ye9_c01356{bottom:842.400000px;}
.yec_c01356{bottom:843.270000px;}
.yed_c01356{bottom:844.995000px;}
.yee_c01356{bottom:845.850000px;}
.yef_c01356{bottom:848.445000px;}
.ye2_c01356{bottom:851.910000px;}
.ye8_c01356{bottom:852.765000px;}
.ye1_c01356{bottom:855.360000px;}
.ye3_c01356{bottom:856.230000px;}
.yde_c01356{bottom:858.810000px;}
.ye4_c01356{bottom:865.725000px;}
.yd9_c01356{bottom:869.190000px;}
.ydb_c01356{bottom:870.915000px;}
.ydd_c01356{bottom:872.640000px;}
.yda_c01356{bottom:873.510000px;}
.ydc_c01356{bottom:876.090000px;}
.ydf_c01356{bottom:877.830000px;}
.ye0_c01356{bottom:878.685000px;}
.yd4_c01356{bottom:886.470000px;}
.yd6_c01356{bottom:889.920000px;}
.yd3_c01356{bottom:890.790000px;}
.yd5_c01356{bottom:891.645000px;}
.yd8_c01356{bottom:894.240000px;}
.yd7_c01356{bottom:902.010000px;}
.yce_c01356{bottom:903.750000px;}
.yd0_c01356{bottom:905.475000px;}
.yd1_c01356{bottom:907.200000px;}
.ycf_c01356{bottom:908.925000px;}
.yd2_c01356{bottom:914.970000px;}
.ycc_c01356{bottom:921.030000px;}
.y1fe_c01356{bottom:924.480000px;}
.ycd_c01356{bottom:925.350000px;}
.yc9_c01356{bottom:938.310000px;}
.y1fd_c01356{bottom:940.890000px;}
.ycb_c01356{bottom:941.760000px;}
.y71_c01356{bottom:942.630000px;}
.yca_c01356{bottom:943.485000px;}
.y72_c01356{bottom:946.950000px;}
.y73_c01356{bottom:947.805000px;}
.y74_c01356{bottom:948.675000px;}
.y75_c01356{bottom:949.530000px;}
.yc4_c01356{bottom:955.590000px;}
.yc5_c01356{bottom:956.445000px;}
.yc7_c01356{bottom:957.315000px;}
.y6e_c01356{bottom:959.040000px;}
.y70_c01356{bottom:959.910000px;}
.yc6_c01356{bottom:960.765000px;}
.y6f_c01356{bottom:965.085000px;}
.yc8_c01356{bottom:972.000000px;}
.yc0_c01356{bottom:972.870000px;}
.yc1_c01356{bottom:973.725000px;}
.yc3_c01356{bottom:978.915000px;}
.yc2_c01356{bottom:979.770000px;}
.y69_c01356{bottom:980.640000px;}
.y6a_c01356{bottom:981.510000px;}
.y6b_c01356{bottom:982.365000px;}
.y6c_c01356{bottom:984.090000px;}
.y6d_c01356{bottom:985.830000px;}
.ybd_c01356{bottom:990.150000px;}
.ybf_c01356{bottom:991.875000px;}
.y66_c01356{bottom:994.470000px;}
.ybe_c01356{bottom:995.325000px;}
.y65_c01356{bottom:996.195000px;}
.y67_c01356{bottom:1001.370000px;}
.y68_c01356{bottom:1003.110000px;}
.ybb_c01356{bottom:1010.010000px;}
.ybc_c01356{bottom:1011.750000px;}
.y62_c01356{bottom:1013.475000px;}
.y60_c01356{bottom:1015.200000px;}
.y61_c01356{bottom:1017.795000px;}
.y64_c01356{bottom:1019.520000px;}
.y63_c01356{bottom:1020.390000px;}
.yb7_c01356{bottom:1024.710000px;}
.yb8_c01356{bottom:1025.565000px;}
.yb6_c01356{bottom:1028.160000px;}
.y5d_c01356{bottom:1030.755000px;}
.yb9_c01356{bottom:1031.610000px;}
.yba_c01356{bottom:1032.480000px;}
.y5c_c01356{bottom:1034.205000px;}
.y5f_c01356{bottom:1036.800000px;}
.y5e_c01356{bottom:1041.120000px;}
.yb4_c01356{bottom:1047.165000px;}
.y59_c01356{bottom:1048.035000px;}
.yb5_c01356{bottom:1048.890000px;}
.y5a_c01356{bottom:1053.210000px;}
.y5b_c01356{bottom:1054.080000px;}
.yae_c01356{bottom:1060.125000px;}
.yb0_c01356{bottom:1061.850000px;}
.yb1_c01356{bottom:1065.315000px;}
.yaf_c01356{bottom:1066.170000px;}
.yb3_c01356{bottom:1067.040000px;}
.y56_c01356{bottom:1069.635000px;}
.y58_c01356{bottom:1071.360000px;}
.yb2_c01356{bottom:1076.550000px;}
.yad_c01356{bottom:1078.275000px;}
.y57_c01356{bottom:1080.870000px;}
.y51_c01356{bottom:1082.595000px;}
.y55_c01356{bottom:1085.190000px;}
.y4f_c01356{bottom:1086.915000px;}
.y50_c01356{bottom:1087.770000px;}
.y52_c01356{bottom:1088.640000px;}
.y54_c01356{bottom:1089.510000px;}
.y53_c01356{bottom:1091.235000px;}
.yab_c01356{bottom:1096.410000px;}
.y4e_c01356{bottom:1099.005000px;}
.y4b_c01356{bottom:1099.875000px;}
.yac_c01356{bottom:1100.730000px;}
.y4c_c01356{bottom:1105.050000px;}
.y4d_c01356{bottom:1106.790000px;}
.yaa_c01356{bottom:1111.965000px;}
.ya7_c01356{bottom:1114.560000px;}
.y48_c01356{bottom:1117.155000px;}
.y4a_c01356{bottom:1118.880000px;}
.ya6_c01356{bottom:1121.475000px;}
.y49_c01356{bottom:1122.330000px;}
.ya8_c01356{bottom:1123.200000px;}
.ya9_c01356{bottom:1129.245000px;}
.ya3_c01356{bottom:1132.710000px;}
.y41_c01356{bottom:1134.435000px;}
.ya4_c01356{bottom:1137.885000px;}
.ya5_c01356{bottom:1138.755000px;}
.y42_c01356{bottom:1139.610000px;}
.y43_c01356{bottom:1140.480000px;}
.y47_c01356{bottom:1141.350000px;}
.y45_c01356{bottom:1142.205000px;}
.y44_c01356{bottom:1143.930000px;}
.ya0_c01356{bottom:1148.250000px;}
.ya1_c01356{bottom:1150.845000px;}
.y9f_c01356{bottom:1151.715000px;}
.y46_c01356{bottom:1153.440000px;}
.y40_c01356{bottom:1154.310000px;}
.y3f_c01356{bottom:1156.890000px;}
.ya2_c01356{bottom:1159.485000px;}
.y9e_c01356{bottom:1166.400000px;}
.y38_c01356{bottom:1174.170000px;}
.y39_c01356{bottom:1175.040000px;}
.y3a_c01356{bottom:1175.910000px;}
.y3e_c01356{bottom:1177.635000px;}
.y3c_c01356{bottom:1179.360000px;}
.y3b_c01356{bottom:1180.230000px;}
.y3d_c01356{bottom:1181.955000px;}
.y9b_c01356{bottom:1186.275000px;}
.y34_c01356{bottom:1188.870000px;}
.y9d_c01356{bottom:1189.725000px;}
.y9c_c01356{bottom:1190.595000px;}
.y35_c01356{bottom:1192.320000px;}
.y36_c01356{bottom:1193.190000px;}
.y33_c01356{bottom:1194.045000px;}
.y37_c01356{bottom:1194.915000px;}
.y97_c01356{bottom:1202.685000px;}
.y96_c01356{bottom:1204.410000px;}
.y98_c01356{bottom:1206.150000px;}
.y2f_c01356{bottom:1207.005000px;}
.y99_c01356{bottom:1207.875000px;}
.y9a_c01356{bottom:1208.730000px;}
.y30_c01356{bottom:1210.470000px;}
.y32_c01356{bottom:1214.790000px;}
.y93_c01356{bottom:1218.240000px;}
.y92_c01356{bottom:1219.110000px;}
.y31_c01356{bottom:1219.965000px;}
.y90_c01356{bottom:1221.690000px;}
.y91_c01356{bottom:1222.560000px;}
.y2a_c01356{bottom:1223.430000px;}
.y94_c01356{bottom:1224.285000px;}
.y95_c01356{bottom:1226.880000px;}
.y29_c01356{bottom:1227.750000px;}
.y2c_c01356{bottom:1229.475000px;}
.y2b_c01356{bottom:1230.330000px;}
.y2d_c01356{bottom:1232.070000px;}
.y2e_c01356{bottom:1233.795000px;}
.y8b_c01356{bottom:1238.970000px;}
.y28_c01356{bottom:1239.840000px;}
.y8c_c01356{bottom:1240.710000px;}
.y8d_c01356{bottom:1241.565000px;}
.y8e_c01356{bottom:1242.435000px;}
.y8f_c01356{bottom:1243.290000px;}
.y23_c01356{bottom:1244.160000px;}
.y24_c01356{bottom:1245.885000px;}
.y25_c01356{bottom:1246.755000px;}
.y27_c01356{bottom:1247.610000px;}
.y22_c01356{bottom:1250.205000px;}
.y26_c01356{bottom:1251.930000px;}
.y87_c01356{bottom:1253.670000px;}
.y89_c01356{bottom:1254.525000px;}
.y8a_c01356{bottom:1255.395000px;}
.y86_c01356{bottom:1257.120000px;}
.y88_c01356{bottom:1257.990000px;}
.y1f_c01356{bottom:1260.570000px;}
.y1e_c01356{bottom:1263.165000px;}
.y20_c01356{bottom:1264.035000px;}
.y21_c01356{bottom:1266.630000px;}
.y84_c01356{bottom:1272.675000px;}
.y85_c01356{bottom:1275.270000px;}
.y1d_c01356{bottom:1276.995000px;}
.y1b_c01356{bottom:1279.590000px;}
.y1c_c01356{bottom:1280.445000px;}
.y81_c01356{bottom:1289.085000px;}
.y82_c01356{bottom:1289.955000px;}
.y80_c01356{bottom:1290.810000px;}
.y83_c01356{bottom:1292.550000px;}
.y16_c01356{bottom:1294.275000px;}
.y19_c01356{bottom:1297.725000px;}
.y17_c01356{bottom:1298.595000px;}
.y1a_c01356{bottom:1299.450000px;}
.y18_c01356{bottom:1304.640000px;}
.y7b_c01356{bottom:1305.510000px;}
.y7c_c01356{bottom:1306.365000px;}
.y7a_c01356{bottom:1307.235000px;}
.y7e_c01356{bottom:1308.090000px;}
.y15_c01356{bottom:1308.960000px;}
.y7d_c01356{bottom:1313.280000px;}
.y7f_c01356{bottom:1314.150000px;}
.y12_c01356{bottom:1315.005000px;}
.y14_c01356{bottom:1317.600000px;}
.y77_c01356{bottom:1321.920000px;}
.y78_c01356{bottom:1323.645000px;}
.y13_c01356{bottom:1326.240000px;}
.yd_c01356{bottom:1327.965000px;}
.y79_c01356{bottom:1328.835000px;}
.yc_c01356{bottom:1329.690000px;}
.yf_c01356{bottom:1330.560000px;}
.ye_c01356{bottom:1333.155000px;}
.y11_c01356{bottom:1334.880000px;}
.y10_c01356{bottom:1336.605000px;}
.y76_c01356{bottom:1339.200000px;}
.y7_c01356{bottom:1345.245000px;}
.y9_c01356{bottom:1346.970000px;}
.ya_c01356{bottom:1347.840000px;}
.y8_c01356{bottom:1351.290000px;}
.yb_c01356{bottom:1355.610000px;}
.y2_c01356{bottom:1375.485000px;}
.y1_c01356{bottom:1376.355000px;}
.y4_c01356{bottom:1377.210000px;}
.y3_c01356{bottom:1378.080000px;}
.y5_c01356{bottom:1388.445000px;}
.y6_c01356{bottom:1391.910000px;}
.h7_c01356{height:3.110063px;}
.h14_c01356{height:5.399414px;}
.hc_c01356{height:6.209326px;}
.h1b_c01356{height:9.340986px;}
.hf_c01356{height:12.418652px;}
.h6_c01356{height:15.550313px;}
.h19_c01356{height:18.681973px;}
.h20_c01356{height:21.759639px;}
.h18_c01356{height:24.891299px;}
.h17_c01356{height:27.968965px;}
.h9_c01356{height:31.100625px;}
.h1a_c01356{height:34.232285px;}
.h15_c01356{height:37.309951px;}
.h12_c01356{height:40.441611px;}
.h11_c01356{height:43.519277px;}
.he_c01356{height:46.650937px;}
.h1e_c01356{height:46.999277px;}
.h16_c01356{height:49.782598px;}
.h2_c01356{height:52.860264px;}
.h1f_c01356{height:53.610938px;}
.h10_c01356{height:55.991924px;}
.h3_c01356{height:59.069590px;}
.h4_c01356{height:62.201250px;}
.h5_c01356{height:65.332910px;}
.h13_c01356{height:68.410576px;}
.ha_c01356{height:71.542236px;}
.hb_c01356{height:77.751563px;}
.h1c_c01356{height:83.960889px;}
.hd_c01356{height:90.170215px;}
.h8_c01356{height:96.433535px;}
.h1d_c01356{height:108.852188px;}
.h1_c01356{height:1513.500000px;}
.h0_c01356{height:1513.725000px;}
.w0_c01356{width:1083.450000px;}
.w1_c01356{width:1083.750000px;}
.x0_c01356{left:0.000000px;}
.x8b_c01356{left:195.270000px;}
.xea_c01356{left:205.635000px;}
.x8c_c01356{left:207.360000px;}
.x8f_c01356{left:209.955000px;}
.xc0_c01356{left:211.680000px;}
.xfa_c01356{left:213.405000px;}
.xeb_c01356{left:215.130000px;}
.x5d_c01356{left:218.595000px;}
.x60_c01356{left:220.320000px;}
.xaa_c01356{left:222.045000px;}
.xa6_c01356{left:223.770000px;}
.xd9_c01356{left:225.510000px;}
.xde_c01356{left:228.960000px;}
.x83_c01356{left:232.410000px;}
.x64_c01356{left:235.875000px;}
.xf7_c01356{left:237.600000px;}
.xae_c01356{left:239.325000px;}
.xd1_c01356{left:241.050000px;}
.x68_c01356{left:244.515000px;}
.x75_c01356{left:247.110000px;}
.xa3_c01356{left:248.835000px;}
.xd2_c01356{left:252.285000px;}
.x95_c01356{left:255.750000px;}
.x6f_c01356{left:258.330000px;}
.xc8_c01356{left:260.070000px;}
.xb7_c01356{left:261.795000px;}
.x87_c01356{left:264.390000px;}
.x9d_c01356{left:267.840000px;}
.x76_c01356{left:270.435000px;}
.xdf_c01356{left:272.160000px;}
.xab_c01356{left:273.885000px;}
.x6c_c01356{left:275.610000px;}
.xa7_c01356{left:278.205000px;}
.x5e_c01356{left:281.670000px;}
.xa0_c01356{left:284.250000px;}
.x77_c01356{left:285.990000px;}
.xe1_c01356{left:289.440000px;}
.x61_c01356{left:292.890000px;}
.xbd_c01356{left:295.485000px;}
.xf8_c01356{left:297.210000px;}
.xcf_c01356{left:298.950000px;}
.x9e_c01356{left:301.530000px;}
.x69_c01356{left:303.270000px;}
.xbe_c01356{left:304.995000px;}
.x91_c01356{left:306.720000px;}
.x78_c01356{left:310.170000px;}
.x62_c01356{left:317.085000px;}
.x70_c01356{left:319.680000px;}
.x88_c01356{left:322.275000px;}
.x65_c01356{left:324.870000px;}
.xca_c01356{left:327.450000px;}
.x9b_c01356{left:329.190000px;}
.x79_c01356{left:330.915000px;}
.x8d_c01356{left:332.640000px;}
.xba_c01356{left:334.365000px;}
.x6d_c01356{left:336.090000px;}
.x71_c01356{left:342.150000px;}
.x7a_c01356{left:344.730000px;}
.x7f_c01356{left:347.325000px;}
.xa1_c01356{left:349.920000px;}
.xe8_c01356{left:353.370000px;}
.x84_c01356{left:355.110000px;}
.xe3_c01356{left:358.560000px;}
.x72_c01356{left:360.285000px;}
.xa4_c01356{left:362.880000px;}
.x9f_c01356{left:365.475000px;}
.xb8_c01356{left:368.070000px;}
.xd5_c01356{left:370.650000px;}
.x6e_c01356{left:372.390000px;}
.xcb_c01356{left:374.115000px;}
.x9c_c01356{left:376.710000px;}
.x98_c01356{left:380.160000px;}
.xf9_c01356{left:381.885000px;}
.x80_c01356{left:385.350000px;}
.x7b_c01356{left:388.800000px;}
.x96_c01356{left:390.525000px;}
.x6a_c01356{left:393.120000px;}
.xa2_c01356{left:395.715000px;}
.x99_c01356{left:399.165000px;}
.xf4_c01356{left:404.355000px;}
.x66_c01356{left:408.675000px;}
.x97_c01356{left:411.270000px;}
.xe4_c01356{left:416.445000px;}
.x92_c01356{left:418.170000px;}
.x73_c01356{left:420.765000px;}
.xe2_c01356{left:423.360000px;}
.x67_c01356{left:426.810000px;}
.x85_c01356{left:430.275000px;}
.x89_c01356{left:433.725000px;}
.x74_c01356{left:438.045000px;}
.x81_c01356{left:443.235000px;}
.xcc_c01356{left:445.830000px;}
.x9a_c01356{left:447.555000px;}
.x7c_c01356{left:449.280000px;}
.x8a_c01356{left:451.875000px;}
.x90_c01356{left:455.325000px;}
.x93_c01356{left:457.050000px;}
.x8e_c01356{left:459.645000px;}
.x7d_c01356{left:462.240000px;}
.x1_c01356{left:464.835000px;}
.x82_c01356{left:467.430000px;}
.xa5_c01356{left:470.880000px;}
.xd6_c01356{left:475.200000px;}
.x86_c01356{left:479.520000px;}
.xc4_c01356{left:482.970000px;}
.x2_c01356{left:485.565000px;}
.xa8_c01356{left:488.160000px;}
.xda_c01356{left:491.610000px;}
.xb1_c01356{left:494.205000px;}
.xc1_c01356{left:496.800000px;}
.x7e_c01356{left:498.525000px;}
.x5f_c01356{left:501.120000px;}
.x63_c01356{left:502.845000px;}
.xf3_c01356{left:505.440000px;}
.x6b_c01356{left:507.165000px;}
.x94_c01356{left:508.890000px;}
.xa9_c01356{left:511.485000px;}
.xac_c01356{left:513.210000px;}
.x3_c01356{left:515.805000px;}
.xdb_c01356{left:524.445000px;}
.xe7_c01356{left:527.910000px;}
.x28_c01356{left:533.085000px;}
.x17_c01356{left:535.680000px;}
.x23_c01356{left:538.275000px;}
.xe_c01356{left:541.725000px;}
.xaf_c01356{left:544.320000px;}
.x51_c01356{left:546.045000px;}
.x4_c01356{left:547.770000px;}
.x30_c01356{left:549.510000px;}
.x58_c01356{left:551.235000px;}
.xb2_c01356{left:553.830000px;}
.xe0_c01356{left:555.555000px;}
.xf5_c01356{left:557.280000px;}
.xee_c01356{left:559.005000px;}
.x57_c01356{left:561.600000px;}
.x2d_c01356{left:565.050000px;}
.xfe_c01356{left:566.790000px;}
.x5_c01356{left:571.110000px;}
.x14_c01356{left:574.560000px;}
.x35_c01356{left:576.285000px;}
.x46_c01356{left:578.010000px;}
.xbb_c01356{left:579.750000px;}
.xdc_c01356{left:582.330000px;}
.x1f_c01356{left:587.520000px;}
.xc6_c01356{left:590.115000px;}
.xc5_c01356{left:591.840000px;}
.x36_c01356{left:594.435000px;}
.xb3_c01356{left:596.160000px;}
.xf_c01356{left:598.755000px;}
.x18_c01356{left:600.480000px;}
.xfb_c01356{left:602.205000px;}
.x29_c01356{left:603.930000px;}
.x4d_c01356{left:606.525000px;}
.x41_c01356{left:609.120000px;}
.x37_c01356{left:612.570000px;}
.x47_c01356{left:615.165000px;}
.xbc_c01356{left:616.890000px;}
.xb9_c01356{left:621.210000px;}
.x10_c01356{left:622.950000px;}
.x4f_c01356{left:624.675000px;}
.xec_c01356{left:626.400000px;}
.x3c_c01356{left:628.125000px;}
.x5a_c01356{left:630.720000px;}
.x1d_c01356{left:632.445000px;}
.x19_c01356{left:634.170000px;}
.xbf_c01356{left:636.765000px;}
.xc2_c01356{left:639.360000px;}
.x8_c01356{left:641.085000px;}
.xcd_c01356{left:643.680000px;}
.x24_c01356{left:646.275000px;}
.xef_c01356{left:648.870000px;}
.x20_c01356{left:650.595000px;}
.x31_c01356{left:652.320000px;}
.x11_c01356{left:654.045000px;}
.x52_c01356{left:658.365000px;}
.x3d_c01356{left:661.830000px;}
.xff_c01356{left:663.555000px;}
.x48_c01356{left:665.280000px;}
.x9_c01356{left:667.005000px;}
.x32_c01356{left:668.730000px;}
.xdd_c01356{left:670.470000px;}
.x54_c01356{left:672.195000px;}
.x101_c01356{left:673.920000px;}
.xd3_c01356{left:675.645000px;}
.x42_c01356{left:677.370000px;}
.x25_c01356{left:679.110000px;}
.xb4_c01356{left:682.560000px;}
.xf6_c01356{left:684.285000px;}
.x55_c01356{left:687.750000px;}
.x44_c01356{left:690.330000px;}
.x1a_c01356{left:692.070000px;}
.xfc_c01356{left:693.795000px;}
.xad_c01356{left:696.390000px;}
.xf0_c01356{left:698.115000px;}
.xe5_c01356{left:701.565000px;}
.x2a_c01356{left:704.160000px;}
.x5b_c01356{left:708.480000px;}
.x2e_c01356{left:711.930000px;}
.x15_c01356{left:713.670000px;}
.x1b_c01356{left:717.120000px;}
.xc9_c01356{left:719.715000px;}
.x21_c01356{left:721.440000px;}
.xa_c01356{left:725.760000px;}
.xce_c01356{left:729.210000px;}
.x12_c01356{left:731.805000px;}
.xed_c01356{left:734.400000px;}
.xd7_c01356{left:736.125000px;}
.x100_c01356{left:737.850000px;}
.x3e_c01356{left:742.170000px;}
.x3b_c01356{left:744.765000px;}
.x26_c01356{left:746.490000px;}
.xb5_c01356{left:748.230000px;}
.x56_c01356{left:749.955000px;}
.x49_c01356{left:751.680000px;}
.x1e_c01356{left:753.405000px;}
.x1c_c01356{left:756.000000px;}
.xc7_c01356{left:757.725000px;}
.x50_c01356{left:759.450000px;}
.x2b_c01356{left:761.190000px;}
.x38_c01356{left:766.365000px;}
.xfd_c01356{left:769.830000px;}
.x33_c01356{left:771.555000px;}
.x2f_c01356{left:773.280000px;}
.xd8_c01356{left:775.875000px;}
.x34_c01356{left:778.470000px;}
.x4e_c01356{left:781.920000px;}
.xe9_c01356{left:783.645000px;}
.x43_c01356{left:785.370000px;}
.x16_c01356{left:787.965000px;}
.x3f_c01356{left:790.560000px;}
.xb_c01356{left:794.010000px;}
.xe6_c01356{left:795.750000px;}
.x40_c01356{left:797.475000px;}
.xc_c01356{left:799.200000px;}
.x27_c01356{left:801.795000px;}
.x4c_c01356{left:806.115000px;}
.x13_c01356{left:808.710000px;}
.x39_c01356{left:811.290000px;}
.xf1_c01356{left:813.030000px;}
.x59_c01356{left:814.755000px;}
.xd4_c01356{left:816.480000px;}
.xd_c01356{left:818.205000px;}
.x4a_c01356{left:820.800000px;}
.x22_c01356{left:824.250000px;}
.x53_c01356{left:825.990000px;}
.x2c_c01356{left:828.570000px;}
.x5c_c01356{left:831.165000px;}
.x3a_c01356{left:833.760000px;}
.x45_c01356{left:835.485000px;}
.xb6_c01356{left:838.080000px;}
.xc3_c01356{left:842.400000px;}
.xf2_c01356{left:850.170000px;}
.xd0_c01356{left:852.765000px;}
.x4b_c01356{left:854.490000px;}
.xb0_c01356{left:856.230000px;}
.x102_c01356{left:860.550000px;}
.x105_c01356{left:898.560000px;}
.x103_c01356{left:923.610000px;}
.x104_c01356{left:941.760000px;}
.x6_c01356{left:973.725000px;}
.x7_c01356{left:979.770000px;}
@media print{
.v0_c01356{vertical-align:0.000000pt;}
.v1_c01356{vertical-align:3.093333pt;}
.v2_c01356{vertical-align:6.186667pt;}
.ls1_c01356{letter-spacing:0.000000pt;}
.ls0_c01356{letter-spacing:35.493333pt;}
.ws2_c01356{word-spacing:0.000000pt;}
.ws1_c01356{word-spacing:9.048000pt;}
.ws0_c01356{word-spacing:49.918933pt;}
.fs5_c01356{font-size:3.072000pt;}
.fs12_c01356{font-size:5.333333pt;}
.fsa_c01356{font-size:6.133333pt;}
.fs19_c01356{font-size:9.226667pt;}
.fsd_c01356{font-size:12.266667pt;}
.fs4_c01356{font-size:15.360000pt;}
.fs17_c01356{font-size:18.453333pt;}
.fs1c_c01356{font-size:21.493333pt;}
.fs16_c01356{font-size:24.586667pt;}
.fs15_c01356{font-size:27.626667pt;}
.fs7_c01356{font-size:30.720000pt;}
.fs18_c01356{font-size:33.813333pt;}
.fs13_c01356{font-size:36.853333pt;}
.fs10_c01356{font-size:39.946667pt;}
.fsf_c01356{font-size:42.986667pt;}
.fsc_c01356{font-size:46.080000pt;}
.fs14_c01356{font-size:49.173333pt;}
.fs0_c01356{font-size:52.213333pt;}
.fse_c01356{font-size:55.306667pt;}
.fs1_c01356{font-size:58.346667pt;}
.fs2_c01356{font-size:61.440000pt;}
.fs3_c01356{font-size:64.533333pt;}
.fs11_c01356{font-size:67.573333pt;}
.fs8_c01356{font-size:70.666667pt;}
.fs9_c01356{font-size:76.800000pt;}
.fs1a_c01356{font-size:82.933333pt;}
.fsb_c01356{font-size:89.066667pt;}
.fs6_c01356{font-size:95.253333pt;}
.fs1b_c01356{font-size:107.520000pt;}
.y0_c01356{bottom:0.000000pt;}
.y1fc_c01356{bottom:180.480000pt;}
.y1fb_c01356{bottom:181.253333pt;}
.y1f6_c01356{bottom:184.320000pt;}
.y1f4_c01356{bottom:185.093333pt;}
.y1f5_c01356{bottom:186.626667pt;}
.y1f8_c01356{bottom:187.386667pt;}
.y1f9_c01356{bottom:188.933333pt;}
.y1fa_c01356{bottom:192.000000pt;}
.y1f7_c01356{bottom:201.213333pt;}
.y1f0_c01356{bottom:201.986667pt;}
.y1f1_c01356{bottom:202.746667pt;}
.y1f2_c01356{bottom:203.520000pt;}
.y1f3_c01356{bottom:212.733333pt;}
.y1ed_c01356{bottom:215.040000pt;}
.y1eb_c01356{bottom:217.346667pt;}
.y1ee_c01356{bottom:218.106667pt;}
.y1ec_c01356{bottom:218.880000pt;}
.y1e5_c01356{bottom:230.400000pt;}
.y1ef_c01356{bottom:231.173333pt;}
.y1e9_c01356{bottom:233.466667pt;}
.y1e6_c01356{bottom:234.240000pt;}
.y1e7_c01356{bottom:235.013333pt;}
.y1ea_c01356{bottom:235.773333pt;}
.y1e8_c01356{bottom:237.306667pt;}
.y1e0_c01356{bottom:246.533333pt;}
.y1de_c01356{bottom:248.066667pt;}
.y1df_c01356{bottom:248.826667pt;}
.y1e2_c01356{bottom:249.600000pt;}
.y1e1_c01356{bottom:251.133333pt;}
.y1e3_c01356{bottom:251.906667pt;}
.y1e4_c01356{bottom:252.666667pt;}
.y1dd_c01356{bottom:254.973333pt;}
.y1db_c01356{bottom:264.960000pt;}
.y1dc_c01356{bottom:265.733333pt;}
.y1d9_c01356{bottom:271.866667pt;}
.y1da_c01356{bottom:272.640000pt;}
.y1d3_c01356{bottom:275.706667pt;}
.y1d2_c01356{bottom:276.480000pt;}
.y1d5_c01356{bottom:277.253333pt;}
.y1d1_c01356{bottom:278.786667pt;}
.y1d6_c01356{bottom:279.546667pt;}
.y1d4_c01356{bottom:281.093333pt;}
.y1d8_c01356{bottom:284.160000pt;}
.y1d7_c01356{bottom:284.933333pt;}
.y1cc_c01356{bottom:291.066667pt;}
.y1cf_c01356{bottom:293.373333pt;}
.y1d0_c01356{bottom:294.146667pt;}
.y1cd_c01356{bottom:295.680000pt;}
.y1ce_c01356{bottom:296.453333pt;}
.y1cb_c01356{bottom:300.293333pt;}
.y1c2_c01356{bottom:307.200000pt;}
.y1c1_c01356{bottom:307.973333pt;}
.y1c6_c01356{bottom:309.506667pt;}
.y1c8_c01356{bottom:310.266667pt;}
.y1c3_c01356{bottom:311.040000pt;}
.y1c4_c01356{bottom:311.813333pt;}
.y1c5_c01356{bottom:312.573333pt;}
.y1ca_c01356{bottom:313.346667pt;}
.y1c7_c01356{bottom:314.106667pt;}
.y1c9_c01356{bottom:315.653333pt;}
.y1b8_c01356{bottom:322.560000pt;}
.y1bb_c01356{bottom:324.093333pt;}
.y1b9_c01356{bottom:324.866667pt;}
.y1be_c01356{bottom:325.626667pt;}
.y1b7_c01356{bottom:326.400000pt;}
.y1ba_c01356{bottom:327.173333pt;}
.y1bc_c01356{bottom:327.933333pt;}
.y1bd_c01356{bottom:329.466667pt;}
.y1c0_c01356{bottom:330.240000pt;}
.y1bf_c01356{bottom:334.853333pt;}
.y1b2_c01356{bottom:340.986667pt;}
.y1af_c01356{bottom:341.760000pt;}
.y1b0_c01356{bottom:342.533333pt;}
.y1b6_c01356{bottom:343.293333pt;}
.y1b4_c01356{bottom:344.066667pt;}
.y1b3_c01356{bottom:344.826667pt;}
.y1b5_c01356{bottom:345.600000pt;}
.y1b1_c01356{bottom:353.280000pt;}
.y1ab_c01356{bottom:356.346667pt;}
.y1a8_c01356{bottom:357.120000pt;}
.y1a9_c01356{bottom:358.653333pt;}
.y1ac_c01356{bottom:359.426667pt;}
.y1aa_c01356{bottom:360.186667pt;}
.y1ae_c01356{bottom:360.960000pt;}
.y1ad_c01356{bottom:361.733333pt;}
.y1a4_c01356{bottom:372.480000pt;}
.y1a3_c01356{bottom:373.253333pt;}
.y1a1_c01356{bottom:374.013333pt;}
.y1a2_c01356{bottom:375.546667pt;}
.y1a5_c01356{bottom:377.093333pt;}
.y1a7_c01356{bottom:379.386667pt;}
.y1a6_c01356{bottom:382.466667pt;}
.y19a_c01356{bottom:384.773333pt;}
.y19c_c01356{bottom:386.306667pt;}
.y19f_c01356{bottom:388.613333pt;}
.y19b_c01356{bottom:389.373333pt;}
.y19d_c01356{bottom:390.146667pt;}
.y199_c01356{bottom:390.906667pt;}
.y19e_c01356{bottom:391.680000pt;}
.y1a0_c01356{bottom:394.746667pt;}
.y191_c01356{bottom:397.826667pt;}
.y192_c01356{bottom:398.586667pt;}
.y193_c01356{bottom:399.360000pt;}
.y194_c01356{bottom:400.133333pt;}
.y190_c01356{bottom:400.893333pt;}
.y18f_c01356{bottom:403.200000pt;}
.y195_c01356{bottom:403.973333pt;}
.y197_c01356{bottom:404.733333pt;}
.y198_c01356{bottom:407.040000pt;}
.y196_c01356{bottom:408.573333pt;}
.y189_c01356{bottom:420.866667pt;}
.y18a_c01356{bottom:423.173333pt;}
.y18b_c01356{bottom:423.933333pt;}
.y18c_c01356{bottom:424.706667pt;}
.y18e_c01356{bottom:426.240000pt;}
.y18d_c01356{bottom:427.013333pt;}
.y181_c01356{bottom:434.693333pt;}
.y186_c01356{bottom:436.226667pt;}
.y182_c01356{bottom:439.293333pt;}
.y187_c01356{bottom:440.066667pt;}
.y184_c01356{bottom:441.600000pt;}
.y183_c01356{bottom:442.373333pt;}
.y185_c01356{bottom:443.906667pt;}
.y180_c01356{bottom:446.973333pt;}
.y179_c01356{bottom:448.506667pt;}
.y188_c01356{bottom:449.280000pt;}
.y178_c01356{bottom:450.813333pt;}
.y177_c01356{bottom:451.586667pt;}
.y17b_c01356{bottom:452.346667pt;}
.y17a_c01356{bottom:453.120000pt;}
.y17c_c01356{bottom:453.893333pt;}
.y17d_c01356{bottom:454.653333pt;}
.y17e_c01356{bottom:455.426667pt;}
.y17f_c01356{bottom:456.960000pt;}
.y174_c01356{bottom:466.173333pt;}
.y171_c01356{bottom:466.946667pt;}
.y176_c01356{bottom:468.480000pt;}
.y172_c01356{bottom:469.253333pt;}
.y175_c01356{bottom:470.786667pt;}
.y173_c01356{bottom:473.853333pt;}
.y16a_c01356{bottom:482.306667pt;}
.y16c_c01356{bottom:483.066667pt;}
.y16b_c01356{bottom:483.840000pt;}
.y16e_c01356{bottom:485.373333pt;}
.y16f_c01356{bottom:486.906667pt;}
.y170_c01356{bottom:488.453333pt;}
.y16d_c01356{bottom:492.293333pt;}
.y163_c01356{bottom:496.133333pt;}
.y164_c01356{bottom:498.426667pt;}
.y165_c01356{bottom:499.973333pt;}
.y168_c01356{bottom:501.506667pt;}
.y166_c01356{bottom:504.573333pt;}
.y169_c01356{bottom:507.653333pt;}
.y167_c01356{bottom:509.946667pt;}
.y15a_c01356{bottom:510.720000pt;}
.y15c_c01356{bottom:511.493333pt;}
.y15d_c01356{bottom:512.253333pt;}
.y15b_c01356{bottom:513.026667pt;}
.y159_c01356{bottom:513.786667pt;}
.y15e_c01356{bottom:516.093333pt;}
.y160_c01356{bottom:516.866667pt;}
.y162_c01356{bottom:519.173333pt;}
.y15f_c01356{bottom:526.080000pt;}
.y151_c01356{bottom:526.853333pt;}
.y161_c01356{bottom:527.613333pt;}
.y154_c01356{bottom:529.146667pt;}
.y150_c01356{bottom:529.920000pt;}
.y155_c01356{bottom:530.693333pt;}
.y152_c01356{bottom:531.453333pt;}
.y156_c01356{bottom:532.986667pt;}
.y158_c01356{bottom:535.293333pt;}
.y157_c01356{bottom:538.373333pt;}
.y153_c01356{bottom:540.666667pt;}
.y148_c01356{bottom:542.213333pt;}
.y147_c01356{bottom:545.280000pt;}
.y14d_c01356{bottom:546.053333pt;}
.y14e_c01356{bottom:546.813333pt;}
.y149_c01356{bottom:547.586667pt;}
.y14a_c01356{bottom:548.346667pt;}
.y14b_c01356{bottom:549.120000pt;}
.y14c_c01356{bottom:549.893333pt;}
.y14f_c01356{bottom:552.186667pt;}
.y141_c01356{bottom:558.333333pt;}
.y140_c01356{bottom:559.866667pt;}
.y143_c01356{bottom:563.706667pt;}
.y144_c01356{bottom:565.253333pt;}
.y146_c01356{bottom:566.013333pt;}
.y142_c01356{bottom:566.786667pt;}
.y145_c01356{bottom:570.626667pt;}
.y139_c01356{bottom:572.933333pt;}
.y13a_c01356{bottom:573.693333pt;}
.y136_c01356{bottom:574.466667pt;}
.y137_c01356{bottom:576.773333pt;}
.y138_c01356{bottom:577.533333pt;}
.y13b_c01356{bottom:579.066667pt;}
.y13c_c01356{bottom:579.840000pt;}
.y13d_c01356{bottom:580.613333pt;}
.y13e_c01356{bottom:582.906667pt;}
.y13f_c01356{bottom:585.213333pt;}
.y131_c01356{bottom:587.520000pt;}
.y132_c01356{bottom:589.053333pt;}
.y133_c01356{bottom:589.826667pt;}
.y130_c01356{bottom:590.586667pt;}
.y134_c01356{bottom:592.133333pt;}
.y135_c01356{bottom:593.666667pt;}
.y12d_c01356{bottom:605.186667pt;}
.y12c_c01356{bottom:605.946667pt;}
.y12e_c01356{bottom:609.026667pt;}
.y12f_c01356{bottom:611.333333pt;}
.y123_c01356{bottom:616.706667pt;}
.y125_c01356{bottom:617.466667pt;}
.y124_c01356{bottom:619.013333pt;}
.y129_c01356{bottom:619.773333pt;}
.y12b_c01356{bottom:620.546667pt;}
.y126_c01356{bottom:621.306667pt;}
.y127_c01356{bottom:622.853333pt;}
.y128_c01356{bottom:623.613333pt;}
.y12a_c01356{bottom:624.386667pt;}
.y11c_c01356{bottom:633.600000pt;}
.y11d_c01356{bottom:634.373333pt;}
.y120_c01356{bottom:635.906667pt;}
.y11a_c01356{bottom:636.666667pt;}
.y11b_c01356{bottom:637.440000pt;}
.y121_c01356{bottom:638.973333pt;}
.y11f_c01356{bottom:639.746667pt;}
.y11e_c01356{bottom:640.506667pt;}
.y122_c01356{bottom:641.280000pt;}
.y115_c01356{bottom:648.186667pt;}
.y114_c01356{bottom:651.266667pt;}
.y119_c01356{bottom:652.026667pt;}
.y116_c01356{bottom:654.333333pt;}
.y117_c01356{bottom:655.106667pt;}
.y118_c01356{bottom:655.866667pt;}
.y110_c01356{bottom:664.320000pt;}
.y10f_c01356{bottom:665.093333pt;}
.y112_c01356{bottom:668.160000pt;}
.y113_c01356{bottom:670.466667pt;}
.y111_c01356{bottom:671.226667pt;}
.y10e_c01356{bottom:672.773333pt;}
.y10c_c01356{bottom:682.746667pt;}
.y108_c01356{bottom:683.520000pt;}
.y109_c01356{bottom:684.293333pt;}
.y10b_c01356{bottom:685.053333pt;}
.y10d_c01356{bottom:688.133333pt;}
.y10a_c01356{bottom:693.506667pt;}
.yff_c01356{bottom:698.106667pt;}
.y103_c01356{bottom:698.880000pt;}
.y100_c01356{bottom:699.653333pt;}
.y101_c01356{bottom:700.413333pt;}
.y102_c01356{bottom:701.186667pt;}
.y105_c01356{bottom:701.946667pt;}
.y104_c01356{bottom:702.720000pt;}
.y106_c01356{bottom:703.493333pt;}
.y107_c01356{bottom:704.253333pt;}
.yfe_c01356{bottom:705.026667pt;}
.yf6_c01356{bottom:710.400000pt;}
.yf7_c01356{bottom:712.706667pt;}
.yfc_c01356{bottom:713.466667pt;}
.yf8_c01356{bottom:714.240000pt;}
.yf9_c01356{bottom:715.013333pt;}
.yfa_c01356{bottom:715.773333pt;}
.yfb_c01356{bottom:718.080000pt;}
.yfd_c01356{bottom:718.853333pt;}
.yf1_c01356{bottom:728.066667pt;}
.yf4_c01356{bottom:729.600000pt;}
.yf0_c01356{bottom:730.373333pt;}
.yf2_c01356{bottom:731.906667pt;}
.yf5_c01356{bottom:734.973333pt;}
.yf3_c01356{bottom:737.280000pt;}
.ye6_c01356{bottom:741.893333pt;}
.ye5_c01356{bottom:744.186667pt;}
.yea_c01356{bottom:744.960000pt;}
.yeb_c01356{bottom:746.493333pt;}
.ye7_c01356{bottom:748.026667pt;}
.ye9_c01356{bottom:748.800000pt;}
.yec_c01356{bottom:749.573333pt;}
.yed_c01356{bottom:751.106667pt;}
.yee_c01356{bottom:751.866667pt;}
.yef_c01356{bottom:754.173333pt;}
.ye2_c01356{bottom:757.253333pt;}
.ye8_c01356{bottom:758.013333pt;}
.ye1_c01356{bottom:760.320000pt;}
.ye3_c01356{bottom:761.093333pt;}
.yde_c01356{bottom:763.386667pt;}
.ye4_c01356{bottom:769.533333pt;}
.yd9_c01356{bottom:772.613333pt;}
.ydb_c01356{bottom:774.146667pt;}
.ydd_c01356{bottom:775.680000pt;}
.yda_c01356{bottom:776.453333pt;}
.ydc_c01356{bottom:778.746667pt;}
.ydf_c01356{bottom:780.293333pt;}
.ye0_c01356{bottom:781.053333pt;}
.yd4_c01356{bottom:787.973333pt;}
.yd6_c01356{bottom:791.040000pt;}
.yd3_c01356{bottom:791.813333pt;}
.yd5_c01356{bottom:792.573333pt;}
.yd8_c01356{bottom:794.880000pt;}
.yd7_c01356{bottom:801.786667pt;}
.yce_c01356{bottom:803.333333pt;}
.yd0_c01356{bottom:804.866667pt;}
.yd1_c01356{bottom:806.400000pt;}
.ycf_c01356{bottom:807.933333pt;}
.yd2_c01356{bottom:813.306667pt;}
.ycc_c01356{bottom:818.693333pt;}
.y1fe_c01356{bottom:821.760000pt;}
.ycd_c01356{bottom:822.533333pt;}
.yc9_c01356{bottom:834.053333pt;}
.y1fd_c01356{bottom:836.346667pt;}
.ycb_c01356{bottom:837.120000pt;}
.y71_c01356{bottom:837.893333pt;}
.yca_c01356{bottom:838.653333pt;}
.y72_c01356{bottom:841.733333pt;}
.y73_c01356{bottom:842.493333pt;}
.y74_c01356{bottom:843.266667pt;}
.y75_c01356{bottom:844.026667pt;}
.yc4_c01356{bottom:849.413333pt;}
.yc5_c01356{bottom:850.173333pt;}
.yc7_c01356{bottom:850.946667pt;}
.y6e_c01356{bottom:852.480000pt;}
.y70_c01356{bottom:853.253333pt;}
.yc6_c01356{bottom:854.013333pt;}
.y6f_c01356{bottom:857.853333pt;}
.yc8_c01356{bottom:864.000000pt;}
.yc0_c01356{bottom:864.773333pt;}
.yc1_c01356{bottom:865.533333pt;}
.yc3_c01356{bottom:870.146667pt;}
.yc2_c01356{bottom:870.906667pt;}
.y69_c01356{bottom:871.680000pt;}
.y6a_c01356{bottom:872.453333pt;}
.y6b_c01356{bottom:873.213333pt;}
.y6c_c01356{bottom:874.746667pt;}
.y6d_c01356{bottom:876.293333pt;}
.ybd_c01356{bottom:880.133333pt;}
.ybf_c01356{bottom:881.666667pt;}
.y66_c01356{bottom:883.973333pt;}
.ybe_c01356{bottom:884.733333pt;}
.y65_c01356{bottom:885.506667pt;}
.y67_c01356{bottom:890.106667pt;}
.y68_c01356{bottom:891.653333pt;}
.ybb_c01356{bottom:897.786667pt;}
.ybc_c01356{bottom:899.333333pt;}
.y62_c01356{bottom:900.866667pt;}
.y60_c01356{bottom:902.400000pt;}
.y61_c01356{bottom:904.706667pt;}
.y64_c01356{bottom:906.240000pt;}
.y63_c01356{bottom:907.013333pt;}
.yb7_c01356{bottom:910.853333pt;}
.yb8_c01356{bottom:911.613333pt;}
.yb6_c01356{bottom:913.920000pt;}
.y5d_c01356{bottom:916.226667pt;}
.yb9_c01356{bottom:916.986667pt;}
.yba_c01356{bottom:917.760000pt;}
.y5c_c01356{bottom:919.293333pt;}
.y5f_c01356{bottom:921.600000pt;}
.y5e_c01356{bottom:925.440000pt;}
.yb4_c01356{bottom:930.813333pt;}
.y59_c01356{bottom:931.586667pt;}
.yb5_c01356{bottom:932.346667pt;}
.y5a_c01356{bottom:936.186667pt;}
.y5b_c01356{bottom:936.960000pt;}
.yae_c01356{bottom:942.333333pt;}
.yb0_c01356{bottom:943.866667pt;}
.yb1_c01356{bottom:946.946667pt;}
.yaf_c01356{bottom:947.706667pt;}
.yb3_c01356{bottom:948.480000pt;}
.y56_c01356{bottom:950.786667pt;}
.y58_c01356{bottom:952.320000pt;}
.yb2_c01356{bottom:956.933333pt;}
.yad_c01356{bottom:958.466667pt;}
.y57_c01356{bottom:960.773333pt;}
.y51_c01356{bottom:962.306667pt;}
.y55_c01356{bottom:964.613333pt;}
.y4f_c01356{bottom:966.146667pt;}
.y50_c01356{bottom:966.906667pt;}
.y52_c01356{bottom:967.680000pt;}
.y54_c01356{bottom:968.453333pt;}
.y53_c01356{bottom:969.986667pt;}
.yab_c01356{bottom:974.586667pt;}
.y4e_c01356{bottom:976.893333pt;}
.y4b_c01356{bottom:977.666667pt;}
.yac_c01356{bottom:978.426667pt;}
.y4c_c01356{bottom:982.266667pt;}
.y4d_c01356{bottom:983.813333pt;}
.yaa_c01356{bottom:988.413333pt;}
.ya7_c01356{bottom:990.720000pt;}
.y48_c01356{bottom:993.026667pt;}
.y4a_c01356{bottom:994.560000pt;}
.ya6_c01356{bottom:996.866667pt;}
.y49_c01356{bottom:997.626667pt;}
.ya8_c01356{bottom:998.400000pt;}
.ya9_c01356{bottom:1003.773333pt;}
.ya3_c01356{bottom:1006.853333pt;}
.y41_c01356{bottom:1008.386667pt;}
.ya4_c01356{bottom:1011.453333pt;}
.ya5_c01356{bottom:1012.226667pt;}
.y42_c01356{bottom:1012.986667pt;}
.y43_c01356{bottom:1013.760000pt;}
.y47_c01356{bottom:1014.533333pt;}
.y45_c01356{bottom:1015.293333pt;}
.y44_c01356{bottom:1016.826667pt;}
.ya0_c01356{bottom:1020.666667pt;}
.ya1_c01356{bottom:1022.973333pt;}
.y9f_c01356{bottom:1023.746667pt;}
.y46_c01356{bottom:1025.280000pt;}
.y40_c01356{bottom:1026.053333pt;}
.y3f_c01356{bottom:1028.346667pt;}
.ya2_c01356{bottom:1030.653333pt;}
.y9e_c01356{bottom:1036.800000pt;}
.y38_c01356{bottom:1043.706667pt;}
.y39_c01356{bottom:1044.480000pt;}
.y3a_c01356{bottom:1045.253333pt;}
.y3e_c01356{bottom:1046.786667pt;}
.y3c_c01356{bottom:1048.320000pt;}
.y3b_c01356{bottom:1049.093333pt;}
.y3d_c01356{bottom:1050.626667pt;}
.y9b_c01356{bottom:1054.466667pt;}
.y34_c01356{bottom:1056.773333pt;}
.y9d_c01356{bottom:1057.533333pt;}
.y9c_c01356{bottom:1058.306667pt;}
.y35_c01356{bottom:1059.840000pt;}
.y36_c01356{bottom:1060.613333pt;}
.y33_c01356{bottom:1061.373333pt;}
.y37_c01356{bottom:1062.146667pt;}
.y97_c01356{bottom:1069.053333pt;}
.y96_c01356{bottom:1070.586667pt;}
.y98_c01356{bottom:1072.133333pt;}
.y2f_c01356{bottom:1072.893333pt;}
.y99_c01356{bottom:1073.666667pt;}
.y9a_c01356{bottom:1074.426667pt;}
.y30_c01356{bottom:1075.973333pt;}
.y32_c01356{bottom:1079.813333pt;}
.y93_c01356{bottom:1082.880000pt;}
.y92_c01356{bottom:1083.653333pt;}
.y31_c01356{bottom:1084.413333pt;}
.y90_c01356{bottom:1085.946667pt;}
.y91_c01356{bottom:1086.720000pt;}
.y2a_c01356{bottom:1087.493333pt;}
.y94_c01356{bottom:1088.253333pt;}
.y95_c01356{bottom:1090.560000pt;}
.y29_c01356{bottom:1091.333333pt;}
.y2c_c01356{bottom:1092.866667pt;}
.y2b_c01356{bottom:1093.626667pt;}
.y2d_c01356{bottom:1095.173333pt;}
.y2e_c01356{bottom:1096.706667pt;}
.y8b_c01356{bottom:1101.306667pt;}
.y28_c01356{bottom:1102.080000pt;}
.y8c_c01356{bottom:1102.853333pt;}
.y8d_c01356{bottom:1103.613333pt;}
.y8e_c01356{bottom:1104.386667pt;}
.y8f_c01356{bottom:1105.146667pt;}
.y23_c01356{bottom:1105.920000pt;}
.y24_c01356{bottom:1107.453333pt;}
.y25_c01356{bottom:1108.226667pt;}
.y27_c01356{bottom:1108.986667pt;}
.y22_c01356{bottom:1111.293333pt;}
.y26_c01356{bottom:1112.826667pt;}
.y87_c01356{bottom:1114.373333pt;}
.y89_c01356{bottom:1115.133333pt;}
.y8a_c01356{bottom:1115.906667pt;}
.y86_c01356{bottom:1117.440000pt;}
.y88_c01356{bottom:1118.213333pt;}
.y1f_c01356{bottom:1120.506667pt;}
.y1e_c01356{bottom:1122.813333pt;}
.y20_c01356{bottom:1123.586667pt;}
.y21_c01356{bottom:1125.893333pt;}
.y84_c01356{bottom:1131.266667pt;}
.y85_c01356{bottom:1133.573333pt;}
.y1d_c01356{bottom:1135.106667pt;}
.y1b_c01356{bottom:1137.413333pt;}
.y1c_c01356{bottom:1138.173333pt;}
.y81_c01356{bottom:1145.853333pt;}
.y82_c01356{bottom:1146.626667pt;}
.y80_c01356{bottom:1147.386667pt;}
.y83_c01356{bottom:1148.933333pt;}
.y16_c01356{bottom:1150.466667pt;}
.y19_c01356{bottom:1153.533333pt;}
.y17_c01356{bottom:1154.306667pt;}
.y1a_c01356{bottom:1155.066667pt;}
.y18_c01356{bottom:1159.680000pt;}
.y7b_c01356{bottom:1160.453333pt;}
.y7c_c01356{bottom:1161.213333pt;}
.y7a_c01356{bottom:1161.986667pt;}
.y7e_c01356{bottom:1162.746667pt;}
.y15_c01356{bottom:1163.520000pt;}
.y7d_c01356{bottom:1167.360000pt;}
.y7f_c01356{bottom:1168.133333pt;}
.y12_c01356{bottom:1168.893333pt;}
.y14_c01356{bottom:1171.200000pt;}
.y77_c01356{bottom:1175.040000pt;}
.y78_c01356{bottom:1176.573333pt;}
.y13_c01356{bottom:1178.880000pt;}
.yd_c01356{bottom:1180.413333pt;}
.y79_c01356{bottom:1181.186667pt;}
.yc_c01356{bottom:1181.946667pt;}
.yf_c01356{bottom:1182.720000pt;}
.ye_c01356{bottom:1185.026667pt;}
.y11_c01356{bottom:1186.560000pt;}
.y10_c01356{bottom:1188.093333pt;}
.y76_c01356{bottom:1190.400000pt;}
.y7_c01356{bottom:1195.773333pt;}
.y9_c01356{bottom:1197.306667pt;}
.ya_c01356{bottom:1198.080000pt;}
.y8_c01356{bottom:1201.146667pt;}
.yb_c01356{bottom:1204.986667pt;}
.y2_c01356{bottom:1222.653333pt;}
.y1_c01356{bottom:1223.426667pt;}
.y4_c01356{bottom:1224.186667pt;}
.y3_c01356{bottom:1224.960000pt;}
.y5_c01356{bottom:1234.173333pt;}
.y6_c01356{bottom:1237.253333pt;}
.h7_c01356{height:2.764500pt;}
.h14_c01356{height:4.799479pt;}
.hc_c01356{height:5.519401pt;}
.h1b_c01356{height:8.303099pt;}
.hf_c01356{height:11.038802pt;}
.h6_c01356{height:13.822500pt;}
.h19_c01356{height:16.606198pt;}
.h20_c01356{height:19.341901pt;}
.h18_c01356{height:22.125599pt;}
.h17_c01356{height:24.861302pt;}
.h9_c01356{height:27.645000pt;}
.h1a_c01356{height:30.428698pt;}
.h15_c01356{height:33.164401pt;}
.h12_c01356{height:35.948099pt;}
.h11_c01356{height:38.683802pt;}
.he_c01356{height:41.467500pt;}
.h1e_c01356{height:41.777135pt;}
.h16_c01356{height:44.251198pt;}
.h2_c01356{height:46.986901pt;}
.h1f_c01356{height:47.654167pt;}
.h10_c01356{height:49.770599pt;}
.h3_c01356{height:52.506302pt;}
.h4_c01356{height:55.290000pt;}
.h5_c01356{height:58.073698pt;}
.h13_c01356{height:60.809401pt;}
.ha_c01356{height:63.593099pt;}
.hb_c01356{height:69.112500pt;}
.h1c_c01356{height:74.631901pt;}
.hd_c01356{height:80.151302pt;}
.h8_c01356{height:85.718698pt;}
.h1d_c01356{height:96.757500pt;}
.h1_c01356{height:1345.333333pt;}
.h0_c01356{height:1345.533333pt;}
.w0_c01356{width:963.066667pt;}
.w1_c01356{width:963.333333pt;}
.x0_c01356{left:0.000000pt;}
.x8b_c01356{left:173.573333pt;}
.xea_c01356{left:182.786667pt;}
.x8c_c01356{left:184.320000pt;}
.x8f_c01356{left:186.626667pt;}
.xc0_c01356{left:188.160000pt;}
.xfa_c01356{left:189.693333pt;}
.xeb_c01356{left:191.226667pt;}
.x5d_c01356{left:194.306667pt;}
.x60_c01356{left:195.840000pt;}
.xaa_c01356{left:197.373333pt;}
.xa6_c01356{left:198.906667pt;}
.xd9_c01356{left:200.453333pt;}
.xde_c01356{left:203.520000pt;}
.x83_c01356{left:206.586667pt;}
.x64_c01356{left:209.666667pt;}
.xf7_c01356{left:211.200000pt;}
.xae_c01356{left:212.733333pt;}
.xd1_c01356{left:214.266667pt;}
.x68_c01356{left:217.346667pt;}
.x75_c01356{left:219.653333pt;}
.xa3_c01356{left:221.186667pt;}
.xd2_c01356{left:224.253333pt;}
.x95_c01356{left:227.333333pt;}
.x6f_c01356{left:229.626667pt;}
.xc8_c01356{left:231.173333pt;}
.xb7_c01356{left:232.706667pt;}
.x87_c01356{left:235.013333pt;}
.x9d_c01356{left:238.080000pt;}
.x76_c01356{left:240.386667pt;}
.xdf_c01356{left:241.920000pt;}
.xab_c01356{left:243.453333pt;}
.x6c_c01356{left:244.986667pt;}
.xa7_c01356{left:247.293333pt;}
.x5e_c01356{left:250.373333pt;}
.xa0_c01356{left:252.666667pt;}
.x77_c01356{left:254.213333pt;}
.xe1_c01356{left:257.280000pt;}
.x61_c01356{left:260.346667pt;}
.xbd_c01356{left:262.653333pt;}
.xf8_c01356{left:264.186667pt;}
.xcf_c01356{left:265.733333pt;}
.x9e_c01356{left:268.026667pt;}
.x69_c01356{left:269.573333pt;}
.xbe_c01356{left:271.106667pt;}
.x91_c01356{left:272.640000pt;}
.x78_c01356{left:275.706667pt;}
.x62_c01356{left:281.853333pt;}
.x70_c01356{left:284.160000pt;}
.x88_c01356{left:286.466667pt;}
.x65_c01356{left:288.773333pt;}
.xca_c01356{left:291.066667pt;}
.x9b_c01356{left:292.613333pt;}
.x79_c01356{left:294.146667pt;}
.x8d_c01356{left:295.680000pt;}
.xba_c01356{left:297.213333pt;}
.x6d_c01356{left:298.746667pt;}
.x71_c01356{left:304.133333pt;}
.x7a_c01356{left:306.426667pt;}
.x7f_c01356{left:308.733333pt;}
.xa1_c01356{left:311.040000pt;}
.xe8_c01356{left:314.106667pt;}
.x84_c01356{left:315.653333pt;}
.xe3_c01356{left:318.720000pt;}
.x72_c01356{left:320.253333pt;}
.xa4_c01356{left:322.560000pt;}
.x9f_c01356{left:324.866667pt;}
.xb8_c01356{left:327.173333pt;}
.xd5_c01356{left:329.466667pt;}
.x6e_c01356{left:331.013333pt;}
.xcb_c01356{left:332.546667pt;}
.x9c_c01356{left:334.853333pt;}
.x98_c01356{left:337.920000pt;}
.xf9_c01356{left:339.453333pt;}
.x80_c01356{left:342.533333pt;}
.x7b_c01356{left:345.600000pt;}
.x96_c01356{left:347.133333pt;}
.x6a_c01356{left:349.440000pt;}
.xa2_c01356{left:351.746667pt;}
.x99_c01356{left:354.813333pt;}
.xf4_c01356{left:359.426667pt;}
.x66_c01356{left:363.266667pt;}
.x97_c01356{left:365.573333pt;}
.xe4_c01356{left:370.173333pt;}
.x92_c01356{left:371.706667pt;}
.x73_c01356{left:374.013333pt;}
.xe2_c01356{left:376.320000pt;}
.x67_c01356{left:379.386667pt;}
.x85_c01356{left:382.466667pt;}
.x89_c01356{left:385.533333pt;}
.x74_c01356{left:389.373333pt;}
.x81_c01356{left:393.986667pt;}
.xcc_c01356{left:396.293333pt;}
.x9a_c01356{left:397.826667pt;}
.x7c_c01356{left:399.360000pt;}
.x8a_c01356{left:401.666667pt;}
.x90_c01356{left:404.733333pt;}
.x93_c01356{left:406.266667pt;}
.x8e_c01356{left:408.573333pt;}
.x7d_c01356{left:410.880000pt;}
.x1_c01356{left:413.186667pt;}
.x82_c01356{left:415.493333pt;}
.xa5_c01356{left:418.560000pt;}
.xd6_c01356{left:422.400000pt;}
.x86_c01356{left:426.240000pt;}
.xc4_c01356{left:429.306667pt;}
.x2_c01356{left:431.613333pt;}
.xa8_c01356{left:433.920000pt;}
.xda_c01356{left:436.986667pt;}
.xb1_c01356{left:439.293333pt;}
.xc1_c01356{left:441.600000pt;}
.x7e_c01356{left:443.133333pt;}
.x5f_c01356{left:445.440000pt;}
.x63_c01356{left:446.973333pt;}
.xf3_c01356{left:449.280000pt;}
.x6b_c01356{left:450.813333pt;}
.x94_c01356{left:452.346667pt;}
.xa9_c01356{left:454.653333pt;}
.xac_c01356{left:456.186667pt;}
.x3_c01356{left:458.493333pt;}
.xdb_c01356{left:466.173333pt;}
.xe7_c01356{left:469.253333pt;}
.x28_c01356{left:473.853333pt;}
.x17_c01356{left:476.160000pt;}
.x23_c01356{left:478.466667pt;}
.xe_c01356{left:481.533333pt;}
.xaf_c01356{left:483.840000pt;}
.x51_c01356{left:485.373333pt;}
.x4_c01356{left:486.906667pt;}
.x30_c01356{left:488.453333pt;}
.x58_c01356{left:489.986667pt;}
.xb2_c01356{left:492.293333pt;}
.xe0_c01356{left:493.826667pt;}
.xf5_c01356{left:495.360000pt;}
.xee_c01356{left:496.893333pt;}
.x57_c01356{left:499.200000pt;}
.x2d_c01356{left:502.266667pt;}
.xfe_c01356{left:503.813333pt;}
.x5_c01356{left:507.653333pt;}
.x14_c01356{left:510.720000pt;}
.x35_c01356{left:512.253333pt;}
.x46_c01356{left:513.786667pt;}
.xbb_c01356{left:515.333333pt;}
.xdc_c01356{left:517.626667pt;}
.x1f_c01356{left:522.240000pt;}
.xc6_c01356{left:524.546667pt;}
.xc5_c01356{left:526.080000pt;}
.x36_c01356{left:528.386667pt;}
.xb3_c01356{left:529.920000pt;}
.xf_c01356{left:532.226667pt;}
.x18_c01356{left:533.760000pt;}
.xfb_c01356{left:535.293333pt;}
.x29_c01356{left:536.826667pt;}
.x4d_c01356{left:539.133333pt;}
.x41_c01356{left:541.440000pt;}
.x37_c01356{left:544.506667pt;}
.x47_c01356{left:546.813333pt;}
.xbc_c01356{left:548.346667pt;}
.xb9_c01356{left:552.186667pt;}
.x10_c01356{left:553.733333pt;}
.x4f_c01356{left:555.266667pt;}
.xec_c01356{left:556.800000pt;}
.x3c_c01356{left:558.333333pt;}
.x5a_c01356{left:560.640000pt;}
.x1d_c01356{left:562.173333pt;}
.x19_c01356{left:563.706667pt;}
.xbf_c01356{left:566.013333pt;}
.xc2_c01356{left:568.320000pt;}
.x8_c01356{left:569.853333pt;}
.xcd_c01356{left:572.160000pt;}
.x24_c01356{left:574.466667pt;}
.xef_c01356{left:576.773333pt;}
.x20_c01356{left:578.306667pt;}
.x31_c01356{left:579.840000pt;}
.x11_c01356{left:581.373333pt;}
.x52_c01356{left:585.213333pt;}
.x3d_c01356{left:588.293333pt;}
.xff_c01356{left:589.826667pt;}
.x48_c01356{left:591.360000pt;}
.x9_c01356{left:592.893333pt;}
.x32_c01356{left:594.426667pt;}
.xdd_c01356{left:595.973333pt;}
.x54_c01356{left:597.506667pt;}
.x101_c01356{left:599.040000pt;}
.xd3_c01356{left:600.573333pt;}
.x42_c01356{left:602.106667pt;}
.x25_c01356{left:603.653333pt;}
.xb4_c01356{left:606.720000pt;}
.xf6_c01356{left:608.253333pt;}
.x55_c01356{left:611.333333pt;}
.x44_c01356{left:613.626667pt;}
.x1a_c01356{left:615.173333pt;}
.xfc_c01356{left:616.706667pt;}
.xad_c01356{left:619.013333pt;}
.xf0_c01356{left:620.546667pt;}
.xe5_c01356{left:623.613333pt;}
.x2a_c01356{left:625.920000pt;}
.x5b_c01356{left:629.760000pt;}
.x2e_c01356{left:632.826667pt;}
.x15_c01356{left:634.373333pt;}
.x1b_c01356{left:637.440000pt;}
.xc9_c01356{left:639.746667pt;}
.x21_c01356{left:641.280000pt;}
.xa_c01356{left:645.120000pt;}
.xce_c01356{left:648.186667pt;}
.x12_c01356{left:650.493333pt;}
.xed_c01356{left:652.800000pt;}
.xd7_c01356{left:654.333333pt;}
.x100_c01356{left:655.866667pt;}
.x3e_c01356{left:659.706667pt;}
.x3b_c01356{left:662.013333pt;}
.x26_c01356{left:663.546667pt;}
.xb5_c01356{left:665.093333pt;}
.x56_c01356{left:666.626667pt;}
.x49_c01356{left:668.160000pt;}
.x1e_c01356{left:669.693333pt;}
.x1c_c01356{left:672.000000pt;}
.xc7_c01356{left:673.533333pt;}
.x50_c01356{left:675.066667pt;}
.x2b_c01356{left:676.613333pt;}
.x38_c01356{left:681.213333pt;}
.xfd_c01356{left:684.293333pt;}
.x33_c01356{left:685.826667pt;}
.x2f_c01356{left:687.360000pt;}
.xd8_c01356{left:689.666667pt;}
.x34_c01356{left:691.973333pt;}
.x4e_c01356{left:695.040000pt;}
.xe9_c01356{left:696.573333pt;}
.x43_c01356{left:698.106667pt;}
.x16_c01356{left:700.413333pt;}
.x3f_c01356{left:702.720000pt;}
.xb_c01356{left:705.786667pt;}
.xe6_c01356{left:707.333333pt;}
.x40_c01356{left:708.866667pt;}
.xc_c01356{left:710.400000pt;}
.x27_c01356{left:712.706667pt;}
.x4c_c01356{left:716.546667pt;}
.x13_c01356{left:718.853333pt;}
.x39_c01356{left:721.146667pt;}
.xf1_c01356{left:722.693333pt;}
.x59_c01356{left:724.226667pt;}
.xd4_c01356{left:725.760000pt;}
.xd_c01356{left:727.293333pt;}
.x4a_c01356{left:729.600000pt;}
.x22_c01356{left:732.666667pt;}
.x53_c01356{left:734.213333pt;}
.x2c_c01356{left:736.506667pt;}
.x5c_c01356{left:738.813333pt;}
.x3a_c01356{left:741.120000pt;}
.x45_c01356{left:742.653333pt;}
.xb6_c01356{left:744.960000pt;}
.xc3_c01356{left:748.800000pt;}
.xf2_c01356{left:755.706667pt;}
.xd0_c01356{left:758.013333pt;}
.x4b_c01356{left:759.546667pt;}
.xb0_c01356{left:761.093333pt;}
.x102_c01356{left:764.933333pt;}
.x105_c01356{left:798.720000pt;}
.x103_c01356{left:820.986667pt;}
.x104_c01356{left:837.120000pt;}
.x6_c01356{left:865.533333pt;}
.x7_c01356{left:870.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_27cfcd2a79145ff35b9307c4.woff2')format("woff");}.ff1_c01357{font-family:ff1_c01357;line-height:1.109863;font-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_c01357{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m82_c01357{transform:matrix(0.059575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.059575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.059575,0.000000,0.000000,0.250000,0,0);}
.md6_c01357{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.m61_c01357{transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);}
.mef_c01357{transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101850,0.000000,0.000000,0.250000,0,0);}
.md1_c01357{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m73_c01357{transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115525,0.000000,0.000000,0.250000,0,0);}
.m119_c01357{transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128875,0.000000,0.000000,0.250000,0,0);}
.mc5_c01357{transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128950,0.000000,0.000000,0.250000,0,0);}
.m103_c01357{transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);}
.m98_c01357{transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138625,0.000000,0.000000,0.250000,0,0);}
.mf4_c01357{transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140300,0.000000,0.000000,0.250000,0,0);}
.mb5_c01357{transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143025,0.000000,0.000000,0.250000,0,0);}
.mc_c01357{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb1_c01357{transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);}
.mf1_c01357{transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);}
.m10b_c01357{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.mfa_c01357{transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147975,0.000000,0.000000,0.250000,0,0);}
.m7b_c01357{transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148250,0.000000,0.000000,0.250000,0,0);}
.mc4_c01357{transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149350,0.000000,0.000000,0.250000,0,0);}
.m36_c01357{transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155225,0.000000,0.000000,0.250000,0,0);}
.mf2_c01357{transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159175,0.000000,0.000000,0.250000,0,0);}
.mdf_c01357{transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161425,0.000000,0.000000,0.250000,0,0);}
.m104_c01357{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m16_c01357{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.mc8_c01357{transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166600,0.000000,0.000000,0.250000,0,0);}
.m94_c01357{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.md2_c01357{transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166975,0.000000,0.000000,0.250000,0,0);}
.m24_c01357{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m97_c01357{transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169100,0.000000,0.000000,0.250000,0,0);}
.mda_c01357{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m55_c01357{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);}
.ma2_c01357{transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170275,0.000000,0.000000,0.250000,0,0);}
.mde_c01357{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);}
.m81_c01357{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);}
.m22_c01357{transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);}
.m4e_c01357{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);}
.mf6_c01357{transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172400,0.000000,0.000000,0.250000,0,0);}
.m118_c01357{transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172625,0.000000,0.000000,0.250000,0,0);}
.m8f_c01357{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);}
.mf7_c01357{transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174200,0.000000,0.000000,0.250000,0,0);}
.m71_c01357{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);}
.me7_c01357{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.m57_c01357{transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180150,0.000000,0.000000,0.250000,0,0);}
.mc3_c01357{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m79_c01357{transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180725,0.000000,0.000000,0.250000,0,0);}
.m114_c01357{transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180775,0.000000,0.000000,0.250000,0,0);}
.mf8_c01357{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.mb8_c01357{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);}
.m76_c01357{transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181300,0.000000,0.000000,0.250000,0,0);}
.mb6_c01357{transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183450,0.000000,0.000000,0.250000,0,0);}
.mab_c01357{transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184125,0.000000,0.000000,0.250000,0,0);}
.m7d_c01357{transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184150,0.000000,0.000000,0.250000,0,0);}
.me6_c01357{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);}
.mfd_c01357{transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186975,0.000000,0.000000,0.250000,0,0);}
.m84_c01357{transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188000,0.000000,0.000000,0.250000,0,0);}
.me4_c01357{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);}
.m117_c01357{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m2c_c01357{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m77_c01357{transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191800,0.000000,0.000000,0.250000,0,0);}
.m78_c01357{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);}
.m88_c01357{transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192325,0.000000,0.000000,0.250000,0,0);}
.mdd_c01357{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m2f_c01357{transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192925,0.000000,0.000000,0.250000,0,0);}
.m72_c01357{transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193200,0.000000,0.000000,0.250000,0,0);}
.m58_c01357{transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193350,0.000000,0.000000,0.250000,0,0);}
.m52_c01357{transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193825,0.000000,0.000000,0.250000,0,0);}
.mb9_c01357{transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194475,0.000000,0.000000,0.250000,0,0);}
.m43_c01357{transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194600,0.000000,0.000000,0.250000,0,0);}
.mdc_c01357{transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195250,0.000000,0.000000,0.250000,0,0);}
.md8_c01357{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.m59_c01357{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);}
.mc1_c01357{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);}
.mc7_c01357{transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196325,0.000000,0.000000,0.250000,0,0);}
.m1e_c01357{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);}
.m7f_c01357{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.md9_c01357{transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199825,0.000000,0.000000,0.250000,0,0);}
.m95_c01357{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);}
.m9d_c01357{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);}
.mae_c01357{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);}
.m90_c01357{transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202250,0.000000,0.000000,0.250000,0,0);}
.me0_c01357{transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202625,0.000000,0.000000,0.250000,0,0);}
.m2e_c01357{transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202650,0.000000,0.000000,0.250000,0,0);}
.m3e_c01357{transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202750,0.000000,0.000000,0.250000,0,0);}
.mb4_c01357{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);}
.m2_c01357{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);}
.m44_c01357{transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204100,0.000000,0.000000,0.250000,0,0);}
.m10f_c01357{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);}
.me2_c01357{transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204450,0.000000,0.000000,0.250000,0,0);}
.mbf_c01357{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m4d_c01357{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.ma4_c01357{transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);}
.m12_c01357{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.ma0_c01357{transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205375,0.000000,0.000000,0.250000,0,0);}
.mcb_c01357{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m109_c01357{transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205975,0.000000,0.000000,0.250000,0,0);}
.m6b_c01357{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.mfc_c01357{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);}
.mcd_c01357{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.m28_c01357{transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206675,0.000000,0.000000,0.250000,0,0);}
.mea_c01357{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m115_c01357{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m116_c01357{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);}
.m54_c01357{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);}
.m4_c01357{transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209625,0.000000,0.000000,0.250000,0,0);}
.mb7_c01357{transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210450,0.000000,0.000000,0.250000,0,0);}
.m9c_c01357{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);}
.m48_c01357{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);}
.m99_c01357{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);}
.m10a_c01357{transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213350,0.000000,0.000000,0.250000,0,0);}
.m1_c01357{transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213375,0.000000,0.000000,0.250000,0,0);}
.m6d_c01357{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);}
.m6f_c01357{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m56_c01357{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);}
.md5_c01357{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);}
.m5b_c01357{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.mbc_c01357{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);}
.m1f_c01357{transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215750,0.000000,0.000000,0.250000,0,0);}
.me8_c01357{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);}
.m29_c01357{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);}
.m101_c01357{transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217225,0.000000,0.000000,0.250000,0,0);}
.md4_c01357{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.m42_c01357{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);}
.m85_c01357{transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218150,0.000000,0.000000,0.250000,0,0);}
.m70_c01357{transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218250,0.000000,0.000000,0.250000,0,0);}
.m110_c01357{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);}
.m4f_c01357{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);}
.m9b_c01357{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);}
.mdb_c01357{transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219475,0.000000,0.000000,0.250000,0,0);}
.ma3_c01357{transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219550,0.000000,0.000000,0.250000,0,0);}
.md3_c01357{transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219825,0.000000,0.000000,0.250000,0,0);}
.m20_c01357{transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219900,0.000000,0.000000,0.250000,0,0);}
.m21_c01357{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m8_c01357{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m45_c01357{transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221525,0.000000,0.000000,0.250000,0,0);}
.m83_c01357{transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221625,0.000000,0.000000,0.250000,0,0);}
.m87_c01357{transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221775,0.000000,0.000000,0.250000,0,0);}
.mca_c01357{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);}
.mc0_c01357{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);}
.mf0_c01357{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);}
.m8a_c01357{transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224200,0.000000,0.000000,0.250000,0,0);}
.m26_c01357{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);}
.m3_c01357{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1a_c01357{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);}
.me3_c01357{transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225025,0.000000,0.000000,0.250000,0,0);}
.md0_c01357{transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225050,0.000000,0.000000,0.250000,0,0);}
.mb0_c01357{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);}
.mf3_c01357{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);}
.mfe_c01357{transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225825,0.000000,0.000000,0.250000,0,0);}
.m6e_c01357{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);}
.mac_c01357{transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226850,0.000000,0.000000,0.250000,0,0);}
.m64_c01357{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);}
.m112_c01357{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);}
.ma5_c01357{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);}
.m69_c01357{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);}
.md7_c01357{transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);}
.mec_c01357{transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228850,0.000000,0.000000,0.250000,0,0);}
.mbb_c01357{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);}
.m51_c01357{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);}
.mff_c01357{transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229550,0.000000,0.000000,0.250000,0,0);}
.m86_c01357{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);}
.mf5_c01357{transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230650,0.000000,0.000000,0.250000,0,0);}
.mcf_c01357{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);}
.m46_c01357{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);}
.m5f_c01357{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);}
.m6c_c01357{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);}
.m25_c01357{transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232875,0.000000,0.000000,0.250000,0,0);}
.meb_c01357{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);}
.m9a_c01357{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);}
.me9_c01357{transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237100,0.000000,0.000000,0.250000,0,0);}
.maf_c01357{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);}
.m32_c01357{transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238900,0.000000,0.000000,0.250000,0,0);}
.m4c_c01357{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.mee_c01357{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);}
.m10d_c01357{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);}
.m107_c01357{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.med_c01357{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);}
.m105_c01357{transform:matrix(0.241400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241400,0.000000,0.000000,0.250000,0,0);}
.m1c_c01357{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.me1_c01357{transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242325,0.000000,0.000000,0.250000,0,0);}
.ma9_c01357{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);}
.mc2_c01357{transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243625,0.000000,0.000000,0.250000,0,0);}
.m4b_c01357{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.mba_c01357{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);}
.mc9_c01357{transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244975,0.000000,0.000000,0.250000,0,0);}
.m9_c01357{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);}
.m75_c01357{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);}
.mce_c01357{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);}
.m2d_c01357{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);}
.maa_c01357{transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246575,0.000000,0.000000,0.250000,0,0);}
.ma8_c01357{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m6a_c01357{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);}
.ma6_c01357{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);}
.me5_c01357{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);}
.m41_c01357{transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249575,0.000000,0.000000,0.250000,0,0);}
.mb2_c01357{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m47_c01357{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);}
.m50_c01357{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m60_c01357{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);}
.m5_c01357{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);}
.m11_c01357{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);}
.m5a_c01357{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);}
.m37_c01357{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m17_c01357{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01357{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01357{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);}
.m30_c01357{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m10_c01357{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);}
.m3a_c01357{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_c01357{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01357{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);}
.m18_c01357{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01357{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01357{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);}
.m7_c01357{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8d_c01357{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);}
.me_c01357{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);}
.m13_c01357{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01357{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m80_c01357{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);}
.m62_c01357{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m65_c01357{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m27_c01357{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);}
.md_c01357{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m39_c01357{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m23_c01357{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m34_c01357{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m89_c01357{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01357{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m63_c01357{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mf_c01357{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);}
.m106_c01357{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10c_c01357{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m49_c01357{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01357{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01357{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);}
.m31_c01357{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);}
.m68_c01357{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mc6_c01357{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);}
.m14_c01357{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m102_c01357{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m40_c01357{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5e_c01357{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01357{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);}
.m67_c01357{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7e_c01357{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m53_c01357{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mfb_c01357{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m91_c01357{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.ma7_c01357{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.ma_c01357{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m8b_c01357{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m33_c01357{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m100_c01357{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mbd_c01357{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m6_c01357{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m10e_c01357{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m66_c01357{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m74_c01357{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);}
.ma1_c01357{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m92_c01357{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m19_c01357{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m96_c01357{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m8e_c01357{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mb3_c01357{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m0_c01357{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m7a_c01357{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m15_c01357{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m11a_c01357{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.mcc_c01357{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01357{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m108_c01357{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mf9_c01357{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);}
.mad_c01357{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m9f_c01357{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m113_c01357{transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.962500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01357{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m93_c01357{transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.125000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01357{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m111_c01357{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m11b_c01357{transform:matrix(1.450000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.450000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.450000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01357{transform:matrix(2.945000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.945000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.945000,0.000000,0.000000,0.250000,0,0);}
.mbe_c01357{transform:matrix(4.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.175000,0.000000,0.000000,0.250000,0,0);}
.m3c_c01357{transform:matrix(8.030000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(8.030000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(8.030000,0.000000,0.000000,0.250000,0,0);}
.v5_c01357{vertical-align:-20.760000px;}
.v1_c01357{vertical-align:-6.900000px;}
.v4_c01357{vertical-align:-3.480000px;}
.v0_c01357{vertical-align:0.000000px;}
.v3_c01357{vertical-align:3.480000px;}
.v2_c01357{vertical-align:13.800000px;}
.ls3_c01357{letter-spacing:0.000000px;}
.ls2_c01357{letter-spacing:75.148740px;}
.ls1_c01357{letter-spacing:142.296000px;}
.ls0_c01357{letter-spacing:250.692000px;}
.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;}
}
.ws4_c01357{word-spacing:-18.027720px;}
.ws2_c01357{word-spacing:-10.295520px;}
.ws1_c01357{word-spacing:-9.547260px;}
.ws0_c01357{word-spacing:-7.625940px;}
.ws3_c01357{word-spacing:-3.127440px;}
.ws5_c01357{word-spacing:0.000000px;}
.fc0_c01357{color:transparent;}
.fs5_c01357{font-size:3.456000px;}
.fs13_c01357{font-size:6.000000px;}
.fs8_c01357{font-size:6.900000px;}
.fsd_c01357{font-size:10.380000px;}
.fse_c01357{font-size:13.800000px;}
.fs0_c01357{font-size:17.280000px;}
.fs19_c01357{font-size:20.760000px;}
.fs10_c01357{font-size:24.180000px;}
.fsa_c01357{font-size:27.660000px;}
.fsf_c01357{font-size:31.080000px;}
.fs14_c01357{font-size:34.560000px;}
.fsc_c01357{font-size:38.040000px;}
.fs9_c01357{font-size:41.460000px;}
.fs6_c01357{font-size:44.940000px;}
.fsb_c01357{font-size:48.360000px;}
.fs2_c01357{font-size:51.840000px;}
.fs4_c01357{font-size:55.320000px;}
.fs7_c01357{font-size:58.740000px;}
.fs15_c01357{font-size:62.220000px;}
.fs11_c01357{font-size:65.640000px;}
.fs1_c01357{font-size:69.120000px;}
.fs3_c01357{font-size:72.600000px;}
.fs17_c01357{font-size:76.020000px;}
.fs16_c01357{font-size:79.500000px;}
.fs12_c01357{font-size:82.920000px;}
.fs1b_c01357{font-size:86.400000px;}
.fs1c_c01357{font-size:93.300000px;}
.fs18_c01357{font-size:120.960000px;}
.fs1a_c01357{font-size:131.340000px;}
.y0_c01357{bottom:0.000000px;}
.y1bd_c01357{bottom:181.440000px;}
.y1bc_c01357{bottom:184.035000px;}
.y1b6_c01357{bottom:184.890000px;}
.y1b5_c01357{bottom:190.950000px;}
.y1b7_c01357{bottom:191.805000px;}
.y1ba_c01357{bottom:192.675000px;}
.y1b9_c01357{bottom:195.270000px;}
.y1bb_c01357{bottom:199.590000px;}
.y1b4_c01357{bottom:206.490000px;}
.y1b3_c01357{bottom:207.360000px;}
.y1b8_c01357{bottom:208.230000px;}
.y1b0_c01357{bottom:211.680000px;}
.y1b1_c01357{bottom:214.275000px;}
.y1b2_c01357{bottom:215.130000px;}
.y1af_c01357{bottom:225.510000px;}
.y1ad_c01357{bottom:228.090000px;}
.y1ae_c01357{bottom:229.830000px;}
.y1ac_c01357{bottom:231.555000px;}
.y1ab_c01357{bottom:234.150000px;}
.y1aa_c01357{bottom:244.515000px;}
.y1a8_c01357{bottom:247.110000px;}
.y1a9_c01357{bottom:247.965000px;}
.y1a6_c01357{bottom:251.430000px;}
.y1a7_c01357{bottom:253.155000px;}
.y1a3_c01357{bottom:261.795000px;}
.y1a4_c01357{bottom:262.650000px;}
.y1a5_c01357{bottom:265.245000px;}
.y1a2_c01357{bottom:267.840000px;}
.y1a0_c01357{bottom:268.710000px;}
.y1a1_c01357{bottom:270.435000px;}
.y19f_c01357{bottom:279.075000px;}
.y19e_c01357{bottom:279.930000px;}
.y19b_c01357{bottom:282.525000px;}
.y19c_c01357{bottom:284.250000px;}
.y19a_c01357{bottom:286.845000px;}
.y19d_c01357{bottom:295.485000px;}
.y196_c01357{bottom:298.950000px;}
.y199_c01357{bottom:299.805000px;}
.y198_c01357{bottom:300.675000px;}
.y197_c01357{bottom:301.530000px;}
.y195_c01357{bottom:304.125000px;}
.y193_c01357{bottom:312.765000px;}
.y192_c01357{bottom:315.360000px;}
.y191_c01357{bottom:317.085000px;}
.y194_c01357{bottom:318.810000px;}
.y190_c01357{bottom:319.680000px;}
.y18f_c01357{bottom:320.550000px;}
.y18e_c01357{bottom:326.595000px;}
.y189_c01357{bottom:333.510000px;}
.y18d_c01357{bottom:335.235000px;}
.y18b_c01357{bottom:336.090000px;}
.y18c_c01357{bottom:336.960000px;}
.y18a_c01357{bottom:337.830000px;}
.y188_c01357{bottom:338.685000px;}
.y187_c01357{bottom:344.730000px;}
.y184_c01357{bottom:349.050000px;}
.y181_c01357{bottom:351.645000px;}
.y183_c01357{bottom:352.515000px;}
.y186_c01357{bottom:353.370000px;}
.y182_c01357{bottom:355.110000px;}
.y185_c01357{bottom:355.965000px;}
.y17f_c01357{bottom:364.605000px;}
.y17e_c01357{bottom:368.070000px;}
.y17c_c01357{bottom:368.925000px;}
.y17d_c01357{bottom:369.795000px;}
.y180_c01357{bottom:372.390000px;}
.y178_c01357{bottom:387.075000px;}
.y177_c01357{bottom:388.800000px;}
.y179_c01357{bottom:389.670000px;}
.y17a_c01357{bottom:392.250000px;}
.y17b_c01357{bottom:398.310000px;}
.y175_c01357{bottom:401.760000px;}
.y171_c01357{bottom:402.630000px;}
.y173_c01357{bottom:403.485000px;}
.y176_c01357{bottom:404.355000px;}
.y174_c01357{bottom:406.080000px;}
.y172_c01357{bottom:406.950000px;}
.y16e_c01357{bottom:420.765000px;}
.y16c_c01357{bottom:421.635000px;}
.y16b_c01357{bottom:422.490000px;}
.y16f_c01357{bottom:423.360000px;}
.y16d_c01357{bottom:424.230000px;}
.y169_c01357{bottom:425.085000px;}
.y16a_c01357{bottom:425.955000px;}
.y170_c01357{bottom:435.450000px;}
.y168_c01357{bottom:438.915000px;}
.y165_c01357{bottom:442.365000px;}
.y166_c01357{bottom:443.235000px;}
.y164_c01357{bottom:444.090000px;}
.y167_c01357{bottom:449.280000px;}
.y163_c01357{bottom:455.325000px;}
.y162_c01357{bottom:459.645000px;}
.y161_c01357{bottom:476.070000px;}
.y15f_c01357{bottom:476.925000px;}
.y160_c01357{bottom:478.650000px;}
.y15e_c01357{bottom:489.030000px;}
.y15d_c01357{bottom:494.205000px;}
.y15c_c01357{bottom:495.075000px;}
.y15a_c01357{bottom:509.760000px;}
.y15b_c01357{bottom:515.805000px;}
.y159_c01357{bottom:520.995000px;}
.y157_c01357{bottom:521.850000px;}
.y158_c01357{bottom:523.590000px;}
.y155_c01357{bottom:524.445000px;}
.y156_c01357{bottom:528.765000px;}
.y153_c01357{bottom:543.450000px;}
.y152_c01357{bottom:544.320000px;}
.y150_c01357{bottom:545.190000px;}
.y151_c01357{bottom:547.770000px;}
.y154_c01357{bottom:554.685000px;}
.y14c_c01357{bottom:556.410000px;}
.y14d_c01357{bottom:557.280000px;}
.y14b_c01357{bottom:559.005000px;}
.y14e_c01357{bottom:560.730000px;}
.y14f_c01357{bottom:563.325000px;}
.y14a_c01357{bottom:565.920000px;}
.y149_c01357{bottom:573.690000px;}
.y146_c01357{bottom:576.285000px;}
.y144_c01357{bottom:578.880000px;}
.y145_c01357{bottom:581.475000px;}
.y147_c01357{bottom:583.200000px;}
.y148_c01357{bottom:584.925000px;}
.y143_c01357{bottom:591.840000px;}
.y141_c01357{bottom:593.565000px;}
.y140_c01357{bottom:594.435000px;}
.y13f_c01357{bottom:595.290000px;}
.y13e_c01357{bottom:609.120000px;}
.y13d_c01357{bottom:609.990000px;}
.y142_c01357{bottom:610.845000px;}
.y13c_c01357{bottom:613.440000px;}
.y13b_c01357{bottom:614.310000px;}
.y13a_c01357{bottom:616.035000px;}
.y139_c01357{bottom:616.890000px;}
.y138_c01357{bottom:630.720000px;}
.y135_c01357{bottom:631.590000px;}
.y136_c01357{bottom:634.170000px;}
.y137_c01357{bottom:641.955000px;}
.y132_c01357{bottom:643.680000px;}
.y134_c01357{bottom:646.275000px;}
.y133_c01357{bottom:648.870000px;}
.y131_c01357{bottom:650.595000px;}
.y130_c01357{bottom:651.450000px;}
.y12e_c01357{bottom:661.830000px;}
.y12d_c01357{bottom:662.685000px;}
.y12f_c01357{bottom:663.555000px;}
.y12c_c01357{bottom:667.875000px;}
.y12b_c01357{bottom:668.730000px;}
.y129_c01357{bottom:679.965000px;}
.y125_c01357{bottom:681.690000px;}
.y12a_c01357{bottom:682.560000px;}
.y126_c01357{bottom:684.285000px;}
.y127_c01357{bottom:685.155000px;}
.y124_c01357{bottom:686.010000px;}
.y128_c01357{bottom:695.520000px;}
.y122_c01357{bottom:697.245000px;}
.y123_c01357{bottom:699.840000px;}
.y120_c01357{bottom:700.710000px;}
.y121_c01357{bottom:704.160000px;}
.y11f_c01357{bottom:711.930000px;}
.y11e_c01357{bottom:712.800000px;}
.y11c_c01357{bottom:715.395000px;}
.y11a_c01357{bottom:716.250000px;}
.y11b_c01357{bottom:718.845000px;}
.y11d_c01357{bottom:719.715000px;}
.y119_c01357{bottom:720.570000px;}
.y118_c01357{bottom:731.805000px;}
.y114_c01357{bottom:735.270000px;}
.y113_c01357{bottom:736.125000px;}
.y116_c01357{bottom:736.995000px;}
.y117_c01357{bottom:738.720000px;}
.y115_c01357{bottom:743.040000px;}
.y112_c01357{bottom:748.230000px;}
.y110_c01357{bottom:749.085000px;}
.y10d_c01357{bottom:749.955000px;}
.y10f_c01357{bottom:751.680000px;}
.y111_c01357{bottom:752.550000px;}
.y10b_c01357{bottom:754.275000px;}
.y10c_c01357{bottom:756.000000px;}
.y10e_c01357{bottom:762.915000px;}
.y10a_c01357{bottom:765.510000px;}
.y109_c01357{bottom:766.365000px;}
.y108_c01357{bottom:767.235000px;}
.y107_c01357{bottom:772.410000px;}
.y105_c01357{bottom:783.645000px;}
.y106_c01357{bottom:784.515000px;}
.y102_c01357{bottom:786.240000px;}
.y103_c01357{bottom:788.835000px;}
.y104_c01357{bottom:793.155000px;}
.y101_c01357{bottom:801.795000px;}
.y100_c01357{bottom:802.650000px;}
.yfe_c01357{bottom:806.115000px;}
.yff_c01357{bottom:811.290000px;}
.yfd_c01357{bottom:817.350000px;}
.yfb_c01357{bottom:819.075000px;}
.yfc_c01357{bottom:823.395000px;}
.yfa_c01357{bottom:824.250000px;}
.yf4_c01357{bottom:825.120000px;}
.yf8_c01357{bottom:836.355000px;}
.yf6_c01357{bottom:837.210000px;}
.yf7_c01357{bottom:838.950000px;}
.yf9_c01357{bottom:839.805000px;}
.yf5_c01357{bottom:842.400000px;}
.y8f_c01357{bottom:876.090000px;}
.y8c_c01357{bottom:876.960000px;}
.y8d_c01357{bottom:878.685000px;}
.y8a_c01357{bottom:881.280000px;}
.y8b_c01357{bottom:883.005000px;}
.y89_c01357{bottom:891.645000px;}
.y8e_c01357{bottom:894.240000px;}
.y87_c01357{bottom:896.835000px;}
.y84_c01357{bottom:898.560000px;}
.y86_c01357{bottom:899.430000px;}
.y85_c01357{bottom:900.285000px;}
.yef_c01357{bottom:906.330000px;}
.y88_c01357{bottom:908.070000px;}
.yf0_c01357{bottom:908.925000px;}
.yed_c01357{bottom:910.650000px;}
.y83_c01357{bottom:911.520000px;}
.y82_c01357{bottom:912.390000px;}
.yec_c01357{bottom:913.245000px;}
.y81_c01357{bottom:914.970000px;}
.yee_c01357{bottom:916.710000px;}
.y80_c01357{bottom:917.565000px;}
.y90_c01357{bottom:923.610000px;}
.yea_c01357{bottom:924.480000px;}
.yeb_c01357{bottom:927.075000px;}
.y7d_c01357{bottom:929.670000px;}
.y7e_c01357{bottom:930.525000px;}
.y7c_c01357{bottom:931.395000px;}
.y7f_c01357{bottom:933.120000px;}
.ye9_c01357{bottom:940.890000px;}
.y1_c01357{bottom:942.630000px;}
.ye8_c01357{bottom:943.485000px;}
.y7a_c01357{bottom:946.080000px;}
.y79_c01357{bottom:946.950000px;}
.y7b_c01357{bottom:950.400000px;}
.ye4_c01357{bottom:959.040000px;}
.ye7_c01357{bottom:961.635000px;}
.ye5_c01357{bottom:962.490000px;}
.ye6_c01357{bottom:963.360000px;}
.y78_c01357{bottom:965.085000px;}
.y76_c01357{bottom:966.810000px;}
.y77_c01357{bottom:968.550000px;}
.y75_c01357{bottom:969.405000px;}
.ye3_c01357{bottom:974.595000px;}
.ye2_c01357{bottom:975.450000px;}
.ye1_c01357{bottom:980.640000px;}
.ye0_c01357{bottom:981.510000px;}
.y74_c01357{bottom:983.235000px;}
.y73_c01357{bottom:985.830000px;}
.y72_c01357{bottom:986.685000px;}
.yde_c01357{bottom:992.730000px;}
.ydd_c01357{bottom:994.470000px;}
.ydf_c01357{bottom:996.195000px;}
.y71_c01357{bottom:998.790000px;}
.ydc_c01357{bottom:999.645000px;}
.y70_c01357{bottom:1002.240000px;}
.y6f_c01357{bottom:1003.110000px;}
.y6d_c01357{bottom:1003.965000px;}
.y6e_c01357{bottom:1004.835000px;}
.ydb_c01357{bottom:1009.155000px;}
.yd8_c01357{bottom:1010.010000px;}
.yda_c01357{bottom:1010.880000px;}
.yd9_c01357{bottom:1014.330000px;}
.yd7_c01357{bottom:1015.200000px;}
.y6b_c01357{bottom:1016.925000px;}
.y67_c01357{bottom:1017.795000px;}
.y6a_c01357{bottom:1018.650000px;}
.y69_c01357{bottom:1019.520000px;}
.y6c_c01357{bottom:1020.390000px;}
.y68_c01357{bottom:1021.245000px;}
.yd6_c01357{bottom:1027.290000px;}
.yd5_c01357{bottom:1028.160000px;}
.yd4_c01357{bottom:1033.350000px;}
.y66_c01357{bottom:1034.205000px;}
.yd3_c01357{bottom:1035.075000px;}
.y62_c01357{bottom:1035.930000px;}
.y65_c01357{bottom:1036.800000px;}
.y64_c01357{bottom:1038.525000px;}
.y63_c01357{bottom:1039.395000px;}
.yd2_c01357{bottom:1042.845000px;}
.yd1_c01357{bottom:1045.440000px;}
.yd0_c01357{bottom:1049.760000px;}
.y5f_c01357{bottom:1050.630000px;}
.yce_c01357{bottom:1051.485000px;}
.y5c_c01357{bottom:1054.080000px;}
.y61_c01357{bottom:1054.950000px;}
.y5e_c01357{bottom:1055.805000px;}
.y5d_c01357{bottom:1056.675000px;}
.y60_c01357{bottom:1057.530000px;}
.ycf_c01357{bottom:1058.400000px;}
.ycb_c01357{bottom:1062.720000px;}
.ycd_c01357{bottom:1064.445000px;}
.yca_c01357{bottom:1065.315000px;}
.y5a_c01357{bottom:1067.910000px;}
.y59_c01357{bottom:1068.765000px;}
.y57_c01357{bottom:1069.635000px;}
.y55_c01357{bottom:1070.490000px;}
.y58_c01357{bottom:1071.360000px;}
.y5b_c01357{bottom:1072.230000px;}
.y56_c01357{bottom:1073.085000px;}
.ycc_c01357{bottom:1074.810000px;}
.yc7_c01357{bottom:1079.130000px;}
.yc6_c01357{bottom:1080.870000px;}
.yc9_c01357{bottom:1082.595000px;}
.yc8_c01357{bottom:1083.450000px;}
.y54_c01357{bottom:1084.320000px;}
.y52_c01357{bottom:1085.190000px;}
.yc5_c01357{bottom:1086.045000px;}
.y53_c01357{bottom:1086.915000px;}
.y50_c01357{bottom:1087.770000px;}
.y51_c01357{bottom:1089.510000px;}
.yc4_c01357{bottom:1096.410000px;}
.yc1_c01357{bottom:1099.875000px;}
.yc2_c01357{bottom:1101.600000px;}
.yc3_c01357{bottom:1102.470000px;}
.y4e_c01357{bottom:1103.325000px;}
.y4f_c01357{bottom:1104.195000px;}
.y4b_c01357{bottom:1105.920000px;}
.y4d_c01357{bottom:1107.645000px;}
.y4c_c01357{bottom:1108.515000px;}
.ybf_c01357{bottom:1113.690000px;}
.ybe_c01357{bottom:1114.560000px;}
.ybd_c01357{bottom:1115.430000px;}
.yc0_c01357{bottom:1116.285000px;}
.ybc_c01357{bottom:1118.880000px;}
.ybb_c01357{bottom:1119.750000px;}
.yba_c01357{bottom:1121.475000px;}
.y4a_c01357{bottom:1122.330000px;}
.yb9_c01357{bottom:1123.200000px;}
.y49_c01357{bottom:1124.925000px;}
.y48_c01357{bottom:1125.795000px;}
.yb5_c01357{bottom:1132.710000px;}
.yb6_c01357{bottom:1135.290000px;}
.yb8_c01357{bottom:1136.160000px;}
.yb7_c01357{bottom:1137.030000px;}
.y47_c01357{bottom:1137.885000px;}
.y46_c01357{bottom:1140.480000px;}
.yb4_c01357{bottom:1149.990000px;}
.yb2_c01357{bottom:1151.715000px;}
.yb3_c01357{bottom:1152.570000px;}
.y45_c01357{bottom:1156.035000px;}
.yb0_c01357{bottom:1156.890000px;}
.y42_c01357{bottom:1157.760000px;}
.y44_c01357{bottom:1160.355000px;}
.y43_c01357{bottom:1161.210000px;}
.yb1_c01357{bottom:1164.675000px;}
.yad_c01357{bottom:1168.995000px;}
.yaf_c01357{bottom:1170.720000px;}
.yae_c01357{bottom:1172.445000px;}
.y40_c01357{bottom:1174.170000px;}
.y3f_c01357{bottom:1175.040000px;}
.y3d_c01357{bottom:1175.910000px;}
.y41_c01357{bottom:1177.635000px;}
.y3e_c01357{bottom:1178.490000px;}
.yac_c01357{bottom:1184.550000px;}
.yab_c01357{bottom:1185.405000px;}
.y3c_c01357{bottom:1187.130000px;}
.ya9_c01357{bottom:1188.000000px;}
.yaa_c01357{bottom:1190.595000px;}
.y3b_c01357{bottom:1192.320000px;}
.y3a_c01357{bottom:1194.915000px;}
.y39_c01357{bottom:1195.770000px;}
.y38_c01357{bottom:1196.640000px;}
.y36_c01357{bottom:1199.235000px;}
.y37_c01357{bottom:1200.960000px;}
.ya8_c01357{bottom:1202.685000px;}
.ya5_c01357{bottom:1205.280000px;}
.ya7_c01357{bottom:1207.875000px;}
.ya6_c01357{bottom:1209.600000px;}
.ya4_c01357{bottom:1210.470000px;}
.y33_c01357{bottom:1213.050000px;}
.y35_c01357{bottom:1213.920000px;}
.y34_c01357{bottom:1214.790000px;}
.ya3_c01357{bottom:1222.560000px;}
.ya2_c01357{bottom:1223.430000px;}
.y32_c01357{bottom:1225.155000px;}
.y2f_c01357{bottom:1226.880000px;}
.y31_c01357{bottom:1227.750000px;}
.y2d_c01357{bottom:1228.605000px;}
.y2e_c01357{bottom:1231.200000px;}
.y30_c01357{bottom:1232.070000px;}
.y9f_c01357{bottom:1237.245000px;}
.ya0_c01357{bottom:1239.840000px;}
.ya1_c01357{bottom:1240.710000px;}
.y2b_c01357{bottom:1245.030000px;}
.y2c_c01357{bottom:1245.885000px;}
.y29_c01357{bottom:1246.755000px;}
.y2a_c01357{bottom:1248.480000px;}
.y9d_c01357{bottom:1254.525000px;}
.y9e_c01357{bottom:1257.120000px;}
.y9c_c01357{bottom:1257.990000px;}
.y9b_c01357{bottom:1258.845000px;}
.y27_c01357{bottom:1259.715000px;}
.y25_c01357{bottom:1260.570000px;}
.y28_c01357{bottom:1261.440000px;}
.y9a_c01357{bottom:1262.310000px;}
.y23_c01357{bottom:1263.165000px;}
.y24_c01357{bottom:1265.760000px;}
.y26_c01357{bottom:1266.630000px;}
.y98_c01357{bottom:1271.805000px;}
.y97_c01357{bottom:1272.675000px;}
.y99_c01357{bottom:1274.400000px;}
.y20_c01357{bottom:1275.270000px;}
.y1f_c01357{bottom:1276.995000px;}
.y1d_c01357{bottom:1278.720000px;}
.y21_c01357{bottom:1279.590000px;}
.y1e_c01357{bottom:1283.040000px;}
.y22_c01357{bottom:1283.910000px;}
.y96_c01357{bottom:1293.405000px;}
.y1c_c01357{bottom:1296.000000px;}
.y92_c01357{bottom:1297.725000px;}
.y1a_c01357{bottom:1298.595000px;}
.y16_c01357{bottom:1300.320000px;}
.y1b_c01357{bottom:1301.190000px;}
.y18_c01357{bottom:1302.915000px;}
.y17_c01357{bottom:1304.640000px;}
.y19_c01357{bottom:1305.510000px;}
.y15_c01357{bottom:1308.090000px;}
.y95_c01357{bottom:1309.830000px;}
.y94_c01357{bottom:1311.555000px;}
.y12_c01357{bottom:1312.410000px;}
.y14_c01357{bottom:1313.280000px;}
.y93_c01357{bottom:1314.150000px;}
.y10_c01357{bottom:1315.005000px;}
.y11_c01357{bottom:1317.600000px;}
.y13_c01357{bottom:1318.470000px;}
.yd_c01357{bottom:1328.835000px;}
.ya_c01357{bottom:1330.560000px;}
.y9_c01357{bottom:1332.285000px;}
.ye_c01357{bottom:1333.155000px;}
.yb_c01357{bottom:1334.010000px;}
.yf_c01357{bottom:1335.750000px;}
.yc_c01357{bottom:1336.605000px;}
.y91_c01357{bottom:1346.970000px;}
.y3_c01357{bottom:1347.840000px;}
.y8_c01357{bottom:1348.710000px;}
.y2_c01357{bottom:1349.565000px;}
.y5_c01357{bottom:1351.290000px;}
.y4_c01357{bottom:1352.160000px;}
.y6_c01357{bottom:1353.030000px;}
.y7_c01357{bottom:1355.610000px;}
.yf3_c01357{bottom:1356.480000px;}
.yf2_c01357{bottom:1359.075000px;}
.yf1_c01357{bottom:1363.395000px;}
.h7_c01357{height:3.110063px;}
.h15_c01357{height:5.399414px;}
.ha_c01357{height:6.209326px;}
.hf_c01357{height:9.340986px;}
.h10_c01357{height:12.418652px;}
.h22_c01357{height:12.760986px;}
.h2_c01357{height:15.550313px;}
.h1d_c01357{height:18.681973px;}
.h12_c01357{height:21.759639px;}
.hc_c01357{height:24.891299px;}
.h11_c01357{height:27.968965px;}
.h17_c01357{height:31.100625px;}
.he_c01357{height:34.232285px;}
.hb_c01357{height:37.309951px;}
.h8_c01357{height:40.441611px;}
.hd_c01357{height:43.519277px;}
.h1c_c01357{height:43.921611px;}
.h4_c01357{height:46.650937px;}
.h1e_c01357{height:46.999277px;}
.h6_c01357{height:49.782598px;}
.h9_c01357{height:52.860264px;}
.h18_c01357{height:55.991924px;}
.h13_c01357{height:59.069590px;}
.h16_c01357{height:60.450938px;}
.h3_c01357{height:62.201250px;}
.h5_c01357{height:65.332910px;}
.h1a_c01357{height:68.410576px;}
.h19_c01357{height:71.542236px;}
.h14_c01357{height:74.619902px;}
.h20_c01357{height:77.751563px;}
.h21_c01357{height:83.960889px;}
.h1b_c01357{height:108.852188px;}
.h1f_c01357{height:118.193174px;}
.h1_c01357{height:1513.500000px;}
.h0_c01357{height:1513.725000px;}
.w0_c01357{width:1079.130000px;}
.w1_c01357{width:1079.250000px;}
.x0_c01357{left:0.000000px;}
.x5c_c01357{left:35.430000px;}
.x1_c01357{left:60.480000px;}
.x14_c01357{left:235.005000px;}
.x4a_c01357{left:239.325000px;}
.x39_c01357{left:241.050000px;}
.x27_c01357{left:246.240000px;}
.x2_c01357{left:247.965000px;}
.x30_c01357{left:249.690000px;}
.x15_c01357{left:255.750000px;}
.x35_c01357{left:260.925000px;}
.x5a_c01357{left:263.520000px;}
.x40_c01357{left:267.840000px;}
.x36_c01357{left:270.435000px;}
.x31_c01357{left:273.030000px;}
.x16_c01357{left:274.755000px;}
.x4f_c01357{left:289.440000px;}
.x55_c01357{left:293.760000px;}
.x46_c01357{left:295.485000px;}
.x3_c01357{left:298.950000px;}
.x1b_c01357{left:300.675000px;}
.x23_c01357{left:302.400000px;}
.x59_c01357{left:304.125000px;}
.x57_c01357{left:306.720000px;}
.x52_c01357{left:310.170000px;}
.x47_c01357{left:311.910000px;}
.xf_c01357{left:317.085000px;}
.x3a_c01357{left:319.680000px;}
.x20_c01357{left:323.130000px;}
.x50_c01357{left:324.870000px;}
.x3d_c01357{left:330.045000px;}
.x1c_c01357{left:331.770000px;}
.x24_c01357{left:334.365000px;}
.x41_c01357{left:336.090000px;}
.x28_c01357{left:338.685000px;}
.x2c_c01357{left:340.410000px;}
.x1d_c01357{left:343.005000px;}
.x4_c01357{left:344.730000px;}
.x56_c01357{left:350.790000px;}
.x4b_c01357{left:353.370000px;}
.x17_c01357{left:355.110000px;}
.x54_c01357{left:356.835000px;}
.x10_c01357{left:360.285000px;}
.x5_c01357{left:362.010000px;}
.x58_c01357{left:363.750000px;}
.x48_c01357{left:365.475000px;}
.x42_c01357{left:368.925000px;}
.x21_c01357{left:378.435000px;}
.x4c_c01357{left:381.030000px;}
.x5b_c01357{left:384.480000px;}
.x51_c01357{left:386.205000px;}
.x25_c01357{left:387.930000px;}
.x2d_c01357{left:396.570000px;}
.x53_c01357{left:400.035000px;}
.x9_c01357{left:402.630000px;}
.x32_c01357{left:405.210000px;}
.xa_c01357{left:419.040000px;}
.x11_c01357{left:421.635000px;}
.x18_c01357{left:423.360000px;}
.x4d_c01357{left:425.955000px;}
.x43_c01357{left:432.000000px;}
.x29_c01357{left:434.595000px;}
.x3b_c01357{left:440.640000px;}
.x6_c01357{left:443.235000px;}
.x2e_c01357{left:444.960000px;}
.x3e_c01357{left:446.685000px;}
.x2a_c01357{left:457.050000px;}
.x37_c01357{left:462.240000px;}
.x44_c01357{left:463.965000px;}
.x2f_c01357{left:465.690000px;}
.x12_c01357{left:472.605000px;}
.x33_c01357{left:481.245000px;}
.x13_c01357{left:482.970000px;}
.x19_c01357{left:488.160000px;}
.xb_c01357{left:492.480000px;}
.x3c_c01357{left:494.205000px;}
.x45_c01357{left:497.670000px;}
.x4e_c01357{left:499.395000px;}
.x1a_c01357{left:505.440000px;}
.x3f_c01357{left:508.890000px;}
.xc_c01357{left:512.355000px;}
.x22_c01357{left:514.950000px;}
.x1e_c01357{left:516.675000px;}
.x7_c01357{left:520.125000px;}
.x26_c01357{left:524.445000px;}
.x38_c01357{left:527.040000px;}
.x8_c01357{left:532.230000px;}
.xd_c01357{left:534.810000px;}
.x49_c01357{left:536.550000px;}
.x1f_c01357{left:542.595000px;}
.xe_c01357{left:544.320000px;}
.x34_c01357{left:546.915000px;}
.x2b_c01357{left:558.150000px;}
.x9e_c01357{left:564.195000px;}
.x7f_c01357{left:568.515000px;}
.x96_c01357{left:571.965000px;}
.x6f_c01357{left:573.690000px;}
.x6a_c01357{left:576.285000px;}
.xb0_c01357{left:578.010000px;}
.x5f_c01357{left:579.750000px;}
.xc2_c01357{left:581.475000px;}
.xe1_c01357{left:588.390000px;}
.xd3_c01357{left:591.840000px;}
.xc3_c01357{left:595.290000px;}
.x9f_c01357{left:597.030000px;}
.xde_c01357{left:598.755000px;}
.xd8_c01357{left:601.350000px;}
.x88_c01357{left:603.075000px;}
.xaf_c01357{left:604.800000px;}
.xcb_c01357{left:607.395000px;}
.xa6_c01357{left:609.120000px;}
.x7a_c01357{left:611.715000px;}
.x60_c01357{left:614.310000px;}
.xa3_c01357{left:616.035000px;}
.xc7_c01357{left:618.630000px;}
.x97_c01357{left:621.210000px;}
.xa4_c01357{left:623.805000px;}
.x70_c01357{left:625.530000px;}
.x91_c01357{left:627.270000px;}
.x99_c01357{left:629.850000px;}
.xce_c01357{left:631.590000px;}
.x89_c01357{left:634.170000px;}
.x80_c01357{left:636.765000px;}
.x66_c01357{left:639.360000px;}
.x71_c01357{left:641.085000px;}
.xa0_c01357{left:643.680000px;}
.x6b_c01357{left:646.275000px;}
.x7b_c01357{left:648.000000px;}
.xe2_c01357{left:650.595450px;}
.xd9_c01357{left:653.190000px;}
.x61_c01357{left:656.640000px;}
.xab_c01357{left:660.090000px;}
.x84_c01357{left:662.685000px;}
.x67_c01357{left:666.150000px;}
.x98_c01357{left:667.875000px;}
.xb1_c01357{left:670.470000px;}
.x62_c01357{left:673.050000px;}
.xcc_c01357{left:676.515000px;}
.xd7_c01357{left:679.110000px;}
.xc9_c01357{left:683.430000px;}
.x72_c01357{left:686.880000px;}
.xd2_c01357{left:689.475000px;}
.x6c_c01357{left:691.200000px;}
.x8d_c01357{left:693.795000px;}
.xb3_c01357{left:696.390000px;}
.xbd_c01357{left:698.970000px;}
.x9b_c01357{left:700.710000px;}
.xb8_c01357{left:705.885000px;}
.xbb_c01357{left:707.610000px;}
.x81_c01357{left:709.350000px;}
.x8e_c01357{left:711.930000px;}
.x5d_c01357{left:714.525000px;}
.x8a_c01357{left:716.250000px;}
.xc0_c01357{left:719.715000px;}
.xd0_c01357{left:721.440000px;}
.xb4_c01357{left:724.890000px;}
.xb7_c01357{left:726.630000px;}
.x85_c01357{left:730.080000px;}
.xac_c01357{left:733.530000px;}
.x73_c01357{left:735.270000px;}
.xa8_c01357{left:736.995000px;}
.x5e_c01357{left:742.170000px;}
.xd4_c01357{left:743.910000px;}
.x9c_c01357{left:745.635000px;}
.xdd_c01357{left:747.360000px;}
.xc5_c01357{left:749.955000px;}
.xdc_c01357{left:751.680000px;}
.x63_c01357{left:754.275000px;}
.x86_c01357{left:756.000000px;}
.xad_c01357{left:757.725000px;}
.x7c_c01357{left:759.450000px;}
.xe0_c01357{left:763.770000px;}
.xa5_c01357{left:768.090000px;}
.xbc_c01357{left:772.410000px;}
.xc6_c01357{left:774.150000px;}
.x74_c01357{left:775.875000px;}
.x8f_c01357{left:777.600000px;}
.xc8_c01357{left:779.325000px;}
.x92_c01357{left:781.050000px;}
.x9a_c01357{left:782.790000px;}
.x64_c01357{left:784.515000px;}
.x7d_c01357{left:787.110000px;}
.xbe_c01357{left:789.690000px;}
.xdb_c01357{left:794.010000px;}
.x68_c01357{left:795.750000px;}
.xa7_c01357{left:797.475000px;}
.xc1_c01357{left:799.200000px;}
.xda_c01357{left:800.925000px;}
.xb9_c01357{left:802.650000px;}
.x76_c01357{left:806.970000px;}
.xba_c01357{left:809.565000px;}
.x93_c01357{left:812.160000px;}
.xd5_c01357{left:813.885000px;}
.xae_c01357{left:815.610000px;}
.x65_c01357{left:820.800000px;}
.x77_c01357{left:822.525000px;}
.xca_c01357{left:825.120000px;}
.xa9_c01357{left:827.715000px;}
.x90_c01357{left:829.440000px;}
.x69_c01357{left:831.165360px;}
.x94_c01357{left:833.760000px;}
.x8b_c01357{left:836.355000px;}
.xd1_c01357{left:838.080000px;}
.xb5_c01357{left:839.805000px;}
.x82_c01357{left:841.530000px;}
.x9d_c01357{left:843.270000px;}
.x87_c01357{left:845.850000px;}
.x8c_c01357{left:848.445000px;}
.xb6_c01357{left:851.040000px;}
.x6d_c01357{left:852.765000px;}
.xa1_c01357{left:854.490000px;}
.x83_c01357{left:856.230000px;}
.x95_c01357{left:858.810000px;}
.x78_c01357{left:860.550000px;}
.xaa_c01357{left:862.275000px;}
.xc4_c01357{left:864.000000px;}
.xbf_c01357{left:865.725000px;}
.x75_c01357{left:868.320000px;}
.x79_c01357{left:871.770000px;}
.x7e_c01357{left:873.510000px;}
.x6e_c01357{left:875.235000px;}
.xb2_c01357{left:876.960000px;}
.xcd_c01357{left:878.685000px;}
.xe3_c01357{left:883.875000px;}
.xd6_c01357{left:886.470000px;}
.xa2_c01357{left:889.050000px;}
.xdf_c01357{left:891.645000px;}
.xcf_c01357{left:893.370000px;}
.xe4_c01357{left:956.445000px;}
@media print{
.v5_c01357{vertical-align:-18.453333pt;}
.v1_c01357{vertical-align:-6.133333pt;}
.v4_c01357{vertical-align:-3.093333pt;}
.v0_c01357{vertical-align:0.000000pt;}
.v3_c01357{vertical-align:3.093333pt;}
.v2_c01357{vertical-align:12.266667pt;}
.ls3_c01357{letter-spacing:0.000000pt;}
.ls2_c01357{letter-spacing:66.798880pt;}
.ls1_c01357{letter-spacing:126.485333pt;}
.ls0_c01357{letter-spacing:222.837333pt;}
.ws4_c01357{word-spacing:-16.024640pt;}
.ws2_c01357{word-spacing:-9.151573pt;}
.ws1_c01357{word-spacing:-8.486453pt;}
.ws0_c01357{word-spacing:-6.778613pt;}
.ws3_c01357{word-spacing:-2.779947pt;}
.ws5_c01357{word-spacing:0.000000pt;}
.fs5_c01357{font-size:3.072000pt;}
.fs13_c01357{font-size:5.333333pt;}
.fs8_c01357{font-size:6.133333pt;}
.fsd_c01357{font-size:9.226667pt;}
.fse_c01357{font-size:12.266667pt;}
.fs0_c01357{font-size:15.360000pt;}
.fs19_c01357{font-size:18.453333pt;}
.fs10_c01357{font-size:21.493333pt;}
.fsa_c01357{font-size:24.586667pt;}
.fsf_c01357{font-size:27.626667pt;}
.fs14_c01357{font-size:30.720000pt;}
.fsc_c01357{font-size:33.813333pt;}
.fs9_c01357{font-size:36.853333pt;}
.fs6_c01357{font-size:39.946667pt;}
.fsb_c01357{font-size:42.986667pt;}
.fs2_c01357{font-size:46.080000pt;}
.fs4_c01357{font-size:49.173333pt;}
.fs7_c01357{font-size:52.213333pt;}
.fs15_c01357{font-size:55.306667pt;}
.fs11_c01357{font-size:58.346667pt;}
.fs1_c01357{font-size:61.440000pt;}
.fs3_c01357{font-size:64.533333pt;}
.fs17_c01357{font-size:67.573333pt;}
.fs16_c01357{font-size:70.666667pt;}
.fs12_c01357{font-size:73.706667pt;}
.fs1b_c01357{font-size:76.800000pt;}
.fs1c_c01357{font-size:82.933333pt;}
.fs18_c01357{font-size:107.520000pt;}
.fs1a_c01357{font-size:116.746667pt;}
.y0_c01357{bottom:0.000000pt;}
.y1bd_c01357{bottom:161.280000pt;}
.y1bc_c01357{bottom:163.586667pt;}
.y1b6_c01357{bottom:164.346667pt;}
.y1b5_c01357{bottom:169.733333pt;}
.y1b7_c01357{bottom:170.493333pt;}
.y1ba_c01357{bottom:171.266667pt;}
.y1b9_c01357{bottom:173.573333pt;}
.y1bb_c01357{bottom:177.413333pt;}
.y1b4_c01357{bottom:183.546667pt;}
.y1b3_c01357{bottom:184.320000pt;}
.y1b8_c01357{bottom:185.093333pt;}
.y1b0_c01357{bottom:188.160000pt;}
.y1b1_c01357{bottom:190.466667pt;}
.y1b2_c01357{bottom:191.226667pt;}
.y1af_c01357{bottom:200.453333pt;}
.y1ad_c01357{bottom:202.746667pt;}
.y1ae_c01357{bottom:204.293333pt;}
.y1ac_c01357{bottom:205.826667pt;}
.y1ab_c01357{bottom:208.133333pt;}
.y1aa_c01357{bottom:217.346667pt;}
.y1a8_c01357{bottom:219.653333pt;}
.y1a9_c01357{bottom:220.413333pt;}
.y1a6_c01357{bottom:223.493333pt;}
.y1a7_c01357{bottom:225.026667pt;}
.y1a3_c01357{bottom:232.706667pt;}
.y1a4_c01357{bottom:233.466667pt;}
.y1a5_c01357{bottom:235.773333pt;}
.y1a2_c01357{bottom:238.080000pt;}
.y1a0_c01357{bottom:238.853333pt;}
.y1a1_c01357{bottom:240.386667pt;}
.y19f_c01357{bottom:248.066667pt;}
.y19e_c01357{bottom:248.826667pt;}
.y19b_c01357{bottom:251.133333pt;}
.y19c_c01357{bottom:252.666667pt;}
.y19a_c01357{bottom:254.973333pt;}
.y19d_c01357{bottom:262.653333pt;}
.y196_c01357{bottom:265.733333pt;}
.y199_c01357{bottom:266.493333pt;}
.y198_c01357{bottom:267.266667pt;}
.y197_c01357{bottom:268.026667pt;}
.y195_c01357{bottom:270.333333pt;}
.y193_c01357{bottom:278.013333pt;}
.y192_c01357{bottom:280.320000pt;}
.y191_c01357{bottom:281.853333pt;}
.y194_c01357{bottom:283.386667pt;}
.y190_c01357{bottom:284.160000pt;}
.y18f_c01357{bottom:284.933333pt;}
.y18e_c01357{bottom:290.306667pt;}
.y189_c01357{bottom:296.453333pt;}
.y18d_c01357{bottom:297.986667pt;}
.y18b_c01357{bottom:298.746667pt;}
.y18c_c01357{bottom:299.520000pt;}
.y18a_c01357{bottom:300.293333pt;}
.y188_c01357{bottom:301.053333pt;}
.y187_c01357{bottom:306.426667pt;}
.y184_c01357{bottom:310.266667pt;}
.y181_c01357{bottom:312.573333pt;}
.y183_c01357{bottom:313.346667pt;}
.y186_c01357{bottom:314.106667pt;}
.y182_c01357{bottom:315.653333pt;}
.y185_c01357{bottom:316.413333pt;}
.y17f_c01357{bottom:324.093333pt;}
.y17e_c01357{bottom:327.173333pt;}
.y17c_c01357{bottom:327.933333pt;}
.y17d_c01357{bottom:328.706667pt;}
.y180_c01357{bottom:331.013333pt;}
.y178_c01357{bottom:344.066667pt;}
.y177_c01357{bottom:345.600000pt;}
.y179_c01357{bottom:346.373333pt;}
.y17a_c01357{bottom:348.666667pt;}
.y17b_c01357{bottom:354.053333pt;}
.y175_c01357{bottom:357.120000pt;}
.y171_c01357{bottom:357.893333pt;}
.y173_c01357{bottom:358.653333pt;}
.y176_c01357{bottom:359.426667pt;}
.y174_c01357{bottom:360.960000pt;}
.y172_c01357{bottom:361.733333pt;}
.y16e_c01357{bottom:374.013333pt;}
.y16c_c01357{bottom:374.786667pt;}
.y16b_c01357{bottom:375.546667pt;}
.y16f_c01357{bottom:376.320000pt;}
.y16d_c01357{bottom:377.093333pt;}
.y169_c01357{bottom:377.853333pt;}
.y16a_c01357{bottom:378.626667pt;}
.y170_c01357{bottom:387.066667pt;}
.y168_c01357{bottom:390.146667pt;}
.y165_c01357{bottom:393.213333pt;}
.y166_c01357{bottom:393.986667pt;}
.y164_c01357{bottom:394.746667pt;}
.y167_c01357{bottom:399.360000pt;}
.y163_c01357{bottom:404.733333pt;}
.y162_c01357{bottom:408.573333pt;}
.y161_c01357{bottom:423.173333pt;}
.y15f_c01357{bottom:423.933333pt;}
.y160_c01357{bottom:425.466667pt;}
.y15e_c01357{bottom:434.693333pt;}
.y15d_c01357{bottom:439.293333pt;}
.y15c_c01357{bottom:440.066667pt;}
.y15a_c01357{bottom:453.120000pt;}
.y15b_c01357{bottom:458.493333pt;}
.y159_c01357{bottom:463.106667pt;}
.y157_c01357{bottom:463.866667pt;}
.y158_c01357{bottom:465.413333pt;}
.y155_c01357{bottom:466.173333pt;}
.y156_c01357{bottom:470.013333pt;}
.y153_c01357{bottom:483.066667pt;}
.y152_c01357{bottom:483.840000pt;}
.y150_c01357{bottom:484.613333pt;}
.y151_c01357{bottom:486.906667pt;}
.y154_c01357{bottom:493.053333pt;}
.y14c_c01357{bottom:494.586667pt;}
.y14d_c01357{bottom:495.360000pt;}
.y14b_c01357{bottom:496.893333pt;}
.y14e_c01357{bottom:498.426667pt;}
.y14f_c01357{bottom:500.733333pt;}
.y14a_c01357{bottom:503.040000pt;}
.y149_c01357{bottom:509.946667pt;}
.y146_c01357{bottom:512.253333pt;}
.y144_c01357{bottom:514.560000pt;}
.y145_c01357{bottom:516.866667pt;}
.y147_c01357{bottom:518.400000pt;}
.y148_c01357{bottom:519.933333pt;}
.y143_c01357{bottom:526.080000pt;}
.y141_c01357{bottom:527.613333pt;}
.y140_c01357{bottom:528.386667pt;}
.y13f_c01357{bottom:529.146667pt;}
.y13e_c01357{bottom:541.440000pt;}
.y13d_c01357{bottom:542.213333pt;}
.y142_c01357{bottom:542.973333pt;}
.y13c_c01357{bottom:545.280000pt;}
.y13b_c01357{bottom:546.053333pt;}
.y13a_c01357{bottom:547.586667pt;}
.y139_c01357{bottom:548.346667pt;}
.y138_c01357{bottom:560.640000pt;}
.y135_c01357{bottom:561.413333pt;}
.y136_c01357{bottom:563.706667pt;}
.y137_c01357{bottom:570.626667pt;}
.y132_c01357{bottom:572.160000pt;}
.y134_c01357{bottom:574.466667pt;}
.y133_c01357{bottom:576.773333pt;}
.y131_c01357{bottom:578.306667pt;}
.y130_c01357{bottom:579.066667pt;}
.y12e_c01357{bottom:588.293333pt;}
.y12d_c01357{bottom:589.053333pt;}
.y12f_c01357{bottom:589.826667pt;}
.y12c_c01357{bottom:593.666667pt;}
.y12b_c01357{bottom:594.426667pt;}
.y129_c01357{bottom:604.413333pt;}
.y125_c01357{bottom:605.946667pt;}
.y12a_c01357{bottom:606.720000pt;}
.y126_c01357{bottom:608.253333pt;}
.y127_c01357{bottom:609.026667pt;}
.y124_c01357{bottom:609.786667pt;}
.y128_c01357{bottom:618.240000pt;}
.y122_c01357{bottom:619.773333pt;}
.y123_c01357{bottom:622.080000pt;}
.y120_c01357{bottom:622.853333pt;}
.y121_c01357{bottom:625.920000pt;}
.y11f_c01357{bottom:632.826667pt;}
.y11e_c01357{bottom:633.600000pt;}
.y11c_c01357{bottom:635.906667pt;}
.y11a_c01357{bottom:636.666667pt;}
.y11b_c01357{bottom:638.973333pt;}
.y11d_c01357{bottom:639.746667pt;}
.y119_c01357{bottom:640.506667pt;}
.y118_c01357{bottom:650.493333pt;}
.y114_c01357{bottom:653.573333pt;}
.y113_c01357{bottom:654.333333pt;}
.y116_c01357{bottom:655.106667pt;}
.y117_c01357{bottom:656.640000pt;}
.y115_c01357{bottom:660.480000pt;}
.y112_c01357{bottom:665.093333pt;}
.y110_c01357{bottom:665.853333pt;}
.y10d_c01357{bottom:666.626667pt;}
.y10f_c01357{bottom:668.160000pt;}
.y111_c01357{bottom:668.933333pt;}
.y10b_c01357{bottom:670.466667pt;}
.y10c_c01357{bottom:672.000000pt;}
.y10e_c01357{bottom:678.146667pt;}
.y10a_c01357{bottom:680.453333pt;}
.y109_c01357{bottom:681.213333pt;}
.y108_c01357{bottom:681.986667pt;}
.y107_c01357{bottom:686.586667pt;}
.y105_c01357{bottom:696.573333pt;}
.y106_c01357{bottom:697.346667pt;}
.y102_c01357{bottom:698.880000pt;}
.y103_c01357{bottom:701.186667pt;}
.y104_c01357{bottom:705.026667pt;}
.y101_c01357{bottom:712.706667pt;}
.y100_c01357{bottom:713.466667pt;}
.yfe_c01357{bottom:716.546667pt;}
.yff_c01357{bottom:721.146667pt;}
.yfd_c01357{bottom:726.533333pt;}
.yfb_c01357{bottom:728.066667pt;}
.yfc_c01357{bottom:731.906667pt;}
.yfa_c01357{bottom:732.666667pt;}
.yf4_c01357{bottom:733.440000pt;}
.yf8_c01357{bottom:743.426667pt;}
.yf6_c01357{bottom:744.186667pt;}
.yf7_c01357{bottom:745.733333pt;}
.yf9_c01357{bottom:746.493333pt;}
.yf5_c01357{bottom:748.800000pt;}
.y8f_c01357{bottom:778.746667pt;}
.y8c_c01357{bottom:779.520000pt;}
.y8d_c01357{bottom:781.053333pt;}
.y8a_c01357{bottom:783.360000pt;}
.y8b_c01357{bottom:784.893333pt;}
.y89_c01357{bottom:792.573333pt;}
.y8e_c01357{bottom:794.880000pt;}
.y87_c01357{bottom:797.186667pt;}
.y84_c01357{bottom:798.720000pt;}
.y86_c01357{bottom:799.493333pt;}
.y85_c01357{bottom:800.253333pt;}
.yef_c01357{bottom:805.626667pt;}
.y88_c01357{bottom:807.173333pt;}
.yf0_c01357{bottom:807.933333pt;}
.yed_c01357{bottom:809.466667pt;}
.y83_c01357{bottom:810.240000pt;}
.y82_c01357{bottom:811.013333pt;}
.yec_c01357{bottom:811.773333pt;}
.y81_c01357{bottom:813.306667pt;}
.yee_c01357{bottom:814.853333pt;}
.y80_c01357{bottom:815.613333pt;}
.y90_c01357{bottom:820.986667pt;}
.yea_c01357{bottom:821.760000pt;}
.yeb_c01357{bottom:824.066667pt;}
.y7d_c01357{bottom:826.373333pt;}
.y7e_c01357{bottom:827.133333pt;}
.y7c_c01357{bottom:827.906667pt;}
.y7f_c01357{bottom:829.440000pt;}
.ye9_c01357{bottom:836.346667pt;}
.y1_c01357{bottom:837.893333pt;}
.ye8_c01357{bottom:838.653333pt;}
.y7a_c01357{bottom:840.960000pt;}
.y79_c01357{bottom:841.733333pt;}
.y7b_c01357{bottom:844.800000pt;}
.ye4_c01357{bottom:852.480000pt;}
.ye7_c01357{bottom:854.786667pt;}
.ye5_c01357{bottom:855.546667pt;}
.ye6_c01357{bottom:856.320000pt;}
.y78_c01357{bottom:857.853333pt;}
.y76_c01357{bottom:859.386667pt;}
.y77_c01357{bottom:860.933333pt;}
.y75_c01357{bottom:861.693333pt;}
.ye3_c01357{bottom:866.306667pt;}
.ye2_c01357{bottom:867.066667pt;}
.ye1_c01357{bottom:871.680000pt;}
.ye0_c01357{bottom:872.453333pt;}
.y74_c01357{bottom:873.986667pt;}
.y73_c01357{bottom:876.293333pt;}
.y72_c01357{bottom:877.053333pt;}
.yde_c01357{bottom:882.426667pt;}
.ydd_c01357{bottom:883.973333pt;}
.ydf_c01357{bottom:885.506667pt;}
.y71_c01357{bottom:887.813333pt;}
.ydc_c01357{bottom:888.573333pt;}
.y70_c01357{bottom:890.880000pt;}
.y6f_c01357{bottom:891.653333pt;}
.y6d_c01357{bottom:892.413333pt;}
.y6e_c01357{bottom:893.186667pt;}
.ydb_c01357{bottom:897.026667pt;}
.yd8_c01357{bottom:897.786667pt;}
.yda_c01357{bottom:898.560000pt;}
.yd9_c01357{bottom:901.626667pt;}
.yd7_c01357{bottom:902.400000pt;}
.y6b_c01357{bottom:903.933333pt;}
.y67_c01357{bottom:904.706667pt;}
.y6a_c01357{bottom:905.466667pt;}
.y69_c01357{bottom:906.240000pt;}
.y6c_c01357{bottom:907.013333pt;}
.y68_c01357{bottom:907.773333pt;}
.yd6_c01357{bottom:913.146667pt;}
.yd5_c01357{bottom:913.920000pt;}
.yd4_c01357{bottom:918.533333pt;}
.y66_c01357{bottom:919.293333pt;}
.yd3_c01357{bottom:920.066667pt;}
.y62_c01357{bottom:920.826667pt;}
.y65_c01357{bottom:921.600000pt;}
.y64_c01357{bottom:923.133333pt;}
.y63_c01357{bottom:923.906667pt;}
.yd2_c01357{bottom:926.973333pt;}
.yd1_c01357{bottom:929.280000pt;}
.yd0_c01357{bottom:933.120000pt;}
.y5f_c01357{bottom:933.893333pt;}
.yce_c01357{bottom:934.653333pt;}
.y5c_c01357{bottom:936.960000pt;}
.y61_c01357{bottom:937.733333pt;}
.y5e_c01357{bottom:938.493333pt;}
.y5d_c01357{bottom:939.266667pt;}
.y60_c01357{bottom:940.026667pt;}
.ycf_c01357{bottom:940.800000pt;}
.ycb_c01357{bottom:944.640000pt;}
.ycd_c01357{bottom:946.173333pt;}
.yca_c01357{bottom:946.946667pt;}
.y5a_c01357{bottom:949.253333pt;}
.y59_c01357{bottom:950.013333pt;}
.y57_c01357{bottom:950.786667pt;}
.y55_c01357{bottom:951.546667pt;}
.y58_c01357{bottom:952.320000pt;}
.y5b_c01357{bottom:953.093333pt;}
.y56_c01357{bottom:953.853333pt;}
.ycc_c01357{bottom:955.386667pt;}
.yc7_c01357{bottom:959.226667pt;}
.yc6_c01357{bottom:960.773333pt;}
.yc9_c01357{bottom:962.306667pt;}
.yc8_c01357{bottom:963.066667pt;}
.y54_c01357{bottom:963.840000pt;}
.y52_c01357{bottom:964.613333pt;}
.yc5_c01357{bottom:965.373333pt;}
.y53_c01357{bottom:966.146667pt;}
.y50_c01357{bottom:966.906667pt;}
.y51_c01357{bottom:968.453333pt;}
.yc4_c01357{bottom:974.586667pt;}
.yc1_c01357{bottom:977.666667pt;}
.yc2_c01357{bottom:979.200000pt;}
.yc3_c01357{bottom:979.973333pt;}
.y4e_c01357{bottom:980.733333pt;}
.y4f_c01357{bottom:981.506667pt;}
.y4b_c01357{bottom:983.040000pt;}
.y4d_c01357{bottom:984.573333pt;}
.y4c_c01357{bottom:985.346667pt;}
.ybf_c01357{bottom:989.946667pt;}
.ybe_c01357{bottom:990.720000pt;}
.ybd_c01357{bottom:991.493333pt;}
.yc0_c01357{bottom:992.253333pt;}
.ybc_c01357{bottom:994.560000pt;}
.ybb_c01357{bottom:995.333333pt;}
.yba_c01357{bottom:996.866667pt;}
.y4a_c01357{bottom:997.626667pt;}
.yb9_c01357{bottom:998.400000pt;}
.y49_c01357{bottom:999.933333pt;}
.y48_c01357{bottom:1000.706667pt;}
.yb5_c01357{bottom:1006.853333pt;}
.yb6_c01357{bottom:1009.146667pt;}
.yb8_c01357{bottom:1009.920000pt;}
.yb7_c01357{bottom:1010.693333pt;}
.y47_c01357{bottom:1011.453333pt;}
.y46_c01357{bottom:1013.760000pt;}
.yb4_c01357{bottom:1022.213333pt;}
.yb2_c01357{bottom:1023.746667pt;}
.yb3_c01357{bottom:1024.506667pt;}
.y45_c01357{bottom:1027.586667pt;}
.yb0_c01357{bottom:1028.346667pt;}
.y42_c01357{bottom:1029.120000pt;}
.y44_c01357{bottom:1031.426667pt;}
.y43_c01357{bottom:1032.186667pt;}
.yb1_c01357{bottom:1035.266667pt;}
.yad_c01357{bottom:1039.106667pt;}
.yaf_c01357{bottom:1040.640000pt;}
.yae_c01357{bottom:1042.173333pt;}
.y40_c01357{bottom:1043.706667pt;}
.y3f_c01357{bottom:1044.480000pt;}
.y3d_c01357{bottom:1045.253333pt;}
.y41_c01357{bottom:1046.786667pt;}
.y3e_c01357{bottom:1047.546667pt;}
.yac_c01357{bottom:1052.933333pt;}
.yab_c01357{bottom:1053.693333pt;}
.y3c_c01357{bottom:1055.226667pt;}
.ya9_c01357{bottom:1056.000000pt;}
.yaa_c01357{bottom:1058.306667pt;}
.y3b_c01357{bottom:1059.840000pt;}
.y3a_c01357{bottom:1062.146667pt;}
.y39_c01357{bottom:1062.906667pt;}
.y38_c01357{bottom:1063.680000pt;}
.y36_c01357{bottom:1065.986667pt;}
.y37_c01357{bottom:1067.520000pt;}
.ya8_c01357{bottom:1069.053333pt;}
.ya5_c01357{bottom:1071.360000pt;}
.ya7_c01357{bottom:1073.666667pt;}
.ya6_c01357{bottom:1075.200000pt;}
.ya4_c01357{bottom:1075.973333pt;}
.y33_c01357{bottom:1078.266667pt;}
.y35_c01357{bottom:1079.040000pt;}
.y34_c01357{bottom:1079.813333pt;}
.ya3_c01357{bottom:1086.720000pt;}
.ya2_c01357{bottom:1087.493333pt;}
.y32_c01357{bottom:1089.026667pt;}
.y2f_c01357{bottom:1090.560000pt;}
.y31_c01357{bottom:1091.333333pt;}
.y2d_c01357{bottom:1092.093333pt;}
.y2e_c01357{bottom:1094.400000pt;}
.y30_c01357{bottom:1095.173333pt;}
.y9f_c01357{bottom:1099.773333pt;}
.ya0_c01357{bottom:1102.080000pt;}
.ya1_c01357{bottom:1102.853333pt;}
.y2b_c01357{bottom:1106.693333pt;}
.y2c_c01357{bottom:1107.453333pt;}
.y29_c01357{bottom:1108.226667pt;}
.y2a_c01357{bottom:1109.760000pt;}
.y9d_c01357{bottom:1115.133333pt;}
.y9e_c01357{bottom:1117.440000pt;}
.y9c_c01357{bottom:1118.213333pt;}
.y9b_c01357{bottom:1118.973333pt;}
.y27_c01357{bottom:1119.746667pt;}
.y25_c01357{bottom:1120.506667pt;}
.y28_c01357{bottom:1121.280000pt;}
.y9a_c01357{bottom:1122.053333pt;}
.y23_c01357{bottom:1122.813333pt;}
.y24_c01357{bottom:1125.120000pt;}
.y26_c01357{bottom:1125.893333pt;}
.y98_c01357{bottom:1130.493333pt;}
.y97_c01357{bottom:1131.266667pt;}
.y99_c01357{bottom:1132.800000pt;}
.y20_c01357{bottom:1133.573333pt;}
.y1f_c01357{bottom:1135.106667pt;}
.y1d_c01357{bottom:1136.640000pt;}
.y21_c01357{bottom:1137.413333pt;}
.y1e_c01357{bottom:1140.480000pt;}
.y22_c01357{bottom:1141.253333pt;}
.y96_c01357{bottom:1149.693333pt;}
.y1c_c01357{bottom:1152.000000pt;}
.y92_c01357{bottom:1153.533333pt;}
.y1a_c01357{bottom:1154.306667pt;}
.y16_c01357{bottom:1155.840000pt;}
.y1b_c01357{bottom:1156.613333pt;}
.y18_c01357{bottom:1158.146667pt;}
.y17_c01357{bottom:1159.680000pt;}
.y19_c01357{bottom:1160.453333pt;}
.y15_c01357{bottom:1162.746667pt;}
.y95_c01357{bottom:1164.293333pt;}
.y94_c01357{bottom:1165.826667pt;}
.y12_c01357{bottom:1166.586667pt;}
.y14_c01357{bottom:1167.360000pt;}
.y93_c01357{bottom:1168.133333pt;}
.y10_c01357{bottom:1168.893333pt;}
.y11_c01357{bottom:1171.200000pt;}
.y13_c01357{bottom:1171.973333pt;}
.yd_c01357{bottom:1181.186667pt;}
.ya_c01357{bottom:1182.720000pt;}
.y9_c01357{bottom:1184.253333pt;}
.ye_c01357{bottom:1185.026667pt;}
.yb_c01357{bottom:1185.786667pt;}
.yf_c01357{bottom:1187.333333pt;}
.yc_c01357{bottom:1188.093333pt;}
.y91_c01357{bottom:1197.306667pt;}
.y3_c01357{bottom:1198.080000pt;}
.y8_c01357{bottom:1198.853333pt;}
.y2_c01357{bottom:1199.613333pt;}
.y5_c01357{bottom:1201.146667pt;}
.y4_c01357{bottom:1201.920000pt;}
.y6_c01357{bottom:1202.693333pt;}
.y7_c01357{bottom:1204.986667pt;}
.yf3_c01357{bottom:1205.760000pt;}
.yf2_c01357{bottom:1208.066667pt;}
.yf1_c01357{bottom:1211.906667pt;}
.h7_c01357{height:2.764500pt;}
.h15_c01357{height:4.799479pt;}
.ha_c01357{height:5.519401pt;}
.hf_c01357{height:8.303099pt;}
.h10_c01357{height:11.038802pt;}
.h22_c01357{height:11.343099pt;}
.h2_c01357{height:13.822500pt;}
.h1d_c01357{height:16.606198pt;}
.h12_c01357{height:19.341901pt;}
.hc_c01357{height:22.125599pt;}
.h11_c01357{height:24.861302pt;}
.h17_c01357{height:27.645000pt;}
.he_c01357{height:30.428698pt;}
.hb_c01357{height:33.164401pt;}
.h8_c01357{height:35.948099pt;}
.hd_c01357{height:38.683802pt;}
.h1c_c01357{height:39.041432pt;}
.h4_c01357{height:41.467500pt;}
.h1e_c01357{height:41.777135pt;}
.h6_c01357{height:44.251198pt;}
.h9_c01357{height:46.986901pt;}
.h18_c01357{height:49.770599pt;}
.h13_c01357{height:52.506302pt;}
.h16_c01357{height:53.734167pt;}
.h3_c01357{height:55.290000pt;}
.h5_c01357{height:58.073698pt;}
.h1a_c01357{height:60.809401pt;}
.h19_c01357{height:63.593099pt;}
.h14_c01357{height:66.328802pt;}
.h20_c01357{height:69.112500pt;}
.h21_c01357{height:74.631901pt;}
.h1b_c01357{height:96.757500pt;}
.h1f_c01357{height:105.060599pt;}
.h1_c01357{height:1345.333333pt;}
.h0_c01357{height:1345.533333pt;}
.w0_c01357{width:959.226667pt;}
.w1_c01357{width:959.333333pt;}
.x0_c01357{left:0.000000pt;}
.x5c_c01357{left:31.493333pt;}
.x1_c01357{left:53.760000pt;}
.x14_c01357{left:208.893333pt;}
.x4a_c01357{left:212.733333pt;}
.x39_c01357{left:214.266667pt;}
.x27_c01357{left:218.880000pt;}
.x2_c01357{left:220.413333pt;}
.x30_c01357{left:221.946667pt;}
.x15_c01357{left:227.333333pt;}
.x35_c01357{left:231.933333pt;}
.x5a_c01357{left:234.240000pt;}
.x40_c01357{left:238.080000pt;}
.x36_c01357{left:240.386667pt;}
.x31_c01357{left:242.693333pt;}
.x16_c01357{left:244.226667pt;}
.x4f_c01357{left:257.280000pt;}
.x55_c01357{left:261.120000pt;}
.x46_c01357{left:262.653333pt;}
.x3_c01357{left:265.733333pt;}
.x1b_c01357{left:267.266667pt;}
.x23_c01357{left:268.800000pt;}
.x59_c01357{left:270.333333pt;}
.x57_c01357{left:272.640000pt;}
.x52_c01357{left:275.706667pt;}
.x47_c01357{left:277.253333pt;}
.xf_c01357{left:281.853333pt;}
.x3a_c01357{left:284.160000pt;}
.x20_c01357{left:287.226667pt;}
.x50_c01357{left:288.773333pt;}
.x3d_c01357{left:293.373333pt;}
.x1c_c01357{left:294.906667pt;}
.x24_c01357{left:297.213333pt;}
.x41_c01357{left:298.746667pt;}
.x28_c01357{left:301.053333pt;}
.x2c_c01357{left:302.586667pt;}
.x1d_c01357{left:304.893333pt;}
.x4_c01357{left:306.426667pt;}
.x56_c01357{left:311.813333pt;}
.x4b_c01357{left:314.106667pt;}
.x17_c01357{left:315.653333pt;}
.x54_c01357{left:317.186667pt;}
.x10_c01357{left:320.253333pt;}
.x5_c01357{left:321.786667pt;}
.x58_c01357{left:323.333333pt;}
.x48_c01357{left:324.866667pt;}
.x42_c01357{left:327.933333pt;}
.x21_c01357{left:336.386667pt;}
.x4c_c01357{left:338.693333pt;}
.x5b_c01357{left:341.760000pt;}
.x51_c01357{left:343.293333pt;}
.x25_c01357{left:344.826667pt;}
.x2d_c01357{left:352.506667pt;}
.x53_c01357{left:355.586667pt;}
.x9_c01357{left:357.893333pt;}
.x32_c01357{left:360.186667pt;}
.xa_c01357{left:372.480000pt;}
.x11_c01357{left:374.786667pt;}
.x18_c01357{left:376.320000pt;}
.x4d_c01357{left:378.626667pt;}
.x43_c01357{left:384.000000pt;}
.x29_c01357{left:386.306667pt;}
.x3b_c01357{left:391.680000pt;}
.x6_c01357{left:393.986667pt;}
.x2e_c01357{left:395.520000pt;}
.x3e_c01357{left:397.053333pt;}
.x2a_c01357{left:406.266667pt;}
.x37_c01357{left:410.880000pt;}
.x44_c01357{left:412.413333pt;}
.x2f_c01357{left:413.946667pt;}
.x12_c01357{left:420.093333pt;}
.x33_c01357{left:427.773333pt;}
.x13_c01357{left:429.306667pt;}
.x19_c01357{left:433.920000pt;}
.xb_c01357{left:437.760000pt;}
.x3c_c01357{left:439.293333pt;}
.x45_c01357{left:442.373333pt;}
.x4e_c01357{left:443.906667pt;}
.x1a_c01357{left:449.280000pt;}
.x3f_c01357{left:452.346667pt;}
.xc_c01357{left:455.426667pt;}
.x22_c01357{left:457.733333pt;}
.x1e_c01357{left:459.266667pt;}
.x7_c01357{left:462.333333pt;}
.x26_c01357{left:466.173333pt;}
.x38_c01357{left:468.480000pt;}
.x8_c01357{left:473.093333pt;}
.xd_c01357{left:475.386667pt;}
.x49_c01357{left:476.933333pt;}
.x1f_c01357{left:482.306667pt;}
.xe_c01357{left:483.840000pt;}
.x34_c01357{left:486.146667pt;}
.x2b_c01357{left:496.133333pt;}
.x9e_c01357{left:501.506667pt;}
.x7f_c01357{left:505.346667pt;}
.x96_c01357{left:508.413333pt;}
.x6f_c01357{left:509.946667pt;}
.x6a_c01357{left:512.253333pt;}
.xb0_c01357{left:513.786667pt;}
.x5f_c01357{left:515.333333pt;}
.xc2_c01357{left:516.866667pt;}
.xe1_c01357{left:523.013333pt;}
.xd3_c01357{left:526.080000pt;}
.xc3_c01357{left:529.146667pt;}
.x9f_c01357{left:530.693333pt;}
.xde_c01357{left:532.226667pt;}
.xd8_c01357{left:534.533333pt;}
.x88_c01357{left:536.066667pt;}
.xaf_c01357{left:537.600000pt;}
.xcb_c01357{left:539.906667pt;}
.xa6_c01357{left:541.440000pt;}
.x7a_c01357{left:543.746667pt;}
.x60_c01357{left:546.053333pt;}
.xa3_c01357{left:547.586667pt;}
.xc7_c01357{left:549.893333pt;}
.x97_c01357{left:552.186667pt;}
.xa4_c01357{left:554.493333pt;}
.x70_c01357{left:556.026667pt;}
.x91_c01357{left:557.573333pt;}
.x99_c01357{left:559.866667pt;}
.xce_c01357{left:561.413333pt;}
.x89_c01357{left:563.706667pt;}
.x80_c01357{left:566.013333pt;}
.x66_c01357{left:568.320000pt;}
.x71_c01357{left:569.853333pt;}
.xa0_c01357{left:572.160000pt;}
.x6b_c01357{left:574.466667pt;}
.x7b_c01357{left:576.000000pt;}
.xe2_c01357{left:578.307067pt;}
.xd9_c01357{left:580.613333pt;}
.x61_c01357{left:583.680000pt;}
.xab_c01357{left:586.746667pt;}
.x84_c01357{left:589.053333pt;}
.x67_c01357{left:592.133333pt;}
.x98_c01357{left:593.666667pt;}
.xb1_c01357{left:595.973333pt;}
.x62_c01357{left:598.266667pt;}
.xcc_c01357{left:601.346667pt;}
.xd7_c01357{left:603.653333pt;}
.xc9_c01357{left:607.493333pt;}
.x72_c01357{left:610.560000pt;}
.xd2_c01357{left:612.866667pt;}
.x6c_c01357{left:614.400000pt;}
.x8d_c01357{left:616.706667pt;}
.xb3_c01357{left:619.013333pt;}
.xbd_c01357{left:621.306667pt;}
.x9b_c01357{left:622.853333pt;}
.xb8_c01357{left:627.453333pt;}
.xbb_c01357{left:628.986667pt;}
.x81_c01357{left:630.533333pt;}
.x8e_c01357{left:632.826667pt;}
.x5d_c01357{left:635.133333pt;}
.x8a_c01357{left:636.666667pt;}
.xc0_c01357{left:639.746667pt;}
.xd0_c01357{left:641.280000pt;}
.xb4_c01357{left:644.346667pt;}
.xb7_c01357{left:645.893333pt;}
.x85_c01357{left:648.960000pt;}
.xac_c01357{left:652.026667pt;}
.x73_c01357{left:653.573333pt;}
.xa8_c01357{left:655.106667pt;}
.x5e_c01357{left:659.706667pt;}
.xd4_c01357{left:661.253333pt;}
.x9c_c01357{left:662.786667pt;}
.xdd_c01357{left:664.320000pt;}
.xc5_c01357{left:666.626667pt;}
.xdc_c01357{left:668.160000pt;}
.x63_c01357{left:670.466667pt;}
.x86_c01357{left:672.000000pt;}
.xad_c01357{left:673.533333pt;}
.x7c_c01357{left:675.066667pt;}
.xe0_c01357{left:678.906667pt;}
.xa5_c01357{left:682.746667pt;}
.xbc_c01357{left:686.586667pt;}
.xc6_c01357{left:688.133333pt;}
.x74_c01357{left:689.666667pt;}
.x8f_c01357{left:691.200000pt;}
.xc8_c01357{left:692.733333pt;}
.x92_c01357{left:694.266667pt;}
.x9a_c01357{left:695.813333pt;}
.x64_c01357{left:697.346667pt;}
.x7d_c01357{left:699.653333pt;}
.xbe_c01357{left:701.946667pt;}
.xdb_c01357{left:705.786667pt;}
.x68_c01357{left:707.333333pt;}
.xa7_c01357{left:708.866667pt;}
.xc1_c01357{left:710.400000pt;}
.xda_c01357{left:711.933333pt;}
.xb9_c01357{left:713.466667pt;}
.x76_c01357{left:717.306667pt;}
.xba_c01357{left:719.613333pt;}
.x93_c01357{left:721.920000pt;}
.xd5_c01357{left:723.453333pt;}
.xae_c01357{left:724.986667pt;}
.x65_c01357{left:729.600000pt;}
.x77_c01357{left:731.133333pt;}
.xca_c01357{left:733.440000pt;}
.xa9_c01357{left:735.746667pt;}
.x90_c01357{left:737.280000pt;}
.x69_c01357{left:738.813653pt;}
.x94_c01357{left:741.120000pt;}
.x8b_c01357{left:743.426667pt;}
.xd1_c01357{left:744.960000pt;}
.xb5_c01357{left:746.493333pt;}
.x82_c01357{left:748.026667pt;}
.x9d_c01357{left:749.573333pt;}
.x87_c01357{left:751.866667pt;}
.x8c_c01357{left:754.173333pt;}
.xb6_c01357{left:756.480000pt;}
.x6d_c01357{left:758.013333pt;}
.xa1_c01357{left:759.546667pt;}
.x83_c01357{left:761.093333pt;}
.x95_c01357{left:763.386667pt;}
.x78_c01357{left:764.933333pt;}
.xaa_c01357{left:766.466667pt;}
.xc4_c01357{left:768.000000pt;}
.xbf_c01357{left:769.533333pt;}
.x75_c01357{left:771.840000pt;}
.x79_c01357{left:774.906667pt;}
.x7e_c01357{left:776.453333pt;}
.x6e_c01357{left:777.986667pt;}
.xb2_c01357{left:779.520000pt;}
.xcd_c01357{left:781.053333pt;}
.xe3_c01357{left:785.666667pt;}
.xd6_c01357{left:787.973333pt;}
.xa2_c01357{left:790.266667pt;}
.xdf_c01357{left:792.573333pt;}
.xcf_c01357{left:794.106667pt;}
.xe4_c01357{left:850.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_033c03af40dbdeaeee9f57ba.woff2')format("woff");}.ff1_c01358{font-family:ff1_c01358;line-height:1.109863;font-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_c01358{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mf1_c01358{transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.061175,0.000000,0.000000,0.250000,0,0);}
.m12d_c01358{transform:matrix(0.074525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074525,0.000000,0.000000,0.250000,0,0);}
.m12c_c01358{transform:matrix(0.086625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086625,0.000000,0.000000,0.250000,0,0);}
.m110_c01358{transform:matrix(0.105750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105750,0.000000,0.000000,0.250000,0,0);}
.m104_c01358{transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107150,0.000000,0.000000,0.250000,0,0);}
.md4_c01358{transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109000,0.000000,0.000000,0.250000,0,0);}
.mbb_c01358{transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);}
.m10a_c01358{transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135425,0.000000,0.000000,0.250000,0,0);}
.m84_c01358{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m109_c01358{transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139050,0.000000,0.000000,0.250000,0,0);}
.mc9_c01358{transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140675,0.000000,0.000000,0.250000,0,0);}
.md_c01358{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10c_c01358{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);}
.mee_c01358{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);}
.mfe_c01358{transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151850,0.000000,0.000000,0.250000,0,0);}
.m101_c01358{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);}
.m10e_c01358{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m58_c01358{transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159550,0.000000,0.000000,0.250000,0,0);}
.m97_c01358{transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161625,0.000000,0.000000,0.250000,0,0);}
.ma0_c01358{transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162000,0.000000,0.000000,0.250000,0,0);}
.mb3_c01358{transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165425,0.000000,0.000000,0.250000,0,0);}
.m122_c01358{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);}
.m1c_c01358{transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169975,0.000000,0.000000,0.250000,0,0);}
.m10b_c01358{transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170625,0.000000,0.000000,0.250000,0,0);}
.mf7_c01358{transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174925,0.000000,0.000000,0.250000,0,0);}
.mf9_c01358{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);}
.mce_c01358{transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176225,0.000000,0.000000,0.250000,0,0);}
.m83_c01358{transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179000,0.000000,0.000000,0.250000,0,0);}
.mbe_c01358{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m94_c01358{transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179925,0.000000,0.000000,0.250000,0,0);}
.maf_c01358{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.mf3_c01358{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);}
.m82_c01358{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);}
.m119_c01358{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.mfd_c01358{transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187000,0.000000,0.000000,0.250000,0,0);}
.m76_c01358{transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187075,0.000000,0.000000,0.250000,0,0);}
.m31_c01358{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);}
.m105_c01358{transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188950,0.000000,0.000000,0.250000,0,0);}
.m90_c01358{transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189075,0.000000,0.000000,0.250000,0,0);}
.mef_c01358{transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190050,0.000000,0.000000,0.250000,0,0);}
.m60_c01358{transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190400,0.000000,0.000000,0.250000,0,0);}
.m107_c01358{transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190950,0.000000,0.000000,0.250000,0,0);}
.m106_c01358{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m129_c01358{transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194375,0.000000,0.000000,0.250000,0,0);}
.m88_c01358{transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194750,0.000000,0.000000,0.250000,0,0);}
.m95_c01358{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);}
.m99_c01358{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);}
.m7_c01358{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);}
.m22_c01358{transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197175,0.000000,0.000000,0.250000,0,0);}
.m47_c01358{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m11a_c01358{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);}
.mea_c01358{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);}
.m7e_c01358{transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197875,0.000000,0.000000,0.250000,0,0);}
.md6_c01358{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);}
.me1_c01358{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.m92_c01358{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);}
.mc0_c01358{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);}
.m41_c01358{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);}
.ma5_c01358{transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200325,0.000000,0.000000,0.250000,0,0);}
.mcc_c01358{transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200425,0.000000,0.000000,0.250000,0,0);}
.m39_c01358{transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201275,0.000000,0.000000,0.250000,0,0);}
.m9f_c01358{transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201900,0.000000,0.000000,0.250000,0,0);}
.m6b_c01358{transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202125,0.000000,0.000000,0.250000,0,0);}
.mcf_c01358{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.mda_c01358{transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202325,0.000000,0.000000,0.250000,0,0);}
.m81_c01358{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);}
.mfb_c01358{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);}
.md5_c01358{transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203250,0.000000,0.000000,0.250000,0,0);}
.m3e_c01358{transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203425,0.000000,0.000000,0.250000,0,0);}
.mb_c01358{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);}
.ma7_c01358{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);}
.m75_c01358{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);}
.m37_c01358{transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204500,0.000000,0.000000,0.250000,0,0);}
.m40_c01358{transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204525,0.000000,0.000000,0.250000,0,0);}
.m125_c01358{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.mc1_c01358{transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205850,0.000000,0.000000,0.250000,0,0);}
.mf4_c01358{transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205900,0.000000,0.000000,0.250000,0,0);}
.m59_c01358{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);}
.m126_c01358{transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206125,0.000000,0.000000,0.250000,0,0);}
.ma8_c01358{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.mdf_c01358{transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207175,0.000000,0.000000,0.250000,0,0);}
.mde_c01358{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);}
.m6_c01358{transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);}
.m73_c01358{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);}
.mab_c01358{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m61_c01358{transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208425,0.000000,0.000000,0.250000,0,0);}
.m5b_c01358{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);}
.m11f_c01358{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8f_c01358{transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209750,0.000000,0.000000,0.250000,0,0);}
.md0_c01358{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);}
.m23_c01358{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.me3_c01358{transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210975,0.000000,0.000000,0.250000,0,0);}
.m123_c01358{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);}
.md9_c01358{transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211175,0.000000,0.000000,0.250000,0,0);}
.md1_c01358{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);}
.mb5_c01358{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);}
.m48_c01358{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);}
.m113_c01358{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m74_c01358{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);}
.m5f_c01358{transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212675,0.000000,0.000000,0.250000,0,0);}
.m9c_c01358{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);}
.m117_c01358{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.mc5_c01358{transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213725,0.000000,0.000000,0.250000,0,0);}
.m77_c01358{transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214125,0.000000,0.000000,0.250000,0,0);}
.m10_c01358{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);}
.mb0_c01358{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);}
.me0_c01358{transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214775,0.000000,0.000000,0.250000,0,0);}
.m96_c01358{transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214825,0.000000,0.000000,0.250000,0,0);}
.mf6_c01358{transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214850,0.000000,0.000000,0.250000,0,0);}
.m28_c01358{transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215025,0.000000,0.000000,0.250000,0,0);}
.m78_c01358{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);}
.mf5_c01358{transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216275,0.000000,0.000000,0.250000,0,0);}
.mb9_c01358{transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216325,0.000000,0.000000,0.250000,0,0);}
.m11e_c01358{transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216475,0.000000,0.000000,0.250000,0,0);}
.m86_c01358{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);}
.m6c_c01358{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);}
.m116_c01358{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.mf0_c01358{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.m124_c01358{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);}
.m5c_c01358{transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217675,0.000000,0.000000,0.250000,0,0);}
.m8b_c01358{transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218125,0.000000,0.000000,0.250000,0,0);}
.m87_c01358{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);}
.md3_c01358{transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218850,0.000000,0.000000,0.250000,0,0);}
.m1b_c01358{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);}
.md8_c01358{transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219525,0.000000,0.000000,0.250000,0,0);}
.m5a_c01358{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);}
.m10d_c01358{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);}
.m4a_c01358{transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220475,0.000000,0.000000,0.250000,0,0);}
.mb2_c01358{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);}
.m80_c01358{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);}
.m11c_c01358{transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220825,0.000000,0.000000,0.250000,0,0);}
.mb7_c01358{transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221250,0.000000,0.000000,0.250000,0,0);}
.m5_c01358{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);}
.mdc_c01358{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);}
.m13_c01358{transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221950,0.000000,0.000000,0.250000,0,0);}
.m51_c01358{transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222025,0.000000,0.000000,0.250000,0,0);}
.m33_c01358{transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222225,0.000000,0.000000,0.250000,0,0);}
.m2f_c01358{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.mb1_c01358{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.mb4_c01358{transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222975,0.000000,0.000000,0.250000,0,0);}
.me4_c01358{transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223750,0.000000,0.000000,0.250000,0,0);}
.m111_c01358{transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223900,0.000000,0.000000,0.250000,0,0);}
.m100_c01358{transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);}
.mc8_c01358{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);}
.m5e_c01358{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m12b_c01358{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);}
.m79_c01358{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);}
.m64_c01358{transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225800,0.000000,0.000000,0.250000,0,0);}
.m128_c01358{transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225875,0.000000,0.000000,0.250000,0,0);}
.mc4_c01358{transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225900,0.000000,0.000000,0.250000,0,0);}
.m121_c01358{transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226125,0.000000,0.000000,0.250000,0,0);}
.m18_c01358{transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);}
.mdb_c01358{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);}
.m4d_c01358{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);}
.m6e_c01358{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);}
.m2e_c01358{transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227400,0.000000,0.000000,0.250000,0,0);}
.me2_c01358{transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228025,0.000000,0.000000,0.250000,0,0);}
.mf8_c01358{transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228050,0.000000,0.000000,0.250000,0,0);}
.m85_c01358{transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228075,0.000000,0.000000,0.250000,0,0);}
.mb6_c01358{transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228375,0.000000,0.000000,0.250000,0,0);}
.mba_c01358{transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228600,0.000000,0.000000,0.250000,0,0);}
.m3a_c01358{transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228650,0.000000,0.000000,0.250000,0,0);}
.m89_c01358{transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228700,0.000000,0.000000,0.250000,0,0);}
.med_c01358{transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229375,0.000000,0.000000,0.250000,0,0);}
.m114_c01358{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);}
.m67_c01358{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);}
.m44_c01358{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);}
.m93_c01358{transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229575,0.000000,0.000000,0.250000,0,0);}
.m10f_c01358{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);}
.mfa_c01358{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.m71_c01358{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);}
.m112_c01358{transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231800,0.000000,0.000000,0.250000,0,0);}
.mc3_c01358{transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231900,0.000000,0.000000,0.250000,0,0);}
.mca_c01358{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);}
.mbf_c01358{transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233350,0.000000,0.000000,0.250000,0,0);}
.m127_c01358{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);}
.md2_c01358{transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233575,0.000000,0.000000,0.250000,0,0);}
.mad_c01358{transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233600,0.000000,0.000000,0.250000,0,0);}
.m49_c01358{transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233950,0.000000,0.000000,0.250000,0,0);}
.m46_c01358{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);}
.mcd_c01358{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);}
.me5_c01358{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);}
.mae_c01358{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m2d_c01358{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);}
.mf2_c01358{transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237650,0.000000,0.000000,0.250000,0,0);}
.mc7_c01358{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);}
.m6a_c01358{transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238550,0.000000,0.000000,0.250000,0,0);}
.m7a_c01358{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);}
.mec_c01358{transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238725,0.000000,0.000000,0.250000,0,0);}
.mc6_c01358{transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239475,0.000000,0.000000,0.250000,0,0);}
.m7d_c01358{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);}
.m8e_c01358{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);}
.m69_c01358{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);}
.m53_c01358{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m98_c01358{transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241750,0.000000,0.000000,0.250000,0,0);}
.m9e_c01358{transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241950,0.000000,0.000000,0.250000,0,0);}
.m45_c01358{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.mff_c01358{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);}
.m8d_c01358{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);}
.me6_c01358{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m3b_c01358{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);}
.me7_c01358{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);}
.mc2_c01358{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);}
.m9b_c01358{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.m63_c01358{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);}
.mb8_c01358{transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246675,0.000000,0.000000,0.250000,0,0);}
.m29_c01358{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.meb_c01358{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);}
.m108_c01358{transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249950,0.000000,0.000000,0.250000,0,0);}
.m4c_c01358{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);}
.mc_c01358{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.mac_c01358{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);}
.m12_c01358{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);}
.m3c_c01358{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);}
.m8a_c01358{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);}
.m1f_c01358{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01358{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.ma_c01358{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m43_c01358{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);}
.ma6_c01358{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4_c01358{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);}
.m20_c01358{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);}
.m56_c01358{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m38_c01358{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);}
.m8_c01358{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m11_c01358{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m19_c01358{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);}
.m17_c01358{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m36_c01358{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);}
.m15_c01358{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);}
.m9a_c01358{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m30_c01358{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m27_c01358{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);}
.m14_c01358{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m50_c01358{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m32_c01358{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);}
.m7f_c01358{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01358{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.mf_c01358{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma4_c01358{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m3_c01358{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m34_c01358{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m16_c01358{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01358{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01358{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);}
.m91_c01358{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01358{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01358{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m2_c01358{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01358{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);}
.ma1_c01358{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);}
.m62_c01358{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.mcb_c01358{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);}
.m9d_c01358{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mfc_c01358{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m9_c01358{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);}
.maa_c01358{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01358{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.me_c01358{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m12f_c01358{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m7b_c01358{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);}
.m35_c01358{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m115_c01358{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m102_c01358{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m1_c01358{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m42_c01358{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m21_c01358{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m12e_c01358{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);}
.m3d_c01358{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);}
.m25_c01358{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01358{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);}
.m54_c01358{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.ma9_c01358{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m118_c01358{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m68_c01358{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m66_c01358{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m55_c01358{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.mbc_c01358{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);}
.m57_c01358{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01358{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m52_c01358{transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.462500,0.000000,0.000000,0.250000,0,0);}
.m72_c01358{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01358{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m11b_c01358{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.mdd_c01358{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m120_c01358{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);}
.mbd_c01358{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01358{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01358{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.ma3_c01358{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.ma2_c01358{transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.580000,0.000000,0.000000,0.250000,0,0);}
.me8_c01358{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m6f_c01358{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m12a_c01358{transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.717500,0.000000,0.000000,0.250000,0,0);}
.m0_c01358{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.me9_c01358{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);}
.m103_c01358{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);}
.m26_c01358{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.m70_c01358{transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.955000,0.000000,0.000000,0.250000,0,0);}
.m11d_c01358{transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.065000,0.000000,0.000000,0.250000,0,0);}
.md7_c01358{transform:matrix(2.130000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.130000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.130000,0.000000,0.000000,0.250000,0,0);}
.m65_c01358{transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.735000,0.000000,0.000000,0.250000,0,0);}
.m4e_c01358{transform:matrix(12.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(12.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(12.982500,0.000000,0.000000,0.250000,0,0);}
.v0_c01358{vertical-align:0.000000px;}
.v1_c01358{vertical-align:3.480000px;}
.v3_c01358{vertical-align:6.960000px;}
.v2_c01358{vertical-align:37.980000px;}
.ls1_c01358{letter-spacing:0.000000px;}
.ls0_c01358{letter-spacing:34.130700px;}
.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;}
}
.ws6_c01358{word-spacing:-21.032209px;}
.ws0_c01358{word-spacing:-15.102120px;}
.ws1_c01358{word-spacing:-12.529060px;}
.ws5_c01358{word-spacing:-3.185880px;}
.ws7_c01358{word-spacing:0.000000px;}
.ws3_c01358{word-spacing:76.101120px;}
.ws4_c01358{word-spacing:148.355280px;}
.ws2_c01358{word-spacing:602.754720px;}
.fc0_c01358{color:transparent;}
.fs5_c01358{font-size:3.456000px;}
.fsf_c01358{font-size:6.000000px;}
.fs15_c01358{font-size:6.900000px;}
.fse_c01358{font-size:10.380000px;}
.fs10_c01358{font-size:13.800000px;}
.fs0_c01358{font-size:17.280000px;}
.fs13_c01358{font-size:20.760000px;}
.fs17_c01358{font-size:24.180000px;}
.fsd_c01358{font-size:27.660000px;}
.fs6_c01358{font-size:31.080000px;}
.fs8_c01358{font-size:34.560000px;}
.fsc_c01358{font-size:38.040000px;}
.fsa_c01358{font-size:41.460000px;}
.fs9_c01358{font-size:44.940000px;}
.fsb_c01358{font-size:48.360000px;}
.fs7_c01358{font-size:51.840000px;}
.fs12_c01358{font-size:55.320000px;}
.fs14_c01358{font-size:58.740000px;}
.fs1_c01358{font-size:62.220000px;}
.fs3_c01358{font-size:65.640000px;}
.fs2_c01358{font-size:69.120000px;}
.fs11_c01358{font-size:72.600000px;}
.fs16_c01358{font-size:76.020000px;}
.fs4_c01358{font-size:79.500000px;}
.fs18_c01358{font-size:82.920000px;}
.fs19_c01358{font-size:86.400000px;}
.fs1a_c01358{font-size:131.340000px;}
.fs1b_c01358{font-size:224.640000px;}
.y0_c01358{bottom:0.000000px;}
.y1c4_c01358{bottom:202.170000px;}
.y1c8_c01358{bottom:203.040000px;}
.y1c9_c01358{bottom:206.490000px;}
.y1c7_c01358{bottom:207.360000px;}
.y1c6_c01358{bottom:208.230000px;}
.y1c5_c01358{bottom:209.085000px;}
.y1ca_c01358{bottom:217.725000px;}
.y1bc_c01358{bottom:221.190000px;}
.y1bd_c01358{bottom:222.045000px;}
.y1bf_c01358{bottom:223.770000px;}
.y1be_c01358{bottom:226.365000px;}
.y1c1_c01358{bottom:228.090000px;}
.y1c2_c01358{bottom:229.830000px;}
.y1c3_c01358{bottom:230.685000px;}
.y1c0_c01358{bottom:238.470000px;}
.y1b4_c01358{bottom:239.325000px;}
.y1b7_c01358{bottom:242.790000px;}
.y1b5_c01358{bottom:243.645000px;}
.y1ba_c01358{bottom:244.515000px;}
.y1b9_c01358{bottom:246.240000px;}
.y1b8_c01358{bottom:247.110000px;}
.y1bb_c01358{bottom:247.965000px;}
.y1b6_c01358{bottom:253.155000px;}
.y1a8_c01358{bottom:255.750000px;}
.y1a9_c01358{bottom:256.605000px;}
.y1ad_c01358{bottom:259.200000px;}
.y1ae_c01358{bottom:260.070000px;}
.y1b2_c01358{bottom:260.925000px;}
.y1ac_c01358{bottom:262.650000px;}
.y1af_c01358{bottom:263.520000px;}
.y1b1_c01358{bottom:264.390000px;}
.y1b3_c01358{bottom:265.245000px;}
.y1a7_c01358{bottom:266.115000px;}
.y1b0_c01358{bottom:266.970000px;}
.y1aa_c01358{bottom:272.160000px;}
.y1a6_c01358{bottom:273.030000px;}
.y1ab_c01358{bottom:273.885000px;}
.y1a1_c01358{bottom:274.755000px;}
.y19c_c01358{bottom:275.610000px;}
.y1a4_c01358{bottom:276.480000px;}
.y1a0_c01358{bottom:277.350000px;}
.y19e_c01358{bottom:278.205000px;}
.y19d_c01358{bottom:279.075000px;}
.y19f_c01358{bottom:279.930000px;}
.y1a3_c01358{bottom:280.800000px;}
.y1a2_c01358{bottom:281.670000px;}
.y1a5_c01358{bottom:282.525000px;}
.y194_c01358{bottom:292.035000px;}
.y193_c01358{bottom:292.890000px;}
.y196_c01358{bottom:293.760000px;}
.y199_c01358{bottom:295.485000px;}
.y19b_c01358{bottom:296.355000px;}
.y19a_c01358{bottom:297.210000px;}
.y197_c01358{bottom:298.080000px;}
.y198_c01358{bottom:298.950000px;}
.y195_c01358{bottom:302.400000px;}
.y18b_c01358{bottom:309.315000px;}
.y18e_c01358{bottom:311.040000px;}
.y190_c01358{bottom:311.910000px;}
.y192_c01358{bottom:313.635000px;}
.y18c_c01358{bottom:314.490000px;}
.y18d_c01358{bottom:315.360000px;}
.y18f_c01358{bottom:316.230000px;}
.y184_c01358{bottom:326.595000px;}
.y185_c01358{bottom:328.320000px;}
.y191_c01358{bottom:329.190000px;}
.y188_c01358{bottom:330.045000px;}
.y183_c01358{bottom:330.915000px;}
.y186_c01358{bottom:332.640000px;}
.y18a_c01358{bottom:333.510000px;}
.y187_c01358{bottom:334.365000px;}
.y189_c01358{bottom:335.235000px;}
.y17e_c01358{bottom:344.730000px;}
.y17d_c01358{bottom:348.195000px;}
.y180_c01358{bottom:349.050000px;}
.y182_c01358{bottom:349.920000px;}
.y17f_c01358{bottom:351.645000px;}
.y181_c01358{bottom:352.515000px;}
.y175_c01358{bottom:362.010000px;}
.y176_c01358{bottom:364.605000px;}
.y178_c01358{bottom:366.330000px;}
.y17b_c01358{bottom:371.520000px;}
.y177_c01358{bottom:373.245000px;}
.y179_c01358{bottom:374.115000px;}
.y17c_c01358{bottom:379.290000px;}
.y17a_c01358{bottom:380.160000px;}
.y173_c01358{bottom:381.885000px;}
.y16f_c01358{bottom:382.755000px;}
.y170_c01358{bottom:384.480000px;}
.y171_c01358{bottom:385.350000px;}
.y172_c01358{bottom:386.205000px;}
.y174_c01358{bottom:387.075000px;}
.y168_c01358{bottom:398.310000px;}
.y16d_c01358{bottom:400.035000px;}
.y16b_c01358{bottom:400.890000px;}
.y169_c01358{bottom:402.630000px;}
.y16a_c01358{bottom:403.485000px;}
.y16c_c01358{bottom:404.355000px;}
.y16e_c01358{bottom:405.210000px;}
.y160_c01358{bottom:415.590000px;}
.y161_c01358{bottom:416.445000px;}
.y162_c01358{bottom:418.170000px;}
.y15e_c01358{bottom:419.040000px;}
.y15f_c01358{bottom:419.910000px;}
.y166_c01358{bottom:420.765000px;}
.y163_c01358{bottom:421.635000px;}
.y167_c01358{bottom:422.490000px;}
.y164_c01358{bottom:423.360000px;}
.y165_c01358{bottom:425.955000px;}
.y158_c01358{bottom:432.870000px;}
.y15c_c01358{bottom:434.595000px;}
.y15b_c01358{bottom:435.450000px;}
.y159_c01358{bottom:437.190000px;}
.y15a_c01358{bottom:438.915000px;}
.y15d_c01358{bottom:440.640000px;}
.y151_c01358{bottom:451.875000px;}
.y153_c01358{bottom:452.730000px;}
.y152_c01358{bottom:455.325000px;}
.y156_c01358{bottom:456.195000px;}
.y154_c01358{bottom:457.050000px;}
.y155_c01358{bottom:457.920000px;}
.y157_c01358{bottom:458.790000px;}
.y149_c01358{bottom:466.560000px;}
.y14b_c01358{bottom:468.285000px;}
.y14c_c01358{bottom:469.155000px;}
.y14f_c01358{bottom:470.880000px;}
.y14e_c01358{bottom:471.750000px;}
.y14a_c01358{bottom:472.605000px;}
.y14d_c01358{bottom:473.475000px;}
.y150_c01358{bottom:476.070000px;}
.y140_c01358{bottom:485.565000px;}
.y141_c01358{bottom:487.290000px;}
.y143_c01358{bottom:489.030000px;}
.y148_c01358{bottom:490.755000px;}
.y146_c01358{bottom:491.610000px;}
.y144_c01358{bottom:492.480000px;}
.y145_c01358{bottom:493.350000px;}
.y142_c01358{bottom:494.205000px;}
.y147_c01358{bottom:497.670000px;}
.y13a_c01358{bottom:501.120000px;}
.y13d_c01358{bottom:503.715000px;}
.y13b_c01358{bottom:507.165000px;}
.y13c_c01358{bottom:508.890000px;}
.y13f_c01358{bottom:509.760000px;}
.y13e_c01358{bottom:510.630000px;}
.y131_c01358{bottom:520.125000px;}
.y134_c01358{bottom:521.850000px;}
.y135_c01358{bottom:523.590000px;}
.y133_c01358{bottom:524.445000px;}
.y132_c01358{bottom:525.315000px;}
.y136_c01358{bottom:527.910000px;}
.y137_c01358{bottom:528.765000px;}
.y139_c01358{bottom:529.635000px;}
.y138_c01358{bottom:530.490000px;}
.y129_c01358{bottom:535.680000px;}
.y12a_c01358{bottom:537.405000px;}
.y12b_c01358{bottom:538.275000px;}
.y12c_c01358{bottom:543.450000px;}
.y130_c01358{bottom:544.320000px;}
.y12e_c01358{bottom:546.915000px;}
.y12f_c01358{bottom:547.770000px;}
.y12d_c01358{bottom:552.960000px;}
.y123_c01358{bottom:558.150000px;}
.y124_c01358{bottom:559.875000px;}
.y125_c01358{bottom:561.600000px;}
.y127_c01358{bottom:562.470000px;}
.y126_c01358{bottom:563.325000px;}
.y128_c01358{bottom:564.195000px;}
.y11c_c01358{bottom:571.965000px;}
.y11d_c01358{bottom:572.835000px;}
.y11e_c01358{bottom:573.690000px;}
.y121_c01358{bottom:576.285000px;}
.y11f_c01358{bottom:578.010000px;}
.y122_c01358{bottom:578.880000px;}
.y120_c01358{bottom:580.605000px;}
.y115_c01358{bottom:590.970000px;}
.y117_c01358{bottom:591.840000px;}
.y116_c01358{bottom:592.710000px;}
.y114_c01358{bottom:593.565000px;}
.y119_c01358{bottom:595.290000px;}
.y118_c01358{bottom:597.030000px;}
.y11a_c01358{bottom:597.885000px;}
.y11b_c01358{bottom:603.930000px;}
.y10e_c01358{bottom:608.250000px;}
.y10f_c01358{bottom:609.990000px;}
.y10c_c01358{bottom:610.845000px;}
.y10d_c01358{bottom:612.570000px;}
.y110_c01358{bottom:613.440000px;}
.y112_c01358{bottom:614.310000px;}
.y111_c01358{bottom:615.165000px;}
.y113_c01358{bottom:616.035000px;}
.y102_c01358{bottom:623.805000px;}
.y105_c01358{bottom:625.530000px;}
.y106_c01358{bottom:628.125000px;}
.y103_c01358{bottom:628.995000px;}
.y104_c01358{bottom:629.850000px;}
.y108_c01358{bottom:630.720000px;}
.y107_c01358{bottom:631.590000px;}
.y109_c01358{bottom:633.315000px;}
.y10a_c01358{bottom:634.170000px;}
.y10b_c01358{bottom:635.040000px;}
.y100_c01358{bottom:643.680000px;}
.yfe_c01358{bottom:645.405000px;}
.yff_c01358{bottom:646.275000px;}
.y101_c01358{bottom:648.870000px;}
.yf8_c01358{bottom:661.830000px;}
.yf7_c01358{bottom:662.685000px;}
.yf9_c01358{bottom:663.555000px;}
.yfa_c01358{bottom:665.280000px;}
.yfb_c01358{bottom:666.150000px;}
.yfd_c01358{bottom:667.005000px;}
.yfc_c01358{bottom:667.875000px;}
.yee_c01358{bottom:675.645000px;}
.yef_c01358{bottom:677.370000px;}
.yf0_c01358{bottom:678.240000px;}
.yed_c01358{bottom:679.965000px;}
.yf1_c01358{bottom:680.835000px;}
.yf3_c01358{bottom:681.690000px;}
.yf2_c01358{bottom:682.560000px;}
.yf4_c01358{bottom:683.430000px;}
.yf5_c01358{bottom:684.285000px;}
.yf6_c01358{bottom:685.155000px;}
.ye6_c01358{bottom:692.925000px;}
.ye8_c01358{bottom:695.520000px;}
.ye9_c01358{bottom:696.390000px;}
.ye5_c01358{bottom:697.245000px;}
.yea_c01358{bottom:699.840000px;}
.yeb_c01358{bottom:700.710000px;}
.ye7_c01358{bottom:702.435000px;}
.yec_c01358{bottom:703.290000px;}
.ye0_c01358{bottom:712.800000px;}
.yde_c01358{bottom:714.525000px;}
.ydf_c01358{bottom:715.395000px;}
.ye2_c01358{bottom:717.120000px;}
.ye1_c01358{bottom:717.990000px;}
.ye3_c01358{bottom:718.845000px;}
.ye4_c01358{bottom:719.715000px;}
.yd6_c01358{bottom:727.485000px;}
.yd7_c01358{bottom:730.080000px;}
.yd9_c01358{bottom:730.950000px;}
.yd8_c01358{bottom:733.530000px;}
.yda_c01358{bottom:735.270000px;}
.ydc_c01358{bottom:736.125000px;}
.ydb_c01358{bottom:736.995000px;}
.ydd_c01358{bottom:737.850000px;}
.yd1_c01358{bottom:745.635000px;}
.ycf_c01358{bottom:746.490000px;}
.yd4_c01358{bottom:748.230000px;}
.yd0_c01358{bottom:749.955000px;}
.yd2_c01358{bottom:750.810000px;}
.yd3_c01358{bottom:752.550000px;}
.yd5_c01358{bottom:756.000000px;}
.y209_c01358{bottom:757.725000px;}
.yca_c01358{bottom:762.915000px;}
.yc9_c01358{bottom:766.365000px;}
.ycb_c01358{bottom:768.090000px;}
.ycc_c01358{bottom:768.960000px;}
.ycd_c01358{bottom:771.555000px;}
.yce_c01358{bottom:773.280000px;}
.yc2_c01358{bottom:780.195000px;}
.yc4_c01358{bottom:782.790000px;}
.yc5_c01358{bottom:786.240000px;}
.yc7_c01358{bottom:787.110000px;}
.yc6_c01358{bottom:787.965000px;}
.yc3_c01358{bottom:788.835000px;}
.yc8_c01358{bottom:790.560000px;}
.ybb_c01358{bottom:797.475000px;}
.yba_c01358{bottom:798.330000px;}
.ybd_c01358{bottom:800.070000px;}
.ybf_c01358{bottom:801.795000px;}
.ybc_c01358{bottom:804.390000px;}
.ybe_c01358{bottom:806.115000px;}
.yc0_c01358{bottom:806.970000px;}
.yc1_c01358{bottom:807.840000px;}
.yb6_c01358{bottom:818.205000px;}
.yb4_c01358{bottom:819.075000px;}
.yb5_c01358{bottom:819.930000px;}
.yb7_c01358{bottom:822.525000px;}
.yb8_c01358{bottom:823.395000px;}
.yb9_c01358{bottom:825.990000px;}
.yad_c01358{bottom:831.165000px;}
.yae_c01358{bottom:832.890000px;}
.yaf_c01358{bottom:838.950000px;}
.yb0_c01358{bottom:839.805000px;}
.yb1_c01358{bottom:840.675000px;}
.yb3_c01358{bottom:843.270000px;}
.yb2_c01358{bottom:844.125000px;}
.ya9_c01358{bottom:849.315000px;}
.yab_c01358{bottom:851.910000px;}
.ya7_c01358{bottom:852.765000px;}
.ya8_c01358{bottom:854.490000px;}
.yaa_c01358{bottom:855.360000px;}
.yac_c01358{bottom:861.405000px;}
.ya1_c01358{bottom:869.190000px;}
.ya4_c01358{bottom:870.045000px;}
.ya0_c01358{bottom:870.915000px;}
.ya3_c01358{bottom:874.365000px;}
.ya5_c01358{bottom:876.090000px;}
.ya6_c01358{bottom:876.960000px;}
.y9a_c01358{bottom:883.005000px;}
.ya2_c01358{bottom:884.730000px;}
.y9c_c01358{bottom:887.325000px;}
.y99_c01358{bottom:888.195000px;}
.y9b_c01358{bottom:889.050000px;}
.y9f_c01358{bottom:890.790000px;}
.y9d_c01358{bottom:892.515000px;}
.y9e_c01358{bottom:893.370000px;}
.y93_c01358{bottom:902.880000px;}
.y94_c01358{bottom:903.750000px;}
.y92_c01358{bottom:905.475000px;}
.y96_c01358{bottom:906.330000px;}
.y95_c01358{bottom:908.070000px;}
.y97_c01358{bottom:908.925000px;}
.y98_c01358{bottom:910.650000px;}
.y87_c01358{bottom:919.290000px;}
.y89_c01358{bottom:920.160000px;}
.y8f_c01358{bottom:922.755000px;}
.y88_c01358{bottom:923.610000px;}
.y8a_c01358{bottom:924.480000px;}
.y8b_c01358{bottom:925.350000px;}
.y8d_c01358{bottom:926.205000px;}
.y8e_c01358{bottom:927.075000px;}
.y90_c01358{bottom:927.930000px;}
.y8c_c01358{bottom:929.670000px;}
.y91_c01358{bottom:930.525000px;}
.y7f_c01358{bottom:936.570000px;}
.y7e_c01358{bottom:938.310000px;}
.y7c_c01358{bottom:939.165000px;}
.y83_c01358{bottom:940.035000px;}
.y7d_c01358{bottom:940.890000px;}
.y80_c01358{bottom:941.760000px;}
.y84_c01358{bottom:942.630000px;}
.y81_c01358{bottom:943.485000px;}
.y82_c01358{bottom:944.355000px;}
.y85_c01358{bottom:945.210000px;}
.y86_c01358{bottom:948.675000px;}
.y72_c01358{bottom:952.125000px;}
.y74_c01358{bottom:953.850000px;}
.y75_c01358{bottom:955.590000px;}
.y73_c01358{bottom:958.170000px;}
.y76_c01358{bottom:959.910000px;}
.y78_c01358{bottom:960.765000px;}
.y7a_c01358{bottom:962.490000px;}
.y77_c01358{bottom:964.230000px;}
.y79_c01358{bottom:965.085000px;}
.y7b_c01358{bottom:965.955000px;}
.y6a_c01358{bottom:973.725000px;}
.y69_c01358{bottom:974.595000px;}
.y6b_c01358{bottom:975.450000px;}
.y6c_c01358{bottom:977.190000px;}
.y6d_c01358{bottom:978.045000px;}
.y6e_c01358{bottom:979.770000px;}
.y6f_c01358{bottom:980.640000px;}
.y70_c01358{bottom:982.365000px;}
.y71_c01358{bottom:983.235000px;}
.y65_c01358{bottom:988.410000px;}
.y64_c01358{bottom:991.875000px;}
.y66_c01358{bottom:994.470000px;}
.y67_c01358{bottom:997.050000px;}
.y68_c01358{bottom:997.920000px;}
.y61_c01358{bottom:1004.835000px;}
.y60_c01358{bottom:1009.155000px;}
.y62_c01358{bottom:1010.880000px;}
.y63_c01358{bottom:1012.605000px;}
.y1fe_c01358{bottom:1014.330000px;}
.y5f_c01358{bottom:1023.840000px;}
.y5e_c01358{bottom:1026.435000px;}
.y5d_c01358{bottom:1027.290000px;}
.y1fd_c01358{bottom:1029.030000px;}
.y208_c01358{bottom:1035.930000px;}
.y59_c01358{bottom:1040.250000px;}
.y1f9_c01358{bottom:1043.715000px;}
.y57_c01358{bottom:1044.570000px;}
.y58_c01358{bottom:1045.440000px;}
.y5a_c01358{bottom:1046.310000px;}
.y5b_c01358{bottom:1047.165000px;}
.y5c_c01358{bottom:1048.035000px;}
.y1fa_c01358{bottom:1048.890000px;}
.y1fb_c01358{bottom:1049.760000px;}
.y1fc_c01358{bottom:1053.210000px;}
.y55_c01358{bottom:1059.270000px;}
.y56_c01358{bottom:1060.125000px;}
.y53_c01358{bottom:1061.850000px;}
.y54_c01358{bottom:1062.720000px;}
.y1f7_c01358{bottom:1066.170000px;}
.y1f8_c01358{bottom:1067.910000px;}
.y4d_c01358{bottom:1074.810000px;}
.y4f_c01358{bottom:1075.680000px;}
.y1f5_c01358{bottom:1078.275000px;}
.y50_c01358{bottom:1079.130000px;}
.y4e_c01358{bottom:1080.000000px;}
.y51_c01358{bottom:1080.870000px;}
.y52_c01358{bottom:1082.595000px;}
.y1f6_c01358{bottom:1085.190000px;}
.y4b_c01358{bottom:1094.685000px;}
.y1f3_c01358{bottom:1096.410000px;}
.y4c_c01358{bottom:1097.280000px;}
.y1f4_c01358{bottom:1101.600000px;}
.y47_c01358{bottom:1111.965000px;}
.y1ef_c01358{bottom:1112.835000px;}
.y1f0_c01358{bottom:1113.690000px;}
.y46_c01358{bottom:1114.560000px;}
.y48_c01358{bottom:1115.430000px;}
.y49_c01358{bottom:1117.155000px;}
.y4a_c01358{bottom:1118.010000px;}
.y1f2_c01358{bottom:1121.475000px;}
.y1f1_c01358{bottom:1123.200000px;}
.y41_c01358{bottom:1127.520000px;}
.y43_c01358{bottom:1129.245000px;}
.y1ec_c01358{bottom:1130.970000px;}
.y44_c01358{bottom:1131.840000px;}
.y42_c01358{bottom:1132.710000px;}
.y40_c01358{bottom:1133.565000px;}
.y45_c01358{bottom:1135.290000px;}
.y1ed_c01358{bottom:1136.160000px;}
.y1ee_c01358{bottom:1137.030000px;}
.y3b_c01358{bottom:1146.525000px;}
.y3f_c01358{bottom:1147.395000px;}
.y3c_c01358{bottom:1148.250000px;}
.y3a_c01358{bottom:1149.120000px;}
.y39_c01358{bottom:1149.990000px;}
.y3d_c01358{bottom:1151.715000px;}
.y3e_c01358{bottom:1152.570000px;}
.y1e8_c01358{bottom:1153.440000px;}
.y1e9_c01358{bottom:1155.165000px;}
.y1ea_c01358{bottom:1156.035000px;}
.y1eb_c01358{bottom:1157.760000px;}
.y35_c01358{bottom:1162.080000px;}
.y36_c01358{bottom:1163.805000px;}
.y38_c01358{bottom:1164.675000px;}
.y34_c01358{bottom:1166.400000px;}
.y1e6_c01358{bottom:1167.270000px;}
.y37_c01358{bottom:1169.850000px;}
.y1e5_c01358{bottom:1171.590000px;}
.y1e7_c01358{bottom:1173.315000px;}
.y30_c01358{bottom:1182.810000px;}
.y2f_c01358{bottom:1183.680000px;}
.y31_c01358{bottom:1184.550000px;}
.y1e4_c01358{bottom:1187.130000px;}
.y33_c01358{bottom:1188.000000px;}
.y1e2_c01358{bottom:1188.870000px;}
.y1e3_c01358{bottom:1193.190000px;}
.y32_c01358{bottom:1194.915000px;}
.y2c_c01358{bottom:1196.640000px;}
.y2b_c01358{bottom:1201.830000px;}
.y2d_c01358{bottom:1202.685000px;}
.y1dd_c01358{bottom:1203.555000px;}
.y2e_c01358{bottom:1205.280000px;}
.y1de_c01358{bottom:1207.005000px;}
.y1df_c01358{bottom:1207.875000px;}
.y1e0_c01358{bottom:1209.600000px;}
.y1e1_c01358{bottom:1210.470000px;}
.y26_c01358{bottom:1219.110000px;}
.y2a_c01358{bottom:1221.690000px;}
.y1d8_c01358{bottom:1222.560000px;}
.y1d9_c01358{bottom:1223.430000px;}
.y1da_c01358{bottom:1224.285000px;}
.y1db_c01358{bottom:1225.155000px;}
.y27_c01358{bottom:1226.880000px;}
.y1dc_c01358{bottom:1228.605000px;}
.y28_c01358{bottom:1230.330000px;}
.y29_c01358{bottom:1232.070000px;}
.y23_c01358{bottom:1233.795000px;}
.y25_c01358{bottom:1234.650000px;}
.y21_c01358{bottom:1235.520000px;}
.y1d6_c01358{bottom:1236.390000px;}
.y22_c01358{bottom:1237.245000px;}
.y24_c01358{bottom:1238.115000px;}
.y1d7_c01358{bottom:1238.970000px;}
.y1d5_c01358{bottom:1240.710000px;}
.y1d_c01358{bottom:1253.670000px;}
.y1e_c01358{bottom:1254.525000px;}
.y1f_c01358{bottom:1255.395000px;}
.y1d4_c01358{bottom:1256.250000px;}
.y20_c01358{bottom:1257.120000px;}
.y19_c01358{bottom:1268.355000px;}
.y1a_c01358{bottom:1270.080000px;}
.y17_c01358{bottom:1270.950000px;}
.y18_c01358{bottom:1272.675000px;}
.y1c_c01358{bottom:1273.530000px;}
.y1b_c01358{bottom:1274.400000px;}
.y1d2_c01358{bottom:1276.995000px;}
.y1d3_c01358{bottom:1277.850000px;}
.y14_c01358{bottom:1289.085000px;}
.y15_c01358{bottom:1289.955000px;}
.y16_c01358{bottom:1291.680000px;}
.y1cc_c01358{bottom:1292.550000px;}
.y1cf_c01358{bottom:1294.275000px;}
.y1ce_c01358{bottom:1296.000000px;}
.y1cd_c01358{bottom:1296.870000px;}
.y1d0_c01358{bottom:1298.595000px;}
.y10_c01358{bottom:1302.045000px;}
.y1d1_c01358{bottom:1302.915000px;}
.y12_c01358{bottom:1303.770000px;}
.ye_c01358{bottom:1304.640000px;}
.yf_c01358{bottom:1306.365000px;}
.y11_c01358{bottom:1307.235000px;}
.y13_c01358{bottom:1309.830000px;}
.y207_c01358{bottom:1311.555000px;}
.ya_c01358{bottom:1319.325000px;}
.y9_c01358{bottom:1320.195000px;}
.yb_c01358{bottom:1323.645000px;}
.yd_c01358{bottom:1326.240000px;}
.y206_c01358{bottom:1329.690000px;}
.y1cb_c01358{bottom:1330.560000px;}
.yc_c01358{bottom:1334.010000px;}
.y5_c01358{bottom:1335.750000px;}
.y6_c01358{bottom:1336.605000px;}
.y204_c01358{bottom:1340.925000px;}
.y7_c01358{bottom:1343.520000px;}
.y8_c01358{bottom:1344.390000px;}
.y3_c01358{bottom:1370.310000px;}
.y2_c01358{bottom:1371.165000px;}
.y4_c01358{bottom:1372.035000px;}
.y205_c01358{bottom:1377.210000px;}
.y202_c01358{bottom:1402.275000px;}
.y203_c01358{bottom:1404.000000px;}
.y201_c01358{bottom:1417.830000px;}
.y1_c01358{bottom:1423.005000px;}
.y1ff_c01358{bottom:1430.790000px;}
.y200_c01358{bottom:1435.965000px;}
.h7_c01358{height:3.110063px;}
.h11_c01358{height:5.399414px;}
.h17_c01358{height:6.209326px;}
.h10_c01358{height:9.340986px;}
.h12_c01358{height:12.418652px;}
.h2_c01358{height:15.550313px;}
.h15_c01358{height:18.681973px;}
.h1d_c01358{height:21.759639px;}
.hf_c01358{height:24.891299px;}
.h8_c01358{height:27.968965px;}
.ha_c01358{height:31.100625px;}
.he_c01358{height:34.232285px;}
.hc_c01358{height:37.309951px;}
.hb_c01358{height:40.441611px;}
.hd_c01358{height:43.519277px;}
.h1f_c01358{height:43.921611px;}
.h9_c01358{height:46.650937px;}
.h14_c01358{height:49.782598px;}
.h18_c01358{height:50.130938px;}
.h1c_c01358{height:50.479277px;}
.h16_c01358{height:52.860264px;}
.h1a_c01358{height:53.262598px;}
.h3_c01358{height:55.991924px;}
.h5_c01358{height:59.069590px;}
.h4_c01358{height:62.201250px;}
.h13_c01358{height:65.332910px;}
.h1b_c01358{height:68.410576px;}
.h6_c01358{height:71.542236px;}
.h1e_c01358{height:74.619902px;}
.h20_c01358{height:77.751563px;}
.h19_c01358{height:78.421611px;}
.h21_c01358{height:118.193174px;}
.h22_c01358{height:202.154062px;}
.h1_c01358{height:1513.500000px;}
.h0_c01358{height:1513.725000px;}
.w0_c01358{width:1083.450000px;}
.w1_c01358{width:1083.750000px;}
.x0_c01358{left:0.000000px;}
.xe2_c01358{left:194.400000px;}
.x58_c01358{left:200.445000px;}
.xe3_c01358{left:203.910000px;}
.x7_c01358{left:206.490000px;}
.x3b_c01358{left:209.085000px;}
.x95_c01358{left:210.810000px;}
.xb3_c01358{left:212.550000px;}
.x37_c01358{left:214.275000px;}
.x10_c01358{left:222.045000px;}
.x25_c01358{left:234.150000px;}
.x3f_c01358{left:235.875000px;}
.xd0_c01358{left:237.600000px;}
.xb6_c01358{left:239.325000px;}
.x4a_c01358{left:242.790000px;}
.x29_c01358{left:245.370000px;}
.x48_c01358{left:250.560000px;}
.x2d_c01358{left:253.155000px;}
.x15_c01358{left:254.880000px;}
.x1a_c01358{left:258.330000px;}
.x44_c01358{left:260.925000px;}
.x38_c01358{left:264.390000px;}
.x7e_c01358{left:266.115000px;}
.xb7_c01358{left:268.710000px;}
.x8_c01358{left:271.290000px;}
.xc0_c01358{left:276.480000px;}
.x32_c01358{left:278.205000px;}
.x40_c01358{left:280.800000px;}
.xb8_c01358{left:283.395000px;}
.x1f_c01358{left:285.120000px;}
.x11_c01358{left:286.845000px;}
.x67_c01358{left:288.570000px;}
.xac_c01358{left:290.310000px;}
.xd6_c01358{left:292.035000px;}
.x2a_c01358{left:293.760000px;}
.x86_c01358{left:295.485000px;}
.x46_c01358{left:297.210000px;}
.x16_c01358{left:300.675000px;}
.x4e_c01358{left:302.400000px;}
.xda_c01358{left:304.125000px;}
.xd3_c01358{left:307.590000px;}
.x39_c01358{left:309.315000px;}
.xe6_c01358{left:312.765000px;}
.x49_c01358{left:314.490000px;}
.x1b_c01358{left:316.230000px;}
.xc_c01358{left:318.810000px;}
.x3c_c01358{left:321.405000px;}
.x33_c01358{left:324.000000px;}
.xa0_c01358{left:325.725000px;}
.x2b_c01358{left:328.320000px;}
.xe9_c01358{left:330.045000px;}
.x41_c01358{left:332.640000px;}
.x20_c01358{left:334.365000px;}
.x5f_c01358{left:338.685000px;}
.x2e_c01358{left:340.410000px;}
.x12_c01358{left:342.150000px;}
.xad_c01358{left:343.875000px;}
.x87_c01358{left:346.470000px;}
.xd_c01358{left:354.240000px;}
.xcf_c01358{left:356.835000px;}
.x23_c01358{left:358.560000px;}
.x13_c01358{left:360.285000px;}
.x9d_c01358{left:362.880000px;}
.x17_c01358{left:364.605000px;}
.x90_c01358{left:366.330000px;}
.xbb_c01358{left:368.070000px;}
.xd7_c01358{left:369.795000px;}
.x34_c01358{left:371.520000px;}
.x26_c01358{left:374.115000px;}
.xa6_c01358{left:377.565000px;}
.xc1_c01358{left:379.290000px;}
.x27_c01358{left:381.885000px;}
.x3d_c01358{left:386.205000px;}
.x73_c01358{left:389.670000px;}
.x45_c01358{left:391.395000px;}
.x35_c01358{left:395.715000px;}
.x8d_c01358{left:397.440000px;}
.x14_c01358{left:400.890000px;}
.xc2_c01358{left:402.630000px;}
.xbc_c01358{left:408.675000px;}
.x2f_c01358{left:410.400000px;}
.x42_c01358{left:412.995000px;}
.x3e_c01358{left:414.720000px;}
.xc6_c01358{left:418.170000px;}
.x91_c01358{left:420.765000px;}
.xd8_c01358{left:425.955000px;}
.x1c_c01358{left:427.680000px;}
.x43_c01358{left:430.275000px;}
.x4b_c01358{left:432.000000px;}
.x30_c01358{left:436.320000px;}
.x36_c01358{left:442.365000px;}
.x1d_c01358{left:446.685000px;}
.x18_c01358{left:449.280000px;}
.x2_c01358{left:451.005000px;}
.xe_c01358{left:453.600000px;}
.x1e_c01358{left:457.050000px;}
.x31_c01358{left:460.515000px;}
.x74_c01358{left:462.240000px;}
.x60_c01358{left:464.835000px;}
.x9_c01358{left:466.560000px;}
.x3_c01358{left:470.010000px;}
.x24_c01358{left:472.605000px;}
.x21_c01358{left:475.200000px;}
.x28_c01358{left:476.925000px;}
.x2c_c01358{left:478.650000px;}
.x3a_c01358{left:481.245000px;}
.xf_c01358{left:483.840000px;}
.xc9_c01358{left:487.290000px;}
.xa_c01358{left:489.030000px;}
.x59_c01358{left:490.755000px;}
.x19_c01358{left:492.480000px;}
.xb_c01358{left:495.075000px;}
.x77_c01358{left:496.800000px;}
.x9e_c01358{left:498.525000px;}
.x22_c01358{left:501.120000px;}
.x4_c01358{left:503.715000px;}
.x47_c01358{left:506.310000px;}
.x6f_c01358{left:508.035000px;}
.xa7_c01358{left:509.760000px;}
.xdb_c01358{left:527.040000px;}
.x78_c01358{left:531.360000px;}
.x5_c01358{left:533.085000px;}
.xd4_c01358{left:534.810000px;}
.xea_c01358{left:536.550000px;}
.x4f_c01358{left:540.000000px;}
.xa4_c01358{left:541.725000px;}
.xb0_c01358{left:543.450000px;}
.xd1_c01358{left:547.770000px;}
.xf7_c01358{left:555.555000px;}
.x6_c01358{left:559.005000px;}
.xe4_c01358{left:561.600000px;}
.xd2_c01358{left:563.325000px;}
.x68_c01358{left:565.920000px;}
.x8e_c01358{left:567.645000px;}
.xb1_c01358{left:569.370000px;}
.xa1_c01358{left:571.110000px;}
.x9a_c01358{left:573.690000px;}
.xf3_c01358{left:577.155000px;}
.x69_c01358{left:578.880000px;}
.xf4_c01358{left:580.605000px;}
.x7f_c01358{left:582.330000px;}
.xca_c01358{left:586.650000px;}
.xde_c01358{left:588.390000px;}
.x79_c01358{left:590.970000px;}
.xb2_c01358{left:592.710000px;}
.x61_c01358{left:595.290000px;}
.x81_c01358{left:597.885000px;}
.xc7_c01358{left:601.350000px;}
.xe8_c01358{left:603.930000px;}
.x70_c01358{left:605.670000px;}
.x82_c01358{left:608.250000px;}
.x92_c01358{left:609.990000px;}
.xec_c01358{left:612.570000px;}
.x50_c01358{left:614.310000px;}
.xb9_c01358{left:616.035000px;}
.x1_c01358{left:617.760000px;}
.xae_c01358{left:619.485000px;}
.xa8_c01358{left:621.210000px;}
.x9f_c01358{left:623.805000px;}
.x62_c01358{left:626.400000px;}
.xed_c01358{left:628.125000px;}
.xf2_c01358{left:631.590000px;}
.x6a_c01358{left:634.170000px;}
.x83_c01358{left:639.360000px;}
.xcc_c01358{left:644.550000px;}
.xf6_c01358{left:646.275000px;}
.xa5_c01358{left:648.870000px;}
.x88_c01358{left:650.595000px;}
.xb4_c01358{left:652.320000px;}
.x93_c01358{left:654.915000px;}
.xa2_c01358{left:657.510000px;}
.x96_c01358{left:659.235000px;}
.xc3_c01358{left:660.960000px;}
.x7a_c01358{left:664.410000px;}
.x71_c01358{left:667.005000px;}
.xd9_c01358{left:669.600000px;}
.x51_c01358{left:671.325000px;}
.x75_c01358{left:676.515000px;}
.xc4_c01358{left:678.240000px;}
.xba_c01358{left:679.965000px;}
.xf5_c01358{left:683.430000px;}
.xdf_c01358{left:685.155000px;}
.x63_c01358{left:686.880000px;}
.x7b_c01358{left:692.925000px;}
.x52_c01358{left:694.650000px;}
.x89_c01358{left:696.390000px;}
.x8f_c01358{left:700.710000px;}
.x8a_c01358{left:706.755000px;}
.x94_c01358{left:709.350000px;}
.x72_c01358{left:711.075000px;}
.xf1_c01358{left:712.800000px;}
.x76_c01358{left:714.525000px;}
.xcb_c01358{left:717.120000px;}
.x5a_c01358{left:720.570000px;}
.xe5_c01358{left:726.630000px;}
.x9b_c01358{left:730.080000px;}
.x4c_c01358{left:731.805000px;}
.x53_c01358{left:733.530000px;}
.xb5_c01358{left:735.270000px;}
.x64_c01358{left:736.995000px;}
.xaf_c01358{left:738.720000px;}
.x97_c01358{left:740.445000px;}
.xeb_c01358{left:743.910000px;}
.x8b_c01358{left:745.635000px;}
.x7c_c01358{left:748.230000px;}
.x9c_c01358{left:750.810000px;}
.x5b_c01358{left:752.550000px;}
.xe0_c01358{left:754.275000px;}
.xd5_c01358{left:759.450000px;}
.x65_c01358{left:762.045000px;}
.x98_c01358{left:766.365000px;}
.x6b_c01358{left:768.960000px;}
.xcd_c01358{left:770.685000px;}
.x5c_c01358{left:773.280000px;}
.xa9_c01358{left:775.005000px;}
.x8c_c01358{left:776.730000px;}
.x7d_c01358{left:782.790000px;}
.xaa_c01358{left:784.515000px;}
.xbd_c01358{left:786.240000px;}
.xee_c01358{left:790.560000px;}
.x66_c01358{left:792.285000px;}
.x6c_c01358{left:794.880000px;}
.x99_c01358{left:796.605000px;}
.x54_c01358{left:799.200000px;}
.xbe_c01358{left:800.925000px;}
.x5d_c01358{left:802.650000px;}
.xce_c01358{left:804.390000px;}
.x85_c01358{left:806.970000px;}
.xab_c01358{left:809.565000px;}
.x6d_c01358{left:811.290000px;}
.x55_c01358{left:813.030000px;}
.xa3_c01358{left:817.350000px;}
.x56_c01358{left:819.075000px;}
.xf0_c01358{left:820.800000px;}
.xc5_c01358{left:823.395000px;}
.x80_c01358{left:825.120000px;}
.x84_c01358{left:826.845000px;}
.xbf_c01358{left:829.440000px;}
.xe7_c01358{left:831.165000px;}
.x4d_c01358{left:833.760000px;}
.x5e_c01358{left:836.355000px;}
.x6e_c01358{left:838.080000px;}
.x57_c01358{left:839.805000px;}
.xc8_c01358{left:846.720000px;}
.xef_c01358{left:848.445000px;}
.xdc_c01358{left:851.910000px;}
.xdd_c01358{left:863.130000px;}
.xe1_c01358{left:870.045000px;}
.xf9_c01358{left:963.360000px;}
.xfa_c01358{left:970.275000px;}
.xfc_c01358{left:972.000000px;}
.xf8_c01358{left:974.595000px;}
.xfb_c01358{left:984.960000px;}
.xfd_c01358{left:993.600000px;}
.x100_c01358{left:1023.840000px;}
.xff_c01358{left:1039.395000px;}
.xfe_c01358{left:1043.715000px;}
.x101_c01358{left:1059.270000px;}
.x102_c01358{left:1076.550000px;}
@media print{
.v0_c01358{vertical-align:0.000000pt;}
.v1_c01358{vertical-align:3.093333pt;}
.v3_c01358{vertical-align:6.186667pt;}
.v2_c01358{vertical-align:33.760000pt;}
.ls1_c01358{letter-spacing:0.000000pt;}
.ls0_c01358{letter-spacing:30.338400pt;}
.ws6_c01358{word-spacing:-18.695297pt;}
.ws0_c01358{word-spacing:-13.424107pt;}
.ws1_c01358{word-spacing:-11.136943pt;}
.ws5_c01358{word-spacing:-2.831893pt;}
.ws7_c01358{word-spacing:0.000000pt;}
.ws3_c01358{word-spacing:67.645440pt;}
.ws4_c01358{word-spacing:131.871360pt;}
.ws2_c01358{word-spacing:535.781973pt;}
.fs5_c01358{font-size:3.072000pt;}
.fsf_c01358{font-size:5.333333pt;}
.fs15_c01358{font-size:6.133333pt;}
.fse_c01358{font-size:9.226667pt;}
.fs10_c01358{font-size:12.266667pt;}
.fs0_c01358{font-size:15.360000pt;}
.fs13_c01358{font-size:18.453333pt;}
.fs17_c01358{font-size:21.493333pt;}
.fsd_c01358{font-size:24.586667pt;}
.fs6_c01358{font-size:27.626667pt;}
.fs8_c01358{font-size:30.720000pt;}
.fsc_c01358{font-size:33.813333pt;}
.fsa_c01358{font-size:36.853333pt;}
.fs9_c01358{font-size:39.946667pt;}
.fsb_c01358{font-size:42.986667pt;}
.fs7_c01358{font-size:46.080000pt;}
.fs12_c01358{font-size:49.173333pt;}
.fs14_c01358{font-size:52.213333pt;}
.fs1_c01358{font-size:55.306667pt;}
.fs3_c01358{font-size:58.346667pt;}
.fs2_c01358{font-size:61.440000pt;}
.fs11_c01358{font-size:64.533333pt;}
.fs16_c01358{font-size:67.573333pt;}
.fs4_c01358{font-size:70.666667pt;}
.fs18_c01358{font-size:73.706667pt;}
.fs19_c01358{font-size:76.800000pt;}
.fs1a_c01358{font-size:116.746667pt;}
.fs1b_c01358{font-size:199.680000pt;}
.y0_c01358{bottom:0.000000pt;}
.y1c4_c01358{bottom:179.706667pt;}
.y1c8_c01358{bottom:180.480000pt;}
.y1c9_c01358{bottom:183.546667pt;}
.y1c7_c01358{bottom:184.320000pt;}
.y1c6_c01358{bottom:185.093333pt;}
.y1c5_c01358{bottom:185.853333pt;}
.y1ca_c01358{bottom:193.533333pt;}
.y1bc_c01358{bottom:196.613333pt;}
.y1bd_c01358{bottom:197.373333pt;}
.y1bf_c01358{bottom:198.906667pt;}
.y1be_c01358{bottom:201.213333pt;}
.y1c1_c01358{bottom:202.746667pt;}
.y1c2_c01358{bottom:204.293333pt;}
.y1c3_c01358{bottom:205.053333pt;}
.y1c0_c01358{bottom:211.973333pt;}
.y1b4_c01358{bottom:212.733333pt;}
.y1b7_c01358{bottom:215.813333pt;}
.y1b5_c01358{bottom:216.573333pt;}
.y1ba_c01358{bottom:217.346667pt;}
.y1b9_c01358{bottom:218.880000pt;}
.y1b8_c01358{bottom:219.653333pt;}
.y1bb_c01358{bottom:220.413333pt;}
.y1b6_c01358{bottom:225.026667pt;}
.y1a8_c01358{bottom:227.333333pt;}
.y1a9_c01358{bottom:228.093333pt;}
.y1ad_c01358{bottom:230.400000pt;}
.y1ae_c01358{bottom:231.173333pt;}
.y1b2_c01358{bottom:231.933333pt;}
.y1ac_c01358{bottom:233.466667pt;}
.y1af_c01358{bottom:234.240000pt;}
.y1b1_c01358{bottom:235.013333pt;}
.y1b3_c01358{bottom:235.773333pt;}
.y1a7_c01358{bottom:236.546667pt;}
.y1b0_c01358{bottom:237.306667pt;}
.y1aa_c01358{bottom:241.920000pt;}
.y1a6_c01358{bottom:242.693333pt;}
.y1ab_c01358{bottom:243.453333pt;}
.y1a1_c01358{bottom:244.226667pt;}
.y19c_c01358{bottom:244.986667pt;}
.y1a4_c01358{bottom:245.760000pt;}
.y1a0_c01358{bottom:246.533333pt;}
.y19e_c01358{bottom:247.293333pt;}
.y19d_c01358{bottom:248.066667pt;}
.y19f_c01358{bottom:248.826667pt;}
.y1a3_c01358{bottom:249.600000pt;}
.y1a2_c01358{bottom:250.373333pt;}
.y1a5_c01358{bottom:251.133333pt;}
.y194_c01358{bottom:259.586667pt;}
.y193_c01358{bottom:260.346667pt;}
.y196_c01358{bottom:261.120000pt;}
.y199_c01358{bottom:262.653333pt;}
.y19b_c01358{bottom:263.426667pt;}
.y19a_c01358{bottom:264.186667pt;}
.y197_c01358{bottom:264.960000pt;}
.y198_c01358{bottom:265.733333pt;}
.y195_c01358{bottom:268.800000pt;}
.y18b_c01358{bottom:274.946667pt;}
.y18e_c01358{bottom:276.480000pt;}
.y190_c01358{bottom:277.253333pt;}
.y192_c01358{bottom:278.786667pt;}
.y18c_c01358{bottom:279.546667pt;}
.y18d_c01358{bottom:280.320000pt;}
.y18f_c01358{bottom:281.093333pt;}
.y184_c01358{bottom:290.306667pt;}
.y185_c01358{bottom:291.840000pt;}
.y191_c01358{bottom:292.613333pt;}
.y188_c01358{bottom:293.373333pt;}
.y183_c01358{bottom:294.146667pt;}
.y186_c01358{bottom:295.680000pt;}
.y18a_c01358{bottom:296.453333pt;}
.y187_c01358{bottom:297.213333pt;}
.y189_c01358{bottom:297.986667pt;}
.y17e_c01358{bottom:306.426667pt;}
.y17d_c01358{bottom:309.506667pt;}
.y180_c01358{bottom:310.266667pt;}
.y182_c01358{bottom:311.040000pt;}
.y17f_c01358{bottom:312.573333pt;}
.y181_c01358{bottom:313.346667pt;}
.y175_c01358{bottom:321.786667pt;}
.y176_c01358{bottom:324.093333pt;}
.y178_c01358{bottom:325.626667pt;}
.y17b_c01358{bottom:330.240000pt;}
.y177_c01358{bottom:331.773333pt;}
.y179_c01358{bottom:332.546667pt;}
.y17c_c01358{bottom:337.146667pt;}
.y17a_c01358{bottom:337.920000pt;}
.y173_c01358{bottom:339.453333pt;}
.y16f_c01358{bottom:340.226667pt;}
.y170_c01358{bottom:341.760000pt;}
.y171_c01358{bottom:342.533333pt;}
.y172_c01358{bottom:343.293333pt;}
.y174_c01358{bottom:344.066667pt;}
.y168_c01358{bottom:354.053333pt;}
.y16d_c01358{bottom:355.586667pt;}
.y16b_c01358{bottom:356.346667pt;}
.y169_c01358{bottom:357.893333pt;}
.y16a_c01358{bottom:358.653333pt;}
.y16c_c01358{bottom:359.426667pt;}
.y16e_c01358{bottom:360.186667pt;}
.y160_c01358{bottom:369.413333pt;}
.y161_c01358{bottom:370.173333pt;}
.y162_c01358{bottom:371.706667pt;}
.y15e_c01358{bottom:372.480000pt;}
.y15f_c01358{bottom:373.253333pt;}
.y166_c01358{bottom:374.013333pt;}
.y163_c01358{bottom:374.786667pt;}
.y167_c01358{bottom:375.546667pt;}
.y164_c01358{bottom:376.320000pt;}
.y165_c01358{bottom:378.626667pt;}
.y158_c01358{bottom:384.773333pt;}
.y15c_c01358{bottom:386.306667pt;}
.y15b_c01358{bottom:387.066667pt;}
.y159_c01358{bottom:388.613333pt;}
.y15a_c01358{bottom:390.146667pt;}
.y15d_c01358{bottom:391.680000pt;}
.y151_c01358{bottom:401.666667pt;}
.y153_c01358{bottom:402.426667pt;}
.y152_c01358{bottom:404.733333pt;}
.y156_c01358{bottom:405.506667pt;}
.y154_c01358{bottom:406.266667pt;}
.y155_c01358{bottom:407.040000pt;}
.y157_c01358{bottom:407.813333pt;}
.y149_c01358{bottom:414.720000pt;}
.y14b_c01358{bottom:416.253333pt;}
.y14c_c01358{bottom:417.026667pt;}
.y14f_c01358{bottom:418.560000pt;}
.y14e_c01358{bottom:419.333333pt;}
.y14a_c01358{bottom:420.093333pt;}
.y14d_c01358{bottom:420.866667pt;}
.y150_c01358{bottom:423.173333pt;}
.y140_c01358{bottom:431.613333pt;}
.y141_c01358{bottom:433.146667pt;}
.y143_c01358{bottom:434.693333pt;}
.y148_c01358{bottom:436.226667pt;}
.y146_c01358{bottom:436.986667pt;}
.y144_c01358{bottom:437.760000pt;}
.y145_c01358{bottom:438.533333pt;}
.y142_c01358{bottom:439.293333pt;}
.y147_c01358{bottom:442.373333pt;}
.y13a_c01358{bottom:445.440000pt;}
.y13d_c01358{bottom:447.746667pt;}
.y13b_c01358{bottom:450.813333pt;}
.y13c_c01358{bottom:452.346667pt;}
.y13f_c01358{bottom:453.120000pt;}
.y13e_c01358{bottom:453.893333pt;}
.y131_c01358{bottom:462.333333pt;}
.y134_c01358{bottom:463.866667pt;}
.y135_c01358{bottom:465.413333pt;}
.y133_c01358{bottom:466.173333pt;}
.y132_c01358{bottom:466.946667pt;}
.y136_c01358{bottom:469.253333pt;}
.y137_c01358{bottom:470.013333pt;}
.y139_c01358{bottom:470.786667pt;}
.y138_c01358{bottom:471.546667pt;}
.y129_c01358{bottom:476.160000pt;}
.y12a_c01358{bottom:477.693333pt;}
.y12b_c01358{bottom:478.466667pt;}
.y12c_c01358{bottom:483.066667pt;}
.y130_c01358{bottom:483.840000pt;}
.y12e_c01358{bottom:486.146667pt;}
.y12f_c01358{bottom:486.906667pt;}
.y12d_c01358{bottom:491.520000pt;}
.y123_c01358{bottom:496.133333pt;}
.y124_c01358{bottom:497.666667pt;}
.y125_c01358{bottom:499.200000pt;}
.y127_c01358{bottom:499.973333pt;}
.y126_c01358{bottom:500.733333pt;}
.y128_c01358{bottom:501.506667pt;}
.y11c_c01358{bottom:508.413333pt;}
.y11d_c01358{bottom:509.186667pt;}
.y11e_c01358{bottom:509.946667pt;}
.y121_c01358{bottom:512.253333pt;}
.y11f_c01358{bottom:513.786667pt;}
.y122_c01358{bottom:514.560000pt;}
.y120_c01358{bottom:516.093333pt;}
.y115_c01358{bottom:525.306667pt;}
.y117_c01358{bottom:526.080000pt;}
.y116_c01358{bottom:526.853333pt;}
.y114_c01358{bottom:527.613333pt;}
.y119_c01358{bottom:529.146667pt;}
.y118_c01358{bottom:530.693333pt;}
.y11a_c01358{bottom:531.453333pt;}
.y11b_c01358{bottom:536.826667pt;}
.y10e_c01358{bottom:540.666667pt;}
.y10f_c01358{bottom:542.213333pt;}
.y10c_c01358{bottom:542.973333pt;}
.y10d_c01358{bottom:544.506667pt;}
.y110_c01358{bottom:545.280000pt;}
.y112_c01358{bottom:546.053333pt;}
.y111_c01358{bottom:546.813333pt;}
.y113_c01358{bottom:547.586667pt;}
.y102_c01358{bottom:554.493333pt;}
.y105_c01358{bottom:556.026667pt;}
.y106_c01358{bottom:558.333333pt;}
.y103_c01358{bottom:559.106667pt;}
.y104_c01358{bottom:559.866667pt;}
.y108_c01358{bottom:560.640000pt;}
.y107_c01358{bottom:561.413333pt;}
.y109_c01358{bottom:562.946667pt;}
.y10a_c01358{bottom:563.706667pt;}
.y10b_c01358{bottom:564.480000pt;}
.y100_c01358{bottom:572.160000pt;}
.yfe_c01358{bottom:573.693333pt;}
.yff_c01358{bottom:574.466667pt;}
.y101_c01358{bottom:576.773333pt;}
.yf8_c01358{bottom:588.293333pt;}
.yf7_c01358{bottom:589.053333pt;}
.yf9_c01358{bottom:589.826667pt;}
.yfa_c01358{bottom:591.360000pt;}
.yfb_c01358{bottom:592.133333pt;}
.yfd_c01358{bottom:592.893333pt;}
.yfc_c01358{bottom:593.666667pt;}
.yee_c01358{bottom:600.573333pt;}
.yef_c01358{bottom:602.106667pt;}
.yf0_c01358{bottom:602.880000pt;}
.yed_c01358{bottom:604.413333pt;}
.yf1_c01358{bottom:605.186667pt;}
.yf3_c01358{bottom:605.946667pt;}
.yf2_c01358{bottom:606.720000pt;}
.yf4_c01358{bottom:607.493333pt;}
.yf5_c01358{bottom:608.253333pt;}
.yf6_c01358{bottom:609.026667pt;}
.ye6_c01358{bottom:615.933333pt;}
.ye8_c01358{bottom:618.240000pt;}
.ye9_c01358{bottom:619.013333pt;}
.ye5_c01358{bottom:619.773333pt;}
.yea_c01358{bottom:622.080000pt;}
.yeb_c01358{bottom:622.853333pt;}
.ye7_c01358{bottom:624.386667pt;}
.yec_c01358{bottom:625.146667pt;}
.ye0_c01358{bottom:633.600000pt;}
.yde_c01358{bottom:635.133333pt;}
.ydf_c01358{bottom:635.906667pt;}
.ye2_c01358{bottom:637.440000pt;}
.ye1_c01358{bottom:638.213333pt;}
.ye3_c01358{bottom:638.973333pt;}
.ye4_c01358{bottom:639.746667pt;}
.yd6_c01358{bottom:646.653333pt;}
.yd7_c01358{bottom:648.960000pt;}
.yd9_c01358{bottom:649.733333pt;}
.yd8_c01358{bottom:652.026667pt;}
.yda_c01358{bottom:653.573333pt;}
.ydc_c01358{bottom:654.333333pt;}
.ydb_c01358{bottom:655.106667pt;}
.ydd_c01358{bottom:655.866667pt;}
.yd1_c01358{bottom:662.786667pt;}
.ycf_c01358{bottom:663.546667pt;}
.yd4_c01358{bottom:665.093333pt;}
.yd0_c01358{bottom:666.626667pt;}
.yd2_c01358{bottom:667.386667pt;}
.yd3_c01358{bottom:668.933333pt;}
.yd5_c01358{bottom:672.000000pt;}
.y209_c01358{bottom:673.533333pt;}
.yca_c01358{bottom:678.146667pt;}
.yc9_c01358{bottom:681.213333pt;}
.ycb_c01358{bottom:682.746667pt;}
.ycc_c01358{bottom:683.520000pt;}
.ycd_c01358{bottom:685.826667pt;}
.yce_c01358{bottom:687.360000pt;}
.yc2_c01358{bottom:693.506667pt;}
.yc4_c01358{bottom:695.813333pt;}
.yc5_c01358{bottom:698.880000pt;}
.yc7_c01358{bottom:699.653333pt;}
.yc6_c01358{bottom:700.413333pt;}
.yc3_c01358{bottom:701.186667pt;}
.yc8_c01358{bottom:702.720000pt;}
.ybb_c01358{bottom:708.866667pt;}
.yba_c01358{bottom:709.626667pt;}
.ybd_c01358{bottom:711.173333pt;}
.ybf_c01358{bottom:712.706667pt;}
.ybc_c01358{bottom:715.013333pt;}
.ybe_c01358{bottom:716.546667pt;}
.yc0_c01358{bottom:717.306667pt;}
.yc1_c01358{bottom:718.080000pt;}
.yb6_c01358{bottom:727.293333pt;}
.yb4_c01358{bottom:728.066667pt;}
.yb5_c01358{bottom:728.826667pt;}
.yb7_c01358{bottom:731.133333pt;}
.yb8_c01358{bottom:731.906667pt;}
.yb9_c01358{bottom:734.213333pt;}
.yad_c01358{bottom:738.813333pt;}
.yae_c01358{bottom:740.346667pt;}
.yaf_c01358{bottom:745.733333pt;}
.yb0_c01358{bottom:746.493333pt;}
.yb1_c01358{bottom:747.266667pt;}
.yb3_c01358{bottom:749.573333pt;}
.yb2_c01358{bottom:750.333333pt;}
.ya9_c01358{bottom:754.946667pt;}
.yab_c01358{bottom:757.253333pt;}
.ya7_c01358{bottom:758.013333pt;}
.ya8_c01358{bottom:759.546667pt;}
.yaa_c01358{bottom:760.320000pt;}
.yac_c01358{bottom:765.693333pt;}
.ya1_c01358{bottom:772.613333pt;}
.ya4_c01358{bottom:773.373333pt;}
.ya0_c01358{bottom:774.146667pt;}
.ya3_c01358{bottom:777.213333pt;}
.ya5_c01358{bottom:778.746667pt;}
.ya6_c01358{bottom:779.520000pt;}
.y9a_c01358{bottom:784.893333pt;}
.ya2_c01358{bottom:786.426667pt;}
.y9c_c01358{bottom:788.733333pt;}
.y99_c01358{bottom:789.506667pt;}
.y9b_c01358{bottom:790.266667pt;}
.y9f_c01358{bottom:791.813333pt;}
.y9d_c01358{bottom:793.346667pt;}
.y9e_c01358{bottom:794.106667pt;}
.y93_c01358{bottom:802.560000pt;}
.y94_c01358{bottom:803.333333pt;}
.y92_c01358{bottom:804.866667pt;}
.y96_c01358{bottom:805.626667pt;}
.y95_c01358{bottom:807.173333pt;}
.y97_c01358{bottom:807.933333pt;}
.y98_c01358{bottom:809.466667pt;}
.y87_c01358{bottom:817.146667pt;}
.y89_c01358{bottom:817.920000pt;}
.y8f_c01358{bottom:820.226667pt;}
.y88_c01358{bottom:820.986667pt;}
.y8a_c01358{bottom:821.760000pt;}
.y8b_c01358{bottom:822.533333pt;}
.y8d_c01358{bottom:823.293333pt;}
.y8e_c01358{bottom:824.066667pt;}
.y90_c01358{bottom:824.826667pt;}
.y8c_c01358{bottom:826.373333pt;}
.y91_c01358{bottom:827.133333pt;}
.y7f_c01358{bottom:832.506667pt;}
.y7e_c01358{bottom:834.053333pt;}
.y7c_c01358{bottom:834.813333pt;}
.y83_c01358{bottom:835.586667pt;}
.y7d_c01358{bottom:836.346667pt;}
.y80_c01358{bottom:837.120000pt;}
.y84_c01358{bottom:837.893333pt;}
.y81_c01358{bottom:838.653333pt;}
.y82_c01358{bottom:839.426667pt;}
.y85_c01358{bottom:840.186667pt;}
.y86_c01358{bottom:843.266667pt;}
.y72_c01358{bottom:846.333333pt;}
.y74_c01358{bottom:847.866667pt;}
.y75_c01358{bottom:849.413333pt;}
.y73_c01358{bottom:851.706667pt;}
.y76_c01358{bottom:853.253333pt;}
.y78_c01358{bottom:854.013333pt;}
.y7a_c01358{bottom:855.546667pt;}
.y77_c01358{bottom:857.093333pt;}
.y79_c01358{bottom:857.853333pt;}
.y7b_c01358{bottom:858.626667pt;}
.y6a_c01358{bottom:865.533333pt;}
.y69_c01358{bottom:866.306667pt;}
.y6b_c01358{bottom:867.066667pt;}
.y6c_c01358{bottom:868.613333pt;}
.y6d_c01358{bottom:869.373333pt;}
.y6e_c01358{bottom:870.906667pt;}
.y6f_c01358{bottom:871.680000pt;}
.y70_c01358{bottom:873.213333pt;}
.y71_c01358{bottom:873.986667pt;}
.y65_c01358{bottom:878.586667pt;}
.y64_c01358{bottom:881.666667pt;}
.y66_c01358{bottom:883.973333pt;}
.y67_c01358{bottom:886.266667pt;}
.y68_c01358{bottom:887.040000pt;}
.y61_c01358{bottom:893.186667pt;}
.y60_c01358{bottom:897.026667pt;}
.y62_c01358{bottom:898.560000pt;}
.y63_c01358{bottom:900.093333pt;}
.y1fe_c01358{bottom:901.626667pt;}
.y5f_c01358{bottom:910.080000pt;}
.y5e_c01358{bottom:912.386667pt;}
.y5d_c01358{bottom:913.146667pt;}
.y1fd_c01358{bottom:914.693333pt;}
.y208_c01358{bottom:920.826667pt;}
.y59_c01358{bottom:924.666667pt;}
.y1f9_c01358{bottom:927.746667pt;}
.y57_c01358{bottom:928.506667pt;}
.y58_c01358{bottom:929.280000pt;}
.y5a_c01358{bottom:930.053333pt;}
.y5b_c01358{bottom:930.813333pt;}
.y5c_c01358{bottom:931.586667pt;}
.y1fa_c01358{bottom:932.346667pt;}
.y1fb_c01358{bottom:933.120000pt;}
.y1fc_c01358{bottom:936.186667pt;}
.y55_c01358{bottom:941.573333pt;}
.y56_c01358{bottom:942.333333pt;}
.y53_c01358{bottom:943.866667pt;}
.y54_c01358{bottom:944.640000pt;}
.y1f7_c01358{bottom:947.706667pt;}
.y1f8_c01358{bottom:949.253333pt;}
.y4d_c01358{bottom:955.386667pt;}
.y4f_c01358{bottom:956.160000pt;}
.y1f5_c01358{bottom:958.466667pt;}
.y50_c01358{bottom:959.226667pt;}
.y4e_c01358{bottom:960.000000pt;}
.y51_c01358{bottom:960.773333pt;}
.y52_c01358{bottom:962.306667pt;}
.y1f6_c01358{bottom:964.613333pt;}
.y4b_c01358{bottom:973.053333pt;}
.y1f3_c01358{bottom:974.586667pt;}
.y4c_c01358{bottom:975.360000pt;}
.y1f4_c01358{bottom:979.200000pt;}
.y47_c01358{bottom:988.413333pt;}
.y1ef_c01358{bottom:989.186667pt;}
.y1f0_c01358{bottom:989.946667pt;}
.y46_c01358{bottom:990.720000pt;}
.y48_c01358{bottom:991.493333pt;}
.y49_c01358{bottom:993.026667pt;}
.y4a_c01358{bottom:993.786667pt;}
.y1f2_c01358{bottom:996.866667pt;}
.y1f1_c01358{bottom:998.400000pt;}
.y41_c01358{bottom:1002.240000pt;}
.y43_c01358{bottom:1003.773333pt;}
.y1ec_c01358{bottom:1005.306667pt;}
.y44_c01358{bottom:1006.080000pt;}
.y42_c01358{bottom:1006.853333pt;}
.y40_c01358{bottom:1007.613333pt;}
.y45_c01358{bottom:1009.146667pt;}
.y1ed_c01358{bottom:1009.920000pt;}
.y1ee_c01358{bottom:1010.693333pt;}
.y3b_c01358{bottom:1019.133333pt;}
.y3f_c01358{bottom:1019.906667pt;}
.y3c_c01358{bottom:1020.666667pt;}
.y3a_c01358{bottom:1021.440000pt;}
.y39_c01358{bottom:1022.213333pt;}
.y3d_c01358{bottom:1023.746667pt;}
.y3e_c01358{bottom:1024.506667pt;}
.y1e8_c01358{bottom:1025.280000pt;}
.y1e9_c01358{bottom:1026.813333pt;}
.y1ea_c01358{bottom:1027.586667pt;}
.y1eb_c01358{bottom:1029.120000pt;}
.y35_c01358{bottom:1032.960000pt;}
.y36_c01358{bottom:1034.493333pt;}
.y38_c01358{bottom:1035.266667pt;}
.y34_c01358{bottom:1036.800000pt;}
.y1e6_c01358{bottom:1037.573333pt;}
.y37_c01358{bottom:1039.866667pt;}
.y1e5_c01358{bottom:1041.413333pt;}
.y1e7_c01358{bottom:1042.946667pt;}
.y30_c01358{bottom:1051.386667pt;}
.y2f_c01358{bottom:1052.160000pt;}
.y31_c01358{bottom:1052.933333pt;}
.y1e4_c01358{bottom:1055.226667pt;}
.y33_c01358{bottom:1056.000000pt;}
.y1e2_c01358{bottom:1056.773333pt;}
.y1e3_c01358{bottom:1060.613333pt;}
.y32_c01358{bottom:1062.146667pt;}
.y2c_c01358{bottom:1063.680000pt;}
.y2b_c01358{bottom:1068.293333pt;}
.y2d_c01358{bottom:1069.053333pt;}
.y1dd_c01358{bottom:1069.826667pt;}
.y2e_c01358{bottom:1071.360000pt;}
.y1de_c01358{bottom:1072.893333pt;}
.y1df_c01358{bottom:1073.666667pt;}
.y1e0_c01358{bottom:1075.200000pt;}
.y1e1_c01358{bottom:1075.973333pt;}
.y26_c01358{bottom:1083.653333pt;}
.y2a_c01358{bottom:1085.946667pt;}
.y1d8_c01358{bottom:1086.720000pt;}
.y1d9_c01358{bottom:1087.493333pt;}
.y1da_c01358{bottom:1088.253333pt;}
.y1db_c01358{bottom:1089.026667pt;}
.y27_c01358{bottom:1090.560000pt;}
.y1dc_c01358{bottom:1092.093333pt;}
.y28_c01358{bottom:1093.626667pt;}
.y29_c01358{bottom:1095.173333pt;}
.y23_c01358{bottom:1096.706667pt;}
.y25_c01358{bottom:1097.466667pt;}
.y21_c01358{bottom:1098.240000pt;}
.y1d6_c01358{bottom:1099.013333pt;}
.y22_c01358{bottom:1099.773333pt;}
.y24_c01358{bottom:1100.546667pt;}
.y1d7_c01358{bottom:1101.306667pt;}
.y1d5_c01358{bottom:1102.853333pt;}
.y1d_c01358{bottom:1114.373333pt;}
.y1e_c01358{bottom:1115.133333pt;}
.y1f_c01358{bottom:1115.906667pt;}
.y1d4_c01358{bottom:1116.666667pt;}
.y20_c01358{bottom:1117.440000pt;}
.y19_c01358{bottom:1127.426667pt;}
.y1a_c01358{bottom:1128.960000pt;}
.y17_c01358{bottom:1129.733333pt;}
.y18_c01358{bottom:1131.266667pt;}
.y1c_c01358{bottom:1132.026667pt;}
.y1b_c01358{bottom:1132.800000pt;}
.y1d2_c01358{bottom:1135.106667pt;}
.y1d3_c01358{bottom:1135.866667pt;}
.y14_c01358{bottom:1145.853333pt;}
.y15_c01358{bottom:1146.626667pt;}
.y16_c01358{bottom:1148.160000pt;}
.y1cc_c01358{bottom:1148.933333pt;}
.y1cf_c01358{bottom:1150.466667pt;}
.y1ce_c01358{bottom:1152.000000pt;}
.y1cd_c01358{bottom:1152.773333pt;}
.y1d0_c01358{bottom:1154.306667pt;}
.y10_c01358{bottom:1157.373333pt;}
.y1d1_c01358{bottom:1158.146667pt;}
.y12_c01358{bottom:1158.906667pt;}
.ye_c01358{bottom:1159.680000pt;}
.yf_c01358{bottom:1161.213333pt;}
.y11_c01358{bottom:1161.986667pt;}
.y13_c01358{bottom:1164.293333pt;}
.y207_c01358{bottom:1165.826667pt;}
.ya_c01358{bottom:1172.733333pt;}
.y9_c01358{bottom:1173.506667pt;}
.yb_c01358{bottom:1176.573333pt;}
.yd_c01358{bottom:1178.880000pt;}
.y206_c01358{bottom:1181.946667pt;}
.y1cb_c01358{bottom:1182.720000pt;}
.yc_c01358{bottom:1185.786667pt;}
.y5_c01358{bottom:1187.333333pt;}
.y6_c01358{bottom:1188.093333pt;}
.y204_c01358{bottom:1191.933333pt;}
.y7_c01358{bottom:1194.240000pt;}
.y8_c01358{bottom:1195.013333pt;}
.y3_c01358{bottom:1218.053333pt;}
.y2_c01358{bottom:1218.813333pt;}
.y4_c01358{bottom:1219.586667pt;}
.y205_c01358{bottom:1224.186667pt;}
.y202_c01358{bottom:1246.466667pt;}
.y203_c01358{bottom:1248.000000pt;}
.y201_c01358{bottom:1260.293333pt;}
.y1_c01358{bottom:1264.893333pt;}
.y1ff_c01358{bottom:1271.813333pt;}
.y200_c01358{bottom:1276.413333pt;}
.h7_c01358{height:2.764500pt;}
.h11_c01358{height:4.799479pt;}
.h17_c01358{height:5.519401pt;}
.h10_c01358{height:8.303099pt;}
.h12_c01358{height:11.038802pt;}
.h2_c01358{height:13.822500pt;}
.h15_c01358{height:16.606198pt;}
.h1d_c01358{height:19.341901pt;}
.hf_c01358{height:22.125599pt;}
.h8_c01358{height:24.861302pt;}
.ha_c01358{height:27.645000pt;}
.he_c01358{height:30.428698pt;}
.hc_c01358{height:33.164401pt;}
.hb_c01358{height:35.948099pt;}
.hd_c01358{height:38.683802pt;}
.h1f_c01358{height:39.041432pt;}
.h9_c01358{height:41.467500pt;}
.h14_c01358{height:44.251198pt;}
.h18_c01358{height:44.560833pt;}
.h1c_c01358{height:44.870469pt;}
.h16_c01358{height:46.986901pt;}
.h1a_c01358{height:47.344531pt;}
.h3_c01358{height:49.770599pt;}
.h5_c01358{height:52.506302pt;}
.h4_c01358{height:55.290000pt;}
.h13_c01358{height:58.073698pt;}
.h1b_c01358{height:60.809401pt;}
.h6_c01358{height:63.593099pt;}
.h1e_c01358{height:66.328802pt;}
.h20_c01358{height:69.112500pt;}
.h19_c01358{height:69.708099pt;}
.h21_c01358{height:105.060599pt;}
.h22_c01358{height:179.692500pt;}
.h1_c01358{height:1345.333333pt;}
.h0_c01358{height:1345.533333pt;}
.w0_c01358{width:963.066667pt;}
.w1_c01358{width:963.333333pt;}
.x0_c01358{left:0.000000pt;}
.xe2_c01358{left:172.800000pt;}
.x58_c01358{left:178.173333pt;}
.xe3_c01358{left:181.253333pt;}
.x7_c01358{left:183.546667pt;}
.x3b_c01358{left:185.853333pt;}
.x95_c01358{left:187.386667pt;}
.xb3_c01358{left:188.933333pt;}
.x37_c01358{left:190.466667pt;}
.x10_c01358{left:197.373333pt;}
.x25_c01358{left:208.133333pt;}
.x3f_c01358{left:209.666667pt;}
.xd0_c01358{left:211.200000pt;}
.xb6_c01358{left:212.733333pt;}
.x4a_c01358{left:215.813333pt;}
.x29_c01358{left:218.106667pt;}
.x48_c01358{left:222.720000pt;}
.x2d_c01358{left:225.026667pt;}
.x15_c01358{left:226.560000pt;}
.x1a_c01358{left:229.626667pt;}
.x44_c01358{left:231.933333pt;}
.x38_c01358{left:235.013333pt;}
.x7e_c01358{left:236.546667pt;}
.xb7_c01358{left:238.853333pt;}
.x8_c01358{left:241.146667pt;}
.xc0_c01358{left:245.760000pt;}
.x32_c01358{left:247.293333pt;}
.x40_c01358{left:249.600000pt;}
.xb8_c01358{left:251.906667pt;}
.x1f_c01358{left:253.440000pt;}
.x11_c01358{left:254.973333pt;}
.x67_c01358{left:256.506667pt;}
.xac_c01358{left:258.053333pt;}
.xd6_c01358{left:259.586667pt;}
.x2a_c01358{left:261.120000pt;}
.x86_c01358{left:262.653333pt;}
.x46_c01358{left:264.186667pt;}
.x16_c01358{left:267.266667pt;}
.x4e_c01358{left:268.800000pt;}
.xda_c01358{left:270.333333pt;}
.xd3_c01358{left:273.413333pt;}
.x39_c01358{left:274.946667pt;}
.xe6_c01358{left:278.013333pt;}
.x49_c01358{left:279.546667pt;}
.x1b_c01358{left:281.093333pt;}
.xc_c01358{left:283.386667pt;}
.x3c_c01358{left:285.693333pt;}
.x33_c01358{left:288.000000pt;}
.xa0_c01358{left:289.533333pt;}
.x2b_c01358{left:291.840000pt;}
.xe9_c01358{left:293.373333pt;}
.x41_c01358{left:295.680000pt;}
.x20_c01358{left:297.213333pt;}
.x5f_c01358{left:301.053333pt;}
.x2e_c01358{left:302.586667pt;}
.x12_c01358{left:304.133333pt;}
.xad_c01358{left:305.666667pt;}
.x87_c01358{left:307.973333pt;}
.xd_c01358{left:314.880000pt;}
.xcf_c01358{left:317.186667pt;}
.x23_c01358{left:318.720000pt;}
.x13_c01358{left:320.253333pt;}
.x9d_c01358{left:322.560000pt;}
.x17_c01358{left:324.093333pt;}
.x90_c01358{left:325.626667pt;}
.xbb_c01358{left:327.173333pt;}
.xd7_c01358{left:328.706667pt;}
.x34_c01358{left:330.240000pt;}
.x26_c01358{left:332.546667pt;}
.xa6_c01358{left:335.613333pt;}
.xc1_c01358{left:337.146667pt;}
.x27_c01358{left:339.453333pt;}
.x3d_c01358{left:343.293333pt;}
.x73_c01358{left:346.373333pt;}
.x45_c01358{left:347.906667pt;}
.x35_c01358{left:351.746667pt;}
.x8d_c01358{left:353.280000pt;}
.x14_c01358{left:356.346667pt;}
.xc2_c01358{left:357.893333pt;}
.xbc_c01358{left:363.266667pt;}
.x2f_c01358{left:364.800000pt;}
.x42_c01358{left:367.106667pt;}
.x3e_c01358{left:368.640000pt;}
.xc6_c01358{left:371.706667pt;}
.x91_c01358{left:374.013333pt;}
.xd8_c01358{left:378.626667pt;}
.x1c_c01358{left:380.160000pt;}
.x43_c01358{left:382.466667pt;}
.x4b_c01358{left:384.000000pt;}
.x30_c01358{left:387.840000pt;}
.x36_c01358{left:393.213333pt;}
.x1d_c01358{left:397.053333pt;}
.x18_c01358{left:399.360000pt;}
.x2_c01358{left:400.893333pt;}
.xe_c01358{left:403.200000pt;}
.x1e_c01358{left:406.266667pt;}
.x31_c01358{left:409.346667pt;}
.x74_c01358{left:410.880000pt;}
.x60_c01358{left:413.186667pt;}
.x9_c01358{left:414.720000pt;}
.x3_c01358{left:417.786667pt;}
.x24_c01358{left:420.093333pt;}
.x21_c01358{left:422.400000pt;}
.x28_c01358{left:423.933333pt;}
.x2c_c01358{left:425.466667pt;}
.x3a_c01358{left:427.773333pt;}
.xf_c01358{left:430.080000pt;}
.xc9_c01358{left:433.146667pt;}
.xa_c01358{left:434.693333pt;}
.x59_c01358{left:436.226667pt;}
.x19_c01358{left:437.760000pt;}
.xb_c01358{left:440.066667pt;}
.x77_c01358{left:441.600000pt;}
.x9e_c01358{left:443.133333pt;}
.x22_c01358{left:445.440000pt;}
.x4_c01358{left:447.746667pt;}
.x47_c01358{left:450.053333pt;}
.x6f_c01358{left:451.586667pt;}
.xa7_c01358{left:453.120000pt;}
.xdb_c01358{left:468.480000pt;}
.x78_c01358{left:472.320000pt;}
.x5_c01358{left:473.853333pt;}
.xd4_c01358{left:475.386667pt;}
.xea_c01358{left:476.933333pt;}
.x4f_c01358{left:480.000000pt;}
.xa4_c01358{left:481.533333pt;}
.xb0_c01358{left:483.066667pt;}
.xd1_c01358{left:486.906667pt;}
.xf7_c01358{left:493.826667pt;}
.x6_c01358{left:496.893333pt;}
.xe4_c01358{left:499.200000pt;}
.xd2_c01358{left:500.733333pt;}
.x68_c01358{left:503.040000pt;}
.x8e_c01358{left:504.573333pt;}
.xb1_c01358{left:506.106667pt;}
.xa1_c01358{left:507.653333pt;}
.x9a_c01358{left:509.946667pt;}
.xf3_c01358{left:513.026667pt;}
.x69_c01358{left:514.560000pt;}
.xf4_c01358{left:516.093333pt;}
.x7f_c01358{left:517.626667pt;}
.xca_c01358{left:521.466667pt;}
.xde_c01358{left:523.013333pt;}
.x79_c01358{left:525.306667pt;}
.xb2_c01358{left:526.853333pt;}
.x61_c01358{left:529.146667pt;}
.x81_c01358{left:531.453333pt;}
.xc7_c01358{left:534.533333pt;}
.xe8_c01358{left:536.826667pt;}
.x70_c01358{left:538.373333pt;}
.x82_c01358{left:540.666667pt;}
.x92_c01358{left:542.213333pt;}
.xec_c01358{left:544.506667pt;}
.x50_c01358{left:546.053333pt;}
.xb9_c01358{left:547.586667pt;}
.x1_c01358{left:549.120000pt;}
.xae_c01358{left:550.653333pt;}
.xa8_c01358{left:552.186667pt;}
.x9f_c01358{left:554.493333pt;}
.x62_c01358{left:556.800000pt;}
.xed_c01358{left:558.333333pt;}
.xf2_c01358{left:561.413333pt;}
.x6a_c01358{left:563.706667pt;}
.x83_c01358{left:568.320000pt;}
.xcc_c01358{left:572.933333pt;}
.xf6_c01358{left:574.466667pt;}
.xa5_c01358{left:576.773333pt;}
.x88_c01358{left:578.306667pt;}
.xb4_c01358{left:579.840000pt;}
.x93_c01358{left:582.146667pt;}
.xa2_c01358{left:584.453333pt;}
.x96_c01358{left:585.986667pt;}
.xc3_c01358{left:587.520000pt;}
.x7a_c01358{left:590.586667pt;}
.x71_c01358{left:592.893333pt;}
.xd9_c01358{left:595.200000pt;}
.x51_c01358{left:596.733333pt;}
.x75_c01358{left:601.346667pt;}
.xc4_c01358{left:602.880000pt;}
.xba_c01358{left:604.413333pt;}
.xf5_c01358{left:607.493333pt;}
.xdf_c01358{left:609.026667pt;}
.x63_c01358{left:610.560000pt;}
.x7b_c01358{left:615.933333pt;}
.x52_c01358{left:617.466667pt;}
.x89_c01358{left:619.013333pt;}
.x8f_c01358{left:622.853333pt;}
.x8a_c01358{left:628.226667pt;}
.x94_c01358{left:630.533333pt;}
.x72_c01358{left:632.066667pt;}
.xf1_c01358{left:633.600000pt;}
.x76_c01358{left:635.133333pt;}
.xcb_c01358{left:637.440000pt;}
.x5a_c01358{left:640.506667pt;}
.xe5_c01358{left:645.893333pt;}
.x9b_c01358{left:648.960000pt;}
.x4c_c01358{left:650.493333pt;}
.x53_c01358{left:652.026667pt;}
.xb5_c01358{left:653.573333pt;}
.x64_c01358{left:655.106667pt;}
.xaf_c01358{left:656.640000pt;}
.x97_c01358{left:658.173333pt;}
.xeb_c01358{left:661.253333pt;}
.x8b_c01358{left:662.786667pt;}
.x7c_c01358{left:665.093333pt;}
.x9c_c01358{left:667.386667pt;}
.x5b_c01358{left:668.933333pt;}
.xe0_c01358{left:670.466667pt;}
.xd5_c01358{left:675.066667pt;}
.x65_c01358{left:677.373333pt;}
.x98_c01358{left:681.213333pt;}
.x6b_c01358{left:683.520000pt;}
.xcd_c01358{left:685.053333pt;}
.x5c_c01358{left:687.360000pt;}
.xa9_c01358{left:688.893333pt;}
.x8c_c01358{left:690.426667pt;}
.x7d_c01358{left:695.813333pt;}
.xaa_c01358{left:697.346667pt;}
.xbd_c01358{left:698.880000pt;}
.xee_c01358{left:702.720000pt;}
.x66_c01358{left:704.253333pt;}
.x6c_c01358{left:706.560000pt;}
.x99_c01358{left:708.093333pt;}
.x54_c01358{left:710.400000pt;}
.xbe_c01358{left:711.933333pt;}
.x5d_c01358{left:713.466667pt;}
.xce_c01358{left:715.013333pt;}
.x85_c01358{left:717.306667pt;}
.xab_c01358{left:719.613333pt;}
.x6d_c01358{left:721.146667pt;}
.x55_c01358{left:722.693333pt;}
.xa3_c01358{left:726.533333pt;}
.x56_c01358{left:728.066667pt;}
.xf0_c01358{left:729.600000pt;}
.xc5_c01358{left:731.906667pt;}
.x80_c01358{left:733.440000pt;}
.x84_c01358{left:734.973333pt;}
.xbf_c01358{left:737.280000pt;}
.xe7_c01358{left:738.813333pt;}
.x4d_c01358{left:741.120000pt;}
.x5e_c01358{left:743.426667pt;}
.x6e_c01358{left:744.960000pt;}
.x57_c01358{left:746.493333pt;}
.xc8_c01358{left:752.640000pt;}
.xef_c01358{left:754.173333pt;}
.xdc_c01358{left:757.253333pt;}
.xdd_c01358{left:767.226667pt;}
.xe1_c01358{left:773.373333pt;}
.xf9_c01358{left:856.320000pt;}
.xfa_c01358{left:862.466667pt;}
.xfc_c01358{left:864.000000pt;}
.xf8_c01358{left:866.306667pt;}
.xfb_c01358{left:875.520000pt;}
.xfd_c01358{left:883.200000pt;}
.x100_c01358{left:910.080000pt;}
.xff_c01358{left:923.906667pt;}
.xfe_c01358{left:927.746667pt;}
.x101_c01358{left:941.573333pt;}
.x102_c01358{left:956.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01359;src:url('chunks/assets/font_800691f9dde8154b0d5e5bd4.woff2')format("woff");}.ff1_c01359{font-family:ff1_c01359;line-height:1.109863;font-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_c01359{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m17d_c01359{transform:matrix(0.064425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064425,0.000000,0.000000,0.250000,0,0);}
.m127_c01359{transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097225,0.000000,0.000000,0.250000,0,0);}
.md3_c01359{transform:matrix(0.108350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108350,0.000000,0.000000,0.250000,0,0);}
.me7_c01359{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);}
.mbc_c01359{transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118425,0.000000,0.000000,0.250000,0,0);}
.me5_c01359{transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119500,0.000000,0.000000,0.250000,0,0);}
.m8b_c01359{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);}
.m99_c01359{transform:matrix(0.125575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125575,0.000000,0.000000,0.250000,0,0);}
.m35_c01359{transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);}
.m136_c01359{transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127475,0.000000,0.000000,0.250000,0,0);}
.m131_c01359{transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127875,0.000000,0.000000,0.250000,0,0);}
.mcb_c01359{transform:matrix(0.130175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130175,0.000000,0.000000,0.250000,0,0);}
.m31_c01359{transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131300,0.000000,0.000000,0.250000,0,0);}
.m26_c01359{transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132825,0.000000,0.000000,0.250000,0,0);}
.m66_c01359{transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133425,0.000000,0.000000,0.250000,0,0);}
.mf0_c01359{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);}
.mfc_c01359{transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138875,0.000000,0.000000,0.250000,0,0);}
.m169_c01359{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);}
.m21_c01359{transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143450,0.000000,0.000000,0.250000,0,0);}
.m34_c01359{transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143500,0.000000,0.000000,0.250000,0,0);}
.me_c01359{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m114_c01359{transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);}
.m12c_c01359{transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146075,0.000000,0.000000,0.250000,0,0);}
.m2b_c01359{transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146625,0.000000,0.000000,0.250000,0,0);}
.m45_c01359{transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146775,0.000000,0.000000,0.250000,0,0);}
.mce_c01359{transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146925,0.000000,0.000000,0.250000,0,0);}
.md4_c01359{transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148150,0.000000,0.000000,0.250000,0,0);}
.m80_c01359{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);}
.m13_c01359{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m84_c01359{transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151525,0.000000,0.000000,0.250000,0,0);}
.m158_c01359{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.ma_c01359{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.md1_c01359{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);}
.m129_c01359{transform:matrix(0.159050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159050,0.000000,0.000000,0.250000,0,0);}
.m151_c01359{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);}
.m152_c01359{transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160300,0.000000,0.000000,0.250000,0,0);}
.m7f_c01359{transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160325,0.000000,0.000000,0.250000,0,0);}
.m118_c01359{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m25_c01359{transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161475,0.000000,0.000000,0.250000,0,0);}
.m163_c01359{transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162350,0.000000,0.000000,0.250000,0,0);}
.m53_c01359{transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163350,0.000000,0.000000,0.250000,0,0);}
.mfd_c01359{transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163575,0.000000,0.000000,0.250000,0,0);}
.m23_c01359{transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164275,0.000000,0.000000,0.250000,0,0);}
.m14a_c01359{transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165125,0.000000,0.000000,0.250000,0,0);}
.m173_c01359{transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165650,0.000000,0.000000,0.250000,0,0);}
.me0_c01359{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m15a_c01359{transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166750,0.000000,0.000000,0.250000,0,0);}
.m130_c01359{transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167950,0.000000,0.000000,0.250000,0,0);}
.m78_c01359{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);}
.m83_c01359{transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170325,0.000000,0.000000,0.250000,0,0);}
.mef_c01359{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);}
.m139_c01359{transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170800,0.000000,0.000000,0.250000,0,0);}
.ma0_c01359{transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171325,0.000000,0.000000,0.250000,0,0);}
.m6_c01359{transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172350,0.000000,0.000000,0.250000,0,0);}
.m92_c01359{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m133_c01359{transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173650,0.000000,0.000000,0.250000,0,0);}
.mcf_c01359{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);}
.m5_c01359{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m51_c01359{transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175600,0.000000,0.000000,0.250000,0,0);}
.m12f_c01359{transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176075,0.000000,0.000000,0.250000,0,0);}
.m113_c01359{transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177850,0.000000,0.000000,0.250000,0,0);}
.mbb_c01359{transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178150,0.000000,0.000000,0.250000,0,0);}
.mb0_c01359{transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178975,0.000000,0.000000,0.250000,0,0);}
.m2e_c01359{transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179550,0.000000,0.000000,0.250000,0,0);}
.m11f_c01359{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);}
.m20_c01359{transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179950,0.000000,0.000000,0.250000,0,0);}
.m1d_c01359{transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180525,0.000000,0.000000,0.250000,0,0);}
.m140_c01359{transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182250,0.000000,0.000000,0.250000,0,0);}
.mad_c01359{transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182825,0.000000,0.000000,0.250000,0,0);}
.m85_c01359{transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182950,0.000000,0.000000,0.250000,0,0);}
.mc1_c01359{transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);}
.m82_c01359{transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183625,0.000000,0.000000,0.250000,0,0);}
.md5_c01359{transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184325,0.000000,0.000000,0.250000,0,0);}
.mf7_c01359{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);}
.m58_c01359{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);}
.mab_c01359{transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184550,0.000000,0.000000,0.250000,0,0);}
.m1_c01359{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);}
.m65_c01359{transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185850,0.000000,0.000000,0.250000,0,0);}
.m8d_c01359{transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186450,0.000000,0.000000,0.250000,0,0);}
.m10_c01359{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);}
.m174_c01359{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.m14f_c01359{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);}
.mf_c01359{transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187925,0.000000,0.000000,0.250000,0,0);}
.mc5_c01359{transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189000,0.000000,0.000000,0.250000,0,0);}
.m11e_c01359{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);}
.mb5_c01359{transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189675,0.000000,0.000000,0.250000,0,0);}
.m8_c01359{transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189975,0.000000,0.000000,0.250000,0,0);}
.mc2_c01359{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);}
.m12e_c01359{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.m32_c01359{transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192425,0.000000,0.000000,0.250000,0,0);}
.m107_c01359{transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192675,0.000000,0.000000,0.250000,0,0);}
.m64_c01359{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.md2_c01359{transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192875,0.000000,0.000000,0.250000,0,0);}
.m143_c01359{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.ma9_c01359{transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194450,0.000000,0.000000,0.250000,0,0);}
.mc8_c01359{transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194550,0.000000,0.000000,0.250000,0,0);}
.m1f_c01359{transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194950,0.000000,0.000000,0.250000,0,0);}
.mc0_c01359{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);}
.mca_c01359{transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195025,0.000000,0.000000,0.250000,0,0);}
.mc7_c01359{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);}
.m12d_c01359{transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196275,0.000000,0.000000,0.250000,0,0);}
.m108_c01359{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m77_c01359{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);}
.m165_c01359{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);}
.m13a_c01359{transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197275,0.000000,0.000000,0.250000,0,0);}
.m96_c01359{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.me3_c01359{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);}
.mbf_c01359{transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199350,0.000000,0.000000,0.250000,0,0);}
.m88_c01359{transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199375,0.000000,0.000000,0.250000,0,0);}
.m128_c01359{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.mb9_c01359{transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199950,0.000000,0.000000,0.250000,0,0);}
.m10b_c01359{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m16_c01359{transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200100,0.000000,0.000000,0.250000,0,0);}
.m176_c01359{transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200675,0.000000,0.000000,0.250000,0,0);}
.mde_c01359{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.mf5_c01359{transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200925,0.000000,0.000000,0.250000,0,0);}
.mc9_c01359{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);}
.m122_c01359{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);}
.md_c01359{transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201725,0.000000,0.000000,0.250000,0,0);}
.mc6_c01359{transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201975,0.000000,0.000000,0.250000,0,0);}
.m24_c01359{transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202100,0.000000,0.000000,0.250000,0,0);}
.me1_c01359{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);}
.m95_c01359{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);}
.mb4_c01359{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.m102_c01359{transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202900,0.000000,0.000000,0.250000,0,0);}
.m103_c01359{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);}
.mf4_c01359{transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203150,0.000000,0.000000,0.250000,0,0);}
.m3c_c01359{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);}
.m159_c01359{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);}
.m123_c01359{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);}
.m97_c01359{transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204875,0.000000,0.000000,0.250000,0,0);}
.m172_c01359{transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205025,0.000000,0.000000,0.250000,0,0);}
.mb3_c01359{transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205525,0.000000,0.000000,0.250000,0,0);}
.m13b_c01359{transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206100,0.000000,0.000000,0.250000,0,0);}
.mac_c01359{transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206325,0.000000,0.000000,0.250000,0,0);}
.m6c_c01359{transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206575,0.000000,0.000000,0.250000,0,0);}
.mb2_c01359{transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206725,0.000000,0.000000,0.250000,0,0);}
.m13f_c01359{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);}
.mdb_c01359{transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207050,0.000000,0.000000,0.250000,0,0);}
.m90_c01359{transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207125,0.000000,0.000000,0.250000,0,0);}
.m119_c01359{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.m14c_c01359{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);}
.mc_c01359{transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207500,0.000000,0.000000,0.250000,0,0);}
.m5c_c01359{transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207525,0.000000,0.000000,0.250000,0,0);}
.m3e_c01359{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);}
.m11b_c01359{transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207625,0.000000,0.000000,0.250000,0,0);}
.m14b_c01359{transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207650,0.000000,0.000000,0.250000,0,0);}
.m101_c01359{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);}
.m9c_c01359{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);}
.m138_c01359{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);}
.m79_c01359{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);}
.mb6_c01359{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);}
.m116_c01359{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);}
.m63_c01359{transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210075,0.000000,0.000000,0.250000,0,0);}
.mf2_c01359{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);}
.m16e_c01359{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);}
.m105_c01359{transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210700,0.000000,0.000000,0.250000,0,0);}
.m17a_c01359{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);}
.m3a_c01359{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);}
.m33_c01359{transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211625,0.000000,0.000000,0.250000,0,0);}
.m10d_c01359{transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211775,0.000000,0.000000,0.250000,0,0);}
.mb1_c01359{transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211900,0.000000,0.000000,0.250000,0,0);}
.m157_c01359{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.m76_c01359{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);}
.me4_c01359{transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212375,0.000000,0.000000,0.250000,0,0);}
.m46_c01359{transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212550,0.000000,0.000000,0.250000,0,0);}
.me6_c01359{transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212600,0.000000,0.000000,0.250000,0,0);}
.m75_c01359{transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212625,0.000000,0.000000,0.250000,0,0);}
.m43_c01359{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);}
.m120_c01359{transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213625,0.000000,0.000000,0.250000,0,0);}
.m16a_c01359{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);}
.m135_c01359{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);}
.m115_c01359{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);}
.m69_c01359{transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215725,0.000000,0.000000,0.250000,0,0);}
.m12a_c01359{transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215800,0.000000,0.000000,0.250000,0,0);}
.m167_c01359{transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215975,0.000000,0.000000,0.250000,0,0);}
.m142_c01359{transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216200,0.000000,0.000000,0.250000,0,0);}
.maa_c01359{transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216450,0.000000,0.000000,0.250000,0,0);}
.m13e_c01359{transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216850,0.000000,0.000000,0.250000,0,0);}
.m14d_c01359{transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216900,0.000000,0.000000,0.250000,0,0);}
.m5a_c01359{transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217000,0.000000,0.000000,0.250000,0,0);}
.m8c_c01359{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);}
.mff_c01359{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);}
.m6b_c01359{transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.218900,0.000000,0.000000,0.250000,0,0);}
.m104_c01359{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);}
.mdd_c01359{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);}
.m89_c01359{transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220350,0.000000,0.000000,0.250000,0,0);}
.m39_c01359{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);}
.md6_c01359{transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221175,0.000000,0.000000,0.250000,0,0);}
.m15f_c01359{transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221725,0.000000,0.000000,0.250000,0,0);}
.m8f_c01359{transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222475,0.000000,0.000000,0.250000,0,0);}
.m110_c01359{transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);}
.m100_c01359{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m11c_c01359{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);}
.m38_c01359{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);}
.m1c_c01359{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);}
.m175_c01359{transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225600,0.000000,0.000000,0.250000,0,0);}
.mc4_c01359{transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225975,0.000000,0.000000,0.250000,0,0);}
.m50_c01359{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);}
.m16d_c01359{transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226725,0.000000,0.000000,0.250000,0,0);}
.m147_c01359{transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226950,0.000000,0.000000,0.250000,0,0);}
.m73_c01359{transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227000,0.000000,0.000000,0.250000,0,0);}
.m13d_c01359{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);}
.mea_c01359{transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227800,0.000000,0.000000,0.250000,0,0);}
.maf_c01359{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);}
.m16f_c01359{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.ma7_c01359{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);}
.med_c01359{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);}
.m111_c01359{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);}
.m37_c01359{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.mc3_c01359{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);}
.ma4_c01359{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);}
.m49_c01359{transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230700,0.000000,0.000000,0.250000,0,0);}
.mfb_c01359{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);}
.m160_c01359{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);}
.m162_c01359{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);}
.m10e_c01359{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);}
.mbe_c01359{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);}
.mb8_c01359{transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233100,0.000000,0.000000,0.250000,0,0);}
.m42_c01359{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m148_c01359{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);}
.m6a_c01359{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);}
.mcc_c01359{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);}
.m124_c01359{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m154_c01359{transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236225,0.000000,0.000000,0.250000,0,0);}
.m7e_c01359{transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236775,0.000000,0.000000,0.250000,0,0);}
.mf3_c01359{transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236850,0.000000,0.000000,0.250000,0,0);}
.meb_c01359{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.mf6_c01359{transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237350,0.000000,0.000000,0.250000,0,0);}
.m59_c01359{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);}
.m145_c01359{transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237700,0.000000,0.000000,0.250000,0,0);}
.me2_c01359{transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238050,0.000000,0.000000,0.250000,0,0);}
.m171_c01359{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);}
.m156_c01359{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);}
.mee_c01359{transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239300,0.000000,0.000000,0.250000,0,0);}
.m4a_c01359{transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239750,0.000000,0.000000,0.250000,0,0);}
.m54_c01359{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.ma1_c01359{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);}
.m15e_c01359{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);}
.ma5_c01359{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);}
.m98_c01359{transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240875,0.000000,0.000000,0.250000,0,0);}
.mbd_c01359{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);}
.m153_c01359{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);}
.m121_c01359{transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241350,0.000000,0.000000,0.250000,0,0);}
.m12b_c01359{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);}
.me9_c01359{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.m7d_c01359{transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242125,0.000000,0.000000,0.250000,0,0);}
.m44_c01359{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);}
.m5b_c01359{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);}
.mfa_c01359{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);}
.m15d_c01359{transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243125,0.000000,0.000000,0.250000,0,0);}
.m93_c01359{transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243675,0.000000,0.000000,0.250000,0,0);}
.m16c_c01359{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);}
.m144_c01359{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);}
.m86_c01359{transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244025,0.000000,0.000000,0.250000,0,0);}
.m179_c01359{transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244275,0.000000,0.000000,0.250000,0,0);}
.m106_c01359{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.ma8_c01359{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);}
.m16b_c01359{transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247175,0.000000,0.000000,0.250000,0,0);}
.m132_c01359{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);}
.m67_c01359{transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247775,0.000000,0.000000,0.250000,0,0);}
.m112_c01359{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);}
.m91_c01359{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m81_c01359{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);}
.m2c_c01359{transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249200,0.000000,0.000000,0.250000,0,0);}
.m6f_c01359{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m3b_c01359{transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249875,0.000000,0.000000,0.250000,0,0);}
.ma6_c01359{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m60_c01359{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);}
.m5f_c01359{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m40_c01359{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);}
.m1b_c01359{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);}
.m27_c01359{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);}
.m19_c01359{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);}
.m18_c01359{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m71_c01359{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mb_c01359{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m94_c01359{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);}
.m70_c01359{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4d_c01359{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);}
.m9f_c01359{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);}
.m57_c01359{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01359{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);}
.m52_c01359{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01359{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01359{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);}
.m87_c01359{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m7_c01359{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);}
.m17_c01359{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);}
.m62_c01359{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m6e_c01359{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m6d_c01359{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);}
.m72_c01359{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01359{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c01359{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);}
.m12_c01359{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.md0_c01359{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m47_c01359{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m9b_c01359{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m55_c01359{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m48_c01359{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m9a_c01359{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mdc_c01359{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);}
.md9_c01359{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m0_c01359{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11d_c01359{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m74_c01359{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01359{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);}
.m4f_c01359{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.mda_c01359{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);}
.mfe_c01359{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m8e_c01359{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.mae_c01359{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mcd_c01359{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01359{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);}
.md7_c01359{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);}
.me8_c01359{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m11_c01359{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m166_c01359{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);}
.m4_c01359{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.ma2_c01359{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m126_c01359{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m56_c01359{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m7a_c01359{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m10f_c01359{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m17e_c01359{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);}
.m61_c01359{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);}
.m3d_c01359{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m141_c01359{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);}
.mf8_c01359{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01359{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m17c_c01359{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m22_c01359{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c01359{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01359{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.mdf_c01359{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01359{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m164_c01359{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);}
.md8_c01359{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mf1_c01359{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m178_c01359{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01359{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.mf9_c01359{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m125_c01359{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m117_c01359{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m36_c01359{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);}
.m134_c01359{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m146_c01359{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01359{transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.557500,0.000000,0.000000,0.250000,0,0);}
.m9d_c01359{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m109_c01359{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.m30_c01359{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m17f_c01359{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m68_c01359{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m161_c01359{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01359{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);}
.m137_c01359{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.mba_c01359{transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.670000,0.000000,0.000000,0.250000,0,0);}
.m10a_c01359{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m149_c01359{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m11a_c01359{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m14e_c01359{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);}
.ma3_c01359{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m17b_c01359{transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.805000,0.000000,0.000000,0.250000,0,0);}
.m168_c01359{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m177_c01359{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m150_c01359{transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.855000,0.000000,0.000000,0.250000,0,0);}
.m7b_c01359{transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.862500,0.000000,0.000000,0.250000,0,0);}
.m13c_c01359{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01359{transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.910000,0.000000,0.000000,0.250000,0,0);}
.m29_c01359{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m41_c01359{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.m15c_c01359{transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.167500,0.000000,0.000000,0.250000,0,0);}
.m170_c01359{transform:matrix(1.350000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.350000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.350000,0.000000,0.000000,0.250000,0,0);}
.m15b_c01359{transform:matrix(1.525000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.525000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.525000,0.000000,0.000000,0.250000,0,0);}
.m155_c01359{transform:matrix(1.580000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.580000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.580000,0.000000,0.000000,0.250000,0,0);}
.m180_c01359{transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.585000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01359{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.m10c_c01359{transform:matrix(2.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.007500,0.000000,0.000000,0.250000,0,0);}
.m14_c01359{transform:matrix(2.112500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.112500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.112500,0.000000,0.000000,0.250000,0,0);}
.mec_c01359{transform:matrix(2.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.457500,0.000000,0.000000,0.250000,0,0);}
.m28_c01359{transform:matrix(2.730000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.730000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.730000,0.000000,0.000000,0.250000,0,0);}
.mb7_c01359{transform:matrix(4.917500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.917500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.917500,0.000000,0.000000,0.250000,0,0);}
.m8a_c01359{transform:matrix(5.277500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.277500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.277500,0.000000,0.000000,0.250000,0,0);}
.v2_c01359{vertical-align:-13.800000px;}
.v4_c01359{vertical-align:-10.380000px;}
.v0_c01359{vertical-align:0.000000px;}
.v3_c01359{vertical-align:3.480000px;}
.v1_c01359{vertical-align:10.380000px;}
.ls3_c01359{letter-spacing:0.000000px;}
.ls1_c01359{letter-spacing:9.285360px;}
.ls0_c01359{letter-spacing:45.148740px;}
.ls2_c01359{letter-spacing:47.063521px;}
.sc__c01359{text-shadow:none;}
.sc0_c01359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01359{-webkit-text-stroke:0px transparent;}
.sc0_c01359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c01359{word-spacing:-6.012120px;}
.ws0_c01359{word-spacing:-2.054880px;}
.ws2_c01359{word-spacing:0.000000px;}
.fc0_c01359{color:transparent;}
.fs13_c01359{font-size:3.456000px;}
.fsa_c01359{font-size:6.000000px;}
.fs14_c01359{font-size:6.900000px;}
.fs9_c01359{font-size:10.380000px;}
.fse_c01359{font-size:13.800000px;}
.fs16_c01359{font-size:17.280000px;}
.fs12_c01359{font-size:20.760000px;}
.fs19_c01359{font-size:24.180000px;}
.fs11_c01359{font-size:27.660000px;}
.fsc_c01359{font-size:31.080000px;}
.fsd_c01359{font-size:34.560000px;}
.fs0_c01359{font-size:38.040000px;}
.fs10_c01359{font-size:41.460000px;}
.fsb_c01359{font-size:44.940000px;}
.fs6_c01359{font-size:48.360000px;}
.fs8_c01359{font-size:51.840000px;}
.fs18_c01359{font-size:55.320000px;}
.fs1_c01359{font-size:58.740000px;}
.fs2_c01359{font-size:62.220000px;}
.fs3_c01359{font-size:65.640000px;}
.fs4_c01359{font-size:69.120000px;}
.fs5_c01359{font-size:72.600000px;}
.fsf_c01359{font-size:76.020000px;}
.fs7_c01359{font-size:79.500000px;}
.fs1a_c01359{font-size:82.920000px;}
.fs17_c01359{font-size:86.400000px;}
.fs15_c01359{font-size:89.880000px;}
.fs1c_c01359{font-size:93.300000px;}
.fs1d_c01359{font-size:120.960000px;}
.fs1b_c01359{font-size:124.440000px;}
.fs1e_c01359{font-size:190.080000px;}
.y0_c01359{bottom:0.000000px;}
.y234_c01359{bottom:90.720000px;}
.y232_c01359{bottom:101.955000px;}
.y233_c01359{bottom:104.550000px;}
.y231_c01359{bottom:180.570000px;}
.y227_c01359{bottom:205.635000px;}
.y229_c01359{bottom:209.085000px;}
.y228_c01359{bottom:209.955000px;}
.y226_c01359{bottom:216.000000px;}
.y225_c01359{bottom:216.870000px;}
.y224_c01359{bottom:217.725000px;}
.y223_c01359{bottom:224.640000px;}
.y222_c01359{bottom:227.235000px;}
.y221_c01359{bottom:228.090000px;}
.y220_c01359{bottom:232.410000px;}
.y21e_c01359{bottom:235.875000px;}
.y21f_c01359{bottom:236.730000px;}
.y21d_c01359{bottom:237.600000px;}
.y21b_c01359{bottom:241.920000px;}
.y21c_c01359{bottom:244.515000px;}
.y21a_c01359{bottom:245.370000px;}
.y219_c01359{bottom:247.965000px;}
.y218_c01359{bottom:249.690000px;}
.y216_c01359{bottom:250.560000px;}
.y217_c01359{bottom:252.285000px;}
.y214_c01359{bottom:253.155000px;}
.y215_c01359{bottom:254.010000px;}
.y213_c01359{bottom:260.925000px;}
.y210_c01359{bottom:261.795000px;}
.y211_c01359{bottom:262.650000px;}
.y212_c01359{bottom:266.115000px;}
.y20e_c01359{bottom:267.840000px;}
.y20f_c01359{bottom:268.710000px;}
.y20d_c01359{bottom:271.290000px;}
.y20c_c01359{bottom:276.480000px;}
.y20b_c01359{bottom:279.075000px;}
.y208_c01359{bottom:283.395000px;}
.y207_c01359{bottom:284.250000px;}
.y20a_c01359{bottom:285.120000px;}
.y209_c01359{bottom:286.845000px;}
.y206_c01359{bottom:288.570000px;}
.y205_c01359{bottom:297.210000px;}
.y204_c01359{bottom:298.080000px;}
.y203_c01359{bottom:299.805000px;}
.y202_c01359{bottom:300.675000px;}
.y201_c01359{bottom:302.400000px;}
.y200_c01359{bottom:304.125000px;}
.y1fe_c01359{bottom:306.720000px;}
.y1fd_c01359{bottom:312.765000px;}
.y1ff_c01359{bottom:315.360000px;}
.y1fc_c01359{bottom:316.230000px;}
.y1fb_c01359{bottom:317.085000px;}
.y1fa_c01359{bottom:317.955000px;}
.y1f8_c01359{bottom:318.810000px;}
.y1f9_c01359{bottom:320.550000px;}
.y1f6_c01359{bottom:323.130000px;}
.y1f7_c01359{bottom:324.000000px;}
.y1f4_c01359{bottom:330.045000px;}
.y1f5_c01359{bottom:332.640000px;}
.y1f3_c01359{bottom:335.235000px;}
.y1f2_c01359{bottom:336.090000px;}
.y1f1_c01359{bottom:336.960000px;}
.y1f0_c01359{bottom:340.410000px;}
.y1ef_c01359{bottom:343.005000px;}
.y1ed_c01359{bottom:345.600000px;}
.y1eb_c01359{bottom:347.325000px;}
.y1ea_c01359{bottom:348.195000px;}
.y1ec_c01359{bottom:349.920000px;}
.y1e8_c01359{bottom:350.790000px;}
.y1e7_c01359{bottom:351.645000px;}
.y1e9_c01359{bottom:352.515000px;}
.y1ee_c01359{bottom:353.370000px;}
.y1e6_c01359{bottom:356.835000px;}
.y1e5_c01359{bottom:357.690000px;}
.y1e3_c01359{bottom:358.560000px;}
.y1e4_c01359{bottom:359.430000px;}
.y1e1_c01359{bottom:362.880000px;}
.y1e0_c01359{bottom:365.475000px;}
.y1e2_c01359{bottom:368.070000px;}
.y1dc_c01359{bottom:370.650000px;}
.y1de_c01359{bottom:371.520000px;}
.y1df_c01359{bottom:372.390000px;}
.y1dd_c01359{bottom:375.840000px;}
.y1db_c01359{bottom:384.480000px;}
.y1da_c01359{bottom:385.350000px;}
.y1d8_c01359{bottom:388.800000px;}
.y1d7_c01359{bottom:390.525000px;}
.y1d6_c01359{bottom:391.395000px;}
.y1d5_c01359{bottom:393.990000px;}
.y1d4_c01359{bottom:394.845000px;}
.y1d9_c01359{bottom:396.570000px;}
.y1d2_c01359{bottom:398.310000px;}
.y1d0_c01359{bottom:400.890000px;}
.y1d3_c01359{bottom:402.630000px;}
.y1d1_c01359{bottom:404.355000px;}
.y1cf_c01359{bottom:406.080000px;}
.y1cc_c01359{bottom:406.950000px;}
.y1ce_c01359{bottom:407.805000px;}
.y1cd_c01359{bottom:409.530000px;}
.y1cb_c01359{bottom:410.400000px;}
.y1ca_c01359{bottom:411.270000px;}
.y1c9_c01359{bottom:412.125000px;}
.y1c6_c01359{bottom:416.445000px;}
.y1c4_c01359{bottom:418.170000px;}
.y1c8_c01359{bottom:419.910000px;}
.y1c7_c01359{bottom:420.765000px;}
.y1c1_c01359{bottom:421.635000px;}
.y1c5_c01359{bottom:422.490000px;}
.y1c3_c01359{bottom:423.360000px;}
.y1c2_c01359{bottom:424.230000px;}
.y1be_c01359{bottom:426.810000px;}
.y1c0_c01359{bottom:427.680000px;}
.y1bd_c01359{bottom:428.550000px;}
.y1bf_c01359{bottom:429.405000px;}
.y1bc_c01359{bottom:434.595000px;}
.y1ba_c01359{bottom:436.320000px;}
.y1b8_c01359{bottom:438.915000px;}
.y1b9_c01359{bottom:440.640000px;}
.y1b7_c01359{bottom:442.365000px;}
.y1bb_c01359{bottom:443.235000px;}
.y1b6_c01359{bottom:444.090000px;}
.y1b5_c01359{bottom:450.150000px;}
.y1b3_c01359{bottom:451.875000px;}
.y1b2_c01359{bottom:453.600000px;}
.y1b4_c01359{bottom:454.470000px;}
.y1b1_c01359{bottom:456.195000px;}
.y1ab_c01359{bottom:458.790000px;}
.y1b0_c01359{bottom:459.645000px;}
.y1af_c01359{bottom:461.370000px;}
.y1ac_c01359{bottom:462.240000px;}
.y1ae_c01359{bottom:463.110000px;}
.y1ad_c01359{bottom:463.965000px;}
.y1aa_c01359{bottom:468.285000px;}
.y1a8_c01359{bottom:471.750000px;}
.y1a9_c01359{bottom:472.605000px;}
.y1a7_c01359{bottom:474.330000px;}
.y1a6_c01359{bottom:476.925000px;}
.y1a5_c01359{bottom:478.650000px;}
.y1a4_c01359{bottom:479.520000px;}
.y1a3_c01359{bottom:481.245000px;}
.y19f_c01359{bottom:486.435000px;}
.y1a0_c01359{bottom:487.290000px;}
.y19e_c01359{bottom:491.610000px;}
.y19d_c01359{bottom:492.480000px;}
.y1a2_c01359{bottom:495.075000px;}
.y1a1_c01359{bottom:499.395000px;}
.y19a_c01359{bottom:501.990000px;}
.y19c_c01359{bottom:503.715000px;}
.y199_c01359{bottom:508.035000px;}
.y198_c01359{bottom:508.890000px;}
.y19b_c01359{bottom:512.355000px;}
.y197_c01359{bottom:518.400000px;}
.y195_c01359{bottom:519.270000px;}
.y194_c01359{bottom:520.125000px;}
.y192_c01359{bottom:520.995000px;}
.y190_c01359{bottom:523.590000px;}
.y196_c01359{bottom:524.445000px;}
.y18f_c01359{bottom:525.315000px;}
.y191_c01359{bottom:526.170000px;}
.y185_c01359{bottom:527.040000px;}
.y18e_c01359{bottom:528.765000px;}
.y18d_c01359{bottom:529.635000px;}
.y18b_c01359{bottom:532.230000px;}
.y193_c01359{bottom:533.085000px;}
.y18c_c01359{bottom:533.955000px;}
.y187_c01359{bottom:535.680000px;}
.y189_c01359{bottom:540.000000px;}
.y188_c01359{bottom:541.725000px;}
.y183_c01359{bottom:542.595000px;}
.y186_c01359{bottom:543.450000px;}
.y182_c01359{bottom:544.320000px;}
.y18a_c01359{bottom:545.190000px;}
.y180_c01359{bottom:547.770000px;}
.y181_c01359{bottom:550.365000px;}
.y184_c01359{bottom:555.555000px;}
.y17d_c01359{bottom:561.600000px;}
.y17b_c01359{bottom:562.470000px;}
.y17f_c01359{bottom:563.325000px;}
.y17c_c01359{bottom:564.195000px;}
.y17e_c01359{bottom:565.050000px;}
.y17a_c01359{bottom:576.285000px;}
.y178_c01359{bottom:579.750000px;}
.y179_c01359{bottom:582.330000px;}
.y175_c01359{bottom:597.885000px;}
.y177_c01359{bottom:598.755000px;}
.y176_c01359{bottom:599.610000px;}
.y174_c01359{bottom:600.480000px;}
.y171_c01359{bottom:607.395000px;}
.y170_c01359{bottom:609.120000px;}
.y173_c01359{bottom:609.990000px;}
.y16d_c01359{bottom:613.440000px;}
.y16f_c01359{bottom:615.165000px;}
.y16e_c01359{bottom:616.035000px;}
.y16c_c01359{bottom:617.760000px;}
.y16b_c01359{bottom:618.630000px;}
.y16a_c01359{bottom:621.210000px;}
.y172_c01359{bottom:622.080000px;}
.y168_c01359{bottom:623.805000px;}
.y164_c01359{bottom:626.400000px;}
.y169_c01359{bottom:628.125000px;}
.y167_c01359{bottom:628.995000px;}
.y166_c01359{bottom:629.850000px;}
.y165_c01359{bottom:630.720000px;}
.y163_c01359{bottom:635.910000px;}
.y162_c01359{bottom:641.085000px;}
.y15f_c01359{bottom:645.405000px;}
.y15e_c01359{bottom:646.275000px;}
.y161_c01359{bottom:648.000000px;}
.y160_c01359{bottom:648.870000px;}
.y15d_c01359{bottom:651.450000px;}
.y15c_c01359{bottom:652.320000px;}
.y15b_c01359{bottom:653.190000px;}
.y158_c01359{bottom:658.365000px;}
.y157_c01359{bottom:660.090000px;}
.y159_c01359{bottom:662.685000px;}
.y156_c01359{bottom:664.410000px;}
.y15a_c01359{bottom:665.280000px;}
.y153_c01359{bottom:667.005000px;}
.y154_c01359{bottom:670.470000px;}
.y155_c01359{bottom:671.325000px;}
.y150_c01359{bottom:676.515000px;}
.y151_c01359{bottom:679.965000px;}
.y14f_c01359{bottom:680.835000px;}
.y152_c01359{bottom:681.690000px;}
.y14a_c01359{bottom:683.430000px;}
.y14e_c01359{bottom:684.285000px;}
.y14d_c01359{bottom:686.010000px;}
.y14c_c01359{bottom:686.880000px;}
.y14b_c01359{bottom:687.750000px;}
.y149_c01359{bottom:691.200000px;}
.y147_c01359{bottom:692.925000px;}
.y145_c01359{bottom:694.650000px;}
.y146_c01359{bottom:695.520000px;}
.y148_c01359{bottom:697.245000px;}
.y144_c01359{bottom:698.115000px;}
.y140_c01359{bottom:699.840000px;}
.y143_c01359{bottom:701.565000px;}
.y142_c01359{bottom:703.290000px;}
.y141_c01359{bottom:704.160000px;}
.y13e_c01359{bottom:710.205000px;}
.y13d_c01359{bottom:711.075000px;}
.y13f_c01359{bottom:714.525000px;}
.y13b_c01359{bottom:715.395000px;}
.y136_c01359{bottom:717.990000px;}
.y13a_c01359{bottom:718.845000px;}
.y139_c01359{bottom:719.715000px;}
.y138_c01359{bottom:720.570000px;}
.y137_c01359{bottom:721.440000px;}
.y13c_c01359{bottom:726.630000px;}
.y134_c01359{bottom:727.485000px;}
.y135_c01359{bottom:730.080000px;}
.y133_c01359{bottom:730.950000px;}
.y12f_c01359{bottom:732.675000px;}
.y131_c01359{bottom:733.530000px;}
.y132_c01359{bottom:734.400000px;}
.y130_c01359{bottom:735.270000px;}
.y12e_c01359{bottom:736.125000px;}
.y12d_c01359{bottom:740.445000px;}
.y12c_c01359{bottom:743.910000px;}
.y12a_c01359{bottom:745.635000px;}
.y129_c01359{bottom:747.360000px;}
.y12b_c01359{bottom:748.230000px;}
.y126_c01359{bottom:749.955000px;}
.y127_c01359{bottom:750.810000px;}
.y125_c01359{bottom:752.550000px;}
.y128_c01359{bottom:754.275000px;}
.y124_c01359{bottom:756.000000px;}
.y122_c01359{bottom:756.870000px;}
.y11e_c01359{bottom:762.045000px;}
.y120_c01359{bottom:762.915000px;}
.y11d_c01359{bottom:763.770000px;}
.y121_c01359{bottom:765.510000px;}
.y11f_c01359{bottom:766.365000px;}
.y11b_c01359{bottom:767.235000px;}
.y11c_c01359{bottom:768.090000px;}
.y11a_c01359{bottom:769.830000px;}
.y119_c01359{bottom:770.685000px;}
.y123_c01359{bottom:771.555000px;}
.y117_c01359{bottom:772.410000px;}
.y118_c01359{bottom:773.280000px;}
.y116_c01359{bottom:780.195000px;}
.y114_c01359{bottom:781.050000px;}
.y113_c01359{bottom:782.790000px;}
.y111_c01359{bottom:784.515000px;}
.y110_c01359{bottom:785.370000px;}
.y112_c01359{bottom:788.835000px;}
.y115_c01359{bottom:795.750000px;}
.y10f_c01359{bottom:797.475000px;}
.y10e_c01359{bottom:799.200000px;}
.y10d_c01359{bottom:800.925000px;}
.y10c_c01359{bottom:801.795000px;}
.y10b_c01359{bottom:802.650000px;}
.y108_c01359{bottom:803.520000px;}
.y10a_c01359{bottom:806.970000px;}
.y109_c01359{bottom:807.840000px;}
.y104_c01359{bottom:814.755000px;}
.y103_c01359{bottom:816.480000px;}
.y107_c01359{bottom:817.350000px;}
.y106_c01359{bottom:818.205000px;}
.yff_c01359{bottom:819.930000px;}
.y102_c01359{bottom:820.800000px;}
.y101_c01359{bottom:821.670000px;}
.y100_c01359{bottom:822.525000px;}
.yfd_c01359{bottom:823.395000px;}
.yfc_c01359{bottom:824.250000px;}
.yf4_c01359{bottom:825.120000px;}
.yfe_c01359{bottom:826.845000px;}
.y105_c01359{bottom:831.165000px;}
.yf7_c01359{bottom:833.760000px;}
.yfb_c01359{bottom:834.630000px;}
.yfa_c01359{bottom:835.485000px;}
.yf6_c01359{bottom:836.355000px;}
.yf9_c01359{bottom:837.210000px;}
.yf8_c01359{bottom:839.805000px;}
.yf5_c01359{bottom:841.530000px;}
.yf1_c01359{bottom:848.445000px;}
.yef_c01359{bottom:849.315000px;}
.yf2_c01359{bottom:852.765000px;}
.yf3_c01359{bottom:854.490000px;}
.yf0_c01359{bottom:864.870000px;}
.yee_c01359{bottom:866.595000px;}
.yed_c01359{bottom:870.045000px;}
.yec_c01359{bottom:870.915000px;}
.y230_c01359{bottom:876.090000px;}
.ye8_c01359{bottom:883.005000px;}
.ye9_c01359{bottom:885.600000px;}
.ye7_c01359{bottom:886.470000px;}
.yeb_c01359{bottom:888.195000px;}
.yea_c01359{bottom:889.050000px;}
.ye6_c01359{bottom:893.370000px;}
.ye5_c01359{bottom:901.155000px;}
.ye4_c01359{bottom:902.880000px;}
.ye2_c01359{bottom:903.750000px;}
.ye1_c01359{bottom:905.475000px;}
.ye3_c01359{bottom:906.330000px;}
.yde_c01359{bottom:908.070000px;}
.ye0_c01359{bottom:910.650000px;}
.ydf_c01359{bottom:911.520000px;}
.ydc_c01359{bottom:923.610000px;}
.yda_c01359{bottom:924.480000px;}
.yd8_c01359{bottom:925.350000px;}
.ydb_c01359{bottom:927.930000px;}
.yd9_c01359{bottom:929.670000px;}
.ydd_c01359{bottom:934.845000px;}
.yd6_c01359{bottom:937.440000px;}
.yd5_c01359{bottom:938.310000px;}
.yd7_c01359{bottom:940.890000px;}
.yd1_c01359{bottom:941.760000px;}
.yd2_c01359{bottom:942.630000px;}
.ycf_c01359{bottom:943.485000px;}
.yd4_c01359{bottom:944.355000px;}
.yd3_c01359{bottom:945.210000px;}
.yd0_c01359{bottom:946.950000px;}
.yce_c01359{bottom:954.720000px;}
.yca_c01359{bottom:958.170000px;}
.ycb_c01359{bottom:959.910000px;}
.yc9_c01359{bottom:960.765000px;}
.yc8_c01359{bottom:963.360000px;}
.yc7_c01359{bottom:964.230000px;}
.ycd_c01359{bottom:965.085000px;}
.ycc_c01359{bottom:966.810000px;}
.yc3_c01359{bottom:971.130000px;}
.yc4_c01359{bottom:972.000000px;}
.yc6_c01359{bottom:972.870000px;}
.yc5_c01359{bottom:975.450000px;}
.yc1_c01359{bottom:976.320000px;}
.yc2_c01359{bottom:978.045000px;}
.ybe_c01359{bottom:978.915000px;}
.yc0_c01359{bottom:979.770000px;}
.ybf_c01359{bottom:980.640000px;}
.ybc_c01359{bottom:987.555000px;}
.ybd_c01359{bottom:989.280000px;}
.ybb_c01359{bottom:992.730000px;}
.yba_c01359{bottom:997.920000px;}
.yb9_c01359{bottom:999.645000px;}
.yb6_c01359{bottom:1006.560000px;}
.yb7_c01359{bottom:1008.285000px;}
.yb4_c01359{bottom:1009.155000px;}
.yb8_c01359{bottom:1010.010000px;}
.yb3_c01359{bottom:1010.880000px;}
.yb1_c01359{bottom:1011.750000px;}
.yb5_c01359{bottom:1012.605000px;}
.yb2_c01359{bottom:1014.330000px;}
.yb0_c01359{bottom:1015.200000px;}
.yaf_c01359{bottom:1016.925000px;}
.yac_c01359{bottom:1026.435000px;}
.yab_c01359{bottom:1028.160000px;}
.yad_c01359{bottom:1029.030000px;}
.yae_c01359{bottom:1029.885000px;}
.ya9_c01359{bottom:1033.350000px;}
.yaa_c01359{bottom:1034.205000px;}
.y22f_c01359{bottom:1035.075000px;}
.ya7_c01359{bottom:1040.250000px;}
.ya5_c01359{bottom:1041.120000px;}
.ya8_c01359{bottom:1043.715000px;}
.ya6_c01359{bottom:1044.570000px;}
.y9f_c01359{bottom:1046.310000px;}
.ya4_c01359{bottom:1047.165000px;}
.ya1_c01359{bottom:1049.760000px;}
.ya0_c01359{bottom:1050.630000px;}
.y9e_c01359{bottom:1051.485000px;}
.ya3_c01359{bottom:1056.675000px;}
.ya2_c01359{bottom:1060.125000px;}
.y9d_c01359{bottom:1060.995000px;}
.y9c_c01359{bottom:1062.720000px;}
.y99_c01359{bottom:1063.590000px;}
.y9b_c01359{bottom:1064.445000px;}
.y9a_c01359{bottom:1065.315000px;}
.y98_c01359{bottom:1068.765000px;}
.y97_c01359{bottom:1069.635000px;}
.y95_c01359{bottom:1073.955000px;}
.y94_c01359{bottom:1074.810000px;}
.y91_c01359{bottom:1078.275000px;}
.y93_c01359{bottom:1079.130000px;}
.y92_c01359{bottom:1080.000000px;}
.y90_c01359{bottom:1080.870000px;}
.y8f_c01359{bottom:1081.725000px;}
.y96_c01359{bottom:1082.595000px;}
.y8e_c01359{bottom:1086.045000px;}
.y8c_c01359{bottom:1095.555000px;}
.y89_c01359{bottom:1098.150000px;}
.y88_c01359{bottom:1099.875000px;}
.y8b_c01359{bottom:1101.600000px;}
.y8a_c01359{bottom:1102.470000px;}
.y8d_c01359{bottom:1106.790000px;}
.y85_c01359{bottom:1108.515000px;}
.y86_c01359{bottom:1111.110000px;}
.y87_c01359{bottom:1113.690000px;}
.y84_c01359{bottom:1114.560000px;}
.y83_c01359{bottom:1115.430000px;}
.y82_c01359{bottom:1116.285000px;}
.y7f_c01359{bottom:1117.155000px;}
.y80_c01359{bottom:1121.475000px;}
.y81_c01359{bottom:1123.200000px;}
.y7d_c01359{bottom:1127.520000px;}
.y7e_c01359{bottom:1128.390000px;}
.y7a_c01359{bottom:1130.970000px;}
.y7b_c01359{bottom:1131.840000px;}
.y79_c01359{bottom:1132.710000px;}
.y77_c01359{bottom:1133.565000px;}
.y7c_c01359{bottom:1134.435000px;}
.y78_c01359{bottom:1137.885000px;}
.y73_c01359{bottom:1142.205000px;}
.y72_c01359{bottom:1143.075000px;}
.y74_c01359{bottom:1144.800000px;}
.y6f_c01359{bottom:1147.395000px;}
.y76_c01359{bottom:1148.250000px;}
.y75_c01359{bottom:1149.120000px;}
.y6b_c01359{bottom:1149.990000px;}
.y71_c01359{bottom:1150.845000px;}
.y6c_c01359{bottom:1151.715000px;}
.y6e_c01359{bottom:1153.440000px;}
.y70_c01359{bottom:1154.310000px;}
.y6d_c01359{bottom:1156.035000px;}
.y22d_c01359{bottom:1158.630000px;}
.y22e_c01359{bottom:1159.485000px;}
.y6a_c01359{bottom:1162.080000px;}
.y69_c01359{bottom:1162.950000px;}
.y67_c01359{bottom:1164.675000px;}
.y68_c01359{bottom:1167.270000px;}
.y65_c01359{bottom:1168.995000px;}
.y66_c01359{bottom:1169.850000px;}
.y62_c01359{bottom:1170.720000px;}
.y63_c01359{bottom:1171.590000px;}
.y61_c01359{bottom:1172.445000px;}
.y64_c01359{bottom:1173.315000px;}
.y5f_c01359{bottom:1179.360000px;}
.y60_c01359{bottom:1180.230000px;}
.y5c_c01359{bottom:1182.810000px;}
.y5e_c01359{bottom:1183.680000px;}
.y5b_c01359{bottom:1184.550000px;}
.y59_c01359{bottom:1186.275000px;}
.y58_c01359{bottom:1190.595000px;}
.y5a_c01359{bottom:1191.450000px;}
.y5d_c01359{bottom:1194.045000px;}
.y56_c01359{bottom:1196.640000px;}
.y57_c01359{bottom:1200.090000px;}
.y52_c01359{bottom:1200.960000px;}
.y55_c01359{bottom:1201.830000px;}
.y54_c01359{bottom:1202.685000px;}
.y4f_c01359{bottom:1203.555000px;}
.y53_c01359{bottom:1204.410000px;}
.y50_c01359{bottom:1205.280000px;}
.y51_c01359{bottom:1207.005000px;}
.y4d_c01359{bottom:1207.875000px;}
.y4e_c01359{bottom:1208.730000px;}
.y4c_c01359{bottom:1213.920000px;}
.y4a_c01359{bottom:1218.240000px;}
.y4b_c01359{bottom:1219.110000px;}
.y49_c01359{bottom:1219.965000px;}
.y47_c01359{bottom:1220.835000px;}
.y48_c01359{bottom:1224.285000px;}
.y45_c01359{bottom:1226.010000px;}
.y44_c01359{bottom:1230.330000px;}
.y43_c01359{bottom:1232.070000px;}
.y235_c01359{bottom:1233.795000px;}
.y42_c01359{bottom:1237.245000px;}
.y3f_c01359{bottom:1238.115000px;}
.y41_c01359{bottom:1238.970000px;}
.y46_c01359{bottom:1239.840000px;}
.y40_c01359{bottom:1240.710000px;}
.y3d_c01359{bottom:1241.565000px;}
.y3c_c01359{bottom:1242.435000px;}
.y22c_c01359{bottom:1246.755000px;}
.y3e_c01359{bottom:1248.480000px;}
.y3a_c01359{bottom:1249.350000px;}
.y39_c01359{bottom:1250.205000px;}
.y37_c01359{bottom:1251.930000px;}
.y3b_c01359{bottom:1252.800000px;}
.y38_c01359{bottom:1253.670000px;}
.y34_c01359{bottom:1255.395000px;}
.y36_c01359{bottom:1256.250000px;}
.y33_c01359{bottom:1259.715000px;}
.y35_c01359{bottom:1260.570000px;}
.y31_c01359{bottom:1266.630000px;}
.y30_c01359{bottom:1268.355000px;}
.y2f_c01359{bottom:1269.210000px;}
.y2b_c01359{bottom:1270.080000px;}
.y32_c01359{bottom:1270.950000px;}
.y29_c01359{bottom:1272.675000px;}
.y2c_c01359{bottom:1273.530000px;}
.y2e_c01359{bottom:1274.400000px;}
.y2d_c01359{bottom:1276.995000px;}
.y2a_c01359{bottom:1277.850000px;}
.y28_c01359{bottom:1284.765000px;}
.y23_c01359{bottom:1285.635000px;}
.y21_c01359{bottom:1286.490000px;}
.y22b_c01359{bottom:1287.360000px;}
.y22_c01359{bottom:1288.230000px;}
.y25_c01359{bottom:1289.085000px;}
.y1e_c01359{bottom:1290.810000px;}
.y1c_c01359{bottom:1291.680000px;}
.y1f_c01359{bottom:1292.550000px;}
.y1d_c01359{bottom:1295.130000px;}
.y24_c01359{bottom:1296.000000px;}
.y20_c01359{bottom:1296.870000px;}
.y27_c01359{bottom:1297.725000px;}
.y26_c01359{bottom:1299.450000px;}
.y1b_c01359{bottom:1301.190000px;}
.y1a_c01359{bottom:1302.045000px;}
.y19_c01359{bottom:1303.770000px;}
.y18_c01359{bottom:1305.510000px;}
.y14_c01359{bottom:1307.235000px;}
.y16_c01359{bottom:1308.090000px;}
.y22a_c01359{bottom:1311.555000px;}
.y15_c01359{bottom:1313.280000px;}
.y17_c01359{bottom:1320.195000px;}
.y12_c01359{bottom:1321.050000px;}
.y13_c01359{bottom:1323.645000px;}
.y11_c01359{bottom:1324.515000px;}
.ye_c01359{bottom:1325.370000px;}
.y10_c01359{bottom:1326.240000px;}
.yf_c01359{bottom:1329.690000px;}
.yc_c01359{bottom:1335.750000px;}
.y9_c01359{bottom:1337.475000px;}
.yd_c01359{bottom:1338.330000px;}
.yb_c01359{bottom:1339.200000px;}
.y7_c01359{bottom:1340.070000px;}
.ya_c01359{bottom:1341.795000px;}
.y6_c01359{bottom:1342.650000px;}
.y5_c01359{bottom:1343.520000px;}
.y8_c01359{bottom:1346.970000px;}
.y4_c01359{bottom:1371.165000px;}
.y3_c01359{bottom:1372.890000px;}
.y2_c01359{bottom:1374.630000px;}
.y1_c01359{bottom:1416.960000px;}
.h15_c01359{height:3.110063px;}
.h23_c01359{height:5.170313px;}
.h10_c01359{height:5.399414px;}
.h16_c01359{height:6.209326px;}
.hb_c01359{height:9.340986px;}
.hf_c01359{height:12.418652px;}
.h18_c01359{height:15.550313px;}
.h14_c01359{height:18.681973px;}
.h1b_c01359{height:21.759639px;}
.h13_c01359{height:24.891299px;}
.hd_c01359{height:27.968965px;}
.he_c01359{height:31.100625px;}
.h2_c01359{height:34.232285px;}
.h12_c01359{height:37.309951px;}
.hc_c01359{height:40.441611px;}
.h8_c01359{height:43.519277px;}
.ha_c01359{height:46.650937px;}
.h1a_c01359{height:49.782598px;}
.h1e_c01359{height:50.130938px;}
.h1c_c01359{height:50.821611px;}
.h3_c01359{height:52.860264px;}
.h4_c01359{height:55.991924px;}
.h5_c01359{height:59.069590px;}
.h6_c01359{height:62.201250px;}
.h7_c01359{height:65.332910px;}
.h11_c01359{height:68.410576px;}
.h9_c01359{height:71.542236px;}
.h1d_c01359{height:74.619902px;}
.h19_c01359{height:77.751563px;}
.h17_c01359{height:80.883223px;}
.h20_c01359{height:83.960889px;}
.h21_c01359{height:108.852188px;}
.h1f_c01359{height:111.983848px;}
.h22_c01359{height:171.053437px;}
.h1_c01359{height:1513.500000px;}
.h0_c01359{height:1513.725000px;}
.w0_c01359{width:1079.130000px;}
.w1_c01359{width:1079.250000px;}
.x0_c01359{left:0.000000px;}
.x109_c01359{left:51.840000px;}
.x10a_c01359{left:103.680000px;}
.x106_c01359{left:110.595000px;}
.x104_c01359{left:130.470000px;}
.x105_c01359{left:135.645000px;}
.x10b_c01359{left:160.710000px;}
.x107_c01359{left:178.845000px;}
.x108_c01359{left:190.950000px;}
.xb9_c01359{left:193.530000px;}
.xbf_c01359{left:212.550000px;}
.x100_c01359{left:227.235000px;}
.xf7_c01359{left:231.555000px;}
.xc0_c01359{left:233.280000px;}
.x82_c01359{left:238.470000px;}
.xba_c01359{left:241.050000px;}
.x6b_c01359{left:242.790000px;}
.x33_c01359{left:245.370000px;}
.x6_c01359{left:247.965000px;}
.xca_c01359{left:249.690000px;}
.xb4_c01359{left:253.155000px;}
.xdd_c01359{left:255.750000px;}
.x103_c01359{left:259.200000px;}
.xcf_c01359{left:260.925000px;}
.xcb_c01359{left:266.115000px;}
.xb5_c01359{left:268.710000px;}
.x9b_c01359{left:270.435000px;}
.x83_c01359{left:272.160000px;}
.x23_c01359{left:276.480000px;}
.x86_c01359{left:283.395000px;}
.xe4_c01359{left:286.845000px;}
.x3c_c01359{left:289.440000px;}
.x54_c01359{left:291.165000px;}
.xbb_c01359{left:294.630000px;}
.xd8_c01359{left:296.355000px;}
.xd0_c01359{left:298.080000px;}
.x24_c01359{left:299.805000px;}
.x7_c01359{left:301.530000px;}
.xa2_c01359{left:303.270000px;}
.xa8_c01359{left:306.720000px;}
.x34_c01359{left:310.170000px;}
.xfc_c01359{left:311.910000px;}
.x7a_c01359{left:313.635000px;}
.x11_c01359{left:315.360000px;}
.x6c_c01359{left:317.085000px;}
.x4c_c01359{left:319.680000px;}
.x98_c01359{left:322.275000px;}
.x93_c01359{left:324.870000px;}
.x35_c01359{left:328.320000px;}
.xfa_c01359{left:330.915000px;}
.x55_c01359{left:332.640000px;}
.x4d_c01359{left:334.365000px;}
.xc2_c01359{left:336.090000px;}
.xde_c01359{left:338.685000px;}
.x1_c01359{left:342.150000px;}
.x12_c01359{left:343.875000px;}
.xe8_c01359{left:345.600000px;}
.x25_c01359{left:350.790000px;}
.x48_c01359{left:352.515000px;}
.xe5_c01359{left:354.240000px;}
.x6d_c01359{left:356.835000px;}
.xc8_c01359{left:359.430000px;}
.x1b_c01359{left:362.010000px;}
.x63_c01359{left:364.605000px;}
.xee_c01359{left:368.925000px;}
.x13_c01359{left:370.650000px;}
.x6e_c01359{left:372.390000px;}
.x101_c01359{left:375.840000px;}
.x1c_c01359{left:377.565000px;}
.xd1_c01359{left:380.160000px;}
.x64_c01359{left:382.755000px;}
.x36_c01359{left:387.075000px;}
.x56_c01359{left:389.670000px;}
.x9c_c01359{left:391.395000px;}
.xd2_c01359{left:393.120000px;}
.xc3_c01359{left:395.715000px;}
.xe9_c01359{left:397.440000px;}
.x97_c01359{left:400.890000px;}
.xac_c01359{left:403.485000px;}
.xd6_c01359{left:405.210000px;}
.x9d_c01359{left:406.950000px;}
.xd3_c01359{left:409.530000px;}
.x14_c01359{left:412.125000px;}
.x4e_c01359{left:415.590000px;}
.xf2_c01359{left:419.040000px;}
.x3d_c01359{left:420.765000px;}
.xd7_c01359{left:423.360000px;}
.xb1_c01359{left:425.085000px;}
.x1d_c01359{left:426.810000px;}
.x99_c01359{left:429.405000px;}
.x7b_c01359{left:435.450000px;}
.x26_c01359{left:438.045000px;}
.x6f_c01359{left:440.640000px;}
.xd4_c01359{left:442.365000px;}
.x102_c01359{left:445.830000px;}
.xf3_c01359{left:448.410000px;}
.xe6_c01359{left:451.005000px;}
.x5b_c01359{left:453.600000px;}
.xad_c01359{left:455.325000px;}
.xbc_c01359{left:457.920000px;}
.xef_c01359{left:459.645000px;}
.x94_c01359{left:461.370000px;}
.x8_c01359{left:463.110000px;}
.xc6_c01359{left:465.690000px;}
.x57_c01359{left:467.430000px;}
.xdf_c01359{left:469.155000px;}
.xe7_c01359{left:470.880000px;}
.x65_c01359{left:473.475000px;}
.x9a_c01359{left:475.200000px;}
.xb6_c01359{left:483.840000px;}
.x1e_c01359{left:487.290000px;}
.x8c_c01359{left:489.030000px;}
.xe2_c01359{left:490.755000px;}
.xf8_c01359{left:492.480000px;}
.x7c_c01359{left:494.205000px;}
.x9e_c01359{left:495.930000px;}
.x49_c01359{left:497.670000px;}
.x15_c01359{left:500.250000px;}
.x2_c01359{left:501.990000px;}
.x9_c01359{left:504.570000px;}
.x8d_c01359{left:507.165000px;}
.x16_c01359{left:509.760000px;}
.x66_c01359{left:512.355000px;}
.x70_c01359{left:514.080000px;}
.x3_c01359{left:516.675000px;}
.xc4_c01359{left:518.400000px;}
.x3e_c01359{left:520.125000px;}
.x5c_c01359{left:523.590000px;}
.xd5_c01359{left:525.315000px;}
.x9f_c01359{left:527.910000px;}
.x37_c01359{left:531.360000px;}
.x71_c01359{left:533.955000px;}
.xa0_c01359{left:537.405000px;}
.x4f_c01359{left:539.130000px;}
.xa_c01359{left:540.870000px;}
.x17_c01359{left:542.595000px;}
.xbd_c01359{left:547.770000px;}
.x4_c01359{left:551.235000px;}
.x85_c01359{left:553.830000px;}
.xf4_c01359{left:555.555000px;}
.x1f_c01359{left:557.280000px;}
.xaa_c01359{left:561.600000px;}
.xea_c01359{left:563.325000px;}
.x5d_c01359{left:565.920000px;}
.xbe_c01359{left:567.645000px;}
.xb0_c01359{left:569.370000px;}
.x27_c01359{left:571.110000px;}
.xb_c01359{left:573.690000px;}
.x58_c01359{left:576.285000px;}
.x8e_c01359{left:578.010000px;}
.x3f_c01359{left:581.475000px;}
.x28_c01359{left:588.390000px;}
.x72_c01359{left:590.970000px;}
.x29_c01359{left:593.565000px;}
.x84_c01359{left:596.160000px;}
.x7d_c01359{left:597.885000px;}
.x40_c01359{left:599.610000px;}
.xd9_c01359{left:603.075000px;}
.x5_c01359{left:606.525000px;}
.xf0_c01359{left:608.250000px;}
.xa3_c01359{left:612.570000px;}
.xda_c01359{left:614.310000px;}
.x41_c01359{left:616.035000px;}
.x2a_c01359{left:619.485000px;}
.xc_c01359{left:624.675000px;}
.x20_c01359{left:627.270000px;}
.x59_c01359{left:629.850000px;}
.xa4_c01359{left:632.445000px;}
.xdb_c01359{left:634.170000px;}
.x50_c01359{left:635.910000px;}
.x73_c01359{left:639.360000px;}
.x38_c01359{left:641.085000px;}
.x2b_c01359{left:642.810000px;}
.x7e_c01359{left:646.275000px;}
.xc9_c01359{left:648.000000px;}
.x42_c01359{left:651.450000px;}
.xed_c01359{left:653.190000px;}
.x74_c01359{left:654.915000px;}
.x67_c01359{left:658.365000px;}
.x8f_c01359{left:660.090000px;}
.xfb_c01359{left:661.830000px;}
.x4a_c01359{left:664.410000px;}
.x8b_c01359{left:666.150000px;}
.xd_c01359{left:669.600000px;}
.x51_c01359{left:672.195000px;}
.xb2_c01359{left:673.920000px;}
.xcc_c01359{left:676.515000px;}
.xeb_c01359{left:679.965000px;}
.xa5_c01359{left:681.690000px;}
.x87_c01359{left:685.155000px;}
.x52_c01359{left:688.605000px;}
.x4b_c01359{left:690.330000px;}
.x5e_c01359{left:692.070000px;}
.x2c_c01359{left:694.650000px;}
.xa6_c01359{left:696.390000px;}
.xf1_c01359{left:699.840000px;}
.x5f_c01359{left:701.565000px;}
.x90_c01359{left:703.290000px;}
.xae_c01359{left:706.755000px;}
.x75_c01359{left:709.350000px;}
.x39_c01359{left:711.930000px;}
.x95_c01359{left:717.120000px;}
.x21_c01359{left:718.845000px;}
.x5a_c01359{left:720.570000px;}
.x88_c01359{left:723.165000px;}
.x60_c01359{left:725.760000px;}
.xf5_c01359{left:729.210000px;}
.x7f_c01359{left:733.530000px;}
.x68_c01359{left:735.270000px;}
.xa1_c01359{left:738.720000px;}
.x43_c01359{left:740.445000px;}
.x53_c01359{left:743.910000px;}
.xe_c01359{left:746.490000px;}
.xf9_c01359{left:752.550000px;}
.xce_c01359{left:754.275000px;}
.x91_c01359{left:756.000000px;}
.xdc_c01359{left:758.595000px;}
.x2d_c01359{left:760.320000px;}
.xc5_c01359{left:762.915000px;}
.x76_c01359{left:764.640000px;}
.x89_c01359{left:767.235000px;}
.x3a_c01359{left:769.830000px;}
.xec_c01359{left:772.410000px;}
.xf_c01359{left:775.005000px;}
.x2e_c01359{left:777.600000px;}
.x18_c01359{left:780.195000px;}
.xe0_c01359{left:781.920000px;}
.x22_c01359{left:787.965000px;}
.xf6_c01359{left:790.560000px;}
.x77_c01359{left:792.285000px;}
.xe1_c01359{left:794.010000px;}
.x2f_c01359{left:797.475000px;}
.x44_c01359{left:801.795000px;}
.xa9_c01359{left:804.390000px;}
.x78_c01359{left:806.115000px;}
.xfe_c01359{left:807.840000px;}
.x69_c01359{left:809.565000px;}
.x45_c01359{left:812.160000px;}
.xa7_c01359{left:814.755000px;}
.xc1_c01359{left:816.480000px;}
.x80_c01359{left:818.205000px;}
.x10_c01359{left:819.930000px;}
.x79_c01359{left:821.670000px;}
.x30_c01359{left:824.250000px;}
.xb7_c01359{left:825.990000px;}
.x96_c01359{left:827.715000px;}
.xb3_c01359{left:829.440000px;}
.xff_c01359{left:831.165000px;}
.x6a_c01359{left:832.890000px;}
.x92_c01359{left:835.485000px;}
.x61_c01359{left:837.210000px;}
.x46_c01359{left:840.675000px;}
.x31_c01359{left:844.995504px;}
.x81_c01359{left:847.590000px;}
.xfd_c01359{left:850.170000px;}
.x3b_c01359{left:851.910000px;}
.x47_c01359{left:854.490000px;}
.x8a_c01359{left:856.230000px;}
.x19_c01359{left:858.810000px;}
.x62_c01359{left:862.275000px;}
.xb8_c01359{left:864.000000px;}
.x32_c01359{left:865.725000px;}
.xc7_c01359{left:867.450000px;}
.x1a_c01359{left:870.045000px;}
.xaf_c01359{left:871.770000px;}
.xcd_c01359{left:874.365000px;}
.xab_c01359{left:876.960000px;}
.xe3_c01359{left:884.730000px;}
.x10c_c01359{left:914.115000px;}
@media print{
.v2_c01359{vertical-align:-12.266667pt;}
.v4_c01359{vertical-align:-9.226667pt;}
.v0_c01359{vertical-align:0.000000pt;}
.v3_c01359{vertical-align:3.093333pt;}
.v1_c01359{vertical-align:9.226667pt;}
.ls3_c01359{letter-spacing:0.000000pt;}
.ls1_c01359{letter-spacing:8.253653pt;}
.ls0_c01359{letter-spacing:40.132213pt;}
.ls2_c01359{letter-spacing:41.834241pt;}
.ws1_c01359{word-spacing:-5.344107pt;}
.ws0_c01359{word-spacing:-1.826560pt;}
.ws2_c01359{word-spacing:0.000000pt;}
.fs13_c01359{font-size:3.072000pt;}
.fsa_c01359{font-size:5.333333pt;}
.fs14_c01359{font-size:6.133333pt;}
.fs9_c01359{font-size:9.226667pt;}
.fse_c01359{font-size:12.266667pt;}
.fs16_c01359{font-size:15.360000pt;}
.fs12_c01359{font-size:18.453333pt;}
.fs19_c01359{font-size:21.493333pt;}
.fs11_c01359{font-size:24.586667pt;}
.fsc_c01359{font-size:27.626667pt;}
.fsd_c01359{font-size:30.720000pt;}
.fs0_c01359{font-size:33.813333pt;}
.fs10_c01359{font-size:36.853333pt;}
.fsb_c01359{font-size:39.946667pt;}
.fs6_c01359{font-size:42.986667pt;}
.fs8_c01359{font-size:46.080000pt;}
.fs18_c01359{font-size:49.173333pt;}
.fs1_c01359{font-size:52.213333pt;}
.fs2_c01359{font-size:55.306667pt;}
.fs3_c01359{font-size:58.346667pt;}
.fs4_c01359{font-size:61.440000pt;}
.fs5_c01359{font-size:64.533333pt;}
.fsf_c01359{font-size:67.573333pt;}
.fs7_c01359{font-size:70.666667pt;}
.fs1a_c01359{font-size:73.706667pt;}
.fs17_c01359{font-size:76.800000pt;}
.fs15_c01359{font-size:79.893333pt;}
.fs1c_c01359{font-size:82.933333pt;}
.fs1d_c01359{font-size:107.520000pt;}
.fs1b_c01359{font-size:110.613333pt;}
.fs1e_c01359{font-size:168.960000pt;}
.y0_c01359{bottom:0.000000pt;}
.y234_c01359{bottom:80.640000pt;}
.y232_c01359{bottom:90.626667pt;}
.y233_c01359{bottom:92.933333pt;}
.y231_c01359{bottom:160.506667pt;}
.y227_c01359{bottom:182.786667pt;}
.y229_c01359{bottom:185.853333pt;}
.y228_c01359{bottom:186.626667pt;}
.y226_c01359{bottom:192.000000pt;}
.y225_c01359{bottom:192.773333pt;}
.y224_c01359{bottom:193.533333pt;}
.y223_c01359{bottom:199.680000pt;}
.y222_c01359{bottom:201.986667pt;}
.y221_c01359{bottom:202.746667pt;}
.y220_c01359{bottom:206.586667pt;}
.y21e_c01359{bottom:209.666667pt;}
.y21f_c01359{bottom:210.426667pt;}
.y21d_c01359{bottom:211.200000pt;}
.y21b_c01359{bottom:215.040000pt;}
.y21c_c01359{bottom:217.346667pt;}
.y21a_c01359{bottom:218.106667pt;}
.y219_c01359{bottom:220.413333pt;}
.y218_c01359{bottom:221.946667pt;}
.y216_c01359{bottom:222.720000pt;}
.y217_c01359{bottom:224.253333pt;}
.y214_c01359{bottom:225.026667pt;}
.y215_c01359{bottom:225.786667pt;}
.y213_c01359{bottom:231.933333pt;}
.y210_c01359{bottom:232.706667pt;}
.y211_c01359{bottom:233.466667pt;}
.y212_c01359{bottom:236.546667pt;}
.y20e_c01359{bottom:238.080000pt;}
.y20f_c01359{bottom:238.853333pt;}
.y20d_c01359{bottom:241.146667pt;}
.y20c_c01359{bottom:245.760000pt;}
.y20b_c01359{bottom:248.066667pt;}
.y208_c01359{bottom:251.906667pt;}
.y207_c01359{bottom:252.666667pt;}
.y20a_c01359{bottom:253.440000pt;}
.y209_c01359{bottom:254.973333pt;}
.y206_c01359{bottom:256.506667pt;}
.y205_c01359{bottom:264.186667pt;}
.y204_c01359{bottom:264.960000pt;}
.y203_c01359{bottom:266.493333pt;}
.y202_c01359{bottom:267.266667pt;}
.y201_c01359{bottom:268.800000pt;}
.y200_c01359{bottom:270.333333pt;}
.y1fe_c01359{bottom:272.640000pt;}
.y1fd_c01359{bottom:278.013333pt;}
.y1ff_c01359{bottom:280.320000pt;}
.y1fc_c01359{bottom:281.093333pt;}
.y1fb_c01359{bottom:281.853333pt;}
.y1fa_c01359{bottom:282.626667pt;}
.y1f8_c01359{bottom:283.386667pt;}
.y1f9_c01359{bottom:284.933333pt;}
.y1f6_c01359{bottom:287.226667pt;}
.y1f7_c01359{bottom:288.000000pt;}
.y1f4_c01359{bottom:293.373333pt;}
.y1f5_c01359{bottom:295.680000pt;}
.y1f3_c01359{bottom:297.986667pt;}
.y1f2_c01359{bottom:298.746667pt;}
.y1f1_c01359{bottom:299.520000pt;}
.y1f0_c01359{bottom:302.586667pt;}
.y1ef_c01359{bottom:304.893333pt;}
.y1ed_c01359{bottom:307.200000pt;}
.y1eb_c01359{bottom:308.733333pt;}
.y1ea_c01359{bottom:309.506667pt;}
.y1ec_c01359{bottom:311.040000pt;}
.y1e8_c01359{bottom:311.813333pt;}
.y1e7_c01359{bottom:312.573333pt;}
.y1e9_c01359{bottom:313.346667pt;}
.y1ee_c01359{bottom:314.106667pt;}
.y1e6_c01359{bottom:317.186667pt;}
.y1e5_c01359{bottom:317.946667pt;}
.y1e3_c01359{bottom:318.720000pt;}
.y1e4_c01359{bottom:319.493333pt;}
.y1e1_c01359{bottom:322.560000pt;}
.y1e0_c01359{bottom:324.866667pt;}
.y1e2_c01359{bottom:327.173333pt;}
.y1dc_c01359{bottom:329.466667pt;}
.y1de_c01359{bottom:330.240000pt;}
.y1df_c01359{bottom:331.013333pt;}
.y1dd_c01359{bottom:334.080000pt;}
.y1db_c01359{bottom:341.760000pt;}
.y1da_c01359{bottom:342.533333pt;}
.y1d8_c01359{bottom:345.600000pt;}
.y1d7_c01359{bottom:347.133333pt;}
.y1d6_c01359{bottom:347.906667pt;}
.y1d5_c01359{bottom:350.213333pt;}
.y1d4_c01359{bottom:350.973333pt;}
.y1d9_c01359{bottom:352.506667pt;}
.y1d2_c01359{bottom:354.053333pt;}
.y1d0_c01359{bottom:356.346667pt;}
.y1d3_c01359{bottom:357.893333pt;}
.y1d1_c01359{bottom:359.426667pt;}
.y1cf_c01359{bottom:360.960000pt;}
.y1cc_c01359{bottom:361.733333pt;}
.y1ce_c01359{bottom:362.493333pt;}
.y1cd_c01359{bottom:364.026667pt;}
.y1cb_c01359{bottom:364.800000pt;}
.y1ca_c01359{bottom:365.573333pt;}
.y1c9_c01359{bottom:366.333333pt;}
.y1c6_c01359{bottom:370.173333pt;}
.y1c4_c01359{bottom:371.706667pt;}
.y1c8_c01359{bottom:373.253333pt;}
.y1c7_c01359{bottom:374.013333pt;}
.y1c1_c01359{bottom:374.786667pt;}
.y1c5_c01359{bottom:375.546667pt;}
.y1c3_c01359{bottom:376.320000pt;}
.y1c2_c01359{bottom:377.093333pt;}
.y1be_c01359{bottom:379.386667pt;}
.y1c0_c01359{bottom:380.160000pt;}
.y1bd_c01359{bottom:380.933333pt;}
.y1bf_c01359{bottom:381.693333pt;}
.y1bc_c01359{bottom:386.306667pt;}
.y1ba_c01359{bottom:387.840000pt;}
.y1b8_c01359{bottom:390.146667pt;}
.y1b9_c01359{bottom:391.680000pt;}
.y1b7_c01359{bottom:393.213333pt;}
.y1bb_c01359{bottom:393.986667pt;}
.y1b6_c01359{bottom:394.746667pt;}
.y1b5_c01359{bottom:400.133333pt;}
.y1b3_c01359{bottom:401.666667pt;}
.y1b2_c01359{bottom:403.200000pt;}
.y1b4_c01359{bottom:403.973333pt;}
.y1b1_c01359{bottom:405.506667pt;}
.y1ab_c01359{bottom:407.813333pt;}
.y1b0_c01359{bottom:408.573333pt;}
.y1af_c01359{bottom:410.106667pt;}
.y1ac_c01359{bottom:410.880000pt;}
.y1ae_c01359{bottom:411.653333pt;}
.y1ad_c01359{bottom:412.413333pt;}
.y1aa_c01359{bottom:416.253333pt;}
.y1a8_c01359{bottom:419.333333pt;}
.y1a9_c01359{bottom:420.093333pt;}
.y1a7_c01359{bottom:421.626667pt;}
.y1a6_c01359{bottom:423.933333pt;}
.y1a5_c01359{bottom:425.466667pt;}
.y1a4_c01359{bottom:426.240000pt;}
.y1a3_c01359{bottom:427.773333pt;}
.y19f_c01359{bottom:432.386667pt;}
.y1a0_c01359{bottom:433.146667pt;}
.y19e_c01359{bottom:436.986667pt;}
.y19d_c01359{bottom:437.760000pt;}
.y1a2_c01359{bottom:440.066667pt;}
.y1a1_c01359{bottom:443.906667pt;}
.y19a_c01359{bottom:446.213333pt;}
.y19c_c01359{bottom:447.746667pt;}
.y199_c01359{bottom:451.586667pt;}
.y198_c01359{bottom:452.346667pt;}
.y19b_c01359{bottom:455.426667pt;}
.y197_c01359{bottom:460.800000pt;}
.y195_c01359{bottom:461.573333pt;}
.y194_c01359{bottom:462.333333pt;}
.y192_c01359{bottom:463.106667pt;}
.y190_c01359{bottom:465.413333pt;}
.y196_c01359{bottom:466.173333pt;}
.y18f_c01359{bottom:466.946667pt;}
.y191_c01359{bottom:467.706667pt;}
.y185_c01359{bottom:468.480000pt;}
.y18e_c01359{bottom:470.013333pt;}
.y18d_c01359{bottom:470.786667pt;}
.y18b_c01359{bottom:473.093333pt;}
.y193_c01359{bottom:473.853333pt;}
.y18c_c01359{bottom:474.626667pt;}
.y187_c01359{bottom:476.160000pt;}
.y189_c01359{bottom:480.000000pt;}
.y188_c01359{bottom:481.533333pt;}
.y183_c01359{bottom:482.306667pt;}
.y186_c01359{bottom:483.066667pt;}
.y182_c01359{bottom:483.840000pt;}
.y18a_c01359{bottom:484.613333pt;}
.y180_c01359{bottom:486.906667pt;}
.y181_c01359{bottom:489.213333pt;}
.y184_c01359{bottom:493.826667pt;}
.y17d_c01359{bottom:499.200000pt;}
.y17b_c01359{bottom:499.973333pt;}
.y17f_c01359{bottom:500.733333pt;}
.y17c_c01359{bottom:501.506667pt;}
.y17e_c01359{bottom:502.266667pt;}
.y17a_c01359{bottom:512.253333pt;}
.y178_c01359{bottom:515.333333pt;}
.y179_c01359{bottom:517.626667pt;}
.y175_c01359{bottom:531.453333pt;}
.y177_c01359{bottom:532.226667pt;}
.y176_c01359{bottom:532.986667pt;}
.y174_c01359{bottom:533.760000pt;}
.y171_c01359{bottom:539.906667pt;}
.y170_c01359{bottom:541.440000pt;}
.y173_c01359{bottom:542.213333pt;}
.y16d_c01359{bottom:545.280000pt;}
.y16f_c01359{bottom:546.813333pt;}
.y16e_c01359{bottom:547.586667pt;}
.y16c_c01359{bottom:549.120000pt;}
.y16b_c01359{bottom:549.893333pt;}
.y16a_c01359{bottom:552.186667pt;}
.y172_c01359{bottom:552.960000pt;}
.y168_c01359{bottom:554.493333pt;}
.y164_c01359{bottom:556.800000pt;}
.y169_c01359{bottom:558.333333pt;}
.y167_c01359{bottom:559.106667pt;}
.y166_c01359{bottom:559.866667pt;}
.y165_c01359{bottom:560.640000pt;}
.y163_c01359{bottom:565.253333pt;}
.y162_c01359{bottom:569.853333pt;}
.y15f_c01359{bottom:573.693333pt;}
.y15e_c01359{bottom:574.466667pt;}
.y161_c01359{bottom:576.000000pt;}
.y160_c01359{bottom:576.773333pt;}
.y15d_c01359{bottom:579.066667pt;}
.y15c_c01359{bottom:579.840000pt;}
.y15b_c01359{bottom:580.613333pt;}
.y158_c01359{bottom:585.213333pt;}
.y157_c01359{bottom:586.746667pt;}
.y159_c01359{bottom:589.053333pt;}
.y156_c01359{bottom:590.586667pt;}
.y15a_c01359{bottom:591.360000pt;}
.y153_c01359{bottom:592.893333pt;}
.y154_c01359{bottom:595.973333pt;}
.y155_c01359{bottom:596.733333pt;}
.y150_c01359{bottom:601.346667pt;}
.y151_c01359{bottom:604.413333pt;}
.y14f_c01359{bottom:605.186667pt;}
.y152_c01359{bottom:605.946667pt;}
.y14a_c01359{bottom:607.493333pt;}
.y14e_c01359{bottom:608.253333pt;}
.y14d_c01359{bottom:609.786667pt;}
.y14c_c01359{bottom:610.560000pt;}
.y14b_c01359{bottom:611.333333pt;}
.y149_c01359{bottom:614.400000pt;}
.y147_c01359{bottom:615.933333pt;}
.y145_c01359{bottom:617.466667pt;}
.y146_c01359{bottom:618.240000pt;}
.y148_c01359{bottom:619.773333pt;}
.y144_c01359{bottom:620.546667pt;}
.y140_c01359{bottom:622.080000pt;}
.y143_c01359{bottom:623.613333pt;}
.y142_c01359{bottom:625.146667pt;}
.y141_c01359{bottom:625.920000pt;}
.y13e_c01359{bottom:631.293333pt;}
.y13d_c01359{bottom:632.066667pt;}
.y13f_c01359{bottom:635.133333pt;}
.y13b_c01359{bottom:635.906667pt;}
.y136_c01359{bottom:638.213333pt;}
.y13a_c01359{bottom:638.973333pt;}
.y139_c01359{bottom:639.746667pt;}
.y138_c01359{bottom:640.506667pt;}
.y137_c01359{bottom:641.280000pt;}
.y13c_c01359{bottom:645.893333pt;}
.y134_c01359{bottom:646.653333pt;}
.y135_c01359{bottom:648.960000pt;}
.y133_c01359{bottom:649.733333pt;}
.y12f_c01359{bottom:651.266667pt;}
.y131_c01359{bottom:652.026667pt;}
.y132_c01359{bottom:652.800000pt;}
.y130_c01359{bottom:653.573333pt;}
.y12e_c01359{bottom:654.333333pt;}
.y12d_c01359{bottom:658.173333pt;}
.y12c_c01359{bottom:661.253333pt;}
.y12a_c01359{bottom:662.786667pt;}
.y129_c01359{bottom:664.320000pt;}
.y12b_c01359{bottom:665.093333pt;}
.y126_c01359{bottom:666.626667pt;}
.y127_c01359{bottom:667.386667pt;}
.y125_c01359{bottom:668.933333pt;}
.y128_c01359{bottom:670.466667pt;}
.y124_c01359{bottom:672.000000pt;}
.y122_c01359{bottom:672.773333pt;}
.y11e_c01359{bottom:677.373333pt;}
.y120_c01359{bottom:678.146667pt;}
.y11d_c01359{bottom:678.906667pt;}
.y121_c01359{bottom:680.453333pt;}
.y11f_c01359{bottom:681.213333pt;}
.y11b_c01359{bottom:681.986667pt;}
.y11c_c01359{bottom:682.746667pt;}
.y11a_c01359{bottom:684.293333pt;}
.y119_c01359{bottom:685.053333pt;}
.y123_c01359{bottom:685.826667pt;}
.y117_c01359{bottom:686.586667pt;}
.y118_c01359{bottom:687.360000pt;}
.y116_c01359{bottom:693.506667pt;}
.y114_c01359{bottom:694.266667pt;}
.y113_c01359{bottom:695.813333pt;}
.y111_c01359{bottom:697.346667pt;}
.y110_c01359{bottom:698.106667pt;}
.y112_c01359{bottom:701.186667pt;}
.y115_c01359{bottom:707.333333pt;}
.y10f_c01359{bottom:708.866667pt;}
.y10e_c01359{bottom:710.400000pt;}
.y10d_c01359{bottom:711.933333pt;}
.y10c_c01359{bottom:712.706667pt;}
.y10b_c01359{bottom:713.466667pt;}
.y108_c01359{bottom:714.240000pt;}
.y10a_c01359{bottom:717.306667pt;}
.y109_c01359{bottom:718.080000pt;}
.y104_c01359{bottom:724.226667pt;}
.y103_c01359{bottom:725.760000pt;}
.y107_c01359{bottom:726.533333pt;}
.y106_c01359{bottom:727.293333pt;}
.yff_c01359{bottom:728.826667pt;}
.y102_c01359{bottom:729.600000pt;}
.y101_c01359{bottom:730.373333pt;}
.y100_c01359{bottom:731.133333pt;}
.yfd_c01359{bottom:731.906667pt;}
.yfc_c01359{bottom:732.666667pt;}
.yf4_c01359{bottom:733.440000pt;}
.yfe_c01359{bottom:734.973333pt;}
.y105_c01359{bottom:738.813333pt;}
.yf7_c01359{bottom:741.120000pt;}
.yfb_c01359{bottom:741.893333pt;}
.yfa_c01359{bottom:742.653333pt;}
.yf6_c01359{bottom:743.426667pt;}
.yf9_c01359{bottom:744.186667pt;}
.yf8_c01359{bottom:746.493333pt;}
.yf5_c01359{bottom:748.026667pt;}
.yf1_c01359{bottom:754.173333pt;}
.yef_c01359{bottom:754.946667pt;}
.yf2_c01359{bottom:758.013333pt;}
.yf3_c01359{bottom:759.546667pt;}
.yf0_c01359{bottom:768.773333pt;}
.yee_c01359{bottom:770.306667pt;}
.yed_c01359{bottom:773.373333pt;}
.yec_c01359{bottom:774.146667pt;}
.y230_c01359{bottom:778.746667pt;}
.ye8_c01359{bottom:784.893333pt;}
.ye9_c01359{bottom:787.200000pt;}
.ye7_c01359{bottom:787.973333pt;}
.yeb_c01359{bottom:789.506667pt;}
.yea_c01359{bottom:790.266667pt;}
.ye6_c01359{bottom:794.106667pt;}
.ye5_c01359{bottom:801.026667pt;}
.ye4_c01359{bottom:802.560000pt;}
.ye2_c01359{bottom:803.333333pt;}
.ye1_c01359{bottom:804.866667pt;}
.ye3_c01359{bottom:805.626667pt;}
.yde_c01359{bottom:807.173333pt;}
.ye0_c01359{bottom:809.466667pt;}
.ydf_c01359{bottom:810.240000pt;}
.ydc_c01359{bottom:820.986667pt;}
.yda_c01359{bottom:821.760000pt;}
.yd8_c01359{bottom:822.533333pt;}
.ydb_c01359{bottom:824.826667pt;}
.yd9_c01359{bottom:826.373333pt;}
.ydd_c01359{bottom:830.973333pt;}
.yd6_c01359{bottom:833.280000pt;}
.yd5_c01359{bottom:834.053333pt;}
.yd7_c01359{bottom:836.346667pt;}
.yd1_c01359{bottom:837.120000pt;}
.yd2_c01359{bottom:837.893333pt;}
.ycf_c01359{bottom:838.653333pt;}
.yd4_c01359{bottom:839.426667pt;}
.yd3_c01359{bottom:840.186667pt;}
.yd0_c01359{bottom:841.733333pt;}
.yce_c01359{bottom:848.640000pt;}
.yca_c01359{bottom:851.706667pt;}
.ycb_c01359{bottom:853.253333pt;}
.yc9_c01359{bottom:854.013333pt;}
.yc8_c01359{bottom:856.320000pt;}
.yc7_c01359{bottom:857.093333pt;}
.ycd_c01359{bottom:857.853333pt;}
.ycc_c01359{bottom:859.386667pt;}
.yc3_c01359{bottom:863.226667pt;}
.yc4_c01359{bottom:864.000000pt;}
.yc6_c01359{bottom:864.773333pt;}
.yc5_c01359{bottom:867.066667pt;}
.yc1_c01359{bottom:867.840000pt;}
.yc2_c01359{bottom:869.373333pt;}
.ybe_c01359{bottom:870.146667pt;}
.yc0_c01359{bottom:870.906667pt;}
.ybf_c01359{bottom:871.680000pt;}
.ybc_c01359{bottom:877.826667pt;}
.ybd_c01359{bottom:879.360000pt;}
.ybb_c01359{bottom:882.426667pt;}
.yba_c01359{bottom:887.040000pt;}
.yb9_c01359{bottom:888.573333pt;}
.yb6_c01359{bottom:894.720000pt;}
.yb7_c01359{bottom:896.253333pt;}
.yb4_c01359{bottom:897.026667pt;}
.yb8_c01359{bottom:897.786667pt;}
.yb3_c01359{bottom:898.560000pt;}
.yb1_c01359{bottom:899.333333pt;}
.yb5_c01359{bottom:900.093333pt;}
.yb2_c01359{bottom:901.626667pt;}
.yb0_c01359{bottom:902.400000pt;}
.yaf_c01359{bottom:903.933333pt;}
.yac_c01359{bottom:912.386667pt;}
.yab_c01359{bottom:913.920000pt;}
.yad_c01359{bottom:914.693333pt;}
.yae_c01359{bottom:915.453333pt;}
.ya9_c01359{bottom:918.533333pt;}
.yaa_c01359{bottom:919.293333pt;}
.y22f_c01359{bottom:920.066667pt;}
.ya7_c01359{bottom:924.666667pt;}
.ya5_c01359{bottom:925.440000pt;}
.ya8_c01359{bottom:927.746667pt;}
.ya6_c01359{bottom:928.506667pt;}
.y9f_c01359{bottom:930.053333pt;}
.ya4_c01359{bottom:930.813333pt;}
.ya1_c01359{bottom:933.120000pt;}
.ya0_c01359{bottom:933.893333pt;}
.y9e_c01359{bottom:934.653333pt;}
.ya3_c01359{bottom:939.266667pt;}
.ya2_c01359{bottom:942.333333pt;}
.y9d_c01359{bottom:943.106667pt;}
.y9c_c01359{bottom:944.640000pt;}
.y99_c01359{bottom:945.413333pt;}
.y9b_c01359{bottom:946.173333pt;}
.y9a_c01359{bottom:946.946667pt;}
.y98_c01359{bottom:950.013333pt;}
.y97_c01359{bottom:950.786667pt;}
.y95_c01359{bottom:954.626667pt;}
.y94_c01359{bottom:955.386667pt;}
.y91_c01359{bottom:958.466667pt;}
.y93_c01359{bottom:959.226667pt;}
.y92_c01359{bottom:960.000000pt;}
.y90_c01359{bottom:960.773333pt;}
.y8f_c01359{bottom:961.533333pt;}
.y96_c01359{bottom:962.306667pt;}
.y8e_c01359{bottom:965.373333pt;}
.y8c_c01359{bottom:973.826667pt;}
.y89_c01359{bottom:976.133333pt;}
.y88_c01359{bottom:977.666667pt;}
.y8b_c01359{bottom:979.200000pt;}
.y8a_c01359{bottom:979.973333pt;}
.y8d_c01359{bottom:983.813333pt;}
.y85_c01359{bottom:985.346667pt;}
.y86_c01359{bottom:987.653333pt;}
.y87_c01359{bottom:989.946667pt;}
.y84_c01359{bottom:990.720000pt;}
.y83_c01359{bottom:991.493333pt;}
.y82_c01359{bottom:992.253333pt;}
.y7f_c01359{bottom:993.026667pt;}
.y80_c01359{bottom:996.866667pt;}
.y81_c01359{bottom:998.400000pt;}
.y7d_c01359{bottom:1002.240000pt;}
.y7e_c01359{bottom:1003.013333pt;}
.y7a_c01359{bottom:1005.306667pt;}
.y7b_c01359{bottom:1006.080000pt;}
.y79_c01359{bottom:1006.853333pt;}
.y77_c01359{bottom:1007.613333pt;}
.y7c_c01359{bottom:1008.386667pt;}
.y78_c01359{bottom:1011.453333pt;}
.y73_c01359{bottom:1015.293333pt;}
.y72_c01359{bottom:1016.066667pt;}
.y74_c01359{bottom:1017.600000pt;}
.y6f_c01359{bottom:1019.906667pt;}
.y76_c01359{bottom:1020.666667pt;}
.y75_c01359{bottom:1021.440000pt;}
.y6b_c01359{bottom:1022.213333pt;}
.y71_c01359{bottom:1022.973333pt;}
.y6c_c01359{bottom:1023.746667pt;}
.y6e_c01359{bottom:1025.280000pt;}
.y70_c01359{bottom:1026.053333pt;}
.y6d_c01359{bottom:1027.586667pt;}
.y22d_c01359{bottom:1029.893333pt;}
.y22e_c01359{bottom:1030.653333pt;}
.y6a_c01359{bottom:1032.960000pt;}
.y69_c01359{bottom:1033.733333pt;}
.y67_c01359{bottom:1035.266667pt;}
.y68_c01359{bottom:1037.573333pt;}
.y65_c01359{bottom:1039.106667pt;}
.y66_c01359{bottom:1039.866667pt;}
.y62_c01359{bottom:1040.640000pt;}
.y63_c01359{bottom:1041.413333pt;}
.y61_c01359{bottom:1042.173333pt;}
.y64_c01359{bottom:1042.946667pt;}
.y5f_c01359{bottom:1048.320000pt;}
.y60_c01359{bottom:1049.093333pt;}
.y5c_c01359{bottom:1051.386667pt;}
.y5e_c01359{bottom:1052.160000pt;}
.y5b_c01359{bottom:1052.933333pt;}
.y59_c01359{bottom:1054.466667pt;}
.y58_c01359{bottom:1058.306667pt;}
.y5a_c01359{bottom:1059.066667pt;}
.y5d_c01359{bottom:1061.373333pt;}
.y56_c01359{bottom:1063.680000pt;}
.y57_c01359{bottom:1066.746667pt;}
.y52_c01359{bottom:1067.520000pt;}
.y55_c01359{bottom:1068.293333pt;}
.y54_c01359{bottom:1069.053333pt;}
.y4f_c01359{bottom:1069.826667pt;}
.y53_c01359{bottom:1070.586667pt;}
.y50_c01359{bottom:1071.360000pt;}
.y51_c01359{bottom:1072.893333pt;}
.y4d_c01359{bottom:1073.666667pt;}
.y4e_c01359{bottom:1074.426667pt;}
.y4c_c01359{bottom:1079.040000pt;}
.y4a_c01359{bottom:1082.880000pt;}
.y4b_c01359{bottom:1083.653333pt;}
.y49_c01359{bottom:1084.413333pt;}
.y47_c01359{bottom:1085.186667pt;}
.y48_c01359{bottom:1088.253333pt;}
.y45_c01359{bottom:1089.786667pt;}
.y44_c01359{bottom:1093.626667pt;}
.y43_c01359{bottom:1095.173333pt;}
.y235_c01359{bottom:1096.706667pt;}
.y42_c01359{bottom:1099.773333pt;}
.y3f_c01359{bottom:1100.546667pt;}
.y41_c01359{bottom:1101.306667pt;}
.y46_c01359{bottom:1102.080000pt;}
.y40_c01359{bottom:1102.853333pt;}
.y3d_c01359{bottom:1103.613333pt;}
.y3c_c01359{bottom:1104.386667pt;}
.y22c_c01359{bottom:1108.226667pt;}
.y3e_c01359{bottom:1109.760000pt;}
.y3a_c01359{bottom:1110.533333pt;}
.y39_c01359{bottom:1111.293333pt;}
.y37_c01359{bottom:1112.826667pt;}
.y3b_c01359{bottom:1113.600000pt;}
.y38_c01359{bottom:1114.373333pt;}
.y34_c01359{bottom:1115.906667pt;}
.y36_c01359{bottom:1116.666667pt;}
.y33_c01359{bottom:1119.746667pt;}
.y35_c01359{bottom:1120.506667pt;}
.y31_c01359{bottom:1125.893333pt;}
.y30_c01359{bottom:1127.426667pt;}
.y2f_c01359{bottom:1128.186667pt;}
.y2b_c01359{bottom:1128.960000pt;}
.y32_c01359{bottom:1129.733333pt;}
.y29_c01359{bottom:1131.266667pt;}
.y2c_c01359{bottom:1132.026667pt;}
.y2e_c01359{bottom:1132.800000pt;}
.y2d_c01359{bottom:1135.106667pt;}
.y2a_c01359{bottom:1135.866667pt;}
.y28_c01359{bottom:1142.013333pt;}
.y23_c01359{bottom:1142.786667pt;}
.y21_c01359{bottom:1143.546667pt;}
.y22b_c01359{bottom:1144.320000pt;}
.y22_c01359{bottom:1145.093333pt;}
.y25_c01359{bottom:1145.853333pt;}
.y1e_c01359{bottom:1147.386667pt;}
.y1c_c01359{bottom:1148.160000pt;}
.y1f_c01359{bottom:1148.933333pt;}
.y1d_c01359{bottom:1151.226667pt;}
.y24_c01359{bottom:1152.000000pt;}
.y20_c01359{bottom:1152.773333pt;}
.y27_c01359{bottom:1153.533333pt;}
.y26_c01359{bottom:1155.066667pt;}
.y1b_c01359{bottom:1156.613333pt;}
.y1a_c01359{bottom:1157.373333pt;}
.y19_c01359{bottom:1158.906667pt;}
.y18_c01359{bottom:1160.453333pt;}
.y14_c01359{bottom:1161.986667pt;}
.y16_c01359{bottom:1162.746667pt;}
.y22a_c01359{bottom:1165.826667pt;}
.y15_c01359{bottom:1167.360000pt;}
.y17_c01359{bottom:1173.506667pt;}
.y12_c01359{bottom:1174.266667pt;}
.y13_c01359{bottom:1176.573333pt;}
.y11_c01359{bottom:1177.346667pt;}
.ye_c01359{bottom:1178.106667pt;}
.y10_c01359{bottom:1178.880000pt;}
.yf_c01359{bottom:1181.946667pt;}
.yc_c01359{bottom:1187.333333pt;}
.y9_c01359{bottom:1188.866667pt;}
.yd_c01359{bottom:1189.626667pt;}
.yb_c01359{bottom:1190.400000pt;}
.y7_c01359{bottom:1191.173333pt;}
.ya_c01359{bottom:1192.706667pt;}
.y6_c01359{bottom:1193.466667pt;}
.y5_c01359{bottom:1194.240000pt;}
.y8_c01359{bottom:1197.306667pt;}
.y4_c01359{bottom:1218.813333pt;}
.y3_c01359{bottom:1220.346667pt;}
.y2_c01359{bottom:1221.893333pt;}
.y1_c01359{bottom:1259.520000pt;}
.h15_c01359{height:2.764500pt;}
.h23_c01359{height:4.595833pt;}
.h10_c01359{height:4.799479pt;}
.h16_c01359{height:5.519401pt;}
.hb_c01359{height:8.303099pt;}
.hf_c01359{height:11.038802pt;}
.h18_c01359{height:13.822500pt;}
.h14_c01359{height:16.606198pt;}
.h1b_c01359{height:19.341901pt;}
.h13_c01359{height:22.125599pt;}
.hd_c01359{height:24.861302pt;}
.he_c01359{height:27.645000pt;}
.h2_c01359{height:30.428698pt;}
.h12_c01359{height:33.164401pt;}
.hc_c01359{height:35.948099pt;}
.h8_c01359{height:38.683802pt;}
.ha_c01359{height:41.467500pt;}
.h1a_c01359{height:44.251198pt;}
.h1e_c01359{height:44.560833pt;}
.h1c_c01359{height:45.174766pt;}
.h3_c01359{height:46.986901pt;}
.h4_c01359{height:49.770599pt;}
.h5_c01359{height:52.506302pt;}
.h6_c01359{height:55.290000pt;}
.h7_c01359{height:58.073698pt;}
.h11_c01359{height:60.809401pt;}
.h9_c01359{height:63.593099pt;}
.h1d_c01359{height:66.328802pt;}
.h19_c01359{height:69.112500pt;}
.h17_c01359{height:71.896198pt;}
.h20_c01359{height:74.631901pt;}
.h21_c01359{height:96.757500pt;}
.h1f_c01359{height:99.541198pt;}
.h22_c01359{height:152.047500pt;}
.h1_c01359{height:1345.333333pt;}
.h0_c01359{height:1345.533333pt;}
.w0_c01359{width:959.226667pt;}
.w1_c01359{width:959.333333pt;}
.x0_c01359{left:0.000000pt;}
.x109_c01359{left:46.080000pt;}
.x10a_c01359{left:92.160000pt;}
.x106_c01359{left:98.306667pt;}
.x104_c01359{left:115.973333pt;}
.x105_c01359{left:120.573333pt;}
.x10b_c01359{left:142.853333pt;}
.x107_c01359{left:158.973333pt;}
.x108_c01359{left:169.733333pt;}
.xb9_c01359{left:172.026667pt;}
.xbf_c01359{left:188.933333pt;}
.x100_c01359{left:201.986667pt;}
.xf7_c01359{left:205.826667pt;}
.xc0_c01359{left:207.360000pt;}
.x82_c01359{left:211.973333pt;}
.xba_c01359{left:214.266667pt;}
.x6b_c01359{left:215.813333pt;}
.x33_c01359{left:218.106667pt;}
.x6_c01359{left:220.413333pt;}
.xca_c01359{left:221.946667pt;}
.xb4_c01359{left:225.026667pt;}
.xdd_c01359{left:227.333333pt;}
.x103_c01359{left:230.400000pt;}
.xcf_c01359{left:231.933333pt;}
.xcb_c01359{left:236.546667pt;}
.xb5_c01359{left:238.853333pt;}
.x9b_c01359{left:240.386667pt;}
.x83_c01359{left:241.920000pt;}
.x23_c01359{left:245.760000pt;}
.x86_c01359{left:251.906667pt;}
.xe4_c01359{left:254.973333pt;}
.x3c_c01359{left:257.280000pt;}
.x54_c01359{left:258.813333pt;}
.xbb_c01359{left:261.893333pt;}
.xd8_c01359{left:263.426667pt;}
.xd0_c01359{left:264.960000pt;}
.x24_c01359{left:266.493333pt;}
.x7_c01359{left:268.026667pt;}
.xa2_c01359{left:269.573333pt;}
.xa8_c01359{left:272.640000pt;}
.x34_c01359{left:275.706667pt;}
.xfc_c01359{left:277.253333pt;}
.x7a_c01359{left:278.786667pt;}
.x11_c01359{left:280.320000pt;}
.x6c_c01359{left:281.853333pt;}
.x4c_c01359{left:284.160000pt;}
.x98_c01359{left:286.466667pt;}
.x93_c01359{left:288.773333pt;}
.x35_c01359{left:291.840000pt;}
.xfa_c01359{left:294.146667pt;}
.x55_c01359{left:295.680000pt;}
.x4d_c01359{left:297.213333pt;}
.xc2_c01359{left:298.746667pt;}
.xde_c01359{left:301.053333pt;}
.x1_c01359{left:304.133333pt;}
.x12_c01359{left:305.666667pt;}
.xe8_c01359{left:307.200000pt;}
.x25_c01359{left:311.813333pt;}
.x48_c01359{left:313.346667pt;}
.xe5_c01359{left:314.880000pt;}
.x6d_c01359{left:317.186667pt;}
.xc8_c01359{left:319.493333pt;}
.x1b_c01359{left:321.786667pt;}
.x63_c01359{left:324.093333pt;}
.xee_c01359{left:327.933333pt;}
.x13_c01359{left:329.466667pt;}
.x6e_c01359{left:331.013333pt;}
.x101_c01359{left:334.080000pt;}
.x1c_c01359{left:335.613333pt;}
.xd1_c01359{left:337.920000pt;}
.x64_c01359{left:340.226667pt;}
.x36_c01359{left:344.066667pt;}
.x56_c01359{left:346.373333pt;}
.x9c_c01359{left:347.906667pt;}
.xd2_c01359{left:349.440000pt;}
.xc3_c01359{left:351.746667pt;}
.xe9_c01359{left:353.280000pt;}
.x97_c01359{left:356.346667pt;}
.xac_c01359{left:358.653333pt;}
.xd6_c01359{left:360.186667pt;}
.x9d_c01359{left:361.733333pt;}
.xd3_c01359{left:364.026667pt;}
.x14_c01359{left:366.333333pt;}
.x4e_c01359{left:369.413333pt;}
.xf2_c01359{left:372.480000pt;}
.x3d_c01359{left:374.013333pt;}
.xd7_c01359{left:376.320000pt;}
.xb1_c01359{left:377.853333pt;}
.x1d_c01359{left:379.386667pt;}
.x99_c01359{left:381.693333pt;}
.x7b_c01359{left:387.066667pt;}
.x26_c01359{left:389.373333pt;}
.x6f_c01359{left:391.680000pt;}
.xd4_c01359{left:393.213333pt;}
.x102_c01359{left:396.293333pt;}
.xf3_c01359{left:398.586667pt;}
.xe6_c01359{left:400.893333pt;}
.x5b_c01359{left:403.200000pt;}
.xad_c01359{left:404.733333pt;}
.xbc_c01359{left:407.040000pt;}
.xef_c01359{left:408.573333pt;}
.x94_c01359{left:410.106667pt;}
.x8_c01359{left:411.653333pt;}
.xc6_c01359{left:413.946667pt;}
.x57_c01359{left:415.493333pt;}
.xdf_c01359{left:417.026667pt;}
.xe7_c01359{left:418.560000pt;}
.x65_c01359{left:420.866667pt;}
.x9a_c01359{left:422.400000pt;}
.xb6_c01359{left:430.080000pt;}
.x1e_c01359{left:433.146667pt;}
.x8c_c01359{left:434.693333pt;}
.xe2_c01359{left:436.226667pt;}
.xf8_c01359{left:437.760000pt;}
.x7c_c01359{left:439.293333pt;}
.x9e_c01359{left:440.826667pt;}
.x49_c01359{left:442.373333pt;}
.x15_c01359{left:444.666667pt;}
.x2_c01359{left:446.213333pt;}
.x9_c01359{left:448.506667pt;}
.x8d_c01359{left:450.813333pt;}
.x16_c01359{left:453.120000pt;}
.x66_c01359{left:455.426667pt;}
.x70_c01359{left:456.960000pt;}
.x3_c01359{left:459.266667pt;}
.xc4_c01359{left:460.800000pt;}
.x3e_c01359{left:462.333333pt;}
.x5c_c01359{left:465.413333pt;}
.xd5_c01359{left:466.946667pt;}
.x9f_c01359{left:469.253333pt;}
.x37_c01359{left:472.320000pt;}
.x71_c01359{left:474.626667pt;}
.xa0_c01359{left:477.693333pt;}
.x4f_c01359{left:479.226667pt;}
.xa_c01359{left:480.773333pt;}
.x17_c01359{left:482.306667pt;}
.xbd_c01359{left:486.906667pt;}
.x4_c01359{left:489.986667pt;}
.x85_c01359{left:492.293333pt;}
.xf4_c01359{left:493.826667pt;}
.x1f_c01359{left:495.360000pt;}
.xaa_c01359{left:499.200000pt;}
.xea_c01359{left:500.733333pt;}
.x5d_c01359{left:503.040000pt;}
.xbe_c01359{left:504.573333pt;}
.xb0_c01359{left:506.106667pt;}
.x27_c01359{left:507.653333pt;}
.xb_c01359{left:509.946667pt;}
.x58_c01359{left:512.253333pt;}
.x8e_c01359{left:513.786667pt;}
.x3f_c01359{left:516.866667pt;}
.x28_c01359{left:523.013333pt;}
.x72_c01359{left:525.306667pt;}
.x29_c01359{left:527.613333pt;}
.x84_c01359{left:529.920000pt;}
.x7d_c01359{left:531.453333pt;}
.x40_c01359{left:532.986667pt;}
.xd9_c01359{left:536.066667pt;}
.x5_c01359{left:539.133333pt;}
.xf0_c01359{left:540.666667pt;}
.xa3_c01359{left:544.506667pt;}
.xda_c01359{left:546.053333pt;}
.x41_c01359{left:547.586667pt;}
.x2a_c01359{left:550.653333pt;}
.xc_c01359{left:555.266667pt;}
.x20_c01359{left:557.573333pt;}
.x59_c01359{left:559.866667pt;}
.xa4_c01359{left:562.173333pt;}
.xdb_c01359{left:563.706667pt;}
.x50_c01359{left:565.253333pt;}
.x73_c01359{left:568.320000pt;}
.x38_c01359{left:569.853333pt;}
.x2b_c01359{left:571.386667pt;}
.x7e_c01359{left:574.466667pt;}
.xc9_c01359{left:576.000000pt;}
.x42_c01359{left:579.066667pt;}
.xed_c01359{left:580.613333pt;}
.x74_c01359{left:582.146667pt;}
.x67_c01359{left:585.213333pt;}
.x8f_c01359{left:586.746667pt;}
.xfb_c01359{left:588.293333pt;}
.x4a_c01359{left:590.586667pt;}
.x8b_c01359{left:592.133333pt;}
.xd_c01359{left:595.200000pt;}
.x51_c01359{left:597.506667pt;}
.xb2_c01359{left:599.040000pt;}
.xcc_c01359{left:601.346667pt;}
.xeb_c01359{left:604.413333pt;}
.xa5_c01359{left:605.946667pt;}
.x87_c01359{left:609.026667pt;}
.x52_c01359{left:612.093333pt;}
.x4b_c01359{left:613.626667pt;}
.x5e_c01359{left:615.173333pt;}
.x2c_c01359{left:617.466667pt;}
.xa6_c01359{left:619.013333pt;}
.xf1_c01359{left:622.080000pt;}
.x5f_c01359{left:623.613333pt;}
.x90_c01359{left:625.146667pt;}
.xae_c01359{left:628.226667pt;}
.x75_c01359{left:630.533333pt;}
.x39_c01359{left:632.826667pt;}
.x95_c01359{left:637.440000pt;}
.x21_c01359{left:638.973333pt;}
.x5a_c01359{left:640.506667pt;}
.x88_c01359{left:642.813333pt;}
.x60_c01359{left:645.120000pt;}
.xf5_c01359{left:648.186667pt;}
.x7f_c01359{left:652.026667pt;}
.x68_c01359{left:653.573333pt;}
.xa1_c01359{left:656.640000pt;}
.x43_c01359{left:658.173333pt;}
.x53_c01359{left:661.253333pt;}
.xe_c01359{left:663.546667pt;}
.xf9_c01359{left:668.933333pt;}
.xce_c01359{left:670.466667pt;}
.x91_c01359{left:672.000000pt;}
.xdc_c01359{left:674.306667pt;}
.x2d_c01359{left:675.840000pt;}
.xc5_c01359{left:678.146667pt;}
.x76_c01359{left:679.680000pt;}
.x89_c01359{left:681.986667pt;}
.x3a_c01359{left:684.293333pt;}
.xec_c01359{left:686.586667pt;}
.xf_c01359{left:688.893333pt;}
.x2e_c01359{left:691.200000pt;}
.x18_c01359{left:693.506667pt;}
.xe0_c01359{left:695.040000pt;}
.x22_c01359{left:700.413333pt;}
.xf6_c01359{left:702.720000pt;}
.x77_c01359{left:704.253333pt;}
.xe1_c01359{left:705.786667pt;}
.x2f_c01359{left:708.866667pt;}
.x44_c01359{left:712.706667pt;}
.xa9_c01359{left:715.013333pt;}
.x78_c01359{left:716.546667pt;}
.xfe_c01359{left:718.080000pt;}
.x69_c01359{left:719.613333pt;}
.x45_c01359{left:721.920000pt;}
.xa7_c01359{left:724.226667pt;}
.xc1_c01359{left:725.760000pt;}
.x80_c01359{left:727.293333pt;}
.x10_c01359{left:728.826667pt;}
.x79_c01359{left:730.373333pt;}
.x30_c01359{left:732.666667pt;}
.xb7_c01359{left:734.213333pt;}
.x96_c01359{left:735.746667pt;}
.xb3_c01359{left:737.280000pt;}
.xff_c01359{left:738.813333pt;}
.x6a_c01359{left:740.346667pt;}
.x92_c01359{left:742.653333pt;}
.x61_c01359{left:744.186667pt;}
.x46_c01359{left:747.266667pt;}
.x31_c01359{left:751.107115pt;}
.x81_c01359{left:753.413333pt;}
.xfd_c01359{left:755.706667pt;}
.x3b_c01359{left:757.253333pt;}
.x47_c01359{left:759.546667pt;}
.x8a_c01359{left:761.093333pt;}
.x19_c01359{left:763.386667pt;}
.x62_c01359{left:766.466667pt;}
.xb8_c01359{left:768.000000pt;}
.x32_c01359{left:769.533333pt;}
.xc7_c01359{left:771.066667pt;}
.x1a_c01359{left:773.373333pt;}
.xaf_c01359{left:774.906667pt;}
.xcd_c01359{left:777.213333pt;}
.xab_c01359{left:779.520000pt;}
.xe3_c01359{left:786.426667pt;}
.x10c_c01359{left:812.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_70ce1cb11d047e56495561ee.woff2')format("woff");}.ff1_c01360{font-family:ff1_c01360;line-height:1.109863;font-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_c01360{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb_c01360{transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114150,0.000000,0.000000,0.250000,0,0);}
.m46_c01360{transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126250,0.000000,0.000000,0.250000,0,0);}
.m48_c01360{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m36_c01360{transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139850,0.000000,0.000000,0.250000,0,0);}
.m4_c01360{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m52_c01360{transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147450,0.000000,0.000000,0.250000,0,0);}
.m2_c01360{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m4e_c01360{transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192800,0.000000,0.000000,0.250000,0,0);}
.m47_c01360{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);}
.m18_c01360{transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194150,0.000000,0.000000,0.250000,0,0);}
.m2a_c01360{transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197750,0.000000,0.000000,0.250000,0,0);}
.m1a_c01360{transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201400,0.000000,0.000000,0.250000,0,0);}
.m2d_c01360{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);}
.m3a_c01360{transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203675,0.000000,0.000000,0.250000,0,0);}
.m17_c01360{transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205600,0.000000,0.000000,0.250000,0,0);}
.m45_c01360{transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208275,0.000000,0.000000,0.250000,0,0);}
.m3e_c01360{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);}
.m3c_c01360{transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209975,0.000000,0.000000,0.250000,0,0);}
.m8_c01360{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);}
.m41_c01360{transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214150,0.000000,0.000000,0.250000,0,0);}
.m19_c01360{transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215675,0.000000,0.000000,0.250000,0,0);}
.m10_c01360{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);}
.m9_c01360{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);}
.m4c_c01360{transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221750,0.000000,0.000000,0.250000,0,0);}
.m3f_c01360{transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);}
.m15_c01360{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);}
.m1d_c01360{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);}
.m14_c01360{transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230500,0.000000,0.000000,0.250000,0,0);}
.ma_c01360{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);}
.m37_c01360{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);}
.m32_c01360{transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236100,0.000000,0.000000,0.250000,0,0);}
.m7_c01360{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);}
.m34_c01360{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m33_c01360{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);}
.m2f_c01360{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);}
.m6_c01360{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);}
.m4d_c01360{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.m26_c01360{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);}
.m23_c01360{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);}
.m11_c01360{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);}
.m42_c01360{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);}
.m40_c01360{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m49_c01360{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01360{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);}
.m35_c01360{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01360{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);}
.m2e_c01360{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);}
.m30_c01360{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01360{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);}
.mf_c01360{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c01360{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m24_c01360{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);}
.m1_c01360{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);}
.me_c01360{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m22_c01360{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m25_c01360{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);}
.m31_c01360{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01360{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m21_c01360{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);}
.m16_c01360{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m28_c01360{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01360{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m27_c01360{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m13_c01360{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01360{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01360{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);}
.m29_c01360{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m0_c01360{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.md_c01360{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m39_c01360{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);}
.m38_c01360{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);}
.m43_c01360{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m3_c01360{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m20_c01360{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5_c01360{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);}
.m51_c01360{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m53_c01360{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m50_c01360{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m12_c01360{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c01360{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m4a_c01360{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01360{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01360{transform:matrix(2.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.420000,0.000000,0.000000,0.250000,0,0);}
.v1_c01360{vertical-align:-27.660000px;}
.v0_c01360{vertical-align:0.000000px;}
.v2_c01360{vertical-align:31.140000px;}
.ls1_c01360{letter-spacing:0.000000px;}
.ls0_c01360{letter-spacing:786.390360px;}
.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;}
}
.ws1_c01360{word-spacing:0.000000px;}
.ws0_c01360{word-spacing:144.649920px;}
.fc0_c01360{color:transparent;}
.fsd_c01360{font-size:3.456000px;}
.fse_c01360{font-size:6.000000px;}
.fsf_c01360{font-size:6.900000px;}
.fsc_c01360{font-size:10.380000px;}
.fs17_c01360{font-size:13.800000px;}
.fs4_c01360{font-size:17.280000px;}
.fs13_c01360{font-size:27.660000px;}
.fs1_c01360{font-size:31.080000px;}
.fs2_c01360{font-size:34.560000px;}
.fs10_c01360{font-size:38.040000px;}
.fs12_c01360{font-size:41.460000px;}
.fsb_c01360{font-size:44.940000px;}
.fs0_c01360{font-size:48.360000px;}
.fs8_c01360{font-size:51.840000px;}
.fs6_c01360{font-size:55.320000px;}
.fs11_c01360{font-size:58.740000px;}
.fs9_c01360{font-size:62.220000px;}
.fs5_c01360{font-size:65.640000px;}
.fs7_c01360{font-size:69.120000px;}
.fs15_c01360{font-size:72.600000px;}
.fsa_c01360{font-size:76.020000px;}
.fs3_c01360{font-size:79.500000px;}
.fs16_c01360{font-size:93.300000px;}
.fs14_c01360{font-size:124.440000px;}
.y0_c01360{bottom:0.000000px;}
.y61_c01360{bottom:292.890000px;}
.y60_c01360{bottom:293.760000px;}
.y45_c01360{bottom:1126.650000px;}
.y46_c01360{bottom:1127.520000px;}
.y47_c01360{bottom:1128.390000px;}
.y48_c01360{bottom:1130.115000px;}
.y5b_c01360{bottom:1132.710000px;}
.y5a_c01360{bottom:1135.290000px;}
.y5f_c01360{bottom:1137.030000px;}
.y59_c01360{bottom:1143.075000px;}
.y3f_c01360{bottom:1143.930000px;}
.y40_c01360{bottom:1144.800000px;}
.y41_c01360{bottom:1145.670000px;}
.y42_c01360{bottom:1146.525000px;}
.y44_c01360{bottom:1149.120000px;}
.y5c_c01360{bottom:1149.990000px;}
.y5e_c01360{bottom:1150.845000px;}
.y5d_c01360{bottom:1155.165000px;}
.y43_c01360{bottom:1156.035000px;}
.y3c_c01360{bottom:1158.630000px;}
.y3b_c01360{bottom:1161.210000px;}
.y3d_c01360{bottom:1165.530000px;}
.y3e_c01360{bottom:1166.400000px;}
.y36_c01360{bottom:1175.910000px;}
.y35_c01360{bottom:1177.635000px;}
.y3a_c01360{bottom:1179.360000px;}
.y37_c01360{bottom:1180.230000px;}
.y39_c01360{bottom:1181.085000px;}
.y38_c01360{bottom:1181.955000px;}
.y3_c01360{bottom:1184.550000px;}
.y1_c01360{bottom:1185.405000px;}
.y32_c01360{bottom:1191.450000px;}
.y31_c01360{bottom:1195.770000px;}
.y34_c01360{bottom:1197.510000px;}
.y2_c01360{bottom:1200.090000px;}
.y33_c01360{bottom:1210.470000px;}
.y2b_c01360{bottom:1213.050000px;}
.y2c_c01360{bottom:1213.920000px;}
.y2e_c01360{bottom:1214.790000px;}
.y2f_c01360{bottom:1215.645000px;}
.y2d_c01360{bottom:1216.515000px;}
.y54_c01360{bottom:1218.240000px;}
.y57_c01360{bottom:1219.110000px;}
.y30_c01360{bottom:1219.965000px;}
.y58_c01360{bottom:1228.605000px;}
.y28_c01360{bottom:1231.200000px;}
.y29_c01360{bottom:1232.070000px;}
.y2a_c01360{bottom:1232.925000px;}
.y56_c01360{bottom:1235.520000px;}
.y55_c01360{bottom:1237.245000px;}
.y27_c01360{bottom:1245.885000px;}
.y24_c01360{bottom:1248.480000px;}
.y25_c01360{bottom:1249.350000px;}
.y26_c01360{bottom:1250.205000px;}
.y52_c01360{bottom:1258.845000px;}
.y20_c01360{bottom:1266.630000px;}
.y53_c01360{bottom:1270.080000px;}
.y23_c01360{bottom:1270.950000px;}
.y21_c01360{bottom:1271.805000px;}
.y1f_c01360{bottom:1272.675000px;}
.y22_c01360{bottom:1275.270000px;}
.y1a_c01360{bottom:1278.720000px;}
.y1b_c01360{bottom:1279.590000px;}
.y1d_c01360{bottom:1281.315000px;}
.y1e_c01360{bottom:1282.170000px;}
.y1c_c01360{bottom:1284.765000px;}
.y51_c01360{bottom:1295.130000px;}
.y16_c01360{bottom:1296.000000px;}
.y17_c01360{bottom:1300.320000px;}
.y18_c01360{bottom:1302.045000px;}
.y4d_c01360{bottom:1303.770000px;}
.y19_c01360{bottom:1306.365000px;}
.y4f_c01360{bottom:1311.555000px;}
.y50_c01360{bottom:1312.410000px;}
.ye_c01360{bottom:1317.600000px;}
.yf_c01360{bottom:1318.470000px;}
.y10_c01360{bottom:1319.325000px;}
.y13_c01360{bottom:1321.050000px;}
.y4c_c01360{bottom:1321.920000px;}
.y14_c01360{bottom:1322.790000px;}
.y15_c01360{bottom:1323.645000px;}
.y11_c01360{bottom:1325.370000px;}
.y4e_c01360{bottom:1327.965000px;}
.y12_c01360{bottom:1328.835000px;}
.y7_c01360{bottom:1330.560000px;}
.y9_c01360{bottom:1332.285000px;}
.ya_c01360{bottom:1333.155000px;}
.y8_c01360{bottom:1335.750000px;}
.yc_c01360{bottom:1337.475000px;}
.yb_c01360{bottom:1338.330000px;}
.y49_c01360{bottom:1340.925000px;}
.yd_c01360{bottom:1341.795000px;}
.y4a_c01360{bottom:1342.650000px;}
.y4b_c01360{bottom:1343.520000px;}
.y5_c01360{bottom:1364.250000px;}
.y4_c01360{bottom:1366.845000px;}
.y6_c01360{bottom:1376.355000px;}
.hf_c01360{height:3.110063px;}
.h10_c01360{height:5.399414px;}
.h11_c01360{height:6.209326px;}
.he_c01360{height:9.340986px;}
.h1a_c01360{height:12.418652px;}
.h6_c01360{height:15.550313px;}
.h16_c01360{height:24.891299px;}
.h3_c01360{height:27.968965px;}
.h4_c01360{height:31.100625px;}
.h13_c01360{height:34.232285px;}
.h15_c01360{height:37.309951px;}
.hd_c01360{height:40.441611px;}
.h2_c01360{height:43.519277px;}
.ha_c01360{height:46.650937px;}
.h8_c01360{height:49.782598px;}
.h14_c01360{height:52.860264px;}
.hb_c01360{height:55.991924px;}
.h7_c01360{height:59.069590px;}
.h9_c01360{height:62.201250px;}
.h18_c01360{height:65.332910px;}
.hc_c01360{height:68.410576px;}
.h5_c01360{height:71.542236px;}
.h12_c01360{height:71.581611px;}
.h19_c01360{height:83.960889px;}
.h17_c01360{height:111.983848px;}
.h1_c01360{height:1513.500000px;}
.h0_c01360{height:1513.725000px;}
.w0_c01360{width:1083.450000px;}
.w1_c01360{width:1083.750000px;}
.x0_c01360{left:0.000000px;}
.x19_c01360{left:217.725000px;}
.x7_c01360{left:221.190000px;}
.x2a_c01360{left:222.915000px;}
.x32_c01360{left:224.640000px;}
.x1d_c01360{left:242.790000px;}
.xe_c01360{left:249.690000px;}
.x2b_c01360{left:252.285000px;}
.x2d_c01360{left:254.010000px;}
.x38_c01360{left:255.750000px;}
.x23_c01360{left:257.475000px;}
.x8_c01360{left:275.610000px;}
.x33_c01360{left:279.075000px;}
.x2f_c01360{left:280.800000px;}
.x34_c01360{left:282.525000px;}
.x1a_c01360{left:289.440000px;}
.x27_c01360{left:292.890000px;}
.x39_c01360{left:295.485000px;}
.x9_c01360{left:309.315000px;}
.x17_c01360{left:312.765000px;}
.x2e_c01360{left:320.550000px;}
.xf_c01360{left:323.130000px;}
.x28_c01360{left:330.915000px;}
.x30_c01360{left:332.640000px;}
.x24_c01360{left:334.365000px;}
.x1e_c01360{left:343.005000px;}
.x1b_c01360{left:349.050000px;}
.xa_c01360{left:358.560000px;}
.x29_c01360{left:374.970000px;}
.x25_c01360{left:382.755000px;}
.xb_c01360{left:386.205000px;}
.x1f_c01360{left:387.930000px;}
.x1c_c01360{left:389.670000px;}
.x10_c01360{left:396.570000px;}
.x35_c01360{left:408.675000px;}
.x26_c01360{left:413.850000px;}
.x11_c01360{left:429.405000px;}
.x20_c01360{left:450.150000px;}
.x12_c01360{left:455.325000px;}
.x4_c01360{left:466.560000px;}
.x13_c01360{left:469.155000px;}
.x18_c01360{left:476.925000px;}
.x14_c01360{left:479.520000px;}
.x36_c01360{left:484.710000px;}
.xc_c01360{left:488.160000px;}
.x21_c01360{left:490.755000px;}
.x15_c01360{left:494.205000px;}
.x31_c01360{left:495.930000px;}
.x22_c01360{left:500.250000px;}
.x16_c01360{left:503.715000px;}
.x37_c01360{left:508.035000px;}
.xd_c01360{left:512.355000px;}
.x2c_c01360{left:517.530000px;}
.x3a_c01360{left:546.915000px;}
.x4d_c01360{left:548.640000px;}
.x52_c01360{left:550.365000px;}
.x59_c01360{left:553.830000px;}
.x42_c01360{left:559.875000px;}
.x43_c01360{left:585.795000px;}
.x3b_c01360{left:588.390000px;}
.x5_c01360{left:590.115000px;}
.x57_c01360{left:596.160000px;}
.x53_c01360{left:604.800000px;}
.x3c_c01360{left:616.035000px;}
.x3f_c01360{left:617.760000px;}
.x3d_c01360{left:623.805000px;}
.x54_c01360{left:631.590000px;}
.x40_c01360{left:634.170000px;}
.x4e_c01360{left:643.680000px;}
.x5a_c01360{left:648.000000px;}
.x58_c01360{left:652.320000px;}
.x41_c01360{left:664.410000px;}
.x3e_c01360{left:673.920000px;}
.x6_c01360{left:691.200000px;}
.x1_c01360{left:695.520000px;}
.x4a_c01360{left:700.710000px;}
.x4f_c01360{left:708.480000px;}
.x50_c01360{left:734.400000px;}
.x55_c01360{left:751.680000px;}
.x56_c01360{left:764.640000px;}
.x45_c01360{left:773.280000px;}
.x5b_c01360{left:787.965000px;}
.x51_c01360{left:796.605000px;}
.x46_c01360{left:803.520000px;}
.x49_c01360{left:810.435000px;}
.x44_c01360{left:812.160000px;}
.x47_c01360{left:815.610000px;}
.x5e_c01360{left:820.800000px;}
.x4b_c01360{left:825.990000px;}
.x5c_c01360{left:827.715000px;}
.x5d_c01360{left:837.210000px;}
.x48_c01360{left:841.530000px;}
.x4c_c01360{left:843.270000px;}
.x5f_c01360{left:846.720000px;}
.x60_c01360{left:1057.530000px;}
.x3_c01360{left:1060.125000px;}
.x61_c01360{left:1065.315000px;}
.x2_c01360{left:1067.910000px;}
@media print{
.v1_c01360{vertical-align:-24.586667pt;}
.v0_c01360{vertical-align:0.000000pt;}
.v2_c01360{vertical-align:27.680000pt;}
.ls1_c01360{letter-spacing:0.000000pt;}
.ls0_c01360{letter-spacing:699.013653pt;}
.ws1_c01360{word-spacing:0.000000pt;}
.ws0_c01360{word-spacing:128.577707pt;}
.fsd_c01360{font-size:3.072000pt;}
.fse_c01360{font-size:5.333333pt;}
.fsf_c01360{font-size:6.133333pt;}
.fsc_c01360{font-size:9.226667pt;}
.fs17_c01360{font-size:12.266667pt;}
.fs4_c01360{font-size:15.360000pt;}
.fs13_c01360{font-size:24.586667pt;}
.fs1_c01360{font-size:27.626667pt;}
.fs2_c01360{font-size:30.720000pt;}
.fs10_c01360{font-size:33.813333pt;}
.fs12_c01360{font-size:36.853333pt;}
.fsb_c01360{font-size:39.946667pt;}
.fs0_c01360{font-size:42.986667pt;}
.fs8_c01360{font-size:46.080000pt;}
.fs6_c01360{font-size:49.173333pt;}
.fs11_c01360{font-size:52.213333pt;}
.fs9_c01360{font-size:55.306667pt;}
.fs5_c01360{font-size:58.346667pt;}
.fs7_c01360{font-size:61.440000pt;}
.fs15_c01360{font-size:64.533333pt;}
.fsa_c01360{font-size:67.573333pt;}
.fs3_c01360{font-size:70.666667pt;}
.fs16_c01360{font-size:82.933333pt;}
.fs14_c01360{font-size:110.613333pt;}
.y0_c01360{bottom:0.000000pt;}
.y61_c01360{bottom:260.346667pt;}
.y60_c01360{bottom:261.120000pt;}
.y45_c01360{bottom:1001.466667pt;}
.y46_c01360{bottom:1002.240000pt;}
.y47_c01360{bottom:1003.013333pt;}
.y48_c01360{bottom:1004.546667pt;}
.y5b_c01360{bottom:1006.853333pt;}
.y5a_c01360{bottom:1009.146667pt;}
.y5f_c01360{bottom:1010.693333pt;}
.y59_c01360{bottom:1016.066667pt;}
.y3f_c01360{bottom:1016.826667pt;}
.y40_c01360{bottom:1017.600000pt;}
.y41_c01360{bottom:1018.373333pt;}
.y42_c01360{bottom:1019.133333pt;}
.y44_c01360{bottom:1021.440000pt;}
.y5c_c01360{bottom:1022.213333pt;}
.y5e_c01360{bottom:1022.973333pt;}
.y5d_c01360{bottom:1026.813333pt;}
.y43_c01360{bottom:1027.586667pt;}
.y3c_c01360{bottom:1029.893333pt;}
.y3b_c01360{bottom:1032.186667pt;}
.y3d_c01360{bottom:1036.026667pt;}
.y3e_c01360{bottom:1036.800000pt;}
.y36_c01360{bottom:1045.253333pt;}
.y35_c01360{bottom:1046.786667pt;}
.y3a_c01360{bottom:1048.320000pt;}
.y37_c01360{bottom:1049.093333pt;}
.y39_c01360{bottom:1049.853333pt;}
.y38_c01360{bottom:1050.626667pt;}
.y3_c01360{bottom:1052.933333pt;}
.y1_c01360{bottom:1053.693333pt;}
.y32_c01360{bottom:1059.066667pt;}
.y31_c01360{bottom:1062.906667pt;}
.y34_c01360{bottom:1064.453333pt;}
.y2_c01360{bottom:1066.746667pt;}
.y33_c01360{bottom:1075.973333pt;}
.y2b_c01360{bottom:1078.266667pt;}
.y2c_c01360{bottom:1079.040000pt;}
.y2e_c01360{bottom:1079.813333pt;}
.y2f_c01360{bottom:1080.573333pt;}
.y2d_c01360{bottom:1081.346667pt;}
.y54_c01360{bottom:1082.880000pt;}
.y57_c01360{bottom:1083.653333pt;}
.y30_c01360{bottom:1084.413333pt;}
.y58_c01360{bottom:1092.093333pt;}
.y28_c01360{bottom:1094.400000pt;}
.y29_c01360{bottom:1095.173333pt;}
.y2a_c01360{bottom:1095.933333pt;}
.y56_c01360{bottom:1098.240000pt;}
.y55_c01360{bottom:1099.773333pt;}
.y27_c01360{bottom:1107.453333pt;}
.y24_c01360{bottom:1109.760000pt;}
.y25_c01360{bottom:1110.533333pt;}
.y26_c01360{bottom:1111.293333pt;}
.y52_c01360{bottom:1118.973333pt;}
.y20_c01360{bottom:1125.893333pt;}
.y53_c01360{bottom:1128.960000pt;}
.y23_c01360{bottom:1129.733333pt;}
.y21_c01360{bottom:1130.493333pt;}
.y1f_c01360{bottom:1131.266667pt;}
.y22_c01360{bottom:1133.573333pt;}
.y1a_c01360{bottom:1136.640000pt;}
.y1b_c01360{bottom:1137.413333pt;}
.y1d_c01360{bottom:1138.946667pt;}
.y1e_c01360{bottom:1139.706667pt;}
.y1c_c01360{bottom:1142.013333pt;}
.y51_c01360{bottom:1151.226667pt;}
.y16_c01360{bottom:1152.000000pt;}
.y17_c01360{bottom:1155.840000pt;}
.y18_c01360{bottom:1157.373333pt;}
.y4d_c01360{bottom:1158.906667pt;}
.y19_c01360{bottom:1161.213333pt;}
.y4f_c01360{bottom:1165.826667pt;}
.y50_c01360{bottom:1166.586667pt;}
.ye_c01360{bottom:1171.200000pt;}
.yf_c01360{bottom:1171.973333pt;}
.y10_c01360{bottom:1172.733333pt;}
.y13_c01360{bottom:1174.266667pt;}
.y4c_c01360{bottom:1175.040000pt;}
.y14_c01360{bottom:1175.813333pt;}
.y15_c01360{bottom:1176.573333pt;}
.y11_c01360{bottom:1178.106667pt;}
.y4e_c01360{bottom:1180.413333pt;}
.y12_c01360{bottom:1181.186667pt;}
.y7_c01360{bottom:1182.720000pt;}
.y9_c01360{bottom:1184.253333pt;}
.ya_c01360{bottom:1185.026667pt;}
.y8_c01360{bottom:1187.333333pt;}
.yc_c01360{bottom:1188.866667pt;}
.yb_c01360{bottom:1189.626667pt;}
.y49_c01360{bottom:1191.933333pt;}
.yd_c01360{bottom:1192.706667pt;}
.y4a_c01360{bottom:1193.466667pt;}
.y4b_c01360{bottom:1194.240000pt;}
.y5_c01360{bottom:1212.666667pt;}
.y4_c01360{bottom:1214.973333pt;}
.y6_c01360{bottom:1223.426667pt;}
.hf_c01360{height:2.764500pt;}
.h10_c01360{height:4.799479pt;}
.h11_c01360{height:5.519401pt;}
.he_c01360{height:8.303099pt;}
.h1a_c01360{height:11.038802pt;}
.h6_c01360{height:13.822500pt;}
.h16_c01360{height:22.125599pt;}
.h3_c01360{height:24.861302pt;}
.h4_c01360{height:27.645000pt;}
.h13_c01360{height:30.428698pt;}
.h15_c01360{height:33.164401pt;}
.hd_c01360{height:35.948099pt;}
.h2_c01360{height:38.683802pt;}
.ha_c01360{height:41.467500pt;}
.h8_c01360{height:44.251198pt;}
.h14_c01360{height:46.986901pt;}
.hb_c01360{height:49.770599pt;}
.h7_c01360{height:52.506302pt;}
.h9_c01360{height:55.290000pt;}
.h18_c01360{height:58.073698pt;}
.hc_c01360{height:60.809401pt;}
.h5_c01360{height:63.593099pt;}
.h12_c01360{height:63.628099pt;}
.h19_c01360{height:74.631901pt;}
.h17_c01360{height:99.541198pt;}
.h1_c01360{height:1345.333333pt;}
.h0_c01360{height:1345.533333pt;}
.w0_c01360{width:963.066667pt;}
.w1_c01360{width:963.333333pt;}
.x0_c01360{left:0.000000pt;}
.x19_c01360{left:193.533333pt;}
.x7_c01360{left:196.613333pt;}
.x2a_c01360{left:198.146667pt;}
.x32_c01360{left:199.680000pt;}
.x1d_c01360{left:215.813333pt;}
.xe_c01360{left:221.946667pt;}
.x2b_c01360{left:224.253333pt;}
.x2d_c01360{left:225.786667pt;}
.x38_c01360{left:227.333333pt;}
.x23_c01360{left:228.866667pt;}
.x8_c01360{left:244.986667pt;}
.x33_c01360{left:248.066667pt;}
.x2f_c01360{left:249.600000pt;}
.x34_c01360{left:251.133333pt;}
.x1a_c01360{left:257.280000pt;}
.x27_c01360{left:260.346667pt;}
.x39_c01360{left:262.653333pt;}
.x9_c01360{left:274.946667pt;}
.x17_c01360{left:278.013333pt;}
.x2e_c01360{left:284.933333pt;}
.xf_c01360{left:287.226667pt;}
.x28_c01360{left:294.146667pt;}
.x30_c01360{left:295.680000pt;}
.x24_c01360{left:297.213333pt;}
.x1e_c01360{left:304.893333pt;}
.x1b_c01360{left:310.266667pt;}
.xa_c01360{left:318.720000pt;}
.x29_c01360{left:333.306667pt;}
.x25_c01360{left:340.226667pt;}
.xb_c01360{left:343.293333pt;}
.x1f_c01360{left:344.826667pt;}
.x1c_c01360{left:346.373333pt;}
.x10_c01360{left:352.506667pt;}
.x35_c01360{left:363.266667pt;}
.x26_c01360{left:367.866667pt;}
.x11_c01360{left:381.693333pt;}
.x20_c01360{left:400.133333pt;}
.x12_c01360{left:404.733333pt;}
.x4_c01360{left:414.720000pt;}
.x13_c01360{left:417.026667pt;}
.x18_c01360{left:423.933333pt;}
.x14_c01360{left:426.240000pt;}
.x36_c01360{left:430.853333pt;}
.xc_c01360{left:433.920000pt;}
.x21_c01360{left:436.226667pt;}
.x15_c01360{left:439.293333pt;}
.x31_c01360{left:440.826667pt;}
.x22_c01360{left:444.666667pt;}
.x16_c01360{left:447.746667pt;}
.x37_c01360{left:451.586667pt;}
.xd_c01360{left:455.426667pt;}
.x2c_c01360{left:460.026667pt;}
.x3a_c01360{left:486.146667pt;}
.x4d_c01360{left:487.680000pt;}
.x52_c01360{left:489.213333pt;}
.x59_c01360{left:492.293333pt;}
.x42_c01360{left:497.666667pt;}
.x43_c01360{left:520.706667pt;}
.x3b_c01360{left:523.013333pt;}
.x5_c01360{left:524.546667pt;}
.x57_c01360{left:529.920000pt;}
.x53_c01360{left:537.600000pt;}
.x3c_c01360{left:547.586667pt;}
.x3f_c01360{left:549.120000pt;}
.x3d_c01360{left:554.493333pt;}
.x54_c01360{left:561.413333pt;}
.x40_c01360{left:563.706667pt;}
.x4e_c01360{left:572.160000pt;}
.x5a_c01360{left:576.000000pt;}
.x58_c01360{left:579.840000pt;}
.x41_c01360{left:590.586667pt;}
.x3e_c01360{left:599.040000pt;}
.x6_c01360{left:614.400000pt;}
.x1_c01360{left:618.240000pt;}
.x4a_c01360{left:622.853333pt;}
.x4f_c01360{left:629.760000pt;}
.x50_c01360{left:652.800000pt;}
.x55_c01360{left:668.160000pt;}
.x56_c01360{left:679.680000pt;}
.x45_c01360{left:687.360000pt;}
.x5b_c01360{left:700.413333pt;}
.x51_c01360{left:708.093333pt;}
.x46_c01360{left:714.240000pt;}
.x49_c01360{left:720.386667pt;}
.x44_c01360{left:721.920000pt;}
.x47_c01360{left:724.986667pt;}
.x5e_c01360{left:729.600000pt;}
.x4b_c01360{left:734.213333pt;}
.x5c_c01360{left:735.746667pt;}
.x5d_c01360{left:744.186667pt;}
.x48_c01360{left:748.026667pt;}
.x4c_c01360{left:749.573333pt;}
.x5f_c01360{left:752.640000pt;}
.x60_c01360{left:940.026667pt;}
.x3_c01360{left:942.333333pt;}
.x61_c01360{left:946.946667pt;}
.x2_c01360{left:949.253333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_11d442974a64021e313919a6.woff2')format("woff");}.ff1_c01361{font-family:ff1_c01361;line-height:1.109863;font-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_c01361{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m44_c01361{transform:matrix(0.051800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.051800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.051800,0.000000,0.000000,0.250000,0,0);}
.m26_c01361{transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);}
.m50_c01361{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m2_c01361{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m6_c01361{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c01361{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m23_c01361{transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160125,0.000000,0.000000,0.250000,0,0);}
.m3d_c01361{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);}
.m5_c01361{transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179850,0.000000,0.000000,0.250000,0,0);}
.m9_c01361{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m27_c01361{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);}
.m3_c01361{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);}
.m48_c01361{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);}
.m24_c01361{transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196750,0.000000,0.000000,0.250000,0,0);}
.m8_c01361{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m2e_c01361{transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202200,0.000000,0.000000,0.250000,0,0);}
.m49_c01361{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m2d_c01361{transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214325,0.000000,0.000000,0.250000,0,0);}
.m16_c01361{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);}
.m4b_c01361{transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216500,0.000000,0.000000,0.250000,0,0);}
.m25_c01361{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);}
.m46_c01361{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);}
.m47_c01361{transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222950,0.000000,0.000000,0.250000,0,0);}
.m34_c01361{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);}
.m3a_c01361{transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238575,0.000000,0.000000,0.250000,0,0);}
.m43_c01361{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);}
.m4c_c01361{transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246375,0.000000,0.000000,0.250000,0,0);}
.m29_c01361{transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247925,0.000000,0.000000,0.250000,0,0);}
.m4e_c01361{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);}
.m42_c01361{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m10_c01361{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);}
.m19_c01361{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01361{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);}
.m2c_c01361{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);}
.mb_c01361{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01361{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01361{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);}
.m11_c01361{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);}
.m13_c01361{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01361{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m30_c01361{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);}
.mf_c01361{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m22_c01361{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);}
.me_c01361{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m33_c01361{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m32_c01361{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m3e_c01361{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m21_c01361{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01361{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);}
.m35_c01361{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01361{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01361{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);}
.m31_c01361{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01361{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01361{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m12_c01361{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);}
.m1c_c01361{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m2b_c01361{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m28_c01361{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m40_c01361{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m7_c01361{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);}
.m20_c01361{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.md_c01361{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma_c01361{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m4d_c01361{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01361{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01361{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m41_c01361{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m14_c01361{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);}
.m0_c01361{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m17_c01361{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);}
.m18_c01361{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m39_c01361{transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);}
.m45_c01361{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);}
.m51_c01361{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.mc_c01361{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m37_c01361{transform:matrix(1.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.047500,0.000000,0.000000,0.250000,0,0);}
.m36_c01361{transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.072500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01361{transform:matrix(2.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.225000,0.000000,0.000000,0.250000,0,0);}
.m15_c01361{transform:matrix(2.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.377500,0.000000,0.000000,0.250000,0,0);}
.m38_c01361{transform:matrix(3.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.205000,0.000000,0.000000,0.250000,0,0);}
.v3_c01361{vertical-align:-6.900000px;}
.v2_c01361{vertical-align:-3.480000px;}
.v0_c01361{vertical-align:0.000000px;}
.v1_c01361{vertical-align:3.480000px;}
.ls4_c01361{letter-spacing:0.000000px;}
.ls2_c01361{letter-spacing:9.103907px;}
.ls1_c01361{letter-spacing:18.954000px;}
.ls3_c01361{letter-spacing:533.791152px;}
.ls0_c01361{letter-spacing:544.980188px;}
.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:-29.827200px;}
.ws1_c01361{word-spacing:0.000000px;}
.fc0_c01361{color:transparent;}
.fs1_c01361{font-size:3.456000px;}
.fs6_c01361{font-size:6.000000px;}
.fsb_c01361{font-size:6.900000px;}
.fsa_c01361{font-size:10.380000px;}
.fs5_c01361{font-size:13.800000px;}
.fs0_c01361{font-size:17.280000px;}
.fs9_c01361{font-size:20.760000px;}
.fse_c01361{font-size:24.180000px;}
.fs11_c01361{font-size:27.660000px;}
.fs7_c01361{font-size:31.080000px;}
.fs8_c01361{font-size:34.560000px;}
.fs20_c01361{font-size:38.040000px;}
.fs4_c01361{font-size:41.460000px;}
.fs22_c01361{font-size:51.840000px;}
.fs19_c01361{font-size:55.320000px;}
.fs1e_c01361{font-size:58.740000px;}
.fs2_c01361{font-size:62.220000px;}
.fs15_c01361{font-size:65.640000px;}
.fs1f_c01361{font-size:69.120000px;}
.fsc_c01361{font-size:72.600000px;}
.fs16_c01361{font-size:79.500000px;}
.fs17_c01361{font-size:86.400000px;}
.fs3_c01361{font-size:89.880000px;}
.fs25_c01361{font-size:93.300000px;}
.fs1c_c01361{font-size:96.780000px;}
.fs18_c01361{font-size:100.200000px;}
.fsd_c01361{font-size:103.680000px;}
.fs21_c01361{font-size:107.160000px;}
.fs24_c01361{font-size:117.480000px;}
.fs1a_c01361{font-size:120.960000px;}
.fs1d_c01361{font-size:124.440000px;}
.fs13_c01361{font-size:131.340000px;}
.fs1b_c01361{font-size:134.760000px;}
.fs23_c01361{font-size:145.140000px;}
.fs14_c01361{font-size:148.620000px;}
.fs12_c01361{font-size:155.520000px;}
.fsf_c01361{font-size:172.800000px;}
.fs10_c01361{font-size:207.360000px;}
.y0_c01361{bottom:0.000000px;}
.y71_c01361{bottom:586.650000px;}
.y6f_c01361{bottom:587.520000px;}
.y72_c01361{bottom:588.390000px;}
.y68_c01361{bottom:589.245000px;}
.y6d_c01361{bottom:590.115000px;}
.y6b_c01361{bottom:591.840000px;}
.y6e_c01361{bottom:592.710000px;}
.y67_c01361{bottom:594.435000px;}
.y6c_c01361{bottom:595.290000px;}
.y66_c01361{bottom:596.160000px;}
.y70_c01361{bottom:597.030000px;}
.y69_c01361{bottom:603.930000px;}
.y6a_c01361{bottom:608.250000px;}
.y65_c01361{bottom:611.715000px;}
.y64_c01361{bottom:612.570000px;}
.y63_c01361{bottom:616.890000px;}
.y62_c01361{bottom:619.485000px;}
.y61_c01361{bottom:629.850000px;}
.y5b_c01361{bottom:644.550000px;}
.y5d_c01361{bottom:646.275000px;}
.y60_c01361{bottom:647.130000px;}
.y5c_c01361{bottom:648.870000px;}
.y5a_c01361{bottom:651.450000px;}
.y5e_c01361{bottom:653.190000px;}
.y57_c01361{bottom:654.915000px;}
.y58_c01361{bottom:655.770000px;}
.y59_c01361{bottom:656.640000px;}
.y52_c01361{bottom:657.510000px;}
.y56_c01361{bottom:660.090000px;}
.y55_c01361{bottom:661.830000px;}
.y54_c01361{bottom:662.685000px;}
.y53_c01361{bottom:663.555000px;}
.y5f_c01361{bottom:674.790000px;}
.y51_c01361{bottom:688.605000px;}
.y4f_c01361{bottom:689.475000px;}
.y4e_c01361{bottom:692.925000px;}
.y50_c01361{bottom:695.520000px;}
.y4d_c01361{bottom:700.710000px;}
.y4c_c01361{bottom:705.030000px;}
.y4b_c01361{bottom:705.885000px;}
.y49_c01361{bottom:707.610000px;}
.y48_c01361{bottom:708.480000px;}
.y47_c01361{bottom:710.205000px;}
.y46_c01361{bottom:711.075000px;}
.y4a_c01361{bottom:711.930000px;}
.y45_c01361{bottom:712.800000px;}
.y44_c01361{bottom:713.670000px;}
.y43_c01361{bottom:714.525000px;}
.y42_c01361{bottom:715.395000px;}
.y41_c01361{bottom:716.250000px;}
.y40_c01361{bottom:721.440000px;}
.y3f_c01361{bottom:733.530000px;}
.y3e_c01361{bottom:734.400000px;}
.y3d_c01361{bottom:736.995000px;}
.y39_c01361{bottom:737.850000px;}
.y3c_c01361{bottom:742.170000px;}
.y3b_c01361{bottom:745.635000px;}
.y3a_c01361{bottom:746.490000px;}
.y38_c01361{bottom:749.085000px;}
.y37_c01361{bottom:749.955000px;}
.y35_c01361{bottom:1003.965000px;}
.y34_c01361{bottom:1004.835000px;}
.y33_c01361{bottom:1006.560000px;}
.y32_c01361{bottom:1010.010000px;}
.y30_c01361{bottom:1010.880000px;}
.y2e_c01361{bottom:1011.750000px;}
.y31_c01361{bottom:1012.605000px;}
.y2b_c01361{bottom:1015.200000px;}
.y2d_c01361{bottom:1016.070000px;}
.y2c_c01361{bottom:1016.925000px;}
.y2a_c01361{bottom:1017.795000px;}
.y2f_c01361{bottom:1023.840000px;}
.y17_c01361{bottom:1025.565000px;}
.y16_c01361{bottom:1029.885000px;}
.y29_c01361{bottom:1041.990000px;}
.y28_c01361{bottom:1045.440000px;}
.y27_c01361{bottom:1050.630000px;}
.y26_c01361{bottom:1056.675000px;}
.y25_c01361{bottom:1083.450000px;}
.y24_c01361{bottom:1087.770000px;}
.y21_c01361{bottom:1088.640000px;}
.y23_c01361{bottom:1089.510000px;}
.y22_c01361{bottom:1092.960000px;}
.y1f_c01361{bottom:1093.830000px;}
.y20_c01361{bottom:1094.685000px;}
.y1b_c01361{bottom:1095.555000px;}
.y1e_c01361{bottom:1096.410000px;}
.y36_c01361{bottom:1099.005000px;}
.y1d_c01361{bottom:1099.875000px;}
.y1c_c01361{bottom:1101.600000px;}
.y1a_c01361{bottom:1106.790000px;}
.y19_c01361{bottom:1149.120000px;}
.y18_c01361{bottom:1151.715000px;}
.y15_c01361{bottom:1162.950000px;}
.y13_c01361{bottom:1165.530000px;}
.y14_c01361{bottom:1168.125000px;}
.y10_c01361{bottom:1179.360000px;}
.yf_c01361{bottom:1180.230000px;}
.yd_c01361{bottom:1183.680000px;}
.yc_c01361{bottom:1188.870000px;}
.y12_c01361{bottom:1189.725000px;}
.y11_c01361{bottom:1190.595000px;}
.ye_c01361{bottom:1228.605000px;}
.y7_c01361{bottom:1340.070000px;}
.y6_c01361{bottom:1341.795000px;}
.y9_c01361{bottom:1369.440000px;}
.yb_c01361{bottom:1372.035000px;}
.y8_c01361{bottom:1374.630000px;}
.ya_c01361{bottom:1375.485000px;}
.y5_c01361{bottom:1391.910000px;}
.y1_c01361{bottom:1400.550000px;}
.y2_c01361{bottom:1404.000000px;}
.y4_c01361{bottom:1405.725000px;}
.y3_c01361{bottom:1429.050000px;}
.h3_c01361{height:3.110063px;}
.h8_c01361{height:5.399414px;}
.hd_c01361{height:6.209326px;}
.h13_c01361{height:8.879414px;}
.hc_c01361{height:9.340986px;}
.h7_c01361{height:12.418652px;}
.h15_c01361{height:15.201973px;}
.h2_c01361{height:15.550313px;}
.hb_c01361{height:18.681973px;}
.h10_c01361{height:21.759639px;}
.h14_c01361{height:24.891299px;}
.h9_c01361{height:27.968965px;}
.ha_c01361{height:31.100625px;}
.h24_c01361{height:34.232285px;}
.h6_c01361{height:37.309951px;}
.h26_c01361{height:46.650937px;}
.h1d_c01361{height:49.782598px;}
.h22_c01361{height:52.860264px;}
.h4_c01361{height:55.991924px;}
.h19_c01361{height:59.069590px;}
.h23_c01361{height:62.201250px;}
.he_c01361{height:65.332910px;}
.h1a_c01361{height:71.542236px;}
.h1b_c01361{height:77.751563px;}
.h5_c01361{height:80.883223px;}
.h29_c01361{height:83.960889px;}
.h20_c01361{height:87.092549px;}
.h1c_c01361{height:90.170215px;}
.hf_c01361{height:93.301875px;}
.h25_c01361{height:96.433535px;}
.h28_c01361{height:105.720527px;}
.h1e_c01361{height:108.852188px;}
.h21_c01361{height:111.983848px;}
.h17_c01361{height:118.193174px;}
.h1f_c01361{height:121.270840px;}
.h27_c01361{height:130.611826px;}
.h18_c01361{height:133.743486px;}
.h16_c01361{height:139.952812px;}
.h11_c01361{height:155.503125px;}
.h12_c01361{height:186.603750px;}
.h1_c01361{height:1513.500000px;}
.h0_c01361{height:1513.725000px;}
.w0_c01361{width:1079.130000px;}
.w1_c01361{width:1079.250000px;}
.x0_c01361{left:0.000000px;}
.x1_c01361{left:31.110000px;}
.x2_c01361{left:44.925000px;}
.x4_c01361{left:104.550000px;}
.x3_c01361{left:111.450000px;}
.x15_c01361{left:129.600000px;}
.x36_c01361{left:132.195000px;}
.x16_c01361{left:138.240000px;}
.x7_c01361{left:146.880000px;}
.x8_c01361{left:160.710000px;}
.xb_c01361{left:187.485000px;}
.xc_c01361{left:196.995000px;}
.x53_c01361{left:236.730000px;}
.x19_c01361{left:241.050000px;}
.x74_c01361{left:244.515000px;}
.x73_c01361{left:247.110000px;}
.x54_c01361{left:251.430000px;}
.x26_c01361{left:268.710000px;}
.x27_c01361{left:273.885000px;}
.x4e_c01361{left:285.120000px;}
.x37_c01361{left:292.890000px;}
.x55_c01361{left:304.125000px;}
.x38_c01361{left:326.595000px;}
.x9_c01361{left:332.640000px;}
.x2a_c01361{left:335.235000px;}
.xe_c01361{left:341.280000px;}
.x56_c01361{left:343.005000px;}
.xa_c01361{left:344.730000px;}
.x39_c01361{left:358.560000px;}
.x57_c01361{left:364.605000px;}
.x65_c01361{left:366.330000px;}
.xf_c01361{left:368.070000px;}
.x41_c01361{left:372.390000px;}
.x58_c01361{left:387.075000px;}
.x22_c01361{left:406.080000px;}
.x48_c01361{left:408.675000px;}
.x68_c01361{left:412.995000px;}
.x1a_c01361{left:414.720000px;}
.x2b_c01361{left:418.170000px;}
.x59_c01361{left:426.810000px;}
.x66_c01361{left:431.130000px;}
.x49_c01361{left:432.870000px;}
.x12_c01361{left:440.640000px;}
.x2c_c01361{left:442.365000px;}
.x6e_c01361{left:451.005000px;}
.x3a_c01361{left:456.195000px;}
.x13_c01361{left:457.920000px;}
.x1b_c01361{left:460.515000px;}
.x6f_c01361{left:463.110000px;}
.x42_c01361{left:464.835000px;}
.x2d_c01361{left:466.560000px;}
.x4a_c01361{left:474.330000px;}
.x14_c01361{left:488.160000px;}
.x43_c01361{left:489.885000px;}
.x70_c01361{left:501.120000px;}
.x1c_c01361{left:507.165816px;}
.x23_c01361{left:509.760000px;}
.x71_c01361{left:514.950000px;}
.x1d_c01361{left:516.675864px;}
.x24_c01361{left:519.270000px;}
.x17_c01361{left:520.995000px;}
.x4f_c01361{left:531.360000px;}
.x2e_c01361{left:534.810000px;}
.x67_c01361{left:538.275000px;}
.x10_c01361{left:540.000000px;}
.x2f_c01361{left:543.450000px;}
.x4b_c01361{left:546.915000px;}
.x3b_c01361{left:553.830000px;}
.x50_c01361{left:555.555000px;}
.x69_c01361{left:559.875000px;}
.x44_c01361{left:565.920000px;}
.x30_c01361{left:574.560000px;}
.x28_c01361{left:576.285000px;}
.x6a_c01361{left:581.475000px;}
.x45_c01361{left:588.390000px;}
.x5a_c01361{left:600.480000px;}
.x31_c01361{left:603.075000px;}
.x3c_c01361{left:616.035000px;}
.x25_c01361{left:620.355000px;}
.x5b_c01361{left:627.270000px;}
.x32_c01361{left:632.445000px;}
.x72_c01361{left:636.765000px;}
.x11_c01361{left:641.085000px;}
.x5_c01361{left:645.405000px;}
.xd_c01361{left:647.130000px;}
.x1e_c01361{left:654.915000px;}
.x46_c01361{left:656.640000px;}
.x6_c01361{left:660.090000px;}
.x33_c01361{left:662.685000px;}
.x4c_c01361{left:668.730000px;}
.x5c_c01361{left:671.325000px;}
.x3d_c01361{left:683.430000px;}
.x1f_c01361{left:685.155000px;}
.x34_c01361{left:691.200000px;}
.x29_c01361{left:696.390000px;}
.x6b_c01361{left:700.710000px;}
.x5d_c01361{left:711.930000px;}
.x3e_c01361{left:713.670000px;}
.x6c_c01361{left:717.990000px;}
.x47_c01361{left:729.210000px;}
.x5e_c01361{left:732.675000px;}
.x6d_c01361{left:736.125000px;}
.x51_c01361{left:742.170000px;}
.x35_c01361{left:749.955000px;}
.x5f_c01361{left:756.000000px;}
.x20_c01361{left:758.595000px;}
.x4d_c01361{left:763.770000px;}
.x60_c01361{left:771.555000px;}
.x3f_c01361{left:813.885000px;}
.x61_c01361{left:817.350000px;}
.x18_c01361{left:825.990000px;}
.x40_c01361{left:862.275000px;}
.x21_c01361{left:869.190000px;}
.x62_c01361{left:878.685000px;}
.x63_c01361{left:895.965000px;}
.x64_c01361{left:910.650000px;}
.x52_c01361{left:913.245000px;}
@media print{
.v3_c01361{vertical-align:-6.133333pt;}
.v2_c01361{vertical-align:-3.093333pt;}
.v0_c01361{vertical-align:0.000000pt;}
.v1_c01361{vertical-align:3.093333pt;}
.ls4_c01361{letter-spacing:0.000000pt;}
.ls2_c01361{letter-spacing:8.092361pt;}
.ls1_c01361{letter-spacing:16.848000pt;}
.ls3_c01361{letter-spacing:474.481024pt;}
.ls0_c01361{letter-spacing:484.426834pt;}
.ws0_c01361{word-spacing:-26.513067pt;}
.ws1_c01361{word-spacing:0.000000pt;}
.fs1_c01361{font-size:3.072000pt;}
.fs6_c01361{font-size:5.333333pt;}
.fsb_c01361{font-size:6.133333pt;}
.fsa_c01361{font-size:9.226667pt;}
.fs5_c01361{font-size:12.266667pt;}
.fs0_c01361{font-size:15.360000pt;}
.fs9_c01361{font-size:18.453333pt;}
.fse_c01361{font-size:21.493333pt;}
.fs11_c01361{font-size:24.586667pt;}
.fs7_c01361{font-size:27.626667pt;}
.fs8_c01361{font-size:30.720000pt;}
.fs20_c01361{font-size:33.813333pt;}
.fs4_c01361{font-size:36.853333pt;}
.fs22_c01361{font-size:46.080000pt;}
.fs19_c01361{font-size:49.173333pt;}
.fs1e_c01361{font-size:52.213333pt;}
.fs2_c01361{font-size:55.306667pt;}
.fs15_c01361{font-size:58.346667pt;}
.fs1f_c01361{font-size:61.440000pt;}
.fsc_c01361{font-size:64.533333pt;}
.fs16_c01361{font-size:70.666667pt;}
.fs17_c01361{font-size:76.800000pt;}
.fs3_c01361{font-size:79.893333pt;}
.fs25_c01361{font-size:82.933333pt;}
.fs1c_c01361{font-size:86.026667pt;}
.fs18_c01361{font-size:89.066667pt;}
.fsd_c01361{font-size:92.160000pt;}
.fs21_c01361{font-size:95.253333pt;}
.fs24_c01361{font-size:104.426667pt;}
.fs1a_c01361{font-size:107.520000pt;}
.fs1d_c01361{font-size:110.613333pt;}
.fs13_c01361{font-size:116.746667pt;}
.fs1b_c01361{font-size:119.786667pt;}
.fs23_c01361{font-size:129.013333pt;}
.fs14_c01361{font-size:132.106667pt;}
.fs12_c01361{font-size:138.240000pt;}
.fsf_c01361{font-size:153.600000pt;}
.fs10_c01361{font-size:184.320000pt;}
.y0_c01361{bottom:0.000000pt;}
.y71_c01361{bottom:521.466667pt;}
.y6f_c01361{bottom:522.240000pt;}
.y72_c01361{bottom:523.013333pt;}
.y68_c01361{bottom:523.773333pt;}
.y6d_c01361{bottom:524.546667pt;}
.y6b_c01361{bottom:526.080000pt;}
.y6e_c01361{bottom:526.853333pt;}
.y67_c01361{bottom:528.386667pt;}
.y6c_c01361{bottom:529.146667pt;}
.y66_c01361{bottom:529.920000pt;}
.y70_c01361{bottom:530.693333pt;}
.y69_c01361{bottom:536.826667pt;}
.y6a_c01361{bottom:540.666667pt;}
.y65_c01361{bottom:543.746667pt;}
.y64_c01361{bottom:544.506667pt;}
.y63_c01361{bottom:548.346667pt;}
.y62_c01361{bottom:550.653333pt;}
.y61_c01361{bottom:559.866667pt;}
.y5b_c01361{bottom:572.933333pt;}
.y5d_c01361{bottom:574.466667pt;}
.y60_c01361{bottom:575.226667pt;}
.y5c_c01361{bottom:576.773333pt;}
.y5a_c01361{bottom:579.066667pt;}
.y5e_c01361{bottom:580.613333pt;}
.y57_c01361{bottom:582.146667pt;}
.y58_c01361{bottom:582.906667pt;}
.y59_c01361{bottom:583.680000pt;}
.y52_c01361{bottom:584.453333pt;}
.y56_c01361{bottom:586.746667pt;}
.y55_c01361{bottom:588.293333pt;}
.y54_c01361{bottom:589.053333pt;}
.y53_c01361{bottom:589.826667pt;}
.y5f_c01361{bottom:599.813333pt;}
.y51_c01361{bottom:612.093333pt;}
.y4f_c01361{bottom:612.866667pt;}
.y4e_c01361{bottom:615.933333pt;}
.y50_c01361{bottom:618.240000pt;}
.y4d_c01361{bottom:622.853333pt;}
.y4c_c01361{bottom:626.693333pt;}
.y4b_c01361{bottom:627.453333pt;}
.y49_c01361{bottom:628.986667pt;}
.y48_c01361{bottom:629.760000pt;}
.y47_c01361{bottom:631.293333pt;}
.y46_c01361{bottom:632.066667pt;}
.y4a_c01361{bottom:632.826667pt;}
.y45_c01361{bottom:633.600000pt;}
.y44_c01361{bottom:634.373333pt;}
.y43_c01361{bottom:635.133333pt;}
.y42_c01361{bottom:635.906667pt;}
.y41_c01361{bottom:636.666667pt;}
.y40_c01361{bottom:641.280000pt;}
.y3f_c01361{bottom:652.026667pt;}
.y3e_c01361{bottom:652.800000pt;}
.y3d_c01361{bottom:655.106667pt;}
.y39_c01361{bottom:655.866667pt;}
.y3c_c01361{bottom:659.706667pt;}
.y3b_c01361{bottom:662.786667pt;}
.y3a_c01361{bottom:663.546667pt;}
.y38_c01361{bottom:665.853333pt;}
.y37_c01361{bottom:666.626667pt;}
.y35_c01361{bottom:892.413333pt;}
.y34_c01361{bottom:893.186667pt;}
.y33_c01361{bottom:894.720000pt;}
.y32_c01361{bottom:897.786667pt;}
.y30_c01361{bottom:898.560000pt;}
.y2e_c01361{bottom:899.333333pt;}
.y31_c01361{bottom:900.093333pt;}
.y2b_c01361{bottom:902.400000pt;}
.y2d_c01361{bottom:903.173333pt;}
.y2c_c01361{bottom:903.933333pt;}
.y2a_c01361{bottom:904.706667pt;}
.y2f_c01361{bottom:910.080000pt;}
.y17_c01361{bottom:911.613333pt;}
.y16_c01361{bottom:915.453333pt;}
.y29_c01361{bottom:926.213333pt;}
.y28_c01361{bottom:929.280000pt;}
.y27_c01361{bottom:933.893333pt;}
.y26_c01361{bottom:939.266667pt;}
.y25_c01361{bottom:963.066667pt;}
.y24_c01361{bottom:966.906667pt;}
.y21_c01361{bottom:967.680000pt;}
.y23_c01361{bottom:968.453333pt;}
.y22_c01361{bottom:971.520000pt;}
.y1f_c01361{bottom:972.293333pt;}
.y20_c01361{bottom:973.053333pt;}
.y1b_c01361{bottom:973.826667pt;}
.y1e_c01361{bottom:974.586667pt;}
.y36_c01361{bottom:976.893333pt;}
.y1d_c01361{bottom:977.666667pt;}
.y1c_c01361{bottom:979.200000pt;}
.y1a_c01361{bottom:983.813333pt;}
.y19_c01361{bottom:1021.440000pt;}
.y18_c01361{bottom:1023.746667pt;}
.y15_c01361{bottom:1033.733333pt;}
.y13_c01361{bottom:1036.026667pt;}
.y14_c01361{bottom:1038.333333pt;}
.y10_c01361{bottom:1048.320000pt;}
.yf_c01361{bottom:1049.093333pt;}
.yd_c01361{bottom:1052.160000pt;}
.yc_c01361{bottom:1056.773333pt;}
.y12_c01361{bottom:1057.533333pt;}
.y11_c01361{bottom:1058.306667pt;}
.ye_c01361{bottom:1092.093333pt;}
.y7_c01361{bottom:1191.173333pt;}
.y6_c01361{bottom:1192.706667pt;}
.y9_c01361{bottom:1217.280000pt;}
.yb_c01361{bottom:1219.586667pt;}
.y8_c01361{bottom:1221.893333pt;}
.ya_c01361{bottom:1222.653333pt;}
.y5_c01361{bottom:1237.253333pt;}
.y1_c01361{bottom:1244.933333pt;}
.y2_c01361{bottom:1248.000000pt;}
.y4_c01361{bottom:1249.533333pt;}
.y3_c01361{bottom:1270.266667pt;}
.h3_c01361{height:2.764500pt;}
.h8_c01361{height:4.799479pt;}
.hd_c01361{height:5.519401pt;}
.h13_c01361{height:7.892812pt;}
.hc_c01361{height:8.303099pt;}
.h7_c01361{height:11.038802pt;}
.h15_c01361{height:13.512865pt;}
.h2_c01361{height:13.822500pt;}
.hb_c01361{height:16.606198pt;}
.h10_c01361{height:19.341901pt;}
.h14_c01361{height:22.125599pt;}
.h9_c01361{height:24.861302pt;}
.ha_c01361{height:27.645000pt;}
.h24_c01361{height:30.428698pt;}
.h6_c01361{height:33.164401pt;}
.h26_c01361{height:41.467500pt;}
.h1d_c01361{height:44.251198pt;}
.h22_c01361{height:46.986901pt;}
.h4_c01361{height:49.770599pt;}
.h19_c01361{height:52.506302pt;}
.h23_c01361{height:55.290000pt;}
.he_c01361{height:58.073698pt;}
.h1a_c01361{height:63.593099pt;}
.h1b_c01361{height:69.112500pt;}
.h5_c01361{height:71.896198pt;}
.h29_c01361{height:74.631901pt;}
.h20_c01361{height:77.415599pt;}
.h1c_c01361{height:80.151302pt;}
.hf_c01361{height:82.935000pt;}
.h25_c01361{height:85.718698pt;}
.h28_c01361{height:93.973802pt;}
.h1e_c01361{height:96.757500pt;}
.h21_c01361{height:99.541198pt;}
.h17_c01361{height:105.060599pt;}
.h1f_c01361{height:107.796302pt;}
.h27_c01361{height:116.099401pt;}
.h18_c01361{height:118.883099pt;}
.h16_c01361{height:124.402500pt;}
.h11_c01361{height:138.225000pt;}
.h12_c01361{height:165.870000pt;}
.h1_c01361{height:1345.333333pt;}
.h0_c01361{height:1345.533333pt;}
.w0_c01361{width:959.226667pt;}
.w1_c01361{width:959.333333pt;}
.x0_c01361{left:0.000000pt;}
.x1_c01361{left:27.653333pt;}
.x2_c01361{left:39.933333pt;}
.x4_c01361{left:92.933333pt;}
.x3_c01361{left:99.066667pt;}
.x15_c01361{left:115.200000pt;}
.x36_c01361{left:117.506667pt;}
.x16_c01361{left:122.880000pt;}
.x7_c01361{left:130.560000pt;}
.x8_c01361{left:142.853333pt;}
.xb_c01361{left:166.653333pt;}
.xc_c01361{left:175.106667pt;}
.x53_c01361{left:210.426667pt;}
.x19_c01361{left:214.266667pt;}
.x74_c01361{left:217.346667pt;}
.x73_c01361{left:219.653333pt;}
.x54_c01361{left:223.493333pt;}
.x26_c01361{left:238.853333pt;}
.x27_c01361{left:243.453333pt;}
.x4e_c01361{left:253.440000pt;}
.x37_c01361{left:260.346667pt;}
.x55_c01361{left:270.333333pt;}
.x38_c01361{left:290.306667pt;}
.x9_c01361{left:295.680000pt;}
.x2a_c01361{left:297.986667pt;}
.xe_c01361{left:303.360000pt;}
.x56_c01361{left:304.893333pt;}
.xa_c01361{left:306.426667pt;}
.x39_c01361{left:318.720000pt;}
.x57_c01361{left:324.093333pt;}
.x65_c01361{left:325.626667pt;}
.xf_c01361{left:327.173333pt;}
.x41_c01361{left:331.013333pt;}
.x58_c01361{left:344.066667pt;}
.x22_c01361{left:360.960000pt;}
.x48_c01361{left:363.266667pt;}
.x68_c01361{left:367.106667pt;}
.x1a_c01361{left:368.640000pt;}
.x2b_c01361{left:371.706667pt;}
.x59_c01361{left:379.386667pt;}
.x66_c01361{left:383.226667pt;}
.x49_c01361{left:384.773333pt;}
.x12_c01361{left:391.680000pt;}
.x2c_c01361{left:393.213333pt;}
.x6e_c01361{left:400.893333pt;}
.x3a_c01361{left:405.506667pt;}
.x13_c01361{left:407.040000pt;}
.x1b_c01361{left:409.346667pt;}
.x6f_c01361{left:411.653333pt;}
.x42_c01361{left:413.186667pt;}
.x2d_c01361{left:414.720000pt;}
.x4a_c01361{left:421.626667pt;}
.x14_c01361{left:433.920000pt;}
.x43_c01361{left:435.453333pt;}
.x70_c01361{left:445.440000pt;}
.x1c_c01361{left:450.814059pt;}
.x23_c01361{left:453.120000pt;}
.x71_c01361{left:457.733333pt;}
.x1d_c01361{left:459.267435pt;}
.x24_c01361{left:461.573333pt;}
.x17_c01361{left:463.106667pt;}
.x4f_c01361{left:472.320000pt;}
.x2e_c01361{left:475.386667pt;}
.x67_c01361{left:478.466667pt;}
.x10_c01361{left:480.000000pt;}
.x2f_c01361{left:483.066667pt;}
.x4b_c01361{left:486.146667pt;}
.x3b_c01361{left:492.293333pt;}
.x50_c01361{left:493.826667pt;}
.x69_c01361{left:497.666667pt;}
.x44_c01361{left:503.040000pt;}
.x30_c01361{left:510.720000pt;}
.x28_c01361{left:512.253333pt;}
.x6a_c01361{left:516.866667pt;}
.x45_c01361{left:523.013333pt;}
.x5a_c01361{left:533.760000pt;}
.x31_c01361{left:536.066667pt;}
.x3c_c01361{left:547.586667pt;}
.x25_c01361{left:551.426667pt;}
.x5b_c01361{left:557.573333pt;}
.x32_c01361{left:562.173333pt;}
.x72_c01361{left:566.013333pt;}
.x11_c01361{left:569.853333pt;}
.x5_c01361{left:573.693333pt;}
.xd_c01361{left:575.226667pt;}
.x1e_c01361{left:582.146667pt;}
.x46_c01361{left:583.680000pt;}
.x6_c01361{left:586.746667pt;}
.x33_c01361{left:589.053333pt;}
.x4c_c01361{left:594.426667pt;}
.x5c_c01361{left:596.733333pt;}
.x3d_c01361{left:607.493333pt;}
.x1f_c01361{left:609.026667pt;}
.x34_c01361{left:614.400000pt;}
.x29_c01361{left:619.013333pt;}
.x6b_c01361{left:622.853333pt;}
.x5d_c01361{left:632.826667pt;}
.x3e_c01361{left:634.373333pt;}
.x6c_c01361{left:638.213333pt;}
.x47_c01361{left:648.186667pt;}
.x5e_c01361{left:651.266667pt;}
.x6d_c01361{left:654.333333pt;}
.x51_c01361{left:659.706667pt;}
.x35_c01361{left:666.626667pt;}
.x5f_c01361{left:672.000000pt;}
.x20_c01361{left:674.306667pt;}
.x4d_c01361{left:678.906667pt;}
.x60_c01361{left:685.826667pt;}
.x3f_c01361{left:723.453333pt;}
.x61_c01361{left:726.533333pt;}
.x18_c01361{left:734.213333pt;}
.x40_c01361{left:766.466667pt;}
.x21_c01361{left:772.613333pt;}
.x62_c01361{left:781.053333pt;}
.x63_c01361{left:796.413333pt;}
.x64_c01361{left:809.466667pt;}
.x52_c01361{left:811.773333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e7faa530b6c411bfa3886576.woff2')format("woff");}.ff1_c01362{font-family:ff1_c01362;line-height:1.109863;font-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_c01362{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);}
.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;}
.fs0_c01362{font-size:600.000000px;}
.y0_c01362{bottom:0.000000px;}
.y1_c01362{bottom:15.000000px;}
.h2_c01362{height:539.941406px;}
.h1_c01362{height:1513.500000px;}
.h0_c01362{height:1513.725000px;}
.w0_c01362{width:1083.450000px;}
.w1_c01362{width:1083.750000px;}
.x0_c01362{left:0.000000px;}
.x1_c01362{left:15.000000px;}
@media print{
.v0_c01362{vertical-align:0.000000pt;}
.ls0_c01362{letter-spacing:0.000000pt;}
.ws0_c01362{word-spacing:0.000000pt;}
.fs0_c01362{font-size:533.333333pt;}
.y0_c01362{bottom:0.000000pt;}
.y1_c01362{bottom:13.333333pt;}
.h2_c01362{height:479.947917pt;}
.h1_c01362{height:1345.333333pt;}
.h0_c01362{height:1345.533333pt;}
.w0_c01362{width:963.066667pt;}
.w1_c01362{width:963.333333pt;}
.x0_c01362{left:0.000000pt;}
.x1_c01362{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01363;src:url('chunks/assets/font_3baade5a59ad258b25f3b524.woff2')format("woff");}.ff1_c01363{font-family:ff1_c01363;line-height:1.109863;font-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_c01363{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma_c01363{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m4_c01363{transform:matrix(0.052375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052375,0.000000,0.000000,0.250000,0,0);}
.m7_c01363{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m0_c01363{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m1_c01363{transform:matrix(0.103150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103150,0.000000,0.000000,0.250000,0,0);}
.m2d_c01363{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.m26_c01363{transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108000,0.000000,0.000000,0.250000,0,0);}
.m22_c01363{transform:matrix(0.113425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113425,0.000000,0.000000,0.250000,0,0);}
.m24_c01363{transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.115375,0.000000,0.000000,0.250000,0,0);}
.mb_c01363{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m28_c01363{transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131625,0.000000,0.000000,0.250000,0,0);}
.m29_c01363{transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142375,0.000000,0.000000,0.250000,0,0);}
.m20_c01363{transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143400,0.000000,0.000000,0.250000,0,0);}
.m6_c01363{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m25_c01363{transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);}
.m27_c01363{transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147425,0.000000,0.000000,0.250000,0,0);}
.m2a_c01363{transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153700,0.000000,0.000000,0.250000,0,0);}
.m2b_c01363{transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154800,0.000000,0.000000,0.250000,0,0);}
.m23_c01363{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);}
.m2c_c01363{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);}
.m15_c01363{transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162575,0.000000,0.000000,0.250000,0,0);}
.m17_c01363{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m14_c01363{transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193400,0.000000,0.000000,0.250000,0,0);}
.md_c01363{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.mf_c01363{transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211675,0.000000,0.000000,0.250000,0,0);}
.m10_c01363{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);}
.m19_c01363{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);}
.m1d_c01363{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);}
.m5_c01363{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01363{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);}
.m1c_c01363{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);}
.me_c01363{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);}
.m12_c01363{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m8_c01363{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);}
.m11_c01363{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m18_c01363{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_c01363{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m13_c01363{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);}
.m21_c01363{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01363{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);}
.m1f_c01363{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c01363{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m16_c01363{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.mc_c01363{transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.817500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01363{transform:matrix(9.360000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(9.360000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(9.360000,0.000000,0.000000,0.250000,0,0);}
.v2_c01363{vertical-align:-10.380000px;}
.v0_c01363{vertical-align:0.000000px;}
.v1_c01363{vertical-align:3.480000px;}
.ls1_c01363{letter-spacing:0.000000px;}
.ls0_c01363{letter-spacing:28.903152px;}
.sc__c01363{text-shadow:none;}
.sc0_c01363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01363{-webkit-text-stroke:0px transparent;}
.sc0_c01363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01363{word-spacing:-18.386400px;}
.ws1_c01363{word-spacing:0.000000px;}
.fc0_c01363{color:transparent;}
.fs5_c01363{font-size:3.456000px;}
.fsd_c01363{font-size:6.000000px;}
.fs2_c01363{font-size:6.900000px;}
.fsb_c01363{font-size:10.380000px;}
.fs6_c01363{font-size:13.800000px;}
.fs3_c01363{font-size:17.280000px;}
.fs11_c01363{font-size:20.760000px;}
.fsa_c01363{font-size:24.180000px;}
.fse_c01363{font-size:31.080000px;}
.fs0_c01363{font-size:34.560000px;}
.fs7_c01363{font-size:38.040000px;}
.fsc_c01363{font-size:41.460000px;}
.fs14_c01363{font-size:48.360000px;}
.fs15_c01363{font-size:51.840000px;}
.fs8_c01363{font-size:65.640000px;}
.fs9_c01363{font-size:69.120000px;}
.fs10_c01363{font-size:72.600000px;}
.fsf_c01363{font-size:76.020000px;}
.fs16_c01363{font-size:82.920000px;}
.fs1b_c01363{font-size:89.880000px;}
.fs18_c01363{font-size:93.300000px;}
.fs17_c01363{font-size:103.680000px;}
.fs1c_c01363{font-size:107.160000px;}
.fs1d_c01363{font-size:110.580000px;}
.fs1_c01363{font-size:120.960000px;}
.fs1e_c01363{font-size:127.860000px;}
.fs19_c01363{font-size:131.340000px;}
.fs1a_c01363{font-size:134.760000px;}
.fs13_c01363{font-size:138.240000px;}
.fs12_c01363{font-size:145.140000px;}
.fs4_c01363{font-size:148.620000px;}
.y0_c01363{bottom:0.000000px;}
.y32_c01363{bottom:908.925000px;}
.y30_c01363{bottom:910.650000px;}
.y31_c01363{bottom:912.390000px;}
.y33_c01363{bottom:913.245000px;}
.y2f_c01363{bottom:920.160000px;}
.y2a_c01363{bottom:940.890000px;}
.y28_c01363{bottom:941.760000px;}
.y2c_c01363{bottom:945.210000px;}
.y2d_c01363{bottom:947.805000px;}
.y29_c01363{bottom:949.530000px;}
.y2b_c01363{bottom:951.270000px;}
.y2e_c01363{bottom:966.810000px;}
.y27_c01363{bottom:973.725000px;}
.y25_c01363{bottom:974.595000px;}
.y23_c01363{bottom:975.450000px;}
.y26_c01363{bottom:978.045000px;}
.y24_c01363{bottom:980.640000px;}
.y21_c01363{bottom:981.510000px;}
.y22_c01363{bottom:982.365000px;}
.y20_c01363{bottom:985.830000px;}
.y1f_c01363{bottom:1006.560000px;}
.y1d_c01363{bottom:1007.430000px;}
.y1a_c01363{bottom:1008.285000px;}
.y1b_c01363{bottom:1009.155000px;}
.y1c_c01363{bottom:1010.880000px;}
.y19_c01363{bottom:1011.750000px;}
.y1e_c01363{bottom:1020.390000px;}
.y18_c01363{bottom:1022.115000px;}
.y17_c01363{bottom:1055.805000px;}
.y16_c01363{bottom:1131.840000px;}
.y14_c01363{bottom:1133.565000px;}
.y15_c01363{bottom:1136.160000px;}
.y12_c01363{bottom:1151.715000px;}
.y11_c01363{bottom:1156.035000px;}
.y13_c01363{bottom:1160.355000px;}
.y10_c01363{bottom:1165.530000px;}
.ye_c01363{bottom:1167.270000px;}
.yf_c01363{bottom:1168.125000px;}
.yd_c01363{bottom:1181.085000px;}
.yc_c01363{bottom:1200.090000px;}
.yb_c01363{bottom:1218.240000px;}
.ya_c01363{bottom:1226.880000px;}
.y9_c01363{bottom:1249.350000px;}
.y8_c01363{bottom:1255.395000px;}
.y7_c01363{bottom:1267.485000px;}
.y6_c01363{bottom:1290.810000px;}
.y5_c01363{bottom:1308.090000px;}
.y2_c01363{bottom:1346.115000px;}
.y4_c01363{bottom:1351.290000px;}
.y3_c01363{bottom:1371.165000px;}
.y1_c01363{bottom:1378.080000px;}
.hc_c01363{height:3.110063px;}
.h10_c01363{height:5.399414px;}
.h4_c01363{height:6.209326px;}
.he_c01363{height:9.340986px;}
.h7_c01363{height:9.689326px;}
.h8_c01363{height:12.418652px;}
.h5_c01363{height:15.550313px;}
.h14_c01363{height:18.681973px;}
.hd_c01363{height:21.759639px;}
.h11_c01363{height:27.968965px;}
.h2_c01363{height:31.100625px;}
.h9_c01363{height:34.232285px;}
.hf_c01363{height:37.309951px;}
.h16_c01363{height:43.519277px;}
.h17_c01363{height:46.650937px;}
.ha_c01363{height:59.069590px;}
.hb_c01363{height:62.201250px;}
.h13_c01363{height:65.332910px;}
.h12_c01363{height:68.410576px;}
.h18_c01363{height:74.619902px;}
.h1d_c01363{height:80.883223px;}
.h1a_c01363{height:83.960889px;}
.h19_c01363{height:93.301875px;}
.h1e_c01363{height:96.433535px;}
.h1f_c01363{height:99.511201px;}
.h3_c01363{height:108.852188px;}
.h20_c01363{height:115.061514px;}
.h1b_c01363{height:118.193174px;}
.h1c_c01363{height:121.270840px;}
.h15_c01363{height:130.611826px;}
.h6_c01363{height:133.743486px;}
.h1_c01363{height:1513.500000px;}
.h0_c01363{height:1513.725000px;}
.w0_c01363{width:1079.130000px;}
.w1_c01363{width:1079.250000px;}
.x0_c01363{left:0.000000px;}
.x4_c01363{left:15.555000px;}
.x7_c01363{left:100.230000px;}
.x1_c01363{left:103.680000px;}
.x6_c01363{left:105.405000px;}
.x5_c01363{left:108.000000px;}
.x2_c01363{left:115.770000px;}
.x3_c01363{left:139.110000px;}
.x8_c01363{left:190.080000px;}
.x2e_c01363{left:250.560000px;}
.x24_c01363{left:255.750000px;}
.x15_c01363{left:258.330000px;}
.x14_c01363{left:265.245000px;}
.x25_c01363{left:345.600000px;}
.x1c_c01363{left:361.155000px;}
.x1f_c01363{left:362.880000px;}
.x16_c01363{left:369.795000px;}
.x17_c01363{left:387.930000px;}
.x26_c01363{left:396.570000px;}
.x10_c01363{left:439.770000px;}
.x9_c01363{left:456.195000px;}
.x20_c01363{left:459.645000px;}
.x11_c01363{left:461.370000px;}
.x18_c01363{left:479.520000px;}
.xc_c01363{left:488.160000px;}
.x27_c01363{left:502.845000px;}
.xd_c01363{left:523.590000px;}
.x21_c01363{left:535.680000px;}
.xa_c01363{left:540.000000px;}
.x2f_c01363{left:588.390000px;}
.x1d_c01363{left:590.970000px;}
.xe_c01363{left:602.205000px;}
.xb_c01363{left:630.720000px;}
.x19_c01363{left:635.910000px;}
.xf_c01363{left:642.810000px;}
.x30_c01363{left:653.190000px;}
.x12_c01363{left:674.790000px;}
.x28_c01363{left:685.155000px;}
.x13_c01363{left:690.330000px;}
.x29_c01363{left:706.755000px;}
.x22_c01363{left:719.715000px;}
.x1a_c01363{left:722.310000px;}
.x1b_c01363{left:733.530000px;}
.x2a_c01363{left:741.315000px;}
.x2b_c01363{left:780.195000px;}
.x1e_c01363{left:813.030000px;}
.x31_c01363{left:831.165000px;}
.x23_c01363{left:845.850000px;}
.x2c_c01363{left:873.510000px;}
.x2d_c01363{left:886.470000px;}
@media print{
.v2_c01363{vertical-align:-9.226667pt;}
.v0_c01363{vertical-align:0.000000pt;}
.v1_c01363{vertical-align:3.093333pt;}
.ls1_c01363{letter-spacing:0.000000pt;}
.ls0_c01363{letter-spacing:25.691691pt;}
.ws0_c01363{word-spacing:-16.343467pt;}
.ws1_c01363{word-spacing:0.000000pt;}
.fs5_c01363{font-size:3.072000pt;}
.fsd_c01363{font-size:5.333333pt;}
.fs2_c01363{font-size:6.133333pt;}
.fsb_c01363{font-size:9.226667pt;}
.fs6_c01363{font-size:12.266667pt;}
.fs3_c01363{font-size:15.360000pt;}
.fs11_c01363{font-size:18.453333pt;}
.fsa_c01363{font-size:21.493333pt;}
.fse_c01363{font-size:27.626667pt;}
.fs0_c01363{font-size:30.720000pt;}
.fs7_c01363{font-size:33.813333pt;}
.fsc_c01363{font-size:36.853333pt;}
.fs14_c01363{font-size:42.986667pt;}
.fs15_c01363{font-size:46.080000pt;}
.fs8_c01363{font-size:58.346667pt;}
.fs9_c01363{font-size:61.440000pt;}
.fs10_c01363{font-size:64.533333pt;}
.fsf_c01363{font-size:67.573333pt;}
.fs16_c01363{font-size:73.706667pt;}
.fs1b_c01363{font-size:79.893333pt;}
.fs18_c01363{font-size:82.933333pt;}
.fs17_c01363{font-size:92.160000pt;}
.fs1c_c01363{font-size:95.253333pt;}
.fs1d_c01363{font-size:98.293333pt;}
.fs1_c01363{font-size:107.520000pt;}
.fs1e_c01363{font-size:113.653333pt;}
.fs19_c01363{font-size:116.746667pt;}
.fs1a_c01363{font-size:119.786667pt;}
.fs13_c01363{font-size:122.880000pt;}
.fs12_c01363{font-size:129.013333pt;}
.fs4_c01363{font-size:132.106667pt;}
.y0_c01363{bottom:0.000000pt;}
.y32_c01363{bottom:807.933333pt;}
.y30_c01363{bottom:809.466667pt;}
.y31_c01363{bottom:811.013333pt;}
.y33_c01363{bottom:811.773333pt;}
.y2f_c01363{bottom:817.920000pt;}
.y2a_c01363{bottom:836.346667pt;}
.y28_c01363{bottom:837.120000pt;}
.y2c_c01363{bottom:840.186667pt;}
.y2d_c01363{bottom:842.493333pt;}
.y29_c01363{bottom:844.026667pt;}
.y2b_c01363{bottom:845.573333pt;}
.y2e_c01363{bottom:859.386667pt;}
.y27_c01363{bottom:865.533333pt;}
.y25_c01363{bottom:866.306667pt;}
.y23_c01363{bottom:867.066667pt;}
.y26_c01363{bottom:869.373333pt;}
.y24_c01363{bottom:871.680000pt;}
.y21_c01363{bottom:872.453333pt;}
.y22_c01363{bottom:873.213333pt;}
.y20_c01363{bottom:876.293333pt;}
.y1f_c01363{bottom:894.720000pt;}
.y1d_c01363{bottom:895.493333pt;}
.y1a_c01363{bottom:896.253333pt;}
.y1b_c01363{bottom:897.026667pt;}
.y1c_c01363{bottom:898.560000pt;}
.y19_c01363{bottom:899.333333pt;}
.y1e_c01363{bottom:907.013333pt;}
.y18_c01363{bottom:908.546667pt;}
.y17_c01363{bottom:938.493333pt;}
.y16_c01363{bottom:1006.080000pt;}
.y14_c01363{bottom:1007.613333pt;}
.y15_c01363{bottom:1009.920000pt;}
.y12_c01363{bottom:1023.746667pt;}
.y11_c01363{bottom:1027.586667pt;}
.y13_c01363{bottom:1031.426667pt;}
.y10_c01363{bottom:1036.026667pt;}
.ye_c01363{bottom:1037.573333pt;}
.yf_c01363{bottom:1038.333333pt;}
.yd_c01363{bottom:1049.853333pt;}
.yc_c01363{bottom:1066.746667pt;}
.yb_c01363{bottom:1082.880000pt;}
.ya_c01363{bottom:1090.560000pt;}
.y9_c01363{bottom:1110.533333pt;}
.y8_c01363{bottom:1115.906667pt;}
.y7_c01363{bottom:1126.653333pt;}
.y6_c01363{bottom:1147.386667pt;}
.y5_c01363{bottom:1162.746667pt;}
.y2_c01363{bottom:1196.546667pt;}
.y4_c01363{bottom:1201.146667pt;}
.y3_c01363{bottom:1218.813333pt;}
.y1_c01363{bottom:1224.960000pt;}
.hc_c01363{height:2.764500pt;}
.h10_c01363{height:4.799479pt;}
.h4_c01363{height:5.519401pt;}
.he_c01363{height:8.303099pt;}
.h7_c01363{height:8.612734pt;}
.h8_c01363{height:11.038802pt;}
.h5_c01363{height:13.822500pt;}
.h14_c01363{height:16.606198pt;}
.hd_c01363{height:19.341901pt;}
.h11_c01363{height:24.861302pt;}
.h2_c01363{height:27.645000pt;}
.h9_c01363{height:30.428698pt;}
.hf_c01363{height:33.164401pt;}
.h16_c01363{height:38.683802pt;}
.h17_c01363{height:41.467500pt;}
.ha_c01363{height:52.506302pt;}
.hb_c01363{height:55.290000pt;}
.h13_c01363{height:58.073698pt;}
.h12_c01363{height:60.809401pt;}
.h18_c01363{height:66.328802pt;}
.h1d_c01363{height:71.896198pt;}
.h1a_c01363{height:74.631901pt;}
.h19_c01363{height:82.935000pt;}
.h1e_c01363{height:85.718698pt;}
.h1f_c01363{height:88.454401pt;}
.h3_c01363{height:96.757500pt;}
.h20_c01363{height:102.276901pt;}
.h1b_c01363{height:105.060599pt;}
.h1c_c01363{height:107.796302pt;}
.h15_c01363{height:116.099401pt;}
.h6_c01363{height:118.883099pt;}
.h1_c01363{height:1345.333333pt;}
.h0_c01363{height:1345.533333pt;}
.w0_c01363{width:959.226667pt;}
.w1_c01363{width:959.333333pt;}
.x0_c01363{left:0.000000pt;}
.x4_c01363{left:13.826667pt;}
.x7_c01363{left:89.093333pt;}
.x1_c01363{left:92.160000pt;}
.x6_c01363{left:93.693333pt;}
.x5_c01363{left:96.000000pt;}
.x2_c01363{left:102.906667pt;}
.x3_c01363{left:123.653333pt;}
.x8_c01363{left:168.960000pt;}
.x2e_c01363{left:222.720000pt;}
.x24_c01363{left:227.333333pt;}
.x15_c01363{left:229.626667pt;}
.x14_c01363{left:235.773333pt;}
.x25_c01363{left:307.200000pt;}
.x1c_c01363{left:321.026667pt;}
.x1f_c01363{left:322.560000pt;}
.x16_c01363{left:328.706667pt;}
.x17_c01363{left:344.826667pt;}
.x26_c01363{left:352.506667pt;}
.x10_c01363{left:390.906667pt;}
.x9_c01363{left:405.506667pt;}
.x20_c01363{left:408.573333pt;}
.x11_c01363{left:410.106667pt;}
.x18_c01363{left:426.240000pt;}
.xc_c01363{left:433.920000pt;}
.x27_c01363{left:446.973333pt;}
.xd_c01363{left:465.413333pt;}
.x21_c01363{left:476.160000pt;}
.xa_c01363{left:480.000000pt;}
.x2f_c01363{left:523.013333pt;}
.x1d_c01363{left:525.306667pt;}
.xe_c01363{left:535.293333pt;}
.xb_c01363{left:560.640000pt;}
.x19_c01363{left:565.253333pt;}
.xf_c01363{left:571.386667pt;}
.x30_c01363{left:580.613333pt;}
.x12_c01363{left:599.813333pt;}
.x28_c01363{left:609.026667pt;}
.x13_c01363{left:613.626667pt;}
.x29_c01363{left:628.226667pt;}
.x22_c01363{left:639.746667pt;}
.x1a_c01363{left:642.053333pt;}
.x1b_c01363{left:652.026667pt;}
.x2a_c01363{left:658.946667pt;}
.x2b_c01363{left:693.506667pt;}
.x1e_c01363{left:722.693333pt;}
.x31_c01363{left:738.813333pt;}
.x23_c01363{left:751.866667pt;}
.x2c_c01363{left:776.453333pt;}
.x2d_c01363{left:787.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b902105b99b5755f2c8d63bb.woff2')format("woff");}.ff1_c01364{font-family:ff1_c01364;line-height:1.109863;font-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_c01364{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,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:10.380000px;}
.y0_c01364{bottom:0.000000px;}
.y1_c01364{bottom:1358.205000px;}
.h2_c01364{height:9.340986px;}
.h1_c01364{height:1513.500000px;}
.h0_c01364{height:1513.725000px;}
.w0_c01364{width:1083.450000px;}
.w1_c01364{width:1083.750000px;}
.x0_c01364{left:0.000000px;}
.x1_c01364{left:1043.715000px;}
@media print{
.v0_c01364{vertical-align:0.000000pt;}
.ls0_c01364{letter-spacing:0.000000pt;}
.ws0_c01364{word-spacing:0.000000pt;}
.fs0_c01364{font-size:9.226667pt;}
.y0_c01364{bottom:0.000000pt;}
.y1_c01364{bottom:1207.293333pt;}
.h2_c01364{height:8.303099pt;}
.h1_c01364{height:1345.333333pt;}
.h0_c01364{height:1345.533333pt;}
.w0_c01364{width:963.066667pt;}
.w1_c01364{width:963.333333pt;}
.x0_c01364{left:0.000000pt;}
.x1_c01364{left:927.746667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_553f581a0ebfca4b47c13bcd.woff2')format("woff");}.ff1_c01365{font-family:ff1_c01365;line-height:1.109863;font-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_c01365{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c01365{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma_c01365{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);}
.m0_c01365{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);}
.mb_c01365{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);}
.m6_c01365{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);}
.m7_c01365{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m8_c01365{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m9_c01365{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5_c01365{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m2_c01365{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m4_c01365{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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:3.456000px;}
.fs3_c01365{font-size:10.380000px;}
.fs2_c01365{font-size:13.800000px;}
.fs0_c01365{font-size:17.280000px;}
.fs9_c01365{font-size:20.760000px;}
.fs4_c01365{font-size:55.320000px;}
.fs5_c01365{font-size:58.740000px;}
.fs8_c01365{font-size:65.640000px;}
.fs6_c01365{font-size:72.600000px;}
.fs7_c01365{font-size:76.020000px;}
.y0_c01365{bottom:0.000000px;}
.yb_c01365{bottom:1288.230000px;}
.ya_c01365{bottom:1387.590000px;}
.y9_c01365{bottom:1391.040000px;}
.y8_c01365{bottom:1391.910000px;}
.y7_c01365{bottom:1392.765000px;}
.y1_c01365{bottom:1414.365000px;}
.y3_c01365{bottom:1416.960000px;}
.y5_c01365{bottom:1420.410000px;}
.y6_c01365{bottom:1422.150000px;}
.y4_c01365{bottom:1423.005000px;}
.y2_c01365{bottom:1426.470000px;}
.h3_c01365{height:3.110063px;}
.h5_c01365{height:9.340986px;}
.h4_c01365{height:12.418652px;}
.h2_c01365{height:15.550313px;}
.hb_c01365{height:18.681973px;}
.h6_c01365{height:49.782598px;}
.h7_c01365{height:52.860264px;}
.ha_c01365{height:59.069590px;}
.h8_c01365{height:65.332910px;}
.h9_c01365{height:68.410576px;}
.h1_c01365{height:1513.500000px;}
.h0_c01365{height:1513.725000px;}
.w0_c01365{width:1079.130000px;}
.w1_c01365{width:1079.250000px;}
.x0_c01365{left:0.000000px;}
.xf_c01365{left:61.350000px;}
.x1_c01365{left:536.550000px;}
.x7_c01365{left:552.960000px;}
.x2_c01365{left:558.150000px;}
.x3_c01365{left:563.325000px;}
.x4_c01365{left:574.560000px;}
.x5_c01365{left:583.200000px;}
.x6_c01365{left:589.245000px;}
.x8_c01365{left:598.755000px;}
.x9_c01365{left:625.530000px;}
.xa_c01365{left:649.725000px;}
.xb_c01365{left:674.790000px;}
.xc_c01365{left:690.330000px;}
.xd_c01365{left:712.800000px;}
.xe_c01365{left:736.995000px;}
@media print{
.v0_c01365{vertical-align:0.000000pt;}
.ls0_c01365{letter-spacing:0.000000pt;}
.ws0_c01365{word-spacing:0.000000pt;}
.fs1_c01365{font-size:3.072000pt;}
.fs3_c01365{font-size:9.226667pt;}
.fs2_c01365{font-size:12.266667pt;}
.fs0_c01365{font-size:15.360000pt;}
.fs9_c01365{font-size:18.453333pt;}
.fs4_c01365{font-size:49.173333pt;}
.fs5_c01365{font-size:52.213333pt;}
.fs8_c01365{font-size:58.346667pt;}
.fs6_c01365{font-size:64.533333pt;}
.fs7_c01365{font-size:67.573333pt;}
.y0_c01365{bottom:0.000000pt;}
.yb_c01365{bottom:1145.093333pt;}
.ya_c01365{bottom:1233.413333pt;}
.y9_c01365{bottom:1236.480000pt;}
.y8_c01365{bottom:1237.253333pt;}
.y7_c01365{bottom:1238.013333pt;}
.y1_c01365{bottom:1257.213333pt;}
.y3_c01365{bottom:1259.520000pt;}
.y5_c01365{bottom:1262.586667pt;}
.y6_c01365{bottom:1264.133333pt;}
.y4_c01365{bottom:1264.893333pt;}
.y2_c01365{bottom:1267.973333pt;}
.h3_c01365{height:2.764500pt;}
.h5_c01365{height:8.303099pt;}
.h4_c01365{height:11.038802pt;}
.h2_c01365{height:13.822500pt;}
.hb_c01365{height:16.606198pt;}
.h6_c01365{height:44.251198pt;}
.h7_c01365{height:46.986901pt;}
.ha_c01365{height:52.506302pt;}
.h8_c01365{height:58.073698pt;}
.h9_c01365{height:60.809401pt;}
.h1_c01365{height:1345.333333pt;}
.h0_c01365{height:1345.533333pt;}
.w0_c01365{width:959.226667pt;}
.w1_c01365{width:959.333333pt;}
.x0_c01365{left:0.000000pt;}
.xf_c01365{left:54.533333pt;}
.x1_c01365{left:476.933333pt;}
.x7_c01365{left:491.520000pt;}
.x2_c01365{left:496.133333pt;}
.x3_c01365{left:500.733333pt;}
.x4_c01365{left:510.720000pt;}
.x5_c01365{left:518.400000pt;}
.x6_c01365{left:523.773333pt;}
.x8_c01365{left:532.226667pt;}
.x9_c01365{left:556.026667pt;}
.xa_c01365{left:577.533333pt;}
.xb_c01365{left:599.813333pt;}
.xc_c01365{left:613.626667pt;}
.xd_c01365{left:633.600000pt;}
.xe_c01365{left:655.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6c5aa88990644471f801689f.woff2')format("woff");}.ff1_c01366{font-family:ff1_c01366;line-height:1.109863;font-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_c01366{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m1_c01366{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2_c01366{transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228175,0.000000,0.000000,0.250000,0,0);}
.m3_c01366{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);}
.me_c01366{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);}
.mb_c01366{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01366{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m4_c01366{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01366{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c01366{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);}
.m5_c01366{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);}
.mc_c01366{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m9_c01366{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);}
.m8_c01366{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.md_c01366{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mf_c01366{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,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;}
.fs6_c01366{font-size:3.456000px;}
.fs8_c01366{font-size:10.380000px;}
.fs7_c01366{font-size:13.800000px;}
.fs0_c01366{font-size:48.360000px;}
.fs5_c01366{font-size:55.320000px;}
.fs3_c01366{font-size:58.740000px;}
.fs4_c01366{font-size:62.220000px;}
.fs1_c01366{font-size:65.640000px;}
.fs2_c01366{font-size:72.600000px;}
.y0_c01366{bottom:0.000000px;}
.y7_c01366{bottom:1265.760000px;}
.y8_c01366{bottom:1266.630000px;}
.y5_c01366{bottom:1376.355000px;}
.y6_c01366{bottom:1377.210000px;}
.y2_c01366{bottom:1393.635000px;}
.y3_c01366{bottom:1394.490000px;}
.y4_c01366{bottom:1395.360000px;}
.y1_c01366{bottom:1426.470000px;}
.h8_c01366{height:3.110063px;}
.ha_c01366{height:9.340986px;}
.h9_c01366{height:12.418652px;}
.h2_c01366{height:43.519277px;}
.h7_c01366{height:49.782598px;}
.h5_c01366{height:52.860264px;}
.h6_c01366{height:55.991924px;}
.h3_c01366{height:59.069590px;}
.h4_c01366{height:65.332910px;}
.h1_c01366{height:1513.500000px;}
.h0_c01366{height:1513.725000px;}
.w0_c01366{width:1083.450000px;}
.w1_c01366{width:1083.750000px;}
.x0_c01366{left:0.000000px;}
.x2_c01366{left:329.190000px;}
.x1_c01366{left:336.090000px;}
.x3_c01366{left:376.710000px;}
.x4_c01366{left:401.760000px;}
.x5_c01366{left:427.680000px;}
.x6_c01366{left:453.600000px;}
.x7_c01366{left:477.795000px;}
.x8_c01366{left:502.845000px;}
.x9_c01366{left:550.365000px;}
.xa_c01366{left:572.835000px;}
.xb_c01366{left:600.480000px;}
.xc_c01366{left:628.995000px;}
.xd_c01366{left:654.915000px;}
.xe_c01366{left:675.645000px;}
.xf_c01366{left:699.840000px;}
.x10_c01366{left:956.445000px;}
.x11_c01366{left:973.725000px;}
.x12_c01366{left:1056.675000px;}
.x13_c01366{left:1073.085000px;}
@media print{
.v0_c01366{vertical-align:0.000000pt;}
.ls0_c01366{letter-spacing:0.000000pt;}
.ws0_c01366{word-spacing:0.000000pt;}
.fs6_c01366{font-size:3.072000pt;}
.fs8_c01366{font-size:9.226667pt;}
.fs7_c01366{font-size:12.266667pt;}
.fs0_c01366{font-size:42.986667pt;}
.fs5_c01366{font-size:49.173333pt;}
.fs3_c01366{font-size:52.213333pt;}
.fs4_c01366{font-size:55.306667pt;}
.fs1_c01366{font-size:58.346667pt;}
.fs2_c01366{font-size:64.533333pt;}
.y0_c01366{bottom:0.000000pt;}
.y7_c01366{bottom:1125.120000pt;}
.y8_c01366{bottom:1125.893333pt;}
.y5_c01366{bottom:1223.426667pt;}
.y6_c01366{bottom:1224.186667pt;}
.y2_c01366{bottom:1238.786667pt;}
.y3_c01366{bottom:1239.546667pt;}
.y4_c01366{bottom:1240.320000pt;}
.y1_c01366{bottom:1267.973333pt;}
.h8_c01366{height:2.764500pt;}
.ha_c01366{height:8.303099pt;}
.h9_c01366{height:11.038802pt;}
.h2_c01366{height:38.683802pt;}
.h7_c01366{height:44.251198pt;}
.h5_c01366{height:46.986901pt;}
.h6_c01366{height:49.770599pt;}
.h3_c01366{height:52.506302pt;}
.h4_c01366{height:58.073698pt;}
.h1_c01366{height:1345.333333pt;}
.h0_c01366{height:1345.533333pt;}
.w0_c01366{width:963.066667pt;}
.w1_c01366{width:963.333333pt;}
.x0_c01366{left:0.000000pt;}
.x2_c01366{left:292.613333pt;}
.x1_c01366{left:298.746667pt;}
.x3_c01366{left:334.853333pt;}
.x4_c01366{left:357.120000pt;}
.x5_c01366{left:380.160000pt;}
.x6_c01366{left:403.200000pt;}
.x7_c01366{left:424.706667pt;}
.x8_c01366{left:446.973333pt;}
.x9_c01366{left:489.213333pt;}
.xa_c01366{left:509.186667pt;}
.xb_c01366{left:533.760000pt;}
.xc_c01366{left:559.106667pt;}
.xd_c01366{left:582.146667pt;}
.xe_c01366{left:600.573333pt;}
.xf_c01366{left:622.080000pt;}
.x10_c01366{left:850.173333pt;}
.x11_c01366{left:865.533333pt;}
.x12_c01366{left:939.266667pt;}
.x13_c01366{left:953.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_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_d58f698fc824810e928cd9b6.woff2')format("woff");}.ff1_c01367{font-family:ff1_c01367;line-height:1.109863;font-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_c01367{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);}
.m3_c01367{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m1_c01367{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c01367{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);}
.m4_c01367{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c01367{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.ma_c01367{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m0_c01367{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m8_c01367{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m9_c01367{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m2_c01367{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,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;}
.fs2_c01367{font-size:3.456000px;}
.fs4_c01367{font-size:17.280000px;}
.fs5_c01367{font-size:20.760000px;}
.fs0_c01367{font-size:51.840000px;}
.fs3_c01367{font-size:55.320000px;}
.fs1_c01367{font-size:58.740000px;}
.y0_c01367{bottom:0.000000px;}
.y8_c01367{bottom:1304.640000px;}
.y7_c01367{bottom:1318.470000px;}
.y6_c01367{bottom:1319.325000px;}
.y3_c01367{bottom:1382.400000px;}
.y5_c01367{bottom:1383.270000px;}
.y2_c01367{bottom:1384.125000px;}
.y4_c01367{bottom:1384.995000px;}
.y1_c01367{bottom:1385.850000px;}
.h4_c01367{height:3.110063px;}
.h6_c01367{height:15.550313px;}
.h7_c01367{height:18.681973px;}
.h2_c01367{height:46.650937px;}
.h5_c01367{height:49.782598px;}
.h3_c01367{height:52.860264px;}
.h1_c01367{height:1513.500000px;}
.h0_c01367{height:1513.725000px;}
.w0_c01367{width:1079.130000px;}
.w1_c01367{width:1079.250000px;}
.x0_c01367{left:0.000000px;}
.x9_c01367{left:25.920000px;}
.xa_c01367{left:37.155000px;}
.xb_c01367{left:73.440000px;}
.x1_c01367{left:374.115000px;}
.x2_c01367{left:390.525000px;}
.x3_c01367{left:413.850000px;}
.x4_c01367{left:432.870000px;}
.x5_c01367{left:454.470000px;}
.x6_c01367{left:473.475000px;}
.x7_c01367{left:489.885000px;}
.x8_c01367{left:506.310000px;}
@media print{
.v0_c01367{vertical-align:0.000000pt;}
.ls0_c01367{letter-spacing:0.000000pt;}
.ws0_c01367{word-spacing:0.000000pt;}
.fs2_c01367{font-size:3.072000pt;}
.fs4_c01367{font-size:15.360000pt;}
.fs5_c01367{font-size:18.453333pt;}
.fs0_c01367{font-size:46.080000pt;}
.fs3_c01367{font-size:49.173333pt;}
.fs1_c01367{font-size:52.213333pt;}
.y0_c01367{bottom:0.000000pt;}
.y8_c01367{bottom:1159.680000pt;}
.y7_c01367{bottom:1171.973333pt;}
.y6_c01367{bottom:1172.733333pt;}
.y3_c01367{bottom:1228.800000pt;}
.y5_c01367{bottom:1229.573333pt;}
.y2_c01367{bottom:1230.333333pt;}
.y4_c01367{bottom:1231.106667pt;}
.y1_c01367{bottom:1231.866667pt;}
.h4_c01367{height:2.764500pt;}
.h6_c01367{height:13.822500pt;}
.h7_c01367{height:16.606198pt;}
.h2_c01367{height:41.467500pt;}
.h5_c01367{height:44.251198pt;}
.h3_c01367{height:46.986901pt;}
.h1_c01367{height:1345.333333pt;}
.h0_c01367{height:1345.533333pt;}
.w0_c01367{width:959.226667pt;}
.w1_c01367{width:959.333333pt;}
.x0_c01367{left:0.000000pt;}
.x9_c01367{left:23.040000pt;}
.xa_c01367{left:33.026667pt;}
.xb_c01367{left:65.280000pt;}
.x1_c01367{left:332.546667pt;}
.x2_c01367{left:347.133333pt;}
.x3_c01367{left:367.866667pt;}
.x4_c01367{left:384.773333pt;}
.x5_c01367{left:403.973333pt;}
.x6_c01367{left:420.866667pt;}
.x7_c01367{left:435.453333pt;}
.x8_c01367{left:450.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f58fa3a4330d002b048f7e7.woff2')format("woff");}.ff1_c01368{font-family:ff1_c01368;line-height:1.109863;font-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_c01368{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m11_c01368{transform:matrix(0.048950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.048950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.048950,0.000000,0.000000,0.250000,0,0);}
.md_c01368{transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.056400,0.000000,0.000000,0.250000,0,0);}
.me_c01368{transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);}
.m7_c01368{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m0_c01368{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c01368{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);}
.m6_c01368{transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171175,0.000000,0.000000,0.250000,0,0);}
.m3_c01368{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01368{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);}
.m5_c01368{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mf_c01368{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);}
.mc_c01368{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4_c01368{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.ma_c01368{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1_c01368{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m10_c01368{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.m2_c01368{transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(4.465000,0.000000,0.000000,0.250000,0,0);}
.v0_c01368{vertical-align:0.000000px;}
.ls1_c01368{letter-spacing:0.000000px;}
.ls0_c01368{letter-spacing:136.004700px;}
.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;}
.fs8_c01368{font-size:3.456000px;}
.fsc_c01368{font-size:6.000000px;}
.fs0_c01368{font-size:6.900000px;}
.fsa_c01368{font-size:10.380000px;}
.fs2_c01368{font-size:13.800000px;}
.fs1_c01368{font-size:17.280000px;}
.fs6_c01368{font-size:20.760000px;}
.fsb_c01368{font-size:27.660000px;}
.fs7_c01368{font-size:31.080000px;}
.fs9_c01368{font-size:38.040000px;}
.fsd_c01368{font-size:51.840000px;}
.fs3_c01368{font-size:65.640000px;}
.fs5_c01368{font-size:131.340000px;}
.fse_c01368{font-size:159.000000px;}
.fs4_c01368{font-size:200.460000px;}
.y0_c01368{bottom:0.000000px;}
.y17_c01368{bottom:730.080000px;}
.y15_c01368{bottom:954.720000px;}
.y16_c01368{bottom:961.635000px;}
.y14_c01368{bottom:978.045000px;}
.ye_c01368{bottom:986.685000px;}
.yf_c01368{bottom:991.875000px;}
.y13_c01368{bottom:1029.885000px;}
.y12_c01368{bottom:1036.800000px;}
.y11_c01368{bottom:1043.715000px;}
.y10_c01368{bottom:1050.630000px;}
.yc_c01368{bottom:1141.350000px;}
.yd_c01368{bottom:1143.930000px;}
.yb_c01368{bottom:1289.085000px;}
.y9_c01368{bottom:1316.730000px;}
.ya_c01368{bottom:1319.325000px;}
.y8_c01368{bottom:1328.835000px;}
.y7_c01368{bottom:1337.475000px;}
.y6_c01368{bottom:1372.890000px;}
.y5_c01368{bottom:1378.080000px;}
.y3_c01368{bottom:1397.085000px;}
.y4_c01368{bottom:1397.955000px;}
.y1_c01368{bottom:1435.110000px;}
.y2_c01368{bottom:1435.965000px;}
.ha_c01368{height:3.110063px;}
.he_c01368{height:5.399414px;}
.h2_c01368{height:6.209326px;}
.hc_c01368{height:9.340986px;}
.h4_c01368{height:12.418652px;}
.h3_c01368{height:15.550313px;}
.h8_c01368{height:18.681973px;}
.hd_c01368{height:24.891299px;}
.h9_c01368{height:27.968965px;}
.hb_c01368{height:34.232285px;}
.hf_c01368{height:46.650937px;}
.h5_c01368{height:59.069590px;}
.h7_c01368{height:118.193174px;}
.h10_c01368{height:143.084473px;}
.h6_c01368{height:180.394424px;}
.h1_c01368{height:1513.500000px;}
.h0_c01368{height:1513.725000px;}
.w0_c01368{width:1083.450000px;}
.w1_c01368{width:1083.750000px;}
.x0_c01368{left:0.000000px;}
.x3_c01368{left:374.970000px;}
.x4_c01368{left:469.155000px;}
.x5_c01368{left:493.350000px;}
.x1_c01368{left:654.915000px;}
.x2_c01368{left:665.280000px;}
.xd_c01368{left:921.030000px;}
.x6_c01368{left:972.870000px;}
.x7_c01368{left:976.320000px;}
.x8_c01368{left:981.510000px;}
.x9_c01368{left:989.280000px;}
.xe_c01368{left:992.730000px;}
.xa_c01368{left:999.645000px;}
.xf_c01368{left:1041.120000px;}
.xb_c01368{left:1055.805000px;}
.xc_c01368{left:1074.810000px;}
@media print{
.v0_c01368{vertical-align:0.000000pt;}
.ls1_c01368{letter-spacing:0.000000pt;}
.ls0_c01368{letter-spacing:120.893067pt;}
.ws0_c01368{word-spacing:0.000000pt;}
.fs8_c01368{font-size:3.072000pt;}
.fsc_c01368{font-size:5.333333pt;}
.fs0_c01368{font-size:6.133333pt;}
.fsa_c01368{font-size:9.226667pt;}
.fs2_c01368{font-size:12.266667pt;}
.fs1_c01368{font-size:15.360000pt;}
.fs6_c01368{font-size:18.453333pt;}
.fsb_c01368{font-size:24.586667pt;}
.fs7_c01368{font-size:27.626667pt;}
.fs9_c01368{font-size:33.813333pt;}
.fsd_c01368{font-size:46.080000pt;}
.fs3_c01368{font-size:58.346667pt;}
.fs5_c01368{font-size:116.746667pt;}
.fse_c01368{font-size:141.333333pt;}
.fs4_c01368{font-size:178.186667pt;}
.y0_c01368{bottom:0.000000pt;}
.y17_c01368{bottom:648.960000pt;}
.y15_c01368{bottom:848.640000pt;}
.y16_c01368{bottom:854.786667pt;}
.y14_c01368{bottom:869.373333pt;}
.ye_c01368{bottom:877.053333pt;}
.yf_c01368{bottom:881.666667pt;}
.y13_c01368{bottom:915.453333pt;}
.y12_c01368{bottom:921.600000pt;}
.y11_c01368{bottom:927.746667pt;}
.y10_c01368{bottom:933.893333pt;}
.yc_c01368{bottom:1014.533333pt;}
.yd_c01368{bottom:1016.826667pt;}
.yb_c01368{bottom:1145.853333pt;}
.y9_c01368{bottom:1170.426667pt;}
.ya_c01368{bottom:1172.733333pt;}
.y8_c01368{bottom:1181.186667pt;}
.y7_c01368{bottom:1188.866667pt;}
.y6_c01368{bottom:1220.346667pt;}
.y5_c01368{bottom:1224.960000pt;}
.y3_c01368{bottom:1241.853333pt;}
.y4_c01368{bottom:1242.626667pt;}
.y1_c01368{bottom:1275.653333pt;}
.y2_c01368{bottom:1276.413333pt;}
.ha_c01368{height:2.764500pt;}
.he_c01368{height:4.799479pt;}
.h2_c01368{height:5.519401pt;}
.hc_c01368{height:8.303099pt;}
.h4_c01368{height:11.038802pt;}
.h3_c01368{height:13.822500pt;}
.h8_c01368{height:16.606198pt;}
.hd_c01368{height:22.125599pt;}
.h9_c01368{height:24.861302pt;}
.hb_c01368{height:30.428698pt;}
.hf_c01368{height:41.467500pt;}
.h5_c01368{height:52.506302pt;}
.h7_c01368{height:105.060599pt;}
.h10_c01368{height:127.186198pt;}
.h6_c01368{height:160.350599pt;}
.h1_c01368{height:1345.333333pt;}
.h0_c01368{height:1345.533333pt;}
.w0_c01368{width:963.066667pt;}
.w1_c01368{width:963.333333pt;}
.x0_c01368{left:0.000000pt;}
.x3_c01368{left:333.306667pt;}
.x4_c01368{left:417.026667pt;}
.x5_c01368{left:438.533333pt;}
.x1_c01368{left:582.146667pt;}
.x2_c01368{left:591.360000pt;}
.xd_c01368{left:818.693333pt;}
.x6_c01368{left:864.773333pt;}
.x7_c01368{left:867.840000pt;}
.x8_c01368{left:872.453333pt;}
.x9_c01368{left:879.360000pt;}
.xe_c01368{left:882.426667pt;}
.xa_c01368{left:888.573333pt;}
.xf_c01368{left:925.440000pt;}
.xb_c01368{left:938.493333pt;}
.xc_c01368{left:955.386667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7ada14a567bf683de0b0976c.woff2')format("woff");}.ff1_c01369{font-family:ff1_c01369;line-height:1.109863;font-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_c01369{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m9_c01369{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.ma_c01369{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m1f_c01369{transform:matrix(0.088025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088025,0.000000,0.000000,0.250000,0,0);}
.m4_c01369{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m16_c01369{transform:matrix(0.093100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093100,0.000000,0.000000,0.250000,0,0);}
.m14_c01369{transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.094500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01369{transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113625,0.000000,0.000000,0.250000,0,0);}
.m8_c01369{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m1d_c01369{transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138750,0.000000,0.000000,0.250000,0,0);}
.m0_c01369{transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140775,0.000000,0.000000,0.250000,0,0);}
.m6_c01369{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01369{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);}
.m22_c01369{transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179450,0.000000,0.000000,0.250000,0,0);}
.m1e_c01369{transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183800,0.000000,0.000000,0.250000,0,0);}
.m17_c01369{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);}
.m21_c01369{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);}
.m24_c01369{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);}
.m11_c01369{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);}
.md_c01369{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);}
.m23_c01369{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);}
.m7_c01369{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c01369{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c01369{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);}
.m1b_c01369{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m19_c01369{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mc_c01369{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);}
.m15_c01369{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5_c01369{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mf_c01369{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c01369{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m1_c01369{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m20_c01369{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m12_c01369{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m13_c01369{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m10_c01369{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.m18_c01369{transform:matrix(2.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.197500,0.000000,0.000000,0.250000,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;}
.fs9_c01369{font-size:3.456000px;}
.fs2_c01369{font-size:6.900000px;}
.fsb_c01369{font-size:10.380000px;}
.fsa_c01369{font-size:13.800000px;}
.fs1_c01369{font-size:17.280000px;}
.fsc_c01369{font-size:20.760000px;}
.fs4_c01369{font-size:24.180000px;}
.fs0_c01369{font-size:27.660000px;}
.fs3_c01369{font-size:34.560000px;}
.fs7_c01369{font-size:38.040000px;}
.fs8_c01369{font-size:41.460000px;}
.fse_c01369{font-size:44.940000px;}
.fs5_c01369{font-size:48.360000px;}
.fs6_c01369{font-size:51.840000px;}
.fsd_c01369{font-size:58.740000px;}
.fs14_c01369{font-size:62.220000px;}
.fs10_c01369{font-size:65.640000px;}
.fs11_c01369{font-size:76.020000px;}
.fs12_c01369{font-size:86.400000px;}
.fs13_c01369{font-size:89.880000px;}
.fsf_c01369{font-size:159.000000px;}
.y0_c01369{bottom:0.000000px;}
.y2a_c01369{bottom:723.165000px;}
.y28_c01369{bottom:724.890000px;}
.y29_c01369{bottom:727.485000px;}
.y1a_c01369{bottom:730.950000px;}
.y26_c01369{bottom:740.445000px;}
.y24_c01369{bottom:741.315000px;}
.y25_c01369{bottom:742.170000px;}
.y22_c01369{bottom:743.040000px;}
.y23_c01369{bottom:749.085000px;}
.y20_c01369{bottom:749.955000px;}
.y21_c01369{bottom:751.680000px;}
.y27_c01369{bottom:754.275000px;}
.y1c_c01369{bottom:761.190000px;}
.y1e_c01369{bottom:764.640000px;}
.y1d_c01369{bottom:766.365000px;}
.y1f_c01369{bottom:768.960000px;}
.y1b_c01369{bottom:771.555000px;}
.y19_c01369{bottom:804.390000px;}
.y17_c01369{bottom:823.395000px;}
.y18_c01369{bottom:825.120000px;}
.y16_c01369{bottom:832.890000px;}
.y13_c01369{bottom:835.485000px;}
.y15_c01369{bottom:838.080000px;}
.y14_c01369{bottom:838.950000px;}
.y12_c01369{bottom:881.280000px;}
.y11_c01369{bottom:909.795000px;}
.ye_c01369{bottom:953.850000px;}
.yf_c01369{bottom:959.910000px;}
.y10_c01369{bottom:962.490000px;}
.yd_c01369{bottom:1032.480000px;}
.yc_c01369{bottom:1036.800000px;}
.yb_c01369{bottom:1044.570000px;}
.ya_c01369{bottom:1086.915000px;}
.y9_c01369{bottom:1099.005000px;}
.y8_c01369{bottom:1112.835000px;}
.y7_c01369{bottom:1119.750000px;}
.y6_c01369{bottom:1252.800000px;}
.y4_c01369{bottom:1259.715000px;}
.y3_c01369{bottom:1261.440000px;}
.y5_c01369{bottom:1264.035000px;}
.y1_c01369{bottom:1288.230000px;}
.y2_c01369{bottom:1289.085000px;}
.hb_c01369{height:3.110063px;}
.h4_c01369{height:6.209326px;}
.hd_c01369{height:9.340986px;}
.hc_c01369{height:12.418652px;}
.h3_c01369{height:15.550313px;}
.he_c01369{height:18.681973px;}
.h6_c01369{height:21.759639px;}
.h2_c01369{height:24.891299px;}
.h5_c01369{height:31.100625px;}
.h9_c01369{height:34.232285px;}
.ha_c01369{height:37.309951px;}
.h10_c01369{height:40.441611px;}
.h7_c01369{height:43.519277px;}
.h8_c01369{height:46.650937px;}
.hf_c01369{height:52.860264px;}
.h16_c01369{height:55.991924px;}
.h12_c01369{height:59.069590px;}
.h13_c01369{height:68.410576px;}
.h14_c01369{height:77.751563px;}
.h15_c01369{height:80.883223px;}
.h11_c01369{height:143.084473px;}
.h1_c01369{height:1513.500000px;}
.h0_c01369{height:1513.725000px;}
.w0_c01369{width:1079.130000px;}
.w1_c01369{width:1079.250000px;}
.x0_c01369{left:0.000000px;}
.x9_c01369{left:4.320000px;}
.xa_c01369{left:76.035000px;}
.x4_c01369{left:101.085000px;}
.xe_c01369{left:111.450000px;}
.x1_c01369{left:114.045000px;}
.x5_c01369{left:123.555000px;}
.x2_c01369{left:126.150000px;}
.x6_c01369{left:129.600000px;}
.x3_c01369{left:136.515000px;}
.xf_c01369{left:149.475000px;}
.x10_c01369{left:155.520000px;}
.x7_c01369{left:177.990000px;}
.x8_c01369{left:185.760000px;}
.xd_c01369{left:194.400000px;}
.xb_c01369{left:196.125000px;}
.xc_c01369{left:202.170000px;}
.x16_c01369{left:587.520000px;}
.x17_c01369{left:604.800000px;}
.x11_c01369{left:611.715000px;}
.x18_c01369{left:622.080000px;}
.x19_c01369{left:635.040000px;}
.x1a_c01369{left:648.870000px;}
.x1b_c01369{left:662.685000px;}
.x1f_c01369{left:681.690000px;}
.x12_c01369{left:713.670000px;}
.x1c_c01369{left:717.120000px;}
.x20_c01369{left:759.450000px;}
.x13_c01369{left:770.685000px;}
.x21_c01369{left:808.710000px;}
.x14_c01369{left:819.930000px;}
.x1d_c01369{left:852.765000px;}
.x15_c01369{left:876.090000px;}
.x1e_c01369{left:878.685000px;}
@media print{
.v0_c01369{vertical-align:0.000000pt;}
.ls0_c01369{letter-spacing:0.000000pt;}
.ws0_c01369{word-spacing:0.000000pt;}
.fs9_c01369{font-size:3.072000pt;}
.fs2_c01369{font-size:6.133333pt;}
.fsb_c01369{font-size:9.226667pt;}
.fsa_c01369{font-size:12.266667pt;}
.fs1_c01369{font-size:15.360000pt;}
.fsc_c01369{font-size:18.453333pt;}
.fs4_c01369{font-size:21.493333pt;}
.fs0_c01369{font-size:24.586667pt;}
.fs3_c01369{font-size:30.720000pt;}
.fs7_c01369{font-size:33.813333pt;}
.fs8_c01369{font-size:36.853333pt;}
.fse_c01369{font-size:39.946667pt;}
.fs5_c01369{font-size:42.986667pt;}
.fs6_c01369{font-size:46.080000pt;}
.fsd_c01369{font-size:52.213333pt;}
.fs14_c01369{font-size:55.306667pt;}
.fs10_c01369{font-size:58.346667pt;}
.fs11_c01369{font-size:67.573333pt;}
.fs12_c01369{font-size:76.800000pt;}
.fs13_c01369{font-size:79.893333pt;}
.fsf_c01369{font-size:141.333333pt;}
.y0_c01369{bottom:0.000000pt;}
.y2a_c01369{bottom:642.813333pt;}
.y28_c01369{bottom:644.346667pt;}
.y29_c01369{bottom:646.653333pt;}
.y1a_c01369{bottom:649.733333pt;}
.y26_c01369{bottom:658.173333pt;}
.y24_c01369{bottom:658.946667pt;}
.y25_c01369{bottom:659.706667pt;}
.y22_c01369{bottom:660.480000pt;}
.y23_c01369{bottom:665.853333pt;}
.y20_c01369{bottom:666.626667pt;}
.y21_c01369{bottom:668.160000pt;}
.y27_c01369{bottom:670.466667pt;}
.y1c_c01369{bottom:676.613333pt;}
.y1e_c01369{bottom:679.680000pt;}
.y1d_c01369{bottom:681.213333pt;}
.y1f_c01369{bottom:683.520000pt;}
.y1b_c01369{bottom:685.826667pt;}
.y19_c01369{bottom:715.013333pt;}
.y17_c01369{bottom:731.906667pt;}
.y18_c01369{bottom:733.440000pt;}
.y16_c01369{bottom:740.346667pt;}
.y13_c01369{bottom:742.653333pt;}
.y15_c01369{bottom:744.960000pt;}
.y14_c01369{bottom:745.733333pt;}
.y12_c01369{bottom:783.360000pt;}
.y11_c01369{bottom:808.706667pt;}
.ye_c01369{bottom:847.866667pt;}
.yf_c01369{bottom:853.253333pt;}
.y10_c01369{bottom:855.546667pt;}
.yd_c01369{bottom:917.760000pt;}
.yc_c01369{bottom:921.600000pt;}
.yb_c01369{bottom:928.506667pt;}
.ya_c01369{bottom:966.146667pt;}
.y9_c01369{bottom:976.893333pt;}
.y8_c01369{bottom:989.186667pt;}
.y7_c01369{bottom:995.333333pt;}
.y6_c01369{bottom:1113.600000pt;}
.y4_c01369{bottom:1119.746667pt;}
.y3_c01369{bottom:1121.280000pt;}
.y5_c01369{bottom:1123.586667pt;}
.y1_c01369{bottom:1145.093333pt;}
.y2_c01369{bottom:1145.853333pt;}
.hb_c01369{height:2.764500pt;}
.h4_c01369{height:5.519401pt;}
.hd_c01369{height:8.303099pt;}
.hc_c01369{height:11.038802pt;}
.h3_c01369{height:13.822500pt;}
.he_c01369{height:16.606198pt;}
.h6_c01369{height:19.341901pt;}
.h2_c01369{height:22.125599pt;}
.h5_c01369{height:27.645000pt;}
.h9_c01369{height:30.428698pt;}
.ha_c01369{height:33.164401pt;}
.h10_c01369{height:35.948099pt;}
.h7_c01369{height:38.683802pt;}
.h8_c01369{height:41.467500pt;}
.hf_c01369{height:46.986901pt;}
.h16_c01369{height:49.770599pt;}
.h12_c01369{height:52.506302pt;}
.h13_c01369{height:60.809401pt;}
.h14_c01369{height:69.112500pt;}
.h15_c01369{height:71.896198pt;}
.h11_c01369{height:127.186198pt;}
.h1_c01369{height:1345.333333pt;}
.h0_c01369{height:1345.533333pt;}
.w0_c01369{width:959.226667pt;}
.w1_c01369{width:959.333333pt;}
.x0_c01369{left:0.000000pt;}
.x9_c01369{left:3.840000pt;}
.xa_c01369{left:67.586667pt;}
.x4_c01369{left:89.853333pt;}
.xe_c01369{left:99.066667pt;}
.x1_c01369{left:101.373333pt;}
.x5_c01369{left:109.826667pt;}
.x2_c01369{left:112.133333pt;}
.x6_c01369{left:115.200000pt;}
.x3_c01369{left:121.346667pt;}
.xf_c01369{left:132.866667pt;}
.x10_c01369{left:138.240000pt;}
.x7_c01369{left:158.213333pt;}
.x8_c01369{left:165.120000pt;}
.xd_c01369{left:172.800000pt;}
.xb_c01369{left:174.333333pt;}
.xc_c01369{left:179.706667pt;}
.x16_c01369{left:522.240000pt;}
.x17_c01369{left:537.600000pt;}
.x11_c01369{left:543.746667pt;}
.x18_c01369{left:552.960000pt;}
.x19_c01369{left:564.480000pt;}
.x1a_c01369{left:576.773333pt;}
.x1b_c01369{left:589.053333pt;}
.x1f_c01369{left:605.946667pt;}
.x12_c01369{left:634.373333pt;}
.x1c_c01369{left:637.440000pt;}
.x20_c01369{left:675.066667pt;}
.x13_c01369{left:685.053333pt;}
.x21_c01369{left:718.853333pt;}
.x14_c01369{left:728.826667pt;}
.x1d_c01369{left:758.013333pt;}
.x15_c01369{left:778.746667pt;}
.x1e_c01369{left:781.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_28389f161a71b6dd51e147c2.woff2')format("woff");}.ff1_c01370{font-family:ff1_c01370;line-height:1.109863;font-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_c01370{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m51_c01370{transform:matrix(0.034050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.034050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.034050,0.000000,0.000000,0.250000,0,0);}
.m4f_c01370{transform:matrix(0.035400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035400,0.000000,0.000000,0.250000,0,0);}
.m4e_c01370{transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);}
.m74_c01370{transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.053100,0.000000,0.000000,0.250000,0,0);}
.m64_c01370{transform:matrix(0.054375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054375,0.000000,0.000000,0.250000,0,0);}
.m4c_c01370{transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058225,0.000000,0.000000,0.250000,0,0);}
.m39_c01370{transform:matrix(0.066350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066350,0.000000,0.000000,0.250000,0,0);}
.m1b_c01370{transform:matrix(0.085175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.085175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.085175,0.000000,0.000000,0.250000,0,0);}
.m4d_c01370{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.mc_c01370{transform:matrix(0.093050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093050,0.000000,0.000000,0.250000,0,0);}
.m38_c01370{transform:matrix(0.103775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103775,0.000000,0.000000,0.250000,0,0);}
.m45_c01370{transform:matrix(0.106525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106525,0.000000,0.000000,0.250000,0,0);}
.m1c_c01370{transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113550,0.000000,0.000000,0.250000,0,0);}
.m32_c01370{transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123750,0.000000,0.000000,0.250000,0,0);}
.m3c_c01370{transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124000,0.000000,0.000000,0.250000,0,0);}
.m4b_c01370{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);}
.m5e_c01370{transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130375,0.000000,0.000000,0.250000,0,0);}
.md_c01370{transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133100,0.000000,0.000000,0.250000,0,0);}
.m30_c01370{transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135350,0.000000,0.000000,0.250000,0,0);}
.m29_c01370{transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138175,0.000000,0.000000,0.250000,0,0);}
.m19_c01370{transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139600,0.000000,0.000000,0.250000,0,0);}
.m61_c01370{transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139675,0.000000,0.000000,0.250000,0,0);}
.m18_c01370{transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140000,0.000000,0.000000,0.250000,0,0);}
.m5d_c01370{transform:matrix(0.142725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142725,0.000000,0.000000,0.250000,0,0);}
.m40_c01370{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.m4_c01370{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m50_c01370{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);}
.m76_c01370{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m62_c01370{transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151000,0.000000,0.000000,0.250000,0,0);}
.m33_c01370{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);}
.m3_c01370{transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153925,0.000000,0.000000,0.250000,0,0);}
.m37_c01370{transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155250,0.000000,0.000000,0.250000,0,0);}
.m59_c01370{transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155750,0.000000,0.000000,0.250000,0,0);}
.m66_c01370{transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156025,0.000000,0.000000,0.250000,0,0);}
.m22_c01370{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.m47_c01370{transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157825,0.000000,0.000000,0.250000,0,0);}
.m2a_c01370{transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160700,0.000000,0.000000,0.250000,0,0);}
.m31_c01370{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);}
.m2_c01370{transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170050,0.000000,0.000000,0.250000,0,0);}
.m3d_c01370{transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171525,0.000000,0.000000,0.250000,0,0);}
.m1e_c01370{transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171875,0.000000,0.000000,0.250000,0,0);}
.m14_c01370{transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173425,0.000000,0.000000,0.250000,0,0);}
.m41_c01370{transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179825,0.000000,0.000000,0.250000,0,0);}
.m1d_c01370{transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181125,0.000000,0.000000,0.250000,0,0);}
.m75_c01370{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);}
.m6a_c01370{transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184275,0.000000,0.000000,0.250000,0,0);}
.m73_c01370{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);}
.m6f_c01370{transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184975,0.000000,0.000000,0.250000,0,0);}
.m23_c01370{transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186425,0.000000,0.000000,0.250000,0,0);}
.m6c_c01370{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);}
.m2e_c01370{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.m6b_c01370{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.m27_c01370{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);}
.m24_c01370{transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191775,0.000000,0.000000,0.250000,0,0);}
.m4a_c01370{transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193700,0.000000,0.000000,0.250000,0,0);}
.ma_c01370{transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196825,0.000000,0.000000,0.250000,0,0);}
.m69_c01370{transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01370{transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200075,0.000000,0.000000,0.250000,0,0);}
.m60_c01370{transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200525,0.000000,0.000000,0.250000,0,0);}
.m1_c01370{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.m70_c01370{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);}
.m10_c01370{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);}
.m1f_c01370{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);}
.m42_c01370{transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215400,0.000000,0.000000,0.250000,0,0);}
.m6_c01370{transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215850,0.000000,0.000000,0.250000,0,0);}
.m2d_c01370{transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219450,0.000000,0.000000,0.250000,0,0);}
.m57_c01370{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);}
.m5c_c01370{transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220600,0.000000,0.000000,0.250000,0,0);}
.m46_c01370{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);}
.m13_c01370{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);}
.m71_c01370{transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221825,0.000000,0.000000,0.250000,0,0);}
.m3a_c01370{transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224175,0.000000,0.000000,0.250000,0,0);}
.m0_c01370{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);}
.m49_c01370{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);}
.m6d_c01370{transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227600,0.000000,0.000000,0.250000,0,0);}
.m48_c01370{transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.228750,0.000000,0.000000,0.250000,0,0);}
.m34_c01370{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);}
.m35_c01370{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);}
.m2c_c01370{transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235100,0.000000,0.000000,0.250000,0,0);}
.m2b_c01370{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.m1a_c01370{transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241650,0.000000,0.000000,0.250000,0,0);}
.m67_c01370{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.me_c01370{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);}
.m3e_c01370{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c01370{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);}
.m25_c01370{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m3b_c01370{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);}
.m21_c01370{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);}
.m43_c01370{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01370{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m44_c01370{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);}
.m36_c01370{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m7_c01370{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c01370{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01370{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m58_c01370{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01370{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c01370{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);}
.m63_c01370{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m68_c01370{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m53_c01370{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);}
.m26_c01370{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);}
.m11_c01370{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m65_c01370{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m16_c01370{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m9_c01370{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m12_c01370{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m15_c01370{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3f_c01370{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m55_c01370{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);}
.m20_c01370{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);}
.mf_c01370{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m72_c01370{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m28_c01370{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m56_c01370{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m54_c01370{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m52_c01370{transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.980000,0.000000,0.000000,0.250000,0,0);}
.m6e_c01370{transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.230000,0.000000,0.000000,0.250000,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:3.456000px;}
.fsb_c01370{font-size:6.000000px;}
.fs17_c01370{font-size:6.900000px;}
.fs18_c01370{font-size:10.380000px;}
.fs16_c01370{font-size:13.800000px;}
.fs27_c01370{font-size:17.280000px;}
.fs1c_c01370{font-size:20.760000px;}
.fs2a_c01370{font-size:24.180000px;}
.fs1f_c01370{font-size:27.660000px;}
.fs29_c01370{font-size:34.560000px;}
.fs10_c01370{font-size:38.040000px;}
.fsf_c01370{font-size:41.460000px;}
.fse_c01370{font-size:44.940000px;}
.fs22_c01370{font-size:48.360000px;}
.fs1b_c01370{font-size:51.840000px;}
.fs1d_c01370{font-size:55.320000px;}
.fsa_c01370{font-size:58.740000px;}
.fs28_c01370{font-size:62.220000px;}
.fs9_c01370{font-size:65.640000px;}
.fs5_c01370{font-size:69.120000px;}
.fs21_c01370{font-size:72.600000px;}
.fs19_c01370{font-size:76.020000px;}
.fs1e_c01370{font-size:79.500000px;}
.fs7_c01370{font-size:82.920000px;}
.fs12_c01370{font-size:86.400000px;}
.fs11_c01370{font-size:89.880000px;}
.fs1a_c01370{font-size:93.300000px;}
.fsd_c01370{font-size:96.780000px;}
.fs8_c01370{font-size:100.200000px;}
.fs6_c01370{font-size:103.680000px;}
.fs23_c01370{font-size:107.160000px;}
.fs15_c01370{font-size:110.580000px;}
.fs13_c01370{font-size:114.060000px;}
.fs20_c01370{font-size:117.480000px;}
.fsc_c01370{font-size:120.960000px;}
.fs14_c01370{font-size:127.860000px;}
.fs0_c01370{font-size:134.760000px;}
.fs1_c01370{font-size:138.240000px;}
.fs24_c01370{font-size:148.620000px;}
.fs3_c01370{font-size:165.900000px;}
.fs2_c01370{font-size:172.800000px;}
.fs25_c01370{font-size:176.280000px;}
.fs26_c01370{font-size:183.180000px;}
.y0_c01370{bottom:0.000000px;}
.y65_c01370{bottom:720.570000px;}
.y66_c01370{bottom:721.440000px;}
.y67_c01370{bottom:722.310000px;}
.y61_c01370{bottom:740.445000px;}
.y60_c01370{bottom:741.315000px;}
.y5f_c01370{bottom:742.170000px;}
.y62_c01370{bottom:743.040000px;}
.y64_c01370{bottom:745.635000px;}
.y63_c01370{bottom:751.680000px;}
.y5d_c01370{bottom:761.190000px;}
.y5c_c01370{bottom:762.045000px;}
.y5b_c01370{bottom:762.915000px;}
.y5a_c01370{bottom:767.235000px;}
.y5e_c01370{bottom:775.875000px;}
.y58_c01370{bottom:781.920000px;}
.y59_c01370{bottom:782.790000px;}
.y57_c01370{bottom:785.370000px;}
.y56_c01370{bottom:787.965000px;}
.y54_c01370{bottom:796.605000px;}
.y53_c01370{bottom:799.200000px;}
.y52_c01370{bottom:800.070000px;}
.y55_c01370{bottom:809.565000px;}
.y51_c01370{bottom:814.755000px;}
.y4c_c01370{bottom:819.930000px;}
.y50_c01370{bottom:825.120000px;}
.y4f_c01370{bottom:826.845000px;}
.y4e_c01370{bottom:827.715000px;}
.y4d_c01370{bottom:838.950000px;}
.y3e_c01370{bottom:870.045000px;}
.y3d_c01370{bottom:897.690000px;}
.y3a_c01370{bottom:902.010000px;}
.y3c_c01370{bottom:902.880000px;}
.y3b_c01370{bottom:908.070000px;}
.y32_c01370{bottom:924.480000px;}
.y36_c01370{bottom:926.205000px;}
.y34_c01370{bottom:927.930000px;}
.y31_c01370{bottom:928.800000px;}
.y33_c01370{bottom:929.670000px;}
.y35_c01370{bottom:939.165000px;}
.y38_c01370{bottom:940.890000px;}
.y37_c01370{bottom:944.355000px;}
.y39_c01370{bottom:946.950000px;}
.y2d_c01370{bottom:948.675000px;}
.y30_c01370{bottom:949.530000px;}
.y2e_c01370{bottom:951.270000px;}
.y2b_c01370{bottom:953.850000px;}
.y2a_c01370{bottom:954.720000px;}
.y2c_c01370{bottom:959.040000px;}
.y2f_c01370{bottom:961.635000px;}
.y29_c01370{bottom:972.870000px;}
.y26_c01370{bottom:973.725000px;}
.y23_c01370{bottom:974.595000px;}
.y24_c01370{bottom:975.450000px;}
.y20_c01370{bottom:976.320000px;}
.y28_c01370{bottom:977.190000px;}
.y25_c01370{bottom:980.640000px;}
.y27_c01370{bottom:984.960000px;}
.y21_c01370{bottom:993.600000px;}
.y22_c01370{bottom:997.050000px;}
.y1c_c01370{bottom:998.790000px;}
.y18_c01370{bottom:999.645000px;}
.y1b_c01370{bottom:1000.515000px;}
.y1f_c01370{bottom:1002.240000px;}
.y1d_c01370{bottom:1004.835000px;}
.y1a_c01370{bottom:1008.285000px;}
.y19_c01370{bottom:1016.070000px;}
.y1e_c01370{bottom:1019.520000px;}
.yb_c01370{bottom:1022.115000px;}
.y12_c01370{bottom:1022.970000px;}
.ya_c01370{bottom:1023.840000px;}
.ye_c01370{bottom:1024.710000px;}
.y11_c01370{bottom:1025.565000px;}
.y15_c01370{bottom:1026.435000px;}
.y14_c01370{bottom:1027.290000px;}
.y13_c01370{bottom:1035.075000px;}
.yc_c01370{bottom:1035.930000px;}
.yd_c01370{bottom:1036.800000px;}
.y10_c01370{bottom:1037.670000px;}
.yf_c01370{bottom:1038.525000px;}
.y9_c01370{bottom:1041.990000px;}
.y17_c01370{bottom:1042.845000px;}
.y16_c01370{bottom:1051.485000px;}
.y7_c01370{bottom:1054.950000px;}
.y6_c01370{bottom:1055.805000px;}
.y5_c01370{bottom:1060.125000px;}
.y8_c01370{bottom:1064.445000px;}
.y3_c01370{bottom:1080.870000px;}
.y2_c01370{bottom:1081.725000px;}
.y4_c01370{bottom:1120.605000px;}
.y1_c01370{bottom:1123.200000px;}
.y4b_c01370{bottom:1141.350000px;}
.y4a_c01370{bottom:1145.670000px;}
.y46_c01370{bottom:1166.400000px;}
.y49_c01370{bottom:1179.360000px;}
.y48_c01370{bottom:1184.550000px;}
.y47_c01370{bottom:1197.510000px;}
.y44_c01370{bottom:1214.790000px;}
.y45_c01370{bottom:1215.645000px;}
.y43_c01370{bottom:1264.035000px;}
.y42_c01370{bottom:1264.890000px;}
.y40_c01370{bottom:1321.920000px;}
.y41_c01370{bottom:1329.690000px;}
.y3f_c01370{bottom:1344.390000px;}
.h6_c01370{height:3.110063px;}
.hd_c01370{height:5.399414px;}
.h19_c01370{height:6.209326px;}
.h1a_c01370{height:9.340986px;}
.h18_c01370{height:12.418652px;}
.h29_c01370{height:15.550313px;}
.h1e_c01370{height:18.681973px;}
.h2c_c01370{height:21.759639px;}
.h21_c01370{height:24.891299px;}
.h2b_c01370{height:31.100625px;}
.h12_c01370{height:34.232285px;}
.h11_c01370{height:37.309951px;}
.h10_c01370{height:40.441611px;}
.h24_c01370{height:43.519277px;}
.h1d_c01370{height:46.650937px;}
.h1f_c01370{height:49.782598px;}
.hc_c01370{height:52.860264px;}
.h2a_c01370{height:55.991924px;}
.hb_c01370{height:59.069590px;}
.h7_c01370{height:62.201250px;}
.h23_c01370{height:65.332910px;}
.h1b_c01370{height:68.410576px;}
.h20_c01370{height:71.542236px;}
.h9_c01370{height:74.619902px;}
.h14_c01370{height:77.751563px;}
.h13_c01370{height:80.883223px;}
.h1c_c01370{height:83.960889px;}
.hf_c01370{height:87.092549px;}
.ha_c01370{height:90.170215px;}
.h8_c01370{height:93.301875px;}
.h25_c01370{height:96.433535px;}
.h17_c01370{height:99.511201px;}
.h15_c01370{height:102.642861px;}
.h22_c01370{height:105.720527px;}
.he_c01370{height:108.852188px;}
.h16_c01370{height:115.061514px;}
.h2_c01370{height:121.270840px;}
.h3_c01370{height:124.402500px;}
.h26_c01370{height:133.743486px;}
.h5_c01370{height:149.293799px;}
.h4_c01370{height:155.503125px;}
.h27_c01370{height:158.634785px;}
.h28_c01370{height:164.844111px;}
.h1_c01370{height:1513.500000px;}
.h0_c01370{height:1513.725000px;}
.w0_c01370{width:1083.450000px;}
.w1_c01370{width:1083.750000px;}
.x0_c01370{left:0.000000px;}
.x3_c01370{left:197.850000px;}
.x6_c01370{left:209.955000px;}
.x36_c01370{left:213.405000px;}
.x1_c01370{left:220.320000px;}
.x2b_c01370{left:222.915000px;}
.x21_c01370{left:224.640000px;}
.x2c_c01370{left:229.830000px;}
.x22_c01370{left:235.005000px;}
.x2d_c01370{left:236.729904px;}
.xb_c01370{left:241.050000px;}
.x23_c01370{left:245.370000px;}
.x37_c01370{left:247.110000px;}
.x3f_c01370{left:248.835000px;}
.x53_c01370{left:272.160000px;}
.xc_c01370{left:274.755000px;}
.x46_c01370{left:283.395000px;}
.x40_c01370{left:296.355000px;}
.xd_c01370{left:301.530000px;}
.xe_c01370{left:315.360000px;}
.x24_c01370{left:322.275000px;}
.xf_c01370{left:324.870000px;}
.x10_c01370{left:334.365000px;}
.x7_c01370{left:341.280000px;}
.x5d_c01370{left:343.875000px;}
.x54_c01370{left:348.195000px;}
.x11_c01370{left:349.920000px;}
.x38_c01370{left:352.515000px;}
.x12_c01370{left:365.475000px;}
.x55_c01370{left:371.520000px;}
.x13_c01370{left:380.160000px;}
.x61_c01370{left:381.885000px;}
.x65_c01370{left:383.610000px;}
.x56_c01370{left:387.075000px;}
.x14_c01370{left:393.120000px;}
.x39_c01370{left:394.845000px;}
.x2e_c01370{left:400.035000px;}
.x15_c01370{left:401.760000px;}
.x47_c01370{left:405.210000px;}
.x48_c01370{left:412.125000px;}
.x5e_c01370{left:416.445000px;}
.x57_c01370{left:419.040000px;}
.x41_c01370{left:422.490000px;}
.x3a_c01370{left:424.230000px;}
.x16_c01370{left:435.450000px;}
.x58_c01370{left:437.190000px;}
.x62_c01370{left:439.770000px;}
.x68_c01370{left:441.510000px;}
.x60_c01370{left:444.960000px;}
.x63_c01370{left:457.920000px;}
.x3b_c01370{left:461.370000px;}
.x17_c01370{left:465.690000px;}
.x59_c01370{left:467.430000px;}
.x42_c01370{left:473.475000px;}
.x25_c01370{left:475.200000px;}
.x66_c01370{left:476.925000px;}
.x18_c01370{left:482.115000px;}
.x2f_c01370{left:484.710000px;}
.x67_c01370{left:492.480000px;}
.x69_c01370{left:498.525000px;}
.x19_c01370{left:510.630000px;}
.x4_c01370{left:513.210000px;}
.x64_c01370{left:526.170000px;}
.x2_c01370{left:528.765000px;}
.x5a_c01370{left:531.360000px;}
.x1a_c01370{left:540.000000px;}
.x5f_c01370{left:545.190000px;}
.x1b_c01370{left:551.235000px;}
.x30_c01370{left:552.960000px;}
.x3c_c01370{left:554.685000px;}
.x43_c01370{left:556.410000px;}
.x5b_c01370{left:561.600000px;}
.x5c_c01370{left:575.430000px;}
.x26_c01370{left:580.605000px;}
.x27_c01370{left:590.115000px;}
.x8_c01370{left:615.165000px;}
.x3d_c01370{left:617.760000px;}
.x28_c01370{left:647.130000px;}
.x31_c01370{left:660.090000px;}
.x1c_c01370{left:665.280000px;}
.x32_c01370{left:705.030000px;}
.x33_c01370{left:711.075000px;}
.x9_c01370{left:742.170000px;}
.x44_c01370{left:752.550000px;}
.x34_c01370{left:755.130000px;}
.x29_c01370{left:764.640000px;}
.x1d_c01370{left:780.195000px;}
.x3e_c01370{left:788.835000px;}
.x2a_c01370{left:794.880000px;}
.x1e_c01370{left:805.245000px;}
.x35_c01370{left:810.435000px;}
.x45_c01370{left:854.490000px;}
.x1f_c01370{left:864.000000px;}
.x5_c01370{left:869.190000px;}
.x20_c01370{left:875.235000px;}
.xa_c01370{left:885.600000px;}
.x49_c01370{left:974.595000px;}
.x4d_c01370{left:977.190000px;}
.x4a_c01370{left:986.685000px;}
.x4f_c01370{left:993.600000px;}
.x50_c01370{left:1013.475000px;}
.x51_c01370{left:1018.650000px;}
.x52_c01370{left:1045.440000px;}
.x4b_c01370{left:1049.760000px;}
.x4c_c01370{left:1057.530000px;}
.x4e_c01370{left:1077.405000px;}
@media print{
.v0_c01370{vertical-align:0.000000pt;}
.ls0_c01370{letter-spacing:0.000000pt;}
.ws0_c01370{word-spacing:0.000000pt;}
.fs4_c01370{font-size:3.072000pt;}
.fsb_c01370{font-size:5.333333pt;}
.fs17_c01370{font-size:6.133333pt;}
.fs18_c01370{font-size:9.226667pt;}
.fs16_c01370{font-size:12.266667pt;}
.fs27_c01370{font-size:15.360000pt;}
.fs1c_c01370{font-size:18.453333pt;}
.fs2a_c01370{font-size:21.493333pt;}
.fs1f_c01370{font-size:24.586667pt;}
.fs29_c01370{font-size:30.720000pt;}
.fs10_c01370{font-size:33.813333pt;}
.fsf_c01370{font-size:36.853333pt;}
.fse_c01370{font-size:39.946667pt;}
.fs22_c01370{font-size:42.986667pt;}
.fs1b_c01370{font-size:46.080000pt;}
.fs1d_c01370{font-size:49.173333pt;}
.fsa_c01370{font-size:52.213333pt;}
.fs28_c01370{font-size:55.306667pt;}
.fs9_c01370{font-size:58.346667pt;}
.fs5_c01370{font-size:61.440000pt;}
.fs21_c01370{font-size:64.533333pt;}
.fs19_c01370{font-size:67.573333pt;}
.fs1e_c01370{font-size:70.666667pt;}
.fs7_c01370{font-size:73.706667pt;}
.fs12_c01370{font-size:76.800000pt;}
.fs11_c01370{font-size:79.893333pt;}
.fs1a_c01370{font-size:82.933333pt;}
.fsd_c01370{font-size:86.026667pt;}
.fs8_c01370{font-size:89.066667pt;}
.fs6_c01370{font-size:92.160000pt;}
.fs23_c01370{font-size:95.253333pt;}
.fs15_c01370{font-size:98.293333pt;}
.fs13_c01370{font-size:101.386667pt;}
.fs20_c01370{font-size:104.426667pt;}
.fsc_c01370{font-size:107.520000pt;}
.fs14_c01370{font-size:113.653333pt;}
.fs0_c01370{font-size:119.786667pt;}
.fs1_c01370{font-size:122.880000pt;}
.fs24_c01370{font-size:132.106667pt;}
.fs3_c01370{font-size:147.466667pt;}
.fs2_c01370{font-size:153.600000pt;}
.fs25_c01370{font-size:156.693333pt;}
.fs26_c01370{font-size:162.826667pt;}
.y0_c01370{bottom:0.000000pt;}
.y65_c01370{bottom:640.506667pt;}
.y66_c01370{bottom:641.280000pt;}
.y67_c01370{bottom:642.053333pt;}
.y61_c01370{bottom:658.173333pt;}
.y60_c01370{bottom:658.946667pt;}
.y5f_c01370{bottom:659.706667pt;}
.y62_c01370{bottom:660.480000pt;}
.y64_c01370{bottom:662.786667pt;}
.y63_c01370{bottom:668.160000pt;}
.y5d_c01370{bottom:676.613333pt;}
.y5c_c01370{bottom:677.373333pt;}
.y5b_c01370{bottom:678.146667pt;}
.y5a_c01370{bottom:681.986667pt;}
.y5e_c01370{bottom:689.666667pt;}
.y58_c01370{bottom:695.040000pt;}
.y59_c01370{bottom:695.813333pt;}
.y57_c01370{bottom:698.106667pt;}
.y56_c01370{bottom:700.413333pt;}
.y54_c01370{bottom:708.093333pt;}
.y53_c01370{bottom:710.400000pt;}
.y52_c01370{bottom:711.173333pt;}
.y55_c01370{bottom:719.613333pt;}
.y51_c01370{bottom:724.226667pt;}
.y4c_c01370{bottom:728.826667pt;}
.y50_c01370{bottom:733.440000pt;}
.y4f_c01370{bottom:734.973333pt;}
.y4e_c01370{bottom:735.746667pt;}
.y4d_c01370{bottom:745.733333pt;}
.y3e_c01370{bottom:773.373333pt;}
.y3d_c01370{bottom:797.946667pt;}
.y3a_c01370{bottom:801.786667pt;}
.y3c_c01370{bottom:802.560000pt;}
.y3b_c01370{bottom:807.173333pt;}
.y32_c01370{bottom:821.760000pt;}
.y36_c01370{bottom:823.293333pt;}
.y34_c01370{bottom:824.826667pt;}
.y31_c01370{bottom:825.600000pt;}
.y33_c01370{bottom:826.373333pt;}
.y35_c01370{bottom:834.813333pt;}
.y38_c01370{bottom:836.346667pt;}
.y37_c01370{bottom:839.426667pt;}
.y39_c01370{bottom:841.733333pt;}
.y2d_c01370{bottom:843.266667pt;}
.y30_c01370{bottom:844.026667pt;}
.y2e_c01370{bottom:845.573333pt;}
.y2b_c01370{bottom:847.866667pt;}
.y2a_c01370{bottom:848.640000pt;}
.y2c_c01370{bottom:852.480000pt;}
.y2f_c01370{bottom:854.786667pt;}
.y29_c01370{bottom:864.773333pt;}
.y26_c01370{bottom:865.533333pt;}
.y23_c01370{bottom:866.306667pt;}
.y24_c01370{bottom:867.066667pt;}
.y20_c01370{bottom:867.840000pt;}
.y28_c01370{bottom:868.613333pt;}
.y25_c01370{bottom:871.680000pt;}
.y27_c01370{bottom:875.520000pt;}
.y21_c01370{bottom:883.200000pt;}
.y22_c01370{bottom:886.266667pt;}
.y1c_c01370{bottom:887.813333pt;}
.y18_c01370{bottom:888.573333pt;}
.y1b_c01370{bottom:889.346667pt;}
.y1f_c01370{bottom:890.880000pt;}
.y1d_c01370{bottom:893.186667pt;}
.y1a_c01370{bottom:896.253333pt;}
.y19_c01370{bottom:903.173333pt;}
.y1e_c01370{bottom:906.240000pt;}
.yb_c01370{bottom:908.546667pt;}
.y12_c01370{bottom:909.306667pt;}
.ya_c01370{bottom:910.080000pt;}
.ye_c01370{bottom:910.853333pt;}
.y11_c01370{bottom:911.613333pt;}
.y15_c01370{bottom:912.386667pt;}
.y14_c01370{bottom:913.146667pt;}
.y13_c01370{bottom:920.066667pt;}
.yc_c01370{bottom:920.826667pt;}
.yd_c01370{bottom:921.600000pt;}
.y10_c01370{bottom:922.373333pt;}
.yf_c01370{bottom:923.133333pt;}
.y9_c01370{bottom:926.213333pt;}
.y17_c01370{bottom:926.973333pt;}
.y16_c01370{bottom:934.653333pt;}
.y7_c01370{bottom:937.733333pt;}
.y6_c01370{bottom:938.493333pt;}
.y5_c01370{bottom:942.333333pt;}
.y8_c01370{bottom:946.173333pt;}
.y3_c01370{bottom:960.773333pt;}
.y2_c01370{bottom:961.533333pt;}
.y4_c01370{bottom:996.093333pt;}
.y1_c01370{bottom:998.400000pt;}
.y4b_c01370{bottom:1014.533333pt;}
.y4a_c01370{bottom:1018.373333pt;}
.y46_c01370{bottom:1036.800000pt;}
.y49_c01370{bottom:1048.320000pt;}
.y48_c01370{bottom:1052.933333pt;}
.y47_c01370{bottom:1064.453333pt;}
.y44_c01370{bottom:1079.813333pt;}
.y45_c01370{bottom:1080.573333pt;}
.y43_c01370{bottom:1123.586667pt;}
.y42_c01370{bottom:1124.346667pt;}
.y40_c01370{bottom:1175.040000pt;}
.y41_c01370{bottom:1181.946667pt;}
.y3f_c01370{bottom:1195.013333pt;}
.h6_c01370{height:2.764500pt;}
.hd_c01370{height:4.799479pt;}
.h19_c01370{height:5.519401pt;}
.h1a_c01370{height:8.303099pt;}
.h18_c01370{height:11.038802pt;}
.h29_c01370{height:13.822500pt;}
.h1e_c01370{height:16.606198pt;}
.h2c_c01370{height:19.341901pt;}
.h21_c01370{height:22.125599pt;}
.h2b_c01370{height:27.645000pt;}
.h12_c01370{height:30.428698pt;}
.h11_c01370{height:33.164401pt;}
.h10_c01370{height:35.948099pt;}
.h24_c01370{height:38.683802pt;}
.h1d_c01370{height:41.467500pt;}
.h1f_c01370{height:44.251198pt;}
.hc_c01370{height:46.986901pt;}
.h2a_c01370{height:49.770599pt;}
.hb_c01370{height:52.506302pt;}
.h7_c01370{height:55.290000pt;}
.h23_c01370{height:58.073698pt;}
.h1b_c01370{height:60.809401pt;}
.h20_c01370{height:63.593099pt;}
.h9_c01370{height:66.328802pt;}
.h14_c01370{height:69.112500pt;}
.h13_c01370{height:71.896198pt;}
.h1c_c01370{height:74.631901pt;}
.hf_c01370{height:77.415599pt;}
.ha_c01370{height:80.151302pt;}
.h8_c01370{height:82.935000pt;}
.h25_c01370{height:85.718698pt;}
.h17_c01370{height:88.454401pt;}
.h15_c01370{height:91.238099pt;}
.h22_c01370{height:93.973802pt;}
.he_c01370{height:96.757500pt;}
.h16_c01370{height:102.276901pt;}
.h2_c01370{height:107.796302pt;}
.h3_c01370{height:110.580000pt;}
.h26_c01370{height:118.883099pt;}
.h5_c01370{height:132.705599pt;}
.h4_c01370{height:138.225000pt;}
.h27_c01370{height:141.008698pt;}
.h28_c01370{height:146.528099pt;}
.h1_c01370{height:1345.333333pt;}
.h0_c01370{height:1345.533333pt;}
.w0_c01370{width:963.066667pt;}
.w1_c01370{width:963.333333pt;}
.x0_c01370{left:0.000000pt;}
.x3_c01370{left:175.866667pt;}
.x6_c01370{left:186.626667pt;}
.x36_c01370{left:189.693333pt;}
.x1_c01370{left:195.840000pt;}
.x2b_c01370{left:198.146667pt;}
.x21_c01370{left:199.680000pt;}
.x2c_c01370{left:204.293333pt;}
.x22_c01370{left:208.893333pt;}
.x2d_c01370{left:210.426581pt;}
.xb_c01370{left:214.266667pt;}
.x23_c01370{left:218.106667pt;}
.x37_c01370{left:219.653333pt;}
.x3f_c01370{left:221.186667pt;}
.x53_c01370{left:241.920000pt;}
.xc_c01370{left:244.226667pt;}
.x46_c01370{left:251.906667pt;}
.x40_c01370{left:263.426667pt;}
.xd_c01370{left:268.026667pt;}
.xe_c01370{left:280.320000pt;}
.x24_c01370{left:286.466667pt;}
.xf_c01370{left:288.773333pt;}
.x10_c01370{left:297.213333pt;}
.x7_c01370{left:303.360000pt;}
.x5d_c01370{left:305.666667pt;}
.x54_c01370{left:309.506667pt;}
.x11_c01370{left:311.040000pt;}
.x38_c01370{left:313.346667pt;}
.x12_c01370{left:324.866667pt;}
.x55_c01370{left:330.240000pt;}
.x13_c01370{left:337.920000pt;}
.x61_c01370{left:339.453333pt;}
.x65_c01370{left:340.986667pt;}
.x56_c01370{left:344.066667pt;}
.x14_c01370{left:349.440000pt;}
.x39_c01370{left:350.973333pt;}
.x2e_c01370{left:355.586667pt;}
.x15_c01370{left:357.120000pt;}
.x47_c01370{left:360.186667pt;}
.x48_c01370{left:366.333333pt;}
.x5e_c01370{left:370.173333pt;}
.x57_c01370{left:372.480000pt;}
.x41_c01370{left:375.546667pt;}
.x3a_c01370{left:377.093333pt;}
.x16_c01370{left:387.066667pt;}
.x58_c01370{left:388.613333pt;}
.x62_c01370{left:390.906667pt;}
.x68_c01370{left:392.453333pt;}
.x60_c01370{left:395.520000pt;}
.x63_c01370{left:407.040000pt;}
.x3b_c01370{left:410.106667pt;}
.x17_c01370{left:413.946667pt;}
.x59_c01370{left:415.493333pt;}
.x42_c01370{left:420.866667pt;}
.x25_c01370{left:422.400000pt;}
.x66_c01370{left:423.933333pt;}
.x18_c01370{left:428.546667pt;}
.x2f_c01370{left:430.853333pt;}
.x67_c01370{left:437.760000pt;}
.x69_c01370{left:443.133333pt;}
.x19_c01370{left:453.893333pt;}
.x4_c01370{left:456.186667pt;}
.x64_c01370{left:467.706667pt;}
.x2_c01370{left:470.013333pt;}
.x5a_c01370{left:472.320000pt;}
.x1a_c01370{left:480.000000pt;}
.x5f_c01370{left:484.613333pt;}
.x1b_c01370{left:489.986667pt;}
.x30_c01370{left:491.520000pt;}
.x3c_c01370{left:493.053333pt;}
.x43_c01370{left:494.586667pt;}
.x5b_c01370{left:499.200000pt;}
.x5c_c01370{left:511.493333pt;}
.x26_c01370{left:516.093333pt;}
.x27_c01370{left:524.546667pt;}
.x8_c01370{left:546.813333pt;}
.x3d_c01370{left:549.120000pt;}
.x28_c01370{left:575.226667pt;}
.x31_c01370{left:586.746667pt;}
.x1c_c01370{left:591.360000pt;}
.x32_c01370{left:626.693333pt;}
.x33_c01370{left:632.066667pt;}
.x9_c01370{left:659.706667pt;}
.x44_c01370{left:668.933333pt;}
.x34_c01370{left:671.226667pt;}
.x29_c01370{left:679.680000pt;}
.x1d_c01370{left:693.506667pt;}
.x3e_c01370{left:701.186667pt;}
.x2a_c01370{left:706.560000pt;}
.x1e_c01370{left:715.773333pt;}
.x35_c01370{left:720.386667pt;}
.x45_c01370{left:759.546667pt;}
.x1f_c01370{left:768.000000pt;}
.x5_c01370{left:772.613333pt;}
.x20_c01370{left:777.986667pt;}
.xa_c01370{left:787.200000pt;}
.x49_c01370{left:866.306667pt;}
.x4d_c01370{left:868.613333pt;}
.x4a_c01370{left:877.053333pt;}
.x4f_c01370{left:883.200000pt;}
.x50_c01370{left:900.866667pt;}
.x51_c01370{left:905.466667pt;}
.x52_c01370{left:929.280000pt;}
.x4b_c01370{left:933.120000pt;}
.x4c_c01370{left:940.026667pt;}
.x4e_c01370{left:957.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_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;}
@font-face{font-family:ff1_c01371;src:url('chunks/assets/font_04d4430fca3325fbd78d03f4.woff2')format("woff");}.ff1_c01371{font-family:ff1_c01371;line-height:1.109863;font-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_c01371{transform:matrix(0.019625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019625,0.000000,0.000000,0.250000,0,0);}
.m2_c01371{transform:matrix(0.035400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035400,0.000000,0.000000,0.250000,0,0);}
.m0_c01371{transform:matrix(0.043675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043675,0.000000,0.000000,0.250000,0,0);}
.m3_c01371{transform:matrix(0.071375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071375,0.000000,0.000000,0.250000,0,0);}
.m6_c01371{transform:matrix(0.097325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097325,0.000000,0.000000,0.250000,0,0);}
.m7_c01371{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c01371{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1_c01371{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m8_c01371{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mb_c01371{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m9_c01371{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4_c01371{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.v0_c01371{vertical-align:0.000000px;}
.ls0_c01371{letter-spacing:0.000000px;}
.sc__c01371{text-shadow:none;}
.sc0_c01371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01371{-webkit-text-stroke:0px transparent;}
.sc0_c01371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01371{word-spacing:0.000000px;}
.fc0_c01371{color:transparent;}
.fs6_c01371{font-size:3.456000px;}
.fs4_c01371{font-size:6.900000px;}
.fs5_c01371{font-size:10.380000px;}
.fs1_c01371{font-size:48.360000px;}
.fs3_c01371{font-size:103.680000px;}
.fs0_c01371{font-size:107.160000px;}
.fs7_c01371{font-size:124.440000px;}
.fs2_c01371{font-size:176.280000px;}
.y0_c01371{bottom:0.000000px;}
.yb_c01371{bottom:1044.570000px;}
.yc_c01371{bottom:1070.490000px;}
.ya_c01371{bottom:1141.350000px;}
.y9_c01371{bottom:1145.670000px;}
.y8_c01371{bottom:1181.085000px;}
.y7_c01371{bottom:1214.790000px;}
.y5_c01371{bottom:1264.035000px;}
.y6_c01371{bottom:1264.890000px;}
.y4_c01371{bottom:1265.760000px;}
.y3_c01371{bottom:1299.450000px;}
.y2_c01371{bottom:1319.325000px;}
.y1_c01371{bottom:1344.390000px;}
.h8_c01371{height:3.110063px;}
.h6_c01371{height:6.209326px;}
.h7_c01371{height:9.340986px;}
.h3_c01371{height:43.519277px;}
.h5_c01371{height:93.301875px;}
.h2_c01371{height:96.433535px;}
.h9_c01371{height:111.983848px;}
.h4_c01371{height:158.634785px;}
.h1_c01371{height:1513.500000px;}
.h0_c01371{height:1513.725000px;}
.w0_c01371{width:1079.130000px;}
.w1_c01371{width:1079.250000px;}
.x0_c01371{left:0.000000px;}
.x2_c01371{left:7.770000px;}
.x1_c01371{left:111.450000px;}
.x5_c01371{left:114.045000px;}
.x6_c01371{left:155.520000px;}
.x7_c01371{left:182.310000px;}
.x3_c01371{left:186.630000px;}
.x4_c01371{left:194.400000px;}
.x8_c01371{left:219.450000px;}
@media print{
.v0_c01371{vertical-align:0.000000pt;}
.ls0_c01371{letter-spacing:0.000000pt;}
.ws0_c01371{word-spacing:0.000000pt;}
.fs6_c01371{font-size:3.072000pt;}
.fs4_c01371{font-size:6.133333pt;}
.fs5_c01371{font-size:9.226667pt;}
.fs1_c01371{font-size:42.986667pt;}
.fs3_c01371{font-size:92.160000pt;}
.fs0_c01371{font-size:95.253333pt;}
.fs7_c01371{font-size:110.613333pt;}
.fs2_c01371{font-size:156.693333pt;}
.y0_c01371{bottom:0.000000pt;}
.yb_c01371{bottom:928.506667pt;}
.yc_c01371{bottom:951.546667pt;}
.ya_c01371{bottom:1014.533333pt;}
.y9_c01371{bottom:1018.373333pt;}
.y8_c01371{bottom:1049.853333pt;}
.y7_c01371{bottom:1079.813333pt;}
.y5_c01371{bottom:1123.586667pt;}
.y6_c01371{bottom:1124.346667pt;}
.y4_c01371{bottom:1125.120000pt;}
.y3_c01371{bottom:1155.066667pt;}
.y2_c01371{bottom:1172.733333pt;}
.y1_c01371{bottom:1195.013333pt;}
.h8_c01371{height:2.764500pt;}
.h6_c01371{height:5.519401pt;}
.h7_c01371{height:8.303099pt;}
.h3_c01371{height:38.683802pt;}
.h5_c01371{height:82.935000pt;}
.h2_c01371{height:85.718698pt;}
.h9_c01371{height:99.541198pt;}
.h4_c01371{height:141.008698pt;}
.h1_c01371{height:1345.333333pt;}
.h0_c01371{height:1345.533333pt;}
.w0_c01371{width:959.226667pt;}
.w1_c01371{width:959.333333pt;}
.x0_c01371{left:0.000000pt;}
.x2_c01371{left:6.906667pt;}
.x1_c01371{left:99.066667pt;}
.x5_c01371{left:101.373333pt;}
.x6_c01371{left:138.240000pt;}
.x7_c01371{left:162.053333pt;}
.x3_c01371{left:165.893333pt;}
.x4_c01371{left:172.800000pt;}
.x8_c01371{left:195.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b1d581f896016adecfc0d35c.woff2')format("woff");}.ff1_c01372{font-family:ff1_c01372;line-height:1.109863;font-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_c01372{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);}
.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;}
.fs0_c01372{font-size:600.000000px;}
.y0_c01372{bottom:0.000000px;}
.y1_c01372{bottom:15.000000px;}
.h2_c01372{height:539.941406px;}
.h1_c01372{height:1513.500000px;}
.h0_c01372{height:1513.725000px;}
.w0_c01372{width:1083.450000px;}
.w1_c01372{width:1083.750000px;}
.x0_c01372{left:0.000000px;}
.x1_c01372{left:15.000000px;}
@media print{
.v0_c01372{vertical-align:0.000000pt;}
.ls0_c01372{letter-spacing:0.000000pt;}
.ws0_c01372{word-spacing:0.000000pt;}
.fs0_c01372{font-size:533.333333pt;}
.y0_c01372{bottom:0.000000pt;}
.y1_c01372{bottom:13.333333pt;}
.h2_c01372{height:479.947917pt;}
.h1_c01372{height:1345.333333pt;}
.h0_c01372{height:1345.533333pt;}
.w0_c01372{width:963.066667pt;}
.w1_c01372{width:963.333333pt;}
.x0_c01372{left:0.000000pt;}
.x1_c01372{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01373;src:url('chunks/assets/font_e297c08270eb0688f30258c9.woff2')format("woff");}.ff1_c01373{font-family:ff1_c01373;line-height:1.109863;font-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_c01373{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c01373{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10_c01373{transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155375,0.000000,0.000000,0.250000,0,0);}
.m7_c01373{transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173900,0.000000,0.000000,0.250000,0,0);}
.mb_c01373{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);}
.m11_c01373{transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200500,0.000000,0.000000,0.250000,0,0);}
.ma_c01373{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);}
.md_c01373{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1_c01373{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);}
.mf_c01373{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c01373{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);}
.m14_c01373{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m8_c01373{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c01373{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m16_c01373{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m2_c01373{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);}
.m5_c01373{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.me_c01373{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m0_c01373{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m15_c01373{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);}
.m6_c01373{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mc_c01373{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m17_c01373{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m12_c01373{transform:matrix(1.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.287500,0.000000,0.000000,0.250000,0,0);}
.v0_c01373{vertical-align:0.000000px;}
.ls0_c01373{letter-spacing:0.000000px;}
.sc__c01373{text-shadow:none;}
.sc0_c01373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01373{-webkit-text-stroke:0px transparent;}
.sc0_c01373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01373{word-spacing:0.000000px;}
.fc0_c01373{color:transparent;}
.fs4_c01373{font-size:3.456000px;}
.fse_c01373{font-size:6.000000px;}
.fs3_c01373{font-size:6.900000px;}
.fs0_c01373{font-size:10.380000px;}
.fs5_c01373{font-size:20.760000px;}
.fs1_c01373{font-size:24.180000px;}
.fs6_c01373{font-size:27.660000px;}
.fs2_c01373{font-size:34.560000px;}
.fsf_c01373{font-size:41.460000px;}
.fsa_c01373{font-size:55.320000px;}
.fs7_c01373{font-size:58.740000px;}
.fsb_c01373{font-size:62.220000px;}
.fs8_c01373{font-size:72.600000px;}
.fs9_c01373{font-size:76.020000px;}
.fsc_c01373{font-size:82.920000px;}
.fsd_c01373{font-size:86.400000px;}
.y0_c01373{bottom:0.000000px;}
.y11_c01373{bottom:988.410000px;}
.ye_c01373{bottom:1014.330000px;}
.yf_c01373{bottom:1015.200000px;}
.y10_c01373{bottom:1016.070000px;}
.yc_c01373{bottom:1028.160000px;}
.yd_c01373{bottom:1030.755000px;}
.ya_c01373{bottom:1365.990000px;}
.yb_c01373{bottom:1366.845000px;}
.y9_c01373{bottom:1367.715000px;}
.y8_c01373{bottom:1368.570000px;}
.y7_c01373{bottom:1392.765000px;}
.y5_c01373{bottom:1398.810000px;}
.y6_c01373{bottom:1404.870000px;}
.y3_c01373{bottom:1424.730000px;}
.y4_c01373{bottom:1433.370000px;}
.y2_c01373{bottom:1434.240000px;}
.y1_c01373{bottom:1437.690000px;}
.h6_c01373{height:3.110063px;}
.h10_c01373{height:5.399414px;}
.h5_c01373{height:6.209326px;}
.h2_c01373{height:9.340986px;}
.h7_c01373{height:18.681973px;}
.h3_c01373{height:21.759639px;}
.h8_c01373{height:24.891299px;}
.h4_c01373{height:31.100625px;}
.h11_c01373{height:37.309951px;}
.hc_c01373{height:49.782598px;}
.h9_c01373{height:52.860264px;}
.hd_c01373{height:55.991924px;}
.ha_c01373{height:65.332910px;}
.hb_c01373{height:68.410576px;}
.he_c01373{height:74.619902px;}
.hf_c01373{height:77.751563px;}
.h1_c01373{height:1513.500000px;}
.h0_c01373{height:1513.725000px;}
.w0_c01373{width:1079.130000px;}
.w1_c01373{width:1079.250000px;}
.x0_c01373{left:0.000000px;}
.x1a_c01373{left:49.245000px;}
.x1_c01373{left:246.240000px;}
.x2_c01373{left:257.475000px;}
.x3_c01373{left:287.715000px;}
.x4_c01373{left:309.315000px;}
.xa_c01373{left:411.270000px;}
.xb_c01373{left:438.915000px;}
.xc_c01373{left:460.515000px;}
.x5_c01373{left:470.880000px;}
.x6_c01373{left:476.070000px;}
.xd_c01373{left:495.930000px;}
.xe_c01373{left:540.000000px;}
.xf_c01373{left:560.730000px;}
.x8_c01373{left:585.795000px;}
.x10_c01373{left:609.990000px;}
.x11_c01373{left:631.590000px;}
.x9_c01373{left:641.955000px;}
.x17_c01373{left:644.550000px;}
.x12_c01373{left:657.510000px;}
.x15_c01373{left:669.600000px;}
.x13_c01373{left:672.195000px;}
.x18_c01373{left:682.560000px;}
.x19_c01373{left:699.840000px;}
.x14_c01373{left:716.250000px;}
.x16_c01373{left:718.845000px;}
.x7_c01373{left:801.795000px;}
@media print{
.v0_c01373{vertical-align:0.000000pt;}
.ls0_c01373{letter-spacing:0.000000pt;}
.ws0_c01373{word-spacing:0.000000pt;}
.fs4_c01373{font-size:3.072000pt;}
.fse_c01373{font-size:5.333333pt;}
.fs3_c01373{font-size:6.133333pt;}
.fs0_c01373{font-size:9.226667pt;}
.fs5_c01373{font-size:18.453333pt;}
.fs1_c01373{font-size:21.493333pt;}
.fs6_c01373{font-size:24.586667pt;}
.fs2_c01373{font-size:30.720000pt;}
.fsf_c01373{font-size:36.853333pt;}
.fsa_c01373{font-size:49.173333pt;}
.fs7_c01373{font-size:52.213333pt;}
.fsb_c01373{font-size:55.306667pt;}
.fs8_c01373{font-size:64.533333pt;}
.fs9_c01373{font-size:67.573333pt;}
.fsc_c01373{font-size:73.706667pt;}
.fsd_c01373{font-size:76.800000pt;}
.y0_c01373{bottom:0.000000pt;}
.y11_c01373{bottom:878.586667pt;}
.ye_c01373{bottom:901.626667pt;}
.yf_c01373{bottom:902.400000pt;}
.y10_c01373{bottom:903.173333pt;}
.yc_c01373{bottom:913.920000pt;}
.yd_c01373{bottom:916.226667pt;}
.ya_c01373{bottom:1214.213333pt;}
.yb_c01373{bottom:1214.973333pt;}
.y9_c01373{bottom:1215.746667pt;}
.y8_c01373{bottom:1216.506667pt;}
.y7_c01373{bottom:1238.013333pt;}
.y5_c01373{bottom:1243.386667pt;}
.y6_c01373{bottom:1248.773333pt;}
.y3_c01373{bottom:1266.426667pt;}
.y4_c01373{bottom:1274.106667pt;}
.y2_c01373{bottom:1274.880000pt;}
.y1_c01373{bottom:1277.946667pt;}
.h6_c01373{height:2.764500pt;}
.h10_c01373{height:4.799479pt;}
.h5_c01373{height:5.519401pt;}
.h2_c01373{height:8.303099pt;}
.h7_c01373{height:16.606198pt;}
.h3_c01373{height:19.341901pt;}
.h8_c01373{height:22.125599pt;}
.h4_c01373{height:27.645000pt;}
.h11_c01373{height:33.164401pt;}
.hc_c01373{height:44.251198pt;}
.h9_c01373{height:46.986901pt;}
.hd_c01373{height:49.770599pt;}
.ha_c01373{height:58.073698pt;}
.hb_c01373{height:60.809401pt;}
.he_c01373{height:66.328802pt;}
.hf_c01373{height:69.112500pt;}
.h1_c01373{height:1345.333333pt;}
.h0_c01373{height:1345.533333pt;}
.w0_c01373{width:959.226667pt;}
.w1_c01373{width:959.333333pt;}
.x0_c01373{left:0.000000pt;}
.x1a_c01373{left:43.773333pt;}
.x1_c01373{left:218.880000pt;}
.x2_c01373{left:228.866667pt;}
.x3_c01373{left:255.746667pt;}
.x4_c01373{left:274.946667pt;}
.xa_c01373{left:365.573333pt;}
.xb_c01373{left:390.146667pt;}
.xc_c01373{left:409.346667pt;}
.x5_c01373{left:418.560000pt;}
.x6_c01373{left:423.173333pt;}
.xd_c01373{left:440.826667pt;}
.xe_c01373{left:480.000000pt;}
.xf_c01373{left:498.426667pt;}
.x8_c01373{left:520.706667pt;}
.x10_c01373{left:542.213333pt;}
.x11_c01373{left:561.413333pt;}
.x9_c01373{left:570.626667pt;}
.x17_c01373{left:572.933333pt;}
.x12_c01373{left:584.453333pt;}
.x15_c01373{left:595.200000pt;}
.x13_c01373{left:597.506667pt;}
.x18_c01373{left:606.720000pt;}
.x19_c01373{left:622.080000pt;}
.x14_c01373{left:636.666667pt;}
.x16_c01373{left:638.973333pt;}
.x7_c01373{left:712.706667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_edbfd5866345179a912d0d5a.woff2')format("woff");}.ff1_c01374{font-family:ff1_c01374;line-height:1.109863;font-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_c01374{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c01374{transform:matrix(0.020850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020850,0.000000,0.000000,0.250000,0,0);}
.m5_c01374{transform:matrix(0.055600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055600,0.000000,0.000000,0.250000,0,0);}
.m7_c01374{transform:matrix(0.114750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114750,0.000000,0.000000,0.250000,0,0);}
.m2_c01374{transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.118750,0.000000,0.000000,0.250000,0,0);}
.m6_c01374{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);}
.m3_c01374{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c01374{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c01374{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,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;}
.fs3_c01374{font-size:6.900000px;}
.fs1_c01374{font-size:13.800000px;}
.fs4_c01374{font-size:17.280000px;}
.fs5_c01374{font-size:20.760000px;}
.fs0_c01374{font-size:24.180000px;}
.fs7_c01374{font-size:65.640000px;}
.fs8_c01374{font-size:86.400000px;}
.fs6_c01374{font-size:93.300000px;}
.fs9_c01374{font-size:124.440000px;}
.fs2_c01374{font-size:131.340000px;}
.y0_c01374{bottom:0.000000px;}
.y9_c01374{bottom:1022.970000px;}
.y8_c01374{bottom:1056.675000px;}
.y7_c01374{bottom:1080.000000px;}
.y6_c01374{bottom:1080.870000px;}
.y5_c01374{bottom:1126.650000px;}
.y4_c01374{bottom:1127.520000px;}
.y1_c01374{bottom:1237.245000px;}
.y2_c01374{bottom:1375.485000px;}
.y3_c01374{bottom:1378.080000px;}
.h5_c01374{height:6.209326px;}
.h3_c01374{height:12.418652px;}
.h6_c01374{height:15.550313px;}
.h7_c01374{height:18.681973px;}
.h2_c01374{height:21.759639px;}
.h9_c01374{height:59.069590px;}
.ha_c01374{height:77.751563px;}
.h8_c01374{height:83.960889px;}
.hb_c01374{height:111.983848px;}
.h4_c01374{height:118.193174px;}
.h1_c01374{height:1513.500000px;}
.h0_c01374{height:1513.725000px;}
.w0_c01374{width:1083.450000px;}
.w1_c01374{width:1083.750000px;}
.x0_c01374{left:0.000000px;}
.x2_c01374{left:963.360000px;}
.x7_c01374{left:968.550000px;}
.x3_c01374{left:971.130000px;}
.x6_c01374{left:972.870000px;}
.x4_c01374{left:980.640000px;}
.x5_c01374{left:1030.755000px;}
.x1_c01374{left:1039.395000px;}
@media print{
.v0_c01374{vertical-align:0.000000pt;}
.ls0_c01374{letter-spacing:0.000000pt;}
.ws0_c01374{word-spacing:0.000000pt;}
.fs3_c01374{font-size:6.133333pt;}
.fs1_c01374{font-size:12.266667pt;}
.fs4_c01374{font-size:15.360000pt;}
.fs5_c01374{font-size:18.453333pt;}
.fs0_c01374{font-size:21.493333pt;}
.fs7_c01374{font-size:58.346667pt;}
.fs8_c01374{font-size:76.800000pt;}
.fs6_c01374{font-size:82.933333pt;}
.fs9_c01374{font-size:110.613333pt;}
.fs2_c01374{font-size:116.746667pt;}
.y0_c01374{bottom:0.000000pt;}
.y9_c01374{bottom:909.306667pt;}
.y8_c01374{bottom:939.266667pt;}
.y7_c01374{bottom:960.000000pt;}
.y6_c01374{bottom:960.773333pt;}
.y5_c01374{bottom:1001.466667pt;}
.y4_c01374{bottom:1002.240000pt;}
.y1_c01374{bottom:1099.773333pt;}
.y2_c01374{bottom:1222.653333pt;}
.y3_c01374{bottom:1224.960000pt;}
.h5_c01374{height:5.519401pt;}
.h3_c01374{height:11.038802pt;}
.h6_c01374{height:13.822500pt;}
.h7_c01374{height:16.606198pt;}
.h2_c01374{height:19.341901pt;}
.h9_c01374{height:52.506302pt;}
.ha_c01374{height:69.112500pt;}
.h8_c01374{height:74.631901pt;}
.hb_c01374{height:99.541198pt;}
.h4_c01374{height:105.060599pt;}
.h1_c01374{height:1345.333333pt;}
.h0_c01374{height:1345.533333pt;}
.w0_c01374{width:963.066667pt;}
.w1_c01374{width:963.333333pt;}
.x0_c01374{left:0.000000pt;}
.x2_c01374{left:856.320000pt;}
.x7_c01374{left:860.933333pt;}
.x3_c01374{left:863.226667pt;}
.x6_c01374{left:864.773333pt;}
.x4_c01374{left:871.680000pt;}
.x5_c01374{left:916.226667pt;}
.x1_c01374{left:923.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01375;src:url('chunks/assets/font_64c042e6b58004bbb4f4685c.woff2')format("woff");}.ff1_c01375{font-family:ff1_c01375;line-height:1.109863;font-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_c01375{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);}
.v0_c01375{vertical-align:0.000000px;}
.ls0_c01375{letter-spacing:0.000000px;}
.sc__c01375{text-shadow:none;}
.sc0_c01375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01375{-webkit-text-stroke:0px transparent;}
.sc0_c01375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01375{word-spacing:0.000000px;}
.fc0_c01375{color:transparent;}
.fs0_c01375{font-size:600.000000px;}
.y0_c01375{bottom:0.000000px;}
.y1_c01375{bottom:15.000000px;}
.h2_c01375{height:539.941406px;}
.h1_c01375{height:1513.500000px;}
.h0_c01375{height:1513.725000px;}
.w0_c01375{width:1079.130000px;}
.w1_c01375{width:1079.250000px;}
.x0_c01375{left:0.000000px;}
.x1_c01375{left:15.000000px;}
@media print{
.v0_c01375{vertical-align:0.000000pt;}
.ls0_c01375{letter-spacing:0.000000pt;}
.ws0_c01375{word-spacing:0.000000pt;}
.fs0_c01375{font-size:533.333333pt;}
.y0_c01375{bottom:0.000000pt;}
.y1_c01375{bottom:13.333333pt;}
.h2_c01375{height:479.947917pt;}
.h1_c01375{height:1345.333333pt;}
.h0_c01375{height:1345.533333pt;}
.w0_c01375{width:959.226667pt;}
.w1_c01375{width:959.333333pt;}
.x0_c01375{left:0.000000pt;}
.x1_c01375{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ef99531d700e1bfeea310800.woff2')format("woff");}.ff1_c01376{font-family:ff1_c01376;line-height:1.109863;font-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_c01376{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c01376{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);}
.m2_c01376{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,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;}
.fc0_c01376{color:transparent;}
.fs0_c01376{font-size:6.000000px;}
.fs3_c01376{font-size:6.900000px;}
.fs2_c01376{font-size:13.800000px;}
.fs1_c01376{font-size:20.760000px;}
.y0_c01376{bottom:0.000000px;}
.y3_c01376{bottom:1245.030000px;}
.y4_c01376{bottom:1247.610000px;}
.y2_c01376{bottom:1428.195000px;}
.y1_c01376{bottom:1433.370000px;}
.h2_c01376{height:5.399414px;}
.h5_c01376{height:6.209326px;}
.h4_c01376{height:12.418652px;}
.h3_c01376{height:18.681973px;}
.h1_c01376{height:1513.500000px;}
.h0_c01376{height:1513.725000px;}
.w0_c01376{width:1083.450000px;}
.w1_c01376{width:1083.750000px;}
.x0_c01376{left:0.000000px;}
.x1_c01376{left:824.250000px;}
.x2_c01376{left:831.165000px;}
.x3_c01376{left:890.790000px;}
.x4_c01376{left:898.560000px;}
@media print{
.v0_c01376{vertical-align:0.000000pt;}
.ls0_c01376{letter-spacing:0.000000pt;}
.ws0_c01376{word-spacing:0.000000pt;}
.fs0_c01376{font-size:5.333333pt;}
.fs3_c01376{font-size:6.133333pt;}
.fs2_c01376{font-size:12.266667pt;}
.fs1_c01376{font-size:18.453333pt;}
.y0_c01376{bottom:0.000000pt;}
.y3_c01376{bottom:1106.693333pt;}
.y4_c01376{bottom:1108.986667pt;}
.y2_c01376{bottom:1269.506667pt;}
.y1_c01376{bottom:1274.106667pt;}
.h2_c01376{height:4.799479pt;}
.h5_c01376{height:5.519401pt;}
.h4_c01376{height:11.038802pt;}
.h3_c01376{height:16.606198pt;}
.h1_c01376{height:1345.333333pt;}
.h0_c01376{height:1345.533333pt;}
.w0_c01376{width:963.066667pt;}
.w1_c01376{width:963.333333pt;}
.x0_c01376{left:0.000000pt;}
.x1_c01376{left:732.666667pt;}
.x2_c01376{left:738.813333pt;}
.x3_c01376{left:791.813333pt;}
.x4_c01376{left:798.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_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;}
@font-face{font-family:ff1_c01377;src:url('chunks/assets/font_4b0d76f69d70e2add09f6b70.woff2')format("woff");}.ff1_c01377{font-family:ff1_c01377;line-height:1.109863;font-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_c01377{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c01377{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c01377{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c01377{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.v0_c01377{vertical-align:0.000000px;}
.ls0_c01377{letter-spacing:0.000000px;}
.sc__c01377{text-shadow:none;}
.sc0_c01377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01377{-webkit-text-stroke:0px transparent;}
.sc0_c01377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01377{word-spacing:0.000000px;}
.fc0_c01377{color:transparent;}
.fs2_c01377{font-size:3.456000px;}
.fs1_c01377{font-size:6.900000px;}
.fs0_c01377{font-size:13.800000px;}
.fs3_c01377{font-size:41.460000px;}
.y0_c01377{bottom:0.000000px;}
.y4_c01377{bottom:991.005000px;}
.y3_c01377{bottom:1000.515000px;}
.y1_c01377{bottom:1245.030000px;}
.y2_c01377{bottom:1248.480000px;}
.h4_c01377{height:3.110063px;}
.h3_c01377{height:6.209326px;}
.h2_c01377{height:12.418652px;}
.h5_c01377{height:37.309951px;}
.h1_c01377{height:1513.500000px;}
.h0_c01377{height:1513.725000px;}
.w0_c01377{width:1079.130000px;}
.w1_c01377{width:1079.250000px;}
.x0_c01377{left:0.000000px;}
.x3_c01377{left:3.450000px;}
.x4_c01377{left:23.325000px;}
.x1_c01377{left:27.645000px;}
.x2_c01377{left:35.430000px;}
@media print{
.v0_c01377{vertical-align:0.000000pt;}
.ls0_c01377{letter-spacing:0.000000pt;}
.ws0_c01377{word-spacing:0.000000pt;}
.fs2_c01377{font-size:3.072000pt;}
.fs1_c01377{font-size:6.133333pt;}
.fs0_c01377{font-size:12.266667pt;}
.fs3_c01377{font-size:36.853333pt;}
.y0_c01377{bottom:0.000000pt;}
.y4_c01377{bottom:880.893333pt;}
.y3_c01377{bottom:889.346667pt;}
.y1_c01377{bottom:1106.693333pt;}
.y2_c01377{bottom:1109.760000pt;}
.h4_c01377{height:2.764500pt;}
.h3_c01377{height:5.519401pt;}
.h2_c01377{height:11.038802pt;}
.h5_c01377{height:33.164401pt;}
.h1_c01377{height:1345.333333pt;}
.h0_c01377{height:1345.533333pt;}
.w0_c01377{width:959.226667pt;}
.w1_c01377{width:959.333333pt;}
.x0_c01377{left:0.000000pt;}
.x3_c01377{left:3.066667pt;}
.x4_c01377{left:20.733333pt;}
.x1_c01377{left:24.573333pt;}
.x2_c01377{left:31.493333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5f75825f7a8cad5b2dfb5864.woff2')format("woff");}.ff1_c01378{font-family:ff1_c01378;line-height:1.109863;font-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_c01378{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c01378{transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120050,0.000000,0.000000,0.250000,0,0);}
.m0_c01378{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01378{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,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;}
.fs1_c01378{font-size:3.456000px;}
.fs0_c01378{font-size:13.800000px;}
.fs2_c01378{font-size:86.400000px;}
.y0_c01378{bottom:0.000000px;}
.y4_c01378{bottom:355.965000px;}
.y5_c01378{bottom:356.835000px;}
.y3_c01378{bottom:1302.915000px;}
.y2_c01378{bottom:1317.600000px;}
.y1_c01378{bottom:1328.835000px;}
.h3_c01378{height:3.110063px;}
.h2_c01378{height:12.418652px;}
.h4_c01378{height:77.751563px;}
.h1_c01378{height:1513.500000px;}
.h0_c01378{height:1513.725000px;}
.w0_c01378{width:1083.450000px;}
.w1_c01378{width:1083.750000px;}
.x0_c01378{left:0.000000px;}
.x1_c01378{left:897.690000px;}
.x2_c01378{left:952.995000px;}
.x3_c01378{left:966.810000px;}
.x4_c01378{left:1054.950000px;}
.x5_c01378{left:1063.590000px;}
@media print{
.v0_c01378{vertical-align:0.000000pt;}
.ls0_c01378{letter-spacing:0.000000pt;}
.ws0_c01378{word-spacing:0.000000pt;}
.fs1_c01378{font-size:3.072000pt;}
.fs0_c01378{font-size:12.266667pt;}
.fs2_c01378{font-size:76.800000pt;}
.y0_c01378{bottom:0.000000pt;}
.y4_c01378{bottom:316.413333pt;}
.y5_c01378{bottom:317.186667pt;}
.y3_c01378{bottom:1158.146667pt;}
.y2_c01378{bottom:1171.200000pt;}
.y1_c01378{bottom:1181.186667pt;}
.h3_c01378{height:2.764500pt;}
.h2_c01378{height:11.038802pt;}
.h4_c01378{height:69.112500pt;}
.h1_c01378{height:1345.333333pt;}
.h0_c01378{height:1345.533333pt;}
.w0_c01378{width:963.066667pt;}
.w1_c01378{width:963.333333pt;}
.x0_c01378{left:0.000000pt;}
.x1_c01378{left:797.946667pt;}
.x2_c01378{left:847.106667pt;}
.x3_c01378{left:859.386667pt;}
.x4_c01378{left:937.733333pt;}
.x5_c01378{left:945.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01379;src:url('chunks/assets/font_5bbdba27ee49fcde04f166c8.woff2')format("woff");}.ff1_c01379{font-family:ff1_c01379;line-height:1.109863;font-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_c01379{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);}
.v0_c01379{vertical-align:0.000000px;}
.ls0_c01379{letter-spacing:0.000000px;}
.sc__c01379{text-shadow:none;}
.sc0_c01379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01379{-webkit-text-stroke:0px transparent;}
.sc0_c01379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01379{word-spacing:0.000000px;}
.fc0_c01379{color:transparent;}
.fs0_c01379{font-size:600.000000px;}
.y0_c01379{bottom:0.000000px;}
.y1_c01379{bottom:15.000000px;}
.h2_c01379{height:539.941406px;}
.h1_c01379{height:1513.500000px;}
.h0_c01379{height:1513.725000px;}
.w0_c01379{width:1079.130000px;}
.w1_c01379{width:1079.250000px;}
.x0_c01379{left:0.000000px;}
.x1_c01379{left:15.000000px;}
@media print{
.v0_c01379{vertical-align:0.000000pt;}
.ls0_c01379{letter-spacing:0.000000pt;}
.ws0_c01379{word-spacing:0.000000pt;}
.fs0_c01379{font-size:533.333333pt;}
.y0_c01379{bottom:0.000000pt;}
.y1_c01379{bottom:13.333333pt;}
.h2_c01379{height:479.947917pt;}
.h1_c01379{height:1345.333333pt;}
.h0_c01379{height:1345.533333pt;}
.w0_c01379{width:959.226667pt;}
.w1_c01379{width:959.333333pt;}
.x0_c01379{left:0.000000pt;}
.x1_c01379{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbcc6d423ab57bebcf72f1c9.woff2')format("woff");}.ff1_c01380{font-family:ff1_c01380;line-height:1.109863;font-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_c01380{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);}
.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;}
.fc0_c01380{color:transparent;}
.fs0_c01380{font-size:600.000000px;}
.y0_c01380{bottom:0.000000px;}
.y1_c01380{bottom:15.000000px;}
.h2_c01380{height:539.941406px;}
.h1_c01380{height:1513.500000px;}
.h0_c01380{height:1513.725000px;}
.w0_c01380{width:1083.450000px;}
.w1_c01380{width:1083.750000px;}
.x0_c01380{left:0.000000px;}
.x1_c01380{left:15.000000px;}
@media print{
.v0_c01380{vertical-align:0.000000pt;}
.ls0_c01380{letter-spacing:0.000000pt;}
.ws0_c01380{word-spacing:0.000000pt;}
.fs0_c01380{font-size:533.333333pt;}
.y0_c01380{bottom:0.000000pt;}
.y1_c01380{bottom:13.333333pt;}
.h2_c01380{height:479.947917pt;}
.h1_c01380{height:1345.333333pt;}
.h0_c01380{height:1345.533333pt;}
.w0_c01380{width:963.066667pt;}
.w1_c01380{width:963.333333pt;}
.x0_c01380{left:0.000000pt;}
.x1_c01380{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5813205a06d0b637756bd2bf.woff2')format("woff");}.ff1_c01381{font-family:ff1_c01381;line-height:1.109863;font-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_c01381{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c01381{transform:matrix(0.052475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052475,0.000000,0.000000,0.250000,0,0);}
.m7_c01381{transform:matrix(0.064875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064875,0.000000,0.000000,0.250000,0,0);}
.m3_c01381{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);}
.m0_c01381{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m6_c01381{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);}
.m5_c01381{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c01381{transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.872500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.872500,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;}
.fs2_c01381{font-size:6.000000px;}
.fs3_c01381{font-size:6.900000px;}
.fs1_c01381{font-size:10.380000px;}
.fs6_c01381{font-size:13.800000px;}
.fs0_c01381{font-size:17.280000px;}
.fs7_c01381{font-size:20.760000px;}
.fs4_c01381{font-size:24.180000px;}
.fs5_c01381{font-size:176.280000px;}
.fs8_c01381{font-size:279.960000px;}
.y0_c01381{bottom:0.000000px;}
.y8_c01381{bottom:1130.970000px;}
.y7_c01381{bottom:1245.885000px;}
.y6_c01381{bottom:1280.445000px;}
.y5_c01381{bottom:1289.955000px;}
.y4_c01381{bottom:1367.715000px;}
.y3_c01381{bottom:1374.630000px;}
.y2_c01381{bottom:1378.950000px;}
.y1_c01381{bottom:1404.870000px;}
.h4_c01381{height:5.399414px;}
.h5_c01381{height:6.209326px;}
.h3_c01381{height:9.340986px;}
.h8_c01381{height:12.418652px;}
.h2_c01381{height:15.550313px;}
.h9_c01381{height:18.681973px;}
.h6_c01381{height:21.759639px;}
.h7_c01381{height:158.634785px;}
.ha_c01381{height:251.936660px;}
.h1_c01381{height:1513.500000px;}
.h0_c01381{height:1513.725000px;}
.w0_c01381{width:1079.130000px;}
.w1_c01381{width:1079.250000px;}
.x0_c01381{left:0.000000px;}
.x7_c01381{left:16.410000px;}
.x6_c01381{left:47.520000px;}
.x1_c01381{left:53.565000px;}
.x5_c01381{left:110.595000px;}
.x2_c01381{left:153.795000px;}
.x3_c01381{left:182.310000px;}
.x4_c01381{left:192.675000px;}
@media print{
.v0_c01381{vertical-align:0.000000pt;}
.ls0_c01381{letter-spacing:0.000000pt;}
.ws0_c01381{word-spacing:0.000000pt;}
.fs2_c01381{font-size:5.333333pt;}
.fs3_c01381{font-size:6.133333pt;}
.fs1_c01381{font-size:9.226667pt;}
.fs6_c01381{font-size:12.266667pt;}
.fs0_c01381{font-size:15.360000pt;}
.fs7_c01381{font-size:18.453333pt;}
.fs4_c01381{font-size:21.493333pt;}
.fs5_c01381{font-size:156.693333pt;}
.fs8_c01381{font-size:248.853333pt;}
.y0_c01381{bottom:0.000000pt;}
.y8_c01381{bottom:1005.306667pt;}
.y7_c01381{bottom:1107.453333pt;}
.y6_c01381{bottom:1138.173333pt;}
.y5_c01381{bottom:1146.626667pt;}
.y4_c01381{bottom:1215.746667pt;}
.y3_c01381{bottom:1221.893333pt;}
.y2_c01381{bottom:1225.733333pt;}
.y1_c01381{bottom:1248.773333pt;}
.h4_c01381{height:4.799479pt;}
.h5_c01381{height:5.519401pt;}
.h3_c01381{height:8.303099pt;}
.h8_c01381{height:11.038802pt;}
.h2_c01381{height:13.822500pt;}
.h9_c01381{height:16.606198pt;}
.h6_c01381{height:19.341901pt;}
.h7_c01381{height:141.008698pt;}
.ha_c01381{height:223.943698pt;}
.h1_c01381{height:1345.333333pt;}
.h0_c01381{height:1345.533333pt;}
.w0_c01381{width:959.226667pt;}
.w1_c01381{width:959.333333pt;}
.x0_c01381{left:0.000000pt;}
.x7_c01381{left:14.586667pt;}
.x6_c01381{left:42.240000pt;}
.x1_c01381{left:47.613333pt;}
.x5_c01381{left:98.306667pt;}
.x2_c01381{left:136.706667pt;}
.x3_c01381{left:162.053333pt;}
.x4_c01381{left:171.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6e3920e2c4d2e20d45e7bb6.woff2')format("woff");}.ff1_c01382{font-family:ff1_c01382;line-height:1.109863;font-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_c01382{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);}
.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;}
.fs0_c01382{font-size:600.000000px;}
.y0_c01382{bottom:0.000000px;}
.y1_c01382{bottom:15.000000px;}
.h2_c01382{height:539.941406px;}
.h1_c01382{height:1513.500000px;}
.h0_c01382{height:1513.725000px;}
.w0_c01382{width:1083.450000px;}
.w1_c01382{width:1083.750000px;}
.x0_c01382{left:0.000000px;}
.x1_c01382{left:15.000000px;}
@media print{
.v0_c01382{vertical-align:0.000000pt;}
.ls0_c01382{letter-spacing:0.000000pt;}
.ws0_c01382{word-spacing:0.000000pt;}
.fs0_c01382{font-size:533.333333pt;}
.y0_c01382{bottom:0.000000pt;}
.y1_c01382{bottom:13.333333pt;}
.h2_c01382{height:479.947917pt;}
.h1_c01382{height:1345.333333pt;}
.h0_c01382{height:1345.533333pt;}
.w0_c01382{width:963.066667pt;}
.w1_c01382{width:963.333333pt;}
.x0_c01382{left:0.000000pt;}
.x1_c01382{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_91c95ec92239238d8c658732.woff2')format("woff");}.ff1_c01383{font-family:ff1_c01383;line-height:1.109863;font-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_c01383{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);}
.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:600.000000px;}
.y0_c01383{bottom:0.000000px;}
.y1_c01383{bottom:15.000000px;}
.h2_c01383{height:539.941406px;}
.h1_c01383{height:1513.500000px;}
.h0_c01383{height:1513.725000px;}
.w0_c01383{width:1079.130000px;}
.w1_c01383{width:1079.250000px;}
.x0_c01383{left:0.000000px;}
.x1_c01383{left:15.000000px;}
@media print{
.v0_c01383{vertical-align:0.000000pt;}
.ls0_c01383{letter-spacing:0.000000pt;}
.ws0_c01383{word-spacing:0.000000pt;}
.fs0_c01383{font-size:533.333333pt;}
.y0_c01383{bottom:0.000000pt;}
.y1_c01383{bottom:13.333333pt;}
.h2_c01383{height:479.947917pt;}
.h1_c01383{height:1345.333333pt;}
.h0_c01383{height:1345.533333pt;}
.w0_c01383{width:959.226667pt;}
.w1_c01383{width:959.333333pt;}
.x0_c01383{left:0.000000pt;}
.x1_c01383{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9d906fbb7790d0c70854a38b.woff2')format("woff");}.ff1_c01384{font-family:ff1_c01384;line-height:1.109863;font-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_c01384{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c01384{transform:matrix(0.066725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066725,0.000000,0.000000,0.250000,0,0);}
.m1_c01384{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c01384{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.m0_c01384{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01384{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m5_c01384{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_c01384{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);}
.m8_c01384{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3_c01384{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.v1_c01384{vertical-align:-6.900000px;}
.v0_c01384{vertical-align:0.000000px;}
.ls1_c01384{letter-spacing:0.000000px;}
.ls0_c01384{letter-spacing:14.078700px;}
.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;}
.fs7_c01384{font-size:6.000000px;}
.fs5_c01384{font-size:6.900000px;}
.fs0_c01384{font-size:10.380000px;}
.fs6_c01384{font-size:17.280000px;}
.fs1_c01384{font-size:20.760000px;}
.fs3_c01384{font-size:24.180000px;}
.fs4_c01384{font-size:27.660000px;}
.fs2_c01384{font-size:155.520000px;}
.y0_c01384{bottom:0.000000px;}
.yd_c01384{bottom:391.395000px;}
.ye_c01384{bottom:394.845000px;}
.yb_c01384{bottom:938.310000px;}
.yc_c01384{bottom:943.485000px;}
.y6_c01384{bottom:1096.410000px;}
.y5_c01384{bottom:1100.730000px;}
.y4_c01384{bottom:1141.350000px;}
.y3_c01384{bottom:1150.845000px;}
.y2_c01384{bottom:1156.890000px;}
.y1_c01384{bottom:1213.050000px;}
.y9_c01384{bottom:1270.080000px;}
.ya_c01384{bottom:1308.090000px;}
.y8_c01384{bottom:1340.925000px;}
.y7_c01384{bottom:1343.520000px;}
.h8_c01384{height:5.399414px;}
.ha_c01384{height:6.209326px;}
.h7_c01384{height:8.650313px;}
.h2_c01384{height:9.340986px;}
.h9_c01384{height:15.550313px;}
.h3_c01384{height:18.681973px;}
.h5_c01384{height:21.759639px;}
.h6_c01384{height:24.891299px;}
.h4_c01384{height:139.952812px;}
.h1_c01384{height:1513.500000px;}
.h0_c01384{height:1513.725000px;}
.w0_c01384{width:1083.450000px;}
.w1_c01384{width:1083.750000px;}
.x0_c01384{left:0.000000px;}
.xa_c01384{left:887.325000px;}
.x1_c01384{left:900.285000px;}
.x2_c01384{left:911.520000px;}
.x7_c01384{left:921.885000px;}
.x8_c01384{left:940.890000px;}
.x3_c01384{left:973.725000px;}
.x5_c01384{left:977.190000px;}
.x6_c01384{left:989.280000px;}
.x4_c01384{left:1031.610000px;}
.xd_c01384{left:1036.800465px;}
.xb_c01384{left:1048.035000px;}
.xe_c01384{left:1057.530000px;}
.x9_c01384{left:1064.445000px;}
.xc_c01384{left:1067.040000px;}
@media print{
.v1_c01384{vertical-align:-6.133333pt;}
.v0_c01384{vertical-align:0.000000pt;}
.ls1_c01384{letter-spacing:0.000000pt;}
.ls0_c01384{letter-spacing:12.514400pt;}
.ws0_c01384{word-spacing:0.000000pt;}
.fs7_c01384{font-size:5.333333pt;}
.fs5_c01384{font-size:6.133333pt;}
.fs0_c01384{font-size:9.226667pt;}
.fs6_c01384{font-size:15.360000pt;}
.fs1_c01384{font-size:18.453333pt;}
.fs3_c01384{font-size:21.493333pt;}
.fs4_c01384{font-size:24.586667pt;}
.fs2_c01384{font-size:138.240000pt;}
.y0_c01384{bottom:0.000000pt;}
.yd_c01384{bottom:347.906667pt;}
.ye_c01384{bottom:350.973333pt;}
.yb_c01384{bottom:834.053333pt;}
.yc_c01384{bottom:838.653333pt;}
.y6_c01384{bottom:974.586667pt;}
.y5_c01384{bottom:978.426667pt;}
.y4_c01384{bottom:1014.533333pt;}
.y3_c01384{bottom:1022.973333pt;}
.y2_c01384{bottom:1028.346667pt;}
.y1_c01384{bottom:1078.266667pt;}
.y9_c01384{bottom:1128.960000pt;}
.ya_c01384{bottom:1162.746667pt;}
.y8_c01384{bottom:1191.933333pt;}
.y7_c01384{bottom:1194.240000pt;}
.h8_c01384{height:4.799479pt;}
.ha_c01384{height:5.519401pt;}
.h7_c01384{height:7.689167pt;}
.h2_c01384{height:8.303099pt;}
.h9_c01384{height:13.822500pt;}
.h3_c01384{height:16.606198pt;}
.h5_c01384{height:19.341901pt;}
.h6_c01384{height:22.125599pt;}
.h4_c01384{height:124.402500pt;}
.h1_c01384{height:1345.333333pt;}
.h0_c01384{height:1345.533333pt;}
.w0_c01384{width:963.066667pt;}
.w1_c01384{width:963.333333pt;}
.x0_c01384{left:0.000000pt;}
.xa_c01384{left:788.733333pt;}
.x1_c01384{left:800.253333pt;}
.x2_c01384{left:810.240000pt;}
.x7_c01384{left:819.453333pt;}
.x8_c01384{left:836.346667pt;}
.x3_c01384{left:865.533333pt;}
.x5_c01384{left:868.613333pt;}
.x6_c01384{left:879.360000pt;}
.x4_c01384{left:916.986667pt;}
.xd_c01384{left:921.600413pt;}
.xb_c01384{left:931.586667pt;}
.xe_c01384{left:940.026667pt;}
.x9_c01384{left:946.173333pt;}
.xc_c01384{left:948.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_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;}
@font-face{font-family:ff1_c01385;src:url('chunks/assets/font_0e65f1bde4ee119e605c0dda.woff2')format("woff");}.ff1_c01385{font-family:ff1_c01385;line-height:1.109863;font-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_c01385{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m10_c01385{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.md_c01385{transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136050,0.000000,0.000000,0.250000,0,0);}
.m12_c01385{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.me_c01385{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mf_c01385{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);}
.ma_c01385{transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193500,0.000000,0.000000,0.250000,0,0);}
.m14_c01385{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);}
.m5_c01385{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);}
.m9_c01385{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m7_c01385{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);}
.mc_c01385{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mb_c01385{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_c01385{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01385{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2_c01385{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_c01385{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m1_c01385{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m11_c01385{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);}
.m6_c01385{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m4_c01385{transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.665000,0.000000,0.000000,0.250000,0,0);}
.m15_c01385{transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.992500,0.000000,0.000000,0.250000,0,0);}
.v0_c01385{vertical-align:0.000000px;}
.ls0_c01385{letter-spacing:0.000000px;}
.sc__c01385{text-shadow:none;}
.sc0_c01385{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01385{-webkit-text-stroke:0px transparent;}
.sc0_c01385{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01385{word-spacing:0.000000px;}
.fc0_c01385{color:transparent;}
.fsa_c01385{font-size:3.456000px;}
.fsd_c01385{font-size:6.000000px;}
.fs7_c01385{font-size:10.380000px;}
.fs0_c01385{font-size:13.800000px;}
.fs9_c01385{font-size:17.280000px;}
.fs8_c01385{font-size:20.760000px;}
.fse_c01385{font-size:31.080000px;}
.fsc_c01385{font-size:38.040000px;}
.fsf_c01385{font-size:41.460000px;}
.fs2_c01385{font-size:58.740000px;}
.fs3_c01385{font-size:62.220000px;}
.fs1_c01385{font-size:65.640000px;}
.fs6_c01385{font-size:69.120000px;}
.fs4_c01385{font-size:72.600000px;}
.fs5_c01385{font-size:82.920000px;}
.fsb_c01385{font-size:152.040000px;}
.y0_c01385{bottom:0.000000px;}
.y13_c01385{bottom:938.310000px;}
.y11_c01385{bottom:1091.235000px;}
.y12_c01385{bottom:1096.410000px;}
.y10_c01385{bottom:1097.280000px;}
.yf_c01385{bottom:1142.205000px;}
.ye_c01385{bottom:1152.570000px;}
.yd_c01385{bottom:1158.630000px;}
.yb_c01385{bottom:1189.725000px;}
.yc_c01385{bottom:1190.595000px;}
.ya_c01385{bottom:1213.050000px;}
.y8_c01385{bottom:1368.570000px;}
.y9_c01385{bottom:1371.165000px;}
.y7_c01385{bottom:1373.760000px;}
.y6_c01385{bottom:1375.485000px;}
.y5_c01385{bottom:1376.355000px;}
.y4_c01385{bottom:1395.360000px;}
.y3_c01385{bottom:1418.685000px;}
.y2_c01385{bottom:1423.875000px;}
.y1_c01385{bottom:1429.050000px;}
.hc_c01385{height:3.110063px;}
.hf_c01385{height:5.399414px;}
.h9_c01385{height:9.340986px;}
.h2_c01385{height:12.418652px;}
.hb_c01385{height:15.550313px;}
.ha_c01385{height:18.681973px;}
.h10_c01385{height:27.968965px;}
.he_c01385{height:34.232285px;}
.h11_c01385{height:37.309951px;}
.h4_c01385{height:52.860264px;}
.h5_c01385{height:55.991924px;}
.h3_c01385{height:59.069590px;}
.h8_c01385{height:62.201250px;}
.h6_c01385{height:65.332910px;}
.h7_c01385{height:74.619902px;}
.hd_c01385{height:136.821152px;}
.h1_c01385{height:1513.500000px;}
.h0_c01385{height:1513.725000px;}
.w0_c01385{width:1079.130000px;}
.w1_c01385{width:1079.250000px;}
.x0_c01385{left:0.000000px;}
.x14_c01385{left:3.450000px;}
.x15_c01385{left:13.830000px;}
.x10_c01385{left:37.155000px;}
.x11_c01385{left:48.390000px;}
.x16_c01385{left:84.675000px;}
.x12_c01385{left:110.595000px;}
.x17_c01385{left:114.045000px;}
.x13_c01385{left:168.480000px;}
.x18_c01385{left:185.760000px;}
.x5_c01385{left:361.155000px;}
.x6_c01385{left:422.490000px;}
.x4_c01385{left:430.275000px;}
.x7_c01385{left:442.365000px;}
.x8_c01385{left:463.110000px;}
.x9_c01385{left:479.520000px;}
.xa_c01385{left:495.930000px;}
.xb_c01385{left:540.870000px;}
.xc_c01385{left:564.195000px;}
.xd_c01385{left:615.165000px;}
.xe_c01385{left:635.910000px;}
.xf_c01385{left:725.760000px;}
.x1_c01385{left:750.810000px;}
.x2_c01385{left:754.275000px;}
.x3_c01385{left:758.595000px;}
@media print{
.v0_c01385{vertical-align:0.000000pt;}
.ls0_c01385{letter-spacing:0.000000pt;}
.ws0_c01385{word-spacing:0.000000pt;}
.fsa_c01385{font-size:3.072000pt;}
.fsd_c01385{font-size:5.333333pt;}
.fs7_c01385{font-size:9.226667pt;}
.fs0_c01385{font-size:12.266667pt;}
.fs9_c01385{font-size:15.360000pt;}
.fs8_c01385{font-size:18.453333pt;}
.fse_c01385{font-size:27.626667pt;}
.fsc_c01385{font-size:33.813333pt;}
.fsf_c01385{font-size:36.853333pt;}
.fs2_c01385{font-size:52.213333pt;}
.fs3_c01385{font-size:55.306667pt;}
.fs1_c01385{font-size:58.346667pt;}
.fs6_c01385{font-size:61.440000pt;}
.fs4_c01385{font-size:64.533333pt;}
.fs5_c01385{font-size:73.706667pt;}
.fsb_c01385{font-size:135.146667pt;}
.y0_c01385{bottom:0.000000pt;}
.y13_c01385{bottom:834.053333pt;}
.y11_c01385{bottom:969.986667pt;}
.y12_c01385{bottom:974.586667pt;}
.y10_c01385{bottom:975.360000pt;}
.yf_c01385{bottom:1015.293333pt;}
.ye_c01385{bottom:1024.506667pt;}
.yd_c01385{bottom:1029.893333pt;}
.yb_c01385{bottom:1057.533333pt;}
.yc_c01385{bottom:1058.306667pt;}
.ya_c01385{bottom:1078.266667pt;}
.y8_c01385{bottom:1216.506667pt;}
.y9_c01385{bottom:1218.813333pt;}
.y7_c01385{bottom:1221.120000pt;}
.y6_c01385{bottom:1222.653333pt;}
.y5_c01385{bottom:1223.426667pt;}
.y4_c01385{bottom:1240.320000pt;}
.y3_c01385{bottom:1261.053333pt;}
.y2_c01385{bottom:1265.666667pt;}
.y1_c01385{bottom:1270.266667pt;}
.hc_c01385{height:2.764500pt;}
.hf_c01385{height:4.799479pt;}
.h9_c01385{height:8.303099pt;}
.h2_c01385{height:11.038802pt;}
.hb_c01385{height:13.822500pt;}
.ha_c01385{height:16.606198pt;}
.h10_c01385{height:24.861302pt;}
.he_c01385{height:30.428698pt;}
.h11_c01385{height:33.164401pt;}
.h4_c01385{height:46.986901pt;}
.h5_c01385{height:49.770599pt;}
.h3_c01385{height:52.506302pt;}
.h8_c01385{height:55.290000pt;}
.h6_c01385{height:58.073698pt;}
.h7_c01385{height:66.328802pt;}
.hd_c01385{height:121.618802pt;}
.h1_c01385{height:1345.333333pt;}
.h0_c01385{height:1345.533333pt;}
.w0_c01385{width:959.226667pt;}
.w1_c01385{width:959.333333pt;}
.x0_c01385{left:0.000000pt;}
.x14_c01385{left:3.066667pt;}
.x15_c01385{left:12.293333pt;}
.x10_c01385{left:33.026667pt;}
.x11_c01385{left:43.013333pt;}
.x16_c01385{left:75.266667pt;}
.x12_c01385{left:98.306667pt;}
.x17_c01385{left:101.373333pt;}
.x13_c01385{left:149.760000pt;}
.x18_c01385{left:165.120000pt;}
.x5_c01385{left:321.026667pt;}
.x6_c01385{left:375.546667pt;}
.x4_c01385{left:382.466667pt;}
.x7_c01385{left:393.213333pt;}
.x8_c01385{left:411.653333pt;}
.x9_c01385{left:426.240000pt;}
.xa_c01385{left:440.826667pt;}
.xb_c01385{left:480.773333pt;}
.xc_c01385{left:501.506667pt;}
.xd_c01385{left:546.813333pt;}
.xe_c01385{left:565.253333pt;}
.xf_c01385{left:645.120000pt;}
.x1_c01385{left:667.386667pt;}
.x2_c01385{left:670.466667pt;}
.x3_c01385{left:674.306667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6e910167ac9916d2c1dbea94.woff2')format("woff");}.ff1_c01386{font-family:ff1_c01386;line-height:1.109863;font-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_c01386{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c01386{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,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;}
.fs1_c01386{font-size:10.380000px;}
.fs0_c01386{font-size:13.800000px;}
.y0_c01386{bottom:0.000000px;}
.y2_c01386{bottom:1257.990000px;}
.y1_c01386{bottom:1260.570000px;}
.h3_c01386{height:9.340986px;}
.h2_c01386{height:12.418652px;}
.h1_c01386{height:1513.500000px;}
.h0_c01386{height:1513.725000px;}
.w0_c01386{width:1083.450000px;}
.w1_c01386{width:1083.750000px;}
.x0_c01386{left:0.000000px;}
.x1_c01386{left:884.730000px;}
.x2_c01386{left:902.010000px;}
@media print{
.v0_c01386{vertical-align:0.000000pt;}
.ls0_c01386{letter-spacing:0.000000pt;}
.ws0_c01386{word-spacing:0.000000pt;}
.fs1_c01386{font-size:9.226667pt;}
.fs0_c01386{font-size:12.266667pt;}
.y0_c01386{bottom:0.000000pt;}
.y2_c01386{bottom:1118.213333pt;}
.y1_c01386{bottom:1120.506667pt;}
.h3_c01386{height:8.303099pt;}
.h2_c01386{height:11.038802pt;}
.h1_c01386{height:1345.333333pt;}
.h0_c01386{height:1345.533333pt;}
.w0_c01386{width:963.066667pt;}
.w1_c01386{width:963.333333pt;}
.x0_c01386{left:0.000000pt;}
.x1_c01386{left:786.426667pt;}
.x2_c01386{left:801.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7865f9e89099e85bc9e3cb0b.woff2')format("woff");}.ff1_c01387{font-family:ff1_c01387;line-height:1.109863;font-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_c01387{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);}
.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:600.000000px;}
.y0_c01387{bottom:0.000000px;}
.y1_c01387{bottom:15.000000px;}
.h2_c01387{height:539.941406px;}
.h1_c01387{height:1513.500000px;}
.h0_c01387{height:1513.725000px;}
.w0_c01387{width:1079.130000px;}
.w1_c01387{width:1079.250000px;}
.x0_c01387{left:0.000000px;}
.x1_c01387{left:15.000000px;}
@media print{
.v0_c01387{vertical-align:0.000000pt;}
.ls0_c01387{letter-spacing:0.000000pt;}
.ws0_c01387{word-spacing:0.000000pt;}
.fs0_c01387{font-size:533.333333pt;}
.y0_c01387{bottom:0.000000pt;}
.y1_c01387{bottom:13.333333pt;}
.h2_c01387{height:479.947917pt;}
.h1_c01387{height:1345.333333pt;}
.h0_c01387{height:1345.533333pt;}
.w0_c01387{width:959.226667pt;}
.w1_c01387{width:959.333333pt;}
.x0_c01387{left:0.000000pt;}
.x1_c01387{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53cc2a127b18fb738f082987.woff2')format("woff");}.ff1_c01388{font-family:ff1_c01388;line-height:1.109863;font-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_c01388{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m0_c01388{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,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:20.760000px;}
.fs1_c01388{font-size:27.660000px;}
.y0_c01388{bottom:0.000000px;}
.y2_c01388{bottom:1043.715000px;}
.y1_c01388{bottom:1118.880000px;}
.h2_c01388{height:18.681973px;}
.h3_c01388{height:24.891299px;}
.h1_c01388{height:1513.500000px;}
.h0_c01388{height:1513.725000px;}
.w0_c01388{width:1083.450000px;}
.w1_c01388{width:1083.750000px;}
.x0_c01388{left:0.000000px;}
.x2_c01388{left:966.810000px;}
.x1_c01388{left:991.005000px;}
@media print{
.v0_c01388{vertical-align:0.000000pt;}
.ls0_c01388{letter-spacing:0.000000pt;}
.ws0_c01388{word-spacing:0.000000pt;}
.fs0_c01388{font-size:18.453333pt;}
.fs1_c01388{font-size:24.586667pt;}
.y0_c01388{bottom:0.000000pt;}
.y2_c01388{bottom:927.746667pt;}
.y1_c01388{bottom:994.560000pt;}
.h2_c01388{height:16.606198pt;}
.h3_c01388{height:22.125599pt;}
.h1_c01388{height:1345.333333pt;}
.h0_c01388{height:1345.533333pt;}
.w0_c01388{width:963.066667pt;}
.w1_c01388{width:963.333333pt;}
.x0_c01388{left:0.000000pt;}
.x2_c01388{left:859.386667pt;}
.x1_c01388{left:880.893333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e537de963cbd7a8e594117f.woff2')format("woff");}.ff1_c01389{font-family:ff1_c01389;line-height:1.109863;font-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_c01389{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);}
.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:600.000000px;}
.y0_c01389{bottom:0.000000px;}
.y1_c01389{bottom:15.000000px;}
.h2_c01389{height:539.941406px;}
.h1_c01389{height:1513.500000px;}
.h0_c01389{height:1513.725000px;}
.w0_c01389{width:1079.130000px;}
.w1_c01389{width:1079.250000px;}
.x0_c01389{left:0.000000px;}
.x1_c01389{left:15.000000px;}
@media print{
.v0_c01389{vertical-align:0.000000pt;}
.ls0_c01389{letter-spacing:0.000000pt;}
.ws0_c01389{word-spacing:0.000000pt;}
.fs0_c01389{font-size:533.333333pt;}
.y0_c01389{bottom:0.000000pt;}
.y1_c01389{bottom:13.333333pt;}
.h2_c01389{height:479.947917pt;}
.h1_c01389{height:1345.333333pt;}
.h0_c01389{height:1345.533333pt;}
.w0_c01389{width:959.226667pt;}
.w1_c01389{width:959.333333pt;}
.x0_c01389{left:0.000000pt;}
.x1_c01389{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_118b05a24ab5a78b6e7fce4c.woff2')format("woff");}.ff1_c01390{font-family:ff1_c01390;line-height:1.109863;font-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_c01390{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);}
.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;}
.fs0_c01390{font-size:600.000000px;}
.y0_c01390{bottom:0.000000px;}
.y1_c01390{bottom:15.000000px;}
.h2_c01390{height:539.941406px;}
.h1_c01390{height:1513.500000px;}
.h0_c01390{height:1513.725000px;}
.w0_c01390{width:1083.450000px;}
.w1_c01390{width:1083.750000px;}
.x0_c01390{left:0.000000px;}
.x1_c01390{left:15.000000px;}
@media print{
.v0_c01390{vertical-align:0.000000pt;}
.ls0_c01390{letter-spacing:0.000000pt;}
.ws0_c01390{word-spacing:0.000000pt;}
.fs0_c01390{font-size:533.333333pt;}
.y0_c01390{bottom:0.000000pt;}
.y1_c01390{bottom:13.333333pt;}
.h2_c01390{height:479.947917pt;}
.h1_c01390{height:1345.333333pt;}
.h0_c01390{height:1345.533333pt;}
.w0_c01390{width:963.066667pt;}
.w1_c01390{width:963.333333pt;}
.x0_c01390{left:0.000000pt;}
.x1_c01390{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_29eefc41da0a9e6044d88dbe.woff2')format("woff");}.ff1_c01391{font-family:ff1_c01391;line-height:1.109863;font-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_c01391{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m51_c01391{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m43_c01391{transform:matrix(0.120250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120250,0.000000,0.000000,0.250000,0,0);}
.m29_c01391{transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133050,0.000000,0.000000,0.250000,0,0);}
.m3a_c01391{transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);}
.m36_c01391{transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143625,0.000000,0.000000,0.250000,0,0);}
.m13_c01391{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m54_c01391{transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145225,0.000000,0.000000,0.250000,0,0);}
.m37_c01391{transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145525,0.000000,0.000000,0.250000,0,0);}
.m1b_c01391{transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146400,0.000000,0.000000,0.250000,0,0);}
.m50_c01391{transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150250,0.000000,0.000000,0.250000,0,0);}
.m35_c01391{transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150325,0.000000,0.000000,0.250000,0,0);}
.m1c_c01391{transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150600,0.000000,0.000000,0.250000,0,0);}
.m46_c01391{transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156250,0.000000,0.000000,0.250000,0,0);}
.m2a_c01391{transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);}
.m2e_c01391{transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161050,0.000000,0.000000,0.250000,0,0);}
.m1e_c01391{transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162225,0.000000,0.000000,0.250000,0,0);}
.m33_c01391{transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163700,0.000000,0.000000,0.250000,0,0);}
.m3d_c01391{transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164350,0.000000,0.000000,0.250000,0,0);}
.m1f_c01391{transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170400,0.000000,0.000000,0.250000,0,0);}
.m4c_c01391{transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173825,0.000000,0.000000,0.250000,0,0);}
.m19_c01391{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);}
.m4a_c01391{transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175825,0.000000,0.000000,0.250000,0,0);}
.m31_c01391{transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177725,0.000000,0.000000,0.250000,0,0);}
.m38_c01391{transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178300,0.000000,0.000000,0.250000,0,0);}
.m2c_c01391{transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181950,0.000000,0.000000,0.250000,0,0);}
.m20_c01391{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);}
.m6_c01391{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m3b_c01391{transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187875,0.000000,0.000000,0.250000,0,0);}
.m48_c01391{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.m39_c01391{transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194525,0.000000,0.000000,0.250000,0,0);}
.m2b_c01391{transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196800,0.000000,0.000000,0.250000,0,0);}
.m22_c01391{transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200850,0.000000,0.000000,0.250000,0,0);}
.m4_c01391{transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206450,0.000000,0.000000,0.250000,0,0);}
.m4b_c01391{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);}
.m3c_c01391{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);}
.m4f_c01391{transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01391{transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216175,0.000000,0.000000,0.250000,0,0);}
.m55_c01391{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);}
.mf_c01391{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);}
.m32_c01391{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m2d_c01391{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);}
.m42_c01391{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);}
.m1d_c01391{transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236975,0.000000,0.000000,0.250000,0,0);}
.m16_c01391{transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237750,0.000000,0.000000,0.250000,0,0);}
.m23_c01391{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);}
.m28_c01391{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);}
.m4e_c01391{transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242950,0.000000,0.000000,0.250000,0,0);}
.m17_c01391{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);}
.m18_c01391{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);}
.m5_c01391{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m40_c01391{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);}
.m25_c01391{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);}
.m49_c01391{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);}
.md_c01391{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c01391{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m53_c01391{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m26_c01391{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);}
.m41_c01391{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);}
.m24_c01391{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);}
.m8_c01391{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m34_c01391{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mb_c01391{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m21_c01391{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);}
.m4d_c01391{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);}
.m2_c01391{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01391{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.ma_c01391{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m9_c01391{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);}
.m3_c01391{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);}
.m27_c01391{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);}
.m2f_c01391{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01391{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);}
.m7_c01391{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m45_c01391{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m15_c01391{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);}
.mc_c01391{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m11_c01391{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m47_c01391{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m30_c01391{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m52_c01391{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);}
.me_c01391{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c01391{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);}
.m1_c01391{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m0_c01391{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m12_c01391{transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.870000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.870000,0.000000,0.000000,0.250000,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;}
.fs5_c01391{font-size:3.456000px;}
.fs9_c01391{font-size:6.000000px;}
.fsc_c01391{font-size:6.900000px;}
.fsa_c01391{font-size:10.380000px;}
.fs17_c01391{font-size:13.800000px;}
.fsb_c01391{font-size:17.280000px;}
.fs1_c01391{font-size:20.760000px;}
.fs0_c01391{font-size:31.080000px;}
.fs16_c01391{font-size:34.560000px;}
.fs13_c01391{font-size:38.040000px;}
.fsd_c01391{font-size:41.460000px;}
.fsf_c01391{font-size:44.940000px;}
.fs15_c01391{font-size:48.360000px;}
.fse_c01391{font-size:51.840000px;}
.fs8_c01391{font-size:55.320000px;}
.fs6_c01391{font-size:58.740000px;}
.fs3_c01391{font-size:62.220000px;}
.fs4_c01391{font-size:65.640000px;}
.fs2_c01391{font-size:69.120000px;}
.fs7_c01391{font-size:72.600000px;}
.fs11_c01391{font-size:76.020000px;}
.fs12_c01391{font-size:79.500000px;}
.fs14_c01391{font-size:82.920000px;}
.fs10_c01391{font-size:86.400000px;}
.y0_c01391{bottom:0.000000px;}
.y4b_c01391{bottom:1145.670000px;}
.y4a_c01391{bottom:1147.395000px;}
.y47_c01391{bottom:1149.120000px;}
.y49_c01391{bottom:1152.570000px;}
.y48_c01391{bottom:1153.440000px;}
.y46_c01391{bottom:1154.310000px;}
.y4c_c01391{bottom:1164.675000px;}
.y45_c01391{bottom:1166.400000px;}
.y44_c01391{bottom:1167.270000px;}
.y42_c01391{bottom:1168.995000px;}
.y43_c01391{bottom:1172.445000px;}
.y41_c01391{bottom:1174.170000px;}
.y40_c01391{bottom:1184.550000px;}
.y3c_c01391{bottom:1186.275000px;}
.y3b_c01391{bottom:1187.130000px;}
.y3a_c01391{bottom:1188.000000px;}
.y3d_c01391{bottom:1190.595000px;}
.y3f_c01391{bottom:1192.320000px;}
.y3e_c01391{bottom:1193.190000px;}
.y39_c01391{bottom:1194.045000px;}
.y38_c01391{bottom:1194.915000px;}
.y37_c01391{bottom:1206.150000px;}
.y35_c01391{bottom:1207.875000px;}
.y36_c01391{bottom:1208.730000px;}
.y33_c01391{bottom:1209.600000px;}
.y32_c01391{bottom:1210.470000px;}
.y34_c01391{bottom:1213.050000px;}
.y31_c01391{bottom:1222.560000px;}
.y30_c01391{bottom:1226.010000px;}
.y2f_c01391{bottom:1227.750000px;}
.y2e_c01391{bottom:1228.605000px;}
.y2d_c01391{bottom:1229.475000px;}
.y2c_c01391{bottom:1231.200000px;}
.y2a_c01391{bottom:1247.610000px;}
.y28_c01391{bottom:1249.350000px;}
.y2b_c01391{bottom:1251.930000px;}
.y27_c01391{bottom:1252.800000px;}
.y29_c01391{bottom:1253.670000px;}
.y26_c01391{bottom:1256.250000px;}
.y25_c01391{bottom:1257.120000px;}
.y24_c01391{bottom:1268.355000px;}
.y22_c01391{bottom:1269.210000px;}
.y23_c01391{bottom:1270.080000px;}
.y20_c01391{bottom:1270.950000px;}
.y21_c01391{bottom:1274.400000px;}
.y1e_c01391{bottom:1287.360000px;}
.y1d_c01391{bottom:1289.085000px;}
.y1c_c01391{bottom:1291.680000px;}
.y1b_c01391{bottom:1296.870000px;}
.y1a_c01391{bottom:1297.725000px;}
.y1f_c01391{bottom:1303.770000px;}
.y18_c01391{bottom:1308.960000px;}
.y17_c01391{bottom:1310.685000px;}
.y19_c01391{bottom:1315.005000px;}
.y16_c01391{bottom:1317.600000px;}
.y11_c01391{bottom:1333.155000px;}
.y12_c01391{bottom:1334.010000px;}
.y13_c01391{bottom:1334.880000px;}
.y15_c01391{bottom:1336.605000px;}
.y10_c01391{bottom:1337.475000px;}
.y2_c01391{bottom:1340.925000px;}
.y14_c01391{bottom:1346.115000px;}
.yf_c01391{bottom:1348.710000px;}
.ye_c01391{bottom:1357.350000px;}
.yb_c01391{bottom:1359.075000px;}
.yd_c01391{bottom:1359.930000px;}
.ya_c01391{bottom:1360.800000px;}
.y9_c01391{bottom:1362.525000px;}
.yc_c01391{bottom:1363.395000px;}
.y7_c01391{bottom:1364.250000px;}
.y8_c01391{bottom:1365.120000px;}
.y6_c01391{bottom:1365.990000px;}
.y3_c01391{bottom:1366.845000px;}
.y4_c01391{bottom:1367.715000px;}
.y5_c01391{bottom:1372.035000px;}
.y1_c01391{bottom:1385.850000px;}
.h7_c01391{height:3.110063px;}
.hb_c01391{height:5.399414px;}
.he_c01391{height:6.209326px;}
.hc_c01391{height:9.340986px;}
.h19_c01391{height:12.418652px;}
.hd_c01391{height:15.550313px;}
.h3_c01391{height:18.681973px;}
.h2_c01391{height:27.968965px;}
.h18_c01391{height:31.100625px;}
.h15_c01391{height:34.232285px;}
.hf_c01391{height:37.309951px;}
.h11_c01391{height:40.441611px;}
.h17_c01391{height:43.519277px;}
.h10_c01391{height:46.650937px;}
.ha_c01391{height:49.782598px;}
.h8_c01391{height:52.860264px;}
.h5_c01391{height:55.991924px;}
.h6_c01391{height:59.069590px;}
.h4_c01391{height:62.201250px;}
.h9_c01391{height:65.332910px;}
.h13_c01391{height:68.410576px;}
.h14_c01391{height:71.542236px;}
.h16_c01391{height:74.619902px;}
.h12_c01391{height:77.751563px;}
.h1_c01391{height:1513.500000px;}
.h0_c01391{height:1513.725000px;}
.w0_c01391{width:1079.130000px;}
.w1_c01391{width:1079.250000px;}
.x0_c01391{left:0.000000px;}
.x45_c01391{left:58.755000px;}
.x44_c01391{left:163.290000px;}
.x2_c01391{left:306.720000px;}
.x3_c01391{left:373.245000px;}
.x12_c01391{left:419.040000px;}
.x4_c01391{left:428.550000px;}
.x5_c01391{left:459.645000px;}
.x13_c01391{left:475.200000px;}
.x6_c01391{left:478.650000px;}
.x14_c01391{left:482.970000px;}
.x7_c01391{left:495.075000px;}
.x8_c01391{left:511.485000px;}
.x15_c01391{left:514.950000px;}
.x16_c01391{left:535.680000px;}
.x9_c01391{left:544.320000px;}
.xa_c01391{left:558.150000px;}
.xb_c01391{left:580.605000px;}
.x1a_c01391{left:590.970000px;}
.x36_c01391{left:598.755000px;}
.xc_c01391{left:604.800000px;}
.x2e_c01391{left:607.395000px;}
.x28_c01391{left:609.990000px;}
.xd_c01391{left:628.125000px;}
.x17_c01391{left:630.720000px;}
.x23_c01391{left:635.910000px;}
.x40_c01391{left:637.635000px;}
.x18_c01391{left:639.360000px;}
.x33_c01391{left:647.130000px;}
.x39_c01391{left:648.870000px;}
.x24_c01391{left:650.595000px;}
.xe_c01391{left:654.045000px;}
.x3a_c01391{left:666.150000px;}
.x29_c01391{left:667.875000px;}
.x1b_c01391{left:671.325000px;}
.x2f_c01391{left:673.920000px;}
.xf_c01391{left:679.110000px;}
.x41_c01391{left:691.200000px;}
.x1c_c01391{left:694.650000px;}
.x10_c01391{left:698.115000px;}
.x3b_c01391{left:699.840000px;}
.x42_c01391{left:703.290000px;}
.x1d_c01391{left:711.075000px;}
.x11_c01391{left:719.715000px;}
.x30_c01391{left:727.485000px;}
.x3e_c01391{left:735.270000px;}
.x2a_c01391{left:736.995000px;}
.x19_c01391{left:747.360000px;}
.x37_c01391{left:749.955000px;}
.x25_c01391{left:758.595000px;}
.x2b_c01391{left:764.640000px;}
.x34_c01391{left:768.090000px;}
.x31_c01391{left:782.790000px;}
.x1e_c01391{left:784.515000px;}
.x26_c01391{left:790.560000px;}
.x1f_c01391{left:796.605000px;}
.x20_c01391{left:809.565000px;}
.x3c_c01391{left:811.290000px;}
.x2c_c01391{left:816.480000px;}
.x32_c01391{left:828.570000px;}
.x21_c01391{left:831.165000px;}
.x3d_c01391{left:832.890000px;}
.x22_c01391{left:844.995000px;}
.x35_c01391{left:851.040000px;}
.x43_c01391{left:852.765000px;}
.x38_c01391{left:858.810000px;}
.x27_c01391{left:866.595000px;}
.x3f_c01391{left:888.195000px;}
.x2d_c01391{left:902.010000px;}
.x1_c01391{left:963.360000px;}
@media print{
.v0_c01391{vertical-align:0.000000pt;}
.ls0_c01391{letter-spacing:0.000000pt;}
.ws0_c01391{word-spacing:0.000000pt;}
.fs5_c01391{font-size:3.072000pt;}
.fs9_c01391{font-size:5.333333pt;}
.fsc_c01391{font-size:6.133333pt;}
.fsa_c01391{font-size:9.226667pt;}
.fs17_c01391{font-size:12.266667pt;}
.fsb_c01391{font-size:15.360000pt;}
.fs1_c01391{font-size:18.453333pt;}
.fs0_c01391{font-size:27.626667pt;}
.fs16_c01391{font-size:30.720000pt;}
.fs13_c01391{font-size:33.813333pt;}
.fsd_c01391{font-size:36.853333pt;}
.fsf_c01391{font-size:39.946667pt;}
.fs15_c01391{font-size:42.986667pt;}
.fse_c01391{font-size:46.080000pt;}
.fs8_c01391{font-size:49.173333pt;}
.fs6_c01391{font-size:52.213333pt;}
.fs3_c01391{font-size:55.306667pt;}
.fs4_c01391{font-size:58.346667pt;}
.fs2_c01391{font-size:61.440000pt;}
.fs7_c01391{font-size:64.533333pt;}
.fs11_c01391{font-size:67.573333pt;}
.fs12_c01391{font-size:70.666667pt;}
.fs14_c01391{font-size:73.706667pt;}
.fs10_c01391{font-size:76.800000pt;}
.y0_c01391{bottom:0.000000pt;}
.y4b_c01391{bottom:1018.373333pt;}
.y4a_c01391{bottom:1019.906667pt;}
.y47_c01391{bottom:1021.440000pt;}
.y49_c01391{bottom:1024.506667pt;}
.y48_c01391{bottom:1025.280000pt;}
.y46_c01391{bottom:1026.053333pt;}
.y4c_c01391{bottom:1035.266667pt;}
.y45_c01391{bottom:1036.800000pt;}
.y44_c01391{bottom:1037.573333pt;}
.y42_c01391{bottom:1039.106667pt;}
.y43_c01391{bottom:1042.173333pt;}
.y41_c01391{bottom:1043.706667pt;}
.y40_c01391{bottom:1052.933333pt;}
.y3c_c01391{bottom:1054.466667pt;}
.y3b_c01391{bottom:1055.226667pt;}
.y3a_c01391{bottom:1056.000000pt;}
.y3d_c01391{bottom:1058.306667pt;}
.y3f_c01391{bottom:1059.840000pt;}
.y3e_c01391{bottom:1060.613333pt;}
.y39_c01391{bottom:1061.373333pt;}
.y38_c01391{bottom:1062.146667pt;}
.y37_c01391{bottom:1072.133333pt;}
.y35_c01391{bottom:1073.666667pt;}
.y36_c01391{bottom:1074.426667pt;}
.y33_c01391{bottom:1075.200000pt;}
.y32_c01391{bottom:1075.973333pt;}
.y34_c01391{bottom:1078.266667pt;}
.y31_c01391{bottom:1086.720000pt;}
.y30_c01391{bottom:1089.786667pt;}
.y2f_c01391{bottom:1091.333333pt;}
.y2e_c01391{bottom:1092.093333pt;}
.y2d_c01391{bottom:1092.866667pt;}
.y2c_c01391{bottom:1094.400000pt;}
.y2a_c01391{bottom:1108.986667pt;}
.y28_c01391{bottom:1110.533333pt;}
.y2b_c01391{bottom:1112.826667pt;}
.y27_c01391{bottom:1113.600000pt;}
.y29_c01391{bottom:1114.373333pt;}
.y26_c01391{bottom:1116.666667pt;}
.y25_c01391{bottom:1117.440000pt;}
.y24_c01391{bottom:1127.426667pt;}
.y22_c01391{bottom:1128.186667pt;}
.y23_c01391{bottom:1128.960000pt;}
.y20_c01391{bottom:1129.733333pt;}
.y21_c01391{bottom:1132.800000pt;}
.y1e_c01391{bottom:1144.320000pt;}
.y1d_c01391{bottom:1145.853333pt;}
.y1c_c01391{bottom:1148.160000pt;}
.y1b_c01391{bottom:1152.773333pt;}
.y1a_c01391{bottom:1153.533333pt;}
.y1f_c01391{bottom:1158.906667pt;}
.y18_c01391{bottom:1163.520000pt;}
.y17_c01391{bottom:1165.053333pt;}
.y19_c01391{bottom:1168.893333pt;}
.y16_c01391{bottom:1171.200000pt;}
.y11_c01391{bottom:1185.026667pt;}
.y12_c01391{bottom:1185.786667pt;}
.y13_c01391{bottom:1186.560000pt;}
.y15_c01391{bottom:1188.093333pt;}
.y10_c01391{bottom:1188.866667pt;}
.y2_c01391{bottom:1191.933333pt;}
.y14_c01391{bottom:1196.546667pt;}
.yf_c01391{bottom:1198.853333pt;}
.ye_c01391{bottom:1206.533333pt;}
.yb_c01391{bottom:1208.066667pt;}
.yd_c01391{bottom:1208.826667pt;}
.ya_c01391{bottom:1209.600000pt;}
.y9_c01391{bottom:1211.133333pt;}
.yc_c01391{bottom:1211.906667pt;}
.y7_c01391{bottom:1212.666667pt;}
.y8_c01391{bottom:1213.440000pt;}
.y6_c01391{bottom:1214.213333pt;}
.y3_c01391{bottom:1214.973333pt;}
.y4_c01391{bottom:1215.746667pt;}
.y5_c01391{bottom:1219.586667pt;}
.y1_c01391{bottom:1231.866667pt;}
.h7_c01391{height:2.764500pt;}
.hb_c01391{height:4.799479pt;}
.he_c01391{height:5.519401pt;}
.hc_c01391{height:8.303099pt;}
.h19_c01391{height:11.038802pt;}
.hd_c01391{height:13.822500pt;}
.h3_c01391{height:16.606198pt;}
.h2_c01391{height:24.861302pt;}
.h18_c01391{height:27.645000pt;}
.h15_c01391{height:30.428698pt;}
.hf_c01391{height:33.164401pt;}
.h11_c01391{height:35.948099pt;}
.h17_c01391{height:38.683802pt;}
.h10_c01391{height:41.467500pt;}
.ha_c01391{height:44.251198pt;}
.h8_c01391{height:46.986901pt;}
.h5_c01391{height:49.770599pt;}
.h6_c01391{height:52.506302pt;}
.h4_c01391{height:55.290000pt;}
.h9_c01391{height:58.073698pt;}
.h13_c01391{height:60.809401pt;}
.h14_c01391{height:63.593099pt;}
.h16_c01391{height:66.328802pt;}
.h12_c01391{height:69.112500pt;}
.h1_c01391{height:1345.333333pt;}
.h0_c01391{height:1345.533333pt;}
.w0_c01391{width:959.226667pt;}
.w1_c01391{width:959.333333pt;}
.x0_c01391{left:0.000000pt;}
.x45_c01391{left:52.226667pt;}
.x44_c01391{left:145.146667pt;}
.x2_c01391{left:272.640000pt;}
.x3_c01391{left:331.773333pt;}
.x12_c01391{left:372.480000pt;}
.x4_c01391{left:380.933333pt;}
.x5_c01391{left:408.573333pt;}
.x13_c01391{left:422.400000pt;}
.x6_c01391{left:425.466667pt;}
.x14_c01391{left:429.306667pt;}
.x7_c01391{left:440.066667pt;}
.x8_c01391{left:454.653333pt;}
.x15_c01391{left:457.733333pt;}
.x16_c01391{left:476.160000pt;}
.x9_c01391{left:483.840000pt;}
.xa_c01391{left:496.133333pt;}
.xb_c01391{left:516.093333pt;}
.x1a_c01391{left:525.306667pt;}
.x36_c01391{left:532.226667pt;}
.xc_c01391{left:537.600000pt;}
.x2e_c01391{left:539.906667pt;}
.x28_c01391{left:542.213333pt;}
.xd_c01391{left:558.333333pt;}
.x17_c01391{left:560.640000pt;}
.x23_c01391{left:565.253333pt;}
.x40_c01391{left:566.786667pt;}
.x18_c01391{left:568.320000pt;}
.x33_c01391{left:575.226667pt;}
.x39_c01391{left:576.773333pt;}
.x24_c01391{left:578.306667pt;}
.xe_c01391{left:581.373333pt;}
.x3a_c01391{left:592.133333pt;}
.x29_c01391{left:593.666667pt;}
.x1b_c01391{left:596.733333pt;}
.x2f_c01391{left:599.040000pt;}
.xf_c01391{left:603.653333pt;}
.x41_c01391{left:614.400000pt;}
.x1c_c01391{left:617.466667pt;}
.x10_c01391{left:620.546667pt;}
.x3b_c01391{left:622.080000pt;}
.x42_c01391{left:625.146667pt;}
.x1d_c01391{left:632.066667pt;}
.x11_c01391{left:639.746667pt;}
.x30_c01391{left:646.653333pt;}
.x3e_c01391{left:653.573333pt;}
.x2a_c01391{left:655.106667pt;}
.x19_c01391{left:664.320000pt;}
.x37_c01391{left:666.626667pt;}
.x25_c01391{left:674.306667pt;}
.x2b_c01391{left:679.680000pt;}
.x34_c01391{left:682.746667pt;}
.x31_c01391{left:695.813333pt;}
.x1e_c01391{left:697.346667pt;}
.x26_c01391{left:702.720000pt;}
.x1f_c01391{left:708.093333pt;}
.x20_c01391{left:719.613333pt;}
.x3c_c01391{left:721.146667pt;}
.x2c_c01391{left:725.760000pt;}
.x32_c01391{left:736.506667pt;}
.x21_c01391{left:738.813333pt;}
.x3d_c01391{left:740.346667pt;}
.x22_c01391{left:751.106667pt;}
.x35_c01391{left:756.480000pt;}
.x43_c01391{left:758.013333pt;}
.x38_c01391{left:763.386667pt;}
.x27_c01391{left:770.306667pt;}
.x3f_c01391{left:789.506667pt;}
.x2d_c01391{left:801.786667pt;}
.x1_c01391{left:856.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_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_3b07e3a143d837ac578ba07e.woff2')format("woff");}.ff1_c01392{font-family:ff1_c01392;line-height:1.109863;font-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_c01392{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);}
.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;}
.fs0_c01392{font-size:600.000000px;}
.y0_c01392{bottom:0.000000px;}
.y1_c01392{bottom:15.000000px;}
.h2_c01392{height:539.941406px;}
.h1_c01392{height:1513.500000px;}
.h0_c01392{height:1513.725000px;}
.w0_c01392{width:1083.450000px;}
.w1_c01392{width:1083.750000px;}
.x0_c01392{left:0.000000px;}
.x1_c01392{left:15.000000px;}
@media print{
.v0_c01392{vertical-align:0.000000pt;}
.ls0_c01392{letter-spacing:0.000000pt;}
.ws0_c01392{word-spacing:0.000000pt;}
.fs0_c01392{font-size:533.333333pt;}
.y0_c01392{bottom:0.000000pt;}
.y1_c01392{bottom:13.333333pt;}
.h2_c01392{height:479.947917pt;}
.h1_c01392{height:1345.333333pt;}
.h0_c01392{height:1345.533333pt;}
.w0_c01392{width:963.066667pt;}
.w1_c01392{width:963.333333pt;}
.x0_c01392{left:0.000000pt;}
.x1_c01392{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01393;src:url('chunks/assets/font_1f903096ba59bcbe6bd2d736.woff2')format("woff");}.ff1_c01393{font-family:ff1_c01393;line-height:1.109863;font-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_c01393{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c01393{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c01393{transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159350,0.000000,0.000000,0.250000,0,0);}
.m1_c01393{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m9_c01393{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);}
.m6_c01393{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01393{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c01393{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m5_c01393{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m7_c01393{transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.605000,0.000000,0.000000,0.250000,0,0);}
.v0_c01393{vertical-align:0.000000px;}
.v1_c01393{vertical-align:3.420000px;}
.v2_c01393{vertical-align:6.900000px;}
.ls2_c01393{letter-spacing:0.000000px;}
.ls0_c01393{letter-spacing:62.219400px;}
.ls1_c01393{letter-spacing:87.695640px;}
.sc__c01393{text-shadow:none;}
.sc0_c01393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01393{-webkit-text-stroke:0px transparent;}
.sc0_c01393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01393{word-spacing:0.000000px;}
.fc0_c01393{color:transparent;}
.fsa_c01393{font-size:6.000000px;}
.fs4_c01393{font-size:6.900000px;}
.fs3_c01393{font-size:10.380000px;}
.fs2_c01393{font-size:13.800000px;}
.fs5_c01393{font-size:17.280000px;}
.fs8_c01393{font-size:20.760000px;}
.fs6_c01393{font-size:24.180000px;}
.fs7_c01393{font-size:27.660000px;}
.fs0_c01393{font-size:34.560000px;}
.fs9_c01393{font-size:51.840000px;}
.fs1_c01393{font-size:190.080000px;}
.y0_c01393{bottom:0.000000px;}
.yd_c01393{bottom:538.275000px;}
.yf_c01393{bottom:540.000000px;}
.ye_c01393{bottom:544.320000px;}
.y5_c01393{bottom:571.965000px;}
.y4_c01393{bottom:573.690000px;}
.yc_c01393{bottom:622.950000px;}
.yb_c01393{bottom:725.760000px;}
.ya_c01393{bottom:727.485000px;}
.y9_c01393{bottom:731.805000px;}
.y8_c01393{bottom:734.400000px;}
.y3_c01393{bottom:736.995000px;}
.y2_c01393{bottom:851.910000px;}
.y1_c01393{bottom:901.155000px;}
.y6_c01393{bottom:1219.965000px;}
.y7_c01393{bottom:1221.690000px;}
.hd_c01393{height:5.399414px;}
.h8_c01393{height:6.209326px;}
.h5_c01393{height:9.340986px;}
.ha_c01393{height:12.418652px;}
.h4_c01393{height:13.109326px;}
.h6_c01393{height:15.550313px;}
.hb_c01393{height:18.681973px;}
.h7_c01393{height:21.759639px;}
.h9_c01393{height:24.891299px;}
.h2_c01393{height:31.100625px;}
.hc_c01393{height:46.650937px;}
.h3_c01393{height:171.053437px;}
.h1_c01393{height:1513.500000px;}
.h0_c01393{height:1513.725000px;}
.w0_c01393{width:1079.130000px;}
.w1_c01393{width:1079.250000px;}
.x0_c01393{left:0.000000px;}
.x4_c01393{left:82.950096px;}
.x3_c01393{left:85.530000px;}
.x5_c01393{left:95.040000px;}
.x2_c01393{left:97.635000px;}
.x1_c01393{left:113.190000px;}
.xc_c01393{left:136.515000px;}
.x9_c01393{left:152.070000px;}
.x8_c01393{left:157.245000px;}
.x6_c01393{left:165.030000px;}
.xa_c01393{left:171.930000px;}
.xb_c01393{left:178.845000px;}
.x7_c01393{left:182.310000px;}
@media print{
.v0_c01393{vertical-align:0.000000pt;}
.v1_c01393{vertical-align:3.040000pt;}
.v2_c01393{vertical-align:6.133333pt;}
.ls2_c01393{letter-spacing:0.000000pt;}
.ls0_c01393{letter-spacing:55.306133pt;}
.ls1_c01393{letter-spacing:77.951680pt;}
.ws0_c01393{word-spacing:0.000000pt;}
.fsa_c01393{font-size:5.333333pt;}
.fs4_c01393{font-size:6.133333pt;}
.fs3_c01393{font-size:9.226667pt;}
.fs2_c01393{font-size:12.266667pt;}
.fs5_c01393{font-size:15.360000pt;}
.fs8_c01393{font-size:18.453333pt;}
.fs6_c01393{font-size:21.493333pt;}
.fs7_c01393{font-size:24.586667pt;}
.fs0_c01393{font-size:30.720000pt;}
.fs9_c01393{font-size:46.080000pt;}
.fs1_c01393{font-size:168.960000pt;}
.y0_c01393{bottom:0.000000pt;}
.yd_c01393{bottom:478.466667pt;}
.yf_c01393{bottom:480.000000pt;}
.ye_c01393{bottom:483.840000pt;}
.y5_c01393{bottom:508.413333pt;}
.y4_c01393{bottom:509.946667pt;}
.yc_c01393{bottom:553.733333pt;}
.yb_c01393{bottom:645.120000pt;}
.ya_c01393{bottom:646.653333pt;}
.y9_c01393{bottom:650.493333pt;}
.y8_c01393{bottom:652.800000pt;}
.y3_c01393{bottom:655.106667pt;}
.y2_c01393{bottom:757.253333pt;}
.y1_c01393{bottom:801.026667pt;}
.y6_c01393{bottom:1084.413333pt;}
.y7_c01393{bottom:1085.946667pt;}
.hd_c01393{height:4.799479pt;}
.h8_c01393{height:5.519401pt;}
.h5_c01393{height:8.303099pt;}
.ha_c01393{height:11.038802pt;}
.h4_c01393{height:11.652734pt;}
.h6_c01393{height:13.822500pt;}
.hb_c01393{height:16.606198pt;}
.h7_c01393{height:19.341901pt;}
.h9_c01393{height:22.125599pt;}
.h2_c01393{height:27.645000pt;}
.hc_c01393{height:41.467500pt;}
.h3_c01393{height:152.047500pt;}
.h1_c01393{height:1345.333333pt;}
.h0_c01393{height:1345.533333pt;}
.w0_c01393{width:959.226667pt;}
.w1_c01393{width:959.333333pt;}
.x0_c01393{left:0.000000pt;}
.x4_c01393{left:73.733419pt;}
.x3_c01393{left:76.026667pt;}
.x5_c01393{left:84.480000pt;}
.x2_c01393{left:86.786667pt;}
.x1_c01393{left:100.613333pt;}
.xc_c01393{left:121.346667pt;}
.x9_c01393{left:135.173333pt;}
.x8_c01393{left:139.773333pt;}
.x6_c01393{left:146.693333pt;}
.xa_c01393{left:152.826667pt;}
.xb_c01393{left:158.973333pt;}
.x7_c01393{left:162.053333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c9b5ea30bfb450ebe1fbedc.woff2')format("woff");}.ff1_c01394{font-family:ff1_c01394;line-height:1.109863;font-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.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);}
.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;}
.fs0_c01394{font-size:600.000000px;}
.y0_c01394{bottom:0.000000px;}
.y1_c01394{bottom:15.000000px;}
.h2_c01394{height:539.941406px;}
.h1_c01394{height:1513.500000px;}
.h0_c01394{height:1513.725000px;}
.w0_c01394{width:1083.450000px;}
.w1_c01394{width:1083.750000px;}
.x0_c01394{left:0.000000px;}
.x1_c01394{left:15.000000px;}
@media print{
.v0_c01394{vertical-align:0.000000pt;}
.ls0_c01394{letter-spacing:0.000000pt;}
.ws0_c01394{word-spacing:0.000000pt;}
.fs0_c01394{font-size:533.333333pt;}
.y0_c01394{bottom:0.000000pt;}
.y1_c01394{bottom:13.333333pt;}
.h2_c01394{height:479.947917pt;}
.h1_c01394{height:1345.333333pt;}
.h0_c01394{height:1345.533333pt;}
.w0_c01394{width:963.066667pt;}
.w1_c01394{width:963.333333pt;}
.x0_c01394{left:0.000000pt;}
.x1_c01394{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd9e4d16ee13afec23aed878.woff2')format("woff");}.ff1_c01395{font-family:ff1_c01395;line-height:1.109863;font-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_c01395{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me_c01395{transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168675,0.000000,0.000000,0.250000,0,0);}
.m5_c01395{transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178750,0.000000,0.000000,0.250000,0,0);}
.m1_c01395{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.m4_c01395{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m14_c01395{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);}
.m9_c01395{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);}
.m1a_c01395{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m13_c01395{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m2_c01395{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);}
.m18_c01395{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mf_c01395{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.mc_c01395{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);}
.mb_c01395{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);}
.ma_c01395{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m11_c01395{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);}
.m3_c01395{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);}
.m7_c01395{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m8_c01395{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.md_c01395{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m12_c01395{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);}
.m16_c01395{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);}
.m10_c01395{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m19_c01395{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m0_c01395{transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655000,0.000000,0.000000,0.250000,0,0);}
.m15_c01395{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m17_c01395{transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.172500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.172500,0.000000,0.000000,0.250000,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;}
.fsb_c01395{font-size:3.456000px;}
.fs5_c01395{font-size:6.000000px;}
.fs10_c01395{font-size:10.380000px;}
.fs11_c01395{font-size:13.800000px;}
.fs0_c01395{font-size:17.280000px;}
.fsf_c01395{font-size:20.760000px;}
.fs6_c01395{font-size:31.080000px;}
.fsc_c01395{font-size:34.560000px;}
.fsd_c01395{font-size:38.040000px;}
.fse_c01395{font-size:41.460000px;}
.fs7_c01395{font-size:58.740000px;}
.fs2_c01395{font-size:62.220000px;}
.fs1_c01395{font-size:65.640000px;}
.fs8_c01395{font-size:69.120000px;}
.fs9_c01395{font-size:72.600000px;}
.fs3_c01395{font-size:76.020000px;}
.fs4_c01395{font-size:79.500000px;}
.fsa_c01395{font-size:96.780000px;}
.y0_c01395{bottom:0.000000px;}
.y17_c01395{bottom:768.090000px;}
.y18_c01395{bottom:769.830000px;}
.y16_c01395{bottom:873.510000px;}
.y15_c01395{bottom:876.090000px;}
.y14_c01395{bottom:925.350000px;}
.y12_c01395{bottom:1099.875000px;}
.y13_c01395{bottom:1104.195000px;}
.y11_c01395{bottom:1164.675000px;}
.y10_c01395{bottom:1234.650000px;}
.ya_c01395{bottom:1363.395000px;}
.yb_c01395{bottom:1366.845000px;}
.yc_c01395{bottom:1367.715000px;}
.yf_c01395{bottom:1368.570000px;}
.yd_c01395{bottom:1372.890000px;}
.ye_c01395{bottom:1375.485000px;}
.y4_c01395{bottom:1390.170000px;}
.y2_c01395{bottom:1391.910000px;}
.y8_c01395{bottom:1392.765000px;}
.y3_c01395{bottom:1393.635000px;}
.y5_c01395{bottom:1394.490000px;}
.y6_c01395{bottom:1395.360000px;}
.y9_c01395{bottom:1396.230000px;}
.y7_c01395{bottom:1397.085000px;}
.y1_c01395{bottom:1412.640000px;}
.hd_c01395{height:3.110063px;}
.h7_c01395{height:5.399414px;}
.h12_c01395{height:9.340986px;}
.h13_c01395{height:12.418652px;}
.h2_c01395{height:15.550313px;}
.h11_c01395{height:18.681973px;}
.h8_c01395{height:27.968965px;}
.he_c01395{height:31.100625px;}
.hf_c01395{height:34.232285px;}
.h10_c01395{height:37.309951px;}
.h9_c01395{height:52.860264px;}
.h4_c01395{height:55.991924px;}
.h3_c01395{height:59.069590px;}
.ha_c01395{height:62.201250px;}
.hb_c01395{height:65.332910px;}
.h5_c01395{height:68.410576px;}
.h6_c01395{height:71.542236px;}
.hc_c01395{height:87.092549px;}
.h1_c01395{height:1513.500000px;}
.h0_c01395{height:1513.725000px;}
.w0_c01395{width:1079.130000px;}
.w1_c01395{width:1079.250000px;}
.x0_c01395{left:0.000000px;}
.x19_c01395{left:2.595000px;}
.x21_c01395{left:29.370000px;}
.x1_c01395{left:36.285000px;}
.x22_c01395{left:40.605000px;}
.x1f_c01395{left:76.035000px;}
.x20_c01395{left:96.765000px;}
.x1a_c01395{left:101.955000px;}
.x1b_c01395{left:127.005000px;}
.x1e_c01395{left:183.165000px;}
.x1c_c01395{left:202.170150px;}
.x1d_c01395{left:209.085000px;}
.x2_c01395{left:409.530000px;}
.x3_c01395{left:431.130000px;}
.x4_c01395{left:450.150000px;}
.x5_c01395{left:462.240000px;}
.x6_c01395{left:482.970000px;}
.x7_c01395{left:506.310000px;}
.x8_c01395{left:516.675000px;}
.x9_c01395{left:531.360000px;}
.xa_c01395{left:554.685000px;}
.xb_c01395{left:576.285000px;}
.xc_c01395{left:600.480000px;}
.xd_c01395{left:626.400000px;}
.x12_c01395{left:649.725000px;}
.xe_c01395{left:652.320000px;}
.xf_c01395{left:670.470000px;}
.x13_c01395{left:686.880000px;}
.x14_c01395{left:703.290000px;}
.x10_c01395{left:715.395000px;}
.x15_c01395{left:719.715000px;}
.x16_c01395{left:743.910000px;}
.x17_c01395{left:749.955000px;}
.x11_c01395{left:751.680000px;}
.x18_c01395{left:760.320000px;}
@media print{
.v0_c01395{vertical-align:0.000000pt;}
.ls0_c01395{letter-spacing:0.000000pt;}
.ws0_c01395{word-spacing:0.000000pt;}
.fsb_c01395{font-size:3.072000pt;}
.fs5_c01395{font-size:5.333333pt;}
.fs10_c01395{font-size:9.226667pt;}
.fs11_c01395{font-size:12.266667pt;}
.fs0_c01395{font-size:15.360000pt;}
.fsf_c01395{font-size:18.453333pt;}
.fs6_c01395{font-size:27.626667pt;}
.fsc_c01395{font-size:30.720000pt;}
.fsd_c01395{font-size:33.813333pt;}
.fse_c01395{font-size:36.853333pt;}
.fs7_c01395{font-size:52.213333pt;}
.fs2_c01395{font-size:55.306667pt;}
.fs1_c01395{font-size:58.346667pt;}
.fs8_c01395{font-size:61.440000pt;}
.fs9_c01395{font-size:64.533333pt;}
.fs3_c01395{font-size:67.573333pt;}
.fs4_c01395{font-size:70.666667pt;}
.fsa_c01395{font-size:86.026667pt;}
.y0_c01395{bottom:0.000000pt;}
.y17_c01395{bottom:682.746667pt;}
.y18_c01395{bottom:684.293333pt;}
.y16_c01395{bottom:776.453333pt;}
.y15_c01395{bottom:778.746667pt;}
.y14_c01395{bottom:822.533333pt;}
.y12_c01395{bottom:977.666667pt;}
.y13_c01395{bottom:981.506667pt;}
.y11_c01395{bottom:1035.266667pt;}
.y10_c01395{bottom:1097.466667pt;}
.ya_c01395{bottom:1211.906667pt;}
.yb_c01395{bottom:1214.973333pt;}
.yc_c01395{bottom:1215.746667pt;}
.yf_c01395{bottom:1216.506667pt;}
.yd_c01395{bottom:1220.346667pt;}
.ye_c01395{bottom:1222.653333pt;}
.y4_c01395{bottom:1235.706667pt;}
.y2_c01395{bottom:1237.253333pt;}
.y8_c01395{bottom:1238.013333pt;}
.y3_c01395{bottom:1238.786667pt;}
.y5_c01395{bottom:1239.546667pt;}
.y6_c01395{bottom:1240.320000pt;}
.y9_c01395{bottom:1241.093333pt;}
.y7_c01395{bottom:1241.853333pt;}
.y1_c01395{bottom:1255.680000pt;}
.hd_c01395{height:2.764500pt;}
.h7_c01395{height:4.799479pt;}
.h12_c01395{height:8.303099pt;}
.h13_c01395{height:11.038802pt;}
.h2_c01395{height:13.822500pt;}
.h11_c01395{height:16.606198pt;}
.h8_c01395{height:24.861302pt;}
.he_c01395{height:27.645000pt;}
.hf_c01395{height:30.428698pt;}
.h10_c01395{height:33.164401pt;}
.h9_c01395{height:46.986901pt;}
.h4_c01395{height:49.770599pt;}
.h3_c01395{height:52.506302pt;}
.ha_c01395{height:55.290000pt;}
.hb_c01395{height:58.073698pt;}
.h5_c01395{height:60.809401pt;}
.h6_c01395{height:63.593099pt;}
.hc_c01395{height:77.415599pt;}
.h1_c01395{height:1345.333333pt;}
.h0_c01395{height:1345.533333pt;}
.w0_c01395{width:959.226667pt;}
.w1_c01395{width:959.333333pt;}
.x0_c01395{left:0.000000pt;}
.x19_c01395{left:2.306667pt;}
.x21_c01395{left:26.106667pt;}
.x1_c01395{left:32.253333pt;}
.x22_c01395{left:36.093333pt;}
.x1f_c01395{left:67.586667pt;}
.x20_c01395{left:86.013333pt;}
.x1a_c01395{left:90.626667pt;}
.x1b_c01395{left:112.893333pt;}
.x1e_c01395{left:162.813333pt;}
.x1c_c01395{left:179.706800pt;}
.x1d_c01395{left:185.853333pt;}
.x2_c01395{left:364.026667pt;}
.x3_c01395{left:383.226667pt;}
.x4_c01395{left:400.133333pt;}
.x5_c01395{left:410.880000pt;}
.x6_c01395{left:429.306667pt;}
.x7_c01395{left:450.053333pt;}
.x8_c01395{left:459.266667pt;}
.x9_c01395{left:472.320000pt;}
.xa_c01395{left:493.053333pt;}
.xb_c01395{left:512.253333pt;}
.xc_c01395{left:533.760000pt;}
.xd_c01395{left:556.800000pt;}
.x12_c01395{left:577.533333pt;}
.xe_c01395{left:579.840000pt;}
.xf_c01395{left:595.973333pt;}
.x13_c01395{left:610.560000pt;}
.x14_c01395{left:625.146667pt;}
.x10_c01395{left:635.906667pt;}
.x15_c01395{left:639.746667pt;}
.x16_c01395{left:661.253333pt;}
.x17_c01395{left:666.626667pt;}
.x11_c01395{left:668.160000pt;}
.x18_c01395{left:675.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_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_f3ee60f83fee9b27144ed360.woff2')format("woff");}.ff1_c01396{font-family:ff1_c01396;line-height:1.109863;font-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_c01396{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.m5b_c01396{transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112800,0.000000,0.000000,0.250000,0,0);}
.m50_c01396{transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133300,0.000000,0.000000,0.250000,0,0);}
.m1b_c01396{transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138825,0.000000,0.000000,0.250000,0,0);}
.m2f_c01396{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.m8_c01396{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01396{transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146575,0.000000,0.000000,0.250000,0,0);}
.m45_c01396{transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);}
.m25_c01396{transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151350,0.000000,0.000000,0.250000,0,0);}
.m2a_c01396{transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153425,0.000000,0.000000,0.250000,0,0);}
.m53_c01396{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.m10_c01396{transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156225,0.000000,0.000000,0.250000,0,0);}
.m2d_c01396{transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156825,0.000000,0.000000,0.250000,0,0);}
.m19_c01396{transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157800,0.000000,0.000000,0.250000,0,0);}
.m3e_c01396{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m4a_c01396{transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160950,0.000000,0.000000,0.250000,0,0);}
.m31_c01396{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);}
.m27_c01396{transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161575,0.000000,0.000000,0.250000,0,0);}
.m38_c01396{transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168725,0.000000,0.000000,0.250000,0,0);}
.m51_c01396{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.m11_c01396{transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176875,0.000000,0.000000,0.250000,0,0);}
.md_c01396{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.mb_c01396{transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179250,0.000000,0.000000,0.250000,0,0);}
.m3f_c01396{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);}
.m47_c01396{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.ma_c01396{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);}
.m37_c01396{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);}
.mf_c01396{transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188450,0.000000,0.000000,0.250000,0,0);}
.m4f_c01396{transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189175,0.000000,0.000000,0.250000,0,0);}
.m3_c01396{transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190450,0.000000,0.000000,0.250000,0,0);}
.m36_c01396{transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193025,0.000000,0.000000,0.250000,0,0);}
.m58_c01396{transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194100,0.000000,0.000000,0.250000,0,0);}
.m39_c01396{transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194775,0.000000,0.000000,0.250000,0,0);}
.m4d_c01396{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.m4e_c01396{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.m22_c01396{transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201175,0.000000,0.000000,0.250000,0,0);}
.m29_c01396{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.m2b_c01396{transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209525,0.000000,0.000000,0.250000,0,0);}
.m46_c01396{transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211875,0.000000,0.000000,0.250000,0,0);}
.m14_c01396{transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.215300,0.000000,0.000000,0.250000,0,0);}
.m30_c01396{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);}
.m1f_c01396{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);}
.m54_c01396{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m44_c01396{transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220525,0.000000,0.000000,0.250000,0,0);}
.m49_c01396{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m40_c01396{transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226350,0.000000,0.000000,0.250000,0,0);}
.m52_c01396{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);}
.m1c_c01396{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.m3c_c01396{transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233150,0.000000,0.000000,0.250000,0,0);}
.me_c01396{transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234075,0.000000,0.000000,0.250000,0,0);}
.m57_c01396{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);}
.m48_c01396{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);}
.m32_c01396{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);}
.m1e_c01396{transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240200,0.000000,0.000000,0.250000,0,0);}
.m4c_c01396{transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241875,0.000000,0.000000,0.250000,0,0);}
.m17_c01396{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);}
.m28_c01396{transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244525,0.000000,0.000000,0.250000,0,0);}
.mc_c01396{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);}
.m12_c01396{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);}
.m15_c01396{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);}
.m24_c01396{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m41_c01396{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01396{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m13_c01396{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);}
.m2_c01396{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m0_c01396{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m16_c01396{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c01396{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);}
.m34_c01396{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);}
.m23_c01396{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);}
.m26_c01396{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01396{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m55_c01396{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m35_c01396{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);}
.m56_c01396{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4b_c01396{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);}
.m7_c01396{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);}
.m43_c01396{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01396{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_c01396{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m4_c01396{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);}
.m5_c01396{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1_c01396{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m21_c01396{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m2c_c01396{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m20_c01396{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m18_c01396{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m42_c01396{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m33_c01396{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m59_c01396{transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.682500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01396{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01396{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.v1_c01396{vertical-align:-3.480000px;}
.v0_c01396{vertical-align:0.000000px;}
.ls1_c01396{letter-spacing:0.000000px;}
.ls0_c01396{letter-spacing:14.669760px;}
.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:-2.996880px;}
.ws1_c01396{word-spacing:0.000000px;}
.fc0_c01396{color:transparent;}
.fs5_c01396{font-size:3.456000px;}
.fs16_c01396{font-size:6.000000px;}
.fs19_c01396{font-size:6.900000px;}
.fs12_c01396{font-size:10.380000px;}
.fs0_c01396{font-size:17.280000px;}
.fsf_c01396{font-size:24.180000px;}
.fs1_c01396{font-size:27.660000px;}
.fs10_c01396{font-size:31.080000px;}
.fsd_c01396{font-size:34.560000px;}
.fs3_c01396{font-size:38.040000px;}
.fs11_c01396{font-size:41.460000px;}
.fs15_c01396{font-size:44.940000px;}
.fs6_c01396{font-size:48.360000px;}
.fs14_c01396{font-size:51.840000px;}
.fs4_c01396{font-size:55.320000px;}
.fs8_c01396{font-size:58.740000px;}
.fse_c01396{font-size:62.220000px;}
.fs9_c01396{font-size:65.640000px;}
.fs2_c01396{font-size:69.120000px;}
.fs17_c01396{font-size:72.600000px;}
.fsa_c01396{font-size:76.020000px;}
.fs7_c01396{font-size:79.500000px;}
.fsb_c01396{font-size:82.920000px;}
.fsc_c01396{font-size:86.400000px;}
.fs13_c01396{font-size:89.880000px;}
.fs18_c01396{font-size:103.680000px;}
.y0_c01396{bottom:0.000000px;}
.y56_c01396{bottom:188.355000px;}
.y55_c01396{bottom:963.360000px;}
.y54_c01396{bottom:968.550000px;}
.y50_c01396{bottom:1112.835000px;}
.y4f_c01396{bottom:1114.560000px;}
.y4c_c01396{bottom:1119.750000px;}
.y4d_c01396{bottom:1120.605000px;}
.y4e_c01396{bottom:1122.330000px;}
.y4a_c01396{bottom:1136.160000px;}
.y4b_c01396{bottom:1139.610000px;}
.y49_c01396{bottom:1141.350000px;}
.y47_c01396{bottom:1156.890000px;}
.y45_c01396{bottom:1159.485000px;}
.y48_c01396{bottom:1160.355000px;}
.y46_c01396{bottom:1162.950000px;}
.y53_c01396{bottom:1163.805000px;}
.y43_c01396{bottom:1164.675000px;}
.y44_c01396{bottom:1165.530000px;}
.y52_c01396{bottom:1167.270000px;}
.y41_c01396{bottom:1175.040000px;}
.y42_c01396{bottom:1176.765000px;}
.y3f_c01396{bottom:1177.635000px;}
.y40_c01396{bottom:1181.955000px;}
.y3c_c01396{bottom:1183.680000px;}
.y3e_c01396{bottom:1185.405000px;}
.y3d_c01396{bottom:1187.130000px;}
.y3a_c01396{bottom:1195.770000px;}
.y51_c01396{bottom:1196.640000px;}
.y39_c01396{bottom:1198.365000px;}
.y3b_c01396{bottom:1199.235000px;}
.y37_c01396{bottom:1200.960000px;}
.y38_c01396{bottom:1206.150000px;}
.y35_c01396{bottom:1215.645000px;}
.y34_c01396{bottom:1217.370000px;}
.y33_c01396{bottom:1218.240000px;}
.y32_c01396{bottom:1219.110000px;}
.y36_c01396{bottom:1221.690000px;}
.y30_c01396{bottom:1223.430000px;}
.y2f_c01396{bottom:1224.285000px;}
.y31_c01396{bottom:1225.155000px;}
.y2e_c01396{bottom:1226.880000px;}
.y2d_c01396{bottom:1236.390000px;}
.y2c_c01396{bottom:1238.970000px;}
.y2b_c01396{bottom:1239.840000px;}
.y2a_c01396{bottom:1241.565000px;}
.y29_c01396{bottom:1242.435000px;}
.y27_c01396{bottom:1257.120000px;}
.y26_c01396{bottom:1259.715000px;}
.y28_c01396{bottom:1261.440000px;}
.y24_c01396{bottom:1262.310000px;}
.y25_c01396{bottom:1265.760000px;}
.y23_c01396{bottom:1268.355000px;}
.y22_c01396{bottom:1276.125000px;}
.y20_c01396{bottom:1279.590000px;}
.y1e_c01396{bottom:1282.170000px;}
.y1f_c01396{bottom:1283.040000px;}
.y21_c01396{bottom:1283.910000px;}
.y1d_c01396{bottom:1287.360000px;}
.y1c_c01396{bottom:1289.085000px;}
.y1b_c01396{bottom:1297.725000px;}
.y1a_c01396{bottom:1299.450000px;}
.y19_c01396{bottom:1302.915000px;}
.y18_c01396{bottom:1306.365000px;}
.y17_c01396{bottom:1308.960000px;}
.y15_c01396{bottom:1317.600000px;}
.y14_c01396{bottom:1319.325000px;}
.y13_c01396{bottom:1320.195000px;}
.y11_c01396{bottom:1321.050000px;}
.y2_c01396{bottom:1321.920000px;}
.y10_c01396{bottom:1323.645000px;}
.y12_c01396{bottom:1326.240000px;}
.yf_c01396{bottom:1327.110000px;}
.y16_c01396{bottom:1328.835000px;}
.y1_c01396{bottom:1331.430000px;}
.ye_c01396{bottom:1339.200000px;}
.ya_c01396{bottom:1343.520000px;}
.yd_c01396{bottom:1344.390000px;}
.yc_c01396{bottom:1346.115000px;}
.y9_c01396{bottom:1346.970000px;}
.yb_c01396{bottom:1347.840000px;}
.y8_c01396{bottom:1349.565000px;}
.y6_c01396{bottom:1364.250000px;}
.y5_c01396{bottom:1366.845000px;}
.y4_c01396{bottom:1367.715000px;}
.y3_c01396{bottom:1368.570000px;}
.y7_c01396{bottom:1376.355000px;}
.h7_c01396{height:3.110063px;}
.h18_c01396{height:5.399414px;}
.h1b_c01396{height:6.209326px;}
.h14_c01396{height:9.340986px;}
.h2_c01396{height:15.550313px;}
.h11_c01396{height:21.759639px;}
.h3_c01396{height:24.891299px;}
.h12_c01396{height:27.968965px;}
.hf_c01396{height:31.100625px;}
.h5_c01396{height:34.232285px;}
.h13_c01396{height:37.309951px;}
.h17_c01396{height:40.441611px;}
.h8_c01396{height:43.519277px;}
.h16_c01396{height:46.650937px;}
.h6_c01396{height:49.782598px;}
.ha_c01396{height:52.860264px;}
.h10_c01396{height:55.991924px;}
.hb_c01396{height:59.069590px;}
.h4_c01396{height:62.201250px;}
.h19_c01396{height:65.332910px;}
.hc_c01396{height:68.410576px;}
.h9_c01396{height:71.542236px;}
.hd_c01396{height:74.619902px;}
.he_c01396{height:77.751563px;}
.h15_c01396{height:80.883223px;}
.h1a_c01396{height:93.301875px;}
.h1_c01396{height:1513.500000px;}
.h0_c01396{height:1513.725000px;}
.w0_c01396{width:1083.450000px;}
.w1_c01396{width:1083.750000px;}
.x0_c01396{left:0.000000px;}
.x2_c01396{left:171.075000px;}
.x1_c01396{left:180.570000px;}
.x35_c01396{left:215.130000px;}
.x30_c01396{left:229.830000px;}
.x39_c01396{left:231.555000px;}
.x1f_c01396{left:233.280000px;}
.x11_c01396{left:235.005000px;}
.xa_c01396{left:250.560000px;}
.x3e_c01396{left:254.010000px;}
.x12_c01396{left:259.200000px;}
.x31_c01396{left:260.925000px;}
.x26_c01396{left:266.970000px;}
.x1a_c01396{left:270.435000px;}
.x3a_c01396{left:273.030000px;}
.xb_c01396{left:275.610000px;}
.x1b_c01396{left:278.205000px;}
.x32_c01396{left:286.845000px;}
.xc_c01396{left:293.760000px;}
.x3b_c01396{left:295.485000px;}
.x3_c01396{left:305.850000px;}
.x36_c01396{left:307.590000px;}
.x29_c01396{left:311.040000px;}
.x40_c01396{left:315.360000px;}
.xd_c01396{left:317.955000px;}
.x20_c01396{left:325.725000px;}
.x41_c01396{left:329.190000px;}
.x2b_c01396{left:340.410000px;}
.x4_c01396{left:342.150000px;}
.x1c_c01396{left:344.730000px;}
.xe_c01396{left:353.370000px;}
.x42_c01396{left:355.965000px;}
.x5_c01396{left:358.560000px;}
.x21_c01396{left:361.155000px;}
.x2c_c01396{left:367.200000px;}
.x1d_c01396{left:374.970000px;}
.x13_c01396{left:376.710000px;}
.x3f_c01396{left:387.075000px;}
.x2d_c01396{left:388.800000px;}
.x14_c01396{left:393.990000px;}
.x22_c01396{left:397.440000px;}
.x3c_c01396{left:400.890000px;}
.xf_c01396{left:412.125000px;}
.x6_c01396{left:413.850000px;}
.x15_c01396{left:419.040000px;}
.x7_c01396{left:427.680000px;}
.x23_c01396{left:429.405000px;}
.x27_c01396{left:441.510000px;}
.x16_c01396{left:444.090000px;}
.x37_c01396{left:446.685000px;}
.x33_c01396{left:448.410000px;}
.x24_c01396{left:451.875000px;}
.x3d_c01396{left:463.110000px;}
.x25_c01396{left:470.010000px;}
.x17_c01396{left:475.200000px;}
.x1e_c01396{left:478.650000px;}
.x34_c01396{left:480.390000px;}
.x10_c01396{left:489.030000px;}
.x2a_c01396{left:493.350000px;}
.x18_c01396{left:497.670000px;}
.x28_c01396{left:501.120000px;}
.x2e_c01396{left:504.570000px;}
.x2f_c01396{left:514.080000px;}
.x38_c01396{left:522.720000px;}
.x8_c01396{left:525.315000px;}
.x19_c01396{left:527.040000px;}
.x9_c01396{left:548.640000px;}
.x45_c01396{left:898.560000px;}
.x46_c01396{left:913.245000px;}
.x43_c01396{left:935.715000px;}
.x47_c01396{left:950.400000px;}
.x44_c01396{left:953.850000px;}
.x48_c01396{left:959.910000px;}
.x49_c01396{left:1016.925000px;}
@media print{
.v1_c01396{vertical-align:-3.093333pt;}
.v0_c01396{vertical-align:0.000000pt;}
.ls1_c01396{letter-spacing:0.000000pt;}
.ls0_c01396{letter-spacing:13.039787pt;}
.ws0_c01396{word-spacing:-2.663893pt;}
.ws1_c01396{word-spacing:0.000000pt;}
.fs5_c01396{font-size:3.072000pt;}
.fs16_c01396{font-size:5.333333pt;}
.fs19_c01396{font-size:6.133333pt;}
.fs12_c01396{font-size:9.226667pt;}
.fs0_c01396{font-size:15.360000pt;}
.fsf_c01396{font-size:21.493333pt;}
.fs1_c01396{font-size:24.586667pt;}
.fs10_c01396{font-size:27.626667pt;}
.fsd_c01396{font-size:30.720000pt;}
.fs3_c01396{font-size:33.813333pt;}
.fs11_c01396{font-size:36.853333pt;}
.fs15_c01396{font-size:39.946667pt;}
.fs6_c01396{font-size:42.986667pt;}
.fs14_c01396{font-size:46.080000pt;}
.fs4_c01396{font-size:49.173333pt;}
.fs8_c01396{font-size:52.213333pt;}
.fse_c01396{font-size:55.306667pt;}
.fs9_c01396{font-size:58.346667pt;}
.fs2_c01396{font-size:61.440000pt;}
.fs17_c01396{font-size:64.533333pt;}
.fsa_c01396{font-size:67.573333pt;}
.fs7_c01396{font-size:70.666667pt;}
.fsb_c01396{font-size:73.706667pt;}
.fsc_c01396{font-size:76.800000pt;}
.fs13_c01396{font-size:79.893333pt;}
.fs18_c01396{font-size:92.160000pt;}
.y0_c01396{bottom:0.000000pt;}
.y56_c01396{bottom:167.426667pt;}
.y55_c01396{bottom:856.320000pt;}
.y54_c01396{bottom:860.933333pt;}
.y50_c01396{bottom:989.186667pt;}
.y4f_c01396{bottom:990.720000pt;}
.y4c_c01396{bottom:995.333333pt;}
.y4d_c01396{bottom:996.093333pt;}
.y4e_c01396{bottom:997.626667pt;}
.y4a_c01396{bottom:1009.920000pt;}
.y4b_c01396{bottom:1012.986667pt;}
.y49_c01396{bottom:1014.533333pt;}
.y47_c01396{bottom:1028.346667pt;}
.y45_c01396{bottom:1030.653333pt;}
.y48_c01396{bottom:1031.426667pt;}
.y46_c01396{bottom:1033.733333pt;}
.y53_c01396{bottom:1034.493333pt;}
.y43_c01396{bottom:1035.266667pt;}
.y44_c01396{bottom:1036.026667pt;}
.y52_c01396{bottom:1037.573333pt;}
.y41_c01396{bottom:1044.480000pt;}
.y42_c01396{bottom:1046.013333pt;}
.y3f_c01396{bottom:1046.786667pt;}
.y40_c01396{bottom:1050.626667pt;}
.y3c_c01396{bottom:1052.160000pt;}
.y3e_c01396{bottom:1053.693333pt;}
.y3d_c01396{bottom:1055.226667pt;}
.y3a_c01396{bottom:1062.906667pt;}
.y51_c01396{bottom:1063.680000pt;}
.y39_c01396{bottom:1065.213333pt;}
.y3b_c01396{bottom:1065.986667pt;}
.y37_c01396{bottom:1067.520000pt;}
.y38_c01396{bottom:1072.133333pt;}
.y35_c01396{bottom:1080.573333pt;}
.y34_c01396{bottom:1082.106667pt;}
.y33_c01396{bottom:1082.880000pt;}
.y32_c01396{bottom:1083.653333pt;}
.y36_c01396{bottom:1085.946667pt;}
.y30_c01396{bottom:1087.493333pt;}
.y2f_c01396{bottom:1088.253333pt;}
.y31_c01396{bottom:1089.026667pt;}
.y2e_c01396{bottom:1090.560000pt;}
.y2d_c01396{bottom:1099.013333pt;}
.y2c_c01396{bottom:1101.306667pt;}
.y2b_c01396{bottom:1102.080000pt;}
.y2a_c01396{bottom:1103.613333pt;}
.y29_c01396{bottom:1104.386667pt;}
.y27_c01396{bottom:1117.440000pt;}
.y26_c01396{bottom:1119.746667pt;}
.y28_c01396{bottom:1121.280000pt;}
.y24_c01396{bottom:1122.053333pt;}
.y25_c01396{bottom:1125.120000pt;}
.y23_c01396{bottom:1127.426667pt;}
.y22_c01396{bottom:1134.333333pt;}
.y20_c01396{bottom:1137.413333pt;}
.y1e_c01396{bottom:1139.706667pt;}
.y1f_c01396{bottom:1140.480000pt;}
.y21_c01396{bottom:1141.253333pt;}
.y1d_c01396{bottom:1144.320000pt;}
.y1c_c01396{bottom:1145.853333pt;}
.y1b_c01396{bottom:1153.533333pt;}
.y1a_c01396{bottom:1155.066667pt;}
.y19_c01396{bottom:1158.146667pt;}
.y18_c01396{bottom:1161.213333pt;}
.y17_c01396{bottom:1163.520000pt;}
.y15_c01396{bottom:1171.200000pt;}
.y14_c01396{bottom:1172.733333pt;}
.y13_c01396{bottom:1173.506667pt;}
.y11_c01396{bottom:1174.266667pt;}
.y2_c01396{bottom:1175.040000pt;}
.y10_c01396{bottom:1176.573333pt;}
.y12_c01396{bottom:1178.880000pt;}
.yf_c01396{bottom:1179.653333pt;}
.y16_c01396{bottom:1181.186667pt;}
.y1_c01396{bottom:1183.493333pt;}
.ye_c01396{bottom:1190.400000pt;}
.ya_c01396{bottom:1194.240000pt;}
.yd_c01396{bottom:1195.013333pt;}
.yc_c01396{bottom:1196.546667pt;}
.y9_c01396{bottom:1197.306667pt;}
.yb_c01396{bottom:1198.080000pt;}
.y8_c01396{bottom:1199.613333pt;}
.y6_c01396{bottom:1212.666667pt;}
.y5_c01396{bottom:1214.973333pt;}
.y4_c01396{bottom:1215.746667pt;}
.y3_c01396{bottom:1216.506667pt;}
.y7_c01396{bottom:1223.426667pt;}
.h7_c01396{height:2.764500pt;}
.h18_c01396{height:4.799479pt;}
.h1b_c01396{height:5.519401pt;}
.h14_c01396{height:8.303099pt;}
.h2_c01396{height:13.822500pt;}
.h11_c01396{height:19.341901pt;}
.h3_c01396{height:22.125599pt;}
.h12_c01396{height:24.861302pt;}
.hf_c01396{height:27.645000pt;}
.h5_c01396{height:30.428698pt;}
.h13_c01396{height:33.164401pt;}
.h17_c01396{height:35.948099pt;}
.h8_c01396{height:38.683802pt;}
.h16_c01396{height:41.467500pt;}
.h6_c01396{height:44.251198pt;}
.ha_c01396{height:46.986901pt;}
.h10_c01396{height:49.770599pt;}
.hb_c01396{height:52.506302pt;}
.h4_c01396{height:55.290000pt;}
.h19_c01396{height:58.073698pt;}
.hc_c01396{height:60.809401pt;}
.h9_c01396{height:63.593099pt;}
.hd_c01396{height:66.328802pt;}
.he_c01396{height:69.112500pt;}
.h15_c01396{height:71.896198pt;}
.h1a_c01396{height:82.935000pt;}
.h1_c01396{height:1345.333333pt;}
.h0_c01396{height:1345.533333pt;}
.w0_c01396{width:963.066667pt;}
.w1_c01396{width:963.333333pt;}
.x0_c01396{left:0.000000pt;}
.x2_c01396{left:152.066667pt;}
.x1_c01396{left:160.506667pt;}
.x35_c01396{left:191.226667pt;}
.x30_c01396{left:204.293333pt;}
.x39_c01396{left:205.826667pt;}
.x1f_c01396{left:207.360000pt;}
.x11_c01396{left:208.893333pt;}
.xa_c01396{left:222.720000pt;}
.x3e_c01396{left:225.786667pt;}
.x12_c01396{left:230.400000pt;}
.x31_c01396{left:231.933333pt;}
.x26_c01396{left:237.306667pt;}
.x1a_c01396{left:240.386667pt;}
.x3a_c01396{left:242.693333pt;}
.xb_c01396{left:244.986667pt;}
.x1b_c01396{left:247.293333pt;}
.x32_c01396{left:254.973333pt;}
.xc_c01396{left:261.120000pt;}
.x3b_c01396{left:262.653333pt;}
.x3_c01396{left:271.866667pt;}
.x36_c01396{left:273.413333pt;}
.x29_c01396{left:276.480000pt;}
.x40_c01396{left:280.320000pt;}
.xd_c01396{left:282.626667pt;}
.x20_c01396{left:289.533333pt;}
.x41_c01396{left:292.613333pt;}
.x2b_c01396{left:302.586667pt;}
.x4_c01396{left:304.133333pt;}
.x1c_c01396{left:306.426667pt;}
.xe_c01396{left:314.106667pt;}
.x42_c01396{left:316.413333pt;}
.x5_c01396{left:318.720000pt;}
.x21_c01396{left:321.026667pt;}
.x2c_c01396{left:326.400000pt;}
.x1d_c01396{left:333.306667pt;}
.x13_c01396{left:334.853333pt;}
.x3f_c01396{left:344.066667pt;}
.x2d_c01396{left:345.600000pt;}
.x14_c01396{left:350.213333pt;}
.x22_c01396{left:353.280000pt;}
.x3c_c01396{left:356.346667pt;}
.xf_c01396{left:366.333333pt;}
.x6_c01396{left:367.866667pt;}
.x15_c01396{left:372.480000pt;}
.x7_c01396{left:380.160000pt;}
.x23_c01396{left:381.693333pt;}
.x27_c01396{left:392.453333pt;}
.x16_c01396{left:394.746667pt;}
.x37_c01396{left:397.053333pt;}
.x33_c01396{left:398.586667pt;}
.x24_c01396{left:401.666667pt;}
.x3d_c01396{left:411.653333pt;}
.x25_c01396{left:417.786667pt;}
.x17_c01396{left:422.400000pt;}
.x1e_c01396{left:425.466667pt;}
.x34_c01396{left:427.013333pt;}
.x10_c01396{left:434.693333pt;}
.x2a_c01396{left:438.533333pt;}
.x18_c01396{left:442.373333pt;}
.x28_c01396{left:445.440000pt;}
.x2e_c01396{left:448.506667pt;}
.x2f_c01396{left:456.960000pt;}
.x38_c01396{left:464.640000pt;}
.x8_c01396{left:466.946667pt;}
.x19_c01396{left:468.480000pt;}
.x9_c01396{left:487.680000pt;}
.x45_c01396{left:798.720000pt;}
.x46_c01396{left:811.773333pt;}
.x43_c01396{left:831.746667pt;}
.x47_c01396{left:844.800000pt;}
.x44_c01396{left:847.866667pt;}
.x48_c01396{left:853.253333pt;}
.x49_c01396{left:903.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0a7542d362cc05a5fc62580c.woff2')format("woff");}.ff1_c01397{font-family:ff1_c01397;line-height:1.109863;font-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_c01397{transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041675,0.000000,0.000000,0.250000,0,0);}
.m7_c01397{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m6_c01397{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c01397{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m2_c01397{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.ma_c01397{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.mc_c01397{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);}
.md_c01397{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m5_c01397{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);}
.m0_c01397{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m9_c01397{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3_c01397{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.mb_c01397{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m8_c01397{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.v0_c01397{vertical-align:0.000000px;}
.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;}
.fc0_c01397{color:transparent;}
.fs7_c01397{font-size:3.456000px;}
.fs5_c01397{font-size:6.900000px;}
.fs0_c01397{font-size:17.280000px;}
.fs8_c01397{font-size:20.760000px;}
.fs6_c01397{font-size:24.180000px;}
.fs1_c01397{font-size:27.660000px;}
.fs9_c01397{font-size:31.080000px;}
.fs4_c01397{font-size:41.460000px;}
.fs2_c01397{font-size:76.020000px;}
.fs3_c01397{font-size:100.200000px;}
.y0_c01397{bottom:0.000000px;}
.yf_c01397{bottom:160.710000px;}
.yd_c01397{bottom:165.030000px;}
.ye_c01397{bottom:165.885000px;}
.yc_c01397{bottom:177.990000px;}
.yb_c01397{bottom:188.355000px;}
.y9_c01397{bottom:965.085000px;}
.ya_c01397{bottom:965.955000px;}
.y5_c01397{bottom:1104.195000px;}
.y6_c01397{bottom:1111.110000px;}
.y4_c01397{bottom:1115.430000px;}
.y8_c01397{bottom:1133.565000px;}
.y7_c01397{bottom:1134.435000px;}
.y3_c01397{bottom:1140.480000px;}
.y2_c01397{bottom:1160.355000px;}
.y1_c01397{bottom:1251.930000px;}
.h9_c01397{height:3.110063px;}
.h7_c01397{height:6.209326px;}
.h2_c01397{height:15.550313px;}
.ha_c01397{height:18.681973px;}
.h8_c01397{height:21.759639px;}
.h3_c01397{height:24.891299px;}
.hb_c01397{height:27.968965px;}
.h6_c01397{height:37.309951px;}
.h4_c01397{height:68.410576px;}
.h5_c01397{height:90.170215px;}
.h1_c01397{height:1513.500000px;}
.h0_c01397{height:1513.725000px;}
.w0_c01397{width:1079.130000px;}
.w1_c01397{width:1079.250000px;}
.x0_c01397{left:0.000000px;}
.x1_c01397{left:6.045000px;}
.x2_c01397{left:96.765000px;}
.x3_c01397{left:115.770000px;}
.x4_c01397{left:129.600000px;}
.x5_c01397{left:140.835000px;}
.x6_c01397{left:153.795000px;}
.xb_c01397{left:171.075000px;}
.x9_c01397{left:173.670000px;}
.x7_c01397{left:262.650000px;}
.xa_c01397{left:289.440000px;}
.x8_c01397{left:304.125000px;}
@media print{
.v0_c01397{vertical-align:0.000000pt;}
.ls0_c01397{letter-spacing:0.000000pt;}
.ws0_c01397{word-spacing:0.000000pt;}
.fs7_c01397{font-size:3.072000pt;}
.fs5_c01397{font-size:6.133333pt;}
.fs0_c01397{font-size:15.360000pt;}
.fs8_c01397{font-size:18.453333pt;}
.fs6_c01397{font-size:21.493333pt;}
.fs1_c01397{font-size:24.586667pt;}
.fs9_c01397{font-size:27.626667pt;}
.fs4_c01397{font-size:36.853333pt;}
.fs2_c01397{font-size:67.573333pt;}
.fs3_c01397{font-size:89.066667pt;}
.y0_c01397{bottom:0.000000pt;}
.yf_c01397{bottom:142.853333pt;}
.yd_c01397{bottom:146.693333pt;}
.ye_c01397{bottom:147.453333pt;}
.yc_c01397{bottom:158.213333pt;}
.yb_c01397{bottom:167.426667pt;}
.y9_c01397{bottom:857.853333pt;}
.ya_c01397{bottom:858.626667pt;}
.y5_c01397{bottom:981.506667pt;}
.y6_c01397{bottom:987.653333pt;}
.y4_c01397{bottom:991.493333pt;}
.y8_c01397{bottom:1007.613333pt;}
.y7_c01397{bottom:1008.386667pt;}
.y3_c01397{bottom:1013.760000pt;}
.y2_c01397{bottom:1031.426667pt;}
.y1_c01397{bottom:1112.826667pt;}
.h9_c01397{height:2.764500pt;}
.h7_c01397{height:5.519401pt;}
.h2_c01397{height:13.822500pt;}
.ha_c01397{height:16.606198pt;}
.h8_c01397{height:19.341901pt;}
.h3_c01397{height:22.125599pt;}
.hb_c01397{height:24.861302pt;}
.h6_c01397{height:33.164401pt;}
.h4_c01397{height:60.809401pt;}
.h5_c01397{height:80.151302pt;}
.h1_c01397{height:1345.333333pt;}
.h0_c01397{height:1345.533333pt;}
.w0_c01397{width:959.226667pt;}
.w1_c01397{width:959.333333pt;}
.x0_c01397{left:0.000000pt;}
.x1_c01397{left:5.373333pt;}
.x2_c01397{left:86.013333pt;}
.x3_c01397{left:102.906667pt;}
.x4_c01397{left:115.200000pt;}
.x5_c01397{left:125.186667pt;}
.x6_c01397{left:136.706667pt;}
.xb_c01397{left:152.066667pt;}
.x9_c01397{left:154.373333pt;}
.x7_c01397{left:233.466667pt;}
.xa_c01397{left:257.280000pt;}
.x8_c01397{left:270.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a6bd7013a8024a5455a66da.woff2')format("woff");}.ff1_c01398{font-family:ff1_c01398;line-height:1.109863;font-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_c01398{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01398{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);}
.m16_c01398{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.me_c01398{transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111100,0.000000,0.000000,0.250000,0,0);}
.mf_c01398{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.ma_c01398{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);}
.m18_c01398{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);}
.m19_c01398{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.md_c01398{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c01398{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c01398{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m12_c01398{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);}
.m3_c01398{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m2_c01398{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m4_c01398{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m11_c01398{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m13_c01398{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c01398{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m5_c01398{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.mb_c01398{transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.457500,0.000000,0.000000,0.250000,0,0);}
.m15_c01398{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m9_c01398{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m6_c01398{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m0_c01398{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);}
.m14_c01398{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m10_c01398{transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.540000,0.000000,0.000000,0.250000,0,0);}
.m7_c01398{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.v0_c01398{vertical-align:0.000000px;}
.ls2_c01398{letter-spacing:0.000000px;}
.ls0_c01398{letter-spacing:128.156567px;}
.ls1_c01398{letter-spacing:138.207480px;}
.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;}
}
.ws1_c01398{word-spacing:0.000000px;}
.ws0_c01398{word-spacing:13.207680px;}
.fc0_c01398{color:transparent;}
.fs8_c01398{font-size:3.456000px;}
.fse_c01398{font-size:6.900000px;}
.fs9_c01398{font-size:10.380000px;}
.fsc_c01398{font-size:13.800000px;}
.fs0_c01398{font-size:17.280000px;}
.fsd_c01398{font-size:20.760000px;}
.fs10_c01398{font-size:24.180000px;}
.fs7_c01398{font-size:31.080000px;}
.fsf_c01398{font-size:34.560000px;}
.fs11_c01398{font-size:38.040000px;}
.fs5_c01398{font-size:44.940000px;}
.fsb_c01398{font-size:55.320000px;}
.fsa_c01398{font-size:58.740000px;}
.fs2_c01398{font-size:62.220000px;}
.fs4_c01398{font-size:65.640000px;}
.fs1_c01398{font-size:69.120000px;}
.fs3_c01398{font-size:72.600000px;}
.fs6_c01398{font-size:76.020000px;}
.y0_c01398{bottom:0.000000px;}
.y19_c01398{bottom:655.770000px;}
.y18_c01398{bottom:660.960000px;}
.y17_c01398{bottom:672.195000px;}
.y16_c01398{bottom:678.240000px;}
.y14_c01398{bottom:697.245000px;}
.y15_c01398{bottom:698.115000px;}
.y12_c01398{bottom:720.570000px;}
.y13_c01398{bottom:722.310000px;}
.ya_c01398{bottom:1205.280000px;}
.yb_c01398{bottom:1210.470000px;}
.yc_c01398{bottom:1213.920000px;}
.y11_c01398{bottom:1219.110000px;}
.y8_c01398{bottom:1229.475000px;}
.y9_c01398{bottom:1232.070000px;}
.y10_c01398{bottom:1237.245000px;}
.yf_c01398{bottom:1238.115000px;}
.ye_c01398{bottom:1238.970000px;}
.yd_c01398{bottom:1250.205000px;}
.y2_c01398{bottom:1260.570000px;}
.y3_c01398{bottom:1261.440000px;}
.y4_c01398{bottom:1264.890000px;}
.y7_c01398{bottom:1265.760000px;}
.y6_c01398{bottom:1283.910000px;}
.y5_c01398{bottom:1286.490000px;}
.y1_c01398{bottom:1351.290000px;}
.ha_c01398{height:3.110063px;}
.hb_c01398{height:9.340986px;}
.h2_c01398{height:15.550313px;}
.he_c01398{height:18.681973px;}
.h10_c01398{height:21.759639px;}
.h9_c01398{height:27.968965px;}
.hf_c01398{height:31.100625px;}
.h11_c01398{height:34.232285px;}
.h7_c01398{height:40.441611px;}
.hd_c01398{height:49.782598px;}
.hc_c01398{height:52.860264px;}
.h4_c01398{height:55.991924px;}
.h6_c01398{height:59.069590px;}
.h3_c01398{height:62.201250px;}
.h5_c01398{height:65.332910px;}
.h8_c01398{height:68.410576px;}
.h1_c01398{height:1513.500000px;}
.h0_c01398{height:1513.725000px;}
.w0_c01398{width:1083.450000px;}
.w1_c01398{width:1083.750000px;}
.x0_c01398{left:0.000000px;}
.x18_c01398{left:6.915000px;}
.x19_c01398{left:9.510000px;}
.x16_c01398{left:16.410000px;}
.x17_c01398{left:24.195000px;}
.xb_c01398{left:247.110000px;}
.x2_c01398{left:347.325000px;}
.xe_c01398{left:361.155000px;}
.xc_c01398{left:373.245000px;}
.x3_c01398{left:389.670000px;}
.x4_c01398{left:413.850000px;}
.xd_c01398{left:421.635000px;}
.x5_c01398{left:533.085000px;}
.xf_c01398{left:540.870000px;}
.x10_c01398{left:558.150000px;}
.x6_c01398{left:559.875000px;}
.x11_c01398{left:579.750000px;}
.x12_c01398{left:593.565000px;}
.x7_c01398{left:622.950000px;}
.xa_c01398{left:741.315000px;}
.x8_c01398{left:767.235000px;}
.x15_c01398{left:774.150000px;}
.x13_c01398{left:796.605000px;}
.x14_c01398{left:829.440000px;}
.x9_c01398{left:855.360000px;}
.x1_c01398{left:960.765000px;}
@media print{
.v0_c01398{vertical-align:0.000000pt;}
.ls2_c01398{letter-spacing:0.000000pt;}
.ls0_c01398{letter-spacing:113.916948pt;}
.ls1_c01398{letter-spacing:122.851093pt;}
.ws1_c01398{word-spacing:0.000000pt;}
.ws0_c01398{word-spacing:11.740160pt;}
.fs8_c01398{font-size:3.072000pt;}
.fse_c01398{font-size:6.133333pt;}
.fs9_c01398{font-size:9.226667pt;}
.fsc_c01398{font-size:12.266667pt;}
.fs0_c01398{font-size:15.360000pt;}
.fsd_c01398{font-size:18.453333pt;}
.fs10_c01398{font-size:21.493333pt;}
.fs7_c01398{font-size:27.626667pt;}
.fsf_c01398{font-size:30.720000pt;}
.fs11_c01398{font-size:33.813333pt;}
.fs5_c01398{font-size:39.946667pt;}
.fsb_c01398{font-size:49.173333pt;}
.fsa_c01398{font-size:52.213333pt;}
.fs2_c01398{font-size:55.306667pt;}
.fs4_c01398{font-size:58.346667pt;}
.fs1_c01398{font-size:61.440000pt;}
.fs3_c01398{font-size:64.533333pt;}
.fs6_c01398{font-size:67.573333pt;}
.y0_c01398{bottom:0.000000pt;}
.y19_c01398{bottom:582.906667pt;}
.y18_c01398{bottom:587.520000pt;}
.y17_c01398{bottom:597.506667pt;}
.y16_c01398{bottom:602.880000pt;}
.y14_c01398{bottom:619.773333pt;}
.y15_c01398{bottom:620.546667pt;}
.y12_c01398{bottom:640.506667pt;}
.y13_c01398{bottom:642.053333pt;}
.ya_c01398{bottom:1071.360000pt;}
.yb_c01398{bottom:1075.973333pt;}
.yc_c01398{bottom:1079.040000pt;}
.y11_c01398{bottom:1083.653333pt;}
.y8_c01398{bottom:1092.866667pt;}
.y9_c01398{bottom:1095.173333pt;}
.y10_c01398{bottom:1099.773333pt;}
.yf_c01398{bottom:1100.546667pt;}
.ye_c01398{bottom:1101.306667pt;}
.yd_c01398{bottom:1111.293333pt;}
.y2_c01398{bottom:1120.506667pt;}
.y3_c01398{bottom:1121.280000pt;}
.y4_c01398{bottom:1124.346667pt;}
.y7_c01398{bottom:1125.120000pt;}
.y6_c01398{bottom:1141.253333pt;}
.y5_c01398{bottom:1143.546667pt;}
.y1_c01398{bottom:1201.146667pt;}
.ha_c01398{height:2.764500pt;}
.hb_c01398{height:8.303099pt;}
.h2_c01398{height:13.822500pt;}
.he_c01398{height:16.606198pt;}
.h10_c01398{height:19.341901pt;}
.h9_c01398{height:24.861302pt;}
.hf_c01398{height:27.645000pt;}
.h11_c01398{height:30.428698pt;}
.h7_c01398{height:35.948099pt;}
.hd_c01398{height:44.251198pt;}
.hc_c01398{height:46.986901pt;}
.h4_c01398{height:49.770599pt;}
.h6_c01398{height:52.506302pt;}
.h3_c01398{height:55.290000pt;}
.h5_c01398{height:58.073698pt;}
.h8_c01398{height:60.809401pt;}
.h1_c01398{height:1345.333333pt;}
.h0_c01398{height:1345.533333pt;}
.w0_c01398{width:963.066667pt;}
.w1_c01398{width:963.333333pt;}
.x0_c01398{left:0.000000pt;}
.x18_c01398{left:6.146667pt;}
.x19_c01398{left:8.453333pt;}
.x16_c01398{left:14.586667pt;}
.x17_c01398{left:21.506667pt;}
.xb_c01398{left:219.653333pt;}
.x2_c01398{left:308.733333pt;}
.xe_c01398{left:321.026667pt;}
.xc_c01398{left:331.773333pt;}
.x3_c01398{left:346.373333pt;}
.x4_c01398{left:367.866667pt;}
.xd_c01398{left:374.786667pt;}
.x5_c01398{left:473.853333pt;}
.xf_c01398{left:480.773333pt;}
.x10_c01398{left:496.133333pt;}
.x6_c01398{left:497.666667pt;}
.x11_c01398{left:515.333333pt;}
.x12_c01398{left:527.613333pt;}
.x7_c01398{left:553.733333pt;}
.xa_c01398{left:658.946667pt;}
.x8_c01398{left:681.986667pt;}
.x15_c01398{left:688.133333pt;}
.x13_c01398{left:708.093333pt;}
.x14_c01398{left:737.280000pt;}
.x9_c01398{left:760.320000pt;}
.x1_c01398{left:854.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_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_1a5cb466d902c194ccd43f70.woff2')format("woff");}.ff1_c01399{font-family:ff1_c01399;line-height:1.109863;font-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_c01399{transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.025000,0.000000,0.000000,0.250000,0,0);}
.md_c01399{transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.035725,0.000000,0.000000,0.250000,0,0);}
.m2_c01399{transform:matrix(0.038200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.038200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.038200,0.000000,0.000000,0.250000,0,0);}
.m5_c01399{transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054350,0.000000,0.000000,0.250000,0,0);}
.m10_c01399{transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);}
.m7_c01399{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);}
.m9_c01399{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc_c01399{transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193050,0.000000,0.000000,0.250000,0,0);}
.mb_c01399{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);}
.mf_c01399{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);}
.me_c01399{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m6_c01399{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01399{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m12_c01399{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m4_c01399{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);}
.m0_c01399{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.ma_c01399{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m8_c01399{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m11_c01399{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);}
.v0_c01399{vertical-align:0.000000px;}
.ls1_c01399{letter-spacing:0.000000px;}
.ls0_c01399{letter-spacing:46.356000px;}
.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;}
.fs7_c01399{font-size:6.000000px;}
.fs6_c01399{font-size:10.380000px;}
.fs5_c01399{font-size:13.800000px;}
.fs3_c01399{font-size:17.280000px;}
.fs8_c01399{font-size:20.760000px;}
.fs0_c01399{font-size:24.180000px;}
.fsb_c01399{font-size:31.080000px;}
.fs1_c01399{font-size:34.560000px;}
.fsa_c01399{font-size:41.460000px;}
.fs9_c01399{font-size:48.360000px;}
.fs4_c01399{font-size:79.500000px;}
.fs2_c01399{font-size:124.440000px;}
.y0_c01399{bottom:0.000000px;}
.y14_c01399{bottom:429.405000px;}
.y13_c01399{bottom:451.875000px;}
.y12_c01399{bottom:455.325000px;}
.y11_c01399{bottom:476.925000px;}
.y10_c01399{bottom:491.610000px;}
.yf_c01399{bottom:497.670000px;}
.ye_c01399{bottom:504.570000px;}
.yd_c01399{bottom:510.630000px;}
.yc_c01399{bottom:534.810000px;}
.yb_c01399{bottom:545.190000px;}
.ya_c01399{bottom:559.875000px;}
.y9_c01399{bottom:563.325000px;}
.y8_c01399{bottom:582.330000px;}
.y7_c01399{bottom:592.710000px;}
.y6_c01399{bottom:597.030000px;}
.y5_c01399{bottom:617.760000px;}
.y3_c01399{bottom:622.080000px;}
.y4_c01399{bottom:652.320000px;}
.y1_c01399{bottom:654.045000px;}
.y2_c01399{bottom:658.365000px;}
.h8_c01399{height:9.340986px;}
.h7_c01399{height:12.418652px;}
.h5_c01399{height:15.550313px;}
.h9_c01399{height:18.681973px;}
.h2_c01399{height:21.759639px;}
.hc_c01399{height:27.968965px;}
.h3_c01399{height:31.100625px;}
.hb_c01399{height:37.309951px;}
.ha_c01399{height:43.519277px;}
.h6_c01399{height:71.542236px;}
.h4_c01399{height:111.983848px;}
.h1_c01399{height:1513.500000px;}
.h0_c01399{height:1513.725000px;}
.w0_c01399{width:1079.130000px;}
.w1_c01399{width:1079.250000px;}
.x0_c01399{left:0.000000px;}
.x3_c01399{left:6.915000px;}
.x4_c01399{left:118.365000px;}
.x1_c01399{left:131.325000px;}
.x2_c01399{left:140.835000px;}
.x5_c01399{left:147.750000px;}
@media print{
.v0_c01399{vertical-align:0.000000pt;}
.ls1_c01399{letter-spacing:0.000000pt;}
.ls0_c01399{letter-spacing:41.205333pt;}
.ws0_c01399{word-spacing:0.000000pt;}
.fs7_c01399{font-size:5.333333pt;}
.fs6_c01399{font-size:9.226667pt;}
.fs5_c01399{font-size:12.266667pt;}
.fs3_c01399{font-size:15.360000pt;}
.fs8_c01399{font-size:18.453333pt;}
.fs0_c01399{font-size:21.493333pt;}
.fsb_c01399{font-size:27.626667pt;}
.fs1_c01399{font-size:30.720000pt;}
.fsa_c01399{font-size:36.853333pt;}
.fs9_c01399{font-size:42.986667pt;}
.fs4_c01399{font-size:70.666667pt;}
.fs2_c01399{font-size:110.613333pt;}
.y0_c01399{bottom:0.000000pt;}
.y14_c01399{bottom:381.693333pt;}
.y13_c01399{bottom:401.666667pt;}
.y12_c01399{bottom:404.733333pt;}
.y11_c01399{bottom:423.933333pt;}
.y10_c01399{bottom:436.986667pt;}
.yf_c01399{bottom:442.373333pt;}
.ye_c01399{bottom:448.506667pt;}
.yd_c01399{bottom:453.893333pt;}
.yc_c01399{bottom:475.386667pt;}
.yb_c01399{bottom:484.613333pt;}
.ya_c01399{bottom:497.666667pt;}
.y9_c01399{bottom:500.733333pt;}
.y8_c01399{bottom:517.626667pt;}
.y7_c01399{bottom:526.853333pt;}
.y6_c01399{bottom:530.693333pt;}
.y5_c01399{bottom:549.120000pt;}
.y3_c01399{bottom:552.960000pt;}
.y4_c01399{bottom:579.840000pt;}
.y1_c01399{bottom:581.373333pt;}
.y2_c01399{bottom:585.213333pt;}
.h8_c01399{height:8.303099pt;}
.h7_c01399{height:11.038802pt;}
.h5_c01399{height:13.822500pt;}
.h9_c01399{height:16.606198pt;}
.h2_c01399{height:19.341901pt;}
.hc_c01399{height:24.861302pt;}
.h3_c01399{height:27.645000pt;}
.hb_c01399{height:33.164401pt;}
.ha_c01399{height:38.683802pt;}
.h6_c01399{height:63.593099pt;}
.h4_c01399{height:99.541198pt;}
.h1_c01399{height:1345.333333pt;}
.h0_c01399{height:1345.533333pt;}
.w0_c01399{width:959.226667pt;}
.w1_c01399{width:959.333333pt;}
.x0_c01399{left:0.000000pt;}
.x3_c01399{left:6.146667pt;}
.x4_c01399{left:105.213333pt;}
.x1_c01399{left:116.733333pt;}
.x2_c01399{left:125.186667pt;}
.x5_c01399{left:131.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dbce5f82af3af2c918be1e2d.woff2')format("woff");}.ff1_c01400{font-family:ff1_c01400;line-height:1.109863;font-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.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);}
.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;}
.fs0_c01400{font-size:600.000000px;}
.y0_c01400{bottom:0.000000px;}
.y1_c01400{bottom:15.000000px;}
.h2_c01400{height:539.941406px;}
.h1_c01400{height:1513.500000px;}
.h0_c01400{height:1513.725000px;}
.w0_c01400{width:1083.450000px;}
.w1_c01400{width:1083.750000px;}
.x0_c01400{left:0.000000px;}
.x1_c01400{left:15.000000px;}
@media print{
.v0_c01400{vertical-align:0.000000pt;}
.ls0_c01400{letter-spacing:0.000000pt;}
.ws0_c01400{word-spacing:0.000000pt;}
.fs0_c01400{font-size:533.333333pt;}
.y0_c01400{bottom:0.000000pt;}
.y1_c01400{bottom:13.333333pt;}
.h2_c01400{height:479.947917pt;}
.h1_c01400{height:1345.333333pt;}
.h0_c01400{height:1345.533333pt;}
.w0_c01400{width:963.066667pt;}
.w1_c01400{width:963.333333pt;}
.x0_c01400{left:0.000000pt;}
.x1_c01400{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01401;src:url('chunks/assets/font_0a8c7f2797d8b5e10c738822.woff2')format("woff");}.ff1_c01401{font-family:ff1_c01401;line-height:1.109863;font-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_c01401{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);}
.m1_c01401{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.v0_c01401{vertical-align:0.000000px;}
.ls0_c01401{letter-spacing:0.000000px;}
.sc__c01401{text-shadow:none;}
.sc0_c01401{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01401{-webkit-text-stroke:0px transparent;}
.sc0_c01401{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01401{word-spacing:0.000000px;}
.fc0_c01401{color:transparent;}
.fs0_c01401{font-size:51.840000px;}
.y0_c01401{bottom:0.000000px;}
.y2_c01401{bottom:645.405000px;}
.y1_c01401{bottom:825.990000px;}
.h2_c01401{height:46.650937px;}
.h1_c01401{height:1513.500000px;}
.h0_c01401{height:1513.725000px;}
.w0_c01401{width:1079.130000px;}
.w1_c01401{width:1079.250000px;}
.x0_c01401{left:0.000000px;}
.x1_c01401{left:23.325000px;}
.x2_c01401{left:44.925000px;}
@media print{
.v0_c01401{vertical-align:0.000000pt;}
.ls0_c01401{letter-spacing:0.000000pt;}
.ws0_c01401{word-spacing:0.000000pt;}
.fs0_c01401{font-size:46.080000pt;}
.y0_c01401{bottom:0.000000pt;}
.y2_c01401{bottom:573.693333pt;}
.y1_c01401{bottom:734.213333pt;}
.h2_c01401{height:41.467500pt;}
.h1_c01401{height:1345.333333pt;}
.h0_c01401{height:1345.533333pt;}
.w0_c01401{width:959.226667pt;}
.w1_c01401{width:959.333333pt;}
.x0_c01401{left:0.000000pt;}
.x1_c01401{left:20.733333pt;}
.x2_c01401{left:39.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_841d1318354ab7fbc015dbe2.woff2')format("woff");}.ff1_c01402{font-family:ff1_c01402;line-height:1.109863;font-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_c01402{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);}
.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;}
.fc0_c01402{color:transparent;}
.fs0_c01402{font-size:600.000000px;}
.y0_c01402{bottom:0.000000px;}
.y1_c01402{bottom:15.000000px;}
.h2_c01402{height:539.941406px;}
.h1_c01402{height:1513.500000px;}
.h0_c01402{height:1513.725000px;}
.w0_c01402{width:1083.450000px;}
.w1_c01402{width:1083.750000px;}
.x0_c01402{left:0.000000px;}
.x1_c01402{left:15.000000px;}
@media print{
.v0_c01402{vertical-align:0.000000pt;}
.ls0_c01402{letter-spacing:0.000000pt;}
.ws0_c01402{word-spacing:0.000000pt;}
.fs0_c01402{font-size:533.333333pt;}
.y0_c01402{bottom:0.000000pt;}
.y1_c01402{bottom:13.333333pt;}
.h2_c01402{height:479.947917pt;}
.h1_c01402{height:1345.333333pt;}
.h0_c01402{height:1345.533333pt;}
.w0_c01402{width:963.066667pt;}
.w1_c01402{width:963.333333pt;}
.x0_c01402{left:0.000000pt;}
.x1_c01402{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01403;src:url('chunks/assets/font_1a93501208cf5177c1573f09.woff2')format("woff");}.ff1_c01403{font-family:ff1_c01403;line-height:1.109863;font-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_c01403{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m19_c01403{transform:matrix(0.021000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021000,0.000000,0.000000,0.250000,0,0);}
.m6_c01403{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01403{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);}
.mb_c01403{transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199850,0.000000,0.000000,0.250000,0,0);}
.ma_c01403{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);}
.m4_c01403{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);}
.md_c01403{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);}
.m2_c01403{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c01403{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m17_c01403{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);}
.mf_c01403{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m14_c01403{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);}
.m12_c01403{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m15_c01403{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m3_c01403{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c01403{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);}
.m13_c01403{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5_c01403{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.me_c01403{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m11_c01403{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m10_c01403{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);}
.m18_c01403{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m8_c01403{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);}
.m1a_c01403{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m7_c01403{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m16_c01403{transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.672500,0.000000,0.000000,0.250000,0,0);}
.v0_c01403{vertical-align:0.000000px;}
.ls0_c01403{letter-spacing:0.000000px;}
.sc__c01403{text-shadow:none;}
.sc0_c01403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01403{-webkit-text-stroke:0px transparent;}
.sc0_c01403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01403{word-spacing:0.000000px;}
.fc0_c01403{color:transparent;}
.fs5_c01403{font-size:3.456000px;}
.fs2_c01403{font-size:6.000000px;}
.fs6_c01403{font-size:6.900000px;}
.fs7_c01403{font-size:10.380000px;}
.fs11_c01403{font-size:13.800000px;}
.fs1_c01403{font-size:17.280000px;}
.fs0_c01403{font-size:20.760000px;}
.fs4_c01403{font-size:24.180000px;}
.fs3_c01403{font-size:27.660000px;}
.fsf_c01403{font-size:31.080000px;}
.fsb_c01403{font-size:51.840000px;}
.fsc_c01403{font-size:55.320000px;}
.fs9_c01403{font-size:58.740000px;}
.fs8_c01403{font-size:62.220000px;}
.fsa_c01403{font-size:65.640000px;}
.fse_c01403{font-size:69.120000px;}
.fsd_c01403{font-size:72.600000px;}
.fs10_c01403{font-size:148.620000px;}
.y0_c01403{bottom:0.000000px;}
.y1d_c01403{bottom:302.400000px;}
.y1e_c01403{bottom:304.995000px;}
.y1b_c01403{bottom:305.850000px;}
.y1c_c01403{bottom:307.590000px;}
.y1a_c01403{bottom:379.290000px;}
.y19_c01403{bottom:482.115000px;}
.y18_c01403{bottom:484.710000px;}
.y17_c01403{bottom:491.610000px;}
.y16_c01403{bottom:802.650000px;}
.y15_c01403{bottom:838.950000px;}
.y14_c01403{bottom:1064.445000px;}
.y13_c01403{bottom:1137.030000px;}
.y8_c01403{bottom:1372.890000px;}
.y12_c01403{bottom:1373.760000px;}
.yf_c01403{bottom:1376.355000px;}
.y11_c01403{bottom:1377.210000px;}
.y10_c01403{bottom:1378.080000px;}
.yd_c01403{bottom:1378.950000px;}
.yb_c01403{bottom:1379.805000px;}
.yc_c01403{bottom:1380.675000px;}
.ye_c01403{bottom:1381.530000px;}
.ya_c01403{bottom:1392.765000px;}
.y9_c01403{bottom:1397.955000px;}
.y5_c01403{bottom:1433.370000px;}
.y2_c01403{bottom:1434.240000px;}
.y4_c01403{bottom:1435.965000px;}
.y7_c01403{bottom:1439.430000px;}
.y3_c01403{bottom:1440.285000px;}
.y1_c01403{bottom:1444.605000px;}
.y6_c01403{bottom:1448.070000px;}
.h7_c01403{height:3.110063px;}
.h4_c01403{height:5.399414px;}
.h8_c01403{height:6.209326px;}
.h9_c01403{height:9.340986px;}
.h13_c01403{height:12.418652px;}
.h3_c01403{height:15.550313px;}
.h2_c01403{height:18.681973px;}
.h6_c01403{height:21.759639px;}
.h5_c01403{height:24.891299px;}
.h11_c01403{height:27.968965px;}
.hd_c01403{height:46.650937px;}
.he_c01403{height:49.782598px;}
.hb_c01403{height:52.860264px;}
.ha_c01403{height:55.991924px;}
.hc_c01403{height:59.069590px;}
.h10_c01403{height:62.201250px;}
.hf_c01403{height:65.332910px;}
.h12_c01403{height:133.743486px;}
.h1_c01403{height:1513.500000px;}
.h0_c01403{height:1513.725000px;}
.w0_c01403{width:1079.130000px;}
.w1_c01403{width:1079.250000px;}
.x0_c01403{left:0.000000px;}
.x19_c01403{left:6.045000px;}
.x1a_c01403{left:8.640000px;}
.x8_c01403{left:16.410000px;}
.x20_c01403{left:107.130000px;}
.x1c_c01403{left:116.640000px;}
.x1d_c01403{left:119.235000px;}
.x1e_c01403{left:128.730000px;}
.x1f_c01403{left:151.200000px;}
.x1b_c01403{left:163.290000px;}
.x21_c01403{left:196.125000px;}
.x22_c01403{left:202.170000px;}
.xc_c01403{left:384.480000px;}
.xd_c01403{left:400.890000px;}
.xe_c01403{left:437.190000px;}
.xf_c01403{left:483.840000px;}
.x10_c01403{left:501.120000px;}
.x11_c01403{left:518.400000px;}
.x12_c01403{left:565.050000px;}
.x9_c01403{left:572.835000px;}
.x13_c01403{left:587.520000px;}
.x14_c01403{left:609.120000px;}
.x15_c01403{left:635.910000px;}
.x2_c01403{left:651.450000px;}
.x16_c01403{left:658.365000px;}
.x3_c01403{left:670.470000px;}
.x1_c01403{left:676.515000px;}
.x4_c01403{left:683.429925px;}
.x5_c01403{left:692.925000px;}
.x17_c01403{left:726.630000px;}
.x18_c01403{left:749.085000px;}
.xa_c01403{left:753.405000px;}
.xb_c01403{left:756.870000px;}
.x7_c01403{left:850.170000px;}
.x6_c01403{left:854.490000px;}
@media print{
.v0_c01403{vertical-align:0.000000pt;}
.ls0_c01403{letter-spacing:0.000000pt;}
.ws0_c01403{word-spacing:0.000000pt;}
.fs5_c01403{font-size:3.072000pt;}
.fs2_c01403{font-size:5.333333pt;}
.fs6_c01403{font-size:6.133333pt;}
.fs7_c01403{font-size:9.226667pt;}
.fs11_c01403{font-size:12.266667pt;}
.fs1_c01403{font-size:15.360000pt;}
.fs0_c01403{font-size:18.453333pt;}
.fs4_c01403{font-size:21.493333pt;}
.fs3_c01403{font-size:24.586667pt;}
.fsf_c01403{font-size:27.626667pt;}
.fsb_c01403{font-size:46.080000pt;}
.fsc_c01403{font-size:49.173333pt;}
.fs9_c01403{font-size:52.213333pt;}
.fs8_c01403{font-size:55.306667pt;}
.fsa_c01403{font-size:58.346667pt;}
.fse_c01403{font-size:61.440000pt;}
.fsd_c01403{font-size:64.533333pt;}
.fs10_c01403{font-size:132.106667pt;}
.y0_c01403{bottom:0.000000pt;}
.y1d_c01403{bottom:268.800000pt;}
.y1e_c01403{bottom:271.106667pt;}
.y1b_c01403{bottom:271.866667pt;}
.y1c_c01403{bottom:273.413333pt;}
.y1a_c01403{bottom:337.146667pt;}
.y19_c01403{bottom:428.546667pt;}
.y18_c01403{bottom:430.853333pt;}
.y17_c01403{bottom:436.986667pt;}
.y16_c01403{bottom:713.466667pt;}
.y15_c01403{bottom:745.733333pt;}
.y14_c01403{bottom:946.173333pt;}
.y13_c01403{bottom:1010.693333pt;}
.y8_c01403{bottom:1220.346667pt;}
.y12_c01403{bottom:1221.120000pt;}
.yf_c01403{bottom:1223.426667pt;}
.y11_c01403{bottom:1224.186667pt;}
.y10_c01403{bottom:1224.960000pt;}
.yd_c01403{bottom:1225.733333pt;}
.yb_c01403{bottom:1226.493333pt;}
.yc_c01403{bottom:1227.266667pt;}
.ye_c01403{bottom:1228.026667pt;}
.ya_c01403{bottom:1238.013333pt;}
.y9_c01403{bottom:1242.626667pt;}
.y5_c01403{bottom:1274.106667pt;}
.y2_c01403{bottom:1274.880000pt;}
.y4_c01403{bottom:1276.413333pt;}
.y7_c01403{bottom:1279.493333pt;}
.y3_c01403{bottom:1280.253333pt;}
.y1_c01403{bottom:1284.093333pt;}
.y6_c01403{bottom:1287.173333pt;}
.h7_c01403{height:2.764500pt;}
.h4_c01403{height:4.799479pt;}
.h8_c01403{height:5.519401pt;}
.h9_c01403{height:8.303099pt;}
.h13_c01403{height:11.038802pt;}
.h3_c01403{height:13.822500pt;}
.h2_c01403{height:16.606198pt;}
.h6_c01403{height:19.341901pt;}
.h5_c01403{height:22.125599pt;}
.h11_c01403{height:24.861302pt;}
.hd_c01403{height:41.467500pt;}
.he_c01403{height:44.251198pt;}
.hb_c01403{height:46.986901pt;}
.ha_c01403{height:49.770599pt;}
.hc_c01403{height:52.506302pt;}
.h10_c01403{height:55.290000pt;}
.hf_c01403{height:58.073698pt;}
.h12_c01403{height:118.883099pt;}
.h1_c01403{height:1345.333333pt;}
.h0_c01403{height:1345.533333pt;}
.w0_c01403{width:959.226667pt;}
.w1_c01403{width:959.333333pt;}
.x0_c01403{left:0.000000pt;}
.x19_c01403{left:5.373333pt;}
.x1a_c01403{left:7.680000pt;}
.x8_c01403{left:14.586667pt;}
.x20_c01403{left:95.226667pt;}
.x1c_c01403{left:103.680000pt;}
.x1d_c01403{left:105.986667pt;}
.x1e_c01403{left:114.426667pt;}
.x1f_c01403{left:134.400000pt;}
.x1b_c01403{left:145.146667pt;}
.x21_c01403{left:174.333333pt;}
.x22_c01403{left:179.706667pt;}
.xc_c01403{left:341.760000pt;}
.xd_c01403{left:356.346667pt;}
.xe_c01403{left:388.613333pt;}
.xf_c01403{left:430.080000pt;}
.x10_c01403{left:445.440000pt;}
.x11_c01403{left:460.800000pt;}
.x12_c01403{left:502.266667pt;}
.x9_c01403{left:509.186667pt;}
.x13_c01403{left:522.240000pt;}
.x14_c01403{left:541.440000pt;}
.x15_c01403{left:565.253333pt;}
.x2_c01403{left:579.066667pt;}
.x16_c01403{left:585.213333pt;}
.x3_c01403{left:595.973333pt;}
.x1_c01403{left:601.346667pt;}
.x4_c01403{left:607.493267pt;}
.x5_c01403{left:615.933333pt;}
.x17_c01403{left:645.893333pt;}
.x18_c01403{left:665.853333pt;}
.xa_c01403{left:669.693333pt;}
.xb_c01403{left:672.773333pt;}
.x7_c01403{left:755.706667pt;}
.x6_c01403{left:759.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2787daaccb4d8f8c6880214b.woff2')format("woff");}.ff1_c01404{font-family:ff1_c01404;line-height:1.109863;font-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_c01404{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);}
.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;}
.fs0_c01404{font-size:600.000000px;}
.y0_c01404{bottom:0.000000px;}
.y1_c01404{bottom:15.000000px;}
.h2_c01404{height:539.941406px;}
.h1_c01404{height:1513.500000px;}
.h0_c01404{height:1513.725000px;}
.w1_c01404{width:1092.750000px;}
.w0_c01404{width:1092.960000px;}
.x0_c01404{left:0.000000px;}
.x1_c01404{left:15.000000px;}
@media print{
.v0_c01404{vertical-align:0.000000pt;}
.ls0_c01404{letter-spacing:0.000000pt;}
.ws0_c01404{word-spacing:0.000000pt;}
.fs0_c01404{font-size:533.333333pt;}
.y0_c01404{bottom:0.000000pt;}
.y1_c01404{bottom:13.333333pt;}
.h2_c01404{height:479.947917pt;}
.h1_c01404{height:1345.333333pt;}
.h0_c01404{height:1345.533333pt;}
.w1_c01404{width:971.333333pt;}
.w0_c01404{width:971.520000pt;}
.x0_c01404{left:0.000000pt;}
.x1_c01404{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01405;src:url('chunks/assets/font_ec6c72e50dafc251a52edc26.woff2')format("woff");}.ff1_c01405{font-family:ff1_c01405;line-height:1.109863;font-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_c01405{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c01405{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);}
.m2_c01405{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);}
.mb_c01405{transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163600,0.000000,0.000000,0.250000,0,0);}
.m6_c01405{transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.169225,0.000000,0.000000,0.250000,0,0);}
.m8_c01405{transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196225,0.000000,0.000000,0.250000,0,0);}
.m7_c01405{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);}
.ma_c01405{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);}
.m0_c01405{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01405{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.mc_c01405{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m4_c01405{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);}
.m3_c01405{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.md_c01405{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.v0_c01405{vertical-align:0.000000px;}
.ls0_c01405{letter-spacing:0.000000px;}
.sc__c01405{text-shadow:none;}
.sc0_c01405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01405{-webkit-text-stroke:0px transparent;}
.sc0_c01405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01405{word-spacing:0.000000px;}
.fc0_c01405{color:transparent;}
.fs1_c01405{font-size:6.900000px;}
.fs0_c01405{font-size:17.280000px;}
.fsa_c01405{font-size:20.760000px;}
.fs3_c01405{font-size:24.180000px;}
.fs6_c01405{font-size:27.660000px;}
.fs9_c01405{font-size:38.040000px;}
.fs7_c01405{font-size:41.460000px;}
.fs8_c01405{font-size:44.940000px;}
.fs4_c01405{font-size:55.320000px;}
.fs5_c01405{font-size:62.220000px;}
.fs2_c01405{font-size:79.500000px;}
.y0_c01405{bottom:0.000000px;}
.ye_c01405{bottom:374.115000px;}
.yc_c01405{bottom:381.030000px;}
.yd_c01405{bottom:387.930000px;}
.yb_c01405{bottom:396.570000px;}
.ya_c01405{bottom:399.165000px;}
.y9_c01405{bottom:419.910000px;}
.y8_c01405{bottom:435.450000px;}
.y7_c01405{bottom:448.410000px;}
.y6_c01405{bottom:460.515000px;}
.y5_c01405{bottom:467.430000px;}
.y4_c01405{bottom:527.040000px;}
.y2_c01405{bottom:536.550000px;}
.y3_c01405{bottom:543.450000px;}
.y1_c01405{bottom:1382.400000px;}
.h3_c01405{height:6.209326px;}
.h2_c01405{height:15.550313px;}
.hc_c01405{height:18.681973px;}
.h5_c01405{height:21.759639px;}
.h8_c01405{height:24.891299px;}
.hb_c01405{height:34.232285px;}
.h9_c01405{height:37.309951px;}
.ha_c01405{height:40.441611px;}
.h6_c01405{height:49.782598px;}
.h7_c01405{height:55.991924px;}
.h4_c01405{height:71.542236px;}
.h1_c01405{height:1513.500000px;}
.h0_c01405{height:1513.725000px;}
.w0_c01405{width:1079.130000px;}
.w1_c01405{width:1079.250000px;}
.x0_c01405{left:0.000000px;}
.x5_c01405{left:8.640000px;}
.x3_c01405{left:23.325000px;}
.x1_c01405{left:25.050000px;}
.x4_c01405{left:28.515000px;}
.x2_c01405{left:31.965000px;}
@media print{
.v0_c01405{vertical-align:0.000000pt;}
.ls0_c01405{letter-spacing:0.000000pt;}
.ws0_c01405{word-spacing:0.000000pt;}
.fs1_c01405{font-size:6.133333pt;}
.fs0_c01405{font-size:15.360000pt;}
.fsa_c01405{font-size:18.453333pt;}
.fs3_c01405{font-size:21.493333pt;}
.fs6_c01405{font-size:24.586667pt;}
.fs9_c01405{font-size:33.813333pt;}
.fs7_c01405{font-size:36.853333pt;}
.fs8_c01405{font-size:39.946667pt;}
.fs4_c01405{font-size:49.173333pt;}
.fs5_c01405{font-size:55.306667pt;}
.fs2_c01405{font-size:70.666667pt;}
.y0_c01405{bottom:0.000000pt;}
.ye_c01405{bottom:332.546667pt;}
.yc_c01405{bottom:338.693333pt;}
.yd_c01405{bottom:344.826667pt;}
.yb_c01405{bottom:352.506667pt;}
.ya_c01405{bottom:354.813333pt;}
.y9_c01405{bottom:373.253333pt;}
.y8_c01405{bottom:387.066667pt;}
.y7_c01405{bottom:398.586667pt;}
.y6_c01405{bottom:409.346667pt;}
.y5_c01405{bottom:415.493333pt;}
.y4_c01405{bottom:468.480000pt;}
.y2_c01405{bottom:476.933333pt;}
.y3_c01405{bottom:483.066667pt;}
.y1_c01405{bottom:1228.800000pt;}
.h3_c01405{height:5.519401pt;}
.h2_c01405{height:13.822500pt;}
.hc_c01405{height:16.606198pt;}
.h5_c01405{height:19.341901pt;}
.h8_c01405{height:22.125599pt;}
.hb_c01405{height:30.428698pt;}
.h9_c01405{height:33.164401pt;}
.ha_c01405{height:35.948099pt;}
.h6_c01405{height:44.251198pt;}
.h7_c01405{height:49.770599pt;}
.h4_c01405{height:63.593099pt;}
.h1_c01405{height:1345.333333pt;}
.h0_c01405{height:1345.533333pt;}
.w0_c01405{width:959.226667pt;}
.w1_c01405{width:959.333333pt;}
.x0_c01405{left:0.000000pt;}
.x5_c01405{left:7.680000pt;}
.x3_c01405{left:20.733333pt;}
.x1_c01405{left:22.266667pt;}
.x4_c01405{left:25.346667pt;}
.x2_c01405{left:28.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9231ea16620a51355493a9d.woff2')format("woff");}.ff1_c01406{font-family:ff1_c01406;line-height:1.109863;font-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_c01406{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m64_c01406{transform:matrix(0.040100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.040100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.040100,0.000000,0.000000,0.250000,0,0);}
.m37_c01406{transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068175,0.000000,0.000000,0.250000,0,0);}
.m4e_c01406{transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089275,0.000000,0.000000,0.250000,0,0);}
.m2e_c01406{transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089925,0.000000,0.000000,0.250000,0,0);}
.m1b_c01406{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m47_c01406{transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093850,0.000000,0.000000,0.250000,0,0);}
.mb_c01406{transform:matrix(0.120700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120700,0.000000,0.000000,0.250000,0,0);}
.m27_c01406{transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121250,0.000000,0.000000,0.250000,0,0);}
.m1f_c01406{transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.124175,0.000000,0.000000,0.250000,0,0);}
.m17_c01406{transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125075,0.000000,0.000000,0.250000,0,0);}
.m18_c01406{transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.126400,0.000000,0.000000,0.250000,0,0);}
.m5e_c01406{transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134675,0.000000,0.000000,0.250000,0,0);}
.mf_c01406{transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135825,0.000000,0.000000,0.250000,0,0);}
.me_c01406{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m11_c01406{transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145175,0.000000,0.000000,0.250000,0,0);}
.m4d_c01406{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);}
.m51_c01406{transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155675,0.000000,0.000000,0.250000,0,0);}
.m20_c01406{transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156550,0.000000,0.000000,0.250000,0,0);}
.m1a_c01406{transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161350,0.000000,0.000000,0.250000,0,0);}
.m58_c01406{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);}
.m24_c01406{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);}
.m28_c01406{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m13_c01406{transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173125,0.000000,0.000000,0.250000,0,0);}
.m23_c01406{transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178700,0.000000,0.000000,0.250000,0,0);}
.m5_c01406{transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179350,0.000000,0.000000,0.250000,0,0);}
.m61_c01406{transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189825,0.000000,0.000000,0.250000,0,0);}
.m3f_c01406{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);}
.m53_c01406{transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198775,0.000000,0.000000,0.250000,0,0);}
.m8_c01406{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);}
.m25_c01406{transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207150,0.000000,0.000000,0.250000,0,0);}
.m3d_c01406{transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207800,0.000000,0.000000,0.250000,0,0);}
.m55_c01406{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);}
.m41_c01406{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);}
.m26_c01406{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);}
.m16_c01406{transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213200,0.000000,0.000000,0.250000,0,0);}
.m52_c01406{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);}
.m4c_c01406{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);}
.m57_c01406{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);}
.m1e_c01406{transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219650,0.000000,0.000000,0.250000,0,0);}
.m50_c01406{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);}
.m62_c01406{transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226650,0.000000,0.000000,0.250000,0,0);}
.m29_c01406{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);}
.m5d_c01406{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);}
.m12_c01406{transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244425,0.000000,0.000000,0.250000,0,0);}
.m54_c01406{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);}
.m3e_c01406{transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248325,0.000000,0.000000,0.250000,0,0);}
.m31_c01406{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);}
.m2c_c01406{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);}
.m9_c01406{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);}
.m40_c01406{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);}
.m10_c01406{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m2_c01406{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01406{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);}
.m3c_c01406{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m21_c01406{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01406{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);}
.m14_c01406{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);}
.m19_c01406{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_c01406{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m56_c01406{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m7_c01406{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);}
.m4b_c01406{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m15_c01406{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.ma_c01406{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m2b_c01406{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);}
.m43_c01406{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m38_c01406{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.mc_c01406{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m6_c01406{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);}
.m4a_c01406{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m42_c01406{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);}
.m2a_c01406{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.md_c01406{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01406{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);}
.m30_c01406{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m46_c01406{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m4_c01406{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m3b_c01406{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01406{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m45_c01406{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m32_c01406{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);}
.m0_c01406{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m44_c01406{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01406{transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.490000,0.000000,0.000000,0.250000,0,0);}
.m5c_c01406{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);}
.m63_c01406{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m49_c01406{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m35_c01406{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m1_c01406{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m60_c01406{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01406{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m48_c01406{transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.597500,0.000000,0.000000,0.250000,0,0);}
.m4f_c01406{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m33_c01406{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m5b_c01406{transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.772500,0.000000,0.000000,0.250000,0,0);}
.m5f_c01406{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m36_c01406{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m34_c01406{transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.152500,0.000000,0.000000,0.250000,0,0);}
.m39_c01406{transform:matrix(3.980000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(3.980000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(3.980000,0.000000,0.000000,0.250000,0,0);}
.m59_c01406{transform:matrix(5.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.175000,0.000000,0.000000,0.250000,0,0);}
.v0_c01406{vertical-align:0.000000px;}
.v1_c01406{vertical-align:3.480000px;}
.ls1_c01406{letter-spacing:0.000000px;}
.ls0_c01406{letter-spacing:25.177440px;}
.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:-15.336670px;}
.ws1_c01406{word-spacing:0.000000px;}
.fc0_c01406{color:transparent;}
.fs9_c01406{font-size:3.456000px;}
.fs1d_c01406{font-size:6.000000px;}
.fs15_c01406{font-size:10.380000px;}
.fs1b_c01406{font-size:13.800000px;}
.fs16_c01406{font-size:17.280000px;}
.fs0_c01406{font-size:20.760000px;}
.fs19_c01406{font-size:24.180000px;}
.fs12_c01406{font-size:27.660000px;}
.fs18_c01406{font-size:31.080000px;}
.fs10_c01406{font-size:34.560000px;}
.fs1a_c01406{font-size:38.040000px;}
.fs17_c01406{font-size:41.460000px;}
.fs11_c01406{font-size:44.940000px;}
.fs1c_c01406{font-size:48.360000px;}
.fse_c01406{font-size:51.840000px;}
.fs7_c01406{font-size:55.320000px;}
.fs4_c01406{font-size:58.740000px;}
.fs5_c01406{font-size:62.220000px;}
.fs14_c01406{font-size:65.640000px;}
.fs2_c01406{font-size:69.120000px;}
.fs3_c01406{font-size:72.600000px;}
.fsb_c01406{font-size:76.020000px;}
.fs6_c01406{font-size:79.500000px;}
.fs13_c01406{font-size:82.920000px;}
.fsf_c01406{font-size:86.400000px;}
.fs1_c01406{font-size:89.880000px;}
.fsc_c01406{font-size:96.780000px;}
.fs8_c01406{font-size:100.200000px;}
.fsa_c01406{font-size:107.160000px;}
.fsd_c01406{font-size:110.580000px;}
.fs1e_c01406{font-size:155.520000px;}
.y0_c01406{bottom:0.000000px;}
.y5a_c01406{bottom:939.165000px;}
.y59_c01406{bottom:946.950000px;}
.y58_c01406{bottom:1003.965000px;}
.y57_c01406{bottom:1101.600000px;}
.y51_c01406{bottom:1219.965000px;}
.y4f_c01406{bottom:1220.835000px;}
.y4e_c01406{bottom:1222.560000px;}
.y50_c01406{bottom:1223.430000px;}
.y4d_c01406{bottom:1226.010000px;}
.y55_c01406{bottom:1232.925000px;}
.y56_c01406{bottom:1237.245000px;}
.y45_c01406{bottom:1240.710000px;}
.y46_c01406{bottom:1243.290000px;}
.y48_c01406{bottom:1244.160000px;}
.y47_c01406{bottom:1248.480000px;}
.y4a_c01406{bottom:1250.205000px;}
.y49_c01406{bottom:1251.075000px;}
.y4b_c01406{bottom:1257.990000px;}
.y4c_c01406{bottom:1258.845000px;}
.y3e_c01406{bottom:1265.760000px;}
.y3c_c01406{bottom:1267.485000px;}
.y3d_c01406{bottom:1268.355000px;}
.y42_c01406{bottom:1269.210000px;}
.y43_c01406{bottom:1270.950000px;}
.y41_c01406{bottom:1273.530000px;}
.y40_c01406{bottom:1276.125000px;}
.y3f_c01406{bottom:1276.995000px;}
.y44_c01406{bottom:1279.590000px;}
.y33_c01406{bottom:1281.315000px;}
.y32_c01406{bottom:1284.765000px;}
.y39_c01406{bottom:1287.360000px;}
.y34_c01406{bottom:1288.230000px;}
.y35_c01406{bottom:1289.085000px;}
.y3a_c01406{bottom:1289.955000px;}
.y36_c01406{bottom:1290.810000px;}
.y37_c01406{bottom:1291.680000px;}
.y38_c01406{bottom:1292.550000px;}
.y3b_c01406{bottom:1293.405000px;}
.y2e_c01406{bottom:1298.595000px;}
.y31_c01406{bottom:1300.320000px;}
.y2f_c01406{bottom:1301.190000px;}
.y30_c01406{bottom:1302.045000px;}
.y26_c01406{bottom:1304.640000px;}
.y23_c01406{bottom:1306.365000px;}
.y24_c01406{bottom:1308.960000px;}
.y25_c01406{bottom:1309.830000px;}
.y2b_c01406{bottom:1311.555000px;}
.y27_c01406{bottom:1312.410000px;}
.y2c_c01406{bottom:1313.280000px;}
.y29_c01406{bottom:1314.150000px;}
.y2d_c01406{bottom:1315.005000px;}
.y2a_c01406{bottom:1315.875000px;}
.y54_c01406{bottom:1317.600000px;}
.y28_c01406{bottom:1318.470000px;}
.y1b_c01406{bottom:1319.325000px;}
.y1a_c01406{bottom:1320.195000px;}
.y19_c01406{bottom:1321.050000px;}
.y1e_c01406{bottom:1322.790000px;}
.y1d_c01406{bottom:1323.645000px;}
.y21_c01406{bottom:1325.370000px;}
.y20_c01406{bottom:1326.240000px;}
.y1f_c01406{bottom:1327.110000px;}
.y22_c01406{bottom:1327.965000px;}
.y1c_c01406{bottom:1335.750000px;}
.yc_c01406{bottom:1337.475000px;}
.y53_c01406{bottom:1338.330000px;}
.ye_c01406{bottom:1340.070000px;}
.y10_c01406{bottom:1344.390000px;}
.y13_c01406{bottom:1346.115000px;}
.y14_c01406{bottom:1346.970000px;}
.yd_c01406{bottom:1348.710000px;}
.y52_c01406{bottom:1349.565000px;}
.y12_c01406{bottom:1350.435000px;}
.yf_c01406{bottom:1351.290000px;}
.y16_c01406{bottom:1352.160000px;}
.y11_c01406{bottom:1353.030000px;}
.y15_c01406{bottom:1354.755000px;}
.y18_c01406{bottom:1363.395000px;}
.y2_c01406{bottom:1366.845000px;}
.y9_c01406{bottom:1373.760000px;}
.y17_c01406{bottom:1374.630000px;}
.y8_c01406{bottom:1377.210000px;}
.y3_c01406{bottom:1378.950000px;}
.y4_c01406{bottom:1379.805000px;}
.y5_c01406{bottom:1380.675000px;}
.y6_c01406{bottom:1381.530000px;}
.y7_c01406{bottom:1382.400000px;}
.ya_c01406{bottom:1383.270000px;}
.yb_c01406{bottom:1384.995000px;}
.y1_c01406{bottom:1423.875000px;}
.hb_c01406{height:3.110063px;}
.h1f_c01406{height:5.399414px;}
.h17_c01406{height:9.340986px;}
.h1d_c01406{height:12.418652px;}
.h18_c01406{height:15.550313px;}
.h2_c01406{height:18.681973px;}
.h20_c01406{height:19.030312px;}
.h1b_c01406{height:21.759639px;}
.h14_c01406{height:24.891299px;}
.h1a_c01406{height:27.968965px;}
.h12_c01406{height:31.100625px;}
.h1c_c01406{height:34.232285px;}
.h19_c01406{height:37.309951px;}
.h13_c01406{height:40.441611px;}
.h1e_c01406{height:43.519277px;}
.h10_c01406{height:46.650937px;}
.h9_c01406{height:49.782598px;}
.h6_c01406{height:52.860264px;}
.h7_c01406{height:55.991924px;}
.h16_c01406{height:59.069590px;}
.h4_c01406{height:62.201250px;}
.h5_c01406{height:65.332910px;}
.hd_c01406{height:68.410576px;}
.h8_c01406{height:71.542236px;}
.h15_c01406{height:74.619902px;}
.h11_c01406{height:77.751563px;}
.h3_c01406{height:80.883223px;}
.he_c01406{height:87.092549px;}
.ha_c01406{height:90.170215px;}
.hc_c01406{height:96.433535px;}
.hf_c01406{height:99.511201px;}
.h21_c01406{height:139.952812px;}
.h1_c01406{height:1513.500000px;}
.h0_c01406{height:1513.725000px;}
.w1_c01406{width:1092.750000px;}
.w0_c01406{width:1092.960000px;}
.x0_c01406{left:0.000000px;}
.x2_c01406{left:222.915000px;}
.x11_c01406{left:224.640000px;}
.x57_c01406{left:226.365000px;}
.x5b_c01406{left:246.240000px;}
.x3b_c01406{left:250.560000px;}
.x5c_c01406{left:257.475000px;}
.x12_c01406{left:266.115000px;}
.x1e_c01406{left:274.755000px;}
.x5d_c01406{left:278.205000px;}
.x40_c01406{left:284.250000px;}
.x58_c01406{left:285.990000px;}
.x4d_c01406{left:292.890000px;}
.x29_c01406{left:303.270000px;}
.x13_c01406{left:310.170000px;}
.x41_c01406{left:328.320000px;}
.x5e_c01406{left:332.640000px;}
.x4e_c01406{left:335.235000px;}
.x5f_c01406{left:347.325000px;}
.x1f_c01406{left:349.920000px;}
.x3_c01406{left:361.155000px;}
.x2a_c01406{left:368.070000px;}
.x42_c01406{left:375.840000px;}
.x43_c01406{left:381.885000px;}
.x2b_c01406{left:398.310000px;}
.x4_c01406{left:403.485000px;}
.x20_c01406{left:405.210000px;}
.x59_c01406{left:412.125000px;}
.x44_c01406{left:416.445000px;}
.x14_c01406{left:419.910000px;}
.x5_c01406{left:423.360000px;}
.x4f_c01406{left:425.085000px;}
.x3c_c01406{left:437.190000px;}
.x6_c01406{left:444.090000px;}
.x45_c01406{left:456.195000px;}
.x7_c01406{left:471.750000px;}
.x2c_c01406{left:477.795000px;}
.x15_c01406{left:484.710000px;}
.x46_c01406{left:486.435000px;}
.x8_c01406{left:494.205000px;}
.x21_c01406{left:513.210000px;}
.x9_c01406{left:514.950000px;}
.x60_c01406{left:521.850000px;}
.x2d_c01406{left:531.360000px;}
.x16_c01406{left:533.955000px;}
.x3d_c01406{left:535.680000px;}
.x2e_c01406{left:537.405000px;}
.x50_c01406{left:559.875000px;}
.xa_c01406{left:565.920000px;}
.x2f_c01406{left:569.370000px;}
.x47_c01406{left:572.835000px;}
.x17_c01406{left:579.750000px;}
.x51_c01406{left:583.200000px;}
.xb_c01406{left:585.795000px;}
.x30_c01406{left:591.840000px;}
.xc_c01406{left:613.440000px;}
.x52_c01406{left:622.080000px;}
.x31_c01406{left:629.850000px;}
.x22_c01406{left:634.170000px;}
.x48_c01406{left:646.275000px;}
.x18_c01406{left:651.450000px;}
.x23_c01406{left:655.770000px;}
.xd_c01406{left:662.685000px;}
.x32_c01406{left:668.730000px;}
.x3e_c01406{left:670.470000px;}
.xe_c01406{left:685.155000px;}
.x53_c01406{left:687.750000px;}
.x24_c01406{left:690.330000px;}
.x33_c01406{left:695.520000px;}
.x25_c01406{left:698.115000px;}
.xf_c01406{left:711.930000px;}
.x49_c01406{left:717.990000px;}
.x26_c01406{left:724.890000px;}
.x54_c01406{left:727.485000px;}
.x34_c01406{left:731.805000px;}
.x35_c01406{left:747.360000px;}
.x27_c01406{left:749.955000px;}
.x36_c01406{left:756.000000px;}
.x37_c01406{left:762.915000px;}
.x4a_c01406{left:765.510000px;}
.x10_c01406{left:780.195000px;}
.x19_c01406{left:796.605000px;}
.x1_c01406{left:800.925000px;}
.x38_c01406{left:806.115000px;}
.x55_c01406{left:807.840000px;}
.x39_c01406{left:811.290000px;}
.x1a_c01406{left:813.885000px;}
.x28_c01406{left:818.205000px;}
.x4b_c01406{left:820.800000px;}
.x3f_c01406{left:829.440000px;}
.x3a_c01406{left:832.890000px;}
.x5a_c01406{left:835.485000px;}
.x56_c01406{left:846.720000px;}
.x4c_c01406{left:850.170000px;}
.x65_c01406{left:857.085000px;}
.x1b_c01406{left:863.130000px;}
.x1c_c01406{left:868.320000px;}
.x1d_c01406{left:876.960000px;}
.x66_c01406{left:902.880000px;}
.x67_c01406{left:969.405000px;}
.x68_c01406{left:972.000000px;}
.x69_c01406{left:980.640000px;}
.x64_c01406{left:1044.570000px;}
.x61_c01406{left:1048.035000px;}
.x63_c01406{left:1070.490000px;}
.x62_c01406{left:1076.550000px;}
@media print{
.v0_c01406{vertical-align:0.000000pt;}
.v1_c01406{vertical-align:3.093333pt;}
.ls1_c01406{letter-spacing:0.000000pt;}
.ls0_c01406{letter-spacing:22.379947pt;}
.ws0_c01406{word-spacing:-13.632596pt;}
.ws1_c01406{word-spacing:0.000000pt;}
.fs9_c01406{font-size:3.072000pt;}
.fs1d_c01406{font-size:5.333333pt;}
.fs15_c01406{font-size:9.226667pt;}
.fs1b_c01406{font-size:12.266667pt;}
.fs16_c01406{font-size:15.360000pt;}
.fs0_c01406{font-size:18.453333pt;}
.fs19_c01406{font-size:21.493333pt;}
.fs12_c01406{font-size:24.586667pt;}
.fs18_c01406{font-size:27.626667pt;}
.fs10_c01406{font-size:30.720000pt;}
.fs1a_c01406{font-size:33.813333pt;}
.fs17_c01406{font-size:36.853333pt;}
.fs11_c01406{font-size:39.946667pt;}
.fs1c_c01406{font-size:42.986667pt;}
.fse_c01406{font-size:46.080000pt;}
.fs7_c01406{font-size:49.173333pt;}
.fs4_c01406{font-size:52.213333pt;}
.fs5_c01406{font-size:55.306667pt;}
.fs14_c01406{font-size:58.346667pt;}
.fs2_c01406{font-size:61.440000pt;}
.fs3_c01406{font-size:64.533333pt;}
.fsb_c01406{font-size:67.573333pt;}
.fs6_c01406{font-size:70.666667pt;}
.fs13_c01406{font-size:73.706667pt;}
.fsf_c01406{font-size:76.800000pt;}
.fs1_c01406{font-size:79.893333pt;}
.fsc_c01406{font-size:86.026667pt;}
.fs8_c01406{font-size:89.066667pt;}
.fsa_c01406{font-size:95.253333pt;}
.fsd_c01406{font-size:98.293333pt;}
.fs1e_c01406{font-size:138.240000pt;}
.y0_c01406{bottom:0.000000pt;}
.y5a_c01406{bottom:834.813333pt;}
.y59_c01406{bottom:841.733333pt;}
.y58_c01406{bottom:892.413333pt;}
.y57_c01406{bottom:979.200000pt;}
.y51_c01406{bottom:1084.413333pt;}
.y4f_c01406{bottom:1085.186667pt;}
.y4e_c01406{bottom:1086.720000pt;}
.y50_c01406{bottom:1087.493333pt;}
.y4d_c01406{bottom:1089.786667pt;}
.y55_c01406{bottom:1095.933333pt;}
.y56_c01406{bottom:1099.773333pt;}
.y45_c01406{bottom:1102.853333pt;}
.y46_c01406{bottom:1105.146667pt;}
.y48_c01406{bottom:1105.920000pt;}
.y47_c01406{bottom:1109.760000pt;}
.y4a_c01406{bottom:1111.293333pt;}
.y49_c01406{bottom:1112.066667pt;}
.y4b_c01406{bottom:1118.213333pt;}
.y4c_c01406{bottom:1118.973333pt;}
.y3e_c01406{bottom:1125.120000pt;}
.y3c_c01406{bottom:1126.653333pt;}
.y3d_c01406{bottom:1127.426667pt;}
.y42_c01406{bottom:1128.186667pt;}
.y43_c01406{bottom:1129.733333pt;}
.y41_c01406{bottom:1132.026667pt;}
.y40_c01406{bottom:1134.333333pt;}
.y3f_c01406{bottom:1135.106667pt;}
.y44_c01406{bottom:1137.413333pt;}
.y33_c01406{bottom:1138.946667pt;}
.y32_c01406{bottom:1142.013333pt;}
.y39_c01406{bottom:1144.320000pt;}
.y34_c01406{bottom:1145.093333pt;}
.y35_c01406{bottom:1145.853333pt;}
.y3a_c01406{bottom:1146.626667pt;}
.y36_c01406{bottom:1147.386667pt;}
.y37_c01406{bottom:1148.160000pt;}
.y38_c01406{bottom:1148.933333pt;}
.y3b_c01406{bottom:1149.693333pt;}
.y2e_c01406{bottom:1154.306667pt;}
.y31_c01406{bottom:1155.840000pt;}
.y2f_c01406{bottom:1156.613333pt;}
.y30_c01406{bottom:1157.373333pt;}
.y26_c01406{bottom:1159.680000pt;}
.y23_c01406{bottom:1161.213333pt;}
.y24_c01406{bottom:1163.520000pt;}
.y25_c01406{bottom:1164.293333pt;}
.y2b_c01406{bottom:1165.826667pt;}
.y27_c01406{bottom:1166.586667pt;}
.y2c_c01406{bottom:1167.360000pt;}
.y29_c01406{bottom:1168.133333pt;}
.y2d_c01406{bottom:1168.893333pt;}
.y2a_c01406{bottom:1169.666667pt;}
.y54_c01406{bottom:1171.200000pt;}
.y28_c01406{bottom:1171.973333pt;}
.y1b_c01406{bottom:1172.733333pt;}
.y1a_c01406{bottom:1173.506667pt;}
.y19_c01406{bottom:1174.266667pt;}
.y1e_c01406{bottom:1175.813333pt;}
.y1d_c01406{bottom:1176.573333pt;}
.y21_c01406{bottom:1178.106667pt;}
.y20_c01406{bottom:1178.880000pt;}
.y1f_c01406{bottom:1179.653333pt;}
.y22_c01406{bottom:1180.413333pt;}
.y1c_c01406{bottom:1187.333333pt;}
.yc_c01406{bottom:1188.866667pt;}
.y53_c01406{bottom:1189.626667pt;}
.ye_c01406{bottom:1191.173333pt;}
.y10_c01406{bottom:1195.013333pt;}
.y13_c01406{bottom:1196.546667pt;}
.y14_c01406{bottom:1197.306667pt;}
.yd_c01406{bottom:1198.853333pt;}
.y52_c01406{bottom:1199.613333pt;}
.y12_c01406{bottom:1200.386667pt;}
.yf_c01406{bottom:1201.146667pt;}
.y16_c01406{bottom:1201.920000pt;}
.y11_c01406{bottom:1202.693333pt;}
.y15_c01406{bottom:1204.226667pt;}
.y18_c01406{bottom:1211.906667pt;}
.y2_c01406{bottom:1214.973333pt;}
.y9_c01406{bottom:1221.120000pt;}
.y17_c01406{bottom:1221.893333pt;}
.y8_c01406{bottom:1224.186667pt;}
.y3_c01406{bottom:1225.733333pt;}
.y4_c01406{bottom:1226.493333pt;}
.y5_c01406{bottom:1227.266667pt;}
.y6_c01406{bottom:1228.026667pt;}
.y7_c01406{bottom:1228.800000pt;}
.ya_c01406{bottom:1229.573333pt;}
.yb_c01406{bottom:1231.106667pt;}
.y1_c01406{bottom:1265.666667pt;}
.hb_c01406{height:2.764500pt;}
.h1f_c01406{height:4.799479pt;}
.h17_c01406{height:8.303099pt;}
.h1d_c01406{height:11.038802pt;}
.h18_c01406{height:13.822500pt;}
.h2_c01406{height:16.606198pt;}
.h20_c01406{height:16.915833pt;}
.h1b_c01406{height:19.341901pt;}
.h14_c01406{height:22.125599pt;}
.h1a_c01406{height:24.861302pt;}
.h12_c01406{height:27.645000pt;}
.h1c_c01406{height:30.428698pt;}
.h19_c01406{height:33.164401pt;}
.h13_c01406{height:35.948099pt;}
.h1e_c01406{height:38.683802pt;}
.h10_c01406{height:41.467500pt;}
.h9_c01406{height:44.251198pt;}
.h6_c01406{height:46.986901pt;}
.h7_c01406{height:49.770599pt;}
.h16_c01406{height:52.506302pt;}
.h4_c01406{height:55.290000pt;}
.h5_c01406{height:58.073698pt;}
.hd_c01406{height:60.809401pt;}
.h8_c01406{height:63.593099pt;}
.h15_c01406{height:66.328802pt;}
.h11_c01406{height:69.112500pt;}
.h3_c01406{height:71.896198pt;}
.he_c01406{height:77.415599pt;}
.ha_c01406{height:80.151302pt;}
.hc_c01406{height:85.718698pt;}
.hf_c01406{height:88.454401pt;}
.h21_c01406{height:124.402500pt;}
.h1_c01406{height:1345.333333pt;}
.h0_c01406{height:1345.533333pt;}
.w1_c01406{width:971.333333pt;}
.w0_c01406{width:971.520000pt;}
.x0_c01406{left:0.000000pt;}
.x2_c01406{left:198.146667pt;}
.x11_c01406{left:199.680000pt;}
.x57_c01406{left:201.213333pt;}
.x5b_c01406{left:218.880000pt;}
.x3b_c01406{left:222.720000pt;}
.x5c_c01406{left:228.866667pt;}
.x12_c01406{left:236.546667pt;}
.x1e_c01406{left:244.226667pt;}
.x5d_c01406{left:247.293333pt;}
.x40_c01406{left:252.666667pt;}
.x58_c01406{left:254.213333pt;}
.x4d_c01406{left:260.346667pt;}
.x29_c01406{left:269.573333pt;}
.x13_c01406{left:275.706667pt;}
.x41_c01406{left:291.840000pt;}
.x5e_c01406{left:295.680000pt;}
.x4e_c01406{left:297.986667pt;}
.x5f_c01406{left:308.733333pt;}
.x1f_c01406{left:311.040000pt;}
.x3_c01406{left:321.026667pt;}
.x2a_c01406{left:327.173333pt;}
.x42_c01406{left:334.080000pt;}
.x43_c01406{left:339.453333pt;}
.x2b_c01406{left:354.053333pt;}
.x4_c01406{left:358.653333pt;}
.x20_c01406{left:360.186667pt;}
.x59_c01406{left:366.333333pt;}
.x44_c01406{left:370.173333pt;}
.x14_c01406{left:373.253333pt;}
.x5_c01406{left:376.320000pt;}
.x4f_c01406{left:377.853333pt;}
.x3c_c01406{left:388.613333pt;}
.x6_c01406{left:394.746667pt;}
.x45_c01406{left:405.506667pt;}
.x7_c01406{left:419.333333pt;}
.x2c_c01406{left:424.706667pt;}
.x15_c01406{left:430.853333pt;}
.x46_c01406{left:432.386667pt;}
.x8_c01406{left:439.293333pt;}
.x21_c01406{left:456.186667pt;}
.x9_c01406{left:457.733333pt;}
.x60_c01406{left:463.866667pt;}
.x2d_c01406{left:472.320000pt;}
.x16_c01406{left:474.626667pt;}
.x3d_c01406{left:476.160000pt;}
.x2e_c01406{left:477.693333pt;}
.x50_c01406{left:497.666667pt;}
.xa_c01406{left:503.040000pt;}
.x2f_c01406{left:506.106667pt;}
.x47_c01406{left:509.186667pt;}
.x17_c01406{left:515.333333pt;}
.x51_c01406{left:518.400000pt;}
.xb_c01406{left:520.706667pt;}
.x30_c01406{left:526.080000pt;}
.xc_c01406{left:545.280000pt;}
.x52_c01406{left:552.960000pt;}
.x31_c01406{left:559.866667pt;}
.x22_c01406{left:563.706667pt;}
.x48_c01406{left:574.466667pt;}
.x18_c01406{left:579.066667pt;}
.x23_c01406{left:582.906667pt;}
.xd_c01406{left:589.053333pt;}
.x32_c01406{left:594.426667pt;}
.x3e_c01406{left:595.973333pt;}
.xe_c01406{left:609.026667pt;}
.x53_c01406{left:611.333333pt;}
.x24_c01406{left:613.626667pt;}
.x33_c01406{left:618.240000pt;}
.x25_c01406{left:620.546667pt;}
.xf_c01406{left:632.826667pt;}
.x49_c01406{left:638.213333pt;}
.x26_c01406{left:644.346667pt;}
.x54_c01406{left:646.653333pt;}
.x34_c01406{left:650.493333pt;}
.x35_c01406{left:664.320000pt;}
.x27_c01406{left:666.626667pt;}
.x36_c01406{left:672.000000pt;}
.x37_c01406{left:678.146667pt;}
.x4a_c01406{left:680.453333pt;}
.x10_c01406{left:693.506667pt;}
.x19_c01406{left:708.093333pt;}
.x1_c01406{left:711.933333pt;}
.x38_c01406{left:716.546667pt;}
.x55_c01406{left:718.080000pt;}
.x39_c01406{left:721.146667pt;}
.x1a_c01406{left:723.453333pt;}
.x28_c01406{left:727.293333pt;}
.x4b_c01406{left:729.600000pt;}
.x3f_c01406{left:737.280000pt;}
.x3a_c01406{left:740.346667pt;}
.x5a_c01406{left:742.653333pt;}
.x56_c01406{left:752.640000pt;}
.x4c_c01406{left:755.706667pt;}
.x65_c01406{left:761.853333pt;}
.x1b_c01406{left:767.226667pt;}
.x1c_c01406{left:771.840000pt;}
.x1d_c01406{left:779.520000pt;}
.x66_c01406{left:802.560000pt;}
.x67_c01406{left:861.693333pt;}
.x68_c01406{left:864.000000pt;}
.x69_c01406{left:871.680000pt;}
.x64_c01406{left:928.506667pt;}
.x61_c01406{left:931.586667pt;}
.x63_c01406{left:951.546667pt;}
.x62_c01406{left:956.933333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01407;src:url('chunks/assets/font_b82021bd43d084078223c65a.woff2')format("woff");}.ff1_c01407{font-family:ff1_c01407;line-height:1.109863;font-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_c01407{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.md_c01407{transform:matrix(0.020050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020050,0.000000,0.000000,0.250000,0,0);}
.m6_c01407{transform:matrix(0.068250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068250,0.000000,0.000000,0.250000,0,0);}
.m46_c01407{transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.073525,0.000000,0.000000,0.250000,0,0);}
.m1f_c01407{transform:matrix(0.091150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.091150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.091150,0.000000,0.000000,0.250000,0,0);}
.m42_c01407{transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092000,0.000000,0.000000,0.250000,0,0);}
.m41_c01407{transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096000,0.000000,0.000000,0.250000,0,0);}
.m18_c01407{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);}
.m4e_c01407{transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122625,0.000000,0.000000,0.250000,0,0);}
.m3c_c01407{transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128825,0.000000,0.000000,0.250000,0,0);}
.mc_c01407{transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138900,0.000000,0.000000,0.250000,0,0);}
.m48_c01407{transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139525,0.000000,0.000000,0.250000,0,0);}
.me_c01407{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3f_c01407{transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144700,0.000000,0.000000,0.250000,0,0);}
.m16_c01407{transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146050,0.000000,0.000000,0.250000,0,0);}
.m17_c01407{transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158950,0.000000,0.000000,0.250000,0,0);}
.m1b_c01407{transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160675,0.000000,0.000000,0.250000,0,0);}
.m19_c01407{transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163275,0.000000,0.000000,0.250000,0,0);}
.m22_c01407{transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163750,0.000000,0.000000,0.250000,0,0);}
.m43_c01407{transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164700,0.000000,0.000000,0.250000,0,0);}
.m1d_c01407{transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167800,0.000000,0.000000,0.250000,0,0);}
.m4d_c01407{transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170975,0.000000,0.000000,0.250000,0,0);}
.m50_c01407{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m4b_c01407{transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181325,0.000000,0.000000,0.250000,0,0);}
.m25_c01407{transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181850,0.000000,0.000000,0.250000,0,0);}
.m10_c01407{transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187350,0.000000,0.000000,0.250000,0,0);}
.m45_c01407{transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190300,0.000000,0.000000,0.250000,0,0);}
.m20_c01407{transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192050,0.000000,0.000000,0.250000,0,0);}
.m39_c01407{transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192350,0.000000,0.000000,0.250000,0,0);}
.m44_c01407{transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.199650,0.000000,0.000000,0.250000,0,0);}
.mb_c01407{transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200750,0.000000,0.000000,0.250000,0,0);}
.m4a_c01407{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);}
.m36_c01407{transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206625,0.000000,0.000000,0.250000,0,0);}
.m21_c01407{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);}
.m26_c01407{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);}
.m4c_c01407{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);}
.m3e_c01407{transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214475,0.000000,0.000000,0.250000,0,0);}
.m3d_c01407{transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216825,0.000000,0.000000,0.250000,0,0);}
.m3b_c01407{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);}
.m2b_c01407{transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);}
.m47_c01407{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);}
.m34_c01407{transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227300,0.000000,0.000000,0.250000,0,0);}
.m7_c01407{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);}
.m37_c01407{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);}
.m40_c01407{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);}
.m2c_c01407{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.mf_c01407{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);}
.m28_c01407{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);}
.m1a_c01407{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);}
.m2a_c01407{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11_c01407{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);}
.m24_c01407{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m38_c01407{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m4_c01407{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m32_c01407{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c01407{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m27_c01407{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);}
.m1e_c01407{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);}
.m35_c01407{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m8_c01407{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01407{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c01407{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01407{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m30_c01407{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);}
.m4f_c01407{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m33_c01407{transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.345000,0.000000,0.000000,0.250000,0,0);}
.m52_c01407{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m14_c01407{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);}
.m23_c01407{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m3a_c01407{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);}
.m12_c01407{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);}
.m51_c01407{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m31_c01407{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01407{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);}
.m15_c01407{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m2e_c01407{transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.487500,0.000000,0.000000,0.250000,0,0);}
.m49_c01407{transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.507500,0.000000,0.000000,0.250000,0,0);}
.m3_c01407{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m29_c01407{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.ma_c01407{transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.705000,0.000000,0.000000,0.250000,0,0);}
.m1_c01407{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m53_c01407{transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.735000,0.000000,0.000000,0.250000,0,0);}
.m0_c01407{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);}
.m9_c01407{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v0_c01407{vertical-align:0.000000px;}
.v1_c01407{vertical-align:3.480000px;}
.ls1_c01407{letter-spacing:0.000000px;}
.ls0_c01407{letter-spacing:30.041667px;}
.sc__c01407{text-shadow:none;}
.sc0_c01407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01407{-webkit-text-stroke:0px transparent;}
.sc0_c01407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01407{word-spacing:0.000000px;}
.fc0_c01407{color:transparent;}
.fs19_c01407{font-size:3.456000px;}
.fs4_c01407{font-size:6.000000px;}
.fs7_c01407{font-size:10.380000px;}
.fs1d_c01407{font-size:13.800000px;}
.fs0_c01407{font-size:17.280000px;}
.fs6_c01407{font-size:20.760000px;}
.fs8_c01407{font-size:24.180000px;}
.fs3_c01407{font-size:27.660000px;}
.fs1_c01407{font-size:31.080000px;}
.fs2_c01407{font-size:34.560000px;}
.fs5_c01407{font-size:38.040000px;}
.fs16_c01407{font-size:41.460000px;}
.fsd_c01407{font-size:44.940000px;}
.fs1a_c01407{font-size:48.360000px;}
.fs17_c01407{font-size:51.840000px;}
.fse_c01407{font-size:55.320000px;}
.fs14_c01407{font-size:58.740000px;}
.fs13_c01407{font-size:62.220000px;}
.fs1c_c01407{font-size:65.640000px;}
.fs15_c01407{font-size:69.120000px;}
.fs10_c01407{font-size:72.600000px;}
.fsf_c01407{font-size:76.020000px;}
.fsc_c01407{font-size:79.500000px;}
.fsb_c01407{font-size:82.920000px;}
.fs18_c01407{font-size:86.400000px;}
.fs1b_c01407{font-size:89.880000px;}
.fs12_c01407{font-size:93.300000px;}
.fs11_c01407{font-size:103.680000px;}
.fs9_c01407{font-size:138.240000px;}
.fsa_c01407{font-size:155.520000px;}
.y0_c01407{bottom:0.000000px;}
.y47_c01407{bottom:214.275000px;}
.y46_c01407{bottom:218.595000px;}
.y48_c01407{bottom:219.450000px;}
.y45_c01407{bottom:220.320000px;}
.y42_c01407{bottom:221.190000px;}
.y40_c01407{bottom:222.045000px;}
.y41_c01407{bottom:222.915000px;}
.y3f_c01407{bottom:224.640000px;}
.y43_c01407{bottom:226.365000px;}
.y44_c01407{bottom:235.875000px;}
.y3d_c01407{bottom:243.645000px;}
.y38_c01407{bottom:245.370000px;}
.y3a_c01407{bottom:246.240000px;}
.y3e_c01407{bottom:247.110000px;}
.y39_c01407{bottom:247.965000px;}
.y3c_c01407{bottom:250.560000px;}
.y3b_c01407{bottom:265.245000px;}
.y37_c01407{bottom:269.565000px;}
.y32_c01407{bottom:270.435000px;}
.y34_c01407{bottom:271.290000px;}
.y33_c01407{bottom:272.160000px;}
.y36_c01407{bottom:273.030000px;}
.y35_c01407{bottom:273.885000px;}
.y31_c01407{bottom:294.630000px;}
.y30_c01407{bottom:295.485000px;}
.y2e_c01407{bottom:297.210000px;}
.y2f_c01407{bottom:299.805000px;}
.y2d_c01407{bottom:317.955000px;}
.y2b_c01407{bottom:321.405000px;}
.y2c_c01407{bottom:324.000000px;}
.y2a_c01407{bottom:345.600000px;}
.y28_c01407{bottom:346.470000px;}
.y27_c01407{bottom:347.325000px;}
.y26_c01407{bottom:348.195000px;}
.y29_c01407{bottom:353.370000px;}
.y21_c01407{bottom:367.200000px;}
.y24_c01407{bottom:369.795000px;}
.y23_c01407{bottom:370.650000px;}
.y22_c01407{bottom:372.390000px;}
.y25_c01407{bottom:376.710000px;}
.y20_c01407{bottom:388.800000px;}
.y1c_c01407{bottom:390.525000px;}
.y1d_c01407{bottom:392.250000px;}
.y1e_c01407{bottom:393.120000px;}
.y1f_c01407{bottom:394.845000px;}
.y18_c01407{bottom:412.125000px;}
.y1a_c01407{bottom:412.995000px;}
.y1b_c01407{bottom:413.850000px;}
.y17_c01407{bottom:414.720000px;}
.y19_c01407{bottom:418.170000px;}
.y15_c01407{bottom:435.450000px;}
.y10_c01407{bottom:437.190000px;}
.y14_c01407{bottom:438.045000px;}
.y16_c01407{bottom:438.915000px;}
.y13_c01407{bottom:440.640000px;}
.y11_c01407{bottom:442.365000px;}
.y12_c01407{bottom:443.235000px;}
.yf_c01407{bottom:454.470000px;}
.y8_c01407{bottom:779.325000px;}
.y9_c01407{bottom:781.050000px;}
.y7_c01407{bottom:787.110000px;}
.y4_c01407{bottom:803.520000px;}
.y5_c01407{bottom:805.245000px;}
.y6_c01407{bottom:808.710000px;}
.y3_c01407{bottom:815.610000px;}
.ye_c01407{bottom:939.165000px;}
.yc_c01407{bottom:979.770000px;}
.yd_c01407{bottom:1002.240000px;}
.yb_c01407{bottom:1012.605000px;}
.ya_c01407{bottom:1048.035000px;}
.y2_c01407{bottom:1101.600000px;}
.y1_c01407{bottom:1171.590000px;}
.h1b_c01407{height:3.110063px;}
.h6_c01407{height:5.399414px;}
.h20_c01407{height:8.879414px;}
.h9_c01407{height:9.340986px;}
.h1f_c01407{height:12.418652px;}
.h2_c01407{height:15.550313px;}
.h8_c01407{height:18.681973px;}
.ha_c01407{height:21.759639px;}
.h5_c01407{height:24.891299px;}
.h3_c01407{height:27.968965px;}
.h4_c01407{height:31.100625px;}
.h7_c01407{height:34.232285px;}
.h18_c01407{height:37.309951px;}
.hf_c01407{height:40.441611px;}
.h1c_c01407{height:43.519277px;}
.h19_c01407{height:46.650937px;}
.h10_c01407{height:49.782598px;}
.h16_c01407{height:52.860264px;}
.h15_c01407{height:55.991924px;}
.h1e_c01407{height:59.069590px;}
.h17_c01407{height:62.201250px;}
.h12_c01407{height:65.332910px;}
.h11_c01407{height:68.410576px;}
.he_c01407{height:71.542236px;}
.hd_c01407{height:74.619902px;}
.h1a_c01407{height:77.751563px;}
.h1d_c01407{height:80.883223px;}
.h14_c01407{height:83.960889px;}
.h13_c01407{height:93.301875px;}
.hb_c01407{height:124.402500px;}
.hc_c01407{height:139.952812px;}
.h1_c01407{height:1513.500000px;}
.h0_c01407{height:1513.725000px;}
.w0_c01407{width:1079.130000px;}
.w1_c01407{width:1079.250000px;}
.x0_c01407{left:0.000000px;}
.x3_c01407{left:4.320000px;}
.x1_c01407{left:9.510000px;}
.x6_c01407{left:25.050000px;}
.x4_c01407{left:30.240000px;}
.x5_c01407{left:37.155000px;}
.x2_c01407{left:40.605000px;}
.x8_c01407{left:106.275000px;}
.xa_c01407{left:117.510000px;}
.x9_c01407{left:131.325000px;}
.x7_c01407{left:140.835000px;}
.x3c_c01407{left:590.970000px;}
.x17_c01407{left:593.565000px;}
.x30_c01407{left:595.290000px;}
.x2b_c01407{left:610.845000px;}
.xb_c01407{left:615.165000px;}
.xc_c01407{left:619.485000px;}
.x3d_c01407{left:628.995000px;}
.x2c_c01407{left:630.720000px;}
.x48_c01407{left:635.040000px;}
.xd_c01407{left:640.230000px;}
.xe_c01407{left:657.510000px;}
.x1e_c01407{left:660.090000px;}
.x36_c01407{left:662.685000px;}
.x25_c01407{left:671.325000px;}
.xf_c01407{left:673.920000px;}
.x26_c01407{left:676.515000px;}
.x2d_c01407{left:685.155000px;}
.x1f_c01407{left:688.605000px;}
.x10_c01407{left:691.200000px;}
.x44_c01407{left:699.840000px;}
.x20_c01407{left:701.565000px;}
.x18_c01407{left:705.885000px;}
.x31_c01407{left:708.480000px;}
.x49_c01407{left:714.525000px;}
.x11_c01407{left:718.845000px;}
.x3e_c01407{left:720.570000px;}
.x33_c01407{left:724.890000px;}
.x19_c01407{left:730.950000px;}
.x12_c01407{left:736.125000px;}
.x37_c01407{left:740.445000px;}
.x2e_c01407{left:750.810000px;}
.x1a_c01407{left:759.450000px;}
.x13_c01407{left:762.045000px;}
.x14_c01407{left:785.370000px;}
.x21_c01407{left:787.110000px;}
.x32_c01407{left:789.690000px;}
.x22_c01407{left:791.430000px;}
.x1b_c01407{left:798.330000px;}
.x27_c01407{left:806.115000px;}
.x15_c01407{left:809.565000px;}
.x23_c01407{left:812.160000px;}
.x34_c01407{left:814.755000px;}
.x38_c01407{left:825.120000px;}
.x28_c01407{left:827.715000px;}
.x1c_c01407{left:832.890000px;}
.x35_c01407{left:834.630000px;}
.x16_c01407{left:841.530000px;}
.x39_c01407{left:845.850000px;}
.x24_c01407{left:850.170000px;}
.x1d_c01407{left:852.765000px;}
.x2f_c01407{left:857.955000px;}
.x4a_c01407{left:859.680000px;}
.x29_c01407{left:888.195000px;}
.x3a_c01407{left:895.110000px;}
.x2a_c01407{left:900.285000px;}
.x3f_c01407{left:905.475000px;}
.x45_c01407{left:910.650000px;}
.x3b_c01407{left:921.030000px;}
.x40_c01407{left:934.845000px;}
.x41_c01407{left:949.530000px;}
.x46_c01407{left:966.810000px;}
.x42_c01407{left:970.275000px;}
.x47_c01407{left:983.235000px;}
.x43_c01407{left:1000.515000px;}
@media print{
.v0_c01407{vertical-align:0.000000pt;}
.v1_c01407{vertical-align:3.093333pt;}
.ls1_c01407{letter-spacing:0.000000pt;}
.ls0_c01407{letter-spacing:26.703704pt;}
.ws0_c01407{word-spacing:0.000000pt;}
.fs19_c01407{font-size:3.072000pt;}
.fs4_c01407{font-size:5.333333pt;}
.fs7_c01407{font-size:9.226667pt;}
.fs1d_c01407{font-size:12.266667pt;}
.fs0_c01407{font-size:15.360000pt;}
.fs6_c01407{font-size:18.453333pt;}
.fs8_c01407{font-size:21.493333pt;}
.fs3_c01407{font-size:24.586667pt;}
.fs1_c01407{font-size:27.626667pt;}
.fs2_c01407{font-size:30.720000pt;}
.fs5_c01407{font-size:33.813333pt;}
.fs16_c01407{font-size:36.853333pt;}
.fsd_c01407{font-size:39.946667pt;}
.fs1a_c01407{font-size:42.986667pt;}
.fs17_c01407{font-size:46.080000pt;}
.fse_c01407{font-size:49.173333pt;}
.fs14_c01407{font-size:52.213333pt;}
.fs13_c01407{font-size:55.306667pt;}
.fs1c_c01407{font-size:58.346667pt;}
.fs15_c01407{font-size:61.440000pt;}
.fs10_c01407{font-size:64.533333pt;}
.fsf_c01407{font-size:67.573333pt;}
.fsc_c01407{font-size:70.666667pt;}
.fsb_c01407{font-size:73.706667pt;}
.fs18_c01407{font-size:76.800000pt;}
.fs1b_c01407{font-size:79.893333pt;}
.fs12_c01407{font-size:82.933333pt;}
.fs11_c01407{font-size:92.160000pt;}
.fs9_c01407{font-size:122.880000pt;}
.fsa_c01407{font-size:138.240000pt;}
.y0_c01407{bottom:0.000000pt;}
.y47_c01407{bottom:190.466667pt;}
.y46_c01407{bottom:194.306667pt;}
.y48_c01407{bottom:195.066667pt;}
.y45_c01407{bottom:195.840000pt;}
.y42_c01407{bottom:196.613333pt;}
.y40_c01407{bottom:197.373333pt;}
.y41_c01407{bottom:198.146667pt;}
.y3f_c01407{bottom:199.680000pt;}
.y43_c01407{bottom:201.213333pt;}
.y44_c01407{bottom:209.666667pt;}
.y3d_c01407{bottom:216.573333pt;}
.y38_c01407{bottom:218.106667pt;}
.y3a_c01407{bottom:218.880000pt;}
.y3e_c01407{bottom:219.653333pt;}
.y39_c01407{bottom:220.413333pt;}
.y3c_c01407{bottom:222.720000pt;}
.y3b_c01407{bottom:235.773333pt;}
.y37_c01407{bottom:239.613333pt;}
.y32_c01407{bottom:240.386667pt;}
.y34_c01407{bottom:241.146667pt;}
.y33_c01407{bottom:241.920000pt;}
.y36_c01407{bottom:242.693333pt;}
.y35_c01407{bottom:243.453333pt;}
.y31_c01407{bottom:261.893333pt;}
.y30_c01407{bottom:262.653333pt;}
.y2e_c01407{bottom:264.186667pt;}
.y2f_c01407{bottom:266.493333pt;}
.y2d_c01407{bottom:282.626667pt;}
.y2b_c01407{bottom:285.693333pt;}
.y2c_c01407{bottom:288.000000pt;}
.y2a_c01407{bottom:307.200000pt;}
.y28_c01407{bottom:307.973333pt;}
.y27_c01407{bottom:308.733333pt;}
.y26_c01407{bottom:309.506667pt;}
.y29_c01407{bottom:314.106667pt;}
.y21_c01407{bottom:326.400000pt;}
.y24_c01407{bottom:328.706667pt;}
.y23_c01407{bottom:329.466667pt;}
.y22_c01407{bottom:331.013333pt;}
.y25_c01407{bottom:334.853333pt;}
.y20_c01407{bottom:345.600000pt;}
.y1c_c01407{bottom:347.133333pt;}
.y1d_c01407{bottom:348.666667pt;}
.y1e_c01407{bottom:349.440000pt;}
.y1f_c01407{bottom:350.973333pt;}
.y18_c01407{bottom:366.333333pt;}
.y1a_c01407{bottom:367.106667pt;}
.y1b_c01407{bottom:367.866667pt;}
.y17_c01407{bottom:368.640000pt;}
.y19_c01407{bottom:371.706667pt;}
.y15_c01407{bottom:387.066667pt;}
.y10_c01407{bottom:388.613333pt;}
.y14_c01407{bottom:389.373333pt;}
.y16_c01407{bottom:390.146667pt;}
.y13_c01407{bottom:391.680000pt;}
.y11_c01407{bottom:393.213333pt;}
.y12_c01407{bottom:393.986667pt;}
.yf_c01407{bottom:403.973333pt;}
.y8_c01407{bottom:692.733333pt;}
.y9_c01407{bottom:694.266667pt;}
.y7_c01407{bottom:699.653333pt;}
.y4_c01407{bottom:714.240000pt;}
.y5_c01407{bottom:715.773333pt;}
.y6_c01407{bottom:718.853333pt;}
.y3_c01407{bottom:724.986667pt;}
.ye_c01407{bottom:834.813333pt;}
.yc_c01407{bottom:870.906667pt;}
.yd_c01407{bottom:890.880000pt;}
.yb_c01407{bottom:900.093333pt;}
.ya_c01407{bottom:931.586667pt;}
.y2_c01407{bottom:979.200000pt;}
.y1_c01407{bottom:1041.413333pt;}
.h1b_c01407{height:2.764500pt;}
.h6_c01407{height:4.799479pt;}
.h20_c01407{height:7.892813pt;}
.h9_c01407{height:8.303099pt;}
.h1f_c01407{height:11.038802pt;}
.h2_c01407{height:13.822500pt;}
.h8_c01407{height:16.606198pt;}
.ha_c01407{height:19.341901pt;}
.h5_c01407{height:22.125599pt;}
.h3_c01407{height:24.861302pt;}
.h4_c01407{height:27.645000pt;}
.h7_c01407{height:30.428698pt;}
.h18_c01407{height:33.164401pt;}
.hf_c01407{height:35.948099pt;}
.h1c_c01407{height:38.683802pt;}
.h19_c01407{height:41.467500pt;}
.h10_c01407{height:44.251198pt;}
.h16_c01407{height:46.986901pt;}
.h15_c01407{height:49.770599pt;}
.h1e_c01407{height:52.506302pt;}
.h17_c01407{height:55.290000pt;}
.h12_c01407{height:58.073698pt;}
.h11_c01407{height:60.809401pt;}
.he_c01407{height:63.593099pt;}
.hd_c01407{height:66.328802pt;}
.h1a_c01407{height:69.112500pt;}
.h1d_c01407{height:71.896198pt;}
.h14_c01407{height:74.631901pt;}
.h13_c01407{height:82.935000pt;}
.hb_c01407{height:110.580000pt;}
.hc_c01407{height:124.402500pt;}
.h1_c01407{height:1345.333333pt;}
.h0_c01407{height:1345.533333pt;}
.w0_c01407{width:959.226667pt;}
.w1_c01407{width:959.333333pt;}
.x0_c01407{left:0.000000pt;}
.x3_c01407{left:3.840000pt;}
.x1_c01407{left:8.453333pt;}
.x6_c01407{left:22.266667pt;}
.x4_c01407{left:26.880000pt;}
.x5_c01407{left:33.026667pt;}
.x2_c01407{left:36.093333pt;}
.x8_c01407{left:94.466667pt;}
.xa_c01407{left:104.453333pt;}
.x9_c01407{left:116.733333pt;}
.x7_c01407{left:125.186667pt;}
.x3c_c01407{left:525.306667pt;}
.x17_c01407{left:527.613333pt;}
.x30_c01407{left:529.146667pt;}
.x2b_c01407{left:542.973333pt;}
.xb_c01407{left:546.813333pt;}
.xc_c01407{left:550.653333pt;}
.x3d_c01407{left:559.106667pt;}
.x2c_c01407{left:560.640000pt;}
.x48_c01407{left:564.480000pt;}
.xd_c01407{left:569.093333pt;}
.xe_c01407{left:584.453333pt;}
.x1e_c01407{left:586.746667pt;}
.x36_c01407{left:589.053333pt;}
.x25_c01407{left:596.733333pt;}
.xf_c01407{left:599.040000pt;}
.x26_c01407{left:601.346667pt;}
.x2d_c01407{left:609.026667pt;}
.x1f_c01407{left:612.093333pt;}
.x10_c01407{left:614.400000pt;}
.x44_c01407{left:622.080000pt;}
.x20_c01407{left:623.613333pt;}
.x18_c01407{left:627.453333pt;}
.x31_c01407{left:629.760000pt;}
.x49_c01407{left:635.133333pt;}
.x11_c01407{left:638.973333pt;}
.x3e_c01407{left:640.506667pt;}
.x33_c01407{left:644.346667pt;}
.x19_c01407{left:649.733333pt;}
.x12_c01407{left:654.333333pt;}
.x37_c01407{left:658.173333pt;}
.x2e_c01407{left:667.386667pt;}
.x1a_c01407{left:675.066667pt;}
.x13_c01407{left:677.373333pt;}
.x14_c01407{left:698.106667pt;}
.x21_c01407{left:699.653333pt;}
.x32_c01407{left:701.946667pt;}
.x22_c01407{left:703.493333pt;}
.x1b_c01407{left:709.626667pt;}
.x27_c01407{left:716.546667pt;}
.x15_c01407{left:719.613333pt;}
.x23_c01407{left:721.920000pt;}
.x34_c01407{left:724.226667pt;}
.x38_c01407{left:733.440000pt;}
.x28_c01407{left:735.746667pt;}
.x1c_c01407{left:740.346667pt;}
.x35_c01407{left:741.893333pt;}
.x16_c01407{left:748.026667pt;}
.x39_c01407{left:751.866667pt;}
.x24_c01407{left:755.706667pt;}
.x1d_c01407{left:758.013333pt;}
.x2f_c01407{left:762.626667pt;}
.x4a_c01407{left:764.160000pt;}
.x29_c01407{left:789.506667pt;}
.x3a_c01407{left:795.653333pt;}
.x2a_c01407{left:800.253333pt;}
.x3f_c01407{left:804.866667pt;}
.x45_c01407{left:809.466667pt;}
.x3b_c01407{left:818.693333pt;}
.x40_c01407{left:830.973333pt;}
.x41_c01407{left:844.026667pt;}
.x46_c01407{left:859.386667pt;}
.x42_c01407{left:862.466667pt;}
.x47_c01407{left:873.986667pt;}
.x43_c01407{left:889.346667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c3ca5823b134b75c6f83442a.woff2')format("woff");}.ff1_c01408{font-family:ff1_c01408;line-height:1.109863;font-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_c01408{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);}
.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;}
.fc0_c01408{color:transparent;}
.fs0_c01408{font-size:600.000000px;}
.y0_c01408{bottom:0.000000px;}
.y1_c01408{bottom:15.000000px;}
.h2_c01408{height:539.941406px;}
.h1_c01408{height:1513.500000px;}
.h0_c01408{height:1513.725000px;}
.w1_c01408{width:1092.750000px;}
.w0_c01408{width:1092.960000px;}
.x0_c01408{left:0.000000px;}
.x1_c01408{left:15.000000px;}
@media print{
.v0_c01408{vertical-align:0.000000pt;}
.ls0_c01408{letter-spacing:0.000000pt;}
.ws0_c01408{word-spacing:0.000000pt;}
.fs0_c01408{font-size:533.333333pt;}
.y0_c01408{bottom:0.000000pt;}
.y1_c01408{bottom:13.333333pt;}
.h2_c01408{height:479.947917pt;}
.h1_c01408{height:1345.333333pt;}
.h0_c01408{height:1345.533333pt;}
.w1_c01408{width:971.333333pt;}
.w0_c01408{width:971.520000pt;}
.x0_c01408{left:0.000000pt;}
.x1_c01408{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f4a8c2b096dfa395fc065d9c.woff2')format("woff");}.ff1_c01409{font-family:ff1_c01409;line-height:1.109863;font-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_c01409{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c01409{transform:matrix(0.039250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.039250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.039250,0.000000,0.000000,0.250000,0,0);}
.m7_c01409{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m5_c01409{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m2_c01409{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c01409{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);}
.m4_c01409{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c01409{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);}
.m1_c01409{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,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;}
.fs4_c01409{font-size:3.456000px;}
.fs2_c01409{font-size:10.380000px;}
.fs0_c01409{font-size:20.760000px;}
.fs3_c01409{font-size:27.660000px;}
.fs1_c01409{font-size:34.560000px;}
.fs5_c01409{font-size:38.040000px;}
.fs6_c01409{font-size:51.840000px;}
.fs7_c01409{font-size:159.000000px;}
.y0_c01409{bottom:0.000000px;}
.y2_c01409{bottom:453.600000px;}
.y1_c01409{bottom:495.930000px;}
.yb_c01409{bottom:728.355000px;}
.ya_c01409{bottom:769.830000px;}
.y9_c01409{bottom:999.645000px;}
.y7_c01409{bottom:1016.070000px;}
.y8_c01409{bottom:1016.925000px;}
.y6_c01409{bottom:1099.875000px;}
.y5_c01409{bottom:1111.110000px;}
.y4_c01409{bottom:1165.530000px;}
.y3_c01409{bottom:1168.125000px;}
.h6_c01409{height:3.110063px;}
.h4_c01409{height:9.340986px;}
.h2_c01409{height:18.681973px;}
.h5_c01409{height:24.891299px;}
.h3_c01409{height:31.100625px;}
.h7_c01409{height:34.232285px;}
.h8_c01409{height:46.650937px;}
.h9_c01409{height:143.084473px;}
.h1_c01409{height:1513.500000px;}
.h0_c01409{height:1513.725000px;}
.w1_c01409{width:1071.000000px;}
.w0_c01409{width:1071.360000px;}
.x0_c01409{left:0.000000px;}
.x2_c01409{left:37.155000px;}
.x1_c01409{left:78.630000px;}
.xa_c01409{left:108.870000px;}
.x7_c01409{left:114.045000px;}
.x9_c01409{left:123.555000px;}
.x8_c01409{left:127.005000px;}
.x5_c01409{left:135.645000px;}
.x3_c01409{left:155.520000px;}
.x6_c01409{left:165.030000px;}
.x4_c01409{left:169.350000px;}
@media print{
.v0_c01409{vertical-align:0.000000pt;}
.ls0_c01409{letter-spacing:0.000000pt;}
.ws0_c01409{word-spacing:0.000000pt;}
.fs4_c01409{font-size:3.072000pt;}
.fs2_c01409{font-size:9.226667pt;}
.fs0_c01409{font-size:18.453333pt;}
.fs3_c01409{font-size:24.586667pt;}
.fs1_c01409{font-size:30.720000pt;}
.fs5_c01409{font-size:33.813333pt;}
.fs6_c01409{font-size:46.080000pt;}
.fs7_c01409{font-size:141.333333pt;}
.y0_c01409{bottom:0.000000pt;}
.y2_c01409{bottom:403.200000pt;}
.y1_c01409{bottom:440.826667pt;}
.yb_c01409{bottom:647.426667pt;}
.ya_c01409{bottom:684.293333pt;}
.y9_c01409{bottom:888.573333pt;}
.y7_c01409{bottom:903.173333pt;}
.y8_c01409{bottom:903.933333pt;}
.y6_c01409{bottom:977.666667pt;}
.y5_c01409{bottom:987.653333pt;}
.y4_c01409{bottom:1036.026667pt;}
.y3_c01409{bottom:1038.333333pt;}
.h6_c01409{height:2.764500pt;}
.h4_c01409{height:8.303099pt;}
.h2_c01409{height:16.606198pt;}
.h5_c01409{height:22.125599pt;}
.h3_c01409{height:27.645000pt;}
.h7_c01409{height:30.428698pt;}
.h8_c01409{height:41.467500pt;}
.h9_c01409{height:127.186198pt;}
.h1_c01409{height:1345.333333pt;}
.h0_c01409{height:1345.533333pt;}
.w1_c01409{width:952.000000pt;}
.w0_c01409{width:952.320000pt;}
.x0_c01409{left:0.000000pt;}
.x2_c01409{left:33.026667pt;}
.x1_c01409{left:69.893333pt;}
.xa_c01409{left:96.773333pt;}
.x7_c01409{left:101.373333pt;}
.x9_c01409{left:109.826667pt;}
.x8_c01409{left:112.893333pt;}
.x5_c01409{left:120.573333pt;}
.x3_c01409{left:138.240000pt;}
.x6_c01409{left:146.693333pt;}
.x4_c01409{left:150.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ea485db38de7842d1d9334b.woff2')format("woff");}.ff1_c01410{font-family:ff1_c01410;line-height:1.109863;font-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_c01410{transform:matrix(0.029125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.029125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.029125,0.000000,0.000000,0.250000,0,0);}
.m6_c01410{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.m2_c01410{transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);}
.m4_c01410{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m0_c01410{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c01410{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);}
.m3_c01410{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m1_c01410{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m5_c01410{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,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;}
.fs1_c01410{font-size:3.456000px;}
.fs6_c01410{font-size:6.900000px;}
.fs3_c01410{font-size:17.280000px;}
.fs0_c01410{font-size:20.760000px;}
.fs2_c01410{font-size:31.080000px;}
.fs4_c01410{font-size:38.040000px;}
.fs5_c01410{font-size:41.460000px;}
.fs7_c01410{font-size:72.600000px;}
.fs8_c01410{font-size:107.160000px;}
.y0_c01410{bottom:0.000000px;}
.ya_c01410{bottom:652.320000px;}
.y9_c01410{bottom:683.430000px;}
.y8_c01410{bottom:972.870000px;}
.y7_c01410{bottom:980.640000px;}
.y5_c01410{bottom:992.730000px;}
.y6_c01410{bottom:997.920000px;}
.y4_c01410{bottom:999.645000px;}
.y3_c01410{bottom:1006.560000px;}
.y2_c01410{bottom:1022.970000px;}
.y1_c01410{bottom:1029.885000px;}
.h3_c01410{height:3.110063px;}
.h8_c01410{height:6.209326px;}
.h5_c01410{height:15.550313px;}
.h2_c01410{height:18.681973px;}
.h4_c01410{height:27.968965px;}
.h6_c01410{height:34.232285px;}
.h7_c01410{height:37.309951px;}
.h9_c01410{height:65.332910px;}
.ha_c01410{height:96.433535px;}
.h1_c01410{height:1513.500000px;}
.h0_c01410{height:1513.725000px;}
.w0_c01410{width:1079.130000px;}
.w1_c01410{width:1079.250000px;}
.x0_c01410{left:0.000000px;}
.x3_c01410{left:956.445000px;}
.x4_c01410{left:961.635000px;}
.x1_c01410{left:967.680000px;}
.x2_c01410{left:982.365000px;}
@media print{
.v0_c01410{vertical-align:0.000000pt;}
.ls0_c01410{letter-spacing:0.000000pt;}
.ws0_c01410{word-spacing:0.000000pt;}
.fs1_c01410{font-size:3.072000pt;}
.fs6_c01410{font-size:6.133333pt;}
.fs3_c01410{font-size:15.360000pt;}
.fs0_c01410{font-size:18.453333pt;}
.fs2_c01410{font-size:27.626667pt;}
.fs4_c01410{font-size:33.813333pt;}
.fs5_c01410{font-size:36.853333pt;}
.fs7_c01410{font-size:64.533333pt;}
.fs8_c01410{font-size:95.253333pt;}
.y0_c01410{bottom:0.000000pt;}
.ya_c01410{bottom:579.840000pt;}
.y9_c01410{bottom:607.493333pt;}
.y8_c01410{bottom:864.773333pt;}
.y7_c01410{bottom:871.680000pt;}
.y5_c01410{bottom:882.426667pt;}
.y6_c01410{bottom:887.040000pt;}
.y4_c01410{bottom:888.573333pt;}
.y3_c01410{bottom:894.720000pt;}
.y2_c01410{bottom:909.306667pt;}
.y1_c01410{bottom:915.453333pt;}
.h3_c01410{height:2.764500pt;}
.h8_c01410{height:5.519401pt;}
.h5_c01410{height:13.822500pt;}
.h2_c01410{height:16.606198pt;}
.h4_c01410{height:24.861302pt;}
.h6_c01410{height:30.428698pt;}
.h7_c01410{height:33.164401pt;}
.h9_c01410{height:58.073698pt;}
.ha_c01410{height:85.718698pt;}
.h1_c01410{height:1345.333333pt;}
.h0_c01410{height:1345.533333pt;}
.w0_c01410{width:959.226667pt;}
.w1_c01410{width:959.333333pt;}
.x0_c01410{left:0.000000pt;}
.x3_c01410{left:850.173333pt;}
.x4_c01410{left:854.786667pt;}
.x1_c01410{left:860.160000pt;}
.x2_c01410{left:873.213333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e21ed58560f4c929f391542a.woff2')format("woff");}.ff1_c01411{font-family:ff1_c01411;line-height:1.109863;font-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_c01411{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c01411{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.m9_c01411{transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046925,0.000000,0.000000,0.250000,0,0);}
.ma_c01411{transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075200,0.000000,0.000000,0.250000,0,0);}
.m6_c01411{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m0_c01411{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m7_c01411{transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.137350,0.000000,0.000000,0.250000,0,0);}
.m5_c01411{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c01411{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m3_c01411{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1_c01411{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,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;}
.fs7_c01411{font-size:3.456000px;}
.fs4_c01411{font-size:10.380000px;}
.fs3_c01411{font-size:13.800000px;}
.fs0_c01411{font-size:27.660000px;}
.fs5_c01411{font-size:34.560000px;}
.fs2_c01411{font-size:38.040000px;}
.fs1_c01411{font-size:41.460000px;}
.fs9_c01411{font-size:55.320000px;}
.fs8_c01411{font-size:72.600000px;}
.fs6_c01411{font-size:79.500000px;}
.y0_c01411{bottom:0.000000px;}
.yc_c01411{bottom:654.915000px;}
.yb_c01411{bottom:665.280000px;}
.ya_c01411{bottom:683.430000px;}
.y9_c01411{bottom:694.650000px;}
.y8_c01411{bottom:943.485000px;}
.y7_c01411{bottom:973.725000px;}
.y6_c01411{bottom:981.510000px;}
.y5_c01411{bottom:984.090000px;}
.y4_c01411{bottom:987.555000px;}
.y3_c01411{bottom:992.730000px;}
.y2_c01411{bottom:998.790000px;}
.y1_c01411{bottom:1007.430000px;}
.h9_c01411{height:3.110063px;}
.h6_c01411{height:9.340986px;}
.h5_c01411{height:12.418652px;}
.h2_c01411{height:24.891299px;}
.h7_c01411{height:31.100625px;}
.h4_c01411{height:34.232285px;}
.h3_c01411{height:37.309951px;}
.hb_c01411{height:49.782598px;}
.ha_c01411{height:65.332910px;}
.h8_c01411{height:71.542236px;}
.h1_c01411{height:1513.500000px;}
.h0_c01411{height:1513.725000px;}
.w0_c01411{width:1079.130000px;}
.w1_c01411{width:1079.250000px;}
.x0_c01411{left:0.000000px;}
.x3_c01411{left:44.070000px;}
.x4_c01411{left:92.445000px;}
.x5_c01411{left:98.490000px;}
.x1_c01411{left:104.550000px;}
.x2_c01411{left:118.365000px;}
.x6_c01411{left:125.280000px;}
@media print{
.v0_c01411{vertical-align:0.000000pt;}
.ls0_c01411{letter-spacing:0.000000pt;}
.ws0_c01411{word-spacing:0.000000pt;}
.fs7_c01411{font-size:3.072000pt;}
.fs4_c01411{font-size:9.226667pt;}
.fs3_c01411{font-size:12.266667pt;}
.fs0_c01411{font-size:24.586667pt;}
.fs5_c01411{font-size:30.720000pt;}
.fs2_c01411{font-size:33.813333pt;}
.fs1_c01411{font-size:36.853333pt;}
.fs9_c01411{font-size:49.173333pt;}
.fs8_c01411{font-size:64.533333pt;}
.fs6_c01411{font-size:70.666667pt;}
.y0_c01411{bottom:0.000000pt;}
.yc_c01411{bottom:582.146667pt;}
.yb_c01411{bottom:591.360000pt;}
.ya_c01411{bottom:607.493333pt;}
.y9_c01411{bottom:617.466667pt;}
.y8_c01411{bottom:838.653333pt;}
.y7_c01411{bottom:865.533333pt;}
.y6_c01411{bottom:872.453333pt;}
.y5_c01411{bottom:874.746667pt;}
.y4_c01411{bottom:877.826667pt;}
.y3_c01411{bottom:882.426667pt;}
.y2_c01411{bottom:887.813333pt;}
.y1_c01411{bottom:895.493333pt;}
.h9_c01411{height:2.764500pt;}
.h6_c01411{height:8.303099pt;}
.h5_c01411{height:11.038802pt;}
.h2_c01411{height:22.125599pt;}
.h7_c01411{height:27.645000pt;}
.h4_c01411{height:30.428698pt;}
.h3_c01411{height:33.164401pt;}
.hb_c01411{height:44.251198pt;}
.ha_c01411{height:58.073698pt;}
.h8_c01411{height:63.593099pt;}
.h1_c01411{height:1345.333333pt;}
.h0_c01411{height:1345.533333pt;}
.w0_c01411{width:959.226667pt;}
.w1_c01411{width:959.333333pt;}
.x0_c01411{left:0.000000pt;}
.x3_c01411{left:39.173333pt;}
.x4_c01411{left:82.173333pt;}
.x5_c01411{left:87.546667pt;}
.x1_c01411{left:92.933333pt;}
.x2_c01411{left:105.213333pt;}
.x6_c01411{left:111.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_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_6099fc5e40588ac083560329.woff2')format("woff");}.ff1_c01412{font-family:ff1_c01412;line-height:1.109863;font-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_c01412{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);}
.m1_c01412{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m0_c01412{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);}
.m5_c01412{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c01412{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);}
.m4_c01412{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m6_c01412{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);}
.m8_c01412{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2_c01412{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,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;}
.fs3_c01412{font-size:17.280000px;}
.fs1_c01412{font-size:20.760000px;}
.fs2_c01412{font-size:24.180000px;}
.fs0_c01412{font-size:31.080000px;}
.fs4_c01412{font-size:41.460000px;}
.y0_c01412{bottom:0.000000px;}
.y9_c01412{bottom:1313.280000px;}
.y8_c01412{bottom:1317.600000px;}
.y7_c01412{bottom:1334.880000px;}
.y6_c01412{bottom:1371.165000px;}
.y5_c01412{bottom:1401.405000px;}
.y3_c01412{bottom:1410.915000px;}
.y4_c01412{bottom:1412.640000px;}
.y2_c01412{bottom:1431.645000px;}
.y1_c01412{bottom:1440.285000px;}
.h5_c01412{height:15.550313px;}
.h3_c01412{height:18.681973px;}
.h4_c01412{height:21.759639px;}
.h2_c01412{height:27.968965px;}
.h6_c01412{height:37.309951px;}
.h1_c01412{height:1513.500000px;}
.h0_c01412{height:1513.725000px;}
.w0_c01412{width:1079.130000px;}
.w1_c01412{width:1079.250000px;}
.x0_c01412{left:0.000000px;}
.x7_c01412{left:923.610000px;}
.x5_c01412{left:944.355000px;}
.x6_c01412{left:946.950000px;}
.x3_c01412{left:983.235000px;}
.x8_c01412{left:1003.965000px;}
.x2_c01412{left:1013.475000px;}
.x4_c01412{left:1029.885000px;}
.x1_c01412{left:1033.350000px;}
.x9_c01412{left:1053.210000px;}
@media print{
.v0_c01412{vertical-align:0.000000pt;}
.ls0_c01412{letter-spacing:0.000000pt;}
.ws0_c01412{word-spacing:0.000000pt;}
.fs3_c01412{font-size:15.360000pt;}
.fs1_c01412{font-size:18.453333pt;}
.fs2_c01412{font-size:21.493333pt;}
.fs0_c01412{font-size:27.626667pt;}
.fs4_c01412{font-size:36.853333pt;}
.y0_c01412{bottom:0.000000pt;}
.y9_c01412{bottom:1167.360000pt;}
.y8_c01412{bottom:1171.200000pt;}
.y7_c01412{bottom:1186.560000pt;}
.y6_c01412{bottom:1218.813333pt;}
.y5_c01412{bottom:1245.693333pt;}
.y3_c01412{bottom:1254.146667pt;}
.y4_c01412{bottom:1255.680000pt;}
.y2_c01412{bottom:1272.573333pt;}
.y1_c01412{bottom:1280.253333pt;}
.h5_c01412{height:13.822500pt;}
.h3_c01412{height:16.606198pt;}
.h4_c01412{height:19.341901pt;}
.h2_c01412{height:24.861302pt;}
.h6_c01412{height:33.164401pt;}
.h1_c01412{height:1345.333333pt;}
.h0_c01412{height:1345.533333pt;}
.w0_c01412{width:959.226667pt;}
.w1_c01412{width:959.333333pt;}
.x0_c01412{left:0.000000pt;}
.x7_c01412{left:820.986667pt;}
.x5_c01412{left:839.426667pt;}
.x6_c01412{left:841.733333pt;}
.x3_c01412{left:873.986667pt;}
.x8_c01412{left:892.413333pt;}
.x2_c01412{left:900.866667pt;}
.x4_c01412{left:915.453333pt;}
.x1_c01412{left:918.533333pt;}
.x9_c01412{left:936.186667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4dda64fcec9f8bce2585e004.woff2')format("woff");}.ff1_c01413{font-family:ff1_c01413;line-height:1.109863;font-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_c01413{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m27_c01413{transform:matrix(0.020825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.020825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.020825,0.000000,0.000000,0.250000,0,0);}
.md_c01413{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m16_c01413{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m0_c01413{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mb_c01413{transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176650,0.000000,0.000000,0.250000,0,0);}
.m25_c01413{transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182400,0.000000,0.000000,0.250000,0,0);}
.m1a_c01413{transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189700,0.000000,0.000000,0.250000,0,0);}
.m1e_c01413{transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192375,0.000000,0.000000,0.250000,0,0);}
.m20_c01413{transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236050,0.000000,0.000000,0.250000,0,0);}
.m23_c01413{transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238925,0.000000,0.000000,0.250000,0,0);}
.m24_c01413{transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240950,0.000000,0.000000,0.250000,0,0);}
.m22_c01413{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);}
.m1d_c01413{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01413{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m21_c01413{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1c_c01413{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);}
.m1_c01413{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m26_c01413{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m19_c01413{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m17_c01413{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);}
.m11_c01413{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c01413{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m18_c01413{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m5_c01413{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01413{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.mc_c01413{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m28_c01413{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);}
.mf_c01413{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m9_c01413{transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.517500,0.000000,0.000000,0.250000,0,0);}
.m10_c01413{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.me_c01413{transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.530000,0.000000,0.000000,0.250000,0,0);}
.m7_c01413{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m29_c01413{transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.570000,0.000000,0.000000,0.250000,0,0);}
.m12_c01413{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m4_c01413{transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.630000,0.000000,0.000000,0.250000,0,0);}
.m2_c01413{transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.770000,0.000000,0.000000,0.250000,0,0);}
.m14_c01413{transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.782500,0.000000,0.000000,0.250000,0,0);}
.m8_c01413{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.m15_c01413{transform:matrix(1.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.387500,0.000000,0.000000,0.250000,0,0);}
.m13_c01413{transform:matrix(5.737500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(5.737500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(5.737500,0.000000,0.000000,0.250000,0,0);}
.m3_c01413{transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.480000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.480000,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;}
.fs3_c01413{font-size:3.456000px;}
.fs0_c01413{font-size:6.000000px;}
.fs5_c01413{font-size:6.900000px;}
.fsd_c01413{font-size:10.380000px;}
.fs1_c01413{font-size:13.800000px;}
.fs4_c01413{font-size:17.280000px;}
.fs7_c01413{font-size:20.760000px;}
.fs6_c01413{font-size:24.180000px;}
.fsb_c01413{font-size:27.660000px;}
.fs8_c01413{font-size:38.040000px;}
.fsa_c01413{font-size:41.460000px;}
.fsc_c01413{font-size:48.360000px;}
.fs2_c01413{font-size:51.840000px;}
.fs12_c01413{font-size:55.320000px;}
.fs9_c01413{font-size:58.740000px;}
.fs13_c01413{font-size:62.220000px;}
.fse_c01413{font-size:65.640000px;}
.fs11_c01413{font-size:69.120000px;}
.fsf_c01413{font-size:72.600000px;}
.fs15_c01413{font-size:76.020000px;}
.fs14_c01413{font-size:79.500000px;}
.fs10_c01413{font-size:86.400000px;}
.y0_c01413{bottom:0.000000px;}
.y2f_c01413{bottom:587.520000px;}
.y2c_c01413{bottom:588.390000px;}
.y2d_c01413{bottom:590.115000px;}
.y2e_c01413{bottom:590.970000px;}
.y2b_c01413{bottom:592.710000px;}
.y30_c01413{bottom:595.290000px;}
.y31_c01413{bottom:603.075000px;}
.y2a_c01413{bottom:604.800000px;}
.y29_c01413{bottom:608.250000px;}
.y28_c01413{bottom:611.715000px;}
.y26_c01413{bottom:628.125000px;}
.y27_c01413{bottom:629.850000px;}
.y25_c01413{bottom:630.720000px;}
.y24_c01413{bottom:632.445000px;}
.y23_c01413{bottom:633.315000px;}
.y21_c01413{bottom:648.870000px;}
.y22_c01413{bottom:649.725000px;}
.y20_c01413{bottom:667.875000px;}
.y1e_c01413{bottom:670.470000px;}
.y1f_c01413{bottom:671.325000px;}
.y1b_c01413{bottom:685.155000px;}
.y1d_c01413{bottom:687.750000px;}
.y1c_c01413{bottom:688.605000px;}
.y1a_c01413{bottom:691.200000px;}
.y18_c01413{bottom:735.270000px;}
.y19_c01413{bottom:736.995000px;}
.y17_c01413{bottom:796.605000px;}
.y16_c01413{bottom:889.920000px;}
.y15_c01413{bottom:929.670000px;}
.y14_c01413{bottom:944.355000px;}
.y13_c01413{bottom:977.190000px;}
.y12_c01413{bottom:997.920000px;}
.yd_c01413{bottom:1122.330000px;}
.y3_c01413{bottom:1250.205000px;}
.y10_c01413{bottom:1318.470000px;}
.y11_c01413{bottom:1320.195000px;}
.ye_c01413{bottom:1336.605000px;}
.yf_c01413{bottom:1338.330000px;}
.y2_c01413{bottom:1345.245000px;}
.y1_c01413{bottom:1349.565000px;}
.yb_c01413{bottom:1410.915000px;}
.yc_c01413{bottom:1411.770000px;}
.y7_c01413{bottom:1423.875000px;}
.y9_c01413{bottom:1427.325000px;}
.ya_c01413{bottom:1429.050000px;}
.y6_c01413{bottom:1429.920000px;}
.y8_c01413{bottom:1433.370000px;}
.y5_c01413{bottom:1464.480000px;}
.y4_c01413{bottom:1465.350000px;}
.h5_c01413{height:3.110063px;}
.h2_c01413{height:5.399414px;}
.h7_c01413{height:6.209326px;}
.hf_c01413{height:9.340986px;}
.h3_c01413{height:12.418652px;}
.h6_c01413{height:15.550313px;}
.h9_c01413{height:18.681973px;}
.h8_c01413{height:21.759639px;}
.hd_c01413{height:24.891299px;}
.ha_c01413{height:34.232285px;}
.hc_c01413{height:37.309951px;}
.he_c01413{height:43.519277px;}
.h4_c01413{height:46.650937px;}
.h14_c01413{height:49.782598px;}
.hb_c01413{height:52.860264px;}
.h15_c01413{height:55.991924px;}
.h10_c01413{height:59.069590px;}
.h13_c01413{height:62.201250px;}
.h11_c01413{height:65.332910px;}
.h17_c01413{height:68.410576px;}
.h16_c01413{height:71.542236px;}
.h12_c01413{height:77.751563px;}
.h1_c01413{height:1513.500000px;}
.h0_c01413{height:1513.725000px;}
.w0_c01413{width:1060.995000px;}
.w1_c01413{width:1061.250000px;}
.x0_c01413{left:0.000000px;}
.x3_c01413{left:19.005000px;}
.x1_c01413{left:31.965000px;}
.x2_c01413{left:42.330000px;}
.xd_c01413{left:54.435000px;}
.xb_c01413{left:120.090000px;}
.xe_c01413{left:134.790000px;}
.x10_c01413{left:141.690000px;}
.xf_c01413{left:143.430000px;}
.x11_c01413{left:149.475000px;}
.x14_c01413{left:154.650000px;}
.xc_c01413{left:157.245000px;}
.x12_c01413{left:159.840000px;}
.x17_c01413{left:165.030000px;}
.x16_c01413{left:170.205000px;}
.x15_c01413{left:177.120000px;}
.x13_c01413{left:180.570000px;}
.x4_c01413{left:252.285000px;}
.x7_c01413{left:267.840000px;}
.x6_c01413{left:269.565000px;}
.x5_c01413{left:309.315000px;}
.x8_c01413{left:343.875000px;}
.x9_c01413{left:352.515000px;}
.xa_c01413{left:365.475000px;}
.x1e_c01413{left:585.795000px;}
.x18_c01413{left:590.970000px;}
.x28_c01413{left:600.480000px;}
.x23_c01413{left:604.800000px;}
.x21_c01413{left:607.395000px;}
.x29_c01413{left:609.120000px;}
.x2d_c01413{left:638.490000px;}
.x2a_c01413{left:642.810000px;}
.x24_c01413{left:660.960000px;}
.x19_c01413{left:685.155000px;}
.x1a_c01413{left:695.520000px;}
.x1b_c01413{left:709.350000px;}
.x2e_c01413{left:724.035000px;}
.x25_c01413{left:734.400000px;}
.x1f_c01413{left:736.995000px;}
.x22_c01413{left:739.590000px;}
.x1c_c01413{left:744.765000px;}
.x2b_c01413{left:752.550000px;}
.x1d_c01413{left:766.365000px;}
.x2f_c01413{left:781.050000px;}
.x20_c01413{left:792.285000px;}
.x26_c01413{left:801.795000px;}
.x30_c01413{left:803.520000px;}
.x27_c01413{left:819.930000px;}
.x31_c01413{left:826.845000px;}
.x32_c01413{left:834.630000px;}
.x2c_c01413{left:851.040000px;}
.x33_c01413{left:862.275000px;}
@media print{
.v0_c01413{vertical-align:0.000000pt;}
.ls0_c01413{letter-spacing:0.000000pt;}
.ws0_c01413{word-spacing:0.000000pt;}
.fs3_c01413{font-size:3.072000pt;}
.fs0_c01413{font-size:5.333333pt;}
.fs5_c01413{font-size:6.133333pt;}
.fsd_c01413{font-size:9.226667pt;}
.fs1_c01413{font-size:12.266667pt;}
.fs4_c01413{font-size:15.360000pt;}
.fs7_c01413{font-size:18.453333pt;}
.fs6_c01413{font-size:21.493333pt;}
.fsb_c01413{font-size:24.586667pt;}
.fs8_c01413{font-size:33.813333pt;}
.fsa_c01413{font-size:36.853333pt;}
.fsc_c01413{font-size:42.986667pt;}
.fs2_c01413{font-size:46.080000pt;}
.fs12_c01413{font-size:49.173333pt;}
.fs9_c01413{font-size:52.213333pt;}
.fs13_c01413{font-size:55.306667pt;}
.fse_c01413{font-size:58.346667pt;}
.fs11_c01413{font-size:61.440000pt;}
.fsf_c01413{font-size:64.533333pt;}
.fs15_c01413{font-size:67.573333pt;}
.fs14_c01413{font-size:70.666667pt;}
.fs10_c01413{font-size:76.800000pt;}
.y0_c01413{bottom:0.000000pt;}
.y2f_c01413{bottom:522.240000pt;}
.y2c_c01413{bottom:523.013333pt;}
.y2d_c01413{bottom:524.546667pt;}
.y2e_c01413{bottom:525.306667pt;}
.y2b_c01413{bottom:526.853333pt;}
.y30_c01413{bottom:529.146667pt;}
.y31_c01413{bottom:536.066667pt;}
.y2a_c01413{bottom:537.600000pt;}
.y29_c01413{bottom:540.666667pt;}
.y28_c01413{bottom:543.746667pt;}
.y26_c01413{bottom:558.333333pt;}
.y27_c01413{bottom:559.866667pt;}
.y25_c01413{bottom:560.640000pt;}
.y24_c01413{bottom:562.173333pt;}
.y23_c01413{bottom:562.946667pt;}
.y21_c01413{bottom:576.773333pt;}
.y22_c01413{bottom:577.533333pt;}
.y20_c01413{bottom:593.666667pt;}
.y1e_c01413{bottom:595.973333pt;}
.y1f_c01413{bottom:596.733333pt;}
.y1b_c01413{bottom:609.026667pt;}
.y1d_c01413{bottom:611.333333pt;}
.y1c_c01413{bottom:612.093333pt;}
.y1a_c01413{bottom:614.400000pt;}
.y18_c01413{bottom:653.573333pt;}
.y19_c01413{bottom:655.106667pt;}
.y17_c01413{bottom:708.093333pt;}
.y16_c01413{bottom:791.040000pt;}
.y15_c01413{bottom:826.373333pt;}
.y14_c01413{bottom:839.426667pt;}
.y13_c01413{bottom:868.613333pt;}
.y12_c01413{bottom:887.040000pt;}
.yd_c01413{bottom:997.626667pt;}
.y3_c01413{bottom:1111.293333pt;}
.y10_c01413{bottom:1171.973333pt;}
.y11_c01413{bottom:1173.506667pt;}
.ye_c01413{bottom:1188.093333pt;}
.yf_c01413{bottom:1189.626667pt;}
.y2_c01413{bottom:1195.773333pt;}
.y1_c01413{bottom:1199.613333pt;}
.yb_c01413{bottom:1254.146667pt;}
.yc_c01413{bottom:1254.906667pt;}
.y7_c01413{bottom:1265.666667pt;}
.y9_c01413{bottom:1268.733333pt;}
.ya_c01413{bottom:1270.266667pt;}
.y6_c01413{bottom:1271.040000pt;}
.y8_c01413{bottom:1274.106667pt;}
.y5_c01413{bottom:1301.760000pt;}
.y4_c01413{bottom:1302.533333pt;}
.h5_c01413{height:2.764500pt;}
.h2_c01413{height:4.799479pt;}
.h7_c01413{height:5.519401pt;}
.hf_c01413{height:8.303099pt;}
.h3_c01413{height:11.038802pt;}
.h6_c01413{height:13.822500pt;}
.h9_c01413{height:16.606198pt;}
.h8_c01413{height:19.341901pt;}
.hd_c01413{height:22.125599pt;}
.ha_c01413{height:30.428698pt;}
.hc_c01413{height:33.164401pt;}
.he_c01413{height:38.683802pt;}
.h4_c01413{height:41.467500pt;}
.h14_c01413{height:44.251198pt;}
.hb_c01413{height:46.986901pt;}
.h15_c01413{height:49.770599pt;}
.h10_c01413{height:52.506302pt;}
.h13_c01413{height:55.290000pt;}
.h11_c01413{height:58.073698pt;}
.h17_c01413{height:60.809401pt;}
.h16_c01413{height:63.593099pt;}
.h12_c01413{height:69.112500pt;}
.h1_c01413{height:1345.333333pt;}
.h0_c01413{height:1345.533333pt;}
.w0_c01413{width:943.106667pt;}
.w1_c01413{width:943.333333pt;}
.x0_c01413{left:0.000000pt;}
.x3_c01413{left:16.893333pt;}
.x1_c01413{left:28.413333pt;}
.x2_c01413{left:37.626667pt;}
.xd_c01413{left:48.386667pt;}
.xb_c01413{left:106.746667pt;}
.xe_c01413{left:119.813333pt;}
.x10_c01413{left:125.946667pt;}
.xf_c01413{left:127.493333pt;}
.x11_c01413{left:132.866667pt;}
.x14_c01413{left:137.466667pt;}
.xc_c01413{left:139.773333pt;}
.x12_c01413{left:142.080000pt;}
.x17_c01413{left:146.693333pt;}
.x16_c01413{left:151.293333pt;}
.x15_c01413{left:157.440000pt;}
.x13_c01413{left:160.506667pt;}
.x4_c01413{left:224.253333pt;}
.x7_c01413{left:238.080000pt;}
.x6_c01413{left:239.613333pt;}
.x5_c01413{left:274.946667pt;}
.x8_c01413{left:305.666667pt;}
.x9_c01413{left:313.346667pt;}
.xa_c01413{left:324.866667pt;}
.x1e_c01413{left:520.706667pt;}
.x18_c01413{left:525.306667pt;}
.x28_c01413{left:533.760000pt;}
.x23_c01413{left:537.600000pt;}
.x21_c01413{left:539.906667pt;}
.x29_c01413{left:541.440000pt;}
.x2d_c01413{left:567.546667pt;}
.x2a_c01413{left:571.386667pt;}
.x24_c01413{left:587.520000pt;}
.x19_c01413{left:609.026667pt;}
.x1a_c01413{left:618.240000pt;}
.x1b_c01413{left:630.533333pt;}
.x2e_c01413{left:643.586667pt;}
.x25_c01413{left:652.800000pt;}
.x1f_c01413{left:655.106667pt;}
.x22_c01413{left:657.413333pt;}
.x1c_c01413{left:662.013333pt;}
.x2b_c01413{left:668.933333pt;}
.x1d_c01413{left:681.213333pt;}
.x2f_c01413{left:694.266667pt;}
.x20_c01413{left:704.253333pt;}
.x26_c01413{left:712.706667pt;}
.x30_c01413{left:714.240000pt;}
.x27_c01413{left:728.826667pt;}
.x31_c01413{left:734.973333pt;}
.x32_c01413{left:741.893333pt;}
.x2c_c01413{left:756.480000pt;}
.x33_c01413{left:766.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_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_54cccedb53c582c40f429902.woff2')format("woff");}.ff1_c01414{font-family:ff1_c01414;line-height:1.109863;font-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_c01414{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m2_c01414{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m6_c01414{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m1_c01414{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);}
.m4_c01414{transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.527500,0.000000,0.000000,0.250000,0,0);}
.m9_c01414{transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.532500,0.000000,0.000000,0.250000,0,0);}
.m8_c01414{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m5_c01414{transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.572500,0.000000,0.000000,0.250000,0,0);}
.ma_c01414{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m0_c01414{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m7_c01414{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,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;}
.fs0_c01414{font-size:3.456000px;}
.fs1_c01414{font-size:6.900000px;}
.fs7_c01414{font-size:10.380000px;}
.fs9_c01414{font-size:13.800000px;}
.fs5_c01414{font-size:17.280000px;}
.fs4_c01414{font-size:20.760000px;}
.fs8_c01414{font-size:24.180000px;}
.fs2_c01414{font-size:34.560000px;}
.fs6_c01414{font-size:38.040000px;}
.fs3_c01414{font-size:41.460000px;}
.y0_c01414{bottom:0.000000px;}
.yc_c01414{bottom:886.470000px;}
.yb_c01414{bottom:890.790000px;}
.ya_c01414{bottom:899.430000px;}
.y9_c01414{bottom:906.330000px;}
.y8_c01414{bottom:927.930000px;}
.y7_c01414{bottom:941.760000px;}
.y6_c01414{bottom:952.125000px;}
.y5_c01414{bottom:988.410000px;}
.y3_c01414{bottom:995.325000px;}
.y4_c01414{bottom:997.050000px;}
.y1_c01414{bottom:1001.370000px;}
.y2_c01414{bottom:1005.690000px;}
.h2_c01414{height:3.110063px;}
.h3_c01414{height:6.209326px;}
.h9_c01414{height:9.340986px;}
.hb_c01414{height:12.418652px;}
.h7_c01414{height:15.550313px;}
.h6_c01414{height:18.681973px;}
.ha_c01414{height:21.759639px;}
.h4_c01414{height:31.100625px;}
.h8_c01414{height:34.232285px;}
.h5_c01414{height:37.309951px;}
.h1_c01414{height:1513.500000px;}
.h0_c01414{height:1513.725000px;}
.w0_c01414{width:1079.130000px;}
.w1_c01414{width:1079.250000px;}
.x0_c01414{left:0.000000px;}
.x1_c01414{left:878.685000px;}
.x2_c01414{left:895.110000px;}
.x3_c01414{left:899.430000px;}
.x8_c01414{left:907.200000px;}
.x5_c01414{left:911.520000px;}
.x4_c01414{left:982.365000px;}
.x7_c01414{left:1002.240000px;}
.xa_c01414{left:1017.795000px;}
.xb_c01414{left:1048.035000px;}
.x6_c01414{left:1069.635000px;}
.x9_c01414{left:1073.085000px;}
@media print{
.v0_c01414{vertical-align:0.000000pt;}
.ls0_c01414{letter-spacing:0.000000pt;}
.ws0_c01414{word-spacing:0.000000pt;}
.fs0_c01414{font-size:3.072000pt;}
.fs1_c01414{font-size:6.133333pt;}
.fs7_c01414{font-size:9.226667pt;}
.fs9_c01414{font-size:12.266667pt;}
.fs5_c01414{font-size:15.360000pt;}
.fs4_c01414{font-size:18.453333pt;}
.fs8_c01414{font-size:21.493333pt;}
.fs2_c01414{font-size:30.720000pt;}
.fs6_c01414{font-size:33.813333pt;}
.fs3_c01414{font-size:36.853333pt;}
.y0_c01414{bottom:0.000000pt;}
.yc_c01414{bottom:787.973333pt;}
.yb_c01414{bottom:791.813333pt;}
.ya_c01414{bottom:799.493333pt;}
.y9_c01414{bottom:805.626667pt;}
.y8_c01414{bottom:824.826667pt;}
.y7_c01414{bottom:837.120000pt;}
.y6_c01414{bottom:846.333333pt;}
.y5_c01414{bottom:878.586667pt;}
.y3_c01414{bottom:884.733333pt;}
.y4_c01414{bottom:886.266667pt;}
.y1_c01414{bottom:890.106667pt;}
.y2_c01414{bottom:893.946667pt;}
.h2_c01414{height:2.764500pt;}
.h3_c01414{height:5.519401pt;}
.h9_c01414{height:8.303099pt;}
.hb_c01414{height:11.038802pt;}
.h7_c01414{height:13.822500pt;}
.h6_c01414{height:16.606198pt;}
.ha_c01414{height:19.341901pt;}
.h4_c01414{height:27.645000pt;}
.h8_c01414{height:30.428698pt;}
.h5_c01414{height:33.164401pt;}
.h1_c01414{height:1345.333333pt;}
.h0_c01414{height:1345.533333pt;}
.w0_c01414{width:959.226667pt;}
.w1_c01414{width:959.333333pt;}
.x0_c01414{left:0.000000pt;}
.x1_c01414{left:781.053333pt;}
.x2_c01414{left:795.653333pt;}
.x3_c01414{left:799.493333pt;}
.x8_c01414{left:806.400000pt;}
.x5_c01414{left:810.240000pt;}
.x4_c01414{left:873.213333pt;}
.x7_c01414{left:890.880000pt;}
.xa_c01414{left:904.706667pt;}
.xb_c01414{left:931.586667pt;}
.x6_c01414{left:950.786667pt;}
.x9_c01414{left:953.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_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_c5932dfffc365d9ed08c5e6c.woff2')format("woff");}.ff1_c01415{font-family:ff1_c01415;line-height:1.109863;font-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_c01415{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc_c01415{transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164300,0.000000,0.000000,0.250000,0,0);}
.md_c01415{transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166725,0.000000,0.000000,0.250000,0,0);}
.m6_c01415{transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171925,0.000000,0.000000,0.250000,0,0);}
.m9_c01415{transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176950,0.000000,0.000000,0.250000,0,0);}
.m10_c01415{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);}
.m7_c01415{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);}
.m1_c01415{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01415{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);}
.m12_c01415{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);}
.m11_c01415{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.ma_c01415{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c01415{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m5_c01415{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m0_c01415{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m8_c01415{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.mf_c01415{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m3_c01415{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.me_c01415{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m13_c01415{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m14_c01415{transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.295000,0.000000,0.000000,0.250000,0,0);}
.v0_c01415{vertical-align:0.000000px;}
.v1_c01415{vertical-align:10.320000px;}
.ls1_c01415{letter-spacing:0.000000px;}
.ls0_c01415{letter-spacing:60.351480px;}
.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;}
.fs1_c01415{font-size:6.000000px;}
.fs3_c01415{font-size:10.380000px;}
.fs9_c01415{font-size:13.800000px;}
.fs2_c01415{font-size:17.280000px;}
.fs8_c01415{font-size:20.760000px;}
.fs0_c01415{font-size:24.180000px;}
.fse_c01415{font-size:31.080000px;}
.fsb_c01415{font-size:38.040000px;}
.fsf_c01415{font-size:41.460000px;}
.fsa_c01415{font-size:48.360000px;}
.fsc_c01415{font-size:51.840000px;}
.fs5_c01415{font-size:55.320000px;}
.fs4_c01415{font-size:58.740000px;}
.fsd_c01415{font-size:62.220000px;}
.fs7_c01415{font-size:69.120000px;}
.fs6_c01415{font-size:103.680000px;}
.y0_c01415{bottom:0.000000px;}
.y14_c01415{bottom:894.240000px;}
.y13_c01415{bottom:902.880000px;}
.y12_c01415{bottom:931.395000px;}
.y11_c01415{bottom:955.590000px;}
.y10_c01415{bottom:991.005000px;}
.ye_c01415{bottom:999.645000px;}
.yf_c01415{bottom:1000.515000px;}
.yd_c01415{bottom:1067.040000px;}
.y7_c01415{bottom:1353.030000px;}
.yc_c01415{bottom:1355.610000px;}
.y9_c01415{bottom:1356.480000px;}
.ya_c01415{bottom:1358.205000px;}
.yb_c01415{bottom:1359.075000px;}
.y8_c01415{bottom:1359.930000px;}
.y6_c01415{bottom:1361.670000px;}
.y5_c01415{bottom:1378.950000px;}
.y4_c01415{bottom:1389.315000px;}
.y3_c01415{bottom:1404.870000px;}
.y1_c01415{bottom:1429.050000px;}
.y2_c01415{bottom:1429.920000px;}
.h3_c01415{height:5.399414px;}
.h5_c01415{height:9.340986px;}
.h12_c01415{height:12.418652px;}
.h4_c01415{height:15.550313px;}
.h10_c01415{height:18.681973px;}
.h2_c01415{height:21.759639px;}
.ha_c01415{height:22.738652px;}
.hf_c01415{height:27.968965px;}
.hc_c01415{height:34.232285px;}
.h11_c01415{height:37.309951px;}
.hb_c01415{height:43.519277px;}
.hd_c01415{height:46.650937px;}
.h7_c01415{height:49.782598px;}
.h6_c01415{height:52.860264px;}
.he_c01415{height:55.991924px;}
.h9_c01415{height:62.201250px;}
.h8_c01415{height:93.301875px;}
.h0_c01415{height:1517.190000px;}
.h1_c01415{height:1517.250000px;}
.w0_c01415{width:1060.995000px;}
.w1_c01415{width:1061.250000px;}
.x0_c01415{left:0.000000px;}
.x14_c01415{left:16.410000px;}
.x10_c01415{left:36.285000px;}
.x12_c01415{left:48.390000px;}
.xf_c01415{left:110.595000px;}
.x11_c01415{left:119.235000px;}
.x13_c01415{left:139.110000px;}
.x15_c01415{left:154.650000px;}
.x5_c01415{left:563.325000px;}
.x8_c01415{left:581.475000px;}
.x6_c01415{left:584.925000px;}
.x7_c01415{left:608.250000px;}
.x9_c01415{left:623.805000px;}
.x3_c01415{left:650.595000px;}
.xa_c01415{left:676.515000px;}
.x1_c01415{left:686.880000px;}
.xb_c01415{left:695.520000px;}
.x2_c01415{left:705.030000px;}
.xc_c01415{left:712.800000px;}
.x4_c01415{left:719.715000px;}
.xd_c01415{left:729.210000px;}
.xe_c01415{left:746.490000px;}
@media print{
.v0_c01415{vertical-align:0.000000pt;}
.v1_c01415{vertical-align:9.173333pt;}
.ls1_c01415{letter-spacing:0.000000pt;}
.ls0_c01415{letter-spacing:53.645760pt;}
.ws0_c01415{word-spacing:0.000000pt;}
.fs1_c01415{font-size:5.333333pt;}
.fs3_c01415{font-size:9.226667pt;}
.fs9_c01415{font-size:12.266667pt;}
.fs2_c01415{font-size:15.360000pt;}
.fs8_c01415{font-size:18.453333pt;}
.fs0_c01415{font-size:21.493333pt;}
.fse_c01415{font-size:27.626667pt;}
.fsb_c01415{font-size:33.813333pt;}
.fsf_c01415{font-size:36.853333pt;}
.fsa_c01415{font-size:42.986667pt;}
.fsc_c01415{font-size:46.080000pt;}
.fs5_c01415{font-size:49.173333pt;}
.fs4_c01415{font-size:52.213333pt;}
.fsd_c01415{font-size:55.306667pt;}
.fs7_c01415{font-size:61.440000pt;}
.fs6_c01415{font-size:92.160000pt;}
.y0_c01415{bottom:0.000000pt;}
.y14_c01415{bottom:794.880000pt;}
.y13_c01415{bottom:802.560000pt;}
.y12_c01415{bottom:827.906667pt;}
.y11_c01415{bottom:849.413333pt;}
.y10_c01415{bottom:880.893333pt;}
.ye_c01415{bottom:888.573333pt;}
.yf_c01415{bottom:889.346667pt;}
.yd_c01415{bottom:948.480000pt;}
.y7_c01415{bottom:1202.693333pt;}
.yc_c01415{bottom:1204.986667pt;}
.y9_c01415{bottom:1205.760000pt;}
.ya_c01415{bottom:1207.293333pt;}
.yb_c01415{bottom:1208.066667pt;}
.y8_c01415{bottom:1208.826667pt;}
.y6_c01415{bottom:1210.373333pt;}
.y5_c01415{bottom:1225.733333pt;}
.y4_c01415{bottom:1234.946667pt;}
.y3_c01415{bottom:1248.773333pt;}
.y1_c01415{bottom:1270.266667pt;}
.y2_c01415{bottom:1271.040000pt;}
.h3_c01415{height:4.799479pt;}
.h5_c01415{height:8.303099pt;}
.h12_c01415{height:11.038802pt;}
.h4_c01415{height:13.822500pt;}
.h10_c01415{height:16.606198pt;}
.h2_c01415{height:19.341901pt;}
.ha_c01415{height:20.212135pt;}
.hf_c01415{height:24.861302pt;}
.hc_c01415{height:30.428698pt;}
.h11_c01415{height:33.164401pt;}
.hb_c01415{height:38.683802pt;}
.hd_c01415{height:41.467500pt;}
.h7_c01415{height:44.251198pt;}
.h6_c01415{height:46.986901pt;}
.he_c01415{height:49.770599pt;}
.h9_c01415{height:55.290000pt;}
.h8_c01415{height:82.935000pt;}
.h0_c01415{height:1348.613333pt;}
.h1_c01415{height:1348.666667pt;}
.w0_c01415{width:943.106667pt;}
.w1_c01415{width:943.333333pt;}
.x0_c01415{left:0.000000pt;}
.x14_c01415{left:14.586667pt;}
.x10_c01415{left:32.253333pt;}
.x12_c01415{left:43.013333pt;}
.xf_c01415{left:98.306667pt;}
.x11_c01415{left:105.986667pt;}
.x13_c01415{left:123.653333pt;}
.x15_c01415{left:137.466667pt;}
.x5_c01415{left:500.733333pt;}
.x8_c01415{left:516.866667pt;}
.x6_c01415{left:519.933333pt;}
.x7_c01415{left:540.666667pt;}
.x9_c01415{left:554.493333pt;}
.x3_c01415{left:578.306667pt;}
.xa_c01415{left:601.346667pt;}
.x1_c01415{left:610.560000pt;}
.xb_c01415{left:618.240000pt;}
.x2_c01415{left:626.693333pt;}
.xc_c01415{left:633.600000pt;}
.x4_c01415{left:639.746667pt;}
.xd_c01415{left:648.186667pt;}
.xe_c01415{left:663.546667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_80bb31c710aa6e5beb43c093.woff2')format("woff");}.ff1_c01416{font-family:ff1_c01416;line-height:1.109863;font-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.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);}
.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;}
.fc0_c01416{color:transparent;}
.fs0_c01416{font-size:600.000000px;}
.y0_c01416{bottom:0.000000px;}
.y1_c01416{bottom:15.000000px;}
.h2_c01416{height:539.941406px;}
.h1_c01416{height:1513.500000px;}
.h0_c01416{height:1513.725000px;}
.w0_c01416{width:1079.130000px;}
.w1_c01416{width:1079.250000px;}
.x0_c01416{left:0.000000px;}
.x1_c01416{left:15.000000px;}
@media print{
.v0_c01416{vertical-align:0.000000pt;}
.ls0_c01416{letter-spacing:0.000000pt;}
.ws0_c01416{word-spacing:0.000000pt;}
.fs0_c01416{font-size:533.333333pt;}
.y0_c01416{bottom:0.000000pt;}
.y1_c01416{bottom:13.333333pt;}
.h2_c01416{height:479.947917pt;}
.h1_c01416{height:1345.333333pt;}
.h0_c01416{height:1345.533333pt;}
.w0_c01416{width:959.226667pt;}
.w1_c01416{width:959.333333pt;}
.x0_c01416{left:0.000000pt;}
.x1_c01416{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00ca8e058eec16e263ac858a.woff2')format("woff");}.ff1_c01417{font-family:ff1_c01417;line-height:1.109863;font-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_c01417{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);}
.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;}
.fs0_c01417{font-size:600.000000px;}
.y0_c01417{bottom:0.000000px;}
.y1_c01417{bottom:15.000000px;}
.h2_c01417{height:539.941406px;}
.h0_c01417{height:1517.190000px;}
.h1_c01417{height:1517.250000px;}
.w0_c01417{width:1060.995000px;}
.w1_c01417{width:1061.250000px;}
.x0_c01417{left:0.000000px;}
.x1_c01417{left:15.000000px;}
@media print{
.v0_c01417{vertical-align:0.000000pt;}
.ls0_c01417{letter-spacing:0.000000pt;}
.ws0_c01417{word-spacing:0.000000pt;}
.fs0_c01417{font-size:533.333333pt;}
.y0_c01417{bottom:0.000000pt;}
.y1_c01417{bottom:13.333333pt;}
.h2_c01417{height:479.947917pt;}
.h0_c01417{height:1348.613333pt;}
.h1_c01417{height:1348.666667pt;}
.w0_c01417{width:943.106667pt;}
.w1_c01417{width:943.333333pt;}
.x0_c01417{left:0.000000pt;}
.x1_c01417{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03910c7be9de1dcced3871d1.woff2')format("woff");}.ff1_c01418{font-family:ff1_c01418;line-height:1.109863;font-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_c01418{transform:matrix(0.024400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024400,0.000000,0.000000,0.250000,0,0);}
.m57_c01418{transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);}
.m5e_c01418{transform:matrix(0.052375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052375,0.000000,0.000000,0.250000,0,0);}
.m5f_c01418{transform:matrix(0.054925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.054925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.054925,0.000000,0.000000,0.250000,0,0);}
.m11_c01418{transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058825,0.000000,0.000000,0.250000,0,0);}
.m29_c01418{transform:matrix(0.089350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.089350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.089350,0.000000,0.000000,0.250000,0,0);}
.m58_c01418{transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.092250,0.000000,0.000000,0.250000,0,0);}
.m5d_c01418{transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100275,0.000000,0.000000,0.250000,0,0);}
.m26_c01418{transform:matrix(0.101650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.101650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.101650,0.000000,0.000000,0.250000,0,0);}
.m21_c01418{transform:matrix(0.107750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107750,0.000000,0.000000,0.250000,0,0);}
.m2c_c01418{transform:matrix(0.111350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111350,0.000000,0.000000,0.250000,0,0);}
.m25_c01418{transform:matrix(0.127700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127700,0.000000,0.000000,0.250000,0,0);}
.m27_c01418{transform:matrix(0.128150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128150,0.000000,0.000000,0.250000,0,0);}
.m2e_c01418{transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133475,0.000000,0.000000,0.250000,0,0);}
.m51_c01418{transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.135200,0.000000,0.000000,0.250000,0,0);}
.m28_c01418{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m4e_c01418{transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140600,0.000000,0.000000,0.250000,0,0);}
.m20_c01418{transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141975,0.000000,0.000000,0.250000,0,0);}
.m14_c01418{transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142850,0.000000,0.000000,0.250000,0,0);}
.m31_c01418{transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143200,0.000000,0.000000,0.250000,0,0);}
.m1d_c01418{transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143575,0.000000,0.000000,0.250000,0,0);}
.m32_c01418{transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143675,0.000000,0.000000,0.250000,0,0);}
.mf_c01418{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4c_c01418{transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146225,0.000000,0.000000,0.250000,0,0);}
.m1a_c01418{transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146275,0.000000,0.000000,0.250000,0,0);}
.m40_c01418{transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147300,0.000000,0.000000,0.250000,0,0);}
.m13_c01418{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m18_c01418{transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154650,0.000000,0.000000,0.250000,0,0);}
.m12_c01418{transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157475,0.000000,0.000000,0.250000,0,0);}
.m5_c01418{transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157950,0.000000,0.000000,0.250000,0,0);}
.m3a_c01418{transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160075,0.000000,0.000000,0.250000,0,0);}
.m24_c01418{transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161850,0.000000,0.000000,0.250000,0,0);}
.m1e_c01418{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.m4d_c01418{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m34_c01418{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);}
.m4b_c01418{transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166850,0.000000,0.000000,0.250000,0,0);}
.m3c_c01418{transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167650,0.000000,0.000000,0.250000,0,0);}
.m30_c01418{transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171800,0.000000,0.000000,0.250000,0,0);}
.m16_c01418{transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.174550,0.000000,0.000000,0.250000,0,0);}
.m48_c01418{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);}
.mc_c01418{transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176550,0.000000,0.000000,0.250000,0,0);}
.m42_c01418{transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179975,0.000000,0.000000,0.250000,0,0);}
.m46_c01418{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m47_c01418{transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183425,0.000000,0.000000,0.250000,0,0);}
.m15_c01418{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);}
.m1f_c01418{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);}
.m4a_c01418{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_c01418{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);}
.m23_c01418{transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196425,0.000000,0.000000,0.250000,0,0);}
.m33_c01418{transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196725,0.000000,0.000000,0.250000,0,0);}
.mb_c01418{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);}
.m9_c01418{transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200775,0.000000,0.000000,0.250000,0,0);}
.m50_c01418{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);}
.m3f_c01418{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);}
.m38_c01418{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);}
.m10_c01418{transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.203525,0.000000,0.000000,0.250000,0,0);}
.m52_c01418{transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205175,0.000000,0.000000,0.250000,0,0);}
.m2a_c01418{transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206050,0.000000,0.000000,0.250000,0,0);}
.m1_c01418{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);}
.m59_c01418{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);}
.m55_c01418{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);}
.md_c01418{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m3b_c01418{transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232150,0.000000,0.000000,0.250000,0,0);}
.m45_c01418{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);}
.m6_c01418{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);}
.m35_c01418{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);}
.m2b_c01418{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);}
.m4f_c01418{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);}
.m36_c01418{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);}
.m7_c01418{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01418{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);}
.ma_c01418{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);}
.m1b_c01418{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m8_c01418{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m49_c01418{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);}
.m19_c01418{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c01418{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m2_c01418{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m0_c01418{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);}
.m41_c01418{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);}
.m53_c01418{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);}
.m17_c01418{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);}
.m3e_c01418{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m43_c01418{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m56_c01418{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);}
.m4_c01418{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01418{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01418{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m54_c01418{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01418{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);}
.m39_c01418{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.me_c01418{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01418{transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.590000,0.000000,0.000000,0.250000,0,0);}
.m37_c01418{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m5a_c01418{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);}
.m44_c01418{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,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;}
.fs6_c01418{font-size:3.456000px;}
.fs1e_c01418{font-size:6.000000px;}
.fs1a_c01418{font-size:6.900000px;}
.fsa_c01418{font-size:10.380000px;}
.fsb_c01418{font-size:17.280000px;}
.fs1b_c01418{font-size:20.760000px;}
.fs18_c01418{font-size:24.180000px;}
.fs1c_c01418{font-size:31.080000px;}
.fs3_c01418{font-size:34.560000px;}
.fs2_c01418{font-size:38.040000px;}
.fs1f_c01418{font-size:41.460000px;}
.fs1_c01418{font-size:44.940000px;}
.fs1d_c01418{font-size:48.360000px;}
.fs17_c01418{font-size:51.840000px;}
.fs19_c01418{font-size:55.320000px;}
.fs0_c01418{font-size:58.740000px;}
.fs10_c01418{font-size:62.220000px;}
.fs4_c01418{font-size:65.640000px;}
.fs5_c01418{font-size:69.120000px;}
.fsf_c01418{font-size:72.600000px;}
.fs11_c01418{font-size:76.020000px;}
.fse_c01418{font-size:79.500000px;}
.fs7_c01418{font-size:82.920000px;}
.fs12_c01418{font-size:86.400000px;}
.fsd_c01418{font-size:89.880000px;}
.fs14_c01418{font-size:93.300000px;}
.fs8_c01418{font-size:96.780000px;}
.fsc_c01418{font-size:100.200000px;}
.fs9_c01418{font-size:103.680000px;}
.fs16_c01418{font-size:107.160000px;}
.fs15_c01418{font-size:114.060000px;}
.fs13_c01418{font-size:120.960000px;}
.fs20_c01418{font-size:127.860000px;}
.fs22_c01418{font-size:141.720000px;}
.fs21_c01418{font-size:148.620000px;}
.y0_c01418{bottom:0.000000px;}
.y24_c01418{bottom:246.240000px;}
.y23_c01418{bottom:247.965000px;}
.y22_c01418{bottom:249.690000px;}
.y25_c01418{bottom:252.285000px;}
.y3f_c01418{bottom:255.750000px;}
.y40_c01418{bottom:258.330000px;}
.y3e_c01418{bottom:265.245000px;}
.y21_c01418{bottom:268.710000px;}
.y20_c01418{bottom:269.565000px;}
.y1d_c01418{bottom:272.160000px;}
.y42_c01418{bottom:274.755000px;}
.y41_c01418{bottom:276.480000px;}
.y1e_c01418{bottom:277.350000px;}
.y1f_c01418{bottom:278.205000px;}
.y3d_c01418{bottom:279.075000px;}
.y3b_c01418{bottom:279.930000px;}
.y3c_c01418{bottom:283.395000px;}
.y3a_c01418{bottom:298.950000px;}
.y1b_c01418{bottom:299.805000px;}
.y19_c01418{bottom:302.400000px;}
.y18_c01418{bottom:303.270000px;}
.y1a_c01418{bottom:304.125000px;}
.y39_c01418{bottom:304.995000px;}
.y38_c01418{bottom:305.850000px;}
.y1c_c01418{bottom:314.490000px;}
.y36_c01418{bottom:320.550000px;}
.y34_c01418{bottom:321.405000px;}
.y33_c01418{bottom:322.275000px;}
.y16_c01418{bottom:323.130000px;}
.y37_c01418{bottom:324.870000px;}
.y35_c01418{bottom:326.595000px;}
.y14_c01418{bottom:327.450000px;}
.y17_c01418{bottom:328.320000px;}
.y15_c01418{bottom:329.190000px;}
.y13_c01418{bottom:330.045000px;}
.y2e_c01418{bottom:340.410000px;}
.y30_c01418{bottom:341.280000px;}
.y31_c01418{bottom:342.150000px;}
.y2f_c01418{bottom:343.005000px;}
.y2d_c01418{bottom:343.875000px;}
.y32_c01418{bottom:345.600000px;}
.yf_c01418{bottom:346.470000px;}
.y10_c01418{bottom:347.325000px;}
.ye_c01418{bottom:348.195000px;}
.y12_c01418{bottom:349.050000px;}
.yc_c01418{bottom:349.920000px;}
.yd_c01418{bottom:353.370000px;}
.y11_c01418{bottom:355.110000px;}
.y2c_c01418{bottom:360.285000px;}
.y28_c01418{bottom:361.155000px;}
.y2a_c01418{bottom:362.010000px;}
.y26_c01418{bottom:362.880000px;}
.y27_c01418{bottom:363.750000px;}
.y2b_c01418{bottom:368.070000px;}
.y29_c01418{bottom:368.925000px;}
.yb_c01418{bottom:374.115000px;}
.y9_c01418{bottom:376.710000px;}
.y8_c01418{bottom:377.565000px;}
.y6_c01418{bottom:378.435000px;}
.ya_c01418{bottom:379.290000px;}
.y7_c01418{bottom:381.030000px;}
.y5_c01418{bottom:385.350000px;}
.y4_c01418{bottom:406.080000px;}
.y2_c01418{bottom:406.950000px;}
.y1_c01418{bottom:408.675000px;}
.y3_c01418{bottom:409.530000px;}
.y4e_c01418{bottom:470.880000px;}
.y4d_c01418{bottom:477.795000px;}
.y4c_c01418{bottom:480.390000px;}
.y50_c01418{bottom:784.515000px;}
.y51_c01418{bottom:807.840000px;}
.y4f_c01418{bottom:823.395000px;}
.y4b_c01418{bottom:853.635000px;}
.y4a_c01418{bottom:1291.680000px;}
.y49_c01418{bottom:1330.560000px;}
.y48_c01418{bottom:1341.795000px;}
.y47_c01418{bottom:1357.350000px;}
.y46_c01418{bottom:1373.760000px;}
.y45_c01418{bottom:1421.280000px;}
.y44_c01418{bottom:1423.005000px;}
.y43_c01418{bottom:1434.240000px;}
.h8_c01418{height:3.110063px;}
.h20_c01418{height:5.399414px;}
.h1c_c01418{height:6.209326px;}
.hc_c01418{height:9.340986px;}
.hd_c01418{height:15.550313px;}
.h1d_c01418{height:18.681973px;}
.h1a_c01418{height:21.759639px;}
.h1e_c01418{height:27.968965px;}
.h5_c01418{height:31.100625px;}
.h4_c01418{height:34.232285px;}
.h21_c01418{height:37.309951px;}
.h3_c01418{height:40.441611px;}
.h1f_c01418{height:43.519277px;}
.h19_c01418{height:46.650937px;}
.h1b_c01418{height:49.782598px;}
.h2_c01418{height:52.860264px;}
.h12_c01418{height:55.991924px;}
.h6_c01418{height:59.069590px;}
.h7_c01418{height:62.201250px;}
.h11_c01418{height:65.332910px;}
.h13_c01418{height:68.410576px;}
.h10_c01418{height:71.542236px;}
.h9_c01418{height:74.619902px;}
.h14_c01418{height:77.751563px;}
.hf_c01418{height:80.883223px;}
.h16_c01418{height:83.960889px;}
.ha_c01418{height:87.092549px;}
.he_c01418{height:90.170215px;}
.hb_c01418{height:93.301875px;}
.h18_c01418{height:96.433535px;}
.h17_c01418{height:102.642861px;}
.h15_c01418{height:108.852188px;}
.h22_c01418{height:115.061514px;}
.h24_c01418{height:127.534160px;}
.h23_c01418{height:133.743486px;}
.h1_c01418{height:1513.500000px;}
.h0_c01418{height:1513.725000px;}
.w0_c01418{width:1079.130000px;}
.w1_c01418{width:1079.250000px;}
.x0_c01418{left:0.000000px;}
.x4c_c01418{left:199.590000px;}
.x3b_c01418{left:204.765000px;}
.x32_c01418{left:206.490000px;}
.x2b_c01418{left:227.235000px;}
.x3c_c01418{left:235.005000px;}
.x4d_c01418{left:237.600000px;}
.x3d_c01418{left:240.195000px;}
.x33_c01418{left:269.565000px;}
.x34_c01418{left:275.610000px;}
.x48_c01418{left:278.205000px;}
.x1_c01418{left:285.120000px;}
.x3e_c01418{left:288.570000px;}
.x46_c01418{left:294.630000px;}
.x2c_c01418{left:299.805000px;}
.x3f_c01418{left:304.995000px;}
.x2_c01418{left:311.040000px;}
.x2d_c01418{left:314.490000px;}
.x35_c01418{left:324.000000px;}
.x3_c01418{left:329.190000px;}
.x49_c01418{left:332.640000px;}
.x40_c01418{left:336.090000px;}
.x36_c01418{left:338.685000px;}
.x4_c01418{left:345.600000px;}
.x5_c01418{left:361.155000px;}
.x2e_c01418{left:368.070000px;}
.x41_c01418{left:370.650000px;}
.x4e_c01418{left:381.885000px;}
.x4a_c01418{left:393.120000px;}
.x37_c01418{left:396.570000px;}
.x6_c01418{left:399.165000px;}
.x4f_c01418{left:401.760000px;}
.x50_c01418{left:407.805000px;}
.x42_c01418{left:416.445000px;}
.x2f_c01418{left:419.910000px;}
.x47_c01418{left:423.360000px;}
.x43_c01418{left:432.870000px;}
.x30_c01418{left:434.595000px;}
.x4b_c01418{left:444.090000px;}
.x38_c01418{left:449.280000px;}
.x44_c01418{left:463.965000px;}
.x39_c01418{left:465.690000px;}
.x31_c01418{left:468.285000px;}
.x45_c01418{left:488.160000px;}
.x3a_c01418{left:500.250000px;}
.x12_c01418{left:515.805000px;}
.x28_c01418{left:517.530000px;}
.x18_c01418{left:519.270000px;}
.x9_c01418{left:525.315000px;}
.x23_c01418{left:544.320000px;}
.xa_c01418{left:546.045000px;}
.x19_c01418{left:551.235000px;}
.x1e_c01418{left:559.875000px;}
.x13_c01418{left:571.965000px;}
.x24_c01418{left:573.690000px;}
.x14_c01418{left:582.330000px;}
.x29_c01418{left:584.925000px;}
.x10_c01418{left:593.565000px;}
.x25_c01418{left:604.800000px;}
.xb_c01418{left:607.395000px;}
.x1a_c01418{left:629.850000px;}
.xc_c01418{left:639.360000px;}
.x7_c01418{left:648.000000px;}
.x1f_c01418{left:661.830000px;}
.x1b_c01418{left:673.920000px;}
.x11_c01418{left:680.835000px;}
.xd_c01418{left:690.330000px;}
.x15_c01418{left:693.795000px;}
.x8_c01418{left:705.030000px;}
.x26_c01418{left:724.890000px;}
.x20_c01418{left:743.040000px;}
.x16_c01418{left:764.640000px;}
.x21_c01418{left:769.830000px;}
.x1c_c01418{left:780.195000px;}
.x17_c01418{left:784.515000px;}
.x2a_c01418{left:787.110000px;}
.xe_c01418{left:798.330000px;}
.x1d_c01418{left:810.435000px;}
.xf_c01418{left:825.990000px;}
.x27_c01418{left:829.440000px;}
.x22_c01418{left:863.130000px;}
.x58_c01418{left:874.365000px;}
.x59_c01418{left:887.325000px;}
.x56_c01418{left:921.885000px;}
.x51_c01418{left:938.310000px;}
.x5a_c01418{left:964.230000px;}
.x55_c01418{left:969.405000px;}
.x54_c01418{left:972.000000px;}
.x5b_c01418{left:982.365000px;}
.x53_c01418{left:986.685000px;}
.x52_c01418{left:1010.880000px;}
.x57_c01418{left:1018.650000px;}
@media print{
.v0_c01418{vertical-align:0.000000pt;}
.ls0_c01418{letter-spacing:0.000000pt;}
.ws0_c01418{word-spacing:0.000000pt;}
.fs6_c01418{font-size:3.072000pt;}
.fs1e_c01418{font-size:5.333333pt;}
.fs1a_c01418{font-size:6.133333pt;}
.fsa_c01418{font-size:9.226667pt;}
.fsb_c01418{font-size:15.360000pt;}
.fs1b_c01418{font-size:18.453333pt;}
.fs18_c01418{font-size:21.493333pt;}
.fs1c_c01418{font-size:27.626667pt;}
.fs3_c01418{font-size:30.720000pt;}
.fs2_c01418{font-size:33.813333pt;}
.fs1f_c01418{font-size:36.853333pt;}
.fs1_c01418{font-size:39.946667pt;}
.fs1d_c01418{font-size:42.986667pt;}
.fs17_c01418{font-size:46.080000pt;}
.fs19_c01418{font-size:49.173333pt;}
.fs0_c01418{font-size:52.213333pt;}
.fs10_c01418{font-size:55.306667pt;}
.fs4_c01418{font-size:58.346667pt;}
.fs5_c01418{font-size:61.440000pt;}
.fsf_c01418{font-size:64.533333pt;}
.fs11_c01418{font-size:67.573333pt;}
.fse_c01418{font-size:70.666667pt;}
.fs7_c01418{font-size:73.706667pt;}
.fs12_c01418{font-size:76.800000pt;}
.fsd_c01418{font-size:79.893333pt;}
.fs14_c01418{font-size:82.933333pt;}
.fs8_c01418{font-size:86.026667pt;}
.fsc_c01418{font-size:89.066667pt;}
.fs9_c01418{font-size:92.160000pt;}
.fs16_c01418{font-size:95.253333pt;}
.fs15_c01418{font-size:101.386667pt;}
.fs13_c01418{font-size:107.520000pt;}
.fs20_c01418{font-size:113.653333pt;}
.fs22_c01418{font-size:125.973333pt;}
.fs21_c01418{font-size:132.106667pt;}
.y0_c01418{bottom:0.000000pt;}
.y24_c01418{bottom:218.880000pt;}
.y23_c01418{bottom:220.413333pt;}
.y22_c01418{bottom:221.946667pt;}
.y25_c01418{bottom:224.253333pt;}
.y3f_c01418{bottom:227.333333pt;}
.y40_c01418{bottom:229.626667pt;}
.y3e_c01418{bottom:235.773333pt;}
.y21_c01418{bottom:238.853333pt;}
.y20_c01418{bottom:239.613333pt;}
.y1d_c01418{bottom:241.920000pt;}
.y42_c01418{bottom:244.226667pt;}
.y41_c01418{bottom:245.760000pt;}
.y1e_c01418{bottom:246.533333pt;}
.y1f_c01418{bottom:247.293333pt;}
.y3d_c01418{bottom:248.066667pt;}
.y3b_c01418{bottom:248.826667pt;}
.y3c_c01418{bottom:251.906667pt;}
.y3a_c01418{bottom:265.733333pt;}
.y1b_c01418{bottom:266.493333pt;}
.y19_c01418{bottom:268.800000pt;}
.y18_c01418{bottom:269.573333pt;}
.y1a_c01418{bottom:270.333333pt;}
.y39_c01418{bottom:271.106667pt;}
.y38_c01418{bottom:271.866667pt;}
.y1c_c01418{bottom:279.546667pt;}
.y36_c01418{bottom:284.933333pt;}
.y34_c01418{bottom:285.693333pt;}
.y33_c01418{bottom:286.466667pt;}
.y16_c01418{bottom:287.226667pt;}
.y37_c01418{bottom:288.773333pt;}
.y35_c01418{bottom:290.306667pt;}
.y14_c01418{bottom:291.066667pt;}
.y17_c01418{bottom:291.840000pt;}
.y15_c01418{bottom:292.613333pt;}
.y13_c01418{bottom:293.373333pt;}
.y2e_c01418{bottom:302.586667pt;}
.y30_c01418{bottom:303.360000pt;}
.y31_c01418{bottom:304.133333pt;}
.y2f_c01418{bottom:304.893333pt;}
.y2d_c01418{bottom:305.666667pt;}
.y32_c01418{bottom:307.200000pt;}
.yf_c01418{bottom:307.973333pt;}
.y10_c01418{bottom:308.733333pt;}
.ye_c01418{bottom:309.506667pt;}
.y12_c01418{bottom:310.266667pt;}
.yc_c01418{bottom:311.040000pt;}
.yd_c01418{bottom:314.106667pt;}
.y11_c01418{bottom:315.653333pt;}
.y2c_c01418{bottom:320.253333pt;}
.y28_c01418{bottom:321.026667pt;}
.y2a_c01418{bottom:321.786667pt;}
.y26_c01418{bottom:322.560000pt;}
.y27_c01418{bottom:323.333333pt;}
.y2b_c01418{bottom:327.173333pt;}
.y29_c01418{bottom:327.933333pt;}
.yb_c01418{bottom:332.546667pt;}
.y9_c01418{bottom:334.853333pt;}
.y8_c01418{bottom:335.613333pt;}
.y6_c01418{bottom:336.386667pt;}
.ya_c01418{bottom:337.146667pt;}
.y7_c01418{bottom:338.693333pt;}
.y5_c01418{bottom:342.533333pt;}
.y4_c01418{bottom:360.960000pt;}
.y2_c01418{bottom:361.733333pt;}
.y1_c01418{bottom:363.266667pt;}
.y3_c01418{bottom:364.026667pt;}
.y4e_c01418{bottom:418.560000pt;}
.y4d_c01418{bottom:424.706667pt;}
.y4c_c01418{bottom:427.013333pt;}
.y50_c01418{bottom:697.346667pt;}
.y51_c01418{bottom:718.080000pt;}
.y4f_c01418{bottom:731.906667pt;}
.y4b_c01418{bottom:758.786667pt;}
.y4a_c01418{bottom:1148.160000pt;}
.y49_c01418{bottom:1182.720000pt;}
.y48_c01418{bottom:1192.706667pt;}
.y47_c01418{bottom:1206.533333pt;}
.y46_c01418{bottom:1221.120000pt;}
.y45_c01418{bottom:1263.360000pt;}
.y44_c01418{bottom:1264.893333pt;}
.y43_c01418{bottom:1274.880000pt;}
.h8_c01418{height:2.764500pt;}
.h20_c01418{height:4.799479pt;}
.h1c_c01418{height:5.519401pt;}
.hc_c01418{height:8.303099pt;}
.hd_c01418{height:13.822500pt;}
.h1d_c01418{height:16.606198pt;}
.h1a_c01418{height:19.341901pt;}
.h1e_c01418{height:24.861302pt;}
.h5_c01418{height:27.645000pt;}
.h4_c01418{height:30.428698pt;}
.h21_c01418{height:33.164401pt;}
.h3_c01418{height:35.948099pt;}
.h1f_c01418{height:38.683802pt;}
.h19_c01418{height:41.467500pt;}
.h1b_c01418{height:44.251198pt;}
.h2_c01418{height:46.986901pt;}
.h12_c01418{height:49.770599pt;}
.h6_c01418{height:52.506302pt;}
.h7_c01418{height:55.290000pt;}
.h11_c01418{height:58.073698pt;}
.h13_c01418{height:60.809401pt;}
.h10_c01418{height:63.593099pt;}
.h9_c01418{height:66.328802pt;}
.h14_c01418{height:69.112500pt;}
.hf_c01418{height:71.896198pt;}
.h16_c01418{height:74.631901pt;}
.ha_c01418{height:77.415599pt;}
.he_c01418{height:80.151302pt;}
.hb_c01418{height:82.935000pt;}
.h18_c01418{height:85.718698pt;}
.h17_c01418{height:91.238099pt;}
.h15_c01418{height:96.757500pt;}
.h22_c01418{height:102.276901pt;}
.h24_c01418{height:113.363698pt;}
.h23_c01418{height:118.883099pt;}
.h1_c01418{height:1345.333333pt;}
.h0_c01418{height:1345.533333pt;}
.w0_c01418{width:959.226667pt;}
.w1_c01418{width:959.333333pt;}
.x0_c01418{left:0.000000pt;}
.x4c_c01418{left:177.413333pt;}
.x3b_c01418{left:182.013333pt;}
.x32_c01418{left:183.546667pt;}
.x2b_c01418{left:201.986667pt;}
.x3c_c01418{left:208.893333pt;}
.x4d_c01418{left:211.200000pt;}
.x3d_c01418{left:213.506667pt;}
.x33_c01418{left:239.613333pt;}
.x34_c01418{left:244.986667pt;}
.x48_c01418{left:247.293333pt;}
.x1_c01418{left:253.440000pt;}
.x3e_c01418{left:256.506667pt;}
.x46_c01418{left:261.893333pt;}
.x2c_c01418{left:266.493333pt;}
.x3f_c01418{left:271.106667pt;}
.x2_c01418{left:276.480000pt;}
.x2d_c01418{left:279.546667pt;}
.x35_c01418{left:288.000000pt;}
.x3_c01418{left:292.613333pt;}
.x49_c01418{left:295.680000pt;}
.x40_c01418{left:298.746667pt;}
.x36_c01418{left:301.053333pt;}
.x4_c01418{left:307.200000pt;}
.x5_c01418{left:321.026667pt;}
.x2e_c01418{left:327.173333pt;}
.x41_c01418{left:329.466667pt;}
.x4e_c01418{left:339.453333pt;}
.x4a_c01418{left:349.440000pt;}
.x37_c01418{left:352.506667pt;}
.x6_c01418{left:354.813333pt;}
.x4f_c01418{left:357.120000pt;}
.x50_c01418{left:362.493333pt;}
.x42_c01418{left:370.173333pt;}
.x2f_c01418{left:373.253333pt;}
.x47_c01418{left:376.320000pt;}
.x43_c01418{left:384.773333pt;}
.x30_c01418{left:386.306667pt;}
.x4b_c01418{left:394.746667pt;}
.x38_c01418{left:399.360000pt;}
.x44_c01418{left:412.413333pt;}
.x39_c01418{left:413.946667pt;}
.x31_c01418{left:416.253333pt;}
.x45_c01418{left:433.920000pt;}
.x3a_c01418{left:444.666667pt;}
.x12_c01418{left:458.493333pt;}
.x28_c01418{left:460.026667pt;}
.x18_c01418{left:461.573333pt;}
.x9_c01418{left:466.946667pt;}
.x23_c01418{left:483.840000pt;}
.xa_c01418{left:485.373333pt;}
.x19_c01418{left:489.986667pt;}
.x1e_c01418{left:497.666667pt;}
.x13_c01418{left:508.413333pt;}
.x24_c01418{left:509.946667pt;}
.x14_c01418{left:517.626667pt;}
.x29_c01418{left:519.933333pt;}
.x10_c01418{left:527.613333pt;}
.x25_c01418{left:537.600000pt;}
.xb_c01418{left:539.906667pt;}
.x1a_c01418{left:559.866667pt;}
.xc_c01418{left:568.320000pt;}
.x7_c01418{left:576.000000pt;}
.x1f_c01418{left:588.293333pt;}
.x1b_c01418{left:599.040000pt;}
.x11_c01418{left:605.186667pt;}
.xd_c01418{left:613.626667pt;}
.x15_c01418{left:616.706667pt;}
.x8_c01418{left:626.693333pt;}
.x26_c01418{left:644.346667pt;}
.x20_c01418{left:660.480000pt;}
.x16_c01418{left:679.680000pt;}
.x21_c01418{left:684.293333pt;}
.x1c_c01418{left:693.506667pt;}
.x17_c01418{left:697.346667pt;}
.x2a_c01418{left:699.653333pt;}
.xe_c01418{left:709.626667pt;}
.x1d_c01418{left:720.386667pt;}
.xf_c01418{left:734.213333pt;}
.x27_c01418{left:737.280000pt;}
.x22_c01418{left:767.226667pt;}
.x58_c01418{left:777.213333pt;}
.x59_c01418{left:788.733333pt;}
.x56_c01418{left:819.453333pt;}
.x51_c01418{left:834.053333pt;}
.x5a_c01418{left:857.093333pt;}
.x55_c01418{left:861.693333pt;}
.x54_c01418{left:864.000000pt;}
.x5b_c01418{left:873.213333pt;}
.x53_c01418{left:877.053333pt;}
.x52_c01418{left:898.560000pt;}
.x57_c01418{left:905.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_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_c2c9743380274822ad027a6a.woff2')format("woff");}.ff1_c01419{font-family:ff1_c01419;line-height:1.109863;font-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_c01419{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.mb_c01419{transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022550,0.000000,0.000000,0.250000,0,0);}
.m1_c01419{transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.033425,0.000000,0.000000,0.250000,0,0);}
.m14_c01419{transform:matrix(0.057600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057600,0.000000,0.000000,0.250000,0,0);}
.m4_c01419{transform:matrix(0.069950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069950,0.000000,0.000000,0.250000,0,0);}
.m0_c01419{transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.075075,0.000000,0.000000,0.250000,0,0);}
.m12_c01419{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);}
.m5_c01419{transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208550,0.000000,0.000000,0.250000,0,0);}
.m3_c01419{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);}
.mf_c01419{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);}
.mc_c01419{transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236350,0.000000,0.000000,0.250000,0,0);}
.m11_c01419{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m13_c01419{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);}
.m15_c01419{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c01419{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);}
.me_c01419{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.md_c01419{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);}
.m10_c01419{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m8_c01419{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m9_c01419{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.ma_c01419{transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.697500,0.000000,0.000000,0.250000,0,0);}
.m2_c01419{transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.820000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.820000,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;}
.fs6_c01419{font-size:3.456000px;}
.fse_c01419{font-size:6.900000px;}
.fs7_c01419{font-size:10.380000px;}
.fsb_c01419{font-size:13.800000px;}
.fs8_c01419{font-size:20.760000px;}
.fsd_c01419{font-size:27.660000px;}
.fs0_c01419{font-size:34.560000px;}
.fs2_c01419{font-size:38.040000px;}
.fsa_c01419{font-size:48.360000px;}
.fs3_c01419{font-size:51.840000px;}
.fs5_c01419{font-size:62.220000px;}
.fsc_c01419{font-size:76.020000px;}
.fs1_c01419{font-size:93.300000px;}
.fs9_c01419{font-size:138.240000px;}
.fs4_c01419{font-size:155.520000px;}
.fsf_c01419{font-size:162.420000px;}
.y0_c01419{bottom:0.000000px;}
.y13_c01419{bottom:289.440000px;}
.y14_c01419{bottom:304.995000px;}
.y12_c01419{bottom:857.085000px;}
.y11_c01419{bottom:1080.870000px;}
.y10_c01419{bottom:1081.725000px;}
.yc_c01419{bottom:1145.670000px;}
.yd_c01419{bottom:1162.080000px;}
.yf_c01419{bottom:1163.805000px;}
.ye_c01419{bottom:1164.675000px;}
.ya_c01419{bottom:1253.670000px;}
.yb_c01419{bottom:1295.130000px;}
.y6_c01419{bottom:1344.390000px;}
.y5_c01419{bottom:1360.800000px;}
.y2_c01419{bottom:1415.235000px;}
.y3_c01419{bottom:1425.600000px;}
.y4_c01419{bottom:1426.470000px;}
.y8_c01419{bottom:1432.515000px;}
.y9_c01419{bottom:1433.370000px;}
.y7_c01419{bottom:1434.240000px;}
.y1_c01419{bottom:1442.880000px;}
.h8_c01419{height:3.110063px;}
.h10_c01419{height:6.209326px;}
.h9_c01419{height:9.340986px;}
.hd_c01419{height:12.418652px;}
.ha_c01419{height:18.681973px;}
.hf_c01419{height:24.891299px;}
.h2_c01419{height:31.100625px;}
.h4_c01419{height:34.232285px;}
.hc_c01419{height:43.519277px;}
.h5_c01419{height:46.650937px;}
.h7_c01419{height:55.991924px;}
.he_c01419{height:68.410576px;}
.h3_c01419{height:83.960889px;}
.hb_c01419{height:124.402500px;}
.h6_c01419{height:139.952812px;}
.h11_c01419{height:146.162139px;}
.h0_c01419{height:1517.190000px;}
.h1_c01419{height:1517.250000px;}
.w0_c01419{width:1060.995000px;}
.w1_c01419{width:1061.250000px;}
.x0_c01419{left:0.000000px;}
.x10_c01419{left:12.090000px;}
.x11_c01419{left:24.195000px;}
.x4_c01419{left:106.275000px;}
.x5_c01419{left:108.000000px;}
.x1_c01419{left:110.595000px;}
.xe_c01419{left:113.190000px;}
.x2_c01419{left:123.555000px;}
.xf_c01419{left:133.050000px;}
.x3_c01419{left:147.750000px;}
.x12_c01419{left:163.290000px;}
.x6_c01419{left:311.040000px;}
.x7_c01419{left:318.810000px;}
.x8_c01419{left:338.685000px;}
.x9_c01419{left:667.005000px;}
.xa_c01419{left:687.750000px;}
.xb_c01419{left:705.030000px;}
.xc_c01419{left:722.310000px;}
.xd_c01419{left:739.590000px;}
@media print{
.v0_c01419{vertical-align:0.000000pt;}
.ls0_c01419{letter-spacing:0.000000pt;}
.ws0_c01419{word-spacing:0.000000pt;}
.fs6_c01419{font-size:3.072000pt;}
.fse_c01419{font-size:6.133333pt;}
.fs7_c01419{font-size:9.226667pt;}
.fsb_c01419{font-size:12.266667pt;}
.fs8_c01419{font-size:18.453333pt;}
.fsd_c01419{font-size:24.586667pt;}
.fs0_c01419{font-size:30.720000pt;}
.fs2_c01419{font-size:33.813333pt;}
.fsa_c01419{font-size:42.986667pt;}
.fs3_c01419{font-size:46.080000pt;}
.fs5_c01419{font-size:55.306667pt;}
.fsc_c01419{font-size:67.573333pt;}
.fs1_c01419{font-size:82.933333pt;}
.fs9_c01419{font-size:122.880000pt;}
.fs4_c01419{font-size:138.240000pt;}
.fsf_c01419{font-size:144.373333pt;}
.y0_c01419{bottom:0.000000pt;}
.y13_c01419{bottom:257.280000pt;}
.y14_c01419{bottom:271.106667pt;}
.y12_c01419{bottom:761.853333pt;}
.y11_c01419{bottom:960.773333pt;}
.y10_c01419{bottom:961.533333pt;}
.yc_c01419{bottom:1018.373333pt;}
.yd_c01419{bottom:1032.960000pt;}
.yf_c01419{bottom:1034.493333pt;}
.ye_c01419{bottom:1035.266667pt;}
.ya_c01419{bottom:1114.373333pt;}
.yb_c01419{bottom:1151.226667pt;}
.y6_c01419{bottom:1195.013333pt;}
.y5_c01419{bottom:1209.600000pt;}
.y2_c01419{bottom:1257.986667pt;}
.y3_c01419{bottom:1267.200000pt;}
.y4_c01419{bottom:1267.973333pt;}
.y8_c01419{bottom:1273.346667pt;}
.y9_c01419{bottom:1274.106667pt;}
.y7_c01419{bottom:1274.880000pt;}
.y1_c01419{bottom:1282.560000pt;}
.h8_c01419{height:2.764500pt;}
.h10_c01419{height:5.519401pt;}
.h9_c01419{height:8.303099pt;}
.hd_c01419{height:11.038802pt;}
.ha_c01419{height:16.606198pt;}
.hf_c01419{height:22.125599pt;}
.h2_c01419{height:27.645000pt;}
.h4_c01419{height:30.428698pt;}
.hc_c01419{height:38.683802pt;}
.h5_c01419{height:41.467500pt;}
.h7_c01419{height:49.770599pt;}
.he_c01419{height:60.809401pt;}
.h3_c01419{height:74.631901pt;}
.hb_c01419{height:110.580000pt;}
.h6_c01419{height:124.402500pt;}
.h11_c01419{height:129.921901pt;}
.h0_c01419{height:1348.613333pt;}
.h1_c01419{height:1348.666667pt;}
.w0_c01419{width:943.106667pt;}
.w1_c01419{width:943.333333pt;}
.x0_c01419{left:0.000000pt;}
.x10_c01419{left:10.746667pt;}
.x11_c01419{left:21.506667pt;}
.x4_c01419{left:94.466667pt;}
.x5_c01419{left:96.000000pt;}
.x1_c01419{left:98.306667pt;}
.xe_c01419{left:100.613333pt;}
.x2_c01419{left:109.826667pt;}
.xf_c01419{left:118.266667pt;}
.x3_c01419{left:131.333333pt;}
.x12_c01419{left:145.146667pt;}
.x6_c01419{left:276.480000pt;}
.x7_c01419{left:283.386667pt;}
.x8_c01419{left:301.053333pt;}
.x9_c01419{left:592.893333pt;}
.xa_c01419{left:611.333333pt;}
.xb_c01419{left:626.693333pt;}
.xc_c01419{left:642.053333pt;}
.xd_c01419{left:657.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9af9a80c5ce699fab5c27d03.woff2')format("woff");}.ff1_c01420{font-family:ff1_c01420;line-height:1.109863;font-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_c01420{transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);}
.m5_c01420{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.m12_c01420{transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141225,0.000000,0.000000,0.250000,0,0);}
.m3_c01420{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m15_c01420{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m1_c01420{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);}
.ma_c01420{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.m0_c01420{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m19_c01420{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m18_c01420{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mb_c01420{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.me_c01420{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m11_c01420{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mc_c01420{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.md_c01420{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);}
.m7_c01420{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mf_c01420{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m14_c01420{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m9_c01420{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);}
.m10_c01420{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01420{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01420{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m13_c01420{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m6_c01420{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m17_c01420{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m2_c01420{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m8_c01420{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m16_c01420{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,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;}
.fsc_c01420{font-size:3.456000px;}
.fs3_c01420{font-size:6.900000px;}
.fs6_c01420{font-size:10.380000px;}
.fsd_c01420{font-size:13.800000px;}
.fs5_c01420{font-size:20.760000px;}
.fs2_c01420{font-size:24.180000px;}
.fsa_c01420{font-size:27.660000px;}
.fs0_c01420{font-size:34.560000px;}
.fs1_c01420{font-size:38.040000px;}
.fsb_c01420{font-size:41.460000px;}
.fs7_c01420{font-size:51.840000px;}
.fs9_c01420{font-size:58.740000px;}
.fs8_c01420{font-size:62.220000px;}
.fs4_c01420{font-size:76.020000px;}
.y0_c01420{bottom:0.000000px;}
.y7_c01420{bottom:819.930000px;}
.y6_c01420{bottom:843.270000px;}
.y5_c01420{bottom:865.725000px;}
.y13_c01420{bottom:866.595000px;}
.y14_c01420{bottom:867.450000px;}
.y15_c01420{bottom:870.045000px;}
.y12_c01420{bottom:872.640000px;}
.y4_c01420{bottom:876.090000px;}
.y11_c01420{bottom:886.470000px;}
.y10_c01420{bottom:887.325000px;}
.y3_c01420{bottom:889.050000px;}
.yf_c01420{bottom:890.790000px;}
.y2_c01420{bottom:949.530000px;}
.y1_c01420{bottom:996.195000px;}
.ye_c01420{bottom:1130.970000px;}
.yd_c01420{bottom:1155.165000px;}
.yc_c01420{bottom:1156.035000px;}
.y9_c01420{bottom:1391.910000px;}
.ya_c01420{bottom:1392.765000px;}
.yb_c01420{bottom:1393.635000px;}
.y16_c01420{bottom:1397.955000px;}
.y8_c01420{bottom:1411.770000px;}
.he_c01420{height:3.110063px;}
.h5_c01420{height:6.209326px;}
.h8_c01420{height:9.340986px;}
.hf_c01420{height:12.418652px;}
.h7_c01420{height:18.681973px;}
.h4_c01420{height:21.759639px;}
.hc_c01420{height:24.891299px;}
.h2_c01420{height:31.100625px;}
.h3_c01420{height:34.232285px;}
.hd_c01420{height:37.309951px;}
.h9_c01420{height:46.650937px;}
.hb_c01420{height:52.860264px;}
.ha_c01420{height:55.991924px;}
.h6_c01420{height:68.410576px;}
.h1_c01420{height:1513.500000px;}
.h0_c01420{height:1513.725000px;}
.w0_c01420{width:1079.130000px;}
.w1_c01420{width:1079.250000px;}
.x0_c01420{left:0.000000px;}
.x14_c01420{left:131.325000px;}
.x15_c01420{left:146.880000px;}
.x18_c01420{left:158.970000px;}
.x19_c01420{left:166.755000px;}
.x16_c01420{left:169.350000px;}
.x1a_c01420{left:174.524430px;}
.x17_c01420{left:179.715000px;}
.x8_c01420{left:338.685000px;}
.x9_c01420{left:376.710000px;}
.xa_c01420{left:401.760000px;}
.xb_c01420{left:427.680000px;}
.xc_c01420{left:452.730000px;}
.xd_c01420{left:476.925000px;}
.xe_c01420{left:549.510000px;}
.xf_c01420{left:572.835000px;}
.x10_c01420{left:598.755000px;}
.x7_c01420{left:617.760000px;}
.x11_c01420{left:627.270000px;}
.x12_c01420{left:650.595000px;}
.x13_c01420{left:673.920000px;}
.x5_c01420{left:892.515000px;}
.x3_c01420{left:924.480000px;}
.x1b_c01420{left:931.395000px;}
.x1_c01420{left:964.230000px;}
.x4_c01420{left:971.130000px;}
.x2_c01420{left:976.320000px;}
.x6_c01420{left:1018.650000px;}
@media print{
.v0_c01420{vertical-align:0.000000pt;}
.ls0_c01420{letter-spacing:0.000000pt;}
.ws0_c01420{word-spacing:0.000000pt;}
.fsc_c01420{font-size:3.072000pt;}
.fs3_c01420{font-size:6.133333pt;}
.fs6_c01420{font-size:9.226667pt;}
.fsd_c01420{font-size:12.266667pt;}
.fs5_c01420{font-size:18.453333pt;}
.fs2_c01420{font-size:21.493333pt;}
.fsa_c01420{font-size:24.586667pt;}
.fs0_c01420{font-size:30.720000pt;}
.fs1_c01420{font-size:33.813333pt;}
.fsb_c01420{font-size:36.853333pt;}
.fs7_c01420{font-size:46.080000pt;}
.fs9_c01420{font-size:52.213333pt;}
.fs8_c01420{font-size:55.306667pt;}
.fs4_c01420{font-size:67.573333pt;}
.y0_c01420{bottom:0.000000pt;}
.y7_c01420{bottom:728.826667pt;}
.y6_c01420{bottom:749.573333pt;}
.y5_c01420{bottom:769.533333pt;}
.y13_c01420{bottom:770.306667pt;}
.y14_c01420{bottom:771.066667pt;}
.y15_c01420{bottom:773.373333pt;}
.y12_c01420{bottom:775.680000pt;}
.y4_c01420{bottom:778.746667pt;}
.y11_c01420{bottom:787.973333pt;}
.y10_c01420{bottom:788.733333pt;}
.y3_c01420{bottom:790.266667pt;}
.yf_c01420{bottom:791.813333pt;}
.y2_c01420{bottom:844.026667pt;}
.y1_c01420{bottom:885.506667pt;}
.ye_c01420{bottom:1005.306667pt;}
.yd_c01420{bottom:1026.813333pt;}
.yc_c01420{bottom:1027.586667pt;}
.y9_c01420{bottom:1237.253333pt;}
.ya_c01420{bottom:1238.013333pt;}
.yb_c01420{bottom:1238.786667pt;}
.y16_c01420{bottom:1242.626667pt;}
.y8_c01420{bottom:1254.906667pt;}
.he_c01420{height:2.764500pt;}
.h5_c01420{height:5.519401pt;}
.h8_c01420{height:8.303099pt;}
.hf_c01420{height:11.038802pt;}
.h7_c01420{height:16.606198pt;}
.h4_c01420{height:19.341901pt;}
.hc_c01420{height:22.125599pt;}
.h2_c01420{height:27.645000pt;}
.h3_c01420{height:30.428698pt;}
.hd_c01420{height:33.164401pt;}
.h9_c01420{height:41.467500pt;}
.hb_c01420{height:46.986901pt;}
.ha_c01420{height:49.770599pt;}
.h6_c01420{height:60.809401pt;}
.h1_c01420{height:1345.333333pt;}
.h0_c01420{height:1345.533333pt;}
.w0_c01420{width:959.226667pt;}
.w1_c01420{width:959.333333pt;}
.x0_c01420{left:0.000000pt;}
.x14_c01420{left:116.733333pt;}
.x15_c01420{left:130.560000pt;}
.x18_c01420{left:141.306667pt;}
.x19_c01420{left:148.226667pt;}
.x16_c01420{left:150.533333pt;}
.x1a_c01420{left:155.132827pt;}
.x17_c01420{left:159.746667pt;}
.x8_c01420{left:301.053333pt;}
.x9_c01420{left:334.853333pt;}
.xa_c01420{left:357.120000pt;}
.xb_c01420{left:380.160000pt;}
.xc_c01420{left:402.426667pt;}
.xd_c01420{left:423.933333pt;}
.xe_c01420{left:488.453333pt;}
.xf_c01420{left:509.186667pt;}
.x10_c01420{left:532.226667pt;}
.x7_c01420{left:549.120000pt;}
.x11_c01420{left:557.573333pt;}
.x12_c01420{left:578.306667pt;}
.x13_c01420{left:599.040000pt;}
.x5_c01420{left:793.346667pt;}
.x3_c01420{left:821.760000pt;}
.x1b_c01420{left:827.906667pt;}
.x1_c01420{left:857.093333pt;}
.x4_c01420{left:863.226667pt;}
.x2_c01420{left:867.840000pt;}
.x6_c01420{left:905.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_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;}
@font-face{font-family:ff1_c01421;src:url('chunks/assets/font_05b9d029088f271ca1378522.woff2')format("woff");}.ff1_c01421{font-family:ff1_c01421;line-height:1.109863;font-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_c01421{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);}
.v0_c01421{vertical-align:0.000000px;}
.ls0_c01421{letter-spacing:0.000000px;}
.sc__c01421{text-shadow:none;}
.sc0_c01421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01421{-webkit-text-stroke:0px transparent;}
.sc0_c01421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01421{word-spacing:0.000000px;}
.fc0_c01421{color:transparent;}
.fs0_c01421{font-size:600.000000px;}
.y0_c01421{bottom:0.000000px;}
.y1_c01421{bottom:15.000000px;}
.h2_c01421{height:539.941406px;}
.h0_c01421{height:1517.190000px;}
.h1_c01421{height:1517.250000px;}
.w0_c01421{width:1060.995000px;}
.w1_c01421{width:1061.250000px;}
.x0_c01421{left:0.000000px;}
.x1_c01421{left:15.000000px;}
@media print{
.v0_c01421{vertical-align:0.000000pt;}
.ls0_c01421{letter-spacing:0.000000pt;}
.ws0_c01421{word-spacing:0.000000pt;}
.fs0_c01421{font-size:533.333333pt;}
.y0_c01421{bottom:0.000000pt;}
.y1_c01421{bottom:13.333333pt;}
.h2_c01421{height:479.947917pt;}
.h0_c01421{height:1348.613333pt;}
.h1_c01421{height:1348.666667pt;}
.w0_c01421{width:943.106667pt;}
.w1_c01421{width:943.333333pt;}
.x0_c01421{left:0.000000pt;}
.x1_c01421{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_650b5fff0705e1c8e6987688.woff2')format("woff");}.ff1_c01422{font-family:ff1_c01422;line-height:1.109863;font-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_c01422{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c01422{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);}
.mf_c01422{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01422{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m9_c01422{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m0_c01422{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.mc_c01422{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.me_c01422{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);}
.m8_c01422{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);}
.m4_c01422{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);}
.mb_c01422{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m5_c01422{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);}
.m7_c01422{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);}
.ma_c01422{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m2_c01422{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1_c01422{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.md_c01422{transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.787500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.787500,0.000000,0.000000,0.250000,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;}
.fsd_c01422{font-size:3.456000px;}
.fs1_c01422{font-size:10.380000px;}
.fs2_c01422{font-size:13.800000px;}
.fsc_c01422{font-size:24.180000px;}
.fs0_c01422{font-size:27.660000px;}
.fs8_c01422{font-size:34.560000px;}
.fs6_c01422{font-size:44.940000px;}
.fs9_c01422{font-size:48.360000px;}
.fsb_c01422{font-size:51.840000px;}
.fsa_c01422{font-size:55.320000px;}
.fs7_c01422{font-size:58.740000px;}
.fs5_c01422{font-size:62.220000px;}
.fs4_c01422{font-size:69.120000px;}
.fs3_c01422{font-size:117.480000px;}
.y0_c01422{bottom:0.000000px;}
.yc_c01422{bottom:1356.480000px;}
.y9_c01422{bottom:1365.120000px;}
.y6_c01422{bottom:1365.990000px;}
.y7_c01422{bottom:1366.845000px;}
.y8_c01422{bottom:1367.715000px;}
.ya_c01422{bottom:1368.570000px;}
.yb_c01422{bottom:1369.440000px;}
.yd_c01422{bottom:1379.805000px;}
.ye_c01422{bottom:1382.400000px;}
.y5_c01422{bottom:1394.490000px;}
.y4_c01422{bottom:1406.595000px;}
.y2_c01422{bottom:1429.920000px;}
.y3_c01422{bottom:1430.790000px;}
.y1_c01422{bottom:1434.240000px;}
.hf_c01422{height:3.110063px;}
.h3_c01422{height:9.340986px;}
.h4_c01422{height:12.418652px;}
.he_c01422{height:21.759639px;}
.h2_c01422{height:24.891299px;}
.ha_c01422{height:31.100625px;}
.h8_c01422{height:40.441611px;}
.hb_c01422{height:43.519277px;}
.hd_c01422{height:46.650937px;}
.hc_c01422{height:49.782598px;}
.h9_c01422{height:52.860264px;}
.h7_c01422{height:55.991924px;}
.h6_c01422{height:62.201250px;}
.h5_c01422{height:105.720527px;}
.h1_c01422{height:1513.500000px;}
.h0_c01422{height:1513.725000px;}
.w0_c01422{width:1079.130000px;}
.w1_c01422{width:1079.250000px;}
.x0_c01422{left:0.000000px;}
.x6_c01422{left:275.610000px;}
.xe_c01422{left:282.525000px;}
.x7_c01422{left:297.210000px;}
.x8_c01422{left:313.635000px;}
.x9_c01422{left:330.915000px;}
.xa_c01422{left:346.470000px;}
.xb_c01422{left:383.610000px;}
.x5_c01422{left:401.760000px;}
.x2_c01422{left:404.355000px;}
.xc_c01422{left:411.270000px;}
.xd_c01422{left:422.490000px;}
.x3_c01422{left:424.230000px;}
.x1_c01422{left:441.510000px;}
.xf_c01422{left:503.715000px;}
.x10_c01422{left:895.965000px;}
.x11_c01422{left:903.750000px;}
.x4_c01422{left:930.525000px;}
@media print{
.v0_c01422{vertical-align:0.000000pt;}
.ls0_c01422{letter-spacing:0.000000pt;}
.ws0_c01422{word-spacing:0.000000pt;}
.fsd_c01422{font-size:3.072000pt;}
.fs1_c01422{font-size:9.226667pt;}
.fs2_c01422{font-size:12.266667pt;}
.fsc_c01422{font-size:21.493333pt;}
.fs0_c01422{font-size:24.586667pt;}
.fs8_c01422{font-size:30.720000pt;}
.fs6_c01422{font-size:39.946667pt;}
.fs9_c01422{font-size:42.986667pt;}
.fsb_c01422{font-size:46.080000pt;}
.fsa_c01422{font-size:49.173333pt;}
.fs7_c01422{font-size:52.213333pt;}
.fs5_c01422{font-size:55.306667pt;}
.fs4_c01422{font-size:61.440000pt;}
.fs3_c01422{font-size:104.426667pt;}
.y0_c01422{bottom:0.000000pt;}
.yc_c01422{bottom:1205.760000pt;}
.y9_c01422{bottom:1213.440000pt;}
.y6_c01422{bottom:1214.213333pt;}
.y7_c01422{bottom:1214.973333pt;}
.y8_c01422{bottom:1215.746667pt;}
.ya_c01422{bottom:1216.506667pt;}
.yb_c01422{bottom:1217.280000pt;}
.yd_c01422{bottom:1226.493333pt;}
.ye_c01422{bottom:1228.800000pt;}
.y5_c01422{bottom:1239.546667pt;}
.y4_c01422{bottom:1250.306667pt;}
.y2_c01422{bottom:1271.040000pt;}
.y3_c01422{bottom:1271.813333pt;}
.y1_c01422{bottom:1274.880000pt;}
.hf_c01422{height:2.764500pt;}
.h3_c01422{height:8.303099pt;}
.h4_c01422{height:11.038802pt;}
.he_c01422{height:19.341901pt;}
.h2_c01422{height:22.125599pt;}
.ha_c01422{height:27.645000pt;}
.h8_c01422{height:35.948099pt;}
.hb_c01422{height:38.683802pt;}
.hd_c01422{height:41.467500pt;}
.hc_c01422{height:44.251198pt;}
.h9_c01422{height:46.986901pt;}
.h7_c01422{height:49.770599pt;}
.h6_c01422{height:55.290000pt;}
.h5_c01422{height:93.973802pt;}
.h1_c01422{height:1345.333333pt;}
.h0_c01422{height:1345.533333pt;}
.w0_c01422{width:959.226667pt;}
.w1_c01422{width:959.333333pt;}
.x0_c01422{left:0.000000pt;}
.x6_c01422{left:244.986667pt;}
.xe_c01422{left:251.133333pt;}
.x7_c01422{left:264.186667pt;}
.x8_c01422{left:278.786667pt;}
.x9_c01422{left:294.146667pt;}
.xa_c01422{left:307.973333pt;}
.xb_c01422{left:340.986667pt;}
.x5_c01422{left:357.120000pt;}
.x2_c01422{left:359.426667pt;}
.xc_c01422{left:365.573333pt;}
.xd_c01422{left:375.546667pt;}
.x3_c01422{left:377.093333pt;}
.x1_c01422{left:392.453333pt;}
.xf_c01422{left:447.746667pt;}
.x10_c01422{left:796.413333pt;}
.x11_c01422{left:803.333333pt;}
.x4_c01422{left:827.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01423;src:url('chunks/assets/font_811b02c9401c863a56c6ec12.woff2')format("woff");}.ff1_c01423{font-family:ff1_c01423;line-height:1.109863;font-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_c01423{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m1_c01423{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c01423{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m3_c01423{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.v0_c01423{vertical-align:0.000000px;}
.ls0_c01423{letter-spacing:0.000000px;}
.sc__c01423{text-shadow:none;}
.sc0_c01423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01423{-webkit-text-stroke:0px transparent;}
.sc0_c01423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01423{word-spacing:0.000000px;}
.fc0_c01423{color:transparent;}
.fs2_c01423{font-size:3.456000px;}
.fs1_c01423{font-size:10.380000px;}
.fs3_c01423{font-size:20.760000px;}
.fs0_c01423{font-size:117.480000px;}
.y0_c01423{bottom:0.000000px;}
.y4_c01423{bottom:1359.930000px;}
.y2_c01423{bottom:1383.270000px;}
.y3_c01423{bottom:1385.850000px;}
.y1_c01423{bottom:1410.045000px;}
.h4_c01423{height:3.110063px;}
.h3_c01423{height:9.340986px;}
.h5_c01423{height:18.681973px;}
.h2_c01423{height:105.720527px;}
.h0_c01423{height:1517.190000px;}
.h1_c01423{height:1517.250000px;}
.w0_c01423{width:1060.995000px;}
.w1_c01423{width:1061.250000px;}
.x0_c01423{left:0.000000px;}
.x4_c01423{left:24.195000px;}
.x2_c01423{left:32.835000px;}
.x3_c01423{left:40.605000px;}
.x1_c01423{left:67.395000px;}
@media print{
.v0_c01423{vertical-align:0.000000pt;}
.ls0_c01423{letter-spacing:0.000000pt;}
.ws0_c01423{word-spacing:0.000000pt;}
.fs2_c01423{font-size:3.072000pt;}
.fs1_c01423{font-size:9.226667pt;}
.fs3_c01423{font-size:18.453333pt;}
.fs0_c01423{font-size:104.426667pt;}
.y0_c01423{bottom:0.000000pt;}
.y4_c01423{bottom:1208.826667pt;}
.y2_c01423{bottom:1229.573333pt;}
.y3_c01423{bottom:1231.866667pt;}
.y1_c01423{bottom:1253.373333pt;}
.h4_c01423{height:2.764500pt;}
.h3_c01423{height:8.303099pt;}
.h5_c01423{height:16.606198pt;}
.h2_c01423{height:93.973802pt;}
.h0_c01423{height:1348.613333pt;}
.h1_c01423{height:1348.666667pt;}
.w0_c01423{width:943.106667pt;}
.w1_c01423{width:943.333333pt;}
.x0_c01423{left:0.000000pt;}
.x4_c01423{left:21.506667pt;}
.x2_c01423{left:29.186667pt;}
.x3_c01423{left:36.093333pt;}
.x1_c01423{left:59.906667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2cde21b97bc622edf922ea6.woff2')format("woff");}.ff1_c01424{font-family:ff1_c01424;line-height:1.109863;font-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_c01424{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m17_c01424{transform:matrix(0.018800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.018800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.018800,0.000000,0.000000,0.250000,0,0);}
.mf_c01424{transform:matrix(0.062975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062975,0.000000,0.000000,0.250000,0,0);}
.m11_c01424{transform:matrix(0.064350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064350,0.000000,0.000000,0.250000,0,0);}
.m15_c01424{transform:matrix(0.088325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.088325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.088325,0.000000,0.000000,0.250000,0,0);}
.m1_c01424{transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107250,0.000000,0.000000,0.250000,0,0);}
.m12_c01424{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m8_c01424{transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122950,0.000000,0.000000,0.250000,0,0);}
.m19_c01424{transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136500,0.000000,0.000000,0.250000,0,0);}
.m2_c01424{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c01424{transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172525,0.000000,0.000000,0.250000,0,0);}
.m3_c01424{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);}
.m7_c01424{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);}
.mc_c01424{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m6_c01424{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);}
.m4_c01424{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m5_c01424{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.mb_c01424{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);}
.me_c01424{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.ma_c01424{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m9_c01424{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);}
.m10_c01424{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m13_c01424{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m18_c01424{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m16_c01424{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m14_c01424{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);}
.v0_c01424{vertical-align:0.000000px;}
.ls1_c01424{letter-spacing:0.000000px;}
.ls0_c01424{letter-spacing:904.130367px;}
.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;}
.fsb_c01424{font-size:3.456000px;}
.fs2_c01424{font-size:6.900000px;}
.fs0_c01424{font-size:10.380000px;}
.fse_c01424{font-size:13.800000px;}
.fsf_c01424{font-size:24.180000px;}
.fsd_c01424{font-size:27.660000px;}
.fs11_c01424{font-size:31.080000px;}
.fs7_c01424{font-size:34.560000px;}
.fs12_c01424{font-size:38.040000px;}
.fs1_c01424{font-size:51.840000px;}
.fs8_c01424{font-size:58.740000px;}
.fs5_c01424{font-size:62.220000px;}
.fs4_c01424{font-size:65.640000px;}
.fs6_c01424{font-size:69.120000px;}
.fs9_c01424{font-size:79.500000px;}
.fs3_c01424{font-size:86.400000px;}
.fsc_c01424{font-size:120.960000px;}
.fs10_c01424{font-size:165.900000px;}
.fsa_c01424{font-size:176.280000px;}
.y0_c01424{bottom:0.000000px;}
.y15_c01424{bottom:247.110000px;}
.y14_c01424{bottom:254.010000px;}
.y13_c01424{bottom:795.750000px;}
.y12_c01424{bottom:857.085000px;}
.y10_c01424{bottom:899.430000px;}
.y11_c01424{bottom:904.605000px;}
.yf_c01424{bottom:990.150000px;}
.ye_c01424{bottom:1156.890000px;}
.yd_c01424{bottom:1201.830000px;}
.yc_c01424{bottom:1214.790000px;}
.ya_c01424{bottom:1245.030000px;}
.yb_c01424{bottom:1258.845000px;}
.y9_c01424{bottom:1283.910000px;}
.y4_c01424{bottom:1401.405000px;}
.y7_c01424{bottom:1402.275000px;}
.y8_c01424{bottom:1403.130000px;}
.y5_c01424{bottom:1404.000000px;}
.y6_c01424{bottom:1404.870000px;}
.y3_c01424{bottom:1425.600000px;}
.y2_c01424{bottom:1431.645000px;}
.y1_c01424{bottom:1440.285000px;}
.hc_c01424{height:3.110063px;}
.h13_c01424{height:6.209326px;}
.h2_c01424{height:9.340986px;}
.hf_c01424{height:12.418652px;}
.h10_c01424{height:21.759639px;}
.he_c01424{height:24.891299px;}
.h12_c01424{height:27.968965px;}
.h8_c01424{height:31.100625px;}
.h14_c01424{height:34.232285px;}
.h3_c01424{height:46.650937px;}
.h9_c01424{height:52.860264px;}
.h6_c01424{height:55.991924px;}
.h5_c01424{height:59.069590px;}
.h7_c01424{height:62.201250px;}
.ha_c01424{height:71.542236px;}
.h4_c01424{height:77.751563px;}
.hd_c01424{height:108.852188px;}
.h11_c01424{height:149.293799px;}
.hb_c01424{height:158.634785px;}
.h1_c01424{height:1513.500000px;}
.h0_c01424{height:1513.725000px;}
.w0_c01424{width:1079.130000px;}
.w1_c01424{width:1079.250000px;}
.x0_c01424{left:0.000000px;}
.x4_c01424{left:397.440000px;}
.x5_c01424{left:441.510000px;}
.x3_c01424{left:452.730000px;}
.x6_c01424{left:465.690000px;}
.x7_c01424{left:488.160000px;}
.x1_c01424{left:489.885000px;}
.x2_c01424{left:494.205000px;}
.x8_c01424{left:510.630000px;}
.x9_c01424{left:546.045000px;}
.xa_c01424{left:559.005000px;}
.xb_c01424{left:584.070000px;}
.xc_c01424{left:608.250000px;}
.xd_c01424{left:658.365000px;}
.xe_c01424{left:680.835000px;}
.xf_c01424{left:707.610000px;}
.x11_c01424{left:972.000000px;}
.x10_c01424{left:975.450000px;}
.x16_c01424{left:978.915000px;}
.x13_c01424{left:986.685000px;}
.x12_c01424{left:998.790000px;}
.x17_c01424{left:1002.240000px;}
.x14_c01424{left:1012.605000px;}
.x18_c01424{left:1039.395000px;}
.x15_c01424{left:1052.355000px;}
.x19_c01424{left:1058.400000px;}
@media print{
.v0_c01424{vertical-align:0.000000pt;}
.ls1_c01424{letter-spacing:0.000000pt;}
.ls0_c01424{letter-spacing:803.671437pt;}
.ws0_c01424{word-spacing:0.000000pt;}
.fsb_c01424{font-size:3.072000pt;}
.fs2_c01424{font-size:6.133333pt;}
.fs0_c01424{font-size:9.226667pt;}
.fse_c01424{font-size:12.266667pt;}
.fsf_c01424{font-size:21.493333pt;}
.fsd_c01424{font-size:24.586667pt;}
.fs11_c01424{font-size:27.626667pt;}
.fs7_c01424{font-size:30.720000pt;}
.fs12_c01424{font-size:33.813333pt;}
.fs1_c01424{font-size:46.080000pt;}
.fs8_c01424{font-size:52.213333pt;}
.fs5_c01424{font-size:55.306667pt;}
.fs4_c01424{font-size:58.346667pt;}
.fs6_c01424{font-size:61.440000pt;}
.fs9_c01424{font-size:70.666667pt;}
.fs3_c01424{font-size:76.800000pt;}
.fsc_c01424{font-size:107.520000pt;}
.fs10_c01424{font-size:147.466667pt;}
.fsa_c01424{font-size:156.693333pt;}
.y0_c01424{bottom:0.000000pt;}
.y15_c01424{bottom:219.653333pt;}
.y14_c01424{bottom:225.786667pt;}
.y13_c01424{bottom:707.333333pt;}
.y12_c01424{bottom:761.853333pt;}
.y10_c01424{bottom:799.493333pt;}
.y11_c01424{bottom:804.093333pt;}
.yf_c01424{bottom:880.133333pt;}
.ye_c01424{bottom:1028.346667pt;}
.yd_c01424{bottom:1068.293333pt;}
.yc_c01424{bottom:1079.813333pt;}
.ya_c01424{bottom:1106.693333pt;}
.yb_c01424{bottom:1118.973333pt;}
.y9_c01424{bottom:1141.253333pt;}
.y4_c01424{bottom:1245.693333pt;}
.y7_c01424{bottom:1246.466667pt;}
.y8_c01424{bottom:1247.226667pt;}
.y5_c01424{bottom:1248.000000pt;}
.y6_c01424{bottom:1248.773333pt;}
.y3_c01424{bottom:1267.200000pt;}
.y2_c01424{bottom:1272.573333pt;}
.y1_c01424{bottom:1280.253333pt;}
.hc_c01424{height:2.764500pt;}
.h13_c01424{height:5.519401pt;}
.h2_c01424{height:8.303099pt;}
.hf_c01424{height:11.038802pt;}
.h10_c01424{height:19.341901pt;}
.he_c01424{height:22.125599pt;}
.h12_c01424{height:24.861302pt;}
.h8_c01424{height:27.645000pt;}
.h14_c01424{height:30.428698pt;}
.h3_c01424{height:41.467500pt;}
.h9_c01424{height:46.986901pt;}
.h6_c01424{height:49.770599pt;}
.h5_c01424{height:52.506302pt;}
.h7_c01424{height:55.290000pt;}
.ha_c01424{height:63.593099pt;}
.h4_c01424{height:69.112500pt;}
.hd_c01424{height:96.757500pt;}
.h11_c01424{height:132.705599pt;}
.hb_c01424{height:141.008698pt;}
.h1_c01424{height:1345.333333pt;}
.h0_c01424{height:1345.533333pt;}
.w0_c01424{width:959.226667pt;}
.w1_c01424{width:959.333333pt;}
.x0_c01424{left:0.000000pt;}
.x4_c01424{left:353.280000pt;}
.x5_c01424{left:392.453333pt;}
.x3_c01424{left:402.426667pt;}
.x6_c01424{left:413.946667pt;}
.x7_c01424{left:433.920000pt;}
.x1_c01424{left:435.453333pt;}
.x2_c01424{left:439.293333pt;}
.x8_c01424{left:453.893333pt;}
.x9_c01424{left:485.373333pt;}
.xa_c01424{left:496.893333pt;}
.xb_c01424{left:519.173333pt;}
.xc_c01424{left:540.666667pt;}
.xd_c01424{left:585.213333pt;}
.xe_c01424{left:605.186667pt;}
.xf_c01424{left:628.986667pt;}
.x11_c01424{left:864.000000pt;}
.x10_c01424{left:867.066667pt;}
.x16_c01424{left:870.146667pt;}
.x13_c01424{left:877.053333pt;}
.x12_c01424{left:887.813333pt;}
.x17_c01424{left:890.880000pt;}
.x14_c01424{left:900.093333pt;}
.x18_c01424{left:923.906667pt;}
.x15_c01424{left:935.426667pt;}
.x19_c01424{left:940.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_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;}
@font-face{font-family:ff1_c01425;src:url('chunks/assets/font_e5635dda21ee64ef6a2617ed.woff2')format("woff");}.ff1_c01425{font-family:ff1_c01425;line-height:1.109863;font-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_c01425{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m13_c01425{transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);}
.m4_c01425{transform:matrix(0.055975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.055975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.055975,0.000000,0.000000,0.250000,0,0);}
.mb_c01425{transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064475,0.000000,0.000000,0.250000,0,0);}
.m12_c01425{transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.082050,0.000000,0.000000,0.250000,0,0);}
.m5_c01425{transform:matrix(0.083500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083500,0.000000,0.000000,0.250000,0,0);}
.md_c01425{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.ma_c01425{transform:matrix(0.098100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.098100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.098100,0.000000,0.000000,0.250000,0,0);}
.m11_c01425{transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129950,0.000000,0.000000,0.250000,0,0);}
.me_c01425{transform:matrix(0.131950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131950,0.000000,0.000000,0.250000,0,0);}
.m0_c01425{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.m9_c01425{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m10_c01425{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);}
.m2_c01425{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.mc_c01425{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_c01425{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m1_c01425{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m6_c01425{transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.445000,0.000000,0.000000,0.250000,0,0);}
.m7_c01425{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mf_c01425{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c01425{vertical-align:0.000000px;}
.ls0_c01425{letter-spacing:0.000000px;}
.sc__c01425{text-shadow:none;}
.sc0_c01425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01425{-webkit-text-stroke:0px transparent;}
.sc0_c01425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01425{word-spacing:0.000000px;}
.fc0_c01425{color:transparent;}
.fs7_c01425{font-size:3.456000px;}
.fs8_c01425{font-size:6.000000px;}
.fs0_c01425{font-size:10.380000px;}
.fs9_c01425{font-size:17.280000px;}
.fs6_c01425{font-size:20.760000px;}
.fs1_c01425{font-size:24.180000px;}
.fsb_c01425{font-size:34.560000px;}
.fsd_c01425{font-size:38.040000px;}
.fs2_c01425{font-size:72.600000px;}
.fs5_c01425{font-size:82.920000px;}
.fs4_c01425{font-size:89.880000px;}
.fs3_c01425{font-size:127.860000px;}
.fse_c01425{font-size:148.620000px;}
.fsa_c01425{font-size:159.000000px;}
.fsc_c01425{font-size:196.980000px;}
.y0_c01425{bottom:0.000000px;}
.y16_c01425{bottom:864.870000px;}
.y15_c01425{bottom:908.070000px;}
.y14_c01425{bottom:908.925000px;}
.y13_c01425{bottom:925.350000px;}
.y12_c01425{bottom:937.440000px;}
.y11_c01425{bottom:964.230000px;}
.yf_c01425{bottom:975.450000px;}
.y10_c01425{bottom:1011.750000px;}
.ye_c01425{bottom:1032.480000px;}
.yc_c01425{bottom:1041.990000px;}
.yd_c01425{bottom:1057.530000px;}
.yb_c01425{bottom:1063.590000px;}
.ya_c01425{bottom:1168.125000px;}
.y9_c01425{bottom:1170.720000px;}
.y6_c01425{bottom:1227.750000px;}
.y5_c01425{bottom:1248.480000px;}
.y7_c01425{bottom:1259.715000px;}
.y8_c01425{bottom:1261.440000px;}
.y4_c01425{bottom:1272.675000px;}
.y3_c01425{bottom:1303.770000px;}
.y2_c01425{bottom:1328.835000px;}
.y1_c01425{bottom:1332.285000px;}
.h9_c01425{height:3.110063px;}
.ha_c01425{height:5.399414px;}
.h2_c01425{height:9.340986px;}
.hb_c01425{height:15.550313px;}
.h8_c01425{height:18.681973px;}
.h3_c01425{height:21.759639px;}
.hd_c01425{height:31.100625px;}
.hf_c01425{height:34.232285px;}
.h4_c01425{height:65.332910px;}
.h7_c01425{height:74.619902px;}
.h6_c01425{height:80.883223px;}
.h5_c01425{height:115.061514px;}
.h10_c01425{height:133.743486px;}
.hc_c01425{height:143.084473px;}
.he_c01425{height:177.262764px;}
.h0_c01425{height:1517.190000px;}
.h1_c01425{height:1517.250000px;}
.w0_c01425{width:1060.995000px;}
.w1_c01425{width:1061.250000px;}
.x0_c01425{left:0.000000px;}
.x1_c01425{left:47.520000px;}
.x6_c01425{left:55.290000px;}
.x7_c01425{left:63.930000px;}
.x2_c01425{left:67.395000px;}
.x9_c01425{left:102.810000px;}
.x3_c01425{left:108.870000px;}
.xb_c01425{left:115.770000px;}
.x8_c01425{left:128.730000px;}
.xa_c01425{left:138.240000px;}
.x4_c01425{left:196.995000px;}
.x5_c01425{left:207.360000px;}
@media print{
.v0_c01425{vertical-align:0.000000pt;}
.ls0_c01425{letter-spacing:0.000000pt;}
.ws0_c01425{word-spacing:0.000000pt;}
.fs7_c01425{font-size:3.072000pt;}
.fs8_c01425{font-size:5.333333pt;}
.fs0_c01425{font-size:9.226667pt;}
.fs9_c01425{font-size:15.360000pt;}
.fs6_c01425{font-size:18.453333pt;}
.fs1_c01425{font-size:21.493333pt;}
.fsb_c01425{font-size:30.720000pt;}
.fsd_c01425{font-size:33.813333pt;}
.fs2_c01425{font-size:64.533333pt;}
.fs5_c01425{font-size:73.706667pt;}
.fs4_c01425{font-size:79.893333pt;}
.fs3_c01425{font-size:113.653333pt;}
.fse_c01425{font-size:132.106667pt;}
.fsa_c01425{font-size:141.333333pt;}
.fsc_c01425{font-size:175.093333pt;}
.y0_c01425{bottom:0.000000pt;}
.y16_c01425{bottom:768.773333pt;}
.y15_c01425{bottom:807.173333pt;}
.y14_c01425{bottom:807.933333pt;}
.y13_c01425{bottom:822.533333pt;}
.y12_c01425{bottom:833.280000pt;}
.y11_c01425{bottom:857.093333pt;}
.yf_c01425{bottom:867.066667pt;}
.y10_c01425{bottom:899.333333pt;}
.ye_c01425{bottom:917.760000pt;}
.yc_c01425{bottom:926.213333pt;}
.yd_c01425{bottom:940.026667pt;}
.yb_c01425{bottom:945.413333pt;}
.ya_c01425{bottom:1038.333333pt;}
.y9_c01425{bottom:1040.640000pt;}
.y6_c01425{bottom:1091.333333pt;}
.y5_c01425{bottom:1109.760000pt;}
.y7_c01425{bottom:1119.746667pt;}
.y8_c01425{bottom:1121.280000pt;}
.y4_c01425{bottom:1131.266667pt;}
.y3_c01425{bottom:1158.906667pt;}
.y2_c01425{bottom:1181.186667pt;}
.y1_c01425{bottom:1184.253333pt;}
.h9_c01425{height:2.764500pt;}
.ha_c01425{height:4.799479pt;}
.h2_c01425{height:8.303099pt;}
.hb_c01425{height:13.822500pt;}
.h8_c01425{height:16.606198pt;}
.h3_c01425{height:19.341901pt;}
.hd_c01425{height:27.645000pt;}
.hf_c01425{height:30.428698pt;}
.h4_c01425{height:58.073698pt;}
.h7_c01425{height:66.328802pt;}
.h6_c01425{height:71.896198pt;}
.h5_c01425{height:102.276901pt;}
.h10_c01425{height:118.883099pt;}
.hc_c01425{height:127.186198pt;}
.he_c01425{height:157.566901pt;}
.h0_c01425{height:1348.613333pt;}
.h1_c01425{height:1348.666667pt;}
.w0_c01425{width:943.106667pt;}
.w1_c01425{width:943.333333pt;}
.x0_c01425{left:0.000000pt;}
.x1_c01425{left:42.240000pt;}
.x6_c01425{left:49.146667pt;}
.x7_c01425{left:56.826667pt;}
.x2_c01425{left:59.906667pt;}
.x9_c01425{left:91.386667pt;}
.x3_c01425{left:96.773333pt;}
.xb_c01425{left:102.906667pt;}
.x8_c01425{left:114.426667pt;}
.xa_c01425{left:122.880000pt;}
.x4_c01425{left:175.106667pt;}
.x5_c01425{left:184.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_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_80660143d0694ac53aa214ac.woff2')format("woff");}.ff1_c01426{font-family:ff1_c01426;line-height:1.109863;font-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_c01426{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m6_c01426{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m0_c01426{transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083425,0.000000,0.000000,0.250000,0,0);}
.m3_c01426{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m7_c01426{transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164975,0.000000,0.000000,0.250000,0,0);}
.m2_c01426{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m4_c01426{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);}
.mb_c01426{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);}
.m5_c01426{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m8_c01426{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c01426{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);}
.m1_c01426{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mc_c01426{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m9_c01426{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);}
.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;}
.fs8_c01426{font-size:3.456000px;}
.fs3_c01426{font-size:13.800000px;}
.fs1_c01426{font-size:17.280000px;}
.fs2_c01426{font-size:20.760000px;}
.fs7_c01426{font-size:24.180000px;}
.fsa_c01426{font-size:27.660000px;}
.fs0_c01426{font-size:31.080000px;}
.fs4_c01426{font-size:34.560000px;}
.fsb_c01426{font-size:41.460000px;}
.fs5_c01426{font-size:44.940000px;}
.fs9_c01426{font-size:155.520000px;}
.fs6_c01426{font-size:321.420000px;}
.y0_c01426{bottom:0.000000px;}
.ye_c01426{bottom:1176.765000px;}
.yc_c01426{bottom:1217.370000px;}
.yd_c01426{bottom:1222.560000px;}
.yb_c01426{bottom:1255.395000px;}
.y8_c01426{bottom:1283.910000px;}
.ya_c01426{bottom:1329.690000px;}
.y9_c01426{bottom:1331.430000px;}
.y7_c01426{bottom:1365.120000px;}
.y6_c01426{bottom:1391.040000px;}
.y5_c01426{bottom:1404.870000px;}
.y4_c01426{bottom:1416.960000px;}
.y1_c01426{bottom:1428.195000px;}
.y3_c01426{bottom:1431.645000px;}
.y2_c01426{bottom:1435.965000px;}
.ha_c01426{height:3.110063px;}
.h5_c01426{height:12.418652px;}
.h3_c01426{height:15.550313px;}
.h4_c01426{height:18.681973px;}
.h9_c01426{height:21.759639px;}
.hc_c01426{height:24.891299px;}
.h2_c01426{height:27.968965px;}
.h6_c01426{height:31.100625px;}
.hd_c01426{height:37.309951px;}
.h7_c01426{height:40.441611px;}
.hb_c01426{height:139.952812px;}
.h8_c01426{height:289.246611px;}
.h1_c01426{height:1513.500000px;}
.h0_c01426{height:1513.725000px;}
.w1_c01426{width:1080.750000px;}
.w0_c01426{width:1080.870000px;}
.x0_c01426{left:0.000000px;}
.x9_c01426{left:937.440000px;}
.x6_c01426{left:968.550000px;}
.x4_c01426{left:973.725000px;}
.xa_c01426{left:975.450000px;}
.x7_c01426{left:1003.965000px;}
.x1_c01426{left:1005.690000px;}
.x2_c01426{left:1010.880000px;}
.x3_c01426{left:1017.795000px;}
.x5_c01426{left:1019.520000px;}
.xd_c01426{left:1022.115000px;}
.x8_c01426{left:1023.840000px;}
.xb_c01426{left:1056.675000px;}
.xc_c01426{left:1072.230000px;}
@media print{
.v0_c01426{vertical-align:0.000000pt;}
.ls0_c01426{letter-spacing:0.000000pt;}
.ws0_c01426{word-spacing:0.000000pt;}
.fs8_c01426{font-size:3.072000pt;}
.fs3_c01426{font-size:12.266667pt;}
.fs1_c01426{font-size:15.360000pt;}
.fs2_c01426{font-size:18.453333pt;}
.fs7_c01426{font-size:21.493333pt;}
.fsa_c01426{font-size:24.586667pt;}
.fs0_c01426{font-size:27.626667pt;}
.fs4_c01426{font-size:30.720000pt;}
.fsb_c01426{font-size:36.853333pt;}
.fs5_c01426{font-size:39.946667pt;}
.fs9_c01426{font-size:138.240000pt;}
.fs6_c01426{font-size:285.706667pt;}
.y0_c01426{bottom:0.000000pt;}
.ye_c01426{bottom:1046.013333pt;}
.yc_c01426{bottom:1082.106667pt;}
.yd_c01426{bottom:1086.720000pt;}
.yb_c01426{bottom:1115.906667pt;}
.y8_c01426{bottom:1141.253333pt;}
.ya_c01426{bottom:1181.946667pt;}
.y9_c01426{bottom:1183.493333pt;}
.y7_c01426{bottom:1213.440000pt;}
.y6_c01426{bottom:1236.480000pt;}
.y5_c01426{bottom:1248.773333pt;}
.y4_c01426{bottom:1259.520000pt;}
.y1_c01426{bottom:1269.506667pt;}
.y3_c01426{bottom:1272.573333pt;}
.y2_c01426{bottom:1276.413333pt;}
.ha_c01426{height:2.764500pt;}
.h5_c01426{height:11.038802pt;}
.h3_c01426{height:13.822500pt;}
.h4_c01426{height:16.606198pt;}
.h9_c01426{height:19.341901pt;}
.hc_c01426{height:22.125599pt;}
.h2_c01426{height:24.861302pt;}
.h6_c01426{height:27.645000pt;}
.hd_c01426{height:33.164401pt;}
.h7_c01426{height:35.948099pt;}
.hb_c01426{height:124.402500pt;}
.h8_c01426{height:257.108099pt;}
.h1_c01426{height:1345.333333pt;}
.h0_c01426{height:1345.533333pt;}
.w1_c01426{width:960.666667pt;}
.w0_c01426{width:960.773333pt;}
.x0_c01426{left:0.000000pt;}
.x9_c01426{left:833.280000pt;}
.x6_c01426{left:860.933333pt;}
.x4_c01426{left:865.533333pt;}
.xa_c01426{left:867.066667pt;}
.x7_c01426{left:892.413333pt;}
.x1_c01426{left:893.946667pt;}
.x2_c01426{left:898.560000pt;}
.x3_c01426{left:904.706667pt;}
.x5_c01426{left:906.240000pt;}
.xd_c01426{left:908.546667pt;}
.x8_c01426{left:910.080000pt;}
.xb_c01426{left:939.266667pt;}
.xc_c01426{left:953.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01427;src:url('chunks/assets/font_100fbc005a279c13da6be88a.woff2')format("woff");}.ff1_c01427{font-family:ff1_c01427;line-height:1.109863;font-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_c01427{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);}
.v0_c01427{vertical-align:0.000000px;}
.ls0_c01427{letter-spacing:0.000000px;}
.sc__c01427{text-shadow:none;}
.sc0_c01427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01427{-webkit-text-stroke:0px transparent;}
.sc0_c01427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01427{word-spacing:0.000000px;}
.fc0_c01427{color:transparent;}
.fs0_c01427{font-size:600.000000px;}
.y0_c01427{bottom:0.000000px;}
.y1_c01427{bottom:15.000000px;}
.h2_c01427{height:539.941406px;}
.h0_c01427{height:1517.190000px;}
.h1_c01427{height:1517.250000px;}
.w0_c01427{width:1060.995000px;}
.w1_c01427{width:1061.250000px;}
.x0_c01427{left:0.000000px;}
.x1_c01427{left:15.000000px;}
@media print{
.v0_c01427{vertical-align:0.000000pt;}
.ls0_c01427{letter-spacing:0.000000pt;}
.ws0_c01427{word-spacing:0.000000pt;}
.fs0_c01427{font-size:533.333333pt;}
.y0_c01427{bottom:0.000000pt;}
.y1_c01427{bottom:13.333333pt;}
.h2_c01427{height:479.947917pt;}
.h0_c01427{height:1348.613333pt;}
.h1_c01427{height:1348.666667pt;}
.w0_c01427{width:943.106667pt;}
.w1_c01427{width:943.333333pt;}
.x0_c01427{left:0.000000pt;}
.x1_c01427{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cca45a2684bfaa9e204b5882.woff2')format("woff");}.ff1_c01428{font-family:ff1_c01428;line-height:1.109863;font-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_c01428{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m5_c01428{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01428{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m6_c01428{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);}
.m8_c01428{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c01428{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);}
.m2_c01428{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);}
.mb_c01428{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);}
.mc_c01428{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma_c01428{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m9_c01428{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m7_c01428{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m4_c01428{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.v0_c01428{vertical-align:0.000000px;}
.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;}
.fc0_c01428{color:transparent;}
.fs4_c01428{font-size:3.456000px;}
.fsa_c01428{font-size:6.000000px;}
.fs6_c01428{font-size:6.900000px;}
.fs7_c01428{font-size:13.800000px;}
.fs9_c01428{font-size:20.760000px;}
.fs5_c01428{font-size:24.180000px;}
.fs8_c01428{font-size:27.660000px;}
.fs1_c01428{font-size:48.360000px;}
.fs2_c01428{font-size:51.840000px;}
.fs3_c01428{font-size:86.400000px;}
.fs0_c01428{font-size:145.140000px;}
.y0_c01428{bottom:0.000000px;}
.ye_c01428{bottom:401.760000px;}
.yf_c01428{bottom:406.080000px;}
.yd_c01428{bottom:489.885000px;}
.y8_c01428{bottom:565.920000px;}
.y9_c01428{bottom:567.645000px;}
.yc_c01428{bottom:608.250000px;}
.yb_c01428{bottom:920.160000px;}
.ya_c01428{bottom:926.205000px;}
.y7_c01428{bottom:1318.470000px;}
.y6_c01428{bottom:1323.645000px;}
.y5_c01428{bottom:1330.560000px;}
.y4_c01428{bottom:1408.320000px;}
.y1_c01428{bottom:1410.915000px;}
.y3_c01428{bottom:1414.365000px;}
.y2_c01428{bottom:1430.790000px;}
.h6_c01428{height:3.110063px;}
.hc_c01428{height:5.399414px;}
.h8_c01428{height:6.209326px;}
.h9_c01428{height:12.418652px;}
.hb_c01428{height:18.681973px;}
.h7_c01428{height:21.759639px;}
.ha_c01428{height:24.891299px;}
.h3_c01428{height:43.519277px;}
.h4_c01428{height:46.650937px;}
.h5_c01428{height:77.751563px;}
.h2_c01428{height:130.611826px;}
.h0_c01428{height:1521.510000px;}
.h1_c01428{height:1521.750000px;}
.w1_c01428{width:1080.750000px;}
.w0_c01428{width:1080.870000px;}
.x0_c01428{left:0.000000px;}
.x1_c01428{left:929.670000px;}
.xb_c01428{left:975.450000px;}
.x8_c01428{left:997.050000px;}
.x9_c01428{left:1002.240000px;}
.x6_c01428{left:1004.835000px;}
.x5_c01428{left:1011.750000px;}
.x7_c01428{left:1020.390000px;}
.x3_c01428{left:1034.205000px;}
.xc_c01428{left:1046.310000px;}
.x4_c01428{left:1054.080000px;}
.xd_c01428{left:1055.805000px;}
.x2_c01428{left:1058.400000px;}
.xa_c01428{left:1060.995525px;}
@media print{
.v0_c01428{vertical-align:0.000000pt;}
.ls0_c01428{letter-spacing:0.000000pt;}
.ws0_c01428{word-spacing:0.000000pt;}
.fs4_c01428{font-size:3.072000pt;}
.fsa_c01428{font-size:5.333333pt;}
.fs6_c01428{font-size:6.133333pt;}
.fs7_c01428{font-size:12.266667pt;}
.fs9_c01428{font-size:18.453333pt;}
.fs5_c01428{font-size:21.493333pt;}
.fs8_c01428{font-size:24.586667pt;}
.fs1_c01428{font-size:42.986667pt;}
.fs2_c01428{font-size:46.080000pt;}
.fs3_c01428{font-size:76.800000pt;}
.fs0_c01428{font-size:129.013333pt;}
.y0_c01428{bottom:0.000000pt;}
.ye_c01428{bottom:357.120000pt;}
.yf_c01428{bottom:360.960000pt;}
.yd_c01428{bottom:435.453333pt;}
.y8_c01428{bottom:503.040000pt;}
.y9_c01428{bottom:504.573333pt;}
.yc_c01428{bottom:540.666667pt;}
.yb_c01428{bottom:817.920000pt;}
.ya_c01428{bottom:823.293333pt;}
.y7_c01428{bottom:1171.973333pt;}
.y6_c01428{bottom:1176.573333pt;}
.y5_c01428{bottom:1182.720000pt;}
.y4_c01428{bottom:1251.840000pt;}
.y1_c01428{bottom:1254.146667pt;}
.y3_c01428{bottom:1257.213333pt;}
.y2_c01428{bottom:1271.813333pt;}
.h6_c01428{height:2.764500pt;}
.hc_c01428{height:4.799479pt;}
.h8_c01428{height:5.519401pt;}
.h9_c01428{height:11.038802pt;}
.hb_c01428{height:16.606198pt;}
.h7_c01428{height:19.341901pt;}
.ha_c01428{height:22.125599pt;}
.h3_c01428{height:38.683802pt;}
.h4_c01428{height:41.467500pt;}
.h5_c01428{height:69.112500pt;}
.h2_c01428{height:116.099401pt;}
.h0_c01428{height:1352.453333pt;}
.h1_c01428{height:1352.666667pt;}
.w1_c01428{width:960.666667pt;}
.w0_c01428{width:960.773333pt;}
.x0_c01428{left:0.000000pt;}
.x1_c01428{left:826.373333pt;}
.xb_c01428{left:867.066667pt;}
.x8_c01428{left:886.266667pt;}
.x9_c01428{left:890.880000pt;}
.x6_c01428{left:893.186667pt;}
.x5_c01428{left:899.333333pt;}
.x7_c01428{left:907.013333pt;}
.x3_c01428{left:919.293333pt;}
.xc_c01428{left:930.053333pt;}
.x4_c01428{left:936.960000pt;}
.xd_c01428{left:938.493333pt;}
.x2_c01428{left:940.800000pt;}
.xa_c01428{left:943.107133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_655e4977e75f539884c36a06.woff2')format("woff");}.ff1_c01429{font-family:ff1_c01429;line-height:1.109863;font-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.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m3_c01429{transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164100,0.000000,0.000000,0.250000,0,0);}
.m4_c01429{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m0_c01429{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);}
.m2_c01429{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);}
.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;}
.fs3_c01429{font-size:38.040000px;}
.fs4_c01429{font-size:41.460000px;}
.fs1_c01429{font-size:48.360000px;}
.fs2_c01429{font-size:51.840000px;}
.fs0_c01429{font-size:141.720000px;}
.y0_c01429{bottom:0.000000px;}
.y5_c01429{bottom:1404.000000px;}
.y1_c01429{bottom:1407.450000px;}
.y3_c01429{bottom:1410.045000px;}
.y4_c01429{bottom:1416.090000px;}
.y2_c01429{bottom:1426.470000px;}
.h5_c01429{height:34.232285px;}
.h6_c01429{height:37.309951px;}
.h3_c01429{height:43.519277px;}
.h4_c01429{height:46.650937px;}
.h2_c01429{height:127.534160px;}
.h0_c01429{height:1517.190000px;}
.h1_c01429{height:1517.250000px;}
.w0_c01429{width:1060.995000px;}
.w1_c01429{width:1061.250000px;}
.x0_c01429{left:0.000000px;}
.x1_c01429{left:67.395000px;}
.x3_c01429{left:171.075000px;}
.x4_c01429{left:190.950000px;}
.x2_c01429{left:195.270000px;}
@media print{
.v0_c01429{vertical-align:0.000000pt;}
.ls0_c01429{letter-spacing:0.000000pt;}
.ws0_c01429{word-spacing:0.000000pt;}
.fs3_c01429{font-size:33.813333pt;}
.fs4_c01429{font-size:36.853333pt;}
.fs1_c01429{font-size:42.986667pt;}
.fs2_c01429{font-size:46.080000pt;}
.fs0_c01429{font-size:125.973333pt;}
.y0_c01429{bottom:0.000000pt;}
.y5_c01429{bottom:1248.000000pt;}
.y1_c01429{bottom:1251.066667pt;}
.y3_c01429{bottom:1253.373333pt;}
.y4_c01429{bottom:1258.746667pt;}
.y2_c01429{bottom:1267.973333pt;}
.h5_c01429{height:30.428698pt;}
.h6_c01429{height:33.164401pt;}
.h3_c01429{height:38.683802pt;}
.h4_c01429{height:41.467500pt;}
.h2_c01429{height:113.363698pt;}
.h0_c01429{height:1348.613333pt;}
.h1_c01429{height:1348.666667pt;}
.w0_c01429{width:943.106667pt;}
.w1_c01429{width:943.333333pt;}
.x0_c01429{left:0.000000pt;}
.x1_c01429{left:59.906667pt;}
.x3_c01429{left:152.066667pt;}
.x4_c01429{left:169.733333pt;}
.x2_c01429{left:173.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_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;}
@font-face{font-family:ff1_c01430;src:url('chunks/assets/font_a4c0716ed7020e740a432952.woff2')format("woff");}.ff1_c01430{font-family:ff1_c01430;line-height:1.109863;font-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_c01430{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m1_c01430{transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041975,0.000000,0.000000,0.250000,0,0);}
.m1b_c01430{transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.138250,0.000000,0.000000,0.250000,0,0);}
.m2_c01430{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m22_c01430{transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148325,0.000000,0.000000,0.250000,0,0);}
.m2b_c01430{transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154725,0.000000,0.000000,0.250000,0,0);}
.m29_c01430{transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157625,0.000000,0.000000,0.250000,0,0);}
.m2d_c01430{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);}
.m16_c01430{transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163900,0.000000,0.000000,0.250000,0,0);}
.m2c_c01430{transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165250,0.000000,0.000000,0.250000,0,0);}
.m14_c01430{transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);}
.m15_c01430{transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168950,0.000000,0.000000,0.250000,0,0);}
.m12_c01430{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);}
.m1c_c01430{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);}
.m19_c01430{transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177450,0.000000,0.000000,0.250000,0,0);}
.m13_c01430{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);}
.m30_c01430{transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178400,0.000000,0.000000,0.250000,0,0);}
.m21_c01430{transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.178475,0.000000,0.000000,0.250000,0,0);}
.m17_c01430{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);}
.m27_c01430{transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182600,0.000000,0.000000,0.250000,0,0);}
.m9_c01430{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);}
.m20_c01430{transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.193125,0.000000,0.000000,0.250000,0,0);}
.m1f_c01430{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.m24_c01430{transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204625,0.000000,0.000000,0.250000,0,0);}
.mf_c01430{transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205250,0.000000,0.000000,0.250000,0,0);}
.m1a_c01430{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);}
.m2f_c01430{transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211450,0.000000,0.000000,0.250000,0,0);}
.m25_c01430{transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212475,0.000000,0.000000,0.250000,0,0);}
.m8_c01430{transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213275,0.000000,0.000000,0.250000,0,0);}
.m11_c01430{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_c01430{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m1d_c01430{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);}
.m18_c01430{transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241575,0.000000,0.000000,0.250000,0,0);}
.m2e_c01430{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);}
.m10_c01430{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);}
.mc_c01430{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.mb_c01430{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c01430{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m7_c01430{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m26_c01430{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m2a_c01430{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m6_c01430{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m4_c01430{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);}
.me_c01430{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);}
.m5_c01430{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);}
.m3_c01430{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01430{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m0_c01430{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m28_c01430{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v0_c01430{vertical-align:0.000000px;}
.v1_c01430{vertical-align:10.380000px;}
.ls1_c01430{letter-spacing:0.000000px;}
.ls0_c01430{letter-spacing:26.177400px;}
.sc__c01430{text-shadow:none;}
.sc0_c01430{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01430{-webkit-text-stroke:0px transparent;}
.sc0_c01430{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01430{word-spacing:0.000000px;}
.fc0_c01430{color:transparent;}
.fs4_c01430{font-size:3.456000px;}
.fs9_c01430{font-size:6.000000px;}
.fs14_c01430{font-size:6.900000px;}
.fs0_c01430{font-size:10.380000px;}
.fs2_c01430{font-size:13.800000px;}
.fs12_c01430{font-size:20.760000px;}
.fs3_c01430{font-size:24.180000px;}
.fs6_c01430{font-size:34.560000px;}
.fs16_c01430{font-size:38.040000px;}
.fs7_c01430{font-size:41.460000px;}
.fs13_c01430{font-size:44.940000px;}
.fs15_c01430{font-size:48.360000px;}
.fsb_c01430{font-size:51.840000px;}
.fs5_c01430{font-size:55.320000px;}
.fs17_c01430{font-size:58.740000px;}
.fsc_c01430{font-size:62.220000px;}
.fsa_c01430{font-size:65.640000px;}
.fs8_c01430{font-size:69.120000px;}
.fs10_c01430{font-size:76.020000px;}
.fsd_c01430{font-size:79.500000px;}
.fs11_c01430{font-size:82.920000px;}
.fse_c01430{font-size:86.400000px;}
.fsf_c01430{font-size:93.300000px;}
.fs1_c01430{font-size:148.620000px;}
.y0_c01430{bottom:0.000000px;}
.y29_c01430{bottom:230.685000px;}
.y27_c01430{bottom:231.555000px;}
.y26_c01430{bottom:232.410000px;}
.y28_c01430{bottom:236.730000px;}
.y20_c01430{bottom:252.285000px;}
.y22_c01430{bottom:253.155000px;}
.y25_c01430{bottom:254.010000px;}
.y21_c01430{bottom:254.880000px;}
.y23_c01430{bottom:256.605000px;}
.y1f_c01430{bottom:257.475000px;}
.y24_c01430{bottom:260.070000px;}
.y19_c01430{bottom:272.160000px;}
.y1d_c01430{bottom:273.030000px;}
.y1a_c01430{bottom:273.885000px;}
.y1b_c01430{bottom:274.755000px;}
.y1c_c01430{bottom:279.075000px;}
.y1e_c01430{bottom:280.800000px;}
.y11_c01430{bottom:292.890000px;}
.y12_c01430{bottom:293.760000px;}
.y15_c01430{bottom:294.630000px;}
.y17_c01430{bottom:295.485000px;}
.y13_c01430{bottom:297.210000px;}
.y16_c01430{bottom:298.080000px;}
.y14_c01430{bottom:298.950000px;}
.y18_c01430{bottom:301.530000px;}
.yd_c01430{bottom:313.635000px;}
.ye_c01430{bottom:314.490000px;}
.y10_c01430{bottom:315.360000px;}
.yf_c01430{bottom:317.955000px;}
.yb_c01430{bottom:336.960000px;}
.ya_c01430{bottom:338.685000px;}
.yc_c01430{bottom:342.150000px;}
.y8_c01430{bottom:344.730000px;}
.y9_c01430{bottom:355.110000px;}
.y7_c01430{bottom:360.285000px;}
.y6_c01430{bottom:362.010000px;}
.y5_c01430{bottom:802.650000px;}
.y3_c01430{bottom:1126.650000px;}
.y4_c01430{bottom:1130.115000px;}
.y2_c01430{bottom:1291.680000px;}
.y1_c01430{bottom:1334.010000px;}
.hb_c01430{height:3.110063px;}
.hc_c01430{height:5.399414px;}
.h17_c01430{height:6.209326px;}
.h2_c01430{height:9.340986px;}
.h4_c01430{height:12.418652px;}
.h6_c01430{height:13.490062px;}
.h15_c01430{height:18.681973px;}
.h5_c01430{height:21.759639px;}
.h8_c01430{height:31.100625px;}
.h19_c01430{height:34.232285px;}
.h9_c01430{height:37.309951px;}
.h16_c01430{height:40.441611px;}
.h18_c01430{height:43.519277px;}
.he_c01430{height:46.650937px;}
.h7_c01430{height:49.782598px;}
.h1a_c01430{height:52.860264px;}
.hf_c01430{height:55.991924px;}
.hd_c01430{height:59.069590px;}
.ha_c01430{height:62.201250px;}
.h13_c01430{height:68.410576px;}
.h10_c01430{height:71.542236px;}
.h14_c01430{height:74.619902px;}
.h11_c01430{height:77.751563px;}
.h12_c01430{height:83.960889px;}
.h3_c01430{height:133.743486px;}
.h0_c01430{height:1521.510000px;}
.h1_c01430{height:1521.750000px;}
.w1_c01430{width:1080.750000px;}
.w0_c01430{width:1080.870000px;}
.x0_c01430{left:0.000000px;}
.x1d_c01430{left:211.680000px;}
.x14_c01430{left:223.770000px;}
.xc_c01430{left:225.510000px;}
.xd_c01430{left:244.515000px;}
.x26_c01430{left:247.110000px;}
.x18_c01430{left:249.690000px;}
.xe_c01430{left:254.010000px;}
.x1e_c01430{left:257.475000px;}
.x15_c01430{left:259.200000px;}
.x2a_c01430{left:261.795000px;}
.x1f_c01430{left:268.710000px;}
.x20_c01430{left:285.990000px;}
.x6_c01430{left:292.890000px;}
.x19_c01430{left:303.270000px;}
.x1a_c01430{left:309.315000px;}
.x7_c01430{left:317.085000px;}
.x21_c01430{left:320.550000px;}
.xf_c01430{left:322.275000px;}
.x27_c01430{left:328.320000px;}
.x8_c01430{left:332.640000px;}
.x1b_c01430{left:335.235000px;}
.x28_c01430{left:342.150000px;}
.x9_c01430{left:349.920000px;}
.x10_c01430{left:364.605000px;}
.xa_c01430{left:367.200000px;}
.x16_c01430{left:371.520000px;}
.x1c_c01430{left:384.480000px;}
.x2b_c01430{left:388.800000px;}
.xb_c01430{left:400.035000px;}
.x11_c01430{left:406.080000px;}
.x22_c01430{left:422.490000px;}
.x29_c01430{left:436.320000px;}
.x17_c01430{left:442.365000px;}
.x23_c01430{left:463.110000px;}
.x12_c01430{left:466.560000px;}
.x24_c01430{left:472.605000px;}
.x2c_c01430{left:478.650000px;}
.x13_c01430{left:482.115000px;}
.x25_c01430{left:492.480000px;}
.x2_c01430{left:975.450000px;}
.x1_c01430{left:978.045000px;}
.x3_c01430{left:1041.120000px;}
.x5_c01430{left:1056.675000px;}
.x4_c01430{left:1060.125000px;}
@media print{
.v0_c01430{vertical-align:0.000000pt;}
.v1_c01430{vertical-align:9.226667pt;}
.ls1_c01430{letter-spacing:0.000000pt;}
.ls0_c01430{letter-spacing:23.268800pt;}
.ws0_c01430{word-spacing:0.000000pt;}
.fs4_c01430{font-size:3.072000pt;}
.fs9_c01430{font-size:5.333333pt;}
.fs14_c01430{font-size:6.133333pt;}
.fs0_c01430{font-size:9.226667pt;}
.fs2_c01430{font-size:12.266667pt;}
.fs12_c01430{font-size:18.453333pt;}
.fs3_c01430{font-size:21.493333pt;}
.fs6_c01430{font-size:30.720000pt;}
.fs16_c01430{font-size:33.813333pt;}
.fs7_c01430{font-size:36.853333pt;}
.fs13_c01430{font-size:39.946667pt;}
.fs15_c01430{font-size:42.986667pt;}
.fsb_c01430{font-size:46.080000pt;}
.fs5_c01430{font-size:49.173333pt;}
.fs17_c01430{font-size:52.213333pt;}
.fsc_c01430{font-size:55.306667pt;}
.fsa_c01430{font-size:58.346667pt;}
.fs8_c01430{font-size:61.440000pt;}
.fs10_c01430{font-size:67.573333pt;}
.fsd_c01430{font-size:70.666667pt;}
.fs11_c01430{font-size:73.706667pt;}
.fse_c01430{font-size:76.800000pt;}
.fsf_c01430{font-size:82.933333pt;}
.fs1_c01430{font-size:132.106667pt;}
.y0_c01430{bottom:0.000000pt;}
.y29_c01430{bottom:205.053333pt;}
.y27_c01430{bottom:205.826667pt;}
.y26_c01430{bottom:206.586667pt;}
.y28_c01430{bottom:210.426667pt;}
.y20_c01430{bottom:224.253333pt;}
.y22_c01430{bottom:225.026667pt;}
.y25_c01430{bottom:225.786667pt;}
.y21_c01430{bottom:226.560000pt;}
.y23_c01430{bottom:228.093333pt;}
.y1f_c01430{bottom:228.866667pt;}
.y24_c01430{bottom:231.173333pt;}
.y19_c01430{bottom:241.920000pt;}
.y1d_c01430{bottom:242.693333pt;}
.y1a_c01430{bottom:243.453333pt;}
.y1b_c01430{bottom:244.226667pt;}
.y1c_c01430{bottom:248.066667pt;}
.y1e_c01430{bottom:249.600000pt;}
.y11_c01430{bottom:260.346667pt;}
.y12_c01430{bottom:261.120000pt;}
.y15_c01430{bottom:261.893333pt;}
.y17_c01430{bottom:262.653333pt;}
.y13_c01430{bottom:264.186667pt;}
.y16_c01430{bottom:264.960000pt;}
.y14_c01430{bottom:265.733333pt;}
.y18_c01430{bottom:268.026667pt;}
.yd_c01430{bottom:278.786667pt;}
.ye_c01430{bottom:279.546667pt;}
.y10_c01430{bottom:280.320000pt;}
.yf_c01430{bottom:282.626667pt;}
.yb_c01430{bottom:299.520000pt;}
.ya_c01430{bottom:301.053333pt;}
.yc_c01430{bottom:304.133333pt;}
.y8_c01430{bottom:306.426667pt;}
.y9_c01430{bottom:315.653333pt;}
.y7_c01430{bottom:320.253333pt;}
.y6_c01430{bottom:321.786667pt;}
.y5_c01430{bottom:713.466667pt;}
.y3_c01430{bottom:1001.466667pt;}
.y4_c01430{bottom:1004.546667pt;}
.y2_c01430{bottom:1148.160000pt;}
.y1_c01430{bottom:1185.786667pt;}
.hb_c01430{height:2.764500pt;}
.hc_c01430{height:4.799479pt;}
.h17_c01430{height:5.519401pt;}
.h2_c01430{height:8.303099pt;}
.h4_c01430{height:11.038802pt;}
.h6_c01430{height:11.991167pt;}
.h15_c01430{height:16.606198pt;}
.h5_c01430{height:19.341901pt;}
.h8_c01430{height:27.645000pt;}
.h19_c01430{height:30.428698pt;}
.h9_c01430{height:33.164401pt;}
.h16_c01430{height:35.948099pt;}
.h18_c01430{height:38.683802pt;}
.he_c01430{height:41.467500pt;}
.h7_c01430{height:44.251198pt;}
.h1a_c01430{height:46.986901pt;}
.hf_c01430{height:49.770599pt;}
.hd_c01430{height:52.506302pt;}
.ha_c01430{height:55.290000pt;}
.h13_c01430{height:60.809401pt;}
.h10_c01430{height:63.593099pt;}
.h14_c01430{height:66.328802pt;}
.h11_c01430{height:69.112500pt;}
.h12_c01430{height:74.631901pt;}
.h3_c01430{height:118.883099pt;}
.h0_c01430{height:1352.453333pt;}
.h1_c01430{height:1352.666667pt;}
.w1_c01430{width:960.666667pt;}
.w0_c01430{width:960.773333pt;}
.x0_c01430{left:0.000000pt;}
.x1d_c01430{left:188.160000pt;}
.x14_c01430{left:198.906667pt;}
.xc_c01430{left:200.453333pt;}
.xd_c01430{left:217.346667pt;}
.x26_c01430{left:219.653333pt;}
.x18_c01430{left:221.946667pt;}
.xe_c01430{left:225.786667pt;}
.x1e_c01430{left:228.866667pt;}
.x15_c01430{left:230.400000pt;}
.x2a_c01430{left:232.706667pt;}
.x1f_c01430{left:238.853333pt;}
.x20_c01430{left:254.213333pt;}
.x6_c01430{left:260.346667pt;}
.x19_c01430{left:269.573333pt;}
.x1a_c01430{left:274.946667pt;}
.x7_c01430{left:281.853333pt;}
.x21_c01430{left:284.933333pt;}
.xf_c01430{left:286.466667pt;}
.x27_c01430{left:291.840000pt;}
.x8_c01430{left:295.680000pt;}
.x1b_c01430{left:297.986667pt;}
.x28_c01430{left:304.133333pt;}
.x9_c01430{left:311.040000pt;}
.x10_c01430{left:324.093333pt;}
.xa_c01430{left:326.400000pt;}
.x16_c01430{left:330.240000pt;}
.x1c_c01430{left:341.760000pt;}
.x2b_c01430{left:345.600000pt;}
.xb_c01430{left:355.586667pt;}
.x11_c01430{left:360.960000pt;}
.x22_c01430{left:375.546667pt;}
.x29_c01430{left:387.840000pt;}
.x17_c01430{left:393.213333pt;}
.x23_c01430{left:411.653333pt;}
.x12_c01430{left:414.720000pt;}
.x24_c01430{left:420.093333pt;}
.x2c_c01430{left:425.466667pt;}
.x13_c01430{left:428.546667pt;}
.x25_c01430{left:437.760000pt;}
.x2_c01430{left:867.066667pt;}
.x1_c01430{left:869.373333pt;}
.x3_c01430{left:925.440000pt;}
.x5_c01430{left:939.266667pt;}
.x4_c01430{left:942.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ade598b29eb5540276beb352.woff2')format("woff");}.ff1_c01431{font-family:ff1_c01431;line-height:1.109863;font-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_c01431{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m7_c01431{transform:matrix(0.021000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.021000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.021000,0.000000,0.000000,0.250000,0,0);}
.md_c01431{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c01431{transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182300,0.000000,0.000000,0.250000,0,0);}
.m1_c01431{transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187450,0.000000,0.000000,0.250000,0,0);}
.mf_c01431{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);}
.m12_c01431{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);}
.m4_c01431{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);}
.m10_c01431{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);}
.mb_c01431{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);}
.m5_c01431{transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.335000,0.000000,0.000000,0.250000,0,0);}
.m3_c01431{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);}
.m9_c01431{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m0_c01431{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);}
.mc_c01431{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m11_c01431{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.ma_c01431{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m8_c01431{transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.710000,0.000000,0.000000,0.250000,0,0);}
.m6_c01431{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.me_c01431{transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.840000,0.000000,0.000000,0.250000,0,0);}
.v1_c01431{vertical-align:-6.900000px;}
.v0_c01431{vertical-align:0.000000px;}
.ls1_c01431{letter-spacing:0.000000px;}
.ls0_c01431{letter-spacing:46.112700px;}
.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;}
.fs9_c01431{font-size:3.456000px;}
.fsc_c01431{font-size:6.000000px;}
.fs3_c01431{font-size:6.900000px;}
.fsd_c01431{font-size:10.380000px;}
.fsb_c01431{font-size:13.800000px;}
.fs0_c01431{font-size:17.280000px;}
.fs5_c01431{font-size:20.760000px;}
.fs7_c01431{font-size:24.180000px;}
.fsa_c01431{font-size:31.080000px;}
.fs8_c01431{font-size:34.560000px;}
.fs4_c01431{font-size:41.460000px;}
.fs2_c01431{font-size:55.320000px;}
.fs1_c01431{font-size:69.120000px;}
.fs6_c01431{font-size:148.620000px;}
.y0_c01431{bottom:0.000000px;}
.y14_c01431{bottom:82.950000px;}
.y15_c01431{bottom:83.805000px;}
.y13_c01431{bottom:87.270000px;}
.yc_c01431{bottom:102.810000px;}
.ye_c01431{bottom:103.680000px;}
.yd_c01431{bottom:107.130000px;}
.y12_c01431{bottom:123.555000px;}
.y10_c01431{bottom:129.600000px;}
.y11_c01431{bottom:132.195000px;}
.yf_c01431{bottom:135.645000px;}
.yb_c01431{bottom:1010.880000px;}
.ya_c01431{bottom:1022.970000px;}
.y9_c01431{bottom:1207.005000px;}
.y8_c01431{bottom:1279.590000px;}
.y7_c01431{bottom:1288.230000px;}
.y5_c01431{bottom:1336.605000px;}
.y6_c01431{bottom:1339.200000px;}
.y2_c01431{bottom:1353.885000px;}
.y3_c01431{bottom:1356.480000px;}
.y4_c01431{bottom:1368.570000px;}
.y1_c01431{bottom:1427.325000px;}
.hb_c01431{height:3.110063px;}
.he_c01431{height:5.399414px;}
.h5_c01431{height:6.209326px;}
.hf_c01431{height:9.340986px;}
.hd_c01431{height:12.418652px;}
.h2_c01431{height:15.550313px;}
.h7_c01431{height:18.681973px;}
.h9_c01431{height:21.759639px;}
.hc_c01431{height:27.968965px;}
.ha_c01431{height:31.100625px;}
.h6_c01431{height:37.309951px;}
.h4_c01431{height:49.782598px;}
.h3_c01431{height:62.201250px;}
.h8_c01431{height:133.743486px;}
.h0_c01431{height:1517.190000px;}
.h1_c01431{height:1517.250000px;}
.w0_c01431{width:1060.995000px;}
.w1_c01431{width:1061.250000px;}
.x0_c01431{left:0.000000px;}
.x2_c01431{left:23.325000px;}
.x7_c01431{left:34.560000px;}
.x9_c01431{left:46.650000px;}
.x8_c01431{left:52.710000px;}
.x3_c01431{left:60.480000px;}
.x5_c01431{left:113.190000px;}
.x6_c01431{left:117.510000px;}
.x1_c01431{left:159.840000px;}
.x4_c01431{left:204.765000px;}
.xf_c01431{left:649.725000px;}
.x10_c01431{left:659.235000px;}
.xe_c01431{left:670.470000px;}
.xa_c01431{left:674.790000px;}
.xb_c01431{left:682.560000px;}
.xd_c01431{left:688.605000px;}
.xc_c01431{left:706.755000px;}
@media print{
.v1_c01431{vertical-align:-6.133333pt;}
.v0_c01431{vertical-align:0.000000pt;}
.ls1_c01431{letter-spacing:0.000000pt;}
.ls0_c01431{letter-spacing:40.989067pt;}
.ws0_c01431{word-spacing:0.000000pt;}
.fs9_c01431{font-size:3.072000pt;}
.fsc_c01431{font-size:5.333333pt;}
.fs3_c01431{font-size:6.133333pt;}
.fsd_c01431{font-size:9.226667pt;}
.fsb_c01431{font-size:12.266667pt;}
.fs0_c01431{font-size:15.360000pt;}
.fs5_c01431{font-size:18.453333pt;}
.fs7_c01431{font-size:21.493333pt;}
.fsa_c01431{font-size:27.626667pt;}
.fs8_c01431{font-size:30.720000pt;}
.fs4_c01431{font-size:36.853333pt;}
.fs2_c01431{font-size:49.173333pt;}
.fs1_c01431{font-size:61.440000pt;}
.fs6_c01431{font-size:132.106667pt;}
.y0_c01431{bottom:0.000000pt;}
.y14_c01431{bottom:73.733333pt;}
.y15_c01431{bottom:74.493333pt;}
.y13_c01431{bottom:77.573333pt;}
.yc_c01431{bottom:91.386667pt;}
.ye_c01431{bottom:92.160000pt;}
.yd_c01431{bottom:95.226667pt;}
.y12_c01431{bottom:109.826667pt;}
.y10_c01431{bottom:115.200000pt;}
.y11_c01431{bottom:117.506667pt;}
.yf_c01431{bottom:120.573333pt;}
.yb_c01431{bottom:898.560000pt;}
.ya_c01431{bottom:909.306667pt;}
.y9_c01431{bottom:1072.893333pt;}
.y8_c01431{bottom:1137.413333pt;}
.y7_c01431{bottom:1145.093333pt;}
.y5_c01431{bottom:1188.093333pt;}
.y6_c01431{bottom:1190.400000pt;}
.y2_c01431{bottom:1203.453333pt;}
.y3_c01431{bottom:1205.760000pt;}
.y4_c01431{bottom:1216.506667pt;}
.y1_c01431{bottom:1268.733333pt;}
.hb_c01431{height:2.764500pt;}
.he_c01431{height:4.799479pt;}
.h5_c01431{height:5.519401pt;}
.hf_c01431{height:8.303099pt;}
.hd_c01431{height:11.038802pt;}
.h2_c01431{height:13.822500pt;}
.h7_c01431{height:16.606198pt;}
.h9_c01431{height:19.341901pt;}
.hc_c01431{height:24.861302pt;}
.ha_c01431{height:27.645000pt;}
.h6_c01431{height:33.164401pt;}
.h4_c01431{height:44.251198pt;}
.h3_c01431{height:55.290000pt;}
.h8_c01431{height:118.883099pt;}
.h0_c01431{height:1348.613333pt;}
.h1_c01431{height:1348.666667pt;}
.w0_c01431{width:943.106667pt;}
.w1_c01431{width:943.333333pt;}
.x0_c01431{left:0.000000pt;}
.x2_c01431{left:20.733333pt;}
.x7_c01431{left:30.720000pt;}
.x9_c01431{left:41.466667pt;}
.x8_c01431{left:46.853333pt;}
.x3_c01431{left:53.760000pt;}
.x5_c01431{left:100.613333pt;}
.x6_c01431{left:104.453333pt;}
.x1_c01431{left:142.080000pt;}
.x4_c01431{left:182.013333pt;}
.xf_c01431{left:577.533333pt;}
.x10_c01431{left:585.986667pt;}
.xe_c01431{left:595.973333pt;}
.xa_c01431{left:599.813333pt;}
.xb_c01431{left:606.720000pt;}
.xd_c01431{left:612.093333pt;}
.xc_c01431{left:628.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_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_efd5139bf7fdaf97502a8e11.woff2')format("woff");}.ff1_c01432{font-family:ff1_c01432;line-height:1.109863;font-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_c01432{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m41_c01432{transform:matrix(0.096975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096975,0.000000,0.000000,0.250000,0,0);}
.m94_c01432{transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108700,0.000000,0.000000,0.250000,0,0);}
.m21_c01432{transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.109375,0.000000,0.000000,0.250000,0,0);}
.m44_c01432{transform:matrix(0.111450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111450,0.000000,0.000000,0.250000,0,0);}
.m4e_c01432{transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111525,0.000000,0.000000,0.250000,0,0);}
.mb8_c01432{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m87_c01432{transform:matrix(0.113400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113400,0.000000,0.000000,0.250000,0,0);}
.m40_c01432{transform:matrix(0.113725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113725,0.000000,0.000000,0.250000,0,0);}
.m1b_c01432{transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114100,0.000000,0.000000,0.250000,0,0);}
.m1c_c01432{transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.114775,0.000000,0.000000,0.250000,0,0);}
.m45_c01432{transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.123725,0.000000,0.000000,0.250000,0,0);}
.m18_c01432{transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.127000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01432{transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128100,0.000000,0.000000,0.250000,0,0);}
.m3e_c01432{transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129725,0.000000,0.000000,0.250000,0,0);}
.m6d_c01432{transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);}
.mb6_c01432{transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136375,0.000000,0.000000,0.250000,0,0);}
.m1a_c01432{transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136475,0.000000,0.000000,0.250000,0,0);}
.ma_c01432{transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142025,0.000000,0.000000,0.250000,0,0);}
.m91_c01432{transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142275,0.000000,0.000000,0.250000,0,0);}
.m1_c01432{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m65_c01432{transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144375,0.000000,0.000000,0.250000,0,0);}
.m68_c01432{transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.148375,0.000000,0.000000,0.250000,0,0);}
.m9f_c01432{transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150050,0.000000,0.000000,0.250000,0,0);}
.m2c_c01432{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);}
.m1e_c01432{transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150550,0.000000,0.000000,0.250000,0,0);}
.m56_c01432{transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150775,0.000000,0.000000,0.250000,0,0);}
.m93_c01432{transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152025,0.000000,0.000000,0.250000,0,0);}
.m8f_c01432{transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152825,0.000000,0.000000,0.250000,0,0);}
.m4d_c01432{transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155150,0.000000,0.000000,0.250000,0,0);}
.m95_c01432{transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.155450,0.000000,0.000000,0.250000,0,0);}
.m89_c01432{transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156050,0.000000,0.000000,0.250000,0,0);}
.mb3_c01432{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);}
.m39_c01432{transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157850,0.000000,0.000000,0.250000,0,0);}
.m43_c01432{transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158250,0.000000,0.000000,0.250000,0,0);}
.m33_c01432{transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162275,0.000000,0.000000,0.250000,0,0);}
.m92_c01432{transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.163150,0.000000,0.000000,0.250000,0,0);}
.m14_c01432{transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164200,0.000000,0.000000,0.250000,0,0);}
.m23_c01432{transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164325,0.000000,0.000000,0.250000,0,0);}
.m5f_c01432{transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.164375,0.000000,0.000000,0.250000,0,0);}
.m2d_c01432{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);}
.m25_c01432{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);}
.m62_c01432{transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168625,0.000000,0.000000,0.250000,0,0);}
.m2b_c01432{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);}
.m80_c01432{transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171475,0.000000,0.000000,0.250000,0,0);}
.m8c_c01432{transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173100,0.000000,0.000000,0.250000,0,0);}
.m20_c01432{transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173350,0.000000,0.000000,0.250000,0,0);}
.m8b_c01432{transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173550,0.000000,0.000000,0.250000,0,0);}
.m22_c01432{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);}
.m83_c01432{transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176800,0.000000,0.000000,0.250000,0,0);}
.m88_c01432{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);}
.m71_c01432{transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180250,0.000000,0.000000,0.250000,0,0);}
.m82_c01432{transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180800,0.000000,0.000000,0.250000,0,0);}
.m27_c01432{transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183250,0.000000,0.000000,0.250000,0,0);}
.m98_c01432{transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183750,0.000000,0.000000,0.250000,0,0);}
.ma2_c01432{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);}
.m79_c01432{transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187400,0.000000,0.000000,0.250000,0,0);}
.m75_c01432{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);}
.m84_c01432{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);}
.m52_c01432{transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195350,0.000000,0.000000,0.250000,0,0);}
.m7a_c01432{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);}
.m97_c01432{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);}
.m2a_c01432{transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196625,0.000000,0.000000,0.250000,0,0);}
.m6c_c01432{transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197125,0.000000,0.000000,0.250000,0,0);}
.m8e_c01432{transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198050,0.000000,0.000000,0.250000,0,0);}
.m86_c01432{transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198575,0.000000,0.000000,0.250000,0,0);}
.m78_c01432{transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198625,0.000000,0.000000,0.250000,0,0);}
.m60_c01432{transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200025,0.000000,0.000000,0.250000,0,0);}
.mab_c01432{transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200375,0.000000,0.000000,0.250000,0,0);}
.m19_c01432{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);}
.m2e_c01432{transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206150,0.000000,0.000000,0.250000,0,0);}
.m6a_c01432{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);}
.m4c_c01432{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);}
.m7d_c01432{transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208150,0.000000,0.000000,0.250000,0,0);}
.ma3_c01432{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);}
.m9c_c01432{transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208325,0.000000,0.000000,0.250000,0,0);}
.m6f_c01432{transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.208950,0.000000,0.000000,0.250000,0,0);}
.ma7_c01432{transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.209500,0.000000,0.000000,0.250000,0,0);}
.m8d_c01432{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);}
.m69_c01432{transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210575,0.000000,0.000000,0.250000,0,0);}
.m3a_c01432{transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210800,0.000000,0.000000,0.250000,0,0);}
.m4_c01432{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);}
.m29_c01432{transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217400,0.000000,0.000000,0.250000,0,0);}
.ma5_c01432{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);}
.mad_c01432{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);}
.m90_c01432{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);}
.m4b_c01432{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);}
.m3b_c01432{transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);}
.m70_c01432{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);}
.m7b_c01432{transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223150,0.000000,0.000000,0.250000,0,0);}
.mb1_c01432{transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223400,0.000000,0.000000,0.250000,0,0);}
.mb9_c01432{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);}
.m35_c01432{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);}
.m3c_c01432{transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225650,0.000000,0.000000,0.250000,0,0);}
.maf_c01432{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);}
.ma4_c01432{transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.226250,0.000000,0.000000,0.250000,0,0);}
.m51_c01432{transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227200,0.000000,0.000000,0.250000,0,0);}
.m76_c01432{transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229175,0.000000,0.000000,0.250000,0,0);}
.mb0_c01432{transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232025,0.000000,0.000000,0.250000,0,0);}
.m85_c01432{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);}
.m54_c01432{transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234025,0.000000,0.000000,0.250000,0,0);}
.m8a_c01432{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);}
.m7e_c01432{transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239975,0.000000,0.000000,0.250000,0,0);}
.m96_c01432{transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248150,0.000000,0.000000,0.250000,0,0);}
.mac_c01432{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);}
.m3f_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);}
.m26_c01432{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01432{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);}
.m6b_c01432{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);}
.ma0_c01432{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);}
.m6e_c01432{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m31_c01432{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m15_c01432{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);}
.m81_c01432{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m11_c01432{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);}
.m50_c01432{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);}
.m5_c01432{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m34_c01432{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);}
.m0_c01432{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m17_c01432{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.mc_c01432{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);}
.m30_c01432{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m61_c01432{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);}
.m6_c01432{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);}
.m55_c01432{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.ma9_c01432{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.maa_c01432{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m12_c01432{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m10_c01432{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);}
.ma1_c01432{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m32_c01432{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m2_c01432{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.md_c01432{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5b_c01432{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m99_c01432{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m28_c01432{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);}
.m59_c01432{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m3d_c01432{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m47_c01432{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);}
.m5e_c01432{transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.355000,0.000000,0.000000,0.250000,0,0);}
.m63_c01432{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.ma6_c01432{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);}
.m64_c01432{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.mf_c01432{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);}
.m53_c01432{transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.377500,0.000000,0.000000,0.250000,0,0);}
.m58_c01432{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.mb7_c01432{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m36_c01432{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m9a_c01432{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.ma8_c01432{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m24_c01432{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m74_c01432{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);}
.m42_c01432{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);}
.mba_c01432{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);}
.m77_c01432{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m7c_c01432{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m4a_c01432{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);}
.m16_c01432{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01432{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me_c01432{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.mbb_c01432{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m57_c01432{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);}
.m5c_c01432{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mae_c01432{transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.465000,0.000000,0.000000,0.250000,0,0);}
.m9b_c01432{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.mb2_c01432{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01432{transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.485000,0.000000,0.000000,0.250000,0,0);}
.m48_c01432{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);}
.m46_c01432{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.m49_c01432{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);}
.m4f_c01432{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.mb5_c01432{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb_c01432{transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.542500,0.000000,0.000000,0.250000,0,0);}
.m3_c01432{transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.547500,0.000000,0.000000,0.250000,0,0);}
.m67_c01432{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);}
.m9_c01432{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m9d_c01432{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m66_c01432{transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.612500,0.000000,0.000000,0.250000,0,0);}
.m37_c01432{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m9e_c01432{transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.687500,0.000000,0.000000,0.250000,0,0);}
.mb4_c01432{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m38_c01432{transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.762500,0.000000,0.000000,0.250000,0,0);}
.m5a_c01432{transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.792500,0.000000,0.000000,0.250000,0,0);}
.m7_c01432{transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.812500,0.000000,0.000000,0.250000,0,0);}
.m7f_c01432{transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.972500,0.000000,0.000000,0.250000,0,0);}
.m73_c01432{transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.002500,0.000000,0.000000,0.250000,0,0);}
.m72_c01432{transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.195000,0.000000,0.000000,0.250000,0,0);}
.m13_c01432{transform:matrix(6.040000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.040000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.040000,0.000000,0.000000,0.250000,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:-16.188000px;}
.ws2_c01432{word-spacing:0.000000px;}
.ws1_c01432{word-spacing:110.235390px;}
.fc0_c01432{color:transparent;}
.fs4_c01432{font-size:3.456000px;}
.fsd_c01432{font-size:6.000000px;}
.fsa_c01432{font-size:6.900000px;}
.fs2_c01432{font-size:10.380000px;}
.fse_c01432{font-size:13.800000px;}
.fs0_c01432{font-size:17.280000px;}
.fs5_c01432{font-size:20.760000px;}
.fs1_c01432{font-size:24.180000px;}
.fs3_c01432{font-size:27.660000px;}
.fs1b_c01432{font-size:31.080000px;}
.fs19_c01432{font-size:34.560000px;}
.fs1c_c01432{font-size:38.040000px;}
.fs1a_c01432{font-size:41.460000px;}
.fs1d_c01432{font-size:44.940000px;}
.fsf_c01432{font-size:48.360000px;}
.fs12_c01432{font-size:51.840000px;}
.fsc_c01432{font-size:55.320000px;}
.fs9_c01432{font-size:58.740000px;}
.fs6_c01432{font-size:62.220000px;}
.fs7_c01432{font-size:65.640000px;}
.fs17_c01432{font-size:69.120000px;}
.fs16_c01432{font-size:72.600000px;}
.fs8_c01432{font-size:76.020000px;}
.fsb_c01432{font-size:79.500000px;}
.fs18_c01432{font-size:82.920000px;}
.fs15_c01432{font-size:86.400000px;}
.fs11_c01432{font-size:89.880000px;}
.fs13_c01432{font-size:93.300000px;}
.fs1e_c01432{font-size:96.780000px;}
.fs10_c01432{font-size:103.680000px;}
.fs1f_c01432{font-size:110.580000px;}
.fs14_c01432{font-size:120.960000px;}
.y0_c01432{bottom:0.000000px;}
.yc4_c01432{bottom:481.245000px;}
.ybb_c01432{bottom:701.565000px;}
.yb8_c01432{bottom:707.610000px;}
.yba_c01432{bottom:712.800000px;}
.yb9_c01432{bottom:717.990000px;}
.yb5_c01432{bottom:723.165000px;}
.yb7_c01432{bottom:731.805000px;}
.yb6_c01432{bottom:732.675000px;}
.yc3_c01432{bottom:743.040000px;}
.yc2_c01432{bottom:765.510000px;}
.yc1_c01432{bottom:773.280000px;}
.yc0_c01432{bottom:825.990000px;}
.yb4_c01432{bottom:921.030000px;}
.yb3_c01432{bottom:943.485000px;}
.yb2_c01432{bottom:946.950000px;}
.yb1_c01432{bottom:950.400000px;}
.yb0_c01432{bottom:951.270000px;}
.yaf_c01432{bottom:960.765000px;}
.yad_c01432{bottom:965.085000px;}
.yac_c01432{bottom:965.955000px;}
.yab_c01432{bottom:969.405000px;}
.yae_c01432{bottom:971.130000px;}
.yaa_c01432{bottom:987.555000px;}
.ya8_c01432{bottom:991.005000px;}
.ya9_c01432{bottom:991.875000px;}
.ya6_c01432{bottom:1006.560000px;}
.ya7_c01432{bottom:1008.285000px;}
.ya5_c01432{bottom:1011.750000px;}
.ya3_c01432{bottom:1026.435000px;}
.ya2_c01432{bottom:1028.160000px;}
.ya4_c01432{bottom:1029.030000px;}
.ya1_c01432{bottom:1031.610000px;}
.ya0_c01432{bottom:1032.480000px;}
.y9d_c01432{bottom:1046.310000px;}
.y9e_c01432{bottom:1047.165000px;}
.y9f_c01432{bottom:1051.485000px;}
.y9c_c01432{bottom:1053.210000px;}
.y9a_c01432{bottom:1067.040000px;}
.y98_c01432{bottom:1067.910000px;}
.y99_c01432{bottom:1073.085000px;}
.y9b_c01432{bottom:1075.680000px;}
.y95_c01432{bottom:1086.915000px;}
.y94_c01432{bottom:1087.770000px;}
.y97_c01432{bottom:1090.365000px;}
.y93_c01432{bottom:1092.960000px;}
.y96_c01432{bottom:1093.830000px;}
.y92_c01432{bottom:1104.195000px;}
.y91_c01432{bottom:1105.920000px;}
.y8e_c01432{bottom:1109.370000px;}
.y8d_c01432{bottom:1115.430000px;}
.y8f_c01432{bottom:1116.285000px;}
.y90_c01432{bottom:1118.010000px;}
.y89_c01432{bottom:1118.880000px;}
.y8c_c01432{bottom:1120.605000px;}
.y87_c01432{bottom:1122.330000px;}
.y88_c01432{bottom:1123.200000px;}
.y8b_c01432{bottom:1124.070000px;}
.y86_c01432{bottom:1124.925000px;}
.y8a_c01432{bottom:1125.795000px;}
.y7f_c01432{bottom:1127.520000px;}
.y7e_c01432{bottom:1128.390000px;}
.y83_c01432{bottom:1130.970000px;}
.y84_c01432{bottom:1131.840000px;}
.y80_c01432{bottom:1133.565000px;}
.y8_c01432{bottom:1134.435000px;}
.y82_c01432{bottom:1135.290000px;}
.y81_c01432{bottom:1136.160000px;}
.y85_c01432{bottom:1137.885000px;}
.y79_c01432{bottom:1143.075000px;}
.y7c_c01432{bottom:1143.930000px;}
.y7b_c01432{bottom:1145.670000px;}
.y7d_c01432{bottom:1147.395000px;}
.y76_c01432{bottom:1148.250000px;}
.y7a_c01432{bottom:1149.990000px;}
.y78_c01432{bottom:1150.845000px;}
.y77_c01432{bottom:1154.310000px;}
.y70_c01432{bottom:1168.125000px;}
.y6f_c01432{bottom:1168.995000px;}
.y73_c01432{bottom:1169.850000px;}
.y74_c01432{bottom:1170.720000px;}
.y71_c01432{bottom:1171.590000px;}
.y75_c01432{bottom:1172.445000px;}
.y72_c01432{bottom:1175.040000px;}
.y7_c01432{bottom:1176.765000px;}
.y6e_c01432{bottom:1177.635000px;}
.y65_c01432{bottom:1188.000000px;}
.y66_c01432{bottom:1188.870000px;}
.y67_c01432{bottom:1193.190000px;}
.y64_c01432{bottom:1194.045000px;}
.y63_c01432{bottom:1194.915000px;}
.y6a_c01432{bottom:1195.770000px;}
.y69_c01432{bottom:1196.640000px;}
.y6c_c01432{bottom:1198.365000px;}
.y68_c01432{bottom:1199.235000px;}
.y6d_c01432{bottom:1200.090000px;}
.y6b_c01432{bottom:1201.830000px;}
.y62_c01432{bottom:1207.005000px;}
.y61_c01432{bottom:1207.875000px;}
.y5f_c01432{bottom:1209.600000px;}
.y5e_c01432{bottom:1210.470000px;}
.y5d_c01432{bottom:1211.325000px;}
.y5_c01432{bottom:1212.195000px;}
.y60_c01432{bottom:1214.790000px;}
.y4_c01432{bottom:1215.645000px;}
.y6_c01432{bottom:1216.515000px;}
.y5b_c01432{bottom:1218.240000px;}
.y5a_c01432{bottom:1219.965000px;}
.y58_c01432{bottom:1220.835000px;}
.y5c_c01432{bottom:1221.690000px;}
.y59_c01432{bottom:1223.430000px;}
.y54_c01432{bottom:1226.010000px;}
.y50_c01432{bottom:1228.605000px;}
.y4f_c01432{bottom:1229.475000px;}
.y53_c01432{bottom:1230.330000px;}
.y52_c01432{bottom:1232.925000px;}
.y56_c01432{bottom:1234.650000px;}
.y51_c01432{bottom:1235.520000px;}
.y57_c01432{bottom:1236.390000px;}
.y3_c01432{bottom:1237.245000px;}
.y2_c01432{bottom:1241.565000px;}
.y55_c01432{bottom:1245.030000px;}
.y4e_c01432{bottom:1246.755000px;}
.y4d_c01432{bottom:1250.205000px;}
.y4b_c01432{bottom:1251.075000px;}
.y48_c01432{bottom:1254.525000px;}
.y47_c01432{bottom:1255.395000px;}
.y46_c01432{bottom:1257.120000px;}
.y4c_c01432{bottom:1259.715000px;}
.y44_c01432{bottom:1260.570000px;}
.y45_c01432{bottom:1267.485000px;}
.y49_c01432{bottom:1268.355000px;}
.y43_c01432{bottom:1270.080000px;}
.y4a_c01432{bottom:1270.950000px;}
.y41_c01432{bottom:1272.675000px;}
.y1_c01432{bottom:1274.400000px;}
.y42_c01432{bottom:1275.270000px;}
.y3a_c01432{bottom:1290.810000px;}
.y38_c01432{bottom:1292.550000px;}
.y3f_c01432{bottom:1293.405000px;}
.y3b_c01432{bottom:1295.130000px;}
.y39_c01432{bottom:1296.000000px;}
.y37_c01432{bottom:1296.870000px;}
.y3c_c01432{bottom:1297.725000px;}
.y3e_c01432{bottom:1300.320000px;}
.y3d_c01432{bottom:1301.190000px;}
.y40_c01432{bottom:1302.045000px;}
.y2f_c01432{bottom:1310.685000px;}
.y30_c01432{bottom:1311.555000px;}
.y31_c01432{bottom:1312.410000px;}
.y35_c01432{bottom:1316.730000px;}
.y33_c01432{bottom:1321.920000px;}
.y32_c01432{bottom:1323.645000px;}
.y34_c01432{bottom:1324.515000px;}
.y36_c01432{bottom:1327.110000px;}
.y26_c01432{bottom:1330.560000px;}
.y2c_c01432{bottom:1332.285000px;}
.y2b_c01432{bottom:1333.155000px;}
.y2a_c01432{bottom:1334.010000px;}
.y29_c01432{bottom:1334.880000px;}
.y2d_c01432{bottom:1335.750000px;}
.y27_c01432{bottom:1336.605000px;}
.y28_c01432{bottom:1337.475000px;}
.y2e_c01432{bottom:1338.330000px;}
.y24_c01432{bottom:1346.970000px;}
.y22_c01432{bottom:1347.840000px;}
.y1f_c01432{bottom:1348.710000px;}
.y21_c01432{bottom:1349.565000px;}
.y23_c01432{bottom:1350.435000px;}
.y20_c01432{bottom:1356.480000px;}
.y25_c01432{bottom:1360.800000px;}
.y13_c01432{bottom:1366.845000px;}
.y17_c01432{bottom:1367.715000px;}
.y1b_c01432{bottom:1368.570000px;}
.y1e_c01432{bottom:1369.440000px;}
.y18_c01432{bottom:1370.310000px;}
.y1d_c01432{bottom:1371.165000px;}
.y1a_c01432{bottom:1373.760000px;}
.y14_c01432{bottom:1376.355000px;}
.y15_c01432{bottom:1377.210000px;}
.y16_c01432{bottom:1378.080000px;}
.y19_c01432{bottom:1378.950000px;}
.ybd_c01432{bottom:1379.805000px;}
.ybc_c01432{bottom:1382.400000px;}
.y1c_c01432{bottom:1388.445000px;}
.y11_c01432{bottom:1397.085000px;}
.y12_c01432{bottom:1397.955000px;}
.y10_c01432{bottom:1399.680000px;}
.yf_c01432{bottom:1404.870000px;}
.yc_c01432{bottom:1405.725000px;}
.yb_c01432{bottom:1406.595000px;}
.yd_c01432{bottom:1407.450000px;}
.ye_c01432{bottom:1416.090000px;}
.ybe_c01432{bottom:1421.280000px;}
.ybf_c01432{bottom:1422.150000px;}
.ya_c01432{bottom:1430.790000px;}
.y9_c01432{bottom:1432.515000px;}
.h6_c01432{height:3.110063px;}
.hf_c01432{height:5.399414px;}
.hc_c01432{height:6.209326px;}
.h4_c01432{height:9.340986px;}
.h10_c01432{height:12.418652px;}
.h2_c01432{height:15.550313px;}
.h7_c01432{height:18.681973px;}
.h3_c01432{height:21.759639px;}
.h5_c01432{height:24.891299px;}
.h1d_c01432{height:27.968965px;}
.h1b_c01432{height:31.100625px;}
.h1e_c01432{height:34.232285px;}
.h1c_c01432{height:37.309951px;}
.h1f_c01432{height:40.441611px;}
.h11_c01432{height:43.519277px;}
.h14_c01432{height:46.650937px;}
.he_c01432{height:49.782598px;}
.hb_c01432{height:52.860264px;}
.h8_c01432{height:55.991924px;}
.h9_c01432{height:59.069590px;}
.h19_c01432{height:62.201250px;}
.h18_c01432{height:65.332910px;}
.ha_c01432{height:68.410576px;}
.hd_c01432{height:71.542236px;}
.h1a_c01432{height:74.619902px;}
.h17_c01432{height:77.751563px;}
.h13_c01432{height:80.883223px;}
.h15_c01432{height:83.960889px;}
.h20_c01432{height:87.092549px;}
.h12_c01432{height:93.301875px;}
.h21_c01432{height:99.511201px;}
.h16_c01432{height:108.852188px;}
.h0_c01432{height:1521.510000px;}
.h1_c01432{height:1521.750000px;}
.w1_c01432{width:1080.750000px;}
.w0_c01432{width:1080.870000px;}
.x0_c01432{left:0.000000px;}
.x13_c01432{left:220.320000px;}
.x15_c01432{left:225.510000px;}
.x14_c01432{left:228.960000px;}
.x6d_c01432{left:234.150000px;}
.x18_c01432{left:235.875000px;}
.xa6_c01432{left:237.600000px;}
.x95_c01432{left:255.750000px;}
.x9d_c01432{left:257.475000px;}
.xa0_c01432{left:259.200000px;}
.x60_c01432{left:263.520000px;}
.x55_c01432{left:265.245000px;}
.xa7_c01432{left:269.565000px;}
.x96_c01432{left:273.030000px;}
.x4a_c01432{left:274.755000px;}
.x56_c01432{left:276.478755px;}
.x19_c01432{left:285.120000px;}
.x28_c01432{left:288.570000px;}
.x57_c01432{left:291.165000px;}
.x6e_c01432{left:293.760000px;}
.x33_c01432{left:299.805000px;}
.x41_c01432{left:304.125000px;}
.x7c_c01432{left:306.720000px;}
.x76_c01432{left:309.315000px;}
.x9b_c01432{left:311.040000px;}
.x97_c01432{left:313.635000px;}
.x4b_c01432{left:315.360000px;}
.xa1_c01432{left:317.085000px;}
.x6f_c01432{left:318.810000px;}
.xa9_c01432{left:320.549700px;}
.x58_c01432{left:324.870000px;}
.x61_c01432{left:327.450000px;}
.x84_c01432{left:329.190000px;}
.x34_c01432{left:330.915000px;}
.x89_c01432{left:336.960000px;}
.x98_c01432{left:338.685000px;}
.x59_c01432{left:340.410000px;}
.x7d_c01432{left:343.005000px;}
.x35_c01432{left:350.790000px;}
.x1a_c01432{left:353.370000px;}
.x70_c01432{left:355.110000px;}
.xa_c01432{left:358.560000px;}
.x36_c01432{left:363.750000px;}
.xa2_c01432{left:368.070000px;}
.x1b_c01432{left:371.520000px;}
.x5a_c01432{left:374.970000px;}
.x29_c01432{left:377.565000px;}
.x85_c01432{left:383.610000px;}
.xa4_c01432{left:386.205000px;}
.xb_c01432{left:387.930000px;}
.x7e_c01432{left:391.395000px;}
.x42_c01432{left:393.990000px;}
.x8e_c01432{left:397.440000px;}
.x2a_c01432{left:399.165000px;}
.x1c_c01432{left:403.485000px;}
.x4c_c01432{left:405.210000px;}
.x93_c01432{left:410.400000px;}
.x8f_c01432{left:412.995000px;}
.x68_c01432{left:416.445000px;}
.x9c_c01432{left:418.170000px;}
.x71_c01432{left:422.490000px;}
.x37_c01432{left:428.550000px;}
.xa5_c01432{left:430.275000px;}
.x94_c01432{left:433.725000px;}
.x99_c01432{left:436.320000px;}
.x90_c01432{left:439.770000px;}
.x86_c01432{left:443.235000px;}
.xc_c01432{left:446.685000px;}
.x77_c01432{left:451.005000px;}
.x7f_c01432{left:452.730000px;}
.x53_c01432{left:454.470000px;}
.x9e_c01432{left:456.195000px;}
.x80_c01432{left:458.790000px;}
.x43_c01432{left:461.370000px;}
.x9f_c01432{left:463.110000px;}
.xa8_c01432{left:469.155000px;}
.x4d_c01432{left:470.880000px;}
.x1d_c01432{left:472.605000px;}
.xa3_c01432{left:477.795000px;}
.x5b_c01432{left:483.840000px;}
.x38_c01432{left:490.755000px;}
.xd_c01432{left:496.800000px;}
.xaa_c01432{left:501.120000px;}
.x39_c01432{left:502.845000px;}
.xab_c01432{left:508.035000px;}
.x9a_c01432{left:512.355000px;}
.x54_c01432{left:517.530000px;}
.xe_c01432{left:520.995000px;}
.x1e_c01432{left:522.720000px;}
.x2b_c01432{left:531.360000px;}
.x87_c01432{left:539.130000px;}
.x1f_c01432{left:540.870000px;}
.x44_c01432{left:542.595000px;}
.x16_c01432{left:546.045000px;}
.xf_c01432{left:552.090000px;}
.x72_c01432{left:557.280000px;}
.x3a_c01432{left:565.050000px;}
.x10_c01432{left:568.515000px;}
.x8a_c01432{left:571.965000px;}
.x8b_c01432{left:576.285000px;}
.x3b_c01432{left:578.010000px;}
.x4e_c01432{left:579.750000px;}
.x78_c01432{left:584.925000px;}
.x45_c01432{left:587.520000px;}
.x11_c01432{left:591.840000px;}
.x69_c01432{left:593.565000px;}
.x62_c01432{left:596.160000px;}
.x20_c01432{left:601.350000px;}
.x8c_c01432{left:604.800000px;}
.x4f_c01432{left:609.120000px;}
.x3c_c01432{left:615.165000px;}
.x12_c01432{left:617.760000px;}
.x79_c01432{left:624.675000px;}
.x73_c01432{left:626.400000px;}
.x3d_c01432{left:631.590000px;}
.x91_c01432{left:637.635000px;}
.x5c_c01432{left:640.230000px;}
.x63_c01432{left:643.680000px;}
.x50_c01432{left:648.000000px;}
.x88_c01432{left:649.725000px;}
.x2c_c01432{left:651.450000px;}
.x46_c01432{left:653.190000px;}
.x2d_c01432{left:661.830000px;}
.x5d_c01432{left:664.410000px;}
.x81_c01432{left:667.005000px;}
.x5f_c01432{left:679.110000px;}
.x6a_c01432{left:680.835000px;}
.x2e_c01432{left:686.010000px;}
.x8d_c01432{left:690.330000px;}
.x74_c01432{left:692.925000px;}
.x51_c01432{left:697.245000px;}
.x21_c01432{left:699.840000px;}
.x8_c01432{left:701.565000px;}
.x92_c01432{left:704.160000px;}
.x64_c01432{left:705.885000px;}
.x47_c01432{left:707.610000px;}
.x7a_c01432{left:711.075000px;}
.x2f_c01432{left:717.120000px;}
.x3e_c01432{left:719.715000px;}
.x9_c01432{left:721.440000px;}
.xac_c01432{left:723.165000px;}
.x22_c01432{left:725.760000px;}
.x82_c01432{left:727.485000px;}
.x48_c01432{left:736.995000px;}
.x5e_c01432{left:740.445000px;}
.x52_c01432{left:748.230000px;}
.x7b_c01432{left:755.130000px;}
.x23_c01432{left:759.450000px;}
.x24_c01432{left:764.640000px;}
.x30_c01432{left:768.960000px;}
.x6b_c01432{left:772.410000px;}
.x65_c01432{left:777.600000px;}
.x83_c01432{left:785.370000px;}
.x66_c01432{left:787.110000px;}
.x17_c01432{left:790.560000px;}
.x25_c01432{left:795.750000px;}
.x26_c01432{left:803.520000px;}
.x67_c01432{left:808.710000px;}
.x3f_c01432{left:812.160000px;}
.x75_c01432{left:813.885000px;}
.x6c_c01432{left:818.205000px;}
.xad_c01432{left:820.800000px;}
.x27_c01432{left:822.525000px;}
.x31_c01432{left:834.630000px;}
.x49_c01432{left:840.675000px;}
.x40_c01432{left:879.555000px;}
.x32_c01432{left:883.005000px;}
.xae_c01432{left:892.515000px;}
.x4_c01432{left:900.285000px;}
.xaf_c01432{left:909.795000px;}
.xb1_c01432{left:912.390000px;}
.xb3_c01432{left:915.840000px;}
.x5_c01432{left:918.435000px;}
.xb4_c01432{left:926.205000px;}
.xb0_c01432{left:927.930000px;}
.xb2_c01432{left:930.525000px;}
.x6_c01432{left:934.845000px;}
.x1_c01432{left:941.760000px;}
.x7_c01432{left:1036.800000px;}
.x2_c01432{left:1041.990000px;}
.x3_c01432{left:1053.210000px;}
.xb5_c01432{left:1064.445000px;}
@media print{
.v0_c01432{vertical-align:0.000000pt;}
.ls0_c01432{letter-spacing:0.000000pt;}
.ws0_c01432{word-spacing:-14.389333pt;}
.ws2_c01432{word-spacing:0.000000pt;}
.ws1_c01432{word-spacing:97.987013pt;}
.fs4_c01432{font-size:3.072000pt;}
.fsd_c01432{font-size:5.333333pt;}
.fsa_c01432{font-size:6.133333pt;}
.fs2_c01432{font-size:9.226667pt;}
.fse_c01432{font-size:12.266667pt;}
.fs0_c01432{font-size:15.360000pt;}
.fs5_c01432{font-size:18.453333pt;}
.fs1_c01432{font-size:21.493333pt;}
.fs3_c01432{font-size:24.586667pt;}
.fs1b_c01432{font-size:27.626667pt;}
.fs19_c01432{font-size:30.720000pt;}
.fs1c_c01432{font-size:33.813333pt;}
.fs1a_c01432{font-size:36.853333pt;}
.fs1d_c01432{font-size:39.946667pt;}
.fsf_c01432{font-size:42.986667pt;}
.fs12_c01432{font-size:46.080000pt;}
.fsc_c01432{font-size:49.173333pt;}
.fs9_c01432{font-size:52.213333pt;}
.fs6_c01432{font-size:55.306667pt;}
.fs7_c01432{font-size:58.346667pt;}
.fs17_c01432{font-size:61.440000pt;}
.fs16_c01432{font-size:64.533333pt;}
.fs8_c01432{font-size:67.573333pt;}
.fsb_c01432{font-size:70.666667pt;}
.fs18_c01432{font-size:73.706667pt;}
.fs15_c01432{font-size:76.800000pt;}
.fs11_c01432{font-size:79.893333pt;}
.fs13_c01432{font-size:82.933333pt;}
.fs1e_c01432{font-size:86.026667pt;}
.fs10_c01432{font-size:92.160000pt;}
.fs1f_c01432{font-size:98.293333pt;}
.fs14_c01432{font-size:107.520000pt;}
.y0_c01432{bottom:0.000000pt;}
.yc4_c01432{bottom:427.773333pt;}
.ybb_c01432{bottom:623.613333pt;}
.yb8_c01432{bottom:628.986667pt;}
.yba_c01432{bottom:633.600000pt;}
.yb9_c01432{bottom:638.213333pt;}
.yb5_c01432{bottom:642.813333pt;}
.yb7_c01432{bottom:650.493333pt;}
.yb6_c01432{bottom:651.266667pt;}
.yc3_c01432{bottom:660.480000pt;}
.yc2_c01432{bottom:680.453333pt;}
.yc1_c01432{bottom:687.360000pt;}
.yc0_c01432{bottom:734.213333pt;}
.yb4_c01432{bottom:818.693333pt;}
.yb3_c01432{bottom:838.653333pt;}
.yb2_c01432{bottom:841.733333pt;}
.yb1_c01432{bottom:844.800000pt;}
.yb0_c01432{bottom:845.573333pt;}
.yaf_c01432{bottom:854.013333pt;}
.yad_c01432{bottom:857.853333pt;}
.yac_c01432{bottom:858.626667pt;}
.yab_c01432{bottom:861.693333pt;}
.yae_c01432{bottom:863.226667pt;}
.yaa_c01432{bottom:877.826667pt;}
.ya8_c01432{bottom:880.893333pt;}
.ya9_c01432{bottom:881.666667pt;}
.ya6_c01432{bottom:894.720000pt;}
.ya7_c01432{bottom:896.253333pt;}
.ya5_c01432{bottom:899.333333pt;}
.ya3_c01432{bottom:912.386667pt;}
.ya2_c01432{bottom:913.920000pt;}
.ya4_c01432{bottom:914.693333pt;}
.ya1_c01432{bottom:916.986667pt;}
.ya0_c01432{bottom:917.760000pt;}
.y9d_c01432{bottom:930.053333pt;}
.y9e_c01432{bottom:930.813333pt;}
.y9f_c01432{bottom:934.653333pt;}
.y9c_c01432{bottom:936.186667pt;}
.y9a_c01432{bottom:948.480000pt;}
.y98_c01432{bottom:949.253333pt;}
.y99_c01432{bottom:953.853333pt;}
.y9b_c01432{bottom:956.160000pt;}
.y95_c01432{bottom:966.146667pt;}
.y94_c01432{bottom:966.906667pt;}
.y97_c01432{bottom:969.213333pt;}
.y93_c01432{bottom:971.520000pt;}
.y96_c01432{bottom:972.293333pt;}
.y92_c01432{bottom:981.506667pt;}
.y91_c01432{bottom:983.040000pt;}
.y8e_c01432{bottom:986.106667pt;}
.y8d_c01432{bottom:991.493333pt;}
.y8f_c01432{bottom:992.253333pt;}
.y90_c01432{bottom:993.786667pt;}
.y89_c01432{bottom:994.560000pt;}
.y8c_c01432{bottom:996.093333pt;}
.y87_c01432{bottom:997.626667pt;}
.y88_c01432{bottom:998.400000pt;}
.y8b_c01432{bottom:999.173333pt;}
.y86_c01432{bottom:999.933333pt;}
.y8a_c01432{bottom:1000.706667pt;}
.y7f_c01432{bottom:1002.240000pt;}
.y7e_c01432{bottom:1003.013333pt;}
.y83_c01432{bottom:1005.306667pt;}
.y84_c01432{bottom:1006.080000pt;}
.y80_c01432{bottom:1007.613333pt;}
.y8_c01432{bottom:1008.386667pt;}
.y82_c01432{bottom:1009.146667pt;}
.y81_c01432{bottom:1009.920000pt;}
.y85_c01432{bottom:1011.453333pt;}
.y79_c01432{bottom:1016.066667pt;}
.y7c_c01432{bottom:1016.826667pt;}
.y7b_c01432{bottom:1018.373333pt;}
.y7d_c01432{bottom:1019.906667pt;}
.y76_c01432{bottom:1020.666667pt;}
.y7a_c01432{bottom:1022.213333pt;}
.y78_c01432{bottom:1022.973333pt;}
.y77_c01432{bottom:1026.053333pt;}
.y70_c01432{bottom:1038.333333pt;}
.y6f_c01432{bottom:1039.106667pt;}
.y73_c01432{bottom:1039.866667pt;}
.y74_c01432{bottom:1040.640000pt;}
.y71_c01432{bottom:1041.413333pt;}
.y75_c01432{bottom:1042.173333pt;}
.y72_c01432{bottom:1044.480000pt;}
.y7_c01432{bottom:1046.013333pt;}
.y6e_c01432{bottom:1046.786667pt;}
.y65_c01432{bottom:1056.000000pt;}
.y66_c01432{bottom:1056.773333pt;}
.y67_c01432{bottom:1060.613333pt;}
.y64_c01432{bottom:1061.373333pt;}
.y63_c01432{bottom:1062.146667pt;}
.y6a_c01432{bottom:1062.906667pt;}
.y69_c01432{bottom:1063.680000pt;}
.y6c_c01432{bottom:1065.213333pt;}
.y68_c01432{bottom:1065.986667pt;}
.y6d_c01432{bottom:1066.746667pt;}
.y6b_c01432{bottom:1068.293333pt;}
.y62_c01432{bottom:1072.893333pt;}
.y61_c01432{bottom:1073.666667pt;}
.y5f_c01432{bottom:1075.200000pt;}
.y5e_c01432{bottom:1075.973333pt;}
.y5d_c01432{bottom:1076.733333pt;}
.y5_c01432{bottom:1077.506667pt;}
.y60_c01432{bottom:1079.813333pt;}
.y4_c01432{bottom:1080.573333pt;}
.y6_c01432{bottom:1081.346667pt;}
.y5b_c01432{bottom:1082.880000pt;}
.y5a_c01432{bottom:1084.413333pt;}
.y58_c01432{bottom:1085.186667pt;}
.y5c_c01432{bottom:1085.946667pt;}
.y59_c01432{bottom:1087.493333pt;}
.y54_c01432{bottom:1089.786667pt;}
.y50_c01432{bottom:1092.093333pt;}
.y4f_c01432{bottom:1092.866667pt;}
.y53_c01432{bottom:1093.626667pt;}
.y52_c01432{bottom:1095.933333pt;}
.y56_c01432{bottom:1097.466667pt;}
.y51_c01432{bottom:1098.240000pt;}
.y57_c01432{bottom:1099.013333pt;}
.y3_c01432{bottom:1099.773333pt;}
.y2_c01432{bottom:1103.613333pt;}
.y55_c01432{bottom:1106.693333pt;}
.y4e_c01432{bottom:1108.226667pt;}
.y4d_c01432{bottom:1111.293333pt;}
.y4b_c01432{bottom:1112.066667pt;}
.y48_c01432{bottom:1115.133333pt;}
.y47_c01432{bottom:1115.906667pt;}
.y46_c01432{bottom:1117.440000pt;}
.y4c_c01432{bottom:1119.746667pt;}
.y44_c01432{bottom:1120.506667pt;}
.y45_c01432{bottom:1126.653333pt;}
.y49_c01432{bottom:1127.426667pt;}
.y43_c01432{bottom:1128.960000pt;}
.y4a_c01432{bottom:1129.733333pt;}
.y41_c01432{bottom:1131.266667pt;}
.y1_c01432{bottom:1132.800000pt;}
.y42_c01432{bottom:1133.573333pt;}
.y3a_c01432{bottom:1147.386667pt;}
.y38_c01432{bottom:1148.933333pt;}
.y3f_c01432{bottom:1149.693333pt;}
.y3b_c01432{bottom:1151.226667pt;}
.y39_c01432{bottom:1152.000000pt;}
.y37_c01432{bottom:1152.773333pt;}
.y3c_c01432{bottom:1153.533333pt;}
.y3e_c01432{bottom:1155.840000pt;}
.y3d_c01432{bottom:1156.613333pt;}
.y40_c01432{bottom:1157.373333pt;}
.y2f_c01432{bottom:1165.053333pt;}
.y30_c01432{bottom:1165.826667pt;}
.y31_c01432{bottom:1166.586667pt;}
.y35_c01432{bottom:1170.426667pt;}
.y33_c01432{bottom:1175.040000pt;}
.y32_c01432{bottom:1176.573333pt;}
.y34_c01432{bottom:1177.346667pt;}
.y36_c01432{bottom:1179.653333pt;}
.y26_c01432{bottom:1182.720000pt;}
.y2c_c01432{bottom:1184.253333pt;}
.y2b_c01432{bottom:1185.026667pt;}
.y2a_c01432{bottom:1185.786667pt;}
.y29_c01432{bottom:1186.560000pt;}
.y2d_c01432{bottom:1187.333333pt;}
.y27_c01432{bottom:1188.093333pt;}
.y28_c01432{bottom:1188.866667pt;}
.y2e_c01432{bottom:1189.626667pt;}
.y24_c01432{bottom:1197.306667pt;}
.y22_c01432{bottom:1198.080000pt;}
.y1f_c01432{bottom:1198.853333pt;}
.y21_c01432{bottom:1199.613333pt;}
.y23_c01432{bottom:1200.386667pt;}
.y20_c01432{bottom:1205.760000pt;}
.y25_c01432{bottom:1209.600000pt;}
.y13_c01432{bottom:1214.973333pt;}
.y17_c01432{bottom:1215.746667pt;}
.y1b_c01432{bottom:1216.506667pt;}
.y1e_c01432{bottom:1217.280000pt;}
.y18_c01432{bottom:1218.053333pt;}
.y1d_c01432{bottom:1218.813333pt;}
.y1a_c01432{bottom:1221.120000pt;}
.y14_c01432{bottom:1223.426667pt;}
.y15_c01432{bottom:1224.186667pt;}
.y16_c01432{bottom:1224.960000pt;}
.y19_c01432{bottom:1225.733333pt;}
.ybd_c01432{bottom:1226.493333pt;}
.ybc_c01432{bottom:1228.800000pt;}
.y1c_c01432{bottom:1234.173333pt;}
.y11_c01432{bottom:1241.853333pt;}
.y12_c01432{bottom:1242.626667pt;}
.y10_c01432{bottom:1244.160000pt;}
.yf_c01432{bottom:1248.773333pt;}
.yc_c01432{bottom:1249.533333pt;}
.yb_c01432{bottom:1250.306667pt;}
.yd_c01432{bottom:1251.066667pt;}
.ye_c01432{bottom:1258.746667pt;}
.ybe_c01432{bottom:1263.360000pt;}
.ybf_c01432{bottom:1264.133333pt;}
.ya_c01432{bottom:1271.813333pt;}
.y9_c01432{bottom:1273.346667pt;}
.h6_c01432{height:2.764500pt;}
.hf_c01432{height:4.799479pt;}
.hc_c01432{height:5.519401pt;}
.h4_c01432{height:8.303099pt;}
.h10_c01432{height:11.038802pt;}
.h2_c01432{height:13.822500pt;}
.h7_c01432{height:16.606198pt;}
.h3_c01432{height:19.341901pt;}
.h5_c01432{height:22.125599pt;}
.h1d_c01432{height:24.861302pt;}
.h1b_c01432{height:27.645000pt;}
.h1e_c01432{height:30.428698pt;}
.h1c_c01432{height:33.164401pt;}
.h1f_c01432{height:35.948099pt;}
.h11_c01432{height:38.683802pt;}
.h14_c01432{height:41.467500pt;}
.he_c01432{height:44.251198pt;}
.hb_c01432{height:46.986901pt;}
.h8_c01432{height:49.770599pt;}
.h9_c01432{height:52.506302pt;}
.h19_c01432{height:55.290000pt;}
.h18_c01432{height:58.073698pt;}
.ha_c01432{height:60.809401pt;}
.hd_c01432{height:63.593099pt;}
.h1a_c01432{height:66.328802pt;}
.h17_c01432{height:69.112500pt;}
.h13_c01432{height:71.896198pt;}
.h15_c01432{height:74.631901pt;}
.h20_c01432{height:77.415599pt;}
.h12_c01432{height:82.935000pt;}
.h21_c01432{height:88.454401pt;}
.h16_c01432{height:96.757500pt;}
.h0_c01432{height:1352.453333pt;}
.h1_c01432{height:1352.666667pt;}
.w1_c01432{width:960.666667pt;}
.w0_c01432{width:960.773333pt;}
.x0_c01432{left:0.000000pt;}
.x13_c01432{left:195.840000pt;}
.x15_c01432{left:200.453333pt;}
.x14_c01432{left:203.520000pt;}
.x6d_c01432{left:208.133333pt;}
.x18_c01432{left:209.666667pt;}
.xa6_c01432{left:211.200000pt;}
.x95_c01432{left:227.333333pt;}
.x9d_c01432{left:228.866667pt;}
.xa0_c01432{left:230.400000pt;}
.x60_c01432{left:234.240000pt;}
.x55_c01432{left:235.773333pt;}
.xa7_c01432{left:239.613333pt;}
.x96_c01432{left:242.693333pt;}
.x4a_c01432{left:244.226667pt;}
.x56_c01432{left:245.758893pt;}
.x19_c01432{left:253.440000pt;}
.x28_c01432{left:256.506667pt;}
.x57_c01432{left:258.813333pt;}
.x6e_c01432{left:261.120000pt;}
.x33_c01432{left:266.493333pt;}
.x41_c01432{left:270.333333pt;}
.x7c_c01432{left:272.640000pt;}
.x76_c01432{left:274.946667pt;}
.x9b_c01432{left:276.480000pt;}
.x97_c01432{left:278.786667pt;}
.x4b_c01432{left:280.320000pt;}
.xa1_c01432{left:281.853333pt;}
.x6f_c01432{left:283.386667pt;}
.xa9_c01432{left:284.933067pt;}
.x58_c01432{left:288.773333pt;}
.x61_c01432{left:291.066667pt;}
.x84_c01432{left:292.613333pt;}
.x34_c01432{left:294.146667pt;}
.x89_c01432{left:299.520000pt;}
.x98_c01432{left:301.053333pt;}
.x59_c01432{left:302.586667pt;}
.x7d_c01432{left:304.893333pt;}
.x35_c01432{left:311.813333pt;}
.x1a_c01432{left:314.106667pt;}
.x70_c01432{left:315.653333pt;}
.xa_c01432{left:318.720000pt;}
.x36_c01432{left:323.333333pt;}
.xa2_c01432{left:327.173333pt;}
.x1b_c01432{left:330.240000pt;}
.x5a_c01432{left:333.306667pt;}
.x29_c01432{left:335.613333pt;}
.x85_c01432{left:340.986667pt;}
.xa4_c01432{left:343.293333pt;}
.xb_c01432{left:344.826667pt;}
.x7e_c01432{left:347.906667pt;}
.x42_c01432{left:350.213333pt;}
.x8e_c01432{left:353.280000pt;}
.x2a_c01432{left:354.813333pt;}
.x1c_c01432{left:358.653333pt;}
.x4c_c01432{left:360.186667pt;}
.x93_c01432{left:364.800000pt;}
.x8f_c01432{left:367.106667pt;}
.x68_c01432{left:370.173333pt;}
.x9c_c01432{left:371.706667pt;}
.x71_c01432{left:375.546667pt;}
.x37_c01432{left:380.933333pt;}
.xa5_c01432{left:382.466667pt;}
.x94_c01432{left:385.533333pt;}
.x99_c01432{left:387.840000pt;}
.x90_c01432{left:390.906667pt;}
.x86_c01432{left:393.986667pt;}
.xc_c01432{left:397.053333pt;}
.x77_c01432{left:400.893333pt;}
.x7f_c01432{left:402.426667pt;}
.x53_c01432{left:403.973333pt;}
.x9e_c01432{left:405.506667pt;}
.x80_c01432{left:407.813333pt;}
.x43_c01432{left:410.106667pt;}
.x9f_c01432{left:411.653333pt;}
.xa8_c01432{left:417.026667pt;}
.x4d_c01432{left:418.560000pt;}
.x1d_c01432{left:420.093333pt;}
.xa3_c01432{left:424.706667pt;}
.x5b_c01432{left:430.080000pt;}
.x38_c01432{left:436.226667pt;}
.xd_c01432{left:441.600000pt;}
.xaa_c01432{left:445.440000pt;}
.x39_c01432{left:446.973333pt;}
.xab_c01432{left:451.586667pt;}
.x9a_c01432{left:455.426667pt;}
.x54_c01432{left:460.026667pt;}
.xe_c01432{left:463.106667pt;}
.x1e_c01432{left:464.640000pt;}
.x2b_c01432{left:472.320000pt;}
.x87_c01432{left:479.226667pt;}
.x1f_c01432{left:480.773333pt;}
.x44_c01432{left:482.306667pt;}
.x16_c01432{left:485.373333pt;}
.xf_c01432{left:490.746667pt;}
.x72_c01432{left:495.360000pt;}
.x3a_c01432{left:502.266667pt;}
.x10_c01432{left:505.346667pt;}
.x8a_c01432{left:508.413333pt;}
.x8b_c01432{left:512.253333pt;}
.x3b_c01432{left:513.786667pt;}
.x4e_c01432{left:515.333333pt;}
.x78_c01432{left:519.933333pt;}
.x45_c01432{left:522.240000pt;}
.x11_c01432{left:526.080000pt;}
.x69_c01432{left:527.613333pt;}
.x62_c01432{left:529.920000pt;}
.x20_c01432{left:534.533333pt;}
.x8c_c01432{left:537.600000pt;}
.x4f_c01432{left:541.440000pt;}
.x3c_c01432{left:546.813333pt;}
.x12_c01432{left:549.120000pt;}
.x79_c01432{left:555.266667pt;}
.x73_c01432{left:556.800000pt;}
.x3d_c01432{left:561.413333pt;}
.x91_c01432{left:566.786667pt;}
.x5c_c01432{left:569.093333pt;}
.x63_c01432{left:572.160000pt;}
.x50_c01432{left:576.000000pt;}
.x88_c01432{left:577.533333pt;}
.x2c_c01432{left:579.066667pt;}
.x46_c01432{left:580.613333pt;}
.x2d_c01432{left:588.293333pt;}
.x5d_c01432{left:590.586667pt;}
.x81_c01432{left:592.893333pt;}
.x5f_c01432{left:603.653333pt;}
.x6a_c01432{left:605.186667pt;}
.x2e_c01432{left:609.786667pt;}
.x8d_c01432{left:613.626667pt;}
.x74_c01432{left:615.933333pt;}
.x51_c01432{left:619.773333pt;}
.x21_c01432{left:622.080000pt;}
.x8_c01432{left:623.613333pt;}
.x92_c01432{left:625.920000pt;}
.x64_c01432{left:627.453333pt;}
.x47_c01432{left:628.986667pt;}
.x7a_c01432{left:632.066667pt;}
.x2f_c01432{left:637.440000pt;}
.x3e_c01432{left:639.746667pt;}
.x9_c01432{left:641.280000pt;}
.xac_c01432{left:642.813333pt;}
.x22_c01432{left:645.120000pt;}
.x82_c01432{left:646.653333pt;}
.x48_c01432{left:655.106667pt;}
.x5e_c01432{left:658.173333pt;}
.x52_c01432{left:665.093333pt;}
.x7b_c01432{left:671.226667pt;}
.x23_c01432{left:675.066667pt;}
.x24_c01432{left:679.680000pt;}
.x30_c01432{left:683.520000pt;}
.x6b_c01432{left:686.586667pt;}
.x65_c01432{left:691.200000pt;}
.x83_c01432{left:698.106667pt;}
.x66_c01432{left:699.653333pt;}
.x17_c01432{left:702.720000pt;}
.x25_c01432{left:707.333333pt;}
.x26_c01432{left:714.240000pt;}
.x67_c01432{left:718.853333pt;}
.x3f_c01432{left:721.920000pt;}
.x75_c01432{left:723.453333pt;}
.x6c_c01432{left:727.293333pt;}
.xad_c01432{left:729.600000pt;}
.x27_c01432{left:731.133333pt;}
.x31_c01432{left:741.893333pt;}
.x49_c01432{left:747.266667pt;}
.x40_c01432{left:781.826667pt;}
.x32_c01432{left:784.893333pt;}
.xae_c01432{left:793.346667pt;}
.x4_c01432{left:800.253333pt;}
.xaf_c01432{left:808.706667pt;}
.xb1_c01432{left:811.013333pt;}
.xb3_c01432{left:814.080000pt;}
.x5_c01432{left:816.386667pt;}
.xb4_c01432{left:823.293333pt;}
.xb0_c01432{left:824.826667pt;}
.xb2_c01432{left:827.133333pt;}
.x6_c01432{left:830.973333pt;}
.x1_c01432{left:837.120000pt;}
.x7_c01432{left:921.600000pt;}
.x2_c01432{left:926.213333pt;}
.x3_c01432{left:936.186667pt;}
.xb5_c01432{left:946.173333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01433;src:url('chunks/assets/font_b122aa611445dc7e78468aa6.woff2')format("woff");}.ff1_c01433{font-family:ff1_c01433;line-height:1.109863;font-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_c01433{transform:matrix(0.037050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.037050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.037050,0.000000,0.000000,0.250000,0,0);}
.m8_c01433{transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.047500,0.000000,0.000000,0.250000,0,0);}
.m7_c01433{transform:matrix(0.058200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.058200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.058200,0.000000,0.000000,0.250000,0,0);}
.m13_c01433{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);}
.m1f_c01433{transform:matrix(0.097125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.097125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.097125,0.000000,0.000000,0.250000,0,0);}
.m1_c01433{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c01433{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m10_c01433{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.mb_c01433{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.ma_c01433{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);}
.m1d_c01433{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);}
.m14_c01433{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);}
.m0_c01433{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m5_c01433{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m22_c01433{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);}
.m6_c01433{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m16_c01433{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);}
.m17_c01433{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);}
.mf_c01433{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m21_c01433{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);}
.m20_c01433{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);}
.m1c_c01433{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m11_c01433{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c01433{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.me_c01433{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m15_c01433{transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.492500,0.000000,0.000000,0.250000,0,0);}
.m18_c01433{transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.505000,0.000000,0.000000,0.250000,0,0);}
.m9_c01433{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m4_c01433{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);}
.m1a_c01433{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m12_c01433{transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.677500,0.000000,0.000000,0.250000,0,0);}
.m3_c01433{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01433{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01433{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m19_c01433{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.v0_c01433{vertical-align:0.000000px;}
.ls0_c01433{letter-spacing:0.000000px;}
.sc__c01433{text-shadow:none;}
.sc0_c01433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01433{-webkit-text-stroke:0px transparent;}
.sc0_c01433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01433{word-spacing:0.000000px;}
.fc0_c01433{color:transparent;}
.fs1_c01433{font-size:3.456000px;}
.fse_c01433{font-size:6.900000px;}
.fs7_c01433{font-size:10.380000px;}
.fs3_c01433{font-size:13.800000px;}
.fs2_c01433{font-size:17.280000px;}
.fsa_c01433{font-size:20.760000px;}
.fs6_c01433{font-size:24.180000px;}
.fs0_c01433{font-size:27.660000px;}
.fsd_c01433{font-size:31.080000px;}
.fs8_c01433{font-size:34.560000px;}
.fsc_c01433{font-size:38.040000px;}
.fsf_c01433{font-size:41.460000px;}
.fsb_c01433{font-size:69.120000px;}
.fs10_c01433{font-size:89.880000px;}
.fs9_c01433{font-size:93.300000px;}
.fs5_c01433{font-size:131.340000px;}
.fs4_c01433{font-size:159.000000px;}
.y0_c01433{bottom:0.000000px;}
.y2a_c01433{bottom:573.690000px;}
.y27_c01433{bottom:591.840000px;}
.y29_c01433{bottom:604.800000px;}
.y28_c01433{bottom:608.250000px;}
.y26_c01433{bottom:618.630000px;}
.y23_c01433{bottom:625.530000px;}
.y25_c01433{bottom:628.125000px;}
.y24_c01433{bottom:628.995000px;}
.y22_c01433{bottom:648.000000px;}
.y21_c01433{bottom:673.920000px;}
.y1f_c01433{bottom:972.870000px;}
.y20_c01433{bottom:976.320000px;}
.y1e_c01433{bottom:995.325000px;}
.y1d_c01433{bottom:997.920000px;}
.y1c_c01433{bottom:1020.390000px;}
.y1b_c01433{bottom:1029.885000px;}
.y1a_c01433{bottom:1043.715000px;}
.y18_c01433{bottom:1067.910000px;}
.y19_c01433{bottom:1073.955000px;}
.y17_c01433{bottom:1126.650000px;}
.y16_c01433{bottom:1128.390000px;}
.y15_c01433{bottom:1129.245000px;}
.y14_c01433{bottom:1132.710000px;}
.y13_c01433{bottom:1137.030000px;}
.y12_c01433{bottom:1144.800000px;}
.y10_c01433{bottom:1168.995000px;}
.yf_c01433{bottom:1171.590000px;}
.y11_c01433{bottom:1172.445000px;}
.ye_c01433{bottom:1194.915000px;}
.yc_c01433{bottom:1207.005000px;}
.yd_c01433{bottom:1210.470000px;}
.yb_c01433{bottom:1211.325000px;}
.y9_c01433{bottom:1219.965000px;}
.ya_c01433{bottom:1221.690000px;}
.y7_c01433{bottom:1255.395000px;}
.y8_c01433{bottom:1257.120000px;}
.y5_c01433{bottom:1317.600000px;}
.y6_c01433{bottom:1321.920000px;}
.y4_c01433{bottom:1328.835000px;}
.y3_c01433{bottom:1375.485000px;}
.y1_c01433{bottom:1416.960000px;}
.y2_c01433{bottom:1418.685000px;}
.h3_c01433{height:3.110063px;}
.h10_c01433{height:6.209326px;}
.h9_c01433{height:9.340986px;}
.h5_c01433{height:12.418652px;}
.h4_c01433{height:15.550313px;}
.hc_c01433{height:18.681973px;}
.h8_c01433{height:21.759639px;}
.h2_c01433{height:24.891299px;}
.hf_c01433{height:27.968965px;}
.ha_c01433{height:31.100625px;}
.he_c01433{height:34.232285px;}
.h11_c01433{height:37.309951px;}
.hd_c01433{height:62.201250px;}
.h12_c01433{height:80.883223px;}
.hb_c01433{height:83.960889px;}
.h7_c01433{height:118.193174px;}
.h6_c01433{height:143.084473px;}
.h0_c01433{height:1517.190000px;}
.h1_c01433{height:1517.250000px;}
.w0_c01433{width:1060.995000px;}
.w1_c01433{width:1061.250000px;}
.x0_c01433{left:0.000000px;}
.x13_c01433{left:2.595000px;}
.x16_c01433{left:6.045000px;}
.x18_c01433{left:9.510000px;}
.x5_c01433{left:17.280000px;}
.x1a_c01433{left:28.515000px;}
.x9_c01433{left:33.690000px;}
.xa_c01433{left:37.155000px;}
.xc_c01433{left:38.880000px;}
.x3_c01433{left:46.650000px;}
.x6_c01433{left:53.565000px;}
.x1_c01433{left:55.290000px;}
.x2_c01433{left:64.800000px;}
.xb_c01433{left:71.715000px;}
.x12_c01433{left:82.950000px;}
.x14_c01433{left:108.870000px;}
.x7_c01433{left:110.595000px;}
.x8_c01433{left:114.045000px;}
.x15_c01433{left:118.365000px;}
.xe_c01433{left:127.875000px;}
.xd_c01433{left:129.600000px;}
.x4_c01433{left:164.160000px;}
.x1b_c01433{left:171.930000px;}
.xf_c01433{left:173.670000px;}
.x19_c01433{left:176.250000px;}
.x17_c01433{left:178.845000px;}
.x10_c01433{left:208.230000px;}
.x11_c01433{left:217.725000px;}
@media print{
.v0_c01433{vertical-align:0.000000pt;}
.ls0_c01433{letter-spacing:0.000000pt;}
.ws0_c01433{word-spacing:0.000000pt;}
.fs1_c01433{font-size:3.072000pt;}
.fse_c01433{font-size:6.133333pt;}
.fs7_c01433{font-size:9.226667pt;}
.fs3_c01433{font-size:12.266667pt;}
.fs2_c01433{font-size:15.360000pt;}
.fsa_c01433{font-size:18.453333pt;}
.fs6_c01433{font-size:21.493333pt;}
.fs0_c01433{font-size:24.586667pt;}
.fsd_c01433{font-size:27.626667pt;}
.fs8_c01433{font-size:30.720000pt;}
.fsc_c01433{font-size:33.813333pt;}
.fsf_c01433{font-size:36.853333pt;}
.fsb_c01433{font-size:61.440000pt;}
.fs10_c01433{font-size:79.893333pt;}
.fs9_c01433{font-size:82.933333pt;}
.fs5_c01433{font-size:116.746667pt;}
.fs4_c01433{font-size:141.333333pt;}
.y0_c01433{bottom:0.000000pt;}
.y2a_c01433{bottom:509.946667pt;}
.y27_c01433{bottom:526.080000pt;}
.y29_c01433{bottom:537.600000pt;}
.y28_c01433{bottom:540.666667pt;}
.y26_c01433{bottom:549.893333pt;}
.y23_c01433{bottom:556.026667pt;}
.y25_c01433{bottom:558.333333pt;}
.y24_c01433{bottom:559.106667pt;}
.y22_c01433{bottom:576.000000pt;}
.y21_c01433{bottom:599.040000pt;}
.y1f_c01433{bottom:864.773333pt;}
.y20_c01433{bottom:867.840000pt;}
.y1e_c01433{bottom:884.733333pt;}
.y1d_c01433{bottom:887.040000pt;}
.y1c_c01433{bottom:907.013333pt;}
.y1b_c01433{bottom:915.453333pt;}
.y1a_c01433{bottom:927.746667pt;}
.y18_c01433{bottom:949.253333pt;}
.y19_c01433{bottom:954.626667pt;}
.y17_c01433{bottom:1001.466667pt;}
.y16_c01433{bottom:1003.013333pt;}
.y15_c01433{bottom:1003.773333pt;}
.y14_c01433{bottom:1006.853333pt;}
.y13_c01433{bottom:1010.693333pt;}
.y12_c01433{bottom:1017.600000pt;}
.y10_c01433{bottom:1039.106667pt;}
.yf_c01433{bottom:1041.413333pt;}
.y11_c01433{bottom:1042.173333pt;}
.ye_c01433{bottom:1062.146667pt;}
.yc_c01433{bottom:1072.893333pt;}
.yd_c01433{bottom:1075.973333pt;}
.yb_c01433{bottom:1076.733333pt;}
.y9_c01433{bottom:1084.413333pt;}
.ya_c01433{bottom:1085.946667pt;}
.y7_c01433{bottom:1115.906667pt;}
.y8_c01433{bottom:1117.440000pt;}
.y5_c01433{bottom:1171.200000pt;}
.y6_c01433{bottom:1175.040000pt;}
.y4_c01433{bottom:1181.186667pt;}
.y3_c01433{bottom:1222.653333pt;}
.y1_c01433{bottom:1259.520000pt;}
.y2_c01433{bottom:1261.053333pt;}
.h3_c01433{height:2.764500pt;}
.h10_c01433{height:5.519401pt;}
.h9_c01433{height:8.303099pt;}
.h5_c01433{height:11.038802pt;}
.h4_c01433{height:13.822500pt;}
.hc_c01433{height:16.606198pt;}
.h8_c01433{height:19.341901pt;}
.h2_c01433{height:22.125599pt;}
.hf_c01433{height:24.861302pt;}
.ha_c01433{height:27.645000pt;}
.he_c01433{height:30.428698pt;}
.h11_c01433{height:33.164401pt;}
.hd_c01433{height:55.290000pt;}
.h12_c01433{height:71.896198pt;}
.hb_c01433{height:74.631901pt;}
.h7_c01433{height:105.060599pt;}
.h6_c01433{height:127.186198pt;}
.h0_c01433{height:1348.613333pt;}
.h1_c01433{height:1348.666667pt;}
.w0_c01433{width:943.106667pt;}
.w1_c01433{width:943.333333pt;}
.x0_c01433{left:0.000000pt;}
.x13_c01433{left:2.306667pt;}
.x16_c01433{left:5.373333pt;}
.x18_c01433{left:8.453333pt;}
.x5_c01433{left:15.360000pt;}
.x1a_c01433{left:25.346667pt;}
.x9_c01433{left:29.946667pt;}
.xa_c01433{left:33.026667pt;}
.xc_c01433{left:34.560000pt;}
.x3_c01433{left:41.466667pt;}
.x6_c01433{left:47.613333pt;}
.x1_c01433{left:49.146667pt;}
.x2_c01433{left:57.600000pt;}
.xb_c01433{left:63.746667pt;}
.x12_c01433{left:73.733333pt;}
.x14_c01433{left:96.773333pt;}
.x7_c01433{left:98.306667pt;}
.x8_c01433{left:101.373333pt;}
.x15_c01433{left:105.213333pt;}
.xe_c01433{left:113.666667pt;}
.xd_c01433{left:115.200000pt;}
.x4_c01433{left:145.920000pt;}
.x1b_c01433{left:152.826667pt;}
.xf_c01433{left:154.373333pt;}
.x19_c01433{left:156.666667pt;}
.x17_c01433{left:158.973333pt;}
.x10_c01433{left:185.093333pt;}
.x11_c01433{left:193.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_43f1a2e2e7e8c4280d36c84e.woff2')format("woff");}.ff1_c01434{font-family:ff1_c01434;line-height:1.109863;font-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_c01434{transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.060175,0.000000,0.000000,0.250000,0,0);}
.m3_c01434{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m2_c01434{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m4_c01434{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);}
.m0_c01434{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);}
.m1_c01434{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,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;}
.fc0_c01434{color:transparent;}
.fs2_c01434{font-size:24.180000px;}
.fs4_c01434{font-size:31.080000px;}
.fs3_c01434{font-size:34.560000px;}
.fs0_c01434{font-size:38.040000px;}
.fs5_c01434{font-size:51.840000px;}
.fs1_c01434{font-size:58.740000px;}
.y0_c01434{bottom:0.000000px;}
.y6_c01434{bottom:1266.630000px;}
.y5_c01434{bottom:1268.355000px;}
.y4_c01434{bottom:1378.080000px;}
.y3_c01434{bottom:1387.590000px;}
.y2_c01434{bottom:1415.235000px;}
.y1_c01434{bottom:1438.560000px;}
.h4_c01434{height:21.759639px;}
.h6_c01434{height:27.968965px;}
.h5_c01434{height:31.100625px;}
.h2_c01434{height:34.232285px;}
.h7_c01434{height:46.650937px;}
.h3_c01434{height:52.860264px;}
.h0_c01434{height:1521.510000px;}
.h1_c01434{height:1521.750000px;}
.w0_c01434{width:1090.365000px;}
.w1_c01434{width:1090.500000px;}
.x0_c01434{left:0.000000px;}
.x2_c01434{left:546.915000px;}
.x1_c01434{left:565.050000px;}
.x5_c01434{left:960.765000px;}
.x6_c01434{left:976.320000px;}
.x4_c01434{left:1067.910000px;}
.x3_c01434{left:1073.085000px;}
@media print{
.v0_c01434{vertical-align:0.000000pt;}
.ls0_c01434{letter-spacing:0.000000pt;}
.ws0_c01434{word-spacing:0.000000pt;}
.fs2_c01434{font-size:21.493333pt;}
.fs4_c01434{font-size:27.626667pt;}
.fs3_c01434{font-size:30.720000pt;}
.fs0_c01434{font-size:33.813333pt;}
.fs5_c01434{font-size:46.080000pt;}
.fs1_c01434{font-size:52.213333pt;}
.y0_c01434{bottom:0.000000pt;}
.y6_c01434{bottom:1125.893333pt;}
.y5_c01434{bottom:1127.426667pt;}
.y4_c01434{bottom:1224.960000pt;}
.y3_c01434{bottom:1233.413333pt;}
.y2_c01434{bottom:1257.986667pt;}
.y1_c01434{bottom:1278.720000pt;}
.h4_c01434{height:19.341901pt;}
.h6_c01434{height:24.861302pt;}
.h5_c01434{height:27.645000pt;}
.h2_c01434{height:30.428698pt;}
.h7_c01434{height:41.467500pt;}
.h3_c01434{height:46.986901pt;}
.h0_c01434{height:1352.453333pt;}
.h1_c01434{height:1352.666667pt;}
.w0_c01434{width:969.213333pt;}
.w1_c01434{width:969.333333pt;}
.x0_c01434{left:0.000000pt;}
.x2_c01434{left:486.146667pt;}
.x1_c01434{left:502.266667pt;}
.x5_c01434{left:854.013333pt;}
.x6_c01434{left:867.840000pt;}
.x4_c01434{left:949.253333pt;}
.x3_c01434{left:953.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_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;}
@font-face{font-family:ff1_c01435;src:url('chunks/assets/font_7a89cb9e474f9f082b311e8a.woff2')format("woff");}.ff1_c01435{font-family:ff1_c01435;line-height:1.109863;font-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_c01435{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m6_c01435{transform:matrix(0.024625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.024625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.024625,0.000000,0.000000,0.250000,0,0);}
.m5_c01435{transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111125,0.000000,0.000000,0.250000,0,0);}
.m7_c01435{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01435{transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200575,0.000000,0.000000,0.250000,0,0);}
.m8_c01435{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c01435{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01435{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m0_c01435{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.v0_c01435{vertical-align:0.000000px;}
.ls0_c01435{letter-spacing:0.000000px;}
.sc__c01435{text-shadow:none;}
.sc0_c01435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01435{-webkit-text-stroke:0px transparent;}
.sc0_c01435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01435{word-spacing:0.000000px;}
.fc0_c01435{color:transparent;}
.fs4_c01435{font-size:6.000000px;}
.fs6_c01435{font-size:10.380000px;}
.fs1_c01435{font-size:17.280000px;}
.fs0_c01435{font-size:20.760000px;}
.fs2_c01435{font-size:24.180000px;}
.fs7_c01435{font-size:27.660000px;}
.fs3_c01435{font-size:31.080000px;}
.fs5_c01435{font-size:190.080000px;}
.y0_c01435{bottom:0.000000px;}
.y6_c01435{bottom:1317.600000px;}
.y5_c01435{bottom:1333.155000px;}
.y4_c01435{bottom:1334.880000px;}
.y9_c01435{bottom:1345.245000px;}
.y8_c01435{bottom:1358.205000px;}
.y7_c01435{bottom:1362.525000px;}
.y3_c01435{bottom:1374.630000px;}
.y2_c01435{bottom:1384.125000px;}
.y1_c01435{bottom:1410.045000px;}
.h6_c01435{height:5.399414px;}
.h8_c01435{height:9.340986px;}
.h3_c01435{height:15.550313px;}
.h2_c01435{height:18.681973px;}
.h4_c01435{height:21.759639px;}
.h9_c01435{height:24.891299px;}
.h5_c01435{height:27.968965px;}
.h7_c01435{height:171.053437px;}
.h0_c01435{height:1517.190000px;}
.h1_c01435{height:1517.250000px;}
.w0_c01435{width:1060.995000px;}
.w1_c01435{width:1061.250000px;}
.x0_c01435{left:0.000000px;}
.x1_c01435{left:30.240000px;}
.x2_c01435{left:40.605000px;}
.x5_c01435{left:42.330000px;}
.x6_c01435{left:50.970000px;}
.x7_c01435{left:113.190000px;}
.x8_c01435{left:121.830000px;}
.x9_c01435{left:131.325000px;}
.xa_c01435{left:151.200000px;}
.x4_c01435{left:204.765000px;}
.x3_c01435{left:209.955000px;}
@media print{
.v0_c01435{vertical-align:0.000000pt;}
.ls0_c01435{letter-spacing:0.000000pt;}
.ws0_c01435{word-spacing:0.000000pt;}
.fs4_c01435{font-size:5.333333pt;}
.fs6_c01435{font-size:9.226667pt;}
.fs1_c01435{font-size:15.360000pt;}
.fs0_c01435{font-size:18.453333pt;}
.fs2_c01435{font-size:21.493333pt;}
.fs7_c01435{font-size:24.586667pt;}
.fs3_c01435{font-size:27.626667pt;}
.fs5_c01435{font-size:168.960000pt;}
.y0_c01435{bottom:0.000000pt;}
.y6_c01435{bottom:1171.200000pt;}
.y5_c01435{bottom:1185.026667pt;}
.y4_c01435{bottom:1186.560000pt;}
.y9_c01435{bottom:1195.773333pt;}
.y8_c01435{bottom:1207.293333pt;}
.y7_c01435{bottom:1211.133333pt;}
.y3_c01435{bottom:1221.893333pt;}
.y2_c01435{bottom:1230.333333pt;}
.y1_c01435{bottom:1253.373333pt;}
.h6_c01435{height:4.799479pt;}
.h8_c01435{height:8.303099pt;}
.h3_c01435{height:13.822500pt;}
.h2_c01435{height:16.606198pt;}
.h4_c01435{height:19.341901pt;}
.h9_c01435{height:22.125599pt;}
.h5_c01435{height:24.861302pt;}
.h7_c01435{height:152.047500pt;}
.h0_c01435{height:1348.613333pt;}
.h1_c01435{height:1348.666667pt;}
.w0_c01435{width:943.106667pt;}
.w1_c01435{width:943.333333pt;}
.x0_c01435{left:0.000000pt;}
.x1_c01435{left:26.880000pt;}
.x2_c01435{left:36.093333pt;}
.x5_c01435{left:37.626667pt;}
.x6_c01435{left:45.306667pt;}
.x7_c01435{left:100.613333pt;}
.x8_c01435{left:108.293333pt;}
.x9_c01435{left:116.733333pt;}
.xa_c01435{left:134.400000pt;}
.x4_c01435{left:182.013333pt;}
.x3_c01435{left:186.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_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_c24ea7b1f5b59b3cc12491c6.woff2')format("woff");}.ff1_c01436{font-family:ff1_c01436;line-height:1.109863;font-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_c01436{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);}
.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;}
.fs0_c01436{font-size:600.000000px;}
.y0_c01436{bottom:0.000000px;}
.y1_c01436{bottom:15.000000px;}
.h2_c01436{height:539.941406px;}
.h0_c01436{height:1521.510000px;}
.h1_c01436{height:1521.750000px;}
.w0_c01436{width:1090.365000px;}
.w1_c01436{width:1090.500000px;}
.x0_c01436{left:0.000000px;}
.x1_c01436{left:15.000000px;}
@media print{
.v0_c01436{vertical-align:0.000000pt;}
.ls0_c01436{letter-spacing:0.000000pt;}
.ws0_c01436{word-spacing:0.000000pt;}
.fs0_c01436{font-size:533.333333pt;}
.y0_c01436{bottom:0.000000pt;}
.y1_c01436{bottom:13.333333pt;}
.h2_c01436{height:479.947917pt;}
.h0_c01436{height:1352.453333pt;}
.h1_c01436{height:1352.666667pt;}
.w0_c01436{width:969.213333pt;}
.w1_c01436{width:969.333333pt;}
.x0_c01436{left:0.000000pt;}
.x1_c01436{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01437;src:url('chunks/assets/font_c6ba06d04bb9ff3a66bd361e.woff2')format("woff");}.ff1_c01437{font-family:ff1_c01437;line-height:1.109863;font-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_c01437{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);}
.v0_c01437{vertical-align:0.000000px;}
.ls0_c01437{letter-spacing:0.000000px;}
.sc__c01437{text-shadow:none;}
.sc0_c01437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01437{-webkit-text-stroke:0px transparent;}
.sc0_c01437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01437{word-spacing:0.000000px;}
.fc0_c01437{color:transparent;}
.fs0_c01437{font-size:600.000000px;}
.y0_c01437{bottom:0.000000px;}
.y1_c01437{bottom:15.000000px;}
.h2_c01437{height:539.941406px;}
.h0_c01437{height:1517.190000px;}
.h1_c01437{height:1517.250000px;}
.w0_c01437{width:1060.995000px;}
.w1_c01437{width:1061.250000px;}
.x0_c01437{left:0.000000px;}
.x1_c01437{left:15.000000px;}
@media print{
.v0_c01437{vertical-align:0.000000pt;}
.ls0_c01437{letter-spacing:0.000000pt;}
.ws0_c01437{word-spacing:0.000000pt;}
.fs0_c01437{font-size:533.333333pt;}
.y0_c01437{bottom:0.000000pt;}
.y1_c01437{bottom:13.333333pt;}
.h2_c01437{height:479.947917pt;}
.h0_c01437{height:1348.613333pt;}
.h1_c01437{height:1348.666667pt;}
.w0_c01437{width:943.106667pt;}
.w1_c01437{width:943.333333pt;}
.x0_c01437{left:0.000000pt;}
.x1_c01437{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c810dbb1093a89b73c321221.woff2')format("woff");}.ff1_c01438{font-family:ff1_c01438;line-height:1.109863;font-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_c01438{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);}
.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;}
.fc0_c01438{color:transparent;}
.fs0_c01438{font-size:600.000000px;}
.y0_c01438{bottom:0.000000px;}
.y1_c01438{bottom:15.000000px;}
.h2_c01438{height:539.941406px;}
.h0_c01438{height:1521.510000px;}
.h1_c01438{height:1521.750000px;}
.w0_c01438{width:1090.365000px;}
.w1_c01438{width:1090.500000px;}
.x0_c01438{left:0.000000px;}
.x1_c01438{left:15.000000px;}
@media print{
.v0_c01438{vertical-align:0.000000pt;}
.ls0_c01438{letter-spacing:0.000000pt;}
.ws0_c01438{word-spacing:0.000000pt;}
.fs0_c01438{font-size:533.333333pt;}
.y0_c01438{bottom:0.000000pt;}
.y1_c01438{bottom:13.333333pt;}
.h2_c01438{height:479.947917pt;}
.h0_c01438{height:1352.453333pt;}
.h1_c01438{height:1352.666667pt;}
.w0_c01438{width:969.213333pt;}
.w1_c01438{width:969.333333pt;}
.x0_c01438{left:0.000000pt;}
.x1_c01438{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01439;src:url('chunks/assets/font_7987794bc1de2942c0c00539.woff2')format("woff");}.ff1_c01439{font-family:ff1_c01439;line-height:1.109863;font-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_c01439{transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.117450,0.000000,0.000000,0.250000,0,0);}
.m44_c01439{transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.139750,0.000000,0.000000,0.250000,0,0);}
.m1d_c01439{transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141125,0.000000,0.000000,0.250000,0,0);}
.m20_c01439{transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141500,0.000000,0.000000,0.250000,0,0);}
.m16_c01439{transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142700,0.000000,0.000000,0.250000,0,0);}
.m0_c01439{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3a_c01439{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);}
.m15_c01439{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);}
.m24_c01439{transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151175,0.000000,0.000000,0.250000,0,0);}
.m2e_c01439{transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151975,0.000000,0.000000,0.250000,0,0);}
.m4a_c01439{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.m2a_c01439{transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158750,0.000000,0.000000,0.250000,0,0);}
.md_c01439{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);}
.m27_c01439{transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170425,0.000000,0.000000,0.250000,0,0);}
.m47_c01439{transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170875,0.000000,0.000000,0.250000,0,0);}
.m12_c01439{transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175625,0.000000,0.000000,0.250000,0,0);}
.m17_c01439{transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176625,0.000000,0.000000,0.250000,0,0);}
.m14_c01439{transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176750,0.000000,0.000000,0.250000,0,0);}
.m3d_c01439{transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180375,0.000000,0.000000,0.250000,0,0);}
.m2b_c01439{transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181550,0.000000,0.000000,0.250000,0,0);}
.m3e_c01439{transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181775,0.000000,0.000000,0.250000,0,0);}
.m3f_c01439{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);}
.mf_c01439{transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185175,0.000000,0.000000,0.250000,0,0);}
.m46_c01439{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);}
.m36_c01439{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);}
.m25_c01439{transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192000,0.000000,0.000000,0.250000,0,0);}
.m30_c01439{transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194850,0.000000,0.000000,0.250000,0,0);}
.m34_c01439{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);}
.m39_c01439{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);}
.m21_c01439{transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.196150,0.000000,0.000000,0.250000,0,0);}
.m28_c01439{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);}
.m49_c01439{transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197500,0.000000,0.000000,0.250000,0,0);}
.m33_c01439{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);}
.m4b_c01439{transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204575,0.000000,0.000000,0.250000,0,0);}
.m3b_c01439{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);}
.m42_c01439{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);}
.m35_c01439{transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216425,0.000000,0.000000,0.250000,0,0);}
.m19_c01439{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);}
.m1b_c01439{transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223650,0.000000,0.000000,0.250000,0,0);}
.m1e_c01439{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m18_c01439{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);}
.m43_c01439{transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229675,0.000000,0.000000,0.250000,0,0);}
.m10_c01439{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);}
.m1c_c01439{transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240050,0.000000,0.000000,0.250000,0,0);}
.m2_c01439{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m11_c01439{transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247975,0.000000,0.000000,0.250000,0,0);}
.m2d_c01439{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);}
.m4_c01439{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);}
.m40_c01439{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2f_c01439{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);}
.m3c_c01439{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);}
.m29_c01439{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);}
.m13_c01439{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m8_c01439{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);}
.m22_c01439{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);}
.m1f_c01439{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m23_c01439{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);}
.mc_c01439{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m31_c01439{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m6_c01439{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m5_c01439{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.m9_c01439{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m38_c01439{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);}
.m2c_c01439{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);}
.m32_c01439{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m1a_c01439{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me_c01439{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m7_c01439{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);}
.ma_c01439{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m41_c01439{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m26_c01439{transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.482500,0.000000,0.000000,0.250000,0,0);}
.m45_c01439{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m37_c01439{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.mb_c01439{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m3_c01439{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m48_c01439{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.v0_c01439{vertical-align:0.000000px;}
.ls0_c01439{letter-spacing:0.000000px;}
.sc__c01439{text-shadow:none;}
.sc0_c01439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01439{-webkit-text-stroke:0px transparent;}
.sc0_c01439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01439{word-spacing:0.000000px;}
.fc0_c01439{color:transparent;}
.fs10_c01439{font-size:3.456000px;}
.fsd_c01439{font-size:6.000000px;}
.fs11_c01439{font-size:6.900000px;}
.fs0_c01439{font-size:10.380000px;}
.fs8_c01439{font-size:17.280000px;}
.fs12_c01439{font-size:20.760000px;}
.fs17_c01439{font-size:24.180000px;}
.fs7_c01439{font-size:27.660000px;}
.fsb_c01439{font-size:31.080000px;}
.fs1_c01439{font-size:34.560000px;}
.fs2_c01439{font-size:38.040000px;}
.fs9_c01439{font-size:41.460000px;}
.fs4_c01439{font-size:44.940000px;}
.fs13_c01439{font-size:48.360000px;}
.fs14_c01439{font-size:51.840000px;}
.fs3_c01439{font-size:55.320000px;}
.fs5_c01439{font-size:58.740000px;}
.fs16_c01439{font-size:62.220000px;}
.fs15_c01439{font-size:69.120000px;}
.fs6_c01439{font-size:72.600000px;}
.fsf_c01439{font-size:76.020000px;}
.fsa_c01439{font-size:79.500000px;}
.fse_c01439{font-size:82.920000px;}
.fsc_c01439{font-size:86.400000px;}
.y0_c01439{bottom:0.000000px;}
.y43_c01439{bottom:901.155000px;}
.y42_c01439{bottom:902.010000px;}
.y41_c01439{bottom:902.880000px;}
.y3f_c01439{bottom:904.605000px;}
.y40_c01439{bottom:905.475000px;}
.y3e_c01439{bottom:907.200000px;}
.y3d_c01439{bottom:922.755000px;}
.y3b_c01439{bottom:923.610000px;}
.y3a_c01439{bottom:925.350000px;}
.y3c_c01439{bottom:928.800000px;}
.y39_c01439{bottom:932.250000px;}
.y37_c01439{bottom:941.760000px;}
.y36_c01439{bottom:942.630000px;}
.y35_c01439{bottom:945.210000px;}
.y34_c01439{bottom:946.080000px;}
.y33_c01439{bottom:946.950000px;}
.y38_c01439{bottom:948.675000px;}
.y32_c01439{bottom:963.360000px;}
.y31_c01439{bottom:964.230000px;}
.y2f_c01439{bottom:965.085000px;}
.y2d_c01439{bottom:965.955000px;}
.y30_c01439{bottom:970.275000px;}
.y2e_c01439{bottom:971.130000px;}
.y2c_c01439{bottom:982.365000px;}
.y29_c01439{bottom:983.235000px;}
.y27_c01439{bottom:985.830000px;}
.y26_c01439{bottom:986.685000px;}
.y2b_c01439{bottom:987.555000px;}
.y2a_c01439{bottom:988.410000px;}
.y28_c01439{bottom:990.150000px;}
.y23_c01439{bottom:1003.110000px;}
.y20_c01439{bottom:1006.560000px;}
.y24_c01439{bottom:1009.155000px;}
.y22_c01439{bottom:1010.880000px;}
.y21_c01439{bottom:1011.750000px;}
.y25_c01439{bottom:1020.390000px;}
.y1f_c01439{bottom:1022.970000px;}
.y1d_c01439{bottom:1024.710000px;}
.y1a_c01439{bottom:1027.290000px;}
.y1c_c01439{bottom:1028.160000px;}
.y1e_c01439{bottom:1029.885000px;}
.y1b_c01439{bottom:1031.610000px;}
.y17_c01439{bottom:1043.715000px;}
.y15_c01439{bottom:1044.570000px;}
.y14_c01439{bottom:1045.440000px;}
.y13_c01439{bottom:1047.165000px;}
.y12_c01439{bottom:1048.035000px;}
.y16_c01439{bottom:1048.890000px;}
.y19_c01439{bottom:1061.850000px;}
.y18_c01439{bottom:1062.720000px;}
.y10_c01439{bottom:1063.590000px;}
.yd_c01439{bottom:1067.040000px;}
.yf_c01439{bottom:1070.490000px;}
.ye_c01439{bottom:1072.230000px;}
.yc_c01439{bottom:1073.955000px;}
.y11_c01439{bottom:1075.680000px;}
.ya_c01439{bottom:1082.595000px;}
.yb_c01439{bottom:1088.640000px;}
.y9_c01439{bottom:1090.365000px;}
.y8_c01439{bottom:1091.235000px;}
.y7_c01439{bottom:1092.090000px;}
.y6_c01439{bottom:1092.960000px;}
.y5_c01439{bottom:1094.685000px;}
.y4_c01439{bottom:1097.280000px;}
.y3_c01439{bottom:1179.360000px;}
.y2_c01439{bottom:1404.870000px;}
.y1_c01439{bottom:1406.595000px;}
.h12_c01439{height:3.110063px;}
.hf_c01439{height:5.399414px;}
.h13_c01439{height:6.209326px;}
.h2_c01439{height:9.340986px;}
.ha_c01439{height:15.550313px;}
.h14_c01439{height:18.681973px;}
.h19_c01439{height:21.759639px;}
.h9_c01439{height:24.891299px;}
.hd_c01439{height:27.968965px;}
.h3_c01439{height:31.100625px;}
.h4_c01439{height:34.232285px;}
.hb_c01439{height:37.309951px;}
.h6_c01439{height:40.441611px;}
.h15_c01439{height:43.519277px;}
.h16_c01439{height:46.650937px;}
.h5_c01439{height:49.782598px;}
.h7_c01439{height:52.860264px;}
.h18_c01439{height:55.991924px;}
.h17_c01439{height:62.201250px;}
.h8_c01439{height:65.332910px;}
.h11_c01439{height:68.410576px;}
.hc_c01439{height:71.542236px;}
.h10_c01439{height:74.619902px;}
.he_c01439{height:77.751563px;}
.h0_c01439{height:1517.190000px;}
.h1_c01439{height:1517.250000px;}
.w0_c01439{width:1060.995000px;}
.w1_c01439{width:1061.250000px;}
.x0_c01439{left:0.000000px;}
.x1_c01439{left:36.285000px;}
.x2_c01439{left:41.475000px;}
.x3_c01439{left:86.400000px;}
.x2a_c01439{left:584.070000px;}
.x2b_c01439{left:591.840000px;}
.x14_c01439{left:595.290000px;}
.xc_c01439{left:597.885000px;}
.x4_c01439{left:599.610000px;}
.x5_c01439{left:618.630000px;}
.xd_c01439{left:626.400000px;}
.x20_c01439{left:640.230000px;}
.x6_c01439{left:641.955000px;}
.x1a_c01439{left:643.680000px;}
.x34_c01439{left:645.405000px;}
.x3a_c01439{left:651.450000px;}
.x21_c01439{left:658.365000px;}
.xe_c01439{left:660.090000px;}
.x3b_c01439{left:661.830000px;}
.x2c_c01439{left:664.410000px;}
.x7_c01439{left:666.150000px;}
.x15_c01439{left:676.515000px;}
.x35_c01439{left:686.880000px;}
.xf_c01439{left:689.475000px;}
.x3c_c01439{left:691.200000px;}
.x25_c01439{left:693.795000px;}
.x8_c01439{left:699.840000px;}
.x22_c01439{left:701.565000px;}
.x1b_c01439{left:709.350000px;}
.x10_c01439{left:712.800000px;}
.x9_c01439{left:717.120000px;}
.x1c_c01439{left:721.440000px;}
.x2d_c01439{left:734.400000px;}
.x16_c01439{left:736.125000px;}
.x26_c01439{left:742.170000px;}
.x2e_c01439{left:749.085000px;}
.x36_c01439{left:752.550000px;}
.xa_c01439{left:755.130000px;}
.x30_c01439{left:757.725000px;}
.x1d_c01439{left:762.915000px;}
.xb_c01439{left:777.600000px;}
.x31_c01439{left:781.050000px;}
.x1e_c01439{left:782.790000px;}
.x27_c01439{left:785.370000px;}
.x37_c01439{left:794.880000px;}
.x1f_c01439{left:801.795000px;}
.x11_c01439{left:803.520000px;}
.x32_c01439{left:813.030000px;}
.x2f_c01439{left:818.205000px;}
.x17_c01439{left:819.930000px;}
.x38_c01439{left:829.440000px;}
.x28_c01439{left:842.400000px;}
.x18_c01439{left:848.445000px;}
.x39_c01439{left:855.360000px;}
.x12_c01439{left:860.550000px;}
.x23_c01439{left:873.510000px;}
.x33_c01439{left:876.090000px;}
.x24_c01439{left:881.280000px;}
.x19_c01439{left:888.195000px;}
.x29_c01439{left:890.790000px;}
.x13_c01439{left:899.430000px;}
@media print{
.v0_c01439{vertical-align:0.000000pt;}
.ls0_c01439{letter-spacing:0.000000pt;}
.ws0_c01439{word-spacing:0.000000pt;}
.fs10_c01439{font-size:3.072000pt;}
.fsd_c01439{font-size:5.333333pt;}
.fs11_c01439{font-size:6.133333pt;}
.fs0_c01439{font-size:9.226667pt;}
.fs8_c01439{font-size:15.360000pt;}
.fs12_c01439{font-size:18.453333pt;}
.fs17_c01439{font-size:21.493333pt;}
.fs7_c01439{font-size:24.586667pt;}
.fsb_c01439{font-size:27.626667pt;}
.fs1_c01439{font-size:30.720000pt;}
.fs2_c01439{font-size:33.813333pt;}
.fs9_c01439{font-size:36.853333pt;}
.fs4_c01439{font-size:39.946667pt;}
.fs13_c01439{font-size:42.986667pt;}
.fs14_c01439{font-size:46.080000pt;}
.fs3_c01439{font-size:49.173333pt;}
.fs5_c01439{font-size:52.213333pt;}
.fs16_c01439{font-size:55.306667pt;}
.fs15_c01439{font-size:61.440000pt;}
.fs6_c01439{font-size:64.533333pt;}
.fsf_c01439{font-size:67.573333pt;}
.fsa_c01439{font-size:70.666667pt;}
.fse_c01439{font-size:73.706667pt;}
.fsc_c01439{font-size:76.800000pt;}
.y0_c01439{bottom:0.000000pt;}
.y43_c01439{bottom:801.026667pt;}
.y42_c01439{bottom:801.786667pt;}
.y41_c01439{bottom:802.560000pt;}
.y3f_c01439{bottom:804.093333pt;}
.y40_c01439{bottom:804.866667pt;}
.y3e_c01439{bottom:806.400000pt;}
.y3d_c01439{bottom:820.226667pt;}
.y3b_c01439{bottom:820.986667pt;}
.y3a_c01439{bottom:822.533333pt;}
.y3c_c01439{bottom:825.600000pt;}
.y39_c01439{bottom:828.666667pt;}
.y37_c01439{bottom:837.120000pt;}
.y36_c01439{bottom:837.893333pt;}
.y35_c01439{bottom:840.186667pt;}
.y34_c01439{bottom:840.960000pt;}
.y33_c01439{bottom:841.733333pt;}
.y38_c01439{bottom:843.266667pt;}
.y32_c01439{bottom:856.320000pt;}
.y31_c01439{bottom:857.093333pt;}
.y2f_c01439{bottom:857.853333pt;}
.y2d_c01439{bottom:858.626667pt;}
.y30_c01439{bottom:862.466667pt;}
.y2e_c01439{bottom:863.226667pt;}
.y2c_c01439{bottom:873.213333pt;}
.y29_c01439{bottom:873.986667pt;}
.y27_c01439{bottom:876.293333pt;}
.y26_c01439{bottom:877.053333pt;}
.y2b_c01439{bottom:877.826667pt;}
.y2a_c01439{bottom:878.586667pt;}
.y28_c01439{bottom:880.133333pt;}
.y23_c01439{bottom:891.653333pt;}
.y20_c01439{bottom:894.720000pt;}
.y24_c01439{bottom:897.026667pt;}
.y22_c01439{bottom:898.560000pt;}
.y21_c01439{bottom:899.333333pt;}
.y25_c01439{bottom:907.013333pt;}
.y1f_c01439{bottom:909.306667pt;}
.y1d_c01439{bottom:910.853333pt;}
.y1a_c01439{bottom:913.146667pt;}
.y1c_c01439{bottom:913.920000pt;}
.y1e_c01439{bottom:915.453333pt;}
.y1b_c01439{bottom:916.986667pt;}
.y17_c01439{bottom:927.746667pt;}
.y15_c01439{bottom:928.506667pt;}
.y14_c01439{bottom:929.280000pt;}
.y13_c01439{bottom:930.813333pt;}
.y12_c01439{bottom:931.586667pt;}
.y16_c01439{bottom:932.346667pt;}
.y19_c01439{bottom:943.866667pt;}
.y18_c01439{bottom:944.640000pt;}
.y10_c01439{bottom:945.413333pt;}
.yd_c01439{bottom:948.480000pt;}
.yf_c01439{bottom:951.546667pt;}
.ye_c01439{bottom:953.093333pt;}
.yc_c01439{bottom:954.626667pt;}
.y11_c01439{bottom:956.160000pt;}
.ya_c01439{bottom:962.306667pt;}
.yb_c01439{bottom:967.680000pt;}
.y9_c01439{bottom:969.213333pt;}
.y8_c01439{bottom:969.986667pt;}
.y7_c01439{bottom:970.746667pt;}
.y6_c01439{bottom:971.520000pt;}
.y5_c01439{bottom:973.053333pt;}
.y4_c01439{bottom:975.360000pt;}
.y3_c01439{bottom:1048.320000pt;}
.y2_c01439{bottom:1248.773333pt;}
.y1_c01439{bottom:1250.306667pt;}
.h12_c01439{height:2.764500pt;}
.hf_c01439{height:4.799479pt;}
.h13_c01439{height:5.519401pt;}
.h2_c01439{height:8.303099pt;}
.ha_c01439{height:13.822500pt;}
.h14_c01439{height:16.606198pt;}
.h19_c01439{height:19.341901pt;}
.h9_c01439{height:22.125599pt;}
.hd_c01439{height:24.861302pt;}
.h3_c01439{height:27.645000pt;}
.h4_c01439{height:30.428698pt;}
.hb_c01439{height:33.164401pt;}
.h6_c01439{height:35.948099pt;}
.h15_c01439{height:38.683802pt;}
.h16_c01439{height:41.467500pt;}
.h5_c01439{height:44.251198pt;}
.h7_c01439{height:46.986901pt;}
.h18_c01439{height:49.770599pt;}
.h17_c01439{height:55.290000pt;}
.h8_c01439{height:58.073698pt;}
.h11_c01439{height:60.809401pt;}
.hc_c01439{height:63.593099pt;}
.h10_c01439{height:66.328802pt;}
.he_c01439{height:69.112500pt;}
.h0_c01439{height:1348.613333pt;}
.h1_c01439{height:1348.666667pt;}
.w0_c01439{width:943.106667pt;}
.w1_c01439{width:943.333333pt;}
.x0_c01439{left:0.000000pt;}
.x1_c01439{left:32.253333pt;}
.x2_c01439{left:36.866667pt;}
.x3_c01439{left:76.800000pt;}
.x2a_c01439{left:519.173333pt;}
.x2b_c01439{left:526.080000pt;}
.x14_c01439{left:529.146667pt;}
.xc_c01439{left:531.453333pt;}
.x4_c01439{left:532.986667pt;}
.x5_c01439{left:549.893333pt;}
.xd_c01439{left:556.800000pt;}
.x20_c01439{left:569.093333pt;}
.x6_c01439{left:570.626667pt;}
.x1a_c01439{left:572.160000pt;}
.x34_c01439{left:573.693333pt;}
.x3a_c01439{left:579.066667pt;}
.x21_c01439{left:585.213333pt;}
.xe_c01439{left:586.746667pt;}
.x3b_c01439{left:588.293333pt;}
.x2c_c01439{left:590.586667pt;}
.x7_c01439{left:592.133333pt;}
.x15_c01439{left:601.346667pt;}
.x35_c01439{left:610.560000pt;}
.xf_c01439{left:612.866667pt;}
.x3c_c01439{left:614.400000pt;}
.x25_c01439{left:616.706667pt;}
.x8_c01439{left:622.080000pt;}
.x22_c01439{left:623.613333pt;}
.x1b_c01439{left:630.533333pt;}
.x10_c01439{left:633.600000pt;}
.x9_c01439{left:637.440000pt;}
.x1c_c01439{left:641.280000pt;}
.x2d_c01439{left:652.800000pt;}
.x16_c01439{left:654.333333pt;}
.x26_c01439{left:659.706667pt;}
.x2e_c01439{left:665.853333pt;}
.x36_c01439{left:668.933333pt;}
.xa_c01439{left:671.226667pt;}
.x30_c01439{left:673.533333pt;}
.x1d_c01439{left:678.146667pt;}
.xb_c01439{left:691.200000pt;}
.x31_c01439{left:694.266667pt;}
.x1e_c01439{left:695.813333pt;}
.x27_c01439{left:698.106667pt;}
.x37_c01439{left:706.560000pt;}
.x1f_c01439{left:712.706667pt;}
.x11_c01439{left:714.240000pt;}
.x32_c01439{left:722.693333pt;}
.x2f_c01439{left:727.293333pt;}
.x17_c01439{left:728.826667pt;}
.x38_c01439{left:737.280000pt;}
.x28_c01439{left:748.800000pt;}
.x18_c01439{left:754.173333pt;}
.x39_c01439{left:760.320000pt;}
.x12_c01439{left:764.933333pt;}
.x23_c01439{left:776.453333pt;}
.x33_c01439{left:778.746667pt;}
.x24_c01439{left:783.360000pt;}
.x19_c01439{left:789.506667pt;}
.x29_c01439{left:791.813333pt;}
.x13_c01439{left:799.493333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ff34cc483a05e7b54dddfd0.woff2')format("woff");}.ff1_c01440{font-family:ff1_c01440;line-height:1.109863;font-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_c01440{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c01440{transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.108975,0.000000,0.000000,0.250000,0,0);}
.m3_c01440{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01440{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01440{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);}
.m6_c01440{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);}
.m1_c01440{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);}
.m5_c01440{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m2_c01440{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m7_c01440{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.v1_c01440{vertical-align:-10.380000px;}
.v0_c01440{vertical-align:0.000000px;}
.ls1_c01440{letter-spacing:0.000000px;}
.ls0_c01440{letter-spacing:130.831152px;}
.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;}
.fc0_c01440{color:transparent;}
.fs0_c01440{font-size:3.456000px;}
.fs3_c01440{font-size:13.800000px;}
.fs7_c01440{font-size:17.280000px;}
.fs8_c01440{font-size:20.760000px;}
.fs5_c01440{font-size:24.180000px;}
.fs1_c01440{font-size:27.660000px;}
.fs6_c01440{font-size:31.080000px;}
.fs9_c01440{font-size:48.360000px;}
.fs2_c01440{font-size:79.500000px;}
.fs4_c01440{font-size:107.160000px;}
.y0_c01440{bottom:0.000000px;}
.yc_c01440{bottom:952.995000px;}
.yb_c01440{bottom:969.405000px;}
.yd_c01440{bottom:974.595000px;}
.y9_c01440{bottom:987.555000px;}
.ya_c01440{bottom:989.280000px;}
.y7_c01440{bottom:1112.835000px;}
.y8_c01440{bottom:1115.430000px;}
.y6_c01440{bottom:1126.650000px;}
.y5_c01440{bottom:1320.195000px;}
.y4_c01440{bottom:1355.610000px;}
.y3_c01440{bottom:1361.670000px;}
.y2_c01440{bottom:1384.125000px;}
.y1_c01440{bottom:1385.850000px;}
.h2_c01440{height:3.110063px;}
.hb_c01440{height:5.170312px;}
.h5_c01440{height:12.418652px;}
.h9_c01440{height:15.550313px;}
.ha_c01440{height:18.681973px;}
.h7_c01440{height:21.759639px;}
.h3_c01440{height:24.891299px;}
.h8_c01440{height:27.968965px;}
.hc_c01440{height:43.519277px;}
.h4_c01440{height:71.542236px;}
.h6_c01440{height:96.433535px;}
.h0_c01440{height:1521.510000px;}
.h1_c01440{height:1521.750000px;}
.w0_c01440{width:1090.365000px;}
.w1_c01440{width:1090.500000px;}
.x0_c01440{left:0.000000px;}
.x6_c01440{left:902.010000px;}
.x1_c01440{left:919.290000px;}
.x2_c01440{left:928.800000px;}
.x7_c01440{left:959.910000px;}
.x8_c01440{left:978.045360px;}
.x3_c01440{left:979.770000px;}
.x5_c01440{left:997.050000px;}
.x4_c01440{left:1016.070000px;}
.x9_c01440{left:1044.570000px;}
@media print{
.v1_c01440{vertical-align:-9.226667pt;}
.v0_c01440{vertical-align:0.000000pt;}
.ls1_c01440{letter-spacing:0.000000pt;}
.ls0_c01440{letter-spacing:116.294357pt;}
.ws0_c01440{word-spacing:0.000000pt;}
.fs0_c01440{font-size:3.072000pt;}
.fs3_c01440{font-size:12.266667pt;}
.fs7_c01440{font-size:15.360000pt;}
.fs8_c01440{font-size:18.453333pt;}
.fs5_c01440{font-size:21.493333pt;}
.fs1_c01440{font-size:24.586667pt;}
.fs6_c01440{font-size:27.626667pt;}
.fs9_c01440{font-size:42.986667pt;}
.fs2_c01440{font-size:70.666667pt;}
.fs4_c01440{font-size:95.253333pt;}
.y0_c01440{bottom:0.000000pt;}
.yc_c01440{bottom:847.106667pt;}
.yb_c01440{bottom:861.693333pt;}
.yd_c01440{bottom:866.306667pt;}
.y9_c01440{bottom:877.826667pt;}
.ya_c01440{bottom:879.360000pt;}
.y7_c01440{bottom:989.186667pt;}
.y8_c01440{bottom:991.493333pt;}
.y6_c01440{bottom:1001.466667pt;}
.y5_c01440{bottom:1173.506667pt;}
.y4_c01440{bottom:1204.986667pt;}
.y3_c01440{bottom:1210.373333pt;}
.y2_c01440{bottom:1230.333333pt;}
.y1_c01440{bottom:1231.866667pt;}
.h2_c01440{height:2.764500pt;}
.hb_c01440{height:4.595833pt;}
.h5_c01440{height:11.038802pt;}
.h9_c01440{height:13.822500pt;}
.ha_c01440{height:16.606198pt;}
.h7_c01440{height:19.341901pt;}
.h3_c01440{height:22.125599pt;}
.h8_c01440{height:24.861302pt;}
.hc_c01440{height:38.683802pt;}
.h4_c01440{height:63.593099pt;}
.h6_c01440{height:85.718698pt;}
.h0_c01440{height:1352.453333pt;}
.h1_c01440{height:1352.666667pt;}
.w0_c01440{width:969.213333pt;}
.w1_c01440{width:969.333333pt;}
.x0_c01440{left:0.000000pt;}
.x6_c01440{left:801.786667pt;}
.x1_c01440{left:817.146667pt;}
.x2_c01440{left:825.600000pt;}
.x7_c01440{left:853.253333pt;}
.x8_c01440{left:869.373653pt;}
.x3_c01440{left:870.906667pt;}
.x5_c01440{left:886.266667pt;}
.x4_c01440{left:903.173333pt;}
.x9_c01440{left:928.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_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;}
@font-face{font-family:ff1_c01441;src:url('chunks/assets/font_2e3bf999f9ff23dcd8d7ff41.woff2')format("woff");}.ff1_c01441{font-family:ff1_c01441;line-height:1.109863;font-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_c01441{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m29_c01441{transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042975,0.000000,0.000000,0.250000,0,0);}
.m4_c01441{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m2c_c01441{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m19_c01441{transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150300,0.000000,0.000000,0.250000,0,0);}
.m2a_c01441{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m6_c01441{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);}
.mc_c01441{transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);}
.m23_c01441{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);}
.m11_c01441{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);}
.m21_c01441{transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.191500,0.000000,0.000000,0.250000,0,0);}
.m12_c01441{transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198125,0.000000,0.000000,0.250000,0,0);}
.m2b_c01441{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);}
.ma_c01441{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);}
.m15_c01441{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);}
.m1b_c01441{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);}
.m26_c01441{transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238525,0.000000,0.000000,0.250000,0,0);}
.m28_c01441{transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238875,0.000000,0.000000,0.250000,0,0);}
.mf_c01441{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);}
.mb_c01441{transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241100,0.000000,0.000000,0.250000,0,0);}
.m22_c01441{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);}
.m17_c01441{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);}
.md_c01441{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);}
.m16_c01441{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);}
.m1d_c01441{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);}
.m10_c01441{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c01441{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01441{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);}
.m13_c01441{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01441{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);}
.m1_c01441{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m25_c01441{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);}
.m18_c01441{transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.317500,0.000000,0.000000,0.250000,0,0);}
.m5_c01441{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m3_c01441{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m24_c01441{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m7_c01441{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m9_c01441{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m0_c01441{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);}
.m1c_c01441{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01441{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.m8_c01441{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);}
.m2_c01441{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.me_c01441{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m20_c01441{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.v1_c01441{vertical-align:-6.900000px;}
.v0_c01441{vertical-align:0.000000px;}
.ls0_c01441{letter-spacing:0.000000px;}
.sc__c01441{text-shadow:none;}
.sc0_c01441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01441{-webkit-text-stroke:0px transparent;}
.sc0_c01441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01441{word-spacing:-11.622240px;}
.ws1_c01441{word-spacing:0.000000px;}
.fc0_c01441{color:transparent;}
.fs1_c01441{font-size:3.456000px;}
.fsd_c01441{font-size:10.380000px;}
.fs9_c01441{font-size:13.800000px;}
.fs1a_c01441{font-size:17.280000px;}
.fs13_c01441{font-size:20.760000px;}
.fs2_c01441{font-size:24.180000px;}
.fs0_c01441{font-size:27.660000px;}
.fs19_c01441{font-size:31.080000px;}
.fs6_c01441{font-size:34.560000px;}
.fs7_c01441{font-size:38.040000px;}
.fs11_c01441{font-size:41.460000px;}
.fs12_c01441{font-size:48.360000px;}
.fsf_c01441{font-size:51.840000px;}
.fsc_c01441{font-size:55.320000px;}
.fs10_c01441{font-size:58.740000px;}
.fs4_c01441{font-size:62.220000px;}
.fs5_c01441{font-size:65.640000px;}
.fsb_c01441{font-size:69.120000px;}
.fsa_c01441{font-size:72.600000px;}
.fs8_c01441{font-size:76.020000px;}
.fs3_c01441{font-size:82.920000px;}
.fs14_c01441{font-size:86.400000px;}
.fs15_c01441{font-size:89.880000px;}
.fse_c01441{font-size:100.200000px;}
.fs16_c01441{font-size:127.860000px;}
.fs18_c01441{font-size:145.140000px;}
.fs17_c01441{font-size:152.040000px;}
.y0_c01441{bottom:0.000000px;}
.y2a_c01441{bottom:991.005000px;}
.y29_c01441{bottom:992.730000px;}
.y28_c01441{bottom:1001.370000px;}
.y27_c01441{bottom:1039.395000px;}
.y26_c01441{bottom:1075.680000px;}
.y2c_c01441{bottom:1079.130000px;}
.y2b_c01441{bottom:1080.000000px;}
.y23_c01441{bottom:1123.200000px;}
.y25_c01441{bottom:1125.795000px;}
.y24_c01441{bottom:1127.520000px;}
.y22_c01441{bottom:1142.205000px;}
.y1f_c01441{bottom:1145.670000px;}
.y21_c01441{bottom:1147.395000px;}
.y20_c01441{bottom:1150.845000px;}
.y1e_c01441{bottom:1162.950000px;}
.y1a_c01441{bottom:1164.675000px;}
.y1d_c01441{bottom:1165.530000px;}
.y1c_c01441{bottom:1166.400000px;}
.y1b_c01441{bottom:1168.125000px;}
.y19_c01441{bottom:1170.720000px;}
.y18_c01441{bottom:1180.230000px;}
.y17_c01441{bottom:1185.405000px;}
.y14_c01441{bottom:1187.130000px;}
.y16_c01441{bottom:1188.870000px;}
.y15_c01441{bottom:1189.725000px;}
.y12_c01441{bottom:1201.830000px;}
.yf_c01441{bottom:1203.555000px;}
.y10_c01441{bottom:1204.410000px;}
.ye_c01441{bottom:1206.150000px;}
.y11_c01441{bottom:1207.005000px;}
.y13_c01441{bottom:1208.730000px;}
.yd_c01441{bottom:1209.600000px;}
.ya_c01441{bottom:1220.835000px;}
.y8_c01441{bottom:1223.430000px;}
.yb_c01441{bottom:1225.155000px;}
.y9_c01441{bottom:1226.880000px;}
.yc_c01441{bottom:1229.475000px;}
.y7_c01441{bottom:1230.330000px;}
.y6_c01441{bottom:1232.070000px;}
.y5_c01441{bottom:1232.925000px;}
.y4_c01441{bottom:1246.755000px;}
.y3_c01441{bottom:1251.075000px;}
.y1_c01441{bottom:1325.370000px;}
.y2_c01441{bottom:1380.675000px;}
.h3_c01441{height:3.110063px;}
.hf_c01441{height:9.340986px;}
.hb_c01441{height:12.418652px;}
.h1c_c01441{height:15.550313px;}
.h15_c01441{height:18.681973px;}
.h4_c01441{height:21.759639px;}
.h2_c01441{height:24.891299px;}
.h1b_c01441{height:27.968965px;}
.h8_c01441{height:31.100625px;}
.h9_c01441{height:34.232285px;}
.h13_c01441{height:37.309951px;}
.h14_c01441{height:43.519277px;}
.h11_c01441{height:46.650937px;}
.he_c01441{height:49.782598px;}
.h12_c01441{height:52.860264px;}
.h6_c01441{height:55.991924px;}
.h7_c01441{height:59.069590px;}
.hd_c01441{height:62.201250px;}
.hc_c01441{height:65.332910px;}
.ha_c01441{height:68.410576px;}
.h5_c01441{height:74.619902px;}
.h16_c01441{height:77.751563px;}
.h17_c01441{height:80.883223px;}
.h10_c01441{height:90.170215px;}
.h18_c01441{height:115.061514px;}
.h1a_c01441{height:130.611826px;}
.h19_c01441{height:136.821152px;}
.h0_c01441{height:1509.405000px;}
.h1_c01441{height:1509.750000px;}
.w0_c01441{width:1060.995000px;}
.w1_c01441{width:1061.250000px;}
.x0_c01441{left:0.000000px;}
.x2_c01441{left:56.160000px;}
.x1_c01441{left:60.480000px;}
.x3_c01441{left:65.670000px;}
.x29_c01441{left:111.450000px;}
.x28_c01441{left:114.045000px;}
.x27_c01441{left:116.640000px;}
.x2a_c01441{left:120.090000px;}
.x2b_c01441{left:147.750000px;}
.x2c_c01441{left:152.925000px;}
.x20_c01441{left:604.800000px;}
.x10_c01441{left:606.525000px;}
.x6_c01441{left:626.400000px;}
.x7_c01441{left:643.680000px;}
.x21_c01441{left:652.320000px;}
.x8_c01441{left:656.640000px;}
.x11_c01441{left:663.555000px;}
.x9_c01441{left:671.325000px;}
.x18_c01441{left:678.240000px;}
.xa_c01441{left:685.155000px;}
.x1c_c01441{left:692.925000px;}
.xb_c01441{left:705.030000px;}
.x22_c01441{left:723.165000px;}
.x12_c01441{left:728.355000px;}
.x23_c01441{left:732.675000px;}
.x13_c01441{left:738.720000px;}
.x24_c01441{left:753.405000px;}
.x19_c01441{left:760.320000px;}
.x5_c01441{left:763.770000px;}
.x14_c01441{left:765.510000px;}
.xc_c01441{left:770.685000px;}
.x1d_c01441{left:773.280000px;}
.x15_c01441{left:776.730000px;}
.x1a_c01441{left:791.430000px;}
.x4_c01441{left:794.880000px;}
.x25_c01441{left:797.475000px;}
.x1e_c01441{left:805.245000px;}
.xd_c01441{left:823.395000px;}
.x26_c01441{left:829.440000px;}
.x16_c01441{left:832.890000px;}
.xe_c01441{left:844.125000px;}
.x1b_c01441{left:876.090000px;}
.x1f_c01441{left:884.730000px;}
.xf_c01441{left:889.050000px;}
.x17_c01441{left:895.965000px;}
@media print{
.v1_c01441{vertical-align:-6.133333pt;}
.v0_c01441{vertical-align:0.000000pt;}
.ls0_c01441{letter-spacing:0.000000pt;}
.ws0_c01441{word-spacing:-10.330880pt;}
.ws1_c01441{word-spacing:0.000000pt;}
.fs1_c01441{font-size:3.072000pt;}
.fsd_c01441{font-size:9.226667pt;}
.fs9_c01441{font-size:12.266667pt;}
.fs1a_c01441{font-size:15.360000pt;}
.fs13_c01441{font-size:18.453333pt;}
.fs2_c01441{font-size:21.493333pt;}
.fs0_c01441{font-size:24.586667pt;}
.fs19_c01441{font-size:27.626667pt;}
.fs6_c01441{font-size:30.720000pt;}
.fs7_c01441{font-size:33.813333pt;}
.fs11_c01441{font-size:36.853333pt;}
.fs12_c01441{font-size:42.986667pt;}
.fsf_c01441{font-size:46.080000pt;}
.fsc_c01441{font-size:49.173333pt;}
.fs10_c01441{font-size:52.213333pt;}
.fs4_c01441{font-size:55.306667pt;}
.fs5_c01441{font-size:58.346667pt;}
.fsb_c01441{font-size:61.440000pt;}
.fsa_c01441{font-size:64.533333pt;}
.fs8_c01441{font-size:67.573333pt;}
.fs3_c01441{font-size:73.706667pt;}
.fs14_c01441{font-size:76.800000pt;}
.fs15_c01441{font-size:79.893333pt;}
.fse_c01441{font-size:89.066667pt;}
.fs16_c01441{font-size:113.653333pt;}
.fs18_c01441{font-size:129.013333pt;}
.fs17_c01441{font-size:135.146667pt;}
.y0_c01441{bottom:0.000000pt;}
.y2a_c01441{bottom:880.893333pt;}
.y29_c01441{bottom:882.426667pt;}
.y28_c01441{bottom:890.106667pt;}
.y27_c01441{bottom:923.906667pt;}
.y26_c01441{bottom:956.160000pt;}
.y2c_c01441{bottom:959.226667pt;}
.y2b_c01441{bottom:960.000000pt;}
.y23_c01441{bottom:998.400000pt;}
.y25_c01441{bottom:1000.706667pt;}
.y24_c01441{bottom:1002.240000pt;}
.y22_c01441{bottom:1015.293333pt;}
.y1f_c01441{bottom:1018.373333pt;}
.y21_c01441{bottom:1019.906667pt;}
.y20_c01441{bottom:1022.973333pt;}
.y1e_c01441{bottom:1033.733333pt;}
.y1a_c01441{bottom:1035.266667pt;}
.y1d_c01441{bottom:1036.026667pt;}
.y1c_c01441{bottom:1036.800000pt;}
.y1b_c01441{bottom:1038.333333pt;}
.y19_c01441{bottom:1040.640000pt;}
.y18_c01441{bottom:1049.093333pt;}
.y17_c01441{bottom:1053.693333pt;}
.y14_c01441{bottom:1055.226667pt;}
.y16_c01441{bottom:1056.773333pt;}
.y15_c01441{bottom:1057.533333pt;}
.y12_c01441{bottom:1068.293333pt;}
.yf_c01441{bottom:1069.826667pt;}
.y10_c01441{bottom:1070.586667pt;}
.ye_c01441{bottom:1072.133333pt;}
.y11_c01441{bottom:1072.893333pt;}
.y13_c01441{bottom:1074.426667pt;}
.yd_c01441{bottom:1075.200000pt;}
.ya_c01441{bottom:1085.186667pt;}
.y8_c01441{bottom:1087.493333pt;}
.yb_c01441{bottom:1089.026667pt;}
.y9_c01441{bottom:1090.560000pt;}
.yc_c01441{bottom:1092.866667pt;}
.y7_c01441{bottom:1093.626667pt;}
.y6_c01441{bottom:1095.173333pt;}
.y5_c01441{bottom:1095.933333pt;}
.y4_c01441{bottom:1108.226667pt;}
.y3_c01441{bottom:1112.066667pt;}
.y1_c01441{bottom:1178.106667pt;}
.y2_c01441{bottom:1227.266667pt;}
.h3_c01441{height:2.764500pt;}
.hf_c01441{height:8.303099pt;}
.hb_c01441{height:11.038802pt;}
.h1c_c01441{height:13.822500pt;}
.h15_c01441{height:16.606198pt;}
.h4_c01441{height:19.341901pt;}
.h2_c01441{height:22.125599pt;}
.h1b_c01441{height:24.861302pt;}
.h8_c01441{height:27.645000pt;}
.h9_c01441{height:30.428698pt;}
.h13_c01441{height:33.164401pt;}
.h14_c01441{height:38.683802pt;}
.h11_c01441{height:41.467500pt;}
.he_c01441{height:44.251198pt;}
.h12_c01441{height:46.986901pt;}
.h6_c01441{height:49.770599pt;}
.h7_c01441{height:52.506302pt;}
.hd_c01441{height:55.290000pt;}
.hc_c01441{height:58.073698pt;}
.ha_c01441{height:60.809401pt;}
.h5_c01441{height:66.328802pt;}
.h16_c01441{height:69.112500pt;}
.h17_c01441{height:71.896198pt;}
.h10_c01441{height:80.151302pt;}
.h18_c01441{height:102.276901pt;}
.h1a_c01441{height:116.099401pt;}
.h19_c01441{height:121.618802pt;}
.h0_c01441{height:1341.693333pt;}
.h1_c01441{height:1342.000000pt;}
.w0_c01441{width:943.106667pt;}
.w1_c01441{width:943.333333pt;}
.x0_c01441{left:0.000000pt;}
.x2_c01441{left:49.920000pt;}
.x1_c01441{left:53.760000pt;}
.x3_c01441{left:58.373333pt;}
.x29_c01441{left:99.066667pt;}
.x28_c01441{left:101.373333pt;}
.x27_c01441{left:103.680000pt;}
.x2a_c01441{left:106.746667pt;}
.x2b_c01441{left:131.333333pt;}
.x2c_c01441{left:135.933333pt;}
.x20_c01441{left:537.600000pt;}
.x10_c01441{left:539.133333pt;}
.x6_c01441{left:556.800000pt;}
.x7_c01441{left:572.160000pt;}
.x21_c01441{left:579.840000pt;}
.x8_c01441{left:583.680000pt;}
.x11_c01441{left:589.826667pt;}
.x9_c01441{left:596.733333pt;}
.x18_c01441{left:602.880000pt;}
.xa_c01441{left:609.026667pt;}
.x1c_c01441{left:615.933333pt;}
.xb_c01441{left:626.693333pt;}
.x22_c01441{left:642.813333pt;}
.x12_c01441{left:647.426667pt;}
.x23_c01441{left:651.266667pt;}
.x13_c01441{left:656.640000pt;}
.x24_c01441{left:669.693333pt;}
.x19_c01441{left:675.840000pt;}
.x5_c01441{left:678.906667pt;}
.x14_c01441{left:680.453333pt;}
.xc_c01441{left:685.053333pt;}
.x1d_c01441{left:687.360000pt;}
.x15_c01441{left:690.426667pt;}
.x1a_c01441{left:703.493333pt;}
.x4_c01441{left:706.560000pt;}
.x25_c01441{left:708.866667pt;}
.x1e_c01441{left:715.773333pt;}
.xd_c01441{left:731.906667pt;}
.x26_c01441{left:737.280000pt;}
.x16_c01441{left:740.346667pt;}
.xe_c01441{left:750.333333pt;}
.x1b_c01441{left:778.746667pt;}
.x1f_c01441{left:786.426667pt;}
.xf_c01441{left:790.266667pt;}
.x17_c01441{left:796.413333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f7e14736c4a57daedd153f1.woff2')format("woff");}.ff1_c01442{font-family:ff1_c01442;line-height:1.109863;font-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_c01442{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);}
.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;}
.fs0_c01442{font-size:600.000000px;}
.y0_c01442{bottom:0.000000px;}
.y1_c01442{bottom:15.000000px;}
.h2_c01442{height:539.941406px;}
.h0_c01442{height:1521.510000px;}
.h1_c01442{height:1521.750000px;}
.w0_c01442{width:1090.365000px;}
.w1_c01442{width:1090.500000px;}
.x0_c01442{left:0.000000px;}
.x1_c01442{left:15.000000px;}
@media print{
.v0_c01442{vertical-align:0.000000pt;}
.ls0_c01442{letter-spacing:0.000000pt;}
.ws0_c01442{word-spacing:0.000000pt;}
.fs0_c01442{font-size:533.333333pt;}
.y0_c01442{bottom:0.000000pt;}
.y1_c01442{bottom:13.333333pt;}
.h2_c01442{height:479.947917pt;}
.h0_c01442{height:1352.453333pt;}
.h1_c01442{height:1352.666667pt;}
.w0_c01442{width:969.213333pt;}
.w1_c01442{width:969.333333pt;}
.x0_c01442{left:0.000000pt;}
.x1_c01442{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_67d9ecedfd8f838371ffd9ca.woff2')format("woff");}.ff1_c01443{font-family:ff1_c01443;line-height:1.109863;font-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_c01443{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c01443{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m13_c01443{transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147250,0.000000,0.000000,0.250000,0,0);}
.mc_c01443{transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147525,0.000000,0.000000,0.250000,0,0);}
.m2_c01443{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);}
.m1a_c01443{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);}
.m9_c01443{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);}
.mf_c01443{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);}
.m1f_c01443{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.m27_c01443{transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204550,0.000000,0.000000,0.250000,0,0);}
.m12_c01443{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);}
.m23_c01443{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);}
.m1b_c01443{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);}
.m16_c01443{transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211600,0.000000,0.000000,0.250000,0,0);}
.m1d_c01443{transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211725,0.000000,0.000000,0.250000,0,0);}
.m14_c01443{transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211950,0.000000,0.000000,0.250000,0,0);}
.m11_c01443{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);}
.m19_c01443{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);}
.ma_c01443{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);}
.m26_c01443{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);}
.m2a_c01443{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);}
.m28_c01443{transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235300,0.000000,0.000000,0.250000,0,0);}
.m22_c01443{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);}
.mb_c01443{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);}
.m2b_c01443{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);}
.m15_c01443{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01443{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m2d_c01443{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);}
.m4_c01443{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m10_c01443{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);}
.md_c01443{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m25_c01443{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);}
.me_c01443{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m2c_c01443{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m24_c01443{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);}
.m6_c01443{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01443{transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.325000,0.000000,0.000000,0.250000,0,0);}
.m5_c01443{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m7_c01443{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m8_c01443{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m29_c01443{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c01443{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);}
.m17_c01443{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m20_c01443{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m21_c01443{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m18_c01443{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m2e_c01443{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01443{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);}
.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;}
.fsc_c01443{font-size:3.456000px;}
.fs1_c01443{font-size:6.000000px;}
.fse_c01443{font-size:6.900000px;}
.fs14_c01443{font-size:10.380000px;}
.fs0_c01443{font-size:13.800000px;}
.fs2_c01443{font-size:17.280000px;}
.fs5_c01443{font-size:34.560000px;}
.fs6_c01443{font-size:38.040000px;}
.fs11_c01443{font-size:44.940000px;}
.fs4_c01443{font-size:48.360000px;}
.fsf_c01443{font-size:51.840000px;}
.fsa_c01443{font-size:55.320000px;}
.fs9_c01443{font-size:58.740000px;}
.fs3_c01443{font-size:62.220000px;}
.fs13_c01443{font-size:65.640000px;}
.fs12_c01443{font-size:69.120000px;}
.fs10_c01443{font-size:72.600000px;}
.fs8_c01443{font-size:76.020000px;}
.fsb_c01443{font-size:79.500000px;}
.fsd_c01443{font-size:82.920000px;}
.fs7_c01443{font-size:86.400000px;}
.y0_c01443{bottom:0.000000px;}
.y2c_c01443{bottom:1095.555000px;}
.y2b_c01443{bottom:1103.325000px;}
.y2a_c01443{bottom:1119.750000px;}
.y27_c01443{bottom:1120.605000px;}
.y29_c01443{bottom:1121.475000px;}
.y28_c01443{bottom:1122.330000px;}
.y26_c01443{bottom:1124.070000px;}
.y23_c01443{bottom:1139.610000px;}
.y24_c01443{bottom:1141.350000px;}
.y25_c01443{bottom:1143.075000px;}
.y22_c01443{bottom:1144.800000px;}
.y20_c01443{bottom:1157.760000px;}
.y1e_c01443{bottom:1159.485000px;}
.y21_c01443{bottom:1161.210000px;}
.y1f_c01443{bottom:1162.080000px;}
.y1d_c01443{bottom:1175.910000px;}
.y1b_c01443{bottom:1178.490000px;}
.y19_c01443{bottom:1180.230000px;}
.y1c_c01443{bottom:1181.955000px;}
.y1a_c01443{bottom:1184.550000px;}
.y17_c01443{bottom:1195.770000px;}
.y16_c01443{bottom:1198.365000px;}
.y15_c01443{bottom:1200.090000px;}
.y6_c01443{bottom:1201.830000px;}
.y5_c01443{bottom:1202.685000px;}
.y18_c01443{bottom:1204.410000px;}
.y11_c01443{bottom:1217.370000px;}
.y10_c01443{bottom:1218.240000px;}
.y13_c01443{bottom:1219.965000px;}
.yf_c01443{bottom:1221.690000px;}
.y12_c01443{bottom:1222.560000px;}
.y14_c01443{bottom:1233.795000px;}
.yd_c01443{bottom:1237.245000px;}
.ye_c01443{bottom:1242.435000px;}
.yc_c01443{bottom:1245.885000px;}
.yb_c01443{bottom:1257.120000px;}
.ya_c01443{bottom:1257.990000px;}
.y8_c01443{bottom:1264.035000px;}
.y9_c01443{bottom:1264.890000px;}
.y7_c01443{bottom:1266.630000px;}
.y4_c01443{bottom:1338.330000px;}
.y3_c01443{bottom:1339.200000px;}
.y2_c01443{bottom:1343.520000px;}
.y1_c01443{bottom:1344.390000px;}
.he_c01443{height:3.110063px;}
.h3_c01443{height:5.399414px;}
.h10_c01443{height:6.209326px;}
.h16_c01443{height:9.340986px;}
.h2_c01443{height:12.418652px;}
.h4_c01443{height:15.550313px;}
.h7_c01443{height:31.100625px;}
.h8_c01443{height:34.232285px;}
.h13_c01443{height:40.441611px;}
.h6_c01443{height:43.519277px;}
.h11_c01443{height:46.650937px;}
.hc_c01443{height:49.782598px;}
.hb_c01443{height:52.860264px;}
.h5_c01443{height:55.991924px;}
.h15_c01443{height:59.069590px;}
.h14_c01443{height:62.201250px;}
.h12_c01443{height:65.332910px;}
.ha_c01443{height:68.410576px;}
.hd_c01443{height:71.542236px;}
.hf_c01443{height:74.619902px;}
.h9_c01443{height:77.751563px;}
.h0_c01443{height:1509.405000px;}
.h1_c01443{height:1509.750000px;}
.w0_c01443{width:1060.995000px;}
.w1_c01443{width:1061.250000px;}
.x0_c01443{left:0.000000px;}
.x2d_c01443{left:24.195000px;}
.x2c_c01443{left:30.240000px;}
.x5_c01443{left:33.690000px;}
.x2_c01443{left:44.925000px;}
.x1_c01443{left:46.650000px;}
.x3_c01443{left:49.245000px;}
.x4_c01443{left:59.610000px;}
.x27_c01443{left:588.390000px;}
.x24_c01443{left:591.840000px;}
.x1b_c01443{left:593.565000px;}
.xf_c01443{left:595.290000px;}
.x6_c01443{left:613.440000px;}
.x7_c01443{left:630.720000px;}
.x8_c01443{left:643.680000px;}
.x1c_c01443{left:649.725000px;}
.x9_c01443{left:657.510000px;}
.x19_c01443{left:660.960000px;}
.x10_c01443{left:667.005000px;}
.xa_c01443{left:670.470000px;}
.x1d_c01443{left:673.920000px;}
.x11_c01443{left:686.010000px;}
.xb_c01443{left:692.070000px;}
.x28_c01443{left:695.520000px;}
.x14_c01443{left:709.350000px;}
.x21_c01443{left:720.570000px;}
.x25_c01443{left:744.765000px;}
.x12_c01443{left:764.640000px;}
.x1e_c01443{left:779.325000px;}
.x22_c01443{left:781.050000px;}
.xc_c01443{left:785.370000px;}
.x15_c01443{left:792.285000px;}
.x29_c01443{left:801.795000px;}
.x1f_c01443{left:808.710000px;}
.xd_c01443{left:812.160000px;}
.x13_c01443{left:815.610000px;}
.x16_c01443{left:822.525000px;}
.x17_c01443{left:836.355000px;}
.xe_c01443{left:839.805000px;}
.x2a_c01443{left:842.400000px;}
.x20_c01443{left:844.125000px;}
.x23_c01443{left:863.130000px;}
.x2b_c01443{left:872.640000px;}
.x26_c01443{left:875.235000px;}
.x1a_c01443{left:882.150000px;}
.x18_c01443{left:883.875000px;}
@media print{
.v0_c01443{vertical-align:0.000000pt;}
.ls0_c01443{letter-spacing:0.000000pt;}
.ws0_c01443{word-spacing:0.000000pt;}
.fsc_c01443{font-size:3.072000pt;}
.fs1_c01443{font-size:5.333333pt;}
.fse_c01443{font-size:6.133333pt;}
.fs14_c01443{font-size:9.226667pt;}
.fs0_c01443{font-size:12.266667pt;}
.fs2_c01443{font-size:15.360000pt;}
.fs5_c01443{font-size:30.720000pt;}
.fs6_c01443{font-size:33.813333pt;}
.fs11_c01443{font-size:39.946667pt;}
.fs4_c01443{font-size:42.986667pt;}
.fsf_c01443{font-size:46.080000pt;}
.fsa_c01443{font-size:49.173333pt;}
.fs9_c01443{font-size:52.213333pt;}
.fs3_c01443{font-size:55.306667pt;}
.fs13_c01443{font-size:58.346667pt;}
.fs12_c01443{font-size:61.440000pt;}
.fs10_c01443{font-size:64.533333pt;}
.fs8_c01443{font-size:67.573333pt;}
.fsb_c01443{font-size:70.666667pt;}
.fsd_c01443{font-size:73.706667pt;}
.fs7_c01443{font-size:76.800000pt;}
.y0_c01443{bottom:0.000000pt;}
.y2c_c01443{bottom:973.826667pt;}
.y2b_c01443{bottom:980.733333pt;}
.y2a_c01443{bottom:995.333333pt;}
.y27_c01443{bottom:996.093333pt;}
.y29_c01443{bottom:996.866667pt;}
.y28_c01443{bottom:997.626667pt;}
.y26_c01443{bottom:999.173333pt;}
.y23_c01443{bottom:1012.986667pt;}
.y24_c01443{bottom:1014.533333pt;}
.y25_c01443{bottom:1016.066667pt;}
.y22_c01443{bottom:1017.600000pt;}
.y20_c01443{bottom:1029.120000pt;}
.y1e_c01443{bottom:1030.653333pt;}
.y21_c01443{bottom:1032.186667pt;}
.y1f_c01443{bottom:1032.960000pt;}
.y1d_c01443{bottom:1045.253333pt;}
.y1b_c01443{bottom:1047.546667pt;}
.y19_c01443{bottom:1049.093333pt;}
.y1c_c01443{bottom:1050.626667pt;}
.y1a_c01443{bottom:1052.933333pt;}
.y17_c01443{bottom:1062.906667pt;}
.y16_c01443{bottom:1065.213333pt;}
.y15_c01443{bottom:1066.746667pt;}
.y6_c01443{bottom:1068.293333pt;}
.y5_c01443{bottom:1069.053333pt;}
.y18_c01443{bottom:1070.586667pt;}
.y11_c01443{bottom:1082.106667pt;}
.y10_c01443{bottom:1082.880000pt;}
.y13_c01443{bottom:1084.413333pt;}
.yf_c01443{bottom:1085.946667pt;}
.y12_c01443{bottom:1086.720000pt;}
.y14_c01443{bottom:1096.706667pt;}
.yd_c01443{bottom:1099.773333pt;}
.ye_c01443{bottom:1104.386667pt;}
.yc_c01443{bottom:1107.453333pt;}
.yb_c01443{bottom:1117.440000pt;}
.ya_c01443{bottom:1118.213333pt;}
.y8_c01443{bottom:1123.586667pt;}
.y9_c01443{bottom:1124.346667pt;}
.y7_c01443{bottom:1125.893333pt;}
.y4_c01443{bottom:1189.626667pt;}
.y3_c01443{bottom:1190.400000pt;}
.y2_c01443{bottom:1194.240000pt;}
.y1_c01443{bottom:1195.013333pt;}
.he_c01443{height:2.764500pt;}
.h3_c01443{height:4.799479pt;}
.h10_c01443{height:5.519401pt;}
.h16_c01443{height:8.303099pt;}
.h2_c01443{height:11.038802pt;}
.h4_c01443{height:13.822500pt;}
.h7_c01443{height:27.645000pt;}
.h8_c01443{height:30.428698pt;}
.h13_c01443{height:35.948099pt;}
.h6_c01443{height:38.683802pt;}
.h11_c01443{height:41.467500pt;}
.hc_c01443{height:44.251198pt;}
.hb_c01443{height:46.986901pt;}
.h5_c01443{height:49.770599pt;}
.h15_c01443{height:52.506302pt;}
.h14_c01443{height:55.290000pt;}
.h12_c01443{height:58.073698pt;}
.ha_c01443{height:60.809401pt;}
.hd_c01443{height:63.593099pt;}
.hf_c01443{height:66.328802pt;}
.h9_c01443{height:69.112500pt;}
.h0_c01443{height:1341.693333pt;}
.h1_c01443{height:1342.000000pt;}
.w0_c01443{width:943.106667pt;}
.w1_c01443{width:943.333333pt;}
.x0_c01443{left:0.000000pt;}
.x2d_c01443{left:21.506667pt;}
.x2c_c01443{left:26.880000pt;}
.x5_c01443{left:29.946667pt;}
.x2_c01443{left:39.933333pt;}
.x1_c01443{left:41.466667pt;}
.x3_c01443{left:43.773333pt;}
.x4_c01443{left:52.986667pt;}
.x27_c01443{left:523.013333pt;}
.x24_c01443{left:526.080000pt;}
.x1b_c01443{left:527.613333pt;}
.xf_c01443{left:529.146667pt;}
.x6_c01443{left:545.280000pt;}
.x7_c01443{left:560.640000pt;}
.x8_c01443{left:572.160000pt;}
.x1c_c01443{left:577.533333pt;}
.x9_c01443{left:584.453333pt;}
.x19_c01443{left:587.520000pt;}
.x10_c01443{left:592.893333pt;}
.xa_c01443{left:595.973333pt;}
.x1d_c01443{left:599.040000pt;}
.x11_c01443{left:609.786667pt;}
.xb_c01443{left:615.173333pt;}
.x28_c01443{left:618.240000pt;}
.x14_c01443{left:630.533333pt;}
.x21_c01443{left:640.506667pt;}
.x25_c01443{left:662.013333pt;}
.x12_c01443{left:679.680000pt;}
.x1e_c01443{left:692.733333pt;}
.x22_c01443{left:694.266667pt;}
.xc_c01443{left:698.106667pt;}
.x15_c01443{left:704.253333pt;}
.x29_c01443{left:712.706667pt;}
.x1f_c01443{left:718.853333pt;}
.xd_c01443{left:721.920000pt;}
.x13_c01443{left:724.986667pt;}
.x16_c01443{left:731.133333pt;}
.x17_c01443{left:743.426667pt;}
.xe_c01443{left:746.493333pt;}
.x2a_c01443{left:748.800000pt;}
.x20_c01443{left:750.333333pt;}
.x23_c01443{left:767.226667pt;}
.x2b_c01443{left:775.680000pt;}
.x26_c01443{left:777.986667pt;}
.x1a_c01443{left:784.133333pt;}
.x18_c01443{left:785.666667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7acc7bd24c203826151bee4d.woff2')format("woff");}.ff1_c01444{font-family:ff1_c01444;line-height:1.109863;font-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_c01444{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);}
.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:600.000000px;}
.y0_c01444{bottom:0.000000px;}
.y1_c01444{bottom:15.000000px;}
.h2_c01444{height:539.941406px;}
.h0_c01444{height:1521.510000px;}
.h1_c01444{height:1521.750000px;}
.w0_c01444{width:1090.365000px;}
.w1_c01444{width:1090.500000px;}
.x0_c01444{left:0.000000px;}
.x1_c01444{left:15.000000px;}
@media print{
.v0_c01444{vertical-align:0.000000pt;}
.ls0_c01444{letter-spacing:0.000000pt;}
.ws0_c01444{word-spacing:0.000000pt;}
.fs0_c01444{font-size:533.333333pt;}
.y0_c01444{bottom:0.000000pt;}
.y1_c01444{bottom:13.333333pt;}
.h2_c01444{height:479.947917pt;}
.h0_c01444{height:1352.453333pt;}
.h1_c01444{height:1352.666667pt;}
.w0_c01444{width:969.213333pt;}
.w1_c01444{width:969.333333pt;}
.x0_c01444{left:0.000000pt;}
.x1_c01444{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_53973da2ca4f7f6ebd902fc3.woff2')format("woff");}.ff1_c01445{font-family:ff1_c01445;line-height:1.109863;font-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_c01445{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m17_c01445{transform:matrix(0.042850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042850,0.000000,0.000000,0.250000,0,0);}
.ma_c01445{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m11_c01445{transform:matrix(0.100100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.100100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.100100,0.000000,0.000000,0.250000,0,0);}
.m15_c01445{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m1_c01445{transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128475,0.000000,0.000000,0.250000,0,0);}
.mf_c01445{transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133700,0.000000,0.000000,0.250000,0,0);}
.m1a_c01445{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m5_c01445{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m13_c01445{transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146000,0.000000,0.000000,0.250000,0,0);}
.mc_c01445{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m9_c01445{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);}
.m6_c01445{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);}
.md_c01445{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_c01445{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m19_c01445{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m12_c01445{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m0_c01445{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);}
.m10_c01445{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);}
.m18_c01445{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);}
.m16_c01445{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);}
.m3_c01445{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me_c01445{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m14_c01445{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m7_c01445{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.mb_c01445{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m8_c01445{transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.637500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.637500,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;}
.fs5_c01445{font-size:3.456000px;}
.fsa_c01445{font-size:6.900000px;}
.fs7_c01445{font-size:10.380000px;}
.fs2_c01445{font-size:13.800000px;}
.fs3_c01445{font-size:17.280000px;}
.fs4_c01445{font-size:20.760000px;}
.fs1_c01445{font-size:24.180000px;}
.fs0_c01445{font-size:27.660000px;}
.fsb_c01445{font-size:31.080000px;}
.fs8_c01445{font-size:34.560000px;}
.fse_c01445{font-size:38.040000px;}
.fs6_c01445{font-size:41.460000px;}
.fs9_c01445{font-size:44.940000px;}
.fsd_c01445{font-size:51.840000px;}
.fsf_c01445{font-size:58.740000px;}
.fs10_c01445{font-size:69.120000px;}
.fsc_c01445{font-size:79.500000px;}
.fs11_c01445{font-size:120.960000px;}
.y0_c01445{bottom:0.000000px;}
.y1f_c01445{bottom:770.685000px;}
.y1e_c01445{bottom:774.150000px;}
.y20_c01445{bottom:775.875000px;}
.y1d_c01445{bottom:794.880000px;}
.y1c_c01445{bottom:803.520000px;}
.y1b_c01445{bottom:825.120000px;}
.y1a_c01445{bottom:898.560000px;}
.y19_c01445{bottom:908.070000px;}
.y18_c01445{bottom:926.205000px;}
.y17_c01445{bottom:991.005000px;}
.y16_c01445{bottom:999.645000px;}
.y15_c01445{bottom:1012.605000px;}
.y12_c01445{bottom:1027.290000px;}
.y14_c01445{bottom:1033.350000px;}
.y13_c01445{bottom:1038.525000px;}
.y11_c01445{bottom:1047.165000px;}
.y10_c01445{bottom:1054.080000px;}
.yf_c01445{bottom:1077.405000px;}
.ye_c01445{bottom:1102.470000px;}
.yc_c01445{bottom:1125.795000px;}
.yd_c01445{bottom:1130.115000px;}
.yb_c01445{bottom:1139.610000px;}
.ya_c01445{bottom:1168.125000px;}
.y9_c01445{bottom:1190.595000px;}
.y7_c01445{bottom:1207.005000px;}
.y8_c01445{bottom:1211.325000px;}
.y6_c01445{bottom:1225.155000px;}
.y5_c01445{bottom:1227.750000px;}
.y4_c01445{bottom:1252.800000px;}
.y2_c01445{bottom:1279.590000px;}
.y3_c01445{bottom:1281.315000px;}
.y1_c01445{bottom:1288.230000px;}
.h7_c01445{height:3.110063px;}
.hc_c01445{height:6.209326px;}
.h9_c01445{height:9.340986px;}
.h4_c01445{height:12.418652px;}
.h5_c01445{height:15.550313px;}
.h6_c01445{height:18.681973px;}
.h3_c01445{height:21.759639px;}
.h2_c01445{height:24.891299px;}
.hd_c01445{height:27.968965px;}
.ha_c01445{height:31.100625px;}
.h10_c01445{height:34.232285px;}
.h8_c01445{height:37.309951px;}
.hb_c01445{height:40.441611px;}
.hf_c01445{height:46.650937px;}
.h11_c01445{height:52.860264px;}
.h12_c01445{height:62.201250px;}
.he_c01445{height:71.542236px;}
.h13_c01445{height:108.852188px;}
.h0_c01445{height:1509.405000px;}
.h1_c01445{height:1509.750000px;}
.w0_c01445{width:1060.995000px;}
.w1_c01445{width:1061.250000px;}
.x0_c01445{left:0.000000px;}
.x9_c01445{left:12.090000px;}
.x1_c01445{left:13.830000px;}
.x2_c01445{left:70.845000px;}
.xe_c01445{left:111.450000px;}
.xc_c01445{left:114.915000px;}
.x7_c01445{left:142.560000px;}
.xa_c01445{left:158.115000px;}
.xd_c01445{left:162.435000px;}
.xb_c01445{left:168.480000px;}
.x3_c01445{left:176.250000px;}
.xf_c01445{left:181.440000px;}
.x4_c01445{left:186.630000px;}
.x8_c01445{left:191.805000px;}
.x5_c01445{left:200.445000px;}
.x6_c01445{left:209.085000px;}
@media print{
.v0_c01445{vertical-align:0.000000pt;}
.ls0_c01445{letter-spacing:0.000000pt;}
.ws0_c01445{word-spacing:0.000000pt;}
.fs5_c01445{font-size:3.072000pt;}
.fsa_c01445{font-size:6.133333pt;}
.fs7_c01445{font-size:9.226667pt;}
.fs2_c01445{font-size:12.266667pt;}
.fs3_c01445{font-size:15.360000pt;}
.fs4_c01445{font-size:18.453333pt;}
.fs1_c01445{font-size:21.493333pt;}
.fs0_c01445{font-size:24.586667pt;}
.fsb_c01445{font-size:27.626667pt;}
.fs8_c01445{font-size:30.720000pt;}
.fse_c01445{font-size:33.813333pt;}
.fs6_c01445{font-size:36.853333pt;}
.fs9_c01445{font-size:39.946667pt;}
.fsd_c01445{font-size:46.080000pt;}
.fsf_c01445{font-size:52.213333pt;}
.fs10_c01445{font-size:61.440000pt;}
.fsc_c01445{font-size:70.666667pt;}
.fs11_c01445{font-size:107.520000pt;}
.y0_c01445{bottom:0.000000pt;}
.y1f_c01445{bottom:685.053333pt;}
.y1e_c01445{bottom:688.133333pt;}
.y20_c01445{bottom:689.666667pt;}
.y1d_c01445{bottom:706.560000pt;}
.y1c_c01445{bottom:714.240000pt;}
.y1b_c01445{bottom:733.440000pt;}
.y1a_c01445{bottom:798.720000pt;}
.y19_c01445{bottom:807.173333pt;}
.y18_c01445{bottom:823.293333pt;}
.y17_c01445{bottom:880.893333pt;}
.y16_c01445{bottom:888.573333pt;}
.y15_c01445{bottom:900.093333pt;}
.y12_c01445{bottom:913.146667pt;}
.y14_c01445{bottom:918.533333pt;}
.y13_c01445{bottom:923.133333pt;}
.y11_c01445{bottom:930.813333pt;}
.y10_c01445{bottom:936.960000pt;}
.yf_c01445{bottom:957.693333pt;}
.ye_c01445{bottom:979.973333pt;}
.yc_c01445{bottom:1000.706667pt;}
.yd_c01445{bottom:1004.546667pt;}
.yb_c01445{bottom:1012.986667pt;}
.ya_c01445{bottom:1038.333333pt;}
.y9_c01445{bottom:1058.306667pt;}
.y7_c01445{bottom:1072.893333pt;}
.y8_c01445{bottom:1076.733333pt;}
.y6_c01445{bottom:1089.026667pt;}
.y5_c01445{bottom:1091.333333pt;}
.y4_c01445{bottom:1113.600000pt;}
.y2_c01445{bottom:1137.413333pt;}
.y3_c01445{bottom:1138.946667pt;}
.y1_c01445{bottom:1145.093333pt;}
.h7_c01445{height:2.764500pt;}
.hc_c01445{height:5.519401pt;}
.h9_c01445{height:8.303099pt;}
.h4_c01445{height:11.038802pt;}
.h5_c01445{height:13.822500pt;}
.h6_c01445{height:16.606198pt;}
.h3_c01445{height:19.341901pt;}
.h2_c01445{height:22.125599pt;}
.hd_c01445{height:24.861302pt;}
.ha_c01445{height:27.645000pt;}
.h10_c01445{height:30.428698pt;}
.h8_c01445{height:33.164401pt;}
.hb_c01445{height:35.948099pt;}
.hf_c01445{height:41.467500pt;}
.h11_c01445{height:46.986901pt;}
.h12_c01445{height:55.290000pt;}
.he_c01445{height:63.593099pt;}
.h13_c01445{height:96.757500pt;}
.h0_c01445{height:1341.693333pt;}
.h1_c01445{height:1342.000000pt;}
.w0_c01445{width:943.106667pt;}
.w1_c01445{width:943.333333pt;}
.x0_c01445{left:0.000000pt;}
.x9_c01445{left:10.746667pt;}
.x1_c01445{left:12.293333pt;}
.x2_c01445{left:62.973333pt;}
.xe_c01445{left:99.066667pt;}
.xc_c01445{left:102.146667pt;}
.x7_c01445{left:126.720000pt;}
.xa_c01445{left:140.546667pt;}
.xd_c01445{left:144.386667pt;}
.xb_c01445{left:149.760000pt;}
.x3_c01445{left:156.666667pt;}
.xf_c01445{left:161.280000pt;}
.x4_c01445{left:165.893333pt;}
.x8_c01445{left:170.493333pt;}
.x5_c01445{left:178.173333pt;}
.x6_c01445{left:185.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_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_c67ba6416051030a6019604d.woff2')format("woff");}.ff1_c01446{font-family:ff1_c01446;line-height:1.109863;font-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_c01446{transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062500,0.000000,0.000000,0.250000,0,0);}
.m1_c01446{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m0_c01446{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);}
.m3_c01446{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);}
.m4_c01446{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c01446{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,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;}
.fs1_c01446{font-size:3.456000px;}
.fs4_c01446{font-size:6.900000px;}
.fs3_c01446{font-size:13.800000px;}
.fs5_c01446{font-size:17.280000px;}
.fs0_c01446{font-size:20.760000px;}
.fs2_c01446{font-size:41.460000px;}
.y0_c01446{bottom:0.000000px;}
.y6_c01446{bottom:1139.610000px;}
.y7_c01446{bottom:1141.350000px;}
.y3_c01446{bottom:1181.955000px;}
.y5_c01446{bottom:1187.130000px;}
.y4_c01446{bottom:1189.725000px;}
.y1_c01446{bottom:1244.160000px;}
.y2_c01446{bottom:1249.350000px;}
.h3_c01446{height:3.110063px;}
.h6_c01446{height:6.209326px;}
.h5_c01446{height:12.418652px;}
.h7_c01446{height:15.550313px;}
.h2_c01446{height:18.681973px;}
.h4_c01446{height:37.309951px;}
.h0_c01446{height:1521.510000px;}
.h1_c01446{height:1521.750000px;}
.w0_c01446{width:1090.365000px;}
.w1_c01446{width:1090.500000px;}
.x0_c01446{left:0.000000px;}
.x3_c01446{left:1014.330000px;}
.x4_c01446{left:1031.610000px;}
.x6_c01446{left:1045.440000px;}
.x5_c01446{left:1048.035000px;}
.x1_c01446{left:1057.530000px;}
.x2_c01446{left:1069.635000px;}
@media print{
.v0_c01446{vertical-align:0.000000pt;}
.ls0_c01446{letter-spacing:0.000000pt;}
.ws0_c01446{word-spacing:0.000000pt;}
.fs1_c01446{font-size:3.072000pt;}
.fs4_c01446{font-size:6.133333pt;}
.fs3_c01446{font-size:12.266667pt;}
.fs5_c01446{font-size:15.360000pt;}
.fs0_c01446{font-size:18.453333pt;}
.fs2_c01446{font-size:36.853333pt;}
.y0_c01446{bottom:0.000000pt;}
.y6_c01446{bottom:1012.986667pt;}
.y7_c01446{bottom:1014.533333pt;}
.y3_c01446{bottom:1050.626667pt;}
.y5_c01446{bottom:1055.226667pt;}
.y4_c01446{bottom:1057.533333pt;}
.y1_c01446{bottom:1105.920000pt;}
.y2_c01446{bottom:1110.533333pt;}
.h3_c01446{height:2.764500pt;}
.h6_c01446{height:5.519401pt;}
.h5_c01446{height:11.038802pt;}
.h7_c01446{height:13.822500pt;}
.h2_c01446{height:16.606198pt;}
.h4_c01446{height:33.164401pt;}
.h0_c01446{height:1352.453333pt;}
.h1_c01446{height:1352.666667pt;}
.w0_c01446{width:969.213333pt;}
.w1_c01446{width:969.333333pt;}
.x0_c01446{left:0.000000pt;}
.x3_c01446{left:901.626667pt;}
.x4_c01446{left:916.986667pt;}
.x6_c01446{left:929.280000pt;}
.x5_c01446{left:931.586667pt;}
.x1_c01446{left:940.026667pt;}
.x2_c01446{left:950.786667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8b9e0011e7eabc017d939cf.woff2')format("woff");}.ff1_c01447{font-family:ff1_c01447;line-height:1.109863;font-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_c01447{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.ma_c01447{transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.129000,0.000000,0.000000,0.250000,0,0);}
.md_c01447{transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133400,0.000000,0.000000,0.250000,0,0);}
.m9_c01447{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m17_c01447{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);}
.m14_c01447{transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177975,0.000000,0.000000,0.250000,0,0);}
.m5_c01447{transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182900,0.000000,0.000000,0.250000,0,0);}
.mc_c01447{transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187700,0.000000,0.000000,0.250000,0,0);}
.m11_c01447{transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234450,0.000000,0.000000,0.250000,0,0);}
.me_c01447{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);}
.m2_c01447{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);}
.m1f_c01447{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);}
.m6_c01447{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);}
.m8_c01447{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c01447{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01447{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);}
.m19_c01447{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);}
.mf_c01447{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m1_c01447{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m12_c01447{transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.435000,0.000000,0.000000,0.250000,0,0);}
.m1e_c01447{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.mb_c01447{transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.475000,0.000000,0.000000,0.250000,0,0);}
.m7_c01447{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m10_c01447{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m18_c01447{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m1d_c01447{transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.610000,0.000000,0.000000,0.250000,0,0);}
.m3_c01447{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_c01447{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m4_c01447{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m16_c01447{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01447{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.m13_c01447{transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.212500,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;}
.fs5_c01447{font-size:3.456000px;}
.fse_c01447{font-size:6.900000px;}
.fs0_c01447{font-size:10.380000px;}
.fsa_c01447{font-size:13.800000px;}
.fs1_c01447{font-size:17.280000px;}
.fs2_c01447{font-size:20.760000px;}
.fsd_c01447{font-size:24.180000px;}
.fsc_c01447{font-size:27.660000px;}
.fsf_c01447{font-size:31.080000px;}
.fs4_c01447{font-size:34.560000px;}
.fs3_c01447{font-size:38.040000px;}
.fs10_c01447{font-size:44.940000px;}
.fs7_c01447{font-size:55.320000px;}
.fs6_c01447{font-size:58.740000px;}
.fs8_c01447{font-size:62.220000px;}
.fsb_c01447{font-size:69.120000px;}
.fs9_c01447{font-size:72.600000px;}
.y0_c01447{bottom:0.000000px;}
.y1e_c01447{bottom:1177.635000px;}
.y1d_c01447{bottom:1190.595000px;}
.y1c_c01447{bottom:1194.045000px;}
.y1a_c01447{bottom:1195.770000px;}
.y1b_c01447{bottom:1200.090000px;}
.y19_c01447{bottom:1206.150000px;}
.y17_c01447{bottom:1214.790000px;}
.y18_c01447{bottom:1220.835000px;}
.y16_c01447{bottom:1282.170000px;}
.y15_c01447{bottom:1290.810000px;}
.y14_c01447{bottom:1292.550000px;}
.y13_c01447{bottom:1302.915000px;}
.y12_c01447{bottom:1315.875000px;}
.y11_c01447{bottom:1326.240000px;}
.y10_c01447{bottom:1354.755000px;}
.yf_c01447{bottom:1367.715000px;}
.ye_c01447{bottom:1384.125000px;}
.yb_c01447{bottom:1384.995000px;}
.yc_c01447{bottom:1385.850000px;}
.yd_c01447{bottom:1386.720000px;}
.ya_c01447{bottom:1406.595000px;}
.y9_c01447{bottom:1407.450000px;}
.y8_c01447{bottom:1415.235000px;}
.y7_c01447{bottom:1419.555000px;}
.y5_c01447{bottom:1423.005000px;}
.y6_c01447{bottom:1427.325000px;}
.y3_c01447{bottom:1435.965000px;}
.y4_c01447{bottom:1439.430000px;}
.y1_c01447{bottom:1442.880000px;}
.y2_c01447{bottom:1445.475000px;}
.h7_c01447{height:3.110063px;}
.h10_c01447{height:6.209326px;}
.h2_c01447{height:9.340986px;}
.hc_c01447{height:12.418652px;}
.h3_c01447{height:15.550313px;}
.h4_c01447{height:18.681973px;}
.hf_c01447{height:21.759639px;}
.he_c01447{height:24.891299px;}
.h11_c01447{height:27.968965px;}
.h6_c01447{height:31.100625px;}
.h5_c01447{height:34.232285px;}
.h12_c01447{height:40.441611px;}
.h9_c01447{height:49.782598px;}
.h8_c01447{height:52.860264px;}
.ha_c01447{height:55.991924px;}
.hd_c01447{height:62.201250px;}
.hb_c01447{height:65.332910px;}
.h0_c01447{height:1509.405000px;}
.h1_c01447{height:1509.750000px;}
.w0_c01447{width:1060.995000px;}
.w1_c01447{width:1061.250000px;}
.x0_c01447{left:0.000000px;}
.x13_c01447{left:1.725000px;}
.x12_c01447{left:6.045000px;}
.x14_c01447{left:12.960000px;}
.x15_c01447{left:23.325000px;}
.x9_c01447{left:399.165000px;}
.xa_c01447{left:420.765000px;}
.xb_c01447{left:457.920000px;}
.xc_c01447{left:473.475000px;}
.xd_c01447{left:509.760000px;}
.x5_c01447{left:535.680000px;}
.xe_c01447{left:540.870000px;}
.x6_c01447{left:554.685000px;}
.xf_c01447{left:556.410000px;}
.x3_c01447{left:562.470000px;}
.x10_c01447{left:565.050000px;}
.x1_c01447{left:569.370000px;}
.x7_c01447{left:639.360000px;}
.x8_c01447{left:688.605000px;}
.x2_c01447{left:693.795000px;}
.x11_c01447{left:699.840000px;}
.x4_c01447{left:708.480000px;}
@media print{
.v0_c01447{vertical-align:0.000000pt;}
.ls0_c01447{letter-spacing:0.000000pt;}
.ws0_c01447{word-spacing:0.000000pt;}
.fs5_c01447{font-size:3.072000pt;}
.fse_c01447{font-size:6.133333pt;}
.fs0_c01447{font-size:9.226667pt;}
.fsa_c01447{font-size:12.266667pt;}
.fs1_c01447{font-size:15.360000pt;}
.fs2_c01447{font-size:18.453333pt;}
.fsd_c01447{font-size:21.493333pt;}
.fsc_c01447{font-size:24.586667pt;}
.fsf_c01447{font-size:27.626667pt;}
.fs4_c01447{font-size:30.720000pt;}
.fs3_c01447{font-size:33.813333pt;}
.fs10_c01447{font-size:39.946667pt;}
.fs7_c01447{font-size:49.173333pt;}
.fs6_c01447{font-size:52.213333pt;}
.fs8_c01447{font-size:55.306667pt;}
.fsb_c01447{font-size:61.440000pt;}
.fs9_c01447{font-size:64.533333pt;}
.y0_c01447{bottom:0.000000pt;}
.y1e_c01447{bottom:1046.786667pt;}
.y1d_c01447{bottom:1058.306667pt;}
.y1c_c01447{bottom:1061.373333pt;}
.y1a_c01447{bottom:1062.906667pt;}
.y1b_c01447{bottom:1066.746667pt;}
.y19_c01447{bottom:1072.133333pt;}
.y17_c01447{bottom:1079.813333pt;}
.y18_c01447{bottom:1085.186667pt;}
.y16_c01447{bottom:1139.706667pt;}
.y15_c01447{bottom:1147.386667pt;}
.y14_c01447{bottom:1148.933333pt;}
.y13_c01447{bottom:1158.146667pt;}
.y12_c01447{bottom:1169.666667pt;}
.y11_c01447{bottom:1178.880000pt;}
.y10_c01447{bottom:1204.226667pt;}
.yf_c01447{bottom:1215.746667pt;}
.ye_c01447{bottom:1230.333333pt;}
.yb_c01447{bottom:1231.106667pt;}
.yc_c01447{bottom:1231.866667pt;}
.yd_c01447{bottom:1232.640000pt;}
.ya_c01447{bottom:1250.306667pt;}
.y9_c01447{bottom:1251.066667pt;}
.y8_c01447{bottom:1257.986667pt;}
.y7_c01447{bottom:1261.826667pt;}
.y5_c01447{bottom:1264.893333pt;}
.y6_c01447{bottom:1268.733333pt;}
.y3_c01447{bottom:1276.413333pt;}
.y4_c01447{bottom:1279.493333pt;}
.y1_c01447{bottom:1282.560000pt;}
.y2_c01447{bottom:1284.866667pt;}
.h7_c01447{height:2.764500pt;}
.h10_c01447{height:5.519401pt;}
.h2_c01447{height:8.303099pt;}
.hc_c01447{height:11.038802pt;}
.h3_c01447{height:13.822500pt;}
.h4_c01447{height:16.606198pt;}
.hf_c01447{height:19.341901pt;}
.he_c01447{height:22.125599pt;}
.h11_c01447{height:24.861302pt;}
.h6_c01447{height:27.645000pt;}
.h5_c01447{height:30.428698pt;}
.h12_c01447{height:35.948099pt;}
.h9_c01447{height:44.251198pt;}
.h8_c01447{height:46.986901pt;}
.ha_c01447{height:49.770599pt;}
.hd_c01447{height:55.290000pt;}
.hb_c01447{height:58.073698pt;}
.h0_c01447{height:1341.693333pt;}
.h1_c01447{height:1342.000000pt;}
.w0_c01447{width:943.106667pt;}
.w1_c01447{width:943.333333pt;}
.x0_c01447{left:0.000000pt;}
.x13_c01447{left:1.533333pt;}
.x12_c01447{left:5.373333pt;}
.x14_c01447{left:11.520000pt;}
.x15_c01447{left:20.733333pt;}
.x9_c01447{left:354.813333pt;}
.xa_c01447{left:374.013333pt;}
.xb_c01447{left:407.040000pt;}
.xc_c01447{left:420.866667pt;}
.xd_c01447{left:453.120000pt;}
.x5_c01447{left:476.160000pt;}
.xe_c01447{left:480.773333pt;}
.x6_c01447{left:493.053333pt;}
.xf_c01447{left:494.586667pt;}
.x3_c01447{left:499.973333pt;}
.x10_c01447{left:502.266667pt;}
.x1_c01447{left:506.106667pt;}
.x7_c01447{left:568.320000pt;}
.x8_c01447{left:612.093333pt;}
.x2_c01447{left:616.706667pt;}
.x11_c01447{left:622.080000pt;}
.x4_c01447{left:629.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_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_054cd5e906489173f3d13239.woff2')format("woff");}.ff1_c01448{font-family:ff1_c01448;line-height:1.109863;font-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_c01448{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);}
.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;}
.fs0_c01448{font-size:600.000000px;}
.y0_c01448{bottom:0.000000px;}
.y1_c01448{bottom:15.000000px;}
.h2_c01448{height:539.941406px;}
.h0_c01448{height:1521.510000px;}
.h1_c01448{height:1521.750000px;}
.w0_c01448{width:1090.365000px;}
.w1_c01448{width:1090.500000px;}
.x0_c01448{left:0.000000px;}
.x1_c01448{left:15.000000px;}
@media print{
.v0_c01448{vertical-align:0.000000pt;}
.ls0_c01448{letter-spacing:0.000000pt;}
.ws0_c01448{word-spacing:0.000000pt;}
.fs0_c01448{font-size:533.333333pt;}
.y0_c01448{bottom:0.000000pt;}
.y1_c01448{bottom:13.333333pt;}
.h2_c01448{height:479.947917pt;}
.h0_c01448{height:1352.453333pt;}
.h1_c01448{height:1352.666667pt;}
.w0_c01448{width:969.213333pt;}
.w1_c01448{width:969.333333pt;}
.x0_c01448{left:0.000000pt;}
.x1_c01448{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1f8f9abf2d8a6495ee953a84.woff2')format("woff");}.ff1_c01449{font-family:ff1_c01449;line-height:1.109863;font-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_c01449{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m6_c01449{transform:matrix(0.022725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.022725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.022725,0.000000,0.000000,0.250000,0,0);}
.ma_c01449{transform:matrix(0.066875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.066875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.066875,0.000000,0.000000,0.250000,0,0);}
.m4_c01449{transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.069425,0.000000,0.000000,0.250000,0,0);}
.m7_c01449{transform:matrix(0.086275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.086275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.086275,0.000000,0.000000,0.250000,0,0);}
.m3_c01449{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.me_c01449{transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185900,0.000000,0.000000,0.250000,0,0);}
.md_c01449{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);}
.m10_c01449{transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.229750,0.000000,0.000000,0.250000,0,0);}
.m1_c01449{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.mc_c01449{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);}
.mb_c01449{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);}
.m8_c01449{transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.437500,0.000000,0.000000,0.250000,0,0);}
.m11_c01449{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m9_c01449{transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.587500,0.000000,0.000000,0.250000,0,0);}
.m0_c01449{transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.692500,0.000000,0.000000,0.250000,0,0);}
.mf_c01449{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m2_c01449{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,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;}
.fs4_c01449{font-size:6.000000px;}
.fsd_c01449{font-size:6.900000px;}
.fs8_c01449{font-size:13.800000px;}
.fs2_c01449{font-size:17.280000px;}
.fse_c01449{font-size:20.760000px;}
.fs1_c01449{font-size:24.180000px;}
.fs0_c01449{font-size:27.660000px;}
.fsa_c01449{font-size:38.040000px;}
.fs3_c01449{font-size:44.940000px;}
.fsb_c01449{font-size:48.360000px;}
.fs7_c01449{font-size:51.840000px;}
.fs6_c01449{font-size:65.640000px;}
.fsc_c01449{font-size:72.600000px;}
.fs5_c01449{font-size:76.020000px;}
.fs9_c01449{font-size:203.880000px;}
.y0_c01449{bottom:0.000000px;}
.y12_c01449{bottom:563.325000px;}
.y11_c01449{bottom:809.565000px;}
.yf_c01449{bottom:835.485000px;}
.y10_c01449{bottom:841.530000px;}
.yb_c01449{bottom:843.270000px;}
.ye_c01449{bottom:853.635000px;}
.yc_c01449{bottom:856.230000px;}
.yd_c01449{bottom:858.810000px;}
.ya_c01449{bottom:1232.925000px;}
.y9_c01449{bottom:1237.245000px;}
.y8_c01449{bottom:1334.880000px;}
.y2_c01449{bottom:1339.200000px;}
.y3_c01449{bottom:1342.650000px;}
.y7_c01449{bottom:1353.885000px;}
.y6_c01449{bottom:1365.120000px;}
.y5_c01449{bottom:1373.760000px;}
.y4_c01449{bottom:1385.850000px;}
.y1_c01449{bottom:1444.605000px;}
.h6_c01449{height:5.399414px;}
.hf_c01449{height:6.209326px;}
.ha_c01449{height:12.418652px;}
.h4_c01449{height:15.550313px;}
.h10_c01449{height:18.681973px;}
.h3_c01449{height:21.759639px;}
.h2_c01449{height:24.891299px;}
.hc_c01449{height:34.232285px;}
.h5_c01449{height:40.441611px;}
.hd_c01449{height:43.519277px;}
.h9_c01449{height:46.650937px;}
.h8_c01449{height:59.069590px;}
.he_c01449{height:65.332910px;}
.h7_c01449{height:68.410576px;}
.hb_c01449{height:183.472090px;}
.h0_c01449{height:1517.190000px;}
.h1_c01449{height:1517.250000px;}
.w0_c01449{width:1060.995000px;}
.w1_c01449{width:1061.250000px;}
.x0_c01449{left:0.000000px;}
.x6_c01449{left:2.595000px;}
.x7_c01449{left:16.410000px;}
.x2_c01449{left:25.920000px;}
.xa_c01449{left:28.515000px;}
.x8_c01449{left:33.690000px;}
.x9_c01449{left:47.520000px;}
.x4_c01449{left:112.320000px;}
.x5_c01449{left:114.045000px;}
.x3_c01449{left:115.770000px;}
.x1_c01449{left:711.075000px;}
@media print{
.v0_c01449{vertical-align:0.000000pt;}
.ls0_c01449{letter-spacing:0.000000pt;}
.ws0_c01449{word-spacing:0.000000pt;}
.fs4_c01449{font-size:5.333333pt;}
.fsd_c01449{font-size:6.133333pt;}
.fs8_c01449{font-size:12.266667pt;}
.fs2_c01449{font-size:15.360000pt;}
.fse_c01449{font-size:18.453333pt;}
.fs1_c01449{font-size:21.493333pt;}
.fs0_c01449{font-size:24.586667pt;}
.fsa_c01449{font-size:33.813333pt;}
.fs3_c01449{font-size:39.946667pt;}
.fsb_c01449{font-size:42.986667pt;}
.fs7_c01449{font-size:46.080000pt;}
.fs6_c01449{font-size:58.346667pt;}
.fsc_c01449{font-size:64.533333pt;}
.fs5_c01449{font-size:67.573333pt;}
.fs9_c01449{font-size:181.226667pt;}
.y0_c01449{bottom:0.000000pt;}
.y12_c01449{bottom:500.733333pt;}
.y11_c01449{bottom:719.613333pt;}
.yf_c01449{bottom:742.653333pt;}
.y10_c01449{bottom:748.026667pt;}
.yb_c01449{bottom:749.573333pt;}
.ye_c01449{bottom:758.786667pt;}
.yc_c01449{bottom:761.093333pt;}
.yd_c01449{bottom:763.386667pt;}
.ya_c01449{bottom:1095.933333pt;}
.y9_c01449{bottom:1099.773333pt;}
.y8_c01449{bottom:1186.560000pt;}
.y2_c01449{bottom:1190.400000pt;}
.y3_c01449{bottom:1193.466667pt;}
.y7_c01449{bottom:1203.453333pt;}
.y6_c01449{bottom:1213.440000pt;}
.y5_c01449{bottom:1221.120000pt;}
.y4_c01449{bottom:1231.866667pt;}
.y1_c01449{bottom:1284.093333pt;}
.h6_c01449{height:4.799479pt;}
.hf_c01449{height:5.519401pt;}
.ha_c01449{height:11.038802pt;}
.h4_c01449{height:13.822500pt;}
.h10_c01449{height:16.606198pt;}
.h3_c01449{height:19.341901pt;}
.h2_c01449{height:22.125599pt;}
.hc_c01449{height:30.428698pt;}
.h5_c01449{height:35.948099pt;}
.hd_c01449{height:38.683802pt;}
.h9_c01449{height:41.467500pt;}
.h8_c01449{height:52.506302pt;}
.he_c01449{height:58.073698pt;}
.h7_c01449{height:60.809401pt;}
.hb_c01449{height:163.086302pt;}
.h0_c01449{height:1348.613333pt;}
.h1_c01449{height:1348.666667pt;}
.w0_c01449{width:943.106667pt;}
.w1_c01449{width:943.333333pt;}
.x0_c01449{left:0.000000pt;}
.x6_c01449{left:2.306667pt;}
.x7_c01449{left:14.586667pt;}
.x2_c01449{left:23.040000pt;}
.xa_c01449{left:25.346667pt;}
.x8_c01449{left:29.946667pt;}
.x9_c01449{left:42.240000pt;}
.x4_c01449{left:99.840000pt;}
.x5_c01449{left:101.373333pt;}
.x3_c01449{left:102.906667pt;}
.x1_c01449{left:632.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_379edde22a104f6b1b29efdb.woff2')format("woff");}.ff1_c01450{font-family:ff1_c01450;line-height:1.109863;font-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_c01450{transform:matrix(0.036775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.036775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.036775,0.000000,0.000000,0.250000,0,0);}
.m9_c01450{transform:matrix(0.042125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042125,0.000000,0.000000,0.250000,0,0);}
.m3_c01450{transform:matrix(0.042875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042875,0.000000,0.000000,0.250000,0,0);}
.m7_c01450{transform:matrix(0.057750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.057750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.057750,0.000000,0.000000,0.250000,0,0);}
.m0_c01450{transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090250,0.000000,0.000000,0.250000,0,0);}
.mb_c01450{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.mc_c01450{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m2_c01450{transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.143150,0.000000,0.000000,0.250000,0,0);}
.m8_c01450{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c01450{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);}
.m1_c01450{transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175750,0.000000,0.000000,0.250000,0,0);}
.ma_c01450{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);}
.m4_c01450{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md_c01450{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,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;}
.fs4_c01450{font-size:3.456000px;}
.fsc_c01450{font-size:6.000000px;}
.fs9_c01450{font-size:6.900000px;}
.fs7_c01450{font-size:10.380000px;}
.fsd_c01450{font-size:20.760000px;}
.fs2_c01450{font-size:24.180000px;}
.fs1_c01450{font-size:27.660000px;}
.fs6_c01450{font-size:31.080000px;}
.fsb_c01450{font-size:34.560000px;}
.fs3_c01450{font-size:48.360000px;}
.fs0_c01450{font-size:69.120000px;}
.fs8_c01450{font-size:89.880000px;}
.fs5_c01450{font-size:117.480000px;}
.fsa_c01450{font-size:259.200000px;}
.y0_c01450{bottom:0.000000px;}
.y10_c01450{bottom:1156.890000px;}
.yf_c01450{bottom:1185.405000px;}
.ye_c01450{bottom:1189.725000px;}
.yd_c01450{bottom:1191.450000px;}
.yb_c01450{bottom:1200.960000px;}
.yc_c01450{bottom:1207.875000px;}
.y8_c01450{bottom:1268.355000px;}
.y9_c01450{bottom:1270.080000px;}
.ya_c01450{bottom:1272.675000px;}
.y6_c01450{bottom:1299.450000px;}
.y7_c01450{bottom:1321.050000px;}
.y4_c01450{bottom:1327.965000px;}
.y5_c01450{bottom:1337.475000px;}
.y3_c01450{bottom:1358.205000px;}
.y1_c01450{bottom:1363.395000px;}
.y2_c01450{bottom:1373.760000px;}
.h6_c01450{height:3.110063px;}
.he_c01450{height:5.399414px;}
.hb_c01450{height:6.209326px;}
.h9_c01450{height:9.340986px;}
.hf_c01450{height:18.681973px;}
.h4_c01450{height:21.759639px;}
.h3_c01450{height:24.891299px;}
.h8_c01450{height:27.968965px;}
.hd_c01450{height:31.100625px;}
.h5_c01450{height:43.519277px;}
.h2_c01450{height:62.201250px;}
.ha_c01450{height:80.883223px;}
.h7_c01450{height:105.720527px;}
.hc_c01450{height:233.254688px;}
.h0_c01450{height:1521.510000px;}
.h1_c01450{height:1521.750000px;}
.w0_c01450{width:1090.365000px;}
.w1_c01450{width:1090.500000px;}
.x0_c01450{left:0.000000px;}
.x5_c01450{left:933.120000px;}
.x8_c01450{left:970.275000px;}
.x7_c01450{left:975.450000px;}
.x1_c01450{left:978.915000px;}
.x6_c01450{left:980.640000px;}
.x2_c01450{left:990.150000px;}
.x3_c01450{left:993.600000px;}
.x4_c01450{left:995.325000px;}
.x9_c01450{left:1065.315000px;}
@media print{
.v0_c01450{vertical-align:0.000000pt;}
.ls0_c01450{letter-spacing:0.000000pt;}
.ws0_c01450{word-spacing:0.000000pt;}
.fs4_c01450{font-size:3.072000pt;}
.fsc_c01450{font-size:5.333333pt;}
.fs9_c01450{font-size:6.133333pt;}
.fs7_c01450{font-size:9.226667pt;}
.fsd_c01450{font-size:18.453333pt;}
.fs2_c01450{font-size:21.493333pt;}
.fs1_c01450{font-size:24.586667pt;}
.fs6_c01450{font-size:27.626667pt;}
.fsb_c01450{font-size:30.720000pt;}
.fs3_c01450{font-size:42.986667pt;}
.fs0_c01450{font-size:61.440000pt;}
.fs8_c01450{font-size:79.893333pt;}
.fs5_c01450{font-size:104.426667pt;}
.fsa_c01450{font-size:230.400000pt;}
.y0_c01450{bottom:0.000000pt;}
.y10_c01450{bottom:1028.346667pt;}
.yf_c01450{bottom:1053.693333pt;}
.ye_c01450{bottom:1057.533333pt;}
.yd_c01450{bottom:1059.066667pt;}
.yb_c01450{bottom:1067.520000pt;}
.yc_c01450{bottom:1073.666667pt;}
.y8_c01450{bottom:1127.426667pt;}
.y9_c01450{bottom:1128.960000pt;}
.ya_c01450{bottom:1131.266667pt;}
.y6_c01450{bottom:1155.066667pt;}
.y7_c01450{bottom:1174.266667pt;}
.y4_c01450{bottom:1180.413333pt;}
.y5_c01450{bottom:1188.866667pt;}
.y3_c01450{bottom:1207.293333pt;}
.y1_c01450{bottom:1211.906667pt;}
.y2_c01450{bottom:1221.120000pt;}
.h6_c01450{height:2.764500pt;}
.he_c01450{height:4.799479pt;}
.hb_c01450{height:5.519401pt;}
.h9_c01450{height:8.303099pt;}
.hf_c01450{height:16.606198pt;}
.h4_c01450{height:19.341901pt;}
.h3_c01450{height:22.125599pt;}
.h8_c01450{height:24.861302pt;}
.hd_c01450{height:27.645000pt;}
.h5_c01450{height:38.683802pt;}
.h2_c01450{height:55.290000pt;}
.ha_c01450{height:71.896198pt;}
.h7_c01450{height:93.973802pt;}
.hc_c01450{height:207.337500pt;}
.h0_c01450{height:1352.453333pt;}
.h1_c01450{height:1352.666667pt;}
.w0_c01450{width:969.213333pt;}
.w1_c01450{width:969.333333pt;}
.x0_c01450{left:0.000000pt;}
.x5_c01450{left:829.440000pt;}
.x8_c01450{left:862.466667pt;}
.x7_c01450{left:867.066667pt;}
.x1_c01450{left:870.146667pt;}
.x6_c01450{left:871.680000pt;}
.x2_c01450{left:880.133333pt;}
.x3_c01450{left:883.200000pt;}
.x4_c01450{left:884.733333pt;}
.x9_c01450{left:946.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_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_beafa86a159948e4825502fa.woff2')format("woff");}.ff1_c01451{font-family:ff1_c01451;line-height:1.109863;font-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_c01451{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);}
.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;}
.fs0_c01451{font-size:600.000000px;}
.y0_c01451{bottom:0.000000px;}
.y1_c01451{bottom:15.000000px;}
.h2_c01451{height:539.941406px;}
.h0_c01451{height:1517.190000px;}
.h1_c01451{height:1517.250000px;}
.w0_c01451{width:1060.995000px;}
.w1_c01451{width:1061.250000px;}
.x0_c01451{left:0.000000px;}
.x1_c01451{left:15.000000px;}
@media print{
.v0_c01451{vertical-align:0.000000pt;}
.ls0_c01451{letter-spacing:0.000000pt;}
.ws0_c01451{word-spacing:0.000000pt;}
.fs0_c01451{font-size:533.333333pt;}
.y0_c01451{bottom:0.000000pt;}
.y1_c01451{bottom:13.333333pt;}
.h2_c01451{height:479.947917pt;}
.h0_c01451{height:1348.613333pt;}
.h1_c01451{height:1348.666667pt;}
.w0_c01451{width:943.106667pt;}
.w1_c01451{width:943.333333pt;}
.x0_c01451{left:0.000000pt;}
.x1_c01451{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_43c1b12c1ea2fb68f9c86d08.woff2')format("woff");}.ff1_c01452{font-family:ff1_c01452;line-height:1.109863;font-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_c01452{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);}
.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;}
.fc0_c01452{color:transparent;}
.fs0_c01452{font-size:600.000000px;}
.y0_c01452{bottom:0.000000px;}
.y1_c01452{bottom:15.000000px;}
.h2_c01452{height:539.941406px;}
.h0_c01452{height:1521.510000px;}
.h1_c01452{height:1521.750000px;}
.w0_c01452{width:1090.365000px;}
.w1_c01452{width:1090.500000px;}
.x0_c01452{left:0.000000px;}
.x1_c01452{left:15.000000px;}
@media print{
.v0_c01452{vertical-align:0.000000pt;}
.ls0_c01452{letter-spacing:0.000000pt;}
.ws0_c01452{word-spacing:0.000000pt;}
.fs0_c01452{font-size:533.333333pt;}
.y0_c01452{bottom:0.000000pt;}
.y1_c01452{bottom:13.333333pt;}
.h2_c01452{height:479.947917pt;}
.h0_c01452{height:1352.453333pt;}
.h1_c01452{height:1352.666667pt;}
.w0_c01452{width:969.213333pt;}
.w1_c01452{width:969.333333pt;}
.x0_c01452{left:0.000000pt;}
.x1_c01452{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01453;src:url('chunks/assets/font_1c67cea27bcf42edaa80df22.woff2')format("woff");}.ff1_c01453{font-family:ff1_c01453;line-height:1.109863;font-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_c01453{transform:matrix(0.113775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113775,0.000000,0.000000,0.250000,0,0);}
.m11_c01453{transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.141250,0.000000,0.000000,0.250000,0,0);}
.m9_c01453{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c01453{transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168700,0.000000,0.000000,0.250000,0,0);}
.m7_c01453{transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171275,0.000000,0.000000,0.250000,0,0);}
.mf_c01453{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);}
.m1_c01453{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);}
.m0_c01453{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c01453{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);}
.m6_c01453{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.mb_c01453{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c01453{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);}
.m4_c01453{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);}
.ma_c01453{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md_c01453{transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.467500,0.000000,0.000000,0.250000,0,0);}
.m12_c01453{transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.582500,0.000000,0.000000,0.250000,0,0);}
.m8_c01453{transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.617500,0.000000,0.000000,0.250000,0,0);}
.m2_c01453{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc_c01453{transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.902500,0.000000,0.000000,0.250000,0,0);}
.v0_c01453{vertical-align:0.000000px;}
.ls0_c01453{letter-spacing:0.000000px;}
.sc__c01453{text-shadow:none;}
.sc0_c01453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01453{-webkit-text-stroke:0px transparent;}
.sc0_c01453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01453{word-spacing:0.000000px;}
.fc0_c01453{color:transparent;}
.fs2_c01453{font-size:3.456000px;}
.fs9_c01453{font-size:6.900000px;}
.fs0_c01453{font-size:13.800000px;}
.fsa_c01453{font-size:17.280000px;}
.fs3_c01453{font-size:20.760000px;}
.fs1_c01453{font-size:24.180000px;}
.fs8_c01453{font-size:27.660000px;}
.fsd_c01453{font-size:34.560000px;}
.fsb_c01453{font-size:38.040000px;}
.fs4_c01453{font-size:48.360000px;}
.fs7_c01453{font-size:55.320000px;}
.fs5_c01453{font-size:58.740000px;}
.fs6_c01453{font-size:72.600000px;}
.fsc_c01453{font-size:89.880000px;}
.y0_c01453{bottom:0.000000px;}
.y16_c01453{bottom:773.280000px;}
.y15_c01453{bottom:813.885000px;}
.y14_c01453{bottom:826.845000px;}
.y13_c01453{bottom:841.530000px;}
.y12_c01453{bottom:864.000000px;}
.y11_c01453{bottom:891.645000px;}
.y10_c01453{bottom:901.155000px;}
.yf_c01453{bottom:911.520000px;}
.ye_c01453{bottom:916.710000px;}
.yd_c01453{bottom:960.765000px;}
.yb_c01453{bottom:967.680000px;}
.ya_c01453{bottom:969.405000px;}
.yc_c01453{bottom:970.275000px;}
.y9_c01453{bottom:991.875000px;}
.y8_c01453{bottom:998.790000px;}
.y7_c01453{bottom:1015.200000px;}
.y6_c01453{bottom:1070.490000px;}
.y5_c01453{bottom:1086.045000px;}
.y4_c01453{bottom:1125.795000px;}
.y3_c01453{bottom:1130.115000px;}
.y2_c01453{bottom:1139.610000px;}
.y1_c01453{bottom:1141.350000px;}
.h4_c01453{height:3.110063px;}
.hb_c01453{height:6.209326px;}
.h2_c01453{height:12.418652px;}
.hc_c01453{height:15.550313px;}
.h5_c01453{height:18.681973px;}
.h3_c01453{height:21.759639px;}
.ha_c01453{height:24.891299px;}
.hf_c01453{height:31.100625px;}
.hd_c01453{height:34.232285px;}
.h6_c01453{height:43.519277px;}
.h9_c01453{height:49.782598px;}
.h7_c01453{height:52.860264px;}
.h8_c01453{height:65.332910px;}
.he_c01453{height:80.883223px;}
.h0_c01453{height:1517.190000px;}
.h1_c01453{height:1517.250000px;}
.w0_c01453{width:1060.995000px;}
.w1_c01453{width:1061.250000px;}
.x0_c01453{left:0.000000px;}
.x8_c01453{left:1.725000px;}
.x9_c01453{left:24.195000px;}
.x1_c01453{left:44.925000px;}
.xa_c01453{left:47.520000px;}
.x2_c01453{left:63.075000px;}
.x7_c01453{left:156.390000px;}
.x3_c01453{left:206.490000px;}
.x5_c01453{left:215.130000px;}
.x4_c01453{left:221.190000px;}
.x6_c01453{left:224.640000px;}
@media print{
.v0_c01453{vertical-align:0.000000pt;}
.ls0_c01453{letter-spacing:0.000000pt;}
.ws0_c01453{word-spacing:0.000000pt;}
.fs2_c01453{font-size:3.072000pt;}
.fs9_c01453{font-size:6.133333pt;}
.fs0_c01453{font-size:12.266667pt;}
.fsa_c01453{font-size:15.360000pt;}
.fs3_c01453{font-size:18.453333pt;}
.fs1_c01453{font-size:21.493333pt;}
.fs8_c01453{font-size:24.586667pt;}
.fsd_c01453{font-size:30.720000pt;}
.fsb_c01453{font-size:33.813333pt;}
.fs4_c01453{font-size:42.986667pt;}
.fs7_c01453{font-size:49.173333pt;}
.fs5_c01453{font-size:52.213333pt;}
.fs6_c01453{font-size:64.533333pt;}
.fsc_c01453{font-size:79.893333pt;}
.y0_c01453{bottom:0.000000pt;}
.y16_c01453{bottom:687.360000pt;}
.y15_c01453{bottom:723.453333pt;}
.y14_c01453{bottom:734.973333pt;}
.y13_c01453{bottom:748.026667pt;}
.y12_c01453{bottom:768.000000pt;}
.y11_c01453{bottom:792.573333pt;}
.y10_c01453{bottom:801.026667pt;}
.yf_c01453{bottom:810.240000pt;}
.ye_c01453{bottom:814.853333pt;}
.yd_c01453{bottom:854.013333pt;}
.yb_c01453{bottom:860.160000pt;}
.ya_c01453{bottom:861.693333pt;}
.yc_c01453{bottom:862.466667pt;}
.y9_c01453{bottom:881.666667pt;}
.y8_c01453{bottom:887.813333pt;}
.y7_c01453{bottom:902.400000pt;}
.y6_c01453{bottom:951.546667pt;}
.y5_c01453{bottom:965.373333pt;}
.y4_c01453{bottom:1000.706667pt;}
.y3_c01453{bottom:1004.546667pt;}
.y2_c01453{bottom:1012.986667pt;}
.y1_c01453{bottom:1014.533333pt;}
.h4_c01453{height:2.764500pt;}
.hb_c01453{height:5.519401pt;}
.h2_c01453{height:11.038802pt;}
.hc_c01453{height:13.822500pt;}
.h5_c01453{height:16.606198pt;}
.h3_c01453{height:19.341901pt;}
.ha_c01453{height:22.125599pt;}
.hf_c01453{height:27.645000pt;}
.hd_c01453{height:30.428698pt;}
.h6_c01453{height:38.683802pt;}
.h9_c01453{height:44.251198pt;}
.h7_c01453{height:46.986901pt;}
.h8_c01453{height:58.073698pt;}
.he_c01453{height:71.896198pt;}
.h0_c01453{height:1348.613333pt;}
.h1_c01453{height:1348.666667pt;}
.w0_c01453{width:943.106667pt;}
.w1_c01453{width:943.333333pt;}
.x0_c01453{left:0.000000pt;}
.x8_c01453{left:1.533333pt;}
.x9_c01453{left:21.506667pt;}
.x1_c01453{left:39.933333pt;}
.xa_c01453{left:42.240000pt;}
.x2_c01453{left:56.066667pt;}
.x7_c01453{left:139.013333pt;}
.x3_c01453{left:183.546667pt;}
.x5_c01453{left:191.226667pt;}
.x4_c01453{left:196.613333pt;}
.x6_c01453{left:199.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_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_428346625442bdaf69c0701a.woff2')format("woff");}.ff1_c01454{font-family:ff1_c01454;line-height:1.109863;font-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_c01454{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m12_c01454{transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.096150,0.000000,0.000000,0.250000,0,0);}
.mf_c01454{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m15_c01454{transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176975,0.000000,0.000000,0.250000,0,0);}
.m10_c01454{transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184675,0.000000,0.000000,0.250000,0,0);}
.md_c01454{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);}
.m6_c01454{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);}
.m11_c01454{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m9_c01454{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);}
.ma_c01454{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.mc_c01454{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);}
.m5_c01454{transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.370000,0.000000,0.000000,0.250000,0,0);}
.m8_c01454{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me_c01454{transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.470000,0.000000,0.000000,0.250000,0,0);}
.m0_c01454{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.m4_c01454{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);}
.m2_c01454{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m7_c01454{transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.652500,0.000000,0.000000,0.250000,0,0);}
.m3_c01454{transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.690000,0.000000,0.000000,0.250000,0,0);}
.m14_c01454{transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.722500,0.000000,0.000000,0.250000,0,0);}
.m13_c01454{transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.987500,0.000000,0.000000,0.250000,0,0);}
.mb_c01454{transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.052500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.052500,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;}
.fc0_c01454{color:transparent;}
.fs9_c01454{font-size:3.456000px;}
.fs1_c01454{font-size:6.000000px;}
.fs2_c01454{font-size:10.380000px;}
.fs3_c01454{font-size:13.800000px;}
.fs0_c01454{font-size:17.280000px;}
.fs6_c01454{font-size:20.760000px;}
.fsa_c01454{font-size:24.180000px;}
.fs8_c01454{font-size:27.660000px;}
.fs5_c01454{font-size:34.560000px;}
.fs4_c01454{font-size:41.460000px;}
.fsb_c01454{font-size:58.740000px;}
.fsc_c01454{font-size:89.880000px;}
.fs7_c01454{font-size:183.180000px;}
.y0_c01454{bottom:0.000000px;}
.y1b_c01454{bottom:254.880000px;}
.y1a_c01454{bottom:261.795000px;}
.y19_c01454{bottom:273.030000px;}
.y18_c01454{bottom:280.800000px;}
.y17_c01454{bottom:304.125000px;}
.y16_c01454{bottom:343.875000px;}
.y15_c01454{bottom:347.325000px;}
.yb_c01454{bottom:508.890000px;}
.y9_c01454{bottom:544.320000px;}
.ya_c01454{bottom:546.915000px;}
.y14_c01454{bottom:679.965000px;}
.y13_c01454{bottom:688.605000px;}
.y12_c01454{bottom:689.475000px;}
.y11_c01454{bottom:749.955000px;}
.y10_c01454{bottom:824.250000px;}
.yf_c01454{bottom:831.165000px;}
.ye_c01454{bottom:982.365000px;}
.y7_c01454{bottom:996.195000px;}
.y8_c01454{bottom:999.645000px;}
.yd_c01454{bottom:1097.280000px;}
.yc_c01454{bottom:1103.325000px;}
.y6_c01454{bottom:1369.440000px;}
.y5_c01454{bottom:1423.875000px;}
.y4_c01454{bottom:1430.790000px;}
.y3_c01454{bottom:1436.835000px;}
.y2_c01454{bottom:1442.010000px;}
.y1_c01454{bottom:1445.475000px;}
.hb_c01454{height:3.110063px;}
.h3_c01454{height:5.399414px;}
.h4_c01454{height:9.340986px;}
.h5_c01454{height:12.418652px;}
.h2_c01454{height:15.550313px;}
.h8_c01454{height:18.681973px;}
.hc_c01454{height:21.759639px;}
.ha_c01454{height:24.891299px;}
.h7_c01454{height:31.100625px;}
.h6_c01454{height:37.309951px;}
.hd_c01454{height:52.860264px;}
.he_c01454{height:80.883223px;}
.h9_c01454{height:164.844111px;}
.h0_c01454{height:1521.510000px;}
.h1_c01454{height:1521.750000px;}
.w0_c01454{width:1090.365000px;}
.w1_c01454{width:1090.500000px;}
.x0_c01454{left:0.000000px;}
.x2_c01454{left:610.845000px;}
.x3_c01454{left:619.485000px;}
.x4_c01454{left:624.675000px;}
.x1_c01454{left:662.685000px;}
.x5_c01454{left:666.150000px;}
.x9_c01454{left:878.685000px;}
.xa_c01454{left:902.010000px;}
.xb_c01454{left:929.670000px;}
.x7_c01454{left:946.080000px;}
.x6_c01454{left:948.675000px;}
.x8_c01454{left:956.445000px;}
.xe_c01454{left:973.725000px;}
.x11_c01454{left:996.195000px;}
.x14_c01454{left:1021.245000px;}
.x12_c01454{left:1022.970000px;}
.x13_c01454{left:1029.885000px;}
.xd_c01454{left:1031.610600px;}
.xc_c01454{left:1035.930000px;}
.x16_c01454{left:1039.395000px;}
.xf_c01454{left:1054.950000px;}
.x10_c01454{left:1060.995000px;}
.x17_c01454{left:1080.000000px;}
.x15_c01454{left:1081.725000px;}
@media print{
.v0_c01454{vertical-align:0.000000pt;}
.ls0_c01454{letter-spacing:0.000000pt;}
.ws0_c01454{word-spacing:0.000000pt;}
.fs9_c01454{font-size:3.072000pt;}
.fs1_c01454{font-size:5.333333pt;}
.fs2_c01454{font-size:9.226667pt;}
.fs3_c01454{font-size:12.266667pt;}
.fs0_c01454{font-size:15.360000pt;}
.fs6_c01454{font-size:18.453333pt;}
.fsa_c01454{font-size:21.493333pt;}
.fs8_c01454{font-size:24.586667pt;}
.fs5_c01454{font-size:30.720000pt;}
.fs4_c01454{font-size:36.853333pt;}
.fsb_c01454{font-size:52.213333pt;}
.fsc_c01454{font-size:79.893333pt;}
.fs7_c01454{font-size:162.826667pt;}
.y0_c01454{bottom:0.000000pt;}
.y1b_c01454{bottom:226.560000pt;}
.y1a_c01454{bottom:232.706667pt;}
.y19_c01454{bottom:242.693333pt;}
.y18_c01454{bottom:249.600000pt;}
.y17_c01454{bottom:270.333333pt;}
.y16_c01454{bottom:305.666667pt;}
.y15_c01454{bottom:308.733333pt;}
.yb_c01454{bottom:452.346667pt;}
.y9_c01454{bottom:483.840000pt;}
.ya_c01454{bottom:486.146667pt;}
.y14_c01454{bottom:604.413333pt;}
.y13_c01454{bottom:612.093333pt;}
.y12_c01454{bottom:612.866667pt;}
.y11_c01454{bottom:666.626667pt;}
.y10_c01454{bottom:732.666667pt;}
.yf_c01454{bottom:738.813333pt;}
.ye_c01454{bottom:873.213333pt;}
.y7_c01454{bottom:885.506667pt;}
.y8_c01454{bottom:888.573333pt;}
.yd_c01454{bottom:975.360000pt;}
.yc_c01454{bottom:980.733333pt;}
.y6_c01454{bottom:1217.280000pt;}
.y5_c01454{bottom:1265.666667pt;}
.y4_c01454{bottom:1271.813333pt;}
.y3_c01454{bottom:1277.186667pt;}
.y2_c01454{bottom:1281.786667pt;}
.y1_c01454{bottom:1284.866667pt;}
.hb_c01454{height:2.764500pt;}
.h3_c01454{height:4.799479pt;}
.h4_c01454{height:8.303099pt;}
.h5_c01454{height:11.038802pt;}
.h2_c01454{height:13.822500pt;}
.h8_c01454{height:16.606198pt;}
.hc_c01454{height:19.341901pt;}
.ha_c01454{height:22.125599pt;}
.h7_c01454{height:27.645000pt;}
.h6_c01454{height:33.164401pt;}
.hd_c01454{height:46.986901pt;}
.he_c01454{height:71.896198pt;}
.h9_c01454{height:146.528099pt;}
.h0_c01454{height:1352.453333pt;}
.h1_c01454{height:1352.666667pt;}
.w0_c01454{width:969.213333pt;}
.w1_c01454{width:969.333333pt;}
.x0_c01454{left:0.000000pt;}
.x2_c01454{left:542.973333pt;}
.x3_c01454{left:550.653333pt;}
.x4_c01454{left:555.266667pt;}
.x1_c01454{left:589.053333pt;}
.x5_c01454{left:592.133333pt;}
.x9_c01454{left:781.053333pt;}
.xa_c01454{left:801.786667pt;}
.xb_c01454{left:826.373333pt;}
.x7_c01454{left:840.960000pt;}
.x6_c01454{left:843.266667pt;}
.x8_c01454{left:850.173333pt;}
.xe_c01454{left:865.533333pt;}
.x11_c01454{left:885.506667pt;}
.x14_c01454{left:907.773333pt;}
.x12_c01454{left:909.306667pt;}
.x13_c01454{left:915.453333pt;}
.xd_c01454{left:916.987200pt;}
.xc_c01454{left:920.826667pt;}
.x16_c01454{left:923.906667pt;}
.xf_c01454{left:937.733333pt;}
.x10_c01454{left:943.106667pt;}
.x17_c01454{left:960.000000pt;}
.x15_c01454{left:961.533333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95b07c9767fadeee9ca04923.woff2')format("woff");}.ff1_c01455{font-family:ff1_c01455;line-height:1.109863;font-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_c01455{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m8_c01455{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);}
.m6_c01455{transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136350,0.000000,0.000000,0.250000,0,0);}
.m4_c01455{transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213325,0.000000,0.000000,0.250000,0,0);}
.m1_c01455{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m5_c01455{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m7_c01455{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m0_c01455{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m2_c01455{transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.827500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.827500,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;}
.fs5_c01455{font-size:6.900000px;}
.fs6_c01455{font-size:13.800000px;}
.fs2_c01455{font-size:20.760000px;}
.fs0_c01455{font-size:24.180000px;}
.fs1_c01455{font-size:34.560000px;}
.fs4_c01455{font-size:38.040000px;}
.fs7_c01455{font-size:69.120000px;}
.fs3_c01455{font-size:76.020000px;}
.y0_c01455{bottom:0.000000px;}
.ya_c01455{bottom:735.270000px;}
.yb_c01455{bottom:754.275000px;}
.y9_c01455{bottom:774.150000px;}
.y8_c01455{bottom:776.730000px;}
.y7_c01455{bottom:811.290000px;}
.y6_c01455{bottom:835.485000px;}
.y5_c01455{bottom:841.530000px;}
.y4_c01455{bottom:845.850000px;}
.y3_c01455{bottom:875.235000px;}
.y2_c01455{bottom:959.910000px;}
.y1_c01455{bottom:1376.355000px;}
.h7_c01455{height:6.209326px;}
.h8_c01455{height:12.418652px;}
.h4_c01455{height:18.681973px;}
.h2_c01455{height:21.759639px;}
.h3_c01455{height:31.100625px;}
.h6_c01455{height:34.232285px;}
.h9_c01455{height:62.201250px;}
.h5_c01455{height:68.410576px;}
.h0_c01455{height:1517.190000px;}
.h1_c01455{height:1517.250000px;}
.w0_c01455{width:1060.995000px;}
.w1_c01455{width:1061.250000px;}
.x0_c01455{left:0.000000px;}
.x3_c01455{left:6.045000px;}
.x4_c01455{left:19.005000px;}
.x5_c01455{left:31.965000px;}
.x6_c01455{left:39.750000px;}
.x2_c01455{left:49.245000px;}
.x1_c01455{left:85.530000px;}
.x7_c01455{left:133.050000px;}
@media print{
.v0_c01455{vertical-align:0.000000pt;}
.ls0_c01455{letter-spacing:0.000000pt;}
.ws0_c01455{word-spacing:0.000000pt;}
.fs5_c01455{font-size:6.133333pt;}
.fs6_c01455{font-size:12.266667pt;}
.fs2_c01455{font-size:18.453333pt;}
.fs0_c01455{font-size:21.493333pt;}
.fs1_c01455{font-size:30.720000pt;}
.fs4_c01455{font-size:33.813333pt;}
.fs7_c01455{font-size:61.440000pt;}
.fs3_c01455{font-size:67.573333pt;}
.y0_c01455{bottom:0.000000pt;}
.ya_c01455{bottom:653.573333pt;}
.yb_c01455{bottom:670.466667pt;}
.y9_c01455{bottom:688.133333pt;}
.y8_c01455{bottom:690.426667pt;}
.y7_c01455{bottom:721.146667pt;}
.y6_c01455{bottom:742.653333pt;}
.y5_c01455{bottom:748.026667pt;}
.y4_c01455{bottom:751.866667pt;}
.y3_c01455{bottom:777.986667pt;}
.y2_c01455{bottom:853.253333pt;}
.y1_c01455{bottom:1223.426667pt;}
.h7_c01455{height:5.519401pt;}
.h8_c01455{height:11.038802pt;}
.h4_c01455{height:16.606198pt;}
.h2_c01455{height:19.341901pt;}
.h3_c01455{height:27.645000pt;}
.h6_c01455{height:30.428698pt;}
.h9_c01455{height:55.290000pt;}
.h5_c01455{height:60.809401pt;}
.h0_c01455{height:1348.613333pt;}
.h1_c01455{height:1348.666667pt;}
.w0_c01455{width:943.106667pt;}
.w1_c01455{width:943.333333pt;}
.x0_c01455{left:0.000000pt;}
.x3_c01455{left:5.373333pt;}
.x4_c01455{left:16.893333pt;}
.x5_c01455{left:28.413333pt;}
.x6_c01455{left:35.333333pt;}
.x2_c01455{left:43.773333pt;}
.x1_c01455{left:76.026667pt;}
.x7_c01455{left:118.266667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d4d1398f68037ea4f2f1a56.woff2')format("woff");}.ff1_c01456{font-family:ff1_c01456;line-height:1.109863;font-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_c01456{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c01456{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01456{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);}
.m2_c01456{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1_c01456{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c01456{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.v0_c01456{vertical-align:0.000000px;}
.v1_c01456{vertical-align:3.480000px;}
.ls1_c01456{letter-spacing:0.000000px;}
.ls0_c01456{letter-spacing:31.814400px;}
.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;}
.fs2_c01456{font-size:3.456000px;}
.fs3_c01456{font-size:6.000000px;}
.fs0_c01456{font-size:10.380000px;}
.fs5_c01456{font-size:13.800000px;}
.fs1_c01456{font-size:17.280000px;}
.fs4_c01456{font-size:20.760000px;}
.fs6_c01456{font-size:31.080000px;}
.y0_c01456{bottom:0.000000px;}
.ya_c01456{bottom:365.475000px;}
.y9_c01456{bottom:477.795000px;}
.y8_c01456{bottom:658.365000px;}
.y7_c01456{bottom:660.090000px;}
.y6_c01456{bottom:686.880000px;}
.y5_c01456{bottom:689.475000px;}
.y3_c01456{bottom:726.630000px;}
.y4_c01456{bottom:727.485000px;}
.y2_c01456{bottom:1359.930000px;}
.y1_c01456{bottom:1367.715000px;}
.h5_c01456{height:3.110063px;}
.h4_c01456{height:8.879414px;}
.h2_c01456{height:9.340986px;}
.h7_c01456{height:12.418652px;}
.h3_c01456{height:15.550313px;}
.h6_c01456{height:18.681973px;}
.h8_c01456{height:27.968965px;}
.h0_c01456{height:1521.510000px;}
.h1_c01456{height:1521.750000px;}
.w0_c01456{width:1060.995000px;}
.w1_c01456{width:1061.250000px;}
.x0_c01456{left:0.000000px;}
.x5_c01456{left:980.640000px;}
.x3_c01456{left:997.920000px;}
.x2_c01456{left:1000.515000px;}
.x1_c01456{left:1004.835000px;}
.x4_c01456{left:1009.155000px;}
.x8_c01456{left:1016.925000px;}
.x6_c01456{left:1020.390000px;}
.x7_c01456{left:1027.290000px;}
.x9_c01456{left:1048.035000px;}
@media print{
.v0_c01456{vertical-align:0.000000pt;}
.v1_c01456{vertical-align:3.093333pt;}
.ls1_c01456{letter-spacing:0.000000pt;}
.ls0_c01456{letter-spacing:28.279467pt;}
.ws0_c01456{word-spacing:0.000000pt;}
.fs2_c01456{font-size:3.072000pt;}
.fs3_c01456{font-size:5.333333pt;}
.fs0_c01456{font-size:9.226667pt;}
.fs5_c01456{font-size:12.266667pt;}
.fs1_c01456{font-size:15.360000pt;}
.fs4_c01456{font-size:18.453333pt;}
.fs6_c01456{font-size:27.626667pt;}
.y0_c01456{bottom:0.000000pt;}
.ya_c01456{bottom:324.866667pt;}
.y9_c01456{bottom:424.706667pt;}
.y8_c01456{bottom:585.213333pt;}
.y7_c01456{bottom:586.746667pt;}
.y6_c01456{bottom:610.560000pt;}
.y5_c01456{bottom:612.866667pt;}
.y3_c01456{bottom:645.893333pt;}
.y4_c01456{bottom:646.653333pt;}
.y2_c01456{bottom:1208.826667pt;}
.y1_c01456{bottom:1215.746667pt;}
.h5_c01456{height:2.764500pt;}
.h4_c01456{height:7.892813pt;}
.h2_c01456{height:8.303099pt;}
.h7_c01456{height:11.038802pt;}
.h3_c01456{height:13.822500pt;}
.h6_c01456{height:16.606198pt;}
.h8_c01456{height:24.861302pt;}
.h0_c01456{height:1352.453333pt;}
.h1_c01456{height:1352.666667pt;}
.w0_c01456{width:943.106667pt;}
.w1_c01456{width:943.333333pt;}
.x0_c01456{left:0.000000pt;}
.x5_c01456{left:871.680000pt;}
.x3_c01456{left:887.040000pt;}
.x2_c01456{left:889.346667pt;}
.x1_c01456{left:893.186667pt;}
.x4_c01456{left:897.026667pt;}
.x8_c01456{left:903.933333pt;}
.x6_c01456{left:907.013333pt;}
.x7_c01456{left:913.146667pt;}
.x9_c01456{left:931.586667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01457;src:url('chunks/assets/font_f80cfcbf553f15d579f047fb.woff2')format("woff");}.ff1_c01457{font-family:ff1_c01457;line-height:1.109863;font-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_c01457{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m18_c01457{transform:matrix(0.090300,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090300,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090300,0.000000,0.000000,0.250000,0,0);}
.md_c01457{transform:matrix(0.105600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.105600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.105600,0.000000,0.000000,0.250000,0,0);}
.m1e_c01457{transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.112825,0.000000,0.000000,0.250000,0,0);}
.m0_c01457{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m15_c01457{transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154775,0.000000,0.000000,0.250000,0,0);}
.m1c_c01457{transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233325,0.000000,0.000000,0.250000,0,0);}
.m7_c01457{transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246150,0.000000,0.000000,0.250000,0,0);}
.m13_c01457{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);}
.me_c01457{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);}
.m1b_c01457{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m5_c01457{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c01457{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m17_c01457{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);}
.m2_c01457{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01457{transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.330000,0.000000,0.000000,0.250000,0,0);}
.m10_c01457{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m19_c01457{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);}
.m1a_c01457{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m6_c01457{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);}
.m16_c01457{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);}
.m3_c01457{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.mc_c01457{transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.442500,0.000000,0.000000,0.250000,0,0);}
.m9_c01457{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m12_c01457{transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.477500,0.000000,0.000000,0.250000,0,0);}
.m1d_c01457{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m4_c01457{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.mb_c01457{transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.600000,0.000000,0.000000,0.250000,0,0);}
.m11_c01457{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.m1_c01457{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mf_c01457{transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.865000,0.000000,0.000000,0.250000,0,0);}
.m8_c01457{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.v0_c01457{vertical-align:0.000000px;}
.ls0_c01457{letter-spacing:0.000000px;}
.sc__c01457{text-shadow:none;}
.sc0_c01457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01457{-webkit-text-stroke:0px transparent;}
.sc0_c01457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01457{word-spacing:0.000000px;}
.fc0_c01457{color:transparent;}
.fsb_c01457{font-size:6.000000px;}
.fsa_c01457{font-size:6.900000px;}
.fs1_c01457{font-size:10.380000px;}
.fs2_c01457{font-size:13.800000px;}
.fs0_c01457{font-size:17.280000px;}
.fsc_c01457{font-size:20.760000px;}
.fs7_c01457{font-size:24.180000px;}
.fs5_c01457{font-size:27.660000px;}
.fs6_c01457{font-size:31.080000px;}
.fs10_c01457{font-size:34.560000px;}
.fs4_c01457{font-size:38.040000px;}
.fs3_c01457{font-size:41.460000px;}
.fs9_c01457{font-size:44.940000px;}
.fs12_c01457{font-size:51.840000px;}
.fsd_c01457{font-size:62.220000px;}
.fs13_c01457{font-size:69.120000px;}
.fse_c01457{font-size:72.600000px;}
.fs11_c01457{font-size:89.880000px;}
.fsf_c01457{font-size:93.300000px;}
.fs8_c01457{font-size:107.160000px;}
.y0_c01457{bottom:0.000000px;}
.y26_c01457{bottom:838.950000px;}
.y25_c01457{bottom:847.590000px;}
.y24_c01457{bottom:865.725000px;}
.y23_c01457{bottom:983.235000px;}
.y22_c01457{bottom:984.960000px;}
.y21_c01457{bottom:991.875000px;}
.y20_c01457{bottom:1014.330000px;}
.y1f_c01457{bottom:1023.840000px;}
.y1e_c01457{bottom:1091.235000px;}
.y1d_c01457{bottom:1116.285000px;}
.y1c_c01457{bottom:1137.030000px;}
.y1b_c01457{bottom:1140.480000px;}
.y19_c01457{bottom:1149.990000px;}
.y1a_c01457{bottom:1164.675000px;}
.y18_c01457{bottom:1165.530000px;}
.y17_c01457{bottom:1176.765000px;}
.y16_c01457{bottom:1186.275000px;}
.y14_c01457{bottom:1189.725000px;}
.y15_c01457{bottom:1194.045000px;}
.y12_c01457{bottom:1203.555000px;}
.y13_c01457{bottom:1209.600000px;}
.y11_c01457{bottom:1214.790000px;}
.y10_c01457{bottom:1242.435000px;}
.yf_c01457{bottom:1266.630000px;}
.ye_c01457{bottom:1278.720000px;}
.yd_c01457{bottom:1291.680000px;}
.yc_c01457{bottom:1301.190000px;}
.yb_c01457{bottom:1317.600000px;}
.ya_c01457{bottom:1322.790000px;}
.y9_c01457{bottom:1337.475000px;}
.y8_c01457{bottom:1363.395000px;}
.y7_c01457{bottom:1369.440000px;}
.y6_c01457{bottom:1370.310000px;}
.y5_c01457{bottom:1377.210000px;}
.y4_c01457{bottom:1378.950000px;}
.y3_c01457{bottom:1383.270000px;}
.y2_c01457{bottom:1402.275000px;}
.y1_c01457{bottom:1408.320000px;}
.hd_c01457{height:5.399414px;}
.hc_c01457{height:6.209326px;}
.h3_c01457{height:9.340986px;}
.h4_c01457{height:12.418652px;}
.h2_c01457{height:15.550313px;}
.he_c01457{height:18.681973px;}
.h9_c01457{height:21.759639px;}
.h7_c01457{height:24.891299px;}
.h8_c01457{height:27.968965px;}
.h12_c01457{height:31.100625px;}
.h6_c01457{height:34.232285px;}
.h5_c01457{height:37.309951px;}
.hb_c01457{height:40.441611px;}
.h14_c01457{height:46.650937px;}
.hf_c01457{height:55.991924px;}
.h15_c01457{height:62.201250px;}
.h10_c01457{height:65.332910px;}
.h13_c01457{height:80.883223px;}
.h11_c01457{height:83.960889px;}
.ha_c01457{height:96.433535px;}
.h0_c01457{height:1517.190000px;}
.h1_c01457{height:1517.250000px;}
.w0_c01457{width:1060.995000px;}
.w1_c01457{width:1061.250000px;}
.x0_c01457{left:0.000000px;}
.x2_c01457{left:1.725000px;}
.x5_c01457{left:4.320000px;}
.x7_c01457{left:6.915000px;}
.xa_c01457{left:11.235000px;}
.x3_c01457{left:15.555000px;}
.x9_c01457{left:19.005000px;}
.x8_c01457{left:25.050000px;}
.xb_c01457{left:87.270000px;}
.x1_c01457{left:144.285000px;}
.x6_c01457{left:166.755000px;}
.x4_c01457{left:171.075000px;}
@media print{
.v0_c01457{vertical-align:0.000000pt;}
.ls0_c01457{letter-spacing:0.000000pt;}
.ws0_c01457{word-spacing:0.000000pt;}
.fsb_c01457{font-size:5.333333pt;}
.fsa_c01457{font-size:6.133333pt;}
.fs1_c01457{font-size:9.226667pt;}
.fs2_c01457{font-size:12.266667pt;}
.fs0_c01457{font-size:15.360000pt;}
.fsc_c01457{font-size:18.453333pt;}
.fs7_c01457{font-size:21.493333pt;}
.fs5_c01457{font-size:24.586667pt;}
.fs6_c01457{font-size:27.626667pt;}
.fs10_c01457{font-size:30.720000pt;}
.fs4_c01457{font-size:33.813333pt;}
.fs3_c01457{font-size:36.853333pt;}
.fs9_c01457{font-size:39.946667pt;}
.fs12_c01457{font-size:46.080000pt;}
.fsd_c01457{font-size:55.306667pt;}
.fs13_c01457{font-size:61.440000pt;}
.fse_c01457{font-size:64.533333pt;}
.fs11_c01457{font-size:79.893333pt;}
.fsf_c01457{font-size:82.933333pt;}
.fs8_c01457{font-size:95.253333pt;}
.y0_c01457{bottom:0.000000pt;}
.y26_c01457{bottom:745.733333pt;}
.y25_c01457{bottom:753.413333pt;}
.y24_c01457{bottom:769.533333pt;}
.y23_c01457{bottom:873.986667pt;}
.y22_c01457{bottom:875.520000pt;}
.y21_c01457{bottom:881.666667pt;}
.y20_c01457{bottom:901.626667pt;}
.y1f_c01457{bottom:910.080000pt;}
.y1e_c01457{bottom:969.986667pt;}
.y1d_c01457{bottom:992.253333pt;}
.y1c_c01457{bottom:1010.693333pt;}
.y1b_c01457{bottom:1013.760000pt;}
.y19_c01457{bottom:1022.213333pt;}
.y1a_c01457{bottom:1035.266667pt;}
.y18_c01457{bottom:1036.026667pt;}
.y17_c01457{bottom:1046.013333pt;}
.y16_c01457{bottom:1054.466667pt;}
.y14_c01457{bottom:1057.533333pt;}
.y15_c01457{bottom:1061.373333pt;}
.y12_c01457{bottom:1069.826667pt;}
.y13_c01457{bottom:1075.200000pt;}
.y11_c01457{bottom:1079.813333pt;}
.y10_c01457{bottom:1104.386667pt;}
.yf_c01457{bottom:1125.893333pt;}
.ye_c01457{bottom:1136.640000pt;}
.yd_c01457{bottom:1148.160000pt;}
.yc_c01457{bottom:1156.613333pt;}
.yb_c01457{bottom:1171.200000pt;}
.ya_c01457{bottom:1175.813333pt;}
.y9_c01457{bottom:1188.866667pt;}
.y8_c01457{bottom:1211.906667pt;}
.y7_c01457{bottom:1217.280000pt;}
.y6_c01457{bottom:1218.053333pt;}
.y5_c01457{bottom:1224.186667pt;}
.y4_c01457{bottom:1225.733333pt;}
.y3_c01457{bottom:1229.573333pt;}
.y2_c01457{bottom:1246.466667pt;}
.y1_c01457{bottom:1251.840000pt;}
.hd_c01457{height:4.799479pt;}
.hc_c01457{height:5.519401pt;}
.h3_c01457{height:8.303099pt;}
.h4_c01457{height:11.038802pt;}
.h2_c01457{height:13.822500pt;}
.he_c01457{height:16.606198pt;}
.h9_c01457{height:19.341901pt;}
.h7_c01457{height:22.125599pt;}
.h8_c01457{height:24.861302pt;}
.h12_c01457{height:27.645000pt;}
.h6_c01457{height:30.428698pt;}
.h5_c01457{height:33.164401pt;}
.hb_c01457{height:35.948099pt;}
.h14_c01457{height:41.467500pt;}
.hf_c01457{height:49.770599pt;}
.h15_c01457{height:55.290000pt;}
.h10_c01457{height:58.073698pt;}
.h13_c01457{height:71.896198pt;}
.h11_c01457{height:74.631901pt;}
.ha_c01457{height:85.718698pt;}
.h0_c01457{height:1348.613333pt;}
.h1_c01457{height:1348.666667pt;}
.w0_c01457{width:943.106667pt;}
.w1_c01457{width:943.333333pt;}
.x0_c01457{left:0.000000pt;}
.x2_c01457{left:1.533333pt;}
.x5_c01457{left:3.840000pt;}
.x7_c01457{left:6.146667pt;}
.xa_c01457{left:9.986667pt;}
.x3_c01457{left:13.826667pt;}
.x9_c01457{left:16.893333pt;}
.x8_c01457{left:22.266667pt;}
.xb_c01457{left:77.573333pt;}
.x1_c01457{left:128.253333pt;}
.x6_c01457{left:148.226667pt;}
.x4_c01457{left:152.066667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_212419e34f53290a58b3fe84.woff2')format("woff");}.ff1_c01458{font-family:ff1_c01458;line-height:1.109863;font-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_c01458{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);}
.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;}
.fs0_c01458{font-size:600.000000px;}
.y0_c01458{bottom:0.000000px;}
.y1_c01458{bottom:15.000000px;}
.h2_c01458{height:539.941406px;}
.h0_c01458{height:1521.510000px;}
.h1_c01458{height:1521.750000px;}
.w0_c01458{width:1060.995000px;}
.w1_c01458{width:1061.250000px;}
.x0_c01458{left:0.000000px;}
.x1_c01458{left:15.000000px;}
@media print{
.v0_c01458{vertical-align:0.000000pt;}
.ls0_c01458{letter-spacing:0.000000pt;}
.ws0_c01458{word-spacing:0.000000pt;}
.fs0_c01458{font-size:533.333333pt;}
.y0_c01458{bottom:0.000000pt;}
.y1_c01458{bottom:13.333333pt;}
.h2_c01458{height:479.947917pt;}
.h0_c01458{height:1352.453333pt;}
.h1_c01458{height:1352.666667pt;}
.w0_c01458{width:943.106667pt;}
.w1_c01458{width:943.333333pt;}
.x0_c01458{left:0.000000pt;}
.x1_c01458{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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;}
@font-face{font-family:ff1_c01459;src:url('chunks/assets/font_645a74d26d6484f26c52221d.woff2')format("woff");}.ff1_c01459{font-family:ff1_c01459;line-height:1.109863;font-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_c01459{transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);}
.m13_c01459{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m5_c01459{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m6_c01459{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m16_c01459{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);}
.m3_c01459{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);}
.mf_c01459{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);}
.m12_c01459{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m11_c01459{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c01459{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);}
.m0_c01459{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);}
.m1_c01459{transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.302500,0.000000,0.000000,0.250000,0,0);}
.m4_c01459{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);}
.m2_c01459{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);}
.m9_c01459{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m7_c01459{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);}
.m10_c01459{transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.395000,0.000000,0.000000,0.250000,0,0);}
.mb_c01459{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.me_c01459{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.md_c01459{transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.560000,0.000000,0.000000,0.250000,0,0);}
.m8_c01459{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m15_c01459{transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.650000,0.000000,0.000000,0.250000,0,0);}
.m14_c01459{transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.727500,0.000000,0.000000,0.250000,0,0);}
.v1_c01459{vertical-align:-13.800000px;}
.v0_c01459{vertical-align:0.000000px;}
.ls1_c01459{letter-spacing:0.000000px;}
.ls0_c01459{letter-spacing:52.807152px;}
.sc__c01459{text-shadow:none;}
.sc0_c01459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01459{-webkit-text-stroke:0px transparent;}
.sc0_c01459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01459{word-spacing:0.000000px;}
.fc0_c01459{color:transparent;}
.fsc_c01459{font-size:3.456000px;}
.fs4_c01459{font-size:6.900000px;}
.fs7_c01459{font-size:10.380000px;}
.fs5_c01459{font-size:13.800000px;}
.fse_c01459{font-size:17.280000px;}
.fsb_c01459{font-size:20.760000px;}
.fs0_c01459{font-size:27.660000px;}
.fs6_c01459{font-size:31.080000px;}
.fs2_c01459{font-size:34.560000px;}
.fsa_c01459{font-size:38.040000px;}
.fs8_c01459{font-size:41.460000px;}
.fs1_c01459{font-size:44.940000px;}
.fsd_c01459{font-size:65.640000px;}
.fs3_c01459{font-size:76.020000px;}
.fs9_c01459{font-size:165.900000px;}
.y0_c01459{bottom:0.000000px;}
.y16_c01459{bottom:324.870000px;}
.y15_c01459{bottom:337.830000px;}
.y14_c01459{bottom:502.845000px;}
.y10_c01459{bottom:528.765000px;}
.y12_c01459{bottom:529.635000px;}
.y13_c01459{bottom:531.360000px;}
.y11_c01459{bottom:547.770000px;}
.yf_c01459{bottom:578.880000px;}
.ye_c01459{bottom:651.450000px;}
.yd_c01459{bottom:663.555000px;}
.yb_c01459{bottom:703.290000px;}
.ya_c01459{bottom:704.160000px;}
.yc_c01459{bottom:709.350000px;}
.y9_c01459{bottom:710.205000px;}
.y8_c01459{bottom:715.395000px;}
.y7_c01459{bottom:728.355000px;}
.y6_c01459{bottom:738.720000px;}
.y5_c01459{bottom:749.955000px;}
.y4_c01459{bottom:779.325000px;}
.y3_c01459{bottom:788.835000px;}
.y2_c01459{bottom:803.520000px;}
.y1_c01459{bottom:837.210000px;}
.y1a_c01459{bottom:985.830000px;}
.y1b_c01459{bottom:986.685000px;}
.y17_c01459{bottom:993.600000px;}
.y19_c01459{bottom:996.195000px;}
.y18_c01459{bottom:997.920000px;}
.he_c01459{height:3.110063px;}
.hf_c01459{height:4.881973px;}
.h6_c01459{height:6.209326px;}
.h9_c01459{height:9.340986px;}
.h7_c01459{height:12.418652px;}
.h11_c01459{height:15.550313px;}
.hd_c01459{height:18.681973px;}
.h2_c01459{height:24.891299px;}
.h8_c01459{height:27.968965px;}
.h4_c01459{height:31.100625px;}
.hc_c01459{height:34.232285px;}
.ha_c01459{height:37.309951px;}
.h3_c01459{height:40.441611px;}
.h10_c01459{height:59.069590px;}
.h5_c01459{height:68.410576px;}
.hb_c01459{height:149.293799px;}
.h0_c01459{height:1517.190000px;}
.h1_c01459{height:1517.250000px;}
.w0_c01459{width:1060.995000px;}
.w1_c01459{width:1061.250000px;}
.x0_c01459{left:0.000000px;}
.x2_c01459{left:6.915000px;}
.x5_c01459{left:8.640000px;}
.x4_c01459{left:13.830000px;}
.x9_c01459{left:26.790000px;}
.x3_c01459{left:34.560408px;}
.x6_c01459{left:43.200000px;}
.x7_c01459{left:49.245000px;}
.x8_c01459{left:82.950000px;}
.xd_c01459{left:114.915000px;}
.xa_c01459{left:120.960000px;}
.xb_c01459{left:127.005000px;}
.x1_c01459{left:137.370000px;}
.xc_c01459{left:148.605000px;}
@media print{
.v1_c01459{vertical-align:-12.266667pt;}
.v0_c01459{vertical-align:0.000000pt;}
.ls1_c01459{letter-spacing:0.000000pt;}
.ls0_c01459{letter-spacing:46.939691pt;}
.ws0_c01459{word-spacing:0.000000pt;}
.fsc_c01459{font-size:3.072000pt;}
.fs4_c01459{font-size:6.133333pt;}
.fs7_c01459{font-size:9.226667pt;}
.fs5_c01459{font-size:12.266667pt;}
.fse_c01459{font-size:15.360000pt;}
.fsb_c01459{font-size:18.453333pt;}
.fs0_c01459{font-size:24.586667pt;}
.fs6_c01459{font-size:27.626667pt;}
.fs2_c01459{font-size:30.720000pt;}
.fsa_c01459{font-size:33.813333pt;}
.fs8_c01459{font-size:36.853333pt;}
.fs1_c01459{font-size:39.946667pt;}
.fsd_c01459{font-size:58.346667pt;}
.fs3_c01459{font-size:67.573333pt;}
.fs9_c01459{font-size:147.466667pt;}
.y0_c01459{bottom:0.000000pt;}
.y16_c01459{bottom:288.773333pt;}
.y15_c01459{bottom:300.293333pt;}
.y14_c01459{bottom:446.973333pt;}
.y10_c01459{bottom:470.013333pt;}
.y12_c01459{bottom:470.786667pt;}
.y13_c01459{bottom:472.320000pt;}
.y11_c01459{bottom:486.906667pt;}
.yf_c01459{bottom:514.560000pt;}
.ye_c01459{bottom:579.066667pt;}
.yd_c01459{bottom:589.826667pt;}
.yb_c01459{bottom:625.146667pt;}
.ya_c01459{bottom:625.920000pt;}
.yc_c01459{bottom:630.533333pt;}
.y9_c01459{bottom:631.293333pt;}
.y8_c01459{bottom:635.906667pt;}
.y7_c01459{bottom:647.426667pt;}
.y6_c01459{bottom:656.640000pt;}
.y5_c01459{bottom:666.626667pt;}
.y4_c01459{bottom:692.733333pt;}
.y3_c01459{bottom:701.186667pt;}
.y2_c01459{bottom:714.240000pt;}
.y1_c01459{bottom:744.186667pt;}
.y1a_c01459{bottom:876.293333pt;}
.y1b_c01459{bottom:877.053333pt;}
.y17_c01459{bottom:883.200000pt;}
.y19_c01459{bottom:885.506667pt;}
.y18_c01459{bottom:887.040000pt;}
.he_c01459{height:2.764500pt;}
.hf_c01459{height:4.339531pt;}
.h6_c01459{height:5.519401pt;}
.h9_c01459{height:8.303099pt;}
.h7_c01459{height:11.038802pt;}
.h11_c01459{height:13.822500pt;}
.hd_c01459{height:16.606198pt;}
.h2_c01459{height:22.125599pt;}
.h8_c01459{height:24.861302pt;}
.h4_c01459{height:27.645000pt;}
.hc_c01459{height:30.428698pt;}
.ha_c01459{height:33.164401pt;}
.h3_c01459{height:35.948099pt;}
.h10_c01459{height:52.506302pt;}
.h5_c01459{height:60.809401pt;}
.hb_c01459{height:132.705599pt;}
.h0_c01459{height:1348.613333pt;}
.h1_c01459{height:1348.666667pt;}
.w0_c01459{width:943.106667pt;}
.w1_c01459{width:943.333333pt;}
.x0_c01459{left:0.000000pt;}
.x2_c01459{left:6.146667pt;}
.x5_c01459{left:7.680000pt;}
.x4_c01459{left:12.293333pt;}
.x9_c01459{left:23.813333pt;}
.x3_c01459{left:30.720363pt;}
.x6_c01459{left:38.400000pt;}
.x7_c01459{left:43.773333pt;}
.x8_c01459{left:73.733333pt;}
.xd_c01459{left:102.146667pt;}
.xa_c01459{left:107.520000pt;}
.xb_c01459{left:112.893333pt;}
.x1_c01459{left:122.106667pt;}
.xc_c01459{left:132.093333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dc7f863b16160c05e166bb99.woff2')format("woff");}.ff1_c01460{font-family:ff1_c01460;line-height:1.109863;font-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_c01460{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c01460{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);}
.m6_c01460{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);}
.m1_c01460{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m5_c01460{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);}
.m3_c01460{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m7_c01460{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m0_c01460{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m8_c01460{transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.070000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.070000,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;}
.fc0_c01460{color:transparent;}
.fs2_c01460{font-size:3.456000px;}
.fs3_c01460{font-size:6.000000px;}
.fs6_c01460{font-size:10.380000px;}
.fs4_c01460{font-size:13.800000px;}
.fs1_c01460{font-size:17.280000px;}
.fs5_c01460{font-size:20.760000px;}
.fs0_c01460{font-size:24.180000px;}
.fs7_c01460{font-size:27.660000px;}
.y0_c01460{bottom:0.000000px;}
.yb_c01460{bottom:453.600000px;}
.ya_c01460{bottom:982.365000px;}
.y9_c01460{bottom:990.150000px;}
.y8_c01460{bottom:1052.355000px;}
.y7_c01460{bottom:1082.595000px;}
.y6_c01460{bottom:1084.320000px;}
.y5_c01460{bottom:1247.610000px;}
.y4_c01460{bottom:1255.395000px;}
.y2_c01460{bottom:1381.530000px;}
.y3_c01460{bottom:1382.400000px;}
.y1_c01460{bottom:1406.595000px;}
.h4_c01460{height:3.110063px;}
.h5_c01460{height:5.399414px;}
.h8_c01460{height:9.340986px;}
.h6_c01460{height:12.418652px;}
.h3_c01460{height:15.550313px;}
.h7_c01460{height:18.681973px;}
.h2_c01460{height:21.759639px;}
.h9_c01460{height:24.891299px;}
.h0_c01460{height:1521.510000px;}
.h1_c01460{height:1521.750000px;}
.w0_c01460{width:1060.995000px;}
.w1_c01460{width:1061.250000px;}
.x0_c01460{left:0.000000px;}
.x9_c01460{left:948.675000px;}
.x8_c01460{left:954.720000px;}
.x4_c01460{left:971.130000px;}
.x5_c01460{left:995.325000px;}
.x7_c01460{left:999.645000px;}
.x6_c01460{left:1010.010000px;}
.x2_c01460{left:1037.670000px;}
.x1_c01460{left:1051.485000px;}
.x3_c01460{left:1057.530000px;}
@media print{
.v0_c01460{vertical-align:0.000000pt;}
.ls0_c01460{letter-spacing:0.000000pt;}
.ws0_c01460{word-spacing:0.000000pt;}
.fs2_c01460{font-size:3.072000pt;}
.fs3_c01460{font-size:5.333333pt;}
.fs6_c01460{font-size:9.226667pt;}
.fs4_c01460{font-size:12.266667pt;}
.fs1_c01460{font-size:15.360000pt;}
.fs5_c01460{font-size:18.453333pt;}
.fs0_c01460{font-size:21.493333pt;}
.fs7_c01460{font-size:24.586667pt;}
.y0_c01460{bottom:0.000000pt;}
.yb_c01460{bottom:403.200000pt;}
.ya_c01460{bottom:873.213333pt;}
.y9_c01460{bottom:880.133333pt;}
.y8_c01460{bottom:935.426667pt;}
.y7_c01460{bottom:962.306667pt;}
.y6_c01460{bottom:963.840000pt;}
.y5_c01460{bottom:1108.986667pt;}
.y4_c01460{bottom:1115.906667pt;}
.y2_c01460{bottom:1228.026667pt;}
.y3_c01460{bottom:1228.800000pt;}
.y1_c01460{bottom:1250.306667pt;}
.h4_c01460{height:2.764500pt;}
.h5_c01460{height:4.799479pt;}
.h8_c01460{height:8.303099pt;}
.h6_c01460{height:11.038802pt;}
.h3_c01460{height:13.822500pt;}
.h7_c01460{height:16.606198pt;}
.h2_c01460{height:19.341901pt;}
.h9_c01460{height:22.125599pt;}
.h0_c01460{height:1352.453333pt;}
.h1_c01460{height:1352.666667pt;}
.w0_c01460{width:943.106667pt;}
.w1_c01460{width:943.333333pt;}
.x0_c01460{left:0.000000pt;}
.x9_c01460{left:843.266667pt;}
.x8_c01460{left:848.640000pt;}
.x4_c01460{left:863.226667pt;}
.x5_c01460{left:884.733333pt;}
.x7_c01460{left:888.573333pt;}
.x6_c01460{left:897.786667pt;}
.x2_c01460{left:922.373333pt;}
.x1_c01460{left:934.653333pt;}
.x3_c01460{left:940.026667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f0b0a99591fcc497e6b5711b.woff2')format("woff");}.ff1_c01461{font-family:ff1_c01461;line-height:1.109863;font-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_c01461{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c01461{transform:matrix(0.042675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.042675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.042675,0.000000,0.000000,0.250000,0,0);}
.m0_c01461{transform:matrix(0.052625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.052625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.052625,0.000000,0.000000,0.250000,0,0);}
.m6_c01461{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);}
.m7_c01461{transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.081575,0.000000,0.000000,0.250000,0,0);}
.ma_c01461{transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144400,0.000000,0.000000,0.250000,0,0);}
.m3_c01461{transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234875,0.000000,0.000000,0.250000,0,0);}
.mb_c01461{transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239800,0.000000,0.000000,0.250000,0,0);}
.m8_c01461{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.md_c01461{transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.372500,0.000000,0.000000,0.250000,0,0);}
.m5_c01461{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);}
.mc_c01461{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.me_c01461{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m9_c01461{transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.727500,0.000000,0.000000,0.250000,0,0);}
.m1_c01461{transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.007500,0.000000,0.000000,0.250000,0,0);}
.v0_c01461{vertical-align:0.000000px;}
.v1_c01461{vertical-align:3.480000px;}
.ls1_c01461{letter-spacing:0.000000px;}
.ls0_c01461{letter-spacing:33.611400px;}
.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;}
.fs8_c01461{font-size:3.456000px;}
.fs1_c01461{font-size:6.900000px;}
.fsb_c01461{font-size:13.800000px;}
.fs9_c01461{font-size:17.280000px;}
.fs3_c01461{font-size:20.760000px;}
.fs5_c01461{font-size:31.080000px;}
.fs2_c01461{font-size:34.560000px;}
.fsc_c01461{font-size:38.040000px;}
.fs7_c01461{font-size:41.460000px;}
.fs6_c01461{font-size:51.840000px;}
.fs0_c01461{font-size:65.640000px;}
.fs4_c01461{font-size:141.720000px;}
.fsa_c01461{font-size:172.800000px;}
.y0_c01461{bottom:0.000000px;}
.yf_c01461{bottom:886.470000px;}
.ye_c01461{bottom:902.880000px;}
.yd_c01461{bottom:914.970000px;}
.yb_c01461{bottom:918.435000px;}
.yc_c01461{bottom:929.670000px;}
.ya_c01461{bottom:982.365000px;}
.y9_c01461{bottom:1022.970000px;}
.y8_c01461{bottom:1027.290000px;}
.y7_c01461{bottom:1038.525000px;}
.y5_c01461{bottom:1053.210000px;}
.y6_c01461{bottom:1054.950000px;}
.y4_c01461{bottom:1087.770000px;}
.y3_c01461{bottom:1091.235000px;}
.y1_c01461{bottom:1100.730000px;}
.y2_c01461{bottom:1105.920000px;}
.h3_c01461{height:6.209326px;}
.ha_c01461{height:6.590063px;}
.hd_c01461{height:12.418652px;}
.hb_c01461{height:15.550313px;}
.h5_c01461{height:18.681973px;}
.h7_c01461{height:27.968965px;}
.h4_c01461{height:31.100625px;}
.he_c01461{height:34.232285px;}
.h9_c01461{height:37.309951px;}
.h8_c01461{height:46.650937px;}
.h2_c01461{height:59.069590px;}
.h6_c01461{height:127.534160px;}
.hc_c01461{height:155.503125px;}
.h0_c01461{height:1517.190000px;}
.h1_c01461{height:1517.250000px;}
.w0_c01461{width:1060.995000px;}
.w1_c01461{width:1061.250000px;}
.x0_c01461{left:0.000000px;}
.x5_c01461{left:92.445000px;}
.x2_c01461{left:160.710000px;}
.x3_c01461{left:165.885000px;}
.x6_c01461{left:181.440000px;}
.x1_c01461{left:187.485000px;}
.x4_c01461{left:196.995000px;}
@media print{
.v0_c01461{vertical-align:0.000000pt;}
.v1_c01461{vertical-align:3.093333pt;}
.ls1_c01461{letter-spacing:0.000000pt;}
.ls0_c01461{letter-spacing:29.876800pt;}
.ws0_c01461{word-spacing:0.000000pt;}
.fs8_c01461{font-size:3.072000pt;}
.fs1_c01461{font-size:6.133333pt;}
.fsb_c01461{font-size:12.266667pt;}
.fs9_c01461{font-size:15.360000pt;}
.fs3_c01461{font-size:18.453333pt;}
.fs5_c01461{font-size:27.626667pt;}
.fs2_c01461{font-size:30.720000pt;}
.fsc_c01461{font-size:33.813333pt;}
.fs7_c01461{font-size:36.853333pt;}
.fs6_c01461{font-size:46.080000pt;}
.fs0_c01461{font-size:58.346667pt;}
.fs4_c01461{font-size:125.973333pt;}
.fsa_c01461{font-size:153.600000pt;}
.y0_c01461{bottom:0.000000pt;}
.yf_c01461{bottom:787.973333pt;}
.ye_c01461{bottom:802.560000pt;}
.yd_c01461{bottom:813.306667pt;}
.yb_c01461{bottom:816.386667pt;}
.yc_c01461{bottom:826.373333pt;}
.ya_c01461{bottom:873.213333pt;}
.y9_c01461{bottom:909.306667pt;}
.y8_c01461{bottom:913.146667pt;}
.y7_c01461{bottom:923.133333pt;}
.y5_c01461{bottom:936.186667pt;}
.y6_c01461{bottom:937.733333pt;}
.y4_c01461{bottom:966.906667pt;}
.y3_c01461{bottom:969.986667pt;}
.y1_c01461{bottom:978.426667pt;}
.y2_c01461{bottom:983.040000pt;}
.h3_c01461{height:5.519401pt;}
.ha_c01461{height:5.857833pt;}
.hd_c01461{height:11.038802pt;}
.hb_c01461{height:13.822500pt;}
.h5_c01461{height:16.606198pt;}
.h7_c01461{height:24.861302pt;}
.h4_c01461{height:27.645000pt;}
.he_c01461{height:30.428698pt;}
.h9_c01461{height:33.164401pt;}
.h8_c01461{height:41.467500pt;}
.h2_c01461{height:52.506302pt;}
.h6_c01461{height:113.363698pt;}
.hc_c01461{height:138.225000pt;}
.h0_c01461{height:1348.613333pt;}
.h1_c01461{height:1348.666667pt;}
.w0_c01461{width:943.106667pt;}
.w1_c01461{width:943.333333pt;}
.x0_c01461{left:0.000000pt;}
.x5_c01461{left:82.173333pt;}
.x2_c01461{left:142.853333pt;}
.x3_c01461{left:147.453333pt;}
.x6_c01461{left:161.280000pt;}
.x1_c01461{left:166.653333pt;}
.x4_c01461{left:175.106667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01462 {
    display:none;
  }
  .loading-indicator_c01462.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01462 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01462 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01462" -> "#page-container .classname_c01462")
 */
.pf_c01462 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01462 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01462 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01462 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01462 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01462 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01462 {overflow:visible;}
  }
}
.c_c01462 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01462 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01462:after { /* webkit #35443 */
  content: '';
}
.t_c01462:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01462 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01462 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01462 { /* info for Javascript */
  display:none;
}
.l_c01462 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01462 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01462 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01462:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01462 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01462.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01462.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01462 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01462{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01462;src:url('chunks/assets/font_05b990a4f17c8116ff35b555.woff2')format("woff");}.ff1_c01462{font-family:ff1_c01462;line-height:1.109863;font-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_c01462{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m3_c01462{transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.041025,0.000000,0.000000,0.250000,0,0);}
.m7_c01462{transform:matrix(0.065575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.065575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.065575,0.000000,0.000000,0.250000,0,0);}
.m1_c01462{transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136850,0.000000,0.000000,0.250000,0,0);}
.m6_c01462{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.mc_c01462{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.mb_c01462{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01462{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m8_c01462{transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.405000,0.000000,0.000000,0.250000,0,0);}
.m5_c01462{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma_c01462{transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.447500,0.000000,0.000000,0.250000,0,0);}
.m0_c01462{transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.657500,0.000000,0.000000,0.250000,0,0);}
.m9_c01462{transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.790000,0.000000,0.000000,0.250000,0,0);}
.v0_c01462{vertical-align:0.000000px;}
.ls0_c01462{letter-spacing:0.000000px;}
.sc__c01462{text-shadow:none;}
.sc0_c01462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01462{-webkit-text-stroke:0px transparent;}
.sc0_c01462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01462{word-spacing:0.000000px;}
.fc0_c01462{color:transparent;}
.fs2_c01462{font-size:3.456000px;}
.fs6_c01462{font-size:6.900000px;}
.fs4_c01462{font-size:10.380000px;}
.fsb_c01462{font-size:17.280000px;}
.fs5_c01462{font-size:20.760000px;}
.fsa_c01462{font-size:24.180000px;}
.fs9_c01462{font-size:27.660000px;}
.fs8_c01462{font-size:34.560000px;}
.fs0_c01462{font-size:38.040000px;}
.fs1_c01462{font-size:86.400000px;}
.fs3_c01462{font-size:152.040000px;}
.fs7_c01462{font-size:172.800000px;}
.y0_c01462{bottom:0.000000px;}
.y10_c01462{bottom:547.770000px;}
.y11_c01462{bottom:548.640000px;}
.yc_c01462{bottom:869.190000px;}
.yf_c01462{bottom:1096.410000px;}
.ye_c01462{bottom:1098.150000px;}
.yd_c01462{bottom:1148.250000px;}
.yb_c01462{bottom:1168.125000px;}
.ya_c01462{bottom:1187.130000px;}
.y8_c01462{bottom:1260.570000px;}
.y9_c01462{bottom:1263.165000px;}
.y4_c01462{bottom:1274.400000px;}
.y5_c01462{bottom:1309.830000px;}
.y2_c01462{bottom:1327.965000px;}
.y3_c01462{bottom:1342.650000px;}
.y1_c01462{bottom:1349.565000px;}
.y6_c01462{bottom:1410.915000px;}
.y7_c01462{bottom:1411.770000px;}
.h4_c01462{height:3.110063px;}
.h8_c01462{height:6.209326px;}
.h6_c01462{height:9.340986px;}
.hd_c01462{height:15.550313px;}
.h7_c01462{height:18.681973px;}
.hc_c01462{height:21.759639px;}
.hb_c01462{height:24.891299px;}
.ha_c01462{height:31.100625px;}
.h2_c01462{height:34.232285px;}
.h3_c01462{height:77.751563px;}
.h5_c01462{height:136.821152px;}
.h9_c01462{height:155.503125px;}
.h0_c01462{height:1521.510000px;}
.h1_c01462{height:1521.750000px;}
.w0_c01462{width:1060.995000px;}
.w1_c01462{width:1061.250000px;}
.x0_c01462{left:0.000000px;}
.x2_c01462{left:952.125000px;}
.x4_c01462{left:954.720000px;}
.x6_c01462{left:957.315000px;}
.x1_c01462{left:962.490000px;}
.x5_c01462{left:970.275000px;}
.xd_c01462{left:975.450000px;}
.x3_c01462{left:984.960000px;}
.xe_c01462{left:986.685000px;}
.xb_c01462{left:988.410000px;}
.x9_c01462{left:990.150000px;}
.xa_c01462{left:1006.560000px;}
.xc_c01462{left:1016.925000px;}
.x7_c01462{left:1022.115000px;}
.x8_c01462{left:1032.480000px;}
@media print{
.v0_c01462{vertical-align:0.000000pt;}
.ls0_c01462{letter-spacing:0.000000pt;}
.ws0_c01462{word-spacing:0.000000pt;}
.fs2_c01462{font-size:3.072000pt;}
.fs6_c01462{font-size:6.133333pt;}
.fs4_c01462{font-size:9.226667pt;}
.fsb_c01462{font-size:15.360000pt;}
.fs5_c01462{font-size:18.453333pt;}
.fsa_c01462{font-size:21.493333pt;}
.fs9_c01462{font-size:24.586667pt;}
.fs8_c01462{font-size:30.720000pt;}
.fs0_c01462{font-size:33.813333pt;}
.fs1_c01462{font-size:76.800000pt;}
.fs3_c01462{font-size:135.146667pt;}
.fs7_c01462{font-size:153.600000pt;}
.y0_c01462{bottom:0.000000pt;}
.y10_c01462{bottom:486.906667pt;}
.y11_c01462{bottom:487.680000pt;}
.yc_c01462{bottom:772.613333pt;}
.yf_c01462{bottom:974.586667pt;}
.ye_c01462{bottom:976.133333pt;}
.yd_c01462{bottom:1020.666667pt;}
.yb_c01462{bottom:1038.333333pt;}
.ya_c01462{bottom:1055.226667pt;}
.y8_c01462{bottom:1120.506667pt;}
.y9_c01462{bottom:1122.813333pt;}
.y4_c01462{bottom:1132.800000pt;}
.y5_c01462{bottom:1164.293333pt;}
.y2_c01462{bottom:1180.413333pt;}
.y3_c01462{bottom:1193.466667pt;}
.y1_c01462{bottom:1199.613333pt;}
.y6_c01462{bottom:1254.146667pt;}
.y7_c01462{bottom:1254.906667pt;}
.h4_c01462{height:2.764500pt;}
.h8_c01462{height:5.519401pt;}
.h6_c01462{height:8.303099pt;}
.hd_c01462{height:13.822500pt;}
.h7_c01462{height:16.606198pt;}
.hc_c01462{height:19.341901pt;}
.hb_c01462{height:22.125599pt;}
.ha_c01462{height:27.645000pt;}
.h2_c01462{height:30.428698pt;}
.h3_c01462{height:69.112500pt;}
.h5_c01462{height:121.618802pt;}
.h9_c01462{height:138.225000pt;}
.h0_c01462{height:1352.453333pt;}
.h1_c01462{height:1352.666667pt;}
.w0_c01462{width:943.106667pt;}
.w1_c01462{width:943.333333pt;}
.x0_c01462{left:0.000000pt;}
.x2_c01462{left:846.333333pt;}
.x4_c01462{left:848.640000pt;}
.x6_c01462{left:850.946667pt;}
.x1_c01462{left:855.546667pt;}
.x5_c01462{left:862.466667pt;}
.xd_c01462{left:867.066667pt;}
.x3_c01462{left:875.520000pt;}
.xe_c01462{left:877.053333pt;}
.xb_c01462{left:878.586667pt;}
.x9_c01462{left:880.133333pt;}
.xa_c01462{left:894.720000pt;}
.xc_c01462{left:903.933333pt;}
.x7_c01462{left:908.546667pt;}
.x8_c01462{left:917.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_c01463 {
    display:none;
  }
  .loading-indicator_c01463.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01463 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01463 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01463" -> "#page-container .classname_c01463")
 */
.pf_c01463 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01463 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01463 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01463 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01463 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01463 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01463 {overflow:visible;}
  }
}
.c_c01463 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01463 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01463:after { /* webkit #35443 */
  content: '';
}
.t_c01463:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01463 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01463 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01463 { /* info for Javascript */
  display:none;
}
.l_c01463 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01463 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01463 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01463:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01463 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01463.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01463.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01463 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01463{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01463;src:url('chunks/assets/font_5afabc2e6125e62e04ac0297.woff2')format("woff");}.ff1_c01463{font-family:ff1_c01463;line-height:1.109863;font-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_c01463{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m6_c01463{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m3_c01463{transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180500,0.000000,0.000000,0.250000,0,0);}
.m7_c01463{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);}
.m0_c01463{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);}
.m8_c01463{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);}
.m5_c01463{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);}
.m4_c01463{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m1_c01463{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m9_c01463{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);}
.ma_c01463{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.v1_c01463{vertical-align:-3.480000px;}
.v0_c01463{vertical-align:0.000000px;}
.ls1_c01463{letter-spacing:0.000000px;}
.ls0_c01463{letter-spacing:43.216800px;}
.sc__c01463{text-shadow:none;}
.sc0_c01463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01463{-webkit-text-stroke:0px transparent;}
.sc0_c01463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01463{word-spacing:0.000000px;}
.fc0_c01463{color:transparent;}
.fsa_c01463{font-size:3.456000px;}
.fs3_c01463{font-size:6.000000px;}
.fs1_c01463{font-size:6.900000px;}
.fs7_c01463{font-size:10.380000px;}
.fs2_c01463{font-size:13.800000px;}
.fs0_c01463{font-size:17.280000px;}
.fs9_c01463{font-size:20.760000px;}
.fs8_c01463{font-size:24.180000px;}
.fsb_c01463{font-size:31.080000px;}
.fs6_c01463{font-size:38.040000px;}
.fs5_c01463{font-size:41.460000px;}
.fs4_c01463{font-size:51.840000px;}
.y0_c01463{bottom:0.000000px;}
.yd_c01463{bottom:442.365000px;}
.yc_c01463{bottom:444.090000px;}
.ya_c01463{bottom:550.365000px;}
.yb_c01463{bottom:552.090000px;}
.y9_c01463{bottom:1130.970000px;}
.y8_c01463{bottom:1132.710000px;}
.y7_c01463{bottom:1225.155000px;}
.y6_c01463{bottom:1230.330000px;}
.y5_c01463{bottom:1231.200000px;}
.y4_c01463{bottom:1240.710000px;}
.y3_c01463{bottom:1242.435000px;}
.y2_c01463{bottom:1252.800000px;}
.y1_c01463{bottom:1260.570000px;}
.hc_c01463{height:3.110063px;}
.h5_c01463{height:5.399414px;}
.h3_c01463{height:6.209326px;}
.h9_c01463{height:9.340986px;}
.h4_c01463{height:12.418652px;}
.h2_c01463{height:15.550313px;}
.hb_c01463{height:18.681973px;}
.ha_c01463{height:21.759639px;}
.hd_c01463{height:27.968965px;}
.h8_c01463{height:34.232285px;}
.h7_c01463{height:37.309951px;}
.h6_c01463{height:46.650937px;}
.h0_c01463{height:1517.190000px;}
.h1_c01463{height:1517.250000px;}
.w0_c01463{width:1060.995000px;}
.w1_c01463{width:1061.250000px;}
.x0_c01463{left:0.000000px;}
.x5_c01463{left:8.640000px;}
.x1_c01463{left:16.410000px;}
.x6_c01463{left:28.515000px;}
.x2_c01463{left:30.239325px;}
.x8_c01463{left:40.605000px;}
.x9_c01463{left:50.970000px;}
.x7_c01463{left:57.030000px;}
.x3_c01463{left:58.755000px;}
.x4_c01463{left:67.395000px;}
.xa_c01463{left:141.690000px;}
.xb_c01463{left:152.925000px;}
.xc_c01463{left:159.840000px;}
.xd_c01463{left:188.355000px;}
@media print{
.v1_c01463{vertical-align:-3.093333pt;}
.v0_c01463{vertical-align:0.000000pt;}
.ls1_c01463{letter-spacing:0.000000pt;}
.ls0_c01463{letter-spacing:38.414933pt;}
.ws0_c01463{word-spacing:0.000000pt;}
.fsa_c01463{font-size:3.072000pt;}
.fs3_c01463{font-size:5.333333pt;}
.fs1_c01463{font-size:6.133333pt;}
.fs7_c01463{font-size:9.226667pt;}
.fs2_c01463{font-size:12.266667pt;}
.fs0_c01463{font-size:15.360000pt;}
.fs9_c01463{font-size:18.453333pt;}
.fs8_c01463{font-size:21.493333pt;}
.fsb_c01463{font-size:27.626667pt;}
.fs6_c01463{font-size:33.813333pt;}
.fs5_c01463{font-size:36.853333pt;}
.fs4_c01463{font-size:46.080000pt;}
.y0_c01463{bottom:0.000000pt;}
.yd_c01463{bottom:393.213333pt;}
.yc_c01463{bottom:394.746667pt;}
.ya_c01463{bottom:489.213333pt;}
.yb_c01463{bottom:490.746667pt;}
.y9_c01463{bottom:1005.306667pt;}
.y8_c01463{bottom:1006.853333pt;}
.y7_c01463{bottom:1089.026667pt;}
.y6_c01463{bottom:1093.626667pt;}
.y5_c01463{bottom:1094.400000pt;}
.y4_c01463{bottom:1102.853333pt;}
.y3_c01463{bottom:1104.386667pt;}
.y2_c01463{bottom:1113.600000pt;}
.y1_c01463{bottom:1120.506667pt;}
.hc_c01463{height:2.764500pt;}
.h5_c01463{height:4.799479pt;}
.h3_c01463{height:5.519401pt;}
.h9_c01463{height:8.303099pt;}
.h4_c01463{height:11.038802pt;}
.h2_c01463{height:13.822500pt;}
.hb_c01463{height:16.606198pt;}
.ha_c01463{height:19.341901pt;}
.hd_c01463{height:24.861302pt;}
.h8_c01463{height:30.428698pt;}
.h7_c01463{height:33.164401pt;}
.h6_c01463{height:41.467500pt;}
.h0_c01463{height:1348.613333pt;}
.h1_c01463{height:1348.666667pt;}
.w0_c01463{width:943.106667pt;}
.w1_c01463{width:943.333333pt;}
.x0_c01463{left:0.000000pt;}
.x5_c01463{left:7.680000pt;}
.x1_c01463{left:14.586667pt;}
.x6_c01463{left:25.346667pt;}
.x2_c01463{left:26.879400pt;}
.x8_c01463{left:36.093333pt;}
.x9_c01463{left:45.306667pt;}
.x7_c01463{left:50.693333pt;}
.x3_c01463{left:52.226667pt;}
.x4_c01463{left:59.906667pt;}
.xa_c01463{left:125.946667pt;}
.xb_c01463{left:135.933333pt;}
.xc_c01463{left:142.080000pt;}
.xd_c01463{left:167.426667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01464 {
    display:none;
  }
  .loading-indicator_c01464.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01464 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01464 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01464" -> "#page-container .classname_c01464")
 */
.pf_c01464 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01464 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01464 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01464 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01464 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01464 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01464 {overflow:visible;}
  }
}
.c_c01464 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01464 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01464:after { /* webkit #35443 */
  content: '';
}
.t_c01464:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01464 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01464 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01464 { /* info for Javascript */
  display:none;
}
.l_c01464 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01464 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01464 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01464:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01464 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01464.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01464.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01464 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01464{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01464;src:url('chunks/assets/font_d0eda7e7239166fee69ed64f.woff2')format("woff");}.ff1_c01464{font-family:ff1_c01464;line-height:1.109863;font-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_c01464{transform:matrix(0.062250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.062250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.062250,0.000000,0.000000,0.250000,0,0);}
.m1_c01464{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);}
.m0_c01464{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m4_c01464{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);}
.m2_c01464{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m5_c01464{transform:matrix(0.965000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.965000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.965000,0.000000,0.000000,0.250000,0,0);}
.v0_c01464{vertical-align:0.000000px;}
.ls0_c01464{letter-spacing:0.000000px;}
.sc__c01464{text-shadow:none;}
.sc0_c01464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01464{-webkit-text-stroke:0px transparent;}
.sc0_c01464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01464{word-spacing:0.000000px;}
.fc0_c01464{color:transparent;}
.fs1_c01464{font-size:10.380000px;}
.fs0_c01464{font-size:17.280000px;}
.fs3_c01464{font-size:20.760000px;}
.fs4_c01464{font-size:24.180000px;}
.fs2_c01464{font-size:100.200000px;}
.y0_c01464{bottom:0.000000px;}
.y8_c01464{bottom:1130.115000px;}
.y7_c01464{bottom:1150.845000px;}
.y5_c01464{bottom:1187.130000px;}
.y6_c01464{bottom:1208.730000px;}
.y3_c01464{bottom:1244.160000px;}
.y4_c01464{bottom:1246.755000px;}
.y2_c01464{bottom:1292.550000px;}
.y1_c01464{bottom:1293.405000px;}
.h3_c01464{height:9.340986px;}
.h2_c01464{height:15.550313px;}
.h5_c01464{height:18.681973px;}
.h6_c01464{height:21.759639px;}
.h4_c01464{height:90.170215px;}
.h0_c01464{height:1521.510000px;}
.h1_c01464{height:1521.750000px;}
.w0_c01464{width:1060.995000px;}
.w1_c01464{width:1061.250000px;}
.x0_c01464{left:0.000000px;}
.x5_c01464{left:953.850000px;}
.x6_c01464{left:962.490000px;}
.x3_c01464{left:997.920000px;}
.x4_c01464{left:1006.560000px;}
.x1_c01464{left:1037.670000px;}
.x7_c01464{left:1047.165000px;}
.x2_c01464{left:1049.760000px;}
@media print{
.v0_c01464{vertical-align:0.000000pt;}
.ls0_c01464{letter-spacing:0.000000pt;}
.ws0_c01464{word-spacing:0.000000pt;}
.fs1_c01464{font-size:9.226667pt;}
.fs0_c01464{font-size:15.360000pt;}
.fs3_c01464{font-size:18.453333pt;}
.fs4_c01464{font-size:21.493333pt;}
.fs2_c01464{font-size:89.066667pt;}
.y0_c01464{bottom:0.000000pt;}
.y8_c01464{bottom:1004.546667pt;}
.y7_c01464{bottom:1022.973333pt;}
.y5_c01464{bottom:1055.226667pt;}
.y6_c01464{bottom:1074.426667pt;}
.y3_c01464{bottom:1105.920000pt;}
.y4_c01464{bottom:1108.226667pt;}
.y2_c01464{bottom:1148.933333pt;}
.y1_c01464{bottom:1149.693333pt;}
.h3_c01464{height:8.303099pt;}
.h2_c01464{height:13.822500pt;}
.h5_c01464{height:16.606198pt;}
.h6_c01464{height:19.341901pt;}
.h4_c01464{height:80.151302pt;}
.h0_c01464{height:1352.453333pt;}
.h1_c01464{height:1352.666667pt;}
.w0_c01464{width:943.106667pt;}
.w1_c01464{width:943.333333pt;}
.x0_c01464{left:0.000000pt;}
.x5_c01464{left:847.866667pt;}
.x6_c01464{left:855.546667pt;}
.x3_c01464{left:887.040000pt;}
.x4_c01464{left:894.720000pt;}
.x1_c01464{left:922.373333pt;}
.x7_c01464{left:930.813333pt;}
.x2_c01464{left:933.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_c01465 {
    display:none;
  }
  .loading-indicator_c01465.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01465 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01465 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01465" -> "#page-container .classname_c01465")
 */
.pf_c01465 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01465 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01465 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01465 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01465 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01465 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01465 {overflow:visible;}
  }
}
.c_c01465 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01465 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01465:after { /* webkit #35443 */
  content: '';
}
.t_c01465:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01465 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01465 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01465 { /* info for Javascript */
  display:none;
}
.l_c01465 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01465 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01465 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01465:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01465 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01465.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01465.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01465 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01465{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01465;src:url('chunks/assets/font_67c26d26fd3eb53fb88f4276.woff2')format("woff");}.ff1_c01465{font-family:ff1_c01465;line-height:1.109863;font-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_c01465{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m21_c01465{transform:matrix(0.119125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.119125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.119125,0.000000,0.000000,0.250000,0,0);}
.m3a_c01465{transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120325,0.000000,0.000000,0.250000,0,0);}
.m1_c01465{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m38_c01465{transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146500,0.000000,0.000000,0.250000,0,0);}
.m34_c01465{transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150425,0.000000,0.000000,0.250000,0,0);}
.m19_c01465{transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151500,0.000000,0.000000,0.250000,0,0);}
.m1a_c01465{transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152550,0.000000,0.000000,0.250000,0,0);}
.m20_c01465{transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.153875,0.000000,0.000000,0.250000,0,0);}
.m3c_c01465{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);}
.m1d_c01465{transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156600,0.000000,0.000000,0.250000,0,0);}
.m18_c01465{transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159475,0.000000,0.000000,0.250000,0,0);}
.m2e_c01465{transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166675,0.000000,0.000000,0.250000,0,0);}
.m41_c01465{transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.168000,0.000000,0.000000,0.250000,0,0);}
.m48_c01465{transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175550,0.000000,0.000000,0.250000,0,0);}
.m2f_c01465{transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176350,0.000000,0.000000,0.250000,0,0);}
.m42_c01465{transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179275,0.000000,0.000000,0.250000,0,0);}
.m2c_c01465{transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180650,0.000000,0.000000,0.250000,0,0);}
.m3d_c01465{transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181375,0.000000,0.000000,0.250000,0,0);}
.m12_c01465{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m25_c01465{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);}
.m2d_c01465{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);}
.m23_c01465{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);}
.m30_c01465{transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.195800,0.000000,0.000000,0.250000,0,0);}
.m46_c01465{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);}
.m2b_c01465{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);}
.m33_c01465{transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.204925,0.000000,0.000000,0.250000,0,0);}
.md_c01465{transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205350,0.000000,0.000000,0.250000,0,0);}
.m3f_c01465{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);}
.m28_c01465{transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.211150,0.000000,0.000000,0.250000,0,0);}
.m29_c01465{transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212000,0.000000,0.000000,0.250000,0,0);}
.m27_c01465{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m39_c01465{transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.213575,0.000000,0.000000,0.250000,0,0);}
.m24_c01465{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);}
.m40_c01465{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);}
.m43_c01465{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);}
.m8_c01465{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);}
.m17_c01465{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);}
.m3b_c01465{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);}
.m1c_c01465{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);}
.m49_c01465{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);}
.m16_c01465{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);}
.m2_c01465{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);}
.m36_c01465{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m14_c01465{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.m15_c01465{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01465{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);}
.m44_c01465{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);}
.m1e_c01465{transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.322500,0.000000,0.000000,0.250000,0,0);}
.ma_c01465{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m47_c01465{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m32_c01465{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m11_c01465{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m7_c01465{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);}
.mb_c01465{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);}
.m31_c01465{transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.362500,0.000000,0.000000,0.250000,0,0);}
.m45_c01465{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m0_c01465{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m26_c01465{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.mf_c01465{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.mc_c01465{transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.397500,0.000000,0.000000,0.250000,0,0);}
.m10_c01465{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);}
.m2a_c01465{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.m9_c01465{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m6_c01465{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);}
.m5_c01465{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01465{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m4_c01465{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m35_c01465{transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.495000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01465{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);}
.m37_c01465{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.m22_c01465{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.me_c01465{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m3_c01465{transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.937500,0.000000,0.000000,0.250000,0,0);}
.v0_c01465{vertical-align:0.000000px;}
.ls1_c01465{letter-spacing:0.000000px;}
.ls0_c01465{letter-spacing:63.280740px;}
.sc__c01465{text-shadow:none;}
.sc0_c01465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01465{-webkit-text-stroke:0px transparent;}
.sc0_c01465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01465{word-spacing:0.000000px;}
.fc0_c01465{color:transparent;}
.fsd_c01465{font-size:3.456000px;}
.fsc_c01465{font-size:6.000000px;}
.fs1_c01465{font-size:6.900000px;}
.fsf_c01465{font-size:10.380000px;}
.fs4_c01465{font-size:13.800000px;}
.fs9_c01465{font-size:17.280000px;}
.fs19_c01465{font-size:20.760000px;}
.fs2_c01465{font-size:24.180000px;}
.fs3_c01465{font-size:27.660000px;}
.fs10_c01465{font-size:31.080000px;}
.fsa_c01465{font-size:34.560000px;}
.fsb_c01465{font-size:38.040000px;}
.fs1b_c01465{font-size:48.360000px;}
.fs8_c01465{font-size:51.840000px;}
.fs5_c01465{font-size:55.320000px;}
.fs7_c01465{font-size:58.740000px;}
.fs0_c01465{font-size:62.220000px;}
.fs18_c01465{font-size:65.640000px;}
.fse_c01465{font-size:69.120000px;}
.fs6_c01465{font-size:72.600000px;}
.fs11_c01465{font-size:76.020000px;}
.fs14_c01465{font-size:79.500000px;}
.fs17_c01465{font-size:82.920000px;}
.fs12_c01465{font-size:86.400000px;}
.fs15_c01465{font-size:89.880000px;}
.fs13_c01465{font-size:93.300000px;}
.fs16_c01465{font-size:100.200000px;}
.fs1a_c01465{font-size:114.060000px;}
.y0_c01465{bottom:0.000000px;}
.y4e_c01465{bottom:1147.395000px;}
.y4c_c01465{bottom:1148.250000px;}
.y4f_c01465{bottom:1149.120000px;}
.y4d_c01465{bottom:1153.440000px;}
.y4b_c01465{bottom:1156.035000px;}
.y4a_c01465{bottom:1157.760000px;}
.y49_c01465{bottom:1168.995000px;}
.y48_c01465{bottom:1169.850000px;}
.y46_c01465{bottom:1170.720000px;}
.y47_c01465{bottom:1175.910000px;}
.y44_c01465{bottom:1184.550000px;}
.y42_c01465{bottom:1187.130000px;}
.y45_c01465{bottom:1188.870000px;}
.y43_c01465{bottom:1194.045000px;}
.y3f_c01465{bottom:1202.685000px;}
.y39_c01465{bottom:1204.410000px;}
.y40_c01465{bottom:1205.280000px;}
.y3d_c01465{bottom:1206.150000px;}
.y3e_c01465{bottom:1210.470000px;}
.y3b_c01465{bottom:1213.050000px;}
.y3c_c01465{bottom:1214.790000px;}
.y3a_c01465{bottom:1216.515000px;}
.y41_c01465{bottom:1226.010000px;}
.y31_c01465{bottom:1257.120000px;}
.y33_c01465{bottom:1260.570000px;}
.y34_c01465{bottom:1263.165000px;}
.y30_c01465{bottom:1265.760000px;}
.y2f_c01465{bottom:1266.630000px;}
.y32_c01465{bottom:1267.485000px;}
.y2d_c01465{bottom:1268.355000px;}
.y2e_c01465{bottom:1269.210000px;}
.y2c_c01465{bottom:1270.080000px;}
.y2b_c01465{bottom:1270.950000px;}
.y2a_c01465{bottom:1278.720000px;}
.y28_c01465{bottom:1287.360000px;}
.y27_c01465{bottom:1288.230000px;}
.y25_c01465{bottom:1291.680000px;}
.y29_c01465{bottom:1292.550000px;}
.y26_c01465{bottom:1296.000000px;}
.y24_c01465{bottom:1297.725000px;}
.y22_c01465{bottom:1304.640000px;}
.y23_c01465{bottom:1307.235000px;}
.y1d_c01465{bottom:1309.830000px;}
.y1f_c01465{bottom:1310.685000px;}
.y1e_c01465{bottom:1311.555000px;}
.y20_c01465{bottom:1313.280000px;}
.y21_c01465{bottom:1314.150000px;}
.y1c_c01465{bottom:1315.005000px;}
.y35_c01465{bottom:1317.600000px;}
.y36_c01465{bottom:1319.325000px;}
.y15_c01465{bottom:1324.515000px;}
.y1b_c01465{bottom:1328.835000px;}
.y1a_c01465{bottom:1329.690000px;}
.y19_c01465{bottom:1331.430000px;}
.y18_c01465{bottom:1334.010000px;}
.y37_c01465{bottom:1346.970000px;}
.y38_c01465{bottom:1350.435000px;}
.y17_c01465{bottom:1354.755000px;}
.y16_c01465{bottom:1357.350000px;}
.y10_c01465{bottom:1373.760000px;}
.y13_c01465{bottom:1374.630000px;}
.yf_c01465{bottom:1377.210000px;}
.ye_c01465{bottom:1378.080000px;}
.yd_c01465{bottom:1378.950000px;}
.y14_c01465{bottom:1382.400000px;}
.y12_c01465{bottom:1391.910000px;}
.y11_c01465{bottom:1394.490000px;}
.y8_c01465{bottom:1403.130000px;}
.yb_c01465{bottom:1404.000000px;}
.ya_c01465{bottom:1404.870000px;}
.y9_c01465{bottom:1405.725000px;}
.y7_c01465{bottom:1406.595000px;}
.y1_c01465{bottom:1407.450000px;}
.yc_c01465{bottom:1412.640000px;}
.y6_c01465{bottom:1418.685000px;}
.y5_c01465{bottom:1423.005000px;}
.y4_c01465{bottom:1424.730000px;}
.y3_c01465{bottom:1432.515000px;}
.y2_c01465{bottom:1434.240000px;}
.hf_c01465{height:3.110063px;}
.he_c01465{height:5.399414px;}
.h3_c01465{height:6.209326px;}
.h12_c01465{height:9.340986px;}
.h6_c01465{height:12.418652px;}
.hb_c01465{height:15.550313px;}
.h1b_c01465{height:18.681973px;}
.h4_c01465{height:21.759639px;}
.h5_c01465{height:24.891299px;}
.h11_c01465{height:27.968965px;}
.hc_c01465{height:31.100625px;}
.hd_c01465{height:34.232285px;}
.h1d_c01465{height:43.519277px;}
.ha_c01465{height:46.650937px;}
.h7_c01465{height:49.782598px;}
.h9_c01465{height:52.860264px;}
.h2_c01465{height:55.991924px;}
.h1a_c01465{height:59.069590px;}
.h10_c01465{height:62.201250px;}
.h8_c01465{height:65.332910px;}
.h13_c01465{height:68.410576px;}
.h16_c01465{height:71.542236px;}
.h19_c01465{height:74.619902px;}
.h14_c01465{height:77.751563px;}
.h17_c01465{height:80.883223px;}
.h15_c01465{height:83.960889px;}
.h18_c01465{height:90.170215px;}
.h1c_c01465{height:102.642861px;}
.h0_c01465{height:1517.190000px;}
.h1_c01465{height:1517.250000px;}
.w0_c01465{width:1060.995000px;}
.w1_c01465{width:1061.250000px;}
.x0_c01465{left:0.000000px;}
.x34_c01465{left:27.645000px;}
.x17_c01465{left:29.370600px;}
.x35_c01465{left:38.010000px;}
.x1_c01465{left:350.790000px;}
.x4_c01465{left:524.445000px;}
.x7_c01465{left:530.490000px;}
.x8_c01465{left:552.090000px;}
.x9_c01465{left:570.240000px;}
.x11_c01465{left:576.285000px;}
.x3e_c01465{left:581.475000px;}
.x36_c01465{left:583.200000px;}
.x19_c01465{left:588.390000px;}
.x1e_c01465{left:591.840000px;}
.x43_c01465{left:601.350000px;}
.xa_c01465{left:603.075000px;}
.x1a_c01465{left:607.395000px;}
.x3f_c01465{left:616.035000px;}
.x1f_c01465{left:622.080000px;}
.x37_c01465{left:623.805000px;}
.xb_c01465{left:627.270000px;}
.x2_c01465{left:632.445000px;}
.x40_c01465{left:634.170000px;}
.x2f_c01465{left:635.910000px;}
.x38_c01465{left:638.490000px;}
.x1b_c01465{left:640.230000px;}
.x12_c01465{left:647.130000px;}
.xc_c01465{left:651.450000px;}
.x20_c01465{left:656.640000px;}
.xd_c01465{left:667.005000px;}
.x39_c01465{left:679.110000px;}
.x2b_c01465{left:680.835000px;}
.x3_c01465{left:683.430000px;}
.xe_c01465{left:688.605000px;}
.x27_c01465{left:691.200000px;}
.x3c_c01465{left:698.970000px;}
.x13_c01465{left:701.565000px;}
.x5_c01465{left:705.030000px;}
.x21_c01465{left:711.075000px;}
.xf_c01465{left:712.800000px;}
.x44_c01465{left:717.120000px;}
.x22_c01465{left:725.760000px;}
.x30_c01465{left:727.485000px;}
.x41_c01465{left:731.805000px;}
.x28_c01465{left:733.530000px;}
.x1c_c01465{left:735.270000px;}
.x6_c01465{left:737.850000px;}
.x23_c01465{left:753.405000px;}
.x16_c01465{left:755.130000px;}
.x14_c01465{left:767.235000px;}
.x2c_c01465{left:771.555000px;}
.x24_c01465{left:781.920000px;}
.x29_c01465{left:787.965000px;}
.x45_c01465{left:794.880000px;}
.x2d_c01465{left:802.650000px;}
.x42_c01465{left:805.245000px;}
.x3d_c01465{left:813.885000px;}
.x10_c01465{left:818.205000px;}
.x1d_c01465{left:825.120000px;}
.x15_c01465{left:827.715000px;}
.x3a_c01465{left:835.485000px;}
.x2a_c01465{left:838.080000px;}
.x25_c01465{left:844.995000px;}
.x2e_c01465{left:851.910000px;}
.x26_c01465{left:856.230000px;}
.x3b_c01465{left:868.320000px;}
.x18_c01465{left:871.770000px;}
.x31_c01465{left:884.730000px;}
.x32_c01465{left:900.285000px;}
.x33_c01465{left:915.840000px;}
@media print{
.v0_c01465{vertical-align:0.000000pt;}
.ls1_c01465{letter-spacing:0.000000pt;}
.ls0_c01465{letter-spacing:56.249547pt;}
.ws0_c01465{word-spacing:0.000000pt;}
.fsd_c01465{font-size:3.072000pt;}
.fsc_c01465{font-size:5.333333pt;}
.fs1_c01465{font-size:6.133333pt;}
.fsf_c01465{font-size:9.226667pt;}
.fs4_c01465{font-size:12.266667pt;}
.fs9_c01465{font-size:15.360000pt;}
.fs19_c01465{font-size:18.453333pt;}
.fs2_c01465{font-size:21.493333pt;}
.fs3_c01465{font-size:24.586667pt;}
.fs10_c01465{font-size:27.626667pt;}
.fsa_c01465{font-size:30.720000pt;}
.fsb_c01465{font-size:33.813333pt;}
.fs1b_c01465{font-size:42.986667pt;}
.fs8_c01465{font-size:46.080000pt;}
.fs5_c01465{font-size:49.173333pt;}
.fs7_c01465{font-size:52.213333pt;}
.fs0_c01465{font-size:55.306667pt;}
.fs18_c01465{font-size:58.346667pt;}
.fse_c01465{font-size:61.440000pt;}
.fs6_c01465{font-size:64.533333pt;}
.fs11_c01465{font-size:67.573333pt;}
.fs14_c01465{font-size:70.666667pt;}
.fs17_c01465{font-size:73.706667pt;}
.fs12_c01465{font-size:76.800000pt;}
.fs15_c01465{font-size:79.893333pt;}
.fs13_c01465{font-size:82.933333pt;}
.fs16_c01465{font-size:89.066667pt;}
.fs1a_c01465{font-size:101.386667pt;}
.y0_c01465{bottom:0.000000pt;}
.y4e_c01465{bottom:1019.906667pt;}
.y4c_c01465{bottom:1020.666667pt;}
.y4f_c01465{bottom:1021.440000pt;}
.y4d_c01465{bottom:1025.280000pt;}
.y4b_c01465{bottom:1027.586667pt;}
.y4a_c01465{bottom:1029.120000pt;}
.y49_c01465{bottom:1039.106667pt;}
.y48_c01465{bottom:1039.866667pt;}
.y46_c01465{bottom:1040.640000pt;}
.y47_c01465{bottom:1045.253333pt;}
.y44_c01465{bottom:1052.933333pt;}
.y42_c01465{bottom:1055.226667pt;}
.y45_c01465{bottom:1056.773333pt;}
.y43_c01465{bottom:1061.373333pt;}
.y3f_c01465{bottom:1069.053333pt;}
.y39_c01465{bottom:1070.586667pt;}
.y40_c01465{bottom:1071.360000pt;}
.y3d_c01465{bottom:1072.133333pt;}
.y3e_c01465{bottom:1075.973333pt;}
.y3b_c01465{bottom:1078.266667pt;}
.y3c_c01465{bottom:1079.813333pt;}
.y3a_c01465{bottom:1081.346667pt;}
.y41_c01465{bottom:1089.786667pt;}
.y31_c01465{bottom:1117.440000pt;}
.y33_c01465{bottom:1120.506667pt;}
.y34_c01465{bottom:1122.813333pt;}
.y30_c01465{bottom:1125.120000pt;}
.y2f_c01465{bottom:1125.893333pt;}
.y32_c01465{bottom:1126.653333pt;}
.y2d_c01465{bottom:1127.426667pt;}
.y2e_c01465{bottom:1128.186667pt;}
.y2c_c01465{bottom:1128.960000pt;}
.y2b_c01465{bottom:1129.733333pt;}
.y2a_c01465{bottom:1136.640000pt;}
.y28_c01465{bottom:1144.320000pt;}
.y27_c01465{bottom:1145.093333pt;}
.y25_c01465{bottom:1148.160000pt;}
.y29_c01465{bottom:1148.933333pt;}
.y26_c01465{bottom:1152.000000pt;}
.y24_c01465{bottom:1153.533333pt;}
.y22_c01465{bottom:1159.680000pt;}
.y23_c01465{bottom:1161.986667pt;}
.y1d_c01465{bottom:1164.293333pt;}
.y1f_c01465{bottom:1165.053333pt;}
.y1e_c01465{bottom:1165.826667pt;}
.y20_c01465{bottom:1167.360000pt;}
.y21_c01465{bottom:1168.133333pt;}
.y1c_c01465{bottom:1168.893333pt;}
.y35_c01465{bottom:1171.200000pt;}
.y36_c01465{bottom:1172.733333pt;}
.y15_c01465{bottom:1177.346667pt;}
.y1b_c01465{bottom:1181.186667pt;}
.y1a_c01465{bottom:1181.946667pt;}
.y19_c01465{bottom:1183.493333pt;}
.y18_c01465{bottom:1185.786667pt;}
.y37_c01465{bottom:1197.306667pt;}
.y38_c01465{bottom:1200.386667pt;}
.y17_c01465{bottom:1204.226667pt;}
.y16_c01465{bottom:1206.533333pt;}
.y10_c01465{bottom:1221.120000pt;}
.y13_c01465{bottom:1221.893333pt;}
.yf_c01465{bottom:1224.186667pt;}
.ye_c01465{bottom:1224.960000pt;}
.yd_c01465{bottom:1225.733333pt;}
.y14_c01465{bottom:1228.800000pt;}
.y12_c01465{bottom:1237.253333pt;}
.y11_c01465{bottom:1239.546667pt;}
.y8_c01465{bottom:1247.226667pt;}
.yb_c01465{bottom:1248.000000pt;}
.ya_c01465{bottom:1248.773333pt;}
.y9_c01465{bottom:1249.533333pt;}
.y7_c01465{bottom:1250.306667pt;}
.y1_c01465{bottom:1251.066667pt;}
.yc_c01465{bottom:1255.680000pt;}
.y6_c01465{bottom:1261.053333pt;}
.y5_c01465{bottom:1264.893333pt;}
.y4_c01465{bottom:1266.426667pt;}
.y3_c01465{bottom:1273.346667pt;}
.y2_c01465{bottom:1274.880000pt;}
.hf_c01465{height:2.764500pt;}
.he_c01465{height:4.799479pt;}
.h3_c01465{height:5.519401pt;}
.h12_c01465{height:8.303099pt;}
.h6_c01465{height:11.038802pt;}
.hb_c01465{height:13.822500pt;}
.h1b_c01465{height:16.606198pt;}
.h4_c01465{height:19.341901pt;}
.h5_c01465{height:22.125599pt;}
.h11_c01465{height:24.861302pt;}
.hc_c01465{height:27.645000pt;}
.hd_c01465{height:30.428698pt;}
.h1d_c01465{height:38.683802pt;}
.ha_c01465{height:41.467500pt;}
.h7_c01465{height:44.251198pt;}
.h9_c01465{height:46.986901pt;}
.h2_c01465{height:49.770599pt;}
.h1a_c01465{height:52.506302pt;}
.h10_c01465{height:55.290000pt;}
.h8_c01465{height:58.073698pt;}
.h13_c01465{height:60.809401pt;}
.h16_c01465{height:63.593099pt;}
.h19_c01465{height:66.328802pt;}
.h14_c01465{height:69.112500pt;}
.h17_c01465{height:71.896198pt;}
.h15_c01465{height:74.631901pt;}
.h18_c01465{height:80.151302pt;}
.h1c_c01465{height:91.238099pt;}
.h0_c01465{height:1348.613333pt;}
.h1_c01465{height:1348.666667pt;}
.w0_c01465{width:943.106667pt;}
.w1_c01465{width:943.333333pt;}
.x0_c01465{left:0.000000pt;}
.x34_c01465{left:24.573333pt;}
.x17_c01465{left:26.107200pt;}
.x35_c01465{left:33.786667pt;}
.x1_c01465{left:311.813333pt;}
.x4_c01465{left:466.173333pt;}
.x7_c01465{left:471.546667pt;}
.x8_c01465{left:490.746667pt;}
.x9_c01465{left:506.880000pt;}
.x11_c01465{left:512.253333pt;}
.x3e_c01465{left:516.866667pt;}
.x36_c01465{left:518.400000pt;}
.x19_c01465{left:523.013333pt;}
.x1e_c01465{left:526.080000pt;}
.x43_c01465{left:534.533333pt;}
.xa_c01465{left:536.066667pt;}
.x1a_c01465{left:539.906667pt;}
.x3f_c01465{left:547.586667pt;}
.x1f_c01465{left:552.960000pt;}
.x37_c01465{left:554.493333pt;}
.xb_c01465{left:557.573333pt;}
.x2_c01465{left:562.173333pt;}
.x40_c01465{left:563.706667pt;}
.x2f_c01465{left:565.253333pt;}
.x38_c01465{left:567.546667pt;}
.x1b_c01465{left:569.093333pt;}
.x12_c01465{left:575.226667pt;}
.xc_c01465{left:579.066667pt;}
.x20_c01465{left:583.680000pt;}
.xd_c01465{left:592.893333pt;}
.x39_c01465{left:603.653333pt;}
.x2b_c01465{left:605.186667pt;}
.x3_c01465{left:607.493333pt;}
.xe_c01465{left:612.093333pt;}
.x27_c01465{left:614.400000pt;}
.x3c_c01465{left:621.306667pt;}
.x13_c01465{left:623.613333pt;}
.x5_c01465{left:626.693333pt;}
.x21_c01465{left:632.066667pt;}
.xf_c01465{left:633.600000pt;}
.x44_c01465{left:637.440000pt;}
.x22_c01465{left:645.120000pt;}
.x30_c01465{left:646.653333pt;}
.x41_c01465{left:650.493333pt;}
.x28_c01465{left:652.026667pt;}
.x1c_c01465{left:653.573333pt;}
.x6_c01465{left:655.866667pt;}
.x23_c01465{left:669.693333pt;}
.x16_c01465{left:671.226667pt;}
.x14_c01465{left:681.986667pt;}
.x2c_c01465{left:685.826667pt;}
.x24_c01465{left:695.040000pt;}
.x29_c01465{left:700.413333pt;}
.x45_c01465{left:706.560000pt;}
.x2d_c01465{left:713.466667pt;}
.x42_c01465{left:715.773333pt;}
.x3d_c01465{left:723.453333pt;}
.x10_c01465{left:727.293333pt;}
.x1d_c01465{left:733.440000pt;}
.x15_c01465{left:735.746667pt;}
.x3a_c01465{left:742.653333pt;}
.x2a_c01465{left:744.960000pt;}
.x25_c01465{left:751.106667pt;}
.x2e_c01465{left:757.253333pt;}
.x26_c01465{left:761.093333pt;}
.x3b_c01465{left:771.840000pt;}
.x18_c01465{left:774.906667pt;}
.x31_c01465{left:786.426667pt;}
.x32_c01465{left:800.253333pt;}
.x33_c01465{left:814.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_c01466 {
    display:none;
  }
  .loading-indicator_c01466.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01466 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01466 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01466" -> "#page-container .classname_c01466")
 */
.pf_c01466 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01466 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01466 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01466 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01466 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01466 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01466 {overflow:visible;}
  }
}
.c_c01466 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01466 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01466:after { /* webkit #35443 */
  content: '';
}
.t_c01466:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01466 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01466 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01466 { /* info for Javascript */
  display:none;
}
.l_c01466 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01466 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01466 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01466:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01466 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01466.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01466.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01466 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01466{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01466;src:url('chunks/assets/font_fd89ba64ea283688c583af9e.woff2')format("woff");}.ff1_c01466{font-family:ff1_c01466;line-height:1.109863;font-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_c01466{transform:matrix(0.103025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.103025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.103025,0.000000,0.000000,0.250000,0,0);}
.m7_c01466{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);}
.m0_c01466{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m2_c01466{transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160875,0.000000,0.000000,0.250000,0,0);}
.mc_c01466{transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.171050,0.000000,0.000000,0.250000,0,0);}
.m3_c01466{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);}
.m5_c01466{transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.214375,0.000000,0.000000,0.250000,0,0);}
.m8_c01466{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);}
.mb_c01466{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_c01466{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.me_c01466{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.md_c01466{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m4_c01466{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m6_c01466{transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.455000,0.000000,0.000000,0.250000,0,0);}
.m1_c01466{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.v0_c01466{vertical-align:0.000000px;}
.ls0_c01466{letter-spacing:0.000000px;}
.sc__c01466{text-shadow:none;}
.sc0_c01466{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01466{-webkit-text-stroke:0px transparent;}
.sc0_c01466{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01466{word-spacing:0.000000px;}
.fc0_c01466{color:transparent;}
.fs4_c01466{font-size:3.456000px;}
.fs9_c01466{font-size:6.000000px;}
.fsc_c01466{font-size:6.900000px;}
.fs0_c01466{font-size:10.380000px;}
.fs1_c01466{font-size:13.800000px;}
.fsa_c01466{font-size:17.280000px;}
.fs5_c01466{font-size:24.180000px;}
.fsb_c01466{font-size:34.560000px;}
.fs3_c01466{font-size:38.040000px;}
.fs7_c01466{font-size:41.460000px;}
.fsd_c01466{font-size:44.940000px;}
.fs8_c01466{font-size:65.640000px;}
.fs6_c01466{font-size:69.120000px;}
.fs2_c01466{font-size:96.780000px;}
.y0_c01466{bottom:0.000000px;}
.y11_c01466{bottom:618.630000px;}
.y10_c01466{bottom:624.675000px;}
.yf_c01466{bottom:647.130000px;}
.ye_c01466{bottom:670.470000px;}
.yd_c01466{bottom:677.370000px;}
.yc_c01466{bottom:682.560000px;}
.yb_c01466{bottom:686.880000px;}
.ya_c01466{bottom:948.675000px;}
.y9_c01466{bottom:971.130000px;}
.y7_c01466{bottom:979.770000px;}
.y8_c01466{bottom:982.365000px;}
.y6_c01466{bottom:1000.515000px;}
.y5_c01466{bottom:1002.240000px;}
.y4_c01466{bottom:1022.970000px;}
.y3_c01466{bottom:1033.350000px;}
.y2_c01466{bottom:1197.510000px;}
.y1_c01466{bottom:1202.685000px;}
.h6_c01466{height:3.110063px;}
.hb_c01466{height:5.399414px;}
.he_c01466{height:6.209326px;}
.h2_c01466{height:9.340986px;}
.h3_c01466{height:12.418652px;}
.hc_c01466{height:15.550313px;}
.h7_c01466{height:21.759639px;}
.hd_c01466{height:31.100625px;}
.h5_c01466{height:34.232285px;}
.h9_c01466{height:37.309951px;}
.hf_c01466{height:40.441611px;}
.ha_c01466{height:59.069590px;}
.h8_c01466{height:62.201250px;}
.h4_c01466{height:87.092549px;}
.h0_c01466{height:1521.510000px;}
.h1_c01466{height:1521.750000px;}
.w0_c01466{width:1060.995000px;}
.w1_c01466{width:1061.250000px;}
.x0_c01466{left:0.000000px;}
.x9_c01466{left:913.245000px;}
.xa_c01466{left:917.565000px;}
.x6_c01466{left:946.950000px;}
.xc_c01466{left:990.150000px;}
.xd_c01466{left:996.195000px;}
.x2_c01466{left:1011.750000px;}
.x1_c01466{left:1019.520000px;}
.xe_c01466{left:1046.310000px;}
.x5_c01466{left:1048.035000px;}
.xb_c01466{left:1049.760000px;}
.x8_c01466{left:1051.485000px;}
.x7_c01466{left:1054.080000px;}
.x4_c01466{left:1056.675000px;}
.x3_c01466{left:1058.400000px;}
@media print{
.v0_c01466{vertical-align:0.000000pt;}
.ls0_c01466{letter-spacing:0.000000pt;}
.ws0_c01466{word-spacing:0.000000pt;}
.fs4_c01466{font-size:3.072000pt;}
.fs9_c01466{font-size:5.333333pt;}
.fsc_c01466{font-size:6.133333pt;}
.fs0_c01466{font-size:9.226667pt;}
.fs1_c01466{font-size:12.266667pt;}
.fsa_c01466{font-size:15.360000pt;}
.fs5_c01466{font-size:21.493333pt;}
.fsb_c01466{font-size:30.720000pt;}
.fs3_c01466{font-size:33.813333pt;}
.fs7_c01466{font-size:36.853333pt;}
.fsd_c01466{font-size:39.946667pt;}
.fs8_c01466{font-size:58.346667pt;}
.fs6_c01466{font-size:61.440000pt;}
.fs2_c01466{font-size:86.026667pt;}
.y0_c01466{bottom:0.000000pt;}
.y11_c01466{bottom:549.893333pt;}
.y10_c01466{bottom:555.266667pt;}
.yf_c01466{bottom:575.226667pt;}
.ye_c01466{bottom:595.973333pt;}
.yd_c01466{bottom:602.106667pt;}
.yc_c01466{bottom:606.720000pt;}
.yb_c01466{bottom:610.560000pt;}
.ya_c01466{bottom:843.266667pt;}
.y9_c01466{bottom:863.226667pt;}
.y7_c01466{bottom:870.906667pt;}
.y8_c01466{bottom:873.213333pt;}
.y6_c01466{bottom:889.346667pt;}
.y5_c01466{bottom:890.880000pt;}
.y4_c01466{bottom:909.306667pt;}
.y3_c01466{bottom:918.533333pt;}
.y2_c01466{bottom:1064.453333pt;}
.y1_c01466{bottom:1069.053333pt;}
.h6_c01466{height:2.764500pt;}
.hb_c01466{height:4.799479pt;}
.he_c01466{height:5.519401pt;}
.h2_c01466{height:8.303099pt;}
.h3_c01466{height:11.038802pt;}
.hc_c01466{height:13.822500pt;}
.h7_c01466{height:19.341901pt;}
.hd_c01466{height:27.645000pt;}
.h5_c01466{height:30.428698pt;}
.h9_c01466{height:33.164401pt;}
.hf_c01466{height:35.948099pt;}
.ha_c01466{height:52.506302pt;}
.h8_c01466{height:55.290000pt;}
.h4_c01466{height:77.415599pt;}
.h0_c01466{height:1352.453333pt;}
.h1_c01466{height:1352.666667pt;}
.w0_c01466{width:943.106667pt;}
.w1_c01466{width:943.333333pt;}
.x0_c01466{left:0.000000pt;}
.x9_c01466{left:811.773333pt;}
.xa_c01466{left:815.613333pt;}
.x6_c01466{left:841.733333pt;}
.xc_c01466{left:880.133333pt;}
.xd_c01466{left:885.506667pt;}
.x2_c01466{left:899.333333pt;}
.x1_c01466{left:906.240000pt;}
.xe_c01466{left:930.053333pt;}
.x5_c01466{left:931.586667pt;}
.xb_c01466{left:933.120000pt;}
.x8_c01466{left:934.653333pt;}
.x7_c01466{left:936.960000pt;}
.x4_c01466{left:939.266667pt;}
.x3_c01466{left:940.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_c01467 {
    display:none;
  }
  .loading-indicator_c01467.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01467 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01467 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01467" -> "#page-container .classname_c01467")
 */
.pf_c01467 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01467 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01467 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01467 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01467 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01467 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01467 {overflow:visible;}
  }
}
.c_c01467 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01467 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01467:after { /* webkit #35443 */
  content: '';
}
.t_c01467:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01467 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01467 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01467 { /* info for Javascript */
  display:none;
}
.l_c01467 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01467 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01467 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01467:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01467 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01467.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01467.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01467 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01467{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01467;src:url('chunks/assets/font_f043662f34c632886ca152ff.woff2')format("woff");}.ff1_c01467{font-family:ff1_c01467;line-height:1.109863;font-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_c01467{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);}
.v0_c01467{vertical-align:0.000000px;}
.ls0_c01467{letter-spacing:0.000000px;}
.sc__c01467{text-shadow:none;}
.sc0_c01467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01467{-webkit-text-stroke:0px transparent;}
.sc0_c01467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01467{word-spacing:0.000000px;}
.fc0_c01467{color:transparent;}
.fs0_c01467{font-size:600.000000px;}
.y0_c01467{bottom:0.000000px;}
.y1_c01467{bottom:15.000000px;}
.h2_c01467{height:539.941406px;}
.h0_c01467{height:1517.190000px;}
.h1_c01467{height:1517.250000px;}
.w1_c01467{width:1047.750000px;}
.w0_c01467{width:1048.035000px;}
.x0_c01467{left:0.000000px;}
.x1_c01467{left:15.000000px;}
@media print{
.v0_c01467{vertical-align:0.000000pt;}
.ls0_c01467{letter-spacing:0.000000pt;}
.ws0_c01467{word-spacing:0.000000pt;}
.fs0_c01467{font-size:533.333333pt;}
.y0_c01467{bottom:0.000000pt;}
.y1_c01467{bottom:13.333333pt;}
.h2_c01467{height:479.947917pt;}
.h0_c01467{height:1348.613333pt;}
.h1_c01467{height:1348.666667pt;}
.w1_c01467{width:931.333333pt;}
.w0_c01467{width:931.586667pt;}
.x0_c01467{left:0.000000pt;}
.x1_c01467{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01468 {
    display:none;
  }
  .loading-indicator_c01468.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01468 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01468 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01468" -> "#page-container .classname_c01468")
 */
.pf_c01468 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01468 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01468 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01468 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01468 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01468 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01468 {overflow:visible;}
  }
}
.c_c01468 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01468 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01468:after { /* webkit #35443 */
  content: '';
}
.t_c01468:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01468 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01468 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01468 { /* info for Javascript */
  display:none;
}
.l_c01468 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01468 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01468 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01468:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01468 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01468.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01468.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01468 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01468{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01468;src:url('chunks/assets/font_fb63842a4871d4734ff176b9.woff2')format("woff");}.ff1_c01468{font-family:ff1_c01468;line-height:1.109863;font-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_c01468{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m14_c01468{transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.043475,0.000000,0.000000,0.250000,0,0);}
.m46_c01468{transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120775,0.000000,0.000000,0.250000,0,0);}
.m1a_c01468{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m16_c01468{transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145850,0.000000,0.000000,0.250000,0,0);}
.m38_c01468{transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147800,0.000000,0.000000,0.250000,0,0);}
.m10_c01468{transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157025,0.000000,0.000000,0.250000,0,0);}
.m34_c01468{transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.166050,0.000000,0.000000,0.250000,0,0);}
.mc_c01468{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);}
.m2f_c01468{transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.173700,0.000000,0.000000,0.250000,0,0);}
.m47_c01468{transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.177050,0.000000,0.000000,0.250000,0,0);}
.m3b_c01468{transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181075,0.000000,0.000000,0.250000,0,0);}
.m40_c01468{transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183400,0.000000,0.000000,0.250000,0,0);}
.m33_c01468{transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187475,0.000000,0.000000,0.250000,0,0);}
.m17_c01468{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);}
.m43_c01468{transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197575,0.000000,0.000000,0.250000,0,0);}
.m22_c01468{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);}
.m13_c01468{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);}
.m42_c01468{transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200900,0.000000,0.000000,0.250000,0,0);}
.m23_c01468{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);}
.mf_c01468{transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.207350,0.000000,0.000000,0.250000,0,0);}
.m24_c01468{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);}
.m15_c01468{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);}
.md_c01468{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);}
.m37_c01468{transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217425,0.000000,0.000000,0.250000,0,0);}
.m41_c01468{transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217575,0.000000,0.000000,0.250000,0,0);}
.m29_c01468{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);}
.m3a_c01468{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);}
.m2e_c01468{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);}
.m20_c01468{transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238475,0.000000,0.000000,0.250000,0,0);}
.m3f_c01468{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);}
.m11_c01468{transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244625,0.000000,0.000000,0.250000,0,0);}
.m39_c01468{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);}
.m2a_c01468{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);}
.m3d_c01468{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);}
.m32_c01468{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);}
.m2c_c01468{transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265000,0.000000,0.000000,0.250000,0,0);}
.m25_c01468{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4_c01468{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);}
.m1f_c01468{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m1b_c01468{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2d_c01468{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.ma_c01468{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);}
.m2b_c01468{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);}
.m28_c01468{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);}
.m49_c01468{transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.310000,0.000000,0.000000,0.250000,0,0);}
.m35_c01468{transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.342500,0.000000,0.000000,0.250000,0,0);}
.m12_c01468{transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.347500,0.000000,0.000000,0.250000,0,0);}
.m3e_c01468{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);}
.m3_c01468{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);}
.m1c_c01468{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m7_c01468{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);}
.m1d_c01468{transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.380000,0.000000,0.000000,0.250000,0,0);}
.m45_c01468{transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.387500,0.000000,0.000000,0.250000,0,0);}
.m8_c01468{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);}
.m26_c01468{transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.400000,0.000000,0.000000,0.250000,0,0);}
.m1_c01468{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);}
.m2_c01468{transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.415000,0.000000,0.000000,0.250000,0,0);}
.m30_c01468{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);}
.m5_c01468{transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.420000,0.000000,0.000000,0.250000,0,0);}
.mb_c01468{transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.422500,0.000000,0.000000,0.250000,0,0);}
.m6_c01468{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);}
.m31_c01468{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.m36_c01468{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m21_c01468{transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.440000,0.000000,0.000000,0.250000,0,0);}
.m0_c01468{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);}
.m48_c01468{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01468{transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.472500,0.000000,0.000000,0.250000,0,0);}
.m3c_c01468{transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.515000,0.000000,0.000000,0.250000,0,0);}
.me_c01468{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m44_c01468{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);}
.m27_c01468{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m9_c01468{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.m19_c01468{transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(2.592500,0.000000,0.000000,0.250000,0,0);}
.v0_c01468{vertical-align:0.000000px;}
.ls0_c01468{letter-spacing:0.000000px;}
.sc__c01468{text-shadow:none;}
.sc0_c01468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01468{-webkit-text-stroke:0px transparent;}
.sc0_c01468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01468{word-spacing:0.000000px;}
.fc0_c01468{color:transparent;}
.fsc_c01468{font-size:3.456000px;}
.fsd_c01468{font-size:6.000000px;}
.fsf_c01468{font-size:6.900000px;}
.fs5_c01468{font-size:10.380000px;}
.fs10_c01468{font-size:20.760000px;}
.fs12_c01468{font-size:24.180000px;}
.fs14_c01468{font-size:27.660000px;}
.fs6_c01468{font-size:31.080000px;}
.fs1_c01468{font-size:34.560000px;}
.fs15_c01468{font-size:38.040000px;}
.fsa_c01468{font-size:44.940000px;}
.fs2_c01468{font-size:48.360000px;}
.fs0_c01468{font-size:51.840000px;}
.fs8_c01468{font-size:55.320000px;}
.fse_c01468{font-size:58.740000px;}
.fs13_c01468{font-size:62.220000px;}
.fs3_c01468{font-size:65.640000px;}
.fs4_c01468{font-size:69.120000px;}
.fsb_c01468{font-size:72.600000px;}
.fs11_c01468{font-size:76.020000px;}
.fs9_c01468{font-size:79.500000px;}
.fs7_c01468{font-size:86.400000px;}
.y0_c01468{bottom:0.000000px;}
.y4a_c01468{bottom:603.930000px;}
.y48_c01468{bottom:622.950000px;}
.y49_c01468{bottom:626.400000px;}
.y47_c01468{bottom:654.045000px;}
.y46_c01468{bottom:656.640000px;}
.y41_c01468{bottom:664.410000px;}
.y42_c01468{bottom:665.280000px;}
.y40_c01468{bottom:666.150000px;}
.y43_c01468{bottom:667.875000px;}
.y45_c01468{bottom:680.835000px;}
.y44_c01468{bottom:681.690000px;}
.y38_c01468{bottom:682.560000px;}
.y3a_c01468{bottom:684.285000px;}
.y3c_c01468{bottom:686.010000px;}
.y3b_c01468{bottom:687.750000px;}
.y3d_c01468{bottom:688.605000px;}
.y39_c01468{bottom:690.330000px;}
.y3e_c01468{bottom:692.925000px;}
.y3f_c01468{bottom:694.650000px;}
.y30_c01468{bottom:704.160000px;}
.y33_c01468{bottom:705.030000px;}
.y35_c01468{bottom:707.610000px;}
.y31_c01468{bottom:710.205000px;}
.y32_c01468{bottom:711.075000px;}
.y34_c01468{bottom:711.930000px;}
.y36_c01468{bottom:713.670000px;}
.y37_c01468{bottom:718.845000px;}
.y2f_c01468{bottom:731.805000px;}
.y2d_c01468{bottom:759.450000px;}
.y2e_c01468{bottom:762.915000px;}
.y2a_c01468{bottom:768.090000px;}
.y29_c01468{bottom:769.830000px;}
.y2b_c01468{bottom:770.685000px;}
.y2c_c01468{bottom:772.410000px;}
.y24_c01468{bottom:787.965000px;}
.y25_c01468{bottom:790.560000px;}
.y23_c01468{bottom:792.285000px;}
.y28_c01468{bottom:793.155000px;}
.y26_c01468{bottom:795.750000px;}
.y27_c01468{bottom:796.605000px;}
.y1e_c01468{bottom:808.710000px;}
.y20_c01468{bottom:812.160000px;}
.y22_c01468{bottom:813.030000px;}
.y1d_c01468{bottom:813.885000px;}
.y1f_c01468{bottom:815.610000px;}
.y21_c01468{bottom:817.350000px;}
.y18_c01468{bottom:832.035000px;}
.y17_c01468{bottom:832.890000px;}
.y19_c01468{bottom:833.760000px;}
.y1a_c01468{bottom:835.485000px;}
.y1b_c01468{bottom:837.210000px;}
.y1c_c01468{bottom:838.080000px;}
.y16_c01468{bottom:844.125000px;}
.y15_c01468{bottom:862.275000px;}
.y14_c01468{bottom:864.870000px;}
.y11_c01468{bottom:866.595000px;}
.y12_c01468{bottom:867.450000px;}
.y13_c01468{bottom:870.045000px;}
.yd_c01468{bottom:888.195000px;}
.ye_c01468{bottom:890.790000px;}
.y10_c01468{bottom:894.240000px;}
.yf_c01468{bottom:897.690000px;}
.y9_c01468{bottom:912.390000px;}
.ya_c01468{bottom:913.245000px;}
.y7_c01468{bottom:914.115000px;}
.y8_c01468{bottom:914.970000px;}
.yb_c01468{bottom:916.710000px;}
.yc_c01468{bottom:919.290000px;}
.y6_c01468{bottom:929.670000px;}
.y1_c01468{bottom:933.990000px;}
.y2_c01468{bottom:934.845000px;}
.y3_c01468{bottom:936.570000px;}
.y4_c01468{bottom:937.440000px;}
.y5_c01468{bottom:938.310000px;}
.he_c01468{height:3.110063px;}
.hf_c01468{height:5.399414px;}
.h11_c01468{height:6.209326px;}
.h7_c01468{height:9.340986px;}
.h12_c01468{height:18.681973px;}
.h14_c01468{height:21.759639px;}
.h16_c01468{height:24.891299px;}
.h8_c01468{height:27.968965px;}
.h3_c01468{height:31.100625px;}
.h17_c01468{height:34.232285px;}
.hc_c01468{height:40.441611px;}
.h4_c01468{height:43.519277px;}
.h2_c01468{height:46.650937px;}
.ha_c01468{height:49.782598px;}
.h10_c01468{height:52.860264px;}
.h15_c01468{height:55.991924px;}
.h5_c01468{height:59.069590px;}
.h6_c01468{height:62.201250px;}
.hd_c01468{height:65.332910px;}
.h13_c01468{height:68.410576px;}
.hb_c01468{height:71.542236px;}
.h9_c01468{height:77.751563px;}
.h0_c01468{height:1521.510000px;}
.h1_c01468{height:1521.750000px;}
.w0_c01468{width:1060.995000px;}
.w1_c01468{width:1061.250000px;}
.x0_c01468{left:0.000000px;}
.x3f_c01468{left:202.170000px;}
.x16_c01468{left:208.230000px;}
.x13_c01468{left:210.810000px;}
.x17_c01468{left:214.275000px;}
.x1a_c01468{left:216.000000px;}
.x40_c01468{left:217.725000px;}
.x34_c01468{left:219.450000px;}
.xc_c01468{left:232.410000px;}
.x35_c01468{left:235.875000px;}
.x1b_c01468{left:237.600000px;}
.xd_c01468{left:240.195000px;}
.x41_c01468{left:246.240000px;}
.x1_c01468{left:250.560000px;}
.x36_c01468{left:253.155000px;}
.x2b_c01468{left:262.650000px;}
.x33_c01468{left:266.970000px;}
.x1c_c01468{left:268.710000px;}
.x2_c01468{left:272.160000px;}
.x24_c01468{left:280.800000px;}
.x1d_c01468{left:282.525000px;}
.x3b_c01468{left:286.845000px;}
.x3_c01468{left:289.440000px;}
.xe_c01468{left:291.165000px;}
.x18_c01468{left:292.890000px;}
.x42_c01468{left:294.630000px;}
.x1e_c01468{left:296.355000px;}
.x31_c01468{left:298.080000px;}
.x4_c01468{left:306.720000px;}
.x19_c01468{left:311.040000px;}
.x1f_c01468{left:316.230000px;}
.x5_c01468{left:320.550000px;}
.x2c_c01468{left:323.130000px;}
.xf_c01468{left:331.770000px;}
.x25_c01468{left:336.960000px;}
.x14_c01468{left:338.685000px;}
.x32_c01468{left:343.005000px;}
.x43_c01468{left:355.110000px;}
.x6_c01468{left:361.155000px;}
.x44_c01468{left:369.795000px;}
.x37_c01468{left:372.390000px;}
.x7_c01468{left:376.710000px;}
.x10_c01468{left:380.160000px;}
.x2d_c01468{left:387.075000px;}
.x26_c01468{left:388.800000px;}
.x20_c01468{left:391.395000px;}
.x8_c01468{left:395.715000px;}
.x27_c01468{left:400.035000px;}
.x3c_c01468{left:401.760000px;}
.x2e_c01468{left:411.270000px;}
.x9_c01468{left:413.850000px;}
.x28_c01468{left:417.315000px;}
.x38_c01468{left:429.405000px;}
.xa_c01468{left:432.000000px;}
.x39_c01468{left:434.595000px;}
.x29_c01468{left:436.320000px;}
.x15_c01468{left:438.045000px;}
.x21_c01468{left:441.510000px;}
.x2a_c01468{left:446.685000px;}
.xb_c01468{left:453.600000px;}
.x22_c01468{left:457.920000px;}
.x11_c01468{left:463.965000px;}
.x3d_c01468{left:468.285000px;}
.x2f_c01468{left:475.200000px;}
.x30_c01468{left:484.710000px;}
.x12_c01468{left:489.030000px;}
.x3e_c01468{left:493.350000px;}
.x3a_c01468{left:499.395000px;}
.x23_c01468{left:507.165000px;}
.x48_c01468{left:1026.435000px;}
.x46_c01468{left:1040.250000px;}
.x49_c01468{left:1047.165000px;}
.x45_c01468{left:1048.890000px;}
.x47_c01468{left:1051.485000px;}
@media print{
.v0_c01468{vertical-align:0.000000pt;}
.ls0_c01468{letter-spacing:0.000000pt;}
.ws0_c01468{word-spacing:0.000000pt;}
.fsc_c01468{font-size:3.072000pt;}
.fsd_c01468{font-size:5.333333pt;}
.fsf_c01468{font-size:6.133333pt;}
.fs5_c01468{font-size:9.226667pt;}
.fs10_c01468{font-size:18.453333pt;}
.fs12_c01468{font-size:21.493333pt;}
.fs14_c01468{font-size:24.586667pt;}
.fs6_c01468{font-size:27.626667pt;}
.fs1_c01468{font-size:30.720000pt;}
.fs15_c01468{font-size:33.813333pt;}
.fsa_c01468{font-size:39.946667pt;}
.fs2_c01468{font-size:42.986667pt;}
.fs0_c01468{font-size:46.080000pt;}
.fs8_c01468{font-size:49.173333pt;}
.fse_c01468{font-size:52.213333pt;}
.fs13_c01468{font-size:55.306667pt;}
.fs3_c01468{font-size:58.346667pt;}
.fs4_c01468{font-size:61.440000pt;}
.fsb_c01468{font-size:64.533333pt;}
.fs11_c01468{font-size:67.573333pt;}
.fs9_c01468{font-size:70.666667pt;}
.fs7_c01468{font-size:76.800000pt;}
.y0_c01468{bottom:0.000000pt;}
.y4a_c01468{bottom:536.826667pt;}
.y48_c01468{bottom:553.733333pt;}
.y49_c01468{bottom:556.800000pt;}
.y47_c01468{bottom:581.373333pt;}
.y46_c01468{bottom:583.680000pt;}
.y41_c01468{bottom:590.586667pt;}
.y42_c01468{bottom:591.360000pt;}
.y40_c01468{bottom:592.133333pt;}
.y43_c01468{bottom:593.666667pt;}
.y45_c01468{bottom:605.186667pt;}
.y44_c01468{bottom:605.946667pt;}
.y38_c01468{bottom:606.720000pt;}
.y3a_c01468{bottom:608.253333pt;}
.y3c_c01468{bottom:609.786667pt;}
.y3b_c01468{bottom:611.333333pt;}
.y3d_c01468{bottom:612.093333pt;}
.y39_c01468{bottom:613.626667pt;}
.y3e_c01468{bottom:615.933333pt;}
.y3f_c01468{bottom:617.466667pt;}
.y30_c01468{bottom:625.920000pt;}
.y33_c01468{bottom:626.693333pt;}
.y35_c01468{bottom:628.986667pt;}
.y31_c01468{bottom:631.293333pt;}
.y32_c01468{bottom:632.066667pt;}
.y34_c01468{bottom:632.826667pt;}
.y36_c01468{bottom:634.373333pt;}
.y37_c01468{bottom:638.973333pt;}
.y2f_c01468{bottom:650.493333pt;}
.y2d_c01468{bottom:675.066667pt;}
.y2e_c01468{bottom:678.146667pt;}
.y2a_c01468{bottom:682.746667pt;}
.y29_c01468{bottom:684.293333pt;}
.y2b_c01468{bottom:685.053333pt;}
.y2c_c01468{bottom:686.586667pt;}
.y24_c01468{bottom:700.413333pt;}
.y25_c01468{bottom:702.720000pt;}
.y23_c01468{bottom:704.253333pt;}
.y28_c01468{bottom:705.026667pt;}
.y26_c01468{bottom:707.333333pt;}
.y27_c01468{bottom:708.093333pt;}
.y1e_c01468{bottom:718.853333pt;}
.y20_c01468{bottom:721.920000pt;}
.y22_c01468{bottom:722.693333pt;}
.y1d_c01468{bottom:723.453333pt;}
.y1f_c01468{bottom:724.986667pt;}
.y21_c01468{bottom:726.533333pt;}
.y18_c01468{bottom:739.586667pt;}
.y17_c01468{bottom:740.346667pt;}
.y19_c01468{bottom:741.120000pt;}
.y1a_c01468{bottom:742.653333pt;}
.y1b_c01468{bottom:744.186667pt;}
.y1c_c01468{bottom:744.960000pt;}
.y16_c01468{bottom:750.333333pt;}
.y15_c01468{bottom:766.466667pt;}
.y14_c01468{bottom:768.773333pt;}
.y11_c01468{bottom:770.306667pt;}
.y12_c01468{bottom:771.066667pt;}
.y13_c01468{bottom:773.373333pt;}
.yd_c01468{bottom:789.506667pt;}
.ye_c01468{bottom:791.813333pt;}
.y10_c01468{bottom:794.880000pt;}
.yf_c01468{bottom:797.946667pt;}
.y9_c01468{bottom:811.013333pt;}
.ya_c01468{bottom:811.773333pt;}
.y7_c01468{bottom:812.546667pt;}
.y8_c01468{bottom:813.306667pt;}
.yb_c01468{bottom:814.853333pt;}
.yc_c01468{bottom:817.146667pt;}
.y6_c01468{bottom:826.373333pt;}
.y1_c01468{bottom:830.213333pt;}
.y2_c01468{bottom:830.973333pt;}
.y3_c01468{bottom:832.506667pt;}
.y4_c01468{bottom:833.280000pt;}
.y5_c01468{bottom:834.053333pt;}
.he_c01468{height:2.764500pt;}
.hf_c01468{height:4.799479pt;}
.h11_c01468{height:5.519401pt;}
.h7_c01468{height:8.303099pt;}
.h12_c01468{height:16.606198pt;}
.h14_c01468{height:19.341901pt;}
.h16_c01468{height:22.125599pt;}
.h8_c01468{height:24.861302pt;}
.h3_c01468{height:27.645000pt;}
.h17_c01468{height:30.428698pt;}
.hc_c01468{height:35.948099pt;}
.h4_c01468{height:38.683802pt;}
.h2_c01468{height:41.467500pt;}
.ha_c01468{height:44.251198pt;}
.h10_c01468{height:46.986901pt;}
.h15_c01468{height:49.770599pt;}
.h5_c01468{height:52.506302pt;}
.h6_c01468{height:55.290000pt;}
.hd_c01468{height:58.073698pt;}
.h13_c01468{height:60.809401pt;}
.hb_c01468{height:63.593099pt;}
.h9_c01468{height:69.112500pt;}
.h0_c01468{height:1352.453333pt;}
.h1_c01468{height:1352.666667pt;}
.w0_c01468{width:943.106667pt;}
.w1_c01468{width:943.333333pt;}
.x0_c01468{left:0.000000pt;}
.x3f_c01468{left:179.706667pt;}
.x16_c01468{left:185.093333pt;}
.x13_c01468{left:187.386667pt;}
.x17_c01468{left:190.466667pt;}
.x1a_c01468{left:192.000000pt;}
.x40_c01468{left:193.533333pt;}
.x34_c01468{left:195.066667pt;}
.xc_c01468{left:206.586667pt;}
.x35_c01468{left:209.666667pt;}
.x1b_c01468{left:211.200000pt;}
.xd_c01468{left:213.506667pt;}
.x41_c01468{left:218.880000pt;}
.x1_c01468{left:222.720000pt;}
.x36_c01468{left:225.026667pt;}
.x2b_c01468{left:233.466667pt;}
.x33_c01468{left:237.306667pt;}
.x1c_c01468{left:238.853333pt;}
.x2_c01468{left:241.920000pt;}
.x24_c01468{left:249.600000pt;}
.x1d_c01468{left:251.133333pt;}
.x3b_c01468{left:254.973333pt;}
.x3_c01468{left:257.280000pt;}
.xe_c01468{left:258.813333pt;}
.x18_c01468{left:260.346667pt;}
.x42_c01468{left:261.893333pt;}
.x1e_c01468{left:263.426667pt;}
.x31_c01468{left:264.960000pt;}
.x4_c01468{left:272.640000pt;}
.x19_c01468{left:276.480000pt;}
.x1f_c01468{left:281.093333pt;}
.x5_c01468{left:284.933333pt;}
.x2c_c01468{left:287.226667pt;}
.xf_c01468{left:294.906667pt;}
.x25_c01468{left:299.520000pt;}
.x14_c01468{left:301.053333pt;}
.x32_c01468{left:304.893333pt;}
.x43_c01468{left:315.653333pt;}
.x6_c01468{left:321.026667pt;}
.x44_c01468{left:328.706667pt;}
.x37_c01468{left:331.013333pt;}
.x7_c01468{left:334.853333pt;}
.x10_c01468{left:337.920000pt;}
.x2d_c01468{left:344.066667pt;}
.x26_c01468{left:345.600000pt;}
.x20_c01468{left:347.906667pt;}
.x8_c01468{left:351.746667pt;}
.x27_c01468{left:355.586667pt;}
.x3c_c01468{left:357.120000pt;}
.x2e_c01468{left:365.573333pt;}
.x9_c01468{left:367.866667pt;}
.x28_c01468{left:370.946667pt;}
.x38_c01468{left:381.693333pt;}
.xa_c01468{left:384.000000pt;}
.x39_c01468{left:386.306667pt;}
.x29_c01468{left:387.840000pt;}
.x15_c01468{left:389.373333pt;}
.x21_c01468{left:392.453333pt;}
.x2a_c01468{left:397.053333pt;}
.xb_c01468{left:403.200000pt;}
.x22_c01468{left:407.040000pt;}
.x11_c01468{left:412.413333pt;}
.x3d_c01468{left:416.253333pt;}
.x2f_c01468{left:422.400000pt;}
.x30_c01468{left:430.853333pt;}
.x12_c01468{left:434.693333pt;}
.x3e_c01468{left:438.533333pt;}
.x3a_c01468{left:443.906667pt;}
.x23_c01468{left:450.813333pt;}
.x48_c01468{left:912.386667pt;}
.x46_c01468{left:924.666667pt;}
.x49_c01468{left:930.813333pt;}
.x45_c01468{left:932.346667pt;}
.x47_c01468{left:934.653333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01469 {
    display:none;
  }
  .loading-indicator_c01469.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01469 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01469 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01469" -> "#page-container .classname_c01469")
 */
.pf_c01469 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01469 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01469 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01469 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01469 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01469 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01469 {overflow:visible;}
  }
}
.c_c01469 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01469 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01469:after { /* webkit #35443 */
  content: '';
}
.t_c01469:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01469 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01469 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01469 { /* info for Javascript */
  display:none;
}
.l_c01469 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01469 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01469 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01469:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01469 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01469.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01469.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01469 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01469{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01469;src:url('chunks/assets/font_e0e751cb8e4d259b9a363abb.woff2')format("woff");}.ff1_c01469{font-family:ff1_c01469;line-height:1.109863;font-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_c01469{transform:matrix(0.064525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.064525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.064525,0.000000,0.000000,0.250000,0,0);}
.mf_c01469{transform:matrix(0.068250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.068250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.068250,0.000000,0.000000,0.250000,0,0);}
.m7_c01469{transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.071425,0.000000,0.000000,0.250000,0,0);}
.m4_c01469{transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074950,0.000000,0.000000,0.250000,0,0);}
.m13_c01469{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.mc_c01469{transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.128925,0.000000,0.000000,0.250000,0,0);}
.m5_c01469{transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130700,0.000000,0.000000,0.250000,0,0);}
.mb_c01469{transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134625,0.000000,0.000000,0.250000,0,0);}
.m8_c01469{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m16_c01469{transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192700,0.000000,0.000000,0.250000,0,0);}
.m1c_c01469{transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.197425,0.000000,0.000000,0.250000,0,0);}
.m15_c01469{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);}
.m17_c01469{transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.234600,0.000000,0.000000,0.250000,0,0);}
.ma_c01469{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);}
.m1d_c01469{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m1f_c01469{transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.282500,0.000000,0.000000,0.250000,0,0);}
.md_c01469{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m3_c01469{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);}
.m1a_c01469{transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.305000,0.000000,0.000000,0.250000,0,0);}
.m14_c01469{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.me_c01469{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m12_c01469{transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.340000,0.000000,0.000000,0.250000,0,0);}
.m10_c01469{transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.427500,0.000000,0.000000,0.250000,0,0);}
.m19_c01469{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m21_c01469{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m6_c01469{transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.460000,0.000000,0.000000,0.250000,0,0);}
.m0_c01469{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.m1_c01469{transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.632500,0.000000,0.000000,0.250000,0,0);}
.m2_c01469{transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.642500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01469{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m9_c01469{transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.752500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01469{transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.897500,0.000000,0.000000,0.250000,0,0);}
.m20_c01469{transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.982500,0.000000,0.000000,0.250000,0,0);}
.m18_c01469{transform:matrix(1.437500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.437500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.437500,0.000000,0.000000,0.250000,0,0);}
.v0_c01469{vertical-align:0.000000px;}
.ls0_c01469{letter-spacing:0.000000px;}
.sc__c01469{text-shadow:none;}
.sc0_c01469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01469{-webkit-text-stroke:0px transparent;}
.sc0_c01469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01469{word-spacing:0.000000px;}
.fc0_c01469{color:transparent;}
.fs11_c01469{font-size:3.456000px;}
.fsf_c01469{font-size:6.000000px;}
.fs10_c01469{font-size:6.900000px;}
.fs6_c01469{font-size:10.380000px;}
.fs7_c01469{font-size:13.800000px;}
.fs0_c01469{font-size:17.280000px;}
.fs2_c01469{font-size:20.760000px;}
.fs9_c01469{font-size:24.180000px;}
.fs4_c01469{font-size:27.660000px;}
.fs1_c01469{font-size:31.080000px;}
.fs12_c01469{font-size:34.560000px;}
.fsa_c01469{font-size:38.040000px;}
.fs8_c01469{font-size:44.940000px;}
.fs5_c01469{font-size:48.360000px;}
.fsd_c01469{font-size:58.740000px;}
.fse_c01469{font-size:69.120000px;}
.fs3_c01469{font-size:79.500000px;}
.fsc_c01469{font-size:107.160000px;}
.fsb_c01469{font-size:138.240000px;}
.y0_c01469{bottom:0.000000px;}
.y28_c01469{bottom:119.235000px;}
.y2b_c01469{bottom:125.280000px;}
.y29_c01469{bottom:129.600000px;}
.y2a_c01469{bottom:133.920000px;}
.y27_c01469{bottom:187.485000px;}
.y26_c01469{bottom:190.950000px;}
.y25_c01469{bottom:215.130000px;}
.y18_c01469{bottom:216.000000px;}
.y24_c01469{bottom:218.595000px;}
.y16_c01469{bottom:243.645000px;}
.y17_c01469{bottom:251.430000px;}
.y15_c01469{bottom:266.115000px;}
.y14_c01469{bottom:276.480000px;}
.y13_c01469{bottom:317.955000px;}
.y11_c01469{bottom:349.050000px;}
.y12_c01469{bottom:354.240000px;}
.y22_c01469{bottom:412.995000px;}
.y23_c01469{bottom:413.850000px;}
.y10_c01469{bottom:812.160000px;}
.ye_c01469{bottom:838.950000px;}
.yf_c01469{bottom:842.400000px;}
.yd_c01469{bottom:846.720000px;}
.yc_c01469{bottom:879.555000px;}
.yb_c01469{bottom:883.875000px;}
.ya_c01469{bottom:912.390000px;}
.y9_c01469{bottom:913.245000px;}
.y8_c01469{bottom:920.160000px;}
.y6_c01469{bottom:930.525000px;}
.y7_c01469{bottom:934.845000px;}
.y5_c01469{bottom:945.210000px;}
.y4_c01469{bottom:947.805000px;}
.y3_c01469{bottom:957.315000px;}
.y2_c01469{bottom:964.230000px;}
.y1_c01469{bottom:967.680000px;}
.y21_c01469{bottom:1320.195000px;}
.y20_c01469{bottom:1345.245000px;}
.y1f_c01469{bottom:1378.080000px;}
.y1e_c01469{bottom:1394.490000px;}
.y1d_c01469{bottom:1402.275000px;}
.y1a_c01469{bottom:1429.050000px;}
.y1c_c01469{bottom:1429.920000px;}
.y1b_c01469{bottom:1433.370000px;}
.y19_c01469{bottom:1436.835000px;}
.h13_c01469{height:3.110063px;}
.h11_c01469{height:5.399414px;}
.h12_c01469{height:6.209326px;}
.h8_c01469{height:9.340986px;}
.h9_c01469{height:12.418652px;}
.h2_c01469{height:15.550313px;}
.h4_c01469{height:18.681973px;}
.hb_c01469{height:21.759639px;}
.h6_c01469{height:24.891299px;}
.h3_c01469{height:27.968965px;}
.h14_c01469{height:31.100625px;}
.hc_c01469{height:34.232285px;}
.ha_c01469{height:40.441611px;}
.h7_c01469{height:43.519277px;}
.hf_c01469{height:52.860264px;}
.h10_c01469{height:62.201250px;}
.h5_c01469{height:71.542236px;}
.he_c01469{height:96.433535px;}
.hd_c01469{height:124.402500px;}
.h0_c01469{height:1517.190000px;}
.h1_c01469{height:1517.250000px;}
.w1_c01469{width:1047.750000px;}
.w0_c01469{width:1048.035000px;}
.x0_c01469{left:0.000000px;}
.xc_c01469{left:10.365000px;}
.xd_c01469{left:20.730000px;}
.x4_c01469{left:56.160000px;}
.x8_c01469{left:57.885000px;}
.x9_c01469{left:60.480000px;}
.x14_c01469{left:64.800000px;}
.x5_c01469{left:67.395000px;}
.x12_c01469{left:69.120000px;}
.x13_c01469{left:74.310000px;}
.x1_c01469{left:79.485000px;}
.xa_c01469{left:87.270000px;}
.x15_c01469{left:118.365000px;}
.x16_c01469{left:127.005000px;}
.xb_c01469{left:138.240000px;}
.x6_c01469{left:147.750000px;}
.x17_c01469{left:155.520000px;}
.x7_c01469{left:157.245000px;}
.x18_c01469{left:163.289952px;}
.x2_c01469{left:182.310000px;}
.x3_c01469{left:184.035000px;}
.x19_c01469{left:449.280000px;}
.x1a_c01469{left:466.560000px;}
.xe_c01469{left:544.320000px;}
.xf_c01469{left:553.830000px;}
.x1b_c01469{left:566.790000px;}
.x1c_c01469{left:587.520000px;}
.x1d_c01469{left:622.080000px;}
.x10_c01469{left:656.640000px;}
.x11_c01469{left:666.150000px;}
@media print{
.v0_c01469{vertical-align:0.000000pt;}
.ls0_c01469{letter-spacing:0.000000pt;}
.ws0_c01469{word-spacing:0.000000pt;}
.fs11_c01469{font-size:3.072000pt;}
.fsf_c01469{font-size:5.333333pt;}
.fs10_c01469{font-size:6.133333pt;}
.fs6_c01469{font-size:9.226667pt;}
.fs7_c01469{font-size:12.266667pt;}
.fs0_c01469{font-size:15.360000pt;}
.fs2_c01469{font-size:18.453333pt;}
.fs9_c01469{font-size:21.493333pt;}
.fs4_c01469{font-size:24.586667pt;}
.fs1_c01469{font-size:27.626667pt;}
.fs12_c01469{font-size:30.720000pt;}
.fsa_c01469{font-size:33.813333pt;}
.fs8_c01469{font-size:39.946667pt;}
.fs5_c01469{font-size:42.986667pt;}
.fsd_c01469{font-size:52.213333pt;}
.fse_c01469{font-size:61.440000pt;}
.fs3_c01469{font-size:70.666667pt;}
.fsc_c01469{font-size:95.253333pt;}
.fsb_c01469{font-size:122.880000pt;}
.y0_c01469{bottom:0.000000pt;}
.y28_c01469{bottom:105.986667pt;}
.y2b_c01469{bottom:111.360000pt;}
.y29_c01469{bottom:115.200000pt;}
.y2a_c01469{bottom:119.040000pt;}
.y27_c01469{bottom:166.653333pt;}
.y26_c01469{bottom:169.733333pt;}
.y25_c01469{bottom:191.226667pt;}
.y18_c01469{bottom:192.000000pt;}
.y24_c01469{bottom:194.306667pt;}
.y16_c01469{bottom:216.573333pt;}
.y17_c01469{bottom:223.493333pt;}
.y15_c01469{bottom:236.546667pt;}
.y14_c01469{bottom:245.760000pt;}
.y13_c01469{bottom:282.626667pt;}
.y11_c01469{bottom:310.266667pt;}
.y12_c01469{bottom:314.880000pt;}
.y22_c01469{bottom:367.106667pt;}
.y23_c01469{bottom:367.866667pt;}
.y10_c01469{bottom:721.920000pt;}
.ye_c01469{bottom:745.733333pt;}
.yf_c01469{bottom:748.800000pt;}
.yd_c01469{bottom:752.640000pt;}
.yc_c01469{bottom:781.826667pt;}
.yb_c01469{bottom:785.666667pt;}
.ya_c01469{bottom:811.013333pt;}
.y9_c01469{bottom:811.773333pt;}
.y8_c01469{bottom:817.920000pt;}
.y6_c01469{bottom:827.133333pt;}
.y7_c01469{bottom:830.973333pt;}
.y5_c01469{bottom:840.186667pt;}
.y4_c01469{bottom:842.493333pt;}
.y3_c01469{bottom:850.946667pt;}
.y2_c01469{bottom:857.093333pt;}
.y1_c01469{bottom:860.160000pt;}
.y21_c01469{bottom:1173.506667pt;}
.y20_c01469{bottom:1195.773333pt;}
.y1f_c01469{bottom:1224.960000pt;}
.y1e_c01469{bottom:1239.546667pt;}
.y1d_c01469{bottom:1246.466667pt;}
.y1a_c01469{bottom:1270.266667pt;}
.y1c_c01469{bottom:1271.040000pt;}
.y1b_c01469{bottom:1274.106667pt;}
.y19_c01469{bottom:1277.186667pt;}
.h13_c01469{height:2.764500pt;}
.h11_c01469{height:4.799479pt;}
.h12_c01469{height:5.519401pt;}
.h8_c01469{height:8.303099pt;}
.h9_c01469{height:11.038802pt;}
.h2_c01469{height:13.822500pt;}
.h4_c01469{height:16.606198pt;}
.hb_c01469{height:19.341901pt;}
.h6_c01469{height:22.125599pt;}
.h3_c01469{height:24.861302pt;}
.h14_c01469{height:27.645000pt;}
.hc_c01469{height:30.428698pt;}
.ha_c01469{height:35.948099pt;}
.h7_c01469{height:38.683802pt;}
.hf_c01469{height:46.986901pt;}
.h10_c01469{height:55.290000pt;}
.h5_c01469{height:63.593099pt;}
.he_c01469{height:85.718698pt;}
.hd_c01469{height:110.580000pt;}
.h0_c01469{height:1348.613333pt;}
.h1_c01469{height:1348.666667pt;}
.w1_c01469{width:931.333333pt;}
.w0_c01469{width:931.586667pt;}
.x0_c01469{left:0.000000pt;}
.xc_c01469{left:9.213333pt;}
.xd_c01469{left:18.426667pt;}
.x4_c01469{left:49.920000pt;}
.x8_c01469{left:51.453333pt;}
.x9_c01469{left:53.760000pt;}
.x14_c01469{left:57.600000pt;}
.x5_c01469{left:59.906667pt;}
.x12_c01469{left:61.440000pt;}
.x13_c01469{left:66.053333pt;}
.x1_c01469{left:70.653333pt;}
.xa_c01469{left:77.573333pt;}
.x15_c01469{left:105.213333pt;}
.x16_c01469{left:112.893333pt;}
.xb_c01469{left:122.880000pt;}
.x6_c01469{left:131.333333pt;}
.x17_c01469{left:138.240000pt;}
.x7_c01469{left:139.773333pt;}
.x18_c01469{left:145.146624pt;}
.x2_c01469{left:162.053333pt;}
.x3_c01469{left:163.586667pt;}
.x19_c01469{left:399.360000pt;}
.x1a_c01469{left:414.720000pt;}
.xe_c01469{left:483.840000pt;}
.xf_c01469{left:492.293333pt;}
.x1b_c01469{left:503.813333pt;}
.x1c_c01469{left:522.240000pt;}
.x1d_c01469{left:552.960000pt;}
.x10_c01469{left:583.680000pt;}
.x11_c01469{left:592.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01470 {
    display:none;
  }
  .loading-indicator_c01470.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01470 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01470 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01470" -> "#page-container .classname_c01470")
 */
.pf_c01470 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01470 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01470 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01470 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01470 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01470 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01470 {overflow:visible;}
  }
}
.c_c01470 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01470 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01470:after { /* webkit #35443 */
  content: '';
}
.t_c01470:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01470 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01470 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01470 { /* info for Javascript */
  display:none;
}
.l_c01470 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01470 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01470 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01470:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01470 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01470.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01470.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01470 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01470{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01470;src:url('chunks/assets/font_c9a76cdf6dae2ae576c3b278.woff2')format("woff");}.ff1_c01470{font-family:ff1_c01470;line-height:1.109863;font-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_c01470{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m8_c01470{transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187675,0.000000,0.000000,0.250000,0,0);}
.m3_c01470{transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.189250,0.000000,0.000000,0.250000,0,0);}
.m0_c01470{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m2_c01470{transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.290000,0.000000,0.000000,0.250000,0,0);}
.m9_c01470{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);}
.m5_c01470{transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.327500,0.000000,0.000000,0.250000,0,0);}
.m6_c01470{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m4_c01470{transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.537500,0.000000,0.000000,0.250000,0,0);}
.m1_c01470{transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.625000,0.000000,0.000000,0.250000,0,0);}
.v0_c01470{vertical-align:0.000000px;}
.ls0_c01470{letter-spacing:0.000000px;}
.sc__c01470{text-shadow:none;}
.sc0_c01470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01470{-webkit-text-stroke:0px transparent;}
.sc0_c01470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01470{word-spacing:0.000000px;}
.fc0_c01470{color:transparent;}
.fs8_c01470{font-size:3.456000px;}
.fs7_c01470{font-size:6.000000px;}
.fs1_c01470{font-size:6.900000px;}
.fs0_c01470{font-size:10.380000px;}
.fs4_c01470{font-size:17.280000px;}
.fs3_c01470{font-size:20.760000px;}
.fs5_c01470{font-size:24.180000px;}
.fs9_c01470{font-size:34.560000px;}
.fs6_c01470{font-size:41.460000px;}
.fs2_c01470{font-size:44.940000px;}
.y0_c01470{bottom:0.000000px;}
.yd_c01470{bottom:260.925000px;}
.yc_c01470{bottom:266.970000px;}
.y8_c01470{bottom:1088.640000px;}
.y9_c01470{bottom:1091.235000px;}
.ya_c01470{bottom:1093.830000px;}
.y7_c01470{bottom:1095.555000px;}
.yb_c01470{bottom:1096.410000px;}
.y6_c01470{bottom:1104.195000px;}
.y4_c01470{bottom:1135.290000px;}
.y5_c01470{bottom:1140.480000px;}
.y3_c01470{bottom:1359.930000px;}
.y1_c01470{bottom:1393.635000px;}
.y2_c01470{bottom:1396.230000px;}
.ha_c01470{height:3.110063px;}
.h9_c01470{height:5.399414px;}
.h3_c01470{height:6.209326px;}
.h2_c01470{height:9.340986px;}
.h6_c01470{height:15.550313px;}
.h5_c01470{height:18.681973px;}
.h7_c01470{height:21.759639px;}
.hb_c01470{height:31.100625px;}
.h8_c01470{height:37.309951px;}
.h4_c01470{height:40.441611px;}
.h0_c01470{height:1521.510000px;}
.h1_c01470{height:1521.750000px;}
.w0_c01470{width:1060.995000px;}
.w1_c01470{width:1061.250000px;}
.x0_c01470{left:0.000000px;}
.x3_c01470{left:927.930000px;}
.x7_c01470{left:929.670000px;}
.x4_c01470{left:932.250000px;}
.x8_c01470{left:940.035000px;}
.x5_c01470{left:942.630000px;}
.x9_c01470{left:962.490000px;}
.xa_c01470{left:971.130000px;}
.x6_c01470{left:997.920000px;}
.x1_c01470{left:1003.110000px;}
.x2_c01470{left:1021.245000px;}
.xb_c01470{left:1030.755000px;}
.xc_c01470{left:1040.250360px;}
.xd_c01470{left:1048.890000px;}
@media print{
.v0_c01470{vertical-align:0.000000pt;}
.ls0_c01470{letter-spacing:0.000000pt;}
.ws0_c01470{word-spacing:0.000000pt;}
.fs8_c01470{font-size:3.072000pt;}
.fs7_c01470{font-size:5.333333pt;}
.fs1_c01470{font-size:6.133333pt;}
.fs0_c01470{font-size:9.226667pt;}
.fs4_c01470{font-size:15.360000pt;}
.fs3_c01470{font-size:18.453333pt;}
.fs5_c01470{font-size:21.493333pt;}
.fs9_c01470{font-size:30.720000pt;}
.fs6_c01470{font-size:36.853333pt;}
.fs2_c01470{font-size:39.946667pt;}
.y0_c01470{bottom:0.000000pt;}
.yd_c01470{bottom:231.933333pt;}
.yc_c01470{bottom:237.306667pt;}
.y8_c01470{bottom:967.680000pt;}
.y9_c01470{bottom:969.986667pt;}
.ya_c01470{bottom:972.293333pt;}
.y7_c01470{bottom:973.826667pt;}
.yb_c01470{bottom:974.586667pt;}
.y6_c01470{bottom:981.506667pt;}
.y4_c01470{bottom:1009.146667pt;}
.y5_c01470{bottom:1013.760000pt;}
.y3_c01470{bottom:1208.826667pt;}
.y1_c01470{bottom:1238.786667pt;}
.y2_c01470{bottom:1241.093333pt;}
.ha_c01470{height:2.764500pt;}
.h9_c01470{height:4.799479pt;}
.h3_c01470{height:5.519401pt;}
.h2_c01470{height:8.303099pt;}
.h6_c01470{height:13.822500pt;}
.h5_c01470{height:16.606198pt;}
.h7_c01470{height:19.341901pt;}
.hb_c01470{height:27.645000pt;}
.h8_c01470{height:33.164401pt;}
.h4_c01470{height:35.948099pt;}
.h0_c01470{height:1352.453333pt;}
.h1_c01470{height:1352.666667pt;}
.w0_c01470{width:943.106667pt;}
.w1_c01470{width:943.333333pt;}
.x0_c01470{left:0.000000pt;}
.x3_c01470{left:824.826667pt;}
.x7_c01470{left:826.373333pt;}
.x4_c01470{left:828.666667pt;}
.x8_c01470{left:835.586667pt;}
.x5_c01470{left:837.893333pt;}
.x9_c01470{left:855.546667pt;}
.xa_c01470{left:863.226667pt;}
.x6_c01470{left:887.040000pt;}
.x1_c01470{left:891.653333pt;}
.x2_c01470{left:907.773333pt;}
.xb_c01470{left:916.226667pt;}
.xc_c01470{left:924.666987pt;}
.xd_c01470{left:932.346667pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01471 {
    display:none;
  }
  .loading-indicator_c01471.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01471 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01471 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01471" -> "#page-container .classname_c01471")
 */
.pf_c01471 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01471 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01471 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01471 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01471 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01471 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01471 {overflow:visible;}
  }
}
.c_c01471 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01471 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01471:after { /* webkit #35443 */
  content: '';
}
.t_c01471:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01471 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01471 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01471 { /* info for Javascript */
  display:none;
}
.l_c01471 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01471 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01471 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01471:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01471 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01471.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01471.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01471 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01471{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01471;src:url('chunks/assets/font_70699a970d1a8c97b3ca19f0.woff2')format("woff");}.ff1_c01471{font-family:ff1_c01471;line-height:1.109863;font-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_c01471{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m4_c01471{transform:matrix(0.019200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.019200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.019200,0.000000,0.000000,0.250000,0,0);}
.m15_c01471{transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.046875,0.000000,0.000000,0.250000,0,0);}
.m10_c01471{transform:matrix(0.074600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.074600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.074600,0.000000,0.000000,0.250000,0,0);}
.m21_c01471{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);}
.m49_c01471{transform:matrix(0.090925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090925,0.000000,0.000000,0.250000,0,0);}
.m45_c01471{transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.113100,0.000000,0.000000,0.250000,0,0);}
.m2a_c01471{transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121675,0.000000,0.000000,0.250000,0,0);}
.m48_c01471{transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.131700,0.000000,0.000000,0.250000,0,0);}
.m59_c01471{transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142950,0.000000,0.000000,0.250000,0,0);}
.m8_c01471{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m34_c01471{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);}
.m41_c01471{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);}
.m3e_c01471{transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.147600,0.000000,0.000000,0.250000,0,0);}
.m57_c01471{transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149525,0.000000,0.000000,0.250000,0,0);}
.m62_c01471{transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150150,0.000000,0.000000,0.250000,0,0);}
.m52_c01471{transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.151750,0.000000,0.000000,0.250000,0,0);}
.m4c_c01471{transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156325,0.000000,0.000000,0.250000,0,0);}
.m37_c01471{transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157400,0.000000,0.000000,0.250000,0,0);}
.m54_c01471{transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158025,0.000000,0.000000,0.250000,0,0);}
.m5a_c01471{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);}
.m4d_c01471{transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158825,0.000000,0.000000,0.250000,0,0);}
.m4b_c01471{transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162700,0.000000,0.000000,0.250000,0,0);}
.m3b_c01471{transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.167575,0.000000,0.000000,0.250000,0,0);}
.m46_c01471{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);}
.m25_c01471{transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.170700,0.000000,0.000000,0.250000,0,0);}
.m4a_c01471{transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175450,0.000000,0.000000,0.250000,0,0);}
.m3f_c01471{transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.176250,0.000000,0.000000,0.250000,0,0);}
.m38_c01471{transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180075,0.000000,0.000000,0.250000,0,0);}
.m56_c01471{transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180575,0.000000,0.000000,0.250000,0,0);}
.m31_c01471{transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185975,0.000000,0.000000,0.250000,0,0);}
.m11_c01471{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);}
.m2e_c01471{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);}
.m26_c01471{transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190250,0.000000,0.000000,0.250000,0,0);}
.m44_c01471{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);}
.m47_c01471{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);}
.m3c_c01471{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);}
.m51_c01471{transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198325,0.000000,0.000000,0.250000,0,0);}
.m3d_c01471{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.m40_c01471{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);}
.m28_c01471{transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.202525,0.000000,0.000000,0.250000,0,0);}
.m50_c01471{transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206000,0.000000,0.000000,0.250000,0,0);}
.m53_c01471{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);}
.m33_c01471{transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212100,0.000000,0.000000,0.250000,0,0);}
.m2c_c01471{transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220700,0.000000,0.000000,0.250000,0,0);}
.m2d_c01471{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);}
.m13_c01471{transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224825,0.000000,0.000000,0.250000,0,0);}
.m35_c01471{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);}
.m5b_c01471{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);}
.m36_c01471{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);}
.m39_c01471{transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225475,0.000000,0.000000,0.250000,0,0);}
.mb_c01471{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);}
.m4e_c01471{transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227950,0.000000,0.000000,0.250000,0,0);}
.m20_c01471{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);}
.m1a_c01471{transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.238100,0.000000,0.000000,0.250000,0,0);}
.m4f_c01471{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);}
.m1d_c01471{transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243000,0.000000,0.000000,0.250000,0,0);}
.m58_c01471{transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247125,0.000000,0.000000,0.250000,0,0);}
.m32_c01471{transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248375,0.000000,0.000000,0.250000,0,0);}
.m2_c01471{transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249800,0.000000,0.000000,0.250000,0,0);}
.m9_c01471{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);}
.m27_c01471{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1b_c01471{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);}
.m17_c01471{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);}
.m42_c01471{transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.270000,0.000000,0.000000,0.250000,0,0);}
.m30_c01471{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);}
.m61_c01471{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);}
.m1_c01471{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m1e_c01471{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.m16_c01471{transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.312500,0.000000,0.000000,0.250000,0,0);}
.m55_c01471{transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.332500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01471{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);}
.m5_c01471{transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.357500,0.000000,0.000000,0.250000,0,0);}
.m1c_c01471{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);}
.m2b_c01471{transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.365000,0.000000,0.000000,0.250000,0,0);}
.m24_c01471{transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.367500,0.000000,0.000000,0.250000,0,0);}
.m5d_c01471{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);}
.m3a_c01471{transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.385000,0.000000,0.000000,0.250000,0,0);}
.m5e_c01471{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);}
.m43_c01471{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.m23_c01471{transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.402500,0.000000,0.000000,0.250000,0,0);}
.md_c01471{transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.407500,0.000000,0.000000,0.250000,0,0);}
.m7_c01471{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);}
.m60_c01471{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);}
.m5c_c01471{transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.430000,0.000000,0.000000,0.250000,0,0);}
.me_c01471{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.ma_c01471{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);}
.m19_c01471{transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.452500,0.000000,0.000000,0.250000,0,0);}
.m0_c01471{transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.512500,0.000000,0.000000,0.250000,0,0);}
.mf_c01471{transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.535000,0.000000,0.000000,0.250000,0,0);}
.m14_c01471{transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.565000,0.000000,0.000000,0.250000,0,0);}
.m12_c01471{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m22_c01471{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);}
.m29_c01471{transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.602500,0.000000,0.000000,0.250000,0,0);}
.m18_c01471{transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.645000,0.000000,0.000000,0.250000,0,0);}
.m5f_c01471{transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.695000,0.000000,0.000000,0.250000,0,0);}
.m3_c01471{transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.720000,0.000000,0.000000,0.250000,0,0);}
.mc_c01471{transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.920000,0.000000,0.000000,0.250000,0,0);}
.m2f_c01471{transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.440000,0.000000,0.000000,0.250000,0,0);}
.v0_c01471{vertical-align:0.000000px;}
.ls0_c01471{letter-spacing:0.000000px;}
.sc__c01471{text-shadow:none;}
.sc0_c01471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01471{-webkit-text-stroke:0px transparent;}
.sc0_c01471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01471{word-spacing:0.000000px;}
.fc0_c01471{color:transparent;}
.fs4_c01471{font-size:3.456000px;}
.fs5_c01471{font-size:6.000000px;}
.fsc_c01471{font-size:6.900000px;}
.fs6_c01471{font-size:10.380000px;}
.fsf_c01471{font-size:13.800000px;}
.fs0_c01471{font-size:17.280000px;}
.fsa_c01471{font-size:20.760000px;}
.fsd_c01471{font-size:24.180000px;}
.fs9_c01471{font-size:27.660000px;}
.fs1_c01471{font-size:31.080000px;}
.fs7_c01471{font-size:34.560000px;}
.fs13_c01471{font-size:38.040000px;}
.fsb_c01471{font-size:41.460000px;}
.fs8_c01471{font-size:44.940000px;}
.fs1e_c01471{font-size:48.360000px;}
.fs12_c01471{font-size:51.840000px;}
.fs18_c01471{font-size:55.320000px;}
.fs17_c01471{font-size:58.740000px;}
.fs3_c01471{font-size:62.220000px;}
.fs11_c01471{font-size:65.640000px;}
.fs14_c01471{font-size:69.120000px;}
.fs16_c01471{font-size:72.600000px;}
.fs1a_c01471{font-size:76.020000px;}
.fs19_c01471{font-size:79.500000px;}
.fs1b_c01471{font-size:82.920000px;}
.fs1d_c01471{font-size:86.400000px;}
.fs1f_c01471{font-size:89.880000px;}
.fs15_c01471{font-size:93.300000px;}
.fs1c_c01471{font-size:107.160000px;}
.fse_c01471{font-size:117.480000px;}
.fs2_c01471{font-size:162.420000px;}
.fs10_c01471{font-size:179.700000px;}
.y0_c01471{bottom:0.000000px;}
.y75_c01471{bottom:78.630000px;}
.y74_c01471{bottom:91.590000px;}
.y73_c01471{bottom:95.040000px;}
.y72_c01471{bottom:95.910000px;}
.y71_c01471{bottom:101.085000px;}
.y70_c01471{bottom:112.320000px;}
.y6f_c01471{bottom:137.370000px;}
.y6e_c01471{bottom:138.240000px;}
.y6d_c01471{bottom:140.835000px;}
.y6c_c01471{bottom:161.565000px;}
.y6b_c01471{bottom:165.885000px;}
.y66_c01471{bottom:177.990000px;}
.y65_c01471{bottom:179.715000px;}
.y64_c01471{bottom:183.165000px;}
.y63_c01471{bottom:190.080000px;}
.y61_c01471{bottom:193.530000px;}
.y62_c01471{bottom:194.400000px;}
.y5f_c01471{bottom:201.315000px;}
.y5e_c01471{bottom:202.170000px;}
.y5d_c01471{bottom:203.040000px;}
.y5c_c01471{bottom:210.810000px;}
.y5b_c01471{bottom:211.680000px;}
.y5a_c01471{bottom:214.275000px;}
.y60_c01471{bottom:216.870000px;}
.y59_c01471{bottom:219.450000px;}
.y58_c01471{bottom:222.915000px;}
.y6a_c01471{bottom:225.510000px;}
.y57_c01471{bottom:226.365000px;}
.y69_c01471{bottom:228.960000px;}
.y56_c01471{bottom:230.685000px;}
.y55_c01471{bottom:231.555000px;}
.y54_c01471{bottom:236.730000px;}
.y53_c01471{bottom:241.920000px;}
.y52_c01471{bottom:242.790000px;}
.y4f_c01471{bottom:247.965000px;}
.y51_c01471{bottom:249.690000px;}
.y50_c01471{bottom:252.285000px;}
.y4e_c01471{bottom:260.070000px;}
.y4d_c01471{bottom:261.795000px;}
.y4b_c01471{bottom:266.115000px;}
.y4a_c01471{bottom:267.840000px;}
.y49_c01471{bottom:273.030000px;}
.y48_c01471{bottom:276.480000px;}
.y47_c01471{bottom:277.350000px;}
.y4c_c01471{bottom:279.930000px;}
.y46_c01471{bottom:285.120000px;}
.y44_c01471{bottom:288.570000px;}
.y43_c01471{bottom:289.440000px;}
.y42_c01471{bottom:291.165000px;}
.y45_c01471{bottom:292.035000px;}
.y41_c01471{bottom:294.630000px;}
.y40_c01471{bottom:298.080000px;}
.y3f_c01471{bottom:310.170000px;}
.y3e_c01471{bottom:311.040000px;}
.y3d_c01471{bottom:311.910000px;}
.y3c_c01471{bottom:314.490000px;}
.y3b_c01471{bottom:322.275000px;}
.y3a_c01471{bottom:324.000000px;}
.y37_c01471{bottom:330.045000px;}
.y39_c01471{bottom:330.915000px;}
.y36_c01471{bottom:332.640000px;}
.y38_c01471{bottom:333.510000px;}
.y35_c01471{bottom:337.830000px;}
.y32_c01471{bottom:339.555000px;}
.y34_c01471{bottom:340.410000px;}
.y33_c01471{bottom:343.875000px;}
.y31_c01471{bottom:348.195000px;}
.y2f_c01471{bottom:352.515000px;}
.y30_c01471{bottom:354.240000px;}
.y2e_c01471{bottom:355.110000px;}
.y2a_c01471{bottom:361.155000px;}
.y2d_c01471{bottom:362.010000px;}
.y2c_c01471{bottom:363.750000px;}
.y2b_c01471{bottom:365.475000px;}
.y68_c01471{bottom:374.115000px;}
.y67_c01471{bottom:377.565000px;}
.y27_c01471{bottom:382.755000px;}
.y25_c01471{bottom:383.610000px;}
.y28_c01471{bottom:385.350000px;}
.y29_c01471{bottom:387.075000px;}
.y26_c01471{bottom:388.800000px;}
.y24_c01471{bottom:393.990000px;}
.y23_c01471{bottom:408.675000px;}
.y22_c01471{bottom:419.040000px;}
.y21_c01471{bottom:435.450000px;}
.y20_c01471{bottom:445.830000px;}
.y1f_c01471{bottom:716.250000px;}
.y1e_c01471{bottom:761.190000px;}
.y1d_c01471{bottom:775.005000px;}
.y1c_c01471{bottom:786.240000px;}
.y1b_c01471{bottom:799.200000px;}
.y19_c01471{bottom:814.755000px;}
.y1a_c01471{bottom:821.670000px;}
.y18_c01471{bottom:839.805000px;}
.y17_c01471{bottom:847.590000px;}
.y16_c01471{bottom:911.520000px;}
.y15_c01471{bottom:936.570000px;}
.y13_c01471{bottom:944.355000px;}
.y14_c01471{bottom:952.125000px;}
.y10_c01471{bottom:1092.090000px;}
.y11_c01471{bottom:1094.685000px;}
.yf_c01471{bottom:1097.280000px;}
.ye_c01471{bottom:1099.005000px;}
.y12_c01471{bottom:1107.645000px;}
.yd_c01471{bottom:1118.880000px;}
.yc_c01471{bottom:1121.475000px;}
.yb_c01471{bottom:1363.395000px;}
.ya_c01471{bottom:1380.675000px;}
.y4_c01471{bottom:1390.170000px;}
.y9_c01471{bottom:1391.040000px;}
.y7_c01471{bottom:1395.360000px;}
.y8_c01471{bottom:1396.230000px;}
.y6_c01471{bottom:1399.680000px;}
.y5_c01471{bottom:1402.275000px;}
.y3_c01471{bottom:1408.320000px;}
.y2_c01471{bottom:1429.050000px;}
.y1_c01471{bottom:1430.790000px;}
.h6_c01471{height:3.110063px;}
.h7_c01471{height:5.399414px;}
.he_c01471{height:6.209326px;}
.h8_c01471{height:9.340986px;}
.h11_c01471{height:12.418652px;}
.h2_c01471{height:15.550313px;}
.hc_c01471{height:18.681973px;}
.hf_c01471{height:21.759639px;}
.hb_c01471{height:24.891299px;}
.h3_c01471{height:27.968965px;}
.h9_c01471{height:31.100625px;}
.h15_c01471{height:34.232285px;}
.hd_c01471{height:37.309951px;}
.ha_c01471{height:40.441611px;}
.h20_c01471{height:43.519277px;}
.h14_c01471{height:46.650937px;}
.h1a_c01471{height:49.782598px;}
.h19_c01471{height:52.860264px;}
.h5_c01471{height:55.991924px;}
.h13_c01471{height:59.069590px;}
.h16_c01471{height:62.201250px;}
.h18_c01471{height:65.332910px;}
.h1c_c01471{height:68.410576px;}
.h1b_c01471{height:71.542236px;}
.h1d_c01471{height:74.619902px;}
.h1f_c01471{height:77.751563px;}
.h21_c01471{height:80.883223px;}
.h17_c01471{height:83.960889px;}
.h1e_c01471{height:96.433535px;}
.h10_c01471{height:105.720527px;}
.h4_c01471{height:146.162139px;}
.h12_c01471{height:161.712451px;}
.h0_c01471{height:1517.190000px;}
.h1_c01471{height:1517.250000px;}
.w1_c01471{width:1047.750000px;}
.w0_c01471{width:1048.035000px;}
.x0_c01471{left:0.000000px;}
.x14_c01471{left:4.320000px;}
.x13_c01471{left:6.915000px;}
.x16_c01471{left:10.365000px;}
.x10_c01471{left:12.960000px;}
.x11_c01471{left:25.050000px;}
.x17_c01471{left:31.110000px;}
.x18_c01471{left:33.690000px;}
.x15_c01471{left:50.115000px;}
.x12_c01471{left:57.030000px;}
.xa_c01471{left:80.355000px;}
.xd_c01471{left:82.080000px;}
.xe_c01471{left:92.445000px;}
.x4_c01471{left:104.550000px;}
.x5_c01471{left:115.770000px;}
.x7_c01471{left:123.555000px;}
.x9_c01471{left:131.325000px;}
.x6_c01471{left:133.050000px;}
.xf_c01471{left:150.330000px;}
.x8_c01471{left:152.925000px;}
.xb_c01471{left:170.205000px;}
.xc_c01471{left:181.440000px;}
.x3e_c01471{left:534.810000px;}
.x3f_c01471{left:542.595000px;}
.x37_c01471{left:546.915000px;}
.x31_c01471{left:548.640000px;}
.x2b_c01471{left:551.235000px;}
.x1_c01471{left:552.960000px;}
.x59_c01471{left:554.685000px;}
.x1d_c01471{left:560.730000px;}
.x1e_c01471{left:571.110000px;}
.x2c_c01471{left:580.605000px;}
.x38_c01471{left:584.925000px;}
.x1f_c01471{left:589.245000px;}
.x47_c01471{left:591.840000px;}
.x26_c01471{left:598.755000px;}
.x20_c01471{left:611.715000px;}
.x4e_c01471{left:616.035000px;}
.x48_c01471{left:620.355000px;}
.x32_c01471{left:622.950000px;}
.x4f_c01471{left:628.125000px;}
.x43_c01471{left:630.720000px;}
.x2d_c01471{left:632.445000px;}
.x5b_c01471{left:637.635000px;}
.x39_c01471{left:640.230000px;}
.x27_c01471{left:642.810000px;}
.x5c_c01471{left:656.640000px;}
.x21_c01471{left:658.365000px;}
.x2_c01471{left:660.960000px;}
.x19_c01471{left:663.555000px;}
.x3_c01471{left:669.600000px;}
.x3a_c01471{left:676.515000px;}
.x1a_c01471{left:681.690000px;}
.x2e_c01471{left:686.880000px;}
.x1b_c01471{left:688.605000px;}
.x1c_c01471{left:695.520000px;}
.x22_c01471{left:698.970000px;}
.x44_c01471{left:700.710000px;}
.x49_c01471{left:704.160000px;}
.x33_c01471{left:705.885000px;}
.x5a_c01471{left:707.610000px;}
.x5d_c01471{left:713.670000px;}
.x40_c01471{left:718.845000px;}
.x3b_c01471{left:721.440000px;}
.x45_c01471{left:724.035000px;}
.x50_c01471{left:726.630000px;}
.x4a_c01471{left:740.445000px;}
.x34_c01471{left:745.635000px;}
.x2f_c01471{left:751.680000px;}
.x51_c01471{left:754.275000px;}
.x52_c01471{left:757.725000px;}
.x41_c01471{left:760.320000px;}
.x4b_c01471{left:762.915000px;}
.x35_c01471{left:764.640000px;}
.x4c_c01471{left:767.235000px;}
.x28_c01471{left:769.830000px;}
.x23_c01471{left:778.470000px;}
.x30_c01471{left:787.110000px;}
.x42_c01471{left:788.835000px;}
.x36_c01471{left:793.155000px;}
.x29_c01471{left:794.880000px;}
.x46_c01471{left:797.475000px;}
.x24_c01471{left:799.200000px;}
.x2a_c01471{left:804.390000px;}
.x3c_c01471{left:813.885000px;}
.x25_c01471{left:829.440000px;}
.x4d_c01471{left:837.210000px;}
.x3d_c01471{left:842.400000px;}
.x58_c01471{left:878.685000px;}
.x53_c01471{left:888.195000px;}
.x56_c01471{left:892.515000px;}
.x54_c01471{left:896.835000px;}
.x55_c01471{left:900.285000px;}
.x57_c01471{left:907.200000px;}
@media print{
.v0_c01471{vertical-align:0.000000pt;}
.ls0_c01471{letter-spacing:0.000000pt;}
.ws0_c01471{word-spacing:0.000000pt;}
.fs4_c01471{font-size:3.072000pt;}
.fs5_c01471{font-size:5.333333pt;}
.fsc_c01471{font-size:6.133333pt;}
.fs6_c01471{font-size:9.226667pt;}
.fsf_c01471{font-size:12.266667pt;}
.fs0_c01471{font-size:15.360000pt;}
.fsa_c01471{font-size:18.453333pt;}
.fsd_c01471{font-size:21.493333pt;}
.fs9_c01471{font-size:24.586667pt;}
.fs1_c01471{font-size:27.626667pt;}
.fs7_c01471{font-size:30.720000pt;}
.fs13_c01471{font-size:33.813333pt;}
.fsb_c01471{font-size:36.853333pt;}
.fs8_c01471{font-size:39.946667pt;}
.fs1e_c01471{font-size:42.986667pt;}
.fs12_c01471{font-size:46.080000pt;}
.fs18_c01471{font-size:49.173333pt;}
.fs17_c01471{font-size:52.213333pt;}
.fs3_c01471{font-size:55.306667pt;}
.fs11_c01471{font-size:58.346667pt;}
.fs14_c01471{font-size:61.440000pt;}
.fs16_c01471{font-size:64.533333pt;}
.fs1a_c01471{font-size:67.573333pt;}
.fs19_c01471{font-size:70.666667pt;}
.fs1b_c01471{font-size:73.706667pt;}
.fs1d_c01471{font-size:76.800000pt;}
.fs1f_c01471{font-size:79.893333pt;}
.fs15_c01471{font-size:82.933333pt;}
.fs1c_c01471{font-size:95.253333pt;}
.fse_c01471{font-size:104.426667pt;}
.fs2_c01471{font-size:144.373333pt;}
.fs10_c01471{font-size:159.733333pt;}
.y0_c01471{bottom:0.000000pt;}
.y75_c01471{bottom:69.893333pt;}
.y74_c01471{bottom:81.413333pt;}
.y73_c01471{bottom:84.480000pt;}
.y72_c01471{bottom:85.253333pt;}
.y71_c01471{bottom:89.853333pt;}
.y70_c01471{bottom:99.840000pt;}
.y6f_c01471{bottom:122.106667pt;}
.y6e_c01471{bottom:122.880000pt;}
.y6d_c01471{bottom:125.186667pt;}
.y6c_c01471{bottom:143.613333pt;}
.y6b_c01471{bottom:147.453333pt;}
.y66_c01471{bottom:158.213333pt;}
.y65_c01471{bottom:159.746667pt;}
.y64_c01471{bottom:162.813333pt;}
.y63_c01471{bottom:168.960000pt;}
.y61_c01471{bottom:172.026667pt;}
.y62_c01471{bottom:172.800000pt;}
.y5f_c01471{bottom:178.946667pt;}
.y5e_c01471{bottom:179.706667pt;}
.y5d_c01471{bottom:180.480000pt;}
.y5c_c01471{bottom:187.386667pt;}
.y5b_c01471{bottom:188.160000pt;}
.y5a_c01471{bottom:190.466667pt;}
.y60_c01471{bottom:192.773333pt;}
.y59_c01471{bottom:195.066667pt;}
.y58_c01471{bottom:198.146667pt;}
.y6a_c01471{bottom:200.453333pt;}
.y57_c01471{bottom:201.213333pt;}
.y69_c01471{bottom:203.520000pt;}
.y56_c01471{bottom:205.053333pt;}
.y55_c01471{bottom:205.826667pt;}
.y54_c01471{bottom:210.426667pt;}
.y53_c01471{bottom:215.040000pt;}
.y52_c01471{bottom:215.813333pt;}
.y4f_c01471{bottom:220.413333pt;}
.y51_c01471{bottom:221.946667pt;}
.y50_c01471{bottom:224.253333pt;}
.y4e_c01471{bottom:231.173333pt;}
.y4d_c01471{bottom:232.706667pt;}
.y4b_c01471{bottom:236.546667pt;}
.y4a_c01471{bottom:238.080000pt;}
.y49_c01471{bottom:242.693333pt;}
.y48_c01471{bottom:245.760000pt;}
.y47_c01471{bottom:246.533333pt;}
.y4c_c01471{bottom:248.826667pt;}
.y46_c01471{bottom:253.440000pt;}
.y44_c01471{bottom:256.506667pt;}
.y43_c01471{bottom:257.280000pt;}
.y42_c01471{bottom:258.813333pt;}
.y45_c01471{bottom:259.586667pt;}
.y41_c01471{bottom:261.893333pt;}
.y40_c01471{bottom:264.960000pt;}
.y3f_c01471{bottom:275.706667pt;}
.y3e_c01471{bottom:276.480000pt;}
.y3d_c01471{bottom:277.253333pt;}
.y3c_c01471{bottom:279.546667pt;}
.y3b_c01471{bottom:286.466667pt;}
.y3a_c01471{bottom:288.000000pt;}
.y37_c01471{bottom:293.373333pt;}
.y39_c01471{bottom:294.146667pt;}
.y36_c01471{bottom:295.680000pt;}
.y38_c01471{bottom:296.453333pt;}
.y35_c01471{bottom:300.293333pt;}
.y32_c01471{bottom:301.826667pt;}
.y34_c01471{bottom:302.586667pt;}
.y33_c01471{bottom:305.666667pt;}
.y31_c01471{bottom:309.506667pt;}
.y2f_c01471{bottom:313.346667pt;}
.y30_c01471{bottom:314.880000pt;}
.y2e_c01471{bottom:315.653333pt;}
.y2a_c01471{bottom:321.026667pt;}
.y2d_c01471{bottom:321.786667pt;}
.y2c_c01471{bottom:323.333333pt;}
.y2b_c01471{bottom:324.866667pt;}
.y68_c01471{bottom:332.546667pt;}
.y67_c01471{bottom:335.613333pt;}
.y27_c01471{bottom:340.226667pt;}
.y25_c01471{bottom:340.986667pt;}
.y28_c01471{bottom:342.533333pt;}
.y29_c01471{bottom:344.066667pt;}
.y26_c01471{bottom:345.600000pt;}
.y24_c01471{bottom:350.213333pt;}
.y23_c01471{bottom:363.266667pt;}
.y22_c01471{bottom:372.480000pt;}
.y21_c01471{bottom:387.066667pt;}
.y20_c01471{bottom:396.293333pt;}
.y1f_c01471{bottom:636.666667pt;}
.y1e_c01471{bottom:676.613333pt;}
.y1d_c01471{bottom:688.893333pt;}
.y1c_c01471{bottom:698.880000pt;}
.y1b_c01471{bottom:710.400000pt;}
.y19_c01471{bottom:724.226667pt;}
.y1a_c01471{bottom:730.373333pt;}
.y18_c01471{bottom:746.493333pt;}
.y17_c01471{bottom:753.413333pt;}
.y16_c01471{bottom:810.240000pt;}
.y15_c01471{bottom:832.506667pt;}
.y13_c01471{bottom:839.426667pt;}
.y14_c01471{bottom:846.333333pt;}
.y10_c01471{bottom:970.746667pt;}
.y11_c01471{bottom:973.053333pt;}
.yf_c01471{bottom:975.360000pt;}
.ye_c01471{bottom:976.893333pt;}
.y12_c01471{bottom:984.573333pt;}
.yd_c01471{bottom:994.560000pt;}
.yc_c01471{bottom:996.866667pt;}
.yb_c01471{bottom:1211.906667pt;}
.ya_c01471{bottom:1227.266667pt;}
.y4_c01471{bottom:1235.706667pt;}
.y9_c01471{bottom:1236.480000pt;}
.y7_c01471{bottom:1240.320000pt;}
.y8_c01471{bottom:1241.093333pt;}
.y6_c01471{bottom:1244.160000pt;}
.y5_c01471{bottom:1246.466667pt;}
.y3_c01471{bottom:1251.840000pt;}
.y2_c01471{bottom:1270.266667pt;}
.y1_c01471{bottom:1271.813333pt;}
.h6_c01471{height:2.764500pt;}
.h7_c01471{height:4.799479pt;}
.he_c01471{height:5.519401pt;}
.h8_c01471{height:8.303099pt;}
.h11_c01471{height:11.038802pt;}
.h2_c01471{height:13.822500pt;}
.hc_c01471{height:16.606198pt;}
.hf_c01471{height:19.341901pt;}
.hb_c01471{height:22.125599pt;}
.h3_c01471{height:24.861302pt;}
.h9_c01471{height:27.645000pt;}
.h15_c01471{height:30.428698pt;}
.hd_c01471{height:33.164401pt;}
.ha_c01471{height:35.948099pt;}
.h20_c01471{height:38.683802pt;}
.h14_c01471{height:41.467500pt;}
.h1a_c01471{height:44.251198pt;}
.h19_c01471{height:46.986901pt;}
.h5_c01471{height:49.770599pt;}
.h13_c01471{height:52.506302pt;}
.h16_c01471{height:55.290000pt;}
.h18_c01471{height:58.073698pt;}
.h1c_c01471{height:60.809401pt;}
.h1b_c01471{height:63.593099pt;}
.h1d_c01471{height:66.328802pt;}
.h1f_c01471{height:69.112500pt;}
.h21_c01471{height:71.896198pt;}
.h17_c01471{height:74.631901pt;}
.h1e_c01471{height:85.718698pt;}
.h10_c01471{height:93.973802pt;}
.h4_c01471{height:129.921901pt;}
.h12_c01471{height:143.744401pt;}
.h0_c01471{height:1348.613333pt;}
.h1_c01471{height:1348.666667pt;}
.w1_c01471{width:931.333333pt;}
.w0_c01471{width:931.586667pt;}
.x0_c01471{left:0.000000pt;}
.x14_c01471{left:3.840000pt;}
.x13_c01471{left:6.146667pt;}
.x16_c01471{left:9.213333pt;}
.x10_c01471{left:11.520000pt;}
.x11_c01471{left:22.266667pt;}
.x17_c01471{left:27.653333pt;}
.x18_c01471{left:29.946667pt;}
.x15_c01471{left:44.546667pt;}
.x12_c01471{left:50.693333pt;}
.xa_c01471{left:71.426667pt;}
.xd_c01471{left:72.960000pt;}
.xe_c01471{left:82.173333pt;}
.x4_c01471{left:92.933333pt;}
.x5_c01471{left:102.906667pt;}
.x7_c01471{left:109.826667pt;}
.x9_c01471{left:116.733333pt;}
.x6_c01471{left:118.266667pt;}
.xf_c01471{left:133.626667pt;}
.x8_c01471{left:135.933333pt;}
.xb_c01471{left:151.293333pt;}
.xc_c01471{left:161.280000pt;}
.x3e_c01471{left:475.386667pt;}
.x3f_c01471{left:482.306667pt;}
.x37_c01471{left:486.146667pt;}
.x31_c01471{left:487.680000pt;}
.x2b_c01471{left:489.986667pt;}
.x1_c01471{left:491.520000pt;}
.x59_c01471{left:493.053333pt;}
.x1d_c01471{left:498.426667pt;}
.x1e_c01471{left:507.653333pt;}
.x2c_c01471{left:516.093333pt;}
.x38_c01471{left:519.933333pt;}
.x1f_c01471{left:523.773333pt;}
.x47_c01471{left:526.080000pt;}
.x26_c01471{left:532.226667pt;}
.x20_c01471{left:543.746667pt;}
.x4e_c01471{left:547.586667pt;}
.x48_c01471{left:551.426667pt;}
.x32_c01471{left:553.733333pt;}
.x4f_c01471{left:558.333333pt;}
.x43_c01471{left:560.640000pt;}
.x2d_c01471{left:562.173333pt;}
.x5b_c01471{left:566.786667pt;}
.x39_c01471{left:569.093333pt;}
.x27_c01471{left:571.386667pt;}
.x5c_c01471{left:583.680000pt;}
.x21_c01471{left:585.213333pt;}
.x2_c01471{left:587.520000pt;}
.x19_c01471{left:589.826667pt;}
.x3_c01471{left:595.200000pt;}
.x3a_c01471{left:601.346667pt;}
.x1a_c01471{left:605.946667pt;}
.x2e_c01471{left:610.560000pt;}
.x1b_c01471{left:612.093333pt;}
.x1c_c01471{left:618.240000pt;}
.x22_c01471{left:621.306667pt;}
.x44_c01471{left:622.853333pt;}
.x49_c01471{left:625.920000pt;}
.x33_c01471{left:627.453333pt;}
.x5a_c01471{left:628.986667pt;}
.x5d_c01471{left:634.373333pt;}
.x40_c01471{left:638.973333pt;}
.x3b_c01471{left:641.280000pt;}
.x45_c01471{left:643.586667pt;}
.x50_c01471{left:645.893333pt;}
.x4a_c01471{left:658.173333pt;}
.x34_c01471{left:662.786667pt;}
.x2f_c01471{left:668.160000pt;}
.x51_c01471{left:670.466667pt;}
.x52_c01471{left:673.533333pt;}
.x41_c01471{left:675.840000pt;}
.x4b_c01471{left:678.146667pt;}
.x35_c01471{left:679.680000pt;}
.x4c_c01471{left:681.986667pt;}
.x28_c01471{left:684.293333pt;}
.x23_c01471{left:691.973333pt;}
.x30_c01471{left:699.653333pt;}
.x42_c01471{left:701.186667pt;}
.x36_c01471{left:705.026667pt;}
.x29_c01471{left:706.560000pt;}
.x46_c01471{left:708.866667pt;}
.x24_c01471{left:710.400000pt;}
.x2a_c01471{left:715.013333pt;}
.x3c_c01471{left:723.453333pt;}
.x25_c01471{left:737.280000pt;}
.x4d_c01471{left:744.186667pt;}
.x3d_c01471{left:748.800000pt;}
.x58_c01471{left:781.053333pt;}
.x53_c01471{left:789.506667pt;}
.x56_c01471{left:793.346667pt;}
.x54_c01471{left:797.186667pt;}
.x55_c01471{left:800.253333pt;}
.x57_c01471{left:806.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_c01472 {
    display:none;
  }
  .loading-indicator_c01472.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01472 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01472 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01472" -> "#page-container .classname_c01472")
 */
.pf_c01472 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01472 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01472 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01472 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01472 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01472 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01472 {overflow:visible;}
  }
}
.c_c01472 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01472 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01472:after { /* webkit #35443 */
  content: '';
}
.t_c01472:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01472 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01472 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01472 { /* info for Javascript */
  display:none;
}
.l_c01472 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01472 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01472 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01472:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01472 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01472.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01472.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01472 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01472{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01472;src:url('chunks/assets/font_a6afc152c349f42178e2bdc4.woff2')format("woff");}.ff1_c01472{font-family:ff1_c01472;line-height:1.109863;font-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_c01472{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);}
.v0_c01472{vertical-align:0.000000px;}
.ls0_c01472{letter-spacing:0.000000px;}
.sc__c01472{text-shadow:none;}
.sc0_c01472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01472{-webkit-text-stroke:0px transparent;}
.sc0_c01472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01472{word-spacing:0.000000px;}
.fc0_c01472{color:transparent;}
.fs0_c01472{font-size:600.000000px;}
.y0_c01472{bottom:0.000000px;}
.y1_c01472{bottom:15.000000px;}
.h2_c01472{height:539.941406px;}
.h0_c01472{height:1521.510000px;}
.h1_c01472{height:1521.750000px;}
.w0_c01472{width:1060.995000px;}
.w1_c01472{width:1061.250000px;}
.x0_c01472{left:0.000000px;}
.x1_c01472{left:15.000000px;}
@media print{
.v0_c01472{vertical-align:0.000000pt;}
.ls0_c01472{letter-spacing:0.000000pt;}
.ws0_c01472{word-spacing:0.000000pt;}
.fs0_c01472{font-size:533.333333pt;}
.y0_c01472{bottom:0.000000pt;}
.y1_c01472{bottom:13.333333pt;}
.h2_c01472{height:479.947917pt;}
.h0_c01472{height:1352.453333pt;}
.h1_c01472{height:1352.666667pt;}
.w0_c01472{width:943.106667pt;}
.w1_c01472{width:943.333333pt;}
.x0_c01472{left:0.000000pt;}
.x1_c01472{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01473 {
    display:none;
  }
  .loading-indicator_c01473.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01473 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01473 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01473" -> "#page-container .classname_c01473")
 */
.pf_c01473 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01473 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01473 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01473 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01473 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01473 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01473 {overflow:visible;}
  }
}
.c_c01473 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01473 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01473:after { /* webkit #35443 */
  content: '';
}
.t_c01473:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01473 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01473 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01473 { /* info for Javascript */
  display:none;
}
.l_c01473 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01473 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01473 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01473:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01473 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01473.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01473.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01473 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01473{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01473;src:url('chunks/assets/font_0b5971a027e76918e4132951.woff2')format("woff");}.ff1_c01473{font-family:ff1_c01473;line-height:1.109863;font-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_c01473{transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.090900,0.000000,0.000000,0.250000,0,0);}
.m4_c01473{transform:matrix(0.093225,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.093225,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.093225,0.000000,0.000000,0.250000,0,0);}
.m1_c01473{transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.104175,0.000000,0.000000,0.250000,0,0);}
.mb_c01473{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m7_c01473{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m5_c01473{transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158900,0.000000,0.000000,0.250000,0,0);}
.m8_c01473{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);}
.ma_c01473{transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224975,0.000000,0.000000,0.250000,0,0);}
.m3_c01473{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);}
.m9_c01473{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);}
.m6_c01473{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m2_c01473{transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.545000,0.000000,0.000000,0.250000,0,0);}
.v0_c01473{vertical-align:0.000000px;}
.ls0_c01473{letter-spacing:0.000000px;}
.sc__c01473{text-shadow:none;}
.sc0_c01473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01473{-webkit-text-stroke:0px transparent;}
.sc0_c01473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01473{word-spacing:0.000000px;}
.fc0_c01473{color:transparent;}
.fs5_c01473{font-size:6.900000px;}
.fs6_c01473{font-size:13.800000px;}
.fs7_c01473{font-size:27.660000px;}
.fs2_c01473{font-size:31.080000px;}
.fs4_c01473{font-size:34.560000px;}
.fs0_c01473{font-size:38.040000px;}
.fs1_c01473{font-size:41.460000px;}
.fs8_c01473{font-size:69.120000px;}
.fs3_c01473{font-size:72.600000px;}
.y0_c01473{bottom:0.000000px;}
.yc_c01473{bottom:1067.910000px;}
.yb_c01473{bottom:1114.560000px;}
.ya_c01473{bottom:1120.605000px;}
.y9_c01473{bottom:1143.930000px;}
.y6_c01473{bottom:1170.720000px;}
.y8_c01473{bottom:1174.170000px;}
.y7_c01473{bottom:1175.910000px;}
.y5_c01473{bottom:1194.915000px;}
.y4_c01473{bottom:1220.835000px;}
.y3_c01473{bottom:1232.070000px;}
.y2_c01473{bottom:1244.160000px;}
.y1_c01473{bottom:1270.080000px;}
.h7_c01473{height:6.209326px;}
.h8_c01473{height:12.418652px;}
.h9_c01473{height:24.891299px;}
.h4_c01473{height:27.968965px;}
.h6_c01473{height:31.100625px;}
.h2_c01473{height:34.232285px;}
.h3_c01473{height:37.309951px;}
.ha_c01473{height:62.201250px;}
.h5_c01473{height:65.332910px;}
.h0_c01473{height:1517.190000px;}
.h1_c01473{height:1517.250000px;}
.w1_c01473{width:1047.750000px;}
.w0_c01473{width:1048.035000px;}
.x0_c01473{left:0.000000px;}
.x4_c01473{left:1.725000px;}
.x2_c01473{left:12.960000px;}
.x3_c01473{left:20.730000px;}
.x1_c01473{left:42.330000px;}
@media print{
.v0_c01473{vertical-align:0.000000pt;}
.ls0_c01473{letter-spacing:0.000000pt;}
.ws0_c01473{word-spacing:0.000000pt;}
.fs5_c01473{font-size:6.133333pt;}
.fs6_c01473{font-size:12.266667pt;}
.fs7_c01473{font-size:24.586667pt;}
.fs2_c01473{font-size:27.626667pt;}
.fs4_c01473{font-size:30.720000pt;}
.fs0_c01473{font-size:33.813333pt;}
.fs1_c01473{font-size:36.853333pt;}
.fs8_c01473{font-size:61.440000pt;}
.fs3_c01473{font-size:64.533333pt;}
.y0_c01473{bottom:0.000000pt;}
.yc_c01473{bottom:949.253333pt;}
.yb_c01473{bottom:990.720000pt;}
.ya_c01473{bottom:996.093333pt;}
.y9_c01473{bottom:1016.826667pt;}
.y6_c01473{bottom:1040.640000pt;}
.y8_c01473{bottom:1043.706667pt;}
.y7_c01473{bottom:1045.253333pt;}
.y5_c01473{bottom:1062.146667pt;}
.y4_c01473{bottom:1085.186667pt;}
.y3_c01473{bottom:1095.173333pt;}
.y2_c01473{bottom:1105.920000pt;}
.y1_c01473{bottom:1128.960000pt;}
.h7_c01473{height:5.519401pt;}
.h8_c01473{height:11.038802pt;}
.h9_c01473{height:22.125599pt;}
.h4_c01473{height:24.861302pt;}
.h6_c01473{height:27.645000pt;}
.h2_c01473{height:30.428698pt;}
.h3_c01473{height:33.164401pt;}
.ha_c01473{height:55.290000pt;}
.h5_c01473{height:58.073698pt;}
.h0_c01473{height:1348.613333pt;}
.h1_c01473{height:1348.666667pt;}
.w1_c01473{width:931.333333pt;}
.w0_c01473{width:931.586667pt;}
.x0_c01473{left:0.000000pt;}
.x4_c01473{left:1.533333pt;}
.x2_c01473{left:11.520000pt;}
.x3_c01473{left:18.426667pt;}
.x1_c01473{left:37.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_c01474 {
    display:none;
  }
  .loading-indicator_c01474.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01474 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01474 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01474" -> "#page-container .classname_c01474")
 */
.pf_c01474 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01474 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01474 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01474 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01474 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01474 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01474 {overflow:visible;}
  }
}
.c_c01474 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01474 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01474:after { /* webkit #35443 */
  content: '';
}
.t_c01474:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01474 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01474 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01474 { /* info for Javascript */
  display:none;
}
.l_c01474 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01474 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01474 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01474:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01474 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01474.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01474.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01474 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01474{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01474;src:url('chunks/assets/font_afd785893020ae84c4fe4783.woff2')format("woff");}.ff1_c01474{font-family:ff1_c01474;line-height:1.109863;font-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_c01474{transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.000000,0.000000,0.000000,0.250000,0,0);}
.m2_c01474{transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.083325,0.000000,0.000000,0.250000,0,0);}
.m8_c01474{transform:matrix(0.095775,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.095775,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.095775,0.000000,0.000000,0.250000,0,0);}
.m1d_c01474{transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.130950,0.000000,0.000000,0.250000,0,0);}
.m1c_c01474{transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140550,0.000000,0.000000,0.250000,0,0);}
.m21_c01474{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.md_c01474{transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149850,0.000000,0.000000,0.250000,0,0);}
.m15_c01474{transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156850,0.000000,0.000000,0.250000,0,0);}
.m9_c01474{transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160575,0.000000,0.000000,0.250000,0,0);}
.m1b_c01474{transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160800,0.000000,0.000000,0.250000,0,0);}
.m1a_c01474{transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.162100,0.000000,0.000000,0.250000,0,0);}
.mc_c01474{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);}
.me_c01474{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);}
.m11_c01474{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);}
.m12_c01474{transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187250,0.000000,0.000000,0.250000,0,0);}
.m18_c01474{transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.198900,0.000000,0.000000,0.250000,0,0);}
.m10_c01474{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);}
.m19_c01474{transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.210650,0.000000,0.000000,0.250000,0,0);}
.m13_c01474{transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217325,0.000000,0.000000,0.250000,0,0);}
.m17_c01474{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);}
.mf_c01474{transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242975,0.000000,0.000000,0.250000,0,0);}
.m16_c01474{transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245375,0.000000,0.000000,0.250000,0,0);}
.m1_c01474{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.ma_c01474{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);}
.m1e_c01474{transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.320000,0.000000,0.000000,0.250000,0,0);}
.m4_c01474{transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.432500,0.000000,0.000000,0.250000,0,0);}
.m1f_c01474{transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.502500,0.000000,0.000000,0.250000,0,0);}
.mb_c01474{transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.522500,0.000000,0.000000,0.250000,0,0);}
.m5_c01474{transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.575000,0.000000,0.000000,0.250000,0,0);}
.m14_c01474{transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.607500,0.000000,0.000000,0.250000,0,0);}
.m20_c01474{transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.667500,0.000000,0.000000,0.250000,0,0);}
.m0_c01474{transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.702500,0.000000,0.000000,0.250000,0,0);}
.m7_c01474{transform:matrix(1.852500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(1.852500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(1.852500,0.000000,0.000000,0.250000,0,0);}
.m6_c01474{transform:matrix(6.557500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(6.557500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(6.557500,0.000000,0.000000,0.250000,0,0);}
.v0_c01474{vertical-align:0.000000px;}
.ls0_c01474{letter-spacing:0.000000px;}
.sc__c01474{text-shadow:none;}
.sc0_c01474{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01474{-webkit-text-stroke:0px transparent;}
.sc0_c01474{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01474{word-spacing:0.000000px;}
.fc0_c01474{color:transparent;}
.fs2_c01474{font-size:3.456000px;}
.fs5_c01474{font-size:6.000000px;}
.fs3_c01474{font-size:6.900000px;}
.fs1_c01474{font-size:10.380000px;}
.fs14_c01474{font-size:24.180000px;}
.fs0_c01474{font-size:31.080000px;}
.fs6_c01474{font-size:41.460000px;}
.fs4_c01474{font-size:44.940000px;}
.fsf_c01474{font-size:48.360000px;}
.fs8_c01474{font-size:51.840000px;}
.fs9_c01474{font-size:62.220000px;}
.fs10_c01474{font-size:72.600000px;}
.fsd_c01474{font-size:79.500000px;}
.fs11_c01474{font-size:82.920000px;}
.fsc_c01474{font-size:89.880000px;}
.fsb_c01474{font-size:93.300000px;}
.fse_c01474{font-size:96.780000px;}
.fsa_c01474{font-size:100.200000px;}
.fs7_c01474{font-size:103.680000px;}
.fs12_c01474{font-size:107.160000px;}
.fs13_c01474{font-size:110.580000px;}
.y0_c01474{bottom:0.000000px;}
.y25_c01474{bottom:219.450000px;}
.y24_c01474{bottom:223.770000px;}
.y20_c01474{bottom:381.885000px;}
.y22_c01474{bottom:502.845000px;}
.y23_c01474{bottom:506.310000px;}
.y21_c01474{bottom:548.640000px;}
.y1e_c01474{bottom:669.600000px;}
.y1d_c01474{bottom:673.050000px;}
.y1f_c01474{bottom:675.645000px;}
.y1c_c01474{bottom:676.515000px;}
.y1a_c01474{bottom:680.835000px;}
.y1b_c01474{bottom:686.010000px;}
.y18_c01474{bottom:688.605000px;}
.y17_c01474{bottom:690.330000px;}
.y16_c01474{bottom:691.200000px;}
.y15_c01474{bottom:692.070000px;}
.y19_c01474{bottom:692.925000px;}
.y14_c01474{bottom:697.245000px;}
.y13_c01474{bottom:698.115000px;}
.y12_c01474{bottom:698.970000px;}
.y10_c01474{bottom:703.290000px;}
.y11_c01474{bottom:704.160000px;}
.yf_c01474{bottom:705.885000px;}
.ye_c01474{bottom:711.075000px;}
.yc_c01474{bottom:717.990000px;}
.yd_c01474{bottom:721.440000px;}
.yb_c01474{bottom:726.630000px;}
.ya_c01474{bottom:730.080000px;}
.y7_c01474{bottom:736.995000px;}
.y8_c01474{bottom:738.720000px;}
.y9_c01474{bottom:740.445000px;}
.y4_c01474{bottom:743.910000px;}
.y5_c01474{bottom:745.635000px;}
.y6_c01474{bottom:747.360000px;}
.y3_c01474{bottom:750.810000px;}
.y2_c01474{bottom:753.405000px;}
.y1_c01474{bottom:755.130000px;}
.h4_c01474{height:3.110063px;}
.h7_c01474{height:5.399414px;}
.h5_c01474{height:6.209326px;}
.h3_c01474{height:9.340986px;}
.h16_c01474{height:21.759639px;}
.h2_c01474{height:27.968965px;}
.h8_c01474{height:37.309951px;}
.h6_c01474{height:40.441611px;}
.h11_c01474{height:43.519277px;}
.ha_c01474{height:46.650937px;}
.hb_c01474{height:55.991924px;}
.h12_c01474{height:65.332910px;}
.hf_c01474{height:71.542236px;}
.h13_c01474{height:74.619902px;}
.he_c01474{height:80.883223px;}
.hd_c01474{height:83.960889px;}
.h10_c01474{height:87.092549px;}
.hc_c01474{height:90.170215px;}
.h9_c01474{height:93.301875px;}
.h14_c01474{height:96.433535px;}
.h15_c01474{height:99.511201px;}
.h0_c01474{height:1521.510000px;}
.h1_c01474{height:1521.750000px;}
.w0_c01474{width:1060.995000px;}
.w1_c01474{width:1061.250000px;}
.x0_c01474{left:0.000000px;}
.x16_c01474{left:225.510000px;}
.xd_c01474{left:244.515000px;}
.x5_c01474{left:275.610000px;}
.x6_c01474{left:290.310000px;}
.x17_c01474{left:323.130000px;}
.xe_c01474{left:342.150000px;}
.x18_c01474{left:346.470000px;}
.x1_c01474{left:366.330000px;}
.x19_c01474{left:398.310000px;}
.x7_c01474{left:418.170000px;}
.x8_c01474{left:430.275000px;}
.xf_c01474{left:445.830000px;}
.x2_c01474{left:460.515000px;}
.x3_c01474{left:464.835000px;}
.x4_c01474{left:469.155000px;}
.x1a_c01474{left:501.120000px;}
.x9_c01474{left:525.315000px;}
.xa_c01474{left:537.405000px;}
.x10_c01474{left:540.000000px;}
.x1b_c01474{left:553.830000px;}
.xb_c01474{left:576.285000px;}
.x1c_c01474{left:641.955000px;}
.x11_c01474{left:643.680000px;}
.x12_c01474{left:715.395000px;}
.x1d_c01474{left:728.355000px;}
.x13_c01474{left:731.805000px;}
.xc_c01474{left:736.125000px;}
.x20_c01474{left:743.040000px;}
.x14_c01474{left:768.960000px;}
.x1e_c01474{left:787.965000px;}
.x15_c01474{left:813.030000px;}
.x21_c01474{left:847.590000px;}
.x1f_c01474{left:853.635000px;}
.x22_c01474{left:926.205000px;}
.x23_c01474{left:940.890000px;}
.x24_c01474{left:1034.206320px;}
.x25_c01474{left:1042.845000px;}
@media print{
.v0_c01474{vertical-align:0.000000pt;}
.ls0_c01474{letter-spacing:0.000000pt;}
.ws0_c01474{word-spacing:0.000000pt;}
.fs2_c01474{font-size:3.072000pt;}
.fs5_c01474{font-size:5.333333pt;}
.fs3_c01474{font-size:6.133333pt;}
.fs1_c01474{font-size:9.226667pt;}
.fs14_c01474{font-size:21.493333pt;}
.fs0_c01474{font-size:27.626667pt;}
.fs6_c01474{font-size:36.853333pt;}
.fs4_c01474{font-size:39.946667pt;}
.fsf_c01474{font-size:42.986667pt;}
.fs8_c01474{font-size:46.080000pt;}
.fs9_c01474{font-size:55.306667pt;}
.fs10_c01474{font-size:64.533333pt;}
.fsd_c01474{font-size:70.666667pt;}
.fs11_c01474{font-size:73.706667pt;}
.fsc_c01474{font-size:79.893333pt;}
.fsb_c01474{font-size:82.933333pt;}
.fse_c01474{font-size:86.026667pt;}
.fsa_c01474{font-size:89.066667pt;}
.fs7_c01474{font-size:92.160000pt;}
.fs12_c01474{font-size:95.253333pt;}
.fs13_c01474{font-size:98.293333pt;}
.y0_c01474{bottom:0.000000pt;}
.y25_c01474{bottom:195.066667pt;}
.y24_c01474{bottom:198.906667pt;}
.y20_c01474{bottom:339.453333pt;}
.y22_c01474{bottom:446.973333pt;}
.y23_c01474{bottom:450.053333pt;}
.y21_c01474{bottom:487.680000pt;}
.y1e_c01474{bottom:595.200000pt;}
.y1d_c01474{bottom:598.266667pt;}
.y1f_c01474{bottom:600.573333pt;}
.y1c_c01474{bottom:601.346667pt;}
.y1a_c01474{bottom:605.186667pt;}
.y1b_c01474{bottom:609.786667pt;}
.y18_c01474{bottom:612.093333pt;}
.y17_c01474{bottom:613.626667pt;}
.y16_c01474{bottom:614.400000pt;}
.y15_c01474{bottom:615.173333pt;}
.y19_c01474{bottom:615.933333pt;}
.y14_c01474{bottom:619.773333pt;}
.y13_c01474{bottom:620.546667pt;}
.y12_c01474{bottom:621.306667pt;}
.y10_c01474{bottom:625.146667pt;}
.y11_c01474{bottom:625.920000pt;}
.yf_c01474{bottom:627.453333pt;}
.ye_c01474{bottom:632.066667pt;}
.yc_c01474{bottom:638.213333pt;}
.yd_c01474{bottom:641.280000pt;}
.yb_c01474{bottom:645.893333pt;}
.ya_c01474{bottom:648.960000pt;}
.y7_c01474{bottom:655.106667pt;}
.y8_c01474{bottom:656.640000pt;}
.y9_c01474{bottom:658.173333pt;}
.y4_c01474{bottom:661.253333pt;}
.y5_c01474{bottom:662.786667pt;}
.y6_c01474{bottom:664.320000pt;}
.y3_c01474{bottom:667.386667pt;}
.y2_c01474{bottom:669.693333pt;}
.y1_c01474{bottom:671.226667pt;}
.h4_c01474{height:2.764500pt;}
.h7_c01474{height:4.799479pt;}
.h5_c01474{height:5.519401pt;}
.h3_c01474{height:8.303099pt;}
.h16_c01474{height:19.341901pt;}
.h2_c01474{height:24.861302pt;}
.h8_c01474{height:33.164401pt;}
.h6_c01474{height:35.948099pt;}
.h11_c01474{height:38.683802pt;}
.ha_c01474{height:41.467500pt;}
.hb_c01474{height:49.770599pt;}
.h12_c01474{height:58.073698pt;}
.hf_c01474{height:63.593099pt;}
.h13_c01474{height:66.328802pt;}
.he_c01474{height:71.896198pt;}
.hd_c01474{height:74.631901pt;}
.h10_c01474{height:77.415599pt;}
.hc_c01474{height:80.151302pt;}
.h9_c01474{height:82.935000pt;}
.h14_c01474{height:85.718698pt;}
.h15_c01474{height:88.454401pt;}
.h0_c01474{height:1352.453333pt;}
.h1_c01474{height:1352.666667pt;}
.w0_c01474{width:943.106667pt;}
.w1_c01474{width:943.333333pt;}
.x0_c01474{left:0.000000pt;}
.x16_c01474{left:200.453333pt;}
.xd_c01474{left:217.346667pt;}
.x5_c01474{left:244.986667pt;}
.x6_c01474{left:258.053333pt;}
.x17_c01474{left:287.226667pt;}
.xe_c01474{left:304.133333pt;}
.x18_c01474{left:307.973333pt;}
.x1_c01474{left:325.626667pt;}
.x19_c01474{left:354.053333pt;}
.x7_c01474{left:371.706667pt;}
.x8_c01474{left:382.466667pt;}
.xf_c01474{left:396.293333pt;}
.x2_c01474{left:409.346667pt;}
.x3_c01474{left:413.186667pt;}
.x4_c01474{left:417.026667pt;}
.x1a_c01474{left:445.440000pt;}
.x9_c01474{left:466.946667pt;}
.xa_c01474{left:477.693333pt;}
.x10_c01474{left:480.000000pt;}
.x1b_c01474{left:492.293333pt;}
.xb_c01474{left:512.253333pt;}
.x1c_c01474{left:570.626667pt;}
.x11_c01474{left:572.160000pt;}
.x12_c01474{left:635.906667pt;}
.x1d_c01474{left:647.426667pt;}
.x13_c01474{left:650.493333pt;}
.xc_c01474{left:654.333333pt;}
.x20_c01474{left:660.480000pt;}
.x14_c01474{left:683.520000pt;}
.x1e_c01474{left:700.413333pt;}
.x15_c01474{left:722.693333pt;}
.x21_c01474{left:753.413333pt;}
.x1f_c01474{left:758.786667pt;}
.x22_c01474{left:823.293333pt;}
.x23_c01474{left:836.346667pt;}
.x24_c01474{left:919.294507pt;}
.x25_c01474{left:926.973333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01475 {
    display:none;
  }
  .loading-indicator_c01475.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01475 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01475 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01475" -> "#page-container .classname_c01475")
 */
.pf_c01475 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01475 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01475 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01475 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01475 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01475 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01475 {overflow:visible;}
  }
}
.c_c01475 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01475 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01475:after { /* webkit #35443 */
  content: '';
}
.t_c01475:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01475 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01475 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01475 { /* info for Javascript */
  display:none;
}
.l_c01475 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01475 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01475 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01475:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01475 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01475.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01475.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01475 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01475{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01475;src:url('chunks/assets/font_0015b50dd48ceb4f80dc3382.woff2')format("woff");}.ff1_c01475{font-family:ff1_c01475;line-height:1.109863;font-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_c01475{transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.144000,0.000000,0.000000,0.250000,0,0);}
.m4_c01475{transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.145450,0.000000,0.000000,0.250000,0,0);}
.m3_c01475{transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.287500,0.000000,0.000000,0.250000,0,0);}
.m0_c01475{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);}
.m2_c01475{transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.392500,0.000000,0.000000,0.250000,0,0);}
.v0_c01475{vertical-align:0.000000px;}
.ls0_c01475{letter-spacing:0.000000px;}
.sc__c01475{text-shadow:none;}
.sc0_c01475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01475{-webkit-text-stroke:0px transparent;}
.sc0_c01475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01475{word-spacing:0.000000px;}
.fc0_c01475{color:transparent;}
.fs1_c01475{font-size:6.900000px;}
.fs3_c01475{font-size:10.380000px;}
.fs0_c01475{font-size:27.660000px;}
.fs2_c01475{font-size:34.560000px;}
.fs4_c01475{font-size:72.600000px;}
.y0_c01475{bottom:0.000000px;}
.y5_c01475{bottom:904.605000px;}
.y4_c01475{bottom:912.390000px;}
.y3_c01475{bottom:931.395000px;}
.y1_c01475{bottom:940.890000px;}
.y2_c01475{bottom:946.080000px;}
.h3_c01475{height:6.209326px;}
.h5_c01475{height:9.340986px;}
.h2_c01475{height:24.891299px;}
.h4_c01475{height:31.100625px;}
.h6_c01475{height:65.332910px;}
.h0_c01475{height:1517.190000px;}
.h1_c01475{height:1517.250000px;}
.w1_c01475{width:1047.750000px;}
.w0_c01475{width:1048.035000px;}
.x0_c01475{left:0.000000px;}
.x3_c01475{left:2.595000px;}
.x1_c01475{left:7.770000px;}
.x4_c01475{left:9.510000px;}
.x2_c01475{left:18.150000px;}
@media print{
.v0_c01475{vertical-align:0.000000pt;}
.ls0_c01475{letter-spacing:0.000000pt;}
.ws0_c01475{word-spacing:0.000000pt;}
.fs1_c01475{font-size:6.133333pt;}
.fs3_c01475{font-size:9.226667pt;}
.fs0_c01475{font-size:24.586667pt;}
.fs2_c01475{font-size:30.720000pt;}
.fs4_c01475{font-size:64.533333pt;}
.y0_c01475{bottom:0.000000pt;}
.y5_c01475{bottom:804.093333pt;}
.y4_c01475{bottom:811.013333pt;}
.y3_c01475{bottom:827.906667pt;}
.y1_c01475{bottom:836.346667pt;}
.y2_c01475{bottom:840.960000pt;}
.h3_c01475{height:5.519401pt;}
.h5_c01475{height:8.303099pt;}
.h2_c01475{height:22.125599pt;}
.h4_c01475{height:27.645000pt;}
.h6_c01475{height:58.073698pt;}
.h0_c01475{height:1348.613333pt;}
.h1_c01475{height:1348.666667pt;}
.w1_c01475{width:931.333333pt;}
.w0_c01475{width:931.586667pt;}
.x0_c01475{left:0.000000pt;}
.x3_c01475{left:2.306667pt;}
.x1_c01475{left:6.906667pt;}
.x4_c01475{left:8.453333pt;}
.x2_c01475{left:16.133333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01476 {
    display:none;
  }
  .loading-indicator_c01476.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01476 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01476 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01476" -> "#page-container .classname_c01476")
 */
.pf_c01476 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01476 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01476 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01476 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01476 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01476 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01476 {overflow:visible;}
  }
}
.c_c01476 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01476 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01476:after { /* webkit #35443 */
  content: '';
}
.t_c01476:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01476 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01476 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01476 { /* info for Javascript */
  display:none;
}
.l_c01476 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01476 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01476 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01476:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01476 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01476.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01476.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01476 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01476{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01476;src:url('chunks/assets/font_4c4bd0b3f3a648b34c6336b3.woff2')format("woff");}.ff1_c01476{font-family:ff1_c01476;line-height:1.109863;font-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_c01476{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);}
.v0_c01476{vertical-align:0.000000px;}
.ls0_c01476{letter-spacing:0.000000px;}
.sc__c01476{text-shadow:none;}
.sc0_c01476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01476{-webkit-text-stroke:0px transparent;}
.sc0_c01476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01476{word-spacing:0.000000px;}
.fc0_c01476{color:transparent;}
.fs0_c01476{font-size:600.000000px;}
.y0_c01476{bottom:0.000000px;}
.y1_c01476{bottom:15.000000px;}
.h2_c01476{height:539.941406px;}
.h0_c01476{height:1521.510000px;}
.h1_c01476{height:1521.750000px;}
.w0_c01476{width:1060.995000px;}
.w1_c01476{width:1061.250000px;}
.x0_c01476{left:0.000000px;}
.x1_c01476{left:15.000000px;}
@media print{
.v0_c01476{vertical-align:0.000000pt;}
.ls0_c01476{letter-spacing:0.000000pt;}
.ws0_c01476{word-spacing:0.000000pt;}
.fs0_c01476{font-size:533.333333pt;}
.y0_c01476{bottom:0.000000pt;}
.y1_c01476{bottom:13.333333pt;}
.h2_c01476{height:479.947917pt;}
.h0_c01476{height:1352.453333pt;}
.h1_c01476{height:1352.666667pt;}
.w0_c01476{width:943.106667pt;}
.w1_c01476{width:943.333333pt;}
.x0_c01476{left:0.000000pt;}
.x1_c01476{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01477 {
    display:none;
  }
  .loading-indicator_c01477.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01477 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01477 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01477" -> "#page-container .classname_c01477")
 */
.pf_c01477 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01477 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01477 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01477 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01477 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01477 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01477 {overflow:visible;}
  }
}
.c_c01477 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01477 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01477:after { /* webkit #35443 */
  content: '';
}
.t_c01477:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01477 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01477 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01477 { /* info for Javascript */
  display:none;
}
.l_c01477 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01477 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01477 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01477:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01477 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01477.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01477.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01477 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01477{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01477;src:url('chunks/assets/font_a547ced79f2341a7cdfc85b8.woff2')format("woff");}.ff1_c01477{font-family:ff1_c01477;line-height:1.109863;font-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_c01477{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);}
.v0_c01477{vertical-align:0.000000px;}
.ls0_c01477{letter-spacing:0.000000px;}
.sc__c01477{text-shadow:none;}
.sc0_c01477{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01477{-webkit-text-stroke:0px transparent;}
.sc0_c01477{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01477{word-spacing:0.000000px;}
.fc0_c01477{color:transparent;}
.fs0_c01477{font-size:600.000000px;}
.y0_c01477{bottom:0.000000px;}
.y1_c01477{bottom:15.000000px;}
.h2_c01477{height:539.941406px;}
.h0_c01477{height:1517.190000px;}
.h1_c01477{height:1517.250000px;}
.w1_c01477{width:1047.750000px;}
.w0_c01477{width:1048.035000px;}
.x0_c01477{left:0.000000px;}
.x1_c01477{left:15.000000px;}
@media print{
.v0_c01477{vertical-align:0.000000pt;}
.ls0_c01477{letter-spacing:0.000000pt;}
.ws0_c01477{word-spacing:0.000000pt;}
.fs0_c01477{font-size:533.333333pt;}
.y0_c01477{bottom:0.000000pt;}
.y1_c01477{bottom:13.333333pt;}
.h2_c01477{height:479.947917pt;}
.h0_c01477{height:1348.613333pt;}
.h1_c01477{height:1348.666667pt;}
.w1_c01477{width:931.333333pt;}
.w0_c01477{width:931.586667pt;}
.x0_c01477{left:0.000000pt;}
.x1_c01477{left:13.333333pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_c01478 {
    display:none;
  }
  .loading-indicator_c01478.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator_c01478 img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d_c01478 { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname_c01478" -> "#page-container .classname_c01478")
 */
.pf_c01478 { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc_c01478 { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc_c01478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf_c01478 { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi_c01478 { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf_c01478 {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf_c01478 {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc_c01478 {overflow:visible;}
  }
}
.c_c01478 { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t_c01478 { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t_c01478:after { /* webkit #35443 */
  content: '';
}
.t_c01478:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t_c01478 span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
.__c01478 { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi_c01478 { /* info for Javascript */
  display:none;
}
.l_c01478 { /* annotation links */
}
/* transparent color - WebKit */
.d_c01478 { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it_c01478 {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir_c01478:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf_c01478 {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc_c01478.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator_c01478.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked_c01478 {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0_c01478{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c01478;src:url('chunks/assets/font_1c8c74e171ae2d6069fe9ca0.woff2')format("woff");}.ff1_c01478{font-family:ff1_c01478;line-height:1.109863;font-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_c01478{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);}
.v0_c01478{vertical-align:0.000000px;}
.ls0_c01478{letter-spacing:0.000000px;}
.sc__c01478{text-shadow:none;}
.sc0_c01478{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c01478{-webkit-text-stroke:0px transparent;}
.sc0_c01478{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c01478{word-spacing:0.000000px;}
.fc0_c01478{color:transparent;}
.fs0_c01478{font-size:600.000000px;}
.y0_c01478{bottom:0.000000px;}
.y1_c01478{bottom:15.000000px;}
.h2_c01478{height:539.941406px;}
.h1_c01478{height:1529.250000px;}
.h0_c01478{height:1529.280000px;}
.w1_c01478{width:1014.000000px;}
.w0_c01478{width:1014.330000px;}
.x0_c01478{left:0.000000px;}
.x1_c01478{left:15.000000px;}
@media print{
.v0_c01478{vertical-align:0.000000pt;}
.ls0_c01478{letter-spacing:0.000000pt;}
.ws0_c01478{word-spacing:0.000000pt;}
.fs0_c01478{font-size:533.333333pt;}
.y0_c01478{bottom:0.000000pt;}
.y1_c01478{bottom:13.333333pt;}
.h2_c01478{height:479.947917pt;}
.h1_c01478{height:1359.333333pt;}
.h0_c01478{height:1359.360000pt;}
.w1_c01478{width:901.333333pt;}
.w0_c01478{width:901.626667pt;}
.x0_c01478{left:0.000000pt;}
.x1_c01478{left:13.333333pt;}
}




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